diff --git a/.claude/settings.local.json b/.claude/settings.local.json new file mode 100644 index 000000000..d56093d80 --- /dev/null +++ b/.claude/settings.local.json @@ -0,0 +1,17 @@ +{ + "permissions": { + "allow": [ + "Bash(xargs -I {} wc -l {})", + "Bash(mvn clean *)", + "Bash(python -c \"import docx; print\\('python-docx available'\\)\")", + "Bash(python3 -c \"import docx; print\\('ok'\\)\")", + "Bash(where py *)", + "Bash(py --version)", + "Bash(py -c \"import docx; print\\('ok'\\)\")", + "Bash(py -m pip install python-docx -q)", + "Bash(py generate_review.py)", + "Bash(pip show *)", + "PowerShell(Get-Command *)" + ] + } +} diff --git a/.github/workflows/SimPathsBuild.yml b/.github/workflows/SimPathsBuild.yml index cc340f2f5..e9d4641d1 100644 --- a/.github/workflows/SimPathsBuild.yml +++ b/.github/workflows/SimPathsBuild.yml @@ -16,15 +16,15 @@ jobs: build: runs-on: [ ubuntu-latest ] steps: - - uses: actions/checkout@v4 - - name: Set up JDK 19 - uses: actions/setup-java@v4 + - uses: actions/checkout@v6 + - name: Set up JDK + uses: actions/setup-java@v5 with: - java-version: '19' + java-version: '25' distribution: 'temurin' - name: Build with Maven run: mvn -B package --file pom.xml - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v7 with: name: simpaths_jars path: ./*.jar @@ -32,17 +32,17 @@ jobs: run-integration-tests: runs-on: [ ubuntu-latest ] steps: - - uses: actions/checkout@v4 - - name: Set up JDK 19 - uses: actions/setup-java@v4 + - uses: actions/checkout@v6 + - name: Set up JDK + uses: actions/setup-java@v5 with: - java-version: '19' + java-version: '25' distribution: 'temurin' - name: Run integration tests run: mvn verify - name: Upload Actual CSVs for Inspection if: failure() # This ensures it only runs when the tests fail - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: actual-simulation-results path: output/INTEGRATION_TESTS/csv/ @@ -51,13 +51,13 @@ jobs: needs: build runs-on: [ ubuntu-latest ] steps: - - uses: actions/checkout@v4 - - name: Set up JDK 19 - uses: actions/setup-java@v4 + - uses: actions/checkout@v6 + - name: Set up JDK + uses: actions/setup-java@v5 with: - java-version: '19' + java-version: '25' distribution: 'temurin' - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: simpaths_jars path: . @@ -65,7 +65,7 @@ jobs: run: java -jar singlerun.jar -c UK -s 2019 -g false --rewrite-policy-schedule - name: Check input db exists id: check_file - uses: thebinaryfelix/check-file-existence-action@1.0.0 + uses: thebinaryfelix/check-file-existence-action@2.0.0 with: files: 'input/input.mv.db, input/EUROMODpolicySchedule.xlsx, input/DatabaseCountryYear.xlsx' @@ -73,13 +73,13 @@ jobs: needs: build runs-on: [ ubuntu-latest ] steps: - - uses: actions/checkout@v4 - - name: Set up JDK 19 - uses: actions/setup-java@v4 + - uses: actions/checkout@v6 + - name: Set up JDK + uses: actions/setup-java@v5 with: - java-version: '19' + java-version: '25' distribution: 'temurin' - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: simpaths_jars path: . @@ -87,7 +87,7 @@ jobs: run: java -jar multirun.jar -DBSetup -config test_create_database.yml - name: Check input db exists id: check_file - uses: thebinaryfelix/check-file-existence-action@1.0.0 + uses: thebinaryfelix/check-file-existence-action@2.0.0 with: files: 'input/input.mv.db, input/EUROMODpolicySchedule.xlsx, input/DatabaseCountryYear.xlsx' - name: Do two runs with persistence to root database @@ -97,13 +97,13 @@ jobs: needs: build runs-on: [ ubuntu-latest ] steps: - - uses: actions/checkout@v4 - - name: Set up JDK 19 - uses: actions/setup-java@v4 + - uses: actions/checkout@v6 + - name: Set up JDK + uses: actions/setup-java@v5 with: - java-version: '19' + java-version: '25' distribution: 'temurin' - - uses: actions/download-artifact@v4 + - uses: actions/download-artifact@v8 with: name: simpaths_jars path: . @@ -111,7 +111,7 @@ jobs: run: java -jar multirun.jar -DBSetup -config test_create_database.yml - name: Check input db exists id: check_file - uses: thebinaryfelix/check-file-existence-action@1.0.0 + uses: thebinaryfelix/check-file-existence-action@2.0.0 with: files: 'input/input.mv.db, input/EUROMODpolicySchedule.xlsx, input/DatabaseCountryYear.xlsx' - name: Do two runs with no persistence diff --git a/.github/workflows/deploy-docs.yml b/.github/workflows/deploy-docs.yml index abba88899..ab4411510 100644 --- a/.github/workflows/deploy-docs.yml +++ b/.github/workflows/deploy-docs.yml @@ -23,12 +23,12 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: '3.x' @@ -39,10 +39,10 @@ jobs: run: mkdocs build --strict - name: Upload Pages artifact - uses: actions/upload-pages-artifact@v3 + uses: actions/upload-pages-artifact@v5 with: path: site/ - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v4 + uses: actions/deploy-pages@v5 diff --git a/.github/workflows/publish-javadoc.yml b/.github/workflows/publish-javadoc.yml index 4a1024b19..88d01a6ff 100644 --- a/.github/workflows/publish-javadoc.yml +++ b/.github/workflows/publish-javadoc.yml @@ -15,12 +15,12 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v6 - - name: Set up JDK 19 - uses: actions/setup-java@v3 + - name: Set up JDK + uses: actions/setup-java@v5 with: - java-version: '19' + java-version: '25' distribution: 'temurin' cache: maven @@ -36,7 +36,7 @@ jobs: with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} javadoc-branch: javadoc - java-version: 19 + java-version: 25 target-folder: javadoc project: maven diff --git a/.gitignore b/.gitignore index a558e809f..9cff59870 100644 --- a/.gitignore +++ b/.gitignore @@ -1,91 +1,35 @@ -# Created by https://www.toptal.com/developers/gitignore/api/intellij+iml,windows,java -# Edit at https://www.toptal.com/developers/gitignore?templates=intellij+iml,windows,java - -### Intellij+iml ### -# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider -# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 - -# User-specific stuff -.idea/**/workspace.xml -.idea/**/tasks.xml -.idea/**/usage.statistics.xml -.idea/**/dictionaries -.idea/**/shelf - -# AWS User-specific -.idea/**/aws.xml - -# Generated files -.idea/**/contentModel.xml - -# Sensitive or high-churn files -.idea/**/dataSources/ -.idea/**/dataSources.ids -.idea/**/dataSources.local.xml -.idea/**/sqlDataSources.xml -.idea/**/dynamic.xml -.idea/**/uiDesigner.xml -.idea/**/dbnavigator.xml - -# Gradle -.idea/**/gradle.xml -.idea/**/libraries - -# Gradle and Maven with auto-import -# When using Gradle or Maven with auto-import, you should exclude module files, -# since they will be recreated, and may cause churn. Uncomment if using -# auto-import. -.idea/artifacts -.idea/compiler.xml -.idea/jarRepositories.xml -.idea/modules.xml -.idea/*.iml -.idea/modules -*.iml -*.ipr +# IDE and build related files +/.idea +/.idea_modules/ +/.classpath +/.factorypath +/.project +/.settings/ +/target/ # CMake cmake-build-*/ -# Mongo Explorer plugin -.idea/**/mongoSettings.xml - # File-based project format *.iws # IntelliJ out/ -# mpeltonen/sbt-idea plugin -.idea_modules/ - # JIRA plugin atlassian-ide-plugin.xml -# Cursive Clojure plugin -.idea/replstate.xml - -# SonarLint plugin -.idea/sonarlint/ - # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties fabric.properties -# Editor-based Rest Client -.idea/httpRequests - -# Android studio 3.1+ serialized cache file -.idea/caches/build_file_checksums.ser - ### Intellij+iml Patch ### # Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-249601023 *.iml modules.xml -.idea/misc.xml *.ipr ### Java ### @@ -98,9 +42,6 @@ modules.xml # BlueJ files *.ctxt -# Mobile Tools for Java (J2ME) -.mtj.tmp/ - # Package Files # *.jar *.war @@ -140,41 +81,26 @@ $RECYCLE.BIN/ # Windows shortcuts *.lnk -# End of https://www.toptal.com/developers/gitignore/api/intellij+iml,windows,java - #Other files specific to the model -/target/ /output/ /classes/ input/input.h2.db -input/input.h2.db input/input.trace.db /input/input.mv.db -.idea/compiler.xml -.idea/dataSources.local.xml -.idea/encodings.xml -.idea/libraries/Maven__colt_colt_1_2_0.xml -.idea/libraries/Maven__commons_beanutils_commons_beanutils_20030211_134440.xml -.idea/misc.xml -model.iml src/main/resources/log4j/log.out # eclipse specific *.pydevproject -.project .metadata -bin/** -tmp/** -tmp/**/* +bin/ +tmp/ *.tmp *.bak *.swp *~.nib local.properties -.classpath -.settings/ .loadpath # External tool builders @@ -185,7 +111,6 @@ local.properties input/~$reg_socialcare.xlsx input/InitialPopulations/compile/data/pool_indall.dta input/~$scenario_uprating_factor.xlsx -.idea/dataSources.local.xml /input/EUROMODoutput/*.txt /input/InitialPopulations/*.csv /input/population_IT.csv @@ -197,7 +122,6 @@ input/input.mv.db.new input/input.mv.db.old input/input.mv.db.original dependency-reduced-pom.xml -.idea/vcs.xml input/EUROMODoutput/augmented1/ input/EUROMODoutput/original/ *.stswp @@ -207,28 +131,6 @@ input/programming test database/EUROMODpolicySchedule.xlsx input/programming test database/input.mv.db /input/databases /input/EUROMODoutput/base -analysis/temp0.dta -analysis/temp1.dta -analysis/zero0.dta -analysis/zero1.dta -analysis/base1.dta -analysis/base0.dta -analysis/childcarebase.dta -analysis/childcarenaive.dta -analysis/childcarezero.dta -analysis/link.dta -analysis/naive0.dta -analysis/naive1.dta -analysis/ignore0.dta -analysis/ignore1.dta -analysis/test_base.dta -analysis/test_naive.dta -analysis/test_base_noalign.dta -analysis/test_naive_noalign.dta -analysis/test1.dta -analysis/test2.dta -.idea/dataSources.xml -.idea/* *.dta src/main/java/simpaths/data/startingpop/DataParser.new src/main/java/simpaths/data/startingpop/DataParser.old @@ -242,7 +144,6 @@ input/EUROMODoutput/baseline/* # macOS .DS_Store -**/.DS_Store -# IntelliJ -.idea/ +input/InitialPopulations/original/* +input/InitialPopulations/base/* diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..3e22c5bb6 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,125 @@ +# CLAUDE.md + +This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository. + +## Important: Directory Path Contains Spaces + +The project root is `C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths`. The path contains spaces, so always wrap paths in double quotes in shell/Bash commands, e.g.: + +```bash +cd "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths" +mvn -f "C:\MyFiles\99 DEV ENV\JAS-MINE\SimPaths\pom.xml" compile +``` + +## Build & Run Commands + +```bash +# Compile only +mvn compile + +# Run unit tests (excludes integration tests) +mvn test + +# Run a single test class +mvn test -Dtest=MahalanobisDistanceTest + +# Run a single test method +mvn test -Dtest=PersonTest#methodName + +# Run integration tests (requires pre-built JARs) +mvn failsafe:integration-test + +# Build shaded JARs (produces singlerun.jar and multirun.jar in project root) +mvn package + +# Run simulation headless via multirun.jar (uses config/default.yml) +java -jar multirun.jar -config config/default.yml + +# Run database setup only +java -jar multirun.jar -DBSetup -config config/default.yml + +# Run with GUI (single run) +java -jar singlerun.jar +``` + +Java 19 is required (configured in pom.xml). Dependencies are pulled from Maven Central and JitPack (for JAS-mine). + +## Architecture Overview + +SimPaths is a **dynamic microsimulation model** built on the [JAS-mine](https://github.com/jasmineRepo) simulation framework. It projects individual and household life histories year-by-year across domains: labour market, health, demographics, social care, and taxes/benefits. + +### Simulation entity hierarchy + +``` +Household — groups BenefitUnits sharing a dwelling (parent–adult-child links) + └─ BenefitUnit — the tax/benefit assessment unit (couple or single + dependent children) + └─ Person — the individual agent (all life-course state is stored here) +``` + +All three are JPA `@Entity` classes persisted via Hibernate/H2. Each carries a `PanelEntityKey` (id + simulation_time + simulation_run). + +### Simulation lifecycle + +`SimPathsModel` (extends `AbstractSimulationManager`) owns the main simulation loop. Each year it fires ordered events that update entities via `EventListener.onEvent()`. The sequence covers: mortality → union formation/dissolution → fertility → education → labour market → taxes/benefits → health → social care → statistics collection. + +### Key classes to know + +| Class | Role | +|---|---| +| `SimPathsModel` | Orchestrates yearly event schedule; holds all population lists | +| `SimPathsStart` | Entry point for single runs (GUI or headless) | +| `SimPathsMultiRun` | Entry point for multi-run / sensitivity analysis | +| `SimPathsCollector` | Collects and exports output statistics each year | +| `Parameters` | Static store for all model parameters and regression coefficients loaded from Excel | +| `ManagerRegressions` | Routes regression evaluation calls to the correct JAS-mine regression objects | +| `Person` / `BenefitUnit` | Core simulation agents — most behavioural logic lives here | + +### Tax-benefit imputation (`model/taxes/`) + +Tax and benefit outcomes are not calculated analytically. Instead, the model uses **statistical matching**: simulated households are matched to a pre-built donor database derived from EUROMOD/UKMOD output. `TaxDonorDataParser` builds this database; `DonorTaxImputation` performs the matching using a nearest-neighbour key function (`KeyFunction1`–`KeyFunction4`). + +### Intertemporal optimisation (`model/decisions/`) + +An optional backward-induction module solves for optimal lifetime consumption and labour supply. `ManagerSolveGrids` runs the solution over a multi-dimensional state-space grid (age, health, education, pension, region, etc.). `ManagerPopulateGrids` sets up the grid geometry. This is computationally expensive and disabled by default (`enableIntertemporalOptimisations: false`). + +### Regression system + +All behavioural equations are estimated externally and loaded at startup from Excel files in `input/`. `Parameters` loads them via JAS-mine's `ExcelAssistant`/`MultiKeyCoefficientMap`. `RegressionName` (enum) names every equation; `ManagerRegressions` dispatches calls by type (linear, probit, ordered probit, multinomial logit, etc.). + +### Alignment + +Several demographic processes are aligned to external targets (ONS projections, LFS shares) via `ActivityAlignmentV2`, `FertilityAlignment`, `PartnershipAlignment`, `InSchoolAlignment`, `SocialCareAlignment`. Alignment factors are exported to `AlignmentStatistics.csv` each run. + +### Configuration + +Runs are configured via YAML files in `config/`. `default.yml` documents all available keys with their defaults. CLI flags override YAML values. `SimPathsMultiRun` reads the YAML and reflectively sets fields on `SimPathsModel`, `SimPathsCollector`, and `Parameters`. + +### Output + +Output is written to `output//csv/` by `SimPathsCollector`. Key files: +- `WealthIncomeStatistics.csv` — income and wealth (Gini, percentiles, S-Index, plus income and wealth by age band) +- `DemographicStatistics.csv` — demographics by age band (partnership, dependent children, population counts) +- `HealthStatistics.csv` — population health by age band (self-rated health, disability shares) +- `LabourStatistics.csv` — labour market transitions, participation, full-time/part-time shares by age band +- `AlignmentStatistics.csv` — alignment diagnostics +- `WellbeingByGender.csv` — wellbeing and quality of life (SF-12, GHQ-12, EQ-5D), ages 25–64, three rows per year (Total/Male/Female) + +The four age-band outputs share one population traversal per year via `AgeBandAggregates`; the bands are 18–29, 30–54 and 55–74. + +### Integration tests + +`RunSimPathsIntegrationTest` runs the full simulation end-to-end using the built JARs and compares CSV output against reference files in `src/test/java/simpaths/integrationtest/expected/`. If a substantive change shifts the output, update the expected files and commit them. + +## Domain Knowledge + +This section records design principles and non-obvious rationale accumulated through development. Update it as new insights emerge. + +### Price levels: SimPaths vs. the tax donor database + +All SimPaths financial variables are stored in **real 2015 prices** (`BASE_PRICE_YEAR`). The tax donor database, however, is denominated in **nominal prices of the respective policy year**. + +Tax donor matching therefore requires a two-step price bridge: +1. Inflate SimPaths income to policy-year prices before matching. +2. Deflate the imputed financial values from the matched donor record back to 2015 prices. + +The default uprating series is `TimeSeriesVariable.Inflation`, sourced from the `inflation` worksheet in `input/economic_time_series.xlsx`. An alternative option (added 2026-04) allows wage growth to be used instead of price growth for the initial matching step, controlled via a config flag. \ No newline at end of file diff --git a/GETTER_SETTER_RENAME_STRATEGY.md b/GETTER_SETTER_RENAME_STRATEGY.md new file mode 100644 index 000000000..ad5db75ef --- /dev/null +++ b/GETTER_SETTER_RENAME_STRATEGY.md @@ -0,0 +1,737 @@ +# Getter and Setter Rename Strategy + +## 1. Goal + +Align Java getter and setter method names with the backing field names they expose or update. + +Example in `simpaths.model.Person`: + +```java +private Education eduHighestC4; + +public Education getEduHighestC4() { + return eduHighestC4; +} + +public void setEduHighestC4(Education eduHighestC4) { + this.eduHighestC4 = eduHighestC4; +} +``` + +## 2. Core Rule + +Treat each getter and setter as a Java API rename. + +For each accessor: + +1. Confirm the backing field used by the method body. +2. Rename the method suffix to match the backing field in UpperCamelCase. +3. Rename all Java call sites in the same batch. +4. Compile after the batch. +5. Search for the old method name and resolve any remaining references. + +Avoid global text replacement across the repository. Some old names may also be survey variable names, database columns, CSV headers, comments, or external configuration values, and those should not be changed unless they are genuinely Java method references. + +## 3. Progress Summary + +| Batch | Status | Validation | Notes | +| --- | --- | --- | --- | +| `Person` education fields | Completed | `mvn test -DskipTests` and `mvn -Dtest=PersonTest test` passed on 2026-04-28 | No compatibility wrappers retained. Old method references removed from Java source and tests. | +| `Person` labour status fields | Completed | `mvn test -DskipTests` and `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | No compatibility wrappers retained. Old method references removed from Java source, tests, and reflective getter strings. | +| `Person` health fields | Completed | `mvn test -DskipTests` and `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | No compatibility wrappers retained. Old `Person` method references removed from Java source and reflective getter strings. Non-`Person` `States.getDlltsd()` remains intentionally retained as a decision-state API. | +| `Person` income fields | Completed | `mvn test -DskipTests` and `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | No compatibility wrappers retained. Old income method references removed from Java source, tests, XML/properties, and reflective getter strings. | +| `Person` demographic fields | Completed | `mvn test -DskipTests` and `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | No compatibility wrappers retained. Old `Person` demographic method references removed from Java source and reflective getter strings. Non-`Person` `States.getDcpst()` API was intentionally retained. | +| Remaining `Person` education/social-care flags | Completed | `mvn test -DskipTests` and `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | Strict field-name rule used for social-care methods. No compatibility wrappers retained. Old method references removed from Java source, tests, XML, and properties. | +| `BenefitUnit` local proxy state | Completed | `mvn test -DskipTests` and `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | Updated to preserve the `I_` prefix for methods setting `i_...` fields. `Person.setYearLocal(...)` intentionally retained outside this batch. | +| `BenefitUnit` children and poverty lags | Completed | `mvn test -DskipTests` and `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | `BenefitUnit` poverty API renamed to `yPvrtyFlag` field style. `Person.getAtRiskOfPoverty()` intentionally retained as a person-level derived API. | +| `BenefitUnit` household income and quintile fields | Completed | `mvn test -DskipTests` and checkpoint `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | Reflective collector string updated. Statistics percentile methods such as `getYdses_p20()` intentionally retained. | +| `BenefitUnit` wealth and costs | Completed | `mvn test -DskipTests` and checkpoint `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | Renamed only `BenefitUnit` APIs and direct `BenefitUnit` call sites. Similar `Person`, `Parameters`, decision-grid, and tax-key APIs intentionally retained. | +| `Household` original ID accessor | Completed | `mvn test -DskipTests` passed on 2026-04-28 | Renamed `getIdOriginalHH()` to `getIdHhOriginal()`. | +| Original household ID accessors | Completed | `mvn test -DskipTests` and local checkpoint `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | Renamed `Person` and `BenefitUnit` `getIdOriginalHH()` to `getIdHhOriginal()`. | +| Original person/benefit-unit ID accessors | Completed | `mvn test -DskipTests` and local checkpoint `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` passed on 2026-04-28 | Renamed `getIdOriginalPerson()` and `getIdOriginalBU()` to match `idPersOriginal` and `idBuOriginal`. | +| `i_` accessor naming correction | Completed | `mvn test -DskipTests` passed on 2026-04-28 | Corrected completed `BenefitUnit` `i_...` accessors to keep `I_`, including `getI_yNonBenHhGrossAsinh...` and local proxy setters. | +| Remaining `Person` direct field-backed residuals | Completed | `mvn test -DskipTests` passed on 2026-04-28 | Combined batch covering direct residuals, benefit lag setters, and local proxy setters. Boolean `is...` predicates and computed helpers intentionally excluded. | +| Statistics output beans | Completed | `mvn test -DskipTests` passed on 2026-04-29 | Renamed direct field-backed statistics output accessors in `Statistics` and `HealthStatistics`. Persisted `@Column` names unchanged. | +| Final runtime checkpoint | Completed | Focused tests, single run, and multirun passed on 2026-04-29 | Rename scope frozen before colleague discussion. Remaining computed/helper APIs stay deferred. | + +## 4. Naming Convention + +Use standard JavaBean-style accessor names: + +- `fieldName` -> `getFieldName()` / `setFieldName(...)` +- Boolean fields may use either the existing project convention or `isFieldName()` if already established locally. +- Lag fields should preserve the field suffix: + - `eduHighestC4L1` -> `getEduHighestC4L1()` / `setEduHighestC4L1(...)` +- Fields whose names begin with `i_` should keep the `I_` prefix in accessor names: + - `i_yNonBenHhGrossAsinh` -> `getI_yNonBenHhGrossAsinh()` / `setI_yNonBenHhGrossAsinh(...)` +- Local/transient helper accessors should keep meaningful qualifiers: + - `setRegionLocal(...)` can remain distinct from `setRegion(...)` where both have different behavior. + +## 5. Completed: Person Education Fields + +Completed education-related accessor renames in `src/main/java/simpaths/model/Person.java` and Java call sites under `src/main/java` and `src/test/java`. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getDeh_c4()` | `getEduHighestC4()` | `eduHighestC4` | +| `setDeh_c4(...)` | `setEduHighestC4(...)` | `eduHighestC4` | +| `setDeh_c4_lag1(...)` | `setEduHighestC4L1(...)` | `eduHighestC4L1` | +| `getDehm_c4()` | `getEduHighestMotherC4()` | `eduHighestMotherC4` | +| `setDehm_c4(...)` | `setEduHighestMotherC4(...)` | `eduHighestMotherC4` | +| `getDehf_c4()` | `getEduHighestFatherC4()` | `eduHighestFatherC4` | +| `setDehf_c4(...)` | `setEduHighestFatherC4(...)` | `eduHighestFatherC4` | +| `getDed()` | `getEduSpellFlag()` | `eduSpellFlag` | +| `setDed(...)` | `setEduSpellFlag(...)` | `eduSpellFlag` | +| `getDed_lag1()` | `getEduSpellFlagL1()` | `eduSpellFlagL1` | +| `setDed_lag1(...)` | `setEduSpellFlagL1(...)` | `eduSpellFlagL1` | +| `setDehsp_c4_lag1(...)` | `setEduHighestPartnerC4L1(...)` | `eduHighestPartnerC4L1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn -Dtest=PersonTest test` +- Focused test result: passed, 25 tests run +- Remaining old method references in Java source/tests: none +- Compatibility wrappers: none retained + +## 6. Completed: Person Labour Status Fields + +Completed labour-status accessor renames in `src/main/java/simpaths/model/Person.java` and Java call sites under `src/main/java` and `src/test/java`. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getLes_c4()` | `getLabC4()` | `labC4` | +| `setLes_c4(...)` | `setLabC4(...)` | `labC4` | +| `getLes_c4_lag1()` | `getLabC4L1()` | `labC4L1` | +| `setLes_c4_lag1(...)` | `setLabC4L1(...)` | `labC4L1` | +| `getLes_c7_covid()` | `getLabC7Covid()` | `labC7Covid` | +| `setLes_c7_covid(...)` | `setLabC7Covid(...)` | `labC7Covid` | +| `getLes_c7_covid_lag1()` | `getLabC7CovidL1()` | `labC7CovidL1` | +| `setLes_c7_covid_lag1(...)` | `setLabC7CovidL1(...)` | `labC7CovidL1` | +| `getLesdf_c4()` | `getLabStatusPartnerAndOwnC4()` | computed from `labC4` and partner `labC4` | +| `getLesdf_c4_lag1()` | `getLabStatusPartnerAndOwnC4L1()` | `labStatusPartnerAndOwnC4L1` | +| `setLesdf_c4_lag1(...)` | `setLabStatusPartnerAndOwnC4L1(...)` | `labStatusPartnerAndOwnC4L1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed, 29 tests run +- Remaining old method references in Java source/tests/XML/properties: none +- Reflective getter strings updated: `@Lag(getter="getLabStatusPartnerAndOwnC4")` +- Compatibility wrappers: none retained + +Work-history accessors such as `getLiwwh()` / `setLiwwh(...)` were not included in this batch. Handle them in a separate labour-history batch if needed. + +## 7. Completed: Person Health Fields + +Completed health-related accessor renames in `src/main/java/simpaths/model/Person.java` and Java call sites under `src/main/java`. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getDhe()` | `getHealthSelfRated()` | `healthSelfRated` | +| `setDhe(...)` | `setHealthSelfRated(...)` | `healthSelfRated` | +| `getDheValue()` | `getHealthSelfRatedValue()` | computed from `healthSelfRated` | +| `setDhe_lag1(...)` | `setHealthSelfRatedL1(...)` | `healthSelfRatedL1` | +| `getDlltsd()` | `getHealthDsblLongtermFlag()` | `healthDsblLongtermFlag` | +| `setDlltsd(...)` | `setHealthDsblLongtermFlag(...)` | `healthDsblLongtermFlag` | +| `getDlltsd_lag1()` | `getHealthDsblLongtermFlagL1()` | `healthDsblLongtermFlagL1` | +| `setDlltsd_lag1(...)` | `setHealthDsblLongtermFlagL1(...)` | `healthDsblLongtermFlagL1` | +| `setDhesp_lag1(...)` | `setHealthPartnerSelfRatedL1(...)` | `healthPartnerSelfRatedL1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed, 29 tests run +- Remaining old `Person` method references in Java source/tests/XML/properties: none +- Reflective getter strings updated: `"getHealthSelfRatedValue"` and `"getHealthSelfRated"` +- Compatibility wrappers: none retained + +Intentional retained names: + +- `States.getDlltsd()` remains unchanged because it is a decision-state API, not a `Person` accessor. +- Tax donor/key `DLLTSD` APIs were handled later in section 18.3. +- Health-statistics setters such as `setDhe_mcs_mean(...)` remain unchanged because they do not expose `Person` fields. + +Social-care fields were not included in this batch. Handle them in a separate social-care batch if needed. + +## 8. Completed: Person Income Fields + +Completed income-related accessor renames in `src/main/java/simpaths/model/Person.java` and Java call sites under `src/main/java`. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getyNonBenPersGrossMonth()` | `getYNonBenPersGrossMonth()` | `yNonBenPersGrossMonth` | +| `setyNonBenPersGrossMonth(...)` | `setYNonBenPersGrossMonth(...)` | `yNonBenPersGrossMonth` | +| `getyNonBenPersGrossMonthL1()` | `getYNonBenPersGrossMonthL1()` | `yNonBenPersGrossMonthL1` | +| `getyMiscPersGrossMonth()` | `getYMiscPersGrossMonth()` | `yMiscPersGrossMonth` | +| `getyMiscPersGrossMonthL1()` | `getYMiscPersGrossMonthL1()` | `yMiscPersGrossMonthL1` | +| `getyCapitalPersMonth()` | `getYCapitalPersMonth()` | `yCapitalPersMonth` | +| `getyPensPersGrossMonth()` | `getYPensPersGrossMonth()` | `yPensPersGrossMonth` | +| `getyEmpPersGrossMonth()` | `getYEmpPersGrossMonth()` | `yEmpPersGrossMonth` | +| `setyEmpPersGrossMonth(...)` | `setYEmpPersGrossMonth(...)` | `yEmpPersGrossMonth` | +| `getyEmpPersGrossMonthL1()` | `getYEmpPersGrossMonthL1()` | `yEmpPersGrossMonthL1` | +| `getyEmpPersGrossMonthL2()` | `getYEmpPersGrossMonthL2()` | `yEmpPersGrossMonthL2` | +| `getyEmpPersGrossMonthL3()` | `getYEmpPersGrossMonthL3()` | `yEmpPersGrossMonthL3` | +| `setYptciihs_dv(...)` | `setYMiscPersGrossMonth(...)` | `yMiscPersGrossMonth` | +| `getYnbcpdf_dv_lag1()` | `getYPersAndPartnerGrossDiffMonthL1()` | `yPersAndPartnerGrossDiffMonthL1` | +| `setYnbcpdf_dv_lag1(...)` | `setYPersAndPartnerGrossDiffMonthL1(...)` | `yPersAndPartnerGrossDiffMonthL1` | +| `setYpnbihs_dv_lag1(...)` | `setYNonBenPersGrossMonthL1(...)` | `yNonBenPersGrossMonthL1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed, 29 tests run +- Remaining old income method references in Java source/tests/XML/properties: none +- Reflective getter strings updated: `getYNonBenPersGrossMonth`, `getYCapitalPersMonth`, `getYPensPersGrossMonth`, `getYMiscPersGrossMonth`, and `getYEmpPersGrossMonth` +- Compatibility wrappers: none retained + +The `Lag` annotation example was also updated from `getyEmpPersGrossMonth` to `getYEmpPersGrossMonth`. + +## 9. Completed: Person Demographic Fields + +Completed demographic-related accessor renames in `src/main/java/simpaths/model/Person.java` and Java call sites under `src/main/java`. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getDot01()` | `getDemEthnC6()` | `demEthnC6` | +| `setDot01(...)` | `setDemEthnC6(...)` | `demEthnC6` | +| `getDcpst()` | `getDemPartnerStatus()` | computed from partner state or `i_demPartnerStatus` | +| `setDcpstLocal(...)` | `setDemPartnerStatusLocal(...)` | `i_demPartnerStatus` | +| `getDcpagdf()` | `getDemAgePartnerDiff()` | computed from `demAge` and partner `demAge` | +| `setDcpst_lag1(...)` | `setDemPartnerStatusL1(...)` | `demPartnerStatusL1` | +| `setDcpagdf_lag1(...)` | `setDemAgePartnerDiffL1(...)` | `demAgePartnerDiffL1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed, 29 tests run +- Remaining old `Person` demographic method references in Java source/tests/XML/properties: none +- Reflective getter strings updated: `@Lag(getter="getDemPartnerStatus")` +- Compatibility wrappers: none retained + +Intentional retained names: + +- `States.getDcpst()` remains unchanged because it is a decision-state API, not a `Person` accessor. + +## 10. Completed: Remaining Person Education And Social-Care Flags + +Completed remaining `Person` accessor renames that still used survey-code-like names or did not yet match backing fields. Social-care methods used the strict field-name rule for consistency. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getDer()` | `getEduReturnFlag()` | `eduReturnFlag` | +| `setDer(...)` | `setEduReturnFlag(...)` | `eduReturnFlag` | +| `getSedex()` | `getEduExitSampleFlag()` | `eduExitSampleFlag` | +| `setSedex(...)` | `setEduExitSampleFlag(...)` | `eduExitSampleFlag` | +| `getNeedSocialCare()` | `getCareNeedFlag()` | `careNeedFlag` | +| `setNeedSocialCare(...)` | `setCareNeedFlag(...)` | `careNeedFlag` | +| `setSocialCareFromOther(...)` | `setCareFromInformalFlag(...)` | `careFromInformalFlag` | +| `setCareHoursFromOtherWeekly_lag1(...)` | `setCareHrsInformalWeekL1(...)` | `careHrsInformalWeekL1` | +| `setCareHoursFromFormalWeekly_lag1(...)` | `setCareHrsFormalWeekL1(...)` | `careHrsFormalWeekL1` | +| `setSocialCareProvision_lag1(...)` | `setCareProvidedFlagL1(...)` | `careProvidedFlagL1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed, 29 tests run +- Remaining old method references in Java source/tests/XML/properties: none +- Compatibility wrappers: none retained + +## 11. Completed: BenefitUnit Accessors + +Completed broad `BenefitUnit` accessor pass in small controlled batches rather than renaming every accessor at once. + +Inspection notes: + +- `BenefitUnit` has many computed/domain accessors that already read naturally and should not be renamed just because they do not map one-to-one to a field. Examples: `getWeight()`, `getChildren()`, `getOccupancy()`, `getCoupleBoolean()`, `getRefPersonForDecisions()`, and regression helper methods. +- Prioritise methods that expose a backing field but still use survey-code names, inconsistent lag suffixes, or temporary/proxy names. +- For proxy/regression-state setters backed by transient `i_...` fields, prefer the strict `I_...` field-name form. +- Update `@Lag(getter=...)` strings in the same batch as the getter rename. + +Completion checkpoint: + +- Completed batches: local proxy state; children and poverty lags; household income and quintile fields; wealth and costs. +- Compile validation: `mvn test -DskipTests` passed after each `BenefitUnit` batch. +- Focused checkpoint command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused checkpoint result: passed on 2026-04-28, 29 tests run, 0 failures, 0 errors, 0 skipped. +- Compatibility wrappers: none retained for the renamed `BenefitUnit` APIs. +- Deliberately retained APIs: computed/domain `BenefitUnit` methods such as `getRegion()`, `getOccupancy()`, `getDemCompHhC4()`, and non-`BenefitUnit` similarly named APIs documented below. + +### 11.1. Completed: BenefitUnit Local Proxy State + +These are used by `Expectations` to initialise proxy objects for decision/regression evaluation. The final names keep the `I_` prefix because the backing fields begin with `i_`. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `setDeh_c4Local(...)` | `setI_eduHighestC4(...)` | `i_eduHighestC4` | +| `setOccupancyLocal(...)` | `setI_demOccupancy(...)` | `i_demOccupancy` | +| `setLabourHoursWeekly1Local(...)` | `setI_labHrsWork1Week(...)` | `i_labHrsWork1Week` | +| `setLabourHoursWeekly2Local(...)` | `setI_labHrsWork2Week(...)` | `i_labHrsWork2Week` | +| `setYearLocal(...)` | `setI_demYear(...)` | `i_demYear` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed, 29 tests run +- Remaining old `BenefitUnit` local proxy method references in Java source/tests/XML/properties: none + +Intentional retained names: + +- `Person` proxy setters backed by `i_...` fields are handled separately in the planned `Person Local Proxy Setters` batch. + +### 11.2. Completed: BenefitUnit Children And Poverty Lags + +These methods exposed lag fields but used `_lag1` names or compact child-age names. They were renamed to backing-field style. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getNumberChildrenAll_lag1()` | `getNumberChildrenAllL1()` | `numberChildrenAll_lag1` | +| `getNumberChildren02_lag1()` | `getNumberChildren02L1()` | `numberChildren02_lag1` | +| `getIndicatorChildren03_lag1()` | `getDem0to3L1()` | `dem0to3L1` | +| `getIndicatorChildren412_lag1()` | `getDem4to12L1()` | `dem4to12L1` | +| `getAtRiskOfPoverty_lag1()` | `getYPvrtyFlagL1()` | `yPvrtyFlagL1` | +| `getAtRiskOfPoverty()` | `getYPvrtyFlag()` | `yPvrtyFlag`; updated `@Lag(getter = "getYPvrtyFlag")`. | +| `setAtRiskOfPoverty(...)` | `setYPvrtyFlag(...)` | `yPvrtyFlag` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed, 29 tests run +- Remaining old `BenefitUnit` children/poverty method references in Java source/tests/XML/properties: none +- Compatibility wrappers: none retained + +Intentional retained names: + +- `Person.getAtRiskOfPoverty()` remains unchanged because it is a person-level derived API that delegates to `benefitUnit.getYPvrtyFlag()`. +- `Person.class, "getAtRiskOfPoverty"` reflective strings in poverty plot setup remain unchanged because they target the retained `Person` method, not `BenefitUnit`. + +### 11.3. Completed: BenefitUnit Household Income And Quintile Fields + +These were mostly survey-code-like names or temporary names around household income/quintiles. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getYdses_c5()` | `getYHhQuintilesMonthC5()` | `yHhQuintilesMonthC5` | +| `getYdses_c5_lag1()` | `getYHhQuintilesMonthC5L1()` | `yHhQuintilesMonthC5L1` | +| `getTmpHHYpnbihs_dv_asinhNoNull()` | `getI_yNonBenHhGrossAsinhNoNull()` | `i_yNonBenHhGrossAsinh` | +| `getTmpHHYpnbihs_dv_asinh()` | `getI_yNonBenHhGrossAsinh()` | `i_yNonBenHhGrossAsinh` | +| `setTmpHHYpnbihs_dv_asinh(...)` | `setI_yNonBenHhGrossAsinh(...)` | `i_yNonBenHhGrossAsinh` | + +Related private helper renames: + +- `Person.getYdses_c5_lag1()` -> `Person.getYHhQuintilesMonthC5L1()` +- `Person.getYdses_c5_current()` -> `Person.getYHhQuintilesMonthC5Current()` + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused checkpoint command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused checkpoint result: passed on 2026-04-28, 29 tests run +- Remaining old household income/quintile method references in Java source/tests/XML/properties: none +- Compatibility wrappers: none retained + +Intentional retained names: + +- Statistics percentile methods such as `getYdses_p20()` remain unchanged because they are not `BenefitUnit` field accessors in this batch. + +### 11.4. Completed: BenefitUnit Wealth And Costs + +These names were domain-readable but did not match backing fields. They were renamed using the strict field-name rule for consistency with the rest of this branch. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getLiquidWealth(...)` | `getWealthTotValue(...)` | `wealthTotValue` | +| `getPensionWealth(...)` | `getWealthPensValue(...)` | `wealthPensValue` | +| `setPensionWealth(...)` | `setWealthPensValue(...)` | `wealthPensValue` | +| `getHousingWealth(...)` | `getWealthPrptyValue(...)` | `wealthPrptyValue` | +| `setHousingWealth(...)` | `setWealthPrptyValue(...)` | `wealthPrptyValue` | +| `getChildcareCostPerWeek(...)` | `getXChildCareWeek(...)` | `xChildCareWeek` | +| `getSocialCareCostPerWeek(...)` | `getXCareWeek(...)` | `xCareWeek` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Focused checkpoint command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused checkpoint result: passed on 2026-04-28, 29 tests run +- Compatibility wrappers: none retained + +Intentional retained names: + +- `Person.getLiquidWealth()` remains unchanged because it is a person-level wealth accessor. +- `Parameters.getLiquidWealthDiscount(...)`, `Parameters.getPensionWealthDiscount(...)`, and `Parameters.getHousingWealthDiscount(...)` remain unchanged because they are parameter APIs, not `BenefitUnit` getters. +- Decision-grid wealth APIs such as `States.getLiquidWealth()` and `WriteGridsBean.getLiquidWealth()` remain unchanged. +- Tax-key methods such as `DonorKeys.getChildcareCostPerWeek()` and `KeyFunction.getChildcareCostPerWeek()` remain unchanged because they are outside the `BenefitUnit` model batch. + +### 11.5. Do Not Rename In Initial BenefitUnit Pass + +- `getRegion()` / `setRegion(...)`: already direct and widely used across `Person`, filters, matching, and migration logic. +- `getOccupancy()`: computed domain value, not a direct getter for `i_demOccupancy`. +- `getDemCompHhC4()`: computed household composition matching the existing field and `@Lag` usage. +- Regression enum values such as `MaleLeisure_MaleDeh_c3_Low`: these are model variable IDs, not getter/setter APIs. +- Non-`BenefitUnit` similarly named methods, especially decision-state APIs. + +## 12. Completed: Household Accessors + +Inspection of `src/main/java/simpaths/model/Household.java` found one clear accessor mismatch. The class is small, and most accessors are either computed/domain APIs or framework identifiers. + +### 12.1. Completed: Household Original ID Accessor + +Completed rename: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getIdOriginalHH()` | `getIdHhOriginal()` | `idHhOriginal` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Remaining `Household.getIdOriginalHH()` references in Java source/tests/XML/properties: none +- Compatibility wrappers: none retained + +Do not rename in this pass: + +- `getId()` returns the simulation/panel key ID, not `idHhOriginal`. +- `getBenefitUnits()` matches the `benefitUnits` collection. +- `setProcessed(...)` sets `processed` and also updates `key.workingId`; the current name is appropriate for the backing relationship. +- `setHouseholdIdCounter(...)` is a static counter API, not an instance-field accessor. +- `getWeight()`, `setWeight(...)`, and `getEquivalisedDisposableIncomeYearly()` are computed/domain APIs. + +## 13. Completed: Original Household ID Accessors + +After completing `Household`, the same field-name mismatch remained in nearby model classes. This batch was coherent, low-risk, and limited to copy-constructor/internal call sites. + +Completed renames: + +| Old method | New method | Backing field | Class | +| --- | --- | --- | --- | +| `getIdOriginalHH()` | `getIdHhOriginal()` | `idHhOriginal` | `Person` | +| `getIdOriginalHH()` | `getIdHhOriginal()` | `idHhOriginal` | `BenefitUnit` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Local focused checkpoint command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Local focused checkpoint result: passed on 2026-04-28 at 14:58:36, 29 tests run, 0 failures, 0 errors, 0 skipped +- Remaining `getIdOriginalHH()` references in Java source/tests/XML/properties: none +- Compatibility wrappers: none retained + +## 14. Completed: Original Person And Benefit-Unit ID Accessors + +Completed remaining original-ID accessors in `Person` and `BenefitUnit`. They had direct backing-field mismatches and limited constructor call sites. + +Completed renames: + +| Old method | New method | Backing field | Class | +| --- | --- | --- | --- | +| `getIdOriginalPerson()` | `getIdPersOriginal()` | `idPersOriginal` | `Person` | +| `getIdOriginalBU()` | `getIdBuOriginal()` | `idBuOriginal` | `Person` | +| `getIdOriginalBU()` | `getIdBuOriginal()` | `idBuOriginal` | `BenefitUnit` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Local focused checkpoint command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Local focused checkpoint result: passed on 2026-04-28 at 14:58:36, 29 tests run, 0 failures, 0 errors, 0 skipped +- Remaining old original person/benefit-unit ID method references in Java source/tests/XML/properties: none +- Compatibility wrappers: none retained + +## 15. Completed: ID Accessor Checkpoint + +The ID accessor batches for `Household`, `Person`, and `BenefitUnit` have a shared focused validation checkpoint. + +- Scope: `Household.getIdHhOriginal()`, `Person.getIdHhOriginal()`, `BenefitUnit.getIdHhOriginal()`, `Person.getIdPersOriginal()`, `Person.getIdBuOriginal()`, and `BenefitUnit.getIdBuOriginal()`. +- Local focused checkpoint command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Local focused checkpoint result: passed on 2026-04-28 at 14:58:36, 29 tests run, 0 failures, 0 errors, 0 skipped +- Maven result: `BUILD SUCCESS` + +## 16. Completed: Final Runtime Checkpoint + +The current rename scope is frozen before colleague discussion. + +- Focused test command: `mvn "-Dtest=PersonTest,EmploymentHistoryFilterTest,EmploymentStatisticsTest" test` +- Focused test result: passed on 2026-04-29, 29 tests run, 0 failures, 0 errors, 0 skipped +- Maven result: `BUILD SUCCESS` +- Runtime validation: single simulation run completed without errors +- Runtime validation: multirun completed without errors +- Remaining computed/helper APIs are intentionally deferred for colleague discussion. + + +## 17. Planned: Remaining Person Underscore-Style Accessors + +Inspection of `src/main/java/simpaths/model/Person.java` found remaining public accessors with underscores. Split them into direct field-backed renames and computed helper APIs. Direct field-backed methods can continue through the normal branch workflow. Computed helpers are labelled "to be determined" because they do not have a clear one-to-one backing-field rename. + +### 17.1. Completed: Person Direct Field-Backed Residuals + +These had clear backing fields and were renamed under the strict field-name rule. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `getHousehold_status_lag()` | `getDemStatusHhL1()` | `demStatusHhL1` | +| `setNewWorkHours_lag1(...)` | `setLabHrsWorkNewL1(...)` | `labHrsWorkNewL1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Remaining old direct field-backed residual method references in Java source/tests/XML/properties: none + +### 17.2. Completed: Person Benefit Receipt Lag Flags + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `setReceivesBenefitsFlag_L1(...)` | `setYBenReceivedFlagL1(...)` | `yBenReceivedFlagL1` | +| `setReceivesBenefitsFlagUC_L1(...)` | `setYBenUCReceivedFlagL1(...)` | `yBenUCReceivedFlagL1` | +| `setReceivesBenefitsFlagNonUC_L1(...)` | `setYBenNonUCReceivedFlagL1(...)` | `yBenNonUCReceivedFlagL1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Remaining old benefit lag setter references in Java source/tests/XML/properties: none + +Intentional exclusions: + +- Boolean `is...` methods such as `isReceivesBenefitsFlag_L1()`, `isReceivesBenefitsFlagUC_L1()`, and `isReceivesBenefitsFlagNonUC_L1()` are excluded because the current branch scope is getter/setter method names, not boolean predicate APIs. + +### 17.3. Completed: Person Local Proxy Setters + +These are used by decision expectation proxy objects. Under the strict `i_` rule, methods for fields beginning with `i_` keep the `I_` prefix. + +Completed renames: + +| Old method | New method | Backing field | +| --- | --- | --- | +| `setRegionLocal(...)` | `setI_demRgn(...)` | `i_demRgn` | +| `setDemPartnerStatusLocal(...)` | `setI_demPartnerStatus(...)` | `i_demPartnerStatus` | +| `setYearLocal(...)` | `setI_demYear(...)` | `i_demYear` | +| `setNumberChildren017Local(...)` | `setI_demNchild0to17(...)` | `i_demNchild0to17` | +| `setIndicatorChildren02Local(...)` | `setI_demNChild0to2(...)` | `i_demNChild0to2` | +| `setNumberChildrenAllLocal(...)` | `setI_demNchild(...)` | `i_demNchild` | +| `setI_yHhQuintilesC5(...)` | no rename needed | `i_yHhQuintilesC5` | +| `setI_demCompHhC4L1(...)` | no rename needed | `i_demCompHhC4L1` | +| `setNumberChildrenAllLocal_lag1(...)` | `setI_demNchildL1(...)` | `i_demNchildL1` | +| `setNumberChildren02Local_lag1(...)` | `setI_demNchild0to2L1(...)` | `i_demNchild0to2L1` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed +- Remaining old local proxy setter references in Java source/tests/XML/properties: none + +### 17.4. Partially Completed: Person Computed Helper APIs + +These methods do not directly expose a backing field or they add fallback/defaulting/domain logic. Rename only where the team agrees a clear computed-helper naming rule. + +Agreed exception: + +- Computed binary indicator helpers may use semantic `...FlagL1` names when they return `0/1`, derive from a lagged state field, and have no direct backing field. + +| Current method | Reason to defer | +| --- | --- | +| `getCareHoursFromParent_L1()` | computed helper, currently zero | +| `getCareHoursFromPartner_L1()` | computed from partner status and informal lag hours | +| `getCareHoursFromDaughter_L1()` | computed helper, currently zero | +| `getCareHoursFromSon_L1()` | computed helper, currently zero | +| `getCareHoursFromOther_L1()` | computed from partner status and informal lag hours | + +Completed computed/direct helper renames: + +| Old method | New method | Reason | +| --- | --- | --- | +| `getEmployed_Lag1()` | `getEmployedFlagL1()` | computed `0/1` indicator from `labC4L1` | +| `getNonwork_Lag1()` | `getNonworkFlagL1()` | computed `0/1` indicator from `labC4L1` | +| `getHoursFormalSocialCare_L1()` | `getCareHrsFormalWeekL1()` | returns `careHrsFormalWeekL1` with existing zero-floor/default behavior | +| `getHoursInformalSocialCare_L1()` | `getCareHrsInformalWeekL1()` | returns `careHrsInformalWeekL1` with existing zero-floor/default behavior | +| `getTotalHoursSocialCare_L1()` | `getCareHrsTotalWeekL1()` | computed total of formal and informal lag care hours | +| `getYnbcpdf_dv()` | `getYPersAndPartnerGrossDiffMonth()` | computed current own-partner non-benefit gross personal income difference; `@Lag(getter=...)` updated | +| `getCovidModuleGrossLabourIncome_Baseline()` | `getCovidYLabGross()` | returns `covidYLabGross` with existing null-to-zero default | +| `setCovidModuleGrossLabourIncome_Baseline(...)` | `setCovidYLabGross(...)` | directly sets `covidYLabGross` | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed on 2026-05-08 and 2026-05-12 +- Remaining old completed helper references in Java source/tests/XML/properties: none + + + +## 18. Inspected: Outside Person BenefitUnit Household + +Inspection outside the current `Person` / `BenefitUnit` / `Household` pass did not find another clear model-entity field-backed accessor batch comparable to the completed work. Remaining public `get...` / `set...` methods with underscores or survey-code names mostly fall into output/statistics, parameter, tax donor, or computed helper APIs. + +### 18.1. Completed: Statistics Output Beans + +These methods are direct setters/getters in statistics output classes. Java method names were aligned to backing fields while leaving persisted `@Column` names unchanged. + +| Class | Current method group | New method group | +| --- | --- | --- | +| `Statistics` | `getYdses_p20()` / `setYdses_p20(...)` | `getYHhQuintilesC5P20()` / `setYHhQuintilesC5P20(...)` | +| `Statistics` | `getYdses_p40()` / `setYdses_p40(...)` | `getYHhQuintilesC5P40()` / `setYHhQuintilesC5P40(...)` | +| `Statistics` | `getYdses_p60()` / `setYdses_p60(...)` | `getYHhQuintilesC5P60()` / `setYHhQuintilesC5P60(...)` | +| `Statistics` | `getYdses_p80()` / `setYdses_p80(...)` | `getYHhQuintilesC5P80()` / `setYHhQuintilesC5P80(...)` | +| `Statistics` | `getsIndex_p50()` / `setsIndex_p50(...)` | `getSIndex_p50()` / `setSIndex_p50(...)` | +| `Statistics` | `getGrossLabourIncome_p20()` / `setGrossLabourIncome_p20(...)` | `getYLabP20()` / `setYLabP20(...)` | +| `Statistics` | `getGrossLabourIncome_p40()` / `setGrossLabourIncome_p40(...)` | `getYLabP40()` / `setYLabP40(...)` | +| `Statistics` | `getGrossLabourIncome_p60()` / `setGrossLabourIncome_p60(...)` | `getYLabP60()` / `setYLabP60(...)` | +| `Statistics` | `getGrossLabourIncome_p80()` / `setGrossLabourIncome_p80(...)` | `getYLabP80()` / `setYLabP80(...)` | +| `HealthStatistics` | `setDhm_*()` setters | `setHealthWbScore0to36*()` setters | +| `HealthStatistics` | `setDhe_mcs_*()` setters | `setHealthMentalMcs*()` setters | +| `HealthStatistics` | `setDhe_pcs_*()` setters | `setHealthPhysicalPcs*()` setters | +| `HealthStatistics` | `setDls_*()` setters | `setDemLifeSatScore0to10*()` setters | + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed on 2026-04-29 +- Case-sensitive stale-name scan for old statistics output method names: none + +Intentional retained names: + +- `getEdi_p50()` and `setEdi_p50(...)` remain unchanged because they already match the backing field `edi_p50`. +- Persisted `@Column` names such as `Ydses_p20`, `dhm_mean`, and `dhe_mcs_mean` remain unchanged. + +### 18.2. To Be Determined: Parameter And Regression Accessors + +`simpaths.data.Parameters` contains regression accessors such as `getRegC19LS_SE()`, `getRegC19LS_E1()`, and related Covid-19 labour-transition names. These expose regression IDs/model names rather than normal domain fields. + +Recommendation: do not rename in this pass. Treat them as parameter/regression identifier APIs unless a separate configuration naming policy is agreed. + +### 18.3. Completed: Tax Donor And Key APIs + +Tax donor/key `DLLTSD` accessors were renamed where the code already has a stable full-name equivalent, `healthDsblLongtermFlag`. + +| Class | Old name | New name | Backing field | +| --- | --- | --- | --- | +| `DonorPerson` | `getDlltsd()` | `getHealthDsblLongtermFlag()` | `healthDsblLongtermFlag` | +| `KeyFunction` | `dlltsdMan` | `healthDsblLongtermFlagMan` | `healthDsblLongtermFlagMan` | +| `KeyFunction` | `getDlltsdMan()` | `getHealthDsblLongtermFlagMan()` | `healthDsblLongtermFlagMan` | +| `KeyFunction` | `setDlltsdMan(...)` | `setHealthDsblLongtermFlagMan(...)` | `healthDsblLongtermFlagMan` | +| `KeyFunction` | `dlltsdWoman` | `healthDsblLongtermFlagWoman` | `healthDsblLongtermFlagWoman` | +| `KeyFunction` | `getDlltsdWoman()` | `getHealthDsblLongtermFlagWoman()` | `healthDsblLongtermFlagWoman` | +| `KeyFunction` | `setDlltsdWoman(...)` | `setHealthDsblLongtermFlagWoman(...)` | `healthDsblLongtermFlagWoman` | + +Notes: + +- Persisted donor-data column names such as `DLLTSD` remain unchanged. +- Constructor parameters and local matching variables using `dlltsd` remain unchanged where they represent survey-code/tax-key inputs rather than stored Java fields. + +Validation: + +- Compile command: `mvn test -DskipTests` +- Result: passed on 2026-05-08 + +### 18.4. To Be Determined: Computed Model Helper APIs + +`SimPathsModel` has computed projection helpers such as `getPopulationProjectionByAge0_18()`, `getPopulationProjectionByAge2_10()`, and similar age-band methods. They call `getPopulationProjectionByAge(startAge, endAge)` and do not expose backing fields. + +Recommendation: keep them in the same "computed helper" category as `Person.getEmployed_Lag1()` and similar methods. Do not rename until the team agrees a rule for computed helper APIs. + + + +## 19. Suggested Batch Order + +1. `Person` education fields. +2. `Person` labour status fields. +3. `Person` health fields. +4. `Person` income fields. +5. `Person` demographic fields. +6. `BenefitUnit` accessors. +7. Other model classes. +8. Filters, statistics, and decision-model call sites that remain after model class batches. + +Keep each batch small enough that compile errors clearly point to missed call sites from that batch. + +## 20. Validation + +After each batch: + +```powershell +mvn test +``` + +If the full test suite is too slow, at minimum run the normal compile target used by the project: + +```powershell +mvn test -DskipTests +``` + +Then search for old method names, for example: + +```powershell +rg -n "getDeh_c4|setDeh_c4|setDeh_c4_lag1" src/main/java +``` + +If `rg` is unavailable, use PowerShell: + +```powershell +Get-ChildItem -Path src/main/java -Recurse -Filter *.java | + Select-String -Pattern "getDeh_c4|setDeh_c4|setDeh_c4_lag1" +``` + +## 21. Review Checklist + +- [ ] Method declaration renamed. +- [ ] Java call sites renamed. +- [ ] No unintended resource, SQL, input-column, or survey-code changes. +- [ ] Old method name no longer appears in Java source, unless deliberately retained as a temporary deprecated wrapper. +- [ ] Project compiles. +- [ ] Relevant tests pass or skipped tests are explicitly noted. + +## 22. Temporary Compatibility Wrappers + +Prefer complete renames without wrappers on this branch. + +Only add deprecated wrapper methods if another active branch or external integration needs temporary compatibility: + +```java +@Deprecated +public Education getDeh_c4() { + return getEduHighestC4(); +} +``` + +Remove wrappers before the final cleanup unless there is a documented reason to keep them. diff --git a/config/default.yml b/config/default.yml index ca449ce17..f4640ff9c 100644 --- a/config/default.yml +++ b/config/default.yml @@ -1,8 +1,18 @@ # SimPaths multi-run configuration file. # Uncomment and edit any field to override its default value. # CLI flags take final precedence over anything set here. +# +# Commented-out keys show the class default; uncommenting one overrides it. +# An unrecognised key is not an error - it logs a stack trace and is ignored, +# so a mistyped or renamed key silently leaves the default in place. +# +# Only int, long, boolean, double and String fields can be set from this file. +# Fields of other types (for example the UnionMatchingMethod enum behind union +# matching) are not settable here and will fail at startup if added. -# ── Top-level run arguments ──────────────────────────────────────────────────── +# ── Top-level run arguments ─────────────────────────────────────────────────── +# Unlike the sections below, these are active settings rather than documented +# defaults - they override the SimPathsMultiRun defaults on every run. maxNumberOfRuns: 1 # number of sequential simulation runs executeWithGui: false # true = launch JAS-mine GUI; false = headless (required on servers/CI) @@ -10,7 +20,7 @@ randomSeed: 606 # seed for the first run; incremented automatically if startYear: 2019 # first year of simulation (must have matching input/donor data) endYear: 2022 # last year of simulation (inclusive) popSize: 50000 # simulated population size (larger = more accurate, slower) -# countryString: "United Kingdom" # "United Kingdom" or "Italy" (auto-detected from donor DB if omitted) +# countryString: "United Kingdom" # Auto-detected from donor DB if omitted # integrationTest: false # true = write output to a fixed folder for comparison in CI tests @@ -23,8 +33,9 @@ model_args: # --- Time trend controls --- # maxAge: 130 # maximum age kept in simulation; persons above this are removed # fixTimeTrend: true # if true, freezes the time trend in regression equations -# timeTrendStopsIn: 2017 # year at which the time trend is frozen (if fixTimeTrend: true) -# timeTrendStopsInMonetaryProcesses: 2017 # same freeze year applied to monetary/income regressions only +# timeTrendStopsIn: 2023 # year at which the time trend is frozen (if fixTimeTrend: true) +# timeTrendStopsInMonetaryProcesses: 2023 # same freeze year for monetary/income regressions; + # defaults to whatever timeTrendStopsIn is set to # --- Random number controls --- # fixRandomSeed: true # if true, each run uses the same fixed seed (randomSeedIfFixed) @@ -32,7 +43,7 @@ model_args: # --- Income security (S-Index) --- # The S-Index is an economic (in)security index computed from a rolling window of # equivalised consumption, discounted and weighted by a risk-aversion parameter. - # SIndex_p50 is reported in Statistics1.csv each year. + # SIndex_p50 is reported in WealthIncomeStatistics.csv each year. # sIndexTimeWindow: 5 # length of rolling window in years (default 5) # sIndexAlpha: 2 # coefficient of relative risk aversion (higher = more sensitivity to drops) # sIndexDelta: 0.98 # annual discount factor applied to past consumption observations @@ -48,7 +59,10 @@ model_args: # useWeights: false # if true, apply survey weights in alignment and statistics calculations # --- Matching method --- -# useSBAMMatching: # if true, use SBAM instead of standard union-matching algorithm + # Union matching is controlled by the UnionMatchingMethod enum field + # `unionMatchingMethod` (default ParametricNoRegion; alternatives Parametric, SBAM). + # It cannot be set from this file - enum fields are not supported by the config + # loader - so change it in SimPathsModel or via the GUI. # --- Demographic projections --- # projectMortality: true # if false, disables stochastic mortality (population does not die) @@ -56,10 +70,10 @@ model_args: # --- Alignment flags --- # See model-concepts.md for a full explanation of what alignment does. # alignPopulation: true # align age-sex-region totals to official population projections -# alignFertility: true # scale birth probabilities to match projected fertility rates +# alignFertility: false # scale birth probabilities to match projected fertility rates # alignEducation: false # align completed education distribution to targets # alignInSchool: false # align school participation rate (age 16–29) to targets -# alignCohabitation: false # align share of cohabiting individuals to targets +# alignCohabitation: true # align share of cohabiting individuals to targets # alignEmployment: false # align employment share to targets # --- Labour market modules --- @@ -68,13 +82,18 @@ model_args: # --- Social care and childcare --- # projectFormalChildcare: true # simulate formal childcare costs -# projectSocialCare: false # simulate social care receipt and provision module +# projectSocialCare: true # simulate social care receipt and provision module # flagSuppressChildcareCosts: false # if true, set formal childcare costs to zero (scenario use) # flagSuppressSocialCareCosts: false # if true, set social care costs to zero (scenario use) # --- Tax-benefit imputation --- # donorPoolAveraging: true # if true, average disposable income over k nearest-neighbour donors # rather than using the single closest donor; reduces imputation volatility +# taxDonorUpratingByWage: false # if true, scale simulated income by nominal wage growth (compound of + # WageGrowth and Inflation indices). before matching to the tax donor + # database, instead of price growth only. Imputed financial flows are + # always deflated back to BASE_PRICE_YEAR (2015) using Inflation only, + # regardless of this setting. # --- Regression stochasticity --- # addRegressionStochasticComponent: true # include the residual draw in regression predictions @@ -89,12 +108,12 @@ model_args: # Enables backward-induction life-cycle solution for consumption and labour supply. # Decision grids are pre-computed in year 0; agents look up optimal choices each year. # Computationally intensive — disabled by default. -# enableIntertemporalOptimisations: true +# enableIntertemporalOptimisations: false # IO state-space: which characteristics agents respond to when choosing labour/consumption. # Each flag adds a dimension to the grid and increases solve time. # responsesToHealth: true # include physical health in IO state space -# responsesToDisability: false # include disability status in IO state space +# responsesToDisability: true # include disability status in IO state space # responsesToEducation: true # include student and education level in IO state space # responsesToPension: false # include private pension wealth in IO state space # responsesToRetirement: false # include retirement state (and private pension) in IO state space @@ -117,6 +136,19 @@ model_args: # --- Population load --- # ignoreTargetsAtPopulationLoad: false # if true, skip alignment-target checks when loading the initial population + # --- Lifetime income projection --- + # Optional module that projects lifetime income paths for synthetic birth cohorts, + # run once at model build time before the simulation starts. Off by default. +# lifetimeIncomeGenerate: false # generate a new set of lifetime incomes +# lifetimeIncomeStartBirthYear: # first birth cohort to project (no default; required if generating) +# lifetimeIncomeEndBirthYear: # last birth cohort to project (no default; required if generating) +# lifetimeIncomeEndAge: # age at which each cohort's projection stops (no default) +# lifetimeIncomeCohortSize: 10000 # number of synthetic individuals per birth cohort +# lifetimeIncomeWriteToCSV: false # write the projected lifetime incomes to CSV +# lifetimeIncomeRandomSeed: 505 # seed for the lifetime income projection +# lifetimeIncomeAge0StdDev: 0.9 # standard deviation of the initial income draw at age 0 +# lifetimeIncomeImpute: false # impute lifetime income for the initial population at load + # ── innovation_args: parameter variation across sequential runs ──────────────── # These flags control how parameters change between run 0, run 1, run 2, etc. @@ -140,24 +172,31 @@ innovation_args: # ── collector_args: output collection and export ─────────────────────────────── # Controls what SimPathsCollector writes to CSV / database each year. # -# Output files: -# Statistics1.csv — income distribution: Gini coefficients, income percentiles, median EDI, S-Index -# Statistics2.csv — demographic validation: partnership rates, employment, health, disability by age/gender -# Statistics3.csv — alignment diagnostics: simulated vs target rates and adjustment factors -# EmploymentStatistics.csv — labour market transitions and participation rates -# HealthStatistics.csv — health measures (SF-12, GHQ-12, EQ-5D) by age/gender +# Output files (one row per year unless noted): +# WealthIncomeStatistics.csv — income and wealth: Gini coefficients, income percentiles, +# median EDI, S-Index, and income/wealth by age band (18-29, 30-54, 55-74) +# DemographicStatistics.csv — demographics by age band: partnership rates, dependent children, +# population counts +# HealthStatistics.csv — population health by age band: self-rated health and disability shares +# LabourStatistics.csv — labour market transitions, participation rates, and +# full-time/part-time shares by age band +# AlignmentStatistics.csv — alignment diagnostics: factors, simulated shares, and target shares +# WellbeingByGender.csv — wellbeing and health-related quality of life (SF-12, GHQ-12, EQ-5D), +# ages 25-64, three rows per year: Total, Male, Female collector_args: # calculateGiniCoefficients: false # compute Gini coefficients (also populates GUI charts); off by default for speed # exportToDatabase: false # write outputs to H2 database (in addition to or instead of CSV) # exportToCSV: true # write outputs to CSV files under output//csv/ -# persistStatistics: true # write Statistics1.csv (income distribution) -# persistStatistics2: true # write Statistics2.csv (demographic validation outputs) -# persistStatistics3: true # write Statistics3.csv (alignment diagnostics) -# persistPersons: false # write one row per person per year (large files) -# persistBenefitUnits: false # write one row per benefit unit per year (large files) -# persistHouseholds: false # write one row per household per year -# persistEmploymentStatistics: false # write EmploymentStatistics.csv +# persistWealthIncomeStatistics: true # write WealthIncomeStatistics.csv (income and wealth) +# persistDemographicStatistics: true # write DemographicStatistics.csv (demographics by age band) +# persistAlignmentStatistics: true # write AlignmentStatistics.csv (alignment diagnostics) +# persistLabourStatistics: true # write LabourStatistics.csv (labour market outcomes) +# persistHealthStatistics: true # write HealthStatistics.csv (population health by age band) +# persistWellbeingByGender: true # write WellbeingByGender.csv (wellbeing by gender, ages 25-64) +# persistPersons: true # write one row per person per year (large files) +# persistBenefitUnits: true # write one row per benefit unit per year (large files) +# persistHouseholds: true # write one row per household per year (large files) # dataDumpStartTime: 0L # first year to write output (0 = startYear) # dataDumpTimePeriod: 1.0 # output frequency in years (1.0 = every year) diff --git a/config/test_run.yml b/config/test_run.yml index 8895a6b60..ad0c29019 100644 --- a/config/test_run.yml +++ b/config/test_run.yml @@ -10,9 +10,9 @@ popSize: 20000 integrationTest: true collector_args: - persistStatistics: true - persistStatistics2: true - persistStatistics3: true + persistWealthIncomeStatistics: true + persistDemographicStatistics: true + persistAlignmentStatistics: true persistPersons: false persistBenefitUnits: false - persistHouseholds: false \ No newline at end of file + persistHouseholds: false diff --git a/documentation/SimPaths_Variable_Codebook.xlsx b/documentation/SimPaths_Variable_Codebook.xlsx index a14bd3544..f3bf171f5 100644 Binary files a/documentation/SimPaths_Variable_Codebook.xlsx and b/documentation/SimPaths_Variable_Codebook.xlsx differ diff --git a/documentation/flowcharts/flowchart_review_prompt.md b/documentation/flowcharts/flowchart_review_prompt.md new file mode 100644 index 000000000..bdf485804 --- /dev/null +++ b/documentation/flowcharts/flowchart_review_prompt.md @@ -0,0 +1,59 @@ +Use the `flowchart-update` skill. + +Review committed SimPaths code change `221e9b3c7`. + +Review focus: household_composition, cohabitation, union_matching + +## Detector Result + +Revision: `HEAD` +Commit: `221e9b3c7` + +Changed code files: +- src/main/java/simpaths/model/Person.java +- src/main/java/simpaths/model/UnionMatching.java + +Priority modules: +- household_composition (Household Composition): Person.cohabitation, UnionMatching.localGetValue -> documentation/flowcharts/modules/household_composition.md +- cohabitation (Cohabitation UK Case): Person.cohabitation -> documentation/flowcharts/modules/cohabitation.md +- union_matching (Union Matching): UnionMatching.localGetValue -> documentation/flowcharts/modules/union_matching.md + +File-level candidate modules: +- household_composition (Household Composition) -> documentation/flowcharts/modules/household_composition.md [state: up_to_date] +- cohabitation (Cohabitation UK Case) -> documentation/flowcharts/modules/cohabitation.md [state: up_to_date] +- full_time_hourly_earnings (Full-Time Hourly Earnings) -> documentation/flowcharts/modules/full_time_hourly_earnings.md [state: up_to_date] +- fertility_give_birth (Fertility and GiveBirth) -> documentation/flowcharts/modules/fertility_give_birth.md [state: up_to_date] +- health_long_term_sick (Health and Long-Term Sick) -> documentation/flowcharts/modules/health_long_term_sick.md [state: up_to_date] +- health_mental_hm1_hm2_cases (Health Mental HM1 and HM2 Cases) -> documentation/flowcharts/modules/health_mental_hm1_hm2_cases.md [state: up_to_date] +- health_mental_hm1_hm2_level (Health Mental HM1 and HM2 Level) -> documentation/flowcharts/modules/health_mental_hm1_hm2_level.md [state: up_to_date] +- union_matching (Union Matching) -> documentation/flowcharts/modules/union_matching.md [state: up_to_date] +- inschool (InSchool) -> documentation/flowcharts/modules/inschool.md [state: up_to_date] + +## Manifest Flagging + +Manifest updates: 9 +- household_composition: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- cohabitation: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- full_time_hourly_earnings: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- fertility_give_birth: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- health_long_term_sick: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- health_mental_hm1_hm2_cases: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- health_mental_hm1_hm2_level: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- union_matching: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +- inschool: up_to_date -> candidate_for_review; last_trigger_commit 569bb2ae0 -> 221e9b3c7 +Manifest skips: 0 + +## Tasks + +1. Inspect the committed code diff for `221e9b3c7`. +2. Review priority modules first. +3. Treat non-priority file-level matches as candidates, not confirmed documentation changes. +4. Update flowchart Markdown only where documented logic, schedule context, state dependencies, notes, or traceability metadata changed. +5. If Mermaid is unchanged, say so explicitly. +6. Update `documentation/flowcharts/modules.yml` review state: + - false positives -> `up_to_date` + - updated modules -> `up_to_date` after checking + - use `updated_unverified` only if not fully checked +7. Rerun the detector with `--update-manifest` and confirm idempotency. + +Do not update flowcharts for formatting-only, comment-only, or implementation-only changes that do not alter documented logic. Redraw Mermaid only when control flow changes. diff --git a/documentation/repository-guide.md b/documentation/repository-guide.md index e571662e2..0a9bcbea7 100644 --- a/documentation/repository-guide.md +++ b/documentation/repository-guide.md @@ -57,19 +57,22 @@ SimPaths/ │ ├── projections_*.xlsx # Mortality/fertility projections │ ├── DatabaseCountryYear.xlsx # Database metadata │ ├── EUROMODpolicySchedule.xlsx # Policy schedule -│ ├── policy parameters.xlsx # Tax-benefit parameters +│ ├── social_care_parameters.xlsx # Social care parameters │ ├── validation_statistics.xlsx # Validation targets │ └── input.mv.db # H2 donor database (generated by setup) │ ├── output/ # Simulation outputs │ ├── [timestamp]_[seed]_[run]/ # Timestamped output folders │ │ ├── csv/ -│ │ │ ├── Statistics1.csv # Income distribution, Gini, S-Index -│ │ │ ├── Statistics2.csv # Demographics by age and gender -│ │ │ ├── Statistics3.csv # Alignment diagnostics -│ │ │ ├── Person.csv # Person-level output -│ │ │ ├── BenefitUnit.csv # Benefit-unit-level output -│ │ │ └── Household.csv # Household-level output +│ │ │ ├── WealthIncomeStatistics.csv # Income and wealth; Gini, S-Index +│ │ │ ├── DemographicStatistics.csv # Demographics by age band +│ │ │ ├── AlignmentStatistics.csv # Alignment diagnostics +│ │ │ ├── LabourStatistics.csv # Labour market transitions and participation +│ │ │ ├── HealthStatistics.csv # Population health by age band +│ │ │ ├── WellbeingByGender.csv # Wellbeing by gender, ages 25-64 +│ │ │ ├── Person.csv # Person-level output +│ │ │ ├── BenefitUnit.csv # Benefit-unit-level output +│ │ │ └── Household.csv # Household-level output │ │ ├── database/ # Run-specific persistence output │ │ └── input/ # Copied run input artifacts │ └── logs/ # Log files (with -f flag on multirun) @@ -192,7 +195,7 @@ SimPaths/ | `projections_*.xlsx` | Demographic projections (mortality, fertility) | | `DatabaseCountryYear.xlsx` | Tracks current database country/year | | `EUROMODpolicySchedule.xlsx` | Tax-benefit policy schedule | -| `policy parameters.xlsx` | Detailed policy parameters | +| `social_care_parameters.xlsx` | Detailed social care parameters | **Subdirectories**: - `InitialPopulations/`: Starting population databases @@ -359,9 +362,9 @@ After running, output Excel files are placed in `input/` (overwriting the existi | Script | Output file | |--------|------------| -| `01_employment_shares_initpopdata.do` | `input/employment_targets.xlsx` — employment shares by benefit-unit subgroup and year | -| `01_inSchool_targets_initpopdata.do` | `input/inSchool_targets.xlsx` — school participation rates by year | -| `03_calculate_partneredShare_initialPop_BUlogic.do` | `input/partnered_share_targets.xlsx` — partnership shares by year | +| `01_employment_shares_initpopdata.do` | `input/alignment_targets_employment.xlsx` — employment shares by benefit-unit subgroup and year | +| `01_inSchool_targets_initpopdata.do` | `input/alignment_targets_inSchool.xlsx` — school participation rates by year | +| `03_calculate_partneredShare_initialPop_BUlogic.do` | `input/alignment_targets_partnered_share.xlsx` — partnership shares by year | | `03_calculate_partnership_target.do` | Supplementary partnership targets | | `02_person_risk_employment_stats.do` | `employment_risk_emp_stats.csv` — person-level at-risk diagnostics used for employment alignment group construction | @@ -462,7 +465,7 @@ ResamplingAlignment.align( **Regression coefficients**: Edit Excel files in `input/reg_*.xlsx` -**Policy parameters**: Edit `input/policy parameters.xlsx` +**Social care parameters**: Edit `input/social_care_parameters.xlsx` **Alignment targets**: Edit `input/align_*.xlsx` diff --git a/documentation/wiki/developer-guide/internals/api.md b/documentation/wiki/developer-guide/internals/api.md index b6f4cb9c0..feba3bc90 100644 --- a/documentation/wiki/developer-guide/internals/api.md +++ b/documentation/wiki/developer-guide/internals/api.md @@ -16,59 +16,7 @@ To update the API documentation, add or modify Javadoc comments in the source co [The workflow](https://github.com/simpaths/SimPaths/blob/develop/.github/workflows/publish-javadoc.yml) automates the generation and publishing of HTML documentation from Javadoc comments whenever changes are pushed to the `develop` branch. -``` -on: - push: - branches: - - develop # Only publish when pushing to develop branch -``` - -The code is checked out from the `develop` branch, Java 19 is installed, and SimPaths is compiled. - - -``` -jobs: - publish-javadoc: - runs-on: ubuntu-latest - permissions: - contents: write # Needed to push to the javadoc branch - - steps: - - name: Checkout repository - uses: actions/checkout@v3 - - - name: Set up JDK 19 - uses: actions/setup-java@v3 - with: - java-version: '19' - distribution: 'temurin' - cache: maven - - - name: Build (optional if Javadoc needs compiled sources) - run: mvn -B compile --file pom.xml -``` - -The documentation is then generated from the Javadoc comments in the code. - - -``` -- name: Generate Javadoc - run: mvn javadoc:javadoc --file pom.xml -``` - -Finally, the generated documentation is deployed to the `javadoc` branch of the SimPaths repository. - - -``` -- name: Deploy Javadoc to branch - uses: MathieuSoysal/Javadoc-publisher.yml@v3.0.2 - with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - javadoc-branch: javadoc - java-version: 19 - target-folder: javadoc # Specifies the folder in which the documentation is saved - project: maven -``` +The generated documentation is deployed to the `javadoc` branch of the SimPaths repository. The published documentation is hosted using [GitHub Pages](https://docs.github.com/en/pages/getting-started-with-github-pages/configuring-a-publishing-source-for-your-github-pages-site). GitHub Pages is a service that hosts static websites directly from a GitHub repository. diff --git a/documentation/wiki/developer-guide/internals/multirun-implementation.md b/documentation/wiki/developer-guide/internals/multirun-implementation.md index cf7a1e53b..7c594557b 100644 --- a/documentation/wiki/developer-guide/internals/multirun-implementation.md +++ b/documentation/wiki/developer-guide/internals/multirun-implementation.md @@ -8,8 +8,7 @@ ### Prerequisites -- Java 19 -- Maven 3.8+ +- a [working environment](../../getting-started/environment-setup.md) - Optional IDE: IntelliJ IDEA (import as a Maven project) ### Build and run @@ -139,4 +138,4 @@ In our open-source project, we follow a clear and consistent branch naming conve - `docs/documentation-topic`: Prefix documentation branches with `docs` for updating or creating documentation. For example, `docs/update-readme`. These branch naming conventions are designed to make it easy for our contributors to understand the purpose of each branch and maintain consistency within our repository. Please adhere to these conventions when creating branches for your contributions. ---> \ No newline at end of file +--> diff --git a/documentation/wiki/developer-guide/repository-guide.md b/documentation/wiki/developer-guide/repository-guide.md index db44c112c..1695b9092 100644 --- a/documentation/wiki/developer-guide/repository-guide.md +++ b/documentation/wiki/developer-guide/repository-guide.md @@ -62,19 +62,22 @@ SimPaths/ │ ├── projections_*.xlsx # Mortality/fertility projections │ ├── DatabaseCountryYear.xlsx # Database metadata │ ├── EUROMODpolicySchedule.xlsx # Policy schedule -│ ├── policy parameters.xlsx # Tax-benefit parameters +│ ├── social_care_parameters.xlsx # Social care parameters │ ├── validation_statistics.xlsx # Validation targets │ └── input.mv.db # H2 donor database (generated by setup) │ ├── output/ # Simulation outputs │ ├── [timestamp]_[seed]_[run]/ # Timestamped output folders │ │ ├── csv/ -│ │ │ ├── Statistics1.csv # Income distribution, Gini, S-Index -│ │ │ ├── Statistics2.csv # Demographics by age and gender -│ │ │ ├── Statistics3.csv # Alignment diagnostics -│ │ │ ├── Person.csv # Person-level output -│ │ │ ├── BenefitUnit.csv # Benefit-unit-level output -│ │ │ └── Household.csv # Household-level output +│ │ │ ├── WealthIncomeStatistics.csv # Income and wealth; Gini, S-Index +│ │ │ ├── DemographicStatistics.csv # Demographics by age band +│ │ │ ├── AlignmentStatistics.csv # Alignment diagnostics +│ │ │ ├── LabourStatistics.csv # Labour market transitions and participation +│ │ │ ├── HealthStatistics.csv # Population health by age band +│ │ │ ├── WellbeingByGender.csv # Wellbeing by gender, ages 25-64 +│ │ │ ├── Person.csv # Person-level output +│ │ │ ├── BenefitUnit.csv # Benefit-unit-level output +│ │ │ └── Household.csv # Household-level output │ │ ├── database/ # Run-specific persistence output │ │ └── input/ # Copied run input artifacts │ └── logs/ # Log files (with -f flag on multirun) @@ -197,7 +200,7 @@ SimPaths/ | `projections_*.xlsx` | Demographic projections (mortality, fertility) | | `DatabaseCountryYear.xlsx` | Tracks current database country/year | | `EUROMODpolicySchedule.xlsx` | Tax-benefit policy schedule | -| `policy parameters.xlsx` | Detailed policy parameters | +| `social_care_parameters.xlsx` | Detailed social care parameters | **Subdirectories**: - `InitialPopulations/`: Starting population databases @@ -353,11 +356,11 @@ After running, output Excel files are placed in `input/` (overwriting the existi | Script | Output file | |--------|------------| -| `01_employment_shares_initpopdata.do` | `input/employment_targets.xlsx` — employment shares by benefit-unit subgroup and year | -| `01_inSchool_targets_initpopdata.do` | `input/inSchool_targets.xlsx` — school participation rates by year | -| `03_calculate_partneredShare_initialPop_BUlogic.do` | `input/partnered_share_targets.xlsx` — partnership shares by year | -| `03_calculate_partnership_target.do` | Supplementary partnership targets | -| `02_person_risk_employment_stats.do` | `employment_risk_emp_stats.csv` — person-level at-risk diagnostics used for employment alignment group construction | +| `01_employment_shares_initpopdata.do` | `input/alignment_targets_employment.xlsx` — employment shares by benefit-unit subgroup and year | +| `02_inSchool_targets_initpopdata.do` | `input/alignment_targets_inSchool.xlsx` — school participation rates by year | +| `03a_calculate_partneredShare_initialPop_BUlogic.do` | `input/alignment_targets_partnered_share.xlsx` — partnership shares by year | +| `03b_calculate_partnership_target.do` | Supplementary partnership targets | +| `90_person_risk_employment_stats.do` | `employment_risk_emp_stats.csv` — person-level at-risk diagnostics used for employment alignment group construction | Population projection targets (`align_popProjections.xlsx`) and fertility/mortality projections (`projections_*.xlsx`) come from ONS published projections and are not generated by these scripts. @@ -456,7 +459,7 @@ ResamplingAlignment.align( **Regression coefficients**: Edit Excel files in `input/reg_*.xlsx` -**Policy parameters**: Edit `input/policy parameters.xlsx` +**Social care parameters**: Edit `input/social_care_parameters.xlsx` **Alignment targets**: Edit `input/align_*.xlsx` diff --git a/documentation/wiki/developer-guide/working-in-github.md b/documentation/wiki/developer-guide/working-in-github.md index 2f51e33ec..acda66740 100644 --- a/documentation/wiki/developer-guide/working-in-github.md +++ b/documentation/wiki/developer-guide/working-in-github.md @@ -5,8 +5,8 @@ In this page, the various steps that are necessary to make changes to SimPaths and for them to be correctly implemented in the code and committed via GitHub (_i.e._, made available to other users) are explained. **Requirements** +- a [working environment](../getting-started/environment-setup.md) - GitHub account -- Java Development Kit (JDK) - IDE (Integrated Development Environment) In the following sections, explanatory screenshots are presented from both the GitHub browser and GitHub Desktop. While the latter is not required, GitHub Desktop provides a very user-friendly graphical user interface (GUI). It clearly visualises commits, branches, changes, and merge conflicts, and it is ideal for beginners or those who prefer not to use the command line. Additionally, it is designed for a quick setup and a seamless GitHub account integration. Thus, for the sake of contributing to SimPaths development, GitHub Desktop is a complete tool. However, it is not necessary; the user can entirely operate with the browser version in combination with the IDE or any other Git-integrated tool, _e.g._, GitKraken (GUI) or Git CLI (Command Line). diff --git a/documentation/wiki/getting-started/environment-setup.md b/documentation/wiki/getting-started/environment-setup.md index 99be75070..043273f84 100644 --- a/documentation/wiki/getting-started/environment-setup.md +++ b/documentation/wiki/getting-started/environment-setup.md @@ -6,8 +6,8 @@ ## Requirements -- Java Development Kit (JDK) 19 (the project targets Java 19 — earlier versions will not compile) -- Apache Maven 3.8 or later +- Java Development Kit (JDK) 25 or later +- Apache Maven 3.9.16 or later - Git ## Cloning the repository diff --git a/documentation/wiki/getting-started/index.md b/documentation/wiki/getting-started/index.md index 0b4ff07e4..618273f88 100644 --- a/documentation/wiki/getting-started/index.md +++ b/documentation/wiki/getting-started/index.md @@ -2,15 +2,8 @@ This section walks you through everything needed to run SimPaths for the first time. -## Prerequisites - -SimPaths is a Java project. Before running simulations you need: - -- Java Development Kit (JDK) 19 or later -- Maven (for dependency management) -- The required input data files (see [Input Data](data/index.md)) - -## Steps +SimPaths is a Java project. Follow these steps to setup a working environment +and run simulations: 1. [Environment Setup](environment-setup.md) — install dependencies and clone the repository 2. [Input Data](data/index.md) — obtain the required UK input datasets diff --git a/documentation/wiki/overview/parameterisation.md b/documentation/wiki/overview/parameterisation.md index 73473832f..876a715dc 100644 --- a/documentation/wiki/overview/parameterisation.md +++ b/documentation/wiki/overview/parameterisation.md @@ -26,9 +26,14 @@ Source: [Github](https://github.com/simpaths/SimPaths/tree/develop/input). Files listed below contain alignment targets. * align_educLevel.xlsx -* align_employment.xlsx * align_popProjections.xlsx -* align_student_under30.xlsx + +**alignment_targets_ files** +Files listed below contain alignment targets for in-school, partnership, and employment shares. + +* alignment_targets_employment.xlsx +* alignment_targets_inSchool.xlsx +* alignment_targets_partnered_share.xlsx **projections_ files** Files listed below contain demographic projections. diff --git a/input/DatabaseCountryYear.xlsx b/input/DatabaseCountryYear.xlsx index e2f6b3531..135367313 100644 Binary files a/input/DatabaseCountryYear.xlsx and b/input/DatabaseCountryYear.xlsx differ diff --git a/input/DoFilesTarget/01_employment_shares_initpopdata.do b/input/DoFilesTarget/01_employment_shares_initpopdata.do index 1932bcd2e..12bd2f509 100644 --- a/input/DoFilesTarget/01_employment_shares_initpopdata.do +++ b/input/DoFilesTarget/01_employment_shares_initpopdata.do @@ -173,7 +173,7 @@ use "${dir_working_data}/bu_empl_shares_${country}_allsubgroups_initpopdata.dta" sort year * Create/overwrite Excel file that will hold all sheets -putexcel set "${dir_output}/employment_targets.xlsx", replace +putexcel set "${dir_output}/alignment_targets_employment.xlsx", replace * Identify all BU group codes levelsof group_code, local(groups) @@ -188,7 +188,7 @@ foreach g of local groups { mkmat year empl_share, matrix(M) * Point putexcel at the output file and the group-specific sheet - putexcel set "${dir_output}/employment_targets.xlsx", sheet("`g'") modify + putexcel set "${dir_output}/alignment_targets_employment.xlsx", sheet("`g'") modify * Write headers putexcel A1=("year") B1=("empl_share") @@ -198,3 +198,27 @@ foreach g of local groups { restore } + +* Add metadata sheet so workbook provenance survives regeneration +putexcel set "${dir_output}/alignment_targets_employment.xlsx", sheet("Info") modify +putexcel A1=("Field") B1=("Value") +putexcel A2=("Workbook") B2=("alignment_targets_employment.xlsx") +putexcel A3=("Data sheets") B3=("Couples, SingleDep_Males, SingleDep_Females, Single_male, SingleAC_Males, Single_female, SingleAC_Females") +putexcel A4=("Relevant do file") B4=("input/DoFilesTarget/01_employment_shares_initpopdata.do") +putexcel A5=("Source data") B5=("input/InitialPopulations/population_initial_UK_2011.csv to population_initial_UK_2023.csv") +putexcel A6=("Years covered") B6=("2011-2023") +putexcel A7=("Unit of analysis") B7=("Benefit unit (BU)") +putexcel A8=("Responsible adults") B8=("Responsible male and female adults are identified from adults aged 18+ within each BU") +putexcel A9=("At-risk definition") B9=("Sex-specific at-risk flag requires age 16-75 inclusive and labc4 not equal to 2 or 4") +putexcel A10=("Weighting") B10=("BU weight equals the sum of wgthhcross across people in the BU") +putexcel A11=("How target is computed") B11=("For each BU: bu_fracemployed = (bu_male_emp + bu_female_emp) / bu_nresp after non-at-risk responsible adults are set to non-employed; then collapse (mean) empl_share = bu_target_emp [pw = bu_w] by year and group_code") +putexcel A12=("AC meaning") B12=("AC denotes adult child status from demadultchildflag") +putexcel A13=("SingleDep note") B13=("SingleDep_Males and SingleDep_Females cannot exceed 0.5 by construction") +putexcel A15=("Group") B15=("Definition") +putexcel A16=("Couples") B16=("Couple BU with at least one at-risk male and at least one at-risk female") +putexcel A17=("SingleDep_Males") B17=("Couple BU where only the male side is at risk") +putexcel A18=("SingleDep_Females") B18=("Couple BU where only the female side is at risk") +putexcel A19=("Single_male") B19=("Single-male BU with demadultchildflag = 0") +putexcel A20=("SingleAC_Males") B20=("Single-male BU with demadultchildflag = 1") +putexcel A21=("Single_female") B21=("Single-female BU with demadultchildflag = 0") +putexcel A22=("SingleAC_Females") B22=("Single-female BU with demadultchildflag = 1") diff --git a/input/DoFilesTarget/01_inSchool_targets_initpopdata.do b/input/DoFilesTarget/02_inSchool_targets_initpopdata.do similarity index 72% rename from input/DoFilesTarget/01_inSchool_targets_initpopdata.do rename to input/DoFilesTarget/02_inSchool_targets_initpopdata.do index 24ac50a5b..c5a7d9e92 100644 --- a/input/DoFilesTarget/01_inSchool_targets_initpopdata.do +++ b/input/DoFilesTarget/02_inSchool_targets_initpopdata.do @@ -83,14 +83,14 @@ use "${dir_working_data}/student_shares_${country}_initpopdata.dta", clear sort year * Create/overwrite Excel file that will hold all sheets -putexcel set "${dir_output}/inSchool_targets.xlsx", replace +putexcel set "${dir_output}/alignment_targets_inSchool.xlsx", replace * Build a matrix of all rows for the two variables (year, student_share) mkmat year student_share, matrix(M) * Point putexcel at the output file and the group-specific sheet -putexcel set "${dir_output}/inSchool_targets.xlsx", sheet("students") modify +putexcel set "${dir_output}/alignment_targets_inSchool.xlsx", sheet("students") modify * Write headers putexcel A1=("year") B1=("student_share") @@ -98,4 +98,17 @@ putexcel A1=("year") B1=("student_share") * Write data from matrix M (Stata 15+ supports varlists here) putexcel A2=matrix(M) - +* Add metadata sheet so workbook provenance survives regeneration +putexcel set "${dir_output}/alignment_targets_inSchool.xlsx", sheet("Info") modify +putexcel A1=("Field") B1=("Value") +putexcel A2=("Workbook") B2=("alignment_targets_inSchool.xlsx") +putexcel A3=("Data sheet") B3=("students") +putexcel A4=("Relevant do file") B4=("input/DoFilesTarget/02_inSchool_targets_initpopdata.do") +putexcel A5=("Source data") B5=("input/InitialPopulations/population_initial_UK_2011.csv to population_initial_UK_2023.csv") +putexcel A6=("Years covered") B6=("2011-2023") +putexcel A7=("Unit of analysis") B7=("Person-year") +putexcel A8=("Eligible population") B8=("People aged 16-29 with nonmissing labc4; one record kept per idpers in each annual file") +putexcel A9=("Student definition") B9=("isStudent = 1 when labc4 == 2 and age is between 16 and 29 inclusive") +putexcel A10=("Weighting") B10=("Weighted mean using wgthhcross") +putexcel A11=("How target is computed") B11=("For each year: collapse (mean) student_share = isStudent if labc4 != . and age is 16-29 [pw = wgthhcross]") +putexcel A12=("Output meaning") B12=("Annual share of students among people aged 16-29") diff --git a/input/DoFilesTarget/03_calculate_partneredShare_initialPop_BUlogic.do b/input/DoFilesTarget/03a_calculate_partneredShare_initialPop_BUlogic.do similarity index 73% rename from input/DoFilesTarget/03_calculate_partneredShare_initialPop_BUlogic.do rename to input/DoFilesTarget/03a_calculate_partneredShare_initialPop_BUlogic.do index 905d59bd0..dee085122 100644 --- a/input/DoFilesTarget/03_calculate_partneredShare_initialPop_BUlogic.do +++ b/input/DoFilesTarget/03a_calculate_partneredShare_initialPop_BUlogic.do @@ -121,8 +121,25 @@ export excel using "`work_dir'/partnered_share_initialPop_BUlogic.xlsx", /// preserve keep year partnered_share format partnered_share %12.7f - export excel using "`work_dir'/partnered_share_targets_BUlogic.xlsx", /// + export excel using "`work_dir'/alignment_targets_partnered_share.xlsx", /// firstrow(variables) replace restore +* Add metadata sheet so workbook provenance survives regeneration +putexcel set "`work_dir'/alignment_targets_partnered_share.xlsx", sheet("Info") modify +putexcel A1=("Field") B1=("Value") +putexcel A2=("Workbook") B2=("alignment_targets_partnered_share.xlsx") +putexcel A3=("Data sheet") B3=("partnered_share") +putexcel A4=("Relevant do file") B4=("input/DoFilesTarget/03a_calculate_partneredShare_initialPop_BUlogic.do") +putexcel A5=("Related do file") B5=("input/DoFilesTarget/03b_calculate_partnership_target.do") +putexcel A6=("Source data") B6=("Initial population CSV files for 2011-2023") +putexcel A7=("Years covered") B7=("2011-2023") +putexcel A8=("Unit of analysis") B8=("Adult person-year") +putexcel A9=("Eligible population") B9=("Adults aged 18+") +putexcel A10=("Partner definition") B10=("Partnered = 1 when another adult exists in the same BU after excluding self, mother, and father") +putexcel A11=("Partner identifier use") B11=("idpartner is not used; partnership is inferred from adult BU co-residency") +putexcel A12=("Weighting") B12=("Unweighted annual share") +putexcel A13=("How target is computed") B13=("Build adult BU roster, self-join by year and BU, drop self and parents, mark qualifying co-residents, merge flags back to the full adult population, then compute partnered_share = n_partnered / n_eligible by year") +putexcel A14=("Output meaning") B14=("Annual partnered share among adults aged 18+ under BU-logic partner inference") + list, sep(0) diff --git a/input/DoFilesTarget/03_calculate_partnership_target.do b/input/DoFilesTarget/03b_calculate_partnership_target.do similarity index 74% rename from input/DoFilesTarget/03_calculate_partnership_target.do rename to input/DoFilesTarget/03b_calculate_partnership_target.do index c38d3215c..58840ee65 100644 --- a/input/DoFilesTarget/03_calculate_partnership_target.do +++ b/input/DoFilesTarget/03b_calculate_partnership_target.do @@ -136,8 +136,25 @@ order year n_eligible n_partnered partnered_share preserve keep year partnered_share format partnered_share %12.7f - export excel using "`work_dir'/partnered_share_targets_BUlogic.xlsx", /// + export excel using "`work_dir'/alignment_targets_partnered_share.xlsx", /// firstrow(variables) replace restore +* Add metadata sheet so workbook provenance survives regeneration +putexcel set "`work_dir'/alignment_targets_partnered_share.xlsx", sheet("Info") modify +putexcel A1=("Field") B1=("Value") +putexcel A2=("Workbook") B2=("alignment_targets_partnered_share.xlsx") +putexcel A3=("Data sheet") B3=("partnered_share") +putexcel A4=("Relevant do file") B4=("input/DoFilesTarget/03b_calculate_partnership_target.do") +putexcel A5=("Related do file") B5=("input/DoFilesTarget/03a_calculate_partneredShare_initialPop_BUlogic.do") +putexcel A6=("Source data") B6=("Initial population CSV files for 2011-2023") +putexcel A7=("Years covered") B7=("2011-2023") +putexcel A8=("Unit of analysis") B8=("Adult person-year") +putexcel A9=("Eligible population") B9=("Adults aged 18+") +putexcel A10=("Partner definition") B10=("Partnered = 1 when another adult exists in the same BU after excluding self, mother, and father") +putexcel A11=("Partner identifier use") B11=("idpartner is not used; partnership is inferred from adult BU co-residency") +putexcel A12=("Weighting") B12=("Weighted annual share using wgthhcross; n_eligible and n_partnered are retained as unweighted counts in the full table") +putexcel A13=("How target is computed") B13=("Build adult BU roster, self-join by year and BU, drop self and parents, mark qualifying co-residents, merge flags back to the full adult population, then collapse (mean) partnered_share = partnered [pw = wgthhcross] by year") +putexcel A14=("Output meaning") B14=("Annual partnered share among adults aged 18+ under BU-logic partner inference") + list, sep(0) diff --git a/input/DoFilesTarget/02_person_risk_employment_stats.do b/input/DoFilesTarget/90_person_risk_employment_stats.do similarity index 100% rename from input/DoFilesTarget/02_person_risk_employment_stats.do rename to input/DoFilesTarget/90_person_risk_employment_stats.do diff --git a/input/EUROMODoutput/training/DatabaseCountryYear.xlsx b/input/EUROMODoutput/training/DatabaseCountryYear.xlsx index f6173d4ad..71e701416 100644 Binary files a/input/EUROMODoutput/training/DatabaseCountryYear.xlsx and b/input/EUROMODoutput/training/DatabaseCountryYear.xlsx differ diff --git a/input/EUROMODoutput/training/EUROMODpolicySchedule.xlsx b/input/EUROMODoutput/training/EUROMODpolicySchedule.xlsx index 72ca67946..c42cab06c 100644 Binary files a/input/EUROMODoutput/training/EUROMODpolicySchedule.xlsx and b/input/EUROMODoutput/training/EUROMODpolicySchedule.xlsx differ diff --git a/input/EUROMODpolicySchedule.xlsx b/input/EUROMODpolicySchedule.xlsx index 0baf99dc3..9788a1db2 100644 Binary files a/input/EUROMODpolicySchedule.xlsx and b/input/EUROMODpolicySchedule.xlsx differ diff --git a/input/InitialPopulations/compile/00_master.do b/input/InitialPopulations/compile/00_master.do index 0fa05bf75..1507cce73 100644 --- a/input/InitialPopulations/compile/00_master.do +++ b/input/InitialPopulations/compile/00_master.do @@ -176,7 +176,7 @@ global scProvWaves "f g h i j k l m n o" //Next time available in wave 16 p global firstSimYear = 2010 global lastSimYear = 2024 global wealthStartYear = 2015 -global wealthEndYear = 2019 +global wealthEndYear = 2021 * Define threshold ages @@ -216,6 +216,65 @@ global age_force_leave_spell1_edu 30 global age_have_child_max 49 // allow this to be led by the data +/************************************************************************************** +* INFLATION FOR DEFLATING FINANCIALS TO REFERENCE YEAR + +CPIH INDEX 00: ALL ITEMS 2015=100 +CDID L522 +Source dataset ID MM23 +PreUnit +Unit Index, base year = 100 +Release date 20-03-2024 +Next release 17 April 2024 +https://www.ons.gov.uk/economy/inflationandpriceindices/timeseries/l522/mm23 +**************************************************************************************/ +global inflation_minyear = 2008 +global inflation_maxyear = 2025 +matrix inflation = ( /// +0.862 \ /// 2009 +0.879 \ /// 2009 +0.901 \ /// 2010 +0.936 \ /// 2011 +0.96 \ /// 2012 +0.982 \ /// 2013 +0.996 \ /// 2014 +1 \ /// 2015 +1.01 \ /// 2016 +1.036 \ /// 2017 +1.06 \ /// 2018 +1.078 \ /// 2019 +1.089 \ /// 2020 +1.116 \ /// 2021 +1.205 \ /// 2022 +1.286 \ /// 2023 +1.329 \ /// 2024 +1.329) /// 2025 //to update when becomes available + + +/************************************************************************************** +* social care wage rates (real 2015 prices for consistency with inflation figures) +**************************************************************************************/ +global careWageRate_minyear = 2010 +global careWageRate_maxyear = 2025 +matrix careHourlyWageRates = ( /// +9.04 \ /// 2010 +9.12 \ /// 2011 +8.91 \ /// 2012 +8.71 \ /// 2013 +8.58 \ /// 2014 +8.79 \ /// 2015 +9.13 \ /// 2016 +9.22 \ /// 2017 +9.37 \ /// 2018 +9.61 \ /// 2019 +9.97 \ /// 2020 +9.92 \ /// 2021 +10.01 \ /// 2022 +10.01 \ /// 2023 +10.01 \ /// 2024 +10.01) /// 2025 + + /************************************************************************************** * ROUTE TO WORKER FILES **************************************************************************************/ @@ -230,7 +289,6 @@ do "${dir_do}/04_social_care_provided.do" do "${dir_do}/05_create_benefit_units.do" * reweight data and slice into yearly segments do "${dir_do}/06_reweight_and_slice.do" - * impute wealth data for selected years do "${dir_do}/07_was_wealth_data.do" forvalues year = $wealthStartYear / $wealthEndYear { diff --git a/input/InitialPopulations/compile/02_create_UKHLS_variables.do b/input/InitialPopulations/compile/02_create_UKHLS_variables.do index 876273190..1a33ed8e8 100644 --- a/input/InitialPopulations/compile/02_create_UKHLS_variables.do +++ b/input/InitialPopulations/compile/02_create_UKHLS_variables.do @@ -2107,36 +2107,12 @@ replace moecd_eq = 0.3*dnc013 + 0.5*dnc1418 + 1 if dhhtp_c4 == 4 drop dnc013 dnc1418 -/************************Income CPI********************************************/ -/*CPIH INDEX 00: ALL ITEMS 2015=100 -CDID L522 -Source dataset ID MM23 -PreUnit -Unit Index, base year = 100 -Release date 20-03-2024 -Next release 17 April 2024 -https://www.ons.gov.uk/economy/inflationandpriceindices/timeseries/l522/mm23 -*/ +/************************Inflation deflators********************************************/ gen CPI = . -replace CPI = 0.879 if intdaty_dv == 2009 -replace CPI = 0.901 if intdaty_dv == 2010 -replace CPI = 0.936 if intdaty_dv == 2011 -replace CPI = 0.96 if intdaty_dv == 2012 -replace CPI = 0.982 if intdaty_dv == 2013 -replace CPI = 0.996 if intdaty_dv == 2014 -replace CPI = 1 if intdaty_dv == 2015 -replace CPI = 1.01 if intdaty_dv == 2016 -replace CPI = 1.036 if intdaty_dv == 2017 -replace CPI = 1.06 if intdaty_dv == 2018 -replace CPI = 1.078 if intdaty_dv == 2019 -replace CPI = 1.089 if intdaty_dv == 2020 -replace CPI = 1.116 if intdaty_dv == 2021 -replace CPI = 1.205 if intdaty_dv == 2022 -replace CPI = 1.286 if intdaty_dv == 2023 -replace CPI = 1.329 if intdaty_dv == 2024 -replace CPI = 1.329 if intdaty_dv == 2025 //to update when becomes available - +forvalues yy = $inflation_minyear/$inflation_maxyear { + replace CPI = inflation[`yy'-${inflation_minyear}+1,1] if intdaty_dv == `yy' +} /**************************** Hourly labour income ***************************************/ @@ -3480,6 +3456,11 @@ gen total_wealth = -9 gen total_pensions = -9 gen housing_wealth = -9 gen mortgage_debt = -9 +gen unsecured_low_debt = -9 +gen unsecured_high_debt = -9 +gen contRateOPEe = -9 +gen contRateOPEr = -9 +gen contRatePP = -9 gen smp = -9 gen rnk = -9 gen mtc = -9 @@ -3487,6 +3468,8 @@ label var total_wealth "total wealth net of liabilities of benefit unit includin label var total_pensions "value of all private (personal and occupational) pensions of benefit unit" label var housing_wealth "value of main home gross of mortgage debt of benefit unit" label var mortgage_debt "total mortgage debt owed on main home of benefit unit" +label var unsecured_low_debt "low-cost unsecured debt" +label var unsecured_high_debt "high-cost unsecured debt" *check for duplicates in the pooled dataset duplicates tag idperson idhh swv, gen(dup) diff --git a/input/InitialPopulations/compile/03_social_care_received.do b/input/InitialPopulations/compile/03_social_care_received.do index d6a54b69a..a841490c9 100644 --- a/input/InitialPopulations/compile/03_social_care_received.do +++ b/input/InitialPopulations/compile/03_social_care_received.do @@ -21,25 +21,7 @@ global seedBase = 3141592 global seedAdjust = 0 global careWageRate_minyear = 2010 -* social care wage rates (real 2015 prices for consistency with inflation figures) -matrix careHourlyWageRates = (9.04 \ /// 2010 -9.12 \ /// 2011 -8.91 \ /// 2012 -8.71 \ /// 2013 -8.58 \ /// 2014 -8.79 \ /// 2015 -9.13 \ /// 2016 -9.22 \ /// 2017 -9.37 \ /// 2018 -9.61 \ /// 2019 -9.97 \ /// 2020 -9.92 \ /// 2021 -10.01 \ /// 2022 -10.01 \ /// 2023 -10.01 \ /// 2024 -10.01) /// 2025 - -/*TO UPDATE FOR RECENT YEARS */ + /********************************************************************** * start analysis @@ -459,23 +441,10 @@ tab formal_socare_hrs if rec_care2==3 * evaluate formal care costs *************************************************************************************/ cap gen formal_socare_cost = -9 -//replace formal_socare_cost = $careHourlyWageRates[`year' - $careWageRate_minyear + 1] * formal_socare_hrs if (formal_socare_hrs>0) -replace formal_socare_cost = 9.04 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 -replace formal_socare_cost = 9.12 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2010 -replace formal_socare_cost = 8.91 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2011 -replace formal_socare_cost = 8.71 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2012 -replace formal_socare_cost = 8.58 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2013 -replace formal_socare_cost = 8.79 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2014 -replace formal_socare_cost = 9.13 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2016 -replace formal_socare_cost = 9.22 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2017 -replace formal_socare_cost = 9.37 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2018 -replace formal_socare_cost = 9.61 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2019 -replace formal_socare_cost = 9.97 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2020 -replace formal_socare_cost = 9.92 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2021 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2022 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2023 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2024 -replace formal_socare_cost = 10.01 * formal_socare_hrs if (formal_socare_hrs>0) & stm==2025 +forvalues yy = $careWageRate_minyear/$careWageRate_maxyear { + + replace formal_socare_cost = formal_socare_hrs * careHourlyWageRates[`yy'-${careWageRate_minyear},1] if (formal_socare_hrs>0) & stm==`yy' +} /************************************************************************************** diff --git a/input/InitialPopulations/compile/04_social_care_provided.do b/input/InitialPopulations/compile/04_social_care_provided.do index e28b3105c..6c626ef00 100644 --- a/input/InitialPopulations/compile/04_social_care_provided.do +++ b/input/InitialPopulations/compile/04_social_care_provided.do @@ -6,7 +6,7 @@ * COUNTRY: UK * DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * AUTHORS: Justin van de Ven, Daria Popova -* LAST UPDATE: 15 Jan 2026 DP +* LAST UPDATE: 11 Aug 2026 JV * NOTE: Called from 00_master.do - see master file for further details *************************************************************************************** @@ -20,6 +20,7 @@ log using "${dir_log}/04_social_care_provided.log", replace **********************************************************************/ cd "${dir_data}" disp "identifying social care provision" +set seed 12345 // pooled data foreach waveid in $scProvWaves { @@ -30,7 +31,52 @@ foreach waveid in $scProvWaves { rename *, l rename `waveid'_* * gen swv = `waveno' - keep pidp swv aidhrs aidhu* + if (`waveno' < 14) { + rename indinui_xw wgt + } + else { + rename inding2_xw wgt + } + + // reallocate aidhrs categories 8 and 9 to categories 1 to 7 + qui { + + sum wgt if inlist(aidhrs, 1,2,3), meanonly + local sumw123 = r(sum) + sum wgt if aidhrs==1, meanonly + local p1 = r(sum) / `sumw123' + sum wgt if aidhrs==2, meanonly + local p2 = r(sum) / `sumw123' + local cut1 = `p1' + local cut2 = `p1' + `p2' + + sum wgt if inlist(aidhrs, 4,5,6,7), meanonly + local sumw4567 = r(sum) + sum wgt if aidhrs==4, meanonly + local p4 = r(sum) / `sumw4567' + sum wgt if aidhrs==5, meanonly + local p5 = r(sum) / `sumw4567' + sum wgt if aidhrs==6, meanonly + local p6 = r(sum) / `sumw4567' + local cut4 = `p4' + local cut5 = `cut4' + `p5' + local cut6 = `cut5' + `p6' + + gen _u = runiform() + rename aidhrs aidhrs_orig + gen aidhrs = aidhrs_orig + replace aidhrs = 1 if (aidhrs == 8 & _u <= `cut1') + replace aidhrs = 2 if (aidhrs == 8 & _u <= `cut2') + replace aidhrs = 3 if (aidhrs == 8) + + replace aidhrs = 4 if (aidhrs == 9 & _u <= `cut4') + replace aidhrs = 5 if (aidhrs == 9 & _u <= `cut5') + replace aidhrs = 6 if (aidhrs == 9 & _u <= `cut6') + replace aidhrs = 7 if (aidhrs == 9) + drop _u + } + + keep pidp swv aidhrs aidhu* wgt save "${dir_data}/int_temp.dta", replace use "${dir_ukhls_data}/`waveid'_egoalt.dta", clear @@ -48,10 +94,9 @@ foreach waveid in $scProvWaves { drop if (chk==1) drop chk merge 1:1 pidp using "${dir_data}/int_temp.dta", keep(2 3) nogen - keep pidp swv aidhrs aidhu* rindiv* + keep pidp swv aidhrs aidhu* rindiv* wgt save "${dir_data}/ukhls_scprov_`waveid'.dta", replace } -clear all foreach waveid in $scProvWaves { if ("`waveid'" == "f") { use "${dir_data}/ukhls_scprov_`waveid'.dta", clear @@ -109,8 +154,8 @@ replace aidhrs_adj = 27 if (aidhrs==4) replace aidhrs_adj = 42 if (aidhrs==5) replace aidhrs_adj = 74.5 if (aidhrs==6) replace aidhrs_adj = 120 if (aidhrs==7) -replace aidhrs_adj = 5.48 if (aidhrs==8) //weighted average of 1 to 3 -replace aidhrs_adj = 71.5 if (aidhrs==9) //weighted average of 4 to 7 +//replace aidhrs_adj = 5.48 if (aidhrs==8) //weighted average of 1 to 3 +//replace aidhrs_adj = 71.5 if (aidhrs==9) //weighted average of 4 to 7 gen care_nonpartner = (care_parent + care_child + care_others > 0) gen careWho = 0 diff --git a/input/InitialPopulations/compile/07_was_wealth_data.do b/input/InitialPopulations/compile/07_was_wealth_data.do index fe21a868e..fd535098c 100644 --- a/input/InitialPopulations/compile/07_was_wealth_data.do +++ b/input/InitialPopulations/compile/07_was_wealth_data.do @@ -7,11 +7,12 @@ * DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] * WAS EUL version - UKDA-7215-stata [to wave 7] * AUTHORS: Liang Shi (LS), Justin van de Ven (JV), Daria Popova (DP) -* LAST UPDATE: 06/02/2026 (LS) +* LAST UPDATE: 22/07/2026 (JV) * NOTE: Called from 00_master.do - see master file for further details * * File currently compiles data to merge from 2016 -* This could be extended to at least 2011 and up to round 8 +* This could be extended to at least 2011 +* Builds synthetic longitudinal ID: was_pid * * Approach involves identifying total net wealth (wealth), * total private pension wealth (personal and occupational), gross @@ -32,6 +33,7 @@ WAVE 5: 2014 (7385), 2015 (9480), 2016 (2173) WAVE 6: 2016 (6884), 2017 (8970), 2018 (2175) WAVE 7: 2018 (6855), 2019 (8756), 2020 (1923) + WAVE 8: 2020 (7634), 2021 (6362), 2022 (1132) LS: In the parentheses are numbers of households involved in WAS waves To obtain such statistics (for example wave 5), use: @@ -52,8 +54,6 @@ log using "${dir_log}/07_was_wealth_data.log", replace /**************************************************************/ cd "${dir_data}" disp "analysing WAS wealth data" -clear all -set maxvar 10000 /**************************************************************/ @@ -62,9 +62,10 @@ set maxvar 10000 * /**************************************************************/ local ww = 5 -foreach file in "$dir_was_data\was_round_5_hhold_eul_feb_20.dta" /// - "$dir_was_data\was_round_6_hhold_eul_april_2022.dta" /// - "$dir_was_data\was_round_7_hhold_eul_march_2022.dta" { +foreach file in "${dir_was_data}/was_round_5_hhold_eul_feb_20.dta" /// + "${dir_was_data}/was_round_6_hhold_eul_april_2022.dta" /// + "${dir_was_data}/was_round_7_hhold_eul_march_2022.dta" /// + "${dir_was_data}/was_round_8_hhold_eul_may_2025_230525.dta" { use "`file'", clear rename *, l @@ -116,7 +117,7 @@ foreach file in "$dir_was_data\was_round_5_hhold_eul_feb_20.dta" /// keep case year dvhvalue main_mort flat room house_d house_s house_t accm_o accm_m accm_r accm_f hrp_manager hrp_intermediate sort case - save "$dir_data\was_temp_hh`ww'.dta", replace + save "${dir_data}/was_temp_hh`ww'.dta", replace local ww = `ww' + 1 } @@ -128,9 +129,10 @@ foreach file in "$dir_was_data\was_round_5_hhold_eul_feb_20.dta" /// /**************************************************************/ local ww = 5 local ww0 = 5 -foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// - "$dir_was_data\was_round_6_person_eul_april_2022.dta" /// - "$dir_was_data\was_round_7_person_eul_june_2022.dta" { +foreach file in "${dir_was_data}/was_round_5_person_eul_oct_2020.dta" /// + "${dir_was_data}/was_round_6_person_eul_april_2022.dta" /// + "${dir_was_data}/was_round_7_person_eul_june_2022.dta" /// + "${dir_was_data}/was_round_8_person_eul_may_2025_230525.dta" { disp "compiling WAS wealth data for wave `ww'" qui { @@ -139,50 +141,125 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// rename *, l if (`ww' < 6) { - keep caser`ww' personw`ww' partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i /// - dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt /// - btype1w`ww' qhealth1w`ww' lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' dvecactr`ww' /// - pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' /// - dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww' dvfinfvalr`ww' /// - dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totccr`ww'_sum dvffassetsr`ww' dvfinfvalr`ww' tothpr`ww' /// - tot_losr`ww' totmor`ww' dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' + keep caser`ww' personw`ww' partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i /// + dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i /// + dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt btype1w`ww' qhealth1w`ww' lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' /// + enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' dvecactr`ww' pprgam1w`ww' pprgam2w`ww' pprgam3w`ww' /// + pprgpe1w`ww' pprgpe2w`ww' pprgpe3w`ww' pplsta1w`ww' pplsta2w`ww' pplsta3w`ww' pplstp1w`ww' pplstp2w`ww' pplstp3w`ww' /// + pocnfr1w`ww' pocnfr2w`ww' pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' dvbenefitannualr`ww'_i dvgippenr`ww' /// + dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' /// + dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' /// + dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totccr`ww'_sum dvffassetsr`ww'_sum dvfinfvalr`ww' /// + tothpr`ww'_sum tot_losr`ww' tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' /// + dltype*w`ww' dlint*w`ww' dnewltype*w`ww' dnewlowe*w`ww' lnos*r`ww' flns*r`ww' rename totccr`ww'_sum totcscr`ww'_sum + rename dvffassetsr`ww'_sum dvffassetsr`ww' recode partnow`ww' (missing=17) recode partnow`ww' (-7=17) } else if (`ww' == 6) { - keep caser`ww' personw`ww' partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i /// - dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt /// - btype1w`ww' qhealth1w`ww' lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' dvecactr`ww' /// - pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' /// - dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww' dvfinfvalr`ww' /// - dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totcscr`ww'_sum dvffassetsr`ww' dvfinfvalr`ww' tothpr`ww' /// - tot_losr`ww' totmor`ww' dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' + keep caser`ww' personw`ww' caser5 personw5 partnow`ww' dvage17r`ww' hasdepw`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' /// + dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i /// + dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepw`ww' p_flag4w`ww' r`ww'xshhwgt btype1w`ww' qhealth1w`ww' /// + lsillw`ww' dvisavalr`ww'_sum edlevelr`ww' enrollw`ww' coursew`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkw`ww' /// + dvecactr`ww' pprgam1w`ww' pprgam2w`ww' pprgam3w`ww' pprgpe1w`ww' pprgpe2w`ww' pprgpe3w`ww' pplsta1w`ww' pplsta2w`ww' /// + pplsta3w`ww' pplstp1w`ww' pplstp2w`ww' pplstp3w`ww' pcontppw`ww' dvemeeamt1w`ww' dvemeeamt2w`ww' dvcontocc_emee_dc1r`ww' /// + dvcontocc_emee_dc2r`ww' pocnfr1w`ww' pocnfr2w`ww' pemoffw`ww' pemelgw`ww' pemmemw`ww' poctyp1w`ww' poctyp2w`ww' /// + dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' /// + dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' /// + dvvaldcosr`ww' dvpavcuvr`ww' dvpfcurvalr`ww' dvppvalr`ww' dvpfddvr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' /// + totcscr`ww'_sum totcsc_transr`ww'_sum totcsc_persr`ww'_sum dvffassetsr`ww'_sum dvfinfvalr`ww' tothpr`ww'_sum tot_losr`ww' /// + tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbtr`ww' dvdbrwealthvalr`ww' gorr`ww' sexr`ww' dltype*w`ww' dlint*w`ww' /// + dnewltype*w`ww' dnewlowe*w`ww' lnos*r`ww' flns*r`ww' + rename dvffassetsr`ww'_sum dvffassetsr`ww' recode partnow`ww' (missing=17) } - else { - keep caser`ww' personr`ww' partnor`ww' dvage17r`ww' hasdepr`ww' dvgiser`ww' dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i /// - dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepr`ww' p_flag4r`ww' r`ww'xshhwgt /// - btype1r`ww' qhealth1r`ww' lsillr`ww' dvisavalr`ww'_sum edlevelr`ww' enrollr`ww' courser`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkr`ww' dvecactr`ww' /// - pemoffr`ww' pemelgr`ww' pemmemr`ww' poctyp1r`ww' poctyp2r`ww' dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' /// - dvbldvalr`ww' dvblddebtr`ww' dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' /// - dvvaldcosr`ww' dvpavcuvr`ww' dvppvalr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totcscr`ww'_sum dvfinfvalr`ww' tothpr`ww' tot_losr`ww' /// - totmor`ww' dvvaldbtr`ww' dvdbincallr`ww' gorr`ww' sexr`ww' dvretdc_noaccessr`ww' dvretdc_accessr`ww' + else if (`ww' == 7) { + keep caser`ww' personr`ww' caser6 personw6 caser5 personw5 partnor`ww' dvage17r`ww' hasdepr`ww' dvgiser`ww' dvgippenr`ww' /// + dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i dvoigmaannualr`ww'_i /// + dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepr`ww' p_flag4r`ww' r`ww'xshhwgt btype1r`ww' qhealth1r`ww' /// + lsillr`ww' dvisavalr`ww'_sum edlevelr`ww' enrollr`ww' courser`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkr`ww' dvecactr`ww' /// + pcontppr`ww' pprgam1r`ww' pprgam2r`ww' pprgam3r`ww' pprgpe1r`ww' pprgpe2r`ww' pprgpe3r`ww' pplsta1r`ww' pplsta2r`ww' /// + pplsta3r`ww' pplstp1r`ww' pplstp2r`ww' pplstp3r`ww' dvemeeamt1r`ww' dvemeeamt2r`ww' dvcontocc_emee_dc1r`ww' /// + dvcontocc_emee_dc2r`ww' pocnfr1r`ww'_i pocnfr2r`ww'_i pemoffr`ww' pemelgr`ww' pemmemr`ww' poctyp1r`ww' poctyp2r`ww' /// + dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' /// + dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww' /// + dvvaldcosr`ww' dvpavcuvr`ww' dvppvalr`ww' dvspenr`ww' dvpinpvalr`ww' pincinpr`ww' totcscr`ww'_sum totcsc_transr`ww'_sum /// + totcsc_persr`ww'_sum dvfinfvalr`ww' tothpr`ww'_sum tot_losr`ww' tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbtr`ww' /// + dvdbincallr`ww' gorr`ww' sexr`ww' dvretdc_noaccessr`ww' dvretdc_accessr`ww' dltype*r`ww' dlint*r`ww' dnewltype*r`ww' /// + dnewlowe*r`ww' lnos*r`ww' flns*r`ww' rename dvffassetsr`ww'_sum dvffassetsr`ww' rename dvdbincallr`ww' dvdbrwealthvalr`ww' gen dvpfcurvalr`ww' = dvretdc_accessr`ww' + dvretdc_noaccessr`ww' gen dvpfddvr`ww' = 0 recode partnor`ww' (missing=17) } + else { // for round/wave 8 and above + keep caser`ww' personr`ww' caser7 personr7 caser6 personw6 caser5 personw5 partnor`ww' dvage17r`ww' hasdepr`ww' dvgiser`ww' /// + dvgippenr`ww' dvgiinvr`ww' dvoigrrannualr`ww'_i dvoiggtannualr`ww'_i dvoigegannualr`ww'_i dvoigfrannualr`ww'_i /// + dvoigmaannualr`ww'_i dvoigroannualr`ww'_i dvoigopannualr`ww'_i dvmrdfr`ww' isdepr`ww' p_flag4r`ww' r`ww'xshhwgt /// + btype1r`ww' dvisavalr`ww'_sum edlevelr`ww' enrollr`ww' courser`ww' dvgiempr`ww' dvgiser`ww' statr`ww' ftptwkr`ww' dvecactr`ww' /// + pcontppr`ww' pprgam1r`ww' pprgam2r`ww' pprgam3r`ww' pprgpe1r`ww' pprgpe2r`ww' pprgpe3r`ww' pplsta1r`ww' pplsta2r`ww' /// + pplsta3r`ww' pplstp1r`ww' pplstp2r`ww' pplstp3r`ww' dvemeeamt1r`ww' dvemeeamt2r`ww' dvcontocc_emee_dc1r`ww' /// + dvcontocc_emee_dc2r`ww' pocnfr1r`ww'_i pocnfr2r`ww'_i pemoffr`ww' pemelgr`ww' pemmemr`ww' poctyp1r`ww' poctyp2r`ww' /// + dvbenefitannualr`ww'_i dvgippenr`ww' dvgiinvr`ww' bval* dvhsevalr`ww' dvhsedebtr`ww' dvbldvalr`ww' dvblddebtr`ww' /// + dvlukvalr`ww' dvlukdebtr`ww' dvlosvalr`ww' dvlosdebtr`ww' dvoprvalr`ww' dvoprdebtr`ww' dvffassetsr`ww'_sum dvfinfvalr`ww'_sum /// + dvvaldcosr`ww' dvpavcuvr`ww' dvppvalr`ww' dvspen_oldr`ww' dvpinpval_oldr`ww' pincinp_oldr`ww' totcscr`ww'_sum /// + totcsc_transr`ww'_sum totcsc_persr`ww'_sum tothpr`ww'_sum tot_losr`ww' tot_los_exc_slcr`ww' totmor`ww'_sum dvvaldbt_oldr`ww' /// + dvdbincallr`ww' gorr`ww' sexr`ww' dvretdc_noaccessr`ww' dvretdc_accessr`ww' dltype*r`ww' dlint*r`ww' dnewltype*r`ww' /// + dnewlowe*r`ww' lnos*r`ww' flns*r`ww' + rename dvffassetsr`ww'_sum dvffassetsr`ww' // similar rename as round 7 + rename dvfinfvalr`ww'_sum dvfinfvalr`ww' + rename dvvaldbt_oldr`ww' dvvaldbtr`ww' // Total value of defined benefit occupational scheme - Previous pension methodology + rename dvspen_oldr`ww' dvspenr`ww' // Value of pensions expected from former spouse/partner - Previous pension methodology + rename dvpinpval_oldr`ww' dvpinpvalr`ww' + rename pincinp_oldr`ww' pincinpr`ww' + rename dvdbincallr`ww' dvdbrwealthvalr`ww' // similar remane as round 7 + gen dvpfcurvalr`ww' = dvretdc_accessr`ww' + dvretdc_noaccessr`ww' + gen dvpfddvr`ww' = 0 + // Round 8 person file has no direct counterpart to qhealth1r`ww' / lsillr`ww'. + gen qhealth1r`ww' = . // removed + gen lsillr`ww' = . // + recode partnor`ww' (missing=17) + } if (`ww' < 7) { rename *w`ww'* ** } rename *r`ww'* ** + + // Standardise unsecured-debt stock variables across rounds. + // Round 5 has total card balances but not persistent/transient splits. + foreach uv in totcsc_trans_sum totcsc_pers_sum tot_los_exc_slc tothp_sum totmo_sum { + capture confirm variable `uv' + if _rc gen `uv' = . + } + foreach stem in dltype dlint dnewltype dnewlowe lnos flns { + forvalues ii = 1/9 { + capture confirm variable `stem'`ii' + if _rc gen `stem'`ii' = . + } + } + + // Ensure linkage variables exist in all rounds (missing where unavailable) + foreach lv in caser5 caser6 caser7 personw5 personw6 personr7 { + capture confirm variable `lv' + if _rc gen `lv' = . + } + keep if (!missing(case) & !missing(person)) + gen was_round = `ww' + label var was_round "WAS round number" // merge with household level data sort case person - merge m:1 case using "$dir_data\was_temp_hh`ww'.dta", nogen sorted + merge m:1 case using "${dir_data}/was_temp_hh`ww'.dta", gen(merge_hh) sorted keep(master match) + + * Expect every person-record case to have a matching household record + count if merge_hh == 1 + assert r(N) == 0 + tab merge_hh + + drop merge_hh // ypnbihs recode dvgiemp dvgise dvgippen dvgiinv dvoigrrannual_i dvoiggtannual_i dvoigegannual_i dvoigfrannual_i dvoigmaannual_i dvoigroannual_i dvoigopannual_i (missing=0) @@ -222,6 +299,16 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// gsort case person /* allow for children of non-reference adults */ by case: replace bu=bu[_n-1] if (chld==1) & (bu==person_id) label var bu "benefit unit number" + replace bu = person_id if missing(bu) + gen bu_rp = (person_id==bu) + label var bu_rp "benefit unit reference person" + bysort was_round case bu: egen n_rp = total(bu_rp==1) + bysort was_round case bu (person_id): replace bu_rp = 1 if n_rp==0 & _n==1 + replace bu_rp = 0 if missing(bu_rp) + drop n_rp + bysort was_round case bu: egen n_rp = total(bu_rp==1) + assert n_rp==1 + drop n_rp gsort case bu by case bu: egen hrp_bu = sum(hrp) @@ -276,6 +363,79 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// replace earnings = earnings + dvgise if ((dvgise<.) & (dvgise>0)) label var earnings "gross earnings" + // private pension contributions: core (regular) and fallback (last contribution) + foreach vv in pprgam1 pprgam2 pprgam3 pprgpe1 pprgpe2 pprgpe3 pplsta1 pplsta2 pplsta3 pplstp1 pplstp2 pplstp3 pcontpp dvcontocc_emee_dc1 dvcontocc_emee_dc2 pocnfr1 pocnfr2 dvemeeamt1 dvemeeamt2 { + capture confirm variable `vv' + if _rc gen `vv' = . + capture replace `vv' = . if `vv' < 0 + } + + foreach jj in 1 2 3 { + gen pp_core_ann_`jj' = . + replace pp_core_ann_`jj' = pprgam`jj' * (52.0 / pprgpe`jj') if pprgam`jj'>=0 & inlist(pprgpe`jj',1,2,3,4,13,26,52) + replace pp_core_ann_`jj' = pprgam`jj' * 12 if pprgam`jj'>=0 & pprgpe`jj'==5 + replace pp_core_ann_`jj' = pprgam`jj' * pprgpe`jj' if pprgam`jj'>=0 & inlist(pprgpe`jj',8,9,10) + + gen pp_fallback_ann_`jj' = . + replace pp_fallback_ann_`jj' = pplsta`jj' * (52.0 / pplstp`jj') if pplsta`jj'>=0 & inlist(pplstp`jj',1,2,3,4,13,26,52) + replace pp_fallback_ann_`jj' = pplsta`jj' * 12 if pplsta`jj'>=0 & pplstp`jj'==5 + replace pp_fallback_ann_`jj' = pplsta`jj' * pplstp`jj' if pplsta`jj'>=0 & inlist(pplstp`jj',8,9,10) + } + + egen pp_core_annual = rowtotal(pp_core_ann_1 pp_core_ann_2 pp_core_ann_3) + egen pp_fallback_annual = rowtotal(pp_fallback_ann_1 pp_fallback_ann_2 pp_fallback_ann_3) + gen pp_contrib_annual = pp_core_annual + replace pp_contrib_annual = pp_fallback_annual if (missing(pp_contrib_annual) | pp_contrib_annual<=0) & pp_fallback_annual>0 + replace pp_contrib_annual = 0 if missing(pp_contrib_annual) + gen chk = pp_contrib_annual * (earnings < 0.01) + gsort was_round bu + by was_round bu: egen chk2 = sum(chk) + by was_round bu: egen earn_max = max(earnings) + gen pp_reallocate = 0 + replace pp_reallocate = chk2 if (earnings == earn_max & earnings > 0.01) + gen pp_contrib_annual2 = pp_contrib_annual + pp_reallocate + replace pp_contrib_annual2 = 0 if (chk==1) + gen pp_contrate = 0 + replace pp_contrate = pp_contrib_annual2 / (earnings) * 100 if (pp_contrib_annual2>=0 & pp_contrib_annual2<. & earnings>0 & earnings<.) + gen pp_membi = (pp_contrate>0.01) * (pp_contrate<.) * (adlt) + egen pp_membu = sum(pp_membi), by (case bu) + + //gen ocdc_contrate_emee = dvcontocc_emee_dc1 * (dvcontocc_emee_dc1<.) + dvcontocc_emee_dc2 * (dvcontocc_emee_dc2 <.) + //gen ocdc_contrate_emer = dvcontocc_emer_dc1 * (dvcontocc_emer_dc1<.) + dvcontocc_emer_dc2 * (dvcontocc_emer_dc2 <.) + + + gen byte pp_contrib_source_core = (pp_core_annual>0) + gen byte pp_contrib_source_fallback = (pp_core_annual<=0 & pp_fallback_annual>0) + label var pp_core_annual "Personal pension annual contribution (core regular amount-period)" + label var pp_fallback_annual "Personal pension annual contribution (fallback last contribution amount-period)" + label var pp_contrib_annual "Personal pension annual contribution (core with fallback)" + label var pp_contrib_annual2 "Personal pension annual contribution (core with fallback and reallocation)" + label var pp_contrib_source_core "1 if pp_contrib_annual sourced from core regular contribution" + label var pp_contrib_source_fallback "1 if pp_contrib_annual sourced from fallback last contribution" + label var pp_contrate "Personal pension contribution rate (% of gross employment income)" +// label var ocdc_contrate_emee "DC occupational employee pension contribution rate (% of gross employment income)" +// label var ocdc_contrate_emer "DC occupational employer pension contribution rate (% of gross employment income)" + label var pp_membu "number of personal pension members in benefit unit" + + gen occ_emp_contrib_rate = . + replace occ_emp_contrib_rate = max(dvcontocc_emee_dc1,0) + max(dvcontocc_emee_dc2,0) if !missing(dvcontocc_emee_dc1) | !missing(dvcontocc_emee_dc2) + replace occ_emp_contrib_rate = max(pocnfr1,0) + max(pocnfr2,0) if missing(occ_emp_contrib_rate) & (!missing(pocnfr1) | !missing(pocnfr2)) + gen occ_emp_contrib_annual = . + replace occ_emp_contrib_annual = dvemeeamt1 + dvemeeamt2 if (dvemeeamt1>=0 | dvemeeamt2>=0) + replace occ_emp_contrib_annual = earnings * occ_emp_contrib_rate / 100 if missing(occ_emp_contrib_annual) & earnings>=0 & occ_emp_contrib_rate>=0 + replace occ_emp_contrib_annual = 0 if missing(occ_emp_contrib_annual) + label var occ_emp_contrib_rate "Occupational DC employee contribution rate (%)" + label var occ_emp_contrib_annual "Occupational DC employee annual contribution" + + gen pp_contrib_rate_income = . + replace pp_contrib_rate_income = pp_contrib_annual / inc if inc>0 + gen priv_total_contrib_rate_inc = . + replace priv_total_contrib_rate_inc = (pp_contrib_annual + occ_emp_contrib_annual) / inc if inc>0 + label var pp_contrib_rate_income "Personal pension contribution rate relative to annual private income" + label var priv_total_contrib_rate_inc "Personal + occupational employee contribution rate relative to annual private income" + + drop pp_core_ann_1 pp_core_ann_2 pp_core_ann_3 pp_fallback_ann_1 pp_fallback_ann_2 pp_fallback_ann_3 + // individual labour force status gen sempi=(stat==2) gen fti= (stat==1 & ftptwk==1) @@ -306,6 +466,9 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// gen op_memb = (pemmem==1) label var op_memb "whether member of occupational pension" + gen op_membui = op_memb * adlt + egen op_membu = sum(op_membui), by (case bu) + label var op_membu "number of occupational pension members in benefit unit" gen op_db = (((poctyp1==2) + (poctyp2==2))>0) * op_memb label var op_db "whether has current defined benefit scheme" @@ -369,8 +532,85 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// // financial and non-financial assets desc dvffassets desc dvfinfval - replace totcsc_sum = 0 if (totcsc_sum>=.) - gen assts = dvffassets + dvfinfval - totcsc_sum - tothp - tot_los - totmo + replace totcsc_sum = 0 if missing(totcsc_sum) + replace tothp_sum = 0 if missing(tothp_sum) + replace tot_los = 0 if missing(tot_los) + replace totmo_sum = 0 if missing(totmo_sum) + + gen cc_debt_i = totcsc_sum + gen cc_debt_trans_i = totcsc_trans_sum + gen cc_debt_pers_i = totcsc_pers_sum + gen hp_debt_i = tothp_sum + gen loan_debt_i = tot_los + gen loan_debt_exc_slc_i = tot_los_exc_slc + gen mail_debt_i = totmo_sum + gen loan_doorstep_i = 0 + gen loan_pawnbroker_i = 0 + gen loan_payday_i = 0 + gen informal_loan_debt_i = 0 + + forvalues ii = 1/9 { + replace loan_doorstep_i = loan_doorstep_i + lnos`ii' /// + if dltype`ii' == 2 & lnos`ii' > 0 & (missing(dlint`ii') | dlint`ii' != 1) + replace loan_pawnbroker_i = loan_pawnbroker_i + lnos`ii' /// + if dltype`ii' == 3 & lnos`ii' > 0 & (missing(dlint`ii') | dlint`ii' != 1) + replace loan_payday_i = loan_payday_i + lnos`ii' /// + if dltype`ii' == 10 & lnos`ii' > 0 & (missing(dlint`ii') | dlint`ii' != 1) + replace informal_loan_debt_i = informal_loan_debt_i + flns`ii' /// + if dltype`ii' == 7 & flns`ii' > 0 + + replace loan_doorstep_i = loan_doorstep_i + dnewlowe`ii' /// + if dnewltype`ii' == 2 & dnewlowe`ii' > 0 + replace loan_pawnbroker_i = loan_pawnbroker_i + dnewlowe`ii' /// + if dnewltype`ii' == 3 & dnewlowe`ii' > 0 + replace loan_payday_i = loan_payday_i + dnewlowe`ii' /// + if dnewltype`ii' == 10 & dnewlowe`ii' > 0 + replace informal_loan_debt_i = informal_loan_debt_i + dnewlowe`ii' /// + if dnewltype`ii' == 7 & dnewlowe`ii' > 0 + } + gen highcost_loan_debt_i = loan_doorstep_i + loan_pawnbroker_i + loan_payday_i + + egen cc_debt = sum(cc_debt_i), by (case bu) + egen cc_debt_trans = sum(cc_debt_trans_i), by (case bu) + egen cc_debt_pers = sum(cc_debt_pers_i), by (case bu) + egen hp_debt = sum(hp_debt_i), by (case bu) + egen loan_debt = sum(loan_debt_i), by (case bu) + egen loan_debt_exc_slc = sum(loan_debt_exc_slc_i), by (case bu) + egen mail_debt = sum(mail_debt_i), by (case bu) + egen loan_doorstep = sum(loan_doorstep_i), by (case bu) + egen loan_pawnbroker = sum(loan_pawnbroker_i), by (case bu) + egen loan_payday = sum(loan_payday_i), by (case bu) + egen informal_loan_debt = sum(informal_loan_debt_i), by (case bu) + egen highcost_loan_debt = sum(highcost_loan_debt_i), by (case bu) + gen loan_debt_slc = loan_debt - loan_debt_exc_slc if !missing(loan_debt) & !missing(loan_debt_exc_slc) + gen unsec_debt_total = cc_debt + hp_debt + loan_debt + mail_debt + gen unsec_debt_core = cc_debt + loan_debt_exc_slc + gen highcost_debt_proxy = cc_debt_pers + mail_debt + highcost_loan_debt + gen lowcost_debt = hp_debt + loan_debt_exc_slc - highcost_loan_debt + + replace cc_debt_trans = . if was_round == 5 + replace cc_debt_pers = . if was_round == 5 + replace highcost_debt_proxy = . if was_round == 5 + + label var cc_debt "Benefit-unit total credit/store/charge card debt" + label var cc_debt_trans "Benefit-unit total transient card debt (waves 6-8)" + label var cc_debt_pers "Benefit-unit total persistent card debt (waves 6-8)" + label var hp_debt "Benefit-unit total hire purchase debt" + label var loan_debt "Benefit-unit total formal/informal/SLC loan debt" + label var loan_debt_exc_slc "Benefit-unit total formal/informal loan debt excluding SLC" + label var loan_debt_slc "Benefit-unit student loan component of loan debt" + label var loan_doorstep "Benefit-unit cash-home-collector loan debt" + label var loan_pawnbroker "Benefit-unit pawnbroker/cash-converter loan debt" + label var loan_payday "Benefit-unit payday-lender loan debt" + label var informal_loan_debt "Benefit-unit informal friend/family/private loan debt" + label var highcost_loan_debt "Benefit-unit explicit high-cost loan debt" + label var mail_debt "Benefit-unit total mail order debt" + label var unsec_debt_total "Benefit-unit total unsecured debt" + label var unsec_debt_core "Benefit-unit unsecured debt: cards + non-SLC loans" + label var highcost_debt_proxy "Benefit-unit proxy high-cost debt: persistent cards + mail order + explicit high-cost loans" + label var lowcost_debt "Benefit-unit proxy low-cost debt: hire-purchase agreements and non-student/non-high-cost loans" + + gen assts = dvffassets + dvfinfval - cc_debt_i - hp_debt_i - loan_debt_i - mail_debt_i egen assets = sum(assts), by (case bu) label var assets "net value of financial and non-financial (non-property) assets" @@ -388,7 +628,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// egen tot_open = sum(op_tot), by (case bu) label var tot_open "value of aggregate occupational pension rights" gen tot_pp = tot_pen - tot_open - label var tot_pp "value of aggregate private pension rights" // Added by LS, private/personal pension rights (non-occupational) + label var tot_pp "value of aggregate personal pension rights" gen pi_temp = pincinp * (pincinp>0.01) // If pincinp is greater than 0.01, pi_temp = pincinp; otherwise, pi_temp = 0. egen pinc_now = sum(pi_temp), by (case bu) @@ -401,10 +641,10 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// replace ww = ww - main_mort if ( main_mort<.) label var ww "net wealth excluding ISAs and business equity" - save "$dir_data\chk.dta", replace + save "${dir_data}/chk.dta", replace // partner characteristics - save "$dir_data\was_temp.dta", replace + save "${dir_data}/was_temp.dta", replace keep case bu person_id person partno healths dlltsd grad emp drop if (partno==17) @@ -420,7 +660,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// drop person rename partno person - merge 1:1 case person using "$dir_data\was_temp.dta" + merge 1:1 case person using "${dir_data}/was_temp.dta" tab partno _m drop if _m==1 drop _m @@ -430,6 +670,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// // weight gen dwt = round(xshhwgt*10,1) label var dwt "cross-sectional household weight" + drop if missing(dwt) /* dhe2 = 1 very good or better - reference @@ -437,17 +678,17 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// dhe2 = 3 fair dhe2 = 4 bad / very bad */ - gen dhe2 = 0 - replace dhe2=1 if (healths<2) + gen dhe2 = . + replace dhe2=1 if (!missing(healths) & healths<2) replace dhe2=2 if (healths==2) replace dhe2=3 if (healths==3) - replace dhe2=4 if (healths>3) + replace dhe2=4 if (!missing(healths) & healths>3) label var dhe2 "General health (4 categories)" - gen dhesp2 = 0 - replace dhesp2=1 if (p_healths<2) + gen dhesp2 = . + replace dhesp2=1 if (!missing(p_healths) & p_healths<2) replace dhesp2=2 if (p_healths==2) replace dhesp2=3 if (p_healths==3) - replace dhesp2=4 if (p_healths>3) + replace dhesp2=4 if (!missing(p_healths) & p_healths>3) rename gor gor2 rename p_grad gradsp rename p_emp empsp @@ -473,12 +714,20 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// sort bu - gen bu_rp = person_id == bu + replace bu_rp = person_id == bu + bysort was_round case bu: egen n_rp = total(bu_rp==1) + bysort was_round case bu (person_id): replace bu_rp = 1 if n_rp==0 & _n==1 + drop n_rp + bysort was_round case bu: egen n_rp = total(bu_rp==1) + assert n_rp==1 + drop n_rp gen single_woman = bu_rp * (na==1) * (sex==2) gen single_man = bu_rp * (na==1) * (sex==1) gen couple_ref = bu_rp * (na==2) gen couple = (na==2) gen single = (na==1) + + xtile qtl = inc [fweight=dwt], nq(5) gen pct = . xtile pct1 = inc [fweight=dwt] if (single_woman & grad), nq(10) @@ -499,21 +748,252 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// xtile pct1 = inc [fweight=dwt] if (couple_ref & grad==0), nq(10) replace pct = pct1 if (pct1<.) drop pct1 + + // inflation adjust + gen CPI = . + forvalues yy = $inflation_minyear/$inflation_maxyear { + + replace CPI = inflation[`yy'-${inflation_minyear}+1,1] if year == `yy' + } + foreach var in tot_pen dvhvalue main_mort wealth inc { + + replace `var' = `var' / CPI + } + // save control data - // Variables below: total value of ISAs, net value of own-business assets, net value of financial and non-financial (non-property) assets, aggregate occupational pension rights, ww, private/personal pension rights (non‑occupational) - keep case person_id bu bu_rp year sex grad gradsp dvage17 na nk* single_man /// + // Variables below: total value of ISAs, net value of own-business assets, net value of financial and non-financial (non-property) assets, aggregate occupational pension rights, ww, private/personal pension rights (non-occupational) + keep was_round case person person_id bu bu_rp year sex grad gradsp dvage17 na nk* single_man /// single_woman couple couple_ref gor2 dhe2 healths p_healths dlltsd dlltsdsp /// - idnk04 pct emp empsp tot_pen dvhvalue main_mort wealth inc was dwt + idnk04 pct qtl emp empsp tot_pen dvhvalue main_mort wealth inc was dwt /// + isa_fam bus_assets assets tot_open ww tot_pp oprop db_op dc_op dc_pen pinc_now benefits /// + totcsc_sum totcsc_trans_sum totcsc_pers_sum tothp_sum tot_los tot_los_exc_slc totmo_sum /// + cc_debt cc_debt_trans cc_debt_pers hp_debt loan_debt loan_debt_exc_slc loan_debt_slc /// + loan_doorstep loan_pawnbroker loan_payday informal_loan_debt highcost_loan_debt /// + mail_debt unsec_debt_total unsec_debt_core highcost_debt_proxy lowcost_debt /// + op_memb pp_membu op_membu op_db op_dc /// + pp_core_annual pp_fallback_annual pp_contrib_annual pp_contrib_rate_income priv_total_contrib_rate_inc /// + pp_contrib_source_core pp_contrib_source_fallback occ_emp_contrib_rate occ_emp_contrib_annual /// + caser5 caser6 caser7 personw5 personw6 personr7 if (`ww' > `ww0') { - append using "$dir_data\was_wealthdata.dta" + append using "${dir_data}/was_wealthdata.dta" } - save "$dir_data\was_wealthdata.dta", replace + drop if missing(was_round) + save "${dir_data}/was_wealthdata.dta", replace local ww = `ww' + 1 } } +/**************************************************************/ +* +* CONSTRUCT LONGITUDINAL LINKAGE ACROSS WAS ROUNDS 5-8 +* +/**************************************************************/ + +use "${dir_data}/was_wealthdata.dta", clear + +* Build round-specific person keys (current round key + backward links carried in later rounds) +gen long obs_id = _n +label var obs_id "Row identifier before longitudinal linkage assignment" + +gen case_r5 = . +gen person_r5 = . +replace case_r5 = case if was_round==5 +replace person_r5 = person if was_round==5 +replace case_r5 = caser5 if missing(case_r5) +replace person_r5 = personw5 if missing(person_r5) + +gen case_r6 = . +gen person_r6 = . +replace case_r6 = case if was_round==6 +replace person_r6 = person if was_round==6 +replace case_r6 = caser6 if missing(case_r6) +replace person_r6 = personw6 if missing(person_r6) + +gen case_r7 = . +gen person_r7_link = . +replace case_r7 = case if was_round==7 +replace person_r7_link = person if was_round==7 +replace case_r7 = caser7 if missing(case_r7) +replace person_r7_link = personr7 if missing(person_r7_link) + +gen case_r8 = . +gen person_r8 = . +replace case_r8 = case if was_round==8 +replace person_r8 = person if was_round==8 + +gen str40 key_r5 = "" +replace key_r5 = "r5:" + trim(string(case_r5, "%20.0f")) + ":" + trim(string(person_r5, "%8.0f")) if !missing(case_r5) & !missing(person_r5) + +gen str40 key_r6 = "" +replace key_r6 = "r6:" + trim(string(case_r6, "%20.0f")) + ":" + trim(string(person_r6, "%8.0f")) if !missing(case_r6) & !missing(person_r6) + +gen str40 key_r7 = "" +replace key_r7 = "r7:" + trim(string(case_r7, "%20.0f")) + ":" + trim(string(person_r7_link, "%8.0f")) if !missing(case_r7) & !missing(person_r7_link) + +gen str40 key_r8 = "" +replace key_r8 = "r8:" + trim(string(case_r8, "%20.0f")) + ":" + trim(string(person_r8, "%8.0f")) if !missing(case_r8) & !missing(person_r8) + +* Pairwise one-to-one linkage propagation across adjacent rounds +* This replaces the earlier "earliest available key wins" anchor approach. +tempfile r5_lookup r6_lookup r7_lookup assign_r5 assign_r6 assign_r7 assign_r8 assign_all + +* Round 5 lookup / assignments (base chains) +preserve + keep if was_round==5 + keep obs_id sex key_r5 + keep if key_r5!="" + rename key_r5 r5_key + isid r5_key + gen str40 chain_key = r5_key + rename sex sex_r5_lookup + save `r5_lookup', replace + + keep obs_id chain_key + gen byte edge56_ok = . + gen byte edge56_sex_bad = . + gen byte edge67_ok = . + gen byte edge67_sex_bad = . + gen byte edge78_ok = . + gen byte edge78_sex_bad = . + save `assign_r5', replace +restore + +* Round 6: link to R5 via (caser5, personw5) +preserve + keep if was_round==6 + keep obs_id sex key_r6 caser5 personw5 + keep if key_r6!="" + rename key_r6 r6_key + gen str40 r5_key = "" + replace r5_key = "r5:" + trim(string(caser5, "%20.0f")) + ":" + trim(string(personw5, "%8.0f")) if !missing(caser5) & !missing(personw5) + + merge m:1 r5_key using `r5_lookup', keep(master match) keepusing(chain_key sex_r5_lookup) gen(_m56) + + duplicates tag r5_key if _m56==3, gen(dup_t56) + replace dup_t56 = 0 if missing(dup_t56) + duplicates tag r6_key if _m56==3, gen(dup_s56) + replace dup_s56 = 0 if missing(dup_s56) + + gen byte edge56_sex_bad = (sex != sex_r5_lookup) if _m56==3 & !missing(sex) & !missing(sex_r5_lookup) + replace edge56_sex_bad = 0 if missing(edge56_sex_bad) + + gen byte edge56_ok = (_m56==3 & dup_t56==0 & dup_s56==0 & edge56_sex_bad==0) + + gen str40 chain_key_out = "" + replace chain_key_out = chain_key if edge56_ok==1 + replace chain_key_out = r6_key if chain_key_out=="" + + rename sex sex_r6_lookup + keep obs_id r6_key sex_r6_lookup chain_key_out edge56_ok edge56_sex_bad + rename chain_key_out chain_key + save `r6_lookup', replace + + keep obs_id chain_key edge56_ok edge56_sex_bad + gen byte edge67_ok = . + gen byte edge67_sex_bad = . + gen byte edge78_ok = . + gen byte edge78_sex_bad = . + save `assign_r6', replace +restore + +* Round 7: link to R6 via (caser6, personw6) +preserve + keep if was_round==7 + keep obs_id sex key_r7 caser6 personw6 + keep if key_r7!="" + rename key_r7 r7_key + gen str40 r6_key = "" + replace r6_key = "r6:" + trim(string(caser6, "%20.0f")) + ":" + trim(string(personw6, "%8.0f")) if !missing(caser6) & !missing(personw6) + + merge m:1 r6_key using `r6_lookup', keep(master match) keepusing(chain_key sex_r6_lookup) gen(_m67) + + duplicates tag r6_key if _m67==3, gen(dup_t67) + replace dup_t67 = 0 if missing(dup_t67) + duplicates tag r7_key if _m67==3, gen(dup_s67) + replace dup_s67 = 0 if missing(dup_s67) + + gen byte edge67_sex_bad = (sex != sex_r6_lookup) if _m67==3 & !missing(sex) & !missing(sex_r6_lookup) + replace edge67_sex_bad = 0 if missing(edge67_sex_bad) + + gen byte edge67_ok = (_m67==3 & dup_t67==0 & dup_s67==0 & edge67_sex_bad==0) + + gen str40 chain_key_out = "" + replace chain_key_out = chain_key if edge67_ok==1 + replace chain_key_out = r7_key if chain_key_out=="" + + rename sex sex_r7_lookup + keep obs_id r7_key sex_r7_lookup chain_key_out edge67_ok edge67_sex_bad + rename chain_key_out chain_key + save `r7_lookup', replace + + keep obs_id chain_key edge67_ok edge67_sex_bad + gen byte edge56_ok = . + gen byte edge56_sex_bad = . + gen byte edge78_ok = . + gen byte edge78_sex_bad = . + save `assign_r7', replace +restore + +* Round 8: link to R7 via (caser7, personr7) +preserve + keep if was_round==8 + keep obs_id sex key_r8 caser7 personr7 + keep if key_r8!="" + rename key_r8 r8_key + gen str40 r7_key = "" + replace r7_key = "r7:" + trim(string(caser7, "%20.0f")) + ":" + trim(string(personr7, "%8.0f")) if !missing(caser7) & !missing(personr7) + + merge m:1 r7_key using `r7_lookup', keep(master match) keepusing(chain_key sex_r7_lookup) gen(_m78) + + duplicates tag r7_key if _m78==3, gen(dup_t78) + replace dup_t78 = 0 if missing(dup_t78) + duplicates tag r8_key if _m78==3, gen(dup_s78) + replace dup_s78 = 0 if missing(dup_s78) + + gen byte edge78_sex_bad = (sex != sex_r7_lookup) if _m78==3 & !missing(sex) & !missing(sex_r7_lookup) + replace edge78_sex_bad = 0 if missing(edge78_sex_bad) + + gen byte edge78_ok = (_m78==3 & dup_t78==0 & dup_s78==0 & edge78_sex_bad==0) + + rename chain_key chain_key_prev + gen str40 chain_key = "" + replace chain_key = chain_key_prev if edge78_ok==1 + replace chain_key = r8_key if chain_key=="" + + keep obs_id chain_key edge78_ok edge78_sex_bad + gen byte edge56_ok = . + gen byte edge56_sex_bad = . + gen byte edge67_ok = . + gen byte edge67_sex_bad = . + save `assign_r8', replace +restore + +* Combine round-specific assignments and merge back to full file +use `assign_r5', clear +append using `assign_r6' +append using `assign_r7' +append using `assign_r8' +isid obs_id +save `assign_all', replace + +use "${dir_data}/was_wealthdata.dta", clear + +gen long obs_id = _n +label var obs_id "Row identifier before longitudinal linkage assignment" + +merge 1:1 obs_id using `assign_all', nogen keep(master match) keepusing(chain_key) +assert !missing(chain_key) + +rename chain_key was_link_key +label var was_link_key "Canonical linkage key from pairwise one-to-one propagation" + +egen was_pid = group(was_link_key) +label var was_pid "Synthetic longitudinal person ID (WAS rounds 5-8 linkage)" + +sort was_pid year was_round +save "${dir_data}/was_wealthdata.dta", replace /**************************************************************/ * * ANALYSIS OF WORKING VARIABLES @@ -521,7 +1001,7 @@ foreach file in "$dir_was_data\was_round_5_person_eul_oct_2020.dta" /// /**************************************************************/ /* -use "$dir_data\was_wealthdata.dta", clear +use "${dir_data}/was_wealthdata.dta", clear tab gor2 year if (year>2014 & year<2020) [fweight=dwt], nol tab dvage17 year if (year>2014 & year<2020 & dvage17>4) [fweight=dwt], nol @@ -608,6 +1088,7 @@ local files_to_drop was_temp_hh5.dta was_temp_hh6.dta was_temp_hh7.dta + was_temp_hh8.dta ; #delimit cr // cr stands for carriage return diff --git a/input/InitialPopulations/compile/08_wealth_to_ukhls.do b/input/InitialPopulations/compile/08_wealth_to_ukhls.do index 4651787b8..d212e423a 100644 --- a/input/InitialPopulations/compile/08_wealth_to_ukhls.do +++ b/input/InitialPopulations/compile/08_wealth_to_ukhls.do @@ -37,7 +37,7 @@ global seedAdjust = 0 *********************************************************************/ use "population_initial_fs_UK_$yearWealth", clear sort idperson -drop total_wealth total_pensions housing_wealth mortgage_debt smp rnk mtc +drop total_wealth total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP smp rnk mtc /********************************************************************** @@ -207,6 +207,22 @@ drop if (bu_rp==0) *keep if (year==$yearWealth) keep if (year>=$yearWealth-1 & year<=$yearWealth+1) +capture confirm variable unsec_debt_total +if _rc { + di as error "was_wealthdata.dta must include unsec_debt_total for initial unsecured debt stocks" + exit 111 +} +capture confirm variable highcost_debt_proxy +if _rc { + di as error "was_wealthdata.dta must include highcost_debt_proxy for initial unsecured debt stocks" + exit 111 +} +recode unsec_debt_total highcost_debt_proxy (missing=0) +gen unsec_high = highcost_debt_proxy +replace unsec_high = 0 if (unsec_high<0 | unsec_high>=.) +gen unsec_low = lowcost_debt +replace unsec_low = 0 if (unsec_low<0 | unsec_low>=.) + * limit sample gen chk = 0 sort bu @@ -295,6 +311,10 @@ gen wealthi = -9 gen tot_peni = -9 gen housingi = -9 gen mortgagei = -9 +gen unsec_lowi = -9 +gen unsec_highi = -9 +gen op_membui = -9 +gen pp_membui = -9 qui { sum treat, mean local nn = r(mean) * r(N) @@ -370,12 +390,20 @@ forval kk = 1/`nn' { local pw = tot_pen[1] local hw = dvhvalue[1] local mm = main_mort[1] + local ul = unsec_low[1] + local uh = unsec_high[1] + local op = op_membu[1] + local pp = pp_membu[1] restore replace mtc=`mtc' if (_n==`kk') replace wealthi = `ww' if (_n==`kk') replace tot_peni = `pw' if (_n==`kk') replace housingi = `hw' if (_n==`kk') replace mortgagei = `mm' if (_n==`kk') + replace unsec_lowi = `ul' if (_n==`kk') + replace unsec_highi = `uh' if (_n==`kk') + replace op_membui = `op' if (_n==`kk') + replace pp_membui = `pp' if (_n==`kk') } replace rnk=`rnk' if (_n==`kk') drop chk @@ -394,18 +422,42 @@ recode wealthi (mis=0) recode tot_peni (mis=0) recode housingi (mis=0) recode mortgagei (mis=0) +recode unsec_lowi (mis=0) +recode unsec_highi (mis=0) +recode op_membui (mis=0) +recode pp_membui (mis=0) by bu: egen total_wealth = sum(wealthi) by bu: egen total_pensions = sum(tot_peni) by bu: egen housing_wealth = sum(housingi) by bu: egen mortgage_debt = sum(mortgagei) +by bu: egen unsecured_low_debt = sum(unsec_lowi) +by bu: egen unsecured_high_debt = sum(unsec_highi) +drop op_membu pp_membu +by bu: egen op_membu = sum(op_membui) +by bu: egen pp_membu = sum(pp_membui) +gen contRateOPEe = 0 +replace contRateOPEe = 0.05 if ((treat & op_membu==1) | (op_membu==2 & (dag>17))) +gen contRateOPEr = contRateOPEe +gen contRatePP = 0 +replace contRatePP = 0.05 if ((treat & pp_membu==1) | (pp_membu==2 & (dag>17))) + recode total_wealth (-9=0) recode total_pensions (-9=0) recode housing_wealth (-9=0) recode mortgage_debt (-9=0) +recode unsecured_low_debt (-9=0) +recode unsecured_high_debt (-9=0) +recode op_membu (-9=0) +recode pp_membu (-9=0) label var total_wealth "total wealth net of liabilities of benefit unit including housing, business and private (personal and occupational) pensions" label var total_pensions "value of all private (personal and occupational) pensions of benefit unit" label var housing_wealth "value of main home gross of mortgage debt of benefit unit" label var mortgage_debt "total mortgage debt owed on main home of benefit unit" +label var unsecured_low_debt "low-cost unsecured debt of benefit unit" +label var unsecured_high_debt "high-cost unsecured debt of benefit unit" +label var contRateOPEe "Employee contribution rate to occupational pension" +label var contRateOPEr "Employer contribution rate to occupational pension" +label var contRatePP "Employee contribution rate to personal pension" save ukhls_wealthtemp3, replace /* @@ -427,7 +479,8 @@ sum total_wealth [fweight=dwt2], detail use ukhls_wealthtemp3, clear drop dvage17 year gor gor2 sex nk na dhe2 dhesp2 grad gradsp emp empsp inci inc nk04i nk04 idnk04 dhe2grad dhe2ngrad /// dlltsdgrad dlltsdngrad empage single_woman single_man couple single ee ee2 was bu couple_ref pct dwt2 treat case person_id /// -p_healths dlltsdsp healths wealth bu_rp tt dhe3 dhe4 dvage07 nk2 nk3 gor3 gor4 pct2 wealthi tot_peni housingi mortgagei +p_healths dlltsdsp healths wealth bu_rp tt dhe3 dhe4 dvage07 nk2 nk3 gor3 gor4 pct2 /// +wealthi tot_peni housingi mortgagei unsec_low unsec_high unsec_lowi unsec_highi recode rnk smp mtc (missing = -9) label var rnk "matching level: 1 = most fine, 2, 3 = most coarse, 4=no match" label var smp "matching sample - number of matched candidates to choose from" diff --git a/input/InitialPopulations/compile/09_finalise_input_data.do b/input/InitialPopulations/compile/09_finalise_input_data.do index 1be0c1461..da1e4ab76 100644 --- a/input/InitialPopulations/compile/09_finalise_input_data.do +++ b/input/InitialPopulations/compile/09_finalise_input_data.do @@ -146,7 +146,6 @@ save "$dir_data\UKHLS_pooled_ipop.dta", replace /*panel dataset with missing val forvalues yy = $firstSimYear/$lastSimYear { * load pooled data with missing values removed use "$dir_data\ukhls_pooled_ipop.dta", clear - rename *, l * limit year global year = `yy' @@ -192,26 +191,26 @@ forvalues yy = $firstSimYear/$lastSimYear { by idhh idbenefitunit: egen disp_inc = sum(ydisp) *limit saved variables - keep idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// + keep idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// - l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// - total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// - carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// - dhe_pcssp dls dot dot01 unemp financial_distress liwwh - + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + careHoursProvidedWeekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh + order idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// - yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// - l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// - total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// - carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// - dhe_pcssp dls dot dot01 unemp financial_distress liwwh - + yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + careHoursProvidedWeekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh + recode idhh idbenefitunit idperson idpartner idmother idfather swv dgn dag dnc02 dnc ded deh_c3 deh_c4 sedex dlltsd01 dhe ydses_c5 /// - yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// - l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// - total_pensions housing_wealth mortgage_debt need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// - carehoursprovidedweekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// - dhe_pcssp dls dot dot01 unemp financial_distress liwwh (missing = -9) + yplgrs_dv ypnbihs_dv yptciihs_dv dcpyy dcpagdf ynbcpdf_dv der dehm_c3 dehf_c3 stm dhm scghq2_dv dhh_owned lhw /// + l1_lhw drgn1 les_c4 dhm_ghq adultchildflag dwt obs_earnings_hourly l1_obs_earnings_hourly total_wealth /// + total_pensions housing_wealth mortgage_debt unsecured_low_debt unsecured_high_debt contRateOPEe contRateOPEr contRatePP need_socare formal_socare_hrs informal_socare_hrs formal_socare_cost /// + careHoursProvidedWeekly econ_benefits econ_benefits_nonuc econ_benefits_uc disp_inc ypncp ypnoab dhe_mcs dhe_pcs dhe_mcssp /// + dhe_pcssp dls dot dot01 unemp financial_distress liwwh (missing = -9) /*Rename variables following the new Codebook */ @@ -229,11 +228,11 @@ rename dgn demMaleFlag rename dag demAge //rename dcpst demPartnerStatus rename dnc02 demNChild0to2 -rename dnc demNChild -rename ded eduSpellFlag -rename deh_c3 eduHighestC3 -rename deh_c4 eduHighestC4 -rename sedex eduExitSampleFlag +rename dnc demNChild +rename ded eduSpellFlag +rename deh_c3 eduHighestC3 +rename deh_c4 eduHighestC4 +rename sedex eduExitSampleFlag //rename jbstat labStatus //rename les_c3 labStatusC3 rename dlltsd01 healthDsblLongtermFlag @@ -274,15 +273,14 @@ rename dot01 demEthnC6 * --- Income, labour, wealth --- rename obs_earnings_hourly labWageHrly rename l1_obs_earnings_hourly labWageHrlyL1 -//rename liquid_wealth wealthLiq -//rename tot_pen wealthPensValue -//rename nvmhome wealthPrptyValue rename disp_inc yDispMonth //disposable income at the benefit unit level -rename total_wealth wealthTotValue //total wealth net of liabilities of benefit unit including housing, business and -rename mortgage_debt wealthMortgageDebtValue //total mortgage debt owed on main home of benefit unit -rename housing_wealth wealthPrptyValue //value of main home gross of mortgage debt of benefit unit -rename total_pensions wealthPensValue //value of all private (personal and occupational) pensions of benefit unit +rename total_wealth wealthTotValue //total wealth net of liabilities of benefit unit including housing, business and +rename mortgage_debt wealthMortgageDebtValue //total mortgage debt owed on main home of benefit unit +rename housing_wealth wealthPrptyValue //value of main home gross of mortgage debt of benefit unit +rename total_pensions wealthPensValue //value of all private (personal and occupational) pensions of benefit unit +rename unsecured_low_debt wealthUnsecuredDebtLowValue //value of low-cost unsecured debt of benefit unit +rename unsecured_high_debt wealthUnsecuredDebtHighValue //value of high-cost unsecured debt of benefit unit rename econ_benefits yBenReceivedFlag rename econ_benefits_nonuc yBenNonUCReceivedFlag @@ -302,7 +300,7 @@ rename need_socare careNeedFlag rename formal_socare_hrs careHrsFormal rename informal_socare_hrs careHrsInformal rename formal_socare_cost careFormalX -rename carehoursprovidedweekly careHrsProvidedWeek +rename careHoursProvidedWeekly careHrsProvidedWeek * --- Health & wellbeing --- rename dhm healthWbScore0to36 @@ -317,8 +315,8 @@ rename financial_distress yFinDstrssFlag save "$dir_data/population_initial_UK_$year.dta", replace /*panel dataset with missing values removed*/ -recode demMaleFlag yDispMonth wealthTotValue wealthMortgageDebtValue wealthPrptyValue wealthPensValue /// - careNeedFlag careHrsFormal careHrsInformal careFormalX careHrsProvidedWeek (-9=0) +recode demMaleFlag yDispMonth wealthTotValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue wealthPrptyValue wealthPensValue /// + careNeedFlag careHrsFormal careHrsInformal careFormalX careHrsProvidedWeek (-9=0) export delimited using "$dir_data/population_initial_UK_$year.csv", nolabel replace diff --git a/input/InitialPopulations/compile/99_training_data.do b/input/InitialPopulations/compile/99_training_data.do index 75d16299d..0f1a3333e 100644 --- a/input/InitialPopulations/compile/99_training_data.do +++ b/input/InitialPopulations/compile/99_training_data.do @@ -24,7 +24,7 @@ global dir_do "${dir_work}/do" global dir_data "${dir_work}/data" global wealthStartYear = 2015 -global wealthEndYear = 2019 +global wealthEndYear = 2021 /********************************************************************************/ @@ -184,7 +184,7 @@ rename dwt2 wgtHhCross save "$dir_data/temp10", replace // adjust continuous variables -foreach vv of varlist yEmpPersGrossMonth yNonBenPersGrossMonth yMiscPersGrossMonth yPersAndPartnerGrossDiffMonth wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue /// +foreach vv of varlist yEmpPersGrossMonth yNonBenPersGrossMonth yMiscPersGrossMonth yPersAndPartnerGrossDiffMonth wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue /// yDispMonth yCapitalPersMonth yPensPersGrossMonth careHrsFormal careHrsInformal careFormalX { gen tmp = `vv' order tmp, a(`vv') @@ -212,7 +212,7 @@ save "$dir_data/temp11", replace // set benefit unit level variables use "$dir_data/temp11", clear -foreach vv of varlist demRgn yHhQuintilesMonthC5 wealthPrptyFlag wgtHhCross wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue yDispMonth { +foreach vv of varlist demRgn yHhQuintilesMonthC5 wealthPrptyFlag wgtHhCross wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue yDispMonth { rename `vv' `vv'i bys idBu: egen `vv' = mean(`vv'i) @@ -223,7 +223,7 @@ foreach vv of varlist demRgn yHhQuintilesMonthC5 wealthPrptyFlag wgtHhCross weal /************************************************************************************** * export training data *************************************************************************************/ -recode demMaleFlag wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue careNeedFlag careHrsFormal careHrsInformal careFormalX (-9=0) +recode demMaleFlag wealthTotValue wealthPensValue wealthPrptyValue wealthMortgageDebtValue wealthUnsecuredDebtLowValue wealthUnsecuredDebtHighValue careNeedFlag careHrsFormal careHrsInformal careFormalX (-9=0) export delimited using "$dir_data/training_population_initial_UK_$wealthEndYear.csv", nolabel replace diff --git a/input/InitialPopulations/compile/RegressionEstimates/00_master_conditions.do b/input/InitialPopulations/compile/RegressionEstimates/00_master_conditions.do new file mode 100644 index 000000000..20ee28b3b --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/00_master_conditions.do @@ -0,0 +1,219 @@ +/******************************************************************************* +* PROJECT: SimPaths UK +* DO-FILE NAME: 00_master_conditions.do +* DESCRIPTION: Sets out the assumptions and conditions imposed in the +* creation of the unique dataset and the if conditions +* imposed when estimating the processes for SimPaths. +******************************************************************************** +* COUNTRY: UK +* AUTHORS: Daria Popova +* LAST UPDATE: 6 May 2026 DP +******************************************************************************** +* ----------------------------------------------------------------------------- +* Assumptions imposed to align the initial populations with simulation rules +* ----------------------------------------------------------------------------- +* +* - Retirement: +* - Treated as an absorbing state +* - Must retire by a specified maximum age +* - Cannot retire before a specified minimum age +* +* - Education: +* - Leave education no earlier than a specified minimum age +* - Must leave the initial education spell by a specified maximum age +* - Cannot return to education after retirement +* +* - Work: +* - Can work from a specified minimum age +* - Activity status and hours of work populated consistently: +* → Assume not working if report hours = 0 +* → Assume hours = 0 if not working +* - If missing partial information, don't assume the missing is 0 and +* impute (hot-deck) +* +* - Leaving the parental home: +* - Can leave from a specified minimum age +* - Become the effective head of hh even when living with parents when +* paretns retire or reach state retirment age +* +* - Home ownership: +* - Can own a home from a specified minimum age +* +* - Partnership formation: +* - Can form a partnership from a specified minimum age +* +* - Disability: +* - Treated as a subsample of the not-employed population +* +* The relevant age thresholds are defined in globals defined in "DEFINE +* PARAMETERS" section below. +* Throughout also construct relevant flags and produce an Excel file "flag_descriptves" to +* see the extent of the adjustments to the raw data. +* +* ----------------------------------------------------------------------- +* Additional notes on implementation: +* ----------------------------------------------------------------------- +* Current imputations : +* - Self-rated health status (ordered probit model) +* - Subjective well-being (liner regression) +* - Mental and physical component summaries (linear regression) +* - Impute highest parental education status (ordered probit model) +* - Impute education status using lagged observation and generalized ordered logit +* - Impute working hours if missing but the person is in work (panel based imputation + hot-deck) +* - Impute observed hourly wages if missing but the person is in work (panel based imputation + hot-deck) +* +* ----------------------------------------------------------------------- +* Remaining disparities between initial populations and simulation rules: +* ----------------------------------------------------------------------- +* - Ages at which females can have a child. [Be informed by the sample?] +* Permit teenage mothers in this script (deal with in 03_ ) +* - A few higher/older education spells (30+) that last multiple years, whilst +* in the simulation can only return to education for single year spells. +* - Should we have people becoming adults at 18 or 16 for income/number of +* children purposes? +* Considered a child if live with parents until 18 and in ft education? +* - Don't impose monotoncity on reported educational attainment information. +* - Number of children vars (all ages or 0-2) don't account for feasibility +* of age at birth of the mother. +*******************************************************************************/ + +/******************************************************************************* +* DEFINTE PARAMETERS +*******************************************************************************/ + +global country "UK" + +global first_sim_year "2010" + +global last_sim_year "2025" + + + +* Globals used for all processes +global weight "dwt" + +//global regions "UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN" //UKI is London (reference) +global regions "demRgnUKC demRgnUKD demRgnUKE demRgnUKF demRgnUKG demRgnUKH demRgnUKJ demRgnUKK demRgnUKL demRgnUKM demRgnUKN" //demRgnUKI is London (reference) + +//global ethnicity "Ethn_Asian Ethn_Black Ethn_Other" //White is reference. Mixed race & undefined are in Other category +global ethnicity "demEthnC4Asian demEthnC4Black demEthnC4Other" //White is reference. Mixed race & undefined are in Other category + +* Define threshold ages +/* +Ages used for specifying samples. +ENSURE THE SAME AS THE GLOBALS USED IN THE INTIIAL POPULATIONS MASTER FILE +*/ + +* Age become an adult in various dimensions +global age_becomes_responsible 18 + +global age_becomes_semi_responsible 16 + +global age_seek_employment 16 + +global age_leave_school 16 + +global age_form_partnership 18 + +global age_have_child_min 18 + +global age_leave_parental_home 18 + +global age_own_home 18 + +* Age can/must/cannot make various transitions +global age_max_dep_child 17 + +global age_adult 18 + +global age_can_retire 50 + +global age_force_retire 75 + +global age_force_leave_spell1_edu 30 + +global age_have_child_max 49 // allow this to be led by the data + + +/******************************************************************************* +* PROCESS IF CONDITIONS +*******************************************************************************/ + +* Education +global e1a_if_condition "dag >= ${age_leave_school} & dag < ${age_force_leave_spell1_edu} & l.les_c4 == 2" + +global e1b_if_condition "dag >= ${age_leave_school} & l.les_c4 != 4 & l.les_c4 != 2" + +global e2_if_condition "dag >= ${age_leave_school} & l.les_c4 == 2 & les_c4 != 2" + +* Leave the parental home +global p1_if_condition "ded == 0 & dag >= ${age_leave_parental_home}" + +* Partnership +global u1_if_condition "dag >= ${age_form_partnership} & ssscp != 1" + +global u2_if_condition "dgn == 0 & dag >= ${age_form_partnership} & l.ssscp != 1" + +* Fertility +global f1_if_condition "dag >= ${age_have_child_min} & dag <= ${age_have_child_max} & dgn == 0" + +* Health +global h1_if_condition "dag >= ${age_becomes_semi_responsible} & flag_dhe_imp == 0" + +global h2_if_condition "dag >= ${age_becomes_semi_responsible} & ded == 0" + +* Home ownership +global ho1_if_condition "dag >= ${age_own_home}" + +* Retirment +global r1a_if_condition "dcpst == 2 & dag >= ${age_can_retire}" + +global r1b_if_condition "ssscp != 1 & dcpst == 1 & dag >= ${age_can_retire}" + + +* WAGES +global wages_f_no_prev_if_condition "dgn == 0 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 0 & deh_c4>0" + +global wages_m_no_prev_if_condition "dgn == 1 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 0 & deh_c4>0" + +global wages_f_prev_if_condition "dgn == 0 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 1 & deh_c4>0" + +global wages_m_prev_if_condition "dgn == 1 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 1 & deh_c4>0" + + +* CAPITAL INCOME +global i1a_if_condition "dag >= ${age_becomes_semi_responsible}" + +global i1b_if_condition "dag >= ${age_becomes_semi_responsible} & receives_ypncp == 1" + +* PRIVATE PENSION INCOME +global i2b_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd==1 & receives_ypnoab==1" + +global i3a_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2" + +global i3b_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2 & receives_ypnoab==1" + + +* SOCIAL CARE +global s2a_if_condition "dag > 64 & stm >= 15 & stm <= 22" // Need care + +global s2b_if_condition "dag > 64 & stm >= 16 & stm <= 21" // Receive care + +global s2c_if_condition "dag > 64 & receive_care & stm >= 16 & stm <= 21" // Care mix received + +global s2d_if_condition "dag > 64 & receive_informal_care & stm >= 16 & stm <= 21" // Informal care hours received + +global s2e_if_condition "dag > 64 & receive_formal_care & stm >= 16 & stm <= 21" // Formal care hours received + + +global s3a_if_condition "Single & stm >= 15" // Provide care, Singles + +global s3b_if_condition "Partnered & stm >= 15" // Provide care, Partnered + +global s3c_if_condition "provide_informal_care & Single & stm >= 15" // Informal care hours provided, Singles + +global s3d_if_condition "provide_informal_care & Partnered & stm >= 15" // Informal care hours provided, Singles + + +* Finanicial distress and health processes +* TO ADD diff --git a/input/InitialPopulations/compile/RegressionEstimates/00_master_regression_estimates.do b/input/InitialPopulations/compile/RegressionEstimates/00_master_regression_estimates.do new file mode 100644 index 000000000..d9a4681cc --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/00_master_regression_estimates.do @@ -0,0 +1,127 @@ + +*************************************************************************************** +* PROJECT: SimPaths UK: regression estimates for SimPaths using UKHLS data +* DO-FILE NAME: master.do +* DESCRIPTION: Main do-file to set the main parameters (country, paths) and call sub-scripts +*************************************************************************************** +* COUNTRY: UK +* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] +* +* AUTHORS: Daria Popova, Justin van de Ven +* LAST UPDATE: 6 May 2026 DP +*************************************************************************************** + +*************************************************************************************** +* General comments: +* - Note that in the following scripts some standard commands may be +* abbreviated: (gen)erate, (tab)ulate, (sum)marize, (di)splay, +* (cap)ture, (qui)etly, (noi)sily + +*Stata packages to install +*ssc install fre +*ssc install tsspell +*ssc install carryforward +*ssc install outreg2 +*ssc install oparallel +*ssc install gologit2 +*ssc install winsor +*ssc install reghdfe +*ssc install ftools +*ssc install require +* +* NOTES: +* The income and union parameter do file must be run after +* the wage estimates are obtained because they use +* predicted wages. The order of the remaining files is +* arbitrary. +*************************************************************************************** +*************************************************************************************** + +clear all +set more off +set type double +set maxvar 30000 +set matsize 1000 + + +/************************************************************************************** +* DEFINE DIRECTORIES +**************************************************************************************/ + +* Working directory + +global path "D:\Dasha\ESSEX\_SimPaths\_SimPaths_UK\input_processing" + +global dir_work "${path}\regression_estimates" + +* Directory which contains do files +global dir_do "${dir_work}\do" + +* Directory which contains log files +global dir_log "${dir_work}\log" + +* Directory which contains raw output: Excel and Word tables +global dir_raw_results "${dir_work}\raw_results" + +* Directory which contains final Excel files read by the model +global dir_results "${dir_work}\results" + +* Pooled dataset for estimates +global estimation_sample "${path}\initial_populations\data\ukhls_pooled_ipop.dta" + +* Pooled dataset with predicted wages after Heckman +global estimation_sample2 "${path}\initial_populations\data\UKHLS_pooled_ipop2.dta" + +* Directory containing external data used for the estimates (e.g. fertility rates, wage growth) +global dir_external_data "${dir_work}/external_data" + +* Directory to save data for internal validation +global dir_validation_data "${dir_work}/internal_validation/data" + +/******************************************************************************* +* DEFINE PARAMETERS & PROCESS IF CONDITIONS +*******************************************************************************/ + +do "${path}\00_master_conditions.do" + + +/******************************************************************************* +* ESTIMATION FILES +*******************************************************************************/ +/* +Two additional do-files are called from each of these do-files +- variable_update.do refactors variable names +- programs.do contains Stata programs to process the output of regressions and create Excel files with results used by Simpaths + */ + +do "${dir_do}/01_reg_education.do" + +do "${dir_do}/02_reg_leave_parental_home.do" + +do "${dir_do}/03_reg_partnership.do" + +do "${dir_do}/04_reg_fertility.do" + +do "${dir_do}/05_reg_health.do" + +do "${dir_do}/06_reg_home_ownership.do" + +do "${dir_do}/07_reg_retirement.do" + +do "${dir_do}/08_reg_wages.do" + +do "${dir_do}/09_reg_income.do" + +do "${dir_do}/10_reg_socialcare.do" + +/*Note that the do-files below are not yet refactored */ +do "${dir_do}/11_reg_financial_distress.do" + +do "${dir_do}/12_reg_health_mental.do" + +do "${dir_do}/13_reg_health_wellbeing.do" + + +/************************************************************************************** +* END OF FILE +**************************************************************************************/ diff --git a/input/InitialPopulations/compile/RegressionEstimates/01_reg_education.do b/input/InitialPopulations/compile/RegressionEstimates/01_reg_education.do new file mode 100644 index 000000000..93dc2f49e --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/01_reg_education.do @@ -0,0 +1,168 @@ +/******************************************************************************* +* PROJECT: SimPaths UK +* SECTION: Education +* OBJECT: Final Probit & Generalised Logit Models - Weighted +* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven, +* Aleksandra Kolndrekaj, Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +* NOTES: +* +*******************************************************************************/ + +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_education.log", replace + + +/******************************* SET EXCEL FILE *******************************/ + +putexcel set "$dir_results/reg_education", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters governing projection of education status" +putexcel A2 = "Authors:" +putexcel B2 = "Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit:" +putexcel B3 = "15 April 2026 (DP)" + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold + +putexcel A6 = "E1a" +putexcel B6 = "Prob. remain in education" + +putexcel A7 = "E1b" +putexcel B7 = "Prob. retrun to education" + +putexcel A8 = "E2" +putexcel B8 = "Educational attainment when leave education" + +putexcel A9 = "E2_raw" +putexcel B9 = "Raw attainment results" + +putexcel A11 = "Notes:", bold +putexcel B11 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B12 = "Conditions for processes are defined as globals in master.do" +//putexcel B13 = "E1a: Compared to the previous version, where age and age squared were used, age is now centered (at age 23) and its effect is allowed to change after age 18." + +putexcel set "$dir_results/reg_education", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + + +/****************** E1a: PROBABILITY OF REMAINING IN EDUCATION ****************/ +display "${e1a_if_condition}" + +/* +probit Dst i.Dgn Dag Dag_sq /*Dag_c Dag_c_sq Dag_post18_sq*/ li.Ded /// + li.Dehmf_c3_Medium li.Dehmf_c3_Low /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${e1a_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("education") process("E1a") sheet("E1a_orig") /// + title("Process E1a: Prob. remain in education") /// + gofrow(3) goflabel("E1a - Remain in education") /// + ifcond("${e1a_if_condition}") probit + */ +probit Dst /// + demMaleFlag demAge demAgeSq eduSampleFlagL1 /// + eduHighestParentC3MediumL1 eduHighestParentC3LowL1 /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${e1a_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("education") process("E1a") sheet("E1a") /// + title("Process E1a: Prob. remain in education") /// + gofrow(3) goflabel("E1a - Remain in education") /// + ifcond("${e1a_if_condition}") probit + + +/****************** E1b: PROBABILITY OF RETURNING TO EDUCATION ****************/ +display "${e1b_if_condition}" + +/* +probit der i.Dgn Dag Dag_sq li.Dcpst_Partnered /// + li.Deh_c4_High li.Deh_c4_Low li.Dehmf_c3_Medium li.Dehmf_c3_Low /// + li.Les_c3_NotEmployed li.Les_c3_Employed l.Dnc l.Dnc02 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${e1b_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("education") process("E1b") sheet("E1b_orig") /// + title("Process E1b: Prob. return to education") /// + gofrow(7) goflabel("E1b - Return to education") /// + ifcond("${e1b_if_condition}") probit + */ +probit der /// + demMaleFlag demAge demAgeSq demPartnerStatusPartneredL1 /// + eduHighestC4HighL1 eduHighestC4LowL1 /// + eduHighestParentC3MediumL1 eduHighestParentC3LowL1 /// + labStatusC3NotEmployedL1 labStatusC3EmployedL1 /// + demNChildL1 demNChild0to2L1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${e1b_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("education") process("E1b") sheet("E1b") /// + title("Process E1b: Prob. return to education") /// + gofrow(7) goflabel("E1b - Return to education") /// + ifcond("${e1b_if_condition}") probit + + +/****************** E2: EDUCATION ATTAINMENT WHEN LEAVE SCHOOL ****************/ +display "${e2_if_condition}" + +/* +gologit2 deh_c3_recoded i.Dgn Dag Dag_sq /// + i.L_Dehmf_c3_Medium i.L_Dehmf_c3_Low /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${e2_if_condition} [pw=${weight}], autofit + +process_gologit, domain("education") process("E2") sheet("E2_orig") /// + title("Process E2: Educational Attainment When Leave School") /// + gofrow(11) goflabel("E2 - Education attainment") /// + outcomes(3) /// + ifcond("${e2_if_condition}") + */ +gologit2 deh_c3_recoded /// + demMaleFlag demAge demAgeSq /// + eduHighestParentC3MediumL1 eduHighestParentC3LowL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${e2_if_condition} [pw=${weight}] , autofit + +process_gologit, domain("education") process("E2") sheet("E2") /// + title("Process E2: Educational Attainment When Leave School") /// + gofrow(11) goflabel("E2 - Education attainment") /// + outcomes(3) /// + ifcond("${e2_if_condition}") + + +display "Education analysis complete!" + + +capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/02_reg_leave_parental_home.do b/input/InitialPopulations/compile/RegressionEstimates/02_reg_leave_parental_home.do new file mode 100644 index 000000000..1486f3ae4 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/02_reg_leave_parental_home.do @@ -0,0 +1,100 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: Leaving Parental Home +* OBJECT: Final Probit Regression Model +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj, Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +* NOTES: +********************************************************************************** + +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_leave_parental_home.log", replace + + +/********************************* SET EXCEL FILE *****************************/ + +putexcel set "$dir_results/reg_leave_parental_home", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters governing leaving parental home" +putexcel A2 = "Authors:" +putexcel B2 = "Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 15 April 2026 (DP)" + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "P1a" +putexcel B6 = "Prob. leave the parental home, transitioning out of adult child status" + +putexcel A10 = "Notes:", bold +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" + +putexcel set "$dir_results/reg_leave_parental_home", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + + +/**************** P1: PROBABILITY OF LEAVING THE PARENTAL HOME ****************/ +display "${p1_if_condition}" + +/* +probit dlftphm i.Dgn Dag Dag_sq li.Deh_c4_Na li.Deh_c4_Medium li.Deh_c4_Low /// + li.Les_c3_Student li.Les_c3_NotEmployed /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${p1_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("leave_parental_home") process("P1") sheet("P1_orig") /// + title("Process P1: Prob. leave parental home") /// + gofrow(3) goflabel("P1 - Leave parental home") /// + ifcond("${p1_if_condition}") probit + */ + +probit dlftphm /// + demMaleFlag demAge demAgeSq /// + eduHighestC4NaL1 eduHighestC4MediumL1 eduHighestC4LowL1 /// + labStatusC3StudentL1 labStatusC3NotEmployedL1 /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${p1_if_condition} [pw=${weight}], vce(robust) + + +process_regression, domain("leave_parental_home") process("P1") sheet("P1") /// + title("Process P1: Prob. leave parental home") /// + gofrow(3) goflabel("P1 - Leave parental home") /// + ifcond("${p1_if_condition}") probit + + +display "Leaving parental home analysis complete!" + + +cap log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/03_reg_partnership.do b/input/InitialPopulations/compile/RegressionEstimates/03_reg_partnership.do new file mode 100644 index 000000000..84e40cbb5 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/03_reg_partnership.do @@ -0,0 +1,155 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: Unions +* OBJECT: Final Probit Models +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj, Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +*NOTES: +* Combined former a and b processes. +******************************************************************************** + +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_partnership.log", replace + + +/********************************* SET EXCEL FILE *****************************/ + +putexcel set "$dir_results/reg_partnership", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters for relationship status projection" +putexcel A2 = "Authors:" +putexcel B2 = "Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 15 April 2026 (DP)" + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "U1 " +putexcel B6 = "Prob enter partnership" +putexcel A7 = "U2" +putexcel B7 = "Prob exit partnership" + +putexcel A10 = "Notes:", bold +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" +putexcel B12 = "Combined former processes U1a and U1b" + +putexcel set "$dir_results/reg_partnership", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + +/********************************** ESTIMATION ********************************/ + +/******************** U1: PROBABILITY FORMING PARTNERSHIP *********************/ +display "${u1_if_condition}" +/* +probit dcpen /// + i.Ded Dgn Dag Dag_sq /// + lc.Dnc lc.Dnc02 /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + /*Ded_Dag Ded_Dag_sq*/ Ded_Dgn Ded_Dnc_L1 Ded_Dnc02_L1 /// + Ded_Ydses_c5_Q2_L1 Ded_Ydses_c5_Q3_L1 Ded_Ydses_c5_Q4_L1 Ded_Ydses_c5_Q5_L1 /// + i.Deh_c4_Na i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Low /// + li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// + li.Les_c4_Student_Dgn li.Les_c4_NotEmployed_Dgn li.Les_c4_Retired_Dgn /// + l.Dhe_pcs l.Dhe_mcs /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${u1_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("partnership") process("U1") sheet("U1_orig") /// + title("Process U1: Prob. form partnership") /// + gofrow(3) goflabel("U1 - Form partnership") /// + ifcond("${u1_if_condition}") probit +*/ +probit dcpen /// + eduSampleFlag demMaleFlag demAge demAgeSq /// + demNChildL1 demNChild0to2L1 /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + eduSampleFlag_demMaleFlag eduSampleFlag_demNChildL1 eduSampleFlag_demNChild0to2L1 /// + eduSampleFlag_Q2L1 eduSampleFlag_Q3L1 eduSampleFlag_Q4L1 eduSampleFlag_Q5L1 /// + eduHighestC4High eduHighestC4Medium /*eduHighestC4Low*/ /// + labStatusC4StudentL1 labStatusC4NotEmployedL1 labStatusC4RetiredL1 /// + labStatusC4Student_MaleL1 labStatusC4NotEmployed_MaleL1 labStatusC4Retired_MaleL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${u1_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("partnership") process("U1") sheet("U1") /// + title("Process U1: Prob. form partnership") /// + gofrow(3) goflabel("U1 - Form partnership") /// + ifcond("${u1_if_condition}") probit + + +/******************* U2: PROBABILITY TERMINATE PARTNERSHIP ********************/ +display "${u2_if_condition}" + +/* +probit dcpex /// + i.Ded Dag Dag_sq /*Ded_Dag Ded_Dag_sq*/ /// + li.Deh_c4_Na li.Deh_c4_Low li.Deh_c4_Medium li.Deh_c4_High /// + li.Dehsp_c3_Medium li.Dehsp_c3_Low /// + li.Dhe_Fair li.Dhe_Good li.Dhe_VeryGood li.Dhe_Excellent /// + l.Dhe_pcs l.Dhe_mcs /// + l.Dhe_pcssp l.Dhe_mcssp /// + l.Dcpyy l.New_rel l.Dcpagdf /// + l.Dnc l.Dnc02 /// + li.Lesdf_c4_EmpSpouseNotEmp li.Lesdf_c4_NotEmpSpouseEmp li.Lesdf_c4_BothNotEmployed /// + l.Ypnbihs_dv l.Ynbcpdf_dv /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${u2_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("partnership") process("U2") sheet("U2_orig") /// + title("Process U2: Prob. end partnership") /// + gofrow(7) goflabel("U2 - End partnership") /// + ifcond("${u2_if_condition}") probit +*/ + +probit dcpex /// + eduSampleFlag demAge demAgeSq /// + eduHighestC4NaL1 eduHighestC4LowL1 eduHighestC4MediumL1 eduHighestC4HighL1 /// + eduHighestPartnerC3MediumL1 eduHighestPartnerC3LowL1 /// + healthSelfRatedFairL1 healthSelfRatedGoodL1 healthSelfRatedVeryGoodL1 healthSelfRatedExcellentL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + healthPhysicalPartnerPcsL1 healthMentalPartnerMcsL1 /// + demPartnerNYearL1 demEnterPartnerFlagL1 demAgePartnerDiffL1 /// + demNChildL1 demNChild0to2L1 /// + labStatusPartnerAndOwnC42L1 labStatusPartnerAndOwnC43L1 labStatusPartnerAndOwnC44L1 /// + yNonBenPersGrossMonthL1 yPersAndPartnerGrossDiffMonthL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${u2_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("partnership") process("U2") sheet("U2") /// + title("Process U2: Prob. end partnership") /// + gofrow(7) goflabel("U2 - End partnership") /// + ifcond("${u2_if_condition}") probit + + +display "Partnership analysis complete!" + + +capture log close + diff --git a/input/InitialPopulations/compile/RegressionEstimates/04_reg_fertility.do b/input/InitialPopulations/compile/RegressionEstimates/04_reg_fertility.do new file mode 100644 index 000000000..7e54d5e96 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/04_reg_fertility.do @@ -0,0 +1,115 @@ +********************************************************************************* +* PROJECT: SimPaths UK +* SECTION: Fertility +* OBJECT: Final Probit Models +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +* NOTES: +* Combined former a and b processes. +******************************************************************************** +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_fertility.log", replace + + +/******************************* SET EXCEL FILE *******************************/ + +putexcel set "$dir_results/reg_fertility", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters governing projection of fertility" +putexcel A2 = "Authors:" +putexcel B2 = "Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 15 April 2026 (DP) " + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "F1" +putexcel B6 = "Prob have a child for women" + +putexcel A10 = "Notes:", bold +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" +putexcel B12 = "Combined former processes F1a and F1b" + +putexcel set "$dir_results/reg_fertility", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + +* Any-children dummy (dchpd collapsing) +replace dchpd = 1 if inlist(dchpd, 2, 3, 4, 5) +fre dchpd + + +/********************************* ESTIMATION *********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + +/*********************** F1: PROBABILITY OF HAVING A CHILD ********************/ +display "${f1_if_condition}" +/* +probit dchpd /// + i.Ded Dag Dag_sq /// + l.Dhe_pcs l.Dhe_mcs /// + Dcpst_Single li.Dcpst_Single /// + /*Ded_Dag Ded_Dhe_pcs Ded_Dhe_mcs*/ /// + Ded_Dcpst_Single /*Ded_Dcpst_Single_L1*/ /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + l.Dnc l.Dnc02 /// + i.Deh_c4_Low i.Deh_c4_High /// + FertilityRate /// + /*li.Les_c3_Student*/ li.Les_c3_NotEmployed /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${f1_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("fertility") process("F1") sheet("F1_orig") /// + title("Process F1: Prob. have a child") /// + gofrow(3) goflabel("F1 - Have child") /// + ifcond("${f1_if_condition}") probit +*/ + +probit dchpd /// + eduSampleFlag demAge demAgeSq /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + demPartnerStatusSingle demPartnerStatusSingleL1 /// + eduSampleFlag_Single /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + demNChildL1 demNChild0to2L1 /// + eduHighestC4Low eduHighestC4High /// + fertilityRate /// + /*labStatusC3StudentL1*/ labStatusC3NotEmployedL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// +if ${f1_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("fertility") process("F1") sheet("F1") /// + title("Process F1: Prob. have a child") /// + gofrow(3) goflabel("F1 - Have child") /// + ifcond("${f1_if_condition}") probit + + +display "Fertility analysis complete!" + + +capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/05_reg_health.do b/input/InitialPopulations/compile/RegressionEstimates/05_reg_health.do new file mode 100644 index 000000000..d5358c6d1 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/05_reg_health.do @@ -0,0 +1,163 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: Health +* OBJECT: Health status and Disability +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj, +* Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +* NOTES: Combined former a and b processes. +* +******************************************************************************** +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_health.log", replace + + +/******************************* SET EXCEL FILE *******************************/ + +putexcel set "$dir_results/reg_health", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters governing projection self-reported health status" +putexcel A2 = "Authors:" +putexcel B2 = "Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 15 April 2026 (DP) " + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold + +putexcel A6 = "H1" +putexcel B6 = "Self rated health (5 cat)" +putexcel B7 = "Covariates that satisfy the parallel lines assumption have one estimate for all categories of the dependent variable and are present once in the table" +putexcel B8 = "Covariates that do not satisfy the parallel lines assumption have an estimate for each estimated category of the dependent variable. These covariates have the dependent variable category appended to their name." + +putexcel A9 = "H1_raw" +putexcel B9 = "elf rated health (5 cat) - unformatted output" + +putexcel A10 = "H2" +putexcel B10 = "Prob. long-term sick or disabled" + +putexcel A15 = "Notes:", bold +putexcel B15 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B16 = "Conditions for processes are defined as globals in master.do" +putexcel B17 = "Combined former processes H1a and H1b" + +putexcel set "$dir_results/reg_health", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + + +/********************** H1: SELF-REPORTED HEALTH STATUS ***********************/ +display "${h1_if_condition}" +/* +gologit2 dhe /// + Ded Dgn Dag Dag_sq /// /*Ded_Dag Ded_Dag_sq Ded_Dgn /// */ + L_Dhe_pcs L_Dhe_mcs /// + i.Deh_c4_Medium i.Deh_c4_Low i.Deh_c4_Na /// + /*L_Les_c4_Student*/ L_Les_c4_NotEmployed L_Les_c4_Retired /// + L_Ydses_c5_Q2 L_Ydses_c5_Q3 L_Ydses_c5_Q4 L_Ydses_c5_Q5 /// + L_Dhhtp_c4_CoupleChildren L_Dhhtp_c4_SingleNoChildren L_Dhhtp_c4_SingleChildren /// + L_Dlltsd01 /// + $regions Year_transformed Y2020 Y2021 $ethnicity if /// + ${h1_if_condition} [pw=${weight}], autofit + +/* +Note: In gologit2, the coefficients show how covariates affect the log-odds of +being above a certain category vs. at or below it. +*/ + +process_gologit, domain("health") process("H1") sheet("H1_orig") /// + title("Process H1: Self Rated Health") /// + gofrow(3) goflabel("H1 - Self-rated health") /// + outcomes(5) /// + ifcond("${h1_if_condition}") +*/ + +gologit2 dhe /// + eduSampleFlag demMaleFlag demAge demAgeSq /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + eduHighestC4Medium eduHighestC4Low /*eduHighestC4Na*/ /// + /*labStatusC4StudentL1*/ labStatusC4NotEmployedL1 labStatusC4RetiredL1 /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + demCompHhC4CoupleChL1 demCompHhC4SingleNoChL1 demCompHhC4SingleChL1 /// + healthDsblLongtermFlagL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${h1_if_condition} [pw=${weight}], autofit + +/* +Note: In gologit2, the coefficients show how covariates affect the log-odds of +being above a certain category vs. at or below it. +*/ + +process_gologit, domain("health") process("H1") sheet("H1") /// + title("Process H1: Self Rated Health") /// + gofrow(3) goflabel("H1 - Self-rated health") /// + outcomes(5) /// + ifcond("${h1_if_condition}") + + +/**************** H2: PROBABILITY LONG-TERM SICK OR DISABLED ******************/ +display "${h2_if_condition}" +/* +probit dlltsd01 /// + i.Dgn Dag Dag_sq /// + Deh_c4_Medium Deh_c4_Low Deh_c4_Na /// + L_Ydses_c5_Q2 L_Ydses_c5_Q3 L_Ydses_c5_Q4 L_Ydses_c5_Q5 /// + L_Dhe_pcs L_Dhe_mcs /// + L_Dlltsd01 /// + L_Dhhtp_c4_CoupleChildren L_Dhhtp_c4_SingleNoChildren L_Dhhtp_c4_SingleChildren /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${h2_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("health") process("H2") sheet("H2_orig") /// + title("Process H2: Prob.disabled or long term sick") /// + gofrow(7) goflabel("H2 - Disabled or long term sick") /// + ifcond("${h2_if_condition}") probit +*/ + +probit dlltsd01 /// + demMaleFlag demAge demAgeSq /// + eduHighestC4Medium eduHighestC4Low eduHighestC4Na /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + healthDsblLongtermFlagL1 /// + demCompHhC4CoupleChL1 demCompHhC4SingleNoChL1 demCompHhC4SingleChL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${h2_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("health") process("H2") sheet("H2") /// + title("Process H2: Prob.disabled or long term sick") /// + gofrow(7) goflabel("H2 - Disabled or long term sick") /// + ifcond("${h2_if_condition}") probit + + +display "Self-rated health analysis complete!" + + +capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/06_reg_home_ownership.do b/input/InitialPopulations/compile/RegressionEstimates/06_reg_home_ownership.do new file mode 100644 index 000000000..f4e435dc5 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/06_reg_home_ownership.do @@ -0,0 +1,158 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: Home ownership +* OBJECT: Final Regresion Models - Weighted +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj, Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +* NOTES: Re-estimated process at benefit unit level to be consistent with SimPaths +* +******************************************************************************** +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_home_ownership.log", replace + + +/********************************* SET EXCEL FILE *****************************/ + +putexcel set "$dir_results/reg_home_ownership", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters governing projection of home ownership" +putexcel A2 = "Authors: " +putexcel B2 = "Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 15 April 2026 (DP) " + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "HO1" +putexcel B6 = "Prob. of being a home owner" + +putexcel A10 = "Notes:", bold +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" +putexcel B12 = "Re-estimated process at benefit unit level to be consistent with SimPaths" + +putexcel set "$dir_results/reg_home_ownership", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +//xtset idperson swv +//sort idperson swv + +* Adjust variables +//do "${dir_do}/variable_update.do" + + +* Create sample at benefit unit head + +* Keep adults (18+) +keep if dag >= 18 + +* Count unique benefit-unit–wave combinations BEFORE head selection +egen tag_bu_wave = tag(idbenefitunit swv) +count if tag_bu_wave +local n_bu_before = r(N) +display "Number of benefit unit–wave combinations BEFORE selecting head: `n_bu_before'" + +* Sort benefit unit members within each wave: +* 1. Highest non-benefit income (ypnbihs_dv) +* 2. Highest age (dag) +* 3. Lowest idperson (idperson) +gsort idbenefitunit swv -ypnbihs_dv -dag idperson + +* Tag the first person (the "head") per benefit unit and wave +bysort idbenefitunit swv: gen benunit_head = (_n == 1) + +* Keep only benefit unit heads +keep if benunit_head == 1 + +* Count unique benefit-unit–wave combinations AFTER head selection +drop tag_bu_wave +egen tag_bu_wave = tag(idbenefitunit swv) +count if tag_bu_wave +local n_bu_after = r(N) +display "Number of benefit unit–wave combinations AFTER selecting head: `n_bu_after'" + +* Ensure benefit unit–wave counts match before and after head selection +assert `n_bu_before' == `n_bu_after' + +* Verify only one head per benefit unit per wave +by idbenefitunit swv, sort: gen n=_N +assert n==1 + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + + +/********************** HO1: PROBABILITY OF OWNING HOME ***********************/ +display "${ho1_if_condition}" + +/* +probit dhh_owned /// + i.Dgn Dag Dag_sq /// + il.Dhhtp_c8_2 il.Dhhtp_c8_3 il.Dhhtp_c8_4 il.Dhhtp_c8_5 il.Dhhtp_c8_6 il.Dhhtp_c8_7 il.Dhhtp_c8_8 /// + il.Les_c4_Student il.Les_c4_NotEmployed il.Les_c4_Retired /// + i.Deh_c4_Medium i.Deh_c4_Low i.Deh_c4_Na /// + l.Dhe_mcs l.Dhe_pcs /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + l.Yptciihs_dv /// + l.Dhh_owned /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${ho1_if_condition} [pw=${weight}], vce(cluster idperson) + +process_regression, domain("home_ownership") process("HO1") sheet("HO1_orig") /// + title("Process S2b: Prob. own home") /// + gofrow(3) goflabel("HO1 - Own home") /// + ifcond("${ho1_if_condition}") probit +*/ + +probit dhh_owned /// + demMaleFlag demAge demAgeSq /// + demCompHhC82L1 demCompHhC83L1 demCompHhC84L1 demCompHhC85L1 demCompHhC86L1 demCompHhC87L1 demCompHhC88L1 /// + labStatusC4StudentL1 labStatusC4NotEmployedL1 labStatusC4RetiredL1 /// + eduHighestC4Medium eduHighestC4Low eduHighestC4Na /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + yMiscPersGrossMonthL1 /// + wealthPrptyFlagL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${ho1_if_condition} [pw=dwt], vce(cluster idperson) + +process_regression, domain("home_ownership") process("HO1") sheet("HO1") /// + title("Process S2b: Prob. own home") /// + gofrow(3) goflabel("HO1 - Own home") /// + ifcond("${ho1_if_condition}") probit + + +display "Home ownership analysis complete!" + + +capture log close + + \ No newline at end of file diff --git a/input/InitialPopulations/compile/RegressionEstimates/07_reg_retirement.do b/input/InitialPopulations/compile/RegressionEstimates/07_reg_retirement.do new file mode 100644 index 000000000..6170a564b --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/07_reg_retirement.do @@ -0,0 +1,148 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: Retirement +* OBJECT: Probit Regresion Models +* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj, Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +* NOTES: +* +******************************************************************************** +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +/********************************* SET LOG FILE *******************************/ + +cap log close +log using "${dir_log}/reg_retirement.log", replace + + +/********************************* SET EXCEL FILE *****************************/ + +putexcel set "$dir_results/reg_retirement", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters governing projection of retirement" +putexcel A2 = "Authors: " +putexcel B2 = "Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 15 April 2026 (DP) " + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold + +putexcel A6 = "R1a" +putexcel B6 = "Prob of retiring, singles" + +putexcel A7 = "R1b" +putexcel B7 = "Prob of retiring, partnered" + +putexcel A10 = "Notes:", bold +putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B11 = "Conditions for processes are defined as globals in master.do" + +putexcel set "$dir_results/reg_retirement", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +* Load data +use "${estimation_sample}", clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + + +/****************** R1a: PROBABILITY OF RETIREMENT, SINLGE ********************/ +display "${r1a_if_condition}" +/* +probit drtren i.Dgn Dag Dag_sq /// + li.Deh_c4_Medium li.Deh_c4_Low li.Deh_c4_Na /// + l.Dhe_pcs l.Dhe_mcs /// + i.Reached_Retirement_Age /// + li.Les_c3_NotEmployed /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 li.Dlltsd01 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${r1a_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("retirement") process("R1a") sheet("R1a_orig") /// + title("Process R1a: Prob. retire, singles") /// + gofrow(3) goflabel("R1a - Retire, singles") /// + ifcond("${r1a_if_condition}") probit +*/ + +probit drtren /// + demMaleFlag demAge demAgeSq /// + eduHighestC4MediumL1 eduHighestC4LowL1 eduHighestC4NaL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + demPensAgeFlag /// + labStatusC3NotEmployedL1 /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + healthDsblLongtermFlagL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${r1a_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("retirement") process("R1a") sheet("R1a") /// + title("Process R1a: Prob. retire, singles") /// + gofrow(3) goflabel("R1a - Retire, singles") /// + ifcond("${r1a_if_condition}") probit + + + +/***************** R1b: PROBABILITY OF RETIREMENT, PARTNERED ******************/ +display "${r1b_if_condition}" + /* +probit drtren i.Dgn Dag Dag_sq /// + li.Deh_c4_Medium li.Deh_c4_Low li.Deh_c4_Na /// + l.Dhe_pcs l.Dhe_mcs /// + i.Reached_Retirement_Age i.Reached_Retirement_Age_Les /// + li.Les_c3_NotEmployed li.Lessp_c3_NotEmployed /// + i.Reached_Retirement_Age_Sp /// + li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// + li.Dlltsd01 /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${r1b_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("retirement") process("R1b") sheet("R1b_orig") /// + title("Process R1b: Prob. retire, partnered") /// + gofrow(7) goflabel("R1a - Retire, partnered") /// + ifcond("${r1b_if_condition}") probit + */ +probit drtren /// + demMaleFlag demAge demAgeSq /// + eduHighestC4MediumL1 eduHighestC4LowL1 eduHighestC4NaL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + demPensAgeFlag demPensAgeFlag_NotEmployed /// + labStatusC3NotEmployedL1 labStatusPartnerC3NotEmployedL1 /// + demPensPartnerAgeFlag /// + yHhQuintilesMonthC5Q2L1 yHhQuintilesMonthC5Q3L1 yHhQuintilesMonthC5Q4L1 yHhQuintilesMonthC5Q5L1 /// + healthDsblLongtermFlagL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${r1b_if_condition} [pw=${weight}], vce(robust) + +process_regression, domain("retirement") process("R1b") sheet("R1b") /// + title("Process R1b: Prob. retire, partnered") /// + gofrow(7) goflabel("R1a - Retire, partnered") /// + ifcond("${r1b_if_condition}") probit + + +display "Retirement analysis complete!" + + +capture log close + diff --git a/input/InitialPopulations/compile/RegressionEstimates/08_reg_wages.do b/input/InitialPopulations/compile/RegressionEstimates/08_reg_wages.do new file mode 100644 index 000000000..be7222102 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/08_reg_wages.do @@ -0,0 +1,529 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: Wage regression +* OBJECT: Heckman regressions +* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven, +* Aleksandra Kolndrekaj, Ashley Burdett +* LAST UPDATE: 19 May 2026 (DP) +******************************************************************************** +******************************************************************************** +* NOTES: Strategy: +* 1) Heckman estimated on the sub-sample of individuals +* who are not observed working in previous period. +* => Wage equation does not controls for lagged wage +* 2) Heckman estimated on the sub-sample of individuals who +* are observed working in previous period. +* => Wage equation controls for lagged wage +* Specification of selection equation is the same in the +* two samples +* +* Import labour cost index to create a measure of wage growth. +* Make sure loaded into the external_data subfolder. +* +*******************************************************************************/ +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + +******************************************************************* +cap log close +log using "${dir_log}/reg_wages.log", replace +******************************************************************* + +* Load helper programs +do "${dir_do}/programs.do" + +******************************************************************************** +* Set Excel file +* Info sheet - first stage +putexcel set "$dir_results/reg_employment_selection", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "This file contains regression estimates from the first stage of the Heckman selection model used to estimates wages." +putexcel A2 = "Authors:", bold +putexcel B2 = "Patryk Bronka, Justin Van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 19 May 2026 (DP) " + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "W1fa-sel" +putexcel B6 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" +putexcel A7 = "W1ma-sel" +putexcel B7 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" +putexcel A8 = "W1fb-sel" +putexcel B8 = "First stage Heckman selection estimates for women that have an observed wage in the previous year" +putexcel A9 = "W1mb-sel" +putexcel B9 = "First stage Heckman selection estimates for men that have an observed wage in the previous year" + +putexcel A11 = "Notes:", bold +putexcel B11 = "Estimated on panel data unlike the labour supply estimates" +putexcel B12 = "Predicted wages used as input into union parameters and income process estimates" +putexcel B13 = "Two-step Heckman command is used which does not permit weights" + +* Info sheet - second stage +putexcel set "$dir_results/reg_wages", sheet("Info") modify //replace +putexcel A1 = "Description:" +putexcel B1 = "This file contains regression estimates used to calculate potential wages for males and females in the simulation." +putexcel A2 = "Authors:", bold +putexcel B2 = "Patryk Bronka, Justin Van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 19 May 2026 (DP) " + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold +putexcel A6 = "W1fa" +putexcel B6 = "Second stage Heckman selection estimates using women that do not have an observed wage in the previous year" +putexcel A7 = "W1ma" +putexcel B7 = "Second stage Heckman selection estimates using men that do not have an observed wage in the previous year" +putexcel A8 = "W1fb" +putexcel B8 = "Second stage Heckman selection estimates using women that have an observed wage in the previous year" +putexcel A9 = "W1mb" +putexcel B9 = "Second stage Heckman selection estimates using men that have an observed wage in the previous year" + +putexcel A11 = "Notes:", bold +putexcel B11 = "Estimation sample: UK_ipop.dta. Two-step Heckman command is used which does not permit weights" +putexcel B12 = "Conditions for processes are defined as globals in master.do" +putexcel B13 = "Predicted wages sre saved in dataset UK_ipop2.dta and used as input into union parameters and income process estimates" + +/********************************* PREPARE DATA *******************************/ + +* Prepare data on real growth of wages +import excel "$dir_external_data/time_series_factor.xlsx", /// + sheet("UK_wage_growth") firstrow clear + +rename Year stm +rename Value real_wage_growth + +replace stm = stm - 2000 + +sum real_wage_growth if stm == 15 +gen base = r(mean) +replace real_wage_growth = real_wage_growth / base +drop base + +save "$dir_external_data/growth_rates", replace + +* Load data +use "${estimation_sample}", clear + +* Adjust variables +do "${dir_do}/variable_update.do" + +* Merge in real growth index +merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen /// + keepusing(real_wage_growth) +gen realWageGrowth = real_wage_growth + +* Set data +xtset idperson swv +sort idperson swv + +* Hours work per week +gen hours = 0 +replace hours = lhw if ((lhw > 0) & (lhw < .)) +label var hours "Hours worked per week" + +* Hourly wage +gen wage_hour = obs_earnings_hourly + +* Winsorize +sum wage_hour, det +replace wage_hour = . if wage_hour <= 0 +replace wage_hour = . if wage_hour >= r(p99) + +gen lwage_hour = ln(wage_hour) +label var lwage_hour "Log gross hourly wage" + +gen lwage_hour_2 = lwage_hour^2 +label var lwage_hour_2 "Squared log gross hourly wage" + +gen labWageHrlyLog = lwage_hour +gen labWageHrlyLogL1 = l.lwage_hour + + +* Flag to identify observations to be included in the estimation sample +bys idperson (swv): gen obs_count_ttl = _N +bys idperson (swv): gen obs_count = _n + +gen in_sample = (obs_count_ttl > 1 & obs_count > 1) +replace in_sample = 0 if swv != swv[_n-1] +1 & idperson == idperson[_n-1] +replace in_sample = 0 if les_c3 == . | obs_earning == . +fre in_sample + +* Flag to distinguish the two samples (prev work and not) +capture drop previouslyWorking +gen previouslyWorking = (L1.lwage_hour != .) +replace previouslyWorking = . if in_sample == 0 +fre previouslyWorking + +* Prep storage +capture drop lwage_hour_hat wage_hour_hat esample +gen lwage_hour_hat = . +gen wage_hour_hat = . +gen esample = . +gen pred_hourly_wage = . + + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + +/******************** WAGES: WOMEN, NO PREV WAGE OBSERVED *********************/ +/* +global wage_eqn "lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" +global seln_eqn "i.L1les_c3 dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" + +local filter = "${wages_f_no_prev_if_condition}" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) + +process_heckman, /// + process("W1fa_orig") /// + ifcond("`filter'") /// + savefile("Female_NPW_sample") /// + graphsubtitle("Females, No previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_NWW.doc") /// + wordtitle("Heckman-corrected wage equation: women not in employment last year") /// + wordctitle("Not working women") /// + sheet2("W1fa_orig") sheet1("W1fa-sel_orig") /// + rmserow(2) +*/ + +#delimit ; +global wage_eqn +lwage_hour +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +labPt +realWageGrowth +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + + +#delimit ; +global seln_eqn +labStatusC3StudentL1 +labStatusC3NotEmployedL1 +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +demPartnerStatusPartnered +demDChild +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + +local filter = "${wages_f_no_prev_if_condition}" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) + +process_heckman, /// + process("W1fa") /// + ifcond("`filter'") /// + savefile("Female_NPW_sample") /// + graphsubtitle("Females, No previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_NWW.doc") /// + wordtitle("Heckman-corrected wage equation: women not in employment last year") /// + wordctitle("Not working women") /// + sheet2("W1fa") sheet1("W1fa-sel") /// + rmserow(2) + + + +/********************** WAGES: MEN, NO PREV WAGE OBSERVED *********************/ + +/* +global wage_eqn "lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" +global seln_eqn "i.L1les_c3 dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" + +local filter = "${wages_m_no_prev_if_condition}" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) + +process_heckman, /// + process("W1ma_orig") /// + ifcond("`filter'") /// + savefile("Male_NPW_sample") /// + graphsubtitle("Males, No previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_NWM.doc") /// + wordtitle("Heckman-corrected wage equation: men not in employment last year") /// + wordctitle("Not working men") /// + sheet2("W1ma_orig") sheet1("W1ma-sel_orig") /// + rmserow(3) +*/ + +* globals are the same as for women +#delimit ; +global wage_eqn +lwage_hour +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +labPt +realWageGrowth +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + + +#delimit ; +global seln_eqn +labStatusC3StudentL1 +labStatusC3NotEmployedL1 +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +demPartnerStatusPartnered +demDChild +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + +local filter = "${wages_m_no_prev_if_condition}" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) + +process_heckman, /// + process("W1ma") /// + ifcond("`filter'") /// + savefile("Male_NPW_sample") /// + graphsubtitle("Males, No previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_NWM.doc") /// + wordtitle("Heckman-corrected wage equation: men not in employment last year") /// + wordctitle("Not working men") /// + sheet2("W1ma") sheet1("W1ma-sel") /// + rmserow(3) + + +/********************** WAGES: WOMEN, PREV WAGE OBSERVED **********************/ +/* +global wage_eqn "lwage_hour L1.lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" +global seln_eqn "dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" + +local filter = "${wages_f_prev_if_condition}" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) + +process_heckman, /// + process("W1fb_orig") /// + ifcond("`filter'") /// + savefile("Female_PW_sample") /// + graphsubtitle("Females, Previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_WW.doc") /// + wordtitle("Heckman-corrected wage equation: women in employment last year") /// + wordctitle("Working women") /// + sheet2("W1fb_orig") sheet1("W1fb-sel_orig") /// + rmserow(4) +*/ + +#delimit ; +global wage_eqn2 +lwage_hour +labWageHrlyLogL1 +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +labPt +realWageGrowth +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + + +#delimit ; +global seln_eqn2 +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +demPartnerStatusPartnered +demDChild +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + +local filter = "${wages_f_prev_if_condition}" + +heckman $wage_eqn2 if `filter', select($seln_eqn2) twostep mills(lambda) + +process_heckman, /// + process("W1fb") /// + ifcond("`filter'") /// + savefile("Female_PW_sample") /// + graphsubtitle("Females, Previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_WW.doc") /// + wordtitle("Heckman-corrected wage equation: women in employment last year") /// + wordctitle("Working women") /// + sheet2("W1fb") sheet1("W1fb-sel") /// + rmserow(4) + + +/********************** WAGES: MEN, PREV WAGE OBSERVED ************************/ +/* +global wage_eqn "lwage_hour L1.lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" +global seln_eqn "dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" + +local filter = "${wages_m_prev_if_condition}" + +heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) + +process_heckman, /// + process("W1mb_orig") /// + ifcond("`filter'") /// + savefile("Male_PW_sample") /// + graphsubtitle("Male, Previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_WM.doc") /// + wordtitle("Heckman-corrected wage equation: men in employment last year") /// + wordctitle("Working men") /// + sheet2("W1mb_orig") sheet1("W1mb-sel_orig") /// + rmserow(5) +*/ + +* globals are the same as for women +#delimit ; +global wage_eqn2 +lwage_hour +labWageHrlyLogL1 +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +labPt +realWageGrowth +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + + +#delimit ; +global seln_eqn2 +demAge +demAgeSq +eduHighestC4Medium +eduHighestC4Low +eduHighestC4Medium_demAge +eduHighestC4Low_demAge +eduHighestParentC3Medium +eduHighestParentC3Low +demPartnerStatusPartnered +demDChild +healthDsblLongtermFlag +healthPhysicalPcsL1 +healthMentalMcsL1 +$regions +demYear2020 +demYear2021 +$ethnicity +; +#delimit cr + +local filter = "${wages_m_prev_if_condition}" + +heckman $wage_eqn2 if `filter', select($seln_eqn2) twostep mills(lambda) + +process_heckman, /// + process("W1mb") /// + ifcond("`filter'") /// + savefile("Male_PW_sample") /// + graphsubtitle("Male, Previously observed wage") /// + wordfile("$dir_raw_results/wages/Output_WM.doc") /// + wordtitle("Heckman-corrected wage equation: men in employment last year") /// + wordctitle("Working men") /// + sheet2("W1mb") sheet1("W1mb-sel") /// + rmserow(5) + + +* Save predicted wages to dataset + +* Use predicted wage for all; fall back to observed wage for those with no +* prediction (first observation for an individual) +replace pred_hourly_wage = exp(lwage_hour) if missing(pred_hourly_wage) + +gen labWageHrly = pred_hourly_wage + + +save "${estimation_sample2}", replace + +display "Wage analysis complete!" + +capture log close + diff --git a/input/InitialPopulations/compile/RegressionEstimates/09_reg_income.do b/input/InitialPopulations/compile/RegressionEstimates/09_reg_income.do new file mode 100644 index 000000000..800391305 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/09_reg_income.do @@ -0,0 +1,375 @@ +/******************************************************************************* +* PROJECT: SimPaths UK +* SECTION: Non-employment/non-benefit income +* OBJECT: Final Regresion Models +* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven, Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK + +* NOTES: Models for split income variable +* - Capital returns +* - Private pension income +* +* The income do file must be run after +* reg_wages.do because it uses predicted wages. +******************************************************************************/ + +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_income.log", replace + + +/********************************* SET EXCEL FILE *****************************/ + +putexcel set "$dir_results/reg_income", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "This file contains regression estimates used by processes I1 (capital income), I2 (private pension, retired last year), I3 (private pension income, not retired last year) " +putexcel A2 = "Authors:" +putexcel B2 = "Patryk Bronka, Justin Van de Ven, Daria Popova, Aleksandra Kolndrekaj, Ashley Burdett" +putexcel A3 = "Last edit: 15 April 2026 (DP) " + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold + +putexcel A7 = "Process I1a" +putexcel B7 = "Prob. receive capital income " + +putexcel A8 = "Process I1b" +putexcel B8 = "Capital income amount" + +putexcel A9 = "Process I2b" +putexcel B9 = "Private pension income amount" + +putexcel A10 = "Process I3a" +putexcel B10 = "Prob. receive private pension income" + +putexcel A11 = "Process I3b" +putexcel B11 = "Private pension income amount" + + +putexcel A17 = "Notes:", bold +putexcel B17 = "Estimation sample: UK_ipop2.dta with grossing up weight dwt" +putexcel B18 = "Conditions for processes are defined as globals in master.do" +putexcel B19 = "Combined former capital income processes I3a and I3b and renamed as I1a and I1b" +putexcel B20 = "Income variables are IHS transformed." + +putexcel set "$dir_results/reg_income", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + +/********************************* PREPARE DATA *******************************/ + +* Prepare data on real growth of wages +/* +import excel "${dir_external_data}/time_series_factor.xlsx", /// + sheet("UK_gdp") firstrow clear // Import real growth index + +rename Year stm +rename Value growth +gen base_val = growth if stm == 2015 +sum base_val +replace base_val = r(mean) +replace growth= growth/base_val +drop base_val +replace stm = stm - 2000 + +save "$dir_external_data\growth_rates", replace +*/ + +* Load data +use "${estimation_sample2}", clear //panel with predicted wages + +/*variable update +cap drop Ypnoab +gen Ypnoab= ypnoab +compare Ypnoab ypnoab + +cap drop Ypncp +gen Ypncp = ypncp +compare Ypncp ypncp + +gen Dhhtp_c4_CoupleNoChildren = (dhhtp_c4 == 1) if !missing(dhhtp_c4) +gen Dhhtp_c4_CoupleChildren = (dhhtp_c4 == 2) if !missing(dhhtp_c4) +gen Dhhtp_c4_SingleNoChildren = (dhhtp_c4 == 3) if !missing(dhhtp_c4) +gen Dhhtp_c4_SingleChildren = (dhhtp_c4 == 4) if !missing(dhhtp_c4) +*/ + +* Merge in growth rates +merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen /// + keepusing(real_wage_growth) + +* Set data +xtset idperson swv +sort idperson swv + + +*rename pedicted wage +capture confirm variable labWageHrly +if _rc == 0 { + gen labWageHrlyL1 = l.labWageHrly + gen Hourly_wage = labWageHrly +} + + +cap drop in_sample +cap drop p + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + +/*************** I1a: PROBABILITY OF RECEIVEING CAPITAL INCOME ****************/ + +display "${i1a_if_condition}" +/* +logit receives_ypncp /// + i.Ded i.Dgn c.Dag c.Dag_sq /// + l.Dhe_pcs l.Dhe_mcs /// + lc.Ypncp lc.Yplgrs_dv /// + l2c.Yplgrs_dv l2c.Ypncp /// + Ded_Dgn /*Ded_Dag Ded_Dag_sq*/ /// + l.Ded_Dhe_pcs l.Ded_Dhe_mcs /// + l.Ded_Ypncp l.Ded_Yplgrs_dv l2.Ded_Yplgrs_dv l2.Ded_Ypncp /// + i.Deh_c4_Low i.Deh_c4_Medium i.Deh_c4_High /// + li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + $regions Year_transformed Y2020 Y2021 $ethnicity if /// + ${i1a_if_condition} [pw=${weight}], /// + vce(cluster idperson) base + +process_regression, domain("income") process("I1a") sheet("I1a_orig") /// + title("Process I1a: Prob. recieve capital income") /// + gofrow(3) goflabel("I1a - Receive capital income ") /// + ifcond("${i1a_if_condition}") probit + */ + +logit receives_ypncp /// + eduSampleFlag demMaleFlag demAge demAgeSq /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + yCapitalPersMonthL1 yEmpPersGrossMonthL1 /// + yEmpPersGrossMonthL2 yCapitalPersMonthL2 /// + eduSampleFlag_Male /// + eduSampleFlag_PcsL1 eduSampleFlag_McsL1 /// + eduSampleFlag_yCapitalPersL1 eduSampleFlag_yEmpPersGrossL1 eduSampleFlag_yEmpPersGrossL2 eduSampleFlag_yCapitalPersL2 /// + eduHighestC4Low eduHighestC4Medium eduHighestC4High /// + labStatusC4StudentL1 labStatusC4NotEmployedL1 labStatusC4RetiredL1 /// + demCompHhC4CoupleChL1 demCompHhC4SingleNoChL1 demCompHhC4SingleChL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${i1a_if_condition} [pw=${weight}], vce(cluster idperson) base + +process_regression, domain("income") process("I1a") sheet("I1a") /// + title("Process I1a: Prob. recieve capital income") /// + gofrow(3) goflabel("I1a - Receive capital income ") /// + ifcond("${i1a_if_condition}") probit + + +/********************** I1b: AMOUNT OF CAPITAL INCOME *************************/ + +* DV: ypncp = Inverse hyperbolic sine (IHS) of gross capital income +display "${i1b_if_condition}" + +/* +reg ypncp i.Dgn c.Dag c.Dag_sq /// + i.Deh_c4_Low i.Deh_c4_Medium i.Deh_c4_High /// + li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + lc.Ypncp l2c.Ypncp lc.Yplgrs_dv l2c.Yplgrs_dv /// + Ded_Dgn /*Ded_Dag Ded_Dag_sq*/ /// + l.Ded_Ypncp l.Ded_Yplgrs_dv l2.Ded_Yplgrs_dv l2.Ded_Ypncp /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${i1b_if_condition} [pw=${weight}], vce(cluster idperson) + +process_regression, domain("income") process("I1b") sheet("I1b_orig") /// + title("Process I1b: Amount of capital income") /// + gofrow(7) goflabel("I1b - Amount of capital income") /// + ifcond("${i1b_if_condition}") +*/ + +reg ypncp /// + demMaleFlag demAge demAgeSq /// + eduHighestC4Low eduHighestC4Medium eduHighestC4High /// + labStatusC4StudentL1 labStatusC4NotEmployedL1 labStatusC4RetiredL1 /// + demCompHhC4CoupleChL1 demCompHhC4SingleNoChL1 demCompHhC4SingleChL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + yCapitalPersMonthL1 yCapitalPersMonthL2 /// + yEmpPersGrossMonthL1 yEmpPersGrossMonthL2 /// + eduSampleFlag_Male /// + eduSampleFlag_yCapitalPersL1 eduSampleFlag_yEmpPersGrossL1 eduSampleFlag_yEmpPersGrossL2 eduSampleFlag_yCapitalPersL2 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${i1b_if_condition} [pw=${weight}], vce(cluster idperson) + +process_regression, domain("income") process("I1b") sheet("I1b") /// + title("Process I1b: Amount of capital income") /// + gofrow(7) goflabel("I1b - Amount of capital income") /// + ifcond("${i1b_if_condition}") + + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals , residuals +gen squared_residuals = residuals^2 + +preserve +keep if receives_ypncp == 1 +sum squared_residuals [w = dwt] +di "RMSE for Amount of capital income" sqrt(r(mean)) +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A6 = ("I1b") B6 = (sqrt(r(mean))) +restore + + + +/****************** I2b: AMOUNT OF PENSION INCOME, RETIRED L1 *****************/ + +*Sample: Retired individuals who were retired in the previous year. +*ypnoab = Inverse hyperbolic sine transformation of Gross personal private +* pension income + +display "${i2b_if_condition}" +/* +reg ypnoab i.Dgn c.Dag /// + i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + lc.Ypnoab l2c.Ypnoab /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${i2b_if_condition} [pw=${weight}], vce(cluster idperson) + +process_regression, domain("income") process("I2b") sheet("I2b_orig") /// + title("Process I2b: Amount of private pension income, retired L1") /// + gofrow(11) goflabel("I2b - Amount of private pension income") /// + ifcond("${i2b_if_condition}") +*/ + +reg ypnoab /// + demMaleFlag demAge /// + eduHighestC4High eduHighestC4Medium eduHighestC4Na /// + demCompHhC4CoupleChL1 demCompHhC4SingleNoChL1 demCompHhC4SingleChL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + yPensPersGrossMonthL1 yPensPersGrossMonthL2 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${i2b_if_condition} [pw=${weight}], vce(cluster idperson) + +process_regression, domain("income") process("I2b") sheet("I2b") /// + title("Process I2b: Amount of private pension income, retired L1") /// + gofrow(11) goflabel("I2b - Amount of private pension income") /// + ifcond("${i2b_if_condition}") + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals , residuals +gen squared_residuals = residuals^2 + +preserve +keep if receives_ypnoab == 1 +sum squared_residuals [w = dwt] +di "RMSE for Amount of private pension income" sqrt(r(mean)) +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A7 = ("I2b") B7 = (sqrt(r(mean))) +restore + + + +/**** I3a: PROBABILITY OF RECEIVING PRIVATE PENSION INCOME, NOT RETIRED L1 ****/ + +*Sample: Retired individuals who were not retired in the previous year. + +display "${i3a_if_condition}" +/* +logit receives_ypnoab /// + i.Dgn i.Reached_Retirement_Age /// + i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// + li.Les_c4_NotEmployed /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + l.Hourly_wage /// + $regions Year_transformed Y2020 Y2021 $ethnicity if /// + ${i3a_if_condition} [pw=${weight}], vce(cluster idperson) base + +process_regression, domain("income") process("I3a") sheet("I3a_orig") /// + title("Process I3a: Amount of private pension income, not retired L1") /// + gofrow(15) goflabel("I3a - Receive private pension income ") /// + ifcond("${i3a_if_condition}") probit +*/ + +logit receives_ypnoab /// + demMaleFlag demPensAgeFlag /// + eduHighestC4High eduHighestC4Medium eduHighestC4Na /// + labStatusC4NotEmployedL1 /// + demCompHhC4CoupleChL1 demCompHhC4SingleNoChL1 demCompHhC4SingleChL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + labWageHrlyL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${i3a_if_condition} [pw=${weight}], vce(cluster idperson) base + +process_regression, domain("income") process("I3a") sheet("I3a") /// + title("Process I3a: Amount of private pension income, not retired L1") /// + gofrow(15) goflabel("I3a - Receive private pension income ") /// + ifcond("${i3a_if_condition}") probit + + +/******************* I3b: AMOUNT PRIVATE PENSION, NOT RETIRED L1 **************/ + +*Sample: Retired individuals who were not retired in the previous year. +*ypnoab = Inverse hyperbolic sine transformation of Gross personal private +*pension income + +display "${i3b_if_condition}" +/* +reg ypnoab i.Dgn c.Dag /// + i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// + li.Les_c4_NotEmployed /// + li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// + l.Dhe_pcs l.Dhe_mcs /// + l.Hourly_wage /// + $regions Year_transformed Y2020 Y2021 $ethnicity /// + if ${i3b_if_condition} [pw=${weight}], vce(cluster idperson) + +process_regression, domain("income") process("I3b") sheet("I3b_orig") /// + title("Process I3b: Amount of private pension income, retired L1") /// + gofrow(19) goflabel("I3b - Amount of private pension income") /// + ifcond("${i3b_if_condition}") + */ + +reg ypnoab /// + demMaleFlag demAge /// + eduHighestC4High eduHighestC4Medium eduHighestC4Na /// + labStatusC4NotEmployedL1 /// + demCompHhC4CoupleChL1 demCompHhC4SingleNoChL1 demCompHhC4SingleChL1 /// + healthPhysicalPcsL1 healthMentalMcsL1 /// + labWageHrlyL1 /// + $regions demYearTransformed demYear2020 demYear2021 $ethnicity /// + if ${i3b_if_condition} [pw=${weight}], vce(cluster idperson) + +process_regression, domain("income") process("I3b") sheet("I3b") /// + title("Process I3b: Amount of private pension income, retired L1") /// + gofrow(19) goflabel("I3b - Amount of private pension income") /// + ifcond("${i3b_if_condition}") + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals , residuals +gen squared_residuals = residuals^2 + +preserve +keep if receives_ypnoab == 1 +sum squared_residuals [w = dwt] +di "RMSE for Amount of private pension income" sqrt(r(mean)) +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A8 = ("I3b") B8 = (sqrt(r(mean))) +restore + + +display "Income analysis complete!" + + +capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/10_reg_socialcare.do b/input/InitialPopulations/compile/RegressionEstimates/10_reg_socialcare.do new file mode 100644 index 000000000..1adec5f89 --- /dev/null +++ b/input/InitialPopulations/compile/RegressionEstimates/10_reg_socialcare.do @@ -0,0 +1,536 @@ +******************************************************************************** +* PROJECT: SimPaths UK +* SECTION: SOCIAL CARE RECEIPT +* AUTHORS: Justin van de Ven, Matteo Richiardi, Daria Popova, Ashley Burdett +* LAST UPDATE: 15 April 2026 (DP) +* COUNTRY: UK +* +* NOTES: +* PROGRAM TO EVALUATE SOCIAL CARE RECEIPT FROM UKHLS DATA +* ANALYSIS BASED ON THE SOCIAL CARE MODULE OF UKHLS +* First version: Justin van de Ven, 28 Aug 2023 +* Refactored version: Matteo Richiardi, 16 Feb 2026 +* Integration into the pipeline: Daria Popova 18 Feb 2026 DP +* +*******************************************************************************/ + +/* ANALYTICAL STRATEGY +We analyse/simulate the following variables: +- NeedCare +- ReceiveCare +- CareMarket: Formal, Informal, Mixed +- HrsReceivedFormalIHS +- HrsReceivedInformalIHS +- ProvideCare +- HrsProvidedInformalIHS +(IHS stands for Inverse Hyperbolic Sine transformation) + +The most complicated case is for Partnered, as an issue of consistency arises (care between partners is most common): + +=========================================== + Partner B: Receiving informal care? +___________________________________________ +Partner A: | No Yes +providing | No | (1) (2) +informal care | Yes | (3) (4) +=========================================== + +In the analysis we do not distinguish whom care is received from, and to whom care is provided. +However, the cases above imply: +(1) No hrs received, no hrs provided +(2) All hrs received are from non-partner +(3) All hrs provided are to non-partner_socare_hrs +(4) At least some of the hrs received/provided are from/to partner + +========================================================================================== +RMK: We first analyse care receipt, and then care provision. This order must be preserved. +========================================================================================== +*/ + +* CRITICAL: Clear all FIRST +clear all +set more off +set mem 200m +set type double +//set maxvar 120000 +set maxvar 30000 + + +/********************************* SET LOG FILE *******************************/ +cap log close +log using "${dir_log}/reg_socialcare.log", replace + + +/********************************* SET EXCEL FILE *****************************/ + +putexcel set "$dir_results/reg_socialcare", sheet("Info") modify //replace +putexcel A1 = "Description:", bold +putexcel B1 = "Model parameters for social care module" +putexcel A2 = "Authors:" +putexcel B2 = "Justin van de Ven, Ashley Burdett, Matteo Richiardi, Daria Popova" +putexcel A3 = "Last edit:" +putexcel B3 = "15 April 2026 (DP)" + +putexcel A5 = "Process:", bold +putexcel B5 = "Description:", bold + +putexcel A6 = "S2a" B6 = "Prob. need care" +putexcel A7 = "S2b" B7 = "Prob. receive care" +putexcel A8 = "S2c" B8 = "Prob. receive Formal/informal care" +putexcel A9 = "S2d" B9 = "Informal care hours received" +putexcel A10 = "S2e" B10 = "Hours of formal care received" + +putexcel A11 = "S3a" B11 = "Prob. provide care, Singles" +putexcel A12 = "S3b" B12 = "Prob. provide care, Partnered" +putexcel A13 = "S3c" B13 = "Hours of informal care provided, Singles" +putexcel A14 = "S3d" B14 = "Hours of informal care provided, Partnered" + +putexcel A20 = "Notes:", bold +putexcel B20 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" +putexcel B21 = "Conditions for processes are defined as globals in master.do" + +putexcel set "$dir_results/reg_socialcare", sheet("Gof") modify +putexcel A1 = "Goodness of fit", bold + + +/********************************* PREPARE DATA *******************************/ + +use "${estimation_sample}", clear + +* Time series structure +gsort idperson stm +xtset idperson stm + +* Adjust variables +do "${dir_do}/variable_update.do" + + +/********************************** ESTIMATION ********************************/ + +* Run Stata programs to produce Excel file +do "${dir_do}/programs.do" + +* Stats for if conditions +/* +table stm, stat (count NeedCare) stat (mean NeedCare) // [2015, 2022] +table stm, stat (count ReceiveCare) stat (mean ReceiveCare) // [2016, 2021] but with significant decrease in 2020 and 2021 +table stm, stat (count receive_formal_care) stat (mean receive_formal_care) // [2016, 2021] but with significant decrease in 2020 and 2021 +table stm, stat (count receive_informal_care) stat (mean receive_informal_care) // [2016, 2021] but with significant decrease in 2020 and 2021 +table stm, stat (count provide_informal_care) stat (mean provide_informal_care) // [2015, 2024] also 2014, but fewer hours +*/ +/* +table stm, c(count NeedCare mean NeedCare) +table stm, c(count ReceiveCare mean ReceiveCare) +table stm, c(count receive_formal_care mean receive_formal_care) +table stm, c(count receive_informal_care mean receive_informal_care) +table stm, c(count provide_informal_care mean provide_informal_care) +*/ + +/* Age variables (for experimenting -> copy and paste in the specification) + Dag Dagsq /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// +*/ + + +/************************ Probit need care (S2a) ******************************/ +display "${s2a_if_condition}" +/* +probit NeedCare /// + NeedCare_L1 /// + Dgn /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2a_if_condition} [pw=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2a") sheet("S2a_orig") /// + title("Process S2a: Prob. need care") /// + gofrow(3) goflabel("S2a - Need care") /// + ifcond("${s2a_if_condition}") probit +*/ + + +probit careNeedFlag /// + careNeedFlagL1 /// + demMaleFlag /// + demAge67to68 demAge69to70 demAge71to72 demAge73to74 demAge75to76 /// + demAge77to78 demAge79to80 demAge81to82 demAge83to84 demAge85plus /// + healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood healthSelfRatedExcellent /// + demPartnerStatusPartnered /// + eduHighestC4Medium eduHighestC4Low /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s2a_if_condition} [pw=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2a") sheet("S2a") /// + title("Process S2a: Prob. need care") /// + gofrow(3) goflabel("S2a - Need care") /// + ifcond("${s2a_if_condition}") probit + + +/************************ Probit receive care (S2b) ***************************/ +display "${s2b_if_condition}" +/* +probit ReceiveCare /// + ReceiveCare_L1 /// + Dgn /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2b_if_condition} [pw=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2b") sheet("S2b_orig") /// + title("Process S2b: Prob. receive care") /// + gofrow(7) goflabel("S2b - Receive care") /// + ifcond("${s2b_if_condition}") probit + */ + +probit careReceivedFlag /// + careReceivedFlagL1 /// + demMaleFlag /// + demAge67to68 demAge69to70 demAge71to72 demAge73to74 demAge75to76 /// + demAge77to78 demAge79to80 demAge81to82 demAge83to84 demAge85plus /// + healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood healthSelfRatedExcellent /// + demPartnerStatusPartnered /// + eduHighestC4Medium eduHighestC4Low /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s2b_if_condition} [pw=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2b") sheet("S2b") /// + title("Process S2b: Prob. receive care") /// + gofrow(7) goflabel("S2b - Receive care") /// + ifcond("${s2b_if_condition}") probit + + +/************************ Mlogit formal/informal (S2c) ************************/ + +display "${s2c_if_condition}" +/* + Informal is base outcome + Mixed is 1st outcome + Formal is 2nd outcomes +*/ +/* +mlogit CareMarket CareMarketFormal_L1 CareMarketInformal_L1 CareMarketMixed_L1 Dgn /// + Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// + Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2c_if_condition} [pw=${weight}], vce(r) base(2) + +process_gologit, domain("socialcare") process("S2c") sheet("S2c_orig") /// + title("Process S2c: Formal vs Informal") /// + gofrow(11) goflabel("S2c - Formal vs Informal") /// + outcomes(3) /// + ifcond("${s2c_if_condition}") +*/ + +mlogit CareMarket /// + careMarketFormalL1 careMarketInformalL1 careMarketMixedL1 /// + demMaleFlag /// + demAge67to68 demAge69to70 demAge71to72 demAge73to74 demAge75to76 /// + demAge77to78 demAge79to80 demAge81to82 demAge83to84 demAge85plus /// + healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood healthSelfRatedExcellent /// + demPartnerStatusPartnered /// + eduHighestC4Medium eduHighestC4Low /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s2c_if_condition} [pw=${weight}], vce(r) base(2) + +process_gologit, domain("socialcare") process("S2c") sheet("S2c") /// + title("Process S2c: Formal vs Informal") /// + gofrow(11) goflabel("S2c - Formal vs Informal") /// + outcomes(3) /// + ifcond("${s2c_if_condition}") + + +/******************** OLS informal care hours received (S2d) ******************/ +display "${s2d_if_condition}" +/* +reg HrsReceivedInformalIHS HrsReceivedInformalIHS_L1 CareMarketMixed Dgn /// + Age AgeSquared /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} /*${ethnicity} Ethn_White*/ /// + if ${s2d_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2d") sheet("S2d_orig") /// + title("Process S2d: Informal care hours received") /// + gofrow(15) goflabel("S2d - Hours of informal care received") /// + ifcond("${s2d_if_condition}") +*/ + +reg careHrsInformalIhs /// + careHrsInformalIhsL1 /// + careMarketMixed /// + demMaleFlag /// + demAge demAgeSq /// + healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood healthSelfRatedExcellent /// + demPartnerStatusPartnered /// + eduHighestC4Medium eduHighestC4Low /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions /*$ethnicity*/ /// + if ${s2d_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2d") sheet("S2d") /// + title("Process S2d: Informal care hours received") /// + gofrow(15) goflabel("S2d - Hours of informal care received") /// + ifcond("${s2d_if_condition}") + + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals, residuals +gen squared_residuals = residuals^2 + +preserve +keep if ${s2d_if_condition} + +sum squared_residuals [w=${weight}], meanonly +scalar rmse = sqrt(r(mean)) +di "RMSE for Informal care hours received: " rmse + +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A9 = ("S2d") B9 = (rmse) + +restore + +/********************* OLS formal care hours received (S2e) *******************/ +display "${s2e_if_condition}" +/* +reg HrsReceivedFormalIHS HrsReceivedFormalIHS_L1 CareMarketMixed Dgn /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Partnered /// + Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s2e_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2e") sheet("S2e_orig") /// + title("Process S2e: Formal care hours received") /// + gofrow(19) goflabel("S2e - Hours of formal care received") /// + ifcond("${s2e_if_condition}") + */ + +reg careHrsFormalIhs /// + careHrsFormalIhsL1 /// + careMarketMixed /// + demMaleFlag /// + healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood healthSelfRatedExcellent /// + demPartnerStatusPartnered /// + eduHighestC4Medium eduHighestC4Low /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s2e_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S2e") sheet("S2e") /// + title("Process S2e: Formal care hours received") /// + gofrow(19) goflabel("S2e - Hours of formal care received") /// + ifcond("${s2e_if_condition}") + +* Calculate RMSE +cap drop residuals squared_residuals +predict residuals, residuals +gen squared_residuals = residuals^2 + +preserve +keep if ${s2e_if_condition} + +sum squared_residuals [w=${weight}], meanonly +scalar rmse = sqrt(r(mean)) +di "RMSE for Formal care hours received: " rmse + +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A10 = ("S2e") B10 = (rmse) + +restore + + +/***************** Probit provide care, Singles (S3a) *************************/ + +display "${s3a_if_condition}" +/* +probit ProvideCare ProvideCare_L1 NeedCare ReceiveCare Dgn /// + Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// + Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Deh_c4_High Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3a_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S3a") sheet("S3a_orig") /// + title("Process S3a: Prob. provide care, Singles") /// + gofrow(23) goflabel("S3a - Provide care, Singles") /// + ifcond("${s3a_if_condition}") probit +*/ + +probit careProvidedFlag /// + careProvidedFlagL1 /// + careNeedFlag careReceivedFlag /// + demMaleFlag /// + demAge30to34 demAge35to39 demAge40to44 demAge45to49 demAge50to54 /// + demAge55to59 demAge60to64 demAge65to69 demAge70to74 demAge75to79 demAge80to84 demAge85plus /// + healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood healthSelfRatedExcellent /// + eduHighestC4High eduHighestC4Medium eduHighestC4Low /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s3a_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S3a") sheet("S3a") /// + title("Process S3a: Prob. provide care, Singles") /// + gofrow(23) goflabel("S3a - Provide care, Singles") /// + ifcond("${s3a_if_condition}") probit + + + +/***************** Probit provide care, Partnered (S3b) ***********************/ +/* +tab CareMarket ProvideCare if ${s3b_if_condition} +tab deh_c4 ProvideCare if ${s3b_if_condition} +deh_c4 =0 is excluded because there's just 1 obs providing care and probit would not converge +*/ +display "${s3b_if_condition}" +/* +capture drop in_sample p +probit ProvideCare ProvideCare_L1 NeedCare ReceiveCare Dgn /// + ReceiveCarePartner CareMarketFormalPartner CareMarketInformalPartner CareMarketMixedPartner /// + Dhe_Poor Dhe_Fair Dhe_Good Dhe_VeryGood /// + Dhesp_Fair Dhesp_Good Dhesp_VeryGood Dhesp_Excellent /// + Deh_c4_High Deh_c4_Medium /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3b_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S3b") sheet("S3b_orig") /// + title("Process S3b: Prob. provide care, Partnered") /// + gofrow(27) goflabel("S3b - Provide care, Partnered") /// + ifcond("${s3b_if_condition}") probit +*/ + +//capture drop in_sample p +probit careProvidedFlag /// + careProvidedFlagL1 /// + careNeedFlag careReceivedFlag /// + demMaleFlag /// + careReceivedPartnerFlag careMarketFormalPartner careMarketInformalPartner careMarketMixedPartner /// + healthSelfRatedPoor healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood /// + healthPartnerSelfRatedFair healthPartnerSelfRatedGood healthPartnerSelfRatedVeryGood healthPartnerSelfRatedExcellent /// + eduHighestC4High eduHighestC4Medium /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s3b_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S3b") sheet("S3b") /// + title("Process S3b: Prob. provide care, Partnered") /// + gofrow(27) goflabel("S3b - Provide care, Partnered") /// + ifcond("${s3b_if_condition}") probit + + + +/************** Ordered logit care hours provided, Singles (S3c) **************/ +display "${s3c_if_condition}" +/* +reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// + Age20to24 Age25to29 Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// + Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// + Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// + Deh_c4_High Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3c_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S3c") sheet("S3c_orig") /// + title("Process S3c: Informal care hours provided, Singles") /// + gofrow(31) goflabel("S3c - Hours of informal care provided, Singles") /// + ifcond("${s3c_if_condition}") + */ + +* Ordered outcome for weekly informal-care hours provided. The category values +* are representative hours for the seven bands: 2, 7, 14.5, 27, 42, 74.5, 120. +cap drop careHrsProvidedWeekCategory +gen byte careHrsProvidedWeekCategory = . +replace careHrsProvidedWeekCategory = 1 if careHoursProvidedWeekly > 0 & careHoursProvidedWeekly <= 4 +replace careHrsProvidedWeekCategory = 2 if careHoursProvidedWeekly > 4 & careHoursProvidedWeekly <= 9 +replace careHrsProvidedWeekCategory = 3 if careHoursProvidedWeekly > 9 & careHoursProvidedWeekly <= 19 +replace careHrsProvidedWeekCategory = 4 if careHoursProvidedWeekly > 19 & careHoursProvidedWeekly <= 34 +replace careHrsProvidedWeekCategory = 5 if careHoursProvidedWeekly > 34 & careHoursProvidedWeekly <= 49 +replace careHrsProvidedWeekCategory = 6 if careHoursProvidedWeekly > 49 & careHoursProvidedWeekly <= 99 +replace careHrsProvidedWeekCategory = 7 if careHoursProvidedWeekly >= 100 & careHoursProvidedWeekly < . +label define careHrsProvidedWeekCategoryLabel 1 "2" 2 "7" 3 "14.5" 4 "27" 5 "42" 6 "74.5" 7 "120", replace +label values careHrsProvidedWeekCategory careHrsProvidedWeekCategoryLabel + +ologit careHrsProvidedWeekCategory /// + careHrsProvidedWeekIhsL1 /// + demMaleFlag /// + demAge20to24 demAge25to29 demAge30to34 demAge35to39 demAge40to44 demAge45to49 demAge50to54 /// + demAge55to59 demAge60to64 demAge65to69 demAge70to74 demAge75to79 demAge80to84 demAge85plus /// + healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood healthSelfRatedExcellent /// + eduHighestC4High eduHighestC4Medium eduHighestC4Low /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s3c_if_condition} [pweight=${weight}], vce(robust) + +process_ologit, domain("socialcare") process("S3c") sheet("S3c") /// + title("Process S3c: Informal care hours provided, Singles") /// + gofrow(31) goflabel("S3c - Hours of informal care provided, Singles") /// + ifcond("${s3c_if_condition}") + + * RMSE is not defined for the ordered-logit outcome. + + +/************* Ordered logit care hours provided, Partnered (S3d) *************/ +display "${s3d_if_condition}" +/* +reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// + Age20to24 Age25to29 Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// + Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// + ReceiveCarePartner CareMarketFormalPartner CareMarketInformalPartner CareMarketMixedPartner /// + Dhe_Poor Dhe_Fair Dhe_Good Dhe_VeryGood /// + Dhesp_Fair Dhesp_Good Dhesp_VeryGood Dhesp_Excellent /// + Deh_c4_High Deh_c4_Medium Deh_c4_Low /// + HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// + Y2020 Y2021 ${regions} ${ethnicity} /// + if ${s3d_if_condition} [pweight=${weight}], vce(r) + +process_regression, domain("socialcare") process("S3d") sheet("S3d_orig") /// + title("Process S3d: Informal care hours provided, Partnered") /// + gofrow(35) goflabel("S3d - Hours of informal care provided, Partnered") /// + ifcond("${s3d_if_condition}") + */ + +ologit careHrsProvidedWeekCategory /// + careHrsProvidedWeekIhsL1 /// + demMaleFlag /// + demAge20to24 demAge25to29 demAge30to34 demAge35to39 demAge40to44 demAge45to49 demAge50to54 /// + demAge55to59 demAge60to64 demAge65to69 demAge70to74 demAge75to79 demAge80to84 demAge85plus /// + careReceivedPartnerFlag careMarketFormalPartner careMarketInformalPartner careMarketMixedPartner /// + healthSelfRatedPoor healthSelfRatedFair healthSelfRatedGood healthSelfRatedVeryGood /// + healthPartnerSelfRatedFair healthPartnerSelfRatedGood healthPartnerSelfRatedVeryGood healthPartnerSelfRatedExcellent /// + eduHighestC4High eduHighestC4Medium /// + yHhQuintilesMonthC5Q2 yHhQuintilesMonthC5Q3 yHhQuintilesMonthC5Q4 yHhQuintilesMonthC5Q5 /// + demYear2020 demYear2021 $regions $ethnicity /// + if ${s3d_if_condition} [pweight=${weight}], vce(robust) + +process_ologit, domain("socialcare") process("S3d") sheet("S3d") /// + title("Process S3d: Informal care hours provided, Partnered") /// + gofrow(35) goflabel("S3d - Hours of informal care provided, Partnered") /// + ifcond("${s3d_if_condition}") + + * RMSE is not defined for the ordered-logit outcome. + + +display "Social care analysis complete!" diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_financial_distress.do b/input/InitialPopulations/compile/RegressionEstimates/11_reg_financial_distress.do similarity index 97% rename from input/InitialPopulations/compile/RegressionEstimates/reg_financial_distress.do rename to input/InitialPopulations/compile/RegressionEstimates/11_reg_financial_distress.do index e17bc4469..d21395387 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_financial_distress.do +++ b/input/InitialPopulations/compile/RegressionEstimates/11_reg_financial_distress.do @@ -1,234 +1,234 @@ -******************************************************************************** -* PROJECT: UC and mental health -* SECTION: Health and wellbeing -* OBJECT: Financial distress -* AUTHORS: Andy Baxter, Erik Igelström -* LAST UPDATE: 17 Feb 2026 -* COUNTRY: UK -* -* NOTES: -******************************************************************************** -clear all -set more off -set mem 200m -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_financial_distress.log", replace -******************************************************************* - - -/********************************* PREPARE DATA *******************************/ - -use ${estimation_sample}, clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" -/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ - -* Remove children -drop if dag < 16 - -********************************************************************** -* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * -********************************************************************** - -logit financial_distress /// -ib11.exp_emp i.lhw_c5 D.log_income i.exp_incchange ib0.exp_poverty L.ypncp L.ypnoab /// -L.i.econ_benefits L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.financial_distress /// -i.dgn L.dag L.dagsq i.deh_c3 i.dot stm /// -[pweight=${weight}] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/financial_distress/financial_distress", sheet("UK") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/financial_distress", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" // 13.exp_emp -putexcel A3 = "UnemployedToEmployed" // 31.exp_emp -putexcel A4 = "PersistentUnemployed" // 33.exp_emp -putexcel A5 = "Lhw_10" // 10.lhw_c5 -putexcel A6 = "Lhw_20" // 20.lhw_c5 -putexcel A7 = "Lhw_30" // 30.lhw_c5 -putexcel A8 = "Lhw_40" // 40.lhw_c5 -putexcel A9 = "RealIncomeChange" // D.log_income -putexcel A10 = "RealIncomeDecrease_D" // 1.exp_incchange -putexcel A11 = "NonPovertyToPoverty" // 1.exp_poverty -putexcel A12 = "PovertyToNonPoverty" // 2.exp_poverty -putexcel A13 = "PersistentPoverty" // 3.exp_poverty -putexcel A14 = "Ypncp_L1" // L.ypncp -putexcel A15 = "Ypnoab_L1" // L.ypnoab -putexcel A16 = "D_Econ_benefits" // 1L.econ_benefits -putexcel A17 = "D_Home_owner_L1" // 1L.dhh_owned -putexcel A18 = "Dcpst_Single_L1" // 2L.dcpst -putexcel A19 = "Dnc_L1" // L.dnc -putexcel A20 = "Dhe_pcs_L1" // L.dhe_pcs -putexcel A21 = "Dhe_mcs_L1" // L.dhe_mcs -putexcel A22 = "UKC" // 1L.drgn1 -putexcel A23 = "UKD" // 2L.drgn1 -putexcel A24 = "UKE" // 4L.drgn1 -putexcel A25 = "UKF" // 5L.drgn1 -putexcel A26 = "UKG" // 6L.drgn1 -putexcel A27 = "UKH" // 7L.drgn1 -putexcel A28 = "UKJ" // 9L.drgn1 -putexcel A29 = "UKK" // 10L.drgn1 -putexcel A30 = "UKL" // 11L.drgn1 -putexcel A31 = "UKM" // 12L.drgn1 -putexcel A32 = "UKN" // 13L.drgn1 -putexcel A33 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 -putexcel A34 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 -putexcel A35 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 -putexcel A36 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 -putexcel A37 = "Dlltsd01_L1" // L.dlltsd01 -putexcel A38 = "FinancialDistress" // L.financial_distress -putexcel A39 = "Dgn" // 1.dgn -putexcel A40 = "Dag_L1" // L.dag -putexcel A41 = "Dag_sq_L1" // L.dagsq -putexcel A42 = "Deh_c3_Medium" // 2.deh_c3 -putexcel A43 = "Deh_c3_Low" // 3.deh_c3 -putexcel A44 = "EthnicityAsian" // 2.dot -putexcel A45 = "EthnicityBlack" // 3.dot -putexcel A46 = "EthnicityOther" // 4.dot -putexcel A47 = "Year_transformed" // stm -putexcel A48 = "Constant" // _cons - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" // 13.exp_emp -putexcel D1 = "UnemployedToEmployed" // 31.exp_emp -putexcel E1 = "PersistentUnemployed" // 33.exp_emp -putexcel F1 = "Lhw_10" // 10.lhw_c5 -putexcel G1 = "Lhw_20" // 20.lhw_c5 -putexcel H1 = "Lhw_30" // 30.lhw_c5 -putexcel I1 = "Lhw_40" // 40.lhw_c5 -putexcel J1 = "RealIncomeChange" // D.log_income -putexcel K1 = "RealIncomeDecrease_D" // 1.exp_incchange -putexcel L1 = "NonPovertyToPoverty" // 1.exp_poverty -putexcel M1 = "PovertyToNonPoverty" // 2.exp_poverty -putexcel N1 = "PersistentPoverty" // 3.exp_poverty -putexcel O1 = "Ypncp_L1" // L.ypncp -putexcel P1 = "Ypnoab_L1" // L.ypnoab -putexcel Q1 = "D_Econ_benefits" // 1L.econ_benefits -putexcel R1 = "D_Home_owner_L1" // 1L.dhh_owned -putexcel S1 = "Dcpst_Single_L1" // 2L.dcpst -putexcel T1 = "Dnc_L1" // L.dnc -putexcel U1 = "Dhe_pcs_L1" // L.dhe_pcs -putexcel V1 = "Dhe_mcs_L1" // L.dhe_mcs -putexcel W1 = "UKC" // 1L.drgn1 -putexcel X1 = "UKD" // 2L.drgn1 -putexcel Y1 = "UKE" // 4L.drgn1 -putexcel Z1 = "UKF" // 5L.drgn1 -putexcel AA1 = "UKG" // 6L.drgn1 -putexcel AB1 = "UKH" // 7L.drgn1 -putexcel AC1 = "UKJ" // 9L.drgn1 -putexcel AD1 = "UKK" // 10L.drgn1 -putexcel AE1 = "UKL" // 11L.drgn1 -putexcel AF1 = "UKM" // 12L.drgn1 -putexcel AG1 = "UKN" // 13L.drgn1 -putexcel AH1 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 -putexcel AI1 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 -putexcel AJ1 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 -putexcel AK1 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 -putexcel AL1 = "Dlltsd01_L1" // L.dlltsd01 -putexcel AM1 = "FinancialDistress" // L.financial_distress -putexcel AN1 = "Dgn" // 1.dgn -putexcel AO1 = "Dag_L1" // L.dag -putexcel AP1 = "Dag_sq_L1" // L.dagsq -putexcel AQ1 = "Deh_c3_Medium" // 2.deh_c3 -putexcel AR1 = "Deh_c3_Low" // 3.deh_c3 -putexcel AS1 = "EthnicityAsian" // 2.dot -putexcel AT1 = "EthnicityBlack" // 3.dot -putexcel AU1 = "EthnicityOther" // 4.dot -putexcel AV1 = "Year_transformed" // stm -putexcel AW1 = "Constant" // _cons - -drop in_sample p -scalar drop r2_p N chi2 ll +******************************************************************************** +* PROJECT: UC and mental health +* SECTION: Health and wellbeing +* OBJECT: Financial distress +* AUTHORS: Andy Baxter, Erik Igelström +* LAST UPDATE: 17 Feb 2026 +* COUNTRY: UK +* +* NOTES: +******************************************************************************** +clear all +set more off +set mem 200m +set maxvar 30000 + + +******************************************************************* +cap log close +log using "${dir_log}/reg_financial_distress.log", replace +******************************************************************* + + +/********************************* PREPARE DATA *******************************/ + +use ${estimation_sample}, clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" +/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ + +* Remove children +drop if dag < 16 + +********************************************************************** +* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * +********************************************************************** + +logit financial_distress /// +ib11.exp_emp i.lhw_c5 D.log_income i.exp_incchange ib0.exp_poverty L.ypncp L.ypnoab /// +L.i.econ_benefits L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.financial_distress /// +i.dgn L.dag L.dagsq i.deh_c3 i.dot stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/financial_distress/financial_distress", sheet("UK") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/financial_distress", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/financial_distress/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_financial_distress", sheet("UK") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" // 13.exp_emp +putexcel A3 = "UnemployedToEmployed" // 31.exp_emp +putexcel A4 = "PersistentUnemployed" // 33.exp_emp +putexcel A5 = "Lhw_10" // 10.lhw_c5 +putexcel A6 = "Lhw_20" // 20.lhw_c5 +putexcel A7 = "Lhw_30" // 30.lhw_c5 +putexcel A8 = "Lhw_40" // 40.lhw_c5 +putexcel A9 = "RealIncomeChange" // D.log_income +putexcel A10 = "RealIncomeDecrease_D" // 1.exp_incchange +putexcel A11 = "NonPovertyToPoverty" // 1.exp_poverty +putexcel A12 = "PovertyToNonPoverty" // 2.exp_poverty +putexcel A13 = "PersistentPoverty" // 3.exp_poverty +putexcel A14 = "Ypncp_L1" // L.ypncp +putexcel A15 = "Ypnoab_L1" // L.ypnoab +putexcel A16 = "D_Econ_benefits" // 1L.econ_benefits +putexcel A17 = "D_Home_owner_L1" // 1L.dhh_owned +putexcel A18 = "Dcpst_Single_L1" // 2L.dcpst +putexcel A19 = "Dnc_L1" // L.dnc +putexcel A20 = "Dhe_pcs_L1" // L.dhe_pcs +putexcel A21 = "Dhe_mcs_L1" // L.dhe_mcs +putexcel A22 = "UKC" // 1L.drgn1 +putexcel A23 = "UKD" // 2L.drgn1 +putexcel A24 = "UKE" // 4L.drgn1 +putexcel A25 = "UKF" // 5L.drgn1 +putexcel A26 = "UKG" // 6L.drgn1 +putexcel A27 = "UKH" // 7L.drgn1 +putexcel A28 = "UKJ" // 9L.drgn1 +putexcel A29 = "UKK" // 10L.drgn1 +putexcel A30 = "UKL" // 11L.drgn1 +putexcel A31 = "UKM" // 12L.drgn1 +putexcel A32 = "UKN" // 13L.drgn1 +putexcel A33 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 +putexcel A34 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 +putexcel A35 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 +putexcel A36 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 +putexcel A37 = "Dlltsd01_L1" // L.dlltsd01 +putexcel A38 = "FinancialDistress" // L.financial_distress +putexcel A39 = "Dgn" // 1.dgn +putexcel A40 = "Dag_L1" // L.dag +putexcel A41 = "Dag_sq_L1" // L.dagsq +putexcel A42 = "Deh_c3_Medium" // 2.deh_c3 +putexcel A43 = "Deh_c3_Low" // 3.deh_c3 +putexcel A44 = "EthnicityAsian" // 2.dot +putexcel A45 = "EthnicityBlack" // 3.dot +putexcel A46 = "EthnicityOther" // 4.dot +putexcel A47 = "Year_transformed" // stm +putexcel A48 = "Constant" // _cons + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" // 13.exp_emp +putexcel D1 = "UnemployedToEmployed" // 31.exp_emp +putexcel E1 = "PersistentUnemployed" // 33.exp_emp +putexcel F1 = "Lhw_10" // 10.lhw_c5 +putexcel G1 = "Lhw_20" // 20.lhw_c5 +putexcel H1 = "Lhw_30" // 30.lhw_c5 +putexcel I1 = "Lhw_40" // 40.lhw_c5 +putexcel J1 = "RealIncomeChange" // D.log_income +putexcel K1 = "RealIncomeDecrease_D" // 1.exp_incchange +putexcel L1 = "NonPovertyToPoverty" // 1.exp_poverty +putexcel M1 = "PovertyToNonPoverty" // 2.exp_poverty +putexcel N1 = "PersistentPoverty" // 3.exp_poverty +putexcel O1 = "Ypncp_L1" // L.ypncp +putexcel P1 = "Ypnoab_L1" // L.ypnoab +putexcel Q1 = "D_Econ_benefits" // 1L.econ_benefits +putexcel R1 = "D_Home_owner_L1" // 1L.dhh_owned +putexcel S1 = "Dcpst_Single_L1" // 2L.dcpst +putexcel T1 = "Dnc_L1" // L.dnc +putexcel U1 = "Dhe_pcs_L1" // L.dhe_pcs +putexcel V1 = "Dhe_mcs_L1" // L.dhe_mcs +putexcel W1 = "UKC" // 1L.drgn1 +putexcel X1 = "UKD" // 2L.drgn1 +putexcel Y1 = "UKE" // 4L.drgn1 +putexcel Z1 = "UKF" // 5L.drgn1 +putexcel AA1 = "UKG" // 6L.drgn1 +putexcel AB1 = "UKH" // 7L.drgn1 +putexcel AC1 = "UKJ" // 9L.drgn1 +putexcel AD1 = "UKK" // 10L.drgn1 +putexcel AE1 = "UKL" // 11L.drgn1 +putexcel AF1 = "UKM" // 12L.drgn1 +putexcel AG1 = "UKN" // 13L.drgn1 +putexcel AH1 = "Ydses_c5_Q2_L1" // 2L.ydses_c5 +putexcel AI1 = "Ydses_c5_Q3_L1" // 3L.ydses_c5 +putexcel AJ1 = "Ydses_c5_Q4_L1" // 4L.ydses_c5 +putexcel AK1 = "Ydses_c5_Q5_L1" // 5L.ydses_c5 +putexcel AL1 = "Dlltsd01_L1" // L.dlltsd01 +putexcel AM1 = "FinancialDistress" // L.financial_distress +putexcel AN1 = "Dgn" // 1.dgn +putexcel AO1 = "Dag_L1" // L.dag +putexcel AP1 = "Dag_sq_L1" // L.dagsq +putexcel AQ1 = "Deh_c3_Medium" // 2.deh_c3 +putexcel AR1 = "Deh_c3_Low" // 3.deh_c3 +putexcel AS1 = "EthnicityAsian" // 2.dot +putexcel AT1 = "EthnicityBlack" // 3.dot +putexcel AU1 = "EthnicityOther" // 4.dot +putexcel AV1 = "Year_transformed" // stm +putexcel AW1 = "Constant" // _cons + +drop in_sample p +scalar drop r2_p N chi2 ll diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_health_mental.do b/input/InitialPopulations/compile/RegressionEstimates/12_reg_health_mental.do similarity index 96% rename from input/InitialPopulations/compile/RegressionEstimates/reg_health_mental.do rename to input/InitialPopulations/compile/RegressionEstimates/12_reg_health_mental.do index 0b3fd33aa..831e52eae 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_health_mental.do +++ b/input/InitialPopulations/compile/RegressionEstimates/12_reg_health_mental.do @@ -1,982 +1,982 @@ -******************************************************************************** -* PROJECT: UC and mental health -* SECTION: Health and wellbeing -* OBJECT: Health status and Disability -* AUTHORS: Andy Baxter -* LAST UPDATE: 17 Feb 2026 -* COUNTRY: UK -* -* NOTES: -* - This file updates GHQ12 Level (0-36) and Caseness (0-12) variables -******************************************************************************** -clear all -set more off -set mem 200m -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_health_mental.log", replace -******************************************************************* - -/********************************* PREPARE DATA *******************************/ - -use ${estimation_sample}, clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" -/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ - -* Remove children -drop if dag < 16 - -********************************************************************** -* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * -********************************************************************** - -reg dhm /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=${weight}] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_L") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM1_L_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("HM1_L", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("HM1_L") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd01_L1" -putexcel A22 = "Dhm_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd01_L1" -putexcel W1 = "Dhm_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A13 = ("HM1_L") B13 = rmse - -drop in_sample p - -scalar drop r2_p N chi2 ll - -*************************************************************** -* HM2_Females_L: GHQ12 Score 0-36 - causal employment effects * -*************************************************************** - -*Stage 2 -*Female -reghdfe dhm /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_L") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Females_L_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_L", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_L") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A14 = ("HM2_Females_L") B14 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* HM2_Males_L: GHQ12 Score 0-36 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dhm /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_L") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Males_L_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_L", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_L") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A15 = ("HM2_Males_L") B15 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll - - -********************************************************************** -* HM1_C: GHQ12 score 0-12 of all working-age adults - baseline effects * -********************************************************************** - -* New ordered logistic regression model, reflecting observed distributions - -ologit scghq2_dv /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.scghq2_dv /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -if stm!=20 & stm!=21 & dag>=25 & dag<=64 & swv!=12 /// -[pweight=${weight}] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_C") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM1_C_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("HM1_C", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("HM1_C") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd01_L1" -putexcel A22 = "Dhm_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Cut1" -putexcel A33 = "Cut2" -putexcel A34 = "Cut3" -putexcel A35 = "Cut4" -putexcel A36 = "Cut5" -putexcel A37 = "Cut6" -putexcel A38 = "Cut7" -putexcel A39 = "Cut8" -putexcel A40 = "Cut9" -putexcel A41 = "Cut10" -putexcel A42 = "Cut11" -putexcel A43 = "Cut12" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd01_L1" -putexcel W1 = "Dhm_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Cut1" -putexcel AH1 = "Cut2" -putexcel AI1 = "Cut3" -putexcel AJ1 = "Cut4" -putexcel AK1 = "Cut5" -putexcel AL1 = "Cut6" -putexcel AM1 = "Cut7" -putexcel AN1 = "Cut8" -putexcel AO1 = "Cut9" -putexcel AP1 = "Cut10" -putexcel AQ1 = "Cut11" -putexcel AR1 = "Cut12" - -/* save RMSE - not strictly needed for ologit predictions -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A16 = ("HM1_C") B16 = rmse -*/ - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* HM2_Females_C: GHQ12 Score 0-12 - causal employment effects * -*************************************************************** - -* Kept as linear as adding an 'additional' causal effect on baseline - -gen RealIncomeDecrease_D = log_income - L.log_income -gen scghq2_dv_L1 = L.scghq2_dv - -*Stage 2 -*Female -reghdfe scghq2_dv /// -ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// -y2020 y2021 /// -i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd01 /// -dag dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_C") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Females_C_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_C", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_C") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A16 = ("HM2_Females_C") B16 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* HM2_Males_C: GHQ12 Score 0-12 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe scghq2_dv /// -ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// -y2020 y2021 /// -i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd01 /// -dag dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -, absorb(idperson) vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_C") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/HM2_Males_C_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_C", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_C") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A17 = ("HM2_Males_C") B17 = rmse - -drop in_sample p -scalar drop r2_p N chi2 ll +******************************************************************************** +* PROJECT: UC and mental health +* SECTION: Health and wellbeing +* OBJECT: Health status and Disability +* AUTHORS: Andy Baxter +* LAST UPDATE: 17 Feb 2026 +* COUNTRY: UK +* +* NOTES: +* - This file updates GHQ12 Level (0-36) and Caseness (0-12) variables +******************************************************************************** +clear all +set more off +set mem 200m +set maxvar 30000 + + +******************************************************************* +cap log close +log using "${dir_log}/reg_health_mental.log", replace +******************************************************************* + +/********************************* PREPARE DATA *******************************/ + +use ${estimation_sample}, clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" +/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ + +* Remove children +drop if dag < 16 + +********************************************************************** +* HM1_L: GHQ12 score 0-36 of all working-age adults - baseline effects * +********************************************************************** + +reg dhm /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_L") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM1_L_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM1_L", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM1_L") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhm_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhm_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A13 = ("HM1_L") B13 = rmse + +drop in_sample p + +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Females_L: GHQ12 Score 0-36 - causal employment effects * +*************************************************************** + +*Stage 2 +*Female +reghdfe dhm /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_L") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Females_L_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_L", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_L") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A14 = ("HM2_Females_L") B14 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Males_L: GHQ12 Score 0-36 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dhm /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhm /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_L") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Males_L_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_L", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_L") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A15 = ("HM2_Males_L") B15 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll + + +********************************************************************** +* HM1_C: GHQ12 score 0-12 of all working-age adults - baseline effects * +********************************************************************** + +* New ordered logistic regression model, reflecting observed distributions + +ologit scghq2_dv /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.scghq2_dv /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +if stm!=20 & stm!=21 & dag>=25 & dag<=64 & swv!=12 /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM1_C") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM1_C_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM1_C", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM1_C") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhm_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Cut1" +putexcel A33 = "Cut2" +putexcel A34 = "Cut3" +putexcel A35 = "Cut4" +putexcel A36 = "Cut5" +putexcel A37 = "Cut6" +putexcel A38 = "Cut7" +putexcel A39 = "Cut8" +putexcel A40 = "Cut9" +putexcel A41 = "Cut10" +putexcel A42 = "Cut11" +putexcel A43 = "Cut12" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhm_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Cut1" +putexcel AH1 = "Cut2" +putexcel AI1 = "Cut3" +putexcel AJ1 = "Cut4" +putexcel AK1 = "Cut5" +putexcel AL1 = "Cut6" +putexcel AM1 = "Cut7" +putexcel AN1 = "Cut8" +putexcel AO1 = "Cut9" +putexcel AP1 = "Cut10" +putexcel AQ1 = "Cut11" +putexcel AR1 = "Cut12" + +/* save RMSE - not strictly needed for ologit predictions +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A16 = ("HM1_C") B16 = rmse +*/ + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Females_C: GHQ12 Score 0-12 - causal employment effects * +*************************************************************** + +* Kept as linear as adding an 'additional' causal effect on baseline + +gen RealIncomeDecrease_D = log_income - L.log_income +gen scghq2_dv_L1 = L.scghq2_dv + +*Stage 2 +*Female +reghdfe scghq2_dv /// +ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// +y2020 y2021 /// +i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd01 /// +dag dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Females_C") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Females_C_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_C", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Females_C") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A16 = ("HM2_Females_C") B16 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* HM2_Males_C: GHQ12 Score 0-12 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe scghq2_dv /// +ib11.exp_emp i.exp_poverty i.exp_incchange RealIncomeDecrease_D financial_distress /// +y2020 y2021 /// +i.dhh_owned i.dcpst dnc dhe_pcs ib8.drgn i.ydses_c5 dlltsd01 /// +dag dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +, absorb(idperson) vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_mental/health_mental", sheet("HM2_Males_C") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/HM2_Males_C_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_mental/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_mental/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_C", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_mental", sheet("HM2_Males_C") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A17 = ("HM2_Males_C") B17 = rmse + +drop in_sample p +scalar drop r2_p N chi2 ll diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_health_wellbeing.do b/input/InitialPopulations/compile/RegressionEstimates/13_reg_health_wellbeing.do similarity index 96% rename from input/InitialPopulations/compile/RegressionEstimates/reg_health_wellbeing.do rename to input/InitialPopulations/compile/RegressionEstimates/13_reg_health_wellbeing.do index f213c975f..b3319bc94 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_health_wellbeing.do +++ b/input/InitialPopulations/compile/RegressionEstimates/13_reg_health_wellbeing.do @@ -1,1431 +1,1431 @@ -******************************************************************************** -* PROJECT: UC and mental health -* SECTION: Health and wellbeing -* OBJECT: Health status and Disability -* AUTHORS: Andy Baxter -* LAST UPDATE: 17 Feb 2026 -* COUNTRY: UK -* -* NOTES: -* - This file updates SF12 MCS and PCS, and Life Satisfaction (7 levels) -******************************************************************************** -clear all -set more off -set mem 200m -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_health_wellbeing.log", replace -******************************************************************* - -/********************************* PREPARE DATA *******************************/ - -use ${estimation_sample}, clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" -/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ - -* Remove children -drop if dag < 16 - - -******************************************************************************** -* DHE_MCS1 - SF12 MCS score 0-100 of all working-age adults - baseline effects * -******************************************************************************** - -reg dhe_mcs /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=${weight}] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_MCS1_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS1", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS1") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd01_L1" -putexcel A22 = "Dhe_mcs_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd01_L1" -putexcel W1 = "Dhe_mcs_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A18 = ("DHE_MCS1") B18 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -*************************************************************** -* DHE_MCS2_Females: SF12 MCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Female -reghdfe dhe_mcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Females") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_MCS2_Females_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Females", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Females") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A19 = ("DHE_MCS2_Females") B19 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* DHE_MCS2_Males: SF12 MCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dhe_mcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Males") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_MCS2_Males_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Males", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Males") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A20 = ("DHE_MCS2_Males") B20 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -******************************************************************************* -* DHE_PCS1 - SF12 PCS score 0-100 of all working-age adults - baseline effects * -******************************************************************************** - -reg dhe_pcs /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=${weight}] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_PCS1_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS1", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS1") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_mcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd01_L1" -putexcel A22 = "Dhe_pcs_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_mcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd01_L1" -putexcel W1 = "Dhe_pcs_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A21 = ("DHE_PCS1") B21 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -*************************************************************** -* DHE_PCS2_Females: SF12 PCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Female -reghdfe dhe_pcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Females") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_PCS2_Females_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Females", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Females") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A22 = ("DHE_PCS2_Females") B22 = rmse - - - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* DHE_PCS2_Males: SF12 PCS score 0-100 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dhe_pcs /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Males") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DHE_PCS2_Males_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Males", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Males") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A23 = ("DHE_PCS2_Males") B23 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -******************************************************************************* -* DLS1 - Life Satisfaction 1-7 of all working-age adults - baseline effects * -******************************************************************************** - -reg dls /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// -L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// -[pweight=${weight}] /// -, vce(cluster idperson) - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DLS1_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) - - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS1", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS1") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "D_Home_owner_L1" -putexcel A3 = "Dcpst_Single_L1" -putexcel A4 = "Dnc_L1" -putexcel A5 = "Dhe_pcs_L1" -putexcel A6 = "UKC" -putexcel A7 = "UKD" -putexcel A8 = "UKE" -putexcel A9 = "UKF" -putexcel A10 = "UKG" -putexcel A11 = "UKH" -putexcel A12 = "UKJ" -putexcel A13 = "UKK" -putexcel A14 = "UKL" -putexcel A15 = "UKM" -putexcel A16 = "UKN" -putexcel A17 = "Ydses_c5_Q2_L1" -putexcel A18 = "Ydses_c5_Q3_L1" -putexcel A19 = "Ydses_c5_Q4_L1" -putexcel A20 = "Ydses_c5_Q5_L1" -putexcel A21 = "Dlltsd01_L1" -putexcel A22 = "Dls_L1" -putexcel A23 = "Dag_L1" -putexcel A24 = "Dag_sq_L1" -putexcel A25 = "Deh_c3_Medium" -putexcel A26 = "Deh_c3_Low" -putexcel A27 = "EthnicityAsian" -putexcel A28 = "EthnicityBlack" -putexcel A29 = "EthnicityOther" -putexcel A30 = "Dgn" -putexcel A31 = "Year_transformed" -putexcel A32 = "Constant" - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "D_Home_owner_L1" -putexcel D1 = "Dcpst_Single_L1" -putexcel E1 = "Dnc_L1" -putexcel F1 = "Dhe_pcs_L1" -putexcel G1 = "UKC" -putexcel H1 = "UKD" -putexcel I1 = "UKE" -putexcel J1 = "UKF" -putexcel K1 = "UKG" -putexcel L1 = "UKH" -putexcel M1 = "UKJ" -putexcel N1 = "UKK" -putexcel O1 = "UKL" -putexcel P1 = "UKM" -putexcel Q1 = "UKN" -putexcel R1 = "Ydses_c5_Q2_L1" -putexcel S1 = "Ydses_c5_Q3_L1" -putexcel T1 = "Ydses_c5_Q4_L1" -putexcel U1 = "Ydses_c5_Q5_L1" -putexcel V1 = "Dlltsd01_L1" -putexcel W1 = "Dls_L1" -putexcel X1 = "Dag_L1" -putexcel Y1 = "Dag_sq_L1" -putexcel Z1 = "Deh_c3_Medium" -putexcel AA1 = "Deh_c3_Low" -putexcel AB1 = "EthnicityAsian" -putexcel AC1 = "EthnicityBlack" -putexcel AD1 = "EthnicityOther" -putexcel AE1 = "Dgn" -putexcel AF1 = "Year_transformed" -putexcel AG1 = "Constant" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A24 = ("DLS1") B24 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - -*************************************************************** -* DLS2_Females: Life Satisfaction 1-7 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Female -reghdfe dls /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==0 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Females") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DLS2_Females_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Females", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Females") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A25 = ("DLS2_Females") B25 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - -*************************************************************** -* DLS2_Males: Life Satisfaction 1-7 - causal employment effects * -*************************************************************** - - -*Stage 2 -*Male -reghdfe dls /// -ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// -y2020 y2021 /// -L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// -L.dag L.dagsq i.deh_c3 stm /// -if dag>=25 & dag<=64 & dgn==1 /// -[pweight=${weight}] /// -, absorb(idperson) vce(cluster idperson) - - - * save raw results -matrix results = r(table) -matrix results = results[1..6,1..10]' -putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Males") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -gen in_sample = e(sample) - -predict p - -save "$dir_validation_data/DLS2_Males_sample", replace - - -scalar r2_p = e(r2_p) -scalar N = e(N) -scalar rmse = e(rmse) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Results - -* Note: Zeros values are eliminated - -matrix b = e(b) -matrix V = e(V) -matrix V = V[1..14,1..14] - -forvalues i = 1/14 { - forvalues j = 1/14 { - if `i' == `j' { - continue - } - matrix V[`i',`j'] = 0 - } -} - -* Store variance-covariance matrix - -preserve - -putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) -putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Males", replace) modify -putexcel C2 = matrix(var) - -restore - - -* Store estimated coefficients - -// Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -// Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -// Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -// Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Males") modify -putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) - -* Labelling - -putexcel A1 = "REGRESSOR" -putexcel A2 = "EmployedToUnemployed" -putexcel A3 = "UnemployedToEmployed" -putexcel A4 = "PersistentUnemployed" -putexcel A5 = "NonPovertyToPoverty" -putexcel A6 = "PovertyToNonPoverty" -putexcel A7 = "PersistentPoverty" -putexcel A8 = "RealIncomeChange" -putexcel A9 = "RealIncomeDecrease_D" -putexcel A10 = "FinancialDistress" -putexcel A11 = "Covid_2020_D" -putexcel A12 = "Covid_2021_D" - - -putexcel B1 = "COEFFICIENT" -putexcel C1 = "EmployedToUnemployed" -putexcel D1 = "UnemployedToEmployed" -putexcel E1 = "PersistentUnemployed" -putexcel F1 = "NonPovertyToPoverty" -putexcel G1 = "PovertyToNonPoverty" -putexcel H1 = "PersistentPoverty" -putexcel I1 = "RealIncomeChange" -putexcel J1 = "RealIncomeDecrease_D" -putexcel K1 = "FinancialDistress" -putexcel L1 = "Covid_2020_D" -putexcel M1 = "Covid_2021_D" - -* save RMSE -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A26 = ("DLS2_Males") B26 = rmse - - -drop in_sample p -scalar drop r2_p N chi2 ll - - +******************************************************************************** +* PROJECT: UC and mental health +* SECTION: Health and wellbeing +* OBJECT: Health status and Disability +* AUTHORS: Andy Baxter +* LAST UPDATE: 17 Feb 2026 +* COUNTRY: UK +* +* NOTES: +* - This file updates SF12 MCS and PCS, and Life Satisfaction (7 levels) +******************************************************************************** +clear all +set more off +set mem 200m +set maxvar 30000 + + +******************************************************************* +cap log close +log using "${dir_log}/reg_health_wellbeing.log", replace +******************************************************************* + +/********************************* PREPARE DATA *******************************/ + +use ${estimation_sample}, clear + +* Set data +xtset idperson swv +sort idperson swv + +* Adjust variables +do "${dir_do}/variable_update.do" +/* DP: Household income/poverty/employment transition variables are moved to variable_update.do */ + +* Remove children +drop if dag < 16 + + +******************************************************************************** +* DHE_MCS1 - SF12 MCS score 0-100 of all working-age adults - baseline effects * +******************************************************************************** + +reg dhe_mcs /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_MCS1_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS1", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS1") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhe_mcs_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhe_mcs_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A18 = ("DHE_MCS1") B18 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +*************************************************************** +* DHE_MCS2_Females: SF12 MCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Female +reghdfe dhe_mcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Females") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_MCS2_Females_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Females", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Females") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A19 = ("DHE_MCS2_Females") B19 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* DHE_MCS2_Males: SF12 MCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dhe_mcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_mcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_MCS2_Males") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_MCS2_Males_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Males", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_MCS2_Males") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A20 = ("DHE_MCS2_Males") B20 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +******************************************************************************* +* DHE_PCS1 - SF12 PCS score 0-100 of all working-age adults - baseline effects * +******************************************************************************** + +reg dhe_pcs /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_PCS1_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS1", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS1") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_mcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dhe_pcs_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_mcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dhe_pcs_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A21 = ("DHE_PCS1") B21 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +*************************************************************** +* DHE_PCS2_Females: SF12 PCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Female +reghdfe dhe_pcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Females") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_PCS2_Females_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Females", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Females") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A22 = ("DHE_PCS2_Females") B22 = rmse + + + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* DHE_PCS2_Males: SF12 PCS score 0-100 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dhe_pcs /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_mcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dhe_pcs /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DHE_PCS2_Males") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DHE_PCS2_Males_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Males", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DHE_PCS2_Males") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A23 = ("DHE_PCS2_Males") B23 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +******************************************************************************* +* DLS1 - Life Satisfaction 1-7 of all working-age adults - baseline effects * +******************************************************************************** + +reg dls /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// +L.dag L.dagsq i.deh_c3 i.dot i.dgn stm /// +[pweight=${weight}] /// +, vce(cluster idperson) + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1...]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS1") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DLS1_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) + + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS1", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS1") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "D_Home_owner_L1" +putexcel A3 = "Dcpst_Single_L1" +putexcel A4 = "Dnc_L1" +putexcel A5 = "Dhe_pcs_L1" +putexcel A6 = "UKC" +putexcel A7 = "UKD" +putexcel A8 = "UKE" +putexcel A9 = "UKF" +putexcel A10 = "UKG" +putexcel A11 = "UKH" +putexcel A12 = "UKJ" +putexcel A13 = "UKK" +putexcel A14 = "UKL" +putexcel A15 = "UKM" +putexcel A16 = "UKN" +putexcel A17 = "Ydses_c5_Q2_L1" +putexcel A18 = "Ydses_c5_Q3_L1" +putexcel A19 = "Ydses_c5_Q4_L1" +putexcel A20 = "Ydses_c5_Q5_L1" +putexcel A21 = "Dlltsd01_L1" +putexcel A22 = "Dls_L1" +putexcel A23 = "Dag_L1" +putexcel A24 = "Dag_sq_L1" +putexcel A25 = "Deh_c3_Medium" +putexcel A26 = "Deh_c3_Low" +putexcel A27 = "EthnicityAsian" +putexcel A28 = "EthnicityBlack" +putexcel A29 = "EthnicityOther" +putexcel A30 = "Dgn" +putexcel A31 = "Year_transformed" +putexcel A32 = "Constant" + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "D_Home_owner_L1" +putexcel D1 = "Dcpst_Single_L1" +putexcel E1 = "Dnc_L1" +putexcel F1 = "Dhe_pcs_L1" +putexcel G1 = "UKC" +putexcel H1 = "UKD" +putexcel I1 = "UKE" +putexcel J1 = "UKF" +putexcel K1 = "UKG" +putexcel L1 = "UKH" +putexcel M1 = "UKJ" +putexcel N1 = "UKK" +putexcel O1 = "UKL" +putexcel P1 = "UKM" +putexcel Q1 = "UKN" +putexcel R1 = "Ydses_c5_Q2_L1" +putexcel S1 = "Ydses_c5_Q3_L1" +putexcel T1 = "Ydses_c5_Q4_L1" +putexcel U1 = "Ydses_c5_Q5_L1" +putexcel V1 = "Dlltsd01_L1" +putexcel W1 = "Dls_L1" +putexcel X1 = "Dag_L1" +putexcel Y1 = "Dag_sq_L1" +putexcel Z1 = "Deh_c3_Medium" +putexcel AA1 = "Deh_c3_Low" +putexcel AB1 = "EthnicityAsian" +putexcel AC1 = "EthnicityBlack" +putexcel AD1 = "EthnicityOther" +putexcel AE1 = "Dgn" +putexcel AF1 = "Year_transformed" +putexcel AG1 = "Constant" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A24 = ("DLS1") B24 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + +*************************************************************** +* DLS2_Females: Life Satisfaction 1-7 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Female +reghdfe dls /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==0 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Females") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DLS2_Females_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Females", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Females") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A25 = ("DLS2_Females") B25 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + +*************************************************************** +* DLS2_Males: Life Satisfaction 1-7 - causal employment effects * +*************************************************************** + + +*Stage 2 +*Male +reghdfe dls /// +ib11.exp_emp i.exp_poverty i.exp_incchange D.log_income financial_distress /// +y2020 y2021 /// +L.i.dhh_owned L.i.dcpst L.dnc L.dhe_pcs L.ib8.drgn L.i.ydses_c5 L.dlltsd01 L.dls /// +L.dag L.dagsq i.deh_c3 stm /// +if dag>=25 & dag<=64 & dgn==1 /// +[pweight=${weight}] /// +, absorb(idperson) vce(cluster idperson) + + + * save raw results +matrix results = r(table) +matrix results = results[1..6,1..10]' +putexcel set "$dir_raw_results/health_wellbeing/health_wellbeing", sheet("DLS2_Males") replace +putexcel A3 = matrix(results), names nformat(number_d2) +putexcel J4 = matrix(e(V)) + +gen in_sample = e(sample) + +predict p + +save "$dir_validation_data/DLS2_Males_sample", replace + + +scalar r2_p = e(r2_p) +scalar N = e(N) +scalar rmse = e(rmse) +scalar chi2 = e(chi2) +scalar ll = e(ll) + + +* Results + +* Note: Zeros values are eliminated + +matrix b = e(b) +matrix V = e(V) +matrix V = V[1..14,1..14] + +forvalues i = 1/14 { + forvalues j = 1/14 { + if `i' == `j' { + continue + } + matrix V[`i',`j'] = 0 + } +} + +* Store variance-covariance matrix + +preserve + +putexcel set "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") replace +putexcel A1 = matrix(V) + +import excel "$dir_raw_results/health_wellbeing/var_cov", sheet("var_cov") clear + +describe +local no_vars = `r(k)' + +forvalues i = 1/2 { + egen row_sum = rowtotal(*) + drop if row_sum == 0 + drop row_sum + xpose, clear +} + +mkmat v*, matrix(var) +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Males", replace) modify +putexcel C2 = matrix(var) + +restore + + +* Store estimated coefficients + +// Initialize a counter for non-zero coefficients +local non_zero_count = 0 +//local names : colnames b + +// Loop through each element in `b` to count non-zero coefficients +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + local non_zero_count = `non_zero_count' + 1 + } +} + +// Create a new row vector to hold only non-zero coefficients +matrix nonzero_b = J(1, `non_zero_count', .) + +// Populate nonzero_b with non-zero coefficients from b +local index = 1 +forvalues i = 1/`no_vars' { + if (b[1, `i'] != 0) { + matrix nonzero_b[1, `index'] = b[1, `i'] + local index = `index' + 1 + } +} + +putexcel set "$dir_results/reg_health_wellbeing", sheet("DLS2_Males") modify +putexcel A1 = matrix(nonzero_b'), names nformat(number_d2) + +* Labelling + +putexcel A1 = "REGRESSOR" +putexcel A2 = "EmployedToUnemployed" +putexcel A3 = "UnemployedToEmployed" +putexcel A4 = "PersistentUnemployed" +putexcel A5 = "NonPovertyToPoverty" +putexcel A6 = "PovertyToNonPoverty" +putexcel A7 = "PersistentPoverty" +putexcel A8 = "RealIncomeChange" +putexcel A9 = "RealIncomeDecrease_D" +putexcel A10 = "FinancialDistress" +putexcel A11 = "Covid_2020_D" +putexcel A12 = "Covid_2021_D" + + +putexcel B1 = "COEFFICIENT" +putexcel C1 = "EmployedToUnemployed" +putexcel D1 = "UnemployedToEmployed" +putexcel E1 = "PersistentUnemployed" +putexcel F1 = "NonPovertyToPoverty" +putexcel G1 = "PovertyToNonPoverty" +putexcel H1 = "PersistentPoverty" +putexcel I1 = "RealIncomeChange" +putexcel J1 = "RealIncomeDecrease_D" +putexcel K1 = "FinancialDistress" +putexcel L1 = "Covid_2020_D" +putexcel M1 = "Covid_2021_D" + +* save RMSE +putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify +putexcel A26 = ("DLS2_Males") B26 = rmse + + +drop in_sample p +scalar drop r2_p N chi2 ll + + diff --git a/input/InitialPopulations/compile/RegressionEstimates/master.do b/input/InitialPopulations/compile/RegressionEstimates/master.do deleted file mode 100644 index e9d83a6cf..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/master.do +++ /dev/null @@ -1,281 +0,0 @@ - -*************************************************************************************** -* PROJECT: SimPaths UK: regression estimates for SimPaths using UKHLS data -* DO-FILE NAME: master.do -* DESCRIPTION: Main do-file to set the main parameters (country, paths) and call sub-scripts -*************************************************************************************** -* COUNTRY: UK -* DATA: UKHLS EUL version - UKDA-6614-stata [to wave o] -* -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 18 Feb 2026 DP -*************************************************************************************** - -*************************************************************************************** -* General comments: -* - Note that in the following scripts some standard commands may be -* abbreviated: (gen)erate, (tab)ulate, (sum)marize, (di)splay, -* (cap)ture, (qui)etly, (noi)sily - -*Stata packages to install -*ssc install fre -*ssc install tsspell -*ssc install carryforward -*ssc install outreg2 -*ssc install oparallel -*ssc install gologit2 -*ssc install winsor -*ssc install reghdfe -*ssc install ftools -*ssc install require -* -* NOTES: -* The income and union parameter do file must be run after -* the wage estimates are obtained because they use -* predicted wages. The order of the remaining files is -* arbitrary. -*************************************************************************************** -*************************************************************************************** - -clear all -set more off -set type double -set maxvar 30000 -set matsize 1000 - - -/************************************************************************************** -* DEFINE DIRECTORIES -**************************************************************************************/ - -* Working directory -global dir_work "D:\Dasha\ESSEX\_SimPaths\_SimPaths_UK\regression_estimates" - -* Directory which contains do files -global dir_do "${dir_work}/do" - -* Directory which contains log files -global dir_log "${dir_work}/log" - -* Directory which contains raw output: Excel and Word tables -global dir_raw_results "${dir_work}/raw_results" - -* Directory which contains final Excel files read by the model -global dir_results "${dir_work}/results" - -* Pooled dataset for estimates -global estimation_sample "D:\Dasha\ESSEX\_SimPaths\_SimPaths_UK\initial_populations\data\UKHLS_pooled_ipop.dta" - -* Pooled dataset with predicted wages after Heckman -global estimation_sample2 "D:\Dasha\ESSEX\_SimPaths\_SimPaths_UK\initial_populations\data\UKHLS_pooled_ipop2.dta" - -* Directory containing external input data -global dir_external_data "$dir_work/external_data" - -* Directory containing results of comparison of various weights -global weight_checks "${dir_work}/weight_checks" - -*********************Internal validation**************************************** -* Directory to save data for internal validation -global dir_validation_data "${dir_work}/internal_validation/data" - -* Directory for internal validation do-files -global dir_do_validation "${dir_work}/internal_validation/do_files" - -* Directory for internal validation do-files -global dir_validation_graphs "${dir_work}/internal_validation/graphs" - -global country "UK" - -global first_sim_year "2010" - -global last_sim_year "2025" - -* Globals used for all processes - -global weight "dwt" - -global regions "UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN" //UKI is London (reference) - -global ethnicity "Ethn_Asian Ethn_Black Ethn_Other" //White is reference. Mixed race & undefined are in Other category - - -* Define threshold ages -/* -Ages used for specifying samples. -ENSURE THE SAME AS THE GLOBALS USED IN THE INTIIAL POPULATIONS MASTER FILE -*/ - -* Age become an adult in various dimensions -global age_becomes_responsible 18 - -global age_becomes_semi_responsible 16 - -global age_seek_employment 16 - -global age_leave_school 16 - -global age_form_partnership 18 - -global age_have_child_min 18 - -global age_leave_parental_home 18 - -global age_own_home 18 - -* Age can/must/cannot make various transitions -global age_max_dep_child 17 - -global age_adult 18 - -global age_can_retire 50 - -global age_force_retire 75 - -global age_force_leave_spell1_edu 30 - -global age_have_child_max 49 // allow this to be led by the data - - -/******************************************************************************* -* PROCESS IF CONDITIONS -*******************************************************************************/ - -* Education -global e1a_if_condition "dag >= ${age_leave_school} & dag < ${age_force_leave_spell1_edu} & l.les_c4 == 2" - -global e1b_if_condition "dag >= ${age_leave_school} & l.les_c4 != 4 & l.les_c4 != 2" - -global e2_if_condition "dag >= ${age_leave_school} & l.les_c4 == 2 & les_c4 != 2" - -* Leave the parental home -global p1_if_condition "ded == 0 & dag >= ${age_leave_parental_home}" - -* Partnership -global u1_if_condition "dag >= ${age_form_partnership} & ssscp != 1" - -global u2_if_condition "dgn == 0 & dag >= ${age_form_partnership} & l.ssscp != 1" - -* Fertility -global f1_if_condition "dag >= ${age_have_child_min} & dag <= ${age_have_child_max} & dgn == 0" - -* Health -global h1_if_condition "dag >= ${age_becomes_semi_responsible} & flag_dhe_imp == 0" - -global h2_if_condition "dag >= ${age_becomes_semi_responsible} & ded == 0" - -* Home ownership -global ho1_if_condition "dag >= ${age_own_home}" - -* Retirment -global r1a_if_condition "dcpst == 2 & dag >= ${age_can_retire}" - -global r1b_if_condition "ssscp != 1 & dcpst == 1 & dag >= ${age_can_retire}" - - -* WAGES -global wages_f_no_prev_if_condition "dgn == 0 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 0 & deh_c4>0" - -global wages_m_no_prev_if_condition "dgn == 1 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 0 & deh_c4>0" - -global wages_f_prev_if_condition "dgn == 0 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 1 & deh_c4>0" - -global wages_m_prev_if_condition "dgn == 1 & dag >= ${age_seek_employment} & dag <= ${age_force_retire} & previouslyWorking == 1 & deh_c4>0" - - -* CAPITAL INCOME -global i1a_if_condition "dag >= ${age_becomes_semi_responsible}" - -global i1b_if_condition "dag >= ${age_becomes_semi_responsible} & receives_ypncp == 1" - -* PRIVATE PENSION INCOME -global i2b_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd==1 & receives_ypnoab==1" - -global i3a_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2" - -global i3b_if_condition "dag >= ${age_can_retire} & dlrtrd == 1 & l.dlrtrd!=1 & l.les_c4 != 2 & receives_ypnoab==1" - - -* SOCIAL CARE -global s2a_if_condition "dag > 64 & stm >= 15 & stm <= 22" // Need care - -global s2b_if_condition "dag > 64 & stm >= 16 & stm <= 21" // Receive care - -global s2c_if_condition "dag > 64 & receive_care & stm >= 16 & stm <= 21" // Care mix received - -global s2d_if_condition "dag > 64 & receive_informal_care & stm >= 16 & stm <= 21" // Informal care hours received - -global s2e_if_condition "dag > 64 & receive_formal_care & stm >= 16 & stm <= 21" // Formal care hours received - - -global s3a_if_condition "Single & stm >= 15" // Provide care, Singles - -global s3b_if_condition "Partnered & stm >= 15" // Provide care, Partnered - -global s3c_if_condition "provide_informal_care & Single & stm >= 15" // Informal care hours provided, Singles - -global s3d_if_condition "provide_informal_care & Partnered & stm >= 15" // Informal care hours provided, Singles - - -* Finanicial distress and health processes -* TO ADD - - - -/******************************************************************************* -* ESTIMATION FILES -*******************************************************************************/ -/**/ -do "${dir_do}/reg_education.do" - -do "${dir_do}/reg_leave_parental_home.do" - -do "${dir_do}/reg_partnership.do" - -do "${dir_do}/reg_fertility.do" - -do "${dir_do}/reg_health.do" - -do "${dir_do}/reg_home_ownership.do" - -do "${dir_do}/reg_retirement.do" - -do "${dir_do}/reg_wages.do" - -do "${dir_do}/reg_income.do" - -do "${dir_do}/reg_socialcare.do" - -do "${dir_do}/reg_financial_distress.do" - -do "${dir_do}/reg_health_mental.do" - -do "${dir_do}/reg_health_wellbeing.do" - - -******************************************************************************* -* INTERNAL VALIDATION FILES -****************************************************************************** -/* -do "$dir_do_validation/int_val_education.do" - -do "$dir_do_validation/int_val_leave_parental_home.do" - -do "$dir_do_validation/int_val_partnership.do" - -do "$dir_do_validation/int_val_fertility.do" - -do "$dir_do_validation/int_val_health.do" - -do "$dir_do_validation/int_val_home_ownership.do" - -do "$dir_do_validation/int_val_retirement.do" - -do "$dir_do_validation/int_val_wages.do" - -do "$dir_do_validation/int_val_income.do" -*/ - -/************************************************************************************** -* END OF FILE -**************************************************************************************/ diff --git a/input/InitialPopulations/compile/RegressionEstimates/programs.do b/input/InitialPopulations/compile/RegressionEstimates/programs.do index f807f1dc9..41946b95d 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/programs.do +++ b/input/InitialPopulations/compile/RegressionEstimates/programs.do @@ -1,80 +1,289 @@ /*============================================================================== - MATA FUNCTIONS - Define all Mata functions + MATA FUNCTIONS - Define all Mata functions ==============================================================================*/ mata: mata clear mata set matastrict off -end -mata: -mata clear +// Format labels +void extract_and_export_labels(string scalar domain, string scalar sheet, real scalar max_n, real scalar is_ologit) { + nonzero_b_flag = st_matrix("nonzero_b_flag")' + + if (is_ologit) { + stripe = st_matrixcolstripe("b") + } + else { + stripe = st_matrixcolstripe("e(b)") + } -void trim_matrices() { - V = st_matrix("V") - b = st_matrix("b") - keep = (b :!= 0) - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - st_matrix("b_trimmed", b_trimmed) - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) - printf("Matrices transferred successfully\n") + varnames = stripe[.,2] + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + // Handle lags: L.var -> var_L1 + labels_no_bl = /// + regexm(labels_no_bl, "^L\.") :* /// + (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + // Handle 1L.var + labels_no_bl = /// + regexm(labels_no_bl, "^1L\.") :* /// + (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// + (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) + // Handle 2L.var + labels_no_bl = /// + regexm(labels_no_bl, "^L2\.") :* /// + (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// + (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) + + // Truncate labels if max_n is specified (>0) + if (max_n > 0 & rows(labels_no_bl) > max_n) { + labels_no_bl = labels_no_bl[1..max_n, .] + } + + // Write labels via xl() — avoids stata() round-trip overhead per cell + // Column A rows 2+ (vertical), row 1 cols C+ (horizontal) + real scalar n_labs, i + n_labs = rows(labels_no_bl) + string scalar path + path = st_global("dir_results") + "/reg_" + domain + ".xlsx" + class xl scalar xbook + xbook = xl() + xbook.load_book(path) + xbook.set_sheet(sheet) + for (i=1; i<=n_labs; i++) xbook.put_string(i+1, 1, labels_no_bl[i]) + for (i=1; i<=n_labs; i++) xbook.put_string(1, i+2, labels_no_bl[i]) + xbook.close_book() } -void write_all_to_excel() { - b_trimmed = st_matrix("b_trimmed") - V_trimmed = st_matrix("V_trimmed") - n = cols(b_trimmed) - for (i=1; i<=n; i++) { - row = i + 1 - coef = b_trimmed[1,i] - stata("quietly putexcel B" + strofreal(row) + " = (" + strofreal(coef) + ")") - } - printf("Writing V-C matrix\n") - for (i=1; i<=n; i++) { - for (j=1; j<=n; j++) { - row = i + 1 - col_num = j + 2 - col_name = "" - temp = col_num - while (temp > 0) { - rem = mod(temp - 1, 26) - col_name = char(65 + rem) + col_name - temp = floor((temp - 1) / 26) - } - val = V_trimmed[i,j] - stata("quietly putexcel " + col_name + strofreal(row) + " = (" + strofreal(val) + ")") - } - if (mod(i, 5) == 0) printf(" Row %g/%g\n", i, n) - } - printf("Done\n") +// Create var diagonal matrix +void write_diagonal_to_excel() { + // Pull the matrices into Mata + V_trimmed = st_matrix("V_trimmed") + b_trimmed = st_matrix("b_trimmed") + + // Write coefficients to Column B + stata("quietly putexcel B2 = matrix(b_trimmed')") + + printf("Creating diagonal matrix...\n") + + // Create a diagonal version of V_trimmed + // diag(diagonal(V)) keeps the 'spine' and fills the rest with 0s + V_diag = diag(diagonal(V_trimmed)) + + // Push this modified matrix BACK into Stata's memory + // This overwrites the old "V_trimmed" with the diagonal version + st_replacematrix("V_trimmed", V_diag) + + // Now tell Stata to write the matrix it now sees as diagonal + stata("quietly putexcel C2 = matrix(V_trimmed)") + + printf("Done (Diagonal matrix written)\n") } -void extract_and_export_labels(string scalar sheet) { - nonzero_b_flag = st_matrix("nonzero_b_flag")' - stripe = st_matrixcolstripe("e(b)") - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - n_labs = rows(labels_no_bl) - for (i=1; i<=n_labs; i++) { - row = i + 1 - stata("quietly putexcel A" + strofreal(row) + " = " + char(34) + labels_no_bl[i] + char(34)) - } - for (j=1; j<=n_labs; j++) { - col_num = j + 2 - col_name = "" - n_temp = col_num - while (n_temp > 0) { - rem = mod(n_temp - 1, 26) - col_name = char(65 + rem) + col_name - n_temp = floor((n_temp - 1) / 26) - } - stata("quietly putexcel " + col_name + "1 = " + char(34) + labels_no_bl[j] + char(34)) - } +// Ensure cuts are at the end of matrix +void reorder_cuts_to_end() { + b = st_matrix("b") + V = st_matrix("V") + stripe = st_matrixcolstripe("e(b)") + + // Identify cut point columns + is_cut = (stripe[.,1] :== "/") + not_cut = (is_cut :== 0) + is_cut_row = is_cut' + not_cut_row = not_cut' + + // Reorder b and V + b_reordered = select(b, not_cut_row), select(b, is_cut_row) + V_temp = select(V, not_cut_row), select(V, is_cut_row) + V_reordered = select(V_temp', not_cut_row), select(V_temp', is_cut_row) + V_reordered = V_reordered' + + // Reorder stripe and rename cuts before writing back + stripe_reordered = (select(stripe, not_cut) \ select(stripe, is_cut)) + for (i=1; i<=rows(stripe_reordered); i++) { + if (stripe_reordered[i,1] == "/" & regexm(stripe_reordered[i,2], "^cut([0-9]+)")) { + stripe_reordered[i,2] = "Cut" + regexs(1) + stripe_reordered[i,1] = "" + } + } + + // Write back with correct stripe + st_matrix("b", b_reordered) + st_matrix("V", V_reordered) + st_matrixcolstripe("b", stripe_reordered) + st_matrixcolstripe("V", stripe_reordered) + st_matrixrowstripe("V", stripe_reordered) + +} + +// Format gologit estimates and var-cov matricies +void build_gologit_structure(real scalar n_outcomes) { + b = st_matrix("b") + V = st_matrix("V") + + // Remove zero coefficients (baseline categories) + keep = (b :!= 0) + nonzero_b = select(b, keep) + V_trimmed = select(V, keep) + V_trimmed = select(V_trimmed', keep)' + st_matrix("nonzero_b", nonzero_b) + st_matrix("nonzero_b_flag", keep) + + // Detect repeated coefficients (proportional odds vars) + n = cols(nonzero_b) + n_per = n / (n_outcomes - 1) + repetition_flag = J(n, 1, 0) + tol = 1e-8 + for (i=1; i<=n; i++) { + found = 0 + for (j=1; j<=n; j++) { + if (found == 0 & i != j & abs(nonzero_b[1,i] - nonzero_b[1,j]) < tol) { + repetition_flag[i] = 1 + found = 1 + } + } + } + unique_flag = 1 :- repetition_flag + st_matrix("repetition_flag", repetition_flag') + st_matrix("unique_flag", unique_flag') + + // Build structure vector + structure_a = J(1, n_per, 1) + structure_b = unique_flag[n_per+1::n]' + structure = structure_a, structure_b + st_matrix("structure", structure) + + // Apply structure to b + b_structure = structure :* nonzero_b + keep2 = (b_structure :!= 0) + nonzero_b_structure = select(b_structure, keep2) + st_matrix("nonzero_b_structure", nonzero_b_structure) + + // Apply structure to V + square_structure_a = J(n, 1, 1) * structure + square_structure_b = square_structure_a' + square_structure = square_structure_a :* square_structure_b + var_structure = square_structure :* V_trimmed + row_keep = (rowsum(abs(var_structure)) :!= 0) + col_keep = (colsum(abs(var_structure)) :!= 0) + nonzero_var_structure = select(select(var_structure, col_keep), row_keep) + st_matrix("nonzero_var_structure", nonzero_var_structure) + + printf("Gologit structure built: %g unique coefficients\n", cols(nonzero_b_structure)) +} + +// Format gologit labels +void export_labels_gologit(string scalar domain, string scalar sheet) { + nonzero_b_flag = st_matrix("nonzero_b_flag")' + unique_flag = st_matrix("unique_flag")' + structure = st_matrix("structure")' + stripe = st_matrixcolstripe("e(b)") + + catnames = stripe[.,1] + varnames = stripe[.,2] + varnames_no_bl = select(varnames, nonzero_b_flag :== 1) + catnames_no_bl = select(catnames, nonzero_b_flag :== 1) + + // Clean variable names + labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) + labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") + labels_no_bl = (regexm(labels_no_bl, "^L\.") :* + (regexr(labels_no_bl, "^L\.", "") :+ "_L1")) :+ + (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) + + // Add category suffix only for non-prop odds vars (unique_flag == 1) + labels_no_bl = labels_no_bl :+ + (("_" :+ catnames_no_bl) :* (unique_flag[1::rows(labels_no_bl)] :== 1)) + + // Add _ to end of vars with common coefs + real matrix is_unique, is_common + is_common = (unique_flag[1::rows(labels_no_bl)] :== 0) + + labels_no_bl = labels_no_bl :+ ( + (("_") :* is_common) + ) + + // Filter by structure + final_labels = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) + + // Write labels via xl() — avoids stata() round-trip overhead per cell + // Column A rows 2+ (vertical), row 1 cols C+ (horizontal) + real scalar n_labs, i + n_labs = rows(final_labels) + string scalar path + path = st_global("dir_results") + "/reg_" + domain + ".xlsx" + class xl scalar xbook + xbook = xl() + xbook.load_book(path) + xbook.set_sheet(sheet) + for (i=1; i<=n_labs; i++) xbook.put_string(i+1, 1, final_labels[i]) + for (i=1; i<=n_labs; i++) xbook.put_string(1, i+2, final_labels[i]) + xbook.close_book() +} + +// Auto-extract labels for one stage of a Heckman model from e(b) column stripe. +// is_outcome=1 - outcome equation (all columns except "select"); +// is_outcome=0 - selection equation (columns where eq=="select"). +// Applies the same formatting as extract_and_export_labels. +// Writes vertically to col A (from row 2) and horizontally to row 1 (from col C). +void extract_heckman_stage_labels(string scalar domain, string scalar sheet, real scalar is_outcome) { + string matrix stripe + real matrix b_full + stripe = st_matrixcolstripe("e(b)") + b_full = st_matrix("e(b)") + + real scalar n, i + n = rows(stripe) + + string colvector labels_raw + labels_raw = J(0, 1, "") + + for (i = 1; i <= n; i++) { + string scalar eq_i + eq_i = stripe[i, 1] + + real scalar include + if (is_outcome) include = (eq_i != "select") + else include = (eq_i == "select") + + // Exclude base-category coefficients (zero b) + if (include & b_full[1, i] != 0) { + labels_raw = labels_raw \ stripe[i, 2] + } + } + + // Apply same formatting as extract_and_export_labels + string colvector labels + labels = usubinstr(labels_raw, "1.", "", 1) + labels = regexr(labels, "^_cons", "Constant") + // Handle lags: L.var -> var_L1 + labels = regexm(labels, "^L\.") :* (regexr(labels, "^L\.", "") :+ "_L1") :+ + (!regexm(labels, "^L\.") :* labels) + // Handle 1L.var + labels = regexm(labels, "^1L\.") :* (regexr(labels, "^1L\.", "") :+ "_L1") :+ + (!regexm(labels, "^1L\.") :* labels) + // Handle L2.var + labels = regexm(labels, "^L2\.") :* (regexr(labels, "^L2\.", "") :+ "_L2") :+ + (!regexm(labels, "^L2\.") :* labels) + + // Rename the inverse Mills ratio variable to a readable label + for (i = 1; i <= rows(labels); i++) { + if (labels[i] == "lambda") labels[i] = "InvMillsRatio" + } + + // Write via xl() + real scalar n_labs + n_labs = rows(labels) + string scalar path + path = st_global("dir_results") + "/reg_" + domain + ".xlsx" + class xl scalar xbook + xbook = xl() + xbook.load_book(path) + xbook.set_sheet(sheet) + for (i = 1; i <= n_labs; i++) xbook.put_string(i+1, 1, labels[i]) + for (i = 1; i <= n_labs; i++) xbook.put_string(1, i+2, labels[i]) + xbook.close_book() } end @@ -84,85 +293,166 @@ end HELPER PROGRAMS - Modular functions for common operations ==============================================================================*/ -* Check matrix eigenvalues for stability +* Load matrices and remove zero coefficients (baseline categories) +capture program drop trim_matrices +program define trim_matrices + + local k = colsof(b) + + // Identify non-zero coefficient column indices + local keep_idx "" + forvalues j = 1/`k' { + if b[1,`j'] != 0 { + local keep_idx "`keep_idx' `j'" + } + } + local n_keep = wordcount("`keep_idx'") + + // Build nonzero_b_flag as 1 x k row vector + matrix nonzero_b_flag = J(1, `k', 0) + foreach j of local keep_idx { + matrix nonzero_b_flag[1, `j'] = 1 + } + + // Build b_trimmed: 1 x n_keep + matrix b_trimmed = J(1, `n_keep', 0) + local c = 1 + foreach j of local keep_idx { + matrix b_trimmed[1, `c'] = b[1, `j'] + local ++c + } + + // Build V_trimmed: n_keep x n_keep + matrix V_trimmed = J(`n_keep', `n_keep', 0) + local r = 1 + foreach i of local keep_idx { + local c = 1 + foreach j of local keep_idx { + matrix V_trimmed[`r', `c'] = V[`i', `j'] + local ++c + } + local ++r + } + + display "Matrices transferred successfully" + +end + + +* Truncate trimmed matrices to first max_n non-zero estimates +capture program drop truncate_to_n +program define truncate_to_n + + syntax, maxn(integer) + + local n = colsof(b_trimmed) + + if `n' > `maxn' { + + // Truncate b_trimmed and V_trimmed to first maxn columns/rows + matrix b_trimmed = b_trimmed[1, 1..`maxn'] + matrix V_trimmed = V_trimmed[1..`maxn', 1..`maxn'] + + // Update nonzero_b_flag: zero out entries beyond the first maxn kept variables + local k = colsof(nonzero_b_flag) + local kept = 0 + forvalues i = 1/`k' { + if nonzero_b_flag[1, `i'] == 1 { + local kept = `kept' + 1 + } + if `kept' > `maxn' { + matrix nonzero_b_flag[1, `i'] = 0 + } + } + + display "Truncated to first `maxn' non-zero estimates" + } + else { + display "Fewer than `maxn' non-zero estimates (`n' found), no truncation needed" + } + +end + + +* Check var-cov matrix eigenvalues for stability (conformability) capture program drop check_matrix_stability program define check_matrix_stability - + matrix symeigen X lambda = V_trimmed scalar max_eig = lambda[1,1] scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - + if max_eig < 1.0e-12 { display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." display as error "The Variance-Covariance matrix is likely singular." exit 999 } - + display "Stability Check Passed: Max Eigenvalue is " max_eig - + if min_ratio < 1.0e-12 { display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio exit 506 } - + display "Stability Check Passed. Min/Max ratio: " min_ratio - + +end + + +* Paste estimates and var-cov matrices to Excel +capture program drop write_all_to_excel +program define write_all_to_excel + + display "Writing Var-Cov matrix" + quietly putexcel B2 = matrix(b_trimmed') + quietly putexcel C2 = matrix(V_trimmed) + display "Done" + end * Export labels to Excel (both vertical and horizontal) capture program drop export_labels_to_excel program define export_labels_to_excel - - syntax, sheet(string) - - * Set up Excel file - putexcel set "$dir_results/reg_socialcare", sheet("`sheet'") modify - - * Vertical labels - forvalues i = 1/`n_labels' { - local row = `i' + 1 - quietly putexcel A`row' = "`lbl`i''" - } - - * Horizontal labels - use Mata to generate column names + + syntax, domain(string) sheet(string) + + // Set up Excel file + putexcel set "$dir_results/reg_`domain'", sheet("`sheet'") modify + + // Collect labels from locals and write via xl() — avoids stata() overhead per cell mata: { + real scalar n, i n = strtoreal(st_local("n_labels")) - for (j=1; j<=n; j++) { - col_num = j + 2 - col_name = "" - n_temp = col_num - while (n_temp > 0) { - rem = mod(n_temp - 1, 26) - col_name = char(65 + rem) + col_name - n_temp = floor((n_temp - 1) / 26) - } - st_local("col_" + strofreal(j), col_name) - } + string scalar path + path = st_global("dir_results") + "/reg_" + st_local("domain") + ".xlsx" + class xl scalar xbook + xbook = xl() + xbook.load_book(path) + xbook.set_sheet(st_local("sheet")) + for (i=1; i<=n; i++) xbook.put_string(i+1, 1, st_local("lbl" + strofreal(i))) + for (i=1; i<=n; i++) xbook.put_string(1, i+2, st_local("lbl" + strofreal(i))) + xbook.close_book() } - - * Now write using the column names from Mata - forvalues j = 1/`n_labels' { - quietly putexcel `col_`j''1 = "`lbl`j''" - } - + display "Exported `n_labels' labels to sheet `sheet'" - + end * Export goodness of fit statistics for probit/logit capture program drop export_gof_probit program define export_gof_probit - - syntax, row(integer) label(string) - - putexcel set "$dir_results/reg_socialcare", sheet("Gof") modify - + + syntax, domain(string) row(integer) label(string) + + putexcel set "$dir_results/reg_`domain'", sheet("Gof") modify + local row1 = `row' local row2 = `row' + 1 local row3 = `row' + 2 - + putexcel A`row1' = "`label'", bold putexcel A`row2' = "Pseudo R-squared" putexcel B`row2' = r2_p @@ -172,100 +462,126 @@ program define export_gof_probit putexcel F`row2' = chi2 putexcel E`row3' = "Log likelihood" putexcel F`row3' = ll - + end * Export goodness of fit statistics for OLS capture program drop export_gof_ols program define export_gof_ols - - syntax, row(integer) label(string) - - putexcel set "$dir_results/reg_socialcare", sheet("Gof") modify - + + syntax, domain(string) row(integer) label(string) + + putexcel set "$dir_results/reg_`domain'", sheet("Gof") modify + local row1 = `row' local row2 = `row' + 1 local row3 = `row' + 2 - + putexcel A`row1' = "`label'", bold putexcel A`row2' = "R-squared" putexcel B`row2' = r2 putexcel A`row3' = "N" putexcel B`row3' = N_sample - + end * Save raw results to Excel and Word capture program drop save_raw_results program define save_raw_results - - syntax, process(string) title(string) [ifcond(string)] - - * Save to Excel + + syntax, domain(string) process(string) title(string) [ifcond(string)] + + // Save to Excel matrix results = r(table) matrix results = results[1..6,1...]' - - putexcel set "$dir_raw_results/social_care/socialcare", /// + + putexcel set "$dir_raw_results/`domain'/`domain'", /// sheet("Process `process'") replace putexcel A3 = matrix(results), names nformat(number_d2) putexcel J4 = matrix(e(V)) - - * Save to Word (conditional on outreg2 being installed) + + // Save to Word (conditional on outreg2 being installed) capture which outreg2 if _rc == 0 { if "`ifcond'" != "" { local note `"addnote("Note: Regression if condition = (`ifcond')")"' } - - * Check if probit/logit or OLS - if "`e(cmd)'" == "probit" | "`e(cmd)'" == "logit" { + + // Check if probit/logit/ologit or OLS + if "`e(cmd)'" == "probit" | "`e(cmd)'" == "logit" | "`e(cmd)'" == "ologit" | "`e(cmd)'" == "gologit2" { outreg2 stats(coef se pval) using /// - "$dir_raw_results/social_care/`process'.doc", replace /// + "$dir_raw_results/`domain'/`process'.doc", replace /// title("`title'") ctitle(Model) label side dec(2) noparen /// addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) `note' } else { outreg2 stats(coef se pval) using /// - "$dir_raw_results/social_care/`process'.doc", replace /// + "$dir_raw_results/`domain'/`process'.doc", replace /// title("`title'") ctitle(Model) label side dec(2) noparen /// addstat(R2, e(r2)) `note' } } - + end * Main export routine: combines matrix operations, stability checks, and Excel export capture program drop export_results_to_excel program define export_results_to_excel - - syntax, sheet(string) [probit] - - * Store estimates + + syntax, domain(string) sheet(string) [probit ologit gformula maxestimates(integer 11)] + + // Store estimates matrix b = e(b) matrix V = e(V) - - * Trim zero coefficients - mata: trim_matrices() - - * Check matrix stability - check_matrix_stability - - * Export to Excel - use modify mode (file already created in setup) - putexcel set "$dir_results/reg_socialcare", sheet("`sheet'") modify + + // For ologit, reorder cuts to end before trimming + if "`ologit'" == "ologit" { + mata: reorder_cuts_to_end() + } + + // Trim zero coefficients + trim_matrices + + // For gformula, further truncate to first maxestimates non-zero estimates + if "`gformula'" == "gformula" { + truncate_to_n, maxn(`maxestimates') + } + + // Check matrix stability (skip for gformula) + if "`gformula'" != "gformula" { + check_matrix_stability + } + + // Export to Excel - use modify mode (file already created in setup) + putexcel set "$dir_results/reg_`domain'", sheet("`sheet'") modify putexcel A1 = "REGRESSOR" putexcel B1 = "COEFFICIENT" - - * Write coefficients cell-by-cell - mata: write_all_to_excel() - - * Extract and export labels - mata: extract_and_export_labels("`sheet'") - - * Store model statistics - if "`probit'" == "probit" { + + // Write coefficient and variance-covariance matrices + if "`gformula'" == "gformula" { + putexcel C1 = "VARIANCE" + mata: write_diagonal_to_excel() + } + else { + write_all_to_excel + } + + // Extract and export labels using bulk xl() writes (domain passed for file path) + if "`ologit'" == "ologit" { + mata: extract_and_export_labels("`domain'", "`sheet'", 0, 1) + } + else if "`gformula'" == "gformula" { + mata: extract_and_export_labels("`domain'", "`sheet'", `maxestimates', 0) + } + else { + mata: extract_and_export_labels("`domain'", "`sheet'", 0, 0) + } + + // Store model statistics + if "`probit'" == "probit" | "`ologit'" == "ologit" { scalar r2_p = e(r2_p) scalar chi2 = e(chi2) scalar ll = e(ll) @@ -274,80 +590,401 @@ program define export_results_to_excel scalar r2 = e(r2) } scalar N_sample = e(N) - + end +* Split full Heckman e(b)/e(V) into outcome and selection equation sub-matrices. +* Stores: b_outcome, V_outcome, b_select, V_select. +* Reads from matrices named b and V (set from e(b) and e(V) before calling). +* Identifies equations by the column stripe: all non-"select" columns go to the +* outcome equation (this includes the IMR/lambda coefficient); "select" columns +* go to the selection equation. +capture program drop split_heckman_matrices +program define split_heckman_matrices + + local k = colsof(b) + local outcome_cols "" + local select_cols "" + + forvalues j = 1/`k' { + local eq : word `j' of `: coleq b' + if "`eq'" == "select" { + local select_cols "`select_cols' `j'" + } + else { + local outcome_cols "`outcome_cols' `j'" + } + } + + local n_out = wordcount("`outcome_cols'") + local n_sel = wordcount("`select_cols'") + + // Build b_outcome and V_outcome + matrix b_outcome = J(1, `n_out', 0) + local c = 1 + foreach j of local outcome_cols { + matrix b_outcome[1, `c'] = b[1, `j'] + local ++c + } + + matrix V_outcome = J(`n_out', `n_out', 0) + local r = 1 + foreach i of local outcome_cols { + local c = 1 + foreach j of local outcome_cols { + matrix V_outcome[`r', `c'] = V[`i', `j'] + local ++c + } + local ++r + } + + // Build b_select and V_select + matrix b_select = J(1, `n_sel', 0) + local c = 1 + foreach j of local select_cols { + matrix b_select[1, `c'] = b[1, `j'] + local ++c + } + + matrix V_select = J(`n_sel', `n_sel', 0) + local r = 1 + foreach i of local select_cols { + local c = 1 + foreach j of local select_cols { + matrix V_select[`r', `c'] = V[`i', `j'] + local ++c + } + local ++r + } + + display "Split Heckman matrices: `n_out' outcome eq params, `n_sel' selection eq params" + +end + + +* Write a label list to an Excel sheet both vertically (col A from row 2) +* and horizontally (row 1 from col C). Overwrites A1/B1 with standard headers. +capture program drop write_labels_to_excel +program define write_labels_to_excel + + syntax, domain(string) sheet(string) labels(string) + + putexcel set "$dir_results/reg_`domain'", sheet("`sheet'") modify + putexcel A1 = "REGRESSOR" + putexcel B1 = "COEFFICIENT" + + // Vertical: A2, A3, ... + local row = 1 + foreach var of local labels { + local ++row + putexcel A`row' = "`var'" + } + + // Horizontal: C1, D1, ... (offset by 2 since cols A and B are used) + local col = 2 + foreach var of local labels { + local ++col + if `col' <= 26 { + local letter = char(64 + `col') + putexcel `letter'1 = "`var'" + } + else { + local first = char(64 + int((`col' - 1) / 26)) + local second = char(65 + mod((`col' - 1), 26)) + putexcel `first'`second'1 = "`var'" + } + } + +end + + +* Export one stage of a Heckman model to Excel. +* Caller must set matrices b and V to the relevant stage before calling. +* Trims zeros, checks stability, writes coefs + var-cov, then writes labels. +capture program drop export_heckman_stage +program define export_heckman_stage + + syntax, domain(string) sheet(string) equation(string) + + trim_matrices + check_matrix_stability + + putexcel set "$dir_results/reg_`domain'", sheet("`sheet'") modify + putexcel A1 = "REGRESSOR" + putexcel B1 = "COEFFICIENT" + write_all_to_excel + + local is_outcome = ("`equation'" == "outcome") + mata: extract_heckman_stage_labels("`domain'", "`sheet'", `is_outcome') + +end + + +/*============================================================================== + COMPLETE WORKFLOW PROGRAMS +==============================================================================*/ + * Complete workflow: save sample, export results, and clean up capture program drop process_regression program define process_regression - - syntax, process(string) sheet(string) title(string) gofrow(integer) /// - goflabel(string) [ifcond(string) probit] - - * Save raw results - save_raw_results, process("`process'") title("`title'") ifcond("`ifcond'") - - * Save sample for validation + + syntax, domain(string) process(string) sheet(string) title(string) /// + gofrow(integer) goflabel(string) [ifcond(string) /// + probit gformula maxestimates(integer 11)] + + //Save raw results + save_raw_results, domain("`domain'") process("`process'") /// + title("`title'") ifcond("`ifcond'") + + // Save sample for validation gen in_sample = e(sample) predict p save "$dir_validation_data/`process'_sample", replace - - * Export results to Excel - if "`probit'" == "probit" { - export_results_to_excel, sheet("`sheet'") probit - export_gof_probit, row(`gofrow') label("`goflabel'") + + // Export results to Excel + if "`gformula'" == "gformula" { + export_results_to_excel, domain("`domain'") sheet("`sheet'") /// + gformula maxestimates(`maxestimates') + export_gof_ols, domain("`domain'") row(`gofrow') label("`goflabel'") + } + else if "`probit'" == "probit" { + export_results_to_excel, domain("`domain'") sheet("`sheet'") probit + export_gof_probit, domain("`domain'") row(`gofrow') label("`goflabel'") } else { - export_results_to_excel, sheet("`sheet'") - export_gof_ols, row(`gofrow') label("`goflabel'") + export_results_to_excel, domain("`domain'") sheet("`sheet'") + export_gof_ols, domain("`domain'") row(`gofrow') label("`goflabel'") } - - * Clean up + + // Clean up drop in_sample p scalar drop _all matrix drop _all - + end -* Specialized workflow for multinomial logit models -capture program drop process_mlogit -program define process_mlogit - - syntax, process(string) sheet(string) title(string) gofrow(integer) /// - goflabel(string) outcomes(integer) [ifcond(string)] - - * Save raw results (skip outreg2 for mlogit - it has issues) - matrix results = r(table) - matrix results = results[1..6,1...]' - putexcel set "$dir_raw_results/social_care/socialcare", /// - sheet("Process `process'") replace - putexcel A3 = matrix(results), names nformat(number_d2) - putexcel J4 = matrix(e(V)) - - * Save sample for validation - gen in_sample = e(sample) - - * Generate predictions (number depends on outcomes) - if `outcomes' == 3 { - predict p1 p2 p3 - } - else if `outcomes' == 4 { - predict p1 p2 p3 p4 - } - else if `outcomes' == 5 { - predict p1 p2 p3 p4 p5 - } - - save "$dir_validation_data/`process'_sample", replace - - * Export results to Excel - export_results_to_excel, sheet("`sheet'") probit - export_gof_probit, row(`gofrow') label("`goflabel'") - - * Clean up - drop in_sample p* - scalar drop _all - matrix drop _all - + +* Specialized workflow for ordered logit models +capture program drop process_ologit +program define process_ologit + + syntax, domain(string) process(string) sheet(string) title(string) /// + gofrow(integer) goflabel(string) [ifcond(string)] + + // Save raw results + save_raw_results, domain("`domain'") process("`process'") /// + title("`title'") ifcond("`ifcond'") + + // Save sample for validation + gen in_sample = e(sample) + predict p + save "$dir_validation_data/`process'_sample", replace + + // Export results to Excel + export_results_to_excel, domain("`domain'") sheet("`sheet'") ologit + + // Export GoF + export_gof_probit, domain("`domain'") row(`gofrow') label("`goflabel'") + + // Clean up + drop in_sample p + scalar drop _all + matrix drop _all + +end + + +* Specialized workflow for generalized ordered logit models +capture program drop process_gologit +program define process_gologit + + syntax, domain(string) process(string) sheet(string) title(string) /// + gofrow(integer) goflabel(string) outcomes(integer) [ifcond(string)] + // Note: outcomes() = total number of categories INCLUDING the base category + + // Save raw results + matrix results = r(table) + matrix results = results[1..6,1...]' + putexcel set "$dir_raw_results/`domain'/`domain'", /// + sheet("Process `process'") modify + putexcel A3 = matrix(results), names nformat(number_d2) + putexcel J4 = matrix(e(V)) + + // Save to Word + capture which outreg2 + if _rc == 0 { + if "`ifcond'" != "" { + local note `"addnote("Note: Regression if condition = (`ifcond')")"' + } + outreg2 stats(coef se pval) using /// + "$dir_raw_results/`domain'/`process'.doc", replace /// + title("`title'") ctitle(Education level) label side dec(2) noparen /// + addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) `note' + } + + // Save sample and predictions + gen in_sample = e(sample) + local plist "" + forvalues k = 1/`outcomes' { + local plist "`plist' p`k'" + } + predict `plist' + save "$dir_validation_data/`process'_sample", replace + + // Store model summary statistics + scalar r2_p = e(r2_p) + scalar chi2 = e(chi2) + scalar ll = e(ll) + scalar N_sample = e(N) + + // Store estimates in matrices + matrix b = e(b) + matrix V = e(V) + + // Raw output + putexcel set "$dir_results/reg_`domain'", sheet("`sheet'_raw") modify + putexcel A1 = matrix(b'), names nformat(number_d2) + putexcel A1 = "CATEGORY" + putexcel B1 = "REGRESSOR" + putexcel C1 = "COEFFICIENT" + + // Build gologit structure + mata: build_gologit_structure(`outcomes') + + // Eigenvalue stability check + matrix symeigen X lambda = nonzero_var_structure + scalar max_eig = lambda[1,1] + scalar min_ratio = lambda[1, colsof(lambda)] / max_eig + if max_eig < 1.0e-12 { + display as error "CRITICAL ERROR: Variance-covariance matrix is near singular." + exit 999 + } + if min_ratio < 1.0e-12 { + display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio + exit 506 + } + display "VCV stability check passed. Max eigenvalue: " max_eig + display "Min/Max ratio: " min_ratio + + // Export matrices to Excel + putexcel set "$dir_results/reg_`domain'", sheet("`sheet'") modify + putexcel A1 = "REGRESSOR" + putexcel B1 = "COEFFICIENT" + putexcel B2 = matrix(nonzero_b_structure') + putexcel C2 = matrix(nonzero_var_structure) + + // Extract and export labels using bulk xl() writes (domain passed for file path) + mata: export_labels_gologit("`domain'", "`sheet'") + + // Goodness of fit + putexcel set "$dir_results/reg_`domain'", sheet("Gof") modify + local row2 = `gofrow' + 1 + local row3 = `gofrow' + 2 + putexcel A`gofrow' = "`goflabel'", bold + putexcel A`row2' = "Pseudo R-squared" + putexcel B`row2' = r2_p + putexcel A`row3' = "N" + putexcel B`row3' = N_sample + putexcel E`row2' = "Chi^2" + putexcel F`row2' = chi2 + putexcel E`row3' = "Log likelihood" + putexcel F`row3' = ll + + // Clean up + drop in_sample `plist' + scalar drop _all + matrix drop _all + +end + +* Specialized workflow for Heckman wage model +capture program drop process_heckman +program define process_heckman + + syntax, process(string) ifcond(string) savefile(string) /// + graphsubtitle(string) /// + wordfile(string) wordtitle(string) /// + wordctitle(string) /// + sheet2(string) sheet1(string) /// + rmserow(integer) + + // Raw Word output + capture which outreg2 + if _rc == 0 { + outreg2 stats(coef se pval) using "`wordfile'", replace /// + title("`wordtitle'") ctitle("`wordctitle'") /// + label side dec(2) noparen + } + + // Stability check on full joint var-cov (captures e() before any matrix work) + local sigma_val = e(sigma) + matrix b = e(b) + matrix V = e(V) + trim_matrices + check_matrix_stability + + // Predictions and bias correction (log to level) + cap drop pred epsilon + predict pred if `ifcond', ycond + replace lwage_hour_hat = pred if `ifcond' + gen in_sample_`process' = e(sample) + gen epsilon = rnormal() * `sigma_val' + replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `ifcond' + + // Diagnostic histogram + twoway /// + (hist wage_hour if `ifcond', width(0.5) lcolor(gs12) fcolor(gs12)) /// + (hist pred_hourly_wage if `ifcond' & (!missing(wage_hour)), /// + width(0.5) fcolor(none) lcolor(red)), /// + title("Gross Hourly Wage (Level)") subtitle("`graphsubtitle'") /// + xtitle("GBP") legend(lab(1 "UKHLS") lab(2 "Prediction")) /// + note("Notes: Sample condition `ifcond'", size(vsmall)) + graph export "${dir_raw_results}/wages/`process'_hist.png", replace + graph drop _all + + sum wage_hour if `ifcond' [aw=${weight}] + sum pred_hourly_wage if `ifcond' & (!missing(wage_hour)) [aw=$weight] + + // Save validation data + save "$dir_validation_data/`savefile'", replace + cap drop pred epsilon + + // Split and export results to Excel + matrix b = e(b) + matrix V = e(V) + split_heckman_matrices + + // Second stage, reg_wages + matrix b = b_outcome + matrix V = V_outcome + export_heckman_stage, domain("wages") sheet("`sheet2'") equation("outcome") + + // First stage, reg_employment_selection + matrix b = b_select + matrix V = V_select + export_heckman_stage, domain("employment_selection") sheet("`sheet1'") /// + equation("select") + + // RMSE + cap drop residuals squared_residuals + gen residuals = lwage_hour - lwage_hour_hat + gen squared_residuals = residuals^2 + preserve + keep if `ifcond' + sum squared_residuals + local rmse = sqrt(r(mean)) + di "RMSE for `process': " `rmse' + putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify + putexcel A1 = "REGRESSOR" + putexcel B1 = "COEFFICIENT" + putexcel A`rmserow' = "`process'" + putexcel B`rmserow' = `rmse' + restore + cap drop residuals squared_residuals + + cap drop lambda + scalar drop _all + matrix drop _all + end diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_education.do b/input/InitialPopulations/compile/RegressionEstimates/reg_education.do deleted file mode 100644 index 43a17efbb..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_education.do +++ /dev/null @@ -1,889 +0,0 @@ -****************************************************************************************** -* PROJECT: SimPaths UK -* SECTION: Education -* OBJECT: Final Probit & Generalised Logit Models - Weighted -* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj -* LAST UPDATE: 18 Feb 2026 AK -* COUNTRY: UK -* -* NOTES: -* -***************************************************************************************** - -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_education.log", replace -******************************************************************* - -* Set Excel file - -* Info sheet -putexcel set "$dir_results/reg_education", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing projection of education status" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold - -putexcel A5 = "E1a" -putexcel B5 = "Probit regression estimates of exiting education" - -putexcel A6 = "E1b" -putexcel B6 = "Probit regression estimates of returning to education" - -putexcel A7 = "E2" -putexcel B7 = "Generalized ordered logit regression estimates of education attainment - individuals aged 16+ exiting education." - -putexcel A8 = "E2_raw" -putexcel B8 = "Raw generalized ordered logit regression estimates of education attainment - individuals aged 16+ exiting education. Useful for the 'Gologit predictor' file." - -putexcel A10 = "Notes:", bold -putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" -putexcel B11 = "Conditions for processes are defined as globals in master.do" -//putexcel B12 = "E1a: Compared to the previous version, where age and age squared were used, age is now centered (at age 23) and its effect is allowed to change after age 18." - -putexcel set "$dir_results/reg_education", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - - -/********************************* PREPARE DATA *******************************/ - -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - - -/********************************** ESTIMATION ********************************/ - -/****************** E1a: PROBABILITY OF REMAINING IN EDUCATION ****************/ -display "${e1a_if_condition}" - -probit Dst i.Dgn Dag Dag_sq /*Dag_c Dag_c_sq Dag_post18_sq*/ li.Ded /// - li.Dehmf_c3_Medium li.Dehmf_c3_Low /// - li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${e1a_if_condition} /// - [pw=dwt], vce(robust) - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/education/education", sheet("Process E1a") /// - replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using "$dir_raw_results/education/E1a.doc", /// - replace /// -title("Process E1a: Probability Remaining In Education") /// - ctitle(Continuing student) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${e1a_if_condition})"') - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample estimate validation -save "$dir_validation_data/E1a_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Save estimates for use in SimPaths - -* Store estimates -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - -* Export into Excel -putexcel set "$dir_results/reg_education", sheet("E1a") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve -putexcel set "$dir_results/reg_education", sheet("E1a") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_education", sheet("E1a") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_education", sheet("Gof") modify - -putexcel A3 = "E1a - Leaving education", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - - -/****************** E1b: PROBABILITY OF RETURNING TO EDUCATION ****************/ -display "${e1b_if_condition}" - -probit der i.Dgn Dag Dag_sq li.Dcpst_Partnered /// -li.Deh_c4_High li.Deh_c4_Low /// -li.Dehmf_c3_Medium li.Dehmf_c3_Low /// -li.Les_c3_NotEmployed li.Les_c3_Employed /// -l.Dnc l.Dnc02 /// -$regions Year_transformed Y2020 Y2021 $ethnicity /// -if ${e1b_if_condition} /// - [pw=dwt], vce(robust) - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/education/education", sheet("Process E1b") /// - modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using "$dir_raw_results/education/E1b.doc", /// - replace /// -title("Process E1b: Probability Returning To Education") /// - ctitle(Returning student) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${e1b_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample for later use (internal validation) -save "$dir_validation_data/E1b_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Prepare to store results in Excel - -* Eliminate rows and columns containing zeros (baseline cats) -matrix b = e(b) -matrix V = e(V) - - -mata: - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - -* Export into Excel -putexcel set "$dir_results/reg_education", sheet("E1b") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve -putexcel set "$dir_results/reg_education", sheet("E1b") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) - - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_education", sheet("E1b") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_education", sheet("Gof") modify - -putexcel A8 = "E1b - Returning to education", bold - -putexcel A10 = "Pseudo R-squared" -putexcel B10 = r2_p -putexcel A11 = "N" -putexcel B11 = N_sample -putexcel E10 = "Chi^2" -putexcel F10 = chi2 -putexcel E11 = "Log likelihood" -putexcel F11 = ll - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - - -/****************** E2: EDUCATION ATTAINMENT WHEN LEAVE SCHOOL ****************/ -display "${e2_if_condition}" - -gologit2 deh_c3_recoded i.Dgn Dag Dag_sq /// - i.L_Dehmf_c3_Medium i.L_Dehmf_c3_Low /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${e2_if_condition} [pw=dwt], autofit - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/education/education", sheet("Process E2") /// - modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - - -outreg2 stats(coef se pval) using "$dir_raw_results/education/E2.doc", /// - replace /// -title("Process E2: Educational Attainment When Leave School") /// - ctitle(Education level) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${e2_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p1 p2 p3 - -* Save sample for estimates validation -save "$dir_validation_data/E2_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Raw output -putexcel set "$dir_results/reg_education", sheet("E2_raw") modify -putexcel A1 = matrix(b'), names nformat(number_d2) -putexcel A1 = "CATEGORY" -putexcel B1 = "REGRESSOR" -putexcel C1 = "COEFFICIENT" - -* Estimated coefficients -scalar no_coefs_all = colsof(b) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - nonzero_b = select(b, keep) - - nonzero_b - - // Return to Stata - st_matrix("nonzero_b", nonzero_b) - st_matrix("nonzero_b_flag", keep) -end - -* Inspect -matrix list b -matrix list nonzero_b -matrix list nonzero_b_flag - -* Save dimensions -scalar no_nonzero_b = colsof(nonzero_b) -scalar no_nonzero_b_per = no_nonzero_b / 2 - -* Address repetition of proportional odds covariates - -* Generate repetition/unique observation flag -mata: - // Import matrices into mata - nonzero_b_mata = st_matrix("nonzero_b") - - // Generate binary vector =1 if coefficient repeated - n = cols(nonzero_b_mata) - repetition_flag = J(n, 1, 0) - - // use tolerance based comparison to avoid precision errors - tol = 1e-8 - - for (i = 1; i <= n; i++) { - for (j = 1; j <= n; j++) { - if (i != j && abs(nonzero_b_mata[i] - nonzero_b_mata[j]) < tol) { - repetition_flag[i] = 1 - break - } - } - } - repetition_flag - - // Generate binary vector =1 if coefficient not repeated - unique_flag = 1 :- repetition_flag - - // Return to Stata - st_matrix("repetition_flag", repetition_flag') - st_matrix("unique_flag", unique_flag') - -end - -* Generate vector to multiply the coef vector with to eliminate the repetitions -* of coefficients for vars that satify the proportional odds assumptions -matrix structure_a = J(1,no_nonzero_b_per,1) -matrix structure_b = unique_flag[1,no_nonzero_b_per+1..no_nonzero_b] -matrix structure = structure_a, structure_b - -* Inspect -matrix list structure_a -matrix list structure_b -matrix list structure -matrix list nonzero_b - -* Eliminate repetitions -mata: - // Call matrices into mata - var = st_matrix("var") - structure = st_matrix("structure") - nonzero_b = st_matrix("nonzero_b") - - // Convert reptitions into zeros - b_structure = structure :* nonzero_b - - b_structure - - // Eliminate zeros - keep = (b_structure :!= 0) - - nonzero_b_structure = select(b_structure, keep) - - // Export to Stata - st_matrix("b_structure", b_structure) - st_matrix("nonzero_b_structure", nonzero_b_structure) - -end - -matrix list nonzero_b_structure - -* Export into Excel -putexcel set "$dir_results/reg_education", sheet("E2") modify -putexcel A1 = matrix(nonzero_b_structure'), names //nformat(number_d2) - - -* Variance-covariance matrix -* Eliminate zeros (baseline categories) -mata: - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - V_trimmed - - // Return to Stata - st_matrix("var", V_trimmed) -end - -matrix list var - - -* Address repetition due to proportional odds being satisfied for some covars -matrix square_structure_a = J(no_nonzero_b,1,1) * structure -matrix square_structure_b = square_structure_a' - -matrix list square_structure_a -matrix list square_structure_b -mata: - // Call matrices into mata - var = st_matrix("var") - - // Create structure matrix (0 = eliminate) - square_structure_a = st_matrix("square_structure_a") - square_structure_b = st_matrix("square_structure_b") - - // Element-by-element multiplication - square_structure = square_structure_a :* square_structure_b - var_structure = square_structure :* var - - // Eliminate zeros - row_keep = rowsum(abs(var_structure)) :!= 0 - col_keep = colsum(abs(var_structure)) :!= 0 - - nonzero_var_structure = select(select(var_structure, row_keep), col_keep) - - // Return to Stata - st_matrix("nonzero_var_structure", nonzero_var_structure) -end - -matrix list nonzero_var_structure - -* Export to Excel -putexcel set "$dir_results/reg_education", sheet("E2") modify -putexcel C2 = matrix(nonzero_var_structure) - -*======================================================================= -* Eigenvalue stability check for trimmed variance-covariance matrix - -matrix symeigen X lambda = nonzero_var_structure - -* Largest eigenvalue -scalar max_eig = lambda[1,1] - -* Ratio of smallest to largest eigenvalue -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Check 1: near-singularity -if max_eig < 1.0e-12 { - display as error "CRITICAL ERROR: Variance-covariance matrix is near singular." - display as error "Max eigenvalue = " max_eig - exit 999 -} - -* Check 2: ill-conditioning -if min_ratio < 1.0e-12 { - display as error "Matrix is ill-conditioned." - display as error "Min/Max eigenvalue ratio = " min_ratio - exit 506 -} - -display "VCV stability check passed." -display "Max eigenvalue: " max_eig -display "Min/Max ratio: " min_ratio -*======================================================================= - -* Labels -preserve - -putexcel set "$dir_results/reg_education", sheet("E2") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - - * Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -* Run Mata block -mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - unique_flag = st_matrix("unique_flag")' - structure = st_matrix("structure")' - stripe = st_matrixcolstripe("e(b)") - - // Extract variable and category names - catnames = stripe[.,1] - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - catnames_no_bl = select(catnames, nonzero_b_flag :== 1) - - // Handle lags - labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) - - // Add category name when flag is not unique - labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) - - // Clean labels - labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Filter for structure == 1 - nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) - - // Add header row - nonzero_labels_structure = "v1"\nonzero_labels_structure - - // Write to temporary file - fh = fopen(st_local("dir_results") + "/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) -end - - * Import cleaned labels into Stata as new dataset - import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_education", sheet("E2") modify - - * Vertical labels - sum n, meanonly - local N = r(max)+1 - - forvalue i = 2/`N' { - local j = `i' - 1 - putexcel A`i' = v1[`j'] - } - - * Horizontal labels - sum n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - *Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Goodness of fit - -putexcel set "$dir_results/reg_education", sheet("Gof") modify - -putexcel A13 = "E2 - Education attainment", bold - -putexcel A15 = "Pseudo R-squared" -putexcel B15 = r2_p -putexcel A16 = "N" -putexcel B16 = N_sample - - -* Clean up -drop in_sample p1 p2 p3 -scalar drop _all -matrix drop _all - - -capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_fertility.do b/input/InitialPopulations/compile/RegressionEstimates/reg_fertility.do deleted file mode 100644 index f26a980c1..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_fertility.do +++ /dev/null @@ -1,306 +0,0 @@ -********************************************************************************* -* PROJECT: SimPaths UK -* SECTION: Fertility -* OBJECT: Final Probit Models -* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj -* LAST UPDATE: 18 Feb 2026 AK -* COUNTRY: UK -* -* NOTES: -* Combined former a and b processes. -******************************************************************************** -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_fertility.log", replace -******************************************************************* - -* Set Excel file - -* Info sheet - -putexcel set "$dir_results/reg_fertility", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing projection of fertility" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "F1" -putexcel B5 = "Probit regression estimates of the probability of having a child for women aged 18-44" - -putexcel A10 = "Notes:", bold -putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" -putexcel B11 = "Conditions for processes are defined as globals in master.do" -putexcel B12 = "Combined former processes F1a and F1b" - -putexcel set "$dir_results/reg_fertility", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - -*-------------------------------------------------- -* Any-children dummy (dchpd collapsing) -*-------------------------------------------------- -replace dchpd = 1 if inlist(dchpd, 2, 3, 4, 5) -fre dchpd - -/********************************** ESTIMATION ********************************/ - -/*********************** F1: PROBABILITY OF HAVING A CHILD ********************/ -display "${f1_if_condition}" - -probit dchpd /// - i.Ded Dag Dag_sq /// - l.Dhe_pcs l.Dhe_mcs /// - Dcpst_Single li.Dcpst_Single /// - /*Ded_Dag Ded_Dhe_pcs Ded_Dhe_mcs*/ /// - Ded_Dcpst_Single /*Ded_Dcpst_Single_L1*/ /// - li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// - l.Dnc l.Dnc02 /// - i.Deh_c4_Low i.Deh_c4_High /// - FertilityRate /// - /*li.Les_c3_Student*/ li.Les_c3_NotEmployed /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${f1_if_condition} [pw=dwt], vce(robust) - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/fertility/fertility", /// - sheet("Process F1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using "$dir_raw_results/fertility/F1.doc", replace /// - title("Process F1: Probability of Having a Child") /// - ctitle(Having a Child) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${f1_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample for estimate validation -save "$dir_validation_data/F1_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates -matrix b = e(b) -matrix V = e(V) - -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - -* Export into Excel -putexcel set "$dir_results/reg_fertility", sheet("F1") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve -putexcel set "$dir_results/reg_fertility", sheet("F1") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_fertility", sheet("F1") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Export model fit statistics -putexcel set "$dir_results/reg_fertility", sheet("Gof") modify - -putexcel A3 = "U1- Partnership formation", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - -capture log close - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_health.do b/input/InitialPopulations/compile/RegressionEstimates/reg_health.do deleted file mode 100644 index 5195f1269..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_health.do +++ /dev/null @@ -1,614 +0,0 @@ -******************************************************************************** -* PROJECT: SimPaths UK -* SECTION: Health -* OBJECT: Health status and Disability -* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj -* LAST UPDATE: 18 Feb 2026 AK -* COUNTRY: UK -* -* NOTES: Combined former a and b processes. -* -******************************************************************************** -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_health.log", replace -******************************************************************* - -* Set Excel file - -* Info sheet - -putexcel set "$dir_results/reg_health", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing projection self-reported health status" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold - -putexcel A5 = "H1" -putexcel B5 = "Generalized ordered logit regression estimates of self reported health status" -putexcel B6 = "Covariates that satisfy the parallel lines assumption have one estimate for all categories of the dependent variable and are present once in the table" -putexcel B7 = "Covariates that do not satisfy the parallel lines assumption have an estimate for each estimated category of the dependent variable. These covariates have the dependent variable category appended to their name." - -putexcel A8 = "H1_raw" -putexcel B8 = "Raw generalized ordered logit regression estimates of self reported health status. Useful for the 'Gologit predictor' file." - -putexcel A11 = "H2" -putexcel B11 = "Probit regression estimates of the probability of being long-term sick or disabled" - -putexcel A15 = "Notes:", bold -putexcel B15 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" -putexcel B16 = "Conditions for processes are defined as globals in master.do" -putexcel B17 = "Combined former processes H1a and H1b" - -putexcel set "$dir_results/reg_health", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - - -/********************************** ESTIMATION ********************************/ - -/********************** H1: SELF-REPORTED HEALTH STATUS ***********************/ -display "${h1_if_condition}" - -gologit2 dhe Ded Dgn Dag Dag_sq /// /*Ded_Dag Ded_Dag_sq Ded_Dgn /// */ - L_Dhe_pcs L_Dhe_mcs /// - i.Deh_c4_Medium i.Deh_c4_Low i.Deh_c4_Na /// - /*L_Les_c4_Student*/ L_Les_c4_NotEmployed L_Les_c4_Retired /// - L_Ydses_c5_Q2 L_Ydses_c5_Q3 L_Ydses_c5_Q4 L_Ydses_c5_Q5 /// - L_Dhhtp_c4_CoupleChildren L_Dhhtp_c4_SingleNoChildren L_Dhhtp_c4_SingleChildren L_Dlltsd01 /// - $regions Year_transformed Y2020 Y2021 $ethnicity if /// - ${h1_if_condition} [pw=dwt], autofit - -*Note: In gologit2, the coefficients show how covariates affect the log-odds of being above a certain category vs. at or below it. - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/health/health", /// - sheet("Process H1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/health/H1.doc", replace /// -title("Process H1: Self-Reported Health Status") /// - ctitle(Health) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${h1_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p1 p2 p3 p4 p5 - -* Save sample for estimate validation -save "$dir_validation_data/H1_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) - - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Raw output -putexcel set "$dir_results/reg_health", sheet("H1_raw") modify -putexcel A1 = matrix(b'), names nformat(number_d2) -putexcel A1 = "CATEGORY" -putexcel B1 = "REGRESSOR" -putexcel C1 = "COEFFICIENT" - -* Estimated coefficients -scalar no_coefs_all = colsof(b) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - nonzero_b = select(b, keep) - - // Inspect - nonzero_b - - // Return to Stata - st_matrix("nonzero_b", nonzero_b) - st_matrix("nonzero_b_flag", keep) -end - -* Inspect -matrix list b -matrix list nonzero_b -matrix list nonzero_b_flag - -* Save dimensions -scalar no_nonzero_b = colsof(nonzero_b) -scalar no_nonzero_b_per = no_nonzero_b / 4 // number of categories-1 - -* Address repetition of proportional odds covariates - -* Generate repetition/unique observation flag -mata: - // Import matrices into mata - nonzero_b_mata = st_matrix("nonzero_b") - - // Generate binary vector =1 if coefficient repeated - n = cols(nonzero_b_mata) - repetition_flag = J(n, 1, 0) - - // use tolerance based comparison to avoid precision errors - tol = 1e-8 - - for (i = 1; i <= n; i++) { - for (j = 1; j <= n; j++) { - if (i != j && abs(nonzero_b_mata[i] - nonzero_b_mata[j]) < tol) { - repetition_flag[i] = 1 - break - } - } - } - repetition_flag - - // Generate binary vector =1 if coefficient not repeated - unique_flag = 1 :- repetition_flag - - // Return to Stata - st_matrix("repetition_flag", repetition_flag') - st_matrix("unique_flag", unique_flag') - -end - -* Generate vector to multiply the coef vector with to eliminate the -* repetitions of coefficients for vars that satify the proportional odds -* assumptions -matrix structure_a = J(1,no_nonzero_b_per,1) -matrix structure_b = unique_flag[1,no_nonzero_b_per+1..no_nonzero_b] -matrix structure = structure_a, structure_b - -* Inspect -matrix list structure_a -matrix list structure_b -matrix list structure -matrix list nonzero_b - -* Eliminate repetitions -mata: - // Call matrices into mata - var = st_matrix("var") - structure = st_matrix("structure") - nonzero_b = st_matrix("nonzero_b") - - // Convert reptitions into zeros - b_structure = structure :* nonzero_b - - b_structure - - // Eliminate zeros - keep = (b_structure :!= 0) - - nonzero_b_structure = select(b_structure, keep) - - // Export to Stata - st_matrix("b_structure", b_structure) - st_matrix("nonzero_b_structure", nonzero_b_structure) - -end - -matrix list nonzero_b_structure - -* Export into Excel -putexcel set "$dir_results/reg_health", sheet("H1") modify -putexcel A1 = matrix(nonzero_b_structure'), names nformat(number_d2) - - -* Variance-covariance matrix -* ELiminate zeros (baseline categories) -mata: - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - V_trimmed - - // Return to Stata - st_matrix("var", V_trimmed) -end - -matrix list var - -* Address repetition due to proportional odds being satisfied for some covars -matrix square_structure_a = J(no_nonzero_b,1,1) * structure -matrix square_structure_b = square_structure_a' - -matrix list square_structure_a -matrix list square_structure_b -mata: - // Call matrices into mata - var = st_matrix("var") - - // Create structure matrix (0 = eliminate) - square_structure_a = st_matrix("square_structure_a") - square_structure_b = st_matrix("square_structure_b") - - // Element-by-element multiplication - square_structure = square_structure_a :* square_structure_b - var_structure = square_structure :* var - - // Eliminate zeros - row_keep = rowsum(abs(var_structure)) :!= 0 - col_keep = colsum(abs(var_structure)) :!= 0 - - nonzero_var_structure = select(select(var_structure, row_keep), col_keep) - - // Return to Stata - st_matrix("nonzero_var_structure", nonzero_var_structure) -end - -matrix list nonzero_var_structure - -* Export to Excel -putexcel set "$dir_results/reg_health", sheet("H1") modify -putexcel C2 = matrix(nonzero_var_structure) - -*======================================================================= -* Eigenvalue stability check for trimmed variance-covariance matrix - -matrix symeigen X lambda = nonzero_var_structure - -* Largest eigenvalue -scalar max_eig = lambda[1,1] - -* Ratio of smallest to largest eigenvalue -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Check 1: near-singularity -if max_eig < 1.0e-12 { - display as error "CRITICAL ERROR: Variance-covariance matrix is near singular." - display as error "Max eigenvalue = " max_eig - exit 999 -} - -* Check 2: ill-conditioning -if min_ratio < 1.0e-12 { - display as error "Matrix is ill-conditioned." - display as error "Min/Max eigenvalue ratio = " min_ratio - exit 506 -} - -display "VCV stability check passed." -display "Max eigenvalue: " max_eig -display "Min/Max ratio: " min_ratio -*======================================================================= - -* Labels -preserve -putexcel set "$dir_results/reg_health", sheet("H1") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - * Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -* Run Mata block -mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - unique_flag = st_matrix("unique_flag")' - structure = st_matrix("structure")' - stripe = st_matrixcolstripe("e(b)") - - // Extract variable and category names - catnames = stripe[.,1] - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - catnames_no_bl = select(catnames, nonzero_b_flag :== 1) - - // Handle lags - labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) - - // Add category name when flag is not unique - labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) - - // Clean labels - labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Filter for structure == 1 - nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) - - // Add header row - nonzero_labels_structure = "v1"\nonzero_labels_structure - - // Write to temporary file - fh = fopen(st_local("dir_results") + "/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) -end - - * Import cleaned labels into Stata as new dataset - import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_health", sheet("H1") modify - - * Vertical labels - sum n, meanonly - local N = r(max)+1 - - forvalue i = 2/`N' { - local j = `i' - 1 - putexcel A`i' = v1[`j'] - } - - * Horizontal labels - sum n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - *Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Export model fit statistics -putexcel set "$dir_results/reg_health", sheet("Gof") modify - -putexcel A3 = "H1 - Health status", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample - -* Clean up -drop in_sample p1 p2 p3 p4 p5 -scalar drop _all -matrix drop _all - - -/**************** H2: PROBABILITY LONG-TERM SICK OR DISABLED ******************/ -display "${h2_if_condition}" - -probit dlltsd01 i.Dgn Dag Dag_sq /// - Deh_c4_Medium Deh_c4_Low Deh_c4_Na /// - L_Ydses_c5_Q2 L_Ydses_c5_Q3 L_Ydses_c5_Q4 L_Ydses_c5_Q5 /// - L_Dhe_pcs L_Dhe_mcs /// - L_Dlltsd01 /// - L_Dhhtp_c4_CoupleChildren L_Dhhtp_c4_SingleNoChildren L_Dhhtp_c4_SingleChildren /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${h2_if_condition} [pw = dwt], vce(robust) - - - * raw results -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_raw_results/health/health", sheet("Process H2") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_raw_results/health/H2.doc", replace /// -title("Process H2b: Probit regression estimates for being long-term sick or disabled - people aged 16+ not in continuous education") /// - ctitle(long-term sick or disabled) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -gen in_sample = e(sample) - -predict p - -* Save sample for later use (internal validation) -save "$dir_validation_data/H2_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_health", sheet("H2") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -putexcel set "$dir_results/reg_health", sheet("H2") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Mata: extract and clean labels -mata: - // Import matrices - nonzero_b_flag = st_matrix("nonzero_b_flag")' - stripe = st_matrixcolstripe("e(b)") - - // Extract varnames from stripe (2nd column) - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // Clean label vector - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - labels_no_bl = regexm(labels_no_bl, "^L\\.") :* (regexr(labels_no_bl, "^L\\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\\.") :* labels_no_bl) - labels_no_bl = regexm(labels_no_bl, "^1L\\.") :* (regexr(labels_no_bl, "^1L\\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\\.") :* labels_no_bl) - labels_no_bl = regexr(labels_no_bl, "_Dgn_L1$", "_Dgn") - - // Save as macro for writing labels from Stata - st_local("nice_labels", invtokens(labels_no_bl')) -end - -* Save cleaned labels into your original file -capture file close labelout -file open labelout using "$dir_results/temp_labels.txt", write replace -file write labelout "v1" _n // header for import -foreach lbl in `nice_labels' { - file write labelout "`lbl'" _n -} -file close labelout - -* Import cleaned labels from your file -import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) -gen n = _n - -* Export to Excel (vertical layout in column A) -putexcel set "$dir_results/reg_health", sheet("H2") modify -summarize n, meanonly -local N = r(max) + 1 -forvalue i = 2/`N' { - local j = `i' - 1 - putexcel A`i' = v1[`j'] -} - -* Export to Excel (horizontal layout in row 1, starting at column C) -forvalues j = 1/`N' { - local n = `j' + 2 // shift index: col C = 3 - local col "" - local nn = `n' - while `nn' > 0 { - local rem = mod(`nn' - 1, 26) - local col = char(65 + `rem') + "`col'" - local nn = floor((`nn' - 1)/26) - } - putexcel `col'1 = v1[`j'] -} - -* Clean up original file -erase "$dir_results/temp_labels.txt" - - -* Export model fit statistics -putexcel set "$dir_results/reg_health", sheet("Gof") modify - -putexcel A15 = "H2-Long-term sick/disabled or on disability benefits", bold -putexcel A17 = "Pseudo R-squared" -putexcel B17 = r2_p -putexcel A18 = "N" -putexcel B18 = N_sample -putexcel E17 = "Chi^2" -putexcel F17 = chi2 -putexcel E18 = "Log likelihood" -putexcel F18 = ll - -* Clean up -//drop in_sample p -scalar drop _all -matrix drop _all - - -capture log close - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_home_ownership.do b/input/InitialPopulations/compile/RegressionEstimates/reg_home_ownership.do deleted file mode 100644 index 3a2dd6308..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_home_ownership.do +++ /dev/null @@ -1,333 +0,0 @@ -******************************************************************************** -* PROJECT: SimPaths UK -* SECTION: Home ownership -* OBJECT: Final Regresion Models - Weighted -* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj -* LAST UPDATE: 18 Feb 2026 AK -* COUNTRY: UK -* -* NOTES: Re-estimated process at benefit unit level to be consistent with SimPaths -* -******************************************************************************** -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_home_ownership.log", replace -******************************************************************* - -* Set Excel file - -* Info sheet - -putexcel set "$dir_results/reg_home_ownership", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing projection of home ownership" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "HO1" -putexcel B5 = "Probit regression estimates of the probability of being a home owner, aged 18+" - -putexcel A10 = "Notes:", bold -putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" -putexcel B11 = "Conditions for processes are defined as globals in master.do" -putexcel B12 = "Re-estimated process at benefit unit level to be consistent with SimPaths" - -putexcel set "$dir_results/reg_home_ownership", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - -*-------------------------------------------------- -* Create sample at benefti unit head -*-------------------------------------------------- - -* Keep adults (18+) -keep if dag >= 18 - -* Count unique benefit-unit–wave combinations BEFORE head selection -egen tag_bu_wave = tag(idbenefitunit swv) -count if tag_bu_wave -local n_bu_before = r(N) -display "Number of benefit unit–wave combinations BEFORE selecting head: `n_bu_before'" - -* Sort benefit unit members within each wave: -* 1. Highest non-benefit income (ypnbihs_dv) -* 2. Highest age (dag) -* 3. Lowest idperson (idperson) -gsort idbenefitunit swv -ypnbihs_dv -dag idperson - -* Tag the first person (the "head") per benefit unit and wave -bysort idbenefitunit swv: gen benunit_head = (_n == 1) - -* Keep only benefit unit heads -keep if benunit_head == 1 - -* Count unique benefit-unit–wave combinations AFTER head selection -drop tag_bu_wave -egen tag_bu_wave = tag(idbenefitunit swv) -count if tag_bu_wave -local n_bu_after = r(N) -display "Number of benefit unit–wave combinations AFTER selecting head: `n_bu_after'" - -* Ensure benefit unit–wave counts match before and after head selection -assert `n_bu_before' == `n_bu_after' - -* Verify only one head per benefit unit per wave -by idbenefitunit swv, sort: gen n=_N -assert n==1 - -sort idperson swv -/********************************** ESTIMATION ********************************/ - -/********************** HO1: PROBABILITY OF OWNING HOME ***********************/ -display "${ho1_if_condition}" - -probit dhh_owned i.Dgn Dag Dag_sq /// - il.Dhhtp_c8_2 il.Dhhtp_c8_3 il.Dhhtp_c8_4 il.Dhhtp_c8_5 il.Dhhtp_c8_6 il.Dhhtp_c8_7 il.Dhhtp_c8_8 /// - il.Les_c4_Student il.Les_c4_NotEmployed il.Les_c4_Retired /// - i.Deh_c4_Medium i.Deh_c4_Low i.Deh_c4_Na /// - l.Dhe_mcs l.Dhe_pcs /// - li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// - l.Yptciihs_dv /// - l.Dhh_owned /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${ho1_if_condition} [pw=dwt], vce(cluster idperson) - - * Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/home_ownership/home_ownership", /// - sheet("Process HO1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/home_ownership/HO1.doc", replace /// -title("Process H01: Probability Own Home") /// - ctitle(Own home) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${ho1_if_condition}). Only estimated on benefit unit heads."') - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample for stimate validation -save "$dir_validation_data/HO1_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Store results in Excel - -* Store estimates -matrix b = e(b) -matrix V = e(V) - -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - -* Export into Excel -putexcel set "$dir_results/reg_home_ownership", sheet("HO1") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve -putexcel set "$dir_results/reg_home_ownership", sheet("HO1") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_home_ownership", sheet("HO1") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_home_ownership", sheet("Gof") modify - -putexcel A3 = "HO1 - Home ownership", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -drop in_sample p -scalar drop r2_p N_sample chi2 ll - -capture log close - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_income.do b/input/InitialPopulations/compile/RegressionEstimates/reg_income.do deleted file mode 100644 index 788c10b05..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_income.do +++ /dev/null @@ -1,1387 +0,0 @@ -******************************************************************************** -* PROJECT: SimPaths UK -* SECTION: Non-employment/non-benefit income -* OBJECT: Final Regresion Models -* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven -* LAST UPDATE: 21 Jan 2026 DP -* COUNTRY: UK - -* NOTES: Models for split income variable -* - Capital returns -* - Private pension income -* -* The income do file must be run after -* reg_wages.do because it uses predicted wages. -/******************************************************************************* - - -*******************************************************************************/ -******************************************************************************** -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_income.log", replace -******************************************************************* - -* Set Excel file -* Info sheet -putexcel set "$dir_results/reg_income", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "This file contains regression estiamtes used by processes I1 (capital income), I2 (private pension, retired last year), I3 (private pension income, not retired last year) " -putexcel A2 = "Authors: Patryk Bronka, Justin Van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold - -putexcel A6 = "Process I1a" -putexcel B6 = "Logit regression estimates of the probability of receiving capital income " - -putexcel A8 = "Process I1b" -putexcel B8 = "OLS regression estimates (ihs) capital income amount - who receive capital income" - -putexcel A10 = "Process I2b" -putexcel B10 = "OLS regression estimates (ihs) private pension income amount - aged 50+ and were retired last yeare" - -putexcel A12 = "Process I3a" -putexcel B12 = "Logit regression estimates of the probability of receiving private pension income - aged 50+ and not a student or retired last year" - -putexcel A14 = "Process I3b" -putexcel B14 = "OLS regression estimates (ihs) private pension income - aged 50+ and not a student or retired last year" - - -putexcel A17 = "Notes:", bold -putexcel B17 = "Estimation sample: UK_ipop2.dta with grossing up weight dwt" -putexcel B18 = "Conditions for processes are defined as globals in master.do" -putexcel B19 = "Combined former capital income processes I3a and I3b and renamed as I1a and I1b" -putexcel B20 = "Income variables are IHS transformed." - - -/**************************************************************/ -* prepare data on real growth of wages -/**************************************************************/ - -import excel "$dir_external_data/time_series_factor.xlsx", sheet("UK_gdp") firstrow clear // Import real growth index -rename Year stm -rename Value growth -gen base_val = growth if stm == 2015 -sum base_val -replace base_val = r(mean) -replace growth= growth/base_val -drop base_val -replace stm = stm - 2000 -save "$dir_external_data\growth_rates", replace - - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample2}", clear //panel with predicted wages - -* Merge in growth rates -merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen keepusing(growth) - -* Set data -xtset idperson swv -sort idperson swv - -* adjust capital income -sum ypncp, det -scalar p99 = r(p99) -replace ypncp = . if ypncp >= p99 - -* adjust pension income -sum ypnoab, det -scalar p99 = r(p99) -replace ypnoab = . if ypnoab >= p99 - -*rename pedicted wage -capture confirm variable pred_hourly_wage -if _rc == 0 { - gen Hourly_wage = pred_hourly_wage -} - -/********************************** ESTIMATION ********************************/ - -/*************** I1a: PROBABILITY OF RECEIVEING CAPITAL INCOME ****************/ - -display "${i1a_if_condition}" - -logit receives_ypncp /// - i.Ded i.Dgn c.Dag c.Dag_sq /// - l.Dhe_pcs l.Dhe_mcs /// - lc.Ypncp lc.Yplgrs_dv /// - l2c.Yplgrs_dv l2c.Ypncp /// - Ded_Dgn /*Ded_Dag Ded_Dag_sq*/ /// - l.Ded_Dhe_pcs l.Ded_Dhe_mcs /// - l.Ded_Ypncp l.Ded_Yplgrs_dv l2.Ded_Yplgrs_dv l2.Ded_Ypncp /// - i.Deh_c4_Low i.Deh_c4_Medium i.Deh_c4_High /// - li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// - li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// - $regions Year_transformed Y2020 Y2021 $ethnicity if /// - ${i1a_if_condition} [pweight = dwt], /// - vce(cluster idperson) base - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/income/income", /// - sheet("Process I1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/income/Selection_I1a.doc", replace /// -title("Process I1a: Probability Receiving Capital Income") /// - ctitle(Receives capital income) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${i1a_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -cap drop in_sample -cap drop p -gen in_sample = e(sample) -predict p - -* Save sample for estimates validation -save "$dir_validation_data/I1_selection_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_income", sheet("I1a") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve - -putexcel set "$dir_results/reg_income", sheet("I1a") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Use Mata to extract nice labels from colstripe of e(b) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // Handle 2L.var - labels_no_bl = /// - regexm(labels_no_bl, "^L2\.") :* /// - (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// - (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_income", sheet("I1a") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_income", sheet("Gof") modify - -putexcel A3 = /// - "I1a - Receiving capital income ", /// - bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - - -/********************** I1b: AMOUNT OF CAPITAL INCOME *************************/ - -* DV: ypncp = Inverse hyperbolic sine (IHS) of gross capital income -display "${i1b_if_condition}" - -reg ypncp i.Dgn c.Dag c.Dag_sq /// - i.Deh_c4_Low i.Deh_c4_Medium i.Deh_c4_High /// - li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// - li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// - l.Dhe_pcs l.Dhe_mcs /// - lc.Ypncp l2c.Ypncp lc.Yplgrs_dv l2c.Yplgrs_dv /// - Ded_Dgn /*Ded_Dag Ded_Dag_sq*/ /// - l.Ded_Ypncp l.Ded_Yplgrs_dv l2.Ded_Yplgrs_dv l2.Ded_Ypncp /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${i1b_if_condition} [pw=dwt], vce(cluster idperson) - - - * Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/income/income", sheet("Process I1b") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/income/Amount_I1b.doc", replace /// -title("Process I1b: Capital Income Amount") /// - ctitle(Capital amount) label side dec(2) noparen /// - addstat("R2", e(r2)) /// - addnote(`"Note: Regression if condition = (${i1b_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -cap drop in_sample -cap drop p -gen in_sample = e(sample) -predict p -cap drop sigma -gen sigma = e(rmse) - -* Save sample for estimate validation -save "$dir_validation_data/I1_level_sample", replace - -* Store model summary statistics -scalar r2 = e(r2) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_income", sheet("I1b") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve - -putexcel set "$dir_results/reg_income", sheet("I1b") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Use Mata to extract nice labels from colstripe of e(b) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // Handle 2L.var - labels_no_bl = /// - regexm(labels_no_bl, "^L2\.") :* /// - (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// - (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_income", sheet("I1b") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - - -* Calculate RMSE -cap drop residuals squared_residuals -predict residuals , residuals -gen squared_residuals = residuals^2 - -preserve -keep if receives_ypncp == 1 -sum squared_residuals [w = dwt] -di "RMSE for Amount of capital income" sqrt(r(mean)) -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A6 = ("I1b") B6 = (sqrt(r(mean))) -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_income", sheet("Gof") modify - -putexcel A9 = "I1b - Capital income amount", /// - bold - -putexcel A11 = "R-squared" -putexcel B11 = r2 -putexcel A12 = "N" -putexcel B12 = N_sample - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - - -/******************************* I2b: Amount of pension income *********************************************/ - -*Sample: Retired individuals who were retired in the previous year. -*ypnoab = Inverse hyperbolic sine transformation of Gross personal private pension income - -display "${i2b_if_condition}" - -reg ypnoab i.Dgn c.Dag /// - i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// - li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// - l.Dhe_pcs l.Dhe_mcs /// - lc.Ypnoab l2c.Ypnoab /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${i2b_if_condition} [pw=dwt], vce(cluster idperson) - - * Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/income/income", sheet("Process I2b") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/income/Amount_I2b.doc", replace /// -title("Process I2b: Capital Income Amount") /// - ctitle(Private Pension Income amount) label side dec(2) noparen /// - addstat("R2", e(r2)) /// - addnote(`"Note: Regression if condition = (${i2b_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -cap drop in_sample -cap drop p -gen in_sample = e(sample) -predict p -cap drop sigma -gen sigma = e(rmse) - -* Save sample for estimate validation -save "$dir_validation_data/I2_level_sample", replace - -* Store model summary statistics -scalar r2 = e(r2) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_income", sheet("I2b") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve - -putexcel set "$dir_results/reg_income", sheet("I2b") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Use Mata to extract nice labels from colstripe of e(b) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // Handle 2L.var - labels_no_bl = /// - regexm(labels_no_bl, "^L2\.") :* /// - (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// - (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_income", sheet("I2b") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Calculate RMSE -cap drop residuals squared_residuals -predict residuals , residuals -gen squared_residuals = residuals^2 - -preserve -keep if receives_ypncp == 1 -sum squared_residuals [w = dwt] -di "RMSE for Amount of private pension income" sqrt(r(mean)) -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A7 = ("I2b") B7 = (sqrt(r(mean))) -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_income", sheet("Gof") modify - -putexcel A15 = /// - "I2b - Private Pension income amount", /// - bold - -putexcel A17 = "R-squared" -putexcel B17 = r2 -putexcel A18 = "N" -putexcel B18 = N_sample - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - -/*************************** I3a: PROBABILITY OF RECEIVEING PRIVATE PENSION INCOME ***********************************/ -*Sample: Retired individuals who were not retired in the previous year. - -display "${i3a_if_condition}" - -logit receives_ypnoab /// - i.Dgn i.Reached_Retirement_Age /// - i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// - li.Les_c4_NotEmployed /// - li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// - l.Dhe_pcs l.Dhe_mcs /// - l.Hourly_wage /// - $regions Year_transformed Y2020 Y2021 $ethnicity if /// - ${i3a_if_condition} [pweight = dwt], vce(cluster idperson) base - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/income/income", /// - sheet("Pension Income selection") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/income/Selection_I3a.doc", replace /// - title("Process I3a: Probability Receiving Private Pension Income") /// - ctitle(Receives private pesnion income) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${i3a_if_condition})"') - -* Save sample inclusion indicator and predicted probabilities -cap drop in_sample -cap drop p -gen in_sample = e(sample) -predict p - -* Save sample for estimates validation -save "$dir_validation_data/I3_selection_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - -* Export into Excel -putexcel set "$dir_results/reg_income", sheet("I3a") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve - -putexcel set "$dir_results/reg_income", sheet("I3a") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Use Mata to extract nice labels from colstripe of e(b) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // Handle 2L.var - labels_no_bl = /// - regexm(labels_no_bl, "^L2\.") :* /// - (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// - (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_income", sheet("I3a") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_income", sheet("Gof") modify - -putexcel A21 = /// - "I3a - Receiving private pension income", /// - bold -putexcel A23 = "Pseudo R-squared" -putexcel B23 = r2_p -putexcel A24 = "N" -putexcel B24 = N_sample -putexcel E23 = "Chi^2" -putexcel F23 = chi2 -putexcel E24 = "Log likelihood" -putexcel F24 = ll - - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - -/***************************** I3b: Amount of pension income ********************************************/ - -*Sample: Retired individuals who were not retired in the previous year. -*ypnoab = Inverse hyperbolic sine transformation of Gross personal private pension income - -display "${i3b_if_condition}" - -reg ypnoab i.Dgn c.Dag /// - i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Na /// - li.Les_c4_NotEmployed /// - li.Dhhtp_c4_CoupleChildren li.Dhhtp_c4_SingleNoChildren li.Dhhtp_c4_SingleChildren /// - l.Dhe_pcs l.Dhe_mcs /// - l.Hourly_wage /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${i3b_if_condition} [pw=dwt], vce(cluster idperson) - - - * Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/income/income", sheet("Process I3b") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/income/Amount_I3b.doc", replace /// -title("Process I3b: Private Pension Income Amount") /// - ctitle(Private Pension Income amount) label side dec(2) noparen /// - addstat("R2", e(r2)) /// - addnote(`"Note: Regression if condition = (${i3b_if_condition})"') - - -* Save sample inclusion indicator and predicted probabilities -cap drop in_sample -cap drop p -gen in_sample = e(sample) -predict p -cap drop sigma -gen sigma = e(rmse) - -* Save sample for estimate validation -save "$dir_validation_data/I3_level_sample", replace - -* Store model summary statistics -scalar r2 = e(r2) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_income", sheet("I3b") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve - -putexcel set "$dir_results/reg_income", sheet("I3b") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - -* Use Mata to extract nice labels from colstripe of e(b) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // Handle 2L.var - labels_no_bl = /// - regexm(labels_no_bl, "^L2\.") :* /// - (regexr(labels_no_bl, "^L2\.", "") :+ "_L2") :+ /// - (!regexm(labels_no_bl, "^L2\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_income", sheet("I3b") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Calculate RMSE -cap drop residuals squared_residuals -predict residuals , residuals -gen squared_residuals = residuals^2 - -preserve -keep if receives_ypncp == 1 -sum squared_residuals [w = dwt] -di "RMSE for Amount of private pension income" sqrt(r(mean)) -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A8 = ("I3b") B8 = (sqrt(r(mean))) -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_income", sheet("Gof") modify - -putexcel A27 = /// - "I3b - Private Pension income amount", /// - bold - -putexcel A28 = "R-squared" -putexcel B28 = r2 -putexcel A29 = "N" -putexcel B29 = N_sample - - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - -//end - -capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_leave_parental_home.do b/input/InitialPopulations/compile/RegressionEstimates/reg_leave_parental_home.do deleted file mode 100644 index 87a28dea3..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_leave_parental_home.do +++ /dev/null @@ -1,295 +0,0 @@ -******************************************************************************** -* PROJECT: SimPaths UK -* SECTION: Leaving Parental Home -* OBJECT: Final Probit Regression Model -* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj -* LAST UPDATE: 18 Feb 2026 AK -* COUNTRY: UK -* -* NOTES: -********************************************************************************** - -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - - -******************************************************************* -cap log close -log using "${dir_log}/reg_leave_parental_home.log", replace -******************************************************************* - -* Set Excel file - -* Info sheet - -putexcel set "$dir_results/reg_leave_parental_home", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing leaving parental home" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 19 Jan 2026 DP" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "P1a" -putexcel B5 = "Probit regression estimates for leaving the parental home, transitioning out of adult child status" - -putexcel A10 = "Notes:", bold -putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" -putexcel B11 = "Conditions for processes are defined as globals in master.do" - -putexcel set "$dir_results/reg_leave_parental_home", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - - -/********************************** ESTIMATION ********************************/ - -/**************** P1: PROBABILITY OF LEAVING THE PARENTAL HOME ****************/ -display "${p1_if_condition}" - -probit dlftphm i.Dgn Dag Dag_sq li.Deh_c4_Na li.Deh_c4_Medium li.Deh_c4_Low /// - li.Les_c3_Student li.Les_c3_NotEmployed /// - li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${p1_if_condition} [pw=dwt], vce(robust) - - * Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/leave_parental_home/leave_parental_home", /// - sheet("Process P1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/leave_parental_home/P1.doc", replace /// -title("Process P1: Probability Leave the Parental Home") /// - ctitle(Leave home) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${p1_if_condition})"') - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample for estiamte validation -save "$dir_validation_data/P1_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_leave_parental_home", sheet("P1") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve -putexcel set "$dir_results/reg_leave_parental_home", sheet("P1") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_leave_parental_home", sheet("P1") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Export model fit statistics -putexcel set "$dir_results/reg_leave_parental_home", sheet("Gof") modify - -putexcel A3 = "P1 - Leaving the parental home ", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - -capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_partnership.do b/input/InitialPopulations/compile/RegressionEstimates/reg_partnership.do deleted file mode 100644 index 1517b9ac3..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_partnership.do +++ /dev/null @@ -1,544 +0,0 @@ -******************************************************************************** -* PROJECT: SimPaths UK -* SECTION: Unions -* OBJECT: Final Probit Models -* AUTHORS: Daria Popova, Justin van de Ven -* LAST UPDATE: 4 Feb 2026 DP -* COUNTRY: UK -* -*NOTES: -* Combined former a and b processes. -******************************************************************************** - -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_partnership.log", replace -******************************************************************* - -* Set Excel file - -* Info sheet - -putexcel set "$dir_results/reg_partnership", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters for relationship status projection" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "U1" -putexcel B5 = "Probit regression estimates probability of entering a partnership - single respondents aged 18+" -putexcel A6 = "U2" -putexcel B6 = "Probit regression estimates of probability of exiting a partnership - cohabiting women aged 18+" - -putexcel A10 = "Notes:", bold -putexcel B10 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" -putexcel B11 = "Conditions for processes are defined as globals in master.do" -putexcel B12 = "Combined former processes U1a and U1b" - -putexcel set "$dir_results/reg_partnership", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - - -/********************************** ESTIMATION ********************************/ - -/******************** U1: PROBABILITY FORMING PARTNERSHIP *********************/ -display "${u1_if_condition}" - -probit dcpen i.Ded Dgn Dag Dag_sq lc.Dnc lc.Dnc02 /// - li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 /// - /*Ded_Dag Ded_Dag_sq*/ Ded_Dgn Ded_Dnc_L1 Ded_Dnc02_L1 /// - Ded_Ydses_c5_Q2_L1 Ded_Ydses_c5_Q3_L1 Ded_Ydses_c5_Q4_L1 Ded_Ydses_c5_Q5_L1 /// - i.Deh_c4_Na i.Deh_c4_High i.Deh_c4_Medium i.Deh_c4_Low /// - li.Les_c4_Student li.Les_c4_NotEmployed li.Les_c4_Retired /// - li.Les_c4_Student_Dgn li.Les_c4_NotEmployed_Dgn /// - li.Les_c4_Retired_Dgn /// - l.Dhe_pcs l.Dhe_mcs /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${u1_if_condition} [pw=dwt], vce(robust) - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/partnership/partnership", /// - sheet("Process U1") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/partnership/U1.doc", replace /// -title("Process U1: Probability Form partnership") /// - ctitle(Form partnership) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${u1_if_condition})"') - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample for later use (internal validation) -save "$dir_validation_data/U1_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_partnership", sheet("U1") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve -putexcel set "$dir_results/reg_partnership", sheet("U1") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_partnership", sheet("U1") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Export model fit statistics -putexcel set "$dir_results/reg_partnership", sheet("Gof") modify - -putexcel A3 = "U1- Partnership formation", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - -/******************* U2: PROBABILITY TERMINATE PARTNERSHIP ********************/ -display "${u2_if_condition}" - - -* Estimation -probit dcpex i.Ded Dag Dag_sq /*Ded_Dag Ded_Dag_sq*/ /// - li.Deh_c4_Na li.Deh_c4_Low li.Deh_c4_Medium li.Deh_c4_High /// - li.Dehsp_c3_Medium li.Dehsp_c3_Low /// - li.Dhe_Fair li.Dhe_Good li.Dhe_VeryGood li.Dhe_Excellent /// - l.Dhe_pcs l.Dhe_mcs /// - l.Dhe_pcssp l.Dhe_mcssp /// - l.Dcpyy l.New_rel l.Dcpagdf l.Dnc l.Dnc02 /// - li.Lesdf_c4_EmpSpouseNotEmp li.Lesdf_c4_NotEmpSpouseEmp li.Lesdf_c4_BothNotEmployed /// - l.Ypnbihs_dv l.Ynbcpdf_dv /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${u2_if_condition} [pw=dwt], vce(robust) - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/partnership/partnership", sheet("Process U2") /// - modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/partnership/U2.doc", replace /// -title("Process U2: Probability Terminating Partnership") /// - ctitle(End partnership) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${u2_if_condition})"') - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample for later use (internal validation) -save "$dir_validation_data/U2_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - - -* Export into Excel -putexcel set "$dir_results/reg_partnership", sheet("U2") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - - -* Labels -preserve -putexcel set "$dir_results/reg_partnership", sheet("U2") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_partnership", sheet("U2") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Export model fit statistics -putexcel set "$dir_results/reg_partnership", sheet("Gof") modify - -putexcel A8 = "U2 - Partnership termination", bold - -putexcel A10 = "Pseudo R-squared" -putexcel B10 = r2_p -putexcel A11 = "N" -putexcel B11 = N_sample -putexcel E10 = "Chi^2" -putexcel F10 = chi2 -putexcel E11 = "Log likelihood" -putexcel F11 = ll - - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - -capture log close - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_retirement.do b/input/InitialPopulations/compile/RegressionEstimates/reg_retirement.do deleted file mode 100644 index 805836ffa..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_retirement.do +++ /dev/null @@ -1,534 +0,0 @@ -******************************************************************************** -* PROJECT: SimPaths UK -* SECTION: Retirement -* OBJECT: Probit Regresion Models -* AUTHORS: Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj -* LAST UPDATE: 18 Feb 2026 AK -* COUNTRY: UK -* -* NOTES: -* -******************************************************************************** -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_retirement.log", replace -******************************************************************* - -* Set Excel file - -* Info sheet - -putexcel set "$dir_results/reg_retirement", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "Model parameters governing projection of retirement" -putexcel A2 = "Authors: Patryk Bronka, Justin van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 26 jan 2026 DP" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold - -putexcel A5 = "R1a" -putexcel B5 = "Probit regression estimates of the probability of retiring, single individuals aged 50+ not yet retired" - -putexcel A6 = "R1b" -putexcel B6 = "Probit regression estimates of the probability of retiring, cohabiting individuals aged 50+ not yet retired" - -putexcel A10 = "Notes:", bold -//putexcel B10 = "" - -putexcel set "$dir_results/reg_retirement", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - - -/********************************** ESTIMATION ********************************/ - -/****************** R1a: PROBABILITY OF RETIREMENT, SINLGE ********************/ -display "${r1a_if_condition}" - -probit drtren i.Dgn Dag Dag_sq /// - li.Deh_c4_Medium li.Deh_c4_Low li.Deh_c4_Na /// - l.Dhe_pcs l.Dhe_mcs /// - i.Reached_Retirement_Age /// - li.Les_c3_NotEmployed /// - li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 li.Dlltsd01 /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${r1a_if_condition} [pw=dwt], vce(robust) - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/retirement/retirement", /// - sheet("Process R1a") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/retirement/R1a.doc", replace /// -title("Process R1a: Probability of Retirement, Single") /// - ctitle(Retire) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${r1a_if_condition})"') - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -* Save sample for estimte validation -save "$dir_validation_data/R1a_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - -* Store results in Excel - -* Store estimates -matrix b = e(b) -matrix V = e(V) - -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - -* Export into Excel -putexcel set "$dir_results/reg_retirement", sheet("R1a") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - -* Labels -preserve -putexcel set "$dir_results/reg_retirement", sheet("R1a") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_retirement", sheet("R1a") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_retirement", sheet("Gof") modify - -putexcel A3 = "R1a - Retirement single", bold - -putexcel A5 = "Pseudo R-squared" -putexcel B5 = r2_p -putexcel A6 = "N" -putexcel B6 = N_sample -putexcel E5 = "Chi^2" -putexcel F5 = chi2 -putexcel E6 = "Log likelihood" -putexcel F6 = ll - - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all - - - -/***************** R1b: PROBABILITY OF RETIREMENT, PARTNERED ******************/ -display "${r1b_if_condition}" - -probit drtren i.Dgn Dag Dag_sq /// - li.Deh_c4_Medium li.Deh_c4_Low li.Deh_c4_Na /// - l.Dhe_pcs l.Dhe_mcs /// - i.Reached_Retirement_Age i.Reached_Retirement_Age_Les /// - li.Les_c3_NotEmployed li.Lessp_c3_NotEmployed /// - i.Reached_Retirement_Age_Sp /// - li.Ydses_c5_Q2 li.Ydses_c5_Q3 li.Ydses_c5_Q4 li.Ydses_c5_Q5 li.Dlltsd01 /// - $regions Year_transformed Y2020 Y2021 $ethnicity /// - if ${r1b_if_condition} [pweight = dwt], vce(robust) - - -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/retirement/retirement", /// - sheet("Process R1b") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - -outreg2 stats(coef se pval) using /// - "$dir_raw_results/retirement/R1b.doc", replace /// -title("Process R1b: Probability of Retirement, Partnered") /// - ctitle(Retire) label side dec(2) noparen /// - addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) /// - addnote(`"Note: Regression if condition = (${r1b_if_condition})"') - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p - -graph bar (mean) drtren p if in_sample, over(dag, label(labsize(vsmall))) /// - legend(label(1 "observed") label(2 "predicted")) - -graph drop _all - -* Save sample for estiamte validation -save "$dir_validation_data/R1b_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Store results in Excel - -* Store estimates -matrix b = e(b) -matrix V = e(V) - -mata: - // Call matrices into mata - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - b_trimmed = select(b, keep) - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - // Inspection - b_trimmed - V_trimmed - - // Return to Stata - st_matrix("b_trimmed", b_trimmed') - st_matrix("V_trimmed", V_trimmed) - st_matrix("nonzero_b_flag", keep) -end - -* Eigenvalue tests for var-cov invertablility in SimPaths -matrix symeigen X lambda = V_trimmed - -scalar max_eig = lambda[1,1] - -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Outcome of max eigenvalue test -if max_eig < 1.0e-12 { - - display as error "CRITICAL ERROR: Maximum eigenvalue is too small (`max_eig')." - display as error "The Variance-Covariance matrix is likely singular." - exit 999 - -} - -display "Stability Check Passed: Max Eigenvalue is " max_eig - -* Outcome of eigenvalue ratio test -if min_ratio < 1.0e-12 { - - display as error "Matrix is ill-conditioned. Min/Max ratio: " min_ratio - exit 506 - -} - -display "Stability Check Passed. Min/Max ratio: " min_ratio - -* Export into Excel -putexcel set "$dir_results/reg_retirement", sheet("R1b") modify -putexcel B2 = matrix(b_trimmed) -putexcel C2 = matrix(V_trimmed) - -* Labels -preserve -putexcel set "$dir_results/reg_retirement", sheet("R1b") modify -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -* Use Mata to extract nice labels from colstripe of e(b) - -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -mata: - // -------------------------------------------------- - // Import objects from Stata - // -------------------------------------------------- - nonzero_b_flag = st_matrix("nonzero_b_flag") - stripe = st_matrixcolstripe("e(b)") - - // Ensure column vector - nonzero_b_flag = nonzero_b_flag' - - // -------------------------------------------------- - // Extract variable names - // -------------------------------------------------- - varnames = stripe[.,2] - - // Keep non-baseline coefficients - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - - // -------------------------------------------------- - // Clean labels - // -------------------------------------------------- - labels_no_bl = usubinstr(varnames_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Handle lags: L.var -> var_L1 - labels_no_bl = /// - regexm(labels_no_bl, "^L\.") :* /// - (regexr(labels_no_bl, "^L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^L\.") :* labels_no_bl) - - // Handle 1L.var - labels_no_bl = /// - regexm(labels_no_bl, "^1L\.") :* /// - (regexr(labels_no_bl, "^1L\.", "") :+ "_L1") :+ /// - (!regexm(labels_no_bl, "^1L\.") :* labels_no_bl) - - // -------------------------------------------------- - // Add header - // -------------------------------------------------- - labels_out = "v1" \ labels_no_bl - - // -------------------------------------------------- - // Write to temp file - // -------------------------------------------------- - outfile = st_local("dir_results") + "/temp_labels.txt" - fh = fopen(outfile, "w") - for (i=1; i<=rows(labels_out); i++) { - fput(fh, labels_out[i]) - } - fclose(fh) -end - - - * Import cleaned labels into Stata - import delimited "$dir_results/temp_labels.txt", clear varnames(1) /// - encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_retirement", sheet("R1b") modify - - * Vertical labels - summarize n, meanonly - local N = r(max)+1 - forvalue i = 2/`N' { - - local j = `i' - 1 - putexcel A`i' = v1[`j'] - - } - - * Horizontal labels - summarize n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - * Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - -* Export model fit statistics -putexcel set "$dir_results/reg_retirement", sheet("Gof") modify - -putexcel A9 = "R1b - Retirement partnered", bold - -putexcel A11 = "Pseudo R-squared" -putexcel B11 = r2_p -putexcel A12 = "N" -putexcel B12 = N_sample -putexcel E11 = "Chi^2" -putexcel F11 = chi2 -putexcel E12 = "Log likelihood" -putexcel F12 = ll - -* Clean up -drop in_sample p -scalar drop _all -matrix drop _all -graph drop _all - -capture log close - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare.do b/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare.do deleted file mode 100644 index f58734e0a..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_socialcare.do +++ /dev/null @@ -1,706 +0,0 @@ -******************************************************************************** -* PROJECT: SimPaths UK -* SECTION: SOCIAL CARE RECEIPT -* AUTHORS: Justin van de Ven, Matteo Richiardi, Daria Popova -* LAST UPDATE: 19 Feb 2026 DP -* COUNTRY: UK -* -* NOTES: -* PROGRAM TO EVALUATE SOCIAL CARE RECEIPT FROM UKHLS DATA -* ANALYSIS BASED ON THE SOCIAL CARE MODULE OF UKHLS -* First version: Justin van de Ven, 28 Aug 2023 -* Refactored version: Matteo Richiardi, 16 Feb 2026 -* Integration into the pipeline: Daria Popova 18 Feb 2026 DP -* -*******************************************************************************/ - -/* ANALYTICAL STRATEGY -We analyse/simulate the following variables: -- NeedCare -- ReceiveCare -- CareMarket: Formal, Informal, Mixed -- HrsReceivedFormalIHS -- HrsReceivedInformalIHS -- ProvideCare -- HrsProvidedInformalIHS -(IHS stands for Inverse Hyperbolic Sine transformation) - -The most complicated case is for Partnered, as an issue of consistency arises (care between partners is most common): - -=========================================== - Partner B: Receiving informal care? -___________________________________________ -Partner A: | No Yes -providing | No | (1) (2) -informal care | Yes | (3) (4) -=========================================== - -In the analysis we do not distinguish whom care is received from, and to whom care is provided. -However, the cases above imply: -(1) No hrs received, no hrs provided -(2) All hrs received are from non-partner -(3) All hrs provided are to non-partner_socare_hrs -(4) At least some of the hrs received/provided are from/to partner - -========================================================================================== -RMK: We first analyse care receipt, and then care provision. This order must be preserved. -========================================================================================== -*/ - -* CRITICAL: Clear all FIRST -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_socialcare.log", replace -******************************************************************* - - -/********************************* SET EXCEL FILE *****************************/ - -putexcel set "$dir_results/reg_socialcare", sheet("Info") replace -putexcel A1 = "Description:", bold -putexcel B1 = "Model parameters for social care module" -putexcel A2 = "Authors:", bold -putexcel B2 = "Justin van de Ven, Ashley Burdett, Matteo Richiardi, Daria Popova" -putexcel A3 = "Last edit:", bold -putexcel B3 = "16 Feb 2026 MR (Refactored)" -putexcel B3 = "18 Feb 2026 DP (Integrated into the pipeline)" - -putexcel A5 = "Process:", bold -putexcel B5 = "Description:", bold - -putexcel A6 = "S2a" B6 = "Prob. need care" -putexcel A7 = "S2b" B7 = "Prob. receive care" -putexcel A8 = "S2c" B8 = "Prob. receive Formal/informal care" -putexcel A9 = "S2d" B9 = "Informal care hours received" -putexcel A10 = "S2e" B10 = "Hours of formal care received" - -putexcel A11 = "S3a" B11 = "Prob. provide care, Singles" -putexcel A12 = "S3b" B12 = "Prob. provide care, Partnered" -putexcel A13 = "S3c" B13 = "Hours of informal care provided, Singles" -putexcel A14 = "S3d" B14 = "Hours of informal care provided, Partnered" - -putexcel A20 = "Notes:", bold -putexcel B20 = "Estimation sample: UK_ipop.dta with grossing up weight dwt" -putexcel B21 = "Conditions for processes are defined as globals in master.do" - -putexcel set "$dir_results/reg_socialcare", sheet("Gof") modify -putexcel A1 = "Goodness of fit", bold - - - -/*============================================================================== - MAIN ANALYSIS -==============================================================================*/ - -use ${estimation_sample}, clear - -* Time series structure -gsort idperson stm -xtset idperson stm - -* Adjust variables -do "${dir_do}/variable_update.do" - -* Run Stata programs to produce Excel file -do "${dir_do}/programs.do" - -/*============================================================================== - REGRESSIONS -==============================================================================*/ - -* Stats for if conditions -/* -table stm, stat (count NeedCare) stat (mean NeedCare) // [2015, 2022] -table stm, stat (count ReceiveCare) stat (mean ReceiveCare) // [2016, 2021] but with significant decrease in 2020 and 2021 -table stm, stat (count receive_formal_care) stat (mean receive_formal_care) // [2016, 2021] but with significant decrease in 2020 and 2021 -table stm, stat (count receive_informal_care) stat (mean receive_informal_care) // [2016, 2021] but with significant decrease in 2020 and 2021 -table stm, stat (count provide_informal_care) stat (mean provide_informal_care) // [2015, 2024] also 2014, but fewer hours -*/ -table stm, c(count NeedCare mean NeedCare) -table stm, c(count ReceiveCare mean ReceiveCare) -table stm, c(count receive_formal_care mean receive_formal_care) -table stm, c(count receive_informal_care mean receive_informal_care) -table stm, c(count provide_informal_care mean provide_informal_care) - - -/* Age variables (for experimenting -> copy and paste in the specification) - Dag Dagsq /// - Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// - Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// -*/ - -/************************ Probit need care (S2a) ******************************/ - -probit NeedCare NeedCare_L1 Dgn /// - Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// - Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// - Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// - Partnered /// - Deh_c4_Medium Deh_c4_Low /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s2a_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S2a") sheet("S2a") /// - title("Process S2a: Prob. need care") /// - gofrow(3) goflabel("S2a - Need care") /// - ifcond("${s2a_if_condition}") probit - -/************************ Probit receive care (S2b) ***************************/ - -probit ReceiveCare ReceiveCare_L1 Dgn /// - Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// - Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// - Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// - Partnered /// - Deh_c4_Medium Deh_c4_Low /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s2b_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S2b") sheet("S2b") /// - title("Process S2b: Prob. receive care") /// - gofrow(7) goflabel("S2b - Receive care") /// - ifcond("${s2b_if_condition}") probit - - -/************************ Mlogit formal/informal (S2c) ************************/ - -/* - Informal is base outcome - Mixed is 1st outcome - Formal is 2nd outcomes -*/ - -mlogit CareMarket CareMarketFormal_L1 CareMarketInformal_L1 CareMarketMixed_L1 Dgn /// - Age67to68 Age69to70 Age71to72 Age73to74 Age75to76 /// - Age77to78 Age79to80 Age81to82 Age83to84 Age85plus /// - Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// - Partnered /// - Deh_c4_Medium Deh_c4_Low /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s2c_if_condition} [pweight=${weight}], vce(r) base(2) -/* -process_mlogit, process("S2c") sheet("S2c") /// - title("Process S2c: Formal/informal care") /// - gofrow(11) goflabel("S2c - Formal/informal") /// - outcomes(3) ifcond("${s2c_if_condition}") -*/ - -/* DP: Use this routine as program for MLogit does not display labels corectly in Excel ==> to replace by program later on ? */ -* Save raw results -matrix results = r(table) -matrix results = results[1..6,1...]' - -putexcel set "$dir_raw_results/social_care/socialcare", sheet("Process S2c") /// - modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) - - -* Save sample inclusion indicator and predicted probabilities -gen in_sample = e(sample) -predict p1 p2 p3 - -* Save sample for estimates validation -save "$dir_validation_data/S2c_sample", replace - -* Store model summary statistics -scalar r2_p = e(r2_p) -scalar N_sample = e(N) -scalar chi2 = e(chi2) -scalar ll = e(ll) - - -* Store results in Excel - -* Store estimates in matrices -matrix b = e(b) -matrix V = e(V) - -* Raw output -putexcel set "$dir_results/reg_socialcare", sheet("S2c_raw") modify -putexcel A1 = matrix(b'), names nformat(number_d2) -putexcel A1 = "CATEGORY" -putexcel B1 = "REGRESSOR" -putexcel C1 = "COEFFICIENT" - -* Estimated coefficients -scalar no_coefs_all = colsof(b) - -* Eliminate rows and columns containing zeros (baseline cats) -mata: - // Call matrices into mata - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - nonzero_b = select(b, keep) - - nonzero_b - - // Return to Stata - st_matrix("nonzero_b", nonzero_b) - st_matrix("nonzero_b_flag", keep) -end - -* Inspect -matrix list b -matrix list nonzero_b -matrix list nonzero_b_flag - -* Save dimensions -scalar no_nonzero_b = colsof(nonzero_b) -scalar no_nonzero_b_per = no_nonzero_b / 2 - -* Address repetition of proportional odds covariates - -* Generate repetition/unique observation flag -mata: - // Import matrices into mata - nonzero_b_mata = st_matrix("nonzero_b") - - // Generate binary vector =1 if coefficient repeated - n = cols(nonzero_b_mata) - repetition_flag = J(n, 1, 0) - - // use tolerance based comparison to avoid precision errors - tol = 1e-8 - - for (i = 1; i <= n; i++) { - for (j = 1; j <= n; j++) { - if (i != j && abs(nonzero_b_mata[i] - nonzero_b_mata[j]) < tol) { - repetition_flag[i] = 1 - break - } - } - } - repetition_flag - - // Generate binary vector =1 if coefficient not repeated - unique_flag = 1 :- repetition_flag - - // Return to Stata - st_matrix("repetition_flag", repetition_flag') - st_matrix("unique_flag", unique_flag') - -end - -* Generate vector to multiply the coef vector with to eliminate the repetitions -* of coefficients for vars that satify the proportional odds assumptions -matrix structure_a = J(1,no_nonzero_b_per,1) -matrix structure_b = unique_flag[1,no_nonzero_b_per+1..no_nonzero_b] -matrix structure = structure_a, structure_b - -* Inspect -matrix list structure_a -matrix list structure_b -matrix list structure -matrix list nonzero_b - -* Eliminate repetitions -mata: - // Call matrices into mata - var = st_matrix("var") - structure = st_matrix("structure") - nonzero_b = st_matrix("nonzero_b") - - // Convert reptitions into zeros - b_structure = structure :* nonzero_b - - b_structure - - // Eliminate zeros - keep = (b_structure :!= 0) - - nonzero_b_structure = select(b_structure, keep) - - // Export to Stata - st_matrix("b_structure", b_structure) - st_matrix("nonzero_b_structure", nonzero_b_structure) - -end - -matrix list nonzero_b_structure - -* Export into Excel -putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify -putexcel A1 = matrix(nonzero_b_structure'), names //nformat(number_d2) - - -* Variance-covariance matrix -* Eliminate zeros (baseline categories) -mata: - V = st_matrix("V") - b = st_matrix("b") - - // Find which coefficients are nonzero - keep = (b :!= 0) - - // Eliminate zeros - V_trimmed = select(V, keep) - V_trimmed = select(V_trimmed', keep)' - - V_trimmed - - // Return to Stata - st_matrix("var", V_trimmed) -end - -matrix list var - - -* Address repetition due to proportional odds being satisfied for some covars -matrix square_structure_a = J(no_nonzero_b,1,1) * structure -matrix square_structure_b = square_structure_a' - -matrix list square_structure_a -matrix list square_structure_b -mata: - // Call matrices into mata - var = st_matrix("var") - - // Create structure matrix (0 = eliminate) - square_structure_a = st_matrix("square_structure_a") - square_structure_b = st_matrix("square_structure_b") - - // Element-by-element multiplication - square_structure = square_structure_a :* square_structure_b - var_structure = square_structure :* var - - // Eliminate zeros - row_keep = rowsum(abs(var_structure)) :!= 0 - col_keep = colsum(abs(var_structure)) :!= 0 - - nonzero_var_structure = select(select(var_structure, row_keep), col_keep) - - // Return to Stata - st_matrix("nonzero_var_structure", nonzero_var_structure) -end - -matrix list nonzero_var_structure - -* Export to Excel -putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify -putexcel C2 = matrix(nonzero_var_structure) - -*======================================================================= -* Eigenvalue stability check for trimmed variance-covariance matrix - -matrix symeigen X lambda = nonzero_var_structure - -* Largest eigenvalue -scalar max_eig = lambda[1,1] - -* Ratio of smallest to largest eigenvalue -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Check 1: near-singularity -if max_eig < 1.0e-12 { - display as error "CRITICAL ERROR: Variance-covariance matrix is near singular." - display as error "Max eigenvalue = " max_eig - exit 999 -} - -* Check 2: ill-conditioning -if min_ratio < 1.0e-12 { - display as error "Matrix is ill-conditioned." - display as error "Min/Max eigenvalue ratio = " min_ratio - exit 506 -} - -display "VCV stability check passed." -display "Max eigenvalue: " max_eig -display "Min/Max ratio: " min_ratio -*======================================================================= - -* Labels -preserve - -putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - - - * Use Mata to extract nice labels from colstripe of e(b) (replacement for Stata 14) -local dir_results "$dir_results" -cap erase "$dir_results/temp_labels.txt" - -* Run Mata block -mata: - // Import matrices from Stata - nonzero_b_flag = st_matrix("nonzero_b_flag")' - unique_flag = st_matrix("unique_flag")' - structure = st_matrix("structure")' - stripe = st_matrixcolstripe("e(b)") - - // Extract variable and category names - catnames = stripe[.,1] - varnames = stripe[.,2] - varnames_no_bl = select(varnames, nonzero_b_flag :== 1) - catnames_no_bl = select(catnames, nonzero_b_flag :== 1) - - // Handle lags - labels_no_bl = regexm(varnames_no_bl, "^L_") :* (regexr(varnames_no_bl, "^L_", "") :+ "_L1") :+ (!regexm(varnames_no_bl, "^L_") :* varnames_no_bl) - - // Add category name when flag is not unique - labels_no_bl = labels_no_bl :+ "_" :+ (catnames_no_bl :* (unique_flag[1::rows(labels_no_bl)] :!= 0)) - - // Clean labels - labels_no_bl = usubinstr(labels_no_bl, "1.", "", 1) - labels_no_bl = regexr(labels_no_bl, "^_cons", "Constant") - - // Filter for structure == 1 - nonzero_labels_structure = select(labels_no_bl, structure[1::rows(labels_no_bl)] :== 1) - - // Add header row - nonzero_labels_structure = "v1"\nonzero_labels_structure - - // Write to temporary file - fh = fopen(st_local("dir_results") + "/temp_labels.txt", "w") - for (i=1; i<=rows(nonzero_labels_structure); i++) { - fput(fh, nonzero_labels_structure[i]) - } - fclose(fh) -end - - * Import cleaned labels into Stata as new dataset - import delimited "$dir_results/temp_labels.txt", clear varnames(1) encoding(utf8) - gen n = _n - - * Export labels to Excel - putexcel set "$dir_results/reg_socialcare", sheet("S2c") modify - - * Vertical labels - sum n, meanonly - local N = r(max)+1 - - forvalue i = 2/`N' { - local j = `i' - 1 - putexcel A`i' = v1[`j'] - } - - * Horizontal labels - sum n, meanonly - local N = r(max) + 1 // Adjusted since we're working across columns - - forvalues j = 1/`N' { - local n = `j'+2 // Shift by 2 to start from column C - local col "" - - while `n' > 0 { - local rem = mod(`n' - 1, 26) - local col = char(65 + `rem') + "`col'" - local n = floor((`n' - 1)/26) - } - - putexcel `col'1 = v1[`j'] - } - - *Clean up - cap erase "$dir_results/temp_labels.txt" - -restore - - -* Goodness of fit - -export_gof_probit, row(11) label("Process S2c: Formal/informal care") - -* Clean up -drop in_sample p1 p2 p3 -scalar drop _all -matrix drop _all - - -/******************** OLS informal care hours received (S2d) ******************/ - -reg HrsReceivedInformalIHS HrsReceivedInformalIHS_L1 CareMarketMixed Dgn /// - Age AgeSquared /// - Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// - Partnered /// - Deh_c4_Medium Deh_c4_Low /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} /*${ethnicity} Ethn_White*/ /// - if ${s2d_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S2d") sheet("S2d") /// - title("Process S2d: Informal care hours received") /// - gofrow(15) goflabel("S2d - Hours of informal care received") /// - ifcond("${s2d_if_condition}") - - -* Calculate RMSE -cap drop residuals squared_residuals -predict residuals, residuals -gen squared_residuals = residuals^2 - -preserve -keep if ${s2d_if_condition} - -sum squared_residuals [w=${weight}], meanonly -scalar rmse = sqrt(r(mean)) -di "RMSE for Informal care hours received: " rmse - -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A9 = ("S2d") B9 = (rmse) - -restore - -/********************* OLS formal care hours received (S2e) *******************/ - -reg HrsReceivedFormalIHS HrsReceivedFormalIHS_L1 CareMarketMixed Dgn /// - Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// - Partnered /// - Deh_c4_Medium Deh_c4_Low /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s2e_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S2e") sheet("S2e") /// - title("Process S2e: Formal care hours received") /// - gofrow(19) goflabel("S2e - Hours of formal care received") /// - ifcond("${s2e_if_condition}") - -* Calculate RMSE -cap drop residuals squared_residuals -predict residuals, residuals -gen squared_residuals = residuals^2 - -preserve -keep if ${s2e_if_condition} - -sum squared_residuals [w=${weight}], meanonly -scalar rmse = sqrt(r(mean)) -di "RMSE for Formal care hours received: " rmse - -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A10 = ("S2e") B10 = (rmse) - -restore - - -/***************** Probit provide care, Singles (S3a) *************************/ - -probit ProvideCare ProvideCare_L1 NeedCare ReceiveCare Dgn /// - Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// - Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// - Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// - Deh_c4_High Deh_c4_Medium Deh_c4_Low /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s3a_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S3a") sheet("S3a") /// - title("Process S3a: Prob. provide care, Singles") /// - gofrow(23) goflabel("S3a - Provide care, Singles") /// - ifcond("${s3a_if_condition}") probit - - -/***************** Probit provide care, Partnered (S3b) ***********************/ -/* -tab CareMarket ProvideCare if ${s3b_if_condition} -tab deh_c4 ProvideCare if ${s3b_if_condition} -deh_c4 =0 is excluded because there's just 1 obs providing care and probit would not converge -*/ - -capture drop in_sample p -probit ProvideCare ProvideCare_L1 NeedCare ReceiveCare Dgn /// - ReceiveCarePartner CareMarketFormalPartner CareMarketInformalPartner CareMarketMixedPartner /// - Dhe_Poor Dhe_Fair Dhe_Good Dhe_VeryGood /// - Dhesp_Fair Dhesp_Good Dhesp_VeryGood Dhesp_Excellent /// - Deh_c4_High Deh_c4_Medium /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s3b_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S3b") sheet("S3b") /// - title("Process S3b: Prob. provide care, Partnered") /// - gofrow(27) goflabel("S3b - Provide care, Partnered") /// - ifcond("${s3b_if_condition}") probit - - - -/******************* OLS care hours provided, Singles (S3c) ******************/ - -reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// - Age20to24 Age25to29 Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// - Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// - Dhe_Fair Dhe_Good Dhe_VeryGood Dhe_Excellent /// - Deh_c4_High Deh_c4_Medium Deh_c4_Low /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s3c_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S3c") sheet("S3c") /// - title("Process S3c: Informal care hours provided, Singles") /// - gofrow(31) goflabel("S3c - Hours of informal care provided, Singles") /// - ifcond("${s3c_if_condition}") - - * Calculate RMSE -cap drop residuals squared_residuals -predict residuals, residuals -gen squared_residuals = residuals^2 - -preserve -keep if ${s3c_if_condition} - -sum squared_residuals [w=${weight}], meanonly -scalar rmse = sqrt(r(mean)) -di "RMSE for Informal care hours provided, Singles: " rmse - -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A11 = ("S3c") B11 = (rmse) - -restore - - - -/****************** OLS care hours provided, Partnered (S3d) *****************/ - -reg HrsProvidedInformalIHS HrsProvidedInformalIHS_L1 Dgn /// - Age20to24 Age25to29 Age30to34 Age35to39 Age40to44 Age45to49 Age50to54 /// - Age55to59 Age60to64 Age65to69 Age70to74 Age75to79 Age80to84 Age85plus /// - ReceiveCarePartner CareMarketFormalPartner CareMarketInformalPartner CareMarketMixedPartner /// - Dhe_Poor Dhe_Fair Dhe_Good Dhe_VeryGood /// - Dhesp_Fair Dhesp_Good Dhesp_VeryGood Dhesp_Excellent /// - Deh_c4_High Deh_c4_Medium Deh_c4_Low /// - HHincomeQ2 HHincomeQ3 HHincomeQ4 HHincomeQ5 /// - Y2020 Y2021 ${regions} ${ethnicity} /// - if ${s3d_if_condition} [pweight=${weight}], vce(r) - -process_regression, process("S3d") sheet("S3d") /// - title("Process S3d: Informal care hours provided, Partnered") /// - gofrow(35) goflabel("S3d - Hours of informal care provided, Partnered") /// - ifcond("${s3d_if_condition}") - - * Calculate RMSE -cap drop residuals squared_residuals -predict residuals, residuals -gen squared_residuals = residuals^2 - -preserve -keep if ${s3d_if_condition} - -sum squared_residuals [w=${weight}], meanonly -scalar rmse = sqrt(r(mean)) -di "RMSE for Informal care hours provided, Partnered: " rmse - -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A12 = ("S3d") B12 = (rmse) - -restore - - - -display "Analysis complete!" diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_unemployment.do b/input/InitialPopulations/compile/RegressionEstimates/reg_unemployment.do deleted file mode 100644 index 6d6928863..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_unemployment.do +++ /dev/null @@ -1,143 +0,0 @@ -******************************************************************************** -* PROJECT: ESPON -* SECTION: Unemployment -* OBJECT: Final Probit Models -* AUTHORS: Justin van de Ven -* LAST UPDATE: 21/04/2024 (JV) -******************************************************************************** -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - - -/******************************************************************************* -* DEFINE DIRECTORIES -*******************************************************************************/ -* Working directory -global dir_work "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\regression_estimates" - -* Directory which contains do files -global dir_do "${dir_work}/do" - -* Directory which contains data files -global dir_data "${dir_work}/data" - -* Directory which contains log files -global dir_log "${dir_work}/log" - -* Directory which contains pooled UKHLS dataset -global dir_ukhls_data "C:\MyFiles\99 DEV ENV\JAS-MINE\data work\initial_populations\data" - - -******************************************************************* -cap log close -log using "${dir_log}/reg_unemployment.log", replace -******************************************************************* - - -/******************************************************************************* -* START ANALYSIS -*******************************************************************************/ - - -/******************************************************************************* -* IMPORT UNEMPLOYMENT RATES -*******************************************************************************/ -import delimited "${dir_data}/unemp_rates.csv", clear -save "${dir_data}/unemp_rates", replace - - -/******************************************************************************* -* LOAD WORKING DATA -*******************************************************************************/ -use "$dir_ukhls_data/ukhls_pooled_all_obs_09.dta", clear -keep if (dag>15 & dag<75) - -// append unemployment rates to data -merge m:1 dgn deh_c3 dag stm using "${dir_data}/unemp_rates", keep(3) nogen -label variable dukue "UK unemployment rate by age, year, gender, and graduate status" - -gen unemp = (jbstat==3) -label variable unemp "labour status unemployed" -gen nemp = (jbstat!=1 & jbstat!=2 & jbstat!=10 & jbstat!=11) -replace nemp = . if (jbstat==4 | jbstat==5 | jbstat==7 | jbstat==8 | jbstat==9 | jbstat==12 | jbstat==13 | jbstat==14) -label variable nemp "labour status not employed" -label variable dgn "Gender" -gen ageGroup = floor(dag/5) -label variable ageGroup "five year age band" - -recode careWho dcpst drgn1 (-9=.) -recode formal_socare_hrs partner_socare_hrs daughter_socare_hrs son_socare_hrs other_socare_hrs (-9=0) -gen carer = (careWho>0) -gen recare = (formal_socare_hrs + partner_socare_hrs + daughter_socare_hrs + son_socare_hrs + other_socare_hrs > 0) - -gen ageUnder20 = (dag<20) -gen age20to24 = (dag>19) * (dag<25) - -gen dnc1 = (dnc==1) -gen dnc2 = (dnc==2) -gen dnc3 = (dnc>2) -gen dnc2p = (dnc>1) -gen dc02 = (dnc02>0) - - -/******************************************************************************* -* CALCULATE REGRESSION -*******************************************************************************/ -xtset idperson swv -probit unemp dukue i.dhe l.nemp ib8.drgn1 if (dgn==1 & dag>17 & dag<65 & deh_c3==1) [pweight=disclwt], vce(robust) -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_data/unempoyment", sheet("Process U1a male grads") replace -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_data/U1a.doc", replace /// -title("Process U1a: Probability of unemployment. Sample: Men aged 18-64 with graduate education.") /// - ctitle(Giving birth) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -probit unemp dukue i.dhe l.nemp ib8.drgn1 if (dgn==1 & dag>17 & dag<65 & deh_c3>1) [pweight=disclwt], vce(robust) -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_data/unempoyment", sheet("Process U1b male ngrads") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_data/U1b.doc", replace /// -title("Process U1b: Probability of unemployment. Sample: Men aged 18-64 with non-graduate education.") /// - ctitle(Giving birth) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -probit unemp dukue i.dhe l.nemp ib8.drgn1 if (dgn==0 & dag>17 & dag<65 & deh_c3==1) [pweight=disclwt], vce(robust) -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_data/unempoyment", sheet("Process U1c female grads") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_data/U1c.doc", replace /// -title("Process U1c: Probability of unemployment. Sample: Women aged 18-64 with graduate education.") /// - ctitle(Giving birth) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - -probit unemp dukue i.dhe l.nemp ib8.drgn1 if (dgn==0 & dag>17 & dag<65 & deh_c3>1) [pweight=disclwt], vce(robust) -matrix results = r(table) -matrix results = results[1..6,1...]' -putexcel set "$dir_data/unempoyment", sheet("Process U1d female ngrads") modify -putexcel A3 = matrix(results), names nformat(number_d2) -putexcel J4 = matrix(e(V)) -outreg2 stats(coef se pval) using "$dir_data/U1d.doc", replace /// -title("Process U1d: Probability of unemployment. Sample: Women aged 18-64 with non-graduate education.") /// - ctitle(Giving birth) label side dec(2) noparen addstat(R2, e(r2_p), Chi2, e(chi2), Log-likelihood, e(ll)) - - -// exploratory regressions -probit unemp i.ageGroup dukue carer recare i.dhe l.unemp ib1.dcpst dnc dnc02 i.drgn1 if (dgn==0 & deh_c3==1 & stm>2017) -probit unemp i.ageGroup dukue carer recare i.dhe l.unemp ib1.dcpst dnc dnc02 i.drgn1 if (dgn==0 & deh_c3>1 & stm>2017) -probit unemp i.ageGroup dukue carer recare i.dhe l.unemp ib1.dcpst dnc dnc02 i.drgn1 if (dgn==1 & deh_c3==1 & stm>2017) -probit unemp i.ageGroup dukue carer recare i.dhe l.unemp ib1.dcpst dnc dnc02 i.drgn1 if (dgn==1 & deh_c3>1 & stm>2017) - - - -capture log close - - - diff --git a/input/InitialPopulations/compile/RegressionEstimates/reg_wages.do b/input/InitialPopulations/compile/RegressionEstimates/reg_wages.do deleted file mode 100644 index 41cf4ffb7..000000000 --- a/input/InitialPopulations/compile/RegressionEstimates/reg_wages.do +++ /dev/null @@ -1,1362 +0,0 @@ -******************************************************************************************* -* PROJECT: SimPaths UK -* SECTION: Wage regression -* OBJECT: Heckman regressions -* AUTHORS: Patryk Bronka, Daria Popova, Justin van de Ven, Aleksandra Kolndrekaj -* LAST UPDATE: 18 Feb 2026 AK -****************************************************************************************** -****************************************************************************************** -* NOTES: Strategy: -* 1) Heckman estimated on the sub-sample of individuals -* who are not observed working in previous period. -* => Wage equation does not controls for lagged wage -* 2) Heckman estimated on the sub-sample of individuals who -* are observed working in previous period. -* => Wage equation controls for lagged wage -* Specification of selection equation is the same in the -* two samples -* -* Import labour cost index to create a measure of wage growth. -* Make sure loaded into the external_data subfolder. -* -* Update the winsorization process if alter data -* -*******************************************************************************/ -clear all -set more off -set mem 200m -set type double -//set maxvar 120000 -set maxvar 30000 - -******************************************************************* -cap log close -log using "${dir_log}/reg_wages.log", replace -******************************************************************* - -***************************************************************************************************************************** -* Set Excel file -* Info sheet - first stage -putexcel set "$dir_results/reg_employment_selection", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "This file contains regression estimates from the first stage of the Heckman selection model used to estimates wages." -putexcel A2 = "Authors: Patryk Bronka, Justin Van de Ven, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A5 = "Process:", bold -putexcel B5 = "Description:", bold -putexcel A6 = "W1fa-sel" -putexcel B6 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" -putexcel A7 = "W1ma-sel" -putexcel B7 = "First stage Heckman selection estimates for women that do not have an observed wage in the previous year" -putexcel A8 = "W1fb-sel" -putexcel B8 = "First stage Heckman selection estimates for women that have an observed wage in the previous year" -putexcel A9 = "W1mb-sel" -putexcel B9 = "First stage Heckman selection estimates for men that have an observed wage in the previous year" - -putexcel A11 = "Notes:", bold -putexcel B11 = "Estimated on panel data unlike the labour supply estimates" -putexcel B12 = "Predicted wages used as input into union parameters and income process estimates" -putexcel B13 = "Two-step Heckman command is used which does not permit weights" - -* Info sheet - second stage -putexcel set "$dir_results/reg_wages", sheet("Info") replace -putexcel A1 = "Description:" -putexcel B1 = "This file contains regression estimates used to calculate potential wages for males and females in the simulation." -putexcel A2 = "Authors: Patryk Bronka, Daria Popova, Aleksandra Kolndrekaj" -putexcel A3 = "Last edit: 18 Feb 2026 AK" - -putexcel A4 = "Process:", bold -putexcel B4 = "Description:", bold -putexcel A5 = "Process:", bold -putexcel B5 = "Description:", bold -putexcel A6 = "W1fa" -putexcel B6 = "Second stage Heckman selection estimates using women that do not have an observed wage in the previous year" -putexcel A7 = "W1ma" -putexcel B7 = "Second stage Heckman selection estimates using men that do not have an observed wage in the previous year" -putexcel A8 = "W1fb" -putexcel B8 = "Second stage Heckman selection estimates using women that have an observed wage in the previous year" -putexcel A9 = "W1mb" -putexcel B9 = "Second stage Heckman selection estimates using men that have an observed wage in the previous year" - -putexcel A11 = "Notes:", bold -putexcel B11 = "Estimation sample: UK_ipop.dta. Two-step Heckman command is used which does not permit weights" -putexcel B12 = "Conditions for processes are defined as globals in master.do" -putexcel B13 = "Predicted wages sre saved in dataset UK_ipop2.dta and used as input into union parameters and income process estimates" - -/**************************************************************/ -* prepare data on real growth of wages -/**************************************************************/ - -import excel "$dir_external_data/time_series_factor.xlsx", sheet("UK_wage_growth") firstrow clear // Import real wage growth rates -rename Year stm -rename Value real_wage_growth -replace stm = stm - 2000 -sum real_wage_growth if stm == 15 -gen base = r(mean) -replace real_wage_growth = real_wage_growth / base // Note: switching from 100 base to 1 base as that's what happens in the simulation when rebasing indices -drop base -save "$dir_external_data/growth_rates", replace - -/********************************* PREPARE DATA *******************************/ - -* Load data -use "${estimation_sample}", clear - -* Set data -xtset idperson swv -sort idperson swv - -* Adjust variables -do "${dir_do}/variable_update.do" - -* merge in real growth index -merge m:1 stm using "$dir_external_data/growth_rates", keep(3) nogen keepusing(real_wage_growth) - -* Hours work per week -gen hours = 0 -replace hours = lhw if ((lhw > 0) & (lhw < .)) -label var hours "Hours worked per week" - -* Hourly wage -gen wage_hour = obs_earnings_hourly - -* Winsorize -sum wage_hour, det -replace wage_hour = . if wage_hour <= 0 -replace wage_hour = . if wage_hour >= r(p99) - -gen lwage_hour = ln(wage_hour) -label var lwage_hour "Log gross hourly wage" - -gen lwage_hour_2 = lwage_hour^2 -label var lwage_hour_2 "Squared log gross hourly wage" - - -* relationship status (1=cohabitating) -gen mar = (dcpst==1) - -* children -gen any02 = dnc02 > 0 - -gen dnc4p = dnc -replace dnc4p = 1 if (dnc>4) - -gen dnc2p = dnc -replace dnc2p = 2 if (dnc>2) - -cap drop child -gen child = (dnc>0) - -*employment status in previous wave -sort idperson swv -gen L1les_c3 = L1.les_c3 - -*part time work -gen pt = (hours > 0) * (hours <= 25) - -* Flag to identify observations to be included in the estimation sample -* Need to have been observed at least once in the past and activity information -* is not missing in the previous observation -bys idperson (swv): gen obs_count_ttl = _N -bys idperson (swv): gen obs_count = _n - -gen in_sample = (obs_count_ttl > 1 & obs_count > 1) -replace in_sample = 0 if swv != swv[_n-1] +1 & idperson == idperson[_n-1] -replace in_sample = 0 if les_c3 == . | obs_earning == . -fre in_sample - - -* Flag to distinguish the two samples (prev work and not) -capture drop previouslyWorking -gen previouslyWorking = (L1.lwage_hour != .) -replace previouslyWorking = . if in_sample == 0 -fre previouslyWorking - - -* Prep storage -capture drop lwage_hour_hat wage_hour_hat esample -gen lwage_hour_hat = . -gen wage_hour_hat = . -gen esample = . -gen pred_hourly_wage = . - -/********************************** ESTIMATION ********************************/ - -/******************** WAGES: WOMEN, NO PREV WAGE OBSERVED *********************/ - -* Estimate a predicted wage using a Heckman selection model -* Sample: Working age (16-75) women who did not receive a wage in t-1 -* DV: Log gross hourly wage - -global wage_eqn "lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded -global seln_eqn "i.L1les_c3 dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded - -local filter = "${wages_f_no_prev_if_condition}" -display "`filter'" - -heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) - -outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_NWW.doc", replace /// -title("Heckman-corrected wage equation estimated on the sample of women who were not in employment last year") /// - ctitle(Not working women) label side dec(2) noparen - -/***************************************************************************/ -* Eigenvalue stability check - -* Extract variance-covariance matrix -matrix V = e(V) - -* Preserve data state -preserve - -* Export V to dataset -clear -svmat double V - -* Drop zero rows and columns -forvalues r = 1/2 { - egen rowsum = rowtotal(*) - drop if rowsum == 0 - drop rowsum - xpose, clear -} - -* Recreate trimmed VCV matrix -mkmat *, matrix(V_trimmed) - -restore - -* Eigen decomposition -matrix symeigen X lambda = V_trimmed - -* Largest eigenvalue -scalar max_eig = lambda[1,1] - -* Smallest-to-largest eigenvalue ratio -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Check 1: near singularity -if max_eig < 1.0e-12 { - display as error "CRITICAL ERROR: Heckman VCV near singular" - display as error "Max eigenvalue = " max_eig - exit 999 -} - -* Check 2: ill-conditioning -if min_ratio < 1.0e-12 { - display as error "ERROR: Heckman VCV ill-conditioned" - display as error "Min/Max eigenvalue ratio = " min_ratio - exit 506 -} - -display "VCV stability check passed" -display "Max eigenvalue: " max_eig -display "Min/Max ratio: " min_ratio - -/***************************************************************************/ - -* Obtain predicted values (log wage) with selection correction - -predict pred if `filter', ycond // ycond -> include IMR in prediction to account for selection into employment -replace lwage_hour_hat = pred if `filter' - -gen in_sample_fnpw = e(sample) - -* Correct bias when transforming from log to levels -cap drop epsilon -gen epsilon = rnormal()*e(sigma) -replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' - - -twoway (hist wage_hour if `filter', width(0.5) /// - lcolor(gs12) fcolor(gs12)) /// - (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// - fcolor(none) lcolor(red)), /// - title("Gross Hourly Wage (Level)") /// - subtitle("Females, No previously observed wage") /// - xtitle("GBP") /// - legend(lab(1 "UKHLS") lab(2 "Prediction")) /// - note("Notes: Sample condition ${wages_f_no_prev_if_condition}", size(vsmall)) - -graph export "${dir_raw_results}/wages/W1fa_hist.png", replace - -graph drop _all - -sum wage_hour if `filter' [aw=dwt] -sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] - -* Save sample validation -save "$dir_validation_data/Female_NPW_sample", replace - -cap drop pred epsilon - - -* Formatted results -* Clean up matrix of estimates -* Note: Zeros values are eliminated -matrix b = e(b) -matrix V = e(V) - -* Store variance-covariance matrix -preserve - -putexcel set "$dir_raw_results/wages/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/wages/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) - -* Second stage -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Females_NLW") replace -putexcel C2 = matrix(var) - -restore - -* Store estimated coefficients -* Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Females_NLW") modify -putexcel A1 = matrix(nonzero_b'), names //nformat(number_d2) - -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Females_NLW") firstrow /// - clear -ds -//define which cells are to be dropped -drop if C == 0 // UPDATE -drop A -drop AG-BL // UPDATE - - -mkmat *, matrix(Females_NLW) -putexcel set "$dir_results/reg_wages", sheet("W1fa") modify -putexcel B2 = matrix(Females_NLW) - -restore - - -* Labelling -putexcel set "$dir_results/reg_wages", /// - sheet("W1fa") modify - -local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - - -* First stage -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Females_NLW") firstrow /// - clear -ds - -drop if AG == 0 // UPDATE -drop A -drop C-AF // UPDATE -drop BM // UPDATE - - -mkmat *, matrix(Females_NLW) -putexcel set "$dir_results/reg_employment_selection", /// - sheet("W1fa-sel") modify -putexcel B2 = matrix(Females_NLW) - -restore - -* Labelling -putexcel set "$dir_results/reg_employment_selection", sheet("W1fa-sel") modify - -local var_list Les_c3_Student_L1 Les_c3_NotEmployed_L1 Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - -cap drop lambda - - -* Calculate RMSE -cap drop residuals squared_residuals -gen residuals = lwage_hour - lwage_hour_hat -gen squared_residuals = residuals^2 - -preserve -keep if `filter' -sum squared_residuals -di "RMSE for Not employed women: " sqrt(r(mean)) -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A2=("W1fa") B2=(sqrt(r(mean))) -restore - - -/******************** WAGES: MEN, NO PREV WAGE OBSERVED *********************/ - -* Estimate a predicted wage using a Heckman selection model -* Sample: Working age (16-75) men who did not receive a wage in t-1 -* DV: Log gross hourly wage - -global wage_eqn "lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded -global seln_eqn "i.L1les_c3 dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded - -local filter = "${wages_m_no_prev_if_condition}" -display "`filter'" - -heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) - -outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_NWM.doc", replace /// -title("Heckman-corrected wage equation estimated on the sample of men who were not in employment last year") /// - ctitle(Not working men) label side dec(2) noparen - -/***************************************************************************/ -* Eigenvalue stability check - -* Extract variance-covariance matrix -matrix V = e(V) - -* Preserve data state -preserve - -* Export V to dataset -clear -svmat double V - -* Drop zero rows and columns -forvalues r = 1/2 { - egen rowsum = rowtotal(*) - drop if rowsum == 0 - drop rowsum - xpose, clear -} - -* Recreate trimmed VCV matrix -mkmat *, matrix(V_trimmed) - -restore - -* Eigen decomposition -matrix symeigen X lambda = V_trimmed - -* Largest eigenvalue -scalar max_eig = lambda[1,1] - -* Smallest-to-largest eigenvalue ratio -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Check 1: near singularity -if max_eig < 1.0e-12 { - display as error "CRITICAL ERROR: Heckman VCV near singular" - display as error "Max eigenvalue = " max_eig - exit 999 -} - -* Check 2: ill-conditioning -if min_ratio < 1.0e-12 { - display as error "ERROR: Heckman VCV ill-conditioned" - display as error "Min/Max eigenvalue ratio = " min_ratio - exit 506 -} - -display "VCV stability check passed" -display "Max eigenvalue: " max_eig -display "Min/Max ratio: " min_ratio - -/***************************************************************************/ - - -* Obtain predicted values (log wage) with selection correction -predict pred if `filter', ycond // ycond -> include IMR in prediction to account for selection into employment -replace lwage_hour_hat = pred if `filter' - -gen in_sample_mnpw = e(sample) - -* Correct bias transforming from log to levels -gen epsilon = rnormal()*e(sigma) - -replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' - -twoway (hist wage_hour if `filter', width(0.5) /// - lcolor(gs12) fcolor(gs12)) /// - (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// - fcolor(none) lcolor(red)), /// - title("Gross Hourly Wage (Level)") /// - subtitle("Males, No previously observed wage") /// - xtitle("GBP") /// - legend(lab(1 "UKHLS") lab(2 "Prediction")) /// - note("Notes: Sample condition ${wages_m_no_prev_if_condition}", size(vsmall)) - -graph export "${dir_raw_results}/wages/W1ma_hist.png", replace - -graph drop _all - -sum wage_hour if `filter' [aw=dwt] -sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] - - -* Save sample for validation -save "$dir_validation_data/Male_NPW_sample", replace -cap drop pred epsilon - - -* Formatted results -* Clean up matrix of estimates -* Note: Zeros values are eliminated -matrix b = e(b) -matrix V = e(V) - -* Store variance-covariance matrix -preserve - -putexcel set "$dir_raw_results/wages/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/wages/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) - -* Second stage -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Males_NLW") replace -putexcel C2 = matrix(var) - -restore - -* Store estimated coefficients -* Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Males_NLW") modify -putexcel A1 = matrix(nonzero_b'), names //nformat(number_d2) - -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Males_NLW") firstrow /// - clear -ds - -drop if C == 0 // UPDATE -drop A -drop AG-BL // UPDATE - - - -mkmat *, matrix(Males_NLW) -putexcel set "$dir_results/reg_wages", /// - sheet("W1ma") modify -putexcel B2 = matrix(Males_NLW) - -restore - -* Labelling -putexcel set "$dir_results/reg_wages", /// - sheet("W1ma") modify - -local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - - -* First stage -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Males_NLW") firstrow /// - clear -ds - -drop if AG == 0 // UPDATE -drop A -drop C-AF // UPDATE -drop BM // UPDATE - - -mkmat *, matrix(Males_NLW) -putexcel set "$dir_results/reg_employment_selection", /// - sheet("W1ma-sel") modify -putexcel B2 = matrix(Males_NLW) - -restore - -* Labelling -putexcel set "$dir_results/reg_employment_selection", /// - sheet("W1ma-sel") modify - -local var_list Les_c3_Student_L1 Les_c3_NotEmployed_L1 Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - -cap drop lambda - -* Calculate RMSE -cap drop residuals squared_residuals -gen residuals = lwage_hour - lwage_hour_hat -gen squared_residuals = residuals^2 - -preserve -keep if `filter' -sum squared_residuals -di "RMSE for Not employed men: " sqrt(r(mean)) -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A3=("W1ma") B3=(sqrt(r(mean))) -restore - - -/******************** WAGES: WOMEN, PREV WAGE OBSERVED *********************/ - -* Estimate a predicted wage using a Heckman selection model -* Sample: Working age (16-75) women who received a wage in t-1 -* DV: Log gross hourly wage - -global wage_eqn "lwage_hour L1.lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded -global seln_eqn "dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded - -local filter = "${wages_f_prev_if_condition}" -display "`filter'" - -heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) - -outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_WW.doc", replace /// -title("Heckman-corrected wage equation estimated on the sample of women who were in employment last year") /// - ctitle(Working women) label side dec(2) noparen - - /***************************************************************************/ -* Eigenvalue stability check - -* Extract variance-covariance matrix -matrix V = e(V) - -* Preserve data state -preserve - -* Export V to dataset -clear -svmat double V - -* Drop zero rows and columns -forvalues r = 1/2 { - egen rowsum = rowtotal(*) - drop if rowsum == 0 - drop rowsum - xpose, clear -} - -* Recreate trimmed VCV matrix -mkmat *, matrix(V_trimmed) - -restore - -* Eigen decomposition -matrix symeigen X lambda = V_trimmed - -* Largest eigenvalue -scalar max_eig = lambda[1,1] - -* Smallest-to-largest eigenvalue ratio -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Check 1: near singularity -if max_eig < 1.0e-12 { - display as error "CRITICAL ERROR: Heckman VCV near singular" - display as error "Max eigenvalue = " max_eig - exit 999 -} - -* Check 2: ill-conditioning -if min_ratio < 1.0e-12 { - display as error "ERROR: Heckman VCV ill-conditioned" - display as error "Min/Max eigenvalue ratio = " min_ratio - exit 506 -} - -display "VCV stability check passed" -display "Max eigenvalue: " max_eig -display "Min/Max ratio: " min_ratio - -/***************************************************************************/ - - * Obtain predicted values (log wage) with selection correction -predict pred if `filter', ycond // ycond -> include IMR in prediction -replace lwage_hour_hat = pred if `filter' - -gen in_sample_fpw = 1 if e(sample) == 1 - -* Correct bias transforming from log to levels -gen epsilon = rnormal()* e(sigma) -replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' - -twoway (hist wage_hour if `filter', width(0.5) /// - lcolor(gs12) fcolor(gs12)) /// - (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// - fcolor(none) lcolor(red)), /// - title("Gross Hourly Wage (Level)") /// - subtitle("Females, Previously observed wage") /// - xtitle("GBP") /// - legend(lab(1 "UKHLS") lab(2 "Prediction")) /// - note("Notes: Sample condition ${wages_f_prev_if_condition}", /// - size(vsmall)) - -graph export "${dir_raw_results}/wages/W1fb_hist.png", replace - -graph drop _all - -sum wage_hour if `filter' [aw=dwt] -sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] - - -* Save sample for validation -save "$dir_validation_data/Female_PW_sample", replace - -cap drop pred epsilon - -* Formatted results -* Clean up matrix of estimates -* Note: Zeros values are eliminated -matrix b = e(b) -matrix V = e(V) - -* Store variance-covariance matrix -preserve - -putexcel set "$dir_raw_results/wages/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/wages/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) - -* Second stage -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Females_LW") replace -putexcel C2 = matrix(var) - -restore - -* Store estimated coefficients -* Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Females_LW") modify -putexcel A1 = matrix(nonzero_b'), names //nformat(number_d2) - -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Females_LW") firstrow /// - clear -ds -drop if C == 0 // UPDATE -drop A -drop AH-BK // UPDATE - -mkmat *, matrix(Females_LW) -putexcel set "$dir_results/reg_wages", sheet("W1fb") modify -putexcel B2 = matrix(Females_LW) - -restore - -* Labelling -putexcel set "$dir_results/reg_wages", /// - sheet("W1fb") modify - -local var_list L1_log_hourly_wage Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - - -* First stage -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Females_LW") firstrow /// - clear -ds -drop if AH == 0 // UPDATE -drop A -drop C-AG // UPDATE -drop BL // UPDATE - -mkmat *, matrix(Females_LW) -putexcel set "$dir_results/reg_employment_selection", sheet("W1fb-sel") modify -putexcel B2 = matrix(Females_LW) - -restore - -* Labelling -putexcel set "$dir_results/reg_employment_selection", sheet("W1fb-sel") modify - -local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - -cap drop lambda - - -* Calculate RMSE -cap drop residuals squared_residuals -gen residuals = lwage_hour - lwage_hour_hat -gen squared_residuals = residuals^2 - -preserve -keep if `filter' -sum squared_residuals -di "RMSE for Employed women: " sqrt(r(mean)) -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A4=("W1fb") B4=(sqrt(r(mean))) -restore - - -/******************** WAGES: MEN, PREV WAGE OBSERVED *********************/ - -* Estimate a predicted wage using a Heckman selection model -* Sample: Working age (16-75) men who received a wage in t-1 -* DV: Log gross hourly wage - -global wage_eqn "lwage_hour L1.lwage_hour dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 pt real_wage_growth y2020 y2021 i.dot" //ded -global seln_eqn "dag dagsq ib1.deh_c4 ib1.deh_c4#c.dag i.dehmf_c3 mar child dlltsd01 l.dhe_pcs l.dhe_mcs ib8.drgn1 y2020 y2021 i.dot" //ded - -local filter = "${wages_m_prev_if_condition}" -display "`filter'" - -heckman $wage_eqn if `filter', select($seln_eqn) twostep mills(lambda) - -outreg2 stats(coef se pval) using "$dir_raw_results/wages/Output_WM.doc", replace /// -title("Heckman-corrected wage equation estimated on the sample of men who were in employment last year") /// - ctitle(Working women) label side dec(2) noparen - -/***************************************************************************/ -* Eigenvalue stability check - -* Extract variance-covariance matrix -matrix V = e(V) - -* Preserve data state -preserve - -* Export V to dataset -clear -svmat double V - -* Drop zero rows and columns -forvalues r = 1/2 { - egen rowsum = rowtotal(*) - drop if rowsum == 0 - drop rowsum - xpose, clear -} - -* Recreate trimmed VCV matrix -mkmat *, matrix(V_trimmed) - -restore - -* Eigen decomposition -matrix symeigen X lambda = V_trimmed - -* Largest eigenvalue -scalar max_eig = lambda[1,1] - -* Smallest-to-largest eigenvalue ratio -scalar min_ratio = lambda[1, colsof(lambda)] / max_eig - -* Check 1: near singularity -if max_eig < 1.0e-12 { - display as error "CRITICAL ERROR: Heckman VCV near singular" - display as error "Max eigenvalue = " max_eig - exit 999 -} - -* Check 2: ill-conditioning -if min_ratio < 1.0e-12 { - display as error "ERROR: Heckman VCV ill-conditioned" - display as error "Min/Max eigenvalue ratio = " min_ratio - exit 506 -} - -display "VCV stability check passed" -display "Max eigenvalue: " max_eig -display "Min/Max ratio: " min_ratio - -/***************************************************************************/ - * Obtain predicted values (log wage) with selection correction -predict pred if `filter', ycond // ycond -> include IMR in prediction - -replace lwage_hour_hat = pred if `filter' - -gen in_sample_mpw = e(sample) - -* Correct bias transforming from log to levels -gen epsilon = rnormal()*e(sigma) -replace pred_hourly_wage = exp(lwage_hour_hat + epsilon) if `filter' - -twoway (hist wage_hour if `filter', width(0.5) /// - lcolor(gs12) fcolor(gs12)) /// - (hist pred_hourly_wage if `filter' & (!missing(wage_hour)), width(0.5) /// - fcolor(none) lcolor(red)), /// - title("Gross Hourly Wage (Level)") /// - subtitle("Male, Previously observed wage") /// - xtitle("GBP") /// - legend(lab(1 "UKHLS") lab(2 "Prediction")) /// - note("Notes: Sample condition ${wages_m_prev_if_condition}", /// - size(vsmall)) - -graph export "${dir_raw_results}/wages/W1mb_hist.png", replace - -graph drop _all - -sum wage_hour if `filter' [aw=dwt] -sum pred_hourly_wage if `filter' & (!missing(wage_hour)) [aw=dwt] - -* Save sample for validation -save "$dir_validation_data/Male_PW_sample", replace - -cap drop pred epsilon - - - * Formatted results -* Clean up matrix of estimates -* Note: Zeros values are eliminated -matrix b = e(b) -matrix V = e(V) - -* Store variance-covariance matrix -preserve - -putexcel set "$dir_raw_results/wages/var_cov", sheet("var_cov") replace -putexcel A1 = matrix(V) - -import excel "$dir_raw_results/wages/var_cov", sheet("var_cov") clear - -describe -local no_vars = `r(k)' - -forvalues i = 1/2 { - egen row_sum = rowtotal(*) - drop if row_sum == 0 - drop row_sum - xpose, clear -} - -mkmat v*, matrix(var) - -* Second stage -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Males_LW") replace -putexcel C2 = matrix(var) - -restore - -* Store estimated coefficients -* Initialize a counter for non-zero coefficients -local non_zero_count = 0 -//local names : colnames b - -* Loop through each element in `b` to count non-zero coefficients -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - local non_zero_count = `non_zero_count' + 1 - } -} - -* Create a new row vector to hold only non-zero coefficients -matrix nonzero_b = J(1, `non_zero_count', .) - -* Populate nonzero_b with non-zero coefficients from b -local index = 1 -forvalues i = 1/`no_vars' { - if (b[1, `i'] != 0) { - matrix nonzero_b[1, `index'] = b[1, `i'] - local index = `index' + 1 - } -} - -putexcel set "$dir_raw_results/wages/reg_wages", sheet("Males_LW") modify -putexcel A1 = matrix(nonzero_b'), names //nformat(number_d2) - -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Males_LW") firstrow /// - clear -ds -drop if C == 0 // UPDATE -drop A -drop AH-BK // UPDATE - - -mkmat *, matrix(Males_LW) -putexcel set "$dir_results/reg_wages", sheet("W1mb") modify -putexcel B2 = matrix(Males_LW) - -restore - -* Labelling -putexcel set "$dir_results/reg_wages", /// - sheet("W1mb") modify - -local var_list L1_log_hourly_wage Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dlltsd01 Dhe_pcs_L1 Dhe_mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Pt RealWageGrowth Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant InverseMillsRatio - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - - -* First stage -preserve - -import excel "$dir_raw_results/wages/reg_wages", sheet("Males_LW") firstrow /// - clear -ds -drop if AH == 0 // UPDATE -drop A -drop C-AG // UPDATE -drop BL // UPDATE - -mkmat *, matrix(Males_LW) -putexcel set "$dir_results/reg_employment_selection", sheet("W1mb-sel") modify -putexcel B2 = matrix(Males_LW) - -restore - -* Labelling -putexcel set "$dir_results/reg_employment_selection", sheet("W1mb-sel") modify - -local var_list Dag Dag_sq Deh_c4_Medium Deh_c4_Low Deh_c4_Medium_Dag /// - Deh_c4_Low_Dag Dehmf_c3_Medium Dehmf_c3_Low Dcpst_Partnered D_Children Dlltsd01 Dhe_Pcs_L1 Dhe_Mcs_L1 /// - UKC UKD UKE UKF UKG UKH UKJ UKK UKL UKM UKN Y2020 Y2021 /// - Ethn_Asian Ethn_Black Ethn_Other Constant - - -putexcel A1 = "REGRESSOR" -putexcel B1 = "COEFFICIENT" - -local i = 1 -foreach var in `var_list' { - local ++i - - putexcel A`i' = "`var'" - -} - -local i = 2 -foreach var in `var_list' { - local ++i - - if `i' <= 26 { - local letter = char(64 + `i') // Convert 1=A, 2=B, ..., 26=Z - putexcel `letter'1 = "`var'" - } - else { - local first = char(64 + int((`i' - 1) / 26)) // First letter: A-Z - local second = char(65 + mod((`i' - 1), 26)) // Second letter: A-Z - putexcel `first'`second'1 = "`var'" // Correctly places AA-ZZ - } -} - -cap drop lambda - - -* Calculate RMSE -cap drop residuals squared_residuals -gen residuals = lwage_hour - lwage_hour_hat -gen squared_residuals = residuals^2 - -preserve -keep if `filter' -sum squared_residuals -di "RMSE for Employed men: " sqrt(r(mean)) -putexcel set "$dir_results/reg_RMSE.xlsx", sheet("UK") modify -putexcel A1=("REGRESSOR") B1=("COEFFICIENT") /// -A5=("W1mb") B5=(sqrt(r(mean))) -restore - -* Save for use in the do-file "reg_income" estimating non-employment incomes -// use predicted wage for all -// use the observed wage for those that are working today and not in any -// estimation sample above (first observation for an individual) -replace pred_hourly_wage = exp(lwage_hour) if missing(pred_hourly_wage) - -save "${estimation_sample2}", replace - -capture log close diff --git a/input/InitialPopulations/compile/RegressionEstimates/variable_update.do b/input/InitialPopulations/compile/RegressionEstimates/variable_update.do index 24551baaa..898469a8d 100644 --- a/input/InitialPopulations/compile/RegressionEstimates/variable_update.do +++ b/input/InitialPopulations/compile/RegressionEstimates/variable_update.do @@ -17,6 +17,11 @@ foreach var in idhh idperson idpartner idfather idmother dct drgn1 dwt dnc02 dnc qui recode `var' (-9/-1=.) } +* Set data +xtset idperson swv +sort idperson swv + + *================================================== * Student flag *================================================== @@ -27,27 +32,86 @@ replace Dst = 1 if les_c3 == 2 replace Dst = . if les_c3 == . *================================================== -* Age transformations +* In first education spell +*================================================== +gen Ded = ded +gen eduSampleFlag = ded +gen eduSampleFlagL1 = l.ded + + +*================================================== +* Sex and Age transformations *================================================== -gen Dag = dag +/*--------------------------------------------------*/ +/* Sex */ +/*--------------------------------------------------*/ + +gen Dgn = dgn +gen demMaleFlag = dgn + + +/*--------------------------------------------------*/ +/* Raw age variables */ +/*--------------------------------------------------*/ + +gen Dag = dag gen Dag_sq = dagsq + gen Age = dag -gen AgeSquared = dag^2 +gen AgeSquared = dag^2 if !missing(dag) + +gen demAge = dag +gen demAgeSq = dagsq + + +/*--------------------------------------------------*/ +/* Centered age terms */ +/*--------------------------------------------------*/ + +gen Dag_c = dag - 23 if !missing(dag) +gen Dag_c_sq = Dag_c^2 if !missing(Dag_c) -gen Dag_c = dag - 23 -gen Dag_c_sq = Dag_c^2 -gen Dag_post25 = (dag > 25) * (dag - 25) +/*--------------------------------------------------*/ +/* Piecewise linear age terms */ +/*--------------------------------------------------*/ -gen Dag_post21 = (dag > 21) * (dag - 21) -gen Dag_post18_sq = (dag > 18) * (dag - 18)^2 -gen Dag_post21_sq = (dag > 21) * (dag - 21)^2 -gen Dag_post25_sq = (dag > 25) * (dag - 25)^2 -gen Dag_post26_sq = (dag > 26) * (dag - 26)^2 +gen Dag_post21 = (dag > 21) * (dag - 21) if !missing(dag) +gen Dag_post25 = (dag > 25) * (dag - 25) if !missing(dag) + + +/*--------------------------------------------------*/ +/* Piecewise quadratic age terms */ +/*--------------------------------------------------*/ + +gen Dag_post18_sq = (dag > 18) * (dag - 18)^2 if !missing(dag) +gen Dag_post21_sq = (dag > 21) * (dag - 21)^2 if !missing(dag) +gen Dag_post25_sq = (dag > 25) * (dag - 25)^2 if !missing(dag) +gen Dag_post26_sq = (dag > 26) * (dag - 26)^2 if !missing(dag) + + +/*--------------------------------------------------*/ +/* Restricted cubic splines */ +/*--------------------------------------------------*/ mkspline rcs = dag, cubic knots(18 21 23 26) + +/*--------------------------------------------------*/ +/* Pension age eligibility */ +/*--------------------------------------------------*/ + +gen Elig_pen = dagpns +gen Elig_pen_L1 = L1.dagpns + +gen Reached_Retirement_Age = dagpns +gen Reached_Retirement_Age_Sp = dagpns_sp + +gen demPensAgeFlag = dagpns +gen demPensPartnerAgeFlag = dagpns_sp + + *================================================== * Time transformations *================================================== @@ -69,33 +133,153 @@ gen Year_transformed = stm gen Year = stm gen YearSquared = stm^2 -*================================================== -* Income variables -*================================================== +*refactored -gen receives_ypncp = ypncp > 0 & !missing(ypncp) //capital income +gen demYearTransformed = stm -gen receives_ypnoab = ypnoab > 0 & !missing(ypnoab) //private pension income +gen demYear= stm +foreach y of numlist 11/25 { + gen demYear20`y' = (demYear == `y') + } -recode ynbcpdf_dv (-999 = .) +/*==================================================*/ +/* INCOME */ +/*==================================================*/ -tab ydses_c5 , gen(Ydses_c5_Q) +/*--------------------------------------------------*/ +/* Raw income variables */ +/*--------------------------------------------------*/ -*================================================== -* Education recoding -*================================================== -cap drop deh_c3_recoded -recode deh_c3 (1 = 3) (3 = 1), gen(deh_c3_recoded) +gen Ydses_c5 = ydses_c5 -cap lab define deh_c3_recoded 1 "Low" 2 "Medium" 3 "High" -label values deh_c3_recoded deh_c3_recoded +gen Ypncp = ypncp +gen Ypnoab = ypnoab +gen Yplgrs_dv = yplgrs_dv +gen Ypnbihs_dv = ypnbihs_dv +gen Ypnbihs_dv_sq = ypnbihs_dv^2 if !missing(ypnbihs_dv) +gen Ynbcpdf_dv = ynbcpdf_dv +gen Yptciihs_dv = yptciihs_dv + + +/*--------------------------------------------------*/ +/* Income receipt indicators */ +/*--------------------------------------------------*/ + +gen receives_ypncp = (ypncp > 0) if !missing(ypncp) +gen receives_ypnoab = (ypnoab > 0) if !missing(ypnoab) + + +/*--------------------------------------------------*/ +/* Household income quintiles */ +/*--------------------------------------------------*/ + +gen Ydses_c5_Q1 = (ydses_c5 == 1) if !missing(ydses_c5) +gen Ydses_c5_Q2 = (ydses_c5 == 2) if !missing(ydses_c5) +gen Ydses_c5_Q3 = (ydses_c5 == 3) if !missing(ydses_c5) +gen Ydses_c5_Q4 = (ydses_c5 == 4) if !missing(ydses_c5) +gen Ydses_c5_Q5 = (ydses_c5 == 5) if !missing(ydses_c5) + +gen L_Ydses_c5 = L1.ydses_c5 + +gen L_Ydses_c5_Q1 = (L1.ydses_c5 == 1) if !missing(L1.ydses_c5) +gen L_Ydses_c5_Q2 = (L1.ydses_c5 == 2) if !missing(L1.ydses_c5) +gen L_Ydses_c5_Q3 = (L1.ydses_c5 == 3) if !missing(L1.ydses_c5) +gen L_Ydses_c5_Q4 = (L1.ydses_c5 == 4) if !missing(L1.ydses_c5) +gen L_Ydses_c5_Q5 = (L1.ydses_c5 == 5) if !missing(L1.ydses_c5) + +gen yHhQuintilesMonthC5 = ydses_c5 + +gen yHhQuintilesMonthC5Q1 = (ydses_c5 == 1) if !missing(ydses_c5) +gen yHhQuintilesMonthC5Q2 = (ydses_c5 == 2) if !missing(ydses_c5) +gen yHhQuintilesMonthC5Q3 = (ydses_c5 == 3) if !missing(ydses_c5) +gen yHhQuintilesMonthC5Q4 = (ydses_c5 == 4) if !missing(ydses_c5) +gen yHhQuintilesMonthC5Q5 = (ydses_c5 == 5) if !missing(ydses_c5) + +gen yHhQuintilesMonthC5L1 = L1.ydses_c5 + +gen yHhQuintilesMonthC5Q1L1 = (L1.ydses_c5 == 1) if !missing(L1.ydses_c5) +gen yHhQuintilesMonthC5Q2L1 = (L1.ydses_c5 == 2) if !missing(L1.ydses_c5) +gen yHhQuintilesMonthC5Q3L1 = (L1.ydses_c5 == 3) if !missing(L1.ydses_c5) +gen yHhQuintilesMonthC5Q4L1 = (L1.ydses_c5 == 4) if !missing(L1.ydses_c5) +gen yHhQuintilesMonthC5Q5L1 = (L1.ydses_c5 == 5) if !missing(L1.ydses_c5) + + +/*--------------------------------------------------*/ +/* Continuous income variables */ +/*--------------------------------------------------*/ + +gen yNonBenPersGrossMonth = Ypnbihs_dv +gen yNonBenPersGrossMonthL1 = L1.Ypnbihs_dv + +gen yPersAndPartnerGrossDiffMonth = Ynbcpdf_dv +gen yPersAndPartnerGrossDiffMonthL1 = L1.Ynbcpdf_dv + + +/*--------------------------------------------------*/ +/* Capital income */ +/*--------------------------------------------------*/ + +sum ypncp, detail + +scalar p99 = r(p99) + +replace ypncp = . if ypncp >= p99 & !missing(ypncp) +replace Ypncp = . if Ypncp >= p99 & !missing(Ypncp) + + +gen yCapitalPersMonth = ypncp +gen yCapitalPersMonthL1 = L1.ypncp +gen yCapitalPersMonthL2 = L2.ypncp + + +/*--------------------------------------------------*/ +/* Employment income */ +/*--------------------------------------------------*/ + +gen yEmpPersGrossMonth = yplgrs_dv + +gen yEmpPersGrossMonthL1 = L1.yplgrs_dv +gen yEmpPersGrossMonthL2 = L2.yplgrs_dv +gen yEmpPersGrossMonthL3 = L3.yplgrs_dv + + +/*--------------------------------------------------*/ +/* Pension income */ +/*--------------------------------------------------*/ + +sum ypnoab, detail + +scalar p99 = r(p99) + +replace ypnoab = . if ypnoab >= p99 & !missing(ypnoab) +replace Ypnoab = . if Ypnoab >= p99 & !missing(Ypnoab) + +gen yPensPersGrossMonth = ypnoab +gen yPensPersGrossMonthL1 = L1.ypnoab +gen yPensPersGrossMonthL2 = L2.ypnoab + + +/*--------------------------------------------------*/ +/* Miscellaneous income */ +/*--------------------------------------------------*/ + +gen yMiscPersGrossMonth = yptciihs_dv +gen yMiscPersGrossMonthL1 = L1.yptciihs_dv + + +/*--------------------------------------------------*/ +/* Housing wealth */ +/*--------------------------------------------------*/ + +gen Dhh_owned = dhh_owned + +gen wealthPrptyFlag = dhh_owned +gen wealthPrptyFlagL1 = L1.dhh_owned *================================================== * Region dummies *================================================== - -gen Dgn = dgn tab drgn1, gen(UK) rename UK1 UKC @@ -111,82 +295,335 @@ rename UK10 UKL rename UK11 UKM rename UK12 UKN +*refactored +gen demRgn = drgn1 + +tab drgn1, gen(demRgn_) + +rename demRgn_1 demRgnUKC +rename demRgn_2 demRgnUKD +rename demRgn_3 demRgnUKE +rename demRgn_4 demRgnUKF +rename demRgn_5 demRgnUKG +rename demRgn_6 demRgnUKH +rename demRgn_7 demRgnUKI +rename demRgn_8 demRgnUKJ +rename demRgn_9 demRgnUKK +rename demRgn_10 demRgnUKL +rename demRgn_11 demRgnUKM +rename demRgn_12 demRgnUKN + + *================================================== * Employment dummies *================================================== -tab les_c3, gen(Les_c3_) -rename Les_c3_1 Les_c3_Employed -rename Les_c3_2 Les_c3_Student -rename Les_c3_3 Les_c3_NotEmployed +/*-------------------------------------------------- +Own labour status C3 +--------------------------------------------------*/ +gen Les_c3 = les_c3 +gen L1les_c3 = l.les_c3 + +gen Les_c3_Employed = (les_c3 == 1) if !missing(les_c3) +gen Les_c3_Student = (les_c3 == 2) if !missing(les_c3) +gen Les_c3_NotEmployed = (les_c3 == 3) if !missing(les_c3) + +gen labStatusC3 = les_c3 +gen labStatusC3L1 = L1.les_c3 + +gen labStatusC3Employed = (les_c3 == 1) if !missing(les_c3) +gen labStatusC3Student = (les_c3 == 2) if !missing(les_c3) +gen labStatusC3NotEmployed = (les_c3 == 3) if !missing(les_c3) + +gen labStatusC3EmployedL1 = (L1.les_c3 == 1) if !missing(L1.les_c3) +gen labStatusC3StudentL1 = (L1.les_c3 == 2) if !missing(L1.les_c3) +gen labStatusC3NotEmployedL1 = (L1.les_c3 == 3) if !missing(L1.les_c3) + + +/*-------------------------------------------------- +Partner labour status C3 +--------------------------------------------------*/ + +gen Lessp_c3_Employed = (lessp_c3 == 1) if !missing(lessp_c3) +gen Lessp_c3_Student = (lessp_c3 == 2) if !missing(lessp_c3) +gen Lessp_c3_NotEmployed = (lessp_c3 == 3) if !missing(lessp_c3) + +gen labStatusPartnerC3 = lessp_c3 +gen labStatusPartnerC3L1 = L1.lessp_c3 + +gen labStatusPartnerC3Employed = (lessp_c3 == 1) if !missing(lessp_c3) +gen labStatusPartnerC3Student = (lessp_c3 == 2) if !missing(lessp_c3) +gen labStatusPartnerC3NotEmployed = (lessp_c3 == 3) if !missing(lessp_c3) + +gen labStatusPartnerC3EmployedL1 = (L1.lessp_c3 == 1) if !missing(L1.lessp_c3) +gen labStatusPartnerC3StudentL1 = (L1.lessp_c3 == 2) if !missing(L1.lessp_c3) +gen labStatusPartnerC3NotEmployedL1 = (L1.lessp_c3 == 3) if !missing(L1.lessp_c3) + + +/*-------------------------------------------------- +Own labour status C4 +--------------------------------------------------*/ + +gen Les_c4 = les_c4 +gen Les_c4_Employed = (les_c4 == 1) if !missing(les_c4) +gen Les_c4_Student = (les_c4 == 2) if !missing(les_c4) +gen Les_c4_NotEmployed = (les_c4 == 3) if !missing(les_c4) +gen Les_c4_Retired = (les_c4 == 4) if !missing(les_c4) + +/* lagged */ +gen L_Les_c4 = L1.les_c4 +gen L_Les_c4_Employed = (L1.les_c4 == 1) if !missing(L1.les_c4) +gen L_Les_c4_Student = (L1.les_c4 == 2) if !missing(L1.les_c4) +gen L_Les_c4_NotEmployed = (L1.les_c4 == 3) if !missing(L1.les_c4) +gen L_Les_c4_Retired = (L1.les_c4 == 4) if !missing(L1.les_c4) + +gen labStatusC4 = les_c4 +gen labStatusC4L1 = L1.les_c4 + +gen labStatusC4Employed = (les_c4 == 1) if !missing(les_c4) +gen labStatusC4Student = (les_c4 == 2) if !missing(les_c4) +gen labStatusC4NotEmployed = (les_c4 == 3) if !missing(les_c4) +gen labStatusC4Retired = (les_c4 == 4) if !missing(les_c4) + +gen labStatusC4EmployedL1 = (L1.les_c4 == 1) if !missing(L1.les_c4) +gen labStatusC4StudentL1 = (L1.les_c4 == 2) if !missing(L1.les_c4) +gen labStatusC4NotEmployedL1 = (L1.les_c4 == 3) if !missing(L1.les_c4) +gen labStatusC4RetiredL1 = (L1.les_c4 == 4) if !missing(L1.les_c4) + + +/*-------------------------------------------------- +Joint labour status +--------------------------------------------------*/ +gen Lesdf_c4 = lesdf_c4 +gen Lesdf_c4_BothEmployed = (lesdf_c4 == 1) if !missing(lesdf_c4) +gen Lesdf_c4_EmpSpouseNotEmp = (lesdf_c4 == 2) if !missing(lesdf_c4) +gen Lesdf_c4_NotEmpSpouseEmp = (lesdf_c4 == 3) if !missing(lesdf_c4) +gen Lesdf_c4_BothNotEmployed = (lesdf_c4 == 4) if !missing(lesdf_c4) + +gen labStatusPartnerAndOwnC4 = lesdf_c4 +gen labStatusPartnerAndOwnC4L1 = L1.lesdf_c4 + +gen labStatusPartnerAndOwnC41 = (lesdf_c4 == 1) if !missing(lesdf_c4) +gen labStatusPartnerAndOwnC42 = (lesdf_c4 == 2) if !missing(lesdf_c4) +gen labStatusPartnerAndOwnC43 = (lesdf_c4 == 3) if !missing(lesdf_c4) +gen labStatusPartnerAndOwnC44 = (lesdf_c4 == 4) if !missing(lesdf_c4) + +gen labStatusPartnerAndOwnC41L1 = (L1.lesdf_c4 == 1) if !missing(L1.lesdf_c4) +gen labStatusPartnerAndOwnC42L1 = (L1.lesdf_c4 == 2) if !missing(L1.lesdf_c4) +gen labStatusPartnerAndOwnC43L1 = (L1.lesdf_c4 == 3) if !missing(L1.lesdf_c4) +gen labStatusPartnerAndOwnC44L1 = (L1.lesdf_c4 == 4) if !missing(L1.lesdf_c4) -tab lessp_c3, gen(Lessp_c3_) -rename Lessp_c3_1 Lessp_c3_Employed -rename Lessp_c3_2 Lessp_c3_Student -rename Lessp_c3_3 Lessp_c3_NotEmployed -tab les_c4, gen(Les_c4_) -rename Les_c4_1 Les_c4_Employed -rename Les_c4_2 Les_c4_Student -rename Les_c4_3 Les_c4_NotEmployed -rename Les_c4_4 Les_c4_Retired +/*-------------------------------------------------- +Interactions with sex +--------------------------------------------------*/ + +gen labStatusC4Employed_Male = Dgn * labStatusC4Employed +gen labStatusC4Student_Male = Dgn * labStatusC4Student +gen labStatusC4NotEmployed_Male = Dgn * labStatusC4NotEmployed +gen labStatusC4Retired_Male = Dgn * labStatusC4Retired + +gen labStatusC4Employed_MaleL1 = L1.labStatusC4Employed_Male +gen labStatusC4Student_MaleL1 = L1.labStatusC4Student_Male +gen labStatusC4NotEmployed_MaleL1 = L1.labStatusC4NotEmployed_Male +gen labStatusC4Retired_MaleL1 = L1.labStatusC4Retired_Male -tab lesdf_c4, gen(Lesdf_c4_) -rename Lesdf_c4_1 Lesdf_c4_BothEmployed -rename Lesdf_c4_2 Lesdf_c4_EmpSpouseNotEmp -rename Lesdf_c4_3 Lesdf_c4_NotEmpSpouseEmp -rename Lesdf_c4_4 Lesdf_c4_BothNotEmployed *================================================== * Education dummies *================================================== -tab deh_c3, gen(Deh_c3_) -rename Deh_c3_1 Deh_c3_High -rename Deh_c3_2 Deh_c3_Medium -rename Deh_c3_3 Deh_c3_Low +/*-------------------------------------------------- +Education recoding C3 +--------------------------------------------------*/ +cap drop deh_c3_recoded +recode deh_c3 (1 = 3) (3 = 1), gen(deh_c3_recoded) + +cap lab define deh_c3_recoded 1 "Low" 2 "Medium" 3 "High" +label values deh_c3_recoded deh_c3_recoded -tab deh_c4, gen(Deh_c4_) -rename Deh_c4_1 Deh_c4_Na -rename Deh_c4_2 Deh_c4_High -rename Deh_c4_3 Deh_c4_Medium -rename Deh_c4_4 Deh_c4_Low -tab dehmf_c3, gen(Dehmf_c3_) -rename Dehmf_c3_1 Dehmf_c3_High -rename Dehmf_c3_2 Dehmf_c3_Medium -rename Dehmf_c3_3 Dehmf_c3_Low +/*-------------------------------------------------- +Own education C3 +--------------------------------------------------*/ -tab dehsp_c3, gen(Dehsp_c3_) -rename Dehsp_c3_1 Dehsp_c3_High -rename Dehsp_c3_2 Dehsp_c3_Medium -rename Dehsp_c3_3 Dehsp_c3_Low +gen eduHighestC3 = deh_c3 +gen eduHighestC3L1 = L1.deh_c3 -*================================================== -* Health dummies -*================================================== -cap lab define dhe 1 "Poor" 2 "Fair" 3 "Good" 4 "VeryGood" 5 "Excellent" , modify -lab values dhe dhe +gen eduHighestC3High = (deh_c3 == 1) if !missing(deh_c3) +gen eduHighestC3Medium = (deh_c3 == 2) if !missing(deh_c3) +gen eduHighestC3Low = (deh_c3 == 3) if !missing(deh_c3) + +gen eduHighestC3HighL1 = (L1.deh_c3 == 1) if !missing(L1.deh_c3) +gen eduHighestC3MediumL1 = (L1.deh_c3 == 2) if !missing(L1.deh_c3) +gen eduHighestC3LowL1 = (L1.deh_c3 == 3) if !missing(L1.deh_c3) + + +/*-------------------------------------------------- +Own education C4 +--------------------------------------------------*/ +gen Deh_c4_Na = (deh_c4 == 0) if !missing(deh_c4) +gen Deh_c4_High = (deh_c4 == 1) if !missing(deh_c4) +gen Deh_c4_Medium = (deh_c4 == 2) if !missing(deh_c4) +gen Deh_c4_Low = (deh_c4 == 3) if !missing(deh_c4) + +gen eduHighestC4 = deh_c4 +gen eduHighestC4L1 = L1.deh_c4 + +gen eduHighestC4Na = (deh_c4 == 0) if !missing(deh_c4) +gen eduHighestC4High = (deh_c4 == 1) if !missing(deh_c4) +gen eduHighestC4Medium = (deh_c4 == 2) if !missing(deh_c4) +gen eduHighestC4Low = (deh_c4 == 3) if !missing(deh_c4) + +gen eduHighestC4NaL1 = (L1.deh_c4 == 0) if !missing(L1.deh_c4) +gen eduHighestC4HighL1 = (L1.deh_c4 == 1) if !missing(L1.deh_c4) +gen eduHighestC4MediumL1 = (L1.deh_c4 == 2) if !missing(L1.deh_c4) +gen eduHighestC4LowL1 = (L1.deh_c4 == 3) if !missing(L1.deh_c4) + + +/*-------------------------------------------------- +Partner education C3 +--------------------------------------------------*/ + +gen Dehsp_c3_High = (dehsp_c3 == 1) if !missing(dehsp_c3) +gen Dehsp_c3_Medium = (dehsp_c3 == 2) if !missing(dehsp_c3) +gen Dehsp_c3_Low = (dehsp_c3 == 3) if !missing(dehsp_c3) -tab dhe, gen(Dhe_) -rename Dhe_1 Dhe_Poor -rename Dhe_2 Dhe_Fair -rename Dhe_3 Dhe_Good -rename Dhe_4 Dhe_VeryGood -rename Dhe_5 Dhe_Excellent +gen eduHighestPartnerC3 = dehsp_c3 +gen eduHighestPartnerC3L1 = L1.dehsp_c3 -tab dhesp, gen(Dhesp_) -rename Dhesp_1 Dhesp_Poor -rename Dhesp_2 Dhesp_Fair -rename Dhesp_3 Dhesp_Good -rename Dhesp_4 Dhesp_VeryGood -rename Dhesp_5 Dhesp_Excellent +gen eduHighestPartnerC3High = (dehsp_c3 == 1) if !missing(dehsp_c3) +gen eduHighestPartnerC3Medium = (dehsp_c3 == 2) if !missing(dehsp_c3) +gen eduHighestPartnerC3Low = (dehsp_c3 == 3) if !missing(dehsp_c3) +gen eduHighestPartnerC3HighL1 = (L1.dehsp_c3 == 1) if !missing(L1.dehsp_c3) +gen eduHighestPartnerC3MediumL1 = (L1.dehsp_c3 == 2) if !missing(L1.dehsp_c3) +gen eduHighestPartnerC3LowL1 = (L1.dehsp_c3 == 3) if !missing(L1.dehsp_c3) + + +/*-------------------------------------------------- +Highest parental education +--------------------------------------------------*/ +gen Dehmf_c3_High = (dehmf_c3 == 1) if !missing(dehmf_c3) +gen Dehmf_c3_Medium = (dehmf_c3 == 2) if !missing(dehmf_c3) +gen Dehmf_c3_Low = (dehmf_c3 == 3) if !missing(dehmf_c3) + +gen L_Dehmf_c3 = L1.dehmf_c3 + +gen L_Dehmf_c3_High = (L1.dehmf_c3 == 1) if !missing(L1.dehmf_c3) +gen L_Dehmf_c3_Medium = (L1.dehmf_c3 == 2) if !missing(L1.dehmf_c3) +gen L_Dehmf_c3_Low = (L1.dehmf_c3 == 3) if !missing(L1.dehmf_c3) + +gen eduHighestParentC3 = dehmf_c3 +gen eduHighestParentC3L1 = L1.dehmf_c3 + +gen eduHighestParentC3High = (dehmf_c3 == 1) if !missing(dehmf_c3) +gen eduHighestParentC3Medium = (dehmf_c3 == 2) if !missing(dehmf_c3) +gen eduHighestParentC3Low = (dehmf_c3 == 3) if !missing(dehmf_c3) + +gen eduHighestParentC3HighL1 = (L1.dehmf_c3 == 1) if !missing(L1.dehmf_c3) +gen eduHighestParentC3MediumL1 = (L1.dehmf_c3 == 2) if !missing(L1.dehmf_c3) +gen eduHighestParentC3LowL1 = (L1.dehmf_c3 == 3) if !missing(L1.dehmf_c3) + + + +*================================================== +* Health dummies +*================================================== +gen Dhe = dhe gen Dhe_pcs = dhe_pcs gen Dhe_mcs = dhe_mcs gen Dhe_pcssp = dhe_pcssp gen Dhe_mcssp = dhe_mcssp +/*-------------------------------------------------- +Value labels +--------------------------------------------------*/ + +cap lab define dhe /// + 1 "Poor" /// + 2 "Fair" /// + 3 "Good" /// + 4 "VeryGood" /// + 5 "Excellent", modify + +lab values dhe dhe + +/*-------------------------------------------------- +Own self-rated health +--------------------------------------------------*/ +gen Dhe_Poor = (dhe == 1) if !missing(dhe) +gen Dhe_Fair = (dhe == 2) if !missing(dhe) +gen Dhe_Good = (dhe == 3) if !missing(dhe) +gen Dhe_VeryGood = (dhe == 4) if !missing(dhe) +gen Dhe_Excellent = (dhe == 5) if !missing(dhe) + +gen healthSelfRated = dhe +gen healthSelfRatedL1 = L1.dhe + +gen healthSelfRatedPoor = (dhe == 1) if !missing(dhe) +gen healthSelfRatedFair = (dhe == 2) if !missing(dhe) +gen healthSelfRatedGood = (dhe == 3) if !missing(dhe) +gen healthSelfRatedVeryGood = (dhe == 4) if !missing(dhe) +gen healthSelfRatedExcellent = (dhe == 5) if !missing(dhe) + +gen healthSelfRatedPoorL1 = (L1.dhe == 1) if !missing(L1.dhe) +gen healthSelfRatedFairL1 = (L1.dhe == 2) if !missing(L1.dhe) +gen healthSelfRatedGoodL1 = (L1.dhe == 3) if !missing(L1.dhe) +gen healthSelfRatedVeryGoodL1 = (L1.dhe == 4) if !missing(L1.dhe) +gen healthSelfRatedExcellentL1 = (L1.dhe == 5) if !missing(L1.dhe) + +/*-------------------------------------------------- +Partner self-rated health +--------------------------------------------------*/ + +gen Dhesp_Poor = (dhesp == 1) if !missing(dhesp) +gen Dhesp_Fair = (dhesp == 2) if !missing(dhesp) +gen Dhesp_Good = (dhesp == 3) if !missing(dhesp) +gen Dhesp_VeryGood = (dhesp == 4) if !missing(dhesp) +gen Dhesp_Excellent = (dhesp == 5) if !missing(dhesp) + +gen healthPartnerSelfRated = dhesp +gen healthPartnerSelfRatedL1 = L1.dhesp + +gen healthPartnerSelfRatedPoor = (dhesp == 1) if !missing(dhesp) +gen healthPartnerSelfRatedFair = (dhesp == 2) if !missing(dhesp) +gen healthPartnerSelfRatedGood = (dhesp == 3) if !missing(dhesp) +gen healthPartnerSelfRatedVeryGood = (dhesp == 4) if !missing(dhesp) +gen healthPartnerSelfRatedExcellent = (dhesp == 5) if !missing(dhesp) +/* +gen healthPartnerSelfRatedPoorL1 = (L1.dhesp == 1) if !missing(L1.dhesp) +gen healthPartnerSelfRatedFairL1 = (L1.dhesp == 2) if !missing(L1.dhesp) +gen healthPartnerSelfRatedGoodL1 = (L1.dhesp == 3) if !missing(L1.dhesp) +gen healthPartnerSelfRatedVeryGoodL1 = (L1.dhesp == 4) if !missing(L1.dhesp) +gen healthPartnerSelfRatedExcelL1 = (L1.dhesp == 5) if !missing(L1.dhesp) +*/ + +/*-------------------------------------------------- +Continuous health measures +--------------------------------------------------*/ +foreach v in dhe dhe_pcs dhe_mcs { + gen l_`v' = L.`v' +} + +gen L_Dhe = l_dhe +gen L_Dhe_pcs = l_dhe_pcs +gen L_Dhe_mcs = l_dhe_mcs + + +gen healthPhysicalPcs = dhe_pcs +gen healthMentalMcs = dhe_mcs + +gen healthPhysicalPcsL1 = L1.dhe_pcs +gen healthMentalMcsL1 = L1.dhe_mcs + +gen healthPhysicalPartnerPcs = dhe_pcssp +gen healthMentalPartnerMcs = dhe_mcssp + +gen healthPhysicalPartnerPcsL1 = L1.dhe_pcssp +gen healthMentalPartnerMcsL1 = L1.dhe_mcssp + + *================================================== * Long-term sick or disabled *================================================== @@ -194,6 +631,13 @@ gen Dhe_mcssp = dhe_mcssp gen Dlltsd = dlltsd gen Dlltsd01 = dlltsd01 +gen L_Dlltsd01 = l.dlltsd01 + +gen Dlltsdsp = dlltsd_sp +gen Dlltsd01sp = dlltsd01_sp + +gen healthDsblLongtermFlag = dlltsd01 +gen healthDsblLongtermFlagL1 = l.dlltsd01 *================================================== * Ethnicity @@ -205,147 +649,338 @@ rename dot_2 Ethn_Asian rename dot_3 Ethn_Black rename dot_4 Ethn_Other +gen demEthnC4 = dot +tab demEthnC4, gen(demEthnC4_) + +rename demEthnC4_1 demEthnC4White +rename demEthnC4_2 demEthnC4Asian +rename demEthnC4_3 demEthnC4Black +rename demEthnC4_4 demEthnC4Other + + *================================================== * Household type and relationship dynamics *================================================== -tab dhhtp_c4, gen(Dhhtp_c4_) -rename Dhhtp_c4_1 Dhhtp_c4_CoupleNoChildren -rename Dhhtp_c4_2 Dhhtp_c4_CoupleChildren -rename Dhhtp_c4_3 Dhhtp_c4_SingleNoChildren -rename Dhhtp_c4_4 Dhhtp_c4_SingleChildren - -tab dhhtp_c8, gen(Dhhtp_c8_) +/*--------------------------------------------------*/ +/* Raw variables */ +/*--------------------------------------------------*/ gen New_rel = new_rel -tab dcpst, gen(Dcpst_) -rename Dcpst_1 Dcpst_Partnered -rename Dcpst_2 Dcpst_Single -gen Partnered = Dcpst_Partnered -gen Single = Dcpst_Single +gen Dnc = dnc +gen Dnc02 = dnc02 -*================================================== -* Explicit lags -*================================================== -cap drop l_* L_* +gen Dcpyy = dcpyy +gen Dcpagdf = dcpagdf -xtset idperson swv +gen fertilityRate = dukfr +gen FertilityRate = dukfr -foreach v in ydses_c5 dhe dhe_pcs dhe_mcs les_c3 les_c4 dhhtp_c4 dlltsd01 need_socare dehmf_c3 { - gen l_`v' = L.`v' -} +/*--------------------------------------------------*/ +/* Household type C4 */ +/*--------------------------------------------------*/ -gen L_Ydses_c5 = l_ydses_c5 -gen L_Dhe = l_dhe -gen L_Dhe_pcs = l_dhe_pcs -gen L_Dhe_mcs = l_dhe_mcs -gen L_Dlltsd01 = l_dlltsd01 -gen L_Need_socare = l_need_socare -gen L_Dehmf_c3 = l_dehmf_c3 +gen Dhhtp_c4_CoupleNoChildren = (dhhtp_c4 == 1) if !missing(dhhtp_c4) +gen Dhhtp_c4_CoupleChildren = (dhhtp_c4 == 2) if !missing(dhhtp_c4) +gen Dhhtp_c4_SingleNoChildren = (dhhtp_c4 == 3) if !missing(dhhtp_c4) +gen Dhhtp_c4_SingleChildren = (dhhtp_c4 == 4) if !missing(dhhtp_c4) -tab l_les_c4, gen(L_Les_c4_) -rename L_Les_c4_1 L_Les_c4_Employed -rename L_Les_c4_2 L_Les_c4_Student -rename L_Les_c4_3 L_Les_c4_NotEmployed -rename L_Les_c4_4 L_Les_c4_Retired +gen L_Dhhtp_c4 = L1.dhhtp_c4 -tab l_ydses_c5, gen(L_Ydses_c5_Q) +gen L_Dhhtp_c4_CoupleNoChildren = (L1.dhhtp_c4 == 1) if !missing(L1.dhhtp_c4) +gen L_Dhhtp_c4_CoupleChildren = (L1.dhhtp_c4 == 2) if !missing(L1.dhhtp_c4) +gen L_Dhhtp_c4_SingleNoChildren = (L1.dhhtp_c4 == 3) if !missing(L1.dhhtp_c4) +gen L_Dhhtp_c4_SingleChildren = (L1.dhhtp_c4 == 4) if !missing(L1.dhhtp_c4) -tab l_dhhtp_c4, gen(L_Dhhtp_c4_) -rename L_Dhhtp_c4_1 L_Dhhtp_c4_CoupleNoChildren -rename L_Dhhtp_c4_2 L_Dhhtp_c4_CoupleChildren -rename L_Dhhtp_c4_3 L_Dhhtp_c4_SingleNoChildren -rename L_Dhhtp_c4_4 L_Dhhtp_c4_SingleChildren +gen demCompHhC4 = dhhtp_c4 -tab l_dehmf_c3, gen(L_Dehmf_c3_) -rename L_Dehmf_c3_1 L_Dehmf_c3_High -rename L_Dehmf_c3_2 L_Dehmf_c3_Medium -rename L_Dehmf_c3_3 L_Dehmf_c3_Low +gen demCompHhC4L1 = L1.dhhtp_c4 +gen demCompHhC4CoupleNoChL1 = (L1.dhhtp_c4 == 1) if !missing(L1.dhhtp_c4) +gen demCompHhC4CoupleChL1 = (L1.dhhtp_c4 == 2) if !missing(L1.dhhtp_c4) +gen demCompHhC4SingleNoChL1 = (L1.dhhtp_c4 == 3) if !missing(L1.dhhtp_c4) +gen demCompHhC4SingleChL1 = (L1.dhhtp_c4 == 4) if !missing(L1.dhhtp_c4) +gen householdTypeC4 = dhhtp_c4 +gen householdTypeC4L1 = L1.dhhtp_c4 -*================================================== -* Copy variables for nice labels -*================================================== -gen Dnc = dnc -gen Dnc02 = dnc02 -gen Ded = ded -gen Dhe = dhe -gen Ydses_c5 = ydses_c5 -gen Dcpyy = dcpyy -gen Dcpagdf = dcpagdf -gen FertilityRate = dukfr -gen Dhh_owned = dhh_owned +gen householdTypeC4CoupleNoCh = (dhhtp_c4 == 1) if !missing(dhhtp_c4) +gen householdTypeC4CoupleCh = (dhhtp_c4 == 2) if !missing(dhhtp_c4) +gen householdTypeC4SingleNoC = (dhhtp_c4 == 3) if !missing(dhhtp_c4) +gen householdTypeC4SingleCh = (dhhtp_c4 == 4) if !missing(dhhtp_c4) -gen Elig_pen = dagpns -gen Elig_pen_L1 = l.dagpns +gen householdTypeC4CoupleNoChL1 = (L1.dhhtp_c4 == 1) if !missing(L1.dhhtp_c4) +gen householdTypeC4CoupleChL1 = (L1.dhhtp_c4 == 2) if !missing(L1.dhhtp_c4) +gen householdTypeC4SingleNoChL1 = (L1.dhhtp_c4 == 3) if !missing(L1.dhhtp_c4) +gen householdTypeC4SingleCh1 = (L1.dhhtp_c4 == 4) if !missing(L1.dhhtp_c4) -gen Reached_Retirement_Age = dagpns -gen Reached_Retirement_Age_Sp = dagpns_sp -gen Dlltsdsp = dlltsd_sp -gen Dlltsd01sp = dlltsd01_sp +/*--------------------------------------------------*/ +/* Household type C8 */ +/*--------------------------------------------------*/ -gen Ypncp = ypncp -gen Ypnoab = ypnoab -gen Yplgrs_dv = yplgrs_dv -gen Ypnbihs_dv = ypnbihs_dv -gen Ypnbihs_dv_sq = ypnbihs_dv^2 -gen Ynbcpdf_dv = ynbcpdf_dv -gen Yptciihs_dv = yptciihs_dv +gen Dhhtp_c8_1 = (dhhtp_c8 == 1) if !missing(dhhtp_c8) +gen Dhhtp_c8_2 = (dhhtp_c8 == 2) if !missing(dhhtp_c8) +gen Dhhtp_c8_3 = (dhhtp_c8 == 3) if !missing(dhhtp_c8) +gen Dhhtp_c8_4 = (dhhtp_c8 == 4) if !missing(dhhtp_c8) +gen Dhhtp_c8_5 = (dhhtp_c8 == 5) if !missing(dhhtp_c8) +gen Dhhtp_c8_6 = (dhhtp_c8 == 6) if !missing(dhhtp_c8) +gen Dhhtp_c8_7 = (dhhtp_c8 == 7) if !missing(dhhtp_c8) +gen Dhhtp_c8_8 = (dhhtp_c8 == 8) if !missing(dhhtp_c8) +gen householdTypeC8 = dhhtp_c8 -*================================================== -* Interactions -*================================================== -cap drop Les_c4_*_Dgn Ded_* Reached_Retirement_Age_Les +gen demCompHhC8 = dhhtp_c8 +gen demCompHhC8L1 = L1.dhhtp_c8 + +gen demCompHhC81 = (dhhtp_c8 == 1) if !missing(dhhtp_c8) +gen demCompHhC82 = (dhhtp_c8 == 2) if !missing(dhhtp_c8) +gen demCompHhC83 = (dhhtp_c8 == 3) if !missing(dhhtp_c8) +gen demCompHhC84 = (dhhtp_c8 == 4) if !missing(dhhtp_c8) +gen demCompHhC85 = (dhhtp_c8 == 5) if !missing(dhhtp_c8) +gen demCompHhC86 = (dhhtp_c8 == 6) if !missing(dhhtp_c8) +gen demCompHhC87 = (dhhtp_c8 == 7) if !missing(dhhtp_c8) +gen demCompHhC88 = (dhhtp_c8 == 8) if !missing(dhhtp_c8) + + +gen demCompHhC81L1 = (L1.dhhtp_c8 == 1) if !missing(L1.dhhtp_c8) +gen demCompHhC82L1 = (L1.dhhtp_c8 == 2) if !missing(L1.dhhtp_c8) +gen demCompHhC83L1 = (L1.dhhtp_c8 == 3) if !missing(L1.dhhtp_c8) +gen demCompHhC84L1 = (L1.dhhtp_c8 == 4) if !missing(L1.dhhtp_c8) +gen demCompHhC85L1 = (L1.dhhtp_c8 == 5) if !missing(L1.dhhtp_c8) +gen demCompHhC86L1 = (L1.dhhtp_c8 == 6) if !missing(L1.dhhtp_c8) +gen demCompHhC87L1 = (L1.dhhtp_c8 == 7) if !missing(L1.dhhtp_c8) +gen demCompHhC88L1 = (L1.dhhtp_c8 == 8) if !missing(L1.dhhtp_c8) + + +/*--------------------------------------------------*/ +/* Relationship status */ +/*--------------------------------------------------*/ +gen mar = (dcpst == 1) + +gen Dcpst = dcpst + +gen Partnered = (dcpst == 1) if !missing(dcpst) +gen Single = (dcpst == 2) if !missing(dcpst) + +gen Dcpst_Partnered = (dcpst == 1) if !missing(dcpst) +gen Dcpst_Single = (dcpst == 2) if !missing(dcpst) + +gen demPartnerStatus = dcpst +gen demPartnerStatusL1 = L1.dcpst + +gen demPartnerStatusPartnered = (dcpst == 1) if !missing(dcpst) +gen demPartnerStatusSingle = (dcpst == 2) if !missing(dcpst) + +gen demPartnerStatusPartneredL1 = (L1.dcpst == 1) if !missing(L1.dcpst) +gen demPartnerStatusSingleL1 = (L1.dcpst == 2) if !missing(L1.dcpst) + + +/*--------------------------------------------------*/ +/* Relationship dynamics */ +/*--------------------------------------------------*/ + +gen demPartnerNYear = dcpyy +gen demPartnerNYearL1 = L1.dcpyy + +gen demEnterPartnerFlag = new_rel +gen demEnterPartnerFlagL1 = L1.new_rel + +gen demAgePartnerDiff = dcpagdf +gen demAgePartnerDiffL1 = L1.dcpagdf + + +/*--------------------------------------------------*/ +/* Children */ +/*--------------------------------------------------*/ +cap drop child +gen child = (dnc>0) + +gen demNChild = dnc +gen demNChild0to2 = dnc02 + +gen demNChildL1 = L1.dnc +gen demNChild0to2L1 = L1.dnc02 + +gen demDChild = (dnc > 0) if !missing(dnc) +gen demDChild0to2 = (dnc02 > 0) if !missing(dnc02) + +gen demDChildL1 = (L1.dnc > 0) if !missing(L1.dnc) +gen demDChild0to2L1 = (L1.dnc02 > 0) if !missing(L1.dnc02) + + + +/*==================================================*/ +/* INTERACTIONS */ +/*==================================================*/ + +/*--------------------------------------------------*/ +/* Education × demographics */ +/*--------------------------------------------------*/ + +gen Ded_Dag = Ded * Dag if !missing(Ded, Dag) + +gen Ded_Dag_sq = Ded * Dag_sq if !missing(Ded, Dag_sq) + +gen Ded_Dgn = Ded * Dgn if !missing(Ded, Dgn) + +gen eduSampleFlag_demMaleFlag = eduSampleFlag * demMaleFlag if !missing(eduSampleFlag, demMaleFlag) + +gen eduSampleFlag_Male = eduSampleFlag * demMaleFlag if !missing(eduSampleFlag, demMaleFlag) + + +/*--------------------------------------------------*/ +/* Education × children */ +/*--------------------------------------------------*/ + +gen Ded_Dnc_L1_ = Ded * L1.Dnc if !missing(Ded, L1.Dnc) + +gen Ded_Dnc02_L1 = Ded * L1.Dnc02 if !missing(Ded, L1.Dnc02) + +gen eduSampleFlag_demNChildL1 = eduSampleFlag * demNChildL1 if !missing(eduSampleFlag, demNChildL1) + +gen eduSampleFlag_demNChild0to2L1 = eduSampleFlag * demNChild0to2L1 if !missing(eduSampleFlag, demNChild0to2L1) -gen Les_c4_Student_Dgn = Dgn * Les_c4_Student -gen Les_c4_NotEmployed_Dgn = Dgn * Les_c4_NotEmployed -gen Les_c4_Retired_Dgn = Dgn * Les_c4_Retired -gen Ded_Dag = Ded * Dag -gen Ded_Dag_sq = Ded * Dag_sq -gen Ded_Dgn = Ded * Dgn +/*--------------------------------------------------*/ +/* Education × partnership status */ +/*--------------------------------------------------*/ -gen Ded_Dnc_L1_ = Ded * l.Dnc -gen Ded_Dnc02_L1 = Ded * l.Dnc02 +gen Ded_Dcpst_Single = Dcpst_Single * Ded if !missing(Dcpst_Single, Ded) + +gen Ded_Dcpst_Single_L1 = L1.Dcpst_Single * Ded if !missing(L1.Dcpst_Single, Ded) + +gen eduSampleFlag_Single = eduSampleFlag * demPartnerStatusSingle if !missing(eduSampleFlag, demPartnerStatusSingle) + + +/*--------------------------------------------------*/ +/* Education × income quintiles */ +/*--------------------------------------------------*/ forvalues i = 1/5 { - gen Ded_Ydses_c5_Q`i'_L1 = Ded * l.Ydses_c5_Q`i' + gen Ded_Ydses_c5_Q`i'_L1 = Ded * L1.Ydses_c5_Q`i' if !missing(Ded, L1.Ydses_c5_Q`i') } -gen Ded_Dehsp_c3_Medium_L1 = l.Dehsp_c3_Medium * Ded -gen Ded_Dehsp_c3_Low_L1 = l.Dehsp_c3_Low * Ded +gen eduSampleFlag_Q2L1 = eduSampleFlag * yHhQuintilesMonthC5Q2L1 if !missing(eduSampleFlag, yHhQuintilesMonthC5Q2L1) + +gen eduSampleFlag_Q3L1 = eduSampleFlag * yHhQuintilesMonthC5Q3L1 if !missing(eduSampleFlag, yHhQuintilesMonthC5Q3L1) + +gen eduSampleFlag_Q4L1 = eduSampleFlag * yHhQuintilesMonthC5Q4L1 if !missing(eduSampleFlag, yHhQuintilesMonthC5Q4L1) + +gen eduSampleFlag_Q5L1 = eduSampleFlag * yHhQuintilesMonthC5Q5L1 if !missing(eduSampleFlag, yHhQuintilesMonthC5Q5L1) + + +/*--------------------------------------------------*/ +/* Education × spouse education */ +/*--------------------------------------------------*/ + +gen Ded_Dehsp_c3_Medium_L1 = L1.Dehsp_c3_Medium * Ded if !missing(L1.Dehsp_c3_Medium, Ded) + +gen Ded_Dehsp_c3_Low_L1 = L1.Dehsp_c3_Low * Ded if !missing(L1.Dehsp_c3_Low, Ded) + + +/*--------------------------------------------------*/ +/* Education × health */ +/*--------------------------------------------------*/ + +gen Ded_Dhesp_Good_L1 = L1.Dhesp_Good * Ded if !missing(L1.Dhesp_Good, Ded) + +gen Ded_Dhesp_Fair_L1 = L1.Dhesp_Fair * Ded if !missing(L1.Dhesp_Fair, Ded) + +gen Ded_Dhe_Fair_L1 = L1.Dhe_Fair * Ded if !missing(L1.Dhe_Fair, Ded) + +gen Ded_Dhe_Good_L1 = L1.Dhe_Good * Ded if !missing(L1.Dhe_Good, Ded) + +gen Ded_Dhe_VeryGood_L1 = L1.Dhe_VeryGood * Ded if !missing(L1.Dhe_VeryGood, Ded) + +gen Ded_Dhe_Excellent_L1 = L1.Dhe_Excellent * Ded if !missing(L1.Dhe_Excellent, Ded) + +gen Ded_Dhe_pcs = Ded * Dhe_pcs if !missing(Ded, Dhe_pcs) + +gen Ded_Dhe_mcs = Ded * Dhe_mcs if !missing(Ded, Dhe_mcs) + +gen Ded_Dhe = Dhe * Ded if !missing(Dhe, Ded) + + +/*--------------------------------------------------*/ +/* Retirement interactions */ +/*--------------------------------------------------*/ + +gen Reached_Retirement_Age_Les = Reached_Retirement_Age * L1.Les_c3_NotEmployed if !missing(Reached_Retirement_Age, L1.Les_c3_NotEmployed) + +gen demPensAgeFlag_NotEmployedL1 = demPensAgeFlag * labStatusC3NotEmployedL1 if !missing(demPensAgeFlag, labStatusC3NotEmployedL1) + + +/*--------------------------------------------------*/ +/* Education × income */ +/*--------------------------------------------------*/ + +gen Ded_Ypncp = Ded * Ypncp if !missing(Ded, Ypncp) + +gen Ded_Yplgrs_dv = Ded * Yplgrs_dv if !missing(Ded, Yplgrs_dv) + +gen eduSampleFlag_yCapitalPers = eduSampleFlag * yCapitalPersMonth if !missing(eduSampleFlag, yCapitalPersMonth) + +gen eduSampleFlag_yCapitalPersL1 = L1.eduSampleFlag_yCapitalPers + +gen eduSampleFlag_yCapitalPersL2 = L2.eduSampleFlag_yCapitalPers + +gen eduSampleFlag_yEmpPersGross = eduSampleFlag * yEmpPersGrossMonth if !missing(eduSampleFlag, yEmpPersGrossMonth) + +gen eduSampleFlag_yEmpPersGrossL1 = L1.eduSampleFlag_yEmpPersGross + +gen eduSampleFlag_yEmpPersGrossL2 = L2.eduSampleFlag_yEmpPersGross + -gen Ded_Dhesp_Good_L1 = l.Dhesp_Good * Ded -gen Ded_Dhesp_Fair_L1 = l.Dhesp_Fair * Ded +/*--------------------------------------------------*/ +/* Education × health scores */ +/*--------------------------------------------------*/ -gen Ded_Dhe_Fair_L1 = l.Dhe_Fair * Ded -gen Ded_Dhe_Good_L1 = l.Dhe_Good * Ded -gen Ded_Dhe_VeryGood_L1 = l.Dhe_VeryGood * Ded -gen Ded_Dhe_Excellent_L1 = l.Dhe_Excellent * Ded +gen eduSampleFlag_Pcs = eduSampleFlag * healthPhysicalPcs if !missing(eduSampleFlag, healthPhysicalPcs) -gen Ded_Dhe_pcs = Ded * Dhe_pcs -gen Ded_Dhe_mcs = Ded * Dhe_mcs +gen eduSampleFlag_Mcs = eduSampleFlag * healthMentalMcs if !missing(eduSampleFlag, healthMentalMcs) -gen Ded_Dhe = Dhe * Ded -gen Ded_Dcpst_Single = Dcpst_Single * Ded -gen Ded_Dcpst_Single_L1 = l.Dcpst_Single * Ded +gen eduSampleFlag_PcsL1 = L1.eduSampleFlag_Pcs -gen Reached_Retirement_Age_Les = Reached_Retirement_Age * l.Les_c3_NotEmployed +gen eduSampleFlag_McsL1 = L1.eduSampleFlag_Mcs -gen Ded_Ypncp= Ded * Ypncp -gen Ded_Yplgrs_dv = Ded *Yplgrs_dv + +/*--------------------------------------------------*/ +/* Education × age */ +/*--------------------------------------------------*/ + +gen eduHighestC4Na_demAge = eduHighestC4Na * dag if !missing(eduHighestC4Na, dag) + +gen eduHighestC4Low_demAge = eduHighestC4Low * dag if !missing(eduHighestC4Low, dag) + +gen eduHighestC4Medium_demAge = eduHighestC4Medium * dag if !missing(eduHighestC4Medium, dag) + +gen eduHighestC4High_demAge = eduHighestC4High * dag if !missing(eduHighestC4High, dag) + +gen eduHighestC4NaL1_demAge = eduHighestC4NaL1 * demAge if !missing(eduHighestC4NaL1, demAge) + +gen eduHighestC4LowL1_demAge = eduHighestC4LowL1 * demAge if !missing(eduHighestC4LowL1, demAge) + +gen eduHighestC4MediumL1_demAge = eduHighestC4MediumL1 * demAge if !missing(eduHighestC4MediumL1, demAge) + +gen eduHighestC4HighL1_demAge = eduHighestC4HighL1 * demAge if !missing(eduHighestC4HighL1, demAge) + + +/*--------------------------------------------------*/ +/* Part-time work indicator */ +/*--------------------------------------------------*/ + +gen pt = (lhw > 0 & lhw <= 25) if !missing(lhw) +gen labPt = (lhw > 0 & lhw <= 25) if !missing(lhw) *================================================== * Prepare data for social care regressions *================================================== * Care received variables (Processes S2) - -rename need_socare need_care +gen need_care = need_socare +//rename need_socare need_care gen receive_formal_care = formal_socare_hrs > 0 gen receive_informal_care = (partner_socare_hrs + daughter_socare_hrs + son_socare_hrs + other_socare_hrs) > 0 @@ -388,7 +1023,8 @@ replace dage10prime = 2 if (dag>44 & dag<55) replace dage10prime = 3 if (dag>54 & dag<65) replace dage10prime = 4 if (dag>64) //table dage10prime, stat(min dag) stat(max dag) -table dage10prime, c(min dag max dag) +//table dage10prime, c(min dag max dag) +tabstat dag, by(dage10prime) stat(min max) * - Categorical: 65-66, 67-68, 69-70, 71-72..., 85+ gen dage2old = 0 @@ -397,7 +1033,8 @@ forval ii = 1/10 { } replace dage2old = 11 if (dag >= 85) //table dage2old, stat(min dag) stat(max dag) -table dage2old, c(min dag max dag) +//table dage2old, c(min dag max dag) +tabstat dag, by(dage2old) stat(min max) * Poor health flag gen poor_health = (dhe == 1) @@ -433,7 +1070,8 @@ cap rename Age_16 Age85plus tab dage10prime, gen(Age_) //table dage10prime, stat(min dag) stat(max dag) // RMK: AgeXX categories start at 1, hence shifted by 1 -table dage10prime, c(min dag max dag) +//table dage10prime, c(min dag max dag) +tabstat dag, by(dage10prime) stat(min max) drop Age_1 rename Age_2 Age35to44 rename Age_3 Age45to54 @@ -442,7 +1080,8 @@ rename Age_5 Age65plus tab dage2old, gen(Age_) //table dage2old, stat(min dag) stat(max dag) // RMK: AgeXX categories start at 1, hence shifted by 1 -table dage2old, c(min dag max dag) +//table dage2old, c(min dag max dag) +tabstat dag, by(dage2old) stat(min max) drop Age_1 rename Age_2 Age65to66 rename Age_3 Age67to68 @@ -497,6 +1136,78 @@ drop _merge erase "$dir_work/partner.dta" +* refactoring social care +xtset idperson stm + +gen demAge20to24 = Age20to24 +gen demAge25to29 = Age25to29 +gen demAge30to34 = Age30to34 +gen demAge35to39 = Age35to39 +gen demAge40to44 = Age40to44 +gen demAge45to49 = Age45to49 +gen demAge50to54 = Age50to54 +gen demAge55to59 = Age55to59 +gen demAge60to64 = Age60to64 +gen demAge65to69 = Age65to69 +gen demAge70to74 = Age70to74 +gen demAge75to79 = Age75to79 +gen demAge80to84 = Age80to84 +cap confirm variable Age85plus +if !_rc gen demAge85plus = Age85plus + + +gen demAge65to66 = Age65to66 +gen demAge67to68 = Age67to68 +gen demAge69to70 = Age69to70 +gen demAge71to72 = Age71to72 +gen demAge73to74 = Age73to74 +gen demAge75to76 = Age75to76 +gen demAge77to78 = Age77to78 +gen demAge79to80 = Age79to80 +gen demAge81to82 = Age81to82 +gen demAge83to84 = Age83to84 + +gen careMarket = CareMarket +gen careMarketL1 = l.careMarket + + +gen careMarketInformal = (careMarket == 2) if !missing(careMarket) +gen careMarketMixed = (careMarket == 3) if !missing(careMarket) +gen careMarketFormal = (careMarket == 4) if !missing(careMarket) + +gen careMarketInformalL1 = (L1.careMarket == 2) if !missing(L1.careMarket) +gen careMarketMixedL1 = (L1.careMarket == 3) if !missing(L1.careMarket) +gen careMarketFormalL1 = (L1.careMarket == 4) if !missing(L1.careMarket) + +gen careHrsInformalIhs = HrsReceivedInformalIHS +gen careHrsInformalIhsL1 = l.HrsReceivedInformalIHS + +gen careHrsFormalIhs = HrsReceivedFormalIHS +gen careHrsFormalIhsL1 = l.HrsReceivedFormalIHS + + +gen careNeedFlag = NeedCare +gen careNeedFlagL1 = l.NeedCare + +gen careReceivedFlag = ReceiveCare +gen careReceivedFlagL1 = l.ReceiveCare + +gen careProvidedFlag = ProvideCare +gen careProvidedFlagL1 = l.ProvideCare + +gen careNeedPartnerFlag = NeedCarePartner +gen careReceivedPartnerFlag = ReceiveCarePartner + +gen careMarketInformalPartner = CareMarketInformalPartner +gen careMarketMixedPartner = CareMarketMixedPartner +gen careMarketFormalPartner = CareMarketFormalPartner + +gen careHrsProvidedWeekIhs = HrsProvidedInformalIHS +gen careHrsProvidedWeekIhsL1 = l.HrsProvidedInformalIHS + + + + /********************************************************************* Additional variables required for the following estimation scripts: - reg_financial_distress.do @@ -633,3 +1344,7 @@ label define lhwsp 0 "Zero" 10 "Ten" 20 "Twenty" 30 "Thirty" 40 "Forty" label value lhw_c5 lhwsp la var lhw_c5 "Hours worked per week (category)" +*================================================== +* End +*================================================== + diff --git a/input/InitialPopulations/training/population_initial_UK_2019.csv b/input/InitialPopulations/training/population_initial_UK_2019.csv index 94150e4c4..70d7f39d0 100644 --- a/input/InitialPopulations/training/population_initial_UK_2019.csv +++ b/input/InitialPopulations/training/population_initial_UK_2019.csv @@ -1,37495 +1,34629 @@ -idHh,idBu,idPers,idPartner,idMother,idFather,statCollectionWave,demMaleFlag,demAge,demNChild0to2,demNChild,eduSpellFlag,eduHighestC3,eduHighestC4,eduExitSampleFlag,healthDsblLongtermFlag,healthSelfRated,yEmpPersGrossMonth,yNonBenPersGrossMonth,yMiscPersGrossMonth,demPartnerNYear,demAgePartnerDiff,yPersAndPartnerGrossDiffMonth,eduReturnFlag,eduHighestMotherC3,eduHighestFatherC3,statInterviewYear,healthWbScore0to36,scghq2_dv,labHrsWorkWeek,labHrsWorkWeekL1,labC4,healthPsyDstrss0to12,demAdultChildFlag,labWageHrly,labWageHrlyL1,careNeedFlag,careHrsFormal,careHrsInformal,careFormalX,careHrsProvidedWeek,yBenReceivedFlag,yBenNonUCReceivedFlag,yBenUCReceivedFlag,yCapitalPersMonth,yPensPersGrossMonth,healthMentalMcs,healthPhysicalPcs,healthMentalPartnerMcs,healthPhysicalPartnerPcs,demLifeSatScore0to10,demEthnC4,demEthnC6,labUnempFlag,yFinDstrssFlag,labEmpNyear,demRgn,yHhQuintilesMonthC5,wealthPrptyFlag,wgtHhCross,wealthTotValue,wealthPensValue,wealthPrptyValue,wealthMortgageDebtValue,yDispMonth -1,1,1,-9,3,4,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1137.1969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,590,272524.63,0,0,0,2282.3916 -1,1,2,-9,3,4,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.16235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,590,272524.63,0,0,0,2282.3916 -1,1,3,4,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,6.796658,6.9500685,0,25,-4,3.5448892,0,3,3,2019,7,0,16,16,1,0,0,5.8985734,5.8985734,0,0,0,0,2,1,1,0,0,0,62.39,56.71,37,47.76,10,2,3,0,0,10,5,2,1,590,272524.63,0,0,0,2282.3916 -1,1,4,3,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,7.1095128,6.9288692,0,25,4,179.2468,0,3,3,2019,9,1,36,30,1,1,0,3.9870672,3.9870672,0,0,0,0,0,1,1,0,5.2127876,0,37,47.76,62.39,56.71,8.333333333333334,2,3,0,0,10,5,2,1,590,272524.63,0,0,0,2282.3916 -1,1,5,-9,3,4,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.7008,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,590,272524.63,0,0,0,2282.3916 -2,2,6,7,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,46,0,-99.659943,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,891.5,1378241.5,1081935.3,445161.5,0,2175.1445 -2,2,7,6,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.2482052,8.5622616,0,7,0,111.16816,0,3,3,2019,8,0,35,37,1,0,0,11.41293,11.41293,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,12,3,1,891.5,1378241.5,1081935.3,445161.5,0,2175.1445 -3,3,8,9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.2639966,6.8969808,47,2,136.95171,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7476401,7.1893001,60.12,54.8,58.58,22.16,8.333333333333334,1,1,0,0,7,7,3,1,270,608156.25,420620.56,387767.78,0,2395.0205 -3,3,9,8,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.7719741,7.5638828,47,-2,-62.915974,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,7.2355919,58.58,22.16,60.12,54.8,8.333333333333334,1,1,0,0,0,7,3,1,270,608156.25,420620.56,387767.78,0,2395.0205 -4,4,10,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.7832813,8.7307081,0,0,0,-963.41339,0,2,3,2019,10,0,84,44,1,0,0,9.7976465,9.7976465,0,0,0,0,0,0,0,0,4.6382632,0,45.43,53.5,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,134,134855.41,258541.34,265479.75,0,2408.7332 -5,5,11,12,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,0,0,0,8,-3,33.881798,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,62.49,55.09,10,2,3,0,0,7,8,4,1,641.66669,104416.76,0,0,0,2275.0022 -5,5,12,11,15,14,1,1,40,0,1,0,1,1,-9,0,4,8.9098473,8.623703,0,15,3,91.585487,0,1,1,2019,6,0,36,45,1,0,0,19.33028,19.33028,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,8.333333333333334,2,3,0,0,11,8,4,1,641.66669,104416.76,0,0,0,2275.0022 -5,5,13,-9,11,12,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.85272,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,641.66669,104416.76,0,0,0,2275.0022 -5,6,14,15,16,-9,1,1,67,0,1,0,1,1,-9,0,4,8.3429022,8.2256546,0,8,6,-74.866165,0,3,3,2019,6,0,35,35,1,0,0,14.197964,14.197964,0,0,0,0,0,1,1,0,0,0,55.93,52.62,29.23,66.31,10,2,3,0,0,10,8,3,1,1094.5,1740371.9,851098,244854.53,0,2492.9346 -5,6,15,14,-9,-9,1,0,61,0,1,0,1,1,-9,0,5,0,0,0,8,-6,74.275063,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.23,66.31,55.93,52.62,8.333333333333334,2,3,0,0,0,8,3,1,1094.5,1740371.9,851098,244854.53,0,2492.9346 -5,7,16,-9,-9,-9,1,0,100,0,1,0,3,3,-9,0,4,0,0,0,0,0,-971.70447,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,5.2593746,5.1099172,61.654568,0,1,1,0,0,0,57.06,55.24,-9,-9,10,2,3,0,0,0,8,1,1,1027,-24710.52,0,0,0,0 -6,8,17,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.2317729,7.437233,0,0,-963.8667,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,7.2316408,34.88,39.44,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,329,555524.75,48899.82,178920.33,0,1176.8074 -7,9,18,19,20,-9,1,0,52,0,1,0,1,1,-9,0,4,8.4831667,8.4173126,0,6,6,87.449379,0,2,2,2019,9,0,50,42,1,0,0,12.61229,12.61229,0,0,0,0,27,1,1,0,0,0,53.07,52.7,39.03,45.61,8.333333333333334,1,1,0,0,7,10,4,1,613.5,26246.172,-61352.23,184163.09,12578.384,2627.5386 -7,9,19,18,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,0,0,0,6,-6,32.355381,0,2,2,2019,21,8,0,25,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,39.03,45.61,53.07,52.7,3.333333333333333,1,1,1,0,4,10,4,1,613.5,26246.172,-61352.23,184163.09,12578.384,2627.5386 -7,10,20,-9,-9,-9,1,0,87,0,1,0,3,3,-9,0,3,0,0,0,0,0,-950.15405,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,149.30325,0,0,1,1,0,4.2281885,0,46.23,23.96,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,501,463348.94,0,192552.23,0,974.20691 -8,11,21,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,9.3470745,9.2815123,0,0,0,-908.4541,0,2,1,2019,10,0,40,43,1,0,0,33.980309,33.980309,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,3855,571673.25,392020.56,216133.94,27901.453,3504.5564 -8,11,22,-9,21,-9,1,0,12,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1007.0286,-9,1,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,3,4,-9,0,0,8,5,1,3855,571673.25,392020.56,216133.94,27901.453,3504.5564 -9,12,23,-9,26,27,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2117,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 -9,12,24,-9,26,27,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.8629,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 -9,12,25,-9,26,27,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.7085,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 -9,12,26,27,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,8.4999666,8.2757568,0,17,-6,-171.9826,0,3,2,2019,10,0,38,41,1,0,0,14.717118,14.717118,0,0,0,0,0,1,1,0,0,0,51.14,60.45,54.1,59.11,8.333333333333334,3,4,0,0,8,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 -9,12,27,26,-9,-9,1,1,41,1,3,0,2,2,-9,0,5,8.0518475,8.1450281,0,7,6,49.312683,0,-9,-9,2019,8,0,39,39,1,0,0,10.654593,10.654593,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,9,6,4,1,1275.6,87653.125,72381.609,322245.5,78838.57,3391.9751 -10,13,28,29,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,5.4582586,5.2537599,0,9,-1,113.26622,0,2,2,2019,9,1,30,30,1,1,0,.73616767,.73616767,0,0,0,0,0,0,0,0,0,0,58.15,52.91,51.77,58.57,8.333333333333334,1,1,0,0,11,10,2,1,784,919321.13,364937.69,370272.5,132413.22,788.36011 -10,13,29,28,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,6.8871512,7.2063756,0,9,1,72.077881,0,3,2,2019,10,0,40,50,1,0,0,2.1790981,2.1790981,0,0,0,0,2,0,0,0,3.7388613,0,51.77,58.57,58.15,52.91,8.333333333333334,1,1,0,0,9,10,2,1,784,919321.13,364937.69,370272.5,132413.22,788.36011 -11,14,30,31,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,7.5324688,7.4896784,7,-1,-87.897957,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.3906984,7.6121173,57.16,56.15,45.78,51.81,8.333333333333334,1,1,0,0,0,13,4,1,273,1075009.5,325816.94,389613.5,0,3323.8379 -11,14,31,30,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.9218369,7.7910013,7,1,-170.99193,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.4657667,7.9188027,45.78,51.81,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,273,1075009.5,325816.94,389613.5,0,3323.8379 -12,15,32,33,-9,-9,1,1,19,0,0,0,2,2,1,0,3,7.7740998,7.6458559,0,1,1,68.57003,-9,-9,-9,2019,3,0,42,0,1,0,0,4.5195112,4.5195112,0,0,0,0,0,0,0,0,0,0,49.97,53.99,46,59,6.666666666666667,1,1,0,0,2,10,3,0,363,-18310.156,0,0,0,817.14075 -12,15,33,32,-9,-9,1,0,18,0,0,1,2,0,-9,0,4,0,0,0,1,-1,169.03186,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,49.97,53.99,7,1,1,0,0,0,10,3,0,363,-18310.156,0,0,0,817.14075 -13,16,34,-9,37,36,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.13684,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 -13,16,35,-9,37,36,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.9185,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 -13,16,36,37,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.6537762,8.8205328,0,9,3,62.895241,0,2,2,2019,10,0,37,39,1,0,0,26.111057,26.111057,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,10,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 -13,16,37,36,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.752759,7.8062201,0,9,-3,-18.205263,0,1,2,2019,7,0,24,18,1,0,0,11.241767,11.241767,0,0,0,0,0,1,1,0,.74073452,0,54.79,55.86,58.32,50.22,10,1,1,0,0,9,11,5,1,410.5,289948.81,5199.1748,201796.58,75445.195,3815.4775 -14,17,38,41,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,9.313302,9.3089333,0,8,-1,-98.646652,0,-9,-9,2019,17,5,45,46,1,5,0,27.612789,27.612789,0,0,0,0,0,1,1,0,6.367672,0,43.25,49.27,41.12,43.31,6.666666666666667,1,1,0,0,10,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 -14,17,39,-9,41,38,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.30157,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 -14,17,40,-9,41,38,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.1327,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 -14,17,41,38,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,6.6320019,6.6964741,0,8,1,-25.701607,0,2,2,2019,15,5,16,12,1,5,0,4.7849865,4.7849865,0,0,0,0,0,1,1,0,0,0,41.12,43.31,43.25,49.27,8.333333333333334,1,1,0,0,6,10,5,0,559.25,200291.39,54567.684,222499.66,178866.41,5182.623 -15,18,42,43,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4855156,8.7355537,0,10,4,-11.479718,0,-9,-9,2019,7,0,40,40,1,0,0,16.749256,16.749256,0,0,0,0,0,0,0,0,0,0,59.91,45.35,46.13,40.24,8.333333333333334,1,1,0,0,12,5,4,1,237,40393.219,87000.961,166045.58,0,2735.7219 -15,18,43,42,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.3191586,7.156877,0,10,-4,4.7325916,0,3,3,2019,11,0,19,21,1,0,0,7.2029362,7.2029362,0,0,0,0,0,0,0,0,0,0,46.13,40.24,59.91,45.35,8.333333333333334,1,1,0,0,10,5,4,1,237,40393.219,87000.961,166045.58,0,2735.7219 -16,19,44,45,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8269715,7.3847537,0,3,0,-104.69315,-9,-9,-9,2019,6,0,30,0,1,0,0,10.081837,10.081837,0,0,0,0,0,1,1,0,0,0,65.54000000000001,35.93,56.52,45.61,8.333333333333334,1,1,0,0,11,4,3,0,247.5,248724.42,0,119900.23,14386.451,1020.9583 -16,19,45,44,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,5.7366886,5.6252375,3,9,82.967216,-9,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.6804287,0,7,1,1,0,0,6.0014892,56.52,45.61,65.54000000000001,35.93,6.666666666666667,1,1,0,0,0,4,3,0,247.5,248724.42,0,119900.23,14386.451,1020.9583 -17,20,46,-9,47,48,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-962.43237,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,365,646428.06,248397.47,328285.69,111780.11,5543.3877 -17,20,47,48,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,7.9225492,8.5067205,6.1718292,2,-5,41.516644,0,-9,-9,2019,7,0,30,0,1,0,0,11.179688,11.179688,0,0,0,0,0,1,1,0,6.0659485,0,43.38,62.58,50.05,55.41,8.333333333333334,1,1,0,0,3,10,4,1,365,646428.06,248397.47,328285.69,111780.11,5543.3877 -17,20,48,47,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.4766397,8.3835077,5.902338,2,5,-29.60397,0,3,2,2019,9,0,50,50,1,0,0,9.0620584,9.0620584,0,0,0,0,0,1,1,0,8.6116514,0,50.05,55.41,43.38,62.58,5,1,1,0,0,8,10,4,1,365,646428.06,248397.47,328285.69,111780.11,5543.3877 -18,21,49,50,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.4322252,8.7676497,0,7,7,-84.103615,0,2,2,2019,10,2,35,45,1,2,0,26.66872,26.66872,0,0,0,0,0,0,0,0,7.7351518,0,41.53,63.13,56.92,49.39,8.333333333333334,1,1,0,0,11,8,5,1,1018,332099.59,108212.37,454046.56,172184.77,6343.498 -18,21,50,49,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.8981819,9.011878,0,7,-7,-105.92487,0,-9,-9,2019,6,0,50,55,1,0,0,17.353319,17.353319,0,0,0,0,0,0,0,0,0,0,56.92,49.39,41.53,63.13,8.333333333333334,1,1,0,0,6,8,5,1,1018,332099.59,108212.37,454046.56,172184.77,6343.498 -19,22,51,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.07693,6.6290965,0,0,-1099.666,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8687549,6.2504625,57.06,57.76,-9,-9,5,1,1,0,0,6,2,2,1,938,567547.69,174447.61,0,0,1118.5131 -20,23,52,-9,54,53,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.16956,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 -20,23,53,54,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,0,0,0,14,6,0,0,3,3,2019,22,10,0,48,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,46.06,60.24,6.666666666666667,3,4,1,1,4,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 -20,23,54,53,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,0,0,0,18,-6,0,0,2,2,2019,17,5,0,44,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,52.97,53.97,3.333333333333333,3,4,0,1,9,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 -20,23,55,-9,54,53,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.85632,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,12,1,0,699.75,246058.41,51398.43,153097.38,61269.117,0 -21,24,56,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,2,6.7770009,6.5100794,0,0,0,-1001.9445,-9,-9,-9,2019,13,2,4,0,1,2,0,27.332329,27.332329,0,0,0,0,0,1,0,1,0,0,32.39,44.92,-9,-9,5,1,1,0,0,1,1,2,0,949,-510379.88,0,0,0,914.76886 -22,25,57,58,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.9415941,8.9264832,0,7,-1,-90.338821,0,-9,-9,2019,17,5,42,48,1,5,0,20.944201,20.944201,0,0,0,0,0,0,0,0,3.6853249,0,46.28,62.6,49.35,59.64,6.666666666666667,1,1,0,0,6,12,5,1,616,3356851.3,2257502.5,321735.5,0,4785.2676 -22,25,58,57,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8379164,8.8343067,0,7,1,-26.664074,0,2,3,2019,5,2,15,38,1,2,0,35.379982,35.379982,0,0,0,0,0,0,0,0,3.8718162,0,49.35,59.64,46.28,62.6,10,1,1,0,0,8,12,5,1,616,3356851.3,2257502.5,321735.5,0,4785.2676 -23,26,59,60,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,7.4459753,7.2154059,33,1,-7.756721,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,7.720263,7.4106112,25.19,53.46,30.77,64.34,1.666666666666667,1,1,1,1,12,9,5,1,602,1826290.5,1051063.5,504272.13,0,9262.8428 -23,26,60,59,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.5310917,9.7665558,0,33,-1,-14.388181,0,2,2,2019,20,7,39,36,1,7,0,54.176311,54.176311,0,0,0,0,2,0,0,0,6.5394845,0,30.77,64.34,25.19,53.46,1.666666666666667,1,1,0,0,13,9,5,1,602,1826290.5,1051063.5,504272.13,0,9262.8428 -23,27,61,-9,60,59,1,1,20,0,0,0,2,2,1,0,4,8.1214457,7.8971872,0,0,0,-1049.2378,-9,1,1,2019,9,1,38,0,1,1,1,9.870472,9.870472,0,0,0,0,0,0,0,0,4.4172192,0,44.26,59.43,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,225,-226508.67,110256.95,0,0,1367.7178 -24,28,62,63,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.644033,7.8191557,51,7,-60.859856,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.45331,7.7044473,56.94,43.99,48.19,33.76,8.333333333333334,1,1,0,0,0,7,3,1,168,2905059,406547.56,2008162.9,0,2282.8335 -24,28,63,62,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.3889136,5.8434539,51,-7,-60.707733,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,14.013586,0,42,1,1,0,4.8114848,5.6330853,48.19,33.76,56.94,43.99,6.666666666666667,1,1,0,0,10,7,3,1,168,2905059,406547.56,2008162.9,0,2282.8335 -25,29,64,65,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.8775196,6.9558363,43,-2,-131.62286,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9939313,6.78337,58,54,46.99,45.79,8.333333333333334,1,1,0,0,0,9,2,1,756.5,596861.88,84451.898,342175.38,19859.359,1152.3905 -25,29,65,64,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,43,2,226.25081,0,3,3,2019,7,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,2.4942517,0,46.99,45.79,58,54,8.333333333333334,1,1,0,0,0,9,2,1,756.5,596861.88,84451.898,342175.38,19859.359,1152.3905 -26,30,66,-9,67,68,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-846.41998,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1527.6666,1461049.5,482873.13,555423.75,0,5564.6509 -26,30,67,68,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.2535305,8.4974403,0,27,-6,192.70999,0,2,2,2019,2,0,48,50,1,0,0,11.067218,11.067218,0,0,0,0,0,0,0,0,4.1976728,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,2,5,1,1527.6666,1461049.5,482873.13,555423.75,0,5564.6509 -26,30,68,67,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2378359,9.3226604,0,27,6,-109.97455,0,-9,-9,2019,9,0,45,40,1,0,0,23.66078,23.66078,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,1527.6666,1461049.5,482873.13,555423.75,0,5564.6509 -26,31,69,-9,67,68,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1036.8932,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,321,36840.742,0,0,0,0 -27,32,70,71,-9,-9,1,1,43,0,0,0,3,3,-9,0,4,7.9306788,7.9972186,0,10,-7,-120.52383,0,3,3,2019,13,1,40,80,1,1,0,8.8607788,8.8607788,0,0,0,0,0,0,0,0,0,0,52.37,56.93,53.94,45.89,8.333333333333334,1,1,0,1,8,1,3,0,273.5,-155598.89,108569.41,0,0,1463.4949 -27,32,71,70,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,10,7,-183.80566,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.94,45.89,52.37,56.93,8.333333333333334,1,1,1,1,0,1,3,0,273.5,-155598.89,108569.41,0,0,1463.4949 -27,33,72,-9,71,70,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-977.09918,0,3,3,2019,23,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,19.82,56.33,-9,-9,3.333333333333333,1,1,1,0,0,1,1,0,698,359527.28,39513.887,0,0,0 -27,34,73,-9,71,70,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1099.8964,0,3,3,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,1,6,1,1,0,223,0,0,0,0,0 -28,35,74,75,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.9666424,6.2724104,46,6,-105.44071,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.646451,6.2640114,55.79,52.62,62.39,56.71,8.333333333333334,1,1,0,0,9,10,2,1,2288,482779.56,-26023.145,188846.23,0,1771.527 -28,35,75,74,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,6.0236735,5.8492589,0,46,-6,-49.236504,0,3,3,2019,5,0,4,18,1,0,0,13.755687,13.755687,0,0,0,0,27,1,1,0,0,0,62.39,56.71,55.79,52.62,0,1,1,0,0,9,10,2,1,2288,482779.56,-26023.145,188846.23,0,1771.527 -29,36,76,78,-9,-9,1,1,33,0,2,0,1,1,-9,0,4,8.9871168,8.6965694,0,2,3,31.710871,-9,-9,-9,2019,10,0,40,0,1,1,0,18.523209,18.523209,0,0,0,0,0,1,1,0,2.2393014,0,50,57,41.8,32.18,7,1,1,0,0,1,11,4,1,608.33331,721057.19,59928.41,525466.38,58617.199,2608.2734 -29,36,77,-9,78,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.0903,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,608.33331,721057.19,59928.41,525466.38,58617.199,2608.2734 -29,36,78,76,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,0,0,0,2,-3,-66.896767,0,1,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,32.18,50,57,5,1,1,0,0,1,11,4,1,608.33331,721057.19,59928.41,525466.38,58617.199,2608.2734 -30,37,79,80,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,6.9125705,7.0224972,0,20,3,-25.084345,0,2,3,2019,11,2,16,24,1,2,0,10.336341,10.336341,0,0,0,0,2,1,1,0,0,0,56.5,48.33,55.98,27.45,8.333333333333334,1,1,0,0,12,7,2,1,662,127815.16,0,0,0,2591.9028 -30,37,80,79,-9,-9,1,0,38,0,0,0,2,2,-9,1,2,0,0,0,20,-3,69.599129,0,2,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,8.5964088,0,55.98,27.45,56.5,48.33,8.333333333333334,1,1,0,0,10,7,2,1,662,127815.16,0,0,0,2591.9028 -31,38,81,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.9226723,8.8051939,0,0,-1038.6118,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.7391834,8.9717312,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,900,1202322.6,806058.94,317105,0,3888.3115 -32,39,82,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9903388,6.8713779,0,0,-1042.4641,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1594639,7.1690993,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,3602,363867.53,109681.84,161075.7,0,1544.9766 -33,40,83,-9,86,84,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.99188,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 -33,40,84,86,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.1774864,9.3946629,0,15,2,-.86772674,0,2,1,2019,12,0,50,52,1,0,0,24.227621,24.227621,0,0,0,0,0,0,0,0,6.3901954,0,42.06,38.58,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 -33,40,85,-9,86,84,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9568,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 -33,40,86,84,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.274724,9.0469198,0,15,-2,11.934051,0,2,1,2019,8,0,36,35,1,0,0,32.977619,32.977619,0,0,0,0,0,0,0,0,0,0,51.83,57.2,42.06,38.58,8.333333333333334,1,1,0,0,10,2,5,1,1024.25,334713.34,169450.67,557316.88,307903.84,7255.9731 -34,41,87,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.7021856,8.5116463,0,0,0,-995.49683,0,3,2,2019,23,10,37,37,1,10,0,20.633865,20.633865,0,0,0,0,0,1,1,0,.51471484,0,30.44,50.05,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,627,275137.34,-36302.914,0,0,2185.0161 -35,42,88,89,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.3982534,8.6879768,0,9,-2,-19.0424,0,-9,-9,2019,12,2,41,41,1,2,0,11.836995,11.836995,0,0,0,0,0,0,0,0,.19667305,0,41.06,62.04,55.36,51.57,3.333333333333333,1,1,0,0,10,10,5,1,1047,699930.69,804450.25,178087.73,127545.02,3366.3601 -35,42,89,88,-9,-9,1,1,32,0,0,0,3,3,-9,0,3,8.0390024,8.4348021,0,9,2,-28.873014,0,3,2,2019,10,0,38,38,1,0,0,10.001302,10.001302,0,0,0,0,0,0,0,0,.14981112,0,55.36,51.57,41.06,62.04,6.666666666666667,1,1,0,0,10,10,5,1,1047,699930.69,804450.25,178087.73,127545.02,3366.3601 -36,43,90,91,-9,-9,1,1,49,1,1,0,2,2,-9,0,3,9.9846087,9.5069208,0,3,14,68.255882,0,-9,-9,2019,23,9,55,60,1,9,0,29.215923,29.215923,0,0,0,0,0,1,1,0,0,0,24.94,61.65,26.56,54.71,1.666666666666667,1,1,0,1,3,9,5,0,309,872304.25,78200.539,702417.44,129330.41,9970.54 -36,43,91,90,-9,-9,1,0,35,1,1,0,2,2,-9,0,2,7.0246124,6.9386239,0,3,-14,120.95956,0,2,2,2019,19,7,16,0,1,7,0,7.8669448,7.8669448,0,0,0,0,0,1,1,0,0,0,26.56,54.71,24.94,61.65,1.666666666666667,1,1,0,1,6,9,5,0,309,872304.25,78200.539,702417.44,129330.41,9970.54 -36,43,92,-9,91,90,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.6411,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,309,872304.25,78200.539,702417.44,129330.41,9970.54 -37,44,93,94,-9,-9,1,1,54,0,1,0,2,2,-9,1,1,8.485528,8.146369,0,32,-14,-61.438812,0,2,2,2019,7,1,21,20,1,1,0,21.080359,21.080359,0,0,0,0,0,1,1,0,0,0,59.15,4.64,25.26,57.4,10,1,1,0,0,8,11,3,1,499.5,295402.13,-31854.221,251450.55,74420.383,3468.7642 -37,44,94,93,-9,-9,1,0,68,0,1,0,3,3,-9,0,4,0,0,0,32,14,72.074165,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.26,57.4,59.15,4.64,6.666666666666667,1,1,0,0,0,11,3,1,499.5,295402.13,-31854.221,251450.55,74420.383,3468.7642 -37,45,95,-9,94,93,1,0,31,0,1,0,2,2,-9,0,4,0,6.1044011,5.9658756,0,0,-1019.4249,0,3,2,2019,9,0,0,20,3,0,1,0,0,0,0,0,0,120,1,1,0,5.9063644,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,538,118693.73,-59825.656,0,0,592.9577 -37,45,96,-9,95,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.7707,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,538,118693.73,-59825.656,0,0,592.9577 -38,46,97,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,6.5061159,6.1270914,0,0,0,-914.00586,0,2,2,2019,11,0,25,25,1,0,0,2.9026856,2.9026856,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,10,10,2,0,647,8677.1592,111614.69,0,0,460.60321 -39,47,98,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.3768373,6.4026175,0,0,-1073.7468,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3856745,6.2162838,63.01,30.77,-9,-9,10,1,1,0,0,0,9,2,1,1043,264955.78,14411.78,0,0,312.58981 -40,48,99,-9,101,100,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1008.0671,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.37,55.95,-9,-9,6.666666666666667,1,1,0,0,0,4,3,0,569.33331,211201.86,15655.204,34723.453,0,2193.4233 -40,48,100,101,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,7,3,-18.501989,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,14.88,29.92,47.75,53.7,0,1,1,0,0,0,4,3,0,569.33331,211201.86,15655.204,34723.453,0,2193.4233 -40,48,101,100,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,7.6090946,7.5808687,0,7,-3,22.874762,0,-9,-9,2019,10,1,48,33,1,1,0,4.7441936,4.7441936,0,0,0,0,74.5,1,1,0,0,0,47.75,53.7,14.88,29.92,8.333333333333334,1,1,0,0,6,4,3,0,569.33331,211201.86,15655.204,34723.453,0,2193.4233 -40,49,102,-9,101,100,1,1,19,0,0,1,2,0,0,1,4,0,0,0,0,0,-924.6441,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.56,49.35,-9,-9,10,1,1,0,0,0,4,1,0,412,-41181.168,0,0,0,649.45398 -41,50,103,104,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-248.97104,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3326504,0,59.71,50.89,51.83,57.2,10,1,1,0,0,0,9,3,1,177.5,973108.88,107309.87,509888.75,0,2334.5859 -41,50,104,103,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.7635255,7.6785002,10,2,-4.5917602,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.915544,7.9301915,51.83,57.2,59.71,50.89,8.333333333333334,1,1,0,0,0,9,3,1,177.5,973108.88,107309.87,509888.75,0,2334.5859 -42,51,105,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.640748,7.555017,0,0,-1037.787,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5098743,7.27386,60.05,42.65,-9,-9,10,1,1,0,0,0,9,3,1,342,1611023.4,323250.63,109629.7,0,1743.8303 -43,52,106,107,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,0,0,0,7,3,-85.670105,0,3,3,2019,6,0,0,38,3,0,0,0,0,0,0,0,0,7,0,0,0,0,0,56.43,42,47.25,48.42,0,2,3,0,0,9,4,5,1,132.5,478917.44,352618.06,251879.23,145619.08,3457.2788 -43,52,107,106,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,9.2596226,9.5518875,0,7,-3,-118.68204,0,-9,-9,2019,16,4,48,87,1,4,0,27.729507,27.729507,0,0,0,0,0,0,0,0,0,0,47.25,48.42,56.43,42,1.666666666666667,2,3,0,0,11,4,5,1,132.5,478917.44,352618.06,251879.23,145619.08,3457.2788 -44,53,108,109,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,28,6,50.389473,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.66,45.08,48,52.43,5,1,1,0,0,0,8,5,1,855,981467.63,111468.16,803074.88,8535.917,3348.834 -44,53,109,108,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2793722,9.2287903,0,28,-6,158.31923,0,2,2,2019,12,0,21,27,1,0,0,57.300636,57.300636,0,0,0,0,0,0,0,0,0,0,48,52.43,57.66,45.08,5,1,1,0,0,13,8,5,1,855,981467.63,111468.16,803074.88,8535.917,3348.834 -45,54,110,-9,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,0,6.1126485,6.1004844,0,0,-1142.8901,0,1,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,6.328558,0,42.86,53.58,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,2065.6667,-42472.387,11791.67,0,0,2245.6929 -45,54,111,-9,110,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.00488,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,2,0,2065.6667,-42472.387,11791.67,0,0,2245.6929 -45,54,112,-9,110,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-819.92773,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,2065.6667,-42472.387,11791.67,0,0,2245.6929 -46,55,113,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.9716711,6.3858113,0,0,-1058.2079,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0797949,6.1319728,62.27,48.47,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,2790,109745.68,211585.91,0,0,681.4043 -47,56,114,-9,-9,-9,1,0,84,0,1,0,3,3,-9,0,2,0,0,0,0,0,-868.93304,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,43.92,24.34,-9,-9,10,1,1,0,0,0,8,1,0,404,-484734.59,0,0,0,737.10693 -47,57,115,116,114,-9,1,0,58,0,1,0,3,3,-9,0,4,5.8897557,6.1265845,0,6,1,-211.69278,0,3,3,2019,13,3,6,7,1,3,0,10.772196,10.772196,0,0,0,0,2,1,1,0,0,0,40.42,61.41,50.78,48.6,10,1,1,0,0,5,8,4,0,595.33331,863614.13,507704.25,333709.19,89380.063,3002.6758 -47,57,116,115,-9,-9,1,1,57,0,1,0,2,2,-9,0,2,9.0018854,9.0545769,0,6,-1,59.540543,0,-9,-9,2019,12,1,40,50,1,1,0,22.273993,22.273993,0,0,0,0,0,1,1,0,0,0,50.78,48.6,40.42,61.41,3.333333333333333,1,1,0,0,10,8,4,0,595.33331,863614.13,507704.25,333709.19,89380.063,3002.6758 -47,57,117,-9,115,116,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1044.1797,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,8,4,0,595.33331,863614.13,507704.25,333709.19,89380.063,3002.6758 -47,58,118,-9,115,116,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1037.2435,1,3,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,18.06,58.24,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,197,270159.66,0,0,0,0 -48,59,119,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1685863,7.3857379,0,0,0,-948.93414,0,2,2,2019,8,0,28,0,1,0,0,6.4356594,6.4356594,0,0,0,0,7,1,1,0,4.0345721,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,1230,37462.527,148981.19,0,0,1032.4863 -49,60,120,121,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.2604151,8.1659832,0,3,-1,85.681885,-9,-9,-9,2019,9,0,58,0,1,1,0,7.5932908,7.5932908,0,0,0,0,0,1,1,0,0,0,51,56,44.4,41.62,8,4,1,0,0,1,9,4,1,470.33334,576839.5,48329.68,489083.09,115856.77,2577.4407 -49,60,121,120,-9,-9,1,0,42,1,1,0,2,2,-9,0,3,8.0248718,7.5335932,0,3,1,83.805908,0,3,3,2019,11,1,16,40,1,1,0,15.804496,15.804496,0,0,0,0,2,1,1,0,0,0,44.4,41.62,51,56,3.333333333333333,1,1,0,0,9,9,4,1,470.33334,576839.5,48329.68,489083.09,115856.77,2577.4407 -49,60,122,-9,121,120,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.08557,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,470.33334,576839.5,48329.68,489083.09,115856.77,2577.4407 -50,61,123,125,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,0,0,0,3,-2,86.996025,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,2,1,0,1,.73429561,0,34.29,33.04,33.47,56.25,5,1,1,1,1,0,13,2,1,1199.3334,579794,112226.09,289932.41,0,2602.3877 -50,61,124,-9,123,125,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-901.68555,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,.69374412,0,62.66,52.4,-9,-9,10,1,1,1,0,0,13,2,1,1199.3334,579794,112226.09,289932.41,0,2602.3877 -50,61,125,123,-9,-9,1,1,51,0,1,0,3,3,-9,0,4,7.685483,7.7202539,0,3,2,4.9984379,0,3,3,2019,12,0,25,30,1,0,0,8.0483713,8.0483713,0,0,0,0,0,1,0,1,0,0,33.47,56.25,34.29,33.04,1.666666666666667,4,5,0,0,8,13,2,1,1199.3334,579794,112226.09,289932.41,0,2602.3877 -50,62,126,-9,123,125,1,1,21,0,1,0,2,2,-9,0,5,0,0,0,0,0,-950.2312,1,2,3,2019,8,1,0,16,2,1,1,0,0,0,0,0,0,0,1,0,1,1.6478016,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,4250,-196622.47,0,0,0,229.01341 -50,63,127,-9,123,125,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-828.12616,-9,2,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,56.72,58.13,-9,-9,0,1,1,0,0,0,13,1,1,242,-312310.31,0,0,0,2334.3623 -51,64,128,-9,129,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.0225,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,3,4,-9,0,0,8,2,0,744.5,35003.203,57992.52,0,0,2990.5605 -51,64,129,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,1,7.4744048,7.5986514,0,0,0,-1040.6351,0,3,1,2019,21,7,20,19,1,7,0,11.426977,11.426977,0,0,0,0,0,1,1,0,0,0,28.21,46.96,-9,-9,6.666666666666667,3,4,0,1,4,8,2,0,744.5,35003.203,57992.52,0,0,2990.5605 -52,65,130,131,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,10.236389,10.634905,0,30,1,-71.954895,0,2,2,2019,12,0,70,50,1,0,0,43.866985,43.866985,0,0,0,0,0,0,0,0,7.3338451,0,44.47,57.73,53.08,52.64,8.333333333333334,1,1,0,0,13,2,5,1,418.5,2817489.8,2126347.5,521877.97,0,14617.9 -52,65,131,130,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.4168386,9.3035049,0,31,-1,123.87609,0,2,3,2019,9,0,36,38,1,0,0,34.860607,34.860607,0,0,0,0,0,0,0,0,6.3380837,0,53.08,52.64,44.47,57.73,10,1,1,0,0,13,2,5,1,418.5,2817489.8,2126347.5,521877.97,0,14617.9 -52,66,132,-9,131,130,1,1,25,0,0,0,2,2,-9,0,4,7.9461536,7.8765469,0,0,0,-1103.8716,-9,1,1,2019,11,1,37,0,1,1,1,13.363765,13.363765,0,0,0,0,0,0,0,0,1.4364822,0,44.21,60.79,-9,-9,0,1,1,0,0,5,2,4,1,342,-229582.5,-1111.1749,0,0,1709.5667 -52,67,133,-9,131,130,1,0,23,0,0,0,2,2,-9,0,4,7.757391,7.6861711,0,0,0,-1001.4288,0,1,1,2019,15,3,36,0,1,3,1,6.4266415,6.4266415,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,336,320481.03,0,0,0,1088.2018 -53,68,134,135,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,7.1611247,6.9869599,0,4,0,-10.260333,0,-9,-9,2019,15,5,16,38,1,5,0,8.580658,8.580658,0,0,0,0,0,1,1,0,1.6698234,0,41.74,60.79,54.37,54.8,8.333333333333334,1,1,0,0,9,13,4,1,706,1823041.5,1068138.8,234025.48,0,2871.1189 -53,68,135,134,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.7931776,8.4644814,0,4,9,88.245399,0,-9,-9,2019,9,0,37,37,1,0,0,16.072313,16.072313,0,0,0,0,0,1,1,0,.089083292,0,54.37,54.8,41.74,60.79,6.666666666666667,1,1,0,0,12,13,4,1,706,1823041.5,1068138.8,234025.48,0,2871.1189 -54,69,136,137,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.7883677,7.6366243,10,-1,-112.89248,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9885843,7.6021085,65.38,25.53,52.25,45.21,5,1,1,0,0,1,1,3,1,386.5,1449263.9,550458.81,370751.69,0,1871.7034 -54,69,137,136,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,45,1,-100.17386,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3481355,0,52.25,45.21,65.38,25.53,8.333333333333334,1,1,0,0,2,1,3,1,386.5,1449263.9,550458.81,370751.69,0,1871.7034 -55,70,138,-9,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,6.7171497,6.663713,0,0,0,-1022.0693,-9,-9,-9,2019,12,1,16,0,1,1,0,7.2856789,7.2856789,0,0,0,0,0,1,1,0,0,0,46.51,49.36,-9,-9,6.666666666666667,3,4,0,0,4,8,2,0,543.5,-94001.813,0,0,0,1281.0308 -55,70,139,-9,138,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-919.10895,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,543.5,-94001.813,0,0,0,1281.0308 -56,71,140,143,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,8.2453947,8.0389633,0,6,-3,-60.187191,0,2,2,2019,9,0,25,19,1,0,0,18.878592,18.878592,0,0,0,0,0,1,1,0,7.1432872,0,51.73,58.82,40.38,61.66,8.333333333333334,1,1,0,0,7,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 -56,71,141,-9,140,143,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 -56,71,142,-9,140,143,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.0251,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 -56,71,143,140,-9,-9,1,1,42,1,2,0,2,2,-9,0,5,8.6776409,8.7975492,0,6,3,-186.28032,0,-9,-9,2019,12,0,39,37,1,0,0,20.722122,20.722122,0,0,0,0,0,1,1,0,2.804678,0,40.38,61.66,51.73,58.82,8.333333333333334,1,1,0,1,7,5,5,1,594.25,224132.58,139756.2,156896.47,115945.16,3764.6711 -57,72,144,145,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,5.9113135,5.3481712,38,1,-53.462978,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4250584,46.33,55.93,48.45,49.46,8.333333333333334,1,1,0,0,1,4,5,1,1138.5,2772564,1611861.8,246111.45,0,3500.0415 -57,72,145,144,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.9961586,8.5880194,7.0918398,8,-1,-43.26984,0,-9,-9,2019,14,3,50,50,1,3,0,20.649895,20.649895,0,0,0,0,0,1,1,0,7.3905373,7.6141124,48.45,49.46,46.33,55.93,8.333333333333334,1,1,0,0,4,4,5,1,1138.5,2772564,1611861.8,246111.45,0,3500.0415 -57,73,146,-9,144,145,1,0,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1026.0242,0,2,1,2019,35,12,0,45,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,9.27,47.38,-9,-9,1.666666666666667,1,1,0,0,1,4,1,1,474,-90250.641,0,0,0,516.78546 -58,74,147,-9,148,-9,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.7937,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,2,0,924.66669,0,0,0,0,1669.7488 -58,74,148,-9,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,0,5.9370375,6.0607252,0,0,-875.89215,1,2,-9,2019,29,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,6.3466835,0,14.42,61.13,-9,-9,5,1,1,0,0,2,6,2,0,924.66669,0,0,0,0,1669.7488 -58,74,149,-9,148,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.55389,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,2,0,924.66669,0,0,0,0,1669.7488 -59,75,150,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.4375944,8.4871931,0,0,0,-970.99243,-9,-9,-9,2019,12,3,37,0,1,3,0,16.525978,16.525978,0,0,0,0,7,1,1,0,0,0,63.03,22.21,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,378,659389.63,25644.408,387076.44,68629.094,1887.688 -59,76,151,-9,150,-9,1,0,20,0,1,0,2,2,-9,0,4,7.8581071,7.8302841,0,0,0,-997.64966,-9,2,-9,2019,12,0,14,0,1,2,1,18.165924,18.165924,0,0,0,0,0,1,1,0,.37194788,0,46,59,-9,-9,7,3,4,0,0,1,8,3,0,1538,-572827.38,0,0,0,693.50812 -60,77,152,153,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,8.4290791,8.5341988,36,15,72.648552,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,2.0718038,0,14.5,1,1,0,7.5758553,8.2967358,62.99,9.35,37.2,34.1,10,1,1,0,0,0,7,4,0,751,2938586.8,508423.75,2033867,103183.11,4092.2522 -60,77,153,152,-9,-9,1,0,57,0,0,0,2,2,-9,1,5,0,5.221323,5.0514765,36,-15,-.64217722,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,2.7061303,5.3658009,37.2,34.1,62.99,9.35,6.666666666666667,1,1,0,0,0,7,4,0,751,2938586.8,508423.75,2033867,103183.11,4092.2522 -60,78,154,-9,153,152,1,1,32,0,0,0,2,2,-9,1,2,0,8.3614597,8.0031557,0,0,-1108.5361,0,2,3,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,8.4534149,31.73,22.05,-9,-9,3.333333333333333,1,1,0,0,0,7,4,0,773,-510110.34,60094.285,0,0,3545.8362 -61,79,155,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.9505134,7.4345212,0,0,-1068.4672,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7644386,7.2282653,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,671,1881.3975,233285.39,0,0,1247.7653 -62,80,156,157,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.9540167,8.8411655,0,4,1,17.922955,0,1,1,2019,17,6,48,51,1,6,0,18.69035,18.69035,0,0,0,0,0,0,0,0,1.708151,0,41.06,62.04,43.57,62.68,6.666666666666667,1,1,0,0,4,2,5,1,386,379558.38,364711.5,198046.56,125503.69,4777.3354 -62,80,157,156,-9,-9,1,0,27,0,0,0,1,1,1,0,5,8.6164551,8.7336082,0,4,-1,-49.781487,-9,-9,-9,2019,11,0,53,0,1,0,0,11.340888,11.340888,0,0,0,0,0,0,0,0,4.5029702,0,43.57,62.68,41.06,62.04,8.333333333333334,1,1,0,0,5,2,5,1,386,379558.38,364711.5,198046.56,125503.69,4777.3354 -63,81,158,159,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.2510915,7.2652006,0,6,-5,-24.488863,0,2,-9,2019,12,0,21,20,1,0,0,7.20261,7.20261,0,0,0,0,0,0,0,0,0,0,42.61,49.31,26.18,61.09,6.666666666666667,1,1,0,0,6,4,3,0,900,123365.16,103458.38,0,0,1089.1299 -63,81,159,158,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.3598962,7.298027,0,6,5,38.867767,0,-9,-9,2019,22,10,18,20,1,10,0,10.859689,10.859689,0,0,0,0,0,0,0,0,5.5628161,0,26.18,61.09,42.61,49.31,3.333333333333333,4,2,0,0,10,4,3,0,900,123365.16,103458.38,0,0,1089.1299 -64,82,160,162,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.6039867,8.8010159,0,6,-1,10.868278,0,2,1,2019,6,2,37,37,1,2,0,14.847367,14.847367,0,0,0,0,0,1,1,0,4.3273778,0,49.91,56.93,41.72,57.71,8.333333333333334,1,1,0,0,7,11,5,1,672,277471.59,201043.63,276589.84,248161.44,4931.0112 -64,82,161,-9,160,162,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2485,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,672,277471.59,201043.63,276589.84,248161.44,4931.0112 -64,82,162,160,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.5504494,8.9638481,0,6,1,14.3473,0,1,1,2019,12,2,38,38,1,2,0,19.815104,19.815104,0,0,0,0,0,1,1,0,4.8197947,0,41.72,57.71,49.91,56.93,1.666666666666667,1,1,0,0,8,11,5,1,672,277471.59,201043.63,276589.84,248161.44,4931.0112 -65,83,163,-9,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-967.90521,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,13,1,1,318,306658.75,0,0,0,767.78735 -66,84,164,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7441907,8.1747198,5.1465211,0,0,-981.21082,0,3,3,2019,10,0,30,30,1,0,0,9.0482569,9.0482569,0,0,0,0,0,1,1,0,0,5.3704276,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,259,617198.69,215556.38,418078.31,0,1508.6746 -67,85,165,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,7.119379,6.6589594,0,0,-997.55164,-9,3,3,2019,13,2,0,0,4,2,0,0,0,1,4.8152356,0,0,0,1,1,0,0,6.9096279,31.3,33.52,-9,-9,6.666666666666667,1,1,0,0,3,7,2,0,328,779932.81,169059.66,195617.08,0,1359.0057 -68,86,166,-9,167,168,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-956.17328,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.022864036,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,1481,1052478.6,707167.56,271951.19,0,1910.7476 -68,86,167,168,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,9,-3,71.530792,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.60500449,0,57.16,56.15,66.2,41.05,8.333333333333334,1,1,0,0,0,4,3,1,1481,1052478.6,707167.56,271951.19,0,1910.7476 -68,86,168,167,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.2320089,8.0347834,9,3,-118.04327,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.0837357,8.2771292,66.2,41.05,57.16,56.15,10,1,1,0,0,8,4,3,1,1481,1052478.6,707167.56,271951.19,0,1910.7476 -69,87,169,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1070.8828,0,2,2,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,29.42,42.13,-9,-9,3.333333333333333,2,3,1,1,0,8,2,0,1096,137466,63973.621,0,0,1048.9517 -70,88,170,172,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.1175661,8.0683727,0,14,0,7.595706,0,1,1,2019,7,0,25,25,1,0,0,15.197886,15.197886,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51,56,8.333333333333334,1,1,0,0,8,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 -70,88,171,-9,170,172,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.9411,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 -70,88,172,170,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.0499754,8.0354719,0,14,0,-45.083935,0,2,2,2019,10,0,37,35,1,1,0,10.777899,10.777899,0,0,0,0,0,1,1,0,0,0,51,56,54.1,59.11,7,1,1,0,0,1,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 -70,88,173,-9,170,172,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.8407,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,235.75,463164.09,120705.58,307227.09,52168.188,2911.7749 -71,89,174,-9,175,177,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.646,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 -71,89,175,177,-9,-9,1,0,42,1,2,0,1,1,-9,0,5,8.2251291,8.2469063,5.5419583,6,-5,-46.971233,0,2,2,2019,8,0,21,24,1,0,0,22.237312,22.237312,0,0,0,0,0,1,1,0,7.4971919,0,54.69,57.47,57.16,56.15,10,4,2,0,0,12,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 -71,89,176,-9,175,177,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-858.88611,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 -71,89,177,175,-9,-9,1,1,47,1,2,0,1,1,-9,0,4,8.8243885,8.8823576,0,6,5,-7.9499865,0,-9,-9,2019,6,0,35,35,1,0,0,22.340181,22.340181,0,0,0,0,0,1,1,0,1.6086971,0,57.16,56.15,54.69,57.47,10,4,2,0,0,12,8,5,1,737.5,438505.69,90914.352,569695.75,162849.38,5076.7305 -72,90,178,179,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,9.0036249,9.3250265,0,8,-13,4.075603,0,3,3,2019,12,0,45,45,1,0,0,26.971582,26.971582,0,0,0,0,0,1,1,0,4.7994752,0,52.4,31.65,47.07,56.64,6.666666666666667,1,1,0,0,9,12,5,1,552.5,2872377,2198938,472637.69,0,5537.2949 -72,90,179,178,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.0943727,7.8784094,8,13,92.991096,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.7027941,8.2419329,47.07,56.64,52.4,31.65,8.333333333333334,1,1,0,0,2,12,5,1,552.5,2872377,2198938,472637.69,0,5537.2949 -73,91,180,-9,183,182,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.3157,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 -73,91,181,-9,183,182,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.60388,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 -73,91,182,183,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.7692585,8.5635958,0,9,1,8.1620102,-9,-9,-9,2019,10,0,48,0,1,0,0,11.994512,11.994512,0,0,0,0,0,1,1,0,0,0,54.37,54.8,46.8,57.03,3.333333333333333,1,1,0,0,1,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 -73,91,183,182,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.0429935,7.7316213,0,9,-1,-19.135004,0,2,2,2019,11,0,25,25,1,0,0,9.9295225,9.9295225,0,0,0,0,0,1,1,0,0,0,46.8,57.03,54.37,54.8,5,1,1,0,0,6,7,4,0,1102.25,598290.13,205880.47,395767.19,-3433.093,3202.0613 -74,92,184,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,7.2705479,7.5007176,0,0,-992.02716,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,6.389349,7.2266674,38.01,34.13,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,183,496059.5,407958.19,226691.64,0,1219.5204 -75,93,185,-9,188,187,1,0,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1045.156,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 -75,93,186,-9,188,187,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.57147,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 -75,93,187,188,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,8.3838711,8.5769396,0,5,3,-40.643768,0,2,3,2019,8,1,39,39,1,1,0,15.195148,15.195148,0,0,0,0,0,1,1,0,0,0,55.96,49.93,41.87,35.22,8.333333333333334,1,1,0,0,11,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 -75,93,188,187,-9,-9,1,0,38,1,2,0,2,2,-9,0,2,0,6.6559114,6.2786317,5,-3,-106.6198,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,6.8563161,0,41.87,35.22,55.96,49.93,8.333333333333334,1,1,0,0,2,5,3,0,607,250946.53,13578.79,136996.53,40149.48,2547.4443 -76,94,189,190,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.0386543,8.911458,7.4721322,8,-8,-54.314617,0,-9,-9,2019,8,0,80,60,1,0,0,9.8601723,9.8601723,0,0,0,0,0,0,0,0,7.7040682,0,52.95,54.33,51.77,58.57,6.666666666666667,1,1,0,0,6,4,5,1,252.5,1092422,755637.75,121096.25,0,4038.0117 -76,94,190,189,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,6.9262614,6.8341713,0,8,8,11.755148,0,1,2,2019,7,0,30,25,1,0,0,3.6715591,3.6715591,0,0,0,0,2,0,0,0,0,0,51.77,58.57,52.95,54.33,3.333333333333333,1,1,0,0,10,4,5,1,252.5,1092422,755637.75,121096.25,0,4038.0117 -77,95,191,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.0334005,6.4196301,0,0,-1024.4313,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.5947392,6.6993213,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,2,1,186,-84471.133,331664.41,217525.63,0,74.227959 -78,96,192,193,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,10,-4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,0,1,0,0,51.33,33.18,53,47,8.333333333333334,1,1,0,0,0,12,1,0,260.5,295263.47,0,166872.31,0,1369.002 -78,96,193,192,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,10,4,0,0,3,3,2019,8,2,0,0,4,2,0,0,0,1,14.095454,9.9990263,139.61404,0,1,0,1,0,0,53,47,51.33,33.18,6.666666666666667,1,1,0,0,0,12,1,0,260.5,295263.47,0,166872.31,0,1369.002 -79,97,194,195,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,6.843832,6.7206168,6,-8,-37.927334,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.697412,41.58,16.41,68.57000000000001,41.34,8.333333333333334,1,1,0,0,0,5,2,1,1652.5,438724.28,354846.38,115039.67,0,2363.2368 -79,97,195,194,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,5.7572618,5.9410133,6,8,.69389647,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.23138,68.57000000000001,41.34,41.58,16.41,10,1,1,0,0,0,5,2,1,1652.5,438724.28,354846.38,115039.67,0,2363.2368 -79,98,196,-9,195,194,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-907.72821,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,1,1,296,-56996.078,0,0,0,0 -80,99,197,198,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,46,-6,-9.4325857,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,1.6490905,0,50.82,45.55,37.82,39.57,5,1,1,1,1,7,9,2,1,318.5,747841.63,135059.67,332700.13,0,1040.5865 -80,99,198,197,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.2509012,6.3056674,10,6,32.330013,0,-9,-9,2019,11,0,0,24,4,0,0,0,0,1,0,6.1447186,0,0,1,1,0,6.7014351,6.4245005,37.82,39.57,50.82,45.55,8.333333333333334,1,1,0,1,5,9,2,1,318.5,747841.63,135059.67,332700.13,0,1040.5865 -81,100,199,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.7301455,8.3984251,0,0,0,-892.29071,0,-9,-9,2019,3,0,55,35,1,0,0,8.6269751,8.6269751,0,0,0,0,0,1,1,0,5.4349189,0,62.1,42.92,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,222,-155338.44,-51032.629,0,0,2233.1765 -82,101,200,201,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.1419063,5.930594,29,7,-116.27083,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8294344,5.7987633,52,41.28,64.23,44.69,8.333333333333334,1,1,0,0,6,10,3,1,708.5,617211.75,0,404334.56,0,2267.9385 -82,101,201,200,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.5709267,7.5350523,0,29,-7,-12.070827,0,2,3,2019,6,0,15,20,1,0,0,11.137023,11.137023,0,0,0,0,2,1,1,0,3.6852055,0,64.23,44.69,52,41.28,8.333333333333334,1,1,0,0,9,10,3,1,708.5,617211.75,0,404334.56,0,2267.9385 -83,102,202,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.0787725,8.0867634,0,0,0,-1050.9746,0,2,2,2019,10,0,38,14,1,0,0,10.356731,10.356731,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,6,4,0,986,-6633.0303,82169.539,0,0,1954.8773 -84,103,203,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.8300333,8.8933954,0,0,0,-1088.6678,0,3,2,2019,14,2,55,50,1,2,0,12.259421,12.259421,0,0,0,0,2,0,0,0,1.0778636,0,37.08,30.47,-9,-9,5,1,1,0,1,9,7,5,1,482,1127121.6,-22327.6,583422.06,0,1948.5505 -84,104,204,-9,203,-9,1,1,30,0,0,0,2,2,-9,0,1,8.901638,8.6971445,0,0,0,-972.80084,0,1,-9,2019,10,0,50,40,1,0,1,19.408728,19.408728,0,0,0,0,0,0,0,0,0,0,58.73,43.76,-9,-9,6.666666666666667,1,1,0,0,1,7,5,1,478,146239.73,-130060.66,0,0,3014.3708 -85,105,205,206,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.0730591,8.0514145,0,4,0,-87.354683,0,1,1,2019,13,1,41,37,1,1,0,10.529472,10.529472,0,0,0,0,0,0,0,0,1.0706422,0,46.31,51.53,4.2,72.44,6.666666666666667,1,1,0,0,6,4,5,1,392.5,121758.63,71725.469,139357.97,126282.96,2741.061 -85,105,206,205,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.90904,7.8423414,0,4,0,-21.155661,0,-9,-9,2019,33,12,8,39,1,12,0,57.574627,57.574627,0,0,0,1.8066586,0,0,0,0,0,0,4.2,72.44,46.31,51.53,6.666666666666667,2,3,0,0,5,4,5,1,392.5,121758.63,71725.469,139357.97,126282.96,2741.061 -86,106,207,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.0236316,6.6400695,0,0,-972.06128,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9949079,7.1100254,62.39,56.71,-9,-9,10,1,1,0,0,6,12,2,1,2035,160489.58,113477.07,99289.125,0,1172.9531 -87,107,208,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8710823,8.5326824,0,0,0,-1019.7004,-9,2,2,2019,11,2,35,0,1,2,0,26.970554,26.970554,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,440,-131851.3,19808.691,0,0,1996.1327 -88,108,209,-9,-9,210,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1046.799,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,55.18,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,476,769871.5,495326.69,106862.44,0,2435.4421 -88,108,210,211,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.7557478,7.681375,0,1,0,-32.549202,-9,3,3,2019,9,0,35,0,1,1,0,8.0237627,8.0237627,0,0,0,0,0,1,1,0,0,0,53,47,22,58.89,7,1,1,0,0,1,6,3,1,476,769871.5,495326.69,106862.44,0,2435.4421 -88,108,211,210,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.5669284,6.1971607,1,0,-35.667007,-9,3,2,2019,14,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,2.6531699,6.1767726,22,58.89,53,47,8.333333333333334,1,1,0,0,0,6,3,1,476,769871.5,495326.69,106862.44,0,2435.4421 -89,109,212,213,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.0609264,8.2178965,0,3,0,49.028748,0,2,2,2019,11,0,40,45,1,0,0,10.445287,10.445287,0,0,0,0,0,0,0,0,.97017938,0,47.44,41.72,62.5,20.42,6.666666666666667,3,4,0,0,7,4,3,0,673.5,-242014.94,41575.75,0,0,1619.1628 -89,109,213,212,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,3,9,-52.982998,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,62.5,20.42,47.44,41.72,5,1,1,0,0,7,4,3,0,673.5,-242014.94,41575.75,0,0,1619.1628 -90,110,214,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.4849401,5.1165361,0,0,-972.88641,-9,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5110002,48.04,46.66,-9,-9,8.333333333333334,1,1,0,1,0,6,2,1,2672,517182.5,9068.9209,217305.69,0,1426.5641 -91,111,215,216,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.6228676,8.4050827,8.1454382,37,-7,62.290096,0,3,2,2019,6,0,12,6,1,0,0,26.712673,26.712673,0,0,0,0,0,1,1,0,4.2853742,7.993072,55.42,51.42,54.94,53.18,10,1,1,0,0,10,10,5,1,2112.5,2648064.5,1256589.8,788138.25,0,5856.1821 -91,111,216,215,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.2336349,8.5174189,39,7,74.898521,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5663261,8.855073,54.94,53.18,55.42,51.42,8.333333333333334,1,1,0,0,7,10,5,1,2112.5,2648064.5,1256589.8,788138.25,0,5856.1821 -92,112,217,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.599556,5.5013123,0,0,-1028.6649,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4458057,5.3214488,46.1,38.1,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1602,415070.38,-65300.227,0,0,1500.1965 -93,113,218,-9,-9,219,1,1,48,0,0,0,3,3,-9,0,5,8.3050241,8.0282888,0,0,0,-1007.2675,0,3,3,2019,11,0,40,36,1,0,0,8.8307991,8.8307991,0,0,0,0,0,1,1,0,1.9011415,0,49.72,62.35,-9,-9,10,1,1,0,0,11,13,4,1,1211,20560.834,356969.88,192473.22,82040.117,785.88763 -93,114,219,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.2036223,5.2631335,0,0,-1147.3593,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.3213339,53,47,-9,-9,7,4,6,0,0,0,13,2,1,885,196618.59,-18258.816,0,0,602.17151 -94,115,220,221,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3200636,8.6520662,0,15,14,139.9319,0,3,2,2019,6,0,38,38,1,0,0,14.066975,14.066975,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,8,8,5,1,1361.5,669318.13,323675.5,307010.63,88246.063,3667.3335 -94,115,221,220,222,-9,1,0,49,0,0,0,1,1,-9,0,3,8.6728725,8.8025913,0,15,-14,-19.368324,0,3,3,2019,10,0,44,39,1,0,0,11.53856,11.53856,0,0,0,0,0,1,1,0,0,0,57.9,51.84,57.16,56.15,8.333333333333334,3,4,0,0,8,8,5,1,1361.5,669318.13,323675.5,307010.63,88246.063,3667.3335 -94,116,222,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.5207405,5.046555,0,0,-880.64899,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4454184,57.93,46.29,-9,-9,10,3,4,0,0,0,8,2,1,529,58854.852,0,0,0,795.5705 -95,117,223,-9,224,225,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.8745,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1466.3334,997144.88,620121.63,172408.16,2055.4993,3840.146 -95,117,224,225,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.8118534,7.870863,0,1,-10,-68.05687,-9,2,2,2019,13,1,20,0,1,1,0,12.45636,12.45636,0,0,0,0,14.5,1,1,0,5.1406827,0,46.08,57.2,53.66,22.67,8.333333333333334,1,1,0,0,6,2,5,1,1466.3334,997144.88,620121.63,172408.16,2055.4993,3840.146 -95,117,225,224,-9,-9,1,1,61,0,1,0,1,1,-9,0,1,8.6984434,8.782136,4.2087789,1,10,-100.81725,-9,2,-9,2019,12,0,30,0,1,0,0,27.485857,27.485857,0,0,0,0,0,1,1,0,7.2846155,4.4092517,53.66,22.67,46.08,57.2,5,1,1,0,0,9,2,5,1,1466.3334,997144.88,620121.63,172408.16,2055.4993,3840.146 -96,118,226,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1054.1869,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,36.6,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,275,0,0,0,0,459.513 -97,119,227,228,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.3330889,9.329752,0,3,2,42.528477,0,2,2,2019,12,0,50,50,1,0,0,27.615759,27.615759,0,0,0,0,2,0,0,0,5.5358047,0,54.37,54.8,50.03,52.62,8.333333333333334,1,1,0,0,9,12,5,1,671.5,1774656,892395.75,329233.22,0,6508.2192 -97,119,228,227,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.8750277,8.6857653,0,3,-2,-78.403679,0,1,1,2019,12,0,50,50,1,0,0,14.247428,14.247428,0,0,0,.65321505,7,0,0,0,4.8627005,0,50.03,52.62,54.37,54.8,6.666666666666667,1,1,0,0,9,12,5,1,671.5,1774656,892395.75,329233.22,0,6508.2192 -98,120,229,231,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,7.7668405,7.7963758,0,19,1,-59.390831,0,2,2,2019,6,0,23,23,1,0,0,9.5887642,9.5887642,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.34,58.54,6.666666666666667,1,1,0,0,12,11,5,1,689.33331,144863.2,244062.23,278190.66,185352.39,3735.7388 -98,120,230,-9,229,231,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5098,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,689.33331,144863.2,244062.23,278190.66,185352.39,3735.7388 -98,120,231,229,-9,-9,1,1,38,0,1,0,1,1,-9,0,5,9.0623713,9.0110664,0,10,-1,-84.762833,0,-9,-9,2019,8,0,45,36,1,0,0,17.651829,17.651829,0,0,0,0,0,1,1,0,0,0,49.34,58.54,57.06,57.76,8.333333333333334,1,1,0,0,12,11,5,1,689.33331,144863.2,244062.23,278190.66,185352.39,3735.7388 -99,121,232,233,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.1612329,8.414937,0,25,-2,-4.5850015,0,1,2,2019,8,0,40,45,1,0,0,14.009718,14.009718,0,0,0,0,0,0,0,0,4.2185435,0,41.17,59.31,58.32,50.22,8.333333333333334,1,1,0,0,12,7,5,1,492.5,1490473.5,1535913.5,366906.5,273139.91,4182.7144 -99,121,233,232,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.8741331,8.8748665,0,25,2,-78.02507,0,2,3,2019,6,0,37,50,1,0,0,22.137556,22.137556,0,0,0,0,0,0,0,0,5.1149688,0,58.32,50.22,41.17,59.31,8.333333333333334,1,1,0,0,6,7,5,1,492.5,1490473.5,1535913.5,366906.5,273139.91,4182.7144 -99,122,234,-9,233,232,1,1,18,0,0,0,2,2,1,0,3,7.7000237,7.7595959,0,0,0,-865.57697,-9,1,1,2019,8,0,40,0,1,0,1,6.1267643,6.1267643,0,0,0,0,0,0,0,0,.58230841,0,49.97,53.99,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,2233,-146136.33,0,0,0,368.42886 -100,123,235,236,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,7.3281279,7.5489955,0,6,0,-7.9584584,-9,-9,-9,2019,10,0,30,0,1,1,0,5.7248707,5.7248707,0,0,0,0,0,1,1,0,0,0,50,57,46.1,59.99,7,2,3,0,0,1,2,2,1,448,196773.41,-12580.268,0,0,1416.5139 -100,123,236,235,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,5.0373011,5.0990953,0,15,0,165.4202,0,3,2,2019,9,1,6,3,1,1,0,3.4584472,3.4584472,0,0,0,0,0,1,1,0,0,0,46.1,59.99,50,57,8.333333333333334,2,3,0,0,2,2,2,1,448,196773.41,-12580.268,0,0,1416.5139 -100,123,237,-9,236,235,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-710.35229,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,448,196773.41,-12580.268,0,0,1416.5139 -101,124,238,239,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.1071091,6.8171697,46,-2,-15.883952,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3995013,7.042429,56.05,45.76,50.51,53.71,8.333333333333334,1,1,0,0,0,2,3,1,294,415255.75,126527.81,205609.97,0,1875.1971 -101,124,239,238,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.8158665,7.0554609,46,2,-135.11348,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4636953,7.2217507,50.51,53.71,56.05,45.76,8.333333333333334,1,1,0,0,6,2,3,1,294,415255.75,126527.81,205609.97,0,1875.1971 -102,125,240,241,-9,-9,1,0,32,0,2,0,3,3,-9,0,3,0,0,0,10,-2,.80007309,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,33.71,39.08,6.666666666666667,2,3,0,0,0,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 -102,125,241,240,-9,-9,1,1,34,0,2,0,2,2,-9,0,2,8.1344528,8.0792503,0,6,2,46.371075,0,-9,-9,2019,19,7,37,37,1,7,0,10.958234,10.958234,0,0,0,0,0,1,1,0,6.6570411,0,33.71,39.08,39.15,41.42,5,2,3,0,0,9,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 -102,125,242,-9,240,241,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.70172,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 -102,125,243,-9,240,241,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.88452,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,299,68602.273,-9615.8447,91089.438,0,2082.6099 -103,126,244,247,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,0,0,0,21,3,94.40432,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.6,40.7,56.33,51.02,8.333333333333334,2,3,0,0,1,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 -103,126,245,-9,244,247,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.6748,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 -103,126,246,-9,244,247,1,1,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1074.1038,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,-9,-9,10,2,3,0,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 -103,126,247,244,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,7.4794445,7.7007027,0,21,-3,57.792919,0,2,2,2019,10,0,40,35,1,0,0,4.5869379,4.5869379,0,0,0,0,0,1,1,0,3.4336333,0,56.33,51.02,55.6,40.7,1.666666666666667,2,3,0,0,9,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 -103,126,248,-9,244,247,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1126.4464,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,.60620832,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 -103,126,249,-9,244,247,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.0719,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,693.5,300230.78,119383.52,69696.398,40073.945,2165.4219 -104,127,250,251,-9,-9,1,1,50,0,2,0,3,3,-9,0,4,8.5102186,8.3321991,0,28,2,3.2665589,0,3,3,2019,9,0,41,40,1,1,0,15.066068,15.066068,0,0,0,0,0,1,1,0,0,0,53,54,49.04,55.86,8,1,1,0,0,8,7,4,1,1988.5,-24261.699,32721.752,200515.31,121498.64,2937.3013 -104,127,251,250,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,7.7123842,7.7698784,0,28,-2,-37.136772,0,2,2,2019,7,0,37,38,1,0,0,7.5758009,7.5758009,0,0,0,0,0,1,1,0,0,0,49.04,55.86,53,54,10,1,1,0,0,6,7,4,1,1988.5,-24261.699,32721.752,200515.31,121498.64,2937.3013 -104,128,252,-9,251,250,1,1,21,0,2,0,2,2,-9,0,3,8.0791454,7.7855654,0,0,0,-1037.3198,0,3,3,2019,8,1,58,35,1,1,1,5.0136342,5.0136342,0,0,0,0,0,1,1,0,3.1413329,0,43.9,57.01,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,403,-197006.7,-111974.83,0,0,1234.6361 -105,129,253,254,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3533149,7.5403333,8,-2,37.994953,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,2.8852684,0,0,1,1,0,6.0210729,7.409059,46.07,42.07,59.22,37.52,8.333333333333334,1,1,0,0,0,12,3,1,831,1069574.8,910904.75,298730.75,40888.84,2648.0283 -105,129,254,253,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.3960915,7.1665735,8,2,80.122284,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6564083,7.0651231,59.22,37.52,46.07,42.07,1.666666666666667,1,1,0,0,6,12,3,1,831,1069574.8,910904.75,298730.75,40888.84,2648.0283 -106,130,255,-9,258,257,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-868.4563,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 -106,130,256,-9,258,257,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.1383,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 -106,130,257,258,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.4801912,8.2933836,0,4,7,22.041634,0,-9,-9,2019,5,0,42,45,1,0,0,12.628358,12.628358,0,0,0,0,0,1,1,0,0,0,68.42,44.16,29.22,58.49,10,1,1,0,0,8,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 -106,130,258,257,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.7953706,6.9029717,0,4,-7,-86.218323,0,2,2,2019,21,6,8,9,1,6,0,15.357484,15.357484,0,0,0,0,0,1,1,0,0,0,29.22,58.49,68.42,44.16,3.333333333333333,1,1,0,0,7,2,3,1,442.25,126343.91,152468.11,121856,28415.355,2866.9446 -107,131,259,261,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.7661238,8.4370918,0,2,2,-26.755196,0,2,2,2019,9,0,38,60,1,1,0,15.95748,15.95748,0,0,0,0,0,1,1,0,2.9657226,0,51,56,37.19,60.95,8,1,1,0,0,1,13,5,1,318.33334,1095520.3,1221047.3,127435.19,36667.203,3759.5068 -107,131,260,-9,261,259,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.88062,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,318.33334,1095520.3,1221047.3,127435.19,36667.203,3759.5068 -107,131,261,259,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.3554974,7.9806986,0,2,-2,-46.057121,0,2,2,2019,10,1,24,24,1,1,0,18.316305,18.316305,0,0,0,0,0,1,1,0,0,0,37.19,60.95,51,56,8.333333333333334,1,1,0,0,6,13,5,1,318.33334,1095520.3,1221047.3,127435.19,36667.203,3759.5068 -108,132,262,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.9746761,7.0950842,0,0,-1061.9082,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9481969,7.0897231,57.06,57.76,-9,-9,10,1,1,0,0,0,13,2,1,1039,-28648.6,-84527.117,155054.7,0,552.68146 -109,133,263,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1005.5482,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,4.2644458,0,0,0,1,1,0,0,0,61.78,13.84,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,297,235845.84,0,0,0,528.14386 -110,134,264,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.0560846,7.0934925,0,0,-856.49963,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.2272859,46.64,27.75,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,802,705033,492649.75,130171.8,0,1263.365 -111,135,265,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,9.152523,9.1220427,0,0,-923.64905,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,9.207262,0,84.297394,0,1,1,0,6.8336458,9.1430616,36.52,22.6,-9,-9,10,1,1,0,0,0,12,5,0,491,3195635.5,521475.44,257021.61,0,5062.7085 -112,136,266,267,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.1465235,6.1950536,8,3,-58.930912,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,13.203575,0,120,1,1,0,0,6.2361503,30.29,34.91,41.32,19.01,8.333333333333334,1,1,0,0,7,11,2,1,340.5,143072.7,73995.82,93955.969,0,1724.7205 -112,136,267,266,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,47,-3,-66.387985,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,41.32,19.01,30.29,34.91,5,1,1,0,0,0,11,2,1,340.5,143072.7,73995.82,93955.969,0,1724.7205 -113,137,268,269,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,6.0113592,5.3281298,42,1,-75.77356,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.469388,54.33,53.44,55.76,44.76,10,1,1,0,0,5,6,2,1,1185.5,660827.94,104659.5,239340.13,0,1247.2261 -113,137,269,268,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.254684,6.3107209,42,-1,54.007019,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.6442041,6.4054031,55.76,44.76,54.33,53.44,6.666666666666667,1,1,0,0,5,6,2,1,1185.5,660827.94,104659.5,239340.13,0,1247.2261 -114,138,270,271,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,9,-6,-32.422352,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,6.4891453,0,61.85,44.55,43.05,22.96,8.333333333333334,1,1,0,0,0,1,2,1,405,470179.59,225949.03,64267.75,0,3547.9055 -114,138,271,270,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.6120567,6.5637608,9,6,43.259552,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,39.19907,0,0,1,1,0,7.1096926,6.0402222,43.05,22.96,61.85,44.55,3.333333333333333,1,1,0,0,0,1,2,1,405,470179.59,225949.03,64267.75,0,3547.9055 -115,139,272,273,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,0,0,0,8,-1,20.277861,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.49,49.48,10,1,1,0,0,9,5,2,1,378,388321.41,96888.219,214795.63,188129.91,449.65369 -115,139,273,272,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,6.6391501,6.5759511,0,8,1,21.728003,0,3,2,2019,7,0,20,16,1,0,0,4.1090155,4.1090155,0,0,0,0,0,1,1,0,0,0,52.49,49.48,57.16,56.15,6.666666666666667,1,1,0,0,9,5,2,1,378,388321.41,96888.219,214795.63,188129.91,449.65369 -115,140,274,-9,273,272,1,1,25,0,0,0,2,2,-9,0,4,7.7337112,7.8914776,0,0,0,-1069.1954,0,2,2,2019,5,0,36,36,1,0,1,6.0837955,6.0837955,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,1695,-32684.635,17063.34,0,0,524.39343 -116,141,275,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.8443608,7.824667,0,0,0,-1008.4048,-9,1,3,2019,5,0,71,0,1,0,0,4.7936921,4.7936921,0,0,0,0,0,0,0,0,2.6940799,0,51.14,60.45,-9,-9,10,1,1,0,0,3,5,3,0,1266,-47925.121,-73172.602,143834.14,69614.828,1071.212 -117,142,276,-9,277,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.8885,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 -117,142,277,-9,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,8.1474962,8.3435307,6.1534452,0,0,-1051.8953,-9,2,2,2019,22,10,25,0,1,10,0,16.887104,16.887104,0,0,0,0,0,1,1,0,6.5816875,0,38.9,45.4,-9,-9,3.333333333333333,1,1,0,1,12,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 -117,142,278,-9,277,-9,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1030.6868,-9,2,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,20.79,66.53,-9,-9,1.666666666666667,1,1,0,0,0,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 -117,142,279,-9,277,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.7063,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,1478.25,214622.08,-26585.213,0,0,1811.4266 -118,143,280,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.058672,7.9199457,0,0,0,-1029.9712,0,2,2,2019,23,11,42,38,1,11,0,9.8867559,9.8867559,0,0,0,0,0,0,0,0,3.0551291,0,42.3,57.54,-9,-9,6.666666666666667,1,1,0,0,11,7,4,0,216,797122.44,397855.72,454490.25,140656.25,1046.0592 -119,144,281,282,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.2238402,6.6753745,40,8,-21.926039,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1266966,53,47,50,47,8,2,3,0,0,4,6,2,1,512.5,575365.31,157767.19,149800.58,0,1970.717 -119,144,282,281,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,40,-8,62.709377,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53,47,7,2,3,0,0,0,6,2,1,512.5,575365.31,157767.19,149800.58,0,1970.717 -120,145,283,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.969285,7.978724,0,0,-902.52795,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9792366,59.53,56.44,-9,-9,10,1,1,0,0,2,13,4,1,2037,943694.94,724207,230985.42,0,1668.075 -120,146,284,-9,283,-9,1,1,25,0,0,0,2,2,-9,0,4,8.0539351,7.9447403,0,0,0,-1076.9905,-9,2,-9,2019,10,0,40,0,1,1,0,8.3668127,8.3668127,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,1,476,26039.643,0,0,0,1292.2319 -121,147,285,286,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.7376084,4.7683172,46,0,-73.428375,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5360346,4.7636914,47.9,43.96,45.5,43.69,6.666666666666667,1,1,0,1,4,4,3,1,773,469888.81,506237.69,225519.53,0,2645.8789 -121,147,286,285,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.8232636,7.9396329,46,0,-72.034859,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.18365,8.3073215,45.5,43.69,47.9,43.96,8.333333333333334,1,1,0,1,0,4,3,1,773,469888.81,506237.69,225519.53,0,2645.8789 -122,148,287,289,-9,-9,1,1,48,0,3,0,3,3,-9,0,1,7.0794148,6.988668,0,10,18,104.97006,-9,-9,-9,2019,16,4,35,0,1,4,0,3.3950748,3.3950748,0,0,0,0,0,1,1,0,0,0,42.43,31.26,58.47,47.36,10,2,3,0,0,9,4,2,1,1077.6666,-78011.758,0,0,0,2500.1516 -122,148,288,-9,289,287,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.2706,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1077.6666,-78011.758,0,0,0,2500.1516 -122,148,289,287,-9,-9,1,0,30,0,3,0,3,3,-9,0,4,0,0,0,10,-18,21.265516,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,47.36,42.43,31.26,8.333333333333334,2,3,0,0,0,4,2,1,1077.6666,-78011.758,0,0,0,2500.1516 -123,149,290,291,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,10,-1,80.011543,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,57.16,56.15,8.333333333333334,1,1,0,0,6,11,2,1,699,461907.69,0,217808.94,0,1306.1709 -123,149,291,290,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.882659,6.7483673,10,1,40.246868,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6230345,57.16,56.15,50.03,52.62,8.333333333333334,1,1,0,0,0,11,2,1,699,461907.69,0,217808.94,0,1306.1709 -124,150,292,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.4692202,8.2910995,0,0,0,-987.75201,0,1,1,2019,3,0,32,38,1,0,0,15.285277,15.285277,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,11,5,4,1,586,587817,456920.34,188906.36,78038.359,1531.6793 -125,151,293,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.327426,8.4339142,0,0,0,-1136.364,0,3,3,2019,17,5,40,40,1,5,0,13.145953,13.145953,0,0,0,0,0,1,0,1,0,0,31.8,58.32,-9,-9,5,2,3,0,0,1,4,5,0,417,164120.02,67667.758,0,0,1543.1787 -125,152,294,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,6.2054148,6.2948818,0,0,0,-999.98859,-9,-9,-9,2019,22,6,12,0,1,6,0,5.6463065,5.6463065,0,0,0,0,42,1,0,1,0,0,24.19,61.89,-9,-9,0,2,3,0,1,3,4,2,0,434,282075.81,0,0,0,380.57007 -126,153,295,-9,296,297,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.98047,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,282.33334,1498209.5,1042831.9,348903.81,59296.184,3227.8457 -126,153,296,297,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.778934,7.756506,0,13,-16,36.740826,0,3,3,2019,12,1,30,36,1,1,0,9.344389,9.344389,0,0,0,0,2,1,1,0,0,0,57.31,50.61,60.13,49.27,8.333333333333334,1,1,0,0,10,2,5,1,282.33334,1498209.5,1042831.9,348903.81,59296.184,3227.8457 -126,153,297,296,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.8993149,9.1414824,0,9,16,-87.509361,0,-9,-9,2019,9,0,50,50,1,0,0,13.326797,13.326797,0,0,0,0,2,1,1,0,0,0,60.13,49.27,57.31,50.61,8.333333333333334,1,1,0,0,11,2,5,1,282.33334,1498209.5,1042831.9,348903.81,59296.184,3227.8457 -127,154,298,-9,301,300,1,1,30,0,0,0,1,1,-9,0,4,8.7706242,8.6168737,0,0,0,-889.32788,0,2,2,2019,12,0,52,38,1,0,0,12.731128,12.731128,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,7,8,5,1,110,22896.033,0,0,0,2566.0386 -127,155,299,-9,301,300,1,1,38,0,0,0,1,1,-9,0,3,6.5044847,6.3751163,0,0,0,-825.73718,0,3,2,2019,14,2,8,0,1,2,0,11.944366,11.944366,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,2,3,0,0,9,8,2,1,175,-148155.64,68749.367,0,0,-442.97995 -127,156,300,301,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,46,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6574187,0,54.96,53.17,51.83,27.75,8.333333333333334,2,3,0,0,8,8,1,1,707,1047096.2,517940,217467.31,0,1486.988 -127,156,301,300,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,-1,0,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,51.83,27.75,54.96,53.17,8.333333333333334,2,3,0,0,6,8,1,1,707,1047096.2,517940,217467.31,0,1486.988 -128,157,302,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.8079662,5.5856466,0,0,-1106.8977,0,3,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.3339119,5.8547783,49.1,20.13,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,3966,-115942.43,87544.891,111703.23,0,1364.0819 -129,158,303,-9,305,304,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.94727,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,12,4,1,351.33334,299206.41,156460.27,272800.09,66161.625,3631.8086 -129,158,304,305,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.4911213,8.5226011,0,6,8,74.986122,0,-9,2,2019,9,0,45,43,1,0,0,12.707471,12.707471,0,0,0,0,0,1,1,0,0,0,58.05,42.1,51.86,49.31,6.666666666666667,1,1,0,0,9,12,4,1,351.33334,299206.41,156460.27,272800.09,66161.625,3631.8086 -129,158,305,304,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.1857948,8.6136169,0,27,-8,-149.65857,0,2,3,2019,10,1,41,42,1,1,0,12.035045,12.035045,0,0,0,0,0,1,1,0,0,0,51.86,49.31,58.05,42.1,1.666666666666667,1,1,0,0,9,12,4,1,351.33334,299206.41,156460.27,272800.09,66161.625,3631.8086 -130,159,306,307,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.1623068,8.3669243,0,4,1,66.758904,0,-9,-9,2019,15,3,42,42,1,3,0,9.9878178,9.9878178,0,0,0,0,0,0,0,0,0,0,41.3,60.77,57.16,56.15,5,1,1,0,0,9,2,5,0,247.5,-18700.156,142118.14,228359.58,101983.04,2866.9207 -130,159,307,306,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.1175079,8.961647,0,4,-1,129.69633,0,2,2,2019,12,2,67,65,1,2,0,11.048533,11.048533,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,7,2,5,0,247.5,-18700.156,142118.14,228359.58,101983.04,2866.9207 -131,160,308,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,4,8.5624084,8.5416746,0,0,0,-954.51453,-9,2,2,2019,13,1,48,0,1,1,0,8.6567659,8.6567659,0,0,0,0,0,0,0,0,.77006775,0,49.35,59.64,-9,-9,6.666666666666667,1,1,0,0,3,10,4,0,347,374598.63,0,0,0,1682.1875 -132,161,309,310,-9,-9,1,0,36,0,3,0,3,3,-9,0,1,0,0,0,8,-4,0,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78,23.34,43.6,53.51,0,1,1,1,1,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 -132,161,310,309,-9,-9,1,1,40,0,3,0,2,2,-9,1,2,0,0,0,8,4,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.6,53.51,23.78,23.34,3.333333333333333,1,1,0,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 -132,161,311,-9,309,310,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.51849,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 -132,161,312,-9,309,310,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.53583,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 -132,161,313,-9,309,310,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.40216,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,782.40002,181941,144501.55,73303.469,30713.311,1880.1937 -133,162,314,-9,315,316,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2331,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 -133,162,315,316,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,8.041625,7.8912539,0,10,6,58.967251,0,3,3,2019,25,11,42,47,1,11,0,7.2915864,7.2915864,0,0,0,0,7,1,1,0,0,0,32.13,47.12,49.28,52.09,6.666666666666667,1,1,0,1,8,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 -133,162,316,315,-9,-9,1,1,29,0,2,0,3,3,-9,0,2,7.630249,7.4507999,0,10,-6,-76.871277,-9,-9,-9,2019,12,0,29,0,1,0,0,7.5914898,7.5914898,0,0,0,0,0,1,1,0,0,0,49.28,52.09,32.13,47.12,6.666666666666667,1,1,0,0,9,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 -133,162,317,-9,315,316,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.75751,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,1631.5,33197.219,38543.219,122393.91,73104.805,1998.1627 -134,163,318,319,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.3225641,7.3915696,5.0051627,43,6,-88.097,0,2,2,2019,11,0,25,25,1,0,0,7.7861476,7.7861476,1,0,0,0,0,1,1,0,5.3469062,5.0639553,54.37,54.8,42.46,54.85,8.333333333333334,1,1,0,0,8,8,5,1,288,308963.47,-5754.3643,235023.77,108426.89,4058.0186 -134,163,319,318,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.7207661,9.1815338,5.8102374,45,-6,-80.238609,0,2,2,2019,13,2,48,48,1,2,0,12.419698,12.419698,0,0,0,0,0,1,1,0,0,5.622045,42.46,54.85,54.37,54.8,5,3,4,0,0,7,8,5,1,288,308963.47,-5754.3643,235023.77,108426.89,4058.0186 -134,164,320,-9,319,318,1,0,32,0,0,0,1,1,-9,0,1,8.2321577,8.1119213,0,0,0,-1085.7323,0,2,2,2019,33,12,37,16,1,12,1,14.481657,14.481657,0,0,0,0,0,1,1,0,0,0,18.86,28.18,-9,-9,0,4,2,0,0,1,8,4,1,506,172547.89,111811.26,0,0,2301.7886 -135,165,321,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,6.3947277,6.5138135,0,0,-962.63312,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,3.2783732,0,22.454218,0,1,1,0,0,6.6953931,60.05,32.12,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,80,394792.75,214847.78,150678.25,0,2297.2546 -136,166,322,-9,324,323,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1199.6306,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,1825,539374.69,203138.58,96374.813,0,1473.3138 -136,166,323,324,-9,-9,1,1,58,0,1,0,1,1,-9,0,5,6.9641652,6.7656732,0,2,10,26.296238,0,3,3,2019,10,0,40,40,1,0,0,2.5463457,2.5463457,0,0,0,0,0,1,1,0,4.541007,0,42.06,61.77,48.53,54.65,3.333333333333333,1,1,0,1,9,11,2,1,1825,539374.69,203138.58,96374.813,0,1473.3138 -136,166,324,323,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.3462853,7.0747428,0,2,-10,41.878029,0,3,3,2019,12,0,20,22,1,0,0,6.327219,6.327219,0,0,0,0,0,1,1,0,0,0,48.53,54.65,42.06,61.77,6.666666666666667,1,1,0,0,9,11,2,1,1825,539374.69,203138.58,96374.813,0,1473.3138 -137,167,325,327,-9,-9,1,0,51,0,2,0,1,1,-9,0,2,7.7356014,7.7989573,0,30,0,21.020643,0,2,2,2019,14,3,24,25,1,3,0,11.07838,11.07838,0,0,0,0,0,1,1,0,3.0242417,0,51.5,29.22,43.53,38.18,3.333333333333333,1,1,0,0,11,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 -137,167,326,-9,325,327,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.5757,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 -137,167,327,325,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.0428095,8.9445868,0,30,0,122.55535,0,-9,-9,2019,19,7,45,42,1,7,0,21.003311,21.003311,0,0,0,0,0,1,1,0,4.1816001,0,43.53,38.18,51.5,29.22,6.666666666666667,1,1,0,0,11,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 -137,167,328,-9,325,327,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.0942,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,442,800064.38,159630.05,357160.97,119734.09,3804.5049 -138,168,329,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1006.973,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,.27891642,0,0,1,1,0,0,0,65.22,22.84,-9,-9,10,1,1,0,0,0,9,1,1,725,-128267.59,0,0,0,424.43692 -139,169,330,331,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.1200094,7.2325993,0,20,-1,-100.27745,0,2,1,2019,8,0,4,18,1,0,0,40.408489,40.408489,0,0,0,0,0,0,0,0,0,0,54.77,55.87,52,54.51,8.333333333333334,1,1,0,0,9,7,5,1,1082.5,1468819,825179.88,666611.69,0,4360.0122 -139,169,331,330,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.4095535,9.2522516,0,20,1,-21.495672,0,1,1,2019,12,0,37,38,1,0,0,38.274021,38.274021,0,0,0,0,0,0,0,0,2.9074082,0,52,54.51,54.77,55.87,8.333333333333334,1,1,0,0,11,7,5,1,1082.5,1468819,825179.88,666611.69,0,4360.0122 -139,170,332,-9,330,331,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-978.00012,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.6655942,0,61.59,34.98,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,809,123778.7,0,0,0,241.45868 -139,171,333,-9,330,331,1,0,19,0,0,0,2,2,1,0,3,7.4121542,7.5060735,0,0,0,-1065.0605,-9,1,1,2019,17,6,32,0,1,6,1,6.2247076,6.2247076,0,0,0,0,0,0,0,0,0,0,42.87,40.92,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,1049,0,0,0,0,1198.3882 -140,172,334,335,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.6895981,6.8794689,46,-3,-25.826694,0,3,3,2019,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1.2990727,7.010643,33.97,57.61,51,48,6.666666666666667,1,1,0,0,10,6,2,1,196.5,51199.867,36672.43,0,0,475.46033 -140,172,335,334,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,46,3,-76.287697,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,6.2861185,0,51,48,33.97,57.61,7,1,1,0,0,0,6,2,1,196.5,51199.867,36672.43,0,0,475.46033 -141,173,336,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,2.7091744,2.4437671,0,0,-1033.7808,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.7572494,2.5335896,45.03,45.74,-9,-9,3.333333333333333,1,1,0,0,5,5,2,1,336,-77207.68,54311.273,24338.203,0,769.06415 -142,174,337,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3000641,8.6709976,6.5181718,0,0,-1000.8622,0,2,2,2019,15,4,40,37,1,4,0,12.657715,12.657715,0,0,0,0,0,0,0,0,0,6.7483802,44.53,60.44,-9,-9,5,1,1,0,0,9,9,5,1,911,-225702.88,-143999.84,141037.97,36799.824,2620.0483 -143,175,338,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.5587482,9.7884846,0,0,0,-855.81323,-9,1,2,2019,18,6,40,0,1,6,0,59.116707,59.116707,0,0,0,0,0,0,0,0,4.156601,0,46.98,59.35,-9,-9,5,1,1,0,0,5,11,5,0,559,416956.94,37778.16,194135.56,113555.63,8901.7158 -144,176,339,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1022.8678,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.55,48.92,-9,-9,5,1,1,1,0,2,1,1,0,228,37792.82,0,0,0,1632.3254 -145,177,340,-9,342,341,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2278,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,641.75,0,0,0,0,1473.1724 -145,177,341,342,-9,-9,1,1,26,1,2,0,2,2,-9,0,5,0,0,0,2,3,0,-9,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,61.66,54.1,59.11,5,1,1,1,0,0,1,1,0,641.75,0,0,0,0,1473.1724 -145,177,342,341,-9,-9,1,0,23,1,2,0,2,2,-9,0,5,0,0,0,2,-3,0,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,40.38,61.66,6.666666666666667,1,1,0,0,0,1,1,0,641.75,0,0,0,0,1473.1724 -145,177,343,-9,342,341,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.5605,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,1,0,641.75,0,0,0,0,1473.1724 -146,178,344,345,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.1805553,7.0816388,64,5,45.097118,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,4.5705113,7.1131892,62.67,49.54,52,45,8.333333333333334,1,1,0,0,0,4,3,1,435,507935.19,173979.44,127753.95,0,2932.4385 -146,178,345,344,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3917751,6.5019283,64,-5,-11.112651,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,28.715836,120.45655,244.20627,0,1,1,0,3.8417537,6.5647492,52,45,62.67,49.54,8,1,1,0,0,0,4,3,1,435,507935.19,173979.44,127753.95,0,2932.4385 -147,179,346,347,-9,-9,1,1,34,0,0,0,3,3,-9,0,4,8.1115589,8.250165,0,9,3,-8.3366575,0,3,3,2019,9,0,40,40,1,0,0,11.623794,11.623794,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,5,4,1,2729,-40220.773,-2265.6919,176186.77,136417.77,2239.365 -147,179,347,346,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.0042152,7.8904529,0,9,-3,62.923008,0,-9,-9,2019,10,0,38,37,1,0,0,10.203588,10.203588,0,0,0,0,0,0,0,0,.41797745,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,5,4,1,2729,-40220.773,-2265.6919,176186.77,136417.77,2239.365 -148,180,348,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,0,0,0,0,0,-913.72766,0,2,2,2019,24,10,0,40,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,21.9,57.99,-9,-9,1.666666666666667,1,1,1,0,8,6,1,0,1553,0,0,0,0,0 -149,181,349,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,0,0,0,0,-923.0321,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,0,60.46,33.02,-9,-9,8.333333333333334,3,4,0,0,0,6,1,0,215,585557.06,48710.141,156263.83,0,924.39166 -150,182,350,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.5806036,7.2510171,0,0,-1066.369,0,2,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,2.9620106,7.0707874,22.78,54.98,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,573,947110.75,564226.38,262929.56,0,1789.3979 -151,183,351,352,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4335628,6.5552378,60,6,-79.824081,0,2,3,2019,8,1,0,0,4,1,0,0,0,1,0,11.687187,0,0,1,1,0,0,6.2856431,33.59,43.25,47.38,47.02,6.666666666666667,1,1,0,0,0,8,2,1,485.5,328130.16,41920.988,286170.66,0,1086.4396 -151,183,352,351,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,60,-6,19.345232,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.38,47.02,33.59,43.25,5,1,1,0,0,0,8,2,1,485.5,328130.16,41920.988,286170.66,0,1086.4396 -152,184,353,356,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,23,1,40.573463,0,2,2,2019,34,12,0,45,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,17.58,55.48,20.91,67.2,5,1,1,1,0,10,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 -152,184,354,-9,353,356,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-945.93811,-9,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.39586571,0,52.65,51.64,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 -152,184,355,-9,353,356,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.17297,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 -152,184,356,353,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.4790897,9.3107815,0,23,-1,39.385086,0,2,2,2019,36,12,40,38,1,12,0,35.818695,35.818695,0,0,0,0,0,0,0,0,0,0,20.91,67.2,17.58,55.48,5,1,1,0,0,11,8,5,1,493.5,630118.88,233847.91,279018.88,33971.27,3687.0459 -153,185,357,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.4058418,6.27632,0,0,-1045.2997,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7932439,6.303915,59.05,32.34,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,123,-20924.477,-38753.242,104790.36,0,983.38733 -154,186,358,359,-9,-9,1,1,61,1,1,0,3,3,-9,0,2,8.4345322,8.1275053,0,44,1,-103.0998,0,3,3,2019,10,2,60,60,1,2,0,8.3328829,8.3328829,0,0,0,0,0,1,1,0,0,0,51.5,47.18,49,48,6.666666666666667,2,3,0,1,11,8,3,1,410.5,302351,78340.172,271707.69,182015.13,1513.2231 -154,186,359,358,-9,-9,1,0,60,1,1,0,3,3,-9,0,3,0,0,0,9,-1,-86.130478,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51.5,47.18,7,2,3,0,1,0,8,3,1,410.5,302351,78340.172,271707.69,182015.13,1513.2231 -154,187,360,362,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,8.3601437,8.1862545,0,9,-4,57.291233,0,-9,-9,2019,6,0,38,38,1,0,0,12.314982,12.314982,0,0,0,0,0,1,1,0,2.2074053,0,59.53,56.44,50,57,8.333333333333334,2,3,0,0,9,8,4,1,922,-218312.03,86297.188,0,0,3082.1345 -154,187,361,-9,360,362,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.0758,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,922,-218312.03,86297.188,0,0,3082.1345 -154,187,362,360,359,358,1,1,36,1,1,0,2,2,-9,0,4,8.0537071,8.1899633,0,9,4,27.758501,0,3,3,2019,10,0,65,60,1,1,0,7.7818012,7.7818012,0,0,0,0,0,1,1,0,0,0,50,57,59.53,56.44,7,2,3,0,0,11,8,4,1,922,-218312.03,86297.188,0,0,3082.1345 -155,188,363,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,9.11586,9.3397455,0,0,0,-1009.1776,0,2,2,2019,10,0,84,84,1,0,0,15.290781,15.290781,0,0,0,0,0,1,1,0,0,0,61.55,36.45,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,262,783405.31,648793.25,105542.17,102681.07,4289.2842 -156,189,364,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,3.5757265,3.5604103,0,0,-1082.9552,0,3,3,2019,17,5,0,44,3,5,0,0,0,0,0,0,0,0,0,0,0,0,3.4817548,43.48,30.37,-9,-9,8.333333333333334,1,1,1,0,11,1,2,1,691,251121.59,0,0,0,8.890892 -157,190,365,367,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.4208202,8.3159742,0,4,4,115.47325,0,2,2,2019,11,1,32,37,1,1,0,14.56019,14.56019,0,0,0,0,0,1,1,0,0,0,49.27,56.95,49.97,53.99,6.666666666666667,1,1,0,0,8,1,4,1,1040.6666,1083002.1,954023.94,303937.47,56935.586,4603.9229 -157,190,366,-9,367,365,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.39795,-9,1,1,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.36,54.65,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,1040.6666,1083002.1,954023.94,303937.47,56935.586,4603.9229 -157,190,367,365,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.4847584,8.8840103,0,4,-4,-2.7838674,0,2,2,2019,10,0,53,52,1,0,0,13.113466,13.113466,0,0,0,0,7,1,1,0,7.1083326,0,49.97,53.99,49.27,56.95,8.333333333333334,1,1,0,0,8,1,4,1,1040.6666,1083002.1,954023.94,303937.47,56935.586,4603.9229 -157,191,368,-9,367,365,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1071.2695,-9,1,1,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.07,56.41,-9,-9,8.333333333333334,1,1,0,0,1,1,1,1,557,-361134.56,0,0,0,0 -158,192,369,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,6.1969371,6.4972396,0,0,-1063.4358,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.3976297,36.04,22.78,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,696,-26341.68,12915.582,152787.39,0,1574.7909 -159,193,370,-9,371,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.77118,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,-9,0,0,8,2,0,800.66669,145239.5,0,0,0,2335.3865 -159,193,371,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6083598,7.9462142,0,0,0,-980.20343,0,1,-9,2019,9,1,16,18,1,1,0,16.481258,16.481258,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,800.66669,145239.5,0,0,0,2335.3865 -159,193,372,-9,371,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.8635,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,800.66669,145239.5,0,0,0,2335.3865 -160,194,373,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.8759627,7.0075855,0,0,-1024.9427,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4474378,66.13,21.07,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,655,-81523.859,52182.273,69239.852,0,1086.2181 -161,195,374,-9,376,375,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2461,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,795.33331,469080.75,64647.824,206246.64,86355.445,3285.4172 -161,195,375,376,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.543417,8.3696756,0,4,2,18.785654,0,-9,-9,2019,9,0,40,41,1,0,0,12.021002,12.021002,0,0,0,0,0,1,1,0,2.613328,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,8,11,4,1,795.33331,469080.75,64647.824,206246.64,86355.445,3285.4172 -161,195,376,375,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,7.9828258,7.6752181,0,4,-2,26.064249,0,1,2,2019,7,0,40,40,1,0,0,8.0514421,8.0514421,0,0,0,0,0,1,1,0,3.6195116,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,795.33331,469080.75,64647.824,206246.64,86355.445,3285.4172 -162,196,377,-9,378,379,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.6031,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 -162,196,378,379,-9,-9,1,0,29,1,3,0,2,2,-9,0,2,7.0275054,7.2448878,0,9,-11,-29.47893,0,-9,2,2019,13,1,18,20,1,1,0,7.9431162,7.9431162,0,0,0,0,0,1,1,0,0,0,39.68,53.79,59.8,39.25,5,1,1,0,0,5,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 -162,196,379,378,-9,-9,1,1,40,1,3,0,2,2,-9,0,2,8.3416691,7.930099,0,9,11,43.954079,0,-9,-9,2019,10,0,49,49,1,0,0,9.9925213,9.9925213,0,0,0,0,0,1,1,0,0,0,59.8,39.25,39.68,53.79,6.666666666666667,1,1,0,0,5,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 -162,196,380,-9,378,379,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.9903,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 -162,196,381,-9,378,379,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.1388,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,1,488,-125564.22,-1685.7107,0,0,2047.0692 -163,197,382,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.6339941,7.7309213,0,0,0,-979.16107,0,3,2,2019,10,0,33,40,1,0,0,9.1642828,9.1642828,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,6,10,3,0,661,176049.47,0,0,0,1958.891 -164,198,383,-9,386,384,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.7775,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 -164,198,384,386,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.7268467,8.6634226,0,9,1,1.4184185,0,2,2,2019,4,0,47,42,1,0,0,13.231582,13.231582,0,0,0,0,0,1,1,0,7.2110181,0,57.16,56.15,50.51,53.71,8.333333333333334,1,1,0,0,11,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 -164,198,385,-9,386,384,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1078.2598,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 -164,198,386,384,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.1803975,7.1607409,6.064981,9,-1,52.431759,0,2,3,2019,12,0,35,30,1,0,0,5.068727,5.068727,0,0,0,0,0,1,1,0,7.6596489,0,50.51,53.71,57.16,56.15,6.666666666666667,1,1,0,1,10,12,4,1,1073.75,121583.25,6923.3374,160984.58,100027.38,3617.5281 -165,199,387,388,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.9062405,8.7417364,0,1,4,74.330185,0,-9,-9,2019,9,1,45,40,1,1,0,12.19866,12.19866,0,0,0,0,0,0,0,0,3.042872,0,51.83,57.2,56.77,43.98,8.333333333333334,1,1,0,0,9,12,5,1,2157.5,111829.99,27535.799,217995.63,93824.969,3859.7124 -165,199,388,387,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1596346,8.2347755,0,1,-4,-117.65707,-9,-9,-9,2019,12,0,35,0,1,0,0,13.392787,13.392787,0,0,0,0,0,0,0,0,0,0,56.77,43.98,51.83,57.2,8.333333333333334,1,1,0,0,0,12,5,1,2157.5,111829.99,27535.799,217995.63,93824.969,3859.7124 -166,200,389,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.8334756,5.1517901,0,0,-1061.0449,0,2,2,2019,17,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,4.9134474,4.9140339,40.68,44.49,-9,-9,1.666666666666667,1,1,0,1,2,10,2,1,1563,178787.47,167998.08,286903.34,0,1200.7015 -167,201,390,391,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.0689993,7.8247662,0,29,-2,15.118011,0,2,2,2019,11,0,45,37,1,0,0,8.8827009,8.8827009,0,0,0,0,14.5,0,0,0,6.6792874,0,51.83,57.2,40.11,51.61,1.666666666666667,1,1,0,0,9,12,4,1,1211,1354729.8,976710.63,152104.75,0,3017.0037 -167,201,391,390,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.2851095,8.1370506,0,29,2,136.51065,0,3,-9,2019,12,0,39,35,1,0,0,8.8687239,8.8687239,0,0,0,0,2,0,0,0,0,0,40.11,51.61,51.83,57.2,8.333333333333334,1,1,0,0,9,12,4,1,1211,1354729.8,976710.63,152104.75,0,3017.0037 -168,202,392,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,1,0,0,0,0,0,-899.52063,0,3,2,2019,18,0,0,0,4,5,0,0,0,1,27.654047,8.5786142,257.81186,0,1,1,0,0,0,36.61,17.55,-9,-9,1.666666666666667,1,1,0,0,0,8,2,0,95,242871.42,85100.383,0,0,1406.4437 -169,203,393,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,3.4764178,3.7601867,0,0,-1085.8704,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6948477,3.4270334,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,433,528825.63,-24977.787,0,0,1610.8105 -170,204,394,395,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4843082,7.630753,43,7,-84.522324,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.414144,50.43,45.82,43.74,22.01,3.333333333333333,2,3,0,0,0,8,3,1,1047,808699.75,318786.16,464307.22,0,1317.0448 -170,204,395,394,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,4.1570501,4.4368291,43,-7,119.74902,0,3,3,2019,17,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,3.8053746,43.74,22.01,50.43,45.82,6.666666666666667,2,3,0,0,0,8,3,1,1047,808699.75,318786.16,464307.22,0,1317.0448 -170,205,396,-9,395,394,1,0,38,0,0,0,1,1,-9,0,4,9.2612391,9.0329018,0,0,0,-1066.7476,0,2,2,2019,11,0,35,36,1,2,0,27.272488,27.272488,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,5,1,1559,194082.3,103991.23,164485.75,79214.453,3022.238 -171,206,397,398,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9510117,5.8353004,51,3,120.19749,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3203483,59.7,43.22,64.40000000000001,25.94,10,1,1,0,0,0,1,2,1,666.5,134304.11,42799.859,90032.469,0,1364.6135 -171,206,398,397,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,51,-3,-13.033463,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.40000000000001,25.94,59.7,43.22,6.666666666666667,1,1,0,0,0,1,2,1,666.5,134304.11,42799.859,90032.469,0,1364.6135 -172,207,399,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.6144371,9.603323,0,0,0,-994.87573,0,2,2,2019,5,0,50,40,1,0,0,30.164444,30.164444,0,0,0,0,0,0,0,0,7.5427308,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,952,731898.38,663450.13,286129.91,109493.73,6575.4775 -173,208,400,401,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,7.9221053,7.8155317,0,5,3,-98.406311,0,-9,-9,2019,7,0,47,43,1,0,0,5.5663495,5.5663495,0,0,0,0,0,0,0,0,0,0,60.02,56.42,48.77,60.16,10,1,1,0,0,10,5,4,1,552.5,44738.578,-24000.137,82976.188,98759.758,2745.9019 -173,208,401,400,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.8215513,8.1649275,0,5,-3,-96.142967,0,2,2,2019,6,0,40,39,1,0,0,8.7618771,8.7618771,0,0,0,0,0,0,0,0,0,0,48.77,60.16,60.02,56.42,10,1,1,0,0,9,5,4,1,552.5,44738.578,-24000.137,82976.188,98759.758,2745.9019 -174,209,402,403,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6764631,8.4354467,0,10,2,-30.674635,0,3,3,2019,6,0,36,36,1,0,0,12.299513,12.299513,0,0,0,0,7,1,0,1,6.9710321,0,57.09,46.7,57.33,53.46,6.666666666666667,1,1,0,0,12,13,4,1,1315,210070.19,66587.844,0,0,2961.6465 -174,209,403,402,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,6.8761415,7.1282358,39,-2,-11.163384,0,3,3,2019,11,0,0,20,4,0,0,0,0,0,0,0,0,2,1,0,1,3.9773166,7.0003042,57.33,53.46,57.09,46.7,8.333333333333334,1,1,0,0,12,13,4,1,1315,210070.19,66587.844,0,0,2961.6465 -174,210,404,-9,403,402,1,0,25,0,0,0,1,1,-9,0,3,7.4988904,7.7666225,0,0,0,-1030.3828,0,2,2,2019,6,0,33,33,1,0,1,8.8757,8.8757,0,0,0,0,2,1,0,1,1.4387311,0,45.35,50.81,-9,-9,0,1,1,0,0,9,13,3,1,1464,236647.27,-6769.6714,0,0,649.48236 -175,211,405,-9,408,406,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.36115,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 -175,211,406,408,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.945302,8.8017797,0,8,-3,-41.651646,0,2,1,2019,7,0,45,40,1,0,0,17.908461,17.908461,0,0,0,0,0,1,1,0,0,0,60.12,54.8,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 -175,211,407,-9,408,406,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.0683,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 -175,211,408,406,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.5107698,8.3947487,0,8,3,-75.713608,0,2,2,2019,12,3,34,32,1,3,0,18.92889,18.92889,0,0,0,0,0,1,1,0,0,0,51.83,57.2,60.12,54.8,8.333333333333334,1,1,0,0,11,2,5,1,952,207262.13,207505.08,309729.13,242561.45,4682.0811 -176,212,409,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.2795715,8.3821831,0,0,0,-1036.5356,0,-9,-9,2019,9,0,38,40,1,0,0,13.208344,13.208344,0,0,0,0,0,0,0,0,0,0,42.05,58.8,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,651,174377.67,-50006.348,101917.87,140739.02,1602.194 -177,213,410,412,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.0823355,7.8770123,0,24,4,-5.2660065,0,3,3,2019,14,3,45,27,1,3,0,7.9984798,7.9984798,0,0,0,0,2,1,1,0,0,0,52.1,34.28,42.15,53.86,6.666666666666667,3,4,0,0,8,8,5,1,569.33331,631448.69,43588.34,235325.28,0,3112.9453 -177,213,411,-9,410,412,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.22601,1,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,2.9313314,0,53.51,40.29,-9,-9,8.333333333333334,4,2,0,0,0,8,5,1,569.33331,631448.69,43588.34,235325.28,0,3112.9453 -177,213,412,410,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.329504,8.3889647,0,24,-4,45.816559,0,-9,-9,2019,8,0,44,58,1,0,0,11.516949,11.516949,0,0,0,0,0,1,1,0,0,0,42.15,53.86,52.1,34.28,8.333333333333334,1,1,0,0,6,8,5,1,569.33331,631448.69,43588.34,235325.28,0,3112.9453 -177,214,413,-9,410,412,1,1,19,0,0,0,2,2,-9,0,3,7.3081927,7.2524571,0,0,0,-1011.6078,0,2,2,2019,12,0,40,0,1,0,1,2.9938173,2.9938173,0,0,0,0,0,1,1,0,0,0,48.18,41.34,-9,-9,3.333333333333333,4,2,0,0,2,8,3,1,1572,85261.484,0,0,0,500.86639 -178,215,414,415,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,6.858933,6.4690709,0,8,-1,39.576576,0,3,3,2019,7,0,30,25,1,0,0,3.5495563,3.5495563,0,0,0,0,0,0,0,0,.1325531,0,60.12,54.8,54.66,47.77,8.333333333333334,1,1,0,0,9,13,3,1,799.5,1263176,455395.38,310308.31,0,2575.5986 -178,215,415,414,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.5938387,7.6040058,0,8,1,-32.06068,0,2,3,2019,7,0,60,50,1,0,0,3.9183834,3.9183834,0,0,0,0,0,0,0,0,7.4549394,0,54.66,47.77,60.12,54.8,8.333333333333334,1,1,0,0,9,13,3,1,799.5,1263176,455395.38,310308.31,0,2575.5986 -179,216,416,-9,-9,417,1,1,16,0,1,0,1,1,-9,1,3,0,6.8854542,7.1178098,0,0,-886.25665,-9,-9,1,2019,21,6,0,0,2,6,0,0,0,0,0,0,0,2,1,1,0,4.0955806,6.9262133,44.77,32.22,-9,-9,1.666666666666667,4,5,0,0,0,9,2,1,1803,724010.81,228488.19,358807.75,24324.918,2379.2095 -179,216,417,-9,-9,-9,1,1,59,0,1,0,1,1,-9,0,3,6.9302964,7.0039668,0,0,0,-1095.5784,0,2,3,2019,21,9,16,20,1,9,0,8.3597641,8.3597641,0,0,0,0,0,1,1,0,0,0,36.97,49.39,-9,-9,3.333333333333333,1,1,0,1,3,9,2,1,1803,724010.81,228488.19,358807.75,24324.918,2379.2095 -180,217,418,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,1,8.1754293,7.8282228,0,0,0,-959.4057,0,2,1,2019,11,0,35,35,1,0,0,13.197118,13.197118,0,0,0,0,0,0,0,0,0,0,36.49,54.04,-9,-9,8.333333333333334,1,1,0,0,7,7,4,0,328,278419.06,-30645.338,665851.31,460567.69,1575.3882 -181,218,419,420,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.6251554,8.8857975,34,6,30.531633,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.5151501,55.96,49.93,58.05,54.52,10,1,1,0,0,4,8,5,1,1262.5,7840362,5772587,0,0,6665.3564 -181,218,420,419,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,9.4635324,9.3832378,0,41,-6,-154.66782,0,3,3,2019,10,2,47,47,1,2,0,34.232632,34.232632,0,0,0,0,2,0,0,0,5.1766624,0,58.05,54.52,55.96,49.93,10,1,1,0,0,9,8,5,1,1262.5,7840362,5772587,0,0,6665.3564 -182,219,421,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1008.4777,0,3,3,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,9.450000000000001,47.74,-9,-9,1.666666666666667,2,3,0,1,0,4,1,1,345,-196287.59,0,0,0,234.65338 -183,220,422,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,5.8975945,6.0948501,0,0,-1087.3466,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.6886432,6.1919231,42.34,18.5,-9,-9,3.333333333333333,1,1,0,0,3,13,2,0,459,811161.63,591647.56,0,0,1890.6881 -184,221,423,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.0825644,8.1994677,0,0,0,-997.04517,0,1,3,2019,11,1,27,25,1,1,0,13.727485,13.727485,0,0,0,0,0,0,0,0,6.1467748,0,45.18,54.77,-9,-9,6.666666666666667,1,1,0,0,11,8,4,0,260,12103.38,0,0,0,849.31506 -185,222,424,426,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.4829664,7.3401928,0,22,-3,91.601799,0,3,3,2019,6,0,22,24,1,0,0,6.9545732,6.9545732,0,0,0,0,2,1,1,0,0,0,60.29,52.11,52.99,51.28,8.333333333333334,1,1,0,0,8,13,4,1,1007.6667,79657.695,16827.85,0,0,4083.895 -185,222,425,-9,424,426,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-989.33258,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,4,1,1007.6667,79657.695,16827.85,0,0,4083.895 -185,222,426,424,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.0461941,9.3864059,0,8,3,-41.688473,0,-9,-9,2019,7,0,40,52,1,0,0,26.660036,26.660036,0,0,0,0,0,1,1,0,0,0,52.99,51.28,60.29,52.11,6.666666666666667,1,1,0,0,6,13,4,1,1007.6667,79657.695,16827.85,0,0,4083.895 -185,223,427,-9,424,426,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-1085.1533,-9,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,0,1,1,1,0,0,13,1,1,549,183126.61,0,0,0,0 -186,224,428,429,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.6322155,7.6283193,9,0,-33.964123,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,22.780001,0,0,1,1,0,7.2193727,7.7627306,58.32,50.22,43.42,47.2,8.333333333333334,1,1,0,0,5,4,3,1,334,1285015.5,700941.88,220445.61,0,2135.1621 -186,224,429,428,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.4973011,6.7051353,9,0,-31.851322,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8121095,6.3898468,43.42,47.2,58.32,50.22,8.333333333333334,1,1,0,0,5,4,3,1,334,1285015.5,700941.88,220445.61,0,2135.1621 -187,225,430,431,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.5153904,8.4011364,0,20,15,-67.114082,-9,3,3,2019,12,0,37,0,1,0,0,12.151641,12.151641,0,0,0,0,0,0,0,0,0,0,57,31.7,43.03,53.23,5,1,1,0,0,11,2,4,1,475.5,920817.5,638180.5,144735.31,39457.063,2369.8569 -187,225,431,430,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.418179,7.6167617,0,20,-15,-46.884781,0,2,-9,2019,11,2,30,30,1,2,0,8.2025356,8.2025356,0,0,0,0,0,0,0,0,0,0,43.03,53.23,57,31.7,6.666666666666667,1,1,0,0,11,2,4,1,475.5,920817.5,638180.5,144735.31,39457.063,2369.8569 -188,226,432,-9,435,434,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-939.62891,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 -188,226,433,-9,435,434,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.62616,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 -188,226,434,435,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.4552221,8.4643402,0,7,2,-28.266556,0,2,2,2019,8,0,42,40,1,0,0,11.217045,11.217045,0,0,0,0,0,1,1,0,0,0,59.26,37.61,49.71,55.64,8.333333333333334,1,1,0,0,8,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 -188,226,435,434,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.8826308,7.916935,0,7,-2,95.865791,0,2,1,2019,6,0,40,40,1,0,0,11.246365,11.246365,0,0,0,0,0,1,1,0,0,0,49.71,55.64,59.26,37.61,8.333333333333334,1,1,0,0,8,2,4,1,488,-37875.125,21942.311,110677.64,54120.344,3299.0767 -188,227,436,-9,435,434,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1006.6014,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.78,49.92,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,265,0,0,0,0,0 -189,228,437,438,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.3777876,7.4109721,27,4,59.017365,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6440601,7.1077566,50.21,50.99,44.08,25.91,8.333333333333334,1,1,0,0,0,9,2,1,1279,1092790.3,249161.06,492457.19,0,1258.9911 -189,228,438,437,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.3824034,5.6045032,27,-4,51.246456,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.5584364,44.08,25.91,50.21,50.99,3.333333333333333,1,1,0,0,0,9,2,1,1279,1092790.3,249161.06,492457.19,0,1258.9911 -190,229,439,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,0,0,0,0,-912.43311,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,13,8,1,0,97,736135.19,89973.461,442526.13,0,254.25443 -191,230,440,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.5755458,6.7041311,0,0,-1077.7078,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,6.5313053,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,897,85078.031,195086.42,41083.07,0,898.39972 -191,231,441,-9,440,-9,1,0,35,0,0,0,2,2,-9,0,4,8.1062479,8.2408934,0,0,0,-953.92371,0,3,-9,2019,11,0,38,38,1,2,0,11.049351,11.049351,0,0,0,0,0,1,1,0,5.1247931,0,49,56,-9,-9,7,1,1,0,0,1,6,4,1,367,-118729.38,0,0,0,1534.1716 -192,232,442,443,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1739235,7.9519529,0,35,-2,77.797699,0,2,2,2019,8,0,38,37,1,0,0,7.48383,7.48383,0,0,0,0,2,0,0,0,1.3606355,0,57.16,56.15,57.06,57.76,10,1,1,0,0,8,5,3,1,757,170010.36,74131.063,42576.75,37919.344,1664.1929 -192,232,443,442,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,0,0,35,2,-40.61047,0,3,3,2019,10,3,0,40,4,3,0,0,0,0,0,0,0,27,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,5,3,1,757,170010.36,74131.063,42576.75,37919.344,1664.1929 -193,233,444,447,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,8.9162083,8.9059114,0,14,-7,74.381615,0,3,1,2019,11,0,37,45,1,2,0,25.417191,25.417191,0,0,0,0,0,1,1,0,6.7140851,0,48,56,51,56,7,2,3,0,0,6,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 -193,233,445,-9,444,447,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.14972,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 -193,233,446,-9,444,447,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.8042,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 -193,233,447,444,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.1592884,8.1083212,0,14,7,-4.6672425,0,3,1,2019,10,0,21,10,1,1,0,24.710157,24.710157,0,0,0,0,0,1,1,0,0,0,51,56,48,56,7,2,3,0,0,5,8,5,0,846.25,1433406,315311.44,794275.94,288545.63,3274.7939 -194,234,448,449,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.925972,7.9202051,0,12,-2,12.792172,0,2,2,2019,6,0,30,28,1,0,0,10.494072,10.494072,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,9,4,5,1,1250.3334,-22024.609,-4976.3999,102905.1,101333.23,4045.9465 -194,234,449,448,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,8.8072529,8.6497431,0,12,2,-43.908569,0,2,-9,2019,10,0,50,45,1,0,0,20.267979,20.267979,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,6.666666666666667,1,1,0,0,9,4,5,1,1250.3334,-22024.609,-4976.3999,102905.1,101333.23,4045.9465 -194,234,450,-9,448,449,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.698,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,1250.3334,-22024.609,-4976.3999,102905.1,101333.23,4045.9465 -195,235,451,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-953.43115,-9,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,0,0,0,0,0,38.39,48.48,-9,-9,5,1,1,1,0,11,2,1,0,360,210037.06,0,0,0,0 -196,236,452,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.9422293,5.7740269,0,0,-1079.1536,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0551481,51,46,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,750,457731.63,126428.02,0,0,435.67554 -197,237,453,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8333044,8.4429083,0,0,0,-1083.2645,0,2,2,2019,12,1,37,37,1,1,0,17.94903,17.94903,0,0,0,0,0,0,0,0,6.4958963,0,41,63.4,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,830,139681.3,-45211.594,0,0,2534.7039 -198,238,454,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.724575,8.48032,0,0,-1022.2973,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.973537,8.8074617,57.06,57.76,-9,-9,10,1,1,0,0,8,7,5,1,1001,1823215.6,1303351.3,334993.72,0,2802.2598 -199,239,455,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-973.38806,0,3,3,2019,18,6,0,33,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.25,38.75,-9,-9,1.666666666666667,3,4,0,1,9,10,1,0,562,78338.828,0,0,0,635.85657 -200,240,456,-9,458,457,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.53687,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,4,1,343,142424.94,40118.211,181316.34,116046.19,6298.752 -200,240,457,458,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,8.6437492,9.0216398,0,9,-1,-11.967245,0,3,2,2019,7,0,20,15,1,0,0,34.971485,34.971485,0,0,0,0,0,0,0,0,9.1343861,0,55.08,48.98,35.61,49.92,8.333333333333334,2,3,0,0,9,8,4,1,343,142424.94,40118.211,181316.34,116046.19,6298.752 -200,240,458,457,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.5688996,7.8360581,0,9,1,-72.572777,0,3,3,2019,12,0,20,20,1,2,0,10.855418,10.855418,0,0,0,0,0,0,0,0,4.0394812,0,35.61,49.92,55.08,48.98,8.333333333333334,2,3,0,0,7,8,4,1,343,142424.94,40118.211,181316.34,116046.19,6298.752 -201,241,459,-9,461,462,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.06836,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 -201,241,460,-9,461,462,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1004.222,-9,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,2,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 -201,241,461,462,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.0889416,7.8605847,0,26,-5,70.665955,0,-9,2,2019,33,12,30,22,1,12,0,13.810204,13.810204,0,0,0,0,0,1,1,0,0,0,24.09,52.96,46.63,59.72,3.333333333333333,1,1,0,1,3,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 -201,241,462,461,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.4530287,8.5295696,0,26,5,-74.741638,0,1,2,2019,7,0,42,46,1,0,0,11.312131,11.312131,0,0,0,0,0,1,1,0,0,0,46.63,59.72,24.09,52.96,6.666666666666667,1,1,0,1,8,12,4,1,1470.5,449942.53,132508.02,204447.52,0,3343.0625 -202,242,463,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1009.4407,0,-9,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.7922668,0,37.21,64.02,-9,-9,10,1,1,0,0,7,6,1,1,2474,79797.313,0,107871.7,26091.385,896.87842 -203,243,464,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,7.5877891,7.9622803,0,0,-1049.0765,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,16.804785,0,0,1,1,0,0,7.916688,53,44,-9,-9,8,1,1,0,0,0,13,3,1,776,374634.22,-11175.009,259461.78,0,2065.7397 -204,244,465,-9,467,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-957.54535,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,4,1,851.66669,-9905.1289,-34412.777,0,0,2307.7502 -204,244,466,-9,467,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-815.08246,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.35865799,0,30.64,56.25,-9,-9,6.666666666666667,4,2,0,0,1,8,4,1,851.66669,-9905.1289,-34412.777,0,0,2307.7502 -204,244,467,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,8.7583323,8.6616468,0,0,0,-1089.0073,0,2,1,2019,6,0,18,18,1,0,0,44.676891,44.676891,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,851.66669,-9905.1289,-34412.777,0,0,2307.7502 -204,245,468,-9,467,-9,1,0,21,0,1,0,2,2,-9,0,5,7.0501623,7.0308251,0,0,0,-945.50513,0,2,2,2019,8,1,24,24,1,1,1,5.0968957,5.0968957,0,0,0,0,0,1,1,0,0,0,66.64,46.59,-9,-9,10,4,2,0,0,2,8,2,1,370,241714.28,0,0,0,433.38373 -205,246,469,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,6.6134605,6.341186,0,0,-1083.2886,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6892314,53.59,49.64,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,172,371784.06,22108.859,335122.16,0,1001.3566 -206,247,470,471,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,8.3279409,8.4602079,0,4,-5,-20.468136,0,2,1,2019,9,1,45,42,1,1,0,11.702245,11.702245,0,0,0,0,0,0,0,0,1.8873178,0,49.3,59.89,36.2,64.19,8.333333333333334,4,2,0,0,7,2,5,1,1902.5,-49617.34,27387.389,142539.88,53388.992,4011.2998 -206,247,471,470,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.8047352,9.2133694,0,4,5,-14.548106,0,-9,-9,2019,15,4,50,60,1,4,0,21.591139,21.591139,0,0,0,0,0,0,0,0,4.2615905,0,36.2,64.19,49.3,59.89,8.333333333333334,1,1,0,0,3,2,5,1,1902.5,-49617.34,27387.389,142539.88,53388.992,4011.2998 -207,248,472,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.6554594,8.495059,0,0,0,-928.31787,0,-9,-9,2019,13,5,37,37,1,5,0,16.238911,16.238911,0,0,0,0,2,1,1,0,3.1400299,0,33.27,51.52,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,511,326557.03,295965.63,73927.453,93144.789,2868.6685 -208,249,473,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1030.1085,0,2,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,1.666666666666667,4,2,0,0,0,2,1,0,690,-551344.06,0,0,0,1989.2284 -209,250,474,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0205641,8.4286613,0,0,0,-1199.6207,0,2,2,2019,3,0,30,32,1,0,0,12.589025,12.589025,0,0,0,0,7,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,2048,-138771.45,-41620.789,0,0,2027.679 -209,251,475,-9,474,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8355808,7.8039713,0,0,0,-1003.731,0,2,-9,2019,24,8,44,39,1,8,1,6.3865299,6.3865299,0,0,0,0,0,0,0,0,4.2292137,0,39.82,58.52,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,1282,148417.94,0,0,0,1642.0703 -209,252,476,-9,474,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1016.9571,-9,2,-9,2019,24,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,23.24,62.54,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,988,190662.77,-66642.766,0,0,0 -210,253,477,478,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.0740929,7.8465528,0,9,-3,55.18203,0,-9,-9,2019,10,0,39,36,1,0,0,8.3305225,8.3305225,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,13,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 -210,253,478,477,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.4448442,8.6250515,0,9,3,-55.202023,0,-9,-9,2019,10,0,50,50,1,0,0,13.840644,13.840644,0,0,0,0,0,1,1,0,.68752509,0,57.16,56.15,51.77,58.57,10,1,1,0,0,12,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 -210,253,479,-9,477,478,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.9589,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 -210,253,480,-9,477,478,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.38318,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1037.75,512226.81,396364.13,119722.95,30786.67,3634.1274 -211,254,481,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.2429814,7.254777,0,0,0,-1142.5648,-9,-9,-9,2019,10,0,38,0,1,0,0,4.8532395,4.8532395,0,0,0,0,0,0,0,0,0,0,45.22,60.62,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,103,-71489.938,0,0,0,973.00629 -211,255,482,-9,-9,481,1,0,20,0,0,0,2,2,-9,0,4,7.1290364,7.1443615,0,0,0,-952.09979,-9,-9,2,2019,12,0,40,0,1,2,1,3.9924932,3.9924932,0,0,0,0,0,0,0,0,.68259043,0,46,58,-9,-9,7,1,1,0,1,2,4,3,0,1618,270459.94,-54429.582,0,0,1104.0466 -212,256,483,484,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.772264,7.5593438,0,6,1,81.744644,0,2,2,2019,9,0,30,30,1,0,0,7.6434841,7.6434841,0,0,0,0,14.5,0,0,0,5.2487712,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,7,13,5,1,1054.5,265550.59,73947.18,313655.47,0,3659.5015 -212,256,484,483,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4570475,8.6530666,0,6,-1,83.169273,0,-9,-9,2019,9,0,60,37,1,1,0,11.36507,11.36507,0,0,0,0,0,0,0,0,5.6642699,0,53,55,54.2,57.49,8,1,1,0,0,1,13,5,1,1054.5,265550.59,73947.18,313655.47,0,3659.5015 -213,257,485,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3442335,8.2038221,0,0,0,-1094.9424,0,-9,-9,2019,9,2,50,39,1,2,0,10.189613,10.189613,0,0,0,0,0,0,0,0,4.5953403,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,521,-137805.8,7567.1548,0,0,2337.2197 -214,258,486,487,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.4979491,7.0138464,60,6,11.622037,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.0441279,7.6268525,50.51,42.98,47.85,30.76,8.333333333333334,1,1,0,0,0,7,3,1,799,1003789.6,709665.06,309026.88,0,1782.8494 -214,258,487,486,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.1535692,6.346447,60,-6,-40.086315,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.0586979,6.8819122,22.088097,0,1,1,0,4.1165538,6.5160217,47.85,30.76,50.51,42.98,6.666666666666667,1,1,0,0,0,7,3,1,799,1003789.6,709665.06,309026.88,0,1782.8494 -215,259,488,489,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,9.0054522,8.7458372,5.8663096,10,3,-36.670189,0,3,2,2019,22,8,40,35,1,8,0,17.726582,17.726582,0,0,0,0,2,0,0,0,6.8013849,0,33.93,33.3,57.16,56.15,5,1,1,0,0,11,10,5,1,715.5,189328.28,55781.93,348649.75,255187.08,4691.7109 -215,259,489,488,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.4910879,8.6688805,0,10,-3,5.6900468,0,3,2,2019,8,0,37,77,1,0,0,15.187476,15.187476,0,0,0,0,0,0,0,0,0,0,57.16,56.15,33.93,33.3,8.333333333333334,1,1,0,0,10,10,5,1,715.5,189328.28,55781.93,348649.75,255187.08,4691.7109 -216,260,490,491,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.6762571,7.4419079,43,-2,69.370186,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5150166,7.2054586,62.49,55.09,57.33,53.46,10,1,1,0,0,0,4,3,1,462.5,824055.38,754180.5,280268.06,0,3075.0605 -216,260,491,490,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.9734716,7.0757804,43,2,-81.301224,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5468478,7.0949178,57.33,53.46,62.49,55.09,3.333333333333333,1,1,0,0,0,4,3,1,462.5,824055.38,754180.5,280268.06,0,3075.0605 -217,261,492,493,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.9695854,8.9219027,0,3,3,-26.219461,0,2,2,2019,5,0,39,40,1,0,0,20.713823,20.713823,0,0,0,0,0,0,0,0,0,0,49.91,58.02,50.54,62.09,8.333333333333334,1,1,0,0,7,2,5,1,806,109826.12,0,0,0,2636.5129 -217,261,493,492,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,7.3289089,7.3958707,0,3,-3,17.088314,0,-9,-9,2019,5,0,40,45,1,0,0,4.8165421,4.8165421,0,0,0,0,0,0,0,0,0,0,50.54,62.09,49.91,58.02,10,1,1,0,0,3,2,5,1,806,109826.12,0,0,0,2636.5129 -218,262,494,495,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,6.7940702,6.3433895,0,39,2,136.88136,0,2,3,2019,19,7,66,55,1,7,0,1.0413309,1.0413309,0,0,0,0,0,0,0,0,0,0,39.9,33.33,38.04,57.99,3.333333333333333,1,1,0,0,9,10,4,0,650,141198.13,242492.38,0,0,2234.127 -218,262,495,494,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.2787561,8.1833677,0,39,-2,140.76814,0,-9,-9,2019,13,1,45,45,1,1,0,9.5910454,9.5910454,0,0,0,0,2,0,0,0,0,0,38.04,57.99,39.9,33.33,8.333333333333334,1,1,0,0,8,10,4,0,650,141198.13,242492.38,0,0,2234.127 -219,263,496,-9,-9,-9,1,0,20,0,1,0,2,2,0,0,5,0,0,0,0,0,-1011.3317,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.84,59.62,-9,-9,10,1,1,0,0,2,2,1,1,295,240977.44,0,0,0,19.817978 -220,264,497,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.8319597,7.9761896,0,0,0,-1010.8696,0,1,2,2019,11,2,36,38,1,2,0,9.751771,9.751771,0,0,0,0,0,0,0,0,0,0,42.86,55.92,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,856,414080.31,120470.26,0,0,1044.5547 -221,265,498,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-926.35858,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,11.358116,0,0,1,1,0,0,0,67.12,15.13,-9,-9,5,1,1,0,0,0,4,2,0,286,180870.22,0,0,0,1598.3643 -222,266,499,500,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,7.8730946,8.1972237,0,4,-3,-2.0591516,0,-9,-9,2019,10,0,37,37,1,0,0,10.487859,10.487859,0,0,0,0,0,0,0,0,0,0,46.31,41.01,55.78,50.07,6.666666666666667,1,1,0,0,11,12,5,1,497,285883.13,339689.97,275860.38,174681.53,2773.3777 -222,266,500,499,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.1291161,8.6354361,5.7944403,4,3,-120.2218,0,2,2,2019,11,0,39,41,1,0,0,10.302485,10.302485,0,0,0,0,0,0,0,0,6.0569739,0,55.78,50.07,46.31,41.01,8.333333333333334,1,1,0,0,11,12,5,1,497,285883.13,339689.97,275860.38,174681.53,2773.3777 -223,267,501,-9,502,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-882.29535,0,3,-9,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,62,43.5,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,779,-188806.84,0,0,0,750.66797 -223,268,502,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-988.91693,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.15,33.91,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,467,113214.31,0,0,0,1100.313 -224,269,503,504,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.7994471,7.4939213,9,6,173.26212,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,6.0606613,7.706172,44.19,52.47,32.5,43.57,8.333333333333334,1,1,0,0,8,4,4,1,459,1932354,314296.84,448665.34,0,2233.7903 -224,269,504,503,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.4249496,7.7123289,9,-6,57.486271,0,1,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,3.5047183,7.7897806,32.5,43.57,44.19,52.47,6.666666666666667,1,1,0,0,8,4,4,1,459,1932354,314296.84,448665.34,0,2233.7903 -225,270,505,506,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.6162729,8.506093,0,5,1,-31.869972,0,3,2,2019,9,0,40,45,1,0,0,15.409345,15.409345,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.47,55.31,8.333333333333334,1,1,0,0,11,10,5,1,646.66669,672286.13,283206.53,355106.63,108030.38,4278.2847 -225,270,506,505,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,8.2254782,7.913126,0,5,-1,63.994503,0,-9,-9,2019,12,3,38,38,1,3,0,8.1955299,8.1955299,0,0,0,0,0,1,1,0,0,0,50.47,55.31,57.16,56.15,10,1,1,0,0,10,10,5,1,646.66669,672286.13,283206.53,355106.63,108030.38,4278.2847 -225,270,507,-9,506,505,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.4299,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,646.66669,672286.13,283206.53,355106.63,108030.38,4278.2847 -226,271,508,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.4590774,6.80581,0,0,-1105.5596,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3268485,52.45,42.35,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,836,120718.53,128559.98,0,0,1053.2798 -227,272,509,510,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.8572602,6.9064827,45,0,26.768837,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,5.1814232,6.882741,41.53,39.2,49.91,58.02,8.333333333333334,1,1,0,0,8,2,2,1,704,454768.44,452168.56,119717.68,0,2300.0823 -227,272,510,509,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.5091929,5.2268963,45,0,105.94117,0,2,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.5270267,0,2,1,1,0,4.5205202,5.5463777,49.91,58.02,41.53,39.2,8.333333333333334,1,1,0,0,1,2,2,1,704,454768.44,452168.56,119717.68,0,2300.0823 -228,273,511,512,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.4978862,7.491785,0,12,-2,25.428528,0,3,3,2019,7,0,50,45,1,0,0,3.9085877,3.9085877,0,0,0,0,0,1,1,0,3.8806758,0,62.49,55.09,48.09,27.99,10,1,1,0,0,9,9,3,1,1334,695644.94,354934.13,263188.28,6877.2256,1864.8169 -228,273,512,511,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.2796755,7.4937587,0,12,2,-34.14909,0,2,2,2019,14,3,35,30,1,3,0,5.431962,5.431962,0,0,0,0,0,1,1,0,0,0,48.09,27.99,62.49,55.09,8.333333333333334,1,1,0,0,8,9,3,1,1334,695644.94,354934.13,263188.28,6877.2256,1864.8169 -229,274,513,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.08077,6.7822304,0,0,-972.67401,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.629992,7.0365648,50.1,41.77,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1056,388286.72,-43293.246,0,0,1705.8949 -230,275,514,515,-9,-9,1,1,90,0,0,0,1,1,-9,0,2,0,8.5506487,8.459774,32,11,31.317549,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,4.5582666,0,0,1,1,0,6.0994411,8.1435375,54.42,27.11,54.96,53.17,3.333333333333333,1,1,0,0,0,2,4,1,1063,916313.75,578014.31,706767,0,3480.7988 -230,275,515,514,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.9839721,6.6882386,32,-11,-75.174858,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9912028,54.96,53.17,54.42,27.11,8.333333333333334,1,1,0,0,0,2,4,1,1063,916313.75,578014.31,706767,0,3480.7988 -231,276,516,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.850203,8.1995087,0,0,-926.62415,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.629657,8.0923758,64.47,51.45,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,320,946771.31,485025.28,252954.48,0,1275.703 -232,277,517,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,6.7632952,6.4692822,0,0,-1088.4832,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,13.540862,0,0,1,1,0,0,6.2998252,59.69,32.14,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1637,100792.22,174265.97,76407.141,0,1275.7269 -232,278,518,-9,517,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9661517,6.552145,0,0,-940.25812,0,3,-9,2019,8,0,0,24,4,0,0,0,0,0,0,0,0,7,1,1,0,.12122061,6.727282,53.39,52.35,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,838,382803.94,164216.45,213674,0,2153.7217 -233,279,519,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.4649677,7.5306139,0,0,-960.39294,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8786631,7.1141725,54.2,57.49,-9,-9,10,1,1,0,0,0,6,3,1,66,550164.31,444336.94,113108.7,0,1309.4546 -234,280,520,521,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5629644,9.0474367,0,1,0,0,-9,2,2,2019,6,0,45,0,1,0,0,18.315514,18.315514,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,57.64,8.333333333333334,1,1,0,0,3,7,5,1,588.5,1554012.5,721500,690636.5,22605.504,4696.9004 -234,280,521,520,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8739405,9.1330118,0,22,0,0,-9,2,2,2019,12,0,50,0,1,0,0,17.711653,17.711653,0,0,0,0,0,0,0,0,2.5202918,0,48.77,57.64,57.16,56.15,1.666666666666667,1,1,0,0,9,7,5,1,588.5,1554012.5,721500,690636.5,22605.504,4696.9004 -234,281,522,-9,521,520,1,0,20,0,0,0,2,2,-9,0,4,7.9510522,7.988626,0,0,0,-1063.1896,-9,1,2,2019,12,0,60,0,1,0,1,5.1546922,5.1546922,0,0,0,0,0,0,0,0,1.2881924,0,41.49,60.87,-9,-9,6.666666666666667,1,1,0,0,2,7,4,1,344,-329609.63,-45686.535,0,0,1253.8134 -235,282,523,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.3786,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9245205,0,66.21000000000001,35.51,-9,-9,10,1,1,0,0,0,7,1,1,305,-364476.56,0,0,0,1016.9093 -236,283,524,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.4931254,6.9038024,0,0,-983.50751,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7938848,6.6919627,45.58,37.23,-9,-9,5,1,1,0,0,0,6,2,1,759,586210.06,174405.98,0,0,1261.8304 -237,284,525,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.6659818,8.2554131,7.5885553,0,0,-947.07739,0,3,2,2019,19,8,40,37,1,8,0,5.4122267,5.4122267,0,0,0,0,0,1,1,0,2.1413641,7.821362,32.34,46.08,-9,-9,3.333333333333333,1,1,0,0,7,6,4,1,187,333071.78,144366.08,173220.3,0,1590.0282 -238,285,526,527,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.451489,6.9217453,36,3,-26.375505,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,1.1081332,7.6854768,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,1,590.5,2251953.3,1145331.5,786038.94,0,6774.3657 -238,285,527,526,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.1078739,9.6758232,8.4258223,38,-3,6.7534528,0,2,1,2019,7,0,65,48,1,0,0,17.946051,17.946051,0,0,0,0,0,0,0,0,0,8.0265903,57.06,57.76,52,54.51,10,1,1,0,0,10,10,5,1,590.5,2251953.3,1145331.5,786038.94,0,6774.3657 -239,286,528,529,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,6.4009361,6.9149671,0,33,2,38.106819,0,3,3,2019,9,0,40,40,1,0,0,2.5299945,2.5299945,0,0,0,0,0,0,0,0,2.348352,0,52.65,51.64,57.92,51.82,5,1,1,0,0,6,9,3,1,969.5,1005952,541618.75,325931.38,136233.91,1946.3153 -239,286,529,528,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.1148801,7.9056096,7.25317,33,-2,-7.7838783,0,-9,-9,2019,13,1,16,16,1,1,0,10.934336,10.934336,0,0,0,0,0,0,0,0,.14252299,7.020062,57.92,51.82,52.65,51.64,0,1,1,0,0,8,9,3,1,969.5,1005952,541618.75,325931.38,136233.91,1946.3153 -240,287,530,531,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,31,-3,-66.703018,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.76,30.28,58.89,48.6,1.666666666666667,1,1,0,0,0,12,5,0,359,1748271,1262738,287905.44,0,3559.1421 -240,287,531,530,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,9.0873699,9.3634243,0,31,3,91.030586,0,2,2,2019,7,0,40,39,1,0,0,26.114065,26.114065,0,0,0,0,2,1,1,0,0,0,58.89,48.6,39.76,30.28,8.333333333333334,1,1,0,0,11,12,5,0,359,1748271,1262738,287905.44,0,3559.1421 -240,288,532,-9,531,530,1,1,25,0,0,0,1,1,-9,0,4,8.0782213,8.3243341,0,0,0,-896.99866,0,2,3,2019,9,1,38,37,1,1,1,9.1120358,9.1120358,0,0,0,0,0,1,1,0,2.655257,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,12,4,0,2745,-99915.539,-6544.356,0,0,927.06183 -241,289,533,534,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,6.2432442,6.1110044,0,43,-3,132.10692,0,2,2,2019,23,10,5,10,1,10,0,10.765028,10.765028,0,0,0,0,0,1,1,0,0,0,39.89,41.72,51,48,6.666666666666667,1,1,0,0,12,4,4,1,1278.5,929456.38,412191.88,344946.06,0,2997.687 -241,289,534,533,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.9350758,8.2260504,6.9693856,10,3,-107.80789,-9,-9,-9,2019,10,0,32,0,1,1,0,10.646481,10.646481,0,0,0,0,0,1,1,0,1.6822453,6.8284693,51,48,39.89,41.72,7,1,1,0,0,1,4,4,1,1278.5,929456.38,412191.88,344946.06,0,2997.687 -241,290,535,-9,533,534,1,1,38,0,0,0,2,2,-9,0,4,8.1431189,7.9229908,0,0,0,-1061.426,-9,2,3,2019,10,0,50,0,1,1,0,7.92173,7.92173,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,4,4,1,337,-348354.72,0,0,0,1222.032 -242,291,536,538,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,6.9547968,6.9022217,0,2,-2,51.318836,0,-9,-9,2019,16,3,16,16,1,3,0,6.8960776,6.8960776,0,0,0,0,0,1,1,0,0,0,43.6,51.61,35.56,52.41,6.666666666666667,1,1,0,0,1,12,3,0,385.66666,-38239.723,-22298.699,0,0,1686.5504 -242,291,537,-9,536,538,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.3639,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,385.66666,-38239.723,-22298.699,0,0,1686.5504 -242,291,538,536,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.9287395,7.7527781,0,2,2,10.331764,0,-9,-9,2019,28,10,33,34,1,10,0,6.3160996,6.3160996,0,0,0,0,0,1,1,0,0,0,35.56,52.41,43.6,51.61,5,1,1,0,0,8,12,3,0,385.66666,-38239.723,-22298.699,0,0,1686.5504 -243,292,539,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6484389,8.0867815,0,0,-1010.8706,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.0817842,7.6311998,52.58,47.36,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,738,990244.13,318676.94,333209.97,0,2270.0786 -244,293,540,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.895288,7.9613376,0,0,-1082.7898,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.0223551,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,865,754747.5,143536.31,386856.31,0,2287.9236 -245,294,541,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.9760952,6.9349442,0,0,-1061.1749,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5496173,6.8500509,58.59,43.18,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,827,1038729.5,172790.66,565833.69,0,1628.0248 -246,295,542,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,0,0,-929.5484,0,2,2,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,27.23,38.97,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,658.5,0,0,0,0,1857.5906 -246,295,543,-9,542,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.22363,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,658.5,0,0,0,0,1857.5906 -246,295,544,-9,542,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.00427,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,658.5,0,0,0,0,1857.5906 -246,295,545,-9,542,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.7032,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,658.5,0,0,0,0,1857.5906 -247,296,546,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.9832134,9.0015821,6.5423722,0,0,-972.45325,0,3,2,2019,12,0,47,53,1,0,0,16.200047,16.200047,0,0,0,0,0,0,0,0,4.3743882,6.2343235,37.13,55.9,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,53,1004870.3,722756.13,117354.86,0,2557.9758 -247,297,547,-9,-9,546,1,0,21,0,0,0,2,2,1,0,4,7.3956647,7.3272529,0,0,0,-984.79327,-9,1,1,2019,11,0,48,0,1,2,1,3.078913,3.078913,0,0,0,0,0,0,0,0,2.0618939,0,46,58,-9,-9,7,1,1,0,0,1,1,3,1,685,411000.53,-17056.715,0,0,753.47717 -248,298,548,549,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,6.8461866,6.8256178,9,1,-11.19657,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,7.282475,6.7948318,57.7,55.88,56.13,32.19,8.333333333333334,2,3,0,0,0,2,2,1,322.5,331196.81,143439.2,185417.53,43161.996,1493.3113 -248,298,549,548,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,2.735815,2.563942,9,-1,68.372421,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8225274,2.6157825,56.13,32.19,57.7,55.88,10,4,5,0,0,0,2,2,1,322.5,331196.81,143439.2,185417.53,43161.996,1493.3113 -249,299,550,-9,552,551,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.07648,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 -249,299,551,552,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.403882,7.847445,0,7,-2,38.686275,0,1,2,2019,11,0,42,45,1,0,0,8.4148073,8.4148073,0,0,0,0,0,1,1,0,6.0013237,0,39.33,60.15,48.96,50.54,8.333333333333334,1,1,0,0,12,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 -249,299,552,551,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.3975115,8.6321497,0,7,2,10.103409,0,-9,-9,2019,6,0,45,45,1,0,0,13.66372,13.66372,0,0,0,0,0,1,1,0,0,0,48.96,50.54,39.33,60.15,8.333333333333334,1,1,0,0,12,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 -249,299,553,-9,552,551,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.04443,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,533.75,777264.75,388815.75,258023.11,136731.11,3826.5459 -250,300,554,555,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,0,0,0,4,8,-8.5420952,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.9786978,0,61.01,53.18,60,56.43,8.333333333333334,1,1,0,0,7,6,4,1,595,-205915.25,121274.05,51106.68,28271.734,4723.873 -250,300,555,554,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,8.7185564,8.9149513,0,4,-8,111.32442,0,-9,-9,2019,6,0,38,40,1,0,0,20.935423,20.935423,0,0,0,0,0,1,1,0,0,0,60,56.43,61.01,53.18,10,1,1,0,0,3,6,4,1,595,-205915.25,121274.05,51106.68,28271.734,4723.873 -251,301,556,-9,558,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-882.90228,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,13,2,0,537.66669,0,-29248.992,0,0,2020.9967 -251,301,557,-9,558,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1001.1005,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,2,0,537.66669,0,-29248.992,0,0,2020.9967 -251,301,558,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.3672485,7.5920091,0,0,0,-891.83392,0,2,1,2019,11,0,36,24,1,0,0,4.7910337,4.7910337,0,0,0,0,0,1,1,0,0,0,50.65,53.71,-9,-9,8.333333333333334,1,1,0,0,9,13,2,0,537.66669,0,-29248.992,0,0,2020.9967 -252,302,559,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,3.8879676,4.2486815,0,0,-970.06219,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.9905486,0,0,1,1,0,0,3.9756472,52.89,38.82,-9,-9,10,1,1,0,0,0,11,2,0,294,506762.59,1864.6746,108635.54,0,1401.9407 -253,303,560,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,6.0752454,5.835084,0,0,-1001.0466,0,3,3,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,6.0795331,41.96,21.68,-9,-9,3.333333333333333,1,1,0,0,1,5,2,0,1753,97744.594,149386.34,0,0,1207.5935 -254,304,561,562,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,5.5445228,5.5030136,7,-5,-95.56424,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,.1424133,27,1,1,0,6.0333862,5.2117891,30.68,20.24,57.16,56.15,0,1,1,0,0,0,10,3,1,291.5,687377.75,329206.47,184955.22,0,2707.1047 -254,304,562,561,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,7.1125803,7.7074213,7.218327,7,5,75.369751,0,3,3,2019,9,1,40,40,1,1,0,4.5730176,4.5730176,0,0,0,0,0,1,1,0,0,6.8593392,57.16,56.15,30.68,20.24,8.333333333333334,1,1,0,0,7,10,3,1,291.5,687377.75,329206.47,184955.22,0,2707.1047 -254,305,563,-9,561,562,1,0,31,0,0,0,3,3,-9,0,4,7.4507051,7.5004554,0,0,0,-1110.5494,0,2,2,2019,11,0,35,37,1,2,1,7.8414664,7.8414664,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,1,724,272525.09,106631.86,0,0,431.8291 -255,306,564,-9,565,566,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0212,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 -255,306,565,566,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,6.2264605,6.5379276,0,11,0,-24.198412,0,2,3,2019,9,0,7,0,1,0,0,10.185548,10.185548,0,0,0,0,0,0,0,0,0,0,49.35,59.64,46.63,59.72,8.333333333333334,1,1,0,0,4,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 -255,306,566,565,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.2872486,9.9326334,0,6,0,179.0869,0,2,2,2019,16,6,45,55,1,6,0,39.307602,39.307602,0,0,0,0,0,0,0,0,0,0,46.63,59.72,49.35,59.64,8.333333333333334,1,1,0,0,9,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 -255,306,567,-9,565,566,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.43732,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,717.5,607129.69,528196.5,434160.44,252674.63,5659.4819 -256,307,568,-9,571,569,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-905.62445,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 -256,307,569,571,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.2728319,8.0821381,0,8,4,60.219589,0,3,3,2019,6,0,44,44,1,0,0,10.296864,10.296864,0,0,0,0,0,1,1,0,0,0,54.28,46.43,57.06,57.76,8.333333333333334,4,2,0,0,9,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 -256,307,570,-9,571,569,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-979.2287,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 -256,307,571,569,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,8,-4,-13.215172,0,3,3,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.28,46.43,8.333333333333334,1,1,0,0,9,11,3,1,790.75,62079.77,0,194219.05,87431.25,985.67389 -257,308,572,573,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,7.615221,7.6687193,0,3,-2,4.3616195,0,1,2,2019,7,0,40,40,1,0,0,7.2204266,7.2204266,0,0,0,0,0,0,0,0,3.076803,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,6,11,5,1,210.5,78921.633,48218.164,163809.72,83351.43,3111.3372 -257,308,573,572,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.6298866,8.0986996,0,3,2,85.612152,0,-9,-9,2019,13,4,41,45,1,4,0,12.51893,12.51893,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,7,11,5,1,210.5,78921.633,48218.164,163809.72,83351.43,3111.3372 -258,309,574,575,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.7473326,8.7746277,0,8,-3,14.958297,0,2,2,2019,6,0,35,35,1,0,0,20.250059,20.250059,0,0,0,0,0,0,0,0,4.47855,0,48.18,61.8,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,1383.5,529020,133273.31,313136.25,0,6010.4424 -258,309,575,574,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.0593901,8.930151,0,8,3,5.1886454,0,3,3,2019,10,1,39,40,1,1,0,27.621408,27.621408,0,0,0,0,0,0,0,0,7.3429337,0,57.16,56.15,48.18,61.8,8.333333333333334,1,1,0,0,9,5,5,1,1383.5,529020,133273.31,313136.25,0,6010.4424 -258,310,576,-9,574,575,1,1,23,0,0,0,1,1,-9,0,4,8.6693172,8.5874643,0,0,0,-1050.6215,0,2,1,2019,12,0,42,37,1,0,1,17.155605,17.155605,0,0,0,0,0,0,0,0,1.8718513,0,51.19,52.17,-9,-9,8.333333333333334,1,1,0,0,7,5,5,1,417,-375056.72,61107.77,0,0,2721.7869 -258,311,577,-9,574,575,1,1,22,0,0,0,2,2,-9,0,4,9.1702375,8.9794931,0,0,0,-1097.679,0,2,1,2019,12,0,67,70,1,0,1,15.96175,15.96175,0,0,0,0,0,0,0,0,0,0,55.9,52.64,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,302,-149266.91,4095.3545,0,0,3513.1919 -258,312,578,-9,574,575,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1006.0535,-9,2,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,42.22,56.11,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,154,0,0,0,0,0 -259,313,579,-9,582,580,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5549,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 -259,313,580,582,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.2624941,9.2893009,0,9,-1,65.209984,-9,2,2,2019,7,0,80,0,1,0,0,15.586209,15.586209,0,0,0,0,0,0,0,0,2.9192512,0,40.52,62.31,45.91,59.89,8.333333333333334,1,1,0,0,11,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 -259,313,581,-9,582,580,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5348,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 -259,313,582,580,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,9,1,121.17344,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,40.52,62.31,6.666666666666667,1,1,0,0,8,9,5,1,1158,267555.38,62287.293,274735.22,89535.664,3505.689 -260,314,583,584,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,0,0,7,-8,-152.51598,0,2,2,2019,14,4,0,55,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,44.63,18.77,52,55,3.333333333333333,1,1,0,1,11,9,4,0,223.5,1503652.5,755425.63,345191.13,0,1535.6929 -260,314,584,583,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.608182,8.3327932,0,3,8,-42.436146,0,-9,-9,2019,9,0,50,40,1,1,0,10.493664,10.493664,0,0,0,0,0,1,1,0,5.2557259,0,52,55,44.63,18.77,8,1,1,0,0,1,9,4,0,223.5,1503652.5,755425.63,345191.13,0,1535.6929 -261,315,585,-9,-9,587,1,1,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-1034.1445,-9,-9,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,44.71,59.44,-9,-9,8.333333333333334,1,1,1,0,0,10,1,0,918,1469.953,0,0,0,0 -261,316,586,-9,-9,587,1,1,18,0,0,0,2,2,1,1,4,0,0,0,0,0,-957.36365,-9,-9,2,2019,16,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,47.04,49.75,-9,-9,5,1,1,1,0,0,10,2,0,2745,92996.508,0,0,0,268.54031 -261,317,587,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,5,0,0,0,0,0,-952.74402,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,64.66,50.23,-9,-9,5,1,1,0,0,0,10,1,0,748,-140327.56,0,0,0,1189.5942 -262,318,588,589,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.0632849,8.7494421,8.0973272,8,1,-133.96431,0,3,3,2019,6,0,37,37,1,0,0,13.212435,13.212435,0,0,0,0,2,1,1,0,1.1019984,8.5242987,54.79,55.86,41.5,33.13,8.333333333333334,1,1,0,0,11,5,4,1,776.5,925674.19,701948.75,179166.31,0,2612.376 -262,318,589,588,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,5.4339809,5.5978312,8,-1,45.754013,-9,3,3,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,5.3124299,41.5,33.13,54.79,55.86,1.666666666666667,1,1,1,0,1,5,4,1,776.5,925674.19,701948.75,179166.31,0,2612.376 -263,319,590,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.9503741,7.1309261,5.1123209,0,0,-1114.4882,0,2,2,2019,31,12,20,20,1,12,0,6.3718882,6.3718882,0,0,0,0,0,1,1,0,5.6103106,0,14.65,33.68,-9,-9,1.666666666666667,1,1,0,1,4,10,2,0,3715.5,-191608.02,0,0,0,2028.3147 -263,319,591,-9,590,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.79572,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,3715.5,-191608.02,0,0,0,2028.3147 -264,320,592,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,9.4736586,9.1244678,0,0,0,-937.73199,0,2,2,2019,10,0,84,86,1,0,0,17.865639,17.865639,0,0,0,0,0,0,0,0,0,0,46.82,62.33,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,622,77643.898,272351.69,110304.3,39273.961,4122.7378 -265,321,593,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.3678,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,100.08437,0,960.89001,0,0,0,0,0,0,53,44,-9,-9,8,1,1,0,0,0,6,1,0,78,415203.72,0,179043.66,0,0 -266,322,594,-9,-9,-9,1,1,58,0,1,0,1,1,-9,0,2,0,7.5226746,7.7354164,0,0,-1053.8678,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.5416555,39.6,51.43,-9,-9,3.333333333333333,2,3,0,0,1,8,3,1,381,-225952.61,48161.168,0,0,2940.6099 -267,323,595,596,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,5,4,82.77607,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,1.640757,0,0,1,1,0,0,0,49.04,42.63,52.48,54.33,8.333333333333334,1,1,0,0,5,5,2,1,381.5,335579.81,159307.52,216143.22,0,945.37585 -267,323,596,595,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,4.9074593,4.9766426,5,-4,-47.549583,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4352975,4.8315134,52.48,54.33,49.04,42.63,8.333333333333334,1,1,0,1,5,5,2,1,381.5,335579.81,159307.52,216143.22,0,945.37585 -268,324,597,598,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.4583321,8.2925539,0,10,0,57.432098,0,-9,-9,2019,13,1,43,40,1,1,0,10.771105,10.771105,0,0,0,0,7,0,0,0,3.4629273,0,47.62,56.48,41.53,63.13,8.333333333333334,1,1,0,0,11,4,5,1,1445.5,775171,309396.47,304644.44,107257.51,3860.989 -268,324,598,597,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.4663305,8.5672016,0,10,0,-43.724182,0,2,1,2019,11,0,45,42,1,0,0,15.906543,15.906543,0,0,0,0,0,0,0,0,4.0340796,0,41.53,63.13,47.62,56.48,6.666666666666667,1,1,0,0,11,4,5,1,1445.5,775171,309396.47,304644.44,107257.51,3860.989 -269,325,599,601,-9,-9,1,0,47,0,2,0,3,3,-9,0,2,0,0,0,24,-2,71.332367,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,45.2,33.91,54.45,3.333333333333333,2,3,0,1,0,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 -269,325,600,-9,599,601,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1092.9142,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 -269,325,601,599,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.1353116,7.2254639,0,24,2,-84.662781,0,3,3,2019,12,0,30,24,1,0,0,5.8287382,5.8287382,0,0,0,0,0,1,1,0,0,0,33.91,54.45,46.1,45.2,3.333333333333333,2,3,0,0,10,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 -269,325,602,-9,599,601,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.74579,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,455.75,53106.117,42542.066,112494.94,0,1769.7931 -269,326,603,-9,599,601,1,1,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-981.97656,-9,3,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,3.333333333333333,2,3,0,0,0,2,1,1,249,0,0,0,0,864.04883 -269,327,604,-9,599,601,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-976.73438,-9,3,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,2080,0,0,0,0,575.08197 -270,328,605,606,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.6495585,7.0062404,8,-1,-82.971451,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9112024,6.8111482,63.49,41.12,57.98,29.33,10,1,1,0,0,0,11,2,1,364,92658.234,166158.39,197068.42,0,2688.603 -270,328,606,605,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.4542422,6.2550702,8,1,-44.730732,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,6.9997907,0,0,1,1,0,6.2184091,6.0212522,57.98,29.33,63.49,41.12,8.333333333333334,1,1,0,0,0,11,2,1,364,92658.234,166158.39,197068.42,0,2688.603 -271,329,607,608,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.9634571,9.3185577,0,8,4,7.4645333,0,-9,-9,2019,8,0,47,46,1,0,0,22.818645,22.818645,0,0,0,0,2,0,0,0,7.530539,0,53.05,52.71,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,417,3027736.8,2242673.5,436134.13,36875.723,5015.4448 -271,329,608,607,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.4438367,7.6426549,0,25,-4,-9.1756811,0,3,3,2019,6,0,10,40,1,0,0,21.309776,21.309776,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.05,52.71,8.333333333333334,1,1,0,0,10,2,5,1,417,3027736.8,2242673.5,436134.13,36875.723,5015.4448 -272,330,609,610,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6446896,7.8458467,6,4,-101.19588,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.9660206,8.0700188,57.16,56.15,54.33,21.34,8.333333333333334,1,1,0,0,0,5,3,1,1879.5,947560.56,368315.25,24434.689,0,3676.79 -272,330,610,609,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.1730027,6.0873122,6,-4,108.77471,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,37.569523,0,0,1,1,0,6.6773233,6.6509824,54.33,21.34,57.16,56.15,8.333333333333334,1,1,0,0,2,5,3,1,1879.5,947560.56,368315.25,24434.689,0,3676.79 -273,331,611,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.5055442,7.5310197,0,0,0,-930.8761,0,-9,-9,2019,2,0,42,40,1,0,0,5.8041062,5.8041062,0,0,0,0,0,0,0,0,0,0,61.99,37.62,-9,-9,10,3,4,0,0,2,5,3,0,545,53024.121,29243.502,0,0,1272.7075 -274,332,612,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.5537062,8.7023792,0,0,0,-1065.1172,0,2,2,2019,9,0,45,45,1,0,0,12.111266,12.111266,0,0,0,0,0,0,0,0,0,0,42.8,57.28,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,201,-41675.957,99367.766,0,0,2354.2375 -275,333,613,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1018.6923,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6082331,0,56.51,36.01,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,811,395707.34,0,288013.88,0,498.59689 -276,334,614,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.276227,8.3666449,0,0,-982.18439,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9284134,8.2596865,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1364,925969.94,526347.56,301685.81,0,1427.4728 -277,335,615,616,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.8191357,9.0667076,0,8,-2,51.435902,0,2,3,2019,13,1,50,50,1,1,0,19.797245,19.797245,0,0,0,0,2,1,1,0,1.5594873,0,49.52,48.92,40.64,52.96,6.666666666666667,1,1,0,0,9,2,5,1,625.33331,93642.875,159800.36,163305.08,41339.398,3445.657 -277,335,616,615,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6756535,7.4855103,0,8,2,12.830784,0,2,3,2019,22,10,38,38,1,10,0,5.4471984,5.4471984,0,0,0,0,5.48,1,1,0,0,0,40.64,52.96,49.52,48.92,5,1,1,0,1,8,2,5,1,625.33331,93642.875,159800.36,163305.08,41339.398,3445.657 -277,335,617,-9,616,615,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.5415,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,625.33331,93642.875,159800.36,163305.08,41339.398,3445.657 -278,336,618,619,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.3747816,8.9670296,0,6,-3,45.447746,0,2,2,2019,12,0,38,36,1,0,0,16.188843,16.188843,0,0,0,0,0,0,0,0,1.9049474,0,46.33,55.93,45.91,59.89,6.666666666666667,1,1,0,0,11,10,5,1,920,611146.75,40701.094,466372.75,356449.06,3771.5669 -278,336,619,618,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.8047743,7.7192702,0,6,3,-51.720867,0,-9,-9,2019,12,2,28,45,1,2,0,10.523017,10.523017,0,0,0,0,0,0,0,0,6.7404146,0,45.91,59.89,46.33,55.93,3.333333333333333,1,1,0,0,6,10,5,1,920,611146.75,40701.094,466372.75,356449.06,3771.5669 -279,337,620,621,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5318737,9.007762,0,5,-6,-164.68605,0,-9,-9,2019,8,1,40,41,1,1,0,20.266718,20.266718,0,0,0,0,0,0,0,0,0,0,46.93,46.03,49.35,59.64,8.333333333333334,1,1,0,0,4,10,5,0,3329.5,11874.152,-19791.043,0,0,4143.0723 -279,337,621,620,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.4122143,8.1546173,0,5,6,21.404793,0,2,2,2019,13,2,40,38,1,2,0,9.4144468,9.4144468,0,0,0,0,0,0,0,0,2.1375978,0,49.35,59.64,46.93,46.03,8.333333333333334,1,1,0,0,11,10,5,0,3329.5,11874.152,-19791.043,0,0,4143.0723 -280,338,622,623,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,6,0,212.88606,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,2,0,0,0,0,0,49,48,29.55,56.56,7,1,1,0,0,0,12,3,1,388.5,819747.06,586744.5,95442.469,0,1854.1609 -280,338,623,622,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.2691355,8.3051281,0,6,0,28.293379,0,3,3,2019,18,6,37,37,1,6,0,9.6392994,9.6392994,0,0,0,0,0,0,0,0,7.4357252,0,29.55,56.56,49,48,3.333333333333333,1,1,0,0,7,12,3,1,388.5,819747.06,586744.5,95442.469,0,1854.1609 -280,339,624,-9,622,623,1,0,25,0,0,0,2,2,-9,0,4,7.5293841,7.1568718,0,0,0,-1063.115,0,2,2,2019,14,2,35,37,1,2,1,4.6890078,4.6890078,0,0,0,0,0,0,0,0,0,0,44.53,56.37,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,294,-320957.53,0,0,0,788.17755 -280,340,625,-9,622,623,1,1,22,0,0,0,2,2,-9,0,4,7.3362131,7.3102913,0,0,0,-1018.6444,0,2,2,2019,12,1,37,-9,1,1,1,4.2392006,4.2392006,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,0,1,1,0,0,5,12,3,1,283,249469.8,0,0,0,470.65652 -281,341,626,630,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.927824,7.897016,0,23,-1,-46.814495,0,2,2,2019,6,0,40,40,1,0,0,9.1345921,9.1345921,0,0,0,0,0,0,0,0,0,0,48.28,60.18,33.1,64.88,8.333333333333334,3,4,0,0,6,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 -281,341,627,-9,626,630,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.8164,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 -281,341,628,-9,626,630,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-975.32318,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 -281,341,629,-9,626,630,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1067.7764,-9,2,2,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,10,3,4,0,0,0,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 -281,341,630,626,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.3163528,7.9463677,0,25,1,-27.426737,0,3,2,2019,7,0,25,50,1,0,0,24.408607,24.408607,0,0,0,0,0,0,0,0,0,0,33.1,64.88,48.28,60.18,3.333333333333333,3,4,0,0,9,2,4,0,956.59998,884126.31,838096.13,120176.4,85290.273,3191.5837 -282,342,631,632,-9,-9,1,1,48,0,0,0,1,1,-9,1,3,0,0,0,21,-1,32.730785,0,2,-9,2019,5,0,0,42,3,0,0,0,0,0,0,0,0,0,1,1,0,1.522595,0,56.27,42.92,48.89,34.25,8.333333333333334,1,1,0,0,8,6,3,1,802,1032581.2,558093.88,100009.02,15920.038,293.09607 -282,342,632,631,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.0879602,8.0794802,0,21,1,-14.657282,0,3,3,2019,12,1,24,23,1,1,0,14.528337,14.528337,0,0,0,0,2,1,1,0,2.0623844,0,48.89,34.25,56.27,42.92,6.666666666666667,1,1,0,0,5,6,3,1,802,1032581.2,558093.88,100009.02,15920.038,293.09607 -283,343,633,635,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,9.6549473,9.5172138,0,15,-8,-101.70478,0,2,1,2019,12,2,52,57,1,2,0,29.312536,29.312536,0,0,0,0,0,0,0,0,4.3299437,0,54.77,55.87,48.87,58.55,8.333333333333334,1,1,0,0,9,8,5,1,843.66669,631226.69,259011.78,453116.06,231740.28,7307.9971 -283,343,634,-9,635,633,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.19928,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,843.66669,631226.69,259011.78,453116.06,231740.28,7307.9971 -283,343,635,633,-9,-9,1,0,47,1,1,0,2,2,-9,0,4,8.7094889,8.7833395,0,7,8,34.872066,0,-9,-9,2019,10,0,34,45,1,0,0,22.312672,22.312672,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.77,55.87,8.333333333333334,1,1,0,0,6,8,5,1,843.66669,631226.69,259011.78,453116.06,231740.28,7307.9971 -284,344,636,637,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2379227,7.9657221,0,7,0,-88.794487,0,1,2,2019,5,0,31,24,1,0,0,12.329442,12.329442,0,0,0,0,0,0,0,0,0,0,53.71,49.66,60.12,54.8,8.333333333333334,1,1,0,0,8,5,3,0,607,1668745,1307442.9,66614.688,0,1688.9817 -284,344,637,636,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,6.2212334,6.1010928,0,7,0,-3.1289389,0,2,2,2019,8,0,72,72,1,0,0,.79265863,.79265863,0,0,0,0,0,0,0,0,0,0,60.12,54.8,53.71,49.66,6.666666666666667,1,1,0,0,8,5,3,0,607,1668745,1307442.9,66614.688,0,1688.9817 -284,345,638,-9,636,637,1,1,21,0,0,0,2,2,-9,0,5,7.9827623,7.9702044,0,0,0,-1081.5007,0,1,2,2019,11,0,43,40,1,0,1,6.4344764,6.4344764,0,0,0,0,0,0,0,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,962,61997.059,0,0,0,1170.4261 -285,346,639,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.1488128,5.3147178,0,0,-1007.8022,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.7569251,5.4079404,62.27,48.47,-9,-9,0,1,1,0,0,0,12,2,1,473,68331.688,-85827.258,0,0,838.11469 -286,347,640,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.8032799,7.6638598,0,0,0,-998.48846,0,-9,-9,2019,15,4,63,15,1,4,0,4.8574238,4.8574238,0,0,0,0,0,1,1,0,0,0,33.95,54.89,-9,-9,5,1,1,0,1,11,11,3,0,178,23270.535,0,0,0,1085.6733 -287,348,641,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.0832767,8.020586,0,0,0,-1033.8433,0,-9,-9,2019,12,0,40,59,1,0,0,9.7014875,9.7014875,0,0,0,0,0,0,0,0,0,0,42.19,59.15,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,669,92755.648,22148.143,69744.75,143902.73,1377.6583 -288,349,642,644,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.3105183,8.2000084,0,2,2,.64539278,0,2,2,2019,10,0,47,37,1,0,0,9.7746429,9.7746429,0,0,0,0,0,1,1,0,0,0,52.57,52.89,54.79,55.86,5,1,1,0,0,7,13,4,0,1577.3334,69887.211,-26701.754,63300.371,29296.471,2473.8091 -288,349,643,-9,644,642,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2064,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,0,1577.3334,69887.211,-26701.754,63300.371,29296.471,2473.8091 -288,349,644,642,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.4483395,7.4002147,0,2,-2,39.430885,0,-9,-9,2019,9,0,40,16,1,0,0,5.4138374,5.4138374,0,0,0,0,0,1,1,0,.96253353,0,54.79,55.86,52.57,52.89,8.333333333333334,1,1,0,0,10,13,4,0,1577.3334,69887.211,-26701.754,63300.371,29296.471,2473.8091 -289,350,645,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.9724002,5.5824676,0,0,-1116.9905,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.869465,5.3261724,59.88,48.04,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,309,537084.38,-22819.656,296317.03,85722.656,1380.8982 -290,351,646,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.1163349,8.2906618,0,0,-1009.5501,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,4.5222802,8.1584082,45.72,52.23,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1841,1137601.5,566649.06,0,0,1792.8547 -291,352,647,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.6283975,5.7988772,0,0,-897.53662,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.0564866,5.8456144,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,455,1041478.5,432173.47,0,0,791.76819 -292,353,648,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5196209,8.6015673,0,0,0,-949.99927,0,3,2,2019,8,0,30,21,1,0,0,15.457574,15.457574,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,279,594112.31,120986.55,473416.59,61718.707,1520.1034 -293,354,649,650,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.169733,7.7763858,43,-1,44.8069,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5468912,8.1420431,35.8,59.5,31.54,38.42,5,1,1,0,0,3,9,3,1,485,1908560.8,1461089.9,258555.41,0,2267.0186 -293,354,650,649,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,6.9153624,6.8950529,43,1,-38.152061,0,2,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,5.8479633,6.9114332,31.54,38.42,35.8,59.5,3.333333333333333,1,1,0,0,6,9,3,1,485,1908560.8,1461089.9,258555.41,0,2267.0186 -294,355,651,652,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,4.3775373,4.5935626,43,5,-213.48894,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,2.9780247,0,0,1,1,0,0,4.518167,44.84,49.01,53,47,5,1,1,0,0,0,9,2,1,617.5,681993.63,-46047.121,389741.19,0,1273.9895 -294,355,652,651,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.4140358,6.5956144,43,-5,-107.0624,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.1596098,53,47,44.84,49.01,8,1,1,0,0,0,9,2,1,617.5,681993.63,-46047.121,389741.19,0,1273.9895 -295,356,653,655,-9,-9,1,1,47,0,2,0,3,3,-9,1,2,8.0662766,8.1154518,0,18,1,-76.926666,0,3,3,2019,12,0,40,0,1,0,0,9.4212999,9.4212999,0,0,0,0,0,1,1,0,0,0,31.73,48.25,60.13,41.39,3.333333333333333,2,3,0,0,9,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 -295,356,654,-9,655,653,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.97052,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 -295,356,655,653,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.9610229,7.8533735,0,18,-1,12.41847,0,2,2,2019,6,0,32,30,1,0,0,9.1019592,9.1019592,0,0,0,0,0,1,1,0,0,0,60.13,41.39,31.73,48.25,10,1,1,0,0,6,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 -295,356,656,-9,655,653,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.61902,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,0,565.25,236571.47,192697.63,252898.45,0,2993.1589 -296,357,657,-9,658,659,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-992.24066,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,2,0,615,292550.66,209764.5,168398.38,0,2574.9697 -296,357,658,659,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,7.2431216,7.009861,0,34,-24,67.293518,0,-9,-9,2019,11,2,16,16,1,2,0,8.74471,8.74471,0,0,0,0,0,1,1,0,0,0,48.15,39.86,62.49,55.09,6.666666666666667,4,2,0,0,13,6,2,0,615,292550.66,209764.5,168398.38,0,2574.9697 -296,357,659,658,-9,-9,1,1,77,0,1,0,2,2,-9,0,4,0,0,0,34,24,-118.94217,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,48.15,39.86,10,1,1,0,0,10,6,2,0,615,292550.66,209764.5,168398.38,0,2574.9697 -296,358,660,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1034.1835,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.46,56.16,-9,-9,10,4,2,0,0,2,6,1,0,505,0,0,0,0,686.70953 -297,359,661,664,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.6302729,9.8514996,0,14,2,.46804565,0,1,1,2019,14,4,50,48,1,4,0,35.417004,35.417004,0,0,0,0,0,0,0,0,1.6603495,0,48.87,58.55,55.3,55.6,8.333333333333334,1,1,0,0,12,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 -297,359,662,-9,664,661,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.00415,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 -297,359,663,-9,664,661,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.8364,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 -297,359,664,661,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,0,0,0,14,-2,18.691219,0,1,1,2019,8,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,7.077282,0,55.3,55.6,48.87,58.55,6.666666666666667,4,2,1,0,12,2,5,1,1201,1056023.3,435340.38,518957.44,194395.41,10661.31 -298,360,665,666,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.4599752,6.6060691,53,0,-38.43391,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,6.3230629,35.79,44.37,51,45,6.666666666666667,1,1,0,0,0,5,2,1,597.5,430783.78,0,144945.69,0,1611.1768 -298,360,666,665,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.1565952,3.9104004,53,0,-8.5299654,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.27120715,3.9517071,51,45,35.79,44.37,8,1,1,0,0,0,5,2,1,597.5,430783.78,0,144945.69,0,1611.1768 -299,361,667,668,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.1037083,7.3324919,0,26,8,-131.31093,0,2,3,2019,9,0,21,29,1,0,0,7.3124728,7.3124728,0,0,0,0,0,0,0,0,0,0,61.04,39.41,58.3,52.91,6.666666666666667,1,1,0,0,7,5,5,1,813,796456,675992.88,0,0,4708.5713 -299,361,668,667,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.2676392,9.4961147,0,25,-8,10.471404,0,2,2,2019,7,0,48,46,1,0,0,25.1299,25.1299,0,0,0,0,0,0,0,0,0,0,58.3,52.91,61.04,39.41,8.333333333333334,1,1,0,0,8,5,5,1,813,796456,675992.88,0,0,4708.5713 -299,362,669,-9,667,668,1,1,21,0,0,0,2,2,-9,0,4,7.7014308,7.7819977,0,0,0,-990.3183,0,3,2,2019,7,0,40,40,1,0,1,7.2503657,7.2503657,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,5,3,1,2704,198832.84,0,0,0,375.6077 -300,363,670,672,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.3664007,7.949626,0,3,3,-24.684589,0,1,2,2019,7,0,35,56,1,0,0,8.1954746,8.1954746,0,0,0,0,0,1,1,0,3.6646614,0,60.02,56.42,46.28,62.6,1.666666666666667,1,1,0,0,12,2,5,1,435.33334,1145365.1,667969.75,301272.44,0,4044.0408 -300,363,671,-9,670,672,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1049.9612,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,435.33334,1145365.1,667969.75,301272.44,0,4044.0408 -300,363,672,670,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,8.9247484,8.6533432,0,3,-3,50.93618,0,-9,-9,2019,11,0,57,57,1,0,0,17.341913,17.341913,0,0,0,0,7,1,1,0,3.5459371,0,46.28,62.6,60.02,56.42,8.333333333333334,1,1,0,0,12,2,5,1,435.33334,1145365.1,667969.75,301272.44,0,4044.0408 -301,364,673,-9,674,-9,1,1,49,0,0,0,3,3,-9,0,4,7.2985325,7.5791812,0,0,0,-985.02972,0,3,3,2019,6,0,55,45,1,0,0,3.2975786,3.2975786,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,1,3,0,285,78611.578,50160.223,0,0,1261.6782 -301,365,674,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-997.7348,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,57,48,-9,-9,10,1,1,0,0,0,1,1,0,292,448318.72,0,0,0,420.91751 -302,366,675,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,7.802238,7.9663157,0,0,0,-1022.7949,0,1,2,2019,16,5,37,38,1,5,0,9.2704077,9.2704077,0,0,0,0,0,0,0,0,0,0,28.04,61.63,-9,-9,3.333333333333333,1,1,0,0,9,1,4,1,156,-285104.25,51127.777,0,0,866.49908 -303,367,676,677,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.0738702,5.3898611,53,-4,90.42746,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,7.9530582,0,0,1,1,0,2.405741,5.3666487,50.63,50.99,52.43,55.57,8.333333333333334,1,1,0,0,0,4,2,1,1593.5,458215.47,327821.69,0,0,1683.7124 -303,367,677,676,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.1504002,6.7357402,53,4,-105.21445,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2898502,7.1114464,52.43,55.57,50.63,50.99,10,1,1,0,0,0,4,2,1,1593.5,458215.47,327821.69,0,0,1683.7124 -304,368,678,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.748064,7.8610177,0,0,0,-930.49268,0,3,2,2019,15,3,18,18,1,3,0,12.401979,12.401979,0,0,0,.73706979,0,1,1,0,0,0,50.46,45.8,-9,-9,8.333333333333334,1,1,0,0,13,9,3,1,365,-386862.91,-74028.266,0,0,1387.2692 -304,369,679,-9,678,-9,1,0,21,0,0,0,2,2,-9,0,3,7.9855142,8.0230436,0,0,0,-1053.0243,0,2,-9,2019,9,0,38,37,1,0,1,6.4729142,6.4729142,0,0,0,0,0,1,1,0,1.2199897,0,37.46,55.55,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,424,-227474.95,108055.77,0,0,1384.319 -304,370,680,-9,678,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-933.82776,0,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,735,0,0,0,0,0 -305,371,681,682,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.8581171,8.5025854,0,1,0,11.259025,-9,-9,-9,2019,13,1,35,0,1,1,0,17.055977,17.055977,0,0,0,0,0,0,0,0,0,0,51.16,44.72,43.27,38.86,5,1,1,0,0,11,5,5,1,672.5,675404.25,155201.86,179000.88,0,3498.8174 -305,371,682,681,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0422001,8.1481457,0,3,0,-162.32152,-9,-9,2,2019,36,12,37,0,1,12,0,9.6898699,9.6898699,0,0,0,0,0,0,0,0,0,0,43.27,38.86,51.16,44.72,0,1,1,0,1,11,5,5,1,672.5,675404.25,155201.86,179000.88,0,3498.8174 -306,372,683,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.8966413,7.7912359,0,0,-1028.7424,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.7250304,8.1957483,46.22,47.77,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,794,249606.3,202049.08,159785.52,0,1614.8982 -307,373,684,685,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,24,-1,0,-9,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,122.95388,0,0,1,1,0,0,0,16.04,23.99,50.16,32.82,0,1,1,0,0,0,10,1,1,942.5,233387.8,0,83793.93,0,1712.2417 -307,373,685,684,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,24,1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.1647296,0,50.16,32.82,16.04,23.99,8.333333333333334,1,1,0,0,0,10,1,1,942.5,233387.8,0,83793.93,0,1712.2417 -308,374,686,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.9518938,5.6057549,0,0,-1046.5591,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.82392049,5.7307811,35.15,41.24,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1934,187599.61,123573.37,0,0,682.10974 -309,375,687,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.4864454,5.2540298,0,0,-1094.7808,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.2828894,52,48,-9,-9,7,1,1,0,1,0,7,2,1,124,845155.19,151150.97,677378.38,0,1752.3516 -310,376,688,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,0,0,-933.9939,0,3,2,2019,28,12,0,8,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,34.99,-9,-9,3.333333333333333,2,3,0,1,2,5,1,1,1042,-186787.66,0,0,0,899.98236 -310,376,689,-9,688,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1066.9679,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,1,1,1042,-186787.66,0,0,0,899.98236 -310,377,690,-9,688,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-933.02094,-9,2,-9,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,49.69,52.99,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,704,285080.06,0,0,0,-51.671387 -311,378,691,692,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,0,0,0,3,6,-34.905762,1,1,2,2019,8,1,0,40,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.3,55.73,44.19,58.01,10,1,1,0,0,7,8,4,1,802,224534.47,0,282904.41,112728.19,3998.6899 -311,378,692,691,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,9.0253878,8.6986341,0,3,-6,57.497066,0,-9,-9,2019,12,3,40,43,1,3,0,22.00349,22.00349,0,0,0,0,0,1,1,0,2.9702988,0,44.19,58.01,47.3,55.73,8.333333333333334,1,1,0,0,2,8,4,1,802,224534.47,0,282904.41,112728.19,3998.6899 -312,379,693,695,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,8.5332556,8.4742546,0,23,-4,70.007195,0,-9,-9,2019,9,0,42,30,1,0,0,9.3680182,9.3680182,0,0,0,0,0,1,1,0,0,0,51.13,50.73,38.74,42.83,8.333333333333334,1,1,0,0,8,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 -312,379,694,-9,693,695,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1033.4225,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 -312,379,695,693,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.7448139,8.6596918,0,23,4,-80.718941,0,3,3,2019,21,7,37,37,1,7,0,14.77529,14.77529,0,0,0,0,0,1,1,0,0,0,38.74,42.83,51.13,50.73,3.333333333333333,1,1,0,0,8,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 -312,379,696,-9,693,695,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.3167,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,1025.5,394485.06,242578.61,386955.75,191314.78,4090.9258 -312,380,697,-9,693,695,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1084.7402,-9,1,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,11,1,1,401,82594.313,0,0,0,0 -313,381,698,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.8687291,7.6028414,0,0,0,-974.49518,0,2,3,2019,11,1,26,29,1,1,0,13.036074,13.036074,0,0,0,0,0,1,1,0,0,0,62.27,42.94,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,359,290958.78,-16366.493,0,0,1423.5002 -314,382,699,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,7.4915943,7.684835,0,0,-888.9895,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5343637,43.56,46.39,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,266,218848.58,-87206.477,140045.78,0,1808.3647 -315,383,700,701,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.7101173,6.0933232,7,5,-61.783764,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,125.53006,0,0,1,1,0,0,5.8180308,50.06,43.34,57.16,56.15,10,1,1,0,0,3,7,2,1,550.5,216113.61,31176.25,326181.13,0,1915.0608 -315,383,701,700,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.0685334,5.0647206,32,-5,-19.200769,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.4228611,5.1116977,57.16,56.15,50.06,43.34,8.333333333333334,1,1,0,0,0,7,2,1,550.5,216113.61,31176.25,326181.13,0,1915.0608 -316,384,702,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-828.86694,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,9,1,1,524,-197193.91,0,0,0,760.10864 -316,385,703,-9,702,-9,1,1,60,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1059.7615,-9,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55,53,-9,-9,8,1,1,0,0,0,9,1,1,278,-20074.422,24170.293,0,0,797.05176 -317,386,704,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,7.2194371,7.5503707,0,0,-942.92957,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.0909679,7.3902392,58.3,47.38,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,878,296017.34,-5627.4199,0,0,1445.99 -317,387,705,-9,704,-9,1,1,39,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1095.3201,-9,1,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,1395,-404636.28,0,0,0,0 -318,388,706,-9,709,707,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7498,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 -318,388,707,709,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.7835855,7.4432368,0,1,9,12.983435,-9,-9,-9,2019,6,1,30,0,1,1,0,6.0150895,6.0150895,0,0,0,0,0,0,0,0,0,0,39.54,38.7,28.65,44.86,6.666666666666667,3,4,0,0,6,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 -318,388,708,-9,709,707,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1102.4332,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 -318,388,709,707,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.063139,9.1252317,0,1,0,-39.327522,-9,2,2,2019,7,1,38,0,1,1,0,20.186689,20.186689,0,0,0,0,0,0,0,0,.76544517,0,28.65,44.86,39.54,38.7,0,3,4,0,0,9,8,4,1,273,436883.13,86976.422,467172.5,0,4639.7739 -318,389,710,-9,709,707,1,1,21,0,2,0,2,2,-9,0,5,2.0429547,1.9476123,0,0,0,-1055.5405,-9,1,2,2019,9,0,40,0,1,0,1,.016627437,.016627437,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,613,-260791.38,11156.915,0,0,-202.21034 -318,390,711,-9,709,707,1,0,19,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1064.1974,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,35.44,38.08,-9,-9,1.666666666666667,3,4,0,0,0,8,1,1,196,-313027.94,0,0,0,0 -319,391,712,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.1172905,8.0705137,0,0,0,-920.42084,0,2,2,2019,10,0,30,30,1,0,0,12.485254,12.485254,0,0,0,0,0,1,1,0,6.3756199,0,35.53,52.76,-9,-9,3.333333333333333,1,1,0,0,9,4,4,1,617,303569.03,65374.375,0,0,1614.7365 -320,392,713,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,5.3563271,5.3150024,0,0,-1117.1567,-9,3,3,2019,13,2,0,0,4,2,0,0,0,1,5.7132425,5.3819737,0,0,1,1,0,4.0239272,5.7605186,50.8,14.81,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,557,0,0,0,0,3281.4478 -321,393,714,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1010.2048,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,61.4,54.41,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,404,10711.784,0,0,0,1255.7441 -322,394,715,716,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.7470002,7.5533147,0,13,-1,-41.847435,0,2,2,2019,12,1,20,20,1,1,0,12.902366,12.902366,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,39.38,52.68,6.666666666666667,1,1,0,0,9,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 -322,394,716,715,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.5531282,8.2117815,0,13,1,13.635687,0,1,2,2019,11,0,43,43,1,0,0,10.519272,10.519272,0,0,0,0,0,1,1,0,0,0,39.38,52.68,35.61,65.82000000000001,6.666666666666667,1,1,0,0,12,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 -322,394,717,-9,715,716,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.0697,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 -322,394,718,-9,715,716,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0085,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,943.5,103200.81,30021.418,304814.97,100852.58,2591.792 -323,395,719,720,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.8969188,6.8964243,56,2,40.357025,0,3,3,2019,13,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,1.3990476,6.8941398,54.86,21.07,52,46,6.666666666666667,1,1,0,0,6,9,2,1,642,674994.13,24022.545,478163.06,0,2404.668 -323,395,720,719,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-2,6.075459,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.5255418,0,52,46,54.86,21.07,8,1,1,0,0,0,9,2,1,642,674994.13,24022.545,478163.06,0,2404.668 -324,396,721,-9,722,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.7264,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,844.33331,-126859.52,-1129.1016,0,0,2208.4565 -324,396,722,-9,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.3361573,7.4922781,0,0,0,-979.57819,0,2,2,2019,25,11,25,29,1,11,0,8.3184023,8.3184023,0,0,0,0,0,1,0,1,0,0,38.04,58.33,-9,-9,5,1,1,0,1,9,2,2,0,844.33331,-126859.52,-1129.1016,0,0,2208.4565 -324,396,723,-9,722,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.48334,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,0,844.33331,-126859.52,-1129.1016,0,0,2208.4565 -325,397,724,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.4797406,6.4484353,0,0,-1091.8521,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3194656,6.7356791,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,800,448643.72,85483.688,0,0,1439.5906 -326,398,725,727,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,0,0,0,6,-7,-63.022469,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.8445878,0,49,56,42.33,53.39,7,4,5,0,0,0,6,5,1,971,598809.75,249646.47,569605.44,301701.66,5615.2886 -326,398,726,-9,725,727,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.79413,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,971,598809.75,249646.47,569605.44,301701.66,5615.2886 -326,398,727,725,-9,-9,1,1,45,0,1,0,3,3,-9,0,3,9.1233759,9.3516283,0,6,7,-31.513571,0,-9,-9,2019,10,0,42,45,1,0,0,23.640272,23.640272,0,0,0,0,0,1,1,0,1.102668,0,42.33,53.39,49,56,6.666666666666667,4,2,0,0,7,6,5,1,971,598809.75,249646.47,569605.44,301701.66,5615.2886 -327,399,728,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.1255465,8.1482306,0,0,0,-1042.3181,0,2,2,2019,10,0,38,38,1,0,0,10.538994,10.538994,0,0,0,0,0,0,0,0,0,0,62.11,45.63,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,347,-168278.56,-20895.191,0,0,1598.6733 -328,400,729,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,5.9263625,5.8065338,0,0,-1000.7307,0,-9,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,5.7262421,42.44,52,-9,-9,5,1,1,0,0,0,9,2,1,659,255551.95,-106719.61,0,0,625.93311 -329,401,730,731,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.089426,8.2608385,4.8317132,27,2,-59.611893,0,-9,-9,2019,12,0,44,44,1,0,0,8.575531,8.575531,0,0,0,0,0,0,0,0,.8706699,5.2150974,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,12,5,5,1,439,617609.56,319148.16,409214.25,173516.75,3995.1836 -329,401,731,730,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.4409304,8.1868105,5.1364217,27,-2,48.434879,0,3,3,2019,8,0,34,34,1,0,0,14.932675,14.932675,0,0,0,0,0,0,0,0,0,5.3230848,60.29,52.11,54.2,57.49,10,1,1,0,0,12,5,5,1,439,617609.56,319148.16,409214.25,173516.75,3995.1836 -330,402,732,733,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,7,-6,34.761597,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.07,23.43,41.29,23.65,8.333333333333334,1,1,0,0,3,5,2,0,435.5,226695.34,-11812.445,0,0,1827.8953 -330,402,733,732,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,3.0528195,3.7514277,7,6,-13.187428,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,0,3.398349,41.29,23.65,38.07,23.43,1.666666666666667,1,1,0,0,0,5,2,0,435.5,226695.34,-11812.445,0,0,1827.8953 -330,403,734,-9,732,733,1,0,28,0,0,0,3,3,-9,1,2,0,0,0,0,0,-868.57336,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.34,37.93,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,1352,-453809.22,0,0,0,836.48993 -331,404,735,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.7775741,6.6737576,0,0,-993.98511,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.3239573,6.8047757,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,92,375003.47,145149.23,0,0,1465.7133 -331,405,736,-9,735,-9,1,1,53,0,0,0,2,2,-9,0,2,8.2091494,8.2522001,0,0,0,-1046.9011,0,3,-9,2019,10,0,35,35,1,0,0,10.851813,10.851813,0,0,0,0,14.5,1,1,0,0,0,45,40,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,347,454750.56,32474.939,111165.93,0,1168.8867 -332,406,737,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-959.50415,-9,3,2,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.54,32.66,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,262,-2456.9673,0,0,0,268.901 -332,407,738,-9,737,-9,1,1,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1041.36,-9,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,0,13,2,0,451,111606.3,0,0,0,984.67676 -333,408,739,740,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2022276,8.0818443,0,5,1,11.194272,-9,-9,-9,2019,10,0,40,0,1,1,0,9.9135609,9.9135609,0,0,0,0,0,0,0,0,0,0,48,59,36.94,58.61,7,1,1,0,0,1,5,4,1,1479,75610.742,0,0,0,2707.1133 -333,408,740,739,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7883973,8.0541811,0,5,-1,-64.724716,0,2,2,2019,21,9,36,42,1,9,0,7.401638,7.401638,0,0,0,0,0,0,0,0,1.0942069,0,36.94,58.61,48,59,3.333333333333333,1,1,0,0,5,5,4,1,1479,75610.742,0,0,0,2707.1133 -334,409,741,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,6.9186554,6.9036217,0,0,0,-962.9295,0,-9,-9,2019,5,0,17,16,1,0,0,7.0332608,7.0332608,0,0,0,0,42,1,1,0,0,0,58.56,46.45,-9,-9,6.666666666666667,1,1,0,0,12,5,2,1,1028,193734.3,5291.9141,0,0,665.00525 -334,409,742,-9,-9,741,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1057.0337,-9,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,60.36,44.07,-9,-9,10,1,1,1,0,0,5,2,1,1028,193734.3,5291.9141,0,0,665.00525 -335,410,743,744,-9,-9,1,0,44,0,0,0,1,1,-9,1,1,0,0,0,2,-6,7.3429255,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.76,35.81,52.99,51.28,0,1,1,0,0,8,1,3,0,1040.5,121040.48,62450.543,195825.83,13279.162,2070.5129 -335,410,744,743,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.2698812,8.3323956,0,2,6,-86.692276,0,-9,2,2019,8,0,38,40,1,0,0,13.197788,13.197788,0,0,0,0,2,1,0,1,0,0,52.99,51.28,19.76,35.81,6.666666666666667,1,1,0,0,11,1,3,0,1040.5,121040.48,62450.543,195825.83,13279.162,2070.5129 -335,411,745,-9,743,744,1,0,20,0,0,0,2,2,-9,0,2,6.9650984,7.136127,0,0,0,-1013.7559,0,1,3,2019,28,11,40,50,1,11,1,3.5361919,3.5361919,0,0,0,0,0,1,0,1,0,0,29.07,40.99,-9,-9,5,1,1,0,0,2,1,3,0,776,0,0,0,0,344.67041 -336,412,746,747,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.8621693,8.6738253,10,-5,-47.371513,0,-9,-9,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.6810107,8.6252928,58.72,51.29,54.77,55.87,8.333333333333334,1,1,0,0,8,9,5,1,319,229740.56,24336.6,221016.14,140785.53,4022.1401 -336,412,747,746,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.493782,7.423399,7.0618744,32,5,-10.877165,0,3,3,2019,11,0,10,10,1,0,0,9.7074137,9.7074137,0,0,0,0,0,0,0,0,3.1558154,7.0915213,54.77,55.87,58.72,51.29,8.333333333333334,1,1,0,0,13,9,5,1,319,229740.56,24336.6,221016.14,140785.53,4022.1401 -336,413,748,-9,747,746,1,1,24,0,0,0,2,2,-9,0,4,7.9321432,8.0061197,0,0,0,-996.1864,0,2,1,2019,5,0,42,44,1,0,1,8.0594797,8.0594797,0,0,0,0,0,0,0,0,3.1154501,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,1056,-2680.1943,-16433.791,0,0,829.5564 -337,414,749,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.0374775,8.2169456,0,0,0,-1048.9342,0,-9,-9,2019,11,0,42,24,1,0,0,11.212157,11.212157,0,0,0,0,0,0,0,0,0,0,46.65,55.59,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,1199,2883.1641,4223.2349,93017.516,61558.059,1980.4425 -338,415,750,751,-9,-9,1,1,67,0,2,0,3,3,-9,0,3,0,0,0,47,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,49,48,7,2,3,0,0,0,4,1,1,874,-347981.38,0,0,0,1319.7711 -338,415,751,750,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,0,0,9,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,52,48,7,2,3,0,0,0,4,1,1,874,-347981.38,0,0,0,1319.7711 -338,416,752,-9,754,753,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.4689,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 -338,416,753,754,751,750,1,1,39,0,2,0,2,2,-9,0,4,7.8119721,7.7384048,0,6,2,-22.168102,0,3,3,2019,10,0,8,8,1,1,0,32.851128,32.851128,0,0,0,0,0,1,1,0,0,0,51,57,48,56,7,2,3,0,0,1,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 -338,416,754,753,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,6,-2,-13.340531,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51,57,7,2,3,1,0,0,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 -338,416,755,-9,754,753,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.71967,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,4,2,1,417.75,102312.3,-42404.387,240228.25,170401.53,1167.7477 -339,417,756,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,1,0,0,0,0,0,-985.6181,-9,-9,-9,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,54.02,45.91,-9,-9,5,2,3,0,1,0,4,1,0,2905,233497.09,0,0,0,0 -340,418,757,758,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.1292157,7.1877499,4.6007729,2,3,-5.0103106,0,-9,-9,2019,6,0,18,21,1,0,0,8.8499737,8.8499737,0,0,0,0,0,1,1,0,0,4.2755542,60.12,54.8,58.05,54.52,8.333333333333334,1,1,0,0,10,7,4,0,359.5,470971.31,45462.574,285249.41,76794.75,2743.6748 -340,418,758,757,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,7.9256344,8.1062326,0,2,-3,108.38084,0,3,3,2019,7,0,30,45,1,0,0,12.441265,12.441265,0,0,0,0,0,1,1,0,0,0,58.05,54.52,60.12,54.8,8.333333333333334,1,1,0,0,8,7,4,0,359.5,470971.31,45462.574,285249.41,76794.75,2743.6748 -341,419,759,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.90411,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,3,9,1,0,768,-129562.55,0,0,0,418.8739 -342,420,760,761,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.1892223,8.3298359,0,21,4,-115.05571,0,2,2,2019,14,2,50,53,1,2,0,8.2407751,8.2407751,0,0,0,0,0,1,1,0,0,0,47.62,56.48,42.27,49.68,6.666666666666667,1,1,0,0,11,5,3,1,704.5,-28046.219,23303.096,162111.33,82991.969,1940.556 -342,420,761,760,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,4.0068712,4.3247085,0,21,-4,-52.487629,0,3,2,2019,16,4,60,55,1,4,0,.14178808,.14178808,0,0,0,0,0,1,1,0,7.5362735,0,42.27,49.68,47.62,56.48,8.333333333333334,1,1,0,0,10,5,3,1,704.5,-28046.219,23303.096,162111.33,82991.969,1940.556 -343,421,762,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.3426762,8.7959146,0,0,0,-1032.6497,0,3,3,2019,10,1,39,37,1,1,0,13.67144,13.67144,0,0,0,0,0,0,0,0,1.6342474,0,46.86,45.14,-9,-9,3.333333333333333,3,4,0,0,12,8,5,1,1176,1187637.1,1063777.5,269040.44,76204.727,1846.7635 -344,422,763,764,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,13,0,-82.68898,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,28.42,49.52,54.09,8.333333333333334,1,1,0,0,1,12,3,0,558.5,1157239.4,869924.13,167672.28,0,1527.8342 -344,422,764,763,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.976449,7.5674348,0,13,0,-21.335442,0,3,3,2019,7,0,35,35,1,0,0,10.017917,10.017917,0,0,0,0,7,1,1,0,0,0,49.52,54.09,47,28.42,6.666666666666667,1,1,0,0,11,12,3,0,558.5,1157239.4,869924.13,167672.28,0,1527.8342 -345,423,765,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.5563469,8.5556335,0,0,0,-1041.41,0,-9,-9,2019,23,8,39,38,1,8,0,14.303116,14.303116,0,0,0,0,0,0,0,0,5.1746368,0,40.99,54.49,-9,-9,6.666666666666667,1,1,0,0,7,8,5,0,1403,275834.47,0,0,0,1896.7821 -346,424,766,767,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3664246,8.4020624,0,20,-7,-53.756565,0,3,3,2019,11,0,38,37,1,0,0,10.756728,10.756728,0,0,0,0,0,0,0,0,0,0,53.96,50.73,40.37,42.01,8.333333333333334,1,1,0,0,11,11,3,0,532,611831.06,157826.3,307413.44,0,1366.5601 -346,424,767,766,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,20,7,134.81912,0,2,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.31471619,0,40.37,42.01,53.96,50.73,6.666666666666667,1,1,1,0,0,11,3,0,532,611831.06,157826.3,307413.44,0,1366.5601 -347,425,768,-9,770,771,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-926.35797,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.0110304,0,41.17,59.31,-9,-9,10,1,1,0,1,1,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 -347,425,769,-9,770,771,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.40442,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 -347,425,770,771,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.7056313,8.8667727,0,7,-8,57.84008,0,3,2,2019,23,11,41,41,1,11,0,17.254978,17.254978,0,0,0,0,0,1,1,0,1.3866441,0,30.25,46,57.92,51.82,3.333333333333333,1,1,0,0,8,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 -347,425,771,770,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,9.0400648,9.0825949,0,7,8,-32.58279,0,2,2,2019,6,0,36,50,1,0,0,30.255154,30.255154,0,0,0,0,0,1,1,0,0,0,57.92,51.82,30.25,46,8.333333333333334,1,1,0,0,8,11,5,1,645.5,714500.5,377124.69,291556.28,247458.34,5413.4136 -348,426,772,-9,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,0,0,0,0,-948.99579,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.74,43.45,-9,-9,5,1,1,0,0,2,10,1,0,1043.5,-93505.492,0,0,0,1383.1798 -348,426,773,-9,772,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.02527,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,1,0,1043.5,-93505.492,0,0,0,1383.1798 -348,427,774,-9,772,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1017.2153,-9,3,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,41.4,55.39,-9,-9,6.666666666666667,1,1,0,0,1,10,1,0,1166,-389056.75,0,0,0,0 -349,428,775,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.694397,7.6915693,0,0,0,-997.71857,0,2,2,2019,15,3,20,20,1,3,0,13.187381,13.187381,0,0,0,0,0,1,1,0,4.9968252,0,38.4,60.75,-9,-9,5,1,1,0,0,7,10,3,1,786,541303.44,0,500398,0,1399.7405 -350,429,776,-9,778,777,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.41394,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,655.66669,1315142.9,392766.69,720158.38,0,4255.7725 -350,429,777,778,-9,-9,1,1,40,1,1,0,1,1,-9,0,4,8.6036272,8.4324589,0,3,5,-90.422096,0,-9,-9,2019,7,0,43,43,1,0,0,18.136597,18.136597,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.61,49.13,8.333333333333334,3,4,0,0,6,7,5,1,655.66669,1315142.9,392766.69,720158.38,0,4255.7725 -350,429,778,777,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.6359682,8.9783983,0,3,-5,-166.16005,0,2,2,2019,6,0,50,50,1,0,0,16.323109,16.323109,0,0,0,0,0,1,1,0,0,0,54.61,49.13,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,655.66669,1315142.9,392766.69,720158.38,0,4255.7725 -351,430,779,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,7.1247873,7.4927955,0,0,0,-1010.5587,0,1,3,2019,11,0,13,18,1,0,0,16.910177,16.910177,0,0,0,0,0,0,0,0,3.7759824,0,54,56,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,218,61328.105,92661.773,60417.742,24625.859,1387.5865 -352,431,780,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,2,0,0,0,0,0,-872.19666,-9,2,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,33.31,51.41,-9,-9,1.666666666666667,4,5,1,0,0,6,1,0,4420,222526.67,0,79231.805,0,287.71387 -353,432,781,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,9.7567415,9.1175871,0,0,0,-1105.8256,0,3,3,2019,9,0,40,40,1,0,0,37.452602,37.452602,0,0,0,0,0,0,0,0,7.1904817,0,51.73,58.82,-9,-9,8.333333333333334,4,5,0,0,10,8,5,1,437,456480.16,115041.53,485902.47,481384.56,5384.4922 -354,433,782,783,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,0,0,0,9,-13,-5.4379363,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.06,56.17,60.17,39.71,8.333333333333334,1,1,1,0,0,13,3,0,1108,415068.94,280320.69,177219.97,0,2383.6821 -354,433,783,782,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6208262,7.8194227,9,13,-13.012671,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,7.2505593,0,0,1,1,0,2.3302159,7.6575303,60.17,39.71,60.06,56.17,8.333333333333334,1,1,0,0,10,13,3,0,1108,415068.94,280320.69,177219.97,0,2383.6821 -354,434,784,-9,782,783,1,1,23,0,0,0,2,2,-9,0,4,7.6190624,7.4485064,0,0,0,-885.00793,0,3,2,2019,6,0,44,0,1,0,1,5.9505391,5.9505391,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,1278,-263037.63,0,0,0,1096.5665 -354,435,785,-9,782,783,1,0,20,0,0,0,2,2,1,0,4,7.8415942,7.5086513,0,0,0,-938.03168,-9,3,2,2019,14,3,44,0,1,3,1,5.2274857,5.2274857,0,0,0,0,0,1,1,0,0,0,32.01,59.84,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,1109,-5715.7095,-41714.129,0,0,1195.8998 -355,436,786,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.2044382,8.2324047,0,0,0,-1078.9745,-9,2,2,2019,11,0,38,0,1,0,0,8.2252522,8.2252522,0,0,0,0,0,0,0,0,3.3665593,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,194,179136.53,0,0,0,2183.1277 -356,437,787,788,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.8069553,5.5476499,42,2,-137.22165,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5666776,54.62,37.47,50.49,44.9,8.333333333333334,1,1,0,0,4,12,4,1,398.5,1239366,937007.75,207696.59,0,2682.7827 -356,437,788,787,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.6744137,8.237793,7,-2,85.460777,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2230663,50.49,44.9,54.62,37.47,8.333333333333334,1,1,0,0,7,12,4,1,398.5,1239366,937007.75,207696.59,0,2682.7827 -357,438,789,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7757134,8.1985102,0,0,0,-1051.2324,-9,2,2,2019,6,0,38,0,1,0,0,10.357584,10.357584,0,0,0,0,7,0,0,0,7.0383887,0,58.51,36.31,-9,-9,8.333333333333334,1,1,0,0,2,1,4,1,967,171273.11,16280.908,71313.805,60513.348,1918.5406 -358,439,790,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.8402925,8.2392788,0,0,0,-966.17059,0,2,2,2019,9,0,45,39,1,0,0,7.2398453,7.2398453,0,0,0,0,0,0,0,0,3.8053529,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,4,4,1,2238,-130063.91,-83834.094,0,0,1443.6622 -359,440,791,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.5145645,8.4314585,0,0,0,-1050.3993,0,1,2,2019,11,0,24,26,1,0,0,23.406778,23.406778,0,0,0,0,0,0,0,0,2.9482236,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,623,-275668.41,71548.953,216486.38,157001.33,1928.9863 -360,441,792,-9,-9,-9,1,1,48,0,0,0,1,1,1,0,5,8.2322016,8.6876688,0,0,0,-1069.283,-9,2,2,2019,9,0,40,0,1,0,0,10.191567,10.191567,0,0,0,0,0,0,0,0,6.5163708,0,41.21,54.15,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,645,-421239.47,86087.781,97996.867,39678.477,2323.6807 -361,442,793,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.5344663,7.7308211,0,0,-1011.3843,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5625222,7.6066132,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,856,624319.5,86954.742,134392.58,0,1712.0623 -362,443,794,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-957.21832,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.32,14.17,-9,-9,5,1,1,0,0,0,9,1,1,275,373459.59,298534.53,0,0,878.68158 -362,444,795,-9,794,-9,1,1,26,0,0,0,2,2,-9,0,3,8.8150415,8.8471537,0,0,0,-1001.4828,0,2,-9,2019,10,1,50,60,1,1,1,18.016741,18.016741,0,0,0,0,2,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,920,165730.7,152581.05,0,0,3520.8269 -363,445,796,798,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.2823935,8.4472761,0,4,-3,62.557743,0,2,2,2019,7,1,38,38,1,1,0,12.934772,12.934772,0,0,0,0,0,1,1,0,.15932955,0,62.61,26.17,47.66,52.33,8.333333333333334,1,1,0,0,9,5,5,1,682,442591.59,250538.78,143924.44,123163.11,3903.415 -363,445,797,-9,796,798,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-918.33398,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,682,442591.59,250538.78,143924.44,123163.11,3903.415 -363,445,798,796,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.4747324,8.6485624,0,4,3,28.577328,0,-9,-9,2019,6,0,48,52,1,0,0,14.091076,14.091076,0,0,0,0,0,1,1,0,0,0,47.66,52.33,62.61,26.17,3.333333333333333,1,1,0,0,9,5,5,1,682,442591.59,250538.78,143924.44,123163.11,3903.415 -364,446,799,800,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.0868111,8.3454351,0,10,0,-59.101875,-9,-9,-9,2019,10,0,43,0,1,0,0,7.06036,7.06036,0,0,0,0,0,0,0,0,0,0,54.77,55.87,43.89,52.61,6.666666666666667,1,1,0,0,3,4,4,1,760.5,1009155.8,471028.63,107065.73,0,2611.4551 -364,446,800,799,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.9214025,8.2259502,6.6479616,32,0,20.389944,0,3,3,2019,12,1,22,37,1,1,0,14.825027,14.825027,0,0,0,0,0,0,0,0,0,7.0818915,43.89,52.61,54.77,55.87,8.333333333333334,1,1,0,0,12,4,4,1,760.5,1009155.8,471028.63,107065.73,0,2611.4551 -365,447,801,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.9123592,8.8176241,0,18,-4,73.668167,0,2,3,2019,16,5,50,58,1,5,0,15.549694,15.549694,0,0,0,0,7,0,0,0,4.5238376,0,37.73,52.81,49.32,50.19,5,1,1,0,0,13,4,5,1,1521,138607.56,529277.5,152298.73,94682.156,1330.9127 -365,448,802,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.0720558,8.2944698,0,18,4,-10.864686,0,-9,-9,2019,22,9,44,58,1,9,0,7.6589313,7.6589313,0,0,0,0,2,0,0,0,1.348048,0,49.32,50.19,37.73,52.81,5,1,1,0,0,11,4,5,1,605,505798.38,251099.55,169299.86,69324.195,1148.3485 -366,449,803,804,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.4743319,8.5795422,0,5,4,44.653988,0,1,1,2019,5,0,37,36,1,0,0,19.127636,19.127636,0,0,0,0,0,0,0,0,0,0,60.02,56.42,43.2,59.97,10,1,1,0,0,9,8,5,1,290.5,40885.828,51916.066,0,0,3361.8096 -366,449,804,803,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4304876,8.0393667,0,5,-4,5.1767955,0,-9,-9,2019,11,0,59,49,1,0,0,8.7442198,8.7442198,0,0,0,0,0,0,0,0,2.9699705,0,43.2,59.97,60.02,56.42,6.666666666666667,1,1,0,0,3,8,5,1,290.5,40885.828,51916.066,0,0,3361.8096 -367,450,805,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.8224154,9.0711727,0,0,0,-902.11987,0,-9,-9,2019,12,2,52,55,1,2,0,12.594634,12.594634,0,0,0,0,0,0,0,0,0,0,32.63,49.75,-9,-9,6.666666666666667,4,5,0,0,5,7,5,1,672,-24098.469,-62449.539,0,0,2887.2788 -368,451,806,-9,808,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.1637,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,385,107992.53,-3923.7449,0,0,1065.9521 -368,451,807,-9,808,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.51343,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,385,107992.53,-3923.7449,0,0,1065.9521 -368,451,808,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,0,0,-866.88611,0,3,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.13,35.65,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,385,107992.53,-3923.7449,0,0,1065.9521 -369,452,809,810,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.1974297,8.2966623,46,2,45.309151,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.2827377,8.039607,44.64,37.85,53.18,51.37,6.666666666666667,2,3,0,0,2,9,3,1,1046.5,1680922.1,746198.69,307684.94,0,2866.4041 -369,452,810,809,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,46,-2,51.063705,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7365813,0,53.18,51.37,44.64,37.85,8.333333333333334,2,3,0,0,0,9,3,1,1046.5,1680922.1,746198.69,307684.94,0,2866.4041 -370,453,811,-9,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,0,6.6479182,6.4199018,0,0,-975.52448,0,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.5998006,0,41.8,47,-9,-9,8.333333333333334,1,1,1,0,0,8,2,0,407,-124376.83,0,0,0,1441.1271 -370,453,812,-9,811,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.361,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,2,0,407,-124376.83,0,0,0,1441.1271 -370,453,813,-9,811,-9,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-854.22656,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.27,54.82,-9,-9,8.333333333333334,4,2,0,1,0,8,2,0,407,-124376.83,0,0,0,1441.1271 -370,454,814,-9,811,-9,1,1,30,0,2,0,2,2,-9,0,4,7.9591804,7.6463194,0,0,0,-1057.392,0,2,2,2019,10,0,24,30,1,1,1,13.300783,13.300783,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,0,194,-372200.31,0,0,0,1216.5947 -370,455,815,-9,811,-9,1,0,24,0,2,0,2,2,-9,0,4,6.9374847,6.7496433,0,0,0,-1024.4181,0,2,-9,2019,28,12,38,30,1,12,1,3.4274449,3.4274449,0,0,0,0,0,1,1,0,0,0,27.79,65.7,-9,-9,1.666666666666667,4,2,0,0,6,8,2,0,918,120957.63,0,0,0,-20.634611 -371,456,816,817,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.8613162,6.5461326,7,3,-79.430473,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,6.1265841,6.7913804,57.16,56.15,44.42,59.09,8.333333333333334,1,1,0,0,6,4,2,1,132,714879,222261,143730.77,0,1660.3605 -371,456,817,816,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.4683919,6.4257035,33,-3,-22.068495,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,5.48,1,1,0,0,6.5664239,44.42,59.09,57.16,56.15,8.333333333333334,1,1,0,0,6,4,2,1,132,714879,222261,143730.77,0,1660.3605 -372,457,818,819,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.7474999,7.3694472,5,5,17.287226,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,4.1108289,7.9195337,60.02,56.42,47.42,14.98,1.666666666666667,1,1,0,0,0,5,3,1,314,705108.88,476484.31,148058.25,0,3116.4365 -372,457,819,818,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.2995839,6.3378034,5,-5,34.929298,0,2,2,2019,17,7,0,0,4,7,0,0,0,1,0,42.809731,0,0,1,1,0,6.8590927,6.0335264,47.42,14.98,60.02,56.42,6.666666666666667,1,1,0,0,2,5,3,1,314,705108.88,476484.31,148058.25,0,3116.4365 -373,458,820,821,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.2467003,6.1834774,3,-2,-175.19826,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2564101,6.1648469,57.16,56.15,53.96,50.73,8.333333333333334,1,1,0,0,0,7,2,1,1123,830345,420234.19,363629.19,0,1289.8208 -373,458,821,820,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.7265306,6.4876766,3,2,165.70522,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9660115,6.5646811,53.96,50.73,57.16,56.15,8.333333333333334,1,1,0,0,8,7,2,1,1123,830345,420234.19,363629.19,0,1289.8208 -374,459,822,-9,825,824,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.1726,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 -374,459,823,-9,825,824,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.5145,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 -374,459,824,825,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.7045927,8.7997217,0,11,2,-13.423656,0,2,2,2019,9,0,40,58,1,0,0,20.409515,20.409515,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.46,56.91,8.333333333333334,1,1,0,0,7,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 -374,459,825,824,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.9977584,8.034379,0,11,-2,-15.897748,0,2,2,2019,7,0,23,23,1,0,0,11.102667,11.102667,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.83,57.2,1.666666666666667,1,1,0,0,8,2,4,1,933.25,551263.38,442123.81,248549,71076.828,3340.8804 -375,460,826,-9,-9,827,1,1,36,0,0,0,1,1,-9,0,5,9.3427067,8.8445349,0,0,0,-957.19397,0,2,2,2019,11,0,48,48,1,0,0,17.085264,17.085264,0,0,0,0,0,0,0,0,5.6289091,0,32.4,61.08,-9,-9,8.333333333333334,2,3,0,0,9,4,5,1,520,77367.766,48393.141,0,0,3330.4226 -375,461,827,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-955.08118,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.87,56.13,-9,-9,10,2,3,0,0,8,4,1,1,2297,337651.72,171612.02,0,0,0 -376,462,828,829,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,6.4926033,6.0373363,10,2,51.196556,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5572157,58.2,54.53,57.33,53.46,8.333333333333334,1,1,0,0,3,12,2,0,319,-77966.656,90313.297,198985.53,0,1096.8542 -376,462,829,828,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,-54.975327,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,58.2,54.53,10,1,1,0,0,11,12,2,0,319,-77966.656,90313.297,198985.53,0,1096.8542 -377,463,830,831,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2029839,6.7055702,0,30,3,58.794518,0,2,2,2019,5,0,40,-9,1,0,0,2.5673206,2.5673206,0,0,0,0,0,0,0,0,1.9836248,0,59.31,49.81,58.23,43.46,8.333333333333334,1,1,0,0,12,4,4,1,1019,-7949.6445,152981.55,199234.2,154932.02,2299.2168 -377,463,831,830,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.217535,8.2355146,0,26,-3,88.859154,0,2,3,2019,6,0,37,37,1,0,0,13.05863,13.05863,0,0,0,0,0,0,0,0,0,0,58.23,43.46,59.31,49.81,5,4,2,0,0,12,4,4,1,1019,-7949.6445,152981.55,199234.2,154932.02,2299.2168 -378,464,832,833,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,37,0,14.606622,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.0211,0,57.16,56.15,58.89,48.6,8.333333333333334,1,1,0,0,5,10,2,1,451.5,2010090.3,967773.25,543476.25,94990.555,1085.4036 -378,464,833,832,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.4865661,6.3577981,0,37,0,-97.254486,0,2,2,2019,7,0,10,17,1,0,0,6.9047298,6.9047298,0,0,0,0,0,0,0,0,7.0750303,0,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,11,10,2,1,451.5,2010090.3,967773.25,543476.25,94990.555,1085.4036 -379,465,834,-9,837,836,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.8411,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 -379,465,835,-9,837,836,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.22766,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 -379,465,836,837,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,8.9176245,9.1377716,0,7,5,-31.813446,0,1,2,2019,17,5,45,47,1,5,0,17.122152,17.122152,0,0,0,0,0,1,1,0,0,0,36.43,39,48.81,59.91,6.666666666666667,1,1,0,0,7,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 -379,465,837,836,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.1462464,7.2844825,0,14,-5,-24.92001,0,1,1,2019,7,0,24,17,1,0,0,6.3088303,6.3088303,0,0,0,0,0,1,1,0,0,0,48.81,59.91,36.43,39,8.333333333333334,1,1,0,0,6,4,4,1,760.5,948207.06,638155.88,215162.56,31656.984,3639.739 -380,466,838,839,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,5.0002646,4.7826271,56,-5,92.924217,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.0143299,54.69,57.47,58.08,43.46,10,1,1,0,0,0,11,3,1,769,590858.63,493827.13,235996.27,50134.125,2916.4585 -380,466,839,838,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.7082844,8.1428652,56,5,1.2840782,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.3299141,7.554852,58.08,43.46,54.69,57.47,0,1,1,0,0,0,11,3,1,769,590858.63,493827.13,235996.27,50134.125,2916.4585 -381,467,840,841,-9,-9,1,1,50,0,2,0,3,3,-9,1,5,0,0,0,30,1,0,0,-9,-9,2019,12,5,0,0,3,5,0,0,0,0,0,0,.82596552,7,1,1,0,0,0,35.53,53.07,25.37,57.85,5,2,3,0,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 -381,467,841,840,-9,-9,1,0,49,0,2,0,3,3,-9,0,5,0,0,0,30,-1,0,0,3,-9,2019,6,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,25.37,57.85,35.53,53.07,6.666666666666667,2,3,0,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 -381,467,842,-9,841,840,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.3561,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 -381,467,843,-9,841,840,1,1,17,0,2,1,2,0,-9,0,5,0,0,0,0,0,-952.40228,-9,3,3,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.69,57.47,-9,-9,6.666666666666667,2,3,0,0,0,9,1,1,1027.75,247050.38,-19459.77,0,0,1390.8484 -381,468,844,-9,841,840,1,0,19,0,2,0,2,2,1,0,5,7.3268914,7.6219788,0,0,0,-1053.9896,-9,3,3,2019,7,0,38,0,1,0,1,5.4535728,5.4535728,0,0,0,0,14.5,1,1,0,0,0,39.06,64.46000000000001,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,1002,-162838.19,-56466.855,0,0,859.39471 -381,469,845,-9,841,840,1,0,22,0,2,0,2,2,-9,1,2,6.8773265,6.4203086,0,0,0,-1071.5658,0,3,3,2019,17,5,12,20,1,5,1,8.0740423,8.0740423,0,0,0,0,27,1,1,0,0,0,37.8,42.53,-9,-9,3.333333333333333,2,3,0,0,5,9,2,1,2349,-54318.391,0,0,0,441.45059 -381,470,846,-9,847,848,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.1486,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,1,545.66669,98221.539,0,0,0,1971.808 -381,470,847,848,841,840,1,0,23,0,2,0,3,3,-9,0,3,7.5328383,7.3873863,0,2,-2,-15.75115,0,3,3,2019,12,2,35,30,1,2,0,6.318675,6.318675,0,0,0,0,7,1,1,0,0,0,44.67,42.83,40.01,46.17,8.333333333333334,2,3,0,1,4,9,3,1,545.66669,98221.539,0,0,0,1971.808 -381,470,848,847,-9,-9,1,1,25,0,2,0,2,2,-9,0,4,7.7247348,7.578012,0,2,2,-21.167036,0,-9,-9,2019,18,5,66,66,1,5,0,4.5332069,4.5332069,0,0,0,0,2,1,1,0,0,0,40.01,46.17,44.67,42.83,6.666666666666667,2,3,0,0,3,9,3,1,545.66669,98221.539,0,0,0,1971.808 -382,471,849,850,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,7.5522966,7.8172884,0,10,-5,129.43179,0,-9,-9,2019,8,0,50,50,1,0,0,4.581708,4.581708,0,0,0,0,0,1,1,0,0,0,40.94,58.35,43.9,57.01,8.333333333333334,1,1,0,0,12,11,3,1,278.5,171204.14,138417.44,326386.19,162492.03,2517.2988 -382,471,850,849,-9,-9,1,0,49,0,2,0,2,2,-9,1,3,7.3778787,7.4374795,0,10,5,22.98625,0,-9,3,2019,11,0,21,16,1,0,0,8.5037804,8.5037804,0,0,0,0,0,1,1,0,0,0,43.9,57.01,40.94,58.35,8.333333333333334,1,1,0,0,6,11,3,1,278.5,171204.14,138417.44,326386.19,162492.03,2517.2988 -383,472,851,852,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,6.6604972,6.7661786,8,1,-61.405628,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,6.7654934,6.7215567,57.16,56.15,64.65000000000001,43.07,10,1,1,0,0,4,12,3,1,902,2048200.1,1330121.4,150494.66,0,2254.6274 -383,472,852,851,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,7.8950229,8.1420078,8,-1,-9.9979019,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.4460144,8.0093327,64.65000000000001,43.07,57.16,56.15,10,1,1,0,0,7,12,3,1,902,2048200.1,1330121.4,150494.66,0,2254.6274 -384,473,853,-9,855,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.41699,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 -384,473,854,-9,855,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-986.85449,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 -384,473,855,-9,-9,-9,1,0,35,0,3,0,1,1,-9,1,1,0,7.9339819,8.0826817,0,0,-962.72162,0,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,7.791563,0,10.4,55.21,-9,-9,1.666666666666667,1,1,0,1,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 -384,473,856,-9,855,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.8234,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,2194.25,-103622.65,21136.592,0,0,2863.0913 -385,474,857,-9,859,858,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-865.63733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,476.33334,259786.92,211924.08,122053.6,75127.313,3760.0728 -385,474,858,859,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.1267414,8.3533821,0,5,-1,-43.613918,0,2,3,2019,12,2,39,40,1,2,0,11.93619,11.93619,0,0,0,0,0,1,1,0,0,0,41,56.99,46.08,57.2,8.333333333333334,1,1,0,1,11,10,5,1,476.33334,259786.92,211924.08,122053.6,75127.313,3760.0728 -385,474,859,858,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.7716484,8.5554085,0,5,1,-53.666592,0,-9,-9,2019,9,1,45,45,1,1,0,12.070706,12.070706,0,0,0,0,0,1,1,0,0,0,46.08,57.2,41,56.99,6.666666666666667,1,1,0,0,11,10,5,1,476.33334,259786.92,211924.08,122053.6,75127.313,3760.0728 -386,475,860,-9,862,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.75415,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 -386,475,861,-9,862,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-809.31757,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 -386,475,862,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,9.4445791,9.174675,0,0,0,-987.87555,0,1,1,2019,8,0,43,38,1,0,0,30.738785,30.738785,0,0,0,0,0,0,0,0,0,0,25.82,68.09999999999999,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 -386,475,863,-9,862,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-936.75159,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,738,-75694.828,55462.473,0,0,3256.5732 -387,476,864,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,7.8796682,8.06322,0,0,0,-1004.4466,-9,2,-9,2019,11,0,37,0,1,0,0,8.7832479,8.7832479,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,9,1,4,1,2647,-310559.41,149333.06,128141.14,141751.47,1501.2134 -388,477,865,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.6617594,8.4038191,0,0,0,-1016.1752,0,3,3,2019,11,2,43,40,1,2,0,15.904465,15.904465,0,0,0,0,0,0,0,0,0,0,46.28,62.6,-9,-9,6.666666666666667,4,5,0,0,6,8,5,0,685,125365.02,0,0,0,2422.9692 -389,478,866,867,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,9.1076984,8.7468672,56,-1,56.064648,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2805786,8.7583609,57.33,53.46,63.38,53.47,8.333333333333334,1,1,0,0,0,10,5,1,713.5,2137249,1321151.8,350723.5,0,5098.1387 -389,478,867,866,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.7075143,6.8640833,56,1,-13.667232,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5174923,6.8032279,63.38,53.47,57.33,53.46,10,1,1,0,0,4,10,5,1,713.5,2137249,1321151.8,350723.5,0,5098.1387 -390,479,868,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,4.916008,4.7861266,0,0,-1029.832,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,4.8582821,37.46,62.75,-9,-9,0,1,1,0,1,3,4,2,1,256,-72674.852,111200.7,0,0,266.00528 -391,480,869,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,7.0419784,6.5711946,0,0,-987.75421,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0956492,6.7470365,52.08,48.96,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,223,362011.5,100405.05,177022.42,0,1622.9655 -392,481,870,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.6330557,7.7980614,0,0,-1044.1906,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,9.1934729,0,0,1,1,0,0,7.768775,51,46,-9,-9,7,2,3,0,0,0,8,3,1,90,171463.38,0,138123.52,0,1562.2345 -393,482,871,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,0,7.0400071,6.9467831,0,0,-1043.5358,0,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,7.2720962,0,15.92,55.34,-9,-9,1.666666666666667,1,1,1,0,0,9,2,1,286,1218703.5,714830.56,0,0,886.69843 -394,483,872,873,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.5965066,6.3624477,1,8,-97.471741,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0552626,6.4876323,62.49,55.09,59.43,58.05,10,1,1,0,0,9,10,2,1,590.5,1216651.1,568564.25,646395.13,0,897.66577 -394,483,873,872,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,1,-8,-59.023598,-9,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.2681408,0,59.43,58.05,62.49,55.09,10,1,1,0,0,10,10,2,1,590.5,1216651.1,568564.25,646395.13,0,897.66577 -395,484,874,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.1519408,7.513299,0,0,-960.79272,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.9725823,7.3182378,63.1,45.09,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,926,352846.03,143833.73,0,0,364.27341 -396,485,875,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.2236338,8.3388033,0,0,0,-967.42078,0,2,2,2019,11,0,30,30,1,0,0,13.281545,13.281545,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,1422.5,269391,115994.48,383333.38,32145.887,2210.1123 -396,485,876,-9,875,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.4165,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1422.5,269391,115994.48,383333.38,32145.887,2210.1123 -397,486,877,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.7528558,8.0744886,7.2039275,0,0,-1054.5649,0,1,2,2019,9,0,20,20,1,0,0,13.311481,13.311481,0,0,0,0,0,1,1,0,7.2991199,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,570,47534.078,65075.117,70973.211,80378.5,1970.0854 -397,486,878,-9,877,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1011.9257,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,2,3,1,570,47534.078,65075.117,70973.211,80378.5,1970.0854 -397,486,879,-9,877,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.2002,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,570,47534.078,65075.117,70973.211,80378.5,1970.0854 -398,487,880,883,-9,-9,1,1,50,0,2,0,3,3,-9,0,5,8.3023081,8.0647011,0,11,9,63.018124,0,2,2,2019,8,0,50,50,1,0,0,8.4116726,8.4116726,0,0,0,0,0,1,1,0,0,0,60.02,56.42,46.56,50.26,8.333333333333334,1,1,0,0,11,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 -398,487,881,-9,883,880,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.3702,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 -398,487,882,-9,883,880,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.245,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 -398,487,883,880,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,0,0,0,11,0,36.230637,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,50.26,60.02,56.42,8.333333333333334,2,3,0,0,0,9,3,1,1100.5,153555.42,79164.313,290624.22,128333.62,2751.4194 -399,488,884,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.6105909,8.5582867,0,0,0,-879.97302,0,3,2,2019,25,12,46,44,1,12,0,8.9499207,8.9499207,0,0,0,0,0,1,1,0,0,0,17.8,66.2,-9,-9,3.333333333333333,1,1,0,0,8,12,4,1,1366,613331,291629.84,290282.56,0,1844.3381 -400,489,885,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.5632229,8.6658449,0,0,0,-1031.9025,0,2,3,2019,9,0,37,36,1,0,0,14.253438,14.253438,0,0,0,0,0,0,0,0,4.3789859,0,38.51,48.9,-9,-9,3.333333333333333,1,1,0,0,7,4,5,1,310,740778.75,20396.068,0,0,1950.9142 -401,490,886,887,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.2404423,7.4516902,5.1408219,1,-2,82.467949,0,3,2,2019,7,0,26,29,1,0,0,7.368032,7.368032,0,0,0,0,7,0,0,0,0,5.9888067,54.79,55.86,48.18,61.8,10,1,1,0,0,9,2,5,1,1213,1502821,1117958,438333.78,41500.086,3650.3921 -401,490,887,886,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.2832289,8.7880125,8.4266367,1,2,16.769947,-9,-9,-9,2019,7,0,15,0,1,0,0,25.028246,25.028246,0,0,0,0,0,0,0,0,6.7930841,8.1303787,48.18,61.8,54.79,55.86,8.333333333333334,1,1,0,0,4,2,5,1,1213,1502821,1117958,438333.78,41500.086,3650.3921 -402,491,888,889,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,6.6638041,6.6347523,41,2,57.913334,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,5.1797686,6.5338159,42.69,35.95,47.94,53.79,8.333333333333334,1,1,0,0,0,4,3,1,479.5,1676152.8,1239254.8,241406.08,0,2890.8528 -402,491,889,888,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.6565866,7.5627298,41,-2,43.150337,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.759532,7.5318069,47.94,53.79,42.69,35.95,8.333333333333334,1,1,0,0,4,4,3,1,479.5,1676152.8,1239254.8,241406.08,0,2890.8528 -403,492,890,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.2111506,5.5146956,0,0,-904.32831,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,0,30.043598,0,0,1,1,0,0,5.7223749,30.36,40.25,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,3275,534646.25,147650.11,212134.16,0,1020.4269 -404,493,891,-9,894,892,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.252,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,0,422,215133.38,66621.258,0,0,3734.9363 -404,493,892,894,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,8.5387287,8.8893719,0,22,4,-41.61935,0,3,3,2019,8,2,52,60,1,2,0,12.531661,12.531661,0,0,0,0,0,1,1,0,0,0,45.55,39.91,54.1,59.11,10,1,1,0,0,9,6,4,0,422,215133.38,66621.258,0,0,3734.9363 -404,493,893,-9,894,892,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.87799,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,4,0,422,215133.38,66621.258,0,0,3734.9363 -404,493,894,892,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,8.0794144,7.8483691,0,6,-4,-27.616842,0,3,3,2019,10,0,40,37,1,0,0,8.6875916,8.6875916,0,0,0,0,0,1,1,0,0,0,54.1,59.11,45.55,39.91,8.333333333333334,1,1,0,0,9,6,4,0,422,215133.38,66621.258,0,0,3734.9363 -405,494,895,896,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,3,-1,-51.621922,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4773235,0,47.78,11.11,49.25,61.25,8.333333333333334,3,4,0,0,0,8,2,1,704.5,1115860.5,651776.25,252070.84,0,2318.8403 -405,494,896,895,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,7.2418871,7.3193483,3,1,6.5710378,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.2818851,7.1991224,49.25,61.25,47.78,11.11,8.333333333333334,4,2,0,0,6,8,2,1,704.5,1115860.5,651776.25,252070.84,0,2318.8403 -406,495,897,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.6810489,6.8749981,5.8752704,0,0,-1018.892,0,2,2,2019,8,0,16,16,1,0,0,5.6460819,5.6460819,0,0,0,0,0,1,1,0,5.875195,0,52.54,52.91,-9,-9,5,1,1,0,0,8,7,2,0,1402,-300911.81,0,0,0,989.22363 -406,495,898,-9,897,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.14362,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,1402,-300911.81,0,0,0,989.22363 -407,496,899,-9,900,901,1,0,31,0,0,0,1,1,-9,0,4,9.078125,8.8162374,0,0,0,-802.62531,0,1,1,2019,8,0,48,40,1,0,1,19.444937,19.444937,0,0,0,0,0,0,0,0,3.2574899,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,551,44275.953,0,0,0,2963.8047 -407,497,900,901,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.8165798,9.1271582,0,1,4,57.786377,-9,-9,-9,2019,8,1,38,0,1,1,0,17.848133,17.848133,0,0,0,0,0,0,0,0,0,0,50.03,52.62,59.43,49.68,8.333333333333334,1,1,0,0,7,9,5,1,238.5,1430887.4,1101743.9,353599.88,0,4333.0762 -407,497,901,900,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.8138518,7.9544544,5.8212361,1,-4,8.9214716,-9,-9,-9,2019,12,1,37,0,1,1,0,8.2108431,8.2108431,0,0,0,0,7,0,0,0,6.9345417,0,59.43,49.68,50.03,52.62,8.333333333333334,1,1,0,0,1,9,5,1,238.5,1430887.4,1101743.9,353599.88,0,4333.0762 -408,498,902,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,0,0,0,0,0,-883.64807,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,1.0023004,0,53.88,33.91,-9,-9,3.333333333333333,2,3,0,1,0,2,1,1,270,-52363.156,77719.422,0,0,1021.8168 -408,498,903,-9,902,-9,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1134.1027,-9,1,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,2,1,1,270,-52363.156,77719.422,0,0,1021.8168 -408,499,904,-9,902,-9,1,0,23,0,1,0,2,2,0,0,4,0,0,0,0,0,-872.32782,-9,1,1,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,7,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,0,2,1,1,118,314075,0,0,0,0 -408,500,905,-9,902,-9,1,0,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-913.30725,-9,1,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,2,3,0,0,1,2,1,1,597,-200126.77,0,0,0,735.54956 -408,501,906,-9,902,-9,1,0,20,0,1,0,2,2,-9,0,3,6.6570907,6.3288913,0,0,0,-972.11835,-9,1,-9,2019,12,3,39,0,1,3,1,1.9209815,1.9209815,0,0,0,0,0,1,1,0,0,0,40.88,59.72,-9,-9,6.666666666666667,2,3,0,0,1,2,2,1,536,196641.41,0,0,0,492.2569 -409,502,907,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1055.3899,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,59.91,42.65,-9,-9,5,1,1,0,1,0,4,1,0,249,-94618.734,0,0,0,587.67621 -410,503,908,909,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,8.4243917,8.5032816,46,1,84.176491,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2412095,8.4725962,51.73,58.82,61.01,53.18,10,1,1,0,0,6,4,4,1,303.5,1306869.9,843154.13,221960,0,3223.3135 -410,503,909,908,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,46,-1,10.179626,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1321468,0,61.01,53.18,51.73,58.82,10,1,1,0,0,0,4,4,1,303.5,1306869.9,843154.13,221960,0,3223.3135 -411,504,910,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.77545,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.29,44.2,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,69,80180.977,0,0,0,803.90326 -412,505,911,-9,913,912,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.56842,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 -412,505,912,913,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.7730064,9.6973934,0,14,3,30.620142,0,3,3,2019,6,0,28,25,1,0,0,64.633675,64.633675,0,0,0,0,0,0,0,0,3.1012297,0,57.06,57.76,48.45,49.46,8.333333333333334,1,1,0,0,9,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 -412,505,913,912,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.9174004,8.9105434,0,16,-3,43.262863,0,2,2,2019,10,0,30,36,1,0,0,27.758944,27.758944,0,0,0,0,0,0,0,0,6.5915785,0,48.45,49.46,57.06,57.76,6.666666666666667,1,1,0,0,9,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 -412,505,914,-9,913,912,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.4059,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,487.25,1457704.6,818664.75,621295,304468.78,8854.2109 -413,506,915,916,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.4515638,8.6470985,0,37,-4,9.8377314,0,3,3,2019,6,0,36,36,1,0,0,19.017288,19.017288,0,0,0,0,0,1,1,0,5.8242345,0,60.12,54.8,60.02,56.42,8.333333333333334,1,1,0,0,9,13,4,1,594,1209657.4,557297.13,149027.19,0,2557.7266 -413,506,916,915,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,0,0,37,4,-103.19206,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.12,54.8,10,1,1,0,0,7,13,4,1,594,1209657.4,557297.13,149027.19,0,2557.7266 -413,507,917,-9,916,915,1,1,34,0,0,0,2,2,-9,0,5,7.7820368,7.8984232,0,0,0,-1005.8691,0,3,2,2019,10,2,40,40,1,2,1,6.6050897,6.6050897,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,13,3,1,1877,7346.8921,-52313.387,0,0,1110.6599 -414,508,918,920,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,7.6169515,7.6509275,0,7,-3,-60.06068,0,-9,-9,2019,5,0,20,10,1,0,0,11.963715,11.963715,0,0,0,0,0,1,1,0,0,0,60.12,54.8,53.5,53.7,10,1,1,0,0,6,7,5,1,1070.3334,372908.63,32308.844,309077.63,186167.44,3522.332 -414,508,919,-9,918,920,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.67554,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,1070.3334,372908.63,32308.844,309077.63,186167.44,3522.332 -414,508,920,918,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,8.8668919,8.6596193,0,7,3,-45.775372,0,1,1,2019,9,0,35,40,1,0,0,23.541792,23.541792,0,0,0,0,0,1,1,0,2.0046771,0,53.5,53.7,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,1070.3334,372908.63,32308.844,309077.63,186167.44,3522.332 -415,509,921,-9,922,923,1,0,42,0,0,0,3,3,-9,0,3,0,0,0,0,0,-950.80383,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.55,58.3,-9,-9,5,3,4,1,0,8,10,1,0,2643,136112.64,0,0,0,574.56848 -415,510,922,923,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.3323312,5.3495388,47,-11,-98.502846,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.2728047,49.51,41.82,53,46,6.666666666666667,3,4,0,0,0,10,2,0,356,454078.47,174036.39,266452.31,0,1170.4202 -415,510,923,922,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,47,11,151.85225,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9583497,0,53,46,49.51,41.82,8,4,2,0,0,0,10,2,0,356,454078.47,174036.39,266452.31,0,1170.4202 -415,511,924,-9,921,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-844.04919,-9,3,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,4,2,0,1,0,10,1,0,537,-368666.06,0,0,0,0 -416,512,925,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.1567078,8.0382853,0,0,0,-1018.8413,0,3,3,2019,7,1,37,39,1,1,0,12.130599,12.130599,0,0,0,0,14.5,1,1,0,0,0,45.88,45.34,-9,-9,5,3,4,0,0,8,7,4,1,930,140529.16,0,364495.75,7125.478,1600.4696 -416,513,926,-9,925,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-945.41675,-9,3,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,3.9313779,0,48,59,-9,-9,7,3,4,0,0,0,7,1,1,361,128100.13,0,0,0,1255.0017 -416,514,927,-9,-9,-9,1,1,19,0,0,0,2,2,1,0,4,7.5926814,8.0434828,0,0,0,-892.97034,-9,-9,-9,2019,10,0,35,0,1,2,0,8.7331104,8.7331104,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,1,1112,5402.022,0,0,0,701.72552 -417,515,928,-9,930,929,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.1238,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,1600.6666,921676.81,446016.28,174436.58,0,4373.1411 -417,515,929,930,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,9.0628262,9.0003881,7.2692924,6,8,49.417912,0,1,1,2019,8,0,40,40,1,0,0,17.207371,17.207371,0,0,0,0,0,1,1,0,0,7.899281,52.82,53.97,44.02,60.7,8.333333333333334,1,1,0,0,7,13,5,1,1600.6666,921676.81,446016.28,174436.58,0,4373.1411 -417,515,930,929,-9,-9,1,0,48,0,1,0,2,2,-9,1,4,8.0951586,8.3701811,6.0070114,6,-8,-18.771166,0,3,3,2019,11,0,40,48,1,0,0,9.3734655,9.3734655,0,0,0,0,0,1,1,0,0,5.8189502,44.02,60.7,52.82,53.97,10,1,1,0,0,7,13,5,1,1600.6666,921676.81,446016.28,174436.58,0,4373.1411 -417,516,931,-9,930,929,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-975.60419,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,1,1,728,59636.047,0,0,0,0 -418,517,932,933,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.4694324,8.0185623,6.55511,11,7,14.261942,0,3,3,2019,11,0,30,25,1,0,0,6.4225445,6.4225445,0,0,0,0,0,0,0,0,5.8841004,6.2175317,46.53,47.78,54.1,59.11,3.333333333333333,1,1,0,0,13,10,5,1,1002.5,670226.88,482684.25,321245.13,0,5464.4727 -418,517,933,932,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.4384127,9.4704752,0,11,-7,-99.685974,0,2,2,2019,9,0,30,30,1,0,0,42.865799,42.865799,0,0,0,0,0,0,0,0,2.2675126,0,54.1,59.11,46.53,47.78,8.333333333333334,1,1,0,0,13,10,5,1,1002.5,670226.88,482684.25,321245.13,0,5464.4727 -419,518,934,935,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,53,1,-18.838156,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4465055,0,37.13,38.71,48.77,42.86,6.666666666666667,1,1,0,0,0,4,4,1,611,797099.88,166092,196296.38,0,3710.6189 -419,518,935,934,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,8.9651346,8.591507,53,-1,62.865288,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7071767,8.4429598,48.77,42.86,37.13,38.71,8.333333333333334,1,1,0,0,0,4,4,1,611,797099.88,166092,196296.38,0,3710.6189 -420,519,936,-9,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,9.6655989,9.7279139,0,0,0,-975.06464,0,1,1,2019,25,11,38,38,1,11,0,34.567459,34.567459,0,0,0,0,0,0,0,0,0,0,29.13,62.89,-9,-9,5,1,1,0,0,11,12,5,1,978.66669,279153.22,184955.28,121109.25,81256,3584.2454 -420,519,937,-9,936,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.9666,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,978.66669,279153.22,184955.28,121109.25,81256,3584.2454 -420,519,938,-9,936,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.224,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,978.66669,279153.22,184955.28,121109.25,81256,3584.2454 -421,520,939,-9,941,940,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.52344,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 -421,520,940,941,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.5903692,8.7048788,0,9,0,30.09111,0,1,1,2019,13,1,37,45,1,1,0,18.024092,18.024092,0,0,0,0,0,1,1,0,2.491117,0,36.2,60.58,31.97,59.74,8.333333333333334,1,1,0,0,9,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 -421,520,941,940,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,6.9406304,7.1942387,0,9,0,46.500439,0,-9,-9,2019,18,6,15,15,1,6,0,11.115584,11.115584,0,0,0,0,0,1,1,0,2.2791398,0,31.97,59.74,36.2,60.58,6.666666666666667,1,1,0,0,3,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 -421,520,942,-9,941,940,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.79407,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,0,1255.5,102216.19,78965.531,166116.05,142104.78,2905.9602 -422,521,943,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.3446774,7.5054355,0,0,0,-1036.7924,0,3,3,2019,14,3,40,40,1,3,0,5.0385299,5.0385299,0,0,0,0,7,0,0,0,8.4374275,0,48.34,54.86,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,212,224677.69,44962.082,0,0,3591.8853 -423,522,944,945,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.3810873,8.5081739,5.7185659,35,3,37.439171,0,2,-9,2019,9,0,40,45,1,0,0,14.237003,14.237003,0,0,0,0,0,1,1,0,5.9928718,5.9698572,57.33,53.46,40.64,42.22,8.333333333333334,1,1,0,0,12,6,4,1,2403.5,326479.75,150512.39,74494.453,0,2893.1401 -423,522,945,944,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,6.3967528,6.5296249,0,34,-3,-9.433919,0,3,2,2019,15,3,7,8,1,3,0,10.475819,10.475819,0,0,0,0,119,1,1,0,0,0,40.64,42.22,57.33,53.46,3.333333333333333,1,1,0,0,13,6,4,1,2403.5,326479.75,150512.39,74494.453,0,2893.1401 -423,523,946,-9,945,944,1,1,25,0,0,0,2,2,-9,0,2,7.8922443,7.9074087,0,0,0,-1004.9946,0,2,2,2019,9,0,48,48,1,0,1,9.2479877,9.2479877,0,0,0,0,0,1,1,0,3.3086529,0,45.19,48.64,-9,-9,5,1,1,0,0,6,6,4,1,272,242561.08,0,0,0,1023.7234 -424,524,947,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.3036418,7.3629899,0,0,-1014.0681,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,3.3742368,7.218884,36.13,52.03,-9,-9,6.666666666666667,1,1,0,0,7,12,3,1,85,43647.43,154336.8,57461.355,0,1135.7834 -425,525,948,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.4671636,7.8598533,0,0,-868.58264,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8906169,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,251,635456.63,184113.16,154995.47,0,2058.6516 -426,526,949,-9,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,5.0681925,5.3316278,0,0,0,-1035.2219,0,1,2,2019,9,0,40,25,1,1,0,.38272369,.38272369,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,3,4,0,0,11,8,2,0,682.5,-113674.67,0,0,0,1523.6858 -426,526,950,-9,-9,949,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1047.7068,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,2,0,682.5,-113674.67,0,0,0,1523.6858 -427,527,951,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.1086903,8.3461971,6.7545962,0,0,-1009.967,0,3,1,2019,7,0,20,23,1,0,0,17.538622,17.538622,0,0,0,0,0,1,1,0,6.6428885,0,47.42,59.36,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,845,96973.719,4897.127,57516.102,48971.008,1603.4945 -427,527,952,-9,951,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-995.43329,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,0,6,3,1,845,96973.719,4897.127,57516.102,48971.008,1603.4945 -428,528,953,954,-9,-9,1,1,30,0,3,0,1,1,-9,0,5,8.4892616,8.6591768,0,10,0,81.599152,0,1,2,2019,9,0,45,48,1,0,0,13.309269,13.309269,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.58,54.92,8.333333333333334,1,1,0,0,9,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 -428,528,954,953,-9,-9,1,0,30,0,3,0,1,1,1,0,4,0,0,0,10,0,9.7188711,-9,1,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.58,54.92,51.73,58.82,6.666666666666667,1,1,0,0,3,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 -428,528,955,-9,954,953,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.9016,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 -428,528,956,-9,954,953,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.63336,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 -428,528,957,-9,954,953,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.93262,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1616.4,557693,353702.56,228884.73,114324.77,2390.3154 -429,529,958,959,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,43,-3,-45.180264,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,46.08,57.2,52,54.51,6.666666666666667,1,1,0,0,0,9,4,1,928.5,1248376.9,824534.5,399490.31,0,3267.7612 -429,529,959,958,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.1984253,8.174284,7.5069833,42,3,69.58667,0,3,3,2019,8,0,15,50,1,0,0,22.743307,22.743307,0,0,0,0,0,1,1,0,0,6.923213,52,54.51,46.08,57.2,5,1,1,0,0,9,9,4,1,928.5,1248376.9,824534.5,399490.31,0,3267.7612 -430,530,960,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,6.1412072,6.3133183,0,0,0,-928.78149,-9,3,1,2019,33,11,16,0,1,11,0,3.6651516,3.6651516,0,0,0,0,2,1,1,0,0,0,17.68,67.65000000000001,-9,-9,1.666666666666667,1,1,0,1,8,7,2,0,705,809166.19,135598.31,421957.69,0,236.78575 -431,531,961,-9,963,962,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1123.8279,0,1,1,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.5664053,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 -431,531,962,963,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.6387386,9.398345,0,10,-1,-26.066339,0,2,2,2019,7,0,45,44,1,0,0,39.601673,39.601673,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 -431,531,963,962,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.7687969,8.5045595,0,10,1,-77.231018,0,1,2,2019,9,0,40,37,1,0,0,17.078886,17.078886,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 -431,531,964,-9,963,962,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.64087,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,463.5,520641.72,136538.56,618324.25,79096.422,6913.9014 -432,532,965,-9,-9,-9,1,1,39,0,0,0,3,3,-9,1,2,0,0,0,0,0,-941.6145,0,2,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,0,1,0,0,30.95,49.79,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,3974,-318943.66,0,0,0,422.77063 -433,533,966,967,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.8097939,6.9816508,49,0,-87.639954,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7556515,6.7704697,59.79,22.55,53.92,52.23,10,1,1,0,0,3,2,3,1,1082.5,741182.13,483605.44,303227.78,0,2738.1541 -433,533,967,966,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.521625,6.7638626,49,0,-29.01285,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1759882,53.92,52.23,59.79,22.55,10,1,1,0,0,0,2,3,1,1082.5,741182.13,483605.44,303227.78,0,2738.1541 -434,534,968,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.6081762,8.5994787,0,0,0,-864.7699,-9,2,2,2019,25,10,80,0,1,10,0,9.5890265,9.5890265,0,0,0,0,0,0,0,0,0,0,33.49,33.89,-9,-9,3.333333333333333,1,1,0,0,10,7,5,1,440,-288724.97,-70500.227,0,0,2013.376 -435,535,969,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,7.8969259,7.6274395,0,0,-929.46478,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,6.0856566,7.7570033,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,281,181299.16,420857.44,130170.06,0,1916.3918 -436,536,970,971,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,0,0,9,2,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,7,8,1,1,592,686575.75,309993.44,217484.42,0,0 -436,536,971,970,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,0,0,44,-2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,8,1,1,592,686575.75,309993.44,217484.42,0,0 -437,537,972,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1027.067,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57,51,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,245,74751.133,0,0,0,1225.0399 -438,538,973,974,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,0,0,15,-6,-23.348423,0,1,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.9584942,0,41.88,45.75,48.37,49.31,5,1,1,0,0,9,7,3,1,688.5,81246.328,0,0,0,2751.8311 -438,538,974,973,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.5264163,7.6920958,15,6,-84.102486,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,1.1253252,7.5216537,48.37,49.31,41.88,45.75,8.333333333333334,1,1,0,0,8,7,3,1,688.5,81246.328,0,0,0,2751.8311 -439,539,975,977,-9,-9,1,1,53,0,1,0,3,3,-9,0,5,7.4379444,8.2403173,6.6541429,14,9,26.259027,0,3,3,2019,6,0,30,33,1,0,0,9.9596939,9.9596939,0,0,0,0,0,1,1,0,3.3132846,6.4610553,57.06,57.76,32.26,47.33,8.333333333333334,1,1,0,0,8,4,4,1,596,291965.47,201567.47,96041.773,49968.195,3243.8169 -439,539,976,-9,977,975,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-992.58136,-9,1,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,4,4,1,596,291965.47,201567.47,96041.773,49968.195,3243.8169 -439,539,977,975,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.5354948,8.5178375,0,14,0,-40.002857,0,2,3,2019,16,5,42,44,1,5,0,12.12961,12.12961,0,0,0,0,0,1,1,0,2.644769,0,32.26,47.33,57.06,57.76,6.666666666666667,1,1,0,0,5,4,4,1,596,291965.47,201567.47,96041.773,49968.195,3243.8169 -440,540,978,-9,979,981,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.0114,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 -440,540,979,981,-9,-9,1,0,29,1,3,0,3,3,-9,0,5,0,0,0,9,-5,14.746362,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,39.02,49.76,35.01,10,2,3,0,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 -440,540,980,-9,979,981,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-909.94507,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 -440,540,981,979,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,7.8609838,7.9367361,0,9,5,-30.212627,0,3,3,2019,11,0,49,49,1,0,0,7.7598634,7.7598634,0,0,0,0,0,1,1,0,0,0,49.76,35.01,47.85,39.02,5,2,3,0,0,8,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 -440,540,982,-9,979,981,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-968.79297,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,995.20001,38264.355,0,96008.258,55248.84,2113.8645 -441,541,983,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,0,5.2368879,5.2553487,0,0,-909.55237,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8547783,0,60.41,31.87,-9,-9,5,1,1,0,0,0,2,2,1,341,193209,1281.8684,0,0,-114.1133 -442,542,984,985,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.2627001,9.1503906,0,9,-2,-108.46057,0,3,2,2019,7,0,37,38,1,0,0,29.742577,29.742577,0,0,0,0,0,0,0,0,3.3247426,0,62.43,40.11,54.2,57.49,1.666666666666667,1,1,0,0,11,6,5,1,713,352677.56,136772.77,157950.8,292949.5,4953.8369 -442,542,985,984,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.7872849,8.1641512,0,34,2,-60.362514,0,3,3,2019,7,0,41,41,1,0,0,15.910738,15.910738,0,0,0,0,0,0,0,0,4.1421695,0,54.2,57.49,62.43,40.11,8.333333333333334,1,1,0,0,11,6,5,1,713,352677.56,136772.77,157950.8,292949.5,4953.8369 -442,543,986,-9,985,984,1,0,26,0,0,0,2,2,-9,0,5,8.4960032,8.4251118,0,0,0,-1034.5724,0,2,2,2019,9,0,37,38,1,0,1,15.264482,15.264482,0,0,0,0,0,0,0,0,4.3004713,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,11,6,5,1,860,410423.91,-3493.1858,0,0,2338.8064 -442,544,987,-9,985,984,1,0,24,0,0,0,1,1,-9,0,5,8.2037153,8.2865686,0,0,0,-1071.7557,0,2,2,2019,6,0,50,15,1,0,1,8.602231,8.602231,0,0,0,0,0,0,0,0,3.1307881,0,58.22,54.51,-9,-9,1.666666666666667,1,1,0,0,9,6,4,1,492,-30373.447,98468.992,0,0,1493.6208 -443,545,988,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.0811014,7.1325908,0,0,-955.33105,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.693275,6.834096,44.92,37.29,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,698,621261.56,173037.98,151993.11,0,1654.408 -444,546,989,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-967.37048,0,3,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,0,0,20.9,21.84,-9,-9,0,1,1,0,1,0,9,1,0,535,-11678.089,0,0,0,1683.1698 -444,547,990,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1091.8489,0,2,2,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,11.5,36.93,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1104,-193005.19,0,0,0,1439.572 -445,548,991,992,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.687685,8.8200083,0,4,1,-96.509338,0,-9,-9,2019,4,0,44,40,1,0,0,15.036728,15.036728,0,0,0,0,0,0,0,0,0,0,53.05,52.71,48.22,56.69,8.333333333333334,1,1,0,0,5,2,5,1,132.5,368659.19,31289.424,111319.67,125073.22,2231.5986 -445,548,992,991,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.8554707,7.9981699,0,4,-1,-151.55783,0,-9,-9,2019,5,0,40,39,1,0,0,8.3307734,8.3307734,0,0,0,0,0,0,0,0,0,0,48.22,56.69,53.05,52.71,10,1,1,0,0,8,2,5,1,132.5,368659.19,31289.424,111319.67,125073.22,2231.5986 -446,549,993,994,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7942691,7.5893302,7,-2,68.035301,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6537704,7.7138438,52,48,43.9,57.01,7,4,1,0,0,0,7,3,1,702.5,1071697.5,442989,344886.38,0,1956.9873 -446,549,994,993,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,2,37.420422,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,0,0,43.9,57.01,52,48,6.666666666666667,1,1,0,0,0,7,3,1,702.5,1071697.5,442989,344886.38,0,1956.9873 -447,550,995,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,6.9852719,6.8696151,0,0,-1008.7695,-9,2,3,2019,22,8,0,0,4,8,0,0,0,1,2.8449132,0,19.146679,0,1,1,0,4.0961366,7.0429296,41.64,15.05,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,385,496585.59,0,319433.09,0,1624.9225 -448,551,996,997,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,65,-2,-.7667864,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,1.1660111,7.0589647,0,0,1,1,0,0,0,38.57,19.15,43.36,58.27,8.333333333333334,1,1,0,0,0,11,2,1,777,557899,84340.016,98636,0,2003.8806 -448,551,997,996,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.0262752,7.1221323,65,2,42.769146,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,5.6149869,0,0,1,1,0,5.4226403,6.9513607,43.36,58.27,38.57,19.15,10,1,1,0,0,0,11,2,1,777,557899,84340.016,98636,0,2003.8806 -449,552,998,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,9.3311605,9.2184992,0,0,0,-1035.0029,0,2,3,2019,12,1,40,35,1,1,0,34.509289,34.509289,0,0,0,0,0,0,0,0,5.5715647,0,49.67,35.36,-9,-9,3.333333333333333,2,3,0,0,12,8,5,0,304,27506.105,45464.559,0,0,4330.2661 -450,553,999,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,8.9458294,8.8523932,0,0,0,-1160.9781,0,3,2,2019,12,0,47,55,1,0,0,17.015295,17.015295,0,0,0,0,0,0,0,0,.95750207,0,51.22,26.89,-9,-9,5,1,1,0,0,10,7,5,1,389,845983.88,343655.78,201727.34,107427.58,2696.4092 -450,554,1000,-9,999,-9,1,1,31,0,0,0,2,2,-9,0,1,3.201447,3.0970581,0,0,0,-1039.1453,0,1,-9,2019,9,0,45,50,1,0,1,.086682439,.086682439,0,0,0,0,0,0,0,0,0,0,56.76,41.87,-9,-9,6.666666666666667,1,1,0,0,2,7,2,1,631,0,0,0,0,-1.7337841 -451,555,1001,1002,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4718351,8.7902212,0,9,2,117.46481,0,2,2,2019,7,0,48,50,1,0,0,13.113973,13.113973,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.66,54.88,8.333333333333334,1,1,0,0,10,10,5,1,249,209658.3,14932.908,290184.38,96176.313,2665.1704 -451,555,1002,1001,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.4019456,7.5990148,0,9,-2,58.135651,0,2,2,2019,10,0,23,25,1,0,0,10.388927,10.388927,0,0,0,0,0,0,0,0,0,0,51.66,54.88,57.33,53.46,1.666666666666667,1,1,0,0,10,10,5,1,249,209658.3,14932.908,290184.38,96176.313,2665.1704 -451,556,1003,-9,1002,1001,1,1,24,0,0,0,2,2,-9,0,4,7.9266524,8.0283918,0,0,0,-841.11578,0,2,2,2019,9,0,45,36,1,0,1,7.200995,7.200995,0,0,0,0,0,0,0,0,0,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,355,146296.56,44933.906,0,0,1457.8497 -452,557,1004,1005,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,6,8,35.05426,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,30.09,41.75,41.58,52.86,8.333333333333334,1,1,0,0,0,12,2,1,816.5,571924.44,181856.22,178484.17,0,1113.0955 -452,557,1005,1004,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,6.8039947,6.5918336,0,6,-8,-17.828581,0,3,2,2019,13,1,24,24,1,1,0,3.598917,3.598917,0,0,0,0,42,1,1,0,3.2380779,0,41.58,52.86,30.09,41.75,3.333333333333333,1,1,0,1,7,12,2,1,816.5,571924.44,181856.22,178484.17,0,1113.0955 -452,558,1006,-9,1004,1005,1,1,37,0,0,0,1,1,-9,0,3,7.9075069,7.7891636,0,0,0,-1016.7176,0,3,3,2019,24,12,40,40,1,12,1,6.058126,6.058126,0,0,0,0,2,1,1,0,0,0,32.42,38.97,-9,-9,3.333333333333333,1,1,0,0,7,12,3,1,415,-83484.688,-137374.55,0,0,1762.6234 -452,559,1007,-9,1004,1005,1,1,36,0,0,0,3,3,-9,1,3,0,0,0,0,0,-872.83167,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.44,38.75,-9,-9,5,1,1,0,0,0,12,1,1,562,-7286.8872,0,0,0,839.4577 -452,560,1008,-9,1004,1005,1,1,21,0,0,0,2,2,-9,0,3,8.0043373,7.7553725,0,0,0,-979.31781,0,3,3,2019,15,3,37,50,1,3,1,8.9755335,8.9755335,0,0,0,0,2,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,0,0,1,12,3,1,666,228952.8,-13737.958,0,0,783.48206 -452,561,1009,-9,1004,1005,1,0,20,0,0,0,2,2,-9,0,4,6.4438262,6.2052679,0,0,0,-985.14545,0,3,2,2019,6,0,14,16,1,0,1,4.5035024,4.5035024,0,0,0,0,7,1,1,0,0,0,50.42,59.1,-9,-9,0,1,1,0,0,2,12,2,1,615,-262650.56,0,0,0,446.51636 -453,562,1010,-9,1013,-9,1,1,25,0,0,0,1,1,-9,0,4,8.3990231,8.5890608,0,0,0,-943.49756,0,2,2,2019,5,0,43,50,1,0,1,12.077756,12.077756,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,10,2,3,0,0,9,9,4,1,323,-64605.973,32312.549,126865.89,111437.78,1806.0059 -453,563,1011,-9,1013,-9,1,1,22,0,0,0,2,2,-9,0,5,8.305829,8.4287395,0,0,0,-960.61945,0,3,-9,2019,19,6,30,30,1,6,1,13.996257,13.996257,0,0,0,0,0,0,0,0,0,0,49.41,44.66,-9,-9,1.666666666666667,2,3,0,0,3,9,4,1,200,181595.83,-65524.652,0,0,1294.3867 -453,564,1012,1013,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.4952545,8.6449223,0,2,1,-1.8015468,0,-9,-9,2019,5,0,37,35,1,0,0,13.359305,13.359305,0,0,0,0,0,0,0,0,0,0,66.34,49.42,54.02,40.03,10,2,3,0,0,3,9,5,1,1529.5,695737.88,247733.66,448692.56,0,3095.6128 -453,564,1013,1012,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.851963,7.5391183,4.8989224,2,-1,-42.912193,0,3,2,2019,11,2,26,23,1,2,0,9.2511654,9.2511654,0,0,0,0,0,0,0,0,4.103158,4.9440455,54.02,40.03,66.34,49.42,10,2,3,0,0,9,9,5,1,1529.5,695737.88,247733.66,448692.56,0,3095.6128 -454,565,1014,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.2911615,7.9703355,0,0,0,-934.01959,-9,-9,-9,2019,7,0,77,0,1,0,0,5.9178796,5.9178796,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,727,23257.941,86400.102,0,0,1413.8474 -455,566,1015,1016,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,11,-14,13.810613,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.8229294,0,57.16,56.15,54.61,38.4,8.333333333333334,1,1,0,0,10,7,2,1,464.5,570734.63,182558.91,525216.56,0,2051.5801 -455,566,1016,1015,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.2510314,7.1908016,45,14,25.231464,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,3.2822816,7.092998,54.61,38.4,57.16,56.15,8.333333333333334,1,1,0,0,9,7,2,1,464.5,570734.63,182558.91,525216.56,0,2051.5801 -456,567,1017,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6377492,6.666676,0,0,-994.54962,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6741724,6.5029106,58.65,39.14,-9,-9,5,1,1,0,0,0,10,2,1,659,283029.69,133485.38,0,0,1597.0995 -457,568,1018,1019,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,1,3,77.819893,-9,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,25.25,57.16,56.15,3.333333333333333,1,1,0,1,4,4,3,0,2073.5,101306.56,147670.03,155153.91,0,1267.1394 -457,568,1019,1018,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8111253,7.6871185,0,1,-3,61.373764,-9,-9,-9,2019,6,0,40,0,1,0,0,5.9468894,5.9468894,0,0,0,0,27,1,1,0,0,0,57.16,56.15,45.99,25.25,8.333333333333334,1,1,0,0,6,4,3,0,2073.5,101306.56,147670.03,155153.91,0,1267.1394 -457,569,1020,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.9668903,7.7226334,0,0,0,-974.61047,-9,-9,-9,2019,6,0,43,0,1,0,0,8.7535439,8.7535439,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,398,-42512.914,215632.28,0,0,1381.905 -458,570,1021,1022,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.3737535,7.3410282,50,-3,-172.71814,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5822506,7.708004,56.5,40.09,58.72,51.29,10,1,1,0,0,0,12,4,1,246,3252484,2406781,391397.38,0,5270.2056 -458,570,1022,1021,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.4530897,8.048995,50,3,-58.483807,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2921729,8.161993,58.72,51.29,56.5,40.09,8.333333333333334,1,1,0,0,0,12,4,1,246,3252484,2406781,391397.38,0,5270.2056 -459,571,1023,-9,1025,1026,1,0,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-826.67407,-9,3,3,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,43.2,49.24,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,1107,65514.324,0,0,0,464.5629 -459,572,1024,-9,1025,1026,1,1,23,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1043.8906,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,5,1,0,234,-677038.25,0,0,0,534.74078 -459,573,1025,1026,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,6.2074037,6.0605087,0,7,0,-34.348087,0,-9,-9,2019,12,0,6,6,1,0,0,9.596261,9.596261,0,0,0,0,120,1,1,0,0,0,44.61,47.24,54,54,8.333333333333334,1,1,0,0,5,5,3,0,302.5,768026,175176.69,280111.03,0,2571.7461 -459,573,1026,1025,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2602196,8.1243343,0,7,9,-66.237961,0,-9,-9,2019,8,0,45,40,1,0,0,6.4538422,6.4538422,0,0,0,0,0,1,1,0,0,0,54,54,44.61,47.24,8,1,1,0,0,1,5,3,0,302.5,768026,175176.69,280111.03,0,2571.7461 -460,574,1027,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.3483276,6.5936694,0,0,-936.25171,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.282012,6.2240691,27.65,33.74,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,1080,520959.53,165433.83,0,0,776.22565 -461,575,1028,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.7629766,6.5055237,0,0,-1019.3878,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4959555,6.9137092,47.79,53.79,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,159,386716.72,92512.57,63129.414,0,1413.2174 -462,576,1029,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.0874,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,47.18,32.59,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,124,-500802.53,0,0,0,1655.1235 -463,577,1030,1031,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.8001137,8.0845079,0,8,0,9.9912548,0,2,2,2019,11,0,40,40,1,2,0,8.4930534,8.4930534,0,0,0,0,0,1,1,0,1.8920529,0,49,48,62.39,56.71,7,1,1,0,0,1,13,3,1,1254,394496.69,37161.41,355905.03,63950.828,1775.4202 -463,577,1031,1030,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,0,0,8,0,-10.576522,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,49,48,8.333333333333334,1,1,1,0,8,13,3,1,1254,394496.69,37161.41,355905.03,63950.828,1775.4202 -464,578,1032,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,5.8909259,6.2071075,0,0,-1012.322,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,.74784821,6.3762507,37,25,-9,-9,3.333333333333333,1,1,0,0,4,6,2,1,964,440670.47,136355.19,150917.61,0,1002.0048 -465,579,1033,1035,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.1194353,9.0190535,0,5,11,12.863181,0,-9,-9,2019,7,0,42,42,1,0,0,21.287088,21.287088,0,0,0,0,0,1,1,0,1.4668318,0,57.16,56.15,46.5,58.26,8.333333333333334,1,1,0,0,7,12,5,1,574,313956.81,161545.8,211523.06,0,4389.6851 -465,579,1034,-9,1035,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1246.0868,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,574,313956.81,161545.8,211523.06,0,4389.6851 -465,579,1035,1033,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.992517,8.0326061,0,5,-11,-142.49135,0,-9,-9,2019,16,4,37,37,1,4,0,9.3925362,9.3925362,0,0,0,0,7,1,1,0,0,0,46.5,58.26,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,574,313956.81,161545.8,211523.06,0,4389.6851 -466,580,1036,-9,1038,1037,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.4021,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 -466,580,1037,1038,-9,-9,1,1,36,0,2,0,3,3,-9,0,3,8.2629719,8.3823137,0,10,-7,171.14552,0,2,2,2019,10,0,50,50,1,0,0,11.942034,11.942034,0,0,0,0,0,1,1,0,0,0,60.44,46.58,38.16,44.66,8.333333333333334,1,1,0,0,11,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 -466,580,1038,1037,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.6230149,7.7304454,0,10,7,-11.906135,0,2,2,2019,15,3,30,30,1,3,0,7.8979268,7.8979268,0,0,0,0,0,1,1,0,0,0,38.16,44.66,60.44,46.58,8.333333333333334,1,1,0,0,11,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 -466,580,1039,-9,1038,1037,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.1549,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,855,169448.28,64627.871,294629.16,226630.02,2987.7109 -467,581,1040,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.0913715,8.2562113,0,0,0,-931.71863,0,2,2,2019,15,5,15,15,1,5,0,29.975607,29.975607,0,0,0,0,0,1,1,0,3.0467541,0,36.2,64.19,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,114,1406069.3,688396.94,472893.53,0,1730.0641 -468,582,1041,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1122.6025,0,2,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,24.17,-9,-9,5,1,1,1,1,1,9,2,0,605,85106.18,0,0,0,1209.2372 -469,583,1042,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1106.5668,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,6.2246037,0,0,1,1,0,1.0796443,0,50.23,47.06,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,677,132315.22,0,0,0,1558.417 -470,584,1043,-9,1045,1046,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.2368,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 -470,584,1044,-9,1045,1046,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-823.31036,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 -470,584,1045,1046,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,5.1929274,5.0664454,0,6,-2,-61.967529,0,3,2,2019,7,0,42,43,1,0,0,.47678834,.47678834,0,0,0,0,0,1,1,0,4.7005515,0,56.25,44.4,60.12,54.8,8.333333333333334,1,1,0,0,7,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 -470,584,1046,1045,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.3267069,9.4559221,0,6,2,-40.172077,0,2,2,2019,7,0,40,40,1,0,0,28.994688,28.994688,0,0,0,0,0,1,1,0,4.6712875,0,60.12,54.8,56.25,44.4,8.333333333333334,1,1,0,0,7,4,5,1,470.5,650160.31,717267.75,134491,91666.055,4001.241 -471,585,1047,1049,-9,-9,1,0,54,0,1,0,1,1,-9,0,2,9.5632334,9.9099998,0,8,0,.62250239,0,-9,-9,2019,24,10,47,47,1,10,0,50.220741,50.220741,0,0,0,0,0,0,0,0,0,0,33.67,55.45,51.94,55.88,3.333333333333333,1,1,0,0,9,5,5,1,695.33331,657061.88,279941.59,372439.47,108371.46,7461.1206 -471,585,1048,-9,1047,1049,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1063.0219,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,5,1,695.33331,657061.88,279941.59,372439.47,108371.46,7461.1206 -471,585,1049,1047,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.8844557,8.9459476,0,8,0,-83.128136,0,2,1,2019,11,1,45,45,1,1,0,19.324469,19.324469,0,0,0,0,0,0,0,0,0,0,51.94,55.88,33.67,55.45,10,1,1,0,0,9,5,5,1,695.33331,657061.88,279941.59,372439.47,108371.46,7461.1206 -472,586,1050,-9,1052,1053,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1018.9491,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 -472,586,1051,-9,1052,1053,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.256,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 -472,586,1052,1053,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.7932973,7.637032,0,22,-19,-49.402287,0,2,2,2019,10,0,31,29,1,0,0,7.9378476,7.9378476,0,0,0,0,2,1,1,0,3.3926392,0,46.85,60.98,58.47,50.22,1.666666666666667,1,1,0,0,10,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 -472,586,1053,1052,-9,-9,1,1,62,0,2,0,3,3,-9,0,3,8.4854975,8.0621996,0,22,19,52.483952,0,3,3,2019,8,0,41,43,1,0,0,10.55925,10.55925,0,0,0,0,2,1,1,0,2.034903,0,58.47,50.22,46.85,60.98,6.666666666666667,1,1,0,0,10,7,4,1,1262.5,1283836.3,781162.44,632276.63,0,3019.5002 -473,587,1054,1055,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.5479679,7.2833133,0,8,2,114.61245,0,2,2,2019,10,0,45,45,1,0,0,3.6136799,3.6136799,0,0,0,0,0,0,0,0,0,0,48.87,58.55,42.32,37.79,6.666666666666667,1,1,0,0,9,4,4,1,2647.5,914549.88,657987.25,242356.09,32949.313,1757.205 -473,587,1055,1054,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.1969194,7.902596,0,8,-2,15.026666,0,3,2,2019,14,3,23,40,1,3,0,20.249678,20.249678,0,0,0,0,7,0,0,0,0,0,42.32,37.79,48.87,58.55,6.666666666666667,1,1,0,0,9,4,4,1,2647.5,914549.88,657987.25,242356.09,32949.313,1757.205 -474,588,1056,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.9736533,7.063211,0,0,-1029.3029,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,16.004934,19.744156,144.20325,0,1,1,0,4.1030154,6.7491918,49.52,22.28,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,287,461184.06,218444.83,0,0,1750.1555 -475,589,1057,1058,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.518589,6.410531,46,0,-30.305439,0,3,3,2019,7,0,0,41,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8646636,6.3711171,56.19,46.16,46.8,57.03,10,1,1,0,0,10,10,2,1,318,359574.31,240181.34,213444.88,0,1910.707 -475,589,1058,1057,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,1.7492386,1.9073098,46,0,-99.165657,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.9957824,1.7539409,46.8,57.03,56.19,46.16,10,1,1,0,0,7,10,2,1,318,359574.31,240181.34,213444.88,0,1910.707 -476,590,1059,1060,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.9588661,8.7604542,0,8,-4,52.324612,0,1,2,2019,20,8,40,38,1,8,0,18.781458,18.781458,0,0,0,0,7,0,0,0,3.0434456,0,42.33,32.25,18.23,61.2,6.666666666666667,1,1,0,1,7,9,5,1,1196,1237059.1,598479.75,507857.38,76533.781,3133.8152 -476,590,1060,1059,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.5281148,7.4969635,0,8,4,-76.989067,0,3,3,2019,27,11,65,54,1,11,0,4.0512748,4.0512748,0,0,0,0,0,0,0,0,0,0,18.23,61.2,42.33,32.25,1.666666666666667,1,1,0,1,10,9,5,1,1196,1237059.1,598479.75,507857.38,76533.781,3133.8152 -477,591,1061,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.9994469,8.9564619,0,0,0,-957.47443,0,2,2,2019,10,0,48,53,1,0,0,17.847826,17.847826,0,0,0,0,0,1,1,0,5.7620645,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,120,343910.81,319219.66,0,0,2721.0513 -478,592,1062,1063,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.4501677,8.0505695,0,43,-2,58.986519,0,-9,-9,2019,10,0,35,35,1,0,0,15.55209,15.55209,0,0,0,0,0,0,0,0,0,0,52.4,52.91,53.73,44.97,1.666666666666667,1,1,0,0,8,9,5,1,373.5,1055390.4,594681.88,420210.63,7035.4561,3432.7373 -478,592,1063,1062,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.4050169,8.2617874,0,43,2,-45.091743,0,-9,2,2019,10,1,30,40,1,1,0,15.69378,15.69378,0,0,0,0,2,0,0,0,3.1729493,0,53.73,44.97,52.4,52.91,6.666666666666667,1,1,0,0,8,9,5,1,373.5,1055390.4,594681.88,420210.63,7035.4561,3432.7373 -479,593,1064,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.5227499,8.4375191,0,0,0,-1076.396,0,3,3,2019,21,9,42,42,1,9,0,13.820918,13.820918,0,0,0,0,14.5,1,1,0,2.1417489,0,43.93,43.67,-9,-9,6.666666666666667,1,1,0,0,12,7,5,0,278,240198.67,28623.518,0,0,2547.1255 -480,594,1065,1066,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.5720658,7.7143879,0,11,5,-56.857288,0,3,3,2019,16,4,40,40,1,4,0,6.5423808,6.5423808,0,0,0,0,0,0,0,0,0,0,49.04,55.86,50.34,48.53,3.333333333333333,1,1,0,0,10,4,4,1,470.5,509162.19,539801.13,117413.88,49816.152,2308.3354 -480,594,1066,1065,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.1514788,8.3803787,0,8,-5,-156.52502,0,2,-9,2019,2,0,40,40,1,0,0,11.685787,11.685787,0,0,0,0,0,0,0,0,0,0,50.34,48.53,49.04,55.86,8.333333333333334,1,1,0,0,10,4,4,1,470.5,509162.19,539801.13,117413.88,49816.152,2308.3354 -481,595,1067,-9,1070,1068,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.25299,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 -481,595,1068,1070,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7446632,8.5585985,0,21,6,8.0288973,0,3,3,2019,9,0,45,48,1,0,0,12.730068,12.730068,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 -481,595,1069,-9,1070,1068,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3181,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 -481,595,1070,1068,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.338572,7.580266,0,19,-6,35.206337,0,3,2,2019,6,0,45,48,1,0,0,4.4861407,4.4861407,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,507,86102.672,108204.43,106882.68,65960.734,2516.2654 -482,596,1071,1072,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.7294378,7.3905196,0,30,-8,-4.0450025,0,3,3,2019,9,0,40,40,1,0,0,7.517817,7.517817,0,0,0,0,0,1,1,0,1.6255389,0,57.16,56.15,62.49,55.09,6.666666666666667,1,1,0,0,8,4,3,1,1327.5,374911,219133.56,251019.42,0,1440.7146 -482,596,1072,1071,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,30,8,-137.58908,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,57.16,56.15,10,1,1,0,0,3,4,3,1,1327.5,374911,219133.56,251019.42,0,1440.7146 -483,597,1073,1074,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,30,-13,-41.924923,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,60.3,46.58,8.333333333333334,1,1,0,0,0,6,2,1,1769,381619.88,0,292094.63,0,1495.3359 -483,597,1074,1073,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.9643555,6.8625479,30,13,80.172661,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7360826,6.9434104,60.3,46.58,48.28,60.18,8.333333333333334,1,1,0,0,0,6,2,1,1769,381619.88,0,292094.63,0,1495.3359 -484,598,1075,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.8158054,8.8786507,0,0,0,-964.84821,0,2,2,2019,15,3,42,38,1,3,0,13.510031,13.510031,0,0,0,0,0,0,0,0,0,0,34.99,57.97,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,2320,238855.75,0,221391.61,93052.508,4773.3916 -485,599,1076,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.5440969,8.475687,0,0,0,-1030.0515,0,1,1,2019,9,0,50,38,1,0,0,11.697606,11.697606,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,8,8,5,1,854,33490.168,42336.543,0,0,2344.3435 -486,600,1077,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,0,0,0,0,-918.94672,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,46.99,13.98,-9,-9,5,1,1,0,0,7,9,1,1,915,131366.39,67685.969,60572.957,0,882.67725 -486,601,1078,-9,1077,-9,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1099.7917,0,2,-9,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,473,82217.93,0,0,0,-510.46613 -487,602,1079,1080,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,44,-3,26.972059,0,2,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,55.34,54.26,7,1,1,0,0,0,9,2,1,1050,659466.19,400626.94,328355.06,22466.715,1969.0735 -487,602,1080,1079,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.1763115,7.3898354,43,3,-52.263649,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3802967,7.1487021,55.34,54.26,50,47,8.333333333333334,1,1,0,0,8,9,2,1,1050,659466.19,400626.94,328355.06,22466.715,1969.0735 -488,603,1081,1085,-9,-9,1,0,34,0,4,0,2,2,-9,0,3,7.3656726,7.3782063,0,11,-4,-107.39313,0,2,2,2019,4,0,36,54,1,0,0,5.8152528,5.8152528,0,0,0,0,0,1,1,0,0,0,45.75,47.95,52,54.51,0,1,1,0,0,4,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 -488,603,1082,-9,1081,1085,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.5629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 -488,603,1083,-9,1081,1085,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.1701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 -488,603,1084,-9,1081,1085,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-953.992,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 -488,603,1085,1081,-9,-9,1,1,38,0,4,0,2,2,-9,0,3,0,0,0,5,4,90.920006,0,2,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,45.75,47.95,3.333333333333333,1,1,1,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 -488,603,1086,-9,1081,1085,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-924.86145,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,4,2,0,596.83331,296242.41,-47100.711,82705.938,0,2697.8259 -489,604,1087,-9,-9,-9,1,0,46,0,0,0,1,1,1,1,1,7.7846403,7.7674742,0,0,0,-969.91449,-9,3,2,2019,28,12,28,0,1,12,0,8.2638874,8.2638874,0,0,0,1.9766247,0,1,1,0,0,0,23.8,21.86,-9,-9,0,1,1,0,0,10,12,3,0,131,-459892.47,-86286.828,0,0,1101.1824 -490,605,1088,-9,1090,1089,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1731,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,636,199205.09,182898.75,0,0,2786.8276 -490,605,1089,1090,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,8.9010286,8.8073893,0,1,8,-96.601852,-9,3,3,2019,6,0,40,0,1,0,0,21.937128,21.937128,0,0,0,0,0,1,1,0,3.9925632,0,46.03,46.22,56.47,51.02,8.333333333333334,2,3,0,0,6,8,4,0,636,199205.09,182898.75,0,0,2786.8276 -490,605,1090,1089,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,0,0,0,1,-8,38.323376,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,46.03,46.22,8.333333333333334,2,3,1,0,0,8,4,0,636,199205.09,182898.75,0,0,2786.8276 -490,605,1091,-9,1090,1089,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.7851,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,636,199205.09,182898.75,0,0,2786.8276 -491,606,1092,1093,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,43,-1,-22.024763,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3577964,0,48.87,58.55,58.05,54.52,10,1,1,0,0,1,2,2,1,533.5,631552.75,602276,266474.44,0,1936.9368 -491,606,1093,1092,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,7.2705922,7.2660689,43,1,-90.095253,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.4719987,6.9139385,58.05,54.52,48.87,58.55,8.333333333333334,1,1,0,0,5,2,2,1,533.5,631552.75,602276,266474.44,0,1936.9368 -491,607,1094,-9,1092,1093,1,1,35,0,0,0,2,2,-9,0,4,8.2426014,8.264329,0,0,0,-1114.3093,-9,2,2,2019,10,0,40,0,1,1,0,7.9157114,7.9157114,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,2,4,1,242,35675.516,-23353.293,0,0,1653.1523 -492,608,1095,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-917.07074,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,41.36,17.32,-9,-9,5,1,1,0,0,0,6,1,1,631,-20638.283,0,0,0,1371.5393 -493,609,1096,-9,1098,1097,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.6311,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,986.66669,641855.13,374087.97,243972.83,48555.633,4947.5254 -493,609,1097,1098,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,8.6745825,8.4498863,0,6,2,-86.69136,0,2,2,2019,11,0,37,40,1,0,0,18.218481,18.218481,0,0,0,0,0,1,1,0,0,0,53.06,42.33,48.11,56.11,6.666666666666667,1,1,0,0,7,13,5,1,986.66669,641855.13,374087.97,243972.83,48555.633,4947.5254 -493,609,1098,1097,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.6929502,8.9830761,0,6,-2,-15.737547,0,2,2,2019,7,0,38,38,1,0,0,18.316021,18.316021,0,0,0,0,0,1,1,0,0,0,48.11,56.11,53.06,42.33,10,1,1,0,0,7,13,5,1,986.66669,641855.13,374087.97,243972.83,48555.633,4947.5254 -493,610,1099,-9,1098,1097,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-965.14655,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.2662351,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,1,1,2080,-124857.75,0,0,0,-164.97842 -494,611,1100,1101,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.9125586,8.578187,0,8,0,-131.8494,0,1,2,2019,5,0,12,10,1,0,0,68.391129,68.391129,0,0,0,0,0,0,0,0,8.045784,0,55.96,49.93,52.31,58.29,10,1,1,0,0,9,8,5,1,585,1106710,518986.22,768361.06,54675.992,4981.9316 -494,611,1101,1100,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.3871288,8.4499359,0,8,0,58.6031,0,1,1,2019,7,0,15,15,1,0,0,31.033327,31.033327,0,0,0,0,0,0,0,0,3.0705249,0,52.31,58.29,55.96,49.93,0,1,1,0,0,9,8,5,1,585,1106710,518986.22,768361.06,54675.992,4981.9316 -494,612,1102,-9,1101,1100,1,0,20,0,0,1,1,0,0,0,3,0,6.3224101,6.3886628,0,0,-1069.8658,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,6.1023517,0,36.01,53.85,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1368,167718.55,0,0,0,255.4451 -495,613,1103,1104,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.7211266,8.6791763,0,21,-1,154.10139,0,2,1,2019,13,3,50,50,1,3,0,14.652799,14.652799,0,0,0,0,0,1,1,0,3.6359186,0,46.34,61.24,43.09,61.58,3.333333333333333,1,1,0,0,6,1,4,1,1108.5,20115.002,228762.47,144975.14,81962.047,2814.8999 -495,613,1104,1103,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,21,1,25.368343,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.0594134,0,43.09,61.58,46.34,61.24,3.333333333333333,1,1,1,1,6,1,4,1,1108.5,20115.002,228762.47,144975.14,81962.047,2814.8999 -496,614,1105,1106,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,27,1,-159.36438,0,3,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.02,38.91,54.79,55.86,6.666666666666667,4,2,0,0,0,5,3,1,961.5,321212.31,55879.813,200363.66,30730.91,2372.3345 -496,614,1106,1105,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.0020399,7.943572,0,26,-1,25.05253,0,3,2,2019,9,0,37,38,1,0,0,10.209931,10.209931,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,36.02,38.91,8.333333333333334,2,3,0,0,10,5,3,1,961.5,321212.31,55879.813,200363.66,30730.91,2372.3345 -496,615,1107,-9,1105,1106,1,1,21,0,0,0,2,2,-9,0,5,7.9896331,8.1755772,0,0,0,-1053.7631,-9,2,2,2019,7,0,40,0,1,0,1,8.0740252,8.0740252,0,0,0,0,7,1,1,0,0,0,41.07,60.93,-9,-9,6.666666666666667,4,2,0,0,2,5,4,1,1503,-440523.91,0,0,0,1243.8855 -497,616,1108,1110,-9,-9,1,0,43,0,1,0,1,1,-9,1,2,0,0,0,23,-1,-116.90471,0,2,2,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,44.92,25.83,46.16,58.62,8.333333333333334,1,1,0,0,0,10,4,1,1226,357492.06,353605.03,326723.66,157738.41,3279.0022 -497,616,1109,-9,1108,1110,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-942.10571,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,10,4,1,1226,357492.06,353605.03,326723.66,157738.41,3279.0022 -497,616,1110,1108,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.6526766,9.2145138,0,11,1,-177.37723,0,-9,-9,2019,14,4,42,40,1,4,0,22.66753,22.66753,0,0,0,0,2,1,1,0,.45962033,0,46.16,58.62,44.92,25.83,6.666666666666667,1,1,0,0,13,10,4,1,1226,357492.06,353605.03,326723.66,157738.41,3279.0022 -497,617,1111,-9,1108,1110,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-889.85901,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,.72896087,0,43.66,48.19,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,342,-57850.852,0,0,0,160.12082 -498,618,1112,1113,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.2885842,6.418005,8,-8,22.663296,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,.79829502,0,120,1,1,0,2.5175765,5.9984937,42.12,34.54,55,45,6.666666666666667,1,1,0,0,0,11,2,1,298.5,445434.5,163584.91,210064.81,0,1714.944 -498,618,1113,1112,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,0,0,8,8,227.17659,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,127.70537,0,0,1,1,0,0,0,55,45,42.12,34.54,8,1,1,0,0,0,11,2,1,298.5,445434.5,163584.91,210064.81,0,1714.944 -499,619,1114,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.5269113,7.0599875,0,0,0,-946.69684,0,3,3,2019,10,0,16,0,1,0,0,6.3993874,6.3993874,0,0,0,0,0,1,0,1,0,0,63.41,39.7,-9,-9,5,4,2,0,0,3,2,2,0,2694.5,-150136.28,-88395.398,0,0,875.98792 -499,619,1115,-9,1114,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.1244,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,2,0,2694.5,-150136.28,-88395.398,0,0,875.98792 -500,620,1116,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1038.7262,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.03,59.58,-9,-9,10,1,1,0,1,0,1,1,0,1213,-70441.977,0,264420.59,0,1156.3661 -501,621,1117,-9,-9,1118,1,1,55,0,0,0,2,2,-9,0,4,8.1483746,7.8199143,0,0,0,-947.36945,0,3,3,2019,8,0,40,40,1,0,0,11.304627,11.304627,0,0,0,0,0,1,1,0,1.7968423,0,57.16,56.15,-9,-9,5,1,1,0,0,10,2,4,1,1837,102349.81,53922.781,0,0,1462.769 -501,622,1118,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1056.276,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2882538,0,55.54,40.82,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,1115,6083.5356,0,0,0,965.16028 -502,623,1119,1120,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.1303339,7.9845824,0,31,0,93.917976,0,2,1,2019,12,0,40,40,1,0,0,8.5849018,8.5849018,0,0,0,0,0,0,0,0,0,0,44.54,39,29.31,60.95,6.666666666666667,1,1,0,0,12,2,5,1,1217,576957,-12516.827,233299.03,0,3600.8594 -502,623,1120,1119,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.6213818,8.5042629,0,30,0,29.348984,0,2,2,2019,23,10,37,37,1,10,0,16.389536,16.389536,0,0,0,0,0,0,0,0,.2670517,0,29.31,60.95,44.54,39,3.333333333333333,1,1,0,1,9,2,5,1,1217,576957,-12516.827,233299.03,0,3600.8594 -503,624,1121,1122,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.8475928,5.2516313,56,-1,49.583828,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.795948,52,45,54,46,7,1,1,0,0,0,4,3,1,902.5,366714.06,278720.03,60886.973,0,2386.5825 -503,624,1122,1121,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.7824173,7.3630214,56,1,-39.099792,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.7157764,54,46,52,45,7,1,1,0,0,0,4,3,1,902.5,366714.06,278720.03,60886.973,0,2386.5825 -503,625,1123,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.9958534,7.7901282,0,0,0,-964.04962,0,-9,-9,2019,12,0,37,20,1,2,0,8.8635788,8.8635788,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,7,4,3,1,347,75287.203,0,0,0,915.02161 -504,626,1124,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-817.54211,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,48.41,29.02,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,539,-192980.5,0,0,0,1017.9891 -505,627,1125,1126,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,5,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,1,0,5.8993983,0,0,1,1,0,0,0,31.44,22.39,39.39,37.66,3.333333333333333,1,1,0,1,0,13,1,1,752,6678.2891,0,0,0,1917.1492 -505,627,1126,1125,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,8,-5,0,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.39,37.66,31.44,22.39,1.666666666666667,1,1,0,1,0,13,1,1,752,6678.2891,0,0,0,1917.1492 -506,628,1127,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8526573,8.9106579,0,0,0,-994.27179,0,2,2,2019,8,0,42,40,1,0,0,23.962784,23.962784,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,1448,704807.63,500062.25,152296.02,76863.125,2706.8877 -507,629,1128,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,5.9712019,5.7270441,0,0,-970.46228,-9,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,5.8258076,30.7,54.89,-9,-9,5,1,1,1,0,9,2,2,1,1561,299570.47,26161.076,365564.28,0,580.987 -508,630,1129,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.74323,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46.68,43.22,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,1171,488379.56,0,151090.38,0,1367.1527 -509,631,1130,1131,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7616758,7.7758975,0,34,-1,107.94418,0,2,2,2019,11,0,25,24,1,0,0,11.521285,11.521285,0,0,0,0,0,0,0,0,.24065909,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,1299,1453365.5,800250.88,514960.97,24019.438,3146.3691 -509,631,1131,1130,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6519413,8.589736,0,34,1,-17.339493,0,-9,2,2019,10,0,43,41,1,0,0,18.201189,18.201189,0,0,0,0,0,0,0,0,1.7805053,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,12,9,5,1,1299,1453365.5,800250.88,514960.97,24019.438,3146.3691 -509,632,1132,-9,1130,1131,1,1,24,0,0,0,2,2,-9,0,3,8.0713654,8.1776314,0,0,0,-1124.7751,0,2,2,2019,19,9,38,0,1,9,1,8.600503,8.600503,0,0,0,0,0,0,0,0,0,0,40.48,44.94,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,610,-38934.27,0,0,0,1077.9459 -510,633,1133,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1140.8802,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,48,49,-9,-9,7,1,1,0,1,2,11,1,0,409,0,0,0,0,-57.0695 -510,634,1134,-9,1133,-9,1,0,27,0,0,0,3,3,-9,0,5,7.5741739,7.9621091,0,0,0,-1073.1838,0,3,-9,2019,6,0,38,20,1,0,1,6.8645844,6.8645844,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,11,3,0,3522,122508.6,0,0,0,1234.0206 -511,635,1135,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,2,0,0,0,0,0,-943.81519,-9,2,2,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,29.13,57.25,-9,-9,5,1,1,0,0,3,12,1,0,1103,-245093.78,0,0,0,508.55209 -512,636,1136,-9,1141,1139,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.71606,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 -512,636,1137,-9,1141,1139,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-894.62433,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 -512,636,1138,-9,1141,1139,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.50653,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 -512,636,1139,1141,-9,-9,1,1,38,1,4,0,2,2,-9,0,5,8.3623705,8.5295582,0,7,-1,-142.56761,0,-9,-9,2019,8,0,24,23,1,0,0,26.284279,26.284279,0,0,0,0,0,1,1,0,0,0,57.36,49.4,57.06,57.76,6.666666666666667,1,1,0,0,9,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 -512,636,1140,-9,1141,1139,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.6653,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 -512,636,1141,1139,-9,-9,1,0,39,1,4,0,1,1,-9,0,5,9.0941315,9.6250916,0,16,1,-109.33121,0,3,3,2019,8,0,50,45,1,0,0,29.282675,29.282675,0,0,0,0,0,1,1,0,2.784337,0,57.06,57.76,57.36,49.4,8.333333333333334,1,1,0,0,9,4,5,1,961.66669,1256102.6,37712.59,361787.44,117762.01,5104.9536 -513,637,1142,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.2601805,6.2168522,0,0,-973.83661,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0312624,6.3689003,54.6,50.69,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,724,1006044.4,129989.53,466091.09,0,833.09387 -514,638,1143,1144,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.252861,8.3128405,0,34,1,-51.89621,0,3,2,2019,12,0,45,45,1,0,0,7.2739539,7.2739539,0,0,0,0,7,0,0,0,3.7729068,0,52.41,42.18,46.56,50.26,5,1,1,0,0,11,5,4,0,406,-48064.547,135516.27,296524.31,37034.051,2091.644 -514,638,1144,1143,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.1683145,7.0296068,0,34,-1,-112.00153,0,3,-9,2019,11,0,26,20,1,0,0,5.3356028,5.3356028,0,0,0,0,14.5,0,0,0,4.7805409,0,46.56,50.26,52.41,42.18,3.333333333333333,1,1,0,0,11,5,4,0,406,-48064.547,135516.27,296524.31,37034.051,2091.644 -515,639,1145,-9,1148,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.7135,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,6,-9,0,0,13,2,0,670,-144934.92,0,0,0,1328.0247 -515,639,1146,-9,1148,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.6136,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,670,-144934.92,0,0,0,1328.0247 -515,639,1147,-9,1148,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.72382,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,670,-144934.92,0,0,0,1328.0247 -515,639,1148,-9,-9,-9,1,0,28,1,3,0,3,3,-9,1,3,6.0366192,6.2797952,0,0,0,-991.69879,0,-9,-9,2019,8,0,15,12,1,0,0,3.0912786,3.0912786,0,0,0,0,111,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,670,-144934.92,0,0,0,1328.0247 -516,640,1149,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.0708599,8.5505304,0,0,0,-1069.6704,0,1,1,2019,19,8,25,36,1,8,0,14.960257,14.960257,0,0,0,0,0,0,0,0,2.9336023,0,27.89,56.24,-9,-9,5,1,1,0,0,10,9,4,1,11146,1167261.3,481685.69,260207.22,0,1311.4891 -517,641,1150,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.421236,8.7516394,0,2,6,-41.220467,0,-9,-9,2019,17,4,41,37,1,4,0,13.825394,13.825394,0,0,0,0,0,0,0,0,8.9936218,0,38.86,59.06,47.32,52.7,3.333333333333333,1,1,0,0,7,11,5,1,1509,301800.94,268294.69,195720.5,86458.344,5837.4126 -517,642,1151,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.6928606,8.5946989,0,2,-6,59.493763,0,-9,-9,2019,11,1,43,41,1,1,0,13.078867,13.078867,0,0,0,0,0,0,0,0,.20019871,0,47.32,52.7,38.86,59.06,8.333333333333334,1,1,0,0,9,11,5,1,408,158201.58,-16450.797,0,0,1748.8779 -518,643,1152,-9,1153,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.93634,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,995.5,-70199.992,0,0,0,1249.196 -518,643,1153,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1008.4031,0,2,2,2019,24,10,0,40,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,39.42,57.44,-9,-9,0,1,1,1,1,7,5,1,0,995.5,-70199.992,0,0,0,1249.196 -519,644,1154,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.0255976,7.7858109,0,0,0,-994.81995,0,2,2,2019,14,2,35,37,1,2,0,9.0662317,9.0662317,0,0,0,0,0,1,1,0,.69905519,0,43.12,58.55,-9,-9,5,1,1,0,0,5,9,4,1,354,467966,-67933.25,0,0,1252.8197 -520,645,1155,1156,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5941391,8.5145864,0,4,1,-27.436205,0,2,2,2019,23,10,43,41,1,10,0,11.794331,11.794331,0,0,0,0,0,0,0,0,0,0,37.71,26.03,33.52,38.98,3.333333333333333,1,1,0,0,12,2,5,0,363,2574772.3,1981852.5,278277.72,0,3975.5054 -520,645,1156,1155,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1904001,7.6925039,0,4,-1,-27.673983,0,-9,-9,2019,28,12,40,47,1,12,0,10.313344,10.313344,0,0,0,0,0,0,0,0,0,0,33.52,38.98,37.71,26.03,6.666666666666667,1,1,0,0,2,2,5,0,363,2574772.3,1981852.5,278277.72,0,3975.5054 -521,646,1157,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1147.5214,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,40.73,36.55,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1002,654990.56,0,157253.73,0,1658.3424 -522,647,1158,1159,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.0055866,8.2763615,0,15,-16,-30.902824,0,2,1,2019,7,0,44,34,1,0,0,8.5835695,8.5835695,0,0,0,0,2,1,1,0,2.3520582,0,61.43,43.34,50.54,20.27,10,1,1,0,0,9,2,3,1,2252.5,1472456,647027,365210.63,0,3574.8074 -522,647,1159,1158,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,5.4895635,5.3873248,15,16,-127.05483,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0251412,5.2615118,50.54,20.27,61.43,43.34,8.333333333333334,1,1,0,0,6,2,3,1,2252.5,1472456,647027,365210.63,0,3574.8074 -523,648,1160,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,8.822155,8.8602552,0,0,0,-1062.951,0,2,3,2019,21,9,70,84,1,9,0,11.5085,11.5085,0,0,0,0,0,1,1,0,3.1409111,0,35.15,46.31,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,1558,495031.34,674085.94,101912.22,7669.9927,2910.8416 -524,649,1161,1164,-9,-9,1,1,48,0,2,0,3,3,-9,0,2,7.9786916,7.9483428,0,6,4,9.985714,-9,3,2,2019,7,0,50,0,1,0,0,8.0825424,8.0825424,0,0,0,0,0,1,1,0,0,0,49.77,49.55,51.73,58.82,6.666666666666667,1,1,0,0,7,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 -524,649,1162,-9,1164,1161,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.60645,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 -524,649,1163,-9,1164,1161,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2742,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 -524,649,1164,1161,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,7.2035871,7.3678374,0,6,-4,-76.785355,0,3,2,2019,11,0,25,23,1,0,0,5.9446054,5.9446054,0,0,0,0,0,1,1,0,8.2199726,0,51.73,58.82,49.77,49.55,8.333333333333334,1,1,0,0,3,13,3,1,542.25,395262.59,8408.1738,227761.27,4380.9077,3725.8989 -524,650,1165,-9,1164,1161,1,1,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1179.2747,-9,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,422,-131732.73,0,0,0,732.92786 -525,651,1166,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,6.8720617,6.925128,0,0,0,-1131.6278,0,2,2,2019,6,0,16,16,1,0,0,6.0249124,6.0249124,0,0,0,0,0,1,1,0,0,0,56.59,44.56,-9,-9,8.333333333333334,4,2,0,1,8,9,2,0,821,306489.13,0,170917.61,-20025.279,677.20447 -526,652,1167,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1289692,8.0658054,0,0,0,-986.45044,0,2,1,2019,11,0,36,37,1,0,0,10.339358,10.339358,0,0,0,0,0,0,0,0,0,0,50.66,50.86,-9,-9,8.333333333333334,1,1,0,0,5,12,4,1,301,-187329.67,213601.41,0,0,1485.635 -527,653,1168,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.1591558,6.1870279,0,0,-1086.0608,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3709109,6.2279272,59.42,36.34,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,350,63050.918,73854.859,0,0,1685.2661 -528,654,1169,1170,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,49,8,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.4601076,0,53,47,48.69,41.09,7,1,1,0,0,0,13,2,0,616,-15098.723,92301.875,0,0,3336.9478 -528,654,1170,1169,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-8,0,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.3135314,0,48.69,41.09,53,47,6.666666666666667,1,1,0,0,0,13,2,0,616,-15098.723,92301.875,0,0,3336.9478 -529,655,1171,1172,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,2.8632028,2.5064063,43,2,69.152184,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.22091489,2.8932407,57.63,45.09,46.16,58.62,8.333333333333334,1,1,0,0,0,6,3,1,757.5,624765.06,345174.69,219253.03,0,1964.8538 -529,655,1172,1171,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,8.0555391,7.8207054,43,-2,-61.863403,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.8353014,7.8768015,46.16,58.62,57.63,45.09,8.333333333333334,1,1,0,0,4,6,3,1,757.5,624765.06,345174.69,219253.03,0,1964.8538 -530,656,1173,1174,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.9123354,8.2243872,0,3,0,-54.675613,0,-9,-9,2019,8,0,46,40,1,0,0,10.669151,10.669151,0,0,0,0,0,0,0,0,0,0,46.67,55.57,42.15,51.24,8.333333333333334,1,1,0,0,8,8,5,0,978,231909.64,82386.977,146563.47,92360,3460.1421 -530,656,1174,1173,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,8.6930027,8.804903,0,3,0,5.2806277,0,2,2,2019,4,0,45,45,1,0,0,13.519046,13.519046,0,0,0,0,0,0,0,0,0,0,42.15,51.24,46.67,55.57,8.333333333333334,1,1,0,0,6,8,5,0,978,231909.64,82386.977,146563.47,92360,3460.1421 -531,657,1175,1176,-9,-9,1,1,63,0,1,0,1,1,-9,0,4,0,7.1446848,7.4109926,6,8,69.755707,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.8606129,7.2549849,58.72,51.29,46.53,61.33,8.333333333333334,1,1,0,0,3,12,3,1,1453,1820074.1,1356866.9,131264.63,0,3122.2095 -531,657,1176,1175,-9,-9,1,0,55,0,1,0,2,2,-9,0,5,8.2490854,8.0159664,0,6,-8,145.52386,0,2,1,2019,10,0,38,34,1,0,0,11.474992,11.474992,0,0,0,0,0,0,0,0,2.395191,0,46.53,61.33,58.72,51.29,8.333333333333334,1,1,0,0,7,12,3,1,1453,1820074.1,1356866.9,131264.63,0,3122.2095 -531,657,1177,-9,1176,1175,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-992.36578,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.38647681,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1453,1820074.1,1356866.9,131264.63,0,3122.2095 -532,658,1178,1179,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.270751,8.3464804,0,28,-3,-103.93593,0,2,3,2019,16,5,35,41,1,5,0,12.791714,12.791714,0,0,0,0,0,0,0,0,3.0380914,0,51.67,60.18,42.85,60.33,8.333333333333334,1,1,0,0,11,2,5,1,636,1132911.1,873070.19,291199,39677.477,3695.9858 -532,658,1179,1178,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3846979,8.9740534,6.4103131,28,3,15.16278,0,3,3,2019,14,3,45,50,1,3,0,14.93119,14.93119,0,0,0,0,0,0,0,0,0,6.8538461,42.85,60.33,51.67,60.18,8.333333333333334,1,1,0,0,11,2,5,1,636,1132911.1,873070.19,291199,39677.477,3695.9858 -532,659,1180,-9,1178,1179,1,1,20,0,0,0,2,2,-9,0,5,8.4198637,8.5989313,0,0,0,-892.89893,0,2,2,2019,0,0,45,40,1,0,1,10.256903,10.256903,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,339,127141.34,0,0,0,1368.7542 -532,660,1181,-9,1178,1179,1,1,20,0,0,0,2,2,-9,0,4,7.462008,7.375699,0,0,0,-912.82648,0,2,2,2019,6,0,40,0,1,0,1,5.1633973,5.1633973,0,0,0,0,0,0,0,0,1.3062901,0,50.29,52.35,-9,-9,6.666666666666667,1,1,0,0,3,2,3,1,848,-148908.72,0,0,0,1086.4512 -533,661,1182,1183,-9,-9,1,0,59,0,0,0,3,3,-9,1,4,7.6866302,7.8519058,4.3146873,34,-7,-37.419163,0,2,3,2019,5,0,27,37,1,0,0,9.415349,9.415349,0,0,0,0,0,1,1,0,6.071207,4.5657148,62.25,45.63,54.96,53.17,8.333333333333334,1,1,0,0,8,9,5,0,237,1932458.1,1756302.5,217028.34,24112.738,6165.3643 -533,661,1183,1182,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,9.1491938,9.0034437,7.4238701,34,7,15.701838,0,3,3,2019,6,0,35,37,1,0,0,37.215931,37.215931,0,0,0,0,0,1,1,0,.84951133,7.6691813,54.96,53.17,62.25,45.63,8.333333333333334,1,1,0,0,8,9,5,0,237,1932458.1,1756302.5,217028.34,24112.738,6165.3643 -534,662,1184,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,8.8663511,8.6350183,0,0,0,-1017.6095,0,2,2,2019,12,0,23,30,1,0,0,32.663803,32.663803,0,0,0,0,0,1,1,0,0,0,46.56,52.17,-9,-9,6.666666666666667,1,1,0,0,6,9,4,0,679.5,812113.19,253637.5,436786.63,34389.59,3043.4072 -534,662,1185,-9,1184,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1074.4896,-9,2,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.11,47.7,-9,-9,8.333333333333334,1,1,0,0,0,9,4,0,679.5,812113.19,253637.5,436786.63,34389.59,3043.4072 -535,663,1186,-9,1187,1188,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.81158,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,276,557788.88,423679.03,0,0,2919.3447 -535,663,1187,1188,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,7.6440263,7.4562397,0,2,-1,100.46046,0,-9,-9,2019,7,0,22,38,1,0,0,13.218834,13.218834,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.45,64.19,8.333333333333334,1,1,0,0,3,10,4,0,276,557788.88,423679.03,0,0,2919.3447 -535,663,1188,1187,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.6741724,8.6161518,0,2,1,-117.55925,0,1,2,2019,18,7,45,50,1,7,0,11.779849,11.779849,0,0,0,0,0,1,1,0,1.3653576,0,30.45,64.19,57.16,56.15,3.333333333333333,1,1,0,0,7,10,4,0,276,557788.88,423679.03,0,0,2919.3447 -536,664,1189,1190,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.805119,7.1447587,25,-1,9.7118797,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3769035,7.1328092,57.16,56.15,50.71,36.29,10,1,1,0,0,4,2,4,1,1227.5,972747.56,574085.25,269334.94,0,4456.8696 -536,664,1190,1189,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,8.1338787,7.9148326,25,1,6.0666695,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.3872089,8.6915569,50.71,36.29,57.16,56.15,5,1,1,0,0,0,2,4,1,1227.5,972747.56,574085.25,269334.94,0,4456.8696 -537,665,1191,1192,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.7165298,7.5049505,10,7,44.394711,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1023645,7.8559551,59.46,46.99,47.98,48.03,10,1,1,0,0,0,7,3,1,258,2349048,664891.75,286467.59,0,2537.7026 -537,665,1192,1191,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.3584614,7.068181,10,-7,47.496838,0,1,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3296432,6.8948083,47.98,48.03,59.46,46.99,8.333333333333334,1,1,0,0,9,7,3,1,258,2349048,664891.75,286467.59,0,2537.7026 -538,666,1193,-9,1195,1196,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-849.13171,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 -538,666,1194,-9,1195,1196,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6539,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 -538,666,1195,1196,-9,-9,1,0,40,2,2,0,2,2,-9,0,4,8.432683,8.585844,0,11,4,-18.062376,0,2,1,2019,9,0,31,31,1,0,0,15.460766,15.460766,0,0,0,0,0,1,1,0,2.4273751,0,57.16,56.15,49.73,53.97,8.333333333333334,1,1,0,0,12,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 -538,666,1196,1195,-9,-9,1,1,36,2,2,0,1,1,-9,0,4,8.9485645,8.9015064,0,11,-4,54.968468,0,2,2,2019,8,1,60,90,1,1,0,14.933437,14.933437,0,0,0,0,0,1,1,0,2.3005652,0,49.73,53.97,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,125.25,443617.47,-53251.82,355280.16,61169.09,3622.626 -539,667,1197,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.0489697,7.2213569,0,0,-912.68683,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,2.6086085,7.5963221,44.48,29.84,-9,-9,3.333333333333333,1,1,0,1,4,10,3,1,643,410432.56,45440.773,311194.31,0,2023.3063 -540,668,1198,-9,1200,1199,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-846.52313,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 -540,668,1199,1200,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.5989418,8.6825237,0,6,-1,18.439388,0,3,2,2019,12,0,39,41,1,0,0,12.143198,12.143198,0,0,0,0,0,1,1,0,0,0,49.04,55.86,50.14,53.97,6.666666666666667,1,1,0,0,7,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 -540,668,1200,1199,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.2097025,8.0470772,0,6,1,7.4177837,0,2,2,2019,9,0,40,40,1,0,0,10.287595,10.287595,0,0,0,0,14.5,1,1,0,0,0,50.14,53.97,49.04,55.86,8.333333333333334,1,1,0,0,4,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 -540,668,1201,-9,1200,1199,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.24103,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,0,612.25,460435.81,334044.88,103912.93,2628.23,3311.0698 -541,669,1202,-9,1204,1205,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.2397,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 -541,669,1203,-9,1204,1205,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.6532,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 -541,669,1204,1205,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.9338474,8.8072701,0,23,2,-125.84131,0,3,2,2019,10,0,35,55,1,1,0,26.487782,26.487782,0,0,0,0,0,1,1,0,1.9084724,0,51,54,56.92,49.39,8,1,1,0,0,2,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 -541,669,1205,1204,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.2408791,9.10079,0,6,-2,-33.51078,0,-9,-9,2019,6,0,60,70,1,0,0,17.348969,17.348969,0,0,0,0,0,1,1,0,0,0,56.92,49.39,51,54,5,1,1,0,0,6,12,5,1,720.25,1381278.6,935088.5,390765.38,0,5956.0195 -542,670,1206,1207,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,7.1652565,7.3245239,0,4,-3,57.801018,0,-9,-9,2019,11,0,2,35,1,0,0,91.412895,91.412895,0,0,0,0,0,0,0,0,6.900351,0,49.04,55.86,54.2,57.49,6.666666666666667,1,1,0,0,10,6,5,1,1186,702308.69,351890.19,214388.19,0,3791.6738 -542,670,1207,1206,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.9877539,9.1460476,0,4,3,43.774769,0,2,2,2019,11,0,37,35,1,0,0,24.736629,24.736629,0,0,0,0,0,0,0,0,6.6578135,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,9,6,5,1,1186,702308.69,351890.19,214388.19,0,3791.6738 -543,671,1208,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-995.80969,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,12.098961,0,0,1,1,0,2.1651511,0,28.71,18.35,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,596,-134629.77,0,0,0,1199.2513 -544,672,1209,1210,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.6137471,7.3750238,53,3,12.896618,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,8.640089,7.4352021,57.16,56.15,63.41,29.17,10,1,1,0,0,0,7,3,1,805.5,693292.13,574832.5,221886.78,0,4814.2139 -544,672,1210,1209,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.1225905,7.4618487,53,-3,59.218819,0,2,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,8.2479916,7.328516,63.41,29.17,57.16,56.15,10,1,1,0,0,0,7,3,1,805.5,693292.13,574832.5,221886.78,0,4814.2139 -545,673,1211,1212,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,7.3457808,7.476193,0,1,0,44.737576,-9,2,2,2019,12,1,30,0,1,1,0,5.8773136,5.8773136,0,0,0,0,0,0,0,0,3.8678062,0,36.69,57.54,31,49.76,6.666666666666667,1,1,0,0,7,12,3,1,400,1273054.8,258449.31,212456.59,41284.867,1565.2979 -545,673,1212,1211,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,5.7062492,5.9327407,0,1,9,-5.014977,-9,2,2,2019,12,0,50,0,1,0,0,.59148824,.59148824,0,0,0,0,0,0,0,0,3.6362906,0,31,49.76,36.69,57.54,6.666666666666667,1,1,0,0,9,12,3,1,400,1273054.8,258449.31,212456.59,41284.867,1565.2979 -546,674,1213,1215,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.668478,8.4546738,0,17,-2,-97.051659,0,2,2,2019,4,0,38,38,1,0,0,20.95351,20.95351,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,2,3,0,0,12,11,5,1,624.33331,536261.19,84823.969,164330.27,33519.5,4533.3447 -546,674,1214,-9,1213,1215,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.6826,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,11,5,1,624.33331,536261.19,84823.969,164330.27,33519.5,4533.3447 -546,674,1215,1213,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8440266,8.9886837,0,16,2,14.392432,0,2,2,2019,12,0,38,38,1,0,0,23.627661,23.627661,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,2,3,0,0,12,11,5,1,624.33331,536261.19,84823.969,164330.27,33519.5,4533.3447 -547,675,1216,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.9263163,7.2713799,0,0,-1104.9086,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9914293,44.87,55.13,-9,-9,10,1,1,0,0,4,7,2,0,1870,805249.75,169979.63,299466.53,0,787.94507 -548,676,1217,1218,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.9191699,6.6854634,0,9,2,82.996643,0,2,2,2019,18,7,28,30,1,7,0,4.0582376,4.0582376,0,0,0,0,0,0,0,0,0,0,47.33,39.13,43.57,51.63,8.333333333333334,1,1,0,0,8,9,4,0,363.5,29695.855,19705.234,0,0,2579.3262 -548,676,1218,1217,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.0413828,8.0866785,0,9,-2,15.167603,0,3,2,2019,13,2,40,40,1,2,0,10.300104,10.300104,0,0,0,0,0,0,0,0,7.581706,0,43.57,51.63,47.33,39.13,6.666666666666667,1,1,0,0,10,9,4,0,363.5,29695.855,19705.234,0,0,2579.3262 -549,677,1219,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,4.2652783,3.9590645,0,0,-1085.9208,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4392009,4.182107,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,10,8,2,1,1250,51028.453,110530.37,0,0,-1040.0847 -549,678,1220,-9,-9,1219,1,1,25,0,0,0,1,1,-9,0,4,8.618228,8.6835775,0,0,0,-886.70782,-9,-9,2,2019,13,1,48,0,1,1,0,11.641022,11.641022,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,3,8,5,1,623,215654.81,90175.508,0,0,1839.5504 -550,679,1221,1222,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.4761043,7.5563545,0,37,-7,-38.933411,0,3,3,2019,7,0,30,38,1,0,0,8.9363623,8.9363623,0,0,0,0,0,1,1,0,0,0,60.14,36.98,37.82,39.57,10,2,3,0,1,11,5,3,1,259,514522.91,287741.47,216935.84,30603.973,1357.6802 -550,679,1222,1221,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,8,7,49.162323,0,3,3,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.82,39.57,60.14,36.98,8.333333333333334,2,3,0,1,0,5,3,1,259,514522.91,287741.47,216935.84,30603.973,1357.6802 -550,680,1223,-9,1222,1221,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1072.533,0,3,3,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.77571398,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,0,0,5,1,1,436,-247783.31,0,0,0,-173.19612 -550,681,1224,-9,1222,1221,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1143.1547,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,6.666666666666667,2,3,0,0,1,5,1,1,1754,-235229.41,0,0,0,3088.2358 -551,682,1225,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.7112269,7.6411033,0,0,0,-1054.5872,0,1,1,2019,6,0,80,80,1,0,0,2.6193514,2.6193514,0,0,0,0,0,0,0,0,5.5784435,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,1038,188585.05,502418.38,86958.773,0,955.83539 -552,683,1226,-9,1228,1229,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1026.2498,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,7,4,0,574,981671,529005.19,198772.81,0,2456.261 -552,683,1227,-9,1228,1229,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.91443,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,574,981671,529005.19,198772.81,0,2456.261 -552,683,1228,1229,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,7.9656796,7.799016,0,18,-22,7.9250536,0,3,3,2019,10,0,40,40,1,0,0,7.5434847,7.5434847,0,0,0,0,0,1,1,0,0,0,57.16,56.15,65.21000000000001,31.08,8.333333333333334,2,3,0,0,4,7,4,0,574,981671,529005.19,198772.81,0,2456.261 -552,683,1229,1228,-9,-9,1,1,64,0,2,0,2,2,-9,0,2,8.0240774,7.8847518,6.5107284,18,22,131.29311,0,3,2,2019,11,0,39,39,1,0,0,7.7730808,7.7730808,0,0,0,0,0,1,1,0,5.7944541,6.7940149,65.21000000000001,31.08,57.16,56.15,5,1,1,0,0,10,7,4,0,574,981671,529005.19,198772.81,0,2456.261 -553,684,1230,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3368549,9.1699572,0,0,0,-875.20618,0,3,3,2019,35,12,56,55,1,12,0,19.60475,19.60475,0,0,0,0,5.48,0,0,0,0,0,8.34,67.95,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,410,189096.53,130560.59,653425.56,298705.34,3535.897 -554,685,1231,1232,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8612657,7.944077,9,0,-34.125858,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3463025,7.9194579,57.16,56.15,45.36,43.69,1.666666666666667,1,1,0,0,7,9,3,1,579,1432982.1,930037.88,756028.5,0,2911.0503 -554,685,1232,1231,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.439712,6.5444369,9,0,139.92966,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.286099,6.656683,45.36,43.69,57.16,56.15,8.333333333333334,1,1,0,0,6,9,3,1,579,1432982.1,930037.88,756028.5,0,2911.0503 -555,686,1233,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1009.4344,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,33.81,39.98,-9,-9,3.333333333333333,1,1,0,1,3,4,1,0,931,-232622.03,-38718.078,0,0,1276.8135 -556,687,1234,1235,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,0,0,6,-1,50.439583,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.9342651,0,0,1,1,0,0,0,61.87,31.31,41.36,39.55,10,1,1,0,0,0,11,2,0,989.5,329797.63,25238.008,146343.41,0,1126.9934 -556,687,1235,1234,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,2.7575068,2.5612726,6,1,141.04955,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,2.5646036,41.36,39.55,61.87,31.31,6.666666666666667,1,1,0,0,0,11,2,0,989.5,329797.63,25238.008,146343.41,0,1126.9934 -557,688,1236,1237,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.2346659,8.0757303,5,0,38.178516,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7121828,8.5745993,54,46,57.12,38.44,8,1,1,0,0,0,11,5,1,221,2287948,1449077,301110.81,0,5029.3628 -557,688,1237,1236,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,8.2804489,8.5000544,52,0,19.324919,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,2.0712593,0,0,0,1,1,0,8.5944939,6.3331561,57.12,38.44,54,46,8.333333333333334,1,1,0,0,0,11,5,1,221,2287948,1449077,301110.81,0,5029.3628 -558,689,1238,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.1076,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,7.397954,0,0,1,1,0,0,0,56.34,31.82,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,735,251527.2,0,135825.59,0,1538.8136 -559,690,1239,-9,1241,1242,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6855,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 -559,690,1240,-9,1241,1242,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7834,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 -559,690,1241,1242,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.180562,8.022583,0,10,-3,3.2649422,0,-9,2,2019,13,2,26,27,1,2,0,15.942041,15.942041,0,0,0,0,0,1,1,0,0,0,41.06,62.04,51.49,57.57,8.333333333333334,1,1,0,0,12,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 -559,690,1242,1241,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8634195,8.8038254,0,10,3,51.13131,0,2,2,2019,10,0,40,41,1,0,0,17.675449,17.675449,0,0,0,0,0,1,1,0,.69944209,0,51.49,57.57,41.06,62.04,8.333333333333334,1,1,0,0,12,4,4,1,323.25,47048.117,-55890.539,370892.31,201932.83,3739.6304 -560,691,1243,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.4004698,8.3235874,0,0,0,-1095.8042,0,-9,-9,2019,13,1,43,42,1,1,0,11.562328,11.562328,0,0,0,0,0,1,1,0,0,0,37.41,46.83,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,339,163951.05,0,0,0,1677.1486 -561,692,1244,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,1,8.1864767,8.0346289,0,0,0,-1007.2001,0,2,-9,2019,8,1,38,35,1,1,0,8.6127672,8.6127672,0,0,0,0,0,0,0,0,0,0,53,46.42,-9,-9,3.333333333333333,1,1,0,0,5,8,4,0,915,0,0,0,0,1128.0421 -561,693,1245,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.6827908,8.7124338,0,0,0,-1089.9993,0,3,2,2019,30,12,41,41,1,12,0,12.724895,12.724895,0,0,0,0,2,0,0,0,6.8177948,0,21.19,43.35,-9,-9,3.333333333333333,1,1,0,0,8,8,5,0,88,298689.78,85832.781,133218.94,67287.625,2941.4182 -562,694,1246,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.8452997,7.919982,0,0,-976.64044,0,3,2,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.4249678,8.2575064,27.62,50.8,-9,-9,3.333333333333333,1,1,0,0,7,10,3,0,127,713264.88,218683.81,428567.91,0,2120.0149 -563,695,1247,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.5690961,7.6244497,0,0,-1015.3636,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1758313,7.801734,66.14,28.74,-9,-9,10,1,1,0,0,0,10,3,1,336,724782.19,395075.56,198087.66,0,2300.802 -564,696,1248,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1126.5435,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,12.936882,0,0,1,1,0,1.3820293,0,55,45,-9,-9,8,1,1,0,0,0,13,1,1,257,199444.3,0,61409.695,0,1497.1597 -565,697,1249,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,9.0194082,8.8298044,0,6,17,-76.631348,0,3,3,2019,6,0,49,39,1,0,0,12.913045,12.913045,0,0,0,0,0,0,0,0,6.1345921,0,57.16,56.15,54.79,28.9,10,1,1,0,0,7,11,5,1,507,1453551.3,241290.88,673054.31,0,2588.7439 -565,698,1250,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.437912,8.3191566,0,6,-17,44.310257,0,-9,-9,2019,10,1,38,40,1,1,0,14.670438,14.670438,0,0,0,0,0,0,0,0,1.189522,0,54.79,28.9,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,173,44419.109,102405.45,120344.9,51614.285,3099.8503 -565,699,1251,-9,-9,1250,1,1,22,0,0,0,2,2,-9,0,3,7.6860962,7.6356349,0,0,0,-851.61304,-9,-9,2,2019,8,0,43,0,1,0,1,6.4795241,6.4795241,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1454,213056.13,0,0,0,1587.5377 -566,700,1252,-9,1254,1253,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.19226,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,0,829.33331,479687.25,230924.72,371896.28,157445.7,3971.5444 -566,700,1253,1254,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.9226437,8.5482416,0,8,1,5.4226027,0,2,2,2019,8,0,40,40,1,0,0,18.282675,18.282675,0,0,0,0,0,1,1,0,0,0,52.99,51.28,59.43,48.33,8.333333333333334,2,3,0,0,13,8,5,0,829.33331,479687.25,230924.72,371896.28,157445.7,3971.5444 -566,700,1254,1253,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,7.9489193,8.0518656,0,8,-1,-29.173912,0,-9,-9,2019,7,0,14,14,1,0,0,22.414286,22.414286,0,0,0,0,0,1,1,0,0,0,59.43,48.33,52.99,51.28,6.666666666666667,2,3,0,0,5,8,5,0,829.33331,479687.25,230924.72,371896.28,157445.7,3971.5444 -567,701,1255,-9,1256,1257,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.452,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 -567,701,1256,1257,-9,-9,1,0,30,0,2,0,1,1,-9,0,3,0,0,0,8,-14,-127.78925,1,3,2,2019,12,0,0,40,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.08,60.5,57.24,46.7,6.666666666666667,1,1,0,0,5,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 -567,701,1257,1256,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3211193,8.5498896,0,8,14,75.678268,0,3,3,2019,12,0,42,41,1,0,0,13.622638,13.622638,0,0,0,0,0,1,1,0,0,0,57.24,46.7,36.08,60.5,6.666666666666667,1,1,0,0,11,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 -567,701,1258,-9,1256,1257,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.20447,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,476,188018.34,139916.03,100675.44,98871.203,1771.0281 -567,702,1259,-9,1256,1257,1,1,23,0,2,0,2,2,-9,0,4,7.6864495,7.8112884,0,0,0,-987.94714,0,2,3,2019,11,0,44,48,1,0,1,6.0709548,6.0709548,0,0,0,0,0,1,1,0,1.2461193,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,1075,-128684.86,0,0,0,1946.0642 -568,703,1260,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1074.8572,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.1822577,0,0,1,1,0,0,0,44.71,31.4,-9,-9,5,3,4,0,0,0,8,1,0,682,23303.428,0,0,0,2199.8647 -568,704,1261,-9,-9,1260,1,1,34,0,0,0,1,1,-9,0,4,0,0,0,0,0,-962.05792,-9,-9,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,0,208,0,0,0,0,475.14465 -569,705,1262,1263,-9,-9,1,0,47,0,3,0,1,1,-9,0,2,9.0666838,8.7675896,0,6,-8,154.71387,0,1,-9,2019,11,1,40,39,1,1,0,22.200605,22.200605,0,0,0,0,0,1,1,0,0,0,47.71,35.37,43.07,41.15,6.666666666666667,1,1,0,0,8,9,5,1,401.33334,1664965.5,778474.19,741276.63,11093.719,5906.1021 -569,705,1263,1262,-9,-9,1,1,55,0,3,0,2,2,-9,0,3,8.5135155,8.6696348,0,6,8,14.064289,0,2,2,2019,16,4,50,54,1,4,0,14.046792,14.046792,0,0,0,0,0,1,1,0,0,0,43.07,41.15,47.71,35.37,6.666666666666667,1,1,0,0,9,9,5,1,401.33334,1664965.5,778474.19,741276.63,11093.719,5906.1021 -569,705,1264,-9,1262,1263,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.30475,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,401.33334,1664965.5,778474.19,741276.63,11093.719,5906.1021 -570,706,1265,1266,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.5013609,8.447587,0,1,-1,52.531605,-9,-9,-9,2019,7,0,50,0,1,0,0,13.010479,13.010479,0,0,0,0,0,1,1,0,3.006454,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,2,5,1,787.66669,-177584.5,41274.922,0,0,4285.2061 -570,706,1266,1265,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,8.7157145,8.3716984,0,1,1,-21.505814,-9,2,2,2019,11,0,40,0,1,0,0,13.771579,13.771579,0,0,0,0,0,1,1,0,3.8297286,0,57.06,57.76,57.06,57.76,6.666666666666667,1,1,0,0,10,2,5,1,787.66669,-177584.5,41274.922,0,0,4285.2061 -570,706,1267,-9,1265,1266,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.1915,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,787.66669,-177584.5,41274.922,0,0,4285.2061 -571,707,1268,1269,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.6050811,7.4444985,0,15,3,124.49663,0,3,2,2019,7,0,23,30,1,0,0,8.1319704,8.1319704,0,0,0,0,0,1,1,0,0,0,42,52.08,38.51,59.43,10,2,3,0,0,13,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 -571,707,1269,1268,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.2569675,8.377161,0,15,-3,-.26226333,0,2,2,2019,11,0,38,22,1,0,0,16.971394,16.971394,0,0,0,0,0,1,1,0,0,0,38.51,59.43,42,52.08,8.333333333333334,2,3,0,0,13,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 -571,707,1270,-9,1269,1268,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1012.4855,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 -571,707,1271,-9,1269,1268,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.43378,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,0,559,410151.81,62860.93,555910.56,113804.45,2699.1006 -572,708,1272,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,7.7430758,7.5933967,0,0,-1118.6755,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0114818,7.6432891,62.49,55.09,-9,-9,10,1,1,0,0,9,4,3,1,309,1314520,73478.078,586965.19,0,1147.5 -573,709,1273,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.863802,8.9532413,3.5340409,0,0,-1086.5405,0,1,1,2019,11,0,38,37,1,0,0,21.604395,21.604395,0,0,0,0,2,0,0,0,4.2696381,0,38.99,59.12,-9,-9,5,1,1,0,0,9,8,5,1,2673,680694,507034.59,0,0,1943.5979 -574,710,1274,1275,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.2376871,8.9165287,0,16,-5,72.437859,0,2,2,2019,9,1,80,80,1,1,0,13.515991,13.515991,0,0,0,0,0,0,0,0,0,0,52,54.51,51.94,55.88,8.333333333333334,1,1,0,0,6,8,5,1,548.5,1129839,930561,498692.78,0,7181.1528 -574,710,1275,1274,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,8.7920246,8.49786,16,5,23.957336,0,1,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,7.3248491,8.7720165,51.94,55.88,52,54.51,8.333333333333334,1,1,0,0,0,8,5,1,548.5,1129839,930561,498692.78,0,7181.1528 -575,711,1276,1277,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.2723732,5.9853148,48,-2,80.448586,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5881944,6.3667417,54.2,57.49,54.18,50.75,8.333333333333334,1,1,0,0,4,6,3,1,1018.5,1067614.3,523255.75,337136.03,0,2427.3181 -575,711,1277,1276,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.1828136,8.0144577,48,2,4.6057787,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1151848,54.18,50.75,54.2,57.49,8.333333333333334,1,1,0,0,8,6,3,1,1018.5,1067614.3,523255.75,337136.03,0,2427.3181 -576,712,1278,-9,1282,1280,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-962.25592,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 -576,712,1279,-9,1282,1280,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1045.3246,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 -576,712,1280,1282,-9,-9,1,1,53,0,3,0,1,1,-9,0,4,8.602355,8.6692104,0,6,6,43.698811,-9,-9,-9,2019,9,0,50,0,1,1,0,13.695869,13.695869,0,0,0,0,0,0,0,0,1.6902294,0,54,54,52.4,55.58,8,1,1,0,0,1,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 -576,712,1281,-9,1282,1280,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.0706,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 -576,712,1282,1280,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,8.2081556,8.0235176,0,23,-6,76.715508,0,2,1,2019,10,1,20,20,1,1,0,19.961071,19.961071,0,0,0,0,0,0,0,0,1.0591928,0,52.4,55.58,54,54,8.333333333333334,1,1,0,0,9,8,4,1,622.79999,2065757.1,1026655.3,466514.25,0,3559.8203 -577,713,1283,1284,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.802331,8.941658,0,2,0,-154.00449,0,-9,-9,2019,18,6,45,48,1,6,0,17.021036,17.021036,0,0,0,0,2,0,0,0,0,0,35.97,61.83,54.2,57.49,8.333333333333334,1,1,0,0,5,10,5,1,885,1530821.8,1480536.5,189879.94,113577.77,4742.7227 -577,713,1284,1283,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.1008711,8.9649086,5.6725154,2,0,-98.628067,0,2,2,2019,9,0,37,39,1,0,0,23.176281,23.176281,0,0,0,0,0,0,0,0,3.5405447,5.6990523,54.2,57.49,35.97,61.83,8.333333333333334,1,1,0,0,9,10,5,1,885,1530821.8,1480536.5,189879.94,113577.77,4742.7227 -578,714,1285,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,2,0,0,0,0,0,-890.84119,-9,1,1,2019,34,12,0,0,3,12,1,0,0,0,0,0,0,7,0,0,0,0,0,17.59,56.04,-9,-9,1.666666666666667,2,3,1,1,0,5,1,1,65,-108482.7,0,0,0,0 -579,715,1286,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.3547812,7.8582993,0,0,-994.39655,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7734423,7.0281897,60.02,56.42,-9,-9,10,1,1,0,0,0,5,3,1,835,755807.88,306620,117036.84,0,1484.7799 -580,716,1287,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.4484868,6.6385388,0,0,-949.15039,0,3,2,2019,16,5,0,0,4,5,0,0,0,1,0,9.9347305,0,0,1,1,0,4.0853901,6.5639338,48.03,45.42,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,360,524314.94,243631.78,408557.47,259916.36,1242.6537 -581,717,1288,-9,1289,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1153.3335,-9,1,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,30.02,57.99,-9,-9,3.333333333333333,1,1,0,0,0,2,3,0,204.5,88267.875,58990.594,0,0,1334.2756 -581,717,1289,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,7.7377701,7.3756437,0,0,0,-1059.4386,0,3,2,2019,19,8,40,82,1,8,0,5.7094908,5.7094908,0,0,0,0,0,1,1,0,0,0,37.39,37.24,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,204.5,88267.875,58990.594,0,0,1334.2756 -581,718,1290,-9,1289,-9,1,0,21,0,0,1,2,0,0,0,2,0,0,0,0,0,-1051.8735,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.77,39.62,-9,-9,8.333333333333334,1,1,0,0,3,2,1,0,199,-121119.2,0,0,0,-163.9353 -582,719,1291,1292,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.3439074,8.2953663,42,3,64.624092,0,1,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2804909,8.3398809,53.82,45.88,51.71,58.83,8.333333333333334,1,1,0,0,0,8,5,1,512.5,2701344,1238675.3,934558.75,0,4848.4888 -582,719,1292,1291,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.2078781,8.2870579,42,-3,18.824467,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7192621,8.2523241,51.71,58.83,53.82,45.88,8.333333333333334,1,1,0,0,0,8,5,1,512.5,2701344,1238675.3,934558.75,0,4848.4888 -583,720,1293,1294,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.4178967,6.6597061,9,4,87.866409,0,3,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1690369,6.6662259,54.61,51.04,46.02,58.57,8.333333333333334,1,1,0,0,7,5,5,1,1355,6805253.5,2646281.3,1093666.3,0,9039.2939 -583,720,1294,1293,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.9417124,9.8209963,9.3529558,9,-4,36.196884,0,2,1,2019,17,6,40,48,1,6,0,20.894495,20.894495,0,0,0,0,0,1,1,0,0,9.0957317,46.02,58.57,54.61,51.04,6.666666666666667,1,1,0,0,10,5,5,1,1355,6805253.5,2646281.3,1093666.3,0,9039.2939 -584,721,1295,1296,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4275289,7.4370975,9,5,54.021255,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,8.3806162,7.1234922,54.28,42.51,54.79,55.86,5,1,1,0,0,0,7,3,1,884,1402404.3,894264.81,339390.31,0,3675.3511 -584,721,1296,1295,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.0864773,7.3652697,48,-5,-.074550062,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2667041,6.8879461,54.79,55.86,54.28,42.51,8.333333333333334,1,1,0,0,7,7,3,1,884,1402404.3,894264.81,339390.31,0,3675.3511 -585,722,1297,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3670712,8.3580246,0,0,0,-946.42468,0,2,2,2019,5,0,55,48,1,0,0,7.834044,7.834044,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,11,4,0,1749,453674.88,153374.3,118528.16,0,1737.442 -586,723,1298,-9,1300,1299,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1109.7515,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,6,2,0,668,192654.64,94988.828,0,0,1134.0129 -586,723,1299,1300,-9,-9,1,1,60,0,1,0,2,2,-9,0,5,7.1423988,6.9801483,0,42,3,35.250134,0,3,2,2019,9,1,30,30,1,1,0,4.4921861,4.4921861,0,0,0,0,0,1,1,0,0,0,53.51,52.71,47.63,45.75,3.333333333333333,2,3,0,1,9,6,2,0,668,192654.64,94988.828,0,0,1134.0129 -586,723,1300,1299,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,0,0,22,-3,69.081696,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.63,45.75,53.51,52.71,8.333333333333334,2,3,0,0,0,6,2,0,668,192654.64,94988.828,0,0,1134.0129 -587,724,1301,1302,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.8548141,7.8481474,6.4798412,30,-5,32.408413,0,2,3,2019,12,1,35,35,1,1,0,7.0360527,7.0360527,0,0,0,0,0,1,1,0,0,7.065218,49.25,61.25,55.34,48.72,5,1,1,0,0,8,1,4,1,795,1164805.3,590615.38,460066.75,106851.32,3196.1379 -587,724,1302,1301,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,6.4614344,8.2551117,7.6741495,30,5,137.21362,0,3,3,2019,7,0,10,12,1,0,0,7.2597642,7.2597642,0,0,0,0,2,1,1,0,0,7.4502268,55.34,48.72,49.25,61.25,10,1,1,0,0,9,1,4,1,795,1164805.3,590615.38,460066.75,106851.32,3196.1379 -587,725,1303,-9,1302,1301,1,1,22,0,0,0,2,2,-9,0,4,7.5171199,7.6197767,0,0,0,-1021.4905,0,2,1,2019,11,2,38,42,1,2,1,7.3466916,7.3466916,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,1,4,1,3,1,675,-44083.496,0,0,0,427.54349 -588,726,1304,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.6885052,6.4312396,0,0,-1098.436,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.4098253,6.5946784,34.96,18.92,-9,-9,0,1,1,0,0,0,1,2,0,161,680746.44,426286.44,0,0,2046.0475 -589,727,1305,-9,-9,-9,1,0,57,0,1,0,3,3,-9,1,2,0,0,0,0,0,-1010.2286,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,46.76,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,1915,60539.871,0,0,0,1045.144 -589,728,1306,-9,1305,-9,1,1,34,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1149.0355,-9,3,3,2019,14,0,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,12.16,40.72,-9,-9,3.333333333333333,1,1,1,1,0,1,1,0,490.5,-194591.7,0,0,0,307.39618 -589,728,1307,-9,-9,1306,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-859.66632,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,490.5,-194591.7,0,0,0,307.39618 -590,729,1308,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.6602921,4.8783202,0,0,-989.39087,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6394048,5.4145617,52.33,31.64,-9,-9,10,1,1,0,0,0,5,2,1,321,-198937.88,0,83706.336,0,1485.569 -591,730,1309,1313,-9,1315,1,1,34,0,4,0,2,2,-9,0,4,0,0,0,11,-2,0,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,44.11,50.11,7,1,1,1,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 -591,730,1310,-9,1313,1309,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-912.84418,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 -591,730,1311,-9,1313,1309,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-922.58923,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 -591,730,1312,-9,1313,1309,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-886.7934,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 -591,730,1313,1309,-9,-9,1,0,36,0,4,0,2,2,-9,1,3,0,0,0,11,2,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44.11,50.11,49,58,6.666666666666667,1,1,0,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 -591,730,1314,-9,1313,1309,1,1,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-943.23315,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,1,0,487.33334,113096.53,-2209.5417,0,0,3354.5171 -591,731,1315,-9,-9,-9,1,1,62,0,4,0,3,3,-9,0,4,8.0494671,8.0937042,5.7568626,0,0,-1046.05,0,-9,-9,2019,8,0,60,55,1,0,0,6.2637548,6.2637548,0,0,0,0,0,1,1,0,0,5.5935302,50.87,42.5,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,1012,1666.7827,199710.67,0,0,2158.3525 -592,732,1316,1317,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.463974,8.6217899,0,15,3,-6.7359743,0,2,2,2019,10,0,60,60,1,0,0,8.1918001,8.1918001,0,0,0,0,0,1,1,0,0,0,50.82,57.78,62.49,55.09,8.333333333333334,1,1,0,0,11,9,4,1,732.5,261167.14,53912.152,358242.41,177006.22,2857.9531 -592,732,1317,1316,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.6717901,7.3776407,0,15,-3,60.183716,0,-9,-9,2019,9,0,35,35,1,0,0,8.0113859,8.0113859,0,0,0,0,0,1,1,0,1.5593019,0,62.49,55.09,50.82,57.78,10,1,1,0,0,10,9,4,1,732.5,261167.14,53912.152,358242.41,177006.22,2857.9531 -592,733,1318,-9,1317,1316,1,1,19,0,1,0,2,2,1,0,3,7.1200361,7.013484,0,0,0,-1093.2379,-9,2,2,2019,6,0,12,0,1,0,1,11.190451,11.190451,0,0,0,0,0,1,1,0,0,0,64.23999999999999,44.83,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,423,-13090.354,0,0,0,484.55615 -593,734,1319,1320,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,2.5209298,2.8819728,8,-4,-70.395622,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3906209,2.9795618,55.5,41.04,68.73999999999999,28.12,6.666666666666667,1,1,0,0,3,12,2,1,488,429926.38,76761.945,137438.44,0,223.35876 -593,734,1320,1319,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.4757366,5.1168394,8,4,112.44758,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.313673,5.6487741,68.73999999999999,28.12,55.5,41.04,10,1,1,0,0,0,12,2,1,488,429926.38,76761.945,137438.44,0,223.35876 -594,735,1321,-9,1325,1324,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-949.84644,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 -594,735,1322,-9,1325,1324,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.6573,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 -594,735,1323,-9,1325,1324,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.1207,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 -594,735,1324,1325,-9,-9,1,1,49,2,3,0,1,1,-9,0,3,9.435195,9.6675444,0,10,10,-61.940323,0,2,2,2019,9,2,40,40,1,2,0,43.898708,43.898708,0,0,0,0,0,0,0,0,7.025795,0,50.6,51,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 -594,735,1325,1324,-9,-9,1,0,39,2,3,0,1,1,-9,0,4,8.4313879,8.2017689,0,10,-10,67.828209,0,2,1,2019,3,0,18,18,1,0,0,23.160963,23.160963,0,0,0,0,0,0,0,0,7.8902793,0,57.16,56.15,50.6,51,8.333333333333334,1,1,0,0,12,7,5,1,1637.4,1525811,1280051.1,295322.66,108727.52,7748.875 -595,736,1326,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-982.79578,0,2,1,2019,26,11,0,47,3,11,0,0,0,0,0,0,0,5.48,1,1,0,.61908269,0,38.09,63.39,-9,-9,3.333333333333333,1,1,1,1,10,8,1,1,695,-264636.19,0,0,0,-141.42583 -596,737,1327,1328,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.8522959,7.5912399,47,5,-25.882408,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,8.0413322,7.5027561,54.74,57.22,61.52,45.11,10,2,3,0,0,6,8,3,1,1702.5,1099632.5,328645.88,309914.63,0,3117.605 -596,737,1328,1327,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.1593833,6.2248611,47,-5,-45.471416,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.0646605,5.9060049,61.52,45.11,54.74,57.22,6.666666666666667,2,3,0,0,0,8,3,1,1702.5,1099632.5,328645.88,309914.63,0,3117.605 -597,738,1329,-9,1330,1331,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.81573,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 -597,738,1330,1331,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,0,0,0,8,-1,34.138134,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,46.67,55.57,5,1,1,0,0,3,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 -597,738,1331,1330,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,8.2650347,8.0767565,0,8,1,47.706604,0,2,2,2019,7,0,39,39,1,0,0,9.8697853,9.8697853,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.33,53.46,6.666666666666667,1,1,0,0,7,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 -597,738,1332,-9,1330,1331,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.6895,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,661.25,284275.59,7386.0977,150466.98,0,1960.6112 -598,739,1333,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1034.9178,-9,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,1.4805479,0,0,1,1,0,0,0,44.07,39.47,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1316,232147.34,0,0,0,1173.9484 -599,740,1334,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8615546,8.0915346,0,0,0,-1112.0692,0,3,3,2019,18,5,56,56,1,5,0,5.4862542,5.4862542,0,0,0,0,0,0,0,0,.67525798,0,40.14,38.19,-9,-9,1.666666666666667,3,4,0,1,9,8,4,0,751,504649.88,621438.19,0,0,1091.8092 -600,741,1335,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.31144,7.5771952,0,0,-1045.2645,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3007131,56.55,45.59,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,311,451093.31,192596.06,0,0,2293.145 -601,742,1336,1337,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,6.9227729,6.990777,0,7,-3,-92.566322,0,2,2,2019,13,2,35,30,1,2,0,3.2021472,3.2021472,0,0,0,0,0,1,1,0,0,0,50.44,48.84,60.6,27.69,3.333333333333333,1,1,0,1,13,2,2,1,522.5,302891.69,253050.97,118404.63,21574.582,863.41992 -601,742,1337,1336,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.454464,6.5003443,4.5884161,7,3,156.69365,0,2,1,2019,8,1,50,30,1,1,0,1.9356096,1.9356096,0,0,0,0,0,1,1,0,4.7663751,4.4214745,60.6,27.69,50.44,48.84,6.666666666666667,1,1,0,0,13,2,2,1,522.5,302891.69,253050.97,118404.63,21574.582,863.41992 -601,743,1338,-9,1337,1336,1,1,24,0,0,0,2,2,-9,0,3,8.5695229,8.5941916,0,0,0,-989.21698,0,2,2,2019,28,11,50,30,1,11,1,10.068205,10.068205,0,0,0,0,0,1,1,0,0,0,32.61,58.49,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,354,752290.38,231413.63,159774.89,22070.736,2090.6877 -602,744,1339,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.0049105,5.7627897,0,0,-984.47101,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1598649,6.520793,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,475,905033.94,161910.59,421509.56,0,1271.9012 -603,745,1340,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,0,0,-970.06641,0,1,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.4683981,0,48.32,46.55,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,873,496674.47,0,0,0,610.49774 -604,746,1341,1342,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.8513551,6.7915335,9,3,43.029877,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0419059,6.8638535,54.61,49.13,54.2,57.49,8.333333333333334,1,1,0,0,1,9,3,1,802.5,593487.75,355308.63,427874.13,0,2694.4546 -604,746,1342,1341,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6623268,7.3023329,9,-3,-38.846249,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2586827,7.2904568,54.2,57.49,54.61,49.13,8.333333333333334,1,1,0,0,2,9,3,1,802.5,593487.75,355308.63,427874.13,0,2694.4546 -605,747,1343,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,8.1601791,8.1404343,0,0,-1109.3759,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2711205,7.9848943,57.06,57.76,-9,-9,10,1,1,0,0,0,8,4,1,261,484141.38,0,292747.47,0,2275.9182 -606,748,1344,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.3184276,7.3055959,5.2580614,0,0,-964.88074,0,2,2,2019,23,10,16,20,1,10,0,9.3522768,9.3522768,0,0,0,0,0,1,1,0,5.2864203,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,0,7,4,2,0,611.5,197403.25,0,0,0,1200.4497 -606,748,1345,-9,1344,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1046.2518,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,2,0,611.5,197403.25,0,0,0,1200.4497 -607,749,1346,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.7633681,7.9870515,0,0,0,-1036.7526,0,3,2,2019,8,0,1,1,1,0,0,271.65845,271.65845,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,5,2,3,0,0,9,8,3,1,202,36725.602,0,0,0,1233.1987 -608,750,1347,1348,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.3226752,5.2384501,6,0,26.81638,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.3979955,5.2169571,39.73,37.29,58.14,42.54,6.666666666666667,1,1,0,0,0,4,2,1,945,409033.56,359734.38,107277.05,0,2456.3918 -608,750,1348,1347,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,7.1137581,6.8011689,40,0,38.202244,0,3,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.6982956,7.1162434,58.14,42.54,39.73,37.29,8.333333333333334,1,1,0,0,6,4,2,1,945,409033.56,359734.38,107277.05,0,2456.3918 -609,751,1349,1350,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.6644077,7.571497,0,8,-6,-2.0092349,0,3,3,2019,9,2,35,32,1,2,0,9.1431112,9.1431112,0,0,0,0,0,0,0,0,0,0,38.18,37.77,52,48,3.333333333333333,1,1,0,0,9,4,4,0,657.5,94668.742,-36325.363,117552.89,0,2622.2725 -609,751,1350,1349,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.3607254,8.186718,5.1114469,8,6,-76.108688,0,3,3,2019,10,0,47,49,1,1,0,8.6027632,8.6027632,0,0,0,0,0,0,0,0,4.6834493,4.7095494,52,48,38.18,37.77,7,1,1,0,0,9,4,4,0,657.5,94668.742,-36325.363,117552.89,0,2622.2725 -609,752,1351,-9,1349,1350,1,0,35,0,0,0,2,2,-9,0,3,8.6072922,9.1749668,0,0,0,-1081.6735,0,2,-9,2019,36,12,35,35,1,12,1,21.895311,21.895311,0,0,0,0,0,0,0,0,0,0,12.18,55.33,-9,-9,1.666666666666667,1,1,0,1,10,4,5,0,543,92996.219,-80200.125,0,0,2322.7305 -610,753,1352,1353,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.8569813,8.8841648,0,6,0,39.400951,-9,2,3,2019,15,3,37,0,1,3,0,18.544247,18.544247,0,0,0,0,0,0,0,0,0,0,43.42,62.33,54.2,57.49,8.333333333333334,1,1,0,0,7,13,5,1,729,1029526.5,532295.06,306097.88,104354.68,5078.3164 -610,753,1353,1352,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.8564034,8.7648544,0,6,0,95.13176,0,1,1,2019,3,0,40,28,1,0,0,18.440685,18.440685,0,0,0,0,0,0,0,0,0,0,54.2,57.49,43.42,62.33,8.333333333333334,1,1,0,1,7,13,5,1,729,1029526.5,532295.06,306097.88,104354.68,5078.3164 -610,753,1354,-9,1352,1353,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.1537,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,729,1029526.5,532295.06,306097.88,104354.68,5078.3164 -611,754,1355,1356,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.4030361,8.3302593,0,11,-3,-40.589436,0,2,2,2019,12,0,8,35,1,0,0,51.595795,51.595795,0,0,0,0,0,1,1,0,0,0,55.19,54.26,60.12,54.8,5,1,1,0,0,9,9,4,1,345,1900641,1103945,585450.63,0,3092.7646 -611,754,1356,1355,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.451333,7.8911438,11,3,68.796837,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3272252,7.7044082,60.12,54.8,55.19,54.26,8.333333333333334,1,1,0,0,4,9,4,1,345,1900641,1103945,585450.63,0,3092.7646 -612,755,1357,1358,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,2.1702287,2.218617,7,-1,-70.171494,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.9493928,2.1339068,46.15,49.37,57.16,56.15,6.666666666666667,1,1,0,0,0,11,2,1,533.5,397728.5,95649.172,291281.19,17799.744,2328.8528 -612,755,1358,1357,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.4216871,5.4043293,7,1,-185.73151,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,5.0249329,5.1700697,57.16,56.15,46.15,49.37,8.333333333333334,1,1,0,0,0,11,2,1,533.5,397728.5,95649.172,291281.19,17799.744,2328.8528 -613,756,1359,1360,-9,-9,1,1,30,2,3,0,2,2,-9,0,4,8.4035721,7.9087696,0,3,4,71.105255,0,-9,-9,2019,10,0,20,27,1,1,0,18.250786,18.250786,0,0,0,0,0,1,1,0,0,0,48,58,54.69,57.47,7,1,1,0,0,1,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 -613,756,1360,1359,-9,-9,1,0,26,2,3,0,2,2,-9,0,5,0,0,0,3,-4,-69.428085,0,2,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.4092507,0,54.69,57.47,48,58,10,2,3,0,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 -613,756,1361,-9,1360,1359,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-997.29901,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 -613,756,1362,-9,1360,1359,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-942.42328,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 -613,756,1363,-9,1360,1359,1,0,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.3234,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,2,3,0,1026.4,61386.508,173235.98,182803.84,116932.76,2318.4387 -614,757,1364,1365,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,0,0,0,26,3,-91.416412,0,2,2,2019,19,7,0,4,3,7,0,0,0,0,0,0,0,27,1,1,0,3.1519351,0,45.16,46.76,35.53,25.84,8.333333333333334,1,1,0,0,7,9,2,1,542.5,167483,0,0,0,1066.5923 -614,757,1365,1364,-9,-9,1,0,51,0,0,0,1,1,-9,1,2,6.7635131,6.7825718,0,26,-3,89.637405,0,1,2,2019,12,0,42,21,1,0,0,2.4010675,2.4010675,0,0,0,0,7,1,1,0,0,0,35.53,25.84,45.16,46.76,8.333333333333334,1,1,0,0,11,9,2,1,542.5,167483,0,0,0,1066.5923 -615,758,1366,1367,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.4196248,6.2313251,31,5,33.177387,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5585041,6.4790273,57.93,35.76,56.47,59.4,8.333333333333334,1,1,0,0,7,9,3,1,654,842774.75,495130.44,389316.56,0,2866.6221 -615,758,1367,1366,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,6.121016,7.7095885,7.5768361,6,-5,95.051712,0,3,3,2019,8,0,17,19,1,0,0,4.0462632,4.0462632,0,0,0,0,14.5,1,1,0,5.1597519,7.2930837,56.47,59.4,57.93,35.76,0,1,1,0,0,4,9,3,1,654,842774.75,495130.44,389316.56,0,2866.6221 -616,759,1368,1369,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9162173,7.6838269,0,30,1,-77.246674,0,2,2,2019,10,1,22,20,1,1,0,11.005136,11.005136,0,0,0,0,0,0,0,0,8.9990559,0,51.83,57.2,59.53,56.44,8.333333333333334,1,1,0,0,9,9,4,1,335,96458.953,-3091.25,194313,105285.35,10958.023 -616,759,1369,1368,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.7351503,7.7544556,0,30,-1,61.16975,0,2,-9,2019,6,0,40,40,1,0,0,8.2950897,8.2950897,0,0,0,0,0,0,0,0,9.6673737,0,59.53,56.44,51.83,57.2,8.333333333333334,1,1,0,0,9,9,4,1,335,96458.953,-3091.25,194313,105285.35,10958.023 -616,760,1370,-9,1368,1369,1,1,25,0,0,0,2,2,-9,0,3,8.1235075,8.5223064,0,0,0,-880.80554,0,2,2,2019,12,2,43,40,1,2,1,9.078866,9.078866,0,0,0,0,0,0,0,0,0,0,50.18,52.62,-9,-9,3.333333333333333,1,1,0,0,3,9,4,1,422,160604.48,1110.9148,0,0,1142.9462 -617,761,1371,1372,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.4518976,8.4647913,0,28,1,-4.2774963,0,2,2,2019,9,0,38,33,1,0,0,14.648523,14.648523,0,0,0,0,0,0,0,0,0,0,55.79,52.62,57.06,57.76,8.333333333333334,1,1,0,0,7,12,4,1,860,624576.38,323878.63,158599.2,0,2515.9001 -617,761,1372,1371,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,7.4287152,7.3991756,0,28,-1,74.273399,0,2,3,2019,7,0,70,70,1,0,0,2.6817193,2.6817193,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.79,52.62,6.666666666666667,1,1,0,0,9,12,4,1,860,624576.38,323878.63,158599.2,0,2515.9001 -617,762,1373,-9,1371,1372,1,0,22,0,0,0,2,2,-9,0,4,6.9791803,7.3824735,0,0,0,-1029.3386,0,1,2,2019,7,0,26,25,1,0,1,5.6744556,5.6744556,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,1352,-76074.563,0,0,0,665.69598 -617,763,1374,-9,1371,1372,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-896.42352,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,701,74452.641,0,0,0,0 -618,764,1375,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,7.6723046,7.4330668,0,0,-1029.2823,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3140225,7.5686355,63.65,35.93,-9,-9,10,1,1,0,0,7,2,3,1,1064,828969.94,640817.44,92757.242,0,1173.4343 -619,765,1376,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.8373137,5.2568059,0,0,-912.31232,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4968781,43.35,45.51,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,494,279410.75,275683.72,187403.66,0,1123.8822 -620,766,1377,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3576765,8.2378225,0,0,0,-1059.3005,0,-9,-9,2019,11,0,15,15,1,0,0,37.196209,37.196209,0,0,0,0,0,0,0,0,0,0,43.44,58.7,-9,-9,6.666666666666667,1,1,0,0,8,8,4,0,1276,260109.44,-36539.699,0,0,1360.1571 -621,767,1378,1379,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3939228,8.5205374,32,3,-84.834801,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,18.517824,0,0,1,1,0,0,8.6213894,52.62,54.33,64.15000000000001,32.53,10,1,1,0,0,0,5,4,1,1488,1764573.8,1076960.3,218530.31,0,4016.0776 -621,767,1379,1378,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.074605,6.21876,15,-3,-62.952923,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0865393,64.15000000000001,32.53,52.62,54.33,10,1,1,0,0,0,5,4,1,1488,1764573.8,1076960.3,218530.31,0,4016.0776 -622,768,1380,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9732161,8.026042,0,0,0,-1010.0697,0,2,2,2019,8,0,30,32,1,0,0,9.6426716,9.6426716,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,11,4,1,1886,171493.44,151024.05,0,0,960.06696 -622,769,1381,-9,1380,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1001.0178,-9,2,-9,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,592,-205274.2,0,0,0,436.40472 -623,770,1382,1383,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,9.1276369,9.0771475,0,6,3,2.213228,0,-9,-9,2019,6,0,37,37,1,0,0,30.601511,30.601511,0,0,0,0,0,1,1,0,4.3407059,0,57.16,56.15,38.34,62.12,8.333333333333334,1,1,0,0,11,7,5,1,788.66669,3219.5364,-44970.516,264708.56,175602.2,3678.6621 -623,770,1383,1382,-9,-9,1,0,28,0,1,0,2,2,-9,1,4,0,0,0,6,-3,-139.06146,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,38.34,62.12,57.16,56.15,8.333333333333334,1,1,0,0,2,7,5,1,788.66669,3219.5364,-44970.516,264708.56,175602.2,3678.6621 -623,770,1384,-9,1383,1382,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.51147,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,788.66669,3219.5364,-44970.516,264708.56,175602.2,3678.6621 -624,771,1385,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-925.13525,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0773749,0,52,48,-9,-9,7,1,1,0,0,0,2,1,0,654,-338697.22,-7268.8052,0,0,2295.4871 -625,772,1386,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,8.9955645,9.0785837,0,0,0,-1039.4613,0,2,2,2019,15,3,50,96,1,3,0,20.534563,20.534563,0,0,0,0,0,0,0,0,3.9571788,0,41.46,51.97,-9,-9,6.666666666666667,1,1,0,0,11,2,5,0,760,366070.22,258077.31,0,0,3269.157 -626,773,1387,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1120.8083,0,2,2,2019,12,0,0,9,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6958661,0,57.31,43.71,-9,-9,10,1,1,0,0,5,10,2,1,1010,-219579.44,0,0,0,875.66412 -627,774,1388,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.8605323,7.0571861,0,0,-1152.7574,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2253022,54.36,42.37,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,201,509380.97,53619.406,424824.38,0,1657.1866 -628,775,1389,1390,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.6870441,7.8832374,0,1,-3,155.62386,-9,3,3,2019,7,0,43,0,1,0,0,8.6492271,8.6492271,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.68,49.75,8.333333333333334,1,1,0,0,8,1,4,1,934.5,-81619.055,64893.445,133668.09,43090.453,2073.7852 -628,775,1390,1389,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6986685,7.6965928,0,1,3,22.920424,-9,3,3,2019,12,1,38,0,1,1,0,5.8835325,5.8835325,0,0,0,0,0,0,0,0,2.0796041,0,50.68,49.75,57.16,56.15,6.666666666666667,1,1,0,0,8,1,4,1,934.5,-81619.055,64893.445,133668.09,43090.453,2073.7852 -629,776,1391,-9,-9,-9,1,0,20,0,0,0,2,2,-9,1,1,0,0,0,0,0,-964.50061,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,29.64,33.65,-9,-9,1.666666666666667,1,1,1,0,1,6,1,0,528,160172.77,0,0,0,1244.2745 -630,777,1392,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.6030293,7.5490227,0,0,0,-1077.9208,0,3,3,2019,10,0,30,30,1,0,0,9.4416618,9.4416618,0,0,0,0,0,1,0,1,0,0,45.34,30.44,-9,-9,5,1,1,0,0,11,11,3,1,358,-229539.72,20586.375,0,0,1045.0349 -631,778,1393,1394,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.2554264,7.8090596,40,5,-112.42128,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8795972,55.6,47.8,57.16,56.15,8.333333333333334,1,1,0,0,9,10,4,1,462,1143491.3,775224.81,81661.289,558.26416,3182.8931 -631,778,1394,1393,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.8312044,7.1905494,41,-5,58.192245,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.73265994,7.555634,57.16,56.15,55.6,47.8,8.333333333333334,1,1,0,0,12,10,4,1,462,1143491.3,775224.81,81661.289,558.26416,3182.8931 -632,779,1395,1396,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.4028015,8.1768017,0,7,-1,-75.857048,0,-9,-9,2019,6,0,50,70,1,0,0,8.6428413,8.6428413,0,0,0,0,0,1,1,0,0,0,62.11,48.33,45.24,46.41,8.333333333333334,1,1,0,0,9,7,4,1,484,-128744.32,0,0,0,2415.8281 -632,779,1396,1395,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.9013987,7.8337612,0,45,1,36.420658,0,3,3,2019,16,4,37,36,1,4,0,7.0783429,7.0783429,0,0,0,0,2,1,1,0,0,0,45.24,46.41,62.11,48.33,6.666666666666667,1,1,0,0,9,7,4,1,484,-128744.32,0,0,0,2415.8281 -633,780,1397,1398,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3655348,8.6546087,0,28,-5,128.42651,0,2,3,2019,8,0,42,37,1,0,0,8.7820969,8.7820969,0,0,0,0,27,0,0,0,2.8059995,0,44.72,56.46,28.95,29.14,6.666666666666667,2,3,0,0,10,4,4,1,257,347935,56229.289,53433.43,0,1677.4126 -633,780,1398,1397,-9,-9,1,1,50,0,0,0,2,2,-9,0,1,0,0,0,8,5,95.989311,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.95,29.14,44.72,56.46,5,2,3,1,1,0,4,4,1,257,347935,56229.289,53433.43,0,1677.4126 -633,781,1399,-9,1397,1398,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1154.7441,-9,2,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,7,0,0,0,0,0,37.02,37.37,-9,-9,6.666666666666667,2,3,0,0,1,4,1,1,1412,-117877.76,0,0,0,370.67358 -634,782,1400,1401,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.2363405,9.1673355,0,22,6,-6.5025482,0,3,3,2019,7,0,37,37,1,0,0,29.278137,29.278137,0,0,0,0,0,0,0,0,0,0,55,56,33.72,30.74,10,1,1,0,0,12,2,5,1,292.5,3223551.8,771434.25,377083.31,0,4037.1738 -634,782,1401,1400,-9,-9,1,0,51,0,0,0,1,1,-9,0,1,0,0,0,22,-6,28.103912,0,2,2,2019,18,6,0,8,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,33.72,30.74,55,56,3.333333333333333,1,1,1,0,6,2,5,1,292.5,3223551.8,771434.25,377083.31,0,4037.1738 -635,783,1402,1403,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,7.4804468,7.4872346,0,26,2,-20.84079,0,2,3,2019,23,8,32,42,1,8,0,7.1809049,7.1809049,0,0,0,0,0,0,0,0,9.6338844,0,36.04,67.17,48.87,58.55,3.333333333333333,4,2,0,0,10,8,5,0,2564,2182013,1217618.5,853279.75,0,8703.8369 -635,783,1403,1402,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.4291267,9.1450005,0,25,-2,-122.20679,0,-9,-9,2019,8,0,35,30,1,0,0,42.296749,42.296749,0,0,0,0,0,0,0,0,0,0,48.87,58.55,36.04,67.17,8.333333333333334,1,1,0,0,13,8,5,0,2564,2182013,1217618.5,853279.75,0,8703.8369 -635,784,1404,-9,1403,1402,1,0,19,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1089.4198,-9,1,1,2019,15,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,30.04,60.46,-9,-9,10,4,2,0,0,0,8,1,0,100,149057.31,0,0,0,0 -636,785,1405,1406,-9,-9,1,0,50,0,0,0,2,2,-9,1,5,6.3123245,6.057838,0,6,0,-209.37796,0,3,2,2019,0,0,16,16,1,0,0,3.2043023,3.2043023,0,0,0,0,7,1,1,0,0,0,51.53,57.01,9.700000000000001,44.2,10,2,3,0,1,7,2,2,1,738,367745.41,246047.55,67601.383,0,1883.5333 -636,785,1406,1405,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,0,0,6,9,56.207344,0,3,3,2019,32,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,9.700000000000001,44.2,51.53,57.01,10,2,3,0,1,0,2,2,1,738,367745.41,246047.55,67601.383,0,1883.5333 -636,786,1407,-9,1405,1406,1,1,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-1061.7325,-9,3,3,2019,7,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,40.01,66.64,-9,-9,8.333333333333334,2,3,0,0,1,2,1,1,132,93706.563,0,0,0,709.82367 -637,787,1408,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1095.1456,0,-9,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.02,19.65,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,1234,0,0,0,0,2150.5474 -638,788,1409,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.8277531,5.1421928,0,0,-975.12421,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4048615,52.11,36.78,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,498,-278271.22,0,0,0,878.65802 -639,789,1410,1411,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5711727,7.5979223,7,-7,2.3746405,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.5147486,57.16,56.15,47.67,18.91,5,1,1,0,0,0,2,3,1,280.5,613503.5,483840.94,181718.59,0,2241.4294 -639,789,1411,1410,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,5.1005015,5.1809664,7,7,-26.889193,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.9372611,4.9387054,47.67,18.91,57.16,56.15,5,1,1,0,0,0,2,3,1,280.5,613503.5,483840.94,181718.59,0,2241.4294 -640,790,1412,1413,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.383101,7.5318437,0,8,-1,16.253054,0,-9,-9,2019,7,0,30,37,1,0,0,7.798521,7.798521,0,0,0,0,0,1,1,0,0,0,59.31,49.81,65.46000000000001,48.21,8.333333333333334,1,1,0,0,8,10,5,1,601.5,217288.61,-63089.941,0,0,3530.0923 -640,790,1413,1412,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8599672,8.7405758,0,34,1,-.27872068,0,2,-9,2019,10,0,48,48,1,0,0,11.91689,11.91689,0,0,0,0,0,1,1,0,0,0,65.46000000000001,48.21,59.31,49.81,10,1,1,0,0,11,10,5,1,601.5,217288.61,-63089.941,0,0,3530.0923 -640,791,1414,-9,1412,1413,1,0,32,0,0,0,2,2,-9,0,4,7.9025927,8.1943369,0,0,0,-869.93811,0,2,2,2019,21,9,39,40,1,9,1,8.7859211,8.7859211,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,7,10,4,1,314,-498705.25,0,0,0,1422.0815 -641,792,1415,-9,1417,1416,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.7732,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,305.66666,1578819.3,764931.31,575393.31,24843.502,5852.2964 -641,792,1416,1417,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,9.1908331,9.049077,0,6,-2,-38.243744,0,2,1,2019,14,2,48,55,1,2,0,19.206804,19.206804,0,0,0,0,0,0,0,0,7.1017084,0,42.36,56.12,52.34,56.95,6.666666666666667,1,1,0,0,7,9,5,1,305.66666,1578819.3,764931.31,575393.31,24843.502,5852.2964 -641,792,1417,1416,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.43718,7.3316364,0,6,2,-42.130512,0,2,-9,2019,11,1,10,20,1,1,0,17.155666,17.155666,0,0,0,0,0,0,0,0,7.6336808,0,52.34,56.95,42.36,56.12,8.333333333333334,1,1,0,0,7,9,5,1,305.66666,1578819.3,764931.31,575393.31,24843.502,5852.2964 -642,793,1418,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.3674927,8.4691725,0,0,0,-1128.8647,0,1,2,2019,8,0,42,42,1,0,0,10.247886,10.247886,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,631,-59683.258,88608.406,0,0,1185.0502 -643,794,1419,1420,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.0539827,8.090456,0,33,-1,98.858444,-9,-9,-9,2019,8,0,40,0,1,0,0,9.0722275,9.0722275,0,0,0,0,0,1,1,0,3.4857173,0,55,53,45.38,41.21,8,2,3,0,0,1,9,3,1,940,-95368.211,61649.156,140788.06,75470.82,1390.1777 -643,794,1420,1419,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,33,1,28.62808,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.38,41.21,55,53,6.666666666666667,2,3,0,0,0,9,3,1,940,-95368.211,61649.156,140788.06,75470.82,1390.1777 -643,795,1421,-9,1420,1419,1,0,25,0,0,0,1,1,-9,0,5,7.9633808,7.5490766,0,0,0,-1083.6606,-9,3,2,2019,9,3,40,0,1,3,1,6.690711,6.690711,0,0,0,0,0,1,1,0,0,0,40.63,55.53,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,856,-546934.31,0,0,0,547.86829 -643,796,1422,-9,1420,1419,1,0,20,0,0,0,2,2,-9,0,5,7.7184391,7.5273843,0,0,0,-1041.1139,-9,3,3,2019,12,2,40,0,1,2,1,5.2517905,5.2517905,0,0,0,0,0,1,1,0,0,0,43.41,51.96,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,913,173450.55,0,0,0,717.11066 -644,797,1423,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.8831863,8.9517822,5.9671388,0,0,-1021.5088,0,2,2,2019,6,0,42,40,1,0,0,18.623468,18.623468,0,0,0,0,0,0,0,0,5.390451,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1294,185366.77,212767.72,66686.961,50773.004,2122.2515 -645,798,1424,1425,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.3900356,7.7081628,6,8,-51.69603,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7854209,7.415154,57.16,56.15,47.66,52.33,8.333333333333334,1,1,0,0,0,11,2,1,1502,539524.75,52926.914,457204.47,0,1717.6616 -645,798,1425,1424,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,6,-8,-63.899834,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.66,52.33,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,1502,539524.75,52926.914,457204.47,0,1717.6616 -646,799,1426,1427,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.5152678,6.694417,10,-2,88.403893,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0331814,6.3385658,54.2,57.49,58.72,51.29,10,1,1,0,0,7,12,2,1,1219,1556178.6,361321.31,543253.75,0,970.90112 -646,799,1427,1426,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,10,2,62.089531,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3680177,0,58.72,51.29,54.2,57.49,8.333333333333334,1,1,0,0,9,12,2,1,1219,1556178.6,361321.31,543253.75,0,970.90112 -647,800,1428,1430,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,27,1,-49.286808,0,-9,-9,2019,7,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.53,56.37,41.4,47.36,8.333333333333334,1,1,1,0,9,9,2,1,743.33331,-85666.156,70107.164,0,0,966.51447 -647,800,1429,-9,1430,1428,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1130.2998,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,743.33331,-85666.156,70107.164,0,0,966.51447 -647,800,1430,1428,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.3283472,7.6624322,0,27,-1,-70.48893,0,2,2,2019,8,1,25,25,1,1,0,9.0977287,9.0977287,0,0,0,0,0,1,1,0,0,0,41.4,47.36,44.53,56.37,6.666666666666667,1,1,0,0,9,9,2,1,743.33331,-85666.156,70107.164,0,0,966.51447 -647,801,1431,-9,1430,1428,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1012.5148,-9,3,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,3,9,1,1,325,0,0,0,0,355.45844 -648,802,1432,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.9590302,7.7964797,0,0,0,-1042.7458,0,2,2,2019,12,0,20,0,1,0,0,16.233627,16.233627,0,0,0,0,2,0,0,0,2.8147836,0,34.21,51.94,-9,-9,5,1,1,0,0,10,5,4,1,786,108860.1,-69002.375,0,0,1286.4786 -649,803,1433,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.279871,8.7077303,6.6291256,0,0,-946.79181,0,2,2,2019,6,0,36,36,1,0,0,14.509439,14.509439,0,0,0,0,0,0,0,0,2.9529216,6.6398153,62.39,56.71,-9,-9,10,3,4,0,0,8,8,5,0,1054,-194703.92,-5347.1187,0,0,2012.2802 -649,804,1434,-9,1433,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7128334,8.8388643,0,0,0,-1027.6525,0,2,2,2019,14,2,40,37,1,2,1,22.957449,22.957449,0,0,0,0,0,0,0,0,0,0,51.14,52.08,-9,-9,5,3,4,0,0,9,8,5,0,1038,-64198.012,103804.98,0,0,1916.4313 -650,805,1435,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-981.94971,-9,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,7.0278249,0,0,0,1,1,0,0,0,41.88,50.35,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,462,370880.47,0,55820.813,0,1470.2299 -651,806,1436,1437,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.7291212,8.774518,0,10,-1,118.69173,0,2,2,2019,12,1,37,37,1,1,0,13.800803,13.800803,0,0,0,1.9249562,0,0,0,0,8.1858749,0,48.79,53.17,57.16,56.15,6.666666666666667,1,1,0,0,12,11,5,1,544,94066.805,24182.129,98469.117,78744.766,8287.2959 -651,806,1437,1436,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8492365,9.0763254,0,10,1,86.164101,0,2,3,2019,7,0,43,43,1,0,0,26.161938,26.161938,0,0,0,0,0,0,0,0,7.9031439,0,57.16,56.15,48.79,53.17,8.333333333333334,1,1,0,0,12,11,5,1,544,94066.805,24182.129,98469.117,78744.766,8287.2959 -652,807,1438,-9,1439,1440,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1017.5969,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,3,1,454,1168042.8,613471.63,448989.56,0,1491.4561 -652,807,1439,1440,-9,-9,1,0,50,0,1,0,2,2,-9,1,1,0,0,0,28,-3,-28.89501,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.06,28.05,54.2,57.49,8.333333333333334,1,1,0,0,0,10,3,1,454,1168042.8,613471.63,448989.56,0,1491.4561 -652,807,1440,1439,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,7.9525285,7.9343596,0,28,3,124.11476,0,2,2,2019,11,0,48,50,1,0,0,6.1437712,6.1437712,0,0,0,0,7,1,1,0,6.51227,0,54.2,57.49,40.06,28.05,6.666666666666667,1,1,0,0,9,10,3,1,454,1168042.8,613471.63,448989.56,0,1491.4561 -653,808,1441,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.2274728,4.9702005,0,0,-1047.5319,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0699317,5.1953425,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,422,-44811.047,-63549.688,0,0,1792.7412 -654,809,1442,1443,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,7.0701818,7.7867417,7.5010772,11,7,-62.722378,0,2,2,2019,8,0,20,10,1,0,0,5.1657557,5.1657557,0,0,0,0,0,0,0,0,6.6280975,7.4868207,51.14,60.45,51.67,60.18,8.333333333333334,1,1,0,0,12,5,3,1,204,-46801.449,-537.24512,0,0,2173.1377 -654,809,1443,1442,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,7.0269837,7.1254325,0,11,-7,-115.23313,0,2,2,2019,12,2,25,40,1,2,0,6.9964614,6.9964614,0,0,0,0,0,0,0,0,.47935048,0,51.67,60.18,51.14,60.45,8.333333333333334,1,1,0,0,12,5,3,1,204,-46801.449,-537.24512,0,0,2173.1377 -655,810,1444,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-757.64935,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3220134,0,59.47,33.42,-9,-9,10,1,1,0,0,1,6,1,1,301,69270.359,0,232879.5,0,800.69562 -656,811,1445,1446,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.4317279,6.3580422,25,12,-120.09389,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0912282,6.1592345,44.17,15.32,54.2,57.49,8.333333333333334,1,1,0,0,8,4,3,1,1074.5,1159057.3,636029.25,218166.31,0,2022.7745 -656,811,1446,1445,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.7947707,7.725894,0,6,-12,-51.788967,0,-9,-9,2019,4,0,53,52,1,0,0,5.5775499,5.5775499,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.17,15.32,8.333333333333334,4,2,0,0,9,4,3,1,1074.5,1159057.3,636029.25,218166.31,0,2022.7745 -657,812,1447,-9,1449,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.96326,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,491.33334,32101.797,66212.477,0,0,2264.5696 -657,812,1448,-9,1449,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.4765,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,491.33334,32101.797,66212.477,0,0,2264.5696 -657,812,1449,-9,-9,-9,1,0,28,0,2,0,1,1,-9,0,3,8.4207106,8.3885508,0,0,0,-1057.5845,-9,3,3,2019,16,3,24,0,1,3,0,21.175962,21.175962,0,0,0,0,0,1,1,0,0,0,24.06,49.84,-9,-9,3.333333333333333,1,1,0,0,6,4,3,0,491.33334,32101.797,66212.477,0,0,2264.5696 -658,813,1450,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2420692,8.2596989,0,0,0,-986.54315,0,3,-9,2019,13,2,37,37,1,2,0,11.614735,11.614735,0,0,0,0,0,1,1,0,0,0,49.45,51.4,-9,-9,8.333333333333334,1,1,0,0,13,11,4,1,1353,156731.64,0,66382.344,23250.119,1671.5105 -659,814,1451,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1013.1017,0,3,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.83,42.32,-9,-9,3.333333333333333,1,1,1,1,4,9,1,0,1521,437342.63,100091.26,235238.63,87225.727,484.1507 -660,815,1452,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.4597974,5.4439321,0,0,-887.78711,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.1039422,5.6774921,61.04,39.41,-9,-9,6.666666666666667,1,1,0,0,3,5,2,1,1656,324266.06,9259.5303,123849.58,0,1278.442 -661,816,1453,1454,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,0,0,2,-20,0,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,55.5,23.73,52,48,10,4,2,1,0,2,8,1,0,793,257373.19,86878.125,242506.78,0,2596.2786 -661,816,1454,1453,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,0,0,0,2,20,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,55.5,23.73,7,4,2,0,0,0,8,1,0,793,257373.19,86878.125,242506.78,0,2596.2786 -662,817,1455,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.6822286,7.4252725,0,0,-964.45331,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,1,1,0,2.5681312,7.6279082,31.55,42.63,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,997,500859.63,369334.13,0,0,2123.0928 -663,818,1456,-9,1460,1458,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1023.0171,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.7575536,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 -663,818,1457,-9,1460,1458,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.9938,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 -663,818,1458,1460,-9,-9,1,1,47,0,3,0,1,1,-9,0,3,9.6929188,9.3822231,0,25,1,-86.005737,0,3,3,2019,9,0,50,40,1,0,0,27.718536,27.718536,0,0,0,0,0,0,0,0,3.0532408,0,54.96,53.17,51.44,53.27,8.333333333333334,1,1,0,0,8,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 -663,818,1459,-9,1460,1458,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.4371,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 -663,818,1460,1458,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.7410765,7.5505981,0,25,-1,30.141338,0,2,2,2019,10,1,20,0,1,1,0,13.834356,13.834356,0,0,0,0,0,0,0,0,0,0,51.44,53.27,54.96,53.17,8.333333333333334,1,1,0,0,6,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 -663,818,1461,-9,1460,1458,1,1,17,0,3,1,2,0,0,0,3,0,0,0,0,0,-1013.5351,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.95,47.23,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,1139.1666,1538483.5,966215.13,534125.38,250490.67,5067.1602 -664,819,1462,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.9154677,6.7342143,0,0,-827.36517,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5605924,7.0662937,60.12,54.8,-9,-9,0,1,1,0,0,7,7,2,1,467,35804.273,225282.92,0,0,107.9942 -665,820,1463,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,5.826807,5.7895188,0,0,-874.77954,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.784409,5.755775,40.55,44.93,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,141,356334.22,-15333.187,0,0,705.47351 -666,821,1464,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.0215893,9.2785826,0,0,0,-1182.6781,0,2,2,2019,10,0,46,12,1,0,0,25.969381,25.969381,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,10,9,5,0,780,1183159.4,730965.75,357079.91,93125.594,3344.0095 -667,822,1465,1466,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,9,-2,0,0,3,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,42,1,1,0,0,0,33.22,33.59,45.13,24.08,3.333333333333333,1,1,0,0,0,13,1,0,450,-88669.75,0,0,0,1656.0336 -667,822,1466,1465,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,9,2,0,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.13,24.08,33.22,33.59,6.666666666666667,1,1,0,0,0,13,1,0,450,-88669.75,0,0,0,1656.0336 -668,823,1467,1468,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9558134,7.7578878,0,16,1,-32.371414,0,2,2,2019,9,1,28,26,1,1,0,12.46288,12.46288,0,0,0,0,0,1,1,0,0,0,65.22,28.04,47.37,56.65,8.333333333333334,1,1,0,0,11,10,4,1,2141.3333,785867.06,595593.5,187047.73,83114.531,3183.8914 -668,823,1468,1467,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,8.4235487,8.3083038,0,16,-1,63.535275,0,2,2,2019,13,2,49,49,1,2,0,9.8050022,9.8050022,0,0,0,0,0,1,1,0,2.4942646,0,47.37,56.65,65.22,28.04,8.333333333333334,1,1,0,1,11,10,4,1,2141.3333,785867.06,595593.5,187047.73,83114.531,3183.8914 -668,823,1469,-9,1467,1468,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4512,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,2141.3333,785867.06,595593.5,187047.73,83114.531,3183.8914 -669,824,1470,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,5.6289554,5.4445691,0,0,-1108.9463,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,14.030459,0,127.73518,0,1,1,0,3.445725,5.4721494,33.7,25.22,-9,-9,10,1,1,0,0,0,11,2,0,793,434801.75,0,99602.359,0,1770.0195 -670,825,1471,-9,-9,-9,1,0,50,0,0,0,1,1,-9,1,3,7.1154494,7.2281227,6.5213909,0,0,-996.46521,0,1,1,2019,12,0,21,16,1,2,0,6.3840628,6.3840628,0,0,0,0,2,1,1,0,6.8798423,0,47,50,-9,-9,7,1,1,0,0,4,4,3,1,738.5,242241.38,28901.311,136881.53,-3706.7307,2893.3091 -670,825,1472,-9,1471,-9,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-921.79041,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,1,4,3,1,738.5,242241.38,28901.311,136881.53,-3706.7307,2893.3091 -670,826,1473,-9,1471,-9,1,0,19,0,0,1,2,0,0,0,3,0,4.5309663,4.9921622,0,0,-926.27747,-9,1,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,5.3170013,0,33.77,58.98,-9,-9,6.666666666666667,1,1,0,0,3,4,2,1,157,48200.41,0,0,0,-411.68381 -671,827,1474,1475,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.0249166,8.1085033,0,7,2,-63.479828,0,1,2,2019,21,10,38,37,1,10,0,8.1021233,8.1021233,0,0,0,0,0,0,0,0,0,0,33.14,64.63,27.45,63.27,3.333333333333333,1,1,0,0,8,5,5,1,405,382461.28,98586.227,0,0,3276.4463 -671,827,1475,1474,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.5835409,8.8141975,0,7,-2,74.430367,0,-9,-9,2019,14,3,43,41,1,3,0,18.608427,18.608427,0,0,0,0,0,0,0,0,2.640985,0,27.45,63.27,33.14,64.63,5,1,1,0,0,6,5,5,1,405,382461.28,98586.227,0,0,3276.4463 -672,828,1476,1479,-9,-9,1,1,33,1,2,0,2,2,-9,0,3,8.7738638,9.1143332,0,12,1,-32.710396,0,2,2,2019,8,0,43,40,1,0,0,21.267092,21.267092,0,0,0,0,0,1,1,0,3.1064765,0,54.96,53.17,49.46,56.91,8.333333333333334,1,1,0,0,8,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 -672,828,1477,-9,1479,1476,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.6133,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 -672,828,1478,-9,1479,1476,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.01239,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 -672,828,1479,1476,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,7.5894914,8.2269459,0,12,-1,-126.50248,0,2,2,2019,6,0,23,23,1,0,0,13.417422,13.417422,0,0,0,0,0,1,1,0,3.1439312,0,49.46,56.91,54.96,53.17,8.333333333333334,1,1,0,0,9,2,5,1,854.25,744773,418577,262092.16,105485.3,4470.6064 -673,829,1480,1482,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.2050619,7.8500113,0,22,-4,-14.085067,0,2,2,2019,9,0,35,35,1,0,0,9.4085684,9.4085684,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,1.666666666666667,1,1,0,0,11,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 -673,829,1481,-9,1480,1482,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5422,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 -673,829,1482,1480,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,0,0,0,21,4,41.438721,0,1,2,2019,10,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,.22248594,0,54.37,54.8,57.16,56.15,1.666666666666667,1,1,1,0,10,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 -673,829,1483,-9,1480,1482,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1026.3905,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 -673,829,1484,-9,1480,1482,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.59088,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,1,1083.4,7389.5571,-12329.941,0,0,4797.0586 -674,830,1485,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1022.911,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.38,38.92,-9,-9,10,1,1,0,0,0,12,1,1,757,-47816.328,0,0,0,1139.7377 -675,831,1486,1487,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.2974882,8.8460503,0,1,0,-53.691444,0,3,3,2019,8,0,40,40,1,0,0,29.942665,29.942665,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.79,50.19,6.666666666666667,1,1,0,0,11,8,5,0,884.5,417305.56,160443.41,366671.16,151038.3,4609.7822 -675,831,1487,1486,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.8306236,8.01579,0,1,0,-41.817257,-9,-9,-9,2019,13,1,40,0,1,1,0,8.8287849,8.8287849,0,0,0,0,0,0,0,0,0,0,45.79,50.19,57.06,57.76,8.333333333333334,1,1,0,0,5,8,5,0,884.5,417305.56,160443.41,366671.16,151038.3,4609.7822 -676,832,1488,1489,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.223958,7.7649207,6.8050752,9,-10,-42.985321,0,1,1,2019,9,0,13,9,1,0,0,14.607304,14.607304,0,0,0,0,0,1,1,0,6.6626434,0,55.36,51.57,32.57,56.78,8.333333333333334,1,1,0,0,5,10,4,1,761.66669,321099.06,207131.05,0,0,2943.918 -676,832,1489,1488,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.2955017,8.1032743,0,9,10,21.617514,0,2,2,2019,22,10,37,40,1,10,0,11.74193,11.74193,0,0,0,0,0,1,1,0,0,0,32.57,56.78,55.36,51.57,3.333333333333333,1,1,0,0,10,10,4,1,761.66669,321099.06,207131.05,0,0,2943.918 -676,832,1490,-9,1488,1489,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.9865,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,761.66669,321099.06,207131.05,0,0,2943.918 -676,833,1491,-9,1488,1489,1,0,19,0,1,0,2,2,1,0,4,7.6928596,8.0165348,0,0,0,-847.17468,-9,2,2,2019,12,0,25,0,1,2,1,11.27532,11.27532,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,10,3,1,220,356490.13,36004.141,0,0,1921.7028 -677,834,1492,1493,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.1000929,6.3017378,33,1,103.61568,-9,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,6.1171999,60.12,54.8,54.96,53.17,10,1,1,0,0,7,4,4,1,639,2431513,1659523.8,424108.31,0,3985.6919 -677,834,1493,1492,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.3544445,8.6490765,33,-1,28.551645,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.5151367,8.5667896,54.96,53.17,60.12,54.8,8.333333333333334,1,1,0,0,3,4,4,1,639,2431513,1659523.8,424108.31,0,3985.6919 -678,835,1494,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-997.67657,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,1.5468103,0,0,1,1,0,0,0,53,47,-9,-9,8,1,1,0,0,0,2,1,0,1208,-4322.1748,0,0,0,1267.468 -679,836,1495,-9,1496,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.8011,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,721,-164936.47,0,0,0,1121.1416 -679,836,1496,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,5,6.8440118,6.8657355,0,0,0,-1143.8916,0,2,2,2019,6,0,18,25,1,0,0,5.970283,5.970283,0,0,0,0,0,1,1,0,0,0,52.32,57.18,-9,-9,10,1,1,0,1,2,13,2,0,721,-164936.47,0,0,0,1121.1416 -680,837,1497,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,0,0,0,0,-873.94586,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.59,58.72,-9,-9,5,1,1,0,0,6,4,2,1,1291,829691.5,609187.81,54662.848,0,731.90942 -681,838,1498,-9,-9,-9,1,0,44,0,2,0,3,3,-9,1,4,0,0,0,0,0,-903.29535,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,661,263492.03,0,186237.66,112208.08,1235.6179 -681,838,1499,-9,1498,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.90613,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,661,263492.03,0,186237.66,112208.08,1235.6179 -681,838,1500,-9,1498,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.1511,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,661,263492.03,0,186237.66,112208.08,1235.6179 -681,839,1501,-9,1498,-9,1,0,25,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1000.5591,0,3,3,2019,12,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,48.8,41.25,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,549,-193528.92,0,0,0,1172.152 -682,840,1502,-9,1504,1505,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.26855,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 -682,840,1503,-9,1504,1505,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.099,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 -682,840,1504,1505,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.3731356,7.5121703,0,2,-6,88.960403,-9,2,2,2019,14,4,22,0,1,4,0,9.1718044,9.1718044,0,0,0,0,0,1,1,0,3.5254807,0,39.44,34.39,51.83,57.2,6.666666666666667,1,1,0,0,8,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 -682,840,1505,1504,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.4701185,8.4365101,0,2,6,-16.876175,0,3,3,2019,10,0,37,37,1,0,0,13.327406,13.327406,0,0,0,0,0,1,1,0,2.7808676,0,51.83,57.2,39.44,34.39,6.666666666666667,1,1,0,0,11,2,4,1,597.75,341520.75,23219.002,207809.16,94418.75,2735.356 -683,841,1506,1507,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.5280542,8.1528912,0,4,-4,126.4871,0,2,3,2019,19,7,16,16,1,7,0,39.824123,39.824123,0,0,0,0,0,1,1,0,2.4760103,0,44.83,57.81,38.57,64.48,8.333333333333334,1,1,0,0,9,13,5,1,1404.3334,206021.27,36455.238,125559.99,79599.766,3720.9685 -683,841,1507,1506,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.5171595,8.4238987,0,4,4,34.829201,0,-9,-9,2019,9,1,40,42,1,1,0,15.282162,15.282162,0,0,0,0,0,1,1,0,2.8076355,0,38.57,64.48,44.83,57.81,8.333333333333334,1,1,0,0,12,13,5,1,1404.3334,206021.27,36455.238,125559.99,79599.766,3720.9685 -683,841,1508,-9,1506,1507,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.1019,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,5,1,1404.3334,206021.27,36455.238,125559.99,79599.766,3720.9685 -684,842,1509,1510,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.9213905,8.2958679,0,8,0,-113.36475,0,3,3,2019,12,3,37,37,1,3,0,10.066537,10.066537,0,0,0,0,0,1,1,0,3.4655507,0,46.39,60.99,61.23,23.45,8.333333333333334,1,1,0,0,9,11,5,1,554.66669,1129937.9,1002723.1,68148.008,68842.891,3829.5007 -684,842,1510,1509,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.7421465,9.0849628,0,8,0,-47.207283,0,3,3,2019,7,0,38,38,1,0,0,18.85918,18.85918,0,0,0,0,2,1,1,0,3.5215726,0,61.23,23.45,46.39,60.99,8.333333333333334,1,1,0,0,9,11,5,1,554.66669,1129937.9,1002723.1,68148.008,68842.891,3829.5007 -684,842,1511,-9,1510,1509,1,0,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-957.99634,-9,1,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,1,0,0,11,5,1,554.66669,1129937.9,1002723.1,68148.008,68842.891,3829.5007 -685,843,1512,1513,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.1708484,7.6947188,7.1989918,6,-1,-36.178513,0,2,1,2019,29,10,10,32,1,10,0,7.4303255,7.4303255,0,0,0,0,0,1,1,0,8.8428221,0,27.43,58.87,54.1,59.11,6.666666666666667,1,1,0,0,7,10,4,1,428.5,200179.81,209690.41,105129.52,26590.369,3666.8892 -685,843,1513,1512,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,7.1029696,8.4338341,8.0547018,6,1,-35.338764,0,2,3,2019,8,0,27,44,1,0,0,4.9283075,4.9283075,0,0,0,0,0,1,1,0,3.800606,7.7336617,54.1,59.11,27.43,58.87,8.333333333333334,1,1,0,0,7,10,4,1,428.5,200179.81,209690.41,105129.52,26590.369,3666.8892 -686,844,1514,1515,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.5812359,6.5568147,53,4,-57.455322,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.1620941,6.7390466,43.71,56.91,46.63,24.26,10,1,1,0,0,0,5,4,1,701,1317574.8,903291,345000.75,0,5667.0244 -686,844,1515,1514,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,8.4526834,8.4351692,53,-4,123.03275,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,12.128935,0,0,1,1,0,8.6307707,5.6079507,46.63,24.26,43.71,56.91,8.333333333333334,1,1,0,0,0,5,4,1,701,1317574.8,903291,345000.75,0,5667.0244 -687,845,1516,1517,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.5399942,8.768775,44,0,64.135712,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6526375,7.7274938,61.26,51.57,55.36,51.57,8.333333333333334,1,1,0,0,8,2,4,1,280,2232010.5,863466.75,354332.06,0,4475.5957 -687,845,1517,1516,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.6289549,7.479198,44,0,-21.69429,0,2,1,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.4758568,7.7079949,55.36,51.57,61.26,51.57,8.333333333333334,1,1,0,0,5,2,4,1,280,2232010.5,863466.75,354332.06,0,4475.5957 -688,846,1518,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.7490611,8.0877504,0,0,-1003.2749,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2281609,8.1658325,56.47,44.11,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,483,1116303,523340.69,324489.06,0,3646.4956 -689,847,1519,1520,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,5.3380218,5.359952,35,-10,-51.702156,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.4858155,0,54.2,57.49,59.71,50.89,8.333333333333334,1,1,0,0,0,13,3,1,395.5,965563.56,263857.56,307584.03,0,1787.4412 -689,847,1520,1519,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.338963,7.7325821,35,10,2.6775746,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1205106,7.4255166,59.71,50.89,54.2,57.49,8.333333333333334,1,1,0,0,0,13,3,1,395.5,965563.56,263857.56,307584.03,0,1787.4412 -690,848,1521,1522,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.5445929,7.7078209,16,5,44.552658,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,27,1,1,0,0,7.6839981,38.85,36.03,45.41,35.87,8.333333333333334,1,1,0,0,0,4,3,1,161.5,1464281.4,905299.25,425670.31,0,1846.1023 -690,848,1522,1521,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,16,-5,108.74236,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,35.87,38.85,36.03,6.666666666666667,1,1,0,0,10,4,3,1,161.5,1464281.4,905299.25,425670.31,0,1846.1023 -691,849,1523,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-973.00537,-9,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,3,6,2,0,233,118346.74,0,0,0,386.06467 -692,850,1524,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1143.6282,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50.92,51.31,-9,-9,5,4,2,1,0,0,5,1,0,1656,201951.97,0,0,0,752.25153 -693,851,1525,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.7435851,4.9025717,0,0,-949.39087,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.3929693,5.5222807,52,45,-9,-9,8,1,1,0,0,0,11,2,0,589,121896.74,-35878.488,0,0,1284.036 -693,852,1526,-9,1525,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-971.61371,0,3,-9,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,43.72,39.84,-9,-9,6.666666666666667,1,1,0,0,4,11,1,0,546,728457.94,0,0,0,849.21887 -694,853,1527,1529,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.1702733,7.1281834,0,17,-2,-24.821056,0,3,3,2019,9,0,22,22,1,0,0,7.9698353,7.9698353,0,0,0,0,0,1,1,0,0,0,55.96,49.93,51,56,6.666666666666667,1,1,0,0,9,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 -694,853,1528,-9,1527,1529,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.3679,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 -694,853,1529,1527,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.6620579,8.7681227,0,20,2,53.524727,0,3,3,2019,9,0,45,55,1,1,0,20.955578,20.955578,0,0,0,0,0,1,1,0,0,0,51,56,55.96,49.93,8,1,1,0,0,1,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 -694,853,1530,-9,1527,1529,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.0364,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,688.75,357699.25,367359.53,141271.27,282188.94,2963.9429 -695,854,1531,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,6.3573489,6.7826915,0,0,-996.77985,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6200418,6.4142733,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,1,497,176653.52,12024.99,170118.48,0,487.04739 -696,855,1532,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.8011918,7.42413,0,0,-967.86401,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.3446813,7.4858837,57,54,-9,-9,10,1,1,0,0,5,2,3,0,281,628438.31,400056.22,217821.94,0,1658.0151 -697,856,1533,1534,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.649652,7.3683653,36,1,95.696213,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,4.2554159,7.2858496,53.78,48.41,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,528.5,2147525,2029787.8,391593.19,163412.19,1918.1409 -697,856,1534,1533,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.4583473,7.3034773,0,36,-1,-80.115036,0,3,3,2019,8,0,21,21,1,0,0,8.658392,8.658392,0,0,0,0,2,0,0,0,6.4053502,0,57.16,56.15,53.78,48.41,8.333333333333334,1,1,0,0,8,10,3,1,528.5,2147525,2029787.8,391593.19,163412.19,1918.1409 -698,857,1535,1536,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,2.0525796,1.7719988,46,0,81.53064,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6568604,2.0866709,56.47,46.82,48.91,43.45,8.333333333333334,1,1,0,0,9,9,2,1,238.5,436020.84,136590.3,230577.91,0,2787.7104 -698,857,1536,1535,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.9688621,6.5320511,49,0,24.725426,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6624131,6.6754022,48.91,43.45,56.47,46.82,10,1,1,0,0,0,9,2,1,238.5,436020.84,136590.3,230577.91,0,2787.7104 -699,858,1537,1538,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.9886847,6.7741151,46,3,63.291828,0,1,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.5592489,6.9375305,35.52,53.53,32.54,55.45,6.666666666666667,1,1,0,0,0,10,3,1,378,1811068.5,1049641.4,557443.25,0,2742.75 -699,858,1538,1537,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.8047404,7.8987575,46,-3,-97.059196,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,4.9623914,7.9657736,32.54,55.45,35.52,53.53,6.666666666666667,1,1,0,0,4,10,3,1,378,1811068.5,1049641.4,557443.25,0,2742.75 -700,859,1539,-9,1541,1543,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.9886,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 -700,859,1540,-9,1541,1543,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.58435,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 -700,859,1541,1543,-9,-9,1,0,42,0,3,0,3,3,-9,0,4,0,0,0,26,2,61.274113,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,54,58,8,2,3,0,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 -700,859,1542,-9,1541,1543,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.3334,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 -700,859,1543,1541,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,7.8173389,7.6330233,0,26,-2,11.834354,0,3,3,2019,14,1,37,37,1,1,0,9.3894358,9.3894358,0,0,0,0,0,1,1,0,0,0,54,58,50,55,8.333333333333334,2,3,0,0,10,4,2,1,894.79999,218392.17,0,270543.88,0,2397.3862 -700,860,1544,-9,1541,1543,1,0,20,0,3,0,2,2,-9,0,5,7.3312511,7.5087972,0,0,0,-957.50616,0,3,2,2019,15,5,25,0,1,5,1,5.9500847,5.9500847,0,0,0,0,0,1,1,0,0,0,43.78,59.14,-9,-9,10,2,3,0,0,1,4,3,1,528,-252778.8,-19445.779,0,0,586.42542 -700,861,1545,-9,1541,1543,1,0,18,0,3,0,2,2,1,0,3,0,0,0,0,0,-1073.3528,-9,3,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,65.63,42.82,-9,-9,10,2,3,1,0,0,4,1,1,860,-331768.38,0,0,0,0 -701,862,1546,1547,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.9590883,8.0430536,0,8,7,7.5659351,0,3,3,2019,7,0,50,50,1,0,0,6.1267328,6.1267328,0,0,0,0,0,1,1,0,.49944255,0,59.31,49.81,53.14,45.74,6.666666666666667,1,1,0,0,9,9,4,1,1320,1898335.5,1133848,513908.69,0,3202.2607 -701,862,1547,1546,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.1449718,8.2922411,0,8,-7,-18.307774,0,-9,-9,2019,8,0,50,70,1,0,0,10.127028,10.127028,0,0,0,0,0,1,1,0,.17003587,0,53.14,45.74,59.31,49.81,8.333333333333334,1,1,0,0,9,9,4,1,1320,1898335.5,1133848,513908.69,0,3202.2607 -702,863,1548,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,7.4452305,7.5663819,0,0,-988.62097,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1578684,7.4652705,57.06,57.76,-9,-9,10,1,1,0,0,9,2,3,1,209,438781.91,422598.69,152284.5,13128.369,1753.2521 -703,864,1549,1550,-9,-9,1,1,58,0,1,0,3,3,-9,0,3,8.8718128,8.7304001,0,4,13,-32.116425,0,-9,-9,2019,7,0,60,50,1,0,0,10.797999,10.797999,0,0,0,0,0,1,1,0,0,0,61.04,39.41,34.63,52.23,5,1,1,0,0,6,6,5,1,810.5,852519.13,829549.06,144942.16,8521.1074,4592.106 -703,864,1550,1549,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.8364882,8.2790508,6.3490605,4,-13,-20.942173,0,3,3,2019,12,0,41,38,1,0,0,10.040277,10.040277,0,0,0,0,0,1,1,0,7.1761799,0,34.63,52.23,61.04,39.41,6.666666666666667,1,1,0,0,9,6,5,1,810.5,852519.13,829549.06,144942.16,8521.1074,4592.106 -704,865,1551,-9,1554,1553,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.8275,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 -704,865,1552,-9,1554,1553,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.9811,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 -704,865,1553,1554,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,9.51966,9.3725319,0,16,-1,33.930408,0,3,3,2019,7,0,70,72,1,0,0,23.296558,23.296558,0,0,0,0,0,0,0,0,3.1338432,0,58.74,40.91,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 -704,865,1554,1553,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,0,0,0,17,1,23.282785,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.6453301,0,48.87,58.55,58.74,40.91,6.666666666666667,1,1,0,0,2,7,5,1,294,-46587.051,36.282837,290039.31,210571.31,4958.6255 -705,866,1555,1556,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,38,-10,10.339567,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,62.39,56.71,7,1,1,0,0,0,9,2,0,1159.5,1141736.3,60993.16,499054.88,0,2017.4155 -705,866,1556,1555,-9,-9,1,1,73,0,0,0,3,3,-9,0,5,0,7.032176,6.9289899,38,10,-4.9457569,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,.50991958,6.5204825,62.39,56.71,49,48,8.333333333333334,1,1,0,0,0,9,2,0,1159.5,1141736.3,60993.16,499054.88,0,2017.4155 -705,867,1557,-9,1555,1556,1,1,43,0,0,0,2,2,-9,0,4,8.3023233,8.4792881,0,0,0,-880.55182,-9,2,3,2019,10,0,40,0,1,1,0,14.878406,14.878406,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,9,5,0,436,740795.69,643193.44,0,0,1820.3264 -706,868,1558,-9,1561,1560,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.02985,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 -706,868,1559,-9,1561,1560,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-916.14471,-9,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.4,48.33,-9,-9,5,1,1,0,0,12,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 -706,868,1560,1561,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.7946978,8.9398861,0,9,-7,-39.239368,0,2,2,2019,12,1,43,44,1,1,0,16.935452,16.935452,0,0,0,0,0,1,1,0,0,0,40.47,56.92,46.3,55.95,8.333333333333334,1,1,0,0,10,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 -706,868,1561,1560,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9209461,8.0348768,0,9,7,-30.170486,0,-9,-9,2019,16,4,39,39,1,4,0,7.5315089,7.5315089,0,0,0,0,0,1,1,0,0,0,46.3,55.95,40.47,56.92,6.666666666666667,1,1,0,0,12,12,5,1,770.25,382652.19,41967.797,394347.81,135204.09,4017.1343 -707,869,1562,1563,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.7887726,8.9736776,5.6056814,3,-3,67.606796,0,2,2,2019,15,3,57,42,1,3,0,14.090979,14.090979,0,0,0,0,0,0,0,0,5.8240695,0,38.34,62.12,46.39,52.95,6.666666666666667,1,1,0,0,6,11,5,1,346,307752.06,102421.93,186091.16,128373.33,3215.3552 -707,869,1563,1562,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,7.5438561,7.6551342,0,3,3,29.216124,-9,-9,-9,2019,12,0,50,0,1,0,0,4.9653916,4.9653916,0,0,0,0,0,0,0,0,.45241475,0,46.39,52.95,38.34,62.12,6.666666666666667,1,1,0,0,7,11,5,1,346,307752.06,102421.93,186091.16,128373.33,3215.3552 -708,870,1564,-9,1565,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.3184,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,597.66669,-150390.28,0,0,0,1577.6633 -708,870,1565,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,2,0,0,0,0,0,-880.20404,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.71,38.22,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,597.66669,-150390.28,0,0,0,1577.6633 -708,870,1566,-9,1565,-9,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-992.36658,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,0,13,1,0,597.66669,-150390.28,0,0,0,1577.6633 -709,871,1567,1568,-9,-9,1,1,88,0,0,0,3,3,-9,0,5,0,6.4569535,6.4506173,7,16,-65.451881,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6674461,60.02,56.42,55.24,41.83,10,1,1,0,0,0,8,2,1,318.5,1172325.3,159880.03,615585.38,0,1770.271 -709,871,1568,1567,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.9489288,4.947412,30,-16,50.938358,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.3325205,4.9450316,55.24,41.83,60.02,56.42,10,1,1,0,0,0,8,2,1,318.5,1172325.3,159880.03,615585.38,0,1770.271 -710,872,1569,-9,1571,1570,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.94226,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 -710,872,1570,1571,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.3681755,8.628643,0,11,0,55.59539,0,1,1,2019,7,0,40,43,1,0,0,16.923746,16.923746,0,0,0,0,0,0,0,0,0,0,57.17,50.61,53.68,49.68,8.333333333333334,2,3,0,0,7,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 -710,872,1571,1570,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,0,0,0,11,0,-.67794394,0,3,3,2019,10,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,3.7559276,0,53.68,49.68,57.17,50.61,5,2,3,1,0,12,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 -710,872,1572,-9,1571,1570,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.6554,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,668.5,-111011.08,-37423.859,0,0,1666.1461 -711,873,1573,-9,1576,1574,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-826.8772,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 -711,873,1574,1576,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.4787283,8.7030077,0,15,1,-168.20322,0,-9,-9,2019,6,0,48,48,1,0,0,11.483799,11.483799,0,0,0,0,0,1,1,0,0,0,60.52,53.2,57.06,57.76,8.333333333333334,1,1,0,0,8,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 -711,873,1575,-9,1576,1574,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0992,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 -711,873,1576,1574,-9,-9,1,0,36,1,2,0,1,1,-9,0,5,8.4079981,8.4814157,0,13,-1,-35.847961,0,-9,-9,2019,6,0,30,30,1,0,0,16.820597,16.820597,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.52,53.2,8.333333333333334,1,1,0,0,10,1,4,1,1166.5,178702,33623.719,302793.63,184609.8,3622.4851 -712,874,1577,1578,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5576401,5.3985939,43,9,32.342602,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.4640474,42.24,52.48,46.38,47.78,8.333333333333334,1,1,0,0,0,10,2,1,721.5,457136.34,190713.23,185729.39,0,1503.6028 -712,874,1578,1577,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.3697739,7.3476782,43,0,-48.806332,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.1822119,7.5861573,46.38,47.78,42.24,52.48,8.333333333333334,1,1,0,0,0,10,2,1,721.5,457136.34,190713.23,185729.39,0,1503.6028 -713,875,1579,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1011.2004,-9,3,3,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.67,37.73,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,441,-88689.82,0,0,0,688.00281 -713,876,1580,-9,1579,-9,1,0,21,0,1,1,2,0,-9,0,3,0,0,0,0,0,-966.26086,-9,2,-9,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,7,1,1,0,0,0,28.16,49.42,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,2233,188934.39,0,0,0,3200.7634 -714,877,1581,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,9.2023802,9.4271898,6.331944,0,0,-1088.2271,0,2,2,2019,17,5,70,60,1,5,0,20.498264,20.498264,0,0,0,0,0,0,0,0,7.1142654,6.888813,38.39,40.89,-9,-9,6.666666666666667,1,1,0,0,13,9,5,1,529,1119802,438921.97,610610,0,4369.4976 -715,878,1582,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.3498392,8.6288109,0,0,0,-1030.7271,0,2,1,2019,13,1,38,35,1,1,0,14.933273,14.933273,0,0,0,0,0,0,0,0,3.4499669,0,31.29,61.29,-9,-9,3.333333333333333,1,1,0,0,8,2,5,1,296,18771.934,-69672.953,0,0,2454.2625 -716,879,1583,-9,-9,-9,1,0,47,0,2,0,3,3,-9,0,5,7.5905194,8.040617,0,0,0,-1035.9528,0,-9,3,2019,26,9,39,50,1,9,0,8.6970606,8.6970606,0,0,0,0,0,1,1,0,0,0,35.24,42.14,-9,-9,3.333333333333333,1,1,0,0,2,6,3,0,688,540954.38,-9347.4629,0,0,1426.188 -716,880,1584,-9,1585,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.6127,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,2,0,583,-12630.897,0,0,0,1270.6163 -716,880,1585,-9,1583,-9,1,0,25,0,2,0,2,2,-9,0,5,7.1153102,6.5127554,0,0,0,-899.17743,0,3,-9,2019,15,4,8,0,1,4,1,13.837536,13.837536,0,0,0,0,0,1,1,0,0,0,41.16,49.84,-9,-9,8.333333333333334,1,1,0,0,1,6,2,0,583,-12630.897,0,0,0,1270.6163 -716,880,1586,-9,1585,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.96802,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,2,0,583,-12630.897,0,0,0,1270.6163 -717,881,1587,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.8044901,7.558569,4.654933,0,0,-1048.0143,0,2,-9,2019,18,6,37,38,1,6,0,7.5362186,7.5362186,0,0,0,0,0,1,1,0,4.6657381,0,40.65,57.36,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,1408.5,-37252.148,0,0,0,1150.6835 -717,881,1588,-9,1587,-9,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-947.034,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,1408.5,-37252.148,0,0,0,1150.6835 -718,882,1589,1590,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,4.3967652,4.203084,9,1,34.802582,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8052974,4.2790084,58.92,48.59,58.15,52.91,8.333333333333334,1,1,0,0,7,2,2,1,688,582977.88,4489.2402,205895.81,0,1581.0674 -718,882,1590,1589,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.0492282,4.484745,9,-1,194.19157,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2322769,4.4387712,58.15,52.91,58.92,48.59,8.333333333333334,1,1,0,0,7,2,2,1,688,582977.88,4489.2402,205895.81,0,1581.0674 -719,883,1591,1592,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,66,-1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,7,1,1,130.5,58316.508,75830.508,0,0,1127.5149 -719,883,1592,1591,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,0,0,66,1,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.7390521,0,55,45,53,44,8,1,1,0,1,0,7,1,1,130.5,58316.508,75830.508,0,0,1127.5149 -720,884,1593,1594,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.9415836,7.0637956,49,1,-101.10681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7747378,7.0495472,60.29,52.11,60.12,54.8,10,1,1,0,0,5,5,2,1,1189,25438.311,286756.19,122827.67,0,1687.0552 -720,884,1594,1593,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.6087089,4.4618902,49,-1,-112.80624,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9048503,4.4516211,60.12,54.8,60.29,52.11,10,1,1,0,0,7,5,2,1,1189,25438.311,286756.19,122827.67,0,1687.0552 -721,885,1595,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1105.7743,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.7538608,0,52,45,-9,-9,8,1,1,0,0,0,4,2,1,1310,128896.57,0,0,0,1561.7791 -722,886,1596,-9,1597,1599,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-900.38153,1,2,1,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,1,0,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 -722,886,1597,1599,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.7410192,7.4075522,0,10,-3,-73.42897,0,3,2,2019,8,0,30,37,1,0,0,7.4028029,7.4028029,0,0,0,0,0,1,1,0,0,0,51.64,50.48,54.61,51.04,6.666666666666667,1,1,0,0,11,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 -722,886,1598,-9,1597,1599,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-877.7796,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 -722,886,1599,1597,-9,-9,1,1,53,0,1,0,1,1,-9,0,2,8.0274792,8.3664942,0,10,3,-62.385002,0,3,3,2019,10,0,55,42,1,0,0,6.5431881,6.5431881,0,0,0,0,7,1,1,0,0,0,54.61,51.04,51.64,50.48,6.666666666666667,1,1,0,0,10,12,3,1,1109.5,553353.19,48665.766,169466.97,0,2183.6292 -723,887,1600,1601,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,6.6212611,6.4756322,0,7,2,.44760224,0,3,3,2019,18,7,10,12,1,7,0,5.7094321,5.7094321,0,0,0,0,0,0,0,0,0,0,37.25,27.78,37.97,44.57,3.333333333333333,1,1,0,1,8,13,4,1,523.5,504639.75,319695,95496.445,0,1951.8354 -723,887,1601,1600,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.4120951,8.3669891,0,7,-2,-26.194027,0,3,-9,2019,12,0,42,39,1,0,0,12.295038,12.295038,0,0,0,0,0,0,0,0,0,0,37.97,44.57,37.25,27.78,6.666666666666667,1,1,0,1,8,13,4,1,523.5,504639.75,319695,95496.445,0,1951.8354 -724,888,1602,1603,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,7,-6,-65.762192,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.38,41.85,48.1,57.86,10,1,1,0,0,1,13,2,1,786.5,232581,107608.63,261018.39,0,1135.4873 -724,888,1603,1602,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.2664819,6.1160364,7,6,70.169998,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7678082,6.1706715,48.1,57.86,61.38,41.85,1.666666666666667,1,1,0,0,0,13,2,1,786.5,232581,107608.63,261018.39,0,1135.4873 -725,889,1604,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.669805,6.0244923,0,0,-1040.9231,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,7.5403728,0,59.849693,0,1,1,0,7.2893825,5.6052046,54,51,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,286,109496.66,9579.4795,0,0,1453.5947 -726,890,1605,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.0055609,6.9719744,0,0,-968.71283,0,3,2,2019,17,7,0,0,4,7,0,0,0,1,3.0964706,.49621952,18.282366,0,1,1,0,4.2177939,7.0584946,33.89,52.29,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,867,118673.67,149937.14,0,0,1730.7869 -727,891,1606,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,2,7.8002787,7.6294265,0,0,0,-1075.7914,0,2,2,2019,14,3,3,14,1,3,0,91.698853,91.698853,0,0,0,0,0,0,0,0,0,0,31.18,57.88,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1298,583187.25,417658.66,0,0,898.78857 -728,892,1607,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,9.1294718,9.0811148,0,0,0,-959.54346,0,2,2,2019,11,0,50,50,1,0,0,15.818022,15.818022,0,0,0,0,0,0,0,0,5.0683441,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,9,6,5,1,442,224027.39,34079.5,183507.69,108257.72,3077.0469 -729,893,1608,-9,1609,1610,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.59674,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 -729,893,1609,1610,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.4223976,7.6448078,0,9,6,-113.24317,0,2,2,2019,7,0,23,24,1,0,0,9.4456329,9.4456329,0,0,0,0,0,1,0,1,0,0,51,52.08,49.04,55.86,8.333333333333334,1,1,0,0,10,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 -729,893,1610,1609,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.1697235,8.457099,0,9,-6,-26.941956,0,2,1,2019,14,3,47,41,1,3,0,10.562989,10.562989,0,0,0,0,0,1,0,1,0,0,49.04,55.86,51,52.08,6.666666666666667,1,1,0,1,11,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 -729,893,1611,-9,1609,1610,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-879.12848,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,994.75,469784.38,226667.63,0,0,2624.2397 -730,894,1612,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-923.76501,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,30.63,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,147,-181296.77,0,0,0,351.12476 -731,895,1613,1614,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,48,-2,0,0,3,3,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.97,50.38,63.26,29.17,3.333333333333333,1,1,0,0,5,13,1,1,252.5,196098.27,0,0,0,1595.7949 -731,895,1614,1613,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,48,2,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.26,29.17,23.97,50.38,8.333333333333334,1,1,0,0,0,13,1,1,252.5,196098.27,0,0,0,1595.7949 -732,896,1615,1616,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,44.77,39.56,7,2,3,0,0,0,7,1,1,1427.5,528416.56,0,432650.25,0,1973.2039 -732,896,1616,1615,-9,-9,1,1,64,0,0,0,3,3,-9,1,1,0,0,0,41,3,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.77,39.56,49,48,6.666666666666667,2,3,0,1,0,7,1,1,1427.5,528416.56,0,432650.25,0,1973.2039 -733,897,1617,1618,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,9.1206408,9.0464926,49,2,28.431118,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7056885,62.49,55.09,51,46,8.333333333333334,1,1,0,0,7,9,5,1,1139,2206593,972479.25,660228,0,9857.6846 -733,897,1618,1617,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,3.5006351,3.5602598,49,-2,17.347197,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.9532938,3.5501869,51,46,62.49,55.09,7,1,1,0,0,0,9,5,1,1139,2206593,972479.25,660228,0,9857.6846 -734,898,1619,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9203739,7.9774528,0,0,0,-991.64929,0,-9,-9,2019,17,6,56,66,1,6,0,3.862839,3.862839,0,0,0,0,0,0,0,0,0,0,39.5,41.06,-9,-9,5,1,1,0,0,8,7,3,0,1071,-165744.17,0,0,0,1184.129 -735,899,1620,-9,1623,1622,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1027.073,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 -735,899,1621,-9,1623,1622,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1168.6313,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 -735,899,1622,1623,-9,-9,1,1,47,0,2,0,2,2,-9,0,1,.39091703,.41088641,0,19,7,100.84802,0,-9,2,2019,31,12,50,30,1,12,0,.0034161219,.0034161219,0,0,0,0,71.5,1,1,0,0,0,26.99,29.87,51.41,56.15,0,1,1,0,1,10,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 -735,899,1623,1622,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,19,-7,19.728882,0,-9,1,2019,7,0,0,31,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,26.99,29.87,6.666666666666667,1,1,0,1,5,7,2,1,527.25,233323.52,0,179493.02,0,424.01373 -736,900,1624,-9,1627,1626,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1099.9723,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,519.75,141063.7,0,0,0,6274.1553 -736,900,1625,-9,1627,1626,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1147.4683,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,519.75,141063.7,0,0,0,6274.1553 -736,900,1626,1627,-9,-9,1,1,56,0,2,0,1,1,-9,0,4,9.5264435,9.6184397,0,23,12,55.041183,0,2,2,2019,12,2,43,42,1,2,0,42.893738,42.893738,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,12,9,5,1,519.75,141063.7,0,0,0,6274.1553 -736,900,1627,1626,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.5818872,8.4191084,0,23,-12,29.429327,0,2,2,2019,7,0,45,46,1,0,0,12.760023,12.760023,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,9,5,1,519.75,141063.7,0,0,0,6274.1553 -737,901,1628,1629,-9,-9,1,1,53,0,1,0,2,2,-9,1,1,0,0,0,7,0,0,-9,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,29.52,27.44,31.11,42.55,5,1,1,0,1,0,5,1,0,3647,234797.78,126762.63,249654.13,6206.231,2685.7632 -737,901,1629,1628,-9,-9,1,0,53,0,1,0,3,3,-9,1,3,0,0,0,7,0,0,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.11,42.55,29.52,27.44,5,1,1,1,1,0,5,1,0,3647,234797.78,126762.63,249654.13,6206.231,2685.7632 -737,901,1630,-9,1629,1628,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.9651,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,3647,234797.78,126762.63,249654.13,6206.231,2685.7632 -737,902,1631,-9,1629,1628,1,1,28,0,1,0,2,2,-9,0,4,6.7117076,6.9660602,0,0,0,-1094.4702,0,3,2,2019,10,0,20,16,1,1,1,7.0449157,7.0449157,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,2,0,330,35409.645,89089.984,0,0,253.3089 -738,903,1632,1633,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,5.4598441,5.2263813,24,-5,67.569916,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9011588,57.16,56.15,54.13,45.34,8.333333333333334,1,1,0,0,2,9,2,1,950,493805.06,11994.086,274206.47,0,1378.2925 -738,903,1633,1632,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.8831496,5.7388325,27,5,-83.867088,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.8495603,54.13,45.34,57.16,56.15,6.666666666666667,1,1,0,0,3,9,2,1,950,493805.06,11994.086,274206.47,0,1378.2925 -739,904,1634,1635,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.2568655,8.1576328,0,5,-4,-120.11842,0,2,2,2019,6,0,35,37,1,0,0,12.785192,12.785192,0,0,0,0,0,0,0,0,0,0,59.31,49.81,51.83,57.2,6.666666666666667,1,1,0,0,11,2,5,0,1095.5,-26239.461,58360.027,131504.77,72870.438,2966.8508 -739,904,1635,1634,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2217607,8.166975,0,5,4,-75.190735,-9,2,2,2019,6,0,40,0,1,0,0,11.835356,11.835356,0,0,0,0,0,0,0,0,0,0,51.83,57.2,59.31,49.81,8.333333333333334,1,1,0,0,10,2,5,0,1095.5,-26239.461,58360.027,131504.77,72870.438,2966.8508 -740,905,1636,1637,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.7614985,8.2234411,18,13,82.236824,0,1,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.2586546,57.16,56.15,48.66,41.51,5,1,1,0,0,9,7,5,1,283.5,3281511,2422685.5,430921.94,0,4490.8081 -740,905,1637,1636,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,9.2309151,9.3014555,0,7,-13,-176.15491,0,1,2,2019,17,5,47,47,1,5,0,24.51211,24.51211,0,0,0,0,0,0,0,0,0,0,48.66,41.51,57.16,56.15,3.333333333333333,1,1,0,0,9,7,5,1,283.5,3281511,2422685.5,430921.94,0,4490.8081 -741,906,1638,1639,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,30,-7,97.450142,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.621963,0,60.12,54.8,57.9,51.84,8.333333333333334,2,3,0,0,0,9,5,1,1374.5,283774.88,71068.953,203390.98,0,4689.5322 -741,906,1639,1638,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.1148157,9.1352167,7.7548285,30,7,-1.6988695,0,2,2,2019,8,0,35,40,1,0,0,19.705366,19.705366,0,0,0,0,0,0,0,0,4.0850077,7.8306465,57.9,51.84,60.12,54.8,8.333333333333334,1,1,0,0,8,9,5,1,1374.5,283774.88,71068.953,203390.98,0,4689.5322 -742,907,1640,1641,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.6623025,8.6219921,8.0109587,36,3,-85.722458,0,2,2,2019,12,3,40,40,1,3,0,6.9254704,6.9254704,0,0,0,0,0,1,1,0,7.4282408,8.0147753,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,1457.5,2049466.3,902392.25,814484.13,0,4395.7637 -742,907,1641,1640,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.5500784,8.7605534,0,36,-3,-102.18859,0,3,2,2019,9,0,43,43,1,0,0,11.483619,11.483619,1,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,10,1,1,0,0,11,7,5,1,1457.5,2049466.3,902392.25,814484.13,0,4395.7637 -743,908,1642,1644,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.732933,8.7816029,5.0919342,28,-1,-33.923481,0,2,2,2019,14,3,50,55,1,3,0,14.764944,14.764944,0,0,0,0,0,1,1,0,7.648809,0,40.61,64.02,23.05,65.12,1.666666666666667,1,1,0,0,9,12,4,0,387.33334,1002719.8,613754.56,261241.88,0,3123.3518 -743,908,1643,-9,1644,1642,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.2025,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,0,387.33334,1002719.8,613754.56,261241.88,0,3123.3518 -743,908,1644,1642,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,5.1626024,5.4634161,0,28,1,70.025787,-9,1,1,2019,19,6,25,0,1,6,0,.85612339,.85612339,0,0,0,0,0,1,1,0,0,0,23.05,65.12,40.61,64.02,5,1,1,0,0,7,12,4,0,387.33334,1002719.8,613754.56,261241.88,0,3123.3518 -743,909,1645,-9,1644,1642,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-994.80463,0,1,1,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,742,254040.8,0,0,0,0 -744,910,1646,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.837842,8.8326931,0,0,0,-951.88562,0,3,2,2019,20,6,36,0,1,6,0,26.950775,26.950775,0,0,0,0,0,0,0,0,0,0,46.35,43.93,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,602,396132.09,268451.28,191636.31,0,862.01563 -745,911,1647,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.1571512,5.3612986,0,0,-1152.4977,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5722423,52.8,24.85,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1126,-48579.309,64772.492,0,0,841.83124 -746,912,1648,1649,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,6.9885759,7.1541152,0,10,-1,12.079682,0,2,2,2019,11,0,20,25,1,0,0,7.1450415,7.1450415,0,0,0,0,0,0,0,0,5.7633882,0,44.43,38.34,51.5,45.28,5,1,1,0,0,13,5,4,0,1277,496045.31,497092.44,150211.19,95527.867,2363.2046 -746,912,1649,1648,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.2674932,8.5354757,0,10,1,-176.80466,0,2,2,2019,9,0,54,40,1,0,0,10.776402,10.776402,0,0,0,0,0,0,0,0,3.7457974,0,51.5,45.28,44.43,38.34,6.666666666666667,1,1,0,0,13,5,4,0,1277,496045.31,497092.44,150211.19,95527.867,2363.2046 -747,913,1650,1651,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,5.6106968,6.6498165,6.1099968,41,1,59.029827,0,3,2,2019,13,1,30,8,1,1,0,1.2928652,1.2928652,0,0,0,0,0,1,1,0,6.5964837,6.082263,64.55,33.63,57.33,53.46,8.333333333333334,1,1,0,0,13,8,2,1,991.5,32419.602,89467.125,279289.91,0,1098.0125 -747,913,1651,1650,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.6717882,4.561018,41,-1,-134.71312,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1804361,4.4734454,57.33,53.46,64.55,33.63,10,1,1,0,0,0,8,2,1,991.5,32419.602,89467.125,279289.91,0,1098.0125 -748,914,1652,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1072.3672,0,3,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,0,38.4,32.86,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,668.5,222536.22,0,0,0,853.7887 -748,914,1653,-9,1652,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.37225,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,668.5,222536.22,0,0,0,853.7887 -749,915,1654,1655,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.0394411,8.1656694,8,1,59.758526,0,3,3,2019,9,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0115061,8.3471909,52,54.51,50.17,42.09,8.333333333333334,1,1,0,0,8,12,5,1,1517.5,1547609.4,944819.56,274913.06,0,3929.4082 -749,915,1655,1654,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.8888655,8.8052111,0,8,-1,-44.656528,0,3,3,2019,11,0,50,43,1,0,0,10.484309,10.484309,0,0,0,0,0,1,1,0,0,0,50.17,42.09,52,54.51,3.333333333333333,1,1,0,0,9,12,5,1,1517.5,1547609.4,944819.56,274913.06,0,3929.4082 -750,916,1656,1657,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.4073019,5.4284601,38,3,-39.04739,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.58455813,5.5985179,57.16,56.15,57.16,56.15,10,1,1,0,0,8,2,2,1,542.5,746705.75,308953.06,207995.31,0,1454.365 -750,916,1657,1656,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,1,-3,-10.676753,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.72921556,0,57.16,56.15,57.16,56.15,10,1,1,0,0,10,2,2,1,542.5,746705.75,308953.06,207995.31,0,1454.365 -751,917,1658,-9,1660,1659,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.36945,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,761.33331,922081.25,977315.56,430684.69,191008.48,4036.1074 -751,917,1659,1660,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.6921635,8.9576397,0,11,2,26.394629,0,2,2,2019,14,2,35,40,1,2,0,23.295626,23.295626,0,0,0,0,0,1,1,0,0,0,42.22,58.79,54.79,55.86,8.333333333333334,1,1,0,0,13,6,5,1,761.33331,922081.25,977315.56,430684.69,191008.48,4036.1074 -751,917,1660,1659,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.2946386,8.070672,0,11,-2,-101.68158,0,2,2,2019,7,0,34,34,1,0,0,17.389816,17.389816,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.22,58.79,8.333333333333334,1,1,0,0,13,6,5,1,761.33331,922081.25,977315.56,430684.69,191008.48,4036.1074 -752,918,1661,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.6904025,7.7324276,0,0,0,-1073.4084,0,-9,-9,2019,12,0,35,0,1,0,0,6.8338037,6.8338037,0,0,0,0,2,0,0,0,0,0,36.92,51.87,-9,-9,6.666666666666667,1,1,0,0,6,2,3,1,146,103833.8,19144.303,0,0,1580.7201 -753,919,1662,1663,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,26,2,-71.257233,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,3.9936309,0,49.67,47.65,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,368,484215.31,176846.28,299305.91,124383.42,3531.8232 -753,919,1663,1662,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.1055193,8.834094,0,26,-2,-131.68324,0,-9,-9,2019,8,0,38,0,1,0,0,29.454525,29.454525,0,0,0,0,0,0,0,0,4.3890481,0,57.16,56.15,49.67,47.65,10,1,1,0,0,6,2,5,1,368,484215.31,176846.28,299305.91,124383.42,3531.8232 -754,920,1664,1665,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.2375107,8.0281258,0,6,11,-61.823742,0,2,2,2019,6,0,38,46,1,0,0,10.223562,10.223562,0,0,0,0,0,1,1,0,0,0,55.96,49.93,53.65,21.61,6.666666666666667,1,1,0,0,8,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 -754,920,1665,1664,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,7.0704641,7.2956715,0,6,-11,46.578808,0,2,2,2019,15,7,60,20,1,7,0,3.7007945,3.7007945,0,0,0,0,0,1,1,0,0,0,53.65,21.61,55.96,49.93,6.666666666666667,1,1,0,0,8,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 -754,920,1666,-9,1665,1664,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-981.24188,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 -754,920,1667,-9,1665,1664,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-974.11322,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,6,-9,0,0,5,4,0,563.25,263513.63,308578.72,0,0,4206.0527 -755,921,1668,1669,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.5790901,8.5261087,0,8,-2,143.5251,0,2,2,2019,10,0,43,45,1,0,0,13.259426,13.259426,0,0,0,0,0,0,0,0,3.2405481,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,8,2,4,1,1381.5,501488,512573.25,158774.14,0,2164.9336 -755,921,1669,1668,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,8,2,-10.075912,0,3,2,2019,9,1,0,42,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,1,0,8,2,4,1,1381.5,501488,512573.25,158774.14,0,2164.9336 -756,922,1670,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,9.3760319,9.4553003,0,0,0,-941.30762,0,2,1,2019,16,5,45,45,1,5,0,30.021717,30.021717,0,0,0,0,0,1,1,0,7.6140103,0,37.28,55.9,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,771,506349.31,-4712.5615,402063.78,118527.05,4837.7446 -757,923,1671,1672,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.2300768,8.4450359,0,34,0,38.822727,0,2,2,2019,11,0,40,40,1,0,0,13.377632,13.377632,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.17,49.39,8.333333333333334,1,1,0,0,12,9,4,1,512.5,484447.34,257700,203595.16,0,2130.0542 -757,923,1672,1671,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.2739353,7.2420321,0,34,0,56.417999,0,2,2,2019,7,0,25,25,1,0,0,8.4576855,8.4576855,0,0,0,0,0,0,0,0,0,0,51.17,49.39,54.2,57.49,10,1,1,0,0,12,9,4,1,512.5,484447.34,257700,203595.16,0,2130.0542 -757,924,1673,-9,1672,1671,1,1,24,0,0,0,1,1,-9,0,4,8.2385254,8.4744225,0,0,0,-897.9422,0,2,1,2019,3,0,43,38,1,0,1,13.074079,13.074079,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1402,-156192.36,61509.988,0,0,1749.5272 -757,925,1674,-9,1672,1671,1,0,22,0,0,0,2,2,-9,0,4,8.4590769,8.0477161,0,0,0,-1102.2822,0,2,1,2019,12,0,45,48,1,2,1,11.722797,11.722797,0,0,0,0,0,0,0,0,4.4178452,0,45,58,-9,-9,7,1,1,0,0,1,9,4,1,1408,509221.44,26124.324,0,0,789.90784 -758,926,1675,1676,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.997705,7.0964308,50,3,-106.27299,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0474157,51.97,33.14,55.96,49.93,10,1,1,0,0,5,2,2,1,1353,504072.88,363606.5,204120.09,0,1781.0743 -758,926,1676,1675,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,50,-3,-18.255726,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,51.97,33.14,8.333333333333334,1,1,0,0,0,2,2,1,1353,504072.88,363606.5,204120.09,0,1781.0743 -759,927,1677,-9,1678,1679,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.4506,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,338.33334,-92022.609,59384.301,110464.77,54592.152,2286.1968 -759,927,1678,1679,-9,-9,1,0,32,1,1,0,2,2,-9,1,2,0,0,0,2,-7,-19.222481,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.69,46.3,57.33,53.46,8.333333333333334,1,1,0,0,5,2,3,1,338.33334,-92022.609,59384.301,110464.77,54592.152,2286.1968 -759,927,1679,1678,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,8.7095709,8.8140097,0,2,7,57.402912,0,-9,-9,2019,4,0,45,37,1,0,0,10.653625,10.653625,0,0,0,0,0,1,1,0,4.4449897,0,57.33,53.46,41.69,46.3,10,1,1,0,0,6,2,3,1,338.33334,-92022.609,59384.301,110464.77,54592.152,2286.1968 -760,928,1680,1681,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-40.778515,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,13,2,1,514,663270.25,194474.25,168957.89,0,937.42218 -760,928,1681,1680,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8843122,5.6397462,7,3,-20.573912,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,5.1910067,0,0,1,1,0,5.5867286,5.8319783,53,46,51,46,8,1,1,0,0,0,13,2,1,514,663270.25,194474.25,168957.89,0,937.42218 -761,929,1682,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.6827517,7.4942255,0,0,0,-981.67517,0,-9,-9,2019,11,0,60,60,1,0,0,3.799654,3.799654,0,0,0,0,0,1,1,0,5.5100121,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,637,14428.003,245739.67,0,0,1660.3131 -762,930,1683,1684,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-3,156.54826,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.81,51.08,56.94,49.53,1.666666666666667,1,1,0,0,0,8,3,1,404,2055407.3,592256.69,707817.5,0,2199.8765 -762,930,1684,1683,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.6550746,7.7423515,55,3,59.719727,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7430296,56.94,49.53,50.81,51.08,8.333333333333334,1,1,0,0,0,8,3,1,404,2055407.3,592256.69,707817.5,0,2199.8765 -763,931,1685,1686,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,9.1385202,9.2521791,0,2,0,-47.220585,0,-9,-9,2019,11,2,55,55,1,2,0,15.180308,15.180308,0,0,0,0,0,0,0,0,0,0,47.91,51.06,52.25,53.24,6.666666666666667,1,1,0,0,11,8,5,1,868.5,2957441.8,2297890.5,398921,0,8234.7422 -763,931,1686,1685,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,9.1083841,8.8915749,0,2,0,-46.237808,0,-9,-9,2019,8,0,40,40,1,0,0,21.041885,21.041885,0,0,0,0,0,0,0,0,0,0,52.25,53.24,47.91,51.06,1.666666666666667,1,1,0,0,3,8,5,1,868.5,2957441.8,2297890.5,398921,0,8234.7422 -764,932,1687,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4374218,8.422451,0,0,0,-945.99036,0,-9,-9,2019,13,2,35,37,1,2,0,15.054577,15.054577,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,12,8,4,0,351,464299.81,146375.23,175154.22,0,1650.4041 -765,933,1688,1689,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.6776843,5.5090199,1,7,-9.6079559,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2743793,5.2703943,54,46,51,46,7,1,1,0,0,0,10,3,1,510,881877.13,279279.69,359747.41,0,2297.0459 -765,933,1689,1688,1690,-9,1,0,66,0,0,0,2,2,-9,0,3,7.5789599,7.4741149,2.8119276,1,-7,-62.120861,-9,3,-9,2019,11,0,15,0,1,1,0,15.870738,15.870738,1,0,0,0,0,1,1,0,5.5851607,2.461417,51,46,54,46,7,1,1,0,0,1,10,3,1,510,881877.13,279279.69,359747.41,0,2297.0459 -765,934,1690,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,5.5649199,5.984427,0,0,-896.85175,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5084205,55,43,-9,-9,8,1,1,0,0,0,10,2,1,456,935041.19,9878.1641,270738.72,0,1267.9144 -766,935,1691,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.3607202,6.0985298,0,0,-981.03259,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6067505,5.8960752,57.33,53.46,-9,-9,10,1,1,0,0,0,9,2,1,322,513566.13,22489.393,166698.55,0,1248.9108 -767,936,1692,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.4041085,7.4998574,0,0,0,-1056.5334,0,3,2,2019,6,0,24,24,1,0,0,7.7929449,7.7929449,0,0,0,0,0,0,0,0,0,0,50.58,53.69,-9,-9,10,1,1,0,0,2,6,3,1,379,251701.91,0,0,0,1298.2823 -768,937,1693,-9,-9,1694,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-812.43567,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,0,1426,160119.14,0,286160.5,122678.11,1513.0405 -768,937,1694,-9,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,8.2740831,8.3055258,0,0,0,-1047.1362,0,-9,-9,2019,14,2,38,60,1,2,0,13.387166,13.387166,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,1426,160119.14,0,286160.5,122678.11,1513.0405 -769,938,1695,1696,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,5.9299517,5.9953012,0,25,0,-90.070969,0,2,2,2019,10,1,12,6,1,1,0,4.2201934,4.2201934,0,0,0,0,71.5,1,1,0,0,0,46.28,25.33,40.35,51.96,8.333333333333334,1,1,0,0,4,4,4,1,1244,-42410.527,61679.52,218435.34,121650.34,3556.0955 -769,938,1696,1695,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,9.2069979,8.9126005,0,11,0,-77.614899,0,-9,-9,2019,20,7,42,46,1,7,0,21.823452,21.823452,0,0,0,0,0,1,1,0,0,0,40.35,51.96,46.28,25.33,6.666666666666667,1,1,0,0,12,4,4,1,1244,-42410.527,61679.52,218435.34,121650.34,3556.0955 -770,939,1697,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.400939,8.2861252,0,0,0,-904.86389,0,2,2,2019,7,0,48,47,1,0,0,11.08609,11.08609,0,0,0,0,0,0,0,0,3.3178895,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,5,1,5,0,179,88485.25,26322.639,0,0,1793.2983 -771,940,1698,-9,-9,1699,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.7712,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,1,825.5,557154.63,31079.23,81345.969,29869.586,1368.761 -771,940,1699,-9,-9,-9,1,1,48,0,1,0,3,3,-9,1,3,6.8706474,6.9221473,0,0,0,-1086.67,0,-9,-9,2019,6,0,16,17,1,0,0,7.2902246,7.2902246,0,0,0,0,42,1,1,0,0,0,58.53,36.42,-9,-9,8.333333333333334,1,1,0,0,9,5,2,1,825.5,557154.63,31079.23,81345.969,29869.586,1368.761 -772,941,1700,-9,1703,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.38831,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 -772,941,1701,-9,1703,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.28503,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 -772,941,1702,-9,1703,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.1265,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 -772,941,1703,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,7.0448322,7.2128234,0,0,0,-1082.9221,0,3,-9,2019,12,1,20,19,1,1,0,7.5100636,7.5100636,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,520.75,118674.8,-39811.238,0,0,2605.0547 -773,942,1704,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1067.2671,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,11,1,0,1531,190580.61,0,-11797.826,0,1223.559 -774,943,1705,1706,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,3.8873146,3.7686102,8,-1,9.2165575,0,3,-9,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.3003268,3.8699741,57.06,57.76,43.03,38.54,8.333333333333334,1,1,0,0,0,7,2,0,695,131963.69,0,0,0,1313.5313 -774,943,1706,1705,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,8,1,-40.697399,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,38.54,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,695,131963.69,0,0,0,1313.5313 -775,944,1707,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.091258,8.2089624,0,0,0,-1123.8291,0,3,3,2019,12,0,1,40,1,0,0,329.98856,329.98856,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,559,1445944.8,1226416.8,228654.41,10058.854,1464.0709 -775,945,1708,-9,1707,-9,1,1,28,0,0,0,2,2,-9,0,3,8.7815838,8.5910864,0,0,0,-918.68646,0,2,-9,2019,10,0,39,32,1,0,1,20.75918,20.75918,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,11,5,1,771,-84341.805,68848.281,0,0,2455.6533 -776,946,1709,-9,1710,-9,1,1,14,1,2,1,3,0,-9,0,3,0,0,0,0,0,-970.30585,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,2,0,850.5,316808.94,-45021.996,0,0,807.3468 -776,946,1710,-9,-9,-9,1,0,47,1,2,0,2,2,-9,1,3,6.9053531,6.8137641,0,0,0,-953.19086,0,3,3,2019,8,0,15,0,1,0,0,9.7471428,9.7471428,0,0,0,0,111,1,1,0,0,0,45.73,57.57,-9,-9,5,1,1,0,0,5,2,2,0,850.5,316808.94,-45021.996,0,0,807.3468 -776,947,1711,-9,1710,-9,1,0,18,1,2,0,2,2,-9,1,1,0,0,0,0,0,-965.64441,0,2,-9,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42.95,29.64,-9,-9,5,1,1,0,0,0,2,1,0,678,213482.75,0,0,0,1622.2491 -776,947,1712,-9,1711,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.66162,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,1,0,678,213482.75,0,0,0,1622.2491 -777,948,1713,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.6225967,7.6709566,0,0,0,-1015.8693,0,3,3,2019,12,0,40,45,1,2,1,5.9703279,5.9703279,0,0,0,0,0,1,1,0,0,0,47,53,-9,-9,6,2,3,0,0,5,4,3,1,1834,-126622.6,0,0,0,1338.4646 -778,949,1714,1715,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,0,0,0,29,-8,0,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,48,49,51,49,7,2,3,0,0,0,8,1,0,863.5,145329.36,15887.374,196637.97,0,2003.6626 -778,949,1715,1714,-9,-9,1,1,60,0,1,0,2,2,-9,1,3,0,0,0,37,8,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,48,49,7,2,3,1,0,6,8,1,0,863.5,145329.36,15887.374,196637.97,0,2003.6626 -778,950,1716,-9,1714,1715,1,1,25,0,1,0,2,2,-9,0,4,7.9652476,8.170557,0,0,0,-906.55377,-9,3,2,2019,9,2,48,0,1,2,1,8.1459322,8.1459322,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,3.333333333333333,2,3,0,0,2,8,4,0,509,-245645.38,0,0,0,815.8269 -778,951,1717,-9,1714,1715,1,0,20,0,1,0,2,2,1,0,4,0,0,0,0,0,-970.2959,-9,3,2,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,-9,-9,5,2,3,1,0,0,8,1,0,1101,381978.41,0,0,0,0 -779,952,1718,1719,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.3085966,6.8435502,6,-1,98.943764,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4097409,7.5529571,47.32,52.7,52.63,44.54,8.333333333333334,1,1,0,0,0,12,4,1,812.5,1187996.5,797360.75,174389.64,0,3458.5894 -779,952,1719,1718,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1091337,8.2998648,6,1,-64.410019,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5639133,8.4015636,52.63,44.54,47.32,52.7,8.333333333333334,1,1,0,0,0,12,4,1,812.5,1187996.5,797360.75,174389.64,0,3458.5894 -780,953,1720,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.5084643,7.2114143,0,0,-931.65253,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5683603,51.99,40.97,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,606,173108.73,296099.69,0,0,740.005 -781,954,1721,1722,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.0991926,7.1641569,0,8,-11,151.91339,0,-9,2,2019,14,2,20,24,1,2,0,6.4033813,6.4033813,0,0,0,0,0,1,0,1,0,0,42.81,54.48,50.28,51.35,8.333333333333334,1,1,0,0,4,5,3,1,1065.5,40649.988,0,0,0,2599.0745 -781,954,1722,1721,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,8.2494583,7.900053,0,8,11,-31.571169,0,-9,-9,2019,10,0,49,49,1,0,0,7.7654233,7.7654233,0,0,0,0,0,1,0,1,0,0,50.28,51.35,42.81,54.48,6.666666666666667,1,1,0,0,4,5,3,1,1065.5,40649.988,0,0,0,2599.0745 -781,954,1723,-9,1721,1722,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.3678,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1065.5,40649.988,0,0,0,2599.0745 -781,954,1724,-9,1721,1722,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1156.082,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1065.5,40649.988,0,0,0,2599.0745 -782,955,1725,-9,1726,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.9409,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,488,90807.859,0,205680.25,106072.3,1465.6949 -782,955,1726,-9,-9,-9,1,0,42,0,2,0,3,3,-9,1,4,0,0,0,0,0,-931.69397,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.35,57.21,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,488,90807.859,0,205680.25,106072.3,1465.6949 -782,955,1727,-9,1726,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.97693,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,1,0,488,90807.859,0,205680.25,106072.3,1465.6949 -782,956,1728,-9,1726,-9,1,0,23,0,2,0,3,3,1,1,1,0,0,0,0,0,-968.84509,-9,3,3,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.79,46.39,-9,-9,6.666666666666667,1,1,1,0,0,9,1,0,385,-340663.28,0,0,0,-82.42334 -783,957,1729,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,8.250782,7.7728634,0,0,-1052.0262,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,3.2274497,0,26.369139,0,1,1,0,4.8689156,8.4869232,50.09,52.47,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,681,687924.94,310301.38,225882.81,2452.1687,2773.012 -784,958,1730,1731,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.0521126,7.6851125,0,3,0,8.4052286,0,-9,-9,2019,8,0,40,32,1,0,0,7.1602464,7.1602464,0,0,0,0,0,1,0,1,0,0,45.09,58.82,38.34,62.12,8.333333333333334,1,1,0,0,11,9,3,0,591,594070.94,49806.75,754069.75,249308.09,1735.6873 -784,958,1731,1730,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,5.5009832,5.0067778,3,0,.98024595,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,5.001431,0,38.34,62.12,45.09,58.82,5,1,1,0,1,4,9,3,0,591,594070.94,49806.75,754069.75,249308.09,1735.6873 -784,959,1732,-9,1731,-9,1,1,20,0,1,0,2,2,1,0,4,0,0,0,0,0,-1090.3917,-9,2,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,19.96,66.91,-9,-9,6.666666666666667,1,1,1,1,0,9,2,0,1346,-158867.63,0,0,0,-350.32928 -785,960,1733,1734,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,9,0,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,45.74,52.04,7,1,1,0,0,0,2,1,1,784.5,32630.039,0,0,0,1498.4546 -785,960,1734,1733,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,53,0,0,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,2.599602,0,45.74,52.04,53,47,6.666666666666667,1,1,0,0,0,2,1,1,784.5,32630.039,0,0,0,1498.4546 -786,961,1735,1736,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.3916888,7.9870672,6.869648,9,3,53.550434,0,-9,-9,2019,16,4,12,12,1,4,0,15.592803,15.592803,0,0,0,0,0,0,0,0,.2967672,6.7451425,50.22,52.72,38.76,58.16,6.666666666666667,1,1,0,1,10,7,3,1,596,1852534.5,1179113.5,266435.78,0,1990.1707 -786,961,1736,1735,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.0636406,6.96632,0,16,-3,87.768188,0,2,3,2019,18,6,15,25,1,6,0,9.0114765,9.0114765,0,0,0,0,0,0,0,0,0,0,38.76,58.16,50.22,52.72,3.333333333333333,1,1,0,1,8,7,3,1,596,1852534.5,1179113.5,266435.78,0,1990.1707 -787,962,1737,-9,1738,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.2882,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,840.5,56163.617,11267.597,0,0,771.73242 -787,962,1738,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,6.6979909,6.893784,0,0,0,-1091.006,0,3,2,2019,12,0,16,16,1,2,0,7.0639253,7.0639253,0,0,0,0,0,1,1,0,.91236734,0,46,58,-9,-9,7,1,1,0,1,4,9,2,0,840.5,56163.617,11267.597,0,0,771.73242 -788,963,1739,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,7.1179037,6.9318995,0,0,0,-1111.7935,0,-9,-9,2019,6,0,30,14,1,0,0,4.2525601,4.2525601,0,0,0,0,0,1,1,0,0,0,59.04,51.29,-9,-9,10,3,4,0,0,2,6,2,1,354,-371902,0,0,0,164.23811 -788,964,1740,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.9399881,7.308527,0,0,-1036.6383,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.0450993,51,46,-9,-9,7,4,6,0,0,0,6,2,1,1243,539102.56,91237.984,163019,0,1059.202 -789,965,1741,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.7937002,7.7816763,0,0,0,-1003.2786,0,2,2,2019,11,1,39,39,1,1,0,7.4446888,7.4446888,0,0,0,0,0,0,0,0,0,0,41.95,52.04,-9,-9,5,1,1,0,0,7,13,3,1,120,119229.31,13992.505,0,0,596.03314 -789,966,1742,-9,1741,-9,1,1,22,0,0,0,2,2,-9,0,4,8.3118343,8.3744059,0,0,0,-982.612,0,2,2,2019,17,5,35,40,1,5,1,12.196784,12.196784,0,0,0,0,0,0,0,0,0,0,41.59,61.77,-9,-9,5,1,1,0,0,6,13,4,1,311,123353.38,128097.29,0,0,1421.5688 -789,967,1743,-9,1741,-9,1,0,19,0,0,0,2,2,-9,0,5,7.0796185,6.9968114,0,0,0,-885.28424,0,3,-9,2019,3,0,34,40,1,0,1,4.407496,4.407496,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,303,-254991.3,0,0,0,995.9859 -790,968,1744,1745,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.9433341,7.7405071,0,7,-2,-106.75952,0,2,2,2019,9,0,20,20,1,0,0,15.922802,15.922802,0,0,0,0,0,0,0,0,6.7473221,0,49.77,49.55,61.17,42.11,8.333333333333334,1,1,0,0,9,12,5,1,1611,973515.25,774201.94,225867.31,33450.004,3494.2183 -790,968,1745,1744,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.7808504,8.286046,0,7,2,-37.005474,0,-9,-9,2019,8,0,56,60,1,0,0,10.61283,10.61283,0,0,0,0,0,0,0,0,0,0,61.17,42.11,49.77,49.55,6.666666666666667,1,1,0,0,9,12,5,1,1611,973515.25,774201.94,225867.31,33450.004,3494.2183 -791,969,1746,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.544827,6.7321439,0,0,-1041.2094,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,5.9415798,14.338387,64.430283,0,1,1,0,0,6.7268729,53.76,46.89,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1195,-252975.28,61710.984,0,0,1014.8502 -791,970,1747,-9,1746,-9,1,1,51,0,0,0,2,2,-9,0,2,7.8540068,7.8250403,0,0,0,-940.10046,0,3,-9,2019,12,0,35,35,1,0,0,7.2784963,7.2784963,0,0,0,0,7,1,1,0,0,0,56.76,44.55,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,483,308771.59,-27107.51,0,0,1333.4025 -792,971,1748,1749,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,7.116363,6.9633107,10,-7,111.71994,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,10.070228,0,0,1,1,0,5.4643273,6.9761357,51.58,18.5,45.43,26.71,8.333333333333334,1,1,0,0,0,2,3,1,458,1229881.1,570121.88,196250.41,0,2691.8081 -792,971,1749,1748,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.2512412,7.7029939,10,7,30.812176,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,.6888116,1.8199013,26.224594,0,1,1,0,3.3047221,7.454567,45.43,26.71,51.58,18.5,5,1,1,0,0,0,2,3,1,458,1229881.1,570121.88,196250.41,0,2691.8081 -793,972,1750,1751,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.7362432,7.400075,6.8601699,1,5,-32.206394,-9,-9,-9,2019,10,0,40,0,1,1,0,1.9248989,1.9248989,0,0,0,0,0,0,0,0,3.599607,6.6947885,50,49,21.04,62.24,7,4,1,0,0,1,6,2,1,605.5,-24391.734,101179.73,1601.4634,0,357.39856 -793,972,1751,1750,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,1,-5,133.37244,-9,3,2,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,5.48,0,0,0,0,0,21.04,62.24,50,49,8.333333333333334,1,1,0,0,6,6,2,1,605.5,-24391.734,101179.73,1601.4634,0,357.39856 -794,973,1752,1753,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.49757,8.2514782,0,1,1,24.741404,-9,-9,-9,2019,10,0,35,0,1,0,0,15.278227,15.278227,0,0,0,0,2,0,0,0,2.733618,0,51.73,58.82,41.47,58.08,10,1,1,0,0,6,12,5,0,1316.5,-22209.898,-35432.84,0,0,5326.5811 -794,973,1753,1752,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.9576759,9.2462034,0,1,-1,84.984268,0,2,2,2019,9,0,50,48,1,0,0,21.170319,21.170319,0,0,0,0,0,0,0,0,0,0,41.47,58.08,51.73,58.82,8.333333333333334,1,1,0,0,8,12,5,0,1316.5,-22209.898,-35432.84,0,0,5326.5811 -795,974,1754,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.0462341,8.0338593,0,0,0,-1021.696,0,3,2,2019,16,4,39,0,1,4,0,6.6640759,6.6640759,0,0,0,0,0,1,1,0,3.487426,0,47.56,48.93,-9,-9,6.666666666666667,1,1,0,0,7,5,4,1,419,371904.53,321774.03,0,0,403.92944 -796,975,1755,1756,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.1666918,8.5292597,0,1,-2,-106.34615,0,2,2,2019,12,0,45,44,1,0,0,10.501991,10.501991,0,0,0,0,0,0,0,0,3.3414979,0,41.23,59.35,37.6,54.5,6.666666666666667,1,1,0,0,5,9,4,1,517.5,-110402.89,45268.797,0,0,1885.8601 -796,975,1756,1755,-9,-9,1,1,27,0,0,0,1,1,-9,0,2,7.5123796,7.3835101,0,1,2,-9.4115438,-9,-9,-9,2019,12,0,31,0,1,0,0,6.1089053,6.1089053,0,0,0,0,0,0,0,0,2.0342884,0,37.6,54.5,41.23,59.35,6.666666666666667,1,1,0,0,0,9,4,1,517.5,-110402.89,45268.797,0,0,1885.8601 -797,976,1757,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1061.3611,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,13.130756,0,0,1,1,0,0,0,44.26,23.97,-9,-9,6.666666666666667,1,1,0,1,0,4,1,0,98,0,0,0,0,653.23767 -798,977,1758,1759,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,54,5,-82.988037,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,7,1,1,0,0,0,55.17,31.58,37.78,22.44,3.333333333333333,1,1,0,1,8,5,3,1,493,905710.5,375205.56,308472.66,0,2012.4629 -798,977,1759,1758,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.925066,7.8499985,54,-5,-23.720383,0,3,3,2019,31,11,0,0,4,11,0,0,0,1,3.2246478,43.356194,23.997007,27,1,1,0,7.3025522,7.9043684,37.78,22.44,55.17,31.58,3.333333333333333,1,1,0,0,2,5,3,1,493,905710.5,375205.56,308472.66,0,2012.4629 -799,978,1760,1761,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.3519154,6.4850349,46,0,-55.00795,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.888762,6.2664194,59.32,49.66,59.88,42.66,8.333333333333334,1,1,0,0,6,9,3,0,277,901593.5,568442.38,273057.72,0,2976.2822 -799,978,1761,1760,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.4022684,8.218585,7.7519622,47,0,-135.87167,0,3,2,2019,13,2,15,20,1,2,0,12.420024,12.420024,0,0,0,0,14.5,1,1,0,7.190177,6.6759329,59.88,42.66,59.32,49.66,8.333333333333334,1,1,0,0,8,9,3,0,277,901593.5,568442.38,273057.72,0,2976.2822 -800,979,1762,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.86273,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.84,40.76,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,2352,36278.82,0,0,0,1279.0442 -801,980,1763,1764,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.0345249,6.2197938,59,-5,-140.90991,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.3297555,6.0245566,52,46,54.61,49.13,6.666666666666667,1,1,0,0,11,12,2,1,510,455280.31,259934.72,253358.5,0,1741.4387 -801,980,1764,1763,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.9642029,7.0843916,59,5,43.926891,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.3821477,7.0362964,54.61,49.13,52,46,8.333333333333334,1,1,0,0,0,12,2,1,510,455280.31,259934.72,253358.5,0,1741.4387 -802,981,1765,1767,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.4639912,9.6308308,0,6,-4,-.93475688,0,-9,-9,2019,4,0,50,48,1,0,0,23.33215,23.33215,0,0,0,0,0,0,0,0,7.6642475,0,57.16,56.15,61.41,51.58,8.333333333333334,1,1,0,0,8,12,5,1,886.33331,892949.19,698257.31,215271.45,85772.695,5232.7134 -802,981,1766,-9,1767,1765,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.439,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,12,5,1,886.33331,892949.19,698257.31,215271.45,85772.695,5232.7134 -802,981,1767,1765,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,5.6036696,5.4256568,0,6,4,-5.6403508,0,1,1,2019,5,0,4,4,1,0,0,8.6765194,8.6765194,0,0,0,0,2,0,0,0,.88435388,0,61.41,51.58,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,886.33331,892949.19,698257.31,215271.45,85772.695,5232.7134 -803,982,1768,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.5233097,7.5235128,0,0,-815.80121,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5513856,7.6301017,58.9,45.74,-9,-9,10,1,1,0,0,0,6,3,1,138,415226.88,353791.94,110832.39,0,2295.4055 -804,983,1769,1770,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.2345343,7.895401,0,4,-3,2.8986948,0,-9,-9,2019,6,0,35,35,1,0,0,13.411215,13.411215,0,0,0,0,0,1,1,0,0,0,59.7,53.75,59.31,49.81,10,3,4,0,0,11,9,4,1,1300.5,2018135.6,1255619.1,523473.56,0,3055.2012 -804,983,1770,1769,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.0111589,7.9898906,4,3,-26.940664,0,2,1,2019,9,0,0,5,4,0,0,0,0,0,0,0,0,0,1,1,0,6.162487,7.3227458,59.31,49.81,59.7,53.75,8.333333333333334,1,1,0,0,10,9,4,1,1300.5,2018135.6,1255619.1,523473.56,0,3055.2012 -805,984,1771,-9,1772,1775,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-822.71967,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 -805,984,1772,1775,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,0,0,0,14,-4,53.492146,0,1,1,2019,6,0,0,30,3,0,0,0,0,0,0,0,0,27,0,0,0,0,0,35.65,47.95,51,56,3.333333333333333,3,4,0,1,5,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 -805,984,1773,-9,1772,1775,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.2227,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 -805,984,1774,-9,1772,1775,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.7913,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 -805,984,1775,1772,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.7171173,8.5749149,0,14,4,-32.654861,0,1,1,2019,9,0,38,48,1,1,0,11.40206,11.40206,0,0,0,0,0,0,0,0,0,0,51,56,35.65,47.95,8,3,4,0,0,1,5,3,0,657.40002,294703.91,155607.72,70532.602,60134.762,2023.4293 -806,985,1776,1777,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.114027,7.0687218,52,-6,-6.172472,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,32.785038,0,0,1,1,0,3.7325053,6.7911043,41.54,19.93,48.59,53.29,3.333333333333333,1,1,0,0,3,2,3,1,906,1132588.8,692185.81,262135.31,0,3332.1719 -806,985,1777,1776,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.6519032,7.7471352,52,6,-126.013,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.3931577,7.6369267,48.59,53.29,41.54,19.93,8.333333333333334,1,1,0,0,0,2,3,1,906,1132588.8,692185.81,262135.31,0,3332.1719 -807,986,1778,1779,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,7.0121479,7.0806198,10,3,68.195969,0,2,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.2581778,6.9983058,26.79,20.5,49.04,55.86,1.666666666666667,1,1,0,0,1,5,2,1,296,414189.69,229068.19,0,0,1854.5994 -807,986,1779,1778,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,10,-3,31.369593,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,49.04,55.86,26.79,20.5,8.333333333333334,1,1,0,0,6,5,2,1,296,414189.69,229068.19,0,0,1854.5994 -808,987,1780,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.0993023,7.8279886,0,0,0,-916.073,0,2,2,2019,5,0,13,12,1,0,0,23.041416,23.041416,0,0,0,0,2,0,0,0,7.4391637,0,51.19,52.17,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,508,111291.7,-105195.99,147876.27,77752.445,2087.7039 -809,988,1781,1783,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.5132122,8.6510706,0,14,-1,-65.360977,0,3,3,2019,15,3,59,-9,1,3,0,11.880868,11.880868,0,0,0,0,0,1,1,0,0,0,42.85,60.33,36.1,51.14,5,2,3,0,0,11,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 -809,988,1782,-9,1781,1783,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.84784,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 -809,988,1783,1781,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.8679719,7.9888563,0,14,1,24.268549,0,3,3,2019,14,2,40,40,1,2,0,7.8467646,7.8467646,0,0,0,0,0,1,1,0,0,0,36.1,51.14,42.85,60.33,3.333333333333333,2,3,0,0,12,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 -809,988,1784,-9,1781,1783,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.8515,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,4,1,1138.75,263634.44,84569.031,349119.84,108673.4,3524.6667 -810,989,1785,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.494132,7.9767938,0,0,0,-1058.1005,0,-9,-9,2019,8,0,37,38,1,0,0,9.922061,9.922061,0,0,0,0,2,0,0,0,0,0,57.35,34.36,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,461,492402.06,40648.219,0,0,1135.8608 -810,990,1786,-9,1785,-9,1,0,24,0,0,0,2,2,-9,0,4,8.6885767,8.2376776,0,0,0,-920.84222,0,2,2,2019,9,0,47,42,1,0,1,10.447858,10.447858,0,0,0,0,2,0,0,0,3.0683348,0,37.32,52.69,-9,-9,6.666666666666667,1,1,0,0,7,10,5,1,2422,48487.137,0,0,0,1790.3695 -811,991,1787,1788,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.0143981,6.8636518,6,0,-23.12689,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3400278,0,48.35,35.8,57.06,57.76,8.333333333333334,1,1,0,0,0,12,5,1,1420,1697012.3,1157996.4,385971.78,0,5623.9697 -811,991,1788,1787,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,8.9837933,8.7179461,6,0,-59.13364,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0677071,8.7855263,57.06,57.76,48.35,35.8,8.333333333333334,1,1,0,0,0,12,5,1,1420,1697012.3,1157996.4,385971.78,0,5623.9697 -812,992,1789,1790,-9,-9,1,0,43,2,3,0,2,2,-9,0,4,0,0,0,6,0,37.820042,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.2975398,0,54.79,55.86,57.33,53.46,6.666666666666667,1,1,0,0,9,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 -812,992,1790,1789,-9,-9,1,1,43,2,3,0,2,2,-9,0,3,7.2167997,7.2516966,0,6,0,134.41248,0,-9,-9,2019,8,0,30,35,1,0,0,4.39674,4.39674,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,10,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 -812,992,1791,-9,1789,1790,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-937.17902,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 -812,992,1792,-9,1789,1790,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.2793,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 -812,992,1793,-9,1789,1790,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-937.47742,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,2,1,516.59998,253195.53,168641.97,390832.69,288024.88,2126.8303 -813,993,1794,-9,1795,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.05365,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,226,98757.422,0,0,0,1543.4976 -813,993,1795,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,6.8863473,6.7014666,0,0,0,-1020.5854,0,2,2,2019,8,0,18,21,1,0,0,5.7287436,5.7287436,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,226,98757.422,0,0,0,1543.4976 -814,994,1796,-9,1798,1797,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1198.4242,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,2126,-107147.17,-37792.965,0,0,1951.2551 -814,994,1797,1798,-9,-9,1,1,21,1,1,0,2,2,-9,0,5,8.4047871,8.0115118,0,2,0,-96.622093,0,-9,-9,2019,9,1,58,58,1,1,0,8.9050741,8.9050741,0,0,0,0,0,1,1,0,0,0,49.25,61.25,60.12,54.8,8.333333333333334,1,1,0,0,1,7,3,1,2126,-107147.17,-37792.965,0,0,1951.2551 -814,994,1798,1797,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,6.6384354,6.5694604,0,2,0,-17.52634,0,3,2,2019,6,0,14,50,1,0,0,5.6806526,5.6806526,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.25,61.25,10,1,1,0,0,3,7,3,1,2126,-107147.17,-37792.965,0,0,1951.2551 -815,995,1799,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1007.8338,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,13.791915,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,6,1,0,579,-80986.672,0,0,0,636.95715 -816,996,1800,1801,-9,-9,1,1,84,0,0,0,1,1,-9,0,2,0,7.0401459,7.2014914,57,6,49.029095,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9720879,63.47,9.17,51.67,60.18,10,1,1,0,0,0,5,2,1,324,1293442.3,271264,381085.09,0,1277.0586 -816,996,1801,1800,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,0,0,57,-6,4.613656,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,63.47,9.17,10,1,1,0,0,0,5,2,1,324,1293442.3,271264,381085.09,0,1277.0586 -817,997,1802,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.012517,8.0902643,0,0,0,-992.44031,0,-9,2,2019,21,8,38,30,1,8,0,11.205401,11.205401,0,0,0,0,0,0,0,0,1.8320012,0,37.76,55.72,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,3311,80703.484,0,0,0,1542.038 -818,998,1803,1804,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,8,-10,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,45.2,42.85,60.33,8.333333333333334,2,3,0,0,2,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 -818,998,1804,1803,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,0,0,0,8,10,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,43.09,45.2,8.333333333333334,2,3,1,0,4,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 -818,998,1805,-9,1803,1804,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.9855,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 -818,998,1806,-9,1803,1804,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.406,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 -818,998,1807,-9,1803,1804,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.20892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,1,0,558.79999,-104748.45,0,0,0,1648.6119 -819,999,1808,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-955.80762,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,14.241734,0,0,1,1,0,2.6253226,0,40.95,24.93,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,1133,-253476.47,0,0,0,1028.6946 -820,1000,1809,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,8.5866308,8.4559479,0,0,0,-1040.5537,0,2,2,2019,16,4,55,60,1,4,0,11.099869,11.099869,0,0,0,0,0,0,0,0,0,0,36.89,55.12,-9,-9,5,1,1,0,0,6,13,5,1,308,71605.93,-5995.1982,163480.89,57992.664,1764.9332 -821,1001,1810,1811,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.8109789,9.493906,0,8,3,51.210503,0,2,1,2019,7,0,42,40,1,0,0,50.020439,50.020439,0,0,0,0,0,0,0,0,3.2785804,0,57.06,57.76,49.86,55.31,8.333333333333334,1,1,0,0,9,12,5,1,1015,1156211.1,1100492.4,0,0,10723.464 -821,1001,1811,1810,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0013599,7.7466474,0,8,-3,13.91188,0,3,1,2019,12,0,5,45,1,0,0,66.851524,66.851524,0,0,0,0,7,0,0,0,7.4353194,0,49.86,55.31,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,1015,1156211.1,1100492.4,0,0,10723.464 -821,1002,1812,-9,1811,1810,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1042.3958,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.5713434,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,934,-150572.03,0,0,0,271.98215 -822,1003,1813,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.6872711,5.4406815,0,0,-836.93939,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.2295828,10.724318,47.120865,0,1,1,0,0,5.6688623,53,44,-9,-9,8,1,1,0,0,0,4,2,0,221,349472.72,0,202610.39,0,1796.5009 -823,1004,1814,-9,1815,1816,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1115.8982,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,0,642,1075366.1,1092037.3,169820.14,61992.566,3951.9915 -823,1004,1815,1816,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.8940058,8.8721352,0,9,4,68.59568,0,1,1,2019,20,8,55,52,1,8,0,16.57597,16.57597,0,0,0,0,2,1,1,0,.89861822,0,44.31,39.26,16.08,63.04,6.666666666666667,1,1,0,0,9,1,5,0,642,1075366.1,1092037.3,169820.14,61992.566,3951.9915 -823,1004,1816,1815,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.3175545,8.2124348,0,18,-4,33.02951,0,2,1,2019,25,10,40,40,1,10,0,10.068308,10.068308,0,0,0,0,0,1,1,0,0,0,16.08,63.04,44.31,39.26,3.333333333333333,1,1,0,0,7,1,5,0,642,1075366.1,1092037.3,169820.14,61992.566,3951.9915 -824,1005,1817,1818,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9914207,9.0468493,0,6,1,54.625332,0,2,1,2019,12,0,60,50,1,0,0,24.382998,24.382998,0,0,0,0,0,0,0,0,0,0,52.88,43.27,48.93,50.55,5,2,3,0,0,6,13,5,1,945,4264173.5,2413843.5,717167.63,0,5579.5605 -824,1005,1818,1817,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8569002,8.7544413,0,6,-1,-63.512962,0,2,1,2019,9,0,40,40,1,0,0,21.720186,21.720186,0,0,0,0,0,0,0,0,6.7808418,0,48.93,50.55,52.88,43.27,8.333333333333334,2,3,0,0,6,13,5,1,945,4264173.5,2413843.5,717167.63,0,5579.5605 -825,1006,1819,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-996.07959,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48,28.06,-9,-9,0,1,1,0,0,0,11,1,1,600.5,110683.98,0,0,0,1899.7798 -825,1006,1820,-9,-9,1819,1,1,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1028.4102,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,1,600.5,110683.98,0,0,0,1899.7798 -826,1007,1821,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,5.4957147,5.6880755,0,0,-1014.231,0,3,2,2019,22,8,0,0,4,8,0,0,0,1,19.76335,13.182982,199.0036,0,1,1,0,0,6.0135202,45.38,22.81,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,584,234805.61,-32599.514,0,0,684.1972 -827,1008,1822,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,5.5913324,5.57758,0,0,-1029.8048,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,5.3717408,0,23.12,54.62,-9,-9,3.333333333333333,1,1,1,1,0,4,2,0,1414,90455.125,-11766.306,0,0,883.20386 -827,1008,1823,-9,1822,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1181.5322,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1414,90455.125,-11766.306,0,0,883.20386 -828,1009,1824,-9,1825,1826,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.37341,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 -828,1009,1825,1826,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,7.3621078,7.2149043,0,32,-6,25.088709,0,-9,-9,2019,10,0,23,20,1,0,0,6.8887763,6.8887763,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,7,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 -828,1009,1826,1825,-9,-9,1,1,58,0,2,0,1,1,-9,0,5,0,9.0259638,8.8308201,32,6,-.97676313,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4966602,9.2923098,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,7,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 -828,1009,1827,-9,1825,1826,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-910.40778,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.54,52.34,-9,-9,3.333333333333333,1,1,0,0,0,8,4,1,1920.25,3205823,232157.27,2485332.8,0,5056.1162 -828,1010,1828,-9,1825,1826,1,0,23,0,2,0,1,1,-9,0,4,8.1393061,8.4453745,0,0,0,-1106.6871,0,2,2,2019,4,0,39,35,1,0,1,12.886245,12.886245,0,0,0,0,0,1,1,0,3.8576128,0,50.7,52.41,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,697,0,0,0,0,1262.1484 -829,1011,1829,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.1409597,7.087728,0,0,0,-1098.5693,0,3,3,2019,11,0,23,22,1,0,0,5.6955848,5.6955848,0,0,0,0,7,1,0,1,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,2,12,3,0,1659,-151309.55,0,0,0,2011.9064 -830,1012,1830,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-925.41406,0,-9,-9,2019,29,11,0,40,3,11,0,0,0,0,0,0,0,2,0,0,0,0,0,20.23,55.64,-9,-9,3.333333333333333,1,1,1,1,1,5,1,0,227,-251729.95,0,0,0,0 -831,1013,1831,1832,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.0088644,8.4470139,35,2,-35.405716,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.6021755,8.0186968,52.88,32.74,59.14,52.5,3.333333333333333,1,1,0,0,8,9,5,1,2526.5,4524208.5,3170266,734539.44,165829.28,5201.9883 -831,1013,1832,1831,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.04708,9.1168842,0,9,-2,60.419102,0,2,2,2019,7,0,44,57,1,0,0,25.442047,25.442047,0,0,0,0,0,0,0,0,0,0,59.14,52.5,52.88,32.74,6.666666666666667,1,1,0,0,10,9,5,1,2526.5,4524208.5,3170266,734539.44,165829.28,5201.9883 -832,1014,1833,-9,1834,1835,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.25616,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 -832,1014,1834,1835,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.2102537,8.1709042,0,6,4,-23.536171,0,-9,-9,2019,8,0,39,37,1,0,0,13.177031,13.177031,0,0,0,0,0,1,1,0,.60907668,0,54.2,57.49,52,56,8.333333333333334,1,1,0,0,7,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 -832,1014,1835,1834,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,8.2690105,8.4310513,0,6,-4,-13.223619,0,-9,-9,2019,9,0,40,40,1,1,0,13.773412,13.773412,0,0,0,0,0,1,1,0,0,0,52,56,54.2,57.49,8,1,1,0,0,1,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 -832,1014,1836,-9,1834,1835,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.2544,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,613,762570.19,392268.28,259287.09,98485.43,3216.9641 -833,1015,1837,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.5398178,7.3516603,0,0,-1005.0529,0,3,-9,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.1574426,7.4678612,45.85,61.26,-9,-9,5,1,1,0,0,0,9,3,1,1032,506633.41,381514.88,344600.13,0,1815.8777 -834,1016,1838,-9,1840,1839,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.6898,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 -834,1016,1839,1840,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.7618351,7.6894088,0,6,1,-265.92917,0,-9,-9,2019,6,0,40,40,1,0,0,7.4614244,7.4614244,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.69,57.47,10,1,1,0,0,9,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 -834,1016,1840,1839,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.8708849,8.8821058,0,18,-1,2.1369834,0,2,2,2019,7,0,39,0,1,0,0,20.492224,20.492224,0,0,0,0,0,0,0,0,8.1988993,0,54.69,57.47,62.49,55.09,8.333333333333334,1,1,0,0,2,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 -834,1016,1841,-9,1840,1839,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-908.62952,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,693,276373.16,179566.22,408325.59,226181.08,5824.4521 -835,1017,1842,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,5,8.0372696,7.7644768,0,0,0,-1018.1873,0,-9,1,2019,16,5,60,37,1,5,1,4.9983525,4.9983525,0,0,0,0,0,1,1,0,0,0,34.56,65.25,-9,-9,5,1,1,0,0,1,1,3,1,87,-49341.016,0,0,0,1604.4299 -835,1018,1843,-9,-9,-9,1,0,20,0,0,0,1,1,-9,0,4,8.0871201,7.9693027,0,0,0,-1059.3114,0,-9,1,2019,16,4,50,52,1,4,1,7.2032108,7.2032108,0,0,0,0,0,1,1,0,0,0,40.42,61.41,-9,-9,8.333333333333334,1,1,0,0,2,1,4,1,135,174718.31,124975.58,0,0,1238.6401 -835,1019,1844,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.4665604,7.5150566,0,0,0,-953.57697,0,-9,1,2019,10,1,37,37,1,1,1,4.5785866,4.5785866,0,0,0,0,0,1,1,0,0,0,33.32,56.58,-9,-9,5,1,1,0,0,2,1,3,1,401,218179.58,0,0,0,681.67334 -836,1020,1845,-9,1846,1847,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.0793,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,540,56687.066,137944,228268.02,0,2346.6516 -836,1020,1846,1847,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.0232477,6.8684902,0,15,-10,109.28183,0,3,3,2019,7,0,18,18,1,0,0,6.5607085,6.5607085,0,0,0,0,0,1,1,0,1.8089442,0,57.16,56.15,57.33,53.46,10,1,1,0,0,6,9,4,1,540,56687.066,137944,228268.02,0,2346.6516 -836,1020,1847,1846,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.3071918,8.4909754,0,8,10,-120.1649,0,-9,-9,2019,6,0,45,40,1,0,0,12.801221,12.801221,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,8,9,4,1,540,56687.066,137944,228268.02,0,2346.6516 -837,1021,1848,1849,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,5.9675245,5.6545167,7,4,97.129318,0,3,2,2019,14,2,0,37,4,2,0,0,0,0,0,0,0,2,1,1,0,.98701638,6.1155491,54.13,48.04,60.12,54.8,6.666666666666667,1,1,0,0,9,10,4,1,834,1059265,779183.69,136490.66,0,2022.5532 -837,1021,1849,1848,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.1139832,8.173954,0,36,-4,-3.9920483,0,2,3,2019,7,0,37,39,1,0,0,13.748162,13.748162,0,0,0,0,7,1,1,0,4.1572995,0,60.12,54.8,54.13,48.04,10,1,1,0,0,10,10,4,1,834,1059265,779183.69,136490.66,0,2022.5532 -838,1022,1850,1851,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.9766922,9.1077604,0,29,-6,-107.48074,0,2,3,2019,7,0,70,60,1,0,0,11.48728,11.48728,0,0,0,0,0,1,1,0,2.8984702,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,9,5,1,427,1677279,1107671.5,577716,304384.13,5121.582 -838,1022,1851,1850,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.9325552,8.4866676,29,6,-33.651756,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7881036,8.2112131,57.06,57.76,57.16,56.15,10,1,1,0,0,4,9,5,1,427,1677279,1107671.5,577716,304384.13,5121.582 -838,1023,1852,-9,1850,1851,1,0,24,0,0,0,1,1,-9,0,5,8.2429161,8.2687483,0,0,0,-1131.2106,0,1,1,2019,10,0,55,61,1,0,1,7.4563613,7.4563613,0,0,0,0,0,1,1,0,2.1681757,0,54.1,59.11,-9,-9,10,1,1,0,0,3,9,4,1,1467,182653.94,-81942.766,0,0,2319.4695 -838,1024,1853,-9,1850,1851,1,1,22,0,0,0,1,1,1,0,5,8.3222284,8.2362108,0,0,0,-960.27484,-9,1,1,2019,8,0,39,0,1,0,1,12.002324,12.002324,0,0,0,0,0,1,1,0,2.4368269,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,761,-105581.8,82414.641,195323.25,99969.789,1742.9767 -839,1025,1854,1855,-9,-9,1,1,57,1,2,0,2,2,-9,0,3,8.8507538,8.6214008,0,10,17,-17.331688,0,2,3,2019,15,4,46,48,1,4,0,18.151918,18.151918,0,0,0,0,0,1,1,0,4.9304409,0,46.82,50.04,31.19,61.28,6.666666666666667,1,1,0,0,10,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 -839,1025,1855,1854,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,9.0668612,9.1763067,0,10,-17,6.7199621,0,2,1,2019,20,9,43,35,1,9,0,21.63397,21.63397,0,0,0,0,0,1,1,0,4.0301614,0,31.19,61.28,46.82,50.04,8.333333333333334,1,1,0,0,12,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 -839,1025,1856,-9,1855,1854,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.3674,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 -839,1025,1857,-9,1855,1854,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.8075,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,504.75,674375.38,153098.3,312258.63,7242.7207,5662.6011 -840,1026,1858,-9,1859,1860,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-982.17163,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,2,0,547.33331,416615.97,422366.91,88266.086,0,1536.938 -840,1026,1859,1860,-9,-9,1,0,52,0,1,0,2,2,-9,0,1,0,5.6289525,6.0385513,17,-8,9.4060793,0,2,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,5.7730446,19.01,22.64,39.05,43.1,3.333333333333333,1,1,0,0,0,4,2,0,547.33331,416615.97,422366.91,88266.086,0,1536.938 -840,1026,1860,1859,-9,-9,1,1,60,0,1,0,3,3,-9,0,2,0,6.665689,6.5953526,17,8,-15.637301,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,6.646287,39.05,43.1,19.01,22.64,3.333333333333333,1,1,0,0,3,4,2,0,547.33331,416615.97,422366.91,88266.086,0,1536.938 -841,1027,1861,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-866.18304,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,-9,-9,5,1,1,0,1,0,1,1,0,265,210333.94,0,203300.41,0,534.14758 -842,1028,1862,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.7540598,8.5892811,0,0,0,-923.9162,0,2,2,2019,9,0,40,0,1,1,0,16.759966,16.759966,0,0,0,0,0,0,0,0,3.422925,0,53,54,-9,-9,8,1,1,0,0,5,7,5,0,2109,997492.31,505758.69,424178.13,0,2311.4485 -843,1029,1863,1865,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,0,0,0,17,4,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,28.02,36.43,8,1,1,1,0,0,6,2,0,248.66667,-1891.6381,335.35547,0,0,2780.7002 -843,1029,1864,-9,1865,1863,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-944.75177,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,19.55,57.37,-9,-9,5,1,1,0,0,0,6,2,0,248.66667,-1891.6381,335.35547,0,0,2780.7002 -843,1029,1865,1863,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,17,-4,0,0,3,3,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.02,36.43,53,55,0,1,1,0,0,0,6,2,0,248.66667,-1891.6381,335.35547,0,0,2780.7002 -843,1030,1866,-9,1865,1863,1,1,21,0,1,0,3,3,-9,1,5,0,0,0,0,0,-1003.9218,0,3,3,2019,14,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,.019735316,0,35.23,47.8,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,339,230472.28,0,0,0,1402.6451 -844,1031,1867,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.4367676,6.1748509,0,0,-1141.4146,0,3,3,2019,24,7,0,0,4,7,0,0,0,1,1.7438831,14.972486,0,7,1,1,0,4.4661984,6.0089593,19.63,42.8,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,972,406364.19,33245.941,102855.6,0,864.75842 -845,1032,1868,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1043.8885,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.98,40.59,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,1105,151813.8,-12767.092,0,0,655.89508 -845,1033,1869,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1008.1751,0,3,3,2019,24,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.4,46.23,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,713,88622.742,0,0,0,1255.4246 -846,1034,1870,1871,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,8.1005669,8.4223404,11,1,-86.435188,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8613987,52.73,9.859999999999999,53,40.54,3.333333333333333,1,1,0,0,0,5,4,1,652.5,1663488.5,886357.88,242117.47,0,3066.1121 -846,1034,1871,1870,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4105291,7.1994333,42,-1,51.324379,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,3.2109001,7.3063426,53,40.54,52.73,9.859999999999999,5,1,1,0,0,10,5,4,1,652.5,1663488.5,886357.88,242117.47,0,3066.1121 -846,1035,1872,-9,1871,1870,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1057.2883,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,239,302114.06,0,0,0,20.66309 -847,1036,1873,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.0541849,7.9266095,0,0,0,-1075.7911,0,2,1,2019,12,1,35,25,1,1,0,11.751419,11.751419,0,0,0,0,0,0,0,0,8.2342386,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,321,-397498.28,0,0,0,2576.9951 -848,1037,1874,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-864.46918,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.51941019,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,1771,0,0,0,0,860.23444 -849,1038,1875,-9,1878,1877,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1127.5516,-9,1,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 -849,1038,1876,-9,1878,1877,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7649,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 -849,1038,1877,1878,-9,-9,1,1,52,0,2,0,2,2,-9,0,2,8.1002512,8.1085968,0,25,3,-12.766289,0,-9,-9,2019,7,0,42,42,1,0,0,6.1483636,6.1483636,0,0,0,0,0,1,1,0,0,0,55.36,41.04,52.23,55.6,8.333333333333334,2,3,0,0,6,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 -849,1038,1878,1877,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.0264912,7.7618499,0,25,-3,75.242577,0,2,-9,2019,7,0,36,25,1,0,0,7.0825086,7.0825086,0,0,0,0,0,1,1,0,0,0,52.23,55.6,55.36,41.04,8.333333333333334,2,3,0,0,8,7,3,1,786,886430.25,484106.06,220214.97,0,2401.1045 -849,1039,1879,-9,1878,1877,1,0,22,0,2,1,2,0,0,0,4,0,0,0,0,0,-1104.5662,-9,1,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.98,58.43,-9,-9,6.666666666666667,2,3,0,0,0,7,1,1,166,-231873.86,0,0,0,1423.5548 -850,1040,1880,1881,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,8.3294115,8.2534523,0,5,3,60.417435,0,-9,-9,2019,9,0,35,40,1,1,0,15.027825,15.027825,0,0,0,0,0,1,1,0,0,0,52,55,45.46,52.15,8,1,1,0,0,1,2,4,1,601.66669,108468.52,109371.03,69853.648,24350.947,1714.5945 -850,1040,1881,1880,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,6.722877,6.5877881,0,10,-3,36.399693,0,-9,-9,2019,6,0,30,14,1,0,0,2.6458721,2.6458721,0,0,0,0,7,1,1,0,0,0,45.46,52.15,52,55,8.333333333333334,1,1,0,0,8,2,4,1,601.66669,108468.52,109371.03,69853.648,24350.947,1714.5945 -850,1040,1882,-9,1881,1880,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.14514,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,601.66669,108468.52,109371.03,69853.648,24350.947,1714.5945 -851,1041,1883,-9,1885,1884,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.2607,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,815,-4055.832,57184.387,202282.19,144286.55,1882.796 -851,1041,1884,1885,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,9.5020733,9.434741,0,9,-2,136.00951,-9,-9,-9,2019,12,1,94,0,1,1,0,18.928123,18.928123,0,0,0,0,0,0,0,0,0,0,49.63,35.79,51.67,60.18,5,1,1,0,0,10,12,5,1,815,-4055.832,57184.387,202282.19,144286.55,1882.796 -851,1041,1885,1884,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.4557457,7.6569066,0,9,2,42.842766,0,3,2,2019,9,0,28,28,1,0,0,8.6488705,8.6488705,0,0,0,0,0,0,0,0,2.800108,0,51.67,60.18,49.63,35.79,8.333333333333334,1,1,0,0,10,12,5,1,815,-4055.832,57184.387,202282.19,144286.55,1882.796 -851,1042,1886,-9,1885,1884,1,1,25,0,1,0,2,2,-9,0,4,8.4367132,8.4078102,0,0,0,-1071.0631,0,2,2,2019,11,0,45,45,1,0,1,9.6483192,9.6483192,0,0,0,0,0,0,0,0,0,0,49.91,58.02,-9,-9,6.666666666666667,1,1,0,0,9,12,4,1,531,243826.89,11467.348,0,0,2141.8418 -852,1043,1887,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.8050675,7.1003532,0,0,-985.76971,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.714963,6.6645522,33.43,59.21,-9,-9,5,1,1,0,0,11,7,2,1,930,971795.13,136359.83,653659.44,0,1257.7158 -853,1044,1888,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.2600861,7.3162127,0,0,-1119.5388,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.5143371,53,47,-9,-9,7,1,1,0,0,0,13,3,1,105,351638.25,288529.84,394241.69,0,1314.6007 -854,1045,1889,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1071.321,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.82,39.82,-9,-9,5,1,1,0,0,0,9,1,0,632,1135668.3,34225.434,1188413.8,0,1711.4198 -855,1046,1890,1891,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2776318,7.9596438,0,7,2,107.95084,0,-9,-9,2019,12,0,38,38,1,0,0,10.509699,10.509699,0,0,0,0,0,0,0,0,0,0,48.87,58.55,55.09,44.79,6.666666666666667,1,1,0,0,10,7,4,1,371,290857.59,222729.72,148707.36,39390.133,2096.8674 -855,1046,1891,1890,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7374554,7.9734268,0,36,-2,90.180557,0,3,2,2019,15,3,27,27,1,3,0,11.654733,11.654733,0,0,0,0,0,0,0,0,4.9518819,0,55.09,44.79,48.87,58.55,6.666666666666667,1,1,0,0,10,7,4,1,371,290857.59,222729.72,148707.36,39390.133,2096.8674 -856,1047,1892,-9,1894,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1183.0806,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,8,2,0,679.66669,68448.539,39178.758,0,0,2607.342 -856,1047,1893,-9,1894,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.515,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,679.66669,68448.539,39178.758,0,0,2607.342 -856,1047,1894,-9,-9,-9,1,0,39,0,2,0,2,2,1,1,4,7.6169863,7.7669063,0,0,0,-1003.8674,-9,1,1,2019,11,4,18,0,1,4,0,9.8714962,9.8714962,0,0,0,0,108,1,1,0,0,0,32.29,57.22,-9,-9,8.333333333333334,1,1,0,0,10,8,2,0,679.66669,68448.539,39178.758,0,0,2607.342 -857,1048,1895,1896,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.7813854,8.6524696,0,7,0,3.1197274,0,2,2,2019,10,1,45,40,1,1,0,17.861614,17.861614,0,0,0,0,0,1,1,0,.214104,0,45.91,59.89,51.39,59.18,8.333333333333334,4,2,0,0,8,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 -857,1048,1896,1895,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1278429,8.1221933,0,7,0,140.11534,0,2,2,2019,6,0,34,50,1,0,0,10.651035,10.651035,0,0,0,0,0,1,1,0,1.758646,0,51.39,59.18,45.91,59.89,8.333333333333334,1,1,0,0,8,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 -857,1048,1897,-9,1896,1895,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.7958,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 -857,1048,1898,-9,1896,1895,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1029.8381,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,5,4,1,660.5,494725.03,294249.88,211896.56,49174.273,3645.907 -858,1049,1899,1902,-9,-9,1,1,44,0,2,0,2,2,-9,0,1,0,0,0,12,3,117.18163,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.71536791,0,64.57000000000001,23.25,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,836,18571.895,51493.414,0,0,3074.8657 -858,1049,1900,-9,1902,1899,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.04675,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,836,18571.895,51493.414,0,0,3074.8657 -858,1049,1901,-9,1902,1899,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.3571,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,836,18571.895,51493.414,0,0,3074.8657 -858,1049,1902,1899,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.9932108,8.6994343,0,12,-3,-24.426573,0,1,1,2019,10,0,60,45,1,0,0,15.370667,15.370667,0,0,0,0,0,0,0,0,3.898793,0,54.2,57.49,64.57000000000001,23.25,8.333333333333334,1,1,0,0,9,7,4,1,836,18571.895,51493.414,0,0,3074.8657 -859,1050,1903,1904,-9,-9,1,1,50,1,1,0,3,3,-9,1,2,0,0,0,4,20,0,0,-9,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,34.19,36.1,23.13,38.75,6.666666666666667,1,1,0,0,0,2,1,0,814,-121200.5,0,0,0,1973.675 -859,1050,1904,1903,-9,-9,1,0,30,1,1,0,2,2,-9,1,1,0,0,0,4,-20,0,0,-9,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,27,1,1,0,0,0,23.13,38.75,34.19,36.1,0,1,1,0,0,0,2,1,0,814,-121200.5,0,0,0,1973.675 -859,1050,1905,-9,1904,1903,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.6455,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,814,-121200.5,0,0,0,1973.675 -860,1051,1906,1907,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.7820883,5.9093227,54,1,-34.734486,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0464811,5.5069103,59.63,41.44,60.27,25.7,6.666666666666667,1,1,0,0,0,9,2,1,1236,137764.38,107596.52,193001.75,0,1133.0901 -860,1051,1907,1906,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,6,-1,21.859865,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,38.147694,0,0,1,1,0,0,0,60.27,25.7,59.63,41.44,8.333333333333334,1,1,0,0,0,9,2,1,1236,137764.38,107596.52,193001.75,0,1133.0901 -861,1052,1908,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1067.531,0,3,3,2019,34,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.3,22.87,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,141,-225077.27,0,0,0,1128.7024 -862,1053,1909,1910,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,9,7,-58.021603,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.45,50.69,55.39,54.22,8.333333333333334,1,1,0,0,8,4,3,1,564,207520.3,0,233624.41,0,1783.6953 -862,1053,1910,1909,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9994111,7.9976554,0,9,-7,48.096035,0,2,2,2019,5,0,38,38,1,0,0,9.2486849,9.2486849,0,0,0,0,7,1,1,0,0,0,55.39,54.22,54.45,50.69,8.333333333333334,1,1,0,0,10,4,3,1,564,207520.3,0,233624.41,0,1783.6953 -863,1054,1911,1912,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.5843015,6.5905781,5.1507473,7,0,26.971521,0,-9,-9,2019,10,0,50,50,1,1,0,1.3689038,1.3689038,0,0,0,0,0,1,1,0,7.0973582,4.4675422,52,48,50,47,7,1,1,0,0,9,12,3,1,946.5,-118414.41,224746.66,0,0,2204.9292 -863,1054,1912,1911,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.5703669,7.351119,45,0,-12.274295,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.1732502,50,47,52,48,7,1,1,0,0,0,12,3,1,946.5,-118414.41,224746.66,0,0,2204.9292 -864,1055,1913,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,8.3926315,7.9676609,1.8067,5,1,39.588192,0,2,1,2019,14,3,23,24,1,3,0,15.853909,15.853909,0,0,0,0,0,0,0,0,3.6748292,0,8.1,64.37,49,58,1.666666666666667,4,2,0,0,11,12,3,1,588,-204958.78,-25284.373,0,0,851.70844 -865,1056,1914,-9,1916,1915,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1077.3003,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,4,5,1,810,281471.19,162202.75,395625.25,228998.56,5570.3721 -865,1056,1915,1916,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,8.7375364,8.7237864,0,23,2,133.58009,0,2,3,2019,11,0,37,40,1,0,0,21.295195,21.295195,0,0,0,0,0,1,1,0,1.0017947,0,52.38,55.95,55.78,39.42,10,2,3,0,0,10,4,5,1,810,281471.19,162202.75,395625.25,228998.56,5570.3721 -865,1056,1916,1915,-9,-9,1,0,44,0,1,0,1,1,-9,0,2,8.874444,9.1325445,0,23,-2,21.247339,0,3,3,2019,13,1,45,38,1,1,0,22.301413,22.301413,0,0,0,0,0,1,1,0,2.4635079,0,55.78,39.42,52.38,55.95,6.666666666666667,2,3,0,0,8,4,5,1,810,281471.19,162202.75,395625.25,228998.56,5570.3721 -865,1057,1917,-9,1916,1915,1,1,18,0,1,0,2,2,1,0,4,7.7749901,7.6801195,0,0,0,-860.01166,-9,1,2,2019,9,0,37,0,1,0,1,8.8233519,8.8233519,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,2,3,0,0,1,4,3,1,754,-128.39711,85277.641,0,0,1418.5374 -866,1058,1918,1919,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4413157,8.6197844,0,6,-8,-27.495409,-9,-9,-9,2019,10,0,37,0,1,1,0,12.031855,12.031855,0,0,0,0,0,0,0,0,1.2671907,0,51,54,52.93,52.64,8,1,1,0,0,1,4,5,1,555.5,431926.5,132703.63,111656.67,15717.509,2979.4961 -866,1058,1919,1918,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8072915,7.9802375,5.1965818,27,8,-11.454523,0,-9,-9,2019,11,0,45,45,1,0,0,7.1610436,7.1610436,0,0,0,0,0,0,0,0,4.2284336,5.0187111,52.93,52.64,51,54,8.333333333333334,1,1,0,0,8,4,5,1,555.5,431926.5,132703.63,111656.67,15717.509,2979.4961 -866,1059,1920,-9,1918,1919,1,0,22,0,0,0,2,2,-9,0,4,8.3018608,7.8486123,0,0,0,-1004.2029,-9,2,2,2019,11,0,37,0,1,2,1,7.8014035,7.8014035,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,4,4,1,1275,-311474.09,-89010.328,72447.219,74873.375,1081.6744 -867,1060,1921,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,7.9159818,8.1261559,0,0,0,-1057.0791,0,-9,-9,2019,31,12,38,48,1,12,0,7.7386532,7.7386532,0,0,0,0,0,0,0,0,0,0,31.48,46.82,-9,-9,1.666666666666667,1,1,0,0,5,11,3,0,665,12957.385,46222.145,0,0,1440.3981 -868,1061,1922,1923,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.4543114,8.2649374,0,28,-1,43.330456,0,3,3,2019,16,5,37,37,1,5,0,16.225246,16.225246,0,0,0,0,0,0,0,0,0,0,35.26,59.77,57.33,53.46,5,1,1,0,0,13,6,5,1,646.5,930870.38,542800.06,377125.19,89081.891,3417.6089 -868,1061,1923,1922,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.6169052,8.4155397,0,28,1,3.4843435,0,3,3,2019,7,0,37,38,1,0,0,11.84758,11.84758,0,0,0,0,0,0,0,0,0,0,57.33,53.46,35.26,59.77,8.333333333333334,1,1,0,0,13,6,5,1,646.5,930870.38,542800.06,377125.19,89081.891,3417.6089 -868,1062,1924,-9,1922,1923,1,1,26,0,0,0,2,2,0,0,4,0,8.881155,8.8033705,0,0,-912.35565,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,8.2302065,0,30.87,65.23999999999999,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,865,100655.63,11587.448,0,0,3049.1589 -869,1063,1925,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.8959522,6.4733191,0,0,-1015.9026,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6791306,62.1,51.16,-9,-9,10,1,1,0,0,0,11,2,1,1070,4654.312,42871.176,249875.81,0,1115.7448 -870,1064,1926,1929,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,0,0,0,11,-5,3.2306027,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.6399701,0,30.53,65.61,57.06,57.76,8.333333333333334,1,1,0,0,3,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 -870,1064,1927,-9,1926,1929,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.94482,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 -870,1064,1928,-9,1926,1929,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6656,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 -870,1064,1929,1926,-9,-9,1,1,44,1,2,0,1,1,-9,0,5,9.2658386,9.2043123,0,11,5,-44.817524,0,2,1,2019,8,0,45,47,1,0,0,21.85697,21.85697,0,0,0,0,0,0,0,0,7.7138,0,57.06,57.76,30.53,65.61,8.333333333333334,1,1,0,0,10,9,5,1,481.75,1459633,876654.88,574876.13,0,4444.4849 -871,1065,1930,-9,1933,1932,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1031.817,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 -871,1065,1931,-9,1933,1932,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1134.0804,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 -871,1065,1932,1933,-9,-9,1,1,58,1,4,0,2,2,-9,0,3,8.1781836,8.3728695,0,5,5,-95.010361,-9,1,2,2019,10,0,40,0,1,1,0,10.108377,10.108377,0,0,0,0,0,1,1,0,4.9976096,0,50,49,57.06,57.76,7,1,1,0,0,1,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 -871,1065,1933,1932,-9,-9,1,0,53,1,4,0,2,2,-9,0,5,0,0,0,5,-5,29.616648,-9,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,49,8.333333333333334,1,1,0,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 -871,1065,1934,-9,1933,1932,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1061.8035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,403,308975.09,38433.48,166072.14,64690.223,2237.3984 -871,1066,1935,-9,1933,1932,1,0,28,1,4,0,2,2,-9,0,3,6.9602098,6.8161521,0,0,0,-1099.7119,-9,2,2,2019,14,4,16,0,1,4,1,5.8749447,5.8749447,0,0,0,0,0,1,1,0,0,0,31.6,57.32,-9,-9,6.666666666666667,1,1,0,1,10,13,2,1,2493.5,213090.34,0,0,0,1322.8391 -871,1066,1936,-9,1935,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-960.71765,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,1,2493.5,213090.34,0,0,0,1322.8391 -871,1067,1937,-9,1933,1932,1,1,24,1,4,0,2,2,-9,0,5,7.708859,7.6682186,0,0,0,-1093.6899,0,2,2,2019,6,0,37,1,1,0,1,8.8445883,8.8445883,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,1937,334285.09,-20742.293,0,0,501.77264 -871,1068,1938,-9,1933,1932,1,1,23,1,4,0,2,2,-9,0,5,8.4497652,8.7476511,0,0,0,-984.75507,-9,2,2,2019,7,0,40,0,1,0,1,12.794706,12.794706,0,0,0,0,2,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,7,13,5,1,533,6212.0435,2314.5178,0,0,1957.0757 -871,1069,1939,-9,1933,1932,1,0,21,1,4,0,2,2,-9,1,5,8.0891132,8.1245518,0,0,0,-976.15057,-9,2,2,2019,11,3,24,0,1,3,1,17.14773,17.14773,0,0,0,0,0,1,1,0,5.4141846,0,53.66,52.71,-9,-9,6.666666666666667,1,1,0,0,4,13,4,1,166,126547.6,-18201.166,0,0,359.66669 -872,1070,1940,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7133131,8.5848408,0,1,-6,-111.44948,0,3,2,2019,9,0,61,41,1,0,0,11.11055,11.11055,0,0,0,0,0,0,0,0,1.3470459,0,43.42,62.33,47.77,56.48,8.333333333333334,1,1,0,0,8,5,5,1,186,1116682.6,778690.94,277937.97,0,2125.4897 -872,1071,1941,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,9.1732225,9.1631117,0,1,6,87.233322,0,3,2,2019,12,2,48,54,1,2,0,22.438171,22.438171,0,0,0,0,0,0,0,0,2.5640593,0,47.77,56.48,43.42,62.33,10,1,1,0,0,8,5,5,1,410,287186.84,286085.03,171009.28,121023.2,3157.262 -873,1072,1942,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1193.401,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,40.96,29.77,-9,-9,3.333333333333333,1,1,0,0,3,7,1,1,1020,245778.38,0,0,0,704.1366 -873,1072,1943,-9,1942,-9,1,0,17,0,0,0,3,3,-9,1,4,0,0,0,0,0,-972.56354,0,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,1,1,1020,245778.38,0,0,0,704.1366 -873,1073,1944,-9,1942,-9,1,0,20,0,0,0,2,2,-9,0,4,6.7053761,6.6986041,0,0,0,-1017.5093,0,2,-9,2019,12,0,25,14,1,2,1,5.0363479,5.0363479,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,7,2,1,981,275996.41,0,0,0,241.214 -874,1074,1945,1946,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7998595,7.8029866,30,3,44.374012,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1152911,7.6625137,57.31,50.61,57.73,54.53,8.333333333333334,1,1,0,0,2,10,4,1,919,1325852,1041811.8,180608.31,0,3712.3804 -874,1074,1946,1945,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.5544262,8.3650818,30,-3,-45.166832,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3449717,8.2941828,57.73,54.53,57.31,50.61,10,1,1,0,0,7,10,4,1,919,1325852,1041811.8,180608.31,0,3712.3804 -875,1075,1947,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1056.6304,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,7,1,0,880,219479.09,0,0,0,197.97942 -876,1076,1948,-9,1950,1951,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.25861,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 -876,1076,1949,-9,1950,1951,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9229,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 -876,1076,1950,1951,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,0,0,0,6,-1,58.147518,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,50,57,5,1,1,0,0,8,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 -876,1076,1951,1950,-9,-9,1,1,29,1,2,0,2,2,-9,0,4,8.6835718,8.6106081,0,6,1,15.842636,0,-9,-9,2019,10,0,44,40,1,1,0,12.700377,12.700377,0,0,0,0,0,1,1,0,0,0,50,57,54.37,54.8,7,1,1,0,0,1,7,3,1,755.25,173618.98,20098.053,179439.5,63537.09,2441.0664 -877,1077,1952,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,9.211009,8.6904354,0,0,0,-1056.9609,0,3,1,2019,6,0,47,50,1,0,0,22.012484,22.012484,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,629,-25728.783,-147731.61,132928.98,99398.977,2628.4041 -878,1078,1953,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1234.191,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,305,545420.63,0,114392.13,0,95.38813 -879,1079,1954,1955,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,30,6,-74.474861,0,3,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,44.68,33.71,36.27,60.6,5,1,1,0,0,0,11,2,1,811,357772.69,67715.68,193063.88,0,765.5293 -879,1079,1955,1954,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.861506,6.8774724,0,30,-6,20.688429,0,3,3,2019,12,0,30,30,1,0,0,3.5859761,3.5859761,0,0,0,0,14.5,1,1,0,0,0,36.27,60.6,44.68,33.71,5,1,1,0,0,7,11,2,1,811,357772.69,67715.68,193063.88,0,765.5293 -880,1080,1956,1957,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,6.8716397,7.0297656,0,40,-2,-142.22108,0,3,3,2019,9,0,7,16,1,0,0,15.778785,15.778785,0,0,0,0,0,1,1,0,0,0,39.58,57.61,46.21,37.4,8.333333333333334,1,1,0,1,10,2,2,1,368,104080.73,-54638.078,0,0,931.81665 -880,1080,1957,1956,-9,-9,1,1,58,0,1,0,3,3,-9,0,2,6.6619496,6.4432731,0,39,2,-120.05302,-9,3,3,2019,13,3,45,0,1,3,0,1.9244357,1.9244357,0,0,0,0,0,1,1,0,0,0,46.21,37.4,39.58,57.61,5,1,1,0,0,10,2,2,1,368,104080.73,-54638.078,0,0,931.81665 -880,1080,1958,-9,1956,1957,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-951.61798,-9,2,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,1,0,2,2,1,368,104080.73,-54638.078,0,0,931.81665 -881,1081,1959,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.2316718,7.2185173,0,0,-961.16333,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,3.3169053,0,24.497213,0,1,1,0,6.0898852,7.4353876,43.39,33.86,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,654,330334.59,240149.75,223516.38,0,1160.8058 -882,1082,1960,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.13235,8.3690834,0,0,-979.75928,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4237556,8.0039415,49.41,58.28,-9,-9,10,1,1,0,0,2,10,4,1,293,3961948.8,1038842.4,770012.19,0,2329.0864 -883,1083,1961,1962,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7827034,8.564126,0,6,4,52.407009,0,3,3,2019,10,0,39,39,1,1,0,17.287664,17.287664,0,0,0,0,0,0,0,0,0,0,52,48,48.76,29.31,7,1,1,0,0,1,1,5,1,1039,1973478.8,1453826.6,250402.31,0,5241.6563 -883,1083,1962,1961,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,8.0312443,7.6204643,36,-4,4.1646972,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,7.8545566,7.9316049,48.76,29.31,52,48,6.666666666666667,1,1,0,0,0,1,5,1,1039,1973478.8,1453826.6,250402.31,0,5241.6563 -884,1084,1963,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.0737076,8.0534325,5.4413972,0,0,-1025.7496,0,2,2,2019,8,0,37,37,1,0,0,9.6850729,9.6850729,0,0,0,0,0,0,0,0,5.3880677,5.2867866,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,1302,87155.164,0,0,0,1533.9548 -885,1085,1964,1967,-9,-9,1,0,48,0,3,0,3,3,-9,0,3,0,0,0,30,-2,-34.806892,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,45.61,48.35,50.45,8.333333333333334,2,3,0,0,0,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 -885,1085,1965,-9,1964,1967,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-867.66919,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 -885,1085,1966,-9,1964,1967,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.29608,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 -885,1085,1967,1964,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,7.9999962,7.967412,0,9,2,-56.6045,0,3,3,2019,7,0,38,31,1,0,0,7.7742391,7.7742391,0,0,0,0,0,1,1,0,0,0,48.35,50.45,42.1,45.61,8.333333333333334,2,3,0,0,7,2,2,1,538.75,19628.547,-23196.195,0,0,1946.5742 -885,1086,1968,-9,1964,1967,1,1,18,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1012.8636,-9,3,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.35,51.61,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,184,294821.38,0,106661.89,0,0 -886,1087,1969,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,6.7753024,6.6863346,0,0,-1033.0614,0,2,2,2019,5,0,0,5,3,0,0,0,0,0,0,0,0,0,0,0,0,6.7518959,6.7292485,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,1027,935314.94,276892.94,373691.25,0,654.24133 -887,1088,1970,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-881.07416,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,29.77,26.17,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,608,-209564.58,0,0,0,1984.7417 -887,1089,1971,-9,1970,-9,1,0,25,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1004.327,0,3,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,27,1,1,0,0,0,16.21,59.64,-9,-9,3.333333333333333,1,1,0,0,6,13,1,0,1282,103664.17,0,0,0,481.01804 -887,1090,1972,-9,1970,-9,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.9345,0,3,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,19.65,60.29,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,658,0,0,0,0,238.07234 -888,1091,1973,1974,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.4576969,5.6998773,50,0,10.157573,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.4033232,5.8636007,52.23,55.6,53,47,5,1,1,0,0,0,7,3,1,469.5,1332691.9,608978.69,396156.63,0,2512.7314 -888,1091,1974,1973,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.3777699,7.740612,7,0,71.201759,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5077424,7.6331511,53,47,52.23,55.6,7,1,1,0,0,0,7,3,1,469.5,1332691.9,608978.69,396156.63,0,2512.7314 -889,1092,1975,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.59711,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,6.5976934,0,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,13,1,1,660,-228741.52,0,0,0,1487.5032 -889,1093,1976,-9,-9,1975,1,1,71,0,0,0,2,2,-9,0,3,0,7.8214293,7.7871547,0,0,-954.78766,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7974272,8.3021603,34.66,52.92,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,1007,626415.13,409594.34,22779.885,0,1790.8699 -890,1094,1977,-9,1978,1980,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.4949,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 -890,1094,1978,1980,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,5.7503591,5.6800914,0,22,-4,69.745811,0,2,2,2019,9,0,5,4,1,0,0,5.1438661,5.1438661,0,0,0,0,0,1,1,0,0,0,49.69,50.13,53,55,6.666666666666667,1,1,0,0,9,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 -890,1094,1979,-9,1978,1980,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.8075,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 -890,1094,1980,1978,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.3115358,9.5151615,0,6,4,-35.563435,0,2,2,2019,9,0,40,47,1,1,0,29.891714,29.891714,0,0,0,0,0,1,1,0,4.6167445,0,53,55,49.69,50.13,8,1,1,0,0,1,2,5,1,757.5,827682.69,673783,142186.5,70546.258,4741.2886 -891,1095,1981,1982,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.9747186,8.1088705,0,6,0,91.387794,0,3,3,2019,8,0,44,42,1,0,0,7.8676519,7.8676519,0,0,0,0,0,0,0,0,6.960804,0,51.24,58.84,48.98,57.22,8.333333333333334,1,1,0,0,8,2,5,1,768,910748.13,398988.84,218690.91,24328.369,4189.2788 -891,1095,1982,1981,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.1850014,9.1154013,0,6,9,20.918987,0,2,2,2019,14,2,37,37,1,2,0,28.672573,28.672573,0,0,0,0,0,0,0,0,7.348743,0,48.98,57.22,51.24,58.84,8.333333333333334,1,1,0,0,8,2,5,1,768,910748.13,398988.84,218690.91,24328.369,4189.2788 -892,1096,1983,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.3116665,7.3792362,0,0,-973.35785,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,0,13.765325,0,0,1,1,0,0,6.9458957,39.94,34.35,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,194,787784.94,300810.78,158559.2,0,1400.5352 -893,1097,1984,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1050.0856,-9,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32.46,-9,-9,0,1,1,0,1,2,6,1,0,351,-10935.454,0,0,0,734.97943 -894,1098,1985,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.8851509,8.9864521,0,0,0,-994.76703,0,2,1,2019,8,0,80,41,1,0,0,12.321082,12.321082,0,0,0,0,0,0,0,0,0,0,64.07000000000001,47.52,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,110,143553.36,-32220.104,96121.031,-8453.7188,2586.0884 -894,1099,1986,-9,1985,-9,1,0,18,0,0,0,2,2,-9,0,3,7.9849234,8.2073097,0,0,0,-913.54779,0,1,-9,2019,14,2,35,0,1,2,1,11.344154,11.344154,0,0,0,0,0,0,0,0,4.7881284,0,48.45,57.49,-9,-9,5,1,1,0,0,2,2,4,1,827,-2033.6553,32729.309,0,0,2046.1663 -894,1100,1987,-9,1985,-9,1,0,18,0,0,0,2,2,-9,0,3,8.0867176,8.5527754,0,0,0,-963.61877,0,1,-9,2019,9,0,43,0,1,0,1,8.4886017,8.4886017,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,2,2,4,1,220,68795.438,-38790.91,0,0,1048.5706 -895,1101,1988,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,8.0308685,8.434248,0,0,-1003.0493,0,2,1,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,6.1836405,8.0711069,42.2,13.43,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,327,1348882.1,483773.59,349779.22,0,2538.8591 -896,1102,1989,1990,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.1874466,7.620461,55,1,11.250963,0,3,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6442184,8.2886696,49.43,44.66,57.91,38.28,10,1,1,0,0,0,1,3,1,377.5,3453086,599796.13,1272038.9,0,2326.0488 -896,1102,1990,1989,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,55,-1,-83.321297,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1501154,0,57.91,38.28,49.43,44.66,8.333333333333334,1,1,0,0,0,1,3,1,377.5,3453086,599796.13,1272038.9,0,2326.0488 -897,1103,1991,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.1961861,8.2819834,5.7689419,0,0,-951.13245,0,2,2,2019,6,0,38,35,1,0,0,11.230267,11.230267,0,0,0,0,14.5,1,1,0,0,6.1121655,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,316,997512.25,746317.25,334029.56,0,1363.9369 -898,1104,1992,1993,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.8405991,8.7371159,0,3,-6,.34989327,0,-9,-9,2019,10,2,40,41,1,2,0,19.111221,19.111221,0,0,0,0,0,0,0,0,0,0,40.1,51.82,46.39,60.99,6.666666666666667,1,1,0,0,2,10,5,0,1550.5,14541.375,43486.547,196735.53,108137.46,3154.5474 -898,1104,1993,1992,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.0361605,8.1976519,0,3,6,-84.265541,0,2,2,2019,14,2,40,40,1,2,0,8.0995693,8.0995693,0,0,0,0,0,0,0,0,1.1146917,0,46.39,60.99,40.1,51.82,8.333333333333334,1,1,0,0,9,10,5,0,1550.5,14541.375,43486.547,196735.53,108137.46,3154.5474 -899,1105,1994,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-960.91351,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,46.05,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,226,-243435.25,0,0,0,2105.7983 -900,1106,1995,1996,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.3605452,6.2822924,0,1,-8,2.366044,0,2,-9,2019,6,0,40,50,1,0,0,1.6579839,1.6579839,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,49,8.333333333333334,1,1,0,0,8,4,5,1,1006,252827.8,89307.086,355336.63,85190.953,3069.8325 -900,1106,1996,1995,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8293114,8.9786386,0,1,8,-52.687817,-9,-9,-9,2019,10,0,40,0,1,1,0,21.011681,21.011681,0,0,0,0,0,0,0,0,4.4619823,0,51,49,57.16,56.15,7,4,1,0,0,1,4,5,1,1006,252827.8,89307.086,355336.63,85190.953,3069.8325 -901,1107,1997,1998,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.4996843,8.3750458,0,7,-4,-72.515419,0,-9,-9,2019,21,8,82,49,1,8,0,6.0736289,6.0736289,0,0,0,0,0,1,1,0,0,0,43.42,62.33,52,54.51,3.333333333333333,1,1,0,1,8,5,5,1,526,1183581.3,844134.44,178318.5,0,5692.8008 -901,1107,1998,1997,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7064791,8.7129087,5.600987,7,4,-115.03946,0,-9,-9,2019,11,0,50,55,1,0,0,13.837773,13.837773,0,0,0,0,0,1,1,0,5.7227769,5.6505322,52,54.51,43.42,62.33,8.333333333333334,1,1,0,0,8,5,5,1,526,1183581.3,844134.44,178318.5,0,5692.8008 -902,1108,1999,2000,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.0761461,7.8803802,0,3,-7,9.8246346,0,-9,-9,2019,14,2,35,45,1,2,0,9.4518909,9.4518909,0,0,0,0,0,1,1,0,0,0,21.53,48.4,36.26,40.48,5,1,1,0,0,4,9,4,0,2215,344666.84,100197,180258.19,56985.277,2038.7513 -902,1108,2000,1999,-9,-9,1,1,43,0,0,0,3,3,-9,0,2,7.2714515,7.1127939,0,3,7,59.841553,0,2,3,2019,15,4,50,40,1,4,0,3.4457083,3.4457083,0,0,0,0,0,1,1,0,0,0,36.26,40.48,21.53,48.4,8.333333333333334,1,1,0,0,5,9,4,0,2215,344666.84,100197,180258.19,56985.277,2038.7513 -903,1109,2001,-9,2002,-9,1,0,49,0,0,0,1,1,-9,0,2,6.8364501,7.2967458,0,0,0,-993.19153,0,2,2,2019,13,1,14,40,1,1,0,7.2059989,7.2059989,0,0,0,0,27,1,1,0,1.3620386,0,49.18,40.45,-9,-9,1.666666666666667,1,1,0,0,11,10,2,1,1369,-194791.5,0,0,0,255.66115 -903,1110,2002,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.8009095,7.124444,0,0,-934.27155,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,7.4362755,0,0,1,1,0,6.833456,6.9638824,30.16,55.62,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,97,702187.94,60063.195,236886.39,0,1131.0035 -904,1111,2003,-9,2004,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.2045,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,12,1,1,1955.5,0,0,0,0,452.49457 -904,1111,2004,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,2,0,0,0,0,0,-996.16498,0,1,1,2019,13,2,0,4,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97,41.36,-9,-9,3.333333333333333,3,4,0,0,3,12,1,1,1955.5,0,0,0,0,452.49457 -905,1112,2005,2006,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.859189,7.8297796,0,20,-1,153.37831,0,3,2,2019,6,0,40,35,1,0,0,6.3832579,6.3832579,0,0,0,0,0,1,1,0,0,0,58.32,50.22,31.95,53,5,2,3,0,0,11,12,3,0,800.5,137421.48,0,0,0,1401.1119 -905,1112,2006,2005,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,20,1,-45.846058,0,3,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,31.95,53,58.32,50.22,3.333333333333333,2,3,0,0,7,12,3,0,800.5,137421.48,0,0,0,1401.1119 -906,1113,2007,2008,-9,-9,1,0,29,0,1,0,1,1,-9,0,4,7.9357967,7.6273017,0,7,0,-60.310963,0,2,3,2019,12,2,40,45,1,2,0,8.4014502,8.4014502,0,0,0,0,0,1,1,0,0,0,45.85,61.26,54.94,53.18,8.333333333333334,1,1,0,0,6,4,4,1,523.33331,-24023.152,-19619.42,235124.5,200885.97,2585.4219 -906,1113,2008,2007,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,8.0983496,7.7560053,0,7,0,-5.6840177,0,2,3,2019,9,0,44,48,1,0,0,8.8276186,8.8276186,0,0,0,0,0,1,1,0,0,0,54.94,53.18,45.85,61.26,1.666666666666667,1,1,0,0,9,4,4,1,523.33331,-24023.152,-19619.42,235124.5,200885.97,2585.4219 -906,1113,2009,-9,2007,2008,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1089.4017,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,523.33331,-24023.152,-19619.42,235124.5,200885.97,2585.4219 -907,1114,2010,2011,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.2447605,8.1875639,6,5,-57.573315,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0803947,7.918509,57.06,57.76,57.16,56.15,10,1,1,0,0,6,2,4,1,949.5,1456143.5,55269.227,319059.19,81526.453,3802.9766 -907,1114,2011,2010,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9851599,8.3034296,0,6,-5,-38.798801,0,2,1,2019,7,0,32,30,1,0,0,10.259955,10.259955,0,0,0,0,0,1,1,0,4.6152582,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,2,4,1,949.5,1456143.5,55269.227,319059.19,81526.453,3802.9766 -908,1115,2012,2013,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.3365707,6.0867729,57,-1,-33.101517,0,3,-9,2019,14,2,0,0,4,2,0,0,0,0,0,42.265915,0,0,1,1,0,5.8357258,6.0076318,52.14,29.18,43.38,39.4,6.666666666666667,1,1,0,0,0,11,2,1,627.5,328799.97,-66111.891,244734.94,0,2031.7782 -908,1115,2013,2012,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.9297571,6.059926,57,1,-78.604675,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.1022348,6.3240376,43.38,39.4,52.14,29.18,8.333333333333334,1,1,0,0,0,11,2,1,627.5,328799.97,-66111.891,244734.94,0,2031.7782 -909,1116,2014,2017,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,7.8849225,8.078043,0,6,-8,13.624203,0,1,1,2019,8,1,25,25,1,1,0,11.774396,11.774396,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.76,50.23,8.333333333333334,1,1,0,0,6,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 -909,1116,2015,-9,2017,2014,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.95618,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 -909,1116,2016,-9,2017,2014,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.5106,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 -909,1116,2017,2014,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,6.8498154,6.7490606,0,6,8,46.568047,0,2,3,2019,11,0,10,20,1,0,0,10.661546,10.661546,0,0,0,0,0,1,1,0,6.4118185,0,40.76,50.23,57.33,53.46,5,1,1,0,0,7,10,3,1,268.5,408390.78,102326.6,0,0,3106.3708 -910,1117,2018,2021,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,7.0979996,7.2017207,0,15,-2,29.300407,0,3,2,2019,8,0,11,0,1,0,0,8.5240002,8.5240002,0,0,0,3.8366346,0,1,1,0,0,0,49.46,56.91,49,57,8.333333333333334,2,3,0,0,4,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 -910,1117,2019,-9,2018,2021,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.08325,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 -910,1117,2020,-9,2018,2021,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.1484,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 -910,1117,2021,2018,-9,-9,1,1,33,0,3,0,3,3,-9,0,4,9.7560158,9.6156254,0,15,2,3.9568515,0,3,3,2019,10,0,20,37,1,1,0,87.769768,87.769768,0,0,0,0,0,1,1,0,0,0,49,57,49.46,56.91,7,2,3,0,0,10,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 -910,1117,2022,-9,2018,2021,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1040.2426,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,5,1,803,49410.891,124318.81,216370.59,169987.52,12982.659 -911,1118,2023,-9,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.8246489,9.6332712,0,0,0,-1048.6665,0,2,1,2019,5,0,70,100,1,0,0,36.588146,36.588146,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,9,5,1,355,628997.75,0,363976,189718.73,8210.5879 -912,1119,2024,2026,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,8.5578327,8.6205149,0,8,0,74.651718,0,-9,-9,2019,15,5,38,43,1,5,0,18.5842,18.5842,0,0,0,0,2,1,1,0,4.0127892,0,45.9,41.36,58.72,51.29,8.333333333333334,1,1,0,0,9,9,5,1,525.33331,894823.44,15046.36,754758.81,0,4260.4746 -912,1119,2025,-9,2024,2026,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.1151,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,525.33331,894823.44,15046.36,754758.81,0,4260.4746 -912,1119,2026,2024,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.7146082,8.5562057,0,8,0,17.66857,0,3,-9,2019,8,0,37,42,1,0,0,15.269509,15.269509,0,0,0,0,0,1,1,0,0,0,58.72,51.29,45.9,41.36,8.333333333333334,1,1,0,0,12,9,5,1,525.33331,894823.44,15046.36,754758.81,0,4260.4746 -913,1120,2027,2028,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0046816,7.9828115,44,-1,-63.22517,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.9403243,54.2,57.49,57.06,57.76,10,1,1,0,0,0,5,3,1,992,1301428,512088.5,247710.63,0,2537.6929 -913,1120,2028,2027,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.1637821,6.9079113,44,1,-131.75772,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3449831,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,992,1301428,512088.5,247710.63,0,2537.6929 -914,1121,2029,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.3230104,5.0898361,0,0,-1038.8995,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8661938,4.9114828,43.36,42.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,485,-23846.035,0,129315.76,0,637.07147 -915,1122,2030,2031,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,8.0901337,7.8930779,0,28,1,131.55194,0,-9,-9,2019,8,1,45,0,1,1,0,7.4360285,7.4360285,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.82,39.58,8.333333333333334,2,3,0,1,7,7,4,1,203,329951.38,139418.44,0,0,3101.0781 -915,1122,2031,2030,-9,-9,1,0,46,0,1,0,3,3,-9,0,2,8.030942,8.032424,0,6,-1,56.2626,0,-9,-9,2019,5,0,42,35,1,0,0,8.4014826,8.4014826,0,0,0,0,0,1,1,0,0,0,61.82,39.58,57.33,53.46,8.333333333333334,2,3,0,0,8,7,4,1,203,329951.38,139418.44,0,0,3101.0781 -916,1123,2032,2033,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.0068369,8.2183027,7.9270239,11,0,28.498852,0,2,-9,2019,7,1,18,18,1,1,0,7.7165961,7.7165961,0,0,0,0,0,1,1,0,0,7.6961699,59.52,41.3,58.16,37.92,8.333333333333334,1,1,0,0,13,7,3,1,1487,2889199.5,1546759.8,844885.06,0,2649.8108 -916,1123,2033,2032,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,47,0,-22.388416,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,58.16,37.92,59.52,41.3,8.333333333333334,1,1,0,0,0,7,3,1,1487,2889199.5,1546759.8,844885.06,0,2649.8108 -917,1124,2034,2035,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.688684,7.7041068,0,1,1,-89.315407,-9,-9,-9,2019,3,0,37,0,1,0,0,7.8552175,7.8552175,0,0,0,0,0,0,0,0,0,0,60.38,48,42.46,54.85,8.333333333333334,1,1,0,0,0,9,4,0,678,1085.8594,45481.117,0,0,2272.2534 -917,1124,2035,2034,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.750546,7.7113008,0,1,-1,18.031408,0,-9,-9,2019,12,1,37,38,1,1,0,8.9210453,8.9210453,0,0,0,0,0,0,0,0,0,0,42.46,54.85,60.38,48,8.333333333333334,1,1,0,0,5,9,4,0,678,1085.8594,45481.117,0,0,2272.2534 -918,1125,2036,-9,2037,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-955.42511,-9,1,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.5197468,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,4,1,516.5,196498.41,217739.2,197605.94,74515.852,2473.8037 -918,1125,2037,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.8002834,8.474268,0,0,0,-1017.8359,0,3,2,2019,26,10,37,37,1,10,0,14.473417,14.473417,0,0,0,0,0,1,1,0,0,0,32.45,54.09,-9,-9,1.666666666666667,1,1,0,0,7,12,4,1,516.5,196498.41,217739.2,197605.94,74515.852,2473.8037 -919,1126,2038,2039,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,8.3333387,8.4456873,0,10,-2,25.251463,-9,3,3,2019,11,2,40,0,1,2,0,11.393239,11.393239,0,0,0,0,0,0,0,0,0,0,50.9,45.66,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,0,815,859817.13,633612.31,76489.086,76486.789,3391.1064 -919,1126,2039,2038,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5917797,8.6105232,0,10,2,17.427563,0,3,1,2019,6,0,37,37,1,0,0,13.972864,13.972864,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.9,45.66,8.333333333333334,1,1,0,0,7,13,5,0,815,859817.13,633612.31,76489.086,76486.789,3391.1064 -920,1127,2040,2041,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.728806,4.6640244,53,-1,33.379097,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5588508,55.36,51.57,38.85,43.93,10,1,1,0,0,0,13,3,1,406.5,803355.5,308186.22,337159.13,0,2388.2004 -920,1127,2041,2040,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.4675317,8.0298071,53,1,-137.30022,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2119861,7.528964,38.85,43.93,55.36,51.57,8.333333333333334,1,1,0,0,0,13,3,1,406.5,803355.5,308186.22,337159.13,0,2388.2004 -921,1128,2042,-9,2043,2045,1,0,15,0,5,1,3,0,-9,0,2,0,0,0,0,0,-1051.2638,-9,3,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 -921,1128,2043,2045,-9,-9,1,0,40,0,5,0,3,3,-9,0,4,0,0,0,19,-2,3.577899,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,38.39,40.89,6.666666666666667,2,3,0,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 -921,1128,2044,-9,2043,2045,1,1,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1024.4756,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 -921,1128,2045,2043,-9,-9,1,1,42,0,5,0,3,3,-9,0,2,7.0035009,7.0108438,0,19,2,-115.83572,0,3,3,2019,16,3,24,24,1,3,0,7.4087267,7.4087267,0,0,0,0,14.5,1,1,0,0,0,38.39,40.89,54.79,55.86,8.333333333333334,2,3,0,1,12,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 -921,1128,2046,-9,2043,2045,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-805.73053,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 -921,1128,2047,-9,2043,2045,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-846.38171,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 -921,1128,2048,-9,2043,2045,1,0,16,0,5,1,2,0,-9,0,3,0,0,0,0,0,-932.93677,-9,3,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,526.42859,262157.5,-11691.926,133558.7,61976.254,2799.0876 -921,1129,2049,-9,2043,2045,1,0,21,0,5,0,2,2,-9,0,3,7.9222755,7.8779602,0,0,0,-864.80096,0,3,3,2019,20,6,37,0,1,6,1,7.3424845,7.3424845,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6.666666666666667,2,3,0,0,1,2,4,0,863,-112536,9745.8154,0,0,1655.4246 -922,1130,2050,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3319626,8.4079056,0,0,0,-919.76154,0,2,2,2019,8,0,38,37,1,0,0,14.85758,14.85758,0,0,0,0,0,1,1,0,5.5943217,0,53.36,50.02,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1605,186484.72,168614.19,90885.703,12650.886,1495.2389 -923,1131,2051,2052,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.5707312,7.8258061,0,18,-4,-91.355377,0,2,1,2019,5,1,30,0,1,1,0,10.29009,10.29009,0,0,0,0,0,1,1,0,3.0944188,0,48.89,38.67,46.37,50.17,3.333333333333333,1,1,0,0,11,11,4,1,1305.5,149359.13,68117.898,103226.8,15965.431,2748.6917 -923,1131,2052,2051,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.0841751,8.382309,0,18,4,-126.89627,0,2,-9,2019,10,0,39,39,1,0,0,11.513871,11.513871,0,0,0,0,2,1,1,0,2.9848683,0,46.37,50.17,48.89,38.67,6.666666666666667,1,1,0,0,11,11,4,1,1305.5,149359.13,68117.898,103226.8,15965.431,2748.6917 -924,1132,2053,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.1598797,9.5286779,7.4674668,0,0,-1004.6481,0,1,1,2019,15,3,40,35,1,3,0,26.354143,26.354143,0,0,0,0,0,0,0,0,8.1095572,0,29.99,65.88,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,2929,337106.06,309978.88,151197.84,40504.855,3949.0234 -924,1132,2054,-9,2053,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-940.12915,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.2681142,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,2929,337106.06,309978.88,151197.84,40504.855,3949.0234 -925,1133,2055,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.7907143,7.6193142,0,0,-1175.6558,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8226075,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,718,1113207.3,159231.23,168904.22,0,2011.1578 -926,1134,2056,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.1185641,5.2822728,0,0,-948.17688,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.5254912,0,21.932365,0,1,1,0,5.3884087,5.1429291,56.61,28.27,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,589,191475.03,0,323547.25,0,1600.6707 -927,1135,2057,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-913.67749,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,47.01,58,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,282,-155741.39,0,0,0,0 -928,1136,2058,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.6431208,6.569973,0,0,-981.23218,0,2,3,2019,13,3,0,0,4,3,0,0,0,1,0,18.13516,0,0,1,1,0,6.0059328,6.2467942,38.51,38.76,-9,-9,10,1,1,0,0,0,9,2,1,535,236482.91,-57472.906,0,0,992.57849 -929,1137,2059,-9,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,7.4162455,7.4618869,0,0,0,-1123.311,-9,3,2,2019,13,3,27,0,1,3,0,8.6446381,8.6446381,0,0,0,0,0,1,1,0,0,0,39.74,47.82,-9,-9,6.666666666666667,2,3,0,1,4,5,3,0,2119,32228.154,-104366.66,0,0,401.56647 -930,1138,2060,2061,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.8495998,8.8646984,0,11,1,95.977158,0,2,2,2019,12,0,55,55,1,0,0,13.536046,13.536046,0,0,0,0,0,0,0,0,0,0,47.7,48.93,53.77,45.91,8.333333333333334,1,1,0,0,13,7,5,1,318.5,671478.44,385097.25,366973.94,96561.945,3048.939 -930,1138,2061,2060,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.0384092,8.0188847,0,11,-1,-184.30727,0,2,2,2019,12,1,47,37,1,1,0,8.5900736,8.5900736,0,0,0,0,0,0,0,0,.24023266,0,53.77,45.91,47.7,48.93,6.666666666666667,1,1,0,0,12,7,5,1,318.5,671478.44,385097.25,366973.94,96561.945,3048.939 -930,1139,2062,-9,2061,2060,1,0,29,0,0,0,1,1,0,0,2,0,0,0,0,0,-960.74158,-9,2,3,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,40.99,54.49,-9,-9,5,1,1,0,1,7,7,1,1,611,-21313.674,63654.336,0,0,0 -931,1140,2063,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,4.0723419,4.5407152,0,0,-1021.1279,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0765817,4.4009819,60.45,24.99,-9,-9,10,1,1,0,0,0,9,2,1,1032,303464.94,46129.293,245662.33,0,894.49481 -932,1141,2064,2065,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,6.4760051,6.8202109,26,-3,-21.143986,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.9999793,6.8781161,48.28,60.18,54.2,57.49,8.333333333333334,1,1,0,0,8,10,3,1,399.5,2064990,1519536.5,259785.67,0,4683.3979 -932,1141,2065,2064,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.0025234,7.9559803,26,3,52.294289,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.284112,8.0098658,54.2,57.49,48.28,60.18,8.333333333333334,1,1,0,0,2,10,3,1,399.5,2064990,1519536.5,259785.67,0,4683.3979 -933,1142,2066,2067,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.5265017,6.1795354,43,2,71.809464,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,4.4136705,6.6098194,35.03,43.84,48.7,56.22,3.333333333333333,1,1,0,0,0,4,3,1,229,2008013,1442120.1,349728.88,0,2512.6169 -933,1142,2067,2066,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7104301,7.7883358,43,-2,32.047451,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.4893439,7.8780899,48.7,56.22,35.03,43.84,8.333333333333334,1,1,0,0,4,4,3,1,229,2008013,1442120.1,349728.88,0,2512.6169 -934,1143,2068,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8063235,6.5762639,0,0,-974.31757,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5515704,53.39,50.01,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,492,142158.77,185563.95,96223.148,0,685.77039 -934,1144,2069,-9,2068,-9,1,1,41,0,0,0,2,2,-9,0,4,8.6308908,8.8724804,0,0,0,-1005.0286,0,2,-9,2019,9,0,37,38,1,1,0,19.405197,19.405197,0,0,0,0,0,1,1,0,4.2810268,0,52,55,-9,-9,7,1,1,0,0,1,2,5,1,423,-281658.41,51645.199,0,0,2091.2849 -935,1145,2070,2071,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,32,-3,137.50237,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,57.57,49.69,8.333333333333334,1,1,0,0,9,9,2,1,1151,445525.31,209187.13,304470.75,0,1135.3052 -935,1145,2071,2070,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.3894315,6.3526692,32,3,89.5541,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7310295,5.8667359,57.57,49.69,57.09,46.7,10,1,1,0,0,5,9,2,1,1151,445525.31,209187.13,304470.75,0,1135.3052 -936,1146,2072,2073,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.6280661,9.3416901,0,4,5,-127.94762,0,2,2,2019,17,6,30,0,1,6,0,55.598465,55.598465,0,0,0,0,0,0,0,0,.69095951,0,47.15,55.39,46.63,59.72,6.666666666666667,1,1,0,0,7,11,5,1,480,415011.5,359550.22,180553.34,0,6417.2607 -936,1146,2073,2072,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,0,0,0,4,-5,-91.974823,0,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,.73714638,0,46.63,59.72,47.15,55.39,8.333333333333334,1,1,0,0,2,11,5,1,480,415011.5,359550.22,180553.34,0,6417.2607 -937,1147,2074,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.5296631,8.8743525,0,0,0,-999.12549,0,3,3,2019,12,0,38,41,1,0,0,16.339014,16.339014,0,0,0,0,0,0,0,0,2.9217453,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,829,294020.06,3765.1694,436509.81,98045.078,2097.6338 -937,1148,2075,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.3141556,8.5688295,0,0,0,-934.01068,0,-9,3,2019,8,0,45,38,1,0,0,10.751954,10.751954,0,0,0,0,0,0,0,0,1.1787667,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,999,810218.81,121999.34,367410.03,0,2230.6182 -938,1149,2076,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.0616765,5.6163731,0,0,-1028.9973,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.732739,6.1377568,43.25,51.98,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,271,935671.75,239711.69,341140.22,0,1053.4932 -939,1150,2077,2078,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.2896729,8.1111746,0,36,-4,41.888405,0,2,2,2019,6,0,37,37,1,0,0,13.418136,13.418136,0,0,0,0,0,0,0,0,0,0,41.06,62.04,48.67,56.74,5,1,1,0,0,10,5,5,1,692.5,492556.41,217798.38,229869.75,0,3762.2896 -939,1150,2078,2077,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7345915,8.1163311,0,36,4,-185.05708,0,3,3,2019,5,0,55,40,1,0,0,11.80712,11.80712,0,0,0,0,0,0,0,0,0,0,48.67,56.74,41.06,62.04,8.333333333333334,1,1,0,0,10,5,5,1,692.5,492556.41,217798.38,229869.75,0,3762.2896 -940,1151,2079,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.8696451,9.2101755,5.920301,0,0,-984.33063,0,3,-9,2019,27,11,38,39,1,11,0,19.884113,19.884113,0,0,0,0,7,1,1,0,6.5687547,0,28.57,61.36,-9,-9,5,3,4,0,0,7,6,5,1,880.5,521254.94,499532.13,183166.97,95329.297,3605.8452 -940,1151,2080,-9,2079,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.2753,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,6,5,1,880.5,521254.94,499532.13,183166.97,95329.297,3605.8452 -941,1152,2081,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-951.3988,0,2,2,2019,23,11,0,5,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.35,56.6,-9,-9,5,1,1,0,0,8,5,1,1,170,223860.05,0,0,0,-649.34741 -942,1153,2082,-9,2083,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.08759,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1682,120285.23,90885.984,134668.64,69524.18,2555.5083 -942,1153,2083,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.2872972,8.5201263,5.8813477,0,0,-987.42078,0,3,3,2019,4,0,25,10,1,0,0,19.29847,19.29847,0,0,0,0,0,1,1,0,6.2985048,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1682,120285.23,90885.984,134668.64,69524.18,2555.5083 -943,1154,2084,2087,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.4347229,9.3397999,0,10,5,-37.597866,0,-9,-9,2019,11,0,59,-9,1,2,0,25.252628,25.252628,0,0,0,0,0,0,0,0,4.2988577,0,49,50,28.26,61.5,7,4,1,0,0,1,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 -943,1154,2085,-9,2087,2084,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8097,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 -943,1154,2086,-9,2087,2084,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.5304,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 -943,1154,2087,2084,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,7.629014,7.494607,0,10,-5,-65.335396,0,3,1,2019,27,10,16,0,1,10,0,16.175543,16.175543,0,0,0,0,0,0,0,0,7.1918812,0,28.26,61.5,49,50,6.666666666666667,1,1,0,0,9,8,5,1,510,3269613.8,2256101.5,909965.75,0,5724.9238 -944,1155,2088,-9,-9,-9,1,0,47,0,2,0,3,3,-9,1,1,0,0,0,0,0,-913.08252,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.64,30.24,-9,-9,5,1,1,0,0,0,9,1,0,831,453635,0,194224.83,124913.7,1926.245 -944,1155,2089,-9,2088,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.33118,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,831,453635,0,194224.83,124913.7,1926.245 -944,1155,2090,-9,2088,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.2585,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,831,453635,0,194224.83,124913.7,1926.245 -945,1156,2091,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.8343759,6.6743155,0,0,-930.46301,0,1,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1241672,6.8730669,59.95,25.68,-9,-9,8.333333333333334,4,2,0,0,0,6,2,1,859,741751.19,231699.58,322513,0,1609.5282 -946,1157,2092,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1089.2313,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,29.67,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,1142,492129.28,0,103999.41,0,1155.4363 -946,1158,2093,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,8.1389666,8.1897774,7.6214609,0,0,-1103.7888,0,-9,-9,2019,6,0,24,18,1,0,0,14.824415,14.824415,0,0,0,0,2,1,1,0,0,7.2594566,50.13,35.42,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,188,1034227.8,743402.69,312991.66,0,2566.8711 -947,1159,2094,2097,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,8.2688541,8.3054714,0,7,0,17.500647,0,3,3,2019,6,0,40,40,1,0,0,11.633353,11.633353,0,0,0,0,0,1,1,0,0,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,8,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 -947,1159,2095,-9,2097,2094,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.4641,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 -947,1159,2096,-9,2097,2094,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.79144,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 -947,1159,2097,2094,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.541256,8.1324558,0,7,0,160.13799,0,-9,-9,2019,7,0,27,26,1,0,0,16.54233,16.54233,0,0,0,0,0,1,1,0,3.9012895,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,8,2,4,1,564.25,479735.28,473398.91,249819.56,87388.422,3340.0056 -948,1160,2098,-9,2100,2099,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1183.1078,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,687.66669,1076509.6,223897.69,709677.31,210130.83,4786.7998 -948,1160,2099,2100,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8862991,8.7881718,0,7,0,-51.722382,-9,-9,-9,2019,9,0,40,0,1,1,0,18.694998,18.694998,0,0,0,0,0,1,1,0,0,0,52,55,57.33,53.46,8,1,1,0,0,1,7,5,1,687.66669,1076509.6,223897.69,709677.31,210130.83,4786.7998 -948,1160,2100,2099,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.6199064,8.7339592,0,7,0,-40.399525,0,1,1,2019,10,0,38,35,1,0,0,15.466469,15.466469,0,0,0,0,2,1,1,0,0,0,57.33,53.46,52,55,8.333333333333334,1,1,0,0,8,7,5,1,687.66669,1076509.6,223897.69,709677.31,210130.83,4786.7998 -949,1161,2101,-9,2104,2103,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.71924,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 -949,1161,2102,-9,2104,2103,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.78284,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 -949,1161,2103,2104,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,7.7962437,7.8174486,0,2,-6,109.611,0,2,2,2019,19,6,28,48,1,6,0,8.8182688,8.8182688,0,0,0,0,0,1,1,0,0,0,42.86,55.92,27.62,57.72,1.666666666666667,1,1,0,1,6,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 -949,1161,2104,2103,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.934659,8.2434025,0,2,6,-5.2369227,0,2,2,2019,21,8,50,20,1,8,0,8.5940275,8.5940275,0,0,0,0,0,1,1,0,0,0,27.62,57.72,42.86,55.92,3.333333333333333,1,1,0,1,6,9,4,1,643.75,455263.63,199441.33,185255.92,110000.38,2529.7795 -950,1162,2105,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.8734403,6.7750559,0,0,-1174.84,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.742517,53.39,50.89,-9,-9,10,1,1,0,0,4,7,2,1,358,339611.56,97610.406,390100.31,0,1787.5243 -951,1163,2106,2107,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.3420048,8.6781797,0,34,0,94.87307,0,2,2,2019,14,2,48,45,1,2,0,9.5533304,9.5533304,0,0,0,0,0,1,1,0,.33357835,0,36.09,37.91,57.16,56.15,6.666666666666667,1,1,0,0,8,5,5,1,819.5,1252039,954636.38,237156.09,0,4673.0957 -951,1163,2107,2106,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.1746588,9.6219959,0,34,0,-74.938622,0,2,1,2019,8,0,43,40,1,0,0,29.670425,29.670425,0,0,0,0,0,1,1,0,5.3406506,0,57.16,56.15,36.09,37.91,8.333333333333334,1,1,0,0,9,5,5,1,819.5,1252039,954636.38,237156.09,0,4673.0957 -951,1164,2108,-9,2106,2107,1,1,30,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1001.121,0,1,1,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,1,0,4,5,1,1,261,0,0,0,0,802.27875 -952,1165,2109,-9,2112,2111,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.958,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 -952,1165,2110,-9,2112,2111,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.24432,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 -952,1165,2111,2112,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,7.0881319,6.5862889,0,10,13,-46.63023,0,-9,-9,2019,7,0,70,70,1,0,0,1.8768628,1.8768628,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.98,59.35,8.333333333333334,1,1,0,0,13,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 -952,1165,2112,2111,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.6414814,8.4740524,0,10,-13,13.958694,0,2,2,2019,12,0,45,45,1,0,0,14.201377,14.201377,0,0,0,0,0,1,1,0,0,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,11,4,3,0,632.25,241065.27,23487.816,87178.359,26062.322,2865.166 -953,1166,2113,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8634148,7.6564531,0,0,0,-1145.472,0,2,2,2019,11,1,40,42,1,1,0,6.9874482,6.9874482,0,0,0,0,14.5,0,0,0,0,0,55.91,39.23,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,316,164019.05,0,0,0,431.90204 -954,1167,2114,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.6935205,7.9149532,0,0,0,-1133.2013,0,-9,-9,2019,20,9,33,35,1,9,0,8.242382,8.242382,0,0,0,0,0,1,0,1,1.394148,0,57.29,22.49,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,636,127146.16,0,176600.67,0,1138.8418 -954,1168,2115,-9,2114,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.2607,0,3,-9,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,51.41,56.15,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,587,-262957.25,0,0,0,283.44458 -955,1169,2116,2117,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.8883586,7.927494,0,6,4,56.526337,0,2,2,2019,6,0,37,0,1,0,0,10.251769,10.251769,0,0,0,0,0,1,1,0,1.9244223,0,48.87,58.55,46.41,53.09,1.666666666666667,1,1,0,0,3,11,4,0,541,320841.19,176076.89,190738.58,86175.258,2549.873 -955,1169,2117,2116,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.7057371,7.7740378,0,6,-4,76.19223,0,3,-9,2019,15,4,36,37,1,4,0,7.4366403,7.4366403,0,0,0,0,0,1,1,0,0,0,46.41,53.09,48.87,58.55,6.666666666666667,4,2,0,0,5,11,4,0,541,320841.19,176076.89,190738.58,86175.258,2549.873 -955,1169,2118,-9,2117,2116,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1038.3436,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,4,0,541,320841.19,176076.89,190738.58,86175.258,2549.873 -956,1170,2119,2120,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,5.5030689,5.0251455,51,3,68.946465,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8408041,5.5705547,57.16,56.15,51.64,37.25,8.333333333333334,1,1,0,0,6,12,2,1,456.5,-79164.125,187609.81,0,0,1972.2264 -956,1170,2120,2119,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,51,-3,-106.35823,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.330759,0,51.64,37.25,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,456.5,-79164.125,187609.81,0,0,1972.2264 -957,1171,2121,2122,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.2669749,7.317627,38,0,111.94229,0,2,2,2019,8,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,6.8808646,7.3106351,58.15,52.91,52.24,50.75,8.333333333333334,1,1,0,0,9,12,4,1,696,746791.38,150868.88,173380.16,0,3351.5288 -957,1171,2122,2121,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.4771214,8.2867498,5.2381716,38,0,-106.07992,0,3,3,2019,12,0,40,40,1,0,0,13.189497,13.189497,0,0,0,0,0,0,0,0,3.4651198,5.821465,52.24,50.75,58.15,52.91,8.333333333333334,1,1,0,0,11,12,4,1,696,746791.38,150868.88,173380.16,0,3351.5288 -958,1172,2123,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.363966,8.3342514,0,0,0,-923.0174,0,2,2,2019,11,0,45,45,1,0,0,9.6327124,9.6327124,0,0,0,0,0,0,0,0,0,0,51.51,42.8,-9,-9,5,1,1,0,0,9,9,4,0,229,-27491.604,-104083.2,325724.31,158083.53,1520.7272 -959,1173,2124,2125,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.4487195,6.2895603,61,1,53.627937,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3342795,57.09,46.7,52,45,0,1,1,0,0,0,4,2,1,1508,846996.38,67049.188,315175.09,0,1566.9436 -959,1173,2125,2124,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4371247,5.2486205,61,-1,-69.645676,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.1807479,5.108707,52,45,57.09,46.7,8,1,1,0,0,0,4,2,1,1508,846996.38,67049.188,315175.09,0,1566.9436 -960,1174,2126,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,7.455225,7.1116977,0,0,0,-1133.1202,0,2,1,2019,24,11,24,24,1,11,0,6.4175358,6.4175358,0,0,0,0,74.5,1,0,1,0,0,35.06,23.19,-9,-9,6.666666666666667,1,1,0,1,11,9,3,1,359,-10314.848,22913.381,213281.44,0,641.37994 -961,1175,2127,2128,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.9727707,8.9372673,0,1,0,96.252533,-9,-9,-9,2019,10,0,40,0,1,1,0,27.737144,27.737144,0,0,0,0,0,1,1,0,0,0,52,53,57.06,57.76,8,4,1,0,0,1,9,5,1,449.5,2602683,1832208.3,479613.69,75844.109,11228.491 -961,1175,2128,2127,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.0378122,9.0099478,0,1,0,-75.785797,0,-9,-9,2019,5,0,32,60,1,0,0,35.420292,35.420292,0,0,0,0,0,1,1,0,8.9490099,0,57.06,57.76,52,53,10,1,1,0,0,9,9,5,1,449.5,2602683,1832208.3,479613.69,75844.109,11228.491 -962,1176,2129,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.378603,8.2191944,6.7268023,0,0,-955.84424,0,3,3,2019,6,0,35,35,1,0,0,13.780753,13.780753,0,0,0,0,0,1,1,0,0,6.5418358,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,121,232452.53,-57493.5,0,0,1773.0112 -962,1177,2130,-9,2129,-9,1,1,22,0,0,0,2,2,1,1,2,0,0,0,0,0,-895.25989,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.57,15.79,-9,-9,5,1,1,0,0,2,13,1,1,350,-70120.328,0,0,0,536.52643 -963,1178,2131,2132,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,4.7970676,5.0692091,55,6,3.2084131,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,36.654587,0,0,1,1,0,4.0950332,4.7935944,50.53,19.16,35.43,42.24,6.666666666666667,1,1,0,0,0,6,2,1,771.5,0,0,0,0,1433.3228 -963,1178,2132,2131,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,55,-6,70.617332,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,3.3917866,0,35.43,42.24,50.53,19.16,3.333333333333333,1,1,0,0,0,6,2,1,771.5,0,0,0,0,1433.3228 -964,1179,2133,2134,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,30,-3,-132.84836,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.47,32.2,50.34,21.74,6.666666666666667,2,3,0,0,0,6,3,0,362,478077.63,55302.898,129849.09,0,1394.788 -964,1179,2134,2133,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.8680444,7.9813046,0,30,3,-12.037193,0,2,2,2019,9,0,38,38,1,0,0,9.1915636,9.1915636,0,0,0,0,0,1,1,0,0,0,50.34,21.74,57.47,32.2,6.666666666666667,2,3,0,0,9,6,3,0,362,478077.63,55302.898,129849.09,0,1394.788 -964,1180,2135,-9,2133,2134,1,0,26,0,0,0,1,1,-9,0,4,8.3303852,8.2555971,0,0,0,-1098.1521,0,2,2,2019,10,0,40,39,1,0,1,12.184824,12.184824,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,6.666666666666667,2,3,0,0,5,6,4,0,393,-363776.03,98406.398,0,0,1411.4524 -965,1181,2136,-9,2138,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8708,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,1227.6666,-121518.16,0,0,0,1942.3405 -965,1181,2137,-9,2138,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.2992,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,1.0619427,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,1227.6666,-121518.16,0,0,0,1942.3405 -965,1181,2138,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9274201,7.2588282,4.0642796,0,0,-990.26685,0,2,2,2019,9,3,18,18,1,3,0,6.805274,6.805274,0,0,0,0,0,1,1,0,4.1351981,0,54.61,50.48,-9,-9,8.333333333333334,4,2,0,0,11,5,2,0,1227.6666,-121518.16,0,0,0,1942.3405 -966,1182,2139,-9,2141,2142,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.7723,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 -966,1182,2140,-9,2141,2142,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.62299,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 -966,1182,2141,2142,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,5.3334975,5.3768044,0,7,-4,-45.151588,0,2,2,2019,14,2,6,0,1,2,0,3.278492,3.278492,0,0,0,0,0,1,1,0,0,0,38.02,58.85,51,56,3.333333333333333,1,1,0,0,6,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 -966,1182,2142,2141,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.4500389,8.5131559,0,7,4,174.22693,0,3,3,2019,10,0,36,36,1,1,0,23.298258,23.298258,0,0,0,0,0,1,1,0,4.397119,0,51,56,38.02,58.85,7,1,1,0,0,1,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 -966,1182,2143,-9,2141,2142,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1207.4636,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1066,97684.383,102523.88,0,0,2948.5698 -967,1183,2144,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.826858,7.7865243,0,0,0,-1040.9656,0,3,3,2019,8,1,45,40,1,1,0,7.0416303,7.0416303,0,0,0,0,0,0,0,0,0,0,42.64,42.64,-9,-9,6.666666666666667,3,4,0,1,9,9,4,1,2396,-173216.7,0,0,0,1408.5171 -968,1184,2145,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.0340543,6.2764831,0,0,-1077.5059,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.5283303,6.2738867,39.61,36.87,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1182,462945.22,85808.203,243559.95,24824.4,1299.2826 -969,1185,2146,2147,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,6,5,119.36974,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,35.94,36.87,44.69,25.1,6.666666666666667,1,1,0,0,0,4,4,1,322,211788.7,147646.55,340086.59,151507.69,1624.7391 -969,1185,2147,2146,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.4133396,8.046463,0,6,-5,-20.221113,0,3,3,2019,27,10,37,37,1,10,0,17.589699,17.589699,0,0,0,0,71.5,0,0,0,0,0,44.69,25.1,35.94,36.87,3.333333333333333,1,1,0,0,6,4,4,1,322,211788.7,147646.55,340086.59,151507.69,1624.7391 -970,1186,2148,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.2165089,7.4389234,0,0,-1060.5273,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.96141738,7.3252578,59.99,27.51,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1811,67426.477,64376.586,0,0,1230.6149 -970,1187,2149,-9,2148,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2879515,8.4106836,0,0,0,-1082.4929,0,3,-9,2019,20,7,57,40,1,7,0,6.999867,6.999867,0,0,0,0,27,1,1,0,0,0,34.56,62.74,-9,-9,0,1,1,0,0,2,2,4,1,235,399631.03,260828.63,102720.21,65217.863,1566.3029 -971,1188,2150,2151,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.0086155,7.806663,0,20,0,13.112919,0,-9,-9,2019,20,7,32,27,1,7,0,10.466481,10.466481,0,0,0,0,0,1,1,0,0,0,28.22,61.53,42.96,53.21,5,1,1,0,1,12,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 -971,1188,2151,2150,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.6929874,8.606452,0,20,0,8.9189863,0,3,3,2019,12,1,61,45,1,1,0,9.3247147,9.3247147,0,0,0,0,0,1,1,0,0,0,42.96,53.21,28.22,61.53,8.333333333333334,1,1,0,0,12,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 -971,1188,2152,-9,2150,2151,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-838.22015,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 -971,1188,2153,-9,2150,2151,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1100.1829,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 -971,1188,2154,-9,2150,2151,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.81195,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,1063.6,130526.41,129615.27,91351.445,61173.898,3901.5654 -971,1189,2155,-9,2150,2151,1,0,18,0,3,1,2,0,0,0,4,0,7.2540851,7.2822542,0,0,-1053.2775,-9,1,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,6.989974,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,1,3,0,353,-225574,-72387.281,0,0,1874.4973 -972,1190,2156,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,9.4996557,9.503418,0,0,0,-847.22479,0,1,2,2019,7,0,50,50,1,0,0,29.024706,29.024706,0,0,0,0,0,0,0,0,.46696913,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,2180,621831.75,87021.008,399353.13,155624.86,4156.4136 -973,1191,2157,2158,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.9912844,8.6813946,43,0,-51.645229,0,3,3,2019,9,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1.2117789,8.1944771,52,54.51,55.79,52.62,8.333333333333334,1,1,0,0,12,5,4,1,361,1684070,1232497.3,273916.97,0,2288.7959 -973,1191,2158,2157,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,4.1082225,4.6177793,43,0,40.32597,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,2.6962397,4.6246653,55.79,52.62,52,54.51,8.333333333333334,1,1,0,0,5,5,4,1,361,1684070,1232497.3,273916.97,0,2288.7959 -974,1192,2159,2160,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-72.586311,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0925908,0,55.44,54.26,55.2,49.4,10,1,1,0,0,5,11,3,1,758.5,821177.19,559682.75,150799.67,0,3441.3071 -974,1192,2160,2159,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.2653017,7.9916201,47,2,51.465271,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3140864,8.1838217,55.2,49.4,55.44,54.26,8.333333333333334,1,1,0,0,0,11,3,1,758.5,821177.19,559682.75,150799.67,0,3441.3071 -975,1193,2161,-9,2163,2162,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.3915,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 -975,1193,2162,2163,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,7.5709085,7.7365756,0,21,6,81.586037,0,3,3,2019,7,0,30,30,1,0,0,8.6662321,8.6662321,0,0,0,0,0,1,1,0,0,0,54.69,45.02,47.5,49.74,6.666666666666667,2,3,0,0,12,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 -975,1193,2163,2162,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.8655472,8.9359894,0,21,-6,187.57941,0,2,2,2019,9,0,44,46,1,0,0,19.119055,19.119055,0,0,0,0,2,1,1,0,2.3034811,0,47.5,49.74,54.69,45.02,6.666666666666667,2,3,0,0,12,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 -975,1193,2164,-9,2163,2162,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-900.44598,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.5553614,0,39.16,59.23,-9,-9,6.666666666666667,2,3,0,0,0,2,4,1,1211.75,217030.3,274271.03,169453.11,83392.195,3731.7854 -976,1194,2165,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.8601012,6.7235346,0,0,-968.65668,0,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,.58096731,0,0,1,1,0,.37654713,7.0349364,35.23,47.36,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,538,626850.94,453279.06,107261.27,0,2201.4507 -977,1195,2166,2167,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.3499908,8.4324703,51,0,143.89456,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,.51240993,8.4080801,32.66,40.53,37.96,42.07,3.333333333333333,1,1,0,0,0,10,4,1,1542.5,3446611.5,791810.5,666687.38,0,4548.1592 -977,1195,2167,2166,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.8487835,7.6975555,51,0,-99.484215,0,2,2,2019,20,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,2.62429,7.586596,37.96,42.07,32.66,40.53,5,1,1,0,0,0,10,4,1,1542.5,3446611.5,791810.5,666687.38,0,4548.1592 -978,1196,2168,2169,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1016474,7.1986132,0,28,-3,92.010681,0,-9,2,2019,9,0,13,14,1,0,0,8.3935804,8.3935804,0,0,0,0,0,0,0,0,1.5195163,0,52,54.51,46.63,59.72,6.666666666666667,1,1,0,0,10,7,5,1,399.5,1082558.8,561955.25,763683.88,0,2992.3857 -978,1196,2169,2168,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.7574854,8.5072479,0,28,3,131.25487,0,-9,3,2019,12,0,40,40,1,0,0,17.207188,17.207188,0,0,0,0,0,0,0,0,4.0370502,0,46.63,59.72,52,54.51,5,1,1,0,0,11,7,5,1,399.5,1082558.8,561955.25,763683.88,0,2992.3857 -979,1197,2170,2171,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,4,-11,-52.027412,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.67,24.87,59.74,45.34,8.333333333333334,1,1,0,0,10,11,3,1,169,907659,811625.25,186582.47,0,1507.2825 -979,1197,2171,2170,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.1145391,8.3110018,4,11,172.94107,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.239567,8.5995216,59.74,45.34,63.67,24.87,8.333333333333334,1,1,0,0,11,11,3,1,169,907659,811625.25,186582.47,0,1507.2825 -980,1198,2172,2173,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.0587149,7.9954414,47,4,-1.5505797,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,7.0062966,8.2459164,41.86,41.35,48.28,53.42,3.333333333333333,1,1,0,0,2,9,3,1,1237.5,836626.38,731997.13,324246.25,0,3435.9639 -980,1198,2173,2172,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9974771,5.4253063,7,-4,1.0987395,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0622702,48.28,53.42,41.86,41.35,6.666666666666667,1,1,0,0,0,9,3,1,1237.5,836626.38,731997.13,324246.25,0,3435.9639 -981,1199,2174,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.3101058,7.1704073,0,0,-968.72351,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,27.004364,0,0,0,1,1,0,4.144999,7.0874257,65.71000000000001,30.51,-9,-9,10,1,1,0,0,0,5,3,1,438,230400.89,73815.492,116406.9,0,1325.3403 -982,1200,2175,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.8741941,8.3534374,0,0,-894.36707,0,2,1,2019,15,5,0,0,4,5,0,0,0,0,0,0,1.3398799,0,1,1,0,0,8.3713112,40.05,56,-9,-9,0,1,1,0,0,2,8,4,1,163,1185673.5,539367.31,515671.25,0,2575.1497 -983,1201,2176,2178,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.0798826,9.1298962,0,7,2,-79.492767,0,3,2,2019,9,1,50,57,1,1,0,17.873312,17.873312,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,904.33331,461140.38,314237.44,74527.188,0,5653.6631 -983,1201,2177,-9,2178,2176,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,5,1,904.33331,461140.38,314237.44,74527.188,0,5653.6631 -983,1201,2178,2176,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.9673338,8.6446924,0,7,-2,-222.68147,0,2,2,2019,7,0,37,40,1,0,0,23.845905,23.845905,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,8,11,5,1,904.33331,461140.38,314237.44,74527.188,0,5653.6631 -984,1202,2179,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.6466532,6.7588468,0,0,-1107.6365,0,2,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6890631,52,44,-9,-9,8,1,1,0,0,0,6,2,0,533,82661.023,-16043.978,213485.2,0,1585.423 -985,1203,2180,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,4,0,5.4089575,5.8095365,0,0,-1071.4756,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0972075,5.2457008,60.12,54.8,-9,-9,10,1,1,0,0,0,6,2,1,994,386587.22,106718.89,0,0,215.02997 -986,1204,2181,2182,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,29,28,-35.820389,0,2,3,2019,16,4,0,0,4,4,0,0,0,1,126.08424,128.43417,1143.5941,120,1,1,0,0,0,36.61,17.55,44.91,28.02,3.333333333333333,1,1,0,1,0,2,2,0,1827,280233.97,56177.75,88861.703,0,2708.9626 -986,1204,2182,2181,-9,-9,1,1,50,0,0,0,3,3,-9,1,3,6.7806363,6.42101,0,27,-28,200.65459,0,2,2,2019,12,1,34,0,1,1,0,1.6191261,1.6191261,0,0,0,0,92,1,1,0,0,0,44.91,28.02,36.61,17.55,6.666666666666667,1,1,0,1,2,2,2,0,1827,280233.97,56177.75,88861.703,0,2708.9626 -987,1205,2183,2184,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,7,2,52.284302,0,-9,-9,2019,4,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.39,39.56,58,37.34,10,1,1,0,0,10,5,2,1,1140,291551.72,128784.77,73318.867,0,1815.5918 -987,1205,2184,2183,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.2193971,6.3769617,7,-2,54.874825,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6329893,6.1422877,58,37.34,63.39,39.56,8.333333333333334,1,1,0,0,11,5,2,1,1140,291551.72,128784.77,73318.867,0,1815.5918 -988,1206,2185,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.6338625,9.7651711,0,0,0,-1062.9659,0,3,3,2019,6,0,40,40,1,0,0,38.681988,38.681988,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,10,8,5,0,642,920357.06,853180.88,222979.89,0,3882.0273 -989,1207,2186,2187,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,51,0,-55.775623,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.2113881,0,55.99,39.1,38.24,31.29,8.333333333333334,1,1,0,0,0,5,2,1,381,878900.88,344921.81,203444.25,0,1888.0986 -989,1207,2187,2186,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.3088236,7.4852037,51,0,-28.590553,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.1023455,7.1918354,38.24,31.29,55.99,39.1,5,1,1,0,0,4,5,2,1,381,878900.88,344921.81,203444.25,0,1888.0986 -990,1208,2188,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1018.7794,1,2,2,2019,10,2,0,36,2,2,0,0,0,0,0,0,0,0,0,0,0,.21293932,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,1,8,8,1,0,215,95569.859,0,0,0,-24.231628 -991,1209,2189,2190,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.032722,7.0962315,40,3,60.942825,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,1.6699001,7.1772361,25.36178,0,1,1,0,0,7.0367718,56.22,16.34,44.23,55.04,8.333333333333334,1,1,0,0,0,6,2,1,1517.5,972648.25,574532.25,172149.8,0,1550.2595 -991,1209,2190,2189,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,40,-3,-40.062317,0,-9,2,2019,11,0,0,24,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,44.23,55.04,56.22,16.34,8.333333333333334,1,1,0,0,11,6,2,1,1517.5,972648.25,574532.25,172149.8,0,1550.2595 -992,1210,2191,2192,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.5013714,7.3371615,0,43,-5,-44.884827,0,3,3,2019,11,0,12,20,1,0,0,13.522654,13.522654,0,0,0,0,0,1,1,0,0,0,52.16,43.45,60.05,45.35,8.333333333333334,1,1,0,0,11,2,3,1,327,346250.13,277249.66,204588.75,0,2701.396 -992,1210,2192,2191,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.6691489,7.5388522,43,5,19.850695,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.205071,60.05,45.35,52.16,43.45,8.333333333333334,1,1,0,0,10,2,3,1,327,346250.13,277249.66,204588.75,0,2701.396 -993,1211,2193,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,8.2678022,8.1966915,0,0,0,-990.85498,0,3,3,2019,7,0,50,60,1,0,0,10.137184,10.137184,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,1.666666666666667,1,1,0,0,9,2,4,0,453,181883.39,188183.91,108967.62,49204.605,1823.4149 -993,1212,2194,-9,2193,-9,1,0,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1088.4427,-9,1,1,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48.46,43.93,-9,-9,6.666666666666667,1,1,1,0,0,2,1,0,482,290893.03,0,0,0,0 -994,1213,2195,2197,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,6.023181,6.1759009,0,10,0,-44.809875,0,2,2,2019,11,0,6,6,1,0,0,7.7485766,7.7485766,0,0,0,0,7,1,1,0,0,0,49.04,55.86,47.46,39.13,8.333333333333334,1,1,0,0,8,9,3,1,621,-143566.52,53670.035,77630.203,42899.895,2165.7358 -994,1213,2196,-9,2195,2197,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,621,-143566.52,53670.035,77630.203,42899.895,2165.7358 -994,1213,2197,2195,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.274395,8.4099264,0,10,0,44.239712,0,1,1,2019,7,0,37,42,1,0,0,13.200236,13.200236,0,0,0,0,7,1,1,0,3.6676729,0,47.46,39.13,49.04,55.86,5,1,1,0,0,10,9,3,1,621,-143566.52,53670.035,77630.203,42899.895,2165.7358 -995,1214,2198,2199,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.8504953,5.9744148,1,-1,-96.201378,-9,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1201854,56.04,51.3,42.36,56.12,8.333333333333334,1,1,0,0,0,6,2,1,392,870926.88,303301.53,175793.38,0,2000.8318 -995,1214,2199,2198,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.0382743,7.0137315,1,1,-180.05962,-9,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9543676,42.36,56.12,56.04,51.3,8.333333333333334,1,1,0,0,2,6,2,1,392,870926.88,303301.53,175793.38,0,2000.8318 -996,1215,2200,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,9.160964,8.9888897,0,0,0,-972.01831,0,2,1,2019,14,2,55,56,1,2,0,19.298929,19.298929,0,0,0,0,2,0,0,0,6.4135509,0,38.82,63.21,-9,-9,6.666666666666667,1,1,0,0,9,8,5,0,147,301233.22,0,356526.06,12525.896,4455.623 -996,1216,2201,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,8.7866659,8.7259769,0,0,0,-953.16638,-9,-9,-9,2019,8,0,48,0,1,0,0,17.606535,17.606535,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,5,1,1,0,0,9,8,5,0,785,485120.53,201768.11,0,0,2184.3074 -997,1217,2202,2203,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.8235521,8.7679949,0,6,-10,24.209106,0,3,2,2019,8,1,50,46,1,1,0,16.245548,16.245548,0,0,0,0,0,0,0,0,.32922375,0,49.04,55.86,22.65,64.05,6.666666666666667,1,1,0,0,9,11,5,1,294.5,1628011.3,1488266.4,460979.5,83364.25,3025.1064 -997,1217,2203,2202,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.4284821,7.9745045,6.3110714,6,10,204.08354,0,2,2,2019,24,12,34,50,1,12,0,5.6447258,5.6447258,0,0,0,0,0,0,0,0,5.2045779,6.6770859,22.65,64.05,49.04,55.86,3.333333333333333,1,1,0,0,9,11,5,1,294.5,1628011.3,1488266.4,460979.5,83364.25,3025.1064 -998,1218,2204,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,5.4663391,5.2513556,0,0,-1043.2911,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3675246,5.4476604,52.65,51.64,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,342,-328774.84,-50116.547,0,0,882.80597 -999,1219,2205,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1132.4779,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,3.2432458,0,23.194323,0,1,1,0,0,0,32.71,40.62,-9,-9,3.333333333333333,2,3,0,1,5,8,1,0,589,-62841.379,0,167115.19,0,1063.8802 -1000,1220,2206,2208,-9,-9,1,0,39,0,1,0,3,3,-9,1,2,0,0,0,5,-1,-30.983688,0,3,3,2019,15,0,0,0,3,4,0,0,0,0,0,0,0,71.5,1,0,1,0,0,33.84,51.48,50,56,8.333333333333334,1,1,0,0,0,4,2,0,778,-54306.656,144445.39,77438.883,31748.721,1617.4235 -1000,1220,2207,-9,2206,2208,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.74591,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,0,778,-54306.656,144445.39,77438.883,31748.721,1617.4235 -1000,1220,2208,2206,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,7.4873595,7.4817643,0,5,1,9.7809381,0,2,2,2019,10,0,35,20,1,1,0,5.0059643,5.0059643,0,0,0,0,0,1,0,1,0,0,50,56,33.84,51.48,7,1,1,0,0,1,4,2,0,778,-54306.656,144445.39,77438.883,31748.721,1617.4235 -1000,1221,2209,-9,2206,2208,1,1,20,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1041.9613,-9,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,47,59,-9,-9,7,1,1,0,0,0,4,1,0,472,0,0,0,0,663.41541 -1001,1222,2210,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,7.3744969,7.4399586,0,0,-1045.4727,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.5364513,49.64,46.64,-9,-9,6.666666666666667,1,1,0,0,9,7,3,1,337,-226796.48,0,0,0,955.99823 -1001,1223,2211,-9,2210,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-906.32562,-9,1,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,56.66,-9,-9,3.333333333333333,1,1,1,1,9,7,1,1,734,-118140.66,0,0,0,0 -1002,1224,2212,2213,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,6,-1,158.96962,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9772744,0,60.02,56.42,62.49,55.09,10,1,1,0,0,0,7,2,1,831,424359.25,211202.34,158373.19,0,1160.9529 -1002,1224,2213,2212,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.9567671,7.3787789,6,1,186.19353,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1134639,6.7617393,62.49,55.09,60.02,56.42,10,1,1,0,0,7,7,2,1,831,424359.25,211202.34,158373.19,0,1160.9529 -1003,1225,2214,2216,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,9.0396824,8.9258661,0,10,7,150.02232,0,-9,-9,2019,11,0,44,46,1,0,0,24.872356,24.872356,0,0,0,0,0,0,0,0,.8983978,0,44.38,58.1,48.87,58.55,8.333333333333334,1,1,0,0,11,5,5,1,554.66669,651791.81,402836.31,248593.78,244711.83,17699.061 -1003,1225,2215,-9,2216,2214,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1046.6934,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,1.8995528,0,51.95,49.2,-9,-9,10,1,1,0,0,0,5,5,1,554.66669,651791.81,402836.31,248593.78,244711.83,17699.061 -1003,1225,2216,2214,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,9.8931265,9.6154795,0,28,-7,-42.670395,0,2,2,2019,10,0,46,43,1,0,0,38.476276,38.476276,0,0,0,0,7,0,0,0,3.6095512,0,48.87,58.55,44.38,58.1,6.666666666666667,1,1,0,0,11,5,5,1,554.66669,651791.81,402836.31,248593.78,244711.83,17699.061 -1003,1226,2217,-9,2216,2214,1,1,19,0,1,1,2,0,0,0,4,0,6.6770911,6.4008746,0,0,-878.68237,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,7.0137978,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,377,-304717.94,20452.383,0,0,707.3537 -1004,1227,2218,2219,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.8023615,7.5592332,0,8,0,37.578705,0,3,3,2019,7,0,39,40,1,0,0,6.1102796,6.1102796,0,0,0,0,0,0,0,0,0,0,55.96,49.93,43.65,58.28,8.333333333333334,1,1,0,0,8,5,4,0,217,253946.13,223612.11,0,0,1950.9272 -1004,1227,2219,2218,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.044569,7.9293804,0,8,0,-3.8320043,0,3,3,2019,12,0,33,33,1,0,0,12.472966,12.472966,0,0,0,0,0,0,0,0,0,0,43.65,58.28,55.96,49.93,6.666666666666667,1,1,0,0,9,5,4,0,217,253946.13,223612.11,0,0,1950.9272 -1004,1228,2220,-9,2219,2218,1,1,26,0,0,0,2,2,-9,0,3,7.6712365,7.7837405,0,0,0,-945.71423,0,2,2,2019,18,5,37,37,1,5,1,7.8799272,7.8799272,0,0,0,0,0,0,0,0,0,0,36.79,56.27,-9,-9,8.333333333333334,1,1,0,0,4,5,3,0,422,-373568.47,51707.086,0,0,1880.4374 -1004,1229,2221,-9,2219,2218,1,0,21,0,0,0,2,2,-9,0,5,7.7214932,7.8799996,0,0,0,-1081.917,-9,2,2,2019,10,1,40,0,1,1,1,8.0351954,8.0351954,0,0,0,0,0,0,0,0,0,0,56.67,53.83,-9,-9,8.333333333333334,1,1,0,0,4,5,4,0,328,37149.852,0,0,0,1600.712 -1004,1230,2222,-9,2219,2218,1,0,30,0,0,0,2,2,-9,0,3,7.941246,7.7098632,0,0,0,-973.94287,0,2,3,2019,14,2,42,43,1,2,1,8.381813,8.381813,0,0,0,0,0,0,0,0,0,0,53.32,42.9,-9,-9,6.666666666666667,1,1,0,1,9,5,4,0,658,-291569.91,-89101.914,0,0,495.31696 -1005,1231,2223,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.8530178,5.8796926,0,0,-1011.0127,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,1.4736111,0,0,0,1,1,0,4.9232907,6.2533312,49.74,36.49,-9,-9,5,1,1,0,0,0,9,2,1,1283,626154.44,-92260.727,487799.03,167146.11,1006.1187 -1006,1232,2224,2226,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.7249708,8.4714842,0,6,-2,-85.822968,0,-9,-9,2019,8,0,50,58,1,0,0,10.049376,10.049376,0,0,0,0,0,1,1,0,0,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,6,2,5,1,1267.3334,859168.69,664606.19,144318.5,92039.5,3371.6338 -1006,1232,2225,-9,2224,2226,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.9619,1,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,5,1,1,0,1,0,2,5,1,1267.3334,859168.69,664606.19,144318.5,92039.5,3371.6338 -1006,1232,2226,2224,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.0317783,8.2826433,0,25,2,-4.9873157,0,2,2,2019,10,0,50,60,1,0,0,9.9490585,9.9490585,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.2,57.49,6.666666666666667,1,1,0,0,8,2,5,1,1267.3334,859168.69,664606.19,144318.5,92039.5,3371.6338 -1006,1233,2227,-9,2224,2226,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1041.4139,-9,2,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,6.666666666666667,1,1,0,0,2,2,1,1,1343,0,0,0,0,0 -1007,1234,2228,2229,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.4385452,8.151226,56,3,-28.691559,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9273072,8.0989122,54.37,54.8,60.29,52.11,8.333333333333334,1,1,0,0,0,1,3,1,278.5,712589.88,378153.81,176006.47,0,2303.8201 -1007,1234,2229,2228,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,56,-3,114.90853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.40814966,0,60.29,52.11,54.37,54.8,8.333333333333334,1,1,0,0,0,1,3,1,278.5,712589.88,378153.81,176006.47,0,2303.8201 -1008,1235,2230,2231,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.4603329,8.4347286,0,1,-1,12.971085,-9,-9,-9,2019,5,0,37,0,1,0,0,12.189177,12.189177,0,0,0,0,0,0,0,0,2.6738324,0,54.79,55.86,52.21,59.91,8.333333333333334,1,1,0,0,2,10,5,1,548,1197156.8,429665.47,191721.58,58483.859,2677.5386 -1008,1235,2231,2230,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.0234308,7.8348546,0,1,1,49.022827,0,2,2,2019,6,0,37,18,1,0,0,8.1564713,8.1564713,0,0,0,0,0,0,0,0,4.4264088,0,52.21,59.91,54.79,55.86,8.333333333333334,1,1,0,0,11,10,5,1,548,1197156.8,429665.47,191721.58,58483.859,2677.5386 -1009,1236,2232,2233,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.186717,8.1553192,42,7,-5.8450365,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8226876,7.8428192,51.61,32.15,58.72,51.29,6.666666666666667,1,1,0,0,0,4,3,1,252.5,700824.75,586824.5,205618.25,0,4263.0889 -1009,1236,2233,2232,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.1040325,5.9137578,42,-7,123.14795,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8162746,5.9921122,58.72,51.29,51.61,32.15,8.333333333333334,1,1,0,0,8,4,3,1,252.5,700824.75,586824.5,205618.25,0,4263.0889 -1010,1237,2234,2236,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,0,0,0,8,0,80.197479,0,-9,-9,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.95,59.17,41.64,51.42,5,1,1,1,0,10,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 -1010,1237,2235,-9,2236,2234,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-953.06799,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 -1010,1237,2236,2234,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.6909499,7.6559815,0,20,0,59.506462,0,2,2,2019,17,5,15,11,1,5,0,17.188608,17.188608,0,0,0,0,0,1,1,0,0,0,41.64,51.42,41.95,59.17,8.333333333333334,1,1,0,0,10,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 -1010,1237,2237,-9,2236,2234,1,1,16,0,2,1,2,0,-9,0,3,0,3.9829628,4.0082574,0,0,-1083.9368,-9,1,1,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,4.2622519,0,46.27,57.3,-9,-9,10,1,1,0,0,0,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 -1010,1237,2238,-9,2236,2234,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1011.486,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,2,1,447.20001,90936.492,-11590.479,106894.85,24744.545,1312.769 -1011,1238,2239,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1074.2463,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,15.499385,36.238621,134.8988,0,1,1,0,0,0,63.72,16.75,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,856,-400741.38,0,0,0,808.93756 -1012,1239,2240,2241,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.0542603,9.1030054,0,9,1,109.08694,0,-9,-9,2019,10,0,46,85,1,0,0,21.515339,21.515339,0,0,0,0,0,0,0,0,4.2275481,0,51.14,60.45,59.29,49.68,8.333333333333334,1,1,0,0,6,12,5,1,483,1298689.8,789345.69,166361.34,0,4512.876 -1012,1239,2241,2240,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3753338,8.3080559,0,35,-1,105.90377,0,3,3,2019,5,0,30,30,1,0,0,28.983297,28.983297,0,0,0,0,7,0,0,0,6.1878738,0,59.29,49.68,51.14,60.45,10,1,1,0,0,11,12,5,1,483,1298689.8,789345.69,166361.34,0,4512.876 -1013,1240,2242,2243,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,4.8557067,5.0593066,6,3,.90357858,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,5.3352313,34.21,37.16,27.88,26.97,6.666666666666667,1,1,0,0,0,11,2,1,1602,222027.78,31625.953,179588.3,0,3079.7339 -1013,1240,2243,2242,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,6,-3,-56.282078,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,10.981909,0,0,1,1,0,0,0,27.88,26.97,34.21,37.16,8.333333333333334,1,1,0,0,0,11,2,1,1602,222027.78,31625.953,179588.3,0,3079.7339 -1014,1241,2244,2245,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.675416,8.333436,37,9,-116.04494,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.8018909,8.2045965,45.02,47.07,57.73,54.53,5,1,1,0,0,0,8,4,1,776.5,2596480,1015647,628703.5,0,3434.0256 -1014,1241,2245,2244,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,5.1431303,5.1847186,38,0,-38.778976,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7568946,5.7128139,57.73,54.53,45.02,47.07,8.333333333333334,1,1,0,0,8,8,4,1,776.5,2596480,1015647,628703.5,0,3434.0256 -1015,1242,2246,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-946.5528,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,896,122366.34,0,0,0,1033.1281 -1016,1243,2247,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-926.23505,-9,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,2,3,0,0,0,4,1,0,428,-221301.03,0,0,0,813.54297 -1016,1244,2248,-9,2247,-9,1,1,20,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1069.952,-9,3,-9,2019,33,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,29.17,53.18,-9,-9,0,2,3,0,1,2,4,1,0,705,-428740.38,0,0,0,335.36218 -1017,1245,2249,2250,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,29,-3,40.197807,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.72,22.57,15.05,27.23,5,1,1,0,0,0,10,5,0,423.5,579143.88,262021.75,498131.44,253277.78,4276.2173 -1017,1245,2250,2249,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,8.8874474,9.0083752,0,29,3,14.938021,0,3,2,2019,33,12,70,70,1,12,0,13.515943,13.515943,0,0,0,0,27,1,1,0,0,0,15.05,27.23,21.72,22.57,0,1,1,0,0,12,10,5,0,423.5,579143.88,262021.75,498131.44,253277.78,4276.2173 -1017,1246,2251,-9,2249,2250,1,1,22,0,0,0,2,2,-9,0,4,7.9234939,8.5289669,0,0,0,-922.55627,0,3,2,2019,16,4,40,38,1,4,1,12.491519,12.491519,0,0,0,0,7,1,1,0,.9038223,0,38.27,59.42,-9,-9,6.666666666666667,1,1,0,0,4,10,4,0,2648,202377.19,0,0,0,1640.675 -1018,1247,2252,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,7.3996644,7.2005105,0,0,-1007.66,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,2.2822995,0,27.573618,0,1,1,0,1.5950136,7.1322451,56.85,21.83,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,143,217092.2,-22581.959,0,0,1957.0863 -1019,1248,2253,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.505517,8.2502575,0,0,0,-986.21777,0,1,1,2019,22,9,39,47,1,9,0,10.076271,10.076271,0,0,0,0,0,0,0,0,3.2299612,0,33.89,62.66,-9,-9,6.666666666666667,1,1,0,0,2,1,4,0,2006,166314.72,-50728.313,0,0,1422.4231 -1020,1249,2254,2255,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.7296886,7.5993915,0,24,-2,-16.085072,0,3,3,2019,7,0,37,35,1,0,0,7.4940214,7.4940214,0,0,0,0,0,1,1,0,0,0,51.25,52.08,54.96,53.17,5,1,1,0,0,12,4,4,1,485.33334,555873.81,574801.06,47325.234,36765.18,3167.1104 -1020,1249,2255,2254,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.7621422,8.685585,0,19,2,-89.848907,0,3,3,2019,10,0,44,50,1,0,0,16.241486,16.241486,0,0,0,0,0,1,1,0,0,0,54.96,53.17,51.25,52.08,8.333333333333334,1,1,0,0,12,4,4,1,485.33334,555873.81,574801.06,47325.234,36765.18,3167.1104 -1020,1249,2256,-9,2254,2255,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.0723,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,4,1,485.33334,555873.81,574801.06,47325.234,36765.18,3167.1104 -1020,1250,2257,-9,2254,2255,1,0,19,0,1,0,2,2,1,0,4,7.6981716,8.1077375,0,0,0,-985.64331,-9,2,2,2019,12,0,35,0,1,0,1,11.281416,11.281416,0,0,0,0,0,1,1,0,2.0008664,0,33.48,60.65,-9,-9,6.666666666666667,1,1,0,0,6,4,4,1,898,128955.55,-16868.486,0,0,869.73309 -1021,1251,2258,2259,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,9.0285416,9.0152864,35,-2,-.002007527,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,10.174685,8.7952776,46.98,59.35,37.5,54.65,8.333333333333334,1,1,0,0,3,9,5,1,368.5,2359117.5,1697010.5,449892.81,0,11349.978 -1021,1251,2259,2258,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,34,2,-88.765472,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.7684796,0,37.5,54.65,46.98,59.35,6.666666666666667,2,3,0,0,0,9,5,1,368.5,2359117.5,1697010.5,449892.81,0,11349.978 -1022,1252,2260,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.0803709,7.5897684,0,0,0,-1037.6873,0,2,2,2019,23,11,78,41,1,11,0,4.1148815,4.1148815,0,0,0,0,0,1,1,0,0,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,314,292334.66,-87349.906,162718.28,107097.01,1595.028 -1023,1253,2261,2262,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,63,-1,-169.18637,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.2245502,0,24.425695,0,1,1,0,3.650234,0,58.47,28.96,60.62,43.73,10,1,1,0,0,0,10,5,1,639,2973885,1488874.8,0,0,6357.2539 -1023,1253,2262,2261,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,9.1199999,9.0577583,63,1,-80.861023,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0342808,8.7962656,60.62,43.73,58.47,28.96,10,1,1,0,0,0,10,5,1,639,2973885,1488874.8,0,0,6357.2539 -1024,1254,2263,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.4862857,5.3642578,0,0,-1047.2261,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,5.6356015,6.1794329,61.700325,0,1,1,0,0,5.2866693,53,44,-9,-9,8,1,1,0,0,0,5,2,1,631,549480.44,81121.023,294531.22,0,1442.733 -1025,1255,2264,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.1728082,5.7661781,0,0,-965.25366,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6615934,61.04,39.41,-9,-9,10,1,1,0,0,0,7,2,0,814,356702.41,-12160.402,215642.45,0,819.27875 -1026,1256,2265,2266,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.3034344,8.3708611,0,45,-3,-105.10888,0,2,3,2019,13,1,32,30,1,1,0,14.435265,14.435265,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.33,53.46,6.666666666666667,1,1,0,0,10,5,5,1,265,963708.06,1075747.8,174651.94,0,4630.2393 -1026,1256,2266,2265,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.7800627,9.1069422,0,9,3,-18.952858,0,-9,-9,2019,8,0,25,38,1,0,0,36.924763,36.924763,0,0,0,0,0,0,0,0,4.507091,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,10,5,5,1,265,963708.06,1075747.8,174651.94,0,4630.2393 -1026,1257,2267,-9,2265,2266,1,1,26,0,0,0,2,2,-9,0,3,8.024044,8.3817053,0,0,0,-948.97766,0,2,2,2019,6,0,48,0,1,0,1,8.1771832,8.1771832,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,7,5,4,1,2092,-153707.94,0,0,0,561.92651 -1027,1258,2268,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.7838049,8.9628725,0,0,0,-976.02905,0,2,2,2019,13,2,30,38,1,2,0,29.69693,29.69693,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,113,324784.25,222619.47,0,0,3232.604 -1028,1259,2269,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.1492233,6.3430243,0,0,-942.43933,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,2.9402146,0,21.731386,0,1,1,0,4.9651232,6.0421338,50.32,40.49,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,635,172172.64,630.96808,94724.57,0,1466.9464 -1029,1260,2270,2271,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.1844759,9.4338245,0,24,-1,57.818928,0,2,2,2019,6,0,20,40,1,0,0,74.553841,74.553841,0,0,0,0,0,0,0,0,.58691037,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,8,7,5,1,769.5,1231289.3,685343.25,662640.69,64546.984,5746.7349 -1029,1260,2271,2270,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.4985528,7.4904356,0,24,1,-1.2086114,0,2,2,2019,0,0,20,20,1,0,0,10.922215,10.922215,0,0,0,0,0,0,0,0,4.9253993,0,62.39,56.71,57.06,57.76,10,1,1,0,0,6,7,5,1,769.5,1231289.3,685343.25,662640.69,64546.984,5746.7349 -1029,1261,2272,-9,2271,2270,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-968.5285,-9,2,2,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,42.12,56.46,-9,-9,6.666666666666667,1,1,0,0,3,7,1,1,259,0,0,0,0,-66.755836 -1029,1262,2273,-9,2271,2270,1,1,19,0,0,1,2,0,0,0,4,0,4.1798005,4.1066227,0,0,-990.69434,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,4.6091771,0,26.01,63.78,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,911,135077.58,0,0,0,129.79315 -1030,1263,2274,2275,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.257843,8.4371624,0,4,-3,23.614199,0,-9,-9,2019,7,1,38,42,1,1,0,11.900213,11.900213,0,0,0,0,0,0,0,0,.74297845,0,45.24,46.38,48.92,46.13,8.333333333333334,1,1,0,0,10,1,5,1,667,151402.38,32804.391,107973.64,73732.844,5559.9434 -1030,1263,2275,2274,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.0024328,8.8735008,0,4,3,-78.979538,0,-9,-9,2019,9,0,45,45,1,0,0,22.57328,22.57328,0,0,0,0,0,0,0,0,.76420343,0,48.92,46.13,45.24,46.38,5,1,1,0,0,12,1,5,1,667,151402.38,32804.391,107973.64,73732.844,5559.9434 -1031,1264,2276,2277,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,8.0003309,8.3648548,6.9198642,10,4,-11.446287,0,3,2,2019,8,0,30,30,1,0,0,14.58073,14.58073,1,0,0,0,0,0,0,0,6.4447341,6.5206976,51.11,45.95,57.33,53.46,6.666666666666667,1,1,0,0,11,10,5,1,2217.5,302904,85997.484,191249.69,8438.1055,3888.582 -1031,1264,2277,2276,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4208498,8.5403605,6.2904096,10,-4,-32.190952,0,2,2,2019,8,0,38,38,1,0,0,17.414524,17.414524,0,0,0,0,0,0,0,0,6.6763625,5.9950891,57.33,53.46,51.11,45.95,8.333333333333334,1,1,0,0,11,10,5,1,2217.5,302904,85997.484,191249.69,8438.1055,3888.582 -1032,1265,2278,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.4549055,8.4354362,0,0,0,-905.72833,0,2,2,2019,5,0,46,48,1,0,0,11.164685,11.164685,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,289,84525.008,-13610.103,116080.7,89915.352,2245.9036 -1033,1266,2279,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.979722,8.1080017,0,0,-933.19757,0,2,2,2019,30,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,.23499839,7.9242611,29.66,56.63,-9,-9,3.333333333333333,1,1,0,0,5,10,4,1,936,1096722,426994.97,427838.06,0,1072.5872 -1034,1267,2280,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.5958133,7.8339171,0,0,0,-989.02625,0,2,2,2019,7,1,10,12,1,1,1,28.087242,28.087242,0,0,0,0,2,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,8,4,3,1,1052,-36984.371,0,0,0,1150.677 -1035,1268,2281,2282,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,5,5,23.992235,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,1,0,2,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 -1035,1268,2282,2281,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.5386896,8.7199011,0,5,-5,67.220299,0,2,2,2019,10,1,47,39,1,1,0,11.553314,11.553314,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,4,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 -1035,1268,2283,-9,2281,2282,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.8999,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 -1035,1268,2284,-9,2281,2282,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.51855,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,12,3,1,445,117537.82,2603.5405,152947.16,15362.486,2691.4673 -1036,1269,2285,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1081.2678,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1041,174886.91,0,0,0,341.33798 -1037,1270,2286,2287,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,9,-6,63.06427,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,40.06,41.03,39.12,60.58,3.333333333333333,1,1,0,0,4,10,4,1,1106,203624.8,34488.801,163801.38,74685.797,2245.5964 -1037,1270,2287,2286,2289,-9,1,0,55,0,1,0,1,1,-9,0,4,8.5927668,8.818224,0,9,6,-30.478458,0,2,2,2019,14,3,45,45,1,3,0,19.51149,19.51149,0,0,0,0,27,1,1,0,0,0,39.12,60.58,40.06,41.03,3.333333333333333,1,1,0,0,10,10,4,1,1106,203624.8,34488.801,163801.38,74685.797,2245.5964 -1037,1270,2288,-9,2287,2286,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1163.7286,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,1106,203624.8,34488.801,163801.38,74685.797,2245.5964 -1037,1271,2289,-9,-9,-9,1,0,90,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1103.5852,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,5.713665,20.030491,69.421494,0,1,1,0,6.4604912,0,53,44,-9,-9,8,1,1,0,0,0,10,1,1,458,41586.398,51488.734,0,0,867.24304 -1038,1272,2290,2291,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.8073177,8.5672178,0,16,2,89.949524,0,3,3,2019,8,0,52,53,1,0,0,18.105534,18.105534,0,0,0,0,0,0,0,0,6.5042152,0,57.06,57.76,33.25,55.15,8.333333333333334,3,4,0,0,11,7,5,1,291.5,270929.59,-8253.1445,242123.47,122951.95,2510.0195 -1038,1272,2291,2290,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,16,-2,-90.209023,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,55.15,57.06,57.76,5,1,1,1,1,9,7,5,1,291.5,270929.59,-8253.1445,242123.47,122951.95,2510.0195 -1039,1273,2292,2293,-9,-9,1,1,35,0,0,0,2,2,-9,1,2,0,0,0,3,3,0,0,2,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.5,43.28,4.2,67.71000000000001,5,1,1,0,1,5,6,1,0,1423.5,0,0,0,0,1945.2815 -1039,1273,2293,2292,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,0,0,0,3,-3,0,0,-9,-9,2019,29,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,4.2,67.71000000000001,36.5,43.28,0,1,1,1,1,0,6,1,0,1423.5,0,0,0,0,1945.2815 -1040,1274,2294,-9,-9,-9,1,1,33,0,0,0,3,3,-9,1,4,0,0,0,0,0,-952.79224,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,50.34,-9,-9,10,1,1,1,0,1,4,1,0,125,-40159.293,0,0,0,572.57782 -1041,1275,2295,2296,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4139051,6.835938,47,2,-181.43394,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2426076,6.469532,58.97,47.32,60.12,54.8,10,1,1,0,0,0,5,4,1,1202.5,1128158.3,910258.38,144377.39,0,3507.5513 -1041,1275,2296,2295,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.5735359,8.06429,47,-2,-55.579906,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6288006,8.5573959,60.12,54.8,58.97,47.32,8.333333333333334,1,1,0,0,9,5,4,1,1202.5,1128158.3,910258.38,144377.39,0,3507.5513 -1042,1276,2297,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-980.30798,-9,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,4.3795128,0,46.37,50.17,-9,-9,3.333333333333333,1,1,1,0,5,8,1,0,327,0,0,0,0,71.354462 -1043,1277,2298,-9,2299,2300,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-907.89209,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,2,3,1,755.66669,786154.88,429496.53,326940.88,0,2849.968 -1043,1277,2299,2300,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,7.4698415,7.4508033,48,-2,-85.995079,0,3,3,2019,13,1,0,20,4,1,0,0,0,0,0,0,0,71.5,1,1,0,3.7399697,7.4814548,42.59,57.55,53,47,8.333333333333334,1,1,0,0,8,2,3,1,755.66669,786154.88,429496.53,326940.88,0,2849.968 -1043,1277,2300,2299,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.6785679,6.9013329,6,2,-128.77148,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.885047,53,47,42.59,57.55,7,1,1,0,0,0,2,3,1,755.66669,786154.88,429496.53,326940.88,0,2849.968 -1044,1278,2301,2302,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.2346888,8.2057867,0,28,-5,-59.2262,0,2,2,2019,11,0,24,23,1,0,0,17.08322,17.08322,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,13,7,5,1,2761,1008985.9,539614.13,499655.13,25946.006,3698.7439 -1044,1278,2302,2301,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.0397978,9.1099586,0,28,5,-107.79681,0,3,3,2019,9,0,50,48,1,0,0,22.595701,22.595701,0,0,0,0,0,0,0,0,6.649631,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,12,7,5,1,2761,1008985.9,539614.13,499655.13,25946.006,3698.7439 -1044,1279,2303,-9,2301,2302,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-864.64496,1,2,2,2019,14,2,0,24,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,8.333333333333334,1,1,0,0,5,7,2,1,616,0,0,0,0,0 -1045,1280,2304,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.3069687,8.1884995,0,0,0,-979.34705,0,3,3,2019,10,1,38,38,1,1,0,13.617072,13.617072,0,0,0,0,0,0,0,0,0,0,54.35,50.46,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,486,410294.44,22216.117,92064.742,0,1850.8529 -1045,1281,2305,-9,-9,2304,1,0,18,0,0,1,2,0,0,0,3,0,6.8550463,6.7163558,0,0,-978.32965,-9,-9,3,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,6.824872,0,30.46,56.16,-9,-9,5,1,1,0,0,0,4,2,1,134,-313188.31,0,0,0,271.84042 -1046,1282,2306,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.8932753,6.9068074,0,0,-964.43927,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7581329,6.8802204,49.44,43.52,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,834,616105.06,67516.289,175705.11,0,638.62256 -1046,1283,2307,-9,2306,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1132.0386,0,3,2,2019,5,0,0,30,3,0,0,0,0,0,0,0,0,7,1,1,0,4.1256428,0,55.26,55.85,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,879,1751258.3,582224.06,216015.55,0,195.57829 -1047,1284,2308,2309,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.8247375,8.7398329,0,8,2,-110.81685,0,2,2,2019,7,0,42,40,1,0,0,17.546919,17.546919,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.16,56.15,3.333333333333333,1,1,0,0,11,12,5,1,523,294845.69,75854.211,0,0,4967.936 -1047,1284,2309,2308,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.1134939,8.3434982,0,8,-2,-173.01534,0,3,2,2019,6,0,38,20,1,0,0,13.01545,13.01545,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,8,12,5,1,523,294845.69,75854.211,0,0,4967.936 -1048,1285,2310,2311,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,7.6638765,7.6927462,0,8,7,-33.751003,0,3,3,2019,6,0,34,35,1,0,0,7.746654,7.746654,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,12,5,1,1903.3334,638582.44,402341.88,248511.11,130506.62,2893.6587 -1048,1285,2311,2310,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.8192301,8.7121058,0,8,-7,3.0531061,0,2,3,2019,6,0,42,42,1,0,0,16.405079,16.405079,0,0,0,0,0,1,1,0,4.936615,0,57.16,56.15,62.39,56.71,1.666666666666667,1,1,0,0,9,12,5,1,1903.3334,638582.44,402341.88,248511.11,130506.62,2893.6587 -1048,1285,2312,-9,2310,2311,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-920.98132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,1903.3334,638582.44,402341.88,248511.11,130506.62,2893.6587 -1049,1286,2313,-9,2314,2315,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.76813,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 -1049,1286,2314,2315,-9,-9,1,0,33,1,2,0,2,2,-9,0,2,8.6522655,8.4625778,0,3,-5,-24.920074,0,2,2,2019,14,3,49,57,1,3,0,8.3004751,8.3004751,0,0,0,0,0,1,1,0,2.7854381,0,26.38,58.67,61.26,35.46,8.333333333333334,3,4,0,0,3,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 -1049,1286,2315,2314,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,7.990087,8.1434536,0,3,5,-113.10638,0,-9,-9,2019,9,0,48,40,1,0,0,6.8068409,6.8068409,0,0,0,0,0,1,1,0,0,0,61.26,35.46,26.38,58.67,6.666666666666667,3,4,0,0,9,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 -1049,1286,2316,-9,2314,2315,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.52039,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,0,411.5,545264.5,102677.19,404131.44,0,3138.228 -1050,1287,2317,2318,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,6,6,127.25985,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,24.825781,0,0,1,1,0,0,0,55.99,27.58,49.67,45.88,8.333333333333334,1,1,0,0,0,7,2,0,903,153404.77,-3426.1563,0,0,2928.4463 -1050,1287,2318,2317,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.1920795,5.1250768,6,-6,-5.2372355,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.2426419,49.67,45.88,55.99,27.58,8.333333333333334,1,1,0,0,0,7,2,0,903,153404.77,-3426.1563,0,0,2928.4463 -1051,1288,2319,2320,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,9.0435762,9.8262339,8.0643759,33,0,-29.645788,0,2,2,2019,11,1,38,38,1,1,0,22.757919,22.757919,0,0,0,0,0,0,0,0,2.5354934,8.2044115,43.92,62.31,35.22,56.72,6.666666666666667,1,1,0,0,10,9,5,1,2881,473476.25,537322.44,0,0,5619.1689 -1051,1288,2320,2319,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,8.0258827,7.6772809,33,0,-51.814915,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,3.4571502,8.2528448,35.22,56.72,43.92,62.31,5,1,1,0,0,12,9,5,1,2881,473476.25,537322.44,0,0,5619.1689 -1052,1289,2321,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1059.0348,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.58,47.03,-9,-9,5,1,1,0,0,2,13,2,0,442,-24817.717,0,235038.84,50333.473,278.82434 -1053,1290,2322,-9,2323,2324,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-949.35052,-9,1,1,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,4081.6667,1564278.3,363940.97,854544.06,0,10901.535 -1053,1290,2323,2324,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.6845236,9.5607433,0,24,2,0,0,-9,-9,2019,8,1,60,55,1,1,0,23.15202,23.15202,0,0,0,0,0,1,1,0,1.1948842,0,57.06,57.76,54.96,53.17,6.666666666666667,1,1,0,0,8,8,5,1,4081.6667,1564278.3,363940.97,854544.06,0,10901.535 -1053,1290,2324,2323,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.7831688,9.6216164,0,24,-2,0,0,2,2,2019,8,0,40,40,1,0,0,49.156769,49.156769,0,0,0,0,0,1,1,0,3.841469,0,54.96,53.17,57.06,57.76,6.666666666666667,1,1,0,0,8,8,5,1,4081.6667,1564278.3,363940.97,854544.06,0,10901.535 -1053,1291,2325,-9,2323,2324,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-938.12268,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,339,128535.64,0,0,0,-357.19049 -1054,1292,2326,2327,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.127883,6.6170807,6,2,5.0705485,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.6893578,55,45,53,45,8,1,1,0,0,0,11,2,1,880,227105,113299.34,126483.73,0,1702.6533 -1054,1292,2327,2326,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.7565618,5.7640634,6,-2,1.0437106,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,81.703064,0,0,1,1,0,0,5.7480836,53,45,55,45,8,1,1,0,0,0,11,2,1,880,227105,113299.34,126483.73,0,1702.6533 -1055,1293,2328,2329,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.6096983,6.2630205,9,-2,-145.27089,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4398985,6.4429212,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,784,335632.63,0,129470.16,0,1188.5444 -1055,1293,2329,2328,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,5.3666301,4.92946,9,2,-91.506294,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1643755,5.1918135,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,784,335632.63,0,129470.16,0,1188.5444 -1056,1294,2330,-9,-9,-9,1,1,25,0,3,0,2,2,-9,0,4,7.944488,7.8362026,0,0,0,-957.44904,-9,2,2,2019,3,1,32,0,1,1,1,10.602633,10.602633,0,0,0,0,0,1,1,0,0,0,47.15,55.39,-9,-9,3.333333333333333,3,4,0,1,5,8,3,1,1588,-129193.02,0,0,0,778.8125 -1057,1295,2331,2332,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.9810343,5.2188578,45,1,27.435307,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4672637,4.9739718,43.26,34.33,43.91,55.68,6.666666666666667,1,1,0,0,0,9,2,1,913,841099.81,151195.61,619351.63,0,1188.1038 -1057,1295,2332,2331,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.0036912,6.2649946,45,-1,147.84564,0,3,3,2019,12,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1810055,5.9679413,43.91,55.68,43.26,34.33,8.333333333333334,1,1,0,0,10,9,2,1,913,841099.81,151195.61,619351.63,0,1188.1038 -1058,1296,2333,2334,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.8111053,7.4969969,0,6,-3,-25.189405,0,2,2,2019,35,12,32,36,1,12,0,8.7251272,8.7251272,0,0,0,0,0,1,1,0,0,0,23.29,35.52,53,54,1.666666666666667,1,1,0,0,8,1,3,0,594,234397.31,129506.85,99366.703,67054.492,1874.2302 -1058,1296,2334,2333,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,6.8940215,7.2035294,0,6,3,184.23541,0,-9,-9,2019,9,0,32,32,1,1,0,3.364068,3.364068,0,0,0,0,0,1,1,0,0,0,53,54,23.29,35.52,8,1,1,0,0,1,1,3,0,594,234397.31,129506.85,99366.703,67054.492,1874.2302 -1059,1297,2335,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.9928083,8.0805597,0,0,-1060.344,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9590402,8.0819302,57.76,54.51,-9,-9,10,1,1,0,0,0,11,4,1,1022,821703.13,291088.94,138385.14,0,1966.8679 -1060,1298,2336,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.8292189,8.4382992,0,0,0,-938.78821,0,2,2,2019,12,1,60,50,1,1,0,11.795123,11.795123,0,0,0,0,7,1,1,0,0,0,41.59,61.77,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,660,182015.59,-41996.473,220851.58,77354.133,2229.7205 -1061,1299,2337,2338,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.5543776,9.3903999,0,29,1,68.492264,0,2,2,2019,7,0,45,55,1,0,0,28.489197,28.489197,0,0,0,0,0,0,0,0,6.1326065,0,57.16,56.15,57.06,57.76,10,1,1,0,0,12,5,5,1,685,1925379.5,1935871.3,110213.88,70950.164,5883.8882 -1061,1299,2338,2337,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.61024,8.6203566,0,29,-1,135.98326,0,2,2,2019,8,0,45,42,1,0,0,19.181885,19.181885,0,0,0,0,0,0,0,0,1.5666293,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,5,5,1,685,1925379.5,1935871.3,110213.88,70950.164,5883.8882 -1061,1300,2339,-9,2338,2337,1,0,25,0,0,0,1,1,-9,0,3,8.9263468,8.5411749,0,0,0,-966.04425,0,2,2,2019,13,2,40,40,1,2,1,15.840593,15.840593,0,0,0,0,0,0,0,0,4.5455503,0,43.96,55.64,-9,-9,10,1,1,0,0,8,5,5,1,152,-51195.191,80654.602,264962.53,225305.31,2091.9331 -1061,1301,2340,-9,2338,2337,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-987.21924,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.3648763,0,57.06,57.76,-9,-9,10,1,1,0,0,2,5,1,1,457,0,0,0,0,486.5029 -1062,1302,2341,2343,-9,-9,1,1,35,1,3,0,1,1,-9,0,5,8.8975725,8.8264475,0,9,10,-83.797218,0,3,2,2019,6,0,40,-9,1,0,0,21.309629,21.309629,0,0,0,0,0,1,1,0,0,0,48.96,60.26,57.16,56.15,8.333333333333334,2,3,0,0,7,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 -1062,1302,2342,-9,2343,2341,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.08661,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 -1062,1302,2343,2341,-9,-9,1,0,25,1,3,0,2,2,-9,0,4,0,0,0,7,-10,9.8785706,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.96,60.26,10,2,3,0,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 -1062,1302,2344,-9,2343,2341,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.7833,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 -1062,1302,2345,-9,2343,2341,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.0295,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,4,0,1146,165837.41,118311.08,238589.16,179900.64,4159.1611 -1063,1303,2346,2347,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,60,-3,-15.731845,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1892338,0,57.33,53.46,60.12,54.8,10,1,1,0,0,0,10,3,1,431,534615.56,263718.88,395403.47,0,2312.1353 -1063,1303,2347,2346,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,7.7559733,8.0936079,60,3,-112.13591,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1124392,60.12,54.8,57.33,53.46,10,1,1,0,0,5,10,3,1,431,534615.56,263718.88,395403.47,0,2312.1353 -1064,1304,2348,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,4.8142257,5.1519995,0,0,-982.48547,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7037635,5.1893148,61.12,51.57,-9,-9,0,1,1,0,0,0,10,2,1,1065,369536.13,-123424.41,251990.33,0,302.46201 -1065,1305,2349,2350,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.8872213,9.1441879,0,18,-8,-.92171544,0,2,2,2019,23,11,40,43,1,11,0,20.59004,20.59004,0,0,0,0,0,0,0,0,5.7670083,0,42.62,43.78,48.87,58.55,6.666666666666667,1,1,0,0,8,2,5,1,533.5,823293.13,953902,0,0,4315.0796 -1065,1305,2350,2349,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.0392466,8.2921143,0,18,8,-108.33698,0,2,2,2019,12,0,35,36,1,0,0,11.834819,11.834819,0,0,0,0,0,0,0,0,4.9472008,0,48.87,58.55,42.62,43.78,6.666666666666667,1,1,0,0,10,2,5,1,533.5,823293.13,953902,0,0,4315.0796 -1066,1306,2351,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1166.498,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,13,1,1,1769,-217432.83,0,0,0,1235.3771 -1067,1307,2352,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,1,0,5.8158808,6.0463886,0,0,-1092.194,0,3,2,2019,28,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,6.9983625,5.9489484,18.01,25.88,-9,-9,5,2,3,0,0,0,8,2,1,802,266813.59,-96538.781,0,0,1593.2446 -1067,1308,2353,2354,-9,2352,1,0,62,0,0,0,2,2,-9,0,3,7.0349898,6.8706064,0,9,-12,12.516599,0,-9,1,2019,21,9,15,15,1,9,0,10.156129,10.156129,0,0,0,0,74.5,1,1,0,3.1274123,0,30.47,60.56,57.16,56.15,6.666666666666667,4,2,0,0,8,8,4,1,556,2504832.5,683164.25,373526.28,0,3769.1792 -1067,1308,2354,2353,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.3092804,8.3029099,9,12,28.335451,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.422101,0,57.16,56.15,30.47,60.56,8.333333333333334,2,3,0,0,2,8,4,1,556,2504832.5,683164.25,373526.28,0,3769.1792 -1068,1309,2355,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,0,0,-978.9267,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.56770355,0,60.06,56.17,-9,-9,8.333333333333334,4,5,0,0,0,10,1,0,390,704236.56,553612.38,0,0,735.60852 -1069,1310,2356,2357,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,52,-2,40.882492,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3092803,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,11,3,1,381.5,994397,130929.35,172934.7,0,2902.96 -1069,1310,2357,2356,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.5412073,7.6923618,52,2,112.98169,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0530243,8.1744614,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,0,11,3,1,381.5,994397,130929.35,172934.7,0,2902.96 -1070,1311,2358,-9,-9,-9,1,0,41,0,0,0,2,2,-9,1,3,8.2087851,8.148613,0,0,0,-945.00146,0,1,2,2019,18,5,30,30,1,5,0,12.200361,12.200361,0,0,0,0,0,1,1,0,0,0,56.09,30.85,-9,-9,3.333333333333333,1,1,0,1,9,1,4,0,1421,-28694.877,99556.688,86001.469,0,1593.1436 -1071,1312,2359,2362,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,6.5406756,6.3410306,0,10,-3,130.42523,0,-9,-9,2019,10,0,20,0,1,0,0,3.0864894,3.0864894,0,0,0,0,0,1,1,0,0,0,63.89,45.4,60.29,52.11,6.666666666666667,1,1,0,0,5,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 -1071,1312,2360,-9,2359,2362,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.78967,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 -1071,1312,2361,-9,2359,2362,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.55182,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 -1071,1312,2362,2359,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.1172733,6.0351005,0,10,3,37.048943,0,-9,-9,2019,7,0,40,40,1,0,0,1.3652036,1.3652036,0,0,0,0,0,1,1,0,8.0097456,0,60.29,52.11,63.89,45.4,8.333333333333334,1,1,0,0,11,9,2,1,1015.5,-193240.05,13288.449,0,0,1684.3909 -1072,1313,2363,2364,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,4.3284888,4.3822193,28,-1,34.134579,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,8.43538,0,0,1,1,0,.28743628,4.2679901,62.75,37.26,55.36,54.24,10,1,1,0,0,0,9,4,1,609,1198762.5,549879.63,359826.97,0,4313.4854 -1072,1313,2364,2363,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.5266914,8.5450354,28,1,54.615944,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,1.3424221,0,1,1,0,2.2575786,8.8058643,55.36,54.24,62.75,37.26,8.333333333333334,1,1,0,0,0,9,4,1,609,1198762.5,549879.63,359826.97,0,4313.4854 -1073,1314,2365,2366,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.8053808,9.0718193,0,4,6,-70.734505,0,-9,-9,2019,1,0,43,48,1,0,0,21.864407,21.864407,0,0,0,0,0,0,0,0,0,0,46.8,57.03,55.98,43.19,8.333333333333334,1,1,0,0,4,2,5,0,924.5,122226.02,15662.191,102398.06,77926.25,4547.2598 -1073,1314,2366,2365,-9,-9,1,0,23,0,0,0,2,2,1,0,3,8.1313457,8.2954893,0,4,-6,-108.84805,-9,1,2,2019,13,1,37,0,1,1,0,10.298342,10.298342,0,0,0,0,0,0,0,0,2.7009454,0,55.98,43.19,46.8,57.03,8.333333333333334,1,1,0,0,4,2,5,0,924.5,122226.02,15662.191,102398.06,77926.25,4547.2598 -1074,1315,2367,-9,2368,2370,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4878,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 -1074,1315,2368,2370,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.3544188,7.4831128,6.1961608,8,11,-29.63378,0,-9,-9,2019,11,0,24,24,1,0,0,6.5602698,6.5602698,0,0,0,0,0,1,1,0,5.5655293,0,53.47,51.1,60.12,54.8,8.333333333333334,1,1,0,0,7,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 -1074,1315,2369,-9,2368,2370,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.8199,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 -1074,1315,2370,2368,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.5133543,8.5331478,4.1310625,8,-11,-179.46286,0,-9,-9,2019,8,0,60,60,1,0,0,8.3417797,8.3417797,0,0,0,0,0,1,1,0,0,3.9228749,60.12,54.8,53.47,51.1,10,1,1,0,0,8,13,4,1,655.25,-4170.8843,-28463.432,0,0,3530.1016 -1075,1316,2371,2372,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,0,0,0,5,-5,0,0,2,1,2019,4,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,7.6401315,0,62.39,56.71,51.49,57.57,10,4,2,0,0,8,2,1,1,303,14829.539,51844.809,125222.81,94734.391,756.96429 -1075,1316,2372,2371,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,0,0,0,5,5,0,0,-9,-9,2019,12,1,0,50,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,62.39,56.71,6.666666666666667,1,1,0,0,3,2,1,1,303,14829.539,51844.809,125222.81,94734.391,756.96429 -1076,1317,2373,-9,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,5.6384172,5.8626842,0,0,-806.6424,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3791575,6.0471454,59.21,43.05,-9,-9,8.333333333333334,3,4,0,0,4,8,2,0,1001,131045.66,0,0,0,726.76794 -1076,1318,2374,-9,2375,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.4915,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,1138.5,206377.64,209892.09,0,0,3612.4399 -1076,1318,2375,-9,2373,-9,1,0,37,0,1,0,2,2,-9,0,4,8.3583632,8.2161417,0,0,0,-1090.5131,0,3,-9,2019,11,0,20,20,1,2,0,20.844971,20.844971,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,0,1,8,4,0,1138.5,206377.64,209892.09,0,0,3612.4399 -1077,1319,2376,2377,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0930319,7.9211702,0,10,-1,96.477959,0,3,2,2019,15,2,45,40,1,2,0,6.58356,6.58356,0,0,0,0,0,0,0,0,0,0,47.39,36.31,49,50,8.333333333333334,1,1,0,0,12,2,4,1,548,642929.56,461374.06,176287.56,76067.016,3298.6211 -1077,1319,2377,2376,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0018196,7.978548,0,10,1,103.37141,0,-9,-9,2019,11,0,40,40,1,1,0,7.3909097,7.3909097,0,0,0,0,0,0,0,0,5.2213802,0,49,50,47.39,36.31,7,1,1,0,0,1,2,4,1,548,642929.56,461374.06,176287.56,76067.016,3298.6211 -1078,1320,2378,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.3574085,8.4704409,0,1,8,13.924468,-9,2,2,2019,9,0,32,0,1,0,0,13.618734,13.618734,0,0,0,0,0,0,0,0,7.343133,0,40.87,47.29,50,58,8.333333333333334,1,1,0,0,9,11,3,1,202,191896.53,44369.383,161707.8,54743.027,2066.6194 -1079,1321,2379,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-937.29865,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,43,-9,-9,7,1,1,0,0,0,5,1,0,768,15253.922,0,0,0,970.79578 -1080,1322,2380,-9,2381,2383,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.0983,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 -1080,1322,2381,2383,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.6598091,7.7149715,0,7,-6,46.51223,0,1,3,2019,12,2,28,27,1,2,0,9.2307987,9.2307987,0,0,0,0,0,1,1,0,0,0,37.02,57.23,43.54,59.6,8.333333333333334,1,1,0,0,9,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 -1080,1322,2382,-9,2381,2383,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-930.72577,-9,1,2,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 -1080,1322,2383,2381,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,5.5606017,5.2842398,0,7,6,-65.186028,0,2,2,2019,11,1,10,8,1,1,0,2.7781816,2.7781816,0,0,0,0,0,1,1,0,0,0,43.54,59.6,37.02,57.23,8.333333333333334,1,1,0,0,9,6,2,1,723.75,97960.938,19270.17,0,0,1609.2909 -1081,1323,2384,2385,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,61,-1,-43.651615,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.28,48.88,10,1,1,0,0,0,7,3,1,602,241224.52,12884.67,352358.25,0,2372.0889 -1081,1323,2385,2384,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.8285074,7.6549196,61,1,-15.423395,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8234353,61.28,48.88,57.33,53.46,10,1,1,0,0,0,7,3,1,602,241224.52,12884.67,352358.25,0,2372.0889 -1082,1324,2386,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,8.1102829,7.9619775,0,0,0,-994.26862,0,-9,-9,2019,9,1,40,38,1,1,0,9.0722151,9.0722151,0,0,0,0,0,0,0,0,0,0,54.12,52.11,-9,-9,6.666666666666667,3,4,0,0,9,8,4,0,424,624716,12223.559,334467.06,48265.855,1129.1858 -1083,1325,2387,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.3032618,8.3099413,0,0,0,-1121.9572,0,2,-9,2019,14,2,34,35,1,2,0,11.107835,11.107835,0,0,0,0,0,0,0,0,0,0,40.95,63.66,-9,-9,6.666666666666667,1,1,0,0,12,10,4,1,585,128922.63,75861.172,0,0,1791.379 -1084,1326,2388,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1028.9362,0,-9,-9,2019,35,12,0,40,3,12,0,0,0,0,0,0,0,0,1,1,0,8.4362535,0,6.15,47.86,-9,-9,0,1,1,0,0,8,1,1,1,764,113451.99,0,0,0,4073.6587 -1085,1327,2389,2390,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.4151258,8.6372948,53,0,-67.749512,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.883956,8.3124094,62.1,51.16,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,327.5,2785993.5,413263.06,837376.75,0,4302.8027 -1085,1327,2390,2389,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.8321576,6.3345714,53,0,87.96769,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8376749,7.0775905,57.16,56.15,62.1,51.16,8.333333333333334,1,1,0,0,0,9,4,1,327.5,2785993.5,413263.06,837376.75,0,4302.8027 -1086,1328,2391,2392,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,43,1,39.870453,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51,48,10,1,1,0,0,1,10,3,1,439.5,650031,477042.81,154753.14,0,974.23303 -1086,1328,2392,2391,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.1049423,7.9674287,0,8,-1,-81.741226,0,-9,-9,2019,10,0,66,90,1,1,0,5.1526718,5.1526718,0,0,0,0,0,0,0,0,3.3323159,0,51,48,58.32,50.22,7,1,1,0,0,1,10,3,1,439.5,650031,477042.81,154753.14,0,974.23303 -1087,1329,2393,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.4377513,7.5505605,0,0,-977.42957,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,6.3405633,6.8502727,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,484,107079.09,342521.41,0,0,1875.3569 -1088,1330,2394,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.6335421,8.7464304,0,0,0,-939.125,0,-9,-9,2019,8,0,35,16,1,0,0,16.505171,16.505171,0,0,0,0,0,0,0,0,3.2379899,0,52.13,57.22,-9,-9,1.666666666666667,1,1,0,0,7,12,5,0,192,371168.19,-4382.4287,0,0,2129.5444 -1089,1331,2395,2396,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.0377245,9.2594891,0,17,1,42.414223,0,2,3,2019,9,0,60,70,1,1,0,16.005579,16.005579,0,0,0,0,0,1,1,0,9.1563635,0,51,56,49,55,8,2,3,0,0,9,9,5,0,695,1160708,318041.38,902350.13,79512.125,8207.5166 -1089,1331,2396,2395,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.8459778,7.8777246,0,17,-1,66.074654,0,2,2,2019,10,0,27,37,1,1,0,10.45739,10.45739,0,0,0,0,0,1,1,0,6.5733905,0,49,55,51,56,8,2,3,0,0,9,9,5,0,695,1160708,318041.38,902350.13,79512.125,8207.5166 -1090,1332,2397,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-967.0235,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.2,25.69,-9,-9,10,1,1,0,0,3,9,1,0,690,41923.492,3682.8733,0,0,1240.5254 -1091,1333,2398,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.8667946,8.7249079,0,0,0,-1005.75,0,1,1,2019,7,0,55,55,1,0,0,9.5225811,9.5225811,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,2924,-329741.78,71124.602,0,0,1980.6749 -1092,1334,2399,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.27003,8.659193,0,0,0,-962.9563,0,2,2,2019,6,0,46,46,1,0,0,11.05853,11.05853,0,0,0,0,0,0,0,0,2.9731002,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,1,10,10,4,1,1542,114429.06,-647.18829,0,0,1930.5945 -1093,1335,2400,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,7.6650901,7.6365652,0,0,0,-1071.8605,-9,2,2,2019,7,0,50,0,1,0,0,5.6215382,5.6215382,0,0,0,0,0,0,0,0,0,0,41.73,45.87,-9,-9,6.666666666666667,1,1,0,0,10,2,4,0,1738,254879.97,20850.494,0,0,1646.2736 -1094,1336,2401,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-991.24579,0,2,2,2019,29,9,0,60,3,9,0,0,0,0,0,0,0,42,1,0,1,1.4049813,0,17.68,47.67,-9,-9,1.666666666666667,1,1,0,0,7,12,1,0,876,0,0,0,0,-47.844707 -1095,1337,2402,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.8727574,8.0117073,0,0,0,-970.3291,-9,3,-9,2019,10,0,32,0,1,1,0,11.971073,11.971073,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,8,3,4,0,0,8,8,4,1,166,423494.47,30469.529,249346.38,0,864.71936 -1095,1338,2403,-9,2402,-9,1,1,23,0,0,0,2,2,-9,0,1,0,0,0,0,0,-959.29437,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.9,46.44,-9,-9,10,3,4,0,0,0,8,2,1,2636,-74076.633,0,0,0,-49.708595 -1096,1339,2404,2406,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,10,1,39.308262,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,34.44,56.89,50.73,8.333333333333334,1,1,0,0,0,2,2,0,544.25,247318.72,0,0,0,2464.2234 -1096,1339,2405,-9,2404,2406,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6479,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,544.25,247318.72,0,0,0,2464.2234 -1096,1339,2406,2404,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.9720249,7.8561959,0,10,-1,18.954504,0,-9,-9,2019,9,0,80,0,1,0,0,3.5591877,3.5591877,0,0,0,0,0,1,1,0,0,0,56.89,50.73,54.55,34.44,3.333333333333333,1,1,0,0,4,2,2,0,544.25,247318.72,0,0,0,2464.2234 -1096,1339,2407,-9,2404,2406,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.2301,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,544.25,247318.72,0,0,0,2464.2234 -1096,1340,2408,-9,2404,2406,1,1,19,0,2,0,2,2,-9,0,4,3.7594447,3.6331189,0,0,0,-1076.3585,-9,2,2,2019,11,0,2,0,1,2,1,1.6415187,1.6415187,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,2,2,2,0,1258,300242.72,0,0,0,65.386398 -1096,1341,2409,-9,2404,2406,1,0,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-865.86475,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.081435345,0,48.1,42.32,-9,-9,5,1,1,0,0,0,2,1,0,99,110720.37,0,0,0,-579.99103 -1097,1342,2410,2411,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,47,-2,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,39.74,41.69,7,2,3,0,1,0,6,1,1,1058.5,8122.9141,0,0,0,1429.387 -1097,1342,2411,2410,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,47,2,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,41.69,50,47,6.666666666666667,2,3,0,1,0,6,1,1,1058.5,8122.9141,0,0,0,1429.387 -1098,1343,2412,2413,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.2718744,7.1809988,0,1,0,34.625702,0,1,-9,2019,8,0,32,38,1,0,0,6.0110488,6.0110488,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,8,10,4,1,234,108004.2,27142.264,0,0,2158.5369 -1098,1343,2413,2412,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1136045,7.8448668,0,1,0,2.9108593,-9,-9,-9,2019,6,0,38,0,1,0,0,8.6180792,8.6180792,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,6.666666666666667,1,1,0,0,2,10,4,1,234,108004.2,27142.264,0,0,2158.5369 -1099,1344,2414,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.9035892,9.1100416,0,0,0,-970.48389,0,2,1,2019,19,7,40,40,1,7,0,22.12207,22.12207,0,0,0,0,0,0,0,0,7.7254348,0,40.23,61.31,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,131,569375,52200.066,294050.81,112172.79,3995.4148 -1100,1345,2415,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.0745921,7.1454163,0,0,-1008.8388,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3365903,62.6,24.03,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,642,522031.84,63536.137,285091.94,0,1779.8632 -1101,1346,2416,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.4609971,6.9364505,0,0,-954.02686,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.32326537,6.6667857,67.21000000000001,27.42,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,194,437581.47,74050.313,114662.76,0,1240.6879 -1102,1347,2417,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.323761,8.3870764,0,0,0,-969.54852,0,2,2,2019,8,0,37,37,1,0,0,12.8922,12.8922,0,0,0,0,0,0,0,0,0,0,45.75,55.83,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,429,113029.87,269819.28,0,0,1235.663 -1102,1348,2418,-9,-9,2417,1,1,30,0,0,0,2,2,-9,0,4,8.126729,8.4274263,0,0,0,-1045.2754,0,2,2,2019,0,0,31,33,1,0,1,11.961473,11.961473,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,11,6,4,1,134,303580.19,33002.738,0,0,797.2182 -1103,1349,2419,2421,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.1767182,7.1807175,0,16,2,-80.502716,0,3,3,2019,8,0,23,17,1,0,0,5.3846602,5.3846602,0,0,0,0,0,1,1,0,2.8988388,0,60.53,48.35,52,55,8.333333333333334,1,1,0,0,8,2,3,1,581.33331,6403.8945,92522.875,82023.68,42959.781,3229.7456 -1103,1349,2420,-9,2419,2421,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,2,3,1,581.33331,6403.8945,92522.875,82023.68,42959.781,3229.7456 -1103,1349,2421,2419,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,7.8339849,8.0560026,0,6,-2,-15.364758,0,-9,-9,2019,9,0,48,40,1,1,0,6.7101173,6.7101173,0,0,0,0,0,1,1,0,1.8388849,0,52,55,60.53,48.35,7,1,1,0,0,1,2,3,1,581.33331,6403.8945,92522.875,82023.68,42959.781,3229.7456 -1104,1350,2422,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.0511312,7.7649751,0,0,0,-985.82947,0,3,3,2019,11,0,22,22,1,0,0,16.639935,16.639935,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,7,11,3,0,857,-307042.94,92777.492,0,0,1019.1475 -1104,1351,2423,-9,2422,-9,1,1,18,0,0,0,2,2,1,0,4,8.0756826,7.9628758,0,0,0,-983.16412,-9,2,-9,2019,5,0,37,0,1,0,1,7.5662684,7.5662684,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,475,-761071.38,0,0,0,1319.3492 -1105,1352,2424,2425,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,27,-3,0,-9,-9,-9,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,21.7,36.46,52.37,56.93,0,2,3,0,0,0,6,1,0,810,32581.531,0,0,0,2294.1885 -1105,1352,2425,2424,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,28,3,0,-9,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,52.37,56.93,21.7,36.46,1.666666666666667,1,1,1,0,0,6,1,0,810,32581.531,0,0,0,2294.1885 -1106,1353,2426,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.5550356,8.7166138,0,0,0,-1038.114,0,1,2,2019,27,9,45,47,1,9,0,16.948025,16.948025,0,0,0,0,0,0,0,0,1.2256768,0,8.41,68.87,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,597,-108496.8,26579.309,0,0,2490.136 -1107,1354,2427,2428,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.4502411,9.6005106,0,18,4,63.743004,-9,1,1,2019,24,10,40,0,1,10,0,41.450134,41.450134,0,0,0,0,7,1,1,0,0,0,40.55,31.7,41.88,45.75,3.333333333333333,2,3,0,0,8,10,5,1,568.5,1250296.3,362965.75,857909.88,0,9089.7617 -1107,1354,2428,2427,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,18,-4,86.655006,-9,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,9.1616745,0,41.88,45.75,40.55,31.7,6.666666666666667,2,3,0,0,0,10,5,1,568.5,1250296.3,362965.75,857909.88,0,9089.7617 -1107,1355,2429,-9,2428,2427,1,1,19,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1007.7512,-9,1,1,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,10,1,1,1161,-122481.36,0,0,0,0 -1108,1356,2430,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.44061,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6785064,0,58.66,25.58,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,913,-232066.7,0,0,0,910.26923 -1109,1357,2431,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,6.6658859,6.8737683,0,0,0,-1110.8749,0,2,2,2019,11,0,24,20,1,0,0,4.4095888,4.4095888,0,0,0,0,2,1,1,0,6.1840115,0,63.55,39.7,-9,-9,3.333333333333333,1,1,0,0,10,12,2,1,214,15295.157,0,0,0,1057.5724 -1110,1358,2432,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.8163815,8.7527256,0,0,0,-1037.0405,0,1,2,2019,12,3,43,43,1,3,0,14.976998,14.976998,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,12,5,5,1,114,-77411.328,35404.453,0,0,2963.6465 -1111,1359,2433,-9,2436,2437,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-995.0094,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 -1111,1359,2434,-9,2436,2437,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.9471,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 -1111,1359,2435,-9,2436,2437,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-981.70123,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 -1111,1359,2436,2437,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,12,-7,-58.403057,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.14,46.37,40.23,61.31,10,2,3,0,0,0,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 -1111,1359,2437,2436,2438,-9,1,1,40,0,3,0,1,1,-9,0,4,9.2821922,9.1558638,0,12,7,7.0250216,0,3,-9,2019,11,0,37,36,1,0,0,26.399643,26.399643,0,0,0,0,0,1,1,0,0,0,40.23,61.31,45.14,46.37,5,2,3,0,0,12,4,4,1,812.40002,376557.69,179734.63,428557.44,165452.02,3710.9758 -1111,1360,2438,-9,-9,-9,1,0,74,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1014.895,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,2.8373761,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,4,1,1,2715,116405.6,0,0,0,944.53802 -1112,1361,2439,2440,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,0,0,0,6,2,-51.98011,0,-9,-9,2019,18,7,0,28,3,7,0,0,0,0,0,0,0,0,1,1,0,7.4915056,0,48.28,60.18,53.3,55.06,1.666666666666667,1,1,1,1,10,9,2,1,323.5,21323.949,59061.105,0,0,1657.9188 -1112,1361,2440,2439,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,6.6715951,6.924274,0,6,-2,-94.684517,0,-9,-9,2019,5,0,12,24,1,0,0,9.3260469,9.3260469,0,0,0,0,0,1,1,0,0,0,53.3,55.06,48.28,60.18,8.333333333333334,1,1,0,1,10,9,2,1,323.5,21323.949,59061.105,0,0,1657.9188 -1113,1362,2441,2442,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,7.6221566,8.1106396,6,1,211.2989,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,8.1851673,24.33,21.59,35.53,55.43,1.666666666666667,1,1,0,0,9,12,4,1,375,238580.44,-78827.109,0,0,3002.0049 -1113,1362,2442,2441,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.9174023,7.9333382,0,6,-1,-57.406502,0,2,2,2019,12,0,40,37,1,0,0,10.533989,10.533989,0,0,0,0,0,1,0,1,0,0,35.53,55.43,24.33,21.59,6.666666666666667,1,1,0,0,11,12,4,1,375,238580.44,-78827.109,0,0,3002.0049 -1114,1363,2443,-9,2445,2447,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.09698,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 -1114,1363,2444,-9,2445,2447,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.8767,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 -1114,1363,2445,2447,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,18,-2,-163.88571,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,55.91,36.24,8.333333333333334,2,3,0,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 -1114,1363,2446,-9,2445,2447,1,0,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-976.27472,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 -1114,1363,2447,2445,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.2947388,8.2105503,0,11,2,-129.83675,0,-9,-9,2019,7,0,40,48,1,0,0,11.286151,11.286151,0,0,0,0,0,1,1,0,0,0,55.91,36.24,52.43,55.57,8.333333333333334,2,3,0,0,13,2,3,1,2694.6001,1697.2998,16301.419,98145.453,63714.191,1694.3409 -1115,1364,2448,2451,-9,-9,1,1,43,1,3,0,1,1,-9,0,5,8.17453,8.0019207,0,7,0,135.68011,0,3,2,2019,11,0,56,40,1,0,0,6.705605,6.705605,0,0,0,0,0,1,1,0,0,0,51.14,60.45,61.12,51.57,6.666666666666667,4,2,0,0,8,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 -1115,1364,2449,-9,2451,2448,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.5355,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 -1115,1364,2450,-9,2451,2448,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.22473,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 -1115,1364,2451,2448,-9,-9,1,0,43,1,3,0,2,2,-9,0,4,7.7967739,7.6501403,0,8,0,39.089462,0,2,1,2019,14,3,22,22,1,3,0,15.164334,15.164334,0,0,0,0,0,1,1,0,0,0,61.12,51.57,51.14,60.45,8.333333333333334,3,4,0,0,9,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 -1115,1364,2452,-9,2451,2448,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.6172,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,3,0,523.40002,615630.13,447770.38,239834.97,50316.633,3059.4116 -1116,1365,2453,2454,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.6893063,5.7327065,47,-2,-166.61261,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.8420323,5.9100785,55.11,47.63,49.14,38.13,8.333333333333334,1,1,0,0,6,5,3,1,962.5,1134576.4,802328,225289.64,0,2150.5227 -1116,1365,2454,2453,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7381806,7.7485704,47,2,48.215595,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4448538,7.566186,49.14,38.13,55.11,47.63,8.333333333333334,1,1,0,0,0,5,3,1,962.5,1134576.4,802328,225289.64,0,2150.5227 -1117,1366,2455,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.3358741,5.4024401,0,0,-883.34143,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8484931,5.6153831,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,342,-506828.63,-26448.65,0,0,1002.5473 -1118,1367,2456,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1101.3916,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,7.4113646,3.7151752,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,5,13,2,1,1783,514067.22,0,70243.289,0,411.1369 -1119,1368,2457,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,1,0,5.8138061,5.7113762,0,0,-1057.5746,0,2,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,6.4462552,0,24.93,19.95,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,561,-92004.227,71038.344,0,0,1759.8491 -1119,1368,2458,-9,2457,-9,1,1,13,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1071.6162,-9,2,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,1,0,0,31,33,-9,-9,3,1,1,-9,0,0,10,2,0,561,-92004.227,71038.344,0,0,1759.8491 -1119,1368,2459,-9,2457,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.9646,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,561,-92004.227,71038.344,0,0,1759.8491 -1120,1369,2460,2461,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5483408,8.6270065,0,28,-10,4.9309297,0,2,2,2019,7,0,37,37,1,0,0,12.363585,12.363585,0,0,0,0,0,1,1,0,5.2101579,0,60.69,53.18,41.47,58.08,8.333333333333334,1,1,0,0,8,4,3,1,1565.5,241424.39,75728.953,180370.42,73238.922,1845.4956 -1120,1369,2461,2460,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,0,6.3047018,6.1965623,27,10,-30.215046,0,3,3,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.9101942,6.2193451,41.47,58.08,60.69,53.18,8.333333333333334,1,1,0,0,3,4,3,1,1565.5,241424.39,75728.953,180370.42,73238.922,1845.4956 -1120,1370,2462,-9,2461,2460,1,0,22,0,1,0,2,2,0,0,3,0,0,0,0,0,-1037.5146,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.76,50.85,-9,-9,3.333333333333333,1,1,0,0,1,4,1,1,1151,0,0,0,0,1048.5547 -1120,1370,2463,-9,2462,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.8199,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,1,1151,0,0,0,0,1048.5547 -1121,1371,2464,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.8280535,4.8702641,0,0,-932.80078,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1658223,5.0556102,39.34,33.36,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,209,408766.66,0,254023.73,0,1199.0919 -1122,1372,2465,2466,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3233509,8.0940018,0,7,-2,36.992992,0,2,2,2019,10,0,37,37,1,0,0,11.863202,11.863202,0,0,0,0,7,1,1,0,7.1881561,0,54.37,54.8,61.12,51.57,8.333333333333334,1,1,0,0,8,10,5,1,467.5,1603996.8,963602,341387.63,0,3972.2349 -1122,1372,2466,2465,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.3596869,8.0600929,4.4142356,7,2,183.45979,0,3,3,2019,7,0,38,38,1,0,0,11.720953,11.720953,0,0,0,0,2,1,1,0,4.4450703,0,61.12,51.57,54.37,54.8,8.333333333333334,1,1,0,0,8,10,5,1,467.5,1603996.8,963602,341387.63,0,3972.2349 -1122,1373,2467,-9,-9,-9,1,0,23,0,0,1,3,0,0,0,4,0,0,0,0,0,-956.63348,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,58.56,-9,-9,10,1,1,0,0,0,10,2,1,1576,-274413.56,0,0,0,510.0773 -1123,1374,2468,2469,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.8848939,6.9272394,48,-8,-26.286036,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4818437,6.7246656,54.2,57.49,59.14,52.5,10,1,1,0,0,0,9,3,1,444,1117023.8,435001.47,250471.91,0,2404.1011 -1123,1374,2469,2468,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.4589281,7.4156303,48,8,-2.8608353,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.1650305,7.4963527,59.14,52.5,54.2,57.49,10,1,1,0,0,0,9,3,1,444,1117023.8,435001.47,250471.91,0,2404.1011 -1124,1375,2470,2471,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.5196905,9.6430073,6.1831627,9,7,71.100861,0,3,2,2019,11,1,50,35,1,1,0,39.441124,39.441124,1,0,0,0,14.5,0,0,0,4.2828646,6.8801785,51.47,53.17,46.39,60.99,6.666666666666667,1,1,0,0,11,7,5,1,962,22899.07,101622.18,0,0,5037.0054 -1124,1375,2471,2470,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,9,-7,79.810654,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.9232924,0,46.39,60.99,51.47,53.17,8.333333333333334,1,1,0,0,5,7,5,1,962,22899.07,101622.18,0,0,5037.0054 -1125,1376,2472,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.1681938,5.9230208,0,0,-1072.4519,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4137034,5.8030977,54.79,55.86,-9,-9,0,1,1,0,0,0,7,2,0,109,197703.52,131957.47,207516.84,0,1379.5753 -1126,1377,2473,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.3516293,8.1702309,0,0,0,-1081.7212,0,2,2,2019,8,0,46,40,1,0,0,10.951002,10.951002,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,724,175528.98,12131.523,0,0,1918.6105 -1127,1378,2474,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-998.35284,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,4.7668033,0,0,1,1,0,0,0,33.73,21.25,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,887,35548.676,0,0,0,1142.6205 -1128,1379,2475,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.8711433,9.0927572,0,0,0,-939.86841,0,2,2,2019,8,0,40,40,1,0,0,20.570595,20.570595,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,2,5,0,1502,490894.88,178281.31,276582.41,217721.98,4809.0513 -1129,1380,2476,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,3,0,7.1750765,6.8537889,0,0,-1008.4429,0,-9,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.798008,7.1584468,58.73,26.83,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1958,467157.34,180342.89,198351.16,0,1331.6702 -1130,1381,2477,2478,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,10,1,-116.43937,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,1.7303482,1.0647705,0,1,1,0,0,0,40.52,37.72,41.12,59.35,6.666666666666667,1,1,0,0,0,12,2,1,302.5,527125.44,-19985.727,294424.97,0,361.42993 -1130,1381,2478,2477,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.1408224,6.5137587,10,-1,120.24073,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3441594,6.4041538,41.12,59.35,40.52,37.72,8.333333333333334,1,1,0,0,3,12,2,1,302.5,527125.44,-19985.727,294424.97,0,361.42993 -1131,1382,2479,2480,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.6796045,8.488348,0,1,-3,-18.891476,-9,-9,-9,2019,15,4,53,0,1,4,0,12.244804,12.244804,0,0,0,0,0,1,1,0,0,0,39.99,62.58,39.23,45.83,5,1,1,0,0,10,4,3,0,1584.3334,-84986.891,74495.867,0,0,2241.8179 -1131,1382,2480,2479,-9,-9,1,0,33,1,2,0,1,1,-9,1,3,0,0,0,1,3,52.305893,-9,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,45.83,39.99,62.58,5,1,1,1,0,6,4,3,0,1584.3334,-84986.891,74495.867,0,0,2241.8179 -1131,1382,2481,-9,2480,2479,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.36353,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,3,0,1584.3334,-84986.891,74495.867,0,0,2241.8179 -1132,1383,2482,-9,2483,-9,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1083.3466,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.43881068,0,22.59,65.42,-9,-9,1.666666666666667,1,1,0,0,0,8,5,1,877.5,656962.94,-16050.371,563101.81,0,1611.4177 -1132,1383,2483,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4220524,8.3341799,6.5781679,0,0,-1021.8643,0,-9,-9,2019,9,0,42,47,1,0,0,12.089098,12.089098,0,0,0,0,0,1,1,0,6.2435207,0,51.83,57.2,-9,-9,3.333333333333333,1,1,0,0,8,8,5,1,877.5,656962.94,-16050.371,563101.81,0,1611.4177 -1133,1384,2484,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-963.60345,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.7,23.15,-9,-9,0,1,1,0,0,0,11,1,1,418,229171.25,-3997.697,19511.494,0,1911.6593 -1133,1384,2485,-9,-9,2484,1,1,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-979.9715,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,1,418,229171.25,-3997.697,19511.494,0,1911.6593 -1134,1385,2486,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,7.9952416,7.8505659,0,0,0,-1044.4279,-9,2,2,2019,1,0,45,0,1,0,0,7.0057087,7.0057087,0,0,0,0,0,0,0,0,0,0,69.98,31.34,-9,-9,8.333333333333334,2,3,0,0,10,5,4,0,641,133656.42,0,0,0,1303.4243 -1135,1386,2487,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-928.10986,0,2,2,2019,7,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,58.91,24.31,-9,-9,10,1,1,0,0,7,4,1,1,1134,138809.44,0,0,0,2211.9529 -1136,1387,2488,2489,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.7736549,8.7249022,0,10,0,-91.127159,0,2,2,2019,9,0,38,37,1,0,0,18.239491,18.239491,0,0,0,0,0,1,1,0,0,0,54.79,55.86,44,52,6.666666666666667,1,1,0,0,11,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 -1136,1387,2489,2488,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,10,0,-3.2183919,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,54.79,55.86,6.666666666666667,1,1,0,1,5,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 -1136,1387,2490,-9,2489,2488,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.15356,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 -1136,1387,2491,-9,2489,2488,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.68884,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,465.25,512960.75,159724.13,417537.06,154326.56,2257.2966 -1137,1388,2492,2493,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.2075143,7.5882535,0,29,-3,-11.46616,0,-9,-9,2019,6,0,22,22,1,0,0,8.1526041,8.1526041,0,0,0,0,0,1,1,0,0,0,62.66,52.4,51.74,47.77,0,1,1,0,0,10,1,4,0,617.5,382403.44,315904.66,184051.66,49742.754,2306.5757 -1137,1388,2493,2492,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.1301184,8.0504341,0,29,3,-56.245888,0,-9,2,2019,11,0,40,40,1,0,0,7.1963749,7.1963749,0,0,0,0,0,1,1,0,0,0,51.74,47.77,62.66,52.4,8.333333333333334,1,1,0,0,12,1,4,0,617.5,382403.44,315904.66,184051.66,49742.754,2306.5757 -1137,1389,2494,-9,2492,2493,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-870.74017,-9,2,3,2019,23,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,36.37,35.17,-9,-9,0,1,1,0,1,1,1,1,0,468,-187095.47,0,0,0,787.22791 -1137,1390,2495,2496,2492,2493,1,0,20,0,0,0,3,3,-9,1,2,0,0,0,3,-2,-105.10506,0,2,3,2019,29,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,13.88,54.62,26.62,55.84,0,1,1,1,0,0,1,3,0,741,169755.84,-4002.5527,0,0,1179.082 -1137,1390,2496,2495,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.9353275,7.922441,0,3,2,17.555958,0,-9,-9,2019,23,11,24,25,1,11,0,10.808733,10.808733,0,0,0,0,0,1,1,0,0,0,26.62,55.84,13.88,54.62,3.333333333333333,1,1,0,0,2,1,3,0,741,169755.84,-4002.5527,0,0,1179.082 -1138,1391,2497,-9,-9,-9,1,0,52,0,2,0,3,3,-9,1,2,0,5.51616,6.0204701,0,0,-1152.9323,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,6.2513638,0,31.6,39.8,-9,-9,5,1,1,0,0,0,12,2,0,1134.6666,-184825.91,0,0,0,1788.4901 -1138,1391,2498,-9,2497,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1001.1915,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,1134.6666,-184825.91,0,0,0,1788.4901 -1138,1391,2499,-9,2497,-9,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1028.3573,-9,3,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,47.05,57,-9,-9,5,1,1,0,0,0,12,2,0,1134.6666,-184825.91,0,0,0,1788.4901 -1139,1392,2500,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,4.0485191,4.119307,0,0,-970.27783,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,1.8582294,0,0,1,1,0,3.7841053,0,41.48,24.66,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,765,93608,22937.75,236449.31,0,992.32208 -1140,1393,2501,-9,2502,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.19586,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,1,0,1021.5,0,0,0,0,739.0451 -1140,1393,2502,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,0,0,-974.36212,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.95,50.92,-9,-9,1.666666666666667,3,4,0,1,0,6,1,0,1021.5,0,0,0,0,739.0451 -1141,1394,2503,2504,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,23,-8,0,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,47,49,50,49,7,2,3,0,0,0,8,1,1,214,-118684.38,125350.73,0,0,561.23932 -1141,1394,2504,2503,-9,-9,1,1,63,0,0,0,2,2,-9,1,3,0,0,0,23,8,0,-9,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,47,49,7,2,3,0,0,7,8,1,1,214,-118684.38,125350.73,0,0,561.23932 -1141,1395,2505,-9,2503,2504,1,1,25,0,0,0,2,2,-9,0,2,8.6935854,8.6088295,0,0,0,-965.56128,0,2,2,2019,12,2,60,50,1,2,1,10.437279,10.437279,0,0,0,0,0,1,1,0,0,0,45.24,47.41,-9,-9,6.666666666666667,2,3,0,0,5,8,5,1,839,1073656.9,6515.3774,0,0,2496.0435 -1141,1396,2506,-9,2503,2504,1,1,23,0,0,0,1,1,-9,0,4,8.154501,8.1029806,0,0,0,-875.72076,0,2,2,2019,14,2,37,58,1,2,1,10.037854,10.037854,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,6.666666666666667,2,3,0,0,2,8,4,1,1125,-401516.16,0,0,0,1204.2772 -1142,1397,2507,2508,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.2872324,8.294982,0,3,0,-6.2888784,0,-9,-9,2019,6,0,35,35,1,0,0,12.973748,12.973748,0,0,0,0,0,0,0,0,0,0,58.89,48.6,55.79,52.62,8.333333333333334,4,2,0,0,4,12,5,1,1165.5,206804.77,32136.551,91615.109,83812.242,3870.6313 -1142,1397,2508,2507,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.764307,8.9274521,0,3,0,30.574059,0,2,1,2019,8,0,45,40,1,0,0,17.176344,17.176344,0,0,0,0,2,0,0,0,.85040754,0,55.79,52.62,58.89,48.6,8.333333333333334,1,1,0,0,7,12,5,1,1165.5,206804.77,32136.551,91615.109,83812.242,3870.6313 -1143,1398,2509,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-949.32941,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,5,1,0,172,-46239.617,-33171.84,0,0,1492.5645 -1143,1399,2510,-9,2509,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-952.82379,-9,3,-9,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,2.3206372,0,46.85,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,123,0,0,0,0,72.24762 -1144,1400,2511,2512,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.9139214,6.6971478,54,-6,8.4686003,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,23.685844,0,0,1,1,0,0,6.9915252,57.34,9.970000000000001,52.23,35.61,5,1,1,0,0,3,2,3,1,544.5,1257006.6,696684.13,260825,0,2910.3145 -1144,1400,2512,2511,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.727169,7.8374453,54,6,130.13005,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,4.3254585,7.587709,52.23,35.61,57.34,9.970000000000001,8.333333333333334,1,1,0,0,0,2,3,1,544.5,1257006.6,696684.13,260825,0,2910.3145 -1145,1401,2513,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5324221,8.8173056,0,0,0,-978.63745,0,1,1,2019,6,1,42,44,1,1,0,12.178626,12.178626,0,0,0,0,0,0,0,0,3.5561659,0,63.95,51.85,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,897,392766.81,120212.43,0,0,1865.7909 -1146,1402,2514,2515,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,7.5588088,7.1796699,9,6,62.899727,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.7799149,7.4689689,53,55,57.33,53.46,8,1,1,0,0,0,10,3,1,780.5,606415.88,326803.63,209561.61,0,1850.5195 -1146,1402,2515,2514,-9,-9,1,0,45,0,0,0,2,2,-9,1,3,6.8305483,6.7876749,0,21,-6,131.27411,0,2,2,2019,12,0,10,14,1,0,0,9.5603323,9.5603323,0,0,0,0,116,1,1,0,0,0,57.33,53.46,53,55,8.333333333333334,1,1,0,0,2,10,3,1,780.5,606415.88,326803.63,209561.61,0,1850.5195 -1147,1403,2516,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.1424394,7.2302003,5.2139411,0,0,-1033.5546,0,3,3,2019,8,0,20,20,1,0,0,7.0274377,7.0274377,0,0,0,0,0,0,0,0,0,5.0655375,46.77,49.78,-9,-9,6.666666666666667,1,1,0,0,11,12,3,1,1148,97905.898,0,0,0,929.0965 -1148,1404,2517,2518,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.944315,6.418725,55,-3,-63.7943,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3556333,60.05,45.35,62.25,48.33,8.333333333333334,1,1,0,0,5,2,3,1,428,1179169.5,470342.41,338169.81,0,5992.7969 -1148,1404,2518,2517,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.7294559,8.0029554,55,3,-71.009712,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.2207041,8.0667496,62.25,48.33,60.05,45.35,8.333333333333334,1,1,0,0,7,2,3,1,428,1179169.5,470342.41,338169.81,0,5992.7969 -1149,1405,2519,-9,-9,-9,1,1,62,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1048.0725,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.04,18.56,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,708,-202016.44,0,0,0,1834.1145 -1150,1406,2520,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.8372416,6.8532805,0,0,-945.07776,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0099788,41.14,30.1,-9,-9,5,1,1,0,0,0,1,2,0,869,274457.19,302525.81,141775.05,0,758.61035 -1151,1407,2521,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,5,0,4.8307691,4.6006804,0,0,-1032.3898,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.2018356,0,54.1,59.11,-9,-9,10,1,1,0,0,1,4,2,0,1124,-95555.719,0,0,0,211.18958 -1152,1408,2522,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.07025,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,3.1410687,2.7193711,27.495102,0,1,1,0,2.1110148,0,52,45,-9,-9,8,1,1,0,0,0,8,1,1,720,113033.54,0,267437.88,0,734.40564 -1153,1409,2523,2525,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,0,0,0,7,-3,-46.026783,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,5.016067,0,46.33,55.93,58.15,52.91,8.333333333333334,2,3,0,0,0,8,5,1,268.33334,636001.38,332611.84,562797.38,186856.75,3203.5361 -1153,1409,2524,-9,2523,2525,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-829.95428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,1,268.33334,636001.38,332611.84,562797.38,186856.75,3203.5361 -1153,1409,2525,2523,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,9.5438776,10.030816,0,20,3,28.731375,0,2,2,2019,7,0,48,46,1,0,0,37.37751,37.37751,0,0,0,0,0,0,0,0,4.4821444,0,58.15,52.91,46.33,55.93,10,2,3,0,0,9,8,5,1,268.33334,636001.38,332611.84,562797.38,186856.75,3203.5361 -1154,1410,2526,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.0298853,8.162775,0,0,0,-986.10638,0,2,1,2019,13,1,38,37,1,1,0,10.773162,10.773162,0,0,0,0,0,0,0,0,.6305936,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,2188,-48446.797,-27858.553,246599.22,0,1897.5635 -1155,1411,2527,2528,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,62,-5,0,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.9342145,0,58.3,52.91,54,45,8.333333333333334,1,1,0,0,0,9,2,1,833,361907.28,-73.691406,237758.88,0,1188.8521 -1155,1411,2528,2527,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,10,5,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,45,58.3,52.91,8,1,1,0,0,0,9,2,1,833,361907.28,-73.691406,237758.88,0,1188.8521 -1156,1412,2529,2530,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9237351,7.849874,0,7,-18,-6.6778836,0,3,3,2019,8,0,38,38,1,0,0,8.5770626,8.5770626,0,0,0,0,0,1,1,0,0,0,62.42,32.41,59.99,44.01,5,1,1,0,0,9,7,4,0,453.5,1145680,0,895332.69,0,2457.6067 -1156,1412,2530,2529,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.2026906,7.8610549,6.6715312,7,18,30.761642,0,3,3,2019,10,0,24,24,1,0,0,7.290123,7.290123,0,0,0,0,0,1,1,0,7.0569463,6.7604284,59.99,44.01,62.42,32.41,8.333333333333334,1,1,0,0,9,7,4,0,453.5,1145680,0,895332.69,0,2457.6067 -1157,1413,2531,2532,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8316054,8.0321922,4,7,78.041168,0,3,2,2019,10,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5113926,7.7228575,49.04,55.86,55.3,55.6,8.333333333333334,1,1,0,0,9,6,3,1,291.5,950539,518137.81,451276.03,0,3071.4209 -1157,1413,2532,2531,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,4,-7,-50.964096,0,-9,-9,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6290293,0,55.3,55.6,49.04,55.86,10,1,1,0,0,9,6,3,1,291.5,950539,518137.81,451276.03,0,3071.4209 -1158,1414,2533,-9,2534,2535,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-990.20374,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,1016.5,53942.988,0,0,0,2820.355 -1158,1414,2534,2535,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,7.0741243,7.0157056,0,1,1,-72.13829,-9,-9,-9,2019,21,9,18,0,1,9,0,9.4023228,9.4023228,0,0,0,0,0,1,1,0,0,0,42.64,50.88,60.12,54.8,5,1,1,0,0,1,6,3,0,1016.5,53942.988,0,0,0,2820.355 -1158,1414,2535,2534,-9,-9,1,1,27,1,3,0,3,3,-9,0,4,8.6552105,8.2082272,0,1,-1,-59.839066,0,2,2,2019,7,1,45,45,1,1,0,10.879789,10.879789,0,0,0,0,0,1,1,0,0,0,60.12,54.8,42.64,50.88,1.666666666666667,1,1,0,0,9,6,3,0,1016.5,53942.988,0,0,0,2820.355 -1158,1414,2536,-9,2534,2535,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.8181,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1016.5,53942.988,0,0,0,2820.355 -1159,1415,2537,2538,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,7,-5,0,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,2.4551425,0,0,1,1,0,0,0,58.45,19.24,60.03,45.37,8.333333333333334,1,1,0,1,0,13,1,1,471.5,222388.88,0,0,0,1481.5181 -1159,1415,2538,2537,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,7,5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.03,45.37,58.45,19.24,5,1,1,0,0,0,13,1,1,471.5,222388.88,0,0,0,1481.5181 -1160,1416,2539,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,7.5452738,7.5994854,0,0,0,-873.53027,0,2,3,2019,10,0,28,33,1,0,0,6.7185054,6.7185054,0,0,0,0,0,1,1,0,0,0,45.55,41.73,-9,-9,6.666666666666667,1,1,0,0,3,12,3,1,267,428751.03,-55256.816,0,0,702.8006 -1161,1417,2540,2541,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,44,-2,68.754402,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,57.33,53.46,7,1,1,0,0,0,13,2,1,189.5,1463880.3,673945,378204.66,0,2270.7649 -1161,1417,2541,2540,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.0569539,7.5288601,44,2,-58.713169,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0271387,57.33,53.46,50,47,8.333333333333334,1,1,0,0,8,13,2,1,189.5,1463880.3,673945,378204.66,0,2270.7649 -1162,1418,2542,2543,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.5763888,5.4853292,3,-5,-38.230015,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,73.505432,0,0,1,1,0,6.0011373,5.2447538,44.88,30.61,60.98,40.77,1.666666666666667,1,1,0,0,0,5,2,1,862.5,197375.19,232262.22,110600.67,0,2175 -1162,1418,2543,2542,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.1548986,7.281342,3,5,-9.6324301,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.2221708,7.7434411,60.98,40.77,44.88,30.61,8.333333333333334,1,1,0,0,0,5,2,1,862.5,197375.19,232262.22,110600.67,0,2175 -1163,1419,2544,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1043.8252,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.36,49.13,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,1323,-27085.092,0,155695.52,0,0 -1164,1420,2545,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.2681975,7.4593229,0,0,0,-1064.4507,0,3,2,2019,12,0,18,18,1,2,0,10.608109,10.608109,0,0,0,0,0,1,1,0,0,0,47,50,-9,-9,7,3,4,0,0,9,8,3,0,179,-99440.555,157749.95,0,0,1516.6787 -1164,1421,2546,-9,2545,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-866.03473,-9,3,-9,2019,10,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,52.69,44.73,-9,-9,8.333333333333334,3,4,0,0,4,8,1,0,598,184707.03,0,0,0,-76.65757 -1164,1422,2547,-9,2545,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-985.86713,-9,3,-9,2019,9,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,53.78,56.44,-9,-9,3.333333333333333,3,4,1,0,2,8,1,0,1466,0,0,0,0,0 -1165,1423,2548,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3592243,8.2741547,0,0,0,-1024.2266,0,2,2,2019,10,0,45,40,1,0,0,13.03217,13.03217,0,0,0,0,0,0,0,0,3.9242606,0,41.21,51.34,-9,-9,5,1,1,0,0,9,7,4,0,506,538329.38,513302.19,163666.2,45672.773,1440.3833 -1166,1424,2549,2550,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,7.9909306,8.0136366,0,23,8,-75.228516,0,-9,-9,2019,9,0,35,37,1,1,0,8.1625042,8.1625042,0,0,0,0,0,1,1,0,0,0,52,55,54.69,57.47,8,1,1,0,0,1,12,5,0,415.5,473043.25,60184.781,349592.75,141036.59,3649.4119 -1166,1424,2550,2549,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,9.0402164,8.817379,0,21,-8,62.330074,0,3,2,2019,11,0,45,57,1,0,0,18.625883,18.625883,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,55,6.666666666666667,1,1,0,0,10,12,5,0,415.5,473043.25,60184.781,349592.75,141036.59,3649.4119 -1166,1425,2551,-9,2550,2549,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-930.45111,1,2,1,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,901,353308.34,0,0,0,279.18237 -1167,1426,2552,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.7471619,7.7524991,0,0,0,-946.52008,0,2,2,2019,13,2,37,36,1,2,0,7.6015124,7.6015124,0,0,0,0,0,0,0,0,1.1077442,0,17.46,60.44,-9,-9,5,1,1,0,0,8,11,3,0,914,276496.09,-4220.0781,0,0,1054.0273 -1167,1427,2553,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.5781946,8.6179857,0,0,0,-972.33813,0,-9,-9,2019,6,0,60,70,1,0,0,8.070138,8.070138,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,10,11,5,0,228,3130.4326,-85746.563,0,0,2242.2537 -1168,1428,2554,2556,-9,-9,1,1,40,0,1,0,3,3,-9,0,3,4.9838443,5.0851779,0,12,2,35.018303,0,3,3,2019,7,0,50,50,1,0,0,.39348733,.39348733,0,0,0,0,0,1,1,0,0,0,45.29,49.34,51.83,57.2,3.333333333333333,1,1,0,0,10,7,3,1,1592.6666,290427.84,72184,205769.55,36177.383,1243.6255 -1168,1428,2555,-9,2556,2554,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.3409,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1592.6666,290427.84,72184,205769.55,36177.383,1243.6255 -1168,1428,2556,2554,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,7.5760345,8.0647192,0,12,-2,15.546376,0,1,2,2019,13,1,42,47,1,1,0,5.8032451,5.8032451,0,0,0,0,0,1,1,0,1.5864246,0,51.83,57.2,45.29,49.34,6.666666666666667,1,1,0,0,8,7,3,1,1592.6666,290427.84,72184,205769.55,36177.383,1243.6255 -1169,1429,2557,2559,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.0211449,7.8278399,5.6186833,8,-4,-179.40166,0,3,3,2019,6,0,30,25,1,0,0,12.4233,12.4233,0,0,0,0,0,1,1,0,8.5704365,0,55.36,51.57,43.6,51.61,8.333333333333334,1,1,0,0,10,7,4,0,443.66666,458198.94,265566.78,0,0,4664.4375 -1169,1429,2558,-9,2559,2557,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.7639,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,443.66666,458198.94,265566.78,0,0,4664.4375 -1169,1429,2559,2557,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.3590136,8.2786493,0,8,4,-34.056572,0,2,2,2019,16,4,16,15,1,4,0,32.364288,32.364288,0,0,0,0,0,1,1,0,0,0,43.6,51.61,55.36,51.57,3.333333333333333,1,1,0,0,7,7,4,0,443.66666,458198.94,265566.78,0,0,4664.4375 -1170,1430,2560,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7854958,6.9138713,0,0,-1037.0887,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2055187,6.3656998,60.12,54.8,-9,-9,10,1,1,0,0,0,10,2,1,324,309099.56,203884.44,162899,0,1045.0878 -1171,1431,2561,2562,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.4835286,7.6640253,0,6,-2,62.749195,0,3,3,2019,6,0,16,20,1,0,0,16.365728,16.365728,0,0,0,0,0,0,0,0,0,0,48.18,61.8,51,49,10,1,1,0,0,9,13,4,1,910,331972.84,-3403.7822,233845.94,95042.641,18655.82 -1171,1431,2562,2561,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8526936,8.0978441,0,6,2,-13.801078,-9,3,3,2019,10,0,20,0,1,1,0,17.138979,17.138979,0,0,0,0,0,0,0,0,9.6449852,0,51,49,48.18,61.8,7,1,1,0,0,1,13,4,1,910,331972.84,-3403.7822,233845.94,95042.641,18655.82 -1172,1432,2563,-9,2564,2565,1,1,44,0,0,0,1,1,-9,0,5,8.7799826,9.175292,0,0,0,-906.47748,0,3,3,2019,10,0,50,53,1,0,0,19.529427,19.529427,0,0,0,0,0,1,1,0,2.5208683,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,479,230493.36,296300.84,562834.56,400483.09,2376.4041 -1172,1433,2564,2565,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,5,1,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,1.1641489,0,1,1,0,0,0,45.35,50.81,60.12,54.8,5,1,1,0,0,0,2,1,1,650.5,171333.08,21254.443,126191.08,0,1121.0613 -1172,1433,2565,2564,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,5,-1,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.35,50.81,8.333333333333334,1,1,0,0,10,2,1,1,650.5,171333.08,21254.443,126191.08,0,1121.0613 -1173,1434,2566,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,0,4.1971297,4.0903864,0,0,-1089.7385,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.075819,3.8950019,52,48,-9,-9,7,1,1,0,1,0,7,2,0,886,-475413.31,-109840.92,0,0,649.18823 -1174,1435,2567,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.7231755,5.8122835,0,0,-1045.8029,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8983731,62.18,36.18,-9,-9,10,1,1,0,0,0,6,2,1,1400,29507.133,-34581.867,127741.54,0,1332.7472 -1175,1436,2568,2569,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.9061203,8.1449795,0,2,3,39.655357,0,2,2,2019,7,0,35,38,1,0,0,8.4090614,8.4090614,0,0,0,0,0,1,1,0,1.5420313,0,49.41,58.28,28.73,61.03,8.333333333333334,4,2,0,0,9,8,4,0,652.5,98191.063,127626.97,218255.92,145387.58,2141.5911 -1175,1436,2569,2568,-9,-9,1,1,22,0,0,0,1,1,1,0,3,7.7673483,8.3616705,0,2,-3,-10.422322,-9,-9,-9,2019,25,10,75,0,1,10,0,3.9682946,3.9682946,0,0,0,0,0,1,1,0,.8237949,0,28.73,61.03,49.41,58.28,8.333333333333334,1,1,0,0,0,8,4,0,652.5,98191.063,127626.97,218255.92,145387.58,2141.5911 -1176,1437,2570,2571,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.945941,8.7458487,0,23,0,111.3882,0,2,2,2019,7,0,42,0,1,0,0,17.024145,17.024145,0,0,0,0,0,0,0,0,2.7598958,0,59.87,37.67,54.2,57.49,10,1,1,0,0,8,7,5,1,1471.5,2603853,897520,736558,40038.094,5097.5547 -1176,1437,2571,2570,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.8487902,8.5659714,0,23,9,123.93287,0,-9,-9,2019,12,0,40,40,1,0,0,13.682916,13.682916,0,0,0,0,0,0,0,0,0,0,54.2,57.49,59.87,37.67,8.333333333333334,1,1,0,0,10,7,5,1,1471.5,2603853,897520,736558,40038.094,5097.5547 -1176,1438,2572,-9,2570,2571,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-917.06079,-9,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,-9,-9,10,1,1,0,0,0,7,1,1,463,69838.328,0,0,0,0 -1176,1439,2573,-9,2570,2571,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-943.25842,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.7123334,0,62.39,56.71,-9,-9,10,1,1,0,0,0,7,2,1,361,175049.19,0,0,0,-74.442863 -1177,1440,2574,2575,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.219471,8.1270237,0,4,5,-54.348522,0,-9,-9,2019,16,5,50,36,1,5,0,8.4529848,8.4529848,0,0,0,0,0,0,0,0,3.1367567,0,27.56,46.65,23.05,65.12,1.666666666666667,1,1,0,0,3,10,4,0,1128,312368.06,123686.05,193617.58,0,1747.2407 -1177,1440,2575,2574,-9,-9,1,0,22,0,0,0,1,1,1,0,4,6.9573097,7.1577578,0,4,-5,116.61639,-9,1,1,2019,21,9,23,0,1,9,0,7.8319111,7.8319111,0,0,0,0,0,0,0,0,0,0,23.05,65.12,27.56,46.65,6.666666666666667,1,1,0,0,4,10,4,0,1128,312368.06,123686.05,193617.58,0,1747.2407 -1178,1441,2576,2580,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,8.3849144,8.3145933,0,9,0,53.162838,0,2,2,2019,11,0,45,45,1,0,0,12.809501,12.809501,0,0,0,0,0,1,1,0,0,0,54.13,48.04,35.9,60.41,5,1,1,0,0,11,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 -1178,1441,2577,-9,2580,2576,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-991.53979,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 -1178,1441,2578,-9,2580,2576,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.5845,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 -1178,1441,2579,-9,2580,2576,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.66241,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 -1178,1441,2580,2576,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,7.5024562,7.4753613,0,9,0,-9.1977282,0,2,-9,2019,14,2,28,6,1,2,0,6.1830211,6.1830211,0,0,0,0,0,1,1,0,0,0,35.9,60.41,54.13,48.04,3.333333333333333,1,1,0,0,10,5,3,0,670.20001,278555.69,105263.32,0,0,3064.9316 -1179,1442,2581,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.657814,7.8676844,0,0,-1122.84,0,3,3,2019,7,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.9509349,7.728179,52.65,51.64,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,2048,1025924.2,526588.56,213133.88,8775.9746,1361.9142 -1179,1443,2582,-9,-9,2581,1,1,23,0,0,0,1,1,-9,0,3,8.2535725,7.9871249,0,0,0,-825.10504,0,3,2,2019,26,11,40,30,1,11,0,7.8185844,7.8185844,0,0,0,0,0,0,0,0,0,0,26.43,63.43,-9,-9,3.333333333333333,1,1,0,0,6,11,3,1,540,-413246.84,0,0,0,1621.8551 -1180,1444,2583,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8390598,7.9066133,0,0,0,-1024.726,-9,2,3,2019,12,0,38,0,1,0,0,8.3494844,8.3494844,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,1243,83884.82,47319.625,151001.44,7690.9995,927.0509 -1180,1445,2584,-9,2583,-9,1,0,23,0,0,0,2,2,-9,0,4,6.7835064,6.9664998,0,0,0,-925.22144,-9,2,-9,2019,9,0,50,0,1,0,1,2.0166726,2.0166726,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,1,2,1,1565,-91090.953,0,0,0,474.5307 -1181,1446,2585,2586,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.7187843,5.8415527,28,0,-33.737312,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2301869,5.8383851,40.95,46,56,51,8.333333333333334,1,1,0,0,0,7,2,0,1188.5,169775.55,46493.758,284276.25,0,1846.421 -1181,1446,2586,2585,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,6.1103106,6.1607184,31,0,.58943802,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0467191,6.2655663,56,51,40.95,46,10,1,1,0,0,0,7,2,0,1188.5,169775.55,46493.758,284276.25,0,1846.421 -1182,1447,2587,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.6256886,7.3460479,0,0,-849.75024,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8315759,7.7144141,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,11,10,3,1,61,1247659.4,292035.09,655542.94,0,1184.6869 -1183,1448,2588,2589,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.7582521,9.5914803,0,6,3,59.936657,0,2,1,2019,6,0,41,40,1,0,0,45.011883,45.011883,0,0,0,0,0,0,0,0,3.5693433,0,57.06,57.76,47.66,52.33,10,1,1,0,0,7,12,5,1,420.66666,923175.25,129320.75,445623.47,0,14493.452 -1183,1448,2589,2588,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.3534384,9.6107378,0,6,-3,49.941692,0,3,1,2019,6,0,37,30,1,0,0,43.373932,43.373932,0,0,0,0,0,0,0,0,7.4260359,0,47.66,52.33,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,420.66666,923175.25,129320.75,445623.47,0,14493.452 -1183,1448,2590,-9,2589,2588,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1089.2462,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,420.66666,923175.25,129320.75,445623.47,0,14493.452 -1183,1449,2591,-9,2589,2588,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-942.71216,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,1,12,1,1,452,-91351.211,0,0,0,0 -1184,1450,2592,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,1,7.9881206,8.2076693,0,0,0,-982.97687,0,3,3,2019,13,2,41,40,1,2,0,12.412756,12.412756,0,0,0,0,0,0,0,0,0,0,39.26,48.99,-9,-9,1.666666666666667,1,1,0,1,11,2,4,1,1503,-283136.66,85871.141,112463.11,71493.742,2010.5037 -1185,1451,2593,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.4542475,8.5303078,0,0,0,-947.92133,0,-9,-9,2019,11,0,45,45,1,2,0,11.016554,11.016554,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,10,1,1,0,0,11,5,5,1,1142,362683.41,-48766.629,0,0,2133.5178 -1186,1452,2594,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.2205968,6.8481727,0,0,-883.76154,0,3,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8878939,6.697773,63.98,35.38,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,765,303850.56,121853.02,287242.19,0,1462.353 -1187,1453,2595,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3138237,7.01121,0,0,-1018.4448,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.016511,7.1691294,70.64,17.02,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,583,-30381.387,165733.7,0,0,940.48425 -1188,1454,2596,2597,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.81213,8.5170679,0,10,3,-58.263496,0,2,3,2019,9,0,40,42,1,0,0,21.816429,21.816429,0,0,0,0,0,0,0,0,7.3610849,0,51.47,53.17,37.39,53.3,8.333333333333334,1,1,0,0,11,11,5,1,1660.5,1913768.3,1165215.5,468937.19,0,3514.9692 -1188,1454,2597,2596,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,5.8705549,5.9716811,10,-3,-15.365683,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,6.0274582,0,37.39,53.3,51.47,53.17,5,1,1,0,0,2,11,5,1,1660.5,1913768.3,1165215.5,468937.19,0,3514.9692 -1189,1455,2598,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.973217,8.325285,0,0,0,-1106.655,0,-9,-9,2019,14,3,40,40,1,3,0,8.8211308,8.8211308,0,0,0,0,0,1,1,0,0,0,51.25,42.93,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,525.33331,151407.41,103364.84,0,0,1814.8639 -1189,1455,2599,-9,2598,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.43658,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,525.33331,151407.41,103364.84,0,0,1814.8639 -1189,1455,2600,-9,2598,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.71722,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,525.33331,151407.41,103364.84,0,0,1814.8639 -1190,1456,2601,2602,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,29,-1,-3.9433095,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.45013767,0,59.88,45.34,54.26,50.74,8.333333333333334,1,1,1,0,6,12,3,0,241.5,1419747.8,667075.5,530313.5,36919.746,1408.3693 -1190,1456,2602,2601,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,7.9972887,8.2654085,0,29,1,91.139023,0,2,2,2019,9,1,45,45,1,1,0,8.3726759,8.3726759,0,0,0,0,0,0,0,0,3.4758914,0,54.26,50.74,59.88,45.34,6.666666666666667,1,1,0,0,9,12,3,0,241.5,1419747.8,667075.5,530313.5,36919.746,1408.3693 -1191,1457,2603,2604,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.9561272,6.4114828,54,-2,50.76408,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.1977363,45.58,21.17,59.46,46.99,8.333333333333334,1,1,0,0,0,6,2,1,440.5,55935.594,0,152584.31,0,1678.8694 -1191,1457,2604,2603,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,4.4833808,4.597158,8,2,-30.44413,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6852331,4.419312,59.46,46.99,45.58,21.17,8.333333333333334,1,1,0,0,0,6,2,1,440.5,55935.594,0,152584.31,0,1678.8694 -1192,1458,2605,2606,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,8.1813412,8.0527353,0,2,1,-74.876846,0,-9,-9,2019,12,2,38,41,1,2,0,13.156409,13.156409,0,0,0,0,0,0,0,0,0,0,54.74,57.22,37.02,58.63,8.333333333333334,1,1,0,0,2,2,4,0,418,248151.14,31864.604,132175.25,84491.453,2604.5166 -1192,1458,2606,2605,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,7.8985157,7.7839103,0,2,-1,140.88292,0,1,2,2019,14,4,45,50,1,4,0,7.2893505,7.2893505,0,0,0,0,0,0,0,0,0,0,37.02,58.63,54.74,57.22,3.333333333333333,2,3,0,0,6,2,4,0,418,248151.14,31864.604,132175.25,84491.453,2604.5166 -1193,1459,2607,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.3283162,4.1416059,0,0,-963.0282,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6815453,4.2878013,50.94,53.44,-9,-9,8.333333333333334,1,1,0,0,2,6,2,0,902,6267.4019,-923.98932,0,0,1456.7166 -1194,1460,2608,2611,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9370251,9.0320101,0,14,0,33.166107,0,1,1,2019,10,1,85,70,1,1,0,9.2172852,9.2172852,0,0,0,0,0,1,1,0,7.2234921,0,48.87,58.55,41.06,62.04,8.333333333333334,1,1,0,0,10,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 -1194,1460,2609,-9,2611,2608,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.5922,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 -1194,1460,2610,-9,2611,2608,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.66333,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 -1194,1460,2611,2608,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,6.6917548,6.7198982,0,14,0,112.27921,0,2,2,2019,17,5,56,40,1,5,0,1.748978,1.748978,0,0,0,0,0,1,1,0,0,0,41.06,62.04,48.87,58.55,8.333333333333334,1,1,0,0,13,5,4,1,621.75,682583.19,536906.13,237446.23,123884.38,4437.1055 -1195,1461,2612,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7641687,8.4204006,0,0,0,-1009.0374,0,2,2,2019,15,4,41,41,1,4,0,20.089315,20.089315,0,0,0,0,2,0,0,0,0,0,47.27,40.5,-9,-9,5,1,1,0,0,11,6,5,1,340,-131213.55,17604.172,0,0,1353.191 -1196,1462,2613,2614,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,8.5299578,8.3677502,0,28,4,-31.710018,0,3,3,2019,10,0,50,60,1,0,0,9.3719435,9.3719435,0,0,0,0,0,1,1,0,0,0,32.91,48.08,48.28,60.18,5,1,1,0,0,10,4,3,1,372.33334,496070.41,147837.2,200855.83,0,2514.4797 -1196,1462,2614,2613,-9,-9,1,0,44,0,1,0,3,3,-9,0,4,5.6446414,5.6420417,0,28,-4,56.878174,0,3,3,2019,12,0,4,0,1,0,0,7.86377,7.86377,0,0,0,0,2,1,1,0,0,0,48.28,60.18,32.91,48.08,8.333333333333334,1,1,0,0,1,4,3,1,372.33334,496070.41,147837.2,200855.83,0,2514.4797 -1196,1462,2615,-9,2614,2613,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.15015,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,372.33334,496070.41,147837.2,200855.83,0,2514.4797 -1196,1463,2616,-9,2614,2613,1,0,22,0,1,0,2,2,-9,0,2,7.9028416,7.8413329,0,0,0,-1120.5367,0,3,3,2019,24,9,48,40,1,9,1,6.6707416,6.6707416,0,0,0,0,0,1,1,0,0,0,26.17,58.59,-9,-9,3.333333333333333,1,1,0,0,4,4,3,1,61,-124937.2,0,0,0,894.17535 -1196,1464,2617,-9,2614,2613,1,0,19,0,1,0,2,2,-9,0,4,7.8789039,7.5630016,0,0,0,-913.58398,0,3,3,2019,8,2,40,32,1,2,1,5.8292155,5.8292155,0,0,0,0,0,1,1,0,0,0,40.66,45.01,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,278,35111.172,-23240.773,0,0,643.00519 -1197,1465,2618,2619,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.6635089,8.5120344,8.0759773,41,6,79.984619,0,-9,2,2019,6,0,50,48,1,0,0,4.7432189,4.7432189,0,0,0,0,0,1,1,0,9.1386452,7.9692683,60.12,54.8,55.44,52.99,0,1,1,0,0,10,9,4,1,754.5,1893044,0,740953.13,0,10393.867 -1197,1465,2619,2618,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.7233052,6.5940909,0,41,-6,-105.1232,0,2,2,2019,8,0,20,30,1,0,0,5.3113999,5.3113999,0,0,0,0,0,1,1,0,8.1133575,0,55.44,52.99,60.12,54.8,8.333333333333334,1,1,0,0,10,9,4,1,754.5,1893044,0,740953.13,0,10393.867 -1198,1466,2620,-9,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.0666342,8.4671907,0,0,0,-978.2373,-9,2,2,2019,15,4,30,0,1,4,0,12.148825,12.148825,0,0,0,0,0,1,1,0,0,0,32.18,53.17,-9,-9,5,1,1,0,0,11,10,3,1,968,174612.05,179327.06,67608.789,101718.11,2786.0891 -1199,1467,2621,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,3.8749599,4.0546837,0,0,-1133.371,0,3,3,2019,36,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,3.8000622,3.9246056,21.97,21.3,-9,-9,0,1,1,0,1,0,12,2,0,352,259418.27,47562.688,0,0,1626.0398 -1200,1468,2622,2623,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.3488021,7.6340861,7,-2,-82.798843,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.531415,7.4162903,57.28,51.96,55.93,52.62,8.333333333333334,1,1,0,0,0,9,2,1,1466,1190737,196122.78,744449.94,0,5219.2988 -1200,1468,2623,2622,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.0359211,4.0775452,49,2,14.709024,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7311382,4.1411576,55.93,52.62,57.28,51.96,1.666666666666667,1,1,0,0,0,9,2,1,1466,1190737,196122.78,744449.94,0,5219.2988 -1201,1469,2624,-9,2625,2627,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-913.60498,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,58.15,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,710,115002.88,0,0,0,1043.3152 -1201,1469,2625,2627,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.9611855,7.9217801,0,8,2,20.467941,0,2,2,2019,11,0,31,29,1,0,0,6.9682589,6.9682589,0,0,0,0,0,1,1,0,1.8504353,0,41.79,57.73,58.54,54.14,8.333333333333334,1,1,0,0,10,7,2,1,710,115002.88,0,0,0,1043.3152 -1201,1469,2626,-9,2625,2627,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1011.2785,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,2,1,710,115002.88,0,0,0,1043.3152 -1201,1469,2627,2625,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,0,0,0,8,-2,59.426472,0,2,1,2019,2,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8675427,0,58.54,54.14,41.79,57.73,8.333333333333334,1,1,0,0,11,7,2,1,710,115002.88,0,0,0,1043.3152 -1202,1470,2628,2629,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,45,-1,6.2253284,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.79,55.86,6.666666666666667,1,1,0,0,6,13,2,1,265.5,366646.81,65188.137,151638.92,0,1073.6339 -1202,1470,2629,2628,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,6.1354961,5.7552614,0,45,1,-113.33053,0,3,3,2019,7,0,70,70,1,0,0,.5994454,.5994454,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,12,13,2,1,265.5,366646.81,65188.137,151638.92,0,1073.6339 -1203,1471,2630,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.021296,5.9776297,0,0,-1047.0326,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8481264,66.13,7.66,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,884,384854.69,141066.95,226533.59,38729.77,1494.3302 -1204,1472,2631,-9,2633,2635,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.9591,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 -1204,1472,2632,-9,2633,2635,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.01111,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 -1204,1472,2633,2635,-9,-9,1,0,55,1,3,0,2,2,-9,0,2,0,0,0,5,1,35.403114,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,57.88,50.43,51.02,6.666666666666667,1,1,0,0,5,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 -1204,1472,2634,-9,2633,2635,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.73798,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 -1204,1472,2635,2633,-9,-9,1,1,54,1,3,0,2,2,-9,0,3,7.8976593,7.9654665,0,5,-1,1.2348195,0,-9,-9,2019,11,0,47,47,1,0,0,5.6255965,5.6255965,0,0,0,0,0,1,1,0,0,0,50.43,51.02,31.18,57.88,6.666666666666667,1,1,0,0,6,11,2,0,1055.8,595277.88,153662.88,242903.25,0,3481.6106 -1205,1473,2636,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7768455,7.8451037,4.0634065,0,0,-956.04248,0,3,3,2019,17,4,34,40,1,4,0,7.2540841,7.2540841,0,0,0,0,7,0,0,0,4.5546904,4.1595449,35.24,45.77,-9,-9,6.666666666666667,1,1,0,0,12,13,3,1,319,122144.86,45624.426,0,0,1068.5906 -1206,1474,2637,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.56354,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3965564,0,57.16,56.15,-9,-9,10,1,1,0,0,11,12,1,1,2428,-161609.3,0,59856.598,0,671.32782 -1207,1475,2638,2639,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.7059751,8.5761442,8.4271555,6,0,35.959694,0,3,3,2019,10,1,25,30,1,1,0,11.348055,11.348055,0,0,0,0,0,1,1,0,0,8.0494566,54.37,54.8,60.12,54.8,8.333333333333334,1,1,0,0,9,12,4,1,467,1154767.5,485576.59,161809.5,0,3284.3872 -1207,1475,2639,2638,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,6,0,53.820656,0,2,2,2019,9,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.37,54.8,5,1,1,0,0,4,12,4,1,467,1154767.5,485576.59,161809.5,0,3284.3872 -1208,1476,2640,-9,2642,2641,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.46216,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 -1208,1476,2641,2642,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.6205359,8.3604174,0,15,0,3.8473098,0,1,1,2019,10,1,53,37,1,1,0,10.002013,10.002013,0,0,0,0,2,1,1,0,0,0,51.73,58.82,51.83,57.2,8.333333333333334,3,4,0,0,6,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 -1208,1476,2642,2641,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.4733429,8.7878876,0,15,0,-48.573177,0,2,1,2019,7,0,53,45,1,0,0,11.687216,11.687216,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.73,58.82,6.666666666666667,3,4,0,0,8,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 -1208,1476,2643,-9,2642,2641,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.33582,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,9,5,1,1181.75,251600.75,310859.06,240644.19,171437.61,4518.9912 -1209,1477,2644,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.9448862,6.618269,0,0,0,-906.59711,0,-9,-9,2019,9,0,16,16,1,0,0,6.7060566,6.7060566,0,0,0,0,0,1,1,0,2.2374523,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,463.5,-88693.141,0,0,0,1259.8744 -1209,1477,2645,-9,2644,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.85309,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,463.5,-88693.141,0,0,0,1259.8744 -1210,1478,2646,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.6997,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,11.44,69.11,-9,-9,0,1,1,0,0,0,5,1,1,851,-198436.16,0,0,0,574.83557 -1211,1479,2647,2648,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.7274666,8.3558149,0,6,0,133.78328,0,-9,-9,2019,6,0,37,37,1,0,0,14.124092,14.124092,0,0,0,0,0,0,0,0,0,0,59.04,51.29,51.94,55.88,8.333333333333334,1,1,0,0,8,12,5,1,1214,1599096.3,707109.31,289695.72,0,4351.7573 -1211,1479,2648,2647,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.8462009,8.8261862,0,6,0,137.43423,0,2,2,2019,11,1,41,40,1,1,0,24.488054,24.488054,0,0,0,0,0,0,0,0,2.1958647,0,51.94,55.88,59.04,51.29,8.333333333333334,1,1,0,0,7,12,5,1,1214,1599096.3,707109.31,289695.72,0,4351.7573 -1212,1480,2649,2650,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,48,-3,5.5076404,0,2,1,2019,9,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.3702426,0,54.94,53.18,57.06,57.76,6.666666666666667,1,1,0,0,0,9,3,1,1518,1471585.6,503909.88,287609.75,0,3635.4985 -1212,1480,2650,2649,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.066678,8.0968924,48,3,77.500916,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1664495,7.9862537,57.06,57.76,54.94,53.18,8.333333333333334,1,1,0,0,0,9,3,1,1518,1471585.6,503909.88,287609.75,0,3635.4985 -1213,1481,2651,2652,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.7468128,8.6858063,0,6,0,15.303077,0,-9,-9,2019,9,0,37,40,1,1,0,20.304359,20.304359,0,0,0,0,0,1,1,0,0,0,52,55,52,54.51,7,1,1,0,0,1,7,4,1,367.5,847395.75,724213.44,186578.44,99936.195,4068.3945 -1213,1481,2652,2651,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.7122331,7.7646198,0,21,0,14.377126,0,2,2,2019,12,1,30,26,1,1,0,8.9835806,8.9835806,0,0,0,0,0,1,1,0,0,0,52,54.51,52,55,6.666666666666667,1,1,0,0,7,7,4,1,367.5,847395.75,724213.44,186578.44,99936.195,4068.3945 -1214,1482,2653,2654,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,9.0177937,8.7759848,0,31,0,13.489646,0,2,2,2019,7,0,49,48,1,0,0,17.818701,17.818701,0,0,0,0,2,1,1,0,0,0,56.47,59.4,35.87,63.44,8.333333333333334,1,1,0,0,12,6,5,1,1392,161126.2,74083.07,305778.25,117812.19,6133.9683 -1214,1482,2654,2653,-9,-9,1,0,52,0,1,0,3,3,-9,0,5,7.2592368,7.4322991,0,31,0,-11.782812,0,3,3,2019,10,0,22,25,1,0,0,7.5401025,7.5401025,0,0,0,0,27,1,1,0,8.6923656,0,35.87,63.44,56.47,59.4,6.666666666666667,1,1,0,0,8,6,5,1,1392,161126.2,74083.07,305778.25,117812.19,6133.9683 -1214,1482,2655,-9,2654,2653,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1088.5723,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,1,1392,161126.2,74083.07,305778.25,117812.19,6133.9683 -1215,1483,2656,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1076.6136,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,2.8352704,11.38904,23.390495,0,1,1,0,0,0,33.56,17.19,-9,-9,5,1,1,0,0,0,9,1,1,513,1001738.5,728227.44,111981.2,0,1160.9839 -1216,1484,2657,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.7000246,8.5171757,0,0,0,-932.50476,0,2,1,2019,8,0,42,50,1,0,0,19.307508,19.307508,0,0,0,0,2,0,0,0,1.8558624,0,49.04,55.86,-9,-9,6.666666666666667,4,5,0,0,9,9,5,1,332,112254.46,10426.865,0,0,1765.8225 -1217,1485,2658,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.9724398,8.1948757,0,0,0,-911.2262,0,2,2,2019,9,0,42,35,1,0,0,6.9580655,6.9580655,0,0,0,0,2,1,1,0,0,0,47.26,54.06,-9,-9,8.333333333333334,1,1,0,1,7,7,4,0,401,-10075.092,-29971.422,0,0,1180.0237 -1218,1486,2659,2660,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.7302957,8.5770597,7.6338687,9,-2,-21.433191,0,-9,-9,2019,7,0,17,20,1,0,0,16.732098,16.732098,0,0,0,0,0,1,1,0,0,8.0506554,54.2,57.49,44.56,59.44,8.333333333333334,1,1,0,0,12,7,4,1,1146.5,2753217.5,1574615.8,835995.94,0,3486.8091 -1218,1486,2660,2659,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.5055909,7.5822053,36,2,-43.376213,0,2,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,42,1,1,0,1.2399043,7.5822287,44.56,59.44,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,1146.5,2753217.5,1574615.8,835995.94,0,3486.8091 -1218,1487,2661,-9,2659,2660,1,1,31,0,0,0,1,1,-9,0,3,0,0,0,0,0,-906.19397,0,1,1,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,31,60.29,-9,-9,3.333333333333333,1,1,1,1,2,7,1,1,263,0,0,0,0,0 -1219,1488,2662,2663,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,6.4342628,6.4695024,0,8,-4,-54.61145,0,-9,-9,2019,16,5,65,60,1,5,0,1.270802,1.270802,0,0,0,0,0,0,0,0,6.8853645,0,30.1,43.29,58.72,51.29,3.333333333333333,1,1,0,0,12,5,5,1,305,737266.81,291780.63,181990.75,0,3399.2715 -1219,1488,2663,2662,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.7635603,8.9334126,6.797555,8,4,-20.589985,0,-9,-9,2019,9,0,42,43,1,0,0,21.859888,21.859888,0,0,0,0,0,0,0,0,2.1508574,7.5864758,58.72,51.29,30.1,43.29,8.333333333333334,1,1,0,0,7,5,5,1,305,737266.81,291780.63,181990.75,0,3399.2715 -1220,1489,2664,-9,2666,2667,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.75787,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 -1220,1489,2665,-9,2666,2667,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.8291,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 -1220,1489,2666,2667,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,4,-12,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.99,53.75,54,54,5,1,1,0,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 -1220,1489,2667,2666,-9,-9,1,1,56,0,2,0,3,3,-9,0,4,0,0,0,4,12,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,41.99,53.75,8,1,1,0,0,0,11,1,1,576,64803.211,0,0,0,1833.1919 -1220,1490,2668,-9,2666,2667,1,0,23,0,2,0,2,2,-9,0,2,7.0562921,7.4848976,0,0,0,-906.47974,0,2,3,2019,10,0,22,22,1,0,1,6.3137717,6.3137717,0,0,0,0,0,1,1,0,0,0,40.71,41.17,-9,-9,5,1,1,0,0,8,11,3,1,428,173451.34,-8625.2578,0,0,709.38684 -1220,1491,2669,-9,2666,2667,1,0,19,0,2,1,3,0,0,0,4,0,0,0,0,0,-1046.9768,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,6.6156116,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,507,293015.66,0,0,0,-328.12543 -1221,1492,2670,2671,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,0,0,0,3,-7,0,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,27,1,0,1,0,0,65.62,37.83,38.38,27.71,10,1,1,1,0,0,1,1,0,635,-135871.44,0,0,0,1504.351 -1221,1492,2671,2670,-9,-9,1,1,54,0,1,0,3,3,-9,1,1,0,0,0,3,7,0,0,-9,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,38.38,27.71,65.62,37.83,1.666666666666667,1,1,0,0,0,1,1,0,635,-135871.44,0,0,0,1504.351 -1221,1492,2672,-9,2670,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1085.5073,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,70.39,40.52,-9,-9,10,1,1,0,0,0,1,1,0,635,-135871.44,0,0,0,1504.351 -1221,1493,2673,-9,2670,-9,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-999.21149,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,46.55,58.3,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,482,644170.31,0,0,0,307.48767 -1221,1494,2674,-9,2670,-9,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-949.63995,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,64.48999999999999,40.5,-9,-9,10,1,1,0,0,0,1,1,0,655,0,0,0,0,0 -1222,1495,2675,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,4.2160139,4.3050742,0,0,-1144.6859,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,3.8982151,41.63,28.46,-9,-9,3.333333333333333,3,4,0,0,0,8,2,1,1091,275823.97,0,186555.98,0,1047.3334 -1223,1496,2676,2677,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.8769255,9.9395733,0,11,3,97.063774,0,2,2,2019,12,0,55,60,1,0,0,44.209702,44.209702,0,0,0,0,0,0,0,0,0,0,52,54.51,57.16,56.15,1.666666666666667,1,1,0,0,7,2,5,1,341.5,722461.63,92749.43,507681.38,0,7112.9541 -1223,1496,2677,2676,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.8188696,8.6928596,0,11,-3,88.706017,0,2,2,2019,7,0,23,26,1,0,0,29.125643,29.125643,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,10,2,5,1,341.5,722461.63,92749.43,507681.38,0,7112.9541 -1224,1497,2678,2679,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4403381,6.4359741,60,4,-22.535526,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.75511986,6.1963873,39.57,56.39,42.1,37.58,1.666666666666667,1,1,0,0,0,7,2,1,1464.5,150517.84,6873.1973,177193.89,0,923.31396 -1224,1497,2679,2678,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,60,-4,-33.652508,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.9344714,0,42.1,37.58,39.57,56.39,3.333333333333333,1,1,0,0,5,7,2,1,1464.5,150517.84,6873.1973,177193.89,0,923.31396 -1225,1498,2680,-9,2683,2682,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.95142,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 -1225,1498,2681,-9,2683,2682,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.1554,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 -1225,1498,2682,2683,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.1787233,8.6711807,0,8,2,145.87001,0,2,2,2019,15,4,20,30,1,4,0,24.477005,24.477005,0,0,0,0,0,1,1,0,8.6558371,0,47.69,53.79,45.75,62.87,3.333333333333333,1,1,0,0,7,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 -1225,1498,2683,2682,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,9.2922277,8.9516859,0,8,-2,31.018127,0,2,1,2019,10,0,37,42,1,0,0,25.503696,25.503696,0,0,0,0,0,1,1,0,3.4465837,0,45.75,62.87,47.69,53.79,6.666666666666667,1,1,0,0,9,6,5,1,354,371013.53,16239.863,451352.94,155698.31,8051.9419 -1226,1499,2684,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,5.314971,6.6651387,6.2742963,0,0,-918.31415,0,2,3,2019,9,0,2,0,1,0,0,10.641725,10.641725,0,0,0,0,2,1,1,0,4.1593614,6.1984067,61.92,38.9,-9,-9,8.333333333333334,1,1,0,1,9,9,2,1,78,85567.344,0,0,0,729.06653 -1227,1500,2685,-9,2686,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.9821,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,185.5,-193377.3,0,0,0,1932.6819 -1227,1500,2686,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.3683653,8.0410385,0,0,0,-1127.8682,0,3,2,2019,11,2,50,18,1,2,0,9.2156219,9.2156219,0,0,0,0,0,1,1,0,0,0,39.88,52.43,-9,-9,6.666666666666667,1,1,0,1,5,2,3,0,185.5,-193377.3,0,0,0,1932.6819 -1227,1501,2687,-9,2686,-9,1,1,19,0,2,0,2,2,1,0,4,6.1120911,6.200489,0,0,0,-1113.1537,-9,2,-9,2019,10,0,37,0,1,0,1,1.3858882,1.3858882,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,6.666666666666667,1,1,0,0,3,2,2,0,362,0,0,0,0,-49.200172 -1228,1502,2688,-9,2690,-9,1,1,44,0,0,0,2,2,-9,0,4,7.5637927,7.7007632,0,0,0,-934.32037,0,2,2,2019,7,0,42,30,1,0,0,6.1926794,6.1926794,0,0,0,0,0,1,1,0,.64396656,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,703,119653.69,121334.73,0,0,998.36609 -1228,1503,2689,-9,2690,-9,1,1,38,0,0,0,1,1,-9,0,3,7.8900905,7.4325609,0,0,0,-1083.1484,0,2,2,2019,8,0,35,40,1,0,0,6.4846044,6.4846044,0,0,0,0,0,1,1,0,1.935366,0,54.04,50.75,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,1467,-177442.39,7445.4663,789549.69,547969.06,859.71643 -1228,1504,2690,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.91779,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,5.7760792,0,0,1,1,0,0,0,67.75,25.82,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,355,76402.656,0,0,0,-635.99097 -1229,1505,2691,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-936.99341,0,3,-9,2019,12,4,0,0,4,4,0,0,0,1,0,16.992914,0,0,1,1,0,0,0,46.7,20.01,-9,-9,3.333333333333333,1,1,0,0,6,2,1,0,197,52634.793,0,0,0,867.12384 -1230,1506,2692,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,5.1734972,5.0751133,0,0,0,-977.36169,-9,2,2,2019,14,2,20,0,1,2,0,.85270882,.85270882,0,0,0,0,0,1,1,0,0,0,36.9,57.61,-9,-9,3.333333333333333,1,1,0,0,4,9,2,0,2499,-343551.22,79045.148,0,0,628.10547 -1231,1507,2693,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.6116724,7.7097549,0,0,0,-952.92944,0,3,3,2019,2,0,22,29,1,0,0,10.952269,10.952269,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,8,8,3,0,1436,532610.44,43200.16,375331.13,-775.20679,1389.1089 -1232,1508,2694,2695,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.0288401,4.3244519,50,-1,-18.339695,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.0906234,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,9,7,2,1,1501,175038.88,236446.39,0,0,1414.78 -1232,1508,2695,2694,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.0282407,5.9091635,50,1,30.900606,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.1203375,5.6800723,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,7,2,1,1501,175038.88,236446.39,0,0,1414.78 -1233,1509,2696,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.7802234,7.7254677,4.1250601,0,0,-1032.2887,-9,3,3,2019,7,0,30,0,1,0,0,6.9900007,6.9900007,0,0,0,0,0,0,0,0,3.2259843,4.1386561,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,444,-44647.957,-23631,0,0,656.65295 -1234,1510,2697,2698,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.9845042,6.2405052,7,3,59.156033,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0845428,58.47,50.22,47.32,52.7,6.666666666666667,1,1,0,1,0,11,2,1,418.5,518567.91,153812.42,203265.8,0,1689.8079 -1234,1510,2698,2697,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-25.963707,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,58.47,50.22,8.333333333333334,1,1,0,1,0,11,2,1,418.5,518567.91,153812.42,203265.8,0,1689.8079 -1235,1511,2699,2700,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,44,2,-91.073677,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7367725,0,57.33,53.46,40.58,60.95,8.333333333333334,1,1,0,0,7,13,3,1,1153,1076356.8,769209.63,312430.22,0,1906.3315 -1235,1511,2700,2699,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.8648319,7.5353961,44,-2,70.649498,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.682332,7.334919,40.58,60.95,57.33,53.46,8.333333333333334,1,1,0,0,7,13,3,1,1153,1076356.8,769209.63,312430.22,0,1906.3315 -1236,1512,2701,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,7.2241783,7.3660316,0,0,-936.69214,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.9600749,7.1914139,51.02,22.74,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,550,1189595,73096.273,246632.7,0,1595.4189 -1237,1513,2702,-9,-9,-9,1,1,26,0,0,0,1,1,1,0,5,8.1343622,7.9193888,0,0,0,-976.05664,-9,-9,-9,2019,3,0,35,0,1,0,0,12.141716,12.141716,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,6,11,4,1,336,0,0,0,0,1590.4164 -1238,1514,2703,2705,-9,-9,1,0,44,1,2,0,1,1,-9,0,4,0,0,0,4,-3,74.683556,0,-9,-9,2019,2,0,0,46,3,0,0,0,0,0,0,0,0,0,1,1,0,4.499012,0,57.16,56.15,53.34,56.67,8.333333333333334,1,1,0,0,6,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 -1238,1514,2704,-9,2703,2705,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.72552,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 -1238,1514,2705,2703,-9,-9,1,1,47,1,2,0,2,2,-9,0,5,8.7254572,8.9415817,0,4,3,34.162766,0,2,2,2019,8,0,40,40,1,0,0,24.53462,24.53462,0,0,0,0,0,1,1,0,7.8208261,0,53.34,56.67,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 -1238,1514,2706,-9,2703,2705,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.4508,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,946,123191.78,187721.33,157951.44,44548.953,3023.9856 -1239,1515,2707,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.7431927,9.7443895,0,0,0,-975.71198,0,3,3,2019,8,0,50,70,1,0,0,34.752522,34.752522,0,0,0,0,0,0,0,0,8.6997366,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,203,1030580.6,349520.72,67142.734,0,7531.8755 -1240,1516,2708,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,4.5868325,4.471827,0,0,-997.82239,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,6.0099802,0,0,7,1,1,0,0,4.5536227,49.55,18.31,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,107,51193.035,0,0,0,940.78735 -1241,1517,2709,2710,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.1387463,7.1662846,50,-3,-13.456964,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2251582,44.73,56.4,58.5,44.67,8.333333333333334,1,1,0,0,5,10,3,1,689,323880.59,318107.97,218213.73,0,3445.2856 -1241,1517,2710,2709,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.0828996,7.103653,50,3,48.005928,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1043558,6.8566566,58.5,44.67,44.73,56.4,10,1,1,0,0,0,10,3,1,689,323880.59,318107.97,218213.73,0,3445.2856 -1242,1518,2711,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,4.6175833,4.8727622,0,0,-941.0166,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8649814,4.7044678,39.72,46.09,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1108,706031.44,0,286367.16,0,1348.8986 -1243,1519,2712,2713,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.6600537,7.714695,0,2,-3,122.03822,-9,3,3,2019,6,0,50,0,1,0,0,5.2323599,5.2323599,0,0,0,0,0,0,0,0,0,0,46.31,56.45,48,57,8.333333333333334,1,1,0,0,9,12,5,0,753,-191594.03,-42855.438,136089,106275.3,3416.5212 -1243,1519,2713,2712,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5675049,8.7986155,0,2,3,-21.149014,-9,-9,-9,2019,11,0,35,0,1,2,0,17.42421,17.42421,0,0,0,0,0,0,0,0,4.4996352,0,48,57,46.31,56.45,7,1,1,0,0,7,12,5,0,753,-191594.03,-42855.438,136089,106275.3,3416.5212 -1244,1520,2714,2715,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,7.3433623,7.5492864,0,6,8,-40.139534,0,3,2,2019,6,0,24,24,1,0,0,7.6792984,7.6792984,0,0,0,0,0,1,1,0,0,0,54.23,46.77,36.62,42.18,8.333333333333334,2,3,0,1,13,5,2,0,903.33331,0,0,0,0,1428.1124 -1244,1520,2715,2714,-9,-9,1,0,43,0,1,0,3,3,-9,0,3,0,0,0,6,-8,-128.09383,0,3,3,2019,4,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,42.18,54.23,46.77,0,2,3,0,1,0,5,2,0,903.33331,0,0,0,0,1428.1124 -1244,1520,2716,-9,2715,2714,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.9798,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,0,903.33331,0,0,0,0,1428.1124 -1245,1521,2717,2719,-9,-9,1,1,50,0,1,0,1,1,-9,0,2,7.8569179,7.7864876,0,30,0,105.72346,0,3,3,2019,13,3,10,30,1,3,0,30.298573,30.298573,0,0,0,0,0,1,1,0,0,0,26.29,51.91,55.12,42.1,5,1,1,0,0,7,13,3,1,540,1291872.9,633418.06,255929.64,0,2958.071 -1245,1521,2718,-9,2719,2717,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.001,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,540,1291872.9,633418.06,255929.64,0,2958.071 -1245,1521,2719,2717,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.1337814,8.0119543,0,29,0,36.379803,0,2,2,2019,9,1,21,20,1,1,0,13.720345,13.720345,0,0,0,0,0,1,1,0,6.7139444,0,55.12,42.1,26.29,51.91,8.333333333333334,1,1,0,0,9,13,3,1,540,1291872.9,633418.06,255929.64,0,2958.071 -1245,1522,2720,-9,2719,2717,1,1,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1003.9309,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,1295,140579.5,0,0,0,748.10986 -1246,1523,2721,2722,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.5676217,7.686111,6,6,100.2226,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,8.0764055,48.7,32.13,36.44,20.24,5,1,1,0,0,3,13,3,1,815,953458.88,605716.25,94304.227,0,3112.9778 -1246,1523,2722,2721,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,6.2450266,6.4016657,6,-6,-16.568319,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,6.1549644,36.44,20.24,48.7,32.13,5,1,1,0,0,0,13,3,1,815,953458.88,605716.25,94304.227,0,3112.9778 -1246,1524,2723,-9,2722,2721,1,1,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-982.53033,0,3,2,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,5.48,1,1,0,0,0,52.13,47.5,-9,-9,5,1,1,0,1,0,13,1,1,2417,-212221.02,0,0,0,671.68268 -1247,1525,2724,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-948.26666,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.69,43.05,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,112,-250868.88,0,0,0,1155.3562 -1248,1526,2725,-9,2726,2728,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.18317,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,582,49142.258,0,0,0,2549.5535 -1248,1526,2726,2728,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,21,-6,-144.1893,0,3,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.83,53.04,53,55,10,2,3,0,0,0,8,2,0,582,49142.258,0,0,0,2549.5535 -1248,1526,2727,-9,2726,2728,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1198.4895,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,582,49142.258,0,0,0,2549.5535 -1248,1526,2728,2726,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,6.881618,6.8925123,0,7,6,50.607677,0,-9,-9,2019,9,0,25,24,1,1,0,4.1722283,4.1722283,0,0,0,0,0,1,1,0,0,0,53,55,30.83,53.04,8,2,3,0,0,1,8,2,0,582,49142.258,0,0,0,2549.5535 -1249,1527,2729,2730,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.3902788,8.48594,29,-3,-47.044647,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9706907,8.0045605,54.79,55.86,51.83,57.2,10,1,1,0,0,7,2,5,1,388,4301266,1413941.6,1063809,0,11398.429 -1249,1527,2730,2729,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,9.9401836,9.6522865,10,3,-35.905121,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,8.5888767,9.7877216,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,0,2,5,1,388,4301266,1413941.6,1063809,0,11398.429 -1250,1528,2731,2732,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,8,0,33.868622,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,47.18,55.29,42.09,5,1,1,0,0,0,4,2,1,601,230143.3,170878.17,0,0,1678.6052 -1250,1528,2732,2731,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.524889,6.7090573,8,0,44.700191,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4219351,55.29,42.09,51.5,47.18,8.333333333333334,1,1,0,0,0,4,2,1,601,230143.3,170878.17,0,0,1678.6052 -1251,1529,2733,2734,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.2239618,8.2949286,28,-6,-18.865524,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2366118,8.8218746,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,480,3316903.3,1673576.8,353842.19,0,5324.8027 -1251,1529,2734,2733,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.3740025,8.5425615,27,6,-35.118427,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8085546,8.42449,54.2,57.49,57.16,56.15,8.333333333333334,4,2,0,0,8,4,5,1,480,3316903.3,1673576.8,353842.19,0,5324.8027 -1252,1530,2735,2736,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.0562582,8.3108473,0,7,0,-40.824284,0,1,2,2019,17,6,45,45,1,6,0,10.740691,10.740691,0,0,0,0,0,0,0,0,.23794614,0,36.12,59.15,32.14,59.39,3.333333333333333,1,1,0,0,8,2,5,1,399,132546.7,30681.211,0,0,2829.7466 -1252,1530,2736,2735,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,7.9688315,8.1291113,0,7,0,33.978409,0,-9,-9,2019,19,8,40,37,1,8,0,7.5881186,7.5881186,0,0,0,0,0,0,0,0,2.4841197,0,32.14,59.39,36.12,59.15,5,1,1,0,0,8,2,5,1,399,132546.7,30681.211,0,0,2829.7466 -1253,1531,2737,2738,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.2264347,5.9480715,8,-3,-62.900356,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.8900423,6.0240498,53.78,48.41,42.92,45.22,8.333333333333334,1,1,0,0,0,8,5,1,587.5,4367764.5,2919169,625631.88,0,8207.5195 -1253,1531,2738,2737,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,9.6621151,9.5329828,41,3,-112.50647,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.2025909,9.4439926,42.92,45.22,53.78,48.41,8.333333333333334,1,1,0,0,0,8,5,1,587.5,4367764.5,2919169,625631.88,0,8207.5195 -1254,1532,2739,2740,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.8559294,7.7163658,6,0,20.486929,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4663467,7.230617,70.46000000000001,14.7,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,292,1593767.5,928339.38,445864.28,0,3646.2673 -1254,1532,2740,2739,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.3414583,7.3004332,6,0,14.010058,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6350822,7.7386212,57.16,56.15,70.46000000000001,14.7,8.333333333333334,1,1,0,0,0,9,3,1,292,1593767.5,928339.38,445864.28,0,3646.2673 -1255,1533,2741,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.2854142,5.4554076,0,0,-1096.5211,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2464447,5.5004644,49.29,54.59,-9,-9,5,1,1,0,0,1,8,2,1,442,12742.691,7094.0562,0,0,470.88913 -1256,1534,2742,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1101.58,0,-9,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.16,51.01,-9,-9,0,1,1,1,0,0,2,1,0,133,5881.8823,0,0,0,1031.7664 -1257,1535,2743,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.1943784,6.2369919,0,0,-992.53162,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.9088402,57.92,41.29,-9,-9,10,1,1,0,0,0,12,2,1,277,499923.31,-47474.781,103902.59,0,-181.19615 -1258,1536,2744,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5360718,6.6196513,0,0,-995.89801,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8960633,59.7,53.75,-9,-9,10,1,1,0,0,0,12,2,0,202,263923.31,37578.195,161616.95,0,968.97241 -1259,1537,2745,2747,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.9971552,9.0114517,0,9,-7,-3.4071805,0,2,3,2019,6,0,28,28,1,0,0,34.013222,34.013222,0,0,0,0,0,1,1,0,3.925653,0,57.06,57.76,43.76,58.35,8.333333333333334,1,1,0,0,10,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 -1259,1537,2746,-9,2745,2747,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.6799,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 -1259,1537,2747,2745,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.2987785,8.9882364,0,9,7,-80.993416,0,2,1,2019,9,1,20,19,1,1,0,63.211926,63.211926,0,0,0,0,0,1,1,0,6.0064173,0,43.76,58.35,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 -1259,1537,2748,-9,2745,2747,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-965.65192,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,877.25,2507550.3,1520151.5,481629.69,109607.35,6867.9741 -1260,1538,2749,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.2809057,8.1166582,3.7121773,0,0,-1144.9318,0,3,3,2019,7,0,45,45,1,0,0,8.0172596,8.0172596,0,0,0,0,0,1,1,0,0,3.2432728,51,48,-9,-9,5,1,1,0,0,9,5,4,1,1745,291183.47,200303.13,186241.03,0,1145.799 -1261,1539,2750,-9,2752,2751,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.11359,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,359.66666,455822.06,128953.79,276746.91,46801.055,2474.271 -1261,1539,2751,2752,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.0609579,8.4057703,6.4294233,28,1,-154.38605,0,3,3,2019,11,2,41,41,1,2,0,8.8118162,8.8118162,0,0,0,0,0,1,1,0,0,6.6954618,55.51,35.51,48.88,18.71,3.333333333333333,1,1,0,0,9,4,3,1,359.66666,455822.06,128953.79,276746.91,46801.055,2474.271 -1261,1539,2752,2751,-9,-9,1,0,50,0,1,0,2,2,-9,1,1,0,0,0,28,-1,85.469559,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,18.71,55.51,35.51,3.333333333333333,1,1,0,0,0,4,3,1,359.66666,455822.06,128953.79,276746.91,46801.055,2474.271 -1261,1540,2753,-9,2752,2751,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-844.4859,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.87,45.76,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,268,358499.78,0,0,0,660.8197 -1262,1541,2754,2756,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.7699757,8.871521,0,6,8,76.089668,0,2,3,2019,7,0,40,40,1,0,0,16.275059,16.275059,0,0,0,0,0,1,1,0,3.2106779,0,59.88,45.37,28.73,61.03,8.333333333333334,1,1,0,0,7,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 -1262,1541,2755,-9,2756,2754,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.26251,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 -1262,1541,2756,2754,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,7.6744332,7.5219579,0,6,-8,39.034336,0,-9,-9,2019,17,5,39,16,1,5,0,4.6879182,4.6879182,0,0,0,0,0,1,1,0,0,0,28.73,61.03,59.88,45.37,6.666666666666667,4,1,0,0,7,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 -1262,1541,2757,-9,2756,2754,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1262.9592,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,682.75,226677,119719.6,190534,115480.87,3413.5947 -1263,1542,2758,-9,2760,2759,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.56879,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 -1263,1542,2759,2760,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,6.9834676,6.7441764,0,22,9,1.3101648,0,2,1,2019,11,2,35,35,1,2,0,3.26524,3.26524,0,0,0,0,0,1,1,0,0,0,49,50,64.13,32.55,5,2,3,0,0,6,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 -1263,1542,2760,2759,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,22,0,16.054722,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.13,32.55,49,50,8.333333333333334,2,3,0,1,0,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 -1263,1542,2761,-9,2760,2759,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.8663,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,562.5,1462390,96556.039,1701086.5,990345.5,2061.1855 -1264,1543,2762,2764,-9,-9,1,1,60,0,1,0,2,2,-9,0,5,0,7.5811415,7.9094968,28,13,-80.355705,0,3,3,2019,9,0,0,65,4,0,0,0,0,0,0,0,.048783381,0,1,1,0,1.1715578,7.5035892,60.02,56.42,51.49,57.57,8.333333333333334,1,1,0,0,7,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 -1264,1543,2763,-9,2764,2762,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.4805,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 -1264,1543,2764,2762,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.351922,8.4118671,0,30,-13,39.869698,0,2,2,2019,12,0,59,49,1,0,0,11.348069,11.348069,0,0,0,0,0,1,1,0,2.8956838,0,51.49,57.57,60.02,56.42,8.333333333333334,1,1,0,0,7,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 -1264,1543,2765,-9,2764,2762,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1127.6267,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,501.75,2608185.5,387625,927114.25,0,4140.8306 -1265,1544,2766,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,6.2703047,5.9851213,0,0,-1023.8752,0,-9,-9,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.1542959,35.73,41.87,-9,-9,1.666666666666667,1,1,0,0,0,10,2,0,893,-616.69226,0,0,0,430.16769 -1266,1545,2767,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.0152335,7.0808048,0,0,-954.59619,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4724987,7.2786255,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,354,359501.88,262760.13,0,0,953.65619 -1266,1546,2768,-9,2767,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1157.5206,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,43.27,12.89,-9,-9,1.666666666666667,1,1,0,0,5,10,1,1,2507,-143054.94,-10563.432,0,0,-170.52016 -1267,1547,2769,2770,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,3.8894675,4.1531391,53,-1,64.628098,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.5137801,3.9402027,44.73,56.4,59.14,52.5,8.333333333333334,1,1,0,0,3,2,4,1,892.5,1531343,730737.63,368100.75,0,3704.1716 -1267,1547,2770,2769,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.6653252,8.3883028,53,1,71.341888,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5958004,8.3489704,59.14,52.5,44.73,56.4,8.333333333333334,1,1,0,0,0,2,4,1,892.5,1531343,730737.63,368100.75,0,3704.1716 -1268,1548,2771,2772,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,4.7915049,4.5866995,55,6,38.383709,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.2021153,4.8103404,64.57000000000001,33.75,54.22,36.37,10,1,1,0,0,0,9,2,1,2096,501152.66,-37914.18,225075,0,2430.2441 -1268,1548,2772,2771,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,55,-6,25.935183,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5299227,0,54.22,36.37,64.57000000000001,33.75,8.333333333333334,1,1,0,0,0,9,2,1,2096,501152.66,-37914.18,225075,0,2430.2441 -1269,1549,2773,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.1999083,9.077919,0,0,0,-1025.0499,0,3,2,2019,11,0,37,38,1,0,0,27.905375,27.905375,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,12,1,5,1,304.5,126019.06,414896.59,88820.844,98421.172,2577.1025 -1269,1549,2774,-9,-9,2773,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1072.2822,-9,-9,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,51.55,-9,-9,8.333333333333334,1,1,0,0,1,1,5,1,304.5,126019.06,414896.59,88820.844,98421.172,2577.1025 -1270,1550,2775,2776,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0441675,9.0784855,0,32,3,108.80135,0,3,3,2019,4,0,44,74,1,0,0,18.51207,18.51207,0,0,0,0,2,0,0,0,2.7041137,0,48.28,60.18,46.8,57.03,8.333333333333334,1,1,0,0,12,12,5,1,372,1945095.1,1435216.3,329135.88,55212.738,6113.5874 -1270,1550,2776,2775,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.7049475,8.7848043,0,32,-3,-31.454681,0,2,3,2019,11,0,43,50,1,0,0,19.363607,19.363607,0,0,0,0,0,0,0,0,3.0233274,0,46.8,57.03,48.28,60.18,8.333333333333334,1,1,0,0,12,12,5,1,372,1945095.1,1435216.3,329135.88,55212.738,6113.5874 -1271,1551,2777,2779,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.8207536,7.7474422,0,4,-1,-30.68791,0,-9,-9,2019,9,0,50,48,1,0,0,4.6960392,4.6960392,0,0,0,0,0,1,1,0,0,0,56.05,45.76,49.41,58.28,8.333333333333334,1,1,0,0,3,8,4,1,782,1176976.3,761796.69,474005.03,118397.06,3913.6951 -1271,1551,2778,-9,2779,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-994.06256,-9,1,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,782,1176976.3,761796.69,474005.03,118397.06,3913.6951 -1271,1551,2779,2777,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.8202562,8.8471699,0,4,1,66.691963,0,2,2,2019,7,0,36,36,1,0,0,23.91783,23.91783,0,0,0,0,0,1,1,0,6.8857784,0,49.41,58.28,56.05,45.76,8.333333333333334,3,4,0,0,9,8,4,1,782,1176976.3,761796.69,474005.03,118397.06,3913.6951 -1272,1552,2780,-9,2781,2782,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.9609,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 -1272,1552,2781,2782,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.5091157,7.6906476,0,7,0,-96.969032,0,2,-9,2019,13,1,37,28,1,1,0,6.1982903,6.1982903,0,0,0,0,0,1,1,0,0,0,50.25,56.54,50.57,52.35,3.333333333333333,1,1,0,0,8,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 -1272,1552,2782,2781,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,8.4368267,8.6430197,0,7,0,6.6324291,0,2,2,2019,11,0,45,45,1,0,0,11.340487,11.340487,0,0,0,0,0,1,1,0,0,0,50.57,52.35,50.25,56.54,6.666666666666667,1,1,0,0,9,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 -1272,1552,2783,-9,2781,2782,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.07416,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,477,-124946.22,19319.541,174873.5,138867.63,3050.4148 -1273,1553,2784,2785,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,7.6881104,8.0042715,0,9,0,2.518554,0,3,3,2019,11,0,45,22,1,0,0,4.6340842,4.6340842,0,0,0,0,0,1,1,0,8.0402174,0,45.47,45.03,44.64,55.04,8.333333333333334,1,1,0,0,8,13,5,1,393.66666,1070716.3,1049707.8,289730.19,137750.97,5068.3589 -1273,1553,2785,2784,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.5983047,8.6965761,0,9,0,124.03342,0,-9,-9,2019,10,0,41,45,1,0,0,19.819204,19.819204,0,0,0,0,0,1,1,0,0,0,44.64,55.04,45.47,45.03,8.333333333333334,1,1,0,0,9,13,5,1,393.66666,1070716.3,1049707.8,289730.19,137750.97,5068.3589 -1273,1553,2786,-9,2784,2785,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.2355,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,393.66666,1070716.3,1049707.8,289730.19,137750.97,5068.3589 -1274,1554,2787,2788,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.8223581,8.8203936,0,9,2,12.593719,0,-9,-9,2019,11,0,38,40,1,1,0,18.402662,18.402662,0,0,0,0,0,0,0,0,0,0,49,50,41.87,59.15,7,4,1,0,0,1,13,5,1,346.5,734431.94,378469.28,280961.19,16220.631,5328.894 -1274,1554,2788,2787,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,9.2091246,8.9884996,0,9,-2,-7.7065487,0,3,3,2019,11,0,30,37,1,0,0,34.19553,34.19553,0,0,0,0,2,0,0,0,4.121407,0,41.87,59.15,49,50,8.333333333333334,1,1,0,0,10,13,5,1,346.5,734431.94,378469.28,280961.19,16220.631,5328.894 -1274,1555,2789,-9,2788,2787,1,1,22,0,0,0,1,1,1,0,4,8.2087326,8.2705402,0,0,0,-1031.0469,-9,2,1,2019,6,1,37,0,1,1,1,13.902466,13.902466,0,0,0,0,0,0,0,0,0,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,437,22248.592,11582.172,248283.33,123328.64,1451.1359 -1275,1556,2790,-9,2792,2791,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.928,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 -1275,1556,2791,2792,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.3960648,8.7179394,0,7,2,76.684929,0,-9,-9,2019,12,1,50,50,1,1,0,11.401964,11.401964,0,0,0,0,0,1,1,0,0,0,44.45,48.37,33.21,55.18,5,1,1,0,0,8,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 -1275,1556,2792,2791,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,7.0351639,7.0852723,0,7,-2,-130.69505,0,2,-9,2019,19,7,30,18,1,7,0,3.9312518,3.9312518,0,0,0,0,0,1,1,0,0,0,33.21,55.18,44.45,48.37,5,1,1,0,0,4,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 -1275,1556,2793,-9,2792,2791,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.4751,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,955,-88683.148,-14337.721,0,0,3075.5151 -1276,1557,2794,2795,-9,-9,1,1,37,2,2,0,2,2,-9,0,4,8.5667734,8.7822819,0,3,-2,270.34155,0,-9,-9,2019,6,0,44,46,1,0,0,16.077707,16.077707,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.45,50.44,10,1,1,0,0,3,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 -1276,1557,2795,2794,-9,-9,1,0,39,2,2,0,2,2,-9,0,4,8.4911757,8.2392149,0,3,2,117.04101,0,2,2,2019,12,2,24,24,1,2,0,14.466935,14.466935,0,0,0,0,0,1,1,0,3.9079573,0,51.45,50.44,54.2,57.49,8.333333333333334,1,1,0,0,7,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 -1276,1557,2796,-9,2795,2794,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-985.30847,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 -1276,1557,2797,-9,2795,2794,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.089,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,289.25,113492.06,-4223,112215.39,87406.625,3728.8003 -1277,1558,2798,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.6561651,8.987628,0,0,0,-1177.7026,0,-9,-9,2019,14,2,41,41,1,2,0,18.848114,18.848114,0,0,0,0,0,0,0,0,0,0,43.57,62.68,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,880,121035.77,101535.73,0,0,2083.926 -1278,1559,2799,2800,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.050303,5.0228472,3,1,-27.46871,0,3,3,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,4.7584548,4.5899529,54.62,21.54,35.17,15.39,8.333333333333334,1,1,0,0,0,11,2,1,2668,397975.25,44589.336,263555.69,0,2251.4321 -1278,1559,2800,2799,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,6.6673584,6.6659894,3,-1,120.69386,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,9.8818007,0,14.5,1,1,0,0,6.724607,35.17,15.39,54.62,21.54,6.666666666666667,1,1,0,0,0,11,2,1,2668,397975.25,44589.336,263555.69,0,2251.4321 -1278,1560,2801,-9,2800,2799,1,1,48,0,0,0,2,2,-9,0,3,8.1996183,7.8923059,0,0,0,-991.69543,0,3,3,2019,7,0,39,39,1,0,0,8.2171555,8.2171555,0,0,0,0,7,1,1,0,0,0,58.47,50.22,-9,-9,5,1,1,0,0,8,11,4,1,783,39118.047,9212.7422,0,0,783.49042 -1279,1561,2802,-9,2804,2803,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.1433,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,575.66669,1145234.5,228939.11,437571.84,130009.03,4765.3525 -1279,1561,2803,2804,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,9.9319553,9.8008394,0,8,-2,2.1159253,0,2,3,2019,7,0,27,34,1,0,0,66.043861,66.043861,0,0,0,0,0,0,0,0,3.744559,0,58.05,54.52,57.51,47.91,8.333333333333334,1,1,0,0,11,12,5,1,575.66669,1145234.5,228939.11,437571.84,130009.03,4765.3525 -1279,1561,2804,2803,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,8,2,-82.052444,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.51,47.91,58.05,54.52,1.666666666666667,1,1,0,0,2,12,5,1,575.66669,1145234.5,228939.11,437571.84,130009.03,4765.3525 -1280,1562,2805,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,5,0,8.4669285,8.6629314,0,0,-1156.3785,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2699652,50.56,49.64,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,1217,996058.69,100270.1,238808.13,0,2706.313 -1281,1563,2806,-9,2807,2808,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.1616,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,238.66667,385570.25,56776.863,411490.22,204147,3421.6995 -1281,1563,2807,2808,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,8.960392,9.3058777,0,7,-7,-152.57451,0,-9,-9,2019,14,4,42,45,1,4,0,33.396965,33.396965,0,0,0,0,0,1,1,0,0,0,28.62,57.5,51.77,58.57,3.333333333333333,1,1,0,0,8,10,5,1,238.66667,385570.25,56776.863,411490.22,204147,3421.6995 -1281,1563,2808,2807,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,0,0,0,7,7,-43.409504,0,2,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.9424936,0,51.77,58.57,28.62,57.5,8.333333333333334,1,1,1,0,6,10,5,1,238.66667,385570.25,56776.863,411490.22,204147,3421.6995 -1282,1564,2809,2810,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.6562066,5.7909985,8,4,-26.59201,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,.87536192,0,1,1,0,5.3800807,5.0590763,57.32,29.38,50,47,10,1,1,0,0,7,2,2,1,641,12153.634,129014.42,121967.45,0,960.71655 -1282,1564,2810,2809,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,-4,12.693185,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,57.32,29.38,7,4,1,0,0,0,2,2,1,641,12153.634,129014.42,121967.45,0,960.71655 -1283,1565,2811,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.9179373,6.8509345,0,0,-978.20343,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,1.4909291,0,19.408844,0,1,1,0,1.3357084,6.7374845,60.65,35.48,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1202,279095.19,57480.871,113598.59,0,682.85205 -1284,1566,2812,2813,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.6915259,5.9989104,47,-7,36.576111,0,2,2,2019,6,0,0,25,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7502446,0,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,8,6,2,1,1155,564489.5,250127.3,83147.063,0,1831.1189 -1284,1566,2813,2812,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.9863396,5.8056583,7,7,76.960205,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.61567616,5.7315135,57.16,56.15,58.89,48.6,8.333333333333334,1,1,0,0,4,6,2,1,1155,564489.5,250127.3,83147.063,0,1831.1189 -1285,1567,2814,2815,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,6.6146607,6.6863928,0,10,2,70.324821,0,2,-9,2019,16,5,13,15,1,5,0,6.7897177,6.7897177,0,0,0,0,0,0,0,0,0,0,51.38,36.23,32.67,48.75,6.666666666666667,1,1,0,0,3,7,3,1,903,-148059.95,0,0,0,1125.7168 -1285,1567,2815,2814,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,7.4241829,7.2492385,0,10,-2,14.990285,0,3,3,2019,13,1,15,24,1,1,0,13.314661,13.314661,0,0,0,0,0,0,0,0,0,0,32.67,48.75,51.38,36.23,3.333333333333333,1,1,0,0,11,7,3,1,903,-148059.95,0,0,0,1125.7168 -1285,1568,2816,-9,2815,2814,1,1,21,0,0,0,2,2,-9,0,3,7.857399,7.8621125,0,0,0,-914.12378,0,2,2,2019,8,0,45,48,1,0,1,7.9525452,7.9525452,0,0,0,0,0,0,0,0,0,0,44.66,55.48,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,2065,7760.314,0,0,0,782.76898 -1285,1569,2817,-9,2815,2814,1,0,19,0,0,0,2,2,-9,0,4,8.0862541,7.6642218,0,0,0,-1065.3506,0,2,2,2019,13,1,45,39,1,1,1,8.1862688,8.1862688,0,0,0,0,0,0,0,0,3.9658453,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,420,-170858.38,38222.078,0,0,1139.5157 -1286,1570,2818,2819,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.9337273,7.7833452,0,8,-3,43.603561,0,-9,-9,2019,11,0,25,30,1,0,0,10.308548,10.308548,0,0,0,0,0,1,1,0,7.834928,0,55.19,54.26,46.98,59.35,8.333333333333334,1,1,0,0,11,8,4,1,741,1139717.3,682362.63,321902.47,0,4848.8691 -1286,1570,2819,2818,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,7.5326128,7.58005,5.233727,8,3,24.791632,0,2,2,2019,10,0,35,40,1,0,0,5.6832156,5.6832156,0,0,0,0,0,1,1,0,5.3335567,5.6089306,46.98,59.35,55.19,54.26,6.666666666666667,1,1,0,1,9,8,4,1,741,1139717.3,682362.63,321902.47,0,4848.8691 -1287,1571,2820,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.6983976,7.3420687,0,0,0,-1010.898,0,-9,-9,2019,13,4,24,24,1,4,0,10.41779,10.41779,0,0,0,0,0,0,0,0,1.7492061,0,33.18,60.48,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,192,-289471.94,59006.059,0,0,4335.8354 -1287,1572,2821,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.5618277,8.6437349,0,0,0,-887.49713,0,-9,-9,2019,11,0,35,35,1,2,0,17.105291,17.105291,0,0,0,0,0,0,0,0,.4764165,0,49,56,-9,-9,7,4,6,0,0,1,10,5,0,141,-10805.172,99712.391,164476.84,117286.9,1809.9764 -1288,1573,2822,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.3899736,7.5648413,0,0,0,-992.10809,0,-9,-9,2019,13,2,40,38,1,2,0,3.8718429,3.8718429,0,0,0,0,0,1,1,0,0,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,373,136928.89,0,97493.141,72095.813,691.62512 -1289,1574,2823,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.3797779,8.4329891,0,0,0,-876.22717,-9,-9,-9,2019,15,4,39,0,1,4,0,9.8719711,9.8719711,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,5,2,3,0,0,13,6,4,1,70,249014.91,15459.784,0,0,1589.7347 -1290,1575,2824,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.277092,8.0560732,4.1340632,0,0,-890.29657,-9,-9,-9,2019,15,5,44,0,1,5,0,10.875868,10.875868,0,0,0,0,0,1,1,0,4.1880403,0,35.72,56.81,-9,-9,5,1,1,0,1,10,6,4,1,523.5,-222041.23,0,0,0,1769.4622 -1290,1575,2825,-9,-9,2824,1,1,16,0,0,1,2,0,-9,0,5,0,4.4199309,4.4355659,0,0,-1081.6248,-9,-9,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.4228787,0,60.02,56.42,-9,-9,10,2,3,0,0,0,6,4,1,523.5,-222041.23,0,0,0,1769.4622 -1291,1576,2826,-9,2829,2828,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.31323,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 -1291,1576,2827,-9,2829,2828,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.191,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 -1291,1576,2828,2829,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.7106752,8.7400036,0,7,1,45.518696,0,-9,-9,2019,7,0,48,45,1,0,0,16.278379,16.278379,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.27,44.81,8.333333333333334,1,1,0,0,9,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 -1291,1576,2829,2828,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,7,-1,93.671875,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.27,44.81,57.06,57.76,3.333333333333333,1,1,0,0,3,1,4,1,1474.25,-76846.078,179161.92,201482.19,153116.48,2757.2358 -1292,1577,2830,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.6085954,6.0864077,0,0,-1106.3666,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.3257985,54,46,-9,-9,7,4,6,0,0,0,11,2,0,929,414906.09,160514.22,144915.08,0,1025.3623 -1292,1578,2831,2832,-9,2830,1,1,52,0,0,0,3,3,-9,0,4,8.2761116,8.3528147,0,3,5,31.711374,0,-9,3,2019,7,0,46,47,1,0,0,8.5251646,8.5251646,0,0,0,0,5.48,1,1,0,0,0,57.16,56.15,38.91,47.09,1.666666666666667,1,1,0,0,5,11,3,0,615,345272.25,179656.38,0,0,2355.8809 -1292,1578,2832,2831,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,3,-5,-66.815353,0,2,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,38.91,47.09,57.16,56.15,3.333333333333333,1,1,0,0,1,11,3,0,615,345272.25,179656.38,0,0,2355.8809 -1293,1579,2833,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,3,0,4.7867403,5.0398436,0,0,-1026.047,-9,-9,-9,2019,36,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,4.8574529,0,13.29,60.42,-9,-9,3.333333333333333,1,1,0,1,3,8,2,1,711,114498.17,0,0,0,-381.59998 -1294,1580,2834,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1151.8271,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,7.7136192,0,0,1,1,0,0,0,38.24,25.76,-9,-9,5,1,1,0,0,0,4,1,0,732.5,-361313.19,0,0,0,1832.3142 -1294,1580,2835,-9,-9,2834,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1014.0648,-9,-9,-9,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,2,1,1,0,0,0,23.43,62.51,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,732.5,-361313.19,0,0,0,1832.3142 -1295,1581,2836,2837,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.2683859,8.1511402,0,1,0,30.234203,-9,2,3,2019,7,0,42,0,1,0,0,13.783582,13.783582,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,8,9,5,0,445.5,882.02344,-56463.527,0,0,3350.5288 -1295,1581,2837,2836,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.4177179,8.7035503,0,1,0,6.9110804,-9,2,1,2019,8,1,48,0,1,1,0,13.550117,13.550117,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.16,56.15,8.333333333333334,1,1,0,1,4,9,5,0,445.5,882.02344,-56463.527,0,0,3350.5288 -1296,1582,2838,2839,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,9.4745235,9.6577692,0,25,0,76.607857,0,1,1,2019,12,4,37,42,1,4,0,41.578232,41.578232,0,0,0,0,0,0,0,0,3.9177389,0,51.73,58.82,48.81,59.91,8.333333333333334,1,1,0,0,6,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 -1296,1582,2839,2838,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.0859594,8.7314768,0,25,0,-63.390915,0,3,3,2019,14,4,29,34,1,4,0,35.895031,35.895031,0,0,0,0,0,0,0,0,2.7996709,0,48.81,59.91,51.73,58.82,8.333333333333334,4,2,0,0,9,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 -1296,1582,2840,-9,2839,2838,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-940.94788,-9,1,1,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47.97,56.11,-9,-9,8.333333333333334,4,2,0,0,0,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 -1296,1582,2841,-9,2839,2838,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-937.13593,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,9,5,1,908,1960782.3,1081045,819108.75,406365.53,5946.1206 -1297,1583,2842,2843,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.7319217,7.861361,42,-2,49.966621,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.0885658,7.6153111,57.16,56.15,54.96,53.17,10,1,1,0,0,3,9,4,1,152.5,2367552.3,1729369.8,394866.41,0,5140.8232 -1297,1583,2843,2842,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.3204222,7.8544497,42,2,166.29224,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.606307,54.96,53.17,57.16,56.15,10,1,1,0,0,0,9,4,1,152.5,2367552.3,1729369.8,394866.41,0,5140.8232 -1298,1584,2844,-9,-9,-9,1,0,58,1,1,0,3,3,-9,1,2,0,5.8068509,5.3187838,0,0,-930.57312,-9,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,5.4039011,47.14,25.47,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,617,1898.4149,-20415.072,0,0,656.84912 -1298,1585,2845,-9,2846,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.0607,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,426,-11872.164,0,0,0,702.90454 -1298,1585,2846,-9,2844,-9,1,0,25,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1094.4717,-9,3,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,1,0,0,2,1,0,426,-11872.164,0,0,0,702.90454 -1299,1586,2847,-9,2848,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.2742,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 -1299,1586,2848,-9,-9,-9,1,0,35,0,4,0,3,3,-9,1,1,0,4.7579803,4.8167243,0,0,-910.91473,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,4.6111889,0,46.38,16.75,-9,-9,10,1,1,0,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 -1299,1586,2849,-9,2848,-9,1,1,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-915.04382,-9,3,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,2,1,1,0,0,0,21.38,64.67,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 -1299,1586,2850,-9,2848,-9,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1015.0526,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 -1299,1586,2851,-9,2848,-9,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-981.64587,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,546.40002,117866.76,0,0,0,2944.8557 -1300,1587,2852,-9,-9,-9,1,0,32,0,2,0,2,2,0,1,3,0,6.6083388,6.394474,0,0,-934.11066,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,6.262907,0,28.91,61.12,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,432.5,-43923.547,0,0,0,2795.0493 -1300,1587,2853,-9,2852,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.1182,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,432.5,-43923.547,0,0,0,2795.0493 -1301,1588,2854,-9,-9,-9,1,0,98,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.1879,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,27.727308,26.518747,242.12909,0,1,1,0,0,0,55,42,-9,-9,8,1,1,0,0,0,5,1,0,370,-54703.324,0,0,0,1037.2294 -1301,1589,2855,-9,2854,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1112.3922,0,3,3,2019,10,1,0,36,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,10,5,2,0,1152,0,0,0,0,862.05835 -1302,1590,2856,2857,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.641377,7.709609,15,9,10.013432,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8832893,7.8470335,59.11,26.09,51.48,13.33,6.666666666666667,1,1,0,0,5,5,3,1,1045,459991.13,208430.39,310318.78,0,2651.3513 -1302,1590,2857,2856,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,15,0,16.511744,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,3.2397153,0,0,1,1,0,1.4536911,0,51.48,13.33,59.11,26.09,8.333333333333334,1,1,0,0,0,5,3,1,1045,459991.13,208430.39,310318.78,0,2651.3513 -1302,1591,2858,-9,2857,2856,1,1,49,0,0,0,2,2,-9,0,2,7.8258243,8.0992241,0,0,0,-1012.8867,0,2,2,2019,7,0,39,39,1,0,0,7.4502892,7.4502892,0,0,0,0,0,1,1,0,0,0,55.75,39.77,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,554,-8445.1836,-72849.258,147074.7,120011.63,1329.4747 -1303,1592,2859,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,0,0,-846.0434,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,704,240941.44,0,275522.56,0,1910.5791 -1304,1593,2860,2861,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,10,18,16.806158,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5727315,0,48,37,57.06,57.76,6,1,1,0,0,0,13,3,1,1846,606520.25,268696.22,469257.19,0,2334.0667 -1304,1593,2861,2860,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.307559,8.5230293,0,10,-18,29.511086,0,3,2,2019,8,0,20,20,1,0,0,22.269176,22.269176,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,48,37,8.333333333333334,1,1,0,0,11,13,3,1,1846,606520.25,268696.22,469257.19,0,2334.0667 -1305,1594,2862,-9,2863,-9,1,1,44,0,0,0,1,1,-9,0,4,7.6453371,7.791254,0,0,0,-1011.5063,0,2,-9,2019,4,0,25,35,1,0,0,10.955569,10.955569,0,0,0,0,2,1,1,0,3.5750208,0,55.36,54.24,-9,-9,8.333333333333334,4,2,0,0,7,7,3,0,416,-53194.121,0,0,0,1240.7875 -1305,1595,2863,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-979.83081,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,41.58,46.92,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,974,-81507.289,0,0,0,574.98322 -1306,1596,2864,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.1541262,6.3519859,0,0,-973.43823,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.4892645,45.88,57.24,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,2519,280804.53,-11885.393,252112.83,0,1013.9624 -1307,1597,2865,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.3264546,7.2009401,0,0,0,-993.18091,0,-9,-9,2019,8,1,25,37,1,1,0,7.7202525,7.7202525,0,0,0,0,0,0,0,0,.76676011,0,52.82,53.97,-9,-9,10,1,1,0,0,7,5,3,1,242,65454.484,174703.84,118775.25,0,1203.085 -1308,1598,2866,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,8.179595,8.2652407,0,0,-981.67969,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7667136,7.8757334,49.53,58.64,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,381,735931.19,425520.63,211769.98,0,2074.542 -1309,1599,2867,2870,-9,-9,1,0,56,0,1,0,1,1,-9,0,3,9.175827,8.8483734,0,6,-3,35.752285,0,2,2,2019,11,0,32,29,1,2,0,24.899698,24.899698,0,0,0,0,0,0,0,0,0,0,49,48,51.73,58.82,7,1,1,0,0,1,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 -1309,1599,2868,-9,2867,2870,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-898.40204,-9,1,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.04,48.05,-9,-9,6.666666666666667,1,1,0,0,9,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 -1309,1599,2869,-9,2867,2870,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.12012,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 -1309,1599,2870,2867,-9,-9,1,1,59,0,1,0,2,2,-9,0,5,8.5581522,8.5686789,0,6,3,78.054993,0,1,1,2019,8,0,40,50,1,0,0,14.780473,14.780473,0,0,0,0,0,0,0,0,7.547173,0,51.73,58.82,49,48,8.333333333333334,1,1,0,0,7,1,5,0,1076.5,126718.58,179916.64,112583.96,33950.488,5707.5898 -1310,1600,2871,2872,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,7.9402299,8.209796,0,2,4,32.597702,0,2,1,2019,9,0,50,50,1,0,0,7.4889774,7.4889774,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53.22,52.7,8.333333333333334,1,1,0,0,11,10,5,1,647,192266.31,47758.773,245730.14,194448.17,4137.7114 -1310,1600,2872,2871,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.6001959,8.9077015,0,2,-4,-95.710419,0,-9,-9,2019,8,0,23,33,1,0,0,31.970243,31.970243,0,0,0,0,0,1,1,0,0,0,53.22,52.7,54.2,57.49,8.333333333333334,1,1,0,0,8,10,5,1,647,192266.31,47758.773,245730.14,194448.17,4137.7114 -1310,1600,2873,-9,2872,2871,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-849.92944,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,647,192266.31,47758.773,245730.14,194448.17,4137.7114 -1311,1601,2874,2875,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.3081026,8.118803,0,11,-2,38.953838,0,-9,-9,2019,10,0,30,35,1,0,0,11.26757,11.26757,0,0,0,0,0,1,1,0,1.5608213,0,43.09,51.86,51,52.08,8.333333333333334,1,1,0,0,10,2,4,1,544.33331,281170.66,77878.344,166082.17,99326.758,3690.2732 -1311,1601,2875,2874,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.3533611,8.3627195,0,11,2,-188.12352,0,2,2,2019,8,0,38,38,1,0,0,11.544971,11.544971,0,0,0,0,0,1,1,0,6.391994,0,51,52.08,43.09,51.86,8.333333333333334,1,1,0,0,10,2,4,1,544.33331,281170.66,77878.344,166082.17,99326.758,3690.2732 -1311,1601,2876,-9,2874,2875,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2386,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,544.33331,281170.66,77878.344,166082.17,99326.758,3690.2732 -1312,1602,2877,2878,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,45,1,27.031647,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,9.3274536,0,0,1,1,0,0,0,50,47,25.74,31.76,7,4,5,0,1,0,4,2,1,558.5,233491.27,147093.7,45648.211,0,1294.682 -1312,1602,2878,2877,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.5363264,6.3968801,45,-1,-33.461529,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.3397923,25.74,31.76,50,47,8.333333333333334,4,5,0,0,0,4,2,1,558.5,233491.27,147093.7,45648.211,0,1294.682 -1313,1603,2879,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.3877382,8.5372562,0,6,-13,37.341763,0,-9,-9,2019,12,3,38,38,1,3,0,17.115417,17.115417,0,0,0,0,0,0,0,0,0,0,50,57,38.63,56.7,6.666666666666667,1,1,0,0,6,5,5,1,371,-208502.17,-53831.813,0,0,1634.2759 -1314,1604,2880,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,8.4185886,8.09233,0,0,-1093.7837,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.4033184,59.45,31.85,-9,-9,10,1,1,0,0,0,13,4,1,141,560119.13,426919,239251.7,19631.73,2463.9236 -1315,1605,2881,2883,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.4124832,7.3498397,0,10,-12,23.01111,0,3,2,2019,11,0,20,0,1,2,0,9.1364565,9.1364565,0,0,0,0,0,1,1,0,0,0,48.51,54.51,53.39,44.47,6.666666666666667,1,1,0,1,2,10,3,0,585.66669,-49660.402,88735.586,0,0,2334.3215 -1315,1605,2882,-9,2881,2883,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.42377,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,585.66669,-49660.402,88735.586,0,0,2334.3215 -1315,1605,2883,2881,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.4179702,7.4518213,0,10,12,121.10172,0,-9,-9,2019,9,0,30,30,1,0,0,7.3990464,7.3990464,0,0,0,0,0,1,1,0,3.3342133,0,53.39,44.47,48.51,54.51,5,1,1,0,0,11,10,3,0,585.66669,-49660.402,88735.586,0,0,2334.3215 -1316,1606,2884,2885,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6461487,8.7054796,0,31,2,-22.70619,0,2,2,2019,6,0,38,41,1,0,0,17.195282,17.195282,0,0,0,0,0,0,0,0,3.1188486,0,62.42,45.64,57.34,47.92,8.333333333333334,4,2,0,0,8,4,4,1,377,209472.03,14665.467,100299.54,49151.547,2013.0178 -1316,1606,2885,2884,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.9711761,7.1353369,0,31,-2,70.449989,0,3,2,2019,11,0,20,30,1,0,0,7.5549245,7.5549245,0,0,0,0,0,0,0,0,0,0,57.34,47.92,62.42,45.64,8.333333333333334,1,1,0,0,8,4,4,1,377,209472.03,14665.467,100299.54,49151.547,2013.0178 -1316,1607,2886,-9,2885,2884,1,0,25,0,0,0,2,2,-9,0,3,7.6803727,7.5450253,0,0,0,-942.33252,0,2,2,2019,9,0,40,37,1,0,1,7.6858578,7.6858578,0,0,0,0,0,0,0,0,1.8431628,0,55.27,44.81,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,296,-18348.836,0,0,0,733.64209 -1316,1608,2887,-9,2885,2884,1,1,23,0,0,0,2,2,-9,0,4,8.253603,8.0902328,0,0,0,-1037.061,0,2,2,2019,10,0,37,37,1,1,1,11.300709,11.300709,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,4,1,807,-259385.72,0,0,0,1457.6743 -1317,1609,2888,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,6.5855393,6.5068245,0,0,-1059.4835,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,3.1681037,0,0,0,1,1,0,4.8658414,6.3751974,34.21,51.94,-9,-9,10,1,1,0,0,0,9,2,1,836,206780.25,0,0,0,840.53595 -1318,1610,2889,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.286798,6.5920973,0,0,-1109.9797,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7080534,6.4775705,53,44,-9,-9,8,1,1,0,0,0,13,2,0,2547,646927.13,47421.363,63899.176,0,717.98578 -1319,1611,2890,2891,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,9.7227612,9.833806,0,44,-4,-55.999645,0,3,3,2019,9,0,15,-9,1,0,0,119.29541,119.29541,0,0,0,0,0,1,1,0,5.0823464,0,50.65,53.71,43.85,50.34,6.666666666666667,2,3,0,0,13,8,5,1,562,2925030,1025087.4,938787.75,0,9017.4141 -1319,1611,2891,2890,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.0651088,5.5646992,44,4,-94.904114,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.1180649,5.0594659,43.85,50.34,50.65,53.71,5,2,3,0,0,7,8,5,1,562,2925030,1025087.4,938787.75,0,9017.4141 -1319,1612,2892,-9,2890,2891,1,0,39,0,0,0,1,1,-9,0,4,8.9763346,8.6491613,0,0,0,-958.3418,0,1,2,2019,7,0,40,40,1,0,0,19.722513,19.722513,0,0,0,0,0,1,1,0,4.6386671,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,295,156142.91,128847.95,112428.9,51618.066,2073.8472 -1319,1613,2893,-9,2890,2891,1,1,36,0,0,0,1,1,-9,0,5,9.5744219,9.7508917,0,0,0,-1103.743,0,1,2,2019,5,0,70,70,1,0,0,20.3237,20.3237,0,0,0,0,0,1,1,0,3.4771414,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,13,8,5,1,133,204980.45,114359.34,0,0,4430.8379 -1319,1614,2894,-9,2890,2891,1,1,32,0,0,0,1,1,-9,0,4,8.6726007,8.5596809,0,0,0,-1032.7799,0,1,2,2019,18,6,40,40,1,6,0,19.08165,19.08165,0,0,0,0,0,1,1,0,0,0,31.12,63.98,-9,-9,5,2,3,0,0,9,8,5,1,1177,154727.23,14736.947,0,0,2171.2625 -1320,1615,2895,-9,2896,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.55103,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,2,3,-9,0,0,7,5,0,488.33334,571592.69,205218.83,217214.81,54087.219,3841.8115 -1320,1615,2896,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,9.3442841,9.2720556,0,0,0,-1034.2649,0,2,2,2019,11,1,47,46,1,1,0,34.67955,34.67955,0,0,0,0,0,0,0,0,1.5591726,0,49.3,59.89,-9,-9,8.333333333333334,2,3,0,0,8,7,5,0,488.33334,571592.69,205218.83,217214.81,54087.219,3841.8115 -1320,1615,2897,-9,2896,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.67102,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,7,5,0,488.33334,571592.69,205218.83,217214.81,54087.219,3841.8115 -1321,1616,2898,2899,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.1129408,7.8834157,0,9,0,75.03981,0,3,3,2019,9,0,38,38,1,0,0,8.0596542,8.0596542,0,0,0,0,0,0,0,0,0,0,46.4,57.35,51.41,56.15,6.666666666666667,1,1,0,0,8,2,4,0,937.5,218339.41,39047.039,241867.2,118963.53,2419.6245 -1321,1616,2899,2898,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,7.9130545,8.1340752,0,9,0,-44.635918,0,-9,-9,2019,15,3,38,38,1,3,0,9.1678581,9.1678581,0,0,0,0,14.5,0,0,0,0,0,51.41,56.15,46.4,57.35,8.333333333333334,1,1,0,0,6,2,4,0,937.5,218339.41,39047.039,241867.2,118963.53,2419.6245 -1322,1617,2900,2901,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,6.9468937,6.8912864,11,9,-21.91242,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,.64243811,0,0,1,1,0,6.772646,7.1124001,52,47,35.67,36.57,5,1,1,0,0,0,8,2,1,1395.5,1006391.1,0,878778.63,0,2082.4521 -1322,1617,2901,2900,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.5518465,6.7844763,11,0,-24.573469,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,5.8864703,6.5474181,35.67,36.57,52,47,6.666666666666667,3,4,0,0,0,8,2,1,1395.5,1006391.1,0,878778.63,0,2082.4521 -1322,1618,2902,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.9349661,8.1735134,0,0,0,-973.15546,0,-9,-9,2019,10,4,40,40,1,4,0,7.0035396,7.0035396,0,0,0,0,0,1,1,0,2.4387414,0,47.79,53.79,-9,-9,3.333333333333333,1,1,0,0,12,8,4,1,457,-304425.75,-124700.23,0,0,823.9931 -1323,1619,2903,2904,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1508274,7.8316908,0,8,2,-79.395187,0,3,3,2019,10,0,25,-9,1,1,0,15.400431,15.400431,0,0,0,0,0,0,0,0,0,0,50,49,54.2,57.49,7,1,1,0,0,1,13,4,1,467.5,-23992.484,45018.984,0,0,2407.8811 -1323,1619,2904,2903,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3168249,7.2449245,0,8,-2,57.448776,0,3,3,2019,12,0,22,22,1,0,0,7.1863136,7.1863136,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50,49,8.333333333333334,1,1,0,0,9,13,4,1,467.5,-23992.484,45018.984,0,0,2407.8811 -1324,1620,2905,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.3613176,8.4173012,0,0,0,-1026.5532,0,3,-9,2019,10,0,37,37,1,0,0,14.076952,14.076952,0,0,0,0,27,0,0,0,3.1922243,0,50.24,58.02,-9,-9,10,1,1,0,0,10,4,4,1,367,2819795.8,1240676.3,646500.06,0,1686.6011 -1325,1621,2906,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.164125,5.1608067,0,0,-944.47455,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.6807628,4.7579498,63.1,26.49,-9,-9,10,3,4,0,1,0,8,2,0,72,-210404,58028.098,0,0,298.60977 -1326,1622,2907,2908,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.5801764,6.7709045,0,19,0,-90.054443,0,2,2,2019,9,0,35,34,1,0,0,2.0632389,2.0632389,0,0,0,0,0,0,0,0,0,0,54.81,43.45,44.19,58.01,6.666666666666667,1,1,0,0,2,13,4,1,1465,459203.28,356147.5,98890.195,0,1959.8134 -1326,1622,2908,2907,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.101203,8.0070114,0,21,0,31.97578,0,2,3,2019,12,0,48,40,1,0,0,7.8623977,7.8623977,0,0,0,0,0,0,0,0,0,0,44.19,58.01,54.81,43.45,5,1,1,0,0,11,13,4,1,1465,459203.28,356147.5,98890.195,0,1959.8134 -1326,1623,2909,-9,2907,2908,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-992.92633,-9,1,2,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,53.08,52.64,-9,-9,6.666666666666667,1,1,1,1,0,13,1,1,958,-70657.977,0,0,0,0 -1327,1624,2910,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.8479934,5.5419393,0,0,-1045.7689,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,5.4773993,38.46,42.23,-9,-9,5,1,1,0,0,0,5,2,1,3737,1052807.4,194455.98,439291.94,0,164.26529 -1328,1625,2911,2912,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.0825119,8.2441139,0,39,3,-25.494284,0,-9,-9,2019,9,0,36,40,1,0,0,11.462146,11.462146,0,0,0,0,14.5,0,0,0,0,0,37.89,41.15,43.16,29.15,3.333333333333333,2,3,0,0,9,8,3,1,628.5,62168.422,24994.559,0,0,1915.6545 -1328,1625,2912,2911,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,0,0,0,9,-3,-50.438995,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.16,29.15,37.89,41.15,6.666666666666667,2,3,0,0,0,8,3,1,628.5,62168.422,24994.559,0,0,1915.6545 -1328,1626,2913,-9,2912,2911,1,1,25,0,0,0,1,1,-9,0,4,8.6575499,8.5023232,0,0,0,-862.52283,0,3,2,2019,10,0,37,43,1,1,1,17.418489,17.418489,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,5,1,2545,-310884.47,-10267.639,0,0,2422.1411 -1328,1627,2914,-9,2912,2911,1,1,23,0,0,0,2,2,1,0,4,7.824656,8.1421251,0,0,0,-911.9491,-9,3,2,2019,10,0,40,0,1,1,1,7.5728879,7.5728879,0,0,0,0,0,0,0,0,.91763002,0,48,59,-9,-9,7,2,3,0,0,1,8,3,1,306,-6898.4839,20807.248,0,0,763.97949 -1329,1628,2915,2916,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,11,4,0,0,-9,-9,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,42.23,49.99,28.62,25,3.333333333333333,1,1,0,0,0,4,1,0,493.5,-106451.4,33275.906,0,0,3228.7266 -1329,1628,2916,2915,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,0,0,0,11,-4,0,0,-9,-9,2019,29,10,0,0,4,10,0,0,0,0,0,0,0,120,1,1,0,0,0,28.62,25,42.23,49.99,1.666666666666667,1,1,0,1,0,4,1,0,493.5,-106451.4,33275.906,0,0,3228.7266 -1330,1629,2917,2918,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2558026,7.153492,6,1,119.00794,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,80.866234,0,0,1,1,0,0,7.1787734,53,47,35.63,62.19,7,1,1,0,0,0,13,2,1,1970,426971.63,205581.34,63528.492,0,2570.1357 -1330,1629,2918,2917,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.0949984,5.3665886,6,-1,-95.525375,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,74.5,1,1,0,0,5.1404419,35.63,62.19,53,47,6.666666666666667,1,1,0,0,4,13,2,1,1970,426971.63,205581.34,63528.492,0,2570.1357 -1331,1630,2919,2920,-9,-9,1,1,58,0,0,0,3,3,-9,1,3,8.3298693,7.8809023,0,36,0,36.806042,0,3,3,2019,6,0,50,0,1,0,0,8.3311996,8.3311996,0,0,0,0,0,1,1,0,0,0,60.9,36.71,50.91,41.38,10,1,1,0,0,1,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 -1331,1630,2920,2919,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,7.9440951,7.8486238,0,36,0,87.101418,0,3,3,2019,12,2,35,0,1,2,0,10.099029,10.099029,0,0,0,0,91,1,1,0,0,0,50.91,41.38,60.9,36.71,8.333333333333334,1,1,0,0,1,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 -1331,1630,2921,-9,2920,2919,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-957.9715,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 -1331,1630,2922,-9,2920,2919,1,1,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1020.424,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,0,925.25,2771738.8,1775705.3,340982.47,0,6225.3745 -1332,1631,2923,-9,2927,2926,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-864.04413,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 -1332,1631,2924,-9,2927,2926,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1065.4467,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 -1332,1631,2925,-9,2927,2926,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-999.64331,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 -1332,1631,2926,2927,-9,-9,1,1,34,0,3,0,3,3,-9,0,4,8.7522173,8.6341925,0,5,-1,-84.335983,0,-9,-9,2019,9,0,50,40,1,0,0,13.07501,13.07501,0,0,0,0,0,1,1,0,0,0,54.2,57.49,40.73,47.29,0,1,1,0,0,8,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 -1332,1631,2927,2926,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,0,0,5,1,23.575766,0,2,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.73,47.29,54.2,57.49,6.666666666666667,1,1,1,0,0,11,3,0,638.79999,358454.53,358591.06,200034.92,182568.8,3400.1453 -1333,1632,2928,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.984663,9.0059414,0,1,6,-61.602341,-9,2,2,2019,8,0,41,0,1,0,0,22.113253,22.113253,0,0,0,0,0,0,0,0,0,0,51.49,57.57,39.16,62.84,8.333333333333334,1,1,0,0,9,5,5,1,838,258810.28,-24135.572,72690.961,20916.195,3512.6809 -1333,1633,2929,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.6484833,8.5118027,0,1,-6,32.623138,-9,-9,-9,2019,12,2,37,0,1,2,0,13.025576,13.025576,0,0,0,0,0,0,0,0,.09714099,0,39.16,62.84,51.49,57.57,5,1,1,0,0,2,5,5,1,398,250526.78,57763.902,0,0,1334.3707 -1334,1634,2930,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.7191615,6.7877622,0,0,-1148.1825,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9698076,53,46,-9,-9,7,1,1,0,0,0,8,2,0,1074,697341.94,235561.23,388672.13,0,1107.1891 -1335,1635,2931,2932,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1355066,8.2707844,6.4458189,42,0,135.87343,0,3,3,2019,7,0,34,35,1,0,0,12.758514,12.758514,0,0,0,0,0,0,0,0,6.9513001,6.2051997,57.73,54.53,57.42,49.34,0,1,1,0,0,11,5,4,1,549,1478883.8,851620.38,554090.75,0,2537.8691 -1335,1635,2932,2931,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,6.8627868,6.5534787,42,0,-32.190754,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.878664,6.6189504,57.42,49.34,57.73,54.53,6.666666666666667,1,1,0,0,10,5,4,1,549,1478883.8,851620.38,554090.75,0,2537.8691 -1336,1636,2933,2934,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,0,0,0,6,0,45.833549,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,34.71,29.08,60.02,56.42,3.333333333333333,1,1,0,0,2,5,4,0,466.5,352834.13,26594.916,190851.59,0,2745.6919 -1336,1636,2934,2933,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,8.817852,8.6747894,0,6,0,-33.367897,0,3,3,2019,6,0,55,56,1,0,0,10.626236,10.626236,0,0,0,0,5.48,0,0,0,0,0,60.02,56.42,34.71,29.08,8.333333333333334,1,1,0,0,7,5,4,0,466.5,352834.13,26594.916,190851.59,0,2745.6919 -1336,1637,2935,-9,2933,2934,1,1,33,0,0,0,2,2,-9,0,4,7.3872423,7.7552371,0,0,0,-1040.3728,0,3,3,2019,10,0,32,16,1,1,1,7.234499,7.234499,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,3,0,2521,12410.46,111625.69,0,0,954.55426 -1336,1638,2936,-9,2933,2934,1,1,24,0,0,0,2,2,-9,0,4,8.1979256,8.3821812,0,0,0,-928.21124,0,3,3,2019,10,0,20,26,1,1,1,21.263029,21.263029,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,0,169,-446731.81,0,0,0,1297.9252 -1336,1639,2937,-9,2933,2934,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.54315,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,1,0,0,5,1,0,332,-205171.06,0,0,0,99.939545 -1337,1640,2938,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,6.909349,7.1296058,0,0,-985.84711,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4890733,7.220572,57.06,57.76,-9,-9,10,1,1,0,0,0,11,2,1,544,111688.1,192644.98,125462.4,0,2922.2021 -1338,1641,2939,2940,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.422883,6.556396,0,49,-1,-157.56731,0,-9,-9,2019,9,0,13,18,1,0,0,4.3363342,4.3363342,0,0,1.9542127,0,0,1,1,0,0,0,57.18,48.06,62.39,56.71,8.333333333333334,1,1,0,0,8,9,2,1,370,597335.44,147335.78,334389.75,0,1261.8608 -1338,1641,2940,2939,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.0874491,5.9716134,49,1,-42.607121,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.8111873,6.3803968,62.39,56.71,57.18,48.06,8.333333333333334,1,1,0,0,6,9,2,1,370,597335.44,147335.78,334389.75,0,1261.8608 -1339,1642,2941,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.448523,6.0456352,0,0,-954.38135,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8274341,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,437,-251782.81,70920.094,130663.17,0,1660.4501 -1340,1643,2942,-9,2945,2946,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.5013,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 -1340,1643,2943,-9,2945,2946,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.4101,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 -1340,1643,2944,-9,2945,2946,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.202,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 -1340,1643,2945,2946,-9,-9,1,0,27,1,3,0,2,2,-9,0,3,0,0,0,9,-2,15.679172,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,49,58,8.333333333333334,2,3,1,0,0,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 -1340,1643,2946,2945,-9,-9,1,1,29,1,3,0,3,3,-9,0,4,8.3675375,7.7327518,0,9,2,50.555042,0,3,3,2019,10,0,40,40,1,1,0,7.4783611,7.4783611,0,0,0,0,0,1,1,0,0,0,49,58,62.66,52.4,7,2,3,0,0,1,6,3,0,1167.6,85435.266,0,110600.2,0,2442.0295 -1341,1644,2947,2948,-9,-9,1,1,56,0,1,0,1,1,-9,0,5,8.5835037,8.6933994,0,7,0,-47.660172,0,2,2,2019,10,0,37,37,1,0,0,17.126671,17.126671,0,0,0,0,0,1,1,0,6.8883557,0,55.09,55.87,52,53,10,1,1,0,0,8,13,3,1,542,2122949.5,1079539.9,181448.33,0,2975.3652 -1341,1644,2948,2947,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,0,0,0,7,0,60.709846,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55.09,55.87,5,1,1,0,0,6,13,3,1,542,2122949.5,1079539.9,181448.33,0,2975.3652 -1341,1644,2949,-9,2948,2947,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1129.5353,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,3,1,542,2122949.5,1079539.9,181448.33,0,2975.3652 -1342,1645,2950,2952,-9,-9,1,0,35,0,1,0,2,2,-9,0,1,8.0835762,8.0598822,0,2,-7,-75.276955,0,-9,-9,2019,26,9,45,43,1,9,0,9.3190613,9.3190613,0,0,0,0,2,1,1,0,0,0,21.24,48.67,35.5,38.04,1.666666666666667,1,1,0,0,3,9,3,0,1157.6666,389654.5,61101.262,243974.06,155807.73,1952.4288 -1342,1645,2951,-9,-9,2952,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1052.4973,-9,-9,3,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.78,60.04,-9,-9,3.333333333333333,1,1,0,0,0,9,3,0,1157.6666,389654.5,61101.262,243974.06,155807.73,1952.4288 -1342,1645,2952,2950,-9,-9,1,1,42,0,1,0,3,3,-9,0,2,6.8536119,7.2895136,0,2,7,85.838814,0,2,3,2019,14,3,40,40,1,3,0,3.1603208,3.1603208,0,0,0,0,0,1,1,0,0,0,35.5,38.04,21.24,48.67,6.666666666666667,1,1,0,0,5,9,3,0,1157.6666,389654.5,61101.262,243974.06,155807.73,1952.4288 -1343,1646,2953,2954,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.4388409,8.4279337,5.9559851,2,8,-56.23698,-9,2,2,2019,7,0,100,0,1,0,0,5.1819563,5.1819563,0,0,0,0,0,0,0,0,5.1031222,5.9586864,62.39,56.71,42.46,47.87,10,1,1,0,0,11,9,5,0,902.5,1606303.3,1330752.3,374871.28,86796.031,4240.7813 -1343,1646,2954,2953,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.6767874,8.4628143,0,2,-8,42.50106,0,-9,-9,2019,22,8,46,70,1,8,0,12.823532,12.823532,0,0,0,0,0,0,0,0,0,0,42.46,47.87,62.39,56.71,3.333333333333333,1,1,0,0,4,9,5,0,902.5,1606303.3,1330752.3,374871.28,86796.031,4240.7813 -1344,1647,2955,2956,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.8881922,8.8387775,6,2,33.141682,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,7.8368721,0,0,1,1,0,7.8614511,8.7648144,56.35,24.7,50.22,32.05,8.333333333333334,1,1,0,0,0,9,4,1,1848,1180473.1,592192.75,470929.81,308808.63,9279.8418 -1344,1647,2956,2955,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.1177273,5.0159616,6,-2,-.71680433,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.6284356,4.7927513,50.22,32.05,56.35,24.7,8.333333333333334,1,1,0,0,0,9,4,1,1848,1180473.1,592192.75,470929.81,308808.63,9279.8418 -1345,1648,2957,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.7582245,6.6966147,0,0,-982.8891,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1272039,6.8610277,64.55,39.17,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2018,1281173.4,130598.63,392986.53,0,981.38086 -1346,1649,2958,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-930.44525,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.68976432,0,49.92,34.09,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,291,210041.58,0,0,0,1505.3372 -1347,1650,2959,2960,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.5030231,9.5772743,0,30,-5,46.683254,0,2,2,2019,11,0,56,50,1,0,0,29.645069,29.645069,0,0,0,0,0,0,0,0,0,0,49.05,50.32,59.7,32.49,8.333333333333334,1,1,0,0,12,10,5,1,1340,414199.25,-82071.727,0,0,8565.8369 -1347,1650,2960,2959,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.1510773,7.2093616,0,9,5,58.469036,0,2,2,2019,6,0,32,47,1,0,0,3.6171653,3.6171653,0,0,0,0,0,0,0,0,8.2898693,0,59.7,32.49,49.05,50.32,8.333333333333334,1,1,0,0,12,10,5,1,1340,414199.25,-82071.727,0,0,8565.8369 -1348,1651,2961,2962,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.6201892,7.5625081,0,6,7,-21.529169,0,-9,-9,2019,12,0,34,39,1,0,0,6.1493459,6.1493459,0,0,0,0,0,1,1,0,0,0,50.87,42.5,31.37,44.74,6.666666666666667,1,1,0,0,11,4,3,0,661.5,-52808.727,-5001.8242,0,0,1751.2244 -1348,1651,2962,2961,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,5.6797013,5.8804412,0,6,-7,68.727928,0,2,2,2019,23,7,33,19,1,7,0,1.0390369,1.0390369,0,0,0,0,0,1,1,0,0,0,31.37,44.74,50.87,42.5,3.333333333333333,1,1,0,1,3,4,3,0,661.5,-52808.727,-5001.8242,0,0,1751.2244 -1349,1652,2963,2964,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.4828262,6.4535928,49,-3,68.155388,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3228564,6.5407257,55.34,54.26,50.45,44.34,10,1,1,0,0,0,12,3,1,570.5,296539.28,146342.19,109926.01,0,2357.9966 -1349,1652,2964,2963,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.9848228,7.0721474,49,3,44.102119,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8838477,7.323585,50.45,44.34,55.34,54.26,8.333333333333334,1,1,0,0,0,12,3,1,570.5,296539.28,146342.19,109926.01,0,2357.9966 -1350,1653,2965,2967,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.241374,8.2801628,0,7,2,73.288033,0,-9,-9,2019,13,2,40,40,1,2,0,11.825142,11.825142,0,0,0,0,0,1,1,0,.69582725,0,46.19,42.17,32.71,55.43,3.333333333333333,1,1,0,0,11,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 -1350,1653,2966,-9,2967,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1069.5074,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 -1350,1653,2967,2965,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.9778237,8.0046139,0,7,-2,-85.493881,-9,1,1,2019,16,4,28,0,1,4,0,15.669107,15.669107,0,0,0,0,0,1,1,0,1.3513489,0,32.71,55.43,46.19,42.17,6.666666666666667,1,1,0,1,11,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 -1350,1653,2968,-9,2967,2965,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.2204,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,466.25,-126606.45,8159.5571,178473.63,120147.45,3116.177 -1351,1654,2969,2970,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,41,-3,151.39352,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.95,56.13,46.49,47.89,8.333333333333334,1,1,1,0,8,10,5,1,771,1797837.5,1468474.1,380855.44,0,3160.2861 -1351,1654,2970,2969,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.8781176,9.2773209,0,41,3,-57.385189,0,3,3,2019,13,1,24,40,1,1,0,48.582905,48.582905,0,0,0,0,0,0,0,0,0,0,46.49,47.89,47.95,56.13,6.666666666666667,1,1,0,0,11,10,5,1,771,1797837.5,1468474.1,380855.44,0,3160.2861 -1352,1655,2971,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.8166003,6.2120132,0,0,-873.54022,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3068519,54.2,57.49,-9,-9,0,1,1,0,0,0,1,2,1,141,226225.73,156321.52,118813.3,0,1026.3857 -1353,1656,2972,2973,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.3623018,5.5152335,8,9,3.1343234,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.6315926,5.5532069,52.88,43.27,41.07,60.93,8.333333333333334,1,1,0,0,7,9,4,1,344.5,659078.06,407391.25,308304.5,0,2164.5259 -1353,1656,2973,2972,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,8.6016865,8.3361301,0,8,0,-40.042034,0,-9,-9,2019,6,0,38,42,1,0,0,15.302035,15.302035,0,0,0,0,7,1,1,0,0,0,41.07,60.93,52.88,43.27,10,1,1,0,0,9,9,4,1,344.5,659078.06,407391.25,308304.5,0,2164.5259 -1354,1657,2974,2975,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,7.8171058,7.895637,40,6,-12.26123,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.3774498,7.9403663,54.2,57.49,40.12,39.32,6.666666666666667,1,1,0,0,0,12,4,1,331.5,1386525.8,867275.75,216419.19,0,2672.2307 -1354,1657,2975,2974,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7642121,8.0449257,6.2646422,40,-6,-120.94759,0,3,-9,2019,16,5,36,36,1,5,0,10.745909,10.745909,0,0,0,0,14.5,0,0,0,2.9711986,5.7988977,40.12,39.32,54.2,57.49,5,1,1,0,0,13,12,4,1,331.5,1386525.8,867275.75,216419.19,0,2672.2307 -1355,1658,2976,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.9738922,9.3918743,0,7,0,-176.32095,0,1,1,2019,12,0,43,45,1,0,0,20.47275,20.47275,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,325,528203.5,-15500.109,221665.83,173238.47,3358.0515 -1355,1659,2977,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,9.8018389,9.6479416,0,7,0,-51.388832,0,1,2,2019,6,0,40,40,1,0,0,46.570904,46.570904,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,9,8,5,1,415,347016.66,25603.846,570114.19,344916.25,4756.7378 -1356,1660,2978,2979,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,5.0315289,4.8031731,32,5,103.62548,0,2,1,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,4.8145146,62.39,56.71,62.39,56.71,10,1,1,0,0,0,4,2,1,1857,309591.34,49311.605,222501.28,0,1152.0094 -1356,1660,2979,2978,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,31,-5,126.04816,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,62.39,56.71,10,2,3,0,0,5,4,2,1,1857,309591.34,49311.605,222501.28,0,1152.0094 -1356,1661,2980,-9,2979,2978,1,0,27,0,0,0,1,1,-9,0,5,8.2039785,8.0684795,0,0,0,-837.914,0,2,2,2019,5,0,40,40,1,0,0,9.4632921,9.4632921,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,4,4,1,372,116132.24,35946,0,0,1047.5707 -1356,1662,2981,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.3968506,8.1968498,0,0,0,-970.16675,0,-9,-9,2019,7,0,50,38,1,0,0,8.758028,8.758028,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,220,136641.88,0,0,0,1925.699 -1357,1663,2982,2983,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.4007149,8.1195993,19,6,-68.365593,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8787951,8.1000242,57.06,57.76,48.64,39.94,10,1,1,0,0,2,11,4,1,610,1480233.8,984653.88,325702.88,0,3037.448 -1357,1663,2983,2982,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.70468,7.2204552,19,-6,86.379295,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.4029665,7.7709351,48.64,39.94,57.06,57.76,0,1,1,0,0,2,11,4,1,610,1480233.8,984653.88,325702.88,0,3037.448 -1358,1664,2984,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7433186,8.5622702,0,9,-5,-23.9881,0,3,1,2019,11,1,42,38,1,1,0,19.506731,19.506731,0,0,0,0,0,0,0,0,7.3107686,0,54.2,57.49,54.1,59.11,5,1,1,0,0,10,2,5,1,1068,35769.02,-3921.8916,0,0,2977.4031 -1358,1665,2985,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,9.6627531,9.4527426,0,9,5,16.422123,0,3,3,2019,15,5,40,40,1,5,0,42.614708,42.614708,0,0,0,0,0,0,0,0,6.4331236,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,10,2,5,1,375,667836.38,170537.64,0,0,12893.988 -1359,1666,2986,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9824743,8.0526514,0,0,0,-1083.5624,0,2,2,2019,12,0,30,30,1,0,0,10.322909,10.322909,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,202,-81702.234,18526.898,0,0,1190.006 -1359,1667,2987,-9,2986,-9,1,1,22,0,0,0,2,2,-9,0,1,0,0,0,0,0,-971.63196,0,2,-9,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,1,0,1,1.7213371,0,10.37,55.22,-9,-9,0,1,1,1,0,0,10,1,1,1178,84139.297,0,0,0,418.43158 -1360,1668,2988,2989,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.4340239,8.3132,30,6,-1.0037316,0,2,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,8.0418863,8.4983339,49.04,29.05,50.49,50.87,8.333333333333334,1,1,0,0,8,9,4,1,179,1557877.3,544441.63,784117.5,0,6985.0474 -1360,1668,2989,2988,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,5.8547616,5.9244928,29,-6,-52.973537,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.3836622,5.8434987,50.49,50.87,49.04,29.05,8.333333333333334,1,1,0,0,0,9,4,1,179,1557877.3,544441.63,784117.5,0,6985.0474 -1361,1669,2990,2991,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.3141069,8.3227549,0,8,5,35.711586,0,-9,-9,2019,10,0,60,40,1,1,0,8.8565969,8.8565969,0,0,0,0,0,0,0,0,0,0,52,48,52.37,47.73,7,1,1,0,0,1,2,4,1,495,678197.31,347632.31,206691.88,0,2971.1816 -1361,1669,2991,2990,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.4894829,7.7051816,4.9596467,8,-5,-98.069885,0,3,-9,2019,11,0,25,25,1,0,0,7.7869906,7.7869906,0,0,0,0,0,0,0,0,1.0498663,4.8930354,52.37,47.73,52,48,8.333333333333334,1,1,0,0,11,2,4,1,495,678197.31,347632.31,206691.88,0,2971.1816 -1362,1670,2992,2993,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,55,1,84.122337,0,1,1,2019,8,0,0,0,4,0,0,0,0,1,0,46.573578,0,0,1,1,0,0,0,56.45,21.31,54,45,8.333333333333334,1,1,0,0,0,4,3,1,590.5,635876.81,256274.56,139724.95,0,2229.4814 -1362,1670,2993,2992,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,8.1128855,7.9692044,55,-1,31.809114,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.2023582,7.8072553,54,45,56.45,21.31,8,1,1,0,0,0,4,3,1,590.5,635876.81,256274.56,139724.95,0,2229.4814 -1363,1671,2994,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1059.2357,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,47.63,-9,-9,5,1,1,0,0,0,8,1,0,1747,18245.33,3721.1431,0,0,845.69006 -1364,1672,2995,2996,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,3.4627488,3.3194158,58,-4,38.359947,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.73179948,3.5082452,57.06,57.76,62,52.77,10,1,1,0,0,0,1,2,1,817.5,450557.5,63979.234,170589.44,0,2060.1829 -1364,1672,2996,2995,-9,-9,1,1,83,0,0,0,3,3,-9,0,5,0,6.6737022,6.4027309,58,4,24.842781,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5880451,62,52.77,57.06,57.76,10,1,1,0,0,0,1,2,1,817.5,450557.5,63979.234,170589.44,0,2060.1829 -1365,1673,2997,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,7.872756,8.0891342,0,0,0,-1020.757,-9,2,2,2019,13,4,40,0,1,4,0,7.3709416,7.3709416,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,3,4,3,0,471,-270902.81,104102.95,0,0,1455.6495 -1366,1674,2998,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.7207842,9.0102549,0,0,0,-1021.0993,0,3,3,2019,6,0,39,38,1,0,0,21.030901,21.030901,0,0,0,0,0,0,0,0,1.5970292,0,59.88,42.66,-9,-9,8.333333333333334,4,2,0,0,8,8,5,0,1037,12907.779,89991.016,0,0,1699.0696 -1367,1675,2999,-9,3003,3002,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-921.19073,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 -1367,1675,3000,-9,3003,3002,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1026.5139,-9,3,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.5990679,0,47.15,55.39,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 -1367,1675,3001,-9,3003,3002,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1088.9583,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 -1367,1675,3002,3003,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.8566141,9.263381,0,21,6,-107.65249,0,-9,3,2019,9,0,60,55,1,0,0,14.574134,14.574134,0,0,0,0,0,1,1,0,4.961854,0,41.06,62.04,43.21,47.68,1.666666666666667,1,1,0,0,9,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 -1367,1675,3003,3002,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,7.4189687,7.3293538,0,32,-6,121.01098,0,3,2,2019,13,2,16,16,1,2,0,11.325783,11.325783,0,0,0,0,0,1,1,0,0,0,43.21,47.68,41.06,62.04,6.666666666666667,1,1,0,0,8,6,4,1,582.40002,830029.94,254145.13,361500.5,45108.508,5034.271 -1368,1676,3004,3005,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.9119024,8.9377604,6.5106001,44,-1,78.46254,0,3,3,2019,7,0,25,25,1,0,0,32.673946,32.673946,0,0,0,0,7,1,1,0,0,6.5729117,54.79,55.86,49,48,8.333333333333334,1,1,0,0,12,7,5,1,456,1390735.9,767650.13,755677.81,52552.27,3221.2046 -1368,1676,3005,3004,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.8372097,5.5692892,44,1,-27.565189,-9,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7083902,49,48,54.79,55.86,7,1,1,0,0,0,7,5,1,456,1390735.9,767650.13,755677.81,52552.27,3221.2046 -1369,1677,3006,3007,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,0,0,0,6,-3,43.187332,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.62,57.17,57.16,56.15,3.333333333333333,1,1,1,0,1,9,3,0,491.5,1380162,115367.13,297170.06,0,1301.2385 -1369,1677,3007,3006,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.5667596,7.6792746,0,6,3,-72.468102,0,-9,-9,2019,6,0,43,42,1,0,0,5.8250251,5.8250251,0,0,0,0,0,1,1,0,6.6992536,0,57.16,56.15,25.62,57.17,8.333333333333334,1,1,0,0,7,9,3,0,491.5,1380162,115367.13,297170.06,0,1301.2385 -1370,1678,3008,3009,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.1865034,8.3240452,3.4173675,5,-3,52.467285,0,3,3,2019,8,0,37,37,1,0,0,12.079876,12.079876,0,0,0,0,2,0,0,0,4.7315583,3.498405,60.13,49.27,57.16,56.15,3.333333333333333,1,1,0,0,8,12,4,1,4513,733454.5,780051.13,153467.56,13179.085,2958.1128 -1370,1678,3009,3008,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,7.6341701,7.4310017,5,3,28.271677,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.7347603,7.5622401,57.16,56.15,60.13,49.27,8.333333333333334,1,1,0,0,8,12,4,1,4513,733454.5,780051.13,153467.56,13179.085,2958.1128 -1371,1679,3010,3012,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,6.7191195,6.685657,0,8,4,-58.386765,0,-9,-9,2019,10,0,26,26,1,1,0,3.9842877,3.9842877,0,0,0,0,0,1,1,0,3.743947,0,50,49,57.06,57.76,7,2,3,0,0,1,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 -1371,1679,3011,-9,3012,3010,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.0708,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 -1371,1679,3012,3010,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,0,0,0,33,-4,-133.77586,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,50,49,10,2,3,0,0,0,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 -1371,1679,3013,-9,3012,3010,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-924.32605,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,4,2,1,1258.75,-129291.56,30251.498,0,0,1416.2369 -1371,1680,3014,-9,3012,3010,1,1,30,0,2,0,1,1,-9,0,4,8.8270102,9.2403431,0,0,0,-1080.3546,0,2,2,2019,10,0,38,38,1,1,1,29.257378,29.257378,0,0,0,0,0,1,1,0,5.569849,0,49,58,-9,-9,7,2,3,0,0,1,4,5,1,181,219489.66,215674.48,357063.19,178095.22,3210.248 -1371,1681,3015,-9,3012,3010,1,0,25,0,2,0,1,1,-9,0,2,8.313694,8.1193333,0,0,0,-1040.3864,0,2,3,2019,6,1,41,37,1,1,1,8.9273005,8.9273005,0,0,0,0,0,1,1,0,0,0,57.18,45.76,-9,-9,8.333333333333334,2,3,0,0,5,4,4,1,849,162686.25,0,0,0,1583.7979 -1371,1682,3016,-9,3012,3010,1,0,21,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1036.7994,0,2,3,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,1,0,0,4,1,1,451,192010.69,0,115134.15,65513.652,0 -1371,1683,3017,-9,3012,3010,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.6685,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,27,1,1,0,0,0,49.86,55.31,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,611,0,0,0,0,0 -1372,1684,3018,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,6.1476903,6.1875839,0,0,0,-1084.5664,0,3,3,2019,18,7,40,40,1,7,0,1.1327156,1.1327156,0,0,0,0,0,0,0,0,0,0,46,39,-9,-9,5,1,1,0,1,11,4,2,1,896,923173.13,156931.58,649988.88,0,762.73315 -1373,1685,3019,3021,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.8380713,7.7313046,0,14,-1,-101.83205,0,2,2,2019,9,0,32,-9,1,0,0,9.8097401,9.8097401,0,0,0,0,0,1,1,0,0,0,69.45,42.54,33.13,51.76,8.333333333333334,2,3,0,0,10,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 -1373,1685,3020,-9,3019,3021,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.13025,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 -1373,1685,3021,3019,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.3937426,8.0551949,0,14,1,78.909302,0,3,3,2019,11,1,38,38,1,1,0,13.236498,13.236498,0,0,0,0,0,1,1,0,0,0,33.13,51.76,69.45,42.54,5,2,3,0,0,11,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 -1373,1685,3022,-9,3019,3021,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-917.92621,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,7,4,1,665.5,216590.63,130933.78,203555.81,127050.7,3328.7043 -1374,1686,3023,3024,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,6,6,-24.118649,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,74.263123,0,0,1,1,0,.14732175,0,55.11,47.63,55.2,9.220000000000001,10,1,1,0,0,0,10,2,1,867,719775,245962.66,234501.14,0,1485.2849 -1374,1686,3024,3023,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.9637442,7.6143966,15,-6,-72.975601,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,4.3756824,7.5194654,55.2,9.220000000000001,55.11,47.63,6.666666666666667,1,1,0,0,0,10,2,1,867,719775,245962.66,234501.14,0,1485.2849 -1375,1687,3025,3026,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.7245255,8.5906506,0,28,-5,-151.51981,0,2,3,2019,10,0,37,38,1,0,0,15.346496,15.346496,0,0,0,0,0,0,0,0,0,0,45.91,59.89,58.14,42.54,6.666666666666667,1,1,0,0,9,7,5,1,2131.5,1783991,1604875.1,310942.88,0,3491.6279 -1375,1687,3026,3025,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.5157337,8.2948818,0,28,5,-22.699697,0,2,2,2019,10,0,37,38,1,0,0,14.774018,14.774018,0,0,0,0,0,0,0,0,0,0,58.14,42.54,45.91,59.89,6.666666666666667,1,1,0,0,8,7,5,1,2131.5,1783991,1604875.1,310942.88,0,3491.6279 -1375,1688,3027,-9,3026,3025,1,0,23,0,0,0,1,1,1,0,2,7.797421,7.7202072,0,0,0,-1053.9238,-9,1,1,2019,11,1,40,0,1,1,1,6.971868,6.971868,0,0,0,0,0,0,0,0,1.0300056,0,36.62,44.17,-9,-9,6.666666666666667,1,1,0,0,3,7,3,1,3573,120560.68,-122354.91,0,0,972.04285 -1375,1689,3028,-9,3026,3025,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-897.8396,-9,1,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,642,0,0,0,0,0 -1376,1690,3029,3030,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.9332209,6.8356376,54,-10,-75.829491,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.6302345,0,2,1,1,0,0,6.758307,57.98,29.33,56,44,5,3,4,0,0,0,6,2,1,462,538837.44,166169.59,141352.83,0,2502.7344 -1376,1690,3030,3029,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,54,10,-53.923199,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,15.892851,0,0,1,1,0,0,0,56,44,57.98,29.33,8,3,4,0,0,0,6,2,1,462,538837.44,166169.59,141352.83,0,2502.7344 -1377,1691,3031,3032,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.3119583,8.4625883,0,2,-13,90.218719,0,-9,-9,2019,11,0,35,35,1,0,0,18.916317,18.916317,0,0,0,0,0,0,0,0,.46704671,0,48.53,58.91,32.83,48.42,8.333333333333334,1,1,0,0,9,4,5,1,545.5,621053.13,371896.44,196466.72,128235.44,3254.3025 -1377,1691,3032,3031,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.328124,8.0899944,0,2,13,89.635406,0,-9,-9,2019,15,3,35,35,1,3,0,16.335011,16.335011,0,0,0,0,0,0,0,0,0,0,32.83,48.42,48.53,58.91,6.666666666666667,1,1,0,0,12,4,5,1,545.5,621053.13,371896.44,196466.72,128235.44,3254.3025 -1378,1692,3033,3034,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,6,-5,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.57,49.69,62.05,24.76,10,1,1,1,0,0,13,2,0,648.5,280064.94,45222.047,15788.691,0,617.99811 -1378,1692,3034,3033,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,6,5,0,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.05,24.76,57.57,49.69,10,1,1,1,0,1,13,2,0,648.5,280064.94,45222.047,15788.691,0,617.99811 -1379,1693,3035,3037,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,6.2318592,6.0499663,0,27,0,11.964328,0,-9,3,2019,7,0,9,4,1,0,0,5.961937,5.961937,0,0,0,0,0,1,1,0,1.1312056,0,52,54.51,54.79,55.86,8.333333333333334,1,1,0,0,7,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 -1379,1693,3036,-9,3035,3037,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-770.84753,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 -1379,1693,3037,3035,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.3780937,8.3451338,0,27,9,-.24496357,0,2,2,2019,8,0,37,37,1,0,0,11.645467,11.645467,0,0,0,0,2,1,1,0,1.9022682,0,54.79,55.86,52,54.51,8.333333333333334,1,1,0,0,10,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 -1379,1693,3038,-9,3035,3037,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.39978,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,694.75,556071.69,201183.28,201275.41,65025.141,2025.822 -1380,1694,3039,-9,3040,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.55609,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,367.5,169190.25,-2783.3633,0,0,2634.4424 -1380,1694,3040,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.7607479,8.7661686,0,0,0,-990.29492,0,2,2,2019,10,0,48,48,1,0,0,15.747103,15.747103,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,8,4,4,0,367.5,169190.25,-2783.3633,0,0,2634.4424 -1381,1695,3041,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1005.5909,0,2,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.48,28.31,-9,-9,0,1,1,0,1,0,9,1,1,509,97538.008,-31359.043,0,0,1864.4128 -1382,1696,3042,-9,3043,3045,1,1,20,0,0,0,2,2,1,0,3,7.2121558,7.2121897,0,0,0,-1042.6653,-9,1,3,2019,12,0,14,0,1,0,1,12.602227,12.602227,0,0,0,0,0,0,0,0,0,0,47.94,53.79,-9,-9,6.666666666666667,1,1,0,0,3,7,3,0,2277,-18701.041,34187.285,0,0,1458.5952 -1382,1697,3043,3045,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.8207426,7.8022451,4.9125314,2,8,-186.27483,-9,-9,-9,2019,12,0,40,0,1,0,0,8.6420994,8.6420994,0,0,0,0,0,0,0,0,5.4136834,0,51.71,58.83,55.39,54.22,6.666666666666667,1,1,0,0,3,7,5,0,811.66669,555343.44,69861.281,417553.53,0,6357.896 -1382,1697,3044,-9,3043,3045,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1052.7582,-9,1,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,1,7,5,0,811.66669,555343.44,69861.281,417553.53,0,6357.896 -1382,1697,3045,3043,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.5353041,9.3193951,8.7883568,2,-8,25.835577,0,-9,-9,2019,7,0,50,57,1,0,0,13.668736,13.668736,0,0,0,0,0,0,0,0,0,8.8772869,55.39,54.22,51.71,58.83,8.333333333333334,1,1,0,0,7,7,5,0,811.66669,555343.44,69861.281,417553.53,0,6357.896 -1383,1698,3046,3047,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.9461274,6.8847632,6,3,-62.533169,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7331433,6.8988838,63.41,39.7,57.33,53.46,8.333333333333334,1,1,0,0,0,10,2,1,178.5,445005.13,231129.56,171074.13,0,1286.9685 -1383,1698,3047,3046,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,6,-3,-165.35667,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4458375,0,57.33,53.46,63.41,39.7,6.666666666666667,1,1,0,0,0,10,2,1,178.5,445005.13,231129.56,171074.13,0,1286.9685 -1384,1699,3048,-9,3050,3051,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.2225,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 -1384,1699,3049,-9,3050,3051,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.6897,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 -1384,1699,3050,3051,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,0,0,0,7,-6,53.212307,0,2,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,24.48,46.98,45.91,59.89,6.666666666666667,1,1,0,0,0,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 -1384,1699,3051,3050,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.9668384,7.7764845,0,7,6,-110.55174,0,2,3,2019,11,0,40,43,1,0,0,9.5356789,9.5356789,0,0,0,0,0,1,1,0,0,0,45.91,59.89,24.48,46.98,6.666666666666667,1,1,0,0,10,12,3,1,424.25,174391.66,119719.56,107310.93,79294.438,1972.2358 -1385,1700,3052,-9,3053,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.8112,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 -1385,1700,3053,-9,-9,-9,1,0,42,0,3,0,2,2,-9,1,2,0,5.8451629,6.1334782,0,0,-963.2132,0,2,3,2019,15,3,0,40,3,3,0,0,0,0,0,0,0,0,1,1,0,0,6.5759034,20.5,50.52,-9,-9,6.666666666666667,1,1,0,0,9,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 -1385,1700,3054,-9,3053,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.3445,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 -1385,1700,3055,-9,3053,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.62848,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,2,1,2658.5,-108970.25,31632.691,0,0,1117.2341 -1386,1701,3056,3057,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.9626093,9.1080389,0,13,0,-16.665197,0,2,1,2019,4,0,57,62,1,0,0,12.655533,12.655533,0,0,0,0,0,1,1,0,4.0132403,0,49.76,56.93,54.69,57.47,8.333333333333334,1,1,0,0,9,6,5,1,250.5,459465.44,284255.25,121811.55,91744.469,5313.7637 -1386,1701,3057,3056,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.95854,8.8432961,0,13,0,150.0381,0,2,2,2019,10,2,45,44,1,2,0,21.113008,21.113008,0,0,0,0,0,1,1,0,5.5104809,0,54.69,57.47,49.76,56.93,8.333333333333334,1,1,0,0,9,6,5,1,250.5,459465.44,284255.25,121811.55,91744.469,5313.7637 -1387,1702,3058,-9,3060,3061,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.01196,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 -1387,1702,3059,-9,3060,3061,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1000.9398,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 -1387,1702,3060,3061,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,6.8957734,6.8542781,0,8,-4,43.630394,0,2,2,2019,8,0,18,18,1,0,0,5.7764378,5.7764378,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.18,61.8,8.333333333333334,1,1,0,0,2,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 -1387,1702,3061,3060,-9,-9,1,1,46,0,3,0,2,2,-9,0,5,8.5758524,8.7908201,0,8,4,-34.855312,0,3,3,2019,11,0,60,60,1,0,0,10.764876,10.764876,0,0,0,0,0,1,1,0,0,0,48.18,61.8,57.16,56.15,5,1,1,0,0,9,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 -1387,1702,3062,-9,3060,3061,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.46692,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,2905.2,550633.25,161088.06,389735.72,6713.0073,3340.5249 -1388,1703,3063,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.9117565,8.2672367,0,0,-950.65662,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9016204,7.6944842,61.28,48.88,-9,-9,10,1,1,0,0,0,9,4,1,1366,587319.88,297897.72,358249.34,0,2590.2134 -1389,1704,3064,3065,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,41,4,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,40.027306,0,0,1,1,0,0,0,36.62,36.27,42.64,31.83,5,1,1,0,0,0,13,1,1,1503,219544.31,0,0,0,3074.9023 -1389,1704,3065,3064,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,0,0,8,-4,0,0,-9,-9,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.64,31.83,36.62,36.27,10,1,1,0,0,0,13,1,1,1503,219544.31,0,0,0,3074.9023 -1390,1705,3066,3068,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,9.0660944,9.3508615,0,11,-6,20.191093,0,1,1,2019,20,8,52,52,1,8,0,22.31506,22.31506,0,0,0,0,0,1,1,0,.8478747,0,37.93,66.36,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,1354.3334,397721.16,161192.38,398861.22,257415.06,4652.1475 -1390,1705,3067,-9,3066,3068,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.8544,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1354.3334,397721.16,161192.38,398861.22,257415.06,4652.1475 -1390,1705,3068,3066,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.5969458,8.8222628,0,12,6,-16.444599,0,2,2,2019,1,0,40,39,1,0,0,18.265318,18.265318,0,0,0,0,0,1,1,0,.8234688,0,57.16,56.15,37.93,66.36,10,1,1,0,0,7,9,5,1,1354.3334,397721.16,161192.38,398861.22,257415.06,4652.1475 -1391,1706,3069,3070,-9,-9,1,0,22,0,0,1,2,0,0,0,4,0,0,0,2,-1,-59.728497,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,60.41,40.79,35.32,6.666666666666667,1,1,0,1,1,2,3,0,939.5,9221.7881,-34526.289,0,0,1744.6272 -1391,1706,3070,3069,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.3475447,8.2267399,0,2,1,27.993416,0,-9,-9,2019,15,5,40,0,1,5,0,9.0287952,9.0287952,0,0,0,0,0,1,1,0,0,0,40.79,35.32,41.65,60.41,5,4,2,0,0,1,2,3,0,939.5,9221.7881,-34526.289,0,0,1744.6272 -1392,1707,3071,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.8807569,7.9635296,0,0,0,-909.58539,0,-9,-9,2019,11,0,37,37,1,2,0,7.5619292,7.5619292,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,0,0,5,6,3,0,1231,209287.64,-69702.211,0,0,941.70282 -1393,1708,3072,3073,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.7676001,7.6840034,41,1,-40.441711,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6770234,7.7289791,56.94,49.53,40.47,55.65,10,1,1,0,0,0,4,4,0,820.5,2451137,1367804.8,445592.13,0,3532.511 -1393,1708,3073,3072,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.8529453,7.566051,41,-1,-68.098328,0,2,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.545361,7.5758948,40.47,55.65,56.94,49.53,10,1,1,0,0,0,4,4,0,820.5,2451137,1367804.8,445592.13,0,3532.511 -1394,1709,3074,3075,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.7938318,7.7187252,38,0,27.428316,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5147891,44.56,59.44,61.12,51.57,10,1,1,0,0,0,12,5,1,337,1462206.1,778180.69,384305.06,38892.426,6299.502 -1394,1709,3075,3074,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,8.0868158,9.085495,8.2011204,38,0,127.12624,0,3,2,2019,6,0,45,45,1,0,0,11.624038,11.624038,0,0,0,0,0,1,1,0,0,8.433773,61.12,51.57,44.56,59.44,8.333333333333334,1,1,0,0,10,12,5,1,337,1462206.1,778180.69,384305.06,38892.426,6299.502 -1395,1710,3076,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.0752344,7.2884178,0,0,-939.04614,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.2225289,7.0999265,53.61,51.1,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,1838,797966.69,398977.56,45452.098,0,828.82263 -1396,1711,3077,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,7.629189,7.5409451,0,0,0,-928.19275,0,2,2,2019,12,0,40,38,1,0,0,6.1940022,6.1940022,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,574,13667.561,79881.547,0,0,1273.2786 -1397,1712,3078,-9,3079,3081,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.604,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 -1397,1712,3079,3081,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,8.314333,8.4460945,0,5,-2,-71.862259,0,2,2,2019,10,0,7,7,1,0,0,84.511795,84.511795,0,0,0,0,0,1,1,0,2.0073793,0,46.51,52.73,36.83,39.98,8.333333333333334,1,1,0,0,9,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 -1397,1712,3080,-9,3079,3081,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.14594,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 -1397,1712,3081,3079,-9,-9,1,1,30,1,2,0,2,2,-9,0,2,9.140379,8.7416906,0,5,2,151.43391,0,-9,-9,2019,12,3,38,37,1,3,0,16.256323,16.256323,0,0,0,0,0,1,1,0,0,0,36.83,39.98,46.51,52.73,3.333333333333333,1,1,0,0,9,12,5,1,1481.25,174008.63,209623.56,248630.66,162772.3,4968.3579 -1398,1713,3082,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1194.7957,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,36.15,38.91,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,100,-88338.109,0,0,0,1444.7637 -1399,1714,3083,3084,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.1647301,7.5005341,3,12,5.9528732,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8465796,7.6859326,60.6,43.75,49.07,38.32,8.333333333333334,1,1,0,0,0,4,3,1,907.5,198026.88,0,151567.16,38978.172,2005.2271 -1399,1714,3084,3083,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.8014159,7.1664491,0,3,-12,-17.22192,0,2,1,2019,11,0,20,20,1,0,0,5.9640174,5.9640174,0,0,0,0,0,1,1,0,0,0,49.07,38.32,60.6,43.75,6.666666666666667,1,1,0,0,10,4,3,1,907.5,198026.88,0,151567.16,38978.172,2005.2271 -1400,1715,3085,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.4146352,7.5493035,0,0,-1001.5103,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7578468,58.52,44.65,-9,-9,6.666666666666667,2,3,0,0,0,11,3,1,789,552557.06,272638.63,244020.8,0,1256.0518 -1400,1716,3086,-9,-9,3085,1,1,35,0,0,0,2,2,-9,0,4,8.0674381,7.8949361,0,0,0,-963.15747,0,-9,1,2019,10,0,40,40,1,1,0,8.4961948,8.4961948,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,11,4,1,3158,-360360.78,0,0,0,1192.671 -1401,1717,3087,3088,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-66.178108,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.99660987,0,50,47,59.53,56.44,7,1,1,0,0,0,4,2,1,999.5,781656.44,318381.5,251833.84,0,1155.9531 -1401,1717,3088,3087,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.0835714,7.1355109,44,2,129.1293,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2262807,7.1456008,59.53,56.44,50,47,8.333333333333334,4,5,0,0,3,4,2,1,999.5,781656.44,318381.5,251833.84,0,1155.9531 -1402,1718,3089,3090,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,57,0,0,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.5522656,0,56.5,27.66,52.97,16.96,5,1,1,0,0,3,5,1,1,477.5,18032.734,0,0,0,1318.1101 -1402,1718,3090,3089,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,57,9,0,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,122.24924,0,0,1,1,0,0,0,52.97,16.96,56.5,27.66,10,1,1,0,0,0,5,1,1,477.5,18032.734,0,0,0,1318.1101 -1403,1719,3091,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.3716793,8.2721672,0,0,0,-1083.702,0,3,3,2019,13,2,41,40,1,2,0,10.263481,10.263481,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,3.333333333333333,3,4,0,0,9,8,4,0,324,387810.78,193869.92,126462.19,86251.633,931.61633 -1403,1720,3092,-9,3091,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8061399,7.5710764,0,0,0,-1040.415,0,1,-9,2019,10,0,45,40,1,1,1,5.3660507,5.3660507,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,3,0,480,94153.531,0,0,0,1334.4064 -1404,1721,3093,-9,3095,3094,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.6907,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,507.66666,-11095.16,0,0,0,2940.6528 -1404,1721,3094,3095,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,8.5685768,8.667244,0,16,9,13.961766,-9,-9,-9,2019,12,0,50,0,1,0,0,9.2064066,9.2064066,0,0,0,0,0,1,1,0,7.212955,0,59.45,38.61,57.17,42.74,6.666666666666667,2,3,0,0,1,8,3,1,507.66666,-11095.16,0,0,0,2940.6528 -1404,1721,3095,3094,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,16,0,35.00914,-9,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.17,42.74,59.45,38.61,8.333333333333334,2,3,0,0,5,8,3,1,507.66666,-11095.16,0,0,0,2940.6528 -1405,1722,3096,3097,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.6429768,8.4949322,0,3,-1,-16.28273,0,-9,-9,2019,5,0,37,38,1,0,0,15.50659,15.50659,0,0,0,0,0,0,0,0,0,0,54.96,53.17,42.05,58.8,8.333333333333334,1,1,0,0,7,10,4,0,821.5,141048.88,-44919.445,136073.72,151411.13,2113.1465 -1405,1722,3097,3096,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.4801731,7.6976886,0,3,1,48.188023,0,-9,3,2019,14,2,40,30,1,2,0,5.020946,5.020946,0,0,0,0,0,0,0,0,0,0,42.05,58.8,54.96,53.17,6.666666666666667,1,1,0,0,8,10,4,0,821.5,141048.88,-44919.445,136073.72,151411.13,2113.1465 -1406,1723,3098,-9,3099,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.8646,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,386.5,123579.17,92198.969,174610.59,59209.84,2525.564 -1406,1723,3099,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.3788586,8.4140816,6.0351567,0,0,-901.37402,0,3,2,2019,8,0,38,7,1,0,0,12.294854,12.294854,0,0,0,0,0,1,1,0,5.8784881,0,62.1,51.16,-9,-9,5,1,1,0,1,9,2,3,1,386.5,123579.17,92198.969,174610.59,59209.84,2525.564 -1407,1724,3100,3101,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,8.7108784,8.1400681,5.6006598,6,1,67.925934,0,2,2,2019,14,1,37,37,1,1,0,14.832083,14.832083,0,0,0,0,0,1,1,0,5.8879337,5.8335643,32.83,48.42,44.82,52.64,5,1,1,0,0,7,7,4,0,919,1785762.5,1117223.9,418001.44,0,2973.5071 -1407,1724,3101,3100,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,4.4722152,4.2468843,0,6,-1,21.991144,0,-9,-9,2019,12,0,3,5,1,0,0,3.4023731,3.4023731,1,0,0,0,0,1,1,0,0,0,44.82,52.64,32.83,48.42,6.666666666666667,1,1,0,0,7,7,4,0,919,1785762.5,1117223.9,418001.44,0,2973.5071 -1408,1725,3102,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.349309,8.0814724,0,0,0,-995.81195,0,2,2,2019,14,3,37,37,1,3,0,11.989874,11.989874,0,0,0,0,0,0,0,0,0,0,44.28,55.3,-9,-9,5,1,1,0,0,9,6,4,1,1639,206028.56,2411.1072,204506.22,0,1511.6949 -1408,1726,3103,-9,-9,3102,1,1,28,0,0,0,2,2,-9,0,3,7.7543497,7.9343863,4.1000137,0,0,-1024.0919,0,2,2,2019,1,0,31,31,1,0,1,12.272903,12.272903,0,0,0,0,0,0,0,0,3.745863,4.2212863,52.19,54.61,-9,-9,10,1,1,0,0,9,6,4,1,198,-506727.78,0,0,0,718.36249 -1408,1727,3104,-9,-9,3102,1,0,24,0,0,0,2,2,-9,0,3,7.4023623,7.0260754,0,0,0,-1063.96,0,2,2,2019,31,10,20,30,1,10,1,7.7874918,7.7874918,0,0,0,0,0,0,0,0,0,0,24.43,60.12,-9,-9,5,1,1,0,0,4,6,3,1,770,16280.252,0,0,0,192.02171 -1409,1728,3105,3106,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.3947535,8.3783751,0,6,8,17.539637,0,2,2,2019,9,0,46,42,1,0,0,8.3796778,8.3796778,0,0,0,0,7,0,0,0,0,0,54.2,57.49,53.22,50.02,8.333333333333334,1,1,0,0,7,12,5,1,984.5,880182.5,521490.28,131225.05,35938.609,2886.199 -1409,1728,3106,3105,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.0104132,8.4074993,0,6,-8,-20.91301,0,3,3,2019,12,0,40,44,1,0,0,11.889139,11.889139,0,0,0,0,2,0,0,0,0,0,53.22,50.02,54.2,57.49,8.333333333333334,1,1,0,0,7,12,5,1,984.5,880182.5,521490.28,131225.05,35938.609,2886.199 -1409,1729,3107,-9,3105,3106,1,0,23,0,0,0,1,1,-9,0,4,8.3456831,8.2154865,0,0,0,-876.35974,0,2,2,2019,9,0,37,50,1,0,1,14.511584,14.511584,0,0,0,0,7,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,400,-595331,18075.09,0,0,2043.1672 -1410,1730,3108,3109,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5257349,8.4588299,0,10,5,50.910137,0,3,1,2019,8,1,50,45,1,1,0,7.9306855,7.9306855,0,0,0,0,0,0,0,0,0,0,55.59,48.73,57.06,57.76,3.333333333333333,3,4,0,0,8,9,4,0,472.5,793897,205049.75,284037.81,0,2871.8037 -1410,1730,3109,3108,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,7.8468599,7.9722409,0,10,-5,-39.037498,0,3,2,2019,2,0,45,42,1,0,0,7.7448015,7.7448015,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.59,48.73,6.666666666666667,3,4,0,0,8,9,4,0,472.5,793897,205049.75,284037.81,0,2871.8037 -1411,1731,3110,3111,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.5140886,8.5704899,0,1,27,198.1304,0,-9,-9,2019,11,0,40,40,1,0,0,12.083407,12.083407,0,0,0,0,0,0,0,0,3.2106719,0,38.41,58.52,57.41,54.88,8.333333333333334,1,1,0,0,11,11,4,1,366,120255.64,179586.97,149248.63,0,2198.2275 -1411,1731,3111,3110,3112,-9,1,0,25,0,0,0,2,2,-9,0,4,6.7981434,6.830246,0,1,-27,108.24839,0,3,-9,2019,12,0,18,40,1,0,0,8.4494343,8.4494343,0,0,0,0,0,0,0,0,0,0,57.41,54.88,38.41,58.52,8.333333333333334,1,1,0,0,7,11,4,1,366,120255.64,179586.97,149248.63,0,2198.2275 -1411,1732,3112,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.1189189,7.0657263,0,0,0,-993.35669,0,-9,-9,2019,12,0,18,18,1,2,0,7.3562384,7.3562384,0,0,0,0,0,0,0,0,2.4941564,0,48,49,-9,-9,7,1,1,0,0,1,11,3,1,1418,697690.13,-145552.39,0,0,586.47498 -1412,1733,3113,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.3899727,7.5750642,0,0,0,-1173.877,0,2,2,2019,15,4,28,28,1,4,0,7.5629482,7.5629482,0,0,0,0,0,0,0,0,0,0,45.18,30.81,-9,-9,8.333333333333334,1,1,0,0,12,6,3,0,304,427566.16,0,140262.11,0,954.22931 -1413,1734,3114,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.9189348,8.9694929,6.2594414,0,0,-982.81873,0,2,2,2019,3,0,36,25,1,0,0,16.924807,16.924807,0,0,0,0,2,0,0,0,0,6.7507792,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,374,507779.34,0,381625.25,-578.02844,3122.0332 -1414,1735,3115,-9,3117,3118,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.44202,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 -1414,1735,3116,-9,3117,3118,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.2078,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 -1414,1735,3117,3118,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,6.8143029,7.1064143,0,3,-1,58.685703,0,2,2,2019,8,1,50,55,1,1,0,1.9022864,1.9022864,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,10,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 -1414,1735,3118,3117,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.5224037,8.9070053,0,3,1,-90.963821,0,-9,-9,2019,11,0,62,58,1,0,0,13.274925,13.274925,0,0,0,0,0,1,1,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,925.75,75304.984,-17106.176,176346.19,106954.58,3139.3711 -1415,1736,3119,3120,-9,-9,1,0,42,1,2,0,1,1,-9,1,3,8.7458563,9.0263033,0,18,1,94.392616,0,2,2,2019,12,0,38,-9,1,0,0,25.70685,25.70685,0,0,0,0,0,1,1,0,0,0,39.67,46.49,38.34,62.12,1.666666666666667,1,1,0,0,11,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 -1415,1736,3120,3119,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,8.6802158,8.7599659,0,18,-1,-15.998318,0,2,2,2019,12,1,38,38,1,1,0,20.5308,20.5308,0,0,0,0,0,1,1,0,4.4176283,0,38.34,62.12,39.67,46.49,6.666666666666667,1,1,0,0,10,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 -1415,1736,3121,-9,3119,3120,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.994,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 -1415,1736,3122,-9,3119,3120,1,1,11,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.9493,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,5,1,1434.25,914445.25,500800.22,492238.88,221959.2,7153.8174 -1416,1737,3123,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.3974752,9.2396221,0,0,0,-975.16107,0,2,1,2019,4,0,27,43,1,0,0,26.69908,26.69908,0,0,0,0,0,0,0,0,1.2615128,0,57.47,42.25,-9,-9,10,1,1,0,0,8,8,5,1,410,-64577.535,153213.78,0,0,2301.4734 -1417,1738,3124,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,6.6736622,6.6073308,0,0,-1068.0474,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,11.110361,0,0,1,1,0,0,6.7865887,37.62,31.73,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,770,1965.7595,72785.891,59663.328,0,1399.1158 -1418,1739,3125,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.1987591,8.2282829,0,0,0,-1002.9933,0,2,2,2019,13,2,40,37,1,2,0,9.3444395,9.3444395,0,0,0,0,0,0,0,0,0,0,45.72,55.07,-9,-9,5,1,1,0,0,8,6,4,0,421,493380.09,18761.561,15440.903,11366.125,1340.2885 -1419,1740,3126,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.6984863,8.7542601,0,0,0,-936.66309,0,2,1,2019,11,0,40,40,1,0,0,24.260771,24.260771,0,0,0,0,0,0,0,0,1.7280993,0,54.21,49.46,-9,-9,8,1,1,0,0,10,9,5,0,234,52069.191,64274.777,0,0,2655.3074 -1420,1741,3127,-9,3129,3128,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1002.1702,-9,3,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,1009,672005.38,229292.78,92098.984,0,2470.9248 -1420,1741,3128,3129,-9,-9,1,1,53,0,1,0,3,3,-9,0,3,8.6116104,8.4186258,0,9,-1,-13.877827,0,2,2,2019,11,2,50,60,1,2,0,9.7337427,9.7337427,0,0,0,0,0,1,1,0,0,0,35.89,56.79,32.03,55.7,6.666666666666667,1,1,0,0,10,11,4,1,1009,672005.38,229292.78,92098.984,0,2470.9248 -1420,1741,3129,3128,-9,-9,1,0,54,0,1,0,3,3,-9,0,3,7.434761,7.5730052,0,9,1,76.58371,0,3,3,2019,21,9,25,20,1,9,0,7.1312938,7.1312938,0,0,0,0,0,1,1,0,0,0,32.03,55.7,35.89,56.79,5,1,1,0,0,10,11,4,1,1009,672005.38,229292.78,92098.984,0,2470.9248 -1421,1742,3130,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.2066255,7.6471872,6.293014,0,0,-1033.1277,0,2,2,2019,8,0,28,25,1,0,0,6.0445375,6.0445375,0,0,0,0,0,1,1,0,5.5957923,0,57.34,47.92,-9,-9,10,1,1,0,0,7,11,3,1,226.5,17201.781,-45997.152,189967.86,54776.922,1960.073 -1421,1742,3131,-9,3130,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.98663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,3,1,226.5,17201.781,-45997.152,189967.86,54776.922,1960.073 -1422,1743,3132,-9,3133,-9,1,0,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.2686,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 -1422,1743,3133,-9,-9,-9,1,0,29,2,3,0,2,2,-9,0,4,6.8220129,7.614996,6.2204409,0,0,-893.62286,0,2,2,2019,20,8,16,0,1,8,0,9.7638569,9.7638569,0,0,0,0,0,1,1,0,5.9888649,0,44.19,56.73,-9,-9,5,1,1,0,0,7,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 -1422,1743,3134,-9,3133,-9,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-961.86548,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 -1422,1743,3135,-9,3133,-9,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-979.70605,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,2,0,1815.5,115007.51,-6866.8457,0,0,2619.0845 -1423,1744,3136,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.38477,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.24,28.21,-9,-9,8.333333333333334,1,1,0,0,10,8,1,0,698,33357.617,0,0,0,1068.5776 -1424,1745,3137,3138,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.5736704,6.4454198,7,3,22.225943,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.2316751,40.42,46.62,41.28,39.56,5,1,1,0,0,7,6,2,1,936.5,657345.88,141397.59,434447.41,0,1870.6357 -1424,1745,3138,3137,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,7,-3,48.299438,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,39.56,40.42,46.62,8.333333333333334,1,1,0,0,7,6,2,1,936.5,657345.88,141397.59,434447.41,0,1870.6357 -1425,1746,3139,3140,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,46,3,-6.95122,0,3,2,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,3.3694093,0,36.58,22.77,52.71,32.76,1.666666666666667,1,1,0,0,6,6,4,1,534,1628708.3,622442.13,671758.25,0,3463.2603 -1425,1746,3140,3139,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.9660249,8.7598763,7.7621231,46,-3,.32355639,0,3,2,2019,12,3,38,37,1,3,0,11.352139,11.352139,0,0,0,0,2,1,1,0,3.814326,7.5827179,52.71,32.76,36.58,22.77,8.333333333333334,1,1,0,0,8,6,4,1,534,1628708.3,622442.13,671758.25,0,3463.2603 -1426,1747,3141,-9,3142,-9,1,0,18,0,0,0,2,2,-9,0,3,6.1483927,6.4152231,0,0,0,-1060.7784,0,2,-9,2019,12,0,16,0,1,0,1,3.9770415,3.9770415,0,0,0,0,0,0,0,0,0,0,35.5,54.11,-9,-9,5,1,1,0,0,1,7,2,0,240,-116254.98,0,0,0,431.23773 -1426,1748,3142,3143,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.396915,7.3286743,0,2,-5,-118.68404,0,-9,-9,2019,12,1,24,22,1,1,0,5.7577257,5.7577257,0,0,0,0,0,0,0,0,0,0,51.1,52.08,25.79,54.57,5,1,1,0,0,6,7,4,0,1169,-178313.84,35526.441,0,0,2253.9705 -1426,1748,3143,3142,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,7.8549051,8.1309891,0,2,5,-66.015007,-9,-9,-9,2019,14,3,30,0,1,3,0,12.028436,12.028436,0,0,0,0,0,0,0,0,0,0,25.79,54.57,51.1,52.08,6.666666666666667,1,1,0,0,8,7,4,0,1169,-178313.84,35526.441,0,0,2253.9705 -1427,1749,3144,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,5.5015621,5.420887,0,0,-1073.8362,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5169938,5.5824523,45.91,59.89,-9,-9,10,1,1,0,0,0,12,2,0,307,249654.14,156274.88,186316.44,0,991.53265 -1428,1750,3145,3146,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.4572382,8.6298552,0,1,-6,-180.21669,0,2,2,2019,10,0,42,38,1,0,0,14.107712,14.107712,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,57,1.666666666666667,1,1,0,0,8,10,5,1,1037,388215.63,174744.11,250934.38,154219.59,4375.3877 -1428,1750,3146,3145,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8188248,8.4707632,0,1,6,-10.899237,-9,-9,-9,2019,10,0,37,0,1,1,0,20.374073,20.374073,0,0,0,0,0,0,0,0,7.3470783,0,50,57,57.16,56.15,7,4,1,0,0,1,10,5,1,1037,388215.63,174744.11,250934.38,154219.59,4375.3877 -1429,1751,3147,3148,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.4180965,8.3548698,0,13,-4,87.163345,0,3,3,2019,23,11,38,0,1,11,0,12.685473,12.685473,0,0,0,0,0,0,0,0,0,0,44.59,45.67,52.99,51.28,5,1,1,0,0,11,12,5,1,480,175722.8,-1244.8984,123869.91,59107.137,3599.4963 -1429,1751,3148,3147,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.4445095,8.2199564,5.6727886,17,4,38.260586,0,3,3,2019,8,0,65,55,1,0,0,6.5564103,6.5564103,0,0,0,0,0,0,0,0,0,5.7629895,52.99,51.28,44.59,45.67,8.333333333333334,1,1,0,0,10,12,5,1,480,175722.8,-1244.8984,123869.91,59107.137,3599.4963 -1430,1752,3149,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.5310202,8.6233816,0,0,-967.03046,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.2699571,8.3473806,49.05,42.63,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,116,1131620,432760,126663.91,0,2464.0623 -1431,1753,3150,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,8.679842,8.4010963,6.1516471,0,0,-964.66559,0,2,2,2019,6,0,37,40,1,0,0,18.37339,18.37339,0,0,0,0,0,1,1,0,6.5508299,5.8278294,57.33,53.46,-9,-9,10,1,1,0,0,7,10,5,1,481,697283.63,553607.19,213776.05,0,4066.8013 -1432,1754,3151,3152,-9,-9,1,0,53,0,3,0,1,1,-9,0,4,9.6961508,9.9494791,0,30,1,-113.68449,0,-9,-9,2019,6,0,50,45,1,0,0,35.533886,35.533886,0,0,0,0,0,0,0,0,2.9774947,0,46.5,58.26,46.08,57.2,6.666666666666667,3,4,0,0,13,8,5,1,727,1906484.9,127089.02,1752621.9,163944.44,9807.6025 -1432,1754,3152,3151,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,9.870472,9.3948975,0,11,-1,-90.383919,0,-9,-9,2019,12,2,87,52,1,2,0,22.689266,22.689266,0,0,0,0,0,0,0,0,0,0,46.08,57.2,46.5,58.26,3.333333333333333,1,1,0,0,13,8,5,1,727,1906484.9,127089.02,1752621.9,163944.44,9807.6025 -1432,1754,3153,-9,3151,3152,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.1736,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,727,1906484.9,127089.02,1752621.9,163944.44,9807.6025 -1433,1755,3154,3155,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.3273392,7.1491332,0,33,-5,73.718567,0,2,2,2019,6,0,35,16,1,0,0,5.3311276,5.3311276,0,0,0,0,2,0,0,0,3.326649,0,57.16,56.15,45.56,60.26,8.333333333333334,1,1,0,0,11,8,3,1,975,543329.5,210086.2,88785.688,0,1555.6082 -1433,1755,3155,3154,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7932043,7.8391447,0,35,5,-62.131878,0,3,3,2019,13,1,30,28,1,1,0,7.319303,7.319303,0,0,0,0,2,0,0,0,1.3785654,0,45.56,60.26,57.16,56.15,1.666666666666667,1,1,0,0,11,8,3,1,975,543329.5,210086.2,88785.688,0,1555.6082 -1433,1756,3156,-9,3155,3154,1,0,27,0,0,0,1,1,-9,0,4,8.732954,8.2444115,0,0,0,-1100.054,0,2,2,2019,6,1,36,40,1,1,1,11.328168,11.328168,0,0,0,0,0,0,0,0,3.3618186,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,605,-67722.555,58931.059,0,0,1731.379 -1434,1757,3157,3158,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,52,-4,0,0,2,1,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,0,0,18.6,31,16.04,23.99,0,1,1,0,1,0,4,1,0,497.5,240688.97,0,76038.797,0,1481.1313 -1434,1757,3158,3157,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,0,0,52,4,0,0,-9,-9,2019,17,0,0,0,4,5,0,0,0,1,2.7524519,121.94343,22.126116,0,1,1,0,0,0,16.04,23.99,18.6,31,0,1,1,0,1,0,4,1,0,497.5,240688.97,0,76038.797,0,1481.1313 -1435,1758,3159,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,5.7637682,6.0962315,0,10,-18,101.0688,0,3,2,2019,7,0,10,7,1,0,0,4.4098744,4.4098744,0,0,0,0,0,1,1,0,0,0,47.55,55.06,56.52,45.61,8.333333333333334,1,1,0,0,8,10,3,1,482,452026.56,222326.45,320310.53,0,155.61546 -1436,1759,3160,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6717539,8.5835533,0,0,0,-998.93567,0,-9,-9,2019,8,0,30,28,1,0,0,23.465521,23.465521,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,482,511591.53,158739.86,160874.13,0,632.4032 -1437,1760,3161,-9,3163,3164,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.2719,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 -1437,1760,3162,-9,3163,3164,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.22162,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 -1437,1760,3163,3164,-9,-9,1,0,44,1,3,0,2,2,-9,0,4,8.1081743,8.1414566,5.8440685,1,6,-64.575462,-9,-9,-9,2019,11,0,32,0,1,0,0,12.910606,12.910606,0,0,0,0,0,1,1,0,5.7393861,0,51.64,55.4,57.06,57.76,8.333333333333334,1,1,0,0,9,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 -1437,1760,3164,3163,-9,-9,1,1,38,1,3,0,2,2,-9,0,5,8.1517429,8.2769041,0,1,-6,-93.766182,-9,2,2,2019,10,0,35,0,1,0,0,11.932516,11.932516,0,0,0,0,0,1,1,0,4.0284905,0,57.06,57.76,51.64,55.4,8.333333333333334,1,1,0,0,9,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 -1437,1760,3165,-9,3163,3164,1,0,16,1,3,1,2,0,-9,0,3,0,0,0,0,0,-1145.6134,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.79,50.48,-9,-9,10,1,1,0,0,0,11,4,1,1217.2,-23725.682,75298.539,52499.648,53708.707,3548.0017 -1438,1761,3166,3167,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.530839,8.9638958,0,26,-17,-70.493088,0,2,2,2019,8,0,20,23,1,0,0,40.459999,40.459999,0,0,0,0,2,1,1,0,0,0,56.33,51.02,52,48,8.333333333333334,1,1,0,0,12,8,5,1,979,829438.25,194864,172769.63,77913.875,5777.25 -1438,1761,3167,3166,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.8027768,8.404253,7.6305232,26,17,-.84817696,-9,2,3,2019,10,0,68,0,1,1,0,4.0250354,4.0250354,0,0,0,0,0,1,1,0,7.4105253,7.5165033,52,48,56.33,51.02,7,1,1,0,0,1,8,5,1,979,829438.25,194864,172769.63,77913.875,5777.25 -1438,1762,3168,-9,3166,3167,1,0,23,0,0,0,1,1,-9,0,4,8.2560682,8.4485455,0,0,0,-965.01935,0,1,1,2019,12,0,40,40,1,2,1,12.073697,12.073697,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,8,5,1,1012,56564.039,126807.74,0,0,2312.2007 -1438,1763,3169,-9,3166,3167,1,1,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-1003.5266,-9,1,1,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,268,-420404.03,0,0,0,205.57025 -1438,1764,3170,-9,3166,3167,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1033.2474,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,401,277015.47,0,0,0,0 -1439,1765,3171,-9,3172,3173,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.95886,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1437.3334,520589.19,9654.9521,253546.17,99127.867,8714.6504 -1439,1765,3172,3173,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,9.2988892,9.1050739,0,15,-8,-23.583921,0,2,2,2019,12,0,40,40,1,0,0,29.715054,29.715054,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,6.666666666666667,1,1,0,0,9,2,5,1,1437.3334,520589.19,9654.9521,253546.17,99127.867,8714.6504 -1439,1765,3173,3172,-9,-9,1,1,50,0,1,0,2,2,-9,1,3,9.2485046,9.0797977,0,17,8,-85.216209,0,2,2,2019,8,0,47,48,1,0,0,26.827009,26.827009,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,1437.3334,520589.19,9654.9521,253546.17,99127.867,8714.6504 -1440,1766,3174,-9,3176,3175,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.6968,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 -1440,1766,3175,3176,-9,-9,1,1,47,1,2,0,3,3,-9,0,4,8.1713648,8.1483583,0,7,11,-126.27633,-9,-9,-9,2019,7,0,55,0,1,0,0,6.8161249,6.8161249,0,0,0,0,0,1,1,0,3.1521392,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,9,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 -1440,1766,3176,3175,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,8.1572781,8.5882616,0,7,-11,-110.17259,0,2,3,2019,6,0,23,28,1,0,0,14.902255,14.902255,0,0,0,0,0,1,1,0,7.0181971,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,7,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 -1440,1766,3177,-9,3176,3175,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.57935,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,851.5,1021003.6,677459.94,169538.52,66260.703,3121.3772 -1441,1767,3178,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,7.4866209,7.4936042,0,0,0,-989.65741,0,3,3,2019,10,0,30,30,1,0,0,8.8387928,8.8387928,0,0,0,0,0,1,1,0,0,0,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,241,354558.75,0,213295.92,0,1411.5482 -1442,1768,3179,3180,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.971951,7.861402,0,10,3,44.978287,0,3,3,2019,9,0,37,37,1,0,0,8.390379,8.390379,0,0,0,0,0,0,0,0,0,0,65.39,36.06,46.5,34.32,8.333333333333334,1,1,0,0,11,4,4,1,1362,796169,676118.38,122991.16,0,1845.0576 -1442,1768,3180,3179,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,7.6223631,7.7005329,10,-3,-62.345631,0,2,1,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,7.7224317,46.5,34.32,65.39,36.06,5,1,1,0,0,1,4,4,1,1362,796169,676118.38,122991.16,0,1845.0576 -1442,1769,3181,-9,3180,3179,1,1,24,0,0,0,2,2,-9,0,4,7.813776,7.9191651,0,0,0,-931.33636,0,2,2,2019,12,1,42,46,1,1,1,6.7820196,6.7820196,0,0,0,0,0,0,0,0,3.2747939,0,48.7,54.61,-9,-9,6.666666666666667,1,1,0,0,7,4,3,1,338,214402.31,111351.38,136108.52,0,1024.9769 -1442,1770,3182,-9,3180,3179,1,0,21,0,0,0,2,2,-9,0,3,8.1732416,7.9546928,0,0,0,-1038.1674,0,2,2,2019,17,5,42,42,1,5,1,8.8447571,8.8447571,0,0,0,0,0,0,0,0,0,0,31.44,55.75,-9,-9,6.666666666666667,1,1,0,0,4,4,4,1,448,-319957.13,0,0,0,1201.3801 -1443,1771,3183,3184,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.0283899,9.0207529,0,9,3,36.005844,0,1,1,2019,12,1,40,40,1,1,0,28.10817,28.10817,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.14,59.14,8.333333333333334,1,1,0,0,8,8,5,1,1300.3334,203168.61,59026.906,394569.25,296495.72,4231.25 -1443,1771,3184,3183,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.0686836,7.8831758,0,9,-3,-82.873505,0,2,1,2019,12,0,23,23,1,0,0,11.898258,11.898258,0,0,0,0,0,1,1,0,0,0,36.14,59.14,54.2,57.49,6.666666666666667,1,1,0,0,11,8,5,1,1300.3334,203168.61,59026.906,394569.25,296495.72,4231.25 -1443,1771,3185,-9,3184,3183,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.97479,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,5,1,1300.3334,203168.61,59026.906,394569.25,296495.72,4231.25 -1444,1772,3186,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.535521,6.5573649,0,0,-1070.8033,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,19.564964,0,0,1,1,0,6.0746503,6.587503,67.12,15.13,-9,-9,10,1,1,0,0,0,4,2,0,495,72799.789,-22886.586,135078.98,0,1308.1976 -1445,1773,3187,3190,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,0,5.4010897,5.6381402,13,-8,-113.47231,0,2,2,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,5.6547246,0,0,71.97,49.77,50.15,3.333333333333333,1,1,0,0,1,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 -1445,1773,3188,-9,3187,3190,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.99506,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 -1445,1773,3189,-9,3187,3190,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.19476,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 -1445,1773,3190,3187,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,7.9751635,8.122983,6.2181902,11,8,39.702629,0,-9,2,2019,10,0,45,40,1,0,0,8.0789413,8.0789413,0,0,0,0,0,1,1,0,0,6.4620309,49.77,50.15,0,71.97,8.333333333333334,1,1,0,1,10,10,3,0,312.75,268320.5,256416.63,125459.23,22959.291,2383.6575 -1446,1774,3191,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-958.59033,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.3987887,0,43.82,40.74,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,387,1055253.4,0,560541.88,0,1274.2578 -1447,1775,3192,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.8900928,7.4734578,0,0,-906.07202,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,7.6293635,7.6518831,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,566,975720.06,62187.734,485335.38,0,2051.9951 -1448,1776,3193,3194,-9,-9,1,1,52,0,2,0,3,3,-9,1,1,7.4581723,7.4804678,0,26,2,-135.1075,0,-9,2,2019,15,3,32,32,1,3,0,5.2826858,5.2826858,0,0,0,0,14.5,1,1,0,0,0,27.98,23.93,35.78,55.1,3.333333333333333,1,1,0,1,8,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 -1448,1776,3194,3193,-9,-9,1,0,50,0,2,0,2,2,-9,1,3,0,0,0,26,-2,-75.879982,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,35.78,55.1,27.98,23.93,5,1,1,0,0,0,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 -1448,1776,3195,-9,3194,3193,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4586,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 -1448,1776,3196,-9,3194,3193,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.2037,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,729.75,152780.14,30012.313,162268.08,48480.586,2847.9822 -1449,1777,3197,3198,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.7308302,8.7638035,0,9,0,138.49281,0,2,2,2019,6,0,43,47,1,0,0,15.240049,15.240049,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,2082.5,129281.05,156763.52,313018.47,40834.617,4387.4229 -1449,1777,3198,3197,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2134905,8.053236,6.7558923,9,0,.30594388,0,3,3,2019,8,0,47,47,1,0,0,9.5711861,9.5711861,0,0,0,0,0,0,0,0,0,7.0192604,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,2082.5,129281.05,156763.52,313018.47,40834.617,4387.4229 -1450,1778,3199,3200,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8339887,7.9589114,9,0,36.785702,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.7134746,7.9272528,54.37,54.8,49.04,55.86,6.666666666666667,1,1,0,0,3,12,4,1,774.5,1475753.5,1068667.9,185953.88,0,2037.2603 -1450,1778,3200,3199,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4101977,7.2221394,9,0,-44.202606,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6373878,49.04,55.86,54.37,54.8,8.333333333333334,1,1,0,0,4,12,4,1,774.5,1475753.5,1068667.9,185953.88,0,2037.2603 -1451,1779,3201,3202,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.7583456,7.8523502,0,35,-1,58.248203,0,2,2,2019,10,0,45,45,1,0,0,6.3318377,6.3318377,0,0,0,0,0,0,0,0,0,0,57.42,49.34,54.8,50.32,8.333333333333334,1,1,0,0,11,7,4,1,665.5,885798.5,551589.25,0,0,2266.7227 -1451,1779,3202,3201,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0379963,8.0408859,0,35,1,9.1452417,0,-9,2,2019,9,0,30,30,1,0,0,10.45154,10.45154,0,0,0,0,2,0,0,0,6.647378,0,54.8,50.32,57.42,49.34,8.333333333333334,1,1,0,0,9,7,4,1,665.5,885798.5,551589.25,0,0,2266.7227 -1452,1780,3203,-9,3204,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.8906,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,0,661.5,66361.125,-64097.32,0,0,1857.7429 -1452,1780,3204,-9,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.584548,8.7674799,0,9,2,-62.38401,0,2,2,2019,6,0,50,100,1,0,0,13.249074,13.249074,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.21,31.91,8.333333333333334,1,1,0,0,8,9,5,0,661.5,66361.125,-64097.32,0,0,1857.7429 -1452,1781,3205,-9,-9,-9,1,0,32,1,1,0,1,1,-9,0,1,8.589282,8.872406,0,9,-2,-19.34823,0,1,1,2019,8,1,35,35,1,1,0,22.74501,22.74501,0,0,0,0,0,1,1,0,0,0,49.21,31.91,57.06,57.76,8.333333333333334,1,1,0,0,6,9,5,0,1571,298101.78,43213.566,0,0,2125.1194 -1453,1782,3206,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.2156,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.65,34.66,-9,-9,0,1,1,0,0,0,4,1,0,488,-1008.1878,0,0,0,855.25732 -1454,1783,3207,3208,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.1011734,8.2501469,36,-2,-87.651474,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.609241,8.0006218,49.86,55.31,58.62,52.91,10,1,1,0,0,9,12,5,1,652,2193515,1882566.8,297102.19,0,5393.5947 -1454,1783,3208,3207,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.4754438,8.9924974,36,2,4.1908212,0,2,2,2019,2,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8687301,8.8848028,58.62,52.91,49.86,55.31,10,1,1,0,0,9,12,5,1,652,2193515,1882566.8,297102.19,0,5393.5947 -1455,1784,3209,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.8735476,8.8481836,0,0,0,-1011.8782,0,2,2,2019,11,1,55,50,1,1,0,15.901356,15.901356,0,0,0,0,0,0,0,0,4.7660723,0,52.46,38.12,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,1227,977479,166519.92,301490.75,142636.41,2848.4282 -1456,1785,3210,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.5915079,8.3514662,0,0,0,-938.84619,0,-9,-9,2019,10,0,38,38,1,0,0,12.049512,12.049512,0,0,0,0,0,0,0,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,273,-58986.797,124796.76,0,0,1333.4131 -1457,1786,3211,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.2002411,7.9471536,0,0,0,-965.61517,0,-9,-9,2019,6,0,38,36,1,0,0,8.1254025,8.1254025,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,500,568848.69,250208.91,100234.25,0,645.02148 -1458,1787,3212,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.1593275,8.091197,0,0,0,-789.77515,0,3,3,2019,11,0,38,40,1,0,0,8.3119297,8.3119297,0,0,0,0,0,0,0,0,0,0,57.16,40.24,-9,-9,5,1,1,0,0,10,13,4,0,488,34547.586,0,0,0,1185.2068 -1459,1788,3213,-9,-9,3214,1,1,21,0,3,0,2,2,-9,0,3,8.0260696,7.5095401,0,0,0,-933.14545,0,-9,3,2019,15,4,50,30,1,4,1,4.8589125,4.8589125,0,0,0,0,0,1,1,0,0,0,32.87,49.69,-9,-9,1.666666666666667,1,1,0,0,4,9,3,0,583,549836.81,0,0,0,256.53104 -1459,1789,3214,-9,-9,-9,1,1,42,0,3,0,3,3,-9,1,4,6.6199179,6.2250209,0,0,0,-893.34949,-9,-9,-9,2019,7,0,40,0,1,0,0,1.7939814,1.7939814,0,0,0,0,42,1,1,0,0,0,46.31,56.45,-9,-9,0,1,1,0,0,1,9,2,0,650,78875.609,9569.0215,0,0,1494.1017 -1459,1789,3215,-9,-9,3214,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.8656,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,650,78875.609,9569.0215,0,0,1494.1017 -1459,1789,3216,-9,-9,3214,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.1829,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,2,0,650,78875.609,9569.0215,0,0,1494.1017 -1460,1790,3217,3218,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.8673573,8.8068943,0,10,-1,80.88382,0,2,2,2019,11,0,39,40,1,0,0,21.53656,21.53656,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,9,5,1,743,1819438.8,864718.5,635996.94,0,6129.9434 -1460,1790,3218,3217,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.8210869,8.7643461,10,1,70.995796,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5123124,8.7173119,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,4,9,5,1,743,1819438.8,864718.5,635996.94,0,6129.9434 -1460,1791,3219,-9,3218,3217,1,0,18,0,0,0,2,2,-9,0,5,7.6161718,7.7099147,0,0,0,-922.92273,0,2,1,2019,4,0,38,0,1,0,1,5.6326857,5.6326857,0,0,0,0,0,0,0,0,0,0,47.83,62.16,-9,-9,10,1,1,0,0,2,9,3,1,625,38595.266,60111.98,0,0,1122.9513 -1461,1792,3220,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.4491892,7.5970502,6.0888319,0,0,-929.8844,0,3,2,2019,12,0,26,25,1,0,0,7.183887,7.183887,0,0,0,0,0,1,1,0,4.1106548,5.9505348,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,283,668501.75,0,832666.06,0,1596.8324 -1462,1793,3221,3222,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.2053137,8.29284,9,4,-5.1960373,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9193008,8.1730556,56.5,48.33,59.29,49.68,8.333333333333334,1,1,0,0,5,12,4,1,946.5,1650809.5,1255377.4,289911.81,0,3351.2588 -1462,1793,3222,3221,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4651928,6.317204,9,-4,-48.795082,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6229055,6.7657275,59.29,49.68,56.5,48.33,0,1,1,0,0,5,12,4,1,946.5,1650809.5,1255377.4,289911.81,0,3351.2588 -1463,1794,3223,3224,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.4144611,7.50458,51,2,-5.4942985,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,4.7861366,0,0,1,1,0,6.1174865,7.3553567,52.65,30.38,46.98,35.42,8.333333333333334,1,1,0,0,0,6,3,1,490,160817.25,33784.59,308233.91,0,2275.3115 -1463,1794,3224,3223,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,51,-2,86.920776,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,3.3488595,0,46.98,35.42,52.65,30.38,10,1,1,0,0,0,6,3,1,490,160817.25,33784.59,308233.91,0,2275.3115 -1464,1795,3225,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,7.9088812,8.0824671,0,0,0,-1054.5719,0,2,2,2019,9,0,26,26,1,0,0,15.105606,15.105606,0,0,0,0,0,0,0,0,0,0,52.24,50.75,-9,-9,6.666666666666667,1,1,0,0,11,4,4,0,174,659116.88,171499.75,169429.31,56684.078,965.89313 -1465,1796,3226,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1047.7152,0,3,3,2019,12,5,0,30,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,62.61,26.53,-9,-9,8.333333333333334,3,4,1,1,4,8,1,0,1202,-45271.965,0,0,0,801.2948 -1465,1797,3227,-9,3226,-9,1,0,23,0,0,0,2,2,-9,0,3,7.7379117,7.6315231,0,0,0,-1065.6636,0,2,-9,2019,8,0,15,16,1,0,1,23.665485,23.665485,0,0,0,0,0,1,1,0,0,0,58.07,46.29,-9,-9,8.333333333333334,3,4,0,0,4,8,3,0,170,110512.7,-50463.363,0,0,1202.7548 -1465,1798,3228,-9,3226,-9,1,1,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-1097.2385,-9,2,-9,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,39.92,36.74,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,2595,0,0,0,0,242.87665 -1466,1799,3229,3230,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.78619,9.8520861,0,16,-3,83.946701,0,1,1,2019,12,0,83,0,1,0,0,22.266973,22.266973,0,0,0,0,0,0,0,0,2.9333484,0,57.16,56.15,54.23,46.77,8.333333333333334,1,1,0,0,8,8,5,1,640.33331,-22199.275,-21424.172,0,0,3893.5046 -1466,1799,3230,3229,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,5.3390403,4.993804,0,16,3,48.775658,0,2,1,2019,11,0,30,30,1,0,0,.65291184,.65291184,0,0,0,0,0,0,0,0,0,0,54.23,46.77,57.16,56.15,8.333333333333334,1,1,0,1,8,8,5,1,640.33331,-22199.275,-21424.172,0,0,3893.5046 -1466,1799,3231,-9,3229,3230,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.25732,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,640.33331,-22199.275,-21424.172,0,0,3893.5046 -1467,1800,3232,-9,3233,3234,1,0,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1146.585,1,2,2,2019,0,0,0,22,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,5,2,1,0,427,115640.04,0,0,0,250.0367 -1467,1801,3233,3234,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.4457297,7.4495878,0,27,-11,-62.622704,0,3,3,2019,11,1,29,29,1,1,0,7.2883902,7.2883902,0,0,0,0,0,0,0,0,0,0,60.02,56.42,51,49,8.333333333333334,3,4,0,0,11,2,3,0,705.33331,181321.27,215417.27,57358.371,31594.838,2387.2515 -1467,1801,3234,3233,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,7.7311282,7.4241028,0,2,11,5.0035911,0,-9,-9,2019,10,0,39,40,1,1,0,7.5626111,7.5626111,0,0,0,0,0,0,0,0,0,0,51,49,60.02,56.42,7,3,4,0,0,11,2,3,0,705.33331,181321.27,215417.27,57358.371,31594.838,2387.2515 -1467,1801,3235,-9,3233,3234,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1040.204,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,3,4,-9,0,0,2,3,0,705.33331,181321.27,215417.27,57358.371,31594.838,2387.2515 -1467,1802,3236,-9,3233,3234,1,1,26,0,1,0,2,2,-9,0,5,8.2658844,8.0007086,0,0,0,-1031.3752,0,2,2,2019,3,0,30,38,1,0,1,15.962272,15.962272,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,6.666666666666667,3,4,0,0,6,2,4,0,297,114122.34,-56904.934,0,0,1268.3671 -1468,1803,3237,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-972.84546,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,61.27,41.18,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,604,33337.039,-46528.313,33774.375,0,918.2254 -1469,1804,3238,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.1152949,7.0809374,0,0,-1095.0568,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1424527,61.11,48.86,-9,-9,5,1,1,0,0,4,2,2,1,864,303159.81,241108.89,172268.73,29138.006,635.34326 -1470,1805,3239,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.61945,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,572,259517.64,0,248470.61,0,1840.448 -1471,1806,3240,3241,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.1283417,8.1301041,0,20,-11,2.5796704,0,-9,-9,2019,11,0,41,42,1,0,0,9.1010475,9.1010475,0,0,0,0,0,1,1,0,1.6073362,0,57.06,57.76,59.7,53.75,8.333333333333334,1,1,0,0,8,10,4,1,733,402633.94,137911.34,224633.38,0,2829.3989 -1471,1806,3241,3240,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7250409,7.3002653,20,11,-67.786354,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8511562,59.7,53.75,57.06,57.76,10,1,1,0,0,8,10,4,1,733,402633.94,137911.34,224633.38,0,2829.3989 -1472,1807,3242,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.5228066,7.7962775,0,0,-1015.243,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.0679193,7.3804135,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,674,611834.31,434102.78,136323.83,0,1587.1027 -1473,1808,3243,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.2928009,7.3493509,0,0,-986.0498,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7698803,7.1272655,53,45,-9,-9,8,4,6,0,0,0,6,3,1,350,89099.734,0,126441.7,0,1336.9674 -1473,1809,3244,3245,3243,-9,1,0,63,0,0,0,3,3,-9,0,4,7.6330485,7.7716064,0,7,-10,-57.557121,0,3,3,2019,6,0,2,39,1,0,0,158.82878,158.82878,0,0,0,0,7,1,1,0,0,0,41.17,59.31,45.13,54.73,8.333333333333334,1,1,0,0,9,6,3,1,407.5,906974.06,163116.25,497891.84,0,1861.6038 -1473,1809,3245,3244,3243,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.9196043,4.8201423,7,10,45.63546,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.0589652,5.2270389,45.13,54.73,41.17,59.31,8.333333333333334,1,1,0,0,4,6,3,1,407.5,906974.06,163116.25,497891.84,0,1861.6038 -1474,1810,3246,3247,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,46,-2,-69.565857,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,49,48,51,48,7,1,1,0,0,0,6,3,1,1660.5,548024.13,269016.59,156410.44,0,1022.597 -1474,1810,3247,3246,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.882647,7.4241805,0,46,2,81.000359,0,3,3,2019,10,0,38,38,1,1,0,7.6371613,7.6371613,0,0,0,0,71.5,1,1,0,.88012314,0,51,48,49,48,7,1,1,0,0,12,6,3,1,1660.5,548024.13,269016.59,156410.44,0,1022.597 -1475,1811,3248,3249,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,53,2,16.152662,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.6661077,0,41.45,45.31,54.72,46.41,6.666666666666667,1,1,0,0,0,9,3,1,488.5,1169888,551989.19,427901.88,0,3066.8887 -1475,1811,3249,3248,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.386385,7.6046324,53,-2,-49.682629,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9875021,7.5682173,54.72,46.41,41.45,45.31,8.333333333333334,1,1,0,0,0,9,3,1,488.5,1169888,551989.19,427901.88,0,3066.8887 -1476,1812,3250,3251,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,0,0,3,-3,-130.94727,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,42.16,52,54.51,3.333333333333333,1,1,0,1,0,1,3,1,1062.5,-31374.582,99620.922,122995.69,66976.656,2168.5742 -1476,1812,3251,3250,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,6.9287958,8.0837278,7.4827843,3,3,76.527985,0,3,3,2019,9,0,37,37,1,0,0,2.9353418,2.9353418,0,0,0,0,0,1,1,0,7.3490705,7.4501581,52,54.51,38.15,42.16,6.666666666666667,1,1,0,0,7,1,3,1,1062.5,-31374.582,99620.922,122995.69,66976.656,2168.5742 -1477,1813,3252,3253,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,7.2847824,7.4177709,49,3,75.180939,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8271217,7.6045084,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,5,9,3,1,1381,1084343.1,559539.25,382810.94,0,3125.7246 -1477,1813,3253,3252,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4860888,7.4309688,49,-3,-10.907362,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.6113162,7.5827327,57.16,56.15,57.06,57.76,10,1,1,0,0,5,9,3,1,1381,1084343.1,559539.25,382810.94,0,3125.7246 -1478,1814,3254,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.261436,6.4215608,0,0,-985.97168,0,2,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,6.24962,20.32,39.7,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,145,593452.63,321688.94,101285.42,0,1029.0859 -1479,1815,3255,-9,3256,3258,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.63,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 -1479,1815,3256,3258,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7904634,8.7124653,0,7,-2,-57.815948,0,2,1,2019,9,0,38,39,1,0,0,16.412382,16.412382,0,0,0,0,0,1,1,0,0,0,35.46,60.62,54.37,54.8,8.333333333333334,1,1,0,0,8,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 -1479,1815,3257,-9,3256,3258,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-867.17041,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 -1479,1815,3258,3256,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.897191,8.9749126,0,7,2,24.03417,0,2,1,2019,5,0,38,36,1,0,0,23.590546,23.590546,0,0,0,0,0,1,1,0,0,0,54.37,54.8,35.46,60.62,8.333333333333334,1,1,0,0,8,12,5,1,409.25,1093860.8,1014783.9,160640.22,20554.57,4688.8203 -1480,1816,3259,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.6669068,7.3908296,0,0,0,-977.13373,0,3,2,2019,10,1,40,0,1,1,0,4.3530431,4.3530431,0,0,0,0,74.5,1,1,0,0,0,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,1127,85082.641,-35246.586,0,0,1525.5658 -1480,1817,3260,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.528255,6.3359241,0,0,-1101.4845,-9,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,3.023217,28.713476,50.000004,0,1,1,0,3.9710858,6.2532992,52.45,20.01,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1047,-19746.959,108527.77,0,0,1505.5596 -1481,1818,3261,3262,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.7047195,8.9075136,0,8,-3,7.1410198,0,1,1,2019,10,0,50,52,1,0,0,15.770507,15.770507,0,0,0,0,0,1,1,0,0,0,50.11,54.04,51.77,58.57,8.333333333333334,1,1,0,0,8,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 -1481,1818,3262,3261,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.9892807,8.5905828,0,8,3,93.022774,0,2,2,2019,9,0,45,50,1,0,0,17.23209,17.23209,0,0,0,0,0,1,1,0,0,0,51.77,58.57,50.11,54.04,8.333333333333334,1,1,0,0,8,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 -1481,1818,3263,-9,3261,3262,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-994.61963,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 -1481,1818,3264,-9,3261,3262,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1161.9977,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,5,1,750.75,125977.76,-32624.646,310631,176102.47,4982.4502 -1482,1819,3265,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.2487125,8.2949448,0,0,0,-966.17249,-9,3,-9,2019,10,0,35,0,1,0,0,12.30642,12.30642,0,0,0,0,2,0,0,0,0,0,48.68,53.73,-9,-9,8.333333333333334,3,4,0,0,12,8,4,1,279,55835.32,0,0,0,458.4057 -1483,1820,3266,-9,3268,3269,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.7536,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 -1483,1820,3267,-9,3268,3269,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-965.53882,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 -1483,1820,3268,3269,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,6.767662,6.822145,0,4,-7,-79.438133,0,-9,-9,2019,16,3,21,26,1,3,0,5.5676379,5.5676379,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50,57,10,1,1,0,0,9,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 -1483,1820,3269,3268,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.1869164,8.4143515,0,4,7,37.724903,0,3,2,2019,10,0,40,40,1,1,0,15.215068,15.215068,0,0,0,0,0,1,1,0,0,0,50,57,54.79,55.86,7,1,1,0,0,1,12,3,0,845.25,366715.63,0,493399.88,107414.67,2532.8826 -1484,1821,3270,-9,-9,-9,1,1,31,0,0,0,1,1,0,0,5,0,0,0,0,0,-1050.9745,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,8.1315546,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,256,-54365.922,0,0,0,2417.614 -1484,1822,3271,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.002,0,-9,-9,2019,8,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,1,0,1,12,1,1,778,115872.63,0,0,0,-247.16191 -1484,1823,3272,-9,-9,-9,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-995.01617,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.4187738,0,25.44,65.40000000000001,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,3109,0,0,0,0,-168.65775 -1485,1824,3273,-9,3276,3275,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.4351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 -1485,1824,3274,-9,3276,3275,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.1261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 -1485,1824,3275,3276,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.5015535,8.7897081,0,6,4,3.4841456,0,-9,-9,2019,19,7,37,40,1,7,0,15.370169,15.370169,0,0,0,0,0,1,1,0,0,0,29.35,58.05,51.83,57.2,5,1,1,0,1,6,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 -1485,1824,3276,3275,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,7.1850767,7.0390282,0,6,-4,-27.931259,0,2,2,2019,12,0,16,16,1,0,0,7.7971435,7.7971435,0,0,0,0,0,1,1,0,0,0,51.83,57.2,29.35,58.05,8.333333333333334,1,1,0,0,7,5,4,1,664.75,89827.977,-13235.73,145023.39,109105.78,2303.9438 -1486,1825,3277,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-990.26801,0,2,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.51,35.51,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,519,-112063.1,0,0,0,1487.6465 -1486,1826,3278,-9,3277,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7234416,7.6013246,0,0,0,-1058.6516,-9,3,-9,2019,11,0,35,0,1,0,1,8.5066013,8.5066013,0,0,0,0,0,1,1,0,0,0,40.77,61.04,-9,-9,6.666666666666667,1,1,0,1,5,10,3,0,1098,141228.09,0,0,0,1532.8203 -1487,1827,3279,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,6.1652875,6.0968032,0,0,-1041.4071,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.721981,5.8695517,59.63,46.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,242,474456.97,-57291.344,138619.48,7687.9331,2027.6667 -1488,1828,3280,3281,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.8297424,8.6902599,0,22,9,-15.939028,0,-9,-9,2019,11,0,20,20,1,1,0,40.861103,40.861103,0,0,0,0,0,0,0,0,0,0,54.96,53.17,58.32,50.22,8.333333333333334,2,3,0,0,9,2,5,1,339,2569401,1889859,487686.13,-3136.6462,4777.8066 -1488,1828,3281,3280,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.7376957,8.3601065,0,22,0,14.288836,0,-9,-9,2019,6,0,40,40,1,0,0,15.280464,15.280464,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.96,53.17,8.333333333333334,2,3,0,0,12,2,5,1,339,2569401,1889859,487686.13,-3136.6462,4777.8066 -1488,1829,3282,-9,3281,3280,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-931.98761,-9,1,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,5,2,1,1,520,0,0,0,0,468.51926 -1488,1830,3283,-9,3281,3280,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.8053,-9,1,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,396,0,0,0,0,-71.067757 -1489,1831,3284,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1115.9126,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.43,41.58,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,1862,-288321,0,0,0,1078.2428 -1490,1832,3285,3286,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,10,0,-51.425472,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.2838564,0,50,46,59.53,56.44,7,1,1,0,0,0,6,3,1,127,986980.75,387778.25,320472.38,0,3276.665 -1490,1832,3286,3285,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,8.3106089,7.8731093,50,0,-15.795785,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.1495292,7.8645325,59.53,56.44,50,46,10,1,1,0,0,0,6,3,1,127,986980.75,387778.25,320472.38,0,3276.665 -1491,1833,3287,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-991.42572,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,10,1,1,1,0,0,8,1,1,340,-27901.723,0,0,0,697.49536 -1491,1834,3288,-9,3287,-9,1,0,27,0,0,0,1,1,-9,0,5,0,0,0,0,0,-978.78479,0,1,1,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,1,0,0,8,1,1,382,0,0,0,0,-74.050377 -1492,1835,3289,3290,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,6.0319562,7.6816702,7.3137636,3,8,-32.081234,0,3,3,2019,7,0,25,38,1,0,0,2.2691989,2.2691989,0,0,0,0,0,1,1,0,6.7839065,7.7867231,51.07,37.95,58.32,50.22,8.333333333333334,1,1,0,0,8,8,3,1,849,910600.38,600503.38,370239.63,0,3622.5349 -1492,1835,3290,3289,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.1875291,7.3355746,0,3,-8,-127.9987,0,-9,-9,2019,6,0,30,30,1,0,0,5.6772528,5.6772528,0,0,0,0,0,1,1,0,7.8492723,0,58.32,50.22,51.07,37.95,8.333333333333334,1,1,0,0,8,8,3,1,849,910600.38,600503.38,370239.63,0,3622.5349 -1493,1836,3291,3292,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.564764,8.7292871,0,34,0,69.742256,0,2,-9,2019,6,0,41,48,1,0,0,15.163509,15.163509,0,0,0,0,0,0,0,0,1.6787974,0,62.11,40.77,51.14,60.45,8.333333333333334,1,1,0,0,9,5,5,1,973,680145.56,426689,203272.55,26470.523,3648.2803 -1493,1836,3292,3291,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.2287579,8.2939186,0,34,0,-57.020046,-9,-9,-9,2019,8,0,37,0,1,1,0,10.141475,10.141475,0,0,0,0,0,0,0,0,2.8810587,0,51.14,60.45,62.11,40.77,10,1,1,0,0,6,5,5,1,973,680145.56,426689,203272.55,26470.523,3648.2803 -1494,1837,3293,3294,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.6373539,7.6988764,30,7,33.394466,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7907789,7.5104885,59.14,52.5,57.16,56.15,10,1,1,0,0,0,12,3,1,687.5,1193340.8,455906,231909.78,0,2876.5498 -1494,1837,3294,3293,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.7788119,6.8305011,30,-7,-23.695486,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9305749,6.8070354,57.16,56.15,59.14,52.5,10,1,1,0,0,0,12,3,1,687.5,1193340.8,455906,231909.78,0,2876.5498 -1495,1838,3295,-9,3296,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.4366,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,2,0,2077,-329812.5,0,0,0,1413.668 -1495,1838,3296,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.4434738,7.1907525,0,0,0,-873.72894,-9,-9,-9,2019,12,0,17,0,1,0,0,11.065991,11.065991,0,0,0,0,27,1,1,0,0,0,41.47,56.81,-9,-9,6.666666666666667,1,1,0,0,9,11,2,0,2077,-329812.5,0,0,0,1413.668 -1496,1839,3297,3298,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.2924423,5.6862187,49,3,-87.937859,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1033792,6.2241044,64.07000000000001,47.52,45.72,53.17,8.333333333333334,1,1,0,0,11,5,2,1,2063,459478.28,261116.38,181440.28,0,2246.6074 -1496,1839,3298,3297,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.6256423,6.5125976,49,-3,182.02065,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,7.4585247,6.0509148,45.72,53.17,64.07000000000001,47.52,5,1,1,0,0,0,5,2,1,2063,459478.28,261116.38,181440.28,0,2246.6074 -1497,1840,3299,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1025.5314,0,3,3,2019,21,9,0,10,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,8.333333333333334,1,1,0,0,6,11,1,1,738,-224833.48,0,0,0,297.3176 -1497,1841,3300,-9,3299,-9,1,1,30,0,0,0,1,1,-9,0,4,8.447648,8.5037079,0,0,0,-959.07172,0,2,3,2019,9,2,42,42,1,2,1,12.510931,12.510931,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,1544,-236005.48,94396.172,0,0,2207.1594 -1498,1842,3301,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.0905733,6.8557878,0,0,-1078.3094,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,8.0445185,0,2,1,1,0,.95451379,7.3080592,44.12,35.49,-9,-9,5,1,1,0,0,0,4,2,1,834,284866.19,199916.22,148549.56,0,2007.8378 -1499,1843,3302,3303,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.6444588,8.7648621,0,7,-4,-30.0194,0,2,2,2019,12,2,37,33,1,2,0,16.699112,16.699112,0,0,0,0,0,1,1,0,0,0,33.74,63,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 -1499,1843,3303,3302,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.3040533,8.4126816,0,7,4,-54.602219,0,3,3,2019,5,0,38,39,1,0,0,12.983579,12.983579,0,0,0,0,0,1,1,0,0,0,54.2,57.49,33.74,63,8.333333333333334,1,1,0,0,8,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 -1499,1843,3304,-9,3302,3303,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.82727,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 -1499,1843,3305,-9,3302,3303,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.51575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,600.5,720855.63,221589.72,247948.34,239128.19,3736.1948 -1500,1844,3306,-9,3309,3307,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1097.36,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,2,3,-9,0,0,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 -1500,1844,3307,3309,-9,-9,1,1,47,0,2,0,3,3,-9,0,4,8.5333033,8.3322601,0,25,6,10.989324,0,3,3,2019,9,0,39,48,1,1,0,10.812715,10.812715,0,0,0,0,0,1,1,0,0,0,52,55,49,55,8,2,3,0,0,11,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 -1500,1844,3308,-9,3309,3307,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.44171,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 -1500,1844,3309,3307,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,8,-6,-41.935249,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,7,2,3,0,0,0,8,3,1,669.5,1454661.6,77278.695,1019487.9,237434.05,2466.1558 -1500,1845,3310,-9,3309,3307,1,0,22,0,2,0,1,1,-9,0,4,8.0494461,8.0012026,0,0,0,-1064.373,0,2,3,2019,11,0,38,53,1,2,1,9.4737959,9.4737959,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,2,8,4,1,787,-63789.633,0,0,0,854.83594 -1500,1846,3311,-9,3309,3307,1,1,18,0,2,1,3,0,0,0,4,0,0,0,0,0,-987.16675,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,1,1,555,0,0,0,0,0 -1501,1847,3312,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.1312647,7.7332478,0,0,-1058.7511,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.31411618,7.3221865,59.07,43.05,-9,-9,8.333333333333334,3,4,0,0,8,8,3,1,97,527047.63,158526.69,417833.25,0,783.96771 -1502,1848,3313,-9,3315,3316,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.33124,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 -1502,1848,3314,-9,3315,3316,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-988.76758,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 -1502,1848,3315,3316,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,0,0,0,9,-1,180.35793,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.9999127,0,59.29,49.68,52.83,49.11,10,1,1,0,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 -1502,1848,3316,3315,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,9.2597723,8.8522272,0,9,1,-4.592505,0,1,2,2019,6,0,39,41,1,0,0,29.351915,29.351915,0,0,0,0,0,1,1,0,5.3996668,0,52.83,49.11,59.29,49.68,8.333333333333334,1,1,0,0,12,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 -1502,1848,3317,-9,3315,3316,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.8311,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,767.79999,630925.06,341959.19,294243.59,0,3326.0938 -1503,1849,3318,3319,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,0,0,0,1,1,-54.646618,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.22,63.14,53.11,47.09,8.333333333333334,2,3,1,0,0,7,3,1,1886.5,334430.19,58811.164,625959.88,234444.38,1737.6062 -1503,1849,3319,3318,3320,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2337112,8.0519199,0,1,-1,99.504227,0,3,2,2019,12,2,45,45,1,2,0,9.0797577,9.0797577,0,0,0,0,0,0,0,0,3.5057263,0,53.11,47.09,45.22,63.14,6.666666666666667,2,3,0,0,3,7,3,1,1886.5,334430.19,58811.164,625959.88,234444.38,1737.6062 -1503,1850,3320,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.1812606,7.2775645,0,0,0,-1017.4232,-9,-9,-9,2019,12,2,20,0,1,2,0,7.6888213,7.6888213,0,0,0,0,0,0,0,0,0,0,48.77,22.19,-9,-9,6.666666666666667,2,3,0,0,9,7,3,1,657,319346.13,-82932.406,0,0,317.5809 -1504,1851,3321,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.4039574,9.803648,0,0,0,-844.72198,0,2,1,2019,12,1,50,45,1,1,0,35.931778,35.931778,0,0,0,0,2,1,1,0,7.357502,0,49.44,54.26,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,668,391552.84,9931.2988,364810.81,212483.86,5074.8057 -1505,1852,3322,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.0729876,8.401226,0,0,-996.63495,0,2,2,2019,20,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,9.3928432,8.0589991,47.01,55.33,-9,-9,5,1,1,0,0,0,9,4,1,66,140260.98,342869.88,0,0,6696.2402 -1506,1853,3323,-9,3324,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.93341,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,521.5,-45466.504,-57139.813,0,0,1312.1538 -1506,1853,3324,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,7.4179215,7.2513814,5.4606109,0,0,-937.12299,0,-9,-9,2019,12,0,30,20,1,0,0,7.0937643,7.0937643,0,0,0,0,0,1,1,0,5.8549929,0,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,521.5,-45466.504,-57139.813,0,0,1312.1538 -1507,1854,3325,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.6423559,7.3060036,0,0,-957.85767,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,26.516235,7.8116932,240.65338,0,1,1,0,7.4275789,7.5247078,46.85,19.4,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,297,684057.31,189338.95,538265.63,0,1953.5112 -1508,1855,3326,-9,-9,-9,1,0,73,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1017.6191,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,7,2,3,0,0,0,8,2,1,2511,0,0,0,0,517.55634 -1508,1856,3327,3328,3326,-9,1,1,42,0,2,0,2,2,-9,0,4,8.495388,8.2926254,0,6,0,0,0,3,3,2019,12,0,30,31,1,0,0,13.364762,13.364762,0,0,0,0,27,1,1,0,0,0,35.8,58.23,45.3,54.79,1.666666666666667,2,3,0,0,8,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 -1508,1856,3328,3327,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.9531178,8.0126238,0,17,0,0,0,3,3,2019,11,0,30,30,1,0,0,15.191956,15.191956,0,0,0,0,27,1,1,0,1.2900329,0,45.3,54.79,35.8,58.23,8.333333333333334,2,3,0,0,8,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 -1508,1856,3329,-9,3328,3327,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.7906,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 -1508,1856,3330,-9,3328,3327,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.5829,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,4,1,728.5,-36231.359,47450.496,0,0,3422.7349 -1509,1857,3331,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.8676844,6.8531437,0,0,-979.84058,0,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0711074,51,46,-9,-9,8,1,1,0,0,0,7,2,0,270,747531.69,38820.785,714052.25,0,1304.2987 -1510,1858,3332,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.5508461,8.6925068,0,0,0,-960.89581,0,2,2,2019,8,0,26,26,1,0,0,31.073595,31.073595,0,0,0,0,0,0,0,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,702,186939.34,147140.98,197296.2,330043.53,2587.637 -1511,1859,3333,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,7.3434172,7.2431879,0,0,-1082.2889,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.45570338,6.9364033,60.12,54.8,-9,-9,10,1,1,0,0,0,1,3,1,1836,203053.45,80833.859,190879.72,0,856.96973 -1512,1860,3334,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,8.7990503,8.6697588,0,0,-1135.3528,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,5.6671429,0,47.678196,0,1,1,0,2.3006713,8.6888714,52.84,34.09,-9,-9,1.666666666666667,1,1,0,0,0,11,5,1,459,333883.78,146088.39,272089.66,-1418.926,3428.0613 -1513,1861,3335,3336,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,7.1558175,7.4667006,0,6,5,45.796509,0,2,2,2019,10,0,32,32,1,0,0,5.6989465,5.6989465,0,0,0,0,7,1,1,0,0,0,53.07,52.7,59.53,56.44,1.666666666666667,1,1,0,0,9,1,2,0,365.5,101098.37,402895.13,100838.66,87926.469,1896.6655 -1513,1861,3336,3335,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,6,-5,-75.081787,0,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,53.07,52.7,6.666666666666667,1,1,0,0,0,1,2,0,365.5,101098.37,402895.13,100838.66,87926.469,1896.6655 -1514,1862,3337,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.1684165,6.9777117,0,0,0,-990.98389,0,-9,-9,2019,6,0,12,12,1,0,0,12.771059,12.771059,0,0,0,0,0,1,1,0,5.051868,0,62.49,55.09,-9,-9,10,1,1,0,0,9,9,3,1,432,409924.88,-85834.789,153949.09,0,808.78571 -1515,1863,3338,3339,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.2711186,5.3758764,4,-8,-43.887753,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0567746,46.05,35.83,52.99,30.14,6.666666666666667,1,1,0,0,0,9,2,1,590.5,155579.05,17017.977,0,0,1868.0502 -1515,1863,3339,3338,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.2871661,5.3680549,4,8,172.74962,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0081682,5.1868191,52.99,30.14,46.05,35.83,10,1,1,0,0,0,9,2,1,590.5,155579.05,17017.977,0,0,1868.0502 -1516,1864,3340,3342,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,7.9755921,8.1677332,0,10,0,-89.637344,0,2,2,2019,13,1,30,43,1,1,0,9.4990644,9.4990644,0,0,0,0,0,0,0,0,0,0,33.94,62.57,50.46,53.68,6.666666666666667,1,1,0,0,12,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 -1516,1864,3341,-9,3340,3342,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.38348,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 -1516,1864,3342,3340,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.3342819,9.1989651,0,10,0,-39.122509,0,1,1,2019,8,0,45,48,1,0,0,26.83732,26.83732,0,0,0,0,0,0,0,0,0,0,50.46,53.68,33.94,62.57,8.333333333333334,1,1,0,0,10,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 -1516,1864,3343,-9,3340,3342,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4055,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,406.75,862265.81,614303,290776.13,126307.64,5311.0762 -1517,1865,3344,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,9.6754503,9.9271955,8.1362371,0,0,-980.85583,0,3,2,2019,10,0,7,50,1,0,0,214.79462,214.79462,0,0,0,0,0,1,1,0,9.1656179,8.8233719,61.43,43.34,-9,-9,5,1,1,0,0,10,10,5,1,3719,1900281.9,1366068.8,88354.758,101515.94,8848.8281 -1518,1866,3345,3346,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.7788439,6.8207393,10,-1,-113.90252,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0000482,6.8986406,54.96,53.17,65.40000000000001,22.5,10,1,1,0,0,0,6,2,1,909.5,339182.38,234816.05,124303.53,0,1853.2137 -1518,1866,3346,3345,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.281168,6.2988591,58,1,-45.196232,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.2068105,6.2250977,65.40000000000001,22.5,54.96,53.17,8.333333333333334,1,1,0,0,0,6,2,1,909.5,339182.38,234816.05,124303.53,0,1853.2137 -1519,1867,3347,3348,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,7.128377,7.0911074,0,29,-5,-45.167202,0,3,3,2019,8,0,16,10,1,0,0,7.4545536,7.4545536,0,0,0,0,7,0,0,0,0,0,42.33,45.96,57.16,56.15,1.666666666666667,1,1,0,0,8,7,5,0,1259,892043.88,249971.34,761718.38,99367.328,3407.2344 -1519,1867,3348,3347,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.5549965,8.8879538,5.3074994,27,5,36.51313,0,-9,-9,2019,6,0,35,35,1,0,0,23.178413,23.178413,0,0,0,0,2,0,0,0,5.6290979,5.7428908,57.16,56.15,42.33,45.96,8.333333333333334,1,1,0,0,12,7,5,0,1259,892043.88,249971.34,761718.38,99367.328,3407.2344 -1519,1868,3349,-9,3347,3348,1,1,26,0,0,0,2,2,-9,0,3,7.8937869,7.69976,0,0,0,-1120.1672,0,2,2,2019,6,0,16,17,1,0,1,21.231014,21.231014,0,0,0,0,0,0,0,0,0,0,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,309,-6034.6572,-82547.742,0,0,1268.3955 -1520,1869,3350,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.7327442,8.5634947,8.2835608,0,0,-971.97021,0,2,2,2019,11,0,24,24,1,0,0,12.507796,12.507796,0,0,0,0,2,0,0,0,4.6793327,7.7229371,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,848,930206.38,529092.06,135059.28,0,2343.4963 -1521,1870,3351,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.6727881,6.3658171,0,0,-986.36719,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6923013,6.7354822,61.52,39.23,-9,-9,10,1,1,0,0,0,6,2,1,590,466358.78,211753.34,0,0,1374.0405 -1522,1871,3352,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.0757418,6.1080675,0,0,-1062.3176,0,2,2,2019,23,10,0,0,4,10,0,0,0,1,0,6.594234,0,0,1,1,0,0,5.8039174,39.74,26.56,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,614,737169.63,-3717.0693,0,0,938.8736 -1523,1872,3353,3354,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7704411,7.8112602,0,7,14,-45.846645,0,2,2,2019,13,1,30,32,1,1,0,8.365387,8.365387,0,0,0,0,0,0,0,0,0,0,35.56,52.74,48,57,3.333333333333333,1,1,0,0,12,10,5,0,282.5,1298154.3,1030368.3,502520.53,12078.311,6829.751 -1523,1872,3354,3353,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.8526535,9.8290262,0,7,-14,55.271408,0,-9,-9,2019,11,0,40,45,1,2,0,36.816963,36.816963,0,0,0,0,0,0,0,0,2.7843511,0,48,57,35.56,52.74,7,1,1,0,0,1,10,5,0,282.5,1298154.3,1030368.3,502520.53,12078.311,6829.751 -1524,1873,3355,3356,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,41,3,0,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,32.72,20.09,32.97,18.82,1.666666666666667,1,1,0,0,9,4,1,1,674,-2822.9199,0,0,0,1568.1102 -1524,1873,3356,3355,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,41,-3,0,0,3,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,42,1,1,0,0,0,32.97,18.82,32.72,20.09,1.666666666666667,1,1,1,0,0,4,1,1,674,-2822.9199,0,0,0,1568.1102 -1525,1874,3357,3358,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.6155291,6.7549119,60,4,-57.688774,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.340076,6.8331518,59.31,49.81,44.37,42.97,8.333333333333334,1,1,0,0,0,1,2,1,388.5,315779.44,202681.61,111552.02,0,1587.3882 -1525,1874,3358,3357,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.074791,6.2114148,60,-4,105.89228,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,5.3285041,5.969336,44.37,42.97,59.31,49.81,8.333333333333334,1,1,0,0,0,1,2,1,388.5,315779.44,202681.61,111552.02,0,1587.3882 -1526,1875,3359,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1065.1802,0,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52.66,56.94,-9,-9,6.666666666666667,4,2,0,0,0,7,1,0,706.33331,-51423.395,0,0,0,957.85773 -1526,1875,3360,-9,3359,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.27985,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,706.33331,-51423.395,0,0,0,957.85773 -1526,1875,3361,-9,3359,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.88434,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,1,0,706.33331,-51423.395,0,0,0,957.85773 -1527,1876,3362,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.2016401,8.9184799,0,0,0,-1005.3002,0,3,3,2019,3,0,38,44,1,0,0,29.211397,29.211397,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,1073,540752.25,456282.44,0,0,2846.0759 -1527,1877,3363,-9,3362,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8817577,7.8298755,0,0,0,-1021.8478,0,2,2,2019,12,0,38,24,1,2,1,10.279046,10.279046,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,1,934,178549.02,19936.398,0,0,1200.5377 -1527,1878,3364,-9,3362,-9,1,1,24,0,0,0,2,2,-9,0,4,7.6491947,7.8624687,0,0,0,-1024.611,0,2,-9,2019,11,0,37,37,1,2,1,6.8890896,6.8890896,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,3,1,896,0,0,0,0,1480.0835 -1528,1879,3365,3366,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,0,0,44,-3,85.265503,0,2,1,2019,10,0,0,0,4,0,0,0,0,1,3.1436796,0,21.724794,0,1,1,0,0,0,52.99,48.57,53,47,8.333333333333334,1,1,0,0,0,7,2,1,817,2894032.5,145268.95,2199640.5,0,1903.7134 -1528,1879,3366,3365,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.6305146,6.333765,3,3,19.3573,-9,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5417709,53,47,52.99,48.57,8,1,1,0,0,0,7,2,1,817,2894032.5,145268.95,2199640.5,0,1903.7134 -1529,1880,3367,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.3007011,8.1752262,0,0,0,-939.08221,0,2,2,2019,6,0,41,40,1,0,0,12.298689,12.298689,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,4,2,0,0,10,2,4,0,230,-1846.0383,0,80337.172,0,1741.6501 -1530,1881,3368,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,5.1923137,5.2224069,0,0,0,-1076.7465,-9,3,2,2019,13,2,40,0,1,2,0,.53185225,.53185225,0,0,0,0,0,1,1,0,0,0,41.95,57.9,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,3446,-162731.67,0,0,0,50.857597 -1531,1882,3369,-9,3370,3371,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.9986,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,610,40485.992,43081.207,290722,236758.55,2265.0662 -1531,1882,3370,3371,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.267767,7.419127,0,4,1,-20.844887,0,3,2,2019,6,0,23,25,1,0,0,7.1989727,7.1989727,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.23,47.51,8.333333333333334,1,1,0,0,8,2,3,1,610,40485.992,43081.207,290722,236758.55,2265.0662 -1531,1882,3371,3370,-9,-9,1,1,25,0,1,0,2,2,-9,0,2,8.104661,7.7435079,0,4,-1,-1.1795026,0,-9,-9,2019,6,0,50,40,1,0,0,6.5983052,6.5983052,0,0,0,0,0,1,1,0,0,0,53.23,47.51,57.33,53.46,8.333333333333334,1,1,0,0,6,2,3,1,610,40485.992,43081.207,290722,236758.55,2265.0662 -1532,1883,3372,-9,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1075.077,0,2,2,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,.93025416,0,12.08,36.93,-9,-9,0,4,2,0,0,0,8,1,0,452,-72713.625,0,0,0,806.65234 -1533,1884,3373,-9,3374,3375,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-977.58002,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,12,5,1,311,624941.13,124512.25,275086.5,96457.859,6764.7295 -1533,1884,3374,3375,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,0,7.7660866,8.02946,2,0,78.491646,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3824749,7.9116731,53.62,50.76,41.3,60.77,10,1,1,0,0,0,12,5,1,311,624941.13,124512.25,275086.5,96457.859,6764.7295 -1533,1884,3375,3374,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,0,9.4860334,8.9970074,2,0,47.478851,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5481591,9.3433228,41.3,60.77,53.62,50.76,8.333333333333334,1,1,0,0,3,12,5,1,311,624941.13,124512.25,275086.5,96457.859,6764.7295 -1533,1885,3376,-9,3374,3375,1,0,25,0,1,0,2,2,-9,0,5,0,0,0,0,0,-929.38312,0,2,1,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,1.107695,0,51.53,57.01,-9,-9,0,1,1,0,0,8,12,1,1,572,185737.8,0,0,0,142.37646 -1534,1886,3377,3379,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.5010109,8.6104994,0,16,2,-140.76157,0,-9,-9,2019,9,0,65,40,1,0,0,6.8021102,6.8021102,0,0,0,0,0,1,1,0,0,0,58.44,53.26,38.17,36.97,6.666666666666667,1,1,0,0,9,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 -1534,1886,3378,-9,3379,3377,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.5013,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 -1534,1886,3379,3377,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,8.4692974,8.0164452,0,16,-2,-19.948528,0,2,1,2019,14,2,47,35,1,2,0,12.99805,12.99805,0,0,0,0,0,1,1,0,0,0,38.17,36.97,58.44,53.26,6.666666666666667,1,1,0,0,9,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 -1534,1886,3380,-9,3379,3377,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.75757,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,294.5,265918.66,164573.33,212657.38,145623.75,3681.5874 -1535,1887,3381,3382,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,4.8925323,4.5342283,20,5,55.438705,-9,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7513947,4.7486281,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,4,9,3,1,951.5,1064404.8,571859.13,344186.69,0,2377.572 -1535,1887,3382,3381,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.3364015,8.0166216,7.7285638,20,-5,-9.3798838,-9,2,2,2019,11,0,30,0,1,0,0,5.9622536,5.9622536,0,0,0,0,0,1,1,0,6.3677931,7.3264136,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,9,9,3,1,951.5,1064404.8,571859.13,344186.69,0,2377.572 -1536,1888,3383,3386,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.5416985,8.5901423,0,19,0,115.18719,0,2,2,2019,7,0,41,40,1,0,0,14.849392,14.849392,0,0,0,0,0,1,1,0,4.3454328,0,54.1,59.11,54.2,57.49,10,1,1,0,0,10,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 -1536,1888,3384,-9,3386,3383,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.98682,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 -1536,1888,3385,-9,3386,3383,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-958.07404,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 -1536,1888,3386,3383,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.9820228,7.9655895,0,19,0,83.068077,0,2,2,2019,10,0,19,19,1,0,0,21.314955,21.314955,0,0,0,0,0,1,1,0,4.6038251,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,10,10,4,1,1460.25,1585473.3,845970.63,592805.31,100267.69,3053.064 -1537,1889,3387,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.9956,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.94,61.65,-9,-9,5,1,1,1,1,0,12,1,0,242,-70419.57,0,108448.67,0,1139.2836 -1538,1890,3388,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,5.184855,6.9435987,6.7799101,0,0,-1068.7858,0,2,3,2019,13,2,30,30,1,2,0,.88539279,.88539279,0,0,0,0,0,1,1,0,6.9813514,0,37.51,50.23,-9,-9,5,1,1,0,0,10,6,2,1,438,-93413.016,22084.018,95991.117,0,994.83075 -1538,1891,3389,-9,3388,-9,1,0,19,0,0,1,1,0,-9,0,4,0,0,0,0,0,-1025.1218,-9,2,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,37.17,52.94,-9,-9,5,1,1,0,0,2,6,1,1,694,-390967.41,0,0,0,0 -1539,1892,3390,3391,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,8.2164173,8.2734118,51,1,147.49902,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8726692,63.65,35.93,44.88,38.64,8.333333333333334,1,1,0,0,0,8,4,1,610.5,1574726.3,914835.63,542427.44,0,4719.333 -1539,1892,3391,3390,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.8180451,8.2049341,51,-1,58.491833,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,5.5787907,7.7970595,44.88,38.64,63.65,35.93,5,1,1,0,0,0,8,4,1,610.5,1574726.3,914835.63,542427.44,0,4719.333 -1540,1893,3392,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-984.70685,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.6414442,0,53.98,50.87,-9,-9,10,1,1,0,0,0,13,1,0,352,0,0,0,0,1887.1869 -1541,1894,3393,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.150538,7.5245361,6.8032813,0,0,-1023.5621,0,3,2,2019,7,0,20,20,1,0,0,2.6702127,2.6702127,0,0,0,0,0,1,1,0,3.5190196,7.3697467,55.3,55.6,-9,-9,8.333333333333334,1,1,0,0,12,8,3,1,177,165920.91,98362.781,0,0,1169.6799 -1542,1895,3394,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.6197138,7.9803815,0,0,0,-980.66187,0,3,3,2019,8,0,40,48,1,0,0,7.5517716,7.5517716,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,3,4,0,0,11,2,4,0,212,386110.91,425561.41,0,0,942.18561 -1543,1896,3395,3396,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.922657,8.7860622,0,9,2,-33.549725,0,2,2,2019,15,5,50,52,1,5,0,19.339247,19.339247,0,0,0,0,0,0,0,0,0,0,40.58,60.95,46.53,61.33,6.666666666666667,1,1,0,0,10,9,5,1,492,1145315.5,579400.5,350611.66,-1673.9272,4342.5674 -1543,1896,3396,3395,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.6753531,8.6944504,0,9,-2,63.314674,0,2,2,2019,10,0,50,55,1,0,0,9.4481487,9.4481487,0,0,0,0,0,0,0,0,0,0,46.53,61.33,40.58,60.95,8.333333333333334,1,1,0,0,10,9,5,1,492,1145315.5,579400.5,350611.66,-1673.9272,4342.5674 -1544,1897,3397,-9,3398,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.4372,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,667.5,119875.91,0,0,0,2185.7927 -1544,1897,3398,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.8217063,7.8207302,5.9943733,0,0,-1180.437,0,-9,-9,2019,12,0,37,37,1,0,0,6.8255939,6.8255939,0,0,0,0,7,1,1,0,5.837749,0,51.01,44.05,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,667.5,119875.91,0,0,0,2185.7927 -1545,1898,3399,3401,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,8,2,22.541904,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,52,55,45.81,42.3,8,1,1,1,0,0,13,2,1,1225,93762.367,0,168919.25,151554.95,1080.3967 -1545,1898,3400,-9,3401,3399,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1027.9119,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,.44605595,0,47,60,-9,-9,7,1,1,0,0,0,13,2,1,1225,93762.367,0,168919.25,151554.95,1080.3967 -1545,1898,3401,3399,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.3626852,7.4843049,0,8,-2,62.64085,0,2,2,2019,11,0,28,29,1,0,0,7.2009416,7.2009416,0,0,0,0,0,1,0,1,0,0,45.81,42.3,52,55,8.333333333333334,1,1,0,0,9,13,2,1,1225,93762.367,0,168919.25,151554.95,1080.3967 -1545,1899,3402,-9,3401,3399,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-974.0686,0,2,2,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,43.63,61.31,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,1342,-318575.03,0,0,0,36.072338 -1546,1900,3403,3404,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.1295962,5.3818355,52,-3,18.708334,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,14.997638,38.626884,137.45955,0,1,1,0,0,5.290236,38.24,25.76,38.16,44.66,6.666666666666667,1,1,0,0,0,13,2,1,532.5,188294.08,105150.24,129564.98,0,1786.6492 -1546,1900,3404,3403,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,4,3,-11.824059,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.16,44.66,38.24,25.76,6.666666666666667,1,1,0,0,0,13,2,1,532.5,188294.08,105150.24,129564.98,0,1786.6492 -1547,1901,3405,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.9179544,6.5445509,0,0,-933.53107,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.1397076,6.9738784,52,45,-9,-9,8,1,1,0,0,0,13,2,1,826,351595.38,29325.488,187806.13,0,1278.2552 -1547,1902,3406,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,3.6757855,3.7381148,0,0,-1024.2554,-9,2,2,2019,10,0,0,0,4,1,0,0,0,1,7.4401774,119.80509,64.208244,0,1,1,0,0,3.4877474,51,45,-9,-9,8,1,1,0,0,0,13,2,1,123,-350227.16,0,0,0,702.28357 -1548,1903,3407,3408,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,55,5,-.97338074,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,70.726982,0,0,1,1,0,0,0,63.63,17.19,54.2,57.49,8.333333333333334,1,1,0,0,0,5,2,1,311,382947.53,308559.25,123492.41,0,2270.6516 -1548,1903,3408,3407,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.0694742,7.2214465,55,-5,4.8336921,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,1,0,2.2678211,7.5254354,54.2,57.49,63.63,17.19,8.333333333333334,1,1,0,0,0,5,2,1,311,382947.53,308559.25,123492.41,0,2270.6516 -1549,1904,3409,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.7759132,8.7379379,0,0,0,-912.86481,0,-9,-9,2019,10,0,43,44,1,0,0,16.629885,16.629885,0,0,0,0,0,0,0,0,6.7790227,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,714,556446.13,-79926.148,164779.61,95637.648,1844.9812 -1550,1905,3410,3411,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,9.9591284,9.819747,47,1,-63.06501,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.7680511,10.201912,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,0,10,5,1,459,2238628.5,1232813,364548.34,0,12327.84 -1550,1905,3411,3410,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.8612523,4.7948537,47,-1,14.423094,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4331517,4.8136611,54.79,55.86,57.16,56.15,10,1,1,0,0,0,10,5,1,459,2238628.5,1232813,364548.34,0,12327.84 -1551,1906,3412,3413,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-2,88.712669,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6394832,0,45.32,61.53,46.31,56.45,8.333333333333334,1,1,0,0,7,6,2,1,1202,692402.63,353587.03,261504.53,0,1826.4009 -1551,1906,3413,3412,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.2187176,7.3895431,51,2,3.3948567,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.560936,46.31,56.45,45.32,61.53,8.333333333333334,1,1,0,0,2,6,2,1,1202,692402.63,353587.03,261504.53,0,1826.4009 -1552,1907,3414,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.8210683,7.5648198,0,0,-973.97406,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.122407,7.6279182,60.7,47.65,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1003,-34749.391,0,0,0,2303.3237 -1553,1908,3415,3416,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,6.9293294,6.7063627,0,34,0,31.651461,0,3,3,2019,11,0,8,12,1,0,0,16.327662,16.327662,0,0,0,0,0,0,0,0,5.687448,0,54.1,59.11,43.84,57.1,8.333333333333334,1,1,0,0,8,12,4,1,2756,345137.44,-13971.292,156324.34,32113.398,2243.4756 -1553,1908,3416,3415,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.8335018,8.8968353,0,33,0,79.531921,0,2,2,2019,11,0,35,40,1,0,0,23.879267,23.879267,0,0,0,0,0,0,0,0,0,0,43.84,57.1,54.1,59.11,6.666666666666667,1,1,0,0,10,12,4,1,2756,345137.44,-13971.292,156324.34,32113.398,2243.4756 -1553,1909,3417,-9,3415,3416,1,1,24,0,0,0,1,1,0,0,3,0,0,0,0,0,-1092.5122,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.8324735,0,43.4,55.59,-9,-9,3.333333333333333,1,1,0,0,2,12,1,1,663,-340546.78,102684.29,0,0,217.99454 -1553,1910,3418,-9,3415,3416,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-953.16058,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.08,60.89,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,963,44607.453,0,0,0,0 -1553,1911,3419,-9,3415,3416,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1040.7621,-9,1,1,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,541,-24794.51,0,0,0,0 -1554,1912,3420,-9,3422,3421,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-977.43658,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1064.6666,803866.06,4100.7759,435221.59,0,3655.9033 -1554,1912,3421,3422,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.0764046,8.9827232,0,6,0,-49.174187,0,2,2,2019,6,0,42,36,1,0,0,17.59362,17.59362,0,0,0,0,0,1,1,0,0,0,58.15,52.91,47.58,63.43,8.333333333333334,1,1,0,0,7,2,5,1,1064.6666,803866.06,4100.7759,435221.59,0,3655.9033 -1554,1912,3422,3421,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,7.2487369,7.1426888,0,6,0,-21.659782,0,3,2,2019,10,0,8,35,1,0,0,17.108559,17.108559,0,0,0,0,0,1,1,0,2.9267726,0,47.58,63.43,58.15,52.91,5,1,1,0,0,7,2,5,1,1064.6666,803866.06,4100.7759,435221.59,0,3655.9033 -1555,1913,3423,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.8304572,8.5304546,6.6931481,0,0,-1029.0773,0,2,2,2019,9,0,37,37,1,0,0,8.7678185,8.7678185,0,0,0,0,2,0,0,0,6.0025406,6.5946484,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,9,11,4,1,281,-50662.66,0,127371.2,6056.8521,2137.2805 -1556,1914,3424,-9,3426,3427,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.2146,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,682.25,188580.06,0,0,0,2115.9993 -1556,1914,3425,-9,3426,3427,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5587,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,682.25,188580.06,0,0,0,2115.9993 -1556,1914,3426,3427,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,2.7019541,2.7001534,3,-1,61.767948,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.0718973,0,56.35,48.3,49,58,10,1,1,0,0,1,7,3,1,682.25,188580.06,0,0,0,2115.9993 -1556,1914,3427,3426,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,8.149066,8.1988726,0,3,1,2.9591086,0,-9,-9,2019,10,0,39,48,1,1,0,8.1797724,8.1797724,0,0,0,0,0,1,1,0,0,0,49,58,56.35,48.3,7,1,1,0,0,1,7,3,1,682.25,188580.06,0,0,0,2115.9993 -1557,1915,3428,3429,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.0196586,6.0995827,59,3,37.613461,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,.16508499,5.7558789,21.37,45.62,40.92,23.42,6.666666666666667,1,1,0,0,0,12,3,1,919.5,1077600.4,241697.38,346130.56,0,10037.269 -1557,1915,3429,3428,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.6364441,8.0177326,59,-3,40.40712,0,3,-9,2019,21,9,0,0,4,9,0,0,0,1,0,1.0168293,0,2,1,1,0,9.8678732,7.7984014,40.92,23.42,21.37,45.62,6.666666666666667,1,1,0,0,0,12,3,1,919.5,1077600.4,241697.38,346130.56,0,10037.269 -1558,1916,3430,3431,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.1932507,8.401969,0,17,3,31.896385,0,2,2,2019,10,0,40,40,1,0,0,11.623669,11.623669,0,0,0,0,0,1,1,0,3.791307,0,51.96,42.31,52.97,53.97,6.666666666666667,1,1,0,0,11,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 -1558,1916,3431,3430,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,0,0,0,17,-3,-19.735308,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.97,53.97,51.96,42.31,8.333333333333334,1,1,0,0,0,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 -1558,1916,3432,-9,3431,3430,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.253,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 -1558,1916,3433,-9,3431,3430,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.89215,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,322.25,-91286.273,13147.009,0,0,1788.7397 -1559,1917,3434,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6366062,8.6036091,0,0,0,-873.32544,0,2,1,2019,3,0,43,50,1,0,0,19.006565,19.006565,0,0,0,0,14.5,1,1,0,0,0,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1939,905922.06,674560.75,301419.47,0,2148.5691 -1560,1918,3435,3436,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,5.5438762,6.1550059,37,-3,26.686682,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,13.772505,0,120,1,1,0,4.4527197,5.8399749,35.32,46.42,55,43,8.333333333333334,1,1,0,0,0,9,2,1,700.5,244816.86,13444.213,374812.84,0,1799.7439 -1560,1918,3436,3435,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.2213125,6.3471594,41,3,6.717495,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.1635385,5.9430671,55,43,35.32,46.42,8,1,1,0,0,0,9,2,1,700.5,244816.86,13444.213,374812.84,0,1799.7439 -1561,1919,3437,3438,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,32,-4,55.703236,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.6065698,0,51.83,57.2,56.64,48.33,8.333333333333334,1,1,0,0,10,7,5,1,277,2869702.5,1852518,631379.81,0,5625.2163 -1561,1919,3438,3437,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,9.059103,9.0013733,32,4,97.324219,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0737233,9.130456,56.64,48.33,51.83,57.2,8.333333333333334,1,1,0,0,0,7,5,1,277,2869702.5,1852518,631379.81,0,5625.2163 -1562,1920,3439,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,0,0,0,0,-992.12061,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9751804,0,54.63,58.83,-9,-9,10,1,1,0,0,8,12,2,1,328,264635.91,0,165031.31,0,380.57877 -1563,1921,3440,-9,3443,3444,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.78821,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 -1563,1921,3441,-9,3443,3444,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.05585,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 -1563,1921,3442,-9,3443,3444,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.5552,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 -1563,1921,3443,3444,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,7.1888809,7.3766174,0,13,-12,75.613716,0,3,-9,2019,7,0,24,44,1,0,0,6.392179,6.392179,0,0,0,0,0,1,1,0,0,0,51.83,57.2,19.98,32.97,8.333333333333334,1,1,0,0,7,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 -1563,1921,3444,3443,-9,-9,1,1,57,0,3,0,2,2,-9,0,1,0,0,0,7,12,-77.455849,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.98,32.97,51.83,57.2,3.333333333333333,1,1,1,0,8,11,2,1,1140,691302.25,374125.13,223601.38,0,963.67224 -1564,1922,3445,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2012482,8.4654493,0,0,0,-925.54755,0,-9,2,2019,7,0,40,42,1,0,0,12.859653,12.859653,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1349,-211115.09,22410.988,0,0,1850.4489 -1565,1923,3446,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.5732417,8.1189022,0,0,-879.80872,0,2,3,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,5.4276876,7.6429243,9.16,58.44,-9,-9,1.666666666666667,1,1,0,0,5,13,3,1,257,-24188.836,0,101304.01,41466.949,1372.9424 -1566,1924,3447,3448,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.5601721,4.9442234,61,-3,-208.62456,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.5275149,52,45,51.48,42.44,8,1,1,0,0,0,10,2,1,1492.5,628449.13,214677.8,285296.13,0,1170.8009 -1566,1924,3448,3447,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,5.7847538,6.2189684,61,3,39.280396,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8138227,6.1880665,51.48,42.44,52,45,10,1,1,0,0,0,10,2,1,1492.5,628449.13,214677.8,285296.13,0,1170.8009 -1567,1925,3449,3450,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.4629221,8.2151318,0,4,-4,22.824606,0,2,-9,2019,29,12,40,43,1,12,0,11.009955,11.009955,0,0,0,0,2,0,0,0,.70189512,0,23.38,42.28,29.76,38.13,1.666666666666667,1,1,0,0,10,9,4,1,631.5,377265.91,85963.633,613330.38,210350.19,2031.1584 -1567,1925,3450,3449,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.9228148,7.4954853,0,4,4,3.7550159,0,-9,-9,2019,25,11,40,42,1,11,0,6.6807046,6.6807046,0,0,0,0,0,0,0,0,0,0,29.76,38.13,23.38,42.28,3.333333333333333,1,1,0,1,2,9,4,1,631.5,377265.91,85963.633,613330.38,210350.19,2031.1584 -1568,1926,3451,-9,3452,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-889.27521,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,42,1,1,0,0,0,44.83,55.13,-9,-9,10,1,1,0,0,0,12,1,0,1294.5,0,0,0,0,983.21667 -1568,1926,3452,-9,-9,-9,1,0,33,0,0,0,3,3,-9,1,1,0,0,0,0,0,-993.836,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,24.13,27.24,-9,-9,3.333333333333333,1,1,0,0,4,12,1,0,1294.5,0,0,0,0,983.21667 -1569,1927,3453,3454,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.6577425,8.774991,0,5,0,-10.776371,0,3,2,2019,8,0,45,45,1,0,0,18.321733,18.321733,0,0,0,0,0,1,1,0,0,0,54.97,47.63,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1239.3334,147680.42,59101.129,293542.19,36808.617,3063.7339 -1569,1927,3454,3453,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.4719968,7.3425851,0,5,0,-22.536016,0,3,3,2019,10,0,30,28,1,0,0,6.5364804,6.5364804,0,0,0,0,2,1,1,0,0,0,57.16,56.15,54.97,47.63,8.333333333333334,1,1,0,0,11,10,5,1,1239.3334,147680.42,59101.129,293542.19,36808.617,3063.7339 -1569,1927,3455,-9,3454,3453,1,1,17,0,0,1,3,0,0,0,3,0,0,0,0,0,-902.23694,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.47,56,-9,-9,5,1,1,0,0,12,10,5,1,1239.3334,147680.42,59101.129,293542.19,36808.617,3063.7339 -1569,1928,3456,-9,3454,3453,1,1,27,0,0,0,2,2,-9,0,4,8.3743715,8.0348692,0,0,0,-941.47217,0,2,2,2019,11,0,40,41,1,0,1,11.581611,11.581611,0,0,0,0,0,1,1,0,0,0,44.72,56.46,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,141,-141663.2,36223.281,0,0,1453.073 -1570,1929,3457,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.842061,8.8071842,0,0,0,-1042.0286,0,2,1,2019,15,5,35,40,1,5,0,21.243876,21.243876,0,0,0,0,2,0,0,0,3.9413795,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,347,356066.63,117994.22,0,0,2133.8667 -1571,1930,3458,3459,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,0,0,47,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,45.61,49,47,5,1,1,0,0,0,12,1,1,614.5,280578.25,0,164034.13,0,1075.2675 -1571,1930,3459,3458,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,-4,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.4110379,0,49,47,45.26,45.61,5,1,1,0,0,7,12,1,1,614.5,280578.25,0,164034.13,0,1075.2675 -1572,1931,3460,3461,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3463993,8.5305529,0,1,1,-42.540062,-9,-9,-9,2019,10,1,38,0,1,1,0,13.440677,13.440677,0,0,0,0,0,0,0,0,0,0,46.5,58.26,54.2,57.49,8.333333333333334,1,1,0,0,8,13,5,0,1612.5,501908.28,170321.73,294128.44,55309.453,3130.0452 -1572,1931,3461,3460,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5606298,8.4060297,0,1,-1,41.009163,-9,3,2,2019,6,0,37,0,1,0,0,15.506346,15.506346,0,0,0,0,0,0,0,0,0,0,54.2,57.49,46.5,58.26,8.333333333333334,1,1,0,0,8,13,5,0,1612.5,501908.28,170321.73,294128.44,55309.453,3130.0452 -1573,1932,3462,3463,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.8647594,5.2585273,52,1,56.371117,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9784126,53.14,45.74,56.37,40.62,8.333333333333334,1,1,0,0,0,13,2,1,545.5,739949.75,388183.66,203171.47,0,1955.0178 -1573,1932,3463,3462,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.4379158,7.2842355,52,-1,152.69867,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6168509,56.37,40.62,53.14,45.74,10,1,1,0,0,3,13,2,1,545.5,739949.75,388183.66,203171.47,0,1955.0178 -1574,1933,3464,3466,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,8.019846,7.9839964,0,6,0,21.245546,0,2,2,2019,14,4,24,23,1,4,0,17.165543,17.165543,0,0,0,0,0,1,1,0,0,0,34.49,53,41.17,59.31,8.333333333333334,1,1,0,0,9,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 -1574,1933,3465,-9,3464,3466,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.23932,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 -1574,1933,3466,3464,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,9.3700247,9.3548107,0,6,0,-39.026577,0,-9,-9,2019,8,0,44,57,1,0,0,37.487988,37.487988,0,0,0,0,0,1,1,0,0,0,41.17,59.31,34.49,53,6.666666666666667,1,1,0,0,7,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 -1574,1933,3467,-9,3464,3466,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.6976,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,370425.34,39528.289,447221.5,277562.5,4734.3945 -1575,1934,3468,3469,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,8.1604452,8.1230621,0,8,2,-3.3541329,0,3,2,2019,9,0,38,38,1,0,0,8.6229115,8.6229115,0,0,0,0,0,0,0,0,0,0,57.33,53.46,51.83,57.2,6.666666666666667,1,1,0,0,9,10,5,1,1725,341330,142412.59,173368.88,104573.73,3111.7048 -1575,1934,3469,3468,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4526815,8.5041246,0,8,-2,79.476433,0,-9,-9,2019,9,0,41,41,1,0,0,13.210586,13.210586,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.33,53.46,6.666666666666667,1,1,0,0,9,10,5,1,1725,341330,142412.59,173368.88,104573.73,3111.7048 -1576,1935,3470,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.0146236,8.2707481,0,0,0,-967.22845,0,-9,-9,2019,11,1,40,40,1,1,0,9.5119505,9.5119505,0,0,0,0,0,0,0,0,.67057675,0,56.02,37.81,-9,-9,8.333333333333334,1,1,0,0,3,10,4,0,764,-173484.55,-67687.148,0,0,713.92999 -1577,1936,3471,3472,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.6823277,8.1420183,3,-2,23.721596,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0768042,7.6899719,61.27,43.2,64.58,33.62,10,1,1,0,0,0,10,4,0,779.5,1553700.1,803210.5,392921.56,0,5072.2549 -1577,1936,3472,3471,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.9190702,8.1535406,3,2,-85.225563,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2090998,7.9732523,64.58,33.62,61.27,43.2,10,1,1,0,0,0,10,4,0,779.5,1553700.1,803210.5,392921.56,0,5072.2549 -1578,1937,3473,-9,3474,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.38165,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1119,243588.17,0,0,0,1928.7754 -1578,1937,3474,-9,-9,-9,1,0,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-830.88623,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49.75,28.9,-9,-9,5,1,1,0,0,0,12,1,0,1119,243588.17,0,0,0,1928.7754 -1579,1938,3475,3476,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,0,0,0,2,2,0,-9,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,37.99,40.59,5,2,3,1,0,0,2,1,0,977,1574.7813,0,0,0,1863.3414 -1579,1938,3476,3475,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,0,0,0,2,-2,0,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.99,40.59,39.15,41.42,5,1,1,1,0,13,2,1,0,977,1574.7813,0,0,0,1863.3414 -1579,1938,3477,-9,3476,3475,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-905.07324,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,4,2,-9,0,0,2,1,0,977,1574.7813,0,0,0,1863.3414 -1580,1939,3478,3479,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,4,3,-43.6926,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.445869,0,39.63,36.06,58.15,52.91,5,1,1,0,0,0,6,3,1,228,1095617,686965.63,191518.88,0,1618.6697 -1580,1939,3479,3478,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.1094294,8.0806942,0,13,-3,27.531059,0,-9,-9,2019,9,0,40,40,1,0,0,7.5908184,7.5908184,0,0,0,0,0,1,1,0,5.150497,0,58.15,52.91,39.63,36.06,10,1,1,0,0,11,6,3,1,228,1095617,686965.63,191518.88,0,1618.6697 -1581,1940,3480,-9,3481,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1030.0964,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,1090,20390.809,0,0,0,2195.2671 -1581,1940,3481,-9,-9,-9,1,0,33,0,4,0,2,2,-9,0,3,6.5833178,7.905467,7.0200377,0,0,-977.30042,0,3,-9,2019,24,12,50,50,1,12,0,2.3817432,2.3817432,0,0,0,0,0,1,1,0,7.5397491,0,23.64,60.82,-9,-9,5,1,1,0,0,5,5,2,0,1090,20390.809,0,0,0,2195.2671 -1581,1940,3482,-9,3481,-9,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1070.0044,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1090,20390.809,0,0,0,2195.2671 -1581,1940,3483,-9,3481,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-997.50275,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,1090,20390.809,0,0,0,2195.2671 -1582,1941,3484,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.6366863,7.549829,0,0,-928.50012,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5034957,59.37,44.13,-9,-9,10,1,1,0,0,0,10,3,1,636,765604.31,168942.41,386142.97,0,1690.1656 -1583,1942,3485,3486,-9,-9,1,1,39,0,2,0,3,3,-9,0,3,8.6645832,8.3432541,0,1,0,76.931343,-9,-9,-9,2019,9,0,39,0,1,0,0,20.615194,20.615194,0,0,0,0,0,1,1,0,0,0,54.37,54.8,33.87,58.6,8.333333333333334,1,1,0,0,9,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 -1583,1942,3486,3485,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.9254003,7.9623103,0,1,0,-56.9417,-9,2,2,2019,17,6,23,0,1,6,0,12.610044,12.610044,0,0,0,0,2,1,1,0,0,0,33.87,58.6,54.37,54.8,3.333333333333333,1,1,0,1,9,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 -1583,1942,3487,-9,3486,3485,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.9755,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 -1583,1942,3488,-9,3486,3485,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.4653,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,703.75,295225.03,142321.3,154095.2,-8691.2617,3948.8374 -1584,1943,3489,-9,3490,3491,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-881.12189,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,958,285324.59,26064.209,158810.61,72294.094,2391.2561 -1584,1943,3490,3491,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.6693897,7.7113557,0,10,-5,10.290152,0,-9,-9,2019,8,0,30,32,1,0,0,7.8356576,7.8356576,0,0,0,0,0,1,1,0,0,0,46.16,58.62,45.16,16.35,8.333333333333334,1,1,0,0,12,4,4,1,958,285324.59,26064.209,158810.61,72294.094,2391.2561 -1584,1943,3491,3490,-9,-9,1,1,34,0,1,0,2,2,-9,0,2,7.8911829,7.8842425,0,10,5,10.048791,0,2,2,2019,12,1,40,45,1,1,0,8.0683002,8.0683002,0,0,0,0,0,1,1,0,0,0,45.16,16.35,46.16,58.62,1.666666666666667,1,1,0,0,9,4,4,1,958,285324.59,26064.209,158810.61,72294.094,2391.2561 -1585,1944,3492,3493,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1959553,8.0448589,0,18,-2,30.003397,0,3,3,2019,8,0,43,38,1,0,0,7.3740554,7.3740554,0,0,0,0,2,0,0,0,0,0,52.43,55.57,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,1013,314555.56,64271.621,108201.72,13134.828,2881.8286 -1585,1944,3493,3492,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.0659647,8.086792,0,18,2,-61.121395,0,2,2,2019,6,0,37,38,1,0,0,10.530246,10.530246,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.43,55.57,8.333333333333334,1,1,0,0,10,2,4,1,1013,314555.56,64271.621,108201.72,13134.828,2881.8286 -1586,1945,3494,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.4911537,9.4926462,0,0,0,-956.91162,0,2,2,2019,11,0,43,40,1,0,0,31.172352,31.172352,0,0,0,0,0,0,0,0,7.0139685,0,56.07,49.95,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,347,2751139,2410235,308523.13,131789.47,5569.2378 -1587,1946,3495,3496,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,57,-1,34.019146,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,61.12,27.63,36.38,20.04,10,1,1,0,0,0,13,2,1,1157.5,500935.38,129239.42,0,0,1152.3318 -1587,1946,3496,3495,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,4.7731714,5.0695925,57,1,-23.712193,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,5.0552616,36.38,20.04,61.12,27.63,5,1,1,0,0,0,13,2,1,1157.5,500935.38,129239.42,0,0,1152.3318 -1588,1947,3497,3498,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4741478,7.5512886,44,-1,-105.99113,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.7717876,42.37,45.38,57.33,53.46,6.666666666666667,1,1,0,0,5,12,3,1,602,1501680.3,1054374.9,174787.06,0,1541.6021 -1588,1947,3498,3497,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.6272922,7.3678041,44,1,46.39534,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.277009,7.4807587,57.33,53.46,42.37,45.38,8.333333333333334,1,1,0,0,7,12,3,1,602,1501680.3,1054374.9,174787.06,0,1541.6021 -1589,1948,3499,3500,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.1337357,9.159235,0,10,1,43.278954,0,2,2,2019,8,0,38,38,1,0,0,30.204098,30.204098,0,0,0,0,0,0,0,0,3.8540542,0,51.24,58.84,49.63,54.22,8.333333333333334,1,1,0,0,11,2,5,1,819.5,27705.18,39522.938,277737.88,185026.98,5053.0303 -1589,1948,3500,3499,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.6718378,8.7640619,0,10,-1,-41.845566,0,-9,-9,2019,8,0,35,37,1,0,0,18.069395,18.069395,0,0,0,0,0,0,0,0,2.9096847,0,49.63,54.22,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,819.5,27705.18,39522.938,277737.88,185026.98,5053.0303 -1590,1949,3501,-9,3503,3502,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-933.69696,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,871.33331,131384.33,47504.922,165333.2,83098.047,3180.2864 -1590,1949,3502,3503,-9,-9,1,1,39,1,1,0,1,1,1,0,4,8.1608791,8.319706,0,8,0,-76.525856,-9,-9,-9,2019,11,1,38,0,1,1,0,9.0293503,9.0293503,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,1,871.33331,131384.33,47504.922,165333.2,83098.047,3180.2864 -1590,1949,3503,3502,-9,-9,1,0,39,1,1,0,1,1,-9,0,4,8.2196674,8.4476557,0,8,0,-137.83055,0,2,1,2019,5,0,30,53,1,0,0,13.960859,13.960859,0,0,0,0,0,0,0,0,3.1614404,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,1,871.33331,131384.33,47504.922,165333.2,83098.047,3180.2864 -1591,1950,3504,-9,3506,3507,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.349,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 -1591,1950,3505,-9,3506,3507,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.98602,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 -1591,1950,3506,3507,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.4354067,8.4130926,0,7,0,139.42247,0,3,3,2019,9,1,28,30,1,1,0,16.161985,16.161985,0,0,0,0,0,1,1,0,0,0,49.92,52.49,49.27,56.95,8.333333333333334,1,1,0,0,8,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 -1591,1950,3507,3506,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.7093601,8.6270342,0,7,0,146.00859,0,-9,-9,2019,14,4,40,40,1,4,0,18.951576,18.951576,0,0,0,0,0,1,1,0,1.0736536,0,49.27,56.95,49.92,52.49,8.333333333333334,1,1,0,0,8,9,5,1,671,193190.13,261881.25,306626.38,250249.34,4393.4707 -1592,1951,3508,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.2928133,7.1591315,0,0,-1041.6213,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.4565105,7.4977174,52.78,32.31,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,949,195288.69,152628.33,213354.08,0,1434.7836 -1593,1952,3509,-9,-9,-9,1,1,36,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1035.1875,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,5.48,1,1,0,0,0,25.95,58.73,-9,-9,5,1,1,0,1,5,13,1,1,458,0,0,0,0,812.27979 -1593,1953,3510,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-989.01007,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.8476663,17.189852,63.240147,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,1,1,511,-151360.81,117835.56,225053.78,0,1096.9152 -1594,1954,3511,-9,3512,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.61285,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,603.5,-63938.262,21986.195,0,0,1474.5781 -1594,1954,3512,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,7.9411497,7.8375235,0,0,0,-892.6601,0,2,2,2019,8,0,40,40,1,0,0,7.2252164,7.2252164,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,603.5,-63938.262,21986.195,0,0,1474.5781 -1595,1955,3513,3514,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.0260134,8.651207,0,26,5,42.376369,0,3,3,2019,8,0,43,43,1,0,0,20.943407,20.943407,0,0,0,0,0,1,1,0,1.6138885,0,62.66,52.4,46.51,53.53,8.333333333333334,1,1,0,0,8,5,5,1,568.5,162143.84,320767.88,185963.08,159436.88,4229.9683 -1595,1955,3514,3513,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.3894858,7.7905846,0,26,-5,67.201317,0,3,3,2019,11,1,22,30,1,1,0,7.6677179,7.6677179,0,0,0,0,0,1,1,0,0,0,46.51,53.53,62.66,52.4,5,1,1,0,0,10,5,5,1,568.5,162143.84,320767.88,185963.08,159436.88,4229.9683 -1596,1956,3515,3516,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,5,1,-74.475311,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,8.2920866,0,49.29,38.53,43.66,50.25,6.666666666666667,1,1,0,0,9,11,4,1,1050.5,1226470.5,738725.5,344396.31,0,3449.7007 -1596,1956,3516,3515,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.5806313,8.8756857,0,5,-1,-4.0429006,0,2,2,2019,8,0,37,37,1,0,0,21.439016,21.439016,0,0,0,0,0,0,0,0,0,0,43.66,50.25,49.29,38.53,8.333333333333334,1,1,0,0,9,11,4,1,1050.5,1226470.5,738725.5,344396.31,0,3449.7007 -1597,1957,3517,-9,3518,3519,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.4279,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1024.3334,100028.2,-96368.313,0,0,1655.5989 -1597,1957,3518,3519,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,5.2080841,5.2259264,0,6,2,9.5367899,0,2,3,2019,12,0,15,15,1,0,0,1.2343352,1.2343352,0,0,0,0,0,1,1,0,0,0,44.34,44.44,53.59,49.64,5,1,1,0,0,3,2,3,0,1024.3334,100028.2,-96368.313,0,0,1655.5989 -1597,1957,3519,3518,-9,-9,1,1,26,0,1,0,2,2,-9,0,3,7.9126859,7.9389358,0,6,-2,39.884323,0,-9,-9,2019,7,0,43,39,1,0,0,6.97401,6.97401,0,0,0,0,0,1,1,0,0,0,53.59,49.64,44.34,44.44,8.333333333333334,1,1,0,0,5,2,3,0,1024.3334,100028.2,-96368.313,0,0,1655.5989 -1598,1958,3520,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9220905,8.1750078,0,0,0,-920.56219,0,3,2,2019,6,0,44,39,1,0,0,6.3594589,6.3594589,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,4405,317237.66,67810.125,277110.91,0,524.85657 -1599,1959,3521,3522,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,37,7,-41.822147,0,3,3,2019,11,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.22,37.61,50,49,5,1,1,0,0,11,1,3,1,1140.5,883865.56,94697.984,204530.16,0,1854.249 -1599,1959,3522,3521,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.8591738,7.8622823,0,38,-7,50.997623,0,2,3,2019,10,0,37,38,1,1,0,7.262599,7.262599,0,0,0,0,0,1,1,0,0,0,50,49,54.22,37.61,7,1,1,0,0,10,1,3,1,1140.5,883865.56,94697.984,204530.16,0,1854.249 -1600,1960,3523,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.4211674,8.1664352,0,0,0,-1106.923,0,2,-9,2019,14,3,60,54,1,3,0,5.3664627,5.3664627,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,5,1,1,0,1,5,11,4,0,506,294488.06,97891.719,0,0,1215.0264 -1600,1961,3524,-9,3523,-9,1,1,23,0,0,0,2,2,-9,0,4,8.4440489,7.9742193,0,0,0,-1090.2268,0,2,-9,2019,11,1,40,40,1,1,1,9.9814949,9.9814949,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,1,11,4,0,379,-542078.75,-74175.922,39568.074,39561.359,1117.048 -1600,1962,3525,-9,3523,-9,1,0,22,0,0,0,2,2,-9,0,4,7.931808,7.9386802,0,0,0,-1011.8856,0,3,-9,2019,20,8,50,50,1,8,1,5.9788189,5.9788189,0,0,0,0,0,0,0,0,0,0,48.77,57.64,-9,-9,6.666666666666667,1,1,0,0,6,11,4,0,379,-432850,-29130.053,0,0,1065.6577 -1601,1963,3526,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.5621948,8.7141705,0,0,0,-946.56506,0,2,2,2019,6,1,38,43,1,1,0,18.840628,18.840628,0,0,0,0,0,0,0,0,2.2346897,0,53.29,53.96,-9,-9,6.666666666666667,1,1,0,0,12,7,5,0,301,152596.14,7556.3594,311818.88,102962.04,2241.7173 -1602,1964,3527,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,0,5.8608851,5.9127913,0,0,-1061.0009,0,-9,-9,2019,21,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,8.1030531,6.4343686,33.88,36.39,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,870,459614.53,0,114464.63,0,2247.6536 -1603,1965,3528,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-880.59485,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,-9,-9,7,1,1,1,0,0,13,1,0,203,206626.94,0,0,0,191.37674 -1604,1966,3529,3530,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.6692986,4.6078496,48,0,-6.8603692,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.7133608,61.04,39.41,60.12,54.8,8.333333333333334,1,1,0,0,0,4,2,1,469,551844.94,438207.06,0,0,1996.3789 -1604,1966,3530,3529,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6841655,7.0849543,48,0,41.697372,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4174104,6.8972926,60.12,54.8,61.04,39.41,8.333333333333334,1,1,0,0,7,4,2,1,469,551844.94,438207.06,0,0,1996.3789 -1605,1967,3531,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.4403458,8.17488,0,0,0,-984.98938,-9,2,2,2019,8,0,45,0,1,0,0,15.423911,15.423911,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,314,195472.06,32189.938,0,0,2677.9995 -1605,1967,3532,-9,3531,-9,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1003.2682,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.90098423,0,45,59,-9,-9,7,4,2,0,0,0,5,5,1,314,195472.06,32189.938,0,0,2677.9995 -1606,1968,3533,3534,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.6343822,8.8962317,0,7,3,-14.633622,0,2,3,2019,10,0,50,50,1,0,0,14.451515,14.451515,0,0,0,0,0,0,0,0,7.1481037,0,57.06,57.76,54.62,53.53,8.333333333333334,1,1,0,0,8,11,4,1,736,309616.31,239217.03,108139.3,0,4147.3633 -1606,1968,3534,3533,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-87.814186,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.62,53.53,57.06,57.76,10,1,1,0,1,2,11,4,1,736,309616.31,239217.03,108139.3,0,4147.3633 -1607,1969,3535,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,7.7066288,7.9953246,5.352879,0,0,-920.13287,0,3,3,2019,6,0,40,42,1,0,0,7.841526,7.841526,0,0,0,0,0,1,1,0,4.1416168,5.5788903,62.39,56.71,-9,-9,10,1,1,0,0,8,4,4,0,379,304699.91,384430.56,0,0,1060.1763 -1608,1970,3536,3537,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.8399076,8.3785009,0,6,7,39.220665,0,-9,-9,2019,10,0,37,37,1,0,0,7.7432008,7.7432008,0,0,0,0,2,0,0,0,2.2955043,0,48.53,58.91,54.13,48.04,6.666666666666667,1,1,0,0,9,1,4,1,663,847534.88,871346.19,0,0,2745.9631 -1608,1970,3537,3536,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.2303247,8.0981817,0,6,-7,-19.111074,0,3,3,2019,11,1,37,37,1,1,0,11.316131,11.316131,0,0,0,0,2,0,0,0,3.2654138,0,54.13,48.04,48.53,58.91,8.333333333333334,1,1,0,0,9,1,4,1,663,847534.88,871346.19,0,0,2745.9631 -1609,1971,3538,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.8334455,6.2812271,0,0,-1013.6894,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,4.4683352,0,0,1,1,0,.14838615,6.2232776,66.54000000000001,22.28,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,1078,-132147.33,68565.961,0,0,1409.5845 -1609,1972,3539,-9,3538,-9,1,1,54,0,0,0,2,2,-9,0,3,7.0758772,6.8998256,0,0,0,-1011.0545,0,3,-9,2019,10,0,61,40,1,1,0,1.9413992,1.9413992,0,0,0,0,0,1,1,0,6.3584075,0,50,49,-9,-9,7,1,1,0,0,1,1,2,0,482,-201244.56,0,0,0,797.74481 -1610,1973,3540,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.487174,8.3473883,7.8815074,0,0,-1007.102,0,3,2,2019,7,0,12,8,1,0,0,5.8561831,5.8561831,0,0,0,0,7,1,1,0,8.1403933,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,380,1403023.6,1355276.1,165265.77,0,2177.1333 -1610,1974,3541,-9,3540,-9,1,0,26,0,0,0,2,2,-9,0,4,6.1311002,6.1610394,0,0,0,-983.49554,0,2,-9,2019,8,0,11,0,1,0,0,5.5938988,5.5938988,0,0,0,0,0,1,1,0,0,0,56.97,48.48,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,312,89992.805,0,0,0,369.17508 -1611,1975,3542,3543,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,10,-4,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,18.359634,0,7,1,1,0,0,0,49.2,27.29,40.86,47.62,5,1,1,0,0,0,13,1,0,334,354812.06,25433.236,225891.23,0,2037.8425 -1611,1975,3543,3542,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,43,4,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,127.62016,0,0,1,1,0,1.7895466,0,40.86,47.62,49.2,27.29,6.666666666666667,1,1,0,0,0,13,1,0,334,354812.06,25433.236,225891.23,0,2037.8425 -1612,1976,3544,3545,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.3643761,7.7482343,0,6,-2,-32.903442,0,2,3,2019,9,2,32,36,1,2,0,13.195882,13.195882,0,0,0,0,0,0,0,0,0,0,49.03,50.53,41.8,56.12,6.666666666666667,1,1,0,0,9,11,5,1,449.5,279035.13,6466.0137,80488.516,86221.344,3512.0659 -1612,1976,3545,3544,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5999508,8.8008919,0,6,2,130.1301,0,2,3,2019,10,0,45,46,1,0,0,12.957562,12.957562,0,0,0,0,0,0,0,0,0,0,41.8,56.12,49.03,50.53,8.333333333333334,1,1,0,0,9,11,5,1,449.5,279035.13,6466.0137,80488.516,86221.344,3512.0659 -1613,1977,3546,3547,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.3886766,9.4292841,0,31,-3,76.604187,0,3,1,2019,10,0,35,43,1,0,0,40.69767,40.69767,0,0,0,0,7,0,0,0,6.3545074,0,57.33,53.46,60.13,49.27,8.333333333333334,4,2,0,0,6,9,5,1,965,3116790.5,2409366.5,722044.69,163402.09,9288.5938 -1613,1977,3547,3546,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.7824154,9.6378756,0,31,3,106.39008,0,-9,-9,2019,9,0,50,48,1,0,0,39.7645,39.7645,0,0,0,0,0,0,0,0,7.7035365,0,60.13,49.27,57.33,53.46,10,1,1,0,0,9,9,5,1,965,3116790.5,2409366.5,722044.69,163402.09,9288.5938 -1614,1978,3548,3551,-9,-9,1,0,31,1,4,0,3,3,-9,0,4,0,0,0,18,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,48,57,36.25,31.48,7,2,3,0,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 -1614,1978,3549,-9,3548,3551,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-959.16986,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,2.4536171,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 -1614,1978,3550,-9,3548,3551,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.9077,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 -1614,1978,3551,3548,-9,-9,1,1,35,1,4,0,3,3,-9,1,1,0,0,0,18,4,0,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,36.25,31.48,48,57,3.333333333333333,2,3,0,1,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 -1614,1978,3552,-9,3548,3551,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1034.3834,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 -1614,1978,3553,-9,3548,3551,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.7525,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,1,0,430.66666,-32175.76,34863.754,0,0,1952.9937 -1615,1979,3554,-9,3555,3556,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.06781,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 -1615,1979,3555,3556,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,6.5725293,6.4745855,0,11,0,-99.754692,-9,1,1,2019,9,3,14,0,1,3,0,5.5573287,5.5573287,0,0,0,0,0,1,1,0,3.4618754,0,54.36,35.9,48.87,58.55,8.333333333333334,1,1,0,0,5,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 -1615,1979,3556,3555,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.5932665,8.6818857,0,11,0,13.348761,-9,2,1,2019,6,0,44,0,1,0,0,16.943895,16.943895,0,0,0,0,0,1,1,0,4.4053183,0,48.87,58.55,54.36,35.9,8.333333333333334,1,1,0,0,5,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 -1615,1979,3557,-9,3555,3556,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.5569,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,504.25,191189.31,130264.36,218430.47,123445.41,2275.9885 -1616,1980,3558,-9,3560,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-825.09149,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,715,-26722.734,0,0,0,1061.4883 -1616,1980,3559,-9,3560,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.91846,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,0,715,-26722.734,0,0,0,1061.4883 -1616,1980,3560,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,0,0,-898.1803,0,2,2,2019,15,4,0,27,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.22,60.56,-9,-9,6.666666666666667,1,1,0,0,9,5,1,0,715,-26722.734,0,0,0,1061.4883 -1617,1981,3561,3562,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.0568998,3.2640336,7,4,-80.385437,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.2200496,47.78,36.16,55.38,43.85,10,1,1,0,0,0,5,2,0,254.5,-12508.457,0,0,0,1634.6318 -1617,1981,3562,3561,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,-4,-70.199295,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,55.38,43.85,47.78,36.16,8.333333333333334,1,1,0,0,0,5,2,0,254.5,-12508.457,0,0,0,1634.6318 -1618,1982,3563,3564,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.1011486,7.9285617,37,0,-89.161758,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9903107,57.73,54.53,49.92,28.55,8.333333333333334,1,1,0,0,10,5,3,1,1325.5,-268108.69,-45139.063,0,0,848.02161 -1618,1982,3564,3563,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,37,0,-82.72596,0,2,2,2019,13,1,0,45,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,28.55,57.73,54.53,3.333333333333333,1,1,1,0,10,5,3,1,1325.5,-268108.69,-45139.063,0,0,848.02161 -1618,1983,3565,-9,3564,3563,1,1,33,0,0,0,2,2,-9,0,3,6.5927124,6.5964537,0,0,0,-1011.1528,0,1,1,2019,6,0,13,13,1,0,1,7.2916842,7.2916842,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,7,5,2,1,131,32155.746,0,0,0,457.57687 -1619,1984,3566,-9,3569,3567,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.55774,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 -1619,1984,3567,3569,-9,-9,1,1,45,1,2,0,1,1,-9,0,5,9.1442881,9.5224228,0,14,2,49.484787,0,2,1,2019,17,5,52,52,1,5,0,25.813894,25.813894,0,0,0,0,0,0,0,0,0,0,38.81,62.11,51.73,58.82,8.333333333333334,1,1,0,0,9,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 -1619,1984,3568,-9,3569,3567,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.8443,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 -1619,1984,3569,3567,-9,-9,1,0,43,1,2,0,1,1,-9,0,5,9.135375,9.1401825,0,14,-2,126.53424,0,2,1,2019,7,0,35,40,1,0,0,29.796959,29.796959,0,0,0,0,0,0,0,0,7.0412054,0,51.73,58.82,38.81,62.11,8.333333333333334,1,1,0,0,9,2,5,1,966.25,983173.5,375581.91,307378.72,0,7310.1235 -1620,1985,3570,-9,3573,3572,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.72809,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 -1620,1985,3571,-9,3573,3572,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.0332,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 -1620,1985,3572,3573,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.3791714,8.1977062,0,15,10,63.711082,0,2,2,2019,10,0,49,37,1,0,0,8.1339016,8.1339016,0,0,0,0,0,1,1,0,0,0,36.52,48.47,33.72,60.21,6.666666666666667,2,3,0,1,6,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 -1620,1985,3573,3572,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,0,0,0,6,-10,17.512602,0,2,2,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.72,60.21,36.52,48.47,6.666666666666667,2,3,0,1,0,8,3,0,574.75,86959.297,120141.08,144168.14,79299.727,1389.4781 -1621,1986,3574,3575,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6515865,7.237927,0,5,-4,-100.72744,0,2,2,2019,8,0,35,38,1,0,0,7.2135139,7.2135139,0,0,0,0,5.48,0,0,0,0,0,57.16,56.15,46,39,8.333333333333334,1,1,0,0,9,13,4,1,267.5,302746.25,238575.19,173956.81,0,1938.1565 -1621,1986,3575,3574,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.8918328,7.9342608,0,5,4,-82.954056,0,3,3,2019,9,0,38,38,1,0,0,8.4683256,8.4683256,0,0,0,0,0,0,0,0,0,0,46,39,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,267.5,302746.25,238575.19,173956.81,0,1938.1565 -1622,1987,3576,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,0,0,-983.0943,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,1,1,0,0,10,13,1,1,156,434686.09,81775.328,0,0,147.83203 -1623,1988,3577,-9,3579,3578,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.7424,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,349.66666,701371.25,318343.03,354908.69,109658.36,5749.4692 -1623,1988,3578,3579,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.7910566,9.7012939,0,4,2,21.935083,0,1,3,2019,12,1,70,65,1,1,0,24.261343,24.261343,0,0,0,0,0,0,0,0,5.2562313,0,55.76,52.64,45.91,59.89,8.333333333333334,1,1,0,0,10,12,5,1,349.66666,701371.25,318343.03,354908.69,109658.36,5749.4692 -1623,1988,3579,3578,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.9135833,7.1083069,0,4,-2,-3.0421317,0,-9,-9,2019,11,0,20,22,1,0,0,6.9979839,6.9979839,0,0,0,0,0,0,0,0,1.1893873,0,45.91,59.89,55.76,52.64,8.333333333333334,1,1,0,0,10,12,5,1,349.66666,701371.25,318343.03,354908.69,109658.36,5749.4692 -1624,1989,3580,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.3822293,6.5734854,0,0,-1035.0109,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.2831101,35.61,55.45,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1321,128858.12,86113.281,0,0,609.10431 -1624,1990,3581,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1110.2527,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,12,1,0,1196,-84182.461,0,129326.31,0,521.40271 -1625,1991,3582,3584,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,0,0,0,13,-6,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.4548678,0,51.83,57.2,37.34,60.95,8.333333333333334,1,1,0,0,10,4,1,1,570.66669,-128241.14,0,0,0,1057.952 -1625,1991,3583,-9,3582,3584,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.7053,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,1,1,570.66669,-128241.14,0,0,0,1057.952 -1625,1991,3584,3582,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,0,0,0,13,6,0,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,60.95,51.83,57.2,6.666666666666667,1,1,0,0,7,4,1,1,570.66669,-128241.14,0,0,0,1057.952 -1626,1992,3585,-9,3586,3588,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-847.64166,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 -1626,1992,3586,3588,-9,-9,1,0,49,0,3,0,1,1,-9,0,4,7.6553636,7.5029445,0,29,-2,-84.325157,0,2,3,2019,9,0,22,25,1,0,0,11.092758,11.092758,0,0,0,0,0,0,0,0,2.5674713,0,44.53,56.37,49.42,57.29,8.333333333333334,1,1,0,0,4,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 -1626,1992,3587,-9,3586,3588,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.08459,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 -1626,1992,3588,3586,-9,-9,1,1,51,0,3,0,1,1,-9,0,5,9.1271124,9.329936,0,29,2,15.061626,0,2,3,2019,16,4,43,47,1,4,0,27.632124,27.632124,0,0,0,0,0,0,0,0,0,0,49.42,57.29,44.53,56.37,8.333333333333334,1,1,0,0,7,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 -1626,1992,3589,-9,3586,3588,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.0397,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,753.20001,994748.5,-57477.656,1219734.5,293813.34,4586.6357 -1627,1993,3590,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1008.2171,-9,-9,-9,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.43,54.04,-9,-9,8.333333333333334,1,1,0,0,3,12,1,0,664,122969.47,0,0,0,255.98814 -1628,1994,3591,3592,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.0479813,8.2132912,4.2592902,10,0,-100.4558,0,3,-9,2019,14,3,54,104,1,3,0,8.0451727,8.0451727,0,0,0,0,0,0,0,0,4.4745951,4.7961321,45.95,40,52.53,48.57,5,1,1,0,0,11,5,4,1,1098,232733.78,129119.22,229369.39,0,2560.6284 -1628,1994,3592,3591,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.6432819,7.6722655,0,10,0,-61.475956,0,3,2,2019,13,1,39,39,1,1,0,7.2123952,7.2123952,0,0,0,0,0,0,0,0,2.6801078,0,52.53,48.57,45.95,40,6.666666666666667,1,1,0,0,6,5,4,1,1098,232733.78,129119.22,229369.39,0,2560.6284 -1629,1995,3593,-9,3595,3594,1,1,16,0,1,1,2,0,-9,0,3,0,2.7459276,2.8944378,0,0,-974.82452,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.0590465,0,39.08,57.81,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,499.66666,77224.32,102418.61,0,0,3746.7529 -1629,1995,3594,3595,-9,-9,1,1,48,0,1,0,1,1,-9,0,2,8.8874769,9.115366,0,26,1,-75.38707,0,2,-9,2019,12,0,48,45,1,0,0,18.160923,18.160923,0,0,0,0,0,1,1,0,4.3643255,0,44.34,39.77,54.97,47.63,1.666666666666667,1,1,0,0,10,2,5,1,499.66666,77224.32,102418.61,0,0,3746.7529 -1629,1995,3595,3594,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.8984404,7.9323301,0,25,-1,-30.091364,0,2,2,2019,8,0,30,30,1,0,0,10.446301,10.446301,0,0,0,0,0,1,1,0,0,0,54.97,47.63,44.34,39.77,8.333333333333334,1,1,0,0,10,2,5,1,499.66666,77224.32,102418.61,0,0,3746.7529 -1630,1996,3596,3597,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,6.5857377,6.8502669,8,0,-88.997673,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.2190232,6.534585,36.91,38.64,57.09,46.7,1.666666666666667,3,4,0,0,0,8,2,1,571.5,4101665.5,2232772,1222835,0,2874.5867 -1630,1996,3597,3596,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.6732454,6.7932353,8,9,104.4101,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4049158,6.8539081,57.09,46.7,36.91,38.64,8.333333333333334,1,1,0,0,0,8,2,1,571.5,4101665.5,2232772,1222835,0,2874.5867 -1630,1997,3598,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.9115391,7.6101985,0,0,0,-840.12738,0,-9,-9,2019,10,0,40,40,1,0,0,6.7691011,6.7691011,0,0,0,0,0,1,1,0,4.4458203,0,46.63,59.72,-9,-9,5,1,1,0,0,9,8,3,1,337,282566.5,111726.05,0,0,1127.244 -1631,1998,3599,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-906.62317,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,4,2,0,1,0,8,2,1,921,77218.219,0,128078.63,0,900.1427 -1631,1999,3600,-9,3599,-9,1,1,39,0,0,0,2,2,-9,0,4,8.4821043,8.5729551,0,0,0,-1083.161,0,2,-9,2019,10,0,37,37,1,1,0,19.016705,19.016705,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,2,0,0,1,8,5,1,184,435469.81,16737.072,0,0,2033.0319 -1632,2000,3601,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.2577119,6.8871899,0,6,1,-47.400352,0,2,2,2019,16,5,47,47,1,5,0,3.8196058,3.8196058,0,0,0,0,0,0,0,0,2.2225168,0,52,54.51,47.65,45.88,6.666666666666667,1,1,0,0,6,8,4,1,660,328500.5,-73083.75,416485.53,0,551.49042 -1632,2001,3602,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.3982992,8.7251692,0,6,-1,-23.806364,0,-9,-9,2019,12,2,49,45,1,2,0,11.092853,11.092853,0,0,0,0,0,0,0,0,0,0,47.65,45.88,52,54.51,6.666666666666667,2,3,0,0,9,8,4,1,121,181769.52,200123.28,212984.67,4083.8848,1548.0602 -1633,2002,3603,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.0834723,8.1117172,0,0,0,-1016.8922,0,1,1,2019,8,0,42,42,1,0,0,12.136066,12.136066,0,0,0,0,0,0,0,0,2.2267764,0,58.73,40.56,-9,-9,8.333333333333334,3,4,0,0,6,8,4,1,798,-47178.703,0,0,0,1689.7856 -1634,2003,3604,3605,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.6990376,5.8343382,31,-12,-.2680217,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6783872,5.3773232,56.58,49.75,58.07,46.29,10,1,1,0,0,0,9,4,1,499.5,1326174.3,547153.63,451163.63,0,3906.187 -1634,2003,3605,3604,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,8.4462643,8.4433508,31,12,19.400599,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.9267821,8.8116169,58.07,46.29,56.58,49.75,8.333333333333334,1,1,0,0,0,9,4,1,499.5,1326174.3,547153.63,451163.63,0,3906.187 -1635,2004,3606,-9,3607,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.14606,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,1454,17792.209,0,0,0,1794.5677 -1635,2004,3607,-9,-9,-9,1,0,27,0,2,0,3,3,-9,1,3,0,0,0,0,0,-878.08575,0,3,3,2019,16,6,0,25,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.16,53.08,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,1454,17792.209,0,0,0,1794.5677 -1635,2004,3608,-9,3607,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.69415,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,1454,17792.209,0,0,0,1794.5677 -1636,2005,3609,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.8898869,8.0158396,0,0,-1033.5562,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1739712,52.55,47.38,-9,-9,10,1,1,0,0,0,9,4,1,406,764831.56,322915.66,370154.97,0,2234.105 -1637,2006,3610,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.2025881,8.0974131,0,0,0,-1045.5663,0,2,2,2019,10,0,37,37,1,0,0,10.806153,10.806153,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,6.666666666666667,3,4,0,0,12,6,4,0,226,-59537.914,-39981.785,32085.336,24658.629,984.89435 -1638,2007,3611,3612,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5246911,7.5896754,0,13,-1,90.968651,0,2,2,2019,11,0,33,33,1,0,0,7.7584872,7.7584872,0,0,0,.011315964,0,0,0,0,0,0,57.17,50.61,45.49,50.81,8.333333333333334,1,1,0,0,9,2,5,1,1559.5,1752514,1476362.5,192858.66,0,2861.4082 -1638,2007,3612,3611,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8275862,8.7818832,0,10,1,-8.1335068,0,2,2,2019,13,1,48,42,1,1,0,16.440863,16.440863,0,0,0,0,7,0,0,0,0,0,45.49,50.81,57.17,50.61,8.333333333333334,1,1,0,0,12,2,5,1,1559.5,1752514,1476362.5,192858.66,0,2861.4082 -1639,2008,3613,-9,3614,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.52576,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,2113.3333,132995.88,49467.672,473986.75,86266.016,1813.7717 -1639,2008,3614,-9,-9,-9,1,0,43,0,2,0,1,1,-9,1,2,7.8184376,7.8499904,0,0,0,-1025.7563,0,2,2,2019,27,9,40,38,1,9,0,8.1687746,8.1687746,0,0,0,0,0,1,1,0,0,0,30.79,29.34,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,2113.3333,132995.88,49467.672,473986.75,86266.016,1813.7717 -1639,2008,3615,-9,3614,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.07867,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,2113.3333,132995.88,49467.672,473986.75,86266.016,1813.7717 -1640,2009,3616,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,7.3870678,6.9068708,0,0,-1020.0729,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2069502,0,60.45,30.52,-9,-9,8.333333333333334,4,5,0,0,0,7,2,0,698,379545.78,-15823.349,188414.95,0,1040.5789 -1641,2010,3617,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.3527904,6.184792,0,0,-1029.3361,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.4981141,6.2392812,56,51,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,641,-36118.754,32923.125,0,0,1576.9885 -1642,2011,3618,3619,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.7956877,8.1751318,6.2785234,3,7,176.77548,0,3,2,2019,11,0,40,38,1,0,0,8.3368988,8.3368988,0,0,0,0,0,0,0,0,6.0562482,6.3865819,55.95,47.23,52.93,55.31,8.333333333333334,1,1,0,0,9,6,4,1,184.5,1468085.9,841263.63,509743.75,0,2919.915 -1642,2011,3619,3618,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2172112,7.8012085,0,3,-7,51.835686,0,-9,-9,2019,8,1,18,18,1,1,0,9.7695637,9.7695637,0,0,0,0,0,0,0,0,5.877275,0,52.93,55.31,55.95,47.23,10,1,1,0,0,9,6,4,1,184.5,1468085.9,841263.63,509743.75,0,2919.915 -1643,2012,3620,3621,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,6.6021152,6.449935,1,24,-43.248547,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1242385,6.5264649,65.38,41.59,49.82,54.32,8.333333333333334,1,1,0,0,0,9,2,1,1761,744677.56,52302.785,309953,0,1939.5686 -1643,2012,3621,3620,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,1,-24,14.898567,-9,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.82,54.32,65.38,41.59,10,2,3,0,0,0,9,2,1,1761,744677.56,52302.785,309953,0,1939.5686 -1644,2013,3622,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.3461781,8.4247169,0,0,0,-879.39874,0,2,2,2019,5,0,48,12,1,0,0,9.4852409,9.4852409,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,8,11,4,0,98,530855.06,331592.84,0,0,1335.8114 -1645,2014,3623,3624,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.3778152,7.0901718,11,5,-26.514212,0,-9,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2502379,6.6256413,49,48,48.61,48.2,6.666666666666667,1,1,0,0,13,10,5,0,2645,1209984.6,525366.13,375151.34,0,3510.3179 -1645,2014,3624,3623,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8520403,8.7136002,5.0745006,11,-5,-112.78688,0,2,1,2019,13,2,40,45,1,2,0,17.861134,17.861134,0,0,0,0,0,1,1,0,5.3106189,5.279532,48.61,48.2,49,48,6.666666666666667,1,1,0,0,13,10,5,0,2645,1209984.6,525366.13,375151.34,0,3510.3179 -1646,2015,3625,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,5.2573819,5.5492296,0,0,0,-919.61127,0,2,2,2019,6,0,22,0,1,0,0,.95731229,.95731229,0,0,0,0,0,1,1,0,7.3913412,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,827,88776.43,77390.609,0,0,2232.573 -1646,2015,3626,-9,3625,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1031.691,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,2,1,827,88776.43,77390.609,0,0,2232.573 -1647,2016,3627,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.4735708,6.2052302,0,0,-1098.7297,0,3,-9,2019,14,3,0,0,4,3,0,0,0,1,0,1.8157762,0,0,1,1,0,0,6.5142899,47.72,25.58,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,118,140608.17,62305.023,0,0,1895.8503 -1648,2017,3628,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,2.9792762,3.0529959,0,0,-979.52594,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,2.9646111,43.26,44.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,567,-402294.5,-21572.852,0,0,246.88614 -1649,2018,3629,3630,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,-73.165344,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,43.93,57.33,53.46,8.333333333333334,1,1,0,0,0,5,3,1,565.5,386953.91,343977.06,314588.81,0,2916.1565 -1649,2018,3630,3629,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.1374016,7.7663307,46,4,91.842827,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.603055,8.2511654,57.33,53.46,45.22,43.93,8.333333333333334,1,1,0,0,0,5,3,1,565.5,386953.91,343977.06,314588.81,0,2916.1565 -1650,2019,3631,3632,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4197617,8.4781513,0,27,0,51.612663,0,-9,-9,2019,11,3,45,37,1,3,0,15.178064,15.178064,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,9,2,5,1,1410,5443850,976032.25,1210125.3,0,4152.2651 -1650,2019,3632,3631,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4525423,8.4875069,0,27,0,-20.922047,0,-9,-9,2019,7,0,40,38,1,0,0,16.794571,16.794571,0,0,0,0,0,0,0,0,.20435627,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,9,2,5,1,1410,5443850,976032.25,1210125.3,0,4152.2651 -1650,2020,3633,-9,3631,3632,1,0,24,0,0,0,2,2,-9,0,4,7.7536597,7.9232326,0,0,0,-977.12457,0,2,2,2019,6,0,40,40,1,0,1,7.6476402,7.6476402,0,0,0,0,0,0,0,0,.25401503,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,76,448343.75,0,0,0,1076.0135 -1650,2021,3634,-9,3631,3632,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1025.6594,-9,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.35828099,0,54.2,57.49,-9,-9,10,1,1,0,0,2,2,1,1,486,-169676.86,0,0,0,-461.64743 -1651,2022,3635,3636,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.4566846,7.4484105,0,25,-4,190.08791,0,3,3,2019,15,3,25,25,1,3,0,5.8723254,5.8723254,0,0,0,0,0,0,0,0,0,0,47.62,41.35,57.16,56.15,5,2,3,0,0,9,5,5,1,1825.5,3102369.5,1060951.5,745062.5,346585.66,8929.1895 -1651,2022,3636,3635,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.768836,9.6434259,0,6,4,-196.69058,0,2,2,2019,11,0,40,40,1,0,0,40.063297,40.063297,0,0,0,0,0,0,0,0,7.1174445,0,57.16,56.15,47.62,41.35,6.666666666666667,2,3,0,0,4,5,5,1,1825.5,3102369.5,1060951.5,745062.5,346585.66,8929.1895 -1651,2023,3637,-9,3635,3636,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-882.53748,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,53.97,53.69,-9,-9,10,2,3,0,0,0,5,1,1,838,247496.33,0,0,0,0 -1652,2024,3638,-9,3639,3640,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.5261,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,644,26716.791,-57720.965,160079.8,94338.766,1930.8831 -1652,2024,3639,3640,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,7.0486298,7.1791787,0,2,-3,-6.4129548,0,-9,-9,2019,16,5,19,21,1,5,0,6.5829177,6.5829177,0,0,0,0,0,1,1,0,0,0,40.1,40.8,48.53,58.91,8.333333333333334,1,1,0,0,1,6,3,0,644,26716.791,-57720.965,160079.8,94338.766,1930.8831 -1652,2024,3640,3639,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,8.0531969,8.2942429,0,2,3,-51.274666,0,2,-9,2019,11,1,47,44,1,1,0,8.6739769,8.6739769,0,0,0,0,0,1,1,0,0,0,48.53,58.91,40.1,40.8,8.333333333333334,1,1,0,0,6,6,3,0,644,26716.791,-57720.965,160079.8,94338.766,1930.8831 -1653,2025,3641,3642,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,8.3594942,8.5572319,0,6,-2,-28.559181,0,-9,-9,2019,10,1,43,37,1,1,0,11.293612,11.293612,0,0,0,0,14.5,0,0,0,0,0,50.22,36.66,31.69,50.85,8.333333333333334,1,1,0,0,4,11,5,1,1776.5,255629.22,90558.75,345612.75,197777,3142.6909 -1653,2025,3642,3641,-9,-9,1,1,27,0,0,0,1,1,-9,0,2,8.0279751,8.2829905,0,6,2,81.581665,0,-9,-9,2019,21,10,37,37,1,10,0,11.739643,11.739643,0,0,0,0,2,0,0,0,0,0,31.69,50.85,50.22,36.66,3.333333333333333,1,1,0,0,2,11,5,1,1776.5,255629.22,90558.75,345612.75,197777,3142.6909 -1654,2026,3643,3644,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.6083322,6.580142,46,0,-5.5872278,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,118.65587,0,0,1,1,0,0,6.8219981,38.89,16.13,34.99,34.34,6.666666666666667,1,1,0,0,0,5,2,0,844,644488.88,344095.13,159088.22,0,2814.1445 -1654,2026,3644,3643,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.5278306,7.0626898,46,0,33.706268,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,71.5,1,1,0,0,6.5910587,34.99,34.34,38.89,16.13,8.333333333333334,1,1,0,0,0,5,2,0,844,644488.88,344095.13,159088.22,0,2814.1445 -1655,2027,3645,-9,3647,3646,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.9843,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,6,5,1,1029,187334.5,9073.2549,255265.42,109388.14,4329.2021 -1655,2027,3646,3647,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.9649353,8.6760464,0,18,4,1.1896427,0,-9,-9,2019,9,0,38,38,1,1,0,16.241795,16.241795,0,0,0,0,0,1,1,0,0,0,52,55,46.16,58.62,8,1,1,0,0,1,6,5,1,1029,187334.5,9073.2549,255265.42,109388.14,4329.2021 -1655,2027,3647,3646,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.2363548,8.2723389,0,18,-4,-133.52339,0,2,2,2019,11,1,40,35,1,1,0,10.643891,10.643891,0,0,0,0,2,1,1,0,0,0,46.16,58.62,52,55,8.333333333333334,1,1,0,0,7,6,5,1,1029,187334.5,9073.2549,255265.42,109388.14,4329.2021 -1656,2028,3648,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1101.0404,0,1,3,2019,8,0,0,19,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,1,0,5,8,1,1,776,-163333.72,0,0,0,0 -1656,2029,3649,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.5334511,8.3638754,0,0,0,-980.71039,-9,2,-9,2019,7,0,70,0,1,0,1,8.3733644,8.3733644,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,366,89716.383,-61543.902,265599.5,165621.81,2202.0762 -1657,2030,3650,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.0661225,7.0847287,0,0,0,-1064.9203,0,2,3,2019,11,0,40,40,1,1,0,3.3918397,3.3918397,0,0,0,0,7,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,11,13,3,1,1443,178269.55,107769.63,198662.28,0,348.04764 -1658,2031,3651,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.2844534,8.1752739,0,0,0,-1033.8568,0,2,-9,2019,10,1,42,42,1,1,0,8.6938391,8.6938391,0,0,0,0,0,0,0,0,0,0,27.56,66.96000000000001,-9,-9,1.666666666666667,1,1,0,0,7,5,4,0,203,-65759.297,71701.609,0,0,1215.7668 -1659,2032,3652,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-861.31091,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,6.0268888,0,67.81501,0,1,1,0,0,0,61.12,51.57,-9,-9,10,1,1,0,0,0,9,1,1,367,-34455.543,0,0,0,457.83493 -1660,2033,3653,3654,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.4830885,9.5947886,0,9,0,36.23061,0,-9,-9,2019,9,0,5,20,1,0,0,301.58606,301.58606,0,0,0,0,0,0,0,0,8.0405731,0,57.33,53.46,61.68,50.1,8.333333333333334,1,1,0,0,7,8,5,1,999.66669,2213627,692196.75,731037.13,0,10925.229 -1660,2033,3654,3653,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.6581478,9.8709192,0,27,0,90.731506,0,2,1,2019,7,0,47,45,1,0,0,39.637455,39.637455,0,0,0,0,0,0,0,0,0,0,61.68,50.1,57.33,53.46,8.333333333333334,1,1,0,0,12,8,5,1,999.66669,2213627,692196.75,731037.13,0,10925.229 -1660,2033,3655,-9,3653,3654,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-969.05554,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,8,5,1,999.66669,2213627,692196.75,731037.13,0,10925.229 -1660,2034,3656,-9,3653,3654,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1011.3841,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.1554947,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,569,0,0,0,0,60.675591 -1661,2035,3657,3658,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3253746,8.5771952,23,16,14.534949,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.9058716,8.2112055,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,6,6,3,1,488,2061301.8,1518835.5,152941.78,0,2631.8015 -1661,2035,3658,3657,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,0,0,0,23,-16,128.98903,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.7806807,0,57.06,57.76,57.16,56.15,10,1,1,0,0,7,6,3,1,488,2061301.8,1518835.5,152941.78,0,2631.8015 -1662,2036,3659,3660,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,8.8381004,8.8420315,0,1,-13,100.91288,-9,2,1,2019,12,0,47,0,1,0,0,15.975947,15.975947,0,0,0,0,0,0,0,0,0,0,53.04,31.61,49,50,6.666666666666667,1,1,0,0,12,6,5,1,371,2556183.5,2051918.8,319808.03,92638.234,4418.7129 -1662,2036,3660,3659,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.3195615,8.3770599,8.0910473,1,13,34.323322,-9,-9,-9,2019,11,0,37,0,1,1,0,3.7082095,3.7082095,0,0,0,0,0,0,0,0,4.5617466,8.0226784,49,50,53.04,31.61,7,4,1,0,0,1,6,5,1,371,2556183.5,2051918.8,319808.03,92638.234,4418.7129 -1663,2037,3661,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.5125461,7.4407487,0,0,0,-1024.1456,0,2,2,2019,9,2,20,20,1,2,0,12.079213,12.079213,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,5,1,1,0,0,11,7,3,0,517.5,89197.625,41825.957,0,0,974.0636 -1663,2037,3662,-9,3661,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.79688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,0,517.5,89197.625,41825.957,0,0,974.0636 -1664,2038,3663,-9,3664,-9,1,0,22,0,0,0,2,2,-9,0,5,7.9587331,7.7154007,0,0,0,-1091.3505,0,1,3,2019,7,0,50,40,1,0,1,7.8196621,7.8196621,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,1576,219319.19,114358.72,0,0,989.53705 -1664,2039,3664,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.6197147,8.4776926,0,0,0,-1016.6774,0,-9,-9,2019,11,1,40,16,1,1,0,15.644467,15.644467,0,0,0,0,0,1,1,0,0,0,50.93,52.07,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1051,189455.72,318583.91,16115.769,0,1376.5426 -1665,2040,3665,3667,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,8.5615921,8.4010839,0,7,-2,15.523938,0,-9,-9,2019,6,0,42,45,1,0,0,11.278334,11.278334,0,0,0,0,0,1,1,0,0,0,51.02,49.39,46.8,58.27,5,1,1,0,0,10,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 -1665,2040,3666,-9,3667,3665,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.05798,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 -1665,2040,3667,3665,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,0,0,0,7,2,-11.13222,1,3,3,2019,12,1,0,16,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,58.27,51.02,49.39,5,1,1,0,0,11,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 -1665,2040,3668,-9,3667,3665,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.62695,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,519.75,144993.58,24728.91,165087.08,38047.738,1814.6527 -1666,2041,3669,3670,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6812258,8.7634706,0,3,3,35.594616,0,-9,-9,2019,9,0,45,43,1,0,0,17.03129,17.03129,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,131.5,113299.58,-22198.732,103245.95,74956.211,4382.0278 -1666,2041,3670,3669,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.8055401,8.7333622,0,3,-3,-10.425176,0,2,2,2019,13,1,50,55,1,1,0,14.196654,14.196654,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,131.5,113299.58,-22198.732,103245.95,74956.211,4382.0278 -1667,2042,3671,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.1505556,8.1882277,0,0,-1020.5444,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2729468,8.3084631,61.85,47.26,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,66,416289.97,286057.88,92081.063,0,2517.761 -1668,2043,3672,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,7.7316685,7.4976296,0,0,-990.44897,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,3.4898338,1.3193716,22.733429,0,1,1,0,3.5475929,7.7376189,50.49,20.83,-9,-9,5,1,1,0,0,0,9,3,1,326,671631.13,0,344184,0,1832.3964 -1669,2044,3673,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.9757619,7.9835801,0,0,-872.05737,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2684422,8.1296339,63.22,26.5,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,169,1131155.4,669411.75,217923.2,0,2815.4248 -1670,2045,3674,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.7730074,8.6085539,0,0,0,-979.38892,0,2,2,2019,11,0,44,43,1,0,0,15.786694,15.786694,0,0,0,0,0,0,0,0,3.8471675,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,1,11,9,5,1,439,76398.992,-26.599005,303451.16,300629.06,2421.1719 -1671,2046,3675,3676,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,0,0,0,8,4,-34.599907,0,2,1,2019,6,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,3.4295735,0,56.34,40.63,48.87,58.55,6.666666666666667,1,1,0,0,4,12,5,1,3189,772279.63,522022,351459.59,29152.248,3854.4634 -1671,2046,3676,3675,-9,-9,1,1,49,0,0,0,1,1,1,0,4,9.5159016,9.6073151,0,8,-4,37.816532,-9,3,3,2019,10,0,50,0,1,0,0,32.086941,32.086941,0,0,0,0,0,0,0,0,5.1452751,0,48.87,58.55,56.34,40.63,8.333333333333334,1,1,0,0,7,12,5,1,3189,772279.63,522022,351459.59,29152.248,3854.4634 -1672,2047,3677,3678,-9,-9,1,1,26,0,0,0,2,2,-9,0,1,5.7778068,6.4495516,0,2,2,8.3380327,0,-9,-9,2019,19,0,82,50,1,6,0,.53302991,.53302991,0,0,0,0,2,0,0,0,.93748105,0,33,31,41.31,44.65,4,1,1,0,1,4,9,3,1,2116,176011.03,96070,186589.92,100014.82,1301.4319 -1672,2047,3678,3677,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.3846483,8.4314079,0,2,-2,112.24905,0,-9,-9,2019,12,1,100,70,1,1,0,4.1374226,4.1374226,0,0,0,0,0,0,0,0,0,0,41.31,44.65,33,31,3.333333333333333,1,1,0,0,3,9,3,1,2116,176011.03,96070,186589.92,100014.82,1301.4319 -1673,2048,3679,-9,3680,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.57092,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,636,-161650.75,0,77912.25,86155.547,2140.2356 -1673,2048,3680,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.6950321,7.9060254,0,0,0,-948.88593,0,-9,3,2019,11,0,30,29,1,0,0,8.2995291,8.2995291,0,0,0,0,0,1,1,0,0,0,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,11,12,3,0,636,-161650.75,0,77912.25,86155.547,2140.2356 -1673,2048,3681,-9,3680,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.4957,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,636,-161650.75,0,77912.25,86155.547,2140.2356 -1674,2049,3682,3683,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,8.3947954,8.6788006,7.2645993,8,1,-15.079537,0,3,3,2019,10,0,50,66,1,1,0,12.358122,12.358122,0,0,0,0,0,1,1,0,3.4023755,7.1095486,53,47,57.16,56.15,7,1,1,0,0,1,11,4,1,1250,849602.63,375362.88,300854.38,0,3723.3818 -1674,2049,3683,3682,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.1349363,6.4563551,8,-1,-3.66219,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0765076,6.2259412,57.16,56.15,53,47,10,1,1,0,0,0,11,4,1,1250,849602.63,375362.88,300854.38,0,3723.3818 -1675,2050,3684,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.6884694,7.7206855,5.7210078,0,0,-926.41626,0,3,3,2019,10,0,30,28,1,0,0,10.204353,10.204353,0,0,0,0,0,1,1,0,0,6.0259562,62.42,42.94,-9,-9,10,1,1,0,0,10,2,3,0,439,504244.16,255290.17,0,0,1405.6497 -1676,2051,3685,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1132.87,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.2198796,10.589381,25.039236,0,1,1,0,0,0,38.41,23.07,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,948,-190746.22,0,0,0,1040.4386 -1677,2052,3686,-9,3687,3688,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.5097,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,581,521981.13,170655.5,484700.88,72076.258,2605.2788 -1677,2052,3687,3688,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.5281858,8.8497496,0,19,2,66.405495,0,2,1,2019,4,0,38,38,1,0,0,20.456404,20.456404,0,0,0,0,0,0,0,0,1.9328322,0,55.32,46.24,24.14,64.69,8.333333333333334,2,3,0,0,13,7,4,1,581,521981.13,170655.5,484700.88,72076.258,2605.2788 -1677,2052,3688,3687,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.4246945,7.6283183,0,10,-2,83.365135,-9,-9,-9,2019,6,0,38,0,1,0,0,7.955667,7.955667,0,0,0,0,0,0,0,0,2.0247548,0,24.14,64.69,55.32,46.24,8.333333333333334,2,3,0,0,4,7,4,1,581,521981.13,170655.5,484700.88,72076.258,2605.2788 -1678,2053,3689,3690,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,0,0,9,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,12,13,2,1,349,506796.09,85541.625,172185.7,0,1873.2542 -1678,2053,3690,3689,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,9,-7,0,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4665129,0,54.79,55.86,52.43,55.57,10,1,1,0,0,0,13,2,1,349,506796.09,85541.625,172185.7,0,1873.2542 -1679,2054,3691,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.04749,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,13.472373,0,0,1,1,0,0,0,42.35,36.31,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,460,242993.11,0,0,0,1632.0482 -1680,2055,3692,3694,-9,-9,1,1,30,1,2,0,1,1,-9,0,5,8.5522776,8.3879843,0,4,-1,-104.60612,0,-9,-9,2019,7,0,48,38,1,0,0,10.957573,10.957573,0,0,0,0,0,1,1,0,0,0,48.18,61.8,55.27,44.81,8.333333333333334,4,2,0,0,7,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 -1680,2055,3693,-9,3694,3692,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.73291,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 -1680,2055,3694,3692,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.5527406,7.2531381,0,4,1,-36.983219,0,2,3,2019,7,0,29,26,1,0,0,6.9241939,6.9241939,0,0,0,0,0,1,1,0,0,0,55.27,44.81,48.18,61.8,8.333333333333334,1,1,0,0,5,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 -1680,2055,3695,-9,3694,3692,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.75049,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,2,4,0,427,178295.86,102659.66,239003.72,141095.27,2761.8428 -1681,2056,3696,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,7.0093713,7.1416159,0,0,-836.77527,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.3146744,55.75,26.33,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,1853,-174881.56,61081.75,0,0,1453.0673 -1682,2057,3697,-9,3698,3699,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9402,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,984,39429.477,51594.773,0,0,3257.3123 -1682,2057,3698,3699,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.6578202,7.73665,0,7,-5,31.736885,0,3,3,2019,8,0,35,28,1,0,0,6.0753279,6.0753279,0,0,0,0,2,1,1,0,0,0,52.37,56.93,52.48,54.33,8.333333333333334,1,1,0,0,9,11,3,1,984,39429.477,51594.773,0,0,3257.3123 -1682,2057,3699,3698,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.3402748,8.1273737,0,7,5,49.359669,0,2,2,2019,4,0,50,38,1,0,0,9.4550648,9.4550648,0,0,0,0,0,1,1,0,0,0,52.48,54.33,52.37,56.93,8.333333333333334,1,1,0,0,9,11,3,1,984,39429.477,51594.773,0,0,3257.3123 -1683,2058,3700,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.8534732,5.7094407,0,0,-866.73602,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1195414,6.0219455,58.22,40.76,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,374,337919.84,81017.094,169316.25,0,422.48077 -1684,2059,3701,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7601824,8.9274807,0,0,0,-1032.7769,0,2,2,2019,28,11,38,35,1,11,0,25.438948,25.438948,0,0,0,0,0,0,0,0,0,0,31.75,57.05,-9,-9,3.333333333333333,1,1,0,0,8,9,5,1,67,108053.16,230260.44,0,0,3329.9326 -1685,2060,3702,3703,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.2973928,8.4456282,0,9,-6,-84.553032,0,2,3,2019,10,0,35,40,1,0,0,13.406116,13.406116,0,0,0,0,0,1,1,0,0,0,52.25,45.21,59.31,49.81,8.333333333333334,1,1,0,0,10,12,4,0,340,1029540.1,820951.88,159186.31,0,3070.2974 -1685,2060,3703,3702,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2675509,7.2686563,9,6,67.988823,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.311532,59.31,49.81,52.25,45.21,8.333333333333334,1,1,0,0,0,12,4,0,340,1029540.1,820951.88,159186.31,0,3070.2974 -1686,2061,3704,3705,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.0145683,8.2316217,0,30,-2,-107.19265,0,2,3,2019,8,0,38,37,1,0,0,11.511568,11.511568,0,0,0,0,0,0,0,0,0,0,56.44,36.66,55.68,44.96,6.666666666666667,1,1,0,0,9,4,4,1,601,342820.66,4612.7295,216912.63,0,1950.614 -1686,2061,3705,3704,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.1277828,7.1845732,0,30,2,-10.65549,0,3,3,2019,10,0,45,40,1,0,0,2.8806372,2.8806372,0,0,0,0,0,0,0,0,6.5907588,0,55.68,44.96,56.44,36.66,8.333333333333334,1,1,0,0,12,4,4,1,601,342820.66,4612.7295,216912.63,0,1950.614 -1686,2062,3706,-9,3704,3705,1,1,19,0,0,0,2,2,1,0,3,7.752872,7.6411309,0,0,0,-1104.2975,-9,2,2,2019,11,0,64,0,1,0,1,3.2161014,3.2161014,0,0,0,0,0,0,0,0,.48237559,0,33.66,61.57,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,98,-50460.215,72828.688,0,0,641.58069 -1687,2063,3707,3708,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.0035162,9.2536011,0,13,6,-11.699636,0,3,2,2019,17,5,75,60,1,5,0,12.635695,12.635695,0,0,0,0,0,0,0,0,7.0544205,0,41.83,50.85,62.49,55.09,6.666666666666667,1,1,0,0,8,6,5,1,632,-65198.926,51467.801,252262.16,64387.852,6251.1172 -1687,2063,3708,3707,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4010563,8.7909212,0,13,-6,147.8649,0,1,2,2019,8,0,40,43,1,0,0,19.392756,19.392756,0,0,0,0,0,0,0,0,7.2216482,0,62.49,55.09,41.83,50.85,8.333333333333334,1,1,0,0,6,6,5,1,632,-65198.926,51467.801,252262.16,64387.852,6251.1172 -1688,2064,3709,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,7.2816429,7.012044,0,0,-886.60681,0,3,1,2019,10,0,0,0,4,1,0,0,0,1,48.817616,0,473.48703,0,1,1,0,7.3311796,6.9467425,53,44,-9,-9,8,1,1,0,0,0,8,3,0,6448,547854.56,82639.281,303831.25,0,3820.6733 -1689,2065,3710,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6575508,8.1042423,0,0,0,-1102.6401,0,2,2,2019,3,0,37,37,1,0,0,14.292173,14.292173,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,1228,104962.91,0,0,0,1741.8192 -1690,2066,3711,3712,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,58,-1,13.875496,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.70481277,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,4,5,2,1,528.5,450989.38,396250.5,197961.45,0,2327.707 -1690,2066,3712,3711,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.2288065,7.1749682,58,1,19.677439,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3120632,7.311121,62.49,55.09,57.16,56.15,10,1,1,0,0,0,5,2,1,528.5,450989.38,396250.5,197961.45,0,2327.707 -1691,2067,3713,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1001.413,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.23,48.47,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,848,-267433.66,0,0,0,930.24438 -1691,2068,3714,-9,3713,-9,1,1,31,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1012.2406,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,-9,-9,8.333333333333334,1,1,1,0,2,11,1,0,559,-32409.416,0,0,0,-493.11685 -1691,2069,3715,-9,3713,-9,1,1,30,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1026.4277,0,3,-9,2019,4,0,0,0,3,0,1,0,0,0,0,0,0,27,1,1,0,0,0,53.61,59.13,-9,-9,8.333333333333334,1,1,1,0,4,11,1,0,385,0,0,0,0,-5.8215914 -1692,2070,3716,3717,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.441802,8.2952719,0,7,-8,-53.4888,0,-9,-9,2019,13,2,45,35,1,2,0,11.453585,11.453585,0,0,0,0,7,0,0,0,3.3098199,0,44.74,48.37,47.95,56.13,8.333333333333334,1,1,0,0,9,12,5,1,937,1404344,575819.25,472088.63,187656.33,4220.4717 -1692,2070,3717,3716,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8156919,8.6494761,0,26,8,-2.2022226,0,3,2,2019,10,1,40,35,1,1,0,16.397285,16.397285,0,0,0,0,0,0,0,0,4.7074199,0,47.95,56.13,44.74,48.37,6.666666666666667,1,1,0,0,7,12,5,1,937,1404344,575819.25,472088.63,187656.33,4220.4717 -1693,2071,3718,3719,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.8134775,7.8519344,0,7,-1,-59.204075,0,-9,-9,2019,5,0,55,48,1,0,0,6.4689078,6.4689078,0,0,0,0,0,0,0,0,7.4810758,0,57.16,56.15,62.49,55.09,6.666666666666667,1,1,0,0,9,8,5,0,363,3764.2188,33308.484,0,0,5151.6919 -1693,2071,3719,3718,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.5120392,9.1864595,0,7,1,-9.6093903,0,2,1,2019,7,0,60,50,1,0,0,18.749493,18.749493,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,8,8,5,0,363,3764.2188,33308.484,0,0,5151.6919 -1694,2072,3720,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.2592907,8.5462675,0,0,0,-926.56079,0,3,2,2019,7,0,44,43,1,0,0,10.961884,10.961884,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,184,419740.78,77826.82,325363.06,0,1421.3588 -1695,2073,3721,3722,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,6.7009807,6.6048017,63,2,-20.93417,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,1.2962377,43.769581,22.830227,0,1,1,0,2.3144009,6.1652851,41.04,20.63,51.01,33.14,5,1,1,0,0,0,2,2,1,515,593256.5,109491.27,94889.078,0,2054.6355 -1695,2073,3722,3721,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.5892935,5.0296059,63,-2,43.116013,0,-9,-9,2019,14,4,0,0,4,4,0,0,0,1,0,18.495653,0,27,1,1,0,0,5.2763314,51.01,33.14,41.04,20.63,6.666666666666667,1,1,0,0,0,2,2,1,515,593256.5,109491.27,94889.078,0,2054.6355 -1695,2074,3723,-9,3722,3721,1,1,52,0,0,0,2,2,-9,0,4,3.7723355,3.6633542,0,0,0,-1131.9557,0,2,2,2019,8,0,40,-9,1,0,0,.10933061,.10933061,0,0,0,0,86,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,2,2,1,371,23612.617,-91846.469,105344.84,64255.441,58.958317 -1696,2075,3724,3725,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.7983551,7.5983009,0,7,-8,28.160574,0,2,2,2019,6,0,30,30,1,0,0,11.52863,11.52863,0,0,0,0,0,1,1,0,3.8262453,0,60.12,54.8,53.5,53.7,8.333333333333334,1,1,0,0,9,12,5,1,421.33334,546156.56,283548.72,209076.88,111267.42,2890.7573 -1696,2075,3725,3724,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.5661316,8.7566776,0,7,8,-26.609743,0,2,2,2019,5,0,46,38,1,0,0,17.885431,17.885431,0,0,0,0,0,1,1,0,0,0,53.5,53.7,60.12,54.8,6.666666666666667,1,1,0,0,8,12,5,1,421.33334,546156.56,283548.72,209076.88,111267.42,2890.7573 -1696,2075,3726,-9,3724,3725,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.5716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,421.33334,546156.56,283548.72,209076.88,111267.42,2890.7573 -1696,2076,3727,-9,3724,3725,1,1,18,0,1,0,2,2,-9,0,4,8.0445194,7.96173,0,0,0,-986.34692,0,2,2,2019,10,0,25,0,1,2,1,13.600041,13.600041,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,3,1,710,154981.83,0,0,0,1484.4758 -1697,2077,3728,-9,3731,3730,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-936.78259,1,2,2,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,1,0,1,.86033452,0,25.04,67.13,-9,-9,3.333333333333333,4,2,0,1,0,8,1,0,767,0,0,0,0,-156.91019 -1697,2078,3729,-9,3731,3730,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.58868,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 -1697,2078,3730,3731,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,7.8542747,7.8041577,0,7,1,71.798439,0,-9,-9,2019,17,5,24,40,1,5,0,13.954004,13.954004,0,0,0,0,2,1,0,1,0,0,26.98,52.69,44.42,59.09,3.333333333333333,1,1,0,1,12,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 -1697,2078,3731,3730,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,7,-1,56.500889,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,0,1,0,0,44.42,59.09,26.98,52.69,6.666666666666667,3,4,1,0,0,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 -1697,2078,3732,-9,3731,3730,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1078.6982,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.25,64.48999999999999,-9,-9,8.333333333333334,4,2,0,1,0,8,3,0,544.75,739271.69,48102.414,823369.13,119802.62,3363.1526 -1698,2079,3733,3735,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.320569,8.486557,0,9,-3,54.416672,0,2,1,2019,11,2,38,51,1,2,0,12.496368,12.496368,0,0,0,0,0,0,0,0,1.7036134,0,50.52,48.02,45.39,49.09,8.333333333333334,1,1,0,0,10,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 -1698,2079,3734,-9,3733,3735,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-867.55927,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 -1698,2079,3735,3733,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.9692488,9.1645193,0,9,3,-10.269146,0,-9,-9,2019,12,1,40,45,1,1,0,25.615129,25.615129,0,0,0,0,0,0,0,0,0,0,45.39,49.09,50.52,48.02,6.666666666666667,1,1,0,0,7,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 -1698,2079,3736,-9,3733,3735,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6781,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,561.25,598875.38,372106.06,314123.13,152401.59,4423.5415 -1699,2080,3737,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.7586279,8.762207,0,0,0,-927.30096,0,2,2,2019,13,3,35,37,1,3,0,20.107016,20.107016,0,0,0,0,0,1,1,0,0,0,29.24,60.65,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,387,632281.38,484144.31,132742.61,83214.555,1824.1053 -1700,2081,3738,3739,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.7234635,6.6540556,41,-1,-4.5691886,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7175303,44.11,55.31,57.33,53.46,6.666666666666667,1,1,0,0,9,2,5,1,471.5,1508910,368513.66,0,0,2333.9478 -1700,2081,3739,3738,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.9617777,8.4884653,0,41,1,97.56144,0,3,3,2019,8,0,42,40,1,0,0,19.490578,19.490578,0,0,0,0,2,0,0,0,0,0,57.33,53.46,44.11,55.31,8.333333333333334,1,1,0,0,10,2,5,1,471.5,1508910,368513.66,0,0,2333.9478 -1701,2082,3740,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3028564,8.2489243,0,0,0,-1038.2612,0,3,3,2019,12,0,37,37,1,0,0,10.49022,10.49022,0,0,0,0,0,1,1,0,0,0,45.82,46.7,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,754,650208.19,371467.97,239208.11,0,2544.0029 -1702,2083,3741,-9,3742,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.9464,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,12,1,1,299.5,-127648.56,0,0,0,98.846481 -1702,2083,3742,-9,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,0,0,0,0,0,-924.41846,-9,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.3542433,0,44.17,49.99,-9,-9,5,3,4,0,0,3,12,1,1,299.5,-127648.56,0,0,0,98.846481 -1703,2084,3743,3744,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,6,0,0,0,3,3,2019,31,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,40.05,24.87,53.43,47.48,3.333333333333333,1,1,0,0,2,12,1,1,620.5,413462.38,-40863.5,75377.852,0,701.0448 -1703,2084,3744,3743,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,6,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.3609796,0,53.43,47.48,40.05,24.87,8.333333333333334,1,1,0,0,0,12,1,1,620.5,413462.38,-40863.5,75377.852,0,701.0448 -1704,2085,3745,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-939.7561,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,66.65000000000001,18.22,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1385,197030.41,-169221.56,156728.23,0,957.86243 -1705,2086,3746,-9,3748,3747,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.29132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1013,-91299.031,-50118.074,240337.59,141196,1603.1704 -1705,2086,3747,3748,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,7.8278112,8.2155418,0,5,0,83.735771,0,-9,-9,2019,10,0,50,37,1,1,0,6.4071894,6.4071894,0,0,0,0,0,1,1,0,0,0,48,59,52.72,55.58,7,1,1,0,0,4,4,3,0,1013,-91299.031,-50118.074,240337.59,141196,1603.1704 -1705,2086,3748,3747,-9,-9,1,0,22,1,1,0,2,2,-9,0,5,0,0,0,5,0,-150.92413,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,48,59,8.333333333333334,1,1,1,0,4,4,3,0,1013,-91299.031,-50118.074,240337.59,141196,1603.1704 -1706,2087,3749,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,5.3941212,5.1857667,0,0,-1015.7285,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,5.6027598,0,41.71,52.41,-9,-9,6.666666666666667,3,4,0,0,0,4,2,0,491,23038.129,0,0,0,208.25769 -1706,2088,3750,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,5.1293397,5.1799116,0,0,-926.14746,-9,-9,-9,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,5.1870289,0,51.22,41.36,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,227,24333.148,74427.852,0,0,8.5749741 -1707,2089,3751,-9,3754,3752,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.22046,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 -1707,2089,3752,3754,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,9.1641445,9.1628885,0,11,1,38.431206,0,2,2,2019,25,10,34,45,1,10,0,27.772257,27.772257,0,0,0,0,0,1,1,0,3.5177622,0,20,69.18000000000001,36.76,44.17,3.333333333333333,1,1,0,0,10,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 -1707,2089,3753,-9,3754,3752,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.4252,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 -1707,2089,3754,3752,-9,-9,1,0,33,0,2,0,1,1,-9,1,2,0,0,0,11,-1,-32.77232,0,1,2,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,36.76,44.17,20,69.18000000000001,6.666666666666667,1,1,0,0,4,12,4,1,421.25,120715.91,168020.25,245667.75,175516.59,3305.4917 -1708,2090,3755,3756,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,54,5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.1367285,0,59.79,45.37,54.2,57.49,10,1,1,0,0,5,7,1,1,1539,-80276.203,-59538.063,215476.55,0,1451.4822 -1708,2090,3756,3755,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,54,-5,0,0,3,-9,2019,7,0,0,15,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6223226,0,54.2,57.49,59.79,45.37,10,1,1,0,0,10,7,1,1,1539,-80276.203,-59538.063,215476.55,0,1451.4822 -1709,2091,3757,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.9816928,8.3260679,0,2,-4,82.433868,0,2,-9,2019,16,4,44,43,1,4,0,8.3096056,8.3096056,0,0,0,0,0,0,0,0,0,0,21.11,55.34,50,57,3.333333333333333,1,1,0,1,11,13,3,0,364,177408.45,195142.33,0,0,1100.1777 -1710,2092,3758,3759,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,1.8081156,1.83722,49,0,125.48087,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.7037191,2.3185892,43.59,45.29,41.17,59.31,1.666666666666667,1,1,0,0,2,7,2,0,614.5,244097.44,33826.391,0,0,664.87305 -1710,2092,3759,3758,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,49,0,116.18948,0,3,3,2019,7,0,0,41,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5583408,0,41.17,59.31,43.59,45.29,10,1,1,0,0,8,7,2,0,614.5,244097.44,33826.391,0,0,664.87305 -1711,2093,3760,3761,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,7.9292021,7.6963801,0,37,-3,76.114281,0,2,2,2019,10,0,43,44,1,0,0,5.0343685,5.0343685,0,0,0,0,2,0,0,0,1.7485323,0,59.43,58.05,57.23,42.49,8.333333333333334,1,1,0,0,9,2,4,1,380.5,203167.36,-29179.219,115859.04,39704.18,2750.5327 -1711,2093,3761,3760,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.4594488,8.2965164,0,8,3,141.51016,0,-9,-9,2019,8,0,37,37,1,0,0,11.714251,11.714251,0,0,0,0,2,0,0,0,2.0131576,0,57.23,42.49,59.43,58.05,8.333333333333334,1,1,0,0,9,2,4,1,380.5,203167.36,-29179.219,115859.04,39704.18,2750.5327 -1711,2094,3762,-9,3761,3760,1,1,27,0,0,0,2,2,-9,0,3,7.8550525,7.9755335,0,0,0,-1027.8052,0,2,2,2019,6,0,44,45,1,0,1,7.7841096,7.7841096,0,0,0,0,2,0,0,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,621,253347.8,0,0,0,2089.5769 -1712,2095,3763,-9,-9,-9,1,1,26,0,0,0,1,1,-9,1,4,0,0,0,0,0,-941.45502,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,25.35,64.48999999999999,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,495,110954.96,0,0,0,-1.954724 -1713,2096,3764,3765,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,6.1015863,6.5229621,5.54422,11,3,-67.664131,0,2,3,2019,13,5,30,30,1,5,0,1.5671971,1.5671971,0,0,0,0,0,1,1,0,5.4552336,0,40.07,64.29000000000001,36.33,59.23,3.333333333333333,1,1,0,0,10,12,3,1,1024.3334,42051.363,43110.344,128122.05,96395.273,2732.9758 -1713,2096,3765,3764,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.4617376,8.959096,0,11,-3,72.547165,0,2,2,2019,13,3,37,40,1,3,0,15.772417,15.772417,0,0,0,0,0,1,1,0,6.6883974,0,36.33,59.23,40.07,64.29000000000001,6.666666666666667,1,1,0,0,8,12,3,1,1024.3334,42051.363,43110.344,128122.05,96395.273,2732.9758 -1713,2096,3766,-9,3764,3765,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1024.3334,42051.363,43110.344,128122.05,96395.273,2732.9758 -1714,2097,3767,3768,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,0,0,0,24,-2,-24.915228,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,43.1,59.07,6.666666666666667,2,3,0,0,0,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 -1714,2097,3768,3767,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.256978,8.1911364,0,9,2,-15.786937,0,3,3,2019,12,0,37,38,1,0,0,11.946148,11.946148,0,0,0,0,0,1,1,0,0,0,43.1,59.07,52,54.51,3.333333333333333,2,3,0,0,12,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 -1714,2097,3769,-9,3767,3768,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.6194,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 -1714,2097,3770,-9,3767,3768,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.0466,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,1496.5,452552.63,312727.47,0,0,2060.4895 -1715,2098,3771,3772,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,51,-1,4.5109816,0,-9,2,2019,11,1,0,0,4,1,0,0,0,1,0,28.090309,0,2,1,1,0,1.3509357,0,57.33,32.79,51.01,39.32,8.333333333333334,1,1,0,0,5,10,2,1,406.5,561927.19,365464.69,203267.98,0,1751.8867 -1715,2098,3772,3771,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.3034554,7.308414,51,1,54.313892,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1568756,51.01,39.32,57.33,32.79,8.333333333333334,1,1,0,0,6,10,2,1,406.5,561927.19,365464.69,203267.98,0,1751.8867 -1716,2099,3773,3775,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.1818056,8.9982052,0,26,-2,-82.277565,0,2,-9,2019,9,0,37,37,1,0,0,22.162386,22.162386,0,0,0,0,0,1,1,0,0,0,52.23,55.6,54.44,51.82,8.333333333333334,4,2,0,0,8,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 -1716,2099,3774,-9,3773,3775,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-920.46912,-9,1,1,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.45754603,0,53.75,59.47,-9,-9,10,4,2,0,0,3,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 -1716,2099,3775,3773,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.0925388,9.2074671,0,19,2,10.484884,0,2,2,2019,7,1,60,60,1,1,0,18.126923,18.126923,0,0,0,0,7,1,1,0,0,0,54.44,51.82,52.23,55.6,6.666666666666667,4,2,0,0,7,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 -1716,2099,3776,-9,3773,3775,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.4501,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,5,1,931.75,868001.94,445213.44,618062,204891.06,6449.2539 -1717,2100,3777,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1031.5,-9,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.17,30.05,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,759,14223.19,0,132361.16,0,717.49542 -1718,2101,3778,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-972.72498,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,24.568565,0,0,1,1,0,0,0,43,26.32,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,825,102808.83,0,0,0,1717.2491 -1719,2102,3779,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.0583353,7.1988511,0,0,0,-998.42981,0,2,3,2019,3,0,40,36,1,0,0,5.1865597,5.1865597,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,3,4,0,0,8,5,2,0,375,-52696.188,-31632.91,0,0,1409.0492 -1719,2102,3780,-9,3779,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.09344,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,2,0,375,-52696.188,-31632.91,0,0,1409.0492 -1720,2103,3781,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.7226706,8.2907543,0,0,0,-1005.7409,0,2,2,2019,10,0,45,45,1,0,0,10.936794,10.936794,0,0,0,0,14.5,1,1,0,0,0,55.2,49.4,-9,-9,3.333333333333333,1,1,0,0,7,2,5,0,2166,127854.6,14610.923,114002.37,0,2348.4761 -1721,2104,3782,3783,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,8.6999578,8.8473663,0,17,-2,-13.897239,0,3,2,2019,11,0,43,46,1,0,0,16.469727,16.469727,0,0,0,0,7,1,1,0,6.8290057,0,47.15,51.13,38.16,49.27,5,2,3,0,0,12,8,4,1,2489,311466.88,-55395.125,459523.41,139887.41,4652.1152 -1721,2104,3783,3782,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,7.8869491,8.2178059,0,17,2,-17.929726,0,3,2,2019,12,0,36,39,1,0,0,10.599825,10.599825,0,0,0,0,14.5,1,1,0,0,0,38.16,49.27,47.15,51.13,5,2,3,0,0,12,8,4,1,2489,311466.88,-55395.125,459523.41,139887.41,4652.1152 -1722,2105,3784,3785,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.4468174,6.77284,10,-6,49.299911,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.2898202,57.06,57.76,55.98,14.38,10,1,1,0,0,0,10,3,1,230,553389.63,0,405151.63,0,2939.0718 -1722,2105,3785,3784,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,7.4996428,7.0389528,10,6,-28.366749,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2572236,7.0354471,55.98,14.38,57.06,57.76,6.666666666666667,1,1,0,0,12,10,3,1,230,553389.63,0,405151.63,0,2939.0718 -1723,2106,3786,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.8461108,6.7518334,0,0,0,-973.01154,0,2,2,2019,10,1,22,40,1,1,0,5.1420698,5.1420698,0,0,0,0,27,1,1,0,0,0,51.46,39.65,-9,-9,8.333333333333334,1,1,0,0,6,11,2,0,289,108043.02,0,0,0,1343.1511 -1724,2107,3787,3789,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,9.1069117,9.1507254,5.9889908,2,0,64.907959,0,2,2,2019,9,0,40,48,1,0,0,23.679296,23.679296,0,0,0,0,0,1,1,0,6.9826894,0,55.79,52.62,33.49,64.26000000000001,8.333333333333334,1,1,0,0,1,8,5,1,1355,700252.06,298573,604616.56,317197,6841.3892 -1724,2107,3788,-9,3789,3787,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.4839,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,1355,700252.06,298573,604616.56,317197,6841.3892 -1724,2107,3789,3787,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.1877594,8.3118544,0,2,0,147.75114,0,-9,-9,2019,20,7,42,42,1,7,0,9.8724136,9.8724136,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,55.79,52.62,8.333333333333334,1,1,0,0,5,8,5,1,1355,700252.06,298573,604616.56,317197,6841.3892 -1725,2108,3790,3791,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,42,2,-29.576771,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,74.5,1,0,1,0,0,38.83,35.14,42.62,15.89,6.666666666666667,1,1,0,0,9,7,2,0,1226.6666,445928.41,31340.441,243431.33,0,2494.6475 -1725,2108,3791,3790,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,6.6035571,6.6943388,42,-2,63.044048,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,0,1,0,6.4897299,42.62,15.89,38.83,35.14,3.333333333333333,1,1,0,0,1,7,2,0,1226.6666,445928.41,31340.441,243431.33,0,2494.6475 -1725,2108,3792,-9,3791,3790,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-978.01953,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,6,-9,0,0,7,2,0,1226.6666,445928.41,31340.441,243431.33,0,2494.6475 -1726,2109,3793,3794,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-4,-85.103752,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,.25464934,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,6,2,1,1044,-45710.227,-972.30078,214589.23,0,1349.1511 -1726,2109,3794,3793,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.637342,5.7651,60,4,53.512775,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8252053,5.7417736,55,45,52,45,8,1,1,0,0,0,6,2,1,1044,-45710.227,-972.30078,214589.23,0,1349.1511 -1727,2110,3795,3796,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.3905792,9.3281469,0,3,-1,97.598511,0,3,3,2019,9,0,60,65,1,0,0,20.837711,20.837711,0,0,0,0,0,0,0,0,.40735257,0,50.48,56.4,44.19,58.01,8.333333333333334,1,1,0,0,8,11,5,1,648.5,589030.06,287186.25,245292.52,0,4281.4482 -1727,2110,3796,3795,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.1863718,8.1779671,0,3,1,45.905334,0,2,2,2019,8,0,36,45,1,0,0,10.611097,10.611097,0,0,0,0,2,0,0,0,0,0,44.19,58.01,50.48,56.4,8.333333333333334,1,1,0,0,7,11,5,1,648.5,589030.06,287186.25,245292.52,0,4281.4482 -1727,2111,3797,-9,3796,3795,1,1,19,0,1,0,2,2,-9,0,4,7.0289016,7.1409621,0,0,0,-952.64563,0,2,1,2019,11,0,38,0,1,2,1,3.5806968,3.5806968,0,0,0,0,0,0,0,0,.8578192,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,841,0,0,0,0,668.41809 -1728,2112,3798,3799,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.4322701,7.3478408,0,26,0,-86.89238,0,2,2,2019,10,0,23,22,1,1,0,7.9899278,7.9899278,0,0,0,0,14.5,1,1,0,0,0,50,54,26.06,24.75,8,2,3,0,0,10,8,3,1,934,488334.09,206607.44,328341.34,98796.891,2364.5278 -1728,2112,3799,3798,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,7.7968531,7.9125361,28,9,23.812651,0,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,14.5,1,1,0,0,7.6142373,26.06,24.75,50,54,1.666666666666667,2,3,0,0,0,8,3,1,934,488334.09,206607.44,328341.34,98796.891,2364.5278 -1728,2113,3800,-9,3798,3799,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-983.00195,-9,3,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.07,52.43,-9,-9,5,2,3,1,0,2,8,1,1,1050,57348.172,0,0,0,0 -1728,2114,3801,-9,3798,3799,1,0,22,0,0,0,2,2,1,1,2,0,0,0,0,0,-1088.8986,-9,3,1,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,39.43,37.43,-9,-9,5,2,3,1,0,0,8,1,1,459,189251.14,0,0,0,691.90857 -1729,2115,3802,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.6626124,8.1029024,6.087388,0,0,-875.14636,0,3,3,2019,11,0,24,36,1,0,0,10.5703,10.5703,0,0,0,0,0,1,1,0,5.7800975,0,46.39,60.99,-9,-9,6.666666666666667,1,1,0,0,9,12,3,0,612,100586.82,90561.273,81500.813,77942.82,2193.1599 -1729,2115,3803,-9,3802,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.0683,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,612,100586.82,90561.273,81500.813,77942.82,2193.1599 -1729,2115,3804,-9,3802,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.93158,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,0,612,100586.82,90561.273,81500.813,77942.82,2193.1599 -1730,2116,3805,3806,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.1482115,7.9145985,0,25,0,124.62638,0,1,1,2019,12,0,25,15,1,0,0,16.066031,16.066031,0,0,0,0,0,0,0,0,6.4679227,0,51.98,54.53,57.33,53.46,6.666666666666667,1,1,0,0,9,12,5,1,875,1755082.5,1248402.1,347343.75,0,5866.792 -1730,2116,3806,3805,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.2003469,9.139636,0,25,0,-12.203686,0,1,1,2019,6,0,40,42,1,0,0,34.656384,34.656384,0,0,0,0,0,0,0,0,7.1455441,0,57.33,53.46,51.98,54.53,8.333333333333334,1,1,0,0,8,12,5,1,875,1755082.5,1248402.1,347343.75,0,5866.792 -1730,2117,3807,-9,3805,3806,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1004.1634,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,4.144248,0,49.02,58.89,-9,-9,10,1,1,0,0,0,12,1,1,440,-41097.285,0,0,0,163.53275 -1731,2118,3808,3809,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,66,-2,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,26.59,63.44,39.68,1.666666666666667,1,1,0,0,0,10,1,1,331,219847.3,-55753.996,179774.63,0,1752.3956 -1731,2118,3809,3808,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,66,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2796636,0,63.44,39.68,42.61,26.59,10,1,1,0,0,0,10,1,1,331,219847.3,-55753.996,179774.63,0,1752.3956 -1732,2119,3810,3811,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,56,-2,21.304907,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9406904,0,56.1,49.93,57.16,56.15,10,1,1,0,0,0,7,3,1,662,757233.94,436727.81,272825.63,0,2584.3743 -1732,2119,3811,3810,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.7175326,7.8362608,56,2,52.688007,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6414895,57.16,56.15,56.1,49.93,8.333333333333334,1,1,0,0,0,7,3,1,662,757233.94,436727.81,272825.63,0,2584.3743 -1733,2120,3812,-9,3813,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-984.87549,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,42,1,1,0,0,0,50.61,25.48,-9,-9,6.666666666666667,1,1,0,0,5,6,2,1,1640,158647.44,0,0,0,1401.1815 -1733,2121,3813,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-958.39362,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,20.069759,0,0,1,1,0,4.2669816,0,44.41,23.97,-9,-9,5,1,1,0,0,0,6,1,1,591,156409.67,0,603262.94,0,680.19196 -1734,2122,3814,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,8.1579065,8.0296316,0,0,-1048.8981,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9481571,7.9784131,54.1,59.11,-9,-9,10,1,1,0,0,0,8,4,1,1706,655366.63,428539.09,169242.52,0,1926.8314 -1735,2123,3815,-9,3816,3820,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-935.93359,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 -1735,2123,3816,3820,-9,-9,1,0,43,0,4,0,1,1,-9,0,4,6.3163934,6.3190236,0,18,1,-100.56231,0,2,2,2019,8,0,15,20,1,0,0,4.2482791,4.2482791,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.35,45.63,6.666666666666667,1,1,0,0,4,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 -1735,2123,3817,-9,3816,3820,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-891.07361,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 -1735,2123,3818,-9,3816,3820,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1066.5183,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 -1735,2123,3819,-9,3816,3820,1,1,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-940.60016,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 -1735,2123,3820,3816,-9,-9,1,1,42,0,4,0,2,2,-9,0,3,8.3980885,8.8181419,0,20,-1,-83.449852,0,2,2,2019,9,0,55,55,1,0,0,13.495135,13.495135,0,0,0,0,0,1,1,0,0,0,56.35,45.63,57.16,56.15,6.666666666666667,1,1,0,0,8,9,3,1,1513.1666,499510.31,162136.19,344853.06,0,2252.8303 -1736,2124,3821,3822,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.0821853,6.9365368,9,9,8.331954,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3660975,6.8684449,56.19,41.56,36.75,42.48,6.666666666666667,1,1,0,0,0,8,3,1,916,326871.06,194533.56,0,0,2380.8574 -1736,2124,3822,3821,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.4422712,6.778204,9,0,-13.995807,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.5104222,6.5378881,36.75,42.48,56.19,41.56,8.333333333333334,3,4,0,0,0,8,3,1,916,326871.06,194533.56,0,0,2380.8574 -1736,2125,3823,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.6827283,7.904295,0,0,0,-1033.395,0,-9,-9,2019,8,0,40,40,1,0,0,8.4701204,8.4701204,0,0,0,0,0,1,1,0,3.4846749,0,49.06,58.64,-9,-9,6.666666666666667,1,1,0,0,10,8,3,1,498,-24327.445,0,0,0,1366.3951 -1737,2126,3824,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.1987839,8.009428,0,2,2,-74.656235,0,2,-9,2019,11,0,50,60,1,0,0,7.1593447,7.1593447,0,0,0,0,0,1,1,0,0,0,49.16,42.18,11.62,63.59,8.333333333333334,1,1,0,0,9,2,4,1,1572,-246768.72,-6949.5273,0,0,1807.2244 -1737,2127,3825,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.1378956,8.1343136,0,2,-2,34.69173,-9,-9,-9,2019,33,12,23,0,1,12,0,13.215062,13.215062,0,0,0,0,0,1,1,0,0,0,11.62,63.59,49.16,42.18,5,1,1,0,0,9,2,4,1,414,-96528.602,-13727.984,0,0,1018.6257 -1737,2127,3826,-9,3825,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-918.30713,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,2,4,1,414,-96528.602,-13727.984,0,0,1018.6257 -1738,2128,3827,3828,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.5929785,7.131824,0,4,-6,40.859314,0,-9,-9,2019,16,4,32,32,1,4,0,5.9086642,5.9086642,0,0,0,0,0,0,0,0,.99345124,0,35.76,33.86,57.88,43.83,3.333333333333333,2,3,0,0,10,7,4,1,228,2702194,1520197.6,859658.19,0,3113.9648 -1738,2128,3828,3827,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.4928303,8.3274364,0,4,6,50.594776,0,3,3,2019,12,0,40,40,1,0,0,11.235006,11.235006,0,0,0,0,0,0,0,0,0,0,57.88,43.83,35.76,33.86,6.666666666666667,2,3,0,0,10,7,4,1,228,2702194,1520197.6,859658.19,0,3113.9648 -1739,2129,3829,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.4571724,8.4711313,0,0,0,-1127.8291,0,3,2,2019,10,0,39,47,1,0,0,14.665405,14.665405,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,362,486842.19,174465.47,0,0,1789.6106 -1740,2130,3830,3831,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3727441,7.2719154,54,3,23.127108,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6168675,62.25,48.33,56.41,53.71,8.333333333333334,1,1,0,0,0,11,2,1,832,463792.81,310222.09,200860.52,0,1802.7051 -1740,2130,3831,3830,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.8185811,5.4722633,54,-3,-53.224316,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1959872,5.7625995,56.41,53.71,62.25,48.33,10,1,1,0,0,0,11,2,1,832,463792.81,310222.09,200860.52,0,1802.7051 -1741,2131,3832,3833,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,47,-1,94.285088,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,0,38.59,60.85,55.76,52.64,8.333333333333334,1,1,0,0,3,7,2,1,904.5,581331.56,291350.31,261788.91,0,2056.3149 -1741,2131,3833,3832,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.7766461,7.1633177,47,1,39.410294,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.1731758,7.0526681,55.76,52.64,38.59,60.85,8.333333333333334,1,1,0,0,8,7,2,1,904.5,581331.56,291350.31,261788.91,0,2056.3149 -1742,2132,3834,-9,3837,3836,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.87262,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 -1742,2132,3835,-9,3837,3836,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.63464,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 -1742,2132,3836,3837,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,7.0990958,7.4565377,0,7,5,-136.90926,0,2,2,2019,9,0,50,52,1,0,0,3.3347933,3.3347933,0,0,0,0,0,1,1,0,5.9749675,0,53.38,47.51,53.16,51.26,6.666666666666667,1,1,0,0,8,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 -1742,2132,3837,3836,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,7,-5,-132.43828,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.28169367,0,53.16,51.26,53.38,47.51,0,1,1,0,0,1,4,2,1,1083.25,1524557.4,1307884,190949.56,111059.91,1442.0989 -1742,2133,3838,-9,3837,3836,1,1,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-914.22809,-9,2,1,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,419,71132.352,0,0,0,572.22888 -1743,2134,3839,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.2238798,6.4332361,0,0,-1040.5948,0,3,3,2019,16,4,0,34,4,4,0,0,0,1,0,19.222187,0,0,1,1,0,0,6.1868062,42.5,30.78,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,93,614590,0,232256.5,0,1445.9126 -1744,2135,3840,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2091804,6.4370117,0,0,-1027.9559,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.3620272,6.653131,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,415,247159.27,106963.52,0,0,1097.9963 -1745,2136,3841,3842,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.813612,7.1796174,4,0,58.261589,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7293797,7.0533538,57.16,56.15,47.81,52.33,8.333333333333334,1,1,0,0,6,9,3,1,602,1463479.5,445529.44,335916.28,0,2714.9229 -1745,2136,3842,3841,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.0287757,7.0373068,4,9,-3.1317885,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1410565,7.3172145,47.81,52.33,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,602,1463479.5,445529.44,335916.28,0,2714.9229 -1746,2137,3843,3844,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,5.7708831,5.8320408,9,-1,-14.160542,0,1,1,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,6.1799955,0,45.4,53.52,45.23,37.81,6.666666666666667,1,1,0,0,8,1,2,1,239.5,1964672.3,1421438.3,259576.34,0,815.35504 -1746,2137,3844,3843,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,6.9570761,6.7030683,9,1,-56.935963,0,3,3,2019,9,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,7.2285395,6.8796453,45.23,37.81,45.4,53.52,6.666666666666667,1,1,0,0,10,1,2,1,239.5,1964672.3,1421438.3,259576.34,0,815.35504 -1747,2138,3845,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.2225,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.56,28.21,-9,-9,0,1,1,0,1,0,12,1,0,429,-295540.56,20674.002,0,0,477.88037 -1748,2139,3846,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.9077849,7.4656091,0,0,0,-1064.856,0,1,1,2019,14,2,42,38,1,2,0,8.0269289,8.0269289,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,8,13,4,1,1148,69041.195,13285.633,139427.7,39409.953,866.74121 -1748,2140,3847,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5686693,8.7601871,0,0,0,-1091.114,-9,-9,-9,2019,14,3,78,0,1,3,0,9.1133308,9.1133308,0,0,0,0,0,0,0,0,3.8535137,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,13,5,1,527,128779.05,50709.586,174454.23,92914.234,2597.9429 -1749,2141,3848,-9,3849,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.56628,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,707.25,42257.965,0,0,0,1943.2728 -1749,2141,3849,-9,-9,-9,1,0,46,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1064.325,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,.41015732,0,39.78,18.12,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,707.25,42257.965,0,0,0,1943.2728 -1749,2141,3850,-9,3849,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.1703,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.21857804,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,707.25,42257.965,0,0,0,1943.2728 -1749,2141,3851,-9,3849,-9,1,1,17,0,2,0,3,3,-9,0,3,0,0,0,0,0,-964.79114,0,3,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,7,1,1,0,0,0,34.99,52.9,-9,-9,3.333333333333333,1,1,0,0,2,9,1,0,707.25,42257.965,0,0,0,1943.2728 -1749,2142,3852,-9,3849,-9,1,1,24,0,2,0,2,2,-9,0,3,8.1774082,8.2131653,0,0,0,-952.88275,0,2,3,2019,10,0,60,36,1,0,1,6.3562474,6.3562474,0,0,0,0,2,1,1,0,0,0,46.41,53.09,-9,-9,5,1,1,0,0,4,9,4,0,126,243294.11,135496.83,0,0,1498.535 -1750,2143,3853,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.5258107,7.4172139,0,0,-1025.5149,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,3.2925797,8.9003763,21.907467,0,1,1,0,0,7.0038838,63.19,27.85,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,536,124431.2,110706.42,0,0,1829.3113 -1751,2144,3854,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-839.87958,0,1,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,47.3,-9,-9,6.666666666666667,3,4,0,0,7,8,1,0,467,506068.41,-65264.277,721522.5,0,965.46576 -1752,2145,3855,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.5743904,9.521678,0,0,0,-981.67358,0,1,2,2019,7,0,57,0,1,0,0,27.84734,27.84734,0,0,0,0,0,0,0,0,4.8983421,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,299,474880.97,258677.36,0,0,4820.0278 -1753,2146,3856,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1051.8328,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,874,501332.47,0,137168.91,0,80.781395 -1754,2147,3857,-9,-9,3858,1,1,50,0,0,0,3,3,-9,0,5,8.2137222,8.0584097,0,0,0,-989.95001,0,3,3,2019,8,0,43,0,1,0,0,8.5865746,8.5865746,0,0,0,0,0,1,1,0,1.4710774,0,40.03,62.02,-9,-9,10,1,1,0,0,13,13,4,1,267,52470.375,196691.56,0,0,914.32416 -1754,2148,3858,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1053.5347,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,-9,-9,7,4,6,0,0,0,13,1,1,279,-87107.891,0,0,0,984.76764 -1755,2149,3859,3860,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4877343,6.6531191,52,0,-124.78202,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5661868,6.8625102,57.16,56.15,48.11,56.11,8.333333333333334,1,1,0,0,11,2,3,1,549.5,2227855,1061478.6,461476.34,0,2710.0225 -1755,2149,3860,3859,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.874948,7.7023215,52,0,.97486973,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.2898707,7.5122914,48.11,56.11,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,549.5,2227855,1061478.6,461476.34,0,2710.0225 -1756,2150,3861,3862,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,6.8129725,6.9492455,42,0,-55.305927,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,4.2328291,6.8344145,45.41,10.82,52.38,55.95,8.333333333333334,1,1,0,0,3,12,4,1,464,1899214.5,1482690.4,135622.13,0,2567.8674 -1756,2150,3862,3861,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,7.9257221,8.2657661,6,0,44.341412,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2235327,52.38,55.95,45.41,10.82,8.333333333333334,1,1,0,0,6,12,4,1,464,1899214.5,1482690.4,135622.13,0,2567.8674 -1757,2151,3863,-9,3864,3866,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.3322,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 -1757,2151,3864,3866,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,6.5224366,6.8073735,0,11,0,87.904762,0,2,2,2019,8,0,11,11,1,0,0,7.2934871,7.2934871,0,0,0,0,0,1,1,0,5.0310326,0,54.37,54.8,51,57,8.333333333333334,1,1,0,0,9,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 -1757,2151,3865,-9,3864,3866,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.077,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 -1757,2151,3866,3864,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,6.7164392,6.6547561,0,2,0,-78.537033,0,-9,-9,2019,10,0,50,60,1,1,0,1.9693514,1.9693514,0,0,0,0,0,1,1,0,0,0,51,57,54.37,54.8,7,1,1,0,0,1,4,2,1,830.25,73184.656,38603.84,0,0,1580.6964 -1758,2152,3867,-9,3871,-9,1,0,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-878.67181,-9,2,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 -1758,2152,3868,-9,3871,3869,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-956.84357,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 -1758,2152,3869,3871,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.5883861,7.6481776,0,3,2,98.259087,0,-9,-9,2019,9,0,40,40,1,0,0,5.9404407,5.9404407,0,0,0,0,42,1,1,0,0,0,49.39,52.76,48.7,56.22,6.666666666666667,1,1,0,0,5,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 -1758,2152,3870,-9,3871,3869,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.8039,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 -1758,2152,3871,3869,-9,-9,1,0,34,0,4,0,2,2,-9,1,3,6.2768669,6.2900205,0,3,-2,-116.54324,0,2,2,2019,15,3,10,10,1,3,0,7.2106447,7.2106447,0,0,0,0,74.5,1,1,0,0,0,48.7,56.22,49.39,52.76,5,1,1,0,0,2,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 -1758,2152,3872,-9,3871,-9,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-920.75696,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,4,2,0,1484.1666,-52138.641,43083.117,104922.35,0,2688.0667 -1759,2153,3873,3874,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.566874,6.8298006,9,23,79.600166,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.4306548,0,27,1,1,0,0,6.655417,44.14,21.87,43.66,19.32,5,1,1,0,0,1,11,2,1,411,324830.09,180663.81,200517.13,0,2621.0623 -1759,2153,3874,3873,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,9,-23,84.880684,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.66,19.32,44.14,21.87,1.666666666666667,1,1,0,0,0,11,2,1,411,324830.09,180663.81,200517.13,0,2621.0623 -1760,2154,3875,3876,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.1734695,6.7722306,10,5,109.87123,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0412841,6.7563887,41.42,40.89,21.43,21.57,8.333333333333334,1,1,0,0,0,2,2,1,198.5,361387,121705.9,164188.44,0,1563.8208 -1760,2154,3876,3875,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,10,-5,80.023293,0,-9,-9,2019,30,12,0,0,4,12,0,0,0,1,0,10.91253,0,0,1,1,0,0,0,21.43,21.57,41.42,40.89,3.333333333333333,1,1,0,0,0,2,2,1,198.5,361387,121705.9,164188.44,0,1563.8208 -1761,2155,3877,-9,3878,3880,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.57794,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 -1761,2155,3878,3880,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,5,-20,-59.425156,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,40.48,17.96,7,2,3,0,1,0,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 -1761,2155,3879,-9,3878,3880,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.28198,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 -1761,2155,3880,3878,-9,-9,1,1,66,0,2,0,1,1,-9,1,1,6.3813219,6.0970993,0,5,20,30.635283,0,3,2,2019,13,1,16,16,1,1,0,4.1825995,4.1825995,1,0,23.805731,0,7,1,1,0,0,0,40.48,17.96,50,54,3.333333333333333,2,3,0,1,8,6,2,0,513.75,484974.59,306926.03,103104.55,0,1921.8176 -1761,2156,3881,-9,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1035.9989,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,1,0,6,2,0,1661,-57552.254,0,0,0,-143.20171 -1762,2157,3882,3883,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.1836696,4.6678081,10,1,29.437288,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.1622417,5.0424628,58.98,29.7,62.49,55.09,8.333333333333334,1,1,0,0,0,8,3,1,1051,2027783.8,943717.56,398981.06,0,2921.189 -1762,2157,3883,3882,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,8.256793,7.9205832,54,-1,-113.72751,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1850703,8.0987062,62.49,55.09,58.98,29.7,10,1,1,0,0,6,8,3,1,1051,2027783.8,943717.56,398981.06,0,2921.189 -1763,2158,3884,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.5223064,7.6080551,0,0,-1012.9674,0,3,2,2019,21,8,0,0,4,8,0,0,0,1,4.3166575,16.226423,49.923279,0,1,1,0,0,7.8555889,30.85,17.26,-9,-9,0,1,1,0,0,0,12,3,1,2859,649409.31,343601.91,74048.883,0,2105.7229 -1764,2159,3885,3886,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.5870876,9.7872562,0,6,-4,60.232162,0,3,3,2019,7,0,52,52,1,0,0,41.618942,41.618942,0,0,0,0,0,1,1,0,2.6061924,0,41.07,60.93,54.2,57.49,10,1,1,0,0,7,11,5,1,4208.5,1695541.5,905438.38,384969.5,7178.0767,28378.363 -1764,2159,3886,3885,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.2192931,6.5085235,6,4,-177.431,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4946871,6.6001458,54.2,57.49,41.07,60.93,8.333333333333334,1,1,0,0,4,11,5,1,4208.5,1695541.5,905438.38,384969.5,7178.0767,28378.363 -1765,2160,3887,3888,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.1666908,7.2511449,49,3,-62.710903,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.3916168,7.504405,51.47,53.17,32.16,24.38,8.333333333333334,1,1,0,0,3,2,2,1,1106.5,307493.66,70639.172,294774.06,0,4065.0732 -1765,2160,3888,3887,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5204935,6.0346136,50,-3,-141.84442,0,-9,2,2019,22,9,0,0,4,9,0,0,0,1,0,3.6560366,0,7,1,1,0,8.3839283,6.0184522,32.16,24.38,51.47,53.17,3.333333333333333,1,1,0,0,0,2,2,1,1106.5,307493.66,70639.172,294774.06,0,4065.0732 -1766,2161,3889,3890,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.8191366,7.474854,40,-1,-9.126152,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.145267,7.8311114,56.94,43.99,57.06,57.76,8.333333333333334,1,1,0,0,8,6,4,1,264.5,1644741,1253353,242256.91,0,2858.373 -1766,2161,3890,3889,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.8060684,7.7664361,40,1,-37.731121,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2563219,7.7661781,57.06,57.76,56.94,43.99,8.333333333333334,1,1,0,0,3,6,4,1,264.5,1644741,1253353,242256.91,0,2858.373 -1767,2162,3891,-9,3893,3892,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.02966,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 -1767,2162,3892,3893,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,8.0351934,8.1278925,0,15,1,73.893967,0,-9,-9,2019,9,0,51,55,1,1,0,7.6695719,7.6695719,0,0,0,0,2,1,1,0,1.3278878,0,51,56,55.03,41.95,8,2,3,0,0,8,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 -1767,2162,3893,3892,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,7.5290494,7.4790826,0,15,-1,-16.768066,0,2,2,2019,8,1,38,40,1,1,0,6.4514775,6.4514775,0,0,0,0,0,1,1,0,0,0,55.03,41.95,51,56,10,2,3,0,0,9,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 -1767,2162,3894,-9,3893,3892,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.2367,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 -1767,2162,3895,-9,3893,3892,1,0,12,1,3,1,3,0,-9,0,5,0,0,0,0,0,-886.78369,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,3,1,721.40002,405850.22,204729.7,261376,159941.3,2637.0552 -1768,2163,3896,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-847.30609,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.46,45.88,-9,-9,5,1,1,0,0,0,12,1,0,2244,248702.44,0,0,0,1710.5088 -1769,2164,3897,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.3842206,5.35567,0,0,-1006.2415,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2028413,5.5849442,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1345,316041.72,-61862.484,142265.78,0,971.56781 -1770,2165,3898,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1024.7736,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,13,1,1,1195,92153.672,0,0,0,544.88904 -1771,2166,3899,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,6.7900438,6.7440729,0,0,-933.8291,0,3,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.1687951,6.6636004,33.95,26.99,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,327,-89259.148,29743.584,0,0,1192.0289 -1772,2167,3900,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.0378828,6.8825464,0,0,0,-955.77563,0,2,2,2019,15,6,22,0,1,6,0,6.2837901,6.2837901,0,0,0,0,0,1,1,0,0,0,38.89,56.26,-9,-9,6.666666666666667,2,3,0,0,1,8,2,0,498,-99127.945,0,0,0,1795.5797 -1773,2168,3901,3902,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,6,-2,-51.968098,0,2,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,1.1008323,0,52,45,60.24,37.21,3.333333333333333,1,1,0,0,0,7,3,1,594,850757,148496,380388.69,0,2406.9263 -1773,2168,3902,3901,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.1040802,8.1196623,6,2,5.1263685,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.828258,7.8400674,60.24,37.21,52,45,6.666666666666667,1,1,0,0,0,7,3,1,594,850757,148496,380388.69,0,2406.9263 -1774,2169,3903,-9,3904,3905,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.38751,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 -1774,2169,3904,3905,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.6743584,7.8807554,0,16,1,-53.780235,0,1,1,2019,14,2,47,40,1,2,0,5.6226673,5.6226673,0,0,0,0,0,0,0,0,2.6925695,0,45.91,59.89,61.52,45.11,5,1,1,0,0,8,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 -1774,2169,3905,3904,-9,-9,1,1,37,0,2,0,1,1,-9,0,2,9.1892948,8.8656273,0,16,-1,101.21458,0,3,2,2019,8,0,38,48,1,0,0,22.483603,22.483603,0,0,0,0,0,0,0,0,0,0,61.52,45.11,45.91,59.89,8.333333333333334,1,1,0,0,10,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 -1774,2169,3906,-9,3904,3905,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.3602,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,0,787.75,-41266.703,25106.469,139019.66,94193.031,3669.9434 -1775,2170,3907,3908,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.342598,6.5123434,48,5,-31.357203,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7383046,6.1801696,58.3,28.98,50,47,5,1,1,0,0,0,7,2,1,2124,698954.25,439586.41,245224.36,0,1972.9838 -1775,2170,3908,3907,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.6268358,6.4484372,0,48,-5,104.96525,0,3,3,2019,7,0,12,16,1,0,0,6.7106156,6.7106156,0,0,0,0,0,1,1,0,4.7626777,0,50,47,58.3,28.98,8.333333333333334,1,1,0,0,12,7,2,1,2124,698954.25,439586.41,245224.36,0,1972.9838 -1776,2171,3909,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.9307055,7.0979815,0,0,-942.23181,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.998096,6.8187952,53.35,51.35,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,645,574074.81,190627.53,502520.53,0,1098.3014 -1777,2172,3910,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,7.5209055,7.4074097,0,0,0,-1053.4697,0,2,2,2019,6,0,45,50,1,0,0,5.3976994,5.3976994,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,662,112923.85,0,0,0,903.86371 -1778,2173,3911,3912,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.3528671,8.1935644,0,10,-1,-63.149532,0,2,2,2019,9,0,31,33,1,0,0,18.499655,18.499655,0,0,0,0,0,0,0,0,8.1022558,0,51.02,52.22,54.45,56.22,8.333333333333334,1,1,0,0,11,12,5,1,465.5,1634908.5,1660458.6,338745.31,37584.383,5311.9551 -1778,2173,3912,3911,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.6017838,8.6681004,7.5154333,10,1,-63.849556,0,2,2,2019,6,0,46,50,1,0,0,9.9848433,9.9848433,0,0,0,0,0,0,0,0,3.3405905,7.5273013,54.45,56.22,51.02,52.22,8.333333333333334,1,1,0,0,11,12,5,1,465.5,1634908.5,1660458.6,338745.31,37584.383,5311.9551 -1778,2174,3913,-9,3911,3912,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1024.6052,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.5272098,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,211,17884.689,0,0,0,-656.4787 -1779,2175,3914,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,7.1235394,7.2819967,0,0,0,-988.00427,0,2,2,2019,10,0,30,21,1,0,0,6.4871736,6.4871736,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,626,539101.75,79325.703,0,0,694.18964 -1779,2176,3915,-9,3914,-9,1,0,22,0,0,0,1,1,-9,0,4,8.0489292,8.0491085,0,0,0,-972.33948,-9,2,-9,2019,8,0,39,0,1,0,1,8.4070711,8.4070711,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,2,12,4,1,1082,158371.06,0,0,0,1441.2749 -1780,2177,3916,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,7.3559542,7.7283783,6.4340463,0,0,-944.13269,-9,2,-9,2019,13,1,25,0,1,1,0,5.7379079,5.7379079,0,0,0,0,0,1,1,0,3.9059467,6.6156964,42.22,45.38,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,3899,354815.72,172708.92,231619.09,0,1369.0181 -1781,2178,3917,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-966.96942,-9,2,2,2019,17,0,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40,25,-9,-9,10,1,1,0,0,0,8,1,0,242,-239868.64,0,0,0,1468.9233 -1782,2179,3918,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-922.70886,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.98,14.09,-9,-9,0,1,1,0,1,4,7,1,0,1485,-833.77039,0,0,0,1529.7212 -1783,2180,3919,3920,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.669807,7.5289631,35,-3,-69.894524,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.1632276,7.3536234,58.5,44.67,26.82,19.15,1.666666666666667,1,1,0,0,9,2,3,1,1123.5,744613.13,599253.38,10633.889,0,2356.2378 -1783,2180,3920,3919,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,6.5356717,6.6294665,35,3,-66.279968,0,3,2,2019,24,12,0,0,4,12,0,0,0,1,0,29.091957,0,0,1,1,0,4.2597032,6.5490594,26.82,19.15,58.5,44.67,5,1,1,0,0,6,2,3,1,1123.5,744613.13,599253.38,10633.889,0,2356.2378 -1784,2181,3921,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.7664337,8.6303749,0,0,0,-1042.9747,0,1,1,2019,14,4,40,0,1,4,0,14.938073,14.938073,0,0,0,0,0,0,0,0,0,0,23.72,63.51,-9,-9,8.333333333333334,1,1,0,0,6,10,5,0,921,-206287.17,40711.566,0,0,2308.6711 -1785,2182,3922,3923,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.9366207,8.5610065,0,22,0,-9.1791639,0,2,2,2019,14,6,50,47,1,6,0,13.966189,13.966189,0,0,0,0,0,0,0,0,7.2678976,0,48.81,59.91,59.31,44.28,8.333333333333334,1,1,0,0,11,7,5,1,399.5,842254.44,116624.04,528670.38,92573.25,4300.7109 -1785,2182,3923,3922,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.0597157,6.7082448,0,22,0,35.586903,0,2,2,2019,12,0,17,16,1,0,0,7.1261787,7.1261787,0,0,0,0,0,0,0,0,0,0,59.31,44.28,48.81,59.91,8.333333333333334,1,1,0,0,4,7,5,1,399.5,842254.44,116624.04,528670.38,92573.25,4300.7109 -1785,2183,3924,-9,3923,3922,1,1,19,0,0,0,2,2,0,0,5,0,0,0,0,0,-1019.6852,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.7099242,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,201,28331.756,0,0,0,624.55786 -1786,2184,3925,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,5.9679861,5.895031,0,0,-1061.7821,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.1071329,5.2293587,50.47,41.83,-9,-9,5,1,1,0,0,3,11,2,1,104,-188753.98,-5223.1978,0,0,40.726288 -1787,2185,3926,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1087.1708,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,49,-9,-9,7,1,1,0,0,0,13,1,1,1149,284113,-16825.873,58364.16,26072.139,-45.192299 -1787,2186,3927,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.244,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,50,-9,-9,7,1,1,1,0,0,13,1,1,379,-345581.75,0,0,0,1372.3718 -1788,2187,3928,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.440279,8.516921,0,0,0,-944.30457,0,2,3,2019,8,1,37,35,1,1,0,13.755264,13.755264,0,0,0,0,0,0,0,0,2.0552161,0,44.16,61.04,-9,-9,5,1,1,0,0,4,4,5,0,405,13449.067,-22124.9,126231.67,78377.797,1343.609 -1789,2188,3929,3930,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.3257728,6.1793575,0,33,-11,-101.66292,0,3,2,2019,7,0,10,37,1,0,0,5.4672403,5.4672403,0,0,0,0,0,1,1,0,5.0289593,0,48.28,60.18,43.78,46.06,6.666666666666667,1,1,0,0,9,9,3,1,577,147542.88,185854.02,0,0,2468.4626 -1789,2188,3930,3929,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.7344489,8.0169954,33,11,94.898338,0,2,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.173286,8.137414,43.78,46.06,48.28,60.18,8.333333333333334,1,1,0,0,1,9,3,1,577,147542.88,185854.02,0,0,2468.4626 -1789,2189,3931,-9,3929,3930,1,1,25,0,0,0,2,2,-9,0,5,7.6059699,7.5644813,0,0,0,-993.83466,0,2,2,2019,8,0,30,27,1,0,1,6.6378875,6.6378875,0,0,0,0,0,1,1,0,4.1441932,0,38.2,61.46,-9,-9,3.333333333333333,1,1,0,0,2,9,3,1,601,296391.78,96585.141,0,0,1341.1914 -1790,2190,3932,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.2981005,7.3499928,0,0,0,-1032.1801,0,3,2,2019,11,0,8,30,1,0,0,17.636898,17.636898,0,0,0,0,0,0,0,0,1.1626524,0,47.15,56.66,-9,-9,5,1,1,0,1,9,10,3,0,332,-167067.22,0,0,0,357.59454 -1791,2191,3933,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.0949931,6.9375191,0,0,-892.65051,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2936859,7.011981,57,59.12,-9,-9,10,1,1,0,0,0,7,2,1,1311,-167119.72,147149.78,0,0,2249.7954 -1792,2192,3934,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1027.2026,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,165,-80082.773,0,0,0,860.59985 -1793,2193,3935,-9,3938,3937,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.47516,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 -1793,2193,3936,-9,3938,3937,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4626,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 -1793,2193,3937,3938,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,2.1272602,1.5556455,0,13,12,-75.269852,0,2,2,2019,24,11,50,30,1,11,0,.023432096,.023432096,0,0,0,0,0,1,1,0,0,0,38.87,36.11,47.94,53.79,1.666666666666667,2,3,0,0,9,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 -1793,2193,3938,3937,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,0,0,0,13,-12,-57.136806,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,53.79,38.87,36.11,8.333333333333334,2,3,0,0,2,7,2,0,740,54434.355,12436.629,194229.97,62291.492,1821.3328 -1794,2194,3939,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1143.8778,0,3,2,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,22.16,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1795,119230.98,0,0,0,608.96875 -1794,2195,3940,-9,3939,-9,1,0,27,0,0,0,2,2,-9,0,3,8.0838718,7.7803187,0,0,0,-1001.2159,0,3,-9,2019,10,0,50,0,1,0,1,5.6400733,5.6400733,0,0,0,0,7,1,1,0,0,0,56.72,45.49,-9,-9,6.666666666666667,1,1,0,0,1,12,4,0,527,-100275.86,0,0,0,971.89459 -1795,2196,3941,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.404129,8.4310417,6.3241348,0,0,-966.55609,0,3,2,2019,6,0,38,38,1,0,0,8.5733538,8.5733538,0,0,0,0,0,1,1,0,5.8712921,0,60.29,52.11,-9,-9,10,1,1,0,0,7,2,3,1,952.33331,517319.72,335774.59,424035.13,244826.16,1993.749 -1795,2196,3942,-9,3941,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1050.1779,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,3,1,952.33331,517319.72,335774.59,424035.13,244826.16,1993.749 -1795,2196,3943,-9,3941,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.2035,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,952.33331,517319.72,335774.59,424035.13,244826.16,1993.749 -1796,2197,3944,3945,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.5717421,8.1685219,54,1,23.505865,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6434255,8.0785065,59.69,38.61,50.27,44.25,10,1,1,0,0,0,13,3,1,442.5,627636.5,390217,187048.91,0,3217.105 -1796,2197,3945,3944,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.73704,4.6411991,54,-1,12.612776,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3908174,4.7498584,50.27,44.25,59.69,38.61,8.333333333333334,1,1,0,0,0,13,3,1,442.5,627636.5,390217,187048.91,0,3217.105 -1797,2198,3946,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,5.966774,6.0162678,0,0,-996.56763,0,3,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.7980165,0,52.07,13.25,-9,-9,8.333333333333334,2,3,0,1,5,9,2,1,670,103840.88,0,0,0,1732.525 -1797,2198,3947,-9,3946,-9,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-898.70563,-9,2,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,46.16,58.62,-9,-9,6.666666666666667,2,3,0,0,0,9,2,1,670,103840.88,0,0,0,1732.525 -1797,2199,3948,-9,3946,-9,1,0,20,0,0,1,1,0,0,0,4,0,0,0,0,0,-848.76782,-9,2,-9,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,0,0,57.22,38.98,-9,-9,8.333333333333334,2,3,0,0,2,9,1,1,418,-143584.16,0,0,0,0 -1798,2200,3949,3950,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,8.4618549,8.4586992,58,-2,102.73323,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,7.3370509,8.1348333,55,45,53,44,8,1,1,0,0,0,8,3,1,419.5,941685,708148.63,172331.61,0,3017.0244 -1798,2200,3950,3949,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,58,2,-102.2738,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,113.57958,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,3,1,419.5,941685,708148.63,172331.61,0,3017.0244 -1799,2201,3951,3952,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,8.3003006,7.9049363,7,1,116.46613,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.932961,8.2002211,39.14,46.96,60.12,33.7,10,1,1,0,0,0,9,3,1,867.5,1277921.5,294485.69,550932,0,2626.9141 -1799,2201,3952,3951,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,7,-1,-2.3604198,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.4262695,0,19.467916,0,1,1,0,1.1236594,0,60.12,33.7,39.14,46.96,8.333333333333334,1,1,0,0,0,9,3,1,867.5,1277921.5,294485.69,550932,0,2626.9141 -1800,2202,3953,3954,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,6.4468217,6.5647736,13,-14,-134.97896,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,0,6.2070813,46.06,22.27,16.04,23.99,6.666666666666667,1,1,0,0,0,5,2,1,426,253869.16,34617.582,0,0,1712.0669 -1800,2202,3954,3953,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,2.6838951,2.3691986,13,14,-50.594646,0,3,2,2019,30,11,0,0,4,11,0,0,0,1,2.1895688,84.91452,0,0,1,1,0,2.2090943,2.4721777,16.04,23.99,46.06,22.27,1.666666666666667,1,1,0,0,0,5,2,1,426,253869.16,34617.582,0,0,1712.0669 -1801,2203,3955,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.9989,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,7.3187943,0,0,1,1,0,0,0,55.96,49.93,-9,-9,10,1,1,0,0,0,12,1,0,1523,267682.16,44741.293,235860.33,0,281.24371 -1801,2204,3956,-9,3955,-9,1,1,49,0,0,0,2,2,-9,0,4,8.1523867,8.2238321,0,0,0,-1030.7983,0,3,-9,2019,6,0,37,37,1,0,0,10.382991,10.382991,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,0,78,589354.31,155146.55,0,0,1216.6239 -1802,2205,3957,3959,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.5607748,8.7236567,0,18,-7,1.3604058,0,2,3,2019,9,0,30,30,1,0,0,20.942019,20.942019,0,0,0,0,0,1,1,0,0,0,48.53,58.91,57.07,49.39,1.666666666666667,1,1,0,0,11,1,5,1,669,824798.5,714342.94,131257.27,33366.227,4788.6616 -1802,2205,3958,-9,3957,3959,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.73297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,669,824798.5,714342.94,131257.27,33366.227,4788.6616 -1802,2205,3959,3957,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.0464525,8.8076382,0,8,7,-33.028091,0,2,2,2019,10,0,38,42,1,0,0,21.9571,21.9571,0,0,0,0,0,1,1,0,0,0,57.07,49.39,48.53,58.91,8.333333333333334,1,1,0,0,11,1,5,1,669,824798.5,714342.94,131257.27,33366.227,4788.6616 -1803,2206,3960,-9,3962,3961,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1045.4412,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.95,39.96,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1717.6666,811039.44,762911.06,210050.78,137628.06,6987.3071 -1803,2206,3961,3962,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.626791,9.5373926,0,25,1,-112.00538,0,-9,-9,2019,9,0,50,105,1,0,0,39.659794,39.659794,0,0,0,0,0,0,0,0,0,0,48.28,60.18,46.08,57.2,8.333333333333334,1,1,0,0,11,12,5,1,1717.6666,811039.44,762911.06,210050.78,137628.06,6987.3071 -1803,2206,3962,3961,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,0,0,0,24,-1,52.730034,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,48.28,60.18,8.333333333333334,1,1,0,0,2,12,5,1,1717.6666,811039.44,762911.06,210050.78,137628.06,6987.3071 -1803,2207,3963,-9,3962,3961,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-992.25006,-9,1,2,2019,3,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.2,57.82,-9,-9,0,1,1,0,0,2,12,1,1,835,-214504.3,0,0,0,0 -1804,2208,3964,3965,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.6674633,6.7713623,30,11,-24.364281,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,22.586477,0,0,1,1,0,6.2059646,6.7036352,55.11,24.36,63.09,47.92,8.333333333333334,1,1,0,0,5,4,2,1,682,247153.88,20175.576,163148.19,0,1862.3337 -1804,2208,3965,3964,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,30,-11,51.735611,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,63.09,47.92,55.11,24.36,8.333333333333334,1,1,0,0,0,4,2,1,682,247153.88,20175.576,163148.19,0,1862.3337 -1804,2209,3966,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1211.9391,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,49.16,-9,-9,8.333333333333334,1,1,1,0,5,4,1,1,340,34432.129,40071.973,0,0,683.40973 -1804,2210,3967,-9,3965,3964,1,1,26,0,0,0,2,2,-9,0,3,8.0466356,7.7435751,0,0,0,-1038.171,0,2,3,2019,12,0,38,43,1,0,0,8.6741638,8.6741638,0,0,0,0,5.48,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,434,-203347.23,-25274.674,0,0,792.26404 -1805,2211,3968,3969,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,8.494626,8.2339039,46,-2,-77.848778,0,-9,-9,2019,18,0,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,2.3460653,9.0125265,52.49,27.25,57.33,53.46,8.333333333333334,1,1,0,0,3,7,4,1,525.5,1292194,551892.38,297665.19,0,3188.8838 -1805,2211,3969,3968,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,46,2,-70.975487,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.49,27.25,10,1,1,0,0,3,7,4,1,525.5,1292194,551892.38,297665.19,0,3188.8838 -1806,2212,3970,3971,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,5.2326226,4.7353678,46,-4,35.234844,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,7.4587431,5.3076582,36.41,39.93,54.96,53.17,10,2,3,0,0,0,8,3,1,1134,-170665.55,0,0,0,4724.8984 -1806,2212,3971,3970,-9,-9,1,1,67,0,2,0,1,1,-9,0,3,0,7.6573873,8.0416718,46,4,43.705555,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5051923,8.336688,54.96,53.17,36.41,39.93,8.333333333333334,2,3,0,0,0,8,3,1,1134,-170665.55,0,0,0,4724.8984 -1806,2213,3972,-9,3975,3974,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.86938,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 -1806,2213,3973,-9,3975,3974,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-792.7337,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 -1806,2213,3974,3975,3970,3971,1,1,38,0,2,0,2,2,-9,0,3,8.2154627,8.3036957,0,14,1,-11.178869,0,3,2,2019,5,0,21,25,1,0,0,19.936481,19.936481,0,0,0,0,0,1,1,0,8.1429958,0,54.37,54.8,54.2,57.49,8.333333333333334,2,3,0,0,10,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 -1806,2213,3975,3974,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.4965382,8.6168804,0,14,-1,25.851093,0,3,3,2019,6,0,30,30,1,0,0,19.271347,19.271347,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.37,54.8,10,2,3,0,0,10,8,4,1,985.25,481136.66,51979.398,674440.25,285661.44,6114.7393 -1806,2214,3976,-9,3970,3971,1,0,42,0,2,0,1,1,-9,0,4,8.5755386,8.513566,0,0,0,-943.46124,0,3,2,2019,10,0,40,41,1,0,0,16.558571,16.558571,0,0,0,0,0,1,1,0,0,0,49.59,58.37,-9,-9,10,2,3,0,0,10,8,4,1,874,911026,309306.06,472208.06,0,2288.6165 -1807,2215,3977,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.9704046,8.4344149,7.9057779,0,0,-899.22113,0,2,2,2019,11,4,15,15,1,4,0,8.1887112,8.1887112,0,0,0,0,0,1,1,0,4.7094884,7.670805,49.05,37.09,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,554,255252.92,-15029.959,0,0,2414.429 -1808,2216,3978,3979,-9,-9,1,1,60,1,2,0,3,3,-9,0,3,0,0,0,6,4,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,1.5302898,0,51,48,49,48,7,1,1,0,0,0,4,1,0,836,200063.53,0,0,0,273.02841 -1808,2216,3979,3978,-9,-9,1,0,56,1,2,0,3,3,-9,0,3,0,0,0,6,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,51,48,7,1,1,1,0,0,4,1,0,836,200063.53,0,0,0,273.02841 -1808,2217,3980,-9,3982,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.18732,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,375.33334,62528.496,0,0,0,917.64569 -1808,2217,3981,-9,3982,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9244,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,375.33334,62528.496,0,0,0,917.64569 -1808,2217,3982,-9,3979,3978,1,0,20,1,2,0,2,2,-9,0,4,0,0,0,0,0,-933.9259,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,375.33334,62528.496,0,0,0,917.64569 -1808,2218,3983,-9,3979,3978,1,1,19,1,2,0,3,3,-9,0,4,0,0,0,0,0,-915.30072,0,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,4,1,0,1141,0,0,0,0,0 -1808,2219,3984,-9,3979,3978,1,1,19,1,2,0,3,3,1,1,4,0,0,0,0,0,-877.49799,-9,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,.34615365,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,352,0,0,0,0,-167.6205 -1809,2220,3985,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,1,0,6.6970577,6.8105145,0,0,-992.05859,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,6.7967095,36.31,35.31,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,586,747726.56,320045.53,351607.28,0,1035.3448 -1810,2221,3986,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0501323,6.010294,0,0,-947.64508,0,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,2.3306513,6.0554109,33.15,43.19,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,253,310515.97,182102.86,0,0,993.49384 -1811,2222,3987,3988,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.609642,7.6705317,38,1,62.748772,0,2,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,5.6745276,7.751657,50.89,48.05,50.65,28.51,8.333333333333334,1,1,0,0,8,9,4,1,969,2589797.5,1335613.5,691191.44,0,2987.3025 -1811,2222,3988,3987,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.9333692,7.5704851,38,-1,-88.552124,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.9632363,7.6020494,50.65,28.51,50.89,48.05,8.333333333333334,1,1,0,0,8,9,4,1,969,2589797.5,1335613.5,691191.44,0,2987.3025 -1812,2223,3989,-9,3990,-9,1,1,11,0,2,1,3,0,-9,0,1,0,0,0,0,0,-997.03937,-9,2,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,2,3,-9,0,0,12,2,1,530,-211674.48,0,0,0,2251.4846 -1812,2223,3990,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,7.2169142,7.1612744,0,0,0,-954.51544,0,3,2,2019,21,8,35,16,1,8,0,5.7552247,5.7552247,0,0,0,0,0,1,1,0,0,0,42.07,24.25,-9,-9,6.666666666666667,2,3,0,0,3,12,2,1,530,-211674.48,0,0,0,2251.4846 -1812,2223,3991,-9,3990,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1115.9667,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,12,2,1,530,-211674.48,0,0,0,2251.4846 -1812,2224,3992,-9,3990,-9,1,0,25,0,2,0,1,1,-9,0,2,8.1205816,7.8822684,0,0,0,-1093.4089,0,2,-9,2019,31,12,35,29,1,12,1,9.6868162,9.6868162,0,0,0,0,0,1,1,0,0,0,24.39,46.06,-9,-9,3.333333333333333,2,3,0,0,7,12,4,1,362,-3240.7554,0,0,0,1837.1315 -1812,2225,3993,-9,3990,-9,1,0,18,0,2,0,2,2,1,0,3,0,0,0,0,0,-1019.9824,-9,2,-9,2019,13,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,55.61,47.59,-9,-9,8.333333333333334,2,3,1,0,0,12,1,1,199,36422.547,0,0,0,0 -1813,2226,3994,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-924.71985,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.47,40.47,-9,-9,6.666666666666667,4,2,0,0,0,8,1,0,317,450019.06,0,335450.13,0,1203.582 -1814,2227,3995,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-984.43829,0,3,1,2019,18,7,0,50,3,7,0,0,0,0,0,0,0,0,1,1,0,6.8110209,0,41.17,52.68,-9,-9,3.333333333333333,2,3,1,0,8,8,1,1,781,159095.05,0,0,0,1152.1561 -1815,2228,3996,3997,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1797428,8.1818151,0,8,1,-74.154305,0,3,3,2019,12,1,39,39,1,1,0,11.95737,11.95737,0,0,0,0,0,0,0,0,0,0,60.32,22.28,49.44,43.52,5,1,1,0,0,9,13,4,1,478,535095.44,99612.484,181637.13,0,2590.5234 -1815,2228,3997,3996,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.7132587,7.5613189,0,8,-1,-104.38723,0,3,3,2019,10,0,26,26,1,0,0,10.870372,10.870372,0,0,0,0,0,0,0,0,0,0,49.44,43.52,60.32,22.28,5,1,1,0,0,9,13,4,1,478,535095.44,99612.484,181637.13,0,2590.5234 -1815,2229,3998,-9,3997,3996,1,0,33,0,0,0,2,2,-9,0,5,8.2498541,8.2423506,0,0,0,-1026.5443,0,3,2,2019,6,0,80,40,1,0,1,5.1600003,5.1600003,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,213,673657.94,73272.414,918396.44,75185.461,1117.7709 -1815,2230,3999,-9,3997,3996,1,1,20,0,0,0,2,2,-9,0,3,7.2005615,7.5238862,0,0,0,-928.17041,0,3,2,2019,10,0,30,16,1,0,1,4.8047471,4.8047471,0,0,0,0,0,0,0,0,0,0,45.89,53.15,-9,-9,6.666666666666667,1,1,0,0,3,13,3,1,995,-91038.914,0,0,0,283.49347 -1816,2231,4000,4001,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4559526,8.4410648,0,25,0,56.477955,0,3,2,2019,18,7,40,42,1,7,0,16.966375,16.966375,0,0,0,0,0,0,0,0,.27114159,0,42.11,57.44,30.62,56.14,8.333333333333334,1,1,0,0,11,4,5,1,723.5,1650449,440605.75,551732.63,0,5228.9434 -1816,2231,4001,4000,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.9447479,8.8167229,0,9,0,-76.111961,0,2,2,2019,24,8,40,40,1,8,0,20.615784,20.615784,0,0,0,0,0,0,0,0,1.0297483,0,30.62,56.14,42.11,57.44,3.333333333333333,1,1,0,0,11,4,5,1,723.5,1650449,440605.75,551732.63,0,5228.9434 -1817,2232,4002,-9,4004,4005,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1034.7382,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 -1817,2232,4003,-9,4004,4005,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.64856,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 -1817,2232,4004,4005,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.2361956,8.3194656,0,9,-3,-4.6006079,0,3,2,2019,10,0,37,38,1,0,0,13.182116,13.182116,0,0,0,0,0,1,1,0,0,0,50.28,51.35,41.46,55.58,6.666666666666667,1,1,0,0,10,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 -1817,2232,4005,4004,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,7.7692308,7.5939946,0,9,3,-41.879845,0,3,3,2019,14,3,42,0,1,3,0,10.426156,10.426156,0,0,0,0,7,1,1,0,0,0,41.46,55.58,50.28,51.35,6.666666666666667,1,1,0,0,9,12,4,1,796.75,7065999,6646452,307187.84,0,3122.9214 -1818,2233,4006,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.9417963,5.9456711,0,0,-1040.0791,0,2,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5313778,6.3504219,52.01,38.25,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1991,-17139.758,103537.09,96739.063,0,880.72906 -1819,2234,4007,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,0,3.8631098,3.9540031,0,0,-1020.0406,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9853234,62.86,48.33,-9,-9,10,1,1,0,0,2,4,2,0,794,-141575.61,89687.992,0,0,234.26923 -1820,2235,4008,4009,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,5.4029746,5.595439,0,19,-23,162.23312,0,2,2,2019,9,0,10,10,1,0,0,1.9533445,1.9533445,0,0,0,0,0,1,1,0,0,0,39.18,52.93,57.33,53.46,8.333333333333334,1,1,0,0,6,9,2,0,242,652154.25,3575.1904,583255.44,0,1527.7417 -1820,2235,4009,4008,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,7,23,-42.51255,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,39.18,52.93,8.333333333333334,1,1,0,0,0,9,2,0,242,652154.25,3575.1904,583255.44,0,1527.7417 -1821,2236,4010,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.333848,8.7068291,0,0,0,-855.57733,0,2,1,2019,17,6,35,35,1,6,0,11.279955,11.279955,0,0,0,0,0,0,0,0,0,0,35.56,52.74,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,119,1135002,470624.88,198661.75,0,1274.6479 -1822,2237,4011,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,5.7974496,6.1850333,0,0,-1006.2468,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,1.0603679,2.5269787,25.659615,0,1,1,0,2.1791801,5.9589524,40.47,24.04,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,828,-172534.39,32086.727,0,0,1077.6523 -1823,2238,4012,-9,4013,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-917.7312,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,2,0,1073.6666,40842.539,3342.0493,0,0,1341.913 -1823,2238,4013,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,6.0352001,6.2816238,5.4474225,0,0,-1080.3312,0,-9,-9,2019,13,2,6,0,1,2,0,6.1330156,6.1330156,0,0,0,0,0,1,1,0,4.9840088,0,29.12,59.76,-9,-9,6.666666666666667,4,2,0,0,1,6,2,0,1073.6666,40842.539,3342.0493,0,0,1341.913 -1823,2238,4014,-9,4013,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.7963,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,1073.6666,40842.539,3342.0493,0,0,1341.913 -1824,2239,4015,4016,-9,-9,1,0,43,0,0,0,3,3,-9,0,2,0,0,0,26,-3,0,0,3,3,2019,13,1,0,20,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,47.94,37.73,29.62,36.9,6.666666666666667,1,1,0,0,4,5,1,0,374,-185150.64,65025.477,0,0,1436.7982 -1824,2239,4016,4015,-9,-9,1,1,46,0,0,0,3,3,-9,1,1,0,0,0,26,3,0,0,-9,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,29.62,36.9,47.94,37.73,0,1,1,0,0,0,5,1,0,374,-185150.64,65025.477,0,0,1436.7982 -1824,2240,4017,-9,4015,4016,1,1,22,0,0,0,3,3,-9,0,4,8.4903107,8.4731169,0,0,0,-874.14209,0,3,3,2019,6,0,40,30,1,0,1,9.4534464,9.4534464,0,0,0,0,0,1,0,1,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,4,0,164,-41117.027,82673.203,0,0,1855.9786 -1824,2241,4018,-9,4015,4016,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1100.532,0,3,3,2019,7,0,0,7,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,10,1,1,1,0,5,5,1,0,741,30282.197,0,0,0,612.49115 -1825,2242,4019,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,6.7732973,6.3800263,0,0,-844.159,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.477716,6.7213721,62.42,40.08,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,550,295629.06,136699.52,98259.695,0,1529.5735 -1826,2243,4020,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.6619644,8.4488239,8.0185976,0,0,-1009.3517,0,3,3,2019,10,1,50,70,1,1,0,4.8075471,4.8075471,0,0,0,0,0,0,0,0,8.1183329,7.970212,56.14,37.82,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,276,536674.19,396921.75,182872.22,32428.551,2792.7615 -1827,2244,4021,-9,4022,-9,1,1,49,0,0,0,2,2,-9,0,5,8.1239729,8.4599152,0,0,0,-1022.9413,0,3,3,2019,6,0,45,36,1,0,0,8.9495306,8.9495306,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,8,4,0,166,573107.69,-7162.4434,0,0,1549.7759 -1827,2245,4022,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1091.9386,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,39.55,-9,-9,10,1,1,0,0,0,8,1,0,609,-48806.695,0,0,0,1522.2069 -1828,2246,4023,-9,4027,4025,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.2842,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 -1828,2246,4024,-9,4027,4025,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.57977,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 -1828,2246,4025,4027,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,9.5623922,9.621171,0,9,0,61.601433,0,3,3,2019,8,0,40,30,1,0,0,40.057159,40.057159,0,0,0,0,0,1,1,0,2.666203,0,54.61,47.86,50.18,36.56,8.333333333333334,1,1,0,0,9,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 -1828,2246,4026,-9,4027,4025,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.8245,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 -1828,2246,4027,4025,-9,-9,1,0,37,1,3,0,2,2,-9,0,2,6.8925157,7.2042556,0,9,0,-1.4360398,0,-9,-9,2019,10,0,20,20,1,0,0,5.570806,5.570806,0,0,0,0,0,1,1,0,.93283278,0,50.18,36.56,54.61,47.86,8.333333333333334,1,1,0,0,10,1,5,0,298.79999,207678.78,65452.48,226081.81,149701.8,6075.5586 -1829,2247,4028,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.2784309,8.49862,0,0,0,-1060.2496,0,3,3,2019,18,6,37,37,1,6,0,12.657256,12.657256,0,0,0,0,0,1,1,0,3.1356931,0,45.85,34.82,-9,-9,5,1,1,0,0,8,5,4,1,157,381103.88,131993.3,185279.98,4616.2769,1948.2814 -1830,2248,4029,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.7503595,8.160759,0,0,0,-914.70978,0,1,-9,2019,16,5,38,37,1,5,0,16.284571,16.284571,0,0,0,0,0,1,1,0,0,0,21.07,60.89,-9,-9,3.333333333333333,3,4,0,0,9,8,3,0,579,137481.8,73603.914,0,0,1981.7721 -1831,2249,4030,-9,4033,4031,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.38458,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 -1831,2249,4031,4033,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.4043818,8.0498409,0,19,2,14.184849,0,2,2,2019,11,0,50,48,1,0,0,13.675913,13.675913,0,0,0,0,2,1,1,0,4.9263787,0,46.8,55.75,57.33,53.46,8.333333333333334,1,1,0,0,9,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 -1831,2249,4032,-9,4033,4031,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.0768,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 -1831,2249,4033,4031,-9,-9,1,0,41,1,2,0,2,2,-9,0,3,0,0,0,18,-2,-49.534397,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,1.6069667,0,57.33,53.46,46.8,55.75,8.333333333333334,1,1,0,0,5,1,3,1,1004.25,515351.25,543280.38,161853.19,12195.317,2380.7842 -1832,2250,4034,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.0351911,6.1580639,0,0,-917.38544,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7982488,57.76,54.51,-9,-9,10,1,1,0,0,7,9,2,0,428,-50059.973,-5254.7646,287225.81,0,1326.4286 -1833,2251,4035,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-818.4707,0,3,3,2019,35,12,0,0,4,12,0,0,0,1,3.110847,0,20.116514,27,1,1,0,0,0,27.38,28.27,-9,-9,0,1,1,0,0,0,12,1,0,404,0,0,0,0,2827.6436 -1834,2252,4036,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.65167,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,59.31,49.81,-9,-9,10,4,2,0,0,0,8,1,1,574,-24314.025,0,0,0,542.96045 -1835,2253,4037,4038,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,21,5,0,0,3,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,14.6,42.95,47.91,8.333333333333334,1,1,0,0,0,12,1,0,925,60162.781,-23401.789,0,0,1400.8929 -1835,2253,4038,4037,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,6,-5,0,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.95,47.91,39.97,14.6,3.333333333333333,1,1,0,0,0,12,1,0,925,60162.781,-23401.789,0,0,1400.8929 -1836,2254,4039,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1117.9645,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.69062334,0,47.14,46.13,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,623,-93418.609,0,0,0,639.38849 -1837,2255,4040,4041,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,6,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,60.14,38.88,32.85,35.2,8.333333333333334,1,1,0,0,0,13,1,1,1458,-199223.89,0,0,0,1650.2742 -1837,2255,4041,4040,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,6,-2,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,11.47472,0,0,1,1,0,0,0,32.85,35.2,60.14,38.88,10,1,1,0,1,0,13,1,1,1458,-199223.89,0,0,0,1650.2742 -1838,2256,4042,4043,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,0,0,8,5,0,0,-9,-9,2019,9,1,0,50,3,1,0,0,0,0,0,0,0,7,0,0,0,1.3868065,0,56.92,49.39,66.77,21.03,6.666666666666667,1,1,1,0,8,2,1,1,252,-164154.02,150538.47,0,0,441.19385 -1838,2256,4043,4042,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,33,-5,0,0,3,2,2019,9,1,0,21,4,1,0,0,0,0,0,0,0,0,0,0,0,4.0906677,0,66.77,21.03,56.92,49.39,10,1,1,0,0,9,2,1,1,252,-164154.02,150538.47,0,0,441.19385 -1839,2257,4044,4045,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,8,-2,39.279984,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,4.45,49.88,49.44,54.26,0,1,1,0,1,6,11,5,1,367,3062258.3,2713603,178863.03,0,2980.7285 -1839,2257,4045,4044,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.9491644,8.9093018,0,8,2,-12.392296,0,2,2,2019,21,9,41,39,1,9,0,25.368086,25.368086,0,0,0,0,7,1,1,0,0,0,49.44,54.26,4.45,49.88,1.666666666666667,1,1,0,1,9,11,5,1,367,3062258.3,2713603,178863.03,0,2980.7285 -1839,2258,4046,-9,4044,4045,1,0,20,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1012.47,0,2,1,2019,19,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,36.53,14.85,-9,-9,0,1,1,0,1,0,11,1,1,2394,-243598.38,0,0,0,456.08649 -1839,2259,4047,-9,4044,4045,1,1,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-988.16632,-9,2,1,2019,24,9,0,0,3,9,1,0,0,0,0,0,0,27,1,1,0,0,0,26.69,50.23,-9,-9,0,1,1,1,1,0,11,1,1,521,0,0,0,0,0 -1840,2260,4048,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1076.475,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.03,35.66,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,352,-195133.27,0,0,0,556.86804 -1841,2261,4049,4050,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.0891719,8.2768774,7.925807,35,-6,148.55319,0,1,1,2019,8,0,3,5,1,0,0,51.660458,51.660458,0,0,0,0,0,1,1,0,4.3286586,8.2583866,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,8,10,4,1,266.5,1861388.5,1071058.3,505674.28,0,3541.4067 -1841,2261,4050,4049,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1445608,7.3719258,6,6,80.126419,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3118706,7.4362922,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,0,10,4,1,266.5,1861388.5,1071058.3,505674.28,0,3541.4067 -1842,2262,4051,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.5289497,8.7695332,0,0,0,-952.41357,0,3,3,2019,3,0,55,50,1,0,0,11.829448,11.829448,0,0,0,0,0,0,0,0,0,0,38.75,44.24,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,715,-46231.383,6488.6865,111987.94,36729.848,1653.767 -1843,2263,4052,4053,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.8589363,8.3780031,7.5494552,45,-1,96.15403,0,3,3,2019,11,2,30,30,1,2,0,7.5007801,7.5007801,0,0,0,0,0,1,1,0,2.0264628,8.0843372,58.82,39.12,46.39,60.99,8.333333333333334,1,1,0,0,9,5,5,1,923.5,108545.25,32913.781,178117.16,82194.391,3588.4194 -1843,2263,4053,4052,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7833247,7.6977,5.6858702,45,1,-.61228544,0,3,-9,2019,10,0,37,42,1,0,0,8.2720556,8.2720556,0,0,0,0,0,1,1,0,2.0414758,5.6306777,46.39,60.99,58.82,39.12,8.333333333333334,1,1,0,0,9,5,5,1,923.5,108545.25,32913.781,178117.16,82194.391,3588.4194 -1844,2264,4054,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-805.98596,-9,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.41,23.07,-9,-9,3.333333333333333,2,3,0,1,0,2,1,1,2088,264329.16,0,0,0,216.61041 -1845,2265,4055,-9,4058,4057,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.15204,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 -1845,2265,4056,-9,4058,4057,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.669,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 -1845,2265,4057,4058,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.8716278,8.5863762,0,9,3,-86.543381,0,2,2,2019,9,0,52,57,1,0,0,13.454585,13.454585,0,0,0,0,0,1,1,0,0,0,59.53,56.44,54.67,57.49,8.333333333333334,1,1,0,0,12,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 -1845,2265,4058,4057,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.760375,8.3214788,0,9,-3,-109.65559,0,2,3,2019,12,0,25,26,1,0,0,22.565054,22.565054,0,0,0,0,0,1,1,0,0,0,54.67,57.49,59.53,56.44,8.333333333333334,1,1,0,0,12,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 -1845,2265,4059,-9,4058,4057,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1035.293,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,802.40002,351471.19,251977.55,222433.69,123648.21,4373.4116 -1846,2266,4060,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-952.77899,0,2,2,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,27.25,43.37,-9,-9,0,1,1,0,1,0,7,1,0,60,17867.768,0,0,0,738.88428 -1847,2267,4061,4063,-9,-9,1,0,33,1,1,0,2,2,-9,0,5,7.5919571,7.7531085,0,8,-2,114.93182,0,3,3,2019,11,0,53,45,1,0,0,4.2918358,4.2918358,0,0,0,0,7,1,1,0,.0017662994,0,51.14,60.45,49,57,8.333333333333334,1,1,0,0,10,13,4,0,292.33334,178911.94,5029.625,153371.28,75166.344,2969.5542 -1847,2267,4062,-9,4061,4063,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.2244,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,0,292.33334,178911.94,5029.625,153371.28,75166.344,2969.5542 -1847,2267,4063,4061,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.2533169,8.1641731,0,8,2,64.294495,-9,-9,-9,2019,10,0,48,0,1,1,0,9.8281965,9.8281965,0,0,0,0,0,1,1,0,0,0,49,57,51.14,60.45,7,4,1,0,0,1,13,4,0,292.33334,178911.94,5029.625,153371.28,75166.344,2969.5542 -1848,2268,4064,4065,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,5.9497795,6.2230167,0,14,3,-73.182381,-9,3,3,2019,9,0,40,0,1,1,0,.91956317,.91956317,0,0,0,0,0,1,1,0,0,0,51,55,49,55,8,1,1,0,0,11,5,2,1,1015.8,13055.982,0,0,0,844.59631 -1848,2268,4065,4064,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,14,-3,43.389885,-9,2,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,55,7,1,1,0,0,2,5,2,1,1015.8,13055.982,0,0,0,844.59631 -1848,2268,4066,-9,4065,4064,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.46,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,1015.8,13055.982,0,0,0,844.59631 -1848,2268,4067,-9,4065,4064,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-899.30945,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,2,1,1015.8,13055.982,0,0,0,844.59631 -1848,2268,4068,-9,4065,4064,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1116.9813,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,1015.8,13055.982,0,0,0,844.59631 -1848,2269,4069,-9,4065,4064,1,1,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1063.4938,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.82,56.44,-9,-9,5,2,3,0,0,2,5,1,1,1468,-227301.33,0,0,0,-237.61046 -1849,2270,4070,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8500957,9.5078506,8.0072289,0,0,-1087.1688,0,2,2,2019,8,0,55,53,1,0,0,13.898387,13.898387,0,0,0,0,0,1,1,0,8.9793987,0,51.38,54.63,-9,-9,6.666666666666667,4,5,0,0,10,2,5,1,1191,1624147.4,1264309,385000.88,0,4287.8833 -1849,2271,4071,-9,4070,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-974.86981,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,1,530,-126684.41,0,0,0,380.4631 -1850,2272,4072,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-949.57013,0,2,2,2019,9,0,0,6,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.8,57.03,-9,-9,8.333333333333334,3,4,1,0,4,8,1,0,435,372429.59,0,0,0,1259.0194 -1850,2273,4073,-9,4072,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-999.85388,0,2,2,2019,5,0,0,38,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,10,3,4,0,0,6,8,1,0,122,138807.25,0,0,0,480.01627 -1851,2274,4074,-9,4078,4076,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.76544,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 -1851,2274,4075,-9,4078,4076,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1154.5752,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 -1851,2274,4076,4078,-9,-9,1,1,30,0,3,0,2,2,-9,0,4,6.8680377,6.8172579,0,2,1,133.28766,-9,-9,-9,2019,6,0,25,0,1,0,0,4.510623,4.510623,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.47,53.17,6.666666666666667,2,3,0,0,2,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 -1851,2274,4077,-9,4078,4076,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.3733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 -1851,2274,4078,4076,-9,-9,1,0,29,0,3,0,1,1,-9,0,4,8.3459091,8.4525061,0,2,-1,-56.056374,0,2,3,2019,10,0,42,37,1,0,0,11.903487,11.903487,0,0,0,0,0,1,1,0,0,0,51.47,53.17,62.49,55.09,6.666666666666667,2,3,0,0,5,6,3,1,708.20001,114597.85,74786.117,154210.28,139952.77,2915.8706 -1852,2275,4079,4080,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.564249,8.3573322,0,10,0,-59.071003,0,2,2,2019,6,0,52,46,1,0,0,12.285155,12.285155,0,0,0,0,14.5,1,1,0,0,0,48.71,61.53,57.16,56.15,8.333333333333334,1,1,0,0,12,10,3,0,591.5,368143.25,-20963.689,328371.88,77349.844,3196.5974 -1852,2275,4080,4079,-9,-9,1,0,36,0,2,0,2,2,-9,1,4,0,0,0,10,0,74.223938,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,48.71,61.53,8.333333333333334,1,1,0,0,0,10,3,0,591.5,368143.25,-20963.689,328371.88,77349.844,3196.5974 -1853,2276,4081,4083,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.0291042,9.1027679,0,6,1,-60.719582,0,2,2,2019,8,0,50,45,1,0,0,15.504693,15.504693,0,0,0,0,0,1,1,0,3.4545429,0,53.96,50.73,45.32,54.77,6.666666666666667,1,1,0,0,7,12,5,1,330.66666,2312124.8,2073571.6,205010.77,92577.297,5783.4761 -1853,2276,4082,-9,4083,4081,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-909.21564,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,330.66666,2312124.8,2073571.6,205010.77,92577.297,5783.4761 -1853,2276,4083,4081,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.4707308,8.7569447,0,6,-1,32.288322,0,2,2,2019,10,1,32,33,1,1,0,17.003778,17.003778,0,0,0,0,0,1,1,0,7.7551293,0,45.32,54.77,53.96,50.73,8.333333333333334,1,1,0,0,7,12,5,1,330.66666,2312124.8,2073571.6,205010.77,92577.297,5783.4761 -1854,2277,4084,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,8.5595694,8.8621759,0,0,0,-917.91644,0,2,2,2019,10,0,32,32,1,0,0,23.826696,23.826696,0,0,0,0,0,1,1,0,0,0,49.05,29.06,-9,-9,3.333333333333333,1,1,0,1,11,12,4,0,773,167099.28,101683.42,0,0,1933.5031 -1854,2277,4085,-9,4084,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.3167,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,0,773,167099.28,101683.42,0,0,1933.5031 -1855,2278,4086,4087,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,0,7.4727139,7.8989348,14,16,-16.358597,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,7.6919622,52,55,48,57,8,1,1,0,0,8,4,5,1,1208.5,1527960,1231003,181204.28,0,2684.1426 -1855,2278,4087,4086,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.571166,8.5928516,0,14,-16,21.572367,0,2,2,2019,11,0,50,40,1,2,0,16.581884,16.581884,0,0,0,0,0,0,0,0,0,0,48,57,52,55,7,1,1,0,0,11,4,5,1,1208.5,1527960,1231003,181204.28,0,2684.1426 -1856,2279,4088,4089,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.9312344,8.4129639,0,42,-4,-60.932495,0,3,3,2019,6,0,38,38,1,0,0,19.134085,19.134085,0,0,0,0,0,1,1,0,2.860743,0,58.15,52.91,60.13,49.27,8.333333333333334,1,1,0,0,12,10,4,1,894.5,908867.88,425759.84,245817.3,0,2556.0513 -1856,2279,4089,4088,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.1247578,6.5568566,39,4,-.65553504,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0404946,6.3031144,60.13,49.27,58.15,52.91,8.333333333333334,1,1,0,0,8,10,4,1,894.5,908867.88,425759.84,245817.3,0,2556.0513 -1857,2280,4090,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,7.0604949,7.2243791,0,0,-1106.3081,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3014097,7.1859598,64.15000000000001,38.07,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,313,627703.56,253340.61,132345.25,0,1118.2909 -1858,2281,4091,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-981.75482,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,21.31,57.13,-9,-9,5,1,1,0,1,0,13,1,0,546,220472.25,-10142.294,0,0,324.85123 -1859,2282,4092,-9,4093,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-863.00854,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,3,1,685.5,189160.34,0,0,0,1782.655 -1859,2282,4093,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,3,7.0830956,7.8342752,7.0807099,0,0,-1060.6492,0,2,2,2019,12,0,18,18,1,0,0,8.5844355,8.5844355,0,0,0,0,0,1,1,0,6.7225766,0,63.51,35.73,-9,-9,5,1,1,0,0,9,4,3,1,685.5,189160.34,0,0,0,1782.655 -1860,2283,4094,-9,4095,4096,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-982.61664,-9,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,48.37,61.89,-9,-9,5,1,1,0,0,1,9,4,1,603.33331,448571.81,358477.38,0,0,3580.1409 -1860,2283,4095,4096,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,21,7,147.24107,0,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.58,25.8,59.07,43.05,1.666666666666667,1,1,0,0,0,9,4,1,603.33331,448571.81,358477.38,0,0,3580.1409 -1860,2283,4096,4095,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.6418486,8.5431747,0,6,-7,45.52916,0,-9,-9,2019,6,0,48,45,1,0,0,12.650254,12.650254,0,0,0,0,7,1,1,0,0,0,59.07,43.05,20.58,25.8,8.333333333333334,1,1,0,0,9,9,4,1,603.33331,448571.81,358477.38,0,0,3580.1409 -1860,2284,4097,-9,4095,4096,1,1,24,0,0,0,2,2,-9,0,4,8.1930866,8.5006266,0,0,0,-943.87671,0,2,2,2019,9,0,42,47,1,0,1,10.136113,10.136113,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,517,-2191.6689,0,0,0,1047.2692 -1861,2285,4098,-9,4100,4101,1,0,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-961.7168,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 -1861,2285,4099,-9,4100,4101,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1951,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 -1861,2285,4100,4101,-9,-9,1,0,48,0,3,0,1,1,-9,0,3,9.1591978,9.406621,0,25,-5,50.409767,0,2,2,2019,11,1,42,36,1,1,0,34.236435,34.236435,0,0,0,0,0,0,0,0,7.4484239,0,47.15,56.66,57.16,56.15,8.333333333333334,1,1,0,0,10,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 -1861,2285,4101,4100,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.8750305,9.046998,0,28,5,95.013321,0,3,3,2019,6,0,50,45,1,0,0,17.375084,17.375084,0,0,0,0,0,0,0,0,6.9904857,0,57.16,56.15,47.15,56.66,8.333333333333334,1,1,0,0,10,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 -1861,2285,4102,-9,4100,4101,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-981.11322,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,5,1,1072.4,1404018.9,1019746.3,328507.75,6829.918,6702.8535 -1862,2286,4103,4106,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.1676512,8.1881218,0,21,0,64.937515,0,2,1,2019,9,0,21,21,1,0,0,19.682636,19.682636,0,0,0,0,0,1,1,0,3.1507509,0,58.32,50.22,50.03,52.62,6.666666666666667,1,1,0,0,9,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 -1862,2286,4104,-9,4103,4106,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.425,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 -1862,2286,4105,-9,4103,4106,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2816,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 -1862,2286,4106,4103,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.2084751,8.3154116,0,21,0,3.8947625,0,1,3,2019,14,2,40,20,1,2,0,9.4343214,9.4343214,0,0,0,0,0,1,1,0,0,0,50.03,52.62,58.32,50.22,3.333333333333333,1,1,0,0,9,12,4,1,758,-35647.789,71930.766,140942.36,148850.16,3339.272 -1863,2287,4107,4108,-9,-9,1,1,53,0,0,0,3,3,-9,0,1,8.147728,8.2558308,0,6,-5,90.912392,0,2,2,2019,9,0,42,40,1,0,0,8.3926477,8.3926477,0,0,0,0,0,0,0,0,0,0,64.42,28.78,64.25,23.23,8.333333333333334,1,1,0,0,7,10,4,1,416,340088.44,-28763.027,0,0,2571.0261 -1863,2287,4108,4107,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4254565,7.4574666,0,6,5,35.497425,0,-9,-9,2019,14,3,25,25,1,3,0,7.4749832,7.4749832,0,0,0,0,2,0,0,0,2.326539,0,64.25,23.23,64.42,28.78,8.333333333333334,1,1,0,0,7,10,4,1,416,340088.44,-28763.027,0,0,2571.0261 -1863,2288,4109,-9,4108,4107,1,1,26,0,0,0,2,2,-9,0,4,7.3804369,7.3699183,0,0,0,-1111.7466,0,2,3,2019,10,0,40,39,1,1,1,5.0629597,5.0629597,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,3,1,111,3672.8564,-55287.777,0,0,1189.8177 -1864,2289,4110,4111,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.0650339,8.2940168,0,23,-6,70.321548,0,3,3,2019,22,10,43,39,1,10,0,6.5068188,6.5068188,0,0,0,0,0,1,1,0,2.4221177,0,35.33,56.8,54.37,54.8,5,1,1,0,0,8,6,4,1,885.66669,650075.44,389284.5,119626.51,52784.871,3494.7944 -1864,2289,4111,4110,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6059866,8.823247,0,6,6,-55.532944,0,-9,-9,2019,10,0,55,55,1,0,0,10.654241,10.654241,0,0,0,0,0,1,1,0,.040690154,0,54.37,54.8,35.33,56.8,3.333333333333333,1,1,0,0,8,6,4,1,885.66669,650075.44,389284.5,119626.51,52784.871,3494.7944 -1864,2289,4112,-9,4110,4111,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.5267,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,4,1,885.66669,650075.44,389284.5,119626.51,52784.871,3494.7944 -1864,2290,4113,-9,4110,4111,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1007.4695,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,1.2369378,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,529,155359.06,0,0,0,412.78003 -1865,2291,4114,4115,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.6577511,8.5997343,0,3,-14,-46.313053,0,-9,-9,2019,7,0,44,45,1,0,0,11.661407,11.661407,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.91,48.98,8.333333333333334,1,1,0,0,11,11,4,1,1598.3334,107649.11,77467.641,309124.19,159788.13,3336.9272 -1865,2291,4115,4114,-9,-9,1,0,42,1,1,0,1,1,-9,0,4,7.6734409,7.8412066,0,3,14,176.19966,0,-9,-9,2019,6,0,26,40,1,0,0,7.115931,7.115931,0,0,0,0,0,1,1,0,7.431623,0,57.91,48.98,57.16,56.15,10,1,1,0,0,3,11,4,1,1598.3334,107649.11,77467.641,309124.19,159788.13,3336.9272 -1865,2291,4116,-9,4115,4114,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1127.6467,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,1598.3334,107649.11,77467.641,309124.19,159788.13,3336.9272 -1866,2292,4117,4118,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.1598673,8.6177015,0,30,1,63.743999,0,3,2,2019,13,1,37,38,1,1,0,13.40129,13.40129,0,0,0,0,0,0,0,0,8.6464033,0,45.32,53.5,57.06,57.76,8.333333333333334,1,1,0,0,11,5,4,1,270,1350140.3,770105.94,213828.63,0,6098.251 -1866,2292,4118,4117,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,0,7.206656,7.4752841,9,-1,-64.824814,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2376571,57.06,57.76,45.32,53.5,10,1,1,0,0,9,5,4,1,270,1350140.3,770105.94,213828.63,0,6098.251 -1867,2293,4119,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.4431539,7.6186075,0,0,0,-957.00317,0,3,3,2019,10,0,20,20,1,0,0,9.8642635,9.8642635,0,0,0,0,0,1,1,0,7.4612665,0,57.43,49.13,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,808,1042088.2,436403.66,192895.66,0,1392.7002 -1868,2294,4120,-9,4122,4121,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.56348,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1200,439997.75,199215.73,172059.7,0,2759.9531 -1868,2294,4121,4122,-9,-9,1,1,57,0,1,0,2,2,-9,0,2,8.384367,8.7533598,0,7,10,-81.426811,0,2,2,2019,16,5,38,38,1,5,0,16.14245,16.14245,0,0,0,0,0,1,1,0,0,0,42.16,36.22,38.16,31.3,6.666666666666667,1,1,0,0,10,12,4,1,1200,439997.75,199215.73,172059.7,0,2759.9531 -1868,2294,4122,4121,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,0,0,0,7,-10,88.541275,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,31.3,42.16,36.22,6.666666666666667,1,1,0,0,6,12,4,1,1200,439997.75,199215.73,172059.7,0,2759.9531 -1869,2295,4123,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,8.5571995,8.512331,0,0,0,-1006.585,0,2,-9,2019,11,0,38,0,1,0,0,15.599664,15.599664,0,0,0,0,0,0,0,0,0,0,55.6,37.07,-9,-9,8.333333333333334,1,1,0,0,8,5,5,0,300,211337.95,25133.221,144747.28,93874.242,2280.6033 -1870,2296,4124,4125,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,6,1,0,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,49.237297,0,0,1,1,0,0,0,64.89,20.7,58.98,42.9,8.333333333333334,1,1,0,0,0,13,1,1,654.5,55682.664,77474.531,179114.42,0,2301.3879 -1870,2296,4125,4124,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,6,-1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.98,42.9,64.89,20.7,10,1,1,0,0,0,13,1,1,654.5,55682.664,77474.531,179114.42,0,2301.3879 -1871,2297,4126,4127,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.5295019,8.5009251,0,6,-1,55.434631,0,-9,-9,2019,9,0,40,45,1,0,0,12.868732,12.868732,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,11,4,5,1,866.5,222704.72,-8878.0195,0,0,2467.9824 -1871,2297,4127,4126,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.0353479,7.6583843,0,6,1,-49.071308,0,-9,-9,2019,7,0,39,39,1,0,0,9.6981621,9.6981621,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.1,59.11,10,1,1,0,0,11,4,5,1,866.5,222704.72,-8878.0195,0,0,2467.9824 -1872,2298,4128,-9,-9,-9,1,0,38,0,3,0,3,3,-9,0,3,7.1830125,7.1081719,0,0,0,-1074.8016,0,2,3,2019,29,10,25,12,1,10,0,6.1935186,6.1935186,0,0,0,0,14.5,1,1,0,0,0,18.2,56.57,-9,-9,5,1,1,0,0,3,13,2,0,181,-158564.42,0,0,0,1661.2831 -1873,2299,4129,4130,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3896351,8.416194,0,5,0,-4.7706981,0,2,2,2019,11,0,35,35,1,0,0,12.743052,12.743052,0,0,0,0,0,0,0,0,1.6324381,0,61.68,47.24,52,55,8.333333333333334,1,1,0,0,10,9,5,1,1679,1075876.1,916038.06,312555.69,166576,4344.3564 -1873,2299,4130,4129,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.166275,8.2818556,0,5,0,69.902359,0,-9,-9,2019,9,0,37,37,1,1,0,14.072865,14.072865,0,0,0,0,0,0,0,0,6.8226871,0,52,55,61.68,47.24,8,1,1,0,0,1,9,5,1,1679,1075876.1,916038.06,312555.69,166576,4344.3564 -1874,2300,4131,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.0450535,7.308373,0,0,0,-949.1402,0,2,2,2019,18,6,45,20,1,6,0,3.3537858,3.3537858,0,0,0,0,0,0,0,0,0,0,36.37,57.89,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,1108,128571.66,-59246.199,128613.84,-1954.4335,1129.7146 -1875,2301,4132,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1064.6144,-9,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,22.52,-9,-9,0,1,1,0,0,0,1,1,0,622,0,0,0,0,1243.8959 -1876,2302,4133,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1042.5762,0,2,1,2019,18,6,20,24,1,6,0,.0001142296,.0001142296,0,0,0,0,0,0,0,0,0,0,41.19,51.55,-9,-9,6.666666666666667,1,1,0,1,8,1,2,1,321,0,0,0,0,-166.90581 -1876,2303,4134,4135,4133,-9,1,1,25,0,0,0,1,1,-9,0,1,8.0166473,8.0986233,0,3,-1,-125.11709,0,1,1,2019,29,11,36,40,1,11,0,9.1024323,9.1024323,0,0,0,0,0,0,0,0,0,0,8.32,54.58,22.89,60.29,0,1,1,0,0,3,1,4,1,223.5,78362.484,36155.516,0,0,2562.9441 -1876,2303,4135,4134,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,7.7660441,7.7987103,0,3,1,61.067623,0,-9,-9,2019,27,12,35,35,1,12,0,6.3858819,6.3858819,0,0,0,0,0,0,0,0,0,0,22.89,60.29,8.32,54.58,6.666666666666667,1,1,0,0,3,1,4,1,223.5,78362.484,36155.516,0,0,2562.9441 -1877,2304,4136,-9,4137,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-971.63934,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,9,5,1,1071.6666,801443.13,400570.81,437643.75,217417.83,3117.5137 -1877,2304,4137,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,9.3277864,8.7110119,6.3209028,0,0,-1002.2784,0,-9,-9,2019,6,0,45,45,1,0,0,18.979141,18.979141,0,0,0,0,0,1,1,0,6.0552211,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1071.6666,801443.13,400570.81,437643.75,217417.83,3117.5137 -1877,2304,4138,-9,4137,-9,1,0,16,0,1,1,2,0,-9,0,3,0,4.6089621,4.4404922,0,0,-919.19794,-9,1,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.065865,0,48.05,53.56,-9,-9,6.666666666666667,4,2,0,0,0,9,5,1,1071.6666,801443.13,400570.81,437643.75,217417.83,3117.5137 -1878,2305,4139,4140,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.8244982,8.5873852,0,26,-7,-82.815407,0,3,2,2019,6,0,50,48,1,0,0,13.924742,13.924742,0,0,0,0,2,1,1,0,4.2659879,0,58.15,52.91,48.03,24.16,8.333333333333334,1,1,0,0,11,13,4,1,798.5,846978.13,1016512.8,0,0,3095.6128 -1878,2305,4140,4139,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,26,7,44.501247,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,2.0152941,6.3203535,17.73048,0,1,1,0,0,0,48.03,24.16,58.15,52.91,8.333333333333334,1,1,0,0,7,13,4,1,798.5,846978.13,1016512.8,0,0,3095.6128 -1879,2306,4141,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1000.1196,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.52,33.27,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1931,-61338.961,0,0,0,937.48859 -1880,2307,4142,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.9470072,8.8478088,5.4546919,0,0,-919.15997,0,3,-9,2019,9,0,61,43,1,0,0,10.94838,10.94838,0,0,0,0,0,0,0,0,0,5.4108739,54.61,51.04,-9,-9,5,1,1,0,0,12,9,5,1,155,697168.94,61161.332,207770.02,0,3710.4497 -1880,2308,4143,-9,-9,4142,1,1,21,0,0,0,2,2,-9,0,4,8.067296,7.7832232,0,0,0,-935.72174,0,-9,3,2019,10,0,51,0,1,0,1,6.1908426,6.1908426,0,0,0,0,0,0,0,0,.70519775,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,1,4,9,4,1,226,128690.6,0,0,0,1422.5758 -1881,2309,4144,-9,4145,4148,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-847.45264,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 -1881,2309,4145,4148,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,24,-5,-141.62656,0,3,3,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,18.64,62.31,51.83,57.2,5,2,3,0,1,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 -1881,2309,4146,-9,4145,4148,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1028.6523,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 -1881,2309,4147,-9,4145,4148,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.62909,-9,2,3,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,2,3,0,0,0,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 -1881,2309,4148,4145,-9,-9,1,1,44,0,3,0,3,3,-9,0,4,7.1085396,7.3730016,0,24,5,27.511559,0,3,3,2019,11,0,42,24,1,0,0,4.1289339,4.1289339,0,0,0,0,2,1,1,0,0,0,51.83,57.2,18.64,62.31,5,2,3,0,0,8,2,2,0,615,394863.53,31402.836,343269.69,0,1862.5378 -1881,2310,4149,-9,4145,4148,1,1,20,0,3,0,2,2,0,0,5,0,0,0,0,0,-924.91022,-9,2,3,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,27.61,60.54,-9,-9,6.666666666666667,2,3,0,0,0,2,1,0,1340,0,0,0,0,1648.5117 -1882,2311,4150,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1070.4918,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,18.767208,0,0,1,1,0,0,0,56.51,16,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,392,-123404.36,18909.307,0,0,1773.3313 -1883,2312,4151,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1079.5969,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.56,49.13,-9,-9,8.333333333333334,1,1,1,0,9,11,1,0,159,205289.92,0,0,0,0 -1884,2313,4152,-9,4153,4154,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.06818,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,3,0,759,-87313.328,0,0,0,1261.1249 -1884,2313,4153,4154,-9,-9,1,0,24,0,1,0,1,1,0,0,2,0,0,0,5,-7,-68.874786,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,41.47,58.08,5,1,1,0,0,5,6,3,0,759,-87313.328,0,0,0,1261.1249 -1884,2313,4154,4153,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.3328753,8.0233603,0,5,7,108.5074,0,-9,-9,2019,17,5,40,45,1,5,0,10.748363,10.748363,0,0,0,0,0,1,1,0,0,0,41.47,58.08,34.44,48.18,5,1,1,0,0,6,6,3,0,759,-87313.328,0,0,0,1261.1249 -1885,2314,4155,4156,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,57,-3,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,.66500849,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,10,1,1,0,0,3,2,1,1,417.5,329799.78,-44803.871,140936.55,0,1350.6992 -1885,2314,4156,4155,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,57,3,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,0,2,1,1,417.5,329799.78,-44803.871,140936.55,0,1350.6992 -1886,2315,4157,4158,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.7821784,7.7788215,47,5,-4.8697858,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,0,7.9253049,52.22,42.73,54.67,42.24,1.666666666666667,1,1,0,0,9,7,3,1,247,859368.25,338000.88,319971.19,0,2944.6421 -1886,2315,4158,4157,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.3106499,5.3029861,47,-5,72.027702,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,5.2825093,54.67,42.24,52.22,42.73,5,1,1,0,0,1,7,3,1,247,859368.25,338000.88,319971.19,0,2944.6421 -1886,2316,4159,-9,4158,4157,1,1,37,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1096.9066,0,2,1,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,20.12,61.73,-9,-9,1.666666666666667,1,1,0,1,9,7,1,1,218,-44378.379,0,0,0,324.68448 -1887,2317,4160,4161,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,33,-1,-88.32325,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,58.56,46.45,10,1,1,0,0,0,12,3,1,436.5,292176.53,193114.69,0,0,3355.9468 -1887,2317,4161,4160,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,7.7425814,7.6064487,33,1,36.423271,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.7632227,7.4544692,58.56,46.45,51.83,57.2,10,1,1,0,0,0,12,3,1,436.5,292176.53,193114.69,0,0,3355.9468 -1887,2318,4162,-9,4160,4161,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-912.07483,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.8329563,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,249,181566.08,0,0,0,274.88541 -1887,2319,4163,-9,4160,4161,1,1,19,0,0,0,2,2,-9,0,5,7.3815804,7.6470251,0,0,0,-949.70197,0,3,1,2019,10,1,35,20,1,1,0,6.0783768,6.0783768,0,0,0,0,0,0,0,0,1.2199073,0,36.09,58.58,-9,-9,10,1,1,0,0,3,12,3,1,270,0,0,0,0,769.29346 -1888,2320,4164,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.7919426,8.7960768,0,0,0,-1035.2727,0,2,2,2019,6,0,30,37,1,0,0,28.499836,28.499836,0,0,0,0,2,0,0,0,5.4604483,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,140,26146.5,0,0,0,2740.3708 -1889,2321,4165,-9,4167,4166,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.91046,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,4,2,-9,0,0,2,5,1,1017,386516.06,280296.81,235571.66,58436.262,4596.9897 -1889,2321,4166,4167,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5977888,8.1774035,0,24,1,-108.47228,0,2,2,2019,15,3,40,51,1,3,0,13.165261,13.165261,0,0,0,0,0,1,1,0,4.859663,0,36.27,57.29,44.19,58.01,8.333333333333334,1,1,0,0,4,2,5,1,1017,386516.06,280296.81,235571.66,58436.262,4596.9897 -1889,2321,4167,4166,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.9114532,8.8721876,0,24,-1,-35.549908,0,2,-9,2019,11,2,60,42,1,2,0,15.739131,15.739131,0,0,0,0,0,1,1,0,2.9107606,0,44.19,58.01,36.27,57.29,6.666666666666667,4,2,0,0,8,2,5,1,1017,386516.06,280296.81,235571.66,58436.262,4596.9897 -1890,2322,4168,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.0367126,8.9043922,0,0,0,-935.04785,0,2,2,2019,6,0,45,45,1,0,0,16.650761,16.650761,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,163,1877316.1,1561831.9,128877.03,123227.92,2719.1948 -1891,2323,4169,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.291275,6.1716247,0,0,-867.39453,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,1.8014628,0,1,1,0,6.5891042,6.0051765,66.34,49.42,-9,-9,10,1,1,0,0,0,5,2,1,1393,-240517.27,329957.88,0,0,222.38852 -1892,2324,4170,4171,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,7.534946,7.8971753,5.2758026,10,3,56.621906,0,3,3,2019,12,0,60,60,1,0,0,4.0417657,4.0417657,0,0,0,0,0,0,0,0,0,5.5321593,46.08,46.68,48.12,63.16,5,1,1,0,0,11,11,4,1,397,538976.5,563881.63,115114.48,0,1922.532 -1892,2324,4171,4170,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.4780822,7.4796824,0,10,-3,92.367905,0,2,2,2019,10,2,28,22,1,2,0,9.7840347,9.7840347,0,0,0,0,0,0,0,0,0,0,48.12,63.16,46.08,46.68,10,1,1,0,0,11,11,4,1,397,538976.5,563881.63,115114.48,0,1922.532 -1893,2325,4172,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,7.0880718,6.9240265,5.2670031,0,0,-1081.8279,0,3,2,2019,17,5,6,6,1,5,0,20.31637,20.31637,0,0,0,0,0,1,0,1,0,5.952364,47.89,24.44,-9,-9,1.666666666666667,3,4,0,0,5,8,2,0,1224,-16990.406,46020.223,0,0,723.03021 -1894,2326,4173,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.7868714,7.7863426,0,0,0,-1083.3627,0,2,3,2019,13,1,35,35,1,1,0,7.3843117,7.3843117,0,0,0,0,0,1,1,0,0,0,42.32,53.85,-9,-9,5,2,3,0,0,10,2,3,0,491.5,456097,27389.59,215925.06,0,1049.7202 -1894,2326,4174,-9,4173,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1071.927,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,2,3,0,491.5,456097,27389.59,215925.06,0,1049.7202 -1894,2327,4175,-9,4173,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-946.79523,-9,2,-9,2019,16,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,-9,-9,6.666666666666667,2,3,0,0,2,2,1,0,343,0,0,0,0,1247.1088 -1895,2328,4176,4178,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.9802537,7.9032912,0,5,-8,-2.6553061,0,-9,-9,2019,4,0,43,43,1,0,0,8.2663803,8.2663803,0,0,0,0,7,1,1,0,0,0,57.16,56.15,70.47,31.07,10,1,1,0,0,2,5,4,0,227.33333,1653.8931,-6566.4351,227590.89,129168.32,3262.3123 -1895,2328,4177,-9,4176,4178,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.64368,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,227.33333,1653.8931,-6566.4351,227590.89,129168.32,3262.3123 -1895,2328,4178,4176,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.525465,8.2573128,0,5,8,-27.678944,0,2,-9,2019,8,0,60,55,1,0,0,9.6363993,9.6363993,0,0,0,0,0,1,1,0,0,0,70.47,31.07,57.16,56.15,6.666666666666667,1,1,0,0,9,5,4,0,227.33333,1653.8931,-6566.4351,227590.89,129168.32,3262.3123 -1896,2329,4179,-9,4182,4181,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.90875,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 -1896,2329,4180,-9,4182,4181,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.54706,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 -1896,2329,4181,4182,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.8548999,7.6593008,0,25,4,-9.3270664,0,2,2,2019,8,0,50,50,1,0,0,3.7819929,3.7819929,0,0,0,0,0,1,1,0,.15861601,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 -1896,2329,4182,4181,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.98874,8.9378128,0,25,-4,110.37691,0,2,2,2019,9,0,60,50,1,0,0,13.812436,13.812436,0,0,0,0,0,1,1,0,3.2581954,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,7,5,4,1,917.25,1282928.4,961654.56,250389.38,0,3977.877 -1897,2330,4183,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.9334,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,116,264412.22,0,0,0,937.50665 -1898,2331,4184,4185,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.4380646,8.7931871,0,31,0,-130.29547,0,2,3,2019,8,1,12,40,1,1,0,55.506069,55.506069,0,0,0,0,0,0,0,0,2.2806239,0,58.05,54.52,46.44,59.62,10,1,1,0,0,11,5,4,0,623,1561178.5,1026178.9,214879.45,0,3309.2617 -1898,2331,4185,4184,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,31,0,-127.95538,0,2,2,2019,13,3,0,45,3,3,0,0,0,0,0,0,0,0,0,0,0,7.3592353,0,46.44,59.62,58.05,54.52,8.333333333333334,1,1,1,0,8,5,4,0,623,1561178.5,1026178.9,214879.45,0,3309.2617 -1898,2332,4186,-9,4185,4184,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-883.72308,0,1,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.90165037,0,47.85,52.43,-9,-9,8.333333333333334,1,1,1,0,2,5,1,0,336,-358980.28,0,0,0,247.46098 -1899,2333,4187,4188,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.9099941,8.5119324,0,7,-5,31.769398,0,3,2,2019,10,0,40,40,1,1,0,17.495691,17.495691,0,0,0,0,0,1,1,0,0,0,50,57,20.84,66.28,7,1,1,0,0,1,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 -1899,2333,4188,4187,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,7.7308769,7.5160632,0,7,5,-6.1329374,0,3,3,2019,25,9,23,24,1,9,0,8.9775877,8.9775877,0,0,0,0,2,1,1,0,.75312573,0,20.84,66.28,50,57,3.333333333333333,1,1,0,0,8,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 -1899,2333,4189,-9,4188,4187,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.02026,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 -1899,2333,4190,-9,4188,4187,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.3171,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,438.25,258096.14,132855.44,219928.42,169220.73,3444.1677 -1900,2334,4191,4192,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,0,0,6,-4,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50,55,48.39,50.88,8,1,1,1,0,0,11,1,0,832.5,0,0,0,0,913.9411 -1900,2334,4192,4191,-9,-9,1,1,47,0,0,0,3,3,-9,1,4,0,0,0,6,4,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.39,50.88,50,55,8.333333333333334,1,1,1,0,0,11,1,0,832.5,0,0,0,0,913.9411 -1901,2335,4193,-9,4194,4195,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8889,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 -1901,2335,4194,4195,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.6569061,7.5603595,0,19,0,-149.21397,0,2,1,2019,15,3,24,24,1,3,0,11.036034,11.036034,0,0,0,0,0,1,1,0,.86632359,0,55.19,54.26,39.74,52.42,8.333333333333334,1,1,0,0,10,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 -1901,2335,4195,4194,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.2168093,7.9894094,0,18,0,38.116188,0,2,2,2019,12,0,48,44,1,0,0,7.5686789,7.5686789,0,0,0,0,0,1,1,0,3.5990021,0,39.74,52.42,55.19,54.26,3.333333333333333,1,1,0,0,10,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 -1901,2335,4196,-9,4194,4195,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1097.7598,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,543,598949.44,276523.22,280411,13249.65,2927.3345 -1902,2336,4197,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.7870898,8.0325193,0,0,-898.08099,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.341471,8.0090361,59.32,49.66,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,228,719500.5,223414.73,302174.63,0,2545.991 -1903,2337,4198,4199,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0382462,7.841001,0,4,3,-34.480785,-9,3,2,2019,21,9,47,0,1,9,0,4.956151,4.956151,0,0,0,0,0,1,1,0,0,0,24.69,62.96,51.14,60.45,6.666666666666667,2,3,0,0,9,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 -1903,2337,4199,4198,-9,-9,1,1,34,0,2,0,1,1,-9,0,5,9.2842751,8.9602728,0,4,-3,-62.139702,0,3,3,2019,10,1,46,70,1,1,0,20.127012,20.127012,0,0,0,0,0,1,1,0,0,0,51.14,60.45,24.69,62.96,8.333333333333334,2,3,0,0,9,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 -1903,2337,4200,-9,4198,4199,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.66083,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 -1903,2337,4201,-9,4198,4199,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.4026,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,480.25,282507.09,163702.28,148708.7,128140.62,4958.8398 -1904,2338,4202,4205,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.9868741,8.0197735,0,3,10,22.332153,-9,-9,-9,2019,9,0,40,0,1,1,0,8.0976095,8.0976095,0,0,0,0,0,1,1,0,6.9597816,0,53,55,54.2,57.49,8,1,1,0,0,9,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 -1904,2338,4203,-9,4205,4202,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.77466,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 -1904,2338,4204,-9,4205,4202,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.9054,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 -1904,2338,4205,4202,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,6.0003514,7.5877252,6.8822393,15,-10,160.11157,0,2,2,2019,8,0,18,15,1,0,0,2.7489948,2.7489948,0,0,0,0,2,1,1,0,7.1061773,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 -1904,2338,4206,-9,4205,4202,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-945.81506,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,11,3,1,424.20001,32960.621,30239.604,114685.49,65897.063,2977.2756 -1905,2339,4207,4208,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,53,-1,-6.9163952,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.92,51.82,63.41,29.17,8.333333333333334,1,1,0,0,4,6,2,1,1356,301618.25,-21794.053,200164.33,0,1272.6659 -1905,2339,4208,4207,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,4.368484,4.5594778,7,1,115.41745,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5336404,4.2058363,63.41,29.17,57.92,51.82,8.333333333333334,1,1,0,0,5,6,2,1,1356,301618.25,-21794.053,200164.33,0,1272.6659 -1906,2340,4209,-9,4210,-9,1,0,53,0,0,0,2,2,-9,0,5,8.052516,7.8351707,0,0,0,-959.63934,-9,3,-9,2019,5,0,37,0,1,0,0,7.7649212,7.7649212,0,0,0,0,71.5,1,1,0,0,0,43.09,61.58,-9,-9,3.333333333333333,1,1,0,1,6,11,4,1,331,253098.16,85465.688,13358.542,0,958.6734 -1906,2341,4210,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,6.5466332,5.9716001,0,0,-940.50995,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9036283,57,49,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,1465,-334306.91,-41160.605,5993.4429,0,1353.4633 -1906,2342,4211,-9,4210,-9,1,1,60,0,0,0,2,2,-9,0,4,8.0677958,7.925405,0,0,0,-947.07318,0,3,3,2019,12,1,39,39,1,1,0,9.7740889,9.7740889,0,0,0,0,7,1,1,0,0,0,37.56,56.96,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,292,5721.5381,21213.162,260640.22,0,1079.9902 -1907,2343,4212,4213,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,37,-7,0,-9,-9,-9,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,58.15,52.91,1.666666666666667,1,1,0,1,0,4,1,0,1228.5,233026.19,0,0,0,1714.5649 -1907,2343,4213,4212,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,36,7,0,-9,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,58.15,52.91,24.93,19.95,8.333333333333334,3,4,0,1,0,4,1,0,1228.5,233026.19,0,0,0,1714.5649 -1908,2344,4214,4215,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,6.0805402,6.2399969,10,4,44.20816,-9,1,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,3.6014044,6.0649519,45.18,57.44,49.34,58.54,8.333333333333334,1,1,0,0,9,9,2,1,433,4912919,1288088,2486794.8,0,2226.9841 -1908,2344,4215,4214,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,6.663094,6.3870497,10,-4,32.423412,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.1058369,6.7231455,49.34,58.54,45.18,57.44,8.333333333333334,1,1,0,0,8,9,2,1,433,4912919,1288088,2486794.8,0,2226.9841 -1909,2345,4216,-9,4219,-9,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.0403,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,1,0,994.75,111013.01,0,0,0,1344.7362 -1909,2345,4217,-9,4219,-9,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-954.46033,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,994.75,111013.01,0,0,0,1344.7362 -1909,2345,4218,-9,4219,-9,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-982.20709,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,1,0,994.75,111013.01,0,0,0,1344.7362 -1909,2345,4219,-9,-9,-9,1,0,28,2,3,0,2,2,-9,0,4,0,0,0,0,0,-961.13678,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.98,57.51,-9,-9,5,1,1,0,0,9,5,1,0,994.75,111013.01,0,0,0,1344.7362 -1910,2346,4220,-9,4223,4222,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.8269,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 -1910,2346,4221,-9,4223,4222,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.37781,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 -1910,2346,4222,4223,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.1092205,8.0373411,0,18,6,52.781792,0,3,3,2019,8,0,80,40,1,0,0,3.8818104,3.8818104,0,0,0,0,0,1,0,1,0,0,57.33,53.46,38.77,63.46,5,1,1,0,0,10,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 -1910,2346,4223,4222,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.2012396,8.1723661,0,11,-6,35.340443,0,-9,-9,2019,10,2,29,29,1,2,0,13.565908,13.565908,0,0,0,0,0,1,0,1,2.5743344,0,38.77,63.46,57.33,53.46,6.666666666666667,1,1,0,0,13,2,4,1,578.25,509989.75,137403.66,210050.2,122023.25,2447.8225 -1911,2347,4224,4225,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,9,5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.89712065,0,51.34,33.97,50,46,8.333333333333334,1,1,0,0,0,8,1,1,969,539340.5,0,435988.75,0,1445.8464 -1911,2347,4225,4224,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-5,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5789909,0,50,46,51.34,33.97,7,4,5,0,0,0,8,1,1,969,539340.5,0,435988.75,0,1445.8464 -1912,2348,4226,4227,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,7.6515665,7.8118262,0,32,-1,-37.780544,0,3,2,2019,10,0,48,50,1,0,0,5.8880591,5.8880591,0,0,0,0,0,1,1,0,0,0,48.98,57.22,65.78,29.26,6.666666666666667,2,3,0,0,6,8,3,1,331.33334,2259176.3,0,1523656.3,202393.06,2014.0531 -1912,2348,4227,4226,-9,-9,1,0,56,0,1,0,3,3,-9,0,3,7.0590777,7.0058374,0,32,1,-19.065258,0,3,2,2019,11,0,27,29,1,2,0,5.210094,5.210094,0,0,0,0,0,1,1,0,0,0,65.78,29.26,48.98,57.22,8.333333333333334,2,3,0,0,9,8,3,1,331.33334,2259176.3,0,1523656.3,202393.06,2014.0531 -1912,2348,4228,-9,4227,4226,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1044.5137,-9,3,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.99,53.82,-9,-9,10,2,3,0,0,0,8,3,1,331.33334,2259176.3,0,1523656.3,202393.06,2014.0531 -1912,2349,4229,-9,4227,4226,1,0,24,0,1,0,2,2,-9,0,3,6.8221827,7.17484,0,0,0,-1125.4365,0,2,2,2019,11,0,30,35,1,0,1,3.7114313,3.7114313,0,0,0,0,0,1,1,0,0,0,48.45,49.46,-9,-9,1.666666666666667,2,3,0,0,4,8,2,1,430,52495.762,0,0,0,437.51926 -1913,2350,4230,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.8660049,8.1063814,0,0,-932.02899,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.7311153,8.0575829,56.9,49.4,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,938,754588.13,447942.22,196904.22,0,2750.3372 -1914,2351,4231,4232,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6238203,8.7100458,0,7,4,33.949108,0,2,2,2019,9,0,40,37,1,1,0,16.127604,16.127604,0,0,0,0,0,0,0,0,0,0,51,56,35.74,60.87,8,1,1,0,0,1,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 -1914,2351,4232,4231,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.6969476,7.3207192,0,7,-4,24.975622,0,-9,-9,2019,12,0,35,26,1,0,0,5.6377854,5.6377854,0,0,0,0,0,0,0,0,6.5280175,0,35.74,60.87,51,56,1.666666666666667,1,1,0,0,4,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 -1914,2351,4233,-9,4232,4231,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.80896,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 -1914,2351,4234,-9,4232,4231,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.1315,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1166.75,57809.281,202312.61,80376.781,76416.641,3490.3865 -1915,2352,4235,4236,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.3799915,8.2695894,0,8,8,97.553566,0,2,2,2019,9,0,42,42,1,0,0,7.6586556,7.6586556,0,0,0,0,0,0,0,0,0,0,46.32,53.44,51.41,56.15,10,1,1,0,0,10,6,5,1,328,892516.5,325165.81,484164.59,-6775.9409,3148.7671 -1915,2352,4236,4235,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5903282,9.0071354,0,8,-8,-67.848061,-9,3,3,2019,11,0,39,0,1,0,0,18.603493,18.603493,0,0,0,0,0,0,0,0,1.3103286,0,51.41,56.15,46.32,53.44,6.666666666666667,1,1,0,0,10,6,5,1,328,892516.5,325165.81,484164.59,-6775.9409,3148.7671 -1915,2353,4237,-9,4235,4236,1,0,33,0,0,0,2,2,-9,0,3,8.2909031,8.6865921,0,0,0,-957.46039,0,2,2,2019,11,0,48,38,1,0,1,11.569845,11.569845,0,0,0,0,0,0,0,0,.1196928,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,108,97551.156,1259.8542,0,0,1686.6115 -1916,2354,4238,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.4421296,6.2402897,0,0,-1072.4696,0,2,2,2019,5,0,0,32,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4669485,64.41,28.43,-9,-9,8.333333333333334,1,1,0,0,11,10,2,0,896,-157255.97,-53713.035,0,0,887.08295 -1917,2355,4239,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.7134571,9.1193314,0,0,0,-1120.7701,0,-9,-9,2019,8,1,35,35,1,1,0,18.573498,18.573498,0,0,0,0,2,0,0,0,0,0,44.91,53.85,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,1680,248961.95,-125026.45,0,0,2661.1694 -1918,2356,4240,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1091.9561,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,4.0747089,0,1,1,0,0,0,61.43,30.11,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,514,480166.66,0,174735.81,46462.836,666.98163 -1919,2357,4241,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.7397165,6.9030628,0,0,0,-941.92548,0,3,3,2019,12,0,20,0,1,2,0,5.5908127,5.5908127,0,0,0,0,0,1,0,1,0,0,48,48,-9,-9,7,1,1,0,0,1,11,2,1,229,-79036.586,0,0,0,610.90833 -1919,2358,4242,-9,4241,-9,1,1,26,0,0,0,2,2,-9,0,3,7.1482339,7.1685748,0,0,0,-981.53864,0,3,-9,2019,15,3,30,24,1,3,1,5.3643484,5.3643484,0,0,0,0,5.48,1,0,1,0,0,35.22,56.72,-9,-9,5,1,1,0,0,4,11,3,1,150,140188.22,-70669.766,0,0,1421.2896 -1920,2359,4243,-9,4245,-9,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.85724,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,6,2,0,352.33334,-71494.992,0,0,0,1082.2271 -1920,2359,4244,-9,4245,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.517,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,2,0,352.33334,-71494.992,0,0,0,1082.2271 -1920,2359,4245,-9,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1035.4126,0,2,2,2019,11,0,0,23,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,1,8,6,2,0,352.33334,-71494.992,0,0,0,1082.2271 -1921,2360,4246,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.4479241,7.4463997,0,0,0,-988.63971,0,3,3,2019,9,0,39,42,1,0,0,6.1696701,6.1696701,0,0,0,0,0,1,1,0,0,0,43.73,44.91,-9,-9,8.333333333333334,1,1,0,1,4,12,3,1,533,281377.75,202877.75,176700.75,0,1522.4861 -1922,2361,4247,-9,4249,4250,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-901.89685,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 -1922,2361,4248,-9,4249,4250,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4751,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 -1922,2361,4249,4250,-9,-9,1,0,38,2,3,0,1,1,-9,0,3,3.6320407,6.2616205,6.5186744,2,0,-90.188133,0,2,2,2019,17,7,35,-9,1,7,0,.14520516,.14520516,0,0,0,0,0,1,1,0,5.806705,0,38.31,41.83,54.47,37.6,6.666666666666667,3,4,0,1,6,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 -1922,2361,4250,4249,-9,-9,1,1,38,2,3,0,2,2,-9,0,2,8.1987715,8.2541466,0,2,0,-22.315571,-9,-9,-9,2019,12,1,36,0,1,1,0,11.866832,11.866832,0,0,0,0,0,1,1,0,0,0,54.47,37.6,38.31,41.83,6.666666666666667,1,1,0,1,4,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 -1922,2361,4251,-9,4249,4250,1,0,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.1696,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,3,0,1300,-246106.02,-14962.039,0,0,2366.2639 -1923,2362,4252,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1096.7604,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,5.2336721,0,47.078796,0,1,1,0,0,0,39.62,40.76,-9,-9,5,1,1,0,0,0,7,1,0,637,810550,0,1056170.8,0,1000.4293 -1924,2363,4253,4254,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.2968621,7.4773989,0,7,-1,30.971163,0,3,2,2019,14,3,20,20,1,3,0,6.7264423,6.7264423,0,0,0,0,0,0,0,0,0,0,45.76,45.44,36.91,59.95,6.666666666666667,1,1,0,0,8,9,3,1,1103.5,814062.94,-9935.5537,231942.09,0,1824.0056 -1924,2363,4254,4253,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.4381609,7.3735695,0,7,1,29.897085,0,3,3,2019,11,0,30,26,1,0,0,6.2385335,6.2385335,0,0,0,0,0,0,0,0,0,0,36.91,59.95,45.76,45.44,6.666666666666667,1,1,0,0,8,9,3,1,1103.5,814062.94,-9935.5537,231942.09,0,1824.0056 -1924,2364,4255,-9,4253,4254,1,1,35,0,0,0,2,2,-9,0,3,7.6584291,7.8016295,0,0,0,-1035.0759,-9,2,2,2019,11,1,35,0,1,1,1,9.9680862,9.9680862,0,0,0,0,0,0,0,0,.4965921,0,46.84,55.68,-9,-9,5,1,1,0,1,8,9,4,1,443,-76425.094,0,0,0,989.30621 -1925,2365,4256,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.5145864,7.0388522,0,0,0,-972.36792,0,2,2,2019,11,0,17,18,1,0,0,11.41228,11.41228,0,0,0,0,0,0,0,0,3.9117439,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,13,2,3,1,1547,18953.828,12666.332,112985.01,30584.662,947.69489 -1926,2366,4257,4258,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3628044,8.4903126,0,30,-7,3.1425529,0,2,2,2019,12,1,30,30,1,1,0,17.099983,17.099983,0,0,0,0,0,1,1,0,0,0,47.83,62.16,51.77,58.57,6.666666666666667,2,3,0,0,13,9,5,1,278,1263554.4,854381,497700.53,0,4383.6987 -1926,2366,4258,4257,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.3513737,8.5795174,30,7,-28.104345,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.693738,51.77,58.57,47.83,62.16,1.666666666666667,2,3,0,0,10,9,5,1,278,1263554.4,854381,497700.53,0,4383.6987 -1927,2367,4259,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.7545996,6.4668241,0,0,-1037.323,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.9585004,6.7131672,64.39,28.77,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1396,511706.84,121368.75,198624.66,0,1584.3068 -1928,2368,4260,-9,4261,-9,1,1,17,0,0,1,2,0,0,1,4,0,0,0,0,0,-977.52942,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,6.666666666666667,2,3,0,0,0,9,2,1,847,128061.02,80712.953,0,0,1557.9259 -1928,2368,4261,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,1,7.1404886,7.1053071,0,0,0,-982.3924,0,2,1,2019,12,3,24,27,1,3,0,5.0372605,5.0372605,0,0,0,0,0,1,1,0,1.994612,0,52.57,28.96,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,847,128061.02,80712.953,0,0,1557.9259 -1929,2369,4262,4263,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,0,0,29,-1,-24.681662,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,1.3015914,0,45.81,42.3,56.92,49.39,8.333333333333334,2,3,0,0,4,11,3,1,1001.3333,65529.906,61498.281,218270.39,160753.86,3101.217 -1929,2369,4263,4262,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.3494205,7.8936057,0,29,1,-60.298214,0,3,2,2019,7,0,37,38,1,0,0,11.544916,11.544916,0,0,0,0,0,1,1,0,8.4568787,0,56.92,49.39,45.81,42.3,8.333333333333334,2,3,0,0,12,11,3,1,1001.3333,65529.906,61498.281,218270.39,160753.86,3101.217 -1929,2369,4264,-9,4262,4263,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.3484,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,11,3,1,1001.3333,65529.906,61498.281,218270.39,160753.86,3101.217 -1929,2370,4265,-9,4262,4263,1,1,23,0,1,0,1,1,1,0,5,8.2719431,8.6051207,0,0,0,-929.34521,-9,2,1,2019,5,0,36,0,1,0,1,17.259487,17.259487,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,0,0,1,11,5,1,1618,-117430.34,78078.734,131943.91,124712.74,1554.9011 -1929,2371,4266,-9,4262,4263,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1026.7606,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,11,1,1,539,-466046.47,0,0,0,0 -1929,2372,4267,4268,-9,-9,1,0,26,0,1,0,1,1,-9,0,4,7.4372616,7.4883637,0,3,1,-37.841656,-9,-9,-9,2019,5,0,21,0,1,0,0,9.3663416,9.3663416,0,0,0,0,5.48,1,1,0,0,0,48.87,58.55,57.33,53.46,8.333333333333334,2,3,0,0,1,11,4,1,729,-68996.82,14299.444,75463.047,116160.69,3165.9614 -1929,2372,4268,4267,4262,4263,1,1,25,0,1,0,1,1,-9,0,3,8.8113632,8.9779549,0,3,-1,-19.906679,-9,2,1,2019,11,0,38,0,1,0,0,21.866701,21.866701,0,0,0,0,0,1,1,0,0,0,57.33,53.46,48.87,58.55,8.333333333333334,2,3,0,0,5,11,4,1,729,-68996.82,14299.444,75463.047,116160.69,3165.9614 -1930,2373,4269,-9,4271,4270,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-949.02307,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,0,2079.3333,99570.977,-13607.218,115040.9,68391.727,1792.6663 -1930,2373,4270,4271,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,7.7072382,7.7339039,0,2,9,-34.451515,0,-9,-9,2019,20,6,38,42,1,6,0,6.9525905,6.9525905,0,0,0,0,0,1,1,0,0,0,30.68,54.91,43,46.93,3.333333333333333,1,1,0,1,3,11,3,0,2079.3333,99570.977,-13607.218,115040.9,68391.727,1792.6663 -1930,2373,4271,4270,-9,-9,1,0,21,1,1,0,2,2,-9,0,3,0,0,0,2,0,-94.629143,0,-9,-9,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,43,46.93,30.68,54.91,0,1,1,1,0,3,11,3,0,2079.3333,99570.977,-13607.218,115040.9,68391.727,1792.6663 -1931,2374,4272,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.3211412,8.8222227,7.2326837,0,0,-1060.4973,0,2,2,2019,6,0,23,30,1,0,0,16.681019,16.681019,0,0,0,0,7,0,0,0,7.1884522,7.5635123,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,520,2197233.8,1571850.4,816503.25,0,2458.73 -1932,2375,4273,4274,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.452177,7.9267964,48,2,-68.070396,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9182703,7.8824902,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,1,4,1,255,754583.69,24651.602,431033.47,0,3765.3599 -1932,2375,4274,4273,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,7.9544144,7.7117763,0,48,-2,-58.932426,0,2,3,2019,6,0,50,40,1,0,0,6.136282,6.136282,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,1,4,1,255,754583.69,24651.602,431033.47,0,3765.3599 -1933,2376,4275,4277,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,8.5818825,8.3572102,0,20,4,-34.756294,0,3,3,2019,5,0,40,40,1,0,0,13.676933,13.676933,0,0,0,0,0,1,1,0,0,0,62.39,56.71,42.33,53.39,10,2,3,0,0,10,6,4,1,750.66669,170415.08,124348.27,0,0,3440.165 -1933,2376,4276,-9,4277,4275,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.37427,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,4,1,750.66669,170415.08,124348.27,0,0,3440.165 -1933,2376,4277,4275,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.1065598,7.6065726,0,20,-4,18.399313,0,2,2,2019,6,0,40,35,1,0,0,7.1120968,7.1120968,0,0,0,0,0,1,1,0,0,0,42.33,53.39,62.39,56.71,8.333333333333334,2,3,0,0,7,6,4,1,750.66669,170415.08,124348.27,0,0,3440.165 -1934,2377,4278,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-885.44275,0,3,3,2019,16,6,0,0,4,6,0,0,0,1,0,8.2432556,0,0,1,1,0,0,0,32.47,38.38,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1001,484830.94,0,203186.2,0,1237.4733 -1934,2378,4279,4280,4278,-9,1,1,57,0,0,0,3,3,-9,0,5,8.2298965,8.3199377,0,6,4,-49.625084,0,3,3,2019,12,1,30,39,1,1,0,10.953496,10.953496,0,0,0,0,7,1,1,0,0,0,33.37,57.87,41.85,59.17,8.333333333333334,1,1,0,0,6,10,4,1,295.5,120055.41,105219.21,0,0,1790.7974 -1934,2378,4280,4279,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6430655,7.6765838,0,6,-4,25.989655,0,-9,-9,2019,8,0,40,37,1,0,0,6.6079817,6.6079817,0,0,0,0,2,1,1,0,0,0,41.85,59.17,33.37,57.87,8.333333333333334,1,1,0,0,4,10,4,1,295.5,120055.41,105219.21,0,0,1790.7974 -1935,2379,4281,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1063.3588,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,5,10,1,1,1172,95991.75,310946.03,278503.84,0,-152.94199 -1936,2380,4282,4283,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,6,1,158.77881,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2716732,0,58.32,52.89,60.29,52.11,10,1,1,0,0,0,6,3,1,384,689094.25,492102,189139.09,0,2243.4243 -1936,2380,4283,4282,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.0594692,7.9952908,6,-1,-5.229074,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.80968,60.29,52.11,58.32,52.89,10,1,1,0,0,7,6,3,1,384,689094.25,492102,189139.09,0,2243.4243 -1937,2381,4284,4285,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,0,0,6,8,-45.266216,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,60.55,45.31,6.666666666666667,1,1,0,0,0,5,2,1,675.5,172919.56,-495.625,0,0,1160.4912 -1937,2381,4285,4284,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,5.3941183,5.163188,6,-8,-51.397484,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1132274,5.4433575,60.55,45.31,52.82,53.97,8.333333333333334,1,1,0,0,0,5,2,1,675.5,172919.56,-495.625,0,0,1160.4912 -1938,2382,4286,-9,4288,4293,1,0,8,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1026.2317,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4287,-9,4288,4293,1,0,11,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1168.8472,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4288,4293,-9,-9,1,0,36,0,7,0,3,3,-9,0,3,0,0,0,14,-8,41.521183,0,2,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,18.74,42.54,50.58,40.29,5,2,3,0,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4289,-9,4288,4293,1,1,15,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1074.4647,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4290,-9,4288,4293,1,1,7,0,7,1,3,0,-9,0,4,0,0,0,0,0,-866.50018,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4291,-9,4288,4293,1,0,4,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1012.0389,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4292,-9,4288,4293,1,0,5,0,7,1,3,0,-9,0,4,0,0,0,0,0,-952.00049,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4293,4288,-9,-9,1,1,44,0,7,0,3,3,-9,0,3,7.1469383,7.1465373,0,7,8,28.878986,0,3,3,2019,8,0,40,8,1,0,0,3.2115698,3.2115698,0,0,0,0,0,1,1,0,0,0,50.58,40.29,18.74,42.54,6.666666666666667,2,3,0,0,8,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1938,2382,4294,-9,4288,4293,1,0,9,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1067.897,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,678.77777,-42165.418,-30690.777,155908.33,99746.273,2046.4741 -1939,2383,4295,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,9.0016222,9.0572701,0,0,0,-960.00446,0,2,2,2019,7,0,40,40,1,0,0,20.913603,20.913603,0,0,0,0,2,1,1,0,0,0,63.89,34.01,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,195,248035.25,-18677.281,562449.56,137878.06,2212.9148 -1940,2384,4296,4297,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,46,4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,50.2,54.61,51.04,5,1,1,0,0,0,12,2,1,904.5,375843.88,0,412805.75,0,1479.8066 -1940,2384,4297,4296,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,46,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.61,51.04,47.31,50.2,5,1,1,0,0,7,12,2,1,904.5,375843.88,0,412805.75,0,1479.8066 -1941,2385,4298,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-953.29523,-9,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.97,33.08,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,1135,69101.969,0,0,0,1426.6888 -1942,2386,4299,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,7.1524119,6.9624133,0,0,-1092.0753,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9090471,62.43,40.11,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,571,-38302.184,0,0,0,1062.7662 -1943,2387,4300,4302,-9,-9,1,1,40,0,1,0,3,3,-9,0,3,8.6868458,8.8719625,0,6,-1,46.176136,0,2,2,2019,6,0,52,62,1,0,0,13.431079,13.431079,0,0,0,0,0,1,1,0,0,0,44.32,46.92,43.68,53.03,10,1,1,0,0,7,13,4,1,1119,264616.47,83147.578,69077.82,24517.041,3521.7419 -1943,2387,4301,-9,4302,4300,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.5033,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1119,264616.47,83147.578,69077.82,24517.041,3521.7419 -1943,2387,4302,4300,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.1800427,7.1640773,0,6,1,-28.705015,0,2,-9,2019,10,0,20,20,1,1,0,10.231022,10.231022,0,0,0,0,0,1,1,0,0,0,43.68,53.03,44.32,46.92,6.666666666666667,1,1,0,0,7,13,4,1,1119,264616.47,83147.578,69077.82,24517.041,3521.7419 -1943,2388,4303,-9,4302,4300,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-972.19617,1,2,3,2019,9,1,0,14,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,1304,155021.91,0,0,0,-133.34917 -1944,2389,4304,-9,4306,4305,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.1613,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 -1944,2389,4305,4306,-9,-9,1,1,39,1,4,0,2,2,-9,0,5,9.2787037,8.8272734,0,6,-2,34.708252,0,2,2,2019,7,0,48,45,1,0,0,14.031693,14.031693,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,42.11,18.82,8.333333333333334,1,1,0,0,7,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 -1944,2389,4306,4305,-9,-9,1,0,41,1,4,0,2,2,-9,1,2,7.878726,7.8360691,0,6,2,-35.636257,0,2,3,2019,22,8,35,0,1,8,0,8.1669397,8.1669397,0,0,0,0,0,1,1,0,0,0,42.11,18.82,62.39,56.71,5,1,1,0,0,8,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 -1944,2389,4307,-9,4306,4305,1,0,16,1,4,1,3,0,-9,0,3,0,0,0,0,0,-923.79175,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 -1944,2389,4308,-9,4306,4305,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.19135,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 -1944,2389,4309,-9,4306,4305,1,0,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.19281,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,0,508.5,122040.26,60388.148,155658.81,114064.92,5120.5479 -1945,2390,4310,4311,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.4771571,7.4892282,34,-12,93.687393,0,2,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.7359202,7.4668808,58.73,29.86,46.4,59.87,6.666666666666667,1,1,0,0,0,2,3,1,317.5,1524143.1,698331.13,364789.69,0,2566.158 -1945,2390,4311,4310,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,6.7408204,6.9494796,34,12,-30.402922,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4736481,6.9314346,46.4,59.87,58.73,29.86,8.333333333333334,1,1,0,0,0,2,3,1,317.5,1524143.1,698331.13,364789.69,0,2566.158 -1946,2391,4312,-9,4313,4314,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.07959,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 -1946,2391,4313,4314,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.5037098,7.9257102,0,7,-8,-28.036406,0,3,3,2019,13,2,28,28,1,2,0,7.7838278,7.7838278,0,0,0,0,0,1,1,0,6.293972,0,67.94,25.11,15.04,35.59,3.333333333333333,1,1,0,0,9,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 -1946,2391,4314,4313,-9,-9,1,1,53,0,2,0,2,2,-9,0,1,8.072403,8.136467,0,7,8,-10.93654,0,-9,-9,2019,33,11,40,40,1,11,0,9.6564751,9.6564751,0,0,0,0,0,1,1,0,6.7482033,0,15.04,35.59,67.94,25.11,3.333333333333333,1,1,0,1,9,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 -1946,2391,4315,-9,4313,4314,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.9139,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,681.25,1770681.8,1006708.8,189230.94,0,3559.425 -1947,2392,4316,4317,-9,-9,1,1,45,1,1,0,2,2,-9,0,3,8.2530022,8.4572611,0,3,16,133.998,0,-9,-9,2019,8,0,48,43,1,0,0,9.2595663,9.2595663,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.02,56.42,10,1,1,0,0,5,6,4,1,1427.6666,1757796.5,253457.03,128294.22,44644.715,3355.5647 -1947,2392,4317,4316,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,7.7028623,7.6674705,0,3,-16,87.937187,0,-9,-9,2019,6,0,39,39,1,0,0,6.2149806,6.2149806,0,0,0,0,0,1,1,0,0,0,60.02,56.42,57.33,53.46,10,1,1,0,0,4,6,4,1,1427.6666,1757796.5,253457.03,128294.22,44644.715,3355.5647 -1947,2392,4318,-9,4317,4316,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.37207,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1427.6666,1757796.5,253457.03,128294.22,44644.715,3355.5647 -1948,2393,4319,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,7.6769218,7.8365207,0,0,-1051.8402,0,2,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,8.0471506,43.57,30.24,-9,-9,5,1,1,0,0,2,7,3,1,310,39827.938,294347.66,0,0,1657.2653 -1949,2394,4320,4321,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.5240746,8.3033113,0,2,2,59.569813,0,2,3,2019,0,0,38,37,1,0,0,15.228183,15.228183,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,59,8.333333333333334,1,1,0,0,7,7,5,0,364.5,304446,109971.53,328718.5,163067.25,3424.0918 -1949,2394,4321,4320,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2651367,8.6209755,0,2,-2,-121.16761,0,-9,-9,2019,10,0,48,37,1,1,0,9.8318806,9.8318806,0,0,0,0,0,0,0,0,0,0,48,59,54.2,57.49,7,1,1,0,0,2,7,5,0,364.5,304446,109971.53,328718.5,163067.25,3424.0918 -1949,2395,4322,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.4887018,8.2233791,0,1,1,49.718533,-9,-9,-9,2019,10,0,12,0,1,1,0,47.353546,47.353546,0,0,0,0,0,0,0,0,0,0,49,58,49,58,7,1,1,0,0,1,7,5,0,429,0,0,0,0,2089.6685 -1949,2396,4323,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.2506666,8.2412395,0,1,-1,-98.770317,0,-9,-9,2019,10,0,38,37,1,1,0,12.255251,12.255251,0,0,0,0,0,0,0,0,0,0,49,58,49,58,7,1,1,0,0,2,7,5,0,641,-139981.94,-69108,0,0,1164.0842 -1950,2397,4324,-9,-9,-9,1,1,49,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1018.6392,0,3,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,30.45,33.44,-9,-9,1.666666666666667,1,1,0,1,0,8,1,0,1091,591842.94,0,427193.09,55795.402,841.65857 -1951,2398,4325,-9,-9,-9,1,0,67,0,0,0,1,1,-9,1,1,0,5.8655777,5.5218863,0,0,-1126.2723,0,2,2,2019,12,0,0,0,3,0,0,0,0,1,13.970241,0,135.03767,0,1,1,0,0,5.86098,30.64,25.66,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,1227,-59632.5,-33691.918,0,0,1615.0277 -1952,2399,4326,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.5338712,7.8048501,0,0,0,-913.92065,0,2,-9,2019,19,7,37,37,1,7,0,6.2848382,6.2848382,0,0,0,0,14.5,1,1,0,0,0,23.08,65.11,-9,-9,1.666666666666667,1,1,0,1,5,9,3,0,72,211267,229129.42,0,0,900.89673 -1953,2400,4327,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-995.86273,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.82,23.48,-9,-9,5,1,1,0,0,0,6,1,1,210,162362.02,0,0,0,1658.2844 -1953,2401,4328,-9,4327,-9,1,0,23,0,0,0,1,1,1,0,3,7.1533542,7.0789661,0,0,0,-995.77789,-9,2,-9,2019,8,0,38,0,1,0,1,4.3761716,4.3761716,0,0,0,0,74.5,1,1,0,0,0,56.1,49.93,-9,-9,6.666666666666667,1,1,0,0,7,6,3,1,1696,196968.63,31736.695,0,0,736.75916 -1953,2402,4329,-9,4327,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1233.839,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,1.448422,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,3,6,1,1,794,0,0,0,0,-431.62787 -1954,2403,4330,4331,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.3498988,7.3732662,29,9,-64.512016,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.6695297,7.1417971,64.07000000000001,47.52,57.06,57.76,0,1,1,0,0,0,7,3,1,496.5,976401,323841.31,706493.13,0,2346.5596 -1954,2403,4331,4330,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.0404196,7.488956,29,0,30.688526,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4410768,7.1993504,57.06,57.76,64.07000000000001,47.52,10,1,1,0,0,0,7,3,1,496.5,976401,323841.31,706493.13,0,2346.5596 -1955,2404,4332,4334,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.5996351,8.6428652,0,6,-6,-39.376362,0,-9,-9,2019,8,0,47,47,1,0,0,9.728548,9.728548,0,0,0,0,0,1,1,0,0,0,58.15,52.91,52.99,51.28,8.333333333333334,1,1,0,0,8,11,4,1,439.66666,289927.31,222.79817,97446.516,24033.271,2680.0383 -1955,2404,4333,-9,4334,4332,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.42047,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,439.66666,289927.31,222.79817,97446.516,24033.271,2680.0383 -1955,2404,4334,4332,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.9863987,8.0140991,0,6,6,90.602707,0,2,-9,2019,13,2,37,37,1,2,0,11.960306,11.960306,0,0,0,0,0,1,1,0,0,0,52.99,51.28,58.15,52.91,6.666666666666667,1,1,0,0,7,11,4,1,439.66666,289927.31,222.79817,97446.516,24033.271,2680.0383 -1956,2405,4335,-9,4339,4338,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-930.61334,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 -1956,2405,4336,-9,4339,4338,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1006.2017,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 -1956,2405,4337,-9,4339,4338,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1037.5544,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 -1956,2405,4338,4339,-9,-9,1,1,54,0,3,0,2,2,-9,0,3,8.6248789,8.3890114,0,5,4,73.40023,0,-9,-9,2019,11,0,39,39,1,0,0,11.200618,11.200618,0,0,0,0,0,1,1,0,0,0,52.01,48.98,54.79,55.86,5,1,1,0,0,3,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 -1956,2405,4339,4338,-9,-9,1,0,50,0,3,0,2,2,-9,0,4,0,0,0,5,-4,68.478149,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.01,48.98,8.333333333333334,1,1,0,0,0,11,3,0,431,1462597.6,972654.31,197061.75,0,2071.9509 -1956,2406,4340,-9,4339,4338,1,1,23,0,3,0,2,2,-9,0,3,7.9402204,7.9163895,0,0,0,-1073.5541,0,2,2,2019,11,0,48,40,1,0,1,7.113802,7.113802,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,11,3,0,352,220372.22,-17755.83,0,0,1324.9419 -1957,2407,4341,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.658267,7.6585813,0,0,-920.81964,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,3.3665903,0,17.089184,0,1,1,0,0,7.2070031,67.38,39.42,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,245,472206.94,138759.11,194097.48,0,2380.9446 -1958,2408,4342,4343,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.1568723,4.5035524,47,-1,23.990612,0,3,3,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,4.3063755,4.369463,36.93,56.27,52,47,3.333333333333333,1,1,0,0,8,5,3,1,677.5,844353.63,597566.25,246241.86,0,2659.1672 -1958,2408,4343,4342,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8216529,8.2492886,47,1,76.072121,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.3022041,8.1852655,52,47,36.93,56.27,7,1,1,0,0,0,5,3,1,677.5,844353.63,597566.25,246241.86,0,2659.1672 -1959,2409,4344,4345,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.8337574,7.5082793,28,15,41.222683,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,5.1427817,0,0,1,1,0,0,7.6900868,38.9,26.06,57.33,53.46,6.666666666666667,1,1,0,0,0,7,4,1,624.5,1060180.9,664316.13,280147.94,0,2892.9514 -1959,2409,4345,4344,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8099413,7.8878703,0,26,-15,-31.654041,0,3,3,2019,7,0,38,0,1,0,0,6.6184793,6.6184793,0,0,0,0,7,1,1,0,0,0,57.33,53.46,38.9,26.06,8.333333333333334,2,3,0,0,1,7,4,1,624.5,1060180.9,664316.13,280147.94,0,2892.9514 -1959,2410,4346,-9,4345,4344,1,1,21,0,0,1,2,0,0,0,3,0,6.4361405,6.7389369,0,0,-1033.4751,-9,3,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,6.2628899,0,40.04,55.92,-9,-9,6.666666666666667,4,2,0,0,0,7,2,1,954,-74156.789,-139002.88,0,0,1475.3179 -1959,2411,4347,-9,4345,4344,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-888.24744,-9,2,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,.69973886,0,59.68,56.78,-9,-9,8.333333333333334,4,2,0,0,2,7,1,1,1061,0,0,0,0,-442.46307 -1960,2412,4348,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.5694046,8.2172718,0,0,0,-958.21088,0,2,3,2019,13,2,38,40,1,2,0,16.09617,16.09617,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,0,10,4,5,1,1394,390690.19,102462.66,285353.47,0,2419.271 -1961,2413,4349,4350,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.7522688,8.8055801,55,5,156.91203,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2032795,8.537818,58.15,52.91,61.73,40.51,10,1,1,0,0,0,1,4,1,915.5,1251729.1,433729.06,449142.69,0,3178.3423 -1961,2413,4350,4349,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,55,-5,-156.88818,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1823511,0,61.73,40.51,58.15,52.91,10,1,1,0,0,10,1,4,1,915.5,1251729.1,433729.06,449142.69,0,3178.3423 -1962,2414,4351,4352,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,9.0761604,9.3099632,0,27,0,125.79958,0,3,3,2019,11,1,40,37,1,1,0,22.916281,22.916281,0,0,0,0,0,1,1,0,0,0,47.65,46.66,57.33,53.46,6.666666666666667,1,1,0,0,12,9,5,1,438,2239062.8,996720.5,903621.88,0,3007.312 -1962,2414,4352,4351,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,0,0,0,25,9,16.597427,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,47.65,46.66,10,1,1,0,0,0,9,5,1,438,2239062.8,996720.5,903621.88,0,3007.312 -1962,2415,4353,-9,4351,4352,1,0,19,0,1,0,2,2,-9,0,2,4.0706916,3.8919296,0,0,0,-771.57837,0,2,3,2019,34,11,40,0,1,11,1,.21663389,.21663389,0,0,0,0,0,1,1,0,0,0,29.53,41.3,-9,-9,6.666666666666667,1,1,0,1,1,9,2,1,221,-30459.031,0,0,0,101.76509 -1963,2416,4354,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,8.6599436,8.4207401,0,0,0,-875.12848,0,2,2,2019,10,0,34,40,1,0,0,16.077438,16.077438,0,0,0,0,0,1,1,0,0,0,47.94,32.53,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,821,241312.88,140459.8,150357.33,45760.609,2283.6123 -1964,2417,4355,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1159.8923,-9,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,2,1,4314,196029.33,0,127987.84,0,633.44305 -1965,2418,4356,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,9.482564,9.4044085,0,0,0,-1053.161,0,2,2,2019,12,0,60,60,1,0,0,27.268911,27.268911,0,0,0,0,0,1,1,0,1.6101786,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,296,1217695.9,1085632.9,368007.22,0,3219.8965 -1966,2419,4357,4358,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.182847,6.4186907,49,1,-195.58806,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,6.4909916,44.72,41.67,50.09,25.86,8.333333333333334,1,1,0,0,0,7,2,1,165.5,479677.75,4002.228,294023.72,0,2402.0396 -1966,2419,4358,4357,-9,-9,1,1,69,0,0,0,1,1,-9,0,1,0,6.7777333,7.1834054,49,-1,-29.082409,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.503756,6.6153049,50.09,25.86,44.72,41.67,8.333333333333334,1,1,0,0,5,7,2,1,165.5,479677.75,4002.228,294023.72,0,2402.0396 -1967,2420,4359,4360,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.8381653,8.7407732,0,6,2,-69.640953,0,2,3,2019,18,8,40,52,1,8,0,14.497897,14.497897,0,0,0,0,2,0,0,0,0,0,38.96,63.55,54.69,57.47,8.333333333333334,1,1,0,0,5,2,5,1,910.5,260652.08,79988,147978.83,0,4363.5293 -1967,2420,4360,4359,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.3133364,8.4146729,0,6,-2,-36.804218,0,-9,-9,2019,8,2,22,15,1,2,0,23.740042,23.740042,0,0,0,0,0,0,0,0,6.6170602,0,54.69,57.47,38.96,63.55,10,1,1,0,0,6,2,5,1,910.5,260652.08,79988,147978.83,0,4363.5293 -1968,2421,4361,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0956116,8.0279322,0,0,0,-909.12213,0,2,2,2019,24,9,37,38,1,9,0,9.0519533,9.0519533,0,0,0,0,0,0,0,0,2.046067,0,37.41,38.15,-9,-9,8.333333333333334,1,1,0,1,11,5,4,1,1063,-40592.68,159628.61,0,0,1436.2081 -1969,2422,4362,4363,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.2664843,6.8642941,37,0,28.30291,0,2,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.7853794,7.1745925,52.97,51.29,56.57,57.78,8.333333333333334,1,1,0,0,7,6,4,1,898.5,1120619.5,752688.38,236972.58,0,3074.4673 -1969,2422,4363,4362,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1938601,8.3499031,0,34,0,56.748711,0,1,2,2019,10,0,45,40,1,0,0,8.9809637,8.9809637,0,0,0,0,0,0,0,0,7.1009493,0,56.57,57.78,52.97,51.29,8.333333333333334,1,1,0,0,8,6,4,1,898.5,1120619.5,752688.38,236972.58,0,3074.4673 -1969,2423,4364,-9,4362,4363,1,0,23,0,0,0,1,1,1,0,4,7.4615884,7.8286381,0,0,0,-987.51807,-9,1,1,2019,11,0,37,0,1,0,1,7.450696,7.450696,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,516,-421692.16,0,0,0,936.43884 -1970,2424,4365,4367,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,7.4968743,7.6994891,0,3,0,64.580811,0,2,2,2019,24,12,34,24,1,12,0,6.4216275,6.4216275,0,0,0,0,92,1,1,0,0,0,36.97,58.59,50.58,51.02,5,1,1,0,1,9,2,4,0,553,121327.59,10804.601,0,0,2632.614 -1970,2424,4366,-9,4365,4367,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.5056,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,553,121327.59,10804.601,0,0,2632.614 -1970,2424,4367,4365,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.3262577,8.4639874,0,3,0,-43.789097,0,-9,-9,2019,15,3,50,40,1,3,0,10.585858,10.585858,0,0,0,0,76,1,1,0,0,0,50.58,51.02,36.97,58.59,6.666666666666667,1,1,0,1,9,2,4,0,553,121327.59,10804.601,0,0,2632.614 -1971,2425,4368,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,8.6949577,8.7169609,0,0,-1113.6377,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1463766,8.6160946,57.06,57.76,-9,-9,10,1,1,0,0,1,9,5,1,2043,1388374,539945.75,402729.06,8032.354,5055.3623 -1972,2426,4369,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.485209,7.3671021,0,0,0,-925.55438,0,3,-9,2019,3,1,28,0,1,1,0,6.6000366,6.6000366,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,2,2,0,1058,-61759.391,39994.527,0,0,1531.3093 -1972,2426,4370,-9,4369,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2098,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,1058,-61759.391,39994.527,0,0,1531.3093 -1972,2427,4371,-9,4369,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1136.4934,-9,2,-9,2019,33,12,0,0,2,12,1,0,0,0,0,0,0,0,1,0,1,0,0,15.54,63.31,-9,-9,3.333333333333333,1,1,0,0,7,2,1,0,1881,-252832.88,0,0,0,3.3783224 -1972,2428,4372,-9,4369,-9,1,0,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-923.0025,-9,2,-9,2019,24,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,18.26,69.52,-9,-9,0,1,1,0,0,1,2,1,0,556,-58504.332,0,0,0,0 -1973,2429,4373,4374,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,9.662509,9.484623,54,10,60.516869,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,6.2030602,0,0,1,1,0,9.2633924,10.000197,55.85,27.24,46.32,40.8,5,2,3,0,0,7,2,5,1,852.5,4353958.5,2239268,1010746.9,0,8891.8916 -1973,2429,4374,4373,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,8,-10,11.928505,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.32,40.8,55.85,27.24,8.333333333333334,2,3,0,0,0,2,5,1,852.5,4353958.5,2239268,1010746.9,0,8891.8916 -1974,2430,4375,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1039.3035,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.26,44.68,-9,-9,6.666666666666667,1,1,0,0,7,6,1,1,46,0,0,0,0,868.83496 -1975,2431,4376,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1092.7821,0,3,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.41,24.28,-9,-9,0,1,1,0,1,0,2,2,0,964,0,0,0,0,1236.0688 -1975,2432,4377,-9,4376,-9,1,0,31,0,0,0,3,3,-9,1,1,0,0,0,0,0,-994.04224,0,2,2,2019,24,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,15.44,31.16,-9,-9,0,1,1,0,1,0,2,1,0,258,380233.63,0,0,0,95.225807 -1976,2433,4378,4379,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,8.7294207,8.6956587,0,9,1,-12.58347,0,3,2,2019,6,0,40,40,1,0,0,23.069824,23.069824,0,0,0,0,0,1,1,0,3.6423585,0,60.06,56.17,53.97,40.34,8.333333333333334,1,1,0,0,10,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 -1976,2433,4379,4378,-9,-9,1,0,52,0,2,0,1,1,-9,0,2,8.8370953,9.2627792,0,9,-1,-46.286579,0,2,2,2019,17,7,37,37,1,7,0,26.188978,26.188978,0,0,0,0,0,1,1,0,2.3741035,0,53.97,40.34,60.06,56.17,3.333333333333333,1,1,0,0,10,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 -1976,2433,4380,-9,4379,4378,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0397,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 -1976,2433,4381,-9,4379,4378,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.0423,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1009.5,3751312,2517549.5,1202525,198443.58,6309.3174 -1977,2434,4382,4383,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,51,1,-4.6063628,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.08,37.73,57.57,49.69,6.666666666666667,1,1,0,0,6,1,2,1,326,616035.19,225805.28,182958.53,0,1605.2843 -1977,2434,4383,4382,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,7.0705066,6.9808545,0,51,-1,-11.906092,0,3,-9,2019,9,0,20,20,1,0,0,6.6386886,6.6386886,0,0,0,0,0,1,1,0,0,0,57.57,49.69,48.08,37.73,8.333333333333334,1,1,0,0,13,1,2,1,326,616035.19,225805.28,182958.53,0,1605.2843 -1978,2435,4384,4385,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.079175,8.0082626,0,4,3,-50.892807,0,-9,-9,2019,9,1,42,39,1,1,0,9.7020988,9.7020988,0,0,0,0,0,0,0,0,.532803,0,56.94,49.53,45.54,53.52,8.333333333333334,1,1,0,0,8,9,5,1,277,313347.91,89452.297,371455.63,173783.58,3524.8491 -1978,2435,4385,4384,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.4145527,8.5311937,0,4,-3,-55.376671,0,2,2,2019,15,3,60,90,1,3,0,8.8540802,8.8540802,0,0,0,0,0,0,0,0,0,0,45.54,53.52,56.94,49.53,6.666666666666667,1,1,0,0,8,9,5,1,277,313347.91,89452.297,371455.63,173783.58,3524.8491 -1979,2436,4386,4387,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.1015368,8.0290146,0,43,-2,35.21553,0,2,2,2019,11,1,38,37,1,1,0,6.1469398,6.1469398,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,385,780277.75,582679.38,240985.44,0,1666.3889 -1979,2436,4387,4386,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.7307191,7.3919125,44,2,-75.766663,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0629406,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,4,12,4,1,385,780277.75,582679.38,240985.44,0,1666.3889 -1980,2437,4388,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,5.7670016,6.0782075,0,0,-904.5932,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,4.8214965,0,0,1,1,0,0,5.6449928,47.09,32.5,-9,-9,5,1,1,0,0,0,8,2,1,631,321105.28,-105727.97,0,0,2032.9133 -1981,2438,4389,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.1589212,9.1965418,0,0,0,-988.43152,0,2,3,2019,9,0,50,37,1,0,0,19.189529,19.189529,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,12,4,5,1,498,657868.31,564192.38,375814.97,176378.63,3072.9871 -1982,2439,4390,-9,4391,4393,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.8457,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 -1982,2439,4391,4393,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,14,-3,-80.174644,0,1,1,2019,6,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,6.656003,0,55.79,52.62,52.23,55.6,8.333333333333334,1,1,0,0,8,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 -1982,2439,4392,-9,4391,4393,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.6227,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 -1982,2439,4393,4391,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.3786755,9.8826742,0,14,3,57.497921,0,2,2,2019,11,0,40,45,1,0,0,48.103569,48.103569,0,0,0,0,0,0,0,0,4.6331973,0,52.23,55.6,55.79,52.62,8.333333333333334,1,1,0,0,9,12,5,1,1326,755070.19,482360.22,330898.06,103784.2,5620.626 -1983,2440,4394,4395,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,4,-3,62.570202,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,56.74,33.83,38.88,31.2,5,1,1,0,0,4,6,3,1,683,643683.63,372442.25,241603.56,0,2590.3308 -1983,2440,4395,4394,-9,-9,1,1,66,0,0,0,2,2,-9,1,1,0,7.7382598,7.4799213,4,3,72.549324,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,1,0,122.36119,0,0,1,1,0,0,7.6203532,38.88,31.2,56.74,33.83,5,1,1,0,0,0,6,3,1,683,643683.63,372442.25,241603.56,0,2590.3308 -1984,2441,4396,4397,-9,-9,1,1,29,0,2,0,2,2,-9,0,5,8.714776,8.6323891,0,6,1,-2.8688335,0,-9,-9,2019,6,0,50,60,1,0,0,14.948399,14.948399,0,0,0,0,0,1,1,0,.36567217,0,57.65,56.13,46.16,58.62,8.333333333333334,1,1,0,0,10,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 -1984,2441,4397,4396,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.5896697,7.4839978,0,6,-1,81.003242,0,-9,-9,2019,9,1,25,26,1,1,0,6.6581011,6.6581011,0,0,0,0,0,1,1,0,0,0,46.16,58.62,57.65,56.13,8.333333333333334,1,1,0,0,11,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 -1984,2441,4398,-9,4397,4396,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.62286,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 -1984,2441,4399,-9,4397,4396,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.23248,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,1016,115389.94,18335.039,227208.63,145733.38,2913.8416 -1985,2442,4400,4401,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,4.4661999,4.4586287,6,-1,-62.458355,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9473424,4.1395631,49.68,50.49,54.71,36.04,8.333333333333334,1,1,0,0,0,5,2,1,1325.5,427760.53,181002.27,97747.531,0,1962.6752 -1985,2442,4401,4400,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.0271392,5.9160414,52,1,-44.27702,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,14.812165,11.023812,0,0,1,1,0,6.103828,6.0055318,54.71,36.04,49.68,50.49,8.333333333333334,1,1,0,0,0,5,2,1,1325.5,427760.53,181002.27,97747.531,0,1962.6752 -1986,2443,4402,4403,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,6.9945216,7.1940403,0,26,-7,52.457481,0,3,3,2019,11,0,38,35,1,0,0,2.9822295,2.9822295,0,0,0,0,0,0,0,0,0,0,49.19,31.92,57.33,53.46,3.333333333333333,1,1,0,0,8,9,4,1,1187.5,308183.91,5955.3145,351991.06,0,1823.3032 -1986,2443,4403,4402,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.3085976,8.1465769,0,25,7,-60.655094,0,3,3,2019,11,0,54,40,1,0,0,7.3171649,7.3171649,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.19,31.92,10,2,3,0,0,8,9,4,1,1187.5,308183.91,5955.3145,351991.06,0,1823.3032 -1987,2444,4404,4405,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.0733852,8.5873384,46,5,-5.255959,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8634501,8.3447809,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,4,4,1,524.5,2057942.4,903557.13,851616.88,0,4327.1611 -1987,2444,4405,4404,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,46,-5,135.61032,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7126856,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,0,4,4,1,524.5,2057942.4,903557.13,851616.88,0,4327.1611 -1988,2445,4406,4407,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,0,0,0,1,0,-29.58758,-9,2,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,17.59,57.03,60.15,42.53,3.333333333333333,4,2,0,0,3,4,3,1,2249.5,-112559.79,67572.258,0,0,1028.636 -1988,2445,4407,4406,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,7.6553535,7.9601617,0,1,0,-47.147861,-9,-9,-9,2019,7,0,40,0,1,0,0,7.1792822,7.1792822,0,0,0,0,0,1,1,0,0,0,60.15,42.53,17.59,57.03,10,2,3,0,0,0,4,3,1,2249.5,-112559.79,67572.258,0,0,1028.636 -1989,2446,4408,-9,4410,4411,1,1,26,0,0,0,1,1,-9,0,5,8.3576603,8.5587797,0,0,0,-963.9693,0,2,2,2019,5,0,38,8,1,0,1,12.417164,12.417164,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,3,6,4,1,165,264602.22,63535.098,0,0,1792.3428 -1989,2447,4409,-9,4410,4411,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.9652,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,400,0,0,0,0,0 -1989,2448,4410,4411,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,38,-4,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,60.29,52.11,7,2,3,0,0,0,6,1,1,125,-318176,0,0,0,794.48706 -1989,2448,4411,4410,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,38,4,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,60.29,52.11,48,49,8.333333333333334,2,3,1,1,4,6,1,1,125,-318176,0,0,0,794.48706 -1990,2449,4412,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,5.551187,5.3946772,0,0,-936.24554,0,3,3,2019,23,8,0,0,4,8,0,0,0,1,2.3061495,9.1197195,26.087385,0,1,1,0,0,5.1325865,24.93,19.95,-9,-9,3.333333333333333,1,1,0,1,0,1,2,0,288,-228253.09,165777.97,0,0,1778.4386 -1991,2450,4413,4414,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.7948661,8.1957941,10,6,-81.421486,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.0048409,7.8228536,64.40000000000001,42,62.49,55.09,8.333333333333334,1,1,0,0,0,9,3,1,711,1778463.3,301269.84,952411.25,115802.87,3616.4463 -1991,2450,4414,4413,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,6.4037542,6.1553249,0,10,-6,-44.60358,0,2,2,2019,6,0,12,5,1,0,0,5.3555613,5.3555613,0,0,0,0,0,1,1,0,0,0,62.49,55.09,64.40000000000001,42,10,1,1,0,0,13,9,3,1,711,1778463.3,301269.84,952411.25,115802.87,3616.4463 -1992,2451,4415,4416,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,7.907464,7.7482944,0,8,1,11.663615,0,3,3,2019,17,5,46,41,1,5,0,6.8927917,6.8927917,0,0,0,0,0,1,1,0,3.092716,0,40.44,35.55,45.91,59.89,6.666666666666667,1,1,0,0,9,7,4,1,198,948744.88,497508.44,263011.38,0,3044.0483 -1992,2451,4416,4415,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0924435,8.2567272,0,8,-1,-47.634277,0,3,3,2019,15,3,38,38,1,3,0,11.595815,11.595815,0,0,0,0,2,1,1,0,2.5417156,0,45.91,59.89,40.44,35.55,6.666666666666667,1,1,0,0,9,7,4,1,198,948744.88,497508.44,263011.38,0,3044.0483 -1993,2452,4417,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,5.7861485,5.8891406,0,0,0,-974.43744,0,1,-9,2019,11,0,45,8,1,0,0,.80946684,.80946684,0,0,0,0,0,1,1,0,0,0,44.91,56.56,-9,-9,8.333333333333334,1,1,0,0,7,12,2,1,651,24765.48,0,0,0,1239.9106 -1994,2453,4418,-9,4421,4419,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.5887,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 -1994,2453,4419,4421,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.1530991,8.9094715,0,17,3,-12.786071,0,1,1,2019,7,0,45,38,1,0,0,20.565538,20.565538,0,0,0,0,0,1,1,0,7.2464333,0,57.06,57.76,43.32,63.94,8.333333333333334,1,1,0,0,7,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 -1994,2453,4420,-9,4421,4419,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7489,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 -1994,2453,4421,4419,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.7589512,8.6902437,6.1570621,17,-3,-.65981317,0,1,1,2019,14,3,35,30,1,3,0,23.142101,23.142101,0,0,0,0,0,1,1,0,6.273159,0,43.32,63.94,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,758,935132.88,417558.66,583386.94,186833.25,6095.9585 -1995,2454,4422,4423,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.5016031,7.376718,36,0,-.40261182,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.2758436,7.2948513,47.22,45.94,40.76,56.64,6.666666666666667,1,1,0,0,0,9,3,1,2230.5,998552.25,542522.5,452277.91,0,3309.3994 -1995,2454,4423,4422,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.7277417,7.8888364,36,9,13.422536,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8334968,7.5643616,40.76,56.64,47.22,45.94,10,1,1,0,0,0,9,3,1,2230.5,998552.25,542522.5,452277.91,0,3309.3994 -1996,2455,4424,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,6.5284381,5.9208961,0,0,-1008.5786,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5472202,6.2520351,51.31,46.4,-9,-9,10,1,1,0,0,0,4,2,1,712,560417.31,26877.664,72490.672,0,851.18903 -1997,2456,4425,4426,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,6,3,-52.523643,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6175756,0,60.12,54.8,61.83,44.42,10,1,1,0,0,5,6,2,1,1078.5,366739.09,166028.63,122348.14,0,2553.7825 -1997,2456,4426,4425,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.4670067,5.614872,6,-3,19.845196,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0462112,5.9966145,61.83,44.42,60.12,54.8,10,1,1,0,0,1,6,2,1,1078.5,366739.09,166028.63,122348.14,0,2553.7825 -1998,2457,4427,4429,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,6.8471498,6.7635064,0,7,3,-171.56308,0,3,2,2019,10,2,20,20,1,2,0,6.6953888,6.6953888,0,0,0,0,0,0,0,0,0,0,48.18,61.8,56.19,43.46,8.333333333333334,1,1,0,0,8,12,5,1,1049,93496.078,356567.44,168635.45,133925.55,5628.2061 -1998,2457,4428,-9,4427,4429,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1167.5393,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,1049,93496.078,356567.44,168635.45,133925.55,5628.2061 -1998,2457,4429,4427,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,9.7659025,9.6560726,0,7,-3,52.505169,0,-9,-9,2019,12,1,84,84,1,1,0,20.442606,20.442606,0,0,0,0,0,0,0,0,0,0,56.19,43.46,48.18,61.8,6.666666666666667,1,1,0,0,8,12,5,1,1049,93496.078,356567.44,168635.45,133925.55,5628.2061 -1998,2458,4430,-9,4427,4429,1,1,23,0,1,0,2,2,-9,0,4,8.3791294,8.4635677,0,0,0,-1061.588,0,2,2,2019,8,0,45,48,1,0,1,11.836183,11.836183,0,0,0,0,0,0,0,0,.47885546,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,566,-320575.38,0,0,0,1460.324 -1998,2459,4431,-9,4427,4429,1,0,19,0,1,0,2,2,-9,0,3,7.3743486,7.6033936,0,0,0,-998.24841,0,2,2,2019,7,0,30,30,1,0,1,6.9869647,6.9869647,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,4,12,3,1,1111,56031.238,-51532.785,0,0,453.76581 -1999,2460,4432,4433,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.2442727,7.1945763,57,1,-1.981932,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3555045,63.25,34.36,60.12,54.8,8.333333333333334,1,1,0,0,2,2,3,1,596,1069580.5,581054.75,120221.13,0,3239.0703 -1999,2460,4433,4432,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.1568823,7.0099249,57,-1,-39.688438,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9484458,7.2467103,60.12,54.8,63.25,34.36,10,1,1,0,0,0,2,3,1,596,1069580.5,581054.75,120221.13,0,3239.0703 -2000,2461,4434,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.9450788,8.4146338,6.9382782,0,0,-960.96393,0,3,2,2019,8,0,33,18,1,0,0,8.7085447,8.7085447,0,0,0,0,0,0,0,0,7.2062778,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,6182,702000.31,304513.66,216139.45,71691.773,1604.0945 -2000,2462,4435,-9,4434,-9,1,1,23,0,0,0,2,2,-9,0,3,6.3143749,6.2590542,0,0,0,-996.57123,0,2,2,2019,17,6,30,8,1,6,1,2.2091954,2.2091954,0,0,0,0,0,0,0,0,0,0,36.62,60.23,-9,-9,5,1,1,0,1,3,12,2,1,2256,353525.22,-38100.289,0,0,307.01782 -2000,2463,4436,-9,4434,-9,1,0,19,0,0,0,2,2,-9,0,3,6.3928733,6.0882301,0,0,0,-1005.7772,0,2,-9,2019,18,5,12,0,1,5,1,5.3795261,5.3795261,0,0,0,0,0,0,0,0,3.3315434,0,26.09,63.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,574,-366724.5,0,0,0,.67765599 -2001,2464,4437,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.3241377,8.3238173,0,0,0,-968.24213,0,2,3,2019,9,1,37,37,1,1,0,9.4573374,9.4573374,0,0,0,0,0,0,0,0,2.674345,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,845,151488.36,40646.223,0,0,799.6474 -2002,2465,4438,4439,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,7,-6,-25.240185,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,1.5541917,0,36.27,29.4,59.45,38.61,5,1,1,0,0,6,2,4,1,664,623092.13,405202.22,97391.789,0,2667.1919 -2002,2465,4439,4438,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0268307,8.6671495,8.0148945,7,6,83.048355,0,3,3,2019,13,1,39,45,1,1,0,8.6624308,8.6624308,0,0,0,0,14.5,1,1,0,5.4408154,7.6911244,59.45,38.61,36.27,29.4,5,1,1,0,0,8,2,4,1,664,623092.13,405202.22,97391.789,0,2667.1919 -2002,2465,4440,-9,4439,4438,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1014.1673,-9,2,2,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,.025493719,0,29.57,52.59,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,664,623092.13,405202.22,97391.789,0,2667.1919 -2003,2466,4441,4442,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,31,-3,-172.23804,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,56.15,41.66,10,1,1,0,0,0,11,2,0,1482.5,401259.13,171668.97,111142.42,0,1684.4434 -2003,2466,4442,4441,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.0392933,5.1260848,28,3,-28.72146,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8966832,56.15,41.66,52.6,52.88,8.333333333333334,1,1,0,0,0,11,2,0,1482.5,401259.13,171668.97,111142.42,0,1684.4434 -2004,2467,4443,-9,4444,4445,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.14288,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,5,1,705.66669,1063380.5,562693.81,162187.89,0,3387.22 -2004,2467,4444,4445,-9,-9,1,0,35,0,1,0,1,1,-9,1,3,8.1031246,7.9904938,0,17,-6,44.725342,0,3,3,2019,12,0,35,40,1,0,0,8.8107767,8.8107767,0,0,0,0,2,1,1,0,0,0,25.24,58.56,57.16,56.15,6.666666666666667,1,1,0,0,8,2,5,1,705.66669,1063380.5,562693.81,162187.89,0,3387.22 -2004,2467,4445,4444,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.8863955,8.8359489,0,17,6,-6.8967571,0,3,3,2019,7,0,42,43,1,0,0,19.440538,19.440538,0,0,0,0,0,1,1,0,0,0,57.16,56.15,25.24,58.56,8.333333333333334,1,1,0,0,8,2,5,1,705.66669,1063380.5,562693.81,162187.89,0,3387.22 -2005,2468,4446,4447,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,35,-5,-18.920362,0,2,2,2019,29,11,0,38,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,25.82,33.12,44.36,34.03,1.666666666666667,1,1,1,0,11,11,3,1,363,352571.47,202957.56,194080.69,0,963.83337 -2005,2468,4447,4446,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.7609754,7.6945534,0,37,5,45.729607,0,2,3,2019,16,5,27,27,1,5,0,9.0596733,9.0596733,0,0,0,0,74.5,1,1,0,0,0,44.36,34.03,25.82,33.12,6.666666666666667,1,1,0,0,12,11,3,1,363,352571.47,202957.56,194080.69,0,963.83337 -2006,2469,4448,4449,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,6,5,49.231529,0,2,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.39,35.93,45.23,37.81,5,1,1,0,0,0,11,4,1,737,240070.84,184831.72,189184.41,108181.14,2867.9751 -2006,2469,4449,4448,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.7552891,8.8097849,0,6,-5,149.96066,0,-9,-9,2019,15,5,47,67,1,5,0,13.929709,13.929709,0,0,0,0,2,1,1,0,0,0,45.23,37.81,27.39,35.93,8.333333333333334,1,1,0,0,7,11,4,1,737,240070.84,184831.72,189184.41,108181.14,2867.9751 -2007,2470,4450,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.4946251,6.5495558,0,0,-937.30615,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.8950329,57,51,-9,-9,10,1,1,0,0,0,6,2,0,116,552523.44,178360.44,180473.48,0,1369.7512 -2008,2471,4451,4452,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4233561,7.6706638,55,-3,9.668108,0,3,3,2019,6,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.8155115,7.2858644,51.04,41.01,51.51,41.65,10,1,1,0,0,0,2,2,1,1394.5,628659.88,374219.34,181838.91,0,1665.3981 -2008,2471,4452,4451,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,8,3,-100.33766,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,51.51,41.65,51.04,41.01,8.333333333333334,1,1,0,0,0,2,2,1,1394.5,628659.88,374219.34,181838.91,0,1665.3981 -2008,2472,4453,-9,4452,4451,1,1,52,0,0,0,2,2,-9,0,4,8.6836119,8.6058559,0,0,0,-1074.9043,0,3,2,2019,9,0,40,40,1,1,0,17.032021,17.032021,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,1,2,5,1,316,-16351.473,97133.766,0,0,2618.6406 -2009,2473,4454,4455,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,5.9709158,5.9604378,43,2,-19.625113,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0783968,5.9011602,48.15,50.56,61.43,43.34,8.333333333333334,1,1,0,0,5,4,4,1,213,2710865,1372586.6,404450.5,0,3785.2036 -2009,2473,4455,4454,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.2052231,8.4815464,43,-2,100.91213,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1275053,8.0666704,61.43,43.34,48.15,50.56,8.333333333333334,1,1,0,0,7,4,4,1,213,2710865,1372586.6,404450.5,0,3785.2036 -2010,2474,4456,-9,4457,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.2794,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,567,-87715.922,0,0,0,2252.6853 -2010,2474,4457,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,6.1622982,6.2036977,0,0,0,-987.263,0,3,3,2019,13,1,8,0,1,1,0,6.2357717,6.2357717,0,0,0,0,74.5,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,1,13,2,0,567,-87715.922,0,0,0,2252.6853 -2011,2475,4458,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.4229031,9.8491707,6.7545066,0,0,-891.87109,0,2,1,2019,14,3,50,46,1,3,0,36.298439,36.298439,0,0,0,0,2,0,0,0,6.8482385,0,47.58,53.71,-9,-9,3.333333333333333,1,1,0,0,9,7,5,1,3629,1356617.3,493362.88,233484.41,0,5422.8325 -2012,2476,4459,4460,-9,-9,1,1,40,2,2,0,2,2,-9,0,4,7.7698641,7.64957,0,5,2,-44.840805,0,-9,-9,2019,9,0,50,50,1,0,0,4.2995853,4.2995853,0,0,0,0,0,1,1,0,0,0,57.17,50.61,49.35,59.64,0,1,1,0,0,8,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 -2012,2476,4460,4459,-9,-9,1,0,38,2,2,0,2,2,-9,0,4,6.8920898,6.6782074,0,5,-2,23.903891,0,2,2,2019,8,0,20,2,1,0,0,5.6010923,5.6010923,0,0,0,0,2,1,1,0,2.407901,0,49.35,59.64,57.17,50.61,8.333333333333334,1,1,0,0,8,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 -2012,2476,4461,-9,4460,4459,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2878,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 -2012,2476,4462,-9,4460,4459,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-963.73608,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,353.25,272495.81,54171.961,202462.8,89205.781,2555.4587 -2013,2477,4463,4465,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.4640036,8.1936998,0,4,2,-49.177509,0,3,3,2019,28,12,36,31,1,12,0,9.4002562,9.4002562,0,0,0,0,0,1,1,0,0,0,28.57,61.36,44.53,56.37,3.333333333333333,1,1,0,0,8,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 -2013,2477,4464,-9,4463,4465,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-859.06097,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 -2013,2477,4465,4463,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.2423725,8.3604059,0,4,-2,151.58885,0,-9,-9,2019,10,0,48,45,1,0,0,8.3178787,8.3178787,0,0,0,0,0,1,1,0,0,0,44.53,56.37,28.57,61.36,6.666666666666667,1,1,0,0,3,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 -2013,2477,4466,-9,4463,4465,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.76062,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,475.75,-62315.543,-38415.332,121359.97,93072.43,2981.6387 -2014,2478,4467,-9,4468,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0491,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,489,-5512.2695,-21224.813,0,0,3597.8081 -2014,2478,4468,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.662571,7.74828,6.1988506,0,0,-913.87964,0,2,3,2019,12,1,24,24,1,1,0,10.067612,10.067612,0,0,0,0,0,1,1,0,6.3532238,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,489,-5512.2695,-21224.813,0,0,3597.8081 -2014,2478,4469,-9,4468,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.7821,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,489,-5512.2695,-21224.813,0,0,3597.8081 -2015,2479,4470,-9,4471,-9,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-904.01685,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.58,52.86,-9,-9,6.666666666666667,1,1,0,0,2,12,1,0,178,0,0,0,0,706.78424 -2015,2480,4471,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-837.21021,0,2,2,2019,16,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,47.5,20.14,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,253,-176796.45,0,0,0,1866.7117 -2016,2481,4472,4473,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,8.0731459,7.8605356,0,1,-7,-229.76131,-9,-9,-9,2019,13,1,43,0,1,1,0,8.5298424,8.5298424,0,0,0,0,0,1,1,0,0,0,39.39,37.56,40.2,30.5,8.333333333333334,1,1,0,0,2,9,3,0,323,169219.13,-43051.066,142285.88,140946.72,1982.3069 -2016,2481,4473,4472,-9,-9,1,1,41,0,1,0,3,3,-9,0,2,7.1025219,7.0075564,0,1,7,-73.879242,0,2,3,2019,14,2,40,45,1,2,0,3.7515454,3.7515454,0,0,0,0,0,1,1,0,0,0,40.2,30.5,39.39,37.56,5,1,1,0,0,3,9,3,0,323,169219.13,-43051.066,142285.88,140946.72,1982.3069 -2017,2482,4474,4475,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,6.9125137,6.9590135,0,44,1,59.332916,0,3,2,2019,10,1,60,60,1,1,0,2.0690057,2.0690057,0,0,0,0,0,1,1,0,0,0,44.43,56.74,57.06,57.76,8.333333333333334,1,1,0,0,8,5,2,0,617,247887.44,-58380.734,488055.13,75591.477,2450.5352 -2017,2482,4475,4474,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,6.2315941,6.2060251,44,-1,-49.303131,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1473565,6.2608929,57.06,57.76,44.43,56.74,8.333333333333334,1,1,0,0,7,5,2,0,617,247887.44,-58380.734,488055.13,75591.477,2450.5352 -2018,2483,4476,-9,4478,4479,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.31647,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 -2018,2483,4477,-9,4478,4479,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8054,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 -2018,2483,4478,4479,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5773506,8.3590126,0,9,-1,107.93141,0,-9,-9,2019,18,8,37,39,1,8,0,15.531124,15.531124,0,0,0,0,0,1,1,0,0,0,38.62,41.69,30.94,61.65,3.333333333333333,1,1,0,0,10,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 -2018,2483,4479,4478,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,4.9907393,4.8085814,0,9,1,-74.991341,0,2,2,2019,17,5,30,34,1,5,0,.42294842,.42294842,0,0,0,0,0,1,1,0,0,0,30.94,61.65,38.62,41.69,5,1,1,0,0,6,10,4,0,1508.75,-7904.8701,0,0,0,2607.9744 -2019,2484,4480,4481,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.8697081,8.8884268,0,18,-2,38.325695,0,2,-9,2019,12,0,38,40,1,0,0,22.995039,22.995039,0,0,0,0,0,0,0,0,2.5247731,0,48.19,38.83,41.11,60.68,8.333333333333334,1,1,0,0,13,2,5,1,1192.5,798496.5,41516.188,849031.5,189259.69,5341.2207 -2019,2484,4481,4480,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.853713,8.8467312,6.7559447,18,2,-31.392456,0,3,2,2019,17,5,39,38,1,5,0,20.085756,20.085756,0,0,0,0,0,0,0,0,5.0911322,7.1179509,41.11,60.68,48.19,38.83,10,1,1,0,0,13,2,5,1,1192.5,798496.5,41516.188,849031.5,189259.69,5341.2207 -2020,2485,4482,4483,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.2223344,7.1639137,42,5,68.977104,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9409559,7.0896754,49.91,58.02,48.37,21.12,8.333333333333334,1,1,0,0,0,2,3,1,663,868169.25,349736.78,133855.78,0,2138.5537 -2020,2485,4483,4482,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,6.8249769,6.8187947,0,43,-5,37.346462,0,2,3,2019,13,3,14,14,1,3,0,6.5103412,6.5103412,1,0,0,0,0,1,1,0,0,0,48.37,21.12,49.91,58.02,8.333333333333334,1,1,0,0,7,2,3,1,663,868169.25,349736.78,133855.78,0,2138.5537 -2021,2486,4484,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.4436846,9.1563263,0,0,0,-968.12372,0,-9,-9,2019,14,5,52,50,1,5,0,26.097141,26.097141,0,0,0,0,0,0,0,0,7.0655231,0,36.37,61.5,-9,-9,6.666666666666667,1,1,0,0,10,8,5,0,525,2611024.5,1434116.9,459727.78,0,4738.3647 -2022,2487,4485,-9,4487,4486,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-845.25769,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,8,5,1,679,213960.77,0,0,0,8309.3857 -2022,2487,4486,4487,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,9.8426361,9.671195,0,18,-2,.42207107,0,2,2,2019,8,1,40,40,1,1,0,56.318848,56.318848,0,0,0,0,0,0,0,0,1.4024915,0,51.73,58.82,45.91,59.89,6.666666666666667,1,1,0,0,10,8,5,1,679,213960.77,0,0,0,8309.3857 -2022,2487,4487,4486,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.0787973,8.8846292,0,18,2,-140.25661,0,3,2,2019,17,5,29,39,1,5,0,34.895576,34.895576,0,0,0,0,0,0,0,0,0,0,45.91,59.89,51.73,58.82,8.333333333333334,1,1,0,0,11,8,5,1,679,213960.77,0,0,0,8309.3857 -2023,2488,4488,4489,-9,-9,1,0,39,0,3,0,2,2,-9,1,1,0,0,0,6,-19,-3.9578855,0,-9,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,30.43,30.85,17.26,5,1,1,0,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 -2023,2488,4489,4488,-9,-9,1,1,58,0,3,0,2,2,-9,0,1,0,7.2740016,7.1893611,6,19,73.230217,0,2,2,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,7.5506477,30.85,17.26,31.75,30.43,3.333333333333333,1,1,0,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 -2023,2488,4490,-9,4488,4489,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-873.17169,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 -2023,2488,4491,-9,4488,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.38055,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 -2023,2488,4492,-9,4488,4489,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.31519,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,551.20001,182257.39,137952.44,121392.62,13492.474,3788.1035 -2023,2489,4493,-9,4488,-9,1,1,20,0,3,1,2,0,0,0,4,0,0,0,0,0,-1079.073,-9,2,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,2312,266174.81,0,0,0,638.17517 -2023,2490,4494,-9,4488,-9,1,1,18,0,3,0,2,2,1,0,5,0,0,0,0,0,-976.28741,-9,2,-9,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,731,273426,0,0,0,0 -2024,2491,4495,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.481142,8.1208992,0,0,-1051.8562,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,1,1,0,5.9049525,8.2202692,29.24,50.04,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,2697,823190.75,485652.66,620356.69,0,2995.262 -2025,2492,4496,4497,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3158531,8.2491827,0,30,0,-40.540726,0,-9,-9,2019,10,0,34,34,1,0,0,12.798584,12.798584,0,0,0,0,7,0,0,0,0,0,47.07,53.97,52,54.51,10,1,1,0,0,12,2,5,1,2340.5,372598.81,45031.555,115311.49,29999.926,3486.1758 -2025,2492,4497,4496,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5631094,8.5996342,0,30,0,-121.98163,0,-9,-9,2019,10,0,40,40,1,0,0,13.669518,13.669518,0,0,0,0,0,0,0,0,0,0,52,54.51,47.07,53.97,8.333333333333334,1,1,0,0,12,2,5,1,2340.5,372598.81,45031.555,115311.49,29999.926,3486.1758 -2026,2493,4498,4499,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,8.7819948,8.3812962,41,-7,-83.505043,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,8.9235363,0,7,1,1,0,2.5746942,8.3226814,32.62,36.55,45.97,41.17,6.666666666666667,1,1,0,0,0,9,3,1,361,1511689.3,685242.88,501475.78,0,2922.5264 -2026,2493,4499,4498,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,9,7,-32.273693,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,3.5412416,0,45.97,41.17,32.62,36.55,6.666666666666667,1,1,0,0,0,9,3,1,361,1511689.3,685242.88,501475.78,0,2922.5264 -2027,2494,4500,4501,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0106182,9.0479059,0,28,2,83.961197,0,2,2,2019,18,6,44,50,1,6,0,21.523415,21.523415,0,0,0,0,0,0,0,0,5.1660752,0,33,50.9,35.31,54.01,1.666666666666667,1,1,0,1,12,6,5,1,508,840563.75,404838.94,504099.06,139072.44,3176.4075 -2027,2494,4501,4500,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,29,-2,-15.539462,0,2,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1.7098161,0,35.31,54.01,33,50.9,5,1,1,0,1,0,6,5,1,508,840563.75,404838.94,504099.06,139072.44,3176.4075 -2027,2495,4502,-9,4501,4500,1,0,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-838.37579,-9,2,1,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1.542697,0,32.08,58.42,-9,-9,5,1,1,0,0,7,6,1,1,324,70240.148,0,0,0,843.07422 -2027,2496,4503,-9,4501,4500,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-862.7312,-9,2,1,2019,26,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,0,0,29.31,54,-9,-9,5,1,1,0,0,4,6,1,1,490,-42669.691,0,0,0,-193.32983 -2028,2497,4504,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,8.0460863,8.0691805,0,0,-963.06787,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3916359,7.803967,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,183,995165.19,620924.56,392460.44,0,1736.3777 -2029,2498,4505,-9,4506,4507,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.4912,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 -2029,2498,4506,4507,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,8.0196495,7.8551173,0,6,-2,-3.3714547,0,2,2,2019,7,0,40,40,1,0,0,9.9514599,9.9514599,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 -2029,2498,4507,4506,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.4456682,8.3928194,0,6,2,-131.05075,0,2,3,2019,7,0,35,35,1,0,0,15.744062,15.744062,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 -2029,2498,4508,-9,4506,4507,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.27472,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,333.25,386644.34,52526.27,116709.12,21178.352,2898.3557 -2029,2499,4509,-9,4506,4507,1,1,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-927.72107,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,152,-245628.27,0,0,0,0 -2030,2500,4510,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1070004,7.9155321,0,0,0,-1007.7828,0,2,1,2019,7,0,35,30,1,0,0,12.052885,12.052885,0,0,0,0,7,0,0,0,0,0,56.5,37.6,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,544,-82379.336,-50046.227,62768.422,10614.061,1621.4915 -2031,2501,4511,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,8.2058249,8.3822088,0,0,-952.1427,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.587081,8.3340511,57.6,57.49,-9,-9,10,1,1,0,0,0,9,4,1,1111,1684033.4,159464.02,1054551.3,0,2577.7898 -2032,2502,4512,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1121.4878,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,41.84,17.43,-9,-9,0,1,1,0,0,0,13,1,0,623,-327672.56,0,0,0,2057.5959 -2033,2503,4513,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,5.6151395,6.0694299,0,0,-984.47363,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7812624,5.8444853,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1047,614295,48025.859,162577.36,21474.641,930.02948 -2034,2504,4514,-9,-9,4515,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.91656,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,1024,-97189,44540.93,0,0,1158.6066 -2034,2504,4515,-9,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,7.8498349,8.01688,0,0,0,-964.03656,0,2,-9,2019,11,0,36,56,1,0,0,8.8027306,8.8027306,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,2,3,0,1024,-97189,44540.93,0,0,1158.6066 -2035,2505,4516,4517,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.5731483,7.5851073,0,25,3,-169.76532,0,2,2,2019,8,0,8,10,1,0,0,25.253857,25.253857,0,0,0,0,0,0,0,0,0,0,55.79,52.62,43.94,58,8.333333333333334,1,1,0,0,4,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 -2035,2505,4517,4516,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.968833,9.6376619,0,25,-3,-35.199162,0,2,2,2019,11,0,47,40,1,0,0,21.639738,21.639738,0,0,0,0,0,0,0,0,0,0,43.94,58,55.79,52.62,5,1,1,0,0,11,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 -2035,2505,4518,-9,4516,4517,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-962.48486,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 -2035,2505,4519,-9,4516,4517,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-913.65277,1,2,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.78056496,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,9,5,1,1027.25,1428872.1,415286.16,956799,158776.98,4279.3975 -2036,2506,4520,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-999.28613,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3065631,0,50.14,53.97,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,449,74796.984,-31524.908,0,0,398.62238 -2037,2507,4521,4522,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.9707923,7.8857269,0,14,-8,-14.015038,0,3,3,2019,9,0,36,35,1,0,0,7.5732675,7.5732675,0,0,0,0,2,0,0,0,0,0,50.75,39.21,56.18,51.02,8.333333333333334,1,1,0,0,11,5,4,0,1111,432749.06,128823.8,0,0,2246.4858 -2037,2507,4522,4521,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.8376007,8.2035723,7.1676626,8,8,-.21106562,0,3,2,2019,9,0,38,40,1,0,0,5.5149693,5.5149693,0,0,0,0,0,0,0,0,.96452528,7.4575529,56.18,51.02,50.75,39.21,6.666666666666667,1,1,0,0,11,5,4,0,1111,432749.06,128823.8,0,0,2246.4858 -2038,2508,4523,4524,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,0,0,11,-11,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.84,42.48,46.01,44.17,10,1,1,0,0,0,4,1,0,1650.5,127625.12,14743.324,62818.125,8886.9922,1885.0399 -2038,2508,4524,4523,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,30,11,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,6.4197712,22.398851,60.792023,0,1,0,1,0,0,46.01,44.17,60.84,42.48,6.666666666666667,1,1,0,0,0,4,1,0,1650.5,127625.12,14743.324,62818.125,8886.9922,1885.0399 -2038,2509,4525,-9,4524,4523,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-967.31995,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.32,58.41,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,1875,0,0,0,0,1052.7029 -2039,2510,4526,-9,4528,4527,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-899.29645,-9,1,2,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.49,60.87,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,1101.3334,2015497.8,1168775,508584.47,0,3359.0344 -2039,2510,4527,4528,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.5531111,8.3563118,0,6,8,-67.536209,0,3,3,2019,12,3,36,36,1,3,0,16.189472,16.189472,0,0,0,0,0,1,1,0,0,0,49.34,41.24,52.83,48.43,1.666666666666667,1,1,0,0,8,8,5,1,1101.3334,2015497.8,1168775,508584.47,0,3359.0344 -2039,2510,4528,4527,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.3106279,8.0801325,0,6,-8,25.033005,0,3,3,2019,7,0,7,7,1,0,0,64.480461,64.480461,0,0,0,0,0,1,1,0,0,0,52.83,48.43,49.34,41.24,8.333333333333334,1,1,0,0,8,8,5,1,1101.3334,2015497.8,1168775,508584.47,0,3359.0344 -2039,2511,4529,-9,4528,4527,1,1,26,0,0,0,2,2,-9,0,4,7.0131884,6.6926637,0,0,0,-1028.5204,0,1,2,2019,7,0,16,16,1,0,1,8.241559,8.241559,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,1016,-84170.609,48952.516,0,0,1050.7708 -2039,2512,4530,-9,4528,4527,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1010.6699,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,260,112681.88,0,0,0,-50.723629 -2040,2513,4531,4532,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,46,-5,33.720329,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6068494,0,53.36,50.99,49.36,51.55,0,1,1,0,0,0,9,5,1,1111,2444515.3,1267667.4,923835.63,0,6197.8662 -2040,2513,4532,4531,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,9.3343201,9.2541151,10,5,-132.58163,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9526234,9.5195112,49.36,51.55,53.36,50.99,8.333333333333334,1,1,0,0,0,9,5,1,1111,2444515.3,1267667.4,923835.63,0,6197.8662 -2041,2514,4533,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.4905558,8.6960897,0,0,0,-1034.3578,0,2,3,2019,16,5,42,50,1,5,0,15.858195,15.858195,0,0,0,0,0,0,0,0,0,0,36.4,60.15,-9,-9,6.666666666666667,1,1,0,0,8,5,5,0,701,50386.262,31016.609,0,0,2523.3618 -2042,2515,4534,4536,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,7.8928318,7.8944621,0,6,2,85.707741,0,2,2,2019,12,2,24,39,1,2,0,15.271526,15.271526,0,0,0,0,0,0,0,0,3.173593,0,55.54,43.16,38.21,54.03,8.333333333333334,1,1,0,0,7,9,5,1,833.66669,495632.31,376453.66,0,0,4291.9355 -2042,2515,4535,-9,4534,4536,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.3962,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,833.66669,495632.31,376453.66,0,0,4291.9355 -2042,2515,4536,4534,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.527319,9.2953043,0,6,-2,81.484138,0,-9,-9,2019,17,6,37,38,1,6,0,43.774223,43.774223,0,0,0,0,0,0,0,0,3.0065308,0,38.21,54.03,55.54,43.16,8.333333333333334,1,1,0,0,10,9,5,1,833.66669,495632.31,376453.66,0,0,4291.9355 -2043,2516,4537,4538,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,0,0,34,0,26.546179,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.306303,0,59.04,54.12,50,49,0,1,1,0,0,10,6,5,1,1168,451007.81,391079.19,92971.859,46065.391,6527.4766 -2043,2516,4538,4537,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.2531118,9.7801533,8.1032438,10,0,-65.669373,-9,-9,-9,2019,10,0,45,0,1,1,0,34.840942,34.840942,0,0,0,0,0,0,0,0,6.6290126,8.1686602,50,49,59.04,54.12,7,1,1,0,0,1,6,5,1,1168,451007.81,391079.19,92971.859,46065.391,6527.4766 -2043,2517,4539,-9,4537,4538,1,1,25,0,0,0,2,2,-9,0,4,7.9992752,7.9538822,0,0,0,-1036.0291,-9,2,1,2019,10,0,38,0,1,1,1,10.086174,10.086174,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,4,1,480,51390.289,75373.102,0,0,1231.485 -2044,2518,4540,4541,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.6482487,6.1394529,44,3,41.790634,0,3,3,2019,10,1,0,24,4,1,0,0,0,0,0,0,0,2,1,1,0,5.7578735,6.4131522,52.54,52.91,47.55,20.39,8.333333333333334,1,1,0,0,6,6,3,1,782,222490.94,79229.203,128640.28,15403.639,2132.0405 -2044,2518,4541,4540,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,7.1392994,7.2044663,4.6135392,44,-3,-88.943657,0,3,3,2019,19,6,22,29,1,6,0,6.0628104,6.0628104,0,0,0,0,0,1,1,0,3.6176486,4.4867482,47.55,20.39,52.54,52.91,6.666666666666667,1,1,0,0,9,6,3,1,782,222490.94,79229.203,128640.28,15403.639,2132.0405 -2045,2519,4542,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,7.5173244,7.5886297,0,0,0,-969.57025,-9,1,1,2019,10,1,25,0,1,1,0,10.906826,10.906826,0,0,0,0,0,0,0,0,2.257453,0,31.93,58.41,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,496,-97058.266,33229.629,0,0,789.12274 -2046,2520,4543,4544,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,8.3266802,9.0276947,7.254241,5,8,-89.693039,0,3,3,2019,9,0,35,30,1,0,0,18.523115,18.523115,0,0,0,0,0,1,1,0,7.4170337,6.9871163,56.19,46.16,48.23,46.76,10,1,1,0,0,10,8,5,1,607,2388237,1738285.8,697707.63,0,5216.9668 -2046,2520,4544,4543,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3979931,8.6126919,5.5456295,5,-8,51.110523,0,-9,-9,2019,8,0,21,24,1,0,0,27.440443,27.440443,0,0,0,0,0,1,1,0,7.0887647,5.3648891,48.23,46.76,56.19,46.16,8.333333333333334,1,1,0,0,10,8,5,1,607,2388237,1738285.8,697707.63,0,5216.9668 -2047,2521,4545,4546,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.1730175,6.1770792,52,7,84.733597,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.2389388,55,45,52,46,8,3,4,0,0,0,8,2,1,316.5,715202.56,104664.95,406842.63,0,1122.6089 -2047,2521,4546,4545,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,4.5047603,4.418622,2,-7,-48.098122,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.19034742,4.7977896,52,46,55,45,8,3,4,0,0,0,8,2,1,316.5,715202.56,104664.95,406842.63,0,1122.6089 -2047,2522,4547,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.5763097,7.8518872,0,0,0,-918.74371,0,-9,-9,2019,6,0,38,38,1,0,0,7.9690218,7.9690218,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,5,8,3,1,147,27913.383,-27564.57,0,0,1311.1515 -2047,2523,4548,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.3814526,8.021122,0,0,0,-983.67493,0,-9,-9,2019,11,1,40,36,1,1,0,10.692396,10.692396,0,0,0,0,0,1,1,0,0,0,55.77,31.2,-9,-9,5,4,2,0,0,7,8,4,1,1702,-41653.91,0,0,0,978.14429 -2048,2524,4549,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.2138987,7.2273035,0,0,-1057.5698,-9,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,7.174602,41.33,35.36,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,887,638188.94,152870.81,659646.44,0,234.70769 -2049,2525,4550,4551,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.407897,9.4634504,0,26,-15,85.359627,0,2,2,2019,7,0,40,50,1,0,0,27.438747,27.438747,0,0,0,0,0,1,1,0,2.7927105,0,52.82,53.97,55.26,55.85,8.333333333333334,1,1,0,0,10,7,5,1,1222,3202968.3,2479932.8,450412.44,0,8047.6357 -2049,2525,4551,4550,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.5536566,8.9436321,25,15,-18.203291,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3491468,8.5336742,55.26,55.85,52.82,53.97,8.333333333333334,1,1,0,0,8,7,5,1,1222,3202968.3,2479932.8,450412.44,0,8047.6357 -2049,2526,4552,-9,4550,4551,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1104.4899,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,1897,-63544.512,0,0,0,0 -2049,2527,4553,-9,4550,4551,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1006.754,-9,1,1,2019,12,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,7,1,1,551,-241864.86,0,0,0,0 -2050,2528,4554,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0905199,8.3516903,0,0,0,-1105.2474,0,-9,-9,2019,12,2,35,35,1,2,0,16.723162,16.723162,0,0,0,0,0,0,0,0,0,0,54.29,49.12,-9,-9,8.333333333333334,2,3,0,0,5,8,4,0,145,107492.63,-28917.754,0,0,1985.2501 -2051,2529,4555,4557,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.9154229,7.3923688,0,7,3,-12.117846,0,1,2,2019,10,2,22,22,1,2,0,13.189912,13.189912,0,0,0,0,0,0,0,0,0,0,55.14,42.08,57.33,53.46,8.333333333333334,1,1,0,0,8,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 -2051,2529,4556,-9,4555,4557,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.15601,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 -2051,2529,4557,4555,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.6668148,9.9075966,0,7,-3,45.36871,0,2,3,2019,7,1,61,44,1,1,0,26.441475,26.441475,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.14,42.08,8.333333333333334,1,1,0,0,10,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 -2051,2529,4558,-9,4555,4557,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.77655,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,764.5,722541.13,283899,670717,321512.75,5759.9072 -2052,2530,4559,4560,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.8323007,7.6966033,0,33,-1,60.729267,0,-9,-9,2019,12,0,38,35,1,2,0,6.2215867,6.2215867,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,2,3,0,0,11,8,4,1,925.5,788568.5,657533.5,0,0,2426.876 -2052,2530,4560,4559,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.1027317,8.0060482,0,33,1,-148.8799,0,-9,-9,2019,10,0,52,0,1,1,0,6.5176482,6.5176482,0,0,0,0,0,0,0,0,0,0,50,49,48,49,7,2,3,0,0,8,8,4,1,925.5,788568.5,657533.5,0,0,2426.876 -2053,2531,4561,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-981.55988,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.93,50.55,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,206,821982.25,0,280584.31,0,1084.7173 -2054,2532,4562,4563,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8684163,7.7818937,37,6,63.30135,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4476895,7.7606168,53.39,44.47,36.8,61.22,6.666666666666667,1,1,0,0,9,11,4,1,694.5,854152.88,398468.75,202079.06,0,3169.5659 -2054,2532,4563,4562,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.0791807,8.0300159,0,35,-6,199.45282,0,1,1,2019,17,5,22,26,1,5,0,18.324692,18.324692,0,0,0,0,0,1,1,0,0,0,36.8,61.22,53.39,44.47,6.666666666666667,1,1,0,0,12,11,4,1,694.5,854152.88,398468.75,202079.06,0,3169.5659 -2055,2533,4564,4566,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.2900534,8.9365616,0,9,2,47.567432,0,3,3,2019,20,9,78,43,1,9,0,12.408258,12.408258,0,0,0,0,2,1,1,0,2.5043888,0,30.77,64.34,44.62,57.73,3.333333333333333,1,1,0,0,9,7,5,1,1319.6666,1875374.4,1704431.6,271748.81,0,3838.6816 -2055,2533,4565,-9,4566,4564,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.2486,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1319.6666,1875374.4,1704431.6,271748.81,0,3838.6816 -2055,2533,4566,4564,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.5521474,7.6282935,0,9,-2,-74.38752,0,3,2,2019,11,0,22,24,1,0,0,12.153828,12.153828,0,0,0,.41212162,14.5,1,1,0,2.6155019,0,44.62,57.73,30.77,64.34,3.333333333333333,1,1,0,0,9,7,5,1,1319.6666,1875374.4,1704431.6,271748.81,0,3838.6816 -2055,2534,4567,-9,4566,4564,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1048.9894,-9,2,2,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,1.642915,0,33.49,64.26000000000001,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,982,0,0,0,0,-503.72083 -2056,2535,4568,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1105.4945,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.52,55.06,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,674,-210835.63,0,0,0,908.24707 -2057,2536,4569,4571,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,7.8339844,8.1597462,0,11,2,-4.1957617,0,2,2,2019,6,0,39,40,1,0,0,8.0696936,8.0696936,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,9,12,3,0,832.66669,326627.03,26792.248,158388.91,30912.52,1663.5881 -2057,2536,4570,-9,4571,4569,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-923.82806,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,832.66669,326627.03,26792.248,158388.91,30912.52,1663.5881 -2057,2536,4571,4569,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,6.3114543,6.7792997,0,11,-2,69.760109,0,2,2,2019,6,0,16,15,1,0,0,4.8030138,4.8030138,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.33,53.46,8.333333333333334,1,1,0,0,10,12,3,0,832.66669,326627.03,26792.248,158388.91,30912.52,1663.5881 -2058,2537,4572,4573,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.8016181,5.7978716,10,2,-47.445953,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.1486721,5.7143364,58.33,39.49,56.35,21.87,8.333333333333334,1,1,0,0,5,12,2,1,255.5,511562.56,268884.69,185286.78,14765.461,2685.3943 -2058,2537,4573,4572,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.3270555,6.8983803,51,-2,120.07659,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,18.689323,0,0,1,1,0,2.0291653,7.1093869,56.35,21.87,58.33,39.49,8.333333333333334,1,1,0,0,4,12,2,1,255.5,511562.56,268884.69,185286.78,14765.461,2685.3943 -2059,2538,4574,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4824791,8.270525,0,0,0,-913.31995,0,3,3,2019,15,5,36,36,1,5,0,15.091179,15.091179,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,266,311597.63,-53864.93,0,0,1880.4696 -2060,2539,4575,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,3.6503496,3.447608,0,0,-1013.7789,0,3,-9,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,3.9078267,55.19,38.35,-9,-9,10,1,1,0,0,0,2,2,0,502,503536,0,0,0,1606.8646 -2061,2540,4576,4577,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,14,8,71.812218,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.77,20.1,61.29,32.81,6.666666666666667,1,1,0,0,9,12,2,0,1933,-90731.188,0,0,0,1773.3995 -2061,2540,4577,4576,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,4.3666139,4.6605544,14,-8,17.908422,0,-9,-9,2019,12,1,0,44,3,1,0,0,0,0,0,0,0,27,1,1,0,3.7982452,4.7931046,61.29,32.81,44.77,20.1,6.666666666666667,1,1,0,0,7,12,2,0,1933,-90731.188,0,0,0,1773.3995 -2062,2541,4578,4579,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.0822134,8.2040472,0,19,4,-4.0394306,0,2,-9,2019,14,3,38,39,1,3,0,12.156248,12.156248,0,0,0,0,0,0,0,0,3.34321,0,38.03,45.9,36.26,33.72,6.666666666666667,1,1,0,0,12,11,4,1,412,389342.19,139899.09,0,0,2357.6008 -2062,2541,4579,4578,-9,-9,1,0,37,0,0,0,2,2,-9,0,1,7.4299474,8.0129147,0,19,-4,14.643158,0,2,1,2019,20,8,30,30,1,8,0,6.7689533,6.7689533,0,0,0,0,0,0,0,0,4.318152,0,36.26,33.72,38.03,45.9,8.333333333333334,1,1,0,0,12,11,4,1,412,389342.19,139899.09,0,0,2357.6008 -2063,2542,4580,4581,-9,-9,1,1,72,0,0,0,1,1,-9,0,5,0,6.5777664,7.0822163,11,3,-4.4853253,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7786455,7.1392112,62.39,56.71,54.74,57.22,8.333333333333334,1,1,0,0,0,2,2,1,548.5,690350.06,277599.38,79438.797,0,1702.302 -2063,2542,4581,4580,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,53,-3,-142.88803,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.5126319,0,54.74,57.22,62.39,56.71,10,1,1,0,0,3,2,2,1,548.5,690350.06,277599.38,79438.797,0,1702.302 -2064,2543,4582,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.772542,7.9557309,0,0,-1017.0447,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.080296,7.6143627,48.62,51.94,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,183,588267.94,210838.95,122455.8,0,1049.413 -2065,2544,4583,-9,4584,4586,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.1714,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 -2065,2544,4584,4586,-9,-9,1,0,30,1,4,0,2,2,-9,0,4,6.7938652,6.5861721,0,10,-2,-.85474461,0,-9,-9,2019,13,1,20,0,1,1,0,6.4784923,6.4784923,0,0,0,0,0,1,1,0,0,0,34.04,54.63,54.13,48.04,3.333333333333333,1,1,0,0,6,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 -2065,2544,4585,-9,4584,4586,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.47766,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 -2065,2544,4586,4584,-9,-9,1,1,32,1,4,0,2,2,-9,0,3,8.466629,8.3394327,0,10,2,8.1246891,0,-9,-9,2019,14,5,45,45,1,5,0,13.260674,13.260674,0,0,0,0,0,1,1,0,0,0,54.13,48.04,34.04,54.63,3.333333333333333,1,1,0,0,11,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 -2065,2544,4587,-9,4584,4586,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1133.8258,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,575.40002,-11609.789,66626.633,108846.52,45213.328,2813.6577 -2066,2545,4588,4590,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.2555265,8.4518757,0,16,-14,-4.2042079,0,2,2,2019,25,11,41,42,1,11,0,12.473742,12.473742,0,0,0,0,71.5,1,1,0,0,0,40.65,57.36,20.81,24.55,5,1,1,0,1,10,2,3,1,459,178889.64,122924.6,0,0,2315.1812 -2066,2545,4589,-9,4588,4590,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.47974,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,459,178889.64,122924.6,0,0,2315.1812 -2066,2545,4590,4588,-9,-9,1,1,61,0,1,0,2,2,-9,1,1,0,3.1153998,3.5862238,15,14,-18.805363,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,3.2745059,20.81,24.55,40.65,57.36,3.333333333333333,1,1,0,0,0,2,3,1,459,178889.64,122924.6,0,0,2315.1812 -2067,2546,4591,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.715291,5.7084479,0,0,-977.83612,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6859055,62.66,52.4,-9,-9,10,1,1,0,0,4,2,2,1,2726,429426.72,265223.88,149359.44,0,680.69458 -2068,2547,4592,4593,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,5.886282,5.8140855,4.3038516,20,8,-72.015251,0,3,2,2019,27,11,20,10,1,11,0,2.3694961,2.3694961,0,0,0,0,0,1,1,0,7.2147856,4.496716,38.84,24.41,48.88,46.26,3.333333333333333,1,1,0,0,11,10,4,1,535,598249.94,298249.59,219722.11,0,3719.3457 -2068,2547,4593,4592,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.9466772,8.6201744,7.2594357,19,-8,-78.306374,0,3,3,2019,11,0,33,40,1,0,0,16.148991,16.148991,0,0,0,0,0,1,1,0,0,7.7328763,48.88,46.26,38.84,24.41,8.333333333333334,1,1,0,0,11,10,4,1,535,598249.94,298249.59,219722.11,0,3719.3457 -2068,2548,4594,-9,4592,4593,1,1,35,0,0,0,1,1,-9,0,4,7.6603508,7.5807271,0,0,0,-982.78278,0,2,2,2019,10,0,30,28,1,0,1,8.5822315,8.5822315,0,0,0,0,0,1,1,0,3.7821672,0,51.24,58.84,-9,-9,5,1,1,0,0,11,10,3,1,1274,30543.152,101261.94,0,0,1041.0255 -2069,2549,4595,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.9915566,7.9716473,0,0,0,-1045.6754,0,2,2,2019,4,0,40,45,1,0,0,10.436823,10.436823,0,0,0,0,0,0,0,0,0,0,51.64,55.4,-9,-9,10,1,1,0,0,6,11,4,0,480,246549.34,0,0,0,1679.8411 -2070,2550,4596,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4713502,7.1182446,0,0,-1036.8944,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.47882137,7.1721544,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,151,503127.47,373065.75,386265.19,0,1642.3955 -2071,2551,4597,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,6.5318699,6.5293593,0,0,0,-949.79211,0,2,2,2019,7,0,30,38,1,0,0,2.2256315,2.2256315,0,0,0,0,0,0,0,0,0,0,44.83,55.13,-9,-9,8.333333333333334,1,1,0,0,9,10,2,0,271,410620.16,0,0,0,129.3801 -2072,2552,4598,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-955.62372,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,17.806944,0,0,1,1,0,0,0,38.97,17.84,-9,-9,5,1,1,0,0,0,1,1,0,276,-7120.8433,0,0,0,991.84021 -2073,2553,4599,-9,4602,4603,1,1,30,0,0,0,2,2,-9,0,4,5.9586887,6.2152014,0,0,0,-1088.7529,0,3,3,2019,10,0,35,35,1,1,1,.93062377,.93062377,0,0,0,0,0,1,1,0,2.3717394,0,49,58,-9,-9,7,2,3,0,0,1,8,2,1,314,62526.539,-30022.57,0,0,590.44714 -2073,2554,4600,-9,4602,4603,1,0,21,0,0,1,1,0,0,0,2,0,0,0,0,0,-1191.2507,-9,3,3,2019,23,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,34.04,52.28,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,327,-57783.672,-13209.993,0,0,0 -2073,2555,4601,-9,4602,4603,1,0,23,0,0,0,2,2,-9,0,4,6.9369445,7.1028996,0,0,0,-1029.5776,0,3,3,2019,12,0,35,15,1,2,1,2.6555009,2.6555009,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,1,8,2,1,1985,357241.88,0,0,0,56.145519 -2073,2556,4602,4603,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,44,-4,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,48,48,51,48,7,2,3,0,0,0,8,1,1,1361.5,406944.66,0,264712.84,0,1411.4807 -2073,2556,4603,4602,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,10,4,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,48,48,7,2,3,0,0,0,8,1,1,1361.5,406944.66,0,264712.84,0,1411.4807 -2074,2557,4604,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.2984328,5.8632717,0,0,-997.83978,-9,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.2596898,5.9394083,46.08,57.2,-9,-9,10,1,1,0,0,0,12,2,1,570,232547.72,89196.125,77580.109,0,335.9592 -2075,2558,4605,4606,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.877142,7.7205439,0,6,-15,-54.414997,0,3,3,2019,9,0,38,0,1,0,0,6.4705219,6.4705219,0,0,0,0,0,0,0,0,6.5212483,0,57.06,57.76,58.07,46.29,8.333333333333334,1,1,0,0,9,5,3,1,1163.5,-91716.891,-80546.844,123349.73,90698.5,1991.306 -2075,2558,4606,4605,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.1213236,7.2676601,0,6,15,-147.54037,0,2,2,2019,9,0,20,0,1,0,0,6.1169252,6.1169252,0,0,0,0,0,0,0,0,2.1452515,0,58.07,46.29,57.06,57.76,8.333333333333334,1,1,0,0,9,5,3,1,1163.5,-91716.891,-80546.844,123349.73,90698.5,1991.306 -2076,2559,4607,4608,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,9.0678644,9.1456451,0,8,-8,43.763336,0,2,2,2019,16,6,30,30,1,6,0,33.48592,33.48592,0,0,0,0,0,0,0,0,8.9360981,0,36.02,63.11,53.5,51.02,1.666666666666667,1,1,0,0,9,9,5,1,554,2557093,401483.5,968734.69,0,7938.249 -2076,2559,4608,4607,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.490447,8.268836,0,8,8,-10.725381,0,3,2,2019,11,0,10,10,1,0,0,50.368916,50.368916,0,0,0,0,0,0,0,0,8.3699303,0,53.5,51.02,36.02,63.11,8.333333333333334,1,1,0,0,9,9,5,1,554,2557093,401483.5,968734.69,0,7938.249 -2077,2560,4609,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.2273474,5.1117516,0,0,-1005.9146,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,8.4617691,0,64.573845,0,1,1,0,4.7561007,5.7142167,53,44,-9,-9,8,1,1,0,0,0,5,2,1,395,221164.8,11395.168,0,0,958.37274 -2078,2561,4610,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,6.995707,7.3894639,5.7003798,0,0,-916.86053,0,2,2,2019,9,0,23,28,1,0,0,6.2533264,6.2533264,0,0,0,0,0,1,1,0,0,6.0881944,55.3,55.6,-9,-9,1.666666666666667,1,1,0,0,13,6,3,1,653,96161.438,131589.59,109232.28,0,1352.6167 -2079,2562,4611,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,7.2891278,7.5295668,0,0,-1018.9627,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.1516137,59.43,58.05,-9,-9,10,1,1,0,0,0,12,3,1,514,500693.72,191885.73,94781.742,0,1023.1254 -2080,2563,4612,4615,-9,-9,1,1,43,1,2,0,1,1,-9,0,3,8.262619,8.140192,0,15,2,-120.38039,-9,-9,-9,2019,15,5,41,0,1,5,0,11.741681,11.741681,0,0,0,0,0,1,1,0,1.6171913,0,47.22,48.43,58.74,38.07,5,2,3,0,0,12,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 -2080,2563,4613,-9,4615,4612,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.75519,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 -2080,2563,4614,-9,4615,4612,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.6383,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 -2080,2563,4615,4612,-9,-9,1,0,41,1,2,0,1,1,-9,0,2,8.0514326,7.9042454,0,15,-2,-215.6534,0,2,2,2019,8,0,40,40,1,0,0,7.0219955,7.0219955,0,0,0,0,0,1,1,0,0,0,58.74,38.07,47.22,48.43,6.666666666666667,2,3,0,1,11,8,4,0,762.75,414708.19,48520.465,409674.13,118339,3888.1475 -2081,2564,4616,4617,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,.050559219,.19132504,0,12,2,-18.579098,-9,3,3,2019,11,0,3,0,1,0,0,.0055152844,.0055152844,0,0,0,0,2,0,0,0,1.2209833,0,59.48,33.74,57.33,53.46,6.666666666666667,1,1,0,0,6,10,4,1,1054,-45947.391,-15355.92,0,0,2789.103 -2081,2564,4617,4616,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.235815,8.8095875,7.1086373,11,-2,15.865229,-9,2,2,2019,7,0,38,0,1,0,0,12.604475,12.604475,0,0,0,0,0,0,0,0,0,7.7490335,57.33,53.46,59.48,33.74,8.333333333333334,1,1,0,0,9,10,4,1,1054,-45947.391,-15355.92,0,0,2789.103 -2082,2565,4618,4620,-9,-9,1,1,37,0,1,0,3,3,-9,0,4,7.9916253,8.4168062,0,10,4,-75.151833,0,2,3,2019,7,0,39,37,1,0,0,12.608635,12.608635,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,500.66666,288571.88,29343.822,125914.77,94233.203,3016.7681 -2082,2565,4619,-9,4620,4618,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.868,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,500.66666,288571.88,29343.822,125914.77,94233.203,3016.7681 -2082,2565,4620,4618,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.7734075,7.6488476,0,10,-4,15.74658,0,2,2,2019,9,0,23,23,1,0,0,10.47603,10.47603,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,12,9,4,1,500.66666,288571.88,29343.822,125914.77,94233.203,3016.7681 -2083,2566,4621,4622,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.0067101,6.0567646,37,-6,43.604897,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2943888,6.1009965,53.39,44.47,54.67,57.49,1.666666666666667,1,1,0,0,0,7,5,1,575.5,3427024.5,2036844.3,1316476,0,6500.4902 -2083,2566,4622,4621,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,9.370306,8.855135,37,6,24.57317,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8968611,9.1813116,54.67,57.49,53.39,44.47,8.333333333333334,1,1,0,0,10,7,5,1,575.5,3427024.5,2036844.3,1316476,0,6500.4902 -2084,2567,4623,4624,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.8465014,9.997117,0,8,4,-67.458885,0,-9,-9,2019,12,0,38,38,1,0,0,62.215267,62.215267,0,0,0,0,0,0,0,0,0,0,44.6,52.77,33.66,61.57,6.666666666666667,1,1,0,0,9,7,5,1,304,872820.88,154733.64,438365.16,251955.41,25613.641 -2084,2567,4624,4623,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.8691816,8.2843304,0,8,-4,-84.484451,0,1,-9,2019,12,1,41,43,1,1,0,14.876394,14.876394,0,0,0,0,0,0,0,0,4.3324523,0,33.66,61.57,44.6,52.77,3.333333333333333,1,1,0,0,11,7,5,1,304,872820.88,154733.64,438365.16,251955.41,25613.641 -2085,2568,4625,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.6998529,8.6133003,0,0,-979.66937,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0221915,8.6758518,61.12,51.57,-9,-9,10,1,1,0,0,3,8,5,1,451,2418155,755639.88,871639,0,3265.5095 -2086,2569,4626,-9,4628,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1137.8738,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,712.66669,69099.586,-41578.988,303062.66,156549.58,2181.2659 -2086,2569,4627,-9,4628,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-928.48236,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,712.66669,69099.586,-41578.988,303062.66,156549.58,2181.2659 -2086,2569,4628,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.6585054,8.8637142,0,0,0,-1033.0706,0,2,3,2019,6,0,35,30,1,0,0,22.700115,22.700115,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,10,9,4,1,712.66669,69099.586,-41578.988,303062.66,156549.58,2181.2659 -2087,2570,4629,4630,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.0900297,7.7586656,58,2,24.787781,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.584569,60.88,37.25,56.67,53.83,1.666666666666667,1,1,0,0,0,1,4,1,418.5,418652.28,403002.63,188746.8,0,3375.238 -2087,2570,4630,4629,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,7.9175377,7.9110065,58,-2,69.76796,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2047086,8.1196842,56.67,53.83,60.88,37.25,10,1,1,0,0,0,1,4,1,418.5,418652.28,403002.63,188746.8,0,3375.238 -2088,2571,4631,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-1007.3677,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,5,2,0,1254,-4370.5732,-42576.848,0,0,191.92526 -2089,2572,4632,4633,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,6,-5,36.325626,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9583731,0,50,47,54.04,20.34,7,1,1,0,0,0,11,2,1,426.5,454162.69,87060.75,223512.77,0,2070.0789 -2089,2572,4633,4632,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7609124,6.9746666,6,5,16.514177,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,18.232874,0,0,1,1,0,4.4662285,6.5355606,54.04,20.34,50,47,6.666666666666667,1,1,0,0,0,11,2,1,426.5,454162.69,87060.75,223512.77,0,2070.0789 -2090,2573,4634,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-861.69061,-9,-9,-9,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.71,57.24,-9,-9,10,1,1,0,0,0,1,1,0,556,-68252.234,0,0,0,-12.860633 -2090,2574,4635,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1050.424,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.5005751,0,46.82,47.67,-9,-9,0,1,1,0,0,6,1,1,0,1173,0,0,0,0,-149.76845 -2091,2575,4636,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.2400312,8.356286,0,0,0,-1038.1111,0,2,2,2019,12,1,33,33,1,1,0,17.378294,17.378294,0,0,0,0,0,0,0,0,0,0,35.55,50.24,-9,-9,1.666666666666667,3,4,0,0,10,8,4,1,244,53093.906,-13155.11,0,0,1281.9003 -2092,2576,4637,-9,4638,4639,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.5137,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 -2092,2576,4638,4639,-9,-9,1,0,51,0,2,0,1,1,-9,0,2,8.1153193,8.5096445,6.2627149,10,3,62.277027,0,-9,-9,2019,24,10,39,42,1,10,0,12.864287,12.864287,0,0,0,0,0,1,1,0,6.8758888,6.5685124,27.37,44.5,51,56,6.666666666666667,1,1,0,0,11,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 -2092,2576,4639,4638,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,8.5660677,8.4787645,0,10,-3,54.955948,-9,-9,-9,2019,9,0,40,0,1,1,0,11.596601,11.596601,0,0,0,0,0,1,1,0,0,0,51,56,27.37,44.5,8,1,1,0,0,1,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 -2092,2576,4640,-9,4638,4639,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-990.46869,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,4,1,342,114263.09,31324.188,238615.09,160869.59,3793.8643 -2093,2577,4641,4643,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.3463974,8.7004957,0,1,1,78.800011,-9,-9,-9,2019,24,10,40,0,1,10,0,11.851925,11.851925,0,0,0,0,0,1,1,0,6.6139078,0,37.87,61.03,40.09,51.85,8.333333333333334,1,1,0,0,9,11,5,1,791.33331,340356.5,212901.8,216762.86,182270.2,4618.3906 -2093,2577,4642,-9,4641,4643,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.6481,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,791.33331,340356.5,212901.8,216762.86,182270.2,4618.3906 -2093,2577,4643,4641,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.6851654,8.7103205,0,1,-1,83.716431,0,2,2,2019,19,6,42,42,1,6,0,14.728615,14.728615,0,0,0,0,0,1,1,0,0,0,40.09,51.85,37.87,61.03,8.333333333333334,1,1,0,0,10,11,5,1,791.33331,340356.5,212901.8,216762.86,182270.2,4618.3906 -2094,2578,4644,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.8882837,8.9723663,0,0,0,-992.27417,0,2,2,2019,20,8,40,40,1,8,0,20.737577,20.737577,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,827,-180949.58,0,0,0,3148.2844 -2095,2579,4645,4646,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.3935013,8.5653858,0,13,0,-22.245024,0,2,2,2019,8,0,40,5,1,0,0,13.652102,13.652102,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,5,2,5,1,1034.6666,363969.47,218609.81,341238.84,235706.92,4433.063 -2095,2579,4646,4645,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.098959,9.2649298,0,13,9,48.890747,0,2,2,2019,7,0,48,58,1,0,0,15.631764,15.631764,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,9,2,5,1,1034.6666,363969.47,218609.81,341238.84,235706.92,4433.063 -2095,2579,4647,-9,4645,4646,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.63104,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1034.6666,363969.47,218609.81,341238.84,235706.92,4433.063 -2096,2580,4648,4649,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.4492922,9.7169876,0,25,-4,-73.543159,0,1,1,2019,9,0,50,50,1,0,0,18.716709,18.716709,0,0,0,0,0,0,0,0,4.557961,0,54.37,54.8,54.79,55.86,6.666666666666667,1,1,0,0,7,8,5,1,1320,1538255.5,823363.13,706207.25,24178.721,9997.6514 -2096,2580,4649,4648,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.3770733,9.7086725,8.4794846,32,4,28.443596,0,3,3,2019,7,0,42,42,1,0,0,32.234222,32.234222,0,0,0,0,0,0,0,0,5.9133096,8.6952524,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,7,8,5,1,1320,1538255.5,823363.13,706207.25,24178.721,9997.6514 -2096,2581,4650,-9,4648,4649,1,0,19,0,0,0,2,2,-9,0,4,0,5.2582407,5.1759009,0,0,-1089.5151,1,1,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,5.6956143,0,44.87,56.46,-9,-9,6.666666666666667,1,1,0,0,3,8,2,1,220,-132231.97,0,0,0,426.59601 -2097,2582,4651,4652,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.881937,8.7979202,0,1,1,28.690523,-9,-9,-9,2019,10,0,40,0,1,1,0,14.172565,14.172565,0,0,0,0,0,0,0,0,0,0,51,57,50.04,47.09,7,4,1,0,0,1,7,5,1,379,130360.05,-31135.801,204420.81,186462.22,3350.0466 -2097,2582,4652,4651,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.0450659,8.2733288,0,1,-1,15.700812,0,3,2,2019,12,1,37,37,1,1,0,11.473567,11.473567,0,0,0,0,0,0,0,0,0,0,50.04,47.09,51,57,6.666666666666667,1,1,0,0,5,7,5,1,379,130360.05,-31135.801,204420.81,186462.22,3350.0466 -2098,2583,4653,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.8253708,5.7274895,0,0,-999.40979,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7932091,5.97084,39.8,41.57,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,69,185869.11,154164.25,0,0,772.95483 -2099,2584,4654,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.7718072,8.0898361,0,0,0,-1100.8069,0,1,3,2019,9,0,25,20,1,0,0,11.947362,11.947362,0,0,0,0,0,0,0,0,4.0523438,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,619,62603.617,-8239.6514,0,0,1183.0065 -2100,2585,4655,4656,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.6806335,7.5064187,52,-3,59.56493,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.2188358,7.8159337,51,47,54.96,53.17,7,1,1,0,0,0,11,4,1,150.5,1473970.3,506017.53,772828.38,0,3340.1362 -2100,2585,4656,4655,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9206657,7.4852066,52,3,16.543976,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5619309,7.9270983,54.96,53.17,51,47,8.333333333333334,1,1,0,0,0,11,4,1,150.5,1473970.3,506017.53,772828.38,0,3340.1362 -2101,2586,4657,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.7259655,8.9054365,0,1,-6,-138.71466,0,2,2,2019,11,0,40,50,1,0,0,20.157703,20.157703,0,0,0,0,2,0,0,0,0,0,54.37,36.04,51.82,46.83,8.333333333333334,1,1,0,0,10,9,5,1,245,260916.59,97879.766,140040.69,86726.945,3083.1667 -2101,2587,4658,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.3674641,8.4103079,0,1,6,-133.85783,-9,-9,-9,2019,11,0,45,0,1,0,0,12.050328,12.050328,0,0,0,0,0,0,0,0,0,0,51.82,46.83,54.37,36.04,6.666666666666667,1,1,0,0,1,9,5,1,2912,-556640.88,0,0,0,1853.6554 -2102,2588,4659,4660,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.466846,7.4322414,0,9,-2,19.014597,0,3,2,2019,11,0,30,20,1,1,0,5.9446287,5.9446287,0,0,0,0,0,0,0,0,0,0,50,49,57.16,56.15,7,1,1,0,0,10,13,4,1,300,223746.08,303937.56,108219.48,0,2140.8035 -2102,2588,4660,4659,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.9995174,8.2520018,0,9,2,-145.35551,0,3,3,2019,11,0,22,22,1,0,0,17.212185,17.212185,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,49,1.666666666666667,1,1,0,0,10,13,4,1,300,223746.08,303937.56,108219.48,0,2140.8035 -2103,2589,4661,4663,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.011488,8.0743256,0,6,0,147.02255,0,2,3,2019,6,0,23,25,1,0,0,16.950874,16.950874,0,0,0,0,0,1,1,0,1.2761787,0,58.89,48.6,50.5,40.48,8.333333333333334,1,1,0,0,6,7,3,1,552.66669,259394.38,180932.31,0,0,2977.7371 -2103,2589,4662,-9,4661,4663,1,0,17,0,2,1,3,0,0,0,3,0,0,0,0,0,-969.7536,-9,2,2,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.86,59.67,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,552.66669,259394.38,180932.31,0,0,2977.7371 -2103,2589,4663,4661,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,8.2313652,8.2368908,0,6,0,81.542229,0,1,1,2019,16,6,50,40,1,6,0,8.1333351,8.1333351,0,0,0,0,0,1,1,0,0,0,50.5,40.48,58.89,48.6,6.666666666666667,1,1,0,1,7,7,3,1,552.66669,259394.38,180932.31,0,0,2977.7371 -2104,2590,4664,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,4.8290639,4.9934573,0,0,-909.56744,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.9555855,4.7385445,62.43,34.91,-9,-9,10,3,4,0,0,0,8,2,0,1653,610595.56,37994.191,337446,0,605.87531 -2105,2591,4665,4666,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.6581678,8.8132248,0,9,-3,-81.196968,0,2,2,2019,13,3,40,40,1,3,0,20.919378,20.919378,0,0,0,0,0,0,0,0,0,0,52.16,46.15,51.14,60.45,8.333333333333334,1,1,0,0,9,2,5,1,769.5,1389517.8,869325.94,264033.13,50771.195,4010.9839 -2105,2591,4666,4665,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.6144724,8.893445,0,9,3,-24.45253,0,2,2,2019,14,2,37,37,1,2,0,15.174642,15.174642,0,0,0,0,0,0,0,0,0,0,51.14,60.45,52.16,46.15,8.333333333333334,1,1,0,0,9,2,5,1,769.5,1389517.8,869325.94,264033.13,50771.195,4010.9839 -2105,2592,4667,-9,4666,4665,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1005.4216,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,3145,58829.18,0,0,0,0 -2106,2593,4668,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4843402,6.4177642,0,0,-1123.8917,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.8096714,53,47,-9,-9,7,1,1,0,0,0,13,2,1,389,136726.94,102201.69,176711.61,0,700.55676 -2107,2594,4669,4670,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,48,-5,-127.06243,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3766059,0,57.06,57.76,55.96,49.93,10,1,1,0,0,4,7,2,1,628,545411.88,343841.75,248861.75,0,1777.2148 -2107,2594,4670,4669,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4142404,7.5752974,48,5,79.134247,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0482606,7.4393015,55.96,49.93,57.06,57.76,8.333333333333334,1,1,0,0,0,7,2,1,628,545411.88,343841.75,248861.75,0,1777.2148 -2108,2595,4671,4674,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,7.8456178,8.1723766,0,18,10,-82.726219,0,3,3,2019,8,1,38,23,1,1,0,10.043185,10.043185,0,0,0,0,0,1,1,0,0,0,44.53,56.37,48,56,6.666666666666667,2,3,0,0,10,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 -2108,2595,4672,-9,4674,4671,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.3901,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 -2108,2595,4673,-9,4674,4671,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1103.0074,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 -2108,2595,4674,4671,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,18,-10,-165.26678,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,44.53,56.37,7,2,3,0,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 -2108,2595,4675,-9,4674,4671,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.18524,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,3,1,851.59998,199486.81,75689.953,214363.98,142005.08,1173.291 -2109,2596,4676,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.6194849,8.5444288,6.8932877,0,0,-987.26251,0,2,2,2019,6,0,36,38,1,0,0,14.404543,14.404543,0,0,0,0,0,0,0,0,4.8649049,7.3505192,57.06,57.76,-9,-9,10,3,4,0,0,6,8,5,0,1513,699808.38,116523.11,0,0,2606.926 -2109,2597,4677,-9,4676,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8947048,8.7014132,0,0,0,-958.06708,0,2,2,2019,8,0,40,35,1,0,1,23.226131,23.226131,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,6.666666666666667,3,4,0,0,7,8,5,0,1380,10916.521,0,0,0,2826.0198 -2109,2598,4678,-9,4676,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5084763,8.6003885,0,0,0,-872.0791,0,2,2,2019,13,3,35,35,1,3,1,11.826492,11.826492,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,5,3,4,0,0,5,8,4,0,598,-451695.84,0,0,0,1384.156 -2110,2599,4679,4680,4684,-9,1,1,43,0,3,0,2,2,-9,0,4,8.5971956,8.6310978,0,3,12,37.354794,0,2,2,2019,12,0,40,50,1,0,0,14.583529,14.583529,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.9,53.61,1.666666666666667,2,3,0,0,10,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 -2110,2599,4680,4679,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,0,0,0,3,-12,155.43764,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51.9,53.61,57.16,56.15,6.666666666666667,2,3,0,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 -2110,2599,4681,-9,4680,4679,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.27576,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 -2110,2599,4682,-9,4680,4679,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.93195,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 -2110,2599,4683,-9,4680,4679,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.4977,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,766.20001,53269.367,129032.41,0,0,3004.998 -2110,2600,4684,-9,-9,-9,1,0,77,0,3,0,2,2,-9,0,2,0,0,0,0,0,-981.68518,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,40.27,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1592,0,0,0,0,251.98308 -2111,2601,4685,4686,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.7997246,8.0617828,0,6,3,84.443092,-9,3,3,2019,11,0,50,0,1,1,0,6.2034726,6.2034726,0,0,0,0,0,0,0,0,3.8293507,0,49,50,49.85,12.63,7,1,1,0,0,10,2,5,1,476.5,1782039,1192148.5,326256.09,0,4136.3906 -2111,2601,4686,4685,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.9236507,8.9013577,0,6,-3,-47.042568,0,-9,-9,2019,18,6,37,37,1,6,0,20.529366,20.529366,0,0,0,0,0,0,0,0,0,0,49.85,12.63,49,50,3.333333333333333,1,1,0,0,10,2,5,1,476.5,1782039,1192148.5,326256.09,0,4136.3906 -2112,2602,4687,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.4743199,5.4817009,0,0,-1133.1013,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,5.3032823,5.6377053,31.67,54.34,-9,-9,1.666666666666667,1,1,0,1,9,12,2,1,536,1227.9662,42251.664,0,0,1060.0134 -2112,2603,4688,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.6182809,6.4726019,0,0,0,-992.06738,0,-9,-9,2019,6,0,11,11,1,0,0,8.9138937,8.9138937,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,164,-225070.03,9771.2266,0,0,787.85046 -2113,2604,4689,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,4.8417101,4.810462,0,0,-916.89746,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.1037464,4.9200244,31.99,48.33,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,514,208679.34,38502.5,0,0,976.49243 -2114,2605,4690,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3328605,7.5230818,0,0,0,-1158.5814,0,3,-9,2019,0,0,28,28,1,0,0,8.2420425,8.2420425,0,0,0,0,2,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,3,0,1759,-218945.39,0,0,0,1585.3346 -2115,2606,4691,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.8562,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.92,48.59,-9,-9,10,3,4,0,0,3,8,1,0,144,-414353.5,0,0,0,742.64612 -2116,2607,4692,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.3317261,6.4064922,0,0,-995.7688,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7141466,6.1793156,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1528,209210.89,86604.859,242748.63,0,829.69525 -2117,2608,4693,-9,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,8.5331898,8.0635538,6.055727,0,0,-907.87115,0,2,3,2019,15,3,40,48,1,3,0,11.199904,11.199904,0,0,0,0,0,1,1,0,6.8868589,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,1,6,2,4,1,1250,284851.06,251762.63,92241.961,24945.826,2006.881 -2117,2608,4694,-9,4693,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.98132,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1250,284851.06,251762.63,92241.961,24945.826,2006.881 -2117,2609,4695,-9,4693,-9,1,0,22,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1001.8119,0,2,1,2019,23,11,0,17,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,32.43,56.78,-9,-9,3.333333333333333,1,1,1,0,1,2,1,1,892,57632.914,0,0,0,0 -2118,2610,4696,-9,4698,4697,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.05664,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,501.33334,26498.656,33561.094,0,0,1788.5217 -2118,2610,4697,4698,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.4535446,7.6474981,0,4,3,-53.258121,0,-9,-9,2019,2,0,30,0,1,0,0,6.5763021,6.5763021,0,0,0,0,0,1,1,0,0,0,60.13,49.27,55.79,52.62,8.333333333333334,1,1,0,0,8,9,2,0,501.33334,26498.656,33561.094,0,0,1788.5217 -2118,2610,4698,4697,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.9548903,7.1063156,0,4,-3,-74.075111,0,2,3,2019,7,0,17,24,1,0,0,7.44454,7.44454,0,0,0,0,0,1,1,0,0,0,55.79,52.62,60.13,49.27,10,1,1,0,0,6,9,2,0,501.33334,26498.656,33561.094,0,0,1788.5217 -2119,2611,4699,4700,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5060387,8.1244049,28,-2,-80.133446,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0814443,7.7269683,57.16,56.15,56.58,49.75,8.333333333333334,1,1,0,0,0,7,3,1,425,940829.5,409043.5,377979.88,0,2628.4543 -2119,2611,4700,4699,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,32,2,-160.64409,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4221134,0,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,425,940829.5,409043.5,377979.88,0,2628.4543 -2120,2612,4701,-9,4702,-9,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1000.1007,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,650.5,112534.36,0,0,0,750.75647 -2120,2612,4702,-9,-9,-9,1,0,37,0,0,0,1,1,0,0,2,0,0,0,0,0,-1002.5959,-9,1,-9,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.65,41.71,-9,-9,6.666666666666667,3,4,0,1,6,8,1,0,650.5,112534.36,0,0,0,750.75647 -2121,2613,4703,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1021.5309,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.5963339,0,40.44,33.06,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,308,-179141.97,0,0,0,820.83215 -2122,2614,4704,4705,-9,-9,1,0,24,0,0,0,2,2,-9,1,5,0,0,0,1,-11,0,-9,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.1,59.11,31.51,32.92,8.333333333333334,1,1,0,0,0,1,2,0,801,41226.375,0,0,0,865.51379 -2122,2614,4705,4704,-9,-9,1,1,35,0,0,0,2,2,-9,1,3,0,0,0,1,11,0,-9,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.51,32.92,54.1,59.11,5,1,1,0,0,0,1,2,0,801,41226.375,0,0,0,865.51379 -2123,2615,4706,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.3516908,7.2693906,0,0,0,-916.1604,0,3,3,2019,31,12,25,33,1,12,0,7.4967289,7.4967289,0,0,0,0,0,0,0,0,0,0,38.31,43.73,-9,-9,0,3,4,0,0,6,6,3,0,478,416032.06,62523.426,147792.13,0,611.24097 -2123,2616,4707,-9,4706,-9,1,1,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-866.47559,0,2,-9,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,23.98,44.85,-9,-9,0,4,2,1,0,0,6,1,0,761,-25378.355,0,0,0,0 -2124,2617,4708,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.4428329,8.2178078,0,0,0,-957.7644,0,2,3,2019,13,2,60,60,1,2,0,8.1427202,8.1427202,0,0,0,0,0,0,0,0,6.835165,0,40.42,50.25,-9,-9,5,1,1,0,1,8,4,4,1,3830,467439.97,355031.44,43289.242,30518.414,1960.4552 -2124,2618,4709,-9,-9,4708,1,1,25,0,0,0,2,2,-9,0,4,8.5749483,8.8018122,0,0,0,-966.1095,0,-9,2,2019,12,0,60,60,1,0,1,8.0370445,8.0370445,0,0,0,0,0,0,0,0,.32748386,0,46.4,57.35,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,1371,-93024.141,-36268.039,0,0,2402.0388 -2125,2619,4710,4711,-9,-9,1,0,38,1,1,0,2,2,-9,0,3,7.5963516,7.5289669,0,10,0,104.68719,0,3,3,2019,9,0,41,36,1,0,0,5.9842153,5.9842153,0,0,0,0,0,1,1,0,0,0,52.6,52.88,55.91,43.16,8.333333333333334,1,1,0,0,9,2,4,0,1162.6666,207764.47,83065.844,75910.867,96922.016,2606.2102 -2125,2619,4711,4710,-9,-9,1,1,38,1,1,0,2,2,-9,0,5,8.2346468,8.3866596,0,10,0,11.110394,0,1,2,2019,12,0,44,92,1,0,0,10.349265,10.349265,0,0,0,0,0,1,1,0,0,0,55.91,43.16,52.6,52.88,8.333333333333334,1,1,0,0,9,2,4,0,1162.6666,207764.47,83065.844,75910.867,96922.016,2606.2102 -2125,2619,4712,-9,4710,4711,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-883.08685,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,0,1162.6666,207764.47,83065.844,75910.867,96922.016,2606.2102 -2126,2620,4713,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.5232453,7.2950344,0,0,-1006.7836,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5490112,7.1461444,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,590,512470.81,281027.78,343257.06,37697.313,4521.6172 -2127,2621,4714,4716,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.6947594,8.4453239,0,5,4,-25.842751,0,2,2,2019,12,0,40,45,1,0,0,17.202461,17.202461,0,0,0,0,0,1,1,0,4.1120749,0,52.08,55.93,47.46,52.7,6.666666666666667,1,1,0,0,10,11,4,1,716.66669,733005.38,305801.16,260102.97,166940.34,4013.3562 -2127,2621,4715,-9,-9,4714,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-882.77271,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,716.66669,733005.38,305801.16,260102.97,166940.34,4013.3562 -2127,2621,4716,4714,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,7.9625406,7.9625931,0,5,-4,14.160445,0,-9,-9,2019,8,0,44,35,1,0,0,9.7687674,9.7687674,0,0,0,0,0,1,1,0,0,0,47.46,52.7,52.08,55.93,8.333333333333334,1,1,0,0,5,11,4,1,716.66669,733005.38,305801.16,260102.97,166940.34,4013.3562 -2127,2622,4717,-9,-9,4714,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-950.82135,0,2,1,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,4,11,1,1,882,0,0,0,0,442.8139 -2128,2623,4718,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-973.2005,-9,2,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,1.666666666666667,3,4,0,0,1,8,1,0,312,-41706.863,0,0,0,238.14833 -2128,2624,4719,-9,-9,-9,1,1,25,0,1,0,1,1,-9,0,4,6.2565413,6.1933007,0,0,0,-1111.8087,0,2,-9,2019,10,0,15,0,1,1,1,4.2272673,4.2272673,0,0,0,0,0,1,1,0,0,0,31.01,58.67,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,286,-68512.664,0,0,0,601.98584 -2129,2625,4720,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.9561634,8.691946,0,0,-1020.9115,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.6084476,8.3274841,74.43000000000001,18.13,-9,-9,10,1,1,0,0,2,2,4,1,943,716372.81,274629.38,250805.39,0,3433.1101 -2130,2626,4721,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.6084251,8.4665794,0,0,0,-1089.3483,0,2,3,2019,14,4,60,44,1,4,0,10.791193,10.791193,0,0,0,0,0,1,1,0,0,0,26.78,63.07,-9,-9,6.666666666666667,1,1,0,0,10,6,5,1,820,-45947.574,-34911.066,75623.125,0,2059.1255 -2130,2627,4722,-9,4721,-9,1,0,24,0,0,0,2,2,1,0,3,7.2630134,7.4717064,5.1577525,0,0,-918.21777,-9,2,2,2019,10,1,25,0,1,1,1,5.4428844,5.4428844,0,0,0,0,0,1,1,0,5.5051336,0,25.18,59.93,-9,-9,6.666666666666667,1,1,0,0,1,6,3,1,623,193922.66,8089.9185,0,0,1233.0477 -2131,2628,4723,-9,4724,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.18005,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,526.5,126162.04,328226.25,0,0,2184.7732 -2131,2628,4724,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.2553177,8.3456154,6.2054834,0,0,-1027.2377,0,3,2,2019,31,12,42,42,1,12,0,11.417762,11.417762,0,0,0,0,0,1,1,0,6.1320415,0,17.54,48.72,-9,-9,1.666666666666667,1,1,0,1,11,12,4,0,526.5,126162.04,328226.25,0,0,2184.7732 -2132,2629,4725,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.0023603,7.0650144,0,0,-1032.8511,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,30.475073,0,0,1,1,0,6.6371112,7.0837445,57.66,34.34,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,357,431872.25,102197.68,57960.969,0,2047.7549 -2133,2630,4726,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1041.9608,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,15.52,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,159,59956.133,0,0,0,1362.3811 -2134,2631,4727,4728,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2411861,8.1270485,0,3,-2,-193.10808,0,-9,-9,2019,6,1,38,37,1,1,0,10.96592,10.96592,0,0,0,0,0,0,0,0,0,0,49.61,51.38,57.16,56.15,10,1,1,0,0,8,10,5,1,445,219561.94,173254.31,0,0,3178.3882 -2134,2631,4728,4727,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4980412,8.5585642,0,3,2,19.153639,0,3,2,2019,6,0,42,47,1,0,0,12.352062,12.352062,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.61,51.38,8.333333333333334,1,1,0,0,9,10,5,1,445,219561.94,173254.31,0,0,3178.3882 -2135,2632,4729,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,5.2256818,5.1514244,0,0,-913.81677,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9821343,60.32,33.36,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,798,181506.2,0,0,0,678.03705 -2136,2633,4730,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1067553,8.1541433,0,0,-1044.6544,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,7.1526423,8.3898296,53,47,-9,-9,8,1,1,0,0,7,4,4,1,1002,683015.44,248199.64,154585.3,0,1268.295 -2137,2634,4731,4732,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.3199625,8.3700275,0,7,19,-47.377811,-9,2,1,2019,11,0,75,0,1,0,0,5.6167574,5.6167574,0,0,0,0,0,1,1,0,0,0,45.91,59.89,47.14,51.33,6.666666666666667,1,1,0,0,9,11,5,1,417,2420764.5,1926412.6,358048.63,166562.66,5235.2041 -2137,2634,4732,4731,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.2235174,9.5807276,0,7,-19,-69.029388,0,2,1,2019,11,2,30,25,1,2,0,39.545658,39.545658,0,0,0,0,0,1,1,0,0,0,47.14,51.33,45.91,59.89,10,1,1,0,1,8,11,5,1,417,2420764.5,1926412.6,358048.63,166562.66,5235.2041 -2138,2635,4733,-9,4736,4734,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.71704,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 -2138,2635,4734,4736,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.6425409,7.4835014,0,8,0,146.71031,0,-9,-9,2019,8,1,40,37,1,1,0,5.9958296,5.9958296,0,0,0,0,2,0,0,0,0,0,58.3,52.91,57.06,57.76,8.333333333333334,1,1,0,0,9,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 -2138,2635,4735,-9,4736,4734,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5005,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 -2138,2635,4736,4734,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.2582541,8.1968117,0,8,0,163.70374,0,2,2,2019,8,0,24,32,1,0,0,14.579073,14.579073,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.3,52.91,8.333333333333334,1,1,0,0,9,13,3,1,929.5,633117.19,276697.25,262502.25,88945.453,2575.4917 -2139,2636,4737,-9,4740,4739,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.5586,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 -2139,2636,4738,-9,4740,4739,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.5848,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 -2139,2636,4739,4740,-9,-9,1,1,33,0,2,0,1,1,-9,0,5,9.0497475,9.5309849,0,13,0,22.084257,0,3,2,2019,8,0,40,40,1,0,0,26.996834,26.996834,0,0,0,0,0,0,0,0,0,0,51.73,58.82,41.06,62.04,8.333333333333334,1,1,0,0,8,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 -2139,2636,4740,4739,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.3943977,8.385725,0,14,0,-30.655031,0,1,1,2019,14,5,28,25,1,5,0,18.279385,18.279385,0,0,0,0,0,0,0,0,0,0,41.06,62.04,51.73,58.82,5,1,1,0,0,10,7,5,1,538.75,357886,30679.453,680839,370406.78,5038.9795 -2140,2637,4741,4742,-9,-9,1,0,30,1,4,0,3,3,-9,0,4,0,0,0,5,1,0,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.57,50.46,54.2,57.49,6.666666666666667,1,1,0,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 -2140,2637,4742,4741,-9,-9,1,1,29,1,4,0,2,2,-9,1,4,0,0,0,5,-1,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.57,50.46,6.666666666666667,1,1,1,0,1,4,1,0,359.79999,14638.297,0,0,0,2750.6809 -2140,2637,4743,-9,4741,4742,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.4901,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 -2140,2637,4744,-9,4741,4742,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-953.56744,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 -2140,2637,4745,-9,4741,4742,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-988.50482,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,1,0,359.79999,14638.297,0,0,0,2750.6809 -2141,2638,4746,-9,4750,4747,1,0,14,0,4,1,3,0,-9,0,3,0,0,0,0,0,-954.18634,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 -2141,2638,4747,4750,-9,-9,1,1,46,0,4,0,1,1,-9,0,3,8.5214691,8.3322315,0,26,2,57.790432,0,2,2,2019,31,12,40,46,1,12,0,15.125178,15.125178,0,0,0,0,0,1,1,0,0,0,16.16,64.75,46,50,1.666666666666667,1,1,0,0,6,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 -2141,2638,4748,-9,4750,4747,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.92584,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 -2141,2638,4749,-9,4750,4747,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1091.0219,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 -2141,2638,4750,4747,-9,-9,1,0,44,0,4,0,2,2,-9,0,3,0,0,0,10,-2,-32.401279,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,16.16,64.75,5,1,1,0,1,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 -2141,2638,4751,-9,4750,4747,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1003.5189,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,403.83334,276808.5,178518.08,192964.23,75436.344,2758.8767 -2142,2639,4752,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,4,0,6.900218,7.0469584,0,0,-1065.3339,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,6.7046952,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,453,-131985.14,0,0,0,816.58771 -2142,2640,4753,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,4,0,6.742568,6.9978724,0,0,-1011.3074,-9,-9,-9,2019,23,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,7.192739,0,30.53,65.61,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,440,66122.203,0,0,0,888.12726 -2142,2641,4754,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,5.7024937,5.5471935,0,0,-999.9743,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.6433339,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,778,481022.38,0,0,0,-24.216232 -2143,2642,4755,4756,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.9824362,9.1569843,0,5,1,-60.519608,0,-9,-9,2019,7,0,45,48,1,0,0,22.839716,22.839716,0,0,0,0,0,0,0,0,3.007901,0,57.06,57.76,55.19,54.26,10,1,1,0,0,8,1,5,0,557.5,189743.88,186495.7,216433.91,122539.48,4372.3828 -2143,2642,4756,4755,-9,-9,1,0,27,0,0,0,1,1,1,0,4,8.3510284,8.1396017,0,5,-1,12.47574,-9,-9,-9,2019,7,0,47,0,1,0,0,13.705695,13.705695,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,3,1,5,0,557.5,189743.88,186495.7,216433.91,122539.48,4372.3828 -2144,2643,4757,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.2399168,9.7319508,9.83039,0,0,-1024.7864,0,3,3,2019,8,0,40,40,1,0,0,3.7980447,3.7980447,0,0,0,0,0,0,0,0,9.6016092,0,60.27,49.27,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,458,510882.31,500643.59,0,0,10450.348 -2145,2644,4758,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-906.90796,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.5,30.23,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,299,-159283.59,0,0,0,2663.1096 -2146,2645,4759,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,9.6066265,9.4235334,6.057435,0,0,-980.79797,0,2,2,2019,13,2,65,60,1,2,0,26.084806,26.084806,0,0,0,0,0,0,0,0,0,6.1475554,42.56,44.55,-9,-9,3.333333333333333,1,1,0,0,9,9,5,1,390,972737.06,287804.44,143034.58,0,6268.3989 -2147,2646,4760,4762,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.7487001,9.2134323,0,8,-11,113.54488,0,2,2,2019,11,1,58,64,1,1,0,13.289309,13.289309,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.31,50.2,8.333333333333334,1,1,0,0,8,9,5,1,1448,725014,225784.45,585857.38,58579.848,5301.4033 -2147,2646,4761,-9,4760,4762,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.87152,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1448,725014,225784.45,585857.38,58579.848,5301.4033 -2147,2646,4762,4760,-9,-9,1,1,47,0,1,0,1,1,-9,0,2,8.8191061,8.5577097,0,8,11,56.75853,0,1,2,2019,16,6,41,42,1,6,0,23.602039,23.602039,0,0,0,0,0,1,1,0,2.6886978,0,47.31,50.2,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,1448,725014,225784.45,585857.38,58579.848,5301.4033 -2148,2647,4763,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.2469597,8.2086182,5.2051606,0,0,-1025.246,0,2,2,2019,5,0,40,40,1,0,0,10.811709,10.811709,0,0,0,0,0,1,1,0,5.3717527,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,370,-13356.519,28305.301,0,0,1399.1327 -2148,2648,4764,-9,4763,-9,1,0,19,0,0,1,2,0,-9,0,4,0,4.9547315,4.9990692,0,0,-943.69458,-9,2,-9,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.1674304,0,52.04,48.93,-9,-9,6.666666666666667,1,1,0,0,2,2,2,1,2502,-116060.45,0,0,0,287.54755 -2149,2649,4765,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.9612017,8.4291077,0,0,0,-937.06177,0,2,2,2019,6,0,40,40,1,0,0,10.205622,10.205622,0,0,0,0,0,0,0,0,4.1326442,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1075,362775.66,173754.23,176392.33,69308.961,1769.0637 -2150,2650,4766,-9,4768,4767,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.2588,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,846.66669,226515.19,-8163.1978,105607.2,0,2059.843 -2150,2650,4767,4768,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,7.9194384,8.0735712,0,10,10,-67.460411,0,-9,-9,2019,8,1,40,40,1,1,0,6.1040368,6.1040368,0,0,0,0,0,1,1,0,0,0,58.32,50.22,37.81,30.24,8.333333333333334,1,1,0,0,11,12,3,0,846.66669,226515.19,-8163.1978,105607.2,0,2059.843 -2150,2650,4768,4767,-9,-9,1,0,30,0,1,0,2,2,-9,0,1,7.3821902,7.506803,0,10,-10,-25.038551,0,3,-9,2019,13,1,26,30,1,1,0,6.4535384,6.4535384,0,0,0,0,0,1,1,0,0,0,37.81,30.24,58.32,50.22,8.333333333333334,1,1,0,0,7,12,3,0,846.66669,226515.19,-8163.1978,105607.2,0,2059.843 -2151,2651,4769,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.343,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.8983934,0,54.88,19.94,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,918,-229510.86,0,0,0,1588.2605 -2152,2652,4770,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.1637,0,-9,2,2019,11,0,0,0,4,0,0,0,0,1,0,8.3640938,0,0,1,1,0,0,0,53.77,43.21,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,140,238371.56,0,0,0,814.88586 -2153,2653,4771,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,7.521276,7.3083448,0,0,-995.8175,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6904669,7.2874784,53.45,49.53,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,290,292481.47,7992.1045,23674.379,0,2073.8232 -2154,2654,4772,-9,-9,-9,1,0,39,0,1,0,3,3,-9,0,4,6.9318609,7.4295182,6.1902328,0,0,-1036.9735,0,2,-9,2019,20,4,16,16,1,4,0,6.8873281,6.8873281,0,0,0,0,0,1,1,0,6.2391748,0,38.69,61.75,-9,-9,1.666666666666667,1,1,0,1,6,5,2,0,260.5,-118293.59,-71330.719,0,0,1608.4165 -2154,2654,4773,-9,4772,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.2323,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,260.5,-118293.59,-71330.719,0,0,1608.4165 -2155,2655,4774,4775,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0875053,7.3491502,49,-4,-55.429817,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.8704023,7.2109313,54.2,57.49,56.5,13.66,8.333333333333334,1,1,0,0,3,8,3,1,853,830320.63,358916.25,504628.25,0,3205.335 -2155,2655,4775,4774,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.5495543,7.6765571,49,4,-141.39941,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.8242409,7.8415966,56.5,13.66,54.2,57.49,5,1,1,0,0,0,8,3,1,853,830320.63,358916.25,504628.25,0,3205.335 -2156,2656,4776,4777,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9002566,7.1216178,28,-2,54.636757,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,.1313135,7.1335073,40.91,46.26,52.57,52.89,8.333333333333334,1,1,0,0,0,9,4,1,1205,1147712.3,773159.63,280795.88,0,2430.051 -2156,2656,4777,4776,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.806839,7.878881,28,2,-13.616277,0,1,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.6544476,8.2926846,52.57,52.89,40.91,46.26,8.333333333333334,1,1,0,0,0,9,4,1,1205,1147712.3,773159.63,280795.88,0,2430.051 -2156,2657,4778,-9,4776,4777,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-949.42474,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.7066977,0,46.98,59.35,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,307,0,0,0,0,2.7879338 -2157,2658,4779,4780,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9805183,7.8177414,0,2,-1,61.030193,0,2,1,2019,19,8,44,47,1,8,0,10.325545,10.325545,0,0,0,0,0,0,0,0,0,0,41.65,60.41,57.33,53.46,6.666666666666667,1,1,0,0,9,2,5,0,803.5,200471.22,49668.184,104150.66,87472.313,2874.6077 -2157,2658,4780,4779,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.292038,8.3273296,0,2,1,49.957401,0,-9,-9,2019,8,0,60,55,1,0,0,7.3037152,7.3037152,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.65,60.41,8.333333333333334,1,1,0,0,9,2,5,0,803.5,200471.22,49668.184,104150.66,87472.313,2874.6077 -2158,2659,4781,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1085.4301,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.58,36.41,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,531,0,0,0,0,1066.4957 -2159,2660,4782,4783,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.1914444,8.4368477,0,42,-3,-15.625844,0,3,3,2019,3,0,40,38,1,0,0,14.015002,14.015002,0,0,0,0,0,1,1,0,0,0,62.49,55.09,60.02,56.42,10,1,1,0,0,11,12,5,1,578,881419.38,503955.31,242511.94,35954.988,4506.1865 -2159,2660,4783,4782,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,8.6182375,8.7608442,6.6245809,42,3,201.9615,0,3,3,2019,5,0,32,38,1,0,0,19.827887,19.827887,0,0,0,0,0,1,1,0,5.1479936,7.2743788,60.02,56.42,62.49,55.09,10,1,1,0,0,11,12,5,1,578,881419.38,503955.31,242511.94,35954.988,4506.1865 -2159,2661,4784,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1154.1428,0,3,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,6,12,1,1,1160,-282895.41,0,0,0,312.21469 -2160,2662,4785,-9,4787,4786,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.40619,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 -2160,2662,4786,4787,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.8861389,7.676652,0,11,6,57.611622,0,2,3,2019,5,0,33,0,1,0,0,9.3456697,9.3456697,0,0,0,0,0,1,1,0,0,0,49.04,55.86,45.19,46.74,8.333333333333334,1,1,0,0,7,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 -2160,2662,4787,4786,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.8493929,8.7825718,0,11,-6,-49.988331,0,2,2,2019,10,2,48,47,1,2,0,16.059551,16.059551,0,0,0,0,0,1,1,0,0,0,45.19,46.74,49.04,55.86,8.333333333333334,1,1,0,0,10,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 -2160,2662,4788,-9,4787,4786,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.4677,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,279.25,339431.13,281971.94,165641.53,45774.172,3278.9565 -2161,2663,4789,-9,4790,4791,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1009.1683,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.7,47.3,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 -2161,2663,4790,4791,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.5961323,8.7588081,0,20,0,96.943672,0,2,-9,2019,15,5,42,41,1,5,0,17.76195,17.76195,0,0,0,0,0,1,1,0,0,0,44.88,29.61,61.28,46.17,6.666666666666667,1,1,0,0,9,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 -2161,2663,4791,4790,-9,-9,1,1,43,0,2,0,2,2,-9,1,3,8.3662519,8.3099394,0,20,0,-33.868946,0,3,2,2019,7,0,39,39,1,0,0,14.140791,14.140791,0,0,0,0,0,1,1,0,4.6455064,0,61.28,46.17,44.88,29.61,8.333333333333334,1,1,0,0,9,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 -2161,2663,4792,-9,4790,4791,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.35284,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,8,4,1,595,719557.5,428451.19,178395.09,89644.43,4532.6035 -2162,2664,4793,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.1005774,9.2954302,3.5698638,0,0,-887.66168,0,2,3,2019,10,0,30,30,1,0,0,36.402386,36.402386,0,0,0,0,0,0,0,0,7.7080045,3.8390577,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,2422,859495.63,508347.88,172514.63,61219.141,3948.4893 -2163,2665,4794,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7693205,9.012558,0,8,0,37.638889,0,1,1,2019,11,0,35,43,1,0,0,27.860474,27.860474,0,0,0,0,0,0,0,0,4.6328688,0,51.24,58.84,43.42,62.33,8.333333333333334,1,1,0,0,10,8,5,1,2227,184096.97,69457.641,427986.44,313681.78,2643.4146 -2163,2666,4795,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.7101622,9.4263144,0,8,0,-7.5832124,0,1,2,2019,11,2,40,40,1,2,0,49.172955,49.172955,0,0,0,0,0,0,0,0,4.4664803,0,43.42,62.33,51.24,58.84,8.333333333333334,1,1,0,0,10,8,5,1,432,347062.81,33557.441,282835.66,64794.625,5726.7241 -2164,2667,4796,4797,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,9.2097416,9.0338125,0,3,-13,-84.510406,0,-9,2,2019,18,6,11,43,1,6,0,103.17455,103.17455,0,0,0,0,0,0,0,0,0,0,33.66,61.57,47.75,53.7,6.666666666666667,1,1,0,1,10,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 -2164,2667,4797,4796,-9,-9,1,1,59,0,2,0,2,2,-9,0,3,7.9354472,7.6768856,0,3,13,63.607597,0,2,2,2019,12,0,65,65,1,0,0,3.9899323,3.9899323,0,0,0,0,0,0,0,0,0,0,47.75,53.7,33.66,61.57,3.333333333333333,1,1,0,1,12,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 -2164,2667,4798,-9,4796,4797,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-980.03766,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,25.45,61.14,-9,-9,6.666666666666667,1,1,1,0,0,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 -2164,2667,4799,-9,4796,4797,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.19434,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1651.25,1887553.5,1153226.6,391802.44,0,3738.9028 -2165,2668,4800,4802,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.5056553,8.4464874,0,8,0,3.2926116,0,2,3,2019,10,0,40,40,1,1,0,16.66124,16.66124,0,0,0,0,0,1,1,0,0,0,50,49,57.06,57.76,7,1,1,0,0,1,2,4,1,1100,207255.08,171543.36,153478.45,97707.273,3537.1582 -2165,2668,4801,-9,4802,4800,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.7963,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1100,207255.08,171543.36,153478.45,97707.273,3537.1582 -2165,2668,4802,4800,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.3794575,8.4815197,0,27,0,-166.67464,0,2,3,2019,8,0,32,37,1,0,0,14.505915,14.505915,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,49,10,1,1,0,0,10,2,4,1,1100,207255.08,171543.36,153478.45,97707.273,3537.1582 -2166,2669,4803,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,5,8.2196045,7.9376764,0,0,0,-898.34802,-9,-9,-9,2019,7,0,60,0,1,0,0,7.7827625,7.7827625,0,0,0,0,0,0,0,0,.36932066,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,1036,349071.66,0,0,0,1127.5692 -2167,2670,4804,4805,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,7.9375267,7.9881821,6,15,-137.70103,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7885432,64.52,50.23,67.34,37.81,10,1,1,0,0,6,7,3,1,351,763600.94,429958.81,278663.03,0,2786.4712 -2167,2670,4805,4804,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,6.1961632,6.4883704,6,-15,-17.984238,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,5.9100003,0,67.34,37.81,64.52,50.23,10,1,1,0,0,3,7,3,1,351,763600.94,429958.81,278663.03,0,2786.4712 -2168,2671,4806,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.7019067,7.7273612,0,0,-1103.7892,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1015244,7.7727356,60.3,46.58,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,482,435665.69,143904.58,282053.44,0,1642.103 -2169,2672,4807,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.6290684,8.3637924,0,0,0,-1022.9278,0,3,2,2019,6,0,80,35,1,0,0,7.7980709,7.7980709,0,0,0,0,0,1,1,0,0,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,636.5,-28321.77,17331.166,125887.69,24457.355,2041.4526 -2169,2672,4808,-9,4807,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1114.7349,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,636.5,-28321.77,17331.166,125887.69,24457.355,2041.4526 -2169,2673,4809,-9,4807,-9,1,0,25,0,1,0,2,2,-9,0,4,8.1093369,8.1073818,0,0,0,-907.8446,0,2,3,2019,21,9,50,50,1,9,1,5.5171533,5.5171533,0,0,0,0,0,1,1,0,0,0,19.33,61.42,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,718,74596.852,0,0,0,1108.7867 -2170,2674,4810,4811,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7925682,8.1441116,6.8222008,6,-8,-50.913227,-9,-9,-9,2019,11,0,24,0,1,2,0,9.7158203,9.7158203,0,0,0,0,0,1,1,0,4.6967721,7.0122218,50,47,57.16,56.15,7,1,1,0,0,1,1,5,1,1193.5,1390386.4,703954,502929.13,0,4769.6514 -2170,2674,4811,4810,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.8452244,8.4868469,30,8,-89.758163,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4631758,57.16,56.15,50,47,10,1,1,0,0,0,1,5,1,1193.5,1390386.4,703954,502929.13,0,4769.6514 -2171,2675,4812,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.7196,0,2,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,4.8690057,0,41.2,59.37,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,241,166598.97,0,0,0,1150.8129 -2172,2676,4813,4814,-9,-9,1,1,28,0,2,0,2,2,-9,0,4,8.0742931,8.0734129,0,8,2,-176.54991,0,2,2,2019,6,0,48,56,1,0,0,9.3242617,9.3242617,0,0,0,0,0,1,1,0,3.2991223,0,57.16,56.15,43.54,59.6,10,1,1,0,1,6,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 -2172,2676,4814,4813,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,7.1545634,7.1775208,0,8,-2,-15.944029,0,2,2,2019,14,2,36,0,1,2,0,4.6581268,4.6581268,0,0,0,0,0,1,1,0,0,0,43.54,59.6,57.16,56.15,8.333333333333334,1,1,0,0,1,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 -2172,2676,4815,-9,4814,4813,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2484,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 -2172,2676,4816,-9,4814,4813,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.2198,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,350.25,47305.031,17555.48,0,0,1648.7164 -2173,2677,4817,4818,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.5112209,8.1560068,0,1,14,-47.413322,0,3,3,2019,3,0,43,47,1,0,0,10.12761,10.12761,0,0,0,0,2,0,0,0,2.4647369,0,49.42,45.96,42.85,60.33,8.333333333333334,1,1,0,0,12,13,5,1,320.5,394990.19,358185.31,190026.88,176354.97,3171.4634 -2173,2677,4818,4817,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.2670517,8.3820257,0,1,-14,24.268898,-9,-9,-9,2019,10,0,38,0,1,0,0,12.018336,12.018336,0,0,0,0,0,0,0,0,1.9356738,0,42.85,60.33,49.42,45.96,3.333333333333333,1,1,0,0,2,13,5,1,320.5,394990.19,358185.31,190026.88,176354.97,3171.4634 -2174,2678,4819,4820,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,0,0,0,7,3,-150.40245,-9,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.22,53.7,46.16,58.62,1.666666666666667,1,1,1,1,8,12,2,1,750,196240.39,54672.035,0,0,2233.1682 -2174,2678,4820,4819,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,7.2701092,7.0895128,0,7,-3,-70.81041,0,3,3,2019,10,0,23,23,1,0,0,8.1719065,8.1719065,0,0,0,0,0,1,1,0,0,0,46.16,58.62,28.22,53.7,6.666666666666667,1,1,0,0,8,12,2,1,750,196240.39,54672.035,0,0,2233.1682 -2174,2678,4821,-9,4820,4819,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0104,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,2,1,750,196240.39,54672.035,0,0,2233.1682 -2174,2678,4822,-9,4820,4819,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1060.8094,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,2,1,750,196240.39,54672.035,0,0,2233.1682 -2175,2679,4823,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5306907,7.8641825,5.6943545,0,0,-960.67242,0,-9,-9,2019,8,0,21,21,1,0,0,14.210426,14.210426,0,0,0,0,7,1,1,0,5.4119382,0,62.15,38.9,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,183,166732.39,43227.414,0,0,1545.5497 -2176,2680,4824,4825,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,30,-11,25.801373,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,58.89,48.6,10,1,1,0,0,6,1,3,1,385.5,909359.88,481843.31,245349.5,0,1921.5864 -2176,2680,4825,4824,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.9613543,8.0490856,30,11,9.9941807,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4687409,7.9672871,58.89,48.6,59.71,50.89,10,1,1,0,0,0,1,3,1,385.5,909359.88,481843.31,245349.5,0,1921.5864 -2177,2681,4826,4827,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3192859,7.4974756,0,30,0,-30.562298,0,3,3,2019,7,0,32,32,1,0,0,8.1356993,8.1356993,0,0,0,0,0,0,0,0,3.3986557,0,52.6,52.88,57.06,57.76,6.666666666666667,1,1,0,0,9,4,5,1,1233.5,957815.13,837331.31,90735.141,0,3138.3677 -2177,2681,4827,4826,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.5019684,8.7941265,0,30,0,29.591322,-9,3,3,2019,6,0,40,0,1,0,0,16.957378,16.957378,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.6,52.88,6.666666666666667,1,1,0,0,9,4,5,1,1233.5,957815.13,837331.31,90735.141,0,3138.3677 -2178,2682,4828,4830,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,0,0,0,18,-10,0,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.17,43.72,57.16,56.15,1.666666666666667,1,1,1,1,1,12,1,0,361.33334,208492.56,0,0,0,1683.3241 -2178,2682,4829,-9,4830,4828,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-808.54779,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,361.33334,208492.56,0,0,0,1683.3241 -2178,2682,4830,4828,-9,-9,1,0,58,0,1,0,3,3,-9,0,4,0,0,0,18,10,0,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,32.17,43.72,8.333333333333334,1,1,1,1,0,12,1,0,361.33334,208492.56,0,0,0,1683.3241 -2179,2683,4831,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0149431,8.3455296,0,0,0,-1020.2655,0,2,2,2019,6,0,36,0,1,0,0,12.439375,12.439375,0,0,0,0,0,0,0,0,0,0,60.86,50.49,-9,-9,8.333333333333334,1,1,0,1,9,2,4,0,928,554002.88,188805.41,75066.109,0,1562.2841 -2180,2684,4832,4833,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.4612303,9.087038,0,8,5,60.35046,0,3,3,2019,11,1,47,45,1,1,0,22.067163,22.067163,0,0,0,0,0,0,0,0,5.5510211,0,44.46,60.71,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,599.5,550182.25,617656,173520,20515.404,3713.4082 -2180,2684,4833,4832,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.8567791,6.5546608,0,8,-5,-80.847771,0,2,2,2019,6,0,18,18,1,0,0,6.8483462,6.8483462,0,0,0,0,0,0,0,0,5.3037801,0,57.16,56.15,44.46,60.71,10,1,1,0,0,9,2,5,1,599.5,550182.25,617656,173520,20515.404,3713.4082 -2180,2685,4834,-9,4833,4832,1,1,23,0,0,0,1,1,1,0,3,7.9015927,8.3606129,0,0,0,-1002.8403,-9,2,2,2019,8,0,38,0,1,0,1,11.167113,11.167113,0,0,0,.019199921,0,0,0,0,4.0367947,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,336,-162790.28,0,0,0,1652.9784 -2181,2686,4835,-9,4836,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.4059,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,1,0,643,-68885.586,0,0,0,1380.1376 -2181,2686,4836,-9,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1030.6411,0,3,2,2019,9,2,0,23,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.8,26.61,-9,-9,3.333333333333333,3,4,1,1,6,2,1,0,643,-68885.586,0,0,0,1380.1376 -2181,2686,4837,-9,4836,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.7908,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,643,-68885.586,0,0,0,1380.1376 -2181,2687,4838,-9,4836,-9,1,1,24,0,2,0,1,1,1,0,3,0,0,0,0,0,-951.51343,-9,3,-9,2019,19,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,34.73,60.05,-9,-9,3.333333333333333,3,4,1,1,0,2,1,0,527,-41067.961,0,0,0,0 -2181,2688,4839,-9,4836,-9,1,1,20,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1019.7568,0,3,-9,2019,12,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,47.04,47.41,-9,-9,8.333333333333334,3,4,1,1,0,2,1,0,308,0,0,0,0,0 -2182,2689,4840,4841,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.5448947,7.8027534,9,-1,23.744467,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.2322793,7.9296613,53.54,49.68,40.45,24.97,6.666666666666667,1,1,0,0,0,1,3,1,361,1001450.7,597554.06,300600.19,0,3344.6167 -2182,2689,4841,4840,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,7.5622511,7.4425879,9,1,-6.8901739,0,3,3,2019,26,11,0,0,4,11,0,0,0,1,0,18.049002,0,0,1,1,0,4.9903541,7.8104029,40.45,24.97,53.54,49.68,1.666666666666667,1,1,0,0,0,1,3,1,361,1001450.7,597554.06,300600.19,0,3344.6167 -2182,2690,4842,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.7769527,5.406867,0,0,-1004.9257,-9,-9,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,5.4460187,0,34.62,61.03,-9,-9,8.333333333333334,4,2,0,0,0,1,2,1,441,-282724.22,0,0,0,-9.1460285 -2183,2691,4843,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1191.8313,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.06,57.68,-9,-9,5,3,4,1,0,0,10,1,0,626,-309299.25,126522.2,0,0,135.23286 -2183,2692,4844,-9,-9,4843,1,0,22,0,0,0,1,1,1,0,4,8.1713219,8.001955,0,0,0,-844.92377,-9,3,3,2019,4,0,46,0,1,0,1,8.0561886,8.0561886,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,8.333333333333334,3,4,0,0,0,10,4,0,1362,308176.09,-77125.055,0,0,985.62054 -2184,2693,4845,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3527365,8.4039164,5.7046061,27,0,51.063934,0,3,3,2019,7,0,98,98,1,0,0,4.7426682,4.7426682,0,0,0,0,28,1,1,0,0,6.115417,53.39,44.47,48,48,8.333333333333334,1,1,0,0,11,9,4,1,107,507242.19,16812.354,527690.94,197098.5,2938.2339 -2185,2694,4846,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.6797495,6.95538,0,0,-1114.9844,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.80098557,7.3668776,53,45,-9,-9,8,4,6,0,0,0,11,2,1,337,401002.53,177036.77,73372.078,0,1039.3975 -2185,2695,4847,4848,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,6.6515298,6.5042405,0,3,4,87.335815,0,-9,-9,2019,16,5,43,40,1,5,0,2.3147585,2.3147585,0,0,0,0,7,1,1,0,0,0,31.06,58.92,23.47,64.78,3.333333333333333,1,1,0,0,6,11,3,1,3147.5,-41043.152,0,0,0,1147.9531 -2185,2695,4848,4847,4849,4850,1,0,24,0,0,0,2,2,-9,0,3,7.2686448,7.2705684,0,3,-4,30.973232,0,2,2,2019,19,5,25,28,1,5,0,5.4376822,5.4376822,0,0,0,0,0,1,1,0,0,0,23.47,64.78,31.06,58.92,6.666666666666667,1,1,0,0,8,11,3,1,3147.5,-41043.152,0,0,0,1147.9531 -2185,2696,4849,4850,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.5629592,7.6584549,0,7,-8,-114.34443,0,2,2,2019,11,0,48,48,1,0,0,5.6795492,5.6795492,0,0,0,0,74.5,1,1,0,0,0,51.83,57.2,50.54,62.09,8.333333333333334,1,1,0,0,8,11,4,1,223,919810.5,697041.25,390906.44,0,3851.4248 -2185,2696,4850,4849,4846,-9,1,1,52,0,0,0,2,2,-9,0,5,7.8883681,7.748436,0,7,8,-87.105934,0,2,2,2019,10,0,8,40,1,0,0,54.213177,54.213177,0,0,0,0,74.5,1,1,0,7.0118694,0,50.54,62.09,51.83,57.2,6.666666666666667,1,1,0,0,8,11,4,1,223,919810.5,697041.25,390906.44,0,3851.4248 -2186,2697,4851,4852,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.5133724,7.4934216,0,6,0,63.334797,0,3,3,2019,7,0,37,35,1,0,0,4.885458,4.885458,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,8,12,2,1,1095,457606.06,412722.22,155478.38,0,543.6593 -2186,2697,4852,4851,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,45,0,-10.196552,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,1095,457606.06,412722.22,155478.38,0,543.6593 -2187,2698,4853,4854,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,37,-4,-117.83248,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.68,31.79,54,54,3.333333333333333,1,1,0,0,6,9,3,0,828.5,11686.719,53790.797,0,0,1288.116 -2187,2698,4854,4853,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.7079406,7.7835665,0,37,4,2.1451297,0,3,3,2019,9,0,45,40,1,0,0,5.3497572,5.3497572,0,0,0,0,0,1,1,0,.44931218,0,54,54,40.68,31.79,8,1,1,0,0,1,9,3,0,828.5,11686.719,53790.797,0,0,1288.116 -2188,2699,4855,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.8371077,5.7817531,0,0,-1029.7461,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,1.037289,0,21.690084,0,1,1,0,8.2736206,5.9550624,49.62,29.81,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,502,605901.5,-4455.5093,55104.914,0,2007.6658 -2189,2700,4856,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2197456,8.3144474,0,0,0,-917.91003,0,2,2,2019,10,0,40,40,1,0,0,11.334444,11.334444,0,0,0,0,0,0,0,0,7.6574392,0,48.29,47.89,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,1522,386748.59,494370.34,119788.88,-19649.045,1816.2677 -2189,2701,4857,-9,4856,-9,1,1,23,0,0,0,2,2,-9,0,2,7.0904613,7.1106405,0,0,0,-938.89465,0,2,-9,2019,14,2,18,25,1,2,1,6.549439,6.549439,0,0,0,0,0,0,0,0,0,0,39.36,48.28,-9,-9,1.666666666666667,1,1,0,1,4,12,2,1,607,-222772.66,11405.183,0,0,767.25903 -2190,2702,4858,4859,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.8150845,8.9294653,0,31,-1,-93.442879,0,2,2,2019,10,1,37,38,1,1,0,20.510887,20.510887,0,0,0,0,0,0,0,0,3.7048938,0,39.56,54.83,25.71,63.61,6.666666666666667,1,1,0,0,6,6,5,1,2089,1479747.5,1058974.9,251799.14,0,6570.7935 -2190,2702,4859,4858,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.5920343,9.573452,0,31,1,-14.677947,0,2,1,2019,21,9,38,52,1,9,0,42.755798,42.755798,0,0,0,0,0,0,0,0,4.8246336,0,25.71,63.61,39.56,54.83,6.666666666666667,1,1,0,0,8,6,5,1,2089,1479747.5,1058974.9,251799.14,0,6570.7935 -2190,2703,4860,-9,4858,4859,1,0,25,0,0,0,1,1,-9,0,2,7.1620965,7.0434623,0,0,0,-962.67603,0,2,2,2019,2,0,30,30,1,0,1,4.7013187,4.7013187,0,0,0,0,0,0,0,0,1.7353636,0,49.27,39.66,-9,-9,8.333333333333334,1,1,0,0,3,6,3,1,797,130941.48,0,0,0,1394.5864 -2191,2704,4861,4862,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.6687107,8.1926308,39,8,160.65584,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7681136,7.162766,57.16,56.15,63.8,43.63,10,1,1,0,0,9,7,3,1,1487,1661714.4,1043048,503630.19,0,2975.855 -2191,2704,4862,4861,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.3216243,7.2878599,39,-8,118.2269,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2610691,6.9833083,63.8,43.63,57.16,56.15,8.333333333333334,1,1,0,0,5,7,3,1,1487,1661714.4,1043048,503630.19,0,2975.855 -2192,2705,4863,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.3308969,5.4337454,0,0,-1081.4451,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7129178,5.5272055,64.76000000000001,48.62,-9,-9,10,1,1,0,0,0,11,2,1,1211,393249.22,25905.105,124423.17,0,1577.5538 -2193,2706,4864,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.3643475,8.4312649,0,0,0,-1072.1332,0,1,2,2019,1,0,37,52,1,0,0,13.6037,13.6037,0,0,0,0,0,0,0,0,3.0750794,0,58.15,52.91,-9,-9,10,1,1,0,0,7,8,4,0,1453,108865.45,0,0,0,1873.2971 -2193,2707,4865,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.4963932,8.4781046,0,0,0,-1060.2854,-9,-9,-9,2019,1,0,30,0,1,0,0,18.301188,18.301188,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,2,3,0,0,0,8,5,0,952,-61783.488,-142747.95,0,0,2396.3689 -2193,2708,4866,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0500698,7.9325972,0,0,0,-1142.8582,-9,-9,-9,2019,10,0,40,0,1,1,0,8.0741634,8.0741634,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,8,3,0,141,168138.64,0,0,0,1056.142 -2193,2709,4867,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.2608252,8.3409929,0,0,0,-894.16125,-9,-9,-9,2019,10,0,40,0,1,1,0,9.7356491,9.7356491,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,8,4,0,937,-338218.75,0,0,0,1301.9753 -2194,2710,4868,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,8.7256994,8.6226158,0,0,0,-886.46741,0,-9,-9,2019,7,0,38,25,1,0,0,15.233975,15.233975,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,5,5,0,748,1063706.5,402991.63,298443.88,0,2491.4795 -2195,2711,4869,-9,4871,4870,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.681,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,0,737,110513.5,164998.7,76719.977,42737.922,4530.4463 -2195,2711,4870,4871,-9,-9,1,1,34,0,1,0,2,2,-9,0,2,9.1518869,8.9655695,0,7,3,-49.361473,0,2,2,2019,11,1,37,51,1,1,0,31.520031,31.520031,0,0,0,0,0,1,1,0,0,0,40.14,45.62,21.33,59.29,6.666666666666667,1,1,0,0,7,11,5,0,737,110513.5,164998.7,76719.977,42737.922,4530.4463 -2195,2711,4871,4870,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.9029698,8.0183077,0,7,-3,12.243939,0,-9,-9,2019,27,11,39,26,1,11,0,6.7584505,6.7584505,0,0,0,0,0,1,1,0,3.2897291,0,21.33,59.29,40.14,45.62,1.666666666666667,1,1,0,0,8,11,5,0,737,110513.5,164998.7,76719.977,42737.922,4530.4463 -2196,2712,4872,-9,4874,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.58533,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,239.25,0,0,0,0,1772.1318 -2196,2712,4873,-9,4874,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1125.2197,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,239.25,0,0,0,0,1772.1318 -2196,2712,4874,-9,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,0,0,0,0,0,-872.50323,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.79,59.6,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,239.25,0,0,0,0,1772.1318 -2196,2712,4875,-9,4874,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.6096,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,.1268295,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,239.25,0,0,0,0,1772.1318 -2197,2713,4876,4877,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,9,-5,0,0,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,26.18,27.22,51.25,13.8,5,1,1,0,0,1,10,1,1,2196,175117.73,-52226.563,0,0,1541.8455 -2197,2713,4877,4876,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,9,5,0,0,3,2,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,13.8,26.18,27.22,0,1,1,0,1,0,10,1,1,2196,175117.73,-52226.563,0,0,1541.8455 -2198,2714,4878,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.9653211,7.160171,0,0,-989.12482,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0853405,6.9818759,54.1,59.11,-9,-9,10,1,1,0,0,3,5,3,1,432,920774.13,62909.18,421913.72,0,1984.9907 -2199,2715,4879,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1004.1885,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,1,4,4,1,1,157,375936.81,0,288267.5,0,423.21646 -2200,2716,4880,4881,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.1303401,6.9598899,6,11,-55.950523,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.21699,6.4877663,54,46,40.14,38.19,3.333333333333333,2,3,0,0,0,8,2,1,1405.5,124532.72,238384.81,223852.47,0,1278.0341 -2200,2716,4881,4880,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,52,-11,30.905022,0,3,3,2019,18,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,0,0,40.14,38.19,54,46,8.333333333333334,2,3,0,0,0,8,2,1,1405.5,124532.72,238384.81,223852.47,0,1278.0341 -2201,2717,4882,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,2.9100788,2.8320212,0,0,-1025.0182,-9,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,2.9499059,43.55,42.24,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,368,1258054,222147.59,920632.81,0,2087.1543 -2202,2718,4883,4884,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.1960869,7.3314505,9,0,-36.381317,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,5.7462325,0,2,1,1,0,5.5116038,7.4940915,64.23999999999999,34.3,60.3,46.58,6.666666666666667,1,1,0,0,6,4,2,1,467.5,596128.25,569288.19,119363.98,0,2100.6675 -2202,2718,4884,4883,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.4153495,6.0413156,9,0,59.551464,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.15152158,6.1483216,60.3,46.58,64.23999999999999,34.3,8.333333333333334,1,1,0,0,7,4,2,1,467.5,596128.25,569288.19,119363.98,0,2100.6675 -2203,2719,4885,-9,-9,-9,1,0,41,0,0,0,3,3,-9,0,4,7.2001858,7.2761641,0,0,0,-975.9317,-9,2,2,2019,12,0,25,0,1,0,0,6.7087808,6.7087808,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,1,6,12,3,1,275,12909.58,-65780.703,0,0,912.59149 -2204,2720,4886,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.8596702,7.8779902,0,0,0,-1124.1639,0,2,2,2019,6,0,36,36,1,0,0,7.6118665,7.6118665,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,10,13,3,1,269,-441424.72,0,0,0,994.93188 -2205,2721,4887,-9,4889,4890,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.63275,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 -2205,2721,4888,-9,4889,4890,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.80804,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 -2205,2721,4889,4890,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.7918634,9.3514194,0,9,-1,-3.9401703,0,3,3,2019,12,2,72,0,1,2,0,14.788729,14.788729,0,0,0,0,0,0,0,0,0,0,45.95,31.45,58.74,48.72,8.333333333333334,2,3,0,0,0,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 -2205,2721,4890,4889,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,9.2135134,9.2889147,0,9,1,-25.702,0,1,1,2019,8,0,40,40,1,0,0,31.875092,31.875092,0,0,0,0,0,0,0,0,3.8045058,0,58.74,48.72,45.95,31.45,8.333333333333334,2,3,0,0,9,8,5,1,861,426247.06,43980.93,905927.38,491994.09,9189.3633 -2206,2722,4891,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.643209,7.6109142,0,0,0,-997.46503,0,3,2,2019,17,5,35,36,1,5,0,7.1834273,7.1834273,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,3.333333333333333,1,1,0,1,10,11,3,1,151,227277.27,366950.66,128372.77,41233.695,1195.1785 -2206,2723,4892,-9,4891,-9,1,1,32,0,0,0,2,2,-9,0,4,7.6749225,7.8848772,0,0,0,-988.84113,0,2,2,2019,6,0,35,55,1,0,1,7.8544364,7.8544364,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,281,158372.22,-89701.336,0,0,934.12976 -2207,2724,4893,4894,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.0888186,7.8020897,0,20,1,56.010574,0,3,3,2019,8,0,28,26,1,0,0,9.4752417,9.4752417,0,0,0,0,0,1,1,0,0,0,43.32,63.94,48,51,6.666666666666667,1,1,0,0,13,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 -2207,2724,4894,4893,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7545404,8.8049269,0,11,-1,-98.531181,0,-9,-9,2019,9,0,43,45,1,0,0,14.845534,14.845534,0,0,0,0,0,1,1,0,4.1417279,0,48,51,43.32,63.94,6.666666666666667,1,1,0,0,12,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 -2207,2724,4895,-9,4893,4894,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-991.82776,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 -2207,2724,4896,-9,4893,4894,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1047.2931,-9,2,2,2019,24,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,1.2403998,0,25.08,69.39,-9,-9,1.666666666666667,1,1,0,0,2,8,4,1,628.75,91248.109,71026.211,0,0,3352.3547 -2208,2725,4897,4898,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.4804983,8.5571404,6.0026765,15,-4,74.694878,0,1,1,2019,6,0,42,37,1,0,0,15.571208,15.571208,0,0,0,0,0,1,1,0,5.9889092,0,54.1,59.11,57.8,45.08,8.333333333333334,1,1,0,0,8,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 -2208,2725,4898,4897,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5412903,8.7293949,0,13,4,97.440277,0,2,2,2019,9,1,42,46,1,1,0,13.531261,13.531261,0,0,0,0,0,1,1,0,0,0,57.8,45.08,54.1,59.11,6.666666666666667,1,1,0,0,8,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 -2208,2725,4899,-9,4897,4898,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.63422,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 -2208,2725,4900,-9,4897,4898,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.8884,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,987.75,-55470.125,-11204.976,227307.75,142780.88,4208.7441 -2209,2726,4901,4904,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.00879,8.0942221,0,23,-7,-6.9067469,0,2,2,2019,10,1,26,27,1,1,0,11.370921,11.370921,0,0,0,0,0,1,1,0,2.2325394,0,30.77,64.34,52,55,8.333333333333334,1,1,0,0,10,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 -2209,2726,4902,-9,4901,4904,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.6813,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 -2209,2726,4903,-9,4901,4904,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-943.20471,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 -2209,2726,4904,4901,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,9.8681116,9.503643,0,9,7,9.6620722,0,-9,-9,2019,9,0,45,40,1,1,0,42.338459,42.338459,0,0,0,0,0,1,1,0,7.6457653,0,52,55,30.77,64.34,8,1,1,0,0,1,9,5,1,470.5,4833908,50350.645,1883964.3,473621.25,13498.287 -2210,2727,4905,4906,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,8.9501963,9.3172083,0,14,-8,-118.23598,0,2,2,2019,8,0,40,50,1,0,0,26.148561,26.148561,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.04,55.86,8.333333333333334,1,1,0,0,8,2,5,1,407,485006.25,166612.19,354138.06,233351.31,6945.1143 -2210,2727,4906,4905,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.0587521,9.2218018,0,16,8,62.046608,0,2,2,2019,9,0,48,48,1,0,0,27.222225,27.222225,0,0,0,0,0,1,1,0,.7952745,0,49.04,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,2,5,1,407,485006.25,166612.19,354138.06,233351.31,6945.1143 -2211,2728,4907,4908,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.1218967,5.113328,7,4,-90.63237,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,6.4567065,0,0,1,1,0,0,5.3215871,54,46,47,35,8,1,1,0,0,0,4,2,1,629.5,578052.13,77355.734,317342.38,0,1849.1807 -2211,2728,4908,4907,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,3.4855578,3.1117623,7,-4,110.02124,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,74.5,1,1,0,3.2938378,3.1798842,47,35,54,46,8.333333333333334,1,1,0,0,0,4,2,1,629.5,578052.13,77355.734,317342.38,0,1849.1807 -2212,2729,4909,-9,4913,4911,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.06555,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 -2212,2729,4910,-9,4913,4911,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.7689,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 -2212,2729,4911,4913,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.909481,8.910799,0,20,-2,-105.18458,0,2,1,2019,11,0,42,40,1,0,0,17.922184,17.922184,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.87,58.55,8.333333333333334,1,1,0,0,8,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 -2212,2729,4912,-9,4913,4911,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.8959,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 -2212,2729,4913,4911,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,7.1974311,7.1709137,0,20,2,-27.827755,0,2,2,2019,11,0,14,0,1,0,0,13.917234,13.917234,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.28,60.18,8.333333333333334,1,1,0,0,2,8,4,1,841.40002,226599.5,360332.69,0,0,3416.7026 -2213,2730,4914,4915,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6066365,7.4147525,0,42,-1,65.534431,0,2,3,2019,21,9,29,28,1,9,0,6.1334567,6.1334567,0,0,0,0,0,1,0,1,2.183208,0,45.16,51.93,54,54,3.333333333333333,1,1,0,0,10,9,4,1,1196,931546.75,253776.47,388560,7678.4277,2624.7654 -2213,2730,4915,4914,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.8552794,7.9770465,8.3715019,7,1,57.701431,0,-9,-9,2019,8,0,40,37,1,0,0,2.735337,2.735337,0,0,0,0,0,1,0,1,0,8.1120644,54,54,45.16,51.93,8,1,1,0,0,1,9,4,1,1196,931546.75,253776.47,388560,7678.4277,2624.7654 -2213,2731,4916,-9,4914,4915,1,1,25,0,0,0,1,1,-9,0,2,0,0,0,0,0,-957.37952,0,2,2,2019,17,6,0,38,3,6,1,0,0,0,0,0,0,0,1,0,1,0,0,33.3,59.44,-9,-9,3.333333333333333,1,1,1,0,1,9,1,1,476,-252208.31,0,0,0,1123.0021 -2214,2732,4917,4918,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.1476235,7.1954241,0,30,0,44.976559,0,2,2,2019,10,0,25,25,1,0,0,6.5355787,6.5355787,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,8,9,4,1,177,2351187,1396515.5,520318.47,0,1755.6917 -2214,2732,4918,4917,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.1613512,7.6970873,0,30,0,153.45096,0,2,2,2019,10,1,45,7,1,1,0,9.2618694,9.2618694,0,0,0,0,0,1,1,0,1.6170899,0,57.16,56.15,54.79,55.86,6.666666666666667,1,1,0,0,8,9,4,1,177,2351187,1396515.5,520318.47,0,1755.6917 -2214,2733,4919,-9,4917,4918,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1039.8627,-9,2,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,2.4438922,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,1364,-91634.813,0,0,0,305.83688 -2214,2734,4920,-9,4917,4918,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1044.5275,-9,2,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,1,2,9,1,1,596,0,0,0,0,118.69551 -2215,2735,4921,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1444321,7.8187652,0,0,0,-968.96643,0,3,1,2019,12,0,36,36,1,2,0,12.995855,12.995855,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,1,10,8,4,1,107,694241.63,97212.281,462608.34,0,1418.1549 -2215,2736,4922,-9,4921,-9,1,1,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1162.9344,-9,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,1,896,-92298.656,0,0,0,0 -2216,2737,4923,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,4.0829706,4.3237362,0,0,-915.5777,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3429232,4.0454264,43.19,46.11,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,136,414712.38,-37520.926,0,0,1087.7233 -2217,2738,4924,4925,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,8,-2,7.0119443,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,6.5094452,0,38.51,59.43,54.69,57.47,8.333333333333334,1,1,0,0,7,5,5,1,229,948308.88,0,645723.13,0,6045.0049 -2217,2738,4925,4924,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,9.8840446,9.611001,0,8,2,20.775623,0,1,1,2019,9,0,43,46,1,0,0,48.155525,48.155525,0,0,0,0,0,0,0,0,0,0,54.69,57.47,38.51,59.43,6.666666666666667,1,1,0,0,9,5,5,1,229,948308.88,0,645723.13,0,6045.0049 -2217,2739,4926,-9,4924,4925,1,1,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-1057.2177,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,1752,-129460.41,-76191.594,0,0,0 -2218,2740,4927,4928,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.9193449,7.8884668,0,13,-4,-28.823181,-9,3,3,2019,11,0,40,0,1,0,0,8.8396511,8.8396511,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,1,300.5,745749.69,51462.566,401844,0,4073.2795 -2218,2740,4928,4927,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.7360563,8.6319599,0,22,4,-3.5388606,-9,3,3,2019,9,0,35,0,1,0,0,21.104612,21.104612,0,0,0,0,0,0,0,0,6.8326521,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,7,5,1,300.5,745749.69,51462.566,401844,0,4073.2795 -2219,2741,4929,4930,-9,-9,1,0,54,0,1,0,3,3,-9,1,2,5.35393,5.5319118,3.0502017,37,-2,-36.373241,0,3,3,2019,14,4,30,0,1,4,0,.67863953,.67863953,0,0,0,0,27,1,0,1,0,3.368103,32.55,49.32,39.03,27.21,5,1,1,0,0,9,5,2,0,1267,73509.438,69258.336,92898.273,17564.984,1456.2959 -2219,2741,4930,4929,-9,-9,1,1,56,0,1,0,3,3,-9,0,1,6.3563952,6.8330698,5.7072134,37,2,70.724228,0,3,3,2019,25,12,60,50,1,12,0,1.2092534,1.2092534,0,0,0,0,7,1,0,1,0,5.6944771,39.03,27.21,32.55,49.32,6.666666666666667,1,1,0,0,9,5,2,0,1267,73509.438,69258.336,92898.273,17564.984,1456.2959 -2219,2742,4931,-9,4929,4930,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1093.0953,0,3,3,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,42.67,28.09,-9,-9,1.666666666666667,1,1,0,0,1,5,1,0,383,56585.32,0,0,0,2005.4958 -2220,2743,4932,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.1384993,8.0777254,0,0,0,-1004.601,0,2,2,2019,10,0,35,30,1,0,0,11.99907,11.99907,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,527,1458108,613433.63,80142.461,0,1445.0138 -2221,2744,4933,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.31616,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,14.159933,0,0,1,1,0,0,0,20.02,28.77,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,369,19966.025,0,100777.95,0,1063.8181 -2222,2745,4934,-9,4936,4935,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.5836,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,590.66669,84423.664,146371.17,185161.41,137711.66,3738.1304 -2222,2745,4935,4936,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.94876,9.1252365,0,6,1,1.2473278,0,3,2,2019,10,0,56,64,1,0,0,12.234701,12.234701,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.85,60.33,8.333333333333334,1,1,0,0,5,8,5,1,590.66669,84423.664,146371.17,185161.41,137711.66,3738.1304 -2222,2745,4936,4935,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,8.1392374,8.2146473,0,6,-1,-129.1494,0,3,2,2019,1,0,39,43,1,0,0,10.866032,10.866032,0,0,0,0,0,1,1,0,3.6139827,0,42.85,60.33,48.87,58.55,3.333333333333333,1,1,0,0,5,8,5,1,590.66669,84423.664,146371.17,185161.41,137711.66,3738.1304 -2223,2746,4937,-9,4938,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-966.35406,-9,2,-9,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,758,0,0,0,0,0 -2223,2747,4938,4939,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,8.6839628,8.9160051,0,4,-8,44.100117,0,3,2,2019,27,12,40,40,1,12,0,22.266098,22.266098,0,0,0,0,14.5,0,0,0,0,0,15.32,62.51,36.62,60.23,1.666666666666667,1,1,0,0,8,9,5,1,477.5,229830,-4631.3066,307638.94,141536.27,2874.7896 -2223,2747,4939,4938,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.7778788,7.8479509,0,4,8,68.92366,0,-9,-9,2019,12,3,36,40,1,3,0,6.4745836,6.4745836,0,0,0,0,0,0,0,0,6.8896918,0,36.62,60.23,15.32,62.51,3.333333333333333,1,1,0,0,3,9,5,1,477.5,229830,-4631.3066,307638.94,141536.27,2874.7896 -2224,2748,4940,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1144.35,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,46.76,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,405,291473.53,0,0,0,669.99023 -2225,2749,4941,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.5451646,7.646524,0,0,0,-930.16681,0,3,2,2019,8,1,31,27,1,1,0,6.7736335,6.7736335,0,0,0,0,0,1,1,0,0,0,58.17,31.47,-9,-9,8.333333333333334,2,3,0,1,10,4,3,1,173,265864.16,129864.69,0,0,547.38898 -2226,2750,4942,4943,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5324478,8.7546234,7.76615,29,-6,45.201054,0,3,3,2019,11,1,5,3,1,1,0,137.77678,137.77678,0,0,0,0,0,1,1,0,0,7.523222,44.68,56.37,43.71,56.91,8.333333333333334,1,1,0,0,8,4,5,1,647.5,1353427.3,1037571.9,283475.75,0,5834.1426 -2226,2750,4943,4942,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.3683991,8.0319529,8,6,-85.55024,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5509858,7.8888612,43.71,56.91,44.68,56.37,5,1,1,0,0,3,4,5,1,647.5,1353427.3,1037571.9,283475.75,0,5834.1426 -2227,2751,4944,4945,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.0492907,6.7162714,54,-5,136.8985,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,71.5,1,1,0,0,6.5751095,40.73,58.78,56.18,14.34,1.666666666666667,1,1,0,0,0,13,3,1,553,172541.56,373690.19,0,0,2610.21 -2227,2751,4945,4944,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.4745874,7.319159,54,5,-5.2553425,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,32.426804,0,0,1,1,0,0,7.2298007,56.18,14.34,40.73,58.78,1.666666666666667,1,1,0,0,0,13,3,1,553,172541.56,373690.19,0,0,2610.21 -2228,2752,4946,4947,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.2189198,8.1111603,0,39,-2,-22.426266,0,2,2,2019,8,1,32,32,1,1,0,14.817786,14.817786,0,0,0,0,0,0,0,0,0,0,54.89,48.86,60.12,54.8,8.333333333333334,1,1,0,0,8,7,5,1,684.5,1420372,832936.75,343466.38,52697.938,4800.1553 -2228,2752,4947,4946,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,9.040122,8.974124,0,39,2,112.15794,0,3,3,2019,5,0,35,35,1,0,0,34.611027,34.611027,0,0,0,0,0,0,0,0,2.6108656,0,60.12,54.8,54.89,48.86,10,1,1,0,0,8,7,5,1,684.5,1420372,832936.75,343466.38,52697.938,4800.1553 -2229,2753,4948,4949,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.3777637,8.247611,0,7,2,-152.03911,0,-9,-9,2019,8,0,41,37,1,0,0,16.11215,16.11215,0,0,0,0,0,1,1,0,0,0,50.68,52.42,57.16,56.15,5,1,1,0,0,8,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 -2229,2753,4949,4948,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7998657,8.9978905,0,7,-2,-1.3840455,0,1,1,2019,6,0,35,35,1,0,0,26.059755,26.059755,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.68,52.42,8.333333333333334,4,2,0,0,8,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 -2229,2753,4950,-9,4949,4948,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.31519,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 -2229,2753,4951,-9,4949,4948,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.0606,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,772.75,607564.88,392181,408704.69,186890.81,4264.8447 -2230,2754,4952,4953,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,47,4,61.055008,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,6.9251361,128.72893,57.31641,0,1,1,0,0,0,52,48,49.27,56.95,7,1,1,0,0,0,9,2,0,1293.5,587765.38,118135.98,422315.25,0,1737.92 -2230,2754,4953,4952,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.2930679,6.2606392,47,-4,78.315468,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,.51923436,6.2486291,49.27,56.95,52,48,5,1,1,0,0,3,9,2,0,1293.5,587765.38,118135.98,422315.25,0,1737.92 -2231,2755,4954,4955,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,8.1036549,8.2533321,31,6,4.3813548,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.1303151,8.2423553,44.47,34.13,37.35,51.04,8.333333333333334,1,1,0,0,0,10,3,1,1017.5,1236390.6,853391.56,428125.63,8062.5859,2606.3252 -2231,2755,4955,4954,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,31,-6,-159.34192,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8861594,0,37.35,51.04,44.47,34.13,8.333333333333334,1,1,0,0,0,10,3,1,1017.5,1236390.6,853391.56,428125.63,8062.5859,2606.3252 -2232,2756,4956,4957,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,44,-7,-134.62692,0,3,3,2019,6,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,64.65000000000001,24.67,42.46,49.11,3.333333333333333,1,1,0,0,4,6,3,1,1197.5,475039.66,283713.75,234883.31,0,1956.9557 -2232,2756,4957,4956,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.7079768,7.5250354,44,7,88.353439,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3868918,7.7084417,42.46,49.11,64.65000000000001,24.67,10,1,1,0,0,0,6,3,1,1197.5,475039.66,283713.75,234883.31,0,1956.9557 -2232,2757,4958,-9,4956,4957,1,1,35,0,0,0,1,1,-9,0,4,9.1401043,8.9572802,0,0,0,-1097.4688,-9,2,2,2019,10,0,40,0,1,1,0,18.977486,18.977486,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,6,5,1,2049,479221.06,247359.45,0,0,4439.8516 -2233,2758,4959,-9,4962,4961,1,0,16,0,2,1,2,0,0,0,4,0,3.0133777,2.8878608,0,0,-938.30804,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.4720285,0,41.14,59.2,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 -2233,2758,4960,-9,4962,4961,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.95923,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 -2233,2758,4961,4962,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.2099667,9.2723703,0,9,0,-39.972462,0,3,3,2019,3,1,47,40,1,1,0,24.941294,24.941294,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.94,59.6,8.333333333333334,1,1,0,0,10,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 -2233,2758,4962,4961,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,9.1585503,9.1425648,0,9,0,13.077712,0,2,2,2019,10,3,45,44,1,3,0,18.940966,18.940966,0,0,0,0,0,0,0,0,0,0,46.94,59.6,54.79,55.86,5,1,1,0,0,10,8,5,1,311.25,1071573.5,711386.38,626795.44,182789.84,6365.6333 -2234,2759,4963,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.7874613,7.6791043,0,0,0,-948.86975,0,2,3,2019,25,12,38,36,1,12,0,6.822762,6.822762,0,0,0,0,14.5,1,1,0,0,0,20.72,56.86,-9,-9,3.333333333333333,1,1,0,0,7,7,3,0,593,176265.13,29482.547,0,0,658.35522 -2234,2760,4964,-9,4965,-9,1,1,24,0,0,0,2,2,-9,0,4,7.4689803,7.7090993,0,0,0,-971.13727,-9,2,-9,2019,10,0,40,0,1,0,1,6.031889,6.031889,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,1,7,3,0,266,-135543.66,68748.852,0,0,1437.3307 -2234,2761,4965,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,3.9758389,3.82427,0,0,-924.74695,-9,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,3.6589844,45.35,28.09,-9,-9,3.333333333333333,1,1,0,1,0,7,2,0,611,146799.98,0,0,0,585.35754 -2235,2762,4966,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.0651898,6.6750026,0,0,0,-928.90448,-9,2,-9,2019,6,0,18,0,1,0,0,6.755311,6.755311,0,0,0,0,0,1,1,0,0,0,57.98,39.85,-9,-9,5,1,1,0,0,12,7,2,0,231,-114446.47,46313.105,0,0,478.76913 -2236,2763,4967,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,7.5709457,7.423944,0,0,0,-1042.0469,0,2,3,2019,10,1,43,38,1,1,0,4.5894151,4.5894151,0,0,0,0,0,0,0,0,2.4036541,0,48.03,37.39,-9,-9,8.333333333333334,1,1,0,0,12,2,3,1,1010,755324.63,202381.41,166738.72,133695.69,931.07269 -2237,2764,4968,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.2955256,8.2885733,7.7060161,0,0,-964.96283,0,2,1,2019,13,4,47,47,1,4,0,3.976424,3.976424,0,0,0,0,0,1,1,0,8.8820829,6.8377862,43.17,59.99,-9,-9,6.666666666666667,1,1,0,0,12,8,4,1,804,1646964.6,1266441,229883.56,29822.953,5187.957 -2238,2765,4969,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.181778,7.0682859,0,0,-997.47607,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.0833597,26.42,28.78,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,698,-12193.557,0,0,0,1116.303 -2239,2766,4970,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.3974471,6.7830124,0,0,-910.18372,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.912559,6.5749297,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,250,245602.17,247453.61,347241.19,0,1102.0278 -2240,2767,4971,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,0,7.1535497,7.3963451,0,0,-930.09949,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,6.9013748,0,16.31,59.27,-9,-9,1.666666666666667,1,1,1,0,0,9,2,1,86,604770.75,267718.91,321770.97,18370.547,757.64349 -2241,2768,4972,4975,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.3873653,9.0211773,0,20,0,-21.814547,0,2,3,2019,7,0,35,35,1,0,0,19.853081,19.853081,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.44,50.17,8.333333333333334,1,1,0,0,13,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 -2241,2768,4973,-9,4975,4972,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-806.3847,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,4,2,-9,0,0,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 -2241,2768,4974,-9,4975,4972,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-967.82172,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 -2241,2768,4975,4972,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.5676599,7.4216194,0,20,0,64.894165,0,2,2,2019,6,0,27,26,1,0,0,5.5567942,5.5567942,0,0,0,0,14.5,1,1,0,0,0,49.44,50.17,57.33,53.46,8.333333333333334,3,4,0,0,13,7,4,1,970.25,68931.594,21007.482,0,0,3325.1719 -2242,2769,4976,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.9019876,8.0258579,0,0,0,-950.91925,0,-9,-9,2019,7,0,38,40,1,0,0,10.31208,10.31208,0,0,0,0,2,0,0,0,2.1544545,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,929,330813.59,50724.77,140464.5,56701.496,1192.0138 -2243,2770,4977,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.8717785,8.7742023,0,0,0,-849.46179,-9,-9,-9,2019,8,0,37,0,1,0,0,20.909674,20.909674,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,143,1759733,1324115.4,267642.22,65.632492,2339.2346 -2244,2771,4978,-9,4980,4979,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.0092,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 -2244,2771,4979,4980,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.4950552,8.5547953,0,9,-5,48.443737,0,2,3,2019,10,2,36,36,1,2,0,17.681465,17.681465,0,0,0,0,0,1,1,0,0,0,46.63,59.72,48.87,58.55,8.333333333333334,1,1,0,0,11,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 -2244,2771,4980,4979,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4028196,8.1234102,0,9,5,228.47102,0,2,-9,2019,8,0,21,23,1,0,0,20.423203,20.423203,0,0,0,0,0,1,1,0,0,0,48.87,58.55,46.63,59.72,8.333333333333334,1,1,0,0,12,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 -2244,2771,4981,-9,4980,4979,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.08057,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,735.25,247156.09,44285.008,167118.84,120701.88,3506.0813 -2245,2772,4982,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.3696585,7.7016845,4.5980358,0,0,-864.86316,0,2,2,2019,12,0,30,30,1,0,0,6.1164703,6.1164703,0,0,0,0,0,1,1,0,0,4.9942355,38.01,34.13,-9,-9,5,1,1,0,0,11,2,3,0,776,71445.422,-13535.567,98113.461,34045.906,1229.785 -2246,2773,4983,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.5781918,6.7273436,0,0,-1002.9705,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,6.7299566,6.3903737,45.99,46.68,-9,-9,5,1,1,0,0,0,2,2,1,352,606850.13,204602.05,158112.56,0,1133.7246 -2247,2774,4984,4986,-9,-9,1,1,40,0,1,0,2,2,-9,0,5,8.1921053,7.9266624,0,1,-1,-42.127831,-9,1,2,2019,8,0,40,0,1,0,0,7.8026462,7.8026462,0,0,0,0,0,1,1,0,0,0,46.21,58.07,54.1,59.11,8.333333333333334,1,1,0,0,8,7,3,1,348,105229.3,394380.59,0,0,3425.7651 -2247,2774,4985,-9,4986,4984,1,1,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1033.7662,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,348,105229.3,394380.59,0,0,3425.7651 -2247,2774,4986,4984,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,8.3211021,7.8135834,0,1,1,-17.063681,-9,2,3,2019,8,0,40,0,1,0,0,10.173864,10.173864,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.21,58.07,6.666666666666667,1,1,0,0,8,7,3,1,348,105229.3,394380.59,0,0,3425.7651 -2247,2774,4987,-9,4986,4984,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.2948,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,3,1,348,105229.3,394380.59,0,0,3425.7651 -2248,2775,4988,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,7.6157374,7.3921781,0,0,-957.78851,0,3,-9,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,.51268786,7.5303073,34.63,23.69,-9,-9,5,1,1,0,0,0,6,3,1,1264,122714.27,-49142.355,0,0,2695.5879 -2249,2776,4989,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-915.32935,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,36.02,46.73,-9,-9,8.333333333333334,1,1,0,0,4,11,1,0,552,-13157.353,0,0,0,753.9137 -2250,2777,4990,4991,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,3,-5,0,0,2,3,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.01,60.12,23.68,49.98,3.333333333333333,1,1,0,0,0,10,1,1,592.5,-71826.313,-39301.234,0,0,1122.9186 -2250,2777,4991,4990,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,3,5,0,0,2,3,2019,24,9,0,42,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,23.68,49.98,32.01,60.12,1.666666666666667,1,1,0,0,13,10,1,1,592.5,-71826.313,-39301.234,0,0,1122.9186 -2250,2778,4992,-9,4990,4991,1,1,19,0,0,1,3,0,0,1,4,0,0,0,0,0,-1042.4009,-9,3,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,257,-96458.172,0,0,0,142.68182 -2251,2779,4993,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.9302883,6.8708334,0,0,-871.63062,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4666758,6.717083,52.92,55.55,-9,-9,10,1,1,0,0,4,13,2,1,1678,192407.59,142715.5,113103.03,30147.365,1743.0602 -2252,2780,4994,4995,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,6,0,-11.901447,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3459935,0,53.98,50.87,54.2,57.49,8.333333333333334,1,1,0,0,4,12,3,1,312.5,1659857.3,1057143.4,141559.75,0,1241.026 -2252,2780,4995,4994,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.8065424,8.0713997,6,0,-21.330597,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.2196205,7.5802212,54.2,57.49,53.98,50.87,8.333333333333334,1,1,0,0,3,12,3,1,312.5,1659857.3,1057143.4,141559.75,0,1241.026 -2253,2781,4996,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.0669479,6.9621015,0,0,0,-968.22076,0,2,-9,2019,14,2,25,0,1,2,0,5.0481429,5.0481429,0,0,0,0,0,1,1,0,0,0,31.46,57.32,-9,-9,6.666666666666667,3,4,0,0,2,8,2,0,1983,159938.7,-6877.5479,0,0,2016.7804 -2254,2782,4997,4999,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.4438696,8.3979359,0,23,0,-171.48428,0,3,3,2019,3,0,7,39,1,0,0,92.478981,92.478981,0,0,0,0,0,1,1,0,0,0,56.78,41.51,58.94,51.31,8.333333333333334,3,4,0,1,9,8,5,0,371.33334,33709.348,62521.816,93622.594,47582.734,3214.6262 -2254,2782,4998,-9,4997,4999,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-998.72919,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.33,51.29,-9,-9,8.333333333333334,3,4,0,0,2,8,5,0,371.33334,33709.348,62521.816,93622.594,47582.734,3214.6262 -2254,2782,4999,4997,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.7433009,7.4382949,0,25,0,39.481987,0,2,2,2019,11,0,20,20,1,2,0,12.753429,12.753429,0,0,0,0,0,1,1,0,0,0,58.94,51.31,56.78,41.51,8.333333333333334,3,4,0,0,8,8,5,0,371.33334,33709.348,62521.816,93622.594,47582.734,3214.6262 -2255,2783,5000,5001,-9,-9,1,0,39,0,4,0,2,2,-9,0,3,6.979104,7.041749,0,16,-1,-11.350878,0,-9,-9,2019,10,0,17,11,1,0,0,6.8340034,6.8340034,0,0,0,0,0,1,1,0,2.0457971,0,46.56,50.26,49.35,59.64,3.333333333333333,1,1,0,0,7,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 -2255,2783,5001,5000,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,8.8225746,8.7939005,0,16,1,-107.29565,0,2,1,2019,12,1,60,63,1,1,0,12.356048,12.356048,0,0,0,0,0,1,1,0,3.4934087,0,49.35,59.64,46.56,50.26,6.666666666666667,2,3,0,0,11,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 -2255,2783,5002,-9,5000,5001,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.80115,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 -2255,2783,5003,-9,5000,5001,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.0455,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.17438246,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 -2255,2783,5004,-9,5000,5001,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-894.3689,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 -2255,2783,5005,-9,5000,5001,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-915.96661,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,0,390.83334,383073.28,70439.297,360396.19,123697.01,3583.7183 -2256,2784,5006,-9,5007,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-874.11993,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1492.5,-87975.492,-25957.57,0,0,2331.8457 -2256,2784,5007,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,6.8096957,6.5192571,0,0,0,-975.89355,0,-9,-9,2019,11,0,17,17,1,0,0,5.2018514,5.2018514,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,9,2,0,1492.5,-87975.492,-25957.57,0,0,2331.8457 -2257,2785,5008,5009,-9,-9,1,0,25,1,2,0,2,2,-9,1,4,6.9410677,6.8095913,0,5,-3,-82.878815,0,2,2,2019,10,0,16,35,1,0,0,6.084579,6.084579,0,0,0,0,14.5,1,1,0,0,0,51.83,57.2,44.19,58.01,8.333333333333334,1,1,0,0,4,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 -2257,2785,5009,5008,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.7271338,8.6076851,0,5,3,46.946743,0,-9,-9,2019,11,1,47,48,1,1,0,13.586498,13.586498,0,0,0,0,2,1,1,0,0,0,44.19,58.01,51.83,57.2,6.666666666666667,1,1,0,0,9,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 -2257,2785,5010,-9,5008,5009,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.03967,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 -2257,2785,5011,-9,5008,5009,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.7438,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1166.5,482271.13,65756.148,271687.59,0,3764.1011 -2258,2786,5012,5013,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.9008784,6.2483792,53,-4,12.053936,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6993561,57.33,53.46,57.33,53.46,10,1,1,0,0,0,7,3,1,1004,1200934,637362.38,279910.06,0,3032.7742 -2258,2786,5013,5012,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.0401068,7.6016121,53,4,14.684739,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4495878,7.9675775,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,7,3,1,1004,1200934,637362.38,279910.06,0,3032.7742 -2259,2787,5014,-9,5015,5017,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1056.6993,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 -2259,2787,5015,5017,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,8,-10,-201.53406,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 -2259,2787,5016,-9,5015,5017,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.5426,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 -2259,2787,5017,5015,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,5.4792633,5.2997313,0,21,10,-28.701952,0,2,2,2019,9,0,40,24,1,1,0,.58385926,.58385926,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,1,8,2,0,782,200886.53,21222.191,0,0,1504.9314 -2259,2787,5018,-9,5015,5017,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.3008,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,782,200886.53,21222.191,0,0,1504.9314 -2259,2788,5019,-9,5015,5017,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1130.7206,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,1,8,2,0,223,0,0,0,0,-162.81168 -2260,2789,5020,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-861.0423,0,-9,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,22.53,48.82,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,274,-470454.19,0,0,0,1010.8505 -2261,2790,5021,-9,5025,5026,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1121.8693,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 -2261,2790,5022,-9,5025,5026,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.89081,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 -2261,2790,5023,-9,5025,5026,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-965.23822,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 -2261,2790,5024,-9,5025,5026,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-820.2807,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 -2261,2790,5025,5026,-9,-9,1,0,42,0,4,0,1,1,-9,0,5,0,0,0,6,0,-44.145107,-9,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,61.85,36.73,8.333333333333334,1,1,0,0,10,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 -2261,2790,5026,5025,-9,-9,1,1,42,0,4,0,1,1,-9,0,2,8.8940458,9.1294394,0,6,0,-82.966156,-9,2,2,2019,9,1,35,0,1,1,0,25.468843,25.468843,0,0,0,0,0,1,1,0,2.7569547,0,61.85,36.73,57.06,57.76,8.333333333333334,2,3,0,0,11,8,4,1,911.83331,907996.63,428017.13,590375.63,194315.05,3420.4419 -2262,2791,5027,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,0,0,0,9,0,0,1,1,2,2019,7,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,4.965414,0,57.16,56.15,51,57,8.333333333333334,1,1,0,0,10,8,1,1,693,0,0,0,0,97.831039 -2263,2792,5028,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-920.89587,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,-9,-9,10,1,1,0,0,0,8,1,0,272,397174.78,0,244851.11,0,1864.626 -2264,2793,5029,-9,5031,5030,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.60126,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 -2264,2793,5030,5031,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.3437366,9.198842,0,11,7,-9.2023945,0,2,1,2019,12,2,43,40,1,2,0,23.601223,23.601223,0,0,0,0,0,1,1,0,0,0,58.32,36.52,56.44,40.29,5,2,3,0,0,11,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 -2264,2793,5031,5030,-9,-9,1,0,32,0,2,0,1,1,-9,0,3,0,0,0,12,-7,-31.945831,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.44,40.29,58.32,36.52,8.333333333333334,2,3,0,0,2,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 -2264,2793,5032,-9,5031,5030,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.39056,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,4,1,816,426347.69,396165.13,318800.22,141478.75,3180.9207 -2265,2794,5033,5034,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.4157505,9.3475323,0,10,14,99.17804,0,2,1,2019,7,1,50,55,1,1,0,27.694635,27.694635,0,0,0,0,0,0,0,0,0,0,53.61,51.1,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,825.33331,1270769.6,1005114.8,296496.91,89403.367,4056.6606 -2265,2794,5034,5033,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,0,0,0,10,-14,91.000954,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,53.61,51.1,8.333333333333334,1,1,0,0,7,7,5,1,825.33331,1270769.6,1005114.8,296496.91,89403.367,4056.6606 -2265,2794,5035,-9,5034,5033,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.32245,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,825.33331,1270769.6,1005114.8,296496.91,89403.367,4056.6606 -2266,2795,5036,5037,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.0720615,7.6936355,7,9,-121.29116,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9829831,50.31,27.29,59.15,49.67,3.333333333333333,1,1,0,0,0,7,5,1,114.5,1978904.3,1204692.3,607982.81,0,4573.8369 -2266,2795,5037,5036,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6213255,8.6497498,0,36,0,43.570091,0,2,2,2019,6,0,70,70,1,0,0,11.038289,11.038289,0,0,0,0,56,1,1,0,0,0,59.15,49.67,50.31,27.29,8.333333333333334,1,1,0,0,6,7,5,1,114.5,1978904.3,1204692.3,607982.81,0,4573.8369 -2266,2796,5038,-9,5037,5036,1,0,22,0,0,0,1,1,0,0,4,0,7.9553151,8.0560274,0,0,-988.11005,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.9179993,0,45.34,57.55,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,1416,64445.98,0,0,0,1053.1011 -2267,2797,5039,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1092.4528,1,2,1,2019,10,3,0,5,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,7,8,1,0,190,405098.81,0,114343.46,33424.832,727.42932 -2268,2798,5040,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,6.1304355,5.4796419,0,0,-1088.7478,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,5.8020229,29.05,25.73,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,1015,281896.84,281587.34,128492.61,0,1363.0885 -2269,2799,5041,5042,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.5059376,8.6470022,0,4,4,-110.08353,0,-9,-9,2019,12,3,50,51,1,3,0,14.230786,14.230786,0,0,0,0,2,0,0,0,2.9982758,0,50.65,60.47,40.82,41.87,6.666666666666667,1,1,0,0,3,5,5,1,389,858066.88,907375,94487.281,39291.172,4960.1094 -2269,2799,5042,5041,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.8778992,8.9259758,0,4,-4,122.81512,0,-9,-9,2019,17,5,49,38,1,5,0,20.963598,20.963598,0,0,0,0,0,0,0,0,6.9407496,0,40.82,41.87,50.65,60.47,3.333333333333333,1,1,0,0,8,5,5,1,389,858066.88,907375,94487.281,39291.172,4960.1094 -2270,2800,5043,5044,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.1871881,5.7290707,59,0,-54.18679,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0623031,56.25,21.56,58.92,48.59,8.333333333333334,1,1,0,0,0,10,3,1,2191.5,1277784.3,640321.56,381828.56,0,2317.334 -2270,2800,5044,5043,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.0571289,7.9033861,59,0,-32.855705,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.7593198,58.92,48.59,56.25,21.56,8.333333333333334,1,1,0,0,0,10,3,1,2191.5,1277784.3,640321.56,381828.56,0,2317.334 -2271,2801,5045,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,3.1098089,3.5741608,0,0,-870.73792,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.7776368,3.731456,51,46,-9,-9,8,1,1,0,0,0,6,2,1,788,50325.75,-106649.13,0,0,770.84851 -2272,2802,5046,5047,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,8.1833611,8.3016472,0,3,-3,36.606888,0,-9,2,2019,15,5,38,40,1,5,0,14.436377,14.436377,0,0,0,0,0,0,0,0,3.7531936,0,56.01,47.11,57.16,56.15,10,1,1,0,0,8,2,5,1,304.5,28734.773,-11579.254,0,0,3261.9453 -2272,2802,5047,5046,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.406332,8.1639738,0,3,3,-111.64967,0,-9,-9,2019,7,0,40,38,1,0,0,10.49383,10.49383,0,0,0,1.008745,0,0,0,0,2.043432,0,57.16,56.15,56.01,47.11,8.333333333333334,1,1,0,0,10,2,5,1,304.5,28734.773,-11579.254,0,0,3261.9453 -2273,2803,5048,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.9457507,5.7151833,0,0,-906.69922,0,3,3,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3003426,5.9519887,52.72,33.67,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,916,202275.95,-5752.8369,0,0,509.28354 -2274,2804,5049,5050,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.3275566,7.0310488,49,1,-24.885406,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.7240601,5.337666,50.23,39.27,46,49.02,6.666666666666667,1,1,0,0,0,4,4,1,587.5,862893.38,751244.63,256053.22,0,5224.4722 -2274,2804,5050,5049,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.5049152,8.5780678,49,-1,-38.445961,0,3,1,2019,11,1,0,0,4,1,0,0,0,0,0,10.809917,0,2,1,1,0,7.6658072,8.1976824,46,49.02,50.23,39.27,6.666666666666667,1,1,0,0,0,4,4,1,587.5,862893.38,751244.63,256053.22,0,5224.4722 -2275,2805,5051,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,4.485105,4.4572053,0,0,-1081.3391,0,3,2,2019,16,5,0,0,4,5,0,0,0,1,0,11.708366,0,0,1,1,0,6.314496,4.4307108,51.74,37.04,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,822,-258452.88,0,0,0,1273.7225 -2275,2806,5052,-9,5051,-9,1,0,60,0,0,0,1,1,-9,0,4,7.9283051,7.7152686,0,0,0,-1018.1351,0,3,2,2019,7,0,6,0,1,0,0,57.65287,57.65287,0,0,0,0,7,1,1,0,1.64335,0,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,163,330500.75,198564.56,77622.898,0,1668.9333 -2276,2807,5053,5054,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5507412,8.4949369,0,1,-1,76.354996,-9,2,2,2019,10,1,45,0,1,1,0,10.077408,10.077408,0,0,0,0,0,0,0,0,0,0,53.42,52.33,51.73,58.82,8.333333333333334,1,1,0,1,8,9,5,1,703,-2329.8281,32541.184,0,0,3424.9573 -2276,2807,5054,5053,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.3851442,8.1018448,0,1,1,-31.956072,-9,2,2,2019,7,0,35,0,1,0,0,10.45552,10.45552,0,0,0,0,0,0,0,0,0,0,51.73,58.82,53.42,52.33,8.333333333333334,1,1,0,1,6,9,5,1,703,-2329.8281,32541.184,0,0,3424.9573 -2277,2808,5055,5056,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,7.9289765,8.5479164,7.7144461,33,4,-31.090021,0,2,2,2019,12,0,38,38,1,0,0,8.0287609,8.0287609,0,0,0,0,0,1,1,0,0,7.9186568,60.83,39.98,40.48,60.05,5,1,1,0,0,11,4,5,1,790,425692.5,308618.94,261031.63,173568.42,3966.0342 -2277,2808,5056,5055,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4589081,8.3608351,0,33,-4,-17.649426,0,2,2,2019,19,7,42,45,1,7,0,12.074325,12.074325,0,0,0,0,0,1,1,0,5.0210462,0,40.48,60.05,60.83,39.98,8.333333333333334,1,1,0,0,11,4,5,1,790,425692.5,308618.94,261031.63,173568.42,3966.0342 -2278,2809,5057,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.8889427,8.875432,5.4543314,0,0,-1002.6909,-9,3,2,2019,9,0,35,0,1,0,0,25.078098,25.078098,0,0,0,0,0,1,1,0,6.3198924,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,410,142061.44,194400.42,107265.63,98053,3107.3989 -2279,2810,5058,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,4.7387152,4.8934822,0,0,-1144.2471,-9,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6639094,5.0866265,54.04,60.47,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,948,927931.25,51076.051,373012.25,0,880.63947 -2280,2811,5059,5060,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,23,-2,-16.740965,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,60.02,56.42,8.333333333333334,1,1,0,0,0,7,5,1,475.33334,15956108,2250458,4002373.5,0,5526.8662 -2280,2811,5060,5059,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.6560869,9.5531864,0,23,2,32.540802,0,-9,-9,2019,7,0,46,55,1,0,0,39.697605,39.697605,0,0,0,0,0,0,0,0,3.5328915,0,60.02,56.42,49.04,55.86,8.333333333333334,1,1,0,0,13,7,5,1,475.33334,15956108,2250458,4002373.5,0,5526.8662 -2280,2811,5061,-9,5059,5060,1,0,17,0,0,1,2,0,0,0,4,0,3.3160582,3.5425146,0,0,-1024.7042,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.4516032,0,57.16,56.15,-9,-9,10,1,1,0,0,3,7,5,1,475.33334,15956108,2250458,4002373.5,0,5526.8662 -2280,2812,5062,-9,5059,5060,1,1,19,0,0,1,2,0,0,0,4,0,5.9992347,5.6755538,0,0,-1049.379,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.9303136,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,391,-316194.44,0,0,0,-98.510429 -2281,2813,5063,5064,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.8952823,7.6791286,6,-6,12.489806,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4423285,7.6298413,57.06,57.76,54.1,59.11,10,1,1,0,0,0,11,3,1,1147,1201793.6,334484.75,510949.91,0,3336.479 -2281,2813,5064,5063,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.0469503,6.1462011,6,6,-146.22603,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.7742205,6.2667375,54.1,59.11,57.06,57.76,10,1,1,0,0,0,11,3,1,1147,1201793.6,334484.75,510949.91,0,3336.479 -2282,2814,5065,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1096.0548,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3918362,0,62.25,48.33,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,483,0,0,0,0,760.47217 -2283,2815,5066,-9,-9,5068,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.9445,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,728.66669,176979.64,-6043.978,56913.359,57467.301,1535.5278 -2283,2815,5067,-9,-9,5068,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-933.69348,-9,-9,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,20.77,59.32,-9,-9,1.666666666666667,1,1,0,0,0,5,4,1,728.66669,176979.64,-6043.978,56913.359,57467.301,1535.5278 -2283,2815,5068,-9,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.8011742,8.7077799,0,0,0,-994.57318,0,2,3,2019,7,0,49,55,1,0,0,16.870298,16.870298,0,0,0,0,2,0,0,0,1.1892291,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,728.66669,176979.64,-6043.978,56913.359,57467.301,1535.5278 -2283,2816,5069,-9,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.4268408,8.4940462,0,0,0,-912.14929,0,3,3,2019,8,0,43,42,1,0,0,13.706992,13.706992,0,0,0,0,0,0,0,0,0,0,56.5,48.33,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,263,37065.277,116905.58,0,0,2083.6548 -2284,2817,5070,5071,-9,-9,1,0,44,0,2,0,2,2,-9,1,1,0,0,0,16,1,0,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34,28,48.41,48.31,6.666666666666667,2,3,0,0,0,2,1,1,299,0,0,0,0,1102.4949 -2284,2817,5071,5070,-9,-9,1,1,43,0,2,0,2,2,-9,1,2,0,0,0,16,-1,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.41,48.31,34,28,6.666666666666667,2,3,0,0,2,2,1,1,299,0,0,0,0,1102.4949 -2285,2818,5072,5073,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.9502201,8.9197769,0,25,-6,-76.190643,0,-9,-9,2019,10,0,45,45,1,0,0,16.404285,16.404285,0,0,0,0,0,0,0,0,3.1949594,0,47.28,59.36,55.96,49.93,6.666666666666667,1,1,0,0,11,8,5,1,540.5,2026267.9,1699566.6,252534.25,41965.547,4741.3687 -2285,2818,5073,5072,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.3860445,8.0925684,0,23,6,-131.70648,0,2,2,2019,7,0,38,43,1,0,0,17.318663,17.318663,0,0,0,0,0,0,0,0,3.4046738,0,55.96,49.93,47.28,59.36,6.666666666666667,3,4,0,0,11,8,5,1,540.5,2026267.9,1699566.6,252534.25,41965.547,4741.3687 -2285,2819,5074,-9,5072,5073,1,0,21,0,0,0,2,2,-9,0,4,8.0798521,7.9408836,0,0,0,-896.26697,0,1,2,2019,16,4,31,40,1,4,1,10.847134,10.847134,0,0,0,0,0,0,0,0,0,0,33.55,62.9,-9,-9,8.333333333333334,4,2,0,0,3,8,4,1,739,-129832.46,-81079.68,0,0,550.15533 -2285,2820,5075,-9,5072,5073,1,0,21,0,0,0,2,2,-9,0,4,7.7054157,7.8057351,0,0,0,-1006.7156,0,1,2,2019,5,0,25,25,1,0,1,8.1668425,8.1668425,0,0,0,0,0,0,0,0,1.3215258,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,4,8,3,1,156,-603231.5,0,0,0,1264.7655 -2286,2821,5076,5078,-9,-9,1,0,40,0,2,0,2,2,-9,1,3,0,0,0,6,1,17.095102,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,30.47,60.56,39.17,55.1,6.666666666666667,1,1,0,0,0,11,3,0,915.33331,-103420.55,33540.699,0,0,3828.179 -2286,2821,5077,-9,5076,5078,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.33264,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,915.33331,-103420.55,33540.699,0,0,3828.179 -2286,2821,5078,5076,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.8848629,8.6138134,0,6,-1,90.873215,0,3,2,2019,11,0,43,45,1,0,0,15.477059,15.477059,0,0,0,0,27,1,1,0,.86918133,0,39.17,55.1,30.47,60.56,8.333333333333334,1,1,0,0,7,11,3,0,915.33331,-103420.55,33540.699,0,0,3828.179 -2286,2822,5079,-9,5076,5078,1,1,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-990.88287,1,2,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.97424048,0,48,59,-9,-9,7,1,1,0,0,0,11,1,0,434,4474.9585,0,0,0,34.498417 -2287,2823,5080,5081,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,0,0,52,3,-136.93762,0,-9,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,2.2198956,7,1,1,0,0,0,52.82,53.97,63.41,31.88,8.333333333333334,1,1,0,0,7,7,2,0,718,684647.63,103871.58,226176.22,0,1073.8049 -2287,2823,5081,5080,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.3957577,4.8324876,52,-3,-55.636524,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.5280275,5.3420339,63.41,31.88,52.82,53.97,10,1,1,0,0,0,7,2,0,718,684647.63,103871.58,226176.22,0,1073.8049 -2288,2824,5082,5083,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,0,0,7,11,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,49.04,55.86,8,1,1,0,0,0,12,1,1,695,339548.78,0,159771.97,0,1993.4226 -2288,2824,5083,5082,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,7,-11,0,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,12.518435,0,74.5,1,1,0,2.3440154,0,49.04,55.86,55,45,6.666666666666667,1,1,0,0,0,12,1,1,695,339548.78,0,159771.97,0,1993.4226 -2289,2825,5084,5085,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.3072181,7.4896922,0,35,0,119.98724,0,2,2,2019,14,3,28,24,1,3,0,7.0375509,7.0375509,0,0,0,0,0,0,0,0,7.7061596,0,46.61,56.93,54,54,8.333333333333334,1,1,0,0,9,9,5,1,1434.5,1136449.5,405436.53,589936.69,0,4757.7881 -2289,2825,5085,5084,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.6988621,8.9762964,0,7,0,18.15114,0,-9,-9,2019,8,0,37,37,1,0,0,23.799751,23.799751,0,0,0,0,0,0,0,0,7.1788907,0,54,54,46.61,56.93,8,1,1,0,0,1,9,5,1,1434.5,1136449.5,405436.53,589936.69,0,4757.7881 -2289,2826,5086,-9,5084,5085,1,1,23,0,0,1,1,0,0,0,5,0,0,0,0,0,-778.23102,-9,1,1,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,2.3324738,0,36.58,66.89,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,545,345591.59,0,0,0,-393.86554 -2290,2827,5087,5088,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,52,-4,-91.054489,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7382913,0,57.34,42.72,58.14,48.07,8.333333333333334,1,1,0,0,0,2,2,1,830.5,934554.94,395034.38,387924.41,0,2081.4824 -2290,2827,5088,5087,-9,-9,1,1,85,0,0,0,1,1,-9,0,2,0,6.7295222,6.4961987,52,4,-110.55666,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2779493,6.5628181,58.14,48.07,57.34,42.72,8.333333333333334,1,1,0,0,6,2,2,1,830.5,934554.94,395034.38,387924.41,0,2081.4824 -2291,2828,5089,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,4.8274345,5.139461,0,0,-923.59613,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,4.2248211,0,0,1,1,0,.76589698,5.3956242,52,46,-9,-9,8,1,1,0,0,0,7,2,1,427,1249718.1,179873.09,924461.56,0,1350.8508 -2292,2829,5090,5091,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.2790279,8.3948431,3.2788703,9,2,100.84717,0,3,3,2019,8,0,38,38,1,0,0,11.789438,11.789438,0,0,0,0,7,1,1,0,6.1789107,0,58.32,50.22,46.16,58.62,6.666666666666667,1,1,0,0,10,10,5,1,1260,845113.88,287586.19,758277.25,206614.61,3411.9805 -2292,2829,5091,5090,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.5164628,7.9634976,7.5080442,9,-2,172.8196,0,2,2,2019,10,0,30,30,1,0,0,5.9439983,5.9439983,0,0,0,0,42,1,1,0,7.4401364,0,46.16,58.62,58.32,50.22,8.333333333333334,1,1,0,0,9,10,5,1,1260,845113.88,287586.19,758277.25,206614.61,3411.9805 -2292,2830,5092,-9,-9,-9,1,0,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1005.4665,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,10,1,1,577,-28736.795,0,0,0,1303.0536 -2293,2831,5093,5094,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,9.3181047,9.3671494,0,23,-4,-70.212471,0,2,2,2019,9,0,36,40,1,0,0,37.990623,37.990623,0,0,0,0,0,0,0,0,6.2256336,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,8,13,5,1,932.33331,1330155.5,784484.38,256589.84,0,5740.2725 -2293,2831,5094,5093,-9,-9,1,1,51,0,3,0,2,2,-9,0,5,8.9387217,8.4598389,0,26,4,-8.3800669,0,3,3,2019,6,0,45,40,1,0,0,16.733,16.733,0,0,0,0,0,0,0,0,7.2742319,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,8,13,5,1,932.33331,1330155.5,784484.38,256589.84,0,5740.2725 -2293,2831,5095,-9,5093,5094,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.2754,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,932.33331,1330155.5,784484.38,256589.84,0,5740.2725 -2294,2832,5096,5097,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.749404,7.8835135,0,9,1,-27.613327,0,2,2,2019,17,7,23,33,1,7,0,16.543537,16.543537,0,0,0,0,0,1,1,0,.38862634,0,31.63,60.92,50,57,8.333333333333334,1,1,0,0,12,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 -2294,2832,5097,5096,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.9585519,8.558527,0,9,-1,29.101357,0,2,2,2019,10,0,37,37,1,1,0,10.326471,10.326471,0,0,0,0,0,1,1,0,0,0,50,57,31.63,60.92,7,1,1,0,0,1,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 -2294,2832,5098,-9,5096,5097,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.3506,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 -2294,2832,5099,-9,5096,5097,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.18182,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1343.75,103188.24,20735.199,194680.7,150912.39,2619.084 -2295,2833,5100,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.5992169,7.8110509,0,0,-991.60034,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.380981,7.3294001,55.26,42.1,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,151,562350.75,301756.06,271086.53,0,2225.2578 -2296,2834,5101,-9,-9,5102,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.72308,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,928.5,-26297.002,0,0,0,1931.5039 -2296,2834,5102,-9,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.0501776,8.2238512,0,0,0,-1109.6527,0,-9,-9,2019,12,0,60,38,1,0,0,6.8383346,6.8383346,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,928.5,-26297.002,0,0,0,1931.5039 -2297,2835,5103,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.9259605,7.0100117,0,0,-1002.9743,0,1,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.1297765,7.0946012,54.49,23.82,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,196,-2748.449,20734.395,258324.41,0,1439.2974 -2297,2836,5104,-9,5103,-9,1,0,43,0,0,0,1,1,1,0,2,8.3203001,7.912653,0,0,0,-964.58533,-9,1,-9,2019,20,6,30,0,1,6,0,13.227113,13.227113,0,0,0,0,0,1,1,0,0,0,24.45,55.43,-9,-9,5,1,1,0,0,7,9,4,1,224,-110359.06,0,0,0,1763.8043 -2298,2837,5105,5106,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.9868298,8.8371401,0,25,7,113.1755,0,3,2,2019,9,0,52,48,1,0,0,13.438254,13.438254,0,0,0,0,0,0,0,0,0,0,54.38,41.24,46.16,58.62,8.333333333333334,1,1,0,0,10,2,5,1,898.5,131416.38,222383.11,187335.06,65820.648,3747.8142 -2298,2837,5106,5105,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.484807,8.3500204,0,24,-7,-95.456001,0,3,3,2019,10,0,34,36,1,0,0,13.679425,13.679425,0,0,0,0,2,0,0,0,0,0,46.16,58.62,54.38,41.24,6.666666666666667,1,1,0,0,9,2,5,1,898.5,131416.38,222383.11,187335.06,65820.648,3747.8142 -2299,2838,5107,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.2975807,7.960598,0,0,-1029.9587,0,-9,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.1716056,8.1767731,65.39,38.76,-9,-9,10,1,1,0,0,0,5,4,1,252,1155848.5,446202.25,148391.52,0,1660.3413 -2300,2839,5108,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,5.8020387,5.8452644,0,0,-937.26947,0,2,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,6.096025,48.97,46.36,-9,-9,10,1,1,0,0,0,12,2,1,2180,179024.27,54889.637,0,0,1254.261 -2301,2840,5109,5110,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.3954763,8.1247683,0,2,2,-1.302572,0,-9,-9,2019,9,0,38,38,1,0,0,10.236777,10.236777,0,0,0,0,0,0,0,0,2.607271,0,54.69,57.47,55.79,52.62,8.333333333333334,1,1,0,0,1,2,4,1,1244.5,106627.81,-16021.726,0,0,2277.5435 -2301,2840,5110,5109,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.8218212,7.70997,0,2,-2,-18.087208,0,2,2,2019,6,0,39,38,1,0,0,7.828773,7.828773,0,0,0,0,0,0,0,0,4.072813,0,55.79,52.62,54.69,57.47,8.333333333333334,1,1,0,0,5,2,4,1,1244.5,106627.81,-16021.726,0,0,2277.5435 -2302,2841,5111,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.7272043,8.7247715,0,0,-979.91083,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,6.7889838,8.4585781,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,2,5,1,992,1517574.3,865074.88,195020.13,0,4595.0352 -2303,2842,5112,5114,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.323585,7.5448189,0,6,7,103.66896,0,-9,-9,2019,12,0,22,37,1,0,0,8.9773436,8.9773436,0,0,0,0,0,1,1,0,0,0,58.95,50.38,53.99,53.8,8.333333333333334,2,3,0,1,7,8,2,0,900.25,99205.047,0,0,0,3370.0259 -2303,2842,5113,-9,5114,5112,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.159,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,900.25,99205.047,0,0,0,3370.0259 -2303,2842,5114,5112,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.2955842,7.2799301,0,6,-7,-21.161966,0,3,3,2019,11,0,35,10,1,0,0,4.2941375,4.2941375,0,0,0,0,0,1,1,0,0,0,53.99,53.8,58.95,50.38,10,2,3,0,0,3,8,2,0,900.25,99205.047,0,0,0,3370.0259 -2303,2842,5115,-9,5114,5112,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1042.0609,-9,2,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.28,60.76,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,900.25,99205.047,0,0,0,3370.0259 -2304,2843,5116,-9,-9,-9,1,0,51,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1106.8445,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.96,37.93,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,214,0,0,0,0,827.29578 -2305,2844,5117,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-940.08234,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.55,40.15,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,2065,-481855.5,0,0,0,624.25446 -2306,2845,5118,-9,5121,5120,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.59528,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 -2306,2845,5119,-9,5121,5120,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.3832,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 -2306,2845,5120,5121,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.583971,8.7657318,0,9,7,-124.69899,0,1,2,2019,2,0,46,40,1,0,0,14.241722,14.241722,0,0,0,0,0,1,1,0,6.2003622,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,12,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 -2306,2845,5121,5120,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,8.441864,8.4866323,0,14,-7,112.45306,0,2,2,2019,6,0,34,29,1,0,0,18.609083,18.609083,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,12,12,5,1,370.75,686244.25,183277.39,356148,114557.79,4362.3735 -2307,2846,5122,-9,5124,5123,1,0,38,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.0285,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,22.13,57.85,-9,-9,0,1,1,1,1,5,8,1,0,830,-329881.56,0,0,0,911.31006 -2307,2847,5123,5124,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,3,3,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,16.097948,0,0,1,1,0,0,0,43.34,33.08,47.44,55.06,8.333333333333334,1,1,0,0,0,8,1,0,2972.5,79364.844,0,0,0,1620.2839 -2307,2847,5124,5123,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,3,-3,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.44,55.06,43.34,33.08,10,2,3,0,0,0,8,1,0,2972.5,79364.844,0,0,0,1620.2839 -2308,2848,5125,5126,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.851079,8.9001904,0,3,7,-142.44366,-9,-9,-9,2019,10,0,48,0,1,1,0,14.265884,14.265884,0,0,0,0,0,1,1,0,3.2061868,0,51,49,57.69,39.53,7,4,1,0,0,1,4,5,1,875.5,314847.56,10925.352,277337.34,138291.73,4769.7061 -2308,2848,5126,5125,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.0113316,6.8894548,0,3,-7,-70.502289,0,3,3,2019,11,0,24,24,1,0,0,4.7311149,4.7311149,0,0,0,0,0,1,1,0,7.2431355,0,57.69,39.53,51,49,6.666666666666667,1,1,0,0,10,4,5,1,875.5,314847.56,10925.352,277337.34,138291.73,4769.7061 -2309,2849,5127,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,5,0,7.5560088,7.3271775,0,0,-854.21924,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4531999,7.1839943,60.53,56.16,-9,-9,10,1,1,0,0,0,5,3,1,145,-3028.5576,71664.695,0,0,1578.194 -2310,2850,5128,5129,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,53,-4,62.361,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,16.315147,11.490331,0,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,9,2,1,1009.5,615437,145926.03,215223.38,0,2146.3076 -2310,2850,5129,5128,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.1712503,6.7359157,7,4,10.841895,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9002934,7.3056269,53,46,51,46,8,1,1,0,0,0,9,2,1,1009.5,615437,145926.03,215223.38,0,2146.3076 -2311,2851,5130,5132,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.1249228,8.4515142,0,12,-5,-29.489594,0,2,2,2019,12,0,37,37,1,0,0,13.322523,13.322523,0,0,0,0,0,1,1,0,0,0,47.38,47.02,46.48,53.76,6.666666666666667,1,1,0,0,11,1,4,1,654,379646.72,421358.97,223351.31,84416.906,3198.8391 -2311,2851,5131,-9,5132,5130,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-992.31512,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,4,1,654,379646.72,421358.97,223351.31,84416.906,3198.8391 -2311,2851,5132,5130,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.8813767,7.8525867,0,12,5,15.46675,0,3,3,2019,12,0,40,36,1,0,0,8.7343769,8.7343769,0,0,0,0,0,1,1,0,0,0,46.48,53.76,47.38,47.02,5,1,1,0,0,9,1,4,1,654,379646.72,421358.97,223351.31,84416.906,3198.8391 -2312,2852,5133,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.8739905,7.3253469,0,0,0,-1077.0588,-9,3,-9,2019,8,0,35,0,1,0,0,7.1708493,7.1708493,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,1,3,0,69,-77297.156,3167.7639,0,0,1275.7374 -2313,2853,5134,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.6598883,7.7528052,6.0037107,0,0,-974.87616,0,-9,-9,2019,12,0,36,30,1,0,0,5.6851382,5.6851382,0,0,0,0,7,1,0,1,5.8350334,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,564,0,0,0,0,1292.74 -2313,2853,5135,-9,5134,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1016.4922,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,54,-9,-9,6,1,1,-9,0,0,9,3,0,564,0,0,0,0,1292.74 -2314,2854,5136,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,0,0,0,0,-980.659,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.97,56.66,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,849,595226.31,0,223200.34,0,-109.03846 -2315,2855,5137,5138,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,9.2261848,9.440464,0,43,3,115.71043,0,-9,3,2019,23,11,45,0,1,11,0,23.545221,23.545221,0,0,0,0,27,1,1,0,0,0,25.25,34.71,19.01,22.64,3.333333333333333,1,1,0,1,8,7,5,0,227.5,3095454.5,1777413.6,993665.56,0,6742.0215 -2315,2855,5138,5137,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,43,-3,-74.421577,0,3,3,2019,33,12,0,20,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,25.25,34.71,1.666666666666667,1,1,0,1,10,7,5,0,227.5,3095454.5,1777413.6,993665.56,0,6742.0215 -2315,2856,5139,-9,5138,5137,1,0,32,0,0,0,2,2,-9,0,4,8.1342573,8.170989,0,0,0,-996.6275,0,3,3,2019,8,0,42,37,1,0,1,9.4400768,9.4400768,0,0,0,0,0,1,1,0,0,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,0,10,7,4,0,398,-141818.41,62872.219,0,0,1427.8085 -2316,2857,5140,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.9871712,8.0050821,0,0,0,-930.45288,0,2,-9,2019,12,0,35,35,1,0,0,10.812003,10.812003,0,0,0,0,0,0,0,0,0,0,50.27,48.86,-9,-9,5,1,1,0,1,9,7,4,0,291,295123.59,165019.41,0,0,1671.1063 -2316,2858,5141,-9,5140,-9,1,1,20,0,0,0,2,2,-9,0,4,6.8347216,6.7553892,0,0,0,-999.88312,0,2,-9,2019,11,0,40,40,1,2,1,3.4101717,3.4101717,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,3,7,2,0,2026,-96355.578,0,0,0,779.56055 -2317,2859,5142,5143,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,0,0,0,9,-3,-7.503243,0,-9,-9,2019,18,6,0,30,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,37.01,42.9,28.48,49.07,3.333333333333333,1,1,0,0,8,5,3,1,709.5,97016.109,0,91703.172,0,647.05859 -2317,2859,5143,5142,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5847716,7.6081562,0,9,3,84.400986,0,3,3,2019,22,9,16,16,1,9,0,13.535275,13.535275,0,0,0,0,0,0,0,0,0,0,28.48,49.07,37.01,42.9,8.333333333333334,1,1,0,0,10,5,3,1,709.5,97016.109,0,91703.172,0,647.05859 -2318,2860,5144,5145,-9,-9,1,1,48,0,3,0,1,1,-9,0,3,9.7410202,9.7949142,0,7,0,110.72427,0,2,2,2019,7,0,50,50,1,0,0,40.486477,40.486477,0,0,0,0,0,0,0,0,5.4785271,0,52.99,51.28,57.34,47.92,8.333333333333334,1,1,0,0,8,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 -2318,2860,5145,5144,-9,-9,1,0,48,0,3,0,1,1,-9,0,3,7.5851049,7.5381427,0,7,0,-15.380793,0,2,2,2019,7,0,15,7,1,0,0,15.976961,15.976961,0,0,0,0,0,0,0,0,7.8392024,0,57.34,47.92,52.99,51.28,8.333333333333334,1,1,0,0,8,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 -2318,2860,5146,-9,5145,5144,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.58655,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 -2318,2860,5147,-9,5145,5144,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.9954,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 -2318,2860,5148,-9,5145,5144,1,0,16,0,3,1,2,0,-9,0,1,0,0,0,0,0,-983.63525,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.58,42.22,-9,-9,8.333333333333334,1,1,0,0,2,8,5,1,741.40002,305321.63,117216.8,526576.38,331584.22,10658.785 -2319,2861,5149,5152,-9,-9,1,1,49,1,2,0,2,2,-9,0,3,8.8785772,8.8164234,0,7,8,-116.4297,0,-9,-9,2019,12,2,45,44,1,2,0,17.755899,17.755899,0,0,0,0,0,1,1,0,3.7576339,0,47.7,47.03,41.06,62.04,6.666666666666667,1,1,0,0,4,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 -2319,2861,5150,-9,5152,5149,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.3821,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 -2319,2861,5151,-9,5152,5149,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5182,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 -2319,2861,5152,5149,-9,-9,1,0,41,1,2,0,1,1,-9,0,4,8.1036777,7.9372702,0,7,-8,16.016525,0,2,2,2019,21,9,22,18,1,9,0,15.401823,15.401823,0,0,0,0,0,1,1,0,0,0,41.06,62.04,47.7,47.03,8.333333333333334,1,1,0,0,7,10,4,1,823.5,104592.05,124379.25,0,0,3151.927 -2320,2862,5153,5154,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,9.0430059,9.2017298,0,11,9,-95.338356,0,-9,-9,2019,7,0,36,40,1,0,0,21.958483,21.958483,0,0,0,0,0,0,0,0,3.0268388,0,57.06,57.76,48.18,61.8,8.333333333333334,1,1,0,0,11,2,5,1,642,301237.19,158177.86,335528.75,62633.188,5352.04 -2320,2862,5154,5153,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.9305596,8.3258743,7.2525668,17,0,79.025513,0,3,2,2019,10,2,31,37,1,2,0,9.9863338,9.9863338,0,0,0,0,0,0,0,0,7.8036246,0,48.18,61.8,57.06,57.76,8.333333333333334,1,1,0,0,13,2,5,1,642,301237.19,158177.86,335528.75,62633.188,5352.04 -2321,2863,5155,5156,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,8,0,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,50,49,7,2,3,0,1,0,6,1,1,329.5,30089.152,0,0,0,0 -2321,2863,5156,5155,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,30,0,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,48,48,7,2,3,1,1,0,6,1,1,329.5,30089.152,0,0,0,0 -2321,2864,5157,-9,5155,5156,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1029.6196,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,1,0,0,6,2,1,223,-260509.34,0,0,0,0 -2322,2865,5158,5159,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.8767824,8.9808846,0,8,1,-31.723591,0,-9,-9,2019,17,6,51,38,1,6,0,20.249258,20.249258,0,0,0,0,2,0,0,0,0,0,52.13,54.51,55.36,51.57,10,1,1,0,0,9,10,5,1,426,119006.67,40351.43,194254.67,159245.41,3951.4775 -2322,2865,5159,5158,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9179664,7.6557064,0,8,-1,-2.5222554,0,2,2,2019,9,0,40,16,1,0,0,8.9768925,8.9768925,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52.13,54.51,8.333333333333334,1,1,0,0,10,10,5,1,426,119006.67,40351.43,194254.67,159245.41,3951.4775 -2323,2866,5160,5162,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,7.9883552,7.5943208,0,7,-1,22.972067,0,2,2,2019,8,1,21,21,1,1,0,12.955904,12.955904,0,0,0,0,0,1,1,0,2.8204668,0,48.87,58.55,51.73,58.82,8.333333333333334,1,1,0,0,8,4,4,1,594,994933.06,566810,332095.47,32655.258,2651.0286 -2323,2866,5161,-9,5162,5160,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.9247,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,594,994933.06,566810,332095.47,32655.258,2651.0286 -2323,2866,5162,5160,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.1450253,8.4754124,7.4694805,7,1,-15.630996,0,1,1,2019,9,0,24,25,1,0,0,16.10722,16.10722,0,0,0,0,0,1,1,0,7.3313828,0,51.73,58.82,48.87,58.55,10,1,1,0,0,8,4,4,1,594,994933.06,566810,332095.47,32655.258,2651.0286 -2324,2867,5163,5164,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.3045464,8.3598385,0,5,4,-4.8884149,0,-9,-9,2019,15,4,40,33,1,4,0,10.88695,10.88695,0,0,0,0,0,1,1,0,0,0,37.13,55.9,57.33,53.46,8.333333333333334,1,1,0,0,5,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 -2324,2867,5164,5163,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,7.146348,7.1381311,0,5,-4,-33.745964,0,2,2,2019,12,0,16,14,1,0,0,8.7039413,8.7039413,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.13,55.9,8.333333333333334,1,1,0,0,6,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 -2324,2867,5165,-9,5164,5163,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.39703,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 -2324,2867,5166,-9,5164,5163,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.2762,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,578.75,275798.09,205327.47,126895.78,77886.156,2231.6948 -2325,2868,5167,5168,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.316699,7.4781985,0,7,-4,120.18208,0,1,2,2019,7,0,25,25,1,0,0,7.721324,7.721324,0,0,0,0,0,0,0,0,8.0297766,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,10,12,3,1,754.5,749712.19,427639.75,234922.81,0,3234.7559 -2325,2868,5168,5167,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.5625439,6.8871117,7,4,66.124588,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.6155934,6.9186153,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,8,12,3,1,754.5,749712.19,427639.75,234922.81,0,3234.7559 -2326,2869,5169,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.1441841,8.4328108,0,0,0,-999.40125,0,2,2,2019,11,0,50,48,1,0,0,9.0146465,9.0146465,0,0,0,0,0,1,1,0,0,0,39.76,59.88,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,322,325951.94,165463.7,99359.172,105868.41,2074.2629 -2327,2870,5170,5171,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.5295944,7.3887873,0,9,0,-60.963264,0,-9,-9,2019,10,0,30,30,1,0,0,8.1803923,8.1803923,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,57.16,56.15,10,1,1,0,0,10,4,5,1,598.5,537298.94,92079.453,203700.63,-4205.1494,3829.5537 -2327,2870,5171,5170,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9370937,8.7852058,0,37,0,-128.27896,0,3,3,2019,7,0,45,48,1,0,0,20.986744,20.986744,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,5,1,598.5,537298.94,92079.453,203700.63,-4205.1494,3829.5537 -2328,2871,5172,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.3902879,6.0625577,0,0,-1015.6536,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8789546,6.2150002,57.33,53.46,-9,-9,10,1,1,0,0,0,2,2,1,532,1712044.1,0,932168.56,0,589.35577 -2329,2872,5173,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.7115841,9.061636,5.4312916,0,0,-1015.0998,0,3,3,2019,13,1,85,80,1,1,0,7.3190389,7.3190389,0,0,0,0,0,0,0,0,0,5.8909545,33.37,60.58,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,65,1048443.6,125338.25,0,0,2833.2871 -2330,2873,5174,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1063.7327,0,3,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.14,47.56,-9,-9,3.333333333333333,1,1,1,0,2,4,1,0,262,0,0,0,0,2173.9443 -2330,2874,5175,-9,5174,-9,1,1,27,0,0,0,3,3,-9,0,4,0,0,0,0,0,-979.32544,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,1,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 -2330,2874,5176,-9,-9,5175,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1075.6147,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 -2330,2874,5177,-9,-9,5175,1,1,11,0,0,1,3,0,-9,0,3,0,0,0,0,0,-781.00287,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 -2330,2874,5178,-9,-9,5175,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1007.9259,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,2,0,694.25,-165268.67,0,0,0,414.76364 -2331,2875,5179,-9,5180,5181,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-982.34143,-9,1,1,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.38,43.2,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,820,464736.31,434137.78,303845.19,89691.508,3000.6086 -2331,2875,5180,5181,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,0,0,0,26,0,1.9232723,0,3,-9,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,34.06,49.24,64.26000000000001,39.17,5,2,3,0,1,0,8,4,1,820,464736.31,434137.78,303845.19,89691.508,3000.6086 -2331,2875,5181,5180,-9,-9,1,1,58,0,1,0,1,1,-9,0,3,8.9953775,8.9747143,0,26,9,114.86267,0,3,2,2019,20,6,41,48,1,6,0,18.685163,18.685163,0,0,0,0,0,1,1,0,0,0,64.26000000000001,39.17,34.06,49.24,1.666666666666667,4,2,0,0,8,8,4,1,820,464736.31,434137.78,303845.19,89691.508,3000.6086 -2331,2876,5182,-9,5180,5181,1,0,22,0,1,0,1,1,-9,0,5,7.7475066,7.2154241,0,0,0,-964.18286,0,1,1,2019,9,0,35,0,1,0,1,8.2923174,8.2923174,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,243,244814.97,-103511.69,0,0,876.77765 -2331,2877,5183,-9,5180,5181,1,1,24,0,1,0,1,1,-9,0,4,8.339222,7.903471,0,0,0,-1029.1727,0,1,1,2019,10,0,40,42,1,2,1,15.874189,15.874189,0,0,0,0,0,1,1,0,4.313046,0,49,58,-9,-9,7,2,3,0,0,1,8,4,1,771,0,0,0,0,1423.7677 -2332,2878,5184,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1049.1699,0,3,2,2019,25,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,41.67,33.58,-9,-9,3.333333333333333,1,1,0,1,2,1,1,1,596,3418.5544,0,0,0,465.65042 -2332,2879,5185,-9,5184,-9,1,0,25,0,0,0,2,2,-9,0,5,8.1132641,8.2485094,0,0,0,-1000.8713,0,3,3,2019,9,0,42,40,1,0,0,8.3530979,8.3530979,0,0,0,0,27,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,446,343488.34,0,0,0,1611.7076 -2333,2880,5186,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.8305802,7.993885,0,0,0,-1031.8262,-9,-9,-9,2019,25,10,38,0,1,10,0,8.2377243,8.2377243,0,0,0,0,0,0,0,0,0,0,22.71,62.69,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,368,-142159.06,45528.785,0,0,1081.7952 -2334,2881,5187,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.0655146,7.9379907,9,18,77.416252,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7642794,7.659071,51.65,44.35,51.41,56.15,8.333333333333334,1,1,0,0,7,10,3,1,605,939361.44,44813.465,521559.94,0,2447.2256 -2335,2882,5188,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.2632198,9.4910049,0,0,0,-1008.6205,0,1,2,2019,8,0,42,46,1,0,0,30.176334,30.176334,0,0,0,0,0,1,1,0,1.3131481,0,44.43,56.74,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,626,646272.81,458584.19,298985.53,41744.672,3647.5957 -2336,2883,5189,5190,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.6593986,7.3507318,42,-4,-47.329235,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1191053,7.6544256,54.2,57.49,61.43,43.34,8.333333333333334,1,1,0,0,4,5,4,1,538.5,2111235,1442188.9,237918.19,0,2717.9272 -2336,2883,5190,5189,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.1992188,8.2992249,42,4,7.8850036,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1038861,8.042017,61.43,43.34,54.2,57.49,10,1,1,0,0,2,5,4,1,538.5,2111235,1442188.9,237918.19,0,2717.9272 -2337,2884,5191,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.3332748,7.4794512,0,0,-1039.8964,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1347098,7.057313,54.92,45.17,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,972,607604.56,255579.17,239201.64,0,656.33832 -2338,2885,5192,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1912513,6.9528856,0,0,-1063.8424,0,2,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.7922306,7.0477443,40.4,58.62,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,938,457573.09,198184.91,327865.06,0,1841.6979 -2339,2886,5193,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.215,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.2228682,0,65.14,34.83,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,473,387866.09,0,329062.78,0,2231.748 -2340,2887,5194,5195,-9,-9,1,1,54,0,1,0,1,1,-9,1,2,8.3609715,7.9251733,0,7,9,24.444798,0,-9,-9,2019,4,2,28,0,1,2,0,14.694328,14.694328,0,0,0,0,0,1,1,0,0,0,45.52,22.54,46.91,59.62,6.666666666666667,1,1,0,0,3,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 -2340,2887,5195,5194,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,9.7390347,9.5668068,0,25,0,48.644051,0,2,2,2019,10,1,32,28,1,1,0,48.579567,48.579567,0,0,0,0,0,1,1,0,2.1169877,0,46.91,59.62,45.52,22.54,8.333333333333334,1,1,0,0,10,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 -2340,2887,5196,-9,5195,5194,1,0,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-1007.7831,-9,1,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.9269876,0,20.46,61.36,-9,-9,6.666666666666667,1,1,0,0,1,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 -2340,2887,5197,-9,5195,5194,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.2157,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,906.5,2508936.3,1484121.8,509909.88,0,6294.1694 -2341,2888,5198,5199,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0395031,7.9113126,0,4,-1,14.827069,0,2,2,2019,10,0,30,24,1,0,0,11.245914,11.245914,0,0,0,0,0,0,0,0,0,0,50.74,49.6,43.62,47.77,8.333333333333334,1,1,0,0,9,13,5,1,2552.5,592529,237205.91,177154.16,0,3199.7234 -2341,2888,5199,5198,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.2391109,8.2664032,0,4,1,100.92163,0,-9,-9,2019,11,0,49,49,1,0,0,9.9470663,9.9470663,0,0,0,0,0,0,0,0,0,0,43.62,47.77,50.74,49.6,6.666666666666667,1,1,0,0,11,13,5,1,2552.5,592529,237205.91,177154.16,0,3199.7234 -2342,2889,5200,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.7678204,7.7010508,0,0,0,-980.4472,0,2,1,2019,8,3,38,40,1,3,0,7.7064748,7.7064748,0,0,0,0,27,0,0,0,0,0,49.01,42.64,-9,-9,3.333333333333333,1,1,0,0,12,10,3,0,837,95539.305,-14075.476,226172.94,0,726.04224 -2343,2890,5201,5202,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,9.4455595,9.3708878,0,9,1,-101.25096,0,2,2,2019,9,2,38,47,1,2,0,32.172428,32.172428,0,0,0,0,0,0,0,0,0,0,59.3,39.29,58.05,54.52,8.333333333333334,1,1,0,0,9,11,5,0,422.5,2555969.5,2273112,202650.09,0,5712.3018 -2343,2890,5202,5201,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.0163689,8.9515381,0,9,-1,-44.683571,0,2,2,2019,8,0,40,40,1,0,0,24.628315,24.628315,0,0,0,0,7,0,0,0,1.657769,0,58.05,54.52,59.3,39.29,8.333333333333334,1,1,0,0,10,11,5,0,422.5,2555969.5,2273112,202650.09,0,5712.3018 -2344,2891,5203,5204,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8578286,7.8355265,0,21,-6,11.930002,0,3,3,2019,9,1,35,0,1,1,0,11.008002,11.008002,0,0,0,0,0,0,0,0,5.6975636,0,45.06,36.24,55.74,47.8,6.666666666666667,1,1,0,0,4,2,5,1,865.5,3042320.8,2584824.5,240304.25,0,3487.1155 -2344,2891,5204,5203,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,8.2100515,8.1938372,0,21,6,113.05033,0,2,2,2019,11,0,37,36,1,0,0,14.003242,14.003242,0,0,0,0,0,0,0,0,0,0,55.74,47.8,45.06,36.24,6.666666666666667,4,5,0,0,10,2,5,1,865.5,3042320.8,2584824.5,240304.25,0,3487.1155 -2345,2892,5205,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.6636462,7.9197621,0,0,-1044.2847,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9755678,8.1988354,56.18,45.82,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,34,1041040.7,515588.53,223889.8,119350.16,1706.8866 -2346,2893,5206,5207,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,10,-11,0,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.91,39.62,56.1,39.4,8.333333333333334,1,1,0,0,0,10,1,1,527,375178.34,0,201186.5,0,1325.1897 -2346,2893,5207,5206,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,0,0,10,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,39.4,49.91,39.62,6.666666666666667,1,1,0,0,0,10,1,1,527,375178.34,0,201186.5,0,1325.1897 -2347,2894,5208,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.5042238,8.2941418,0,0,0,-965.69824,-9,3,-9,2019,10,1,48,0,1,1,1,8.5243225,8.5243225,0,0,0,0,0,0,0,0,0,0,50.46,48.82,-9,-9,8.333333333333334,1,1,0,1,5,4,4,1,214,-387283.56,0,0,0,1695.7039 -2348,2895,5209,5210,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.292841,8.3805017,0,41,0,-119.26957,0,3,3,2019,6,0,34,32,1,0,0,15.9582,15.9582,0,0,0,0,0,0,0,0,8.2825909,0,56.95,46.69,35.95,53.97,6.666666666666667,1,1,0,0,9,7,5,1,811.5,2617355,1132831.3,1012136.5,0,5295.0586 -2348,2895,5210,5209,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3639832,8.3420944,0,41,0,26.305901,0,3,3,2019,15,3,26,30,1,3,0,14.615981,14.615981,0,0,0,0,0,0,0,0,6.4761052,0,35.95,53.97,56.95,46.69,6.666666666666667,1,1,0,0,10,7,5,1,811.5,2617355,1132831.3,1012136.5,0,5295.0586 -2349,2896,5211,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-898.7005,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.12,37.25,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1075,37663.477,0,0,0,1520.3361 -2350,2897,5212,5213,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.7720003,8.4875088,1,-1,-55.295071,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7447147,8.6540422,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,9,5,1,1048,2633187,1772964,514873.22,0,7314.6128 -2350,2897,5213,5212,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.1967478,8.2236786,36,1,-112.89346,-9,1,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7800417,8.3422794,54.69,57.47,57.06,57.76,10,1,1,0,0,6,9,5,1,1048,2633187,1772964,514873.22,0,7314.6128 -2351,2898,5214,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.0365105,5.3648682,0,0,-1095.6368,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7347479,60.29,52.11,-9,-9,10,1,1,0,0,0,11,2,0,687,-77192.078,0,0,0,940.1897 -2352,2899,5215,-9,5216,5218,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.4781,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 -2352,2899,5216,5218,-9,-9,1,0,39,1,4,0,1,1,-9,0,4,0,0,0,5,0,16.473267,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,2,3,0,1,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 -2352,2899,5217,-9,5216,5218,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-974.24622,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 -2352,2899,5218,5216,-9,-9,1,1,48,1,4,0,1,1,-9,0,5,8.3630438,8.0606642,0,5,9,-2.1890733,0,2,2,2019,6,0,30,0,1,0,0,12.429301,12.429301,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,2,3,0,1,5,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 -2352,2899,5219,-9,5216,5218,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1151.9561,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,567.59998,1254444.6,120357.91,1693687.3,998094.31,2375.7947 -2353,2900,5220,5221,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,4.7671108,4.4376597,60,-1,75.293198,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9300649,4.500802,58.47,34.16,60.91,30.83,10,1,1,0,0,0,5,2,1,484.5,457920.19,153958.17,136058.83,0,2064.4243 -2353,2900,5221,5220,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.2922473,7.4702573,60,1,-33.393852,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,5.48,1,1,0,4.4024515,7.40762,60.91,30.83,58.47,34.16,8.333333333333334,1,1,0,0,0,5,2,1,484.5,457920.19,153958.17,136058.83,0,2064.4243 -2353,2901,5222,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.2316809,6.2600336,0,0,-1001.8301,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.3144436,6.63168,53,46,-9,-9,7,1,1,0,0,0,5,2,1,335,171308.03,102872.68,98647.859,0,711.39557 -2354,2902,5223,5224,-9,-9,1,1,59,0,0,0,3,3,-9,1,4,0,5.7611051,5.9950113,43,3,-104.10915,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0835123,55,53,16.04,23.99,8,1,1,0,0,0,10,2,0,2196.5,854109.63,106191.47,306740.59,0,2174.5698 -2354,2902,5224,5223,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,43,-3,33.735806,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,16.04,23.99,55,53,6.666666666666667,1,1,0,0,0,10,2,0,2196.5,854109.63,106191.47,306740.59,0,2174.5698 -2355,2903,5225,5226,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.3799648,8.6577559,0,3,-6,-59.547096,0,1,1,2019,10,0,87,50,1,0,0,6.9731641,6.9731641,0,0,0,0,0,0,0,0,7.1183581,0,45.91,46.49,53.57,46.8,6.666666666666667,1,1,0,0,9,10,5,0,1075.5,264805.97,-53700.137,541443.5,257458.53,5296.377 -2355,2903,5226,5225,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.9486427,8.929944,0,3,6,39.390846,0,-9,-9,2019,10,0,40,60,1,0,0,17.868177,17.868177,0,0,0,0,0,0,0,0,2.2443557,0,53.57,46.8,45.91,46.49,6.666666666666667,1,1,0,0,2,10,5,0,1075.5,264805.97,-53700.137,541443.5,257458.53,5296.377 -2356,2904,5227,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.9874997,6.8194818,0,0,-942.51556,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8281455,6.8934731,65.13,21.6,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,680,592200.5,306486.41,259967,0,1583.2209 -2357,2905,5228,5229,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.4958639,8.4580145,0,12,-8,-77.504509,0,1,2,2019,6,0,70,60,1,0,0,9.1147346,9.1147346,0,0,0,0,0,1,1,0,0,0,54.74,57.22,52,55,8.333333333333334,1,1,0,0,4,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 -2357,2905,5229,5228,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7995348,8.659565,0,3,8,-1.0630695,-9,-9,-9,2019,9,0,40,0,1,1,0,21.739609,21.739609,0,0,0,0,0,1,1,0,1.8426827,0,52,55,54.74,57.22,7,1,1,0,0,1,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 -2357,2905,5230,-9,5228,5229,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.6531,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 -2357,2905,5231,-9,5228,5229,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.60437,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,0,642,548015.56,385702.5,268874.41,175478.69,4239.9624 -2358,2906,5232,-9,5233,5235,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.37646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1704.25,564442.63,0,0,0,4447.3516 -2358,2906,5233,5235,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.1815386,7.8303862,0,4,-3,13.115651,0,2,3,2019,11,0,22,22,1,2,0,14.751387,14.751387,0,0,0,0,0,0,0,0,0,0,48,57,57.16,56.15,7,1,1,0,0,1,9,5,1,1704.25,564442.63,0,0,0,4447.3516 -2358,2906,5234,-9,5233,5235,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.4646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1704.25,564442.63,0,0,0,4447.3516 -2358,2906,5235,5233,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,9.0647182,8.967103,0,4,3,84.770363,0,1,2,2019,9,0,40,35,1,0,0,29.245117,29.245117,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48,57,10,1,1,0,0,9,9,5,1,1704.25,564442.63,0,0,0,4447.3516 -2359,2907,5236,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1081.3632,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.53,45.57,-9,-9,1.666666666666667,1,1,0,0,0,4,1,1,592,156425.23,0,0,0,460.98398 -2360,2908,5237,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-982.92505,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.01000000000001,46.19,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,496,388890.88,0,0,0,1453.1001 -2361,2909,5238,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1067.5426,0,2,3,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,3,4,0,1,3,8,1,1,893,332280.03,0,0,0,499.73959 -2362,2910,5239,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8509097,7.5145741,0,0,0,-1096.7847,0,2,2,2019,13,1,42,33,1,1,0,7.2891698,7.2891698,0,0,0,0,0,0,0,0,0,0,43.47,59.65,-9,-9,8.333333333333334,1,1,0,0,12,1,3,1,114,-191630.88,47031.203,0,0,1572.057 -2363,2911,5240,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1152.749,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,42.36,24.02,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,539,-21609.166,0,163419.7,0,1899.5868 -2363,2912,5241,-9,5240,-9,1,0,32,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1040.3477,0,3,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.12,25.73,-9,-9,5,1,1,0,0,1,10,1,0,683,-42970.223,0,0,0,893.22345 -2364,2913,5242,-9,5243,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1037.2286,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,37.9,28.86,-9,-9,3.333333333333333,1,1,1,0,5,6,1,1,1828,127396.59,0,0,0,806.6051 -2364,2914,5243,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-980.35706,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,8.6847401,0,0,1,1,0,3.5770969,0,51.96,21.05,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,974,451676.5,0,99510.68,0,458.24609 -2365,2915,5244,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.2378407,6.5410914,0,0,0,-995.49554,0,3,2,2019,7,0,38,-9,1,0,0,2.0604832,2.0604832,0,0,0,0,0,0,0,0,0,0,41.71,52.41,-9,-9,8.333333333333334,1,1,0,0,12,9,2,1,1081,550897.25,-115248.55,0,0,-185.25681 -2366,2916,5245,5246,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,54,-3,-27.11553,0,-9,-9,2019,17,4,0,0,4,4,0,0,0,1,0,0,0,120,1,1,0,0,0,32.01,24.38,46.84,38.03,6.666666666666667,1,1,0,0,0,2,2,1,638.5,246953.81,0,150724.13,0,776.19873 -2366,2916,5246,5245,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.6734114,6.7284713,54,3,-5.984468,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,.16269732,0,0,1,1,0,5.3323965,6.5764084,46.84,38.03,32.01,24.38,6.666666666666667,1,1,0,0,0,2,2,1,638.5,246953.81,0,150724.13,0,776.19873 -2366,2917,5247,-9,5245,5246,1,1,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-978.11902,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.66,31.96,-9,-9,5,1,1,0,0,0,2,1,1,1058,383537.13,0,0,0,0 -2367,2918,5248,-9,-9,-9,1,1,19,0,0,0,2,2,0,0,5,0,0,0,0,0,-1134.5431,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.7,57.37,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,596,27784.271,0,0,0,147.38412 -2368,2919,5249,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.6842289,7.9145064,0,0,0,-950.96552,0,3,-9,2019,9,0,38,20,1,0,0,9.3504353,9.3504353,0,0,0,0,0,1,1,0,0,0,62.56,45.64,-9,-9,10,1,1,0,0,11,2,3,1,485,251660.33,122898.41,274978.13,0,873.11542 -2369,2920,5250,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.6896639,7.2770619,0,0,-1036.3923,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.6207147,7.7126203,51.9,42.09,-9,-9,10,1,1,0,0,0,11,3,1,855,522720.94,296651.84,247405.27,0,2114.6938 -2370,2921,5251,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.1961994,8.7810478,0,0,0,-1043.6007,0,2,3,2019,6,0,42,42,1,0,0,16.968407,16.968407,0,0,0,0,0,0,0,0,6.6147113,0,63.56,42.4,-9,-9,8.333333333333334,1,1,0,0,13,6,5,1,2457,-42916.141,189610.72,0,0,3049.1018 -2371,2922,5252,5253,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.802104,9.1525307,6.7294493,24,-2,-19.356657,0,2,2,2019,7,0,50,37,1,0,0,20.350492,20.350492,0,0,0,0,7,0,0,0,0,6.8298459,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,10,12,5,1,248.5,357523.88,216233.3,426634.66,319418.63,4267.6143 -2371,2922,5253,5252,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,7.2246065,7.7034144,0,24,2,106.79416,-9,2,2,2019,5,0,40,0,1,0,0,4.8498273,4.8498273,0,0,0,0,0,0,0,0,4.7808175,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,248.5,357523.88,216233.3,426634.66,319418.63,4267.6143 -2372,2923,5254,-9,5256,5255,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.88611,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 -2372,2923,5255,5256,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.337616,8.5865402,0,22,5,-43.687546,0,2,1,2019,13,2,44,44,1,2,0,11.933975,11.933975,0,0,0,0,0,1,1,0,0,0,39.61,50.97,50.06,49.75,3.333333333333333,1,1,0,0,11,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 -2372,2923,5256,5255,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.2078648,7.161808,0,22,-5,142.45006,0,2,2,2019,8,0,38,31,1,0,0,5.3011799,5.3011799,0,0,0,0,0,1,1,0,0,0,50.06,49.75,39.61,50.97,10,1,1,0,0,11,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 -2372,2923,5257,-9,5256,5255,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5016,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,448.75,624877,132625.53,505028.75,0,2437.6865 -2372,2924,5258,-9,5256,5255,1,0,19,0,2,0,2,2,-9,0,3,5.3173361,5.3340073,0,0,0,-1022.3057,0,2,2,2019,6,0,35,17,1,0,1,.66639572,.66639572,0,0,0,0,0,1,1,0,.23806664,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,525,-89455.242,0,0,0,722.72614 -2373,2925,5259,-9,5260,5262,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.87048,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 -2373,2925,5260,5262,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,0,0,0,12,-2,1.0778924,0,3,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,27,1,1,0,0,0,30.22,61.23,60.02,56.42,6.666666666666667,2,3,1,0,5,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 -2373,2925,5261,-9,5260,5262,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.24292,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 -2373,2925,5262,5260,-9,-9,1,1,37,0,3,0,2,2,-9,0,5,8.2019634,8.1978502,0,12,2,-82.051491,0,3,3,2019,7,0,40,39,1,0,0,9.0986042,9.0986042,0,0,0,0,0,1,1,0,0,0,60.02,56.42,30.22,61.23,10,2,3,0,0,11,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 -2373,2925,5263,-9,5260,5262,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1013.65,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,3,1,1992.2,61499.75,75672.797,96795.055,59034.969,2122.8127 -2374,2926,5264,5265,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.1484137,8.3814926,6.0299921,23,6,-39.299168,0,2,2,2019,12,0,36,36,1,0,0,10.486631,10.486631,0,0,0,0,0,0,0,0,0,6.3735914,52.24,50.75,57.18,40.23,5,4,5,0,0,12,2,4,1,1004,2550776,2000311.5,169527.64,0,2565.2695 -2374,2926,5265,5264,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.2773614,7.4733028,0,23,-6,-24.449566,0,3,3,2019,10,1,6,0,1,1,0,36.678253,36.678253,0,0,0,0,0,0,0,0,.69359469,0,57.18,40.23,52.24,50.75,8.333333333333334,1,1,0,0,5,2,4,1,1004,2550776,2000311.5,169527.64,0,2565.2695 -2375,2927,5266,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.8287082,6.174932,0,0,-979.04218,0,3,3,2019,10,0,0,40,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3316455,6.0223722,51,48,-9,-9,7,1,1,0,0,10,4,2,0,2270,737759.75,330113.13,214429.91,3444.7334,1320.4023 -2376,2928,5267,5268,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.4377871,8.5462761,0,12,-13,28.568905,0,-9,-9,2019,10,0,45,45,1,0,0,10.510874,10.510874,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,12,10,4,1,491.33334,27002.063,79559.039,270420.13,172262.09,2687.208 -2376,2928,5268,5267,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.6749239,7.6355553,0,10,13,58.741219,0,-9,-9,2019,8,0,24,22,1,0,0,11.468964,11.468964,0,0,0,0,0,1,1,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,12,10,4,1,491.33334,27002.063,79559.039,270420.13,172262.09,2687.208 -2376,2928,5269,-9,5268,5267,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.3795,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,491.33334,27002.063,79559.039,270420.13,172262.09,2687.208 -2376,2929,5270,-9,5268,5267,1,0,25,0,1,0,2,2,-9,0,4,8.3813629,8.177722,0,0,0,-994.58551,0,2,3,2019,11,0,36,54,1,0,1,12.369703,12.369703,0,0,0,0,0,1,1,0,3.794364,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,1272,-195997.83,0,0,0,2684.8008 -2377,2930,5271,5272,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.0466938,8.2215233,0,9,-12,19.830746,0,1,2,2019,25,10,35,0,1,10,0,13.261528,13.261528,0,0,0,0,7,1,1,0,3.4547999,0,25.56,52.21,24.46,63.1,1.666666666666667,1,1,0,0,10,8,4,1,671.5,-122504.95,35640.875,0,0,2050.033 -2377,2930,5272,5271,5273,-9,1,0,53,0,0,0,1,1,-9,0,4,7.5805612,7.6442466,0,9,12,-70.511948,0,2,3,2019,17,7,15,35,1,7,0,16.500772,16.500772,0,0,0,0,27,1,1,0,5.869606,0,24.46,63.1,25.56,52.21,8.333333333333334,1,1,0,0,11,8,4,1,671.5,-122504.95,35640.875,0,0,2050.033 -2377,2931,5273,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.1144919,7.0114446,0,0,-1000.2125,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,10.169646,35.437492,84.428329,0,1,1,0,4.7931542,6.8395424,45.76,19.71,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,537,358153.28,60949.793,220259.44,0,1730.2061 -2378,2932,5274,5275,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.6039906,8.3635788,0,14,-2,.17418154,0,-9,2,2019,12,1,42,48,1,1,0,13.91822,13.91822,0,0,0,0,0,1,1,0,1.2084812,0,51.41,56.15,46.55,57.7,6.666666666666667,1,1,0,0,11,9,4,1,901,65425.676,141490.3,178186.28,135732.41,3518.1196 -2378,2932,5275,5274,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,7.2149534,7.2138319,0,14,2,34.425728,0,2,3,2019,8,2,16,41,1,2,0,9.5146542,9.5146542,0,0,0,0,0,1,1,0,6.8779197,0,46.55,57.7,51.41,56.15,8.333333333333334,1,1,0,0,11,9,4,1,901,65425.676,141490.3,178186.28,135732.41,3518.1196 -2378,2932,5276,-9,5275,5274,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5549,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,901,65425.676,141490.3,178186.28,135732.41,3518.1196 -2379,2933,5277,-9,5278,5279,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.5677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,4,0,598.33331,-126914.33,11168.927,160770.47,110320.2,2322.6001 -2379,2933,5278,5279,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,7.1463461,6.9883094,0,11,-2,49.870163,0,3,3,2019,7,0,20,40,1,0,0,6.2238002,6.2238002,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.01,51.37,8.333333333333334,1,1,0,0,10,13,4,0,598.33331,-126914.33,11168.927,160770.47,110320.2,2322.6001 -2379,2933,5279,5278,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.6729574,8.6614532,0,11,2,-101.37263,0,3,1,2019,7,0,37,37,1,0,0,14.551767,14.551767,0,0,0,0,0,1,1,0,0,0,56.01,51.37,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,0,598.33331,-126914.33,11168.927,160770.47,110320.2,2322.6001 -2380,2934,5280,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,6.6230087,6.5339537,0,0,-968.00385,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4637098,32.64,30.21,-9,-9,5,1,1,0,0,0,12,2,0,830,123714.69,22338.352,0,0,2130.4741 -2381,2935,5281,5282,-9,-9,1,0,49,0,0,0,2,2,-9,0,1,7.9520774,8.0192299,0,27,0,31.519468,0,2,3,2019,17,5,20,15,1,5,0,15.297654,15.297654,0,0,0,0,0,0,0,0,0,0,20.63,37.09,52.97,53.97,6.666666666666667,1,1,0,0,13,7,5,1,490,203979.66,16956.893,0,0,3801.8804 -2381,2935,5282,5281,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.9223366,9.1347609,0,10,9,217.72559,0,2,2,2019,11,0,38,37,1,0,0,18.490829,18.490829,0,0,0,0,0,0,0,0,0,0,52.97,53.97,20.63,37.09,6.666666666666667,1,1,0,0,13,7,5,1,490,203979.66,16956.893,0,0,3801.8804 -2382,2936,5283,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.1905069,8.2207584,0,0,0,-948.45294,0,-9,-9,2019,11,2,50,43,1,2,0,9.6283035,9.6283035,0,0,0,0,0,0,0,0,6.3907418,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,256,71105.711,33479.387,168202.94,28475.92,2109.1316 -2383,2937,5284,5285,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.1777201,8.3978834,0,5,1,47.627724,0,-9,-9,2019,12,0,40,40,1,0,0,10.456512,10.456512,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42,42.91,6.666666666666667,1,1,0,0,8,12,4,1,350,308472.97,223723.81,124088.99,47855.551,1890.6915 -2383,2937,5285,5284,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.7333865,7.9159927,0,20,-1,-121.11375,0,-9,-9,2019,14,3,27,27,1,3,0,11.776695,11.776695,0,0,0,0,0,1,1,0,0,0,42,42.91,54.79,55.86,8.333333333333334,1,1,0,0,10,12,4,1,350,308472.97,223723.81,124088.99,47855.551,1890.6915 -2384,2938,5286,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,0,0,0,0,0,-902.63611,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.356606,0,57.33,53.46,-9,-9,10,1,1,0,0,5,12,1,1,300,0,0,0,0,-560.77325 -2385,2939,5287,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.6024356,7.6768112,0,0,0,-975.21991,0,-9,2,2019,10,0,38,38,1,0,0,6.7310352,6.7310352,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,11,9,3,0,382,-91318.773,-30172.742,0,0,867.7995 -2385,2940,5288,-9,5287,-9,1,1,27,0,0,0,1,1,-9,0,3,7.5662093,7.7849417,0,0,0,-1002.1136,0,2,2,2019,11,1,68,30,1,1,1,3.5021007,3.5021007,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,278,-22538.881,74033.047,0,0,674.17438 -2386,2941,5289,5290,-9,-9,1,1,30,1,2,0,1,1,-9,0,4,4.3120561,4.4611511,0,2,6,-46.856766,0,3,3,2019,13,1,16,16,1,1,0,.64946353,.64946353,0,0,0,0,0,1,1,0,0,0,37.99,47.35,31.77,61.1,5,1,1,0,0,1,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 -2386,2941,5290,5289,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,0,0,0,2,-6,-120.53087,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.1,37.99,47.35,5,1,1,0,0,0,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 -2386,2941,5291,-9,5290,5289,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.12213,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 -2386,2941,5292,-9,5290,5289,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.49347,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,671.5,209319.61,2603.4492,198188.88,111334.84,1356.1558 -2387,2942,5293,5294,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.0816746,8.3481798,0,7,2,-141.74786,0,2,2,2019,13,1,35,10,1,1,0,12.319032,12.319032,0,0,0,0,2,0,0,0,8.6984034,0,48.76,53.24,39.15,20.16,8.333333333333334,1,1,0,0,8,6,4,1,660,215124.02,182140.75,110934.71,103833.55,4265.2739 -2387,2942,5294,5293,-9,-9,1,0,29,0,0,0,1,1,-9,0,2,7.8769565,7.4619164,0,7,-2,99.332626,0,-9,-9,2019,14,2,3,0,1,2,0,102.45963,102.45963,0,0,0,0,0,0,0,0,0,0,39.15,20.16,48.76,53.24,6.666666666666667,1,1,0,0,0,6,4,1,660,215124.02,182140.75,110934.71,103833.55,4265.2739 -2388,2943,5295,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.5025778,8.4834442,0,0,0,-948.60809,0,2,2,2019,9,1,40,50,1,1,0,14.359706,14.359706,0,0,0,0,2,1,1,0,0,0,49.41,58.28,-9,-9,6.666666666666667,1,1,0,1,9,9,4,1,909,293388.25,0,0,0,2022.5015 -2389,2944,5296,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.8010583,6.0817485,0,0,-924.83069,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,0,8.6111202,0,2,1,1,0,3.6486483,5.7784972,41.36,34.01,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,381,177621,43607.078,6283.6611,0,249.50606 -2390,2945,5297,5299,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,8.6413441,8.7049675,0,20,-2,91.625214,0,3,2,2019,15,3,40,30,1,3,0,17.183733,17.183733,0,0,0,0,2,1,1,0,1.2492567,0,46.08,57.2,50.03,39.39,5,1,1,0,0,10,7,5,1,586.66669,2140293.5,681547.06,711928.25,0,6171.7734 -2390,2945,5298,-9,5297,5299,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.8019,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,586.66669,2140293.5,681547.06,711928.25,0,6171.7734 -2390,2945,5299,5297,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.0425949,9.2354364,0,22,2,112.21607,0,-9,2,2019,12,0,45,42,1,0,0,22.114248,22.114248,0,0,0,0,2,1,1,0,0,0,50.03,39.39,46.08,57.2,6.666666666666667,1,1,0,0,10,7,5,1,586.66669,2140293.5,681547.06,711928.25,0,6171.7734 -2391,2946,5300,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.2879353,5.1584144,0,0,-930.05756,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,5.5227251,43.76,40.54,-9,-9,5,1,1,0,0,0,7,2,0,98,241998.78,0,72170.961,0,1503.9919 -2392,2947,5301,5302,-9,-9,1,1,59,0,0,0,2,2,-9,1,2,0,0,0,30,0,-44.82608,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.29,25.23,49.12,57.28,3.333333333333333,1,1,0,0,0,10,4,1,404.5,336567.19,67702.164,287043.75,90769.438,2996.9036 -2392,2947,5302,5301,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.8529348,8.6123171,0,31,0,-23.925268,0,2,1,2019,10,0,40,40,1,0,0,18.435238,18.435238,0,0,0,0,14.5,1,1,0,3.1676459,0,49.12,57.28,39.29,25.23,3.333333333333333,1,1,0,0,10,10,4,1,404.5,336567.19,67702.164,287043.75,90769.438,2996.9036 -2392,2948,5303,-9,5302,5301,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-982.3941,0,1,2,2019,10,0,0,40,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,0,10,1,1,335,0,0,0,0,0 -2393,2949,5304,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,7.4892297,7.2169113,0,0,-943.36389,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.8148518,7.2737255,51.02,36.16,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,282,82332.992,0,97670.625,0,1436.1454 -2394,2950,5305,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.763855,6.9913058,0,0,-1019.9311,0,3,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7996192,6.6854753,41.62,60.42,-9,-9,6.666666666666667,1,1,0,0,4,10,2,0,1385,798319.44,-18694.818,662049.44,0,683.65833 -2395,2951,5306,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.6128502,8.7208138,7.8888712,0,0,-963.40851,0,2,2,2019,6,0,24,24,1,0,0,9.2005043,9.2005043,0,0,0,0,2,1,1,0,6.5126328,7.6872602,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,387,614814.69,230081.09,129284.16,0,2875.3074 -2396,2952,5307,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.8061519,7.8096089,0,0,-1027.5044,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7962952,43.72,55.3,-9,-9,5,1,1,0,0,0,10,3,1,200,863454.13,369183.06,277874.34,0,2003.5549 -2397,2953,5308,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.5638123,7.5330009,0,0,-910.79535,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.0014019,8.0155487,40.97,32.79,-9,-9,5,1,1,0,0,0,2,3,1,213,-105987.34,213805.25,214885.52,0,2088.0259 -2398,2954,5309,5310,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.652205,8.1604671,40,0,-93.661674,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.0836041,8.039711,68.88,28.12,65.38,25.53,8.333333333333334,1,1,0,0,0,13,4,1,1026.5,1287977.3,1109746,195025.8,0,3332.8403 -2398,2954,5310,5309,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.059989,8.1326122,3,0,49.516487,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.6863542,7.7140522,65.38,25.53,68.88,28.12,8.333333333333334,1,1,0,0,0,13,4,1,1026.5,1287977.3,1109746,195025.8,0,3332.8403 -2398,2955,5311,-9,5309,5310,1,1,28,0,0,0,2,2,-9,0,4,8.6621056,8.1016235,0,0,0,-939.48456,0,2,2,2019,10,0,40,40,1,1,0,14.761544,14.761544,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,5,1,1245,4353.8975,-60271.383,0,0,2060.4468 -2399,2956,5312,-9,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,7.8141599,7.9758506,0,0,0,-996.8941,0,3,3,2019,8,0,45,48,1,0,1,5.4397035,5.4397035,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,5,6,3,0,190,30291.807,69116.094,0,0,1161.2627 -2400,2957,5313,5314,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.6980643,6.5175376,7,-5,-8.4903889,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,6.2049565,6.4904661,52.62,54.33,51.73,58.82,8.333333333333334,1,1,0,0,1,9,3,1,1495.5,656025.5,-24982.693,0,0,2211.7659 -2400,2957,5314,5313,-9,-9,1,1,86,0,0,0,2,2,-9,0,5,0,7.7374134,8.0448627,7,5,90.622711,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,41.165138,0,0,1,1,0,0,7.5256701,51.73,58.82,52.62,54.33,8.333333333333334,1,1,0,0,0,9,3,1,1495.5,656025.5,-24982.693,0,0,2211.7659 -2401,2958,5315,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-995.46161,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.23,61.31,-9,-9,6.666666666666667,1,1,0,0,2,5,1,0,2973,0,0,0,0,-933.69666 -2402,2959,5316,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.5352726,8.9219007,6.808867,0,0,-916.35681,0,-9,-9,2019,12,3,24,25,1,3,0,30.311529,30.311529,0,0,0,0,0,1,1,0,7.0095797,0,47.97,56.11,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,373.5,67605.422,39820.609,297137.75,153405.95,3526.8579 -2402,2959,5317,-9,5316,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.8132,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,373.5,67605.422,39820.609,297137.75,153405.95,3526.8579 -2402,2960,5318,-9,5316,-9,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-996.69934,-9,1,-9,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,26.14,56.71,-9,-9,6.666666666666667,1,1,0,0,1,8,1,1,345,426143.5,0,0,0,0 -2403,2961,5319,5320,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.2165694,7.7234206,6.6653633,6,-2,-80.06514,0,3,2,2019,11,0,12,8,1,0,0,12.760468,12.760468,0,0,0,0,2,0,0,0,0,6.8230772,54.37,54.8,60.29,52.11,6.666666666666667,1,1,0,0,12,4,4,1,995,243832.77,163020.72,35235.875,54455.125,3130.3379 -2403,2961,5320,5319,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.7456784,8.0860949,6.8192763,6,2,26.945986,0,-9,-9,2019,6,0,40,30,1,0,0,7.5313258,7.5313258,0,0,0,0,2,0,0,0,0,6.926753,60.29,52.11,54.37,54.8,8.333333333333334,1,1,0,0,12,4,4,1,995,243832.77,163020.72,35235.875,54455.125,3130.3379 -2404,2962,5321,5322,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.5065117,8.7028399,10,1,63.772053,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5315619,8.1202822,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,661,1746027.9,1198002,237379.8,37050.172,3354.4307 -2404,2962,5322,5321,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,45,-1,106.91418,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7895942,0,57.16,56.15,52.99,51.28,10,1,1,0,0,5,5,3,1,661,1746027.9,1198002,237379.8,37050.172,3354.4307 -2405,2963,5323,5324,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,4.7455516,4.8511038,53,0,-51.314579,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.8704133,4.8301582,56.5,48.33,41.43,24.56,8.333333333333334,1,1,0,0,0,2,2,1,1081,506028.41,313125.34,223115.44,0,281.97601 -2405,2963,5324,5323,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,52,0,83.20752,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,13.283357,0,0,1,1,0,0,0,41.43,24.56,56.5,48.33,3.333333333333333,1,1,0,0,0,2,2,1,1081,506028.41,313125.34,223115.44,0,281.97601 -2406,2964,5325,5326,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4682384,7.8365297,53,1,-11.948714,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.9220152,7.5815716,49.28,50.19,53.37,52.37,8.333333333333334,1,1,0,0,0,9,3,1,1823.5,1897013,1074727.1,337781.34,0,3477.5256 -2406,2964,5326,5325,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.5290413,7.6932955,53,-1,-100.61556,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.9205842,7.6676011,53.37,52.37,49.28,50.19,8.333333333333334,1,1,0,0,0,9,3,1,1823.5,1897013,1074727.1,337781.34,0,3477.5256 -2407,2965,5327,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,5,8.1975183,7.8388824,0,0,0,-1039.4189,-9,2,2,2019,11,0,38,0,1,0,0,9.5428295,9.5428295,0,0,0,0,0,0,0,0,0,0,52.89,55.56,-9,-9,0,2,3,0,0,1,7,4,0,934,56123.133,-35430.34,0,0,2629.981 -2408,2966,5328,5329,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.7513437,9.0285444,7.7308674,8,6,11.74083,0,3,3,2019,7,0,38,37,1,0,0,15.51932,15.51932,0,0,0,0,0,0,0,0,4.3375592,7.8325915,61.26,51.57,48.85,51.81,10,1,1,0,0,13,2,5,1,467,2971192,2029538.3,494809.44,0,10550.865 -2408,2966,5329,5328,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.791687,10.158443,8.364954,8,-6,-30.152645,-9,-9,-9,2019,9,1,67,0,1,1,0,30.708956,30.708956,0,0,0,0,7,0,0,0,2.7888751,8.5366211,48.85,51.81,61.26,51.57,8.333333333333334,1,1,0,0,8,2,5,1,467,2971192,2029538.3,494809.44,0,10550.865 -2408,2967,5330,-9,5329,5328,1,0,28,0,0,0,1,1,-9,0,3,8.2075281,8.2717171,0,0,0,-1053.5259,0,1,1,2019,12,0,41,39,1,0,1,10.819941,10.819941,0,0,0,0,71.5,0,0,0,3.675431,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,4,2,4,1,94,48186.523,-39048.906,0,0,2299.4712 -2409,2968,5331,5332,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4403381,6.4778075,54,0,159.62038,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.511934,6.1303258,57.16,56.15,51.94,35.51,10,1,1,0,0,0,9,4,1,233,969037.75,556330.5,352208.47,0,6632.2676 -2409,2968,5332,5331,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.1516476,8.2641363,54,0,-91.875908,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0480394,8.3895655,51.94,35.51,57.16,56.15,10,1,1,0,0,0,9,4,1,233,969037.75,556330.5,352208.47,0,6632.2676 -2410,2969,5333,5334,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.3062773,7.2139239,0,33,-3,21.243378,0,3,2,2019,6,0,18,20,1,0,0,7.9196472,7.9196472,0,0,0,0,0,0,0,0,2.0273356,0,57.06,57.76,45,55.12,8.333333333333334,1,1,0,0,9,1,5,1,2151.5,646782,682238.38,186728.09,16425.953,2929.0549 -2410,2969,5334,5333,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.9777451,8.8606796,0,33,3,-8.4808493,0,3,3,2019,12,0,37,38,1,0,0,21.441195,21.441195,0,0,0,0,0,0,0,0,3.6349449,0,45,55.12,57.06,57.76,6.666666666666667,1,1,0,0,9,1,5,1,2151.5,646782,682238.38,186728.09,16425.953,2929.0549 -2411,2970,5335,5336,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.259449,7.8092418,30,10,-18.224739,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,7.7435412,45.32,54.77,50.05,55.41,8.333333333333334,1,1,0,0,8,9,3,1,1332.5,826916.31,476766.19,318423.75,0,2342.6001 -2411,2970,5336,5335,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,5.4533548,5.652041,0,30,-10,-51.830654,0,-9,-9,2019,12,0,6,6,1,0,0,4.9496984,4.9496984,0,0,0,0,42,1,1,0,.80003673,0,50.05,55.41,45.32,54.77,8.333333333333334,1,1,0,0,9,9,3,1,1332.5,826916.31,476766.19,318423.75,0,2342.6001 -2411,2971,5337,-9,5335,5336,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1088.4651,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,9,2,1,474,-207850.89,0,0,0,0 -2411,2972,5338,-9,5335,5336,1,1,28,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1058.5262,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,5.3666091,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,480,-174964.3,0,0,0,619.29846 -2412,2973,5339,5341,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.8239541,8.4151058,6.9403763,17,2,244.60336,0,2,2,2019,13,1,40,41,1,1,0,8.66399,8.66399,0,0,0,0,0,1,0,1,7.3124151,0,35.5,54.11,30.75,39.2,5,1,1,0,0,12,5,3,1,404,1904623.5,1466358.5,225538.41,0,2525.5647 -2412,2973,5340,-9,5341,5339,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6641,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,404,1904623.5,1466358.5,225538.41,0,2525.5647 -2412,2973,5341,5339,-9,-9,1,0,47,0,2,0,2,2,-9,0,1,0,0,0,18,-2,-18.622019,0,2,1,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,0,1,.67981333,0,30.75,39.2,35.5,54.11,3.333333333333333,1,1,0,1,4,5,3,1,404,1904623.5,1466358.5,225538.41,0,2525.5647 -2413,2974,5342,5343,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.9514275,8.9079189,0,11,0,-71.012314,0,2,2,2019,13,1,50,38,1,1,0,19.14327,19.14327,0,0,0,0,0,0,0,0,0,0,39.52,61.49,45.91,59.89,8.333333333333334,1,1,0,0,6,6,5,1,1905.5,476218,294323.25,132408.63,93124.438,5315.3687 -2413,2974,5343,5342,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.1596193,9.2894211,0,11,0,-150.36713,0,1,1,2019,8,0,50,46,1,0,0,22.309288,22.309288,0,0,0,0,0,0,0,0,2.3936939,0,45.91,59.89,39.52,61.49,6.666666666666667,1,1,0,0,6,6,5,1,1905.5,476218,294323.25,132408.63,93124.438,5315.3687 -2414,2975,5344,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.0127163,6.1679769,0,0,-1080.7114,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.1577196,47.62,57.75,-9,-9,10,1,1,0,0,9,9,2,0,595,84262.828,36718.547,213646.17,0,934.2464 -2415,2976,5345,-9,5347,5346,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2058,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 -2415,2976,5346,5347,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,8.8035316,8.4016848,0,12,5,7.5431809,0,2,2,2019,14,2,39,30,1,2,0,17.268221,17.268221,0,0,0,0,7,1,1,0,0,0,42.33,48.32,35.16,58.08,6.666666666666667,2,3,0,0,9,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 -2415,2976,5347,5346,-9,-9,1,0,35,1,2,0,2,2,-9,1,3,0,0,0,12,-5,59.2686,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,35.16,58.08,42.33,48.32,6.666666666666667,2,3,0,0,0,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 -2415,2976,5348,-9,5347,5346,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.39496,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,1044.25,151337.09,45824.129,0,0,2978.656 -2416,2977,5349,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,6.2883763,6.7581635,0,0,-960.14459,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4626021,60.29,52.11,-9,-9,5,3,4,1,1,0,7,2,1,590,174038.08,170382.28,0,0,115.86182 -2416,2978,5350,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.8026595,6.7382607,0,0,-904.3067,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9509578,53,47,-9,-9,8,3,4,0,0,0,7,2,1,2659,217933.55,18142.604,0,0,1530.7739 -2416,2979,5351,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.2851419,8.4860697,0,0,0,-836.43988,0,-9,-9,2019,8,0,20,0,1,0,0,20.598824,20.598824,0,0,0,0,0,1,1,0,4.7631297,0,54,54,-9,-9,8,3,4,0,0,1,7,4,1,77,159775.67,0,154536.27,11140.706,2433.8779 -2417,2980,5352,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-958.70917,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,3.2055964,0,19.185873,0,1,0,1,0,0,55.39,16.88,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,299,-105697.95,0,0,0,1144.9792 -2417,2981,5353,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,4,0,0,0,0,0,-876.9447,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,0,12,2,0,343,0,0,0,0,334.55167 -2418,2982,5354,5355,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5193806,7.4649434,0,29,6,75.742783,0,3,3,2019,7,0,30,30,1,0,0,6.3408093,6.3408093,0,0,0,0,96,1,1,0,0,0,62.82,44.04,32.1,36.62,8.333333333333334,1,1,0,0,10,13,2,1,932.5,178141.59,120558.22,220635.55,82638.242,1951.2861 -2418,2982,5355,5354,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,29,-6,-36.506046,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.1,36.62,62.82,44.04,5,1,1,0,1,0,13,2,1,932.5,178141.59,120558.22,220635.55,82638.242,1951.2861 -2418,2983,5356,-9,5354,5355,1,1,25,0,0,0,1,1,-9,0,4,7.5702243,7.641561,0,0,0,-1035.1078,0,2,2,2019,6,0,37,37,1,0,1,7.6923509,7.6923509,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,124,8931.4795,0,0,0,647.27869 -2418,2984,5357,-9,5354,5355,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1036.1805,-9,2,2,2019,19,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,.012187812,0,35.91,63.19,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,512,125907.09,0,0,0,29.376284 -2419,2985,5358,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,4.5610576,4.9194136,0,0,-1021.9135,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,4.7313557,57.24,19.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,648,92089.438,44602.453,153604.33,0,2045.9851 -2420,2986,5359,5360,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.7200327,9.5008678,0,16,-1,-112.83356,0,3,2,2019,9,1,45,43,1,1,0,31.324171,31.324171,0,0,0,0,0,0,0,0,1.6411926,0,45.91,59.89,52.4,52.91,8.333333333333334,1,1,0,0,9,8,5,1,725,1736273.9,286069.25,964317.5,0,6306.5073 -2420,2986,5360,5359,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.6181335,8.7433691,0,15,1,-70.595459,0,2,1,2019,12,0,35,0,1,0,0,15.61434,15.61434,0,0,0,0,0,0,0,0,8.0922031,0,52.4,52.91,45.91,59.89,8.333333333333334,1,1,0,0,8,8,5,1,725,1736273.9,286069.25,964317.5,0,6306.5073 -2420,2986,5361,-9,5360,5359,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.9491,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,725,1736273.9,286069.25,964317.5,0,6306.5073 -2421,2987,5362,5363,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,10,4,136.36551,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.94,58.35,54.2,57.49,5,1,1,0,0,0,4,2,1,772.5,890582.19,449912.25,153591.47,0,1921.6987 -2421,2987,5363,5362,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.0841227,6.64745,10,-4,123.79642,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9972706,6.975966,54.2,57.49,40.94,58.35,8.333333333333334,1,1,0,0,7,4,2,1,772.5,890582.19,449912.25,153591.47,0,1921.6987 -2422,2988,5364,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.3305264,7.8660517,0,0,0,-1001.3261,-9,3,3,2019,8,0,41,0,1,0,0,7.887043,7.887043,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,565,1039126.4,340351.59,136345.86,93302.719,1640.759 -2423,2989,5365,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-969.26727,0,2,1,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,44,40,-9,-9,6.666666666666667,1,1,0,0,1,6,1,0,421,0,0,0,0,1270.9497 -2424,2990,5366,-9,5368,5367,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.39111,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,622,131524.22,182128.42,351281.81,195538.7,3376.4207 -2424,2990,5367,5368,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,8.8182096,8.7866507,0,15,-7,49.326134,0,2,1,2019,10,1,40,75,1,1,0,22.197289,22.197289,0,0,0,0,0,1,1,0,0,0,46.55,58.3,51.83,57.2,8.333333333333334,3,4,0,0,9,12,5,1,622,131524.22,182128.42,351281.81,195538.7,3376.4207 -2424,2990,5368,5367,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.0164566,7.6483107,0,9,7,-60.17197,0,-9,-9,2019,9,0,19,19,1,0,0,19.375605,19.375605,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.55,58.3,8.333333333333334,1,1,0,0,12,12,5,1,622,131524.22,182128.42,351281.81,195538.7,3376.4207 -2425,2991,5369,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,7.799057,8.1959934,5.5689783,0,0,-1052.8387,0,2,1,2019,7,0,39,39,1,0,0,9.8429699,9.8429699,0,0,0,0,0,0,0,0,3.0866838,5.9679928,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,563,137840.45,-116901.8,126656.68,0,1139.0708 -2426,2992,5370,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.4173169,5.7899003,0,0,-1011.0168,0,3,3,2019,24,7,0,0,4,7,0,0,0,1,2.4010336,0,20.237396,0,1,1,0,0,5.9784265,19.87,34.43,-9,-9,0,1,1,0,0,0,6,2,1,356,149943.23,224289.14,0,0,668.78601 -2427,2993,5371,-9,5372,5373,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-945.55872,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,3,1,275.66666,934717.31,337004.59,336800.5,0,2867.1948 -2427,2993,5372,5373,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.9276705,8.1495285,0,30,0,-44.782597,0,2,2,2019,12,2,21,21,1,2,0,13.801014,13.801014,0,0,0,0,0,1,1,0,2.5978229,0,48.05,53.56,15.09,52.83,8.333333333333334,1,1,0,0,10,13,3,1,275.66666,934717.31,337004.59,336800.5,0,2867.1948 -2427,2993,5373,5372,-9,-9,1,1,51,0,1,0,1,1,-9,0,2,7.4042063,7.6407876,0,31,0,-79.025375,0,3,3,2019,10,0,10,10,1,0,0,23.899879,23.899879,0,0,0,0,0,1,1,0,6.9361758,0,15.09,52.83,48.05,53.56,5,1,1,0,0,8,13,3,1,275.66666,934717.31,337004.59,336800.5,0,2867.1948 -2427,2994,5374,-9,5372,5373,1,1,21,0,1,1,2,0,0,1,3,0,0,0,0,0,-977.55035,-9,1,1,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,41.82,57.72,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,277,-285889.28,0,0,0,212.06613 -2427,2995,5375,-9,5372,5373,1,0,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-916.58508,-9,1,1,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,22.59,65.42,-9,-9,5,1,1,1,0,0,13,1,1,236,-254942.39,0,0,0,-377.66513 -2428,2996,5376,-9,5377,5379,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.9789,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 -2428,2996,5377,5379,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,0,0,0,8,-5,-60.751804,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.57,52.23,42.81,54.48,1.666666666666667,2,3,0,0,1,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 -2428,2996,5378,-9,5377,5379,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1223.7389,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 -2428,2996,5379,5377,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,7.9844217,8.2235317,0,8,5,86.646004,0,3,3,2019,12,0,41,37,1,0,0,11.456469,11.456469,0,0,0,0,0,1,1,0,0,0,42.81,54.48,36.57,52.23,5,2,3,0,0,10,6,3,1,803.25,329092.63,22861.264,276978.47,141255.53,1204.9211 -2429,2997,5380,5381,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,7,-3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.25,29,64.23999999999999,44.83,8.333333333333334,1,1,0,0,0,13,1,0,674,632704.88,0,205188.19,0,2906.0376 -2429,2997,5381,5380,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,64.23999999999999,44.83,37.25,29,8.333333333333334,1,1,0,0,0,13,1,0,674,632704.88,0,205188.19,0,2906.0376 -2430,2998,5382,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.8329954,8.9352999,0,0,0,-903.98389,0,2,2,2019,20,8,47,48,1,8,0,14.070104,14.070104,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,8,8,4,1,178,355869.31,0,267122.81,0,3093.5972 -2430,2999,5383,-9,5382,-9,1,1,23,0,1,0,2,2,-9,0,3,7.6073437,7.4666624,0,0,0,-996.0899,0,2,-9,2019,19,5,35,35,1,5,1,7.9100327,7.9100327,0,0,0,0,0,1,1,0,0,0,29.2,62.12,-9,-9,3.333333333333333,4,2,0,0,4,8,3,1,660,-36432.109,0,0,0,397.74622 -2430,3000,5384,-9,5382,5385,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.82336,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,5,1,188,1537361,332421,692931.44,0,3538.8179 -2430,3000,5385,-9,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.5455379,9.4152107,0,0,0,-955.35425,0,-9,-9,2019,9,0,36,36,1,1,0,42.236858,42.236858,0,0,0,0,0,1,1,0,4.135006,0,53,55,-9,-9,8,3,4,0,0,1,8,5,1,188,1537361,332421,692931.44,0,3538.8179 -2431,3001,5386,-9,5389,5388,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.0529,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 -2431,3001,5387,-9,5389,5388,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-931.24451,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 -2431,3001,5388,5389,-9,-9,1,1,39,2,2,0,1,1,-9,0,4,8.6691647,8.5957365,0,6,4,-29.676735,0,-9,-9,2019,9,0,40,40,1,1,0,13.681046,13.681046,0,0,0,0,0,1,1,0,0,0,51,56,59.3,33.41,8,1,1,0,0,7,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 -2431,3001,5389,5388,-9,-9,1,0,35,2,2,0,1,1,-9,0,4,7.1118383,7.0474849,0,6,-4,82.464958,0,2,2,2019,9,2,24,24,1,2,0,5.2008901,5.2008901,0,0,0,0,0,1,1,0,0,0,59.3,33.41,51,56,8.333333333333334,1,1,0,0,7,4,4,1,1140,205325.13,144849.11,242813.23,133779.13,3207.9163 -2432,3002,5390,-9,5393,5391,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.9706,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 -2432,3002,5391,5393,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,5.1038589,5.0838399,0,22,2,51.589497,0,2,1,2019,7,0,60,60,1,0,0,.24222706,.24222706,0,0,0,0,0,1,1,0,2.3708344,0,50.03,52.62,51.41,56.15,6.666666666666667,4,2,0,0,6,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 -2432,3002,5392,-9,5393,5391,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.78595,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 -2432,3002,5393,5391,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,5.7197003,5.3678951,0,22,-2,115.0806,0,2,2,2019,9,0,9,9,1,0,0,2.7062812,2.7062812,0,0,0,0,0,1,1,0,0,0,51.41,56.15,50.03,52.62,8.333333333333334,1,1,0,1,7,7,2,1,466.5,231050.17,50028.289,124096.4,106116.11,368.91934 -2433,3003,5394,5395,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.9796624,7.1333628,50,-1,-11.084282,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8412066,55.96,49.93,42.02,45.46,6.666666666666667,1,1,0,0,4,11,2,1,526.5,819832.56,185931.59,387824.53,0,1187.8997 -2433,3003,5395,5394,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,50,1,-43.253994,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,1.3468543,0,0,1,1,0,0,0,42.02,45.46,55.96,49.93,10,1,1,0,0,0,11,2,1,526.5,819832.56,185931.59,387824.53,0,1187.8997 -2434,3004,5396,5397,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.6829052,9.0625906,36,-1,11.023202,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.6851573,9.2140579,51.24,58.84,58.15,52.91,8.333333333333334,1,1,0,0,10,7,5,1,506.5,1111800.8,18829.27,688419.75,0,6456.2715 -2434,3004,5397,5396,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.7621355,8.4444542,10,1,197.33528,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3942504,8.660676,58.15,52.91,51.24,58.84,8.333333333333334,1,1,0,0,12,7,5,1,506.5,1111800.8,18829.27,688419.75,0,6456.2715 -2435,3005,5398,5399,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.440012,8.2646017,0,31,9,-75.190132,0,1,-9,2019,7,0,20,20,1,0,0,21.441195,21.441195,0,0,0,0,0,0,0,0,4.1856742,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,6,4,1,265.5,1835352.5,1287049.6,484486.31,180177.56,2297.9995 -2435,3005,5399,5398,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.0208373,6.9032712,0,31,0,-9.7663479,0,3,-9,2019,6,0,15,0,1,0,0,6.8471642,6.8471642,0,0,0,0,0,0,0,0,1.0582253,0,57.06,57.76,57.16,56.15,10,1,1,0,0,5,6,4,1,265.5,1835352.5,1287049.6,484486.31,180177.56,2297.9995 -2436,3006,5400,5401,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.3383546,6.1435161,0,43,0,6.3287668,0,-9,2,2019,6,0,30,30,1,0,0,1.8922049,1.8922049,0,0,0,0,0,1,1,0,2.9276223,0,61.28,48.88,57.51,42.37,8.333333333333334,1,1,0,0,10,9,2,1,985,626007.75,123058.23,286994.88,0,1720.3866 -2436,3006,5401,5400,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,43,0,117.91664,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.164278,0,57.51,42.37,61.28,48.88,8.333333333333334,1,1,0,0,4,9,2,1,985,626007.75,123058.23,286994.88,0,1720.3866 -2437,3007,5402,-9,5404,5403,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-940.77789,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,1,366.33334,66323.031,9441.0557,0,0,1627.9209 -2437,3007,5403,5404,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,7.8825388,7.6173162,0,3,3,-142.53027,0,2,2,2019,9,1,40,72,1,1,0,7.8549891,7.8549891,0,0,0,0,2,1,1,0,0,0,50.4,55.04,60.31,43.75,8.333333333333334,1,1,0,0,11,9,3,1,366.33334,66323.031,9441.0557,0,0,1627.9209 -2437,3007,5404,5403,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,7.2317014,7.1977334,0,3,-3,58.978363,0,-9,-9,2019,10,2,24,24,1,2,0,6.0292687,6.0292687,0,0,0,0,0,1,1,0,0,0,60.31,43.75,50.4,55.04,10,1,1,0,0,2,9,3,1,366.33334,66323.031,9441.0557,0,0,1627.9209 -2438,3008,5405,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3101969,8.292367,0,0,0,-998.21393,0,2,-9,2019,22,10,55,57,1,10,0,11.804593,11.804593,0,0,0,0,0,0,0,0,0,0,22.46,60,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,805,-137765.05,85116.758,0,0,1622.6848 -2439,3009,5406,-9,5409,5407,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.9198,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 -2439,3009,5407,5409,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.2776785,8.4926987,0,24,4,112.8405,0,3,3,2019,9,0,40,50,1,1,0,8.1236725,8.1236725,0,0,0,.85268492,0,1,1,0,0,0,53,55,28.09,40.41,8,2,3,0,0,1,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 -2439,3009,5408,-9,5409,5407,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.2104,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 -2439,3009,5409,5407,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,0,0,0,24,-4,-86.270233,0,3,3,2019,29,10,0,42,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.09,40.41,53,55,0,2,3,1,0,8,2,3,1,2652.5,-47672.738,4428.1055,0,0,2094.9871 -2439,3010,5410,-9,5409,5407,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1050.7844,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.93,52.43,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,396,130941.97,0,0,0,826.88831 -2440,3011,5411,5412,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,7,3,-38.230568,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,3.2085505,0,30.166447,0,1,1,0,0,0,55.85,27.24,66.54000000000001,14.4,10,1,1,0,0,0,4,2,1,331,335014.66,-11918.645,193833.91,0,1671.395 -2440,3011,5412,5411,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,6.7677202,6.9803944,7,-3,-26.511044,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3063602,7.0308285,66.54000000000001,14.4,55.85,27.24,8.333333333333334,1,1,0,0,0,4,2,1,331,335014.66,-11918.645,193833.91,0,1671.395 -2441,3012,5413,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-996.94867,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,25.41,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,238,309445.84,159269.45,0,0,1219.17 -2442,3013,5414,5416,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,0,0,0,7,0,74.746658,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 -2442,3013,5415,-9,5414,5416,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.9452,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 -2442,3013,5416,5414,-9,-9,1,1,56,0,2,0,1,1,-9,0,4,8.7411108,8.6724033,0,7,9,-26.23155,0,3,3,2019,9,0,45,45,1,0,0,17.610218,17.610218,0,0,0,0,0,1,1,0,2.6983058,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 -2442,3013,5417,-9,5414,5416,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.67896,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,417,2018552.6,1665070,194307.55,18249.012,2828.918 -2443,3014,5418,5419,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.5279188,9.7492247,0,11,3,153.88052,0,2,1,2019,15,4,45,45,1,4,0,34.264263,34.264263,0,0,0,0,2,0,0,0,4.315464,0,46.33,55.93,51.14,60.45,8.333333333333334,2,3,0,0,10,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 -2443,3014,5419,5418,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,9.1373482,9.0420523,0,12,-3,30.752693,0,2,1,2019,10,0,41,44,1,0,0,29.639034,29.639034,0,0,0,0,0,0,0,0,7.2061977,0,51.14,60.45,46.33,55.93,8.333333333333334,1,1,0,0,9,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 -2443,3014,5420,-9,5418,5419,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3241,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 -2443,3014,5421,-9,5418,5419,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.8929,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,714.5,501657.81,67191.625,523131.53,284660.88,7422.0083 -2444,3015,5422,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,8.2012234,8.056448,0,0,-1178.9009,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.8538074,7.7428713,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,0,5,4,1,139,651517.13,897641.75,164027.66,0,2700.6599 -2445,3016,5423,5424,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.1376772,8.2639894,0,15,-3,109.1014,0,-9,-9,2019,13,1,45,55,1,1,0,7.5586867,7.5586867,0,0,0,0,7,1,1,0,0,0,42.86,55.92,57.16,56.15,5,1,1,0,0,10,7,3,0,964,95046.594,-63849.141,188703.59,70405.266,2598.4531 -2445,3016,5424,5423,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.0393453,6.8763909,0,21,3,-1.8009241,0,3,-9,2019,7,0,17,40,1,0,0,7.0313783,7.0313783,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.86,55.92,8.333333333333334,3,4,0,0,12,7,3,0,964,95046.594,-63849.141,188703.59,70405.266,2598.4531 -2446,3017,5425,5426,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,7.4789529,7.0746322,0,3,-4,1.9046401,0,3,-9,2019,13,1,30,40,1,1,0,6.3785105,6.3785105,0,0,0,0,0,0,0,0,0,0,46.38,42.58,52.23,35.61,6.666666666666667,1,1,0,1,7,5,4,0,356,95617.953,74282.977,68688.914,107312.58,1993.0333 -2446,3017,5426,5425,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,8.2393217,8.2288532,0,3,4,14.108717,0,-9,-9,2019,11,0,40,42,1,0,0,10.533115,10.533115,0,0,0,0,0,0,0,0,0,0,52.23,35.61,46.38,42.58,3.333333333333333,1,1,0,0,4,5,4,0,356,95617.953,74282.977,68688.914,107312.58,1993.0333 -2447,3018,5427,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.7868919,8.4769754,0,0,0,-902.49451,0,2,2,2019,8,0,38,38,1,0,0,17.613699,17.613699,0,0,0,0,0,0,0,0,0,0,50.4,55.04,-9,-9,6.666666666666667,1,1,0,0,13,11,5,1,899,559603.81,156154.06,176269.72,80560.234,2515.7446 -2447,3019,5428,-9,-9,5427,1,1,18,0,0,1,3,0,-9,0,5,0,3.3615115,2.9341505,0,0,-967.11517,-9,-9,2,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,2.9881132,0,38.46,62.48,-9,-9,0,1,1,0,1,0,11,2,1,835,64703.574,0,0,0,-277.25861 -2448,3020,5429,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5174513,6.0689526,0,0,-969.71857,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,3.340817,7.5205173,25.511745,0,1,1,0,0,6.620028,52,46,-9,-9,8,1,1,0,0,0,9,2,0,434,110407.76,162414.75,253960.97,0,1002.7826 -2449,3021,5430,-9,5431,5432,1,0,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-971.67255,-9,1,2,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,4.6354756,0,11.29,56.24,-9,-9,1.666666666666667,1,1,0,0,0,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 -2449,3021,5431,5432,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.6163054,8.4541922,5.9917574,13,-15,-4.8231497,0,3,2,2019,7,0,45,40,1,0,0,13.319732,13.319732,0,0,0,0,2,1,1,0,7.1175175,0,52,54.51,66.05,43.88,6.666666666666667,1,1,0,0,10,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 -2449,3021,5432,5431,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.3055725,8.168251,0,13,15,76.913223,0,3,3,2019,5,0,38,40,1,0,0,11.920523,11.920523,0,0,0,0,0,1,1,0,1.3622414,0,66.05,43.88,52,54.51,8.333333333333334,1,1,0,0,5,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 -2449,3021,5433,-9,5431,5432,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1086.241,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,5,0,1706.75,374488.63,134567.69,216441.94,0,3751.3774 -2450,3022,5434,5436,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.4903026,7.4665012,5.2491202,27,-5,-3.6454463,0,2,2,2019,9,0,20,26,1,0,0,8.9355268,8.9355268,0,0,0,0,7,1,1,0,5.0519791,0,54.96,53.17,58.57,46.25,8.333333333333334,1,1,0,0,12,7,4,1,609.66669,1739761.3,870591,600092.56,87042.055,2582.8926 -2450,3022,5435,-9,5434,5436,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.7573,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,609.66669,1739761.3,870591,600092.56,87042.055,2582.8926 -2450,3022,5436,5434,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,8.3293781,8.8754864,0,27,5,73.041138,0,-9,-9,2019,7,0,46,54,1,0,0,13.843707,13.843707,0,0,0,0,0,1,1,0,0,0,58.57,46.25,54.96,53.17,8.333333333333334,1,1,0,0,8,7,4,1,609.66669,1739761.3,870591,600092.56,87042.055,2582.8926 -2451,3023,5437,5438,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,5.8265619,6.3443098,5.1074066,41,1,.91939545,0,2,3,2019,6,0,6,6,1,0,0,7.1683393,7.1683393,0,0,0,0,0,1,1,0,0,5.0465698,56.94,49.53,51,48,6.666666666666667,1,1,0,0,10,6,4,1,2031.5,373177.38,73667.188,106972.09,0,2570.8811 -2451,3023,5438,5437,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6784782,8.6370983,0,8,-1,29.707155,0,-9,-9,2019,10,0,40,40,1,1,0,21.728867,21.728867,0,0,0,0,0,1,1,0,0,0,51,48,56.94,49.53,7,1,1,0,0,1,6,4,1,2031.5,373177.38,73667.188,106972.09,0,2570.8811 -2451,3024,5439,-9,5437,5438,1,1,36,0,0,0,2,2,-9,0,4,8.4682178,8.3172579,0,0,0,-917.81311,0,3,2,2019,10,0,40,40,1,1,1,9.0509472,9.0509472,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,6,4,1,336,516564.81,-130636.77,0,0,1804.8937 -2452,3025,5440,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1067.0953,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,43.911221,0,0,1,1,0,0,0,56.18,14.34,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,664,0,0,0,0,889.30975 -2453,3026,5441,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.4685078,7.8390145,0,0,-934.45374,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8528843,8.0022116,58.41,41.06,-9,-9,1.666666666666667,1,1,0,0,0,5,3,1,393,674389.31,89434.602,300713.69,0,1712.4766 -2454,3027,5442,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.2751312,8.4554338,6.430275,0,0,-1068.0195,0,2,-9,2019,15,5,39,39,1,5,0,11.723311,11.723311,0,0,0,0,0,1,1,0,6.2608905,0,27.98,63,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,608,-357787.47,-165614.36,0,0,1973.022 -2455,3028,5443,5445,-9,-9,1,1,63,0,1,0,1,1,-9,0,3,8.7701035,8.9464016,7.9790139,27,11,-12.298842,0,-9,-9,2019,8,0,43,47,1,0,0,18.605209,18.605209,0,0,0,0,0,0,0,0,0,7.9326348,57.33,53.46,34.07,17.28,5,1,1,0,0,12,8,5,1,681.66669,2828424.5,1806878.1,949276.25,111099.16,5752.9702 -2455,3028,5444,-9,5445,5443,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.5054,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,681.66669,2828424.5,1806878.1,949276.25,111099.16,5752.9702 -2455,3028,5445,5443,-9,-9,1,0,52,0,1,0,2,2,-9,0,1,8.6638079,8.9877071,0,10,-11,-71.658951,0,2,3,2019,27,11,44,47,1,11,0,19.634079,19.634079,0,0,0,0,0,0,0,0,0,0,34.07,17.28,57.33,53.46,3.333333333333333,2,3,0,1,12,8,5,1,681.66669,2828424.5,1806878.1,949276.25,111099.16,5752.9702 -2456,3029,5446,5447,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.1123805,7.3047976,0,8,-1,81.623825,0,3,3,2019,6,0,21,21,1,0,0,5.8643522,5.8643522,0,0,0,0,0,1,1,0,0,0,63.09,47.92,61.12,51.57,9,1,1,0,0,9,13,4,1,796.5,287526.75,-20568.609,0,0,3444.677 -2456,3029,5447,5446,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.0263948,8.1444044,4.726891,8,1,82.932404,0,3,-9,2019,7,0,46,46,1,0,0,8.3436718,8.3436718,0,0,0,0,0,1,1,0,4.0690389,4.2801771,61.12,51.57,63.09,47.92,1.666666666666667,1,1,0,0,9,13,4,1,796.5,287526.75,-20568.609,0,0,3444.677 -2457,3030,5448,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.6742268,7.5739174,0,0,-1083.6783,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.9516354,7.9118624,56.37,19.95,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,899,629907.63,91321.961,21998.504,0,2211.0676 -2458,3031,5449,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,6.4114318,6.6594481,0,0,-962.58203,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5776935,44.8,21.81,-9,-9,6.666666666666667,1,1,0,1,0,11,2,0,803,440509.72,317744.78,0,0,830.01685 -2459,3032,5450,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.4228473,7.6886067,0,0,0,-1006.3986,0,2,3,2019,17,6,30,42,1,6,0,8.0443039,8.0443039,0,0,0,0,0,0,0,0,0,0,25.2,66.67,-9,-9,3.333333333333333,1,1,0,0,5,13,3,0,493,-73195.141,0,0,0,1599.9675 -2460,3033,5451,5452,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3173275,8.3811207,0,3,-5,134.0291,0,-9,-9,2019,17,5,45,48,1,5,0,11.248995,11.248995,0,0,0,0,0,0,0,0,0,0,41.83,51.16,47.07,53.97,8.333333333333334,1,1,0,0,2,2,4,1,1311.5,295735.84,-1767.9453,165785.14,120456.06,2683.7192 -2460,3033,5452,5451,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.6498866,8.0986214,0,3,5,16.81658,0,2,2,2019,10,0,40,40,1,0,0,7.3338599,7.3338599,0,0,0,0,0,0,0,0,0,0,47.07,53.97,41.83,51.16,6.666666666666667,1,1,0,0,7,2,4,1,1311.5,295735.84,-1767.9453,165785.14,120456.06,2683.7192 -2461,3034,5453,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.4642267,7.8440876,0,0,-981.76013,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.3159485,8.0411777,53.71,49.66,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,297,921991.44,424147.09,21346.986,0,1540.4771 -2462,3035,5454,5455,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.2587686,7.1475959,0,18,1,-100.85663,0,-9,-9,2019,11,0,10,11,1,0,0,20.200783,20.200783,0,0,0,0,0,1,1,0,2.6053081,0,53.98,50.87,55.96,49.93,8.333333333333334,1,1,0,0,11,8,4,1,629.5,1251994,627367.13,362759.31,658.96045,2592.3228 -2462,3035,5455,5454,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.413065,8.3189659,0,18,-1,110.06584,0,3,3,2019,9,0,10,47,1,0,0,60.154381,60.154381,0,0,0,0,0,1,1,0,0,0,55.96,49.93,53.98,50.87,8.333333333333334,4,5,0,0,8,8,4,1,629.5,1251994,627367.13,362759.31,658.96045,2592.3228 -2462,3036,5456,-9,5454,5455,1,0,21,0,0,0,2,2,-9,1,4,7.1484919,7.104506,0,0,0,-1102.208,0,2,1,2019,12,0,19,47,1,2,1,7.1057215,7.1057215,0,0,0,0,0,1,1,0,2.566968,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,533,80789.031,0,0,0,1200.0471 -2463,3037,5457,-9,-9,-9,1,0,52,0,2,0,2,2,-9,1,3,8.9354935,9.1892071,5.7417226,0,0,-969.46216,0,2,-9,2019,10,0,36,37,1,0,0,34.308235,34.308235,0,0,0,0,2,1,1,0,6.21597,0,64.79000000000001,45.93,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,929.66669,48205.73,52545.402,0,0,3485.3213 -2463,3037,5458,-9,5457,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1171.4137,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,8,5,1,929.66669,48205.73,52545.402,0,0,3485.3213 -2463,3037,5459,-9,5457,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.00366,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,929.66669,48205.73,52545.402,0,0,3485.3213 -2464,3038,5460,5461,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.2188454,9.2740755,7.7823129,38,0,-75.714859,0,2,1,2019,8,0,47,48,1,0,0,24.119499,24.119499,0,0,0,0,7,0,0,0,6.4464326,8.0593748,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,296,1406904.3,909727.06,346903.31,0,8629.3213 -2464,3038,5461,5460,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7631512,8.6117754,38,0,-41.94717,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.5952778,8.4183578,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,6,5,1,296,1406904.3,909727.06,346903.31,0,8629.3213 -2465,3039,5462,5465,-9,-9,1,0,30,0,2,0,3,3,-9,1,3,0,0,0,12,-11,-52.260521,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.29,52.11,57.33,53.46,10,3,4,0,0,3,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 -2465,3039,5463,-9,5462,5465,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.8041,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 -2465,3039,5464,-9,5462,5465,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.02478,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 -2465,3039,5465,5462,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.1263518,6.9643788,0,12,11,1.0367544,0,2,1,2019,6,0,24,24,1,0,0,5.0840092,5.0840092,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,8.333333333333334,3,4,0,0,5,8,2,0,540.25,272888.5,0,430026.75,110585.52,3071.7336 -2466,3040,5466,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,0,0,-887.26599,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.65,41.46,-9,-9,6.666666666666667,1,1,0,1,0,6,1,1,522,-322353.44,0,0,0,62.701752 -2466,3041,5467,-9,5466,-9,1,1,47,0,0,0,2,2,-9,0,4,8.097518,7.8102918,0,0,0,-1001.1765,0,3,3,2019,9,0,44,42,1,0,0,7.2463713,7.2463713,0,0,0,0,0,1,1,0,3.0925453,0,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,2473,125035.93,0,0,0,337.92804 -2467,3042,5468,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.9332,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,217,909881.94,0,784476.25,0,2494.0906 -2468,3043,5469,5470,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.5563755,9.4987879,0,3,-3,-10.192417,-9,-9,-9,2019,12,0,40,0,1,0,0,45.400814,45.400814,0,0,0,0,0,0,0,0,0,0,50.32,49.66,51.81,50.46,8.333333333333334,1,1,0,0,2,10,5,1,239.5,1029742.8,179046.5,776790.88,205135.78,9123.9199 -2468,3043,5470,5469,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9440351,8.0056009,0,3,3,111.20648,0,3,2,2019,11,0,20,21,1,0,0,12.682763,12.682763,0,0,0,0,0,0,0,0,3.2528298,0,51.81,50.46,50.32,49.66,8.333333333333334,1,1,0,0,13,10,5,1,239.5,1029742.8,179046.5,776790.88,205135.78,9123.9199 -2469,3044,5471,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.5444317,8.1008892,7.4932947,0,0,-990.5351,0,-9,-9,2019,11,0,30,27,1,0,0,8.6699123,8.6699123,0,0,0,0,0,0,0,0,2.9282959,7.3549018,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,834,1433501.3,679534.31,533061.25,0,1989.635 -2469,3045,5472,-9,-9,5471,1,0,37,0,0,0,2,2,-9,0,1,7.9503131,7.7408571,0,0,0,-1097.8806,0,-9,1,2019,15,4,37,38,1,4,1,9.0475168,9.0475168,0,0,0,0,0,0,0,0,0,0,45.88,19.94,-9,-9,8.333333333333334,1,1,0,0,8,7,3,1,804,61395.766,42624.359,0,0,776.6297 -2470,3046,5473,5474,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.8202124,8.6548367,0,11,12,5.4361525,0,2,2,2019,11,1,48,48,1,1,0,15.654925,15.654925,0,0,0,0,0,0,0,0,3.7379911,0,56.6,47.06,46.1,59.99,5,1,1,0,0,11,10,5,1,625.5,881689.75,971317.25,0,0,3649.1992 -2470,3046,5474,5473,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.7526836,7.7941813,0,11,-12,33.362705,0,3,2,2019,4,0,5,5,1,0,0,49.866535,49.866535,0,0,0,0,2,0,0,0,0,0,46.1,59.99,56.6,47.06,8.333333333333334,1,1,0,0,10,10,5,1,625.5,881689.75,971317.25,0,0,3649.1992 -2471,3047,5475,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.3151298,5.6266189,0,0,-903.7157,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.0156636,45.07,25.5,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,301,34958.211,0,0,0,1235.161 -2472,3048,5476,5477,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.137682,8.1152391,0,28,5,-77.194626,0,3,3,2019,9,0,45,40,1,0,0,8.8355207,8.8355207,0,0,0,0,0,0,0,0,0,0,60.13,49.27,55.74,45.9,8.333333333333334,1,1,0,0,13,9,5,1,1905.5,684580.81,114340.35,507322.13,23810.082,3509.4951 -2472,3048,5477,5476,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4747829,8.3642817,0,28,-5,-94.979691,0,2,2,2019,9,0,50,55,1,0,0,10.715466,10.715466,0,0,0,0,14.5,0,0,0,2.669724,0,55.74,45.9,60.13,49.27,8.333333333333334,1,1,0,0,13,9,5,1,1905.5,684580.81,114340.35,507322.13,23810.082,3509.4951 -2472,3049,5478,-9,5476,5477,1,1,20,0,0,0,2,2,-9,0,4,7.893095,7.7536607,0,0,0,-945.73553,0,2,2,2019,13,1,40,37,1,1,1,8.36444,8.36444,0,0,0,0,0,0,0,0,3.4511514,0,37.05,59.96,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,709,419039.5,-50955.594,0,0,1340.5568 -2473,3050,5479,5480,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.2592764,9.0365181,6.5093737,7,2,161.06148,0,-9,-9,2019,7,0,70,65,1,0,0,9.9616861,9.9616861,0,0,0,0,0,0,0,0,6.2516336,6.8638816,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,8,5,1,673.5,3052412,2686618.5,370467,0,4973.3662 -2473,3050,5480,5479,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.7070513,8.5967121,0,7,-2,104.13161,0,-9,-9,2019,11,0,40,45,1,0,0,19.465235,19.465235,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,673.5,3052412,2686618.5,370467,0,4973.3662 -2474,3051,5481,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.3495407,7.735116,0,0,0,-1054.9713,0,2,-9,2019,5,0,6,6,1,0,0,39.837719,39.837719,0,0,0,0,0,1,1,0,0,0,57.34,47.92,-9,-9,8.333333333333334,3,4,0,1,6,8,3,0,330,377787.06,52569.617,241189.06,27513.254,2265.4487 -2474,3051,5482,-9,5481,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-880.09076,-9,1,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,-9,-9,6.666666666666667,4,2,0,0,0,8,3,0,330,377787.06,52569.617,241189.06,27513.254,2265.4487 -2475,3052,5483,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.2832174,9.0494213,0,0,0,-804.78943,0,2,1,2019,7,0,50,45,1,0,0,18.260271,18.260271,0,0,0,0,7,1,1,0,2.47469,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,576,1298306.3,1184319.5,0,0,2320.1245 -2475,3053,5484,-9,5483,-9,1,1,20,0,0,0,2,2,1,0,4,7.2514868,7.084805,0,0,0,-998.87006,-9,1,-9,2019,6,0,1,0,1,0,1,185.36021,185.36021,0,0,0,0,2,1,1,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,1221,-95163.07,0,0,0,653.37231 -2475,3054,5485,-9,5483,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1051.6566,-9,1,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,6,1,1,892,-91130.391,0,0,0,0 -2476,3055,5486,-9,5488,5489,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1024.515,-9,1,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,2.3461876,0,30.96,51.7,-9,-9,5,1,1,0,0,0,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 -2476,3055,5487,-9,5488,5489,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.65814,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 -2476,3055,5488,5489,-9,5490,1,0,44,0,1,0,1,1,-9,0,4,8.4467802,8.647953,0,21,-2,-50.497196,0,2,2,2019,10,0,47,55,1,0,0,13.477868,13.477868,0,0,0,0,7,1,1,0,0,0,50.4,55.04,53.96,50.73,8.333333333333334,1,1,0,0,7,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 -2476,3055,5489,5488,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.2528315,9.226944,0,7,2,7.5265517,0,2,1,2019,8,0,37,30,1,0,0,35.470158,35.470158,0,0,0,0,7,1,1,0,4.6945863,0,53.96,50.73,50.4,55.04,10,1,1,0,0,9,5,5,1,552,51566.313,36497.332,524464.56,171029.67,4434.6909 -2476,3056,5490,-9,-9,-9,1,1,88,0,1,0,3,3,-9,0,3,0,6.7393699,6.3708801,0,0,-901.69482,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,10.868907,0,0,1,1,0,0,6.594924,56,44,-9,-9,8,1,1,0,0,0,5,2,1,414,418271.94,44776.648,219452.95,0,868.70215 -2477,3057,5491,5492,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.829463,9.079896,0,6,3,67.990036,0,3,3,2019,3,0,40,40,1,0,0,20.574636,20.574636,0,0,0,0,0,0,0,0,4.5427475,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,5,5,1,625,597207.88,363823.44,147478.97,0,5357.2217 -2477,3057,5492,5491,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.6723289,8.5306721,0,6,-3,-85.344475,0,2,2,2019,7,0,30,30,1,0,0,21.89139,21.89139,0,0,0,0,0,0,0,0,7.1042781,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,5,5,1,625,597207.88,363823.44,147478.97,0,5357.2217 -2477,3058,5493,-9,5492,5491,1,1,21,0,0,1,2,0,0,0,5,0,7.4936175,6.9658465,0,0,-1004.0025,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.5709252,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,6,5,2,1,221,13225.561,-45042.117,0,0,1208.5377 -2477,3059,5494,-9,5492,5491,1,1,20,0,0,0,2,2,-9,0,4,8.4636478,8.1620474,0,0,0,-1142.3954,0,2,1,2019,9,0,70,70,1,0,1,7.7133789,7.7133789,0,0,0,0,0,0,0,0,3.8594322,0,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,1738,161299.73,0,0,0,1701.5377 -2477,3060,5495,-9,5492,5491,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.9249,-9,2,1,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.023386877,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,1198,179809.91,0,0,0,-505.76254 -2478,3061,5496,5497,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,38,0,-87.727638,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.34,53.29,42.88,45.53,8.333333333333334,1,1,0,0,5,6,3,0,1866.5,1176672.3,727956.88,404783.94,0,692.73456 -2478,3061,5497,5496,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.1625814,8.2774353,0,38,0,-36.838173,0,3,1,2019,11,1,50,65,1,1,0,9.4770451,9.4770451,0,0,0,0,0,0,0,0,6.5875459,0,42.88,45.53,54.34,53.29,5,1,1,0,0,9,6,3,0,1866.5,1176672.3,727956.88,404783.94,0,692.73456 -2479,3062,5498,5499,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.3041506,9.1102457,6.261045,6,0,40.604309,0,-9,-9,2019,8,0,39,40,1,0,0,29.158751,29.158751,0,0,0,0,0,1,1,0,6.1833782,0,54.2,57.49,52.31,58.29,8.333333333333334,1,1,0,0,13,2,5,1,333,408583.06,147034.84,643141.75,295373.34,3987.0938 -2479,3062,5499,5498,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8514476,7.9312263,0,6,0,-127.01189,0,2,2,2019,8,0,30,30,1,0,0,8.7916555,8.7916555,0,0,0,0,2,1,1,0,0,0,52.31,58.29,54.2,57.49,6.666666666666667,1,1,0,0,11,2,5,1,333,408583.06,147034.84,643141.75,295373.34,3987.0938 -2480,3063,5500,-9,5501,5502,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.33374,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,673.66669,1343783.8,792329.31,0,0,3081.5173 -2480,3063,5501,5502,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,8.3890123,8.3069954,0,10,-2,94.011459,0,-9,-9,2019,6,0,40,45,1,0,0,11.26125,11.26125,0,0,0,0,0,1,1,0,0,0,54.94,53.18,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,673.66669,1343783.8,792329.31,0,0,3081.5173 -2480,3063,5502,5501,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.4239702,8.2888651,0,10,2,17.740213,0,2,1,2019,6,0,40,40,1,0,0,12.723872,12.723872,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.94,53.18,8.333333333333334,1,1,0,0,11,12,5,1,673.66669,1343783.8,792329.31,0,0,3081.5173 -2481,3064,5503,5504,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.2455158,8.0673876,0,1,4,71.174828,-9,2,2,2019,4,0,45,0,1,0,0,9.3396358,9.3396358,0,0,0,0,2,0,0,0,0,0,59.14,52.5,49.97,56.66,10,1,1,0,0,10,13,4,1,373,-54099.816,14723.783,146586.23,114558.54,2312.2476 -2481,3064,5504,5503,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.8485956,7.9913945,0,1,-4,-62.83445,-9,1,2,2019,11,1,37,0,1,1,0,8.3529902,8.3529902,0,0,0,0,0,0,0,0,0,0,49.97,56.66,59.14,52.5,8.333333333333334,1,1,0,0,9,13,4,1,373,-54099.816,14723.783,146586.23,114558.54,2312.2476 -2482,3065,5505,5508,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6860104,8.3506479,0,7,4,-146.21834,0,2,2,2019,8,0,40,44,1,0,0,13.747592,13.747592,0,0,0,0,0,1,1,0,7.2699413,0,57.56,54.55,51,44.2,6.666666666666667,1,1,0,0,8,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 -2482,3065,5506,-9,5508,5505,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.0731,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 -2482,3065,5507,-9,5508,5505,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.3714,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 -2482,3065,5508,5505,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.4744701,7.6508112,0,7,-4,10.24886,0,2,2,2019,10,0,23,20,1,0,0,11.061929,11.061929,0,0,0,0,0,1,1,0,.78565395,0,51,44.2,57.56,54.55,1.666666666666667,1,1,0,0,7,9,4,1,678.5,411900.72,97753.695,198375.53,90134.164,3491.707 -2483,3066,5509,-9,5512,5513,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-923.87469,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 -2483,3066,5510,-9,5512,5513,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.01196,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 -2483,3066,5511,-9,5512,5513,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.165,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 -2483,3066,5512,5513,-9,-9,1,0,38,1,4,0,2,2,-9,0,4,6.2071738,6.1249499,0,15,-1,120.50224,0,-9,-9,2019,12,0,11,11,1,0,0,5.2083836,5.2083836,0,0,0,0,0,1,1,0,3.4877472,0,50.11,54.04,42.55,56.21,8.333333333333334,1,1,0,0,6,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 -2483,3066,5513,5512,-9,-9,1,1,39,1,4,0,1,1,-9,0,3,8.4873457,9.1218567,0,15,1,24.075966,0,2,1,2019,16,4,63,66,1,4,0,13.950126,13.950126,0,0,0,0,0,1,1,0,3.5616627,0,42.55,56.21,50.11,54.04,3.333333333333333,2,3,0,0,10,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 -2483,3066,5514,-9,5512,5513,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.9058,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,3,0,513.33331,400248.44,34649.125,344123.5,95467.125,2730.5151 -2484,3067,5515,5516,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.347147,8.933857,0,2,-1,77.845695,0,-9,-9,2019,10,0,37,37,1,1,0,21.302544,21.302544,0,0,0,0,0,0,0,0,5.6593075,0,49,58,57.06,57.76,7,4,1,0,0,1,11,5,0,900,-131344.06,-96073.664,0,0,4420.541 -2484,3067,5516,5515,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3009453,8.5070171,0,2,1,76.168259,0,2,2,2019,8,1,37,37,1,1,0,11.360277,11.360277,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49,58,8.333333333333334,1,1,0,0,7,11,5,0,900,-131344.06,-96073.664,0,0,4420.541 -2485,3068,5517,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1030.9327,0,3,2,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39,27,-9,-9,10,1,1,0,0,0,4,1,0,895,206782.45,0,33939.727,0,973.19751 -2486,3069,5518,5519,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.7706594,7.8295226,6,0,73.43264,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1121254,8.0177202,53.61,52.37,48.21,50.73,10,1,1,0,0,0,11,4,1,807.5,1165369.6,1045585.6,194354.41,0,4052.2566 -2486,3069,5519,5518,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.6998911,7.5062852,6,0,-3.8935866,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.184576,7.6809897,48.21,50.73,53.61,52.37,8.333333333333334,1,1,0,0,3,11,4,1,807.5,1165369.6,1045585.6,194354.41,0,4052.2566 -2487,3070,5520,5521,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.5635233,8.466836,0,7,-2,11.95445,0,2,2,2019,9,0,47,52,1,0,0,15.094611,15.094611,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51,56,8.333333333333334,1,1,0,0,8,9,5,1,726,1063268.5,502837.31,498220.44,0,4296.0723 -2487,3070,5521,5520,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5294008,8.8955154,0,7,2,-84.555481,0,-9,-9,2019,9,0,40,40,1,1,0,13.44903,13.44903,0,0,0,0,0,0,0,0,0,0,51,56,54.69,57.47,8,1,1,0,0,1,9,5,1,726,1063268.5,502837.31,498220.44,0,4296.0723 -2488,3071,5522,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,5.6543384,5.5968132,0,0,0,-973.68268,0,3,2,2019,2,0,45,-9,1,0,0,.64900297,.64900297,0,0,0,0,0,0,0,0,7.3482084,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1705,147060.19,0,0,0,661.69269 -2489,3072,5523,5524,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.4416132,8.45362,51,-1,-45.998589,0,3,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6553097,8.5947161,49.62,38.62,53.3,31.12,6.666666666666667,1,1,0,0,0,4,3,1,753.5,1300591.5,702908.75,343001.47,0,4768.979 -2489,3072,5524,5523,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,51,1,129.30345,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7377877,0,53.3,31.12,49.62,38.62,8.333333333333334,1,1,0,0,0,4,3,1,753.5,1300591.5,702908.75,343001.47,0,4768.979 -2490,3073,5525,-9,5526,5527,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.06738,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,0,1081.3334,-111752.02,39881.223,209749.23,178227.78,3680.6125 -2490,3073,5526,5527,-9,-9,1,0,26,1,1,0,1,1,-9,0,4,8.1817884,8.3851862,0,1,1,-134.45795,-9,-9,-9,2019,11,0,35,0,1,2,0,12.646165,12.646165,0,0,0,0,0,1,1,0,0,0,46,58,52.66,56.94,7,1,1,0,0,1,5,5,0,1081.3334,-111752.02,39881.223,209749.23,178227.78,3680.6125 -2490,3073,5527,5526,-9,-9,1,1,25,1,1,0,2,2,-9,0,5,8.3316374,8.2577257,0,1,-1,-28.907043,-9,2,2,2019,4,0,40,0,1,0,0,14.007887,14.007887,0,0,0,0,0,1,1,0,0,0,52.66,56.94,46,58,8.333333333333334,1,1,0,0,9,5,5,0,1081.3334,-111752.02,39881.223,209749.23,178227.78,3680.6125 -2491,3074,5528,5529,-9,-9,1,0,57,0,0,0,2,2,-9,1,5,7.843833,8.1193562,0,10,-3,102.29693,0,2,2,2019,19,7,32,34,1,7,0,12.191976,12.191976,0,0,0,0,5.48,1,1,0,.98375285,0,34.44,67.98,37.41,46.83,5,1,1,0,0,11,11,5,1,590,906713.63,217991.03,241710.56,0,3763.2808 -2491,3074,5529,5528,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.6168461,8.4555035,6.0014429,10,3,199.55661,0,3,3,2019,18,6,38,37,1,6,0,15.381262,15.381262,0,0,0,0,0,1,1,0,3.6539917,5.9643936,37.41,46.83,34.44,67.98,3.333333333333333,1,1,0,0,10,11,5,1,590,906713.63,217991.03,241710.56,0,3763.2808 -2492,3075,5530,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.3624983,8.8311367,6.6563044,0,0,-1056.4916,0,2,2,2019,12,1,32,40,1,1,0,14.194203,14.194203,0,0,0,0,0,1,1,0,0,6.6610379,42.28,47.94,-9,-9,6.666666666666667,1,1,0,0,10,1,5,1,745,2571097.3,840303.88,1162755.4,0,2130.3054 -2493,3076,5531,5532,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,8,7,0,-9,2,1,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,48,49,7,1,1,0,0,0,2,1,1,184.5,-98894.445,0,0,0,788.65393 -2493,3076,5532,5531,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,8,-7,0,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,51,48,7,1,1,0,0,0,2,1,1,184.5,-98894.445,0,0,0,788.65393 -2494,3077,5533,5534,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.2905827,8.3138351,0,6,2,1.0558149,0,-9,-9,2019,11,0,40,40,1,0,0,11.704887,11.704887,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.47,56.81,8.333333333333334,1,1,0,0,9,10,4,1,553.66669,156289.41,22311.174,115334.88,72834.297,2611.3772 -2494,3077,5534,5533,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.6804633,7.7305732,0,6,-2,-4.3422546,0,3,3,2019,10,0,40,40,1,0,0,10.976679,10.976679,0,0,0,0,0,1,1,0,0,0,41.47,56.81,54.2,57.49,6.666666666666667,1,1,0,0,9,10,4,1,553.66669,156289.41,22311.174,115334.88,72834.297,2611.3772 -2494,3077,5535,-9,5534,5533,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-956.37909,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,553.66669,156289.41,22311.174,115334.88,72834.297,2611.3772 -2495,3078,5536,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.6983166,7.9225006,0,0,-937.32068,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2989807,8.1068659,62.1,51.16,-9,-9,10,1,1,0,0,0,5,3,1,1263,115819.52,149705.7,111374.52,0,2584.0881 -2496,3079,5537,5538,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.0440922,8.0191078,44,7,141.79454,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7141085,8.0592985,54.96,53.17,61.04,39.41,8.333333333333334,1,1,0,0,0,7,3,1,426,1628221.8,704730.5,262321.5,0,4206.6079 -2496,3079,5538,5537,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9432302,6.0528812,44,-7,-16.142639,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0330138,5.8357158,61.04,39.41,54.96,53.17,8.333333333333334,1,1,0,0,0,7,3,1,426,1628221.8,704730.5,262321.5,0,4206.6079 -2497,3080,5539,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.344254,7.802103,0,0,0,-969.45325,0,3,3,2019,15,3,33,33,1,3,0,7.0418291,7.0418291,0,0,0,0,0,1,1,0,0,0,44.71,42.13,-9,-9,3.333333333333333,1,1,0,1,6,8,3,0,456,192112.78,-49859.027,0,0,1188.5165 -2498,3081,5540,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.4421,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.2730908,0,55.79,52.62,-9,-9,10,1,1,0,0,8,12,1,1,275,-154976.95,0,0,0,1288.286 -2499,3082,5541,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1151.1851,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,2.6199634,0,27.63,26.97,-9,-9,5,1,1,0,0,0,6,1,1,148,-146127.39,0,0,0,1049.0353 -2500,3083,5542,5543,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9271049,7.6629272,0,37,0,-58.226097,0,2,3,2019,30,12,30,30,1,12,0,7.5033841,7.5033841,0,0,0,0,7,0,0,0,0,0,20.85,62.14,56.37,34.68,5,1,1,0,0,11,6,5,1,507.5,54550.023,314399.38,222969.47,92939.719,2910.1191 -2500,3083,5543,5542,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.6514034,8.961628,0,37,0,5.0363483,0,3,3,2019,15,4,35,35,1,4,0,19.390198,19.390198,0,0,0,0,0,0,0,0,3.281523,0,56.37,34.68,20.85,62.14,8.333333333333334,1,1,0,0,11,6,5,1,507.5,54550.023,314399.38,222969.47,92939.719,2910.1191 -2501,3084,5544,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.2210851,6.1685209,0,0,-1007.869,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6212435,5.7678299,62.99,49.54,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,2061,569243.81,66536.57,551721,0,1031.9049 -2502,3085,5545,5546,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,55,-3,114.61077,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2050385,0,57.33,53.46,52.23,55.6,10,1,1,0,0,7,10,2,1,900,1112127,478526.94,283197.66,0,1652.6622 -2502,3085,5546,5545,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.2714663,6.956573,55,3,47.858894,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3452787,7.4472394,52.23,55.6,57.33,53.46,10,1,1,0,0,0,10,2,1,900,1112127,478526.94,283197.66,0,1652.6622 -2503,3086,5547,-9,5549,5551,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.42505,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 -2503,3086,5548,-9,5549,5551,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.6732,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 -2503,3086,5549,5551,-9,-9,1,0,40,1,3,0,2,2,-9,0,2,6.8006887,7.0359464,0,9,2,-13.928873,0,-9,-9,2019,13,3,13,14,1,3,0,10.900223,10.900223,0,0,0,0,0,0,0,0,0,0,52.64,35.91,46.44,59.62,5,1,1,0,0,11,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 -2503,3086,5550,-9,5549,5551,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.439,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 -2503,3086,5551,5549,-9,-9,1,1,38,1,3,0,1,1,-9,0,4,9.3715677,9.6266279,0,9,-2,-85.182938,0,-9,-9,2019,8,0,49,49,1,0,0,23.884768,23.884768,0,0,0,0,0,0,0,0,4.0633836,0,46.44,59.62,52.64,35.91,6.666666666666667,1,1,0,0,11,12,5,1,514.79999,-14884.295,0,365241.44,270089.22,4413.7769 -2504,3087,5552,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.5555687,8.7606287,0,0,0,-1080.7799,0,3,3,2019,10,0,40,60,1,0,0,20.952887,20.952887,0,0,0,0,7,0,0,0,3.4016979,0,47.55,52.2,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,995,327193.06,261177.14,193542.83,165509.7,2811.6763 -2505,3088,5553,5554,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,7.7232871,7.7008038,0,13,-6,82.719322,0,2,2,2019,8,1,50,40,1,1,0,4.478426,4.478426,0,0,0,0,5.48,0,0,0,1.6486088,0,50.03,52.62,34.06,51.94,6.666666666666667,1,1,0,0,8,8,4,0,1230,-50973.156,42235.984,0,0,1972.5076 -2505,3088,5554,5553,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,7.6527209,7.829258,0,13,6,-17.595779,0,2,2,2019,14,3,50,45,1,3,0,5.2055707,5.2055707,0,0,0,0,0,0,0,0,.87288964,0,34.06,51.94,50.03,52.62,3.333333333333333,1,1,0,0,8,8,4,0,1230,-50973.156,42235.984,0,0,1972.5076 -2506,3089,5555,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.5836124,8.5523453,0,0,0,-840.47681,0,3,3,2019,11,0,43,38,1,0,0,12.833962,12.833962,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,3.333333333333333,1,1,0,0,10,13,5,1,753,317340.22,161176.91,143544.05,126580.71,1953.9922 -2507,3090,5556,5558,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.2225194,7.203774,0,7,-6,-13.276506,0,-9,-9,2019,8,1,35,35,1,1,0,4.8465123,4.8465123,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,55.79,52.62,8.333333333333334,1,1,0,0,9,6,4,1,607.66669,638237.13,165516.73,494875.31,88717.078,3633.5811 -2507,3090,5557,-9,5556,5558,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.86755,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,607.66669,638237.13,165516.73,494875.31,88717.078,3633.5811 -2507,3090,5558,5556,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.869813,8.9725676,7.1635599,23,6,74.127625,0,2,2,2019,7,0,42,42,1,0,0,14.576994,14.576994,0,0,0,0,0,1,1,0,0,6.8414006,55.79,52.62,62.39,56.71,8.333333333333334,1,1,0,0,9,6,4,1,607.66669,638237.13,165516.73,494875.31,88717.078,3633.5811 -2507,3091,5559,-9,5556,5558,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1100.3528,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.5809052,0,46,59,-9,-9,7,1,1,0,0,0,6,1,1,669,-459112.31,0,0,0,212.84143 -2508,3092,5560,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.1765,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,39.772465,0,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,4,1,1,4272,136054.84,0,119103.36,0,861.72559 -2509,3093,5561,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.1714201,7.8264327,0,1,-2,98.543007,0,2,1,2019,5,0,48,48,1,0,0,10.418814,10.418814,0,0,0,0,0,0,0,0,1.903165,0,57.31,56.49,50,57,8.333333333333334,1,1,0,0,10,7,3,0,305,-164632.06,79139.328,0,0,805.32813 -2510,3094,5562,5564,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.0310163,8.1366844,0,6,-1,-57.625656,0,-9,-9,2019,6,0,40,38,1,0,0,7.5535793,7.5535793,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.12,57.28,8.333333333333334,1,1,0,0,5,9,4,0,749,-120369.13,0,0,0,2878.9053 -2510,3094,5563,-9,5564,5562,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-941.67896,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,0,749,-120369.13,0,0,0,2878.9053 -2510,3094,5564,5562,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.9441199,8.4692612,0,6,1,-19.568104,0,2,2,2019,6,0,31,31,1,0,0,11.80201,11.80201,0,0,0,0,0,1,1,0,0,0,49.12,57.28,57.33,53.46,10,1,1,0,0,9,9,4,0,749,-120369.13,0,0,0,2878.9053 -2511,3095,5565,-9,-9,5568,1,1,52,0,0,0,2,2,-9,0,4,9.0932159,8.7941465,0,0,0,-1031.1077,0,2,2,2019,9,0,37,50,1,1,0,28.044752,28.044752,0,0,0,0,0,1,1,0,1.2860922,0,53,54,-9,-9,8,3,4,0,0,10,8,5,1,690,1055838.3,767326,308130.69,0,2669.8274 -2511,3096,5566,-9,-9,5565,1,1,34,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1035.6582,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,1,421,-257741.45,0,0,0,818.74664 -2511,3097,5567,-9,-9,5565,1,1,30,0,0,0,2,2,-9,0,4,7.7979131,7.8724008,0,0,0,-1013.6271,0,2,2,2019,10,0,35,36,1,1,1,8.0459328,8.0459328,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,3,1,664,-17118.846,-109545.85,0,0,1011.8891 -2511,3098,5568,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.11218,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,8,1,1,603,-187739.45,0,0,0,1529.6117 -2512,3099,5569,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,4.9374075,4.672523,0,0,-1051.8217,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0938516,4.6926684,63.6,23.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,837,-36116.434,0,0,0,1441.9408 -2513,3100,5570,-9,5572,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.7894,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,1082,84017.078,34449.41,101368.34,79474.266,1891.569 -2513,3100,5571,-9,5572,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.2301,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,1082,84017.078,34449.41,101368.34,79474.266,1891.569 -2513,3100,5572,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5561619,7.5154047,0,0,0,-943.30731,-9,-9,-9,2019,13,1,31,0,1,1,0,6.6028666,6.6028666,0,0,0,0,0,1,1,0,0,0,39.75,54.92,-9,-9,3.333333333333333,1,1,0,1,10,6,3,1,1082,84017.078,34449.41,101368.34,79474.266,1891.569 -2514,3101,5573,5574,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.8010039,6.6788526,40,3,-51.500107,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5223055,48,37,32.15,45.39,1.666666666666667,1,1,0,0,9,10,3,1,248.5,-10482.396,85854.109,175984.41,0,2542.0554 -2514,3101,5574,5573,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.8103762,6.9758496,0,40,-3,-50.408298,-9,3,3,2019,13,1,15,0,1,1,0,5.9662857,5.9662857,0,0,0,0,7,1,1,0,0,0,32.15,45.39,48,37,0,1,1,0,0,12,10,3,1,248.5,-10482.396,85854.109,175984.41,0,2542.0554 -2515,3102,5575,5576,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.7726908,8.845252,0,10,-7,44.816673,0,-9,-9,2019,6,0,45,45,1,0,0,18.950457,18.950457,0,0,0,0,0,1,1,0,4.3239737,0,60.02,56.42,54.07,52.08,10,3,4,0,0,13,8,5,1,815.5,2386028.5,1306704.5,915654.5,301780.13,7695.4731 -2515,3102,5576,5575,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,8.2604284,8.6953392,8.1122942,30,7,27.184603,0,3,2,2019,7,0,35,35,1,0,0,14.948149,14.948149,0,0,0,0,0,1,1,0,7.6543975,7.9912896,54.07,52.08,60.02,56.42,0,4,2,0,0,13,8,5,1,815.5,2386028.5,1306704.5,915654.5,301780.13,7695.4731 -2516,3103,5577,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.8508015,8.8872414,0,0,0,-1020.66,0,2,3,2019,11,0,50,45,1,2,0,12.831679,12.831679,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,7,2,3,0,1,6,8,5,0,877,-145136.69,105694.09,0,0,2417.0522 -2517,3104,5578,5579,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,7.5457301,7.5445194,0,10,-1,132.42911,0,3,3,2019,13,2,28,26,1,2,0,8.7874269,8.7874269,0,0,0,0,0,0,0,0,0,0,40.73,41.31,57.16,56.15,1.666666666666667,1,1,0,0,12,6,5,1,700.5,133529.63,26325.174,168541.5,99633.727,2733.5679 -2517,3104,5579,5578,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.3137741,8.9130516,6.5809426,10,1,176.30235,0,3,3,2019,6,0,44,44,1,0,0,15.34924,15.34924,0,0,0,0,0,0,0,0,0,6.7288685,57.16,56.15,40.73,41.31,8.333333333333334,1,1,0,0,12,6,5,1,700.5,133529.63,26325.174,168541.5,99633.727,2733.5679 -2517,3105,5580,-9,5578,5579,1,0,19,0,0,0,2,2,-9,0,2,7.3364687,7.5268106,0,0,0,-1020.4718,-9,3,3,2019,33,12,45,0,1,12,1,4.5087843,4.5087843,0,0,0,0,0,0,0,0,0,0,16.31,56.57,-9,-9,1.666666666666667,1,1,0,0,2,6,3,1,525,-218840.92,0,0,0,951.32898 -2518,3106,5581,5582,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,4.1910796,4.0628715,19,7,57.726616,0,2,2,2019,4,0,0,0,4,0,0,0,0,1,0,0,.17796911,0,1,1,0,0,4.0784764,63.48,51.85,47.14,45.79,8.333333333333334,1,1,0,0,5,8,2,0,619.5,1277326.3,555430.75,395371.69,0,1253.0278 -2518,3106,5582,5581,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,26,-7,-23.117729,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.14,45.79,63.48,51.85,10,1,1,0,0,3,8,2,0,619.5,1277326.3,555430.75,395371.69,0,1253.0278 -2518,3107,5583,-9,5582,5581,1,0,18,0,0,0,2,2,1,0,3,7.9215155,7.3125877,0,0,0,-1072.2307,-9,3,1,2019,14,4,45,0,1,4,0,5.1641221,5.1641221,0,0,0,0,0,1,1,0,0,0,31.54,58.69,-9,-9,8.333333333333334,1,1,0,0,1,8,3,0,1615,-246211.22,22852.215,0,0,737.56171 -2519,3108,5584,-9,5585,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.21002,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,5,-9,0,0,7,1,0,696,0,0,0,0,1180.5542 -2519,3108,5585,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1003.0065,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.24,32.39,-9,-9,8.333333333333334,4,5,0,0,0,7,1,0,696,0,0,0,0,1180.5542 -2520,3109,5586,-9,-9,5587,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.34515,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,1215,61703.379,0,0,0,704.3595 -2520,3109,5587,-9,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1082.1062,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,41.36,-9,-9,6.666666666666667,3,4,1,0,0,2,1,0,1215,61703.379,0,0,0,704.3595 -2521,3110,5588,5589,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,8.3319826,8.1681089,0,19,4,-50.261791,0,2,2,2019,8,0,46,47,1,0,0,8.1480961,8.1480961,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.38,42.26,8.333333333333334,1,1,0,0,9,5,4,1,447.5,1364039.3,1136619.5,260081.22,112086.63,3177.3428 -2521,3110,5589,5588,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.2693691,8.176959,0,19,-4,86.861542,0,3,2,2019,17,5,45,50,1,5,0,9.7606936,9.7606936,0,0,0,0,0,0,0,0,6.8112912,0,43.38,42.26,57.16,56.15,6.666666666666667,1,1,0,0,8,5,4,1,447.5,1364039.3,1136619.5,260081.22,112086.63,3177.3428 -2521,3111,5590,-9,5588,5589,1,0,21,0,0,0,2,2,-9,0,3,7.2077646,7.034513,0,0,0,-1030.0337,0,3,2,2019,10,0,40,45,1,0,1,4.6170812,4.6170812,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,753,-370922,0,0,0,956.62073 -2522,3112,5591,-9,5594,5592,1,0,18,0,2,0,2,2,1,0,4,8.1689463,8.297555,0,0,0,-1012.475,-9,2,2,2019,4,0,45,0,1,0,1,8.9424725,8.9424725,0,0,0,0,0,1,1,0,0,0,58.33,47.36,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,2429,-174251.5,31074.018,0,0,1642.8851 -2522,3113,5592,5594,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,7.8630447,7.6793141,0,10,3,-37.466248,0,-9,-9,2019,9,1,45,40,1,1,0,7.2858381,7.2858381,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,6.666666666666667,1,1,0,0,11,2,4,1,1497.3334,-60826.082,17811.904,130791.99,72631.055,3134.7422 -2522,3113,5593,-9,5594,5592,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.76263,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1497.3334,-60826.082,17811.904,130791.99,72631.055,3134.7422 -2522,3113,5594,5592,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.3228149,8.3595705,4.8608022,10,-3,-39.566132,0,2,2,2019,11,0,39,40,1,0,0,13.371877,13.371877,0,0,0,0,2,1,1,0,5.6304488,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,11,2,4,1,1497.3334,-60826.082,17811.904,130791.99,72631.055,3134.7422 -2523,3114,5595,5596,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.5718307,7.5342302,0,50,-1,-60.032341,0,2,-9,2019,7,0,24,37,1,0,0,7.8085456,7.8085456,0,0,0,0,0,1,1,0,2.2117186,0,59.14,52.5,55.3,55.6,0,1,1,0,0,10,10,3,1,478,1037826.7,186553.5,302929.5,0,2356.0356 -2523,3114,5596,5595,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,8,1,8.9997406,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.3,55.6,59.14,52.5,8.333333333333334,1,1,0,0,9,10,3,1,478,1037826.7,186553.5,302929.5,0,2356.0356 -2524,3115,5597,5598,-9,-9,1,1,60,0,0,0,1,1,-9,1,1,0,4.9284348,5.1181307,6,5,-138.78685,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2756104,56.18,15.25,54.1,59.11,3.333333333333333,1,1,0,0,0,10,3,0,1258.5,550199.63,0,379167.88,0,1693.5991 -2524,3115,5598,5597,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.9544206,7.4694576,0,6,-5,77.827568,0,3,3,2019,7,0,38,32,1,0,0,6.0872726,6.0872726,0,0,0,0,0,1,1,0,0,0,54.1,59.11,56.18,15.25,8.333333333333334,1,1,0,0,7,10,3,0,1258.5,550199.63,0,379167.88,0,1693.5991 -2524,3116,5599,-9,5598,5597,1,0,20,0,0,0,1,1,-9,0,5,7.4476485,7.839396,0,0,0,-955.88074,0,2,1,2019,7,0,32,32,1,0,1,6.5224905,6.5224905,0,0,0,0,0,1,1,0,1.0129803,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,5,10,3,0,340,-269539.72,0,0,0,793.59302 -2525,3117,5600,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.1112547,8.8554764,1.9150163,0,0,-986.07654,0,3,3,2019,6,0,50,50,1,0,0,22.499262,22.499262,0,0,0,0,2,0,0,0,0,2.0767326,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,290,926358.94,729629.44,273003.06,0,2871.7136 -2526,3118,5601,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.0242105,6.6260319,0,0,-1098.702,0,-9,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8238096,45.12,45.4,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,206,400030.91,149136.84,0,0,750.19397 -2527,3119,5602,5603,-9,-9,1,0,51,0,2,0,1,1,-9,0,5,0,8.1012945,8.2426853,31,-5,-39.573425,0,2,2,2019,9,0,0,53,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4246497,8.3973112,49.25,61.25,47.95,32.2,8.333333333333334,1,1,0,0,9,10,5,1,425.66666,1007333.6,880798.75,321215.59,118673,4775.2354 -2527,3119,5603,5602,-9,-9,1,1,56,0,2,0,1,1,-9,0,2,9.0261717,9.3424454,0,31,5,-15.16078,0,2,2,2019,16,4,40,40,1,4,0,30.385441,30.385441,0,0,0,0,0,1,1,0,0,0,47.95,32.2,49.25,61.25,5,1,1,0,0,12,10,5,1,425.66666,1007333.6,880798.75,321215.59,118673,4775.2354 -2527,3119,5604,-9,5602,5603,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1002.6523,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,425.66666,1007333.6,880798.75,321215.59,118673,4775.2354 -2528,3120,5605,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.7660141,8.0824881,6,0,-112.19369,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.1125586,8.0602045,53.37,41.63,52.43,42.16,8.333333333333334,1,1,0,0,0,4,3,1,519,1162659.1,480438.22,185123.02,0,1391.1189 -2528,3121,5606,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.2310724,7.414772,6,0,-75.886826,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.7625012,7.4103842,52.43,42.16,53.37,41.63,8.333333333333334,1,1,0,0,7,4,3,1,565,255327.66,248244.88,121836.06,0,307.13712 -2529,3122,5607,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.6819868,8.5015402,0,0,0,-844.44263,0,2,2,2019,19,7,60,50,1,7,0,8.893796,8.893796,0,0,0,0,0,1,1,0,1.2196993,0,38.65,59.48,-9,-9,1.666666666666667,1,1,0,0,11,9,5,1,3128,124907.53,164238.08,0,0,1931.8081 -2530,3123,5608,5609,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,42,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.34,40.86,35.6,32.86,8.333333333333334,1,1,0,0,0,6,1,0,378.5,125201.35,0,151023.5,0,1057.2899 -2530,3123,5609,5608,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,9,-11,0,0,-9,-9,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.6,32.86,48.34,40.86,3.333333333333333,1,1,0,0,0,6,1,0,378.5,125201.35,0,151023.5,0,1057.2899 -2531,3124,5610,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.8562422,8.0862446,0,0,0,-980.30817,0,3,3,2019,9,0,42,42,1,0,0,8.4027967,8.4027967,0,0,0,0,0,0,0,0,0,0,47.15,56.66,-9,-9,5,2,3,0,0,9,2,4,1,527,131826.19,2651.438,0,0,1279.6898 -2532,3125,5611,5612,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.4211478,6.3554277,10,-2,122.40217,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4714575,6.1680264,52.99,51.28,59.43,58.05,10,1,1,0,0,4,10,3,1,844.5,416601.97,86200.016,19184.223,0,2596.4797 -2532,3125,5612,5611,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,7.4307642,7.433763,10,2,-81.468086,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4642849,59.43,58.05,52.99,51.28,10,1,1,0,0,0,10,3,1,844.5,416601.97,86200.016,19184.223,0,2596.4797 -2533,3126,5613,-9,5615,5614,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.96759,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,9,4,1,755,1516720,368701.38,722006.81,354287,3962.5156 -2533,3126,5614,5615,-9,-9,1,1,52,0,2,0,1,1,-9,0,5,8.4035664,8.2044954,0,12,13,-.47244793,0,-9,-9,2019,8,1,40,40,1,1,0,10.686552,10.686552,0,0,0,0,0,1,1,0,0,0,59.43,58.05,66.44,47.81,8.333333333333334,3,4,0,0,13,9,4,1,755,1516720,368701.38,722006.81,354287,3962.5156 -2533,3126,5615,5614,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.0252142,7.9324069,0,8,-13,5.8568387,0,-9,-9,2019,6,0,42,42,1,0,0,7.5980263,7.5980263,0,0,0,0,0,1,1,0,0,0,66.44,47.81,59.43,58.05,1.666666666666667,3,4,0,0,5,9,4,1,755,1516720,368701.38,722006.81,354287,3962.5156 -2534,3127,5616,5617,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.0617447,8.645505,0,5,4,46.051208,0,3,3,2019,6,0,38,40,1,0,0,18.973463,18.973463,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.79,52.62,8.333333333333334,1,1,0,0,11,9,5,1,948.5,592565.81,547936.94,222617.75,130696.59,5557.3828 -2534,3127,5617,5616,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.7184496,8.8485842,7.0176191,5,-4,-35.332512,0,-9,-9,2019,8,0,37,31,1,0,0,22.139856,22.139856,0,0,0,0,0,0,0,0,2.9288945,7.5687494,55.79,52.62,57.16,56.15,8.333333333333334,1,1,0,0,11,9,5,1,948.5,592565.81,547936.94,222617.75,130696.59,5557.3828 -2535,3128,5618,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,8.6320887,8.63974,0,0,0,-978.05786,0,3,3,2019,15,4,57,39,1,4,0,11.048191,11.048191,0,0,0,0,0,0,0,0,0,0,39.11,35.1,-9,-9,5,2,3,0,0,6,8,5,0,96,387098.25,514408.84,0,0,2369.0857 -2536,3129,5619,5620,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.5505466,7.6082115,0,1,-1,-8.2959337,-9,2,2,2019,15,3,30,0,1,3,0,7.9045672,7.9045672,0,0,0,0,0,0,0,0,0,0,41.23,59.35,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,454.5,236930.94,13555.13,299529.75,134873.69,4410.6401 -2536,3129,5620,5619,-9,-9,1,1,28,0,0,0,3,3,-9,0,5,9.2184038,9.0869541,0,1,1,-92.951164,-9,-9,-9,2019,8,0,126,0,1,0,0,9.1864853,9.1864853,0,0,0,0,0,0,0,0,0,0,54.1,59.11,41.23,59.35,10,1,1,0,0,4,9,5,1,454.5,236930.94,13555.13,299529.75,134873.69,4410.6401 -2537,3130,5621,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,8.6124687,8.5721035,0,0,0,-972.96747,-9,3,2,2019,9,0,59,0,1,1,0,11.082924,11.082924,0,0,0,0,0,1,1,0,0,0,57.89,46.51,-9,-9,10,3,4,0,0,12,8,4,0,1092,-97964.023,10606.71,318462.19,75944.43,2365.4795 -2538,3131,5622,-9,-9,-9,1,0,28,0,1,0,3,3,-9,1,4,0,0,0,0,0,-923.77747,-9,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,42,1,0,1,0,0,60,48.06,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,786,-60582.098,0,0,0,1235.5219 -2539,3132,5623,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.3067846,8.2099838,6.188488,0,0,-897.01776,0,3,2,2019,13,4,45,40,1,4,0,12.069,12.069,0,0,0,0,0,1,1,0,6.4412136,0,51.25,50.81,-9,-9,7,1,1,0,1,9,10,4,0,929.5,347102.84,40382.402,293377.88,0,2157.2935 -2539,3132,5624,-9,5623,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.6826,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,4,0,929.5,347102.84,40382.402,293377.88,0,2157.2935 -2540,3133,5625,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.0593472,9.0001736,0,0,0,-951.91119,0,3,3,2019,8,0,42,40,1,0,0,20.226292,20.226292,0,0,0,0,0,0,0,0,5.2934947,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,6,8,5,1,472,60341.914,235978.92,0,0,2398.3357 -2541,3134,5626,5627,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,3,-2,.43738747,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,99.675385,0,0,1,1,0,0,0,52,46,52.4,47.71,8,1,1,0,0,0,4,2,1,272,250185.94,0,0,0,1539.8722 -2541,3134,5627,5626,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.7720346,6.4600015,3,2,-113.26371,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,6.9033957,6.5331473,52.4,47.71,52,46,8.333333333333334,1,1,0,0,0,4,2,1,272,250185.94,0,0,0,1539.8722 -2542,3135,5628,5631,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,7.8438506,8.2034693,0,5,6,45.385323,0,1,2,2019,1,0,30,30,1,0,0,9.7105942,9.7105942,0,0,0,0,0,1,1,0,0,0,62.29,49.94,60.02,56.42,10,1,1,0,0,9,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 -2542,3135,5629,-9,5628,5631,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4917,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 -2542,3135,5630,-9,5628,5631,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.42139,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 -2542,3135,5631,5628,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.3660793,8.0240993,0,5,-6,-79.378349,0,-9,-9,2019,5,0,37,37,1,0,0,12.197058,12.197058,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.29,49.94,8.333333333333334,1,1,0,0,11,12,4,1,1470.75,-139492.25,100821.47,191046.94,143641.23,2898.5366 -2543,3136,5632,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.4849763,7.2994623,7.3256512,0,0,-1070.5466,0,3,3,2019,6,0,15,0,1,0,0,5.5248437,5.5248437,0,0,0,0,0,1,1,0,6.5558023,6.7830405,66.06,33.49,-9,-9,5,1,1,0,0,7,9,3,0,423,-155187.5,-31194.26,0,0,1079.7368 -2544,3137,5633,5634,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.253058,7.4564128,36,7,11.247007,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.3689375,7.4174762,56.41,48.18,49.35,59.64,8.333333333333334,1,1,0,0,3,2,3,1,474,912735.63,437403.75,264158.19,0,3545.4233 -2544,3137,5634,5633,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.6061525,7.2591968,36,-7,-24.601751,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8021049,7.3418827,49.35,59.64,56.41,48.18,6.666666666666667,1,1,0,0,7,2,3,1,474,912735.63,437403.75,264158.19,0,3545.4233 -2545,3138,5635,5636,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,6.8858953,7.1747713,10,-10,-25.731615,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3698709,7.3279428,55.29,44.79,44.9,25.52,5,1,1,0,0,11,5,5,1,1024.5,1588630.8,918014.44,272482.22,0,4446.3691 -2545,3138,5636,5635,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,8.7438669,8.7303839,10,10,-42.955414,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.5184207,8.3897638,44.9,25.52,55.29,44.79,5,1,1,0,0,1,5,5,1,1024.5,1588630.8,918014.44,272482.22,0,4446.3691 -2546,3139,5637,5638,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.2603588,8.3553562,0,18,0,-96.408257,-9,3,3,2019,10,2,30,0,1,2,0,15.280056,15.280056,0,0,0,0,0,0,0,0,2.793083,0,51.32,50.83,45.18,54.77,6.666666666666667,2,3,0,0,10,7,5,1,560,829522.44,503231.81,278156.44,38840.867,4152.4517 -2546,3139,5638,5637,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.6939468,8.4294558,0,2,0,69.260101,0,-9,-9,2019,12,0,12,12,1,0,0,41.219677,41.219677,0,0,0,0,0,0,0,0,7.1408558,0,45.18,54.77,51.32,50.83,6.666666666666667,2,3,0,0,13,7,5,1,560,829522.44,503231.81,278156.44,38840.867,4152.4517 -2547,3140,5639,5640,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.0924983,6.9928184,42,-4,54.05423,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.7002954,46.1,59.99,54.2,57.49,8.333333333333334,1,1,0,0,6,8,3,1,948.5,1121701.1,891516.31,396454.09,0,2517.0576 -2547,3140,5640,5639,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.2560415,7.0368104,42,4,73.336006,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0207798,7.0417018,54.2,57.49,46.1,59.99,8.333333333333334,1,1,0,0,0,8,3,1,948.5,1121701.1,891516.31,396454.09,0,2517.0576 -2548,3141,5641,5643,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,0,0,0,7,1,-34.171535,0,3,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,44.26,59.43,8.333333333333334,1,1,1,0,6,6,4,1,597.33331,262281.13,81496.859,161507.72,128598.69,1946.5258 -2548,3141,5642,-9,5641,5643,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.952,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,597.33331,262281.13,81496.859,161507.72,128598.69,1946.5258 -2548,3141,5643,5641,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.6983709,8.7010412,0,7,-1,-63.43895,0,1,1,2019,11,2,42,44,1,2,0,14.429267,14.429267,0,0,0,0,0,1,1,0,0,0,44.26,59.43,46.61,56.93,8.333333333333334,1,1,0,0,8,6,4,1,597.33331,262281.13,81496.859,161507.72,128598.69,1946.5258 -2549,3142,5644,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1068.8188,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.99,22.81,-9,-9,6.666666666666667,1,1,0,0,4,12,1,0,733.5,-42082.328,0,0,0,2235.6746 -2549,3142,5645,-9,5644,-9,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1005.4276,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,733.5,-42082.328,0,0,0,2235.6746 -2550,3143,5646,5647,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.0005922,7.8996077,33,1,20.682577,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,.95053107,7.7934785,48.87,58.55,42.33,56.19,8.333333333333334,1,1,0,0,9,9,4,1,320.5,1893552.1,750721.38,358753.75,0,2285.4141 -2550,3143,5647,5646,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.7306614,7.7607636,34,-1,-7.6556921,0,2,1,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1.759997,7.9681907,42.33,56.19,48.87,58.55,8.333333333333334,1,1,0,0,9,9,4,1,320.5,1893552.1,750721.38,358753.75,0,2285.4141 -2551,3144,5648,5649,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,9.4140282,8.9679461,6.7867117,27,17,10.865895,0,2,3,2019,10,0,50,68,1,1,0,25.362152,25.362152,0,0,0,0,0,0,0,0,0,7.3432884,51,48,53.33,53.71,7,1,1,0,0,1,8,5,1,729,2509084,1359355.3,191637.28,0,7378.6133 -2551,3144,5649,5648,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.8137903,8.7478838,0,27,-17,197.1347,0,2,2,2019,8,0,18,20,1,0,0,41.928818,41.928818,0,0,0,0,2,0,0,0,0,0,53.33,53.71,51,48,8.333333333333334,1,1,0,0,13,8,5,1,729,2509084,1359355.3,191637.28,0,7378.6133 -2551,3145,5650,-9,5649,5648,1,1,22,0,0,0,1,1,-9,0,4,8.4789381,8.206975,0,0,0,-922.44592,0,1,1,2019,5,0,60,0,1,0,1,8.536273,8.536273,0,0,0,0,0,0,0,0,3.9130406,0,48.85,58.56,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,257,336141.56,-41753.898,0,0,2092.821 -2551,3146,5651,-9,5649,5648,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1230.8762,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,3.4917109,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,99,366184.03,0,0,0,166.0381 -2552,3147,5652,-9,5654,5655,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-950.20447,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 -2552,3147,5653,-9,5654,5655,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-972.92749,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 -2552,3147,5654,5655,-9,-9,1,0,54,0,3,0,2,2,-9,0,2,8.6169014,8.588232,0,19,5,65.929535,0,1,3,2019,7,1,48,38,1,1,0,10.836652,10.836652,0,0,0,0,0,1,1,0,0,0,56.6,28.3,29.54,44.91,3.333333333333333,1,1,0,1,9,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 -2552,3147,5655,5654,-9,-9,1,1,49,0,3,0,2,2,-9,0,2,8.2820797,8.3311052,0,13,-5,98.438339,0,3,3,2019,26,12,50,46,1,12,0,11.407349,11.407349,0,0,0,0,0,1,1,0,0,0,29.54,44.91,56.6,28.3,3.333333333333333,1,1,0,1,11,7,4,0,1838.5,38290.824,143524.59,0,0,3047.0894 -2552,3148,5656,5657,-9,-9,1,0,21,0,3,0,2,2,-9,0,3,0,0,0,3,1,30.381508,0,-9,-9,2019,12,2,0,55,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.5,41.06,41.17,59.31,6.666666666666667,1,1,0,0,2,7,3,0,325.5,-217258.06,0,0,0,1286.5745 -2552,3148,5657,5656,5654,5655,1,1,20,0,3,0,2,2,-9,0,4,8.3584232,8.6602573,0,3,-1,140.15016,0,2,2,2019,6,0,60,50,1,0,0,6.7166748,6.7166748,0,0,0,0,0,1,1,0,0,0,41.17,59.31,39.5,41.06,5,1,1,0,0,4,7,3,0,325.5,-217258.06,0,0,0,1286.5745 -2552,3149,5658,-9,5659,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.9811,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,617,-873.59375,0,0,0,311.80338 -2552,3149,5659,-9,5654,5655,1,0,28,0,3,0,3,3,-9,0,2,0,0,0,0,0,-1073.7904,0,2,2,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40,42,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,617,-873.59375,0,0,0,311.80338 -2553,3150,5660,5662,-9,-9,1,1,35,1,2,0,3,3,-9,0,3,7.7041407,7.6764627,0,13,1,-72.914894,0,2,2,2019,11,2,38,25,1,2,0,7.0768042,7.0768042,0,0,0,0,0,1,1,0,0,0,27.73,64.27,57.16,56.15,1.666666666666667,1,1,0,0,7,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 -2553,3150,5661,-9,5662,5660,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.68848,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 -2553,3150,5662,5660,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,6.7853847,7.0139909,0,13,-1,17.414141,0,2,2,2019,9,0,16,14,1,0,0,8.4759607,8.4759607,0,0,0,0,0,1,1,0,0,0,57.16,56.15,27.73,64.27,6.666666666666667,1,1,0,0,6,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 -2553,3150,5663,-9,5662,5660,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.30383,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,814.75,49679.695,29929.83,0,0,1949.218 -2554,3151,5664,5665,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3573771,8.4206266,5.3967719,7,-1,-65.631172,0,2,2,2019,11,2,41,39,1,2,0,10.172564,10.172564,0,0,0,0,0,0,0,0,0,5.416708,46.66,36.82,36.43,60.14,8.333333333333334,1,1,0,0,6,5,5,0,650,1740369.1,1434728.1,189648,14885.576,3616.2839 -2554,3151,5665,5664,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.6827745,8.5235929,0,7,1,39.066647,0,1,2,2019,11,0,49,42,1,0,0,11.647657,11.647657,0,0,0,.10448876,0,0,0,0,0,0,36.43,60.14,46.66,36.82,5,1,1,0,0,8,5,5,0,650,1740369.1,1434728.1,189648,14885.576,3616.2839 -2555,3152,5666,5667,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,5.9838619,6.0278139,25,7,10.30918,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.6652074,5.8659167,60.7,29.04,55.36,54.24,8.333333333333334,1,1,0,0,7,5,4,1,440.5,1875647.8,1244308,255607,0,2251.9712 -2555,3152,5667,5666,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4381971,8.4249592,0,24,-7,9.70187,0,3,2,2019,7,0,47,49,1,0,0,12.131588,12.131588,0,0,0,0,0,0,0,0,0,0,55.36,54.24,60.7,29.04,6.666666666666667,1,1,0,0,11,5,4,1,440.5,1875647.8,1244308,255607,0,2251.9712 -2555,3153,5668,-9,5667,5666,1,1,22,0,0,0,2,2,-9,0,4,7.6934013,7.8038316,0,0,0,-888.70844,0,2,2,2019,18,6,41,0,1,6,1,5.4931798,5.4931798,0,0,0,0,0,0,0,0,.5401594,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,6,5,3,1,638,-198724.59,-20249.693,0,0,1345.2806 -2556,3154,5669,5670,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.179934,6.7112684,10,-5,-64.817848,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.195066,6.7915454,55.18,35.54,62.49,55.09,6.666666666666667,1,1,0,0,4,11,3,1,1879,828000.81,326594.5,244934.88,0,2468.2957 -2556,3154,5670,5669,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.4480214,6.6442914,10,5,116.18851,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.2417538,0,0,1,1,0,2.9476962,6.7332764,62.49,55.09,55.18,35.54,8.333333333333334,1,1,0,0,6,11,3,1,1879,828000.81,326594.5,244934.88,0,2468.2957 -2557,3155,5671,5672,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.4465256,9.5027323,8.9586668,35,-2,-34.69516,0,2,3,2019,8,0,20,40,1,0,0,27.313795,27.313795,0,0,0,0,0,0,0,0,5.0667348,9.083415,54.2,57.49,48.87,58.55,10,1,1,0,0,11,9,5,1,755,641496.25,470595.63,205733.91,115255.94,6051.1948 -2557,3155,5672,5671,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.3761401,6.9548087,6.5418139,35,2,-28.792139,0,3,3,2019,11,0,8,4,1,0,0,9.6448994,9.6448994,0,0,0,0,0,0,0,0,4.2341089,6.4382768,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,12,9,5,1,755,641496.25,470595.63,205733.91,115255.94,6051.1948 -2557,3156,5673,-9,5672,5671,1,0,26,0,0,0,1,1,-9,0,4,8.8713093,8.9613495,0,0,0,-1091.3088,0,2,1,2019,20,8,75,50,1,8,1,9.6204176,9.6204176,0,0,0,0,0,0,0,0,2.5603085,0,30.53,65.61,-9,-9,3.333333333333333,1,1,0,0,6,9,5,1,183,-165474.14,-17705.119,0,0,2249.2383 -2558,3157,5674,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1023.1919,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.91,42.91,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,3872,-155249.58,0,0,0,395.49268 -2559,3158,5675,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.5310621,8.2465696,0,0,-1053.4329,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0415974,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,485,1593059.4,770182.06,337822.72,0,2478.7192 -2560,3159,5676,5677,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.9623461,8.7480364,0,3,2,9.4508305,-9,2,2,2019,7,0,38,0,1,0,0,19.671812,19.671812,0,0,0,0,0,0,0,0,1.937377,0,57.16,56.15,46.39,60.99,8.333333333333334,1,1,0,0,7,8,5,0,438.5,-40115.75,52768.98,0,0,2291.572 -2560,3159,5677,5676,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,3,-2,-77.551414,0,-9,-9,2019,18,6,0,40,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,57.16,56.15,8.333333333333334,1,1,1,0,3,8,5,0,438.5,-40115.75,52768.98,0,0,2291.572 -2561,3160,5678,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4019003,8.1006823,0,0,0,-917.04547,0,-9,-9,2019,7,0,46,38,1,0,0,10.431987,10.431987,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,10,8,4,1,606,-353071.88,38351.445,0,0,1544.3516 -2561,3161,5679,-9,5678,-9,1,1,19,0,0,0,2,2,-9,0,3,7.9351029,7.9514308,0,0,0,-1242.3071,0,2,-9,2019,11,0,38,0,1,0,1,8.4344692,8.4344692,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,2,8,4,1,346,418471,-29154.648,0,0,887.05359 -2562,3162,5680,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,8.0903711,8.0005779,0,0,-930.70422,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3043396,8.0470667,57.16,56.15,-9,-9,10,1,1,0,0,0,8,4,1,408,647196.69,0,346849.41,0,2351.9961 -2563,3163,5681,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,8.5394239,8.6729069,0,0,0,-971.01459,0,3,3,2019,9,1,39,45,1,1,0,14.065452,14.065452,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,5,5,1,562,-2047.2579,0,21074.041,38413.625,1705.6598 -2563,3164,5682,-9,5681,-9,1,0,23,0,0,0,1,1,-9,0,5,8.078166,7.7310309,0,0,0,-1022.6738,0,2,2,2019,9,1,40,18,1,1,1,9.1291819,9.1291819,0,0,0,0,0,0,0,0,1.4202614,0,60.02,56.42,-9,-9,8.333333333333334,3,4,0,0,3,5,3,1,120,-412269.78,43089.539,0,0,33.870964 -2563,3165,5683,-9,5681,-9,1,1,18,0,0,0,2,2,-9,0,5,6.6214433,6.8208251,0,0,0,-994.18274,0,3,-9,2019,7,0,39,0,1,0,1,2.8391557,2.8391557,0,0,0,0,0,0,0,0,.1759131,0,50.01,55.66,-9,-9,10,3,4,0,0,2,5,2,1,826,0,0,0,0,614.40759 -2564,3166,5684,5686,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,0,0,0,13,0,-40.907658,0,1,1,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,5.9264374,0,46.56,50.26,41.06,62.04,8.333333333333334,2,3,0,0,0,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 -2564,3166,5685,-9,5684,5686,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9542,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 -2564,3166,5686,5684,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,9.6641855,9.5278168,0,13,9,-84.099884,0,1,1,2019,15,3,40,40,1,3,0,39.061981,39.061981,0,0,0,0,0,0,0,0,5.0301843,0,41.06,62.04,46.56,50.26,8.333333333333334,2,3,0,0,6,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 -2564,3166,5687,-9,5684,5686,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.57477,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,5,1,281.5,2064678.5,1232097.3,1023283.1,183833.69,4371.2041 -2565,3167,5688,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1081.9663,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.63434148,0,51.21,31.05,-9,-9,10,1,1,0,0,0,1,1,1,58,116173.51,0,0,0,1476.1455 -2566,3168,5689,5690,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,4,9,170.90176,-9,3,3,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,29.53,27.1,29.92,35.3,3.333333333333333,1,1,0,1,0,12,4,0,346.5,295977,84783.32,147666.66,95762.891,2052.9329 -2566,3168,5690,5689,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.7038326,8.6815987,0,4,0,153.51747,0,3,3,2019,15,3,54,54,1,3,0,12.084577,12.084577,0,0,0,0,2,0,0,0,0,0,29.92,35.3,29.53,27.1,3.333333333333333,1,1,0,0,6,12,4,0,346.5,295977,84783.32,147666.66,95762.891,2052.9329 -2567,3169,5691,5692,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.9009237,7.7890568,0,23,-3,21.828487,0,2,-9,2019,6,0,21,25,1,0,0,11.774741,11.774741,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.61,51.04,10,1,1,0,0,9,13,3,1,194,817305.31,585261.31,117984.05,0,3121.3091 -2567,3169,5692,5691,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.2055492,8.5011196,0,23,3,-18.148243,0,2,2,2019,7,0,38,41,1,0,0,13.979985,13.979985,0,0,0,0,0,1,1,0,0,0,54.61,51.04,57.16,56.15,8.333333333333334,1,1,0,0,9,13,3,1,194,817305.31,585261.31,117984.05,0,3121.3091 -2567,3169,5693,-9,5691,5692,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1086.1794,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,0,13,3,1,194,817305.31,585261.31,117984.05,0,3121.3091 -2568,3170,5694,-9,5695,5697,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.7563,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 -2568,3170,5695,5697,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.3856163,7.2111883,0,13,-5,30.329338,0,3,3,2019,7,0,16,16,1,0,0,9.7667208,9.7667208,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 -2568,3170,5696,-9,5695,5697,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.23358,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 -2568,3170,5697,5695,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,7.4341855,7.6507525,0,8,5,163.38283,0,-9,-9,2019,6,0,48,40,1,0,0,4.0281434,4.0281434,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,6,3,1,452.75,346379.34,112249.23,125793.15,90790.969,1987.4677 -2569,3171,5698,-9,5699,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-994.84741,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,1,4,4,1,0,462,241375.2,0,0,0,-111.1049 -2569,3172,5699,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.7821608,7.7199459,0,0,0,-828.20264,0,-9,-9,2019,15,3,34,27,1,3,0,6.4838824,6.4838824,0,0,0,0,0,1,1,0,0,0,33.44,57.6,-9,-9,3.333333333333333,1,1,0,1,7,4,3,0,969,-357299.19,43006.156,0,0,571.17017 -2569,3173,5700,-9,5699,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-928.7865,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,1,1,0,4,1,0,945,-491255.41,0,0,0,0 -2570,3174,5701,-9,5705,5704,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.0402,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 -2570,3174,5702,-9,5705,5704,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.8348,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 -2570,3174,5703,-9,5705,5704,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-895.21466,-9,2,2,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,58.08,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 -2570,3174,5704,5705,-9,-9,1,1,61,0,2,0,2,2,-9,0,4,7.1816468,7.2518764,0,35,9,-4.3119769,0,-9,2,2019,12,0,20,20,1,0,0,7.8472509,7.8472509,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.08,40.76,8.333333333333334,1,1,0,0,11,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 -2570,3174,5705,5704,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,7.5973635,7.7874231,0,35,0,65.478973,0,2,2,2019,6,0,25,25,1,0,0,8.0725546,8.0725546,0,0,0,0,0,1,1,0,0,0,58.08,40.76,58.15,52.91,8.333333333333334,1,1,0,0,11,10,2,1,1101.2,1183079.3,559164.25,362003.41,0,2626.8425 -2571,3175,5706,5707,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.6035347,8.4383259,0,7,1,39.742817,-9,-9,-9,2019,10,0,40,0,1,1,0,18.699154,18.699154,0,0,0,0,0,0,0,0,4.929493,0,51,48,65.54000000000001,33.23,7,1,1,0,0,1,6,4,1,510.5,1147240.4,646484.5,351889.19,0,2216.6816 -2571,3175,5707,5706,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,5.5989809,5.6497459,0,44,-1,-111.28029,0,3,3,2019,9,0,5,5,1,0,0,5.8064351,5.8064351,0,0,0,0,0,0,0,0,1.9249868,0,65.54000000000001,33.23,51,48,8.333333333333334,1,1,0,0,7,6,4,1,510.5,1147240.4,646484.5,351889.19,0,2216.6816 -2572,3176,5708,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.5995569,4.6420727,0,0,-972.3623,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.414454,4.1158886,43.71,56.91,-9,-9,5,4,6,0,0,0,2,2,1,1082,133695.42,-11149.734,194080.47,0,1268.4766 -2572,3177,5709,-9,5708,-9,1,0,47,0,0,0,2,2,-9,0,3,7.848145,7.9109912,0,0,0,-1035.266,0,-9,-9,2019,15,4,46,48,1,4,0,6.2917776,6.2917776,0,0,0,0,7,1,1,0,0,0,33.07,55.18,-9,-9,5,4,2,0,0,10,2,3,1,1023,121671.63,98596.078,0,0,433.79279 -2573,3178,5710,5711,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,19,-1,-78.678322,0,3,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,51.51,41.12,54.13,48.04,8.333333333333334,1,1,0,0,0,1,2,1,435,1188481,596150.94,422564.63,10340.267,792.06506 -2573,3178,5711,5710,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.2755384,7.100873,19,1,47.668835,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.7173185,7.528954,54.13,48.04,51.51,41.12,8.333333333333334,1,1,0,0,6,1,2,1,435,1188481,596150.94,422564.63,10340.267,792.06506 -2574,3179,5712,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.2473,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,0,44.66,22.37,-9,-9,5,1,1,0,0,0,4,1,1,2030,159891.89,0,0,0,573.90796 -2575,3180,5713,5714,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4213357,7.7321186,5,0,-137.42178,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,4.4693723,0,0,1,1,0,4.1623745,7.7425423,53,46,52,46,8,1,1,0,0,0,4,3,1,575.5,846545.38,396119.28,317456.84,0,3118.7168 -2575,3180,5714,5713,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,6.5190153,6.2526145,52,0,-36.696209,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0966542,6.0389018,52,46,53,46,8,1,1,0,0,0,4,3,1,575.5,846545.38,396119.28,317456.84,0,3118.7168 -2576,3181,5715,5716,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,7.3774257,7.2819786,8,-2,48.059021,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,7,1,1,0,0,7.204453,40.77,42.34,52,47,6.666666666666667,1,1,0,0,8,10,3,1,1252.5,732386.38,460611.31,279745.78,0,2750.3679 -2576,3181,5716,5715,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5577555,7.4039626,8,2,21.413363,0,-9,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.9331079,7.5101919,52,47,40.77,42.34,3.333333333333333,1,1,0,0,0,10,3,1,1252.5,732386.38,460611.31,279745.78,0,2750.3679 -2577,3182,5717,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,9.4088411,9.1869135,0,0,0,-967.54688,0,2,2,2019,10,0,72,84,1,0,0,19.129679,19.129679,0,0,0,0,0,1,1,0,4.6401296,0,53.12,53.98,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,181,-151740.84,16828.092,0,0,4821.6011 -2578,3183,5718,5719,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.2010818,6.4261098,54,-1,-62.064545,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.2945948,6.2580166,55.28,51.42,39.68,42.48,10,1,1,0,0,0,8,2,1,442.5,719371.06,0,383547.06,0,1902.4624 -2578,3183,5719,5718,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.0166426,5.9978452,8,1,-1.2937659,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.55725,6.3644352,39.68,42.48,55.28,51.42,8.333333333333334,1,1,0,0,5,8,2,1,442.5,719371.06,0,383547.06,0,1902.4624 -2579,3184,5720,5721,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.8040972,5.7843099,33,1,-10.822063,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7423005,5.4903555,49.27,36.96,53.95,37.66,3.333333333333333,1,1,0,0,5,10,2,0,1027,598728.38,238264.97,219831.91,0,1830.4961 -2579,3184,5721,5720,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,10,-1,86.965103,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.95,37.66,49.27,36.96,5,1,1,0,0,0,10,2,0,1027,598728.38,238264.97,219831.91,0,1830.4961 -2580,3185,5722,-9,5724,5723,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.29822,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 -2580,3185,5723,5724,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.0597181,9.2773552,0,6,4,24.500011,0,-9,-9,2019,10,0,36,37,1,1,0,30.541668,30.541668,0,0,0,0,2,1,1,0,0,0,51,57,48,57,7,2,3,0,0,11,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 -2580,3185,5724,5723,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.5607557,6.6451335,0,14,-4,56.46323,0,3,3,2019,11,0,10,10,1,2,0,8.4726324,8.4726324,0,0,0,0,0,1,1,0,0,0,48,57,51,57,7,2,3,0,0,3,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 -2580,3185,5725,-9,5724,5723,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-954.85608,-9,2,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,6,5,0,569.75,153774.45,100773.72,161477.14,107524.77,4054.23 -2581,3186,5726,5727,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,10,-2,.45525822,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.5921831,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,7,7,4,1,1289,3395077,1295768.6,727139.75,0,4042.6445 -2581,3186,5727,5726,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.9507036,8.7079802,38,2,78.29364,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.1890583,9.1162014,55.19,54.26,57.16,56.15,10,1,1,0,0,5,7,4,1,1289,3395077,1295768.6,727139.75,0,4042.6445 -2582,3187,5728,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.8482075,7.7104816,0,2,-3,31.575075,0,2,2,2019,10,2,45,40,1,2,0,5.9004602,5.9004602,0,0,0,0,0,0,0,0,0,0,46.8,57.03,39.65,42.5,8.333333333333334,1,1,0,0,9,6,4,0,1264,83216.648,0,0,0,1304.8368 -2582,3188,5729,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.853385,8.1015339,0,2,3,-38.37701,0,-9,-9,2019,15,4,38,15,1,4,0,7.8862929,7.8862929,0,0,0,0,0,0,0,0,0,0,39.65,42.5,46.8,57.03,5,1,1,0,0,3,6,4,0,1587,-124516.57,0,0,0,1340.8656 -2583,3189,5730,-9,5732,5731,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.26703,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,430,502542.66,630109.19,121689.3,98891.164,4109.6895 -2583,3189,5731,5732,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,8.899663,8.6649628,0,7,3,-89.66568,0,2,2,2019,11,0,40,40,1,0,0,20.246086,20.246086,0,0,0,0,0,1,1,0,.62257373,0,52.21,59.91,46.39,52.95,8.333333333333334,1,1,0,0,9,4,5,1,430,502542.66,630109.19,121689.3,98891.164,4109.6895 -2583,3189,5732,5731,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.4543562,8.2567024,0,7,-3,-18.790083,0,-9,2,2019,12,0,32,32,1,0,0,12.106854,12.106854,0,0,0,0,0,1,1,0,0,0,46.39,52.95,52.21,59.91,8.333333333333334,1,1,0,0,9,4,5,1,430,502542.66,630109.19,121689.3,98891.164,4109.6895 -2584,3190,5733,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.6371675,5.7351155,0,0,-971.29211,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.295424,5.7417846,61.04,28.88,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,1517,433534.81,84547.523,0,0,1671.3737 -2585,3191,5734,5735,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,0,0,52,-4,47.633175,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.52,48.31,58.15,52.91,8.333333333333334,1,1,0,0,0,4,3,1,837,1039446.4,636632.94,202433.8,0,1858.431 -2585,3191,5735,5734,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.602015,7.7809701,52,4,-83.003922,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9841003,58.15,52.91,56.52,48.31,10,1,1,0,0,7,4,3,1,837,1039446.4,636632.94,202433.8,0,1858.431 -2586,3192,5736,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1087.2595,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,576,176530.42,0,0,0,835.85992 -2587,3193,5737,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,2,8.1866112,8.2162008,0,0,0,-1057.8456,0,2,2,2019,10,1,45,45,1,1,0,7.8115268,7.8115268,0,0,0,0,0,1,1,0,0,0,34.81,46.68,-9,-9,5,1,1,0,0,5,2,4,1,769,18123.664,-20088.74,0,0,1750.8018 -2588,3194,5738,-9,5739,5741,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9456,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 -2588,3194,5739,5741,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.1114578,8.1246061,0,17,-1,-12.295112,0,1,2,2019,10,0,23,25,1,0,0,21.58061,21.58061,0,0,0,0,0,1,1,0,0,0,54.1,59.11,35.98,31.45,8.333333333333334,1,1,0,0,12,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 -2588,3194,5740,-9,5739,5741,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.9429,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 -2588,3194,5741,5739,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,8.6061039,8.6694651,0,17,1,8.9041662,0,2,2,2019,20,6,50,48,1,6,0,15.681849,15.681849,0,0,0,0,0,1,1,0,0,0,35.98,31.45,54.1,59.11,6.666666666666667,1,1,0,0,11,11,4,1,1033.5,322518.22,116117.82,348026.56,147629.8,3376.0557 -2589,3195,5742,5743,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.4579973,8.7326994,7.9697495,7,-2,27.950531,0,-9,-9,2019,10,0,40,39,1,1,0,3.6853592,3.6853592,0,0,0,0,0,1,1,0,0,8.0019999,52,48,45.46,61.87,7,1,1,0,0,1,13,4,1,410,1667164.5,1138314.9,423224,0,3574.8315 -2589,3195,5743,5742,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,0,0,42,2,-88.811546,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,52,48,8.333333333333334,1,1,0,0,0,13,4,1,410,1667164.5,1138314.9,423224,0,3574.8315 -2590,3196,5744,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-981.03845,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,8.1168098,0,48.86,40.74,-9,-9,5,1,1,0,0,1,5,1,1,420,439330.34,0,156733.09,0,2797.7666 -2591,3197,5745,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.5936117,8.7393522,0,0,0,-968.95807,0,3,2,2019,10,0,40,40,1,0,0,13.919892,13.919892,0,0,0,0,0,0,0,0,3.2811189,0,40.98,59.35,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,58,316197.25,-63713.406,0,0,1728.9679 -2592,3198,5746,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.6491098,7.7344689,0,0,-1018.1858,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7485046,46.75,31.6,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,285,341246.66,138622.36,80357.07,0,1477.8169 -2593,3199,5747,5748,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,0,0,7,-3,-53.327019,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,59.14,52.5,10,2,3,0,0,5,8,5,1,560,1571416.3,859097.5,601316.19,0,4694.0332 -2593,3199,5748,5747,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,9.0600214,9.2099304,7.6254187,7,3,60.801899,0,3,3,2019,7,0,55,47,1,0,0,14.515471,14.515471,0,0,0,0,0,1,1,0,0,7.9050756,59.14,52.5,60.12,54.8,8.333333333333334,2,3,0,0,10,8,5,1,560,1571416.3,859097.5,601316.19,0,4694.0332 -2594,3200,5749,5750,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4883423,8.6807337,0,4,0,-8.6971188,0,-9,-9,2019,12,0,38,37,1,0,0,16.17527,16.17527,0,0,0,0,0,1,1,0,.91732061,0,60.13,49.27,53,55,8.333333333333334,1,1,0,0,10,5,5,1,4512.5,375895.94,192050.36,274257.59,68194.336,3497.5547 -2594,3200,5750,5749,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3017082,8.2995672,0,4,0,39.779457,0,3,2,2019,9,0,40,40,1,1,0,13.533523,13.533523,0,0,0,0,0,1,1,0,1.7026579,0,53,55,60.13,49.27,8,1,1,0,0,1,5,5,1,4512.5,375895.94,192050.36,274257.59,68194.336,3497.5547 -2595,3201,5751,5752,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.5428076,4.1846209,61,-2,-24.752844,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8869696,4.302968,58.27,24.79,52.99,51.28,8.333333333333334,1,1,0,0,0,11,4,1,952.5,1162776.1,506623.56,521425.88,0,2960.5417 -2595,3201,5752,5751,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.4885931,8.6000395,61,2,-11.313293,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2157865,8.3349953,52.99,51.28,58.27,24.79,8.333333333333334,1,1,0,0,0,11,4,1,952.5,1162776.1,506623.56,521425.88,0,2960.5417 -2596,3202,5753,5754,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.0803585,7.2779036,0,39,-1,30.830135,0,3,3,2019,13,1,8,8,1,1,0,19.186972,19.186972,0,0,0,0,0,1,1,0,0,0,49.04,55.86,61.16,53.18,6.666666666666667,1,1,0,0,11,4,3,1,1107.5,-191803,27199.504,0,0,1501.1383 -2596,3202,5754,5753,-9,-9,1,1,58,0,0,0,3,3,-9,1,5,4.9382896,6.7460217,6.8359432,39,1,60.466503,0,-9,-9,2019,10,0,60,50,1,0,0,.24562715,.24562715,0,0,0,0,0,1,1,0,0,6.3616238,61.16,53.18,49.04,55.86,8.333333333333334,1,1,0,0,11,4,3,1,1107.5,-191803,27199.504,0,0,1501.1383 -2597,3203,5755,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.4332409,5.0932364,0,0,-1005.3233,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,3.9448211,0,0,1,1,0,5.5267301,5.2918167,53,46,-9,-9,8,1,1,0,0,0,13,2,1,893,-18614.344,-14770.579,132608.72,0,978.01086 -2598,3204,5756,5758,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.6416712,9.7303772,0,24,1,50.287052,0,2,2,2019,11,2,48,48,1,2,0,38.150154,38.150154,0,0,0,0,0,0,0,0,4.0069623,0,44.47,57.73,40.88,59.72,6.666666666666667,1,1,0,0,9,9,5,1,795,3686570.5,3139644.5,476009.84,60708.367,5269.2563 -2598,3204,5757,-9,5758,5756,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1052.7952,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,795,3686570.5,3139644.5,476009.84,60708.367,5269.2563 -2598,3204,5758,5756,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.1233625,7.4794235,0,27,-1,-4.4847431,0,3,3,2019,12,0,24,15,1,0,0,6.4761806,6.4761806,0,0,0,0,0,0,0,0,2.201544,0,40.88,59.72,44.47,57.73,6.666666666666667,1,1,0,0,9,9,5,1,795,3686570.5,3139644.5,476009.84,60708.367,5269.2563 -2598,3205,5759,-9,5758,5756,1,1,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1021.0245,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.1032293,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,904,-83136.25,0,0,0,-150.40041 -2599,3206,5760,5761,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,0,0,0,7,-3,-31.322529,0,3,3,2019,10,0,0,37,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,36.96,52.3,7,1,1,1,0,9,4,2,1,2043,3144.7813,37691.176,0,0,2450.6794 -2599,3206,5761,5760,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.726656,7.526742,0,7,3,-58.072124,0,3,3,2019,15,3,21,21,1,3,0,12.2324,12.2324,0,0,0,0,0,1,1,0,.87642574,0,36.96,52.3,51,56,5,1,1,0,0,8,4,2,1,2043,3144.7813,37691.176,0,0,2450.6794 -2599,3207,5762,-9,5761,5760,1,1,18,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1000.7057,0,3,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.34,60.31,-9,-9,5,1,1,1,0,0,4,1,1,1372,0,0,0,0,-195.23436 -2600,3208,5763,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.2116981,7.0285697,0,0,0,-961.74792,0,3,3,2019,15,5,20,16,1,5,0,4.81142,4.81142,0,0,0,0,0,1,1,0,0,0,48.45,38.07,-9,-9,0,2,3,0,0,4,5,2,0,199,-182248.38,0,69912.727,11447.985,-23.307182 -2600,3209,5764,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.03088,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,2,3,0,0,0,5,1,0,341,83121.93,0,0,0,818.56421 -2601,3210,5765,5766,-9,-9,1,1,37,0,0,0,2,2,-9,1,3,7.8146706,7.9112315,0,4,3,124.28551,0,-9,-9,2019,13,1,44,35,1,1,0,8.5266199,8.5266199,0,0,0,0,0,1,1,0,0,0,49.05,47.83,54.97,47.63,8.333333333333334,1,1,0,0,6,12,4,0,805,10348.195,166158.08,121409.26,104334.84,2562.793 -2601,3210,5766,5765,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,7.2919297,7.9850202,0,4,-3,12.801306,0,2,2,2019,7,0,26,26,1,0,0,7.3287096,7.3287096,0,0,0,0,0,1,1,0,0,0,54.97,47.63,49.05,47.83,8.333333333333334,1,1,0,0,12,12,4,0,805,10348.195,166158.08,121409.26,104334.84,2562.793 -2602,3211,5767,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.35474,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.63,38.2,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,2489,-2553.4724,0,0,0,1489.3923 -2603,3212,5768,5770,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,0,0,0,8,-6,4.9219861,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.4,53.52,8.333333333333334,2,3,0,0,0,2,2,1,562.33331,416885.88,64876.773,165280.31,32679.338,2114.8706 -2603,3212,5769,-9,5768,5770,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.46667,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,562.33331,416885.88,64876.773,165280.31,32679.338,2114.8706 -2603,3212,5770,5768,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.9866891,7.9368982,0,23,6,143.53052,0,3,3,2019,8,0,48,38,1,0,0,6.04707,6.04707,0,0,0,0,0,1,1,0,0,0,45.4,53.52,57.06,57.76,5,2,3,0,0,10,2,2,1,562.33331,416885.88,64876.773,165280.31,32679.338,2114.8706 -2603,3213,5771,-9,5768,5770,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1081.4441,-9,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.38,57.37,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1097,0,0,0,0,0 -2604,3214,5772,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,4,0,7.3898892,7.4302464,0,0,-1066.1831,0,1,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1342678,56.5,51,-9,-9,5,1,1,0,0,0,10,3,1,273,53087.844,16043.84,0,0,1577.1713 -2605,3215,5773,5774,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,53,-2,48.317787,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.8418746,0,43.74,31.35,64.40000000000001,42,5,1,1,0,0,0,12,2,1,578.5,677807.56,220667.47,378943.75,0,1898.8853 -2605,3215,5774,5773,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.2479582,6.3033166,53,2,151.72226,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3153186,5.9555764,64.40000000000001,42,43.74,31.35,10,1,1,0,0,0,12,2,1,578.5,677807.56,220667.47,378943.75,0,1898.8853 -2606,3216,5775,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.3731418,7.4132833,0,0,0,-1058.1196,0,3,3,2019,10,0,22,26,1,0,0,9.1835899,9.1835899,0,0,0,0,14.5,1,0,1,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,2,12,3,0,382,13261.914,70224.781,0,0,1045.3782 -2607,3217,5776,-9,-9,5778,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.2714,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,745.33331,372849.09,27404.646,437362,336044.38,5034.4663 -2607,3217,5777,5778,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.8764868,8.9584742,0,1,2,-119.07321,0,1,2,2019,7,0,37,41,1,0,0,20.24881,20.24881,0,0,0,0,0,0,0,0,3.385422,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,745.33331,372849.09,27404.646,437362,336044.38,5034.4663 -2607,3217,5778,5777,-9,-9,1,1,37,0,1,0,1,1,-9,0,5,9.2523355,9.3118668,0,1,-2,84.737946,-9,-9,-9,2019,5,0,50,0,1,0,0,21.352686,21.352686,0,0,0,0,0,0,0,0,1.8789804,0,57.06,57.76,51.24,58.84,10,1,1,0,0,1,6,5,1,745.33331,372849.09,27404.646,437362,336044.38,5034.4663 -2608,3218,5779,5780,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.9691992,9.3839788,0,2,0,-85.099754,-9,-9,-9,2019,7,0,41,0,1,0,0,23.137108,23.137108,0,0,0,0,0,0,0,0,5.3379645,0,54.79,55.86,49.52,56.95,6.666666666666667,1,1,0,0,7,7,5,1,243.5,-113939.66,-59215.383,306691.13,235860.8,4665.0078 -2608,3218,5780,5779,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.31985,8.6145163,0,2,0,102.85886,0,2,2,2019,12,0,44,37,1,0,0,11.887778,11.887778,0,0,0,0,0,0,0,0,0,0,49.52,56.95,54.79,55.86,8.333333333333334,1,1,0,0,10,7,5,1,243.5,-113939.66,-59215.383,306691.13,235860.8,4665.0078 -2609,3219,5781,5784,-9,-9,1,0,52,0,2,0,3,3,-9,0,5,0,0,0,26,-1,23.98444,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.06088968,0,41.07,60.93,49,50,5,2,3,0,1,0,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 -2609,3219,5782,-9,5781,5784,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.18182,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 -2609,3219,5783,-9,5781,5784,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-889.86304,-9,3,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 -2609,3219,5784,5781,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,7.691431,7.3390546,0,26,1,-40.945869,0,3,1,2019,10,0,32,32,1,0,0,9.5315323,9.5315323,0,0,0,0,0,1,1,0,0,0,49,50,41.07,60.93,6.666666666666667,2,3,0,1,9,8,2,1,440,574116.31,12575.284,489709.28,0,1834.3115 -2609,3220,5785,-9,5781,5784,1,0,22,0,2,1,2,0,0,0,3,0,0,0,0,0,-956.81659,-9,3,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,6.666666666666667,2,3,0,0,3,8,1,1,595,111446.38,0,0,0,0 -2609,3221,5786,-9,5781,5784,1,1,20,0,2,1,2,0,0,0,2,0,0,0,0,0,-1031.5393,-9,3,1,2019,24,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,29.99,47.48,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,385,0,0,0,0,565.58411 -2610,3222,5787,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,8.3792753,8.506443,0,0,0,-1044.019,0,2,3,2019,26,12,37,37,1,12,0,10.217361,10.217361,0,0,0,0,0,1,1,0,.87474233,0,17.75,35.24,-9,-9,1.666666666666667,1,1,0,0,10,6,4,1,390,26768.684,60191.656,101456.32,37749.699,1495.6637 -2611,3223,5788,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-973.38763,0,2,2,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.8286588,0,54.55,39.76,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,545,169529.14,0,0,0,1154.3661 -2612,3224,5789,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.5491476,8.2395859,0,0,-1031.6818,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,3.6825073,0,24.933331,0,1,1,0,4.9878435,8.4612846,40.93,45.12,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,3703,1548224,1277085.9,385009.81,0,3071.1736 -2613,3225,5790,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.867094,8.0418215,0,0,0,-1126.2419,0,3,2,2019,13,3,30,30,1,3,0,9.3006535,9.3006535,0,0,0,0,14.5,1,1,0,0,0,47.23,39.35,-9,-9,3.333333333333333,1,1,0,1,13,7,3,1,3205,450785.69,-13907.129,0,0,1093.4916 -2613,3226,5791,-9,5790,-9,1,1,24,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1039.5754,0,2,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,15.22,59.58,-9,-9,1.666666666666667,1,1,1,1,2,7,1,1,515,40339.418,0,0,0,145.03442 -2614,3227,5792,5794,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.4298506,8.3464031,0,6,0,-111.7376,0,2,2,2019,8,1,41,39,1,1,0,10.556267,10.556267,0,0,0,0,0,1,1,0,4.9212265,0,45.91,59.89,43.12,58.55,8.333333333333334,1,1,0,0,7,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 -2614,3227,5793,-9,5792,5794,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.93585,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 -2614,3227,5794,5792,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.4537706,8.6345091,0,6,0,-32.951591,0,-9,-9,2019,15,3,37,37,1,3,0,12.946215,12.946215,0,0,0,0,0,1,1,0,4.1187911,0,43.12,58.55,45.91,59.89,5,1,1,0,0,7,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 -2614,3227,5795,-9,5792,5794,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.53284,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,804,356761.94,114751.58,340070.63,70418.43,3348.241 -2615,3228,5796,5797,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.3424926,6.1927338,50,0,11.957312,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,3.6914165,6.781281,57.25,35.63,43,23,1.666666666666667,1,1,0,0,0,5,2,1,337,594578.75,267271,241269.06,0,2514.9248 -2615,3228,5797,5796,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,6.8505797,6.6665006,50,9,103.50582,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.6880584,6.8578534,43,23,57.25,35.63,8.333333333333334,1,1,0,0,0,5,2,1,337,594578.75,267271,241269.06,0,2514.9248 -2616,3229,5798,5800,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,8.6191683,8.8157043,0,6,-1,-32.734009,0,3,2,2019,5,0,40,60,1,0,0,20.812532,20.812532,0,0,0,0,0,1,1,0,0,0,65.38,31.06,50.43,53.69,8.333333333333334,1,1,0,0,7,13,5,1,770.66669,737565.81,88931.617,248023.63,0,3844.5957 -2616,3229,5799,-9,5800,5798,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.93658,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,770.66669,737565.81,88931.617,248023.63,0,3844.5957 -2616,3229,5800,5798,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.3091831,8.126297,0,6,1,-66.148468,0,2,2,2019,8,0,35,35,1,0,0,13.216304,13.216304,0,0,0,0,0,1,1,0,0,0,50.43,53.69,65.38,31.06,8.333333333333334,1,1,0,0,7,13,5,1,770.66669,737565.81,88931.617,248023.63,0,3844.5957 -2617,3230,5801,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.8259039,6.1722403,0,0,-1092.8623,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,6.9735374,11.500679,70.361458,0,1,1,0,0,5.9599419,21.8,23.99,-9,-9,1.666666666666667,1,1,0,1,0,10,2,0,1836,191034.47,127721.63,0,0,1647.5148 -2618,3231,5802,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-999.4679,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.06,45,-9,-9,8.333333333333334,3,4,0,1,0,6,1,0,1093,0,0,0,0,1249.7996 -2619,3232,5803,5805,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.4006863,8.1773949,0,9,7,30.13525,0,2,2,2019,7,0,40,46,1,0,0,9.0753431,9.0753431,0,0,0,0,0,1,1,0,0,0,46.65,55.59,41.58,52.86,5,1,1,0,0,10,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 -2619,3232,5804,-9,5805,5803,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.389,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 -2619,3232,5805,5803,-9,-9,1,0,28,0,3,0,2,2,-9,1,2,0,0,0,9,-7,48.24279,0,2,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,2.5183823,0,41.58,52.86,46.65,55.59,10,1,1,0,0,1,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 -2619,3232,5806,-9,5805,5803,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.2896,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 -2619,3232,5807,-9,5805,5803,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.66864,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,433.60001,58722.781,-20542.066,0,0,2474.5833 -2620,3233,5808,5809,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,6,2,0,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,41.52,41.71,51,47,6.666666666666667,1,1,0,0,3,13,1,1,1634,220014.69,0,0,0,1498.9729 -2620,3233,5809,5808,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,6,-2,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,16.336723,0,0,1,1,0,0,0,51,47,41.52,41.71,7,1,1,0,0,0,13,1,1,1634,220014.69,0,0,0,1498.9729 -2620,3234,5810,-9,5809,5808,1,1,37,0,0,0,2,2,-9,0,4,0,0,0,0,0,-970.40143,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,9.1699724,0,51,56,-9,-9,7,1,1,1,0,0,13,1,1,1319,0,0,0,0,5305.5278 -2620,3235,5811,-9,5809,5808,1,1,37,0,0,0,2,2,-9,0,4,7.5150113,7.6525664,0,0,0,-967.70459,-9,3,3,2019,10,0,20,0,1,1,0,12.897439,12.897439,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,9,13,3,1,359,-83954.484,0,0,0,1157.5646 -2620,3236,5812,-9,5809,5808,1,1,33,0,0,0,2,2,-9,0,4,8.9385405,9.040616,0,0,0,-887.10767,0,3,3,2019,10,0,40,-9,1,1,0,22.912764,22.912764,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,13,5,1,437,350336.44,184568.98,55080.805,31010.703,3088.8208 -2621,3237,5813,5814,-9,-9,1,0,44,0,3,0,1,1,-9,1,2,6.58638,6.7206078,0,21,-6,31.93759,0,2,2,2019,17,4,15,15,1,4,0,5.7725854,5.7725854,0,0,0,0,14.5,1,1,0,0,0,29.13,57.25,53,55,3.333333333333333,1,1,0,0,6,9,4,1,1774.5,517578.28,97403.109,309820.19,124079.05,4320.4248 -2621,3237,5814,5813,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,9.1796932,8.9581785,0,8,6,-38.459656,0,-9,-9,2019,9,0,50,40,1,1,0,20.951317,20.951317,0,0,0,0,0,1,1,0,7.8269062,0,53,55,29.13,57.25,8,1,1,0,0,1,9,4,1,1774.5,517578.28,97403.109,309820.19,124079.05,4320.4248 -2622,3238,5815,5816,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.282465,7.8977342,0,8,0,10.997042,0,2,3,2019,12,1,31,35,1,1,0,11.394288,11.394288,0,0,0,0,2,0,0,0,1.5573214,0,34.79,47.81,42.17,56.08,6.666666666666667,1,1,0,0,7,6,5,1,110,976289.06,607466.63,112119.25,31628.592,2894.2124 -2622,3238,5816,5815,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2732334,8.2957954,0,8,0,49.351082,0,2,3,2019,7,0,39,39,1,0,0,12.594871,12.594871,0,0,0,0,0,0,0,0,0,0,42.17,56.08,34.79,47.81,8.333333333333334,1,1,0,0,10,6,5,1,110,976289.06,607466.63,112119.25,31628.592,2894.2124 -2623,3239,5817,5819,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,0,0,0,8,-4,-114.81748,0,-9,3,2019,18,5,0,12,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,30.48,50.14,28.97,59.76,1.666666666666667,1,1,1,1,2,6,2,0,347,334491.28,154556.72,0,0,1325.9753 -2623,3239,5818,-9,5817,5819,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.88678,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,347,334491.28,154556.72,0,0,1325.9753 -2623,3239,5819,5817,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,7.6085916,7.2409391,0,8,4,-135.46983,0,2,2,2019,18,6,40,40,1,6,0,5.9408493,5.9408493,0,0,0,0,0,1,1,0,0,0,28.97,59.76,30.48,50.14,3.333333333333333,1,1,0,1,9,6,2,0,347,334491.28,154556.72,0,0,1325.9753 -2624,3240,5820,-9,5822,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.64069,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,485,40899.547,-30631.338,161516.11,14041.105,2629.1438 -2624,3240,5821,5822,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,7.9410357,7.8143101,0,1,2,53.5793,-9,-9,-9,2019,21,9,50,0,1,9,0,6.6084032,6.6084032,0,0,0,0,0,1,1,0,0,0,25.61,62.71,47.46,52.7,0,1,1,0,1,5,11,3,0,485,40899.547,-30631.338,161516.11,14041.105,2629.1438 -2624,3240,5822,5821,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.7907047,7.0291133,5.2441049,1,-2,-61.32291,0,-9,-9,2019,12,0,22,20,1,0,0,4.423202,4.423202,0,0,0,0,0,1,1,0,5.3196607,0,47.46,52.7,25.61,62.71,5,1,1,0,0,5,11,3,0,485,40899.547,-30631.338,161516.11,14041.105,2629.1438 -2625,3241,5823,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.3193774,5.2669377,0,0,-1028.5437,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5184326,39.43,42.75,-9,-9,10,1,1,0,0,4,7,2,0,229,574140.31,233056.2,427041.75,0,1412.5907 -2626,3242,5824,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,4.1437778,5.037107,4.2810774,0,0,-974.14679,0,3,2,2019,4,0,50,-9,1,0,0,.17523471,.17523471,0,0,0,0,0,1,1,0,0,4.5507326,62.84,30.79,-9,-9,6.666666666666667,1,1,0,0,8,9,2,1,222,994461.69,84089.086,545645.5,0,889.69806 -2627,3243,5825,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-974.48022,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.79,25.03,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,557,-197404.75,-96610.5,0,0,1383.7576 -2627,3244,5826,-9,-9,5825,1,0,18,0,0,1,2,0,0,1,3,0,0,0,0,0,-999.99353,-9,-9,3,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,7,1,1,0,0,0,34.63,58.23,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,1120,257916.63,0,0,0,-117.94976 -2628,3245,5827,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,6.5465727,6.5812511,0,0,-919.66083,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,43.547852,0,0,1,1,0,0,6.4612379,39.97,14.6,-9,-9,3.333333333333333,1,1,0,0,2,2,2,1,121,332878.09,193255.75,236089.55,0,1675.2833 -2629,3246,5828,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1156.8055,0,-9,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.77,25.88,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,1995,84167.602,0,0,0,2031.6057 -2630,3247,5829,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.2554431,7.6015005,0,0,-1125.7424,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9480324,53.74,45.32,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,866,407147.41,208180.5,0,0,2519.979 -2631,3248,5830,5831,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,6,7,0,0,-9,-9,2019,9,0,0,40,4,1,0,0,0,0,0,0,0,0,1,1,0,5.469902,0,54,46,55.19,54.26,7,1,1,0,0,0,10,1,1,1123.5,364617.41,0,295139.06,19316.008,1373.759 -2631,3248,5831,5830,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,48,-7,0,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,54,46,8.333333333333334,1,1,0,0,0,10,1,1,1123.5,364617.41,0,295139.06,19316.008,1373.759 -2632,3249,5832,-9,5833,5834,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-751.08051,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 -2632,3249,5833,5834,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,7.773963,7.6584768,0,7,0,3.148921,0,2,2,2019,6,0,35,30,1,0,0,6.4611545,6.4611545,0,0,0,0,0,1,1,0,0,0,62.49,55.09,48.87,58.55,8.333333333333334,1,1,0,0,7,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 -2632,3249,5834,5833,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,8.7518225,8.9515638,0,7,0,38.34552,0,2,3,2019,7,0,37,37,1,0,0,25.740601,25.740601,0,0,0,0,0,1,1,0,0,0,48.87,58.55,62.49,55.09,8.333333333333334,1,1,0,0,7,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 -2632,3249,5835,-9,5833,5834,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.8871,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 -2632,3249,5836,-9,5833,5834,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-942.72845,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,4,1,813.79999,250156.83,118046.95,313573.97,163558.5,3356.094 -2633,3250,5837,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.0979972,7.3511682,0,0,-973.32605,-9,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5108776,6.7411804,48.92,37.32,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,131,78479.227,100333.3,197989.5,0,1397.3302 -2634,3251,5838,5839,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,7.5917273,7.4213934,9,-4,57.905243,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,2.297142,0,0,1,1,0,0,7.2187428,46.62,25.87,54.84,42.66,8.333333333333334,1,1,0,0,0,9,3,1,253,1518913.4,406596.56,439168.59,0,2598.1792 -2634,3251,5839,5838,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.5158916,6.7764592,9,4,55.183735,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2918444,6.7262387,54.84,42.66,46.62,25.87,8.333333333333334,1,1,0,0,0,9,3,1,253,1518913.4,406596.56,439168.59,0,2598.1792 -2635,3252,5840,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.0124369,7.9021626,0,1,4,107.00926,-9,-9,-9,2019,14,3,80,0,1,3,0,4.0632181,4.0632181,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49,58,6.666666666666667,1,1,0,0,7,4,3,1,779,148222.03,72653.164,0,0,1275.9415 -2636,3253,5841,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1007.3688,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.22,54.57,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,336,-91270.969,0,0,0,1222.0271 -2637,3254,5842,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.7543311,6.6918774,0,0,-848.55847,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.0423098,6.5768304,64.02,27,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,67,85745.656,5957.3159,0,0,1190.3917 -2638,3255,5843,5844,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.6421738,5.8641815,9,-1,37.107567,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4351697,5.4485326,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,2,12,2,1,789.5,640882.63,258153.72,348106.25,0,2620.7993 -2638,3255,5844,5843,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.0656834,6.8102102,9,1,57.149128,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1791945,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,3,12,2,1,789.5,640882.63,258153.72,348106.25,0,2620.7993 -2639,3256,5845,5846,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.9000988,9.0227871,0,8,-12,49.298904,0,3,2,2019,7,0,46,42,1,0,0,21.104523,21.104523,0,0,0,0,0,1,1,0,9.0948858,0,57.06,57.76,58.08,43.46,8.333333333333334,1,1,0,0,11,6,5,1,439.5,319297.81,-7789.3164,145459.44,0,6465.1123 -2639,3256,5846,5845,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.1135578,7.6027207,6.4409461,8,12,-11.920824,0,3,3,2019,6,0,18,18,1,0,0,7.374052,7.374052,0,0,0,0,0,1,1,0,5.409905,6.3140597,58.08,43.46,57.06,57.76,1.666666666666667,1,1,0,0,8,6,5,1,439.5,319297.81,-7789.3164,145459.44,0,6465.1123 -2640,3257,5847,5848,-9,-9,1,1,55,0,1,0,3,3,-9,0,5,8.308198,8.7144651,6.2845273,1,9,89.627785,-9,-9,-9,2019,15,2,45,0,1,2,0,13.931257,13.931257,0,0,0,0,0,1,1,0,0,6.2968316,51.65,49.55,51.97,27.61,8.333333333333334,1,1,0,0,13,4,4,1,918,234721.03,51248.414,263143.47,108972.1,4031.8066 -2640,3257,5848,5847,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.409585,8.756361,6.8553801,1,0,72.818336,0,-9,-9,2019,12,0,37,37,1,0,0,11.279984,11.279984,0,0,0,0,0,1,1,0,0,6.9895415,51.97,27.61,51.65,49.55,8.333333333333334,1,1,0,0,10,4,4,1,918,234721.03,51248.414,263143.47,108972.1,4031.8066 -2640,3257,5849,-9,5848,5847,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1030.8076,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,918,234721.03,51248.414,263143.47,108972.1,4031.8066 -2641,3258,5850,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1918764,8.056488,0,0,0,-1038.7328,0,2,1,2019,8,0,46,50,1,0,0,8.5587387,8.5587387,0,0,0,0,0,0,0,0,0,0,51.65,52.38,-9,-9,8.333333333333334,4,2,0,0,10,8,4,1,932,47331.969,0,0,0,1270.4894 -2642,3259,5851,5852,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,8,-3,19.75544,0,3,2,2019,19,7,0,12,3,7,0,0,0,0,0,0,0,0,1,1,0,6.4108572,0,26.18,61.09,54,57,6.666666666666667,1,1,1,0,8,9,4,1,451.33334,2026603.9,356164.59,496363.72,0,2584.1504 -2642,3259,5852,5851,-9,-9,1,1,46,0,0,0,3,3,-9,0,5,7.8240566,8.5328341,7.52068,8,3,50.295708,0,3,3,2019,12,0,35,0,1,0,0,7.6477494,7.6477494,0,0,0,0,0,1,1,0,0,7.6361465,54,57,26.18,61.09,6.666666666666667,1,1,0,0,8,9,4,1,451.33334,2026603.9,356164.59,496363.72,0,2584.1504 -2642,3259,5853,-9,5851,5852,1,0,16,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.96906,-9,2,3,2019,21,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,22.2,53.26,-9,-9,3.333333333333333,1,1,0,1,0,9,4,1,451.33334,2026603.9,356164.59,496363.72,0,2584.1504 -2642,3260,5854,-9,5851,5852,1,1,18,0,0,0,2,2,1,0,5,7.4417415,7.6106644,0,0,0,-1018.6998,-9,2,3,2019,3,1,32,0,1,1,1,5.1679163,5.1679163,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,1690,-58104.359,0,0,0,702.04114 -2643,3261,5855,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5889082,9.4299793,8.8893013,0,0,-997.40076,0,3,2,2019,11,1,16,20,1,1,0,36.177223,36.177223,0,0,0,0,0,0,0,0,9.2820501,0,52.58,47.36,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,487,-100019.42,12738.122,0,0,5811.8022 -2644,3262,5856,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.3967004,6.9168539,0,0,0,-991.39862,0,3,2,2019,10,2,30,36,1,2,0,6.6976814,6.6976814,0,0,0,0,0,0,0,0,5.5233951,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,1,7,7,3,1,445,317572.69,0,0,0,1065.6069 -2644,3262,5857,-9,5856,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-983.06372,-9,2,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,54.8,47.62,-9,-9,1.666666666666667,1,1,0,0,1,7,3,1,445,317572.69,0,0,0,1065.6069 -2645,3263,5858,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,3,0,4.3690934,4.473568,0,0,-1083.8762,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.7545295,0,54.37,54.8,-9,-9,6.666666666666667,4,2,0,0,6,5,2,1,574,526277.13,0,0,0,575.68719 -2646,3264,5859,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-918.13611,0,2,3,2019,11,0,0,0,4,1,0,0,0,1,42.392433,7.8579149,388.36206,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,6,4,1,1,924,178153.64,0,0,0,1677.5674 -2647,3265,5860,5861,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.9166298,8.909174,5.3743992,10,11,68.877472,0,-9,-9,2019,6,0,30,30,1,0,0,34.63266,34.63266,0,0,0,0,0,1,1,0,5.6404943,5.5323873,59.86,48.06,52.06,51.69,8.333333333333334,1,1,0,1,2,5,5,1,672,1862368.1,1153915,257596.63,0,4952.6733 -2647,3265,5861,5860,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.0207748,7.7225285,0,30,-11,-132.08476,0,2,-9,2019,9,0,30,31,1,0,0,9.6862984,9.6862984,0,0,0,0,2,1,1,0,2.3942518,0,52.06,51.69,59.86,48.06,8.333333333333334,1,1,0,0,13,5,5,1,672,1862368.1,1153915,257596.63,0,4952.6733 -2647,3266,5862,-9,5861,5860,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-946.23987,-9,1,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.57086521,0,61.85,44.55,-9,-9,10,1,1,0,0,2,5,1,1,1062,632347.75,0,0,0,-519.60724 -2648,3267,5863,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-975.31604,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.02,44.19,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,198,-84876.438,0,0,0,976.63574 -2649,3268,5864,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9871464,7.9296632,0,0,0,-1067.5787,0,2,3,2019,8,0,40,40,1,0,0,9.2079983,9.2079983,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,482,-215795.39,25476.861,0,0,1299.6843 -2650,3269,5865,-9,5868,-9,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-820.26715,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.35,58.72,-9,-9,6.666666666666667,2,3,0,0,0,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 -2650,3269,5866,-9,5868,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.83044,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 -2650,3269,5867,-9,5868,-9,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1053.5988,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 -2650,3269,5868,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,5,8.1910591,8.2217178,0,0,0,-911.28632,0,2,-9,2019,1,0,30,16,1,0,0,21.032822,21.032822,0,0,0,0,0,1,1,0,0,0,61.01,50.48,-9,-9,8.333333333333334,2,3,0,1,5,9,3,0,442.75,131777.2,34099.41,175873.77,228397.16,2514.0071 -2651,3270,5869,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,8.1434689,7.8038306,0,0,-841.28632,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5322864,8.0945158,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,10,4,0,396,1120245.4,22857.313,542814.13,0,3245.1343 -2652,3271,5870,5871,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,8.051712,8.3861427,0,1,-2,103.61022,0,2,2,2019,8,0,38,38,1,0,0,12.359954,12.359954,0,0,0,0,0,1,1,0,0,0,55.59,48.73,44.74,60.52,8.333333333333334,1,1,0,0,6,8,3,0,320.33334,205615,0,593834.25,343396.84,2008.4243 -2652,3271,5871,5870,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,0,0,0,1,2,-44.537861,0,1,1,2019,10,2,0,40,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.74,60.52,55.59,48.73,8.333333333333334,3,4,1,1,7,8,3,0,320.33334,205615,0,593834.25,343396.84,2008.4243 -2652,3271,5872,-9,5870,5871,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-977.73932,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,320.33334,205615,0,593834.25,343396.84,2008.4243 -2653,3272,5873,-9,5875,5874,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1106.0546,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,1,866,214926.36,52491.566,0,0,2906.0269 -2653,3272,5874,5875,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.2982769,8.2518826,0,11,-6,-77.975555,0,2,2,2019,8,0,45,42,1,0,0,10.143068,10.143068,0,0,0,0,0,1,1,0,0,0,50.85,52.08,57.33,53.46,8.333333333333334,1,1,0,0,7,7,4,1,866,214926.36,52491.566,0,0,2906.0269 -2653,3272,5875,5874,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.9990005,7.8490605,0,11,6,14.527452,0,3,3,2019,8,0,37,34,1,0,0,10.367488,10.367488,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50.85,52.08,1.666666666666667,3,4,0,0,9,7,4,1,866,214926.36,52491.566,0,0,2906.0269 -2654,3273,5876,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.2817421,8.5206251,0,0,0,-1075.4667,0,-9,-9,2019,7,0,35,35,1,0,0,12.393266,12.393266,0,0,0,0,0,0,0,0,1.0142604,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,718,-168983.7,62914.539,72976.289,7722.4741,2275.2571 -2655,3274,5877,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,8.0307512,8.0842628,0,0,-929.21155,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.9931543,8.3238087,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,1313,1969412.9,1158570.8,552551.06,0,1552.5404 -2656,3275,5878,5880,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,6.3133326,6.6605835,0,3,0,-94.763252,0,3,3,2019,9,0,10,0,1,0,0,7.2584925,7.2584925,0,0,0,0,0,1,1,0,0,0,38.6,55.31,25.26,42.61,5,1,1,0,0,3,10,3,0,1323.6666,-57928.344,0,0,0,2352.1792 -2656,3275,5879,-9,5880,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1084.9846,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,51.45,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,1323.6666,-57928.344,0,0,0,2352.1792 -2656,3275,5880,5878,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.7248082,8.0574961,0,3,9,-36.388233,0,3,3,2019,25,12,25,24,1,12,0,9.9414787,9.9414787,0,0,0,0,2,1,1,0,0,0,25.26,42.61,38.6,55.31,1.666666666666667,1,1,0,0,3,10,3,0,1323.6666,-57928.344,0,0,0,2352.1792 -2657,3276,5881,5882,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,3,39.803043,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,61.59,34.98,40.79,42.22,8.333333333333334,1,1,0,0,0,5,3,1,846.5,1143540,527098,158989.77,0,2240.9893 -2657,3276,5882,5881,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.7003431,8.2668381,7,-3,-62.045841,0,2,3,2019,19,7,0,0,4,7,0,0,0,1,0,4.1676702,0,120,1,1,0,5.2758427,8.0781288,40.79,42.22,61.59,34.98,5,1,1,0,0,0,5,3,1,846.5,1143540,527098,158989.77,0,2240.9893 -2657,3277,5883,-9,5881,5882,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-901.35455,0,2,1,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.42,26.3,-9,-9,5,1,1,0,0,0,5,1,1,563,0,0,0,0,1303.3743 -2658,3278,5884,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.9192796,6.3229337,0,0,-986.15814,0,3,3,2019,9,2,0,15,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5021305,6.8972087,63.24,45.09,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,462,397024.88,-78211.922,0,0,1431.7115 -2659,3279,5885,5886,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.951355,7.7018085,0,17,-2,-116.0211,0,3,3,2019,10,0,30,30,1,0,0,8.453228,8.453228,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.61,54.24,8.333333333333334,1,1,0,0,12,6,4,1,1389.6666,116290.25,53591.363,119537.65,0,3735.3354 -2659,3279,5886,5885,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.8437519,8.8357029,0,20,2,76.362442,0,2,2,2019,9,0,43,47,1,0,0,13.928968,13.928968,0,0,0,0,0,1,1,0,2.6151283,0,49.61,54.24,57.06,57.76,8.333333333333334,1,1,0,0,12,6,4,1,1389.6666,116290.25,53591.363,119537.65,0,3735.3354 -2659,3279,5887,-9,5885,5886,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.38678,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,1389.6666,116290.25,53591.363,119537.65,0,3735.3354 -2660,3280,5888,5889,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,0,0,7,0,-76.560516,0,-9,-9,2019,8,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,8.1711884,0,57.33,53.46,45.01,57.46,1.666666666666667,1,1,0,0,8,9,2,1,626.5,140788.72,0,0,0,2009.9263 -2660,3280,5889,5888,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.0676384,6.7843204,0,37,0,-21.922453,0,2,2,2019,11,1,17,20,1,1,0,6.5595217,6.5595217,0,0,0,0,0,0,0,0,2.3094068,0,45.01,57.46,57.33,53.46,8.333333333333334,1,1,0,0,9,9,2,1,626.5,140788.72,0,0,0,2009.9263 -2661,3281,5890,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.4736,0,2,2,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,23.3,53.27,-9,-9,3.333333333333333,1,1,1,1,8,6,1,0,283,38457.625,185415.72,41822.875,0,854.60986 -2662,3282,5891,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,3.42821,3.7787881,0,0,-912.98834,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.612704,65.73999999999999,11.6,-9,-9,5,4,5,0,0,0,8,2,0,271,-415487.91,-84740.305,0,0,1696.2122 -2663,3283,5892,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.8251648,8.1562405,0,0,0,-1084.2263,0,3,3,2019,17,5,38,40,1,5,0,9.6208696,9.6208696,0,0,0,0,0,1,1,0,0,0,36.37,41.82,-9,-9,5,1,1,0,0,9,4,4,1,638,114907.77,125338.44,0,0,2093.447 -2664,3284,5893,5894,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.3884611,8.0749826,37,2,104.68432,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6918774,8.4213848,48.87,58.55,35.67,36.57,8.333333333333334,1,1,0,0,7,9,4,1,2570.5,1916754.3,640263.38,369580.69,0,5028.9497 -2664,3284,5894,5893,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,7.2078986,7.5869489,7.1572137,36,-2,40.419083,0,-9,-9,2019,18,7,19,20,1,7,0,7.3504672,7.3504672,1,0,42.48196,0,0,1,1,0,5.1838164,6.9748778,35.67,36.57,48.87,58.55,8.333333333333334,1,1,0,0,11,9,4,1,2570.5,1916754.3,640263.38,369580.69,0,5028.9497 -2665,3285,5895,5896,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.8229313,7.5833645,17,-8,1.0583383,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.0573406,7.8032122,60.12,54.8,60.88,10.14,10,1,1,0,0,0,2,3,1,841.5,1212022.3,1126392.5,143845.97,0,3387.3977 -2665,3285,5896,5895,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.176693,7.2525029,17,8,-95.626793,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,.95825076,0,0,1,1,0,4.143508,7.3256402,60.88,10.14,60.12,54.8,5,1,1,0,0,0,2,3,1,841.5,1212022.3,1126392.5,143845.97,0,3387.3977 -2666,3286,5897,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.4658232,7.5068965,0,0,0,-1081.7399,0,-9,-9,2019,12,0,48,48,1,0,0,3.757318,3.757318,0,0,0,0,0,0,0,0,0,0,35.2,48.71,-9,-9,8.333333333333334,2,3,0,0,8,9,3,0,218,7999.02,29455.643,0,0,574.31445 -2667,3287,5898,5901,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,8.060483,8.1851025,0,25,1,-107.82825,0,2,2,2019,11,0,20,40,1,0,0,18.053833,18.053833,0,0,0,0,0,1,1,0,0,0,61.26,43.33,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 -2667,3287,5899,-9,5898,5901,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-987.94507,-9,2,2,2019,24,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,25.74,65.41,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 -2667,3287,5900,-9,5898,5901,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-994.27545,-9,2,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.93,48.96,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 -2667,3287,5901,5898,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.526722,8.3838329,0,24,-1,1.4653597,0,3,2,2019,6,0,37,37,1,0,0,15.745728,15.745728,0,0,0,0,0,1,1,0,7.8513155,0,57.16,56.15,61.26,43.33,8.333333333333334,1,1,0,0,8,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 -2667,3287,5902,-9,5898,5901,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.8553,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,693.79999,139949.55,91943.453,95672.758,89519.664,4830.1372 -2668,3288,5903,5904,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,9.1403923,8.9311314,0,3,0,10.301286,0,-9,-9,2019,10,2,35,45,1,2,0,31.194344,31.194344,0,0,0,0,0,0,0,0,0,0,59.3,28.24,51.83,57.2,10,1,1,0,0,5,7,5,1,719.66669,1305082.5,310330.44,652488.94,118343.7,5459.042 -2668,3288,5904,5903,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1710167,8.7504644,0,13,0,-13.272938,0,2,1,2019,10,0,47,37,1,0,0,11.646191,11.646191,0,0,0,0,0,0,0,0,0,0,51.83,57.2,59.3,28.24,8.333333333333334,1,1,0,0,9,7,5,1,719.66669,1305082.5,310330.44,652488.94,118343.7,5459.042 -2668,3288,5905,-9,5904,5903,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.5602,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,719.66669,1305082.5,310330.44,652488.94,118343.7,5459.042 -2669,3289,5906,5907,-9,-9,1,1,40,0,3,0,2,2,-9,1,3,0,0,0,10,2,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,49.04,55.86,60.03,16.23,5,1,1,1,1,5,5,1,0,852,-33245.617,0,33303.746,29424.012,2430.5474 -2669,3289,5907,5906,-9,-9,1,0,38,0,3,0,2,2,-9,1,1,0,0,0,10,-2,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.03,16.23,49.04,55.86,3.333333333333333,1,1,0,1,0,5,1,0,852,-33245.617,0,33303.746,29424.012,2430.5474 -2670,3290,5908,5909,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,4.8931336,5.2380495,5,8,-69.184235,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.9472771,5.3549175,56.94,36.17,44.25,39.12,10,1,1,0,0,0,9,2,1,451.5,584556.44,123109.52,280471.25,0,3113.999 -2670,3290,5909,5908,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.3719521,4.9705315,5,-8,-12.162061,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,4.5652118,0,0,1,1,0,0,5.0745964,44.25,39.12,56.94,36.17,3.333333333333333,1,1,0,0,0,9,2,1,451.5,584556.44,123109.52,280471.25,0,3113.999 -2671,3291,5910,5912,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.3983459,9.6859903,0,9,2,41.003643,0,-9,-9,2019,7,0,81,84,1,0,0,17.098879,17.098879,0,0,0,0,0,1,1,0,3.583951,0,59.53,56.44,54.96,53.17,8.333333333333334,1,1,0,0,11,10,5,1,470.33334,1773754.8,1429632.3,749218.06,341258.91,5491.8481 -2671,3291,5911,-9,5912,5910,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1052.2444,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,5,1,470.33334,1773754.8,1429632.3,749218.06,341258.91,5491.8481 -2671,3291,5912,5910,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.6301036,6.8720369,0,9,-2,34.044537,0,2,2,2019,9,0,24,12,1,0,0,3.5480692,3.5480692,0,0,0,0,0,1,1,0,0,0,54.96,53.17,59.53,56.44,6.666666666666667,1,1,0,0,10,10,5,1,470.33334,1773754.8,1429632.3,749218.06,341258.91,5491.8481 -2672,3292,5913,5914,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,51,0,0,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,15.349774,0,0,1,1,0,2.6663604,0,58.87,16.63,56.5,48.33,8.333333333333334,1,1,0,0,0,2,1,1,346.5,803772.06,374400.69,266289.81,0,1441.9592 -2672,3292,5914,5913,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,0,0,52,0,0,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.3735647,0,56.5,48.33,58.87,16.63,1.666666666666667,1,1,0,0,0,2,1,1,346.5,803772.06,374400.69,266289.81,0,1441.9592 -2673,3293,5915,-9,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,9.6323328,9.5927906,0,0,0,-931.29034,0,1,1,2019,0,0,80,0,1,0,0,23.919022,23.919022,0,0,0,0,0,0,0,0,5.1049867,0,52,59,-9,-9,10,1,1,0,0,13,2,5,1,526.5,183601.67,47954.004,164306.47,116980.27,8752.3018 -2673,3293,5916,-9,-9,5915,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.7146,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,526.5,183601.67,47954.004,164306.47,116980.27,8752.3018 -2674,3294,5917,-9,5919,5918,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.4224,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,265.33334,242591.34,227203.45,165340.53,39188.344,2882.894 -2674,3294,5918,5919,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.3733101,8.246274,0,7,3,29.229851,0,-9,-9,2019,9,0,40,38,1,1,0,12.931968,12.931968,0,0,0,0,0,1,1,0,0,0,52,55,51.83,57.2,8,1,1,0,0,1,5,4,1,265.33334,242591.34,227203.45,165340.53,39188.344,2882.894 -2674,3294,5919,5918,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.7149444,7.5189757,0,7,-3,-70.496513,0,3,3,2019,12,0,20,20,1,0,0,13.568379,13.568379,0,0,0,0,2,1,1,0,1.9879018,0,51.83,57.2,52,55,8.333333333333334,1,1,0,0,10,5,4,1,265.33334,242591.34,227203.45,165340.53,39188.344,2882.894 -2675,3295,5920,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1009.6055,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,8.56,52.97,-9,-9,1.666666666666667,1,1,1,0,0,11,1,0,1212.5,99281.891,0,0,0,1149.8125 -2675,3295,5921,-9,5920,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.92407,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,1212.5,99281.891,0,0,0,1149.8125 -2676,3296,5922,-9,5923,-9,1,0,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-979.56708,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,8,1,0,531,-130861.11,0,0,0,1164.6104 -2676,3296,5923,-9,-9,-9,1,0,40,1,2,0,2,2,-9,1,1,0,0,0,0,0,-1125.8005,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,38.46,27.37,-9,-9,5,1,1,1,1,0,8,1,0,531,-130861.11,0,0,0,1164.6104 -2676,3297,5924,-9,5925,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.26343,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,0,316.5,102045.11,0,0,0,653.66687 -2676,3297,5925,-9,5923,-9,1,0,21,1,2,0,2,2,-9,0,4,0,.87449199,.79225504,0,0,-1072.5454,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,.70918518,0,57.66,45.37,-9,-9,1.666666666666667,1,1,1,0,1,8,2,0,316.5,102045.11,0,0,0,653.66687 -2677,3298,5926,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.655849,7.943274,0,0,0,-982.44464,0,2,1,2019,7,0,35,30,1,0,0,7.0506849,7.0506849,0,0,0,0,0,1,1,0,0,0,62.04,30.64,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,258,32252.988,21226.146,165256.7,0,1502.1049 -2678,3299,5927,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.4195023,8.6673841,6.9475021,0,0,-1112.5612,0,-9,-9,2019,10,0,60,60,1,0,0,7.8746777,7.8746777,1,0,0,0,0,1,1,0,8.2990046,7.1350045,54.89,51.69,-9,-9,10,1,1,0,0,9,10,5,1,1363,56858.949,-68028.117,0,0,4546.5703 -2679,3300,5928,-9,-9,-9,1,0,36,0,0,0,3,3,-9,0,5,7.7291112,7.7723317,0,0,0,-966.3175,0,3,-9,2019,1,0,52,15,1,0,0,5.2969851,5.2969851,0,0,0,0,0,1,1,0,0,0,51.29,58.28,-9,-9,6.666666666666667,1,1,0,0,8,1,3,0,38,388316,-70358.539,0,0,1818.0463 -2680,3301,5929,5930,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.5164871,8.4057035,0,7,-4,-54.016178,0,2,2,2019,6,0,41,35,1,0,0,8.9495516,8.9495516,0,0,0,0,0,1,1,0,2.52404,0,62.39,56.71,54.37,54.8,8.333333333333334,1,1,0,0,9,5,5,1,1622,186881.39,173248.98,204769.77,149405.86,6188.3706 -2680,3301,5930,5929,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.6703167,8.6328173,0,7,4,75.18795,0,-9,-9,2019,6,0,55,35,1,0,0,10.309576,10.309576,0,0,0,0,0,1,1,0,7.6745687,0,54.37,54.8,62.39,56.71,8.333333333333334,1,1,0,0,11,5,5,1,1622,186881.39,173248.98,204769.77,149405.86,6188.3706 -2680,3301,5931,-9,5929,5930,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.0663,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,1622,186881.39,173248.98,204769.77,149405.86,6188.3706 -2681,3302,5932,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1024.6096,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,6.666666666666667,2,3,0,0,4,2,1,1,3350,-31317.004,0,0,0,383.83493 -2682,3303,5933,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,0,0,0,0,-977.72626,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,10.487343,0,47.48,58,-9,-9,8.333333333333334,1,1,0,0,9,2,1,1,1072,0,0,0,0,11213.952 -2683,3304,5934,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,0,0,0,0,-954.96136,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.62,44.71,-9,-9,6.666666666666667,2,3,0,0,7,2,1,0,730,-602847.25,0,0,0,1004.4051 -2683,3305,5935,-9,5934,-9,1,0,28,0,1,0,1,1,-9,0,3,8.4527597,8.4028521,0,0,0,-867.78949,0,2,-9,2019,8,0,38,38,1,0,1,10.912131,10.912131,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,0,0,7,2,4,0,515,192152.53,-21251.426,0,0,1323.4209 -2683,3306,5936,-9,5934,-9,1,1,24,0,1,0,1,1,-9,0,2,9.4321566,9.4217043,0,0,0,-979.41278,0,2,-9,2019,21,9,38,40,1,9,1,32.545631,32.545631,0,0,0,0,0,1,1,0,8.0887241,0,22.73,54.89,-9,-9,5,2,3,0,0,8,2,5,0,131,223065.41,101246.92,352819.41,313969.31,6030.7046 -2684,3307,5937,5938,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,50,3,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.62,47.75,51.72,22.59,8.333333333333334,1,1,0,0,8,13,1,1,487.5,113309.23,0,0,0,2065.4407 -2684,3307,5938,5937,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,50,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.72,22.59,51.62,47.75,8.333333333333334,1,1,0,0,0,13,1,1,487.5,113309.23,0,0,0,2065.4407 -2685,3308,5939,-9,5940,5941,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.72144,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 -2685,3308,5940,5941,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,0,0,0,16,4,-15.804422,0,2,1,2019,7,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,8.7036924,0,58.15,52.91,57.66,50.59,10,1,1,0,0,7,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 -2685,3308,5941,5940,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.7129021,9.6851654,0,7,-4,36.006893,0,-9,-9,2019,11,2,40,40,1,2,0,50.406338,50.406338,0,0,0,0,0,0,0,0,8.2839842,0,57.66,50.59,58.15,52.91,8.333333333333334,1,1,0,0,8,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 -2685,3308,5942,-9,5940,5941,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.7059,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,332.75,494293.72,105812.36,334875.94,46591.273,11827.668 -2686,3309,5943,5944,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,5,1,62.75502,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5145519,0,52,54.51,54.37,54.8,8.333333333333334,1,1,0,0,0,11,3,1,848,812143.44,567772.5,285372.72,107086.92,2850.2334 -2686,3309,5944,5943,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.1271124,8.1004019,5,-1,-37.622437,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.016036,54.37,54.8,52,54.51,8.333333333333334,1,1,0,0,0,11,3,1,848,812143.44,567772.5,285372.72,107086.92,2850.2334 -2687,3310,5945,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-924.52795,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,764,88305.469,0,120354.93,0,1163.1965 -2688,3311,5946,5947,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3625965,8.7735128,0,2,0,-1.8091193,0,-9,-9,2019,7,0,37,50,1,0,0,17.704332,17.704332,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,6,5,1,817.5,-2647.1738,-97186.445,92525.391,113202.88,3841.886 -2688,3311,5947,5946,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3659286,8.5104446,0,2,0,96.504517,0,-9,-9,2019,8,0,47,46,1,0,0,13.269055,13.269055,0,0,0,0,0,0,0,0,2.9519365,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,5,6,5,1,817.5,-2647.1738,-97186.445,92525.391,113202.88,3841.886 -2689,3312,5948,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.7700925,8.0712833,0,0,-973.04565,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.4472289,8.027792,43.01,53.24,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,689,461723.56,356677.75,118614.98,0,2305.1545 -2690,3313,5949,-9,5951,5950,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-942.51312,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,0,456.33334,-110487.42,13754.485,0,0,1434.838 -2690,3313,5950,5951,-9,-9,1,1,36,1,1,0,2,2,-9,0,2,6.7648973,6.9260402,0,5,5,92.195129,0,-9,-9,2019,16,3,30,30,1,3,0,2.9365695,2.9365695,0,0,0,0,0,1,1,0,0,0,38.59,47.65,48.17,52.08,5,1,1,0,0,5,13,2,0,456.33334,-110487.42,13754.485,0,0,1434.838 -2690,3313,5951,5950,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,6.8952932,7.2539606,0,5,-5,-74.713646,0,-9,-9,2019,10,0,24,23,1,0,0,4.6527505,4.6527505,0,0,0,0,0,1,1,0,0,0,48.17,52.08,38.59,47.65,6.666666666666667,1,1,0,0,9,13,2,0,456.33334,-110487.42,13754.485,0,0,1434.838 -2691,3314,5952,5953,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,6.5967202,6.8566828,10,0,26.919823,0,-9,-9,2019,13,2,0,34,4,2,0,0,0,0,0,0,0,0,1,1,0,8.4025898,6.4274139,41.84,49.92,53.14,45.74,6.666666666666667,1,1,0,0,11,2,3,1,543,824743,287455.16,508333.03,0,4319.6719 -2691,3314,5953,5952,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,8.0176001,7.9179363,0,45,0,36.138466,0,3,1,2019,12,1,20,22,1,1,0,18.787577,18.787577,0,0,0,0,0,1,1,0,0,0,53.14,45.74,41.84,49.92,6.666666666666667,1,1,0,0,11,2,3,1,543,824743,287455.16,508333.03,0,4319.6719 -2692,3315,5954,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.5163355,8.6788511,0,0,0,-998.33929,0,-9,-9,2019,7,0,38,38,1,0,0,16.408646,16.408646,0,0,0,0,0,1,1,0,2.4399989,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,9,9,5,1,329,112235.29,-62326.852,368344.5,138310.41,1813.0586 -2693,3316,5955,5958,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,0,0,0,10,1,-24.163427,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,2,3,0,0,0,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 -2693,3316,5956,-9,5955,5958,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.6715,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 -2693,3316,5957,-9,5955,5958,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1048.7697,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.99,41.3,-9,-9,10,2,3,0,0,0,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 -2693,3316,5958,5955,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.8630919,8.0979509,0,10,-1,-61.369152,0,-9,-9,2019,10,0,25,25,1,1,0,14.466562,14.466562,0,0,0,0,0,1,1,0,0,0,51,56,49,56,7,2,3,0,0,13,8,2,1,956,144477.05,133228.02,171153.73,28488.953,1436.6396 -2693,3317,5959,-9,5955,5958,1,1,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-884.5495,-9,3,3,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,52.29,43.32,-9,-9,6.666666666666667,2,3,0,0,2,8,1,1,708,0,0,0,0,0 -2693,3318,5960,-9,5955,5958,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-989.51544,-9,3,3,2019,10,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,44.56,48.72,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,205,0,0,0,0,0 -2694,3319,5961,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.4216,-9,1,3,2019,9,0,0,0,4,0,0,0,0,1,3.311039,0,20.288521,2,1,1,0,3.5820313,0,42.24,33.38,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,720,-3704.5713,0,0,0,1008.801 -2695,3320,5962,-9,-9,5964,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.7476,-9,-9,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,3,1,664.33331,212720.08,4945.2988,59773.758,54141.93,1938.51 -2695,3320,5963,5964,-9,-9,1,0,28,1,1,0,3,3,-9,0,5,0,0,0,2,-11,-46.744232,0,3,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,60.96,29.6,57.68,8.333333333333334,2,3,0,0,0,4,3,1,664.33331,212720.08,4945.2988,59773.758,54141.93,1938.51 -2695,3320,5964,5963,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,8.0739222,8.1956205,0,2,11,-26.974798,0,3,2,2019,16,5,46,46,1,5,0,7.7500529,7.7500529,0,0,0,0,0,1,1,0,0,0,29.6,57.68,46.88,60.96,8.333333333333334,1,1,0,0,8,4,3,1,664.33331,212720.08,4945.2988,59773.758,54141.93,1938.51 -2696,3321,5965,5966,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,7,-8,-151.68019,0,3,2,2019,32,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,40.15,49.37,1.666666666666667,1,1,0,0,0,12,2,0,540,151342.09,0,64071.699,0,1959.5957 -2696,3321,5966,5965,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,4.3408117,4.6835389,7,8,121.87639,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0992475,4.7782922,40.15,49.37,16.04,23.99,10,1,1,0,0,4,12,2,0,540,151342.09,0,64071.699,0,1959.5957 -2697,3322,5967,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,8.0888767,7.7912035,0,0,-973.12433,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8799281,37.76,50.87,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,787,577564,347182.78,161033.89,0,2236.1523 -2698,3323,5968,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-973.52838,0,3,3,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,20.97,24.53,-9,-9,8.333333333333334,1,1,1,1,0,2,1,0,1965,83653.594,130038.8,0,0,792.16742 -2698,3324,5969,-9,5968,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1082.786,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,0,0,2,1,0,664,0,0,0,0,303.97272 -2699,3325,5970,-9,5971,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1015.9222,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,1,0,756,87897.281,-42210.477,0,0,1322.6829 -2699,3325,5971,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,3,0,0,0,0,0,-942.4024,0,2,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,53.99,48.04,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,756,87897.281,-42210.477,0,0,1322.6829 -2700,3326,5972,5973,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.8337917,7.7060485,0,32,0,36.083157,0,2,3,2019,10,0,23,39,1,1,0,13.33849,13.33849,0,0,0,0,0,0,0,0,0,0,32.26,50.01,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,843,495787.19,144174.38,301510.94,0,4080.6108 -2700,3326,5973,5972,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0027456,9.0257607,0,32,0,-62.799194,0,3,3,2019,7,0,45,44,1,0,0,19.811934,19.811934,0,0,0,0,0,0,0,0,2.8662426,0,58.15,52.91,32.26,50.01,6.666666666666667,1,1,0,0,10,13,5,1,843,495787.19,144174.38,301510.94,0,4080.6108 -2700,3327,5974,-9,5972,5973,1,1,26,0,0,0,1,1,-9,0,3,8.7429743,8.0380135,0,0,0,-1034.8737,0,2,2,2019,12,0,38,40,1,0,1,12.238535,12.238535,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,5,1,1,0,0,8,13,4,1,195,-259888.2,19357.027,0,0,2006.7501 -2701,3328,5975,5976,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.5128813,8.3949614,0,2,-3,149.02216,-9,-9,-9,2019,26,11,48,0,1,11,0,11.612761,11.612761,0,0,0,0,0,0,0,0,0,0,31.63,39.79,48.48,49.45,5,1,1,0,0,1,7,5,1,643,507805.44,16445.734,478388.5,160118.27,3922.4688 -2701,3328,5976,5975,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.6733341,8.4184103,0,2,3,-51.71859,0,2,3,2019,8,1,43,43,1,1,0,17.238838,17.238838,0,0,0,0,0,0,0,0,0,0,48.48,49.45,31.63,39.79,6.666666666666667,1,1,0,0,9,7,5,1,643,507805.44,16445.734,478388.5,160118.27,3922.4688 -2702,3329,5977,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-902.95453,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.29,19.42,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,215,233266.72,0,0,0,1290.5944 -2703,3330,5978,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.3824053,8.3438454,0,0,0,-1032.2771,0,3,2,2019,7,0,24,26,1,0,0,23.015831,23.015831,0,0,0,0,0,1,1,0,.47600076,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,1830,460710.5,0,86021.172,33925.844,2215.175 -2703,3331,5979,-9,-9,5978,1,0,21,0,0,0,2,2,-9,0,4,6.738996,7.0493269,0,0,0,-1021.8268,0,-9,2,2019,13,2,15,20,1,2,0,5.8828936,5.8828936,0,0,0,0,0,1,1,0,0,0,33.83,63.9,-9,-9,8.333333333333334,1,1,0,0,3,11,2,1,1571,-342921.53,0,0,0,-46.201569 -2704,3332,5980,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7418137,8.7668447,0,0,0,-983.65649,0,1,1,2019,6,0,100,55,1,0,0,7.0040846,7.0040846,0,0,0,0,0,1,1,0,1.9844122,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,5,0,98,-15130.518,0,0,0,1858.3079 -2705,3333,5981,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.6299157,7.7857466,0,0,0,-1040.7684,0,3,3,2019,19,7,37,45,1,7,0,7.8351831,7.8351831,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,3.333333333333333,1,1,0,0,9,2,3,1,499,697501.94,379257.5,0,0,1003.9508 -2706,3334,5982,5983,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.365262,8.1044846,0,7,-2,24.733381,0,3,2,2019,9,0,35,40,1,1,0,12.314706,12.314706,0,0,0,0,0,0,0,0,0,0,53,54,54.37,54.8,8,1,1,0,0,8,13,4,1,1016.5,666304.44,684317.38,118391.97,61147.883,2867.7844 -2706,3334,5983,5982,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.9796891,8.1996021,0,7,2,141.61916,0,3,3,2019,12,0,22,22,1,0,0,14.100842,14.100842,0,0,0,0,0,0,0,0,0,0,54.37,54.8,53,54,8.333333333333334,1,1,0,0,8,13,4,1,1016.5,666304.44,684317.38,118391.97,61147.883,2867.7844 -2706,3335,5984,-9,5983,5982,1,0,22,0,0,0,2,2,1,0,4,7.8210092,7.7110243,0,0,0,-969.15649,-9,3,2,2019,12,0,30,0,1,0,1,12.693778,12.693778,0,0,0,0,0,0,0,0,0,0,44.13,57.97,-9,-9,8.333333333333334,1,1,0,1,3,13,4,1,879,179125.44,0,0,0,1403.6865 -2707,3336,5985,5986,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.9110765,7.8630242,0,4,4,-109.37818,0,3,3,2019,13,2,40,40,1,2,0,8.9726238,8.9726238,0,0,0,0,0,0,0,0,0,0,46.61,56.93,47.45,35.39,3.333333333333333,1,1,0,0,7,2,4,0,1282.5,-130012.4,88903.344,0,0,2604.7031 -2707,3336,5986,5985,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.2472658,7.9919848,0,4,-4,120.85498,0,-9,-9,2019,21,7,61,51,1,7,0,7.1183658,7.1183658,0,0,0,0,0,0,0,0,0,0,47.45,35.39,46.61,56.93,3.333333333333333,1,1,0,0,4,2,4,0,1282.5,-130012.4,88903.344,0,0,2604.7031 -2708,3337,5987,-9,5989,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.7264,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,468.66666,0,0,0,0,1826.0498 -2708,3337,5988,-9,5989,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.8663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,468.66666,0,0,0,0,1826.0498 -2708,3337,5989,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.2514868,7.4932175,5.7389474,0,0,-1021.4686,0,2,2,2019,12,2,20,0,1,2,0,9.0155554,9.0155554,0,0,0,0,0,1,1,0,6.2017169,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,1,1,6,2,0,468.66666,0,0,0,0,1826.0498 -2709,3338,5990,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.9467545,7.9111814,0,0,0,-1050.3932,-9,3,3,2019,22,10,35,0,1,10,0,7.9441996,7.9441996,0,0,0,0,0,0,0,0,0,0,40.03,34.79,-9,-9,5,1,1,0,0,13,4,4,1,84,47013.84,105887.38,12183.364,0,1839.8014 -2710,3339,5991,5992,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3515902,7.4108138,31,-3,32.044647,0,2,2,2019,7,0,0,28,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9847236,7.3292279,41.34,56.62,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,441,2774583,1171818.8,1306072.8,0,3156.8018 -2710,3339,5992,5991,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.0944166,7.5577888,31,3,9.3695431,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7034471,7.9136343,57.16,56.15,41.34,56.62,8.333333333333334,1,1,0,0,4,2,4,1,441,2774583,1171818.8,1306072.8,0,3156.8018 -2711,3340,5993,-9,5996,5994,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.56854,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 -2711,3340,5994,5996,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,0,0,0,14,4,-2.819943,1,2,1,2019,8,0,0,72,2,0,0,0,0,0,0,0,0,0,1,1,0,7.3558431,0,55.36,51.57,51.24,58.84,6.666666666666667,1,1,0,1,13,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 -2711,3340,5995,-9,5996,5994,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.59296,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 -2711,3340,5996,5994,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.8931813,6.9763856,0,14,-4,-109.11275,0,-9,-9,2019,10,1,12,12,1,1,0,8.2544727,8.2544727,0,0,0,0,0,1,1,0,0,0,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,13,9,2,1,576.5,2004549.8,446462.97,1190393.8,179631.38,1903.6586 -2712,3341,5997,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,4,7.3170772,7.2679653,0,0,0,-955.56055,0,2,2,2019,7,0,37,0,1,0,0,4.4402857,4.4402857,0,0,0,0,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,3,0,551,462963.91,291475.16,0,0,1491.657 -2712,3342,5998,-9,5997,-9,1,1,21,0,0,0,2,2,-9,0,4,4.9501977,5.1308088,0,0,0,-1031.4268,0,3,-9,2019,19,6,1,0,1,6,1,17.788902,17.788902,0,0,0,0,0,1,1,0,0,0,41.21,43.41,-9,-9,1.666666666666667,1,1,0,0,1,7,2,0,642,-372376.78,21574.875,0,0,-112.06963 -2712,3343,5999,-9,5997,-9,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1076.5249,1,3,-9,2019,7,0,0,50,2,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,66.93000000000001,43.76,-9,-9,5,1,1,0,0,3,7,1,0,1394,0,0,0,0,0 -2713,3344,6000,6002,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.6842451,9.9516706,0,17,-3,-44.186909,0,1,1,2019,14,2,55,83,1,2,0,37.423664,37.423664,0,0,0,0,0,0,0,0,0,0,45.97,51.9,57.09,46.7,6.666666666666667,1,1,0,0,9,8,5,1,342.33334,966722.69,434721.97,569987.44,89046.227,4680.3726 -2713,3344,6001,-9,6000,6002,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1111.5602,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,342.33334,966722.69,434721.97,569987.44,89046.227,4680.3726 -2713,3344,6002,6000,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,6.6383376,6.625443,0,17,3,37.848259,0,2,1,2019,7,0,30,30,1,0,0,2.7020354,2.7020354,0,0,0,0,0,0,0,0,0,0,57.09,46.7,45.97,51.9,6.666666666666667,1,1,0,0,9,8,5,1,342.33334,966722.69,434721.97,569987.44,89046.227,4680.3726 -2714,3345,6003,6004,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,0,0,0,2,2,-143.77794,0,-9,-9,2019,9,0,0,23,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,5,1,1,0,0,10,10,4,1,919,308233.69,35740.207,324236.34,0,2086.979 -2714,3345,6004,6003,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.6788816,8.8353882,0,2,-2,-126.19225,0,-9,-9,2019,10,0,39,38,1,0,0,15.617579,15.617579,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,5,1,1,0,0,10,10,4,1,919,308233.69,35740.207,324236.34,0,2086.979 -2714,3345,6005,-9,6003,6004,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-977.961,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,0,10,4,1,919,308233.69,35740.207,324236.34,0,2086.979 -2714,3346,6006,-9,6003,6004,1,1,28,0,1,0,2,2,-9,0,4,7.4261189,7.3987713,0,0,0,-992.82141,0,2,2,2019,6,0,30,30,1,0,1,5.6746039,5.6746039,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,7,10,3,1,333,91413.984,0,0,0,334.83588 -2714,3347,6007,-9,6003,6004,1,1,27,0,1,0,2,2,-9,0,4,7.3115358,7.3788409,0,0,0,-1005.4199,0,2,2,2019,9,0,30,37,1,0,1,7.5337143,7.5337143,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,9,10,3,1,868,417409.44,43645.52,0,0,836.22217 -2715,3348,6008,6009,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.2451248,7.9376054,5.8234382,35,-1,20.7659,0,3,3,2019,8,0,9,15,1,0,0,45.376057,45.376057,0,0,0,0,0,0,0,0,5.3254681,5.530838,49.28,52.09,50.03,52.62,8.333333333333334,1,1,0,0,10,1,5,1,647.5,514989.06,344928.25,168958.63,139412.19,3725.228 -2715,3348,6009,6008,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1289654,8.2765951,7.0211754,35,1,12.46572,0,-9,-9,2019,11,1,15,15,1,1,0,33.791935,33.791935,0,0,0,0,0,0,0,0,7.128253,7.2611356,50.03,52.62,49.28,52.09,8.333333333333334,1,1,0,0,10,1,5,1,647.5,514989.06,344928.25,168958.63,139412.19,3725.228 -2716,3349,6010,6011,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,54,-2,58.681053,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,73.504005,0,0,1,1,0,0,0,35.11,16.75,48.45,49.46,5,1,1,0,0,0,5,2,1,1679.5,244667.44,136910.59,165012.28,0,1875.3787 -2716,3349,6011,6010,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.3979931,6.1796994,54,2,-2.7027371,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,5.452713,6.2735553,48.45,49.46,35.11,16.75,6.666666666666667,1,1,0,0,0,5,2,1,1679.5,244667.44,136910.59,165012.28,0,1875.3787 -2717,3350,6012,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-788.71454,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.6139698,0,52,48,-9,-9,7,1,1,0,0,8,8,1,1,1076,80890.195,155655.77,276498.5,0,630.96893 -2718,3351,6013,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.683609,8.8739634,0,0,0,-968.58759,0,2,2,2019,9,1,55,37,1,1,0,9.6365299,9.6365299,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,3,13,5,1,582,-411587.56,34067.496,0,0,2349.9666 -2719,3352,6014,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.2882757,8.1737576,0,0,0,-952.10999,0,1,1,2019,3,0,35,35,1,0,0,13.071566,13.071566,0,0,0,0,0,1,1,0,2.3469579,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,659,322239.41,-64922.66,0,0,2135.1677 -2720,3353,6015,6016,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.9972854,7.9957614,0,26,-1,18.445316,0,3,3,2019,11,0,50,38,1,0,0,6.4767017,6.4767017,0,0,0,0,0,0,0,0,0,0,56.57,40.5,58.32,50.22,6.666666666666667,1,1,0,0,11,6,5,1,1056,114922.03,0,83476.461,28069.359,3137.6609 -2720,3353,6016,6015,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.5395994,8.4500504,0,26,1,-.5888589,0,3,3,2019,9,0,37,47,1,0,0,16.948757,16.948757,0,0,0,0,0,0,0,0,0,0,58.32,50.22,56.57,40.5,8.333333333333334,1,1,0,0,11,6,5,1,1056,114922.03,0,83476.461,28069.359,3137.6609 -2720,3354,6017,-9,6015,6016,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-964.65991,1,3,3,2019,12,0,0,37,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,6,2,1,999,292487.53,0,0,0,-241.29005 -2720,3355,6018,-9,6015,6016,1,0,22,0,0,0,2,2,-9,0,4,7.5265889,8.001092,0,0,0,-1035.7631,0,3,3,2019,9,0,37,42,1,0,1,7.4931369,7.4931369,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,5,6,3,1,643,-73555.633,4575.749,0,0,994.44373 -2721,3356,6019,6021,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.6752548,9.0632763,0,1,2,-11.414868,-9,2,2,2019,12,0,38,0,1,0,0,20.008867,20.008867,0,0,0,0,0,1,1,0,2.8078682,0,42.42,54.75,44.42,59.09,5,1,1,0,0,9,9,5,1,356,1473996.4,252338.17,831022.13,10512.228,4058.178 -2721,3356,6020,-9,6021,6019,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.0496,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,356,1473996.4,252338.17,831022.13,10512.228,4058.178 -2721,3356,6021,6019,-9,-9,1,0,48,0,1,0,3,3,-9,0,4,8.0919724,8.1013212,0,1,-2,-146.31021,-9,2,3,2019,17,6,25,0,1,6,0,18.946409,18.946409,0,0,0,0,0,1,1,0,.60914159,0,44.42,59.09,42.42,54.75,6.666666666666667,1,1,0,0,11,9,5,1,356,1473996.4,252338.17,831022.13,10512.228,4058.178 -2722,3357,6022,6023,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,0,0,0,30,-2,-4.6580048,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53,54,7,2,3,0,0,0,8,2,0,419.66666,266648.59,0,315033.13,-15788.672,791.85034 -2722,3357,6023,6022,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.1874566,7.4346404,0,30,2,-104.72316,0,3,3,2019,9,0,24,24,1,1,0,6.1319966,6.1319966,0,0,0,0,14.5,1,1,0,0,0,53,54,50,54,7,2,3,0,0,8,8,2,0,419.66666,266648.59,0,315033.13,-15788.672,791.85034 -2722,3357,6024,-9,6022,6023,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-988.41229,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,0,419.66666,266648.59,0,315033.13,-15788.672,791.85034 -2722,3358,6025,-9,6022,6023,1,1,28,0,1,0,1,1,-9,0,4,8.1190529,8.4240723,0,0,0,-1026.2572,0,3,2,2019,10,0,45,40,1,1,1,6.8083282,6.8083282,0,0,0,0,2,1,1,0,0,0,49,57,-9,-9,7,2,3,0,0,1,8,4,0,179,353334.13,9945.9033,0,0,1193.4519 -2722,3359,6026,-9,6022,6023,1,0,25,0,1,0,1,1,-9,0,4,7.8517814,7.3858976,0,0,0,-1041.2959,0,3,2,2019,11,0,38,37,1,2,1,5.4145288,5.4145288,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,0,359,-145606.64,-132056.39,0,0,1103.9514 -2723,3360,6027,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.5501709,6.2418613,0,0,-977.38953,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2439766,6.4560518,66.13,28.89,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,326,148716.13,36909.965,309306.72,0,1611.754 -2724,3361,6028,6029,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.2024403,7.8237524,0,5,2,-7.1674795,0,-9,-9,2019,11,0,40,40,1,0,0,9.6190662,9.6190662,0,0,0,0,0,0,0,0,0,0,38.86,57.79,32.44,42.13,3.333333333333333,1,1,0,0,7,2,4,1,287.5,1929.6719,-65937.813,80265.57,103180.06,2616.1704 -2724,3361,6029,6028,-9,-9,1,0,26,0,0,0,2,2,-9,0,1,8.2214899,8.1602449,0,5,-2,-120.47035,0,-9,-9,2019,16,4,39,45,1,4,0,10.716439,10.716439,0,0,0,0,0,0,0,0,0,0,32.44,42.13,38.86,57.79,3.333333333333333,1,1,0,0,9,2,4,1,287.5,1929.6719,-65937.813,80265.57,103180.06,2616.1704 -2725,3362,6030,6031,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.5470195,6.9996133,9,2,36.569935,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4524183,7.6649399,52.82,53.97,49.84,36.72,8.333333333333334,1,1,0,0,6,9,5,1,672,3298564,2058465.1,731179.25,0,5587.4219 -2725,3362,6031,6030,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.7654762,8.7695398,9,-2,152.82291,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7924581,8.756464,49.84,36.72,52.82,53.97,1.666666666666667,1,1,0,0,9,9,5,1,672,3298564,2058465.1,731179.25,0,5587.4219 -2726,3363,6032,6033,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2152376,8.1581936,0,8,0,-82.635124,0,-9,-9,2019,11,0,40,39,1,0,0,12.425346,12.425346,0,0,0,0,0,0,0,0,0,0,49.35,59.64,51.32,49.55,8.333333333333334,1,1,0,0,9,4,5,1,327.5,-127803.16,33261.047,192939.42,153432.31,3486.4836 -2726,3363,6033,6032,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.6126766,8.5220175,0,8,0,-32.703159,0,2,1,2019,11,0,42,43,1,0,0,11.70527,11.70527,0,0,0,0,0,0,0,0,3.4706323,0,51.32,49.55,49.35,59.64,8.333333333333334,1,1,0,0,9,4,5,1,327.5,-127803.16,33261.047,192939.42,153432.31,3486.4836 -2727,3364,6034,6035,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.7201495,7.8000474,5.4851475,44,-3,-81.038689,0,3,3,2019,10,4,39,44,1,4,0,6.161633,6.161633,0,0,0,0,0,1,1,0,0,6.075954,38.75,60.39,52,54.51,8.333333333333334,1,1,0,0,11,4,3,0,527.5,677172.88,190685.41,154463.27,0,1483.6459 -2727,3364,6035,6034,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,3,5.6601348,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,38.75,60.39,10,1,1,0,0,8,4,3,0,527.5,677172.88,190685.41,154463.27,0,1483.6459 -2728,3365,6036,6037,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7459121,7.2624955,0,42,0,-130.53662,0,2,3,2019,13,2,30,26,1,2,0,7.7646251,7.7646251,0,0,0,0,14.5,1,1,0,5.4937201,0,48.65,51.93,53,46,8.333333333333334,1,1,0,0,8,9,3,0,1349.5,703200.69,271698.41,222841.91,0,2089.6538 -2728,3365,6037,6036,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.9312901,5.9032221,6,9,-23.402414,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0060706,53,46,48.65,51.93,7,1,1,0,0,0,9,3,0,1349.5,703200.69,271698.41,222841.91,0,2089.6538 -2729,3366,6038,-9,6041,6039,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.79285,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 -2729,3366,6039,6041,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.369812,8.2482405,0,16,-3,-17.655231,0,3,2,2019,9,0,30,40,1,0,0,14.320436,14.320436,0,0,0,0,0,1,1,0,0,0,42.58,40.13,54.07,49.4,8.333333333333334,2,3,0,0,8,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 -2729,3366,6040,-9,6041,6039,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.4375,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 -2729,3366,6041,6039,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,0,0,0,17,3,-158.52158,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.07,49.4,42.58,40.13,8.333333333333334,2,3,0,0,6,8,3,0,335.5,-84507.43,63909.098,0,0,3212.3423 -2730,3367,6042,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.9568,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.79,51.1,-9,-9,8.333333333333334,3,4,1,0,0,6,1,0,322,192704.78,0,178805.39,14782.352,780.76459 -2731,3368,6043,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1072.6499,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.7190838,0,0,1,1,0,0,0,53.27,15.11,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,143,200327.47,0,0,0,1691.2289 -2732,3369,6044,6045,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.7523975,8.5405922,0,27,7,23.517635,0,-9,-9,2019,8,0,38,37,1,0,0,18.680393,18.680393,0,0,0,0,0,0,0,0,0,0,55.72,51.28,42.85,60.33,8.333333333333334,2,3,0,0,10,9,5,1,295.5,1333263.4,673123.13,378416.69,77487.813,4240.9629 -2732,3369,6045,6044,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5342932,8.4406443,0,27,-7,29.43811,0,2,2,2019,10,1,37,40,1,1,0,13.213015,13.213015,0,0,0,0,0,0,0,0,0,0,42.85,60.33,55.72,51.28,6.666666666666667,2,3,0,0,10,9,5,1,295.5,1333263.4,673123.13,378416.69,77487.813,4240.9629 -2732,3370,6046,-9,6045,6044,1,0,25,0,0,0,1,1,-9,0,2,8.4410677,8.373498,0,0,0,-992.23303,0,2,2,2019,30,10,51,51,1,10,1,12.553793,12.553793,0,0,0,0,0,0,0,0,0,0,7.51,66,-9,-9,1.666666666666667,2,3,0,0,3,9,5,1,359,-205498.14,24668.25,0,0,1484.4801 -2733,3371,6047,6049,-9,-9,1,1,43,0,3,0,2,2,-9,0,5,8.1048241,8.1678801,0,10,4,71.225143,0,3,3,2019,11,0,40,40,1,0,0,7.4453154,7.4453154,0,0,0,0,0,1,1,0,0,0,49.57,52.88,51.1,38.32,3.333333333333333,2,3,0,0,12,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 -2733,3371,6048,-9,6049,6047,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.0337,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 -2733,3371,6049,6047,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,14,-4,-110.24667,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.1,38.32,49.57,52.88,1.666666666666667,2,3,1,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 -2733,3371,6050,-9,6049,6047,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.4943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 -2733,3371,6051,-9,6049,6047,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-948.78455,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,5,2,0,1070,73054.852,-43556.93,0,0,2263.2859 -2734,3372,6052,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.5194802,7.3619871,0,0,0,-1095.2422,0,-9,-9,2019,8,0,24,10,1,0,0,5.8915424,5.8915424,0,0,0,0,0,1,1,0,0,0,55.37,40.83,-9,-9,8.333333333333334,1,1,0,0,5,8,2,1,898,-516347.09,0,0,0,1763.0774 -2735,3373,6053,6054,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.4422865,7.676959,55,3,-34.745384,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,7.1165495,0,0,1,1,0,2.9638886,7.0706096,56.95,25.43,65.89,22.13,8.333333333333334,1,1,0,0,0,5,3,1,877,1279204,536844,270258.78,0,2137.0781 -2735,3373,6054,6053,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.9114337,7.0419645,55,-3,-36.613014,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4658024,6.6268291,65.89,22.13,56.95,25.43,8.333333333333334,1,1,0,0,0,5,3,1,877,1279204,536844,270258.78,0,2137.0781 -2736,3374,6055,6056,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.0100245,6.9611778,0,8,2,-45.380638,-9,-9,-9,2019,10,0,50,0,1,1,0,2.0650916,2.0650916,0,0,0,0,0,0,0,0,5.0140133,0,51,48,54.29,34.79,7,4,2,0,0,1,7,2,1,256.5,777774.75,280396.31,238153.39,0,858.37073 -2736,3374,6056,6055,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,6.0868802,6.4282732,39,-2,-27.245701,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.5256996,6.3606849,54.29,34.79,51,48,8.333333333333334,1,1,0,0,2,7,2,1,256.5,777774.75,280396.31,238153.39,0,858.37073 -2737,3375,6057,6058,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.2173796,8.0966978,0,7,6,45.836208,0,-9,-9,2019,8,0,42,48,1,0,0,9.7537565,9.7537565,0,0,0,0,0,0,0,0,0,0,53.82,45.88,29.63,55.43,6.666666666666667,1,1,0,0,9,11,4,1,696.5,-22137.574,21610.566,0,0,3061.7471 -2737,3375,6058,6057,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,7.7855835,7.9645314,0,7,-6,-17.23171,0,2,2,2019,22,8,39,34,1,8,0,9.740202,9.740202,0,0,0,0,0,0,0,0,0,0,29.63,55.43,53.82,45.88,6.666666666666667,1,1,0,0,9,11,4,1,696.5,-22137.574,21610.566,0,0,3061.7471 -2738,3376,6059,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,1,0,2.5049973,2.2477498,0,0,-1005.3593,0,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,2.1606724,0,22.55,27.69,-9,-9,1.666666666666667,1,1,0,1,0,9,2,0,381,236934.33,0,237209.52,119575.27,345.39856 -2739,3377,6060,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1046.118,0,-9,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,49.5,14.27,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,529,-94194.688,0,0,0,840.37146 -2739,3378,6061,-9,6060,-9,1,0,36,0,0,0,2,2,-9,1,3,0,0,0,0,0,-877.65125,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,45.53,46.42,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,512,359496.25,0,0,0,286.87674 -2739,3379,6062,-9,6060,-9,1,0,21,0,0,0,2,2,-9,0,4,6.6177855,6.5216603,0,0,0,-870.07123,0,3,-9,2019,7,0,32,16,1,0,0,2.4971886,2.4971886,0,0,0,0,0,1,1,0,.62409705,0,70.69,37.69,-9,-9,8.333333333333334,1,1,0,0,3,1,2,0,325,0,0,0,0,703.83319 -2740,3380,6063,6064,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.211977,8.1667509,0,34,0,-88.034996,0,2,3,2019,12,2,42,45,1,2,0,11.930542,11.930542,0,0,0,0,0,0,0,0,0,0,32.76,57.87,45.83,54.52,6.666666666666667,1,1,0,0,12,13,5,1,861.5,1259832.8,805334.13,262149.16,25156.127,3976.5864 -2740,3380,6064,6063,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7850914,8.6849775,0,34,0,17.351463,0,3,3,2019,7,0,46,46,1,0,0,15.055834,15.055834,0,0,0,0,0,0,0,0,0,0,45.83,54.52,32.76,57.87,6.666666666666667,1,1,0,0,12,13,5,1,861.5,1259832.8,805334.13,262149.16,25156.127,3976.5864 -2740,3381,6065,-9,6063,6064,1,1,28,0,0,0,1,1,-9,0,4,8.8926392,8.8511887,0,0,0,-1049.7834,0,2,2,2019,11,0,38,43,1,0,1,17.11241,17.11241,0,0,0,0,0,0,0,0,.9566381,0,43.79,58.33,-9,-9,5,1,1,0,0,10,13,5,1,459,465786.38,68561.539,127581.41,111819.58,2275.2878 -2741,3382,6066,6067,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.5081768,9.6322994,0,22,1,47.333931,-9,2,1,2019,10,0,43,0,1,0,0,36.686169,36.686169,0,0,0,0,0,0,0,0,2.2191329,0,56.36,32.4,60.01,26.83,8.333333333333334,1,1,0,0,10,7,5,0,2299,4436579.5,3432365.5,672624.25,0,4627.8662 -2741,3382,6067,6066,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,7.0002775,6.7892575,22,-1,-3.7778757,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.4021707,0,60.01,26.83,56.36,32.4,8.333333333333334,1,1,0,0,7,7,5,0,2299,4436579.5,3432365.5,672624.25,0,4627.8662 -2742,3383,6068,6069,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.0616102,8.4567289,36,12,56.501904,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.324667,42.85,40.94,54.37,54.8,5,1,1,0,0,4,9,4,1,1006.5,1712633.3,785455.63,470026.19,0,2997.8262 -2742,3383,6069,6068,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.2766323,6.2257414,37,-12,34.611816,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.9925487,6.5567136,54.37,54.8,42.85,40.94,8.333333333333334,1,1,0,0,11,9,4,1,1006.5,1712633.3,785455.63,470026.19,0,2997.8262 -2743,3384,6070,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1091.1814,0,-9,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.49,25.48,-9,-9,1.666666666666667,1,1,0,0,0,8,1,0,837,0,0,0,0,1511.4757 -2744,3385,6071,6074,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.9420328,8.1921225,0,7,5,-2.6068428,0,2,2,2019,5,0,40,40,1,0,0,7.8356185,7.8356185,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.43,59.21,8.333333333333334,1,1,0,0,6,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 -2744,3385,6072,-9,6074,6071,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.6365,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 -2744,3385,6073,-9,6074,6071,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4543,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 -2744,3385,6074,6071,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,0,0,0,7,-5,-67.613869,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,57.16,56.15,6.666666666666667,1,1,0,0,0,9,3,1,568.75,-19499.07,-21428.492,134731.02,103253.83,2012.4458 -2745,3386,6075,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.9355478,6.1578131,0,0,-1077.4685,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,1.9664328,2.5268319,26.911793,0,1,1,0,2.5589683,6.6923199,34.29,30.34,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1203,347366.94,34492.891,196473.05,0,954.9212 -2746,3387,6076,6077,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,4.8397508,4.9176555,62,-1,-134.79234,0,3,3,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,5.4585123,4.6043224,33.06,26.82,34.22,20.89,5,1,1,0,0,0,7,3,1,528.5,-48488.008,5954.082,0,0,1518.8911 -2746,3387,6077,6076,-9,-9,1,1,82,0,0,0,1,1,-9,0,1,0,7.7190666,7.4817214,62,1,242.44342,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,2.8023572,17.745592,18.900589,0,1,1,0,4.5235214,7.4515829,34.22,20.89,33.06,26.82,5,1,1,0,0,0,7,3,1,528.5,-48488.008,5954.082,0,0,1518.8911 -2746,3388,6078,-9,6076,6077,1,1,58,0,0,0,1,1,-9,1,1,0,7.4028554,7.4752636,0,0,-874.90845,-9,2,1,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,7.5243211,26.65,23.11,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,729,906117.44,841015.38,0,0,857.87445 -2746,3389,6079,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.4053,0,-9,-9,2019,15,4,0,38,4,4,0,0,0,0,0,0,0,42,1,1,0,2.0039783,0,38.16,47.36,-9,-9,6.666666666666667,1,1,0,0,4,7,1,1,187,308040.63,0,0,0,792.92413 -2747,3390,6080,6083,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.1861162,8.3604259,0,6,-5,112.75672,-9,-9,-9,2019,10,0,38,0,1,1,0,9.6409883,9.6409883,0,0,0,0,0,1,1,0,7.1284671,0,50,55,57.33,53.46,8,2,3,0,0,1,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 -2747,3390,6081,-9,6080,6083,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.29364,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 -2747,3390,6082,-9,6080,6083,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-780.97644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 -2747,3390,6083,6080,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,9.067482,9.0447369,0,20,5,-27.505678,0,2,2,2019,9,0,35,35,1,0,0,27.939178,27.939178,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50,55,6.666666666666667,2,3,0,0,8,8,5,1,857.75,179976.06,71687.898,475969.53,350418.72,4243.8228 -2748,3391,6084,6085,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5850439,7.6568661,0,33,-1,-69.336159,0,2,2,2019,16,6,21,21,1,6,0,11.250097,11.250097,0,0,0,.035557736,0,0,0,0,3.7380381,0,51.24,58.84,54,54,6.666666666666667,4,2,0,0,7,8,5,1,235.5,1726378.3,1526495,256804,107442.02,4303.2822 -2748,3391,6085,6084,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.828721,8.4411116,0,6,1,-51.753166,-9,-9,-9,2019,9,0,30,0,1,1,0,26.198778,26.198778,0,0,0,0,0,0,0,0,7.616508,0,54,54,51.24,58.84,8,1,1,0,0,1,8,5,1,235.5,1726378.3,1526495,256804,107442.02,4303.2822 -2749,3392,6086,6087,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,9.7327251,9.3363075,0,28,0,66.029625,0,2,1,2019,7,0,47,47,1,0,0,37.487846,37.487846,0,0,0,0,0,0,0,0,0,0,57.88,43.83,57.16,56.15,8.333333333333334,1,1,0,0,13,8,5,1,573.33331,917805.5,538500.06,298623.34,70590.203,8525.666 -2749,3392,6087,6086,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.3048401,7.8061585,0,10,0,-19.649519,0,-9,-9,2019,7,0,6,5,1,0,0,85.560562,85.560562,0,0,0,0,0,0,0,0,8.095912,0,57.16,56.15,57.88,43.83,8.333333333333334,1,1,0,0,8,8,5,1,573.33331,917805.5,538500.06,298623.34,70590.203,8525.666 -2749,3392,6088,-9,6087,6086,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-824.44995,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,573.33331,917805.5,538500.06,298623.34,70590.203,8525.666 -2749,3393,6089,-9,6087,6086,1,1,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-1149.9626,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.63481271,0,43.86,63.67,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,1024,0,0,0,0,-483.52609 -2750,3394,6090,-9,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.0795832,9.128211,5.8151684,0,0,-936.5058,0,1,1,2019,9,0,40,40,1,1,0,26.408197,26.408197,0,0,0,0,0,1,1,0,0,5.8100882,52,55,-9,-9,8,1,1,0,0,11,12,5,1,402.5,905076.13,537426.25,175076.3,0,4948.3652 -2750,3394,6091,-9,-9,6090,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0534,-9,-9,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,402.5,905076.13,537426.25,175076.3,0,4948.3652 -2751,3395,6092,6093,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,6.694139,6.8561206,0,2,-6,91.691635,0,-9,-9,2019,13,5,12,10,1,5,0,7.9411359,7.9411359,0,0,0,0,0,0,0,0,0,0,26.48,63.78,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,950,1595295.8,826173,433732.69,0,5974.2227 -2751,3395,6093,6092,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.0989084,9.5467434,8.1431456,2,6,29.352224,0,1,1,2019,8,0,38,38,1,0,0,31.815636,31.815636,0,0,0,0,0,0,0,0,6.4961538,8.7020559,57.16,56.15,26.48,63.78,8.333333333333334,1,1,0,0,7,9,5,1,950,1595295.8,826173,433732.69,0,5974.2227 -2751,3396,6094,-9,6092,6093,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1059.3324,-9,2,-9,2019,18,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,30.13,56.51,-9,-9,5,1,1,0,0,0,9,1,1,568,-195392.84,0,0,0,0 -2752,3397,6095,6096,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.1496787,7.386898,37,3,29.700758,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,2.5082855,2.7606843,0,0,1,1,0,0,7.434382,41.89,32.18,44.59,45.67,8.333333333333334,1,1,0,0,0,6,3,1,871.5,918015.44,434034.22,318557,0,1817.0869 -2752,3397,6096,6095,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.1892672,7.0007305,0,37,-3,101.04682,0,-9,2,2019,11,1,32,32,1,1,0,4.1528115,4.1528115,0,0,0,0,2,1,1,0,4.7363901,0,44.59,45.67,41.89,32.18,8.333333333333334,1,1,0,0,8,6,3,1,871.5,918015.44,434034.22,318557,0,1817.0869 -2753,3398,6097,6098,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.1224546,7.8263912,0,8,-2,-19.286747,0,2,2,2019,6,0,50,15,1,0,0,6.6553731,6.6553731,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.49,55.09,10,1,1,0,0,9,11,4,1,292,547261.88,366730.22,125060.43,0,2788.4204 -2753,3398,6098,6097,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.0284557,8.1863556,8,2,98.007721,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9648352,62.49,55.09,57.06,57.76,10,1,1,0,0,0,11,4,1,292,547261.88,366730.22,125060.43,0,2788.4204 -2753,3399,6099,-9,6098,6097,1,0,20,0,0,0,2,2,-9,0,5,0,6.2884364,6.2153187,0,0,-1054.7705,-9,1,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,6.3005495,0,54.1,59.11,-9,-9,8.333333333333334,1,1,1,0,0,11,2,1,361,-273133.44,0,0,0,615.60907 -2754,3400,6100,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6079683,8.5050573,0,0,0,-1063.0223,0,2,2,2019,11,2,20,40,1,2,0,31.581745,31.581745,0,0,0,0,0,0,0,0,0,0,43.85,50.34,-9,-9,5,1,1,0,0,10,2,5,1,913,886575.75,268631.34,222749.84,0,1963.672 -2755,3401,6101,6102,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,7.9584889,8.4236031,7.2869401,6,2,67.02932,0,3,2,2019,15,4,24,24,1,4,0,15.64735,15.64735,0,0,0,0,0,1,1,0,0,7.5783153,25.1,55.18,16.04,23.99,1.666666666666667,1,1,0,0,9,10,4,1,214,1616932.3,778541.88,477947.56,0,2887.4512 -2755,3401,6102,6101,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,6.1872053,6.2891455,6,-2,-53.936188,0,2,2,2019,28,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,5.1696982,6.2940559,16.04,23.99,25.1,55.18,6.666666666666667,1,1,0,0,0,10,4,1,214,1616932.3,778541.88,477947.56,0,2887.4512 -2756,3402,6103,6104,-9,-9,1,1,40,0,4,0,2,2,-9,0,4,8.4868269,8.2752628,0,17,-4,66.741035,0,-9,-9,2019,5,0,63,49,1,0,0,10.264797,10.264797,0,0,0,.34193262,0,1,1,0,0,0,57.16,56.15,56.98,51.33,10,1,1,0,0,10,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 -2756,3402,6104,6103,-9,-9,1,0,44,0,4,0,2,2,-9,0,2,0,0,0,17,4,-49.981724,0,1,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.98,51.33,57.16,56.15,3.333333333333333,1,1,0,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 -2756,3402,6105,-9,6104,6103,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.391,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 -2756,3402,6106,-9,6104,6103,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-925.38135,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 -2756,3402,6107,-9,6104,6103,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-905.22931,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 -2756,3402,6108,-9,6104,6103,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-881.79559,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1031.8334,151390.03,32597.389,391769.34,33781.281,2719.0083 -2757,3403,6109,6110,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.7854962,7.1447296,0,33,-2,45.090302,0,2,3,2019,8,0,14,15,1,0,0,11.271081,11.271081,0,0,0,0,0,1,1,0,.22991702,0,52.91,55.33,66.44,47.81,6.666666666666667,3,4,0,0,11,8,4,0,495.5,802448.25,474831.81,442612.31,87133.016,2965.5366 -2757,3403,6110,6109,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3294201,8.3600702,0,34,2,132.13185,0,2,2,2019,8,0,35,35,1,0,0,18.332325,18.332325,0,0,0,0,0,1,1,0,0,0,66.44,47.81,52.91,55.33,8.333333333333334,4,2,0,0,11,8,4,0,495.5,802448.25,474831.81,442612.31,87133.016,2965.5366 -2757,3404,6111,-9,6109,6110,1,0,18,0,0,0,2,2,-9,0,2,6.9660673,7.2210441,0,0,0,-1061.4767,0,2,2,2019,18,6,10,0,1,6,1,12.239361,12.239361,0,0,0,0,0,1,1,0,0,0,16.27,49.69,-9,-9,5,3,4,0,0,2,8,3,0,1301,-169810.5,5520.2222,0,0,642.90131 -2758,3405,6112,6113,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.5010376,8.6285276,0,21,-5,-37.981804,-9,-9,-9,2019,12,3,38,0,1,3,0,14.026195,14.026195,0,0,0,0,0,0,0,0,6.6221876,0,43.66,50.25,56.74,55.09,8.333333333333334,1,1,0,0,11,2,5,1,768.5,1744467.3,1589726,356531.69,0,4853.2598 -2758,3405,6113,6112,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.9672375,8.8823442,0,21,5,45.591171,0,2,2,2019,10,0,38,38,1,0,0,19.222559,19.222559,0,0,0,0,0,0,0,0,1.3799419,0,56.74,55.09,43.66,50.25,8.333333333333334,1,1,0,0,11,2,5,1,768.5,1744467.3,1589726,356531.69,0,4853.2598 -2759,3406,6114,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.9305191,8.9087076,0,0,0,-1025.1478,0,2,2,2019,12,0,38,41,1,0,0,17.922346,17.922346,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,1.666666666666667,1,1,0,0,9,12,5,1,1532,-33263.66,59145.938,193816.48,131592.36,1788.6241 -2760,3407,6115,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.237587,8.6483974,0,0,0,-955.43982,0,2,2,2019,7,0,35,35,1,0,0,13.385972,13.385972,0,0,0,0,14.5,0,0,0,0,0,54.74,57.22,-9,-9,10,1,1,0,0,12,2,4,1,159,1050851.3,568084.75,0,0,1247.3491 -2761,3408,6116,6117,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,7.8297024,7.6934977,12,9,-62.019627,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,7.5457177,37.77,41.07,32.94,56.52,5,1,1,0,0,0,2,4,1,765,513340.53,231069.72,174910.06,86603.258,2637.8513 -2761,3408,6117,6116,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6801314,8.1717348,0,12,0,1.7737368,0,2,2,2019,14,5,43,41,1,5,0,6.4336882,6.4336882,0,0,0,0,0,0,0,0,0,0,32.94,56.52,37.77,41.07,5,1,1,0,0,9,2,4,1,765,513340.53,231069.72,174910.06,86603.258,2637.8513 -2762,3409,6118,6119,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,4.8606386,5.0778542,8,1,63.653618,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0735741,5.0035839,55.19,54.26,51.83,57.2,8.333333333333334,1,1,0,0,10,11,5,1,360.5,2344416.8,1774764,313289.13,0,23424.73 -2762,3409,6119,6118,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,10.711975,11.140578,8,-1,8.8927641,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4444876,9.754528,51.83,57.2,55.19,54.26,8.333333333333334,1,1,0,0,0,11,5,1,360.5,2344416.8,1774764,313289.13,0,23424.73 -2763,3410,6120,6121,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0956221,8.0472631,0,10,5,95.730728,0,1,2,2019,10,0,36,36,1,0,0,11.666137,11.666137,0,0,0,0,0,0,0,0,0,0,51.83,57.2,44.21,60.79,8.333333333333334,1,1,0,0,12,12,5,1,334,277729.03,-26627.225,149733.22,81028.297,4029.5347 -2763,3410,6121,6120,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.7089434,8.9390612,0,10,-5,-75.356575,0,2,2,2019,8,0,42,45,1,0,0,20.424406,20.424406,0,0,0,0,0,0,0,0,.64495742,0,44.21,60.79,51.83,57.2,8.333333333333334,1,1,0,0,9,12,5,1,334,277729.03,-26627.225,149733.22,81028.297,4029.5347 -2764,3411,6122,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,0,0,0,0,0,-883.64526,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.92,56.78,-9,-9,6.666666666666667,1,1,0,0,3,8,1,1,631,-487844.81,-106353.55,0,0,0 -2765,3412,6123,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,9.1162853,9.1869593,0,0,-977.25763,0,2,1,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,6.9796996,9.1221209,33.35,56.52,-9,-9,1.666666666666667,1,1,0,0,0,1,5,1,1591,781592.38,430401.22,0,0,4481.9707 -2766,3413,6124,6125,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.1286707,7.0233054,46,-3,-36.897076,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.31230474,7.2275267,27.23,23.84,61.85,44.55,5,1,1,0,0,0,10,2,0,1711,849651.88,375409.38,183324.59,0,2227.1069 -2766,3413,6125,6124,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.4156508,6.2702889,46,3,14.204955,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.0188737,6.3806906,61.85,44.55,27.23,23.84,8.333333333333334,1,1,0,0,3,10,2,0,1711,849651.88,375409.38,183324.59,0,2227.1069 -2766,3414,6126,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-989.06781,0,-9,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,27,1,1,0,0,0,16.79,61.42,-9,-9,5,1,1,1,0,0,10,1,0,1339,109191.34,0,0,0,454.36642 -2767,3415,6127,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1003.9811,0,2,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,2,1,0,1,0,0,21.97,21.3,-9,-9,0,1,1,0,1,0,9,1,0,564,-190553.23,0,0,0,515.87701 -2767,3416,6128,-9,-9,6127,1,1,18,0,0,0,2,2,0,0,1,0,0,0,0,0,-947.53613,-9,-9,2,2019,20,0,0,0,2,6,1,0,0,0,0,0,0,0,1,0,1,0,0,41.75,50.17,-9,-9,5,1,1,0,1,0,9,1,0,762,365058.09,0,0,0,0 -2768,3417,6129,-9,6132,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.6943,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,500.5,0,0,0,0,1684.5302 -2768,3417,6130,-9,6132,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.5659,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,500.5,0,0,0,0,1684.5302 -2768,3417,6131,-9,6132,-9,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.2186,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,1,0,500.5,0,0,0,0,1684.5302 -2768,3417,6132,-9,-9,-9,1,0,32,1,3,0,2,2,-9,0,3,0,0,0,0,0,-989.88995,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,1.2461782,0,46.08,57.2,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,500.5,0,0,0,0,1684.5302 -2769,3418,6133,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,9.1212997,9.4331751,0,0,0,-912.12885,-9,2,2,2019,20,7,65,0,1,7,0,12.758225,12.758225,0,0,0,0,0,0,0,0,0,0,41.72,56.81,-9,-9,5,1,1,0,0,8,8,5,0,463,94073.82,56611.785,0,0,2526.5969 -2770,3419,6134,-9,6135,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.8458,-9,3,-9,2019,6,2,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,0,0,57.49,47.77,-9,-9,10,4,2,0,0,0,8,1,0,563.5,-5871.7656,0,0,0,1262.709 -2770,3419,6135,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-965.1745,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,1,0,8,1,0,563.5,-5871.7656,0,0,0,1262.709 -2770,3420,6136,-9,6135,-9,1,0,24,0,0,0,2,2,-9,0,4,7.3553143,7.3805747,0,0,0,-1036.9133,0,2,2,2019,11,0,21,0,1,2,1,9.6702528,9.6702528,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,0,0,1,8,3,0,421,-25867.17,0,0,0,640.3418 -2770,3421,6137,-9,6135,-9,1,1,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1023.7275,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,0,196,-103751.32,0,0,0,830.8949 -2771,3422,6138,6139,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.3935428,7.237555,36,4,80.175888,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5005679,7.200562,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,273.5,2314725,1856258.8,433034.88,0,4843.5059 -2771,3422,6139,6138,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2757721,8.6264544,7.7927132,36,-4,158.75223,0,2,-9,2019,11,0,60,40,1,0,0,7.0114989,7.0114989,0,0,0,0,0,1,1,0,5.2462926,7.7478414,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,11,5,1,273.5,2314725,1856258.8,433034.88,0,4843.5059 -2771,3423,6140,-9,6138,6139,1,0,29,0,0,0,1,1,-9,0,3,8.1592493,8.0447903,0,0,0,-991.23529,0,2,2,2019,15,3,38,37,1,3,1,9.1344509,9.1344509,0,0,0,0,0,1,1,0,4.4554043,0,35.9,60.41,-9,-9,5,1,1,0,0,5,11,4,1,421,-366501.47,-66254.781,0,0,1405.9548 -2772,3424,6141,6142,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.0717735,8.0779428,0,35,-1,85.066956,0,-9,-9,2019,15,3,47,43,1,3,0,7.8238187,7.8238187,0,0,0,0,0,0,0,0,4.0086679,0,33.74,57.46,49.54,31.73,8.333333333333334,1,1,0,0,8,6,5,1,345.5,1062004.8,659865.63,229524.75,96804.328,4387.0039 -2772,3424,6142,6141,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,9.1996317,9.008606,0,35,1,103.51888,0,3,2,2019,12,0,41,45,1,0,0,23.667128,23.667128,0,0,0,0,0,0,0,0,2.9216793,0,49.54,31.73,33.74,57.46,6.666666666666667,1,1,0,0,8,6,5,1,345.5,1062004.8,659865.63,229524.75,96804.328,4387.0039 -2772,3425,6143,-9,6141,6142,1,1,22,0,0,0,2,2,-9,0,3,8.0132418,7.7646456,0,0,0,-932.51813,0,3,2,2019,12,0,46,60,1,0,1,6.321382,6.321382,0,0,0,0,0,0,0,0,0,0,48.28,53.42,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,1552,-340122.5,0,0,0,737.32056 -2773,3426,6144,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.357861,6.5649581,0,0,-978.69458,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,6.4608145,0,0,1,1,0,3.8691597,6.2614326,51.66,29.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,658,448892.34,-18966.746,37911.535,0,1032.5032 -2774,3427,6145,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.6773782,6.6192007,0,0,-965.17407,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.7301021,0,57.16,56.15,-9,-9,5,1,1,0,0,3,9,2,0,1324,236637.98,0,0,0,1146.353 -2775,3428,6146,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.6513491,8.4256039,0,0,0,-919.45782,0,2,2,2019,6,0,70,0,1,0,0,11.091604,11.091604,0,0,0,0,0,0,0,0,.18906659,0,60.11,44.43,-9,-9,5,1,1,0,0,5,1,5,1,85,415266.31,27329.717,163030.02,0,2436.7246 -2776,3429,6147,-9,6151,6149,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.69403,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 -2776,3429,6148,-9,6151,6149,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1139.2213,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 -2776,3429,6149,6151,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.725975,8.773221,0,6,0,-14.370661,0,-9,-9,2019,13,1,45,40,1,1,0,12.629057,12.629057,0,0,0,0,7,1,1,0,0,0,38.69,61.75,42.05,50.93,5,1,1,0,0,8,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 -2776,3429,6150,-9,6151,6149,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.28607,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 -2776,3429,6151,6149,-9,-9,1,0,42,0,3,0,1,1,-9,0,3,8.0666742,8.0622044,0,6,0,-14.597216,0,2,3,2019,18,6,30,30,1,6,0,13.653805,13.653805,0,0,0,0,0,1,1,0,0,0,42.05,50.93,38.69,61.75,3.333333333333333,1,1,0,0,6,13,4,1,854.20001,310499.09,199517.28,242825.84,30167.416,3459.1221 -2777,3430,6152,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1054.4569,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.69,17.76,-9,-9,5,1,1,0,0,0,9,1,1,1334,-91545.133,0,0,0,1264.5588 -2777,3431,6153,-9,6152,-9,1,1,25,0,0,0,2,2,-9,0,4,8.1521482,8.208353,0,0,0,-1029.3571,0,2,-9,2019,10,0,45,65,1,1,1,8.4854126,8.4854126,0,0,0,0,0,1,1,0,3.2347627,0,49,58,-9,-9,7,1,1,0,0,1,9,4,1,581,249519.97,-3235.5295,0,0,2022.2927 -2778,3432,6154,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9273882,8.731226,7.2068391,0,0,-1066.8772,0,-9,-9,2019,10,0,42,42,1,0,0,15.344132,15.344132,0,0,0,0,0,1,1,0,0,8.1184664,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,458,-27995.164,173510.83,0,0,2204.3367 -2779,3433,6155,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.7000656,8.6092262,0,0,0,-957.22949,0,2,2,2019,11,1,39,40,1,1,0,19.140993,19.140993,0,0,0,0,0,0,0,0,0,0,51.11,40.02,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,2993,-231478.75,90450.492,281845.44,133397.5,1971.2125 -2780,3434,6156,6157,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.7051296,8.7056303,0,8,-1,23.879665,0,2,2,2019,18,8,48,44,1,8,0,14.459935,14.459935,0,0,0,0,0,0,0,0,2.6327984,0,33.89,56.25,51.93,47.73,8.333333333333334,1,1,0,0,10,2,5,1,400,422479.25,319748.34,295286.06,164406.38,3559.3052 -2780,3434,6157,6156,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.2298212,8.2830086,0,8,1,-94.593361,0,2,2,2019,10,0,37,40,1,0,0,14.317227,14.317227,0,0,0,0,0,0,0,0,0,0,51.93,47.73,33.89,56.25,6.666666666666667,1,1,0,0,10,2,5,1,400,422479.25,319748.34,295286.06,164406.38,3559.3052 -2781,3435,6158,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,6.9840522,7.1420116,0,0,0,-889.39954,0,2,2,2019,13,4,16,20,1,4,0,7.1089692,7.1089692,0,0,0,0,0,1,1,0,0,0,44.65,47.45,-9,-9,6.666666666666667,3,4,0,0,5,7,2,1,485.5,570700.75,0,579207.38,0,1388.5654 -2781,3435,6159,-9,6158,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.9612,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,2,1,485.5,570700.75,0,579207.38,0,1388.5654 -2781,3436,6160,-9,6158,-9,1,1,21,0,1,1,2,0,-9,0,5,0,0,0,0,0,-942.38104,-9,1,-9,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,3,4,0,0,0,7,1,1,1376,0,0,0,0,-299.75604 -2782,3437,6161,6163,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,26,-3,-55.812244,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,48.28,60.18,8.333333333333334,1,1,0,0,4,1,3,1,1024,346177.34,166831.88,149954.56,92055.984,1786.084 -2782,3437,6162,-9,6161,6163,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.43713,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,1024,346177.34,166831.88,149954.56,92055.984,1786.084 -2782,3437,6163,6161,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.514102,8.6493959,0,7,3,66.885521,0,-9,-9,2019,6,0,37,37,1,0,0,13.618913,13.618913,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.77,57.64,8.333333333333334,1,1,0,0,8,1,3,1,1024,346177.34,166831.88,149954.56,92055.984,1786.084 -2782,3438,6164,-9,6161,6163,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1037.1624,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,2,1,1,1,749,-619871.81,0,0,0,498.63028 -2783,3439,6165,-9,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,7.5436802,8.1369257,0,0,0,-1005.3925,0,-9,-9,2019,12,1,40,40,1,1,0,6.8600655,6.8600655,0,0,0,0,2,0,0,0,0,0,18.87,64.38,-9,-9,5,1,1,0,0,3,11,3,1,414,-218388.91,1196.4001,111370.8,114356.29,1598.6305 -2784,3440,6166,6167,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.7251363,4.5570388,14,16,-64.55265,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9096465,4.7239966,68.48999999999999,18.65,60.69,37.28,10,1,1,0,0,4,12,2,1,820.5,688729.56,24562.699,500749.28,0,2287.7861 -2784,3440,6167,6166,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.3877544,7.2031589,0,14,-16,-46.89077,0,-9,-9,2019,7,0,25,31,1,0,0,5.7085781,5.7085781,0,0,0,0,71.5,1,1,0,0,0,60.69,37.28,68.48999999999999,18.65,8.333333333333334,1,1,0,0,12,12,2,1,820.5,688729.56,24562.699,500749.28,0,2287.7861 -2785,3441,6168,-9,6171,6169,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.54169,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,4,2,-9,0,0,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 -2785,3441,6169,6171,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,7.4538817,7.6158972,0,19,8,46.003002,0,3,3,2019,14,2,5,0,1,2,0,50.08408,50.08408,0,0,0,0,0,1,1,0,1.4619148,0,49.85,50.47,57.33,53.46,5,3,4,0,0,1,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 -2785,3441,6170,-9,6171,6169,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0631,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 -2785,3441,6171,6169,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.9421711,8.8590374,0,19,-8,56.909962,0,-9,-9,2019,8,0,47,42,1,0,0,25.01799,25.01799,0,0,0,0,0,1,1,0,3.5503132,0,57.33,53.46,49.85,50.47,8.333333333333334,1,1,0,0,10,9,5,1,611.5,2726372,1779278,1194673,103507.86,4173.9849 -2786,3442,6172,-9,6173,6175,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.19427,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 -2786,3442,6173,6175,-9,-9,1,0,31,0,2,0,2,2,-9,0,2,6.9971919,6.2742028,0,7,2,6.6392059,0,3,2,2019,10,3,13,23,1,3,0,10.784104,10.784104,0,0,0,0,14.5,1,1,0,0,0,39.86,49.7,48,58,5,1,1,0,0,10,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 -2786,3442,6174,-9,6173,6175,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.53406,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 -2786,3442,6175,6173,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,7.8375869,8.1695824,0,7,-2,57.666199,0,-9,-9,2019,10,0,30,37,1,1,0,10.321091,10.321091,0,0,0,0,0,1,1,0,0,0,48,58,39.86,49.7,7,4,1,0,0,1,11,3,0,769,-59856.309,-40960.066,0,0,2507.1077 -2787,3443,6176,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1398077,7.8145452,0,0,0,-999.97076,0,3,2,2019,12,1,52,49,1,1,0,6.9510746,6.9510746,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,645,-254634.02,-16638.695,0,0,1466.0155 -2787,3444,6177,-9,6176,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1017866,8.1013594,0,0,0,-977.59753,0,2,-9,2019,7,0,46,46,1,0,1,7.8597455,7.8597455,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,493,-182297.91,51562.512,0,0,1787.62 -2788,3445,6178,6179,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,43,0,-84.004669,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.04,54.12,60.85,42.12,8.333333333333334,1,1,0,0,5,7,3,1,1094.5,758900.06,319570.16,201967.66,0,2659.8208 -2788,3445,6179,6178,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.9582381,7.5821729,43,0,-57.238884,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.521585,60.85,42.12,59.04,54.12,8.333333333333334,1,1,0,0,8,7,3,1,1094.5,758900.06,319570.16,201967.66,0,2659.8208 -2789,3446,6180,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1705379,7.9183788,0,0,-998.43402,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9715486,7.9016857,49.27,47.49,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,270,390737.91,299273.31,195325.31,0,2128.6084 -2790,3447,6181,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1076.6652,0,2,2,2019,12,1,0,23,3,1,0,0,0,0,0,0,0,0,1,1,0,.87556058,0,42.04,35.2,-9,-9,3.333333333333333,1,1,1,0,6,5,1,1,407,-53513.656,0,0,0,-119.81589 -2790,3447,6182,-9,6181,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1089.2966,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,1,407,-53513.656,0,0,0,-119.81589 -2790,3448,6183,-9,6181,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1058.3896,-9,1,-9,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,5,1,1,0,0,0,5,1,1,515,320207.56,0,0,0,329.28854 -2791,3449,6184,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,5.8827953,6.2497234,0,0,-927.92059,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0589828,55.11,34.4,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,303,416449.53,124550,53884.57,0,467.19006 -2791,3450,6185,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1098.7108,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.69,49.34,-9,-9,3.333333333333333,1,1,1,1,8,2,1,1,591,-120783.69,0,0,0,0 -2792,3451,6186,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,0,0,-972.67401,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,239,31009.363,0,0,0,1011.4146 -2793,3452,6187,6188,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,8.8068075,8.5710087,6,11,7.8451872,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,5.7606268,8.6150808,51.33,42,53.22,44.49,6.666666666666667,1,1,0,0,6,2,4,1,689,319431.72,363105.38,77285.672,39950.586,3046.7842 -2793,3452,6188,6187,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,0,0,0,6,-11,80.894241,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,5.9754677,0,53.22,44.49,51.33,42,8.333333333333334,1,1,0,0,6,2,4,1,689,319431.72,363105.38,77285.672,39950.586,3046.7842 -2794,3453,6189,6190,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.4183807,8.6487265,0,2,-14,107.20627,0,-9,-9,2019,8,0,39,37,1,0,0,18.072893,18.072893,0,0,0,0,0,0,0,0,2.7486029,0,40.95,63.66,52,54.51,8.333333333333334,1,1,0,0,11,2,5,1,526.5,483751.56,260366.78,252871.86,131497.98,5107.79 -2794,3453,6190,6189,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.9775362,9.268157,0,2,14,38.73019,0,2,2,2019,10,0,50,50,1,0,0,23.092707,23.092707,0,0,0,0,0,0,0,0,4.1767178,0,52,54.51,40.95,63.66,6.666666666666667,1,1,0,0,11,2,5,1,526.5,483751.56,260366.78,252871.86,131497.98,5107.79 -2795,3454,6191,6193,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.8200359,8.8598633,0,34,1,24.307459,0,3,1,2019,9,0,65,70,1,0,0,11.613766,11.613766,0,0,0,0,0,1,1,0,6.6499405,0,58.15,52.91,55.6,47.8,8.333333333333334,1,1,0,0,10,13,5,1,986,2415705.3,2102591.5,321164.88,35972.098,4539.9365 -2795,3454,6192,-9,6193,6191,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1094.2717,1,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,986,2415705.3,2102591.5,321164.88,35972.098,4539.9365 -2795,3454,6193,6191,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.41646,8.7843075,0,34,-1,-79.535347,0,2,2,2019,11,0,37,38,1,0,0,16.952539,16.952539,0,0,0,0,0,1,1,0,0,0,55.6,47.8,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,986,2415705.3,2102591.5,321164.88,35972.098,4539.9365 -2795,3455,6194,-9,6193,6191,1,1,26,0,0,0,1,1,-9,0,4,8.9208527,8.8228188,0,0,0,-1020.6327,-9,2,2,2019,7,0,47,0,1,0,1,12.304346,12.304346,0,0,0,0,0,1,1,0,0,0,53.82,50.73,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,1602,-287655.81,-5925.2314,0,0,2292 -2795,3456,6195,-9,6193,6191,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1020.6324,1,2,2,2019,17,5,0,5,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,1,6,13,1,1,604,99294.492,0,0,0,0 -2795,3457,6196,-9,6193,6191,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-926.69299,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,3,13,1,1,1958,28322.658,0,0,0,705.3941 -2796,3458,6197,6198,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,26,-7,-34.276417,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,2.0475564,0,59.14,52.5,54.79,55.86,8.333333333333334,1,1,0,0,3,5,3,1,608,1427827.3,800368.13,332921.84,0,1717.2679 -2796,3458,6198,6197,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.201417,7.8640566,28,7,40.887154,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.0155864,8.0401525,54.79,55.86,59.14,52.5,8.333333333333334,1,1,0,0,0,5,3,1,608,1427827.3,800368.13,332921.84,0,1717.2679 -2797,3459,6199,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,5.462523,5.8169961,0,0,0,-1037.0979,0,2,2,2019,5,1,8,35,1,1,1,4.0707097,4.0707097,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,253,-125424.23,0,0,0,503.21283 -2798,3460,6200,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.8759146,7.8403115,0,0,0,-1022.6741,0,2,2,2019,13,1,40,37,1,1,0,4.9476428,4.9476428,0,0,0,0,0,0,0,0,0,0,47.22,53.97,-9,-9,6.666666666666667,1,1,0,0,11,4,3,0,585,-73510.961,19430.828,0,0,931.56885 -2798,3461,6201,-9,6200,-9,1,0,20,0,0,0,2,2,-9,0,3,7.9785604,7.9841223,0,0,0,-929.9942,0,2,-9,2019,8,2,40,35,1,2,1,6.5529604,6.5529604,0,0,0,0,0,0,0,0,0,0,41.02,42.41,-9,-9,8.333333333333334,1,1,0,0,4,4,3,0,609,253052.95,0,0,0,1062.9045 -2799,3462,6202,6203,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.2962289,7.40137,49,-1,19.931166,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.046998,62.11,40.77,48.87,58.55,8.333333333333334,1,1,0,0,6,12,3,1,358,458127.75,492245.69,164532.03,0,2742.0374 -2799,3462,6203,6202,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.5226049,7.0357389,49,1,-12.678569,0,2,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.5710597,7.3444419,48.87,58.55,62.11,40.77,8.333333333333334,1,1,0,0,0,12,3,1,358,458127.75,492245.69,164532.03,0,2742.0374 -2800,3463,6204,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.9657269,9.2532206,0,0,0,-971.23853,0,2,1,2019,13,2,40,40,1,2,0,32.585896,32.585896,0,0,0,0,0,0,0,0,0,0,44.72,63.16,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,95,14449.971,-66409.68,0,0,3318.2097 -2801,3464,6205,-9,6207,6208,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.2504,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 -2801,3464,6206,-9,6207,6208,1,0,10,0,2,1,3,0,-9,0,1,0,0,0,0,0,-960.14771,-9,1,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 -2801,3464,6207,6208,-9,-9,1,0,41,0,2,0,1,1,-9,1,2,0,0,0,18,-4,12.046626,0,3,2,2019,10,0,0,4,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.1,36.88,52,55,3.333333333333333,1,1,0,0,2,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 -2801,3464,6208,6207,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.381012,9.3875465,0,8,4,3.7831988,0,-9,-9,2019,9,0,50,50,1,1,0,28.459089,28.459089,0,0,0,0,0,1,1,0,0,0,52,55,44.1,36.88,8,1,1,0,0,1,9,5,1,516.5,584504.06,255917.78,395700.16,80212.789,4854.8086 -2802,3465,6209,-9,6210,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9898,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,1632.5,-22862.697,25415.49,0,0,1855.4581 -2802,3465,6210,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,7.0541816,7.2658052,4.9634776,0,0,-939.38763,0,2,2,2019,16,4,35,15,1,4,0,3.8331742,3.8331742,0,0,0,0,2,1,1,0,4.6913347,0,42.7,45.2,-9,-9,3.333333333333333,1,1,0,0,9,5,2,0,1632.5,-22862.697,25415.49,0,0,1855.4581 -2803,3466,6211,6214,-9,-9,1,1,33,0,2,0,3,3,-9,0,2,7.5529637,7.2662797,0,7,-3,144.49854,0,2,2,2019,7,0,40,50,1,0,0,5.2194109,5.2194109,0,0,0,0,14.5,1,1,0,4.0285506,0,49.28,52.09,38.73,26.68,8.333333333333334,1,1,0,0,8,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 -2803,3466,6212,-9,6214,6211,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.07758,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 -2803,3466,6213,-9,6214,6211,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.4984,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 -2803,3466,6214,6211,-9,-9,1,0,36,0,2,0,2,2,-9,1,1,0,0,0,7,3,40.592831,0,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,38.73,26.68,49.28,52.09,3.333333333333333,1,1,0,0,0,13,2,0,809.5,-8094.0703,0,113976.23,82223.656,2462.9492 -2804,3467,6215,-9,6217,6219,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.0631,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 -2804,3467,6216,-9,6217,6219,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.52429,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 -2804,3467,6217,6219,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,7.0823159,7.1819568,0,25,1,-119.75812,0,2,2,2019,18,7,23,15,1,7,0,8.0146675,8.0146675,0,0,0,0,0,1,1,0,.2918753,0,38.34,62.12,54.2,57.49,3.333333333333333,1,1,0,1,4,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 -2804,3467,6218,-9,6217,6219,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-996.49402,-9,2,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.03,57.23,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 -2804,3467,6219,6217,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.416091,8.8337927,0,25,-1,-27.911062,0,2,2,2019,6,0,39,38,1,0,0,12.761901,12.761901,0,0,0,0,0,1,1,0,2.6787403,0,54.2,57.49,38.34,62.12,8.333333333333334,1,1,0,0,8,12,3,1,506.79999,1060234.4,363209.31,318468.81,0,2978.8572 -2805,3468,6220,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,6.810111,6.7361174,0,0,0,-846.25183,0,3,2,2019,14,3,12,16,1,3,0,7.2675643,7.2675643,0,0,0,0,27,1,0,1,0,0,45.71,40.15,-9,-9,3.333333333333333,1,1,0,1,9,2,2,0,167,110799.1,0,0,0,1649.7867 -2806,3469,6221,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,9.1523714,9.2107697,0,0,0,-1002.2256,0,2,2,2019,10,0,55,60,1,0,0,17.393188,17.393188,0,0,0,0,0,1,1,0,2.9854476,0,52.93,37.51,-9,-9,5,1,1,0,0,9,9,5,1,1582,156187.59,103523.74,278198.56,88434.555,2082.0039 -2807,3470,6222,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0791988,9.5440598,0,0,0,-941.65118,0,3,2,2019,14,4,45,47,1,4,0,32.508244,32.508244,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,224,487757.47,191668.36,584095.38,411526.84,4531.9502 -2808,3471,6223,6224,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.5962372,8.6331072,0,5,7,31.503981,0,-9,-9,2019,11,1,50,60,1,1,0,13.820915,13.820915,0,0,0,0,0,0,0,0,0,0,36.72,59.86,50.33,55.31,6.666666666666667,1,1,0,0,8,2,5,1,1162,-15561.375,204259.66,209730.19,111767.88,3873.3298 -2808,3471,6224,6223,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.9930477,8.9603634,0,5,-7,-78.316193,0,2,2,2019,9,0,46,48,1,0,0,18.876688,18.876688,0,0,0,0,0,0,0,0,2.9887099,0,50.33,55.31,36.72,59.86,8.333333333333334,1,1,0,0,7,2,5,1,1162,-15561.375,204259.66,209730.19,111767.88,3873.3298 -2809,3472,6225,6226,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,1,8,0,-9,2,-9,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.74,32.28,33.89,31.94,0,1,1,0,1,6,12,1,0,1366,0,0,0,0,1093.5396 -2809,3472,6226,6225,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,1,-8,0,-9,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,33.89,31.94,18.74,32.28,0,1,1,0,1,0,12,1,0,1366,0,0,0,0,1093.5396 -2809,3473,6227,-9,6225,6226,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1135.7159,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,6,12,1,0,164,-68714.57,0,0,0,0 -2810,3474,6228,6229,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.1577663,9.4428473,0,27,4,-12.477835,0,3,2,2019,18,6,80,120,1,6,0,13.838331,13.838331,0,0,0,0,0,1,1,0,0,0,25.66,49.04,29.26,31.59,5,2,3,0,0,6,8,5,1,1465.5,598906.38,85784.859,565504.88,127695.88,5381.5342 -2810,3474,6229,6228,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,0,0,0,27,-4,-21.864819,0,3,3,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,7.7754369,0,29.26,31.59,25.66,49.04,0,2,3,0,0,0,8,5,1,1465.5,598906.38,85784.859,565504.88,127695.88,5381.5342 -2810,3475,6230,-9,6229,6228,1,0,23,0,0,0,1,1,-9,0,5,8.9144392,8.8718176,0,0,0,-830.46326,0,2,2,2019,5,0,38,16,1,0,1,26.299635,26.299635,0,0,0,0,0,1,1,0,3.2971756,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,7,8,5,1,749,153256.77,20587.215,0,0,2097.8809 -2810,3476,6231,-9,6229,6228,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1038.8149,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,-9,-9,10,2,3,0,0,3,8,2,1,792,0,0,0,0,0 -2811,3477,6232,-9,6233,6234,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.8922,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,345.66666,495815.22,131364.13,279875.13,171858.31,5089.4487 -2811,3477,6233,6234,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,7.8274002,8.0230122,0,14,-2,41.807224,0,-9,-9,2019,8,0,38,0,1,0,0,11.552325,11.552325,0,0,0,0,0,1,1,0,0,0,44.28,55.3,19.49,50.98,6.666666666666667,1,1,0,0,13,2,5,1,345.66666,495815.22,131364.13,279875.13,171858.31,5089.4487 -2811,3477,6234,6233,-9,-9,1,1,42,0,1,0,2,2,-9,0,1,9.1649666,9.2640009,0,14,2,127.15088,0,3,3,2019,18,7,60,50,1,7,0,18.974834,18.974834,0,0,0,0,0,1,1,0,.30314156,0,19.49,50.98,44.28,55.3,3.333333333333333,1,1,0,0,11,2,5,1,345.66666,495815.22,131364.13,279875.13,171858.31,5089.4487 -2812,3478,6235,-9,6237,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-905.94861,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,1,720.66669,650511.38,224142.61,258798.47,144482.89,2238.6292 -2812,3478,6236,-9,6237,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1143.9421,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,4,1,720.66669,650511.38,224142.61,258798.47,144482.89,2238.6292 -2812,3478,6237,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.7294083,8.8966713,0,0,0,-1043.454,0,1,1,2019,9,0,41,44,1,0,0,17.97991,17.97991,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,720.66669,650511.38,224142.61,258798.47,144482.89,2238.6292 -2813,3479,6238,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.0596862,5.4652138,0,0,-1101.1421,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1162128,5.3263679,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1117,11366.666,0,0,0,559.12823 -2814,3480,6239,6240,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.5440865,7.6316099,3,0,96.018707,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.301218,8.0875635,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,12,3,1,536,1036676.1,864653.88,222245.84,0,3875.0083 -2814,3480,6240,6239,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,5.8062568,5.9527421,35,0,102.54424,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.5475469,5.9800091,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,12,3,1,536,1036676.1,864653.88,222245.84,0,3875.0083 -2815,3481,6241,6242,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,3.7839911,3.9105847,50,-1,-94.948486,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.7429452,3.6345961,45.32,61.53,59.14,52.5,8.333333333333334,1,1,0,0,0,10,3,1,1350.5,780915.63,209875.97,307095,0,2345.7537 -2815,3481,6242,6241,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,8.1010866,7.9266105,50,1,26.097179,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9174576,7.9981542,59.14,52.5,45.32,61.53,10,1,1,0,0,0,10,3,1,1350.5,780915.63,209875.97,307095,0,2345.7537 -2816,3482,6243,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,3.5530756,3.8478873,0,0,-958.65369,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.6958184,3.4169652,45.67,38.94,-9,-9,5,1,1,0,0,0,7,2,0,774,736280.75,-49025.898,172560.41,0,1643.7834 -2817,3483,6244,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.502347,7.4668369,0,0,-854.21124,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1644387,7.7755551,50.22,52.72,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,218,473221.94,195460.8,415030.69,0,1207.7476 -2818,3484,6245,-9,-9,-9,1,0,45,0,3,0,2,2,-9,1,4,0,0,0,0,0,-998.22614,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,1,1,0,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 -2818,3484,6246,-9,6245,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1084.1349,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 -2818,3484,6247,-9,6245,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-932.79944,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,42.1,50.78,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 -2818,3484,6248,-9,6245,-9,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1062.7555,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,1,0,263,-161251.17,0,81517.961,0,1896.9712 -2819,3485,6249,6250,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.2850728,7.4309406,6,6,-56.000134,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,5.1329651,7.4776802,41.38,45.79,58.53,44.54,6.666666666666667,1,1,0,0,0,8,2,1,957,778136.31,309795.19,471304.44,0,2380.6011 -2819,3485,6250,6249,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,2.1167004,2.2641783,6,-6,184.23247,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,3.2600503,0,0,1,1,0,3.747997,2.6401665,58.53,44.54,41.38,45.79,8.333333333333334,1,1,0,0,0,8,2,1,957,778136.31,309795.19,471304.44,0,2380.6011 -2820,3486,6251,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3164349,8.3679628,0,0,0,-849.63696,0,1,3,2019,7,0,37,37,1,0,0,14.836535,14.836535,0,0,0,0,0,1,1,0,2.535146,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,135,168170.16,74281.875,0,0,1823.2129 -2821,3487,6252,6253,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,0,0,8,2,-72.302048,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,45.92,20.05,51.18,39,8.333333333333334,1,1,0,0,3,4,4,1,1132,519653.5,0,325855.38,41154.766,2640.8931 -2821,3487,6253,6252,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,8.7408266,8.7146416,0,8,-2,-95.185936,0,-9,-9,2019,9,0,50,-9,1,0,0,17.889845,17.889845,0,0,0,0,0,0,0,0,0,0,51.18,39,45.92,20.05,8.333333333333334,1,1,0,0,11,4,4,1,1132,519653.5,0,325855.38,41154.766,2640.8931 -2822,3488,6254,6255,-9,-9,1,0,29,0,1,0,3,3,-9,0,3,7.8345633,7.8447337,0,3,-10,8.8560419,0,-9,-9,2019,9,2,37,0,1,2,0,8.9790411,8.9790411,0,0,0,0,0,1,0,1,0,0,43,53,43,41,6.666666666666667,2,3,0,0,1,2,3,0,305,400799,0,0,0,1954.5979 -2822,3488,6255,6254,-9,-9,1,1,39,0,1,0,2,2,-9,0,2,6.1871896,5.9717584,0,3,10,-37.084461,0,2,2,2019,13,3,25,40,1,3,0,2.148874,2.148874,0,0,0,0,0,1,0,1,0,0,43,41,43,53,5,2,3,0,1,13,2,3,0,305,400799,0,0,0,1954.5979 -2822,3488,6256,-9,6254,6255,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-824.71631,-9,3,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,2,3,0,305,400799,0,0,0,1954.5979 -2823,3489,6257,6258,-9,-9,1,1,35,0,1,0,3,3,-9,0,4,6.3819652,6.6392651,0,4,-10,75.614624,-9,-9,-9,2019,10,4,36,0,1,4,0,2.1374123,2.1374123,0,0,0,0,0,1,1,0,0,0,53.02,50.03,59.37,21.79,8.333333333333334,4,5,0,0,3,6,5,1,955.33331,487807.13,276120.13,0,0,4737.001 -2823,3489,6258,6257,-9,6260,1,0,45,0,1,0,2,2,-9,0,2,9.277462,9.0951166,0,4,10,16.889357,0,2,2,2019,8,0,70,70,1,0,0,16.781422,16.781422,0,0,0,0,7,1,1,0,7.2984967,0,59.37,21.79,53.02,50.03,5,1,1,0,0,10,6,5,1,955.33331,487807.13,276120.13,0,0,4737.001 -2823,3489,6259,-9,6258,6257,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1178.1758,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,955.33331,487807.13,276120.13,0,0,4737.001 -2823,3490,6260,-9,-9,-9,1,1,80,0,1,0,3,3,-9,0,4,0,3.8558829,3.8099594,0,0,-911.45673,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7535384,3.9337735,46.99,50.99,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,471,244301.52,55337.766,2486.7007,0,1077.379 -2824,3491,6261,6264,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,0,0,0,12,-4,34.313492,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.6647556,0,47.25,44.46,51.83,57.2,6.666666666666667,2,3,0,0,1,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 -2824,3491,6262,-9,6261,6264,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9377,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 -2824,3491,6263,-9,6261,6264,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-869.67145,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 -2824,3491,6264,6261,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.220973,9.3439789,0,12,4,-73.392609,0,2,1,2019,11,0,40,40,1,0,0,23.061703,23.061703,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.25,44.46,6.666666666666667,2,3,0,0,6,2,4,1,633.75,-26405.115,18962.379,149195.09,134488.36,2551.0862 -2825,3492,6265,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9138002,7.4209991,0,0,0,-1048.8962,0,3,3,2019,5,0,30,30,1,0,0,9.6035643,9.6035643,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,6.666666666666667,3,4,0,0,8,6,3,0,3221,427105.88,90354.219,0,0,1450.8623 -2826,3493,6266,6267,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.942441,8.4897528,6.8314834,9,5,54.775799,0,3,3,2019,5,0,48,37,1,0,0,5.9278879,5.9278879,0,0,0,0,0,0,0,0,6.5726933,7.1980934,57.33,53.46,41.72,55.04,6.666666666666667,1,1,0,0,8,5,4,0,804,366595.09,52773.445,249687.06,131924.63,2663.0112 -2826,3493,6267,6266,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.5386848,7.8910103,0,9,-5,15.338968,0,-9,3,2019,15,5,38,43,1,5,0,5.174274,5.174274,0,0,0,0,0,0,0,0,0,0,41.72,55.04,57.33,53.46,5,1,1,0,0,9,5,4,0,804,366595.09,52773.445,249687.06,131924.63,2663.0112 -2827,3494,6268,6269,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.8527784,6.4323511,9,7,-102.26716,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,0,3.9004843,0,0,1,1,0,6.2403216,6.3944464,49.07,22.42,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,1849.5,454044.75,407914.25,381773.47,0,2583.8809 -2827,3494,6269,6268,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.5523796,7.5403228,9,-7,72.932953,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6503844,57.16,56.15,49.07,22.42,8.333333333333334,1,1,0,0,0,2,3,1,1849.5,454044.75,407914.25,381773.47,0,2583.8809 -2828,3495,6270,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.5832152,7.7917256,6.3107023,0,0,-1097.7974,0,-9,-9,2019,9,0,20,18,1,0,0,12.654453,12.654453,0,0,0,0,0,1,1,0,0,6.5008097,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,1769,21023.488,0,153521.77,0,1062.6062 -2829,3496,6271,6272,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.6389666,6.7823529,52,0,58.730949,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.6754918,53.98,50.87,63.59,34.15,10,1,1,0,0,0,1,5,1,390,1248857.3,757918.06,541960.13,0,5370.6685 -2829,3496,6272,6271,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6225872,8.9181757,52,0,75.506798,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.0615549,5.7678299,63.59,34.15,53.98,50.87,8.333333333333334,1,1,0,0,2,1,5,1,390,1248857.3,757918.06,541960.13,0,5370.6685 -2830,3497,6273,6274,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.9960537,6.790853,0,37,0,-41.061718,0,3,2,2019,7,0,15,15,1,0,0,6.038002,6.038002,0,0,0,0,0,0,0,0,10.10323,0,54.2,57.49,51,49,8.333333333333334,4,2,0,0,11,7,5,1,414.5,1577549.3,812225.13,247753.95,0,11401.15 -2830,3497,6274,6273,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.0128374,8.8782234,0,8,0,-43.041794,0,-9,-9,2019,10,0,30,24,1,1,0,31.554747,31.554747,0,0,0,0,0,0,0,0,4.415864,0,51,49,54.2,57.49,7,1,1,0,0,1,7,5,1,414.5,1577549.3,812225.13,247753.95,0,11401.15 -2831,3498,6275,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,4.8267164,4.914887,0,0,-1035.0182,0,3,2,2019,13,0,0,0,4,3,0,0,0,0,0,23.613237,0,0,1,1,0,2.2471182,4.853229,42.53,25.23,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,435,139020.52,-3631.4216,0,0,879.27161 -2832,3499,6276,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.6466584,7.6320672,0,0,0,-850.26477,-9,-9,-9,2019,8,1,40,0,1,1,0,5.0186405,5.0186405,0,0,0,0,0,0,0,0,0,0,59.44,42.44,-9,-9,10,2,3,0,0,2,9,3,0,1510,-340602.44,0,0,0,1193.6219 -2833,3500,6277,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.8170033,8.534194,0,0,0,-960.0285,0,2,1,2019,10,0,37,38,1,0,0,23.522717,23.522717,0,0,0,0,0,0,0,0,3.5679417,0,37.95,58.19,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,1854,-72315.531,-63713.688,0,0,1578.7102 -2833,3501,6278,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.9638891,8.0964861,0,0,0,-1054.5551,0,-9,-9,2019,9,1,37,25,1,1,0,9.5982513,9.5982513,0,0,0,0,0,0,0,0,0,0,49.15,46.68,-9,-9,3.333333333333333,1,1,0,0,4,1,4,1,530,124596.39,-103897.63,0,0,1433.6267 -2834,3502,6279,-9,-9,-9,1,0,18,1,1,0,2,2,1,0,4,0,0,0,0,0,-1026.3204,-9,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,800.5,116811.2,0,0,0,841.80359 -2834,3502,6280,-9,6279,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1136.832,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,0,800.5,116811.2,0,0,0,841.80359 -2835,3503,6281,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-998.75916,0,2,2,2019,16,6,0,40,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45.43,42.77,-9,-9,8.333333333333334,3,4,1,1,4,4,1,1,351,-164531.55,-93911.422,0,0,156.42796 -2836,3504,6282,6283,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.3803463,6.2021599,10,0,71.332237,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9135966,6.4245381,55.2,49.4,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,298.5,1148150,615440.25,361871.19,107313.08,2962.5649 -2836,3504,6283,6282,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.7857342,7.6196041,10,0,5.8873034,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3458338,7.9149666,57.16,56.15,55.2,49.4,8.333333333333334,1,1,0,0,0,12,3,1,298.5,1148150,615440.25,361871.19,107313.08,2962.5649 -2837,3505,6284,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.572298,8.9599495,0,0,0,-1012.8568,0,2,2,2019,6,0,35,35,1,0,0,16.790771,16.790771,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,783,140452.69,-37489.059,97813.758,0,1693.6603 -2838,3506,6285,6286,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.3348532,6.0438805,8,-3,-55.815392,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.4157848,6.0191526,39.94,42.22,62.66,52.4,5,1,1,0,0,0,13,2,1,320.5,654697.5,177157.08,353339.5,0,1966.5728 -2838,3506,6286,6285,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.7682509,7.0025415,8,3,3.5126846,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2137361,62.66,52.4,39.94,42.22,8.333333333333334,1,1,0,0,0,13,2,1,320.5,654697.5,177157.08,353339.5,0,1966.5728 -2839,3507,6287,6288,-9,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,2,-1,76.36821,0,-9,-9,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.47,51.1,7.53,60.14,10,1,1,0,0,2,5,3,0,1189.5,-364292.56,0,0,0,907.17279 -2839,3507,6288,6287,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.8310108,7.9778891,0,2,1,32.177303,0,-9,-9,2019,23,8,44,32,1,8,0,6.1313157,6.1313157,0,0,0,0,0,0,0,0,0,0,7.53,60.14,53.47,51.1,8.333333333333334,1,1,0,0,2,5,3,0,1189.5,-364292.56,0,0,0,907.17279 -2840,3508,6289,6290,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.5474968,7.6812387,47,4,39.665833,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.9208546,0,0,1,1,0,7.1212945,7.3158803,53.07,53.97,42.9,50.31,8.333333333333334,1,1,0,0,0,5,3,1,654.5,1011659.8,455861,138380.25,0,3241.0891 -2840,3508,6290,6289,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.4456282,7.548254,52,-4,-142.11868,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.3428741,42.9,50.31,53.07,53.97,10,1,1,0,0,0,5,3,1,654.5,1011659.8,455861,138380.25,0,3241.0891 -2841,3509,6291,6292,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.0202055,8.0124731,0,7,2,-81.747032,0,3,3,2019,13,1,46,58,1,1,0,8.3502884,8.3502884,0,0,0,0,2,0,0,0,0,0,48.76,53.24,60.87,44.96,8.333333333333334,1,1,0,0,8,13,4,1,505,450574.25,103246.55,94315.656,18425.201,2652.5205 -2841,3509,6292,6291,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.0531635,8.3207111,0,7,-2,-16.303902,0,3,2,2019,9,0,35,35,1,0,0,13.81106,13.81106,0,0,0,0,0,0,0,0,0,0,60.87,44.96,48.76,53.24,8.333333333333334,1,1,0,0,8,13,4,1,505,450574.25,103246.55,94315.656,18425.201,2652.5205 -2841,3510,6293,-9,6292,6291,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1023.6052,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.8862627,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,955,-64272.684,0,0,0,184.8913 -2842,3511,6294,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1497154,8.3226843,0,0,0,-895.57739,0,3,3,2019,14,2,30,28,1,2,0,13.423176,13.423176,0,0,0,0,0,1,1,0,6.3992996,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,11,12,4,1,1039,54137.199,11341.748,0,0,1612.7181 -2843,3512,6295,-9,-9,-9,1,0,63,0,1,0,2,2,-9,0,5,0,6.8250299,7.2484636,0,0,-874.27771,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,2.4145112,7.346652,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,7,2,2,1,324,-526959.56,0,101279.7,0,1230.7462 -2843,3513,6296,-9,6295,-9,1,0,31,0,1,0,2,2,-9,0,3,7.2992034,7.5997176,5.9867229,0,0,-948.24329,0,2,2,2019,22,7,20,20,1,7,0,9.5306559,9.5306559,0,0,0,0,0,1,1,0,6.5538187,0,45.58,45.14,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,1208,103674.42,70010.508,0,0,2106.9504 -2843,3513,6297,-9,6296,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.4126,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1208,103674.42,70010.508,0,0,2106.9504 -2844,3514,6298,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.3962193,8.3368578,0,0,0,-1058.5657,0,2,-9,2019,12,1,37,37,1,1,0,13.922043,13.922043,0,0,0,0,0,0,0,0,1.2148246,0,36.11,44.02,-9,-9,6.666666666666667,1,1,0,0,10,5,4,0,2908,-31001.371,3587.26,0,0,2139.7817 -2845,3515,6299,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9825726,6.8378863,0,0,0,-1008.0926,0,3,3,2019,9,0,34,36,1,0,0,4.0968361,4.0968361,0,0,0,0,27,1,1,0,0,0,53.24,36.44,-9,-9,5,1,1,0,0,6,12,2,1,374,100288.4,0,0,0,764.52203 -2846,3516,6300,6301,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.8763256,8.7515278,33,0,63.526886,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4776654,8.8290911,63.18,27.41,52,53,8.333333333333334,1,1,0,0,0,12,4,1,730.5,2425810.5,1565147,680442,0,3674.1563 -2846,3516,6301,6300,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,3,0,182.66678,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,63.18,27.41,8,1,1,0,0,0,12,4,1,730.5,2425810.5,1565147,680442,0,3674.1563 -2846,3517,6302,-9,6301,6300,1,0,27,0,0,0,1,1,-9,0,4,7.4429584,7.4023514,0,0,0,-1060.0137,0,2,2,2019,10,2,50,60,1,2,0,2.8504899,2.8504899,0,0,0,0,7,1,1,0,0,0,53.62,40.36,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,163,-322001.38,0,0,0,623.23096 -2847,3518,6303,6304,-9,-9,1,0,50,0,0,0,3,3,-9,0,1,0,0,0,33,-7,0,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.9,40.13,37.44,35.75,6.666666666666667,2,3,0,0,0,2,1,1,1484,18787.609,50911.301,0,0,605.64355 -2847,3518,6304,6303,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,0,0,0,6,7,0,0,3,1,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.44,35.75,39.9,40.13,3.333333333333333,2,3,1,0,5,2,1,1,1484,18787.609,50911.301,0,0,605.64355 -2847,3519,6305,-9,6303,6304,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-960.82092,0,2,2,2019,22,8,0,0,3,8,1,0,0,0,0,0,0,2,1,1,0,0,0,54.93,22.68,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,650,-225490.23,0,0,0,684.27643 -2848,3520,6306,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1025.4736,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6595006,0,59.6,46.99,-9,-9,10,1,1,0,0,0,1,1,1,1681,345987.59,0,0,0,689.70081 -2849,3521,6307,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2258339,8.1465845,0,0,0,-1002.9977,0,3,3,2019,27,12,37,40,1,12,0,11.500373,11.500373,0,0,0,0,0,0,0,0,0,0,22.46,58.73,-9,-9,5,1,1,0,0,7,11,4,1,316,523580.81,62486.105,223730.75,36936.148,1207.1123 -2849,3522,6308,-9,6307,-9,1,1,24,0,0,0,2,2,-9,0,3,7.0100613,7.0530043,0,0,0,-866.24597,0,2,-9,2019,20,7,17,0,1,7,1,8.0399742,8.0399742,0,0,0,0,0,0,0,0,0,0,28.97,59.76,-9,-9,3.333333333333333,1,1,0,0,1,11,2,1,829,-312155,18233.135,0,0,472.23175 -2850,3523,6309,6310,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.5005679,5.8060608,55,-1,-50.563442,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3637199,5.4883246,44.53,56.37,39.18,44.37,8.333333333333334,1,1,0,0,0,4,2,1,241,436580.06,-60833.125,407107.16,0,1716.6074 -2850,3523,6310,6309,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.018075,5.8530936,55,1,-134.62877,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.9714353,5.8299713,39.18,44.37,44.53,56.37,8.333333333333334,1,1,0,0,0,4,2,1,241,436580.06,-60833.125,407107.16,0,1716.6074 -2851,3524,6311,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.2061901,8.0363388,0,0,0,-1003.0667,0,3,3,2019,13,1,38,30,1,1,0,10.611962,10.611962,0,0,0,0,0,1,1,0,0,0,37.64,58.32,-9,-9,5,1,1,0,1,9,5,4,1,152,60989.988,85727.609,89636.797,0,1495.2628 -2852,3525,6312,-9,6313,6315,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.7202,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 -2852,3525,6313,6315,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.0045948,8.1473379,0,21,-12,93.103401,0,2,2,2019,9,0,37,35,1,0,0,12.788823,12.788823,0,0,0,0,0,1,1,0,4.1491756,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 -2852,3525,6314,-9,6313,6315,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-941.2478,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.4656239,0,41.06,51.31,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 -2852,3525,6315,6313,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.8852272,9.000205,8.1660824,20,12,76.382462,0,2,3,2019,12,1,40,40,1,1,0,16.733372,16.733372,0,0,0,0,2,1,1,0,6.8647823,8.8168602,58.15,52.91,57.16,56.15,6.666666666666667,1,1,0,0,9,9,5,1,501.25,748233.88,287039,387539.94,0,4399.6357 -2853,3526,6316,6317,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4724627,8.3867159,0,7,-4,48.823704,0,3,-9,2019,6,0,44,44,1,0,0,11.400605,11.400605,0,0,0,0,0,0,0,0,0,0,64.38,41.86,53.05,28.78,1.666666666666667,1,1,0,0,8,10,4,1,1531.5,187674.52,64817.141,0,0,2202.2866 -2853,3526,6317,6316,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.3590932,7.4765491,0,7,4,-3.6156931,0,-9,-9,2019,14,2,22,22,1,2,0,10.250779,10.250779,0,0,0,0,0,0,0,0,0,0,53.05,28.78,64.38,41.86,8.333333333333334,1,1,0,0,8,10,4,1,1531.5,187674.52,64817.141,0,0,2202.2866 -2854,3527,6318,6321,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,3.8502176,3.640429,0,7,8,35.27689,0,3,2,2019,8,0,50,45,1,0,0,.11234494,.11234494,0,0,0,0,0,1,1,0,8.8215561,0,54.79,55.86,30.39,57.58,8.333333333333334,1,1,0,0,9,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 -2854,3527,6319,-9,6321,6318,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.26465,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 -2854,3527,6320,-9,6321,6318,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.45154,-9,1,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.67067,0,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 -2854,3527,6321,6318,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.3894753,7.8873081,5.7866912,7,-8,-82.247787,0,2,1,2019,19,8,35,34,1,8,0,5.4285293,5.4285293,0,0,0,0,0,1,1,0,7.9137139,0,30.39,57.58,54.79,55.86,3.333333333333333,1,1,0,0,9,9,2,1,554.25,321825.5,217457.92,0,0,5578.9683 -2855,3528,6322,6323,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.9841895,4.8216109,10,6,118.36902,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,.43269831,0,0,1,1,0,0,5.2041674,59.29,49.68,55.71,43.17,8.333333333333334,1,1,0,0,6,7,2,0,674,-6049.6523,135925.48,0,0,1039.865 -2855,3528,6323,6322,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.721549,5.5148344,10,-6,-43.567791,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6545215,55.71,43.17,59.29,49.68,8.333333333333334,1,1,0,0,8,7,2,0,674,-6049.6523,135925.48,0,0,1039.865 -2856,3529,6324,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,7.9743505,8.0823326,0,0,-936.55841,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1079712,58.92,19.45,-9,-9,10,4,5,0,0,10,6,4,1,1628,486747.03,202312.58,248232.41,28213.531,1272.621 -2857,3530,6325,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,7.7792864,7.5420394,0,0,-1009.7277,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6732645,7.8652387,57.06,57.76,-9,-9,10,1,1,0,0,6,10,3,1,1187,310471.38,37981.117,0,0,2044.9918 -2858,3531,6326,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.0458117,8.2636814,5.5886869,0,0,-1110.0177,0,3,3,2019,10,1,37,37,1,1,0,9.7604609,9.7604609,0,0,0,0,0,0,0,0,0,5.8985982,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,10,1,4,1,687,378052.31,-72316.148,0,0,1820.0199 -2859,3532,6327,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6630621,8.6144104,0,0,0,-859.17432,0,1,1,2019,16,2,38,42,1,2,0,13.324988,13.324988,0,0,0,0,0,0,0,0,1.5076863,0,42.28,54.75,-9,-9,6.666666666666667,2,3,0,0,11,1,5,1,538,-163737.55,61963.348,231921.11,153737.44,2080.3999 -2860,3533,6328,6329,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,8.0442562,7.7376013,0,9,2,37.761871,0,3,2,2019,6,0,36,38,1,0,0,8.7102041,8.7102041,0,0,0,0,0,0,0,0,0,0,33.51,60.63,36.42,44.54,8.333333333333334,2,3,0,0,10,9,3,0,385,443926.63,117785.88,389925.75,0,942.16858 -2860,3533,6329,6328,-9,-9,1,0,42,0,0,0,3,3,-9,0,2,0,0,0,9,-2,136.18173,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.42,44.54,33.51,60.63,6.666666666666667,2,3,0,0,0,9,3,0,385,443926.63,117785.88,389925.75,0,942.16858 -2860,3534,6330,-9,6329,6328,1,1,19,0,0,0,2,2,-9,0,5,8.2088575,8.3419037,0,0,0,-1010.4299,0,3,3,2019,8,0,42,43,1,0,1,7.8191977,7.8191977,0,0,0,0,0,0,0,0,.88956767,0,52.72,55.58,-9,-9,8.333333333333334,2,3,0,0,3,9,4,0,470,54897.027,0,0,0,1217.967 -2860,3535,6331,-9,6329,6328,1,0,18,0,0,0,2,2,0,0,5,0,5.384428,5.4525056,0,0,-992.75226,-9,3,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.7292094,0,70.29000000000001,42.14,-9,-9,10,2,3,0,0,0,9,2,0,429,158675.42,0,0,0,261.42911 -2861,3536,6332,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.8061585,7.2432513,0,0,-926.60028,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,2.9927483,12.472711,22.680016,0,1,1,0,0,7.0592008,57.42,35.61,-9,-9,10,1,1,0,0,0,7,2,1,356,672538.25,31988.549,506898.53,0,1449.254 -2862,3537,6333,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1030.6321,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,447,191367.16,0,0,0,1091.2727 -2863,3538,6334,-9,-9,-9,1,0,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-986.58014,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,8.333333333333334,1,1,0,1,0,9,1,0,510,146556.22,0,0,0,1383.2188 -2864,3539,6335,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.2961712,6.9028382,0,0,-1017.4815,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0241809,6.472506,52.83,38.97,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,679,755804.69,153506.47,181500.92,0,1320.5156 -2865,3540,6336,6337,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,9.1131239,9.0128632,0,1,3,-85.483429,0,1,1,2019,9,0,39,50,1,0,0,34.083076,34.083076,0,0,0,0,0,0,0,0,2.2960622,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,8,10,5,1,427,180588.39,38781.168,457133.13,176912.31,5580.0137 -2865,3540,6337,6336,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.9955611,8.26612,6.2708988,1,-3,74.048645,-9,-9,-9,2019,10,1,38,0,1,1,0,9.7106981,9.7106981,0,0,0,0,0,0,0,0,6.2933693,0,48.87,58.55,54.79,55.86,6.666666666666667,1,1,0,0,0,10,5,1,427,180588.39,38781.168,457133.13,176912.31,5580.0137 -2866,3541,6338,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.267765,8.5083456,0,0,0,-1015.3271,0,2,2,2019,12,1,36,36,1,1,0,11.779591,11.779591,0,0,0,0,0,1,1,0,6.3997917,0,45.57,53.5,-9,-9,6.666666666666667,3,4,0,0,8,8,4,1,633,490789.28,402968.47,254945.25,57280.172,2036.1982 -2867,3542,6339,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.2534499,6.5429702,0,0,-936.03546,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,14.692742,9.0136099,128.88069,0,1,1,0,6.5683007,6.6846046,52,45,-9,-9,8,1,1,0,0,0,13,2,1,981,124389.55,-17909.633,0,0,1537.3646 -2868,3543,6340,6341,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,7.6833186,7.2352333,58,-2,-18.43643,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5869255,6.8714442,56.11,47.07,56.53,45.45,8.333333333333334,1,1,0,0,0,12,4,1,1339,719303.63,453280.81,178802.34,0,3626.1934 -2868,3543,6341,6340,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,8.3285608,8.3436527,58,2,-67.231728,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.1151943,7.9345098,56.53,45.45,56.11,47.07,10,1,1,0,0,0,12,4,1,1339,719303.63,453280.81,178802.34,0,3626.1934 -2869,3544,6342,6343,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.1888027,8.3851719,0,36,-1,-45.66534,0,3,3,2019,10,0,40,30,1,0,0,9.0221443,9.0221443,0,0,0,0,2,0,0,0,0,0,57.33,53.46,58.32,50.22,8.333333333333334,1,1,0,0,9,4,5,1,269.5,-81054.109,-46194.43,81289.086,29876.484,2764.4849 -2869,3544,6343,6342,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.2559643,8.355794,0,34,1,12.056424,0,3,3,2019,6,0,41,38,1,0,0,11.336135,11.336135,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,269.5,-81054.109,-46194.43,81289.086,29876.484,2764.4849 -2870,3545,6344,6345,-9,-9,1,0,79,0,1,0,3,3,-9,0,1,0,0,0,58,1,148.38873,0,2,2,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.4617734,0,40,23,51.64,12.2,3,3,4,0,0,0,8,2,1,758,577089.19,164345.97,0,0,2521.7046 -2870,3545,6345,6344,-9,-9,1,1,78,0,1,0,1,1,-9,0,1,0,6.5947862,6.6671596,58,-1,62.030987,0,2,3,2019,21,9,0,0,4,9,0,0,0,1,0,45.163601,0,14.5,1,1,0,6.9795642,6.9909587,51.64,12.2,40,23,3.333333333333333,2,3,0,0,0,8,2,1,758,577089.19,164345.97,0,0,2521.7046 -2870,3546,6346,-9,6344,6345,1,0,53,0,1,0,1,1,-9,0,4,9.1686726,9.1487284,0,0,0,-1089.7745,0,2,1,2019,10,0,46,40,1,0,0,25.944298,25.944298,0,0,0,0,7,1,1,0,0,0,48.28,60.18,-9,-9,3.333333333333333,4,2,0,0,11,8,4,1,589,3045580.3,890767.69,374292.31,0,3153.4587 -2870,3546,6347,-9,6346,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1020.5704,-9,1,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,3,4,0,0,0,8,4,1,589,3045580.3,890767.69,374292.31,0,3153.4587 -2870,3546,6348,-9,6346,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-860.01581,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,4,1,589,3045580.3,890767.69,374292.31,0,3153.4587 -2871,3547,6349,-9,6350,6351,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-938.99756,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,385,115839.63,-10414.412,91544.82,40817.941,2341.6697 -2871,3547,6350,6351,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.5662355,6.8513246,0,6,8,-54.667194,0,3,2,2019,5,0,31,15,1,0,0,3.8431914,3.8431914,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,0,385,115839.63,-10414.412,91544.82,40817.941,2341.6697 -2871,3547,6351,6350,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.3550758,8.4194803,0,6,-8,.55563849,0,2,2,2019,6,0,65,66,1,0,0,6.5100975,6.5100975,0,0,0,0,0,1,1,0,2.9949267,0,57.16,56.15,55.73,53.98,8.333333333333334,1,1,0,0,6,4,4,0,385,115839.63,-10414.412,91544.82,40817.941,2341.6697 -2871,3548,6352,-9,6350,6351,1,1,21,0,1,0,2,2,-9,0,5,7.5416927,7.2750878,0,0,0,-966.53284,0,2,2,2019,9,0,40,45,1,0,1,4.3269997,4.3269997,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,2,4,3,0,113,44620.715,-143743.69,0,0,735.90424 -2872,3549,6353,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.0373802,7.7822704,0,0,-955.8255,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7957916,50,47,-9,-9,7,3,4,0,0,11,6,3,1,1756,696581.19,216609.19,397766.22,0,1727.7366 -2873,3550,6354,6355,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.7415318,8.5255003,7.4743824,2,4,145.39244,-9,-9,-9,2019,10,0,40,0,1,1,0,7.5130954,7.5130954,0,0,0,0,0,0,0,0,6.3437262,7.6300826,50,49,44.04,26.14,7,2,3,0,0,1,8,4,0,1016,1291623,15946.777,896778.25,0,2793.3179 -2873,3550,6355,6354,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,30,-4,-85.914749,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,0,0,44.04,26.14,50,49,8.333333333333334,2,3,1,1,3,8,4,0,1016,1291623,15946.777,896778.25,0,2793.3179 -2874,3551,6356,6357,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.6271024,7.1838098,50,4,15.217917,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.0147491,7.5529389,57.33,53.46,44.78,55.1,10,1,1,0,0,0,2,2,1,625.5,366231.72,272534.25,162692.72,0,1663.8655 -2874,3551,6357,6356,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,50,-4,55.36652,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.78,55.1,57.33,53.46,10,1,1,0,0,0,2,2,1,625.5,366231.72,272534.25,162692.72,0,1663.8655 -2875,3552,6358,-9,6361,6359,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.1851,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 -2875,3552,6359,6361,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,0,0,0,4,1,0,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.98,38.32,54.96,53.17,1.666666666666667,2,3,1,1,0,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 -2875,3552,6360,-9,6361,6359,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.62018,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 -2875,3552,6361,6359,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,4,-1,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,42.98,38.32,8.333333333333334,2,3,0,1,2,8,1,0,1323.5,-39797.621,0,0,0,1769.4365 -2876,3553,6362,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,7.6730723,7.5722742,0,0,0,-896.78833,0,2,-9,2019,12,0,39,40,1,0,0,7.4789977,7.4789977,0,0,0,0,14.5,1,1,0,0,0,53.98,50.87,-9,-9,0,1,1,0,0,6,11,3,0,1899,140847.5,0,0,0,716.88544 -2877,3554,6363,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.5201664,8.245223,0,0,0,-909.19458,0,3,3,2019,21,8,37,36,1,8,0,15.285303,15.285303,0,0,0,0,0,0,0,0,0,0,34.65,37.08,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,422,264985.66,23512.932,240090.22,0,1514.4183 -2878,3555,6364,6365,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.2702789,8.1808605,0,2,6,4.4569645,0,-9,-9,2019,10,0,35,37,1,1,0,12.580763,12.580763,0,0,0,0,0,0,0,0,0,0,49,56,51.77,58.57,8,1,1,0,0,1,4,4,1,476.5,238829.03,123458.7,0,0,1827.5266 -2878,3555,6365,6364,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,7.0537877,7.4118781,0,2,-6,-31.747747,0,2,2,2019,12,2,50,50,1,2,0,3.4187546,3.4187546,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49,56,8.333333333333334,1,1,0,0,7,4,4,1,476.5,238829.03,123458.7,0,0,1827.5266 -2879,3556,6366,6367,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,3,-11,0,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,58.3,52.91,19.01,22.64,8.333333333333334,1,1,0,0,0,1,1,0,867,-203630.13,0,0,0,3185.8677 -2879,3556,6367,6366,-9,-9,1,1,37,0,0,0,2,2,-9,1,1,0,0,0,3,11,0,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,58.3,52.91,0,1,1,0,1,0,1,1,0,867,-203630.13,0,0,0,3185.8677 -2880,3557,6368,-9,-9,-9,1,1,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-1039.1361,-9,-9,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.59,40.76,-9,-9,10,1,1,0,0,0,2,1,0,282,-496188,0,0,0,1474.6741 -2881,3558,6369,6370,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-1,-117.18983,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,58.9,45.74,52.36,17.31,8.333333333333334,1,1,0,0,7,11,2,1,459.5,224392.16,175434.53,0,0,1192.2974 -2881,3558,6370,6369,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.4946856,6.4908781,51,1,43.524292,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.419836,52.36,17.31,58.9,45.74,6.666666666666667,1,1,0,0,0,11,2,1,459.5,224392.16,175434.53,0,0,1192.2974 -2882,3559,6371,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.6782179,8.3877411,0,0,0,-1011.2377,0,1,2,2019,17,6,47,35,1,6,0,13.240286,13.240286,0,0,0,0,0,0,0,0,.37783432,0,31.32,62.74,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,208,105654.41,115505.55,0,0,1692.4231 -2883,3560,6372,6373,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.3001981,8.1058035,7.5763626,9,7,-103.22419,0,3,3,2019,6,0,16,18,1,0,0,12.608234,12.608234,0,0,0,0,0,0,0,0,5.6262465,7.238049,60.13,49.27,57.06,57.76,10,1,1,0,0,8,6,5,1,881.5,1621898,592207,385004.69,0,4202.4346 -2883,3560,6373,6372,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.5186825,9.0191498,7.408844,27,-7,-159.55261,0,3,3,2019,2,0,37,37,1,0,0,12.927692,12.927692,0,0,0,0,0,0,0,0,2.5827558,7.8669257,57.06,57.76,60.13,49.27,10,1,1,0,0,10,6,5,1,881.5,1621898,592207,385004.69,0,4202.4346 -2884,3561,6374,-9,6375,6376,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-977.04834,-9,2,1,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,24.44,64.23,-9,-9,5,1,1,0,0,0,12,1,1,1093,221362.56,0,0,0,0 -2884,3562,6375,6376,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9812446,5.0247703,9,8,77.313606,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9458361,5.1091104,53.98,32.91,32.2,40.87,8.333333333333334,1,1,0,0,7,12,3,1,1802,577936.88,558853.56,257672,0,1544.7682 -2884,3562,6376,6375,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.7979226,7.9893675,6.3125672,9,-8,-68.608246,0,2,1,2019,24,12,40,16,1,12,0,7.1650963,7.1650963,0,0,0,0,0,1,1,0,6.3284659,6.3692412,32.2,40.87,53.98,32.91,3.333333333333333,1,1,0,1,9,12,3,1,1802,577936.88,558853.56,257672,0,1544.7682 -2885,3563,6377,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,3,7.7101855,7.8733859,0,0,0,-852.45691,-9,2,2,2019,17,6,39,0,1,6,0,6.8100591,6.8100591,0,0,0,0,0,0,0,0,.62609082,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,4,4,3,0,1036,229868.19,0,0,0,951.48267 -2886,3564,6378,6379,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.7269268,8.6649141,11,9,-49.438999,0,-9,-9,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6456745,8.7861748,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,252.5,2376772,1633155.9,438113.38,0,3680.9417 -2886,3564,6379,6378,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.7080078,7.8918333,0,25,0,-17.350349,0,2,2,2019,6,0,23,27,1,0,0,14.636713,14.636713,0,0,0,0,0,0,0,0,4.414546,0,57.16,56.15,57.16,56.15,10,1,1,0,0,11,5,5,1,252.5,2376772,1633155.9,438113.38,0,3680.9417 -2886,3565,6380,-9,6379,6378,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1002.8461,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.7836232,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,404,-389862.34,0,0,0,292.18738 -2887,3566,6381,-9,6388,6383,1,0,10,2,6,1,3,0,-9,0,5,0,0,0,0,0,-994.06445,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2887,3566,6382,-9,6388,6383,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-989.71478,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2887,3566,6383,6388,-9,-9,1,1,41,2,6,0,2,2,-9,0,4,9.9974632,10.042534,0,13,8,-68.973465,-9,-9,-9,2019,11,0,30,0,1,0,0,77.607391,77.607391,0,0,0,0,0,1,1,0,0,0,28.48,51.62,57.16,56.15,6.666666666666667,2,3,0,0,9,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2887,3566,6384,-9,6388,6383,1,0,13,2,6,1,3,0,-9,0,2,0,0,0,0,0,-1056.6917,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2887,3566,6385,-9,6388,6383,1,1,4,2,6,1,3,0,-9,0,4,0,0,0,0,0,-989.45605,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2887,3566,6386,-9,6388,6383,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-988.39929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2887,3566,6387,-9,6388,6383,1,0,15,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1092.4153,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2887,3566,6388,6383,-9,-9,1,0,33,2,6,0,2,2,-9,0,4,0,0,0,13,-8,-32.036377,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,28.48,51.62,8.333333333333334,2,3,0,0,0,8,5,0,1029.5,729046.56,135798.13,817490.44,322701.28,8040.7925 -2888,3567,6389,6390,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.5388465,7.2319608,0,8,-2,-65.839867,0,1,2,2019,11,2,26,26,1,2,0,7.68367,7.68367,0,0,0,0,14.5,0,0,0,0,0,45.01,46.73,53.87,39.12,8.333333333333334,1,1,0,0,9,11,5,1,688,-19418.08,12862.092,0,0,3635.9849 -2888,3567,6390,6389,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0632257,8.6186676,0,8,2,-150.45972,0,3,3,2019,9,1,43,42,1,1,0,21.964165,21.964165,0,0,0,0,0,0,0,0,0,0,53.87,39.12,45.01,46.73,8.333333333333334,1,1,0,0,9,11,5,1,688,-19418.08,12862.092,0,0,3635.9849 -2888,3568,6391,-9,6389,6390,1,1,22,0,0,0,2,2,-9,0,3,7.1356158,6.8654866,0,0,0,-1036.8707,-9,2,2,2019,6,0,26,0,1,0,1,4.611773,4.611773,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,4218,-15946.58,0,0,0,511.37216 -2889,3569,6392,6393,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,8.310813,8.8716764,8.1497593,40,3,-48.305744,0,-9,-9,2019,6,0,19,19,1,0,0,22.708538,22.708538,0,0,0,0,0,0,0,0,0,8.300499,62.39,56.71,58.32,50.22,1.666666666666667,1,1,0,0,12,13,5,1,645.5,568987.56,64029.078,162591.41,0,2881.9648 -2889,3569,6393,6392,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,40,-3,-51.422455,0,-9,-9,2019,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,62.39,56.71,10,1,1,0,0,11,13,5,1,645.5,568987.56,64029.078,162591.41,0,2881.9648 -2890,3570,6394,6395,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.7777691,8.6999159,0,18,-1,-78.939796,-9,-9,-9,2019,12,0,38,0,1,0,0,21.906139,21.906139,0,0,0,0,0,0,0,0,0,0,45.91,59.89,49.11,52.88,5,1,1,0,0,11,6,5,1,1260.5,834945.38,256206.5,483392.22,51995.953,6034.0596 -2890,3570,6395,6394,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.8195601,8.9357862,0,18,1,-11.015418,0,2,1,2019,12,0,37,37,1,0,0,26.360395,26.360395,0,0,0,0,0,0,0,0,7.1781192,0,49.11,52.88,45.91,59.89,6.666666666666667,1,1,0,0,9,6,5,1,1260.5,834945.38,256206.5,483392.22,51995.953,6034.0596 -2891,3571,6396,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1126.8359,0,2,2,2019,9,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,8.333333333333334,1,1,0,0,7,2,1,1,254,-124277.88,0,0,0,114.39329 -2892,3572,6397,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.3410058,7.072227,0,0,-911.79089,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.6709902,7.3591676,35.79,44.37,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,103,309389.13,268127.09,221197.23,0,1811.7924 -2893,3573,6398,6399,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,6.9772887,7.03194,0,30,1,29.256714,0,-9,-9,2019,9,0,20,35,1,0,0,5.5213385,5.5213385,0,0,0,0,0,0,0,0,0,0,50.04,31.68,51,54,6.666666666666667,1,1,0,0,7,7,5,1,1240.5,667982.44,278833.94,268916,0,3444.4463 -2893,3573,6399,6398,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.8466549,8.7664022,0,29,-1,-5.5655651,0,-9,-9,2019,10,0,37,47,1,1,0,22.763384,22.763384,0,0,0,0,0,0,0,0,0,0,51,54,50.04,31.68,8,1,1,0,0,1,7,5,1,1240.5,667982.44,278833.94,268916,0,3444.4463 -2893,3574,6400,-9,6399,6398,1,1,20,0,0,0,2,2,-9,0,4,8.2305126,8.1384344,0,0,0,-921.23907,0,2,2,2019,10,0,75,50,1,1,1,5.2619929,5.2619929,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,4,1,1662,141023.73,0,0,0,1308.1112 -2894,3575,6401,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,6.3153067,6.0974398,0,0,-975.44257,0,-9,-9,2019,17,0,0,0,4,5,0,0,0,1,0,1.3834357,0,0,1,1,0,4.7430763,6.5271816,50.52,23.78,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,126,-53629.074,35411.277,0,0,808.72107 -2895,3576,6402,6404,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.1295204,7.234086,0,6,7,30.917425,0,2,-9,2019,10,0,35,8,1,0,0,3.9466062,3.9466062,0,0,0,0,0,1,1,0,0,0,54.7,46.42,53,57,6.666666666666667,1,1,0,0,8,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 -2895,3576,6403,-9,6404,6402,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.1837,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 -2895,3576,6404,6402,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,7.2446642,7.5581002,0,6,-7,-33.010269,0,-9,-9,2019,12,0,30,32,1,0,0,8.2003317,8.2003317,0,0,0,0,0,1,1,0,0,0,53,57,54.7,46.42,8.333333333333334,1,1,0,0,7,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 -2895,3576,6405,-9,6404,6402,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-901.37976,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,4,3,1,465,402547.13,160527.11,118653.48,21645.533,2592.8208 -2896,3577,6406,6407,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.9812593,8.7129202,0,4,-2,85.688911,0,-9,-9,2019,8,0,45,43,1,0,0,15.519831,15.519831,0,0,0,0,0,0,0,0,0,0,47.47,40.16,59.32,46.98,6.666666666666667,1,1,0,0,12,10,5,1,1075.5,1161273.4,899948.13,365434.13,13439.521,2743.3657 -2896,3577,6407,6406,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.1902094,7.3190603,0,4,2,-23.083111,0,-9,-9,2019,5,0,23,27,1,0,0,7.8840537,7.8840537,0,0,0,0,0,0,0,0,0,0,59.32,46.98,47.47,40.16,8.333333333333334,1,1,0,0,12,10,5,1,1075.5,1161273.4,899948.13,365434.13,13439.521,2743.3657 -2896,3578,6408,-9,6407,6406,1,1,30,0,0,0,2,2,-9,0,4,7.5063901,7.4519162,0,0,0,-1020.9148,0,2,2,2019,6,0,39,32,1,0,1,5.8805137,5.8805137,0,0,0,0,0,0,0,0,.41030729,0,57.7,55.88,-9,-9,5,1,1,0,0,9,10,3,1,1213,376385.78,-9180.1465,334316.56,0,813.48999 -2896,3579,6409,-9,6407,6406,1,1,29,0,0,0,2,2,-9,0,4,7.3518672,7.3047557,0,0,0,-1066.9185,0,2,2,2019,6,0,30,60,1,0,1,6.6085401,6.6085401,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,119,-5919.5874,0,0,0,790.31812 -2896,3580,6410,-9,6407,6406,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-954.32489,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,64,-74315.617,0,0,0,252.49129 -2897,3581,6411,6412,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.8316822,9.0449772,0,9,3,-14.900098,0,-9,-9,2019,13,1,47,40,1,1,0,19.619226,19.619226,0,0,0,0,0,1,1,0,0,0,38.05,49.97,57.16,56.15,3.333333333333333,1,1,0,0,7,13,5,1,268,655710.19,521899.09,107133.52,6270.0337,4125.7231 -2897,3581,6412,6411,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.5181446,7.8544612,0,23,-3,61.273945,0,3,3,2019,6,0,21,22,1,0,0,10.551994,10.551994,0,0,0,0,7,1,1,0,0,0,57.16,56.15,38.05,49.97,10,1,1,0,0,9,13,5,1,268,655710.19,521899.09,107133.52,6270.0337,4125.7231 -2897,3581,6413,-9,6412,6411,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-843.57886,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.290952,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,5,1,268,655710.19,521899.09,107133.52,6270.0337,4125.7231 -2897,3582,6414,-9,6412,6411,1,1,19,0,0,0,2,2,-9,0,3,0,5.7428927,5.7004104,0,0,-911.58691,1,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.637032,0,44.25,56.64,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,487,0,0,0,0,-301.05801 -2898,3583,6415,-9,-9,6416,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,0,0,-985.27521,-9,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50,55,-9,-9,8,1,1,1,0,0,12,2,0,173,-443903.09,0,0,0,761.82501 -2898,3584,6416,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1101.9823,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,5.8531747,0,0,1,1,0,3.1303744,0,44.25,41.59,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,200,51795.41,0,107370.09,0,566.40167 -2899,3585,6417,-9,6420,6419,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1142.6886,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,844,172518.11,0,0,0,3198.3164 -2899,3585,6418,-9,6420,6419,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1010.074,-9,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,844,172518.11,0,0,0,3198.3164 -2899,3585,6419,6420,-9,-9,1,1,30,0,1,0,2,2,-9,1,4,0,0,0,8,-14,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,31.49,37.23,8.333333333333334,1,1,1,0,3,2,1,0,844,172518.11,0,0,0,3198.3164 -2899,3585,6420,6419,-9,-9,1,0,44,0,1,0,2,2,-9,1,1,0,0,0,8,14,0,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.49,37.23,54.2,57.49,5,1,1,0,0,0,2,1,0,844,172518.11,0,0,0,3198.3164 -2900,3586,6421,6422,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.1325264,6.7394891,0,4,-4,-48.439644,0,-9,-9,2019,11,0,15,20,1,0,0,8.7566795,8.7566795,0,0,0,0,0,0,0,0,4.569706,0,57.73,54.53,54,53,8.333333333333334,1,1,0,0,8,9,5,1,198,2310653.5,1237365.3,779925.63,0,4923.7939 -2900,3586,6422,6421,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.8154707,8.7146311,7.7974501,4,4,-17.935856,0,-9,-9,2019,8,0,50,40,1,0,0,6.1266842,6.1266842,0,0,0,0,0,0,0,0,7.7730966,7.8034225,54,53,57.73,54.53,8,1,1,0,0,1,9,5,1,198,2310653.5,1237365.3,779925.63,0,4923.7939 -2901,3587,6423,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1075.5939,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,5.678905,0,0,1,1,0,2.9056866,0,60.28,23.75,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,502,161692.52,0,0,0,1563.6599 -2902,3588,6424,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.1910276,8.9106388,0,0,0,-1039.7137,0,-9,-9,2019,20,8,46,78,1,8,0,24.166145,24.166145,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,3.333333333333333,2,3,0,0,9,9,5,1,1789,-281617.88,0,0,0,3268.292 -2903,3589,6425,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.4671049,8.5724754,0,0,0,-988.48346,0,3,3,2019,11,2,28,28,1,2,0,20.435175,20.435175,0,0,0,0,98,0,0,0,.98573816,0,49.47,27.45,-9,-9,8.333333333333334,2,3,0,0,11,8,4,1,396,32218.668,89411.039,0,0,1531.4114 -2904,3590,6426,6427,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.3761969,5.9714284,9,-3,-68.848694,0,1,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.1852632,51.32,42.8,47.6,48.5,8.333333333333334,1,1,0,0,6,11,3,1,446,1061435.9,949289.63,162598.72,0,3886.3071 -2904,3590,6427,6426,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4396424,7.3992157,9,3,23.428959,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0889187,7.2552872,47.6,48.5,51.32,42.8,8.333333333333334,1,1,0,0,8,11,3,1,446,1061435.9,949289.63,162598.72,0,3886.3071 -2905,3591,6428,6429,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,36,0,-49.847218,0,2,2,2019,8,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,4.0030537,0,57.16,56.15,58.72,51.29,8.333333333333334,1,1,1,0,5,10,2,1,907,1992630.3,1164995.3,391891.59,0,405.47729 -2905,3591,6429,6428,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.975697,7.4416704,0,36,0,1.1760201,0,2,2,2019,6,0,17,16,1,0,0,8.9266138,8.9266138,0,0,0,0,0,0,0,0,0,0,58.72,51.29,57.16,56.15,8.333333333333334,1,1,0,0,10,10,2,1,907,1992630.3,1164995.3,391891.59,0,405.47729 -2906,3592,6430,-9,6432,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.22186,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 -2906,3592,6431,-9,6432,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.14813,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 -2906,3592,6432,-9,-9,-9,1,0,35,0,3,0,3,3,0,1,3,0,0,0,0,0,-963.67236,-9,-9,-9,2019,23,8,0,0,2,8,0,0,0,0,0,0,0,120,1,1,0,0,0,37.19,53.08,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 -2906,3592,6433,-9,6432,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.91003,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 -2906,3592,6434,-9,6432,-9,1,0,17,0,3,1,3,0,0,0,3,0,0,0,0,0,-1037.7968,-9,3,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,27.33,-9,-9,5,1,1,0,0,0,2,1,0,327.60001,120245.36,0,0,0,3433.2292 -2907,3593,6435,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.8395038,8.0071669,0,0,-881.711,0,1,1,2019,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,7.8428121,8.0453014,51.62,42.55,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,216,775130.38,514250.78,219451.67,0,1899.4016 -2908,3594,6436,-9,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,6.5908198,6.4615102,0,0,0,-983.9325,0,3,2,2019,9,0,37,37,1,0,0,1.9491273,1.9491273,0,0,0,0,0,0,0,0,4.9827919,0,62.39,56.71,-9,-9,10,1,1,0,0,6,9,2,1,1819,1164428,709609.5,205383,3147.0684,657.50458 -2908,3594,6437,-9,-9,6436,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1038.2988,-9,-9,1,2019,18,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,32.28,64.75,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,1819,1164428,709609.5,205383,3147.0684,657.50458 -2909,3595,6438,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.5787039,8.7859039,0,0,0,-946.37299,-9,-9,-9,2019,13,1,43,0,1,1,0,10.987561,10.987561,0,0,0,0,0,0,0,0,0,0,46.31,40.99,-9,-9,6.666666666666667,1,1,0,0,4,2,5,0,279,-121352.49,43084.52,195811.98,87983.945,1681.9276 -2910,3596,6439,6440,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.0652432,6.3233147,53,-3,-155.96149,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.6768265,6.4631023,41.93,55.12,48,36,8.333333333333334,1,1,0,0,4,12,2,1,384.5,384538.25,215342.56,161267.53,0,2534.7734 -2910,3596,6440,6439,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.5799265,6.2716517,53,3,-.93274713,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,73.76696,0,0,1,1,0,5.2246413,6.8039145,48,36,41.93,55.12,1.666666666666667,1,1,0,0,0,12,2,1,384.5,384538.25,215342.56,161267.53,0,2534.7734 -2911,3597,6441,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.2531853,6.8856702,0,0,-961.62555,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.8839861,7.1554213,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,424,-150410.66,197308.3,99975.594,0,420.19113 -2912,3598,6442,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.7016678,7.7674146,0,0,-1190.4962,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6232052,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,546,997081.81,322786.19,202651.98,0,1468.7563 -2913,3599,6443,6444,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,5.3021679,5.6552677,26,-5,-117.10184,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.400188,57.16,56.15,45.57,49.53,8.333333333333334,1,1,0,0,2,9,2,1,1031,732654.5,3726.0059,536176.63,0,1914.1875 -2913,3599,6444,6443,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.3228264,5.6149611,29,5,131.30122,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.9198356,45.57,49.53,57.16,56.15,6.666666666666667,1,1,0,0,4,9,2,1,1031,732654.5,3726.0059,536176.63,0,1914.1875 -2914,3600,6445,6446,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,0,0,0,11,-1,76.608109,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.47,48.08,62.49,55.09,6.666666666666667,2,3,0,0,0,2,4,1,485,154108.73,201911.44,169441,95099.828,3091.7397 -2914,3600,6446,6445,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5509529,8.7068787,0,27,1,-35.408527,0,3,3,2019,5,0,30,40,1,0,0,27.601007,27.601007,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.47,48.08,8.333333333333334,2,3,0,0,13,2,4,1,485,154108.73,201911.44,169441,95099.828,3091.7397 -2914,3601,6447,-9,6445,6446,1,1,23,0,0,0,1,1,-9,0,4,7.9335842,7.8424726,0,0,0,-745.65607,0,2,2,2019,18,6,35,7,1,6,1,10.167448,10.167448,0,0,0,0,0,1,1,0,0,0,42.17,56.08,-9,-9,8.333333333333334,2,3,0,0,3,2,4,1,4409,331416.41,-40374.262,0,0,1296.7546 -2914,3602,6448,-9,6445,6446,1,0,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-948.78851,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.96,51,-9,-9,10,2,3,0,0,2,2,2,1,191,-108805.44,0,0,0,0 -2914,3603,6449,-9,6445,6446,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-997.58618,-9,2,2,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,47.54,46.25,-9,-9,5,2,3,0,0,0,2,1,1,339,108959.26,0,0,0,0 -2915,3604,6450,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,4.9072475,8.2467508,8.2592993,0,0,-1077.9901,0,3,2,2019,7,0,10,20,1,0,0,1.0381615,1.0381615,0,0,0,0,0,0,0,0,8.017889,8.2982693,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,507,796738.63,-3677.6558,197563.28,0,2497.6699 -2916,3605,6451,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.4871798,8.753005,0,0,0,-1040.7203,0,2,2,2019,14,2,41,41,1,2,0,13.180403,13.180403,0,0,0,0,0,1,1,0,0,0,36.07,52.49,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,385,179558.86,67304.797,0,0,1233.5208 -2917,3606,6452,6453,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,7.3021173,7.3192821,0,54,-1,147.12662,0,2,3,2019,11,0,21,27,1,0,0,9.1140604,9.1140604,0,0,0,0,0,1,1,0,1.7307551,0,43.37,57.28,30.49,56.93,8.333333333333334,1,1,0,0,11,9,3,1,826,1008366.7,157204.45,223592.08,0,1762.1067 -2917,3606,6453,6452,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.8017831,5.8367352,54,1,-94.588875,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2409258,6.2106247,30.49,56.93,43.37,57.28,6.666666666666667,1,1,0,0,0,9,3,1,826,1008366.7,157204.45,223592.08,0,1762.1067 -2918,3607,6454,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,9.1524467,8.8095503,0,6,0,-99.320648,0,2,3,2019,13,2,49,55,1,2,0,18.515123,18.515123,0,0,0,0,0,0,0,0,7.2237058,0,39.93,33.31,51.25,50.81,8.333333333333334,1,1,0,0,9,4,5,1,334,451725.81,541222.69,108860.33,33742.137,2766.353 -2918,3608,6455,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.4406595,9.1048727,0,6,0,33.135002,0,2,1,2019,9,0,43,42,1,0,0,34.771641,34.771641,0,0,0,0,0,0,0,0,7.3807526,0,51.25,50.81,39.93,33.31,8.333333333333334,1,1,0,0,7,4,5,1,3700,-124287.34,47000.215,217786.14,77096.523,3339.2944 -2919,3609,6456,6457,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,52,-2,-21.126307,0,3,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,46.92,54.3,41.9,37.91,8.333333333333334,1,1,0,0,0,2,2,1,1130,618423.88,37648.746,167935.91,0,898.01147 -2919,3609,6457,6456,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.2158079,5.6894507,52,2,11.634174,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,3.0007539,0,0,1,1,0,5.7033005,5.4699135,41.9,37.91,46.92,54.3,10,1,1,0,0,0,2,2,1,1130,618423.88,37648.746,167935.91,0,898.01147 -2920,3610,6458,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.8731337,7.0342498,0,0,-1076.2871,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9125242,7.0960851,60.17,50.88,-9,-9,10,1,1,0,0,6,7,2,1,1033,304118.66,143996.83,251741.13,0,2064.3032 -2921,3611,6459,6460,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.593987,7.81778,0,26,8,-77.449615,0,3,3,2019,5,0,42,58,1,0,0,5.6949825,5.6949825,0,0,0,0,0,0,0,0,0,0,59.55,32.14,48.19,30.93,8.333333333333334,1,1,0,0,8,4,3,0,538,773053.5,435855.31,364744.63,0,1832.2343 -2921,3611,6460,6459,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.454329,7.5841579,0,26,-8,-28.802933,0,3,3,2019,6,0,42,30,1,0,0,5.5769119,5.5769119,0,0,0,0,27,0,0,0,0,0,48.19,30.93,59.55,32.14,8.333333333333334,1,1,0,0,7,4,3,0,538,773053.5,435855.31,364744.63,0,1832.2343 -2922,3612,6461,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,0,0,0,0,-954.33588,0,3,2,2019,11,0,0,0,4,2,0,0,0,1,0,91.7342,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,927,99531.008,0,0,0,445.78326 -2922,3613,6462,-9,6464,6463,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.427,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 -2922,3613,6463,6464,6461,-9,1,1,35,0,2,0,1,1,-9,0,3,8.1885719,8.3104258,0,6,8,16.124197,0,3,3,2019,17,5,37,37,1,5,0,12.376409,12.376409,0,0,0,0,71.5,1,1,0,0,0,37.28,55.9,41.14,54.03,5,2,3,0,0,12,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 -2922,3613,6464,6463,-9,-9,1,0,27,0,2,0,3,3,-9,0,3,0,0,0,6,-8,85.121658,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.14,54.03,37.28,55.9,6.666666666666667,2,3,1,1,0,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 -2922,3613,6465,-9,6464,6463,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.59851,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,577.5,-179309.97,8346.0918,0,0,2259.8442 -2923,3614,6466,6467,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.0561867,8.1393032,0,5,-1,28.278753,0,2,3,2019,10,1,39,35,1,1,0,10.067161,10.067161,0,0,0,0,2,0,0,0,0,0,48.87,58.55,58.06,46.15,10,1,1,0,0,9,13,5,1,622.5,111517.27,-29263.191,0,0,3311.002 -2923,3614,6467,6466,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.1630745,7.9699812,0,5,1,115.89856,0,-9,-9,2019,8,0,43,45,1,0,0,11.096226,11.096226,0,0,0,0,0,0,0,0,0,0,58.06,46.15,48.87,58.55,10,1,1,0,0,9,13,5,1,622.5,111517.27,-29263.191,0,0,3311.002 -2924,3615,6468,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.0950761,7.0284629,0,0,0,-954.32568,0,-9,2,2019,6,0,18,18,1,0,0,7.5306382,7.5306382,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,12,7,2,1,1015,470612.63,61208.449,226431.41,0,596.63416 -2925,3616,6469,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,9.044857,8.9939222,0,0,0,-898.40649,0,2,2,2019,12,2,50,40,1,2,0,19.148872,19.148872,0,0,0,0,0,0,0,0,2.8312826,0,43.03,53.23,-9,-9,6.666666666666667,3,4,0,0,9,8,5,0,511,104126.52,0,326213.31,137141.5,3365.5674 -2926,3617,6470,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.0412,0,3,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,2.1541908,0,58.49,31.12,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,631,14455.838,0,0,0,1385.296 -2927,3618,6471,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-996.62939,0,2,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.68,21.22,-9,-9,3.333333333333333,1,1,0,1,4,12,1,0,388,29830.809,0,0,0,608.39984 -2928,3619,6472,6474,-9,-9,1,0,51,0,2,0,1,1,-9,0,1,9.1590815,9.652071,0,2,-2,54.745495,0,1,1,2019,9,0,37,40,1,0,0,26.75444,26.75444,0,0,0,0,0,0,0,0,0,0,51.91,24.14,54.1,59.11,8.333333333333334,1,1,0,0,10,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 -2928,3619,6473,-9,6472,6474,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.98279,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 -2928,3619,6474,6472,-9,-9,1,1,53,0,2,0,1,1,-9,0,5,9.0684757,8.9950104,0,2,2,-99.444267,0,-9,-9,2019,9,0,40,40,1,0,0,27.582338,27.582338,0,0,0,0,0,0,0,0,6.884685,0,54.1,59.11,51.91,24.14,6.666666666666667,1,1,0,0,11,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 -2928,3619,6475,-9,6472,6474,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.5083,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,598.5,5350455,2712828.5,1195960.8,153077.19,7286.2417 -2929,3620,6476,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.3045864,6.2641625,0,0,0,-1082.5679,0,3,3,2019,11,0,14,14,1,0,0,4.2993474,4.2993474,0,0,0,0,0,0,0,0,5.9428344,0,47.54,39.93,-9,-9,8.333333333333334,1,1,0,0,6,5,2,1,212,381710.44,81321.992,0,0,215.32458 -2929,3621,6477,-9,6476,-9,1,1,21,0,0,0,2,2,-9,0,4,7.5061221,7.2617421,0,0,0,-906.19208,0,3,-9,2019,7,1,37,37,1,1,1,6.0129399,6.0129399,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,583,671945.19,0,0,0,1213.5004 -2930,3622,6478,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,8.7970428,9.1533642,6.1782022,0,0,-991.09399,0,2,2,2019,15,4,37,36,1,4,0,24.10758,24.10758,0,0,0,0,0,1,1,0,6.7660408,0,38.51,48.9,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,927,1473635.3,142893.69,365296.31,22428.787,2772.8845 -2931,3623,6479,6480,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.9775496,8.1325312,42,-2,-27.032307,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0669899,8.1962128,56.28,42,46.2,52.86,8.333333333333334,1,1,0,0,7,4,4,1,357,1280826,901594,253568.38,0,2756.1191 -2931,3623,6480,6479,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.892993,5.7470427,42,2,-138.66417,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2356784,6.0601211,46.2,52.86,56.28,42,8.333333333333334,1,1,0,0,5,4,4,1,357,1280826,901594,253568.38,0,2756.1191 -2932,3624,6481,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.9676566,6.9544053,0,0,-892.44232,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.2196145,45.97,33.14,-9,-9,5,1,1,0,0,0,2,2,1,700,216109.89,14909.05,110491.88,0,1755.2538 -2933,3625,6482,6483,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.130702,7.7007322,44,1,-75.97023,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.1716299,7.5661678,61.27,43.2,55.76,44.76,8.333333333333334,1,1,0,0,5,11,3,1,605,1211629.9,654882.5,115024.56,0,2026.8206 -2933,3625,6483,6482,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.270102,7.6842151,44,-1,107.08058,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.3044043,7.100975,55.76,44.76,61.27,43.2,8.333333333333334,1,1,0,0,5,11,3,1,605,1211629.9,654882.5,115024.56,0,2026.8206 -2934,3626,6484,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,5,0,6.927681,6.978457,0,0,-1062.6006,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1040139,57.21,45.32,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,800,364732.72,71338.945,99464.602,0,899.88538 -2935,3627,6485,-9,6486,6487,1,1,20,0,0,0,2,2,-9,0,2,7.0267801,7.2863669,0,0,0,-829.89624,0,2,1,2019,30,12,28,25,1,12,1,5.1619482,5.1619482,0,0,0,0,0,1,1,0,0,0,19.71,46.95,-9,-9,1.666666666666667,1,1,0,0,2,10,3,0,1029,17971.262,0,0,0,429.11743 -2935,3628,6486,6487,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,6.0860786,6.240037,0,10,2,-123.2649,0,-9,-9,2019,16,4,10,0,1,4,0,5.0003443,5.0003443,0,0,0,0,2,1,1,0,0,0,32,23.63,57.69,39.53,5,4,5,0,0,3,10,2,0,355.5,490007.69,0,239532.91,0,785.51062 -2935,3628,6487,6486,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,6.2642322,6.411798,0,10,-2,50.193073,0,2,2,2019,7,0,50,50,1,0,0,1.168576,1.168576,0,0,0,0,2,1,1,0,0,0,57.69,39.53,32,23.63,8.333333333333334,4,2,0,0,11,10,2,0,355.5,490007.69,0,239532.91,0,785.51062 -2936,3629,6488,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,4.3454795,4.7584691,0,0,-913.81213,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8420846,4.2987862,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,894,105942.76,130065.77,298984.16,0,548.97229 -2937,3630,6489,6490,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.087163,8.107872,4.5769901,21,-3,16.392649,-9,3,3,2019,6,0,43,0,1,0,0,7.9764733,7.9764733,0,0,0,0,0,1,1,0,0,5.011868,60.29,52.11,53.08,52.64,8.333333333333334,1,1,0,0,12,12,3,1,561,1016700.5,775247.19,158793.31,0,2414.8201 -2937,3630,6490,6489,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8089395,5.6704855,21,3,-35.858181,-9,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2113481,53.08,52.64,60.29,52.11,8.333333333333334,1,1,0,0,9,12,3,1,561,1016700.5,775247.19,158793.31,0,2414.8201 -2938,3631,6491,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-859.80042,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,1.3762939,0,0,1,1,0,0,0,44.51,23.12,-9,-9,5,1,1,0,0,0,5,1,1,1014,29444.291,0,0,0,193.19414 -2939,3632,6492,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.2142191,6.9967003,0,0,-961.11407,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.4805617,7.3698697,55.75,23.84,-9,-9,5,1,1,0,0,0,6,3,1,944,339361.63,215272.8,84735.68,0,1241.8013 -2940,3633,6493,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4483528,8.2303495,3.0711582,0,0,-984.09143,0,3,3,2019,11,2,42,41,1,2,0,10.950736,10.950736,0,0,0,0,0,1,1,0,6.9715896,3.1488252,42.1,45.61,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,70,350207.59,175248.48,137641.83,0,2474.8052 -2941,3634,6494,6495,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,6.2316985,6.3897662,6,-2,-11.35666,0,2,2,2019,6,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5033937,59.43,58.05,42.86,48.04,10,1,1,0,0,6,11,4,1,700.5,1881423.4,1427657.5,189581,0,2566.6526 -2941,3634,6495,6494,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.5254011,8.7218304,6,2,17.190426,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8483849,8.6541252,42.86,48.04,59.43,58.05,8.333333333333334,1,1,0,0,2,11,4,1,700.5,1881423.4,1427657.5,189581,0,2566.6526 -2942,3635,6496,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.8677859,8.1977386,0,0,0,-957.2088,0,-9,-9,2019,7,0,45,39,1,0,0,8.1348,8.1348,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,653,16072.741,-75277.922,0,0,1434.3677 -2943,3636,6497,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,4.0202475,4.1066446,0,0,-1076.4089,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.8870416,3.8401327,53.61,51.1,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,246,540094.94,88494.414,457050.16,0,2407.8252 -2944,3637,6498,6499,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1125259,8.9075184,0,5,-6,-17.887947,0,-9,-9,2019,5,0,55,55,1,0,0,16.538591,16.538591,0,0,0,0,0,0,0,0,0,0,57.49,39.89,59.31,49.81,8.333333333333334,1,1,0,0,3,10,5,1,616,3236180.5,1101465.6,720821.25,0,6092.1973 -2944,3637,6499,6498,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.6570101,9.4995089,0,5,6,35.759491,0,2,2,2019,8,0,57,50,1,0,0,27.362171,27.362171,0,0,0,0,0,0,0,0,4.4740667,0,59.31,49.81,57.49,39.89,10,1,1,0,0,9,10,5,1,616,3236180.5,1101465.6,720821.25,0,6092.1973 -2945,3638,6500,6501,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.5497136,7.2594194,0,7,-5,-65.416969,0,2,2,2019,7,0,30,27,1,0,0,7.3564496,7.3564496,0,0,0,0,0,0,0,0,0,0,60.13,49.27,36.34,53.7,8.333333333333334,1,1,0,0,8,12,5,1,264.5,1203582.6,1241467.3,157794.2,0,3227.9214 -2945,3638,6501,6500,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5093822,8.9038515,6.3791471,7,5,-122.4201,0,3,3,2019,13,2,46,46,1,2,0,10.79551,10.79551,0,0,0,0,0,0,0,0,0,6.610013,36.34,53.7,60.13,49.27,6.666666666666667,1,1,0,0,8,12,5,1,264.5,1203582.6,1241467.3,157794.2,0,3227.9214 -2945,3639,6502,-9,6500,6501,1,0,25,0,0,0,1,1,-9,0,5,7.4381328,7.6930804,0,0,0,-1016.6633,0,1,2,2019,8,0,27,30,1,0,1,6.6403332,6.6403332,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,8,12,3,1,166,-70862.766,81330.883,0,0,1149.7664 -2946,3640,6503,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.4777722,5.8791327,0,0,-1080.4865,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,2.5413527,3.7321069,21.492098,0,1,1,0,0,5.9428439,63.98,22.02,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,678,109376.33,27706.141,0,0,1165.1489 -2947,3641,6504,6505,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.3459148,8.2823448,0,9,-12,-44.572845,0,2,-9,2019,8,0,37,38,1,0,0,13.014128,13.014128,0,0,0,0,0,0,0,0,0,0,54.2,57.49,24.36,59.2,1.666666666666667,1,1,0,0,11,12,5,1,1065,256634.41,197452.48,181119.97,40713.281,3597.2544 -2947,3641,6505,6504,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.7817421,8.6875124,0,9,12,-27.017517,0,-9,-9,2019,26,11,38,35,1,11,0,15.1966,15.1966,0,0,0,0,14.5,0,0,0,0,0,24.36,59.2,54.2,57.49,6.666666666666667,1,1,0,0,11,12,5,1,1065,256634.41,197452.48,181119.97,40713.281,3597.2544 -2948,3642,6506,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.8134933,7.7442141,0,0,0,-1071.7808,0,-9,-9,2019,11,0,38,39,1,0,0,9.2155466,9.2155466,0,0,0,0,0,0,0,0,0,0,41.61,52.41,-9,-9,6.666666666666667,1,1,0,0,11,2,4,0,195,131012.02,275966.31,79729.148,0,913.69983 -2949,3643,6507,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.9579659,8.7184963,6.3199224,0,0,-951.22986,0,3,-9,2019,27,11,33,45,1,11,0,31.47381,31.47381,0,0,0,0,71.5,1,1,0,7.0012779,0,31.28,47.74,-9,-9,3.333333333333333,3,4,0,0,9,6,5,1,271.5,376097.88,508390.31,142236.13,76749.844,3011.2266 -2949,3643,6508,-9,6507,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1110.3877,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,6,5,1,271.5,376097.88,508390.31,142236.13,76749.844,3011.2266 -2950,3644,6509,6510,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,8.3789091,8.7479343,5.1384339,28,-4,-72.070663,0,3,3,2019,12,0,70,100,1,0,0,6.0141931,6.0141931,0,0,0,0,0,0,0,0,5.4423118,5.4003148,62.39,56.71,51.78,53.03,5,1,1,0,0,8,5,4,1,532.5,1421895.5,1046587,187667.38,0,2063.293 -2950,3644,6510,6509,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.8827929,7.1125574,0,27,4,106.35644,0,3,3,2019,12,0,32,30,1,0,0,4.5253353,4.5253353,0,0,0,0,0,0,0,0,0,0,51.78,53.03,62.39,56.71,1.666666666666667,1,1,0,0,5,5,4,1,532.5,1421895.5,1046587,187667.38,0,2063.293 -2951,3645,6511,6512,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.1435986,8.1354628,0,3,0,128.32426,-9,-9,-9,2019,14,2,38,0,1,2,0,9.5614443,9.5614443,0,0,0,0,0,1,1,0,0,0,46.32,53.44,54.77,55.87,3.333333333333333,1,1,0,0,2,2,4,1,2798.5,1303301.8,890759.19,226205.38,16049.5,2802.5027 -2951,3645,6512,6511,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.1730986,7.1329288,3,9,-69.040718,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9268696,7.2438865,54.77,55.87,46.32,53.44,5,1,1,0,0,8,2,4,1,2798.5,1303301.8,890759.19,226205.38,16049.5,2802.5027 -2951,3646,6513,-9,6511,6512,1,1,21,0,0,1,2,0,-9,0,5,0,6.5535088,6.4889503,0,0,-972.35559,-9,2,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,6.601727,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,407,312172.72,0,0,0,687.43884 -2952,3647,6514,6515,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,8,4,83.383354,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.59359372,0,57.33,53.46,46.52,45.04,8.333333333333334,1,1,0,0,6,5,5,1,699.5,2753594,1973910.5,370192.44,0,4997.6396 -2952,3647,6515,6514,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.1880779,9.2605829,0,8,-4,6.3848419,0,3,3,2019,10,0,90,60,1,0,0,13.770748,13.770748,0,0,0,0,2,1,1,0,1.9238209,0,46.52,45.04,57.33,53.46,6.666666666666667,1,1,0,0,9,5,5,1,699.5,2753594,1973910.5,370192.44,0,4997.6396 -2953,3648,6516,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.5686016,8.7389669,0,0,0,-943.23499,0,2,2,2019,6,0,72,53,1,0,0,8.7838707,8.7838707,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,657,628015.38,725926.75,98858.516,89005.852,1486.4014 -2954,3649,6517,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,5,8.2081566,8.2402563,0,0,0,-989.87891,0,-9,-9,2019,8,1,15,50,1,1,0,22.530739,22.530739,0,0,0,0,0,1,1,0,0,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,1,6,12,4,0,913,516754.19,120322.42,151117.14,0,1616.6814 -2954,3649,6518,-9,6517,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.3369,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,913,516754.19,120322.42,151117.14,0,1616.6814 -2955,3650,6519,-9,6520,6521,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.7822,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1056,-61742.652,-16586.688,131140.33,95000.5,2461.8765 -2955,3650,6520,6521,-9,-9,1,0,34,1,1,0,2,2,-9,0,3,0,0,0,4,-2,68.910774,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.2419419,0,52.99,51.28,50,57,6.666666666666667,1,1,0,0,9,2,3,1,1056,-61742.652,-16586.688,131140.33,95000.5,2461.8765 -2955,3650,6521,6520,-9,-9,1,1,36,1,1,0,3,3,-9,0,4,7.982986,8.0832481,0,4,2,-139.61398,0,-9,-9,2019,10,0,40,40,1,1,0,6.750381,6.750381,0,0,0,0,0,1,1,0,0,0,50,57,52.99,51.28,7,4,1,0,0,1,2,3,1,1056,-61742.652,-16586.688,131140.33,95000.5,2461.8765 -2956,3651,6522,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,7.8441057,8.2241411,0,0,-890.92163,0,3,2,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,0,8.501235,50.7,54.06,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,167,1140217.9,843058.44,245737.17,0,2349.8862 -2957,3652,6523,6524,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.6457348,8.5037813,0,6,7,-138.658,0,1,2,2019,6,0,36,36,1,0,0,19.568237,19.568237,0,0,0,0,0,1,1,0,9.0898819,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 -2957,3652,6524,6523,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,8.2626762,8.133707,0,11,-7,-17.078569,0,2,2,2019,4,0,35,37,1,0,0,12.163128,12.163128,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,6.666666666666667,1,1,0,0,9,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 -2957,3652,6525,-9,6524,6523,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.33453,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 -2957,3652,6526,-9,6524,6523,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.68823,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1034.75,383669.5,122962.09,196026.14,59864.578,6413.209 -2958,3653,6527,-9,6530,6528,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.52777,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 -2958,3653,6528,6530,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.1220045,7.610424,0,8,-5,10.152933,0,-9,-9,2019,7,0,38,40,1,0,0,8.4447556,8.4447556,0,0,0,0,0,1,1,0,0,0,57.33,53.46,48.97,46.36,6.666666666666667,3,4,0,0,11,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 -2958,3653,6529,-9,6530,6528,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.5897,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 -2958,3653,6530,6528,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.1364918,8.2019806,0,8,5,63.223026,0,-9,-9,2019,8,1,24,26,1,1,0,16.167423,16.167423,0,0,0,0,0,1,1,0,0,0,48.97,46.36,57.33,53.46,8.333333333333334,1,1,0,0,11,2,4,1,623.75,67087.203,116439.52,0,0,3201.5852 -2959,3654,6531,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1107.2289,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,5.3976021,0,63.144817,0,1,1,0,0,0,41.26,19.44,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,187,-47876.203,0,0,0,1604.9058 -2960,3655,6532,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,7.5771127,7.9518657,0,0,-1118.4233,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8569865,54.2,57.49,-9,-9,10,1,1,0,0,6,9,4,1,1003,1326977.5,706318.5,540138.44,0,1149.1783 -2961,3656,6533,6534,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.66222,8.5046883,0,17,-1,129.57764,0,2,2,2019,20,8,60,30,1,8,0,11.498355,11.498355,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,41.3,60.77,3.333333333333333,1,1,0,0,9,8,5,1,165.66667,3525433.8,1714051.1,1006026.5,0,3471.6628 -2961,3656,6534,6533,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.4611359,9.275528,0,17,1,34.763557,0,2,2,2019,11,0,42,43,1,0,0,34.100632,34.100632,0,0,0,0,0,0,0,0,8.5483532,0,41.3,60.77,25.44,65.40000000000001,6.666666666666667,1,1,0,0,8,8,5,1,165.66667,3525433.8,1714051.1,1006026.5,0,3471.6628 -2961,3656,6535,-9,6533,6534,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.99017,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,165.66667,3525433.8,1714051.1,1006026.5,0,3471.6628 -2962,3657,6536,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-924.07532,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8027626,0,55.39,54.22,-9,-9,1.666666666666667,1,1,0,0,3,1,1,0,478,89587.961,0,0,0,626.13879 -2963,3658,6537,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,9.2006931,9.4201374,0,0,0,-1049.2222,-9,-9,-9,2019,21,9,43,0,1,9,0,23.538076,23.538076,0,0,0,0,0,0,0,0,1.0674654,0,42.08,37.35,-9,-9,8.333333333333334,2,3,0,0,5,8,5,0,2006,109532.33,-43081.113,0,0,3587.2815 -2964,3659,6538,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.7026486,7.7770309,0,0,0,-888.04541,0,3,3,2019,8,0,30,30,1,0,0,8.6688461,8.6688461,0,0,0,0,0,1,1,0,0,0,56.25,34.66,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,255,1111474.5,784475.75,231335.58,28941.732,773.29291 -2965,3660,6539,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,0,0,-954.76318,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,3,4,1,0,4,8,1,0,1540,54217.676,105805.6,0,0,130.20247 -2965,3661,6540,-9,6539,-9,1,0,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-890.56421,0,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,1,0,0,8,1,0,423,-184123.33,0,0,0,372.625 -2966,3662,6541,6542,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,6.1325378,5.8989763,48,-2,58.711559,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1872568,6.3305607,62.39,56.71,52,48,10,1,1,0,0,6,4,2,1,876,161470.84,145411.59,219638.89,0,3533.6914 -2966,3662,6542,6541,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.1107111,5.8675976,8,2,82.222336,0,-9,-9,2019,10,0,0,20,4,1,0,0,0,0,0,0,0,0,1,1,0,7.9160357,6.0784531,52,48,62.39,56.71,7,1,1,0,0,0,4,2,1,876,161470.84,145411.59,219638.89,0,3533.6914 -2966,3663,6543,-9,6541,6542,1,1,32,0,0,0,1,1,-9,0,4,8.260601,8.1085615,0,0,0,-1025.8976,0,3,2,2019,10,0,35,35,1,1,0,15.127288,15.127288,0,0,0,0,0,1,1,0,5.372263,0,50,57,-9,-9,7,1,1,0,0,1,4,4,1,447,86597.938,-58722.43,103629.58,67123.094,1412.6528 -2967,3664,6544,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,2,0,0,0,0,0,-941.70715,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,2.9699731,0,0,0,1,1,0,5.5740738,0,43.57,25.04,-9,-9,8.333333333333334,3,4,0,0,0,9,1,1,425,611979.06,0,732459.56,0,961.43988 -2968,3665,6545,-9,6549,-9,1,1,17,0,4,1,3,0,0,0,3,0,0,0,0,0,-1048.5573,-9,3,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,8,1,1,0,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 -2968,3665,6546,-9,6549,-9,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.3596,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 -2968,3665,6547,-9,6549,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1065.3268,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 -2968,3665,6548,-9,6549,-9,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1131.9397,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 -2968,3665,6549,-9,-9,-9,1,0,42,0,4,0,3,3,-9,1,2,0,0,0,0,0,-1028.2484,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,61.83,26.01,-9,-9,6.666666666666667,3,4,0,1,0,8,1,0,850,-180438.48,0,0,0,2725.3035 -2968,3665,6550,-9,6549,-9,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-980.38666,-9,3,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,1,0,850,-180438.48,0,0,0,2725.3035 -2968,3666,6551,-9,6549,-9,1,0,19,0,4,0,2,2,-9,0,2,0,0,0,0,0,-920.81964,0,3,-9,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,19.22,44.29,-9,-9,0,3,4,1,1,0,8,1,0,2851,-73930.242,0,0,0,0 -2969,3667,6552,-9,6555,6554,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.1954,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 -2969,3667,6553,-9,6555,6554,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.9192,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 -2969,3667,6554,6555,-9,-9,1,1,48,0,3,0,2,2,-9,1,2,0,0,0,13,13,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.84,25.91,46.2,43.53,5,1,1,0,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 -2969,3667,6555,6554,-9,-9,1,0,35,0,3,0,2,2,-9,1,3,0,0,0,14,-13,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.2,43.53,53.84,25.91,5,1,1,0,0,2,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 -2969,3667,6556,-9,6555,6554,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.00031,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,626.20001,-130583.34,-49037.73,0,0,2336.5942 -2970,3668,6557,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1037.6154,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.45,38.68,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,727,0,0,0,0,1397.3411 -2971,3669,6558,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1119.6895,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,7,1,0,1033,-291600.28,0,0,0,2085.136 -2972,3670,6559,6560,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,0,0,0,8,-14,5.5799437,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.4126644,0,51.73,58.82,40.16,59.89,6.666666666666667,1,1,0,0,1,7,2,1,864,1991329,628510.38,364396.78,0,2370.3115 -2972,3670,6560,6559,-9,-9,1,1,63,0,1,0,2,2,-9,0,3,7.6865411,7.8254962,0,8,14,-100.20547,0,-9,-9,2019,21,9,40,50,1,9,0,7.2272959,7.2272959,0,0,0,0,0,1,1,0,6.9819694,0,40.16,59.89,51.73,58.82,5,1,1,0,0,11,7,2,1,864,1991329,628510.38,364396.78,0,2370.3115 -2972,3671,6561,-9,6559,6560,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-935.0365,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,7,1,1,1896,199259.44,0,0,0,0 -2973,3672,6562,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.2730575,6.9556332,0,0,-991.71918,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.47597727,7.0868526,45.67,39,-9,-9,5,1,1,0,0,0,12,3,1,2039,394298.25,74863.953,193156.63,0,821.90637 -2974,3673,6563,6564,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,28,-18,118.73904,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.0834856,0,57.16,56.15,51.13,53.41,8.333333333333334,1,1,0,0,3,9,3,1,685,1005214.1,295250.97,640458.31,0,2930.5618 -2974,3673,6564,6563,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.931458,7.9074836,28,18,106.82453,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6727402,7.9788728,51.13,53.41,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,685,1005214.1,295250.97,640458.31,0,2930.5618 -2974,3674,6565,-9,6563,6564,1,1,25,0,0,0,1,1,-9,0,5,8.4755602,8.4501238,0,0,0,-972.94153,0,2,2,2019,7,0,50,38,1,0,0,10.746759,10.746759,0,0,0,0,0,1,1,0,4.7722573,0,55.21,55.89,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,984,208342.53,-23366.906,0,0,1551.7491 -2975,3675,6566,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.5595617,7.5984855,0,0,0,-941.00684,0,1,1,2019,5,0,23,24,1,0,0,10.530949,10.530949,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,4,3,0,891,184196.42,0,0,0,445.63858 -2976,3676,6567,6568,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.5791559,8.6252737,0,37,2,12.590829,0,2,2,2019,12,1,47,50,1,1,0,13.811106,13.811106,0,0,0,0,0,0,0,0,5.7063832,0,39.99,62.58,52,54.51,5,1,1,0,0,7,5,5,1,592.5,869661.38,712619.63,156429.63,74258.813,2849.293 -2976,3676,6568,6567,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.7980552,7.2313704,0,30,-2,43.603649,0,2,2,2019,6,0,24,15,1,0,0,5.5768027,5.5768027,0,0,0,0,0,0,0,0,2.1778133,0,52,54.51,39.99,62.58,8.333333333333334,1,1,0,0,11,5,5,1,592.5,869661.38,712619.63,156429.63,74258.813,2849.293 -2977,3677,6569,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-987.3446,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,27.6,25.64,-9,-9,3.333333333333333,1,1,0,0,2,6,1,0,340,-176255.22,0,0,0,780.4447 -2978,3678,6570,6572,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,1.8646036,1.32423,0,10,2,56.165665,0,-9,-9,2019,11,0,40,45,1,0,0,.014673206,.014673206,0,0,0,0,0,1,1,0,.069786072,0,53.75,49.75,33.49,64.26000000000001,8.333333333333334,1,1,0,1,12,10,2,1,566,44708.992,167744.69,323335.56,102778.34,799.95471 -2978,3678,6571,-9,6572,6570,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-946.88037,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,10,2,1,566,44708.992,167744.69,323335.56,102778.34,799.95471 -2978,3678,6572,6570,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.2745814,7.344295,0,23,-2,-21.439953,0,-9,-9,2019,12,0,24,14,1,0,0,7.3376369,7.3376369,0,0,0,0,0,1,1,0,1.4014037,0,33.49,64.26000000000001,53.75,49.75,8.333333333333334,1,1,0,1,12,10,2,1,566,44708.992,167744.69,323335.56,102778.34,799.95471 -2978,3679,6573,-9,6572,6570,1,0,18,0,1,0,2,2,-9,0,4,7.0771389,7.1790371,0,0,0,-946.7005,0,2,3,2019,12,0,21,0,1,2,1,6.5681453,6.5681453,0,0,0,0,0,1,1,0,0,0,35.8,57.89,-9,-9,6,1,1,0,0,1,10,2,1,474,55921.285,-41498.707,0,0,582.70728 -2979,3680,6574,6575,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.5424585,8.5635452,0,6,0,-41.031548,0,-9,-9,2019,11,0,24,37,1,1,0,28.863159,28.863159,0,0,0,0,0,1,1,0,0,0,50,55,38.24,63.73,7,1,1,0,0,1,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 -2979,3680,6575,6574,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,8.6698694,8.6889029,0,12,0,-135.13625,0,2,2,2019,20,8,40,45,1,8,0,18.678865,18.678865,0,0,0,0,0,1,1,0,0,0,38.24,63.73,50,55,6.666666666666667,1,1,0,0,7,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 -2979,3680,6576,-9,6574,6575,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.20435,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 -2979,3680,6577,-9,6574,6575,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.7201,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,510.5,398082.06,24195.012,398612.88,225907.25,4854.624 -2980,3681,6578,6579,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,5.905479,6.1437135,0,11,7,52.734802,0,2,2,2019,7,0,4,3,1,0,0,10.955191,10.955191,0,0,0,0,0,0,0,0,9.2186413,0,55.96,49.93,59.43,58.05,10,1,1,0,0,8,9,2,1,439,1178739,464290,432839.94,0,1040.3973 -2980,3681,6579,6578,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.0185132,6.72053,11,-7,-13.269782,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.4233341,7.4693246,59.43,58.05,55.96,49.93,0,1,1,0,0,6,9,2,1,439,1178739,464290,432839.94,0,1040.3973 -2981,3682,6580,6582,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.6836605,7.4806442,0,6,5,-36.496086,0,2,3,2019,13,1,27,23,1,1,0,8.1452274,8.1452274,0,0,0,0,0,1,1,0,0,0,53.39,50.01,51,57,5,1,1,0,0,9,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 -2981,3682,6581,-9,6580,6582,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.11432,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 -2981,3682,6582,6580,-9,-9,1,1,33,0,3,0,2,2,-9,0,4,7.8787818,7.7449722,0,6,-5,27.860373,0,-9,-9,2019,10,0,45,37,1,1,0,7.9149036,7.9149036,0,0,0,0,0,1,1,0,2.1663659,0,51,57,53.39,50.01,7,1,1,0,0,1,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 -2981,3682,6583,-9,6580,6582,1,0,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-866.20953,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 -2981,3682,6584,-9,6580,6582,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1001.7642,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,3,0,1540.6,13418.053,25775.182,147127.02,101116.01,2295.2078 -2982,3683,6585,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-943.8158,0,3,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,291,449588.38,0,88048.313,0,1243.2633 -2983,3684,6586,6587,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,10.010508,10.091842,6,4,131.38698,0,2,1,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.4624033,9.7544174,54.22,39.67,57.33,53.46,8.333333333333334,1,1,0,0,0,13,5,1,1619,5145467,1364075.9,733494.06,0,11155.551 -2983,3684,6587,6586,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,6,-4,90.650406,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.22,39.67,8.333333333333334,1,1,0,0,0,13,5,1,1619,5145467,1364075.9,733494.06,0,11155.551 -2984,3685,6588,6589,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,8.2712173,7.7821589,41,1,-59.875717,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4813547,7.6682801,59.14,46.97,55.77,47.78,8.333333333333334,1,1,0,0,5,9,4,1,427,1621802.3,513827.66,482186.88,0,3501.4341 -2984,3685,6589,6588,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.1074867,7.9026885,41,-1,-26.209494,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5374427,8.252326,55.77,47.78,59.14,46.97,8.333333333333334,1,1,0,0,4,9,4,1,427,1621802.3,513827.66,482186.88,0,3501.4341 -2985,3686,6590,6591,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.4377227,7.3614497,0,8,-2,185.7392,0,3,2,2019,12,1,24,24,1,1,0,7.0000162,7.0000162,0,0,0,0,14.5,1,1,0,.25449055,0,46.44,59.62,46.08,57.2,8.333333333333334,1,1,0,0,8,7,5,1,1050.3334,1447241.3,303050.56,681592.69,109272.64,3950.1777 -2985,3686,6591,6590,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.0451126,9.3310776,0,8,2,8.3937693,0,3,3,2019,16,5,43,43,1,5,0,28.660961,28.660961,0,0,0,0,2,1,1,0,2.8275018,0,46.08,57.2,46.44,59.62,3.333333333333333,1,1,0,0,8,7,5,1,1050.3334,1447241.3,303050.56,681592.69,109272.64,3950.1777 -2985,3686,6592,-9,6590,6591,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.4786,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,1050.3334,1447241.3,303050.56,681592.69,109272.64,3950.1777 -2985,3687,6593,-9,6590,6591,1,1,19,0,1,1,2,0,0,0,4,0,6.8411012,6.6939855,0,0,-1002.6121,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,6.4134684,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,1013,-103585.88,0,0,0,265.33807 -2986,3688,6594,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-982.53766,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.36,50.58,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,2877,111850.79,0,85072.836,0,1201.7861 -2986,3689,6595,6596,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.2843962,8.0407686,0,1,-11,-109.48916,-9,-9,-9,2019,12,1,42,0,1,1,0,12.902554,12.902554,0,0,0,0,0,1,1,0,0,0,36.14,57.86,57.33,53.46,6.666666666666667,1,1,0,0,1,10,5,1,1378,653695.25,554628.25,277923.84,0,3193.6472 -2986,3689,6596,6595,6594,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1437693,8.6137276,0,1,11,-79.158417,0,2,2,2019,12,0,42,40,1,0,0,9.973074,9.973074,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.14,57.86,8.333333333333334,1,1,0,0,11,10,5,1,1378,653695.25,554628.25,277923.84,0,3193.6472 -2987,3690,6597,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,6.3346963,6.8734851,0,0,0,-1072.752,0,2,2,2019,18,6,16,16,1,6,0,5.7997236,5.7997236,0,0,0,0,0,1,1,0,0,0,35.11,41.93,-9,-9,6.666666666666667,1,1,0,0,6,12,2,0,251,1996.6289,38456.695,0,0,1197.2874 -2987,3690,6598,-9,6597,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1072.7189,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,2,0,251,1996.6289,38456.695,0,0,1197.2874 -2988,3691,6599,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,1,0,5.0001698,5.0926161,0,0,-1072.5922,0,3,3,2019,24,10,0,0,4,10,0,0,0,1,0,6.5137134,0,0,1,1,0,3.2950268,5.2542901,30.85,17.26,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,398,91900.078,9588.5625,0,0,870.62982 -2989,3692,6600,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1177063,8.2194843,0,0,0,-1081.03,-9,2,1,2019,8,0,48,0,1,0,0,11.038234,11.038234,0,0,0,0,0,0,0,0,1.2726244,0,52.88,56.68,-9,-9,6.666666666666667,3,4,0,0,10,9,4,1,206,85303.344,187718.84,147536.8,91096.82,769.66339 -2990,3693,6601,6602,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,37,12,96.815048,0,2,3,2019,9,1,0,0,4,1,0,0,0,1,0,27.204439,0,0,1,1,0,0,0,56.17,22.37,33.65,30.38,5,1,1,0,0,0,9,2,0,331,50454.465,0,0,0,2541.4382 -2990,3693,6602,6601,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,6.9406285,7.1133962,37,-12,162.1993,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.9907866,33.65,30.38,56.17,22.37,5,1,1,0,0,8,9,2,0,331,50454.465,0,0,0,2541.4382 -2991,3694,6603,6604,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.2344217,7.2905383,3,12,46.318813,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2895088,7.1983128,42.84,41.15,57.6,46.44,8.333333333333334,1,1,0,0,0,7,3,1,1089.5,895813.25,159860.33,402596.56,86180.844,2505.3179 -2991,3694,6604,6603,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.5824003,6.4819503,0,3,-12,-32.342403,0,-9,-9,2019,7,0,12,16,1,0,0,6.3723717,6.3723717,0,0,0,0,0,1,1,0,7.4978294,0,57.6,46.44,42.84,41.15,8.333333333333334,1,1,0,0,6,7,3,1,1089.5,895813.25,159860.33,402596.56,86180.844,2505.3179 -2992,3695,6605,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1013.1323,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.29,34.48,-9,-9,8.333333333333334,1,1,0,0,4,7,1,0,62,-214994.02,0,0,0,0 -2993,3696,6606,6609,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.7930813,8.8123856,0,8,-8,58.064846,0,1,2,2019,8,0,39,0,1,0,0,18.809551,18.809551,0,0,0,0,0,1,1,0,0,0,60.29,52.11,36.79,56.27,10,1,1,0,0,7,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 -2993,3696,6607,-9,6606,6609,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0347,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 -2993,3696,6608,-9,6606,6609,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.96021,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 -2993,3696,6609,6606,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,6.1091962,5.9082112,0,8,8,16.918194,0,-9,3,2019,15,3,40,40,1,3,0,1.4169458,1.4169458,0,0,0,0,0,1,1,0,0,0,36.79,56.27,60.29,52.11,3.333333333333333,1,1,0,1,9,12,4,0,1249,796505.13,713701.69,165570.02,73515.195,4386.1211 -2994,3697,6610,6611,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.3742809,5.2949629,50,-1,42.922634,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0401325,59.65,34.05,62.03,36.18,8.333333333333334,1,1,0,0,6,2,2,1,682,951922.25,447478,215052.78,0,1864.4202 -2994,3697,6611,6610,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.9893212,6.9822845,50,1,61.857365,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0992889,62.03,36.18,59.65,34.05,8.333333333333334,1,1,0,0,6,2,2,1,682,951922.25,447478,215052.78,0,1864.4202 -2995,3698,6612,6613,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.9424806,7.1122971,35,0,-142.51122,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.0055695,7.1458812,55.36,51.57,57.06,57.76,8.333333333333334,1,1,0,0,0,4,3,1,911.5,851622.25,434126,279094.13,0,2171.2188 -2995,3698,6613,6612,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,7.7776546,7.66505,35,0,-136.19455,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2698052,8.0180254,57.06,57.76,55.36,51.57,8.333333333333334,1,1,0,0,0,4,3,1,911.5,851622.25,434126,279094.13,0,2171.2188 -2995,3699,6614,-9,6612,6613,1,0,44,0,0,0,2,2,-9,0,4,7.5302811,7.4879799,0,0,0,-1008.8989,0,2,2,2019,5,0,40,48,1,0,0,8.0197296,8.0197296,0,0,0,0,0,1,1,0,5.9244299,0,56.14,41.52,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,345,434599.88,27121.908,0,0,1279.5192 -2996,3700,6615,-9,6616,6617,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.10834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,384.33334,285789.84,10372.626,265413.44,130252.67,4479.438 -2996,3700,6616,6617,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.8015475,8.1751938,0,16,-5,19.902142,0,3,3,2019,20,7,38,38,1,7,0,12.572639,12.572639,0,0,0,0,0,1,1,0,0,0,20.28,63.76,33.43,53.68,3.333333333333333,2,3,0,0,12,6,5,1,384.33334,285789.84,10372.626,265413.44,130252.67,4479.438 -2996,3700,6617,6616,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9830685,8.9392567,0,16,5,13.528871,0,3,3,2019,13,2,55,60,1,2,0,13.92869,13.92869,0,0,0,0,7,1,1,0,4.3678827,0,33.43,53.68,20.28,63.76,3.333333333333333,2,3,0,0,10,6,5,1,384.33334,285789.84,10372.626,265413.44,130252.67,4479.438 -2997,3701,6618,6619,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.2976952,7.0996065,0,7,3,16.66724,0,3,3,2019,18,6,15,16,1,6,0,11.200292,11.200292,0,0,0,0,0,0,0,0,0,0,40.16,51.86,36.79,56.27,6.666666666666667,1,1,0,0,8,5,3,1,872.5,-39046.172,76333.492,90400.078,0,2094.9146 -2997,3701,6619,6618,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.8261342,7.6122994,0,7,-3,37.354725,0,-9,-9,2019,12,0,40,60,1,0,0,7.3416662,7.3416662,0,0,0,0,0,0,0,0,0,0,36.79,56.27,40.16,51.86,8.333333333333334,1,1,0,0,6,5,3,1,872.5,-39046.172,76333.492,90400.078,0,2094.9146 -2998,3702,6620,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.0642443,6.8521919,0,0,0,-1044.4169,0,2,-9,2019,12,0,14,25,1,0,0,8.266181,8.266181,0,0,0,0,2,0,0,0,6.9835525,0,55.69,40.48,-9,-9,5,1,1,0,0,10,10,2,1,458,294196.78,0,0,0,1154.333 -2999,3703,6621,6622,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.3044267,5.0497851,55,0,-11.198586,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3985014,4.647337,49.76,55.68,56.41,41.74,8.333333333333334,1,1,0,0,0,6,3,1,400.5,750705.13,512479,145927.7,0,2024.2527 -2999,3703,6622,6621,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,8.1012335,7.8250351,55,0,1.9145322,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6911256,7.8886709,56.41,41.74,49.76,55.68,10,1,1,0,0,0,6,3,1,400.5,750705.13,512479,145927.7,0,2024.2527 -3000,3704,6623,6624,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,10,0,14.132813,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,2,1,1,0,6.8940549,0,49.5,46.08,39.52,46.83,8.333333333333334,1,1,0,0,0,7,3,1,205.5,2265844.3,1386190,571570.56,0,3540.7007 -3000,3704,6624,6623,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9483023,7.6986403,10,0,-64.844818,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,1.133129,7.9366817,39.52,46.83,49.5,46.08,3.333333333333333,1,1,0,0,5,7,3,1,205.5,2265844.3,1386190,571570.56,0,3540.7007 -3001,3705,6625,6626,-9,-9,1,0,22,0,0,0,1,1,1,1,2,0,0,0,1,-4,0,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.52,44.17,42.64,30.78,5,1,1,1,0,0,11,1,0,1147.5,234770.78,0,149187.91,0,1085.4973 -3001,3705,6626,6625,-9,-9,1,1,26,0,0,0,2,2,-9,1,2,0,0,0,1,4,0,-9,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.64,30.78,46.52,44.17,3.333333333333333,1,1,0,0,0,11,1,0,1147.5,234770.78,0,149187.91,0,1085.4973 -3002,3706,6627,6628,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.3695602,9.322669,0,31,1,-58.611282,0,2,2,2019,11,0,50,40,1,0,0,28.724937,28.724937,0,0,0,0,0,0,0,0,3.6521823,0,43.42,62.33,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,537.5,1491117.5,1473550.9,114097.48,77619.117,3565.9067 -3002,3706,6628,6627,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,31,-1,-12.324914,0,1,3,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,2.9890909,0,57.06,57.76,43.42,62.33,8.333333333333334,1,1,0,0,9,2,5,1,537.5,1491117.5,1473550.9,114097.48,77619.117,3565.9067 -3003,3707,6629,6631,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.5322738,7.606029,30,13,2.068845,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.049944721,7.1815739,54.37,54.8,42.78,50.88,8.333333333333334,1,1,0,0,9,7,5,1,603,1191150.9,298316.38,596702,0,2979.9358 -3003,3707,6630,-9,6631,6629,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.3742,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1.3184388,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,7,5,1,603,1191150.9,298316.38,596702,0,2979.9358 -3003,3707,6631,6629,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.6625509,8.7475805,0,32,-13,87.921852,0,2,2,2019,12,0,89,59,1,0,0,7.4548039,7.4548039,0,0,0,0,0,0,0,0,3.4308386,0,42.78,50.88,54.37,54.8,6.666666666666667,1,1,0,0,9,7,5,1,603,1191150.9,298316.38,596702,0,2979.9358 -3004,3708,6632,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,5.8721352,5.7051373,0,0,-1003.6154,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7158604,61.45,35.63,-9,-9,10,1,1,0,1,6,6,2,0,2329,-91997.875,126432.44,165601.92,0,579.91809 -3005,3709,6633,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.7535686,8.9791098,6.0936551,0,0,-955.05316,0,2,3,2019,6,0,40,42,1,0,0,21.875666,21.875666,0,0,0,0,0,0,0,0,5.9953976,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,1711,4454227,45904.75,747880.38,0,2854.4124 -3006,3710,6634,-9,6635,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.72217,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,355,32200.502,0,0,0,1214.8042 -3006,3710,6635,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,0,0,0,0,0,-953.60004,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,355,32200.502,0,0,0,1214.8042 -3006,3710,6636,-9,6635,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.979,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,355,32200.502,0,0,0,1214.8042 -3007,3711,6637,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,3.767884,3.7946432,0,0,-1027.5754,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6390767,55.43,45.88,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,304,52101.301,37171.988,169124.84,0,825.6189 -3008,3712,6638,6639,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2446508,8.3122435,0,9,-2,48.087963,0,-9,-9,2019,7,0,29,29,1,0,0,14.708535,14.708535,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,1237.5,762154.69,447599.56,259872.52,65347.672,2302.6519 -3008,3712,6639,6638,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.4422588,7.5460863,0,9,2,-7.2774868,0,3,3,2019,6,0,42,46,1,0,0,6.5861197,6.5861197,0,0,0,0,0,0,0,0,1.87517,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,10,5,4,1,1237.5,762154.69,447599.56,259872.52,65347.672,2302.6519 -3009,3713,6640,6641,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.9633026,7.0339961,50,0,-88.180153,0,2,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.9547906,57.92,29.88,38.39,48.48,6.666666666666667,1,1,0,0,0,2,2,1,570.5,206149.84,28407.793,173701.53,0,960.03296 -3009,3713,6641,6640,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,50,0,-77.739922,0,-9,-9,2019,20,9,0,0,4,9,0,0,0,0,0,3.3820727,0,0,1,1,0,3.8098826,0,38.39,48.48,57.92,29.88,8.333333333333334,1,1,0,0,0,2,2,1,570.5,206149.84,28407.793,173701.53,0,960.03296 -3010,3714,6642,6643,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.9840479,8.8676004,8,-1,5.3033791,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7601761,9.023488,54.1,59.11,52.24,50.75,8.333333333333334,1,1,0,0,0,12,5,1,764.5,1359255.9,1127054.3,304441.75,38691.051,6285.833 -3010,3714,6643,6642,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.0908461,8.305768,8,1,81.973412,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1225185,8.1470556,52.24,50.75,54.1,59.11,8.333333333333334,1,1,0,0,0,12,5,1,764.5,1359255.9,1127054.3,304441.75,38691.051,6285.833 -3011,3715,6644,6646,-9,-9,1,1,42,1,2,0,1,1,-9,0,3,8.3281755,8.0182934,0,13,5,4.2210608,0,2,2,2019,26,9,43,38,1,9,0,8.9266939,8.9266939,0,0,0,0,0,1,1,0,0,0,24.19,59.21,45.15,57.46,3.333333333333333,1,1,0,1,7,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 -3011,3715,6645,-9,6646,6644,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.66864,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 -3011,3715,6646,6644,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.7383528,8.8182459,0,9,-5,86.919594,0,2,2,2019,13,2,57,54,1,2,0,13.51757,13.51757,0,0,0,0,0,1,1,0,1.6008221,0,45.15,57.46,24.19,59.21,8.333333333333334,1,1,0,0,8,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 -3011,3715,6647,-9,6646,6644,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.83923,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,872,652169.13,408755.88,212272,136425.22,3236.188 -3012,3716,6648,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.7273464,8.5780916,0,0,0,-933.91577,0,3,-9,2019,6,0,42,43,1,0,0,19.377207,19.377207,0,0,0,0,0,0,0,0,0,0,56.92,49.39,-9,-9,10,1,1,0,0,7,11,5,1,177,-76547.242,0,0,0,2255.3572 -3013,3717,6649,6650,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.6408072,8.830965,0,25,-1,-92.677826,0,2,2,2019,9,0,48,48,1,0,0,13.252454,13.252454,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,10,1,1,0,0,7,5,5,1,4053.5,175505.14,28570.77,124368.09,89046.023,4601.0718 -3013,3717,6650,6649,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.7336149,8.7426662,0,25,1,-115.93511,0,2,3,2019,10,0,50,50,1,0,0,19.277206,19.277206,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,5,1,1,0,0,10,5,5,1,4053.5,175505.14,28570.77,124368.09,89046.023,4601.0718 -3014,3718,6651,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1009.1207,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.82,50.04,-9,-9,10,1,1,1,0,0,5,1,0,773,153011.28,0,0,0,744.31354 -3015,3719,6652,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.3542299,8.5153141,0,0,0,-1056.1729,0,2,2,2019,9,0,48,48,1,0,0,9.6361952,9.6361952,0,0,0,0,0,1,1,0,.49063733,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,9,4,5,0,198,191543.39,25894.295,0,0,1825.561 -3016,3720,6653,6654,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,5.76789,6.118474,10,7,-103.25954,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1027951,5.9736414,47.15,56.66,38.34,62.12,6.666666666666667,1,1,0,0,6,11,4,1,1499.5,825460.31,530325.63,120099.67,0,2988.6758 -3016,3720,6654,6653,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.5944386,8.43999,0,10,-7,-139.55447,0,2,2,2019,12,0,36,41,1,0,0,19.324051,19.324051,0,0,0,0,0,1,1,0,3.2773547,0,38.34,62.12,47.15,56.66,6.666666666666667,1,1,0,0,9,11,4,1,1499.5,825460.31,530325.63,120099.67,0,2988.6758 -3017,3721,6655,6656,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,6.9459605,7.3224611,0,36,-5,79.570099,0,3,2,2019,18,6,19,19,1,6,0,6.8303189,6.8303189,0,0,0,0,14.5,1,1,0,0,0,23.36,61.38,51.64,57.24,8.333333333333334,2,3,0,0,10,2,2,1,532.5,650672.75,118093.91,66359.539,0,-2122.6763 -3017,3721,6656,6655,6659,6660,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,36,5,-39.086288,0,3,2,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,57.24,23.36,61.38,8.333333333333334,2,3,0,0,10,2,2,1,532.5,650672.75,118093.91,66359.539,0,-2122.6763 -3017,3722,6657,-9,6655,6656,1,1,29,0,0,0,2,2,-9,0,3,7.8216004,7.8665919,0,0,0,-943.71869,0,2,2,2019,12,0,20,37,1,0,1,17.766663,17.766663,0,0,0,0,7,1,1,0,0,0,43.47,50.15,-9,-9,8.333333333333334,2,3,0,1,7,2,4,1,222,479054.5,0,0,0,1050.4951 -3017,3723,6658,-9,6655,6656,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1043.1306,1,2,1,2019,11,0,0,35,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,2,1,1,538,-51900.211,0,0,0,0 -3017,3724,6659,6660,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,5,1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,7.4040632,13.355265,64.522614,0,1,1,0,0,0,52,46,53.63,43.21,8,2,3,0,0,0,2,1,1,360,38568.324,-71465.828,179130.63,0,932.10638 -3017,3724,6660,6659,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,5,-1,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,73.56147,0,0,1,1,0,0,0,53.63,43.21,52,46,8.333333333333334,2,3,0,0,0,2,1,1,360,38568.324,-71465.828,179130.63,0,932.10638 -3018,3725,6661,-9,6663,6662,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1071.9197,-9,2,1,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,653.33331,947813.69,705799.5,220228.13,34105.957,2177.655 -3018,3725,6662,6663,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.8084641,9.0782146,0,24,3,94.901871,0,2,2,2019,18,7,85,50,1,7,0,11.101804,11.101804,0,0,0,0,0,1,1,0,2.1607466,0,27.25,48.04,27.23,44.5,1.666666666666667,1,1,0,1,9,6,5,1,653.33331,947813.69,705799.5,220228.13,34105.957,2177.655 -3018,3725,6663,6662,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,0,0,0,25,-3,42.297966,0,2,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,.11247746,0,27.23,44.5,27.25,48.04,1.666666666666667,1,1,0,1,0,6,5,1,653.33331,947813.69,705799.5,220228.13,34105.957,2177.655 -3019,3726,6664,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,6.690238,6.0626016,0,0,-1011.9774,0,-9,-9,2019,16,4,0,60,3,4,0,0,0,0,0,0,0,0,0,0,0,0,6.743577,38.85,61.86,-9,-9,8.333333333333334,1,1,1,1,7,10,2,1,355,815783.31,0,565055.25,0,518.51282 -3019,3727,6665,-9,-9,6664,1,1,21,0,0,0,2,2,-9,0,5,7.9082313,8.2186813,0,0,0,-1070.5522,0,-9,2,2019,8,0,40,40,1,0,1,7.978744,7.978744,0,0,0,0,0,0,0,0,.80533987,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,444,-296480.22,62113.141,0,0,2103.4744 -3020,3728,6666,-9,6667,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.55249,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,3,4,-9,0,0,4,1,0,1831,4739.9492,0,0,0,741.76111 -3020,3728,6667,-9,6668,6669,1,0,29,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1019.5895,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.37,42.43,-9,-9,6.666666666666667,4,2,0,0,0,4,1,0,1831,4739.9492,0,0,0,741.76111 -3020,3729,6668,6669,-9,-9,1,0,63,0,1,0,3,3,-9,0,3,0,0,0,6,-1,-160.06281,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,0,1,0,0,58.32,50.22,52,48,1.666666666666667,4,2,0,0,0,4,2,0,298.5,-49267.836,0,0,0,2109.7312 -3020,3729,6669,6668,-9,-9,1,1,64,0,1,0,3,3,-9,0,3,0,6.3950315,6.2936325,6,1,112.09941,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,0,1,0,6.4668417,52,48,58.32,50.22,7,3,4,0,0,0,4,2,0,298.5,-49267.836,0,0,0,2109.7312 -3021,3730,6670,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.8016572,7.3899102,0,0,0,-1093.1372,-9,3,3,2019,11,2,30,0,1,2,0,7.4892526,7.4892526,0,0,0,0,0,1,1,0,0,0,34.89,58.63,-9,-9,8.333333333333334,2,3,0,0,5,6,3,1,560,234719.55,568.47156,0,0,1544.0009 -3021,3731,6671,-9,6670,-9,1,0,19,0,1,0,2,2,-9,0,3,6.8688612,6.8360567,0,0,0,-899.59241,-9,2,-9,2019,7,0,20,0,1,0,1,6.3448858,6.3448858,0,0,0,0,0,1,1,0,0,0,58.02,42.12,-9,-9,10,2,3,0,0,0,6,2,1,1399,-209004.58,-83655.898,0,0,267.87903 -3022,3732,6672,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.8327966,5.7799783,0,0,-883.79517,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5984383,50.03,39.39,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,208,672078.38,122867.03,167985.53,0,585.513 -3023,3733,6673,6674,-9,-9,1,1,35,0,2,0,2,2,-9,0,2,8.5350485,8.4201355,0,2,5,25.870262,0,-9,-9,2019,18,6,40,40,1,6,0,14.666591,14.666591,0,0,0,0,0,1,1,0,0,0,35.68,40.97,46.33,50.4,6.666666666666667,2,3,0,1,9,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 -3023,3733,6674,6673,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,6.7712679,7.068531,0,2,-5,25.963165,0,2,2,2019,10,0,15,0,1,0,0,7.5801153,7.5801153,0,0,0,0,0,1,1,0,0,0,46.33,50.4,35.68,40.97,6.666666666666667,2,3,0,1,4,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 -3023,3733,6675,-9,6674,6673,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.21368,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 -3023,3733,6676,-9,6674,6673,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.2957,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,0,509,258522.94,61846.242,122483.43,59446.422,2939.5161 -3024,3734,6677,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5843306,6.4540257,0,0,-999.75165,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2069864,61.43,48.88,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,322,153638.53,136077.64,102220.67,0,373.61874 -3024,3735,6678,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,0,0,-987.45129,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.1883211,0,35.22,45.99,-9,-9,5,1,1,0,0,3,2,1,1,674,-16220.704,0,0,0,1355.2603 -3025,3736,6679,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,7.0933475,6.938416,0,0,0,-962.70502,0,2,2,2019,7,0,32,33,1,0,0,2.5984039,2.5984039,0,0,0,0,0,1,1,0,8.113349,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,190,92642.836,0,0,0,1791.9888 -3026,3737,6680,-9,6682,6681,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1037.9521,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,34.73,59.76,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,593,901118.75,84323.906,511578.31,18259.287,4534.7451 -3026,3737,6681,6682,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.6766386,9.1649504,0,21,4,6.2485571,0,2,3,2019,12,0,40,40,1,0,0,20.24193,20.24193,0,0,0,0,0,1,1,0,0,0,47.15,56.66,57.33,53.46,8.333333333333334,1,1,0,0,8,9,5,1,593,901118.75,84323.906,511578.31,18259.287,4534.7451 -3026,3737,6682,6681,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.05832,7.9500241,0,7,-4,-3.9907789,-9,-9,-9,2019,6,0,16,0,1,0,0,21.391323,21.391323,0,0,0,0,0,1,1,0,0,0,57.33,53.46,47.15,56.66,8.333333333333334,1,1,0,0,5,9,5,1,593,901118.75,84323.906,511578.31,18259.287,4534.7451 -3027,3738,6683,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.8400655,5.9385381,0,0,-967.45941,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.213511,5.7130604,43.09,54.67,-9,-9,5,1,1,0,0,0,1,2,1,556,137435.08,54391.164,0,0,578.66779 -3027,3739,6684,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,4,0,4.1727948,3.7563808,0,0,-981.00159,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,4.0547085,0,32.93,49.86,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1099,40058.613,0,0,0,505.46011 -3028,3740,6685,6688,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,.65307593,.69591266,0,5,3,26.213757,0,2,3,2019,10,0,90,55,1,0,0,.0020485134,.0020485134,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.58,51.2,8.333333333333334,1,1,0,0,9,13,3,1,812,347014.78,14567.62,0,0,1660.4685 -3028,3740,6686,-9,6688,6685,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1180.1239,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,812,347014.78,14567.62,0,0,1660.4685 -3028,3740,6687,-9,6688,6685,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9316,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,812,347014.78,14567.62,0,0,1660.4685 -3028,3740,6688,6685,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,7.983511,8.0899963,4.8982024,5,-3,32.3466,0,-9,-9,2019,12,1,35,30,1,1,0,11.315497,11.315497,0,0,0,0,0,1,1,0,5.6848016,0,44.58,51.2,57.16,56.15,8.333333333333334,1,1,0,0,10,13,3,1,812,347014.78,14567.62,0,0,1660.4685 -3029,3741,6689,-9,6691,6690,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.81165,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 -3029,3741,6690,6691,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,9.3841629,9.3399572,0,9,-2,6.1840072,0,-9,-9,2019,13,3,41,38,1,3,0,35.263203,35.263203,0,0,0,0,0,1,1,0,0,0,39.59,57.55,54.2,57.49,3.333333333333333,1,1,0,0,10,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 -3029,3741,6691,6690,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,0,0,0,9,2,19.598501,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.0098474538,0,54.2,57.49,39.59,57.55,8.333333333333334,1,1,0,0,4,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 -3029,3741,6692,-9,6691,6690,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0044,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1256.5,477452.25,0,299410.66,7861.4717,3618.4023 -3030,3742,6693,6694,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.4738674,8.6012287,45,2,-29.860867,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3369942,8.3642044,48.61,51.8,54.79,55.86,8.333333333333334,1,1,0,0,0,9,4,1,658.5,1102659,696366.63,274635.69,0,3261.5852 -3030,3742,6694,6693,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,45,-2,55.197289,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.933629,0,54.79,55.86,48.61,51.8,10,1,1,0,0,0,9,4,1,658.5,1102659,696366.63,274635.69,0,3261.5852 -3031,3743,6695,6696,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,4.3944221,4.1334844,4,-5,91.44165,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,4.2859282,23.29,22.11,58.47,50.22,8.333333333333334,1,1,0,0,0,1,2,1,322.5,846148.5,59070,325704.19,0,477.64798 -3031,3743,6696,6695,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,6.4775901,6.2247653,4,5,97.236122,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1999207,58.47,50.22,23.29,22.11,8.333333333333334,1,1,0,0,3,1,2,1,322.5,846148.5,59070,325704.19,0,477.64798 -3032,3744,6697,-9,6700,6699,1,1,29,0,0,0,1,1,-9,0,5,8.3641796,8.269474,0,0,0,-914.89014,0,2,2,2019,11,0,45,45,1,0,1,12.157947,12.157947,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,6,6,4,1,2296,239612.48,-28839.797,0,0,2028.8695 -3032,3745,6698,-9,6700,6699,1,1,25,0,0,0,2,2,1,0,3,8.0613747,8.2459335,0,0,0,-860.24127,-9,3,3,2019,12,0,35,0,1,0,1,13.47674,13.47674,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,2,3,0,0,1,6,4,1,669,184017.69,98562.688,0,0,1496.1329 -3032,3746,6699,6700,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,41,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.38,39.16,52.24,43.31,8.333333333333334,2,3,0,0,5,6,1,1,879.5,0,0,0,0,404.70456 -3032,3746,6700,6699,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,41,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.255923,0,52.24,43.31,64.38,39.16,8.333333333333334,2,3,0,0,0,6,1,1,879.5,0,0,0,0,404.70456 -3033,3747,6701,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.7961874,9.2152634,5.3447576,0,0,-986.77557,0,3,2,2019,10,0,35,35,1,0,0,27.37994,27.37994,0,0,0,0,0,1,1,0,7.6120391,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,458,726172.69,520499.22,163227.06,28343.102,3080.7576 -3034,3748,6702,6704,-9,-9,1,1,44,0,1,0,2,2,-9,1,1,0,5.5605059,5.6546073,6,-1,10.936225,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.8285346,0,45.24,25.51,31.41,22.4,6.666666666666667,1,1,0,0,0,10,2,0,377,-182367.98,0,0,0,1356.9316 -3034,3748,6703,-9,6704,6702,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.31586,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,377,-182367.98,0,0,0,1356.9316 -3034,3748,6704,6702,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,6,1,36.025352,0,-9,-9,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.41,22.4,45.24,25.51,3.333333333333333,1,1,0,0,0,10,2,0,377,-182367.98,0,0,0,1356.9316 -3035,3749,6705,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.2265654,8.1882782,0,0,0,-1228.6405,0,-9,3,2019,9,0,40,40,1,0,0,10.15197,10.15197,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,5,1,1,0,0,10,6,4,1,602,-31135.58,17136.77,68044.969,0,1602.0067 -3036,3750,6706,6707,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.4882212,8.2938786,0,10,12,27.686337,0,2,2,2019,7,0,48,45,1,0,0,10.186011,10.186011,0,0,0,0,0,0,0,0,1.4334512,0,49.96,56.89,51.49,57.57,6.666666666666667,1,1,0,0,10,10,5,1,517.5,404814.88,170941.16,296569.34,100317.55,2761.5107 -3036,3750,6707,6706,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.8637061,7.8371592,0,10,-12,34.546284,0,3,2,2019,8,1,5,5,1,1,0,74.71933,74.71933,0,0,0,0,2,0,0,0,0,0,51.49,57.57,49.96,56.89,6.666666666666667,1,1,0,0,9,10,5,1,517.5,404814.88,170941.16,296569.34,100317.55,2761.5107 -3037,3751,6708,6709,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.1393414,8.2256317,0,30,0,-27.715965,0,2,2,2019,9,0,12,14,1,0,0,33.68589,33.68589,0,0,0,0,0,0,0,0,6.4195967,0,57.16,56.15,44.84,52.28,8.333333333333334,1,1,0,0,9,2,5,1,512.5,473889.31,286110.31,167717.25,50495.059,3336.3232 -3037,3751,6709,6708,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.182724,8.283658,0,30,9,19.323236,0,3,3,2019,11,1,35,45,1,1,0,14.446048,14.446048,0,0,0,0,0,0,0,0,4.8038497,0,44.84,52.28,57.16,56.15,6.666666666666667,1,1,0,0,7,2,5,1,512.5,473889.31,286110.31,167717.25,50495.059,3336.3232 -3038,3752,6710,6711,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,6.7893682,6.8620567,0,2,2,183.4256,0,2,-9,2019,15,3,14,0,1,3,0,7.2145681,7.2145681,0,0,0,0,0,0,0,0,0,0,34.89,36.4,44.86,37.2,8.333333333333334,2,3,0,0,1,2,2,1,1157,43411.684,-73313.391,0,0,644.78723 -3038,3752,6711,6710,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,6.7235088,6.3499289,0,2,-2,146.55638,0,-9,-9,2019,26,9,23,23,1,9,0,3.7217336,3.7217336,0,0,0,0,0,0,0,0,0,0,44.86,37.2,34.89,36.4,5,2,3,0,0,5,2,2,1,1157,43411.684,-73313.391,0,0,644.78723 -3039,3753,6712,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1044.4694,0,2,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.74,43.95,-9,-9,1.666666666666667,4,2,1,1,0,8,1,0,1001,0,0,0,0,1040.2389 -3039,3754,6713,-9,6712,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-999.18298,0,2,-9,2019,10,0,0,5,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,729,0,0,0,0,0 -3040,3755,6714,-9,6715,6716,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.64203,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,422.66666,609157.44,133798.22,466255.03,7249.0835,4555.375 -3040,3755,6715,6716,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,7.2152982,7.1841698,0,8,6,-155.4102,0,3,1,2019,11,0,15,16,1,0,0,9.2693338,9.2693338,0,0,0,0,0,0,0,0,0,0,51.02,52.22,18.05,64.93000000000001,8.333333333333334,1,1,0,0,9,9,5,1,422.66666,609157.44,133798.22,466255.03,7249.0835,4555.375 -3040,3755,6716,6715,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,9.3475065,9.0470009,0,8,-6,-18.576008,0,-9,-9,2019,23,8,50,50,1,8,0,29.772537,29.772537,0,0,0,0,0,0,0,0,0,0,18.05,64.93000000000001,51.02,52.22,3.333333333333333,1,1,0,0,10,9,5,1,422.66666,609157.44,133798.22,466255.03,7249.0835,4555.375 -3041,3756,6717,6718,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.0848875,7.8420634,0,4,-5,-30.663755,0,-9,-9,2019,11,0,37,37,1,2,0,9.3283195,9.3283195,0,0,0,0,0,0,0,0,0,0,46,58,51.49,57.57,7,1,1,0,0,1,2,4,1,552.5,330539.47,46401.09,106850.95,90762.047,2989.4761 -3041,3756,6718,6717,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,7.9903646,8.1144733,0,4,5,21.611652,0,2,2,2019,11,0,38,38,1,0,0,8.4021559,8.4021559,0,0,0,0,0,0,0,0,0,0,51.49,57.57,46,58,8.333333333333334,1,1,0,0,10,2,4,1,552.5,330539.47,46401.09,106850.95,90762.047,2989.4761 -3042,3757,6719,6721,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.6750183,8.4846821,0,6,6,-21.908648,0,2,2,2019,11,0,39,46,1,0,0,14.667871,14.667871,0,0,0,0,0,1,1,0,0,0,37.22,57.27,57.06,57.76,5,1,1,0,0,7,13,4,1,1110.3334,522550.59,306441.44,161486.56,154433.64,4463.7197 -3042,3757,6720,-9,6721,6719,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-895.70117,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.1,35.32,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,1110.3334,522550.59,306441.44,161486.56,154433.64,4463.7197 -3042,3757,6721,6719,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.3391142,8.6270227,0,6,-6,-23.529444,0,2,2,2019,8,0,38,38,1,0,0,13.049302,13.049302,0,0,0,0,0,1,1,0,7.6990304,0,57.06,57.76,37.22,57.27,8.333333333333334,1,1,0,0,7,13,4,1,1110.3334,522550.59,306441.44,161486.56,154433.64,4463.7197 -3042,3758,6722,-9,6721,6719,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1041.5472,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,368,366879.81,0,0,0,-138.30614 -3043,3759,6723,6724,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.9832449,7.0858178,43,-2,24.459724,0,-9,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,2.8583848,7.0762305,30.77,64.34,53.63,40.71,8.333333333333334,1,1,0,0,0,4,3,1,569.5,1463938.8,887674.38,246503.81,0,2873.9138 -3043,3759,6724,6723,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.7443976,7.7951584,44,2,-142.54376,0,2,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.716496,7.7594609,53.63,40.71,30.77,64.34,8.333333333333334,1,1,0,0,0,4,3,1,569.5,1463938.8,887674.38,246503.81,0,2873.9138 -3044,3760,6725,6726,-9,-9,1,1,34,0,0,0,3,3,-9,0,5,8.6742001,9.0925398,0,2,0,19.907068,0,-9,-9,2019,5,0,40,0,1,0,0,25.421413,25.421413,0,0,0,0,0,0,0,0,4.1707845,0,54.1,59.11,34.65,37.08,8.333333333333334,2,3,0,0,1,8,5,1,1276.5,829289.75,157535.63,447862.5,297119.53,5395.7368 -3044,3760,6726,6725,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.7688389,8.7904339,0,2,0,77.091461,0,-9,-9,2019,20,9,42,40,1,9,0,18.529022,18.529022,0,0,0,0,0,0,0,0,3.937748,0,34.65,37.08,54.1,59.11,6.666666666666667,1,1,0,0,8,8,5,1,1276.5,829289.75,157535.63,447862.5,297119.53,5395.7368 -3045,3761,6727,6728,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,2,9,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,38.46,56.98,43.29,5,1,1,0,0,0,13,2,0,883,-108681.93,-42830.648,0,0,891.30878 -3045,3761,6728,6727,-9,-9,1,0,40,0,0,0,2,2,-9,1,2,0,0,0,2,0,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,56.98,43.29,40.88,38.46,8.333333333333334,1,1,0,0,2,13,2,0,883,-108681.93,-42830.648,0,0,891.30878 -3046,3762,6729,6731,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,0,0,0,3,-1,0,0,3,-9,2019,8,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,49.29,54.59,8.333333333333334,1,1,0,0,9,13,1,0,430.33334,-87753.992,12970.783,0,0,635.04462 -3046,3762,6730,-9,6729,6731,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.714,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,430.33334,-87753.992,12970.783,0,0,635.04462 -3046,3762,6731,6729,-9,-9,1,1,33,1,1,0,2,2,-9,0,3,0,0,0,3,1,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,53.44,55.06,6.666666666666667,1,1,1,0,2,13,1,0,430.33334,-87753.992,12970.783,0,0,635.04462 -3047,3763,6732,-9,6733,6735,1,1,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-966.41418,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 -3047,3763,6733,6735,-9,-9,1,0,32,1,5,0,2,2,-9,0,3,0,0,0,1,-16,-55.732513,-9,-9,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.67,55.57,6.666666666666667,1,1,1,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 -3047,3763,6734,-9,6733,6735,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-929.73169,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 -3047,3763,6735,6733,-9,-9,1,1,48,1,5,0,2,2,-9,0,3,7.9255419,7.5577936,0,1,16,-87.12545,-9,2,2,2019,7,0,40,0,1,0,0,8.3165798,8.3165798,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.33,53.46,8.333333333333334,1,1,0,0,8,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 -3047,3763,6736,-9,6733,6735,1,1,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-950.29755,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 -3047,3763,6737,-9,6733,6735,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-952.19336,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,913.83331,623654,102299.16,295187.38,0,2445.137 -3048,3764,6738,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7008777,7.583344,5.2270508,0,0,-1131.0723,0,3,3,2019,6,0,37,31,1,0,0,7.2486296,7.2486296,0,0,0,0,0,1,1,0,4.1509495,5.5563021,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,213,-43079.164,-107630.19,0,0,1499.1802 -3049,3765,6739,-9,6740,6741,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.1548,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,811.33331,1004590.3,740072.06,434787.88,201868.31,53065.051 -3049,3765,6740,6741,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,9.5754862,9.83463,0,19,-2,153.18452,0,2,3,2019,6,0,50,23,1,0,0,35.186726,35.186726,0,0,0,0,0,0,0,0,6.7336335,0,54.1,59.11,56.47,59.4,8.333333333333334,1,1,0,0,6,9,5,1,811.33331,1004590.3,740072.06,434787.88,201868.31,53065.051 -3049,3765,6741,6740,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,0,0,0,19,2,101.42979,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.1,59.11,10,1,1,0,0,6,9,5,1,811.33331,1004590.3,740072.06,434787.88,201868.31,53065.051 -3050,3766,6742,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.3923674,8.1136789,0,0,-957.48944,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,0,8.0855885,39.56,61.53,-9,-9,1.666666666666667,1,1,0,0,0,11,4,1,95,1427974.4,616161.75,447081.69,0,2671.9023 -3051,3767,6743,6744,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,8,-1,148.48849,0,2,1,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,2.3608444,0,36.35,53.49,54.2,57.49,8.333333333333334,1,1,0,0,7,10,3,1,930,1362809.8,597136.5,415793.97,0,3108.2825 -3051,3767,6744,6743,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.9233184,7.5146255,8,1,-61.596401,0,2,3,2019,8,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2830727,8.060215,54.2,57.49,36.35,53.49,8.333333333333334,1,1,0,0,9,10,3,1,930,1362809.8,597136.5,415793.97,0,3108.2825 -3052,3768,6745,-9,6747,6746,1,1,30,0,0,0,1,1,-9,0,2,0,0,0,0,0,-937.52063,0,3,2,2019,24,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,21.87,45.58,-9,-9,1.666666666666667,2,3,0,1,2,8,2,1,463,222711.2,-7067.2949,0,0,0 -3052,3769,6746,6747,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.5436878,7.5156097,0,10,8,9.8042946,0,-9,-9,2019,12,0,40,40,1,0,0,5.8105865,5.8105865,1,3.7836945,3.967479,26.210501,0,1,1,0,2.4774475,0,35.44,44.74,36.92,51.87,6.666666666666667,1,1,0,0,12,8,3,1,628.5,624145.5,39884.105,295251.78,179152.59,1896.3848 -3052,3769,6747,6746,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.963285,7.2217088,0,39,-8,-88.594582,0,3,3,2019,14,2,15,0,1,2,0,8.7122517,8.7122517,0,0,0,0,0,1,1,0,3.1256936,0,36.92,51.87,35.44,44.74,6.666666666666667,1,1,0,0,10,8,3,1,628.5,624145.5,39884.105,295251.78,179152.59,1896.3848 -3053,3770,6748,6749,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,48,-6,-70.665382,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51.65,39.74,39.57,16.2,8.333333333333334,1,1,0,0,4,11,2,0,340,838496.88,163041.97,449466.88,0,1445.4937 -3053,3770,6749,6748,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.6346097,6.5647383,9,6,-119.84762,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,102.08665,0,0,1,1,0,0,6.3426108,39.57,16.2,51.65,39.74,8.333333333333334,1,1,0,0,0,11,2,0,340,838496.88,163041.97,449466.88,0,1445.4937 -3053,3771,6750,-9,6748,6749,1,1,42,0,0,0,3,3,-9,0,4,8.6413126,8.8776941,0,0,0,-878.63538,-9,3,3,2019,7,0,38,0,1,0,0,16.169081,16.169081,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,11,11,5,0,1152,562272.81,135943.47,71646.688,60851.301,2164.0229 -3054,3772,6751,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,6.4313345,6.3552351,0,0,-1209.036,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,2.8754954,6.158452,58.16,36.64,-9,-9,8.333333333333334,1,1,1,0,9,7,2,0,1612,-118763.18,39342.055,217250.03,0,1566.5164 -3055,3773,6752,-9,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,7.7666368,7.9199533,0,0,-908.01343,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,4.3782549,0,0,2,1,1,0,3.1689095,7.7108846,60.44,46.58,-9,-9,10,1,1,0,0,0,12,3,1,518,270323.47,292868.41,177509.58,0,1799.4358 -3056,3774,6753,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9312797,6.1715231,0,0,-1029.3608,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6959262,56.26,38.87,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,782,230064.97,100397.18,0,0,1405.359 -3057,3775,6754,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,5.4513798,5.8440595,0,0,-953.97205,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8224702,57.59,43.8,-9,-9,10,3,4,0,0,0,8,2,1,2090,444443.34,123673.59,310295.47,0,672.21155 -3058,3776,6755,-9,6757,6758,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.2158,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 -3058,3776,6756,-9,6757,6758,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.359,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 -3058,3776,6757,6758,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,7.8978224,7.8190427,0,19,-4,-72.021599,0,3,3,2019,13,2,35,30,1,2,0,8.0717869,8.0717869,0,0,0,0,0,1,1,0,0,0,49.12,57.28,49.88,52.95,6.666666666666667,3,4,0,0,11,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 -3058,3776,6758,6757,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,7.2807508,7.4908414,0,19,4,64.912468,0,2,2,2019,8,1,38,38,1,1,0,4.4113383,4.4113383,0,0,0,0,0,1,1,0,0,0,49.88,52.95,49.12,57.28,8.333333333333334,3,4,0,0,9,2,3,0,1515.5,-137533.91,92720.234,169819.78,71149.297,2099.6577 -3059,3777,6759,-9,-9,-9,1,0,48,0,2,0,3,3,-9,1,2,0,0,0,0,0,-990.26544,0,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,41.69,25.64,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,496.66666,160389.75,0,206631.81,122036.51,3047.4434 -3059,3777,6760,-9,6759,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.1864,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,496.66666,160389.75,0,206631.81,122036.51,3047.4434 -3059,3777,6761,-9,6759,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.30054,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,1,0,496.66666,160389.75,0,206631.81,122036.51,3047.4434 -3059,3778,6762,-9,6759,-9,1,1,26,0,2,0,2,2,-9,0,4,8.1243315,8.1127281,0,0,0,-924.42358,-9,2,3,2019,10,0,40,0,1,1,1,10.616284,10.616284,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,9,4,0,539,-202512.5,56869.273,0,0,1517.1635 -3059,3779,6763,-9,6759,-9,1,1,19,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1011.2796,-9,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,2.0504158,0,48,59,-9,-9,7,1,1,1,0,0,9,2,0,216,0,0,0,0,389.04471 -3060,3780,6764,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,5.4409404,5.2310729,0,0,-996.02753,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.8650091,15.265037,0,0,1,1,0,0,5.362865,55.08,13.78,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,2919,444368.63,0,0,0,936.64209 -3061,3781,6765,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,7.0028515,7.0487337,0,0,-989.81458,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,2.9092023,10.411645,26.22753,0,1,1,0,7.1554499,0,36.36,36.99,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1449,620255.69,33455.047,698359.88,0,1273.0179 -3062,3782,6766,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,7.92344,8.1828947,0,0,0,-1162.173,0,2,2,2019,4,0,28,23,1,0,0,12.538054,12.538054,0,0,0,0,7,0,0,0,3.17311,0,53.78,48.41,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,1807,-456794.06,101080.1,23101.137,16403.66,800.75366 -3063,3783,6767,6768,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,7.4506383,7.4201612,23,5,35.605587,0,2,2,2019,26,11,0,0,4,11,0,0,0,1,0,7.3574448,0,0,1,1,0,0,7.6299515,28.79,31.77,50.87,32.2,1.666666666666667,4,2,0,0,0,10,3,1,443.5,1105504.3,880514,327022,0,3229.1965 -3063,3783,6768,6767,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.7551365,7.7416191,24,-5,-24.295185,0,2,2,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,5.7647414,7.8044524,50.87,32.2,28.79,31.77,3.333333333333333,1,1,0,0,0,10,3,1,443.5,1105504.3,880514,327022,0,3229.1965 -3064,3784,6769,6770,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,23,4,-78.531685,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.7419654,0,51.19,26.65,44.78,55.1,6.666666666666667,1,1,0,0,6,9,3,1,308.5,286044.56,98668.508,321463.34,0,1796.4025 -3064,3784,6770,6769,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,7.9733052,8.1698093,0,23,-4,-54.195816,0,2,2,2019,12,0,37,38,1,0,0,10.450301,10.450301,0,0,0,0,2,1,1,0,3.4944494,0,44.78,55.1,51.19,26.65,6.666666666666667,1,1,0,0,10,9,3,1,308.5,286044.56,98668.508,321463.34,0,1796.4025 -3065,3785,6771,6772,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,6,1,0,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,7.0762415,0,35.57,49.83,70.62,12.18,8.333333333333334,1,1,0,0,0,12,2,1,655,-125249.65,-15660.037,140254.19,0,2612.6355 -3065,3785,6772,6771,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,6,-1,0,0,1,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,7.2641754,0,70.62,12.18,35.57,49.83,8.333333333333334,1,1,0,0,0,12,2,1,655,-125249.65,-15660.037,140254.19,0,2612.6355 -3066,3786,6773,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.7275062,7.5708895,0,0,-985.2561,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8551016,59.47,33.39,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1227,470093.81,293858.13,285780.81,0,1345.062 -3066,3787,6774,-9,6773,-9,1,1,58,0,0,0,2,2,-9,0,4,0,7.1725392,7.0368066,0,0,-1029.2686,0,3,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1562076,6.968636,60.12,54.8,-9,-9,5,1,1,0,0,10,4,2,1,474,125285.95,439557.94,60802.074,0,954.85132 -3067,3788,6775,6776,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.2264366,6.151875,9,4,44.978111,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,.39706498,0,1,1,0,6.4538207,5.8464975,57.16,56.15,51.7,33.71,8.333333333333334,1,1,0,0,10,2,2,1,287,319626.63,52357.145,135090.19,0,1738.5942 -3067,3788,6776,6775,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,58,-4,-52.850224,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5163116,0,51.7,33.71,57.16,56.15,6.666666666666667,1,1,0,0,4,2,2,1,287,319626.63,52357.145,135090.19,0,1738.5942 -3068,3789,6777,-9,6778,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.0459,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,1,0,696,252077.97,0,0,0,855.31714 -3068,3789,6778,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,2,0,0,0,0,0,-870.85193,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,43.54,39.74,-9,-9,1.666666666666667,1,1,1,0,0,5,1,0,696,252077.97,0,0,0,855.31714 -3069,3790,6779,-9,6780,-9,1,0,31,0,0,0,2,2,-9,0,4,8.3092585,8.5758581,0,0,0,-1090.5946,0,3,-9,2019,11,0,45,40,1,2,1,12.02841,12.02841,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,8,13,5,1,518,57825.086,34778.957,98563.914,65155.617,2017.6941 -3069,3791,6780,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.8831043,7.7361884,0,0,0,-1033.7438,0,2,2,2019,12,0,40,35,1,2,0,7.3093734,7.3093734,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,1,1,0,0,11,13,4,1,503,621255,392174.97,144831.64,0,1196.5577 -3069,3792,6781,-9,6780,-9,1,0,29,0,0,0,1,1,-9,0,4,8.7350502,8.6279793,0,0,0,-772.87219,0,3,-9,2019,11,0,40,40,1,2,1,13.590599,13.590599,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,10,13,5,1,730,-92437.867,-78667.18,0,0,1618.2981 -3070,3793,6782,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.2608809,4.3219275,0,0,-887.56927,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.186132,62.03,39.01,-9,-9,8.333333333333334,1,1,0,0,2,9,2,0,411,126134.97,0,83661.602,0,1431.347 -3070,3794,6783,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,0,0,-978.8598,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,41.32,-9,-9,8.333333333333334,1,1,1,0,3,9,1,0,1362,0,0,0,0,532.15021 -3071,3795,6784,-9,6787,6786,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1068.3156,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 -3071,3795,6785,-9,6787,6786,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-867.91559,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 -3071,3795,6786,6787,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.8567433,6.7326856,0,17,11,57.141335,0,3,2,2019,7,0,40,30,1,0,0,2.7961166,2.7961166,0,0,0,0,0,1,0,1,0,0,46.5,58.26,51.49,57.57,6.666666666666667,2,3,0,0,12,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 -3071,3795,6787,6786,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,0,0,0,17,-11,57.992649,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,46.5,58.26,8.333333333333334,2,3,0,0,0,2,2,1,1038,1315975.8,1110560,275350.38,0,1070.8932 -3072,3796,6788,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1032.1833,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,0,0,25.26,31.88,-9,-9,3.333333333333333,1,1,0,1,0,4,1,0,839,15658.055,0,0,0,1199.238 -3072,3796,6789,-9,6788,-9,1,0,17,0,0,1,3,0,-9,0,2,0,0,0,0,0,-1013.0894,-9,3,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.95,38.83,-9,-9,5,1,1,0,0,0,4,1,0,839,15658.055,0,0,0,1199.238 -3073,3797,6790,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.9284134,6.7418046,0,0,-1145.5809,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5864244,7.0753689,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,615,392281.78,116215.59,150718.66,0,618.10236 -3074,3798,6791,6792,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7358656,9.1421309,0,10,-6,-170.6628,0,2,2,2019,15,4,52,48,1,4,0,15.23375,15.23375,0,0,0,0,0,0,0,0,0,0,38.21,54.03,56.41,44.91,5,1,1,0,0,11,10,5,1,688.5,508239.91,-28782.559,672112.94,194807.89,5114.25 -3074,3798,6792,6791,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,9.0136127,9.0231285,0,10,6,185.71063,0,2,2,2019,6,0,40,44,1,0,0,25.816055,25.816055,0,0,0,0,0,0,0,0,0,0,56.41,44.91,38.21,54.03,8.333333333333334,1,1,0,0,11,10,5,1,688.5,508239.91,-28782.559,672112.94,194807.89,5114.25 -3074,3799,6793,-9,6792,6791,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1014.4166,1,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.7940013,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,670,0,0,0,0,-117.51585 -3075,3800,6794,6796,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,7.4094567,7.5631223,0,8,-5,-47.154156,0,-9,-9,2019,6,0,40,50,1,0,0,6.0877233,6.0877233,0,0,0,0,0,1,1,0,4.5526228,0,60.67,53.55,60.9,39.41,8.333333333333334,2,3,0,0,8,2,3,0,1456,63288.227,6468.7188,156713.3,157324.3,2422.6707 -3075,3800,6795,-9,6796,6794,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.8126,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,0,1456,63288.227,6468.7188,156713.3,157324.3,2422.6707 -3075,3800,6796,6794,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.4541159,7.5650253,0,14,5,-18.488321,0,2,2,2019,5,0,37,35,1,0,0,5.8653893,5.8653893,0,0,0,0,0,1,1,0,0,0,60.9,39.41,60.67,53.55,6.666666666666667,2,3,0,0,11,2,3,0,1456,63288.227,6468.7188,156713.3,157324.3,2422.6707 -3076,3801,6797,6798,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.4530687,8.4924097,42,0,33.207623,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2918253,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,1317.5,1964740.5,1453357,296569.94,0,2604.5518 -3076,3801,6798,6797,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,8,0,-168.99126,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.96,53.17,8.333333333333334,1,1,0,0,0,5,4,1,1317.5,1964740.5,1453357,296569.94,0,2604.5518 -3077,3802,6799,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.354547,7.7504611,5.8362951,0,0,-1020.2076,0,3,2,2019,10,0,26,27,1,0,0,7.4157958,7.4157958,0,0,0,0,0,1,1,0,2.1701922,5.9083443,52.69,43.18,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,634,-149298.3,-67657.094,0,0,835.17499 -3078,3803,6800,6801,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.3489442,5.4851556,6,1,-88.491783,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6877284,5.7094693,56.61,36.33,39.56,56.04,8.333333333333334,1,1,0,0,0,6,3,1,336.5,831962.06,293770.69,239018.44,0,2458.0254 -3078,3803,6801,6800,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.4990311,7.2540169,48,-1,-26.132376,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.5361738,39.56,56.04,56.61,36.33,5,1,1,0,0,8,6,3,1,336.5,831962.06,293770.69,239018.44,0,2458.0254 -3079,3804,6802,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.0074978,8.0918999,0,0,-976.3053,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7988954,7.9390769,52.97,53.97,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,738,-93816.18,-12183.444,154978.23,0,1969.4073 -3080,3805,6803,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,0,0,-902.32928,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1322,283821.5,0,299414.72,0,1096.9308 -3081,3806,6804,6805,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,7.4072099,7.3064251,0,8,4,46.615025,0,-9,-9,2019,6,0,20,38,1,0,0,8.3685427,8.3685427,0,0,0,0,0,1,1,0,3.263339,0,57.33,53.46,65.44,43.37,10,1,1,0,0,7,12,4,0,830,19386.447,232341.52,0,0,3293.6555 -3081,3806,6805,6804,-9,-9,1,1,28,1,2,0,2,2,-9,0,2,8.7394209,9.0533848,0,8,-4,-1.7827884,0,-9,-9,2019,6,0,49,50,1,0,0,13.190374,13.190374,0,0,0,0,0,1,1,0,4.7857485,0,65.44,43.37,57.33,53.46,10,1,1,0,0,10,12,4,0,830,19386.447,232341.52,0,0,3293.6555 -3081,3806,6806,-9,6804,6805,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.70953,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,830,19386.447,232341.52,0,0,3293.6555 -3081,3806,6807,-9,6804,6805,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-877.22192,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,830,19386.447,232341.52,0,0,3293.6555 -3082,3807,6808,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.7211599,5.9546323,0,0,-879.54565,0,-9,-9,2019,19,9,0,0,4,9,0,0,0,1,27.65428,2.7524595,260.96042,0,1,1,0,0,6.1030331,28.79,21.04,-9,-9,8.333333333333334,3,4,0,0,0,6,2,0,211,687919.25,325413,217585.66,0,1159.5261 -3083,3808,6809,-9,6812,6810,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-908.31458,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 -3083,3808,6810,6812,-9,-9,1,1,43,0,2,0,3,3,-9,0,5,7.9048834,7.7788939,0,7,2,-180.51167,0,3,3,2019,8,1,65,55,1,1,0,4.4608679,4.4608679,0,0,0,0,0,1,1,0,0,0,49.62,55.59,47.1,56.62,6.666666666666667,1,1,0,0,9,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 -3083,3808,6811,-9,6812,6810,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-993.36267,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 -3083,3808,6812,6810,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.126575,7.2348313,0,7,-2,-4.6551485,0,2,2,2019,6,0,17,17,1,0,0,9.2303572,9.2303572,0,0,0,0,0,1,1,0,0,0,47.1,56.62,49.62,55.59,6.666666666666667,1,1,0,0,7,7,3,0,732.25,-26127.217,0,217185.78,45788.699,2416.5283 -3084,3809,6813,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,5,0,7.789,7.487967,0,0,-914.25873,0,2,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.8777404,7.5989981,39.89,64.2,-9,-9,5,1,1,0,0,0,9,3,1,1282,680753.88,-68643.563,235770.69,0,1403.4767 -3085,3810,6814,6815,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.5669641,7.5764251,6.9545407,36,1,-38.238834,0,3,3,2019,8,0,24,30,1,0,0,3.9636023,3.9636023,0,0,0,0,0,0,0,0,0,7.386549,55,53,48.53,40.95,8,1,1,0,0,9,12,4,1,828,132087.78,-58628.398,76717.813,0,2228.5549 -3085,3810,6815,6814,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9336905,8.5004816,0,36,-1,-139.87184,0,2,3,2019,17,5,35,35,1,5,0,12.463606,12.463606,0,0,0,0,71.5,0,0,0,0,0,48.53,40.95,55,53,8.333333333333334,1,1,0,0,9,12,4,1,828,132087.78,-58628.398,76717.813,0,2228.5549 -3085,3811,6816,-9,6815,6814,1,1,22,0,0,0,2,2,-9,0,5,7.5817652,7.4131799,0,0,0,-1039.7358,0,2,3,2019,7,0,20,30,1,0,1,8.7225065,8.7225065,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,4,12,3,1,756,74287.609,0,0,0,550.65326 -3086,3812,6817,6818,-9,-9,1,1,37,1,3,0,1,1,-9,0,5,8.6988649,8.8333969,0,14,3,-22.606646,0,2,2,2019,2,0,38,38,1,0,0,19.229342,19.229342,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.24,42.39,10,2,3,0,0,6,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 -3086,3812,6818,6817,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,0,0,0,14,-3,54.499432,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,42.39,62.39,56.71,10,2,3,0,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 -3086,3812,6819,-9,6818,6817,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.27966,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 -3086,3812,6820,-9,6818,6817,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.6393,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 -3086,3812,6821,-9,6818,6817,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.8278,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,10,4,1,1124.8,166833.56,-24614.914,0,0,3137.4668 -3087,3813,6822,-9,6824,6823,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1113.6351,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,905,441037.09,426792.22,146191.8,0,3832.5918 -3087,3813,6823,6824,-9,-9,1,1,53,0,1,0,2,2,-9,0,1,8.6042166,8.5129156,0,21,0,59.22646,0,2,2,2019,21,9,40,50,1,9,0,15.132068,15.132068,0,0,0,0,0,1,1,0,0,0,45.52,26.86,41.06,62.04,3.333333333333333,1,1,0,0,11,12,5,1,905,441037.09,426792.22,146191.8,0,3832.5918 -3087,3813,6824,6823,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,8.6959038,8.5723181,0,21,0,-121.91031,0,2,2,2019,10,0,35,36,1,0,0,16.972322,16.972322,0,0,0,0,0,1,1,0,0,0,41.06,62.04,45.52,26.86,10,1,1,0,0,11,12,5,1,905,441037.09,426792.22,146191.8,0,3832.5918 -3088,3814,6825,6827,-9,-9,1,1,38,1,1,0,1,1,0,0,5,0,0,0,7,0,69.56852,-9,-9,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,1,2880.6667,-78011.055,561.31903,79443.813,51288.41,2045.3308 -3088,3814,6826,-9,6827,6825,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-907.5249,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,2880.6667,-78011.055,561.31903,79443.813,51288.41,2045.3308 -3088,3814,6827,6825,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.5852137,8.520937,0,7,0,-47.459602,0,2,1,2019,6,0,53,50,1,0,0,13.145351,13.145351,0,0,0,0,0,0,0,0,2.5514972,0,57.16,56.15,51.67,60.18,8.333333333333334,1,1,0,0,10,4,4,1,2880.6667,-78011.055,561.31903,79443.813,51288.41,2045.3308 -3089,3815,6828,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1262913,8.4001055,0,0,0,-1096.9938,-9,1,1,2019,24,8,37,0,1,8,0,13.524697,13.524697,0,0,0,0,0,0,0,0,0,0,11.13,69.58,-9,-9,1.666666666666667,1,1,0,0,3,10,4,0,813,-111536.32,0,0,0,1861.8684 -3090,3816,6829,6830,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.3497043,5.4801393,52,3,-16.207224,0,-9,3,2019,12,3,0,0,4,3,0,0,0,1,0,4.2413797,0,0,1,1,0,0,5.1528015,54.78,23.91,51.64,57.24,8.333333333333334,1,1,0,0,0,11,2,1,1752,383019.31,36143.727,226467.47,0,1253.9473 -3090,3816,6830,6829,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,52,-3,127.4834,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.64,57.24,54.78,23.91,8.333333333333334,1,1,0,1,0,11,2,1,1752,383019.31,36143.727,226467.47,0,1253.9473 -3091,3817,6831,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,4.8966351,5.1423807,0,0,-1053.896,0,3,-9,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,4.7309842,57.34,26.66,-9,-9,5,1,1,0,0,0,11,2,0,322,68431.719,74247.633,199822.75,0,2089.6296 -3091,3818,6832,-9,6831,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.3246541,5.1982322,0,0,-1109.146,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.3800683,5.5062146,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,1902,46480.613,132286.05,188621.28,0,884.84735 -3092,3819,6833,6834,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9868898,8.8511934,0,8,1,79.128273,0,2,3,2019,12,0,40,50,1,0,0,28.784199,28.784199,0,0,0,0,0,1,1,0,6.9786525,0,36.2,64.19,49.63,54.22,5,1,1,0,0,9,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 -3092,3819,6834,6833,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3010974,7.1360874,0,8,-1,-17.810669,0,-9,-9,2019,12,0,20,20,1,0,0,9.1460161,9.1460161,0,0,0,0,0,1,1,0,5.9483738,0,49.63,54.22,36.2,64.19,5,1,1,0,0,9,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 -3092,3819,6835,-9,6834,6833,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.0556,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 -3092,3819,6836,-9,6834,6833,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.51447,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.12261729,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,5,1,491.5,1107466.6,779428,221544.08,74458.484,4565.4028 -3093,3820,6837,6842,-9,-9,1,0,39,0,6,0,2,2,-9,0,5,0,0,0,6,-6,77.673119,0,3,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,68.32000000000001,45.78,10,3,4,0,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3093,3820,6838,-9,6837,6842,1,1,7,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1123.3494,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3093,3820,6839,-9,6837,6842,1,1,15,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1070.3638,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3093,3820,6840,-9,6837,6842,1,1,6,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1052.4949,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3093,3820,6841,-9,6837,6842,1,1,11,0,6,1,3,0,-9,0,4,0,0,0,0,0,-948.80872,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3093,3820,6842,6837,-9,-9,1,1,45,0,6,0,3,3,-9,0,5,7.1186743,7.040483,0,6,6,107.09588,0,2,2,2019,6,1,27,35,1,1,0,5.7171812,5.7171812,0,0,0,0,7,1,1,0,0,0,68.32000000000001,45.78,57.06,57.76,10,3,4,0,1,7,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3093,3820,6843,-9,6837,6842,1,0,13,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1089.1594,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,-9,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3093,3820,6844,-9,6837,6842,1,0,16,0,6,1,2,0,0,0,5,0,0,0,0,0,-968.41797,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,8,2,0,961.125,271786.34,0,282118.97,5075.3345,3882.0935 -3094,3821,6845,6846,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8722715,6.8416643,28,-6,48.527363,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9287004,7.4090824,64.38,39.16,56.6,40.4,8.333333333333334,1,1,0,0,11,2,3,1,620,697718.5,280365.81,174608.48,0,1966.8887 -3094,3821,6846,6845,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,7.0661273,7.2785621,0,11,6,-53.888626,0,-9,-9,2019,6,0,10,15,1,0,0,11.864192,11.864192,0,0,0,0,0,1,1,0,0,0,56.6,40.4,64.38,39.16,3.333333333333333,1,1,0,0,13,2,3,1,620,697718.5,280365.81,174608.48,0,1966.8887 -3095,3822,6847,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,2,0,0,0,0,0,-956.823,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.27,55.55,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,665,0,0,0,0,1294.489 -3095,3822,6848,-9,6847,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-995.27814,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,665,0,0,0,0,1294.489 -3096,3823,6849,-9,6852,6850,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.8632,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 -3096,3823,6850,6852,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.7924566,9.5535507,0,28,0,82.406349,0,-9,-9,2019,8,0,35,36,1,0,0,68.82972,68.82972,0,0,0,0,0,1,1,0,4.4768457,0,54.37,54.8,49.25,61.25,8.333333333333334,1,1,0,0,8,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 -3096,3823,6851,-9,6852,6850,1,0,17,0,1,1,2,0,0,0,4,0,4.2601514,4.2926431,0,0,-1006.1515,-9,2,2,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,4.3433213,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 -3096,3823,6852,6850,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.1435928,7.0026522,0,28,0,26.410866,0,-9,-9,2019,9,0,17,17,1,0,0,6.4821959,6.4821959,0,0,0,0,0,1,1,0,5.257771,0,49.25,61.25,54.37,54.8,8.333333333333334,1,1,0,0,8,9,5,1,1409.5,683942.69,296425.81,316742.38,35108.785,12264.818 -3097,3824,6853,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.1946096,6.9374933,0,0,0,-1011.6363,0,2,2,2019,32,12,55,55,1,12,0,2.5760555,2.5760555,0,0,0,0,0,0,0,0,0,0,28.51,52.54,-9,-9,1.666666666666667,1,1,0,0,11,6,2,1,1322,33936.637,25271.348,145919.5,0,151.93831 -3098,3825,6854,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.485899,7.4706488,0,0,-951.49152,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8911085,7.7599845,43.36,44.85,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,460,715349.44,126254.84,288189.31,0,1698.251 -3099,3826,6855,6856,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.283988,8.0559139,0,7,2,-118.20173,0,3,3,2019,10,0,39,39,1,0,0,11.441175,11.441175,0,0,0,0,2,0,0,0,0,0,48.93,50.55,56.77,52.22,6.666666666666667,1,1,0,0,8,12,5,1,2474,136037.77,66009,368515.44,150563.03,3485.9546 -3099,3826,6856,6855,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9877071,8.223465,7.4198203,7,-2,113.35873,0,2,3,2019,6,0,40,24,1,0,0,9.4822311,9.4822311,0,0,0,0,0,0,0,0,0,7.5858393,56.77,52.22,48.93,50.55,1.666666666666667,1,1,0,0,7,12,5,1,2474,136037.77,66009,368515.44,150563.03,3485.9546 -3100,3827,6857,6858,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.3325114,4.635582,59,-1,-38.189384,0,2,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,4.8064914,4.4966421,59.83,25.47,46.01,27.03,10,1,1,0,0,0,5,2,1,638,468099.25,161664.23,181299.75,0,1721.2162 -3100,3827,6858,6857,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.0368223,7.5497684,59,1,-10.801409,0,3,3,2019,23,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.8265395,7.4498987,46.01,27.03,59.83,25.47,3.333333333333333,1,1,0,0,0,5,2,1,638,468099.25,161664.23,181299.75,0,1721.2162 -3100,3828,6859,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.6844158,5.703383,0,0,-1029.613,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.2761474,53,46,-9,-9,8,1,1,0,0,0,5,2,1,1071,266462.22,72427.148,182499.83,0,1020.4588 -3101,3829,6860,6861,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,9.1043482,9.1007357,0,1,4,43.830288,-9,-9,-9,2019,11,0,40,0,1,0,0,29.676207,29.676207,0,0,0,0,0,1,1,0,3.7306352,0,57.06,57.76,56.16,35.1,8.333333333333334,1,1,0,0,3,10,5,1,545,-171506.38,-16653.744,0,0,5014.915 -3101,3829,6861,6860,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.8817568,8.010397,0,1,-4,-91.818939,-9,2,1,2019,5,1,37,0,1,1,0,10.769759,10.769759,0,0,0,0,0,1,1,0,0,0,56.16,35.1,57.06,57.76,10,1,1,0,0,7,10,5,1,545,-171506.38,-16653.744,0,0,5014.915 -3102,3830,6862,-9,6864,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.96887,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,872.33331,57188.988,-19882.855,0,0,2240.28 -3102,3830,6863,-9,6864,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.29095,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,1,872.33331,57188.988,-19882.855,0,0,2240.28 -3102,3830,6864,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.0978136,7.7019396,7.0150228,0,0,-1016.7834,0,1,2,2019,6,0,20,20,1,0,0,11.228968,11.228968,0,0,0,0,0,1,1,0,7.3954358,0,41.23,59.35,-9,-9,5,1,1,0,0,8,4,3,1,872.33331,57188.988,-19882.855,0,0,2240.28 -3103,3831,6865,6866,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,6.8671103,6.7866125,7,0,19.534603,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.4489079,6.520432,50,48,59.63,41.44,1.666666666666667,3,4,0,0,0,8,2,1,763,258813.19,275617.03,0,0,2614.8169 -3103,3831,6866,6865,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.7072372,6.8799605,7,9,56.950241,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0865979,6.8263168,59.63,41.44,50,48,8.333333333333334,1,1,0,0,0,8,2,1,763,258813.19,275617.03,0,0,2614.8169 -3103,3832,6867,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.9939489,7.74963,0,0,0,-1049.7721,0,-9,-9,2019,7,0,40,48,1,0,0,9.7901907,9.7901907,0,0,0,0,0,1,1,0,4.6871443,0,41.81,60.52,-9,-9,6.666666666666667,1,1,0,0,8,8,4,1,1307,-95679.422,0,0,0,966.78693 -3104,3833,6868,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.9359388,5.8657703,0,0,-841.04749,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,6.3827963,0,0,1,1,0,2.6601458,6.0612831,49.11,43.42,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,771,125338.09,-9581.168,0,0,1527.3372 -3105,3834,6869,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,2,9.602602,9.6990404,0,0,0,-1006.061,0,2,2,2019,12,2,45,41,1,2,0,40.705208,40.705208,0,0,0,0,0,0,0,0,4.8844266,0,50.57,40.49,-9,-9,5,2,3,0,0,8,7,5,1,1081,1615344.5,189562.38,0,0,5006.3574 -3106,3835,6870,6871,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.871767,6.99439,39,6,-122.2864,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3571852,7.1651483,52.22,53.26,57.73,54.53,8.333333333333334,1,1,0,0,0,5,3,1,236.5,711452.69,427690.69,340217.47,0,2330.6675 -3106,3835,6871,6870,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8367853,6.9033604,39,-6,116.00058,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8544507,7.1438441,57.73,54.53,52.22,53.26,8.333333333333334,1,1,0,0,3,5,3,1,236.5,711452.69,427690.69,340217.47,0,2330.6675 -3107,3836,6872,6873,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.4322109,6.5433989,46,-11,-46.6693,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3033309,53.9,52.09,59.86,48.06,8.333333333333334,1,1,0,0,6,13,2,1,457,368110.91,163691.3,70277.672,0,927.52966 -3107,3836,6873,6872,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.0253215,5.7542872,46,11,1.4972951,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3151116,5.9129405,59.86,48.06,53.9,52.09,8.333333333333334,1,1,0,0,0,13,2,1,457,368110.91,163691.3,70277.672,0,927.52966 -3108,3837,6874,6875,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.0244451,7.2895808,7,0,96.678223,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,1.7611088,10.991919,19.379166,0,1,1,0,4.6479402,7.2697859,58.33,39.49,35.63,47.41,8.333333333333334,1,1,0,0,5,9,4,1,795.5,1961238,873531.25,737818.13,0,3601.8196 -3108,3837,6875,6874,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.0426292,8.1055021,7,0,-120.17992,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2748528,8.1412621,35.63,47.41,58.33,39.49,8.333333333333334,1,1,0,0,0,9,4,1,795.5,1961238,873531.25,737818.13,0,3601.8196 -3109,3838,6876,6877,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.000124,8.4027605,47,1,53.305328,-9,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3708205,7.6557794,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,0,6,4,1,498.5,1670787.8,1404836.3,345751.28,0,4980.8027 -3109,3838,6877,6876,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.9636497,7.7756724,47,-1,48.001869,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4536448,7.8256187,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,0,6,4,1,498.5,1670787.8,1404836.3,345751.28,0,4980.8027 -3110,3839,6878,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,6.6293645,6.4702783,0,0,-1029.2943,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.075233,6.5181885,36.34,26.89,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,280,-50121.563,0,0,0,1882.8966 -3111,3840,6879,-9,6880,6881,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.7443,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,764,298376.84,73946.875,219291.41,0,2747.9348 -3111,3840,6880,6881,-9,-9,1,0,25,1,1,0,1,1,-9,0,5,0,0,0,5,-6,3.0400164,0,2,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.87,55.58,49.41,58.28,10,1,1,1,0,4,1,4,1,764,298376.84,73946.875,219291.41,0,2747.9348 -3111,3840,6881,6880,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.7403393,8.8920393,0,5,6,83.935616,0,-9,-9,2019,10,0,37,38,1,0,0,22.181576,22.181576,0,0,0,0,0,1,1,0,0,0,49.41,58.28,52.87,55.58,6.666666666666667,1,1,0,0,4,1,4,1,764,298376.84,73946.875,219291.41,0,2747.9348 -3112,3841,6882,6883,-9,-9,1,0,65,0,1,0,2,2,-9,1,4,8.5238466,8.6084852,4.8939781,45,-2,59.487225,0,3,3,2019,14,2,8,3,1,2,0,91.863365,91.863365,0,0,0,0,14.5,1,1,0,2.746469,4.6585236,57.16,56.15,65,34.83,8.333333333333334,1,1,0,0,8,7,5,1,719,787542.13,503057.84,173507.56,0,6854.8315 -3112,3841,6883,6882,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,8.3703728,8.7753267,6.3554511,45,2,-84.689491,0,3,-9,2019,6,0,30,45,1,0,0,25.312407,25.312407,0,0,0,0,0,1,1,0,2.2713296,6.6414714,65,34.83,57.16,56.15,10,1,1,0,0,11,7,5,1,719,787542.13,503057.84,173507.56,0,6854.8315 -3112,3842,6884,-9,6885,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.71228,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,7,2,1,1975.5,73643.094,0,0,0,1065.1959 -3112,3842,6885,-9,6882,6883,1,0,41,0,1,0,2,2,-9,0,4,7.1662922,7.2005839,0,0,0,-1062.9207,-9,2,2,2019,11,0,4,0,1,1,0,36.834259,36.834259,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,1,1,0,0,1,7,2,1,1975.5,73643.094,0,0,0,1065.1959 -3113,3843,6886,6887,-9,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,1,0,37.580627,-9,-9,-9,2019,27,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,23.12,48.74,55.19,54.26,3.333333333333333,1,1,0,0,5,13,3,1,1385,10693.57,34541.906,84609.633,30412.92,1804.8579 -3113,3843,6887,6886,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.1967468,8.0763998,0,1,0,38.314339,-9,-9,-9,2019,12,1,40,0,1,1,0,8.7697306,8.7697306,0,0,0,0,0,0,0,0,0,0,55.19,54.26,23.12,48.74,6.666666666666667,1,1,0,0,5,13,3,1,1385,10693.57,34541.906,84609.633,30412.92,1804.8579 -3114,3844,6888,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4589896,7.4328179,0,0,0,-862.30298,0,-9,-9,2019,11,0,26,27,1,0,0,8.2295361,8.2295361,0,0,0,0,0,1,1,0,0,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,172,-338673.94,28696.613,255699.56,17142.98,980.73541 -3115,3845,6889,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,6.9730821,7.0482154,0,0,-949.00891,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.7403343,6.7593646,60.36,35.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,402,443003.94,87697.242,331050.34,0,1885.2936 -3116,3846,6890,-9,-9,6892,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1005.5215,-9,-9,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,10,1,1,0,0,3,10,3,1,605.66669,798397.5,347628.75,339319.28,111069.88,2343.1235 -3116,3846,6891,-9,-9,6892,1,1,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-970.69263,-9,-9,3,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,10,3,1,605.66669,798397.5,347628.75,339319.28,111069.88,2343.1235 -3116,3846,6892,-9,-9,-9,1,1,43,0,1,0,3,3,-9,0,3,8.21311,8.2906475,0,0,0,-1111.9745,0,3,3,2019,7,0,46,38,1,0,0,9.0284252,9.0284252,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,1,11,10,3,1,605.66669,798397.5,347628.75,339319.28,111069.88,2343.1235 -3117,3847,6893,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1131.0796,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,29.29,41.01,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,2314,307370.91,0,0,0,1805.7188 -3118,3848,6894,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.9089689,8.117218,4.7301941,0,0,-1007.9191,0,3,2,2019,8,0,35,35,1,0,0,9.5264435,9.5264435,0,0,0,0,0,0,0,0,0,5.014792,52.51,54.26,-9,-9,8.333333333333334,1,1,0,0,13,11,4,1,221,679238.94,410527.41,155720.06,0,1718.2518 -3119,3849,6895,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.7527938,7.7340131,0,0,0,-894.18494,0,2,2,2019,15,3,37,24,1,3,0,7.9546275,7.9546275,0,0,0,0,0,0,0,0,0,0,50.79,51.1,-9,-9,8.333333333333334,1,1,0,0,6,13,3,0,562,-253329.44,0,0,0,1095.8743 -3120,3850,6896,6897,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,2.8265676,3.2015295,49,3,98.258446,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0940003,3.5536854,46.85,50.02,57.16,56.15,8.333333333333334,3,4,0,0,0,8,2,1,1035,585037.13,0,601782.25,0,2999.6348 -3120,3850,6897,6896,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.3193994,7.3960829,49,-3,-37.136368,0,3,3,2019,11,0,0,8,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0696354,7.56639,57.16,56.15,46.85,50.02,8.333333333333334,3,4,0,0,10,8,2,1,1035,585037.13,0,601782.25,0,2999.6348 -3121,3851,6898,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.4198,0,3,3,2019,14,6,0,0,4,6,0,0,0,1,0,7.134202,0,0,1,1,0,0,0,46.18,31.43,-9,-9,5,1,1,0,0,0,2,1,0,323,208254.25,0,0,0,1411.1166 -3122,3852,6899,6901,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,9.1907072,9.2684679,0,22,-2,-2.1875634,0,2,3,2019,9,0,30,30,1,1,0,36.577663,36.577663,0,0,0,0,0,1,1,0,0,0,51,56,57.17,30.22,8,2,3,0,0,1,8,5,0,1615.6666,1361653,256277.16,712464.75,95065.516,4329.6167 -3122,3852,6900,-9,6901,6899,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.2477,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1615.6666,1361653,256277.16,712464.75,95065.516,4329.6167 -3122,3852,6901,6899,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,6.6406136,6.642117,0,22,2,-2.1544743,0,3,3,2019,6,0,20,16,1,0,0,5.0728717,5.0728717,0,0,0,0,0,1,1,0,0,0,57.17,30.22,51,56,10,2,3,0,0,2,8,5,0,1615.6666,1361653,256277.16,712464.75,95065.516,4329.6167 -3123,3853,6902,6903,-9,-9,1,0,39,0,1,0,3,3,-9,0,2,0,0,0,1,-4,26.945292,-9,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,29.8,54.36,41,56.99,5,1,1,0,1,0,13,2,0,1450.5,54230.344,0,84042.953,43377.109,1859.3147 -3123,3853,6903,6902,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.6447167,8.0707626,0,1,4,11.830673,-9,-9,-9,2019,12,0,35,0,1,0,0,8.5214882,8.5214882,0,0,0,0,0,1,1,0,0,0,41,56.99,29.8,54.36,3.333333333333333,4,1,0,0,8,13,2,0,1450.5,54230.344,0,84042.953,43377.109,1859.3147 -3124,3854,6904,6905,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,44,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,61.43,38.14,8,2,3,0,0,0,8,2,0,867.5,985434.88,0,655062.38,0,1923.2885 -3124,3854,6905,6904,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,44,-4,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,30.420984,0,120,1,1,0,0,0,61.43,38.14,51,46,8.333333333333334,2,3,0,0,0,8,2,0,867.5,985434.88,0,655062.38,0,1923.2885 -3124,3855,6906,-9,6904,6905,1,0,40,0,0,0,1,1,-9,0,4,8.2421885,8.0141649,0,0,0,-961.65826,0,2,2,2019,12,3,40,55,1,3,0,14.485956,14.485956,0,0,0,0,27,1,1,0,0,0,55.76,52.64,-9,-9,6.666666666666667,2,3,0,0,7,8,4,0,298,357258.53,0,290021.38,0,1224.0026 -3125,3856,6907,6908,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.223484,8.1488304,0,6,0,-44.019367,0,3,2,2019,16,4,40,37,1,4,0,9.8123474,9.8123474,0,0,0,0,0,0,0,0,0,0,38.69,61.75,44.19,58.01,8.333333333333334,1,1,0,0,12,2,5,1,228,510634.97,173794.64,273802.31,209711.06,3253.2334 -3125,3856,6908,6907,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.436801,8.5230207,0,6,0,105.14149,0,-9,-9,2019,11,0,47,47,1,0,0,10.403964,10.403964,0,0,0,0,0,0,0,0,0,0,44.19,58.01,38.69,61.75,8.333333333333334,1,1,0,0,12,2,5,1,228,510634.97,173794.64,273802.31,209711.06,3253.2334 -3126,3857,6909,6910,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1732135,7.0787768,57,3,15.464739,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8092718,7.14361,65.73999999999999,27.66,59.85,30.25,6.666666666666667,1,1,0,0,0,7,3,1,1130,716292.31,190071.59,246183.38,0,2339.9348 -3126,3857,6910,6909,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.143887,7.3685284,57,-3,11.422218,0,3,-9,2019,10,2,0,0,4,2,0,0,0,0,3.2666028,12.575283,0,0,1,1,0,6.4654317,7.3164196,59.85,30.25,65.73999999999999,27.66,6.666666666666667,1,1,0,0,0,7,3,1,1130,716292.31,190071.59,246183.38,0,2339.9348 -3127,3858,6911,6912,-9,-9,1,1,56,0,0,0,3,3,-9,0,1,0,6.705296,6.529943,33,1,-19.042048,0,3,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.7911186,6.7125487,17.87,25.88,43.9,57.01,1.666666666666667,1,1,0,0,0,12,4,1,663.5,381323.63,51171.945,202673.38,48935.199,2887.9385 -3127,3858,6912,6911,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.38169,8.2244635,0,33,-1,81.435455,0,2,2,2019,12,0,37,37,1,0,0,12.643289,12.643289,0,0,0,0,5.48,1,1,0,0,0,43.9,57.01,17.87,25.88,8.333333333333334,1,1,0,0,11,12,4,1,663.5,381323.63,51171.945,202673.38,48935.199,2887.9385 -3127,3859,6913,-9,6912,6911,1,0,24,0,0,0,1,1,-9,0,4,7.8269196,7.7424068,0,0,0,-1137.9167,-9,2,3,2019,11,0,39,0,1,2,1,6.3514757,6.3514757,0,0,0,0,0,1,1,0,5.2646317,0,47,58,-9,-9,7,1,1,0,0,1,12,3,1,368,-32591.039,-21249.848,0,0,1444.1461 -3128,3860,6914,6915,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,52,1,-1.1507586,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5664063,0,53,47,24.64,34.86,7,1,1,0,0,0,6,2,1,372,265058.75,121782.05,0,0,1875.6027 -3128,3860,6915,6914,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.9903374,5.5565357,52,-1,14.641306,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,5.2249241,0,0,1,1,0,0,5.9437075,24.64,34.86,53,47,1.666666666666667,1,1,0,0,4,6,2,1,372,265058.75,121782.05,0,0,1875.6027 -3129,3861,6916,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.5721083,8.3072557,0,4,6,-.49056038,0,-9,-9,2019,18,6,82,44,1,6,0,6.3453016,6.3453016,0,0,0,0,0,0,0,0,7.7181945,0,35.37,59.06,46.67,55.57,6.666666666666667,1,1,0,0,9,11,5,1,182,125442.84,331921.56,143236.55,99701.82,3738.5857 -3129,3862,6917,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.701622,8.1445036,0,4,-6,-68.640488,0,-9,-9,2019,7,0,41,40,1,0,0,13.722171,13.722171,0,0,0,0,0,0,0,0,0,0,46.67,55.57,35.37,59.06,8.333333333333334,1,1,0,0,11,11,5,1,70,-70834.023,240865.88,0,0,1713.0049 -3130,3863,6918,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1009.4204,0,2,2,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,15.45,50.24,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,554,-206053.72,0,0,0,726.08429 -3131,3864,6919,6920,-9,-9,1,1,33,1,2,0,1,1,-9,0,2,8.5630817,8.6895027,0,7,0,87.489113,0,1,2,2019,10,2,35,35,1,2,0,14.65798,14.65798,0,0,0,0,0,1,1,0,0,0,43.67,42.66,51.44,53.27,6.666666666666667,1,1,0,0,9,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 -3131,3864,6920,6919,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.6977482,8.9341393,0,7,0,28.147099,0,-9,-9,2019,13,4,35,37,1,4,0,25.530556,25.530556,0,0,0,0,0,1,1,0,7.0819101,0,51.44,53.27,43.67,42.66,7,1,1,0,0,11,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 -3131,3864,6921,-9,6920,6919,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8621,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 -3131,3864,6922,-9,6920,6919,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.9103,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,591,277726.69,98436.867,253226.83,182182.08,4468.6846 -3132,3865,6923,-9,6925,6926,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.7216,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 -3132,3865,6924,-9,6925,6926,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-984.36792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 -3132,3865,6925,6926,-9,-9,1,0,35,2,2,0,2,2,-9,0,3,8.3390608,8.3894367,0,6,-2,47.686665,0,2,2,2019,12,1,25,25,1,1,0,15.835382,15.835382,0,0,0,0,0,1,1,0,2.8903027,0,44.19,58.01,51,56,8.333333333333334,1,1,0,0,8,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 -3132,3865,6926,6925,-9,-9,1,1,37,2,2,0,2,2,-9,0,4,8.5182781,8.7657537,0,6,2,-82.480164,0,-9,-9,2019,10,0,38,40,1,1,0,14.010429,14.010429,0,0,0,0,0,1,1,0,0,0,51,56,44.19,58.01,7,4,1,0,0,1,2,4,0,1041.75,14820.721,123040.17,230757.17,183340.61,3758.7012 -3133,3866,6927,6928,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,7.1386423,6.93117,66,-3,131.43552,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,26.422583,0,42,1,1,0,4.136436,6.9854832,55.12,31.57,58.99,37.37,10,1,1,0,0,0,6,4,1,1711,978669.88,597251.63,339810.97,0,4047.2856 -3133,3866,6928,6927,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,8.3485889,8.7312317,66,3,-71.65078,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,42,1,1,0,5.3329744,8.5575294,58.99,37.37,55.12,31.57,8.333333333333334,1,1,0,0,0,6,4,1,1711,978669.88,597251.63,339810.97,0,4047.2856 -3133,3867,6929,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,3,0,0,0,0,0,-909.28436,0,1,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,59.31,49.81,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,1123,-273160.72,-35334.207,0,0,840.02917 -3134,3868,6930,6931,-9,-9,1,0,36,0,1,0,1,1,0,0,5,0,0,0,14,-4,-45.423653,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.2366674,0,60.02,56.42,44.09,57.1,10,2,3,0,0,4,8,5,1,704.33331,516623.53,402445.56,300558.88,116180.56,4180.2749 -3134,3868,6931,6930,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,9.4005985,9.3860779,0,14,4,22.627823,0,-9,-9,2019,12,0,40,42,1,0,0,25.88472,25.88472,0,0,0,0,0,0,0,0,0,0,44.09,57.1,60.02,56.42,5,2,3,0,0,10,8,5,1,704.33331,516623.53,402445.56,300558.88,116180.56,4180.2749 -3134,3868,6932,-9,6930,6931,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.6766,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,704.33331,516623.53,402445.56,300558.88,116180.56,4180.2749 -3135,3869,6933,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1001.4085,0,3,3,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,27,1,1,0,0,0,23.2,24.82,-9,-9,0,1,1,0,0,0,2,1,0,232,129970.05,0,0,0,1387.0245 -3136,3870,6934,-9,-9,-9,1,1,28,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1049.9963,0,3,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,35.59,24.47,-9,-9,5,1,1,0,1,2,8,1,0,904,0,0,0,0,776.61432 -3137,3871,6935,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,6.2562084,6.0830131,0,0,-949.77716,0,2,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,6.5498528,0,54.19,26.02,-9,-9,5,1,1,0,0,0,6,2,1,359,7937.3892,0,0,0,394.38245 -3137,3872,6936,-9,6935,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1082.5393,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,6,6,1,1,881,-129597.27,0,0,0,586.59058 -3137,3873,6937,-9,6935,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1003.2183,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,7,1,1,0,.71117049,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,566,403253.19,0,0,0,318.49451 -3138,3874,6938,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7387562,7.7368746,5.1899581,0,0,-948.98938,0,2,2,2019,6,0,23,37,1,0,0,10.969129,10.969129,0,0,0,0,0,1,1,0,4.2478905,5.4819942,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,446,462597,219914.73,153524.34,0,1028.8076 -3139,3875,6939,6941,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.8579316,8.0900021,0,23,-8,-12.74315,0,2,2,2019,13,1,22,15,1,1,0,14.464648,14.464648,0,0,0,0,0,0,0,0,2.4429681,0,34.49,52.94,37.1,60.34,5,2,3,0,1,9,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 -3139,3875,6940,-9,6939,6941,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1134.7307,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 -3139,3875,6941,6939,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.5357313,8.8289175,0,22,8,172.71519,0,2,2,2019,23,11,49,80,1,11,0,11.587806,11.587806,0,0,0,0,0,0,0,0,0,0,37.1,60.34,34.49,52.94,3.333333333333333,2,3,0,0,12,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 -3139,3875,6942,-9,6939,6941,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.931,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,8,4,1,1214.5,1118589,266158.25,772035.5,0,3088.6858 -3140,3876,6943,-9,6945,6944,1,0,17,1,3,1,2,0,0,0,3,0,0,0,0,0,-993.1156,-9,2,1,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.17,56.32,-9,-9,5,3,4,0,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 -3140,3876,6944,6945,-9,-9,1,1,41,1,3,0,1,1,1,0,4,8.0108232,7.8741217,0,6,-1,30.04711,-9,3,2,2019,9,0,40,0,1,0,0,6.5878329,6.5878329,0,0,0,0,0,1,1,0,0,0,49.35,59.64,38.34,62.12,8.333333333333334,4,2,0,0,6,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 -3140,3876,6945,6944,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,8.4063072,8.3125114,0,7,1,76.328362,0,2,1,2019,18,7,22,22,1,7,0,15.177276,15.177276,0,0,0,0,0,1,1,0,0,0,38.34,62.12,49.35,59.64,5,3,4,0,1,8,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 -3140,3876,6946,-9,6945,6944,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.46521,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 -3140,3876,6947,-9,6945,6944,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.42285,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 -3140,3876,6948,-9,6945,6944,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.8289,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,772.83331,329687.38,168975.91,286378.84,84897.852,4124.9478 -3141,3877,6949,6951,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.0734272,7.8207717,0,14,-7,0,0,3,3,2019,9,1,30,30,1,1,0,10.364424,10.364424,0,0,0,0,0,1,1,0,0,0,45.18,54.77,62.39,56.71,5,2,3,0,0,9,6,4,1,1146.3334,413564.84,563852.44,188432.41,87879.914,2042.0372 -3141,3877,6950,-9,6949,6951,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.82196,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,1146.3334,413564.84,563852.44,188432.41,87879.914,2042.0372 -3141,3877,6951,6949,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,7.8713622,8.0503035,0,14,7,0,0,3,3,2019,1,0,36,48,1,0,0,8.2322283,8.2322283,0,0,0,0,2,1,1,0,0,0,62.39,56.71,45.18,54.77,8.333333333333334,2,3,0,0,6,6,4,1,1146.3334,413564.84,563852.44,188432.41,87879.914,2042.0372 -3142,3878,6952,6953,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9975505,8.0359163,0,33,0,-15.71208,0,3,3,2019,8,0,36,40,1,0,0,8.8681021,8.8681021,0,0,0,0,0,0,0,0,8.8413649,0,45.91,48.06,54.37,54.8,0,2,3,0,0,9,8,5,1,239.5,37420.922,81125.719,283072.09,4632.082,4551.9966 -3142,3878,6953,6952,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.4319439,8.1984291,0,33,0,11.812173,0,2,3,2019,7,0,38,38,1,0,0,13.936565,13.936565,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.91,48.06,1.666666666666667,2,3,0,0,9,8,5,1,239.5,37420.922,81125.719,283072.09,4632.082,4551.9966 -3143,3879,6954,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-898.36737,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,3.6888838,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,4,1,0,232,-120284.85,0,0,0,1511.9757 -3144,3880,6955,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8158512,8.0335264,0,0,0,-1073.9841,0,2,1,2019,9,0,37,38,1,0,0,13.906126,13.906126,0,0,0,0,0,0,0,0,1.8608332,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,8,4,0,3163,-34583.895,0,0,0,2619.8337 -3144,3881,6956,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.8406343,8.9171162,0,0,0,-1011.691,0,-9,-9,2019,8,0,35,45,1,0,0,23.491253,23.491253,0,0,0,0,0,0,0,0,3.7036991,0,56.9,49.4,-9,-9,3.333333333333333,1,1,0,0,4,8,5,0,123,-60705.25,48865.395,317818.66,154578.14,2534.1614 -3144,3882,6957,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1343441,8.0166054,0,0,0,-838.82288,-9,-9,-9,2019,7,0,38,0,1,0,0,8.3217268,8.3217268,0,0,0,0,0,0,0,0,0,0,51.86,55.73,-9,-9,8.333333333333334,1,1,0,0,2,8,4,0,370,66384.125,117160.72,0,0,1568.7083 -3145,3883,6958,6959,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.1268654,7.0443182,9,-3,66.058601,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0689282,50.16,56.75,44.08,41.97,6.666666666666667,1,1,0,0,0,11,2,1,601.5,519726.03,113942.76,170610.5,0,2413.3433 -3145,3883,6959,6958,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,5.3988686,4.9482851,9,3,-51.754814,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,40.771793,0,0,1,1,0,5.8611546,4.8159676,44.08,41.97,50.16,56.75,8.333333333333334,1,1,0,0,4,11,2,1,601.5,519726.03,113942.76,170610.5,0,2413.3433 -3146,3884,6960,6961,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4277925,8.4222374,0,13,7,113.08673,0,-9,-9,2019,15,3,44,46,1,3,0,10.84897,10.84897,0,0,0,0,7,0,0,0,.43965289,0,34.79,57.07,48.87,58.55,5,1,1,0,0,8,5,5,0,328,555954.13,54523.691,239173.81,28914.518,3591.4717 -3146,3884,6961,6960,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.8372126,8.8145761,0,16,-7,68.968796,0,-9,3,2019,8,0,41,42,1,0,0,18.232542,18.232542,0,0,0,0,0,0,0,0,0,0,48.87,58.55,34.79,57.07,8.333333333333334,1,1,0,0,9,5,5,0,328,555954.13,54523.691,239173.81,28914.518,3591.4717 -3147,3885,6962,6963,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.3625031,8.5587807,0,20,-4,-92.530479,-9,3,3,2019,10,0,30,0,1,0,0,17.686447,17.686447,0,0,0,0,0,1,0,1,0,0,43.92,34.27,61.12,51.57,5,1,1,0,0,11,11,5,1,553.5,818887.88,462997.88,477025,35473.348,3898.6941 -3147,3885,6963,6962,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.8268089,9.1866684,0,1,4,150.44804,-9,-9,-9,2019,5,1,38,0,1,1,0,25.094025,25.094025,0,0,0,0,0,1,0,1,0,0,61.12,51.57,43.92,34.27,10,1,1,0,0,11,11,5,1,553.5,818887.88,462997.88,477025,35473.348,3898.6941 -3147,3886,6964,-9,6962,6963,1,0,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-976.88086,-9,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,120,1,0,1,0,0,48.27,47.75,-9,-9,8.333333333333334,1,1,0,1,0,11,1,1,553,-39861.184,0,0,0,296.37033 -3147,3887,6965,-9,6962,6963,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1073.4349,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,889,168768.13,0,0,0,0 -3147,3888,6966,-9,6962,6963,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-975.89874,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,673,-386064.06,0,0,0,0 -3148,3889,6967,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.5756593,8.1619997,0,0,-955.44983,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6794047,7.5949969,67.51000000000001,35.12,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,292,353889.28,419677.09,210777.72,78568.375,1877.244 -3149,3890,6968,-9,6969,6970,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.55652,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 -3149,3890,6969,6970,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,8.9990253,8.8670959,0,19,-2,104.368,0,3,3,2019,10,0,5,5,1,0,0,205.50932,205.50932,0,0,0,0,2,1,1,0,4.4514475,0,40.31,50.81,53,55,5,1,1,0,1,9,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 -3149,3890,6970,6969,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.8299789,9.4289179,0,2,2,-73.001358,0,-9,-9,2019,9,0,37,-9,1,1,0,53.644871,53.644871,0,0,0,0,0,1,1,0,5.333087,0,53,55,40.31,50.81,8,1,1,0,0,1,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 -3149,3890,6971,-9,6969,6970,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.92975,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,535.25,479637.06,251154.69,402845.47,175092.16,18692.912 -3150,3891,6972,6973,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,9.1239338,9.0145025,0,7,-3,76.261314,0,2,-9,2019,29,11,40,44,1,11,0,16.878632,16.878632,0,0,0,0,0,0,0,0,0,0,25.64,49.37,57.06,57.76,3.333333333333333,4,2,0,0,9,2,5,0,838.5,297965.38,60113.262,157070.13,19868.6,3543.3213 -3150,3891,6973,6972,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5389042,8.3788662,0,7,3,161.93913,0,2,1,2019,7,1,40,39,1,1,0,13.390297,13.390297,0,0,0,0,0,0,0,0,0,0,57.06,57.76,25.64,49.37,10,1,1,0,0,8,2,5,0,838.5,297965.38,60113.262,157070.13,19868.6,3543.3213 -3151,3892,6974,6975,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.0347862,7.7596965,0,1,5,-81.986069,-9,3,2,2019,10,0,56,0,1,0,0,7.7077003,7.7077003,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,8,6,5,0,541.5,832187.31,784826.69,171496.58,22902.246,2853.6301 -3151,3892,6975,6974,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.2439213,8.2053461,0,1,-5,-69.359261,-9,3,3,2019,11,0,40,0,1,0,0,12.705559,12.705559,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,0,541.5,832187.31,784826.69,171496.58,22902.246,2853.6301 -3151,3893,6976,-9,6975,6974,1,1,24,0,0,0,2,2,-9,0,5,6.4610286,6.7969279,0,0,0,-1045.7559,-9,2,2,2019,10,0,15,0,1,0,1,6.0947332,6.0947332,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,1,8,6,2,0,2771,146468.53,0,0,0,462.98703 -3152,3894,6977,6979,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,7.1879654,7.0927114,0,25,0,-44.223625,0,3,3,2019,5,0,17,11,1,0,0,10.011413,10.011413,0,0,0,0,0,0,0,0,3.1009996,0,60.13,49.27,44.67,52.97,8.333333333333334,1,1,0,0,13,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 -3152,3894,6978,-9,6977,6979,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.65344,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 -3152,3894,6979,6977,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.5216141,9.4784927,0,27,0,113.66881,0,2,1,2019,11,0,48,47,1,0,0,27.776859,27.776859,0,0,0,0,0,0,0,0,3.1085675,0,44.67,52.97,60.13,49.27,3.333333333333333,1,1,0,0,12,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 -3152,3894,6980,-9,6977,6979,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1249,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 -3152,3894,6981,-9,6977,6979,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1081.3571,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1123.8,1504157.5,478366.84,836247.56,39387.598,5765.2075 -3153,3895,6982,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1058.5293,-9,3,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,1,0,5,1,0,2665,-3060.543,0,0,0,1390.6936 -3154,3896,6983,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.0619841,8.2572861,0,0,0,-1076.6453,0,3,3,2019,9,0,31,31,1,0,0,12.310722,12.310722,0,0,0,0,0,0,0,0,2.4001167,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,357,264116.09,280521.06,487247.91,0,1657.5729 -3154,3897,6984,-9,6983,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5590668,8.2711554,0,0,0,-1114.7135,-9,2,-9,2019,10,0,40,0,1,1,1,13.225728,13.225728,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,7,4,1,4256,-150028.02,0,0,0,1858.0236 -3155,3898,6985,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.2439919,7.682395,0,0,-1083.2775,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9424396,8.3619213,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,703,1060875.1,560343.63,227648.53,0,1681.4803 -3156,3899,6986,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1007.42,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.61,16.05,-9,-9,3.333333333333333,1,1,0,0,5,11,1,1,805,-135930.7,0,0,0,1379.7056 -3157,3900,6987,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,4,0,4.2101712,4.542027,0,0,-977.33466,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6347089,4.3481908,62.57,42.78,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,193,204867.05,119732.68,0,0,742.68842 -3158,3901,6988,6989,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3624172,7.1865816,9,23,130.12234,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2386751,63.56,36.87,49.28,51.53,8.333333333333334,1,1,0,0,0,8,3,0,497.5,1536349.3,-32656.168,862436.38,0,2413.0876 -3158,3901,6989,6988,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.20576,7.0135989,0,9,-23,-32.943378,0,2,3,2019,7,0,30,30,1,0,0,6.5614572,6.5614572,0,0,0,0,2,1,1,0,0,0,49.28,51.53,63.56,36.87,6.666666666666667,1,1,0,0,10,8,3,0,497.5,1536349.3,-32656.168,862436.38,0,2413.0876 -3158,3902,6990,-9,6989,6988,1,1,18,0,0,0,2,2,-9,0,4,6.812387,7.3740973,0,0,0,-931.44592,0,2,2,2019,6,0,20,0,1,0,1,6.1601701,6.1601701,0,0,0,0,2,1,1,0,0,0,44.94,53.43,-9,-9,8.333333333333334,1,1,0,0,1,8,2,0,191,773291.44,-9758.7959,903795.75,0,1069.8975 -3159,3903,6991,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.8237,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,37.87,35.49,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,585,-244734.38,0,0,0,2100.9597 -3160,3904,6992,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1792498,8.2656727,0,0,0,-938.93213,0,2,2,2019,8,1,47,37,1,1,0,10.455482,10.455482,0,0,0,0,0,0,0,0,0,0,59.46,46.99,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,221,223939.78,111864.7,132544.31,112863.13,671.73529 -3161,3905,6993,6994,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.879281,8.0822029,0,3,-1,95.769249,-9,2,1,2019,12,0,40,0,1,2,0,7.6049151,7.6049151,0,0,0,0,0,0,0,0,2.7507331,0,46,50,58.15,52.91,7,1,1,0,0,1,4,4,1,1413.5,1827829,1497615.3,215349.94,0,2574.3345 -3161,3905,6994,6993,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.4134579,8.1263781,0,3,1,40.416218,0,2,2,2019,10,1,50,50,1,1,0,9.7725019,9.7725019,0,0,0,0,0,0,0,0,2.8112183,0,58.15,52.91,46,50,8.333333333333334,1,1,0,0,8,4,4,1,1413.5,1827829,1497615.3,215349.94,0,2574.3345 -3162,3906,6995,6997,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.259181,8.3543653,0,16,-6,-22.557755,0,2,3,2019,11,0,25,24,1,0,0,14.771328,14.771328,0,0,0,0,0,1,1,0,0,0,51.24,58.84,60.42,43.74,8.333333333333334,1,1,0,0,8,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 -3162,3906,6996,-9,6995,6997,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.43854,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 -3162,3906,6997,6995,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,9.0875616,9.0051088,0,6,6,21.336021,0,2,2,2019,11,0,35,94,1,0,0,23.031069,23.031069,0,0,0,0,0,1,1,0,0,0,60.42,43.74,51.24,58.84,8.333333333333334,1,1,0,0,8,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 -3162,3906,6998,-9,6995,6997,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.6804,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,442.5,58097.48,270539.97,112974.12,49449.469,3909.489 -3163,3907,6999,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0971928,7.7445531,0,0,0,-982.90308,0,-9,-9,2019,11,0,40,45,1,0,0,9.9155273,9.9155273,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,259,87714.844,349734.59,0,0,1646.264 -3164,3908,7000,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3746004,8.1756792,0,0,0,-949.92346,0,2,-9,2019,8,0,45,45,1,0,0,10.954456,10.954456,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,13,10,4,1,161,163963.63,86129.516,94626.727,26258.951,1375.2007 -3165,3909,7001,7002,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.7176628,5.9253888,53,-3,-27.019934,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,14.241104,13.154185,131.43498,0,1,1,0,5.2562418,5.8100643,51,46,53,46,7,1,1,0,0,3,10,2,1,635,319953.94,39843.574,425851.5,0,953.23505 -3165,3909,7002,7001,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.4218111,4.9609113,53,3,-81.595467,0,-9,-9,2019,34,12,0,0,4,12,0,0,0,1,28.677227,24.213844,274.20523,0,1,1,0,5.6765847,4.9841728,53,46,51,46,0,1,1,0,0,4,10,2,1,635,319953.94,39843.574,425851.5,0,953.23505 -3166,3910,7003,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,8.2081366,7.8334064,0,0,-1021.4111,0,1,2,2019,11,0,0,0,4,0,0,0,0,1,6.8344884,0,66.447975,0,1,1,0,5.9568243,8.0255423,48.6,39.73,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,363,703411.56,211885.52,190724.86,0,1998.6273 -3167,3911,7004,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.6570902,8.0774527,0,0,0,-794.63733,0,1,1,2019,13,3,37,37,1,3,0,13.95859,13.95859,0,0,0,0,0,0,0,0,1.8574045,0,49.46,56.91,-9,-9,5,1,1,0,0,4,10,4,0,572,297372.81,10831.983,0,0,1742.1243 -3168,3912,7005,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.18799,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.92,41.51,-9,-9,10,1,1,0,0,0,6,1,0,470,41868.066,0,0,0,1476.8164 -3169,3913,7006,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.9152985,7.8687458,0,0,0,-1112.5608,0,3,3,2019,8,0,53,53,1,0,0,6.7373133,6.7373133,0,0,0,0,0,0,0,0,0,0,51.83,42.1,-9,-9,8.333333333333334,4,5,0,0,11,11,4,0,934,159776.23,53172.125,0,0,666.22614 -3170,3914,7007,7008,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.5759139,6.1366043,44,4,-13.715167,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.268455,46.8,55.75,29.59,43.23,8.333333333333334,1,1,0,0,3,9,2,1,1106,843658,575882.94,294660.03,0,1565.7767 -3170,3914,7008,7007,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,4.3344922,4.1285653,9,-4,65.38652,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,4.2380347,4.2738061,29.59,43.23,46.8,55.75,6.666666666666667,1,1,0,1,0,9,2,1,1106,843658,575882.94,294660.03,0,1565.7767 -3171,3915,7009,7010,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.1435518,7.9221449,2.7754498,36,8,60.13018,0,2,2,2019,10,0,23,22,1,0,0,10.492466,10.492466,0,0,0,0,0,1,1,0,0,3.1892469,49.45,51.4,62.39,56.71,8.333333333333334,1,1,0,0,9,11,5,1,1221.5,145992.66,52171.457,458390.69,115730.12,5173.1455 -3171,3915,7010,7009,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.6233902,9.1234913,8.2445297,36,-8,-116.41193,0,3,2,2019,6,0,30,30,1,0,0,22.061319,22.061319,0,0,0,0,0,1,1,0,0,8.3636951,62.39,56.71,49.45,51.4,8.333333333333334,1,1,0,0,9,11,5,1,1221.5,145992.66,52171.457,458390.69,115730.12,5173.1455 -3172,3916,7011,7012,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.7465086,8.5911732,0,37,2,-16.175886,0,3,3,2019,12,0,46,90,1,0,0,15.30182,15.30182,0,0,0,0,0,0,0,0,0,0,56.07,49.95,45.32,54.77,6.666666666666667,4,2,0,0,13,5,5,1,350.5,3711194.5,2968114,533464.31,0,3861.4629 -3172,3916,7012,7011,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1609411,8.3615694,0,37,-2,-80.871246,0,3,3,2019,10,0,47,48,1,0,0,10.391017,10.391017,0,0,0,0,0,0,0,0,6.5194445,0,45.32,54.77,56.07,49.95,8.333333333333334,1,1,0,0,11,5,5,1,350.5,3711194.5,2968114,533464.31,0,3861.4629 -3173,3917,7013,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,7.8785596,7.8639464,0,0,0,-1036.4791,0,-9,-9,2019,5,0,42,42,1,0,0,8.1023006,8.1023006,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,9,8,4,0,594,335405,0,256862.66,0,801.00488 -3174,3918,7014,7015,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.7309413,6.629262,9,-12,6.5475321,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5710917,42.71,40.35,55.79,52.62,10,1,1,0,0,0,13,2,1,408,727538.63,205679.78,410074.88,0,2416.7217 -3174,3918,7015,7014,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.5908127,6.8165669,9,12,129.8239,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0704021,55.79,52.62,42.71,40.35,10,1,1,0,0,0,13,2,1,408,727538.63,205679.78,410074.88,0,2416.7217 -3175,3919,7016,7017,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.578249,8.673624,0,22,0,-87.05275,-9,3,3,2019,12,0,37,0,1,2,0,17.855211,17.855211,0,0,0,0,0,0,0,0,2.1768088,0,48,49,59.32,46.98,7,3,4,0,0,1,8,5,1,741,849819,55929.898,744410.25,10082.835,4475.9551 -3175,3919,7017,7016,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.7653904,8.4555292,0,20,0,9.1029873,0,3,1,2019,9,0,44,37,1,0,0,18.84371,18.84371,0,0,0,0,0,0,0,0,2.0307722,0,59.32,46.98,48,49,10,3,4,0,0,12,8,5,1,741,849819,55929.898,744410.25,10082.835,4475.9551 -3175,3920,7018,-9,7016,7017,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1082.6731,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,4.0927596,0,46,59,-9,-9,7,3,4,0,0,0,8,1,1,400,108934.36,0,0,0,562.04956 -3176,3921,7019,7020,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,44,-1,0,0,3,3,2019,13,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,52.5,50,47,0,1,1,1,1,0,13,1,1,344.5,-64406.141,0,0,0,759.67126 -3176,3921,7020,7019,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,44,1,0,0,3,3,2019,11,0,0,40,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,37.17,52.5,7,1,1,0,1,8,13,1,1,344.5,-64406.141,0,0,0,759.67126 -3177,3922,7021,-9,7024,7022,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.15216,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 -3177,3922,7022,7024,-9,-9,1,1,39,0,4,0,3,3,-9,1,4,0,0,0,22,4,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,2,3,0,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 -3177,3922,7023,-9,7024,7022,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.53809,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 -3177,3922,7024,7022,-9,-9,1,0,35,0,4,0,3,3,-9,0,4,0,0,0,22,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,2,1,0,678.25,103765.03,0,0,0,3235.7197 -3178,3923,7025,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1017.2049,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.57,55.37,-9,-9,5,1,1,1,1,5,13,1,0,1120,85270.156,0,0,0,867.8822 -3179,3924,7026,7027,-9,-9,1,1,41,1,1,0,1,1,-9,0,3,9.3730907,9.6422424,0,5,5,-125.32774,0,1,1,2019,8,0,35,40,1,0,0,52.35038,52.35038,0,0,0,0,0,0,0,0,3.0860391,0,55.47,52.91,33.12,61.85,8.333333333333334,1,1,0,0,10,12,5,1,676,253547.98,42465.285,311587.19,157240.11,4446.2588 -3179,3924,7027,7026,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,5,-5,-114.76589,0,-9,-9,2019,15,3,0,45,3,3,0,0,0,0,0,0,0,0,0,0,0,1.7982858,0,33.12,61.85,55.47,52.91,8.333333333333334,1,1,0,0,4,12,5,1,676,253547.98,42465.285,311587.19,157240.11,4446.2588 -3179,3924,7028,-9,7027,7026,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.6697,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,676,253547.98,42465.285,311587.19,157240.11,4446.2588 -3180,3925,7029,-9,7030,7031,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-849.43817,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,0,327,353973.72,206894.84,163240.31,95023.953,2356.814 -3180,3925,7030,7031,-9,-9,1,0,33,0,1,0,2,2,-9,0,5,7.5512519,7.8243604,0,10,-1,.90824741,0,2,2,2019,6,0,32,32,1,0,0,6.8040929,6.8040929,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,5,1,4,0,327,353973.72,206894.84,163240.31,95023.953,2356.814 -3180,3925,7031,7030,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.4036493,8.1271458,0,10,1,57.354668,0,2,1,2019,6,0,45,52,1,0,0,10.628025,10.628025,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,6.666666666666667,1,1,0,0,7,1,4,0,327,353973.72,206894.84,163240.31,95023.953,2356.814 -3181,3926,7032,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.492928,7.6366658,0,0,-1072.209,0,3,2,2019,24,9,0,0,4,9,0,0,0,1,0,33.917267,0,0,1,1,0,0,7.6583037,34.98,23.32,-9,-9,1.666666666666667,1,1,0,0,0,2,3,0,289,428935.91,39079.254,58050.434,0,2134.4648 -3182,3927,7033,-9,7035,7034,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1017.0508,-9,1,1,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,34.85,63.73,-9,-9,8.333333333333334,4,2,0,0,1,12,5,1,601.66669,1608193.5,616517.44,217371.91,0,10975.832 -3182,3927,7034,7035,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.6078348,8.5396814,0,9,1,-97.657166,0,2,2,2019,7,0,50,50,1,0,0,14.538607,14.538607,0,0,0,0,0,1,1,0,9.1006231,0,54.2,57.49,37.02,31.83,8.333333333333334,4,2,0,0,10,12,5,1,601.66669,1608193.5,616517.44,217371.91,0,10975.832 -3182,3927,7035,7034,-9,-9,1,0,47,0,0,0,1,1,-9,1,2,0,7.7809701,7.6243238,9,-1,35.500843,0,3,1,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,8.0066223,7.5606227,37.02,31.83,54.2,57.49,8.333333333333334,4,2,0,0,8,12,5,1,601.66669,1608193.5,616517.44,217371.91,0,10975.832 -3182,3928,7036,-9,7035,7034,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-877.8114,-9,1,1,2019,9,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,61,-9,-9,10,4,2,0,0,0,12,1,1,679,52178.52,0,0,0,0 -3183,3929,7037,-9,7039,7040,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.37872,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 -3183,3929,7038,-9,7039,7040,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.14587,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 -3183,3929,7039,7040,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,9.5268764,9.2320261,0,9,-2,2.6915264,0,2,1,2019,14,3,40,37,1,3,0,32.251373,32.251373,0,0,0,0,7,1,1,0,3.0052004,0,48.18,61.8,46.85,51.26,8.333333333333334,1,1,0,0,10,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 -3183,3929,7040,7039,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.2717609,8.2962732,0,9,2,97.428055,0,2,2,2019,10,0,25,20,1,0,0,18.14543,18.14543,0,0,0,0,0,1,1,0,8.5938282,0,46.85,51.26,48.18,61.8,6.666666666666667,1,1,0,0,8,6,5,1,446.5,425065.03,-30301.012,426801.5,163539.75,7710.7139 -3184,3930,7041,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,0,0,0,0,-940.63464,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,2.4755247,0,24.135347,0,1,1,0,0,0,37.36,28.67,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,852,-268848.53,0,0,0,1892.0104 -3185,3931,7042,7043,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.222846,9.1547394,7.5182977,35,2,49.230213,0,2,2,2019,4,1,24,46,1,1,0,23.505169,23.505169,0,0,0,0,0,0,0,0,6.9603701,8.3369293,57.06,57.76,46.88,60.96,0,1,1,0,0,9,12,4,1,1198.5,1422452.5,1096471.5,364408.69,197127.98,1367.5127 -3185,3931,7043,7042,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,35,-2,37.797253,0,2,2,2019,13,1,0,41,4,1,0,0,0,0,0,0,0,0,0,0,0,4.1694655,0,46.88,60.96,57.06,57.76,6.666666666666667,1,1,0,0,9,12,4,1,1198.5,1422452.5,1096471.5,364408.69,197127.98,1367.5127 -3186,3932,7044,7045,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.9637704,7.0038252,41,-5,-23.107134,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.6433678,7.0446496,48.12,42.71,57.73,54.53,8.333333333333334,1,1,0,0,4,12,3,1,357.5,1007390.5,899977.25,145996.44,0,2752.1565 -3186,3932,7045,7044,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.1564131,8.0387487,41,5,-89.224213,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.2441807,7.9308648,57.73,54.53,48.12,42.71,8.333333333333334,1,1,0,0,8,12,3,1,357.5,1007390.5,899977.25,145996.44,0,2752.1565 -3187,3933,7046,7047,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7941403,7.5604806,46,-1,-37.89674,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.0141711,7.3960538,43.21,47.68,60.84,34.45,10,1,1,0,0,4,5,4,1,559.5,2299584.5,1578407.8,389774.41,0,4620.7607 -3187,3933,7047,7046,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.1793756,8.2366438,46,1,46.101105,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.714076,8.0401373,60.84,34.45,43.21,47.68,8.333333333333334,1,1,0,0,7,5,4,1,559.5,2299584.5,1578407.8,389774.41,0,4620.7607 -3188,3934,7048,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,0,0,0,0,0,-972.53046,-9,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,2,0,0,0,3.8133473,0,23.45,56.76,-9,-9,5,1,1,1,0,10,10,1,0,954,-70415.5,0,0,0,8.5475368 -3189,3935,7049,7050,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.3715668,9.4697771,6.4712605,30,-1,120.04198,0,2,2,2019,11,1,42,35,1,1,0,37.502819,37.502819,0,0,0,0,0,0,0,0,0,7.150425,49.04,55.86,54.37,44.27,5,3,4,0,0,9,8,5,1,984.5,1145867.3,467013.5,632210.63,145827.47,5119.7676 -3189,3935,7050,7049,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,8.0624638,8.1172285,0,32,1,-123.14908,0,3,3,2019,8,0,36,36,1,0,0,8.9848251,8.9848251,0,0,0,0,0,0,0,0,0,0,54.37,44.27,49.04,55.86,6.666666666666667,4,2,0,0,11,8,5,1,984.5,1145867.3,467013.5,632210.63,145827.47,5119.7676 -3189,3936,7051,-9,7050,7049,1,1,28,0,0,0,2,2,-9,0,4,7.9727898,7.7275777,0,0,0,-896.8396,0,2,2,2019,13,2,38,38,1,2,1,9.2745399,9.2745399,0,0,0,0,0,0,0,0,0,0,40.18,62.68,-9,-9,1.666666666666667,3,4,0,0,7,8,4,1,3834,195503.19,0,0,0,1598.6847 -3189,3937,7052,-9,7050,7049,1,0,24,0,0,0,2,2,-9,0,2,8.2276344,8.0608397,0,0,0,-878.91736,0,2,1,2019,19,8,46,45,1,8,1,10.028234,10.028234,0,0,0,0,0,0,0,0,0,0,23.38,53.01,-9,-9,5,3,4,0,0,6,8,4,1,935,160326.66,24177.66,0,0,1646.6292 -3190,3938,7053,7054,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.1515837,7.818203,0,2,1,32.283161,0,-9,-9,2019,13,1,37,38,1,1,0,8.5846357,8.5846357,0,0,0,0,0,0,0,0,.8663646,0,34.46,61.83,49.63,54.22,6.666666666666667,1,1,0,0,6,11,4,1,602.5,80785.5,338.72949,114313.59,77702.938,1984.6003 -3190,3938,7054,7053,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.9736223,7.9448013,0,2,-1,74.250778,-9,-9,-9,2019,6,0,50,0,1,0,0,6.7196493,6.7196493,0,0,0,0,0,0,0,0,0,0,49.63,54.22,34.46,61.83,8.333333333333334,1,1,0,0,0,11,4,1,602.5,80785.5,338.72949,114313.59,77702.938,1984.6003 -3191,3939,7055,7056,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.3084621,6.3337545,12,12,-193.9991,0,2,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7502918,44.75,36.71,49.86,55.31,3.333333333333333,1,1,0,1,0,7,2,0,388,489085.31,239805.88,0,0,1112.3 -3191,3939,7056,7055,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,0,0,0,12,-12,-4.3159752,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.86,55.31,44.75,36.71,6.666666666666667,2,3,0,1,0,7,2,0,388,489085.31,239805.88,0,0,1112.3 -3192,3940,7057,7058,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,8.9600525,8.5209198,0,39,-4,-25.478836,0,3,1,2019,9,1,47,47,1,1,0,13.677432,13.677432,0,0,0,0,7,0,0,0,.72911066,0,60.03,50.88,51,48,8.333333333333334,1,1,0,0,11,5,4,1,732,1355622.8,1135772.1,199997.56,0,2874.23 -3192,3940,7058,7057,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,6.5025673,6.9272475,0,39,4,-114.93082,0,3,3,2019,10,0,20,20,1,1,0,5.6536994,5.6536994,0,0,0,0,0,0,0,0,2.9207249,0,51,48,60.03,50.88,7,1,1,0,0,11,5,4,1,732,1355622.8,1135772.1,199997.56,0,2874.23 -3193,3941,7059,7060,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.7402954,9.7372894,0,32,2,-47.767403,0,2,1,2019,6,0,21,10,1,0,0,103.94012,103.94012,0,0,0,0,0,0,0,0,7.665617,0,57.33,53.46,52,53,8.333333333333334,1,1,0,0,8,5,5,1,717.5,4657419.5,4553752,194643.41,0,9336.8809 -3193,3941,7060,7059,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,32,-2,-136.69614,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,8.0044537,0,52,53,57.33,53.46,8,1,1,0,0,0,5,5,1,717.5,4657419.5,4553752,194643.41,0,9336.8809 -3194,3942,7061,7062,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.980114,7.8869872,0,7,-2,31.689318,0,3,3,2019,11,0,40,70,1,0,0,9.0248547,9.0248547,0,0,0,0,7,0,0,0,4.5268998,0,50.03,52.62,59.32,49.66,8.333333333333334,1,1,0,0,8,9,5,1,845.5,526029.88,119147.98,359341.94,53278.555,8745.2676 -3194,3942,7062,7061,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.6354198,9.7916307,0,7,2,1.1519344,0,2,2,2019,6,0,30,42,1,0,0,67.746361,67.746361,0,0,0,0,2,0,0,0,7.4495468,0,59.32,49.66,50.03,52.62,8.333333333333334,1,1,0,0,8,9,5,1,845.5,526029.88,119147.98,359341.94,53278.555,8745.2676 -3194,3943,7063,-9,7061,7062,1,1,24,0,0,0,2,2,-9,0,4,6.7860579,6.8217111,0,0,0,-1003.0226,0,3,2,2019,4,0,35,30,1,0,1,3.1338639,3.1338639,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,292,-483332.44,0,0,0,308.07248 -3194,3944,7064,-9,7061,7062,1,1,23,0,0,0,2,2,-9,0,3,4.4102359,4.161881,0,0,0,-1081.1208,0,3,2,2019,12,0,40,32,1,0,1,.20643637,.20643637,0,0,0,0,0,0,0,0,3.1996465,0,58.47,50.22,-9,-9,1.666666666666667,1,1,0,0,5,9,2,1,143,-7134.8032,0,0,0,929.41187 -3195,3945,7065,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,9.3293409,8.7740192,0,0,-1044.963,0,-9,2,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,0,0,0,0,8.0693293,8.864234,37.67,27.38,-9,-9,3.333333333333333,1,1,0,0,8,8,5,1,106,2092341,1364887.6,474074.13,0,3999.1155 -3196,3946,7066,7067,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.7706199,7.7226229,0,25,5,16.846773,0,-9,-9,2019,6,0,40,35,1,0,0,7.1754522,7.1754522,0,0,0,0,0,0,0,0,1.5776891,0,59.43,58.05,54.37,54.8,10,1,1,0,0,8,4,4,1,324,410442.22,224171.42,51381.184,0,1424.3911 -3196,3946,7067,7066,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3519559,7.8222141,0,24,-5,-5.3054199,0,2,2,2019,8,0,30,31,1,0,0,7.2932992,7.2932992,0,0,0,0,7,0,0,0,0,0,54.37,54.8,59.43,58.05,1.666666666666667,1,1,0,0,9,4,4,1,324,410442.22,224171.42,51381.184,0,1424.3911 -3197,3947,7068,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.2575016,8.3406239,0,0,0,-986.1405,0,-9,-9,2019,27,9,20,24,1,9,0,21.626373,21.626373,0,0,0,0,0,0,0,0,2.6207886,0,33.35,42.63,-9,-9,3.333333333333333,1,1,0,1,11,10,4,0,792,140568.94,40038.074,0,0,1734.3292 -3198,3948,7069,7070,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.6423435,8.4653683,0,5,-2,55.618538,0,-9,-9,2019,6,0,42,42,1,0,0,14.888431,14.888431,0,0,0,0,0,0,0,0,2.9351861,0,48,59,39.16,62.84,8.333333333333334,1,1,0,0,5,7,5,1,778.5,-13806.348,-31024.906,224681.78,174380.11,5078.8149 -3198,3948,7070,7069,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.947753,8.6036568,0,5,2,-99.413643,0,2,3,2019,10,2,40,36,1,2,0,18.462914,18.462914,0,0,0,0,0,0,0,0,6.7431154,0,39.16,62.84,48,59,8.333333333333334,1,1,0,0,10,7,5,1,778.5,-13806.348,-31024.906,224681.78,174380.11,5078.8149 -3199,3949,7071,7072,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.4957867,9.8619032,0,8,-4,-88.441071,0,2,2,2019,0,0,70,60,1,0,0,26.265034,26.265034,0,0,0,0,0,0,0,0,5.5552249,0,62.49,55.09,53.75,54.92,10,1,1,0,0,9,4,5,1,585.5,1435586,1004821.1,274340.19,100673.34,24433.508 -3199,3949,7072,7071,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.874239,8.1433754,0,8,4,59.797947,0,3,3,2019,8,0,30,32,1,0,0,9.9810572,9.9810572,0,0,0,0,0,0,0,0,0,0,53.75,54.92,62.49,55.09,10,1,1,0,0,9,4,5,1,585.5,1435586,1004821.1,274340.19,100673.34,24433.508 -3200,3950,7073,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,0,7.1912189,6.7361135,0,0,-961.67053,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0221829,60.06,29.08,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,728,597699.06,74905.375,314834.13,0,986.40863 -3201,3951,7074,7075,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,3.8945978,3.7010441,41,-1,-33.534485,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0373211,4.015121,62,41.73,57.41,54.88,8.333333333333334,1,1,0,0,8,1,3,1,731,1666221.9,505554.81,288855.13,0,1890.2352 -3201,3951,7075,7074,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.1851597,8.2712879,41,1,66.280731,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.6682587,8.3612766,57.41,54.88,62,41.73,10,1,1,0,0,8,1,3,1,731,1666221.9,505554.81,288855.13,0,1890.2352 -3202,3952,7076,7077,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.6340017,9.0687609,0,2,20,-181.98985,0,-9,-9,2019,24,12,38,37,1,12,0,19.195623,19.195623,0,0,0,0,0,0,0,0,3.7413819,0,29.92,54.38,31.13,53.27,6.666666666666667,1,1,0,0,0,11,5,1,714.5,690217.88,268463.81,166198.7,0,2968.2039 -3202,3952,7077,7076,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,7.8936367,8.1992102,0,2,-20,102.1321,0,2,2,2019,14,3,38,37,1,3,0,10.133083,10.133083,0,0,0,0,0,0,0,0,3.7651868,0,31.13,53.27,29.92,54.38,6.666666666666667,1,1,0,0,9,11,5,1,714.5,690217.88,268463.81,166198.7,0,2968.2039 -3203,3953,7078,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,7.0049477,6.9006376,0,0,0,-1043.4641,0,3,2,2019,6,0,20,24,1,0,0,6.1976991,6.1976991,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,10,13,3,1,589,-152960.25,0,142719.3,0,1423.3182 -3204,3954,7079,7080,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.6041117,8.7783461,0,22,-5,122.40701,0,2,2,2019,6,0,40,40,1,0,0,13.541062,13.541062,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.62,53.53,8.333333333333334,1,1,0,0,11,10,5,0,788,274273.09,-6649.665,296256.56,36140.617,3199.3853 -3204,3954,7080,7079,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9959183,8.3104916,0,22,5,.056884959,0,2,2,2019,6,0,46,44,1,0,0,7.0035119,7.0035119,0,0,0,0,0,0,0,0,2.1743619,0,54.62,53.53,58.32,50.22,8.333333333333334,1,1,0,0,11,10,5,0,788,274273.09,-6649.665,296256.56,36140.617,3199.3853 -3204,3955,7081,-9,7080,7079,1,0,22,0,0,0,2,2,-9,0,3,7.3322158,7.3495908,0,0,0,-1030.2788,0,2,3,2019,11,0,39,36,1,0,1,5.6294479,5.6294479,0,0,0,0,0,0,0,0,0,0,50.65,53.71,-9,-9,6.666666666666667,1,1,0,0,5,10,3,0,1920,-161566.53,0,0,0,898.7146 -3205,3956,7082,7083,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.5477867,7.2063169,10,-14,178.55098,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2243943,50.03,52.62,40.04,49.39,5,4,2,0,0,8,12,3,1,689,2358861.5,1107541.3,570948.56,0,2819.3835 -3205,3956,7083,7082,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.6472955,8.171011,37,14,-119.06331,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.7880335,40.04,49.39,50.03,52.62,8.333333333333334,1,1,0,0,8,12,3,1,689,2358861.5,1107541.3,570948.56,0,2819.3835 -3206,3957,7084,7087,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,9.5876036,9.2590933,0,7,3,-114.66225,0,2,2,2019,15,3,5,7,1,3,0,362.7886,362.7886,0,0,0,0,0,1,1,0,5.5666609,0,38.86,59.06,51.77,58.57,3.333333333333333,1,1,0,0,5,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 -3206,3957,7085,-9,7084,7087,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.448,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 -3206,3957,7086,-9,7084,7087,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1031.9581,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 -3206,3957,7087,7084,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.2794409,9.2489967,0,7,-3,-55.321438,0,1,1,2019,11,0,40,55,1,0,0,27.176327,27.176327,0,0,0,0,0,1,1,0,5.8502884,0,51.77,58.57,38.86,59.06,8.333333333333334,1,1,0,0,9,12,5,1,1461.75,429584.06,491845.44,305004.38,198563.2,10734.745 -3206,3958,7088,-9,7084,7087,1,0,19,0,2,0,2,2,-9,0,1,0,0,0,0,0,-961.9115,1,2,1,2019,21,7,0,45,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,251,-503401.03,0,0,0,0 -3207,3959,7089,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.2736959,7.1998496,0,0,0,-893.4151,0,2,2,2019,8,0,20,25,1,0,0,8.2635698,8.2635698,0,0,0,0,0,1,1,0,6.0707717,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,10,5,3,0,94,-35743.68,0,0,0,853.97998 -3208,3960,7090,7091,-9,-9,1,1,64,0,0,0,1,1,-9,1,2,0,5.2237315,4.8603582,10,5,-19.219086,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2302475,67.01000000000001,22.25,57.06,57.76,8.333333333333334,1,1,0,0,0,10,3,0,906,204280.83,469914.06,0,0,2696.3052 -3208,3960,7091,7090,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.8175006,8.3383007,0,10,-5,55.520538,0,3,3,2019,9,0,47,39,1,0,0,8.3013105,8.3013105,0,0,0,0,2,1,1,0,0,0,57.06,57.76,67.01000000000001,22.25,0,1,1,0,1,11,10,3,0,906,204280.83,469914.06,0,0,2696.3052 -3208,3961,7092,-9,7091,7090,1,0,24,0,0,0,1,1,-9,0,5,8.143362,8.1168976,0,0,0,-1117.9486,0,2,1,2019,12,1,37,37,1,1,1,12.877366,12.877366,0,0,0,0,0,1,1,0,2.4219167,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,1347,-156166.83,72302.297,0,0,1406.0411 -3209,3962,7093,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1064.1886,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.79,64.22,-9,-9,10,1,1,0,0,0,11,1,1,762,-308189.78,0,0,0,702.38422 -3210,3963,7094,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1025.476,0,2,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.41,38.24,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,414,140903.38,73827.484,59805.66,0,1055.1339 -3211,3964,7095,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,3.8679607,3.9241257,0,0,-1032.6938,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,2.7053154,7.115406,22.541651,0,1,1,0,0,4.1106482,49.19,18.23,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,2065,138973.06,43616.41,31190.658,0,1018.1318 -3212,3965,7096,7097,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.2407465,7.3181849,46,0,-20.505627,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.3612452,59.07,43.05,52,48,6.666666666666667,1,1,0,0,9,9,3,1,743.5,651739.38,612536.31,170533.25,0,2571.3262 -3212,3965,7097,7096,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0022655,7.1049886,7,0,51.584492,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1952491,52,48,59.07,43.05,7,1,1,0,0,0,9,3,1,743.5,651739.38,612536.31,170533.25,0,2571.3262 -3213,3966,7098,7099,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,0,0,53,5,-24.175087,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,4.4463582,0,2,1,1,0,5.6102099,0,58.15,52.91,71.76000000000001,19.47,8.333333333333334,1,1,0,0,8,8,2,1,1105.5,331339.38,195664.61,266163.19,0,1125.8926 -3213,3966,7099,7098,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,7.3873849,7.289484,3.9127123,53,-5,62.600529,0,-9,-9,2019,6,0,24,24,1,0,0,7.843998,7.843998,0,0,0,0,0,1,1,0,4.5874424,4.1815767,71.76000000000001,19.47,58.15,52.91,8.333333333333334,1,1,0,0,9,8,2,1,1105.5,331339.38,195664.61,266163.19,0,1125.8926 -3213,3967,7100,-9,7099,7098,1,1,44,0,0,0,2,2,-9,0,4,8.8802786,8.5812988,0,0,0,-1120.5778,-9,3,3,2019,9,0,40,0,1,1,0,14.280459,14.280459,0,0,0,0,0,1,1,0,3.087749,0,52,55,-9,-9,7,1,1,0,0,1,8,5,1,166,-74599.789,47787.188,213715.72,185485.67,2435.3369 -3214,3968,7101,-9,7103,7104,1,0,26,0,0,0,2,2,-9,0,4,9.8033648,9.7177763,0,0,0,-916.24072,0,2,2,2019,9,2,50,30,1,2,1,46.270344,46.270344,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,1622,-110959.91,118496.55,0,0,17091.561 -3214,3969,7102,-9,7103,7104,1,1,21,0,0,0,2,2,-9,0,4,7.6186395,7.4436269,0,0,0,-836.21179,0,2,2,2019,8,0,45,20,1,0,1,4.2071509,4.2071509,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,4,4,3,1,611,219453.11,0,0,0,1560.064 -3214,3970,7103,7104,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.5394826,6.3927927,0,5,-1,162.33992,0,-9,-9,2019,12,2,30,24,1,2,0,2.6650128,2.6650128,0,0,0,0,0,0,0,0,0,0,51.77,58.57,51.83,57.2,8.333333333333334,1,1,0,0,9,4,5,1,76,2988221,2297781,431447.13,0,3059.0134 -3214,3970,7104,7103,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.9323683,9.117588,0,5,1,23.408489,0,-9,-9,2019,12,0,37,40,1,0,0,21.612564,21.612564,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.77,58.57,8.333333333333334,1,1,0,0,8,4,5,1,76,2988221,2297781,431447.13,0,3059.0134 -3215,3971,7105,-9,7106,7108,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.8701,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 -3215,3971,7106,7108,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.5423126,9.0274143,0,20,-5,91.905762,0,2,3,2019,14,3,53,48,1,3,0,14.562943,14.562943,0,0,0,0,0,1,1,0,3.0320568,0,46.98,59.35,57.33,53.46,8.333333333333334,1,1,0,0,12,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 -3215,3971,7107,-9,7106,7108,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.39429,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 -3215,3971,7108,7106,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.5925322,8.6215334,0,18,5,-163.69347,0,2,2,2019,7,0,53,47,1,0,0,9.9439411,9.9439411,0,0,0,0,0,1,1,0,1.0615846,0,57.33,53.46,46.98,59.35,8.333333333333334,1,1,0,0,12,1,5,1,487,190575.58,62858.984,237955.36,135330.83,3989.4155 -3216,3972,7109,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.8187923,8.7646637,0,0,0,-1099.1461,0,2,1,2019,7,0,42,40,1,0,0,15.016078,15.016078,0,0,0,0,0,0,0,0,6.9893231,0,51.39,59.18,-9,-9,1.666666666666667,1,1,0,0,9,5,5,1,1063,139324.28,120707.48,0,0,2934.2585 -3217,3973,7110,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,6.1034489,5.8839755,0,0,0,-983.80176,0,2,2,2019,12,0,35,30,1,0,0,1.3251004,1.3251004,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,620,145089.72,0,175065.33,0,-110.94377 -3218,3974,7111,7112,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8131275,8.9323292,0,3,-2,-32.437199,0,2,2,2019,15,5,38,39,1,5,0,19.669748,19.669748,0,0,0,0,2,0,0,0,3.3673036,0,47.66,52.33,58.9,37.87,8.333333333333334,1,1,0,0,7,10,5,1,530.5,254063,103522.02,277681.44,137310.77,4120.4668 -3218,3974,7112,7111,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.1791105,8.2085381,0,3,2,60.870037,0,-9,-9,2019,8,0,31,38,1,0,0,12.659544,12.659544,0,0,0,0,2,0,0,0,0,0,58.9,37.87,47.66,52.33,8.333333333333334,1,1,0,0,3,10,5,1,530.5,254063,103522.02,277681.44,137310.77,4120.4668 -3219,3975,7113,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.027422,8.122056,0,0,0,-1014.691,0,2,1,2019,7,0,40,30,1,0,0,9.0954189,9.0954189,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,1.666666666666667,1,1,0,1,10,5,4,1,146,640323.94,418398.34,0,0,749.38904 -3220,3976,7114,-9,7116,7117,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1100.7274,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 -3220,3976,7115,-9,7116,7117,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.32257,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 -3220,3976,7116,7117,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,20,-13,-38.326748,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2139158,0,35.61,59.41,57.33,53.46,10,1,1,0,0,8,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 -3220,3976,7117,7116,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,9.3582382,9.4303875,0,20,13,112.79488,0,2,2,2019,8,0,55,40,1,0,0,27.568525,27.568525,0,0,0,0,0,1,1,0,8.1161919,0,57.33,53.46,35.61,59.41,8.333333333333334,1,1,0,0,8,10,5,1,673,1215480.6,847486.63,338263.53,129570.33,7674.0234 -3221,3977,7118,7119,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,7,-6,8.8538256,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,29.951097,0,0,1,1,0,2.0173306,0,53.47,41.64,50.92,33.35,10,1,1,0,0,0,4,2,1,407.5,-29711.113,53879.785,72498.508,0,625.39819 -3221,3977,7119,7118,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.5244741,5.192224,7,6,-43.793056,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.9876084,5.2051992,50.92,33.35,53.47,41.64,8.333333333333334,1,1,0,0,0,4,2,1,407.5,-29711.113,53879.785,72498.508,0,625.39819 -3222,3978,7120,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1064.3839,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.9,28.21,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,134,-381999.31,0,0,0,456.70154 -3223,3979,7121,7122,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,7.6107903,8.2655754,7.2441158,35,-3,9.9195251,0,3,2,2019,7,0,35,36,1,0,0,5.1887898,5.1887898,0,0,0,0,27,1,1,0,5.5189271,7.3316054,54.2,57.49,49.6,35.49,8.333333333333334,1,1,0,0,10,10,4,1,885,262819.5,160437.91,227162.34,205678,4155.6528 -3223,3979,7122,7121,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,0,6.9228334,7.1003442,35,3,-63.287537,0,2,3,2019,11,0,0,11,3,0,0,0,0,0,0,0,0,2,1,1,0,5.5256648,6.8769569,49.6,35.49,54.2,57.49,8.333333333333334,1,1,0,0,9,10,4,1,885,262819.5,160437.91,227162.34,205678,4155.6528 -3224,3980,7123,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.8819213,7.8130636,7.6187425,0,0,-994.47821,0,2,3,2019,11,0,40,40,1,0,0,2.8739762,2.8739762,0,0,0,0,2,1,1,0,7.4322834,0,36.02,49.43,-9,-9,6.666666666666667,1,1,0,0,9,6,3,1,365,378951.31,536458.94,138964.66,0,2324.8047 -3225,3981,7124,7127,-9,-9,1,1,30,3,5,0,2,2,-9,0,4,8.0428886,8.2267017,0,6,1,-183.61794,0,-9,-9,2019,7,0,38,40,1,0,0,10.224718,10.224718,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.78,47.49,8.333333333333334,1,1,0,0,11,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 -3225,3981,7125,-9,7127,7124,1,0,2,3,5,1,3,0,-9,0,4,0,0,0,0,0,-921.51117,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 -3225,3981,7126,-9,7127,7124,1,0,4,3,5,1,3,0,-9,0,4,0,0,0,0,0,-882.47992,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 -3225,3981,7127,7124,-9,-9,1,0,29,3,5,0,2,2,-9,0,4,0,3.0878491,3.4494777,6,-1,-18.492577,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.8836422,0,45.78,47.49,54.2,57.49,8.333333333333334,1,1,0,0,1,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 -3225,3981,7128,-9,7127,7124,1,1,0,3,5,1,3,0,-9,0,4,0,0,0,0,0,-1164.765,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 -3225,3981,7129,-9,7127,7124,1,0,8,3,5,1,3,0,-9,0,4,0,0,0,0,0,-1142.916,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 -3225,3981,7130,-9,7127,7124,1,0,2,3,5,1,3,0,-9,0,4,0,0,0,0,0,-926.97729,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,1,936.71429,136465.7,-11889.902,0,0,2271.9358 -3226,3982,7131,7132,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.5917892,7.3355618,9,0,-46.653412,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3938594,7.7000818,55.76,52.64,44.02,60.7,8.333333333333334,1,1,0,0,9,6,3,1,355,241997.77,231196.72,134523.13,0,2900.4712 -3226,3982,7132,7131,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,9,0,-118.73063,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0998254,0,44.02,60.7,55.76,52.64,8.333333333333334,1,1,0,0,0,6,3,1,355,241997.77,231196.72,134523.13,0,2900.4712 -3227,3983,7133,7134,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.010169,8.0208683,59,4,-4.679306,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5031142,8.1742249,60.29,52.11,60,30.45,10,1,1,0,0,0,2,3,1,2387.5,845340.44,567763.13,162333.11,0,2839.3066 -3227,3983,7134,7133,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,59,-4,-83.917274,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.2979136,0,0,1,1,0,3.3222163,0,60,30.45,60.29,52.11,8.333333333333334,1,1,0,0,0,2,3,1,2387.5,845340.44,567763.13,162333.11,0,2839.3066 -3228,3984,7135,7136,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3484707,8.2156467,0,8,-1,-61.609894,-9,-9,-9,2019,5,0,28,0,1,0,0,15.577858,15.577858,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.77,55.87,10,1,1,0,0,2,9,5,1,277,504474.94,356359.91,424266.28,81186.609,3792.333 -3228,3984,7136,7135,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6401491,8.6083603,0,8,1,14.509904,0,3,3,2019,11,0,45,38,1,0,0,15.270019,15.270019,0,0,0,0,0,0,0,0,0,0,54.77,55.87,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,277,504474.94,356359.91,424266.28,81186.609,3792.333 -3229,3985,7137,7138,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.0103941,8.3405638,0,17,7,-7.3993797,0,3,3,2019,19,7,37,42,1,7,0,10.73036,10.73036,0,0,0,0,0,0,0,0,0,0,48.38,38.92,49.92,39.42,6.666666666666667,1,1,0,0,8,11,4,1,2334.5,349842.44,209190.59,200796.05,0,2913.5718 -3229,3985,7138,7137,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9726367,7.915998,0,17,-7,1.92742,0,2,3,2019,7,0,37,41,1,0,0,7.4907255,7.4907255,0,0,0,0,0,0,0,0,0,0,49.92,39.42,48.38,38.92,8.333333333333334,1,1,0,0,11,11,4,1,2334.5,349842.44,209190.59,200796.05,0,2913.5718 -3230,3986,7139,7140,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,17,0,90.555122,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.276998,0,60.52,53.2,52.4,55.58,8.333333333333334,1,1,0,0,9,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 -3230,3986,7140,7139,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,9.2296791,9.2052078,0,16,0,17.059065,0,1,1,2019,5,0,37,37,1,0,0,22.967752,22.967752,0,0,0,0,0,1,1,0,4.6817355,0,52.4,55.58,60.52,53.2,8.333333333333334,1,1,0,0,10,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 -3230,3986,7141,-9,7139,7140,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.4257,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 -3230,3986,7142,-9,7139,7140,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.33673,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,624.5,83273.156,0,365636.97,299759.06,3191.4912 -3231,3987,7143,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.2034178,8.1731596,6.1595998,0,0,-1062.2952,0,3,2,2019,16,5,40,40,1,5,0,9.5206013,9.5206013,0,0,0,0,0,0,0,0,5.8814645,6.5741944,37.25,51.69,-9,-9,6.666666666666667,4,2,0,0,9,6,4,1,556,289856.88,166053.28,199033.44,0,1320.4257 -3232,3988,7144,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.357985,7.207181,0,0,-1017.4171,0,2,3,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9394741,7.4540777,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,726,304479.09,258556.8,133977.63,0,584.73853 -3233,3989,7145,7146,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,9.1837568,9.0367918,0,8,-2,-55.115479,0,-9,-9,2019,18,6,55,60,1,6,0,22.485008,22.485008,0,0,0,0,0,0,0,0,2.247324,0,38.03,47.81,52.13,57.22,6.666666666666667,1,1,0,0,11,8,5,1,328,2077946.3,13603.893,1500703.8,0,4916.9209 -3233,3989,7146,7145,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.4731522,8.6002893,0,23,2,134.7415,0,2,2,2019,5,0,29,25,1,0,0,18.056467,18.056467,0,0,0,0,0,0,0,0,6.1283813,0,52.13,57.22,38.03,47.81,6.666666666666667,1,1,0,0,11,8,5,1,328,2077946.3,13603.893,1500703.8,0,4916.9209 -3233,3990,7147,-9,7146,7145,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-903.7699,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,8,1,1,632,113494.3,0,0,0,0 -3234,3991,7148,7149,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.1590509,8.5108509,0,1,-6,-196.13452,-9,2,1,2019,6,0,38,0,1,0,0,10.839274,10.839274,0,0,0,0,0,0,0,0,0,0,54.38,46.77,54.1,59.11,8.333333333333334,2,3,0,0,5,9,5,1,527,269396.56,-37658.766,231546.92,209309.59,4136.2109 -3234,3991,7149,7148,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.2920408,8.8268948,0,1,6,9.5032425,-9,3,2,2019,7,0,38,0,1,0,0,21.418097,21.418097,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.38,46.77,8.333333333333334,2,3,0,0,9,9,5,1,527,269396.56,-37658.766,231546.92,209309.59,4136.2109 -3235,3992,7150,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1140.4811,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.34,37.62,-9,-9,5,1,1,0,0,0,11,1,0,617,8468.751,0,0,0,-182.74655 -3236,3993,7151,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,4.819828,4.7178178,0,0,-1037.9351,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.507978,59.04,54.12,-9,-9,10,1,1,0,0,0,12,2,1,326,463506.53,0,174002.42,0,900.83453 -3237,3994,7152,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1109.296,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,6,1,0,209,75282.117,0,197114.28,0,754.50623 -3238,3995,7153,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1004.7307,0,3,3,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,34.27,-9,-9,5,2,3,0,0,0,8,2,0,414,-25811.393,0,0,0,0 -3238,3996,7154,-9,7153,-9,1,0,24,0,0,0,1,1,-9,0,3,7.4638696,7.4334464,0,0,0,-867.47339,0,3,-9,2019,17,5,37,37,1,5,1,4.8262272,4.8262272,0,0,0,0,0,0,0,0,0,0,30.8,45.19,-9,-9,5,2,3,0,0,6,8,3,0,346,85589.633,-8313.4951,0,0,269.61176 -3239,3997,7155,7156,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.8590946,8.3182659,0,22,-4,-1.1152278,0,3,3,2019,6,0,37,40,1,0,0,7.8021417,7.8021417,0,0,0,0,2,1,1,0,0,0,56.74,52.23,36.44,26.71,5,2,3,0,0,10,2,3,1,759,588301.94,255731.19,160486.72,64964.691,1669.8085 -3239,3997,7156,7155,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,0,0,22,4,-98.825035,0,3,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,36.44,26.71,56.74,52.23,5,2,3,0,1,5,2,3,1,759,588301.94,255731.19,160486.72,64964.691,1669.8085 -3239,3998,7157,-9,7156,7155,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1045.6476,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,41.95,37.91,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1202,-116715.05,0,0,0,-376.03271 -3239,3999,7158,-9,7156,7155,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-961.6944,-9,1,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,49.97,56.66,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1274,350264.69,0,0,0,0 -3240,4000,7159,7161,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,4,-7,-83.723801,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,3.1572187,0,62.39,56.71,54,54,10,2,3,0,0,1,8,2,1,680.66669,215876.91,0,231881.05,160037.33,1045.8359 -3240,4000,7160,-9,7159,7161,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.1759,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,1,680.66669,215876.91,0,231881.05,160037.33,1045.8359 -3240,4000,7161,7159,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,7.1819434,6.9233508,0,29,7,-35.372555,0,-9,-9,2019,9,0,40,40,1,1,0,2.2260063,2.2260063,0,0,0,0,2,1,1,0,0,0,54,54,62.39,56.71,8,2,3,0,0,9,8,2,1,680.66669,215876.91,0,231881.05,160037.33,1045.8359 -3240,4001,7162,-9,7159,7161,1,1,25,0,2,0,1,1,-9,0,3,7.5571418,8.1696177,0,0,0,-911.888,0,2,1,2019,12,0,35,40,1,2,1,13.270577,13.270577,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,5,2,3,0,0,2,8,4,1,1154,102588.7,0,0,0,1778.1704 -3240,4002,7163,-9,7159,7161,1,1,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-1005.5283,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,8,1,1,563,0,0,0,0,2063.7456 -3241,4003,7164,7166,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.1673985,8.1356354,0,25,-7,31.661263,0,2,2,2019,11,0,35,28,1,0,0,10.454015,10.454015,0,0,0,0,0,0,0,0,4.8058167,0,30.22,61.23,55.36,51.57,8.333333333333334,1,1,0,0,8,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 -3241,4003,7165,-9,7164,7166,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.42633,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 -3241,4003,7166,7164,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,9.3823147,9.5061436,0,7,7,2.4850395,0,-9,-9,2019,9,0,43,40,1,0,0,22.543001,22.543001,0,0,0,0,0,0,0,0,0,0,55.36,51.57,30.22,61.23,8.333333333333334,1,1,0,0,8,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 -3241,4003,7167,-9,7164,7166,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-875.17236,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,5,5,1,682.25,420391.47,190303.39,298431.25,91935.016,4920.4814 -3242,4004,7168,7169,-9,-9,1,0,46,0,0,0,1,1,-9,1,2,0,0,0,7,-23,-168.41365,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,3.7937901,0,26.64,29.87,48.79,18.63,1.666666666666667,1,1,0,0,0,11,2,1,544.5,-151168.59,0,0,0,1973.1975 -3242,4004,7169,7168,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.288362,6.231771,7,23,91.683289,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.0278404,5.7264318,48.79,18.63,26.64,29.87,5,1,1,0,0,1,11,2,1,544.5,-151168.59,0,0,0,1973.1975 -3243,4005,7170,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,6.6303911,6.8603415,0,0,0,-1063.0386,0,3,3,2019,10,0,40,40,1,1,0,1.8586485,1.8586485,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,3,4,0,1,5,8,2,0,378,585563.5,312157.25,218712.77,0,1710.1512 -3243,4006,7171,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1040.4913,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,3,4,0,0,0,8,1,0,1085,-117997.6,0,0,0,-12.699215 -3243,4007,7172,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.6893826,7.646904,0,0,0,-941.84137,0,3,2,2019,11,0,35,40,1,2,0,7.0968075,7.0968075,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,900,95202.68,-38362.742,0,0,862.64221 -3243,4008,7173,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-872.72675,1,3,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.14,32.64,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,663,66463.906,0,0,0,-35.213303 -3243,4009,7174,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1168.3495,1,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,438,-58411.824,0,0,0,0 -3243,4010,7175,-9,-9,-9,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-1028.7961,-9,-9,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,1047,-1068.9639,0,0,0,0 -3243,4011,7176,-9,-9,-9,1,1,27,0,0,1,1,0,0,0,5,0,0,0,0,0,-939.70538,-9,3,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,0,8,1,0,1282.5,-57350.926,0,0,0,0 -3243,4011,7177,-9,-9,7176,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1012.3291,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,1282.5,-57350.926,0,0,0,0 -3244,4012,7178,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.463994,8.4268398,0,0,0,-998.99689,0,1,1,2019,13,2,39,39,1,2,0,17.264376,17.264376,0,0,0,0,0,1,1,0,.5057649,0,47.87,43.07,-9,-9,8.333333333333334,4,2,0,0,5,2,5,0,342,108353.63,44018.809,208111.52,74205.508,1674.9567 -3244,4013,7179,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.6219053,8.1956873,4.7814069,0,0,-909.87134,0,-9,-9,2019,10,0,41,40,1,0,0,12.746113,12.746113,0,0,0,0,0,1,1,0,5.0372014,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,3,2,5,0,991,-18075.779,-26140.746,0,0,1372.0496 -3245,4014,7180,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2047834,8.3977499,0,0,0,-1056.5404,0,2,-9,2019,13,3,60,40,1,3,0,7.6299596,7.6299596,0,0,0,0,0,0,0,0,0,0,39.85,55.83,-9,-9,6.666666666666667,3,4,0,0,9,8,4,0,916,32028.08,0,0,0,1319.5068 -3246,4015,7181,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.8364334,8.759057,7.8804288,0,0,-829.6983,0,2,2,2019,14,3,55,47,1,3,0,12.825312,12.825312,0,0,0,0,0,0,0,0,5.7898145,8.1197863,40.33,58.26,-9,-9,5,1,1,0,0,9,7,5,1,739,98778.516,50595.227,0,0,3351.0095 -3246,4016,7182,-9,-9,7181,1,0,25,0,0,0,2,2,-9,0,4,7.0941281,7.2244205,0,0,0,-1027.2686,-9,-9,2,2019,11,0,39,0,1,2,1,3.8798373,3.8798373,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,7,3,1,825,-152930.67,0,0,0,589.95679 -3247,4017,7183,7184,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,9.0864096,9.0431042,0,4,4,-34.340168,0,-9,-9,2019,7,1,45,43,1,1,0,27.059406,27.059406,0,0,0,0,0,0,0,0,0,0,58.3,52.91,51.77,58.57,8.333333333333334,1,1,0,0,2,12,5,1,726.5,1806746.3,1560588.8,368869.78,219585.41,4088.2046 -3247,4017,7184,7183,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.0225935,8.4356384,0,4,-4,-32.806213,0,2,2,2019,9,0,40,37,1,0,0,9.8801842,9.8801842,0,0,0,0,0,0,0,0,0,0,51.77,58.57,58.3,52.91,8.333333333333334,1,1,0,0,5,12,5,1,726.5,1806746.3,1560588.8,368869.78,219585.41,4088.2046 -3248,4018,7185,7187,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.1476793,7.2522459,0,20,-10,70.945328,0,1,1,2019,7,0,16,20,1,0,0,9.4246225,9.4246225,0,0,0,0,0,1,1,0,2.731709,0,55.79,52.62,53.41,34.09,8.333333333333334,1,1,0,0,7,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 -3248,4018,7186,-9,7185,7187,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.6991,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 -3248,4018,7187,7185,-9,-9,1,1,54,0,2,0,1,1,-9,0,1,8.9201136,8.6820269,0,20,10,92.52726,0,2,3,2019,10,1,50,55,1,1,0,14.055087,14.055087,0,0,0,0,0,1,1,0,2.1490295,0,53.41,34.09,55.79,52.62,6.666666666666667,1,1,0,0,9,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 -3248,4018,7188,-9,7185,7187,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-973.01727,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,646,431704.69,371786.72,277083.81,68147.297,2896.095 -3249,4019,7189,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,6.8972716,7.2358952,6.5324578,0,0,-956.48438,0,3,3,2019,8,0,16,8,1,0,0,7.5001059,7.5001059,0,0,0,0,0,1,1,0,4.9187136,6.6310449,58.15,52.91,-9,-9,10,1,1,0,0,9,2,3,1,352,354061.84,107804.99,171184.11,0,2020.9854 -3250,4020,7190,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,7.7409239,8.1278896,0,0,-1135.1808,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.052419424,8.068387,48.17,54.75,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,723,319269.84,233428.11,144851.75,88090.617,2518.2856 -3251,4021,7191,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.7102642,8.0779276,6.8388715,0,0,-1019.8743,0,3,2,2019,13,2,15,24,1,2,0,20.014545,20.014545,0,0,0,0,0,1,1,0,6.4164438,7.1129942,45.23,56.21,-9,-9,1.666666666666667,1,1,0,0,11,9,4,1,570,545223.81,394739.56,285288.59,0,2279.9287 -3252,4022,7192,7193,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,56,1,-7.3945251,0,3,-9,2019,16,5,0,0,4,5,0,0,0,1,0,31.467045,0,0,1,1,0,1.417119,0,35.61,36.69,51.77,40.16,8.333333333333334,1,1,0,0,5,10,2,1,1446,398168.25,368441.97,0,0,1881.9468 -3252,4022,7193,7192,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.4656343,7.4756637,57,-1,-62.833012,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2989097,7.1948071,51.77,40.16,35.61,36.69,8.333333333333334,1,1,0,0,0,10,2,1,1446,398168.25,368441.97,0,0,1881.9468 -3253,4023,7194,7195,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,34,3,34.832596,0,3,3,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,74.5,1,1,0,6.7896733,0,39.16,62.84,40.55,21,6.666666666666667,1,1,0,0,0,13,4,0,1339.5,198113.52,203693.59,125818.44,0,4243.8027 -3253,4023,7195,7194,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,8.2640676,8.4245062,34,-3,121.13069,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.7304296,8.1460438,40.55,21,39.16,62.84,5,1,1,0,0,8,13,4,0,1339.5,198113.52,203693.59,125818.44,0,4243.8027 -3253,4024,7196,-9,7194,7195,1,1,27,0,0,0,1,1,-9,0,5,8.7405939,8.5045471,0,0,0,-925.54895,0,3,2,2019,10,0,40,38,1,0,0,13.318798,13.318798,0,0,0,0,0,1,1,0,2.0325179,0,54.04,60.47,-9,-9,6.666666666666667,1,1,0,0,5,13,5,0,153,-363224.34,127176.95,0,0,2028.4968 -3254,4025,7197,7198,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.8254604,8.4782,7.0596485,38,-16,87.05616,0,3,3,2019,9,2,12,16,1,2,0,32.74136,32.74136,0,0,0,0,0,1,1,0,.50621843,7.1390123,55.66,46.03,34.06,30.68,8.333333333333334,3,4,0,0,11,8,4,1,391,442453.75,464569.97,264931.5,0,3186.9512 -3254,4025,7198,7197,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2638636,5.8130579,38,16,14.682907,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,7,1,1,0,4.2916884,5.9455342,34.06,30.68,55.66,46.03,6.666666666666667,3,4,0,0,0,8,4,1,391,442453.75,464569.97,264931.5,0,3186.9512 -3254,4026,7199,-9,7197,7198,1,1,28,0,0,0,2,2,-9,1,3,6.5240278,6.4892025,0,0,0,-942.62653,0,1,3,2019,7,1,8,8,1,1,1,9.298687,9.298687,0,0,0,0,0,1,1,0,0,0,47.77,53.68,-9,-9,6.666666666666667,3,4,0,0,4,8,2,1,336,453968.81,0,0,0,390.08365 -3254,4027,7200,-9,7197,7198,1,1,51,0,0,0,2,2,-9,0,4,8.1716366,7.7444487,0,0,0,-900.15826,0,1,3,2019,10,1,30,40,1,1,1,12.408105,12.408105,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,1,4,8,4,1,535,638481.81,818645.19,85855.289,45558.602,1202.9749 -3255,4028,7201,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.2890244,8.2242966,0,0,0,-1071.7708,0,-9,-9,2019,10,0,60,12,1,0,0,6.1538258,6.1538258,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,8,4,1,399,39532.684,124156.71,0,0,2137.3816 -3255,4029,7202,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,4,8.4974604,8.39048,0,0,0,-894.48859,-9,-9,-9,2019,12,0,45,0,1,2,0,13.726441,13.726441,0,0,0,0,0,0,0,0,.43486676,0,45,59,-9,-9,7,1,1,0,0,1,8,5,1,1080,492263.84,0,212721.88,133609.77,2691.3572 -3256,4030,7203,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.2802267,8.3841238,0,0,0,-973.58923,0,3,3,2019,9,1,40,40,1,1,0,15.624744,15.624744,0,0,0,0,0,1,1,0,0,0,63.26,31.88,-9,-9,6.666666666666667,3,4,0,0,8,8,4,1,213,372748.13,318512.16,193476.88,11130.861,1187.1449 -3257,4031,7204,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-871.83972,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0657903,0,57.76,54.51,-9,-9,10,1,1,0,0,0,11,1,0,944,-25164.914,0,0,0,834.31073 -3258,4032,7205,7206,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.3661633,8.6208229,0,35,2,-53.073608,0,3,3,2019,6,0,41,41,1,0,0,13.65428,13.65428,0,0,0,0,0,1,1,0,4.4173551,0,57.06,57.76,52.11,41.98,8.333333333333334,1,1,0,0,12,6,5,1,851,596743.19,199061.97,314048.06,90365.734,4960.3115 -3258,4032,7206,7205,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.2994747,9.0982599,0,10,-2,-184.8483,0,3,2,2019,8,0,38,37,1,0,0,28.914112,28.914112,0,0,0,0,0,1,1,0,3.9126222,0,52.11,41.98,57.06,57.76,8.333333333333334,1,1,0,0,12,6,5,1,851,596743.19,199061.97,314048.06,90365.734,4960.3115 -3258,4033,7207,-9,7205,7206,1,0,25,0,0,0,1,1,-9,0,4,8.5946064,8.466157,0,0,0,-1023.4118,0,2,2,2019,10,1,50,50,1,1,1,10.885554,10.885554,0,0,0,0,0,1,1,0,2.0104542,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,846,103552.02,-61699.5,0,0,3321.9607 -3259,4034,7208,7210,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,5.5172553,5.6576543,7,-1,-20.482351,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,2.5767114,5.389092,49.37,35.69,57.34,50.6,3.333333333333333,1,1,0,0,2,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 -3259,4034,7209,-9,-9,7208,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-979.99762,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 -3259,4034,7210,7208,-9,-9,1,0,62,0,0,0,2,2,-9,1,4,0,5.9392719,5.5762482,7,1,-70.793846,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.0377507,5.7623668,57.34,50.6,49.37,35.69,10,1,1,0,0,3,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 -3259,4034,7211,-9,-9,7208,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1012.3798,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 -3259,4034,7212,-9,-9,7208,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1031.6169,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,1,621.40002,565056.44,446536.22,254448.25,0,2743.0432 -3260,4035,7213,7214,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.427598,8.5152845,0,9,4,47.557838,0,-9,-9,2019,11,0,37,37,1,0,0,17.116997,17.116997,0,0,0,0,0,0,0,0,2.6459956,0,37.03,52.5,55.3,55.6,3.333333333333333,1,1,0,0,8,1,5,1,1770.5,307059.16,332577.94,175274.11,129061.34,2519.9229 -3260,4035,7214,7213,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.4924607,7.5622611,0,27,-4,14.032141,0,3,-9,2019,7,0,28,18,1,0,0,7.4572077,7.4572077,0,0,0,0,0,0,0,0,0,0,55.3,55.6,37.03,52.5,10,1,1,0,0,12,1,5,1,1770.5,307059.16,332577.94,175274.11,129061.34,2519.9229 -3261,4036,7215,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.8385305,7.8197961,0,0,0,-1002.1154,0,2,2,2019,14,2,39,39,1,2,0,8.3585348,8.3585348,0,0,0,0,0,1,1,0,0,0,46.85,53.17,-9,-9,3.333333333333333,1,1,0,0,12,1,4,0,582,-265035.22,-8762.3525,0,0,1315.5542 -3262,4037,7216,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.6644592,8.608799,0,0,0,-913.10388,0,2,2,2019,6,0,44,40,1,0,0,14.156412,14.156412,0,0,0,0,0,0,0,0,0,0,58.89,48.6,-9,-9,6.666666666666667,1,1,0,0,10,10,5,1,281,432426.94,-13339.305,197729.39,95733.734,1970.3519 -3263,4038,7217,7218,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.9086943,7.1208849,33,8,-32.331184,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.56610239,7.312655,46.52,31.5,41.88,45.75,5,1,1,0,0,12,5,2,1,2329.5,629831.44,323320.19,271306.16,0,1327.8235 -3263,4038,7218,7217,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,33,-8,-38.445248,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.4790599,0,41.88,45.75,46.52,31.5,5,1,1,0,0,4,5,2,1,2329.5,629831.44,323320.19,271306.16,0,1327.8235 -3264,4039,7219,-9,7221,7222,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-908.26312,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 -3264,4039,7220,-9,7221,7222,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.6646,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 -3264,4039,7221,7222,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.1162376,8.1561193,0,7,-1,-53.56683,0,-9,-9,2019,10,0,24,27,1,0,0,19.346731,19.346731,0,0,0,0,0,1,1,0,5.9916072,0,51.83,57.2,52.25,53.24,8.333333333333334,1,1,0,0,6,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 -3264,4039,7222,7221,-9,-9,1,1,33,2,2,0,1,1,-9,0,3,9.0317316,9.0045547,0,7,1,62.925488,0,2,2,2019,8,1,40,40,1,1,0,26.570362,26.570362,0,0,0,0,0,1,1,0,3.7443678,0,52.25,53.24,51.83,57.2,10,1,1,0,0,8,12,5,1,873.25,41356.645,210016.66,264099,225144.41,4921.7798 -3265,4040,7223,7224,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.5725574,6.9420056,9,-4,9.8102913,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8691015,6.7812104,51.24,58.84,46.25,54.23,8.333333333333334,1,1,0,0,7,11,3,1,1159.5,601980,457594.5,298939,0,2353.3682 -3265,4040,7224,7223,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.1925311,8.0583019,7.3125005,9,4,54.686005,0,3,3,2019,7,0,20,12,1,0,0,4.8307838,4.8307838,0,0,0,0,0,1,1,0,7.8470507,7.4444151,46.25,54.23,51.24,58.84,8.333333333333334,1,1,0,0,10,11,3,1,1159.5,601980,457594.5,298939,0,2353.3682 -3266,4041,7225,7227,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.9888182,8.9321737,0,7,0,2.6790226,-9,2,2,2019,11,3,55,0,1,3,0,15.432986,15.432986,0,0,0,0,0,1,1,0,3.7060611,0,48.65,51.93,38.21,54.03,6.666666666666667,1,1,0,0,7,5,5,1,603.66669,457910.06,188743.52,171329.58,76045.531,4341.7046 -3266,4041,7226,-9,7227,7225,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-828.90222,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,603.66669,457910.06,188743.52,171329.58,76045.531,4341.7046 -3266,4041,7227,7225,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,7.9384832,7.7058601,0,7,0,-6.7150083,-9,3,2,2019,17,5,26,0,1,5,0,11.182556,11.182556,0,0,0,0,0,1,1,0,1.5095938,0,38.21,54.03,48.65,51.93,5,1,1,0,0,3,5,5,1,603.66669,457910.06,188743.52,171329.58,76045.531,4341.7046 -3267,4042,7228,7229,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,46,-6,-103.95624,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.49,53.31,47.32,32.68,8.333333333333334,1,1,0,0,4,11,2,0,928.5,546524.44,303671.31,110210.83,0,560.60583 -3267,4042,7229,7228,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.4844499,6.3208003,7,6,-14.403606,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,32.611309,0,0,1,1,0,0,6.717361,47.32,32.68,51.49,53.31,10,1,1,0,0,0,11,2,0,928.5,546524.44,303671.31,110210.83,0,560.60583 -3268,4043,7230,7231,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.1226263,8.3009396,0,1,-2,-3.3778834,-9,-9,-9,2019,12,5,35,0,1,5,0,10.314464,10.314464,0,0,0,0,0,0,0,0,0,0,54.96,53.17,21.91,56.43,8.333333333333334,1,1,0,0,1,12,5,1,1094.5,49125.75,34086.363,0,0,3995.7603 -3268,4043,7231,7230,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,8.7324095,8.5926161,0,1,2,-55.068386,0,1,2,2019,23,9,35,35,1,9,0,14.565877,14.565877,0,0,0,0,0,0,0,0,0,0,21.91,56.43,54.96,53.17,5,1,1,0,0,10,12,5,1,1094.5,49125.75,34086.363,0,0,3995.7603 -3269,4044,7232,7233,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.823657,7.6714311,0,6,-1,-133.12518,0,3,2,2019,11,0,14,20,1,2,0,23.395441,23.395441,0,0,0,0,0,1,1,0,0,0,50,47,62.83,18.52,7,2,3,0,0,1,8,4,1,1305.5,823870.5,314626.56,489805.63,0,3438.4753 -3269,4044,7233,7232,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,7.9868293,8.0265274,41,1,5.756917,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,2.5149415,0,0,1,1,0,3.9334755,7.9498181,62.83,18.52,50,47,1.666666666666667,2,3,0,0,0,8,4,1,1305.5,823870.5,314626.56,489805.63,0,3438.4753 -3269,4045,7234,-9,7232,7233,1,1,33,0,0,0,1,1,-9,0,4,8.9029703,8.9386358,0,0,0,-971.19788,0,2,2,2019,11,0,44,41,1,0,0,14.42947,14.42947,0,0,0,0,2,1,1,0,0,0,45.46,57.33,-9,-9,3.333333333333333,2,3,0,0,8,8,5,1,162,-184501.05,26144.504,115732.55,67732.055,2033.7751 -3269,4046,7235,-9,7232,7233,1,1,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-997.70056,0,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.28,60.79,-9,-9,5,2,3,1,0,0,8,1,1,773,-31888.535,0,0,0,183.73131 -3270,4047,7236,7237,-9,-9,1,0,32,0,0,0,1,1,-9,1,1,0,0,0,3,-6,-49.144802,0,-9,-9,2019,21,9,0,53,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,27.97,45.75,62.87,3.333333333333333,1,1,0,0,6,2,5,1,460.5,312578.38,99738.641,222467.72,65873.125,4284.0742 -3270,4047,7237,7236,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.3176594,9.1957598,0,3,6,112.04037,0,2,2,2019,7,0,68,56,1,0,0,19.2339,19.2339,0,0,0,0,58,0,0,0,7.8122721,0,45.75,62.87,45.97,27.97,10,2,3,0,0,9,2,5,1,460.5,312578.38,99738.641,222467.72,65873.125,4284.0742 -3271,4048,7238,7239,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.1631489,7.8312893,0,28,-1,-9.1754684,0,2,2,2019,12,0,37,35,1,0,0,7.741724,7.741724,0,0,0,0,0,0,0,0,0,0,45.91,59.89,24.15,60.56,8.333333333333334,1,1,0,0,11,10,5,1,468,1338754,666092.88,465937.22,0,3381.3384 -3271,4048,7239,7238,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.9264135,8.8729134,0,28,1,-198.252,0,-9,2,2019,23,8,52,58,1,8,0,16.127274,16.127274,0,0,0,0,0,0,0,0,6.1640835,0,24.15,60.56,45.91,59.89,6.666666666666667,1,1,0,0,10,10,5,1,468,1338754,666092.88,465937.22,0,3381.3384 -3271,4049,7240,-9,7238,7239,1,1,24,0,0,0,2,2,-9,0,4,8.3672504,8.3459339,0,0,0,-1110.088,0,2,2,2019,10,0,48,54,1,1,1,9.2845736,9.2845736,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,10,4,1,353,19933.928,65751.977,99457.938,129050.31,1421.0103 -3271,4050,7241,-9,7238,7239,1,0,18,0,0,0,2,2,-9,0,4,7.1009827,7.4029303,0,0,0,-906.44885,0,2,2,2019,7,0,28,34,1,0,1,6.3785257,6.3785257,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,1.666666666666667,1,1,0,0,2,10,3,1,680,23064.193,0,142815.27,0,886.90729 -3272,4051,7242,7243,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.7569318,5.7488284,46,-1,-36.872959,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.42193285,6.0562634,48.37,49.31,59.14,52.5,8.333333333333334,1,1,0,0,0,8,5,1,1232,2797288.5,1424488.4,1216515.5,0,6560.2666 -3272,4051,7243,7242,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.235095,8.9653063,46,1,152.04706,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0989265,8.6158609,59.14,52.5,48.37,49.31,8.333333333333334,1,1,0,0,0,8,5,1,1232,2797288.5,1424488.4,1216515.5,0,6560.2666 -3273,4052,7244,7245,-9,-9,1,0,59,0,0,0,1,1,-9,1,3,6.4663854,6.668561,0,38,-5,-160.86276,0,3,2,2019,15,3,11,11,1,3,0,6.8477869,6.8477869,0,0,0,0,42,1,1,0,6.2999063,0,39.25,42.33,38.46,24.51,3.333333333333333,1,1,0,0,11,9,2,0,1324.5,144059.25,36677.918,340338.63,0,2495.2026 -3273,4052,7245,7244,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,5.6554842,5.6649699,38,5,-139.30885,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,5.632618,38.46,24.51,39.25,42.33,8.333333333333334,1,1,0,0,3,9,2,0,1324.5,144059.25,36677.918,340338.63,0,2495.2026 -3273,4053,7246,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.3005161,8.4139452,0,0,0,-1055.567,-9,-9,-9,2019,13,5,40,0,1,5,0,12.03361,12.03361,0,0,0,0,27,1,1,0,0,0,48,50,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,463,979137.75,155883.92,171274.11,0,1298.5402 -3274,4054,7247,-9,7248,7249,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.6945,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 -3274,4054,7248,7249,-9,-9,1,0,44,0,2,0,3,3,-9,1,5,0,0,0,24,-8,1.140329,0,2,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.85,45.14,53,54,10,2,3,0,0,0,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 -3274,4054,7249,7248,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,7.2302074,7.0291905,0,7,8,13.705387,0,-9,-9,2019,9,0,16,20,1,1,0,8.4109869,8.4109869,0,0,0,0,0,1,1,0,0,0,53,54,51.85,45.14,8,2,3,0,0,1,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 -3274,4054,7250,-9,7248,7249,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.58807,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,862,1159506.6,466538.19,666060.75,116638.2,2088.5156 -3275,4055,7251,7252,-9,-9,1,0,51,0,1,0,1,1,-9,1,3,0,6.4202099,6.1746182,7,4,-4.8704715,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.307951,0,57.03,48.06,44.53,56.37,8.333333333333334,1,1,0,0,0,12,4,1,381.5,516864.81,108878.98,132197.05,76077.344,3587.7773 -3275,4055,7252,7251,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.8807201,8.4981642,0,7,-4,-46.994621,0,2,2,2019,5,0,42,42,1,0,0,16.793674,16.793674,0,0,0,0,0,1,1,0,0,0,44.53,56.37,57.03,48.06,8.333333333333334,1,1,0,0,7,12,4,1,381.5,516864.81,108878.98,132197.05,76077.344,3587.7773 -3275,4056,7253,-9,7251,7252,1,0,19,0,1,0,2,2,-9,0,3,6.5118837,6.3625755,0,0,0,-968.07617,0,1,2,2019,10,2,16,0,1,2,1,5.2798443,5.2798443,0,0,0,0,0,1,1,0,0,0,51.32,46.88,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,487,280105.09,0,0,0,266.64648 -3276,4057,7254,-9,7255,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.93402,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,636.66669,0,0,0,0,2432.1946 -3276,4057,7255,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.7049198,8.9641905,6.2106853,0,0,-849.52386,0,2,3,2019,10,1,45,55,1,1,0,13.394106,13.394106,0,0,0,0,0,1,1,0,5.7305322,0,39.54,64.56,-9,-9,6.666666666666667,1,1,0,1,7,7,4,0,636.66669,0,0,0,0,2432.1946 -3276,4057,7256,-9,7255,-9,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1058.0623,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,636.66669,0,0,0,0,2432.1946 -3277,4058,7257,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,4,-2,-45.744877,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,46.95,40.97,39.15,17.49,5,1,1,0,0,9,4,2,0,858.5,-88793.156,0,0,0,479.67786 -3277,4058,7258,-9,7257,-9,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1077.7494,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,858.5,-88793.156,0,0,0,479.67786 -3277,4059,7259,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,5.692915,5.1720276,4,2,-50.868961,0,-9,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,5.4861026,0,39.15,17.49,46.95,40.97,6.666666666666667,1,1,0,0,0,4,2,0,574,245582.33,100989.49,226528.11,97408.234,2932.6353 -3278,4060,7260,7261,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.5611453,7.6719227,0,10,-1,34.46545,0,2,3,2019,10,0,29,34,1,0,0,8.8675013,8.8675013,0,0,0,0,0,1,1,0,4.7866325,0,49.14,39.45,39,36.22,8.333333333333334,1,1,0,0,11,13,5,1,277.5,1600606.8,1425033.5,399438.56,26697.615,3985.304 -3278,4060,7261,7260,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,8.5829868,8.5645247,0,10,1,122.37984,0,3,3,2019,24,11,48,0,1,11,0,12.951079,12.951079,0,0,0,0,0,1,1,0,0,0,39,36.22,49.14,39.45,1.666666666666667,1,1,0,0,1,13,5,1,277.5,1600606.8,1425033.5,399438.56,26697.615,3985.304 -3278,4061,7262,-9,7261,7260,1,1,26,0,0,0,1,1,-9,0,4,8.4811125,8.5812769,0,0,0,-875.68683,0,3,2,2019,7,0,40,40,1,0,1,17.366486,17.366486,0,0,0,0,0,1,1,0,5.5391812,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,13,5,1,787,913.33752,41474.723,91084.375,96437.898,1959.9149 -3279,4062,7263,-9,7266,7265,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.1761,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 -3279,4062,7264,-9,7266,7265,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.1666,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 -3279,4062,7265,7266,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.6797152,8.6544323,0,15,0,-183.25917,0,1,1,2019,10,0,40,40,1,1,0,12.462622,12.462622,0,0,0,0,0,1,1,0,.77371383,0,51,57,54.32,48.13,7,2,3,0,0,1,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 -3279,4062,7266,7265,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.7440071,8.8168478,0,15,0,-174.50156,0,2,1,2019,7,0,38,38,1,0,0,21.042171,21.042171,0,0,0,0,0,1,1,0,4.9265652,0,54.32,48.13,51,57,6.666666666666667,2,3,0,0,10,2,5,1,879.25,236017.33,192341.27,201266.08,154954.98,4595.9927 -3280,4063,7267,7268,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,8.4411821,8.3700323,7,1,-2.103405,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.1482763,8.4658175,62.39,56.71,56.52,48.31,10,1,1,0,0,2,11,4,1,781.5,1957585.8,991474.5,732408.38,0,4520.9063 -3280,4063,7268,7267,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5215831,7.6387982,0,7,-1,-65.060936,0,2,2,2019,6,0,20,10,1,0,0,12.965205,12.965205,0,0,0,0,0,0,0,0,8.171526,0,56.52,48.31,62.39,56.71,10,1,1,0,0,8,11,4,1,781.5,1957585.8,991474.5,732408.38,0,4520.9063 -3281,4064,7269,-9,7270,7271,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-902.453,-9,3,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,22.88,43.25,-9,-9,1.666666666666667,2,3,0,0,0,4,1,0,714.33331,521954.94,15264.633,157864.72,0,2669.665 -3281,4064,7270,7271,-9,-9,1,0,51,0,1,0,3,3,-9,1,2,0,0,0,37,-7,0,0,3,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,37.53,29.21,4.55,56.61,1.666666666666667,2,3,0,0,0,4,1,0,714.33331,521954.94,15264.633,157864.72,0,2669.665 -3281,4064,7271,7270,-9,-9,1,1,58,0,1,0,2,2,-9,1,2,0,0,0,8,7,0,0,-9,-9,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,4.55,56.61,37.53,29.21,6.666666666666667,2,3,0,0,0,4,1,0,714.33331,521954.94,15264.633,157864.72,0,2669.665 -3281,4065,7272,-9,7270,7271,1,0,29,0,1,0,2,2,-9,1,5,0,0,0,0,0,-1105.3105,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.8,40.94,-9,-9,5,2,3,1,1,0,4,1,0,156,-123381.69,0,0,0,-708.70734 -3281,4066,7273,-9,7270,7271,1,0,25,0,1,0,1,1,-9,0,4,7.5600834,7.5604525,0,0,0,-836.84442,0,3,2,2019,12,0,30,0,1,0,1,5.5457258,5.5457258,0,0,0,0,0,1,1,0,1.5114129,0,37.39,54.52,-9,-9,6.666666666666667,2,3,0,0,0,4,3,0,1078,-11577.522,31402.02,109992.96,55885.871,653.77795 -3281,4067,7274,-9,7270,7271,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1121.5625,-9,3,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,4,1,0,131,576448.5,0,0,0,-29.994144 -3281,4068,7275,-9,7270,7271,1,0,27,0,1,0,2,2,-9,0,3,8.2094879,8.1841507,0,0,0,-1026.0833,0,3,2,2019,10,0,38,38,1,0,1,9.170084,9.170084,0,0,0,0,0,1,1,0,2.7675273,0,51.86,47.79,-9,-9,6.666666666666667,2,3,0,0,3,4,3,0,739,291660.5,-11938.332,0,0,1418.6879 -3282,4069,7276,7279,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.0102606,8.121027,0,20,-5,44.938717,0,3,2,2019,12,1,34,29,1,1,0,10.330019,10.330019,0,0,0,0,0,1,1,0,0,0,48.77,60.16,30.71,65.7,5,1,1,0,0,9,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 -3282,4069,7277,-9,7276,7279,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.64166,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 -3282,4069,7278,-9,7276,7279,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.51154,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 -3282,4069,7279,7276,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.6668205,8.7598028,0,19,5,95.222969,0,3,3,2019,17,6,54,50,1,6,0,9.8768873,9.8768873,0,0,0,0,0,1,1,0,0,0,30.71,65.7,48.77,60.16,5,1,1,0,0,9,2,4,1,828,24003.422,74119.5,210166.92,95754.547,3055.8271 -3283,4070,7280,7281,-9,-9,1,1,59,1,1,0,2,2,-9,0,3,9.0059862,8.8195553,0,9,6,24.80279,0,3,2,2019,9,0,40,35,1,0,0,18.054148,18.054148,0,0,0,0,0,1,1,0,.91736501,0,60.29,52.11,23.13,65.14,6.666666666666667,3,4,0,0,9,8,5,1,179.5,2369376.5,1494592.5,545117,0,5109.3198 -3283,4070,7281,7280,-9,-9,1,0,53,1,1,0,2,2,-9,0,3,8.4137897,8.1077127,0,9,-6,-61.748322,0,2,2,2019,15,4,45,50,1,4,0,12.925766,12.925766,0,0,0,0,0,1,1,0,0,0,23.13,65.14,60.29,52.11,3.333333333333333,1,1,0,0,9,8,5,1,179.5,2369376.5,1494592.5,545117,0,5109.3198 -3284,4071,7282,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,5.4683404,5.4928045,0,0,-1024.3374,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,2.8106253,0,0,1,1,0,0,5.2866211,54.05,44.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,251,34135.887,140017.72,62090.922,0,1160.825 -3285,4072,7283,7284,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,8.1740332,8.343914,0,6,-1,29.646112,0,1,-9,2019,14,4,41,39,1,4,0,9.4714565,9.4714565,0,0,0,0,0,1,1,0,1.1456145,0,38.15,62.02,49.04,55.86,8.333333333333334,1,1,0,0,11,10,5,1,746.66669,8328.4561,4408.353,189321.78,142662.05,3986.2656 -3285,4072,7284,7283,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.5162907,8.7184486,0,6,1,141.72878,0,-9,-9,2019,5,0,42,42,1,0,0,15.728245,15.728245,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.15,62.02,8.333333333333334,1,1,0,0,6,10,5,1,746.66669,8328.4561,4408.353,189321.78,142662.05,3986.2656 -3285,4072,7285,-9,7283,7284,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.978,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,746.66669,8328.4561,4408.353,189321.78,142662.05,3986.2656 -3286,4073,7286,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,9.1407394,9.2592564,0,0,0,-1070.8684,0,2,1,2019,6,0,47,50,1,0,0,23.529228,23.529228,0,0,0,0,0,0,0,0,3.0243075,0,51.14,60.45,-9,-9,8.333333333333334,4,5,0,0,4,8,5,0,1307,306798.28,89892.688,0,0,2552.5264 -3287,4074,7287,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,0,7.586441,7.5803924,0,0,-1010.4837,1,-9,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,7.4516315,0,35.87,63.44,-9,-9,3.333333333333333,1,1,0,1,5,12,3,0,1254,162846.98,0,0,0,784.1651 -3288,4075,7288,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,2.2687001,2.4063313,0,0,-1101.4717,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.3782873,1.9398609,48.2,31.39,-9,-9,5,1,1,0,0,0,1,2,0,676,362209.13,-3979.8389,0,0,1030.0752 -3289,4076,7289,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-915.6955,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.79,35.38,-9,-9,6.666666666666667,2,3,0,1,0,4,1,0,1382,-161277,0,0,0,257.70642 -3290,4077,7290,-9,7292,7291,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.4244,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,692.33331,490813.56,166350.56,828268.13,549160,3550.5515 -3290,4077,7291,7292,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.990797,8.9641514,0,21,-2,-78.864769,0,2,1,2019,12,0,47,42,1,0,0,21.283926,21.283926,0,0,0,0,0,1,1,0,0,0,47.15,55.39,50.03,55.3,8.333333333333334,1,1,0,0,9,8,4,1,692.33331,490813.56,166350.56,828268.13,549160,3550.5515 -3290,4077,7292,7291,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.0181456,7.3173375,0,21,2,-37.811672,0,2,2,2019,11,0,21,14,1,0,0,8.0967121,8.0967121,0,0,0,1.000381,0,1,1,0,0,0,50.03,55.3,47.15,55.39,8.333333333333334,1,1,0,0,3,8,4,1,692.33331,490813.56,166350.56,828268.13,549160,3550.5515 -3291,4078,7293,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.3307419,8.309967,0,0,-1015.5521,0,1,1,2019,8,0,0,0,4,0,0,0,0,1,4.2457814,0,52.615112,0,1,1,0,4.7167392,8.2355871,57.83,34.46,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,443,655703.13,339793.75,362290.47,0,2584.4968 -3292,4079,7294,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-991.16699,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,2.4834309,0,0,2,1,1,0,1.6649892,0,47.78,47.68,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,145,-99413.797,0,0,0,1468.2561 -3293,4080,7295,7296,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,7.696332,7.959969,0,21,6,99.243637,0,2,2,2019,16,4,38,34,1,4,0,5.957046,5.957046,0,0,0,0,7,0,0,0,2.3812413,0,61,12.42,45.66,54.46,5,1,1,0,0,9,5,5,1,1202,-34503.969,-55572.801,283035.25,42985.23,2991.1255 -3293,4080,7296,7295,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.7512255,8.9649181,0,6,-6,-84.234428,0,-9,-9,2019,10,0,50,55,1,0,0,14.579574,14.579574,0,0,0,0,0,0,0,0,6.3022575,0,45.66,54.46,61,12.42,8.333333333333334,1,1,0,0,9,5,5,1,1202,-34503.969,-55572.801,283035.25,42985.23,2991.1255 -3294,4081,7297,-9,7298,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.9313,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1095,-229504.84,-39987.445,0,0,2028.6904 -3294,4081,7298,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,7.2979321,7.4820795,3.5420072,0,0,-1043.8832,0,-9,-9,2019,4,0,25,0,1,0,0,6.3766623,6.3766623,0,0,0,0,0,1,1,0,3.3626649,0,55.79,52.62,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,1095,-229504.84,-39987.445,0,0,2028.6904 -3295,4082,7299,-9,-9,-9,1,1,64,0,2,0,3,3,-9,0,4,0,7.5218639,7.6443758,0,0,-940.86652,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5310283,54,53,-9,-9,5,1,1,0,0,6,4,2,1,3737,418543.78,396718.22,216980.27,1023.0518,703.38873 -3295,4083,7300,-9,7302,7301,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1082.8564,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 -3295,4083,7301,7302,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.374774,8.6290913,7.2516818,9,3,-25.180239,0,-9,-9,2019,11,0,42,45,1,0,0,10.045862,10.045862,0,0,0,0,0,1,1,0,0,7.6433992,48.18,61.8,56.45,36.13,8.333333333333334,1,1,0,0,12,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 -3295,4083,7302,7301,-9,7299,1,0,43,0,2,0,2,2,-9,0,3,7.5055356,7.3334622,0,9,-3,-8.3176184,0,3,3,2019,13,1,31,39,1,1,0,5.8147244,5.8147244,0,0,0,0,0,1,1,0,0,0,56.45,36.13,48.18,61.8,6.666666666666667,1,1,0,0,6,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 -3295,4083,7303,-9,7302,7301,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1078.332,-9,2,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 -3295,4083,7304,-9,7302,7301,1,1,17,0,2,1,3,0,0,0,3,0,0,0,0,0,-1177.3925,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.99106061,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,1502.4,255325.97,-17621.271,117327.37,33053.406,4244.3447 -3296,4084,7305,7306,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.4782438,7.9891891,0,5,-3,94.421852,0,2,3,2019,8,0,35,44,1,0,0,13.706532,13.706532,0,0,0,0,0,0,0,0,2.7279105,0,51.49,57.57,34.66,51.81,6.666666666666667,2,3,0,0,5,8,5,1,1403,472464.5,133502.14,243222.38,29203.936,3571.5103 -3296,4084,7306,7305,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.410038,8.462286,0,5,3,23.094576,0,2,2,2019,12,0,41,37,1,0,0,12.853731,12.853731,0,0,0,0,0,0,0,0,4.5367594,0,34.66,51.81,51.49,57.57,6.666666666666667,1,1,0,0,8,8,5,1,1403,472464.5,133502.14,243222.38,29203.936,3571.5103 -3297,4085,7307,-9,7308,7311,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.6636,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 -3297,4085,7308,7311,-9,-9,1,0,41,1,3,0,2,2,-9,0,3,5.9876189,5.9000554,0,13,-2,-105.20937,0,2,2,2019,6,0,4,8,1,0,0,13.054523,13.054523,0,0,0,0,2,1,1,0,6.9592695,0,54.96,53.17,49.86,55.31,8.333333333333334,1,1,0,0,8,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 -3297,4085,7309,-9,7308,7311,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-980.84943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 -3297,4085,7310,-9,7308,7311,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.66711,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 -3297,4085,7311,7308,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,8.393302,8.6070728,0,13,2,19.257694,0,2,3,2019,8,0,50,54,1,0,0,11.946505,11.946505,0,0,0,0,2,1,1,0,0,0,49.86,55.31,54.96,53.17,8.333333333333334,1,1,0,0,10,9,3,1,242.39999,184373.23,72933.578,358229.72,172531.22,3608.4448 -3298,4086,7312,7313,-9,-9,1,1,59,0,4,0,3,3,-9,0,3,8.2673378,8.1816235,0,17,14,-19.467987,0,-9,-9,2019,10,0,44,40,1,1,0,9.4074106,9.4074106,0,0,0,0,0,1,1,0,0,0,51,49,49.47,36.51,7,2,3,0,0,11,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 -3298,4086,7313,7312,-9,-9,1,0,45,0,4,0,3,3,-9,0,3,0,0,0,17,-14,-184.74796,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.47,36.51,51,49,8.333333333333334,2,3,0,1,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 -3298,4086,7314,-9,7313,7312,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1116.2515,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 -3298,4086,7315,-9,7313,7312,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-994.72021,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 -3298,4086,7316,-9,7313,7312,1,0,12,0,4,1,3,0,-9,0,3,0,0,0,0,0,-947.04492,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,5,2,1,478.20001,66281.406,83551.641,111648.49,55254.602,3054.8992 -3299,4087,7317,7318,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.6430845,7.5750446,57,1,55.088131,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2164249,7.7024288,60.11,33.38,61.26,51.57,8.333333333333334,1,1,0,0,0,9,3,1,460.5,493875.63,303282.88,224170.22,0,2509.1406 -3299,4087,7318,7317,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.9555597,7.1020303,57,-1,-60.001453,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0685968,61.26,51.57,60.11,33.38,10,1,1,0,0,0,9,3,1,460.5,493875.63,303282.88,224170.22,0,2509.1406 -3300,4088,7319,7320,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,48,-4,-15.300836,0,3,3,2019,16,7,0,0,4,7,0,0,0,1,3.786865,0,22.176205,0,1,1,0,2.0676875,0,56.52,30.79,59.7,53.75,1.666666666666667,1,1,0,0,0,7,2,1,603.5,554224.13,208155.13,467617.63,0,1833.5674 -3300,4088,7320,7319,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8259931,5.9927497,48,4,-52.834164,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9476871,59.7,53.75,56.52,30.79,8.333333333333334,1,1,0,0,5,7,2,1,603.5,554224.13,208155.13,467617.63,0,1833.5674 -3301,4089,7321,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.5246925,7.5994835,0,0,0,-1012.5239,0,-9,-9,2019,9,0,35,40,1,0,0,5.6704164,5.6704164,0,0,0,0,2,0,0,0,0,0,50.17,51.22,-9,-9,6.666666666666667,2,3,0,0,4,8,3,0,608,360860.22,0,0,0,1162.7845 -3302,4090,7322,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.7044597,6.3937459,0,0,-988.9043,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6762152,0,55.61,50.3,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,910,481399.34,232666.55,218086.39,0,1694.1991 -3303,4091,7323,7324,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,.80955851,.68707395,0,9,-7,-59.563789,0,2,2,2019,19,6,35,38,1,6,0,.0068756165,.0068756165,0,0,0,0,0,1,1,0,0,0,33.06,63.21,57.16,56.15,1.666666666666667,1,1,0,1,11,8,5,1,318.5,1849467.3,436648.94,881976.75,0,4332.6611 -3303,4091,7324,7323,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.3164577,9.4898405,3.6864731,9,7,-1.6267267,0,3,3,2019,6,0,60,57,1,0,0,25.281248,25.281248,0,0,0,0,0,1,1,0,3.9699447,3.8192413,57.16,56.15,33.06,63.21,10,1,1,0,0,11,8,5,1,318.5,1849467.3,436648.94,881976.75,0,4332.6611 -3303,4092,7325,-9,7323,7324,1,0,23,0,0,0,2,2,-9,0,3,8.1348972,7.9355526,0,0,0,-1075.1769,0,2,3,2019,9,0,35,40,1,0,1,14.999504,14.999504,0,0,0,0,0,1,1,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,7,8,4,1,541,-74657.336,0,0,0,1478.3827 -3303,4093,7326,-9,7323,7324,1,1,18,0,0,0,2,2,-9,0,3,7.589632,7.5831032,0,0,0,-1008.5401,-9,3,2,2019,12,0,40,0,1,0,1,5.4366384,5.4366384,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,1,8,3,1,878,-529109,99748.602,0,0,476.47388 -3304,4094,7327,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.6611109,7.7656851,0,0,0,-941.84753,-9,1,2,2019,4,1,33,0,1,1,0,7.104701,7.104701,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,11,5,3,0,2577,-486936.59,-30129.592,0,0,834.87463 -3305,4095,7328,7329,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,0,0,0,10,0,74.076912,0,2,3,2019,14,2,0,46,3,2,0,0,0,0,0,0,0,7,0,0,0,0,0,42.57,37.11,42.53,52.15,3.333333333333333,1,1,0,0,6,6,4,1,743.5,713351.63,148713.84,248454.09,88561.758,1907.8228 -3305,4095,7329,7328,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7441959,8.741189,0,10,9,4.5970597,0,2,2,2019,12,1,44,43,1,1,0,16.18778,16.18778,0,0,0,0,2,0,0,0,4.0499573,0,42.53,52.15,42.57,37.11,3.333333333333333,1,1,0,0,12,6,4,1,743.5,713351.63,148713.84,248454.09,88561.758,1907.8228 -3306,4096,7330,7331,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,0,0,0,4,0,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.4149933,0,60.02,56.42,58.57,37.75,10,1,1,0,0,0,6,1,1,1451,520736.63,185992.67,314161.75,0,2697.4717 -3306,4096,7331,7330,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,28,0,0,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.4377623,0,58.57,37.75,60.02,56.42,8.333333333333334,1,1,0,0,0,6,1,1,1451,520736.63,185992.67,314161.75,0,2697.4717 -3307,4097,7332,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.9812288,5.9883161,0,0,-1020.1622,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6576853,5.6841245,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,12,12,2,1,1941,658867.63,187319.63,212285.36,0,1274.2397 -3308,4098,7333,-9,-9,-9,1,1,91,0,0,0,1,1,-9,0,4,0,0,0,0,0,-911.7085,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,5.3083439,0,41.292439,0,1,1,0,1.2439449,0,64.54000000000001,20.06,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,1740,-289225.31,0,0,0,438.54822 -3309,4099,7334,-9,7336,7337,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 -3309,4099,7335,-9,7336,7337,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1725,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 -3309,4099,7336,7337,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.3973346,7.5315142,0,11,1,-27.889763,0,2,-9,2019,9,0,21,15,1,0,0,9.6512985,9.6512985,0,0,0,0,2,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,8,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 -3309,4099,7337,7336,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.622036,9.1771965,0,11,-1,29.91053,-9,-9,-9,2019,10,0,38,0,1,1,0,21.296906,21.296906,0,0,0,0,0,1,1,0,4.0165114,0,51,56,54.2,57.49,7,1,1,0,0,1,6,4,1,334.75,789902.81,649345.13,228871.34,143924.72,3850.1355 -3310,4100,7338,7339,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,0,0,33,1,0,0,2,1,2019,5,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,51.14,60.45,8.333333333333334,1,1,0,0,10,6,1,1,365.5,-106901.4,58915.648,0,0,0 -3310,4100,7339,7338,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,0,0,33,-1,0,0,3,3,2019,12,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.28,60.18,8.333333333333334,1,1,0,0,9,6,1,1,365.5,-106901.4,58915.648,0,0,0 -3311,4101,7340,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1008.4892,0,-9,3,2019,27,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,24.33,21.59,-9,-9,0,1,1,0,0,3,11,1,0,697,338286.94,0,0,0,2734.7158 -3311,4102,7341,-9,7340,-9,1,1,18,0,0,0,2,2,-9,0,4,0,3.6077542,3.7116704,0,0,-902.4425,1,2,-9,2019,8,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,3.2284997,0,52.4,55.58,-9,-9,8.333333333333334,1,1,0,0,1,11,2,0,211,176457.47,0,0,0,398.7944 -3312,4103,7342,-9,7344,-9,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1038.6852,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,4,2,0,0,0,6,2,0,653.33331,-263.89584,0,124915.03,19148.027,1610.8846 -3312,4103,7343,-9,7344,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.1982,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,653.33331,-263.89584,0,124915.03,19148.027,1610.8846 -3312,4103,7344,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.1154733,6.8644052,0,0,0,-1014.0874,0,3,-9,2019,9,0,25,0,1,0,0,5.0623374,5.0623374,0,0,0,0,0,1,1,0,0,0,54.07,52.08,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,653.33331,-263.89584,0,124915.03,19148.027,1610.8846 -3313,4104,7345,7346,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,6.3811798,6.5593729,4.6084814,7,4,8.009553,0,3,3,2019,10,0,40,30,1,0,0,1.4584649,1.4584649,0,0,0,0,0,0,0,0,2.6347582,4.435359,44.84,49.01,49,48,6.666666666666667,2,3,0,0,9,8,3,1,746.5,407717.56,239634.28,291188.69,0,1433.7222 -3313,4104,7346,7345,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0743008,8.0425215,0,35,-4,30.40407,0,3,2,2019,11,0,37,37,1,2,0,7.7664933,7.7664933,0,0,0,0,0,0,0,0,0,0,49,48,44.84,49.01,7,2,3,0,0,9,8,3,1,746.5,407717.56,239634.28,291188.69,0,1433.7222 -3313,4105,7347,-9,7346,7345,1,0,23,0,0,0,1,1,-9,0,4,8.3022623,8.7339945,0,0,0,-999.18726,0,2,3,2019,11,0,36,23,1,2,1,14.340755,14.340755,0,0,0,0,0,0,0,0,2.3273573,0,47,58,-9,-9,7,2,3,0,0,2,8,5,1,191,389830.03,0,0,0,1363.7906 -3314,4106,7348,-9,7349,-9,1,1,44,0,0,0,2,2,-9,0,5,8.2647314,8.412446,0,0,0,-1041.6195,0,2,-9,2019,7,0,40,42,1,0,0,11.016196,11.016196,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,4,4,1,209,189682.8,76704.836,0,0,2053.0508 -3314,4107,7349,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.6401248,6.5596495,0,0,-931.96289,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4283853,58.47,50.22,-9,-9,5,1,1,0,0,8,4,2,1,3058,-103635.67,148881.27,296988.38,0,1057.6 -3315,4108,7350,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.5579042,8.6593571,0,0,-871.71375,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.069356,8.4183702,58.72,43.42,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,200,1569638.4,792889.19,756239.13,0,2779.304 -3316,4109,7351,7352,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.0283909,7.5142584,0,6,-3,15.686108,0,2,2,2019,10,0,30,38,1,0,0,10.145951,10.145951,0,0,0,0,5.48,1,1,0,0,0,50.45,23.08,55.43,20.83,6.666666666666667,1,1,0,0,8,9,3,0,311,1014023.9,571771.25,397379.5,0,2658.9292 -3316,4109,7352,7351,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,6,3,-20.083246,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.447917,0,55.43,20.83,50.45,23.08,10,1,1,0,0,1,9,3,0,311,1014023.9,571771.25,397379.5,0,2658.9292 -3317,4110,7353,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,8.2674685,8.0391731,0,0,-920.20068,0,-9,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.579989,7.5616355,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,657,311551.56,436906.13,175373.02,0,2415.6301 -3318,4111,7354,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,5.5533433,5.4942698,0,0,-1128.3237,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,1.5971277,4.2682414,24.58456,0,1,1,0,0,5.5585794,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,357,720238.69,-18150.613,197815.94,0,336.26828 -3319,4112,7355,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1026.9023,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.92,27.39,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1292,-112045.03,-109035.19,0,0,1057.6937 -3320,4113,7356,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.6487112,8.5397263,0,0,0,-887.58429,0,2,2,2019,10,0,38,38,1,0,0,17.589966,17.589966,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,8,2,5,0,191,-175544.34,98813.023,0,0,2368.6648 -3321,4114,7357,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.4462,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,1.704494,0,50.17,42.09,-9,-9,5,1,1,0,0,0,1,2,1,492,47826.238,0,0,0,1154.1626 -3322,4115,7358,7361,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.0993414,9.0639906,0,7,0,2.1751215,0,-9,-9,2019,15,3,36,46,1,3,0,26.873312,26.873312,0,0,0,0,0,1,1,0,3.7002187,0,30.83,62.98,63.99,32.39,6.666666666666667,1,1,0,0,4,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 -3322,4115,7359,-9,7358,7361,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.83826,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 -3322,4115,7360,-9,7358,7361,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.4603,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 -3322,4115,7361,7358,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.673213,8.7165222,0,17,0,-130.94437,0,2,2,2019,12,1,36,37,1,1,0,18.686657,18.686657,0,0,0,0,0,1,1,0,3.1063759,0,63.99,32.39,30.83,62.98,8.333333333333334,1,1,0,0,7,11,5,1,599.25,656825.75,378639.19,243274.05,50034.328,5074.3931 -3323,4116,7362,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0592194,7.8093314,0,0,0,-942.53339,0,2,3,2019,10,1,37,40,1,1,0,9.232316,9.232316,0,0,0,0,0,0,0,0,0,0,44.83,40.32,-9,-9,6.666666666666667,1,1,0,0,10,2,4,0,349,394083.22,68644.406,0,0,1473.9442 -3324,4117,7363,7364,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-3,-40.657963,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.51,47.91,1.666666666666667,1,1,0,0,0,8,3,1,405.5,982567.44,879634,418639.63,65807.172,2634.8906 -3324,4117,7364,7363,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.053627,8.3124132,56,3,214.18535,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3101673,57.51,47.91,58.32,50.22,8.333333333333334,1,1,0,0,0,8,3,1,405.5,982567.44,879634,418639.63,65807.172,2634.8906 -3325,4118,7365,7367,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,9.0766382,8.824769,0,16,0,43.065983,0,2,2,2019,6,0,45,45,1,0,0,25.361977,25.361977,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50.01,53.14,8.333333333333334,1,1,0,0,10,4,5,1,804,-33529.309,14960.82,129299.69,79626.656,3370.6975 -3325,4118,7366,-9,7367,7365,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.598,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,804,-33529.309,14960.82,129299.69,79626.656,3370.6975 -3325,4118,7367,7365,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,16,9,-39.540089,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,53.14,57.33,53.46,8.333333333333334,1,1,1,0,5,4,5,1,804,-33529.309,14960.82,129299.69,79626.656,3370.6975 -3326,4119,7368,7369,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.8446789,7.6781936,8,-1,15.656867,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,4.1677108,7.9286423,59.7,53.75,47.98,54.13,10,1,1,0,0,8,13,4,1,609.5,1194584.5,1009145.4,262452.28,0,2422.3088 -3326,4119,7369,7368,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.5850582,7.7676773,8,1,-51.746639,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,7,0,0,0,4.4209709,7.7336602,47.98,54.13,59.7,53.75,8.333333333333334,1,1,0,0,5,13,4,1,609.5,1194584.5,1009145.4,262452.28,0,2422.3088 -3327,4120,7370,7371,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.9802599,8.6551218,7.2455935,7,14,-23.349207,0,2,2,2019,9,2,38,40,1,2,0,23.712929,23.712929,0,0,0,0,0,1,1,0,0,7.6132236,62.99,38.49,53.94,53.71,8.333333333333334,1,1,0,0,9,9,5,1,316.5,1523509.8,585910.56,499541.44,0,5139.4009 -3327,4120,7371,7370,-9,-9,1,0,34,0,0,0,2,2,-9,0,5,7.8903098,7.7738562,0,7,-14,84.57431,0,-9,-9,2019,11,4,46,46,1,4,0,10.057524,10.057524,0,0,0,0,0,1,1,0,0,0,53.94,53.71,62.99,38.49,10,1,1,0,0,6,9,5,1,316.5,1523509.8,585910.56,499541.44,0,5139.4009 -3328,4121,7372,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,8.4635448,8.2652512,0,3,-4,-16.742664,0,2,2,2019,7,0,41,45,1,0,0,11.415791,11.415791,0,0,0,0,0,0,0,0,0,0,40.61,64.02,51.83,57.2,8.333333333333334,1,1,0,0,8,9,4,0,526,402424.19,-126279.95,0,0,1057.9482 -3328,4122,7373,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.7050867,7.949317,0,3,4,-39.719444,0,-9,-9,2019,8,1,30,30,1,1,0,9.2973433,9.2973433,0,0,0,0,0,0,0,0,0,0,51.83,57.2,40.61,64.02,8.333333333333334,1,1,0,0,12,9,4,0,1044,-144695.14,45863.418,0,0,499.49213 -3329,4123,7374,7375,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7026958,9.1887751,7.4208913,5,0,92.575142,0,-9,-9,2019,9,0,34,36,1,0,0,20.206789,20.206789,0,0,0,0,0,0,0,0,0,7.9497619,55.36,51.57,55.79,52.62,8.333333333333334,1,1,0,0,13,12,5,1,450,786088.56,339117.44,441522.5,0,6432.6807 -3329,4123,7375,7374,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,9.1611519,9.0696249,5.3161569,5,0,10.250406,0,3,3,2019,6,0,4,7,1,0,0,319.20816,319.20816,0,0,0,0,0,0,0,0,5.8415661,6.0418019,55.79,52.62,55.36,51.57,8.333333333333334,1,1,0,0,13,12,5,1,450,786088.56,339117.44,441522.5,0,6432.6807 -3330,4124,7376,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.2491846,8.0756035,5.7487931,0,0,-1147.2179,0,1,2,2019,22,10,37,37,1,10,0,11.935478,11.935478,0,0,0,0,0,1,1,0,5.9982409,0,35.36,55.45,-9,-9,5,1,1,0,0,9,1,4,1,188,-278152.88,-1981.2134,75075.242,63095.996,1449.7377 -3331,4125,7377,7378,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.2862005,7.3179283,9,1,51.581429,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3898425,61.14,35.64,56.19,46.16,8.333333333333334,1,1,0,0,0,1,2,1,322.5,670064.38,353967.38,114662.36,0,1958.8616 -3331,4125,7378,7377,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,9,-1,-3.3078701,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.19,46.16,61.14,35.64,10,1,1,0,0,0,1,2,1,322.5,670064.38,353967.38,114662.36,0,1958.8616 -3331,4126,7379,-9,7378,7377,1,1,24,0,0,0,2,2,-9,0,4,7.3433261,7.6003747,0,0,0,-963.64117,0,3,2,2019,4,0,37,37,1,0,0,6.8387823,6.8387823,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,263,-229064.17,-14022.043,0,0,719.29974 -3332,4127,7380,7381,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,0,0,0,19,6,14.458376,0,2,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,4.0385537,0,47.77,56.48,48.76,53.24,6.666666666666667,2,3,0,0,9,8,5,1,503.5,916623.25,589613.06,314137.75,35795.82,3208.0181 -3332,4127,7381,7380,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8807793,8.8550014,0,19,-6,153.87645,0,2,2,2019,14,2,48,38,1,2,0,19.309313,19.309313,0,0,0,0,0,0,0,0,0,0,48.76,53.24,47.77,56.48,6.666666666666667,2,3,0,0,4,8,5,1,503.5,916623.25,589613.06,314137.75,35795.82,3208.0181 -3333,4128,7382,7384,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.8498955,8.7601357,7.084166,11,10,88.207764,0,3,3,2019,6,0,38,38,1,0,0,15.950877,15.950877,0,0,0,0,0,1,1,0,0,7.1788507,57.33,53.46,33.53,60.12,8.333333333333334,1,1,0,0,13,9,4,0,678,305268.09,151112.84,305198.63,17860.646,3495.6541 -3333,4128,7383,-9,7384,7382,1,1,17,0,0,1,2,0,0,1,4,0,0,0,0,0,-990.53809,-9,3,3,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,48.07,-9,-9,6.666666666666667,1,1,0,0,0,9,4,0,678,305268.09,151112.84,305198.63,17860.646,3495.6541 -3333,4128,7384,7382,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,.84216291,.2588121,0,11,-10,33.723381,0,3,3,2019,15,6,30,15,1,6,0,.0075929821,.0075929821,0,0,0,0,96,1,1,0,0,0,33.53,60.12,57.33,53.46,10,1,1,0,0,10,9,4,0,678,305268.09,151112.84,305198.63,17860.646,3495.6541 -3334,4129,7385,7386,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,6.5012836,6.7090492,53,-3,7.8199964,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.3831296,6.7878203,48.18,61.8,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,2419.5,907863.19,738257.25,114181.08,0,2376.9375 -3334,4129,7386,7385,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.1656141,7.0322909,53,3,91.33049,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6238794,7.4917235,54.2,57.49,48.18,61.8,10,1,1,0,0,0,5,3,1,2419.5,907863.19,738257.25,114181.08,0,2376.9375 -3335,4130,7387,7388,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.6706667,7.7747707,7,12,-81.115891,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.316781,7.8985724,54.2,57.49,62.39,56.71,8.333333333333334,1,1,0,0,0,7,3,1,312,1057993.5,918280.38,360040.69,0,2734.1287 -3335,4130,7388,7387,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,6.4488387,6.6505218,7,-12,29.952017,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7313027,6.7146578,62.39,56.71,54.2,57.49,10,1,1,0,0,5,7,3,1,312,1057993.5,918280.38,360040.69,0,2734.1287 -3336,4131,7389,7390,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.509696,7.2495952,0,7,-10,-61.584717,0,-9,-9,2019,5,0,34,39,1,0,0,5.3787103,5.3787103,0,0,0,0,0,0,0,0,0,0,54.2,57.49,37.38,50.66,8.333333333333334,1,1,0,0,9,2,4,1,309.5,199633.72,50819.59,216860.92,0,2772.3481 -3336,4131,7390,7389,-9,-9,1,1,40,0,0,0,3,3,-9,0,4,8.5123367,8.6707506,0,7,10,175.47604,0,-9,-9,2019,5,0,60,60,1,0,0,8.6196928,8.6196928,0,0,0,0,2,0,0,0,0,0,37.38,50.66,54.2,57.49,10,1,1,0,0,7,2,4,1,309.5,199633.72,50819.59,216860.92,0,2772.3481 -3337,4132,7391,-9,7392,-9,1,1,34,0,0,0,2,2,-9,0,2,8.818347,8.8122406,0,0,0,-1051.9103,0,2,-9,2019,13,2,70,70,1,2,1,10.904881,10.904881,0,0,0,0,0,0,0,0,1.8760569,0,43.78,42.43,-9,-9,5,1,1,0,0,8,9,5,1,574,-242327.47,14658.307,0,0,2678.3337 -3337,4133,7392,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.7182026,7.5065989,5.1680679,0,0,-935.98749,0,-9,-9,2019,27,11,29,30,1,11,0,7.7912655,7.7912655,0,0,0,0,0,0,0,0,4.164639,5.3053384,9.380000000000001,55.6,-9,-9,1.666666666666667,1,1,0,0,8,9,3,1,526,749605.75,414204.13,250849.27,0,1073.4073 -3338,4134,7393,-9,7395,7396,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.1592,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 -3338,4134,7394,-9,7395,7396,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.37213,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 -3338,4134,7395,7396,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,7.9323268,8.2561951,0,6,-4,-12.6058,0,-9,-9,2019,11,0,30,35,1,0,0,13.656129,13.656129,0,0,0,0,0,1,1,0,6.5767655,0,51.83,57.2,54.74,57.22,8.333333333333334,1,1,0,0,10,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 -3338,4134,7396,7395,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,8.8204956,9.1210632,0,6,4,18.774107,0,-9,-9,2019,10,0,55,55,1,0,0,14.682961,14.682961,0,0,0,0,0,1,1,0,1.9428182,0,54.74,57.22,51.83,57.2,10,1,1,0,0,9,6,5,1,538.5,230778.97,80161.477,230115.72,62916.742,4163.9131 -3339,4135,7397,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.4797211,5.9134684,0,0,-911.97571,0,3,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,1.7860476,5.3829508,53.55,28.21,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,640,45728.484,-67501.055,0,0,1565.0347 -3340,4136,7398,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,5.0677905,4.9733043,0,0,-976.1593,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,6.5200925,0,68.554199,0,1,1,0,2.9198248,5.4023123,63.67,30.04,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,595,7537.1138,-66462.414,0,0,1036.2023 -3341,4137,7399,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.75592,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.67,39,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,286,44861.281,0,0,0,1486.8225 -3342,4138,7400,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.4398708,8.3896265,0,0,0,-997.98645,0,3,2,2019,6,0,35,35,1,0,0,16.558264,16.558264,0,0,0,0,2,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,9,1,5,1,426,832387.81,1065961.9,132396.75,0,1989.4437 -3343,4139,7401,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.291,0,3,2,2019,26,9,0,0,4,9,0,0,0,1,0,5.2999244,0,0,1,1,0,0,0,34.39,16.93,-9,-9,5,1,1,0,0,0,2,1,0,574,62714.262,0,0,0,1203.7096 -3344,4140,7402,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,0,0,0,0,0,-894.08105,0,3,3,2019,24,10,0,60,3,10,0,0,0,0,0,0,0,0,0,0,0,4.6157222,0,41.17,33.92,-9,-9,3.333333333333333,3,4,1,0,5,8,1,1,309,132339.14,0,0,0,-332.94928 -3345,4141,7403,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.0483646,7.4090633,0,0,-980.40308,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8061991,7.1261554,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,9,3,1,158,271735.06,0,0,0,884.18317 -3346,4142,7404,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,8.1427097,8.4113045,0,0,0,-1079.4583,-9,2,1,2019,19,7,45,0,1,7,0,10.914135,10.914135,0,0,0,0,0,0,0,0,0,0,48.98,57.22,-9,-9,6.666666666666667,1,1,0,0,1,9,4,0,292,-80152.68,13455.356,0,0,1443.269 -3347,4143,7405,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,7.0268922,6.9046006,0,0,0,-1060.4611,0,3,3,2019,17,5,17,18,1,5,0,5.9872499,5.9872499,0,0,0,0,2,1,1,0,0,0,41.49,38.99,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,1326,-88591.531,-71985.391,0,0,1756.6885 -3347,4143,7406,-9,7405,-9,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-933.84521,-9,3,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,8,2,0,1326,-88591.531,-71985.391,0,0,1756.6885 -3347,4144,7407,-9,7405,-9,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-1033.4722,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.83,49.11,-9,-9,6.666666666666667,4,2,0,0,2,8,1,0,641,0,0,0,0,0 -3348,4145,7408,7409,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.9390225,7.8259659,7,-2,-2.8452213,0,2,2,2019,4,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3378191,7.6075974,57.33,53.46,60.44,46.58,8.333333333333334,1,1,0,0,7,2,5,1,1032.5,3945100,2985835,372006.75,0,3055.459 -3348,4145,7409,7408,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.9036579,8.8303385,7,2,-184.27028,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,9.18186,60.44,46.58,57.33,53.46,8.333333333333334,1,1,0,0,10,2,5,1,1032.5,3945100,2985835,372006.75,0,3055.459 -3349,4146,7410,7411,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,6.3657222,7.3986516,6.8524303,27,-6,13.154965,0,3,3,2019,6,0,3,5,1,0,0,18.427698,18.427698,0,0,0,0,0,1,1,0,5.7383313,6.9937286,62.39,56.71,43.48,60.97,10,1,1,0,0,6,4,3,1,1389,876927.88,617266.25,0,0,4403.5674 -3349,4146,7411,7410,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.7828989,7.5532036,6,6,17.820427,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0034361,7.8559732,43.48,60.97,62.39,56.71,8.333333333333334,1,1,0,0,1,4,3,1,1389,876927.88,617266.25,0,0,4403.5674 -3350,4147,7412,7413,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.6353726,7.4211326,0,32,0,11.734633,0,2,2,2019,20,8,30,30,1,8,0,7.6916323,7.6916323,0,0,0,0,0,0,0,0,0,0,32.76,57.87,57.59,43.82,5,1,1,0,1,11,9,4,1,448,691218.13,121646.79,330576.56,0,2265.6138 -3350,4147,7413,7412,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.1936646,8.0811672,0,31,0,-33.404457,0,2,2,2019,12,1,60,55,1,1,0,5.1413479,5.1413479,0,0,0,0,0,0,0,0,1.5086553,0,57.59,43.82,32.76,57.87,3.333333333333333,1,1,0,0,11,9,4,1,448,691218.13,121646.79,330576.56,0,2265.6138 -3351,4148,7414,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.7183461,7.4163213,0,0,-942.47217,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9459395,7.3588953,53.29,45.74,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,389,472071.56,261773.89,301642.78,0,1506.8702 -3352,4149,7415,7416,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2771282,8.3650045,10,9,26.193607,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1971483,8.4186678,44.06,49.86,36.35,53.49,8.333333333333334,1,1,0,0,0,5,5,1,919,3235344,2480274,494466.47,147609.13,6056.5283 -3352,4149,7416,7415,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.9331274,9.0748005,7.6964622,10,0,-163.6911,0,2,3,2019,18,6,12,12,1,6,0,71.341927,71.341927,0,0,0,0,0,1,1,0,0,7.7858582,36.35,53.49,44.06,49.86,3.333333333333333,1,1,0,0,11,5,5,1,919,3235344,2480274,494466.47,147609.13,6056.5283 -3352,4150,7417,-9,7416,7415,1,0,31,0,0,0,1,1,-9,0,3,7.8615932,7.9192114,0,0,0,-1038.6729,0,1,1,2019,9,1,37,45,1,1,1,8.3587503,8.3587503,0,0,0,0,2,1,1,0,0,0,54.94,53.18,-9,-9,6.666666666666667,1,1,0,1,8,5,4,1,359,-43410.602,184916.73,0,0,507.79166 -3353,4151,7418,7419,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,9.096674,8.9264507,0,4,-1,14.8304,0,-9,-9,2019,7,0,43,44,1,0,0,25.44178,25.44178,0,0,0,0,0,0,0,0,0,0,57.06,57.76,35.97,61.83,8.333333333333334,1,1,0,0,4,2,5,1,534,-140782.75,62727.934,120854.43,35742.445,4367.7998 -3353,4151,7419,7418,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.7406206,7.5153923,0,4,1,87.71312,0,-9,-9,2019,22,10,37,30,1,10,0,8.1462822,8.1462822,0,0,0,0,0,0,0,0,0,0,35.97,61.83,57.06,57.76,5,1,1,0,0,9,2,5,1,534,-140782.75,62727.934,120854.43,35742.445,4367.7998 -3354,4152,7420,7421,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.6944222,7.6761079,0,17,6,12.543803,0,1,3,2019,8,0,60,55,1,0,0,4.2788043,4.2788043,0,0,0,0,0,0,0,0,6.6662827,0,54.2,57.49,53.78,48.41,8.333333333333334,1,1,0,0,8,11,5,1,497,4531268.5,4528211,143340.81,0,7847.8682 -3354,4152,7421,7420,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.8477802,9.4977779,0,17,-6,50.920235,0,3,2,2019,7,0,45,45,1,0,0,36.001984,36.001984,0,0,0,0,0,0,0,0,1.8184479,0,53.78,48.41,54.2,57.49,8.333333333333334,1,1,0,0,8,11,5,1,497,4531268.5,4528211,143340.81,0,7847.8682 -3355,4153,7422,7423,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3138018,8.723527,44,5,-144.33122,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.222753,8.5898266,54.79,55.86,60.53,48.35,10,1,1,0,0,0,6,4,1,657,2598812.8,1215887.3,592697.13,0,5684.4512 -3355,4153,7423,7422,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.3065419,7.5445189,44,-5,-5.9382234,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8601751,7.3253436,60.53,48.35,54.79,55.86,8.333333333333334,1,1,0,0,0,6,4,1,657,2598812.8,1215887.3,592697.13,0,5684.4512 -3356,4154,7424,7428,-9,-9,1,1,41,0,3,0,1,1,-9,0,3,8.8127127,9.0869513,0,18,0,126.2118,0,2,1,2019,9,1,43,46,1,1,0,23.778147,23.778147,0,0,0,0,2,1,1,0,0,0,43.15,50.5,62.03,36.18,8.333333333333334,1,1,0,0,7,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 -3356,4154,7425,-9,7428,7424,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.6375,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 -3356,4154,7426,-9,7428,7424,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.9857,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 -3356,4154,7427,-9,7428,7424,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.4186,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 -3356,4154,7428,7424,7429,-9,1,0,41,0,3,0,1,1,-9,0,3,0,0,0,18,0,5.7820635,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.8145537,0,62.03,36.18,43.15,50.5,6.666666666666667,1,1,0,0,0,4,4,1,1114.2,174715.95,294354.69,239013.97,160118.77,3714.5864 -3356,4155,7429,-9,-9,-9,1,0,70,0,3,0,1,1,-9,0,3,0,6.7014251,6.8348026,0,0,-1025.35,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8068407,7.114481,58.49,20.39,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,293,-206649,0,0,0,594.15564 -3357,4156,7430,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,7.8961906,8.2565556,0,0,0,-974.33948,0,-9,-9,2019,7,0,37,37,1,0,0,10.177037,10.177037,0,0,0,0,7,1,1,0,6.8004117,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,393,-72333.484,24276.881,0,0,835.49481 -3358,4157,7431,7432,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.452302,5.5283666,34,12,-3.3114135,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,118.32231,0,0,1,1,0,4.8317218,5.2662168,53,47,51.49,57.57,8,1,1,0,0,0,4,2,1,109,561702.56,82946.195,187029.59,0,1300.4733 -3358,4157,7432,7431,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,4.7425137,5.0268679,17,-12,-62.740223,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,5.1634188,4.9489441,51.49,57.57,53,47,8.333333333333334,1,1,0,0,3,4,2,1,109,561702.56,82946.195,187029.59,0,1300.4733 -3359,4158,7433,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1013.3975,1,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,59.17,-9,-9,8.333333333333334,4,2,0,1,0,7,1,0,972.66669,0,0,0,0,2268.1902 -3359,4158,7434,-9,7433,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.23462,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,1,0,972.66669,0,0,0,0,2268.1902 -3359,4158,7435,-9,7433,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6533,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,972.66669,0,0,0,0,2268.1902 -3360,4159,7436,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.1713567,7.4639721,0,0,0,-1004.0932,0,2,2,2019,10,2,18,18,1,2,0,9.49543,9.49543,0,0,0,0,2,0,0,0,8.6041756,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,201,337896.28,91865.102,225136.08,0,4035.3293 -3361,4160,7437,7438,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,8.2450237,7.9617071,0,6,2,51.209988,0,2,2,2019,12,4,37,41,1,4,0,8.8839035,8.8839035,0,0,0,0,0,1,1,0,0,0,50.21,41.87,37.07,47.79,8.333333333333334,1,1,0,0,8,4,5,1,547,1676232.3,690854.13,348843.47,39725.27,4620.1401 -3361,4160,7438,7437,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0295248,9.0191736,0,6,-2,-18.65844,0,2,2,2019,13,1,50,48,1,1,0,22.856178,22.856178,0,0,0,0,0,1,1,0,6.4457488,0,37.07,47.79,50.21,41.87,3.333333333333333,1,1,0,0,9,4,5,1,547,1676232.3,690854.13,348843.47,39725.27,4620.1401 -3362,4161,7439,7440,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,2,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,46.67,55.57,52,45,8.333333333333334,2,3,0,0,0,7,1,1,419.5,314773.41,0,354519.25,0,1043.2008 -3362,4161,7440,7439,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,2,-2,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,46.67,55.57,8,2,3,0,0,0,7,1,1,419.5,314773.41,0,354519.25,0,1043.2008 -3363,4162,7441,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,3,8.1529617,8.1776133,0,0,0,-993.604,0,3,2,2019,12,0,37,-9,1,0,0,8.7571573,8.7571573,0,0,0,0,0,1,0,1,0,0,37.17,47.9,-9,-9,5,4,5,0,0,11,12,4,0,492,-329294.59,81918.961,0,0,1043.3008 -3364,4163,7442,-9,7443,7445,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.4241,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 -3364,4163,7443,7445,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,8.6063538,8.5268793,0,6,2,56.944618,0,-9,-9,2019,8,0,48,47,1,0,0,12.970699,12.970699,0,0,0,0,0,1,1,0,0,0,52.24,50.75,41.23,59.35,6.666666666666667,1,1,0,0,8,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 -3364,4163,7444,-9,7443,7445,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.52728,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 -3364,4163,7445,7443,-9,-9,1,1,33,1,2,0,3,3,-9,0,3,8.6143284,8.116951,0,6,-2,-18.346991,0,2,2,2019,9,0,40,43,1,0,0,14.636846,14.636846,0,0,0,0,0,1,1,0,0,0,41.23,59.35,52.24,50.75,8.333333333333334,1,1,0,0,8,6,5,1,766,752462.63,5918.1948,717516.5,427596.59,3628.23 -3365,4164,7446,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.0448008,7.1038089,0,0,-886.34113,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9693737,67.12,15.13,-9,-9,10,1,1,0,0,0,12,3,1,556,538242.75,136363.13,131490.66,0,2076.5647 -3366,4165,7447,7448,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.6267338,7.3635325,37,-7,-34.506882,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,5.6749678,7.2232566,46.79,51.35,61.27,46.03,8.333333333333334,1,1,0,0,7,2,3,1,1397.5,331704.56,282720.31,110030.37,0,4039.7153 -3366,4165,7448,7447,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3922348,7.4119697,37,7,102.84886,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9310889,7.1295252,61.27,46.03,46.79,51.35,10,1,1,0,0,3,2,3,1,1397.5,331704.56,282720.31,110030.37,0,4039.7153 -3367,4166,7449,7450,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,44,6,48.56881,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,37.34,31.49,36.87,37.37,3.333333333333333,1,1,0,0,0,4,2,0,336,294636.94,0,168754.88,0,2027.729 -3367,4166,7450,7449,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.7145934,4.442975,44,-6,-18.807077,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,4.7925339,36.87,37.37,37.34,31.49,8.333333333333334,1,1,0,0,0,4,2,0,336,294636.94,0,168754.88,0,2027.729 -3368,4167,7451,7452,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,31,-5,92.60585,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,1.5586448,0,50.51,42.98,49.52,56.95,10,1,1,0,0,6,7,5,1,1815.5,636909.25,-102009.62,795091.5,313154.5,2689.408 -3368,4167,7452,7451,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.1444416,9.3106499,0,31,5,-166.39189,0,-9,-9,2019,9,0,43,45,1,0,0,24.176018,24.176018,0,0,0,0,2,0,0,0,0,0,49.52,56.95,50.51,42.98,6.666666666666667,1,1,0,0,11,7,5,1,1815.5,636909.25,-102009.62,795091.5,313154.5,2689.408 -3368,4168,7453,-9,7451,7452,1,0,30,0,0,0,1,1,-9,0,3,7.7434082,7.7327948,0,0,0,-905.18567,0,1,2,2019,23,11,40,37,1,11,1,6.423625,6.423625,0,0,0,0,0,0,0,0,0,0,24.63,60.41,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,518,379193.59,0,0,0,1008.9763 -3369,4169,7454,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.8500342,7.4605579,0,0,0,-1054.6497,0,2,2,2019,5,0,43,37,1,0,1,5.5817275,5.5817275,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,857,-27357.201,0,0,0,1855.7615 -3370,4170,7455,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,1,8.266016,8.7150202,0,0,0,-1040.0878,0,3,2,2019,15,3,37,0,1,3,0,14.953175,14.953175,0,0,0,0,0,1,1,0,0,0,17.34,49.43,-9,-9,1.666666666666667,3,4,0,0,3,2,5,0,670,71896.805,69576.867,171308.41,94207.484,4537.0254 -3371,4171,7456,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-872.78802,0,3,3,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,0,1,1,0,1,0,2,1,0,524,-374928.09,0,0,0,1427.0981 -3372,4172,7457,7459,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.1537552,7.9630218,0,1,0,64.284416,-9,-9,-9,2019,15,4,55,0,1,4,0,6.5960808,6.5960808,0,0,0,0,0,1,1,0,0,0,44.26,59.43,40.75,58.26,8.333333333333334,1,1,0,0,1,13,3,1,1217,38959.664,57949.766,0,0,2811.855 -3372,4172,7458,-9,7459,7457,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2996,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,3,1,1217,38959.664,57949.766,0,0,2811.855 -3372,4172,7459,7457,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.1562591,7.3242207,0,1,0,-15.666439,0,-9,-9,2019,12,0,30,30,1,0,0,5.9673281,5.9673281,0,0,0,0,0,1,1,0,0,0,40.75,58.26,44.26,59.43,8.333333333333334,1,1,0,0,8,13,3,1,1217,38959.664,57949.766,0,0,2811.855 -3372,4172,7460,-9,7459,7457,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.02307,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,3,1,1217,38959.664,57949.766,0,0,2811.855 -3373,4173,7461,7462,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.4367275,6.4838681,54,0,35.083256,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6640954,6.4907398,51.49,57.57,47.08,41.62,10,1,1,0,0,0,7,2,1,470.5,315757.91,4367.1563,0,0,1795.545 -3373,4173,7462,7461,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,2.0249615,2.1392782,54,0,-24.273638,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.7090912,0,0,1,1,0,3.4165189,1.9884104,47.08,41.62,51.49,57.57,6.666666666666667,1,1,0,0,0,7,2,1,470.5,315757.91,4367.1563,0,0,1795.545 -3374,4174,7463,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.6935339,7.4022427,0,0,-1071.9667,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6966534,7.7648487,49.24,51.53,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,1543,597772.06,289329.38,357641.53,0,2404.7104 -3375,4175,7464,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.1874852,7.3912883,5.7651453,0,0,-1088.4271,0,3,3,2019,7,0,30,40,1,0,0,3.9486575,3.9486575,0,0,0,0,0,0,0,0,0,6.1251888,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,900,174622.5,137385.77,366829.91,0,899.60004 -3376,4176,7465,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.782373,8.5291004,7.0493097,0,0,-831.4024,0,3,3,2019,6,0,23,0,1,0,0,14.231496,14.231496,0,0,0,0,0,0,0,0,6.8275967,7.1960402,50.06,29.88,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,202,514496.72,341063.06,98894.82,0,1861.5505 -3376,4177,7466,-9,7465,-9,1,0,30,0,0,0,2,2,-9,0,4,8.2989941,8.0946169,0,0,0,-993.68036,0,1,2,2019,8,0,38,44,1,0,1,9.454916,9.454916,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,347,106794.75,0,61943.426,45685.461,1232.0182 -3377,4178,7467,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.8729725,9.3327293,0,0,0,-1018.7288,0,2,3,2019,12,1,50,55,1,1,0,17.881069,17.881069,0,0,0,0,0,0,0,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,0,8,7,5,1,238,267945.09,214183.28,181817.17,35055.902,2702.0239 -3378,4179,7468,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.2214584,8.359971,0,0,0,-1075.2346,0,2,2,2019,22,11,10,30,1,11,0,38.012695,38.012695,0,0,0,0,0,0,0,0,0,0,29.41,54.63,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,684,335353.25,220411.2,310481.09,0,1849.1649 -3379,4180,7469,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.5303221,9.6101933,7.5127912,0,0,-947.17493,0,-9,-9,2019,11,0,45,45,1,0,0,29.649862,29.649862,0,0,0,0,0,1,1,0,7.9747066,0,48.78,52.11,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,249.5,133100.61,9167.9863,0,0,4787.395 -3379,4180,7470,-9,7469,-9,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-927.20276,1,1,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.76684284,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,5,1,249.5,133100.61,9167.9863,0,0,4787.395 -3380,4181,7471,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.7002449,8.8399887,0,0,0,-977.6217,0,2,2,2019,10,0,39,40,1,0,0,12.515101,12.515101,0,0,0,0,0,0,0,0,0,0,48.06,45.53,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,688,118665.8,121088.48,0,0,2181.7539 -3381,4182,7472,7473,-9,-9,1,1,32,1,1,0,2,2,-9,0,2,8.2208452,8.2155838,0,7,1,6.602757,0,-9,-9,2019,10,1,43,45,1,1,0,11.693769,11.693769,0,0,0,0,0,1,1,0,0,0,63.89,37.16,57.25,45.07,6.666666666666667,1,1,0,0,11,13,4,1,641,240031.88,16021.24,99705.359,42841.539,2672.7158 -3381,4182,7473,7472,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,7.9455428,7.5936985,0,7,-1,60.901196,0,2,3,2019,10,1,23,22,1,1,0,10.791913,10.791913,0,0,0,0,7,1,1,0,0,0,57.25,45.07,63.89,37.16,8.333333333333334,1,1,0,0,11,13,4,1,641,240031.88,16021.24,99705.359,42841.539,2672.7158 -3381,4182,7474,-9,7473,7472,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.28516,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,641,240031.88,16021.24,99705.359,42841.539,2672.7158 -3382,4183,7475,7476,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.7924743,7.5280042,0,2,-4,-32.081215,0,2,2,2019,15,6,26,40,1,6,0,9.7863121,9.7863121,0,0,0,0,0,1,1,0,0,0,45.26,56.19,50,57,8.333333333333334,1,1,0,0,8,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 -3382,4183,7476,7475,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.1800861,9.1119099,0,2,4,21.711555,-9,-9,-9,2019,10,0,45,0,1,1,0,26.96768,26.96768,0,0,0,0,0,1,1,0,4.7919984,0,50,57,45.26,56.19,7,4,1,0,0,1,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 -3382,4183,7477,-9,7475,7476,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.88867,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 -3382,4183,7478,-9,7475,7476,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0187,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1059.5,2886717.8,264942.25,340084.69,196080.69,4704.7588 -3383,4184,7479,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.9737906,8.0029936,0,0,0,-921.5144,-9,-9,-9,2019,11,0,40,0,1,2,0,7.8108802,7.8108802,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,3,4,0,0,1,8,4,0,456,495368.28,42335.332,321133.63,0,1993.6453 -3383,4185,7480,-9,7479,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5538597,8.8070583,0,0,0,-956.07996,-9,2,-9,2019,10,0,40,0,1,1,1,14.124869,14.124869,0,0,0,0,0,0,0,0,3.0773323,0,50,57,-9,-9,7,3,4,0,0,1,8,5,0,436,-282153.59,0,0,0,2447.0686 -3383,4186,7481,-9,7479,-9,1,1,27,0,0,0,1,1,-9,0,4,7.6545806,7.9440069,0,0,0,-1030.0073,0,2,-9,2019,11,0,41,36,1,0,1,5.8653598,5.8653598,0,0,0,0,0,0,0,0,0,0,45.32,46.92,-9,-9,10,3,4,0,0,4,8,3,0,314,125720.75,-33754.25,0,0,1067.2628 -3383,4187,7482,-9,7479,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5770941,7.6374741,0,0,0,-923.62567,-9,2,-9,2019,11,0,40,0,1,2,1,4.5208282,4.5208282,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,1645,153479.3,-68333.07,0,0,1020.6712 -3384,4188,7483,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-953.19592,0,2,2,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,16.64,48.44,-9,-9,3.333333333333333,1,1,0,0,5,2,1,1,291,257018.42,0,0,0,744.14777 -3385,4189,7484,7485,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,52,2,19.261854,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,8.7461281,0,36.43,39,59.21,43.05,1.666666666666667,1,1,0,0,11,10,2,1,235.5,489662.53,155826.42,370981.31,0,4198.7998 -3385,4189,7485,7484,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.0639181,5.9690042,52,-2,179.02174,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8121901,5.6593542,59.21,43.05,36.43,39,8.333333333333334,1,1,0,0,3,10,2,1,235.5,489662.53,155826.42,370981.31,0,4198.7998 -3386,4190,7486,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1052.4758,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,0,8.7382698,0,0,1,1,0,0,0,64.48999999999999,13.77,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,655,211673.3,0,0,0,2124.9138 -3387,4191,7487,7488,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,45,-1,-100.63619,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4544764,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,846,1244122.8,496088.91,227519.25,0,3214.7793 -3387,4191,7488,7487,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.4209795,8.3265505,44,1,-82.343056,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5750457,8.5595455,57.16,56.15,54.96,53.17,10,1,1,0,0,0,5,4,1,846,1244122.8,496088.91,227519.25,0,3214.7793 -3387,4192,7489,-9,7487,7488,1,1,39,0,0,0,2,2,-9,0,3,6.807538,6.8342915,0,0,0,-1034.1208,0,2,2,2019,6,0,5,2,1,0,0,24.894539,24.894539,0,0,0,0,0,1,1,0,2.780719,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,649,387654.25,66591.047,121016.88,65332.566,393.70599 -3388,4193,7490,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5364122,7.8007927,0,0,-1060.0634,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2997413,8.0225134,51.7,50.33,-9,-9,10,1,1,0,0,0,12,3,1,108,483111.56,92945.242,251493.19,0,1771.5865 -3389,4194,7491,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-956.51532,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,432,144033.61,0,0,0,1783.0818 -3390,4195,7492,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.9415,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,909,172535.56,114720.78,151843.58,0,338.59549 -3391,4196,7493,-9,7494,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.19775,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,1,0,1077.5,11956.941,0,0,0,1768.6721 -3391,4196,7494,-9,-9,-9,1,0,38,0,3,0,2,2,-9,1,2,0,0,0,0,0,-841.76941,0,-9,-9,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,42,1,1,0,0,0,31.79,46.89,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1077.5,11956.941,0,0,0,1768.6721 -3391,4197,7495,-9,7494,-9,1,0,20,0,3,0,3,3,-9,1,2,0,0,0,0,0,-853.56079,-9,2,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.14,21.5,-9,-9,6.666666666666667,1,1,1,0,0,2,1,0,1680,107573.38,0,0,0,1353.0433 -3392,4198,7496,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.6348906,9.7607975,0,0,0,-1012.9946,0,2,2,2019,11,1,40,40,1,1,0,42.492443,42.492443,0,0,0,0,0,0,0,0,0,0,42.67,59.9,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,2055,562196.63,234469.66,375506.09,237487.95,6055.1719 -3393,4199,7497,-9,7499,7501,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.99316,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 -3393,4199,7498,-9,7499,7501,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.97583,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 -3393,4199,7499,7501,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,8.3996983,8.4607534,0,16,-3,-116.11365,0,-9,3,2019,11,0,30,0,1,0,0,13.179186,13.179186,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51,56,8.333333333333334,1,1,0,0,6,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 -3393,4199,7500,-9,7499,7501,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.65118,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 -3393,4199,7501,7499,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.6202536,8.8840036,0,15,3,5.6444573,0,2,1,2019,9,0,48,48,1,1,0,16.898481,16.898481,0,0,0,0,0,1,1,0,0,0,51,56,46.08,57.2,8,1,1,0,0,1,11,4,1,947.40002,1587769.9,898851.75,283055.09,0,4376.0342 -3394,4200,7502,7503,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.0658255,8.0427904,0,28,5,103.77317,0,-9,-9,2019,13,1,58,48,1,1,0,7.6563168,7.6563168,0,0,0,0,0,1,1,0,0,0,38.16,44.66,47.6,40.47,5,1,1,0,0,11,9,4,0,174,538691.13,247586.91,408943.38,0,2068.4172 -3394,4200,7503,7502,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,7.2638783,7.4575663,0,28,-5,11.315649,0,-9,3,2019,14,2,42,37,1,2,0,4.0464144,4.0464144,0,0,0,0,0,1,1,0,0,0,47.6,40.47,38.16,44.66,5,1,1,0,0,11,9,4,0,174,538691.13,247586.91,408943.38,0,2068.4172 -3394,4201,7504,-9,7503,7502,1,0,21,0,0,0,2,2,-9,0,3,7.8793235,7.9245934,0,0,0,-990.22058,-9,3,2,2019,14,2,40,0,1,2,1,7.4001174,7.4001174,0,0,0,0,0,1,1,0,2.6969793,0,28.74,46.47,-9,-9,5,1,1,0,0,4,9,3,0,436,-3028.5989,0,0,0,1125.4563 -3395,4202,7505,7506,-9,-9,1,0,53,0,0,0,1,1,-9,1,1,0,0,0,7,3,85.364914,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.37,21.72,61.85,34.03,5,1,1,0,0,0,11,3,1,1683,842410.56,205895.31,372422.94,15918.154,1528.5449 -3395,4202,7506,7505,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.1746788,8.0489702,0,7,-3,-36.892105,0,2,2,2019,11,0,57,58,1,0,0,6.2333422,6.2333422,0,0,0,0,7,0,0,0,0,0,61.85,34.03,41.37,21.72,5,1,1,0,0,8,11,3,1,1683,842410.56,205895.31,372422.94,15918.154,1528.5449 -3396,4203,7507,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.919044,7.8532972,6.7345819,0,0,-1071.9366,0,2,2,2019,12,1,42,42,1,1,0,5.9977846,5.9977846,0,0,0,0,7,1,1,0,6.6432843,0,42.9,55.84,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,641,326100.53,0,0,0,1593.243 -3396,4204,7508,-9,7507,-9,1,1,21,0,0,1,2,0,0,0,4,0,5.3282175,5.186975,0,0,-1155.882,-9,2,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,5.7671604,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,315,89884.766,0,0,0,-482.98755 -3397,4205,7509,7510,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.4185658,8.5862255,0,5,7,-66.390381,0,2,3,2019,12,2,44,41,1,2,0,11.235363,11.235363,0,0,0,0,0,0,0,0,0,0,49.86,55.31,55.96,49.93,8.333333333333334,1,1,0,0,10,10,4,0,607.5,-76346.859,-2695.1963,0,0,1613.9553 -3397,4205,7510,7509,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,5,-7,-28.154249,0,-9,-9,2019,5,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,49.86,55.31,8.333333333333334,1,1,0,0,8,10,4,0,607.5,-76346.859,-2695.1963,0,0,1613.9553 -3398,4206,7511,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.0003128,8.3786783,0,0,-958.85559,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,4.773181,0,7,1,1,0,0,8.2930079,41.87,35.81,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,979,1766824.1,826804.25,775849.75,0,2943.3169 -3399,4207,7512,-9,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,6.5642977,6.5254521,0,0,0,-1038.2716,0,3,2,2019,8,0,28,35,1,0,0,2.8496633,2.8496633,0,0,0,0,2,1,1,0,0,0,54.56,40.89,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,568,9768.1709,79389.234,0,0,320.7666 -3400,4208,7513,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,7.7604847,7.8562098,0,0,0,-1190.3738,0,3,3,2019,15,4,37,38,1,4,0,6.8571262,6.8571262,0,0,0,0,7,0,0,0,0,0,39.73,54.94,-9,-9,3.333333333333333,1,1,0,0,3,2,3,0,1163,877638.31,315487.03,0,0,1004.1142 -3401,4209,7514,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.8752365,7.9173846,6.0718689,26,23,61.059132,0,2,2,2019,9,0,24,9,1,0,0,16.67005,16.67005,0,0,0,0,0,1,1,0,4.7560687,6.3048444,55.19,54.26,51,55,8.333333333333334,1,1,0,0,12,9,3,0,589,1249235.8,602456,446366.5,0,1695.5505 -3402,4210,7515,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.1513166,8.4510565,0,0,0,-965.4212,0,-9,-9,2019,27,12,40,37,1,12,0,14.990837,14.990837,0,0,0,0,0,0,0,0,0,0,14.11,60.15,-9,-9,1.666666666666667,1,1,0,0,8,10,5,1,89,-116463.94,35352.449,0,0,1549.2109 -3403,4211,7516,7517,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2765465,8.414258,0,37,-5,96.308418,0,-9,-9,2019,11,1,45,40,1,1,0,8.7799616,8.7799616,0,0,0,0,0,0,0,0,1.782728,0,41.28,57.99,60.12,54.8,6.666666666666667,1,1,0,0,12,2,5,1,437,680143.38,337399.38,297834.97,0,3624.4604 -3403,4211,7517,7516,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.3880634,8.6072464,7.2127719,38,5,-24.447407,0,3,2,2019,6,0,39,39,1,0,0,11.078166,11.078166,0,0,0,0,0,0,0,0,0,7.5565839,60.12,54.8,41.28,57.99,8.333333333333334,1,1,0,0,12,2,5,1,437,680143.38,337399.38,297834.97,0,3624.4604 -3403,4212,7518,-9,7516,7517,1,1,24,0,0,0,2,2,-9,0,4,8.7458916,8.7827339,0,0,0,-1109.8037,0,2,2,2019,6,0,39,50,1,0,1,20.002384,20.002384,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,944,626019.56,38645.293,0,0,2367.6162 -3404,4213,7519,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,8.6248484,8.2177782,0,0,-981.73108,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.3896646,8.7903204,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,7,2,4,1,270,1676174.6,1084491.4,0,0,2444.8518 -3405,4214,7520,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.9190497,7.9836025,7.0333834,0,0,-851.35675,0,3,2,2019,11,0,57,30,1,0,0,4.5342026,4.5342026,0,0,0,0,0,1,1,0,5.9808965,7.0421987,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,1835,554675.25,-139577.42,342708.78,0,3054.6438 -3405,4215,7521,-9,-9,7520,1,0,21,0,0,0,2,2,-9,0,4,7.7933412,7.6632376,0,0,0,-1057.8248,0,-9,1,2019,12,0,30,37,1,2,0,9.6967335,9.6967335,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,1,6,3,1,978,319029.47,55582.504,0,0,738.53229 -3406,4216,7522,-9,7523,7526,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.6035,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 -3406,4216,7523,7526,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,6.9603372,6.6591048,0,13,-1,-51.70945,0,-9,-9,2019,10,0,15,15,1,0,0,5.9886684,5.9886684,0,0,0,0,0,1,1,0,0,0,48.76,53.24,49.25,61.25,0,1,1,0,0,4,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 -3406,4216,7524,-9,7523,7526,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-991.3559,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 -3406,4216,7525,-9,7523,7526,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-858.7099,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 -3406,4216,7526,7523,-9,-9,1,1,37,1,4,0,1,1,-9,0,5,9.1513262,9.1226521,0,13,1,-26.952311,0,2,1,2019,13,2,55,55,1,2,0,18.17063,18.17063,0,0,0,0,0,1,1,0,.16958275,0,49.25,61.25,48.76,53.24,6.666666666666667,2,3,0,0,8,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 -3406,4216,7527,-9,7523,7526,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1130.2357,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,4,0,1791.5,385396.88,152328.98,343915.16,145140.52,3528.0071 -3407,4217,7528,7529,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,6.7567468,7.0814843,0,7,-4,46.08091,0,3,2,2019,12,0,25,23,1,0,0,4.7502832,4.7502832,0,0,0,0,0,1,1,0,0,0,51.09,40.44,51,56,5,1,1,0,0,9,7,4,1,337,593390.31,305080.5,378837.31,170539.86,3406.4277 -3407,4217,7529,7528,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.6048241,8.6780481,0,7,4,-47.335529,0,-9,-9,2019,9,0,40,40,1,1,0,14.959636,14.959636,0,0,0,0,0,1,1,0,0,0,51,56,51.09,40.44,8,1,1,0,0,1,7,4,1,337,593390.31,305080.5,378837.31,170539.86,3406.4277 -3408,4218,7530,7531,-9,-9,1,1,56,2,2,0,3,3,-9,1,5,6.8033013,7.4964981,6.3937712,37,1,52.474926,0,-9,-9,2019,10,0,60,40,1,0,0,1.7004106,1.7004106,0,0,0,0,0,1,1,0,0,6.6743999,48.08,42.6,50.24,58.02,8.333333333333334,1,1,0,0,9,4,2,1,271,-85846.156,0,0,0,1533.3315 -3408,4218,7531,7530,-9,-9,1,0,55,2,2,0,3,3,-9,0,5,6.9258919,6.3780789,0,37,-1,53.832382,0,3,3,2019,11,1,6,6,1,1,0,22.568432,22.568432,0,0,0,0,0,1,1,0,0,0,50.24,58.02,48.08,42.6,6.666666666666667,1,1,0,0,9,4,2,1,271,-85846.156,0,0,0,1533.3315 -3408,4219,7532,-9,7533,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-715.7608,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1124,303014.78,39511.992,0,0,2843.7822 -3408,4219,7533,-9,7531,7530,1,0,26,2,2,0,1,1,-9,0,3,8.3697453,8.3226347,0,0,0,-1106.6342,0,3,3,2019,17,5,36,36,1,5,1,13.000554,13.000554,0,0,0,0,0,1,1,0,0,0,42.03,43.91,-9,-9,8.333333333333334,1,1,0,0,3,4,4,1,1124,303014.78,39511.992,0,0,2843.7822 -3408,4219,7534,-9,7533,-9,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-956.82574,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,1124,303014.78,39511.992,0,0,2843.7822 -3409,4220,7535,7536,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.1699238,9.1968174,0,8,-2,87.537025,0,2,2,2019,4,0,38,38,1,0,0,33.261299,33.261299,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,7,1,5,0,384,676917.63,268067.75,710282.88,483541.03,5110.2002 -3409,4220,7536,7535,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5725889,9.0077934,0,8,2,-20.908379,0,2,2,2019,5,0,50,52,1,0,0,9.572546,9.572546,0,0,0,0,0,0,0,0,2.6407254,0,51.73,58.82,54.2,57.49,10,1,1,0,0,5,1,5,0,384,676917.63,268067.75,710282.88,483541.03,5110.2002 -3410,4221,7537,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,0,0,0,0,-924.1532,0,3,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,39.21,-9,-9,6.666666666666667,2,3,0,1,2,8,1,1,116,59604.789,0,0,0,1151.2847 -3411,4222,7538,-9,7540,7539,1,0,19,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1023.6473,-9,2,2,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,34.73,60.05,-9,-9,3.333333333333333,1,1,0,1,4,2,1,1,128,391214.84,0,0,0,98.048416 -3411,4223,7539,7540,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,7.7937598,7.787509,0,6,-11,5.1637669,0,2,-9,2019,12,0,45,45,1,0,0,8.6481075,8.6481075,0,0,0,0,2,1,1,0,0,0,44.53,56.37,48.87,58.55,5,1,1,0,0,9,2,4,1,983.66669,181696.63,45170.57,208796.72,98806.211,2498.6655 -3411,4223,7540,7539,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7076139,7.7314787,0,6,11,-19.043674,0,-9,-9,2019,11,0,32,22,1,0,0,9.4552336,9.4552336,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.53,56.37,6.666666666666667,1,1,0,0,11,2,4,1,983.66669,181696.63,45170.57,208796.72,98806.211,2498.6655 -3411,4223,7541,-9,7540,7539,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.3483,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,983.66669,181696.63,45170.57,208796.72,98806.211,2498.6655 -3412,4224,7542,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1037.8712,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,1.1570842,48.640629,31.715925,0,1,1,0,0,0,52.01,28.38,-9,-9,10,2,3,0,0,0,8,1,1,352,261225.17,128591.84,216617.2,0,191.11385 -3413,4225,7543,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.149354,8.5187798,7.7406631,0,0,-1135.146,0,2,2,2019,9,0,25,20,1,0,0,15.594904,15.594904,0,0,0,0,0,1,1,0,7.2520556,7.97574,54.55,49.25,-9,-9,5,1,1,0,0,13,5,5,1,765,547344.25,202055.34,73461.195,0,3680.3779 -3414,4226,7544,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,5.3692646,5.2638931,0,0,-1038.0951,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.2952948,46.03,55.71,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1736,-320890.31,53286.266,102838.87,0,1084.7607 -3415,4227,7545,7546,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.5774369,7.5579619,44,7,83.846214,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,7.6142397,57.48,30.52,33.87,26.46,6.666666666666667,2,3,0,0,0,8,2,1,623,636088,245966.3,673579.63,0,1754.949 -3415,4227,7546,7545,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,4.5494695,4.3621759,44,-7,-87.496689,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,4.2569084,33.87,26.46,57.48,30.52,5,2,3,0,0,0,8,2,1,623,636088,245966.3,673579.63,0,1754.949 -3415,4228,7547,-9,7546,7545,1,0,39,0,0,0,1,1,-9,0,4,8.6588202,8.3654718,0,0,0,-976.26025,0,2,2,2019,11,0,36,35,1,2,0,20.161535,20.161535,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,5,1,672,365221.09,38160.965,0,0,1769.6273 -3416,4229,7548,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.4641008,8.7067118,7.4935808,0,0,-1083.147,0,2,2,2019,8,0,55,48,1,0,0,10.293278,10.293278,0,0,0,0,0,1,1,0,0,7.1298275,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,782,-497097.06,152762.36,0,0,3725.3965 -3417,4230,7549,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.0659361,6.480514,0,0,-1106.2412,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4434066,63.48,51.85,-9,-9,10,1,1,0,0,0,11,2,1,229,101884.21,64108.711,243988.86,0,1038.3291 -3418,4231,7550,7551,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.7651191,7.468987,0,6,7,8.9608002,0,-9,-9,2019,12,0,38,30,1,0,0,6.2791052,6.2791052,0,0,0,0,0,0,0,0,0,0,34.21,51.94,46.1,59.99,3.333333333333333,1,1,0,0,5,12,4,0,1341.5,115004.8,-62774.586,35820.648,62623.652,2504.3906 -3418,4231,7551,7550,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8205724,7.6620431,0,6,-7,-12.231866,0,-9,-9,2019,12,0,34,28,1,0,0,7.961957,7.961957,0,0,0,0,0,0,0,0,0,0,46.1,59.99,34.21,51.94,8.333333333333334,1,1,0,0,7,12,4,0,1341.5,115004.8,-62774.586,35820.648,62623.652,2504.3906 -3419,4232,7552,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.1218138,7.7186217,0,0,0,-958.74463,0,3,3,2019,9,1,40,40,1,1,0,7.7434115,7.7434115,0,0,0,0,0,0,0,0,0,0,48.94,49.1,-9,-9,8.333333333333334,1,1,0,1,12,12,4,1,1486,41439.883,166322.81,0,0,1287.8043 -3420,4233,7553,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.5043383,8.2345676,0,0,0,-1093.2935,0,2,2,2019,7,0,44,0,1,0,0,11.530142,11.530142,0,0,0,0,0,1,1,0,0,0,43.15,52.32,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,1928,13171.417,0,0,0,1638.4552 -3421,4234,7554,7555,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.3863993,8.0718327,0,1,-8,11.047048,-9,-9,-9,2019,7,0,38,0,1,0,0,10.820477,10.820477,0,0,0,0,0,1,1,0,0,0,62,47.26,55.36,54.24,10,1,1,0,0,13,7,5,1,819.5,682542.81,657393,169325.59,0,3303.2283 -3421,4234,7555,7554,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,8.3165379,8.0896454,0,1,8,118.25451,0,3,3,2019,7,0,48,55,1,0,0,7.6909389,7.6909389,0,0,0,0,0,1,1,0,0,0,55.36,54.24,62,47.26,8.333333333333334,1,1,0,0,13,7,5,1,819.5,682542.81,657393,169325.59,0,3303.2283 -3422,4235,7556,-9,7558,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.88965,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,171,142974.19,64201.543,98743.227,31534.703,1790.618 -3422,4235,7557,-9,7558,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.75024,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,171,142974.19,64201.543,98743.227,31534.703,1790.618 -3422,4235,7558,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6750107,8.6594019,0,0,0,-1106.0941,0,2,2,2019,10,0,40,38,1,0,0,15.873894,15.873894,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,171,142974.19,64201.543,98743.227,31534.703,1790.618 -3423,4236,7559,7560,-9,-9,1,0,78,0,0,0,1,1,-9,0,1,0,7.9155807,8.1107635,9,-4,-29.416721,-9,2,2,2019,18,0,0,0,4,5,0,0,0,1,3.2130222,.21367295,27.522738,0,1,1,0,7.1507087,8.0848989,40,23,57,51,5,1,1,0,0,0,12,3,1,308,767155,501799.84,145143.64,0,3212.4739 -3423,4236,7560,7559,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,6.2293501,6.3311734,9,4,-26.289766,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.4798448,0,24.52079,120,1,1,0,5.508698,6.2664552,57,51,40,23,8.333333333333334,1,1,0,0,0,12,3,1,308,767155,501799.84,145143.64,0,3212.4739 -3424,4237,7561,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,4.6761551,5.0568957,0,0,-967.69714,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,6.0837665,0,0,1,1,0,0,5.4939413,30.19,22.49,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,1550,232189.14,0,0,0,588.4848 -3425,4238,7562,7563,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.6509099,7.0989952,45,-1,-38.274143,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3799992,7.5321336,58.15,52.91,55.96,49.93,5,1,1,0,0,8,2,3,1,461.5,1181167.1,937115,310806.13,13220.818,3179.6536 -3425,4238,7563,7562,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.444066,6.6124163,45,1,-20.760288,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,3.7088192,6.5288262,55.96,49.93,58.15,52.91,0,1,1,0,0,8,2,3,1,461.5,1181167.1,937115,310806.13,13220.818,3179.6536 -3426,4239,7564,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-981.82281,0,-9,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,42.66,-9,-9,10,1,1,0,0,0,9,1,0,553,44599.859,0,0,0,546.5849 -3427,4240,7565,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,5.9268985,6.1473126,0,0,-1027.8777,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3805122,54,44,-9,-9,8,3,4,0,0,0,8,2,0,227,312791.19,167260.3,163806.94,0,1009.3212 -3428,4241,7566,-9,7567,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.75482,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,0,219.5,276158.69,0,0,0,1185.4338 -3428,4241,7567,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,3,7.4469333,7.5285058,0,0,0,-984.09119,0,-9,-9,2019,0,0,49,0,1,0,0,4.3368206,4.3368206,0,0,0,0,0,1,1,0,0,0,63.27,42.4,-9,-9,6.666666666666667,1,1,0,0,1,12,3,0,219.5,276158.69,0,0,0,1185.4338 -3429,4242,7568,7569,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,3,-18,-146.83076,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,15.16,55.55,44.02,23.69,10,1,1,0,0,0,2,2,1,248.5,660863.25,378489.09,253419.95,0,1481.9373 -3429,4242,7569,7568,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.4102507,7.2257643,3,18,69.829483,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,7.5713863,44.02,23.69,15.16,55.55,8.333333333333334,1,1,0,0,0,2,2,1,248.5,660863.25,378489.09,253419.95,0,1481.9373 -3430,4243,7570,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.564034,7.33008,0,0,-937.44,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0144539,7.327601,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,153,1296212.8,429943.5,123525.6,0,1448.2629 -3431,4244,7571,7572,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7493773,8.6732845,0,23,0,12.887429,0,2,2,2019,7,0,70,70,1,0,0,10.979228,10.979228,0,0,0,0,7,0,0,0,0,0,62.66,52.4,53.86,39.89,8.333333333333334,1,1,0,0,9,11,5,1,446.5,518151.94,576849,168807.97,110458.95,4402.1646 -3431,4244,7572,7571,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.902328,8.0789156,6.7349415,24,9,-16.174753,0,2,2,2019,10,1,27,32,1,1,0,14.113202,14.113202,0,0,0,0,14.5,0,0,0,5.427866,6.9515729,53.86,39.89,62.66,52.4,8.333333333333334,1,1,0,0,9,11,5,1,446.5,518151.94,576849,168807.97,110458.95,4402.1646 -3432,4245,7573,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1051.2748,0,3,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,28.5,38.65,-9,-9,3.333333333333333,1,1,1,0,0,11,1,0,297,-185278.25,0,0,0,843.14429 -3433,4246,7574,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.4383097,8.2975454,5.3215637,0,0,-909.83356,-9,2,3,2019,19,7,57,0,1,7,0,9.6128874,9.6128874,0,0,0,0,0,0,0,0,4.5896592,0,27.28,65.96000000000001,-9,-9,6.666666666666667,1,1,0,0,1,8,4,0,263,241286.59,-32678.309,0,0,1524.7177 -3434,4247,7575,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.1076002,6.9900541,0,0,0,-973.61157,0,3,3,2019,12,0,21,32,1,0,0,8.9687691,8.9687691,0,0,0,0,14.5,0,0,0,0,0,44.35,40.81,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,884,2087.2944,313050.88,137216.27,0,934.46582 -3435,4248,7576,7578,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.0915761,7.2312665,0,2,0,-69.6931,0,2,2,2019,6,1,24,25,1,1,0,6.8303699,6.8303699,0,0,0,0,0,1,1,0,0,0,57.73,54.53,51.83,57.2,10,2,3,0,0,7,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 -3435,4248,7577,-9,7576,7578,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.862,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 -3435,4248,7578,7576,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,6.9475541,7.2254639,5.9487214,2,0,28.462082,0,2,2,2019,17,6,16,30,1,6,0,7.855536,7.855536,0,0,0,0,0,1,1,0,5.4296637,0,51.83,57.2,57.73,54.53,6.666666666666667,2,3,0,0,8,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 -3435,4248,7579,-9,7576,7578,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.35272,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,708,176417.84,0,112459.72,59980.445,2599.9106 -3436,4249,7580,-9,-9,-9,1,1,23,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1045.5173,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.3,52.29,-9,-9,6.666666666666667,1,1,0,1,3,10,1,0,873,13041.87,0,0,0,683.70404 -3437,4250,7581,-9,-9,-9,1,0,25,0,0,0,1,1,1,0,4,7.8045921,8.1354942,0,0,0,-972.77423,-9,1,1,2019,10,0,48,0,1,0,0,6.4961138,6.4961138,0,0,0,0,0,0,0,0,0,0,54.8,47.62,-9,-9,6.666666666666667,3,4,0,0,2,8,4,0,288,85135.953,8266.0605,0,0,1685.0356 -3438,4251,7582,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.9043865,6.6153035,0,0,-941.82837,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9964862,6.9968996,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,9,6,2,1,1334,53553.934,195485.16,259985.67,0,1202.5344 -3439,4252,7583,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.32233,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,5.1989279,0,0,1,1,0,0,0,46,37,-9,-9,10,1,1,0,0,0,11,2,0,86,44654.496,0,0,0,1874.6469 -3440,4253,7584,-9,7585,7586,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.9043,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 -3440,4253,7585,7586,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,8.0688591,8.3133545,0,8,-7,43.575512,0,2,3,2019,8,0,42,43,1,0,0,10.310207,10.310207,0,0,0,0,0,1,1,0,0,0,52.43,55.57,55.19,54.26,8.333333333333334,1,1,0,0,11,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 -3440,4253,7586,7585,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.8198471,8.5313969,0,8,7,61.969982,-9,3,3,2019,8,0,35,0,1,0,0,19.820227,19.820227,0,0,0,0,0,1,1,0,0,0,55.19,54.26,52.43,55.57,8.333333333333334,1,1,0,0,11,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 -3440,4253,7587,-9,7585,7586,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.47174,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,2008.25,366485.56,126121.14,175457.47,0,4115.585 -3441,4254,7588,7589,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.189548,5.2249117,57,-1,8.9155569,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8269198,5.3943052,53.89,38.58,43.04,42.49,6.666666666666667,1,1,0,0,0,4,2,1,361.5,1097997.8,134434.92,185815.22,0,1483.835 -3441,4254,7589,7588,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.0500093,6.6694608,57,1,106.37936,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4732509,6.8415704,43.04,42.49,53.89,38.58,6.666666666666667,1,1,0,0,0,4,2,1,361.5,1097997.8,134434.92,185815.22,0,1483.835 -3442,4255,7590,-9,7593,7592,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.5649,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,961.5,-242312.27,0,0,0,2792.9985 -3442,4255,7591,-9,7593,7592,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.9338,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,961.5,-242312.27,0,0,0,2792.9985 -3442,4255,7592,7593,-9,-9,1,1,39,0,4,0,2,2,-9,1,2,0,0,0,1,7,0,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,38.56,21.8,32,30,0,1,1,0,1,0,2,1,0,961.5,-242312.27,0,0,0,2792.9985 -3442,4255,7593,7592,-9,-9,1,0,32,0,4,0,2,2,-9,1,1,0,0,0,1,-7,0,-9,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,3.576725,0,32,30,38.56,21.8,1.666666666666667,1,1,0,1,1,2,1,0,961.5,-242312.27,0,0,0,2792.9985 -3443,4256,7594,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.5149107,7.5256796,0,0,-1072.8015,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.9956847,7.5949783,55.44,42.4,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,422,729485.38,58294.695,0,0,2121.7129 -3444,4257,7595,-9,7596,-9,1,0,34,0,0,0,2,2,-9,0,3,8.0621777,8.1622572,0,0,0,-941.21338,0,2,2,2019,11,3,38,41,1,3,1,9.7877331,9.7877331,0,0,0,0,7,1,1,0,0,0,38.31,55.59,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,467,-13939.489,6188.1016,82461.313,62475.914,1406.7449 -3444,4258,7596,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,5.5442524,5.5833654,0,0,-944.92041,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,6.1342869,5.5084829,32.59,30.02,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,533,-412857.16,-6576.5894,0,0,1289.684 -3445,4259,7597,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4075694,7.5038681,0,0,0,-964.84027,0,2,2,2019,5,0,35,30,1,0,0,5.9279675,5.9279675,0,0,0,0,0,0,0,0,0,0,59.46,46.99,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,1110,142256.55,23870.451,461205.53,0,920.89294 -3445,4260,7598,-9,7597,-9,1,1,39,0,0,0,2,2,-9,0,4,9.2226839,8.8045216,0,0,0,-906.49103,0,2,-9,2019,6,0,45,45,1,0,1,20.405779,20.405779,0,0,0,0,0,0,0,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,12,9,5,0,576,44606.988,60522.902,0,0,2826.2217 -3446,4261,7599,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1063.3335,-9,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,29.309803,0,7,1,1,0,0,0,44.35,29.98,-9,-9,5,1,1,0,1,0,7,1,0,551,-208375.28,0,0,0,1091.9797 -3446,4262,7600,-9,7599,-9,1,1,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-977.37512,-9,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.13,24.11,-9,-9,3.333333333333333,1,1,0,1,5,7,1,0,1053,0,0,0,0,1236.9872 -3447,4263,7601,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,7.1658831,7.7201867,0,0,-1064.9551,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,7.5505524,46.31,58.29,-9,-9,10,1,1,0,0,0,12,3,1,329,360445.38,-46851.992,38179.125,0,1519.4324 -3448,4264,7602,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-929.6994,0,-9,-9,2019,24,8,0,0,4,8,0,0,0,1,1.7434243,0,24.089668,0,1,1,0,4.254158,0,21.8,26.98,-9,-9,0,1,1,0,0,0,10,1,0,261,-95312.352,0,0,0,1818.6722 -3449,4265,7603,7604,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.4937754,7.1620274,44,-3,7.388144,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3762846,7.6098943,57.16,56.15,49.52,56.95,8.333333333333334,1,1,0,0,0,9,4,1,770.5,1216705.8,931009.38,340316.97,0,4365.9072 -3449,4265,7604,7603,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.2073221,8.1251402,44,3,-78.49736,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5079837,7.8867807,49.52,56.95,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,770.5,1216705.8,931009.38,340316.97,0,4365.9072 -3450,4266,7605,7606,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1052475,8.2495308,0,3,0,2.7020166,0,-9,-9,2019,20,9,52,45,1,9,0,7.2026501,7.2026501,0,0,0,.56920671,0,0,0,0,0,0,40.52,62.31,45.69,50.44,8.333333333333334,1,1,0,0,2,1,4,1,685,-58534.492,64492.07,149158.39,120495.9,2468.6494 -3450,4266,7606,7605,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.7979784,7.9411411,0,3,0,78.20723,0,2,2,2019,13,2,37,0,1,2,0,7.7108765,7.7108765,0,0,0,0,0,0,0,0,4.9081106,0,45.69,50.44,40.52,62.31,5,1,1,0,0,6,1,4,1,685,-58534.492,64492.07,149158.39,120495.9,2468.6494 -3451,4267,7607,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.2532759,8.1094017,0,0,-853.27966,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,8.1583977,45.19,14.87,-9,-9,6.666666666666667,1,1,0,0,4,9,4,1,840,1182911.9,746278.75,232092.59,0,1976.396 -3452,4268,7608,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.125803,5.4751892,0,0,-925.77673,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2992268,62.49,55.09,-9,-9,10,1,1,0,0,0,1,2,1,535,210179.42,87927.383,0,0,1246.1609 -3453,4269,7609,7610,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0406084,7.8955889,0,9,-5,-90.673523,0,2,2,2019,10,0,35,35,1,0,0,11.198028,11.198028,0,0,0,0,0,0,0,0,1.2858686,0,58.72,51.29,56.81,27.06,8.333333333333334,1,1,0,0,10,11,4,1,694,251148.88,361288.88,155609.72,0,3028.8901 -3453,4269,7610,7609,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.8685646,7.6934886,9,5,43.31599,0,2,2,2019,7,1,0,93,4,1,0,0,0,0,0,0,0,0,0,0,0,.93327618,7.7555537,56.81,27.06,58.72,51.29,10,1,1,0,0,9,11,4,1,694,251148.88,361288.88,155609.72,0,3028.8901 -3453,4270,7611,-9,7610,7609,1,1,23,0,0,0,2,2,-9,0,4,7.0592051,6.8127894,0,0,0,-1008.744,-9,1,2,2019,7,1,22,0,1,1,1,6.0750179,6.0750179,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,8,11,3,1,390,345224.63,-90093.789,0,0,3427.6462 -3454,4271,7612,7613,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.9376144,6.5270925,8,3,73.696129,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7441621,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,0,7,4,1,273,1870701,1102298.1,471354.84,0,3612.4277 -3454,4271,7613,7612,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.4807739,8.1948519,31,-3,58.500732,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9279094,8.01793,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,273,1870701,1102298.1,471354.84,0,3612.4277 -3455,4272,7614,7615,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,9,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.34,48.53,42.71,50.87,10,1,1,0,0,0,2,1,0,660.5,0,0,0,0,2135.5161 -3455,4272,7615,7614,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,45,4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.71,50.87,50.34,48.53,8.333333333333334,1,1,0,0,0,2,1,0,660.5,0,0,0,0,2135.5161 -3455,4273,7616,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.9075484,8.0373011,0,0,0,-1016.3226,0,-9,-9,2019,12,0,40,6,1,2,0,8.6102076,8.6102076,0,0,0,0,0,1,1,0,2.4940369,0,45,59,-9,-9,7,1,1,0,0,1,2,3,0,383,-34553.082,0,0,0,1441.5668 -3456,4274,7617,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,5.1627707,5.3175001,0,0,-993.99628,-9,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4309034,35.05,24.74,-9,-9,3.333333333333333,1,1,0,1,9,8,2,1,299,394541.06,128885.7,0,0,1562.8268 -3456,4275,7618,-9,7617,-9,1,1,33,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.3661,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.87,58.96,-9,-9,0,1,1,0,1,0,8,1,1,580,-98129.367,0,0,0,410.92746 -3457,4276,7619,7620,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,30,-11,-38.503407,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.4740396,0,33.69,38.65,52.77,55.33,5,1,1,0,0,9,9,4,1,375.5,1546797.1,981068.88,590838.81,0,1986.9703 -3457,4276,7620,7619,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.0416327,8.3451414,6.4765959,29,11,77.464188,0,2,1,2019,10,0,20,22,1,0,0,23.632574,23.632574,0,0,0,0,0,0,0,0,1.4807849,6.5655479,52.77,55.33,33.69,38.65,8.333333333333334,1,1,0,0,10,9,4,1,375.5,1546797.1,981068.88,590838.81,0,1986.9703 -3457,4277,7621,-9,7619,7620,1,0,25,0,0,0,1,1,-9,0,4,8.1708603,8.2346611,0,0,0,-936.56525,0,2,1,2019,11,0,7,35,1,2,1,57.848938,57.848938,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,9,4,1,450,-183780.61,-105257.38,0,0,1542.1082 -3457,4278,7622,-9,7619,7620,1,0,22,0,0,0,2,2,0,0,1,0,0,0,0,0,-1035.0375,-9,2,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.3,47.3,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,1094,97681.586,0,0,0,616.32684 -3458,4279,7623,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-939.06445,0,3,1,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.89,18.68,-9,-9,5,1,1,0,0,0,9,1,0,412,-273818.91,0,0,0,175.50339 -3458,4280,7624,-9,-9,-9,1,1,19,0,0,0,3,3,-9,0,5,7.7453833,7.640183,0,0,0,-1023.3835,0,-9,-9,2019,18,5,36,0,1,5,0,6.5189786,6.5189786,0,0,0,0,0,1,1,0,0,0,36.44,49.63,-9,-9,10,1,1,0,1,1,9,3,0,570,245699.05,84401.93,0,0,1273.1084 -3459,4281,7625,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.4419165,7.4540586,0,0,0,-1074.5875,0,3,3,2019,6,0,20,20,1,0,0,8.6138086,8.6138086,0,0,0,0,0,1,1,0,8.3033094,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,13,8,3,1,1477,715403.88,4255.4976,0,0,2404.9836 -3459,4282,7626,7627,7625,-9,1,1,39,0,0,0,1,1,-9,0,3,9.8272972,9.776082,0,3,8,-61.885166,0,3,2,2019,17,4,40,45,1,4,0,44.797024,44.797024,0,0,0,0,0,1,1,0,5.3498402,0,39.26,57.46,46.63,59.72,8.333333333333334,2,3,0,0,13,8,5,1,473.5,105698.41,42627.82,238275.38,218831.56,8626.6758 -3459,4282,7627,7626,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,9.4406557,9.3535042,0,3,-8,-253.16031,0,-9,-9,2019,13,2,31,45,1,2,0,46.498158,46.498158,0,0,0,0,0,1,1,0,6.2128453,0,46.63,59.72,39.26,57.46,6.666666666666667,2,3,0,0,3,8,5,1,473.5,105698.41,42627.82,238275.38,218831.56,8626.6758 -3460,4283,7628,-9,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.3068581,8.3373318,0,0,0,-1021.2105,-9,2,-9,2019,6,2,53,0,1,2,0,7.6908951,7.6908951,0,0,0,0,0,1,1,0,4.5160351,0,58.41,36.62,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,1627,617992.5,463107.38,204778.27,90282.602,2043.3112 -3461,4284,7629,7631,-9,-9,1,0,35,0,1,0,2,2,-9,0,2,9.0825987,9.371068,0,7,1,32.17638,0,1,2,2019,19,6,120,80,1,6,0,9.6207199,9.6207199,0,0,0,0,0,1,1,0,7.4703555,0,33.89,57.81,39.47,49.63,3.333333333333333,4,2,0,0,9,7,5,0,1278,389534.31,-11286.431,398836.56,199554.94,8355.4746 -3461,4284,7630,-9,7629,7631,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1189.826,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,5,0,1278,389534.31,-11286.431,398836.56,199554.94,8355.4746 -3461,4284,7631,7629,-9,-9,1,1,34,0,1,0,2,2,-9,0,2,8.9091339,9.2690344,0,7,-1,16.247932,-9,1,2,2019,9,1,45,0,1,1,0,24.421482,24.421482,0,0,0,0,0,1,1,0,0,0,39.47,49.63,33.89,57.81,6.666666666666667,4,2,0,0,9,7,5,0,1278,389534.31,-11286.431,398836.56,199554.94,8355.4746 -3462,4285,7632,7633,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.5934224,7.5668159,0,36,2,18.733551,0,-9,-9,2019,5,0,30,30,1,0,0,9.4670696,9.4670696,0,0,0,0,0,1,1,0,0,0,34.44,49.64,36.29,21.51,0,2,3,0,0,12,6,3,1,193.5,545896,2587.4243,222528.09,0,1093.381 -3462,4285,7633,7632,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,0,0,0,36,-2,-75.734276,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,21.51,34.44,49.64,1.666666666666667,2,3,0,0,0,6,3,1,193.5,545896,2587.4243,222528.09,0,1093.381 -3462,4286,7634,-9,7635,-9,1,0,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-878.59399,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,1,1,351.5,184980.73,0,0,0,0 -3462,4286,7635,-9,7633,7632,1,0,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-1062.8193,-9,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,26.69,60.83,-9,-9,6.666666666666667,2,3,1,0,0,6,1,1,351.5,184980.73,0,0,0,0 -3463,4287,7636,7639,-9,-9,1,0,36,0,4,0,2,2,-9,0,1,0,5.8119273,6.424861,8,-6,-25.186687,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,5.9057407,0,36.26,51.68,43.12,58.55,8.333333333333334,1,1,0,1,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 -3463,4287,7637,-9,-9,7639,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1113.3804,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 -3463,4287,7638,-9,7636,7639,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.45459,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 -3463,4287,7639,7636,-9,-9,1,1,42,0,4,0,2,2,-9,0,3,8.6473007,8.6313467,4.9474311,8,6,12.503765,0,2,2,2019,6,0,40,40,1,0,0,25.125401,25.125401,0,0,0,0,7,1,1,0,5.4244108,0,43.12,58.55,36.26,51.68,5,1,1,0,0,10,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 -3463,4287,7640,-9,7636,7639,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-913.59375,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 -3463,4287,7641,-9,-9,7639,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1045.0166,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,787.5,191524.97,10741.199,291569.22,241772.63,3367.3796 -3464,4288,7642,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.63245,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,6,1,1,644,232752.02,0,0,0,590.51703 -3464,4289,7643,-9,7642,-9,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.9913,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,51.32,-9,-9,6.666666666666667,2,3,1,0,7,6,1,1,389,-102379.48,0,0,0,-498.22778 -3465,4290,7644,7645,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.3724108,8.8001518,0,47,-8,-55.383549,0,2,2,2019,13,2,36,37,1,2,0,19.417475,19.417475,0,0,0,0,0,1,1,0,0,0,27.2,57.84,48.53,58.91,5,1,1,0,0,12,8,4,1,304,1688334.1,423766.5,401492.56,0,3107.3438 -3465,4290,7645,7644,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7059135,6.655879,47,8,9.5996971,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9978819,6.3765106,48.53,58.91,27.2,57.84,8.333333333333334,1,1,0,0,3,8,4,1,304,1688334.1,423766.5,401492.56,0,3107.3438 -3465,4291,7646,-9,7644,7645,1,0,39,0,0,0,2,2,-9,0,3,8.7051325,8.7430859,0,0,0,-928.69922,0,2,2,2019,16,4,43,44,1,4,1,16.906698,16.906698,0,0,0,0,0,1,1,0,2.0367608,0,29.79,51.02,-9,-9,5,4,5,0,0,12,8,5,1,583,-159947.77,20296.875,0,0,2688.6467 -3466,4292,7647,7648,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.2008009,7.5815573,10,1,-57.06485,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.734865,7.0965176,60.12,54.8,64.23,44.69,10,1,1,0,0,10,7,2,1,273,753047.63,178219.69,477200.94,0,1939.7573 -3466,4292,7648,7647,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,10,-1,67.172394,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6594307,0,64.23,44.69,60.12,54.8,10,1,1,0,0,0,7,2,1,273,753047.63,178219.69,477200.94,0,1939.7573 -3467,4293,7649,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.8128614,9.1259384,7.0317202,0,0,-1053.5692,0,2,2,2019,9,0,46,43,1,0,0,19.616978,19.616978,0,0,0,0,0,1,1,0,6.8542523,0,44.02,60.7,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,229,799298.81,97984.953,728317.06,254906.83,3244.0789 -3468,4294,7650,7651,-9,-9,1,0,31,0,0,0,1,1,-9,1,1,0,0,0,15,-2,-116.43931,0,2,2,2019,10,0,0,22,3,0,0,0,0,0,0,0,0,0,1,1,0,.49614403,0,47.96,14.71,49.03,40.72,8.333333333333334,1,1,0,0,7,2,4,1,483,152603.19,189322.13,137647.34,291807.13,2819.9175 -3468,4294,7651,7650,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.7924376,9.1553574,0,15,2,-2.9221199,0,2,2,2019,8,0,40,42,1,0,0,21.766314,21.766314,0,0,0,0,14.5,1,1,0,.88781643,0,49.03,40.72,47.96,14.71,8.333333333333334,1,1,0,0,7,2,4,1,483,152603.19,189322.13,137647.34,291807.13,2819.9175 -3469,4295,7652,-9,7655,7653,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.5323,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,691,173531.66,108556.48,0,0,4028.9927 -3469,4295,7653,7655,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.4227638,8.3535137,0,6,6,-49.911476,-9,2,1,2019,9,0,35,0,1,1,0,15.511182,15.511182,0,0,0,0,0,1,1,0,0,0,52,56,35.61,59.41,7,1,1,0,0,1,1,5,1,691,173531.66,108556.48,0,0,4028.9927 -3469,4295,7654,-9,7655,7653,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.11597,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,691,173531.66,108556.48,0,0,4028.9927 -3469,4295,7655,7653,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.5861416,8.5766068,0,6,-6,66.586952,0,1,2,2019,25,10,45,50,1,10,0,15.227802,15.227802,0,0,0,0,0,1,1,0,0,0,35.61,59.41,52,56,3.333333333333333,1,1,0,0,9,1,5,1,691,173531.66,108556.48,0,0,4028.9927 -3470,4296,7656,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,4,0,0,0,0,0,-973.04926,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.71,51.14,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,186,197434.09,353826.06,0,0,1319.1544 -3471,4297,7657,7658,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,6.8299956,6.8271203,0,5,-1,-122.1963,0,2,2,2019,12,0,10,13,1,0,0,15.051483,15.051483,0,0,0,0,0,1,1,0,6.6342268,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,6,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 -3471,4297,7658,7657,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.5247002,9.1762581,0,5,1,-34.202652,0,2,2,2019,11,1,45,50,1,1,0,30.313913,30.313913,0,0,0,0,0,1,1,0,3.7344747,0,48.81,59.91,57.06,57.76,8.333333333333334,1,1,0,0,7,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 -3471,4297,7659,-9,7657,7658,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.95062,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 -3471,4297,7660,-9,7657,7658,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.3871,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 -3471,4297,7661,-9,7657,7658,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1154.329,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1132,767459.75,553134.81,464906.69,219666.61,5657.0996 -3472,4298,7662,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-916.93555,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,41.3,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,445,71582.836,0,0,0,1433.6943 -3473,4299,7663,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.8403988,6.6192861,0,0,-972.35126,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.6903043,45.42,24.8,-9,-9,5,1,1,0,0,0,11,2,1,288,544321.31,-71794.43,127762.64,0,1541.417 -3474,4300,7664,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.2385116,7.2954707,0,0,-1028.5015,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1972854,7.3960986,57.16,56.15,-9,-9,10,1,1,0,0,6,12,3,1,280,492484.69,168761.61,58215.938,0,1701.1367 -3475,4301,7665,7666,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,1,0,0,-9,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.24,16.93,64.23,4.850000000000001,3.333333333333333,1,1,0,1,0,13,1,1,258.5,227438.31,0,0,0,1284.2856 -3475,4301,7666,7665,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,1,0,0,-9,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.23,4.850000000000001,40.24,16.93,6.666666666666667,1,1,0,1,0,13,1,1,258.5,227438.31,0,0,0,1284.2856 -3476,4302,7667,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,3.7083306,3.7713549,0,0,-1107.1182,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,3.4977295,37.24,38.17,-9,-9,5,1,1,0,0,0,9,2,1,198,263982.66,0,0,0,614.58337 -3477,4303,7668,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.377284,6.7977953,0,0,0,-1022.1042,0,-9,-9,2019,17,8,40,45,1,8,0,2.7131937,2.7131937,0,0,0,0,0,0,0,0,6.4763894,0,46.92,60.71,-9,-9,6.666666666666667,3,4,0,1,10,8,2,1,1366,-134582.95,71611.555,0,0,357.08722 -3477,4304,7669,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,6.9454155,6.7114739,0,0,0,-972.5542,-9,-9,-9,2019,21,8,33,0,1,8,0,4.4744496,4.4744496,0,0,0,0,0,0,0,0,0,0,23.72,62.52,-9,-9,3.333333333333333,3,4,0,1,1,8,2,1,469,198285.42,0,0,0,941.01965 -3478,4305,7670,7671,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,0,0,0,10,0,29.321539,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.2,56.67,49.35,59.64,1.666666666666667,1,1,0,0,0,13,5,1,1374,1106293.8,516017.47,440093.13,0,6087.77 -3478,4305,7671,7670,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.5235538,9.504981,0,10,0,2.1435103,0,2,1,2019,11,1,52,60,1,1,0,38.604042,38.604042,0,0,0,0,0,0,0,0,5.2332611,0,49.35,59.64,53.2,56.67,8.333333333333334,1,1,0,0,10,13,5,1,1374,1106293.8,516017.47,440093.13,0,6087.77 -3478,4305,7672,-9,7670,7671,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1102.9393,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1374,1106293.8,516017.47,440093.13,0,6087.77 -3478,4306,7673,-9,7670,7671,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-878.51898,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,13,1,1,686,-389535.91,0,0,0,0 -3479,4307,7674,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1085.5166,0,-9,-9,2019,33,12,0,30,3,12,0,0,0,0,0,0,0,0,1,1,0,3.7737932,0,25.52,29.05,-9,-9,1.666666666666667,1,1,0,1,7,11,1,1,2194,407586.78,137329.33,323524.63,0,216.02324 -3480,4308,7675,7676,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.1853762,8.5376406,0,42,7,-3.440134,0,3,3,2019,10,0,25,50,1,1,0,15.965921,15.965921,1,0,30.782774,0,0,1,1,0,0,0,52,47,58.87,51.29,7,1,1,0,0,9,13,3,1,669.5,1265482.5,977837.69,243006.13,20981.254,2333.6406 -3480,4308,7676,7675,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-7,-93.557983,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.0052299,0,58.87,51.29,52,47,8.333333333333334,1,1,0,0,2,13,3,1,669.5,1265482.5,977837.69,243006.13,20981.254,2333.6406 -3481,4309,7677,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.6258049,6.266324,0,0,-1028.9647,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5689845,6.360693,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,783,187088.89,165930.67,518908.34,0,1115.0547 -3482,4310,7678,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,8.0344095,8.0828657,0,0,-1027.5193,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,1.8295016,3.5184815,0,0,1,1,0,0,7.9421177,42.29,29,-9,-9,3.333333333333333,1,1,0,0,0,13,4,1,220,374836,188981.3,109741.92,0,2167.446 -3483,4311,7679,-9,7681,7680,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1035.9048,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,5,1,1047.6666,526390.88,101894.37,239246.06,42308.938,4318.2734 -3483,4311,7680,7681,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.964036,8.9183369,0,21,-1,15.281462,0,2,1,2019,7,0,40,77,1,0,0,21.773045,21.773045,0,0,0,0,0,1,1,0,0,0,54.2,57.49,38.63,63.11,6.666666666666667,1,1,0,0,12,1,5,1,1047.6666,526390.88,101894.37,239246.06,42308.938,4318.2734 -3483,4311,7681,7680,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.5477457,8.4664783,0,21,1,-103.32504,0,2,2,2019,22,10,42,42,1,10,0,13.912931,13.912931,0,0,0,0,0,1,1,0,0,0,38.63,63.11,54.2,57.49,6.666666666666667,1,1,0,0,11,1,5,1,1047.6666,526390.88,101894.37,239246.06,42308.938,4318.2734 -3484,4312,7682,-9,7687,7684,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1136.7014,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 -3484,4312,7683,-9,7687,7684,1,1,13,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1015.6649,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 -3484,4312,7684,7687,-9,-9,1,1,38,1,4,0,2,2,-9,0,3,8.9982052,9.0788984,0,6,1,-172.07785,0,2,-9,2019,6,0,47,45,1,0,0,19.264328,19.264328,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.87,45.76,8.333333333333334,1,1,0,0,8,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 -3484,4312,7685,-9,7687,7684,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1049.149,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 -3484,4312,7686,-9,7687,7684,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.5032,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 -3484,4312,7687,7684,-9,-9,1,0,37,1,4,0,2,2,-9,0,4,8.7388821,8.9004593,0,6,-1,-52.003864,0,2,2,2019,7,0,44,45,1,0,0,21.552345,21.552345,0,0,0,0,0,1,1,0,0,0,58.87,45.76,57.33,53.46,10,1,1,0,0,6,2,5,1,825.83331,211199.7,97626.031,187852.41,206659.27,4545.9609 -3485,4313,7688,7689,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.8313322,8.5290031,0,8,0,-83.13607,0,3,3,2019,8,0,39,40,1,0,0,22.634727,22.634727,0,0,0,0,0,1,1,0,4.2488799,0,58.15,52.91,58.2,46.15,6.666666666666667,1,1,0,0,9,5,5,1,592,188877.38,40441.203,129947.8,57283.289,3662.7969 -3485,4313,7689,7688,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.5284986,7.7315331,0,8,0,49.628712,0,2,3,2019,4,0,24,26,1,0,0,8.7605839,8.7605839,0,0,0,0,0,1,1,0,2.6850955,0,58.2,46.15,58.15,52.91,8.333333333333334,1,1,0,0,9,5,5,1,592,188877.38,40441.203,129947.8,57283.289,3662.7969 -3486,4314,7690,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,7.256649,8.0967159,6.9075541,0,0,-888.35254,0,3,3,2019,10,0,15,16,1,0,0,11.698585,11.698585,0,0,0,0,2,1,1,0,6.575067,7.4889903,57.06,57.76,-9,-9,10,1,1,0,0,8,13,4,1,250,1026262.4,651148.25,129371.95,0,2422.0654 -3487,4315,7691,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,8.3394203,8.2894058,0,0,-1048.5911,0,-9,-9,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.2087474,8.1029902,38.47,21.71,-9,-9,1.666666666666667,1,1,0,0,0,7,4,1,1049,1128520.9,225802.11,755969.44,0,3414.707 -3488,4316,7692,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.9652901,7.6745896,0,0,0,-963.61841,0,3,3,2019,6,0,28,33,1,0,0,10.711683,10.711683,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,12,3,1,281,594107.75,361691.38,114828.77,9153.3838,1332.9413 -3489,4317,7693,7694,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.4615455,7.9447279,45,-5,9.6590023,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4772499,7.4387684,58.15,52.91,57.16,56.15,10,1,1,0,0,4,7,4,1,2411.5,2038933.1,850334.5,642471.5,0,3743.6978 -3489,4317,7694,7693,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.5261965,8.4174728,45,5,-78.906967,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5397806,8.3741035,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,2,7,4,1,2411.5,2038933.1,850334.5,642471.5,0,3743.6978 -3490,4318,7695,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.0967636,8.0917997,0,0,0,-1085.7444,0,2,-9,2019,20,8,42,43,1,8,0,9.8381271,9.8381271,0,0,0,0,0,0,0,0,0,0,33.33,37.64,-9,-9,1.666666666666667,1,1,0,1,12,9,4,1,1283,76763.563,-45905.383,0,0,1147.4794 -3491,4319,7696,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,5.4060597,4.9180183,0,0,-954.02228,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,5.6852446,5.6230969,44.96,50.74,-9,-9,3.333333333333333,1,1,0,1,3,11,2,1,920,-69574.875,168765.22,158652.78,0,158.28835 -3492,4320,7697,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,4,7.153914,7.3024101,0,0,0,-872.68054,-9,1,2,2019,10,2,30,0,1,2,0,4.8368282,4.8368282,0,0,0,0,0,0,0,0,0,0,61.84,28.15,-9,-9,8.333333333333334,1,1,0,0,3,1,3,0,824,0,0,0,0,851.39508 -3493,4321,7698,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,4,0,7.6283998,7.4597149,0,0,-1014.2792,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,5.830585,0,42.310322,0,1,1,0,3.6109512,7.3601241,57.77,33.05,-9,-9,10,1,1,0,0,0,6,3,1,354,897849.94,92847.539,225821.97,0,2151.4824 -3494,4322,7699,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.0546675,8.1653624,0,0,0,-1040.4924,0,2,2,2019,13,1,20,30,1,1,0,22.964724,22.964724,0,0,0,0,0,1,1,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,8,10,4,0,364,455421.47,197971.66,628250.13,259530.86,1965.8948 -3495,4323,7700,7701,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.1421032,8.1586628,0,4,0,-161.80971,0,-9,-9,2019,6,0,40,35,1,0,0,9.1211147,9.1211147,0,0,0,0,0,1,1,0,0,0,57.32,47.78,45.84,50.44,8.333333333333334,1,1,0,0,5,13,4,1,454.5,-47601.805,20101.182,155296.19,87997.984,2491.7004 -3495,4323,7701,7700,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.0264702,7.5963445,0,4,0,56.898239,0,-9,-9,2019,9,1,15,0,1,1,0,19.341593,19.341593,0,0,0,0,0,1,1,0,0,0,45.84,50.44,57.32,47.78,6.666666666666667,1,1,0,0,1,13,4,1,454.5,-47601.805,20101.182,155296.19,87997.984,2491.7004 -3496,4324,7702,7703,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.2391319,9.3117275,0,9,5,1.6383963,0,3,3,2019,15,4,50,60,1,4,0,25.848797,25.848797,0,0,0,0,0,0,0,0,0,0,32.59,62.12,43.6,51.61,3.333333333333333,1,1,0,0,9,9,5,1,1174.5,544583.88,243671.8,434256.5,146042.81,6189.9121 -3496,4324,7703,7702,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5354233,8.4729395,0,9,-5,-3.0848181,0,-9,-9,2019,15,5,50,50,1,5,0,10.332381,10.332381,0,0,0,0,0,0,0,0,7.8657393,0,43.6,51.61,32.59,62.12,5,1,1,0,0,8,9,5,1,1174.5,544583.88,243671.8,434256.5,146042.81,6189.9121 -3497,4325,7704,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-955.37726,0,3,3,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.91,28.32,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,601,414722.44,0,0,0,654.51465 -3498,4326,7705,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.184638,8.3769703,0,0,0,-970.69543,0,2,2,2019,10,0,40,42,1,0,0,11.578488,11.578488,0,0,0,0,0,0,0,0,7.3561444,0,52.51,54.26,-9,-9,3.333333333333333,4,2,0,0,9,5,4,1,256,-144704.38,30786.881,0,0,1495.1732 -3499,4327,7706,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.2874193,8.2942352,0,0,-900.82605,0,3,2,2019,28,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,1.2536737,7.8739228,27.69,62,-9,-9,8.333333333333334,1,1,0,0,6,8,4,1,728,1180162.5,578549.13,522942.19,24323.336,2534.3271 -3500,4328,7707,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,1,8.2565346,8.3402319,0,0,0,-884.63623,0,2,1,2019,6,0,38,35,1,0,0,13.219001,13.219001,0,0,0,0,0,1,1,0,3.4033463,0,51.82,41.66,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,414,0,0,0,0,1351.4908 -3501,4329,7708,-9,7709,7710,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.93958,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 -3501,4329,7709,7710,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.7081108,7.8396125,0,11,-5,-32.797073,0,2,3,2019,12,0,28,27,1,0,0,9.878274,9.878274,0,0,0,0,0,0,0,0,2.3701184,0,48.76,53.24,28.55,61.38,8.333333333333334,2,3,0,0,7,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 -3501,4329,7710,7709,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.9778519,9.4010649,0,11,5,111.03279,0,1,1,2019,17,7,50,52,1,7,0,20.412498,20.412498,0,0,0,0,0,0,0,0,0,0,28.55,61.38,48.76,53.24,3.333333333333333,2,3,0,0,9,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 -3501,4329,7711,-9,7709,7710,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4427,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,649.75,334360.66,114872.37,340569.72,192102.84,4067.7881 -3502,4330,7712,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,0,6.3372931,6.0533104,0,0,-984.06482,1,-9,-9,2019,8,0,0,35,2,0,0,0,0,0,0,0,0,0,0,0,0,5.8954506,0,47.64,55.37,-9,-9,10,1,1,0,0,2,4,2,0,124,188954.42,0,0,0,261.2623 -3503,4331,7713,7716,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,0,0,0,17,1,-22.410679,0,3,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52.4,52.91,10,2,3,0,0,3,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 -3503,4331,7714,-9,7713,7716,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-912.58917,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 -3503,4331,7715,-9,7713,7716,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1026.7678,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 -3503,4331,7716,7713,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,9.0326509,8.8766413,0,17,-1,27.433016,0,1,1,2019,10,0,60,48,1,0,0,13.655735,13.655735,0,0,0,0,0,1,1,0,0,0,52.4,52.91,54.37,54.8,7,2,3,0,0,12,7,4,1,354,228783.98,97088.961,302841.06,127773.34,3044.3386 -3504,4332,7717,7718,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.779129,8.5132675,0,30,-2,7.2666378,0,3,2,2019,12,1,46,46,1,1,0,14.899427,14.899427,0,0,0,0,0,0,0,0,0,0,53.51,52.37,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,0,378,214750.47,314145.13,0,0,2863.8125 -3504,4332,7718,7717,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.7091427,7.7096972,0,30,2,-95.864471,0,-9,-9,2019,8,0,38,23,1,0,0,6.2122612,6.2122612,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.51,52.37,10,1,1,0,0,9,9,5,0,378,214750.47,314145.13,0,0,2863.8125 -3504,4333,7719,-9,7718,7717,1,1,23,0,0,0,2,2,-9,0,3,7.9785647,8.4942245,6.9925823,0,0,-914.14941,0,2,2,2019,12,0,38,40,1,0,1,8.8142872,8.8142872,0,0,0,0,0,0,0,0,7.3432527,0,55.53,51.55,-9,-9,5,1,1,0,0,8,9,4,0,470,541696.81,0,0,0,1345.4863 -3505,4334,7720,7721,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.1225939,8.4221411,0,5,0,-69.722855,0,2,2,2019,8,0,55,50,1,0,0,9.692441,9.692441,0,0,0,0,0,1,1,0,7.2548361,0,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,9,13,5,1,1368.3334,347837.69,128946.09,194343.19,-5670.8042,4149.5889 -3505,4334,7721,7720,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0893803,8.2309494,0,5,0,-30.920584,0,2,1,2019,10,0,22,23,1,0,0,19.973797,19.973797,0,0,0,0,2,1,1,0,7.9316454,0,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,9,13,5,1,1368.3334,347837.69,128946.09,194343.19,-5670.8042,4149.5889 -3505,4334,7722,-9,7721,7720,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1067.1743,-9,2,2,2019,5,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.17566228,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,1368.3334,347837.69,128946.09,194343.19,-5670.8042,4149.5889 -3506,4335,7723,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8889413,7.8934617,5.0012546,0,0,-977.50391,0,3,2,2019,8,0,35,35,1,0,0,7.9564691,7.9564691,0,0,0,0,0,0,0,0,0,5.1957459,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,126,945469.81,395807.09,190171.81,0,1219.6899 -3507,4336,7724,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.5501385,8.7519274,0,0,0,-1086.6501,0,3,3,2019,6,0,48,57,1,0,0,9.888545,9.888545,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,12,4,0,158,-65756.234,47626.574,0,0,1997.2952 -3508,4337,7725,7726,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.4550748,6.8719125,43,-17,-62.831223,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,2.1154764,0,0,1,1,0,0,6.4145393,41.21,27.4,55,45,3.333333333333333,4,2,0,0,0,11,2,1,241,788525.31,560276.31,123311.3,0,2351.9482 -3508,4337,7726,7725,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,45,17,2.3096123,-9,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,41.21,27.4,8,3,4,0,0,0,11,2,1,241,788525.31,560276.31,123311.3,0,2351.9482 -3509,4338,7727,7728,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,5.4896383,5.7213984,46,-4,91.952484,0,3,3,2019,8,0,10,25,1,0,0,.0021383122,.0021383122,0,0,0,0,2,1,1,0,5.9565921,4.9481468,56.52,48.31,49.86,55.31,8.333333333333334,1,1,0,0,9,9,2,1,278,183340.13,107894.61,406298.25,0,1983.2334 -3509,4338,7728,7727,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.2839351,6.1184216,46,4,-85.70414,0,3,3,2019,10,0,20,25,1,0,0,.0010102371,.0010102371,0,0,0,0,2,1,1,0,7.020947,6.3571644,49.86,55.31,56.52,48.31,8.333333333333334,1,1,0,0,9,9,2,1,278,183340.13,107894.61,406298.25,0,1983.2334 -3510,4339,7729,-9,7730,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.34753,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,372,436871.44,69925.594,272281.13,114528.07,2291.2988 -3510,4339,7730,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.462575,8.7813625,0,0,0,-946.15381,0,1,3,2019,12,0,46,38,1,0,0,13.65791,13.65791,0,0,0,0,0,1,1,0,0,0,47.24,53.95,-9,-9,5,1,1,0,0,10,13,4,1,372,436871.44,69925.594,272281.13,114528.07,2291.2988 -3511,4340,7731,7732,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.1037965,5.9498134,60,2,-54.505489,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1161804,46.81,49,58.32,50.22,8.333333333333334,1,1,0,0,0,2,2,0,728.5,35826.961,100051.34,203.13672,0,1259.5 -3511,4340,7732,7731,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,60,-2,-20.871201,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,13.406996,0,0,1,1,0,0,0,58.32,50.22,46.81,49,6.666666666666667,1,1,0,0,0,2,2,0,728.5,35826.961,100051.34,203.13672,0,1259.5 -3512,4341,7733,7734,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.6229582,8.5865278,0,29,-6,-59.415775,-9,2,2,2019,12,0,42,0,1,2,0,11.993599,11.993599,0,0,0,0,0,1,1,0,0,0,48,49,52.48,54.33,7,1,1,0,0,1,9,5,1,415,1321472.5,193327.72,472309.56,0,7760.2417 -3512,4341,7734,7733,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.670043,9.7770023,0,29,6,-95.918045,0,2,1,2019,10,0,51,53,1,0,0,27.973572,27.973572,0,0,0,0,0,1,1,0,3.5357695,0,52.48,54.33,48,49,8.333333333333334,1,1,0,0,12,9,5,1,415,1321472.5,193327.72,472309.56,0,7760.2417 -3512,4342,7735,-9,7733,7734,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-955.70172,-9,1,1,2019,18,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.14,57.85,-9,-9,6.666666666666667,1,1,1,0,4,9,1,1,324,31936.541,0,0,0,0 -3513,4343,7736,-9,7737,7738,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.09247,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 -3513,4343,7737,7738,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,14,-1,67.334892,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,4,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 -3513,4343,7738,7737,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.1561565,7.928966,0,3,1,69.31749,0,-9,-9,2019,9,0,50,50,1,1,0,6.6396031,6.6396031,0,0,0,0,0,1,1,0,0,0,51,56,54.2,57.49,8,4,1,0,0,1,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 -3513,4343,7739,-9,7737,7738,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.81677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,738.25,-173400.97,-4233.8604,108864.09,0,2382.2549 -3514,4344,7740,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.0558758,8.2465858,0,0,0,-993.98126,-9,2,2,2019,8,0,37,0,1,0,0,7.6671472,7.6671472,0,0,0,0,0,1,1,0,0,0,58.07,46.29,-9,-9,6.666666666666667,1,1,0,0,10,12,3,0,1043,-60424.496,48472.773,0,0,1349.9554 -3514,4345,7741,-9,-9,7740,1,0,18,0,1,0,2,2,1,0,3,6.9314795,6.9733443,0,0,0,-922.58899,-9,-9,2,2019,20,8,20,0,1,8,1,5.6089644,5.6089644,0,0,0,0,0,1,1,0,0,0,37.17,45.07,-9,-9,1.666666666666667,1,1,0,0,1,12,2,0,771,45655.539,0,0,0,503.7673 -3515,4346,7742,-9,-9,-9,1,0,86,0,2,0,3,3,-9,0,3,0,7.9977145,7.7720547,0,0,-1041.9481,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.4176815,0,0,0,1,1,0,5.1911497,7.9003015,54,44,-9,-9,8,1,1,0,0,0,8,3,1,458,474943.66,68206.469,276777.19,0,2084.3901 -3515,4347,7743,-9,7744,7746,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2826,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 -3515,4347,7744,7746,-9,-9,1,0,28,0,2,0,3,3,-9,0,4,0,0,0,1,-3,1.50453,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,48,57,50,57,7,1,1,0,0,0,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 -3515,4347,7745,-9,7744,7746,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-755.78308,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 -3515,4347,7746,7744,-9,-9,1,1,31,0,2,0,3,3,-9,0,4,7.9861503,8.1767464,0,1,3,45.974083,-9,-9,-9,2019,10,0,35,0,1,1,0,8.9574738,8.9574738,0,0,0,0,0,1,1,0,0,0,50,57,48,57,7,1,1,0,0,9,8,3,1,548.75,6376.2246,16488.387,0,0,2013.9988 -3516,4348,7747,7748,-9,-9,1,0,31,1,2,0,2,2,-9,0,2,0,3.7402627,3.6245062,3,1,26.908903,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.1993995,0,41.06,28.62,52.97,53.97,8.333333333333334,1,1,0,0,2,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 -3516,4348,7748,7747,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.0624771,8.4036837,0,3,-1,111.08775,0,-9,-9,2019,10,1,42,37,1,1,0,8.4522552,8.4522552,0,0,0,0,0,1,1,0,0,0,52.97,53.97,41.06,28.62,8.333333333333334,1,1,0,0,9,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 -3516,4348,7749,-9,7747,7748,1,1,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.22,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 -3516,4348,7750,-9,7747,7748,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.9943,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,584,-111922.93,-82675.961,0,0,1356.0714 -3517,4349,7751,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.0985994,8.9038391,7.9868789,0,0,-1033.2998,0,2,2,2019,8,1,30,30,1,1,0,16.494429,16.494429,0,0,0,0,0,0,0,0,8.3643427,8.2635021,58.07,46.29,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,711,246096.31,256008.52,172263.78,0,4316.731 -3518,4350,7752,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0837183,7.6605139,0,0,0,-1043.891,0,2,2,2019,8,0,35,35,1,0,0,11.072414,11.072414,0,0,0,0,0,0,0,0,0,0,53.2,42.92,-9,-9,6.666666666666667,4,2,0,0,13,5,4,1,1073,391037.41,185419.39,61299.98,0,1408.0669 -3519,4351,7753,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.2446651,8.303688,0,0,0,-986.59021,0,2,1,2019,5,0,30,30,1,0,0,13.989441,13.989441,0,0,0,0,0,0,0,0,6.399025,0,58.05,54.52,-9,-9,10,1,1,0,0,9,5,4,1,760,202782.63,348446.53,288390.63,0,1613.858 -3520,4352,7754,7755,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.1310701,7.9734216,0,2,2,-80.003822,-9,-9,-9,2019,8,0,48,0,1,0,0,7.7377253,7.7377253,0,0,0,0,0,0,0,0,0,0,52.24,50.75,35.46,46.98,8.333333333333334,1,1,0,0,1,4,4,0,879.66669,-122099.08,86297.406,172809.63,171794.08,2482.5166 -3520,4352,7755,7754,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.4179006,7.5546288,0,2,-2,30.330732,0,-9,-9,2019,11,1,35,30,1,1,0,5.6361618,5.6361618,0,0,0,0,0,0,0,0,0,0,35.46,46.98,52.24,50.75,8.333333333333334,1,1,0,0,7,4,4,0,879.66669,-122099.08,86297.406,172809.63,171794.08,2482.5166 -3520,4352,7756,-9,7755,7754,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1161.4191,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,0,879.66669,-122099.08,86297.406,172809.63,171794.08,2482.5166 -3521,4353,7757,7758,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.868474,7.2298455,8,4,-88.677811,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.290637,6.1548648,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,682.5,1499043.3,767048.88,393377.5,0,2968.1284 -3521,4353,7758,7757,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.640626,8.298667,8,-4,102.93137,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8988099,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,13,4,1,682.5,1499043.3,767048.88,393377.5,0,2968.1284 -3522,4354,7759,7760,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.7483902,8.2135582,9,-1,44.454891,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.777729,46.48,58.28,58.45,43.18,8.333333333333334,1,1,0,0,0,13,3,1,435.5,536797.81,313936.81,154928,0,2906.73 -3522,4354,7760,7759,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.7179728,6.648695,9,1,48.25647,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0321431,58.45,43.18,46.48,58.28,8.333333333333334,1,1,0,0,0,13,3,1,435.5,536797.81,313936.81,154928,0,2906.73 -3523,4355,7761,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.5753851,7.5776162,6.2616343,0,0,-1091.3905,0,1,2,2019,3,0,44,40,1,0,0,5.2007504,5.2007504,0,0,0,0,0,0,0,0,5.8384862,0,38.82,63.21,-9,-9,10,4,2,0,0,8,5,3,0,1895,-71616.563,0,0,0,1237.9324 -3524,4356,7762,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,8.5474386,8.6751375,0,0,0,-984.11206,0,2,-9,2019,25,10,20,20,1,10,0,22.849346,22.849346,0,0,0,0,0,1,1,0,0,0,30.96,25.37,-9,-9,0,2,3,0,0,9,5,5,0,965,466717.09,109887.65,21399.289,640.78076,3247.6414 -3525,4357,7763,7764,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.247015,8.2907867,0,6,-2,-62.654316,0,2,2,2019,15,3,24,26,1,3,0,19.233097,19.233097,0,0,0,0,0,0,0,0,1.9357378,0,45.42,51,57.33,53.46,8.333333333333334,1,1,0,0,7,2,3,1,821.5,2453836,1817182,396079.31,0,2106.0503 -3525,4357,7764,7763,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,6,2,26.822289,-9,-9,-9,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.5194845,0,57.33,53.46,45.42,51,8.333333333333334,1,1,0,0,9,2,3,1,821.5,2453836,1817182,396079.31,0,2106.0503 -3525,4358,7765,-9,7763,7764,1,0,20,0,0,0,1,1,1,0,5,7.2090902,7.5154419,6.0226493,0,0,-961.72339,-9,1,1,2019,5,0,20,0,1,0,1,6.3661056,6.3661056,0,0,0,0,0,0,0,0,6.8508902,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,422,-237740.81,0,0,0,900.53888 -3526,4359,7766,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8712358,8.6147728,0,0,0,-1215.0902,0,2,1,2019,5,0,40,40,1,0,0,20.086792,20.086792,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,5,1,1393,1365587.5,813115.88,551034.88,0,2095.7373 -3527,4360,7767,-9,7770,7769,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.2483,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 -3527,4360,7768,-9,7770,7769,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.03937,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 -3527,4360,7769,7770,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.7295995,7.9900608,0,17,11,-75.812805,0,3,2,2019,8,0,40,35,1,0,0,7.6918025,7.6918025,0,0,0,0,27,1,1,0,0,0,48.87,58.55,57.16,56.15,6.666666666666667,2,3,0,0,9,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 -3527,4360,7770,7769,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,0,0,0,17,-11,59.650974,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,2,3,0,0,0,4,3,1,840.75,417588.66,-28151.684,67221.914,24016.176,2356.9631 -3528,4361,7771,7772,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.3288488,9.1910944,0,1,14,-98.365509,0,2,2,2019,14,5,50,50,1,5,0,25.415335,25.415335,0,0,0,0,0,0,0,0,6.2994885,0,48.27,36.26,44.49,61.79,8.333333333333334,1,1,0,0,9,2,5,1,689,89142.531,217462.5,211670.63,220017.77,5484.9902 -3528,4361,7772,7771,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.1913166,8.1131201,0,1,-14,47.902977,-9,-9,-9,2019,8,2,37,0,1,2,0,13.850716,13.850716,0,0,0,0,0,0,0,0,.98958254,0,44.49,61.79,48.27,36.26,8.333333333333334,1,1,0,0,10,2,5,1,689,89142.531,217462.5,211670.63,220017.77,5484.9902 -3529,4362,7773,7774,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.822773,8.1620817,0,27,-7,74.185402,0,-9,-9,2019,10,0,17,17,1,1,0,13.231065,13.231065,0,0,0,0,42,1,1,0,0,0,50,55,50,49,8,2,3,0,0,12,8,4,1,206.5,-201113.2,15831.922,278188.72,174335.38,4455.999 -3529,4362,7774,7773,-9,7776,1,1,55,0,1,0,3,3,-9,0,3,8.2889805,8.5622435,0,7,7,-20.249987,0,-9,3,2019,10,0,40,0,1,1,0,11.737855,11.737855,0,0,0,0,0,1,1,0,7.0159717,0,50,49,50,55,7,2,3,0,0,1,8,4,1,206.5,-201113.2,15831.922,278188.72,174335.38,4455.999 -3529,4363,7775,-9,7773,7774,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1033.5283,-9,1,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,0,0,62.68,30.6,-9,-9,8.333333333333334,2,3,0,0,3,8,1,1,2134,-44983.516,0,0,0,516.18066 -3529,4364,7776,-9,-9,-9,1,1,86,0,1,0,3,3,-9,0,3,0,0,0,0,0,-993.21753,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,30.819597,0,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,8,1,1,617,-30940.111,0,0,0,206.61481 -3529,4365,7777,7778,7773,7774,1,0,23,0,1,0,2,2,-9,0,4,0,0,0,2,-3,12.122088,0,1,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46,58,49,58,7,2,3,1,0,0,8,3,1,766.5,57336.859,-9310.6074,0,0,1260.7163 -3529,4365,7778,7777,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,8.3182001,7.96703,0,2,3,-7.1523256,0,-9,-9,2019,10,0,50,0,1,1,0,7.4078526,7.4078526,0,0,0,0,0,1,1,0,0,0,49,58,46,58,7,2,3,0,0,12,8,3,1,766.5,57336.859,-9310.6074,0,0,1260.7163 -3530,4366,7779,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.1533,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,2,1,1,264,170333.41,0,0,0,548.04846 -3531,4367,7780,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-934.70807,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,46.16,-9,-9,8.333333333333334,2,3,0,0,0,7,1,0,343,271717.19,36009.27,0,0,1387.062 -3532,4368,7781,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,4.7054048,4.6630282,0,0,-1023.4591,0,3,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,5.1735668,0,41.57,24.45,-9,-9,1.666666666666667,1,1,0,1,0,6,2,0,1532,180812.78,300461.81,0,0,31.588114 -3532,4369,7782,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.08966,0,-9,-9,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,39.93,63.95,-9,-9,1.666666666666667,1,1,1,0,2,6,1,0,428,-92266.063,0,0,0,480.67184 -3533,4370,7783,7784,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,36,-1,-189.7404,0,3,1,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.95,33.41,43.4,51.98,6.666666666666667,2,3,1,0,2,9,2,1,321.5,721696.88,251050.16,458079.13,0,375.86755 -3533,4370,7784,7783,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,6.2201185,6.7179217,9,1,-46.407249,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.2084517,6.4723907,43.4,51.98,33.95,33.41,8.333333333333334,2,3,0,0,1,9,2,1,321.5,721696.88,251050.16,458079.13,0,375.86755 -3533,4371,7785,-9,7783,7784,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-918.10535,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,0,9,1,1,228,0,0,0,0,0 -3534,4372,7786,7788,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.1642008,9.0074711,0,9,2,-84.237556,0,3,2,2019,7,0,40,40,1,0,0,23.278036,23.278036,0,0,0,0,0,1,1,0,3.3999336,0,62.49,55.09,57.92,51.82,8.333333333333334,1,1,0,0,10,12,4,1,439.33334,416098.22,0,304721.97,36467.391,3453.8196 -3534,4372,7787,-9,7788,7786,1,1,16,0,1,1,2,0,-9,0,5,0,5.6122952,5.6426282,0,0,-1100.0929,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.2360826,0,53.34,56.67,-9,-9,0,1,1,0,0,0,12,4,1,439.33334,416098.22,0,304721.97,36467.391,3453.8196 -3534,4372,7788,7786,-9,-9,1,0,44,0,1,0,2,2,0,0,3,0,0,0,9,-2,-30.176714,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.4112399,0,57.92,51.82,62.49,55.09,6.666666666666667,1,1,0,0,6,12,4,1,439.33334,416098.22,0,304721.97,36467.391,3453.8196 -3534,4373,7789,-9,7788,7786,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1003.689,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.62803441,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1194,-271203.47,0,0,0,253.91426 -3535,4374,7790,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.9816322,5.6116104,0,0,-842.7724,0,3,3,2019,4,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,5.8625374,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,322,29869.129,38281.508,0,0,-63.507534 -3536,4375,7791,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,7.9311199,7.8932943,0,0,-1113.7532,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.9624834,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,2480,1007826.5,500604.91,182686,0,2297.0667 -3537,4376,7792,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.8509612,8.0620117,0,0,0,-925.0564,0,2,3,2019,8,0,40,50,1,0,0,7.9094558,7.9094558,0,0,0,0,0,1,1,0,0,0,48.3,58.71,-9,-9,0,1,1,0,0,8,7,4,1,2861,1267.9128,115819.91,90039.063,18481.039,1806.7163 -3538,4377,7793,7794,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.812561,8.8507509,0,7,3,63.519005,0,3,2,2019,14,3,33,33,1,3,0,21.709589,21.709589,0,0,0,0,2,0,0,0,0,0,47.9,43.96,52.31,58.29,6.666666666666667,1,1,0,0,8,10,5,1,136.5,769710.94,629207.63,0,0,4063.2317 -3538,4377,7794,7793,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.8947611,8.2200527,0,7,-3,74.692719,0,3,2,2019,5,0,37,37,1,0,0,15.26604,15.26604,0,0,0,0,2,0,0,0,0,0,52.31,58.29,47.9,43.96,8.333333333333334,1,1,0,0,7,10,5,1,136.5,769710.94,629207.63,0,0,4063.2317 -3539,4378,7795,7796,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,9.3160133,9.1864882,7.5527081,38,7,132.07863,0,3,3,2019,8,0,33,33,1,0,0,29.878048,29.878048,0,0,0,0,0,1,1,0,7.2930188,7.4316001,56.35,51.16,55.27,39.27,8.333333333333334,1,1,0,0,12,9,5,0,1862,1415365.3,275559,664678.25,0,6863.0059 -3539,4378,7796,7795,-9,-9,1,0,63,0,0,0,3,3,-9,1,3,8.0615845,8.4285965,6.4757295,38,-7,-2.0286107,0,2,3,2019,10,0,37,38,1,0,0,8.984292,8.984292,0,0,0,0,0,1,1,0,6.1094108,7.0491571,55.27,39.27,56.35,51.16,5,1,1,0,0,12,9,5,0,1862,1415365.3,275559,664678.25,0,6863.0059 -3540,4379,7797,7798,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,0,0,0,4,2,0,-9,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,43.96,55.64,33.07,41.95,5,1,1,1,1,2,12,1,0,2176,-38628.141,0,0,0,853.0473 -3540,4379,7798,7797,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,0,0,0,4,-2,0,0,2,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,43.96,55.64,3.333333333333333,1,1,1,0,8,12,1,0,2176,-38628.141,0,0,0,853.0473 -3541,4380,7799,-9,7802,7800,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.6276,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 -3541,4380,7800,7802,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,9.1052456,8.879447,0,8,8,83.039627,0,2,2,2019,16,5,38,38,1,5,0,23.111858,23.111858,0,0,0,0,0,1,1,0,1.1390783,0,24.07,47.67,30.75,61.56,8.333333333333334,1,1,0,0,9,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 -3541,4380,7801,-9,7802,7800,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.7823,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 -3541,4380,7802,7800,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,0,0,0,9,-8,59.800102,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.75,61.56,24.07,47.67,8.333333333333334,1,1,0,0,5,9,4,1,979.25,7940.4375,51963.023,0,0,3587.4541 -3542,4381,7803,7804,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,11,-8,37.604061,0,3,2,2019,7,0,0,36,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8378448,0,61.41,51.58,53.78,48.41,8.333333333333334,2,3,1,0,8,4,3,1,799.5,1662753.6,1244502.3,198376.44,0,2296.8115 -3542,4381,7804,7803,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.0675898,7.7632089,11,8,-7.1556792,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5846429,7.7879877,53.78,48.41,61.41,51.58,8.333333333333334,1,1,0,0,5,4,3,1,799.5,1662753.6,1244502.3,198376.44,0,2296.8115 -3543,4382,7805,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.1019316,8.2885647,0,0,0,-1036.9601,0,2,2,2019,4,0,40,40,1,0,0,12.126579,12.126579,0,0,0,0,0,0,0,0,0,0,56.47,46.82,-9,-9,8.333333333333334,1,1,0,0,11,13,4,0,431,-1017.3279,-155646.41,134012.78,80716.258,1390.6893 -3544,4383,7806,7807,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.2196112,8.2534151,0,36,-5,-61.010548,0,3,3,2019,11,0,37,37,1,0,0,15.104331,15.104331,0,0,0,0,0,0,0,0,5.4290428,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,783,399528.78,265037.31,269914.5,0,6161.7324 -3544,4383,7807,7806,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.3443117,8.7096357,7.8698535,36,5,29.097557,0,2,3,2019,11,0,37,37,1,0,0,12.169607,12.169607,0,0,0,0,0,0,0,0,7.5003152,8.1358643,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,6,5,5,1,783,399528.78,265037.31,269914.5,0,6161.7324 -3544,4384,7808,-9,7806,7807,1,1,22,0,0,0,2,2,-9,0,4,7.7067809,7.8487811,0,0,0,-1003.094,0,2,2,2019,10,0,40,48,1,1,1,7.7439709,7.7439709,0,0,0,0,0,0,0,0,2.0494878,0,48,59,-9,-9,7,1,1,0,0,1,5,3,1,731,-393652.66,18281.539,0,0,1523.3468 -3545,4385,7809,-9,7810,7811,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1076.3469,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 -3545,4385,7810,7811,-9,-9,1,0,37,0,4,0,2,2,-9,0,1,0,0,0,6,-17,0,0,3,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,30.67,44.54,15.58,36.41,3.333333333333333,1,1,1,1,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 -3545,4385,7811,7810,-9,-9,1,1,54,0,4,0,2,2,-9,1,2,0,0,0,6,17,0,0,3,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,15.58,36.41,30.67,44.54,10,1,1,1,1,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 -3545,4385,7812,-9,7810,7811,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1074.6058,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 -3545,4385,7813,-9,7810,7811,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-930.91461,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 -3545,4385,7814,-9,7810,7811,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-902.02344,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,779.16669,37485.695,7741.7554,0,0,2745.9883 -3546,4386,7815,7816,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,7.558784,7.5270839,0,7,-1,140.30557,0,2,2,2019,13,1,26,30,1,1,0,8.3020382,8.3020382,0,0,0,0,0,1,1,0,2.6861203,0,43.91,30.21,50.77,50.99,8.333333333333334,1,1,0,0,7,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 -3546,4386,7816,7815,-9,-9,1,1,40,0,3,0,1,1,-9,0,3,8.4345474,8.508606,0,7,1,-72.665909,0,2,2,2019,11,0,126,53,1,0,0,5.7113247,5.7113247,0,0,0,0,0,1,1,0,0,0,50.77,50.99,43.91,30.21,8.333333333333334,1,1,0,0,5,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 -3546,4386,7817,-9,7815,7816,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.68372,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 -3546,4386,7818,-9,7815,7816,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.78082,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 -3546,4386,7819,-9,7815,7816,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.47662,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,948.40002,55163.391,214268.13,0,0,3130.1992 -3547,4387,7820,7821,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.2289453,8.4835482,8.0808029,35,1,.34228837,0,2,3,2019,8,0,6,6,1,0,0,28.331665,28.331665,0,0,0,0,0,1,1,0,3.1093004,7.9036083,54.79,55.86,67.51000000000001,35.12,8.333333333333334,1,1,0,0,11,6,5,1,1021,371494.03,218042.78,160006.33,71399.953,4533.8838 -3547,4387,7821,7820,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,8.3194742,8.6020641,0,35,-1,-15.926208,0,3,3,2019,6,0,38,38,1,0,0,18.800137,18.800137,0,0,0,0,0,1,1,0,4.0105128,0,67.51000000000001,35.12,54.79,55.86,10,1,1,0,0,10,6,5,1,1021,371494.03,218042.78,160006.33,71399.953,4533.8838 -3547,4388,7822,-9,7821,7820,1,1,30,0,0,0,2,2,-9,0,4,7.8461909,7.7735071,0,0,0,-964.81799,-9,2,1,2019,10,0,42,0,1,1,1,8.2055397,8.2055397,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,1,5,6,4,1,823,-266028.59,33570.254,0,0,619.77588 -3548,4389,7823,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.2443237,8.1702271,0,0,0,-982.94324,-9,2,1,2019,9,0,38,0,1,0,0,14.990673,14.990673,0,0,0,0,0,0,0,0,3.8590176,0,49.84,59.62,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,901,-342343.03,41218.656,0,0,1225.2747 -3549,4390,7824,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.6805925,6.4006371,0,0,-961.09546,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.1982918,0,57.16,56.15,-9,-9,10,1,1,0,0,0,5,2,0,3094,-18497.264,0,0,0,487.75143 -3550,4391,7825,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.1152391,8.0777979,0,0,0,-918.10211,0,3,3,2019,11,0,39,39,1,0,0,8.1283073,8.1283073,0,0,0,0,0,0,0,0,0,0,54.61,50.48,-9,-9,1.666666666666667,1,1,0,0,11,11,4,1,790,-310363.34,165452.91,0,0,1874.3351 -3550,4392,7826,-9,-9,7825,1,1,28,0,0,0,2,2,-9,0,3,7.6409545,7.3992763,0,0,0,-1047.2461,0,-9,2,2019,12,0,35,35,1,0,1,6.1718016,6.1718016,0,0,0,0,0,0,0,0,0,0,53.61,52.37,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,1276,-9757.4688,0,0,0,764.6925 -3551,4393,7827,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3709335,8.1827936,0,0,0,-999.23401,0,1,1,2019,9,0,40,40,1,0,0,12.160863,12.160863,0,0,0,0,2,0,0,0,4.9785018,0,38.46,59.39,-9,-9,5,1,1,0,0,12,8,5,1,170,614900.88,687986.44,0,0,2599.6069 -3552,4394,7828,-9,7829,7831,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.1821,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 -3552,4394,7829,7831,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.1577892,8.3104258,0,7,-2,-69.089615,0,1,1,2019,16,5,24,15,1,5,0,18.774864,18.774864,0,0,0,0,0,0,0,0,3.7044864,0,31.91,61.11,44.02,60.7,6.666666666666667,1,1,0,0,7,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 -3552,4394,7830,-9,7829,7831,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.95679,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 -3552,4394,7831,7829,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,0,0,0,7,2,-10.785161,0,2,2,2019,15,3,0,25,3,3,0,0,0,0,0,0,0,0,0,0,0,3.4771888,0,44.02,60.7,31.91,61.11,5,1,1,1,0,8,12,3,1,1146.25,181373.67,133726.31,223579.72,39363.73,1401.6941 -3553,4395,7832,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.0859957,8.1132908,3.9009764,0,0,-859.19275,0,2,1,2019,21,10,24,25,1,10,0,14.487465,14.487465,0,0,0,0,0,1,1,0,3.6543262,0,52.8,30.05,-9,-9,3.333333333333333,1,1,0,1,9,13,3,1,1986.5,248930.73,64559.152,45077.492,36349.367,2316.5107 -3553,4395,7833,-9,7832,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.509,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1986.5,248930.73,64559.152,45077.492,36349.367,2316.5107 -3554,4396,7834,7836,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.5253325,7.5611873,0,8,-1,37.065128,0,2,3,2019,9,0,30,30,1,0,0,9.4369688,9.4369688,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 -3554,4396,7835,-9,7834,7836,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6996,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 -3554,4396,7836,7834,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,9.1247511,9.2298031,0,8,1,-34.955143,0,2,3,2019,8,0,60,48,1,0,0,13.460196,13.460196,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 -3554,4396,7837,-9,7834,7836,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5536,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,956,277670.66,276431.09,351335.88,208284.61,3990.626 -3555,4397,7838,-9,7840,7841,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-949.4707,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 -3555,4397,7839,-9,7840,7841,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-964.46582,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 -3555,4397,7840,7841,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,6.4790163,6.7390924,0,5,-2,150.45598,0,-9,-9,2019,8,0,11,11,1,0,0,5.9412885,5.9412885,0,0,0,0,0,1,1,0,0,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,5,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 -3555,4397,7841,7840,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,8.5223923,8.1966505,0,5,2,31.717388,0,3,2,2019,6,0,41,40,1,0,0,13.891702,13.891702,0,0,0,0,2,1,1,0,0,0,58.15,52.91,51.83,57.2,10,1,1,0,0,7,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 -3555,4397,7842,-9,7840,7841,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-909.20978,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,620.79999,-4024.6079,41479.59,141022.67,81854.125,2029.4166 -3556,4398,7843,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,5.6710401,6.0122533,0,0,-1004.52,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,15.631283,0,0,1,1,0,5.0225282,5.9261165,48,35,-9,-9,10,1,1,0,0,0,11,2,1,556,-87936.836,30751.252,152986.45,0,291.91873 -3557,4399,7844,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.1432877,7.8169317,0,0,0,-966.84473,0,-9,3,2019,8,0,12,40,1,0,0,26.059874,26.059874,0,0,0,0,0,1,1,0,0,0,62.9,48.63,-9,-9,5,1,1,0,0,9,5,4,0,125,519263.53,806688.38,80794.266,-7212.1411,1610.0143 -3557,4400,7845,-9,-9,7844,1,1,27,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1027.3652,0,-9,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,37.17,47.9,-9,-9,8.333333333333334,1,1,1,0,5,5,1,0,667,-111644.13,0,0,0,-69.040627 -3558,4401,7846,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.108428,7.2532911,0,0,-888.47736,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.8731637,7.2888107,59.07,16.26,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,525,438100.38,107383.7,609092.81,0,1070.733 -3559,4402,7847,7848,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.1453404,6.1812506,42,4,-21.796671,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.133482,52.48,54.33,46.35,54.46,8.333333333333334,2,3,0,0,7,8,5,1,841.5,1307233.6,226159.88,825366.44,0,8503.0352 -3559,4402,7848,7847,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,9.4162788,9.4698477,0,42,-4,-3.3069794,0,3,3,2019,10,1,15,-9,1,1,0,120.57967,120.57967,0,0,0,0,0,1,1,0,4.6691518,0,46.35,54.46,52.48,54.33,8.333333333333334,2,3,0,0,11,8,5,1,841.5,1307233.6,226159.88,825366.44,0,8503.0352 -3559,4403,7849,-9,7848,7847,1,0,37,0,0,0,1,1,-9,0,4,8.9848833,8.5046797,0,0,0,-1025.6221,0,1,2,2019,10,0,36,36,1,0,0,23.435072,23.435072,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,1275,753876.94,67531.984,202010.83,47889.168,4677.3589 -3559,4404,7850,-9,7848,7847,1,1,35,0,0,0,1,1,-9,0,5,8.8348436,8.4113111,0,0,0,-1006.7616,0,1,2,2019,7,0,80,80,1,0,0,8.6253786,8.6253786,0,0,0,0,0,1,1,0,4.0815043,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,11,8,5,1,289,293383.13,-14167.141,504947.94,367989.72,3247.0432 -3559,4405,7851,-9,7848,7847,1,1,30,0,0,0,1,1,-9,0,3,8.8862219,8.6226187,0,0,0,-1053.1292,0,1,2,2019,19,6,50,45,1,6,0,12.600302,12.600302,0,0,0,0,0,1,1,0,4.5286727,0,35.32,58.41,-9,-9,3.333333333333333,2,3,0,0,7,8,5,1,832,438176.47,205251.88,318663.44,87216.461,2564.1426 -3560,4406,7852,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.9942231,7.9901853,0,0,0,-1026.4332,0,3,3,2019,12,0,37,40,1,0,0,8.5576048,8.5576048,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,10,13,3,1,390,-197153.22,77516.547,0,0,1046.8652 -3560,4407,7853,-9,7852,-9,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1020.3936,0,2,2,2019,12,0,0,18,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,5,1,1,1,1,8,13,1,1,798,-343093.31,0,0,0,0 -3561,4408,7854,7857,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.5620527,8.7019081,0,12,-3,65.205742,0,-9,-9,2019,6,0,64,59,1,0,0,10.503962,10.503962,0,0,0,0,0,1,1,0,0,0,59.46,46.99,48.77,60.16,6.666666666666667,1,1,0,0,9,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 -3561,4408,7855,-9,7857,7854,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.28699,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 -3561,4408,7856,-9,7857,7854,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.0961,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 -3561,4408,7857,7854,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.2313051,7.2929521,0,12,3,-59.753677,0,-9,-9,2019,7,0,39,38,1,0,0,5.3802962,5.3802962,0,0,0,0,2,1,1,0,0,0,48.77,60.16,59.46,46.99,6.666666666666667,1,1,0,0,8,9,4,0,416.5,584570.69,156040.31,382072.88,60332.859,2779.9146 -3562,4409,7858,7860,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,9.1031733,9.0834894,7.0829883,24,10,32.092503,0,2,2,2019,15,3,55,55,1,3,0,21.180103,21.180103,0,0,0,0,0,1,1,0,7.3109961,0,38.76,58.16,54.2,57.49,6.666666666666667,1,1,0,1,8,2,5,1,415,1774975.8,951731,548657.63,-8991.4805,5459.0728 -3562,4409,7859,-9,7860,7858,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1152.5228,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,5,1,415,1774975.8,951731,548657.63,-8991.4805,5459.0728 -3562,4409,7860,7858,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.1255322,7.9771376,0,24,-10,-17.667351,0,2,2,2019,9,0,40,42,1,0,0,6.3313794,6.3313794,0,0,0,0,0,1,1,0,0,0,54.2,57.49,38.76,58.16,6.666666666666667,1,1,0,1,11,2,5,1,415,1774975.8,951731,548657.63,-8991.4805,5459.0728 -3562,4410,7861,-9,7860,7858,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1056.5145,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.33639,0,47.15,55.39,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,3255,0,0,0,0,728.77209 -3563,4411,7862,-9,7864,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.4025,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,1766.3334,-108859.38,0,0,0,1636.7268 -3563,4411,7863,-9,7864,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1606,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,1766.3334,-108859.38,0,0,0,1636.7268 -3563,4411,7864,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,3,0,4.590219,4.4909153,0,0,-998.14264,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.2765584,0,31.84,51.65,-9,-9,3.333333333333333,4,2,0,0,0,6,2,0,1766.3334,-108859.38,0,0,0,1636.7268 -3564,4412,7865,7866,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.6179647,8.493206,7.7824893,25,6,-10.810261,0,2,2,2019,7,0,43,42,1,0,0,12.047469,12.047469,0,0,0,0,0,1,1,0,0,7.7126756,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,11,6,5,1,835.33331,2106376.3,1881163.1,353279.66,0,4078.9546 -3564,4412,7866,7865,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.538168,8.1398849,0,9,-6,-56.832211,0,-9,-9,2019,8,0,1,37,1,0,0,509.41986,509.41986,0,0,0,0,14.5,1,1,0,0,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,11,6,5,1,835.33331,2106376.3,1881163.1,353279.66,0,4078.9546 -3564,4412,7867,-9,7866,7865,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1028.5929,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,1,6,5,1,835.33331,2106376.3,1881163.1,353279.66,0,4078.9546 -3564,4413,7868,-9,7866,7865,1,0,20,0,0,1,2,0,0,0,4,0,4.1533766,4.3146043,0,0,-1018.6879,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.8121285,0,43.54,59.6,-9,-9,5,1,1,0,0,4,6,2,1,879,6082.8477,0,0,0,-14.000208 -3565,4414,7869,7872,-9,-9,1,1,42,1,3,0,2,2,-9,0,5,7.9258718,7.9369187,0,6,5,-101.78907,0,3,2,2019,6,0,33,33,1,0,0,10.789099,10.789099,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.07,60.93,8.333333333333334,1,1,0,0,6,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 -3565,4414,7870,-9,7872,7869,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.1526,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 -3565,4414,7871,-9,7872,7869,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.1438,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 -3565,4414,7872,7869,-9,-9,1,0,37,1,3,0,1,1,-9,0,5,9.2080908,8.9341898,0,6,-5,133.505,0,3,2,2019,7,0,40,50,1,0,0,25.306879,25.306879,0,0,0,0,0,1,1,0,0,0,41.07,60.93,62.39,56.71,8.333333333333334,1,1,0,0,6,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 -3565,4414,7873,-9,7872,7869,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.1003,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1026.6,256222.03,367591.38,215921.73,176490.09,4525.4033 -3566,4415,7874,7876,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,7.0738602,7.0556593,0,14,-15,163.31216,0,2,1,2019,9,0,8,2,1,0,0,15.580863,15.580863,0,0,0,0,0,1,0,1,0,0,46.75,56.99,46.57,46.63,6.666666666666667,1,1,0,0,6,9,3,1,1004,354363.16,95825.68,339024.13,156116.38,3456.2188 -3566,4415,7875,-9,7874,7876,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.10321,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1004,354363.16,95825.68,339024.13,156116.38,3456.2188 -3566,4415,7876,7874,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.342823,8.2712631,4.0392227,15,15,34.031166,0,3,2,2019,20,7,37,40,1,7,0,11.789014,11.789014,0,0,0,0,0,1,0,1,0,3.7902789,46.57,46.63,46.75,56.99,3.333333333333333,1,1,0,1,9,9,3,1,1004,354363.16,95825.68,339024.13,156116.38,3456.2188 -3567,4416,7877,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1171.952,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5195205,0,36.61,43.82,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,743,47497.109,0,0,0,1943.8657 -3568,4417,7878,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1044.2476,0,-9,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.2,44.5,-9,-9,5,1,1,0,1,0,2,1,0,216,0,0,0,0,297.05661 -3569,4418,7879,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6817131,8.5934706,0,0,0,-1034.4954,0,2,2,2019,11,0,56,60,1,0,0,8.954567,8.954567,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,1,7,10,5,0,230,833007.06,749815.19,181864.56,62526.098,1929.0127 -3570,4419,7880,7881,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.159976,7.738163,0,8,-4,-216.81808,-9,2,2,2019,7,0,27,0,1,0,0,10.716215,10.716215,0,0,0,0,2,1,1,0,0,0,49.91,58.02,55.36,51.57,8.333333333333334,1,1,0,0,4,12,4,1,804.66669,-63415.277,73454.195,171882.47,122718.51,3169.1204 -3570,4419,7881,7880,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,7.8676753,7.9056635,0,8,4,-110.4221,0,-9,-9,2019,11,1,38,39,1,1,0,10.224192,10.224192,0,0,0,0,7,1,1,0,0,0,55.36,51.57,49.91,58.02,6.666666666666667,1,1,0,1,9,12,4,1,804.66669,-63415.277,73454.195,171882.47,122718.51,3169.1204 -3570,4419,7882,-9,7880,7881,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.30072,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,804.66669,-63415.277,73454.195,171882.47,122718.51,3169.1204 -3571,4420,7883,7884,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.9399376,8.599329,0,22,-2,-83.695305,0,1,2,2019,6,0,40,40,1,0,0,28.063526,28.063526,0,0,0,0,0,0,0,0,0,0,52.43,55.57,59.95,25.68,10,1,1,0,0,9,7,4,1,712.5,195898.47,144629.22,0,0,4193.5146 -3571,4420,7884,7883,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,0,0,0,22,2,-106.33939,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.95,25.68,52.43,55.57,8.333333333333334,1,1,0,0,3,7,4,1,712.5,195898.47,144629.22,0,0,4193.5146 -3572,4421,7885,7886,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,8.4009104,9.0622196,7.1439152,9,-1,-13.199375,0,3,3,2019,9,1,43,38,1,1,0,14.802726,14.802726,1,0,0,0,0,1,1,0,0,7.0980487,50.03,52.62,46.21,37.4,8.333333333333334,1,1,0,0,10,11,5,1,266.5,459804.94,0,149467.69,0,6803.5381 -3572,4421,7886,7885,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,8.2492151,8.4129095,7.8680458,9,1,81.786247,0,3,3,2019,16,5,45,32,1,5,0,9.0693102,9.0693102,0,0,0,0,0,1,1,0,0,7.7658916,46.21,37.4,50.03,52.62,6.666666666666667,1,1,0,0,10,11,5,1,266.5,459804.94,0,149467.69,0,6803.5381 -3573,4422,7887,-9,7888,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.57251,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,1,1156.5,110149.89,158501.94,126892.91,58173.789,1678.8716 -3573,4422,7888,-9,-9,-9,1,0,55,0,2,0,2,2,-9,0,3,7.1609244,7.3076549,5.7607059,0,0,-953.74524,0,3,3,2019,14,4,17,16,1,4,0,8.2094278,8.2094278,0,0,0,0,0,1,1,0,5.8770785,0,45.15,51.17,-9,-9,5,1,1,0,0,11,6,2,1,1156.5,110149.89,158501.94,126892.91,58173.789,1678.8716 -3574,4423,7889,7892,-9,-9,1,0,37,0,1,0,2,2,-9,1,4,0,0,0,5,-10,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.86,21.48,46.34,38.2,5,1,1,0,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 -3574,4423,7890,-9,7889,7892,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1065.4601,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 -3574,4423,7891,-9,7889,7892,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-894.20892,1,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 -3574,4423,7892,7889,-9,-9,1,1,47,0,1,0,3,3,-9,1,5,0,0,0,5,10,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,46.34,38.2,58.86,21.48,5,1,1,1,0,0,2,1,0,1140.5,55014.938,93917.602,100123.47,24957.328,2777.8738 -3575,4424,7893,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5679083,8.617198,0,0,0,-994.26288,0,2,1,2019,7,0,55,45,1,0,0,10.474527,10.474527,0,0,0,0,0,1,1,0,2.0305076,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,392.33334,-84641.883,37390.871,0,0,2115.7979 -3575,4424,7894,-9,7893,-9,1,0,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1162.6906,0,1,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,2.3472111,0,30.77,66.86,-9,-9,6.666666666666667,1,1,0,0,1,6,4,1,392.33334,-84641.883,37390.871,0,0,2115.7979 -3575,4424,7895,-9,7893,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1190.2421,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,392.33334,-84641.883,37390.871,0,0,2115.7979 -3576,4425,7896,7897,-9,-9,1,1,48,0,1,0,3,3,-9,1,4,0,0,0,6,10,0,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,45.69,52.9,30.5,28.34,8.333333333333334,1,1,0,1,0,2,1,0,307.33334,266651.25,0,0,0,1659.6382 -3576,4425,7897,7896,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,0,0,0,6,-10,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,42,1,1,0,0,0,30.5,28.34,45.69,52.9,5,1,1,0,1,0,2,1,0,307.33334,266651.25,0,0,0,1659.6382 -3576,4425,7898,-9,7897,7896,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.6523,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,307.33334,266651.25,0,0,0,1659.6382 -3576,4426,7899,-9,7897,7896,1,0,18,0,1,0,2,2,1,1,2,0,0,0,0,0,-1067.6493,-9,2,3,2019,20,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,20.73,54.34,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,574,74829.594,0,0,0,972.93726 -3577,4427,7900,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,0,0,-896.89172,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.42,54.81,-9,-9,10,1,1,0,0,0,10,1,0,621,138503.41,0,294066,0,1157.0739 -3577,4428,7901,-9,7900,-9,1,0,45,0,0,0,2,2,-9,0,3,7.6480188,7.8080683,0,0,0,-909.51947,0,3,3,2019,11,0,38,38,1,0,0,7.7914867,7.7914867,0,0,0,0,0,1,1,0,0,0,51.67,35.78,-9,-9,5,1,1,0,0,11,10,3,0,446,181103.08,-90312.617,112874.74,18636.676,939.0611 -3578,4429,7902,-9,7904,7903,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.26453,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 -3578,4429,7903,7904,-9,-9,1,1,48,1,2,0,2,2,-9,0,3,8.9585514,8.9908113,0,6,8,100.20979,0,-9,-9,2019,16,5,44,45,1,5,0,17.448719,17.448719,0,0,0,0,0,1,1,0,3.7597597,0,53.14,51.28,54.79,55.86,8.333333333333334,1,1,0,0,3,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 -3578,4429,7904,7903,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.0138159,7.84302,0,6,-8,-74.304146,0,2,2,2019,7,0,18,22,1,0,0,16.11879,16.11879,0,0,0,0,0,1,1,0,0,0,54.79,55.86,53.14,51.28,10,1,1,0,0,7,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 -3578,4429,7905,-9,7904,7903,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.8248,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,567.25,72810.711,64161.871,0,0,3015.3516 -3579,4430,7906,7907,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.7321949,8.171833,0,11,0,-60.294147,0,2,2,2019,8,0,14,16,1,0,0,23.699442,23.699442,0,0,0,0,0,1,1,0,1.1136904,0,57.16,56.15,62.83,41.18,8.333333333333334,1,1,0,0,13,13,4,1,741.33331,236727.14,70839.727,85158.094,0,3330.699 -3579,4430,7907,7906,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.6770172,8.6234674,0,11,0,39.411705,0,1,2,2019,6,0,46,48,1,0,0,13.52592,13.52592,0,0,0,0,0,1,1,0,0,0,62.83,41.18,57.16,56.15,8.333333333333334,1,1,0,0,13,13,4,1,741.33331,236727.14,70839.727,85158.094,0,3330.699 -3579,4430,7908,-9,7906,7907,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.4243,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,741.33331,236727.14,70839.727,85158.094,0,3330.699 -3580,4431,7909,7910,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.1315012,8.6119509,7.3447218,4,0,-44.955956,0,3,3,2019,12,0,38,38,1,0,0,9.4301023,9.4301023,0,0,0,0,14.5,1,1,0,0,7.7553043,39.91,43.86,35.44,20.8,5,1,1,0,0,11,2,4,0,2133.5,511557.63,672980.75,103547.39,0,3214.6528 -3580,4431,7910,7909,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,6.8994951,6.8944778,0,4,0,13.30979,0,3,3,2019,24,11,16,16,1,11,0,5.9607491,5.9607491,0,0,0,0,0,1,1,0,0,0,35.44,20.8,39.91,43.86,1.666666666666667,1,1,0,0,12,2,4,0,2133.5,511557.63,672980.75,103547.39,0,3214.6528 -3581,4432,7911,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.2031784,7.315577,0,0,-967.5451,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.2870522,7.0562615,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,953,313585.09,0,360803.22,0,1298.552 -3582,4433,7912,7913,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.431931,6.3276324,7,4,20.065407,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,26.179441,0,0,1,1,0,5.7694397,6.2444539,55.79,47.77,54.96,53.17,10,1,1,0,0,0,7,2,1,551,312711.75,-51798.953,355594.56,0,1151.5394 -3582,4433,7913,7912,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,4.9030743,4.4580436,7,-4,55.72348,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3809276,4.8710346,54.96,53.17,55.79,47.77,8.333333333333334,1,1,0,0,0,7,2,1,551,312711.75,-51798.953,355594.56,0,1151.5394 -3583,4434,7914,7915,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,6.8449354,7.4442468,6.8905945,7,9,102.30447,0,-9,-9,2019,8,0,35,40,1,0,0,3.0705261,3.0705261,0,0,0,0,0,0,0,0,7.7190351,6.2664032,55.21,43.87,51,54,8.333333333333334,1,1,0,0,8,9,4,1,814.5,1189644.8,690106.5,219324.59,0,4486.2017 -3583,4434,7915,7914,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1659689,8.149909,0,7,0,-59.628662,0,3,-9,2019,10,0,35,37,1,1,0,13.075583,13.075583,0,0,0,0,0,0,0,0,7.3012424,0,51,54,55.21,43.87,8,1,1,0,0,1,9,4,1,814.5,1189644.8,690106.5,219324.59,0,4486.2017 -3584,4435,7916,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.2537727,8.0907106,0,0,0,-967.34283,-9,2,-9,2019,15,3,40,0,1,3,0,12.852898,12.852898,0,0,0,0,2,0,0,0,0,0,43.96,55.64,-9,-9,3.333333333333333,1,1,0,0,5,2,4,1,191,-47774.605,-72641.859,0,0,1572.0206 -3584,4436,7917,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,6.6979952,6.9309325,0,0,0,-887.10388,-9,-9,-9,2019,11,1,25,0,1,1,0,4.0542068,4.0542068,0,0,0,0,0,0,0,0,3.3111391,0,27.03,55.8,-9,-9,5,1,1,0,0,5,2,2,1,1325,-321649.78,16086.887,0,0,1095.6036 -3585,4437,7918,7919,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.1086855,9.147831,0,8,1,-100.11472,0,2,2,2019,13,1,43,51,1,1,0,19.284832,19.284832,0,0,0,0,0,0,0,0,0,0,38.38,57.97,41.23,59.35,3.333333333333333,1,1,0,0,9,7,5,1,1211.5,977034.06,483149.19,439770.72,0,3300.7358 -3585,4437,7919,7918,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.466579,7.7591166,0,8,-1,39.132881,0,2,2,2019,12,4,20,23,1,4,0,9.7028875,9.7028875,0,0,0,0,2,0,0,0,.11669977,0,41.23,59.35,38.38,57.97,8.333333333333334,1,1,0,0,8,7,5,1,1211.5,977034.06,483149.19,439770.72,0,3300.7358 -3585,4438,7920,-9,7919,7918,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-949.61096,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,4,7,2,1,247,-132029.72,0,0,0,0 -3586,4439,7921,7922,-9,-9,1,1,35,1,2,0,2,2,1,0,2,0,0,0,8,-5,-170.23,-9,2,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,20.12,52,54.51,8.333333333333334,1,1,0,0,8,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 -3586,4439,7922,7921,-9,-9,1,0,40,1,2,0,1,1,-9,0,3,8.9117069,9.1955156,0,8,5,100.93776,0,1,2,2019,7,0,46,43,1,0,0,23.505198,23.505198,0,0,0,0,0,1,1,0,0,0,52,54.51,62.18,20.12,8.333333333333334,1,1,0,0,10,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 -3586,4439,7923,-9,7922,7921,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.43176,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 -3586,4439,7924,-9,7922,7921,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.83972,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,517.75,133145.66,34549.395,270877.38,145308.58,3300.2354 -3587,4440,7925,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.7566595,7.901134,0,0,0,-1204.7435,0,2,3,2019,11,1,20,20,1,1,0,15.02026,15.02026,0,0,0,0,2,0,0,0,6.1186385,0,48.38,49.66,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,269,115343.58,-29901.729,148789.88,0,1633.8116 -3588,4441,7926,-9,-9,7927,1,0,21,0,0,0,2,2,-9,0,4,8.1859131,7.7558208,0,0,0,-919.97437,0,-9,2,2019,5,0,40,40,1,0,1,8.955349,8.955349,0,0,0,0,0,0,0,0,2.0983336,0,54.2,57.49,-9,-9,10,1,1,0,0,4,2,4,1,1753,187381.52,10034.581,0,0,1481.2506 -3588,4442,7927,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.9343338,8.1319628,0,0,0,-1076.3042,0,-9,-9,2019,9,0,40,40,1,1,0,7.9888158,7.9888158,0,0,0,0,0,0,0,0,1.8066379,0,52,55,-9,-9,8,4,6,0,0,1,2,4,1,429,-63743.441,46576.406,0,0,1035.0934 -3589,4443,7928,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.528513,8.7311344,0,0,0,-937.97345,0,1,1,2019,11,1,42,42,1,1,0,17.571527,17.571527,0,0,0,0,0,0,0,0,2.9595251,0,37.19,53.08,-9,-9,3.333333333333333,1,1,0,0,9,4,5,1,318,447686.59,211840.94,313011.31,100748.77,2010.4447 -3590,4444,7929,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4960003,8.705164,0,6,6,-28.713221,0,3,3,2019,3,0,37,37,1,0,0,17.320822,17.320822,0,0,0,0,7,0,0,0,0,0,48.56,54.48,50.54,55.39,8.333333333333334,1,1,0,0,7,12,5,1,443,-25804.943,88233.414,110330.91,99795.422,1729.6622 -3590,4445,7930,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.9034824,8.9733706,0,6,-6,-34.171196,0,3,3,2019,5,0,48,46,1,0,0,13.761392,13.761392,0,0,0,0,7,0,0,0,0,0,50.54,55.39,48.56,54.48,8.333333333333334,1,1,0,0,7,12,5,1,423,-45388.281,11387.901,183824.61,-6801.7368,2258.5503 -3591,4446,7931,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.5993128,8.6461706,0,2,-7,-.516271,0,2,2,2019,10,0,12,30,1,0,0,64.872284,64.872284,0,0,0,0,0,1,1,0,3.2045758,0,57.06,57.76,47.3,53.21,10,1,1,0,0,8,10,4,1,123,1136353.1,618550.31,0,0,2828.2739 -3591,4447,7932,-9,7931,-9,1,0,23,0,0,0,1,1,-9,0,4,7.3513193,7.4418149,0,0,0,-1002.8348,0,1,1,2019,9,0,25,15,1,0,1,6.5501161,6.5501161,0,0,0,0,0,1,1,0,0,0,50.43,53.69,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,2331,-365890.66,0,0,0,541.20306 -3591,4448,7933,-9,7931,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1103.7333,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,10,1,1,381,-502137.19,0,0,0,-314.31549 -3591,4449,7934,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.5087967,6.3679085,0,2,7,-78.214294,0,-9,-9,2019,6,0,6,8,1,0,0,13.032229,13.032229,0,0,0,0,2,1,1,0,0,0,47.3,53.21,57.06,57.76,10,1,1,0,0,4,10,4,1,2946,310767.81,0,0,0,234.75818 -3592,4450,7935,7937,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,12,1,-85.929871,0,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.73205179,0,54.96,53.17,54.37,54.8,6.666666666666667,1,1,0,0,6,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 -3592,4450,7936,-9,7935,7937,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.65771,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 -3592,4450,7937,7935,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,9.1891212,9.0861387,0,12,-1,181.2952,0,2,1,2019,10,0,42,43,1,0,0,27.441875,27.441875,0,0,0,0,0,1,1,0,1.4542499,0,54.37,54.8,54.96,53.17,6.666666666666667,1,1,0,0,10,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 -3592,4450,7938,-9,7935,7937,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.54138,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,256.75,381044.19,184029.88,266063.69,83689.547,3525.1958 -3593,4451,7939,-9,7940,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.43005,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,523,0,0,0,0,1063.5812 -3593,4451,7940,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.8862724,6.9185224,0,0,0,-972.0636,0,-9,-9,2019,13,1,21,16,1,1,0,5.3230486,5.3230486,0,0,0,0,0,1,1,0,0,0,41.21,51.34,-9,-9,5,4,2,0,0,3,6,2,0,523,0,0,0,0,1063.5812 -3594,4452,7941,7943,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.9961724,7.9381742,0,2,-4,23.107864,0,-9,-9,2019,12,0,25,25,1,0,0,15.379058,15.379058,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.23,47.51,8.333333333333334,1,1,0,0,5,4,4,1,532.33331,216130.16,-81713.828,160538,125978.38,4135.9893 -3594,4452,7942,-9,7941,7943,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-891.21252,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,532.33331,216130.16,-81713.828,160538,125978.38,4135.9893 -3594,4452,7943,7941,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.5809164,8.6791372,0,2,4,38.131943,0,2,2,2019,10,1,63,47,1,1,0,8.9153299,8.9153299,0,0,0,0,0,1,1,0,0,0,53.23,47.51,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,532.33331,216130.16,-81713.828,160538,125978.38,4135.9893 -3595,4453,7944,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,5.625721,6.7114482,6.3714652,0,0,-911.19244,0,3,2,2019,10,1,5,25,1,1,0,7.7788982,7.7788982,1,0,0,0,14.5,1,1,0,1.9862777,6.7220111,50.68,48.16,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,234,460956.47,21856.037,203270.34,0,1359.3396 -3596,4454,7945,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.1699152,8.19382,0,0,0,-1293.132,0,2,2,2019,8,0,31,23,1,0,0,13.721651,13.721651,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,8,2,4,0,213,-55108.496,217849.83,204107.98,0,1141.1279 -3597,4455,7946,7947,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.5788565,9.7499971,0,37,2,-40.471504,0,2,2,2019,10,0,45,60,1,0,0,39.325253,39.325253,0,0,0,0,0,1,1,0,1.8085347,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,8,5,1,124.5,3583162.5,3067686.5,580813.5,0,22807.592 -3597,4455,7947,7946,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.3226719,7.2551417,37,-2,-25.139109,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8104028,7.2162433,62.49,55.09,57.16,56.15,10,1,1,0,0,6,8,5,1,124.5,3583162.5,3067686.5,580813.5,0,22807.592 -3598,4456,7948,7949,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.4984074,7.3176537,0,6,-2,25.867569,-9,-9,-9,2019,8,0,22,0,1,0,0,10.473966,10.473966,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.01,34.13,8.333333333333334,1,1,0,0,6,9,5,1,889,3958145,1005035.8,640672.5,254215.63,5099.5352 -3598,4456,7949,7948,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.925931,8.9852667,0,6,2,-87.688103,0,3,3,2019,17,5,40,50,1,5,0,16.711384,16.711384,0,0,0,0,0,0,0,0,8.272172,0,38.01,34.13,54.96,53.17,6.666666666666667,1,1,0,0,9,9,5,1,889,3958145,1005035.8,640672.5,254215.63,5099.5352 -3599,4457,7950,-9,7952,7951,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1049.7264,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,439.33334,1436417.1,1022993.3,453117.69,144654.36,2446.4287 -3599,4457,7951,7952,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.3989153,8.3520708,0,29,1,90.431915,0,2,3,2019,10,1,37,37,1,1,0,12.90852,12.90852,0,0,0,0,0,1,1,0,1.0107626,0,56.19,46.16,56.18,53.85,6.666666666666667,1,1,0,0,12,9,4,1,439.33334,1436417.1,1022993.3,453117.69,144654.36,2446.4287 -3599,4457,7952,7951,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.7527366,7.479157,0,29,-1,102.86858,0,2,2,2019,11,1,30,31,1,1,0,8.9160185,8.9160185,0,0,0,0,2,1,1,0,1.2191963,0,56.18,53.85,56.19,46.16,8.333333333333334,1,1,0,0,12,9,4,1,439.33334,1436417.1,1022993.3,453117.69,144654.36,2446.4287 -3600,4458,7953,-9,7954,7956,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.00604,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 -3600,4458,7954,7956,-9,-9,1,0,32,1,2,0,2,2,-9,1,1,0,0,0,5,-19,0,0,-9,-9,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.74,15.29,47.46,35.18,8.333333333333334,1,1,0,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 -3600,4458,7955,-9,7954,7956,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.715,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 -3600,4458,7956,7954,-9,-9,1,1,51,1,2,0,3,3,-9,1,2,0,0,0,5,19,0,0,-9,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,47.46,35.18,44.74,15.29,1.666666666666667,1,1,0,0,0,2,1,0,1057.75,173967.53,42221.773,201738.83,15258.319,3026.0862 -3601,4459,7957,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.1470203,7.2591114,0,0,-996.84546,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.2040272,7.2293048,50.68,28.49,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,4188,691214.5,278904.91,212410.63,45922.762,803.71014 -3602,4460,7958,7959,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,39,-1,54.694408,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.9098425,0,57.16,56.15,53.5,51.02,8.333333333333334,1,1,0,0,7,10,2,1,407,428465.31,93814.703,276726.34,0,-63.831394 -3602,4460,7959,7958,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,5.7529674,5.5567942,0,39,1,11.718588,0,-9,-9,2019,7,0,20,20,1,0,0,1.6527175,1.6527175,0,0,0,0,0,0,0,0,4.9357333,0,53.5,51.02,57.16,56.15,8.333333333333334,1,1,0,0,10,10,2,1,407,428465.31,93814.703,276726.34,0,-63.831394 -3603,4461,7960,7961,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,8.0491781,7.7697625,0,13,8,-20.285557,0,2,1,2019,8,0,36,40,1,0,0,9.9559946,9.9559946,0,0,0,0,0,1,1,0,0,0,44.2,46.35,49.25,50.52,6.666666666666667,1,1,0,0,12,8,3,0,241,46815.555,0,0,0,3302.6499 -3603,4461,7961,7960,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,7.6929312,7.7328997,0,13,-8,62.324474,0,2,2,2019,9,2,36,0,1,2,0,5.6417208,5.6417208,0,0,0,0,0,1,1,0,3.2251148,0,49.25,50.52,44.2,46.35,10,1,1,0,0,5,8,3,0,241,46815.555,0,0,0,3302.6499 -3603,4461,7962,-9,7961,7960,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.80774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,3,0,241,46815.555,0,0,0,3302.6499 -3604,4462,7963,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.0224581,8.06106,0,0,0,-1002.9026,0,2,2,2019,8,1,50,50,1,1,1,10.089681,10.089681,0,0,0,0,0,1,1,0,0,0,49.71,55.64,-9,-9,6.666666666666667,1,1,0,0,6,4,4,1,1170,193924.48,-48494.914,0,0,2338.9146 -3605,4463,7964,7965,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,35,1,-99.198235,0,2,3,2019,11,0,0,10,3,0,0,0,0,0,0,0,.48357901,0,0,0,0,0,0,42.22,56.11,55.36,51.57,6.666666666666667,1,1,0,0,3,9,4,1,281,853403,278885.59,323011.69,0,1740.0117 -3605,4463,7965,7964,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.2808342,8.3323793,0,35,-1,73.559219,0,2,2,2019,15,3,38,43,1,3,0,14.625969,14.625969,0,0,0,0,0,0,0,0,0,0,55.36,51.57,42.22,56.11,6.666666666666667,1,1,0,0,11,9,4,1,281,853403,278885.59,323011.69,0,1740.0117 -3605,4464,7966,-9,7964,7965,1,1,23,0,0,0,2,2,-9,0,4,7.1542506,7.0874376,0,0,0,-1104.1417,0,2,2,2019,12,0,24,24,1,0,1,5.3363643,5.3363643,0,0,0,0,0,0,0,0,0,0,37.76,55.72,-9,-9,6.666666666666667,1,1,0,1,7,9,2,1,352,340389.88,0,0,0,526.30524 -3606,4465,7967,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.0933108,7.1821012,0,0,-1101.9708,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7397833,25.26,31.88,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,204,21485.373,86378.32,0,0,1486.9348 -3607,4466,7968,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.486495,6.6949053,0,0,-1153.6389,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9300756,6.5983815,61.02,42.1,-9,-9,10,1,1,0,0,0,9,2,1,265,404323,-15893.051,98686.625,0,988.01514 -3608,4467,7969,7970,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,7.3175774,7.4277043,60,2,-29.776503,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4901295,59.6,52.5,52,45,8.333333333333334,1,1,0,0,0,7,2,1,776,278000.06,56405.648,296003.19,0,1429.9746 -3608,4467,7970,7969,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,2.1927059,2.3875663,60,-2,13.450632,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,2.6460419,52,45,59.6,52.5,8,1,1,0,0,0,7,2,1,776,278000.06,56405.648,296003.19,0,1429.9746 -3609,4468,7971,7972,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,6.6134515,6.2480068,0,9,-8,-114.54228,0,-9,-9,2019,18,6,8,8,1,6,0,11.717396,11.717396,0,0,0,0,0,0,0,0,0,0,20.25,45.38,44.28,53.84,0,1,1,0,1,12,7,5,1,514,369329.06,233969.31,0,0,2842.845 -3609,4468,7972,7971,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8378983,9.07164,6.4397097,32,8,55.881042,0,3,3,2019,13,3,53,62,1,3,0,13.551268,13.551268,0,0,0,0,0,0,0,0,2.8872926,6.9233742,44.28,53.84,20.25,45.38,6.666666666666667,1,1,0,1,12,7,5,1,514,369329.06,233969.31,0,0,2842.845 -3609,4469,7973,-9,7971,7972,1,0,26,0,0,0,1,1,-9,0,5,6.9125614,6.6921735,0,0,0,-960.14728,0,2,2,2019,12,1,24,18,1,1,1,5.1420779,5.1420779,0,0,0,0,0,0,0,0,0,0,38.57,51.39,-9,-9,6.666666666666667,1,1,0,0,5,7,2,1,500,-243771.05,-87961.836,0,0,652.51947 -3609,4470,7974,-9,7971,7972,1,1,24,0,0,0,2,2,-9,0,4,8.6341467,8.6502676,0,0,0,-1037.3916,0,2,2,2019,12,1,42,40,1,1,1,16.694513,16.694513,0,0,0,0,0,0,0,0,0,0,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,692,317044.56,0,0,0,2099.6543 -3610,4471,7975,7977,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1607227,8.8720474,0,6,-3,41.858101,0,2,-9,2019,10,0,38,37,1,0,0,37.340172,37.340172,0,0,0,0,0,0,0,0,5.6315069,0,52.12,50.33,41.17,52.68,8.333333333333334,1,1,0,0,7,12,5,1,663.66669,3914332.8,1675322.6,451365.09,0,3515.1873 -3610,4471,7976,-9,7975,7977,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1084.5331,-9,1,2,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,33.39,65.88,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,663.66669,3914332.8,1675322.6,451365.09,0,3515.1873 -3610,4471,7977,7975,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,6,3,-70.318977,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,52.68,52.12,50.33,6.666666666666667,1,1,0,0,0,12,5,1,663.66669,3914332.8,1675322.6,451365.09,0,3515.1873 -3611,4472,7978,7979,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,6.4148598,6.7760553,0,10,2,80.367126,0,2,2,2019,10,0,38,38,1,0,0,2.2656474,2.2656474,0,0,0,0,0,0,0,0,0,0,59.29,49.68,33.82,31.95,8.333333333333334,1,1,0,0,11,11,2,1,448.5,-604569.06,0,0,0,844.6167 -3611,4472,7979,7978,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,0,0,0,10,-2,-51.062782,0,2,2,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,14.5,0,0,0,6.5651884,0,33.82,31.95,59.29,49.68,1.666666666666667,1,1,1,1,9,11,2,1,448.5,-604569.06,0,0,0,844.6167 -3612,4473,7980,-9,-9,-9,1,0,19,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1006.4212,0,-9,-9,2019,24,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,26.11,47.47,-9,-9,1.666666666666667,1,1,0,0,1,6,1,0,253,115934.95,0,0,0,778.70874 -3613,4474,7981,7983,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.4863195,9.1184645,0,4,-2,-25.001278,0,-9,-9,2019,12,1,42,42,1,1,0,24.793011,24.793011,0,0,0,0,0,0,0,0,0,0,41.65,60.41,45.5,47.95,6.666666666666667,1,1,0,0,9,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 -3613,4474,7982,-9,7983,7981,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.91522,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 -3613,4474,7983,7981,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,13,2,31.669397,0,2,3,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45.5,47.95,41.65,60.41,8.333333333333334,4,2,0,0,6,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 -3613,4474,7984,-9,7983,7981,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.2532,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1075.25,1125565.1,372924.06,733379,244657.94,5058.1855 -3614,4475,7985,7986,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8367267,7.6319289,0,16,-2,56.542881,0,3,3,2019,13,1,38,37,1,1,0,5.5738311,5.5738311,0,0,0,0,14.5,1,1,0,3.4982853,0,48.78,48.06,53,54,8.333333333333334,1,1,0,0,10,13,4,1,2211.5,653639.56,391398.75,81387.516,0,3100.5222 -3614,4475,7986,7985,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3630276,8.247489,0,8,2,2.7505913,0,2,3,2019,9,0,38,43,1,1,0,11.359706,11.359706,0,0,0,0,0,1,1,0,0,0,53,54,48.78,48.06,8,1,1,0,0,1,13,4,1,2211.5,653639.56,391398.75,81387.516,0,3100.5222 -3615,4476,7987,7988,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,8.4229879,7.8189349,37,-2,-111.71603,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.0576138,8.0274019,58.72,43.42,61.83,44.42,8.333333333333334,1,1,0,0,9,6,3,1,1106,1167454.5,1121479.3,266739,0,1161.184 -3615,4476,7988,7987,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,37,2,63.001354,0,2,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,1.4437839,2,0,0,0,5.001987,0,61.83,44.42,58.72,43.42,8.333333333333334,1,1,0,0,9,6,3,1,1106,1167454.5,1121479.3,266739,0,1161.184 -3615,4477,7989,-9,7987,7988,1,0,27,0,0,0,2,2,-9,0,3,6.9336934,7.1894536,0,0,0,-882.17102,0,1,1,2019,8,0,19,18,1,0,0,5.2182469,5.2182469,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,978,7528.6274,0,0,0,297.69995 -3615,4478,7990,-9,7987,7988,1,1,25,0,0,0,1,1,-9,0,3,7.6460252,8.1021175,0,0,0,-1043.1195,0,1,1,2019,24,9,45,45,1,9,0,7.1386027,7.1386027,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,5,1,1,0,0,5,6,4,1,1110,-204240.28,43322.145,0,0,1845.2181 -3615,4479,7991,-9,7987,7988,1,1,25,0,0,0,1,1,-9,0,5,6.9453483,7.013864,0,0,0,-1024.5128,0,1,1,2019,11,0,17,17,1,0,0,7.2851539,7.2851539,0,0,0,0,0,0,0,0,2.8654263,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,4,6,2,1,324,240170.59,0,0,0,100.21838 -3616,4480,7992,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,2,-4,0,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,36.19,21.51,49,48,1.666666666666667,1,1,1,1,1,4,1,0,907,-261715.27,0,0,0,170.62901 -3617,4481,7993,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1220398,7.8807235,0,0,0,-1119.2896,0,-9,-9,2019,9,0,42,37,1,0,0,7.1590085,7.1590085,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,819,348827.56,10432.969,0,0,1091.6919 -3618,4482,7994,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.2975574,7.4462609,0,0,0,-1019.9473,0,3,-9,2019,12,0,30,18,1,0,0,6.5042191,6.5042191,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,9,11,2,1,925,-54733.602,-3202.8477,0,0,1361.0217 -3618,4482,7995,-9,7994,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.53961,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,925,-54733.602,-3202.8477,0,0,1361.0217 -3619,4483,7996,7998,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.6385651,7.4314437,0,19,5,9.3935909,0,2,2,2019,9,1,18,18,1,1,0,13.62574,13.62574,0,0,0,0,0,0,0,0,7.1766686,0,54.2,57.49,22.89,60.29,8.333333333333334,1,1,0,0,1,9,5,1,1611,325861.97,71655.227,324615.56,256543.27,4733.4814 -3619,4483,7997,-9,7996,7998,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.63379,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1611,325861.97,71655.227,324615.56,256543.27,4733.4814 -3619,4483,7998,7996,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.9135323,8.9736204,0,19,-5,68.05864,0,2,2,2019,24,12,50,45,1,12,0,18.367767,18.367767,0,0,0,0,0,0,0,0,3.7294815,0,22.89,60.29,54.2,57.49,3.333333333333333,1,1,0,0,7,9,5,1,1611,325861.97,71655.227,324615.56,256543.27,4733.4814 -3620,4484,7999,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.8886309,9.1550922,0,0,0,-963.06927,0,2,2,2019,12,1,55,49,1,1,0,16.493174,16.493174,0,0,0,0,0,0,0,0,4.5068703,0,39.06,49.8,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,322,1350322,1079854.3,127107.06,0,2586.7571 -3620,4485,8000,-9,7999,-9,1,0,20,0,0,0,1,1,1,0,3,7.3589139,7.7443895,0,0,0,-1018.1532,-9,1,-9,2019,12,1,20,0,1,1,1,9.9394302,9.9394302,0,0,0,0,0,0,0,0,3.6591258,0,46.2,42.37,-9,-9,10,1,1,0,0,3,12,3,1,774,-190356.94,-49078.332,0,0,1208.256 -3620,4486,8001,-9,7999,-9,1,0,18,0,0,0,3,3,1,0,4,5.5912318,5.5226369,0,0,0,-1043.2267,-9,1,-9,2019,7,0,20,0,1,0,1,1.85893,1.85893,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,371,71325.672,0,0,0,468.90277 -3621,4487,8002,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,4.333704,4.505146,0,0,-962.75397,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,4.6266446,46.1,36.05,-9,-9,1.666666666666667,1,1,0,0,4,12,2,0,2902,115711.2,0,209130.44,63507.742,975.68878 -3622,4488,8003,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.2720804,8.3831816,0,0,0,-986.55536,0,-9,-9,2019,4,0,40,45,1,0,0,13.16185,13.16185,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,1800,-124.97451,0,0,0,2117.8491 -3623,4489,8004,8005,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,6.5349922,6.7856746,5.148778,42,4,87.389618,0,3,3,2019,6,0,55,55,1,0,0,1.542727,1.542727,0,0,0,0,0,0,0,0,5.7417898,5.1058502,57.17,45.44,52.2,49.07,8.333333333333334,1,1,0,0,9,12,2,1,736,23786.918,23140.73,126995.28,38934.723,954.11487 -3623,4489,8005,8004,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,5.158926,5.2842011,0,42,-4,-.89892972,0,3,3,2019,12,0,40,-9,1,0,0,.66760105,.66760105,0,0,0,0,0,0,0,0,4.1409683,0,52.2,49.07,57.17,45.44,5,1,1,0,0,9,12,2,1,736,23786.918,23140.73,126995.28,38934.723,954.11487 -3624,4490,8006,8007,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.3687592,8.1325207,0,2,5,1.913432,0,-9,-9,2019,22,11,28,16,1,11,0,19.7029,19.7029,0,0,0,0,0,0,0,0,0,0,32.42,58.05,48.99,49.19,5,4,2,0,0,6,4,4,0,1092.5,40860.887,17082.305,64021.664,56179.289,2509.0195 -3624,4490,8007,8006,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,6.084547,6.0848641,0,2,-5,55.723579,0,2,-9,2019,11,0,8,19,1,0,0,6.5972991,6.5972991,0,0,0,0,2,0,0,0,0,0,48.99,49.19,32.42,58.05,6.666666666666667,1,1,0,0,2,4,4,0,1092.5,40860.887,17082.305,64021.664,56179.289,2509.0195 -3625,4491,8008,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.725502,9.0651445,0,0,0,-1020.7271,0,3,2,2019,12,1,45,45,1,1,0,16.082649,16.082649,0,0,0,0,0,0,0,0,6.3983521,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,299,297725.38,9988.3008,343399.91,135925.78,3633.7415 -3625,4492,8009,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.1602335,8.0727968,0,0,0,-959.24213,0,-9,-9,2019,12,0,37,37,1,0,0,11.138805,11.138805,0,0,0,0,0,0,0,0,2.698617,0,51.49,57.57,-9,-9,6.666666666666667,3,4,0,0,8,9,4,1,1108,14770.281,30200.256,0,0,1679.8099 -3626,4493,8010,8011,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.5676441,8.4607105,0,11,2,24.759331,0,1,1,2019,13,3,40,40,1,3,0,13.145589,13.145589,0,0,0,0,0,0,0,0,.40006974,0,46.98,59.35,46.16,24.32,8.333333333333334,1,1,0,0,13,8,4,1,567.5,2107539.5,1247048.3,945931.38,0,1984.2969 -3626,4493,8011,8010,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,11,-2,-181.8535,0,3,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,7.096137,0,46.16,24.32,46.98,59.35,1.666666666666667,1,1,0,0,10,8,4,1,567.5,2107539.5,1247048.3,945931.38,0,1984.2969 -3627,4494,8012,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,8.5621557,8.8254128,6.9511418,0,0,-1036.9321,0,2,2,2019,22,10,42,42,1,10,0,13.104424,13.104424,0,0,0,0,0,1,1,0,0,7.2022576,17.51,65.2,-9,-9,1.666666666666667,1,1,0,0,9,5,5,1,471,-7736.7227,-28470.072,70865,62172.215,2629.3638 -3628,4495,8013,-9,8014,8015,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-920.92944,-9,1,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.6451826,0,63.97,49.13,-9,-9,10,2,3,0,0,0,6,5,1,599,1683961.1,1597183.8,362543.09,187580.13,7981.6304 -3628,4495,8014,8015,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.931488,8.9549408,0,6,-2,-115.44017,0,3,3,2019,8,0,65,42,1,0,0,17.34635,17.34635,0,0,0,0,0,1,1,0,5.1189241,0,38.11,62.27,57.33,53.46,1.666666666666667,2,3,0,0,7,6,5,1,599,1683961.1,1597183.8,362543.09,187580.13,7981.6304 -3628,4495,8015,8014,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.8387585,9.4279327,0,6,2,-95.905701,0,3,3,2019,4,0,70,45,1,0,0,25.583921,25.583921,0,0,0,0,0,1,1,0,6.4415722,0,57.33,53.46,38.11,62.27,8.333333333333334,2,3,0,0,7,6,5,1,599,1683961.1,1597183.8,362543.09,187580.13,7981.6304 -3628,4496,8016,-9,8014,8015,1,0,22,0,1,0,2,2,1,0,3,8.0548134,7.8513074,0,0,0,-1090.9833,-9,1,1,2019,15,3,37,0,1,3,1,7.6205716,7.6205716,0,0,0,0,0,1,1,0,3.2168052,0,37.92,53.03,-9,-9,6.666666666666667,2,3,0,0,5,6,4,1,755,-32043.043,28506.791,0,0,782.59644 -3629,4497,8017,8018,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.5678549,8.8020954,0,10,3,-12.091332,0,3,3,2019,6,0,39,39,1,0,0,13.973423,13.973423,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,13,2,3,1,543.66669,421177.25,286812.22,185087.36,89194.211,2619.1094 -3629,4497,8018,8017,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.5018339,6.6244178,0,10,-3,75.325722,0,3,3,2019,6,0,12,11,1,0,0,8.6077766,8.6077766,0,0,0,0,2,1,1,0,0,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,13,2,3,1,543.66669,421177.25,286812.22,185087.36,89194.211,2619.1094 -3629,4497,8019,-9,8018,8017,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.5421,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,543.66669,421177.25,286812.22,185087.36,89194.211,2619.1094 -3630,4498,8020,8021,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,6.8178573,6.9684629,0,30,2,-58.325539,0,-9,-9,2019,12,0,16,17,1,0,0,5.9271779,5.9271779,0,0,0,0,0,1,1,0,3.9689543,0,49.03,33.35,57.16,56.15,6.666666666666667,1,1,0,0,10,1,5,1,397,155793.53,151929.16,112088.58,7014.5156,3818.0308 -3630,4498,8021,8020,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.058795,9.03829,7.1169691,30,-2,-37.410938,0,3,2,2019,8,0,36,41,1,0,0,25.92314,25.92314,0,0,0,0,7,1,1,0,3.7596974,7.126605,57.16,56.15,49.03,33.35,8.333333333333334,1,1,0,0,10,1,5,1,397,155793.53,151929.16,112088.58,7014.5156,3818.0308 -3631,4499,8022,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,7.0828962,6.8708677,0,0,-938.13104,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,41.041485,0,0,1,1,0,0,7.0986471,42.67,20.06,-9,-9,1.666666666666667,1,1,0,0,2,2,3,1,251,855878.69,209773.33,267872.03,0,715.40454 -3632,4500,8023,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.4761515,7.6128783,0,0,-881.72113,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.8511887,40.5,42.22,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,211,777601.75,535387,208056.33,0,2220.0911 -3633,4501,8024,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.9171929,7.7146773,0,0,0,-1013.9438,0,3,3,2019,6,0,46,43,1,0,0,6.5867982,6.5867982,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,285,136856.13,93841.219,0,0,1517.6727 -3634,4502,8025,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.2019491,8.1727505,0,0,0,-864.37408,0,2,3,2019,13,1,33,33,1,1,0,12.686347,12.686347,0,0,0,0,0,0,0,0,.57138556,0,48.12,42.71,-9,-9,5,3,4,0,0,11,8,4,0,360,-224299.95,-84118.117,0,0,1204.0986 -3635,4503,8026,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5402288,7.9664617,0,0,-1016.906,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.5069766,7.4957356,61.48,39.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,603,771343.63,145513.27,381342.63,0,2308.718 -3636,4504,8027,8031,-9,-9,1,0,40,0,3,0,2,2,-9,1,1,0,0,0,14,-5,-130.0078,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,32.96,33.84,48.77,60.16,3.333333333333333,1,1,0,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 -3636,4504,8028,-9,8027,8031,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1072.345,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 -3636,4504,8029,-9,8027,8031,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.88501,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 -3636,4504,8030,-9,8027,8031,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.69513,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 -3636,4504,8031,8027,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,8.1210594,8.186883,0,15,5,-74.838707,0,2,2,2019,7,0,38,38,1,0,0,7.9043093,7.9043093,0,0,0,0,88,1,1,0,0,0,48.77,60.16,32.96,33.84,5,1,1,0,0,8,2,3,1,417.60001,148389.36,124885.39,0,0,3715.3496 -3637,4505,8032,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.6662035,7.1085358,18,9,-39.448425,0,2,2,2019,14,2,0,36,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.2105393,43.42,62.33,52.26,47.71,8.333333333333334,1,1,0,0,11,8,4,1,1513,163706.86,89819.336,176637.53,0,848.49335 -3637,4506,8033,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.0657892,8.0792484,0,18,0,111.92353,0,2,3,2019,11,0,21,35,1,0,0,20.230043,20.230043,0,0,0,0,0,1,1,0,0,0,52.26,47.71,43.42,62.33,8.333333333333334,1,1,0,0,8,8,4,1,1307,355705.44,-35609.984,206504.56,40427.563,1770.5339 -3638,4507,8034,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1010.2211,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,29.292091,0,0,1,1,0,0,0,37.19,29.14,-9,-9,5,1,1,0,0,0,11,1,1,2857,-155611.22,-106591.7,70536.82,0,1564.8953 -3639,4508,8035,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,5.7030392,5.8581271,0,0,-1082.7262,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,5.6100283,5.7247472,48.37,61.89,-9,-9,5,1,1,0,0,0,9,2,1,606,682382.19,-62154.203,331059.13,0,1222.9117 -3640,4509,8036,8037,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.9493208,9.2868023,0,1,1,-33.294514,-9,1,1,2019,11,0,38,0,1,0,0,22.633757,22.633757,0,0,0,0,0,1,1,0,0,0,51.49,57.57,59.46,46.99,8.333333333333334,1,1,0,0,10,7,5,1,1620.6666,1548738.5,415717.31,456081.16,0,5013.0454 -3640,4509,8037,8036,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.481328,8.6065569,0,1,-1,-36.870956,-9,3,2,2019,9,0,60,0,1,0,0,9.7501459,9.7501459,0,0,0,0,0,1,1,0,0,0,59.46,46.99,51.49,57.57,8.333333333333334,1,1,0,0,10,7,5,1,1620.6666,1548738.5,415717.31,456081.16,0,5013.0454 -3640,4509,8038,-9,8036,8037,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.0885,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,1620.6666,1548738.5,415717.31,456081.16,0,5013.0454 -3641,4510,8039,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,0,0,-751.28912,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.93,27.95,-9,-9,10,2,3,0,0,0,5,1,1,252.5,181659.98,0,0,0,1138.2274 -3641,4510,8040,-9,8039,-9,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-901.96265,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,5,1,1,252.5,181659.98,0,0,0,1138.2274 -3642,4511,8041,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1068.1215,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,3.1072781,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,1,6,1,1,1407,272452.63,81061.539,173534.73,0,230.05128 -3643,4512,8042,8044,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,8.496912,8.4858761,0,3,3,-4.8003736,0,-9,-9,2019,9,0,42,45,1,1,0,12.640049,12.640049,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,3,4,0,0,10,8,3,0,497.33334,141287.17,92145.445,292416.78,144984.08,2299.5723 -3643,4512,8043,-9,8044,8042,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-846.92828,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,497.33334,141287.17,92145.445,292416.78,144984.08,2299.5723 -3643,4512,8044,8042,-9,-9,1,0,37,1,3,0,2,2,-9,0,4,0,0,0,3,-3,-116.56426,0,2,1,2019,11,0,0,17,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,3,4,0,0,3,8,3,0,497.33334,141287.17,92145.445,292416.78,144984.08,2299.5723 -3644,4513,8045,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.8536696,7.8749137,0,0,0,-1146.0504,-9,-9,-9,2019,5,0,37,0,1,0,0,8.5535269,8.5535269,0,0,0,0,0,0,0,0,0,0,52.73,37.51,-9,-9,1.666666666666667,1,1,0,0,8,12,4,0,474,-270104.25,0,2809.8877,71206.5,1431.2413 -3645,4514,8046,8049,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,8.2146025,8.1420689,0,9,0,18.864389,0,-9,-9,2019,18,6,30,35,1,6,0,13.433856,13.433856,0,0,0,0,0,1,1,0,0,0,35.18,56.79,49.04,55.86,6.666666666666667,1,1,0,0,10,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 -3645,4514,8047,-9,8046,8049,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.3929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 -3645,4514,8048,-9,8046,8049,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.3576,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 -3645,4514,8049,8046,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.5806208,8.7404919,0,9,0,37.967457,0,1,2,2019,11,1,45,45,1,1,0,14.699932,14.699932,0,0,0,0,0,1,1,0,0,0,49.04,55.86,35.18,56.79,8.333333333333334,1,1,0,0,10,5,4,1,600.25,-43673.109,4819.7856,221135.92,187562.75,3626.1667 -3646,4515,8050,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.2760506,8.1024551,0,0,0,-1129.1815,0,2,3,2019,11,0,39,39,1,0,0,11.482589,11.482589,0,0,0,0,0,0,0,0,0,0,46.34,61.24,-9,-9,3.333333333333333,1,1,0,0,7,11,4,1,692,80787.164,355315.81,192424.36,123240.41,945.47992 -3647,4516,8051,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.7623801,7.9144883,0,0,0,-1036.0582,0,3,3,2019,11,0,38,37,1,0,0,7.4993925,7.4993925,0,0,0,0,0,1,1,0,0,0,50.74,49.95,-9,-9,6.666666666666667,1,1,0,0,4,5,3,0,698,-61197.418,0,0,0,1195.937 -3648,4517,8052,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.0445366,5.9814353,0,0,-976.75177,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3831367,6.0725341,51.5,39.74,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1179,14902.046,199272.17,111860.98,0,571.65436 -3649,4518,8053,8054,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,10,-7,-46.92931,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,32.35,35.04,50.26,33.72,8.333333333333334,1,1,0,0,0,9,2,0,325,242239.02,0,0,0,1829.5483 -3649,4518,8054,8053,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,4.3124142,4.4187279,10,7,32.527462,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.6179323,4.3248558,50.26,33.72,32.35,35.04,1.666666666666667,1,1,0,1,8,9,2,0,325,242239.02,0,0,0,1829.5483 -3650,4519,8055,8056,-9,-9,1,1,25,0,0,0,1,1,-9,0,2,8.3340883,8.4010811,0,1,2,59.176464,-9,-9,-9,2019,14,2,46,0,1,2,0,12.605623,12.605623,0,0,0,0,2,0,0,0,0,0,33.51,51.05,23.19,42.46,3.333333333333333,1,1,0,1,3,4,4,0,562.5,178086.06,37469.203,134150.84,120530.86,1868.6189 -3650,4519,8056,8055,-9,-9,1,0,23,0,0,1,2,0,-9,0,1,0,0,0,1,-2,42.366623,-9,1,2,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,23.19,42.46,33.51,51.05,3.333333333333333,4,2,0,1,2,4,4,0,562.5,178086.06,37469.203,134150.84,120530.86,1868.6189 -3651,4520,8057,8058,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,11,-8,0,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.32,59.62,39.62,41.48,10,1,1,0,0,4,2,1,1,274.5,-68697.656,1878.0781,0,0,1260.4617 -3651,4520,8058,8057,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,11,8,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39.62,41.48,30.32,59.62,8.333333333333334,1,1,0,0,0,2,1,1,274.5,-68697.656,1878.0781,0,0,1260.4617 -3652,4521,8059,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4249606,7.6867633,6.3012443,0,0,-1038.2819,0,-9,-9,2019,2,0,20,32,1,0,0,12.205153,12.205153,0,0,0,0,0,0,0,0,3.8604031,6.2758899,60.29,52.11,-9,-9,10,1,1,0,0,13,2,3,1,405,-176120.3,39166.688,0,0,1239.2727 -3653,4522,8060,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-917.92151,-9,-9,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,2,1,1,0,0,0,37.61,55.72,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,518,-287517.94,0,0,0,807.91937 -3654,4523,8061,-9,8062,8063,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.63702,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 -3654,4523,8062,8063,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,8.6776285,8.5566616,5.2542248,6,4,15.540157,0,2,2,2019,14,2,31,31,1,2,0,18.188622,18.188622,0,0,0,0,0,1,1,0,5.4917703,0,51.67,60.18,51.24,58.84,8.333333333333334,1,1,0,0,11,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 -3654,4523,8063,8062,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,9.1461992,9.2217226,0,6,-4,35.999744,0,-9,-9,2019,11,0,50,48,1,0,0,19.920979,19.920979,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.67,60.18,8.333333333333334,1,1,0,0,12,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 -3654,4523,8064,-9,8062,8063,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.89771,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,862.5,447150.97,107010.59,0,0,4901.7847 -3655,4524,8065,8066,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6637106,8.1058779,0,28,-12,80.284081,0,3,3,2019,8,0,24,24,1,0,0,11.314569,11.314569,0,0,0,0,0,1,1,0,5.717742,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,9,7,4,1,1085,730073.06,356214.38,0,0,2939.2437 -3655,4524,8066,8065,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.7501612,7.7852774,25,12,-67.792709,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7586064,60.12,54.8,57.16,56.15,10,1,1,0,0,0,7,4,1,1085,730073.06,356214.38,0,0,2939.2437 -3656,4525,8067,8068,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6918678,6.484611,15,0,-19.319143,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2220626,53.44,55.06,61.04,28.88,8.333333333333334,1,1,0,0,2,1,2,1,1149,340370.19,120722.13,283184.5,0,2494.7205 -3656,4525,8068,8067,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,15,0,-43.820038,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.04,28.88,53.44,55.06,8.333333333333334,1,1,0,0,1,1,2,1,1149,340370.19,120722.13,283184.5,0,2494.7205 -3657,4526,8069,8070,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.2321997,8.4608278,9,1,2.7367377,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4958587,8.7363014,57.16,56.15,51.77,58.57,10,1,1,0,0,3,7,4,1,1206,1678097,750858.94,916052.19,0,4925.458 -3657,4526,8070,8069,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.1250687,7.2599306,9,-1,55.824333,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3358445,7.4793262,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,1206,1678097,750858.94,916052.19,0,4925.458 -3658,4527,8071,8072,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.4833531,7.7434182,0,23,-8,56.979324,0,2,3,2019,8,0,28,28,1,0,0,8.7608204,8.7608204,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.86,48.06,8.333333333333334,1,1,0,0,8,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 -3658,4527,8072,8071,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.612339,8.1481419,0,23,8,72.660889,0,-9,3,2019,9,0,44,42,1,0,0,12.328922,12.328922,0,0,0,0,0,1,1,0,0,0,59.86,48.06,57.16,56.15,6.666666666666667,3,4,0,0,9,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 -3658,4527,8073,-9,8071,8072,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.20624,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 -3658,4527,8074,-9,8071,8072,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-906.35443,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,12,4,0,565.5,287060.31,96884.453,74577.313,0,2716.3638 -3659,4528,8075,-9,-9,8076,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.91266,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,621,-24897.609,0,0,0,1142.4169 -3659,4528,8076,-9,-9,-9,1,1,53,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1033.6891,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,1,0,0,2,1,0,621,-24897.609,0,0,0,1142.4169 -3660,4529,8077,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.6701493,8.1021318,0,0,0,-991.20654,0,3,2,2019,5,0,24,27,1,0,0,12.327458,12.327458,0,0,0,0,0,0,0,0,4.7712545,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,3009,504825.5,0,397745.41,0,562.77692 -3661,4530,8078,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,5,6.5604587,6.1691723,0,0,0,-818.20551,-9,-9,-9,2019,4,0,10,0,1,0,0,7.1935101,7.1935101,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,1,9,2,1,1978,-338694.56,0,0,0,412.58151 -3661,4531,8079,8080,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,47,-4,-48.171814,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.83,57.2,53,46,10,3,4,0,0,0,9,2,1,1258,938325.5,33842.422,450248.63,0,4607.9893 -3661,4531,8080,8079,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.8098574,5.6944599,10,4,-57.591732,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.8107343,5.6824465,53,46,51.83,57.2,7,3,4,0,0,0,9,2,1,1258,938325.5,33842.422,450248.63,0,4607.9893 -3662,4532,8081,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.4629021,7.7906127,0,0,0,-1126.4344,0,-9,-9,2019,20,8,4,41,1,8,0,64.925606,64.925606,0,0,0,0,2,1,1,0,0,0,46.8,55.75,-9,-9,6.666666666666667,1,1,0,0,5,5,3,1,526,-219443.52,0,0,0,1037.4009 -3662,4533,8082,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,7.7662349,7.7048736,0,0,-1068.6501,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3139701,8.2547922,59.36,40.22,-9,-9,10,1,1,0,0,0,5,4,1,918,268072.69,123913.2,0,0,1294.9065 -3663,4534,8083,-9,8085,8084,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-808.42847,-9,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,5.9800081,0,50,62,-9,-9,7,1,1,0,0,1,11,5,1,433.33334,1225552.3,1033778.2,79917.148,0,2964.1721 -3663,4534,8084,8085,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0448112,8.2187757,0,8,5,24.013861,0,2,-9,2019,15,3,38,38,1,3,0,11.003849,11.003849,0,0,0,0,0,0,0,0,0,0,34.68,56.99,43.42,62.33,8.333333333333334,1,1,0,0,8,11,5,1,433.33334,1225552.3,1033778.2,79917.148,0,2964.1721 -3663,4534,8085,8084,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.5333071,8.1695385,0,8,-5,12.107818,0,2,2,2019,9,0,42,41,1,0,0,12.630027,12.630027,0,0,0,0,0,0,0,0,0,0,43.42,62.33,34.68,56.99,8.333333333333334,1,1,0,0,8,11,5,1,433.33334,1225552.3,1033778.2,79917.148,0,2964.1721 -3664,4535,8086,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-930.73102,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.93,22.09,-9,-9,5,1,1,0,0,0,11,1,0,1101,206870.69,0,0,0,1223.5919 -3665,4536,8087,8089,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,7.2838535,7.2746572,0,18,-1,-25.834345,0,2,1,2019,11,0,40,40,1,0,0,3.4650846,3.4650846,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.2,57.49,6.666666666666667,1,1,0,0,8,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 -3665,4536,8088,-9,8089,8087,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.14172,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 -3665,4536,8089,8087,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.2015867,8.1894445,0,19,1,-3.3544366,0,2,1,2019,12,0,28,29,1,0,0,16.288792,16.288792,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.1,59.11,3.333333333333333,2,3,0,0,8,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 -3665,4536,8090,-9,8089,8087,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.9967,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,806.25,95669.43,67844.523,290812.19,185533.81,2502.7502 -3666,4537,8091,8092,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.3967228,7.4716783,2,2,25.99037,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.181911,49.28,50.19,40.36,55.57,8.333333333333334,1,1,0,0,0,11,2,1,514,593830.25,446832.31,80813.273,0,874.08978 -3666,4537,8092,8091,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,31,-2,-144.90929,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,0,0,40.36,55.57,49.28,50.19,6.666666666666667,1,1,0,0,3,11,2,1,514,593830.25,446832.31,80813.273,0,874.08978 -3667,4538,8093,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1051.9668,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,882,115990.94,0,0,0,872.15869 -3667,4538,8094,-9,8093,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.96954,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,882,115990.94,0,0,0,872.15869 -3668,4539,8095,8096,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,6.7890234,6.7645183,44,3,-78.781593,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3264537,7.1996837,60.03,10.7,66.37,22.3,6.666666666666667,1,1,0,0,0,13,3,1,173,696965.44,353356.31,228533.41,0,3094.769 -3668,4539,8096,8095,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.3459597,6.9995289,44,-3,-18.603344,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.144074,66.37,22.3,60.03,10.7,8.333333333333334,1,1,0,0,0,13,3,1,173,696965.44,353356.31,228533.41,0,3094.769 -3669,4540,8097,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,7.2335348,7.0681729,0,0,-1086.4978,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1566448,7.0665879,54.79,55.86,-9,-9,10,1,1,0,0,0,7,2,1,415,207409.81,188974.02,0,0,968.67273 -3670,4541,8098,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.2400007,5.5920911,0,0,-923.16064,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.37073171,5.718461,60.11,44.43,-9,-9,10,1,1,0,0,0,7,2,1,141,624937.25,145506.42,170593.44,0,973.90576 -3671,4542,8099,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.6756811,8.6723728,0,0,0,-1013.1796,0,-9,-9,2019,13,2,48,40,1,2,0,13.809041,13.809041,0,0,0,0,0,0,0,0,0,0,39.07,49.34,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,1190,864460.81,221791.88,221699.42,0,2056.0317 -3671,4543,8100,-9,-9,8099,1,1,23,0,0,0,2,2,-9,0,4,8.2300272,8.1677523,0,0,0,-881.6156,0,-9,3,2019,10,0,40,40,1,1,1,11.818738,11.818738,0,0,0,0,0,0,0,0,.61446035,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,2122,80051.68,-46588.73,0,0,1751.1288 -3671,4544,8101,8102,-9,8099,1,1,25,0,0,0,2,2,-9,0,4,7.8265219,7.9370031,0,3,1,14.554134,0,-9,3,2019,14,4,40,40,1,4,0,8.3086109,8.3086109,0,0,0,0,0,0,0,0,0,0,38.09,63.39,44.85,41.89,3.333333333333333,1,1,0,0,5,2,4,1,262.5,253775.78,-6104.2114,116427.3,54011.32,2172.1624 -3671,4544,8102,8101,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,8.0196676,7.8843164,0,3,-1,97.623924,0,-9,-9,2019,11,1,45,38,1,1,0,7.1136899,7.1136899,0,0,0,0,0,0,0,0,.10283609,0,44.85,41.89,38.09,63.39,6.666666666666667,1,1,0,0,7,2,4,1,262.5,253775.78,-6104.2114,116427.3,54011.32,2172.1624 -3672,4545,8103,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1286469,8.1790695,0,0,0,-840.28766,0,2,3,2019,14,2,38,39,1,2,0,12.530191,12.530191,0,0,0,0,0,0,0,0,0,0,37.78,31.77,-9,-9,5,1,1,0,0,9,11,4,1,235,-126319.03,363426.56,61722.59,0,1398.1899 -3673,4546,8104,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.6569848,6.4255013,0,0,-1079.7036,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2017837,6.5927124,59.01,25.21,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,764,-95657.164,31435.93,0,0,1339.6567 -3674,4547,8105,8106,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,36,1,132.77731,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4640713,0,54,53,48.17,52.08,3.333333333333333,1,1,0,0,5,9,4,1,1104.5,444503.72,100807.44,392747.56,0,2375.9231 -3674,4547,8106,8105,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.9106598,9.0926924,0,32,-1,182.34764,0,-9,-9,2019,7,0,36,36,1,0,0,22.86347,22.86347,0,0,0,0,5.48,0,0,0,0,0,48.17,52.08,54,53,8.333333333333334,1,1,0,0,9,9,4,1,1104.5,444503.72,100807.44,392747.56,0,2375.9231 -3674,4548,8107,-9,8106,8105,1,1,19,0,0,1,3,0,0,0,3,0,0,0,0,0,-1025.9187,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,292,0,0,0,0,0 -3675,4549,8108,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.2208099,8.5271158,0,0,0,-1005.6721,0,1,1,2019,7,0,40,40,1,0,0,10.176006,10.176006,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,9,4,1,6976,70755.008,0,0,0,1793.0081 -3676,4550,8109,8110,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.7846203,8.7318115,0,8,-1,75.126968,0,3,3,2019,3,0,40,48,1,0,0,23.611883,23.611883,0,0,0,0,0,0,0,0,0,0,49.94,58.01,58.32,50.22,8.333333333333334,1,1,0,0,6,11,5,1,568.5,1620457.5,1354878.6,231955.84,93704.742,4854.9268 -3676,4550,8110,8109,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.4255486,8.526309,0,8,1,41.047668,0,2,-9,2019,8,0,50,50,1,0,0,12.645357,12.645357,0,0,0,0,0,0,0,0,0,0,58.32,50.22,49.94,58.01,6.666666666666667,1,1,0,0,9,11,5,1,568.5,1620457.5,1354878.6,231955.84,93704.742,4854.9268 -3676,4551,8111,-9,8109,8110,1,0,22,0,0,0,2,2,-9,0,3,7.6558933,7.701201,0,0,0,-1026.1647,0,1,3,2019,9,0,42,39,1,0,1,6.0987287,6.0987287,0,0,0,0,0,0,0,0,0,0,57.34,47.92,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,875,-56482.875,0,0,0,460.43698 -3677,4552,8112,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.0542746,7.0180893,0,0,0,-856.19232,0,2,2,2019,8,1,16,-9,1,1,0,10.586827,10.586827,0,0,0,0,0,1,0,1,.35553339,0,50.72,48.03,-9,-9,8.333333333333334,4,5,0,0,9,8,3,0,1598,43570.664,27545.334,0,0,920.8526 -3677,4553,8113,-9,8112,-9,1,1,27,0,0,0,1,1,0,0,4,0,0,0,0,0,-1039.2189,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,10,4,5,0,0,3,8,1,0,1520,-59287.902,0,0,0,0 -3677,4554,8114,-9,8112,-9,1,1,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1034.9415,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,46.84,51.72,-9,-9,8.333333333333334,4,5,1,0,2,8,1,0,333,0,0,0,0,1101.1783 -3677,4555,8115,-9,8112,-9,1,0,26,0,0,0,2,2,-9,0,4,7.2490468,6.9161677,0,0,0,-1009.1843,0,2,2,2019,11,4,32,12,1,4,1,3.7609119,3.7609119,0,0,0,0,0,1,0,1,0,0,49.86,52.61,-9,-9,10,4,5,0,0,3,8,2,0,392,-65649.172,109544.55,0,0,217.71402 -3677,4556,8116,-9,8112,-9,1,0,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-966.83356,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,-9,-9,10,4,5,0,0,5,8,1,0,2293,31268.863,0,0,0,811.00964 -3678,4557,8117,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.6878424,7.4673543,0,0,0,-996.60669,0,2,3,2019,6,0,30,40,1,0,0,9.2406416,9.2406416,0,0,0,0,5.48,0,0,0,0,0,57.57,44.16,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,632,-129368.07,2395.5085,0,0,1188.9735 -3678,4558,8118,-9,-9,8117,1,1,26,0,0,0,2,2,-9,0,2,7.9902296,7.7898784,0,0,0,-975.54248,0,3,2,2019,12,4,37,39,1,4,1,7.3097105,7.3097105,0,0,0,0,0,0,0,0,.51236802,0,53.34,48.86,-9,-9,8.333333333333334,1,1,0,0,6,9,3,0,1026,199772.94,-24218.08,0,0,1547.6301 -3679,4559,8119,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,9.0026627,8.4386578,0,0,-1114.365,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,8.5553446,11.604922,72.446663,0,1,1,0,0,8.6094961,49.52,18.67,-9,-9,5,1,1,0,0,0,12,5,1,250,693024.56,260017.28,217040.66,0,3231.9653 -3680,4560,8120,8121,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,7.9068007,8.3434935,6.9031081,7,-5,42.742203,0,-9,-9,2019,32,11,37,37,1,11,0,9.263484,9.263484,0,0,0,0,0,1,1,0,0,7.4741139,13.08,33.57,63.67,35.95,0,1,1,0,0,9,4,5,1,344.5,1415061.1,852793.69,232396.88,0,3015.9912 -3680,4560,8121,8120,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,7.8223743,8.0232658,6.9160252,7,5,-36.454453,0,-9,-9,2019,6,0,34,39,1,0,0,8.4711304,8.4711304,0,0,0,0,0,1,1,0,0,6.6972699,63.67,35.95,13.08,33.57,5,1,1,0,0,6,4,5,1,344.5,1415061.1,852793.69,232396.88,0,3015.9912 -3681,4561,8122,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.3580408,8.37714,0,0,0,-1096.0751,-9,2,2,2019,16,5,58,0,1,5,0,8.6617308,8.6617308,0,0,0,0,5.48,0,0,0,0,0,30.41,61.92,-9,-9,3.333333333333333,1,1,0,0,8,1,5,0,241,522883.44,107458.34,96245.633,42563.719,1792.6057 -3682,4562,8123,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.7632251,5.6805778,0,0,-962.24255,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.8355217,53.58,23.9,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,143,246250.94,80141.648,89903.18,0,1767.4343 -3683,4563,8124,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.5898848,8.5445967,0,0,0,-951.68988,0,2,2,2019,10,2,44,45,1,2,0,15.776539,15.776539,0,0,0,0,0,0,0,0,7.0322299,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,762,131370.28,1162.2538,113304.41,17516.275,2500.7463 -3684,4564,8125,-9,8127,8128,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.39789,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 -3684,4564,8126,-9,8127,8128,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7278,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 -3684,4564,8127,8128,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,6.9249949,6.7316175,0,12,2,-20.08069,0,2,2,2019,10,0,35,40,1,0,0,2.4768958,2.4768958,0,0,0,0,0,0,0,0,3.9744117,0,56.33,51.02,57.06,57.76,8.333333333333334,1,1,0,0,6,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 -3684,4564,8128,8127,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.6136293,9.383111,0,12,-2,-111.03342,0,-9,-9,2019,7,0,50,60,1,0,0,34.982586,34.982586,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.33,51.02,10,1,1,0,0,7,8,5,1,602.5,739687.13,377219.47,457441.19,136623.36,4891.3848 -3685,4565,8129,-9,8130,-9,1,0,38,0,0,0,2,2,-9,0,3,7.6098642,7.4311972,0,0,0,-1091.399,-9,2,2,2019,12,1,38,0,1,1,0,6.5009341,6.5009341,0,0,0,0,0,1,1,0,0,0,40.4,58.62,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,635,340825.47,0,0,0,961.46967 -3685,4566,8130,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.2373891,6.1221457,0,0,-1124.3562,-9,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,0,2.8521061,0,0,1,1,0,0,6.6146603,42.45,45.25,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,103,333351.81,358936.94,58731.938,68545.742,1148.4683 -3686,4567,8131,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.0582004,6.0170255,0,0,-1035.5839,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,15.508493,44.577541,134.5612,0,1,1,0,0,6.0878687,53,45,-9,-9,8,1,1,0,0,0,7,2,0,995,121877.59,-10320.073,0,0,2262.0835 -3687,4568,8132,8133,-9,-9,1,1,65,0,2,0,2,2,-9,0,4,8.1819286,8.4063625,7.1068587,10,22,77.3041,0,1,1,2019,10,0,42,37,1,0,0,9.3187075,9.3187075,0,0,0,0,14.5,1,1,0,0,7.0788541,46.39,60.99,37.45,47.62,3.333333333333333,2,3,0,0,9,8,3,0,1199.6666,3231000.5,1217364.5,717454.88,0,2413.9028 -3687,4568,8133,8132,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.9095149,6.8276544,0,9,-22,68.638756,0,3,3,2019,13,1,13,0,1,1,0,7.3257689,7.3257689,0,0,0,0,14.5,1,1,0,0,0,37.45,47.62,46.39,60.99,8.333333333333334,4,2,0,1,1,8,3,0,1199.6666,3231000.5,1217364.5,717454.88,0,2413.9028 -3687,4568,8134,-9,8133,8132,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.31934,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,1199.6666,3231000.5,1217364.5,717454.88,0,2413.9028 -3688,4569,8135,8137,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.5136657,7.4839134,0,20,0,-116.32764,0,3,3,2019,12,1,16,8,1,1,0,13.791149,13.791149,0,0,0,0,0,1,1,0,1.0876813,0,49.2,45.44,57.9,51.84,6.666666666666667,1,1,0,0,12,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 -3688,4569,8136,-9,8135,8137,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1101.4907,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 -3688,4569,8137,8135,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.8732681,7.9456711,0,21,0,159.96739,0,1,1,2019,7,0,32,24,1,0,0,11.737888,11.737888,0,0,0,0,0,1,1,0,7.4054084,0,57.9,51.84,49.2,45.44,6.666666666666667,1,1,0,0,13,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 -3688,4569,8138,-9,8135,8137,1,0,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-999.62885,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,0,0,0,9,3,1,425.75,428573.59,83472.641,479762.78,246424.95,3026.4131 -3689,4570,8139,-9,8141,8140,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.99036,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 -3689,4570,8140,8141,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.5676098,8.7754669,0,10,-11,-83.316048,0,-9,-9,2019,10,0,50,50,1,0,0,11.353671,11.353671,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,10,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 -3689,4570,8141,8140,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.2572765,7.1463065,5.4685836,10,11,9.6806154,0,-9,-9,2019,12,0,24,25,1,0,0,7.8952518,7.8952518,0,0,0,0,0,1,1,0,5.7487264,0,52.23,55.6,57.16,56.15,1.666666666666667,1,1,0,0,9,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 -3689,4570,8142,-9,8141,8140,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.5458,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,706.25,550398.94,0,470526.63,112283.68,2762.4771 -3690,4571,8143,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.2139254,7.3175507,0,0,-1033.391,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0961995,52.81,49.13,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,147,513125.66,188060.64,144263.14,0,1485.2377 -3691,4572,8144,8145,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.6851029,7.6019864,0,8,9,-.086510696,0,3,2,2019,8,2,30,30,1,2,0,5.9960413,5.9960413,0,0,0,0,14.5,0,0,0,2.4822552,0,45,39,57.94,40.76,5,1,1,0,0,11,6,4,1,1639.5,103626.13,84976.102,103453.8,57314.844,2016.3062 -3691,4572,8145,8144,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.8085589,7.9885983,0,8,0,17.505068,0,-9,-9,2019,5,0,38,30,1,0,0,8.8635569,8.8635569,0,0,0,0,0,0,0,0,0,0,57.94,40.76,45,39,8.333333333333334,1,1,0,0,7,6,4,1,1639.5,103626.13,84976.102,103453.8,57314.844,2016.3062 -3691,4573,8146,-9,-9,8144,1,0,27,0,0,0,2,2,-9,0,3,8.0875053,8.2491827,0,0,0,-1036.1643,0,-9,2,2019,10,0,39,41,1,0,1,11.53741,11.53741,0,0,0,0,0,0,0,0,0,0,45.59,52.37,-9,-9,5,1,1,0,0,8,6,4,1,373,365237.59,-11484.022,0,0,1106.1805 -3691,4574,8147,-9,-9,8144,1,1,23,0,0,0,2,2,-9,0,3,7.8664222,8.1031485,0,0,0,-823.24207,0,-9,2,2019,12,1,41,39,1,1,1,7.9753246,7.9753246,0,0,0,0,0,0,0,0,.17747414,0,43.29,55.57,-9,-9,5,1,1,0,0,6,6,4,1,157,58668.109,0,0,0,636.0155 -3692,4575,8148,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.5414562,8.1513262,0,0,0,-897.51453,0,2,2,2019,11,0,43,43,1,0,0,10.708476,10.708476,0,0,0,0,0,0,0,0,3.6887581,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,1016,-129583.89,36430.535,0,0,2151.6472 -3693,4576,8149,-9,8151,8152,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1145.4961,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 -3693,4576,8150,-9,8151,8152,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.6875,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 -3693,4576,8151,8152,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.3328018,8.0852995,0,16,0,123.4805,0,2,2,2019,8,0,38,40,1,0,0,15.114764,15.114764,0,0,0,0,0,0,0,0,8.1731911,0,62.87,38.6,42.21,40.51,5,4,2,0,0,8,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 -3693,4576,8152,8151,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,9.250741,8.9422178,0,16,0,16.601225,0,2,1,2019,20,7,46,0,1,7,0,30.618864,30.618864,0,0,0,0,0,0,0,0,8.2827549,0,42.21,40.51,62.87,38.6,3.333333333333333,3,4,0,1,6,8,5,1,287.5,590991.06,173116.45,521825.81,329152.19,11259.843 -3693,4577,8153,-9,8151,8152,1,0,25,0,2,0,1,1,-9,0,3,7.3877072,7.8042397,0,0,0,-1005.0315,0,1,1,2019,17,6,16,40,1,6,1,15.935931,15.935931,0,0,0,0,0,0,0,0,0,0,33.76,49.38,-9,-9,3.333333333333333,3,4,0,0,3,8,3,1,488,-231918.16,1177.9104,0,0,1386.1162 -3694,4578,8154,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.3655148,8.3273954,5.9315343,0,0,-1053.9592,-9,3,3,2019,13,1,36,0,1,1,0,12.312672,12.312672,0,0,0,0,0,1,1,0,5.9651241,0,48.01,57.73,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,179,470282.63,243228.53,90629.57,59078.516,3622.1992 -3694,4579,8155,-9,8154,-9,1,0,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-982.33746,-9,2,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,13,1,1,739,-162524.3,0,0,0,49.451782 -3694,4580,8156,-9,8154,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-903.30981,-9,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,1,0,13,2,1,218,174133.58,0,0,0,0 -3695,4581,8157,8158,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6815453,8.2833977,0,17,-4,-74.406647,0,2,2,2019,12,0,36,30,1,0,0,22.502668,22.502668,0,0,0,0,0,0,0,0,6.8243089,0,40.47,55.65,57.06,57.76,1.666666666666667,1,1,0,0,10,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 -3695,4581,8158,8157,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.705719,9.7181606,0,15,4,141.01317,0,3,3,2019,5,0,33,28,1,0,0,63.147034,63.147034,0,0,0,0,0,0,0,0,3.2265992,0,57.06,57.76,40.47,55.65,8.333333333333334,1,1,0,0,10,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 -3695,4581,8159,-9,8157,8158,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.60229,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 -3695,4581,8160,-9,8157,8158,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1049.5918,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,5,1,324.25,295457,-29501.469,311607.63,164827.33,9459.8604 -3696,4582,8161,8162,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.6135492,8.8791361,0,4,1,-86.498138,0,-9,-9,2019,8,0,40,40,1,0,0,13.067023,13.067023,0,0,0,0,0,0,0,0,.19423695,0,49.46,56.91,48.87,58.55,8.333333333333334,1,1,0,0,5,6,5,1,245,324916.38,344452.31,298864.22,163361.27,5896.5068 -3696,4582,8162,8161,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.1753569,9.2508907,0,4,-1,42.162163,0,1,3,2019,12,2,37,40,1,2,0,36.658714,36.658714,0,0,0,0,0,0,0,0,4.5060606,0,48.87,58.55,49.46,56.91,8.333333333333334,1,1,0,0,9,6,5,1,245,324916.38,344452.31,298864.22,163361.27,5896.5068 -3697,4583,8163,-9,8165,8164,1,1,22,0,0,0,2,2,-9,0,4,7.0520878,7.2151198,0,0,0,-923.19775,0,2,2,2019,5,0,8,30,1,0,1,24.96615,24.96615,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,362,338785.84,0,0,0,425.95227 -3697,4584,8164,8165,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9010482,8.0963039,0,6,0,32.938255,0,-9,-9,2019,9,0,60,40,1,1,0,6.9369907,6.9369907,0,0,0,0,0,0,0,0,0,0,53,54,40.91,61.39,8,1,1,0,0,1,7,4,1,284.5,59097.297,275092.72,203912.16,156718.84,1770.5718 -3697,4584,8165,8164,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.7401466,7.7106061,0,6,0,-5.853651,0,-9,-9,2019,14,4,35,35,1,4,0,6.8373656,6.8373656,0,0,0,0,0,0,0,0,0,0,40.91,61.39,53,54,6.666666666666667,1,1,0,0,9,7,4,1,284.5,59097.297,275092.72,203912.16,156718.84,1770.5718 -3698,4585,8166,-9,8168,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4386,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,718.66669,-194813.06,7985.1406,0,0,1832.9768 -3698,4585,8167,-9,8168,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.125,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,718.66669,-194813.06,7985.1406,0,0,1832.9768 -3698,4585,8168,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.4634995,7.31141,0,0,0,-907.0094,0,2,-9,2019,6,0,35,16,1,0,0,4.6275845,4.6275845,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,10,2,0,718.66669,-194813.06,7985.1406,0,0,1832.9768 -3699,4586,8169,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,4.9428778,5.0782919,0,0,-872.24841,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1677051,4.9173994,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,11,13,2,1,539,564234.69,65198.137,168219.52,0,350.64883 -3700,4587,8170,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,9.5627708,9.8066225,8.799654,0,0,-913.11053,0,3,3,2019,6,0,30,35,1,0,0,47.527596,47.527596,0,0,0,0,0,1,1,0,8.0144234,8.5033855,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,615,1404217.1,884622.13,484428.38,0,9642.6602 -3701,4588,8171,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.8857431,8.6756449,0,0,0,-931.73303,0,2,2,2019,13,1,42,43,1,1,0,19.434528,19.434528,0,0,0,0,0,0,0,0,0,0,33.22,49.65,-9,-9,6.666666666666667,1,1,0,0,12,11,5,0,145,-11669.755,0,11508.223,25348.602,2746.6389 -3702,4589,8172,8173,-9,-9,1,0,39,1,1,0,1,1,-9,0,5,8.4835911,8.6145687,0,3,-6,-134.60934,0,2,2,2019,6,0,21,35,1,0,0,24.192209,24.192209,0,0,0,0,0,1,1,0,7.8971033,0,54.69,57.47,57.16,56.15,10,4,2,0,0,10,8,5,1,945,195292.64,98637.109,0,0,5376.2583 -3702,4589,8173,8172,-9,-9,1,1,45,1,1,0,1,1,-9,0,4,8.9540167,8.5776186,0,3,6,-54.09214,0,-9,-9,2019,6,0,35,35,1,0,0,21.865675,21.865675,0,0,0,0,0,1,1,0,5.8518839,0,57.16,56.15,54.69,57.47,10,4,2,0,0,10,8,5,1,945,195292.64,98637.109,0,0,5376.2583 -3702,4589,8174,-9,8172,8173,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.4747,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,945,195292.64,98637.109,0,0,5376.2583 -3703,4590,8175,8176,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,9.169857,9.035306,0,7,6,-95.741814,0,2,2,2019,14,3,60,63,1,3,0,17.301359,17.301359,0,0,0,0,0,1,1,0,1.7258993,0,34.17,57.25,34.5,53.14,3.333333333333333,1,1,0,0,8,10,5,1,1175,367778.78,248942.28,336710.16,200850.22,4213.2656 -3703,4590,8176,8175,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.1793599,7.6803956,0,7,-6,31.63798,0,2,1,2019,18,6,25,37,1,6,0,7.7346601,7.7346601,0,0,0,0,0,1,1,0,.63261062,0,34.5,53.14,34.17,57.25,5,1,1,0,0,8,10,5,1,1175,367778.78,248942.28,336710.16,200850.22,4213.2656 -3703,4590,8177,-9,8176,8175,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.9987,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1175,367778.78,248942.28,336710.16,200850.22,4213.2656 -3703,4591,8178,-9,8176,8175,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-873.25842,1,2,2,2019,7,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,2.8723919,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,502,-99440.781,0,0,0,-613.97968 -3704,4592,8179,-9,8180,8181,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1043.498,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,8,4,1,285.33334,346661,247894.94,144016.56,0,3102.2788 -3704,4592,8180,8181,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.8145437,8.7304907,0,17,2,-1.4538898,0,-9,-9,2019,10,0,50,40,1,1,0,14.909427,14.909427,0,0,0,0,0,0,0,0,0,0,52,53,17.6,50.51,8,1,1,0,0,1,8,4,1,285.33334,346661,247894.94,144016.56,0,3102.2788 -3704,4592,8181,8180,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.5217986,7.2364941,0,17,-2,107.69649,0,2,2,2019,22,10,40,0,1,10,0,3.4977496,3.4977496,0,0,0,0,14.5,0,0,0,1.1182146,0,17.6,50.51,52,53,3.333333333333333,1,1,0,0,4,8,4,1,285.33334,346661,247894.94,144016.56,0,3102.2788 -3705,4593,8182,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.6466036,7.5674748,0,0,0,-993.70264,-9,3,3,2019,27,11,20,0,1,11,0,9.8434248,9.8434248,0,0,0,0,0,1,1,0,0,0,25.57,35.95,-9,-9,1.666666666666667,3,4,0,1,5,8,2,0,464,-158951.44,-77254.07,236350.16,113316.12,1805.0018 -3705,4593,8183,-9,8182,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.3924,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,464,-158951.44,-77254.07,236350.16,113316.12,1805.0018 -3706,4594,8184,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.9498272,7.9206438,6.156774,0,0,-949.81384,-9,3,-9,2019,6,1,24,0,1,1,0,16.335438,16.335438,0,0,0,0,0,1,1,0,6.8324952,0,47.24,48.72,-9,-9,8.333333333333334,3,4,0,0,3,11,4,0,4232,-36826.133,48286.98,0,0,1691.6906 -3707,4595,8185,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.3467312,8.2335758,0,0,0,-804.02856,0,-9,-9,2019,6,0,37,42,1,0,0,13.609458,13.609458,0,0,0,0,0,0,0,0,0,0,36.74,56.23,-9,-9,10,3,4,0,0,11,4,4,0,617,9675.8594,-106261.04,0,0,1136.4711 -3708,4596,8186,8187,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,51,-3,21.960415,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,25.35379,.38264155,2,1,1,0,6.1882639,0,61.68,26.01,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,413,247358.41,127971.33,258315.42,0,1583.5532 -3708,4596,8187,8186,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.4821582,6.4281068,51,3,-44.805889,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3840227,6.4152884,57.16,56.15,61.68,26.01,10,1,1,0,0,0,10,2,1,413,247358.41,127971.33,258315.42,0,1583.5532 -3709,4597,8188,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.3530836,5.7385473,0,0,-1026.9379,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,27.610365,12.32841,265.70764,0,1,1,0,5.3489256,5.5386791,56,44,-9,-9,8,1,1,0,0,0,5,2,1,841,229177.14,-21512.311,65747.641,0,1501.0416 -3710,4598,8189,8192,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.5642776,9.3892174,0,7,1,64.447472,0,-9,-9,2019,9,0,37,40,1,1,0,29.465734,29.465734,0,0,0,0,0,1,1,0,8.5551453,0,52,55,48.77,60.16,8,1,1,0,0,1,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 -3710,4598,8190,-9,8192,8189,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.0468,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 -3710,4598,8191,-9,8192,8189,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.46094,-9,1,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.71740705,0,37.91,60.47,-9,-9,10,1,1,0,0,2,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 -3710,4598,8192,8189,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,7.4826455,7.1146264,0,7,-1,57.614559,0,2,2,2019,6,0,32,40,1,0,0,6.0978918,6.0978918,0,0,0,0,0,1,1,0,3.0297482,0,48.77,60.16,52,55,8.333333333333334,1,1,0,0,8,10,5,1,612.75,1006279.1,840933.19,224695.28,130192.78,6176.6265 -3711,4599,8193,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.7711034,8.1862526,0,0,0,-1030.9187,0,2,2,2019,8,0,10,40,1,0,0,27.429382,27.429382,0,0,0,0,27,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,837,1657798.6,1210698.4,109358.41,0,1246.4774 -3711,4600,8194,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-952.51648,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,27.05,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,386,406629.94,0,0,0,1793.6625 -3712,4601,8195,8196,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.5179806,5.4412408,8,1,41.486542,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,4.7779088,.94200248,0,1,1,0,0,5.6464052,55.21,11.56,44.5,24.45,8.333333333333334,1,1,0,0,6,7,2,1,215,764416.63,103955.44,199649.31,0,3479.479 -3712,4601,8196,8195,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0699196,6.149466,8,-1,-56.309017,-9,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.3498321,0,44.5,24.45,55.21,11.56,5,1,1,0,0,0,7,2,1,215,764416.63,103955.44,199649.31,0,3479.479 -3713,4602,8197,-9,8198,8200,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.78894,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 -3713,4602,8198,8200,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,9.2331467,9.4555779,0,11,-7,160.8241,0,-9,-9,2019,11,0,35,37,1,2,0,32.836388,32.836388,0,0,0,0,0,1,1,0,0,0,48,56,51,56,7,1,1,0,0,12,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 -3713,4602,8199,-9,8198,8200,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.33051,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 -3713,4602,8200,8198,-9,-9,1,1,46,1,2,0,1,1,-9,0,4,8.5346241,8.6477909,0,11,7,-1.2310175,0,2,1,2019,10,0,52,43,1,1,0,11.665741,11.665741,0,0,0,0,0,1,1,0,0,0,51,56,48,56,7,1,1,0,0,10,10,5,1,309,856982.06,640246.63,272038.78,119142.4,4983.4717 -3714,4603,8201,8202,-9,-9,1,1,41,0,0,0,1,1,-9,0,1,0,0,0,2,-14,0,-9,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,30.07,52.57,27.65,24.28,0,4,2,1,1,0,10,1,0,837.5,106970.39,72760.703,166675.14,0,668.00769 -3714,4603,8202,8201,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,2,14,0,0,-9,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.65,24.28,30.07,52.57,1.666666666666667,1,1,0,1,4,10,1,0,837.5,106970.39,72760.703,166675.14,0,668.00769 -3714,4604,8203,-9,8202,-9,1,1,23,0,0,0,2,2,-9,0,3,7.0387149,6.6610675,0,0,0,-946.21832,0,2,2,2019,6,0,1,0,1,0,1,103.41101,103.41101,0,0,0,0,7,1,1,0,0,0,41.34,56.62,-9,-9,5,1,1,0,1,4,10,2,0,1362,-137686.8,56296.504,0,0,811.77747 -3715,4605,8204,8206,-9,-9,1,1,46,1,2,0,1,1,-9,0,3,7.6456175,7.7064619,0,15,12,52.147797,0,2,2,2019,12,0,35,24,1,0,0,5.8666768,5.8666768,0,0,0,0,0,1,0,1,0,0,43.49,43.6,33.47,42.84,5,2,3,0,0,11,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 -3715,4605,8205,-9,8206,8204,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.9788,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 -3715,4605,8206,8204,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,0,0,0,15,-12,-.85149938,0,2,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,.56150895,0,33.47,42.84,43.49,43.6,5,2,3,0,1,2,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 -3715,4605,8207,-9,8206,8204,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6272,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,2,3,-9,0,0,7,2,0,728,170101.67,82730.563,302964.28,148945.84,2823.123 -3716,4606,8208,8209,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.3384128,7.6898661,0,14,-4,44.478088,0,3,-9,2019,11,0,21,21,1,0,0,12.120796,12.120796,0,0,0,0,0,0,0,0,0,0,47.15,48.63,53,55,7,3,4,0,0,7,8,3,0,330.5,656881.69,66738.852,319181.38,0,1009.1553 -3716,4606,8209,8208,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,5.7794514,5.7310834,0,14,4,2.9113746,0,-9,-9,2019,9,0,40,40,1,1,0,1.182409,1.182409,0,0,0,0,0,0,0,0,0,0,53,55,47.15,48.63,8,1,1,0,0,11,8,3,0,330.5,656881.69,66738.852,319181.38,0,1009.1553 -3716,4607,8210,-9,8208,8209,1,0,21,0,0,0,2,2,-9,0,3,7.9622898,8.1130848,0,0,0,-990.26904,0,2,2,2019,10,2,37,37,1,2,1,9.3447313,9.3447313,0,0,0,0,2,0,0,0,0,0,34.63,50.33,-9,-9,5,3,4,0,0,2,8,4,0,734,158501.95,0,0,0,903.12152 -3717,4608,8211,-9,8212,8213,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.55505,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,697,299527.44,135664.06,310407.47,134623.42,3213.6631 -3717,4608,8212,8213,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.2503166,8.150629,0,5,-2,-65.056259,0,2,2,2019,4,0,22,37,1,0,0,26.064621,26.064621,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.33,45.47,8.333333333333334,1,1,0,0,7,9,5,0,697,299527.44,135664.06,310407.47,134623.42,3213.6631 -3717,4608,8213,8212,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.7959023,9.027688,0,5,2,38.278767,0,-9,-9,2019,8,0,37,7,1,0,0,16.126471,16.126471,0,0,0,0,0,1,1,0,0,0,45.33,45.47,48.87,58.55,6.666666666666667,1,1,0,0,9,9,5,0,697,299527.44,135664.06,310407.47,134623.42,3213.6631 -3718,4609,8214,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.446702,8.3336344,3.9978075,0,0,-1066.6069,0,1,1,2019,11,0,39,37,1,0,0,13.739079,13.739079,0,0,0,0,0,1,1,0,5.3003125,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,549,330675.16,183037.17,47027.867,27339.596,2038.4424 -3719,4610,8215,8216,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.8830309,9.0728712,0,6,-1,33.763382,0,1,2,2019,12,0,38,38,1,0,0,20.44169,20.44169,0,0,0,0,0,0,0,0,2.593802,0,39.1,57.79,52.23,55.6,3.333333333333333,4,5,0,0,5,8,5,1,136,601465.75,196188.25,282805.34,0,3704.0898 -3719,4610,8216,8215,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.573864,8.919363,0,6,1,2.3662803,0,1,1,2019,5,0,20,35,1,0,0,24.162258,24.162258,0,0,0,0,0,0,0,0,0,0,52.23,55.6,39.1,57.79,8.333333333333334,4,5,0,0,7,8,5,1,136,601465.75,196188.25,282805.34,0,3704.0898 -3720,4611,8217,8218,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,44,-3,148.73207,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,.58300102,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,2,10,2,1,818.5,809867.13,414414.13,250408.92,0,1194.2352 -3720,4611,8218,8217,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,7.2731881,7.4416018,0,44,3,38.083092,0,2,2,2019,8,0,55,55,1,0,0,3.3297594,3.3297594,1,0,21.926846,0,0,1,1,0,1.4526255,0,58.32,50.22,57.16,56.15,1.666666666666667,1,1,0,0,12,10,2,1,818.5,809867.13,414414.13,250408.92,0,1194.2352 -3721,4612,8219,8220,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.8908803,4.0950098,55,-2,36.657997,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8041027,3.9153571,58.32,50.22,58.15,52.91,10,1,1,0,0,9,6,2,1,1264.5,430239.84,12496.56,281595.06,0,1488.0453 -3721,4612,8220,8219,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.9698653,6.4547167,55,2,-90.331718,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2543201,6.9086542,58.15,52.91,58.32,50.22,8.333333333333334,1,1,0,0,6,6,2,1,1264.5,430239.84,12496.56,281595.06,0,1488.0453 -3722,4613,8221,8222,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,9.2173347,9.1692352,0,16,-4,-7.927525,-9,1,1,2019,13,3,50,0,1,3,0,22.321945,22.321945,0,0,0,0,0,1,1,0,4.399775,0,54.37,54.8,52.31,58.29,3.333333333333333,1,1,0,0,13,9,5,1,222.5,504824.13,27908.518,332470.63,107640.59,5194.2109 -3722,4613,8222,8221,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,6.2175083,7.1086345,6.5722642,16,4,-135.15834,-9,3,3,2019,11,0,28,0,1,0,0,2.0695825,2.0695825,0,0,0,0,2,1,1,0,7.6541562,6.0408192,52.31,58.29,54.37,54.8,8.333333333333334,1,1,0,0,13,9,5,1,222.5,504824.13,27908.518,332470.63,107640.59,5194.2109 -3723,4614,8223,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1081.0636,0,3,2,2019,14,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.27,38.12,-9,-9,3.333333333333333,4,5,0,0,0,8,1,0,1190,1558308,53776.637,1638687.6,0,1268.5293 -3724,4615,8224,8225,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.0470662,7.269403,10,3,31.756987,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9763055,46.67,55.57,52.75,47.35,8.333333333333334,1,1,0,0,0,9,2,1,456.5,712270.88,70418.75,437124.81,0,1907.0719 -3724,4615,8225,8224,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,10,-3,-142.96721,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.75,47.35,46.67,55.57,10,1,1,0,0,0,9,2,1,456.5,712270.88,70418.75,437124.81,0,1907.0719 -3725,4616,8226,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.1274838,6.9114799,0,0,-1033.0038,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8997822,53,44,-9,-9,8,1,1,0,0,0,8,2,1,3317,36936.34,177299,0,0,1115.0922 -3726,4617,8227,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.7418046,7.4956613,0,0,-1091.3127,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.6573582,0,23.604128,2,1,1,0,2.6476238,7.5419245,53.14,45.74,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,308,818057.56,-83236.891,466349.16,0,1583.3098 -3727,4618,8228,8229,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.1657515,8.362154,0,5,-10,-22.969559,0,-9,-9,2019,12,2,30,30,1,2,0,15.259817,15.259817,0,0,0,0,0,0,0,0,0,0,49.63,54.22,46.68,50.04,6.666666666666667,1,1,0,0,10,2,5,1,813.5,1110298.4,282498.81,304166.94,0,4184.7422 -3727,4618,8229,8228,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.4428616,8.4627323,0,5,10,-76.672104,0,3,-9,2019,9,0,46,38,1,0,0,14.07857,14.07857,0,0,0,0,0,0,0,0,6.6262341,0,46.68,50.04,49.63,54.22,10,1,1,0,0,10,2,5,1,813.5,1110298.4,282498.81,304166.94,0,4184.7422 -3727,4619,8230,-9,8228,8229,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1028.7992,-9,2,3,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,6,2,1,1,219,-305991.97,0,0,0,0 -3728,4620,8231,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-980.02631,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,14.071402,0,0,1,1,0,3.4823563,0,57.61,14.33,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,577,541127.06,0,124617.36,0,577.1861 -3729,4621,8232,8233,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.7120438,6.6527872,34,-3,-89.97261,0,2,3,2019,6,0,0,17,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3302302,6.768157,62.42,26.88,51,46,8.333333333333334,1,1,0,0,11,4,2,1,385,813289.63,287335.69,179793.31,0,2259.126 -3729,4621,8233,8232,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,6.5792909,6.8169537,34,3,2.7062783,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9379928,6.4144821,51,46,62.42,26.88,7,1,1,0,0,12,4,2,1,385,813289.63,287335.69,179793.31,0,2259.126 -3730,4622,8234,-9,8235,8236,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.4646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 -3730,4622,8235,8236,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.1819649,6.6603026,0,1,-5,-65.323769,-9,3,3,2019,7,0,12,0,1,0,0,7.0228052,7.0228052,0,0,0,0,0,1,1,0,0,0,47.2,54.83,52,55,8.333333333333334,1,1,0,0,11,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 -3730,4622,8236,8235,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.2833366,8.329999,0,1,5,-143.54552,-9,2,2,2019,9,0,40,0,1,1,0,12.103331,12.103331,0,0,0,0,0,1,1,0,.33658507,0,52,55,47.2,54.83,8,1,1,0,0,1,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 -3730,4622,8237,-9,8235,8236,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1008.6389,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,11,4,1,925.75,114651.72,78465.508,162356.66,0,2416.2581 -3731,4623,8238,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.0467181,6.012361,0,0,-945.85883,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.4681659,6.2023659,52.57,51.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,706,0,0,0,0,733.69757 -3732,4624,8239,8240,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,0,0,0,7,-3,-113.29475,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,7.0510654,0,41.47,44.38,53,55,10,2,3,0,0,0,9,5,1,252,393563.38,145999.88,400773.97,147512.28,6376.7559 -3732,4624,8240,8239,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.8502131,9.7525253,0,28,3,7.7427011,0,2,1,2019,9,0,50,50,1,1,0,33.311104,33.311104,0,0,0,0,0,0,0,0,4.4527535,0,53,55,41.47,44.38,8,2,3,0,0,1,9,5,1,252,393563.38,145999.88,400773.97,147512.28,6376.7559 -3733,4625,8241,-9,8243,8242,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.86194,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 -3733,4625,8242,8243,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.7810726,8.677557,0,8,1,89.5075,0,1,2,2019,10,0,37,37,1,0,0,18.558342,18.558342,0,0,0,0,0,1,1,0,4.636549,0,54.2,57.49,49.35,59.64,6.666666666666667,1,1,0,0,9,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 -3733,4625,8243,8242,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,7.8149571,7.856883,0,8,-1,-45.908966,0,2,2,2019,12,0,24,23,1,0,0,9.7494812,9.7494812,0,0,0,0,0,1,1,0,0,0,49.35,59.64,54.2,57.49,1.666666666666667,1,1,0,0,9,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 -3733,4625,8244,-9,8243,8242,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.6827,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,1,408.25,1529773.1,793585.75,353897.16,0,2821.4731 -3734,4626,8245,8246,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.7579002,7.8338914,0,7,0,-145.41496,0,2,2,2019,16,5,41,40,1,5,0,7.7325673,7.7325673,0,0,0,0,0,0,0,0,0,0,36.85,53.29,52,54.51,8.333333333333334,1,1,0,0,5,5,4,1,521.5,30522.797,-41742.453,244899.91,134268.78,2620.6382 -3734,4626,8246,8245,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.0840149,8.3755407,0,7,0,-121.96091,0,-9,-9,2019,6,0,37,39,1,0,0,10.045132,10.045132,0,0,0,0,0,0,0,0,0,0,52,54.51,36.85,53.29,6.666666666666667,1,1,0,0,6,5,4,1,521.5,30522.797,-41742.453,244899.91,134268.78,2620.6382 -3735,4627,8247,8248,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.0150442,7.8941059,0,7,6,-74.698624,0,3,-9,2019,3,0,40,35,1,0,0,6.225502,6.225502,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.91,51.8,6.666666666666667,4,2,0,0,8,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 -3735,4627,8248,8247,-9,-9,1,0,34,0,2,0,1,1,-9,0,2,8.4336281,8.2318382,0,7,-6,82.37149,0,2,2,2019,11,1,40,35,1,1,0,12.675672,12.675672,0,0,0,0,0,1,1,0,0,0,46.91,51.8,57.33,53.46,8.333333333333334,1,1,0,0,6,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 -3735,4627,8249,-9,8248,8247,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.7341,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 -3735,4627,8250,-9,8248,8247,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.60199,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,4,0,807.75,605806.13,369150.94,177172.95,38538.16,2473.5215 -3736,4628,8251,8253,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.4333067,8.3334608,0,9,-6,28.785398,0,-9,-9,2019,7,0,48,43,1,0,0,11.742449,11.742449,0,0,0,0,7,1,1,0,3.5420825,0,52.38,47.57,57.33,53.46,6.666666666666667,1,1,0,0,10,5,3,1,435.33334,-91869.266,0,0,0,1865.7251 -3736,4628,8252,-9,8253,8251,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1038.5157,-9,2,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.66,56.94,-9,-9,10,1,1,0,0,10,5,3,1,435.33334,-91869.266,0,0,0,1865.7251 -3736,4628,8253,8251,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,0,0,0,20,6,45.4631,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,52.38,47.57,8.333333333333334,1,1,0,0,0,5,3,1,435.33334,-91869.266,0,0,0,1865.7251 -3736,4629,8254,-9,8253,8251,1,0,24,0,1,0,2,2,-9,0,4,7.7945819,7.9057574,0,0,0,-975.58118,-9,2,2,2019,8,0,40,0,1,0,1,7.2663064,7.2663064,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,5,3,1,662,311707,-36910.883,0,0,1667.1252 -3737,4630,8255,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-926.69208,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,39.78,26.65,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,706,-39915.379,0,0,0,1409.5739 -3738,4631,8256,8258,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,7.2133102,7.0035195,0,8,-10,6.649982,0,2,2,2019,7,0,19,0,1,0,0,9.3436604,9.3436604,0,0,0,0,0,1,1,0,0,0,43.61,47.98,49.09,33.36,8.333333333333334,1,1,0,0,7,12,3,1,459,1852209,988487.19,171945.59,0,2479.7769 -3738,4631,8257,-9,8256,8258,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-984.02209,-9,2,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,.96532518,0,31.47,43.76,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,459,1852209,988487.19,171945.59,0,2479.7769 -3738,4631,8258,8256,-9,-9,1,1,58,0,1,0,2,2,-9,0,2,7.7989216,7.9479871,0,8,10,-137.90446,0,2,2,2019,16,5,45,38,1,5,0,6.8562508,6.8562508,0,0,0,0,0,1,1,0,0,0,49.09,33.36,43.61,47.98,5,1,1,0,0,11,12,3,1,459,1852209,988487.19,171945.59,0,2479.7769 -3739,4632,8259,8260,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7246251,7.9161196,0,8,3,48.006664,0,2,2,2019,7,0,35,42,1,0,0,7.1646743,7.1646743,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.33,35.28,8.333333333333334,1,1,0,0,7,2,3,1,843.5,358091.56,171347.41,77526.578,34179.969,1235.2393 -3739,4632,8260,8259,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,23,-3,85.489479,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,5.2828932,0,30.33,35.28,57.16,56.15,3.333333333333333,1,1,0,0,6,2,3,1,843.5,358091.56,171347.41,77526.578,34179.969,1235.2393 -3740,4633,8261,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4369669,8.2002316,0,0,0,-957.53052,0,3,2,2019,9,0,42,42,1,0,0,9.8104858,9.8104858,0,0,0,0,0,1,1,0,0,0,40.58,60.95,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,791,-207846.75,-31102.615,0,0,2766.2402 -3741,4634,8262,8263,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.7149754,8.581831,0,10,0,40.639698,-9,3,2,2019,9,0,40,0,1,1,0,18.249369,18.249369,0,0,0,0,0,1,1,0,0,0,51,56,54.2,57.49,7,1,1,0,0,1,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 -3741,4634,8263,8262,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,6.844985,6.7368793,0,10,0,-30.354719,0,2,3,2019,8,0,18,18,1,0,0,8.52526,8.52526,0,0,0,0,0,1,1,0,6.8760557,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,9,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 -3741,4634,8264,-9,8263,8262,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.1127,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 -3741,4634,8265,-9,8263,8262,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.17297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,0,783.25,87010.719,69722.305,124380.66,69369.219,3194.1724 -3742,4635,8266,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1391487,7.9165068,0,0,0,-1039.2864,0,3,-9,2019,8,0,40,40,1,0,0,9.9789658,9.9789658,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,1.666666666666667,1,1,0,0,4,5,4,0,3087,-72870.859,66430.992,0,0,1437.3124 -3743,4636,8267,8268,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,53,-6,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,6.0114956,0,0,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,13,1,1,158,67199.18,11315.079,0,0,1239.0085 -3743,4636,8268,8267,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,53,6,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,1.4868158,5.4540439,24.317348,0,1,1,0,0,0,54,46,51,46,8,1,1,0,0,0,13,1,1,158,67199.18,11315.079,0,0,1239.0085 -3744,4637,8269,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.5473099,7.3830357,0,0,0,-977.83307,0,2,2,2019,12,0,30,10,1,0,0,5.0351539,5.0351539,0,0,0,0,0,0,0,0,.35572326,0,50.37,52.72,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,1310,108409.13,70347.805,0,0,881.15839 -3745,4638,8270,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.1629963,8.0775347,0,0,0,-1085.4613,0,3,2,2019,24,9,37,39,1,9,0,11.391786,11.391786,0,0,0,0,0,1,1,0,0,0,38.04,58.33,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,383,49783.641,-14274.234,113953.48,-7990.8687,1368.6833 -3745,4638,8271,-9,8270,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.51556,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,3,1,383,49783.641,-14274.234,113953.48,-7990.8687,1368.6833 -3746,4639,8272,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-838.20831,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,8.2554064,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,1,90,-157419.67,0,0,0,515.11487 -3747,4640,8273,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.0516052,7.0370936,0,0,-925.02362,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2288542,7.1595216,44.46,41.84,-9,-9,1.666666666666667,1,1,0,0,1,13,3,1,974,932816.06,279294.44,250237.98,0,889.64819 -3748,4641,8274,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.317358,6.560523,0,0,-951.21307,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,2.0667937,0,29.205927,0,1,1,0,4.5516992,6.1368055,54.78,13.18,-9,-9,10,1,1,0,0,0,6,2,1,165,1063451.1,0,346378.63,0,1428.9354 -3749,4642,8275,8276,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.1252823,8.2895536,0,18,-7,-9.7238607,0,1,3,2019,13,2,40,34,1,2,0,11.196615,11.196615,0,0,0,0,0,1,1,0,4.7631378,0,49.65,44.4,51.95,50.34,8.333333333333334,1,1,0,0,9,5,5,1,555.5,478104.94,411038.69,262840.34,46516.613,3422.9666 -3749,4642,8276,8275,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,8.8374405,8.7776337,0,18,7,-18.582382,0,2,2,2019,13,1,50,20,1,1,0,14.468239,14.468239,0,0,0,0,0,1,1,0,4.4726992,0,51.95,50.34,49.65,44.4,8.333333333333334,1,1,0,0,9,5,5,1,555.5,478104.94,411038.69,262840.34,46516.613,3422.9666 -3750,4643,8277,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.5910654,8.5821619,0,0,0,-1010.7617,0,2,2,2019,4,0,37,37,1,0,0,18.842241,18.842241,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,283,-452096.5,72331.914,145470.92,134021.14,1690.913 -3751,4644,8278,8279,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,13,6,64.448151,0,3,2,2019,26,9,0,0,4,9,0,0,0,1,0,66.87159,0,0,1,1,0,0,0,8.140000000000001,38.56,54.43,48.21,0,1,1,0,0,4,4,2,0,2073,42373.75,142017.97,137800.92,0,1380.1938 -3751,4644,8279,8278,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,5.9959617,6.0132751,14,-6,-151.95909,0,2,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,6.1560168,5.8611841,54.43,48.21,8.140000000000001,38.56,8.333333333333334,1,1,1,0,6,4,2,0,2073,42373.75,142017.97,137800.92,0,1380.1938 -3752,4645,8280,8281,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.1846848,8.3618879,0,3,-3,27.962149,0,-9,-9,2019,19,7,43,35,1,7,0,11.441608,11.441608,0,0,0,0,0,0,0,0,0,0,33.67,63.26,43.03,53.23,8.333333333333334,1,1,0,0,4,7,5,1,721.5,132664.86,59610.246,267382.31,54276.969,3821.271 -3752,4645,8281,8280,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.8340759,8.9396448,0,3,3,17.484102,0,2,2,2019,10,0,48,50,1,0,0,18.140295,18.140295,0,0,0,0,0,0,0,0,0,0,43.03,53.23,33.67,63.26,6.666666666666667,1,1,0,0,9,7,5,1,721.5,132664.86,59610.246,267382.31,54276.969,3821.271 -3753,4646,8282,-9,8283,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.22662,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,1641,-317909.13,0,0,0,1024.0825 -3753,4646,8283,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.1540117,6.9038219,0,0,0,-990.49072,0,-9,-9,2019,6,0,15,20,1,0,0,6.4726405,6.4726405,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,1,8,2,2,0,1641,-317909.13,0,0,0,1024.0825 -3754,4647,8284,8285,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,5.9672284,5.790904,8,0,114.29358,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0163794,60.53,48.35,54.37,54.8,10,1,1,0,0,9,7,2,0,267,176050.77,95019.961,0,0,1381.9554 -3754,4647,8285,8284,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.1621189,4.1349478,8,0,-64.016823,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.391047,3.9852431,54.37,54.8,60.53,48.35,8.333333333333334,1,1,0,0,0,7,2,0,267,176050.77,95019.961,0,0,1381.9554 -3755,4648,8286,8287,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.9600616,4.8787036,51,2,144.11067,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3746276,5.0867529,55.51,29.97,57.92,51.82,8.333333333333334,1,1,0,0,4,2,2,1,2136,244932.59,15074.975,41199.758,0,1060.2133 -3755,4648,8287,8286,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.9898872,5.0401688,53,-2,37.818401,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8573208,4.8860121,57.92,51.82,55.51,29.97,10,1,1,0,0,4,2,2,1,2136,244932.59,15074.975,41199.758,0,1060.2133 -3756,4649,8288,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7206955,6.6448202,0,0,-910.25037,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0107746,6.8260007,52.77,44.6,-9,-9,8.333333333333334,1,1,0,0,11,8,2,1,929,823386.06,0,571957.63,0,241.71811 -3757,4650,8289,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.2382569,5.1178489,0,0,-836.19006,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0662217,41.92,34.32,-9,-9,6.666666666666667,1,1,0,0,8,2,2,1,712,667098.5,0,163368.81,0,361.37781 -3758,4651,8290,8291,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.0970631,9.0441914,0,13,0,16.262268,0,2,1,2019,11,1,55,50,1,1,0,20.073708,20.073708,0,0,0,0,0,0,0,0,0,0,43.03,53.23,50.03,52.62,5,1,1,0,0,9,7,5,1,924.33331,427253.78,-3018.1067,255367.16,0,4043.6047 -3758,4651,8291,8290,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,7.6592622,7.8355212,0,13,0,13.987572,0,2,3,2019,15,3,15,0,1,3,0,17.092426,17.092426,0,0,0,0,0,0,0,0,0,0,50.03,52.62,43.03,53.23,6.666666666666667,1,1,0,0,9,7,5,1,924.33331,427253.78,-3018.1067,255367.16,0,4043.6047 -3758,4651,8292,-9,8291,8290,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.6805,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,924.33331,427253.78,-3018.1067,255367.16,0,4043.6047 -3759,4652,8293,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.4596128,8.3090334,0,0,0,-1027.5101,0,2,2,2019,8,0,37,37,1,0,0,13.026812,13.026812,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1325,-221920.72,145983.14,0,0,1473.6339 -3760,4653,8294,8297,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.9879522,8.1839571,0,9,2,30.542656,0,2,2,2019,6,0,39,39,1,0,0,10.606425,10.606425,0,0,0,0,0,1,1,0,0,0,47.32,52.7,51.41,56.15,8.333333333333334,1,1,0,0,8,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 -3760,4653,8295,-9,8297,8294,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.1875,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 -3760,4653,8296,-9,8297,8294,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.09851,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 -3760,4653,8297,8294,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,9,-2,-94.206978,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.78240144,0,51.41,56.15,47.32,52.7,5,1,1,0,0,3,9,3,0,632.75,63363.129,-3305.2095,163613.94,131865.36,2160.6563 -3761,4654,8298,8301,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.9668512,8.3056049,0,15,2,10.621572,0,2,2,2019,8,0,25,25,1,0,0,19.528244,19.528244,0,0,0,0,0,1,1,0,0,0,48.28,60.18,54.96,53.17,8.333333333333334,2,3,0,0,6,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 -3761,4654,8299,-9,8298,8301,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.86096,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 -3761,4654,8300,-9,8298,8301,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.2631,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 -3761,4654,8301,8298,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.4102058,8.5315113,0,15,-2,-1.5686201,0,2,2,2019,9,0,35,35,1,0,0,20.429144,20.429144,0,0,0,0,0,1,1,0,2.1791558,0,54.96,53.17,48.28,60.18,8.333333333333334,2,3,0,0,10,8,4,1,571.75,227472.09,91787.789,568463.94,191778.8,3483.0852 -3762,4655,8302,8305,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.479682,8.3231163,0,19,5,51.247856,0,-9,-9,2019,9,0,40,40,1,1,0,10.734158,10.734158,0,0,0,0,0,1,1,0,0,0,52,55,51.49,57.57,8,1,1,0,0,1,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 -3762,4655,8303,-9,8305,8302,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1013.9116,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 -3762,4655,8304,-9,8305,8302,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-901.59003,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 -3762,4655,8305,8302,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,7.3114781,7.0263162,0,19,-5,69.888443,0,2,2,2019,13,1,26,29,1,1,0,7.4952812,7.4952812,0,0,0,0,0,1,1,0,0,0,51.49,57.57,52,55,6.666666666666667,1,1,0,0,11,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 -3762,4655,8306,-9,8305,8302,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-954.14191,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,1127.8,-66948.477,-14800.924,0,0,2435.251 -3763,4656,8307,8308,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.9536748,7.9649768,41,7,12.683463,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.3422146,8.1078262,57.16,56.15,39.33,58.88,8.333333333333334,1,1,0,0,10,12,4,1,450,1772566.3,1233361.3,237564.98,0,2701.0447 -3763,4656,8308,8307,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.3300552,7.7561822,0,40,-7,-23.051292,0,2,2,2019,9,0,26,24,1,0,0,9.9461279,9.9461279,0,0,0,0,27,0,0,0,4.9659286,0,39.33,58.88,57.16,56.15,1.666666666666667,1,1,0,0,11,12,4,1,450,1772566.3,1233361.3,237564.98,0,2701.0447 -3764,4657,8309,8310,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,51,-4,60.815872,0,2,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,51.8,44.35,7,1,1,0,0,0,12,3,1,591.5,109014.46,91539.297,0,0,3571.7412 -3764,4657,8310,8309,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.0129194,7.8826141,51,4,70.691322,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.4741039,8.3342733,51.8,44.35,51,46,8.333333333333334,1,1,0,0,9,12,3,1,591.5,109014.46,91539.297,0,0,3571.7412 -3765,4658,8311,-9,8315,8313,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-931.79913,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,3,1,491,-23613.555,10396.779,0,0,2889.458 -3765,4658,8312,-9,8315,8313,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.6377,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,491,-23613.555,10396.779,0,0,2889.458 -3765,4658,8313,8315,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.6921711,8.7961216,0,20,5,-26.16312,0,-9,-9,2019,9,0,38,40,1,1,0,16.53363,16.53363,0,0,0,0,0,1,1,0,0,0,52,55,51.83,57.2,8,1,1,0,0,1,9,3,1,491,-23613.555,10396.779,0,0,2889.458 -3765,4658,8314,-9,8315,8313,1,0,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1034.6797,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,491,-23613.555,10396.779,0,0,2889.458 -3765,4658,8315,8313,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,7.3224607,7.1092777,0,20,-5,75.180283,0,2,2,2019,12,0,26,26,1,0,0,6.4273057,6.4273057,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52,55,6.666666666666667,1,1,0,0,12,9,3,1,491,-23613.555,10396.779,0,0,2889.458 -3766,4659,8316,8317,-9,-9,1,0,50,0,1,0,2,2,-9,1,1,0,5.802146,5.7247348,12,-1,-26.740686,0,2,2,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,6.2423434,0,38.65,17.4,56.83,38.89,0,1,1,0,1,0,12,4,0,869,85747.719,251270.97,0,0,2852.9875 -3766,4659,8317,8316,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.6163692,8.7614069,0,12,1,22.226538,0,2,2,2019,8,0,40,43,1,0,0,15.450632,15.450632,0,0,0,0,27,1,1,0,0,0,56.83,38.89,38.65,17.4,5,1,1,0,1,11,12,4,0,869,85747.719,251270.97,0,0,2852.9875 -3767,4660,8318,8319,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.7537746,8.9886589,0,10,1,-38.37883,0,-9,-9,2019,4,0,41,41,1,0,0,19.867252,19.867252,0,0,0,0,0,0,0,0,2.7185414,0,54.1,59.11,57.06,57.76,10,1,1,0,0,11,6,5,1,169.5,272834.53,135681.02,290630.13,245433.19,4517.2271 -3767,4660,8319,8318,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.8577166,8.5115099,0,10,-1,37.481594,0,2,2,2019,8,0,47,47,1,0,0,12.812127,12.812127,0,0,0,0,0,0,0,0,1.4188329,0,57.06,57.76,54.1,59.11,1.666666666666667,1,1,0,0,11,6,5,1,169.5,272834.53,135681.02,290630.13,245433.19,4517.2271 -3767,4661,8320,-9,8319,8318,1,1,22,0,0,0,2,2,0,0,3,0,6.677639,6.924324,0,0,-1008.1357,-9,1,2,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,6.3913164,0,51.66,54.88,-9,-9,5,1,1,0,0,4,6,2,1,228,-49850.316,0,0,0,1043.9108 -3768,4662,8321,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.6622891,7.621202,0,0,0,-1018.6524,0,-9,-9,2019,11,0,32,34,1,0,0,6.3014765,6.3014765,0,0,0,0,0,0,0,0,0,0,44.82,40,-9,-9,1.666666666666667,1,1,0,0,12,13,3,0,493,135634.23,335319.38,89651.398,0,875.70441 -3769,4663,8322,8323,-9,-9,1,0,64,0,1,0,2,2,-9,0,4,0,5.0697865,4.926713,9,-5,47.40295,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.2675118,4.9880023,52,52,45.72,55.84,8.333333333333334,1,1,0,0,0,11,3,1,908.5,724506.5,475645.56,170986.41,0,1794.2542 -3769,4663,8323,8322,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,7.9484863,7.4281492,9,5,-105.47905,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0563598,8.1359816,45.72,55.84,52,52,8.333333333333334,1,1,0,0,1,11,3,1,908.5,724506.5,475645.56,170986.41,0,1794.2542 -3769,4664,8324,-9,8322,8323,1,1,41,0,1,0,3,3,-9,0,3,8.0674973,8.3885546,5.9972224,0,0,-974.34564,0,2,1,2019,6,0,40,40,1,0,0,8.0036459,8.0036459,0,0,0,0,0,1,1,0,5.475359,0,57.33,53.46,-9,-9,5,1,1,0,0,9,11,4,1,115.5,64242.016,57890.871,114469.13,32978.867,1323.6777 -3769,4664,8325,-9,-9,8324,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.0978,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,115.5,64242.016,57890.871,114469.13,32978.867,1323.6777 -3770,4665,8326,8327,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,5.1067281,4.8679304,61,1,-145.1256,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,17.373903,0,71.5,1,1,0,.30084062,5.0075855,63.97,22.51,53,44,3.333333333333333,1,1,0,0,0,8,2,0,396,289143.19,26327.297,157284.63,0,1340.533 -3770,4665,8327,8326,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,4,-1,-4.5672259,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,2.7965686,0,0,1,1,0,0,0,53,44,63.97,22.51,8,1,1,0,0,0,8,2,0,396,289143.19,26327.297,157284.63,0,1340.533 -3771,4666,8328,8329,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,9.219101,9.1045446,0,4,-5,-.69879878,0,-9,-9,2019,3,0,45,35,1,0,0,27.802401,27.802401,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.39,56.71,10,1,1,0,0,7,12,5,1,1899.5,681174.06,306970.88,391396.81,0,9430.3535 -3771,4666,8329,8328,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.4366312,8.5618248,6.8750815,4,5,31.35424,0,-9,-9,2019,6,0,50,37,1,0,0,15.215569,15.215569,0,0,0,0,0,0,0,0,8.5115185,0,62.39,56.71,57.06,57.76,8.333333333333334,1,1,0,0,4,12,5,1,1899.5,681174.06,306970.88,391396.81,0,9430.3535 -3772,4667,8330,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.3446198,8.2312403,0,0,0,-924.38391,0,2,1,2019,12,3,15,20,1,3,0,33.144131,33.144131,0,0,0,0,2,1,1,0,4.6041932,0,47.95,56.13,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,319,410729.47,322285.72,250604.19,112947.64,1858.1177 -3773,4668,8331,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,8.4769335,8.5039692,0,0,0,-816.69769,0,2,2,2019,6,0,37,38,1,0,0,20.874109,20.874109,0,0,0,0,0,1,1,0,2.2953038,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,5,5,1,471,35903.551,84961.836,177277.36,113430.92,2179.9875 -3774,4669,8332,8333,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5103283,8.446373,0,2,-3,90.566612,-9,-9,-9,2019,18,8,35,0,1,8,0,14.743873,14.743873,0,0,0,0,0,0,0,0,0,0,30.53,65.61,51.67,60.18,8.333333333333334,4,2,0,0,4,9,5,1,677,-178490.41,47594.098,263222.63,198353.34,3566.0625 -3774,4669,8333,8332,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.6962032,8.462945,0,2,3,52.77499,0,2,2,2019,10,0,38,37,1,0,0,12.911431,12.911431,0,0,0,0,0,0,0,0,3.67222,0,51.67,60.18,30.53,65.61,8.333333333333334,1,1,0,0,6,9,5,1,677,-178490.41,47594.098,263222.63,198353.34,3566.0625 -3775,4670,8334,8335,-9,-9,1,0,38,0,0,0,3,3,-9,0,3,7.5022712,7.9099121,0,5,-7,62.379169,0,-9,-9,2019,6,0,40,42,1,0,0,6.0649662,6.0649662,0,0,0,0,0,0,0,0,0,0,59.7,53.75,57.16,56.15,10,2,3,0,0,6,12,3,1,955,96775.625,-76338.375,75568.656,34236.57,1843.3175 -3775,4670,8335,8334,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,7.3718796,7.3094463,0,5,7,-53.193512,0,2,2,2019,7,0,50,70,1,0,0,3.8514376,3.8514376,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.7,53.75,8.333333333333334,2,3,0,0,5,12,3,1,955,96775.625,-76338.375,75568.656,34236.57,1843.3175 -3776,4671,8336,8337,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,54,-4,-26.055695,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.890883,0,59.71,50.89,57.33,53.46,10,1,1,0,0,0,10,3,1,376.5,198745.59,122133.94,33701.992,0,1870.9641 -3776,4671,8337,8336,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.719142,7.2118979,54,4,-1.8014261,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4737368,7.7145247,57.33,53.46,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,376.5,198745.59,122133.94,33701.992,0,1870.9641 -3777,4672,8338,8339,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-1,34.989071,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,59.15,49.67,8.333333333333334,1,1,0,0,4,12,3,1,333.5,1589400.4,1263232,245980.83,0,2456.5325 -3777,4672,8339,8338,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0008001,8.1503773,9,1,49.062695,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.078722,59.15,49.67,61.28,46.17,8.333333333333334,1,1,0,0,10,12,3,1,333.5,1589400.4,1263232,245980.83,0,2456.5325 -3778,4673,8340,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-927.49091,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,7,1,1,0,0,0,13,1,1,665,-54549.902,0,0,0,1919.8192 -3779,4674,8341,8345,-9,-9,1,0,39,2,3,0,1,1,-9,0,3,0,0,0,13,3,-14.20405,-9,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,40.13,49.25,60.3,46.58,8.333333333333334,3,4,0,0,1,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 -3779,4674,8342,-9,8341,8345,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-931.79755,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 -3779,4674,8343,-9,8341,8345,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-916.93945,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 -3779,4674,8344,-9,8341,8345,1,1,7,2,3,1,3,0,-9,0,4,0,0,0,0,0,-983.31683,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 -3779,4674,8345,8341,-9,-9,1,1,36,2,3,0,2,2,-9,0,3,8.3027678,8.0277777,0,13,-3,-16.042408,-9,2,2,2019,0,0,20,0,1,0,0,20.743471,20.743471,0,0,0,0,0,0,0,0,0,0,60.3,46.58,40.13,49.25,6.666666666666667,3,4,0,0,5,7,3,0,549.40002,-127193.14,9562.4834,0,0,1187.0138 -3780,4675,8346,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,7.6836581,7.7968802,0,0,0,-975.46881,0,3,2,2019,10,0,39,37,1,0,0,8.0031805,8.0031805,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,137,-106047.91,-4736.6504,179466.44,0,879.24072 -3781,4676,8347,-9,8348,8349,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.9081,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 -3781,4676,8348,8349,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.1724367,8.0709648,0,9,3,-5.4122663,0,1,2,2019,10,2,22,22,1,2,0,15.110826,15.110826,0,0,0,0,0,0,0,0,.55861682,0,48.83,43.55,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 -3781,4676,8349,8348,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.5995808,9.4816732,0,9,-3,-83.24279,0,2,3,2019,7,0,46,46,1,0,0,34.076015,34.076015,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.83,43.55,8.333333333333334,1,1,0,0,12,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 -3781,4676,8350,-9,8348,8349,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.3385,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,602.5,557455.13,141150.72,617773.38,139765.38,5689.2046 -3782,4677,8351,8353,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,5.3908467,5.2127728,0,6,-10,57.655407,0,2,1,2019,14,3,35,35,1,3,0,.56176072,.56176072,0,0,0,0,0,1,1,0,0,0,39.21,40.06,52,54.51,8.333333333333334,1,1,0,0,9,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 -3782,4677,8352,-9,8351,8353,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9902,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 -3782,4677,8353,8351,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,9.1997766,9.3686476,0,6,10,138.23988,0,1,2,2019,12,1,52,52,1,1,0,16.547533,16.547533,0,0,0,0,0,1,1,0,0,0,52,54.51,39.21,40.06,8.333333333333334,1,1,0,0,11,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 -3782,4677,8354,-9,8351,8353,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.217,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1404.25,-95837.273,21604.402,82719.5,88266.531,2642.2395 -3783,4678,8355,8356,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.5187974,6.4245996,10,1,-26.497629,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9166398,6.1286507,57.16,56.15,52.97,48.43,10,1,1,0,0,6,1,2,1,889.5,905500.63,741517.5,168876.3,0,3039.2578 -3783,4678,8356,8355,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.7014103,5.0368862,10,-1,-176.43623,0,-9,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.6054313,5.1004782,52.97,48.43,57.16,56.15,8.333333333333334,1,1,0,0,6,1,2,1,889.5,905500.63,741517.5,168876.3,0,3039.2578 -3784,4679,8357,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,4.5309434,4.6259351,0,0,-921.67316,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7224317,4.4900103,46.94,59.6,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,1302,49779.93,54960.363,236144.88,0,680.45752 -3785,4680,8358,8359,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,8.1059504,7.6741338,0,10,-13,-78.990463,0,3,3,2019,7,0,39,39,1,0,0,7.9867301,7.9867301,0,0,0,0,0,1,1,0,0,0,60.57,46.44,59.27,44.84,6.666666666666667,1,1,0,0,11,12,3,1,826,482437.5,260607.17,273760.31,0,1489.1927 -3785,4680,8359,8358,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,10,13,-22.921804,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.27,44.84,60.57,46.44,8.333333333333334,1,1,0,0,0,12,3,1,826,482437.5,260607.17,273760.31,0,1489.1927 -3786,4681,8360,8361,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,1,-3,8.6099339,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,52.77,55.33,8.333333333333334,1,1,0,0,0,4,3,0,574,-25938.945,38658.496,0,0,1039.3434 -3786,4681,8361,8360,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4171915,8.4242439,0,1,3,38.998398,-9,-9,-9,2019,12,1,73,0,1,1,0,5.4662261,5.4662261,0,0,0,0,0,0,0,0,0,0,52.77,55.33,52.23,55.6,6.666666666666667,1,1,0,0,3,4,3,0,574,-25938.945,38658.496,0,0,1039.3434 -3787,4682,8362,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.1541433,8.8407106,7.6330767,0,0,-988.37048,0,1,1,2019,8,0,19,19,1,0,0,22.107664,22.107664,0,0,0,0,0,0,0,0,0,7.6603012,49.65,51.28,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,364,823450.63,50285.422,220833.42,0,2166.9436 -3788,4683,8363,-9,-9,-9,1,1,19,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1010.8149,0,3,-9,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,183,-55588.988,0,0,0,0 -3788,4684,8364,-9,8365,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.9198,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,2115,-90201.914,0,0,0,652.54041 -3788,4684,8365,-9,-9,-9,1,0,24,0,1,0,3,3,-9,0,2,0,0,0,0,0,-998.99396,-9,3,-9,2019,16,0,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,28.66,52.2,-9,-9,5,1,1,1,0,0,13,1,0,2115,-90201.914,0,0,0,652.54041 -3789,4685,8366,8370,-9,-9,1,1,43,1,5,0,2,2,-9,0,3,0,0,0,5,16,0,0,-9,-9,2019,5,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,45.2,48.44,10,3,4,1,0,5,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 -3789,4685,8367,-9,8370,8366,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1001.6586,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 -3789,4685,8368,-9,8370,8366,1,0,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-913.42743,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 -3789,4685,8369,-9,8370,8366,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-872.20801,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 -3789,4685,8370,8366,-9,-9,1,0,27,1,5,0,3,3,-9,0,3,0,0,0,5,-16,0,0,3,3,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,45.2,48.44,52,54.51,8.333333333333334,3,4,0,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 -3789,4685,8371,-9,8370,8366,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-949.57611,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 -3789,4685,8372,-9,8370,8366,1,0,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1032.0652,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,1,0,685.71429,-14176.084,0,0,0,2864.7432 -3790,4686,8373,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.8703871,7.8972731,0,0,-1004.5331,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.3730797,7.2500658,60.89,42.24,-9,-9,10,1,1,0,0,0,4,3,0,758,631974.56,133790.44,363310.69,0,1806.6765 -3791,4687,8374,8375,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.7197342,8.7319813,0,2,3,42.991238,-9,-9,-9,2019,11,0,45,0,1,0,0,12.914812,12.914812,0,0,0,0,0,0,0,0,2.7157819,0,52,54.51,41.17,59.31,5,1,1,0,0,10,1,5,1,1248,274112.72,164847.45,116783.16,81951.25,3654.4963 -3791,4687,8375,8374,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4256124,8.1542006,0,2,-3,-60.519741,0,-9,-9,2019,16,5,39,46,1,5,0,10.607945,10.607945,0,0,0,0,71.5,0,0,0,0,0,41.17,59.31,52,54.51,8.333333333333334,1,1,0,0,8,1,5,1,1248,274112.72,164847.45,116783.16,81951.25,3654.4963 -3792,4688,8376,8377,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,9.3194818,9.5187216,0,13,4,-66.829079,0,-9,-9,2019,10,0,42,40,1,0,0,34.942131,34.942131,0,0,0,0,0,0,0,0,0,0,43.51,55.11,50.54,62.09,6.666666666666667,2,3,0,0,9,8,5,1,870,436393.72,-65074.512,491546.81,33912.133,4083.873 -3792,4688,8377,8376,-9,-9,1,0,35,0,1,0,1,1,0,0,5,0,5.2122259,5.3064857,13,-4,-52.610294,-9,1,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,5.5107422,0,50.54,62.09,43.51,55.11,8.333333333333334,2,3,0,0,4,8,5,1,870,436393.72,-65074.512,491546.81,33912.133,4083.873 -3792,4688,8378,-9,8377,8376,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-852.08795,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,870,436393.72,-65074.512,491546.81,33912.133,4083.873 -3793,4689,8379,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,2,8.6940136,8.6669054,0,0,0,-1003.9031,0,1,-9,2019,19,7,35,35,1,7,0,15.954502,15.954502,0,0,0,0,14.5,1,1,0,0,0,24.66,39.05,-9,-9,0,1,1,0,0,9,9,5,0,318,-325085.63,-27717.936,0,0,2180.4402 -3794,4690,8380,8381,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.746665,6.7189851,2,5,-67.279297,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.1449738,6.6816182,64.98,27.13,59.91,42.65,6.666666666666667,1,1,0,0,9,5,3,1,402.5,438337.75,74107.438,185653.27,0,2431.1602 -3794,4690,8381,8380,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7129598,7.8598733,0,2,-5,4.6340814,0,3,3,2019,7,0,33,38,1,0,0,7.881669,7.881669,0,0,0,0,0,1,1,0,0,0,59.91,42.65,64.98,27.13,8.333333333333334,1,1,0,0,9,5,3,1,402.5,438337.75,74107.438,185653.27,0,2431.1602 -3795,4691,8382,8383,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.4594193,8.6058674,0,26,-6,20.158903,0,-9,-9,2019,8,0,65,66,1,0,0,10.109187,10.109187,0,0,0,0,0,1,1,0,3.0566778,0,48.87,58.55,38.26,60.7,8.333333333333334,1,1,0,0,11,7,5,1,1783.5,2121015.8,1713670,162984.23,0,4581.9775 -3795,4691,8383,8382,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.687047,8.5995655,5.4935451,26,6,25.649027,0,2,2,2019,25,11,55,55,1,11,0,11.006113,11.006113,0,0,0,0,0,1,1,0,5.0082288,5.6177964,38.26,60.7,48.87,58.55,6.666666666666667,1,1,0,0,11,7,5,1,1783.5,2121015.8,1713670,162984.23,0,4581.9775 -3795,4692,8384,-9,8382,8383,1,1,20,0,0,1,2,0,0,0,3,0,6.1367693,6.0157595,0,0,-891.54181,-9,1,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.3889933,0,50.63,50.99,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,230,416070.22,0,0,0,-58.096924 -3795,4693,8385,-9,8382,8383,1,0,20,0,0,1,2,0,0,0,5,0,6.2725539,6.2089691,0,0,-873.99579,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.6152859,0,54.1,59.11,-9,-9,10,1,1,0,0,2,7,2,1,6126,-42351.973,-57152.617,0,0,24.653521 -3796,4694,8386,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,5.7484169,5.322721,0,0,-967.67657,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.8441467,0,0,1,1,0,0,5.3955903,53,44,-9,-9,8,1,1,0,0,0,6,2,1,1283,106231.63,141730.59,248269.05,0,575.40326 -3797,4695,8387,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,3.7322145,3.744905,0,0,-1084.8108,-9,2,2,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.8004818,0,52.48,55.6,-9,-9,10,1,1,0,0,2,2,2,0,291,113132.92,0,0,0,208.73203 -3798,4696,8388,8389,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,63,3,0,0,3,3,2019,27,10,0,0,4,10,0,0,0,1,0,27.829777,0,0,1,1,0,0,0,23.2,24.82,28.79,34.48,0,4,2,0,0,0,6,2,1,351,329062.5,0,135323.88,0,1370.9149 -3798,4696,8389,8388,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,0,0,9,-3,0,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,26.308073,0,2,1,1,0,0,0,28.79,34.48,23.2,24.82,6.666666666666667,3,4,0,0,0,6,2,1,351,329062.5,0,135323.88,0,1370.9149 -3799,4697,8390,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.5194883,7.2845292,0,0,-1030.8928,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5222721,7.1017213,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,222,194150.05,140507.94,234662.36,0,1636.1139 -3800,4698,8391,8392,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,0,0,10,8,0,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,51.52,30.38,10,1,1,0,0,3,9,1,1,784.5,485261.81,0,475925.88,0,1418.7632 -3800,4698,8392,8391,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,10,-8,0,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.52,30.38,60.12,54.8,8.333333333333334,1,1,0,1,0,9,1,1,784.5,485261.81,0,475925.88,0,1418.7632 -3801,4699,8393,8394,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,49,-3,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.5,20.97,36.51,46.1,3.333333333333333,1,1,0,0,0,13,2,1,681.5,193586.3,37567.641,0,0,1392.8386 -3801,4699,8394,8393,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,49,3,0,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.51,46.1,31.5,20.97,6.666666666666667,1,1,0,0,8,13,2,1,681.5,193586.3,37567.641,0,0,1392.8386 -3802,4700,8395,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1159.0366,0,2,1,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,36.03,40.6,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,771,-53865.063,-13775.404,97095.828,15146.408,-204.9568 -3803,4701,8396,8397,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,5.0755968,4.913825,0,54,-6,44.477848,0,-9,-9,2019,6,0,11,11,1,0,0,1.4118658,1.4118658,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,4,2,1,188.5,237463.33,0,106895.68,0,479.31851 -3803,4701,8397,8396,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,4.352993,4.2807221,54,6,90.568245,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8725491,4.8296885,57.16,56.15,57.16,56.15,10,1,1,0,0,0,4,2,1,188.5,237463.33,0,106895.68,0,479.31851 -3804,4702,8398,8399,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,6.0208173,6.1899867,49,0,-11.363924,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.45801145,5.9531794,50.54,62.09,51,47,10,1,1,0,0,0,6,3,1,1058,922370.38,440924.75,174710.3,0,3518.2368 -3804,4702,8399,8398,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.3721595,7.453763,9,0,-125.46202,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.144474,7.8326631,51,47,50.54,62.09,7,1,1,0,0,0,6,3,1,1058,922370.38,440924.75,174710.3,0,3518.2368 -3805,4703,8400,-9,8402,8401,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-949.56549,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,1,0,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 -3805,4703,8401,8402,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,9.5688515,9.6721792,0,27,-2,-103.31734,0,2,2,2019,15,3,47,47,1,3,0,36.543667,36.543667,0,0,0,0,0,0,0,0,0,0,42.75,61.95,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 -3805,4703,8402,8401,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,0,0,0,27,2,252.65775,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.75,61.95,8.333333333333334,1,1,0,0,2,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 -3805,4703,8403,-9,8402,8401,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.82574,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,521.75,905739.63,386002.47,205787.28,48889.586,4902.1992 -3805,4704,8404,-9,8402,8401,1,1,19,0,2,0,2,2,-9,0,1,0,0,0,0,0,-1078.6895,0,2,2,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,44.32,33.49,-9,-9,1.666666666666667,1,1,1,0,0,9,1,1,363,-293653.78,0,0,0,0 -3806,4705,8405,-9,8406,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.4951,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,323.66666,-30254.398,0,0,0,1089.2737 -3806,4705,8406,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,3,7.0782561,6.9737859,0,0,0,-1108.7223,-9,2,1,2019,21,8,33,0,1,8,0,4.4529696,4.4529696,0,0,0,0,5.48,1,1,0,0,0,42.93,40.8,-9,-9,3.333333333333333,2,3,0,0,3,8,2,0,323.66666,-30254.398,0,0,0,1089.2737 -3806,4705,8407,-9,8406,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.0277,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,323.66666,-30254.398,0,0,0,1089.2737 -3807,4706,8408,-9,8412,8410,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.5045,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 -3807,4706,8409,-9,8412,8410,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.6196,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 -3807,4706,8410,8412,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,8.8915062,9.0417833,0,8,4,-159.70354,0,2,2,2019,11,2,50,45,1,2,0,21.541937,21.541937,0,0,0,0,0,1,1,0,.89234048,0,46.08,57.2,45.07,56.1,8.333333333333334,1,1,0,0,9,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 -3807,4706,8411,-9,8412,8410,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.6642,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 -3807,4706,8412,8410,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,8.3020058,8.6160126,0,8,-4,-106.11647,0,2,2,2019,9,0,40,46,1,0,0,13.981241,13.981241,0,0,0,0,0,1,1,0,7.0638895,0,45.07,56.1,46.08,57.2,1.666666666666667,1,1,0,0,7,10,5,1,685,85853.695,39487.902,230161.45,154346.95,5810.228 -3808,4707,8413,8416,-9,-9,1,1,47,0,3,0,1,1,-9,0,5,9.4739485,9.3910866,0,25,5,14.965064,0,2,2,2019,12,0,38,42,1,0,0,34.710033,34.710033,0,0,0,0,0,0,0,0,0,0,45.81,61.51,47.32,52.7,6.666666666666667,1,1,0,0,11,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 -3808,4707,8414,-9,8416,8413,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.0654,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 -3808,4707,8415,-9,8416,8413,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.92529,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 -3808,4707,8416,8413,-9,-9,1,0,42,0,3,0,1,1,-9,0,3,9.1456394,9.0137033,0,25,-5,-25.289713,0,3,2,2019,8,0,34,32,1,0,0,32.868168,32.868168,0,0,0,0,0,0,0,0,1.4788462,0,47.32,52.7,45.81,61.51,8.333333333333334,1,1,0,0,11,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 -3808,4707,8417,-9,8416,8413,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.9214,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,328,1649231.6,501568.84,913171.13,0,7044.3325 -3809,4708,8418,8419,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.5497379,8.6319094,0,7,-1,93.713829,0,2,2,2019,8,0,38,37,1,0,0,15.491114,15.491114,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,8,11,5,1,546.5,574776.5,499474.06,255882.31,52543.227,3014.061 -3809,4708,8419,8418,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9122763,8.2605038,0,7,1,-108.06885,0,1,2,2019,8,0,32,32,1,0,0,10.290647,10.290647,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,8,11,5,1,546.5,574776.5,499474.06,255882.31,52543.227,3014.061 -3810,4709,8420,8421,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.4685583,8.2905664,0,4,7,-.89389092,0,-9,-9,2019,14,2,37,37,1,2,0,17.11916,17.11916,0,0,0,0,0,0,0,0,2.6762686,0,40.16,54.66,54.2,57.49,8.333333333333334,1,1,0,0,7,4,5,1,3391.5,196458.06,-13592.452,0,0,3579.4868 -3810,4709,8421,8420,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.0913363,7.7013478,0,4,-7,51.260906,0,-9,-9,2019,11,0,40,40,1,0,0,9.828927,9.828927,0,0,0,0,0,0,0,0,3.1476586,0,54.2,57.49,40.16,54.66,8.333333333333334,1,1,0,0,11,4,5,1,3391.5,196458.06,-13592.452,0,0,3579.4868 -3811,4710,8422,8423,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9763966,8.0089979,45,-6,115.55376,0,2,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,74.5,1,1,0,4.2898269,8.4407654,48.85,58.56,55.73,28.46,5,1,1,0,0,0,8,4,1,239,1375100.8,1158760.9,0,0,3608.7778 -3811,4710,8423,8422,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.9383111,7.937089,48,6,14.997351,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,5.9036164,0,0,1,1,0,.43427634,7.7602425,55.73,28.46,48.85,58.56,6.666666666666667,1,1,0,0,0,8,4,1,239,1375100.8,1158760.9,0,0,3608.7778 -3812,4711,8424,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.9698315,8.0158644,0,0,0,-1133.1302,0,-9,-9,2019,13,1,35,36,1,1,0,9.8586092,9.8586092,0,0,0,0,0,0,0,0,1.9897145,0,28.16,65.32000000000001,-9,-9,6.666666666666667,1,1,0,0,3,7,4,0,1390,144936.73,117503.16,0,0,984.92615 -3813,4712,8425,8426,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.2572155,8.7269068,49,-1,-84.098305,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.3410807,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,4,4,1,374.5,1250609.8,1099234.5,116693.66,0,4712.3838 -3813,4712,8426,8425,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,6.6271548,7.8440461,7.4244742,49,1,22.663029,0,1,1,2019,6,0,40,45,1,0,0,2.2397275,2.2397275,0,0,0,0,0,1,1,0,0,7.2780132,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,4,4,1,374.5,1250609.8,1099234.5,116693.66,0,4712.3838 -3814,4713,8427,8428,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.3507318,8.5566568,4.9167647,19,1,21.362707,0,-9,-9,2019,9,0,45,45,1,0,0,10.73588,10.73588,0,0,0,0,0,0,0,0,5.8071074,5.4621391,52.8,47.23,51.26,42.92,8.333333333333334,1,1,0,0,9,4,4,1,582.5,678422.56,146006.75,315609.81,75313.672,2391.1416 -3814,4713,8428,8427,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.8855867,6.9621606,0,19,-1,107.76475,0,3,3,2019,8,1,16,0,1,1,0,7.6015577,7.6015577,0,0,0,0,0,0,0,0,0,0,51.26,42.92,52.8,47.23,10,1,1,0,0,7,4,4,1,582.5,678422.56,146006.75,315609.81,75313.672,2391.1416 -3815,4714,8429,-9,8430,8432,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.6828,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 -3815,4714,8430,8432,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.0391183,7.2197742,0,3,2,27.726578,0,3,3,2019,9,0,15,16,1,0,0,8.5874262,8.5874262,0,0,0,1.8335634,0,1,1,0,0,0,43.42,62.33,45.81,51.79,8.333333333333334,1,1,0,0,8,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 -3815,4714,8431,-9,8430,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.428,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 -3815,4714,8432,8430,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,8.4826937,8.4065619,0,3,-2,36.729698,0,-9,-9,2019,7,0,42,50,1,0,0,12.193478,12.193478,0,0,0,0,0,1,1,0,0,0,45.81,51.79,43.42,62.33,8.333333333333334,1,1,0,0,6,11,4,0,1183.25,-118436.98,18162.848,100384.92,31852.445,2380.8896 -3816,4715,8433,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-999.12738,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,2.958545,0,0,1,1,0,4.1225314,0,22.46,36.07,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,448,-374417.94,0,0,0,2747.8328 -3816,4716,8434,-9,8433,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1005.017,0,3,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,46,208711.19,48292.016,0,0,641.49078 -3817,4717,8435,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,7.881743,7.8631678,0,0,0,-978.82861,0,3,2,2019,12,0,46,40,1,0,0,5.4666119,5.4666119,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,274,594099.31,54061.016,345390.16,-11910.415,1372.2252 -3818,4718,8436,8439,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,6.4938154,6.4373899,0,10,-19,21.609541,0,-9,-9,2019,8,0,3,6,1,0,0,21.236706,21.236706,0,0,0,0,7,1,1,0,0,0,46.67,55.57,53.67,37.78,3.333333333333333,2,3,0,0,5,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 -3818,4718,8437,-9,8436,8439,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.9976,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 -3818,4718,8438,-9,8436,8439,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.72314,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 -3818,4718,8439,8436,-9,-9,1,1,64,0,2,0,2,2,-9,0,2,0,7.6775122,7.7376404,10,19,89.899345,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.0825398,8.0431871,53.67,37.78,46.67,55.57,6.666666666666667,1,1,0,0,7,6,3,1,1027,-192894.44,101415.3,0,0,1746.9596 -3819,4719,8440,-9,8442,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.9491,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,811.66669,39786.66,-5021.4668,0,0,1136.6674 -3819,4719,8441,-9,8442,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.1569,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,811.66669,39786.66,-5021.4668,0,0,1136.6674 -3819,4719,8442,-9,-9,-9,1,0,30,0,2,0,2,2,0,0,3,0,7.0088201,6.9852414,0,0,-943.19916,-9,3,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,7.4619026,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,5,13,2,0,811.66669,39786.66,-5021.4668,0,0,1136.6674 -3820,4720,8443,-9,8445,8444,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.68433,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,664.33331,972376.5,223342.83,517867.63,14158.173,3116.97 -3820,4720,8444,8445,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,7.45541,7.2498083,0,24,-2,-26.861437,0,-9,-9,2019,10,1,14,40,1,1,0,12.557083,12.557083,0,0,0,0,0,1,1,0,0,0,43.93,40.26,36.44,41.5,5,1,1,0,1,5,8,4,1,664.33331,972376.5,223342.83,517867.63,14158.173,3116.97 -3820,4720,8445,8444,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.4912825,8.3743029,5.0213079,24,2,104.28574,0,2,2,2019,17,5,40,60,1,5,0,17.212492,17.212492,0,0,0,0,2,1,1,0,5.2654147,0,36.44,41.5,43.93,40.26,6.666666666666667,1,1,0,1,11,8,4,1,664.33331,972376.5,223342.83,517867.63,14158.173,3116.97 -3821,4721,8446,8447,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,8.2575798,7.8195691,0,8,1,-29.762802,0,2,2,2019,36,12,39,38,1,12,0,9.9366179,9.9366179,0,0,0,0,0,1,1,0,0,0,27.68,33.66,50.61,44.53,6.666666666666667,1,1,0,0,9,1,5,1,1376,788052.44,559796,164257.64,8735.0322,3394.8162 -3821,4721,8447,8446,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,8.8497992,8.8932409,0,8,-1,-26.524313,0,-9,-9,2019,11,0,43,49,1,0,0,14.521006,14.521006,0,0,0,0,2,1,1,0,0,0,50.61,44.53,27.68,33.66,8.333333333333334,1,1,0,0,11,1,5,1,1376,788052.44,559796,164257.64,8735.0322,3394.8162 -3822,4722,8448,-9,8454,8449,1,1,11,1,5,1,3,0,-9,0,4,0,0,0,0,0,-817.64978,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 -3822,4722,8449,8454,-9,-9,1,1,38,1,5,0,2,2,-9,0,4,7.7155619,7.5768838,0,6,10,-41.072105,0,-9,-9,2019,9,0,50,47,1,1,0,5.6184845,5.6184845,0,0,0,0,0,1,0,1,0,0,51,56,47,57,8,1,1,0,0,6,8,2,0,685.28571,119948.83,0,0,0,1816.9048 -3822,4722,8450,-9,8454,8449,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-970.59839,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 -3822,4722,8451,-9,8454,8449,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.3172,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 -3822,4722,8452,-9,8454,8449,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-914.05499,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 -3822,4722,8453,-9,8454,8449,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1123.7782,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 -3822,4722,8454,8449,-9,-9,1,0,28,1,5,0,2,2,-9,0,4,0,0,0,6,-10,-76.45047,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,57,51,56,7,1,1,0,0,0,8,2,0,685.28571,119948.83,0,0,0,1816.9048 -3823,4723,8455,8457,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,7.375217,7.5317292,0,11,2,-92.61985,0,3,3,2019,16,4,20,27,1,4,0,11.715813,11.715813,0,0,0,0,0,1,1,0,.29304463,0,45.42,28.16,44.49,61.79,5,1,1,0,0,6,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 -3823,4723,8456,-9,8455,8457,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1099.8295,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 -3823,4723,8457,8455,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.3837471,8.8385897,0,11,-2,77.576454,0,-9,-9,2019,11,1,43,52,1,1,0,29.573557,29.573557,0,0,0,0,0,1,1,0,.85345441,0,44.49,61.79,45.42,28.16,8.333333333333334,1,1,0,0,12,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 -3823,4723,8458,-9,8455,8457,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.82507,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,3343,1682641.4,1439145.8,348771.97,124403.77,4380.5449 -3823,4724,8459,-9,8455,8457,1,0,19,0,2,0,2,2,1,0,3,7.2081156,7.5894232,0,0,0,-1154.9047,-9,1,1,2019,22,8,40,0,1,8,1,4.60882,4.60882,0,0,0,0,2,1,1,0,5.8335657,0,23.79,60.82,-9,-9,3.333333333333333,1,1,0,0,2,2,3,1,1267,-120284.09,-32860.609,0,0,746.47498 -3824,4725,8460,-9,-9,-9,1,0,57,0,1,0,1,1,-9,0,5,8.4751234,8.9915438,6.8754759,0,0,-1005.7447,0,2,2,2019,15,3,38,40,1,3,0,17.625645,17.625645,0,0,0,0,2,1,1,0,6.6278439,0,52.11,44.91,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,595,507596.09,439098.13,120743.65,71988.359,1611.4935 -3824,4726,8461,-9,8462,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.79523,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,391,79124.016,36560.813,0,0,1462.4187 -3824,4726,8462,-9,8460,-9,1,0,25,0,1,0,1,1,-9,0,4,8.0974026,8.1120157,0,0,0,-1058.0648,0,1,1,2019,11,0,43,40,1,2,1,8.1476974,8.1476974,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,4,13,4,1,391,79124.016,36560.813,0,0,1462.4187 -3824,4727,8463,-9,8460,-9,1,0,22,0,1,0,1,1,-9,0,4,7.5444703,7.5135942,0,0,0,-994.29626,0,1,-9,2019,15,3,31,22,1,3,1,5.6185994,5.6185994,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,674,154690.86,30170.73,0,0,1224.578 -3825,4728,8464,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,8.1292629,8.4017553,0,0,-1046.5349,0,1,1,2019,15,3,0,0,4,3,0,0,0,1,3.7960956,0,24.069046,7,1,1,0,6.5658541,7.9725094,53.14,45.74,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,521,1074527.3,280863.75,250595.52,0,2039.5267 -3826,4729,8465,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.6814132,6.0223446,0,0,-846.40247,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7336354,5.8826885,53.68,34.74,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,978,-332196.56,-8448.6729,0,0,231.74739 -3827,4730,8466,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1005.8104,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,15.328025,0,0,1,1,0,0,0,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,968,-91444.156,0,0,0,1321.7791 -3828,4731,8467,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.3375635,9.1370373,0,0,0,-1110.1196,0,2,1,2019,32,11,55,55,1,11,0,23.497353,23.497353,0,0,0,0,0,0,0,0,3.0291657,0,23.21,60.15,-9,-9,1.666666666666667,1,1,0,0,9,1,5,1,1326,305210.59,308448.03,116080.07,0,2028.7367 -3829,4732,8468,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-925.32202,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,5,1,1,1,0,5,9,1,1,1761,255256.38,379590.94,0,0,0 -3830,4733,8469,-9,8472,8471,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.7035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 -3830,4733,8470,-9,8472,8471,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3199,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 -3830,4733,8471,8472,-9,-9,1,1,41,0,2,0,2,2,-9,1,2,8.7783613,9.1036177,0,6,-2,35.335876,0,2,2,2019,8,0,50,45,1,0,0,16.091509,16.091509,0,0,0,0,0,1,1,0,0,0,57.57,49.69,49.04,55.86,8.333333333333334,1,1,0,0,8,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 -3830,4733,8472,8471,-9,-9,1,0,43,0,2,0,2,2,-9,1,3,7.4513831,7.8494678,0,6,2,-178.53307,0,2,2,2019,19,7,28,29,1,7,0,7.4991241,7.4991241,0,0,0,0,7,1,1,0,0,0,49.04,55.86,57.57,49.69,8.333333333333334,1,1,0,0,8,9,4,1,437.25,796825.25,166905.41,737709.38,61135.398,3673.1504 -3831,4734,8473,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.9096556,7.9970164,0,0,0,-952.18982,0,3,3,2019,11,0,37,37,1,0,0,8.1573267,8.1573267,0,0,0,0,0,0,0,0,4.0085926,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,179,519680.38,-84543.008,0,0,1220.1394 -3832,4735,8474,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1086.5472,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,19.941565,0,0,1,1,0,2.3247771,0,64.3,19.18,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,785,286775.97,0,0,0,1005.4096 -3833,4736,8475,8476,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.8061471,7.8545504,0,7,1,-29.740118,0,2,2,2019,10,0,45,65,1,0,0,6.0715961,6.0715961,0,0,0,0,0,0,0,0,0,0,55.76,52.64,52.57,36.83,8.333333333333334,1,1,0,0,8,4,5,1,1008,1141068,512182.84,546214.63,133792.03,2702.5415 -3833,4736,8476,8475,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.492341,8.8055534,0,7,-1,7.6396556,0,3,2,2019,12,2,40,45,1,2,0,17.450768,17.450768,0,0,0,0,7,0,0,0,0,0,52.57,36.83,55.76,52.64,6.666666666666667,1,1,0,0,8,4,5,1,1008,1141068,512182.84,546214.63,133792.03,2702.5415 -3834,4737,8477,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.7500801,7.9284101,0,0,0,-1084.4252,0,2,2,2019,12,0,60,60,1,0,0,6.8817959,6.8817959,0,0,0,0,0,0,0,0,0,0,36.51,28.13,-9,-9,3.333333333333333,1,1,0,1,12,11,4,0,1486,533545.81,198504.59,103545,53902.512,1146.8783 -3835,4738,8478,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.5798965,5.4010811,0,0,-1066.4502,0,2,2,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7208514,5.573936,62.49,55.09,-9,-9,10,1,1,0,0,12,9,2,1,426,588781.81,51882.461,292084.72,0,758.32666 -3836,4739,8479,-9,-9,-9,1,0,32,0,2,0,3,3,-9,1,4,0,6.6394019,6.8913946,0,0,-997.53864,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,6.3590846,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,4,12,2,0,498.33334,-172494.02,0,0,0,2029.3035 -3836,4739,8480,-9,8479,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.70868,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,498.33334,-172494.02,0,0,0,2029.3035 -3836,4739,8481,-9,8479,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.95129,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,498.33334,-172494.02,0,0,0,2029.3035 -3837,4740,8482,8483,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1785145,8.2254839,0,6,-3,-31.004038,0,3,3,2019,7,0,40,42,1,0,0,11.625454,11.625454,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,466,508312.59,207198.09,181535.69,0,2820.05 -3837,4740,8483,8482,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2775059,8.2445078,5.3805404,6,3,53.860912,0,-9,-9,2019,6,0,40,40,1,0,0,9.6197844,9.6197844,0,0,0,0,0,0,0,0,0,5.5610671,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,466,508312.59,207198.09,181535.69,0,2820.05 -3838,4741,8484,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3984032,8.1942263,0,0,0,-1117.6104,0,-9,2,2019,6,0,50,60,1,0,0,14.973139,14.973139,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,222,132238.91,12492.311,74257.953,53190.363,1762.7122 -3839,4742,8485,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,5.7162614,5.3395438,0,0,-1122.1417,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.8599043,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,786,40698.008,0,0,0,585.39197 -3840,4743,8486,8487,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.7527714,6.9712811,28,0,44.710567,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,6.386312,6.982852,58.15,52.91,48.77,60.16,10,1,1,0,0,10,1,5,1,1024,259209.38,120495.8,228502.5,126866.48,4321.0518 -3840,4743,8487,8486,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,8.8162937,8.9834375,28,0,69.469307,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.9704623,8.7696018,48.77,60.16,58.15,52.91,8.333333333333334,1,1,0,0,9,1,5,1,1024,259209.38,120495.8,228502.5,126866.48,4321.0518 -3841,4744,8488,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1030.0553,1,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,6,9,1,0,936,48569.566,0,0,0,2313.9609 -3841,4744,8489,-9,8488,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1116.7573,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,1,0,936,48569.566,0,0,0,2313.9609 -3841,4744,8490,-9,8488,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7352,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,936,48569.566,0,0,0,2313.9609 -3842,4745,8491,8492,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.8717217,6.8103528,6,4,-59.282692,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9958935,7.0431366,52,54.51,49.25,61.25,8.333333333333334,1,1,0,0,0,12,2,1,400,469848.56,212128.27,224531.97,0,1641.8124 -3842,4745,8492,8491,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,4.1034575,4.361681,6,-4,-10.571642,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,4.3274636,49.25,61.25,52,54.51,8.333333333333334,1,1,0,0,0,12,2,1,400,469848.56,212128.27,224531.97,0,1641.8124 -3843,4746,8493,8495,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.4940643,8.3828716,0,8,0,-124.74733,0,2,3,2019,6,0,37,40,1,0,0,10.435156,10.435156,0,0,0,0,0,0,0,0,0,0,54.79,55.86,58.65,52.89,8.333333333333334,1,1,0,0,11,12,5,1,1649.3334,108947.65,-37342.617,191305.98,159693.88,7477.4175 -3843,4746,8494,-9,8493,8495,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.3672,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1649.3334,108947.65,-37342.617,191305.98,159693.88,7477.4175 -3843,4746,8495,8493,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,9.368783,9.8455687,0,8,0,-28.843573,0,1,2,2019,8,0,55,55,1,0,0,29.49539,29.49539,0,0,0,0,0,0,0,0,0,0,58.65,52.89,54.79,55.86,8.333333333333334,1,1,0,0,7,12,5,1,1649.3334,108947.65,-37342.617,191305.98,159693.88,7477.4175 -3844,4747,8496,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.0858984,9.0472651,0,0,0,-981.8031,0,3,2,2019,11,1,55,55,1,1,0,17.981085,17.981085,0,0,0,0,2,0,0,0,3.0202136,0,46.14,54.22,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,234,431560,361535,0,0,3191.4055 -3845,4748,8497,8499,-9,-9,1,0,37,0,1,0,1,1,-9,0,2,8.1573229,7.7101684,0,11,-2,-62.616371,0,2,2,2019,12,0,40,40,1,0,0,7.7551861,7.7551861,0,0,0,0,0,1,1,0,0,0,57.33,42.93,52,56,8.333333333333334,2,3,0,0,8,8,4,0,231,117580.79,4366.8594,375978.63,217721.27,3517.5239 -3845,4748,8498,-9,8497,8499,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.83972,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,231,117580.79,4366.8594,375978.63,217721.27,3517.5239 -3845,4748,8499,8497,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.5306158,8.4117603,0,11,2,-21.091953,0,-9,-9,2019,9,0,40,45,1,1,0,12.67974,12.67974,0,0,0,0,0,1,1,0,0,0,52,56,57.33,42.93,7,2,3,0,0,1,8,4,0,231,117580.79,4366.8594,375978.63,217721.27,3517.5239 -3846,4749,8500,8501,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,8,9,-195.54843,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.7843876,0,45.49,58.84,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,431,727119.13,43853.391,687888,0,1456.6908 -3846,4749,8501,8500,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,6.7377472,7.7306685,7.366354,8,0,112.48447,0,2,2,2019,7,0,12,10,1,0,0,9.1354723,9.1354723,0,0,0,0,0,1,1,0,1.9540719,7.2900019,57.16,56.15,45.49,58.84,5,1,1,0,0,8,11,3,1,431,727119.13,43853.391,687888,0,1456.6908 -3847,4750,8502,-9,-9,-9,1,1,40,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1122.212,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,35.93,17.48,-9,-9,5,1,1,0,1,0,13,2,1,204,-68243.047,44913.41,0,0,897.57599 -3848,4751,8503,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,5.4006023,5.315846,0,0,-990.12885,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.7088413,53.48,20.04,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,703,99779.102,34763.387,158106.61,0,2079.7891 -3849,4752,8504,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-925.10455,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78,32.48,-9,-9,3.333333333333333,1,1,0,0,1,1,1,1,1231,-137553.16,0,0,0,785.8855 -3849,4753,8505,8506,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,6.9151983,6.7416744,0,3,-10,-2.4149518,0,-9,-9,2019,20,8,50,35,1,8,0,2.0994961,2.0994961,0,0,0,0,0,1,1,0,0,0,33.07,57.08,32.26,60.74,1.666666666666667,1,1,0,1,3,1,2,1,1603,-67106.078,-7097.918,0,0,1325.7078 -3849,4753,8506,8505,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,6.910965,6.6650729,0,3,10,-64.113876,0,-9,-9,2019,11,1,20,35,1,1,0,4.372786,4.372786,0,0,0,0,0,1,1,0,6.5276809,0,32.26,60.74,33.07,57.08,6.666666666666667,1,1,0,1,4,1,2,1,1603,-67106.078,-7097.918,0,0,1325.7078 -3850,4754,8507,8508,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.240737,7.9857903,0,2,3,34.606998,0,3,1,2019,7,0,41,40,1,0,0,9.5786715,9.5786715,0,0,0,0,0,0,0,0,.22642623,0,56.47,59.4,53,54,10,1,1,0,0,8,9,5,1,497,2072676.1,1102431.3,733881.44,89946.531,7020.6758 -3850,4754,8508,8507,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.803731,9.9120874,0,2,-3,-132.91914,-9,-9,-9,2019,9,0,55,0,1,1,0,37.871151,37.871151,0,0,0,0,0,0,0,0,0,0,53,54,56.47,59.4,8,1,1,0,0,1,9,5,1,497,2072676.1,1102431.3,733881.44,89946.531,7020.6758 -3851,4755,8509,-9,-9,-9,1,0,86,0,2,0,3,3,-9,0,1,0,5.4616199,5.5556111,0,0,-901.38257,0,2,3,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,5.2416282,44.65,16.42,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1598,240396.58,0,309680.63,0,509.64777 -3852,4756,8510,8511,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,7.7125692,7.6632452,0,3,-4,131.82709,0,-9,-9,2019,8,0,18,35,1,0,0,13.621189,13.621189,0,0,0,0,0,1,1,0,0,0,51.49,57.57,57.16,56.15,8.333333333333334,2,3,0,0,6,2,5,1,683.5,101888.91,89747.172,247233.59,160872.88,2692.2061 -3852,4756,8511,8510,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.532196,8.3590412,0,3,4,32.745533,0,2,2,2019,8,1,37,38,1,1,0,16.928173,16.928173,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.49,57.57,1.666666666666667,2,3,0,0,10,2,5,1,683.5,101888.91,89747.172,247233.59,160872.88,2692.2061 -3853,4757,8512,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.9713597,7.1099062,0,0,-984.2113,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7015634,7.2879949,60.53,42.47,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,908,465552.75,211427.89,0,0,1729.5613 -3854,4758,8513,8515,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,7.073308,7.0983381,0,21,13,30.853716,0,2,1,2019,9,0,50,60,1,0,0,3.2038558,3.2038558,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,12,9,4,1,702.66669,415039,209677.06,343868.13,82705.656,4410.5488 -3854,4758,8514,-9,8515,8513,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1056.9203,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,1,702.66669,415039,209677.06,343868.13,82705.656,4410.5488 -3854,4758,8515,8513,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.8935871,8.607913,0,24,-13,67.673615,0,3,2,2019,6,0,43,48,1,0,0,17.517717,17.517717,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,12,9,4,1,702.66669,415039,209677.06,343868.13,82705.656,4410.5488 -3854,4759,8516,-9,8515,8513,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-991.82538,-9,1,2,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,0,0,0,9,1,1,338,97401.727,0,0,0,0 -3855,4760,8517,8518,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,9.3523293,9.378047,0,4,6,34.9114,0,2,2,2019,7,0,58,68,1,0,0,19.755116,19.755116,0,0,0,0,5.48,1,1,0,7.1591535,0,48.96,60.26,38.38,38.11,8.333333333333334,2,3,0,0,10,2,5,1,435.5,229165.73,13459.611,206370.77,210704.75,4505.9912 -3855,4760,8518,8517,-9,-9,1,0,33,0,0,0,1,1,-9,1,1,0,0,0,4,-6,80.429115,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,1.9856416,0,38.38,38.11,48.96,60.26,3.333333333333333,1,1,0,0,6,2,5,1,435.5,229165.73,13459.611,206370.77,210704.75,4505.9912 -3856,4761,8519,-9,8520,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.1259,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,438,-43605.102,0,0,0,1550.553 -3856,4761,8520,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,0,0,0,0,0,-930.96521,0,-9,-9,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.22,44.28,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,438,-43605.102,0,0,0,1550.553 -3857,4762,8521,8523,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,8.1537733,8.2201004,0,1,1,49.281441,-9,2,1,2019,13,1,37,0,1,1,0,10.737941,10.737941,0,0,0,0,0,1,1,0,0,0,43.2,59.97,46.65,58.6,6.666666666666667,1,1,0,0,12,9,5,0,417.33334,173185.55,52390.012,0,0,3359.7004 -3857,4762,8522,-9,8521,8523,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.4801,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,417.33334,173185.55,52390.012,0,0,3359.7004 -3857,4762,8523,8521,-9,-9,1,1,29,0,1,0,2,2,-9,0,5,8.6289997,8.5100794,0,1,-1,-41.713863,-9,-9,-9,2019,12,3,30,0,1,3,0,22.235743,22.235743,0,0,0,0,0,1,1,0,0,0,46.65,58.6,43.2,59.97,6.666666666666667,1,1,0,0,2,9,5,0,417.33334,173185.55,52390.012,0,0,3359.7004 -3858,4763,8524,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9361882,7.9593091,0,0,0,-959.83636,0,-9,-9,2019,9,1,38,37,1,1,0,9.7118673,9.7118673,0,0,0,0,0,0,0,0,0,0,55.28,51.42,-9,-9,10,1,1,0,0,11,2,4,1,885,197543.97,84595.695,0,0,1489.4432 -3858,4764,8525,-9,8524,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2048006,7.9736929,0,0,0,-1094.5233,0,2,-9,2019,13,1,38,44,1,1,1,8.4566813,8.4566813,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,3,4,0,0,5,2,4,1,1240,324284.06,-26628.939,0,0,1391.5989 -3859,4765,8526,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.0776701,6.8800168,0,0,-1273.3719,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.2114837,7.1167612,57.07,49.39,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,464,263198.06,-13646.289,-6217.9146,0,1555.3451 -3860,4766,8527,-9,8528,-9,1,0,58,0,0,0,3,3,-9,0,4,7.3603292,7.4888778,0,0,0,-930.69745,0,3,2,2019,11,0,22,20,1,0,0,8.2083282,8.2083282,0,0,0,0,7,1,1,0,.4637706,0,48.31,52.14,-9,-9,10,1,1,0,0,10,7,3,1,924,681198.19,-20351.318,288849,0,557.91248 -3860,4767,8528,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5431762,5.8840075,0,0,-1069.7529,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,73.707184,0,0,1,1,0,0,5.6704965,53,45,-9,-9,8,1,1,0,0,0,7,2,1,2086,124041.32,54465.887,114313.4,0,1312.8518 -3861,4768,8529,8530,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.2407522,8.8382082,5.2267857,39,5,-60.42675,0,3,3,2019,9,0,43,45,1,0,0,10.620978,10.620978,0,0,0,0,0,0,0,0,5.7877636,5.6949821,58.47,50.22,49,48,8.333333333333334,1,1,0,0,10,5,5,1,717.5,1498238.5,1240147.5,103221.34,33021.863,3247.5161 -3861,4768,8530,8529,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.2835007,8.014163,0,7,-5,-131.19626,0,-9,-9,2019,11,0,38,38,1,2,0,9.6421633,9.6421633,0,0,0,0,0,0,0,0,0,0,49,48,58.47,50.22,7,1,1,0,0,1,5,5,1,717.5,1498238.5,1240147.5,103221.34,33021.863,3247.5161 -3862,4769,8531,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-993.71442,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.76,31.3,-9,-9,6.666666666666667,1,1,0,1,0,8,1,0,2763,0,0,0,0,1758.7201 -3863,4770,8532,8535,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,0,0,0,11,2,-99.212486,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,5,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 -3863,4770,8533,-9,8532,8535,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-904.66571,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 -3863,4770,8534,-9,8532,8535,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.6578,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 -3863,4770,8535,8532,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.9678183,8.918807,0,11,-2,-42.247364,0,3,3,2019,11,1,45,48,1,1,0,15.80831,15.80831,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,12,12,4,1,1212.75,167007.58,20238.662,63336.809,0,2186.415 -3864,4771,8536,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.3470821,5.5616727,0,0,-1054.9652,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,5.9893432,0,0,1,0,1,2.0549212,5.221652,44.77,40.12,-9,-9,7,1,1,0,0,0,5,2,0,1035,-48631.66,44975.609,0,0,1254.9379 -3864,4772,8537,-9,8536,-9,1,1,44,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1159.3154,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.12,58.26,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,1201,-26912.496,0,0,0,242.73389 -3865,4773,8538,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4624653,6.5240541,0,0,-932.96533,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.3261609,0,0,1,1,0,5.0520487,6.4138956,65.96000000000001,31.61,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,980,201615.27,35045.707,0,0,1169.4017 -3866,4774,8539,-9,8540,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.0956,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,3,0,1274.5,20853.734,36679.895,0,0,2770.043 -3866,4774,8540,-9,-9,-9,1,0,27,1,1,0,3,3,-9,0,2,7.7058086,7.5950203,0,0,0,-936.39655,0,-9,-9,2019,10,0,37,37,1,0,0,6.7971826,6.7971826,0,0,0,0,0,1,1,0,0,0,15.88,41.81,-9,-9,5,1,1,0,0,10,13,3,0,1274.5,20853.734,36679.895,0,0,2770.043 -3867,4775,8541,8543,-9,-9,1,0,44,0,1,0,2,2,-9,0,1,7.480144,7.537879,0,23,-2,-37.274971,0,3,3,2019,12,0,35,35,1,0,0,7.1167574,7.1167574,0,0,0,0,0,1,1,0,0,0,41.75,50.17,52,54.51,1.666666666666667,1,1,0,0,11,4,3,1,679,100525.63,0,195670.05,52769.004,1658.7174 -3867,4775,8542,-9,8541,8543,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-900.07898,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,3,1,679,100525.63,0,195670.05,52769.004,1658.7174 -3867,4775,8543,8541,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.3471503,7.2120361,0,18,2,-31.067421,0,3,3,2019,12,0,50,40,1,0,0,2.2179818,2.2179818,0,0,0,0,0,1,1,0,0,0,52,54.51,41.75,50.17,5,1,1,0,0,11,4,3,1,679,100525.63,0,195670.05,52769.004,1658.7174 -3867,4776,8544,-9,8541,8543,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-985.66742,1,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.5551043,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,4,1,1,347,178534.27,0,0,0,-486.22757 -3868,4777,8545,8546,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,7.4077625,7.6477423,58,4,52.57198,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.8371072,7.6372833,62,52.77,58.9,45.74,8.333333333333334,1,1,0,0,0,2,2,1,962,631109.75,156727.56,123407.54,0,2401.7852 -3868,4777,8546,8545,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-4,126.9026,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8340867,0,58.9,45.74,62,52.77,8.333333333333334,1,1,0,0,0,2,2,1,962,631109.75,156727.56,123407.54,0,2401.7852 -3869,4778,8547,8548,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.0414486,7.3444681,8,2,-31.546066,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3263636,61.19,36.58,62.08,46.01,6.666666666666667,1,1,0,0,4,10,3,1,489,953254.31,435509.75,379007.38,0,2980.9087 -3869,4778,8548,8547,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.8424172,6.4789238,8,-2,38.620998,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9046431,5.9327307,62.08,46.01,61.19,36.58,10,1,1,0,0,0,10,3,1,489,953254.31,435509.75,379007.38,0,2980.9087 -3870,4779,8549,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.0038147,6.8680668,0,0,-1065.3457,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,16.376371,0,2,1,1,0,2.467813,7.1989183,66.3,28.88,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,573,305723.91,123928.62,-4900.2808,0,791.22394 -3871,4780,8550,8551,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.9472466,6.672008,6,2,-56.561806,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9677181,43.2,45.18,57.16,56.15,3.333333333333333,1,1,0,0,1,5,3,1,276,817746,384511.75,221226.91,0,2202.6328 -3871,4780,8551,8550,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8897376,6.6336527,6,-2,-137.56944,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.53572851,6.7810311,57.16,56.15,43.2,45.18,8.333333333333334,1,1,0,1,1,5,3,1,276,817746,384511.75,221226.91,0,2202.6328 -3872,4781,8552,8553,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.7229786,8.5619106,44,9,-34.828869,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0383477,8.6746254,57.73,54.53,48.87,58.55,10,1,1,0,0,1,7,5,1,754.5,2527563,764571,1490630.3,0,5331.1836 -3872,4781,8553,8552,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9147177,8.3615294,7.3030558,41,0,94.880615,0,3,3,2019,16,5,37,39,1,5,0,9.0548649,9.0548649,0,0,0,0,2,1,1,0,0,7.5424871,48.87,58.55,57.73,54.53,8.333333333333334,1,1,0,0,9,7,5,1,754.5,2527563,764571,1490630.3,0,5331.1836 -3873,4782,8554,8558,-9,-9,1,1,47,0,3,0,1,1,-9,0,2,9.572999,9.7657375,0,26,0,117.5751,0,2,1,2019,11,1,47,50,1,1,0,37.454586,37.454586,0,0,0,0,0,0,0,0,2.7786763,0,51.25,48.45,60.7,47.65,8.333333333333334,1,1,0,0,11,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 -3873,4782,8555,-9,8558,8554,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-959.08649,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 -3873,4782,8556,-9,8558,8554,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.3647,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 -3873,4782,8557,-9,8558,8554,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-979.36493,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.7286635,0,61.09,51.58,-9,-9,10,1,1,0,0,0,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 -3873,4782,8558,8554,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,6.8175082,6.9116511,0,24,0,104.60975,0,3,3,2019,7,0,11,12,1,0,0,9.0165405,9.0165405,0,0,0,0,0,0,0,0,3.5588479,0,60.7,47.65,51.25,48.45,8.333333333333334,1,1,0,0,12,10,5,1,720.59998,1854659.8,1435835.3,739436,333133.34,4908.689 -3874,4783,8559,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.1958899,7.2050014,0,0,0,-987.14984,-9,3,3,2019,9,0,20,0,1,0,0,7.8129997,7.8129997,0,0,0,0,0,0,0,0,0,0,57.41,54.88,-9,-9,3.333333333333333,2,3,0,0,2,2,3,1,893,-136916.33,0,0,0,904.76917 -3874,4784,8560,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.5330582,7.8145342,0,0,0,-889.32758,-9,-9,-9,2019,9,1,30,0,1,1,0,9.0400887,9.0400887,0,0,0,0,0,0,0,0,0,0,65.09,35.18,-9,-9,8.333333333333334,2,3,0,0,0,2,3,1,298,-174130.7,0,0,0,813.62689 -3875,4785,8561,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.7181726,5.5603495,0,0,-825.4494,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,1.2671601,5.4426131,53.95,40.36,-9,-9,5,1,1,0,0,11,11,2,1,459,-185019.73,14798.825,0,0,611.55109 -3876,4786,8562,-9,-9,-9,1,1,40,0,0,0,1,1,-9,1,1,7.5656199,7.1502433,0,0,0,-1035.3297,0,2,2,2019,33,11,15,25,1,11,0,14.720193,14.720193,0,0,0,0,7,1,1,0,0,0,18.23,42.35,-9,-9,1.666666666666667,1,1,0,0,10,9,3,1,568,0,0,0,0,957.19751 -3877,4787,8563,8564,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,7.4492188,7.7360168,3.7965395,6,-3,-57.381916,0,-9,-9,2019,9,0,60,25,1,0,0,2.9065957,2.9065957,0,0,0,0,0,0,0,0,0,3.8649399,46,39,42.41,56.21,8.333333333333334,1,1,0,0,5,5,3,1,615,177095.81,25576.6,124414.93,43010.313,2254.4568 -3877,4787,8564,8563,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.2851,7.4589133,0,6,3,84.970459,0,3,3,2019,14,2,16,20,1,2,0,13.948636,13.948636,0,0,0,0,0,0,0,0,0,0,42.41,56.21,46,39,8.333333333333334,1,1,0,0,7,5,3,1,615,177095.81,25576.6,124414.93,43010.313,2254.4568 -3878,4788,8565,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,7.9576302,7.7860169,0,0,0,-973.47284,-9,-9,-9,2019,9,0,40,0,1,0,0,9.9241791,9.9241791,0,0,0,0,0,1,1,0,0,0,54.96,39.94,-9,-9,3.333333333333333,1,1,0,0,11,4,4,0,229,393710.09,0,0,0,1464.3036 -3878,4789,8566,-9,-9,8565,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1039.5839,-9,-9,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,41.57,37.85,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,452,25606.084,0,0,0,0 -3878,4790,8567,-9,-9,8565,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1074.049,-9,-9,2,2019,7,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.11,34.9,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,527,186965.88,0,0,0,112.96412 -3879,4791,8568,-9,-9,-9,1,0,60,0,0,0,1,1,-9,1,2,8.2572269,7.9574642,0,0,0,-1103.4271,-9,3,3,2019,18,6,18,0,1,6,0,18.631372,18.631372,0,0,0,0,108,1,1,0,0,0,25.76,31.84,-9,-9,5,4,2,0,0,12,6,4,0,919,-198856.91,71473.18,132274.44,7326.439,1462.2106 -3880,4792,8569,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.7349977,8.3144598,0,0,-1094.6827,0,1,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1273413,8.1536989,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,986,881095.94,631773.25,185482.7,0,2493.844 -3881,4793,8570,8571,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,7.3143997,7.5570498,0,22,10,-169.84476,0,3,2,2019,9,0,24,30,1,0,0,6.7635903,6.7635903,0,0,0,0,42,1,1,0,0,0,57.57,49.69,35,28,5,1,1,0,1,9,10,2,0,522.5,441122.25,297698.41,242662.34,0,2243.665 -3881,4793,8571,8570,-9,-9,1,0,45,0,0,0,3,3,-9,1,1,0,0,0,22,-10,18.823845,0,2,2,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,35,28,57.57,49.69,1.666666666666667,1,1,0,1,0,10,2,0,522.5,441122.25,297698.41,242662.34,0,2243.665 -3882,4794,8572,8573,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.1855321,6.3370156,54,-1,10.798896,0,3,2,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9316459,6.1227932,55.53,51.55,58.89,48.6,10,1,1,0,0,8,10,2,1,471.5,341060.75,127508.73,240570.53,0,2322.4048 -3882,4794,8573,8572,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.8491402,7.1929073,54,1,-9.766777,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4727483,7.0450063,58.89,48.6,55.53,51.55,8.333333333333334,1,1,0,0,0,10,2,1,471.5,341060.75,127508.73,240570.53,0,2322.4048 -3883,4795,8574,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1156.1423,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,27.78,52.83,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,604,-70611.57,0,0,0,1123.4235 -3884,4796,8575,8576,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.2059584,8.2349911,32,5,94.107613,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.7510386,8.174984,57.16,56.15,43.29,56.92,10,1,1,0,0,9,7,5,1,495.5,2345812.5,1024103.8,801765.25,0,3390.0757 -3884,4796,8576,8575,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0346317,7.91677,0,32,-5,-56.222687,-9,2,1,2019,14,2,18,0,1,2,0,18.334095,18.334095,0,0,0,0,0,0,0,0,6.0518689,0,43.29,56.92,57.16,56.15,6.666666666666667,1,1,0,0,12,7,5,1,495.5,2345812.5,1024103.8,801765.25,0,3390.0757 -3884,4797,8577,-9,8576,8575,1,1,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-1039.8871,-9,2,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.5123549,0,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,293,35889.527,0,0,0,-87.776123 -3884,4798,8578,-9,8576,8575,1,1,21,0,0,0,2,2,-9,0,4,7.1724811,7.203826,0,0,0,-1036.9258,0,2,1,2019,12,1,23,30,1,1,1,8.3063927,8.3063927,0,0,0,0,0,0,0,0,0,0,29.23,64.78,-9,-9,1.666666666666667,1,1,0,0,3,7,3,1,301,301544.06,0,0,0,674.15375 -3885,4799,8579,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.617671,8.8322916,0,0,0,-1073.6715,0,2,2,2019,4,0,46,45,1,0,0,19.058495,19.058495,0,0,0,0,7,1,1,0,0,0,62.54,26.89,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,1124,1960408.3,495207.88,628502.19,0,1963.0963 -3886,4800,8580,8582,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.5795555,9.6051073,0,7,3,14.655071,0,2,2,2019,11,1,40,43,1,1,0,35.446869,35.446869,0,0,0,0,0,0,0,0,2.6024537,0,45.43,53.5,44.68,48.16,6.666666666666667,1,1,0,0,10,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 -3886,4800,8581,-9,8582,8580,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.28387,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 -3886,4800,8582,8580,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,0,0,0,7,-3,-3.1822271,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,44.68,48.16,45.43,53.5,3.333333333333333,1,1,0,0,0,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 -3886,4800,8583,-9,8582,8580,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.97119,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,452.25,228055.33,1845.4305,486222.34,221511.34,4104.3252 -3886,4801,8584,-9,8582,8580,1,0,20,0,2,0,2,2,-9,0,4,7.8708186,7.7861805,0,0,0,-1138.7554,0,2,2,2019,12,3,35,12,1,3,1,10.65659,10.65659,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,5,9,4,1,1838,211297.47,53502.234,0,0,1443.0134 -3886,4802,8585,-9,8582,8580,1,0,18,0,2,0,2,2,-9,0,3,6.7227588,6.7750902,0,0,0,-941.1911,0,2,2,2019,15,3,18,0,1,3,1,6.0233555,6.0233555,0,0,0,0,0,0,0,0,0,0,49.77,50.15,-9,-9,5,1,1,0,0,2,9,2,1,463,119536.04,-78706.313,0,0,276.76288 -3887,4803,8586,8587,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,8.0429373,8.1207981,10,2,-3.3421111,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,8.082058,43.09,34.68,33.87,45.19,3.333333333333333,1,1,0,0,0,6,3,1,318.5,1297633.9,515361.69,521124.31,0,2721.0601 -3887,4803,8587,8586,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,10,-2,15.651224,0,3,2,2019,17,6,0,0,4,6,0,0,0,1,0,8.6811676,0,0,1,1,0,2.0910547,0,33.87,45.19,43.09,34.68,3.333333333333333,1,1,0,0,0,6,3,1,318.5,1297633.9,515361.69,521124.31,0,2721.0601 -3888,4804,8588,-9,8589,8590,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1006.9978,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 -3888,4804,8589,8590,-9,-9,1,0,36,0,5,0,2,2,-9,0,2,0,0,0,16,-2,50.282421,0,2,2,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,36.66,22.6,55.58,35.61,3.333333333333333,1,1,0,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 -3888,4804,8590,8589,-9,-9,1,1,38,0,5,0,2,2,-9,0,1,8.3635845,8.486762,0,16,2,50.391407,0,2,3,2019,7,0,40,40,1,0,0,10.126927,10.126927,0,0,0,0,0,1,0,1,0,0,55.58,35.61,36.66,22.6,6.666666666666667,1,1,0,0,7,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 -3888,4804,8591,-9,8589,8590,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1024.9452,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 -3888,4804,8592,-9,8589,8590,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-960.07196,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 -3888,4804,8593,-9,8589,8590,1,1,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1088.1985,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 -3888,4804,8594,-9,8589,8590,1,1,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1144.4729,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,450.57144,155994.56,57034.215,123344.2,101213.27,3279.3435 -3889,4805,8595,8596,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.9208698,8.8520346,0,5,1,-67.370529,0,3,3,2019,10,0,72,60,1,0,0,11.922182,11.922182,0,0,0,0,0,0,0,0,1.2349912,0,57.16,56.15,29.87,62.19,8.333333333333334,1,1,0,0,6,11,5,1,777,2064461,1615524.9,267561.69,0,3027.2542 -3889,4805,8596,8595,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3776965,7.2116723,0,5,-1,-1.3498406,0,-9,-9,2019,19,7,20,16,1,7,0,6.2116528,6.2116528,0,0,0,0,0,0,0,0,0,0,29.87,62.19,57.16,56.15,6.666666666666667,1,1,0,0,2,11,5,1,777,2064461,1615524.9,267561.69,0,3027.2542 -3890,4806,8597,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.1284857,6.6734557,0,0,-1024.717,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,7.2921953,57.18,35.03,-9,-9,3.333333333333333,1,1,0,0,1,2,3,1,2012,551223.06,338635.03,140364.44,0,1331.1421 -3891,4807,8598,8599,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.1399946,9.0219936,0,23,-3,32.57835,0,3,3,2019,7,0,45,45,1,0,0,21.834333,21.834333,0,0,0,0,2,0,0,0,8.0918236,0,49.25,61.25,57.16,56.15,8.333333333333334,1,1,0,0,12,10,5,1,665.5,953438.63,605954.25,232257.97,0,5703.1787 -3891,4807,8599,8598,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8123665,9.354991,0,8,3,-85.804947,0,-9,-9,2019,8,0,46,45,1,0,0,19.626001,19.626001,0,0,0,0,7,0,0,0,0,0,57.16,56.15,49.25,61.25,8.333333333333334,1,1,0,0,11,10,5,1,665.5,953438.63,605954.25,232257.97,0,5703.1787 -3892,4808,8600,-9,-9,-9,1,0,31,0,0,0,2,2,-9,1,5,6.6905036,6.537107,0,0,0,-1005.4932,0,3,3,2019,13,4,12,12,1,4,0,6.2765164,6.2765164,0,0,0,0,14.5,1,1,0,.9718594,0,37.3,42.57,-9,-9,6.666666666666667,1,1,0,0,9,7,2,0,650,98186.414,0,0,0,1438.1661 -3893,4809,8601,8602,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.2816944,7.9523063,0,21,-3,115.21892,0,3,2,2019,9,0,37,37,1,0,0,11.59741,11.59741,0,0,0,0,0,1,1,0,0,0,63.27,18.44,62.49,55.09,5,1,1,0,0,13,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 -3893,4809,8602,8601,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,6.9981194,6.9743762,0,11,3,25.245766,0,-9,-9,2019,6,0,15,15,1,0,0,9.1550674,9.1550674,0,0,0,0,0,1,1,0,0,0,62.49,55.09,63.27,18.44,10,1,1,0,0,13,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 -3893,4809,8603,-9,8602,8601,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1059.1432,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 -3893,4809,8604,-9,8602,8601,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-976.36115,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,3,1,425.75,543134.69,592699.25,136349.94,63065.762,2295.9893 -3894,4810,8605,8606,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.4640155,5.7734203,9,-2,-55.953976,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9188051,61.04,39.41,60.3,46.58,8.333333333333334,1,1,0,0,6,9,4,1,237,789393.31,672752,297071.16,0,2629.436 -3894,4810,8606,8605,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.303998,8.4277868,9,2,71.67437,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0581551,8.2942295,60.3,46.58,61.04,39.41,8.333333333333334,1,1,0,0,7,9,4,1,237,789393.31,672752,297071.16,0,2629.436 -3895,4811,8607,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1034.3685,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,10.800772,0,0,1,1,0,0,0,64.97,37.52,-9,-9,10,1,1,0,0,0,11,1,1,453,398996.16,0,0,0,1242.9426 -3896,4812,8608,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.2923212,8.1699095,0,0,0,-975.07562,0,-9,-9,2019,19,6,50,40,1,6,0,8.7569733,8.7569733,0,0,0,0,0,0,0,0,6.6626077,0,45.81,58.99,-9,-9,5,2,3,0,0,7,8,4,0,331,-114657.98,0,0,0,1662.9197 -3897,4813,8609,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1032.9808,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,0,0,42.35,36.31,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,1058,102091.76,0,0,0,950.65942 -3898,4814,8610,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,5.6947474,5.6964569,0,0,0,-918.15369,0,1,1,2019,15,3,55,-9,1,3,0,.79504138,.79504138,0,0,0,0,0,1,1,0,0,0,40.84,58.01,-9,-9,6.666666666666667,1,1,0,0,9,8,2,0,859,-117588.4,0,0,0,770.20477 -3898,4815,8611,-9,8610,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-987.78613,1,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,0,0,0,8,1,0,269,-266552.06,0,0,0,1759.8688 -3899,4816,8612,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,7.5255594,7.3787045,0,0,-1018.3594,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,11.902643,0,0,1,1,0,1.718696,7.4728289,46.46,30.27,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,332,605170,485625.28,195074.75,0,2551.3472 -3900,4817,8613,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.1565237,8.3657722,0,0,-1020.6489,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,6.5438919,8.0097237,48.4,50.83,-9,-9,3.333333333333333,1,1,0,0,5,5,4,1,535,508160.13,686899.44,0,0,2618.1357 -3901,4818,8614,8615,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.6828051,8.9124117,6.1201982,8,2,-17.782148,0,3,3,2019,12,0,43,42,1,0,0,18.271074,18.271074,0,0,0,0,0,1,1,0,6.6729932,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 -3901,4818,8615,8614,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.7951775,8.9909983,0,8,-2,-49.553902,0,3,3,2019,8,0,43,40,1,0,0,15.715515,15.715515,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 -3901,4818,8616,-9,8614,8615,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.08966,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 -3901,4818,8617,-9,8614,8615,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.25958,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,255.75,1266356.8,788917.5,469814.81,158493.7,5656.6489 -3902,4819,8618,8620,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.5846491,8.7402945,0,6,2,-25.362251,0,2,2,2019,6,0,37,37,1,0,0,21.290443,21.290443,0,0,0,0,2,1,1,0,.67949003,0,55.96,49.93,54.96,53.17,8.333333333333334,1,1,0,0,7,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 -3902,4819,8619,-9,8620,8618,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1030.5392,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,61.68,49.95,-9,-9,10,1,1,0,0,1,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 -3902,4819,8620,8618,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.7956276,8.7655287,0,22,-2,-113.31828,0,2,2,2019,9,1,37,38,1,1,0,22.426933,22.426933,0,0,0,0,2,1,1,0,2.0711827,0,54.96,53.17,55.96,49.93,8.333333333333334,1,1,0,0,7,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 -3902,4819,8621,-9,8620,8618,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.0583,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,5,1,847.75,850852.88,394180.94,743053.5,407855.38,4512.3242 -3903,4820,8622,-9,8623,8625,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.988,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 -3903,4820,8623,8625,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,0,0,0,7,-5,59.822357,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,58.55,54.2,57.49,5,1,1,0,0,5,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 -3903,4820,8624,-9,8623,8625,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.62659,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 -3903,4820,8625,8623,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.9276361,8.8406677,0,7,5,60.074535,0,2,2,2019,8,0,60,60,1,0,0,14.203655,14.203655,0,0,0,0,0,1,1,0,0,0,54.2,57.49,43.12,58.55,8.333333333333334,1,1,0,0,8,9,4,1,1082.5,328339.88,20974.207,191992.19,17935.238,2991.0908 -3904,4821,8626,8627,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.2356038,6.5816188,54,3,-58.977657,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4864955,6.5638027,47.52,57.75,48.76,53.24,8.333333333333334,1,1,0,0,0,5,2,1,681,425956.06,162536.41,80276.047,0,1823.3733 -3904,4821,8627,8626,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,54,-3,17.491497,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8183744,0,48.76,53.24,47.52,57.75,10,1,1,0,0,0,5,2,1,681,425956.06,162536.41,80276.047,0,1823.3733 -3905,4822,8628,8629,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.7340469,9.6608353,0,7,1,-1.9232696,0,-9,-9,2019,12,0,36,32,1,0,0,44.766445,44.766445,0,0,0,0,2,0,0,0,0,0,57.16,56.15,63.24,18.46,8.333333333333334,1,1,0,0,9,12,5,1,194,828567.75,296776.63,232835.64,0,6878.3325 -3905,4822,8629,8628,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.5116692,8.6003304,0,13,-1,-131.39961,0,3,3,2019,10,2,30,34,1,2,0,17.988382,17.988382,0,0,0,0,0,0,0,0,6.34413,0,63.24,18.46,57.16,56.15,6.666666666666667,1,1,0,0,9,12,5,1,194,828567.75,296776.63,232835.64,0,6878.3325 -3906,4823,8630,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.6041899,8.1795397,7.7790475,0,0,-894.38965,0,2,2,2019,8,0,16,16,1,0,0,4.7218204,4.7218204,0,0,0,0,74.5,0,0,0,5.0359492,7.3989797,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1324,713031.5,424048.25,146248.63,0,1048.7349 -3906,4824,8631,-9,8630,-9,1,1,27,0,0,0,2,2,-9,0,5,7.0619826,6.7623773,0,0,0,-907.77521,0,2,-9,2019,10,3,50,50,1,3,1,2.7223899,2.7223899,0,0,0,0,2,0,0,0,3.2210083,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,603,466179.34,-10040.077,0,0,196.09378 -3907,4825,8632,-9,8633,8635,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.12683,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 -3907,4825,8633,8635,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.2576666,8.0733833,0,4,-1,10.653872,0,-9,-9,2019,12,0,23,25,1,0,0,22.078074,22.078074,0,0,0,0,0,1,1,0,0,0,49.35,59.64,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 -3907,4825,8634,-9,8633,8635,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.47028,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 -3907,4825,8635,8633,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,8.8655109,9.0531712,0,4,1,62.807953,0,2,2,2019,7,0,37,47,1,0,0,28.706911,28.706911,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.35,59.64,8.333333333333334,1,1,0,0,8,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 -3907,4825,8636,-9,8633,8635,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.57385,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,558.20001,62682.016,153902.8,373812.88,296611.47,4462.1489 -3908,4826,8637,-9,8638,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1121.0276,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,5,-9,0,0,11,2,0,1161,67607.406,0,0,0,428.61737 -3908,4826,8638,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,2,0,0,0,0,0,-979.14795,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,19.27,42.79,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,1161,67607.406,0,0,0,428.61737 -3909,4827,8639,8640,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.4042559,4.6439481,6,4,73.285217,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,.96210682,5.1623092,21.796221,0,1,1,0,4.6933284,4.6290321,37.77,37.9,51.25,46.55,6.666666666666667,1,1,0,0,0,10,2,1,376,579509.38,0,419198,0,1785.4656 -3909,4827,8640,8639,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,6.8127251,7.1282892,6,-4,35.14748,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.926085,7.036694,51.25,46.55,37.77,37.9,6.666666666666667,1,1,0,0,0,10,2,1,376,579509.38,0,419198,0,1785.4656 -3910,4828,8641,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1045.876,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.7,38.44,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,874,-210418.48,0,0,0,1363.4343 -3911,4829,8642,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7246914,8.4844847,0,0,0,-946.89343,0,1,1,2019,7,0,36,36,1,0,0,22.381413,22.381413,0,0,0,0,2,1,1,0,5.3603649,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,1519,100012.88,2130.1831,184772.84,107400.51,1824.1057 -3911,4830,8643,-9,-9,8642,1,1,23,0,0,0,1,1,-9,0,4,8.2155695,8.0235329,0,0,0,-1017.3215,0,-9,2,2019,12,0,60,42,1,0,1,7.8875399,7.8875399,0,0,0,0,0,1,1,0,2.5121865,0,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,154,-176393.2,0,0,0,1313.8228 -3912,4831,8644,8645,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1950359,7.8917007,0,6,-6,71.440559,0,2,2,2019,16,4,27,28,1,4,0,11.675391,11.675391,0,0,0,0,0,1,1,0,.55581582,0,39.81,52.1,37.69,58.7,3.333333333333333,1,1,0,0,7,12,5,1,847.5,771228,807078.13,0,0,4966.3838 -3912,4831,8645,8644,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.2580509,9.07617,4.5156164,6,6,3.5636151,0,2,3,2019,12,0,96,84,1,0,0,11.855192,11.855192,0,0,0,0,0,1,1,0,5.2963672,4.8743792,37.69,58.7,39.81,52.1,6.666666666666667,1,1,0,0,7,12,5,1,847.5,771228,807078.13,0,0,4966.3838 -3912,4832,8646,-9,8644,8645,1,1,25,0,0,0,2,2,-9,0,4,7.9420819,8.2379017,0,0,0,-1145.3478,0,2,3,2019,5,0,49,59,1,0,1,8.3589516,8.3589516,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,394,-179658.02,-46875.793,0,0,496.05206 -3912,4833,8647,-9,8644,8645,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1032.0768,0,2,3,2019,23,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,31.85,62.81,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,292,-54049.93,0,0,0,200.97253 -3913,4834,8648,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.3709517,7.4625435,0,0,-1088.6455,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5110092,58.15,52.91,-9,-9,10,1,1,0,0,0,5,3,1,376,714523.69,471585.75,0,0,1678.229 -3914,4835,8649,8651,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.2893248,8.2030258,0,9,3,-29.925383,0,-9,-9,2019,10,2,40,40,1,2,0,11.915513,11.915513,0,0,0,0,0,1,1,0,0,0,51.71,59.93,41.71,59.04,8.333333333333334,1,1,0,0,5,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 -3914,4835,8650,-9,8651,8649,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.43616,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 -3914,4835,8651,8649,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,22,-3,-14.065971,0,3,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.71,59.04,51.71,59.93,8.333333333333334,1,1,1,0,3,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 -3914,4835,8652,-9,8651,8649,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.498,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.0022366,0,54.2,57.49,-9,-9,10,1,1,0,0,0,7,3,0,771,1349828.6,74745.07,998256.81,233328.19,2328.9792 -3915,4836,8653,-9,8655,8656,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.0202,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 -3915,4836,8654,-9,8655,8656,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.09479,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 -3915,4836,8655,8656,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,4,-5,-120.14612,0,2,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,59.6,46.99,8.333333333333334,1,1,0,0,5,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 -3915,4836,8656,8655,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,9.3661032,9.4721642,0,4,5,-62.042252,0,-9,-9,2019,6,1,55,40,1,1,0,22.607224,22.607224,0,0,0,0,0,1,1,0,0,0,59.6,46.99,30.94,61.65,8.333333333333334,1,1,0,0,4,9,5,1,595,-44668.223,48889.727,216828.78,180603.81,3104.7341 -3916,4837,8657,8658,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.4751406,8.8366642,45,-3,-37.569729,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2692504,8.4747686,59.43,58.05,58.11,43.89,8.333333333333334,1,1,0,0,7,9,5,1,363,3545331,2697364.8,634192.44,0,5345.2583 -3916,4837,8658,8657,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.6357403,8.1909361,7,3,-78.58902,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1122303,7.8103347,58.11,43.89,59.43,58.05,8.333333333333334,1,1,0,0,0,9,5,1,363,3545331,2697364.8,634192.44,0,5345.2583 -3917,4838,8659,8660,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9603009,7.7751312,0,33,-12,-31.169409,0,2,1,2019,14,3,34,34,1,3,0,8.8219566,8.8219566,0,0,0,0,0,1,1,0,0,0,47.01,55.33,39.98,36.02,8.333333333333334,1,1,0,0,11,4,4,1,615,383567.66,576183.69,261003.19,69333.031,2844.845 -3917,4838,8660,8659,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.9938288,7.7952318,33,12,58.529064,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,7.8328295,39.98,36.02,47.01,55.33,3.333333333333333,1,1,0,0,6,4,4,1,615,383567.66,576183.69,261003.19,69333.031,2844.845 -3918,4839,8661,8662,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4047818,6.3469,11,-6,32.160633,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,6.3008752,0,0,1,1,0,0,6.3825226,61.28,48.88,63.01,30.77,8.333333333333334,1,1,0,0,0,5,2,1,218.5,70188.359,168347.78,0,0,1617.4917 -3918,4839,8662,8661,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.6427236,7.0698233,63,6,157.61456,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,85.544258,0,0,1,1,0,0,6.8902154,63.01,30.77,61.28,48.88,8.333333333333334,1,1,0,0,0,5,2,1,218.5,70188.359,168347.78,0,0,1617.4917 -3919,4840,8663,8664,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,3.6777151,3.7317712,44,1,-108.35771,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,3.2920353,0,0,1,1,0,0,3.4778297,43.2,53.21,52.33,39.14,8.333333333333334,1,1,0,0,2,1,2,1,1037.5,248770.47,90084.391,269830.22,0,1839.4202 -3919,4840,8664,8663,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3715243,6.5720139,44,-1,21.56678,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.2541158,6.5101156,52.33,39.14,43.2,53.21,8.333333333333334,1,1,0,0,0,1,2,1,1037.5,248770.47,90084.391,269830.22,0,1839.4202 -3920,4841,8665,-9,8667,8666,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-874.55988,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,4,1,1397.3334,406612.19,138963.86,306277.72,74561.977,2867.9385 -3920,4841,8666,8667,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.6232357,8.5259361,0,5,11,13.12839,0,3,3,2019,4,0,56,49,1,0,0,11.767015,11.767015,0,0,0,0,0,1,1,0,1.2678558,0,59.14,52.5,51.14,60.45,8.333333333333334,1,1,0,0,6,11,4,1,1397.3334,406612.19,138963.86,306277.72,74561.977,2867.9385 -3920,4841,8667,8666,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.9629693,8.1545095,0,5,-11,-97.946457,0,2,2,2019,12,2,39,39,1,2,0,7.7105289,7.7105289,0,0,0,0,0,1,1,0,0,0,51.14,60.45,59.14,52.5,10,1,1,0,0,6,11,4,1,1397.3334,406612.19,138963.86,306277.72,74561.977,2867.9385 -3921,4842,8668,8669,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.1914611,7.0936456,31,-21,37.788376,0,3,3,2019,9,1,0,38,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.4592648,38.13,47.46,57.06,57.76,8.333333333333334,1,1,0,0,8,11,2,1,631,443598.06,129555.8,217322.13,0,1587.5002 -3921,4842,8669,8668,-9,-9,1,1,84,0,0,0,1,1,-9,0,5,0,6.1570888,6.0790162,31,21,129.75418,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3726959,57.06,57.76,38.13,47.46,8.333333333333334,1,1,0,0,1,11,2,1,631,443598.06,129555.8,217322.13,0,1587.5002 -3922,4843,8670,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1128.2728,-9,3,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.81,24.69,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,310,-133486.28,0,0,0,1783.5177 -3923,4844,8671,8672,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.6312819,8.6876841,0,5,-3,12.780507,-9,-9,-9,2019,7,0,33,0,1,0,0,21.38802,21.38802,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.11,54.04,10,1,1,0,0,1,12,4,1,846.5,-41071.688,55305.949,232109.75,139236.2,3717.5981 -3923,4844,8672,8671,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,6.1373954,6.5378618,0,5,3,-154.21237,0,1,3,2019,9,0,7,37,1,0,0,9.7380095,9.7380095,0,0,0,0,0,0,0,0,8.5135641,0,50.11,54.04,54.1,59.11,10,1,1,0,0,12,12,4,1,846.5,-41071.688,55305.949,232109.75,139236.2,3717.5981 -3924,4845,8673,-9,8674,8676,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.88367,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 -3924,4845,8674,8676,-9,-9,1,0,42,0,2,0,2,2,-9,1,2,6.2894034,6.4273667,0,19,3,-23.286322,0,2,2,2019,12,1,30,0,1,1,0,1.9911666,1.9911666,0,0,0,0,27,1,1,0,0,0,53.31,20.39,57.33,53.46,8.333333333333334,1,1,0,0,8,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 -3924,4845,8675,-9,8674,8676,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.9154,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 -3924,4845,8676,8674,-9,-9,1,1,39,0,2,0,3,3,-9,1,3,7.4506884,7.8634629,6.7542186,19,-3,35.141052,0,-9,-9,2019,9,0,25,32,1,0,0,8.2633572,8.2633572,0,0,0,0,0,1,1,0,6.0428843,0,57.33,53.46,53.31,20.39,8.333333333333334,1,1,0,0,9,2,3,0,1207.75,-154.00781,-6085.6001,0,0,3597.3972 -3925,4846,8677,8678,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.6367645,7.9247031,0,30,0,27.488108,0,2,3,2019,11,0,25,35,1,0,0,11.558703,11.558703,0,0,0,0,14.5,1,1,0,0,0,51.19,52.17,61.35,20.79,8.333333333333334,1,1,0,0,11,5,3,0,503.5,913382.31,391618,398035.75,0,1860.2329 -3925,4846,8678,8677,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.0494514,6.7645202,3,9,89.613487,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,5.0067501,0,0,1,1,0,4.9155202,6.7778239,61.35,20.79,51.19,52.17,3.333333333333333,1,1,0,0,6,5,3,0,503.5,913382.31,391618,398035.75,0,1860.2329 -3926,4847,8679,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.5075774,7.7053561,0,0,-930.42926,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2720814,7.7818766,50.79,51.1,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,863,456389.16,358623.47,41211.254,0,2034.2355 -3927,4848,8680,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1042.2498,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.0635433,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,10,1,1,910,409328.41,0,231359.97,0,711.08209 -3928,4849,8681,8682,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5034246,8.7495041,0,1,5,140.74095,-9,-9,-9,2019,7,0,54,0,1,0,0,9.0167551,9.0167551,0,0,0,0,0,0,0,0,0,0,63.1,45.09,49.27,56.95,8.333333333333334,1,1,0,0,1,12,5,1,686,636934.13,377273.19,124423.69,5731.5117,3043.1851 -3928,4849,8682,8681,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.412324,8.3819094,0,1,-5,-6.3605728,-9,2,2,2019,7,0,40,0,1,0,0,11.962853,11.962853,0,0,0,0,0,0,0,0,0,0,49.27,56.95,63.1,45.09,8.333333333333334,1,1,0,0,8,12,5,1,686,636934.13,377273.19,124423.69,5731.5117,3043.1851 -3928,4850,8683,-9,8682,-9,1,0,21,0,0,0,2,2,-9,0,4,7.924417,7.9788818,0,0,0,-943.05017,-9,2,-9,2019,8,0,40,0,1,0,1,8.0342779,8.0342779,0,0,0,0,0,0,0,0,0,0,66.06,38.34,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,662,76209.758,22028.244,0,0,1183.2816 -3928,4851,8684,-9,8682,-9,1,1,19,0,0,0,2,2,-9,0,4,7.9846463,7.8804345,0,0,0,-891.61011,-9,2,-9,2019,7,0,35,0,1,0,1,9.0138683,9.0138683,0,0,0,0,0,0,0,0,.93858534,0,58.55,46.11,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,426,237102.25,67349,0,0,1694.6683 -3929,4852,8685,8686,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,7.5579977,7.4590707,0,28,2,-13.144906,0,2,2,2019,7,0,20,17,1,0,0,11.23341,11.23341,0,0,0,0,0,0,0,0,.58467013,0,54.1,59.11,60.12,54.8,8.333333333333334,1,1,0,0,10,8,5,1,850.5,253178.81,331739.19,0,0,5733.3184 -3929,4852,8686,8685,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.5548763,9.2753601,0,7,-2,57.447239,0,2,3,2019,6,0,43,43,1,0,0,36.796448,36.796448,0,0,0,0,0,0,0,0,4.1890755,0,60.12,54.8,54.1,59.11,10,1,1,0,0,10,8,5,1,850.5,253178.81,331739.19,0,0,5733.3184 -3929,4853,8687,-9,8685,8686,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-933.12042,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.305402,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,1706,0,0,0,0,158.50246 -3930,4854,8688,8689,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,6.9338021,6.5817142,0,28,10,-64.313782,0,3,-9,2019,33,12,15,27,1,12,0,6.5944576,6.5944576,0,0,0,0,0,1,1,0,0,0,28.84,41.06,39.43,60.46,5,1,1,0,0,9,9,4,1,768.5,83793.594,104203.55,233231.28,26474.285,3110.6177 -3930,4854,8689,8688,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.8372231,8.6187057,0,28,-10,1.5209893,0,3,2,2019,11,3,42,41,1,3,0,14.128494,14.128494,0,0,0,0,0,1,1,0,.85324043,0,39.43,60.46,28.84,41.06,1.666666666666667,1,1,0,0,8,9,4,1,768.5,83793.594,104203.55,233231.28,26474.285,3110.6177 -3931,4855,8690,-9,8691,8692,1,1,25,0,0,0,2,2,-9,1,3,0,0,0,0,0,-936.55756,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,32.35,55.36,-9,-9,5,1,1,1,0,0,2,1,0,538,0,0,0,0,888.76373 -3931,4856,8691,8692,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,4,-5,0,0,-9,-9,2019,29,12,0,10,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,29.19,19.44,39.49,51.79,0,1,1,0,1,1,2,1,0,952,528297.56,0,173226.34,0,-45.452892 -3931,4856,8692,8691,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,4,5,0,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,0,39.49,51.79,29.19,19.44,5,1,1,0,0,0,2,1,0,952,528297.56,0,173226.34,0,-45.452892 -3932,4857,8693,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.62217,7.9059796,0,0,0,-986.7962,-9,2,3,2019,12,1,40,0,1,1,0,4.6225986,4.6225986,0,0,0,0,0,0,0,0,0,0,52.65,44.92,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,610,-364095.59,0,0,0,1344.9259 -3933,4858,8694,-9,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.1410475,8.1587934,0,0,-1049.9481,0,3,1,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.1394825,8.0281324,53.29,45.74,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,582,838854.94,328070.31,301168.5,0,2206.7856 -3934,4859,8695,8696,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,9.126195,9.1669006,0,17,-13,-36.27681,0,2,2,2019,7,1,40,38,1,1,0,24.735649,24.735649,0,0,0,0,0,0,0,0,.80166674,0,54.97,47.63,54.79,39.95,6.666666666666667,1,1,0,0,9,5,5,0,560.5,1236917.4,993141.63,224448.78,31085.721,4141.1377 -3934,4859,8696,8695,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4344406,8.1591682,0,17,13,32.225319,0,2,2,2019,10,0,40,25,1,0,0,10.969519,10.969519,0,0,0,0,0,0,0,0,0,0,54.79,39.95,54.97,47.63,3.333333333333333,1,1,0,0,7,5,5,0,560.5,1236917.4,993141.63,224448.78,31085.721,4141.1377 -3935,4860,8697,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,5.0668411,4.9359813,0,0,-945.9848,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.5026379,5.0384097,46.41,37.03,-9,-9,5,1,1,0,0,0,7,2,1,619,16190.948,-64388.031,0,0,1021.8613 -3936,4861,8698,8699,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6319847,7.626729,0,42,-2,-5.8494291,0,3,-9,2019,10,0,38,40,1,0,0,5.8869033,5.8869033,0,0,0,0,7,1,1,0,0,0,37.34,55.42,60.06,37.11,8.333333333333334,1,1,0,0,10,11,3,0,289.33334,-43650.063,0,97840.039,48260.914,2126.2759 -3936,4861,8699,8698,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.2433419,6.6807542,42,2,-146.13106,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.0570545,60.06,37.11,37.34,55.42,8.333333333333334,1,1,0,0,0,11,3,0,289.33334,-43650.063,0,97840.039,48260.914,2126.2759 -3936,4861,8700,-9,8698,8699,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-944.36133,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,11,3,0,289.33334,-43650.063,0,97840.039,48260.914,2126.2759 -3937,4862,8701,8702,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,0,0,50,1,0,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5710465,0,60.7,47.65,50,47,10,1,1,0,0,2,10,1,1,698,471172.25,56408,167265.33,0,1184.792 -3937,4862,8702,8701,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,0,0,7,-1,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,60.7,47.65,7,1,1,0,0,0,10,1,1,698,471172.25,56408,167265.33,0,1184.792 -3938,4863,8703,-9,8705,8704,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.711,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,740,211052.72,29151.621,139229.66,53130.48,1669.2832 -3938,4863,8704,8705,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,7.7490411,7.6149263,0,2,2,136.27567,0,2,2,2019,14,3,84,42,1,3,0,3.7810566,3.7810566,0,0,0,0,7,1,1,0,0,0,35.79,48.98,30.29,53.99,5,1,1,0,0,10,11,3,0,740,211052.72,29151.621,139229.66,53130.48,1669.2832 -3938,4863,8705,8704,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.4903851,7.5033221,0,2,-2,-36.31966,0,3,3,2019,12,1,37,36,1,1,0,7.4472952,7.4472952,0,0,0,0,2,1,1,0,0,0,30.29,53.99,35.79,48.98,5,1,1,0,0,9,11,3,0,740,211052.72,29151.621,139229.66,53130.48,1669.2832 -3939,4864,8706,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.3052759,9.3388128,0,6,-26,3.368201,0,3,2,2019,0,0,50,35,1,0,0,34.999771,34.999771,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.01,20.17,10,2,3,0,0,4,8,5,0,1343,243669.3,59883.563,0,0,4115.4336 -3939,4865,8707,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,6,26,28.088829,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.01,20.17,57.16,56.15,6.666666666666667,1,1,0,0,0,8,5,0,81,-165621.28,0,0,0,933.94952 -3940,4866,8708,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.4705443,7.3296514,0,0,0,-1069.5931,0,3,2,2019,6,0,20,20,1,0,0,10.03443,10.03443,0,0,0,0,0,1,1,0,0,0,58.96,39.65,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,877,479784.03,-32597.197,26392.441,0,917.82831 -3941,4867,8709,8710,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.923595,6.4003034,56,0,37.423412,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5748854,7.0437989,59.14,46.97,56.19,53.98,8.333333333333334,1,1,0,0,5,6,4,1,499,1214416.5,745532.38,361252.63,0,3914.8853 -3941,4867,8710,8709,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.8029084,8.3419085,56,0,-160.73766,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3893061,7.9522028,56.19,53.98,59.14,46.97,8.333333333333334,1,1,0,0,2,6,4,1,499,1214416.5,745532.38,361252.63,0,3914.8853 -3942,4868,8711,8712,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,57,-3,40.708221,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,0,8.7360544,3.8631968,0,1,1,0,4.1304383,0,49.46,31.52,60.44,36.05,10,1,1,0,0,0,5,3,1,1010.5,566262.63,208783.5,55596.059,0,2397.4102 -3942,4868,8712,8711,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.6888709,7.5433836,57,3,-73.204201,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0766854,7.5839353,60.44,36.05,49.46,31.52,10,1,1,0,0,0,5,3,1,1010.5,566262.63,208783.5,55596.059,0,2397.4102 -3943,4869,8713,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,1,0,6.8239441,6.8126945,0,0,-1005.3375,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,35.992714,0,0,1,1,0,.96813196,7.0609469,28.03,36.57,-9,-9,8.333333333333334,3,4,0,0,0,6,2,1,341,627272.44,189704.03,152043.27,0,716.65161 -3944,4870,8714,8715,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.726306,8.1450586,5,1,92.148239,0,3,3,2019,7,0,0,10,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.9335341,7.7355189,55.87,53.99,49.75,23.37,8.333333333333334,1,1,0,0,5,2,3,1,369,1312735.1,473265.13,234699.7,0,2948.5083 -3944,4870,8715,8714,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,5,-1,-91.814148,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2063494,0,49.75,23.37,55.87,53.99,8.333333333333334,1,1,0,0,0,2,3,1,369,1312735.1,473265.13,234699.7,0,2948.5083 -3945,4871,8716,8717,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.9316039,8.2049284,0,6,-13,-18.121845,0,3,3,2019,11,0,40,38,1,1,0,9.1895103,9.1895103,0,0,0,0,0,1,1,0,5.4876266,0,51,46,54.2,57.49,7,1,1,0,0,1,7,3,1,595.5,1558698.8,244011.91,570705.5,0,2183.6443 -3945,4871,8717,8716,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.525609,5.7271199,52,13,-14.11356,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5272465,54.2,57.49,51,46,8.333333333333334,1,1,0,0,0,7,3,1,595.5,1558698.8,244011.91,570705.5,0,2183.6443 -3946,4872,8718,8719,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.3308859,8.2248707,0,9,-12,40.765133,0,-9,-9,2019,11,0,16,16,1,2,0,30.549883,30.549883,0,0,0,0,0,1,1,0,.96147954,0,49,48,55.76,52.64,7,1,1,0,0,1,9,3,1,1283,1206627.3,89136.766,499317.03,0,3713.8442 -3946,4872,8719,8718,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,0,0,32,12,-58.241493,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3091745,0,55.76,52.64,49,48,8.333333333333334,1,1,0,0,0,9,3,1,1283,1206627.3,89136.766,499317.03,0,3713.8442 -3947,4873,8720,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,6.583993,6.739759,0,0,-1097.9102,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5622742,6.4151978,60.12,54.8,-9,-9,10,1,1,0,0,0,11,2,1,648,585613.19,122426.9,210440.06,0,2079.8154 -3948,4874,8721,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1065.5223,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,16.67,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,543,39100.301,0,0,0,1307.7848 -3949,4875,8722,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.2718287,8.643424,6.1989927,0,0,-856.6842,0,2,2,2019,25,11,37,37,1,11,0,12.750443,12.750443,0,0,0,0,0,1,1,0,7.4228539,0,32.11,60.74,-9,-9,3.333333333333333,1,1,0,0,8,1,4,1,690,102032.45,-4118.2661,156362.09,58848.891,1750.4482 -3949,4876,8723,-9,8722,-9,1,1,19,0,1,0,2,2,-9,0,4,8.2940016,8.5678167,0,0,0,-1021.6638,0,2,-9,2019,15,3,42,40,1,3,1,12.094247,12.094247,0,0,0,0,0,1,1,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,3,1,4,1,988,265194.47,10386.487,0,0,1119.3566 -3950,4877,8724,-9,8725,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-998.82898,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,1,0,1545,-239472.91,0,0,0,842.19257 -3950,4877,8725,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1050.7496,-9,-9,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.96,56.33,-9,-9,3.333333333333333,1,1,1,0,8,11,1,0,1545,-239472.91,0,0,0,842.19257 -3951,4878,8726,8727,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.7869501,7.8786993,0,6,10,-33.838573,0,-9,-9,2019,9,0,40,42,1,0,0,6.2637715,6.2637715,0,0,0,0,2,0,0,0,0,0,55.85,46.53,49.04,55.86,5,1,1,0,0,7,12,4,0,171.5,521674.31,290936.59,222588.13,33824.254,2994.3691 -3951,4878,8727,8726,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.9146676,7.8726077,0,6,-10,48.783115,0,-9,-9,2019,6,0,40,40,1,0,0,10.147933,10.147933,0,0,0,0,0,0,0,0,2.8283007,0,49.04,55.86,55.85,46.53,1.666666666666667,1,1,0,0,7,12,4,0,171.5,521674.31,290936.59,222588.13,33824.254,2994.3691 -3952,4879,8728,8729,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.3583479,7.964869,0,8,5,98.355766,0,-9,-9,2019,6,0,35,42,1,0,0,11.998959,11.998959,0,0,0,0,0,0,0,0,0,0,56.95,46.69,45.91,35.96,6.666666666666667,1,1,0,0,11,6,4,0,861.5,469283.66,218920.63,225891.03,96796.375,2470.0974 -3952,4879,8729,8728,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,7.7778497,8.04422,0,8,-5,6.1811948,0,3,3,2019,12,1,38,42,1,1,0,8.9423761,8.9423761,0,0,0,0,0,0,0,0,0,0,45.91,35.96,56.95,46.69,5,1,1,0,0,10,6,4,0,861.5,469283.66,218920.63,225891.03,96796.375,2470.0974 -3953,4880,8730,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.6735,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.74,37.13,-9,-9,6.666666666666667,4,5,0,0,0,8,1,0,118,-367252.03,0,0,0,1480.3107 -3953,4881,8731,-9,8730,-9,1,0,31,0,0,0,1,1,-9,0,2,8.1316719,8.4365664,0,0,0,-986.51666,0,2,-9,2019,10,2,20,17,1,2,0,17.125343,17.125343,0,0,0,0,0,1,1,0,0,0,47.39,52.89,-9,-9,8.333333333333334,4,5,0,0,2,8,4,0,725,127817.59,110647.01,84992.242,77822.758,1399.1376 -3954,4882,8732,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1051.3583,0,3,3,2019,17,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,25.38,30.76,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,876,339642.03,0,0,0,316.08627 -3955,4883,8733,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.93591,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.77,39.16,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,147,305158.47,0,70241.516,0,1403.3324 -3956,4884,8734,8735,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.7338514,7.9387937,53,3,-7.7565217,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,.41128179,7.783442,47.69,55.06,42.75,39.78,8.333333333333334,1,1,0,0,0,11,3,1,770,902701.56,588772.69,362981.06,0,1943.2563 -3956,4884,8735,8734,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,53,-3,86.401115,0,2,2,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.1510577,0,42.75,39.78,47.69,55.06,8.333333333333334,1,1,0,0,0,11,3,1,770,902701.56,588772.69,362981.06,0,1943.2563 -3957,4885,8736,8737,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2589178,8.9355364,0,6,-2,-95.788208,0,-9,-9,2019,9,0,45,50,1,1,0,18.826485,18.826485,0,0,0,0,0,0,0,0,3.0603552,0,54,53,57.16,56.15,8,1,1,0,0,1,9,5,1,493,91728.125,223475.28,318085.5,36655.191,4646.6934 -3957,4885,8737,8736,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.7419705,6.7390995,0,35,2,94.458084,0,3,2,2019,11,1,21,22,1,1,0,4.981842,4.981842,0,0,0,0,0,0,0,0,7.2125435,0,57.16,56.15,54,53,10,1,1,0,0,8,9,5,1,493,91728.125,223475.28,318085.5,36655.191,4646.6934 -3958,4886,8738,8739,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.2597814,7.0568767,43,-5,-117.72578,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.4042892,6.7409949,60.97,40.64,40.85,34.27,10,1,1,0,0,0,1,2,0,716,3302537.5,304815.13,367106.19,0,1283.3615 -3958,4886,8739,8738,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,43,5,-38.181847,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.8676353,0,40.85,34.27,60.97,40.64,8.333333333333334,1,1,0,0,4,1,2,0,716,3302537.5,304815.13,367106.19,0,1283.3615 -3959,4887,8740,8741,-9,-9,1,1,50,0,0,0,1,1,-9,1,4,0,0,0,27,2,-129.1924,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,4.8774943,0,53,54,27.17,31.19,8,2,3,0,0,0,8,4,1,1149.5,148240.75,0,0,0,2155.8628 -3959,4887,8741,8740,-9,-9,1,0,48,0,0,0,1,1,-9,1,2,8.5816116,8.4188061,0,27,-2,134.84785,0,3,1,2019,29,12,43,38,1,12,0,14.432543,14.432543,0,0,0,0,0,1,1,0,0,0,27.17,31.19,53,54,1.666666666666667,2,3,0,0,9,8,4,1,1149.5,148240.75,0,0,0,2155.8628 -3959,4888,8742,-9,8741,8740,1,1,23,0,0,0,1,1,1,0,4,0,0,0,0,0,-1043.1361,-9,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,1,734,321741.97,0,0,0,0 -3959,4889,8743,-9,8741,8740,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-903.047,-9,1,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,1,1,1055,14560.892,0,0,0,0 -3960,4890,8744,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,0,7.4172726,7.6451402,0,0,-1142.5748,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,4.5411224,7.5446801,31.26,61.3,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,274,18696.484,-28493.123,229891.64,0,618.39661 -3960,4891,8745,-9,8744,-9,1,1,23,0,0,0,2,2,-9,0,3,7.3148308,7.5352926,0,0,0,-1000.4904,0,2,-9,2019,12,0,40,40,1,0,1,4.5929637,4.5929637,0,0,0,0,0,0,0,0,4.6315579,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,1170,227403.83,2785.6025,0,0,761.75873 -3960,4892,8746,-9,8744,-9,1,1,19,0,0,0,2,2,1,0,4,7.256814,7.2232347,0,0,0,-1112.0142,-9,2,-9,2019,10,0,16,0,1,0,1,10.809743,10.809743,0,0,0,0,0,0,0,0,3.7618062,0,48.06,53.4,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,928,-91591.727,39045.352,0,0,1158.9476 -3961,4893,8747,8748,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.4086423,5.4811687,10,-1,-67.528297,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.23085,5.7280693,52,45,51.26,50.95,8,4,5,0,0,0,2,2,1,1257,452234.75,152320.34,117260.78,55029.84,1647.3264 -3961,4893,8748,8747,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,5.1842213,5.2466965,10,1,-14.57193,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6984701,5.3094268,51.26,50.95,52,45,8.333333333333334,2,3,0,0,0,2,2,1,1257,452234.75,152320.34,117260.78,55029.84,1647.3264 -3962,4894,8749,8750,-9,-9,1,1,70,1,2,0,1,1,-9,0,3,0,7.979002,8.0236206,49,-1,-12.521008,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.0936418,7.9229727,59.01,44.42,55.21,43.87,8.333333333333334,1,1,0,0,7,9,3,1,462.5,593350.06,395321.91,217424.94,0,3436.7871 -3962,4894,8750,8749,-9,-9,1,0,71,1,2,0,1,1,-9,0,2,0,7.0468488,6.7546744,49,1,-54.267349,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,42,1,1,0,0,7.0944986,55.21,43.87,59.01,44.42,6.666666666666667,1,1,0,0,5,9,3,1,462.5,593350.06,395321.91,217424.94,0,3436.7871 -3962,4895,8751,8753,8750,8749,1,0,38,1,2,0,2,2,-9,0,1,7.7898493,7.9143419,0,6,5,30.340061,0,1,1,2019,36,12,18,18,1,12,0,19.38076,19.38076,0,0,0,0,5.48,1,1,0,0,0,14.34,28.84,44.92,38.85,1.666666666666667,1,1,0,1,4,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 -3962,4895,8752,-9,8751,8753,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.7406,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 -3962,4895,8753,8751,-9,-9,1,1,33,1,2,0,2,2,-9,1,2,0,0,0,6,-5,-44.228134,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.92,38.85,14.34,28.84,5,1,1,0,0,0,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 -3962,4895,8754,-9,8751,8753,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.45294,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,1,891.25,1387.6147,-25184.09,0,0,2621.7517 -3963,4896,8755,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.2474618,7.2157707,0,0,-1001.6851,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1848655,7.3032403,58.15,52.91,-9,-9,10,1,1,0,0,7,6,3,1,92,856757.25,581840.56,127678.52,0,2529.6836 -3964,4897,8756,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.2660947,6.2195616,0,0,-962.48621,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,6.9860001,0,41.59,61.77,-9,-9,8.333333333333334,1,1,0,0,4,10,2,0,1234,169443.5,0,0,0,1180.2675 -3965,4898,8757,-9,8758,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-931.07526,0,3,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,27.17,33.92,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,762,-66236.797,0,0,0,1851.9771 -3965,4899,8758,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.7748699,6.983387,0,0,-1072.7949,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,199.81332,0,0,1,1,0,3.4532905,6.8134694,53,44,-9,-9,8,1,1,0,0,0,12,2,1,517,103160.36,101573.55,66575.414,0,1116.6295 -3965,4900,8759,-9,8758,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1023.5357,0,3,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.04,29.11,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,1116,15883.271,0,0,0,1599.8027 -3966,4901,8760,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,6.9708695,7.2973456,0,0,-1084.3771,0,3,3,2019,4,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1974878,7.0297852,46.08,57.2,-9,-9,10,1,1,0,0,7,5,3,1,701,590954.69,395858.22,165638.06,0,452.31598 -3967,4902,8761,8763,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.5122137,8.4326019,0,25,1,76.141998,0,3,3,2019,12,0,45,46,1,0,0,13.709852,13.709852,0,0,0,0,0,1,1,0,1.4510436,0,40.48,60.05,43.76,55.68,6.666666666666667,1,1,0,0,10,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 -3967,4902,8762,-9,8763,8761,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.999,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 -3967,4902,8763,8761,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.5154543,8.5172567,0,27,-1,-47.991184,0,1,3,2019,7,1,45,37,1,1,0,12.783942,12.783942,0,0,0,0,0,1,1,0,0,0,43.76,55.68,40.48,60.05,8.333333333333334,1,1,0,0,8,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 -3967,4902,8764,-9,8763,8761,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.5304,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,2,4,0,923.75,1306520.1,924382.88,274168.63,49173.359,3808.3816 -3967,4903,8765,-9,8763,8761,1,0,21,0,2,0,1,1,1,0,5,0,0,0,0,0,-964.06964,-9,2,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,205,335659.59,0,0,0,7.6385751 -3967,4904,8766,-9,8763,8761,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-985.43884,-9,2,1,2019,22,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,25.48,64.05,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,394,0,0,0,0,-94.505188 -3968,4905,8767,8768,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.8341999,8.7834845,0,6,2,15.329875,0,3,2,2019,16,5,70,60,1,5,0,12.206491,12.206491,0,0,0,0,0,1,1,0,0,0,40.93,38.55,43.18,47.7,5,1,1,0,0,9,5,4,1,1519.6666,1525199.5,958621.31,273214.38,0,3429.8757 -3968,4905,8768,8767,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.6027398,7.3531842,0,20,-2,-129.97792,0,3,3,2019,11,0,23,22,1,0,0,6.7274351,6.7274351,0,0,0,0,0,1,1,0,0,0,43.18,47.7,40.93,38.55,6.666666666666667,1,1,0,0,9,5,4,1,1519.6666,1525199.5,958621.31,273214.38,0,3429.8757 -3968,4905,8769,-9,8768,8767,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-978.21942,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,.38268474,0,1,1,0,0,0,46.06,57.72,-9,-9,10,1,1,0,0,0,5,4,1,1519.6666,1525199.5,958621.31,273214.38,0,3429.8757 -3969,4906,8770,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.2105846,8.330513,0,0,0,-939.45264,0,1,2,2019,6,0,37,37,1,0,0,14.015484,14.015484,0,0,0,0,0,0,0,0,0,0,53.89,49.75,-9,-9,6.666666666666667,1,1,0,0,8,9,4,0,117,235402.02,58198.789,226098.09,61041.02,1270.9475 -3970,4907,8771,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.8385386,6.2315187,0,0,-1054.2542,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5233603,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,304,360695.47,366468.91,0,0,626.30322 -3971,4908,8772,-9,8775,-9,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1067.8901,-9,3,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,4,2,-9,0,0,8,3,1,461.75,-5759.417,0,0,0,3561.9319 -3971,4908,8773,-9,8775,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-822.34564,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,1,461.75,-5759.417,0,0,0,3561.9319 -3971,4908,8774,-9,8775,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-922.0769,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,4,2,-9,0,0,8,3,1,461.75,-5759.417,0,0,0,3561.9319 -3971,4908,8775,-9,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,8.1171532,8.2701483,0,0,0,-943.7981,0,2,2,2019,21,10,8,25,1,10,0,49.131493,49.131493,0,0,0,0,0,1,1,0,7.6294184,0,25.14,68.03,-9,-9,1.666666666666667,1,1,0,0,3,8,3,1,461.75,-5759.417,0,0,0,3561.9319 -3972,4909,8776,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1092.7838,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,1.2140712,0,0,1,1,0,0,0,51.45,42.88,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,263,142653.28,0,0,0,11.391966 -3973,4910,8777,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.8320847,7.1952848,5.2489967,0,0,-1130.9636,-9,-9,-9,2019,13,2,19,0,1,2,0,5.7722034,5.7722034,0,0,0,0,0,1,1,0,5.3994031,0,40.62,44.35,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,575,-153662.97,42113.422,0,0,958.18585 -3973,4910,8778,-9,8777,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0663,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,575,-153662.97,42113.422,0,0,958.18585 -3974,4911,8779,8780,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.2875967,6.325861,58,0,5.8155408,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.9680719,6.1919827,48.23,44.06,59.01,44.42,8.333333333333334,1,1,0,0,0,13,3,1,599,462487.13,265827.75,149229.78,0,2863.5857 -3974,4911,8780,8779,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.5586181,7.2975621,58,0,-88.242294,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4817743,7.2266226,59.01,44.42,48.23,44.06,5,1,1,0,0,0,13,3,1,599,462487.13,265827.75,149229.78,0,2863.5857 -3975,4912,8781,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1059.2034,0,3,-9,2019,19,7,0,0,4,7,0,0,0,1,0,19.072433,0,0,1,1,0,0,0,23.69,24.46,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,800,-44930.516,0,0,0,1384.04 -3975,4913,8782,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8577752,8.0379934,0,0,0,-844.91663,0,-9,-9,2019,6,1,48,42,1,1,0,6.7580471,6.7580471,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,10,1,1,0,0,2,4,4,0,159,206721.08,0,0,0,1211.1888 -3976,4914,8783,-9,8785,8784,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.3793,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,4,0,1322.6666,129890.7,-29510.988,215415.44,150070.55,2997.2229 -3976,4914,8784,8785,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.4558067,8.2508793,0,7,0,-85.606689,0,1,1,2019,17,5,44,48,1,5,0,11.53656,11.53656,0,0,0,0,0,1,1,0,2.2084081,0,34.19,60.03,52.4,55.58,6.666666666666667,1,1,0,0,7,13,4,0,1322.6666,129890.7,-29510.988,215415.44,150070.55,2997.2229 -3976,4914,8785,8784,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.8195105,7.752027,0,7,0,-89.224823,0,-9,-9,2019,8,0,15,0,1,0,0,16.117825,16.117825,0,0,0,0,0,1,1,0,2.2398055,0,52.4,55.58,34.19,60.03,8.333333333333334,1,1,0,0,1,13,4,0,1322.6666,129890.7,-29510.988,215415.44,150070.55,2997.2229 -3977,4915,8786,8787,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.5063949,7.3008189,39,1,-61.228649,-9,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7121968,7.2289782,58.32,50.22,51.06,35.25,10,1,1,0,0,10,8,3,1,336.5,1530522.5,809603.94,632304.25,0,2464.7515 -3977,4915,8787,8786,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.0190139,6.1649137,1,-1,-61.867718,-9,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.268724,51.06,35.25,58.32,50.22,8.333333333333334,1,1,0,0,0,8,3,1,336.5,1530522.5,809603.94,632304.25,0,2464.7515 -3978,4916,8788,8789,-9,-9,1,1,32,0,2,0,3,3,-9,0,4,6.5470047,6.7785425,0,2,1,31.306385,0,-9,-9,2019,7,1,20,40,1,1,0,5.491303,5.491303,0,0,0,0,0,1,1,0,0,0,67.84999999999999,34.85,57.03,48.06,8.333333333333334,2,3,0,0,0,9,3,0,350,-244427.25,0,0,0,2184.7815 -3978,4916,8789,8788,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.8116369,8.0243912,0,2,-1,12.193482,0,1,2,2019,9,1,55,43,1,1,0,5.3866796,5.3866796,0,0,0,0,0,1,1,0,0,0,57.03,48.06,67.84999999999999,34.85,8.333333333333334,1,1,0,0,6,9,3,0,350,-244427.25,0,0,0,2184.7815 -3978,4916,8790,-9,8789,8788,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.63251,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,350,-244427.25,0,0,0,2184.7815 -3978,4916,8791,-9,8789,8788,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.8439,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,350,-244427.25,0,0,0,2184.7815 -3979,4917,8792,8793,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,8,2,-121.06557,0,3,2,2019,13,2,0,0,4,2,0,0,0,1,0,.4701128,0,0,1,1,0,.19314107,0,41.91,53.55,56.46,38.75,8.333333333333334,1,1,0,0,0,9,2,1,215,667534.31,206337.81,682152.5,0,1797.9303 -3979,4917,8793,8792,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.7578473,5.6424289,8,-2,83.583771,0,3,3,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,1.9640317,5.4068451,56.46,38.75,41.91,53.55,8.333333333333334,1,1,0,0,0,9,2,1,215,667534.31,206337.81,682152.5,0,1797.9303 -3980,4918,8794,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,6.8338599,6.9528294,0,34,-5,53.890957,0,-9,-9,2019,33,12,12,12,1,12,0,7.6964216,7.6964216,0,0,0,0,0,1,1,0,0,0,25.41,47.01,55.09,55.87,3.333333333333333,1,1,0,0,11,10,2,0,861,-15867.104,-52915.715,0,0,239.00148 -3980,4919,8795,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,6.8200278,6.8783841,0,34,5,166.91011,0,2,2,2019,9,0,48,36,1,0,0,2.2253206,2.2253206,0,0,0,0,0,1,1,0,.39894235,0,55.09,55.87,25.41,47.01,8.333333333333334,1,1,0,0,9,10,2,0,526,-233091,-782.82025,0,0,548.25934 -3981,4920,8796,-9,8797,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.2725,1,1,-9,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,.99142897,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,2216.5,318299.06,260794.31,281038.81,0,1355.9502 -3981,4920,8797,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.9537387,8.2797394,0,0,0,-1053.7653,0,3,2,2019,11,1,30,30,1,1,0,12.261596,12.261596,0,0,0,0,0,1,0,1,2.6590812,0,41.65,60.41,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,2216.5,318299.06,260794.31,281038.81,0,1355.9502 -3982,4921,8798,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,6.4121513,6.7509303,0,0,-1022.0698,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.4771724,31.9,19.36,-9,-9,4,1,1,0,1,3,9,2,0,142,537613.75,-41805.938,83957.391,0,1261.8901 -3983,4922,8799,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.6011028,7.7857175,5.1117988,0,0,-963.90894,0,2,2,2019,12,0,28,21,1,0,0,8.4077606,8.4077606,0,0,0,0,0,1,0,1,4.8801928,0,38.39,40.89,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,997,-245457.34,-51970.707,0,0,1584.8339 -3983,4923,8800,-9,8799,-9,1,1,23,0,1,0,2,2,-9,0,4,7.0079451,6.9906225,0,0,0,-992.73602,0,2,-9,2019,12,1,56,40,1,1,1,1.9631126,1.9631126,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,13,2,0,3168,63683.328,-123998.97,0,0,702.61908 -3984,4924,8801,-9,8803,8804,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.3864,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 -3984,4924,8802,-9,8803,8804,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1065.8735,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,10,1,1,0,0,0,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 -3984,4924,8803,8804,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1623516,8.0467157,0,24,-1,-117.51611,0,2,2,2019,10,0,41,38,1,0,0,10.721375,10.721375,0,0,0,0,0,1,1,0,1.7927876,0,54.74,57.22,59.43,58.05,5,1,1,0,0,10,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 -3984,4924,8804,8803,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,8.847928,8.5901499,0,8,1,45.796124,0,-9,-9,2019,8,0,44,41,1,0,0,14.536433,14.536433,0,0,0,0,0,1,1,0,2.6591675,0,59.43,58.05,54.74,57.22,5,1,1,0,0,10,10,4,1,1332.75,197744.61,47431.98,269453.03,113181.34,3663.0547 -3985,4925,8805,8806,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,8.0595236,7.982636,0,20,4,58.917377,0,2,2,2019,15,4,53,46,1,4,0,7.2991109,7.2991109,0,0,0,0,0,0,0,0,4.2672153,0,46.63,59.72,43.89,41.87,8.333333333333334,1,1,0,0,10,5,5,1,2292,978777.5,998735.63,152197.5,7106.6602,3336.1262 -3985,4925,8806,8805,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.1827326,8.563879,6.6445093,20,-4,-34.183155,0,3,2,2019,9,2,55,45,1,2,0,8.3607416,8.3607416,0,0,0,0,0,0,0,0,5.9881272,0,43.89,41.87,46.63,59.72,8.333333333333334,1,1,0,0,9,5,5,1,2292,978777.5,998735.63,152197.5,7106.6602,3336.1262 -3986,4926,8807,8808,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.5806613,5.589571,52,-2,-76.181435,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,2.8640463,0,0,1,1,0,4.0373249,5.7165418,52.01,48.98,54.14,58.86,8.333333333333334,1,1,0,0,0,10,3,1,704.5,170208.94,231532.44,-9507.3545,0,2385.022 -3986,4926,8808,8807,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.4314661,7.5674562,52,2,-10.818509,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9341848,7.9532266,54.14,58.86,52.01,48.98,10,1,1,0,0,0,10,3,1,704.5,170208.94,231532.44,-9507.3545,0,2385.022 -3987,4927,8809,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1000.788,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.78,49.39,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,165,784071.31,46323.539,364313.06,0,588.18433 -3988,4928,8810,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.3186512,6.5692544,0,0,-1064.7904,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,1.4671742,6.3733368,36.66,60.05,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,846,199493.39,112317.43,0,0,1022.222 -3989,4929,8811,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,7.796525,8.0448618,0,0,-1030.2435,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.80204004,8.1573877,53.57,44.13,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,260,632240.75,187625.91,0,0,1415.821 -3990,4930,8812,8813,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.8569293,7.6121187,0,7,7,119.87082,0,-9,-9,2019,11,0,50,38,1,0,0,6.2862763,6.2862763,0,0,0,0,0,0,0,0,0,0,29.35,54.09,28.41,64.05,3.333333333333333,1,1,0,0,6,12,4,0,913.5,437909.66,242292.84,195663.38,63214.141,2707.6672 -3990,4930,8813,8812,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.8199625,7.8827972,0,7,-7,171.25386,0,-9,-9,2019,22,10,34,34,1,10,0,8.1918974,8.1918974,0,0,0,0,0,0,0,0,0,0,28.41,64.05,29.35,54.09,8.333333333333334,1,1,0,0,8,12,4,0,913.5,437909.66,242292.84,195663.38,63214.141,2707.6672 -3991,4931,8814,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6506357,8.7791166,0,0,0,-939.88123,0,3,3,2019,13,1,40,40,1,1,0,19.700096,19.700096,0,0,0,0,0,0,0,0,.34834507,0,57.37,42.34,-9,-9,5,1,1,0,0,9,1,5,1,292,729652.25,394505.94,353459.66,0,1227.1246 -3992,4932,8815,8818,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.4871092,8.45928,0,20,-4,-50.787495,0,2,2,2019,7,0,31,33,1,0,0,15.725242,15.725242,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.65,55.59,8.333333333333334,1,1,0,0,12,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 -3992,4932,8816,-9,8815,8818,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.67529,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 -3992,4932,8817,-9,8815,8818,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.0578,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 -3992,4932,8818,8815,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.3703756,8.4123955,0,21,4,11.420147,0,2,2,2019,9,0,37,38,1,0,0,13.860392,13.860392,0,0,0,0,0,1,1,0,2.3304682,0,46.65,55.59,54.1,59.11,8.333333333333334,1,1,0,0,12,10,4,1,468.25,2882062,88625.281,984427.06,0,3448.8306 -3993,4933,8819,-9,8821,8820,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1011.6167,1,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,1,0,12,5,1,320.33334,1309342.1,751540.63,312898.53,0,2810.4534 -3993,4933,8820,8821,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.0541172,8.7887716,0,9,2,-56.266846,0,3,3,2019,8,0,45,50,1,0,0,18.434135,18.434135,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.82,53.97,8.333333333333334,1,1,0,0,10,12,5,1,320.33334,1309342.1,751540.63,312898.53,0,2810.4534 -3993,4933,8821,8820,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,5.3884506,6.223074,9,-2,27.945547,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4268894,52.82,53.97,51.83,57.2,8.333333333333334,1,1,0,0,0,12,5,1,320.33334,1309342.1,751540.63,312898.53,0,2810.4534 -3994,4934,8822,-9,8824,8823,1,1,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-955.65039,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.04,51.3,-9,-9,8.333333333333334,1,1,1,0,0,10,2,1,1492.6666,1598384.3,275802.16,1327610.9,161914.13,934.70459 -3994,4934,8823,8824,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,0,0,0,10,2,-32.730145,0,-9,-9,2019,9,0,0,81,3,0,0,0,0,0,0,0,0,0,1,1,0,2.0046892,0,55.09,55.87,52,54.51,6.666666666666667,1,1,1,0,12,10,2,1,1492.6666,1598384.3,275802.16,1327610.9,161914.13,934.70459 -3994,4934,8824,8823,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,6.5195251,6.3631711,0,10,-2,-22.193207,0,2,2,2019,8,1,40,24,1,1,0,2.2236919,2.2236919,0,0,0,0,0,1,1,0,0,0,52,54.51,55.09,55.87,8.333333333333334,1,1,0,0,11,10,2,1,1492.6666,1598384.3,275802.16,1327610.9,161914.13,934.70459 -3995,4935,8825,-9,8826,8828,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.2221,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 -3995,4935,8826,8828,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,0,0,0,10,-14,-22.212395,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,29.75,59.12,46.08,57.2,1.666666666666667,1,1,0,0,6,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 -3995,4935,8827,-9,8826,8828,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.3439,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 -3995,4935,8828,8826,-9,-9,1,1,51,2,2,0,2,2,-9,0,3,8.9381113,9.1712513,6.9531794,10,14,185.04269,0,2,2,2019,15,5,40,39,1,5,0,23.808474,23.808474,0,0,0,0,0,1,1,0,0,7.5173469,46.08,57.2,29.75,59.12,8.333333333333334,1,1,0,0,12,9,4,1,542.75,1324950.9,157643.42,964735.38,364568.91,3158.6775 -3996,4936,8829,8830,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.3641047,7.4588194,8,3,55.9561,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7245269,7.1733441,59.22,40.22,58.21,40.62,8.333333333333334,1,1,0,0,8,13,3,1,448,551926.13,245109.25,168673.91,0,1952.7753 -3996,4936,8830,8829,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.4343724,5.3316021,48,-3,56.588135,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1012664,5.1999569,58.21,40.62,59.22,40.22,8.333333333333334,1,1,0,0,6,13,3,1,448,551926.13,245109.25,168673.91,0,1952.7753 -3997,4937,8831,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0001783,8.2620983,0,0,0,-1079.1013,0,2,2,2019,11,0,37,37,1,0,0,7.7855687,7.7855687,0,0,0,0,0,1,1,0,2.9432933,0,47.38,57.75,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,588,148628.39,6033.1997,0,0,1425.2498 -3998,4938,8832,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.6528406,7.8621755,0,0,0,-995.31067,0,2,2,2019,14,3,42,42,1,3,0,7.1607804,7.1607804,0,0,0,0,0,0,0,0,2.8451149,0,59.45,41.59,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,565,323676.56,200335.58,0,0,1375.6001 -3999,4939,8833,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.3720741,6.6005907,0,0,-947.12201,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9830387,6.4100885,53,46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,679,217791.67,173776.55,66205.742,0,1061.9924 -4000,4940,8834,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,7.1210256,7.1549091,4.5146251,0,0,-1076.0474,0,2,-9,2019,12,0,30,30,1,0,0,6.0193439,6.0193439,0,0,0,0,0,1,1,0,3.9284301,0,41.08,58.41,-9,-9,5,1,1,0,0,8,11,2,1,381.5,180479.75,153916.8,0,0,884.86182 -4000,4940,8835,-9,8834,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.0188,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,381.5,180479.75,153916.8,0,0,884.86182 -4001,4941,8836,-9,8837,8838,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.60193,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 -4001,4941,8837,8838,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.0978703,7.5993595,0,10,-1,43.621723,0,2,2,2019,8,1,14,14,1,1,0,11.242393,11.242393,0,0,0,0,0,1,1,0,0,0,54.06,49.46,15.67,62.14,6.666666666666667,1,1,0,1,10,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 -4001,4941,8838,8837,-9,-9,1,1,35,1,2,0,2,2,-9,0,2,8.7683296,8.5771112,0,10,1,-80.391472,0,2,2,2019,22,7,40,51,1,7,0,18.526491,18.526491,0,0,0,0,0,1,1,0,1.699288,0,15.67,62.14,54.06,49.46,3.333333333333333,1,1,0,1,12,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 -4001,4941,8839,-9,8837,8838,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.93011,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,535.75,33211.18,13801.221,0,0,2851.1191 -4002,4942,8840,-9,8842,-9,1,0,49,0,1,0,2,2,-9,0,3,7.5366826,7.6937547,6.325417,0,0,-932.15192,0,3,2,2019,30,9,29,26,1,9,0,8.0291224,8.0291224,0,0,0,0,0,1,1,0,7.0356407,0,16.75,63.11,-9,-9,0,1,1,0,1,6,10,3,1,1516.5,-119995.08,0,0,0,1390.6553 -4002,4942,8841,-9,8840,-9,1,0,16,0,1,1,3,0,-9,1,5,0,0,0,0,0,-950.65845,-9,2,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,5,1,1,0,0,0,10,3,1,1516.5,-119995.08,0,0,0,1390.6553 -4002,4943,8842,-9,-9,-9,1,0,88,0,1,0,3,3,-9,0,2,0,0,0,0,0,-996.89697,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.98,38.44,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,687,307590.84,0,0,0,527.01196 -4003,4944,8843,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9388595,8.0981607,0,0,0,-1062.1683,0,3,3,2019,11,0,38,48,1,0,0,8.1571074,8.1571074,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,10,1,1,0,0,9,2,4,1,1420,368881.5,296226.28,122458.8,43451.094,1445.2844 -4003,4945,8844,-9,8843,-9,1,1,21,0,0,0,2,2,-9,0,4,7.225153,7.2380142,0,0,0,-985.19366,0,2,-9,2019,10,0,40,40,1,1,1,4.3176007,4.3176007,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,2,3,1,188,0,0,0,0,168.10933 -4004,4946,8845,8847,-9,-9,1,1,38,0,2,0,3,3,-9,0,2,7.5243025,7.2271857,0,18,-3,-62.362972,0,-9,-9,2019,11,0,32,40,1,0,0,8.1806517,8.1806517,0,0,0,0,14.5,1,1,0,0,0,45.97,53.8,43.01,26.45,6.666666666666667,1,1,0,0,8,2,2,0,656.5,20226.887,0,0,0,1900.4258 -4004,4946,8846,-9,8847,8845,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-978.85968,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,2,0,656.5,20226.887,0,0,0,1900.4258 -4004,4946,8847,8845,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,0,0,0,18,3,-1.0223387,0,2,2,2019,16,4,0,40,3,4,0,0,0,0,0,0,0,27,1,1,0,0,0,43.01,26.45,45.97,53.8,6.666666666666667,1,1,0,0,7,2,2,0,656.5,20226.887,0,0,0,1900.4258 -4004,4946,8848,-9,8847,8845,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.45209,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,656.5,20226.887,0,0,0,1900.4258 -4005,4947,8849,8850,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.2602863,8.1362343,0,5,4,-34.725674,0,-9,-9,2019,10,0,25,30,1,1,0,19.738699,19.738699,0,0,0,0,0,1,1,0,7.0487947,0,53,46,66.09999999999999,37.14,7,1,1,0,0,1,9,3,1,630.5,1020111.8,344026.94,464065.25,0,3980.4912 -4005,4947,8850,8849,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.9980321,5.0310612,43,-4,2.8965852,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.824832,66.09999999999999,37.14,53,46,8.333333333333334,1,1,0,0,0,9,3,1,630.5,1020111.8,344026.94,464065.25,0,3980.4912 -4006,4948,8851,8852,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.8606682,8.0777397,10,8,46.823639,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6345387,7.7290201,56.92,49.39,62.39,56.71,8.333333333333334,1,1,0,0,6,2,4,1,666.5,2326410,1435501.8,403185.44,0,4403.1523 -4006,4948,8852,8851,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.6670203,7.910903,9,-8,-83.975418,0,1,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9701877,7.6180549,62.39,56.71,56.92,49.39,10,1,1,0,0,7,2,4,1,666.5,2326410,1435501.8,403185.44,0,4403.1523 -4007,4949,8853,8854,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.3385911,7.3523898,0,3,0,68.080399,0,2,-9,2019,11,0,32,21,1,0,0,5.8599272,5.8599272,0,0,0,0,0,1,1,0,0,0,49.58,55.59,48.3,46.96,6.666666666666667,1,1,0,1,8,12,3,1,736.5,180925.47,49373.602,0,0,2926.4185 -4007,4949,8854,8853,-9,-9,1,1,37,0,1,0,2,2,-9,0,2,8.0626421,8.4056311,0,3,0,-25.422346,0,2,3,2019,15,2,48,48,1,2,0,7.5142078,7.5142078,0,0,0,0,0,1,1,0,0,0,48.3,46.96,49.58,55.59,3.333333333333333,1,1,0,1,2,12,3,1,736.5,180925.47,49373.602,0,0,2926.4185 -4008,4950,8855,8856,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.3786364,8.0128546,0,10,9,-98.49511,0,2,2,2019,11,0,37,20,1,0,0,10.432885,10.432885,0,0,0,0,0,0,0,0,4.1610985,0,55.19,54.26,39.93,52.99,5,1,1,0,0,12,10,4,1,924.5,1834800.3,767778.5,654521.88,0,2153.4226 -4008,4950,8856,8855,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,7.5627594,7.4950285,0,10,0,-69.437263,0,1,3,2019,18,6,40,40,1,6,0,6.7132258,6.7132258,0,0,0,0,0,0,0,0,3.6957457,0,39.93,52.99,55.19,54.26,8.333333333333334,1,1,0,0,9,10,4,1,924.5,1834800.3,767778.5,654521.88,0,2153.4226 -4009,4951,8857,8858,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.6647263,8.4400692,0,28,-1,-77.994156,0,2,2,2019,8,0,55,45,1,0,0,10.428941,10.428941,0,0,0,0,0,1,1,0,.51626331,0,58.05,54.52,51.73,58.82,8.333333333333334,1,1,0,0,12,7,5,1,1448.6666,1088783.5,462557.63,717073.63,67707.094,3879.709 -4009,4951,8858,8857,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.4373894,8.480423,0,28,1,-102.33563,0,2,1,2019,10,0,43,44,1,0,0,17.135612,17.135612,0,0,0,0,0,1,1,0,3.0172734,0,51.73,58.82,58.05,54.52,8.333333333333334,1,1,0,0,11,7,5,1,1448.6666,1088783.5,462557.63,717073.63,67707.094,3879.709 -4009,4951,8859,-9,8857,8858,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-945.73303,-9,1,1,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,2.9817936,0,31.34,62.72,-9,-9,5,1,1,0,0,0,7,5,1,1448.6666,1088783.5,462557.63,717073.63,67707.094,3879.709 -4009,4952,8860,-9,8857,8858,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-916.06256,-9,1,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.85,60.98,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,119,-126125.49,0,0,0,0 -4010,4953,8861,8862,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.8572817,6.8703308,54,-5,90.319527,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,7,1,1,0,4.0514483,6.9196057,51.51,38.41,52,45,6.666666666666667,1,1,0,0,0,10,2,0,8457,781971.5,161202.25,301330.5,0,1294.1704 -4010,4953,8862,8861,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.4458518,6.4355068,54,5,111.94708,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.2386012,6.1314921,52,45,51.51,38.41,8,1,1,0,0,0,10,2,0,8457,781971.5,161202.25,301330.5,0,1294.1704 -4011,4954,8863,8864,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,6,2,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4786839,0,49.29,49.06,53,47,8.333333333333334,1,1,0,0,7,12,2,1,621,225072.61,0,184114.59,0,2471.147 -4011,4954,8864,8863,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,6,-2,0,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1449013,0,53,47,49.29,49.06,8,1,1,0,0,0,12,2,1,621,225072.61,0,184114.59,0,2471.147 -4012,4955,8865,8866,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.599658,8.4873352,0,5,1,110.23621,0,2,2,2019,12,0,48,58,1,0,0,13.631413,13.631413,0,0,0,0,0,0,0,0,3.2347693,0,54.14,58.86,51.67,60.18,8.333333333333334,1,1,0,0,8,6,5,1,383.5,27408.668,119921.83,104598.64,78264.938,3375.5129 -4012,4955,8866,8865,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,7.8498521,7.6980453,0,5,-1,98.260452,0,2,2,2019,7,0,42,40,1,0,0,7.5299792,7.5299792,0,0,0,0,0,0,0,0,0,0,51.67,60.18,54.14,58.86,8.333333333333334,1,1,0,0,5,6,5,1,383.5,27408.668,119921.83,104598.64,78264.938,3375.5129 -4013,4956,8867,8868,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,33,6,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,26.38,33.28,29.52,3.333333333333333,1,1,0,0,0,13,1,1,1154,-134790.48,0,0,0,1245.5076 -4013,4956,8868,8867,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,33,-6,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.28,29.52,34.46,26.38,5,1,1,0,0,0,13,1,1,1154,-134790.48,0,0,0,1245.5076 -4014,4957,8869,8870,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.6420541,7.6259518,34,11,-10.05057,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.1986098,7.5085564,67.16,24.96,37.31,53.5,8.333333333333334,1,1,0,0,0,1,3,1,1887,1075377.3,473707.03,219151.25,0,1354.5283 -4014,4957,8870,8869,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.5193539,6.0546904,35,-11,-26.58144,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,6.758327,5.9736605,37.31,53.5,67.16,24.96,6.666666666666667,1,1,0,0,6,1,3,1,1887,1075377.3,473707.03,219151.25,0,1354.5283 -4015,4958,8871,8872,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.0330992,8.9439659,0,6,4,19.906496,0,-9,-9,2019,12,0,37,42,1,0,0,28.427624,28.427624,0,0,0,0,0,0,0,0,4.41257,0,42.98,50.52,30.2,52.76,6.666666666666667,1,1,0,0,7,7,5,1,1468.5,465046.44,153752.56,911048.63,563542.44,5948.46 -4015,4958,8872,8871,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,8.6655712,8.6329765,0,6,-4,78.412895,0,1,-9,2019,22,10,42,42,1,10,0,18.145121,18.145121,0,0,0,0,0,0,0,0,4.7765183,0,30.2,52.76,42.98,50.52,3.333333333333333,1,1,0,0,9,7,5,1,1468.5,465046.44,153752.56,911048.63,563542.44,5948.46 -4016,4959,8873,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.114202,7.1136956,0,0,0,-1063.4402,0,2,2,2019,10,0,15,12,1,0,0,14.339931,14.339931,0,0,0,0,0,1,1,0,0,0,57.7,26.41,-9,-9,6.666666666666667,1,1,0,1,1,7,3,1,1596,363660.03,94824.5,0,0,978.16254 -4017,4960,8874,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.4335876,7.4515519,0,0,-1041.3333,0,2,2,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.3025991,6.9597893,52.81,19.32,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,362,1710371,136475.5,920625.38,0,1723.5648 -4018,4961,8875,8876,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.9505529,5.5054512,50,-15,-63.565956,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.7746804,5.2552509,60.12,54.8,60.27,49.27,8.333333333333334,1,1,0,0,5,12,3,1,742.5,856668.69,557994.56,186485.13,0,3731.9922 -4018,4961,8876,8875,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,8.1935701,8.1819792,50,15,144.03505,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.907629,8.1989336,60.27,49.27,60.12,54.8,10,1,1,0,0,0,12,3,1,742.5,856668.69,557994.56,186485.13,0,3731.9922 -4019,4962,8877,-9,8878,8879,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1282.1469,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 -4019,4962,8878,8879,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.7954569,8.7309132,0,20,-6,52.754295,0,2,2,2019,13,4,47,47,1,4,0,14.271593,14.271593,0,0,0,0,0,0,0,0,0,0,46.44,59.62,42.95,61.24,6.666666666666667,1,1,0,0,12,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 -4019,4962,8879,8878,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.605875,9.38696,0,20,6,90.104668,0,3,3,2019,9,0,40,42,1,0,0,37.858871,37.858871,0,0,0,0,2,0,0,0,0,0,42.95,61.24,46.44,59.62,8.333333333333334,1,1,0,0,12,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 -4019,4962,8880,-9,8878,8879,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.50659,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,535,1579681.8,1419810.6,497701.56,177032.58,6745.9575 -4020,4963,8881,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.7705407,7.7146726,0,0,-1118.1853,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1388078,7.6593175,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,675,295520.44,126802.16,261805.25,0,2035.2739 -4021,4964,8882,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.45086,8.5984221,7.1936374,0,0,-1102.4042,0,1,1,2019,8,0,20,20,1,0,0,27.206861,27.206861,0,0,0,0,2,0,0,0,6.7982249,7.428772,44.05,55.39,-9,-9,6.666666666666667,1,1,0,0,10,2,5,1,1059,327020.66,155377.86,122208.99,72895.078,3088.1033 -4022,4965,8883,-9,8884,-9,1,1,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-849.86115,-9,1,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,10,1,0,584,197167.22,0,239883.84,2510.8782,1502.5752 -4022,4965,8884,-9,-9,-9,1,0,56,0,1,0,1,1,-9,0,1,0,0,0,0,0,-1047.4008,0,2,2,2019,29,10,0,37,3,10,0,0,0,0,0,0,0,0,1,1,0,7.3016338,0,20.4,56.31,-9,-9,0,1,1,1,1,4,10,1,0,584,197167.22,0,239883.84,2510.8782,1502.5752 -4023,4966,8885,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.8452797,8.8653469,0,0,0,-967.88867,0,1,1,2019,10,0,52,40,1,1,0,15.23512,15.23512,0,0,0,0,0,0,0,0,7.3111019,0,50,49,-9,-9,7,1,1,0,0,13,10,5,0,420,931453.25,260804.55,486651.44,0,2192.4434 -4024,4967,8886,8887,-9,-9,1,1,36,0,1,0,2,2,-9,0,2,5.5988507,6.0084414,0,9,-11,135.47754,0,-9,-9,2019,18,6,32,40,1,6,0,1.2846628,1.2846628,0,0,0,0,27,1,1,0,0,0,41.88,50.35,27.44,32.07,5,1,1,0,1,6,10,2,0,378,299455.44,130489.59,0,0,1388.2681 -4024,4967,8887,8886,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,0,0,9,11,-29.991768,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,71.5,1,1,0,0,0,27.44,32.07,41.88,50.35,3.333333333333333,1,1,0,1,5,10,2,0,378,299455.44,130489.59,0,0,1388.2681 -4024,4967,8888,-9,8887,8886,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1056.3782,-9,3,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,378,299455.44,130489.59,0,0,1388.2681 -4025,4968,8889,8890,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.9790039,5.9354119,56,-1,140.45711,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0308552,46.18,50.19,57.33,53.46,8.333333333333334,1,1,0,0,4,10,2,1,801,619133.06,146306.56,257852.91,0,1409.165 -4025,4968,8890,8889,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,9,1,28.476685,0,3,3,2019,10,0,0,10,4,0,0,0,0,0,0,0,0,2,1,1,0,3.0495763,0,57.33,53.46,46.18,50.19,8.333333333333334,1,1,0,0,11,10,2,1,801,619133.06,146306.56,257852.91,0,1409.165 -4026,4969,8891,8893,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.3505526,7.9470224,0,8,-6,45.386692,0,2,3,2019,17,6,37,40,1,6,0,9.4177895,9.4177895,0,0,0,0,2,1,1,0,0,0,43.23,44.05,56.29,33.32,6.666666666666667,1,1,0,0,9,1,3,1,403,607696.38,212880.86,204882.66,48855.094,2620.2561 -4026,4969,8892,-9,8891,8893,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-950.21863,-9,2,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,38.56,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,403,607696.38,212880.86,204882.66,48855.094,2620.2561 -4026,4969,8893,8891,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,7.4620628,7.7562356,0,8,6,93.237587,0,2,2,2019,8,0,34,46,1,0,0,6.0492496,6.0492496,0,0,0,0,0,1,1,0,0,0,56.29,33.32,43.23,44.05,5,1,1,0,0,9,1,3,1,403,607696.38,212880.86,204882.66,48855.094,2620.2561 -4027,4970,8894,8895,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,2,-2,-143.98227,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3844452,0,58.15,52.91,59.46,46.99,8.333333333333334,2,3,0,0,10,7,3,1,307,2023118,1077857.3,499927.19,0,3397.8857 -4027,4970,8895,8894,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.2664404,8.4559708,32,2,-10.631815,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.3090649,8.3944788,59.46,46.99,58.15,52.91,8.333333333333334,2,3,0,0,11,7,3,1,307,2023118,1077857.3,499927.19,0,3397.8857 -4027,4971,8896,-9,8894,8895,1,1,33,0,0,0,1,1,-9,0,4,9.169981,8.8331385,0,0,0,-865.02875,0,2,1,2019,11,0,72,45,1,0,0,10.523629,10.523629,0,0,0,0,0,0,0,0,0,0,61.83,49.95,-9,-9,8.333333333333334,2,3,0,0,6,7,5,1,1249,193420.25,-789.33887,659987.38,349333.22,3054.0833 -4028,4972,8897,8898,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,57,1,97.906013,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4702935,0,52,45,29.98,52.42,8,1,1,0,0,0,4,2,1,1408,8467.1738,53775.953,175112.45,0,1702.0354 -4028,4972,8898,8897,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,7.2923183,7.2114139,57,-1,13.461192,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,7.4805951,29.98,52.42,52,45,8.333333333333334,1,1,0,0,0,4,2,1,1408,8467.1738,53775.953,175112.45,0,1702.0354 -4029,4973,8899,8900,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,32,2,-116.62004,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.355732,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,0,10,2,1,1683,746150.13,804563.44,196869.72,0,1028.3951 -4029,4973,8900,8899,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,7.4609265,7.2099576,0,32,-2,-6.5407448,0,3,2,2019,7,0,60,50,1,0,0,2.8026884,2.8026884,0,0,0,0,0,1,1,0,3.2579644,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,10,2,1,1683,746150.13,804563.44,196869.72,0,1028.3951 -4029,4974,8901,-9,8899,8900,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-988.92694,-9,1,1,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.68410283,0,55.91,52.98,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,2435,-120222.65,0,0,0,-20.487175 -4030,4975,8902,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.4062891,8.5517225,0,0,0,-956.01575,0,2,3,2019,11,0,30,30,1,0,1,21.093214,21.093214,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,2,3,0,0,5,6,5,1,158,380743.22,45751.059,124614.01,90419.195,2580.4746 -4031,4976,8903,8904,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.3002262,8.2119923,0,39,0,57.559097,0,-9,3,2019,6,0,50,50,1,0,0,12.056078,12.056078,0,0,0,0,7,1,1,0,0,0,57.16,56.15,39.83,47.81,10,1,1,0,0,10,9,4,1,411.5,1479679.3,622873.25,564377.75,0,2027.4788 -4031,4976,8904,8903,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,39,0,111.5508,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.83,47.81,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,411.5,1479679.3,622873.25,564377.75,0,2027.4788 -4032,4977,8905,-9,8906,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.00995,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,0,2227,-304209.69,0,0,0,1087.7665 -4032,4977,8906,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,7.7701569,7.7191606,0,0,0,-968.62317,0,2,3,2019,8,2,36,45,1,2,0,7.5888495,7.5888495,0,0,0,0,0,1,1,0,0,0,42.65,41.71,-9,-9,8.333333333333334,1,1,0,0,4,1,3,0,2227,-304209.69,0,0,0,1087.7665 -4033,4978,8907,8908,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.3077412,7.6429405,0,6,9,-60.355873,0,3,3,2019,6,0,38,38,1,0,0,10.329488,10.329488,0,0,0,0,0,0,0,0,0,0,61.28,48.88,40,50.29,8.333333333333334,1,1,0,0,12,6,4,1,483.5,326689.88,204574.81,250716.5,47101.109,2887.8533 -4033,4978,8908,8907,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8658934,8.3846207,0,6,0,-38.552956,0,2,2,2019,24,12,42,40,1,12,0,8.165163,8.165163,0,0,0,0,0,0,0,0,.1510492,0,40,50.29,61.28,48.88,1.666666666666667,1,1,0,0,12,6,4,1,483.5,326689.88,204574.81,250716.5,47101.109,2887.8533 -4034,4979,8909,8910,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.4130349,7.7163792,8,0,8.432333,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2256379,7.4771948,57.33,53.46,39.11,52.26,1.666666666666667,1,1,0,0,7,9,3,1,576,2082677.8,757329,535769.88,0,2094.301 -4034,4979,8910,8909,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.5622754,6.1135573,8,0,67.655289,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.7433162,6.9745283,39.11,52.26,57.33,53.46,8.333333333333334,1,1,0,0,6,9,3,1,576,2082677.8,757329,535769.88,0,2094.301 -4035,4980,8911,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,6.7981024,7.1455126,6.0596828,0,0,-975.93616,-9,3,3,2019,6,0,18,0,1,0,0,4.90767,4.90767,0,0,0,0,108,1,1,0,5.2110901,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,10,11,2,0,505.5,98935.945,83203.805,0,0,1373.5762 -4035,4980,8912,-9,8911,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1026.3865,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,11,2,0,505.5,98935.945,83203.805,0,0,1373.5762 -4035,4981,8913,-9,8911,-9,1,0,20,0,1,0,3,3,-9,1,2,0,0,0,0,0,-955.05359,-9,2,-9,2019,16,0,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,6.666666666666667,4,2,0,0,0,11,1,0,622,32466.732,0,0,0,178.7083 -4036,4982,8914,8915,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.3636093,8.2836304,0,1,-2,72.009216,-9,-9,-9,2019,24,12,49,0,1,12,0,12.437498,12.437498,0,0,0,0,7,0,0,0,0,0,28.52,62.72,58.3,47.38,8.333333333333334,1,1,0,0,1,5,4,0,416.5,82915.508,147519.72,94397.672,35455.727,2130.5698 -4036,4982,8915,8914,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,7.6513591,8.0461597,0,1,2,-15.340466,0,2,2,2019,9,0,47,35,1,0,0,5.4243007,5.4243007,0,0,0,0,7,0,0,0,2.8341944,0,58.3,47.38,28.52,62.72,6.666666666666667,1,1,0,0,9,5,4,0,416.5,82915.508,147519.72,94397.672,35455.727,2130.5698 -4037,4983,8916,8917,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.0187559,8.1994638,31,7,-8.2163172,0,3,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,8.2147713,7.8466454,56.1,49.93,56.57,57.78,8.333333333333334,1,1,0,0,5,5,4,1,293.5,1113812,691714.44,233733.39,0,3159.8472 -4037,4983,8917,8916,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.103354,7.4430494,9,-7,-83.324532,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3822947,7.0895958,56.57,57.78,56.1,49.93,8.333333333333334,1,1,0,0,0,5,4,1,293.5,1113812,691714.44,233733.39,0,3159.8472 -4038,4984,8918,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.0479627,4.4388027,0,0,-1107.8779,0,3,3,2019,17,7,0,0,4,7,0,0,0,1,0,15.815682,0,0,1,1,0,0,4.5902796,31.94,44.32,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,835,-129958.76,0,0,0,879.48419 -4038,4985,8919,-9,8918,-9,1,0,33,0,0,0,2,2,-9,0,4,8.0960426,8.0707779,0,0,0,-1036.7648,0,3,-9,2019,9,0,35,35,1,0,0,11.08005,11.08005,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,4,1,915,-152711.44,153800.25,0,0,1028.0087 -4039,4986,8920,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4547038,7.1868033,19,10,-104.6186,0,3,3,2019,25,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,0,7.0870771,35.15,33.8,36.26,54.95,0,1,1,0,0,0,8,2,0,371,619962.81,393966.19,245566.41,0,2078.8936 -4039,4987,8921,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,0,0,0,17,-10,-73.830032,0,2,2,2019,21,7,0,43,3,7,0,0,0,0,0,0,0,7,1,1,0,4.2001967,0,36.26,54.95,35.15,33.8,3.333333333333333,1,1,1,1,9,8,2,0,474,1374600.5,737048.81,240850.52,0,-174.52013 -4040,4988,8922,8923,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.8262625,7.0109744,10,0,52.113335,0,2,3,2019,5,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9760766,7.1556625,60.3,46.58,57.92,51.82,8.333333333333334,1,1,0,0,11,2,4,1,167,1814761,1264909.6,342928.75,0,2437.3252 -4040,4988,8923,8922,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.940423,8.0117712,7.0744514,10,0,-86.393745,0,3,3,2019,6,0,30,30,1,0,0,10.423462,10.423462,0,0,0,0,0,0,0,0,2.40202,7.3564553,57.92,51.82,60.3,46.58,8.333333333333334,1,1,0,0,11,2,4,1,167,1814761,1264909.6,342928.75,0,2437.3252 -4041,4989,8924,8925,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.0704694,5.9227109,34,-1,-73.624977,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,120,1,1,0,4.055418,5.8557997,51.3,25.38,68.58,9.370000000000001,6.666666666666667,1,1,0,0,0,12,2,1,530,451008.34,73872.336,79276.57,0,2303.1594 -4041,4989,8925,8924,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,7.1174068,7.0084229,35,1,-8.5659218,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,7.415359,0,0,1,1,0,0,7.1024013,68.58,9.370000000000001,51.3,25.38,10,1,1,0,1,0,12,2,1,530,451008.34,73872.336,79276.57,0,2303.1594 -4042,4990,8926,8927,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.2982898,6.3578043,3,5,110.16827,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9181938,43.93,31.44,43.11,31.99,8.333333333333334,1,1,0,1,0,1,2,1,414,332049.94,190566.58,0,0,401.45074 -4042,4990,8927,8926,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,3,-5,-60.795662,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.11,31.99,43.93,31.44,8.333333333333334,1,1,0,1,8,1,2,1,414,332049.94,190566.58,0,0,401.45074 -4043,4991,8928,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.8305922,9.009325,0,0,0,-981.95111,0,2,2,2019,15,3,65,74,1,3,0,14.331041,14.331041,0,0,0,0,0,0,0,0,6.9510241,0,52.86,21.69,-9,-9,3.333333333333333,1,1,0,0,9,10,5,1,360,255409.05,256722.72,156651.75,109161.56,2968.449 -4044,4992,8929,8930,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.5057979,5.1098728,9,-3,-20.74695,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8140135,5.1259961,56.8,35.76,57.66,45.08,8.333333333333334,1,1,0,0,1,12,3,1,720.5,968649.94,685500.13,199500.92,0,2492.8667 -4044,4992,8930,8929,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8022585,7.769567,9,3,-36.474728,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6197762,8.0293808,57.66,45.08,56.8,35.76,8.333333333333334,1,1,0,0,4,12,3,1,720.5,968649.94,685500.13,199500.92,0,2492.8667 -4045,4993,8931,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,7.9801698,8.8435736,7.7864647,0,0,-1067.1929,0,2,2,2019,17,5,40,37,1,5,0,11.666208,11.666208,0,0,0,0,0,1,1,0,8.1850967,0,25.12,65.25,-9,-9,3.333333333333333,1,1,0,0,6,10,4,1,372.66666,491977.19,293874.47,248359.5,100874.32,2914.384 -4045,4993,8932,-9,8931,-9,1,0,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1001.634,-9,1,-9,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,.58891767,0,35.38,63.46,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,372.66666,491977.19,293874.47,248359.5,100874.32,2914.384 -4045,4993,8933,-9,8931,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1124.0576,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,372.66666,491977.19,293874.47,248359.5,100874.32,2914.384 -4046,4994,8934,8935,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.3436651,9.5041971,0,1,6,44.862698,-9,2,1,2019,6,0,40,0,1,0,0,41.162548,41.162548,0,0,0,0,0,0,0,0,.95060402,0,62.66,52.4,59.43,58.05,10,2,3,0,0,9,8,5,0,587.66669,470629.16,195399.08,682661.06,413612.75,4780.8579 -4046,4994,8935,8934,-9,-9,1,0,28,1,1,0,1,1,-9,0,5,7.6231899,7.6988821,0,1,-6,-81.733566,-9,-9,-9,2019,0,0,25,0,1,0,0,9.012373,9.012373,0,0,0,0,0,0,0,0,0,0,59.43,58.05,62.66,52.4,10,2,3,0,0,4,8,5,0,587.66669,470629.16,195399.08,682661.06,413612.75,4780.8579 -4046,4994,8936,-9,8935,8934,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1156.452,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,0,587.66669,470629.16,195399.08,682661.06,413612.75,4780.8579 -4047,4995,8937,8938,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.6838255,7.7939587,51,0,-82.368469,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5739207,7.9898977,54.2,57.49,46.55,58.3,10,1,1,0,0,0,5,3,1,626.5,848288.38,579044.13,353945.56,129135.11,3384.6343 -4047,4995,8938,8937,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.4830599,6.5547853,51,0,-41.905224,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1401372,6.3639865,46.55,58.3,54.2,57.49,8.333333333333334,1,1,0,0,0,5,3,1,626.5,848288.38,579044.13,353945.56,129135.11,3384.6343 -4048,4996,8939,8940,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.4458632,7.4834347,53,0,10.968608,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3365536,57.06,57.76,62.85,38.46,8.333333333333334,1,1,0,0,0,9,3,1,469.5,1018935.1,413846.34,341281.06,0,2485.6382 -4048,4996,8940,8939,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.3580251,6.3358855,53,0,-29.689583,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.331903,5.9283786,62.85,38.46,57.06,57.76,10,1,1,0,0,0,9,3,1,469.5,1018935.1,413846.34,341281.06,0,2485.6382 -4049,4997,8941,-9,8944,8942,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1128.0645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 -4049,4997,8942,8944,-9,-9,1,1,35,0,4,0,2,2,-9,0,4,7.0139098,6.9058142,0,7,0,-55.475449,0,-9,-9,2019,10,0,33,30,1,1,0,3.5496278,3.5496278,0,0,0,0,0,1,0,1,0,0,50,57,51.43,45.6,7,2,3,0,0,1,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 -4049,4997,8943,-9,8944,8942,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1100.8197,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 -4049,4997,8944,8942,-9,-9,1,0,35,0,4,0,2,2,-9,1,2,7.079195,7.0371375,0,18,0,-55.8717,0,3,2,2019,10,0,20,20,1,0,0,6.3144469,6.3144469,0,0,0,0,0,1,0,1,0,0,51.43,45.6,50,57,8.333333333333334,2,3,0,0,3,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 -4049,4997,8945,-9,8944,8942,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.5308,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 -4049,4997,8946,-9,8944,8942,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-862.30896,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,2,1,760.16669,-155243.7,14367.884,0,0,3581.8274 -4050,4998,8947,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.1585059,6.2540216,0,0,-1083.2539,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.8406253,5.4994097,53,44,-9,-9,8,1,1,0,0,0,2,2,1,1224,99405.445,-161064.78,113469.95,0,1019.4332 -4051,4999,8948,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.5647702,8.2616873,6.9154081,0,0,-866.13025,0,1,1,2019,7,0,80,-9,1,0,0,2.6055179,2.6055179,0,0,0,0,0,1,1,0,7.2494917,7.16152,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,482,360915.22,158842.7,81722.742,0,2259.4651 -4052,5000,8949,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,3,0,5.4366069,5.4058976,0,0,-1044.9646,-9,-9,-9,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,5.489007,0,13.99,63.75,-9,-9,5,1,1,0,1,0,13,2,0,364.5,240093.94,0,0,0,1515.8696 -4052,5000,8950,-9,8949,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.4589,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,364.5,240093.94,0,0,0,1515.8696 -4053,5001,8951,-9,-9,-9,1,0,29,0,0,0,3,3,-9,1,4,7.2626534,7.289083,0,0,0,-1052.0554,-9,3,2,2019,13,4,40,0,1,4,0,5.6044459,5.6044459,0,0,0,0,0,1,1,0,0,0,33.83,63.9,-9,-9,1.666666666666667,1,1,0,0,3,7,3,0,2185,-129223.38,15288.478,0,0,1366.0446 -4054,5002,8952,8953,-9,-9,1,1,65,0,0,0,3,3,-9,0,5,0,7.4360042,7.4356284,39,1,7.8674164,0,3,1,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.6662803,7.1506438,61.6,48.84,50,47,10,2,3,0,0,5,8,3,1,649.5,705270.88,416213.56,327425.16,0,2235.645 -4054,5002,8953,8952,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.0415864,7.1651168,39,-1,5.1141233,0,3,-9,2019,11,0,0,22,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9990606,50,47,61.6,48.84,7,2,3,0,0,9,8,3,1,649.5,705270.88,416213.56,327425.16,0,2235.645 -4055,5003,8954,-9,8956,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.47638,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,923.33331,-58063.629,0,0,0,1199.3418 -4055,5003,8955,-9,8956,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.1095,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,923.33331,-58063.629,0,0,0,1199.3418 -4055,5003,8956,-9,8957,-9,1,0,34,0,2,0,2,2,-9,0,5,7.7541571,7.3166509,0,0,0,-1012.8499,0,1,1,2019,9,3,35,35,1,3,1,7.4341445,7.4341445,0,0,0,0,0,1,1,0,0,0,36.92,58.84,-9,-9,3.333333333333333,3,4,0,0,2,8,3,0,923.33331,-58063.629,0,0,0,1199.3418 -4055,5004,8957,-9,-9,-9,1,0,57,0,2,0,1,1,-9,0,3,9.0279913,8.8168716,0,0,0,-1031.5487,-9,2,2,2019,11,0,38,0,1,2,0,21.920126,21.920126,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,0,9,8,5,0,401,443571.97,377062.66,176257.22,55720.574,2267.3774 -4055,5005,8958,-9,8957,-9,1,0,21,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1054.0201,1,1,-9,2019,13,0,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,10,3,4,0,0,0,8,2,0,346,111851.81,0,0,0,0 -4056,5006,8959,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,6.4820833,6.355031,0,0,-1099.21,0,2,2,2019,19,6,0,20,3,6,0,0,0,0,0,0,0,0,1,1,0,7.3280153,0,25.87,42.14,-9,-9,3.333333333333333,1,1,0,1,7,10,2,0,987.5,-77378,-12269.228,0,0,203.63708 -4056,5006,8960,-9,8959,-9,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-969.15826,-9,2,-9,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.57,61.36,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,987.5,-77378,-12269.228,0,0,203.63708 -4057,5007,8961,8962,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,47,0,88.925385,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.97667933,0,57.06,57.76,60.12,54.8,10,1,1,0,0,3,4,2,1,578,366895.5,103154.13,119250.83,0,1713.8501 -4057,5007,8962,8961,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.7997756,6.5351686,3,0,-41.468857,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6399083,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,7,4,2,1,578,366895.5,103154.13,119250.83,0,1713.8501 -4058,5008,8963,8964,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,2,-3,102.51489,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,21.37,22.93,62.66,52.4,5,1,1,0,0,7,12,2,0,398,759095.81,299964.31,154321.63,0,1725.5291 -4058,5008,8964,8963,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.299727,7.2486968,0,2,3,110.15349,-9,-9,-9,2019,11,0,30,0,1,2,0,5.3549075,5.3549075,0,0,0,0,96,1,1,0,0,0,62.66,52.4,21.37,22.93,10,1,1,0,0,2,12,2,0,398,759095.81,299964.31,154321.63,0,1725.5291 -4059,5009,8965,-9,8968,8967,1,1,22,0,0,0,2,2,1,0,4,6.9503288,6.7890534,0,0,0,-911.65802,-9,1,3,2019,11,0,24,0,1,1,1,4.5201025,4.5201025,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,7,2,1,1318,-111304.3,0,0,0,613.01642 -4059,5010,8966,-9,8968,8967,1,1,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-1018.0428,-9,1,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,0,7,1,1,352,90346.625,0,0,0,853.15009 -4059,5011,8967,8968,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.612401,8.6554804,0,4,-8,28.626245,0,-9,-9,2019,10,0,50,45,1,1,0,17.79925,17.79925,0,0,0,0,0,0,0,0,0,0,50,48,60.52,53.2,7,1,1,0,0,1,7,4,1,955.5,799502.75,446990.88,305797.59,0,2533.3306 -4059,5011,8968,8967,-9,-9,1,0,70,0,0,0,1,1,0,0,4,0,0,0,4,8,-88.959717,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,50,48,8.333333333333334,1,1,0,0,4,7,4,1,955.5,799502.75,446990.88,305797.59,0,2533.3306 -4060,5012,8969,-9,-9,8971,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-811.07349,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,5,1,495,2232175.5,1121126.6,620611.75,0,3208.552 -4060,5012,8970,8971,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.7370453,7.3156185,0,34,0,-43.014206,0,-9,-9,2019,7,0,20,20,1,0,0,5.2810655,5.2810655,0,0,0,0,0,1,1,0,0,0,62.27,42.94,54.79,55.86,8.333333333333334,2,3,0,0,11,7,5,1,495,2232175.5,1121126.6,620611.75,0,3208.552 -4060,5012,8971,8970,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.783206,8.9372959,4.4316988,34,0,-27.949389,0,-9,-9,2019,8,0,41,48,1,0,0,17.461222,17.461222,0,0,0,0,0,1,1,0,4.9371018,5.3679342,54.79,55.86,62.27,42.94,6.666666666666667,2,3,0,0,11,7,5,1,495,2232175.5,1121126.6,620611.75,0,3208.552 -4061,5013,8972,8973,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.578907,7.5916605,41,4,63.814312,0,2,2,2019,10,2,0,35,4,2,0,0,0,0,0,0,0,2,0,0,0,0,7.0992575,48.28,60.18,49.58,50.05,8.333333333333334,1,1,0,0,8,12,3,1,563.5,193871.75,128130.57,135490.06,0,1413.0681 -4061,5013,8973,8972,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,5.9068537,6.572197,0,41,-4,6.5334344,0,2,2,2019,12,0,25,25,1,0,0,2.1259775,2.1259775,0,0,0,0,2,0,0,0,0,0,49.58,50.05,48.28,60.18,1.666666666666667,1,1,0,0,9,12,3,1,563.5,193871.75,128130.57,135490.06,0,1413.0681 -4062,5014,8974,8975,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,3,-3,26.163385,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,50.26,33.72,61.38,24.95,6.666666666666667,1,1,0,0,4,6,3,1,1548.5,591867.25,357562.94,249793.47,0,2594.2285 -4062,5014,8975,8974,-9,-9,1,1,65,0,0,0,2,2,-9,1,2,0,7.5349426,7.3957796,3,3,-63.678158,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,1,0,126.47115,0,0,1,1,0,0,7.6276569,61.38,24.95,50.26,33.72,3.333333333333333,1,1,0,0,0,6,3,1,1548.5,591867.25,357562.94,249793.47,0,2594.2285 -4063,5015,8976,-9,8979,8978,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1012.8932,-9,1,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,1539,-54951.375,0,0,0,0 -4063,5016,8977,-9,8979,8978,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1079.7163,-9,1,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,2.0335879,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,493,0,0,0,0,-187.5638 -4063,5017,8978,8979,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,6,11,7.3950725,0,-9,-9,2019,30,10,0,0,4,10,0,0,0,1,0,5.9740357,0,0,1,1,0,2.2645588,0,14.79,36.86,48,49,0,1,1,0,0,0,4,4,1,708,592599.38,477925.47,224065.75,0,2429.272 -4063,5017,8979,8978,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.0527182,8.4803219,6.9998131,6,-11,73.065926,0,3,3,2019,15,5,23,22,1,5,0,15.951288,15.951288,0,0,0,0,2,1,1,0,0,7.5678115,48,49,14.79,36.86,8.333333333333334,1,1,0,0,11,4,4,1,708,592599.38,477925.47,224065.75,0,2429.272 -4064,5018,8980,8981,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.4669008,6.6717224,42,2,-62.659672,0,3,3,2019,14,3,0,21,4,3,0,0,0,0,0,0,0,0,0,0,0,7.4415784,7.1817183,37.9,55.72,40.58,43.59,8.333333333333334,1,1,0,0,12,10,4,1,405.5,531070.13,313844.13,363582.78,132531.11,2344.1978 -4064,5018,8981,8980,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.0108252,8.3060875,0,42,-2,25.223263,0,3,3,2019,14,2,21,12,1,2,0,17.714018,17.714018,0,0,0,0,2,0,0,0,7.5109935,0,40.58,43.59,37.9,55.72,6.666666666666667,1,1,0,0,12,10,4,1,405.5,531070.13,313844.13,363582.78,132531.11,2344.1978 -4065,5019,8982,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0153685,6.9405904,0,0,-1036.6965,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5175509,6.4668446,58.3,52.91,-9,-9,10,1,1,0,0,0,10,2,1,99,347200.28,167005.27,0,0,955.35773 -4066,5020,8983,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.1253119,7.8469658,0,0,-941.67786,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0164042,7.9505739,45.57,53.5,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,436,322300.88,458650.06,182983.34,0,1694.6631 -4067,5021,8984,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,8.3325033,8.4364538,0,0,0,-1035.8799,0,-9,-9,2019,11,0,45,50,1,0,0,11.305225,11.305225,0,0,0,0,7,0,0,0,0,0,40.58,54.22,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,384,399594.75,304128.72,176883.81,0,1537.1799 -4068,5022,8985,8986,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,0,0,0,14,3,41.856712,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.31,53.11,55.19,54.26,6.666666666666667,3,4,0,0,6,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 -4068,5022,8986,8985,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.5595798,8.8424253,0,14,-3,43.117538,0,-9,-9,2019,5,0,50,50,1,0,0,11.163006,11.163006,0,0,0,0,0,1,1,0,0,0,55.19,54.26,46.31,53.11,6.666666666666667,1,1,0,0,9,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 -4068,5022,8987,-9,8985,8986,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.87976,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 -4068,5022,8988,-9,8985,8986,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.2817,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,651.25,192219.86,205478.84,0,0,2458.1563 -4069,5023,8989,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.4511151,7.434,0,0,0,-1017.2939,0,-9,-9,2019,11,0,50,60,1,0,0,3.3377917,3.3377917,0,0,0,0,0,0,0,0,4.1123195,0,37.69,58.41,-9,-9,3.333333333333333,1,1,0,0,9,12,3,1,420,0,0,0,0,1054.7539 -4070,5024,8990,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,4,0,7.2743874,7.2642269,0,0,-977.6756,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4388976,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,2467,113588.63,-46351.156,0,0,1521.4536 -4071,5025,8991,-9,8994,8995,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.22272,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 -4071,5025,8992,-9,8994,8995,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.54932,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 -4071,5025,8993,-9,8994,8995,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.7528,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 -4071,5025,8994,8995,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,8.4316635,8.4265442,0,13,-10,-39.134876,0,-9,-9,2019,12,2,13,17,1,2,0,40.636856,40.636856,0,0,0,0,0,1,1,0,0,0,48.64,42.3,53,55,1.666666666666667,1,1,0,0,9,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 -4071,5025,8995,8994,-9,-9,1,1,51,0,3,0,1,1,-9,0,4,8.4536037,8.3869181,0,7,10,35.7458,0,-9,-9,2019,9,0,45,45,1,1,0,10.829562,10.829562,0,0,0,0,0,1,1,0,0,0,53,55,48.64,42.3,8,4,2,0,0,1,8,4,0,480,628057.06,229168.78,236395.23,98153.719,4120.271 -4072,5026,8996,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,6.6725583,7.3056774,0,0,0,-1057.2114,-9,2,2,2019,11,0,17,0,1,0,0,7.7852755,7.7852755,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,3.333333333333333,3,4,0,0,1,6,2,0,347.5,-120608.73,0,0,0,1205.3 -4072,5026,8997,-9,8996,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.1418,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,2,0,347.5,-120608.73,0,0,0,1205.3 -4073,5027,8998,8999,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.215847,8.2111454,0,28,-1,-29.997087,0,3,3,2019,10,1,22,39,1,1,0,15.524442,15.524442,0,0,0,0,2,1,1,0,0,0,46.48,28.68,57.73,54.53,5,1,1,0,0,9,2,3,0,604.5,163725.94,319041.66,123317.95,14148.14,1431.687 -4073,5027,8999,8998,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,28,1,15.614769,0,3,3,2019,10,0,0,89,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,46.48,28.68,6.666666666666667,1,1,1,0,9,2,3,0,604.5,163725.94,319041.66,123317.95,14148.14,1431.687 -4073,5028,9000,-9,9001,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1103.5616,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,2,2,0,459.5,-95535.367,42028.684,0,0,-25.175781 -4073,5028,9001,-9,8998,8999,1,0,34,0,0,0,2,2,-9,0,4,6.1717329,6.0991936,0,0,0,-948.46094,-9,2,2,2019,11,0,45,0,1,2,1,1.3407112,1.3407112,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,2,2,0,459.5,-95535.367,42028.684,0,0,-25.175781 -4074,5029,9002,-9,9003,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0536404,7.0335693,0,0,-925.86298,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,7.081141,.45139727,69.201088,120,1,1,0,6.3055334,6.9353037,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,488,609020.06,338068.84,193373.89,0,639.58154 -4074,5030,9003,-9,-9,-9,1,0,101,0,0,0,3,3,-9,0,3,0,7.1115632,7.0230751,0,0,-1095.5922,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1799579,6.5769029,55,42,-9,-9,8,1,1,0,0,0,12,2,1,308,567932.13,176224.66,114427.58,0,802.99139 -4075,5031,9004,9005,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,8.18713,8.380374,6.975728,44,-2,-30.715139,0,2,2,2019,10,1,35,40,1,1,0,13.814603,13.814603,0,0,0,0,0,1,1,0,0,6.8632813,69.23999999999999,8.66,57.16,56.15,5,1,1,0,0,11,5,4,1,290.5,553665.44,185459.19,168187.95,0,3492.0674 -4075,5031,9005,9004,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,44,2,.19723585,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,69.23999999999999,8.66,8.333333333333334,1,1,0,0,9,5,4,1,290.5,553665.44,185459.19,168187.95,0,3492.0674 -4076,5032,9006,9007,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.5336666,9.2499895,0,25,0,-31.031944,0,3,3,2019,9,0,55,60,1,0,0,27.691242,27.691242,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.89,61.78,8.333333333333334,1,1,0,0,8,9,5,1,750.66669,1281783.9,508396.41,529431,0,4748.2554 -4076,5032,9007,9006,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.2778826,7.9611602,0,27,0,-14.872922,0,1,3,2019,12,2,39,39,1,2,0,10.265177,10.265177,0,0,0,0,0,0,0,0,0,0,41.89,61.78,57.06,57.76,8.333333333333334,1,1,0,0,6,9,5,1,750.66669,1281783.9,508396.41,529431,0,4748.2554 -4076,5032,9008,-9,9007,9006,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1023.1514,-9,2,1,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,3.381948,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,5,1,750.66669,1281783.9,508396.41,529431,0,4748.2554 -4077,5033,9009,9011,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.4393134,7.9239273,0,7,1,6.7067142,0,2,3,2019,17,5,32,38,1,5,0,8.1860094,8.1860094,0,0,0,0,0,1,1,0,5.4508758,0,38.74,40.53,56.33,51.02,3.333333333333333,1,1,0,0,8,11,4,1,318.33334,530471.88,191480.66,352059.25,89403.289,3712.5669 -4077,5033,9010,-9,9009,9011,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1054.6687,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,4,1,318.33334,530471.88,191480.66,352059.25,89403.289,3712.5669 -4077,5033,9011,9009,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.7505341,8.862031,0,7,-1,-14.274208,0,3,-9,2019,12,2,49,49,1,2,0,11.504091,11.504091,0,0,0,0,0,1,1,0,0,0,56.33,51.02,38.74,40.53,8.333333333333334,1,1,0,0,8,11,4,1,318.33334,530471.88,191480.66,352059.25,89403.289,3712.5669 -4078,5034,9012,9013,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,5.5193324,6.2131448,5.0676141,1,-4,.7171998,-9,2,2,2019,8,0,20,0,1,0,0,1.4641966,1.4641966,0,0,0,0,27,1,1,0,6.4999213,5.0369811,48,38,63.76,7.37,8.333333333333334,1,1,0,0,7,11,2,1,468,1657325.8,51500.852,287701.56,0,1201.5404 -4078,5034,9013,9012,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,1,4,50.559044,-9,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,35.552956,0,0,1,1,0,0,0,63.76,7.37,48,38,6.666666666666667,1,1,0,0,0,11,2,1,468,1657325.8,51500.852,287701.56,0,1201.5404 -4079,5035,9014,9015,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.2060776,9.065486,0,5,0,-60.12418,0,3,2,2019,8,0,52,62,1,0,0,16.77277,16.77277,0,0,0,0,0,0,0,0,6.8742356,0,57.16,56.15,55.36,51.57,8.333333333333334,1,1,0,0,8,9,5,1,1008,955542.38,368276.25,747796.75,313442,5807.8379 -4079,5035,9015,9014,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.9560747,9.0585556,0,5,0,-55.449356,0,-9,-9,2019,7,0,47,50,1,0,0,17.666071,17.666071,0,0,0,0,0,0,0,0,0,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,1008,955542.38,368276.25,747796.75,313442,5807.8379 -4080,5036,9016,9017,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.9681568,8.7689142,50,6,25.453543,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.037051525,8.7899914,57.06,57.76,55.36,41.04,10,1,1,0,0,4,10,5,1,187,1854010.8,1385596,424107.97,0,4514.8428 -4080,5036,9017,9016,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,4.5511098,4.456326,50,-6,111.14538,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.3358741,4.3597007,55.36,41.04,57.06,57.76,8.333333333333334,1,1,0,0,0,10,5,1,187,1854010.8,1385596,424107.97,0,4514.8428 -4081,5037,9018,-9,9019,9020,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-962.45715,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,4,1,948.33331,105265.98,107859.7,0,0,2809.6218 -4081,5037,9019,9020,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,7.6949368,7.4209862,0,9,1,-72.99678,0,2,2,2019,11,0,29,28,1,0,0,9.4424019,9.4424019,0,0,0,0,0,1,1,0,0,0,59.04,54.12,40.98,52.59,8.333333333333334,1,1,0,0,9,7,4,1,948.33331,105265.98,107859.7,0,0,2809.6218 -4081,5037,9020,9019,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.3822031,8.432889,0,9,-1,26.185118,0,2,2,2019,13,1,40,36,1,1,0,14.581454,14.581454,0,0,0,0,0,1,1,0,1.379431,0,40.98,52.59,59.04,54.12,6.666666666666667,1,1,0,0,9,7,4,1,948.33331,105265.98,107859.7,0,0,2809.6218 -4082,5038,9021,9022,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.1455207,7.331418,49,1,60.750965,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.9372516,7.4288502,52.97,48.43,60.02,56.42,8.333333333333334,1,1,0,0,0,6,5,1,1199,2376792,1165220.5,618084.75,0,6518.7251 -4082,5038,9022,9021,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.8219862,8.7738304,49,-1,25.973793,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.1460347,8.9492664,60.02,56.42,52.97,48.43,10,1,1,0,0,7,6,5,1,1199,2376792,1165220.5,618084.75,0,6518.7251 -4083,5039,9023,-9,9024,9025,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-879.72662,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,728.33331,1771814.3,208475.75,826199.38,-6657.6787,4475.1489 -4083,5039,9024,9025,-9,-9,1,0,48,0,1,0,2,2,-9,0,1,7.9941502,7.4726658,0,31,-2,-47.537498,0,3,3,2019,22,10,25,25,1,10,0,14.368525,14.368525,0,0,0,0,0,1,1,0,4.4038215,0,28.54,33.04,45.15,57.46,6.666666666666667,1,1,0,0,9,9,5,1,728.33331,1771814.3,208475.75,826199.38,-6657.6787,4475.1489 -4083,5039,9025,9024,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,9.1040745,9.0840626,0,32,2,43.128159,0,3,2,2019,11,3,60,126,1,3,0,26.479454,26.479454,0,0,0,0,0,1,1,0,.66606468,0,45.15,57.46,28.54,33.04,8.333333333333334,1,1,0,0,9,9,5,1,728.33331,1771814.3,208475.75,826199.38,-6657.6787,4475.1489 -4084,5040,9026,9027,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,0,0,0,40,0,-46.562576,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.69,30.23,48,49,1.666666666666667,1,1,0,0,10,12,3,1,3335,287821.78,176833.11,197186.38,130340.26,1393.6407 -4084,5040,9027,9026,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.6897688,7.6449451,0,10,0,85.209473,0,-9,-9,2019,12,0,15,15,1,2,0,16.922676,16.922676,0,0,0,0,0,1,1,0,0,0,48,49,54.69,30.23,7,1,1,0,0,1,12,3,1,3335,287821.78,176833.11,197186.38,130340.26,1393.6407 -4084,5041,9028,-9,9027,9026,1,1,35,0,0,0,1,1,-9,0,4,8.4861879,8.5736685,0,0,0,-857.17761,0,-9,2,2019,10,0,40,40,1,1,1,12.065107,12.065107,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,1,1,0,0,1,12,5,1,1431,490271.09,-4073.7629,0,0,2420.4089 -4085,5042,9029,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.6090093,7.4136782,0,0,-1118.2102,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2188201,65.15000000000001,29.3,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,522,804195.94,48602.395,219980.63,0,1120.2595 -4086,5043,9030,-9,9032,9031,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.377,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 -4086,5043,9031,9032,-9,-9,1,1,45,0,3,0,3,3,-9,1,4,0,0,0,20,8,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,1,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 -4086,5043,9032,9031,-9,-9,1,0,37,0,3,0,3,3,-9,1,4,0,0,0,7,-8,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 -4086,5043,9033,-9,9032,9031,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.6663,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 -4086,5043,9034,-9,9032,9031,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1126.516,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 -4086,5043,9035,-9,9032,9031,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.46448,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,432.33334,139747.25,0,0,0,2273.4438 -4087,5044,9036,-9,9039,9038,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.6996,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 -4087,5044,9037,-9,9039,9038,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.59894,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 -4087,5044,9038,9039,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,9.0622082,9.0552607,0,3,-1,-44.184227,0,-9,-9,2019,11,0,70,45,1,0,0,14.178317,14.178317,0,0,0,0,0,1,1,0,0,0,44.36,54.04,60.99,53.2,6.666666666666667,1,1,0,0,9,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 -4087,5044,9039,9038,-9,-9,1,0,29,1,2,0,2,2,-9,0,5,7.5464468,7.412962,5.8823805,3,1,87.956367,0,-9,-9,2019,7,0,16,20,1,0,0,14.020811,14.020811,0,0,0,0,0,1,1,0,5.6812878,0,60.99,53.2,44.36,54.04,10,1,1,0,0,2,7,5,0,327,349053.38,-37379.828,282430.19,205484,5063.9639 -4088,5045,9040,9043,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.3803892,8.311799,0,10,9,76.430832,-9,-9,-9,2019,8,1,42,0,1,1,0,11.828642,11.828642,0,0,0,0,0,1,1,0,0,0,54.96,50.46,20.8,37.96,6.666666666666667,3,4,0,0,13,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 -4088,5045,9041,-9,9043,9040,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6079,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 -4088,5045,9042,-9,9043,9040,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-994.05762,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 -4088,5045,9043,9040,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.0926247,8.3520079,0,21,0,-114.30698,0,1,2,2019,25,12,33,26,1,12,0,12.452082,12.452082,0,0,0,0,0,1,1,0,1.2793658,0,20.8,37.96,54.96,50.46,6.666666666666667,3,4,0,0,12,8,4,1,457,521803.97,411652.88,301750.56,80166.633,3519.0037 -4089,5046,9044,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,5.771378,5.6207089,0,0,-1076.9965,0,3,3,2019,27,9,0,0,4,9,0,0,0,1,13.958132,9.0378609,0,0,1,1,0,0,5.6859956,33.05,20.24,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,373,320510.97,0,153841.2,0,1623.4243 -4090,5047,9045,9046,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,8.2955093,8.3252687,0,9,4,-16.140099,0,-9,3,2019,6,0,40,35,1,0,0,11.288193,11.288193,0,0,0,0,2,1,1,0,1.038053,0,61.28,48.88,44.64,57.71,8.333333333333334,1,1,0,0,10,12,4,1,970,949071.31,594033.81,243268.98,127035.71,2601.0171 -4090,5047,9046,9045,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,8.1674938,7.9519458,0,9,-4,69.622955,0,2,2,2019,12,0,37,38,1,0,0,10.841952,10.841952,0,0,0,3.5568585,0,1,1,0,0,0,44.64,57.71,61.28,48.88,6.666666666666667,1,1,0,0,10,12,4,1,970,949071.31,594033.81,243268.98,127035.71,2601.0171 -4090,5047,9047,-9,9046,9045,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1046.3015,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,970,949071.31,594033.81,243268.98,127035.71,2601.0171 -4090,5048,9048,-9,9046,9045,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1034.3235,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.64466703,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,2,12,1,1,284,127300.69,0,0,0,103.4214 -4091,5049,9049,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.3072538,7.5534024,6.2674923,0,0,-1019.9457,0,3,3,2019,12,0,20,20,1,0,0,9.3041534,9.3041534,0,0,0,0,0,0,0,0,0,6.0401421,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,173,-193168.33,41300.555,0,0,1584.179 -4091,5050,9050,-9,9049,-9,1,0,18,0,0,0,2,2,-9,0,4,7.2312369,7.278543,0,0,0,-979.4007,0,2,-9,2019,20,8,25,0,1,8,1,7.5227637,7.5227637,0,0,0,0,0,0,0,0,0,0,32.37,58.14,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,1185,-165654.81,0,0,0,511.21472 -4092,5051,9051,-9,-9,9052,1,1,56,0,0,0,2,2,-9,0,3,8.0902853,8.0320826,0,0,0,-1036.7131,0,3,3,2019,6,0,40,40,1,0,0,9.4208355,9.4208355,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1253,115246.62,54636.781,0,0,1604.8612 -4092,5052,9052,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-942.69452,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,571,134861.39,0,0,0,771.96472 -4093,5053,9053,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.416585,8.4192429,6.094079,0,0,-1020.7575,0,2,2,2019,24,12,46,45,1,12,0,8.371706,8.371706,0,0,0,0,14.5,1,1,0,6.4912295,0,11.43,47.36,-9,-9,3.333333333333333,1,1,0,0,7,11,5,0,336,302763.44,12676.425,0,0,2158.356 -4093,5054,9054,-9,9053,-9,1,1,22,0,0,0,3,3,-9,0,5,0,0,0,0,0,-943.08197,-9,1,-9,2019,17,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,36.64,64.2,-9,-9,6,1,1,1,1,0,11,1,0,292,0,0,0,0,1034.0526 -4093,5055,9055,-9,9053,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7517486,7.8574409,0,0,0,-1000.3536,0,1,-9,2019,8,0,33,32,1,0,1,9.326787,9.326787,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,11,3,0,1664,-137081.7,0,0,0,1999.6047 -4093,5056,9056,-9,9053,-9,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1070.2213,-9,1,-9,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,1,11,1,0,498,59076.797,0,0,0,0 -4094,5057,9057,9058,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.1269288,5.8894978,56,-2,179.47993,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,6.39293,0,0,1,1,0,0,6.2499933,59.61,15.99,49.43,44.66,6.666666666666667,1,1,0,0,0,6,2,1,1645,228243.59,102342.15,0,0,1835.0875 -4094,5057,9058,9057,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.6691666,4.6687689,10,2,-9.7893953,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,4.7703176,0,0,1,1,0,4.955904,4.4497991,49.43,44.66,59.61,15.99,6.666666666666667,1,1,0,0,0,6,2,1,1645,228243.59,102342.15,0,0,1835.0875 -4095,5058,9059,9060,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.3639174,8.2345057,5.2124419,38,-4,-74.127174,0,2,3,2019,6,0,36,38,1,0,0,13.305804,13.305804,0,0,0,0,14.5,1,1,0,.24063711,5.4425678,61.12,51.57,43.12,49.06,8.333333333333334,1,1,0,0,12,10,4,1,631,716591.25,550121.81,225539.91,0,2557.2632 -4095,5058,9060,9059,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.5333605,5.6187344,9,4,51.959492,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.41657147,5.6336908,43.12,49.06,61.12,51.57,8.333333333333334,1,1,0,0,9,10,4,1,631,716591.25,550121.81,225539.91,0,2557.2632 -4096,5059,9061,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1019.2954,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,61.69,15.28,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,645,227884.42,0,100736.92,0,317.51544 -4097,5060,9062,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.6511445,7.4380093,0,0,-1002.3194,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2730265,61.86,41.72,-9,-9,10,1,1,0,0,0,12,3,0,1500,613663,205523.28,181570.39,0,1497.9733 -4098,5061,9063,9064,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,7.151031,6.7336822,0,8,5,87.998108,0,-9,-9,2019,12,0,20,0,1,0,0,5.5123606,5.5123606,0,0,0,0,0,1,1,0,2.5072048,0,45.6,49.54,40.47,55.65,6.666666666666667,1,1,0,0,1,6,3,1,655.33331,152392.88,-48203.625,137476.61,45495.664,1982.8268 -4098,5061,9064,9063,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.5665379,7.5605216,0,8,-5,-37.638302,0,3,3,2019,12,2,20,20,1,2,0,7.3867779,7.3867779,0,0,0,0,0,1,1,0,6.2836566,0,40.47,55.65,45.6,49.54,8.333333333333334,1,1,0,0,10,6,3,1,655.33331,152392.88,-48203.625,137476.61,45495.664,1982.8268 -4098,5061,9065,-9,9064,9063,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.6264,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,655.33331,152392.88,-48203.625,137476.61,45495.664,1982.8268 -4099,5062,9066,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3290863,8.5340195,0,0,0,-938.70068,0,2,2,2019,10,0,44,39,1,0,0,9.3392706,9.3392706,0,0,0,0,0,0,0,0,0,0,52.93,52.64,-9,-9,5,1,1,0,0,9,8,4,0,429,287836.06,94544.422,254191.14,65226.918,2296.4688 -4100,5063,9067,9068,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,32,1,0,0,3,2,2019,27,10,0,30,4,10,0,0,0,0,0,0,0,2,0,0,0,9.0565472,0,15.08,66.28,61.43,43.34,1.666666666666667,1,1,0,0,9,4,1,1,424.5,2287261.8,1166116,354818.69,0,3485.1238 -4100,5063,9068,9067,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,0,0,32,-1,0,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,7.0905266,0,61.43,43.34,15.08,66.28,8.333333333333334,1,1,0,0,6,4,1,1,424.5,2287261.8,1166116,354818.69,0,3485.1238 -4100,5064,9069,-9,9068,9067,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-926.91211,-9,1,1,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,50.06,44.62,-9,-9,5,1,1,0,0,0,4,1,1,258,146841.2,0,0,0,330.21835 -4100,5065,9070,-9,9068,9067,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-838.85425,-9,1,1,2019,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,3.2494667,0,31.6,57.32,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,245,0,0,0,0,771.6438 -4101,5066,9071,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.5740204,3.9890594,0,0,-1081.939,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2267804,49.75,38.05,-9,-9,10,1,1,0,0,0,12,2,1,320,-336934.34,-60222.902,0,0,1394.0833 -4102,5067,9072,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,9.2910566,9.0529671,0,0,0,-958.98114,0,2,2,2019,9,0,45,43,1,0,0,21.046316,21.046316,0,0,0,0,0,0,0,0,3.9216931,0,57.63,56.14,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,1266,227177.77,92912.117,386107.16,277595.28,2713.9077 -4103,5068,9073,9074,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.7705951,7.7529035,0,9,1,-50.008205,0,3,3,2019,6,1,56,49,1,1,0,4.9014997,4.9014997,0,0,0,0,2,0,0,0,0,0,56.86,50.75,34.69,50.86,8.333333333333334,1,1,0,0,9,5,4,1,761.5,919315.63,738918.13,225995.33,0,2551.8662 -4103,5068,9074,9073,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,7.9986396,8.2161102,0,9,-1,-13.330136,0,2,2,2019,15,3,34,44,1,3,0,10.157685,10.157685,0,0,0,0,2,0,0,0,0,0,34.69,50.86,56.86,50.75,8.333333333333334,1,1,0,0,10,5,4,1,761.5,919315.63,738918.13,225995.33,0,2551.8662 -4104,5069,9075,9076,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.5505881,8.1741428,9,0,-5.9435244,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8052726,8.0070877,48,36,58.02,42.12,8.333333333333334,1,1,0,0,0,12,3,1,846.5,1025493,788009.56,204474.72,0,3138.6572 -4104,5069,9076,9075,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,6.8919997,7.3578496,9,0,-61.589062,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.6226106,7.372817,58.02,42.12,48,36,10,1,1,0,0,0,12,3,1,846.5,1025493,788009.56,204474.72,0,3138.6572 -4105,5070,9077,9078,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.8997507,7.6491265,57,2,25.611607,0,3,3,2019,28,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,7.5522165,34.12,47.88,52,45,5,1,1,0,0,0,10,2,0,1457,462573.66,385927.72,209843.63,0,2922.6104 -4105,5070,9078,9077,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,6,-2,-4.2007403,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,34.12,47.88,8,1,1,0,0,0,10,2,0,1457,462573.66,385927.72,209843.63,0,2922.6104 -4106,5071,9079,9080,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.9162521,8.4203415,0,17,0,-83.196678,0,3,2,2019,9,0,39,39,1,0,0,15.028158,15.028158,0,0,0,0,2,1,1,0,0,0,49.51,46.42,45.08,48.01,6.666666666666667,1,1,0,0,10,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 -4106,5071,9080,9079,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.0055871,7.260376,0,15,0,-18.229073,0,3,3,2019,12,1,24,22,1,1,0,6.7568078,6.7568078,0,0,0,0,0,1,1,0,0,0,45.08,48.01,49.51,46.42,5,1,1,0,0,10,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 -4106,5071,9081,-9,9080,9079,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.0946,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 -4106,5071,9082,-9,9080,9079,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.342,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808.75,64846.332,105929.37,127220.25,61566.57,3213.0508 -4107,5072,9083,9084,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,8,-4,38.209377,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,52.41,23.62,58.15,52.91,8.333333333333334,1,1,0,0,8,1,3,1,324,869754.81,474810.13,259906.28,0,2395.1785 -4107,5072,9084,9083,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,7.3906636,8.0854406,7.4523077,8,4,-81.676811,0,2,2,2019,8,0,39,45,1,0,0,4.2539434,4.2539434,0,0,0,0,2,1,1,0,3.9865465,7.4417048,58.15,52.91,52.41,23.62,8.333333333333334,1,1,0,0,9,1,3,1,324,869754.81,474810.13,259906.28,0,2395.1785 -4107,5073,9085,-9,9083,9084,1,0,28,0,0,0,2,2,-9,0,5,7.536201,7.5854278,0,0,0,-1181.3424,0,2,2,2019,7,0,30,34,1,0,1,8.4305773,8.4305773,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,615,-150089.97,0,0,0,796.81726 -4108,5074,9086,9090,-9,-9,1,0,25,1,3,0,2,2,-9,0,4,0,0,0,3,-2,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,47.14,39.47,7,2,3,0,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 -4108,5074,9087,-9,9086,9090,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-898.69373,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 -4108,5074,9088,-9,9086,9090,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.7489,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 -4108,5074,9089,-9,9086,9090,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.63666,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 -4108,5074,9090,9086,-9,-9,1,1,27,1,3,0,2,2,-9,1,2,0,0,0,3,2,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.5116143,0,47.14,39.47,47,58,5,2,3,1,0,0,2,1,0,568.40002,-112527.89,0,0,0,2424.3701 -4109,5075,9091,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,.21707043,.65198213,0,0,-1016.6489,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5649285,.12152554,62.49,55.09,-9,-9,10,4,5,0,0,0,8,2,1,202,182677.41,86212.086,217649.05,0,1182.5844 -4110,5076,9092,9093,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.1814671,8.6200752,7.0345449,32,1,-65.263153,0,3,2,2019,15,3,35,45,1,3,0,17.070305,17.070305,0,0,0,0,0,0,0,0,5.0981503,6.6760588,41.15,27.24,57.06,57.76,8.333333333333334,1,1,0,0,13,5,4,1,1038.5,833401.38,401278.81,189020.75,0,3039.8555 -4110,5076,9093,9092,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,0,7.4137421,7.291779,11,-1,-47.662239,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8065829,7.2447352,57.06,57.76,41.15,27.24,10,1,1,0,0,9,5,4,1,1038.5,833401.38,401278.81,189020.75,0,3039.8555 -4111,5077,9094,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.5753617,5.6527309,0,0,-956.72009,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.249557,48.87,58.55,-9,-9,8.333333333333334,1,1,0,1,0,6,2,1,217,-92766.055,0,107643.65,0,1318.5319 -4112,5078,9095,-9,9097,9096,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.9781,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,4,1,410,-196552.28,46055.254,137737.98,97696.82,2152.3274 -4112,5078,9096,9097,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.477128,8.596632,0,9,1,122.31405,0,2,3,2019,12,0,1,40,1,0,0,544.52966,544.52966,0,0,0,0,0,1,1,0,0,0,36.85,50.58,33.55,62.9,5,2,3,0,0,10,4,4,1,410,-196552.28,46055.254,137737.98,97696.82,2152.3274 -4112,5078,9097,9096,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,5.9862208,5.9393454,0,9,-1,-29.078701,0,2,2,2019,21,10,24,30,1,10,0,1.9494206,1.9494206,0,0,0,0,0,1,1,0,0,0,33.55,62.9,36.85,50.58,8.333333333333334,2,3,0,0,8,4,4,1,410,-196552.28,46055.254,137737.98,97696.82,2152.3274 -4113,5079,9098,9099,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.6061244,8.3040762,0,33,4,60.59753,0,2,3,2019,3,0,48,48,1,0,0,7.0794511,7.0794511,0,0,0,0,2,0,0,0,0,0,57.31,45.44,54.2,57.49,8.333333333333334,1,1,0,0,6,6,4,1,730.5,2235930,2089894.5,282664.38,0,2479.5481 -4113,5079,9099,9098,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.9331622,8.3268929,0,33,-4,-11.171904,0,2,2,2019,6,0,25,30,1,0,0,14.631814,14.631814,0,0,0,0,7,0,0,0,3.5210965,0,54.2,57.49,57.31,45.44,8.333333333333334,1,1,0,0,12,6,4,1,730.5,2235930,2089894.5,282664.38,0,2479.5481 -4113,5080,9100,-9,9099,9098,1,0,22,0,0,0,1,1,1,0,4,8.1408825,8.0166159,0,0,0,-1179.765,-9,1,2,2019,27,11,60,0,1,11,1,6.5809083,6.5809083,0,0,0,0,0,0,0,0,0,0,36.91,59.95,-9,-9,5,1,1,0,0,5,6,4,1,1729,-146552.2,-104084.48,0,0,1603.0344 -4113,5081,9101,-9,9099,9098,1,0,20,0,0,0,2,2,-9,0,4,7.1382933,7.1956263,0,0,0,-983.9502,0,1,2,2019,9,1,20,25,1,1,1,9.2084379,9.2084379,0,0,0,0,0,0,0,0,.62599289,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,6,3,1,2191,-79316.398,0,0,0,1037.1248 -4114,5082,9102,9103,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.4996338,5.3017821,51,4,45.323544,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2684693,45.55,55.86,51,46,1.666666666666667,3,4,0,0,0,2,2,1,858.5,864178.88,35177.684,193328.03,0,524.83368 -4114,5082,9103,9102,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,7,-4,-182.82481,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,45.55,55.86,7,3,4,0,0,0,2,2,1,858.5,864178.88,35177.684,193328.03,0,524.83368 -4115,5083,9104,9106,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.0650859,7.1110077,0,9,4,-97.446587,0,2,1,2019,15,5,30,15,1,5,0,4.12992,4.12992,0,0,0,0,14.5,1,1,0,7.468019,0,41.06,62.04,54.1,59.11,8.333333333333334,1,1,0,0,9,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 -4115,5083,9105,-9,9104,9106,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.7809,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 -4115,5083,9106,9104,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,7.6024222,7.7132149,0,12,-4,42.00584,0,2,2,2019,8,0,45,44,1,0,0,6.4054809,6.4054809,0,0,0,0,14.5,1,1,0,6.564651,0,54.1,59.11,41.06,62.04,6.666666666666667,1,1,0,1,9,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 -4115,5083,9107,-9,9104,9106,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.26306,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,717.5,-122586.47,53650.984,167722.52,129203.83,3156.9536 -4116,5084,9108,9109,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.5016003,8.2374649,0,1,-1,-68.659714,-9,-9,-9,2019,13,2,37,0,1,2,0,14.68586,14.68586,0,0,0,0,0,0,0,0,1.2077203,0,40.31,50.81,55.32,41.98,8.333333333333334,1,1,0,0,7,9,5,0,995.5,117730.52,-17175.975,306690.59,294845.5,2615.1545 -4116,5084,9109,9108,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.1107397,7.917634,0,1,1,126.14197,-9,-9,-9,2019,13,1,39,0,1,1,0,9.242444,9.242444,0,0,0,0,0,0,0,0,1.2411153,0,55.32,41.98,40.31,50.81,3.333333333333333,1,1,0,0,2,9,5,0,995.5,117730.52,-17175.975,306690.59,294845.5,2615.1545 -4117,5085,9110,9112,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,4,6,-13.485408,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,47.07,53.97,5,1,1,0,0,5,2,3,1,606.75,164539.44,0,0,0,1168.9362 -4117,5085,9111,-9,9112,9110,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.2816,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,1,606.75,164539.44,0,0,0,1168.9362 -4117,5085,9112,9110,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,8.2165585,8.5825167,0,4,-6,39.747768,0,-9,-9,2019,12,0,37,37,1,0,0,15.885771,15.885771,0,0,0,0,0,1,1,0,0,0,47.07,53.97,46.92,54.3,6.666666666666667,1,1,0,0,11,2,3,1,606.75,164539.44,0,0,0,1168.9362 -4117,5085,9113,-9,9112,9110,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5431,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,1,606.75,164539.44,0,0,0,1168.9362 -4118,5086,9114,9115,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,1,-2,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,70.56,37.83,8,2,3,0,0,0,7,1,1,278,-95628.938,-1531.0703,0,0,1520.4922 -4118,5086,9115,9114,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,1,2,0,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,70.56,37.83,52,45,10,2,3,0,0,0,7,1,1,278,-95628.938,-1531.0703,0,0,1520.4922 -4119,5087,9116,9118,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.8635998,8.8128767,0,7,-2,139.80562,-9,2,3,2019,9,0,50,0,1,1,0,16.96657,16.96657,0,0,0,0,0,0,0,0,0,0,52,55,54.63,58.83,8,1,1,0,0,1,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 -4119,5087,9117,-9,9118,9116,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.2084,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 -4119,5087,9118,9116,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,9.2436876,9.4992065,0,18,2,117.40507,0,2,1,2019,7,0,30,30,1,0,0,40.734196,40.734196,0,0,0,0,0,0,0,0,7.7070427,0,54.63,58.83,52,55,8.333333333333334,1,1,0,0,9,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 -4119,5087,9119,-9,9118,9116,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.6233,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,879.75,706321.75,344002.44,535531.06,164009.64,7633.7188 -4120,5088,9120,-9,-9,-9,1,1,24,0,1,0,2,2,0,0,1,0,0,0,0,0,-942.36737,-9,2,3,2019,26,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,21.48,54.44,-9,-9,0,1,1,0,0,6,11,1,0,9295,339840.53,0,0,0,0 -4121,5089,9121,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.4691677,7.7773519,6.2401891,0,0,-952.28455,0,3,3,2019,14,4,29,22,1,4,0,6.0933948,6.0933948,0,0,0,0,0,1,1,0,1.5219575,6.0901814,44.75,55.27,-9,-9,8.333333333333334,1,1,0,0,9,1,3,1,682,392241.5,162684.03,189678.92,0,1434.6904 -4122,5090,9122,-9,9125,9124,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-994.25378,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 -4122,5090,9123,-9,9125,9124,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.62866,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 -4122,5090,9124,9125,-9,-9,1,1,53,0,3,0,2,2,-9,0,3,8.0679922,8.103591,0,15,5,33.192726,0,-9,-9,2019,9,0,40,45,1,0,0,9.0239315,9.0239315,0,0,0,0,0,1,1,0,0,0,65.54000000000001,33.23,48.87,58.55,8.333333333333334,1,1,0,0,11,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 -4122,5090,9125,9124,-9,-9,1,0,48,0,3,0,2,2,-9,0,4,7.4754763,7.5576797,0,15,-5,-51.572758,0,-9,3,2019,9,0,17,17,1,0,0,9.0094471,9.0094471,0,0,0,0,0,1,1,0,6.4876547,0,48.87,58.55,65.54000000000001,33.23,8.333333333333334,1,1,0,0,11,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 -4122,5090,9126,-9,9125,9124,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-925.1217,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,662.40002,546568.19,0,288804.47,39391.594,2154.0791 -4123,5091,9127,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.3988886,5.6363907,0,0,-1130.9025,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6026651,5.3407221,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,343,788459.31,147580.08,364561,0,1299.0142 -4124,5092,9128,9129,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.1833496,8.0793095,0,4,3,-72.234261,0,2,2,2019,6,0,36,35,1,0,0,11.207733,11.207733,0,0,0,0,0,0,0,0,3.0644035,0,56.67,53.83,21.27,64.59999999999999,8.333333333333334,4,2,0,0,11,8,4,0,365,153597.44,-25178.715,0,0,1373.6311 -4124,5092,9129,9128,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,5.4291873,4.7836804,0,4,-3,-103.93587,0,-9,-9,2019,22,8,35,0,1,8,0,.60447603,.60447603,0,0,0,0,0,0,0,0,1.3974473,0,21.27,64.59999999999999,56.67,53.83,1.666666666666667,1,1,0,1,2,8,4,0,365,153597.44,-25178.715,0,0,1373.6311 -4125,5093,9130,9131,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6929431,7.3418884,0,31,-4,82.855339,0,2,2,2019,0,0,43,28,1,0,0,6.2205873,6.2205873,0,0,0,0,0,0,0,0,0,0,48.28,60.18,57.16,56.15,10,1,1,0,0,9,10,4,0,958,-91722.438,120197.45,0,0,2711.0745 -4125,5093,9131,9130,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.5115938,8.2394953,0,7,4,-77.929497,0,2,2,2019,6,0,50,40,1,0,0,8.2262115,8.2262115,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.28,60.18,10,1,1,0,0,9,10,4,0,958,-91722.438,120197.45,0,0,2711.0745 -4126,5094,9132,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.1027184,8.1647549,0,0,0,-890.49792,0,-9,-9,2019,12,0,35,35,1,0,0,10.75751,10.75751,0,0,0,0,0,1,1,0,6.9830937,0,48.28,60.18,-9,-9,8.333333333333334,4,2,0,0,8,2,4,1,859,114958.8,68926.828,99443.914,91473.695,2203.8132 -4127,5095,9133,9134,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.5319958,8.6391258,0,34,-1,-109.89577,0,3,3,2019,6,0,34,34,1,0,0,18.6164,18.6164,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,863.5,496422.56,220400,398082.16,30977.951,5847.9834 -4127,5095,9134,9133,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.9196672,9.1740685,8.1759844,34,1,-122.76498,0,3,3,2019,9,0,42,35,1,0,0,19.80195,19.80195,0,0,0,0,0,0,0,0,0,8.1636362,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,6,8,5,1,863.5,496422.56,220400,398082.16,30977.951,5847.9834 -4127,5096,9135,-9,9133,9134,1,1,26,0,0,0,2,2,-9,0,5,8.5554123,8.7316561,0,0,0,-1026.8958,0,2,2,2019,12,0,49,50,1,0,1,10.378518,10.378518,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,438,186145.78,15763.255,0,0,2330.6252 -4127,5097,9136,-9,9133,9134,1,0,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-991.80548,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,599,-241766.41,0,0,0,0 -4128,5098,9137,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.531054,5.2772083,0,0,-1081.6754,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5400124,5.2291532,44.88,49.37,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1760,25318.672,78756.219,0,0,665.81079 -4129,5099,9138,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-965.64484,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,34.77,30.22,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,2545,-183789.67,0,0,0,1223.8263 -4130,5100,9139,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.9991207,7.9552817,0,0,0,-995.44629,0,2,2,2019,9,2,24,24,1,2,0,12.77828,12.77828,0,0,0,0,14.5,0,0,0,3.0357187,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,212,-146984.14,30429.055,196562.5,0,1061.3069 -4131,5101,9140,9141,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,5.443327,5.2798438,40,-8,-76.439751,0,2,3,2019,11,1,0,29,4,1,0,0,0,0,0,0,0,2,1,1,0,2.4899139,5.3310537,52.69,47.38,58.15,52.91,8.333333333333334,1,1,0,0,12,4,3,1,1056.5,1019525.3,463162.94,387174.75,0,1832.5996 -4131,5101,9141,9140,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.8910704,7.4204149,37,8,99.829979,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8265347,7.874104,58.15,52.91,52.69,47.38,8.333333333333334,1,1,0,0,11,4,3,1,1056.5,1019525.3,463162.94,387174.75,0,1832.5996 -4132,5102,9142,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.0166674,7.0782537,0,0,-1017.3073,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.1912889,36.78,31.33,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,453,735147.31,272321.81,100457.09,0,1461.5549 -4133,5103,9143,9144,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.1394529,8.0497732,0,1,1,25.374702,-9,-9,-9,2019,11,0,40,0,1,2,0,10.301944,10.301944,0,0,0,0,0,0,0,0,2.8002923,0,47,57,58.15,52.91,7,1,1,0,0,1,2,5,1,1353,-117427.7,-34143.5,206409.25,156548.44,3420.3809 -4133,5103,9144,9143,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.7737198,8.6479225,0,1,-1,129.01799,-9,2,2,2019,5,0,43,0,1,0,0,12.955373,12.955373,0,0,0,0,0,0,0,0,0,0,58.15,52.91,47,57,8.333333333333334,4,2,0,0,11,2,5,1,1353,-117427.7,-34143.5,206409.25,156548.44,3420.3809 -4134,5104,9145,9146,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.2647572,7.2528911,0,3,1,-66.172333,0,-9,-9,2019,8,0,25,30,1,0,0,7.1460228,7.1460228,0,0,0,0,0,0,0,0,0,0,33.72,60.21,30.77,64.34,6.666666666666667,1,1,0,0,5,11,3,0,439,-102425.81,13737.98,0,0,1119.7887 -4134,5104,9146,9145,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7056227,7.5829659,0,3,-1,-39.238712,0,-9,-9,2019,22,10,28,30,1,10,0,8.3327618,8.3327618,0,0,0,0,0,0,0,0,0,0,30.77,64.34,33.72,60.21,3.333333333333333,1,1,0,0,4,11,3,0,439,-102425.81,13737.98,0,0,1119.7887 -4134,5105,9147,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.5398946,7.4161425,0,0,0,-979.9649,0,2,1,2019,8,0,30,30,1,0,0,6.3470259,6.3470259,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,283,133777.73,0,0,0,615.34991 -4135,5106,9148,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1020.9462,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,20.14,-9,-9,5,1,1,0,0,5,7,1,0,137,0,0,0,0,1525.9822 -4136,5107,9149,-9,9151,9150,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-987.03644,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,7,3,1,493.66666,8978206,1137315.1,3485957,0,2202.3235 -4136,5107,9150,9151,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.6250963,8.4942751,0,6,-2,53.00919,0,-9,-9,2019,9,0,40,40,1,1,0,15.701351,15.701351,0,0,0,0,0,1,1,0,0,0,52,55,57.33,53.46,7,1,1,0,0,1,7,3,1,493.66666,8978206,1137315.1,3485957,0,2202.3235 -4136,5107,9151,9150,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,0,0,0,19,2,113.51561,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,55,6.666666666666667,1,1,0,0,1,7,3,1,493.66666,8978206,1137315.1,3485957,0,2202.3235 -4137,5108,9152,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.0537586,8.9394884,0,0,0,-983.3606,0,2,3,2019,15,3,38,41,1,3,0,27.989416,27.989416,0,0,0,0,0,0,0,0,1.9345353,0,43.84,58.37,-9,-9,5,1,1,0,1,10,9,5,0,152,883064.13,833541.81,264780.28,190429.63,2639.9504 -4138,5109,9153,9154,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,6,-8,42.070473,0,2,2,2019,25,9,0,0,4,9,0,0,0,0,0,0,0,7,0,0,0,0,0,24.64,51.05,38.31,41.83,3.333333333333333,1,1,0,0,1,12,3,1,449,801824.19,532327,217968.63,0,2184.9204 -4138,5109,9154,9153,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.9601297,8.0488863,6,8,-2.1894617,0,2,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,2,0,0,0,7.4581475,7.8232522,38.31,41.83,24.64,51.05,5,1,1,0,1,0,12,3,1,449,801824.19,532327,217968.63,0,2184.9204 -4139,5110,9155,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8813276,9.1535234,0,0,0,-888.71381,0,2,2,2019,8,0,36,41,1,0,0,23.279591,23.279591,0,0,0,0,0,0,0,0,4.5468144,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,770,208502.3,-769.56891,226653.19,138223.59,2939.5566 -4140,5111,9156,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1036.6155,0,-9,2,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,47.87,22.4,-9,-9,3.333333333333333,1,1,0,1,0,10,2,1,797,491903.53,163660.7,354741.59,3628.8831,960.79346 -4141,5112,9157,9158,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.963366,7.962759,0,5,1,104.66082,0,3,2,2019,9,0,36,38,1,0,0,10.733185,10.733185,0,0,0,0,0,0,0,0,1.2291967,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,9,8,4,0,293,629664.5,23365.207,316149.19,-3476.1113,2756.8643 -4141,5112,9158,9157,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.0164766,7.8471665,0,5,-1,64.82991,0,-9,-9,2019,14,3,39,41,1,3,0,7.8339877,7.8339877,0,0,0,0,7,0,0,0,3.6915662,0,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,9,8,4,0,293,629664.5,23365.207,316149.19,-3476.1113,2756.8643 -4142,5113,9159,9161,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.2940478,7.8820386,7.6568942,2,0,37.238087,0,-9,-9,2019,7,0,20,20,1,0,0,9.7142782,9.7142782,0,0,0,0,0,0,0,0,6.594656,6.5933304,45.91,59.89,53.2,48.45,6.666666666666667,1,1,0,0,9,9,5,1,993,85688.094,82257.336,0,0,4569.2144 -4142,5113,9160,-9,9159,-9,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-978.30933,-9,3,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,54.61,-9,-9,8.333333333333334,1,1,1,0,0,9,5,1,993,85688.094,82257.336,0,0,4569.2144 -4142,5113,9161,9159,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.3174076,9.3891182,0,2,0,198.23486,0,-9,-9,2019,14,1,65,105,1,1,0,18.013103,18.013103,0,0,0,0,0,0,0,0,.3674888,0,53.2,48.45,45.91,59.89,8.333333333333334,1,1,0,0,7,9,5,1,993,85688.094,82257.336,0,0,4569.2144 -4143,5114,9162,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.3358421,8.4890423,0,0,0,-1008.5886,0,1,1,2019,25,11,40,40,1,11,0,15.468361,15.468361,0,0,0,0,0,1,1,0,2.1385813,0,37.36,37,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,2525,602533.19,388741.59,166092.97,0,2607.801 -4144,5115,9163,9164,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,59,3,-41.829586,0,2,2,2019,16,0,0,0,4,4,0,0,0,1,0,15.514431,0,0,1,1,0,0,0,23.9,22.76,58.05,30.25,4,1,1,0,0,0,8,2,1,528,693217.5,136138.25,482319.25,0,2248.9673 -4144,5115,9164,9163,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.3610187,7.4325156,59,-3,.91614693,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,1.9877909,7.7414765,58.05,30.25,23.9,22.76,6.666666666666667,1,1,0,0,0,8,2,1,528,693217.5,136138.25,482319.25,0,2248.9673 -4145,5116,9165,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,8,32,-7.3154716,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,53.81,53.56,10,1,1,0,0,9,5,5,1,233,141525.05,0,162847.61,23928.359,-265.38113 -4145,5117,9166,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,9.470994,9.3987064,0,8,-32,-39.429314,0,2,2,2019,9,0,30,40,1,0,0,58.929039,58.929039,0,0,0,0,0,1,1,0,1.8249682,0,53.81,53.56,54,46,8.333333333333334,1,1,0,0,9,5,5,1,1117,6656.042,-54140.484,178577.41,110581.4,4729.0352 -4146,5118,9167,9168,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.0839901,7.6248593,10,0,103.99776,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5437484,8.1370573,58.32,50.22,54.38,49.27,8.333333333333334,1,1,0,0,9,9,3,1,492.5,1507649,889955,673989.06,0,3101.6526 -4146,5118,9168,9167,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.2838311,6.7310781,10,0,-38.27343,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.273005,54.38,49.27,58.32,50.22,8.333333333333334,1,1,0,0,6,9,3,1,492.5,1507649,889955,673989.06,0,3101.6526 -4147,5119,9169,9170,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4500608,8.0228968,0,6,-3,52.809948,0,-9,-9,2019,9,0,40,45,1,0,0,10.685205,10.685205,0,0,0,0,0,0,0,0,0,0,41.06,62.04,42.95,61.24,8.333333333333334,1,1,0,0,9,12,5,1,885.5,170586.48,20810.275,154052.48,95795.383,3250.6877 -4147,5119,9170,9169,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.3911848,8.3541794,0,6,3,-27.085058,0,-9,-9,2019,12,3,39,36,1,3,0,13.883676,13.883676,0,0,0,0,0,0,0,0,0,0,42.95,61.24,41.06,62.04,8.333333333333334,1,1,0,0,7,12,5,1,885.5,170586.48,20810.275,154052.48,95795.383,3250.6877 -4148,5120,9171,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-935.41156,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,64.72,30.92,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,1921,-135409.64,0,0,0,451.77124 -4149,5121,9172,-9,9173,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.90717,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,268.33334,16855.449,0,0,0,1765.6012 -4149,5121,9173,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,7.3015127,7.3694258,0,0,0,-994.23737,0,2,2,2019,21,9,30,30,1,9,0,5.4630709,5.4630709,0,0,0,0,0,1,1,0,3.3422651,0,19.58,60.09,-9,-9,3.333333333333333,1,1,0,0,8,13,2,0,268.33334,16855.449,0,0,0,1765.6012 -4149,5121,9174,-9,9173,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.1279,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,268.33334,16855.449,0,0,0,1765.6012 -4150,5122,9175,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9506927,8.0472021,0,0,0,-972.21594,0,1,1,2019,9,2,40,40,1,2,0,6.107275,6.107275,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,1.666666666666667,1,1,0,0,10,4,3,1,705,821432.81,-111202.08,201305.92,0,1067.5903 -4151,5123,9176,9177,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.3185015,8.5939827,0,41,-4,-10.584641,0,2,3,2019,7,0,44,46,1,0,0,22.272028,22.272028,0,0,0,0,0,0,0,0,0,0,57.16,56.15,56.35,51.16,8.333333333333334,1,1,0,0,10,7,5,1,756,225659.44,76739.813,0,0,3700.3599 -4151,5123,9177,9176,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1675711,8.2871513,0,41,4,-51.372749,0,3,3,2019,11,0,6,30,1,0,0,71.065178,71.065178,0,0,0,0,0,0,0,0,0,0,56.35,51.16,57.16,56.15,8.333333333333334,1,1,0,0,10,7,5,1,756,225659.44,76739.813,0,0,3700.3599 -4151,5124,9178,-9,9177,9176,1,1,32,0,0,0,2,2,-9,0,4,6.7070794,6.6307707,0,0,0,-1010.9539,0,2,2,2019,5,0,35,30,1,0,1,2.250798,2.250798,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,150,-378716.38,-992.00208,0,0,1358.29 -4152,5125,9179,9180,-9,-9,1,0,52,0,0,0,2,2,-9,1,3,0,0,0,4,2,42.373348,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,52,55,8.333333333333334,1,1,0,0,11,11,2,1,949.66669,175670.61,5563.397,243074.19,0,761.87286 -4152,5125,9180,9179,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.5357614,7.2131243,0,4,-2,37.66066,0,-9,-9,2019,10,0,45,50,1,0,0,4.2919135,4.2919135,0,0,0,0,0,1,1,0,0,0,52,55,52.4,52.91,8.333333333333334,1,1,0,0,13,11,2,1,949.66669,175670.61,5563.397,243074.19,0,761.87286 -4152,5125,9181,-9,9179,9180,1,1,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-892.948,1,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.71,60.6,-9,-9,6.666666666666667,1,1,0,1,0,11,2,1,949.66669,175670.61,5563.397,243074.19,0,761.87286 -4153,5126,9182,9183,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.1514697,6.8486595,45,2,71.576714,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1903057,7.2728343,50.71,52.35,43.88,31.94,8.333333333333334,1,1,0,0,12,1,3,1,947,921616.69,975951.06,96654.898,0,1612.2129 -4153,5126,9183,9182,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,7.0326056,7.227078,45,-2,4.998703,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.0208812,7.1569228,43.88,31.94,50.71,52.35,8.333333333333334,1,1,0,0,9,1,3,1,947,921616.69,975951.06,96654.898,0,1612.2129 -4154,5127,9184,-9,9185,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-967.79089,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,0,644.66669,-81600.32,0,0,0,1257.2516 -4154,5127,9185,-9,-9,-9,1,0,20,2,2,0,2,2,-9,0,4,0,0,0,0,0,-967.55817,-9,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,50.28,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,644.66669,-81600.32,0,0,0,1257.2516 -4154,5127,9186,-9,9185,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.668,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,644.66669,-81600.32,0,0,0,1257.2516 -4155,5128,9187,-9,9188,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-921.198,-9,3,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,17.55,49.31,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,977,324825.41,0,0,0,-89.384697 -4155,5129,9188,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1059.861,-9,-9,-9,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,0,1,0,0,33.88,39.09,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,742,85926.977,0,78308.563,0,989.26031 -4156,5130,9189,9190,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.3755693,8.1879864,0,39,-2,-52.02906,0,3,1,2019,11,0,37,50,1,0,0,14.917723,14.917723,0,0,0,0,0,0,0,0,1.6215988,0,48.77,60.16,57.35,45.09,8.333333333333334,4,2,0,0,12,7,5,1,220,1282874.8,107455.52,915272.5,1284.0283,3650.7002 -4156,5130,9190,9189,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.3299828,8.3210077,0,39,2,-42.063026,0,2,2,2019,7,0,37,37,1,0,0,12.925443,12.925443,0,0,0,0,0,0,0,0,5.1354966,0,57.35,45.09,48.77,60.16,8.333333333333334,1,1,0,0,12,7,5,1,220,1282874.8,107455.52,915272.5,1284.0283,3650.7002 -4157,5131,9191,9192,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.186244,7.974411,0,41,4,18.103416,0,3,3,2019,8,0,37,38,1,0,0,8.8850393,8.8850393,0,0,0,0,0,0,0,0,0,0,55,53,49,48,8,2,3,0,0,9,4,3,1,298,662201.44,490609.34,297186.16,0,1524.4603 -4157,5131,9192,9191,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,40,-4,59.520348,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,6.3261175,0,49,48,55,53,7,2,3,0,0,0,4,3,1,298,662201.44,490609.34,297186.16,0,1524.4603 -4158,5132,9193,9194,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0695953,8.9202929,0,6,1,113.04401,0,2,2,2019,10,0,48,37,1,0,0,22.963099,22.963099,0,0,0,0,0,0,0,0,5.7756777,0,58.32,50.22,31.3,22.67,5,1,1,0,0,7,11,5,1,455.5,921355.63,493622.81,209829.06,28249.365,3397.707 -4158,5132,9194,9193,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,7.615087,7.5828042,0,6,-1,-145.82382,0,3,2,2019,29,10,37,37,1,10,0,7.2739177,7.2739177,0,0,0,0,0,0,0,0,0,0,31.3,22.67,58.32,50.22,1.666666666666667,1,1,0,0,7,11,5,1,455.5,921355.63,493622.81,209829.06,28249.365,3397.707 -4159,5133,9195,9198,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,7.9213333,7.9840817,0,16,0,-103.81679,0,1,2,2019,6,0,23,23,1,0,0,17.53508,17.53508,0,0,0,0,0,1,1,0,0,0,49.46,56.91,48.87,58.55,8.333333333333334,1,1,0,0,11,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 -4159,5133,9196,-9,9195,9198,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.3627,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 -4159,5133,9197,-9,9195,9198,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.6557,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 -4159,5133,9198,9195,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.9786873,8.8488598,0,16,0,21.274761,0,2,1,2019,12,0,36,35,1,0,0,25.13835,25.13835,0,0,0,0,0,1,1,0,1.5258253,0,48.87,58.55,49.46,56.91,8.333333333333334,1,1,0,0,11,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 -4159,5133,9199,-9,9195,9198,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.6177,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,523.79999,98616.539,181604.33,81708.273,0,3795.1968 -4160,5134,9200,9201,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.0011492,8.0196381,9,-2,-133.319,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9947219,7.8050828,59.14,52.5,54.37,54.8,8.333333333333334,1,1,0,0,4,10,3,1,773.5,1097279.1,801885.69,213183.75,0,3409.2122 -4160,5134,9201,9200,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.9256048,6.0023441,9,2,78.456291,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9606366,5.9816275,54.37,54.8,59.14,52.5,8.333333333333334,1,1,0,0,3,10,3,1,773.5,1097279.1,801885.69,213183.75,0,3409.2122 -4161,5135,9202,-9,9203,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.30408,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,1,1269.3334,151308.98,33306.508,58729.633,38096.754,2130.2859 -4161,5135,9203,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.6966553,8.4100409,0,0,0,-1021.613,0,2,-9,2019,29,12,46,40,1,12,0,14.547774,14.547774,0,0,0,0,0,1,1,0,0,0,22.06,65.69,-9,-9,1.666666666666667,4,2,0,1,9,7,4,1,1269.3334,151308.98,33306.508,58729.633,38096.754,2130.2859 -4161,5135,9204,-9,9203,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.85529,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,1,1269.3334,151308.98,33306.508,58729.633,38096.754,2130.2859 -4162,5136,9205,9206,-9,-9,1,0,41,0,3,0,3,3,-9,1,4,0,0,0,17,-14,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,53,54,7,2,3,0,1,0,8,1,0,512.66669,-154578.8,0,0,0,2504.5205 -4162,5136,9206,9205,-9,-9,1,1,55,0,3,0,3,3,-9,1,4,0,0,0,17,14,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,49,55,8,2,3,0,1,0,8,1,0,512.66669,-154578.8,0,0,0,2504.5205 -4162,5136,9207,-9,9205,9206,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.0172,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,512.66669,-154578.8,0,0,0,2504.5205 -4163,5137,9208,9209,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.783391,6.7104802,4,5,-30.086889,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0790768,6.6125441,43.61,56.01,43.43,54.3,8.333333333333334,1,1,0,0,0,4,3,1,976,890770.75,367675.41,320029.25,0,2420.7637 -4163,5137,9209,9208,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.1125073,6.8734965,4,-5,6.222023,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.1980977,6.9598613,43.43,54.3,43.61,56.01,6.666666666666667,1,1,0,0,0,4,3,1,976,890770.75,367675.41,320029.25,0,2420.7637 -4164,5138,9210,9211,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,58,2,-37.295841,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,34.53,40.09,55.19,51.55,8.333333333333334,1,1,0,0,0,2,2,1,951,86530.305,179260.27,199736.3,0,1645.2417 -4164,5138,9211,9210,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.6587086,6.6939397,58,-2,88.051323,0,-9,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.4511795,55.19,51.55,34.53,40.09,10,1,1,0,0,0,2,2,1,951,86530.305,179260.27,199736.3,0,1645.2417 -4165,5139,9212,9213,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,31,-3,88.06839,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,36.59,50.51,26.92,8.333333333333334,2,3,0,0,0,6,3,0,492.5,219051.33,76748.563,129696.15,0,1260.0043 -4165,5139,9213,9212,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.7334933,7.9476638,0,31,3,-3.9589231,0,2,2,2019,11,2,38,38,1,2,0,10.10477,10.10477,0,0,0,0,0,1,1,0,0,0,50.51,26.92,46.54,36.59,6.666666666666667,2,3,0,0,10,6,3,0,492.5,219051.33,76748.563,129696.15,0,1260.0043 -4165,5140,9214,-9,9212,9213,1,0,27,0,0,0,1,1,-9,0,5,8.2806883,8.0193272,0,0,0,-962.6106,0,2,2,2019,8,0,39,40,1,0,0,12.944563,12.944563,0,0,0,0,0,1,1,0,2.7072756,0,51.39,59.18,-9,-9,8.333333333333334,2,3,0,0,6,6,4,0,634,27970.438,50387.055,0,0,1611.4626 -4166,5141,9215,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.2156,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,11.222321,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,340,-8677.9053,0,0,0,2530.5894 -4166,5142,9216,-9,9215,-9,1,0,51,0,0,0,1,1,-9,0,3,8.3793135,8.619813,0,0,0,-1013.9252,0,3,3,2019,11,1,37,37,1,1,0,15.1107,15.1107,0,0,0,0,14.5,1,1,0,0,0,44.08,41.97,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,852,79808.945,79191.906,159963.45,0,2119.219 -4166,5143,9217,-9,9216,-9,1,0,23,0,0,0,1,1,-9,1,2,8.1686859,8.3662567,0,0,0,-934.11945,0,1,-9,2019,21,8,38,39,1,8,1,10.066597,10.066597,0,0,0,0,7,1,1,0,1.8361473,0,34.32,27.49,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,788,339487.5,10751.127,0,0,1664.8823 -4167,5144,9218,9219,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,51,1,-10.976066,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5250072,0,55.53,51.55,58.16,48.06,8.333333333333334,1,1,0,0,3,2,2,1,329,852053.38,436994.75,151801.42,0,2157.8506 -4167,5144,9219,9218,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.7046652,7.0000172,51,-1,-112.78786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2556806,58.16,48.06,55.53,51.55,8.333333333333334,1,1,0,0,8,2,2,1,329,852053.38,436994.75,151801.42,0,2157.8506 -4168,5145,9220,-9,9224,9223,1,1,11,1,4,1,3,0,-9,0,3,0,0,0,0,0,-974.49554,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 -4168,5145,9221,-9,9224,9223,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.2172,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 -4168,5145,9222,-9,9224,9223,1,1,14,1,4,1,3,0,-9,0,2,0,0,0,0,0,-985.6037,-9,3,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 -4168,5145,9223,9224,-9,-9,1,1,45,1,4,0,2,2,-9,0,3,7.2276855,7.3624406,0,20,2,15.905701,0,3,3,2019,10,0,30,28,1,0,0,6.3636541,6.3636541,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.88,46.3,8.333333333333334,2,3,0,1,6,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 -4168,5145,9224,9223,-9,-9,1,0,43,1,4,0,3,3,-9,0,3,0,0,0,20,-2,-55.020695,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,46.3,54.96,53.17,8.333333333333334,2,3,0,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 -4168,5145,9225,-9,9224,9223,1,1,16,1,4,1,2,0,-9,0,3,0,0,0,0,0,-1057.5265,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,1798.8334,224360.77,0,98110.641,0,2106.9387 -4169,5146,9226,9228,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.2649517,7.1144795,0,7,2,12.710022,0,3,3,2019,26,12,16,21,1,12,0,8.3308344,8.3308344,0,0,0,0,0,0,0,0,1.560101,0,22.65,64.05,48.87,58.55,3.333333333333333,1,1,0,0,7,12,5,1,1390.3334,305440.66,384823.22,223935.63,182061.23,5171.5991 -4169,5146,9227,-9,9226,9228,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.9532,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1390.3334,305440.66,384823.22,223935.63,182061.23,5171.5991 -4169,5146,9228,9226,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.2406454,9.5360394,7.3907275,7,-2,-.055229712,0,-9,-9,2019,12,0,42,42,1,0,0,26.603069,26.603069,0,0,0,0,0,0,0,0,0,7.9164119,48.87,58.55,22.65,64.05,8.333333333333334,1,1,0,0,8,12,5,1,1390.3334,305440.66,384823.22,223935.63,182061.23,5171.5991 -4170,5147,9229,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.6230879,8.2832117,0,0,0,-1069.9768,-9,2,2,2019,3,0,38,0,1,0,0,17.135551,17.135551,0,0,0,0,0,0,0,0,5.8510251,0,54.1,59.11,-9,-9,6.666666666666667,2,3,0,0,5,8,5,0,418,249396.98,79059.422,0,0,1733.2504 -4171,5148,9230,9231,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,9.0998907,8.6859465,0,7,6,17.657558,0,-9,-9,2019,11,2,48,45,1,2,0,17.890945,17.890945,0,0,0,0,0,1,1,0,3.6847355,0,45.99,51.88,49.33,51.63,6.666666666666667,1,1,0,0,9,6,5,1,753,191404.03,217713.41,139125.41,116834.53,5372.2666 -4171,5148,9231,9230,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.8333254,8.7257605,0,25,-6,71.803062,0,2,2,2019,6,2,45,41,1,2,0,17.813379,17.813379,0,0,0,0,0,1,1,0,0,0,49.33,51.63,45.99,51.88,8.333333333333334,1,1,0,0,9,6,5,1,753,191404.03,217713.41,139125.41,116834.53,5372.2666 -4171,5149,9232,-9,9231,9230,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1067.7572,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.2197509,0,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,418,31239.6,0,0,0,-482.73804 -4172,5150,9233,9234,-9,-9,1,1,54,0,3,0,3,3,-9,0,2,7.253994,7.353426,0,5,21,9.0915871,0,3,3,2019,15,3,50,50,1,3,0,3.1756651,3.1756651,0,0,0,0,0,1,1,0,0,0,34.06,38.71,51.83,57.2,5,1,1,0,0,7,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 -4172,5150,9234,9233,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,6.6348042,7.0397983,0,5,-21,117.05739,0,1,2,2019,8,0,32,17,1,0,0,3.1900678,3.1900678,0,0,0,0,0,1,1,0,0,0,51.83,57.2,34.06,38.71,8.333333333333334,1,1,0,0,2,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 -4172,5150,9235,-9,9234,9233,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.7318,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 -4172,5150,9236,-9,9234,9233,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1095.1311,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 -4172,5150,9237,-9,9234,9233,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-900.24371,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,2,0,766,424554,167941.97,148236.47,23823.682,2157.3188 -4173,5151,9238,9239,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,4,-8,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.9242582,0,5.48,1,1,0,0,0,51,48,51,46,7,1,1,0,0,0,11,1,0,992,-39471.656,0,84958.32,0,2105.5808 -4173,5151,9239,9238,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,4,8,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,16.88312,0,71.5,1,1,0,0,0,51,46,51,48,7,1,1,0,0,0,11,1,0,992,-39471.656,0,84958.32,0,2105.5808 -4174,5152,9240,9241,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3750858,8.1700907,0,8,11,17.147247,0,-9,-9,2019,12,0,24,24,1,0,0,26.474529,26.474529,0,0,0,0,0,0,0,0,1.8241911,0,57.33,53.46,25.05,48.26,8.333333333333334,1,1,0,0,9,12,5,1,523,785663.38,726274.38,251229.55,130341.45,2923.7681 -4174,5152,9241,9240,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.1634617,8.4405098,0,8,-11,-104.81771,0,2,2,2019,25,11,40,41,1,11,0,11.629199,11.629199,0,0,0,0,0,0,0,0,5.0213757,0,25.05,48.26,57.33,53.46,3.333333333333333,1,1,0,0,9,12,5,1,523,785663.38,726274.38,251229.55,130341.45,2923.7681 -4175,5153,9242,-9,9244,9245,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.87207,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 -4175,5153,9243,-9,9244,9245,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.114,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 -4175,5153,9244,9245,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.3008223,8.2810993,0,20,-1,-102.31229,0,2,2,2019,10,0,40,42,1,0,0,10.529658,10.529658,0,0,0,0,0,0,0,0,0,0,57.06,57.76,39.75,54.92,8.333333333333334,1,1,0,0,11,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 -4175,5153,9245,9244,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.4540806,9.7528028,0,18,1,-42.275112,0,2,-9,2019,14,2,91,91,1,2,0,17.849873,17.849873,0,0,0,0,0,0,0,0,7.1044254,0,39.75,54.92,57.06,57.76,3.333333333333333,1,1,0,0,11,12,5,1,1053.75,809625.63,771604.69,97273.578,27645.768,6132.7856 -4176,5154,9246,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1063.6425,0,3,3,2019,28,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,24.86,56.3,-9,-9,0,1,1,0,1,5,2,2,0,1129,-770003.25,0,0,0,508.92877 -4177,5155,9247,9248,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.9322448,8.2078152,0,6,0,81.903336,-9,2,2,2019,11,0,40,0,1,2,0,7.2537684,7.2537684,0,0,0,0,0,1,1,0,0,0,49,48,62.39,56.71,7,1,1,0,0,1,13,3,1,569.5,547649.63,367586,144982.11,0,1754.6687 -4177,5155,9248,9247,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,0,0,6,0,-65.02346,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,49,48,5,1,1,1,0,8,13,3,1,569.5,547649.63,367586,144982.11,0,1754.6687 -4178,5156,9249,9251,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.2582426,9.0456486,0,21,3,97.534317,0,-9,-9,2019,8,1,72,80,1,1,0,19.859846,19.859846,0,0,0,0,0,1,1,0,1.8939378,0,54.46,47.86,57.06,57.76,8.333333333333334,1,1,0,0,12,8,5,1,593.66669,876388.81,127190.35,778257.81,116381.2,8191.8418 -4178,5156,9250,-9,9251,9249,1,1,17,0,1,1,2,0,0,0,3,0,8.2998629,8.2543144,0,0,-1031.7686,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,8.609395,0,55.36,51.57,-9,-9,8.333333333333334,4,2,0,0,0,8,5,1,593.66669,876388.81,127190.35,778257.81,116381.2,8191.8418 -4178,5156,9251,9249,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.8263388,8.4680557,0,22,-3,124.2504,0,2,3,2019,6,0,36,35,1,0,0,20.447432,20.447432,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.46,47.86,8.333333333333334,2,3,0,0,12,8,5,1,593.66669,876388.81,127190.35,778257.81,116381.2,8191.8418 -4179,5157,9252,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.7142358,7.8114214,5.7418971,0,0,-1135.7849,0,2,3,2019,16,4,37,37,1,4,0,7.3644161,7.3644161,0,0,0,0,14.5,1,1,0,5.9333196,0,29.18,56.78,-9,-9,6.666666666666667,1,1,0,0,9,11,3,0,755,390788.5,0,86400.188,62680.969,1689.4967 -4180,5158,9253,-9,9255,9254,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.9545,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 -4180,5158,9254,9255,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.0334873,7.6285014,0,6,2,-141.42865,0,2,2,2019,13,4,45,35,1,4,0,7.4813285,7.4813285,0,0,0,0,0,1,1,0,0,0,38.04,42.19,44.13,38.11,3.333333333333333,2,3,0,0,8,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 -4180,5158,9255,9254,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,0,0,0,20,-2,80.144638,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.13,38.11,38.04,42.19,8.333333333333334,4,2,0,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 -4180,5158,9256,-9,9255,9254,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-885.72369,-9,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.85,60.4,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 -4180,5158,9257,-9,9255,9254,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1071.6432,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,2,1,784.20001,602374.88,157751.86,261024.8,0,2309.8938 -4181,5159,9258,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.3792181,8.5654173,0,0,0,-1008.2685,0,1,1,2019,13,1,35,57,1,1,0,12.95865,12.95865,0,0,0,0,0,1,1,0,1.5355421,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,245,-203053.44,8423.0303,164323.73,81605.898,3031.8931 -4182,5160,9259,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3769908,7.6079507,0,0,-881.25714,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.0191489,7.9654999,58.15,52.91,-9,-9,10,1,1,0,0,9,13,3,1,692,448411.91,181538.16,234496.84,0,2465.0054 -4183,5161,9260,-9,9262,9261,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.40289,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 -4183,5161,9261,9262,-9,-9,1,1,61,0,2,0,2,2,-9,0,3,8.6238508,8.4060984,5.4606066,17,15,-22.124664,0,1,1,2019,11,0,50,50,1,0,0,9.7388735,9.7388735,0,0,0,0,0,1,1,0,0,5.2797637,55.96,49.93,40.14,38.19,3.333333333333333,1,1,0,0,13,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 -4183,5161,9262,9261,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,7.7076941,8.2585945,6.5992961,17,-15,116.89642,0,2,3,2019,11,0,32,32,1,0,0,8.0736055,8.0736055,0,0,0,0,0,1,1,0,6.4201035,0,40.14,38.19,55.96,49.93,6.666666666666667,1,1,0,0,8,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 -4183,5161,9263,-9,9262,9261,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.6544,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,717.25,2227258,1949806.1,195159.5,0,3634.7432 -4184,5162,9264,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1053.3945,0,2,2,2019,12,0,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,-9,-9,3.333333333333333,1,1,1,1,4,1,2,1,549,-194982.44,88195.828,0,0,0 -4185,5163,9265,9266,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,10,0,172.82784,0,-9,-9,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,7,0,0,0,5.3028016,0,38.53,62.21,50.91,54.79,8.333333333333334,1,1,0,0,0,4,4,1,863.5,1803061.9,749616.38,416906.19,0,2627.4224 -4185,5163,9266,9265,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,8.5217447,8.7631941,32,0,-82.111015,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,7.7617416,8.3714476,50.91,54.79,38.53,62.21,10,1,1,0,0,10,4,4,1,863.5,1803061.9,749616.38,416906.19,0,2627.4224 -4186,5164,9267,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.8691463,8.8970041,0,0,0,-1176.6091,0,2,1,2019,14,2,52,38,1,2,0,17.215506,17.215506,0,0,0,0,0,1,1,0,3.8232186,0,40.99,54.49,-9,-9,3.333333333333333,4,2,0,0,11,8,5,1,1558,1325223,22578.994,549443.31,0,2706.4529 -4186,5165,9268,-9,9267,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1018.4909,-9,1,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,64.37,50.23,-9,-9,10,4,2,0,0,0,8,1,1,228,287897.59,0,0,0,0 -4187,5166,9269,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,5.4972372,5.5217829,0,0,0,-1030.9158,0,2,1,2019,17,5,21,21,1,5,0,1.3383116,1.3383116,0,0,0,0,0,0,0,0,4.8637223,0,40.71,62.41,-9,-9,3.333333333333333,1,1,0,1,11,8,2,0,214,127103.8,0,377790.44,0,-100.86507 -4188,5167,9270,-9,9272,9271,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.7766,-9,3,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,2,1,1,0,0,0,37.29,47.76,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,789.33331,-178260.67,0,0,0,1855.6918 -4188,5167,9271,9272,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,10,0,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50,49,48,49,7,1,1,1,0,0,5,1,0,789.33331,-178260.67,0,0,0,1855.6918 -4188,5167,9272,9271,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,10,0,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,49,7,1,1,1,0,0,5,1,0,789.33331,-178260.67,0,0,0,1855.6918 -4188,5168,9273,-9,9272,9271,1,1,31,0,0,0,2,2,-9,0,5,7.4682169,7.5224409,0,0,0,-967.80115,0,3,2,2019,6,0,30,19,1,0,1,8.0157948,8.0157948,0,0,0,0,7,1,1,0,0,0,50.67,44.67,-9,-9,5,1,1,0,0,2,5,3,0,529,-181823.03,108798.08,0,0,702.20001 -4189,5169,9274,9275,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8379102,7.7728362,0,31,0,-66.366692,0,2,3,2019,6,0,32,33,1,0,0,7.785511,7.785511,0,0,0,0,0,0,0,0,2.6380668,0,57.09,46.7,55.18,49.42,8.333333333333334,1,1,0,0,10,7,3,1,656.5,13977.762,0,0,0,981.91846 -4189,5169,9275,9274,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,0,0,0,31,0,72.721741,0,2,2,2019,6,0,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,4.8794904,0,55.18,49.42,57.09,46.7,6.666666666666667,1,1,1,0,10,7,3,1,656.5,13977.762,0,0,0,981.91846 -4189,5170,9276,-9,9274,9275,1,0,23,0,0,0,2,2,-9,0,2,8.1191778,7.7630978,0,0,0,-960.27179,0,2,2,2019,20,6,38,40,1,6,1,9.0695391,9.0695391,0,0,0,0,0,0,0,0,2.8680317,0,35.33,41.01,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,266,-147209.95,-19371.203,0,0,1526.5493 -4189,5171,9277,-9,9274,9275,1,0,21,0,0,0,2,2,-9,0,4,7.4780412,7.6981993,0,0,0,-935.64264,0,2,1,2019,30,12,38,38,1,12,1,5.008625,5.008625,0,0,0,0,0,0,0,0,0,0,36.62,58.96,-9,-9,3.333333333333333,1,1,0,0,5,7,3,1,707,-303224.19,0,0,0,463.33646 -4190,5172,9278,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.5597873,6.4339647,0,0,-1008.6304,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8638864,60.05,29.29,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,313,506806.56,121943.88,315534.84,0,2059.6479 -4191,5173,9279,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.9127188,8.6996927,0,0,0,-966.5069,0,3,2,2019,14,3,45,45,1,3,0,14.55583,14.55583,0,0,0,0,0,0,0,0,6.7854476,0,30.75,61.56,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,108,680174.5,0,310369.47,173640.64,3281.2705 -4191,5174,9280,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.0731144,8.4548874,0,0,0,-1103.0084,0,-9,-9,2019,12,0,37,37,1,0,0,12.021022,12.021022,0,0,0,0,0,0,0,0,1.4262145,0,51.49,57.57,-9,-9,6.666666666666667,3,4,0,0,9,9,4,1,512,-2166.8611,10082.357,208774.58,37205.406,1529.5112 -4192,5175,9281,9282,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,9.4272661,9.1579075,0,13,-2,73.983047,0,2,2,2019,11,0,60,51,1,0,0,21.437592,21.437592,0,0,0,0,0,0,0,0,4.9647913,0,54.98,37.25,36.92,64.01000000000001,8.333333333333334,1,1,0,0,11,6,5,1,407.5,783744.25,212535.81,203340.75,46208.086,6307.9473 -4192,5175,9282,9281,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7613754,8.600215,0,13,2,53.143913,0,2,2,2019,11,3,37,38,1,3,0,20.558033,20.558033,0,0,0,0,7,0,0,0,4.1341314,0,36.92,64.01000000000001,54.98,37.25,8.333333333333334,1,1,0,0,11,6,5,1,407.5,783744.25,212535.81,203340.75,46208.086,6307.9473 -4193,5176,9283,9284,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.6785355,6.891386,6,-5,-188.9758,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9775577,6.7155542,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,1,9,3,1,1693.5,1111928.8,94873.852,530285,0,2054.7046 -4193,5176,9284,9283,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,7.6657495,7.8571401,6,5,-25.063631,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.2127838,0,0,1,1,0,2.5798795,7.6990232,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,1693.5,1111928.8,94873.852,530285,0,2054.7046 -4194,5177,9285,9286,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.7667646,5.4928942,10,-3,147.28058,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5899515,52.8,46.11,51,45,8.333333333333334,1,1,0,0,0,12,2,1,278.5,356509,192044,127789.53,0,1537.7754 -4194,5177,9286,9285,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,10,3,8.3246346,0,3,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,51,45,52.8,46.11,5,1,1,0,0,7,12,2,1,278.5,356509,192044,127789.53,0,1537.7754 -4195,5178,9287,9289,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,15,9,58.570026,0,-9,-9,2019,12,3,0,16,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,61.98,31.01,54.2,57.49,5,1,1,1,0,5,4,3,1,1234.3334,-29085.953,-17915.881,0,0,1996.8005 -4195,5178,9288,-9,9287,9289,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1005.4382,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,1234.3334,-29085.953,-17915.881,0,0,1996.8005 -4195,5178,9289,9287,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.389966,8.3264008,0,15,0,51.89246,0,2,2,2019,6,0,45,40,1,0,0,9.7152157,9.7152157,0,0,0,0,0,1,1,0,0,0,54.2,57.49,61.98,31.01,8.333333333333334,1,1,0,0,9,4,3,1,1234.3334,-29085.953,-17915.881,0,0,1996.8005 -4195,5179,9290,-9,9287,9289,1,1,20,0,1,0,2,2,1,0,4,7.7980146,7.6627793,0,0,0,-977.75574,-9,2,2,2019,6,0,38,0,1,0,1,7.7828498,7.7828498,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,2417,164817.27,-8964.4014,0,0,741.72485 -4196,5180,9291,9292,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3638306,7.503324,7,-2,-8.3968477,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3517065,7.3122745,52,48,50,47,7,1,1,0,0,0,4,3,1,407,918104,614507,133390.44,0,2235.1016 -4196,5180,9292,9291,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,40,2,-9.3936682,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7567387,0,50,47,52,48,7,1,1,0,0,0,4,3,1,407,918104,614507,133390.44,0,2235.1016 -4197,5181,9293,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,5,0,6.7106657,6.8748193,0,0,-1059.6069,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.679513,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,12,2,0,545,8606.8174,0,0,0,720.0968 -4197,5182,9294,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,3.5027597,3.3536384,0,0,-1013.8282,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.3946681,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,2129,92947.344,0,0,0,94.459435 -4197,5183,9295,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-910.27441,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,368,266103,0,0,0,248.50085 -4198,5184,9296,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.1740398,6.9854989,0,0,0,-1017.2573,0,-9,-9,2019,8,0,16,16,1,0,0,8.7650404,8.7650404,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,1243.5,-171332.59,0,0,0,1194.1045 -4198,5184,9297,-9,9296,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.0179,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,1243.5,-171332.59,0,0,0,1194.1045 -4199,5185,9298,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.343833,8.4084454,0,3,2,-6.6330767,0,2,-9,2019,5,0,60,50,1,0,0,9.220068,9.220068,0,0,0,0,0,0,0,0,0,0,62.66,52.4,49,56,8.333333333333334,1,1,0,0,10,2,3,1,1262,301766.19,-8653.6045,0,0,676.12549 -4200,5186,9299,9300,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.8130045,8.5883474,0,4,-1,-12.359167,0,-9,-9,2019,10,0,40,56,1,0,0,14.647681,14.647681,0,0,0,0,0,0,0,0,2.7603765,0,47.15,56.66,46.16,51.87,8.333333333333334,1,1,0,0,3,8,5,1,481.5,559907.94,160358.94,401187.5,331021.63,43454.855 -4200,5186,9300,9299,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,9.6668158,9.720067,0,4,1,88.973122,-9,-9,-9,2019,10,0,50,0,1,0,0,37.122047,37.122047,0,0,0,0,0,0,0,0,0,0,46.16,51.87,47.15,56.66,6.666666666666667,1,1,0,0,9,8,5,1,481.5,559907.94,160358.94,401187.5,331021.63,43454.855 -4201,5187,9301,9302,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.2453203,7.7536263,0,6,-2,-47.395439,0,3,3,2019,6,0,30,30,1,0,0,5.2251234,5.2251234,0,0,0,0,0,0,0,0,0,0,56.47,51.37,58.15,52.91,8.333333333333334,1,1,0,0,8,13,5,1,404,323093.06,99187.141,130103.39,0,3447.9121 -4201,5187,9302,9301,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.7011538,8.7871065,3.8949556,6,2,-68.140221,0,3,2,2019,10,0,38,36,1,0,0,19.466349,19.466349,0,0,0,0,0,0,0,0,3.896529,4.0236149,58.15,52.91,56.47,51.37,8.333333333333334,1,1,0,0,8,13,5,1,404,323093.06,99187.141,130103.39,0,3447.9121 -4201,5188,9303,-9,9301,9302,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1057.0909,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,203,0,0,0,0,176.74625 -4202,5189,9304,-9,9305,9306,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.78271,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,469,439092.94,173026.02,362983.75,60853.418,4351.3315 -4202,5189,9305,9306,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.3748617,8.8051815,0,5,-7,26.511164,0,2,2,2019,15,5,35,45,1,5,0,13.911428,13.911428,0,0,0,0,0,1,1,0,0,0,47.81,52.33,54.79,55.86,8.333333333333334,1,1,0,0,11,6,5,1,469,439092.94,173026.02,362983.75,60853.418,4351.3315 -4202,5189,9306,9305,-9,-9,1,1,40,1,1,0,1,1,-9,0,4,8.9557428,9.1873608,0,5,7,162.73598,0,-9,-9,2019,3,0,40,53,1,0,0,25.916645,25.916645,0,0,0,0,0,1,1,0,0,0,54.79,55.86,47.81,52.33,8.333333333333334,1,1,0,0,7,6,5,1,469,439092.94,173026.02,362983.75,60853.418,4351.3315 -4203,5190,9307,9308,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,8,-1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.6887002,0,50.65,60.47,43.48,41.11,10,1,1,0,0,0,11,1,1,221,-52596.773,0,0,0,755.43695 -4203,5190,9308,9307,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,8,1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5951325,0,43.48,41.11,50.65,60.47,1.666666666666667,1,1,0,0,8,11,1,1,221,-52596.773,0,0,0,755.43695 -4204,5191,9309,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,0,0,-977.03143,0,2,1,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,29.71,58.13,-9,-9,8.333333333333334,1,1,0,1,0,1,1,0,697,46750.797,0,0,0,1523.6086 -4204,5191,9310,-9,9309,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.5306,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,697,46750.797,0,0,0,1523.6086 -4204,5191,9311,-9,9309,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-857.37469,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,697,46750.797,0,0,0,1523.6086 -4205,5192,9312,9313,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,9,-1,-14.428048,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.1525943,0,51,47,46.13,33.02,7,1,1,0,0,0,5,2,1,546,-156127.81,184997.45,114570.23,0,918.93787 -4205,5192,9313,9312,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,5.8484607,6.1646976,52,1,19.219702,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,6.920403,6.2085619,46.13,33.02,51,47,6.666666666666667,1,1,0,0,5,5,2,1,546,-156127.81,184997.45,114570.23,0,918.93787 -4206,5193,9314,-9,9316,9317,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-888.00952,-9,3,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,61.75,-9,-9,6.666666666666667,2,3,0,0,0,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 -4206,5193,9315,-9,9316,9317,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.13495,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 -4206,5193,9316,9317,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,7.7930193,8.1617517,0,9,7,-24.498756,0,3,3,2019,13,1,12,16,1,1,0,21.246855,21.246855,0,0,0,0,14.5,1,1,0,0,0,40.48,60.05,52.5,51.97,5,2,3,0,0,12,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 -4206,5193,9317,9316,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.6837578,8.7041426,0,9,-7,-79.31205,0,-9,-9,2019,6,0,50,40,1,0,0,13.763203,13.763203,0,0,0,0,0,1,1,0,0,0,52.5,51.97,40.48,60.05,3.333333333333333,2,3,0,0,13,9,5,1,417,638592.75,40823.824,573681.63,117543.93,3412.1558 -4206,5194,9318,-9,9316,9317,1,1,21,0,1,0,2,2,-9,0,3,8.0612383,8.3317623,0,0,0,-1023.6105,0,3,1,2019,6,0,50,41,1,0,1,6.2935667,6.2935667,0,0,0,0,2,1,1,0,0,0,38.78,52.41,-9,-9,8.333333333333334,2,3,0,0,5,9,4,1,517,-158235.53,0,0,0,1113.6244 -4207,5195,9319,9320,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,0,0,0,5,-12,38.763741,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,43.57,43.17,10,2,3,0,0,2,5,2,1,873.33331,-19925.439,0,0,0,252.22411 -4207,5195,9320,9319,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,5.152905,5.1789846,0,5,12,149.91034,0,3,2,2019,4,1,2,51,1,1,0,8.7459669,8.7459669,0,0,0,0,0,1,1,0,6.3878837,0,43.57,43.17,54.63,58.83,0,2,3,0,0,12,5,2,1,873.33331,-19925.439,0,0,0,252.22411 -4207,5195,9321,-9,9319,9320,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-911.02692,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,5,2,1,873.33331,-19925.439,0,0,0,252.22411 -4208,5196,9322,-9,9323,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.36914,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,629.33331,79580.805,-25517.609,0,0,2734.8899 -4208,5196,9323,-9,-9,-9,1,0,26,1,2,0,1,1,-9,0,4,7.6182847,7.64993,0,0,0,-1109.333,0,1,2,2019,17,6,42,15,1,6,0,5.3928151,5.3928151,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,629.33331,79580.805,-25517.609,0,0,2734.8899 -4208,5196,9324,-9,9323,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.1127,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,629.33331,79580.805,-25517.609,0,0,2734.8899 -4209,5197,9325,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,6.8955431,6.9130821,0,0,0,-979.45746,0,3,3,2019,33,12,20,20,1,12,0,5.0493493,5.0493493,0,0,0,0,7,0,0,0,0,0,23.77,28.58,-9,-9,0,1,1,0,0,2,11,2,0,464,265030.84,0,127359.2,77922.039,942.12933 -4209,5198,9326,-9,9325,-9,1,0,25,0,0,0,3,3,-9,0,5,7.1355362,6.8850808,0,0,0,-835.28351,0,3,-9,2019,7,0,20,20,1,0,1,7.4078436,7.4078436,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,11,2,0,605,273562.91,0,0,0,840.45575 -4210,5199,9327,9328,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.480751,8.3114271,0,3,-6,-61.480442,0,3,2,2019,11,0,55,50,1,0,0,8.3261003,8.3261003,0,0,0,0,0,1,1,0,0,0,59.31,49.81,52,47,8.333333333333334,1,1,0,0,7,12,4,1,675,620222.13,468312.88,311091.66,0,2735.7041 -4210,5199,9328,9327,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.564549,7.6581178,6.3415694,3,6,.63171977,0,-9,-9,2019,10,0,8,8,1,1,0,23.941175,23.941175,0,0,0,0,0,1,1,0,5.1696858,6.1107655,52,47,59.31,49.81,7,4,1,0,0,1,12,4,1,675,620222.13,468312.88,311091.66,0,2735.7041 -4211,5200,9329,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.7184162,8.8229294,0,0,0,-874.77295,0,2,2,2019,6,0,55,40,1,0,0,11.779976,11.779976,0,0,0,0,0,1,1,0,4.3012562,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,109,379104.06,436049.78,233020.88,129450.88,3578.7334 -4212,5201,9330,9331,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.2874398,8.0695705,7.6089964,8,-1,29.121426,0,-9,-9,2019,9,0,15,13,1,0,0,7.8336778,7.8336778,0,0,0,0,0,0,0,0,3.1511402,7.2969551,52.2,27.81,52,55,8.333333333333334,1,1,0,0,9,10,4,1,412.5,244857.13,124805.89,285974.13,117123.48,3084.5305 -4212,5201,9331,9330,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3902016,8.0481386,0,26,1,-50.55809,0,3,2,2019,9,0,48,40,1,1,0,8.7336273,8.7336273,0,0,0,0,0,0,0,0,2.9770825,0,52,55,52.2,27.81,8,1,1,0,0,1,10,4,1,412.5,244857.13,124805.89,285974.13,117123.48,3084.5305 -4212,5202,9332,-9,9330,9331,1,1,22,0,0,0,2,2,-9,0,4,7.9400144,8.0553827,0,0,0,-999.15918,0,2,2,2019,10,0,38,40,1,1,1,8.0847645,8.0847645,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,10,4,1,928,30888.002,-106607.63,0,0,1238.451 -4213,5203,9333,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9988022,7.7585263,0,0,0,-906.8847,0,3,3,2019,13,2,40,38,1,2,0,6.2830606,6.2830606,0,0,0,0,0,1,0,1,0,0,49.81,45.94,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,399.5,125332.73,6727.4502,0,0,1453.7595 -4213,5203,9334,-9,9333,-9,1,0,17,0,1,0,2,2,1,0,2,0,0,0,0,0,-1037.2013,-9,2,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,35.44,44.94,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,399.5,125332.73,6727.4502,0,0,1453.7595 -4214,5204,9335,9336,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9732037,8.0593233,0,24,-1,-98.96759,0,3,3,2019,12,0,38,38,1,0,0,10.19416,10.19416,0,0,0,0,0,0,0,0,0,0,36.44,56.63,61.28,48.88,5,1,1,0,0,11,5,5,0,971.5,-361691.88,164387.05,0,0,2694.7554 -4214,5204,9336,9335,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,8.3526411,8.0168571,0,10,1,133.71796,0,-9,-9,2019,11,0,47,54,1,0,0,10.80653,10.80653,0,0,0,0,0,0,0,0,0,0,61.28,48.88,36.44,56.63,6.666666666666667,1,1,0,0,10,5,5,0,971.5,-361691.88,164387.05,0,0,2694.7554 -4215,5205,9337,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1051.406,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.88,35.43,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,394,-87739.875,0,0,0,742.89716 -4216,5206,9338,9339,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.9486065,7.7506104,56,7,-16.864927,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.669312,8.2336912,58.47,28.96,59.71,50.89,6.666666666666667,1,1,0,0,11,4,3,1,779.5,457401,319361.63,114430.31,0,3953.4402 -4216,5206,9339,9338,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.1850753,6.3365955,56,-7,32.632698,0,3,3,2019,8,0,0,8,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7340107,6.2822533,59.71,50.89,58.47,28.96,8.333333333333334,1,1,0,0,11,4,3,1,779.5,457401,319361.63,114430.31,0,3953.4402 -4217,5207,9340,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.8101177,6.0323472,0,0,-1205.6641,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,28.715322,0,0,1,1,0,0,5.8177857,68.67,13.13,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1648,324140.31,257481.13,138496,0,1627.1989 -4218,5208,9341,9342,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3085737,8.4141464,0,7,2,-.46350768,0,2,-9,2019,12,3,28,25,1,3,0,17.255003,17.255003,0,0,0,0,0,0,0,0,6.7651496,0,40.35,58.72,52.34,56.95,10,1,1,0,0,10,9,5,1,404.5,653490.56,221437.45,340605.44,65471.297,5316.4585 -4218,5208,9342,9341,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.2386312,8.9636278,0,33,-2,-132.70427,0,3,3,2019,9,1,45,39,1,1,0,27.986641,27.986641,0,0,0,0,0,0,0,0,6.5290332,0,52.34,56.95,40.35,58.72,8.333333333333334,1,1,0,0,10,9,5,1,404.5,653490.56,221437.45,340605.44,65471.297,5316.4585 -4219,5209,9343,9344,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.2110205,4.4720874,44,0,197.02007,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.8483102,4.2905583,52.82,53.97,54.37,54.8,8.333333333333334,1,1,0,0,5,5,4,1,1163,1556673,1391621.3,250398.34,0,3141.7012 -4219,5209,9344,9343,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.4831476,8.3612785,44,0,-.36840883,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.2770925,8.5971432,54.37,54.8,52.82,53.97,8.333333333333334,1,1,0,0,12,5,4,1,1163,1556673,1391621.3,250398.34,0,3141.7012 -4220,5210,9345,9346,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.8773694,7.40133,56,7,51.917923,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,11.443985,0,0,1,1,0,7.1324258,7.2131705,61.43,24.91,54.36,39.67,6.666666666666667,2,3,0,0,0,8,3,1,557,1120074,321776.25,676141.25,0,2197.2739 -4220,5210,9346,9345,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,56,-7,74.937523,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.8824444,0,0,1,1,0,0,0,54.36,39.67,61.43,24.91,6.666666666666667,2,3,0,0,0,8,3,1,557,1120074,321776.25,676141.25,0,2197.2739 -4221,5211,9347,-9,9348,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.9718,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,329.5,273446.63,134.83984,141970.81,0,2528.7344 -4221,5211,9348,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,5,9.1647406,8.9925213,0,0,0,-951.70337,0,2,2,2019,3,0,44,43,1,0,0,17.010643,17.010643,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,5,5,1,329.5,273446.63,134.83984,141970.81,0,2528.7344 -4222,5212,9349,9350,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.7860203,8.8523197,0,20,-3,-63.198425,0,2,3,2019,7,0,30,32,1,0,0,25.954384,25.954384,0,0,0,0,0,1,1,0,4.5684657,0,51.45,50.44,43.63,61.31,8.333333333333334,1,1,0,0,8,4,5,1,548.33331,979189.81,84627.875,456798.5,0,4364.3506 -4222,5212,9350,9349,-9,-9,1,1,57,0,1,0,1,1,-9,0,5,8.6845865,8.8380823,0,19,3,95.430511,0,2,3,2019,11,2,37,27,1,2,0,12.880397,12.880397,0,0,0,0,0,1,1,0,1.3161532,0,43.63,61.31,51.45,50.44,6.666666666666667,1,1,0,0,8,4,5,1,548.33331,979189.81,84627.875,456798.5,0,4364.3506 -4222,5212,9351,-9,9349,9350,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-959.24084,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,4,5,1,548.33331,979189.81,84627.875,456798.5,0,4364.3506 -4223,5213,9352,-9,-9,-9,1,0,19,0,2,1,2,0,-9,0,3,0,0,0,0,0,-932.91296,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,6.666666666666667,2,3,0,1,0,5,1,1,1604,-89112.414,0,0,0,0 -4224,5214,9353,9354,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,6.919528,7.2886934,0,22,-6,20.641842,0,2,2,2019,7,0,8,0,1,0,0,17.5051,17.5051,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.12,54.8,8.333333333333334,2,3,0,0,8,6,3,1,1634.6666,688888.81,19502.504,622588.5,0,1996.2777 -4224,5214,9354,9353,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.3517876,8.3770094,0,22,6,-28.939148,0,-9,-9,2019,6,0,48,48,1,0,0,7.8400846,7.8400846,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.96,53.17,6.666666666666667,2,3,0,0,9,6,3,1,1634.6666,688888.81,19502.504,622588.5,0,1996.2777 -4224,5214,9355,-9,9353,9354,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1056.205,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,3,1,1634.6666,688888.81,19502.504,622588.5,0,1996.2777 -4225,5215,9356,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.2354469,8.1756258,0,0,0,-961.28217,0,2,2,2019,8,0,41,45,1,0,0,11.407704,11.407704,0,0,0,0,0,0,0,0,0,0,44.9,55.12,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,742,-59834.242,62756.914,0,0,1331.6887 -4225,5215,9357,-9,9356,-9,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.47058,-9,1,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30.71,65.7,-9,-9,6.666666666666667,1,1,0,0,1,9,4,0,742,-59834.242,62756.914,0,0,1331.6887 -4225,5216,9358,-9,9356,-9,1,0,20,0,0,0,2,2,-9,0,4,7.6466155,7.207355,0,0,0,-880.86194,0,1,-9,2019,21,9,34,0,1,9,1,7.382267,7.382267,0,0,0,0,0,0,0,0,0,0,34.48,61.03,-9,-9,6.666666666666667,1,1,0,0,4,9,3,0,766,305094.66,-66035.719,0,0,1026.2006 -4226,5217,9359,9360,-9,-9,1,1,54,0,2,0,2,2,-9,0,5,8.6451616,8.8187304,0,8,8,42.431095,0,2,2,2019,8,0,30,40,1,0,0,23.467735,23.467735,0,0,0,0,0,1,1,0,7.0011845,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,13,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 -4226,5217,9360,9359,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.9274702,8.3844156,0,8,-8,-71.91037,0,-9,-9,2019,7,0,25,7,1,0,0,14.862693,14.862693,0,0,0,0,0,1,1,0,7.7160845,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,5,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 -4226,5217,9361,-9,9360,9359,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.32861,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 -4226,5217,9362,-9,9360,9359,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-885.57086,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,582.25,1742448.3,1173540.3,397541.09,34967.25,6449.8779 -4226,5218,9363,-9,9360,9359,1,1,18,0,2,0,2,2,-9,0,5,6.8438039,6.7326927,0,0,0,-1094.5728,-9,1,2,2019,21,7,20,0,1,7,1,5.8092542,5.8092542,0,0,0,0,0,1,1,0,2.5144563,0,41.07,60.93,-9,-9,1.666666666666667,1,1,0,0,2,10,2,1,207,-70398.789,0,0,0,890.77075 -4227,5219,9364,9365,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,6.9311628,6.8438554,0,47,-3,-105.61284,0,3,3,2019,10,0,16,16,1,0,0,6.8354363,6.8354363,0,0,0,0,0,1,1,0,0,0,44.42,48.36,52,48,6.666666666666667,1,1,0,0,3,4,2,1,739,90633.711,0,71792.688,0,1241.9485 -4227,5219,9365,9364,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.0387955,5.1199307,45,3,70.316345,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.070642,52,48,44.42,48.36,0,1,1,0,0,2,4,2,1,739,90633.711,0,71792.688,0,1241.9485 -4228,5220,9366,9367,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,6.9810672,9.1149302,9.0914879,33,6,-71.639999,0,2,2,2019,5,0,4,35,1,0,0,20.431458,20.431458,0,0,0,0,0,0,0,0,7.0260515,8.9609175,60.02,56.42,57.06,57.76,10,1,1,0,0,10,5,5,1,933.5,3308455.3,2455633.5,450750.75,0,5739.0449 -4228,5220,9367,9366,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.6641846,9.1130733,0,34,-6,-76.790344,0,3,3,2019,7,0,37,37,1,0,0,18.781221,18.781221,0,0,0,0,0,0,0,0,1.3104427,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,10,5,5,1,933.5,3308455.3,2455633.5,450750.75,0,5739.0449 -4229,5221,9368,9369,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.9446783,9.0816145,0,5,2,-76.703049,0,-9,-9,2019,11,0,35,45,1,2,0,27.011257,27.011257,0,0,0,0,0,0,0,0,5.0265374,0,48,57,51.83,57.2,7,1,1,0,0,1,2,5,1,886,423457.88,277259.13,202790.63,140138.34,4731.7451 -4229,5221,9369,9368,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.6946383,8.5539455,0,5,-2,31.796856,0,1,1,2019,12,0,58,48,1,0,0,11.629587,11.629587,0,0,0,0,0,0,0,0,.80812025,0,51.83,57.2,48,57,8.333333333333334,1,1,0,0,9,2,5,1,886,423457.88,277259.13,202790.63,140138.34,4731.7451 -4230,5222,9370,9371,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.4051099,7.5603385,0,7,-1,-118.99096,0,3,2,2019,25,12,27,27,1,12,0,9.5495548,9.5495548,0,0,0,0,0,0,0,0,0,0,34.99,26.11,49.57,42.36,3.333333333333333,1,1,0,0,8,9,5,1,631,2273600,1154486.8,753135,0,4041.2405 -4230,5222,9371,9370,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.9624176,8.9584122,4.2402291,7,1,80.678673,-9,3,3,2019,7,0,50,0,1,0,0,20.635946,20.635946,0,0,0,0,0,0,0,0,0,4.5758233,49.57,42.36,34.99,26.11,6.666666666666667,1,1,0,0,8,9,5,1,631,2273600,1154486.8,753135,0,4041.2405 -4231,5223,9372,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-968.59424,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,10.82,-9,-9,5,1,1,0,0,0,9,1,0,124,-521914.91,0,0,0,1315.7072 -4232,5224,9373,9374,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,9.1910076,9.0488224,6.7550468,37,3,-71.130257,0,2,2,2019,7,0,40,40,1,0,0,29.297319,29.297319,0,0,0,0,0,1,1,0,2.7764735,7.1345439,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,245.5,2902283.3,1616537.3,1001094.4,0,7157.9385 -4232,5224,9374,9373,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,8.2848511,8.4516869,3.4571824,37,-3,68.052841,0,3,2,2019,8,0,40,43,1,0,0,12.403059,12.403059,1,0,0,0,0,1,1,0,0,3.5781124,54.2,57.49,54.1,59.11,10,1,1,0,0,12,7,5,1,245.5,2902283.3,1616537.3,1001094.4,0,7157.9385 -4233,5225,9375,9376,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1164303,8.2072048,0,15,-4,33.930527,0,2,2,2019,21,9,26,30,1,9,0,19.658995,19.658995,0,0,0,0,0,1,1,0,7.8742156,0,25.37,63.98,32.82,56.45,5,1,1,0,1,10,12,4,1,1290.3334,140437.34,114465.47,106142.73,144874.13,3797.9849 -4233,5225,9376,9375,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.5028138,7.2354159,0,9,4,127.62287,0,-9,-9,2019,22,10,85,70,1,10,0,1.8534263,1.8534263,0,0,0,0,0,1,1,0,0,0,32.82,56.45,25.37,63.98,6.666666666666667,1,1,0,1,10,12,4,1,1290.3334,140437.34,114465.47,106142.73,144874.13,3797.9849 -4233,5225,9377,-9,9375,9376,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.37622,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,1290.3334,140437.34,114465.47,106142.73,144874.13,3797.9849 -4234,5226,9378,9379,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.9201345,8.4670811,49,1,-50.320095,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.0918665,9.0017233,40.89,40.95,57.16,56.15,8.333333333333334,1,1,0,0,0,13,5,1,675,3005307.3,1484791.5,712523.75,0,6372.8008 -4234,5226,9379,9378,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.3066125,6.9434581,49,-1,-162.67285,0,3,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,7.528306,57.16,56.15,40.89,40.95,0,1,1,0,0,3,13,5,1,675,3005307.3,1484791.5,712523.75,0,6372.8008 -4235,5227,9380,-9,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.7099714,8.5989428,0,0,-1017.5414,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,2.4218216,0,24.242014,0,1,1,0,3.8792462,8.5072365,58.09,14.09,-9,-9,8.333333333333334,1,1,0,0,0,7,5,0,1809,4879969,0,1648988.6,0,3920.0479 -4236,5228,9381,9382,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.9157715,8.817996,0,1,0,28.270164,-9,-9,-9,2019,7,0,42,0,1,0,0,13.950511,13.950511,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,9,2,5,1,259,402080.63,118252.7,141505.48,84245.477,4351.3291 -4236,5228,9382,9381,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.6761532,8.471446,0,1,0,-27.81048,0,3,3,2019,5,0,41,35,1,0,0,20.328745,20.328745,0,0,0,0,0,0,0,0,3.3029327,0,62.39,56.71,57.16,56.15,10,1,1,0,0,8,2,5,1,259,402080.63,118252.7,141505.48,84245.477,4351.3291 -4237,5229,9383,9384,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,8.7519188,8.7330799,0,9,0,46.396896,-9,3,3,2019,12,1,45,0,1,1,0,15.980443,15.980443,0,0,0,0,14.5,1,1,0,4.2288251,0,38.13,51.33,45.32,54.77,5,1,1,0,0,13,13,4,1,331.5,53416.535,0,0,0,4350.4336 -4237,5229,9384,9383,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,8.1319046,8.0686274,0,9,0,-80.774284,0,2,1,2019,8,0,30,36,1,0,0,17.750706,17.750706,0,0,0,.66367453,14.5,1,1,0,0,0,45.32,54.77,38.13,51.33,6.666666666666667,1,1,0,0,11,13,4,1,331.5,53416.535,0,0,0,4350.4336 -4238,5230,9385,9386,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.3154469,8.7911062,0,10,4,38.104221,0,2,2,2019,10,0,35,45,1,0,0,15.104529,15.104529,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.02,60.7,6.666666666666667,1,1,0,0,13,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 -4238,5230,9386,9385,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.3510809,7.2585068,0,10,-4,76.893883,0,2,2,2019,11,0,16,20,1,0,0,14.08136,14.08136,0,0,0,0,0,1,1,0,1.7132727,0,44.02,60.7,54.2,57.49,6.666666666666667,1,1,0,0,10,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 -4238,5230,9387,-9,9386,9385,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.8443,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 -4238,5230,9388,-9,9386,9385,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.78241,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,4,1,573,424525.84,17403.738,412602.69,0,2872.6526 -4239,5231,9389,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,2.7630522,3.0724664,0,0,-922.06213,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.0218883,2.8639708,55,45,-9,-9,8,1,1,0,0,0,4,2,1,302,271468.84,139901.2,171687.77,0,725.31683 -4240,5232,9390,9392,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.0228224,9.236968,0,23,-5,-3.7106426,0,2,2,2019,5,0,35,35,1,0,0,30.384007,30.384007,0,0,0,0,0,1,1,0,2.6813285,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 -4240,5232,9391,-9,9392,9390,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.05615,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 -4240,5232,9392,9390,-9,-9,1,0,50,0,2,0,1,1,-9,0,5,9.2919722,8.876296,0,24,5,-60.213963,0,3,3,2019,3,0,38,32,1,0,0,24.166134,24.166134,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 -4240,5232,9393,-9,9392,9390,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.8618,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.75,2553649,310306.69,764299.25,87040.633,6889.3091 -4241,5233,9394,9395,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.3727493,6.2275481,8,1,57.587105,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1981106,64,38.07,58.67,39.12,10,1,1,0,0,3,13,2,0,798,368152.5,44641.207,202982.03,0,1474.4305 -4241,5233,9395,9394,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,8,-1,-23.889484,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.67,39.12,64,38.07,10,1,1,0,0,0,13,2,0,798,368152.5,44641.207,202982.03,0,1474.4305 -4242,5234,9396,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,7.7248707,8.0688457,0,0,0,-1132.8038,0,3,3,2019,22,8,38,49,1,8,0,7.1880727,7.1880727,0,0,0,0,0,0,0,0,0,0,53,56,-9,-9,0,3,4,0,1,5,4,3,0,376,416722.22,-90384.813,90694.117,61266.602,443.12265 -4243,5235,9397,9398,-9,-9,1,0,60,0,1,0,2,2,-9,0,4,7.3753395,7.5320911,0,42,1,-12.855605,0,3,3,2019,12,0,16,16,1,0,0,10.207419,10.207419,0,0,0,0,0,1,1,0,0,0,35.03,51.4,45.3,52.04,6.666666666666667,2,3,0,0,3,2,3,1,443,-267412.25,39855.844,0,0,1164.1069 -4243,5235,9398,9397,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,7.386611,7.4774184,0,42,-1,-79.792465,0,3,3,2019,12,0,30,30,1,0,0,7.0862842,7.0862842,0,0,0,0,0,1,1,0,0,0,45.3,52.04,35.03,51.4,8.333333333333334,2,3,0,0,6,2,3,1,443,-267412.25,39855.844,0,0,1164.1069 -4243,5236,9399,-9,9397,9398,1,1,39,0,1,0,2,2,-9,0,5,7.8959446,7.7927051,0,0,0,-999.67212,-9,2,3,2019,10,0,40,0,1,0,1,8.7989769,8.7989769,0,0,0,0,0,1,1,0,0,0,50.34,55.75,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,681.5,71173.359,11011.004,0,0,1670.4342 -4243,5236,9400,-9,-9,9399,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.4248,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,4,1,681.5,71173.359,11011.004,0,0,1670.4342 -4244,5237,9401,9402,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,9.025465,9.0166883,0,3,-10,0,0,-9,-9,2019,21,8,48,48,1,8,0,18.571869,18.571869,0,0,0,0,2,0,0,0,0,0,30.09,48.51,47.74,45.88,3.333333333333333,2,3,0,0,9,8,5,0,818.5,1346932.8,775351.88,456323.06,0,4145.3188 -4244,5237,9402,9401,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6332703,8.8518953,0,3,10,0,0,3,2,2019,15,3,48,48,1,3,0,15.962956,15.962956,0,0,0,0,2,0,0,0,0,0,47.74,45.88,30.09,48.51,6.666666666666667,1,1,0,0,8,8,5,0,818.5,1346932.8,775351.88,456323.06,0,4145.3188 -4245,5238,9403,9404,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.4901829,8.3315096,0,31,-1,-82.029579,0,-9,-9,2019,9,0,45,50,1,0,0,12.932224,12.932224,0,0,0,0,2,0,0,0,0,0,60.29,52.11,59.53,56.44,8.333333333333334,1,1,0,0,12,12,5,1,777.5,678348.13,190222.7,182599.88,82874.789,2973.0483 -4245,5238,9404,9403,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1517315,8.2847099,0,31,1,.97463602,0,2,2,2019,7,0,40,40,1,0,0,10.317053,10.317053,0,0,0,0,0,0,0,0,0,0,59.53,56.44,60.29,52.11,8.333333333333334,1,1,0,0,12,12,5,1,777.5,678348.13,190222.7,182599.88,82874.789,2973.0483 -4245,5239,9405,-9,9404,9403,1,0,22,0,0,0,2,2,-9,0,5,7.6165023,7.5433211,0,0,0,-991.88367,0,2,2,2019,7,0,37,35,1,0,1,6.2633677,6.2633677,0,0,0,0,0,0,0,0,.32840022,0,54.1,59.11,-9,-9,10,1,1,0,0,7,12,3,1,474,-402917.16,0,0,0,587.0376 -4245,5240,9406,-9,9404,9403,1,1,24,0,0,0,1,1,-9,0,4,8.3921623,8.1037245,0,0,0,-981.00671,0,2,2,2019,6,0,42,42,1,0,1,12.709507,12.709507,0,0,0,0,0,0,0,0,1.030295,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,4,1,132,-26735.033,-84925.5,156154.75,148499.22,2266.7783 -4246,5241,9407,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1014.2291,0,2,-9,2019,24,12,0,45,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,21.92,-9,-9,1.666666666666667,3,4,1,1,4,6,2,0,578,-64514.988,0,0,0,626.66553 -4247,5242,9408,9409,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.9965029,8.8594713,0,21,5,-46.959469,0,-9,-9,2019,11,2,48,39,1,2,0,20.689585,20.689585,0,0,0,0,0,0,0,0,2.4949484,0,54.96,53.17,41.58,52.86,10,1,1,0,0,11,6,5,1,1835,591210.5,47819.59,423310.63,0,2701.4712 -4247,5242,9409,9408,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,0,0,0,21,-5,-211.91054,0,2,3,2019,1,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.58,52.86,54.96,53.17,0,1,1,1,0,11,6,5,1,1835,591210.5,47819.59,423310.63,0,2701.4712 -4247,5243,9410,-9,9409,9408,1,0,21,0,0,0,2,2,-9,0,5,7.0860991,7.2357593,0,0,0,-1111.0096,0,2,2,2019,4,0,25,30,1,0,1,4.9037151,4.9037151,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,1763,199847.08,0,0,0,220.62489 -4248,5244,9411,9412,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.0239692,6.8437543,46,4,-13.562716,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8017583,7.2061729,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,1,12,2,1,234,334180.66,137375.56,116225.77,0,2075.9961 -4248,5244,9412,9411,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.1644926,5.9237809,46,-4,-36.875336,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6799129,5.9791207,57.33,53.46,60.29,52.11,8.333333333333334,1,1,0,0,4,12,2,1,234,334180.66,137375.56,116225.77,0,2075.9961 -4249,5245,9413,9414,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.3789301,8.2234278,0,3,3,64.654297,0,3,3,2019,26,12,38,43,1,12,0,9.0720892,9.0720892,0,0,0,0,14.5,0,0,0,0,0,26.23,62.53,57.67,12.75,3.333333333333333,1,1,0,0,7,2,5,1,1429.5,2573101,2208670.5,330808.13,20678.27,4877.5776 -4249,5245,9414,9413,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.959013,9.401371,0,3,-3,-33.498161,-9,-9,-9,2019,12,1,37,0,1,1,0,30.648554,30.648554,0,0,0,0,0,0,0,0,7.3225861,0,57.67,12.75,26.23,62.53,8.333333333333334,1,1,0,0,7,2,5,1,1429.5,2573101,2208670.5,330808.13,20678.27,4877.5776 -4250,5246,9415,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,7.8732705,7.6783643,0,0,0,-1073.0682,0,-9,-9,2019,8,1,55,40,1,1,0,5.0246043,5.0246043,0,0,0,0,0,0,0,0,0,0,42.35,36.31,-9,-9,6.666666666666667,1,1,0,0,9,1,3,0,303,-182204.75,-57086.027,0,0,1294.8914 -4250,5247,9416,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.270752,7.9870729,0,0,0,-1037.0012,-9,-9,-9,2019,4,0,46,0,1,0,0,6.1411023,6.1411023,0,0,0,0,0,0,0,0,0,0,56.33,51.02,-9,-9,10,1,1,0,0,2,1,4,0,564,-247263.55,103989.86,0,0,1205.1799 -4251,5248,9417,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.0977097,7.7923427,0,0,-984.11603,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8568091,58.65,31.08,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,317,444703.16,92518.586,0,0,1005.2386 -4252,5249,9418,-9,9420,9419,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.63196,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 -4252,5249,9419,9420,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.5172987,8.3697577,0,7,3,-98.910301,0,3,3,2019,7,0,47,47,1,0,0,12.604556,12.604556,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.63,59.72,6.666666666666667,1,1,0,0,9,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 -4252,5249,9420,9419,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.4663682,7.6150594,0,7,-3,-78.504646,0,2,-9,2019,12,1,23,22,1,1,0,7.6375728,7.6375728,0,0,0,0,2,1,1,0,0,0,46.63,59.72,57.06,57.76,6.666666666666667,1,1,0,0,8,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 -4252,5249,9421,-9,9420,9419,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.6499,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,644.75,719206.13,190301.03,163682.09,0,2685.6914 -4253,5250,9422,9423,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,49,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.46,46.99,58.32,49.01,8.333333333333334,1,1,0,0,3,4,1,1,1368,207164.84,0,178968.91,0,905.98035 -4253,5250,9423,9422,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,0,0,49,4,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.32,49.01,59.46,46.99,10,1,1,0,0,0,4,1,1,1368,207164.84,0,178968.91,0,905.98035 -4254,5251,9424,9425,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.4645052,8.1823883,0,34,-1,57.326229,0,2,2,2019,5,0,39,39,1,0,0,16.430679,16.430679,0,0,0,0,0,0,0,0,0,0,54.79,55.86,65.69,35.91,8.333333333333334,1,1,0,0,8,2,5,1,851.5,362320.41,254642.81,152152.69,52589.164,2690.7588 -4254,5251,9425,9424,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,7.6853561,8.1024885,0,34,1,38.947365,0,2,1,2019,7,0,44,40,1,0,0,6.4392161,6.4392161,0,0,0,0,0,0,0,0,0,0,65.69,35.91,54.79,55.86,5,1,1,0,0,8,2,5,1,851.5,362320.41,254642.81,152152.69,52589.164,2690.7588 -4254,5252,9426,-9,9424,9425,1,0,21,0,0,0,2,2,-9,0,4,7.7322512,7.8619633,0,0,0,-935.76483,0,2,2,2019,11,0,36,34,1,2,1,6.4276342,6.4276342,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,2,3,1,208,162575.13,0,0,0,1438.3751 -4255,5253,9427,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.5638227,8.3034019,0,0,0,-790.87909,0,1,2,2019,8,0,47,37,1,0,0,13.522154,13.522154,0,0,0,0,0,0,0,0,2.9982412,0,53.51,60.74,-9,-9,6.666666666666667,1,1,0,0,2,2,5,0,156,148384.25,100607.42,0,0,1722.54 -4256,5254,9428,9429,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.8615999,7.7618608,7,6,20.915169,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9756327,7.4155722,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,9,3,1,664.5,1197067.6,852665.5,349936.06,0,4196.4536 -4256,5254,9429,9428,-9,9430,1,0,67,0,0,0,1,1,-9,0,4,7.0657601,7.2325697,0,7,-6,-118.93336,0,2,2,2019,8,0,30,35,1,0,0,5.8494582,5.8494582,0,0,0,0,14.5,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,10,9,3,1,664.5,1197067.6,852665.5,349936.06,0,4196.4536 -4256,5255,9430,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,5.95892,6.5522437,0,0,-1096.7667,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,1.4548643,18.695313,30.419075,0,1,1,0,0,6.2708073,43.25,26.11,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,720,745436.44,133705.83,106471.09,0,944.92206 -4257,5256,9431,9432,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,34,-1,0,0,3,-9,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,49,7,2,3,0,1,0,8,1,1,625,296309.22,0,476198.63,0,1202.4478 -4257,5256,9432,9431,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,34,1,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,48,49,7,2,3,0,1,0,8,1,1,625,296309.22,0,476198.63,0,1202.4478 -4257,5257,9433,-9,9431,9432,1,0,26,0,0,0,1,1,-9,0,3,7.8409476,7.6971793,0,0,0,-967.56787,0,2,2,2019,9,0,40,0,1,0,0,7.3082452,7.3082452,0,0,0,0,0,1,1,0,0,0,54.13,48.04,-9,-9,8.333333333333334,2,3,0,0,3,8,3,1,232,-56525.984,-20095.418,0,0,969.75745 -4258,5258,9434,9435,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.9863067,7.0493879,40,-7,-86.638817,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5137763,6.582911,49.67,43.39,57.16,56.15,6.666666666666667,1,1,0,0,9,6,3,1,2577,1243036.9,859949.94,205336.34,0,2960.4387 -4258,5258,9435,9434,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.6526971,7.6887493,9,7,-65.223488,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0821452,7.5551591,57.16,56.15,49.67,43.39,10,1,1,0,0,0,6,3,1,2577,1243036.9,859949.94,205336.34,0,2960.4387 -4259,5259,9436,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-923.05652,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,43.33,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,494,428454.09,0,352433.56,0,1145.7697 -4260,5260,9437,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.5328894,8.3100739,0,0,0,-1006.2379,0,2,2,2019,12,0,50,40,1,0,0,12.531751,12.531751,0,0,0,0,0,0,0,0,0,0,34.41,43.65,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,719,131096.08,703.48077,0,0,2296.6257 -4261,5261,9438,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,8.1929617,8.1223173,0,0,0,-1099.6067,0,3,3,2019,12,0,38,37,1,0,0,8.7877979,8.7877979,0,0,0,0,0,1,1,0,0,0,50.78,56.42,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,443,-71204.648,-4205.7583,0,0,1565.2426 -4262,5262,9439,9440,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.4870682,7.6393828,10,4,-10.221645,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7859335,7.2011852,57.09,46.7,37.45,51.94,8.333333333333334,1,1,0,0,10,8,4,1,774.5,274613.56,65166.332,363424,231382.63,2457.9033 -4262,5262,9440,9439,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.6174536,8.2636003,6.4990225,10,-4,64.046646,0,-9,-9,2019,17,6,21,21,1,6,0,10.234927,10.234927,0,0,0,0,0,1,1,0,0,6.4743152,37.45,51.94,57.09,46.7,8.333333333333334,1,1,0,0,12,8,4,1,774.5,274613.56,65166.332,363424,231382.63,2457.9033 -4263,5263,9441,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.6894264,9.9469194,0,10,13,-.77761948,0,2,2,2019,9,0,35,35,1,0,0,49.659657,49.659657,0,0,0,0,0,0,0,0,5.2183814,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,9,8,5,1,673,259779.48,-26780.02,0,0,5285.4424 -4263,5264,9442,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0757761,7.8643432,0,10,-13,-145.94539,0,2,3,2019,10,0,40,37,1,0,0,8.7772179,8.7772179,0,0,0,0,0,0,0,0,3.2763257,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,6,8,5,1,272,-71630.383,148927.34,0,0,1305.5087 -4264,5265,9443,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1026583,8.035449,0,0,0,-1112.4679,0,1,1,2019,6,0,37,38,1,0,0,13.460951,13.460951,0,0,0,0,2,0,0,0,3.1931462,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,147,1859849.1,822825.13,405509.09,0,1649.1827 -4265,5266,9444,9445,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6732364,7.2729254,8,3,-129.07416,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7444444,7.3519025,54.2,57.49,58.5,44.67,8.333333333333334,1,1,0,0,0,6,4,1,1736.5,1093285.9,743238.88,310329.44,0,5896.9819 -4265,5266,9445,9444,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.8082438,7.6136236,8,-3,-43.632874,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6227489,7.9973006,58.5,44.67,54.2,57.49,10,1,1,0,0,0,6,4,1,1736.5,1093285.9,743238.88,310329.44,0,5896.9819 -4266,5267,9446,-9,9447,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9101,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,0,529.66669,-261653.36,-46049.289,0,0,1579.5928 -4266,5267,9447,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,7.2053266,7.4046988,5.6619391,0,0,-937.98663,-9,-9,-9,2019,11,0,20,0,1,0,0,6.5757341,6.5757341,0,0,0,0,0,1,1,0,6.3158526,0,45.56,60.26,-9,-9,6.666666666666667,1,1,0,0,8,11,2,0,529.66669,-261653.36,-46049.289,0,0,1579.5928 -4266,5267,9448,-9,9447,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.6796,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,529.66669,-261653.36,-46049.289,0,0,1579.5928 -4267,5268,9449,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,3.9123535,3.932971,0,0,-947.07843,1,-9,-9,2019,24,12,0,10,2,12,0,0,0,0,0,0,0,0,0,0,0,3.8770697,0,28.14,49.43,-9,-9,3.333333333333333,1,1,0,0,10,6,2,0,193,114918.24,0,0,0,-29.790945 -4268,5269,9450,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.9276714,7.6781416,5.9189248,0,0,-999.11578,0,3,3,2019,13,2,16,16,1,2,0,8.1028652,8.1028652,0,0,0,0,2,1,1,0,5.9902115,0,47.66,49.63,-9,-9,6.666666666666667,1,1,0,0,10,4,2,1,965,112401.23,60642.504,9222.6699,1478.1035,1820.3577 -4269,5270,9451,9452,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.3408966,8.2852631,9,-3,130.01395,0,2,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.7681195,7.9856157,49.52,28.25,54.79,55.86,10,1,1,0,0,0,11,4,1,633.5,1563464,945343.63,224755.81,0,3018.7163 -4269,5270,9452,9451,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3748674,7.7429605,9,3,189.32123,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6707525,54.79,55.86,49.52,28.25,8.333333333333334,1,1,0,0,0,11,4,1,633.5,1563464,945343.63,224755.81,0,3018.7163 -4270,5271,9453,9456,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.7147379,7.9596758,0,5,-5,-19.585644,0,-9,-9,2019,12,0,16,27,1,0,0,12.59197,12.59197,0,0,0,0,7,1,1,0,0,0,45.73,57.57,46.06,57.72,6.666666666666667,1,1,0,0,11,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 -4270,5271,9454,-9,9453,9456,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.00177,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 -4270,5271,9455,-9,9453,9456,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-968.82147,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 -4270,5271,9456,9453,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.0983009,8.0784798,0,5,5,7.5689349,0,-9,-9,2019,6,0,20,20,1,0,0,18.094797,18.094797,0,0,0,0,0,1,1,0,0,0,46.06,57.72,45.73,57.57,8.333333333333334,1,1,0,0,9,9,3,0,520.75,198190.08,-40816.055,182169.11,91888.57,2793.2031 -4271,5272,9457,9458,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.110774,6.0409398,31,-2,28.051842,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9479198,64.64,48.76,59.04,44.29,10,1,1,0,0,1,10,3,1,813,18624.055,207931,149957.23,0,1898.4878 -4271,5272,9458,9457,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,7.5104871,7.5930409,0,31,2,-12.987463,0,-9,3,2019,6,0,26,26,1,0,0,7.7581725,7.7581725,0,0,0,0,0,1,1,0,1.7492032,0,59.04,44.29,64.64,48.76,10,1,1,0,0,9,10,3,1,813,18624.055,207931,149957.23,0,1898.4878 -4272,5273,9459,9460,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.3712606,8.2299976,0,5,7,99.252182,-9,-9,-9,2019,6,0,37,0,1,0,0,9.0974379,9.0974379,0,0,0,0,0,0,0,0,1.7165875,0,57.06,57.76,60.87,42.1,10,1,1,0,0,9,7,3,1,614.5,0,0,0,0,1095.415 -4272,5273,9460,9459,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,5,-7,21.241053,-9,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,60.87,42.1,57.06,57.76,10,1,1,1,0,6,7,3,1,614.5,0,0,0,0,1095.415 -4273,5274,9461,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1139.1237,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,31.38,-9,-9,6.666666666666667,1,1,0,0,8,6,1,0,1537,20903.338,0,0,0,1230.7885 -4274,5275,9462,9463,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.8432713,6.7426186,53,7,-14.840878,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.798151,6.9500928,52.97,46.09,46.19,51.61,5,1,1,0,0,1,6,2,1,764.5,426590.38,409497.69,225805.94,0,1194.3215 -4274,5275,9463,9462,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,53,-7,50.165009,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.19,51.61,52.97,46.09,3.333333333333333,1,1,0,0,0,6,2,1,764.5,426590.38,409497.69,225805.94,0,1194.3215 -4274,5276,9464,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,5,7.4942594,7.6612072,0,0,0,-903.48553,-9,-9,-9,2019,7,0,29,0,1,0,0,8.3226728,8.3226728,0,0,0,0,0,1,1,0,2.0246887,0,51.71,58.83,-9,-9,6.666666666666667,1,1,0,0,1,6,3,1,332,384544.13,-72612.492,0,0,1655.168 -4275,5277,9465,-9,-9,9466,1,1,53,0,0,0,3,3,-9,0,5,7.8502884,8.2103939,0,0,0,-1063.9576,0,2,2,2019,6,0,40,40,1,0,0,9.347827,9.347827,0,0,0,0,0,1,1,0,.25371113,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,352,467006.81,244937.53,0,0,782.80103 -4275,5278,9466,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,3.843699,3.5472441,0,0,-1013.7099,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,2.8455672,31.619896,0,0,1,1,0,4.7032866,3.7988863,55,45,-9,-9,7,1,1,0,0,0,11,2,1,339,-22969.877,-60619.906,110829.64,0,751.18213 -4276,5279,9467,-9,9469,9470,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.7518,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 -4276,5279,9468,-9,9469,9470,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1079.8833,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 -4276,5279,9469,9470,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.2050495,8.4106512,0,20,-5,-152.39581,0,3,2,2019,16,6,34,35,1,6,0,12.770992,12.770992,0,0,0,0,7,1,1,0,0,0,38.12,55.5,53,55,3.333333333333333,2,3,0,0,7,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 -4276,5279,9470,9469,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.9107828,8.8182917,0,6,5,31.968857,0,-9,-9,2019,9,0,39,37,1,1,0,22.508312,22.508312,0,0,0,0,0,1,1,0,0,0,53,55,38.12,55.5,8,2,3,0,0,1,6,5,1,690.75,1151597,558379.75,489080.13,78698.945,4666.2446 -4277,5280,9471,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.7856741,7.6675014,0,0,0,-938.14417,0,2,-9,2019,12,0,36,31,1,0,1,7.9354672,7.9354672,0,0,0,0,0,0,0,0,0,0,52.66,56.94,-9,-9,10,3,4,0,0,3,8,3,0,1255,472795.03,0,0,0,883.62634 -4278,5281,9472,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,8.4297628,9.1287079,0,0,-928.08868,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,25.038874,0,246.58295,0,1,1,0,8.5490446,8.5325756,64.56,17.7,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1550,2374724.5,43412.141,1222030.6,0,6551.1255 -4279,5282,9473,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9196844,9.1926222,0,0,0,-1043.4241,0,3,-9,2019,6,0,25,25,1,0,0,47.875835,47.875835,0,0,0,0,0,0,0,0,6.6878009,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,253,296481.16,94942.016,241931.25,0,3947.0964 -4280,5283,9474,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.2475672,7.9174137,0,0,0,-901.29517,0,2,2,2019,13,1,36,36,1,1,0,10.925413,10.925413,0,0,0,0,7,0,0,0,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,719,-43369.305,-31992.801,0,0,1647.9236 -4280,5284,9475,-9,9474,-9,1,0,21,0,0,0,2,2,-9,0,3,7.7732677,7.7952271,0,0,0,-1019.4691,0,2,-9,2019,22,9,36,36,1,9,1,8.010396,8.010396,0,0,0,0,0,0,0,0,0,0,20,62.76,-9,-9,3.333333333333333,1,1,0,0,3,12,3,1,214,297715.88,66714.039,0,0,1437.1005 -4281,5285,9476,9477,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,6,-8,0,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.43,10.97,41.8,35.21,8.333333333333334,1,1,0,0,0,7,1,0,788,-123123.06,0,0,0,1599.7117 -4281,5285,9477,9476,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,6,8,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.8,35.21,62.43,10.97,5,1,1,0,0,0,7,1,0,788,-123123.06,0,0,0,1599.7117 -4282,5286,9478,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,3.6699178,4.1243234,0,0,-985.28857,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.7909396,47.09,29.33,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,354,-181585.47,147900.41,0,0,584.36456 -4283,5287,9479,-9,9480,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.0588,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,0,1124.5,492433.75,29845.209,328204,125883.73,2228.5193 -4283,5287,9480,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.3460817,8.4026203,6.4006653,0,0,-901.26355,0,2,2,2019,0,0,30,29,1,0,0,15.624115,15.624115,0,0,0,0,0,1,1,0,7.3216314,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,7,9,4,0,1124.5,492433.75,29845.209,328204,125883.73,2228.5193 -4283,5288,9481,-9,9480,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1106.144,-9,2,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,9,1,0,573,134660.47,0,0,0,0 -4283,5289,9482,-9,9480,-9,1,0,18,0,1,0,2,2,1,0,5,7.2548175,7.0399909,0,0,0,-977.43494,-9,2,-9,2019,13,2,18,0,1,2,1,7.799129,7.799129,0,0,0,0,0,1,1,0,0,0,46.7,57.37,-9,-9,10,2,3,0,0,1,9,3,0,509,198278.89,-1083.358,0,0,234.64853 -4284,5290,9483,9487,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,9.0883379,9.2041664,0,22,9,-27.876633,0,3,3,2019,7,0,35,36,1,0,0,31.966883,31.966883,0,0,0,0,0,0,0,0,0,0,61.02,44.8,33.27,51.2,8.333333333333334,1,1,0,0,9,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 -4284,5290,9484,-9,9487,9483,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-946.15881,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,63.75,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 -4284,5290,9485,-9,9487,9483,1,1,17,0,3,0,2,2,1,0,5,0,0,0,0,0,-1000.2825,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,62.79,-9,-9,3.333333333333333,1,1,0,0,1,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 -4284,5290,9486,-9,9487,9483,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.63098,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 -4284,5290,9487,9483,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,9.0292816,9.0408535,0,22,0,120.09209,0,3,3,2019,17,5,40,35,1,5,0,26.332876,26.332876,0,0,0,0,0,0,0,0,0,0,33.27,51.2,61.02,44.8,8.333333333333334,1,1,0,0,9,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 -4284,5290,9488,-9,9487,9483,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.19073,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.10155417,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,1107.6666,1351372.8,106540.11,658785.25,220631.66,5863.4131 -4284,5291,9489,-9,9487,9483,1,0,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-893.66638,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,0,7,1,1,579,-93893.477,0,0,0,0 -4284,5292,9490,-9,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.8690605,9.3370113,0,0,0,-957.91125,-9,-9,-9,2019,25,10,35,0,1,10,0,30.371519,30.371519,0,0,0,0,7,0,0,0,0,0,18.42,66.02,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,790,-281793.47,39068.867,0,0,2840.5161 -4285,5293,9491,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9528999,8.9301796,0,0,0,-981.09058,0,3,3,2019,8,0,38,0,1,0,0,25.1544,25.1544,0,0,0,0,0,0,0,0,6.081037,0,48.82,53.15,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,839,2193692.3,1246293,328930.75,50531.152,2873.3013 -4286,5294,9492,9495,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.5436478,8.5422134,0,24,1,-68.581955,0,3,3,2019,12,0,46,45,1,0,0,11.231961,11.231961,0,0,0,0,0,1,1,0,0,0,29.71,64.88,40.49,47.75,6.666666666666667,1,1,0,0,9,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 -4286,5294,9493,-9,9495,9492,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.61353,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 -4286,5294,9494,-9,9495,9492,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6409,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 -4286,5294,9495,9492,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1838007,8.3918142,0,26,-1,-.68155694,0,1,3,2019,5,0,37,37,1,0,0,10.373719,10.373719,0,0,0,0,0,1,1,0,0,0,40.49,47.75,29.71,64.88,8.333333333333334,1,1,0,0,7,2,4,0,1497.5,76985.242,188184.19,0,0,3811.0413 -4286,5295,9496,-9,9495,9492,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-752.27673,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,2,1,0,159,0,0,0,0,0 -4286,5296,9497,-9,9495,9492,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-978.00793,-9,2,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.65,44.85,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,401,0,0,0,0,276.50262 -4287,5297,9498,9499,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,6.4396925,7.1346788,66,2,-93.511566,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7456577,6.9195814,57.15,41.01,53.62,27.16,8.333333333333334,1,1,0,0,0,7,2,1,1028,604218.13,105050.02,343768.78,0,1963.4915 -4287,5297,9499,9498,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,65,-2,66.680161,0,3,2,2019,13,0,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,53.62,27.16,57.15,41.01,10,1,1,0,0,0,7,2,1,1028,604218.13,105050.02,343768.78,0,1963.4915 -4288,5298,9500,9501,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.5003481,8.581748,0,18,1,128.88257,0,1,2,2019,12,0,38,41,1,0,0,15.912476,15.912476,0,0,0,0,0,0,0,0,0,0,53.39,52.35,37.82,53.24,8.333333333333334,1,1,0,0,10,6,5,0,422.5,1259192.8,937567.69,462829.03,162933.28,4348.5669 -4288,5298,9501,9500,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,8.7989168,8.4653101,0,17,-1,75.708061,0,1,2,2019,19,7,50,50,1,7,0,11.811605,11.811605,0,0,0,0,0,0,0,0,0,0,37.82,53.24,53.39,52.35,6.666666666666667,1,1,0,0,7,6,5,0,422.5,1259192.8,937567.69,462829.03,162933.28,4348.5669 -4289,5299,9502,9505,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,9.1362915,8.9574633,0,9,2,-75.330719,-9,-9,-9,2019,12,0,62,0,1,0,0,16.710243,16.710243,0,0,0,0,0,1,1,0,1.4695268,0,54.2,57.49,47.37,55.41,8.333333333333334,1,1,0,0,11,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 -4289,5299,9503,-9,9505,9502,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.5428,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 -4289,5299,9504,-9,9505,9502,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.89807,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 -4289,5299,9505,9502,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,0,0,0,16,-2,-136.51816,0,2,2,2019,13,3,0,16,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.37,55.41,54.2,57.49,8.333333333333334,1,1,0,0,10,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 -4289,5299,9506,-9,9505,9502,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.79858,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,411.20001,784106,651476.38,213095.3,133226.84,3099.0532 -4290,5300,9507,-9,9508,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.76428,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,1,0,1048,306082.59,0,0,0,1256.2594 -4290,5300,9508,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,0,0,0,0,0,-931.32385,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.51,54.26,-9,-9,6.666666666666667,2,3,0,0,0,5,1,0,1048,306082.59,0,0,0,1256.2594 -4290,5300,9509,-9,9508,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.8619,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,1,0,1048,306082.59,0,0,0,1256.2594 -4291,5301,9510,-9,9512,9511,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-958.60431,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,1596.3334,183275.88,0,411311.19,106331.39,2232.3833 -4291,5301,9511,9512,-9,-9,1,1,42,0,1,0,3,3,-9,0,2,7.6510243,7.1440291,0,27,0,8.3469181,0,2,3,2019,11,0,25,16,1,0,0,8.282423,8.282423,0,0,0,0,7,1,1,0,0,0,42.86,31.98,53.05,37.93,5,1,1,0,0,9,7,3,0,1596.3334,183275.88,0,411311.19,106331.39,2232.3833 -4291,5301,9512,9511,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,6.858603,6.864666,0,27,0,61.828625,0,3,3,2019,11,0,30,16,1,0,0,3.3284862,3.3284862,0,0,0,0,2,1,1,0,0,0,53.05,37.93,42.86,31.98,8.333333333333334,1,1,0,0,9,7,3,0,1596.3334,183275.88,0,411311.19,106331.39,2232.3833 -4291,5302,9513,-9,9512,9511,1,1,19,0,1,0,2,2,1,0,3,7.1274414,7.0723972,0,0,0,-972.29779,-9,2,3,2019,6,0,25,0,1,0,1,7.9216132,7.9216132,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,7,3,0,406,200470.78,0,0,0,307.25296 -4292,5303,9514,9516,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.8612251,8.6015224,0,17,-21,-32.887829,0,2,2,2019,9,1,38,38,1,1,0,15.270787,15.270787,0,0,0,0,0,1,1,0,0,0,51.77,58.57,55.79,52.62,8.333333333333334,1,1,0,0,9,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 -4292,5303,9515,-9,9514,9516,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.20721,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 -4292,5303,9516,9514,-9,-9,1,1,61,0,2,0,2,2,-9,0,4,8.7651348,9.270154,7.0409245,8,21,66.386307,0,-9,-9,2019,8,1,37,39,1,1,0,22.044725,22.044725,0,0,0,0,0,1,1,0,0,7.5357423,55.79,52.62,51.77,58.57,8.333333333333334,1,1,0,0,9,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 -4292,5303,9517,-9,9514,9516,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2755,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,674.75,1139639.9,382257.38,630185.44,90887.789,5248.9336 -4293,5304,9518,9519,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,4.4709878,4.2095904,8,-7,-70.615921,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,4.1705728,4.6264939,54.44,37.82,54,44,8.333333333333334,1,1,0,0,5,9,2,1,1010,636157.5,0,346113.84,0,1969.1636 -4293,5304,9519,9518,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,8,7,-55.796448,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,49.584511,0,0,1,1,0,0,0,54,44,54.44,37.82,8,1,1,0,0,0,9,2,1,1010,636157.5,0,346113.84,0,1969.1636 -4294,5305,9520,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.5131311,7.6123805,0,0,0,-998.41656,0,2,2,2019,6,0,40,42,1,0,0,6.2843971,6.2843971,0,0,0,0,0,0,0,0,3.4422922,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,5,3,0,1286,-428623.84,-34968.91,0,0,598.46899 -4295,5306,9521,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.6078324,6.2633157,0,0,0,-1000.3363,0,-9,-9,2019,15,4,12,12,1,4,0,6.901289,6.901289,0,0,0,0,2,1,1,0,0,0,58.08,30.23,-9,-9,3.333333333333333,1,1,0,1,11,8,2,1,419,740624.5,122882.6,301126.78,0,-112.76094 -4295,5307,9522,-9,9521,-9,1,1,33,0,0,0,2,2,-9,0,4,8.525424,8.2286348,0,0,0,-1142.3649,-9,2,-9,2019,10,0,21,0,1,1,1,24.342737,24.342737,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,8,4,1,750,323774.31,0,0,0,3348.9265 -4296,5308,9523,-9,9524,9525,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9941,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 -4296,5308,9524,9525,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,0,0,0,9,-5,-91.77166,0,-9,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.4,34.37,37.19,34.68,8.333333333333334,2,3,0,0,1,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 -4296,5308,9525,9524,-9,9527,1,1,37,1,2,0,1,1,-9,0,1,8.4865952,8.414546,0,9,5,102.91575,0,3,3,2019,19,7,37,41,1,7,0,13.92267,13.92267,0,0,0,0,0,1,1,0,2.1985695,0,37.19,34.68,57.4,34.37,3.333333333333333,2,3,0,0,11,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 -4296,5308,9526,-9,9524,9525,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.82581,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,508.75,133599.02,-1419.5117,184592.81,145837,1387.1807 -4296,5309,9527,-9,-9,-9,1,1,79,1,2,0,3,3,-9,0,2,0,0,0,0,0,-1014.4665,-9,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,42.42,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,105,-331222.59,120476.14,0,0,444.13171 -4297,5310,9528,9529,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,47,0,0,0,3,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.9050792,0,50,47,33.07,44.65,7,1,1,0,0,0,11,1,1,515.5,173439.17,0,188340.13,19330.193,1383.6964 -4297,5310,9529,9528,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,47,0,0,0,3,-9,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,1.6400472,0,33.07,44.65,50,47,3.333333333333333,1,1,0,0,3,11,1,1,515.5,173439.17,0,188340.13,19330.193,1383.6964 -4298,5311,9530,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.3251486,7.9412141,0,0,0,-1002.9554,0,2,2,2019,12,1,46,38,1,1,0,10.280916,10.280916,0,0,0,0,0,0,0,0,2.8212383,0,41.99,53.75,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,342,-220121.83,0,0,0,1145.1157 -4299,5312,9531,-9,9535,9533,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.7829,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 -4299,5312,9532,-9,9535,9533,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.499,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 -4299,5312,9533,9535,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,8.3307486,8.4975529,0,7,8,-105.72472,-9,2,2,2019,9,0,40,0,1,1,0,11.06726,11.06726,0,0,0,0,0,1,1,0,6.4710336,0,52,55,31.69,62.36,8,3,4,0,0,1,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 -4299,5312,9534,-9,9535,9533,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.37097,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 -4299,5312,9535,9533,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,8.8372383,9.0159168,0,16,-8,4.6754193,0,1,1,2019,12,1,50,43,1,1,0,16.863644,16.863644,0,0,0,0,0,1,1,0,0,0,31.69,62.36,52,55,8.333333333333334,1,1,0,0,8,10,5,1,1032.6,580813.69,319105.06,253319.16,92716.383,5041.6631 -4300,5313,9536,-9,9537,-9,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-987.51672,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,0,10,2,0,1097.5,-234264.83,0,0,0,2008.821 -4300,5313,9537,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.1787066,6.9855957,0,0,0,-1167.4408,0,-9,2,2019,12,1,16,16,1,1,0,7.4201517,7.4201517,0,0,0,0,2,1,1,0,0,0,41.05,58.43,-9,-9,8.333333333333334,1,1,0,0,11,10,2,0,1097.5,-234264.83,0,0,0,2008.821 -4301,5314,9538,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2851915,8.3425922,0,0,0,-1045.009,0,2,-9,2019,6,0,45,45,1,0,0,9.6860027,9.6860027,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,169,1256186.9,784211.56,170541.06,0,1850.4913 -4302,5315,9539,9540,-9,-9,1,1,45,0,1,0,2,2,-9,1,1,0,0,0,6,-6,74.916672,0,2,1,2019,28,12,0,49,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.24,26.72,54.2,57.49,1.666666666666667,1,1,1,1,7,11,3,1,620,29934.758,0,178267.53,115725.77,2858.958 -4302,5315,9540,9539,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.6760426,8.7969103,0,6,6,-91.463249,0,3,1,2019,10,2,37,35,1,2,0,23.166187,23.166187,0,0,0,0,2,1,1,0,0,0,54.2,57.49,25.24,26.72,8.333333333333334,1,1,0,0,7,11,3,1,620,29934.758,0,178267.53,115725.77,2858.958 -4302,5316,9541,-9,9540,9539,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1042.0642,-9,1,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,55.17,46.24,-9,-9,8.333333333333334,1,1,0,0,9,11,1,1,219,-82686.859,0,0,0,0 -4303,5317,9542,9543,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.1131725,7.003963,50,3,1.0099468,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.6323776,6.6541014,33.1,49.88,50,47,6.666666666666667,1,1,0,0,6,4,2,1,521,336228.25,180640.47,0,0,2186.8975 -4303,5317,9543,9542,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.3471088,6.1441498,50,-3,-7.5296955,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,1.4917878,6.6114388,50,47,33.1,49.88,7,1,1,0,0,0,4,2,1,521,336228.25,180640.47,0,0,2186.8975 -4304,5318,9544,-9,9547,9546,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.3402,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 -4304,5318,9545,-9,9547,9546,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-785.14771,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 -4304,5318,9546,9547,9548,-9,1,1,40,0,2,0,2,2,-9,0,2,8.5631638,8.9258938,0,16,1,5.0434427,0,3,3,2019,12,0,40,40,1,0,0,18.246513,18.246513,0,0,0,0,14.5,1,1,0,0,0,52.99,40.75,31.95,55.69,5,2,3,0,0,11,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 -4304,5318,9547,9546,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.1363363,8.0985718,0,16,-1,.300053,0,3,2,2019,15,3,48,45,1,3,0,8.7563515,8.7563515,0,0,0,0,2,1,1,0,0,0,31.95,55.69,52.99,40.75,8.333333333333334,2,3,0,0,9,7,4,1,457,601111.06,17497.17,694967.63,158962.72,3781.7209 -4304,5319,9548,-9,-9,-9,1,0,87,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1057.6208,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,21.259779,0,0,1,1,0,0,0,55.05,34.27,-9,-9,5,2,3,0,0,0,7,1,1,171,250918.91,0,0,0,0 -4305,5320,9549,-9,-9,-9,1,1,21,0,0,0,1,1,-9,0,4,0,5.8131866,6.1829443,0,0,-976.49103,-9,-9,-9,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.4812732,0,49.91,58.02,-9,-9,10,1,1,1,0,0,12,2,0,642,116062.48,0,0,0,483.9935 -4306,5321,9550,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3189249,7.7518163,0,0,0,-1126.1753,0,2,2,2019,12,1,28,37,1,1,0,7.5065317,7.5065317,0,0,0,0,0,1,1,0,0,0,56.27,25.3,-9,-9,6.666666666666667,1,1,0,0,6,11,3,1,441,570043.63,183871.48,358985.75,0,1603.0415 -4307,5322,9551,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.0622282,8.101593,0,0,0,-836.66943,0,1,1,2019,15,3,37,37,1,3,0,8.5188189,8.5188189,0,0,0,0,0,0,0,0,3.654434,0,25.79,57.16,-9,-9,3.333333333333333,1,1,0,0,6,2,4,0,516,348416.5,54548.977,215310.23,0,1642.6719 -4308,5323,9552,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.7336106,7.5187497,0,0,-794.48132,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8781123,5.7762275,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,194,1467407.8,1009584.1,126806.16,0,2203.3064 -4309,5324,9553,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,4.602108,4.82797,0,0,-948.11914,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,0,1,4.9032145,4.8017631,43.59,59.64,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,271,372353.16,0,436621.47,0,281.08527 -4310,5325,9554,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,5.7228642,5.7151022,0,0,-1132.2449,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3018451,5.6995831,60.37,28.61,-9,-9,5,1,1,0,0,8,10,2,1,1504,342481.59,164495.58,0,0,1716.1895 -4311,5326,9555,9556,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.6138325,8.6946545,0,5,-10,10.481609,0,-9,-9,2019,10,0,38,37,1,1,0,16.494522,16.494522,0,0,0,0,0,0,0,0,3.8426697,0,51,54,54,53,8,2,3,0,0,9,8,5,0,310,1304817.3,759384.06,0,0,3432.4338 -4311,5326,9556,9555,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.0271826,8.0123787,0,5,10,-49.239639,0,-9,-9,2019,9,0,40,35,1,0,0,7.4379773,7.4379773,0,0,0,0,0,0,0,0,0,0,54,53,51,54,8,2,3,0,0,4,8,5,0,310,1304817.3,759384.06,0,0,3432.4338 -4312,5327,9557,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.7951522,8.1867847,0,0,-853.31995,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9637246,8.1771908,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,3775,560672.31,665242.13,155808.67,0,2622.7532 -4313,5328,9558,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1029.3185,0,3,3,2019,31,10,0,0,4,10,0,0,0,1,0,24.034891,0,0,1,1,0,0,0,39.4,19.18,-9,-9,0,1,1,0,0,0,1,1,0,490,-406770.44,0,0,0,1769.3376 -4314,5329,9559,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,9.4184351,8.985301,0,0,0,-1081.4154,0,-9,-9,2019,9,0,36,48,1,0,0,22.701426,22.701426,0,0,0,0,0,0,0,0,.57199663,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,892,100244.38,42860.965,0,0,2670.0671 -4315,5330,9560,-9,9561,9562,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-935.37579,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 -4315,5330,9561,9562,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,6.6979785,6.9932985,0,8,3,-51.291893,-9,-9,-9,2019,4,0,15,0,1,0,0,7.3216376,7.3216376,0,0,0,0,0,1,1,0,0,0,61.52,42.41,44.86,24.37,10,1,1,0,0,10,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 -4315,5330,9562,9561,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,7.7928395,8.2077179,0,18,-3,-45.898685,0,3,2,2019,12,1,42,37,1,1,0,10.017432,10.017432,0,0,0,0,0,1,1,0,0,0,44.86,24.37,61.52,42.41,6.666666666666667,1,1,0,0,10,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 -4315,5330,9563,-9,9561,9562,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.12531,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,706,-36379.68,0,276477.09,291822.5,2269.9932 -4316,5331,9564,9565,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.1789947,6.5210104,50,1,21.964432,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9047127,6.2930079,53.14,51.28,58.89,35.37,10,1,1,0,0,0,9,3,1,693.5,1079513.1,521084.81,433610.5,0,2598.4873 -4316,5331,9565,9564,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.7507868,8.0388117,50,-1,-12.413281,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.5343165,7.8837385,58.89,35.37,53.14,51.28,8.333333333333334,1,1,0,0,11,9,3,1,693.5,1079513.1,521084.81,433610.5,0,2598.4873 -4317,5332,9566,9567,-9,-9,1,1,29,0,1,0,3,3,-9,1,3,0,0,0,7,2,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.67,55.57,26.09,32.89,8.333333333333334,1,1,0,0,2,7,1,0,443.33334,147313.63,0,0,0,3181.5073 -4317,5332,9567,9566,-9,-9,1,0,27,0,1,0,2,2,-9,1,1,0,0,0,7,-2,0,0,-9,-9,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.09,32.89,46.67,55.57,0,1,1,0,0,0,7,1,0,443.33334,147313.63,0,0,0,3181.5073 -4317,5332,9568,-9,9567,9566,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.9339,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,1,0,443.33334,147313.63,0,0,0,3181.5073 -4318,5333,9569,9571,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.5639048,8.2937593,0,9,-3,35.13493,0,2,2,2019,21,8,47,46,1,8,0,9.3736706,9.3736706,0,0,0,0,0,0,0,0,0,0,31.41,63.64,42.85,43.64,6.666666666666667,1,1,0,0,11,9,5,0,713.66669,299817.38,11643.363,355002.88,224389.27,4426.4478 -4318,5333,9570,-9,-9,9571,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.2267,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,713.66669,299817.38,11643.363,355002.88,224389.27,4426.4478 -4318,5333,9571,9569,-9,-9,1,1,35,0,1,0,1,1,-9,0,3,8.7450953,8.8414335,0,9,3,-93.872398,0,-9,-9,2019,11,0,43,43,1,0,0,17.65251,17.65251,0,0,0,0,0,0,0,0,0,0,42.85,43.64,31.41,63.64,6.666666666666667,1,1,0,0,12,9,5,0,713.66669,299817.38,11643.363,355002.88,224389.27,4426.4478 -4319,5334,9572,9573,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,1,-3,0,0,-9,2,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,18.49,43.63,47.65,1.666666666666667,1,1,0,0,0,11,1,1,492.5,-28728.711,0,0,0,0 -4319,5334,9573,9572,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,1,3,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.63,47.65,42.51,18.49,8.333333333333334,1,1,0,0,0,11,1,1,492.5,-28728.711,0,0,0,0 -4320,5335,9574,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1010.941,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,1,1,0,1,1,13,1,0,328,-33097.805,0,0,0,983.59998 -4320,5336,9575,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,4,7.7601757,7.7436123,0,0,0,-1022.7803,0,3,2,2019,10,0,40,40,1,1,0,8.6660938,8.6660938,0,0,0,0,0,1,1,0,0,0,50,56,-9,-9,7,1,1,0,0,7,13,3,0,223,275901.16,-26612.096,0,0,1225.3138 -4320,5337,9576,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.4846177,7.831789,0,0,0,-736.03998,0,-9,-9,2019,9,0,40,35,1,1,0,5.3424363,5.3424363,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,5,13,3,0,822,211172.98,-61714.848,0,0,682.79089 -4320,5338,9577,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.5127802,8.5253782,0,0,0,-1140.4633,0,-9,-9,2019,10,0,40,37,1,1,0,13.9384,13.9384,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,10,13,5,0,104,-353778.44,665.27832,165579.64,26393.723,2158.2068 -4321,5339,9578,9579,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6063242,8.8203793,0,3,16,-109.96143,0,2,2,2019,8,0,35,37,1,0,0,15.178021,15.178021,0,0,0,0,0,1,1,0,3.4334495,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,8,9,5,1,1485,371245.28,307767.5,330522.28,144245.92,5103.2246 -4321,5339,9579,9578,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.9748297,8.6330729,0,3,-16,-177.33865,0,-9,-9,2019,10,0,38,38,1,1,0,24.389009,24.389009,0,0,0,0,0,1,1,0,7.187592,0,51,56,54.2,57.49,7,4,1,0,0,1,9,5,1,1485,371245.28,307767.5,330522.28,144245.92,5103.2246 -4321,5340,9580,-9,9578,9579,1,0,20,0,0,1,2,0,0,0,4,0,6.6262951,6.7083716,0,0,-986.43732,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.2997842,0,50.62,53.79,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,933,28806.094,0,0,0,1265.0183 -4322,5341,9581,9582,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.0834904,4.1799264,52,-6,-110.2196,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,26.828209,0,0,1,1,0,.62823838,4.5088749,55.2,28.73,53.04,39.85,8.333333333333334,1,1,0,0,0,7,2,1,301.5,253430.08,667.40625,287902.63,0,1352.3701 -4322,5341,9582,9581,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.6906424,6.8209457,62,6,37.285675,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.0589962,6.7395182,53.04,39.85,55.2,28.73,6.666666666666667,1,1,0,0,0,7,2,1,301.5,253430.08,667.40625,287902.63,0,1352.3701 -4323,5342,9583,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-915.23291,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,2,12,1,0,543,337061.25,0,0,0,691.87158 -4324,5343,9584,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1015.96,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.79,45.55,-9,-9,8.333333333333334,3,4,1,0,0,8,1,0,241,-53984.223,0,0,0,1879.309 -4324,5344,9585,-9,9584,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1813478,7.963953,0,0,0,-959.13153,0,2,-9,2019,11,0,37,37,1,2,1,10.298302,10.298302,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,4,2,0,0,1,8,4,0,524,614440.31,62255.543,0,0,1087.1758 -4324,5345,9586,-9,9584,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1118.2096,1,3,-9,2019,11,0,0,43,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,0,0,0,8,1,0,1635,-112269.23,0,0,0,0 -4325,5346,9587,9588,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.6867819,8.8371325,42,5,-53.589661,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.3947916,8.2360477,54.85,49.77,62.39,56.71,8.333333333333334,2,3,0,0,0,8,4,1,1685.5,2305636.8,934652.69,589108,0,3448.7595 -4325,5346,9588,9587,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,0,0,9,-5,37.128185,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.85,49.77,10,2,3,0,0,0,8,4,1,1685.5,2305636.8,934652.69,589108,0,3448.7595 -4326,5347,9589,9590,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,7.3844419,7.1968923,45,0,-18.815952,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.146729,7.1366553,58.01,34.45,47.77,50.95,8.333333333333334,1,1,0,0,3,12,3,1,761,1683431.1,1191295.5,270949.63,0,3426.8394 -4326,5347,9590,9589,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2823319,7.6702237,45,0,71.836349,0,2,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,5.2965975,7.8240843,47.77,50.95,58.01,34.45,6.666666666666667,1,1,0,0,5,12,3,1,761,1683431.1,1191295.5,270949.63,0,3426.8394 -4327,5348,9591,9592,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,6.9670854,7.0915866,0,1,-3,-29.860668,0,3,3,2019,5,0,30,38,1,0,0,4.3359408,4.3359408,0,0,0,0,0,1,1,0,2.4919906,0,62.6,45.61,44.31,60.71,10,2,3,0,0,2,6,3,1,936,27421.887,0,0,0,1009.4143 -4327,5348,9592,9591,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.0414677,7.1001959,0,1,3,20.434671,-9,-9,-9,2019,12,2,20,0,1,2,0,6.7541618,6.7541618,0,0,0,0,0,1,1,0,0,0,44.31,60.71,62.6,45.61,1.666666666666667,2,3,0,0,3,6,3,1,936,27421.887,0,0,0,1009.4143 -4328,5349,9593,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.2017055,7.4622517,0,0,0,-877.20709,0,2,2,2019,11,0,28,28,1,0,0,5.7737279,5.7737279,0,0,0,0,0,0,0,0,0,0,32.2,62.45,-9,-9,10,1,1,0,0,6,4,3,1,1696,68620.211,-21598.777,0,0,1279.2122 -4329,5350,9594,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,4,8.145627,7.8770652,4.3034635,1,-3,-11.858133,-9,-9,-9,2019,18,6,40,0,1,6,0,8.8859777,8.8859777,0,0,0,0,0,0,0,0,4.8916745,0,38,62.48,54.37,54.8,6.666666666666667,1,1,0,0,4,7,4,0,607,-100052.84,-93303.297,0,0,1137.7704 -4329,5351,9595,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.6219687,7.4453015,4.7510691,1,3,-92.611397,-9,-9,-9,2019,8,0,28,0,1,0,0,7.5498705,7.5498705,0,0,0,0,0,0,0,0,5.0989513,0,54.37,54.8,38,62.48,8.333333333333334,1,1,0,0,1,7,4,0,628,52186.855,-52354.734,0,0,1448.9967 -4330,5352,9596,9597,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.0653543,8.9662523,0,28,-5,78.847061,-9,2,2,2019,13,2,43,0,1,2,0,20.602665,20.602665,0,0,0,0,0,0,0,0,0,0,46.95,59.37,38.06,46.33,8.333333333333334,1,1,0,0,11,6,5,1,1062.5,1568765.9,842193.38,346273.84,0,5368.6812 -4330,5352,9597,9596,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.5367556,9.0154676,0,10,5,25.112837,0,-9,-9,2019,12,2,48,45,1,2,0,19.3834,19.3834,0,0,0,0,0,0,0,0,3.3225594,0,38.06,46.33,46.95,59.37,6.666666666666667,1,1,0,0,11,6,5,1,1062.5,1568765.9,842193.38,346273.84,0,5368.6812 -4330,5353,9598,-9,9596,9597,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1020.1765,-9,1,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,399,152273.23,0,0,0,142.85783 -4331,5354,9599,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-928.71625,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.88,20.86,-9,-9,6.666666666666667,1,1,1,0,4,9,1,0,212,-66249.602,178360.58,0,0,1969.1157 -4332,5355,9600,9601,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.713738,7.9255366,0,29,-3,70.045639,0,3,3,2019,20,8,35,40,1,8,0,8.2144556,8.2144556,0,0,0,0,0,0,0,0,0,0,36.05,44.11,38.04,31.33,3.333333333333333,1,1,0,1,8,11,3,1,435,315843.38,314106.94,98665.984,-1012.6584,748.37268 -4332,5355,9601,9600,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,29,3,39.669445,0,2,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,31.33,36.05,44.11,3.333333333333333,1,1,1,1,7,11,3,1,435,315843.38,314106.94,98665.984,-1012.6584,748.37268 -4333,5356,9602,-9,9604,9603,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.00726,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,4,1,496,353268.88,77039.117,232735.58,80044.313,3147.0239 -4333,5356,9603,9604,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.3287144,8.2537594,0,30,0,-96.57148,0,2,1,2019,12,0,52,49,1,0,0,12.877424,12.877424,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,5,1,1,0,0,9,10,4,1,496,353268.88,77039.117,232735.58,80044.313,3147.0239 -4333,5356,9604,9603,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.8896966,8.0136757,0,30,0,-122.75492,0,2,2,2019,9,0,25,24,1,0,0,11.797725,11.797725,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,6.666666666666667,1,1,0,0,5,10,4,1,496,353268.88,77039.117,232735.58,80044.313,3147.0239 -4334,5357,9605,9607,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,8.3475552,8.2499208,0,2,4,110.09489,0,-9,-9,2019,11,0,33,37,1,0,0,14.611528,14.611528,0,0,0,0,0,1,1,0,1.1752659,0,41.93,55.12,58.3,52.91,6.666666666666667,1,1,0,0,2,13,5,1,822.33331,193478.56,175028.41,0,0,3941.3113 -4334,5357,9606,-9,9607,9605,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.29291,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,822.33331,193478.56,175028.41,0,0,3941.3113 -4334,5357,9607,9605,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5473652,8.7197628,0,2,-4,-44.03989,0,2,2,2019,1,0,41,37,1,0,0,16.030199,16.030199,0,0,0,0,0,1,1,0,.86295766,0,58.3,52.91,41.93,55.12,8.333333333333334,1,1,0,0,8,13,5,1,822.33331,193478.56,175028.41,0,0,3941.3113 -4335,5358,9608,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7211127,7.025054,0,0,-917.30341,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9471462,6.8584266,57.16,56.15,-9,-9,10,1,1,0,0,0,7,2,0,390,1087931,372875.13,339621.72,0,1021.01 -4336,5359,9609,9610,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8997402,9.1709862,7.6402273,3,7,-92.451736,0,3,3,2019,12,0,20,20,1,0,0,47.134117,47.134117,0,0,0,0,0,0,0,0,8.8369694,7.820631,44.24,33.61,57.16,56.15,8.333333333333334,1,1,0,0,9,11,5,1,322.5,2576528,2192572,245891.47,0,8102.5767 -4336,5359,9610,9609,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6986523,7.8079453,0,3,-7,-17.838869,0,3,2,2019,6,0,30,30,1,0,0,7.2254353,7.2254353,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.24,33.61,8.333333333333334,1,1,0,0,9,11,5,1,322.5,2576528,2192572,245891.47,0,8102.5767 -4336,5360,9611,-9,9610,9609,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-909.76172,-9,2,2,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,-9,-9,8.333333333333334,1,1,1,0,0,11,1,1,605,206119.69,0,0,0,0 -4337,5361,9612,9613,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.4798746,8.2856665,0,15,1,121.89198,0,-9,-9,2019,10,1,39,49,1,1,0,10.965502,10.965502,0,0,0,0,27,0,0,0,0,0,47.2,58.1,27.49,26.97,5,1,1,0,0,8,7,3,1,512,353167.78,97937.531,137634.39,87922.594,1861.2856 -4337,5361,9613,9612,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,5.6879506,5.3629069,0,13,-1,-17.190729,0,2,2,2019,26,12,10,15,1,12,0,2.7067575,2.7067575,0,0,0,0,0,0,0,0,0,0,27.49,26.97,47.2,58.1,5,1,1,0,0,8,7,3,1,512,353167.78,97937.531,137634.39,87922.594,1861.2856 -4338,5362,9614,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.5275669,6.6589966,0,0,-936.06635,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,0,4.1130681,0,0,1,1,0,0,6.4831462,23.04,34.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,162,412894.16,67087.336,191155.67,0,819.2475 -4338,5363,9615,-9,9614,-9,1,0,61,0,0,0,2,2,-9,0,5,8.2924824,8.3224783,0,0,0,-1042.4038,0,3,2,2019,6,0,30,30,1,0,0,17.100929,17.100929,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,5,4,1,338,339208.88,0,93128.758,-475.69531,1260.392 -4339,5364,9616,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5326324,7.6355343,0,0,0,-965.74005,0,2,2,2019,16,6,30,30,1,6,0,7.1493382,7.1493382,0,0,0,0,0,1,1,0,2.6040099,0,50.27,44.25,-9,-9,3.333333333333333,1,1,0,0,8,13,3,1,242,294705,301393.31,37677.148,0,952.84778 -4339,5365,9617,-9,9616,-9,1,1,23,0,0,0,1,1,-9,0,4,7.5063725,7.7806239,3.7688789,0,0,-1106.1605,0,2,2,2019,2,0,39,30,1,0,1,6.3466277,6.3466277,0,0,0,0,0,1,1,0,4.2620401,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,347,12505.405,0,0,0,1524.4502 -4340,5366,9618,9619,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.2298431,8.0153875,0,29,0,3.3034754,0,2,2,2019,8,0,50,50,1,0,0,7.7723856,7.7723856,0,0,0,0,0,1,1,0,0,0,53.81,53.56,52.77,55.33,10,1,1,0,0,6,5,5,0,931,963115,457064.75,279899.69,42216.984,4592.8887 -4340,5366,9619,9618,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.0079241,8.9426088,0,29,0,-76.000252,0,2,3,2019,8,0,45,40,1,0,0,20.077684,20.077684,0,0,0,0,0,1,1,0,7.8549099,0,52.77,55.33,53.81,53.56,10,1,1,0,0,9,5,5,0,931,963115,457064.75,279899.69,42216.984,4592.8887 -4341,5367,9620,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.3399801,8.2368174,0,0,0,-955.80524,0,-9,-9,2019,12,0,32,40,1,0,0,16.338921,16.338921,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,566,873469.25,197900.94,154809.59,0,1989.7148 -4342,5368,9621,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,0,0,-968.13977,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,2.9480312,4.9260726,21.353336,0,1,1,0,0,0,38.55,16.5,-9,-9,0,1,1,0,0,0,5,2,0,954,282940.69,0,0,0,2445.0178 -4343,5369,9622,9623,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,0,0,0,18,1,-45.002033,0,3,3,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,10.82,66.79000000000001,57.16,56.15,3.333333333333333,2,3,1,0,7,12,3,0,312,26113.434,0,0,0,1474.2493 -4343,5369,9623,9622,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.774816,7.9093232,0,18,-1,32.776157,0,3,2,2019,8,0,37,35,1,0,0,6.6600943,6.6600943,0,0,0,0,0,1,1,0,0,0,57.16,56.15,10.82,66.79000000000001,5,2,3,0,0,9,12,3,0,312,26113.434,0,0,0,1474.2493 -4344,5370,9624,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.1520596,8.0908098,0,0,0,-996.14349,0,2,2,2019,11,0,37,57,1,2,0,8.8954382,8.8954382,0,0,0,0,5.48,0,0,0,0,0,48,48,-9,-9,7,3,4,0,0,12,8,4,0,278,2327843,149891.2,1493951.5,0,927.23273 -4345,5371,9625,-9,-9,-9,1,0,40,0,2,0,1,1,-9,1,3,0,6.4908557,6.3788891,0,0,-1055.6709,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,6.290834,0,27.98,63,-9,-9,1.666666666666667,1,1,0,0,7,4,2,1,829,219826.73,148516.28,167454.33,129604.99,1411.8442 -4345,5371,9626,-9,9625,-9,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1009.0532,-9,1,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.95,37.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,829,219826.73,148516.28,167454.33,129604.99,1411.8442 -4345,5371,9627,-9,9625,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.6462,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,829,219826.73,148516.28,167454.33,129604.99,1411.8442 -4346,5372,9628,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,7.9648108,7.981091,0,0,-1000.6071,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,7.3269262,0,14.5,1,1,0,0,7.7976375,64.31,32.38,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,339,146789.09,158767.28,213549.22,0,2117.6313 -4347,5373,9629,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.9977894,7.8284674,0,0,-954.12305,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4366426,7.8073926,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1265,1530374.6,1118261.9,53495.602,0,1681.0741 -4348,5374,9630,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.2625227,8.0717525,0,0,0,-875.0741,0,3,2,2019,19,7,55,57,1,7,0,7.8521934,7.8521934,0,0,0,0,14.5,1,1,0,3.2371771,0,35.47,39.39,-9,-9,3.333333333333333,4,2,0,0,12,6,4,1,890,219378.7,36853.563,0,0,1923.6243 -4349,5375,9631,9633,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,0,0,0,17,0,44.743195,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.69,57.47,51,56,10,1,1,0,0,0,7,3,0,808.75,-32055.982,0,0,0,2295.5078 -4349,5375,9632,-9,9631,9633,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.6278,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,808.75,-32055.982,0,0,0,2295.5078 -4349,5375,9633,9631,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.2391081,8.4347076,0,7,0,96.406212,0,-9,-9,2019,9,0,40,49,1,1,0,12.862852,12.862852,0,0,0,0,0,1,0,1,0,0,51,56,54.69,57.47,8,1,1,0,0,1,7,3,0,808.75,-32055.982,0,0,0,2295.5078 -4349,5375,9634,-9,9631,9633,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6061,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,808.75,-32055.982,0,0,0,2295.5078 -4350,5376,9635,-9,9636,9638,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.3258,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 -4350,5376,9636,9638,-9,-9,1,0,56,0,2,0,1,1,-9,0,4,9.5901632,9.7802744,0,35,1,41.492081,0,2,1,2019,18,6,17,17,1,6,0,112.68094,112.68094,0,0,0,0,0,0,0,0,0,0,22.58,64.03,33.14,64.63,8.333333333333334,1,1,0,0,10,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 -4350,5376,9637,-9,9636,9638,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.9974,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 -4350,5376,9638,9636,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.6801157,10.131121,0,15,-1,-153.06702,0,2,2,2019,16,6,50,42,1,6,0,34.81422,34.81422,0,0,0,0,2,0,0,0,0,0,33.14,64.63,22.58,64.03,8.333333333333334,1,1,0,0,10,6,5,1,1061,2136048.8,994055.19,941126.88,80117.758,11856.764 -4351,5377,9639,9640,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.155426,9.1822519,0,5,1,21.478849,0,2,2,2019,9,0,48,48,1,1,0,21.651808,21.651808,0,0,0,0,0,0,0,0,0,0,53,55,43.32,63.94,8,1,1,0,0,1,13,5,1,416.5,465241.38,463594.5,256477.59,0,4005.71 -4351,5377,9640,9639,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.8531003,7.8540468,0,5,-1,-5.0970993,0,2,3,2019,25,10,24,40,1,10,0,10.475564,10.475564,0,0,0,0,2,0,0,0,0,0,43.32,63.94,53,55,8.333333333333334,1,1,0,0,7,13,5,1,416.5,465241.38,463594.5,256477.59,0,4005.71 -4351,5378,9641,-9,9640,9639,1,0,25,0,0,0,1,1,-9,0,4,8.2660017,8.2866659,0,0,0,-992.85962,0,2,2,2019,11,0,37,40,1,0,1,8.6730223,8.6730223,0,0,0,0,0,0,0,0,.27209184,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,714,-65461.574,0,0,0,1288.4681 -4351,5379,9642,-9,9640,9639,1,0,22,0,0,0,1,1,-9,0,5,7.7882562,7.6485481,0,0,0,-1038.2415,0,2,2,2019,20,8,37,40,1,8,1,8.3428516,8.3428516,0,0,0,0,0,0,0,0,0,0,26.33,63.77,-9,-9,5,1,1,0,0,2,13,3,1,1051,47291.117,-129397.92,0,0,186.65242 -4352,5380,9643,9644,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.6776285,7.7902188,0,40,-1,-129.37021,0,3,3,2019,12,0,30,30,1,0,0,8.488699,8.488699,0,0,0,.745718,0,0,0,0,0,0,52.16,43.45,46.32,53.44,8.333333333333334,1,1,0,0,10,2,4,1,291,713240.38,630616.25,120349.8,0,1763.5933 -4352,5380,9644,9643,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.0944262,8.0343752,40,1,-33.762928,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2173815,46.32,53.44,52.16,43.45,8.333333333333334,1,1,0,0,9,2,4,1,291,713240.38,630616.25,120349.8,0,1763.5933 -4352,5381,9645,-9,9643,9644,1,1,25,0,0,0,1,1,-9,0,4,8.0954924,8.0863647,0,0,0,-1019.6069,0,3,2,2019,5,0,37,35,1,0,1,9.1237526,9.1237526,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,172,-362963.59,56492.391,0,0,1550.7234 -4353,5382,9646,-9,-9,-9,1,1,21,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1014.957,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.19,49.81,-9,-9,8.333333333333334,1,1,0,1,4,2,1,1,1326,0,0,0,0,-468.39172 -4354,5383,9647,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.0334206,7.7938719,0,0,0,-914.32477,0,-9,-9,2019,9,0,40,40,1,0,0,6.749692,6.749692,0,0,0,0,0,1,1,0,1.8924285,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,277.66666,371109.19,57700.895,0,0,2278.0637 -4354,5383,9648,-9,9647,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.50983,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,277.66666,371109.19,57700.895,0,0,2278.0637 -4354,5383,9649,-9,9647,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.4479,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,277.66666,371109.19,57700.895,0,0,2278.0637 -4355,5384,9650,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.3987217,7.5794587,0,0,-892.88562,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5907159,50.43,45.82,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,210,70588.93,274019.22,0,0,1143.2745 -4356,5385,9651,9652,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.6966763,8.6641121,8.3241339,45,0,-8.4149504,0,3,3,2019,10,0,37,38,1,1,0,6.7438669,6.7438669,0,0,0,0,0,1,1,0,0,7.9690638,52,48,71.07000000000001,21.07,7,1,1,0,0,1,13,4,1,1165,1180761,540963.56,158404.41,0,4174.8955 -4356,5385,9652,9651,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,45,0,116.81409,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.07000000000001,21.07,52,48,6.666666666666667,1,1,0,0,3,13,4,1,1165,1180761,540963.56,158404.41,0,4174.8955 -4357,5386,9653,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.9389596,6.4288249,0,0,-1049.726,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.600811,6.7812247,38.47,57.72,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,498,995165.69,229551.98,325813.5,0,591.22089 -4358,5387,9654,-9,9656,9658,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.87054,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 -4358,5387,9655,-9,9656,9658,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.6555,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 -4358,5387,9656,9658,-9,-9,1,0,50,0,3,0,1,1,-9,0,4,7.7920017,7.5359807,0,30,-2,92.45665,0,2,3,2019,11,1,22,22,1,1,0,11.556132,11.556132,0,0,0,0,0,0,0,0,3.628998,0,46.98,59.35,60.42,54.81,8.333333333333334,1,1,0,0,5,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 -4358,5387,9657,-9,9656,9658,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.54761,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 -4358,5387,9658,9656,-9,-9,1,1,52,0,3,0,1,1,-9,0,5,9.290761,9.0657845,0,30,2,-1.7588193,0,2,3,2019,5,1,43,43,1,1,0,27.344007,27.344007,0,0,0,0,0,0,0,0,0,0,60.42,54.81,46.98,59.35,8.333333333333334,1,1,0,0,8,9,5,1,1220.6,1016732.4,898176.88,238791.5,119679.49,4680.0791 -4359,5388,9659,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9629803,7.7200813,0,0,0,-914.78656,0,2,-9,2019,10,0,40,40,1,1,0,8.2158489,8.2158489,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,3,1,372,49119.395,76483.094,0,0,1063.182 -4359,5389,9660,9661,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.6569905,5.3362422,7,-2,-15.655869,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,5.7735586,5.455327,43.59,38.38,35.25,31.07,6.666666666666667,1,1,0,0,0,4,2,1,222,384588.16,30471.588,121212.39,0,1850.9133 -4359,5389,9661,9660,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.7324328,5.6056833,7,2,4.1629996,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,117.99851,0,0,1,1,0,5.8666744,5.6457438,35.25,31.07,43.59,38.38,5,1,1,0,0,0,4,2,1,222,384588.16,30471.588,121212.39,0,1850.9133 -4360,5390,9662,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,6.776638,6.532166,0,0,0,-865.01825,0,2,-9,2019,19,7,16,16,1,7,0,5.5077009,5.5077009,0,0,0,0,0,1,1,0,0,0,41.97,45.74,-9,-9,6.666666666666667,1,1,0,0,6,6,2,0,427,-92327.555,0,0,0,2068.3623 -4360,5390,9663,-9,9662,-9,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-1017.2876,-9,2,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,4,2,0,0,1,6,2,0,427,-92327.555,0,0,0,2068.3623 -4361,5391,9664,9665,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.8204803,7.8012424,9,3,-79.791183,0,3,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.0227919,7.9376035,57.11,25.57,50.93,27.22,6.666666666666667,1,1,0,0,0,10,3,1,275.5,1076094,481773.09,482505.81,0,2543.2092 -4361,5391,9665,9664,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.2577353,6.0593729,9,-3,-74.641586,0,3,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.6371875,6.2456417,50.93,27.22,57.11,25.57,8.333333333333334,1,1,0,0,0,10,3,1,275.5,1076094,481773.09,482505.81,0,2543.2092 -4362,5392,9666,9667,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.19735,7.1998124,63,3,-99.804489,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9349651,53.16,32.18,61.12,51.57,10,1,1,0,0,0,4,2,0,953,431571.13,121689.86,182565.91,0,1574.5085 -4362,5392,9667,9666,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.5713978,5.8450031,63,-3,-15.211573,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,5.631093,61.12,51.57,53.16,32.18,10,1,1,0,0,0,4,2,0,953,431571.13,121689.86,182565.91,0,1574.5085 -4363,5393,9668,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.537251,7.9970851,0,0,0,-1032.5692,0,2,2,2019,8,0,36,36,1,0,0,5.8016071,5.8016071,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,893,-241318.95,0,0,0,395.67084 -4364,5394,9669,9670,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2089567,8.6309814,0,9,-3,6.9379115,0,2,3,2019,9,0,73,75,1,0,0,6.7846832,6.7846832,0,0,0,0,0,0,0,0,1.1545855,0,48.87,58.55,51.77,58.57,8.333333333333334,1,1,0,0,9,2,4,1,1380.5,182470.34,-19847.426,108212.83,57697.563,1664.207 -4364,5394,9670,9669,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,6.3282495,6.1777425,0,9,3,-55.336048,0,1,2,2019,12,0,10,10,1,0,0,6.0740857,6.0740857,0,0,0,0,0,0,0,0,0,0,51.77,58.57,48.87,58.55,6.666666666666667,1,1,0,0,8,2,4,1,1380.5,182470.34,-19847.426,108212.83,57697.563,1664.207 -4365,5395,9671,9672,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.1913548,8.24228,0,14,-19,129.15546,0,3,3,2019,11,0,46,36,1,0,0,7.3328247,7.3328247,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50,49,8.333333333333334,1,1,0,0,8,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 -4365,5395,9672,9671,-9,-9,1,1,56,0,2,0,2,2,-9,0,3,8.4946108,8.5086126,0,8,19,-80.757858,0,-9,-9,2019,10,0,40,40,1,1,0,11.822517,11.822517,0,0,0,0,0,1,1,0,3.1785021,0,50,49,51.83,57.2,7,1,1,0,0,1,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 -4365,5395,9673,-9,9671,9672,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1130.4496,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 -4365,5395,9674,-9,9671,9672,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.40674,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,399.25,424375.34,310499.25,200154.88,0,3131.7856 -4366,5396,9675,9676,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.0407181,7.7273645,0,9,14,53.160511,0,3,2,2019,6,0,56,50,1,0,0,6.5442271,6.5442271,0,0,0,0,0,0,0,0,1.8475277,0,57.16,56.15,49.94,58.01,10,1,1,0,0,9,10,5,1,1267.5,1022710.6,571848.63,368135.69,0,3188.6865 -4366,5396,9676,9675,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.4033432,8.8196259,0,9,-14,-4.4512858,0,2,2,2019,6,0,32,40,1,0,0,18.317051,18.317051,0,0,0,0,5.48,0,0,0,1.3810028,0,49.94,58.01,57.16,56.15,10,1,1,0,0,12,10,5,1,1267.5,1022710.6,571848.63,368135.69,0,3188.6865 -4367,5397,9677,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.9428883,7.5521255,6.8864779,0,0,-909.52576,0,3,3,2019,11,0,14,28,1,0,0,9.77003,9.77003,0,0,0,0,0,0,0,0,5.631567,7.3596663,52.82,53.97,-9,-9,6.666666666666667,1,1,0,0,11,4,3,1,803,62114.57,55947.977,123990.07,66960.547,943.66235 -4367,5398,9678,-9,9677,-9,1,0,29,0,0,0,1,1,-9,0,3,8.669898,8.3693886,0,0,0,-1024.5707,0,2,-9,2019,12,1,42,41,1,1,1,16.125824,16.125824,0,0,0,0,0,0,0,0,0,0,54.74,43.81,-9,-9,6.666666666666667,1,1,0,0,11,4,5,1,137,-178067.16,-19939.895,0,0,2190.6409 -4368,5399,9679,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.9906683,6.2396054,0,0,-986.38538,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9845035,6.0767512,52,48,-9,-9,7,1,1,0,0,4,4,2,1,361,312272.72,206723.98,90148.117,0,1200.5726 -4369,5400,9680,-9,9683,9681,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-866.5719,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 -4369,5400,9681,9683,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,9.130681,9.6747179,0,27,0,-9.3888998,0,3,3,2019,9,0,35,36,1,1,0,38.507164,38.507164,0,0,0,0,0,1,1,0,0,0,51,56,50,55,8,2,3,0,1,10,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 -4369,5400,9682,-9,9683,9681,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1011.9084,1,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,26.01,63.78,-9,-9,5,2,3,0,0,0,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 -4369,5400,9683,9681,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,27,0,106.75832,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,55,51,56,8,2,3,0,0,0,8,5,0,338.5,191874.69,55471.508,322520.41,193881.06,6907.8125 -4369,5401,9684,-9,9683,9681,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-957.50623,0,2,3,2019,7,0,0,42,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,35.63,62.19,-9,-9,8.333333333333334,2,3,0,0,1,8,1,0,244,139102.98,0,0,0,-346.86639 -4370,5402,9685,9686,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,5.5906539,6.2640204,5.8879051,49,-4,94.392525,0,3,3,2019,7,0,2,3,1,0,0,18.222269,18.222269,0,0,0,0,0,1,1,0,6.5050912,6.1155062,57.27,41.15,53.14,51.28,8.333333333333334,1,1,0,0,12,9,2,1,212,795588.75,284037,254227.34,0,1244.6536 -4370,5402,9686,9685,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.0993218,6.1165323,49,4,-41.345409,0,3,3,2019,11,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,6.9212618,5.5859842,53.14,51.28,57.27,41.15,8.333333333333334,1,1,0,0,12,9,2,1,212,795588.75,284037,254227.34,0,1244.6536 -4371,5403,9687,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.4790659,7.4313393,0,0,0,-1047.6332,0,2,1,2019,14,3,30,48,1,3,0,7.7222409,7.7222409,0,0,0,0,0,0,0,0,0,0,39.97,46.41,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,1491,138558.98,0,0,0,980.93445 -4372,5404,9688,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.9114313,8.0374117,0,0,0,-1047.5033,0,3,3,2019,23,11,40,42,1,11,0,8.1538076,8.1538076,0,0,0,0,0,0,0,0,3.9208601,0,39.58,48.36,-9,-9,3.333333333333333,1,1,0,0,10,6,3,0,449,132325.33,308330.81,0,0,826.52002 -4373,5405,9689,9690,-9,-9,1,1,62,0,1,0,3,3,-9,0,4,8.7568178,8.5950212,0,23,11,68.150169,0,3,2,2019,11,0,40,40,1,0,0,17.300516,17.300516,0,0,0,0,0,1,1,0,5.0338144,0,54.2,57.49,44.46,47.36,8.333333333333334,1,1,0,0,12,10,5,1,577,2512456,1941217.3,415419.09,0,3896.9521 -4373,5405,9690,9689,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.3395271,8.2770576,0,23,-11,-15.28999,0,3,2,2019,12,2,26,31,1,2,0,21.05806,21.05806,0,0,0,0,0,1,1,0,0,0,44.46,47.36,54.2,57.49,5,1,1,0,1,12,10,5,1,577,2512456,1941217.3,415419.09,0,3896.9521 -4374,5406,9691,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,4,8.2774324,8.1327839,0,0,0,-1021.3859,0,3,3,2019,9,0,39,40,1,0,0,11.400725,11.400725,0,0,0,0,0,0,0,0,0,0,57.76,54.51,-9,-9,1.666666666666667,1,1,0,0,6,2,4,1,763,543639.44,34619.102,64984.637,19742.67,1176.171 -4375,5407,9692,9693,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,3.457741,3.4044304,9,1,-171.35463,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,4.7725749,0,0,1,1,0,7.5124822,3.7723458,39.38,22.52,58.08,40.76,5,1,1,0,0,0,7,2,1,1149,3853214.5,0,2983949,0,3174.9438 -4375,5407,9693,9692,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.6107383,7.1476464,9,-1,-2.8038046,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0351071,7.0130105,58.08,40.76,39.38,22.52,8.333333333333334,1,1,0,0,0,7,2,1,1149,3853214.5,0,2983949,0,3174.9438 -4376,5408,9694,9695,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,3,-6,-2.777343,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,53.946838,0,0,1,1,0,1.1240911,0,36.89,18.55,53.12,37.6,8.333333333333334,1,1,0,0,0,11,2,1,410.5,273959.25,196006.03,153647.47,0,2735.7598 -4376,5408,9695,9694,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.7383771,7.3021331,3,6,31.09997,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,2.9006233,0,21.784695,120,1,1,0,6.6108799,7.1894717,53.12,37.6,36.89,18.55,10,1,1,0,0,0,11,2,1,410.5,273959.25,196006.03,153647.47,0,2735.7598 -4377,5409,9696,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1163.8661,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1737,240142.56,0,0,0,1379.4789 -4378,5410,9697,9699,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.4828663,7.7458582,0,9,6,-53.070965,0,-9,-9,2019,6,0,37,37,1,0,0,8.165803,8.165803,0,0,0,0,0,1,1,0,0,0,62.66,52.4,60.29,52.11,8.333333333333334,1,1,0,0,4,2,3,0,1185.3334,119294.57,0,87457.102,97562.828,2566.9805 -4378,5410,9698,-9,9699,9697,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1166.9766,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,1185.3334,119294.57,0,87457.102,97562.828,2566.9805 -4378,5410,9699,9697,-9,-9,1,0,35,0,2,0,3,3,-9,1,3,6.8084469,6.8796759,0,16,-6,-46.741879,0,2,2,2019,6,0,16,16,1,0,0,6.7621803,6.7621803,0,0,0,0,0,1,1,0,0,0,60.29,52.11,62.66,52.4,8.333333333333334,1,1,0,0,8,2,3,0,1185.3334,119294.57,0,87457.102,97562.828,2566.9805 -4379,5411,9700,9701,-9,-9,1,1,55,0,1,0,3,3,-9,0,2,7.7432861,7.881268,0,7,7,-225.91284,0,-9,-9,2019,12,0,50,45,1,0,0,5.0461431,5.0461431,0,0,0,0,0,0,0,0,6.7905717,0,51.08,36.04,36.66,52.76,5,1,1,0,0,11,9,5,1,419,2241795.8,1132984,753182.69,0,3983.2241 -4379,5411,9701,9700,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,8.921072,8.9381895,0,7,-7,25.02177,0,2,2,2019,12,0,38,37,1,0,0,20.705105,20.705105,0,0,0,0,0,0,0,0,4.1635199,0,36.66,52.76,51.08,36.04,6.666666666666667,1,1,0,0,10,9,5,1,419,2241795.8,1132984,753182.69,0,3983.2241 -4379,5411,9702,-9,9701,9700,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.291,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,419,2241795.8,1132984,753182.69,0,3983.2241 -4380,5412,9703,9704,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.9300704,7.0583687,0,35,-4,88.23484,0,-9,-9,2019,12,0,18,16,1,0,0,8.2488642,8.2488642,0,0,0,0,0,0,0,0,0,0,47.43,54.04,48.87,58.55,6.666666666666667,2,3,0,0,12,6,3,1,2308.5,159261.86,143700.78,0,0,1127.2598 -4380,5412,9704,9703,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.6472058,7.6760435,0,35,4,10.448913,-9,-9,-9,2019,11,0,42,0,1,0,0,6.5911517,6.5911517,0,0,0,0,0,0,0,0,1.1115769,0,48.87,58.55,47.43,54.04,6.666666666666667,2,3,0,0,10,6,3,1,2308.5,159261.86,143700.78,0,0,1127.2598 -4380,5413,9705,-9,9703,9704,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1041.667,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,1077,-75410.922,0,0,0,0 -4381,5414,9706,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.0265956,6.8718739,0,0,-1015.5225,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,4.6595912,0,0,1,1,0,0,6.8704953,50.66,42.98,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,340,-9158.8408,122086,115087.79,0,1467.224 -4382,5415,9707,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-991.1554,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.43,35.78,-9,-9,10,1,1,0,0,3,13,1,0,3697,0,0,0,0,1139.4811 -4382,5416,9708,-9,9707,-9,1,0,24,0,0,0,1,1,-9,0,3,7.9620876,7.7348948,0,0,0,-977.85632,0,2,3,2019,11,2,41,47,1,2,1,7.235569,7.235569,0,0,0,0,0,1,1,0,0,0,34.23,54.42,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,699,-529605.06,0,0,0,1545.9093 -4383,5417,9709,9712,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.5086279,7.820765,0,7,-2,29.258617,0,2,2,2019,7,0,35,0,1,0,0,4.9996986,4.9996986,0,0,0,0,0,1,1,0,0,0,52.6,52.88,35.32,58.41,8.333333333333334,1,1,0,0,8,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 -4383,5417,9710,-9,9709,9712,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.26764,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 -4383,5417,9711,-9,9709,9712,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.1261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 -4383,5417,9712,9709,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,8.3832235,8.0353212,0,7,2,40.07769,0,2,2,2019,15,4,45,43,1,4,0,9.2434139,9.2434139,0,0,0,0,0,1,1,0,0,0,35.32,58.41,52.6,52.88,3.333333333333333,1,1,0,0,8,2,4,1,367.25,144408.66,45204.328,135791.28,0,3102.2371 -4384,5418,9713,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.463129,8.1030169,0,0,-866.58954,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.5516973,58.33,47.36,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,970,816228.81,305343,373583.34,0,1382.2118 -4385,5419,9714,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,9.3895769,9.4049587,0,0,0,-840.23804,0,2,2,2019,12,1,70,72,1,1,0,16.679512,16.679512,0,0,0,0,0,0,0,0,3.1633985,0,48.12,63.16,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,687,-418632.31,-29141.711,0,0,3159.8201 -4386,5420,9715,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.653832,7.5654631,2.6475189,0,0,-907.10144,0,-9,2,2019,12,0,36,36,1,0,0,6.0788469,6.0788469,0,0,0,0,0,1,1,0,0,2.5182652,52.25,45.21,-9,-9,5,1,1,0,0,10,2,3,1,4086,421727.16,116956.76,108251.64,0,382.19958 -4387,5421,9716,-9,-9,-9,1,1,19,0,0,0,2,2,0,0,2,0,0,0,0,0,-1016.6602,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,10.23,60.39,-9,-9,3.333333333333333,1,1,0,1,2,6,1,0,948,-138680.64,0,0,0,0 -4388,5422,9717,9718,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,5.4011521,5.387291,10,7,-9.10777,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.1790552,50.48,56.4,45.01,57.46,6.666666666666667,1,1,0,0,11,12,3,1,2069.5,1447293.8,346283.66,240319.34,0,1841.8594 -4388,5422,9718,9717,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.0910664,7.6033063,10,-7,94.089394,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.7966909,7.6801,45.01,57.46,50.48,56.4,6.666666666666667,1,1,0,0,5,12,3,1,2069.5,1447293.8,346283.66,240319.34,0,1841.8594 -4389,5423,9719,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.0915747,8.914567,0,2,4,-84.672699,0,2,2,2019,10,0,70,70,1,0,0,11.805139,11.805139,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,661,8039.0352,0,0,0,684.26532 -4389,5424,9720,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3638916,8.2912207,0,2,-4,-35.156452,0,-9,-9,2019,5,0,40,40,1,0,0,12.489649,12.489649,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,13,9,5,1,236,-238560.86,-77800.914,101558.66,95861.188,2026.1505 -4390,5425,9721,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-920.54004,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,1.9335319,.8070206,0,0,1,1,0,0,0,56.52,24.03,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,381,13149.748,-44193.184,275019,0,778.93231 -4391,5426,9722,9723,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4873595,7.7901945,5.5578771,6,-8,1.7988439,0,3,2,2019,10,0,12,12,1,1,0,13.121075,13.121075,0,0,0,0,0,0,0,0,4.6221108,5.8071756,51,54,54.37,54.8,8,1,1,0,0,1,7,5,1,1091,249156.86,-71355.734,289924.16,0,4372.7144 -4391,5426,9723,9722,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.4893456,8.7902603,8.6939535,6,8,-23.898006,0,2,2,2019,16,5,40,42,1,5,0,5.3030219,5.3030219,0,0,0,0,0,0,0,0,0,8.5300789,54.37,54.8,51,54,3.333333333333333,1,1,0,1,8,7,5,1,1091,249156.86,-71355.734,289924.16,0,4372.7144 -4392,5427,9724,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9626112,7.9990792,0,0,0,-1136.0616,0,3,2,2019,13,1,42,45,1,1,0,10.495596,10.495596,0,0,0,0,0,1,1,0,0,0,46.96,37.93,-9,-9,5,1,1,0,1,6,5,4,0,441,-140117.55,80796.289,0,0,838.45697 -4393,5428,9725,9726,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,10,-8,-132.15315,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4822469,0,48.67,54.71,57.16,56.15,10,1,1,0,0,7,10,3,1,733,761483.06,838018.13,243483.05,0,1906.5579 -4393,5428,9726,9725,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.8721619,7.9438157,10,8,-107.22947,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5589762,7.7464342,57.16,56.15,48.67,54.71,10,1,1,0,0,11,10,3,1,733,761483.06,838018.13,243483.05,0,1906.5579 -4394,5429,9727,9728,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.5656934,6.9334526,52,-1,57.768951,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9006853,7.1807384,48.71,51.81,43.35,52.88,8.333333333333334,1,1,0,0,0,10,3,1,1004.5,1798420.3,535645.38,608930.63,0,2515.3169 -4394,5429,9728,9727,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.3715081,7.5434022,52,1,-5.7061086,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.047812,7.6954017,43.35,52.88,48.71,51.81,8.333333333333334,1,1,0,0,1,10,3,1,1004.5,1798420.3,535645.38,608930.63,0,2515.3169 -4395,5430,9729,9730,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,0,0,3,-8,-41.348801,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1801982,0,54.1,59.11,57.06,57.76,10,1,1,0,0,12,10,3,1,580,1390740.3,581862.44,314272.44,0,2210.9341 -4395,5430,9730,9729,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.5196295,7.6050549,3,8,24.755161,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1365242,7.5701184,57.06,57.76,54.1,59.11,10,1,1,0,0,9,10,3,1,580,1390740.3,581862.44,314272.44,0,2210.9341 -4396,5431,9731,9732,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.0318861,5.2685752,51,-1,-28.50721,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6226282,5.2043905,61.19,39.41,24.37,40.1,8.333333333333334,1,1,0,0,0,9,3,1,923.5,1464967,461052.94,262866.53,0,3453.2925 -4396,5431,9732,9731,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.0070848,7.8715487,51,1,117.52821,0,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,7.338562,8.2602625,24.37,40.1,61.19,39.41,1.666666666666667,1,1,0,0,4,9,3,1,923.5,1464967,461052.94,262866.53,0,3453.2925 -4397,5432,9733,-9,-9,-9,1,0,57,0,2,0,1,1,-9,0,3,0,0,0,0,0,-1026.8916,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,0,0,8,1,0,246,297458.88,181260.08,409424.88,0,0 -4397,5433,9734,-9,9737,9735,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.3924,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 -4397,5433,9735,9737,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,7.9989538,8.0487385,0,7,11,33.3214,0,-9,-9,2019,0,0,49,49,1,0,0,9.0039816,9.0039816,0,0,0,0,0,1,1,0,0,0,55.36,51.57,62.39,56.71,8.333333333333334,2,3,0,1,10,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 -4397,5433,9736,-9,9737,9735,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.50494,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 -4397,5433,9737,9735,9733,-9,1,0,36,0,2,0,2,2,-9,0,5,8.1292362,8.2129107,0,12,-11,-11.98752,0,2,2,2019,6,0,45,39,1,0,0,9.247838,9.247838,0,0,0,0,0,1,1,0,3.9254086,0,62.39,56.71,55.36,51.57,10,2,3,0,0,6,8,4,0,1189.5,163389.86,-30234.195,225925.52,96935.883,3078.9829 -4398,5434,9738,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1051.7271,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,5.7667532,0,48,49,-9,-9,7,1,1,0,0,5,4,1,0,269,-105467.72,0,0,0,1126.064 -4398,5435,9739,-9,9738,-9,1,0,26,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1037.2467,0,3,-9,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,42,1,1,0,0,0,39.89,54.92,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,361,-11125.111,0,0,0,197.79106 -4398,5436,9740,-9,9738,-9,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-999.15521,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,2.9928288,0,1,1,0,0,0,56.57,57.78,-9,-9,3.333333333333333,1,1,1,1,0,4,1,0,167,-167188.56,0,0,0,576.06189 -4399,5437,9741,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.9269667,9.0740423,0,0,0,-928.94781,0,3,3,2019,12,0,41,42,1,0,0,19.205154,19.205154,0,0,0,0,0,0,0,0,0,0,38.64,62.13,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,222,-217682.28,0,0,0,3047.8235 -4400,5438,9742,-9,9744,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1011,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,532,-97220.281,51505.48,107776.58,110548.93,2567.5645 -4400,5438,9743,-9,9744,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.8292,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,532,-97220.281,51505.48,107776.58,110548.93,2567.5645 -4400,5438,9744,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.4149132,8.3932762,0,11,2,123.975,0,2,1,2019,9,1,40,40,1,1,0,16.031265,16.031265,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,532,-97220.281,51505.48,107776.58,110548.93,2567.5645 -4400,5439,9745,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.7063494,7.5003204,0,11,-2,-121.87296,0,3,3,2019,7,0,19,18,1,0,0,10.135843,10.135843,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,4,2,4,1,687,13727.311,8089.918,157837.19,48116.594,505.08246 -4401,5440,9746,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.3992815,7.0631604,0,0,0,-1000.3583,0,3,3,2019,11,0,24,36,1,0,0,9.4745712,9.4745712,0,0,0,0,0,1,1,0,1.2119392,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,8,12,3,1,1338,-120738.68,46924.086,124989.81,31961.887,1196.8694 -4401,5441,9747,-9,-9,9746,1,0,28,0,0,0,2,2,-9,0,4,7.9482813,8.0364027,0,0,0,-851.59253,0,2,2,2019,11,0,30,37,1,0,1,8.6040182,8.6040182,0,0,0,0,0,1,1,0,.37503457,0,50.34,56.4,-9,-9,8.333333333333334,4,2,0,0,10,12,3,1,232,-219265.25,-23717.539,0,0,854.3797 -4402,5442,9748,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.7888947,8.0720072,0,0,-1024.7867,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.5286107,38.76,40.19,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,563,436172.84,464946.91,221963.73,0,2805.6138 -4403,5443,9749,9750,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.4261761,8.4177675,0,30,-5,-170.96803,0,1,1,2019,9,0,45,49,1,0,0,12.075665,12.075665,0,0,0,0,0,0,0,0,2.2798214,0,52.82,53.97,46.32,53.44,8.333333333333334,1,1,0,0,10,10,5,1,475,532737.13,485734.5,130820.8,0,3065.7397 -4403,5443,9750,9749,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.0813675,8.0283804,0,30,5,47.752285,0,3,2,2019,12,0,39,43,1,0,0,8.9545565,8.9545565,0,0,0,0,0,0,0,0,2.6847045,0,46.32,53.44,52.82,53.97,6.666666666666667,1,1,0,0,10,10,5,1,475,532737.13,485734.5,130820.8,0,3065.7397 -4404,5444,9751,-9,9752,9753,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.3392,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 -4404,5444,9752,9753,-9,-9,1,0,29,0,2,0,3,3,-9,1,2,0,0,0,4,-1,0,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,29.07,31.5,40.95,32.8,6.666666666666667,1,1,0,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 -4404,5444,9753,9752,-9,-9,1,1,30,0,2,0,3,3,-9,0,2,0,0,0,4,1,0,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,40.95,32.8,29.07,31.5,6.666666666666667,1,1,1,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 -4404,5444,9754,-9,9752,9753,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.8773,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,763.5,356086.16,0,234675.8,0,1548.1566 -4405,5445,9755,9756,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.2589207,8.6703711,0,7,1,-66.980843,0,-9,3,2019,13,1,60,50,1,1,0,8.7570114,8.7570114,0,0,0,0,0,0,0,0,0,0,27.71,67.3,36.22,41.82,5,1,1,0,0,8,10,5,1,977.5,3398311.8,670476.31,1113501,189953.8,4216.0576 -4405,5445,9756,9755,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.9186306,8.8599787,0,14,-1,-57.011749,0,2,3,2019,18,6,45,42,1,6,0,17.431011,17.431011,0,0,0,0,0,0,0,0,0,0,36.22,41.82,27.71,67.3,3.333333333333333,1,1,0,0,9,10,5,1,977.5,3398311.8,670476.31,1113501,189953.8,4216.0576 -4406,5446,9757,9758,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.7262354,8.9604731,7.8876538,34,-6,58.278492,0,3,2,2019,6,0,45,20,1,0,0,18.445469,18.445469,0,0,0,0,0,1,1,0,5.128201,8.1488323,50.05,55.41,53.38,52.51,10,1,1,0,0,6,10,5,1,423.5,2028407.8,334424.69,508822.13,0,6905.6318 -4406,5446,9758,9757,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.0917301,8.2189684,36,6,-107.0477,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7883868,8.8572578,53.38,52.51,50.05,55.41,8.333333333333334,1,1,0,0,7,10,5,1,423.5,2028407.8,334424.69,508822.13,0,6905.6318 -4407,5447,9759,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-977.60065,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.68,50.84,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,2100,-184782.69,0,0,0,1193.7891 -4408,5448,9760,9761,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.8783989,8.9533911,0,8,-5,102.2114,0,-9,-9,2019,9,0,40,42,1,0,0,24.419369,24.419369,0,0,0,0,0,0,0,0,10.270755,0,58.9,45.74,54.96,53.17,6.666666666666667,1,1,0,0,7,8,5,1,1017.5,1946636.5,1678168.3,544248.38,165367.34,10144.275 -4408,5448,9761,9760,-9,-9,1,0,56,0,1,0,1,1,-9,0,3,8.9283962,9.157279,0,18,5,-7.4867983,0,3,3,2019,7,0,36,40,1,0,0,21.059793,21.059793,0,0,0,0,0,0,0,0,3.3410423,0,54.96,53.17,58.9,45.74,10,1,1,0,0,10,8,5,1,1017.5,1946636.5,1678168.3,544248.38,165367.34,10144.275 -4409,5449,9762,9764,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,16,-12,89.70919,0,3,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,42.6,56.75,7,2,3,0,0,0,4,2,1,753.66669,255253.22,123454.7,206906.33,0,1268.6337 -4409,5449,9763,-9,9762,9764,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.7712,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,753.66669,255253.22,123454.7,206906.33,0,1268.6337 -4409,5449,9764,9762,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,3.4206166,3.1867814,0,16,12,16.169617,0,3,2,2019,12,2,35,35,1,2,0,.084458403,.084458403,0,0,0,0,0,1,1,0,0,0,42.6,56.75,48,57,5,2,3,0,0,8,4,2,1,753.66669,255253.22,123454.7,206906.33,0,1268.6337 -4410,5450,9765,-9,9766,9767,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-869.88452,-9,3,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.4768445,0,49.84,48.57,-9,-9,6.666666666666667,2,3,0,0,0,8,5,0,453.33334,746551.94,382499.81,347463.66,145609.39,5189.7422 -4410,5450,9766,9767,-9,-9,1,0,40,0,1,0,3,3,-9,0,5,7.7370181,7.4423175,0,23,-5,35.709305,0,3,1,2019,5,0,3,12,1,0,0,81.768341,81.768341,0,0,0,0,0,1,1,0,0,0,60.02,56.42,51.22,42.95,10,2,3,0,0,4,8,5,0,453.33334,746551.94,382499.81,347463.66,145609.39,5189.7422 -4410,5450,9767,9766,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.1357508,9.357379,0,23,5,-88.619911,0,2,2,2019,11,0,70,55,1,0,0,13.949051,13.949051,0,0,0,0,0,1,1,0,0,0,51.22,42.95,60.02,56.42,3.333333333333333,2,3,0,0,9,8,5,0,453.33334,746551.94,382499.81,347463.66,145609.39,5189.7422 -4410,5451,9768,-9,9766,9767,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1105.0261,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,8.333333333333334,2,3,0,0,1,8,1,0,334,0,0,0,0,22.357216 -4411,5452,9769,-9,9771,9773,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-969.25116,-9,3,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 -4411,5452,9770,-9,9771,9773,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1096.8555,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 -4411,5452,9771,9773,-9,-9,1,0,36,0,4,0,3,3,-9,0,4,0,0,0,17,-3,86.153366,0,3,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,48.77,51.79,10,2,3,0,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 -4411,5452,9772,-9,9771,9773,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.05396,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 -4411,5452,9773,9771,-9,-9,1,1,39,0,4,0,1,1,-9,0,4,7.1452942,7.3741064,0,10,3,49.408298,0,-9,-9,2019,12,0,32,0,1,0,0,4.7585096,4.7585096,0,0,0,0,0,1,1,0,0,0,48.77,51.79,41.17,59.31,5,2,3,0,0,9,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 -4411,5452,9774,-9,9771,9773,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.79126,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,737.66669,260152.5,86610.453,0,0,2070.6326 -4412,5453,9775,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,4.453063,4.5282245,0,0,-947.93585,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6564565,50,47,-9,-9,8,2,3,0,0,3,7,2,1,376,556764.81,193207.98,468871.53,0,554.33856 -4413,5454,9776,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,9.293314,9.1128244,0,0,0,-925.08118,0,3,3,2019,5,0,80,75,1,0,0,13.210945,13.210945,0,0,0,0,0,1,1,0,0,0,51.97,40.05,-9,-9,10,1,1,0,0,9,10,5,0,197,1763945.6,796048.38,256492.58,41579.328,4353.0894 -4414,5455,9777,9779,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,8.3181658,7.9937286,0,7,0,11.909711,0,-9,-9,2019,12,0,37,38,1,0,0,12.620996,12.620996,0,0,0,0,0,1,1,0,3.3345218,0,32.11,60.74,60.29,52.11,8.333333333333334,1,1,0,0,10,2,5,0,2110.6667,-202770.34,-54262.703,0,0,3739.4956 -4414,5455,9778,-9,9777,9779,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.18213,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,0,2110.6667,-202770.34,-54262.703,0,0,3739.4956 -4414,5455,9779,9777,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.1960468,8.5202227,0,7,0,-76.788269,-9,2,2,2019,7,0,36,0,1,0,0,13.871777,13.871777,0,0,0,0,0,1,1,0,0,0,60.29,52.11,32.11,60.74,8.333333333333334,1,1,0,0,8,2,5,0,2110.6667,-202770.34,-54262.703,0,0,3739.4956 -4415,5456,9780,-9,9783,9782,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.54944,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 -4415,5456,9781,-9,9783,9782,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-873.89661,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 -4415,5456,9782,9783,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.6821499,8.7958546,0,7,8,-80.264069,0,1,1,2019,11,0,40,37,1,0,0,14.340707,14.340707,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.04,55.86,6.666666666666667,2,3,0,0,9,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 -4415,5456,9783,9782,-9,-9,1,0,30,0,3,0,3,3,-9,0,3,0,0,0,7,-8,18.008678,-9,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.16,56.15,5,2,3,1,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 -4415,5456,9784,-9,9783,9782,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.191,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,418.60001,727352,-12224.854,578312.19,119987.06,2257.9932 -4416,5457,9785,-9,9787,9789,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-967.25781,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,52.37,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 -4416,5457,9786,-9,9787,9789,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.8716,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 -4416,5457,9787,9789,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,5.8167038,5.6987185,0,12,-23,-62.47229,0,3,3,2019,7,0,4,4,1,0,0,11.566488,11.566488,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.26,25.18,10,1,1,0,0,7,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 -4416,5457,9788,-9,9787,9789,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.12244,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 -4416,5457,9789,9787,-9,-9,1,1,61,0,3,0,3,3,-9,0,2,7.8621712,8.4280195,7.971375,11,23,27.264795,0,3,2,2019,12,1,37,37,1,1,0,8.4698944,8.4698944,0,0,0,0,0,1,1,0,0,8.0462322,43.26,25.18,57.16,56.15,6.666666666666667,1,1,0,0,7,12,3,1,477.60001,1138884.1,285473.66,453053.88,14386.816,3165.0828 -4417,5458,9790,9792,-9,-9,1,0,30,1,3,0,2,2,-9,1,4,0,0,0,5,-8,-39.038303,0,2,2,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,24.5,52.26,57.16,56.15,1.666666666666667,1,1,0,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 -4417,5458,9791,-9,9790,9792,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.5433,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 -4417,5458,9792,9790,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,7.5957322,7.4253902,0,5,8,126.49355,0,-9,-9,2019,8,0,28,28,1,0,0,5.9633498,5.9633498,0,0,0,0,0,1,1,0,0,0,57.16,56.15,24.5,52.26,3.333333333333333,3,4,0,0,7,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 -4417,5458,9793,-9,9790,9792,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-974.71265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 -4417,5458,9794,-9,9790,9792,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.0353,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,2,0,629.59998,8397.5244,-3223.7959,70344.164,0,2638.9082 -4418,5459,9795,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,9.0789471,8.7053661,0,0,0,-947.56616,0,3,-9,2019,5,0,53,50,1,0,0,15.381864,15.381864,0,0,0,0,0,0,0,0,0,0,51.63,57.91,-9,-9,10,2,3,0,0,9,8,5,0,799,184559.41,54379.824,0,0,3105.6794 -4418,5460,9796,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0006495,8.9533567,0,0,0,-1030.1705,0,2,2,2019,12,4,45,46,1,4,0,20.174026,20.174026,0,0,0,0,0,0,0,0,0,0,56,33.56,-9,-9,8.333333333333334,2,3,0,0,9,8,5,0,374,652195.81,-41154.031,630458.63,0,2689.95 -4418,5461,9797,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.803957,9.1245766,0,0,0,-935.17688,0,3,3,2019,9,3,37,46,1,3,0,24.926937,24.926937,0,0,0,0,0,0,0,0,0,0,59.29,46.97,-9,-9,8.333333333333334,2,3,0,0,9,8,5,0,796,272250.44,9858.1162,619381.56,0,2610.1917 -4418,5462,9798,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.7585821,8.8181248,0,0,0,-959.71411,0,2,2,2019,6,0,39,46,1,0,0,23.125103,23.125103,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,8,8,5,0,2447,695713,526957.31,0,0,2611.5313 -4419,5463,9799,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,2,8.1461906,8.5319338,0,0,0,-1004.5342,0,-9,3,2019,23,11,24,35,1,11,0,17.2262,17.2262,0,0,0,0,0,1,1,0,2.2927048,0,30.1,48.83,-9,-9,3.333333333333333,1,1,0,0,9,12,4,1,1178,764726.88,180693.95,273790.09,0,1704.1548 -4420,5464,9800,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.1311545,6.9121528,0,0,0,-941.5274,0,-9,-9,2019,9,0,21,22,1,0,0,7.1940408,7.1940408,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,5,1,1,0,0,10,11,3,0,360,210256.8,-56760.188,0,0,646.7348 -4420,5465,9801,-9,9800,-9,1,0,20,0,0,0,2,2,-9,0,4,7.1990371,7.3024721,0,0,0,-925.87689,0,2,-9,2019,12,0,35,42,1,2,1,4.6629415,4.6629415,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,11,3,0,585,150260.63,0,0,0,1151.4031 -4421,5466,9802,9803,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.7497368,9.7376156,0,5,-1,-8.548624,0,2,2,2019,12,0,46,50,1,0,0,34.698929,34.698929,0,0,0,0,0,0,0,0,4.2874308,0,34.49,52.94,55.53,51.55,6.666666666666667,1,1,0,0,11,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 -4421,5466,9803,9802,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.5410538,8.2306356,0,5,1,98.028976,0,-9,-9,2019,8,0,25,25,1,0,0,22.127745,22.127745,0,0,0,0,0,0,0,0,7.0269151,0,55.53,51.55,34.49,52.94,10,1,1,0,0,13,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 -4421,5466,9804,-9,9803,9802,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.7914,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 -4421,5466,9805,-9,9803,9802,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.56427,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,151804.39,110797.07,289339.22,150500.47,6009.2544 -4422,5467,9806,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.5439434,9.6998806,0,0,0,-952.60413,0,1,1,2019,12,0,40,38,1,0,0,28.128456,28.128456,0,0,0,0,0,0,0,0,7.7529931,0,47.55,55.06,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,297,667022.56,230929.27,392560.5,0,5112.4121 -4423,5468,9807,9808,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.603569,8.7723837,0,36,-3,107.45467,0,3,3,2019,17,5,36,36,1,5,0,22.474947,22.474947,0,0,0,0,0,0,0,0,4.3036184,0,33.77,58.85,52.9,40.76,3.333333333333333,1,1,0,0,13,11,4,1,771.5,621552.56,521939.94,247766.88,93319.57,2028.0994 -4423,5468,9808,9807,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,5.2930231,4.9110479,36,3,-7.6877999,1,2,2,2019,6,0,0,34,2,0,0,0,0,0,0,0,0,0,0,0,0,4.4402704,5.2803264,52.9,40.76,33.77,58.85,5,1,1,0,0,13,11,4,1,771.5,621552.56,521939.94,247766.88,93319.57,2028.0994 -4424,5469,9809,9810,-9,-9,1,1,34,1,3,0,1,1,-9,0,5,9.1406984,8.8485641,0,12,3,-86.20694,0,2,2,2019,12,1,39,37,1,1,0,25.605286,25.605286,0,0,0,0,0,1,1,0,0,0,55.17,50.33,54.2,57.49,8.333333333333334,1,1,0,0,9,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 -4424,5469,9810,9809,-9,-9,1,0,31,1,3,0,1,1,-9,0,4,7.7419071,7.7969408,0,12,-3,-185.81874,0,2,2,2019,6,0,21,18,1,0,0,12.855972,12.855972,0,0,0,0,0,1,1,0,.38906869,0,54.2,57.49,55.17,50.33,10,1,1,0,0,9,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 -4424,5469,9811,-9,9810,9809,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.6705,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 -4424,5469,9812,-9,9810,9809,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.8636,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 -4424,5469,9813,-9,9810,9809,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-916.4715,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,942.79999,462189.44,303560.81,202908.25,68891.563,4144.8076 -4425,5470,9814,-9,9816,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-907.34503,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,2,0,501.66666,246564.84,0,0,0,2519.3796 -4425,5470,9815,-9,9816,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.51453,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,501.66666,246564.84,0,0,0,2519.3796 -4425,5470,9816,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.0870495,7.1320548,6.0302806,0,0,-976.29785,0,3,2,2019,5,0,17,17,1,0,0,8.6923647,8.6923647,0,0,0,0,0,1,0,1,5.9734197,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,501.66666,246564.84,0,0,0,2519.3796 -4426,5471,9817,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.4211478,6.2731948,0,0,-817.85809,0,3,3,2019,11,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.0823998,4.2164149,31.87,65.88,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,367,211098.48,71847.406,0,0,1710.3156 -4427,5472,9818,9819,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.5621915,6.6404204,60,-2,-147.32921,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4926062,61.64,16.18,40.14,16.93,6.666666666666667,1,1,0,0,0,12,2,0,554.5,640124.13,123084.41,446229.75,0,2198.7446 -4427,5472,9819,9818,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.0113883,4.297646,60,2,-35.55637,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,27.925859,0,0,1,1,0,3.9047582,3.9680173,40.14,16.93,61.64,16.18,5,1,1,0,0,0,12,2,0,554.5,640124.13,123084.41,446229.75,0,2198.7446 -4428,5473,9820,9821,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.9461861,9.0346937,0,19,0,-18.358942,0,-9,-9,2019,10,0,43,40,1,0,0,16.011898,16.011898,0,0,0,0,0,1,1,0,3.1157942,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,13,11,5,1,286,489831.59,236571.73,406181.09,104245.55,5218.8198 -4428,5473,9821,9820,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.9112129,8.8418112,0,19,0,-46.170086,0,2,2,2019,9,0,48,50,1,0,0,20.289625,20.289625,0,0,0,0,0,1,1,0,.47479084,0,57.06,57.76,54.2,57.49,8.333333333333334,2,3,0,0,11,11,5,1,286,489831.59,236571.73,406181.09,104245.55,5218.8198 -4428,5473,9822,-9,9821,9820,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1021.9415,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,11,5,1,286,489831.59,236571.73,406181.09,104245.55,5218.8198 -4429,5474,9823,9824,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3943081,8.6778412,5.0268812,6,0,53.138924,0,-9,-9,2019,10,2,43,45,1,2,0,11.699467,11.699467,0,0,0,0,0,0,0,0,4.9140735,0,54.1,59.11,53.5,51.02,8.333333333333334,1,1,0,0,5,2,5,1,602.5,-30449.314,63648.039,136358.72,132339.47,3066.7432 -4429,5474,9824,9823,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.9483123,7.9960284,0,6,0,-18.40859,0,1,1,2019,11,0,43,40,1,0,0,6.3703885,6.3703885,0,0,0,0,0,0,0,0,2.2744541,0,53.5,51.02,54.1,59.11,8.333333333333334,1,1,0,0,5,2,5,1,602.5,-30449.314,63648.039,136358.72,132339.47,3066.7432 -4430,5475,9825,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.6206651,6.5846071,0,0,-1185.026,0,-9,3,2019,8,1,0,0,4,1,0,0,0,1,2.7274349,0,21.277327,0,1,1,0,2.8766351,6.9632087,59.66,25.4,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,158,309723,242320.28,0,0,1238.3274 -4431,5476,9826,-9,-9,-9,1,1,30,0,0,0,1,1,-9,1,4,7.8841419,8.4127321,0,0,0,-1036.5396,0,1,1,2019,5,0,42,0,1,0,0,10.080705,10.080705,0,0,0,0,0,1,1,0,0,0,54.14,58.86,-9,-9,5,1,1,0,1,0,4,4,1,310,396076.31,-43547.125,34141.668,20290.236,1986.1495 -4432,5477,9827,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,9.5202799,9.8504744,8.6443796,0,0,-1046.1492,0,2,3,2019,8,0,60,55,1,0,0,23.467802,23.467802,0,0,0,0,2,0,0,0,8.8328228,8.8933144,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,428,2618404.3,1844167.1,592944.5,0,6074.0386 -4433,5478,9828,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.1222777,6.984817,0,0,-962.16614,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0227671,59.3,39.29,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,323,147607.13,341629.41,0,0,1288.4694 -4434,5479,9829,9830,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.952693,8.7639332,0,10,-4,11.439742,0,2,2,2019,7,0,39,40,1,0,0,18.23509,18.23509,0,0,0,0,2,1,1,0,6.137897,0,57.16,56.15,61.12,51.57,10,1,1,0,0,11,2,4,1,423,617995.63,452424.63,115493.38,0,3179.8674 -4434,5479,9830,9829,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,5.8231125,5.5876217,0,10,4,-35.850651,0,2,2,2019,6,0,25,35,1,0,0,1.625398,1.625398,0,0,0,0,0,1,1,0,4.9084959,0,61.12,51.57,57.16,56.15,10,1,1,0,0,11,2,4,1,423,617995.63,452424.63,115493.38,0,3179.8674 -4435,5480,9831,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.4822798,8.5503664,0,0,0,-878.24701,0,-9,-9,2019,6,0,8,40,1,0,0,70.44651,70.44651,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,4,5,0,307,111628.95,-103389.01,55270.406,107564.7,1328.0985 -4435,5481,9832,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.2208529,7.8268504,0,0,0,-1071.3662,0,-9,-9,2019,6,0,50,43,1,0,0,7.9932623,7.9932623,0,0,0,0,0,0,0,0,1.4289621,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,983,-3739.4063,40655.832,0,0,926.22156 -4436,5482,9833,9834,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.4465032,5.5293889,51,0,22.360775,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.4894228,5.7835646,50.1,32.62,51.64,53.15,5,1,1,0,0,5,7,2,1,321.5,345939.94,0,401914,0,2261.3835 -4436,5482,9834,9833,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.8530064,5.0595422,50,0,-56.441242,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6913514,5.0568104,51.64,53.15,50.1,32.62,8.333333333333334,1,1,0,0,4,7,2,1,321.5,345939.94,0,401914,0,2261.3835 -4437,5483,9835,9836,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.3770733,8.4500828,0,33,-11,30.270187,0,-9,-9,2019,6,0,38,39,1,0,0,13.738866,13.738866,0,0,0,0,0,1,1,0,3.7843313,0,57.06,57.76,58.88,40.91,6.666666666666667,1,1,0,0,8,8,5,1,701,1880368.4,376219.75,891305.81,0,3667.8979 -4437,5483,9836,9835,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.6160698,8.1245928,0,34,11,-187.80992,0,-9,-9,2019,12,2,55,50,1,2,0,7.1801438,7.1801438,0,0,0,0,0,1,1,0,0,0,58.88,40.91,57.06,57.76,8.333333333333334,2,3,0,0,9,8,5,1,701,1880368.4,376219.75,891305.81,0,3667.8979 -4437,5484,9837,-9,9835,9836,1,0,27,0,0,0,2,2,-9,0,3,8.3105421,8.398488,0,0,0,-969.41064,0,2,2,2019,13,1,44,37,1,1,1,10.097692,10.097692,0,0,0,0,0,1,1,0,.9903996,0,42.94,55.94,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,747,75427.203,0,0,0,2121.1602 -4437,5485,9838,-9,9835,9836,1,1,26,0,0,0,1,1,-9,0,4,8.4585972,8.1106253,0,0,0,-934.92761,0,2,2,2019,11,0,55,40,1,0,1,8.7413368,8.7413368,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,1414,-194320.13,18753.152,0,0,1889.2327 -4438,5486,9839,-9,9841,9840,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.42352,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,588.33331,296913.84,177830.91,160353.22,50470.578,6084.7178 -4438,5486,9840,9841,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.3587933,8.4342546,0,9,7,-62.815086,0,1,2,2019,6,0,45,45,1,0,0,9.0989256,9.0989256,0,0,0,0,0,1,1,0,2.5344272,0,51.64,57.24,41.03,51.69,8.333333333333334,1,1,0,0,10,13,5,1,588.33331,296913.84,177830.91,160353.22,50470.578,6084.7178 -4438,5486,9841,9840,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,8.5455503,8.6997843,0,9,-7,-73.346977,0,-9,-9,2019,12,2,55,50,1,2,0,9.3373222,9.3373222,0,0,0,0,71,1,1,0,8.7014875,0,41.03,51.69,51.64,57.24,5,1,1,0,0,12,13,5,1,588.33331,296913.84,177830.91,160353.22,50470.578,6084.7178 -4439,5487,9842,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,5,0,6.5933595,6.9494362,0,0,-881.96631,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8922729,57.65,56.13,-9,-9,10,1,1,0,0,0,13,2,1,641,117663.71,57438.699,363478.66,0,816.7464 -4440,5488,9843,9845,-9,-9,1,0,43,0,3,0,1,1,1,0,3,0,0,0,3,0,-144.93758,-9,2,1,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,.30382812,0,47.55,47.03,54.13,48.04,10,3,4,1,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 -4440,5488,9844,-9,9843,9845,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1139.8202,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 -4440,5488,9845,9843,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,9.0458555,8.9404669,3.8850842,3,0,94.266022,0,2,1,2019,8,0,37,37,1,0,0,20.201494,20.201494,0,0,0,0,0,1,1,0,4.3794489,0,54.13,48.04,47.55,47.03,6.666666666666667,3,4,0,1,9,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 -4440,5488,9846,-9,9843,9845,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.10327,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 -4440,5488,9847,-9,9843,9845,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1023.3456,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,12,4,1,1767,318298.47,100667.32,213409.28,171885.75,2568.9165 -4441,5489,9848,9849,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9030461,6.1212592,51,1,208.52452,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.6349635,5.9737544,40.63,39.73,45.4,39.17,6.666666666666667,1,1,0,0,0,5,2,1,541,399035.53,97737.945,171750.41,0,1367.8704 -4441,5489,9849,9848,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,51,-1,1.08283,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,39.17,40.63,39.73,6.666666666666667,1,1,0,0,0,5,2,1,541,399035.53,97737.945,171750.41,0,1367.8704 -4442,5490,9850,-9,-9,-9,1,1,26,0,1,0,2,2,-9,0,2,7.6700125,7.6170993,0,0,0,-1027.5536,-9,-9,-9,2019,17,5,55,0,1,5,0,4.5397458,4.5397458,0,0,0,0,0,1,1,0,0,0,41,43,-9,-9,6.666666666666667,3,4,0,0,4,4,3,0,1147,69203.195,9528.7139,0,0,1330.4917 -4442,5491,9851,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.2487259,8.0556507,0,0,0,-878.46686,0,-9,-9,2019,12,2,34,34,1,2,0,9.431447,9.431447,0,0,0,0,0,1,1,0,0,0,49.68,37.85,-9,-9,6.666666666666667,3,4,0,0,10,4,3,0,842.5,1949.9375,-38578.43,105729.98,61120.207,2176.7898 -4442,5491,9852,-9,9851,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.152,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,4,3,0,842.5,1949.9375,-38578.43,105729.98,61120.207,2176.7898 -4442,5492,9853,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,8.1816454,7.8492694,0,0,0,-976.73798,0,-9,-9,2019,11,1,48,45,1,1,0,6.0296006,6.0296006,0,0,0,0,0,1,1,0,0,0,43.98,43.24,-9,-9,6.666666666666667,3,4,0,0,5,4,3,0,722,196351.23,-36642.379,0,0,1281.2024 -4443,5493,9854,9856,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.3658104,7.1041865,0,19,-4,28.574743,0,3,2,2019,10,0,16,16,1,0,0,8.349082,8.349082,0,0,0,0,0,1,1,0,0,0,46.08,57.2,50.03,52.62,8.333333333333334,1,1,0,0,10,2,4,1,1821,167687.7,78139.977,229418.59,109024.65,3354.2988 -4443,5493,9855,-9,9854,9856,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.4482,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1821,167687.7,78139.977,229418.59,109024.65,3354.2988 -4443,5493,9856,9854,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.6394091,8.6420927,0,7,4,107.22583,0,2,2,2019,10,0,45,43,1,0,0,12.24518,12.24518,0,0,0,0,0,1,1,0,4.1298385,0,50.03,52.62,46.08,57.2,6.666666666666667,1,1,0,0,5,2,4,1,1821,167687.7,78139.977,229418.59,109024.65,3354.2988 -4444,5494,9857,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,5,0,7.2819872,7.3057652,0,0,-951.08911,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4384947,7.4508972,58.05,54.52,-9,-9,10,1,1,0,0,0,6,3,1,967,436695.72,12112.985,373412.59,0,2002.8417 -4445,5495,9858,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.3996625,7.4447308,0,0,0,-904.36658,0,2,2,2019,7,0,10,30,1,0,0,16.33168,16.33168,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,307,1168232.8,81243.25,340860.03,188425.53,340.4411 -4446,5496,9859,9860,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2472143,8.3814611,0,1,0,-33.663509,-9,-9,-9,2019,8,1,43,0,1,1,0,11.442091,11.442091,0,0,0,0,0,0,0,0,0,0,58.2,54.53,57.06,57.76,10,1,1,0,0,0,2,5,1,496.5,-60592.938,12771.105,136372.16,21634.424,3700.9275 -4446,5496,9860,9859,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.4809294,8.2130337,0,1,0,-81.841827,0,2,-9,2019,3,0,38,37,1,0,0,12.504815,12.504815,0,0,0,0,0,0,0,0,2.1844916,0,57.06,57.76,58.2,54.53,8.333333333333334,1,1,0,0,7,2,5,1,496.5,-60592.938,12771.105,136372.16,21634.424,3700.9275 -4447,5497,9861,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,3,7.7072668,8.0845833,5.4080367,0,0,-988.34406,0,1,2,2019,26,8,50,45,1,8,0,7.3716159,7.3716159,0,0,0,0,0,1,1,0,5.8789897,0,15.08,66.28,-9,-9,5,1,1,0,0,6,2,3,0,1245.5,80868.648,-63797.219,0,0,1444.6594 -4447,5497,9862,-9,9861,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.20245,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1245.5,80868.648,-63797.219,0,0,1444.6594 -4448,5498,9863,9864,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,41,-1,0,0,3,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,48.27,47.75,1.666666666666667,1,1,0,0,0,2,2,1,395.5,-13139.974,0,0,0,1413.521 -4448,5498,9864,9863,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,41,1,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,48.27,47.75,30.6,18.53,8.333333333333334,1,1,0,0,0,2,2,1,395.5,-13139.974,0,0,0,1413.521 -4449,5499,9865,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,7.3555703,7.5192423,0,0,0,-973.90747,-9,2,2,2019,9,1,35,0,1,1,0,9.4028406,9.4028406,0,0,0,0,0,1,1,0,0,0,45.86,54.5,-9,-9,6.666666666666667,1,1,0,1,9,9,3,1,183,0,0,0,0,834.95386 -4450,5500,9866,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1791782,8.1484966,0,0,0,-1027.4885,-9,2,2,2019,13,1,42,0,1,1,0,10.018067,10.018067,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,212,353323.34,27871.404,0,0,1359.1042 -4451,5501,9867,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1001.1859,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,29.7,43.52,-9,-9,5,1,1,0,0,0,4,2,0,295,-158543.39,117321.62,0,0,342.21051 -4452,5502,9868,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4853458,8.6125193,7.8001223,0,0,-925.9328,0,-9,-9,2019,7,0,84,23,1,0,0,7.5785885,7.5785885,0,0,0,0,0,1,1,0,3.3978438,7.5716844,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1449,81072.797,0,0,0,2728.7197 -4453,5503,9869,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.0719299,7.8576469,0,0,-958.93408,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1880512,52,47,-9,-9,7,1,1,0,0,0,13,4,1,364,573706.38,614037.13,0,0,2261.2676 -4454,5504,9870,-9,9871,9874,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.28961,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 -4454,5504,9871,9874,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.1102371,7.8371634,0,6,1,152.85876,0,1,1,2019,7,0,39,40,1,0,0,8.6916437,8.6916437,0,0,0,0,0,0,0,0,0,0,54.35,57.84,55.19,54.26,8.333333333333334,1,1,0,0,7,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 -4454,5504,9872,-9,9871,9874,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.124,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 -4454,5504,9873,-9,9871,9874,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.3774,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 -4454,5504,9874,9871,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.5409746,8.4465885,0,6,-1,44.328587,0,3,3,2019,10,0,57,60,1,0,0,9.2055798,9.2055798,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.35,57.84,6.666666666666667,1,1,0,0,6,12,4,1,515.20001,85647.938,144059.64,112266.91,109782.51,3633.9001 -4455,5505,9875,9876,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.1808691,8.0917692,53,3,44.536266,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.6382084,8.0052557,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,778,1356316.3,995288.38,384442.19,0,3975.813 -4455,5505,9876,9875,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.7535739,7.0264668,53,-3,51.595421,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8063803,7.0128698,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,0,7,4,1,778,1356316.3,995288.38,384442.19,0,3975.813 -4456,5506,9877,9878,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.8796597,9.0323782,0,23,0,115.02454,0,2,2,2019,9,1,40,45,1,1,0,18.079405,18.079405,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,10,11,5,1,945.33331,1153648.9,946468.88,85281.922,92242.789,4105.5005 -4456,5506,9878,9877,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.058197,7.9607167,0,23,0,24.622534,0,2,3,2019,8,0,40,47,1,0,0,8.685935,8.685935,0,0,0,0,0,1,1,0,3.0317898,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,945.33331,1153648.9,946468.88,85281.922,92242.789,4105.5005 -4456,5506,9879,-9,9877,9878,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-924.33289,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,5,1,945.33331,1153648.9,946468.88,85281.922,92242.789,4105.5005 -4457,5507,9880,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.7860289,7.042243,0,0,-857.03534,0,3,2,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.0645795,46.95,31.82,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,677,112101.45,44685.59,0,0,1483.1556 -4458,5508,9881,9882,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.0932159,9.0864515,0,5,7,-4.2435799,0,-9,-9,2019,0,0,40,43,1,0,0,17.552124,17.552124,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.66,47.89,10,4,5,0,0,6,8,5,1,807.5,-15189.762,89635.125,470886.5,196448.31,3706.0171 -4458,5508,9882,9881,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.5822468,7.4239297,0,5,-7,-55.427761,0,-9,-9,2019,5,0,35,35,1,0,0,7.7136769,7.7136769,0,0,0,0,0,0,0,0,0,0,57.66,47.89,62.39,56.71,10,2,3,0,0,4,8,5,1,807.5,-15189.762,89635.125,470886.5,196448.31,3706.0171 -4459,5509,9883,9884,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.3759518,4.5096745,6,13,42.487537,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8486557,4.225234,54.74,57.22,57.06,57.76,10,1,1,0,0,2,7,3,1,437,347405.06,6283.0684,285578.94,0,1990.241 -4459,5509,9884,9883,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,7.88972,8.0428619,0,6,-13,-7.9482975,0,2,3,2019,6,0,50,50,1,0,0,6.034236,6.034236,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.74,57.22,8.333333333333334,1,1,0,0,7,7,3,1,437,347405.06,6283.0684,285578.94,0,1990.241 -4460,5510,9885,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,4.303453,4.5137205,0,0,-861.31488,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,0,4.7383285,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,4,2,1,379,370196.25,81207.57,125089.76,0,-174.1743 -4461,5511,9886,-9,9888,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.16949,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,653.66669,155966.75,-40798.641,0,0,1896.2124 -4461,5511,9887,9888,-9,-9,1,1,57,0,1,0,3,3,-9,1,1,0,0,0,2,18,-24.73522,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,18.41,33.16,36.28,6.666666666666667,1,1,0,0,0,2,2,0,653.66669,155966.75,-40798.641,0,0,1896.2124 -4461,5511,9888,9887,-9,-9,1,0,39,0,1,0,2,2,-9,0,2,7.2533846,7.018105,0,2,-18,27.145687,0,2,2,2019,23,11,17,20,1,11,0,12.828498,12.828498,0,0,0,0,7,1,1,0,0,0,33.16,36.28,45.22,18.41,5,1,1,0,0,8,2,2,0,653.66669,155966.75,-40798.641,0,0,1896.2124 -4462,5512,9889,-9,-9,-9,1,1,20,0,0,1,2,0,0,1,3,0,0,0,0,0,-999.51611,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,693,-230755.27,0,0,0,766.66949 -4463,5513,9890,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-936.89508,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,-9,-9,10,1,1,0,0,2,6,1,1,3493,0,0,0,0,0 -4464,5514,9891,-9,-9,-9,1,0,38,0,0,0,3,3,-9,0,5,8.1795998,8.4817543,0,0,0,-880.10059,0,3,-9,2019,6,1,16,40,1,1,0,27.779455,27.779455,0,0,0,0,0,0,0,0,0,0,59.44,42.44,-9,-9,10,1,1,0,0,10,1,4,0,261,160890.48,34665.684,0,0,1616.3359 -4465,5515,9892,9893,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.9882288,9.3350496,0,4,0,59.717899,0,-9,-9,2019,9,0,42,42,1,0,0,23.715693,23.715693,0,0,0,0,0,0,0,0,4.0482845,0,38.51,59.43,46.89,39.18,8.333333333333334,1,1,0,0,7,1,5,1,1405.5,0,0,0,0,4400.4941 -4465,5515,9893,9892,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2550726,8.2555637,0,4,0,-96.798409,0,-9,-9,2019,11,3,37,40,1,3,0,14.855692,14.855692,0,0,0,0,0,0,0,0,0,0,46.89,39.18,38.51,59.43,5,1,1,0,0,5,1,5,1,1405.5,0,0,0,0,4400.4941 -4466,5516,9894,-9,9896,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-882.13629,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,3,1,477.66666,-1332.6454,38614.324,0,0,2057.7537 -4466,5516,9895,-9,9896,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.38245,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,477.66666,-1332.6454,38614.324,0,0,2057.7537 -4466,5516,9896,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.8627343,8.0365553,6.3652797,0,0,-1022.7223,0,2,3,2019,10,1,24,24,1,1,0,11.206278,11.206278,0,0,0,0,0,1,1,0,6.6107903,0,41.85,51.14,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,477.66666,-1332.6454,38614.324,0,0,2057.7537 -4467,5517,9897,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.4961967,6.3204927,0,0,-1022.6458,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.0775685,59.3,39.29,-9,-9,10,1,1,0,0,0,11,2,0,63,515160.44,2943.6445,0,0,708.33624 -4467,5518,9898,-9,-9,-9,1,0,34,0,0,0,3,3,-9,0,4,7.7195649,8.0113087,0,0,0,-1111.5204,-9,-9,-9,2019,11,0,37,0,1,2,0,7.2605796,7.2605796,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,4,6,0,0,1,11,3,0,541,119833.66,0,115824.89,80636.414,1302.3271 -4468,5519,9899,9900,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.4932609,7.3374133,49,1,-59.295876,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4765048,7.5961189,50.65,60.47,64.40000000000001,31.26,10,1,1,0,0,10,2,3,1,516,1252597.8,553832.94,127370.18,0,2099.8457 -4468,5519,9900,9899,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8505678,6.0142193,49,-1,-115.08016,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9607263,6.3530507,64.40000000000001,31.26,50.65,60.47,10,1,1,0,0,6,2,3,1,516,1252597.8,553832.94,127370.18,0,2099.8457 -4469,5520,9901,9902,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.8768682,7.6658592,10,4,17.623692,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1487012,6.9524331,52.54,54.24,58.88,40.91,8.333333333333334,1,1,0,0,0,10,2,1,1033.5,571621,149761.72,192149.66,0,1672.9255 -4469,5520,9902,9901,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,10,-4,133.24669,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,58.88,40.91,52.54,54.24,8.333333333333334,1,1,0,0,0,10,2,1,1033.5,571621,149761.72,192149.66,0,1672.9255 -4470,5521,9903,9904,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,8.3139095,8.0310459,68,3,-153.04134,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,2,1,1,0,0,8.0791435,51.3,18.85,41.02,47.29,6.666666666666667,1,1,0,0,0,6,4,1,605.5,888547,148866.97,314218.81,0,3767.9502 -4470,5521,9904,9903,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.6637564,6.5134301,68,-3,-128.32231,0,3,3,2019,16,6,0,0,4,6,0,0,0,1,0,0,0,42,1,1,0,0,6.6008906,41.02,47.29,51.3,18.85,10,1,1,0,0,0,6,4,1,605.5,888547,148866.97,314218.81,0,3767.9502 -4470,5522,9905,-9,-9,-9,1,1,39,0,0,0,2,2,-9,1,4,0,0,0,0,0,-868.57819,0,1,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.57,46.44,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,181,-674159.56,0,0,0,-65.511917 -4471,5523,9906,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.88019,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,6.6663036,24.912106,0,0,1,1,0,0,0,52,45,-9,-9,8,3,4,0,0,0,2,1,0,582,96957.734,0,0,0,1282.4161 -4472,5524,9907,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5875092,8.6162891,0,0,0,-1061.4465,0,3,3,2019,7,0,35,30,1,0,0,12.838347,12.838347,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,12,9,5,1,514,259653.11,-4265.8096,0,0,1921.637 -4473,5525,9908,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1107.1544,0,2,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.81,23.9,-9,-9,5,2,3,0,0,5,7,1,1,606,188259.2,0,0,0,301.10565 -4473,5526,9909,-9,-9,9908,1,1,29,0,0,0,2,2,-9,0,5,8.391345,8.3807926,0,0,0,-978.34998,0,1,2,2019,9,0,48,40,1,1,0,10.091949,10.091949,0,0,0,0,27,1,1,0,0,0,44.16,61.04,-9,-9,10,2,3,0,0,4,7,4,1,522,0,0,0,0,1397.4938 -4474,5527,9910,-9,9913,9911,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.15527,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 -4474,5527,9911,9913,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.6579933,8.3910151,0,15,-2,1.2068667,0,2,2,2019,4,0,43,55,1,0,0,12.149343,12.149343,0,0,0,0,2,1,1,0,0,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,8,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 -4474,5527,9912,-9,9913,9911,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.10645,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 -4474,5527,9913,9911,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,15,2,126.23695,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.37,54.8,57.33,53.46,6.666666666666667,1,1,0,0,0,1,3,1,904,231874.03,113095.29,89543.828,62880.816,2995.4551 -4475,5528,9914,9915,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.2300262,6.1100559,31,3,23.614433,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8745961,45.22,18.41,55.59,43.19,5,1,1,0,0,7,12,2,1,519.5,-73615.094,148824.25,0,0,1472.0272 -4475,5528,9915,9914,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,42,-3,-44.808914,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,43.19,45.22,18.41,8.333333333333334,1,1,0,0,6,12,2,1,519.5,-73615.094,148824.25,0,0,1472.0272 -4476,5529,9916,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.0467443,6.255651,0,0,-1045.4026,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8651705,39,24,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,470,365263.56,-50991.277,0,0,891.60675 -4477,5530,9917,9918,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8701534,8.9954109,7.0849147,31,-1,-130.23634,0,2,1,2019,13,2,28,52,1,2,0,22.752647,22.752647,0,0,0,0,0,0,0,0,6.9333396,0,44.16,58.02,51,49,8.333333333333334,1,1,0,0,9,8,5,1,138.5,1659199.3,914718.75,457588.56,0,5867.6328 -4477,5530,9918,9917,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.7046509,8.9389257,0,8,1,-75.892235,0,2,2,2019,10,0,40,40,1,1,0,20.222698,20.222698,0,0,0,0,0,0,0,0,5.9128151,0,51,49,44.16,58.02,7,1,1,0,0,1,8,5,1,138.5,1659199.3,914718.75,457588.56,0,5867.6328 -4477,5531,9919,-9,9917,9918,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.49097,1,1,1,2019,11,0,0,35,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,0,8,1,1,830,0,0,0,0,0 -4477,5532,9920,-9,9917,9918,1,1,23,0,0,0,1,1,1,0,4,7.8355947,7.8852911,0,0,0,-1087.646,-9,1,1,2019,12,2,8,0,1,2,1,36.943432,36.943432,0,0,0,0,0,0,0,0,0,0,43.2,51.94,-9,-9,8.333333333333334,1,1,0,0,1,8,3,1,988,126594.12,0,0,0,1313.7214 -4477,5533,9921,-9,9917,9918,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-980.58545,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,8,1,1,1154,-47962.426,0,0,0,0 -4478,5534,9922,9924,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,9.4261589,9.1737766,0,7,0,72.199989,0,1,1,2019,9,0,50,50,1,0,0,33.302807,33.302807,0,0,0,0,0,1,1,0,2.9713955,0,60.02,56.42,45.91,59.89,8.333333333333334,1,1,0,0,8,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 -4478,5534,9923,-9,9924,9922,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1009.2583,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 -4478,5534,9924,9922,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.271131,7.5332985,0,7,0,56.019718,0,2,1,2019,12,0,15,15,1,0,0,12.476419,12.476419,0,0,0,0,0,1,1,0,1.4282818,0,45.91,59.89,60.02,56.42,8.333333333333334,1,1,0,0,8,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 -4478,5534,9925,-9,9924,9922,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.5405,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,610.75,902883.44,981382.44,197467.55,61560.574,4433.8516 -4479,5535,9926,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-938.45453,0,2,-9,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.29,37.93,-9,-9,3.333333333333333,1,1,0,0,9,12,1,0,225,0,0,0,0,80.057045 -4480,5536,9927,9928,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.1107006,9.2385178,0,3,-2,187.35265,-9,-9,-9,2019,10,0,40,0,1,1,0,25.74365,25.74365,0,0,0,0,0,0,0,0,0,0,50,57,48,57,7,4,1,0,0,1,8,5,1,1121.5,451756.69,257766.78,560340.44,398193.09,9241.9775 -4480,5536,9928,9927,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.6032639,9.9662962,0,3,2,97.72673,-9,-9,-9,2019,11,0,50,0,1,2,0,41.361919,41.361919,0,0,0,0,0,0,0,0,3.7449198,0,48,57,50,57,7,1,1,0,0,6,8,5,1,1121.5,451756.69,257766.78,560340.44,398193.09,9241.9775 -4481,5537,9929,9930,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,8.1765203,7.9491172,38,-2,-98.082344,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.2587504,7.5793014,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,408,479531.25,425527.81,144961.78,0,3233.0063 -4481,5537,9930,9929,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.7365303,8.7468109,0,37,2,-19.959148,0,2,1,2019,7,0,44,47,1,0,0,13.17618,13.17618,0,0,0,0,2,0,0,0,3.5533981,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,11,5,5,1,408,479531.25,425527.81,144961.78,0,3233.0063 -4482,5538,9931,9932,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.7402945,8.3496323,8,0,-3.8764629,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9037514,8.7407312,54.37,54.8,58.32,50.22,8.333333333333334,1,1,0,0,3,9,4,1,1273,828472.94,462146.13,338082.13,0,4821.4375 -4482,5538,9932,9931,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0085721,6.7937298,8,0,107.89719,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3365767,7.1298308,58.32,50.22,54.37,54.8,8.333333333333334,1,1,0,0,4,9,4,1,1273,828472.94,462146.13,338082.13,0,4821.4375 -4483,5539,9933,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.4972906,7.4530039,0,0,-1052.5225,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9337626,7.467422,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1057,242925.05,101912.73,0,0,1651.177 -4484,5540,9934,9935,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,4.9484901,7.6788454,7.5353346,8,1,-69.238129,0,-9,-9,2019,9,0,20,-9,1,1,0,.73017943,.73017943,0,0,0,0,0,1,1,0,4.533556,7.3647056,53,47,66.2,41.05,8,1,1,0,0,1,12,2,1,99,521785.06,284951.88,174301.52,0,2432.1377 -4484,5540,9935,9934,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,54,-1,-50.433151,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.0671673,0,66.2,41.05,53,47,10,1,1,0,0,10,12,2,1,99,521785.06,284951.88,174301.52,0,2432.1377 -4485,5541,9936,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.3404894,9.328476,0,0,0,-1005.128,0,1,1,2019,12,0,40,46,1,0,0,30.365524,30.365524,0,0,0,0,0,0,0,0,7.6210899,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,1525,550798.88,223676.44,425260.56,0,3400.6536 -4486,5542,9937,-9,9940,9938,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.057,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 -4486,5542,9938,9940,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.5570784,8.9019594,0,16,4,86.368492,0,3,2,2019,8,0,40,48,1,0,0,16.690105,16.690105,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.6,51.61,8.333333333333334,1,1,0,0,12,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 -4486,5542,9939,-9,9940,9938,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.42371,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 -4486,5542,9940,9938,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.9149756,7.6834993,0,16,-4,-17.287901,0,2,2,2019,12,0,31,35,1,0,0,9.0155535,9.0155535,0,0,0,0,0,0,0,0,0,0,43.6,51.61,54.79,55.86,6.666666666666667,1,1,0,0,8,7,4,1,893.5,704015.5,124276.28,518312.41,0,2985.5635 -4487,5543,9941,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.3619862,8.3927994,0,0,0,-1086.5658,0,2,2,2019,6,0,50,37,1,0,0,11.184777,11.184777,0,0,0,0,0,1,1,0,0,0,51.77,50.48,-9,-9,8.333333333333334,3,4,0,0,4,10,4,0,169,104271.55,100645.45,0,0,1220.9982 -4488,5544,9942,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.3368082,6.8798943,0,0,-968.44342,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.5030514,6.8691463,44.98,33.54,-9,-9,3.333333333333333,1,1,0,1,4,11,2,1,652,719320.56,305607.03,0,0,1654.5526 -4489,5545,9943,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.0633883,5.4610772,0,0,-1008.3499,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0872436,59.3,44.82,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,858,539905.25,212361.03,385907.19,0,916.82635 -4490,5546,9944,-9,9945,9947,1,0,19,0,1,1,2,0,-9,0,3,0,0,0,0,0,-963.50452,-9,3,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42.03,55.35,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,295,-455053.94,0,0,0,0 -4490,5547,9945,9947,-9,-9,1,0,36,0,1,0,3,3,-9,1,1,0,0,0,1,-8,47.402283,-9,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,21.15,37.59,1.666666666666667,1,1,0,1,0,8,2,0,377.33334,-183798.36,0,0,0,1980.9088 -4490,5547,9946,-9,9945,9947,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6369,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,2,0,377.33334,-183798.36,0,0,0,1980.9088 -4490,5547,9947,9945,-9,-9,1,1,44,0,1,0,3,3,-9,0,2,6.6554384,6.862556,0,1,8,69.191162,-9,-9,-9,2019,23,8,26,0,1,8,0,4.0692248,4.0692248,0,0,0,0,0,1,1,0,0,0,21.15,37.59,23.86,20.5,5,4,5,0,1,7,8,2,0,377.33334,-183798.36,0,0,0,1980.9088 -4491,5548,9948,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-873.55408,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5528374,0,64.55,25.73,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,969,120032.76,0,117184.87,0,876.25476 -4492,5549,9949,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,5.623569,5.5165801,0,0,-1015.6492,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,2.4036703,0,23.541431,0,1,1,0,0,5.6606736,55,45,-9,-9,8,1,1,0,0,0,4,2,0,645,329631.16,54319.152,96776,0,1614.7051 -4493,5550,9950,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.0949459,8.4438181,0,0,0,-999.34058,0,1,2,2019,6,0,42,44,1,0,0,9.9735756,9.9735756,0,0,0,0,0,0,0,0,0,0,59.83,48.07,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,822,-225958.05,55841.152,201470.53,115873.65,1838.4896 -4494,5551,9951,-9,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.7129326,7.944315,0,0,0,-960.99646,0,3,-9,2019,2,0,42,32,1,0,0,9.3935261,9.3935261,0,0,0,0,0,1,1,0,0,0,51.63,40.88,-9,-9,6.666666666666667,3,4,0,0,12,9,3,0,223.5,447187.94,82991.109,347395.53,122546.32,1547.16 -4494,5551,9952,-9,9951,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.13837,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,3,0,223.5,447187.94,82991.109,347395.53,122546.32,1547.16 -4494,5552,9953,-9,9951,-9,1,0,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-916.63464,-9,3,-9,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,3.333333333333333,3,4,0,0,1,9,2,0,852,68516,0,0,0,0 -4495,5553,9954,9955,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,51,-3,-23.373707,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.4736896,0,51,46,62.39,56.71,8,1,1,0,0,0,4,3,1,2352,671007.63,188528.14,161712.27,0,2502.7588 -4495,5553,9955,9954,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,7.5947008,7.6853213,51,3,51.531582,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4585719,7.6722922,62.39,56.71,51,46,10,1,1,0,0,0,4,3,1,2352,671007.63,188528.14,161712.27,0,2502.7588 -4496,5554,9956,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,5.7625222,5.5698609,0,0,-1069.0361,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1875486,5.3644118,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,89,534068.06,-31875.123,203068.28,0,799.02814 -4497,5555,9957,-9,9958,9961,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.2231,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 -4497,5555,9958,9961,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.9100084,8.0349512,0,10,-3,-52.711323,0,-9,-9,2019,13,3,21,21,1,3,0,14.348823,14.348823,0,0,0,0,0,1,1,0,0,0,42.95,61.24,54.2,57.49,8.333333333333334,1,1,0,1,11,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 -4497,5555,9959,-9,9958,9961,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.1366,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 -4497,5555,9960,-9,9958,9961,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.4998,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 -4497,5555,9961,9958,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.7213507,9.2429476,0,10,3,35.690872,0,2,2,2019,12,2,35,55,1,2,0,19.514406,19.514406,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.95,61.24,6.666666666666667,1,1,0,1,11,2,4,0,504.20001,175219.69,55835.816,200770.02,162815.13,4328.8247 -4498,5556,9962,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1047.3461,0,3,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,16.08,39.11,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,91,210926.44,0,0,0,448.52142 -4498,5557,9963,-9,9962,-9,1,1,21,0,0,0,2,2,-9,0,4,7.527082,7.5307026,0,0,0,-1000.6324,0,3,-9,2019,11,0,40,25,1,2,1,5.4822121,5.4822121,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,0,0,1,2,3,0,152,112387.36,99837.375,0,0,1137.7511 -4499,5558,9964,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.1284389,7.5838556,0,0,-1008.0428,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.0979095,7.3664212,52,54.51,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,876,751082.56,480225.91,298995.72,0,1289.4279 -4500,5559,9965,9966,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,42,1,-34.59293,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.9071245,0,58.15,52.91,54,46,8.333333333333334,1,1,0,0,6,9,3,1,618.5,894474.69,447132.19,575198.5,0,5085.5166 -4500,5559,9966,9965,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.2009335,8.1673641,6,-1,11.212833,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9153645,7.8629694,54,46,58.15,52.91,7,1,1,0,0,0,9,3,1,618.5,894474.69,447132.19,575198.5,0,5085.5166 -4501,5560,9967,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.8523417,9.012784,0,0,0,-1045.4852,0,2,2,2019,12,3,53,65,1,3,0,14.333567,14.333567,0,0,0,0,0,1,1,0,0,0,41.47,42.02,-9,-9,6.666666666666667,1,1,0,0,9,8,5,0,2642,166145.38,470.6481,0,0,2032.5571 -4502,5561,9968,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.166965,8.0403185,7.4783678,0,0,-1068.1312,0,3,3,2019,6,0,14,20,1,0,0,11.736408,11.736408,0,0,0,0,0,1,1,0,6.9835229,7.2987709,62.25,48.33,-9,-9,8.333333333333334,1,1,0,0,10,11,4,1,2482,774410.69,-1373.6697,0,0,2542.5444 -4503,5562,9969,9970,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.7324314,9.7343512,0,3,-2,-99.615013,0,-9,-9,2019,11,0,40,40,1,2,0,45.719059,45.719059,0,0,0,0,0,0,0,0,6.1154785,0,49,56,57.16,56.15,7,2,3,0,0,1,8,5,1,900,483861.66,134196.09,524327.75,389998.06,11081.406 -4503,5562,9970,9969,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.4125319,9.1545172,0,3,2,26.870232,0,3,3,2019,6,0,50,45,1,0,0,27.792604,27.792604,0,0,0,0,0,0,0,0,7.4933453,0,57.16,56.15,49,56,8.333333333333334,2,3,0,0,9,8,5,1,900,483861.66,134196.09,524327.75,389998.06,11081.406 -4504,5563,9971,-9,9973,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.17297,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,0,616.66669,66884.484,-18367.979,0,0,1473.5553 -4504,5563,9972,-9,9973,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.4188,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,2,0,616.66669,66884.484,-18367.979,0,0,1473.5553 -4504,5563,9973,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,6.4745483,6.5204778,0,0,0,-781.88129,0,3,3,2019,4,0,16,16,1,0,0,5.4811029,5.4811029,0,0,0,0,0,1,1,0,0,0,65.06,41.58,-9,-9,1.666666666666667,2,3,0,0,11,4,2,0,616.66669,66884.484,-18367.979,0,0,1473.5553 -4504,5564,9974,-9,9973,-9,1,1,20,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1032.3416,1,3,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,3.0423727,0,43.88,30.48,-9,-9,0,2,3,0,0,0,4,1,0,1018,0,0,0,0,-122.61805 -4504,5565,9975,-9,9973,-9,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-926.58728,-9,3,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.46,41.85,-9,-9,6.666666666666667,2,3,0,0,0,4,1,0,2130,0,0,0,0,0 -4505,5566,9976,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,9.5664806,9.2834425,0,0,0,-979.01666,0,2,2,2019,7,0,49,53,1,0,0,36.494812,36.494812,0,0,0,0,0,0,0,0,2.5825999,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,659,-87378.57,38712.449,228154.09,119748.33,4252.8062 -4506,5567,9977,9978,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0459042,7.9646025,0,9,-4,46.189495,0,-9,-9,2019,6,0,37,38,1,0,0,10.749252,10.749252,0,0,0,0,0,0,0,0,0,0,58.75,43.04,52.99,40.75,8.333333333333334,1,1,0,0,9,7,3,1,963,416931.81,131568.55,0,0,-1454.4612 -4506,5567,9978,9977,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,37,4,11.116425,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,40.75,58.75,43.04,5,1,1,0,0,11,7,3,1,963,416931.81,131568.55,0,0,-1454.4612 -4506,5568,9979,-9,9977,9978,1,1,24,0,0,0,1,1,-9,0,5,8.1906538,8.1497803,0,0,0,-983.76123,-9,2,3,2019,4,0,40,0,1,0,1,10.290593,10.290593,0,0,0,0,0,0,0,0,4.2203803,0,59.43,58.05,-9,-9,10,1,1,0,0,1,7,4,1,1407,133976.38,0,0,0,1156.1204 -4507,5569,9980,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-943.8316,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.15,33.58,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,587,229824.69,101331.59,0,0,1689.059 -4507,5570,9981,-9,9980,-9,1,0,22,0,0,0,1,1,-9,0,4,8.1312637,8.2677546,0,0,0,-790.85095,0,2,-9,2019,16,4,46,54,1,4,1,7.1616921,7.1616921,0,0,0,0,0,1,1,0,0,0,28.41,64.05,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,426,-184097.08,-8833.707,0,0,2339.8962 -4508,5571,9982,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.4882374,6.7780452,0,0,-1012.5504,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,5.8468733,0,0,1,1,0,1.4180399,6.5592456,53.7,19.12,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,886,183623.72,62404.129,0,0,756.97546 -4509,5572,9983,-9,-9,-9,1,0,99,0,0,0,3,3,-9,0,3,0,0,0,0,0,-965.58203,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,3,4,0,0,0,8,1,0,827,658236.81,0,541409.38,0,1061.4813 -4510,5573,9984,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-969.43939,0,3,3,2019,21,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,1.0251398,0,35.2,48.71,-9,-9,3.333333333333333,1,1,0,0,7,7,2,1,301,344199.5,-149280.55,0,0,310.26276 -4511,5574,9985,9986,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,7,-5,75.725281,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0494833,0,52.4,55.58,59.53,56.44,8.333333333333334,1,1,0,0,7,1,4,1,507,1186900.8,596387.38,348584.03,0,3228.4404 -4511,5574,9986,9985,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,8.3513956,8.5379467,5.6598272,7,5,88.126282,0,3,3,2019,7,0,40,32,1,0,0,11.054734,11.054734,0,0,0,0,0,1,1,0,5.1950951,5.4724116,59.53,56.44,52.4,55.58,8.333333333333334,1,1,0,0,8,1,4,1,507,1186900.8,596387.38,348584.03,0,3228.4404 -4511,5575,9987,-9,9985,9986,1,1,30,0,0,0,1,1,-9,0,4,6.1682563,6.2563777,0,0,0,-1106.0712,0,2,2,2019,7,0,40,35,1,0,0,1.5219471,1.5219471,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,1,2,1,837,129360.77,0,0,0,1065.7417 -4511,5576,9988,9989,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,1,-2,0,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,25.69,50.52,7,4,1,0,0,0,1,2,1,490,0,0,0,0,821.45917 -4511,5576,9989,9988,9985,9986,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,1,2,0,1,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.69,50.52,46,58,6.666666666666667,1,1,0,0,0,1,2,1,490,0,0,0,0,821.45917 -4512,5577,9990,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,6.0761929,6.0982928,0,0,0,-1113.7911,-9,2,2,2019,5,0,11,0,1,0,1,3.408299,3.408299,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,3,4,0,0,0,8,2,0,597,-113091.15,0,0,0,510.87482 -4513,5578,9991,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.53632,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.71,53.93,-9,-9,8.333333333333334,1,1,0,0,8,7,1,1,964,-199179.11,0,0,0,739.55914 -4514,5579,9992,9993,-9,-9,1,0,55,0,0,0,1,1,-9,1,1,8.6754465,8.725399,0,9,-2,-59.854713,0,3,2,2019,34,12,38,38,1,12,0,17.518604,17.518604,0,0,0,0,0,1,1,0,0,0,34.3,29.57,54.79,55.86,3.333333333333333,1,1,0,0,9,13,5,1,309,1320086,1080133.4,222251.91,0,4062.3584 -4514,5579,9993,9992,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.2112265,8.1588192,0,9,2,35.19978,0,2,2,2019,7,0,37,37,1,0,0,10.012194,10.012194,0,0,0,0,0,1,1,0,0,0,54.79,55.86,34.3,29.57,8.333333333333334,1,1,0,0,9,13,5,1,309,1320086,1080133.4,222251.91,0,4062.3584 -4514,5580,9994,-9,9992,9993,1,1,21,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1056.8959,0,1,1,2019,12,0,0,40,3,0,1,0,0,0,0,0,0,0,1,1,0,2.6205986,0,46.32,53.44,-9,-9,3.333333333333333,1,1,1,0,3,13,1,1,430,-58863.469,0,0,0,22.64172 -4514,5581,9995,-9,9992,9993,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1039.6729,-9,1,1,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,53.54,41.65,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,224,33592.711,0,0,0,0 -4515,5582,9996,9997,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,7,-1,-101.11909,0,-9,-9,2019,6,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,1,0,9,4,4,1,1396.5,664572.38,504757.06,0,0,2898.0586 -4515,5582,9997,9996,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.4309635,8.7333546,0,38,1,-73.196564,0,3,3,2019,6,0,40,40,1,0,0,12.633836,12.633836,0,0,0,0,7,0,0,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,8,4,4,1,1396.5,664572.38,504757.06,0,0,2898.0586 -4516,5583,9998,10000,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,7.988718,7.9445558,0,11,-4,-71.302521,0,3,3,2019,4,0,25,25,1,0,0,18.224506,18.224506,0,0,0,0,0,1,1,0,7.8181949,0,54.37,54.8,37.51,56.99,8.333333333333334,1,1,0,0,13,7,4,1,546.33331,428632.09,67796.461,450536.44,285734.38,4161.1665 -4516,5583,9999,-9,10000,9998,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.4752,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,546.33331,428632.09,67796.461,450536.44,285734.38,4161.1665 -4516,5583,10000,9998,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.4033957,8.148613,0,11,4,55.732178,0,2,2,2019,14,4,33,25,1,4,0,13.50368,13.50368,0,0,0,0,0,1,1,0,0,0,37.51,56.99,54.37,54.8,3.333333333333333,1,1,0,1,11,7,4,1,546.33331,428632.09,67796.461,450536.44,285734.38,4161.1665 -4517,5584,10001,10002,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,8.2970915,8.4618073,0,6,2,37.427517,0,1,1,2019,6,0,40,39,1,0,0,11.797961,11.797961,0,0,0,0,0,0,0,0,0,0,54.96,53.17,40.47,55.65,1.666666666666667,1,1,0,0,10,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 -4517,5584,10002,10001,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.7517986,8.6166782,0,6,-2,31.137575,0,-9,-9,2019,11,1,42,42,1,1,0,12.29471,12.29471,0,0,0,0,0,0,0,0,0,0,40.47,55.65,54.96,53.17,8.333333333333334,1,1,0,0,8,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 -4517,5584,10003,-9,10002,10001,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-832.44684,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 -4517,5584,10004,-9,10002,10001,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.098,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,586.75,269546.41,14166.564,171537.95,137628.72,3420.3921 -4518,5585,10005,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3629112,8.3212509,0,0,0,-987.59924,-9,1,2,2019,8,1,37,0,1,1,0,17.54026,17.54026,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,1028,-97626.063,214114.94,206277.03,53667.645,1507.6779 -4519,5586,10006,10007,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,17,-10,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,50,46,7,1,1,0,0,0,2,1,0,1451,297664.91,0,243035.73,0,1890.3583 -4519,5586,10007,10006,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,17,10,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,50,46,51,48,7,1,1,0,0,0,2,1,0,1451,297664.91,0,243035.73,0,1890.3583 -4520,5587,10008,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.5375967,8.5484896,0,0,0,-1015.8295,0,2,2,2019,20,8,37,37,1,8,0,19.685734,19.685734,0,0,0,0,0,1,1,0,3.0301266,0,45.37,54.86,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,1102,-325275.56,120482.16,119939.8,172814.48,1657.2454 -4521,5588,10009,-9,10011,10010,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-908.80334,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,11,5,1,912.66669,467212.88,79292.133,473477,156212.41,5854.6914 -4521,5588,10010,10011,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.7939558,8.9448318,0,17,0,110.27435,-9,-9,-9,2019,8,0,38,0,1,0,0,27.475971,27.475971,0,0,0,0,0,1,1,0,3.5873048,0,46.39,60.99,60.02,56.42,8.333333333333334,1,1,0,0,11,11,5,1,912.66669,467212.88,79292.133,473477,156212.41,5854.6914 -4521,5588,10011,10010,-9,-9,1,0,40,0,1,0,1,1,-9,0,5,8.8335304,8.7309523,0,17,0,84.454124,0,2,2,2019,8,0,58,57,1,0,0,13.027784,13.027784,0,0,0,0,0,1,1,0,3.4318163,0,60.02,56.42,46.39,60.99,8.333333333333334,2,3,0,0,9,11,5,1,912.66669,467212.88,79292.133,473477,156212.41,5854.6914 -4522,5589,10012,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9334211,8.0540314,0,0,0,-1011.9076,0,1,1,2019,8,0,40,30,1,0,0,9.2524872,9.2524872,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,13,4,1,384,110709.55,-8501.7598,0,0,1381.3867 -4523,5590,10013,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,9.6532297,9.6551476,0,0,0,-868.3797,0,-9,-9,2019,10,2,55,50,1,2,0,37.771534,37.771534,0,0,0,0,0,1,1,0,4.7102304,0,40.68,50.34,-9,-9,8.333333333333334,4,5,0,0,7,8,5,1,911,140067.23,-40296.492,0,0,3998.2153 -4524,5591,10014,10015,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.5259719,5.774786,49,3,-30.243567,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1325257,5.6850104,51,46,59.46,46.99,8.333333333333334,1,1,0,0,0,12,2,1,961.5,1227530.4,405611.94,404826.31,0,1936.1793 -4524,5591,10015,10014,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.0349255,7.20333,49,-3,22.988033,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.289588,59.46,46.99,51,46,8.333333333333334,1,1,0,0,0,12,2,1,961.5,1227530.4,405611.94,404826.31,0,1936.1793 -4525,5592,10016,10018,-9,-9,1,0,44,0,4,0,3,3,-9,0,3,0,0,0,5,1,160.0871,0,-9,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.03,39.52,38,39.7,1.666666666666667,2,3,0,1,0,8,2,0,793,0,0,0,0,328.31226 -4525,5592,10017,-9,10016,10018,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-985.28009,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,793,0,0,0,0,328.31226 -4525,5592,10018,10016,-9,-9,1,1,43,0,4,0,2,2,-9,0,5,2.0768502,1.9322366,0,5,-1,-22.810966,0,3,3,2019,19,6,11,30,1,6,0,.079162546,.079162546,0,0,0,0,7,1,1,0,0,0,38,39.7,31.03,39.52,0,2,3,0,1,9,8,2,0,793,0,0,0,0,328.31226 -4526,5593,10019,10020,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0700712,8.1434574,10,2,139.2413,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0382471,8.3492336,50.77,50.99,38.01,44.99,10,1,1,0,0,5,7,3,1,842.5,1738101,518422.44,573337,0,4470.6582 -4526,5593,10020,10019,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-57.831932,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,16.735704,0,0,1,1,0,3.472944,0,38.01,44.99,50.77,50.99,6.666666666666667,1,1,0,0,0,7,3,1,842.5,1738101,518422.44,573337,0,4470.6582 -4527,5594,10021,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.4514723,7.4534831,0,0,-1076.9308,0,-9,-9,2019,6,0,0,16,4,0,0,0,0,0,0,0,0,2,1,1,0,1.7631117,7.7004008,58.15,52.91,-9,-9,10,1,1,0,0,9,9,3,1,246,570244.44,524794.25,271344.59,0,1468.1893 -4528,5595,10022,10023,-9,-9,1,1,33,0,0,0,2,2,-9,1,3,0,0,0,2,-5,0,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,33.21,55.18,19.24,40.14,1.666666666666667,1,1,1,1,0,4,1,0,494.5,81677.906,-11302.276,0,0,2175.7566 -4528,5595,10023,10022,-9,-9,1,0,38,0,0,0,2,2,-9,1,1,0,0,0,2,5,0,0,2,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,19.24,40.14,33.21,55.18,0,1,1,1,1,4,4,1,0,494.5,81677.906,-11302.276,0,0,2175.7566 -4528,5596,10024,-9,10023,10022,1,1,20,0,0,0,2,2,-9,0,1,0,0,0,0,0,-980.12769,0,2,2,2019,12,3,0,40,3,3,1,0,0,0,0,0,0,0,1,0,1,0,0,44.38,47.52,-9,-9,0,1,1,0,0,2,4,1,0,638,0,0,0,0,-3456.9709 -4529,5597,10025,10026,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.539135,7.9656725,0,25,-7,-4.6812921,0,2,2,2019,8,0,20,20,1,0,0,9.778223,9.778223,0,0,0,0,0,1,1,0,0,0,58.23,43.46,57.06,57.76,8.333333333333334,1,1,0,0,10,12,4,1,1743,568483.75,794790.88,0,0,3833.5127 -4529,5597,10026,10025,-9,-9,1,1,55,0,1,0,3,3,-9,0,5,8.7413597,8.8590355,0,25,7,-80.014259,0,2,2,2019,6,0,84,84,1,0,0,8.9864321,8.9864321,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.23,43.46,10,1,1,0,0,10,12,4,1,1743,568483.75,794790.88,0,0,3833.5127 -4530,5598,10027,10028,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,9.1180449,9.499588,0,30,-1,220.10263,0,3,2,2019,11,2,53,12,1,2,0,21.136089,21.136089,0,0,0,0,2,0,0,0,0,0,53.33,30.11,46.44,59.62,6.666666666666667,2,3,0,0,10,8,5,1,1068.5,926043.44,583185.44,660432.13,365452.94,6869.3135 -4530,5598,10028,10027,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.4046345,9.2204113,0,30,1,-29.926844,0,1,1,2019,10,0,42,42,1,0,0,21.122684,21.122684,0,0,0,0,0,0,0,0,0,0,46.44,59.62,53.33,30.11,8.333333333333334,1,1,0,0,10,8,5,1,1068.5,926043.44,583185.44,660432.13,365452.94,6869.3135 -4530,5599,10029,-9,10027,10028,1,1,20,0,1,0,2,2,-9,0,4,6.4116831,6.2469969,0,0,0,-1036.3279,0,1,1,2019,18,6,9,17,1,6,1,6.6465483,6.6465483,0,0,0,0,0,0,0,0,0,0,33.26,61.9,-9,-9,5,4,2,0,0,2,8,2,1,540,-12309.731,0,0,0,512.29504 -4531,5600,10030,-9,10031,-9,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-970.24219,-9,1,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.92678022,0,47.91,57.48,-9,-9,8.333333333333334,1,1,0,0,0,9,4,0,324,518863.38,133139.73,221674.25,48387.375,1574.8667 -4531,5600,10031,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.137496,8.0743275,0,0,0,-992.75336,-9,1,2,2019,12,0,39,0,1,0,0,7.4558048,7.4558048,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,6.666666666666667,1,1,0,1,8,9,4,0,324,518863.38,133139.73,221674.25,48387.375,1574.8667 -4532,5601,10032,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.0460835,8.3284664,0,0,0,-1013.7009,0,1,2,2019,9,2,42,0,1,2,0,10.948942,10.948942,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,1629,315038.06,55480.977,0,0,1582.499 -4533,5602,10033,10034,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,63,-4,10.2656,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.37,35.69,54,45,8.333333333333334,1,1,0,0,0,13,2,0,1201.5,303581.75,62766.734,69433.977,0,2199.5203 -4533,5602,10034,10033,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.9634032,6.6621971,63,4,174.01544,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8180408,54,45,49.37,35.69,8,1,1,0,0,0,13,2,0,1201.5,303581.75,62766.734,69433.977,0,2199.5203 -4534,5603,10035,10037,-9,-9,1,0,39,0,1,0,1,1,-9,1,2,0,0,0,7,-7,111.01749,0,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41,41,52,56,6.666666666666667,4,5,0,0,0,6,5,1,453,121167.27,92982.922,0,0,4283.271 -4534,5603,10036,-9,10035,10037,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.0939,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,453,121167.27,92982.922,0,0,4283.271 -4534,5603,10037,10035,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,9.2479105,9.1332579,0,7,7,-74.560349,0,-9,-9,2019,9,0,50,42,1,1,0,24.199253,24.199253,0,0,0,0,0,1,1,0,0,0,52,56,41,41,8,4,2,0,0,1,6,5,1,453,121167.27,92982.922,0,0,4283.271 -4535,5604,10038,-9,10043,10041,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-906.67816,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 -4535,5604,10039,-9,10043,10041,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-860.47003,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 -4535,5604,10040,-9,10043,10041,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1069.7198,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 -4535,5604,10041,10043,-9,-9,1,1,45,0,4,0,2,2,-9,0,5,7.8333588,8.0953531,0,1,16,-78.139236,0,2,2,2019,4,0,45,52,1,0,0,5.8512893,5.8512893,0,0,0,0,0,1,1,0,0,0,59.43,58.05,46.44,59.62,8.333333333333334,1,1,0,0,5,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 -4535,5604,10042,-9,10043,10041,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1127.9683,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 -4535,5604,10043,10041,-9,-9,1,0,29,0,4,0,2,2,-9,0,4,0,0,0,1,-16,8.8239546,0,-9,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,59.43,58.05,6.666666666666667,1,1,1,1,0,11,2,0,814.33331,735128.06,531855,186958.83,118213.34,3062.5295 -4536,5605,10044,-9,10045,10046,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.5767,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,1490,418705.47,106302.22,453202.53,0,1145.3977 -4536,5605,10045,10046,-9,-9,1,0,50,0,1,0,3,3,-9,0,4,0,0,0,35,-6,-104.30842,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.1751878,0,51,54,54,54,8,2,3,0,0,0,8,2,1,1490,418705.47,106302.22,453202.53,0,1145.3977 -4536,5605,10046,10045,-9,-9,1,1,56,0,1,0,3,3,-9,0,4,7.2955294,7.1276536,0,35,6,58.481449,0,3,3,2019,9,0,24,24,1,0,0,6.5091896,6.5091896,0,0,0,0,0,1,1,0,0,0,54,54,51,54,8,2,3,0,0,9,8,2,1,1490,418705.47,106302.22,453202.53,0,1145.3977 -4536,5606,10047,-9,10045,10046,1,0,24,0,1,0,2,2,-9,0,4,8.7287674,8.6943684,0,0,0,-1020.2697,0,3,3,2019,13,1,52,48,1,1,1,9.8334932,9.8334932,0,0,0,0,0,1,1,0,0,0,46.5,58.39,-9,-9,10,2,3,0,0,6,8,5,1,566,139808.78,0,0,0,2234.6348 -4536,5607,10048,-9,10045,10046,1,0,29,0,1,0,1,1,-9,0,5,7.5275593,7.6556787,0,0,0,-1023.9525,0,3,3,2019,12,4,22,22,1,4,1,11.707544,11.707544,0,0,0,0,0,1,1,0,0,0,30.94,57.16,-9,-9,6.666666666666667,2,3,0,0,10,8,3,1,946,374952.03,51049.301,0,0,1404.3741 -4537,5608,10049,-9,10051,10050,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.86523,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,818.33331,-51541.082,43886.344,0,0,3198.9622 -4537,5608,10050,10051,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.2380905,8.0935612,0,6,1,6.3473473,0,2,2,2019,15,3,45,52,1,3,0,7.7648196,7.7648196,0,0,0,0,0,1,1,0,0,0,48.75,47.6,35.9,60.41,3.333333333333333,1,1,0,0,7,6,4,1,818.33331,-51541.082,43886.344,0,0,3198.9622 -4537,5608,10051,10050,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.4362526,8.6319199,0,6,-1,-90.518257,0,-9,-9,2019,9,0,50,55,1,0,0,12.879137,12.879137,0,0,0,0,0,1,1,0,1.7709028,0,35.9,60.41,48.75,47.6,8.333333333333334,1,1,0,0,7,6,4,1,818.33331,-51541.082,43886.344,0,0,3198.9622 -4538,5609,10052,-9,-9,-9,1,0,24,0,0,0,2,2,1,0,4,6.657227,6.598846,0,0,0,-1120.6589,-9,2,1,2019,11,0,15,0,1,2,0,8.0409136,8.0409136,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,3,4,0,0,5,8,2,0,391,-3043.6406,0,0,0,210.07527 -4539,5610,10053,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.6231484,7.5387387,4.9190903,0,0,-948.98102,0,3,3,2019,6,0,32,32,1,0,0,5.8945136,5.8945136,0,0,0,0,0,1,1,0,5.1054792,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,0,1076,381184.28,115368.01,0,0,1241.7974 -4539,5611,10054,-9,10053,-9,1,1,22,0,0,0,2,2,-9,0,4,6.9050283,6.8900723,0,0,0,-1004.3854,0,2,-9,2019,10,0,8,40,1,1,1,13.529064,13.529064,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,2,0,359,0,0,0,0,833.06158 -4540,5612,10055,10058,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,7.6893907,7.7808442,0,14,2,-62.836536,0,2,2,2019,15,3,12,12,1,3,0,20.765423,20.765423,0,0,0,0,0,1,1,0,0,0,36.93,43.04,46.23,49.17,5,1,1,0,0,11,5,5,1,750.5,39272.719,0,0,0,3994.1587 -4540,5612,10056,-9,10058,10055,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.20715,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,750.5,39272.719,0,0,0,3994.1587 -4540,5612,10057,-9,10058,10055,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.586,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,750.5,39272.719,0,0,0,3994.1587 -4540,5612,10058,10055,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.7690096,9.0823441,0,15,-2,-63.059509,0,2,2,2019,9,0,51,50,1,0,0,16.211746,16.211746,0,0,0,0,0,1,1,0,0,0,46.23,49.17,36.93,43.04,3.333333333333333,1,1,0,0,11,5,5,1,750.5,39272.719,0,0,0,3994.1587 -4541,5613,10059,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,5.6253219,5.7302341,0,0,-1058.2628,0,2,2,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,27,1,1,0,4.8154473,5.5710688,42.9,21.15,-9,-9,0,1,1,0,0,8,9,2,1,912,443442.97,94670.141,271776.5,0,1371.9641 -4542,5614,10060,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,6.2131772,5.9651728,0,0,-1037.4937,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,1.5502235,0,19.253716,0,1,1,0,2.7506742,6.3700542,38.8,29.83,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,805,73052.547,26381.205,0,0,2132.6062 -4543,5615,10061,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.6286283,6.4655461,0,0,-969.37689,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,12.570634,17.378599,141.09476,0,1,1,0,0,6.4004364,33.32,27.71,-9,-9,8.333333333333334,3,4,0,1,0,6,2,1,1048,320880,36538.566,178511.55,0,915.17255 -4544,5616,10062,10063,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-108.54984,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.3827806,0,52,46,57.33,53.46,7,1,1,0,0,0,7,2,1,1644,430979.59,111700.64,180974.34,0,3117.9126 -4544,5616,10063,10062,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.2755013,6.6842723,50,1,23.31625,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9713359,6.6153941,57.33,53.46,52,46,8.333333333333334,1,1,0,0,0,7,2,1,1644,430979.59,111700.64,180974.34,0,3117.9126 -4545,5617,10064,-9,10066,10065,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.54407,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,936,520519.59,135739.16,467404.38,248149.94,3692.2061 -4545,5617,10065,10066,-9,-9,1,1,40,1,1,0,1,1,-9,0,3,8.4225397,8.5805788,0,6,2,-20.088718,0,-9,-9,2019,10,0,37,37,1,0,0,17.082844,17.082844,0,0,0,0,0,1,1,0,0,0,43.9,57.01,57.73,54.53,5,1,1,0,0,10,9,5,1,936,520519.59,135739.16,467404.38,248149.94,3692.2061 -4545,5617,10066,10065,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.8135166,8.3182001,0,6,-2,7.4225492,0,2,2,2019,6,0,30,22,1,0,0,19.449751,19.449751,0,0,0,0,2,1,1,0,0,0,57.73,54.53,43.9,57.01,8.333333333333334,1,1,0,0,8,9,5,1,936,520519.59,135739.16,467404.38,248149.94,3692.2061 -4546,5618,10067,-9,10068,10071,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1152.8816,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 -4546,5618,10068,10071,-9,-9,1,0,48,0,3,0,3,3,-9,0,3,7.4721761,7.6043515,0,31,-7,-199.60695,0,3,2,2019,11,0,16,16,1,0,0,10.71436,10.71436,0,0,0,0,0,1,1,0,1.7082992,0,44.79,50.84,51.83,57.2,6.666666666666667,1,1,0,0,8,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 -4546,5618,10069,-9,10068,10071,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1101.2662,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.8305893,0,47.88,56.4,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 -4546,5618,10070,-9,10068,10071,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-815.48022,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 -4546,5618,10071,10068,-9,-9,1,1,55,0,3,0,2,2,-9,0,4,8.8252201,8.7472172,0,20,7,-70.86644,0,-9,3,2019,7,0,55,55,1,0,0,14.919804,14.919804,0,0,0,0,0,1,1,0,1.6141034,0,51.83,57.2,44.79,50.84,8.333333333333334,1,1,0,0,8,6,4,1,700.79999,907749.56,867847.31,238887.61,78669.867,3810.5581 -4547,5619,10072,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-947.62457,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,30.85,17.26,-9,-9,0,1,1,0,1,0,9,2,0,332,300329.94,-45548.445,279324.06,140763.41,313.89322 -4548,5620,10073,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,0,0,-973.5368,0,2,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,6.8500891,0,60.13,49.27,-9,-9,10,1,1,0,0,0,12,1,1,393,-44877.824,0,298263.63,0,142.56775 -4549,5621,10074,10075,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.1140985,7.6819148,0,25,2,-117.45181,0,2,1,2019,6,0,40,40,1,0,0,11.684826,11.684826,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.15,31.45,6.666666666666667,1,1,0,0,11,9,5,1,765,1079300.4,725468.81,379339.16,0,3423.2393 -4549,5621,10075,10074,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,8.4620161,8.3286743,0,25,-2,-24.916691,0,2,2,2019,10,0,37,37,1,0,0,15.114732,15.114732,0,0,0,0,0,1,1,0,0,0,47.15,31.45,54.2,57.49,6.666666666666667,1,1,0,0,11,9,5,1,765,1079300.4,725468.81,379339.16,0,3423.2393 -4549,5622,10076,-9,10075,10074,1,1,19,0,0,0,2,2,-9,0,4,7.7663665,7.7209697,0,0,0,-925.04486,0,2,2,2019,12,1,43,40,1,1,1,6.5974383,6.5974383,0,0,0,0,0,1,1,0,2.3543758,0,47.68,61.82,-9,-9,5,1,1,0,0,2,9,4,1,607,178843.58,77767.086,0,0,1342.0164 -4550,5623,10077,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,8.2378092,8.2885151,0,0,-1062.5554,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1512656,8.2162781,39,30.89,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,1366,356822.69,80163.414,187961.2,0,2189.1907 -4551,5624,10078,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.2564483,7.3103886,0,0,-1026.2881,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0002203,54.88,24.61,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,938,759386.31,162711.83,186093.59,0,1190.4188 -4552,5625,10079,-9,10083,10084,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.8302,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 -4552,5625,10080,-9,10083,10084,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.53235,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 -4552,5625,10081,-9,10083,10084,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-940.03857,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 -4552,5625,10082,-9,10083,10084,1,1,17,0,3,1,2,0,0,0,2,0,0,0,0,0,-1059.2837,-9,2,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.32,56.73,-9,-9,5,1,1,0,0,0,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 -4552,5625,10083,10084,-9,-9,1,0,32,0,3,0,2,2,-9,1,3,8.1577873,8.1828251,0,8,-13,7.0025482,0,1,1,2019,21,9,44,44,1,9,0,8.7668962,8.7668962,0,0,0,0,0,1,1,0,0,0,35.02,57.09,48.87,58.55,8.333333333333334,1,1,0,1,10,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 -4552,5625,10084,10083,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,0,0,0,8,13,43.131695,0,2,2,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,35.02,57.09,6.666666666666667,1,1,1,1,2,9,2,1,478.5,687481.81,50989.898,498921.31,273746.81,3481.21 -4553,5626,10085,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,7.1459975,7.1338382,0,0,0,-961.51996,0,3,2,2019,19,7,20,20,1,7,0,7.9104023,7.9104023,0,0,0,0,0,0,0,0,0,0,59.64,25.38,-9,-9,1.666666666666667,1,1,0,0,9,4,3,1,471,-96550.695,499.50525,215651.25,0,593.2301 -4553,5627,10086,-9,10085,-9,1,0,25,0,0,0,2,2,-9,0,2,7.3920913,7.4003916,0,0,0,-1034.3986,0,3,-9,2019,11,1,25,0,1,1,1,10.248939,10.248939,0,0,0,0,0,0,0,0,0,0,25.5,59.31,-9,-9,3.333333333333333,1,1,0,0,5,4,3,1,275,-329602.16,0,0,0,740.10553 -4554,5628,10087,10088,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.3300753,7.9499469,8,4,71.233604,0,-9,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,8.0508776,37.41,41.3,45.99,43.85,3.333333333333333,1,1,0,0,4,9,4,1,313.5,1249850.8,547021.13,440431.44,0,2384.0425 -4554,5628,10088,10087,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4575238,7.7922978,0,8,-4,-157.06061,0,3,-9,2019,16,5,40,39,1,5,0,5.8662024,5.8662024,0,0,0,0,2,0,0,0,0,0,45.99,43.85,37.41,41.3,6.666666666666667,1,1,0,0,12,9,4,1,313.5,1249850.8,547021.13,440431.44,0,2384.0425 -4555,5629,10089,10090,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.6113753,7.7039933,9,2,52.303413,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5052075,7.8266883,57.51,31.85,43.6,51.61,5,1,1,0,0,6,2,4,1,1114,2120869.8,1103103.3,713169.25,0,3807.4004 -4555,5629,10090,10089,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.477232,7.7571273,46,-2,-6.2550917,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,.46319684,0,1,1,0,0,7.6883693,43.6,51.61,57.51,31.85,8.333333333333334,1,1,0,0,0,2,4,1,1114,2120869.8,1103103.3,713169.25,0,3807.4004 -4556,5630,10091,-9,10092,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.33044,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,853.5,237327.03,63038.883,0,0,1373.4285 -4556,5630,10092,-9,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,7.2922425,7.6161475,6.137856,0,0,-1063.2927,0,2,-9,2019,11,0,20,21,1,2,0,8.8465958,8.8465958,0,0,0,0,0,1,1,0,5.8969474,0,48,49,-9,-9,7,1,1,0,0,7,4,3,1,853.5,237327.03,63038.883,0,0,1373.4285 -4557,5631,10093,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4576797,8.2458057,0,0,0,-1098.0415,0,2,1,2019,12,1,25,30,1,1,0,23.84993,23.84993,0,0,0,0,27,0,0,0,0,0,39.65,56.19,-9,-9,5,1,1,0,0,8,2,4,1,1422,358800.81,259208.34,245453.36,25629.059,1172.699 -4557,5631,10094,-9,10093,-9,1,1,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1024.1647,-9,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,1,0,0,2,4,1,1422,358800.81,259208.34,245453.36,25629.059,1172.699 -4557,5632,10095,-9,10093,-9,1,1,23,0,0,0,3,3,-9,0,4,7.9254942,7.92344,0,0,0,-1057.7131,-9,2,-9,2019,6,0,40,0,1,0,1,7.6081343,7.6081343,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,910,-45066.246,0,0,0,1308.0389 -4558,5633,10096,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.2401419,8.4766626,0,0,0,-1002.1972,0,2,2,2019,6,0,38,37,1,0,0,12.266771,12.266771,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,8,12,4,0,514,-28151.439,14290.671,91281.57,57398.594,1415.9639 -4559,5634,10097,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.2030888,7.4082646,0,0,-1072.6554,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1417871,46,36,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,528,1041311.4,19021.596,276323.97,0,1747.9449 -4560,5635,10098,10099,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.7369204,8.8261585,0,10,1,-25.106474,0,2,2,2019,7,0,38,43,1,0,0,27.890434,27.890434,0,0,0,0,0,0,0,0,0,0,58.47,50.22,43.12,58.55,8.333333333333334,1,1,0,0,11,13,5,1,349,793942.88,477502.06,407848.56,39493.641,4735.7861 -4560,5635,10099,10098,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.7351513,8.6330347,0,10,-1,69.558533,0,-9,-9,2019,13,1,50,48,1,1,0,13.205364,13.205364,0,0,0,0,0,0,0,0,0,0,43.12,58.55,58.47,50.22,6.666666666666667,1,1,0,0,11,13,5,1,349,793942.88,477502.06,407848.56,39493.641,4735.7861 -4560,5636,10100,-9,10098,10099,1,0,23,0,0,0,2,2,-9,0,4,8.5105619,8.3972664,0,0,0,-949.88318,0,1,1,2019,8,0,38,41,1,0,1,12.151823,12.151823,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,2009,193469.27,18385.355,120254.52,86175.75,367.88055 -4561,5637,10101,10102,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1419849,8.2285376,0,35,-2,-81.84166,0,2,3,2019,8,0,37,37,1,0,0,12.644862,12.644862,0,0,0,0,2,0,0,0,5.6395884,0,57.76,48.98,56.1,49.93,8.333333333333334,1,1,0,0,11,10,5,1,676.5,9748544,740407,1039377.3,0,5071.6182 -4561,5637,10102,10101,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.1759138,9.2785435,0,35,2,50.829891,0,2,3,2019,10,2,37,40,1,2,0,34.625626,34.625626,0,0,0,0,2,0,0,0,4.4125953,0,56.1,49.93,57.76,48.98,5,1,1,0,0,11,10,5,1,676.5,9748544,740407,1039377.3,0,5071.6182 -4562,5638,10103,10104,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,7,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.44,33.6,10,1,1,0,0,0,13,1,1,720.5,-183701.38,-15587.903,154202.39,0,2613.9194 -4562,5638,10104,10103,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,0,0,7,1,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,1.4863015,0,0,1,1,0,0,0,45.44,33.6,60.12,54.8,8.333333333333334,1,1,0,0,0,13,1,1,720.5,-183701.38,-15587.903,154202.39,0,2613.9194 -4563,5639,10105,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.4685717,8.511447,0,0,0,-1088.2531,0,2,2,2019,20,9,30,29,1,9,0,24.224987,24.224987,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,1125.5,32008.742,131068.86,269760.28,64763.031,2206.2307 -4563,5639,10106,-9,10105,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.22009,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,1125.5,32008.742,131068.86,269760.28,64763.031,2206.2307 -4564,5640,10107,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1065.6991,-9,2,1,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.6130821,0,62.39,56.71,-9,-9,10,1,1,1,0,8,10,1,1,1160,-574347.75,0,0,0,-243.83199 -4565,5641,10108,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,8.1172466,8.0547562,0,0,-1087.7991,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,6.305809,7.9105506,48.05,28.94,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,1312,904691.19,313092.94,137540.5,0,2061.4238 -4566,5642,10109,-9,10110,10111,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.7803,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,364,-96809.656,0,0,0,2566.3389 -4566,5642,10110,10111,-9,-9,1,0,41,1,3,0,2,2,-9,0,3,5.4879174,5.6091833,0,7,-5,-51.294159,0,-9,-9,2019,19,7,4,0,1,7,0,9.4215813,9.4215813,0,0,0,0,0,1,1,0,0,0,42.86,27.38,45.22,38.4,5,1,1,0,0,1,13,3,1,364,-96809.656,0,0,0,2566.3389 -4566,5642,10111,10110,-9,-9,1,1,46,1,3,0,2,2,-9,0,3,8.5147991,8.3795309,0,24,5,121.93185,0,3,3,2019,10,0,44,46,1,0,0,11.549784,11.549784,0,0,0,0,0,1,1,0,0,0,45.22,38.4,42.86,27.38,8.333333333333334,1,1,0,0,7,13,3,1,364,-96809.656,0,0,0,2566.3389 -4566,5642,10112,-9,10110,10111,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.1417,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,364,-96809.656,0,0,0,2566.3389 -4566,5643,10113,-9,10114,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-919.07819,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,944.5,111402.94,58703.523,0,0,916.22473 -4566,5643,10114,-9,10110,10111,1,0,21,1,3,0,2,2,-9,0,3,7.5251145,7.1505408,0,0,0,-935.00092,0,2,2,2019,15,5,43,0,1,5,1,4.5729332,4.5729332,0,0,0,0,0,1,1,0,0,0,33.2,56.85,-9,-9,6.666666666666667,1,1,0,1,1,13,3,1,944.5,111402.94,58703.523,0,0,916.22473 -4567,5644,10115,10116,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.6765051,8.2422905,23,2,-2.1983416,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.027792,8.4478579,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,813.5,1404456.8,686988.13,813433.69,421343.13,4599.0034 -4567,5644,10116,10115,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5079112,7.7365551,24,-2,-119.7262,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5365114,7.7360811,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,813.5,1404456.8,686988.13,813433.69,421343.13,4599.0034 -4568,5645,10117,10118,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.6463428,6.4269814,0,8,-5,-7.6600957,0,3,3,2019,14,2,70,60,1,2,0,1.1047672,1.1047672,0,0,0,0,14.5,1,1,0,6.3896847,0,44.35,38.91,64.87,28.09,3.333333333333333,1,1,0,0,10,10,2,1,1836,194244.28,70103.922,0,0,2423.6584 -4568,5645,10118,10117,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.4287434,6.0581479,8,5,77.227623,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,21.545336,0,0,1,1,0,5.6246929,6.1925931,64.87,28.09,44.35,38.91,8.333333333333334,1,1,0,0,4,10,2,1,1836,194244.28,70103.922,0,0,2423.6584 -4569,5646,10119,10120,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.4685535,5.2411523,47,-2,-21.748247,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8875384,5.4146738,50.63,45.45,55.37,48.71,10,1,1,0,0,0,4,2,1,258,400443.13,228514.78,156195.42,0,1257.8096 -4569,5646,10120,10119,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6196375,7.6468182,47,2,30.762564,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0881262,7.2379241,55.37,48.71,50.63,45.45,10,1,1,0,0,0,4,2,1,258,400443.13,228514.78,156195.42,0,1257.8096 -4570,5647,10121,10122,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.0086207,7.079565,0,5,-2,24.283934,0,3,3,2019,10,0,84,84,1,0,0,1.874091,1.874091,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.13,58.64,8.333333333333334,1,1,0,0,8,11,3,1,439.33334,114763.52,41054.652,0,0,2636.4407 -4570,5647,10122,10121,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.3439045,8.2482748,0,5,2,10.560925,0,3,3,2019,6,0,42,37,1,0,0,9.0141439,9.0141439,0,0,0,0,0,1,1,0,0,0,46.13,58.64,51.83,57.2,8.333333333333334,1,1,0,0,8,11,3,1,439.33334,114763.52,41054.652,0,0,2636.4407 -4570,5647,10123,-9,10121,10122,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.1884,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,439.33334,114763.52,41054.652,0,0,2636.4407 -4570,5648,10124,-9,10121,10122,1,1,21,0,1,0,2,2,-9,0,4,7.4802365,7.2439394,0,0,0,-989.26843,0,2,2,2019,10,0,10,37,1,1,1,17.09115,17.09115,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,1878,0,0,0,0,832.6488 -4570,5649,10125,-9,10121,10122,1,0,19,0,1,0,2,2,-9,0,4,6.2369151,6.3199844,0,0,0,-1076.9602,0,2,2,2019,12,0,16,35,1,2,1,3.8462906,3.8462906,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,2,1,170,-134334.17,0,0,0,742.51471 -4571,5650,10126,10127,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.8344998,7.8293891,0,4,-1,-118.76181,0,-9,-9,2019,12,0,35,38,1,0,0,8.4837523,8.4837523,0,0,0,0,0,0,0,0,1.6801549,0,50.34,56.4,55.34,54.26,8.333333333333334,1,1,0,0,3,8,4,0,715,-67578.117,71674.25,0,0,2848.1145 -4571,5650,10127,10126,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4765654,8.4770031,0,4,1,122.38219,0,-9,-9,2019,14,3,45,45,1,3,0,12.686995,12.686995,0,0,0,0,0,0,0,0,0,0,55.34,54.26,50.34,56.4,8.333333333333334,1,1,0,0,4,8,4,0,715,-67578.117,71674.25,0,0,2848.1145 -4572,5651,10128,10129,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,33,-2,-85.843529,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,0,0,0,0,0,57.33,53.46,57.33,53.46,10,1,1,0,0,7,6,3,1,730.5,443538.25,205540.53,88748.969,62838.672,1552.5933 -4572,5651,10129,10128,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.1901741,8.3794947,33,2,-88.436905,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9653635,57.33,53.46,57.33,53.46,10,1,1,0,0,8,6,3,1,730.5,443538.25,205540.53,88748.969,62838.672,1552.5933 -4573,5652,10130,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.9782033,6.6082253,0,0,-1146.8912,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.3404444,0,0,1,1,0,4.5826583,6.8681483,72.28,27.29,-9,-9,10,1,1,0,0,0,10,2,1,1895,349906.19,0,215980.16,0,1231.5032 -4574,5653,10131,-9,10132,-9,1,1,53,0,0,0,2,2,-9,0,3,8.2657623,8.1149044,0,0,0,-887.14465,0,3,3,2019,11,0,35,8,1,1,0,12.286162,12.286162,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,1,8,4,0,438,1084290.3,730700.19,0,0,2131.8547 -4574,5654,10132,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-881.16516,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53.63,12.01,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,1246,-7276.0269,0,433205.69,0,1477.9413 -4575,5655,10133,-9,10135,10136,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.76233,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 -4575,5655,10134,-9,10135,10136,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.2946,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 -4575,5655,10135,10136,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.5902295,7.5491409,0,20,2,61.934841,0,-9,2,2019,10,0,22,23,1,0,0,12.886131,12.886131,0,0,0,0,0,1,1,0,.44688231,0,50.11,54.04,58.15,52.91,8.333333333333334,1,1,0,0,9,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 -4575,5655,10136,10135,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7598171,8.7235088,0,18,-2,141.38565,0,2,1,2019,6,0,48,48,1,0,0,13.250498,13.250498,0,0,0,0,0,1,1,0,.50963944,0,58.15,52.91,50.11,54.04,10,4,2,0,0,9,5,4,1,309.5,265874.56,256835.75,122872.16,60937.543,4588.0581 -4576,5656,10137,10138,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.4013505,5.6194186,2,-1,12.303303,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7797909,5.4057231,53,47,40.07,30.64,7,1,1,0,0,0,11,2,1,749.5,251007.23,209412.72,201166.47,0,1823.7913 -4576,5656,10138,10137,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,2,1,138.76053,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,40.07,30.64,53,47,6.666666666666667,1,1,0,0,0,11,2,1,749.5,251007.23,209412.72,201166.47,0,1823.7913 -4577,5657,10139,-9,10141,10140,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-905.78046,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,498,233491.84,54579.215,412831.34,280679,3424.7292 -4577,5657,10140,10141,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.8381882,8.6677256,0,4,5,136.58929,-9,1,2,2019,10,0,62,0,1,1,0,12.48101,12.48101,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,3,4,0,0,10,8,5,0,498,233491.84,54579.215,412831.34,280679,3424.7292 -4577,5657,10141,10140,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.9037795,8.0731573,0,4,-5,-14.103922,-9,-9,-9,2019,11,0,32,0,1,2,0,11.949752,11.949752,0,0,0,0,0,1,1,0,2.23224,0,47,57,50,57,7,4,4,0,0,1,8,5,0,498,233491.84,54579.215,412831.34,280679,3424.7292 -4578,5658,10142,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.4489946,8.620265,0,0,0,-1121.424,0,2,2,2019,5,0,35,35,1,0,0,16.553854,16.553854,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,5,3,4,0,0,9,8,4,0,359,-82870.844,0,281845.91,100122.48,2037.7365 -4579,5659,10143,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.4670563,6.1807351,0,0,-1016.7462,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9963617,6.2641778,50.1,41.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,291,497051.84,273796.88,0,0,674.06134 -4580,5660,10144,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,7.0437698,6.6392465,0,0,-1066.6478,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,13.623902,0,0,1,1,0,0,7.0264421,37.67,23.76,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,501,449831.38,80407.031,246526.06,0,1288.5033 -4580,5661,10145,-9,10144,-9,1,0,51,0,0,0,3,3,-9,0,5,7.3456054,7.1765647,0,0,0,-1027.291,0,3,-9,2019,7,0,21,21,1,0,0,9.453476,9.453476,0,0,0,0,27,1,1,0,2.547909,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,793,250640.09,29967.898,0,0,803.55145 -4581,5662,10146,10147,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.8069282,5.6164026,52,-1,-170.76698,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6939878,63.31,32.94,62.39,56.71,8.333333333333334,1,1,0,0,0,1,2,1,1450,748873.81,251706.48,81628.555,0,1388.7329 -4581,5662,10147,10146,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.7813916,6.9898725,52,1,38.835072,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0587907,62.39,56.71,63.31,32.94,8.333333333333334,1,1,0,0,8,1,2,1,1450,748873.81,251706.48,81628.555,0,1388.7329 -4582,5663,10148,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,4.9780302,5.0772247,0,0,-995.36316,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,27.508512,0,0,1,1,0,0,5.5819106,58.59,21.3,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1551,-137868.83,28410.877,0,0,1002.3805 -4583,5664,10149,10150,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.5960884,7.2830157,47,-3,117.5153,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4414964,62.66,52.4,40.12,46.76,8.333333333333334,1,1,0,0,0,4,2,0,1160,613760.69,237213.75,169064.28,0,1948.906 -4583,5664,10150,10149,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,47,3,71.327782,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0958915,0,40.12,46.76,62.66,52.4,1.666666666666667,1,1,0,0,1,4,2,0,1160,613760.69,237213.75,169064.28,0,1948.906 -4584,5665,10151,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1064.6106,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0053935,0,44.65,44.31,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,416,942488.88,137601.92,234762.13,0,1420.6462 -4585,5666,10152,10153,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,7.7617173,7.8666596,0,9,6,-136.91475,0,3,2,2019,21,7,35,36,1,7,0,11.467752,11.467752,0,0,0,0,0,0,0,0,0,0,23.58,46.45,43.12,58.55,0,1,1,0,1,11,12,4,1,292.5,1309811.5,1044063.6,81563.539,0,3525.8872 -4585,5666,10153,10152,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.578351,8.4410915,0,9,-6,-34.175262,0,3,3,2019,12,0,38,38,1,0,0,13.474761,13.474761,0,0,0,0,0,0,0,0,0,0,43.12,58.55,23.58,46.45,3.333333333333333,1,1,0,1,11,12,4,1,292.5,1309811.5,1044063.6,81563.539,0,3525.8872 -4586,5667,10154,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.9761314,7.0221972,0,0,-1046.1,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9410625,69.48999999999999,28.65,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,834,710959.44,0,315513.66,0,1455.9657 -4587,5668,10155,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,7.4823246,7.6004806,0,0,-851.62769,0,3,3,2019,16,7,0,0,4,7,0,0,0,0,0,0,.86446679,0,1,1,0,4.7515039,7.4039764,54.1,18.64,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1417,738210.38,309920.13,223338.3,0,1961.0444 -4588,5669,10156,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.7903328,6.5634508,0,0,0,-1215.3177,0,3,3,2019,7,0,17,17,1,0,0,6.8630304,6.8630304,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,10,1,1,0,0,7,13,2,1,99,492990,0,38078.926,0,929.47882 -4589,5670,10157,10158,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.9352846,8.1639528,0,44,4,-33.070522,0,-9,-9,2019,10,0,37,37,1,0,0,7.4847827,7.4847827,0,0,0,0,0,0,0,0,0,0,41.58,52.86,59.9,49.67,5,1,1,0,0,9,1,4,0,162.5,841744.94,635635.88,161768.08,34950.105,1888.6509 -4589,5670,10158,10157,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,6.3775482,6.8162498,6.8919482,44,-4,74.51107,0,3,3,2019,10,1,6,6,1,1,0,10.217054,10.217054,0,0,0,0,0,0,0,0,0,7.0200815,59.9,49.67,41.58,52.86,10,1,1,0,0,7,1,4,0,162.5,841744.94,635635.88,161768.08,34950.105,1888.6509 -4590,5671,10159,10160,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.3413067,8.2587204,0,9,-8,6.536829,0,2,2,2019,13,3,30,30,1,3,0,17.878397,17.878397,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,9,4,4,1,334,617855,442801.41,182155.5,11736.34,2940.4448 -4590,5671,10160,10159,-9,-9,1,1,43,1,1,0,2,2,-9,0,3,8.1176004,7.848712,0,9,8,52.548553,0,2,-9,2019,6,0,35,35,1,0,0,11.8348,11.8348,0,0,0,0,0,1,1,0,0,0,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,10,4,4,1,334,617855,442801.41,182155.5,11736.34,2940.4448 -4590,5671,10161,-9,10159,10160,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-850.73376,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,4,1,334,617855,442801.41,182155.5,11736.34,2940.4448 -4591,5672,10162,-9,10164,10163,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1024.6262,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,756,314423.69,372515.94,98874.828,75026.938,3181.634 -4591,5672,10163,10164,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.8871837,8.511548,0,26,5,-21.572367,0,2,2,2019,8,0,40,35,1,0,0,8.5953407,8.5953407,0,0,0,0,7,1,1,0,5.2040997,0,59.46,46.99,48.71,27.87,5,1,1,0,0,6,6,4,1,756,314423.69,372515.94,98874.828,75026.938,3181.634 -4591,5672,10164,10163,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,8.2055616,8.0970688,26,-5,-2.8792901,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,7.8273635,0,48.71,27.87,59.46,46.99,6.666666666666667,1,1,0,0,5,6,4,1,756,314423.69,372515.94,98874.828,75026.938,3181.634 -4592,5673,10165,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.9108028,8.087554,0,0,0,-931.01752,0,3,2,2019,4,0,45,40,1,0,0,6.6133537,6.6133537,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,137,167166.05,11478.099,0,0,686.40472 -4593,5674,10166,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.5252576,7.6918745,0,0,-1047.1777,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7164285,7.3936725,49.06,58.64,-9,-9,8.333333333333334,2,3,0,0,6,8,3,1,193,344197.78,368922.91,326935.72,0,884.42932 -4594,5675,10167,10168,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.0768795,6.4251814,49,-3,-20.938408,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.6241813,62.27,32.41,44.96,50.74,6.666666666666667,1,1,0,0,0,4,3,1,844.5,635685.25,387961.5,275397.19,0,2541.0811 -4594,5675,10168,10167,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.7503829,7.8169985,49,3,32.777252,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,7.4602842,7.6140189,44.96,50.74,62.27,32.41,8.333333333333334,1,1,0,0,5,4,3,1,844.5,635685.25,387961.5,275397.19,0,2541.0811 -4595,5676,10169,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.1762481,6.1164241,0,0,-974.80524,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1256123,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,943,327601.22,37059.625,162542.59,0,994.1665 -4596,5677,10170,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.9739757,8.1708984,0,0,0,-1137.1333,0,-9,3,2019,6,0,40,10,1,0,0,8.2418041,8.2418041,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,5,8,4,0,814,385205.38,51556.383,0,0,1569.2661 -4597,5678,10171,10172,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.7249599,7.0014825,8,-1,-26.489103,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.453687,6.9090171,60.12,54.8,39.48,48.18,8.333333333333334,1,1,0,0,6,12,2,1,646,569169.63,562769.13,63870.223,0,2023.7373 -4597,5678,10172,10171,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.909555,6.6161218,47,1,-15.096768,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.9512353,6.8705163,39.48,48.18,60.12,54.8,8.333333333333334,1,1,0,0,0,12,2,1,646,569169.63,562769.13,63870.223,0,2023.7373 -4598,5679,10173,-9,10175,10174,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1071.5325,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,0,1127.6666,454803.84,353129.75,416790.03,119386.43,2824.2327 -4598,5679,10174,10175,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,8.4156256,8.1541605,0,9,13,30.428329,0,-9,-9,2019,6,0,60,60,1,0,0,8.4353743,8.4353743,0,0,0,0,0,1,0,1,0,0,57.16,56.15,54.96,53.17,10,1,1,0,0,12,2,4,0,1127.6666,454803.84,353129.75,416790.03,119386.43,2824.2327 -4598,5679,10175,10174,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.7554941,7.8665514,0,26,-13,45.203003,0,2,2,2019,6,0,21,23,1,0,0,10.842055,10.842055,0,0,0,0,0,1,0,1,4.4570522,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,0,1127.6666,454803.84,353129.75,416790.03,119386.43,2824.2327 -4599,5680,10176,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.9760013,8.2787857,0,0,-802.24365,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4685369,8.363472,45.64,50.52,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,1144,918310.88,768365.56,198649.55,0,2074.9795 -4600,5681,10177,10178,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,8.0133333,8.1365013,0,8,-1,-69.758148,0,2,2,2019,7,0,56,48,1,0,0,8.3873644,8.3873644,0,0,0,0,0,1,1,0,0,0,60.12,54.8,44.43,56.74,8.333333333333334,1,1,0,0,9,13,4,1,871,72655.313,43836.844,200894.31,29138.588,2790.9297 -4600,5681,10178,10177,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.6282272,7.6055975,0,8,1,13.140973,0,2,-9,2019,12,0,24,24,1,0,0,9.253974,9.253974,0,0,0,0,7,1,1,0,0,0,44.43,56.74,60.12,54.8,8.333333333333334,1,1,0,0,9,13,4,1,871,72655.313,43836.844,200894.31,29138.588,2790.9297 -4600,5681,10179,-9,10178,10177,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.71161,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,871,72655.313,43836.844,200894.31,29138.588,2790.9297 -4601,5682,10180,10181,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.706923,7.8445148,41,-3,4.3008399,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.420877,8.0627441,45.81,58.99,51,48,8.333333333333334,1,1,0,0,4,4,4,1,636.5,1241694.1,483630.34,290860.31,0,2852.531 -4601,5682,10181,10180,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.5238199,8.0269299,0,8,3,38.257092,0,-9,-9,2019,10,0,40,40,1,1,0,6.3780689,6.3780689,0,0,0,0,0,0,0,0,0,0,51,48,45.81,58.99,7,1,1,0,0,1,4,4,1,636.5,1241694.1,483630.34,290860.31,0,2852.531 -4602,5683,10182,10183,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,47,1,-51.192753,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.6795377,0,34.85,27.81,36.16,24.1,8.333333333333334,1,1,0,0,0,2,2,1,937,272878.38,233269.09,124671.73,0,2622.6533 -4602,5683,10183,10182,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.4804702,5.1783738,47,-1,-94.045654,0,3,-9,2019,15,3,0,0,4,3,0,0,0,1,0,24.678188,0,0,1,1,0,2.7741554,5.3842864,36.16,24.1,34.85,27.81,5,1,1,0,0,0,2,2,1,937,272878.38,233269.09,124671.73,0,2622.6533 -4603,5684,10184,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.5748,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,16.026915,0,0,1,1,0,0,0,46.31,13.25,-9,-9,8.333333333333334,1,1,0,0,4,2,1,0,853,-185829.91,0,0,0,1048.0231 -4604,5685,10185,10187,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,6.9445267,7.0804214,0,5,-2,-118.38548,0,2,-9,2019,7,0,14,14,1,0,0,7.3338943,7.3338943,0,0,0,0,2,1,1,0,0,0,59.62,41.3,51.98,54.53,8.333333333333334,1,1,0,0,10,11,4,1,1338.6666,294467.34,300193.56,172491.97,141618.91,2698.6665 -4604,5685,10186,-9,10185,10187,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.83691,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,1,1338.6666,294467.34,300193.56,172491.97,141618.91,2698.6665 -4604,5685,10187,10185,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,8.1644373,8.4070606,0,5,2,138.01028,0,-9,-9,2019,10,0,60,50,1,0,0,8.7400532,8.7400532,0,0,0,0,0,1,1,0,0,0,51.98,54.53,59.62,41.3,10,1,1,0,0,4,11,4,1,1338.6666,294467.34,300193.56,172491.97,141618.91,2698.6665 -4605,5686,10188,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.1705756,7.056097,0,0,-961.27448,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3813252,7.2070618,45.19,48.64,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1394,1567684.4,278827.13,566651.69,0,906.69861 -4606,5687,10189,-9,10190,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-961.28839,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,2,0,282.66666,76414.859,0,0,0,1670.5472 -4606,5687,10190,-9,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,0,0,0,0,0,-967.74896,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.27,35.5,-9,-9,5,1,1,0,0,0,13,2,0,282.66666,76414.859,0,0,0,1670.5472 -4606,5687,10191,-9,10190,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.91943,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,282.66666,76414.859,0,0,0,1670.5472 -4607,5688,10192,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.4935298,7.1604333,0,0,-1016.0831,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3079596,7.6576858,62.51,41.87,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1368,727848.38,371218.28,248052.47,0,2080.1997 -4608,5689,10193,10194,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.9385033,7.6389203,0,30,-7,-25.054459,0,2,2,2019,13,2,60,40,1,2,0,4.9830112,4.9830112,0,0,0,0,0,0,0,0,8.7102728,0,54.21,47.1,58.15,52.91,6.666666666666667,1,1,0,0,9,11,5,1,941,313105.88,311626.56,0,0,4809.5659 -4608,5689,10194,10193,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.4052525,8.3380013,3.6803119,29,7,55.36755,0,3,2,2019,11,0,47,47,1,0,0,10.395284,10.395284,0,0,0,0,0,0,0,0,3.962404,3.9258542,58.15,52.91,54.21,47.1,8.333333333333334,1,1,0,0,9,11,5,1,941,313105.88,311626.56,0,0,4809.5659 -4608,5690,10195,-9,10193,10194,1,1,19,0,0,0,2,2,1,0,3,8.3004236,7.8678999,0,0,0,-1155.9021,-9,1,1,2019,9,1,41,0,1,1,1,8.031951,8.031951,0,0,0,0,0,0,0,0,3.9088371,0,46.64,55.46,-9,-9,6.666666666666667,1,1,0,0,1,11,4,1,614,210718.98,0,0,0,1528.1047 -4609,5691,10196,10198,-9,-9,1,0,45,1,3,0,2,2,-9,0,4,5.4138708,5.2615061,0,29,1,40.317104,0,2,2,2019,6,0,84,10,1,0,0,.29136494,.29136494,0,0,0,0,0,1,0,1,0,0,54.79,55.86,58.89,48.6,10,1,1,0,0,2,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 -4609,5691,10197,-9,-9,10198,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-923.84882,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,6,-9,0,0,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 -4609,5691,10198,10196,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.266655,8.6544304,0,11,-1,-69.263794,0,-9,-9,2019,10,0,55,55,1,0,0,8.9320955,8.9320955,0,0,0,0,0,1,0,1,0,0,58.89,48.6,54.79,55.86,10,1,1,0,0,12,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 -4609,5691,10199,-9,10196,10198,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.30914,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 -4609,5691,10200,-9,10196,10198,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.7372,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1710.8,169400.92,16764.414,139306.22,105818.93,3950.4927 -4610,5692,10201,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.2990055,7.5690584,0,0,-989.25818,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.5419173,55.11,47.63,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,1302,635012.69,111407.01,158703.23,0,1626.741 -4611,5693,10202,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,5.0215702,5.2915916,0,0,0,-925.08954,0,3,3,2019,12,1,30,30,1,1,0,.75805581,.75805581,0,0,0,0,0,1,1,0,0,0,50.25,40.84,-9,-9,6.666666666666667,1,1,0,1,7,9,2,0,160,73607.305,0,0,0,-17.152605 -4612,5694,10203,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1139.1007,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.73,13.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,432,431950.53,0,0,0,1121.2469 -4613,5695,10204,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,3.0245416,2.8677559,0,0,-1030.229,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,3.3921828,47.43,27.12,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,444,-72946.609,76153.914,0,0,732.07507 -4614,5696,10205,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1081.0752,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,10,1,1,0,0,0,6,1,1,113,360839.94,0,183882.98,0,499.36014 -4614,5697,10206,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.7332954,8.1444321,0,0,0,-1001.2609,0,2,1,2019,10,1,120,95,1,1,0,4.7556238,4.7556238,0,0,0,0,0,1,1,0,3.1602416,0,44.99,49.45,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,625,-44226.102,-21914.648,0,0,2082.6353 -4615,5698,10207,10208,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.2599449,7.3957725,0,8,-2,15.342973,0,-9,-9,2019,12,0,24,26,1,0,0,8.1851015,8.1851015,0,0,0,0,0,0,0,0,0,0,42.46,52.14,57.09,46.7,5,1,1,0,0,8,1,4,1,927,298825.13,97912.266,118049.91,0,1967.4459 -4615,5698,10208,10207,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9914594,8.1605997,0,8,2,60.614452,0,2,2,2019,6,0,39,39,1,0,0,7.112309,7.112309,0,0,0,0,0,0,0,0,0,0,57.09,46.7,42.46,52.14,8.333333333333334,1,1,0,0,8,1,4,1,927,298825.13,97912.266,118049.91,0,1967.4459 -4615,5699,10209,-9,10207,10208,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1023.8987,1,2,2,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,.18719597,0,39.28,55.39,-9,-9,3.333333333333333,1,1,0,0,3,1,1,1,440,215164.88,0,0,0,264.97803 -4616,5700,10210,10211,10212,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5780306,8.5550928,0,19,-15,149.84778,0,3,3,2019,8,0,43,44,1,0,0,10.055704,10.055704,0,0,0,0,2,1,1,0,0,0,60.3,46.58,55.17,43.9,8.333333333333334,3,4,0,0,12,8,5,1,1809,293518.13,0,445904.94,17084.977,3251.9604 -4616,5700,10211,10210,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.5370245,8.3828363,0,19,15,-62.627537,0,3,2,2019,9,1,38,38,1,1,0,13.379023,13.379023,0,0,0,0,0,1,1,0,0,0,55.17,43.9,60.3,46.58,8.333333333333334,1,1,0,0,12,8,5,1,1809,293518.13,0,445904.94,17084.977,3251.9604 -4616,5701,10212,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.7363682,5.7055364,0,0,-901.12561,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.474103,63.1,37.54,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,1182,21603.1,3418.5164,0,0,418.35727 -4617,5702,10213,10214,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.4089837,7.5545177,6,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3425751,62.66,52.4,57.33,53.46,0,1,1,0,0,0,12,3,1,1149,855876.5,593629.38,195329.63,0,2725.4585 -4617,5702,10214,10213,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,7.5307698,7.3735933,6,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2263911,7.2410879,57.33,53.46,62.66,52.4,8.333333333333334,1,1,0,0,0,12,3,1,1149,855876.5,593629.38,195329.63,0,2725.4585 -4618,5703,10215,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.6554604,8.0502872,0,0,0,-997.74017,0,2,2,2019,10,0,49,49,1,0,0,7.7573495,7.7573495,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,524,155247.3,0,0,0,1527.462 -4619,5704,10216,10217,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.9098721,8.3362112,0,35,1,-38.842369,0,3,3,2019,10,0,36,36,1,0,0,9.9372463,9.9372463,0,0,0,0,7,0,0,0,0,0,41.23,59.35,62.49,55.09,8.333333333333334,1,1,0,1,8,9,5,1,538,1395292.4,1041909.6,217084.5,142740.28,3798.8777 -4619,5704,10217,10216,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8526039,8.8595877,0,5,-1,-21.725893,0,3,3,2019,6,0,57,55,1,0,0,12.271607,12.271607,0,0,0,0,0,0,0,0,3.5896077,0,62.49,55.09,41.23,59.35,10,1,1,0,0,5,9,5,1,538,1395292.4,1041909.6,217084.5,142740.28,3798.8777 -4620,5705,10218,10219,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.9309649,6.06141,9,-4,-79.867805,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1147566,5.9855151,62.18,36.18,64.55,36.47,8.333333333333334,1,1,0,0,3,2,2,1,336,720092.38,399654.31,305257.41,0,2318.54 -4620,5705,10219,10218,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.8399382,6.5031567,9,4,167.57672,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1189256,6.4309769,64.55,36.47,62.18,36.18,8.333333333333334,1,1,0,0,1,2,2,1,336,720092.38,399654.31,305257.41,0,2318.54 -4621,5706,10220,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,6.2442775,6.1648121,0,0,0,-1046.329,0,3,3,2019,15,3,16,16,1,3,0,4.7561922,4.7561922,0,0,0,0,0,1,1,0,0,0,43.57,23.49,-9,-9,3.333333333333333,1,1,0,1,10,7,2,0,327,1182245.6,242722.97,633068,0,638.6767 -4621,5707,10221,-9,10220,-9,1,0,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1210.7234,0,3,-9,2019,31,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,33.18,36.55,-9,-9,3.333333333333333,4,2,0,1,0,7,1,0,564,-63173.98,82753.172,0,0,790.19867 -4621,5708,10222,-9,10220,-9,1,1,22,0,0,0,2,2,-9,0,4,7.6300025,7.7702141,0,0,0,-895.716,0,3,-9,2019,6,0,44,44,1,0,1,7.4883723,7.4883723,0,0,0,0,0,1,1,0,4.6462154,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,11,7,4,0,220,130304.16,-68824.461,0,0,1874.5099 -4622,5709,10223,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2235937,9.169198,0,6,6,-.25673872,0,3,3,2019,9,0,38,37,1,0,0,34.719982,34.719982,0,0,0,0,2,0,0,0,6.6691051,0,57.07,49.39,45.27,48.1,5,1,1,0,0,9,9,5,0,2180,1054308.1,216700.08,807356.75,0,3654.6494 -4622,5710,10224,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.8121691,8.564784,0,6,-6,-193.46748,0,-9,-9,2019,8,2,98,45,1,2,0,7.5721931,7.5721931,0,0,0,0,2,0,0,0,0,0,45.27,48.1,57.07,49.39,8.333333333333334,1,1,0,0,2,9,5,0,1289,707317.63,505049.13,0,0,1844.2195 -4623,5711,10225,10226,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.7164989,6.6800156,7,0,-31.743015,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7681532,6.6591005,51,47,59.53,56.44,7,1,1,0,0,0,5,4,1,826,885219.5,785965.88,244324.33,0,3612.7314 -4623,5711,10226,10225,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,8.0357733,8.5260954,47,0,-11.99447,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2743053,8.3629923,59.53,56.44,51,47,10,1,1,0,0,0,5,4,1,826,885219.5,785965.88,244324.33,0,3612.7314 -4624,5712,10227,10228,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.0580645,8.1415834,0,10,0,19.06695,0,2,2,2019,22,8,38,39,1,8,0,11.241702,11.241702,0,0,0,0,0,0,0,0,0,0,34.13,61.39,58.15,52.91,6.666666666666667,1,1,0,0,10,10,5,1,1550,546458.63,132675.72,554129.88,137923.58,3578.478 -4624,5712,10228,10227,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.8083611,8.9400482,0,10,0,31.212608,0,2,2,2019,7,1,37,36,1,1,0,20.031071,20.031071,0,0,0,0,0,0,0,0,0,0,58.15,52.91,34.13,61.39,8.333333333333334,1,1,0,0,11,10,5,1,1550,546458.63,132675.72,554129.88,137923.58,3578.478 -4625,5713,10229,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,5.8395252,5.9111166,0,0,-991.22321,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,4.4993296,0,46.398975,0,1,1,0,.54262048,5.9947891,59.72,29.45,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,693,1087993.5,118048.02,856447.56,0,1138.1144 -4626,5714,10230,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1083.0325,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,44.58,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1059,1252103.6,806123.81,269308.13,0,1957.8668 -4627,5715,10231,10232,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.3131313,9.4420233,7.03441,8,0,-142.15022,0,1,2,2019,12,0,8,44,1,0,0,140.53687,140.53687,0,0,0,0,0,0,0,0,7.0279465,0,49.04,55.86,56.34,29.58,6.666666666666667,1,1,0,0,13,10,5,0,942,2047517.8,1649484.5,456674.63,71632.555,5866.2236 -4627,5715,10232,10231,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.2052832,7.9762778,0,8,0,-116.77503,0,-9,-9,2019,12,2,38,38,1,2,0,9.7581644,9.7581644,0,0,0,0,0,0,0,0,6.8577476,0,56.34,29.58,49.04,55.86,8.333333333333334,1,1,0,0,7,10,5,0,942,2047517.8,1649484.5,456674.63,71632.555,5866.2236 -4628,5716,10233,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.4147778,5.3028703,0,0,-949.70905,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5327973,48.62,53.24,-9,-9,10,1,1,0,0,8,13,2,1,476,193144,210545.27,56984.566,0,684.26959 -4629,5717,10234,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-996.18121,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,223,309406.41,0,73095.398,0,1216.0828 -4629,5718,10235,-9,10234,-9,1,0,38,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1010.2827,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,10.77,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,1075,10327.674,0,0,0,742.52209 -4630,5719,10236,10237,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4454689,8.7479868,5.0737624,8,-5,-33.624672,0,3,3,2019,6,0,40,40,1,0,0,17.082453,17.082453,0,0,0,0,0,1,1,0,4.5448518,5.5811982,57.33,53.46,42.45,52.35,8.333333333333334,1,1,0,0,9,1,4,1,524.5,1820051.8,1178156.5,435024.63,-7795.0996,2640.2778 -4630,5719,10237,10236,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,41,5,18.992693,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.4265573,0,42.45,52.35,57.33,53.46,8.333333333333334,1,1,0,0,0,1,4,1,524.5,1820051.8,1178156.5,435024.63,-7795.0996,2640.2778 -4631,5720,10238,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,7.0584135,6.5219293,0,0,0,-1048.0156,0,2,2,2019,24,10,12,12,1,10,0,8.4756813,8.4756813,0,0,0,0,2,1,1,0,0,0,36.29,25.77,-9,-9,0,1,1,0,0,7,1,2,1,502,468639,0,0,0,720.80884 -4632,5721,10239,10240,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,20,-1,19.127083,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.89,54.32,44.72,52.79,6.666666666666667,1,1,0,0,5,9,3,1,364.5,862419.63,78426.859,339990.63,47965.805,1764.5076 -4632,5721,10240,10239,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.9521036,8.1907921,0,20,1,54.275902,0,3,2,2019,7,0,19,2,1,0,0,20.687632,20.687632,0,0,0,0,7,0,0,0,6.7030525,0,44.72,52.79,46.89,54.32,3.333333333333333,1,1,0,0,9,9,3,1,364.5,862419.63,78426.859,339990.63,47965.805,1764.5076 -4633,5722,10241,10242,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,6.8924961,6.981823,7,9,-33.974899,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1122665,51,48,51.25,50.81,7,1,1,0,0,0,13,2,1,621.5,446795.56,384283.16,104311.11,0,1423.1055 -4633,5722,10242,10241,-9,-9,1,0,53,0,0,0,3,3,-9,1,4,0,0,0,7,0,60.274799,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.25,50.81,51,48,8.333333333333334,1,1,0,0,6,13,2,1,621.5,446795.56,384283.16,104311.11,0,1423.1055 -4634,5723,10243,10244,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2597866,7.588449,45,-4,-134.90594,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0218401,7.5879469,51.38,54.63,53,47,8.333333333333334,1,1,0,0,0,6,4,1,767,1119521.8,539787.38,202779.72,0,3712.6338 -4634,5723,10244,10243,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0059462,8.2132626,7,4,-81.411751,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0431781,7.8509045,53,47,51.38,54.63,8,1,1,0,0,0,6,4,1,767,1119521.8,539787.38,202779.72,0,3712.6338 -4635,5724,10245,10246,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,6.9641213,6.6939111,11,5,-160.73442,0,-9,-9,2019,7,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,6.6736326,7.2243357,50.98,33.55,62.49,55.09,8.333333333333334,1,1,0,0,12,7,2,1,445,1066438.5,518709.31,752505.88,0,620.51752 -4635,5724,10246,10245,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,5.4004431,5.5350957,35,-5,115.2047,0,2,2,2019,5,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,5.80337,62.49,55.09,50.98,33.55,10,1,1,0,0,12,7,2,1,445,1066438.5,518709.31,752505.88,0,620.51752 -4636,5725,10247,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5573053,7.8259139,6.9026208,0,0,-937.10187,0,2,2,2019,9,0,30,27,1,0,0,6.4200292,6.4200292,0,0,0,0,2,1,0,1,6.3695922,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,613,522375,-1605.3447,294317.38,0,1607.067 -4636,5725,10248,-9,10247,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-948.06677,-9,2,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,.36704746,0,51.14,60.45,-9,-9,10,1,1,0,0,10,9,3,1,613,522375,-1605.3447,294317.38,0,1607.067 -4637,5726,10249,10250,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,5.8564911,6.2311273,7,2,47.542236,0,2,3,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,5.9848146,16.11,46.91,46.29,34.56,1.666666666666667,1,1,0,0,1,13,4,0,442.5,642594.63,202304.94,386013.13,0,2280.6936 -4637,5726,10250,10249,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.3577404,8.3799391,0,7,-2,-128.30791,0,2,3,2019,13,1,45,50,1,1,0,14.475926,14.475926,0,0,0,0,0,1,1,0,0,0,46.29,34.56,16.11,46.91,8.333333333333334,1,1,0,0,8,13,4,0,442.5,642594.63,202304.94,386013.13,0,2280.6936 -4637,5727,10251,-9,10249,10250,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1050.5031,0,2,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,10,1,1,1,0,3,13,1,0,2093,-284546.88,0,0,0,296.25375 -4638,5728,10252,10254,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,6.1733561,6.4387493,0,5,1,-91.752953,0,-9,-9,2019,7,0,10,10,1,0,0,7.0932508,7.0932508,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50,57,8.333333333333334,1,1,0,0,6,2,3,1,436.33334,55453.332,211969.02,115821,89902.313,2595.5503 -4638,5728,10253,-9,10252,10254,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1140.0912,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,436.33334,55453.332,211969.02,115821,89902.313,2595.5503 -4638,5728,10254,10252,-9,-9,1,1,31,1,1,0,1,1,-9,0,4,8.5681973,8.2297592,0,5,-1,-47.639889,0,-9,-9,2019,10,0,38,40,1,1,0,15.525545,15.525545,0,0,0,0,0,1,1,0,0,0,50,57,48.87,58.55,7,1,1,0,0,1,2,3,1,436.33334,55453.332,211969.02,115821,89902.313,2595.5503 -4639,5729,10255,10256,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.7458043,6.6074901,32,-1,-78.687195,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.568541,6.5858665,42.45,28.07,62.5,49.56,8.333333333333334,1,1,0,0,0,5,4,1,274.5,422979.84,490106.81,0,0,3769.9436 -4639,5729,10256,10255,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.5121965,8.6826487,32,1,81.827072,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7461128,8.4435081,62.5,49.56,42.45,28.07,10,1,1,0,0,0,5,4,1,274.5,422979.84,490106.81,0,0,3769.9436 -4640,5730,10257,10258,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,7.2077866,7.1552391,5.2251949,42,-3,46.072708,0,3,3,2019,10,0,9,16,1,0,0,15.319587,15.319587,0,0,0,0,2,1,1,0,3.3480113,5.3575859,58.62,52.91,54.2,57.49,8.333333333333334,1,1,0,0,11,2,4,1,932,659413.63,305169.38,106468.77,0,3590.4746 -4640,5730,10258,10257,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.110816,8.4614344,4.5746899,42,3,87.310928,0,2,3,2019,7,0,40,40,1,0,0,8.6168585,8.6168585,0,0,0,0,0,1,1,0,6.6357231,4.852479,54.2,57.49,58.62,52.91,8.333333333333334,1,1,0,0,11,2,4,1,932,659413.63,305169.38,106468.77,0,3590.4746 -4640,5731,10259,-9,10257,10258,1,1,35,0,0,0,2,2,-9,1,5,6.8080726,6.8289056,0,0,0,-1103.2723,0,1,2,2019,6,0,19,19,1,0,1,4.9516163,4.9516163,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,11,2,2,1,848,-30213.689,0,0,0,683.13757 -4641,5732,10260,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,5.2263451,4.9375353,0,0,-968.04327,0,3,3,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,5.5402584,5.2889247,11.46,56.22,-9,-9,1.666666666666667,1,1,0,1,0,8,2,0,1334,100625.17,170134.66,0,0,555.34082 -4642,5733,10261,-9,10263,-9,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-944.23438,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.9273398,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 -4642,5733,10262,-9,10263,-9,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1117.9015,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 -4642,5733,10263,-9,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,5.05334,7.0749249,6.784091,0,0,-978.7829,0,2,1,2019,13,2,5,6,1,2,0,3.6786573,3.6786573,0,0,0,0,0,1,1,0,6.9062343,0,38.05,59.68,-9,-9,3.333333333333333,1,1,0,0,5,12,2,1,792.40002,58474.781,0,0,0,1900.4407 -4642,5733,10264,-9,10263,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.00739,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 -4642,5733,10265,-9,10263,-9,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1005.9684,-9,1,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.73824859,0,42.54,58.78,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,792.40002,58474.781,0,0,0,1900.4407 -4643,5734,10266,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.5802946,8.524435,4.5773783,0,0,-897.57916,0,-9,-9,2019,15,3,45,39,1,3,0,12.687563,12.687563,0,0,0,0,0,0,0,0,0,4.5380955,36.95,51.85,-9,-9,1.666666666666667,1,1,0,0,12,4,5,1,454,458996.94,30966.061,163357.33,9585.7393,1445.901 -4644,5735,10267,10268,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.5035543,8.4406757,0,12,-5,-63.505695,0,-9,-9,2019,13,3,42,27,1,3,0,12.610231,12.610231,0,0,0,0,0,0,0,0,8.9445314,0,47.79,46.82,27.51,61.9,3.333333333333333,1,1,0,0,11,9,5,1,534,1639450.1,1054083.3,421016.44,0,7156.042 -4644,5735,10268,10267,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.307683,9.3011332,0,12,5,22.321404,0,3,3,2019,22,9,58,53,1,9,0,25.703854,25.703854,0,0,0,0,0,0,0,0,5.1289926,0,27.51,61.9,47.79,46.82,1.666666666666667,1,1,0,0,12,9,5,1,534,1639450.1,1054083.3,421016.44,0,7156.042 -4645,5736,10269,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.2066202,8.2853851,0,0,0,-928.10358,-9,-9,-9,2019,6,0,52,0,1,0,0,6.5136771,6.5136771,0,0,0,0,0,0,0,0,0,0,61.7,51.58,-9,-9,1.666666666666667,1,1,0,0,5,13,4,1,1246,-67364.375,-82629.391,72668.469,86825.641,1379.2562 -4646,5737,10270,-9,10271,-9,1,0,24,0,1,0,2,2,0,0,4,0,0,0,0,0,-996.15918,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,4,2,0,0,0,5,1,0,696,190503.52,0,0,0,0 -4646,5738,10271,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.1331191,7.2033195,0,0,0,-1088.3042,0,2,2,2019,9,0,25,25,1,0,0,6.3312912,6.3312912,0,0,0,0,0,1,1,0,0,0,57.06,29.28,-9,-9,8.333333333333334,4,2,0,0,8,5,2,0,369,58087.734,111116.63,0,0,1612.426 -4646,5738,10272,-9,10271,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-935.3028,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,2,0,369,58087.734,111116.63,0,0,1612.426 -4647,5739,10273,-9,10275,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.33551,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,545.66669,-218755.33,0,24144.348,187482.5,2011.4452 -4647,5739,10274,-9,10275,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.6056,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,3,0,545.66669,-218755.33,0,24144.348,187482.5,2011.4452 -4647,5739,10275,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.7273626,7.5846505,0,0,0,-1007.3663,0,1,1,2019,3,0,25,24,1,0,0,11.770593,11.770593,0,0,0,0,2,1,1,0,3.5369751,0,55.19,54.26,-9,-9,10,1,1,0,0,2,11,3,0,545.66669,-218755.33,0,24144.348,187482.5,2011.4452 -4648,5740,10276,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,7.2873683,7.4743261,0,0,0,-1017.0048,0,-9,-9,2019,13,3,16,20,1,3,0,11.611074,11.611074,0,0,0,0,2,1,1,0,0,0,34.27,45.05,-9,-9,3.333333333333333,1,1,0,0,6,8,3,0,598,-346355.34,0,0,0,1494.6172 -4649,5741,10277,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-928.38086,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.66296858,0,62.27,48.47,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,623,317799.69,0,180895.53,0,460.78326 -4650,5742,10278,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.484477,8.6047773,0,0,0,-1013.1348,0,2,2,2019,13,1,40,37,1,1,0,15.873833,15.873833,0,0,0,0,0,1,1,0,0,0,33.9,60.31,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,470,104161.09,35059.176,0,0,1586.9382 -4650,5743,10279,-9,10278,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.7285,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,1846,29777.07,0,0,0,674.65259 -4651,5744,10280,10281,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.4655366,7.4266372,4.6485252,6,2,21.242586,0,3,3,2019,14,3,24,30,1,3,0,8.2853813,8.2853813,0,0,0,0,0,0,0,0,4.4715829,4.8970385,35.26,47.34,54.2,57.49,8.333333333333334,1,1,0,0,7,5,3,1,547,285422.56,24990.896,141417.7,0,1449.2754 -4651,5744,10281,10280,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.4563527,6.1622915,0,6,-2,124.74717,0,3,3,2019,11,0,12,14,1,0,0,7.6096034,7.6096034,0,0,0,0,0,0,0,0,3.0532029,0,54.2,57.49,35.26,47.34,8.333333333333334,1,1,0,0,5,5,3,1,547,285422.56,24990.896,141417.7,0,1449.2754 -4652,5745,10282,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.9595351,6.9506049,0,0,-990.3244,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.1821425,6.9279513,60.46,15.37,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,822,183386.22,1593.8645,242463.53,0,959.03882 -4653,5746,10283,10284,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,7.2513223,7.258595,8,3,-78.067574,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.6246743,6.9387522,30.6,18.53,60.12,54.8,6.666666666666667,1,1,0,0,1,5,2,1,520,841458.19,502835.63,321236.06,0,1455.5002 -4653,5746,10284,10283,-9,-9,1,0,54,0,0,0,2,2,-9,1,4,0,0,0,8,-3,16.43302,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,60.12,54.8,30.6,18.53,10,1,1,1,0,6,5,2,1,520,841458.19,502835.63,321236.06,0,1455.5002 -4654,5747,10285,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.0760651,7.901391,0,1,3,-152.23386,0,3,3,2019,10,0,42,42,1,0,0,7.8804607,7.8804607,0,0,0,0,0,0,0,0,0,0,48.87,58.55,60.29,38.88,1.666666666666667,1,1,0,0,9,5,4,1,362,142944.48,79683.234,0,0,1381.046 -4654,5748,10286,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.8013396,7.7939954,0,1,-3,-101.38364,-9,-9,-9,2019,12,2,37,0,1,2,0,8.6649885,8.6649885,0,0,0,0,0,0,0,0,0,0,60.29,38.88,48.87,58.55,3.333333333333333,1,1,0,0,2,5,4,1,138,-246815.14,0,0,0,899.70764 -4655,5749,10287,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,5.5705709,6.429852,6.1082482,0,0,-991.41833,0,2,2,2019,11,0,70,75,1,0,0,.49458313,.49458313,0,0,0,0,7,1,1,0,5.8486648,0,42.28,54.75,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,362.5,-44660.414,0,0,0,593.26501 -4655,5749,10288,-9,10287,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.8972,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,1,362.5,-44660.414,0,0,0,593.26501 -4656,5750,10289,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,5.3320985,5.5445752,0,0,-1018.9511,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2842731,5.0931668,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,350,219699.39,53812.742,25484.137,0,1812.3602 -4656,5751,10290,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,6.0845046,6.0998068,0,0,0,-1123.7643,0,-9,-9,2019,5,0,11,0,1,0,0,4.4826288,4.4826288,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,392,488958.16,483916.16,0,0,690.29858 -4657,5752,10291,10293,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.3613291,7.1680527,0,21,-2,133.33754,0,3,3,2019,16,4,21,19,1,4,0,9.7819681,9.7819681,0,0,0,0,0,1,1,0,0,0,44.7,51.62,51.65,52.38,3.333333333333333,1,1,0,0,10,4,4,1,925,504648.13,258716.8,214502.77,106115.34,3251.675 -4657,5752,10292,-9,10291,10293,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1006.2906,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,925,504648.13,258716.8,214502.77,106115.34,3251.675 -4657,5752,10293,10291,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,8.8263941,8.865221,0,21,2,-71.05143,0,2,2,2019,11,0,47,42,1,0,0,18.228783,18.228783,0,0,0,0,0,1,1,0,0,0,51.65,52.38,44.7,51.62,6.666666666666667,1,1,0,0,10,4,4,1,925,504648.13,258716.8,214502.77,106115.34,3251.675 -4658,5753,10294,10296,-9,-9,1,0,39,0,1,0,2,2,-9,1,3,0,0,0,9,-11,24.728165,0,3,3,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.14,45.78,46.07,50.63,5,1,1,0,0,0,6,3,1,795,228822.03,162427.7,198159,85919.039,2377.5986 -4658,5753,10295,-9,10294,10296,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1047.4409,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,3,1,795,228822.03,162427.7,198159,85919.039,2377.5986 -4658,5753,10296,10294,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.60572,7.8464475,0,9,11,-79.431831,0,3,3,2019,12,3,35,31,1,3,0,10.628778,10.628778,0,0,0,0,0,1,1,0,0,0,46.07,50.63,27.14,45.78,10,1,1,0,0,12,6,3,1,795,228822.03,162427.7,198159,85919.039,2377.5986 -4658,5754,10297,-9,10294,10296,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-846.52551,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,6,1,1,1693,0,0,0,0,0 -4659,5755,10298,-9,10301,10300,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.98224,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 -4659,5755,10299,-9,10301,10300,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.77051,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 -4659,5755,10300,10301,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.3957033,8.6491108,0,2,1,134.27226,0,-9,-9,2019,6,0,35,35,1,0,0,18.489904,18.489904,0,0,0,.69589019,0,1,1,0,0,0,62.39,56.71,46.5,58.26,8.333333333333334,1,1,0,0,8,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 -4659,5755,10301,10300,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.4140291,8.5530643,0,10,-1,-28.358263,0,1,2,2019,8,0,35,35,1,0,0,14.104429,14.104429,0,0,0,0,0,1,1,0,0,0,46.5,58.26,62.39,56.71,8.333333333333334,1,1,0,0,6,12,4,1,1383.75,263325.78,168893.5,195572.47,107780.12,4191.6807 -4660,5756,10302,10303,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5332565,8.9230213,7.4413452,9,2,66.62355,0,3,3,2019,9,0,36,36,1,0,0,20.738689,20.738689,0,0,0,0,0,0,0,0,0,8.0676079,62.27,48.47,49.91,41,8.333333333333334,4,2,0,0,10,8,5,1,575,537787.13,10066.449,276864.31,0,4999.3906 -4660,5756,10303,10302,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.6838751,8.5971336,0,9,-2,-34.751137,0,-9,-9,2019,9,2,36,37,1,2,0,15.379714,15.379714,0,0,0,0,0,0,0,0,.85682327,0,49.91,41,62.27,48.47,6.666666666666667,2,3,0,0,12,8,5,1,575,537787.13,10066.449,276864.31,0,4999.3906 -4660,5757,10304,-9,10303,10302,1,1,29,0,0,0,2,2,-9,0,3,8.5334806,8.870863,0,0,0,-1025.0574,0,2,2,2019,8,0,36,42,1,0,1,13.532104,13.532104,0,0,0,0,0,0,0,0,0,0,62,47.26,-9,-9,6.666666666666667,2,3,0,0,5,8,5,1,766,136936.08,-66924.422,0,0,2101.345 -4661,5758,10305,-9,10307,10306,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-762.90625,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,1005.5,161546.38,0,0,0,1452.714 -4661,5758,10306,10307,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.2472734,7.8688626,0,23,10,48.887085,0,2,2,2019,9,0,40,63,1,1,0,3.7612133,3.7612133,0,0,0,0,0,1,1,0,0,0,52,55,48,56,8,2,3,0,0,10,8,2,0,1005.5,161546.38,0,0,0,1452.714 -4661,5758,10307,10306,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,10,-10,34.922253,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,2,0,1005.5,161546.38,0,0,0,1452.714 -4661,5758,10308,-9,10307,10306,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1072.1825,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97,57.26,-9,-9,5,2,3,0,0,0,8,2,0,1005.5,161546.38,0,0,0,1452.714 -4661,5759,10309,-9,10307,10306,1,1,20,0,2,0,2,2,1,0,4,0,0,0,0,0,-1028.6395,-9,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,1,0,0,8,1,0,1609,0,0,0,0,59.548504 -4661,5760,10310,-9,10307,10306,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1008.958,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,1015,0,0,0,0,0 -4662,5761,10311,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.2464046,7.3952742,0,0,0,-954.62128,0,-9,-9,2019,11,0,30,31,1,0,0,6.7579103,6.7579103,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,5,2,0,531.75,140145.77,0,0,0,2906.9084 -4662,5761,10312,-9,10311,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.37982,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,531.75,140145.77,0,0,0,2906.9084 -4662,5761,10313,-9,10311,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1129.2871,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,2,0,531.75,140145.77,0,0,0,2906.9084 -4662,5761,10314,-9,10311,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.6039,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,531.75,140145.77,0,0,0,2906.9084 -4663,5762,10315,10316,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.7853723,6.8262949,49,0,-44.362076,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,9.943964,0,0,1,1,0,0,6.9329138,55.25,21.39,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,455,312165,193143.94,123319.28,0,2115.3982 -4663,5762,10316,10315,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,50,0,61.333576,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.25,21.39,8.333333333333334,1,1,0,0,0,12,2,1,455,312165,193143.94,123319.28,0,2115.3982 -4664,5763,10317,10320,-9,-9,1,1,46,0,4,0,2,2,-9,0,4,7.7020717,7.5786638,0,24,-1,-4.9614429,0,2,2,2019,4,0,39,40,1,0,0,7.0057116,7.0057116,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,6.666666666666667,1,1,0,0,13,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 -4664,5763,10318,-9,10320,10317,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-997.58508,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 -4664,5763,10319,-9,10320,10317,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1072.7871,-9,1,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.53424752,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 -4664,5763,10320,10317,-9,-9,1,0,47,0,4,0,1,1,-9,0,5,0,0,0,22,1,-15.617819,1,2,2,2019,10,2,0,13,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,8,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 -4664,5763,10321,-9,10320,10317,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1035.1106,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 -4664,5763,10322,-9,10320,10317,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-953.03534,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,2,1,955.33331,831606.38,19644.9,504512.44,116176.07,1935.0349 -4665,5764,10323,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.4353499,7.3714628,0,0,-1082.3635,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,11.321896,0,0,1,1,0,6.0137258,7.4428878,45.32,16.49,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,802,475427.59,373237.13,147136.22,0,1888.3793 -4666,5765,10324,-9,-9,10325,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.87775,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,6,-9,0,0,8,5,1,502.5,346020.91,1732.6426,494752.81,114345.2,3455.8376 -4666,5765,10325,-9,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9528685,9.1867695,0,11,-3,-32.336693,0,3,3,2019,8,1,70,38,1,1,0,10.490168,10.490168,0,0,0,0,0,1,1,0,0,0,45.15,57.46,47.15,56.66,8.333333333333334,1,1,0,0,11,8,5,1,502.5,346020.91,1732.6426,494752.81,114345.2,3455.8376 -4666,5766,10326,-9,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.8025742,8.4208784,0,11,3,-112.39203,0,2,2,2019,15,5,30,30,1,5,0,26.648808,26.648808,0,0,0,0,0,1,1,0,2.3748999,0,47.15,56.66,45.15,57.46,8.333333333333334,1,1,0,0,13,8,5,1,2224,1607494.1,707236,526186.06,0,2209.3171 -4667,5767,10327,-9,-9,-9,1,0,57,1,1,0,3,3,-9,0,5,8.190711,7.4228792,0,0,0,-1127.4375,0,3,2,2019,11,0,37,37,1,0,0,8.4069986,8.4069986,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,10,1,1,0,0,8,11,3,1,571,598582.63,326830.97,94701.273,12758.971,1376.6122 -4668,5768,10328,10329,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,7.3451157,7.685647,0,10,-1,-24.638681,0,2,2,2019,12,3,28,26,1,3,0,8.0993071,8.0993071,0,0,0,0,0,1,1,0,1.2306882,0,46.67,58.37,36.99,54.9,8.333333333333334,1,1,0,0,12,5,4,1,548,47886.938,-36469.828,72508.961,55312.141,2723.7739 -4668,5768,10329,10328,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.4133015,8.1551504,0,10,1,115.04921,0,3,2,2019,13,1,60,58,1,1,0,8.6794367,8.6794367,0,0,0,0,0,1,1,0,4.2816296,0,36.99,54.9,46.67,58.37,8.333333333333334,1,1,0,0,12,5,4,1,548,47886.938,-36469.828,72508.961,55312.141,2723.7739 -4668,5768,10330,-9,10328,10329,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.7344,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,548,47886.938,-36469.828,72508.961,55312.141,2723.7739 -4669,5769,10331,10332,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0142403,7.7608519,0,8,0,-24.717875,0,-9,-9,2019,9,0,30,30,1,0,0,10.625304,10.625304,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.84,49.18,8.333333333333334,1,1,0,1,9,12,3,1,3399,1336436.8,1013990.4,341356.69,0,1725.0149 -4669,5769,10332,10331,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,6.7432666,6.4420252,0,8,9,-124.33823,0,1,1,2019,7,1,10,16,1,1,0,9.9195518,9.9195518,0,0,0,0,7,1,1,0,0,0,42.84,49.18,51.83,57.2,6.666666666666667,1,1,0,0,9,12,3,1,3399,1336436.8,1013990.4,341356.69,0,1725.0149 -4670,5770,10333,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,3.9175882,3.7435293,0,0,-1074.7557,0,-9,-9,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.297823,4.1824002,27.23,31.1,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,4398,-86563.211,290209.91,0,0,940.70264 -4670,5771,10334,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5207901,6.6157765,0,0,-999.49133,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4883552,36.03,40.6,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,650,356.83701,142516.86,0,0,1007.5097 -4671,5772,10335,10336,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.0132809,8.186079,7,6,-131.45694,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9240844,7.9678836,53.61,52.37,48.51,49.31,8.333333333333334,1,1,0,0,0,13,3,1,279.5,756437.94,361688.03,208050.88,0,3730.3269 -4671,5772,10336,10335,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,6.2224984,6.078444,7,-6,-163.95007,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3148959,6.3013172,48.51,49.31,53.61,52.37,6.666666666666667,1,1,0,0,0,13,3,1,279.5,756437.94,361688.03,208050.88,0,3730.3269 -4672,5773,10337,10338,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0972271,8.2425547,0,2,3,-16.957325,0,-9,-9,2019,11,1,45,45,1,1,0,9.8071232,9.8071232,0,0,0,0,0,1,1,0,0,0,51.83,57.2,26.73,24.53,6.666666666666667,1,1,0,0,1,12,3,0,718,48995.02,27774.936,0,0,1783.1357 -4672,5773,10338,10337,-9,-9,1,0,24,0,0,0,2,2,0,1,2,0,0,0,2,-3,-112.18398,-9,1,3,2019,34,12,0,0,2,12,0,0,0,0,0,0,0,2,1,1,0,0,0,26.73,24.53,51.83,57.2,3.333333333333333,1,1,0,1,6,12,3,0,718,48995.02,27774.936,0,0,1783.1357 -4673,5774,10339,10340,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.6894875,7.1537929,8,0,49.622993,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,56.586784,0,42,1,1,0,6.6732697,7.4637184,49.03,13.18,33.32,18.46,5,1,1,0,0,0,4,2,1,482.5,506209.63,378474.97,208512.63,0,2271.3655 -4673,5774,10340,10339,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,50,0,11.127686,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,12.160743,0,71.5,1,1,0,0,0,33.32,18.46,49.03,13.18,5,1,1,0,0,5,4,2,1,482.5,506209.63,378474.97,208512.63,0,2271.3655 -4674,5775,10341,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-881.78564,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.73,50.87,-9,-9,8.333333333333334,4,2,0,1,0,5,1,1,90,-234321.02,0,34973.09,0,622.76123 -4675,5776,10342,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.0924163,6.6942754,0,0,-939.0119,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8993955,55,45,-9,-9,8,1,1,0,0,0,7,2,1,1193,594152.25,180794.77,107133.23,0,1692.8007 -4676,5777,10343,10345,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7410841,8.4717922,0,10,1,108.74129,0,2,3,2019,12,1,40,40,1,1,0,21.631128,21.631128,0,0,0,0,2,1,1,0,4.147305,0,46.52,50.17,54.2,57.49,6.666666666666667,1,1,0,0,11,12,5,1,534.66669,462473.47,312716.34,219524.05,64385.578,3341.6694 -4676,5777,10344,-9,10345,10343,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1095.9106,-9,1,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,46.1,59.99,-9,-9,5,1,1,0,0,1,12,5,1,534.66669,462473.47,312716.34,219524.05,64385.578,3341.6694 -4676,5777,10345,10343,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.0937967,7.8169703,0,10,-1,36.617863,0,2,2,2019,7,0,28,28,1,0,0,14.952266,14.952266,0,0,0,0,2,1,1,0,0,0,54.2,57.49,46.52,50.17,8.333333333333334,1,1,0,0,11,12,5,1,534.66669,462473.47,312716.34,219524.05,64385.578,3341.6694 -4677,5778,10346,10347,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,59,-5,112.51943,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,49.63,54.22,47.66,34.23,8.333333333333334,1,1,0,0,9,4,2,1,872,289201.78,7441.0781,116963.89,0,995.14148 -4677,5778,10347,10346,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,2.7163508,2.860775,10,5,4.2752595,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,12.871583,0,0,1,1,0,3.1232333,2.8045001,47.66,34.23,49.63,54.22,8.333333333333334,1,1,0,0,0,4,2,1,872,289201.78,7441.0781,116963.89,0,995.14148 -4678,5779,10348,10349,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.1911287,8.0696926,0,14,0,-119.0887,0,2,2,2019,12,2,40,40,1,2,0,11.726435,11.726435,0,0,0,0,0,1,1,0,0,0,48.53,58.91,57.16,56.15,6.666666666666667,1,1,0,0,6,2,5,1,422.66666,335191.34,229548.8,209995.16,149068.31,3997.6082 -4678,5779,10349,10348,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.5389252,8.6637068,0,14,9,-52.546013,0,2,2,2019,9,0,40,48,1,0,0,16.815037,16.815037,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.53,58.91,8.333333333333334,1,1,0,0,10,2,5,1,422.66666,335191.34,229548.8,209995.16,149068.31,3997.6082 -4678,5779,10350,-9,10348,10349,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-955.23889,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,422.66666,335191.34,229548.8,209995.16,149068.31,3997.6082 -4679,5780,10351,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,6.601222,7.0463905,0,0,0,-1060.0233,0,-9,-9,2019,24,12,20,20,1,12,0,4.4130044,4.4130044,0,0,0,0,27,1,1,0,0,0,39.39,37.66,-9,-9,3.333333333333333,1,1,0,1,3,7,2,0,123,-163932.06,-96711.563,0,0,2032.9882 -4680,5781,10352,10353,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,7.6798038,7.9162331,0,6,-12,23.951908,0,2,2,2019,6,0,21,22,1,0,0,13.836487,13.836487,0,0,0,0,0,0,0,0,7.6358585,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,9,10,5,1,442,733779.56,574082.06,393514.25,21029.43,5004.2539 -4680,5781,10353,10352,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1444016,8.9654026,0,6,12,35.01926,0,2,3,2019,10,1,55,50,1,1,0,22.736086,22.736086,0,0,0,0,0,0,0,0,5.2994084,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,9,10,5,1,442,733779.56,574082.06,393514.25,21029.43,5004.2539 -4681,5782,10354,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.8050785,7.4876537,0,0,0,-1073.814,0,3,3,2019,14,3,35,40,1,3,0,9.0750313,9.0750313,0,0,0,0,7,1,1,0,0,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,508,-16689.088,112814.31,0,0,1813.6273 -4682,5783,10355,-9,10358,10356,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-937.47308,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,2,0,536,119591.91,0,139953.31,0,1157.0042 -4682,5783,10356,10358,-9,-9,1,1,21,2,2,0,2,2,-9,0,5,0,0,0,4,2,-55.062302,-9,-9,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,49.34,58.54,49.32,32.58,0,1,1,1,0,0,11,2,0,536,119591.91,0,139953.31,0,1157.0042 -4682,5783,10357,-9,10358,10356,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.724,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,2,0,536,119591.91,0,139953.31,0,1157.0042 -4682,5783,10358,10356,-9,-9,1,0,19,2,2,0,2,2,-9,0,3,5.0301585,5.4189048,0,4,-2,-138.03743,-9,-9,-9,2019,18,6,4,0,1,6,0,4.2827201,4.2827201,0,0,0,0,0,1,0,1,0,0,49.32,32.58,49.34,58.54,5,1,1,0,0,1,11,2,0,536,119591.91,0,139953.31,0,1157.0042 -4683,5784,10359,10360,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6915646,8.661067,0,26,-4,50.456303,0,3,2,2019,5,0,43,40,1,0,0,14.905368,14.905368,0,0,0,0,0,1,1,0,0,0,54.59,35.34,23.53,42.28,5,1,1,0,0,2,2,5,1,742.5,1291445.3,758584.5,206384.22,67004.594,3484.3047 -4683,5784,10360,10359,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,7.5565209,7.8766422,0,28,4,-90.878227,0,2,-9,2019,29,12,36,30,1,12,0,6.9918609,6.9918609,0,0,0,0,27,1,1,0,0,0,23.53,42.28,54.59,35.34,3.333333333333333,1,1,0,1,8,2,5,1,742.5,1291445.3,758584.5,206384.22,67004.594,3484.3047 -4683,5785,10361,-9,10360,10359,1,0,25,0,0,0,2,2,-9,0,4,7.7646275,7.607017,0,0,0,-1044.4254,0,2,2,2019,11,0,37,37,1,2,1,7.3639164,7.3639164,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,2,3,1,286,238715.5,29265.791,0,0,1090.3627 -4684,5786,10362,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.1848125,8.2537165,0,0,0,-992.04401,0,2,2,2019,7,0,50,54,1,0,0,6.7160354,6.7160354,0,0,0,0,0,1,1,0,0,0,61.85,44.55,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,751,357831.56,212402.92,0,0,1153.8993 -4685,5787,10363,-9,10366,10364,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.0979,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 -4685,5787,10364,10366,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.213851,8.923563,0,5,1,-37.259899,0,2,2,2019,18,8,35,40,1,8,0,25.43343,25.43343,0,0,0,0,0,1,1,0,2.195889,0,46.39,60.99,44.02,60.7,3.333333333333333,1,1,0,1,7,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 -4685,5787,10365,-9,10366,10364,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.5259,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 -4685,5787,10366,10364,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.0090332,8.3608074,5.6916661,5,-1,-67.604927,0,-9,-9,2019,11,0,23,17,1,0,0,21.300364,21.300364,0,0,0,0,0,1,1,0,6.5461931,0,44.02,60.7,46.39,60.99,8.333333333333334,1,1,0,0,6,8,5,1,634.5,-42169.086,133026.05,0,0,4625.7402 -4686,5788,10367,10368,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.2936292,7.402463,42,-4,-140.62584,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.9662104,7.4442573,58.46,44.55,58.15,52.91,8.333333333333334,1,1,0,0,0,10,5,1,179.5,1701552.8,639707.63,514785.75,0,4444.4238 -4686,5788,10368,10367,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.5743971,8.552762,42,4,1.790393,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9936221,8.659914,58.15,52.91,58.46,44.55,10,1,1,0,0,0,10,5,1,179.5,1701552.8,639707.63,514785.75,0,4444.4238 -4687,5789,10369,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.4918189,6.1498675,0,0,-1158.4531,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9671707,6.2009192,47.98,45.32,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,552,236438.36,82758.82,140092.44,0,867.79645 -4688,5790,10370,-9,10371,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.5039,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,658.66669,65724.727,0,0,0,1238.4271 -4688,5790,10371,-9,-9,-9,1,0,21,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1121.0829,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,658.66669,65724.727,0,0,0,1238.4271 -4688,5790,10372,-9,10371,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.578,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,658.66669,65724.727,0,0,0,1238.4271 -4689,5791,10373,10374,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,9.5483904,9.5156565,0,3,8,52.845997,0,2,1,2019,9,2,45,50,1,2,0,37.43441,37.43441,0,0,0,0,0,0,0,0,8.6047163,0,55.19,54.26,52.82,53.97,8.333333333333334,1,1,0,0,12,9,5,1,1110,125899.74,4389.542,0,0,7911.1514 -4689,5791,10374,10373,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.5384016,8.4985495,0,3,-8,-33.424862,-9,-9,-9,2019,6,0,38,0,1,0,0,15.474739,15.474739,0,0,0,0,0,0,0,0,1.2665088,0,52.82,53.97,55.19,54.26,8.333333333333334,1,1,0,0,1,9,5,1,1110,125899.74,4389.542,0,0,7911.1514 -4690,5792,10375,10376,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.8020191,8.7810678,0,8,0,17.270952,0,1,3,2019,10,1,50,35,1,1,0,11.640112,11.640112,0,0,0,0,0,0,0,0,3.543437,0,43.21,47.68,30.92,64.01000000000001,8.333333333333334,1,1,0,0,7,10,4,1,978.5,399698.34,280708.28,0,0,2431.6682 -4690,5792,10376,10375,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,6.0441027,6.0427465,0,8,9,-20.745674,0,2,2,2019,31,12,40,27,1,12,0,1.0610062,1.0610062,0,0,0,0,0,0,0,0,4.0082693,0,30.92,64.01000000000001,43.21,47.68,1.666666666666667,1,1,0,0,10,10,4,1,978.5,399698.34,280708.28,0,0,2431.6682 -4691,5793,10377,10378,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,7.7405796,7.7499557,0,11,-8,53.965511,0,1,1,2019,10,1,50,40,1,1,0,7.6672735,7.6672735,0,0,0,0,0,1,1,0,3.4873929,0,41.06,62.04,28.35,65.41,8.333333333333334,1,1,0,0,9,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 -4691,5793,10378,10377,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.6904912,8.0845966,6.0295472,11,8,-27.882021,0,1,1,2019,11,1,20,20,1,1,0,17.987354,17.987354,0,0,0,0,0,1,1,0,9.8611393,0,28.35,65.41,41.06,62.04,8.333333333333334,1,1,0,0,7,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 -4691,5793,10379,-9,10378,10377,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.0805,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 -4691,5793,10380,-9,10378,10377,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.2991,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,1146.75,966.5874,-20724.01,184534.44,119108.42,8163.5645 -4692,5794,10381,-9,-9,-9,1,0,68,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1110.1528,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,528,-237674.69,0,0,0,1463.3596 -4692,5795,10382,-9,10383,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-875.91156,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,1,1,572,-207282.08,-7357.772,0,0,1670.9335 -4692,5795,10383,-9,10381,-9,1,0,45,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1034.8193,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,34.12,31.82,-9,-9,5,1,1,0,0,0,10,1,1,572,-207282.08,-7357.772,0,0,1670.9335 -4692,5795,10384,-9,10383,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-857.52185,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,10,1,1,572,-207282.08,-7357.772,0,0,1670.9335 -4693,5796,10385,10386,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9400311,8.1336651,31,11,90.877731,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7593966,55.95,47.23,54.2,57.49,6.666666666666667,1,1,0,0,0,9,4,1,921.5,1237281.6,489883.5,600867.38,0,3656.8843 -4693,5796,10386,10385,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9803238,7.9097657,0,31,-11,-138.60318,0,3,2,2019,7,0,38,35,1,0,0,9.2800455,9.2800455,0,0,0,0,0,1,1,0,6.9051948,0,54.2,57.49,55.95,47.23,8.333333333333334,1,1,0,0,8,9,4,1,921.5,1237281.6,489883.5,600867.38,0,3656.8843 -4693,5797,10387,-9,10386,10385,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1070.3469,0,2,2,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,1.8645587,0,20.3,66.55,-9,-9,0,1,1,1,0,1,9,1,1,358,1730.0472,0,0,0,-610.6181 -4694,5798,10388,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.1000071,8.138586,4.2198901,0,0,-888.01886,0,3,2,2019,10,0,39,40,1,0,0,8.6167641,8.6167641,0,0,0,0,0,1,1,0,4.5305057,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1063,-195081.09,42522.027,0,0,1764.9126 -4695,5799,10389,10391,-9,-9,1,0,57,0,1,0,3,3,-9,0,2,0,0,0,6,-1,-35.414253,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.25,32.05,62.12,32.01,3.333333333333333,1,1,0,0,0,12,3,0,645,1378516.6,888439.88,233260.23,24813.902,1958.776 -4695,5799,10390,-9,10389,10391,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1058.9685,-9,3,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,12,3,0,645,1378516.6,888439.88,233260.23,24813.902,1958.776 -4695,5799,10391,10389,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,7.8578634,8.0183163,6.9992814,6,1,111.25848,0,-9,-9,2019,10,0,42,38,1,0,0,5.9839678,5.9839678,0,0,0,0,0,1,1,0,0,7.2195535,62.12,32.01,42.25,32.05,6.666666666666667,1,1,0,0,6,12,3,0,645,1378516.6,888439.88,233260.23,24813.902,1958.776 -4696,5800,10392,10393,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6859727,7.4980631,41,12,-42.774048,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1377058,7.7845106,61.19,36.58,49.84,44.96,8.333333333333334,1,1,0,0,5,5,4,1,1561,1710370,671556.38,322618.44,0,3036.3901 -4696,5800,10393,10392,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.4733338,7.7652035,41,-12,39.59354,0,2,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,8.1925869,7.2674718,49.84,44.96,61.19,36.58,8.333333333333334,1,1,0,0,11,5,4,1,1561,1710370,671556.38,322618.44,0,3036.3901 -4697,5801,10394,-9,10395,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1131.4945,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,1,0,1685.5,-135904.94,0,0,0,1152.075 -4697,5801,10395,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,0,0,0,0,0,-915.55432,0,3,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.34,28.45,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,1685.5,-135904.94,0,0,0,1152.075 -4698,5802,10396,-9,10398,10397,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.0518,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,320,20924.938,76665.977,0,0,2422.5376 -4698,5802,10397,10398,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.2045879,8.1491575,0,2,5,12.130472,0,-9,-9,2019,12,2,40,42,1,2,0,10.009923,10.009923,0,0,0,0,0,1,1,0,0,0,35.63,62.19,52.82,53.97,8.333333333333334,1,1,0,0,2,10,4,0,320,20924.938,76665.977,0,0,2422.5376 -4698,5802,10398,10397,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.3681664,7.3109231,0,2,-5,80.047516,0,2,-9,2019,6,0,24,42,1,0,0,6.9565964,6.9565964,0,0,0,0,0,1,1,0,0,0,52.82,53.97,35.63,62.19,10,1,1,0,0,5,10,4,0,320,20924.938,76665.977,0,0,2422.5376 -4699,5803,10399,-9,10401,10400,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.56812,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,369,830542.25,-11128.682,884090.75,322353.13,3000.0759 -4699,5803,10400,10401,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.3003635,8.5615578,0,7,-13,141.59837,0,-9,-9,2019,9,0,48,44,1,0,0,9.2222614,9.2222614,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,369,830542.25,-11128.682,884090.75,322353.13,3000.0759 -4699,5803,10401,10400,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.1838732,8.2494755,0,7,13,121.36238,0,2,3,2019,5,0,37,41,1,0,0,9.1385202,9.1385202,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,12,5,5,1,369,830542.25,-11128.682,884090.75,322353.13,3000.0759 -4700,5804,10402,-9,-9,-9,1,1,47,0,0,0,1,1,0,0,5,0,0,0,0,0,-1045.3855,-9,2,2,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,6.7224116,0,36.1,65.8,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,512,83462.883,0,0,0,735.32422 -4701,5805,10403,-9,10405,10404,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-844.09326,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 -4701,5805,10404,10405,-9,-9,1,1,38,1,3,0,2,2,-9,0,3,7.4350772,7.5333729,0,6,1,-129.41026,0,-9,-9,2019,10,0,40,40,1,0,0,4.8581572,4.8581572,0,0,0,0,0,1,1,0,0,0,45.98,56.3,54.37,54.8,5,1,1,0,0,9,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 -4701,5805,10405,10404,-9,-9,1,0,37,1,3,0,2,2,-9,0,3,0,7.1312308,7.2621212,6,-1,127.84577,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.1294942,0,54.37,54.8,45.98,56.3,8.333333333333334,1,1,0,0,1,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 -4701,5805,10406,-9,10405,10404,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.88074,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,493.5,-39040.25,-6684.9326,105954.24,66036.875,2585.8271 -4702,5806,10407,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6714849,9.129179,8.8278875,0,0,-978.03625,0,2,2,2019,17,6,36,36,1,6,0,7.7486639,7.7486639,0,0,0,0,2,0,0,0,8.8276224,6.3577299,44.57,46.8,-9,-9,5,1,1,0,0,10,12,5,1,1967,69026.086,0,43934.273,58923.758,4685.0947 -4702,5807,10408,-9,10407,-9,1,0,25,0,0,0,2,2,-9,0,2,7.6307807,7.5785007,0,0,0,-956.77795,-9,2,-9,2019,19,7,31,0,1,7,1,8.4067564,8.4067564,0,0,0,0,0,0,0,0,0,0,36.63,38.64,-9,-9,3.333333333333333,1,1,0,0,5,12,3,1,223,-133339.47,12850.125,0,0,1310.9882 -4703,5808,10409,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.2283125,9.2425594,0,0,0,-947.17749,0,-9,-9,2019,11,0,60,52,1,0,0,20.286215,20.286215,0,0,0,0,0,1,1,0,0,0,44.72,56.46,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,725,877288.44,263895,224014.73,145493.52,3196.6682 -4704,5809,10410,10411,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,6.941371,7.2912598,0,5,-4,40.13319,0,-9,-9,2019,16,4,20,18,1,4,0,6.4315853,6.4315853,0,0,0,0,0,1,1,0,.10000411,0,44.36,32.78,58.18,39.69,3.333333333333333,1,1,0,0,2,4,3,0,514.33331,86880.023,115598.88,109779.41,6147.4517,3510.0872 -4704,5809,10411,10410,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.3601723,8.1656418,0,5,4,-7.7761192,0,2,2,2019,8,0,56,38,1,0,0,8.2909164,8.2909164,0,0,0,0,0,1,1,0,0,0,58.18,39.69,44.36,32.78,6.666666666666667,1,1,0,0,3,4,3,0,514.33331,86880.023,115598.88,109779.41,6147.4517,3510.0872 -4704,5809,10412,-9,10410,10411,1,1,17,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1088.9844,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.2260354,0,45,51.17,-9,-9,6.666666666666667,1,1,1,1,0,4,3,0,514.33331,86880.023,115598.88,109779.41,6147.4517,3510.0872 -4704,5810,10413,-9,10410,10411,1,0,20,0,1,0,2,2,-9,0,4,7.3540325,7.6286945,0,0,0,-1055.9594,0,2,2,2019,10,0,33,0,1,0,1,4.2039576,4.2039576,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,5,1,1,0,1,3,4,3,0,1838,236171.14,0,57198.227,122218.15,304.57169 -4704,5811,10414,-9,10410,10411,1,0,22,0,1,0,2,2,-9,0,4,7.3126626,7.3316288,0,0,0,-965.3313,0,2,2,2019,11,0,36,36,1,2,1,4.9352131,4.9352131,0,0,0,0,0,1,1,0,.13957323,0,46,58,-9,-9,7,1,1,0,0,5,4,3,0,199,-126403.91,0,9162.6191,63523.379,554.47192 -4705,5812,10415,10417,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,7.9283381,8.0263786,0,7,-3,-9.1390896,0,2,2,2019,2,0,35,37,1,0,0,10.891569,10.891569,0,0,0,0,0,1,1,0,0,0,47.45,60.44,48.56,40.85,10,1,1,0,0,8,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 -4705,5812,10416,-9,10417,10415,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2874,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 -4705,5812,10417,10415,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.1143761,8.4766817,0,7,3,15.862398,0,-9,-9,2019,11,0,47,33,1,0,0,6.4457984,6.4457984,0,0,0,0,0,1,1,0,0,0,48.56,40.85,47.45,60.44,8.333333333333334,1,1,0,0,8,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 -4705,5812,10418,-9,10417,10415,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.2008,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,880.5,459618.53,42808.918,404566.19,68054.969,3049.3457 -4706,5813,10419,10420,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,5.3589554,5.6203804,41,-2,-67.27623,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9901783,5.4726949,59.07,43.05,55.19,54.26,1.666666666666667,1,1,0,0,2,10,5,1,894,2785728.5,2069078.8,493819.44,0,5757.833 -4706,5813,10420,10419,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.547205,9.8662033,0,42,2,-11.728621,0,2,2,2019,10,0,42,45,1,0,0,47.652973,47.652973,0,0,0,0,0,0,0,0,3.8655307,0,55.19,54.26,59.07,43.05,8.333333333333334,1,1,0,0,9,10,5,1,894,2785728.5,2069078.8,493819.44,0,5757.833 -4707,5814,10421,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.9052796,6.8000751,0,0,-937.33136,0,3,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,6.8328166,41.88,50.35,-9,-9,6.666666666666667,1,1,0,0,4,13,2,1,1153,1058156.4,230952.45,174446.58,0,1221.1531 -4708,5815,10422,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1007.7476,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.17554784,0,56.83,42.95,-9,-9,10,1,1,0,0,0,1,2,1,309,-2606.1719,0,0,0,1047.7549 -4708,5816,10423,-9,10422,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-888.17188,0,3,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,27.41,25.55,-9,-9,1.666666666666667,1,1,0,1,0,1,2,1,577,-197370.23,0,0,0,1052.5057 -4709,5817,10424,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.304595,8.1886044,0,0,0,-1023.5529,0,2,2,2019,6,2,56,37,1,2,0,6.0574112,6.0574112,0,0,0,0,0,0,0,0,0,0,41.84,45.85,-9,-9,8.333333333333334,3,4,0,1,11,2,4,0,954,393357.72,-6494.0859,107426.52,2168.0098,1289.7152 -4709,5818,10425,-9,10424,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-976.87396,-9,2,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.89,31.71,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,705,25392.072,0,0,0,0 -4710,5819,10426,10429,-9,-9,1,0,54,0,2,0,1,1,-9,0,5,8.7374496,8.2354803,0,6,3,45.283356,0,2,2,2019,6,0,35,36,1,0,0,17.242037,17.242037,0,0,0,0,0,1,1,0,1.3023829,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,3,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 -4710,5819,10427,-9,10426,10429,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.06128,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 -4710,5819,10428,-9,10426,10429,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7706,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 -4710,5819,10429,10426,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.1491117,9.0183477,0,6,-3,133.81667,0,3,1,2019,9,2,42,47,1,2,0,23.104866,23.104866,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,1611.5,1360621,576388.63,572943.31,41209.422,5064.2051 -4711,5820,10430,10432,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,8.3637981,8.1754103,0,24,1,1.2632015,0,2,2,2019,6,0,36,40,1,0,0,13.155924,13.155924,0,0,0,0,0,1,1,0,0,0,50.54,62.09,55.19,54.26,10,1,1,0,0,11,4,4,1,1232,-150036.81,146542.58,86864.453,89759.188,1958.1111 -4711,5820,10431,-9,10432,10430,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-973.96301,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,1232,-150036.81,146542.58,86864.453,89759.188,1958.1111 -4711,5820,10432,10430,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.7621932,6.7907224,0,22,-1,-109.73787,0,2,2,2019,9,0,25,14,1,0,0,4.6421156,4.6421156,0,0,0,0,0,1,1,0,0,0,55.19,54.26,50.54,62.09,8.333333333333334,1,1,0,0,9,4,4,1,1232,-150036.81,146542.58,86864.453,89759.188,1958.1111 -4712,5821,10433,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,5.7650661,5.4956112,0,0,-994.41107,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.9119892,5.4389205,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,363,375912.09,0,387091.69,0,-34.899204 -4713,5822,10434,10435,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5212746,8.6261959,0,2,11,12.253747,0,1,2,2019,12,3,55,50,1,3,0,10.683531,10.683531,0,0,0,0,0,0,0,0,1.1526111,0,48.87,58.55,41.3,60.77,6.666666666666667,1,1,0,0,8,6,4,1,915.5,200889.27,24546.916,119600.96,86525.555,3194.1577 -4713,5822,10435,10434,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,6.9978514,7.3211336,0,2,-11,113.9124,0,-9,-9,2019,20,8,30,19,1,8,0,3.574064,3.574064,0,0,0,0,0,0,0,0,0,0,41.3,60.77,48.87,58.55,8.333333333333334,1,1,0,0,5,6,4,1,915.5,200889.27,24546.916,119600.96,86525.555,3194.1577 -4714,5823,10436,10437,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,43,-2,-117.63441,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.75,29.45,48.45,57.49,8.333333333333334,1,1,0,0,0,4,3,1,910.5,710815.63,447774.38,143347.66,0,2391.2236 -4714,5823,10437,10436,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.8248014,7.7535367,43,2,-60.784473,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4168484,7.5587316,48.45,57.49,51.75,29.45,1.666666666666667,1,1,0,0,0,4,3,1,910.5,710815.63,447774.38,143347.66,0,2391.2236 -4715,5824,10438,10439,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.9116611,7.7627158,0,30,-1,16.117706,0,2,2,2019,11,0,30,30,1,0,0,8.262949,8.262949,0,0,0,0,0,0,0,0,0,0,41.93,57.79,40.21,58.24,8.333333333333334,1,1,0,0,13,10,5,1,1092,1930365,1340646.5,236007.75,0,4451.3271 -4715,5824,10439,10438,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.4284334,9.6448336,0,30,1,-45.309387,0,-9,2,2019,11,4,51,55,1,4,0,31.391661,31.391661,0,0,0,0,0,0,0,0,4.0210705,0,40.21,58.24,41.93,57.79,6.666666666666667,1,1,0,0,12,10,5,1,1092,1930365,1340646.5,236007.75,0,4451.3271 -4716,5825,10440,10441,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5487108,8.6242228,0,9,-1,90.528511,0,2,3,2019,13,1,47,45,1,1,0,13.913903,13.913903,0,0,0,0,0,0,0,0,0,0,46.78,40.54,43.29,49.04,8.333333333333334,1,1,0,0,10,12,5,1,294,736870.13,350658.28,256769.78,49441.406,5315.2314 -4716,5825,10441,10440,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3283443,9.3411942,0,9,1,36.398151,0,3,2,2019,22,11,43,40,1,11,0,30.535538,30.535538,0,0,0,0,0,0,0,0,3.1572046,0,43.29,49.04,46.78,40.54,3.333333333333333,1,1,0,0,10,12,5,1,294,736870.13,350658.28,256769.78,49441.406,5315.2314 -4716,5826,10442,-9,10440,10441,1,0,25,0,0,0,1,1,-9,0,4,7.8592167,8.1038942,0,0,0,-1018.0691,0,2,1,2019,12,0,36,40,1,0,1,9.7804108,9.7804108,0,0,0,0,0,0,0,0,3.4916995,0,43.35,51.94,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,233,0,0,0,0,567.40179 -4716,5827,10443,-9,10440,10441,1,1,20,0,0,1,2,0,0,0,5,0,6.6041322,6.7371402,0,0,-994.9649,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.0378017,0,54.1,59.11,-9,-9,10,1,1,0,0,2,12,2,1,375,-431958.25,0,0,0,826.69067 -4717,5828,10444,-9,10446,10445,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.963,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,473,454724.53,90610.203,269424.38,130070.09,3944.2734 -4717,5828,10445,10446,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.4303169,8.1723013,0,3,-2,-16.735205,0,1,1,2019,12,2,32,35,1,2,0,16.09033,16.09033,0,0,0,0,0,1,1,0,3.5688267,0,51.14,60.45,45.91,59.89,5,1,1,0,0,9,9,5,1,473,454724.53,90610.203,269424.38,130070.09,3944.2734 -4717,5828,10446,10445,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.3567791,8.5508823,6.0675869,3,2,124.98464,0,-9,-9,2019,13,2,37,40,1,2,0,15.674447,15.674447,0,0,0,0,0,1,1,0,6.7977123,0,45.91,59.89,51.14,60.45,3.333333333333333,2,3,0,0,9,9,5,1,473,454724.53,90610.203,269424.38,130070.09,3944.2734 -4718,5829,10447,10448,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9820652,8.2182007,0,28,-1,-188.4848,0,2,3,2019,10,1,40,40,1,1,0,7.8230281,7.8230281,0,0,0,0,0,0,0,0,0,0,62.43,40.11,52,55,8.333333333333334,1,1,0,0,10,4,5,1,1719,414007.59,120381.86,362926.56,0,3502.2813 -4718,5829,10448,10447,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4945831,7.9009123,0,8,1,-3.9215844,0,-9,-9,2019,9,0,40,42,1,1,0,12.330409,12.330409,0,0,0,0,0,0,0,0,0,0,52,55,62.43,40.11,8,1,1,0,0,1,4,5,1,1719,414007.59,120381.86,362926.56,0,3502.2813 -4719,5830,10449,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.7259641,7.3844538,0,0,0,-1015.5903,-9,-9,-9,2019,16,4,25,0,1,4,0,7.5871506,7.5871506,0,0,0,0,0,0,0,0,0,0,33.97,57.61,-9,-9,6.666666666666667,1,1,0,1,7,10,3,0,1333,283468.88,-214384.53,0,0,997.32611 -4720,5831,10450,10455,-9,-9,1,0,45,0,4,0,1,1,-9,0,4,7.7387738,7.4247398,0,8,-8,-71.314812,0,2,3,2019,12,1,38,33,1,1,0,7.1191077,7.1191077,0,0,0,0,0,1,1,0,0,0,38.84,54.05,18.64,52.44,6.666666666666667,1,1,0,0,10,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 -4720,5831,10451,-9,10450,10455,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.66211,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 -4720,5831,10452,-9,10450,10455,1,1,14,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1011.7253,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 -4720,5831,10453,-9,10450,10455,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1100.3055,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 -4720,5831,10454,-9,10450,10455,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-953.46039,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 -4720,5831,10455,10450,-9,-9,1,1,53,0,4,0,3,3,-9,0,2,0,0,0,8,8,81.062286,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,18.64,52.44,38.84,54.05,5,1,1,0,1,1,2,2,0,410.83334,6746.3843,-29216.869,0,0,2197.1104 -4721,5832,10456,10457,-9,-9,1,0,23,0,1,0,2,2,-9,0,1,0,5.3556595,4.6209683,6,-3,90.78418,0,-9,-9,2019,20,8,0,22,3,8,0,0,0,0,0,0,0,0,1,1,0,4.9622917,0,28.87,23.4,57.16,56.15,5,1,1,0,1,1,10,3,1,468,-144971.58,31991.912,0,0,1622.4655 -4721,5832,10457,10456,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,8.150856,8.0654306,0,6,3,8.5632601,0,-9,-9,2019,7,0,40,40,1,0,0,8.8568773,8.8568773,0,0,0,0,0,1,1,0,.46705255,0,57.16,56.15,28.87,23.4,8.333333333333334,1,1,0,0,9,10,3,1,468,-144971.58,31991.912,0,0,1622.4655 -4721,5832,10458,-9,10456,10457,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.7135,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,468,-144971.58,31991.912,0,0,1622.4655 -4722,5833,10459,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6835728,8.7208061,0,0,0,-1137.5875,0,3,3,2019,10,0,45,38,1,1,0,13.63064,13.63064,0,0,0,0,0,0,0,0,0,0,52,53,-9,-9,8,3,4,0,0,9,8,5,0,808,460640.88,510775.72,433698.31,71752.828,1585.046 -4723,5834,10460,10461,-9,-9,1,0,47,0,2,0,3,3,-9,0,4,7.7144694,8.118721,0,7,-2,62.183277,0,-9,-9,2019,10,0,20,0,1,1,0,12.619732,12.619732,0,0,0,0,0,1,1,0,.11098714,0,50,54,48.87,58.55,8,1,1,0,0,1,7,4,1,416.66666,-81354.492,-79647.758,307370.69,179691.39,3290.5645 -4723,5834,10461,10460,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5836325,8.7776365,0,20,2,61.808743,0,2,2,2019,10,0,60,80,1,0,0,9.8863888,9.8863888,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50,54,8.333333333333334,1,1,0,0,9,7,4,1,416.66666,-81354.492,-79647.758,307370.69,179691.39,3290.5645 -4723,5834,10462,-9,10460,10461,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1185.8569,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,416.66666,-81354.492,-79647.758,307370.69,179691.39,3290.5645 -4724,5835,10463,10464,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.9847851,6.9998298,48,-2,-25.091328,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,2.6234283,2.4590504,25.324593,0,1,1,0,0,6.8876424,58.89,48.6,58.32,50.22,10,1,1,0,0,0,9,3,1,558.5,904603.88,450544.69,401932.63,0,2709.7568 -4724,5835,10464,10463,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.76897,8.0852261,48,2,61.48732,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5984659,58.32,50.22,58.89,48.6,8.333333333333334,1,1,0,0,0,9,3,1,558.5,904603.88,450544.69,401932.63,0,2709.7568 -4725,5836,10465,10466,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,4.7603035,4.5973392,58,-5,93.928627,0,3,2,2019,13,3,0,0,4,3,0,0,0,1,0,1.7800424,0,0,1,0,1,3.5550897,4.6469169,38.35,31.42,32.73,30.02,3.333333333333333,1,1,0,0,0,9,2,1,733,518479.19,208128.2,437458.16,0,1670.9727 -4725,5836,10466,10465,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.1223755,7.3541727,58,5,111.36308,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,27,1,0,1,3.2183988,7.6638689,32.73,30.02,38.35,31.42,3.333333333333333,1,1,0,1,0,9,2,1,733,518479.19,208128.2,437458.16,0,1670.9727 -4726,5837,10467,10468,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.8141007,5.840724,40,-2,13.401738,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.1445274,6.0028076,45.07,38.73,51.26,36.16,5,1,1,0,0,0,1,2,0,611,193255.63,67291.828,169594.72,0,1508.3911 -4726,5837,10468,10467,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,40,2,24.624752,0,3,2,2019,6,1,0,0,4,1,0,0,0,1,0,37.606117,0,0,1,1,0,0,0,51.26,36.16,45.07,38.73,0,1,1,0,0,0,1,2,0,611,193255.63,67291.828,169594.72,0,1508.3911 -4727,5838,10469,10470,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.4403553,8.2885685,0,7,-1,-139.37427,0,2,2,2019,13,3,40,51,1,3,0,14.822941,14.822941,0,0,0,0,0,0,0,0,0,0,41.47,58.08,49.21,36.61,6.666666666666667,1,1,0,0,8,11,5,1,730.5,1615565.5,1399750.5,177761.44,119700.33,3271.4634 -4727,5838,10470,10469,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6233435,8.6126194,0,7,1,2.7526696,0,2,2,2019,7,0,37,37,1,0,0,14.318497,14.318497,0,0,0,0,0,0,0,0,0,0,49.21,36.61,41.47,58.08,6.666666666666667,1,1,0,0,8,11,5,1,730.5,1615565.5,1399750.5,177761.44,119700.33,3271.4634 -4728,5839,10471,10475,-9,-9,1,1,43,0,3,0,3,3,-9,0,4,8.4406357,8.4410934,0,1,9,-46.602016,-9,3,1,2019,9,0,40,0,1,1,0,14.03263,14.03263,0,0,0,0,0,1,1,0,0,0,52,56,48,56,8,2,3,0,0,9,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 -4728,5839,10472,-9,10475,10471,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.2802,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 -4728,5839,10473,-9,10475,10471,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.84283,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 -4728,5839,10474,-9,10475,10471,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.54437,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 -4728,5839,10475,10471,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,7.5470157,7.4353805,0,1,0,-108.05347,-9,3,3,2019,11,0,28,0,1,2,0,6.0653005,6.0653005,0,0,0,0,0,1,1,0,0,0,48,56,52,56,7,2,3,0,0,4,8,3,1,1059.6,444391,81296.633,490592.38,79482.609,2591.5044 -4729,5840,10476,10479,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,0,0,0,22,-7,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 -4729,5840,10477,-9,10476,10479,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.449,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 -4729,5840,10478,-9,10476,10479,1,0,17,1,3,1,2,0,0,0,4,0,0,0,0,0,-1089.656,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 -4729,5840,10479,10476,-9,-9,1,1,45,1,3,0,3,3,-9,1,4,0,0,0,22,7,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 -4729,5840,10480,-9,10476,10479,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.5482,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 -4729,5840,10481,-9,10476,10479,1,0,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-962.24701,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,1,0,820.66669,-2752.8137,0,0,0,2487.8389 -4729,5841,10482,-9,10476,10479,1,1,19,1,3,1,2,0,0,0,4,0,0,0,0,0,-966.91742,-9,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,885,0,0,0,0,-454.11017 -4730,5842,10483,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.6817923,8.622757,0,0,0,-1097.2784,0,2,2,2019,20,9,36,36,1,9,0,23.333969,23.333969,0,0,0,0,0,0,0,0,2.3945031,0,14.91,68.97,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,333,326973.94,64163.684,283207.03,79058.438,3042.8057 -4731,5843,10484,10485,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.6755996,5.5352268,43,6,-130.57362,0,2,3,2019,7,0,0,15,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6466165,5.4403138,63.26,45.23,62.49,55.09,8.333333333333334,1,1,0,0,12,6,2,1,356.5,195790.27,98766.516,215219.91,0,926.43079 -4731,5843,10485,10484,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.5640092,6.307786,43,-6,-25.310728,0,2,2,2019,7,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2799249,6.1869001,62.49,55.09,63.26,45.23,8.333333333333334,1,1,0,0,12,6,2,1,356.5,195790.27,98766.516,215219.91,0,926.43079 -4732,5844,10486,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.9501657,8.9315014,0,0,0,-927.492,-9,2,1,2019,7,0,40,0,1,0,0,22.34799,22.34799,0,0,0,0,0,0,0,0,6.3582306,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,572,949144.75,-14901.501,424332.84,0,3166.0059 -4732,5845,10487,-9,10486,-9,1,1,21,0,0,1,2,0,0,0,5,0,6.8733382,6.9814439,0,0,-983.66974,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.0679722,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,517,174637.13,0,0,0,964.32959 -4733,5846,10488,10490,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,7.6919661,7.7519541,0,3,1,20.83959,0,-9,-9,2019,8,0,60,55,1,0,0,4.9946136,4.9946136,0,0,0,0,0,1,1,0,0,0,48.87,58.55,43.49,45.06,8.333333333333334,1,1,0,0,8,10,3,1,745.33331,181048.14,0,297520.75,103376.38,2247.6667 -4733,5846,10489,-9,10490,10488,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.90137,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,10,3,1,745.33331,181048.14,0,297520.75,103376.38,2247.6667 -4733,5846,10490,10488,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,7.5955563,7.5287313,0,3,-1,44.049305,0,2,2,2019,18,6,25,24,1,6,0,9.7987299,9.7987299,0,0,0,0,0,1,1,0,0,0,43.49,45.06,48.87,58.55,10,1,1,0,0,7,10,3,1,745.33331,181048.14,0,297520.75,103376.38,2247.6667 -4734,5847,10491,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,8.1504335,7.9840193,0,0,0,-1110.8256,-9,2,2,2019,12,0,40,0,1,0,0,11.029198,11.029198,0,0,0,0,0,0,0,0,.090993658,0,54.23,49.6,-9,-9,5,1,1,0,0,9,12,4,0,1513,-44444.336,0,94746.641,93365.133,1812.7889 -4735,5848,10492,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8482952,8.744812,0,0,0,-1033.1716,0,3,3,2019,10,0,39,39,1,0,0,21.040451,21.040451,0,0,0,0,0,1,1,0,1.8342897,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,900,1035904.7,857939.44,157958.59,39316.691,1990.903 -4736,5849,10493,10495,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.0929546,8.0588722,0,21,8,151.48004,0,-9,-9,2019,9,0,35,30,1,1,0,9.4099007,9.4099007,0,0,0,0,0,1,1,0,0,0,52,55,45.96,59.33,8,1,1,0,0,1,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 -4736,5849,10494,-9,10495,10493,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.50458,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 -4736,5849,10495,10493,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.0672369,7.96979,0,19,-8,97.105736,0,3,2,2019,9,0,67,52,1,0,0,5.1064215,5.1064215,0,0,0,0,0,1,1,0,0,0,45.96,59.33,52,55,6.666666666666667,1,1,0,0,8,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 -4736,5849,10496,-9,10495,10493,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1037.109,-9,2,1,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,761.5,213391.23,38084.723,241873.81,184621.09,2562.5889 -4737,5850,10497,10498,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.6988649,9.3651485,0,8,2,-12.044541,-9,3,-9,2019,10,0,40,0,1,1,0,43.770695,43.770695,0,0,0,0,0,1,1,0,0,0,50,49,51.14,60.45,7,1,1,0,0,1,11,5,1,662,1814990.9,1410119.8,372492.06,66805.906,9501.4551 -4737,5850,10498,10497,-9,-9,1,0,55,0,0,0,3,3,-9,0,5,7.8585119,7.8294353,0,8,-2,-20.177393,0,3,3,2019,8,0,47,46,1,0,0,6.230454,6.230454,0,0,0,0,0,1,1,0,0,0,51.14,60.45,50,49,8.333333333333334,1,1,0,0,5,11,5,1,662,1814990.9,1410119.8,372492.06,66805.906,9501.4551 -4738,5851,10499,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.0517821,7.0417428,0,0,-999.50519,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,3.0008645,9.7230406,28.673727,0,1,1,0,6.2484684,7.3123431,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,365,663124.44,107624.32,420158.16,0,1103.6909 -4739,5852,10500,10501,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,4.6487055,4.3523545,54,2,-8.9207287,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,4.4278207,38.28,39.1,61.04,39.41,6.666666666666667,1,1,0,0,0,7,3,1,846.5,642253.13,253880.34,585585.25,0,2489.9282 -4739,5852,10501,10500,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.7231369,7.5735664,54,-2,16.658237,0,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.6490889,7.4326873,61.04,39.41,38.28,39.1,8.333333333333334,1,1,0,0,0,7,3,1,846.5,642253.13,253880.34,585585.25,0,2489.9282 -4740,5853,10502,10503,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.0848188,7.9560766,0,4,-5,33.660217,0,3,1,2019,7,0,38,37,1,0,0,8.7889442,8.7889442,0,0,0,0,0,0,0,0,2.3835669,0,54.1,59.11,48.27,45.05,8.333333333333334,1,1,0,0,9,7,5,1,746,1194372,501143.5,472330.59,0,3386.1135 -4740,5853,10503,10502,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.6578388,8.6680622,6.3772702,4,5,-8.2955399,0,-9,-9,2019,9,0,45,45,1,0,0,11.395988,11.395988,0,0,0,0,0,0,0,0,4.9224739,6.4398575,48.27,45.05,54.1,59.11,6.666666666666667,1,1,0,0,1,7,5,1,746,1194372,501143.5,472330.59,0,3386.1135 -4741,5854,10504,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,6.989953,7.3028016,0,0,0,-1124.0454,0,3,3,2019,9,0,45,45,1,0,0,2.7935152,2.7935152,0,0,0,0,0,1,1,0,0,0,55.74,47.8,-9,-9,5,1,1,0,0,9,11,2,1,954,-178266.09,-111265.09,0,0,1129.8109 -4742,5855,10505,10506,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.5333171,7.7687817,34,8,78.840408,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2246201,7.8264589,57.33,53.46,59.71,50.89,8.333333333333334,1,1,0,0,8,4,4,1,1407.5,768160.19,702362.38,177279.14,0,3020.7495 -4742,5855,10506,10505,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.0254173,7.8847132,0,37,-8,95.433998,0,2,3,2019,7,0,35,36,1,0,0,11.457657,11.457657,0,0,0,0,2,1,1,0,3.8773065,0,59.71,50.89,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,1407.5,768160.19,702362.38,177279.14,0,3020.7495 -4742,5856,10507,-9,10506,10505,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.8293,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,1.571157,0,48.68,47.62,-9,-9,8.333333333333334,1,1,1,0,6,4,1,1,1326,147270.23,0,0,0,-102.96067 -4743,5857,10508,-9,10511,10510,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.07489,-9,2,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 -4743,5857,10509,-9,10511,10510,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.454,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 -4743,5857,10510,10511,-9,-9,1,1,42,0,2,0,3,3,-9,0,3,8.2461042,8.7169657,0,16,-2,5.4192109,0,2,2,2019,4,0,50,50,1,0,0,12.045514,12.045514,0,0,0,0,0,1,1,0,0,0,58.89,48.6,40.89,53.59,1.666666666666667,1,1,0,0,9,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 -4743,5857,10511,10510,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.747067,7.5977049,6.5100651,16,2,-43.969124,0,2,2,2019,12,0,40,31,1,0,0,5.2218714,5.2218714,0,0,0,0,0,1,1,0,6.5925274,0,40.89,53.59,58.89,48.6,6.666666666666667,1,1,0,0,7,7,4,1,742.75,422126.91,281711.66,210344.31,19670.219,3429.6372 -4744,5858,10512,10513,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.5623193,7.0180621,10,-8,143.43178,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6669316,6.7350006,68.57000000000001,41.34,66.2,41.05,10,1,1,0,0,4,7,2,1,383,465259.69,133707.59,700334,0,2174.4902 -4744,5858,10513,10512,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,2.8887148,2.8673108,10,8,43.771015,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4858265,3.3143854,66.2,41.05,68.57000000000001,41.34,10,1,1,0,0,0,7,2,1,383,465259.69,133707.59,700334,0,2174.4902 -4745,5859,10514,-9,10515,-9,1,1,26,0,0,0,2,2,-9,0,5,8.0309525,8.1002903,0,0,0,-1044.8706,0,3,3,2019,7,0,41,42,1,0,1,6.673945,6.673945,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,392,-34368.59,-264.02713,0,0,1056.4635 -4745,5860,10515,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.067409,7.101028,0,0,0,-902.85803,0,3,3,2019,8,0,12,16,1,0,0,9.15098,9.15098,0,0,0,0,2,0,0,0,0,0,39.22,55.19,-9,-9,8.333333333333334,2,3,0,1,2,8,2,0,387,258749.39,0,0,0,687.30457 -4745,5861,10516,-9,10515,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-922.00629,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.81705296,0,55.36,54.24,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,2423,0,0,0,0,-280.85574 -4746,5862,10517,10520,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,4.7281046,4.881299,0,10,5,-84.453964,0,3,3,2019,13,1,30,10,1,1,0,.46120685,.46120685,0,0,0,0,2,1,1,0,0,0,41.1,49.99,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 -4746,5862,10518,-9,10517,10520,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.1466,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 -4746,5862,10519,-9,10517,10520,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.13959,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 -4746,5862,10520,10517,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.8010311,9.4577551,0,8,-5,-34.755703,0,2,2,2019,6,0,80,72,1,0,0,21.366093,21.366093,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.1,49.99,8.333333333333334,1,1,0,0,10,8,5,0,819,1890160.3,1253340.8,860212.38,227077.81,3814.1196 -4746,5863,10521,-9,10517,10520,1,1,24,0,2,0,2,2,-9,0,4,8.14569,7.75248,0,0,0,-1014.3894,0,2,3,2019,12,0,60,0,1,0,1,6.347178,6.347178,0,0,0,0,0,1,1,0,0,0,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,0,8,4,0,639,254288.64,0,0,0,524.20221 -4747,5864,10522,-9,10524,10523,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.7029,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,1118.3334,740063.13,341792.38,338001.75,175541.8,2991.1133 -4747,5864,10523,10524,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,7.4618492,7.3813376,0,2,-4,-70.441772,0,-9,-9,2019,6,0,25,30,1,0,0,10.380937,10.380937,0,0,0,0,0,1,1,0,5.6298065,0,49.3,59.89,42.5,63.22,8.333333333333334,1,1,0,0,2,10,4,0,1118.3334,740063.13,341792.38,338001.75,175541.8,2991.1133 -4747,5864,10524,10523,-9,-9,1,0,39,1,1,0,1,1,-9,0,5,8.2946415,8.2881317,0,2,4,75.285233,0,1,1,2019,13,3,30,30,1,3,0,17.021385,17.021385,0,0,0,0,0,1,1,0,3.7411602,0,42.5,63.22,49.3,59.89,8.333333333333334,1,1,0,0,1,10,4,0,1118.3334,740063.13,341792.38,338001.75,175541.8,2991.1133 -4748,5865,10525,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.4317,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,5,2,1,1,384,99558.414,0,0,0,314.76047 -4749,5866,10526,10527,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.1990738,7.9010019,39,0,-3.909935,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6576238,8.2098551,48.94,54.95,58.33,47.36,8.333333333333334,1,1,0,0,10,9,4,1,564.5,1789850.8,1101897.1,457719.38,0,3926.4766 -4749,5866,10527,10526,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.9814291,6.9846644,39,0,131.53528,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6934376,6.8181443,58.33,47.36,48.94,54.95,10,1,1,0,0,5,9,4,1,564.5,1789850.8,1101897.1,457719.38,0,3926.4766 -4750,5867,10528,10529,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.4912424,8.5778952,0,3,6,-73.238266,0,-9,-9,2019,9,0,37,36,1,1,0,14.244772,14.244772,0,0,0,0,0,1,1,0,0,0,54,53,51,54,8,3,4,0,0,9,8,5,1,809.5,624349.56,527808.63,468763.28,91936.539,3273.6157 -4750,5867,10529,10528,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.2604666,7.9852428,0,3,-6,-4.4407229,0,-9,-9,2019,10,0,37,35,1,1,0,13.39242,13.39242,0,0,0,0,0,1,1,0,0,0,51,54,54,53,8,1,1,0,0,1,8,5,1,809.5,624349.56,527808.63,468763.28,91936.539,3273.6157 -4750,5868,10530,-9,10529,-9,1,0,21,0,1,0,2,2,-9,0,4,7.3538122,7.0759087,0,0,0,-1046.458,0,2,-9,2019,11,0,28,35,1,2,1,6.9382105,6.9382105,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,4,2,0,0,1,8,3,1,1276,8420.1504,0,0,0,13.832555 -4751,5869,10531,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,5,0,5.2425218,4.7207847,0,0,-899.32532,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.836164,5.168128,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,543,278265.28,60898.328,0,0,1524.0942 -4752,5870,10532,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,0,3.5809755,3.7323816,0,0,-1007.0991,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6265807,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,563,-53531.367,186066.48,0,0,709.83777 -4753,5871,10533,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.9923372,9.0002165,0,0,0,-1045.0076,0,1,2,2019,25,11,44,44,1,11,0,14.900678,14.900678,0,0,0,0,0,0,0,0,8.2830696,0,31.34,62.72,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,1211,363597.69,232472.83,298928.56,283340.41,4428.6475 -4754,5872,10534,10536,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.9548321,8.9649792,0,11,-2,-15.23243,0,3,3,2019,8,0,44,38,1,0,0,19.180847,19.180847,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,12,9,4,1,938,537261.88,288107.38,323769.03,13167.859,3348.4563 -4754,5872,10535,-9,10536,10534,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.63629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,938,537261.88,288107.38,323769.03,13167.859,3348.4563 -4754,5872,10536,10534,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.1660018,6.9413447,0,11,2,-33.343124,0,3,3,2019,10,0,40,38,1,0,0,5.0321794,5.0321794,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,12,9,4,1,938,537261.88,288107.38,323769.03,13167.859,3348.4563 -4754,5873,10537,-9,10536,10534,1,1,18,0,1,1,2,0,0,0,4,0,6.286963,6.4578915,0,0,-1048.0601,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.0112782,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,632,-57542.691,0,0,0,595.70032 -4755,5874,10538,10542,-9,-9,1,0,37,1,4,0,2,2,-9,1,2,0,0,0,7,-4,0,0,3,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,0,0,35.93,24.23,11.72,49.09,3.333333333333333,1,1,0,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 -4755,5874,10539,-9,10538,10542,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.9307,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 -4755,5874,10540,-9,10538,10542,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.5696,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 -4755,5874,10541,-9,10538,10542,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-823.62769,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 -4755,5874,10542,10538,-9,-9,1,1,41,1,4,0,3,3,-9,1,2,0,0,0,7,4,0,0,3,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,11.72,49.09,35.93,24.23,1.666666666666667,1,1,0,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 -4755,5874,10543,-9,10538,10542,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-905.70062,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,421,92793.063,-12296.502,92918.148,34728.281,2864.248 -4756,5875,10544,10545,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.3476086,8.3309746,0,6,2,-50.288906,0,2,2,2019,13,1,38,38,1,1,0,11.9722,11.9722,0,0,0,0,0,0,0,0,0,0,40.27,50.59,50.03,52.62,6.666666666666667,1,1,0,0,8,1,5,0,1139.5,301150.91,193829.25,62216.539,28986.863,3419.6672 -4756,5875,10545,10544,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2662172,8.5330563,0,6,-2,77.703323,0,-9,-9,2019,7,0,38,38,1,0,0,15.51649,15.51649,0,0,0,0,0,0,0,0,7.0990663,0,50.03,52.62,40.27,50.59,8.333333333333334,1,1,0,0,6,1,5,0,1139.5,301150.91,193829.25,62216.539,28986.863,3419.6672 -4757,5876,10546,10547,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,7.7605996,7.5596137,0,10,0,-93.52742,0,-9,-9,2019,12,2,27,17,1,2,0,9.4151812,9.4151812,0,0,0,0,0,1,1,0,.7986905,0,46.99,58.02,57.06,57.76,8.333333333333334,1,1,0,0,10,12,4,1,324.33334,497872.78,290965.41,129138.86,130884.77,2979.2122 -4757,5876,10547,10546,-9,-9,1,1,50,0,2,0,2,2,-9,0,5,8.2813807,8.4795933,0,10,0,-14.449712,0,2,2,2019,7,0,38,42,1,0,0,14.081614,14.081614,0,0,0,0,0,1,1,0,7.4179506,0,57.06,57.76,46.99,58.02,10,1,1,0,0,10,12,4,1,324.33334,497872.78,290965.41,129138.86,130884.77,2979.2122 -4757,5876,10548,-9,10546,10547,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.1056,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,324.33334,497872.78,290965.41,129138.86,130884.77,2979.2122 -4758,5877,10549,10550,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.8394613,8.6777315,0,3,5,.12193809,0,2,2,2019,8,0,42,42,1,0,0,16.053427,16.053427,0,0,0,0,0,0,0,0,0,0,57.06,57.76,19.8,41.54,8.333333333333334,1,1,0,0,8,5,5,1,180,393680.56,402605.91,241616.63,81713.359,3456.4209 -4758,5877,10550,10549,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.4148765,7.5385766,0,3,-5,98.315796,0,-9,-9,2019,35,12,25,35,1,12,0,6.556726,6.556726,0,0,0,0,0,0,0,0,5.7353201,0,19.8,41.54,57.06,57.76,3.333333333333333,1,1,0,0,8,5,5,1,180,393680.56,402605.91,241616.63,81713.359,3456.4209 -4759,5878,10551,10552,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,7.9965162,7.768517,0,40,-2,81.046669,0,2,3,2019,6,0,33,42,1,0,0,10.142326,10.142326,0,0,0,0,0,1,1,0,0,0,59.55,43.22,62.4,48.33,6.666666666666667,1,1,0,0,11,10,5,1,502.5,842650,444777.31,425727.88,0,3656.7168 -4759,5878,10552,10551,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.3754787,8.2853966,0,41,2,-22.375313,0,3,3,2019,6,0,48,48,1,0,0,11.314056,11.314056,0,0,0,0,0,1,1,0,0,0,62.4,48.33,59.55,43.22,8.333333333333334,1,1,0,0,11,10,5,1,502.5,842650,444777.31,425727.88,0,3656.7168 -4760,5879,10553,10554,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.0133724,8.9246006,0,33,2,-115.54611,0,2,2,2019,6,0,41,40,1,0,0,27.716341,27.716341,0,0,0,0,0,0,0,0,3.2716384,0,57.06,57.76,56.35,51,10,1,1,0,0,10,13,5,1,749,2544003.5,2071070.4,311978.97,42137.203,3707.7656 -4760,5879,10554,10553,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.3526697,7.6356378,6.037775,9,-2,14.259777,0,-9,-9,2019,7,0,30,30,1,0,0,6.3176389,6.3176389,0,0,0,0,0,0,0,0,6.6311722,0,56.35,51,57.06,57.76,10,1,1,0,0,10,13,5,1,749,2544003.5,2071070.4,311978.97,42137.203,3707.7656 -4761,5880,10555,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.6000948,7.8195558,0,0,0,-978.50726,0,3,2,2019,12,0,60,10,1,0,0,4.131155,4.131155,0,0,0,0,2,1,1,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,217,-134313.09,0,0,0,3213.5522 -4761,5881,10556,-9,10555,-9,1,0,23,0,0,0,2,2,-9,0,3,7.9011102,8.1100416,0,0,0,-984.77356,0,1,2,2019,14,2,60,46,1,2,1,4.3802857,4.3802857,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,10,1,1,0,0,8,9,3,1,179,42558.016,0,0,0,1232.2814 -4761,5882,10557,-9,10555,-9,1,1,19,0,0,0,2,2,1,0,3,6.9358959,6.9344521,0,0,0,-943.85931,-9,2,-9,2019,7,0,26,0,1,0,1,4.4056191,4.4056191,0,0,0,0,0,1,1,0,0,0,52.25,53.24,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,333,-352159.81,194774.61,0,0,1073.6041 -4762,5883,10558,-9,10560,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.7775,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,1286.3334,124080.54,0,0,0,1792.016 -4762,5883,10559,-9,10560,-9,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-1058.8612,-9,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,4,2,0,0,1,6,3,0,1286.3334,124080.54,0,0,0,1792.016 -4762,5883,10560,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.3066673,7.5195322,5.2165451,0,0,-1053.2489,0,3,-9,2019,10,0,21,25,1,1,0,6.0016904,6.0016904,0,0,0,0,0,1,1,0,4.7654967,0,50,55,-9,-9,8,1,1,0,0,4,6,3,0,1286.3334,124080.54,0,0,0,1792.016 -4763,5884,10561,10562,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,9,-2,109.94886,0,3,3,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,120,1,1,0,0,0,38,24,29.54,34.21,0,1,1,0,0,8,10,2,1,997.5,618958.94,354466.13,195867.7,0,2251.0435 -4763,5884,10562,10561,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.2097416,7.1007209,9,2,-84.830208,0,-9,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.5916247,7.2332077,29.54,34.21,38,24,1.666666666666667,1,1,0,0,0,10,2,1,997.5,618958.94,354466.13,195867.7,0,2251.0435 -4764,5885,10563,10564,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.4867525,8.3614788,10,4,-75.780899,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.36094,8.6064358,59.43,49.68,58.89,48.6,8.333333333333334,1,1,0,0,0,2,4,1,663.5,672372.38,383622.06,118708.03,0,5114.1885 -4764,5885,10564,10563,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.8726864,7.1428475,10,-4,-69.454498,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0692015,6.776895,58.89,48.6,59.43,49.68,10,1,1,0,0,0,2,4,1,663.5,672372.38,383622.06,118708.03,0,5114.1885 -4765,5886,10565,10568,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,7.9117007,7.8969774,0,7,4,89.956795,0,-9,2,2019,8,0,41,38,1,0,0,6.4271092,6.4271092,0,0,0,0,0,1,1,0,0,0,52.99,51.28,37.58,59.68,8.333333333333334,1,1,0,0,6,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 -4765,5886,10566,-9,10568,10565,1,0,16,0,2,1,2,0,-9,0,4,0,6.0328383,5.759892,0,0,-954.39722,-9,1,2,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,5.6223664,0,34.62,61.03,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 -4765,5886,10567,-9,10568,10565,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.66351,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 -4765,5886,10568,10565,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.5271416,8.6075201,0,7,-4,102.14111,0,2,-9,2019,11,0,51,45,1,0,0,10.952025,10.952025,0,0,0,0,0,1,1,0,0,0,37.58,59.68,52.99,51.28,6.666666666666667,1,1,0,0,7,2,4,1,578,324643.34,289524.56,137233.84,30649.635,3566.0669 -4766,5887,10569,10570,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,4,3,154.14584,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.48,60.05,5,2,3,0,0,8,2,3,1,917.66669,54478.242,-10580.539,0,0,1123.7657 -4766,5887,10570,10569,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,7.7346168,8.0172968,0,4,-3,-95.80674,0,-9,-9,2019,11,0,38,35,1,0,0,9.0218344,9.0218344,0,0,0,0,0,0,0,0,0,0,40.48,60.05,57.16,56.15,5,1,1,0,0,3,2,3,1,917.66669,54478.242,-10580.539,0,0,1123.7657 -4766,5887,10571,-9,10569,10570,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.5427,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,2,3,1,917.66669,54478.242,-10580.539,0,0,1123.7657 -4767,5888,10572,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,8.5030079,8.5996208,0,0,0,-1054.6772,0,1,1,2019,16,6,44,38,1,6,0,12.227621,12.227621,0,0,0,0,0,0,0,0,0,0,42.97,48.02,-9,-9,1.666666666666667,1,1,0,0,4,12,5,1,543,20324.896,31217.463,0,0,1446.6208 -4768,5889,10573,10574,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,8.0672855,7.8468032,58,1,-9.7397013,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9063101,8.1203051,62.25,48.33,56.79,38.59,8.333333333333334,1,1,0,0,0,9,4,1,570,899099.75,603396.75,293429,0,3118.064 -4768,5889,10574,10573,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.0848851,7.1692338,58,-1,138.42473,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8572168,56.79,38.59,62.25,48.33,8.333333333333334,1,1,0,0,0,9,4,1,570,899099.75,603396.75,293429,0,3118.064 -4769,5890,10575,-9,10578,10576,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.5942,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 -4769,5890,10576,10578,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,7.3223138,7.3520432,0,2,3,-19.236458,-9,-9,-9,2019,10,0,40,0,1,1,0,5.160285,5.160285,0,0,0,0,0,1,1,0,0,0,50,57,62.39,56.71,7,4,2,0,0,1,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 -4769,5890,10577,-9,10578,10576,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.68323,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 -4769,5890,10578,10576,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,0,0,0,2,-3,-52.929287,0,2,3,2019,1,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,50,57,10,4,2,0,0,1,5,2,0,1016,130490.84,86628.625,150342.2,0,2502.6509 -4770,5891,10579,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2456741,8.4627905,0,0,0,-1087.6168,0,3,3,2019,7,0,45,41,1,0,0,12.672832,12.672832,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,1061,682354.94,-67123.078,190925.91,365.63715,2022.8214 -4771,5892,10580,10581,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-60.41695,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.4803929,0,50,47,53,47,7,1,1,0,0,0,8,2,1,943,668816.88,133204.66,310647.53,0,1389.8062 -4771,5892,10581,10580,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.6170206,6.6876531,7,3,-106.63313,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.589951,7.0694556,53,47,50,47,7,1,1,0,0,2,8,2,1,943,668816.88,133204.66,310647.53,0,1389.8062 -4772,5893,10582,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0146847,8.2321854,0,0,0,-1013.3043,0,3,3,2019,10,0,37,37,1,0,0,9.669734,9.669734,0,0,0,0,0,0,0,0,0,0,56.37,40.21,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,799,326148.59,79375.75,36403.754,38259.066,1870.6904 -4773,5894,10583,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-900.44073,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,1.5673567,0,25.145845,0,1,1,0,3.6108568,0,51.17,33.45,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,234,-54439.559,0,0,0,433.93713 -4774,5895,10584,10585,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9813633,9.4424562,4.9656639,1,0,94.846657,0,2,2,2019,6,0,39,40,1,0,0,20.170698,20.170698,0,0,0,0,0,0,0,0,4.3540459,5.4839482,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,1,666.5,1692721,1380466.8,266240.5,118236.22,4983.5762 -4774,5895,10585,10584,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.8069496,8.7278719,0,1,0,-91.18969,-9,-9,-9,2019,3,0,48,0,1,0,0,17.333166,17.333166,0,0,0,0,0,0,0,0,3.2401683,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,10,5,1,666.5,1692721,1380466.8,266240.5,118236.22,4983.5762 -4775,5896,10586,10587,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.0238199,7.7777019,39,3,-9.4674549,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.794723,7.5822296,46.43,48.93,52,23.32,10,1,1,0,0,6,6,4,1,697.5,1064641.4,966405.88,148228.84,0,3213.0669 -4775,5896,10587,10586,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.2471762,7.1658449,39,-3,60.728531,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,.78059524,7.1437459,52,23.32,46.43,48.93,3.333333333333333,1,1,0,0,7,6,4,1,697.5,1064641.4,966405.88,148228.84,0,3213.0669 -4776,5897,10588,10590,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.088973,7.9438233,0,17,1,-137.72162,0,-9,-9,2019,6,0,48,48,1,0,0,7.0637383,7.0637383,0,0,0,0,0,1,1,0,0,0,60.77,51.93,47.93,60.55,8.333333333333334,2,3,0,0,13,9,5,1,320,1301708.8,154702.58,633482.06,199425.97,3623.8677 -4776,5897,10589,-9,10590,10588,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.4552,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,5,1,320,1301708.8,154702.58,633482.06,199425.97,3623.8677 -4776,5897,10590,10588,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.4870081,8.4655037,0,17,-1,69.917206,0,-9,-9,2019,6,0,43,37,1,0,0,16.204782,16.204782,0,0,0,0,0,1,1,0,0,0,47.93,60.55,60.77,51.93,8.333333333333334,2,3,0,0,12,9,5,1,320,1301708.8,154702.58,633482.06,199425.97,3623.8677 -4777,5898,10591,10592,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.5143633,8.5930614,53,5,-109.35107,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1111579,8.3326111,56.5,37.6,49.04,55.86,8.333333333333334,1,1,0,0,0,12,4,1,509.5,1409791,502792.63,504416.22,0,3787.3584 -4777,5898,10592,10591,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.6607323,5.2574325,53,-5,-4.8014317,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0508833,5.6116076,49.04,55.86,56.5,37.6,8.333333333333334,1,1,0,0,0,12,4,1,509.5,1409791,502792.63,504416.22,0,3787.3584 -4778,5899,10593,-9,10594,10595,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.52,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1168.3334,190047.63,-60500.359,0,0,1720.103 -4778,5899,10594,10595,-9,-9,1,0,21,1,2,0,2,2,-9,0,3,6.5924492,6.6295438,0,2,-14,-10.807698,0,-9,-9,2019,7,0,24,35,1,0,0,4.2213426,4.2213426,0,0,0,0,0,1,1,0,0,0,51.02,52.22,54.37,54.8,8.333333333333334,1,1,0,0,3,9,2,0,1168.3334,190047.63,-60500.359,0,0,1720.103 -4778,5899,10595,10594,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,5.724514,5.7452822,0,2,14,-77.798332,0,2,1,2019,8,0,24,35,1,0,0,1.5061276,1.5061276,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.02,52.22,10,1,1,0,0,2,9,2,0,1168.3334,190047.63,-60500.359,0,0,1720.103 -4779,5900,10596,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.3203011,8.4721518,0,0,0,-909.82446,0,2,2,2019,21,9,45,0,1,9,0,11.858078,11.858078,0,0,0,0,0,0,0,0,0,0,30.24,64.61,-9,-9,6.666666666666667,2,3,0,0,11,8,5,0,170,49680.516,-89341.656,0,0,1943.1196 -4780,5901,10597,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4119968,8.7567158,0,0,0,-1027.521,0,2,2,2019,12,0,37,37,1,0,0,14.536423,14.536423,0,0,0,0,0,0,0,0,3.641082,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,820,-193213.88,164770.05,132978.03,94276.156,2567.083 -4781,5902,10598,10599,-9,10600,1,1,61,0,0,0,2,2,-9,0,2,0,0,0,33,-7,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,3.5829358,0,44.59,50.28,30.27,45.46,1.666666666666667,1,1,0,0,6,5,1,1,778.5,67728,0,0,0,661.97003 -4781,5902,10599,10598,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,32,7,0,0,-9,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,120,1,1,0,3.7275541,0,30.27,45.46,44.59,50.28,1.666666666666667,1,1,0,0,6,5,1,1,778.5,67728,0,0,0,661.97003 -4781,5903,10600,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.5774,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6611147,0,57,43,-9,-9,8,4,6,0,0,0,5,1,1,242,455655.69,0,68235.875,0,721.14728 -4781,5904,10601,-9,-9,10600,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-838.97003,0,-9,3,2019,9,0,0,0,4,0,0,0,0,1,0,156.90523,0,0,1,1,0,0,0,59.62,33.74,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,708,-181829.08,0,0,0,-146.65373 -4782,5905,10602,-9,10603,10604,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-986.94434,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,454.33334,211171.36,182633.09,334466.84,159660.58,5766 -4782,5905,10603,10604,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,7.7046905,7.6331067,0,10,3,127.82558,0,3,2,2019,12,2,28,28,1,2,0,10.091319,10.091319,0,0,0,0,0,0,0,0,0,0,54.1,59.11,42.35,33.61,6.666666666666667,1,1,0,0,11,12,5,1,454.33334,211171.36,182633.09,334466.84,159660.58,5766 -4782,5905,10604,10603,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,9.5073328,9.4900026,0,10,-3,11.15048,0,-9,-9,2019,12,0,82,94,1,0,0,21.362116,21.362116,0,0,0,0,0,0,0,0,0,0,42.35,33.61,54.1,59.11,5,1,1,0,0,11,12,5,1,454.33334,211171.36,182633.09,334466.84,159660.58,5766 -4782,5906,10605,-9,10603,10604,1,1,26,0,1,0,2,2,-9,0,4,8.3139811,8.1789379,0,0,0,-988.54529,0,2,2,2019,12,0,45,45,1,0,1,11.196052,11.196052,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,196,-9540.2646,0,0,0,1794.2616 -4783,5907,10606,10607,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,7.6664534,7.6330633,0,1,4,-60.880611,-9,-9,-9,2019,7,0,30,0,1,0,0,5.7291045,5.7291045,0,0,0,0,0,0,0,0,0,0,39.89,54.92,45.96,51.96,8.333333333333334,1,1,0,0,0,2,4,0,924.5,240695.8,65629.438,0,0,3248.1755 -4783,5907,10607,10606,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.562912,8.4561758,0,1,-4,-6.0174479,-9,-9,-9,2019,11,3,52,0,1,3,0,10.006051,10.006051,0,0,0,0,0,0,0,0,0,0,45.96,51.96,39.89,54.92,8.333333333333334,1,1,0,0,2,2,4,0,924.5,240695.8,65629.438,0,0,3248.1755 -4783,5908,10608,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1062.3307,-9,-9,-9,2019,32,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,22.05,56.49,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,492,-120979.94,0,0,0,0 -4783,5909,10609,10610,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,1,-2,39.732723,-9,-9,-9,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,67.62,37.3,58.69,3.333333333333333,1,1,1,0,0,2,3,0,118.5,-8969.0186,0,0,0,801.18127 -4783,5909,10610,10609,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.7588696,8.0281973,0,1,2,16.58053,-9,-9,-9,2019,25,11,38,0,1,11,0,8.2161131,8.2161131,0,0,0,0,0,0,0,0,0,0,37.3,58.69,12.12,67.62,3.333333333333333,1,1,0,0,0,2,3,0,118.5,-8969.0186,0,0,0,801.18127 -4784,5910,10611,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.3594866,7.5775971,0,0,-1076.4784,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.5848999,7.4856968,39.49,48.49,-9,-9,6.666666666666667,1,1,0,0,5,9,3,0,2597,1076492.1,297993.81,307777.97,0,1236.0784 -4785,5911,10612,10613,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,10,3,-15.114316,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.84850395,0,52,45,60.46,18.23,8,1,1,0,0,0,2,2,1,538,461526.63,297736.31,175382.31,7022.2529,1685.2012 -4785,5911,10613,10612,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.5051432,7.4518795,57,-3,83.501381,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.099962562,7.8296862,60.46,18.23,52,45,8.333333333333334,1,1,0,0,0,2,2,1,538,461526.63,297736.31,175382.31,7022.2529,1685.2012 -4786,5912,10614,-9,10615,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.4113,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,1,0,1702.6666,12238.8,0,0,0,1401.455 -4786,5912,10615,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,0,0,0,0,0,-991.58917,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,45.69,26.26,-9,-9,5,1,1,1,0,0,5,1,0,1702.6666,12238.8,0,0,0,1401.455 -4786,5912,10616,-9,10615,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.51447,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1702.6666,12238.8,0,0,0,1401.455 -4787,5913,10617,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.4234133,6.1788921,0,0,-920.04596,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4016089,60.35,18.88,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,229,130278.34,30655.1,125305.55,0,1623.056 -4788,5914,10618,10621,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.7585101,7.8218675,0,8,-6,-55.309971,0,-9,-9,2019,15,3,20,22,1,3,0,13.925608,13.925608,0,0,0,0,0,1,1,0,4.783,0,31.15,62.63,57.33,53.46,5,1,1,0,0,10,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 -4788,5914,10619,-9,10618,10621,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.976,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 -4788,5914,10620,-9,10618,10621,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.1692,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 -4788,5914,10621,10618,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,7.9224877,8.2764149,0,15,6,97.282791,0,3,3,2019,6,0,43,37,1,0,0,10.676676,10.676676,0,0,0,0,0,1,1,0,0,0,57.33,53.46,31.15,62.63,6.666666666666667,1,1,0,0,7,2,3,1,774.25,535003.31,237053.61,93774.828,77741.734,2608.1936 -4789,5915,10622,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1002.36,0,3,3,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,28.94,55.69,-9,-9,0,1,1,1,1,0,7,1,0,767,463271.44,0,0,0,-251.60565 -4789,5916,10623,-9,10622,-9,1,1,30,0,0,0,3,3,-9,0,1,0,0,0,0,0,-887.69928,0,3,-9,2019,32,12,0,40,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,24.93,60.42,-9,-9,0,1,1,1,1,2,7,1,0,1290,2890.9309,0,0,0,0 -4789,5917,10624,-9,10622,-9,1,1,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1033.9211,0,3,-9,2019,21,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,18.29,63.66,-9,-9,3.333333333333333,1,1,0,1,0,7,1,0,425,4691.3491,0,0,0,794.94171 -4790,5918,10625,10626,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.3727837,8.3119736,5.6961141,10,2,33.94907,0,3,3,2019,10,2,24,24,1,2,0,18.680176,18.680176,0,0,0,0,2,1,1,0,4.9100471,6.0358095,49.83,39.28,36.22,60.56,8.333333333333334,1,1,0,0,11,11,4,1,1068,1056012.1,416183.72,277038.88,0,3555.7771 -4790,5918,10626,10625,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.491291,7.6115441,0,10,-2,26.371979,0,3,3,2019,11,1,22,22,1,1,0,7.4480515,7.4480515,0,0,0,0,2,1,1,0,7.3486452,0,36.22,60.56,49.83,39.28,8.333333333333334,1,1,0,0,11,11,4,1,1068,1056012.1,416183.72,277038.88,0,3555.7771 -4791,5919,10627,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8201504,8.0048037,0,0,0,-1057.6284,0,3,2,2019,11,2,40,77,1,2,0,8.90131,8.90131,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,374,-69419.383,82195.125,72362.039,133073.23,557.88763 -4792,5920,10628,10630,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.2911425,9.222126,0,25,1,40.719204,0,2,1,2019,16,4,43,42,1,4,0,22.049309,22.049309,0,0,0,0,0,1,1,0,.22149856,0,43.74,51.61,48.12,63.16,6.666666666666667,1,1,0,0,8,2,5,1,267,1103446.8,329219,319974.69,44077.258,4411.9741 -4792,5920,10629,-9,10630,10628,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.396,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,267,1103446.8,329219,319974.69,44077.258,4411.9741 -4792,5920,10630,10628,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,7.8692231,7.7796216,0,29,-1,12.724894,0,2,1,2019,19,8,42,40,1,8,0,8.6781454,8.6781454,0,0,0,0,0,1,1,0,0,0,48.12,63.16,43.74,51.61,6.666666666666667,1,1,0,0,7,2,5,1,267,1103446.8,329219,319974.69,44077.258,4411.9741 -4792,5921,10631,-9,10630,10628,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-934.5144,-9,1,1,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,36.96,56.25,-9,-9,3.333333333333333,1,1,0,0,8,2,1,1,864,88235.828,0,0,0,0 -4793,5922,10632,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,9.6336155,9.4908304,5.1715436,34,2,-15.113711,0,3,3,2019,13,2,35,35,1,2,0,52.681828,52.681828,0,0,0,0,0,1,1,0,6.8636513,4.8290491,49.35,59.64,54.2,57.49,8.333333333333334,1,1,0,0,13,9,5,1,117,1652931.8,1092770,333280.56,0,8727.0049 -4793,5923,10633,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.7309699,7.6292915,34,-2,91.649696,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8732549,7.6405015,54.2,57.49,49.35,59.64,8.333333333333334,1,1,0,0,8,9,5,1,546,1403741.6,623932.5,557978.25,0,2296.4512 -4794,5924,10634,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1095.3721,0,3,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.2999988,0,40.64,23.79,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,297,203728.89,178360.06,159300.7,0,1294.198 -4795,5925,10635,10636,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,4.7507691,4.9389453,40,1,-48.764515,0,-9,3,2019,5,0,0,0,4,0,0,0,0,1,0,.28324291,0,0,1,1,0,5.678318,4.8308558,64.23,44.69,59.58,42.8,10,1,1,0,0,0,4,3,1,582,1668945.6,1237169.6,309277.47,0,3335.6384 -4795,5925,10636,10635,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.3985806,8.0326729,39,-1,169.85275,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2430081,8.5293989,59.58,42.8,64.23,44.69,8.333333333333334,1,1,0,0,0,4,3,1,582,1668945.6,1237169.6,309277.47,0,3335.6384 -4796,5926,10637,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-931.40875,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,.13054352,0,53.53,19.14,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1496,90996.844,0,122799.65,0,589.85229 -4797,5927,10638,-9,10639,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.1245,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,368.33334,-7983.8438,0,0,0,1217.91 -4797,5927,10639,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,7.6901207,7.6871071,0,0,0,-1080.202,0,2,1,2019,9,0,30,30,1,0,0,8.3874931,8.3874931,0,0,0,0,0,1,1,0,0,0,45.44,52.04,-9,-9,5,1,1,0,0,2,8,3,0,368.33334,-7983.8438,0,0,0,1217.91 -4797,5927,10640,-9,10639,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.59082,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,368.33334,-7983.8438,0,0,0,1217.91 -4798,5928,10641,10642,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1918111,7.2279048,0,7,1,10.737382,0,-9,-9,2019,11,0,24,22,1,2,0,7.3457236,7.3457236,0,0,0,0,0,0,0,0,0,0,48,49,56.47,51.02,7,1,1,0,0,1,6,4,1,1546.5,98607.156,68179.484,0,0,2408.6831 -4798,5928,10642,10641,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.3641691,8.4495449,0,29,-1,47.629833,0,3,3,2019,11,0,42,45,1,0,0,14.689712,14.689712,0,0,0,0,2,0,0,0,0,0,56.47,51.02,48,49,8.333333333333334,1,1,0,0,10,6,4,1,1546.5,98607.156,68179.484,0,0,2408.6831 -4798,5929,10643,-9,10641,10642,1,1,23,0,0,0,2,2,-9,0,4,8.681591,8.633379,0,0,0,-1011.8361,0,2,3,2019,10,0,36,36,1,1,1,17.181959,17.181959,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,6,5,1,397,-444999.59,0,152642.27,124565.05,1799.7351 -4799,5930,10644,10645,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,8.1608849,8.0228167,0,7,0,-1.4033467,0,2,2,2019,6,0,38,47,1,0,0,7.6158381,7.6158381,0,0,0,0,0,1,1,0,0,0,37.78,60.97,33.33,58.31,6.666666666666667,1,1,0,0,8,2,4,1,1211.6666,352656.16,18127.338,63675.191,74189.148,3487.9028 -4799,5930,10645,10644,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.6673479,8.5719919,0,7,0,112.54807,0,-9,-9,2019,12,0,30,38,1,0,0,18.034199,18.034199,0,0,0,0,0,1,1,0,0,0,33.33,58.31,37.78,60.97,6.666666666666667,1,1,0,0,8,2,4,1,1211.6666,352656.16,18127.338,63675.191,74189.148,3487.9028 -4799,5930,10646,-9,10645,10644,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.64606,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1211.6666,352656.16,18127.338,63675.191,74189.148,3487.9028 -4800,5931,10647,10648,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8933387,5.7250843,1,-18,20.847176,-9,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,3.7832601,6.2299399,51.11,40.02,43.7,41.31,5,1,1,0,0,0,12,2,0,508,518097,177433.58,165433.72,0,1787.3005 -4800,5931,10648,10647,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.1606627,7.089025,1,18,-24.532911,-9,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,129.15129,0,0,1,1,0,0,7.1829801,43.7,41.31,51.11,40.02,8.333333333333334,1,1,0,0,0,12,2,0,508,518097,177433.58,165433.72,0,1787.3005 -4801,5932,10649,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.5327263,8.3367586,0,0,-966.74701,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,7,1,1,0,5.4613476,8.5858879,35.62,44.39,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,771,1030792.7,325239.13,623843.5,0,3085.0847 -4802,5933,10650,-9,10651,10653,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.1368,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 -4802,5933,10651,10653,-9,-9,1,0,44,1,2,0,2,2,-9,0,4,0,0,0,4,5,63.691292,0,-9,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,44.08,59.33,37.87,61.03,6.666666666666667,1,1,0,0,3,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 -4802,5933,10652,-9,10651,10653,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.26337,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 -4802,5933,10653,10651,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.6839247,8.8090448,0,4,-5,-39.039215,0,2,2,2019,18,6,43,45,1,6,0,18.773964,18.773964,0,0,0,0,0,1,1,0,0,0,37.87,61.03,44.08,59.33,6.666666666666667,1,1,0,0,11,7,4,1,574.25,206575.69,126004.6,126077.66,0,2772.9651 -4803,5934,10654,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,0,0,-941.0899,0,3,3,2019,11,2,0,40,3,2,0,0,0,0,0,0,0,0,1,1,0,7.619657,0,46.06,60.24,-9,-9,10,1,1,0,0,7,9,1,1,226,0,0,0,0,1249.9069 -4803,5935,10655,-9,10654,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9640965,7.7997637,0,0,0,-1012.8627,0,2,-9,2019,10,0,40,40,1,1,1,8.7680817,8.7680817,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,610,-27222.01,17669.141,0,0,1219.3647 -4804,5936,10656,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.0034027,7.2425666,0,0,-932.89911,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7700253,7.3297586,58.57,35.72,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,333,-15353.341,205366.78,129885.36,0,1136.7455 -4805,5937,10657,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.2140827,7.193687,0,0,-878.01349,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,1.0155962,0,0,1,1,0,0,7.1835322,65.96000000000001,13.21,-9,-9,10,1,1,0,0,0,10,3,1,909,722260.13,448517.34,518261.88,0,1326.5518 -4806,5938,10658,-9,10660,10661,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.09387,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,3.4586575,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 -4806,5938,10659,-9,10660,10661,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.29022,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 -4806,5938,10660,10661,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,9.7111025,9.7526436,0,15,4,49.20615,0,2,2,2019,7,0,44,44,1,0,0,40.590088,40.590088,0,0,0,0,0,0,0,0,3.5120471,0,59.31,49.81,44.67,37.65,8.333333333333334,1,1,0,0,9,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 -4806,5938,10661,10660,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.4227638,8.4299154,0,7,-4,-195.38081,0,2,-9,2019,18,7,35,45,1,7,0,19.96377,19.96377,0,0,0,0,0,0,0,0,0,0,44.67,37.65,59.31,49.81,5,1,1,0,0,9,9,5,1,663.75,409778.44,106910.43,489519.25,150882.5,6905.541 -4807,5939,10662,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1062.4454,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,7.51,57.97,-9,-9,6.666666666666667,1,1,0,0,3,4,1,0,2040,-129462.8,0,0,0,1507.1393 -4808,5940,10663,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.2265949,8.4135237,0,0,0,-1005.0177,0,3,3,2019,8,0,37,37,1,0,0,10.703001,10.703001,0,0,0,0,2,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,368,487668.81,240583.75,221413.05,55827.422,1804.4202 -4809,5941,10664,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1089.7813,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.22,31,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,425,141528.3,0,0,0,63.200268 -4810,5942,10665,10666,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7905946,7.9046717,0,29,-2,49.082283,0,3,3,2019,9,0,40,40,1,0,0,5.7208276,5.7208276,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.02,27.97,3.333333333333333,1,1,0,0,8,1,3,0,602,789640.38,311144.91,179856.73,0,1675.0868 -4810,5942,10666,10665,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,29,2,70.416191,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.02,27.97,45.91,59.89,1.666666666666667,1,1,0,0,0,1,3,0,602,789640.38,311144.91,179856.73,0,1675.0868 -4810,5943,10667,-9,10666,10665,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-906.44812,-9,2,2,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,2,1,1,0,0,0,46.68,52.18,-9,-9,5,1,1,0,0,0,1,1,0,602,-78952.977,0,0,0,392.31586 -4811,5944,10668,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-921.59454,0,2,-9,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.09,22.86,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,186,149620.44,0,0,0,907.10675 -4812,5945,10669,-9,10670,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.4542,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,350,-142352.83,-24648.875,0,0,886.4187 -4812,5945,10670,-9,-9,-9,1,0,43,0,1,0,3,3,-9,1,4,0,6.7012186,6.4227686,0,0,-981.52893,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,6.5184975,49,56,-9,-9,7,1,1,0,0,6,11,2,1,350,-142352.83,-24648.875,0,0,886.4187 -4812,5946,10671,-9,10670,-9,1,0,22,0,1,0,2,2,-9,0,4,7.8406715,7.7161999,0,0,0,-957.57251,0,3,-9,2019,14,2,35,34,1,2,1,9.9531393,9.9531393,0,0,0,0,2,1,1,0,0,0,31.59,65.07000000000001,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,651,390747.41,-46517.621,0,0,1067.9467 -4813,5947,10672,10673,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.0265007,8.1239223,0,10,7,-1.6336555,0,-9,-9,2019,12,1,39,39,1,1,0,11.340196,11.340196,0,0,0,0,0,1,1,0,0,0,35.4,53.76,36.93,56.27,5,1,1,0,0,13,12,5,1,644,478003.56,603659.88,156069.38,138549.53,4117.96 -4813,5947,10673,10672,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.989377,9.1443872,0,10,-7,-9.6971836,0,2,2,2019,14,3,44,43,1,3,0,24.51914,24.51914,0,0,0,0,0,1,1,0,0,0,36.93,56.27,35.4,53.76,6.666666666666667,1,1,0,0,11,12,5,1,644,478003.56,603659.88,156069.38,138549.53,4117.96 -4814,5948,10674,10675,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,9,1,179.49196,0,3,3,2019,13,2,0,24,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.59,25.39,57.33,53.46,3.333333333333333,1,1,0,0,9,13,2,1,227.5,159298.2,187120.19,159664.17,0,1878.1521 -4814,5948,10675,10674,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,6.8359337,6.8863502,0,9,-1,65.333824,0,3,3,2019,10,0,35,37,1,0,0,3.4826441,3.4826441,0,0,0,0,0,1,1,0,5.5398474,0,57.33,53.46,57.59,25.39,8.333333333333334,1,1,0,0,10,13,2,1,227.5,159298.2,187120.19,159664.17,0,1878.1521 -4815,5949,10676,10677,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,42,1,39.324299,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.68,45.73,57.16,56.15,8.333333333333334,1,1,0,0,5,7,4,1,1382,2565999.8,1225057,1309063.5,0,2252.3091 -4815,5949,10677,10676,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.1524315,8.8229914,42,-1,-161.45073,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.6806004,8.5880575,57.16,56.15,59.68,45.73,8.333333333333334,1,1,0,0,5,7,4,1,1382,2565999.8,1225057,1309063.5,0,2252.3091 -4816,5950,10678,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-903.64246,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,12,8,1,1,669,238242.23,0,544484.94,0,-183.50008 -4817,5951,10679,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.9495511,8.2679462,0,0,-1159.645,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4172788,8.1063871,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,229,683965.88,605745.81,236304.7,0,2408.0247 -4818,5952,10680,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,5.5401568,5.6373034,0,0,0,-869.91461,0,2,-9,2019,22,10,20,24,1,10,0,1.6865698,1.6865698,0,0,0,0,0,1,1,0,0,0,35.38,63.46,-9,-9,6.666666666666667,1,1,0,1,11,10,2,0,159,795118.31,69602.805,234761.13,0,1032.8837 -4819,5953,10681,10682,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,7.9851398,8.1471453,0,30,3,122.13297,0,2,2,2019,15,4,37,38,1,4,0,8.642518,8.642518,0,0,0,0,2,1,1,0,2.1995728,0,43.78,46.06,57.16,56.15,6.666666666666667,1,1,0,0,9,12,4,1,740.5,140287.2,19898.467,293370.13,0,2087.8618 -4819,5953,10682,10681,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.8728433,7.6238074,0,30,-3,-72.09446,0,2,2,2019,4,0,38,37,1,0,0,7.7995753,7.7995753,0,0,0,0,2,1,1,0,0,0,57.16,56.15,43.78,46.06,8.333333333333334,1,1,0,0,7,12,4,1,740.5,140287.2,19898.467,293370.13,0,2087.8618 -4819,5954,10683,-9,10682,10681,1,0,24,0,1,0,2,2,-9,0,4,6.724205,7.4941354,5.4223714,0,0,-1002.4727,0,2,2,2019,6,0,24,24,1,0,1,5.0232377,5.0232377,0,0,0,0,0,1,1,0,5.1251779,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,1560,-390092.69,0,0,0,1524.739 -4819,5954,10684,-9,10683,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.1661,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1560,-390092.69,0,0,0,1524.739 -4819,5955,10685,-9,10682,10681,1,0,21,0,1,0,1,1,1,0,5,8.2317467,8.5017405,0,0,0,-940.81592,-9,2,2,2019,9,0,37,0,1,0,1,11.778912,11.778912,0,0,0,0,0,1,1,0,1.2276976,0,54.1,59.11,-9,-9,10,1,1,0,0,2,12,4,1,715,-28131.867,219575.45,0,0,1521.1587 -4820,5956,10686,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.4829426,8.518877,0,0,0,-1103.5768,0,2,2,2019,11,0,38,38,1,0,0,16.493052,16.493052,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,5,1,1,0,0,12,11,5,1,381,866013.38,687159.13,234884.47,0,1871.5759 -4821,5957,10687,-9,10688,10689,1,1,26,0,0,0,1,1,-9,0,5,8.5042801,8.3321342,0,0,0,-990.16156,0,2,3,2019,12,2,36,30,1,2,1,15.457692,15.457692,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,3,8,5,0,526,-65466.723,0,0,0,2967.7168 -4821,5958,10688,10689,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6432829,8.7484913,0,11,0,117.67262,0,-9,-9,2019,12,0,33,5,1,0,0,17.421173,17.421173,0,0,0,0,0,1,1,0,.38960347,0,49.52,55.68,59.32,46.98,8.333333333333334,1,1,0,0,10,8,5,0,282,917579.31,37882.238,876987.88,85688.992,6185.915 -4821,5958,10689,10688,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.2425165,9.4737415,0,11,0,-39.969494,0,-9,-9,2019,6,0,28,34,1,0,0,50.895973,50.895973,0,0,0,0,0,1,1,0,0,0,59.32,46.98,49.52,55.68,8.333333333333334,1,1,0,0,10,8,5,0,282,917579.31,37882.238,876987.88,85688.992,6185.915 -4822,5959,10690,10692,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.5738535,9.2901478,0,6,-2,29.358269,0,-9,-9,2019,8,0,48,48,1,0,0,28.030039,28.030039,0,0,0,0,0,0,0,0,4.8068213,0,51.83,57.2,35.97,61.83,8.333333333333334,4,5,0,0,4,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 -4822,5959,10691,-9,10692,10690,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.755,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 -4822,5959,10692,10690,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,8.2951231,8.3485098,0,15,2,-8.7086096,0,2,1,2019,14,4,29,38,1,4,0,14.789325,14.789325,0,0,0,0,0,0,0,0,3.3257644,0,35.97,61.83,51.83,57.2,6.666666666666667,1,1,0,0,7,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 -4822,5959,10693,-9,10692,10690,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-888.5611,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,4,2,-9,0,0,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 -4822,5959,10694,-9,10692,10690,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-992.69263,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,4,5,-9,0,0,7,5,1,430.20001,2783617.3,1571439.3,1189625.5,230738.05,5799.4268 -4823,5960,10695,10696,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.2950363,8.1412039,0,1,8,-19.37253,0,2,-9,2019,5,0,41,40,1,0,0,13.81993,13.81993,0,0,0,0,0,1,1,0,0,0,57.16,56.15,37.69,58.7,10,1,1,0,0,11,4,4,1,1526,91555.578,137604.95,128087.39,109802.48,2898.5718 -4823,5960,10696,10695,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.0176044,7.4915333,6.1318803,1,-8,-37.684433,-9,-9,-9,2019,12,0,26,0,1,0,0,5.8966379,5.8966379,0,0,0,0,0,1,1,0,6.3850522,0,37.69,58.7,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,1526,91555.578,137604.95,128087.39,109802.48,2898.5718 -4824,5961,10697,-9,10699,10698,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1059.426,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,638.66669,94144.617,67713.172,0,0,2671.6328 -4824,5961,10698,10699,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5788412,8.417222,0,30,2,-41.946602,0,2,3,2019,12,3,37,37,1,3,0,10.431072,10.431072,0,0,0,0,0,1,1,0,2.6540391,0,56.76,44.55,56.94,49.53,6.666666666666667,1,1,0,0,13,9,4,1,638.66669,94144.617,67713.172,0,0,2671.6328 -4824,5961,10699,10698,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.5324159,7.5872583,0,30,-2,-1.2422886,0,2,2,2019,10,0,30,30,1,0,0,7.8908839,7.8908839,0,0,0,0,2,1,1,0,2.4441948,0,56.94,49.53,56.76,44.55,8.333333333333334,1,1,0,0,13,9,4,1,638.66669,94144.617,67713.172,0,0,2671.6328 -4825,5962,10700,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.3103518,8.0678787,7.6609926,0,0,-951.39667,0,3,3,2019,11,0,12,22,1,2,0,17.00683,17.00683,0,0,0,0,0,1,1,0,3.8623805,7.7161694,32.23,48.68,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,500,78356.797,58186.215,0,0,2326.3633 -4826,5963,10701,10702,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.2231665,7.8778729,0,20,-1,-6.4867058,0,2,2,2019,0,0,23,45,1,0,0,15.78922,15.78922,0,0,0,0,0,1,1,0,1.4440014,0,57.06,57.76,61.04,39.41,8.333333333333334,1,1,0,0,10,9,5,1,1267.6666,649439.75,100197.11,428598.81,141376.11,4071.0942 -4826,5963,10702,10701,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2711763,8.8006439,7.1070166,21,1,-11.216811,0,2,2,2019,7,0,37,40,1,0,0,13.955934,13.955934,0,0,0,0,0,1,1,0,6.7732906,0,61.04,39.41,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,1267.6666,649439.75,100197.11,428598.81,141376.11,4071.0942 -4826,5963,10703,-9,10701,10702,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.50665,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1267.6666,649439.75,100197.11,428598.81,141376.11,4071.0942 -4827,5964,10704,-9,10705,10707,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1137.7874,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 -4827,5964,10705,10707,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.3675032,8.380846,0,18,-7,-141.78128,0,2,2,2019,9,1,36,44,1,1,0,12.23789,12.23789,0,0,0,0,0,1,1,0,0,0,58.07,46.16,53,54,8.333333333333334,3,4,0,0,8,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 -4827,5964,10706,-9,10705,10707,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.58093,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 -4827,5964,10707,10705,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,8.6850023,8.7178211,0,6,7,7.0029445,0,-9,-9,2019,9,0,36,36,1,1,0,15.77942,15.77942,0,0,0,0,0,1,1,0,2.9644663,0,53,54,58.07,46.16,8,3,4,0,0,1,8,4,0,1200.75,1353104.1,163333.36,1152620.4,0,4111.7725 -4828,5965,10708,10709,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.4069834,7.9573326,0,6,1,-30.768646,0,-9,-9,2019,9,1,45,43,1,1,0,9.4382401,9.4382401,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,10,13,4,1,800.66669,34962.879,8.6090498,141776.16,101614.97,2553.554 -4828,5965,10709,10708,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,7.9868975,7.8690462,0,6,-1,4.8357873,0,2,3,2019,5,0,22,39,1,0,0,12.999642,12.999642,0,0,0,0,2,1,1,0,0,0,57.06,57.76,54.96,53.17,10,1,1,0,0,10,13,4,1,800.66669,34962.879,8.6090498,141776.16,101614.97,2553.554 -4828,5965,10710,-9,10709,10708,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.3004,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,800.66669,34962.879,8.6090498,141776.16,101614.97,2553.554 -4829,5966,10711,10712,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.7670894,7.9825325,0,23,7,9.1752987,-9,3,3,2019,29,11,37,0,1,11,0,8.6093369,8.6093369,0,0,0,0,89,1,1,0,0,0,16.75,44.01,33.57,16.2,0,1,1,0,1,5,4,3,0,1570.5,197750.97,111663.88,0,0,1231.3772 -4829,5966,10712,10711,-9,-9,1,1,45,0,0,0,2,2,-9,1,1,0,0,0,22,-7,-73.375542,-9,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.57,16.2,16.75,44.01,0,1,1,0,1,5,4,3,0,1570.5,197750.97,111663.88,0,0,1231.3772 -4830,5967,10713,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.2352791,6.1166363,0,0,-952.9292,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.3012848,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,241,313513.03,133517.63,428925.34,0,524.28113 -4831,5968,10714,-9,-9,-9,1,0,32,0,0,0,3,3,-9,0,3,7.896512,7.8126769,0,0,0,-896.0686,0,-9,-9,2019,13,2,50,58,1,2,0,7.3560123,7.3560123,0,0,0,0,0,0,0,0,0,0,31.46,57.32,-9,-9,6.666666666666667,1,1,0,0,9,7,4,0,494,29730.375,34753.98,0,0,1508.3451 -4831,5969,10715,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,7.7933254,7.8112173,0,0,0,-1058.4059,0,-9,-9,2019,23,9,40,56,1,9,0,6.8504705,6.8504705,0,0,0,0,0,0,0,0,.4324733,0,33.16,36.28,-9,-9,0,1,1,0,0,7,7,3,0,431,-24594.973,0,0,0,891.25092 -4832,5970,10716,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.801652,6.7370806,0,0,-954.43176,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8217762,6.879447,50.03,47.42,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1248,-428675.81,68513.383,0,0,1152.8137 -4833,5971,10717,-9,10718,-9,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1073.2795,-9,3,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,47.17,48.86,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1221.5,87202.969,0,0,0,1320.522 -4833,5971,10718,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,2,0,0,0,0,0,-889.72003,0,3,3,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,71.5,1,1,0,0,0,32.86,42.32,-9,-9,3.333333333333333,1,1,0,1,0,13,2,1,1221.5,87202.969,0,0,0,1320.522 -4833,5972,10719,-9,10718,-9,1,1,24,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1003.5198,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.45,52.84,-9,-9,5,1,1,0,0,0,13,1,1,808,0,0,0,0,1162.355 -4833,5973,10720,-9,10718,-9,1,0,23,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1069.7526,0,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.33,51.98,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,99,170861.67,0,0,0,148.81258 -4834,5974,10721,10722,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,27,-6,-192.84799,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.56292284,0,44.36,54.04,53.98,50.87,8.333333333333334,1,1,1,0,11,6,5,1,1873,935097.88,522561.94,266432.06,0,2606.0164 -4834,5974,10722,10721,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7675142,8.8163643,0,10,6,-169.84612,0,-9,-9,2019,7,0,48,48,1,0,0,15.363315,15.363315,0,0,0,0,0,1,1,0,3.739126,0,53.98,50.87,44.36,54.04,6.666666666666667,1,1,0,0,12,6,5,1,1873,935097.88,522561.94,266432.06,0,2606.0164 -4834,5975,10723,-9,10721,10722,1,1,22,0,0,0,2,2,-9,0,4,8.415555,7.9874272,0,0,0,-1043.5717,0,2,2,2019,4,0,39,39,1,0,1,12.00948,12.00948,0,0,0,0,0,1,1,0,.62358326,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,704,-246815.13,0,0,0,1516.1462 -4835,5976,10724,10725,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.3218651,7.7871475,6.297205,8,7,-10.817292,0,3,2,2019,13,2,35,50,1,2,0,6.1461496,6.1461496,0,0,0,0,0,0,0,0,1.5793164,6.6106491,41.13,58.45,33.01,63.17,6.666666666666667,1,1,0,0,10,7,3,1,589,372144.72,140196.16,0,0,1029.5203 -4835,5976,10725,10724,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,0,0,8,-7,-17.535131,0,-9,-9,2019,12,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.01,63.17,41.13,58.45,8.333333333333334,1,1,0,0,5,7,3,1,589,372144.72,140196.16,0,0,1029.5203 -4836,5977,10726,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,4.171711,4.4866328,0,0,-932.58551,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,40.386574,0,0,1,1,0,0,4.5628071,41.59,31.18,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1737,286698.22,-70219.898,-18851.543,0,832.22461 -4837,5978,10727,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8834133,7.9133205,0,0,0,-926.35321,0,3,2,2019,11,0,39,39,1,0,0,8.3689861,8.3689861,0,0,0,0,0,1,1,0,0,0,53.81,53.56,-9,-9,6.666666666666667,1,1,0,0,11,4,3,0,368,776084.31,222469.34,60468.625,0,851.25128 -4838,5979,10728,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1021.6534,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,8.6791897,0,5.48,1,1,0,0,0,48.24,39.98,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,401,0,0,0,0,1122.0487 -4838,5980,10729,-9,10728,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1092.4164,-9,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,55,-9,-9,8,1,1,0,0,0,12,1,1,133,384266.09,0,0,0,0 -4839,5981,10730,10733,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.1956005,7.4228888,0,23,2,-15.881663,0,3,2,2019,7,0,20,20,1,0,0,8.518939,8.518939,0,0,0,0,7,1,1,0,0,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,10,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 -4839,5981,10731,-9,10730,10733,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1045.0891,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 -4839,5981,10732,-9,10730,10733,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.3097,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 -4839,5981,10733,10730,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.350316,8.3458538,0,8,-2,20.557827,0,-9,-9,2019,9,0,40,40,1,1,0,14.926165,14.926165,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,8,1,1,0,0,1,2,4,1,507.5,349804.53,196181.33,96822.852,27077.146,2858.6641 -4840,5982,10734,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.3749504,7.6388412,0,0,0,-1109.9098,0,2,3,2019,6,0,21,21,1,0,0,8.0586319,8.0586319,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,10,1,1,0,0,8,7,3,0,181,16481.258,0,0,0,734.66479 -4841,5983,10735,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.8484612,7.7478275,0,0,0,-1004.8926,0,3,3,2019,9,0,30,30,1,0,0,9.2801695,9.2801695,0,0,0,0,0,1,1,0,1.8635147,0,46.8,42.02,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,1269,310302.5,15190.978,201233.66,0,1860.4049 -4841,5984,10736,-9,10735,-9,1,0,24,0,0,0,2,2,-9,0,3,7.8105178,8.1559238,0,0,0,-1018.25,0,2,2,2019,18,6,37,36,1,6,1,8.5873137,8.5873137,0,0,0,0,0,1,1,0,0,0,33.82,53.21,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,527,-150662.42,0,0,0,1558.7714 -4842,5985,10737,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.6505,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.7800498,0,54.37,54.8,-9,-9,10,1,1,0,0,8,10,1,1,2121,70216.781,7865.6548,0,0,2286.9934 -4843,5986,10738,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.9620695,6.7826724,0,0,0,-1040.6517,0,3,3,2019,6,0,20,18,1,0,0,7.9964075,7.9964075,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,11,6,3,0,2170,266538.81,0,243240.97,52838.898,600.14508 -4844,5987,10739,-9,10740,10742,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.0711,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 -4844,5987,10740,10742,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,7.6498928,7.871767,0,10,2,.32848296,0,-9,-9,2019,11,0,20,20,1,0,0,13.146463,13.146463,0,0,0,0,0,0,0,0,4.2885141,0,41.3,60.77,46.34,61.24,8.333333333333334,1,1,0,0,10,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 -4844,5987,10741,-9,10740,10742,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.92706,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 -4844,5987,10742,10740,-9,-9,1,1,39,0,3,0,1,1,-9,0,5,9.0444756,9.0298357,0,10,-2,-16.53203,0,-9,-9,2019,6,0,42,40,1,0,0,32.296455,32.296455,0,0,0,0,0,0,0,0,4.0765548,0,46.34,61.24,41.3,60.77,8.333333333333334,1,1,0,0,11,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 -4844,5987,10743,-9,10740,10742,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-872.61169,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,555.59998,943178.44,792558.25,391288.72,193028.39,4469.624 -4845,5988,10744,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,5.4319243,5.6372972,0,0,-913.54022,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0421815,5.3687596,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,177,437504.28,78117.25,116245.55,0,1092.8517 -4846,5989,10745,10746,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1558213,7.3126912,5.2228537,42,-8,65.898232,0,2,2,2019,10,0,16,16,1,0,0,9.4129906,9.4129906,0,0,0,0,0,1,1,0,0,5.2054629,54.2,57.49,61.23,47.38,8.333333333333334,1,1,0,0,11,11,3,1,1740.5,351118.38,154028.72,0,0,2031.0364 -4846,5989,10746,10745,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.8519454,7.4359412,42,8,-98.41552,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0428901,7.3419256,61.23,47.38,54.2,57.49,8.333333333333334,1,1,0,0,9,11,3,1,1740.5,351118.38,154028.72,0,0,2031.0364 -4847,5990,10747,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,3,7.6703281,7.5941591,0,0,0,-1021.1614,0,2,2,2019,9,0,30,30,1,0,0,8.3788309,8.3788309,0,0,0,0,0,1,1,0,0,0,54.38,46.77,-9,-9,1.666666666666667,1,1,0,0,11,12,3,1,37,-160522.38,126731.33,222553.66,0,685.94464 -4848,5991,10748,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.3534188,7.1112781,0,0,-869.18854,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.1290522,7.1600204,64.38,15.22,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,504,1054197.8,109715.1,360806.72,0,1890.7322 -4849,5992,10749,10750,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.3201351,8.2133799,0,29,-7,-30.600182,0,3,2,2019,8,0,38,38,1,0,0,10.732804,10.732804,0,0,0,0,0,0,0,0,0,0,57.33,53.46,43.54,59.6,8.333333333333334,1,1,0,0,10,8,4,1,665,496196.56,537972.13,208465.34,0,2513.7058 -4849,5992,10750,10749,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.1608214,7.2597475,0,29,7,28.873493,0,2,2,2019,13,2,38,38,1,2,0,4.3575435,4.3575435,0,0,0,0,0,0,0,0,0,0,43.54,59.6,57.33,53.46,8.333333333333334,1,1,0,0,10,8,4,1,665,496196.56,537972.13,208465.34,0,2513.7058 -4849,5993,10751,-9,10749,10750,1,0,20,0,0,0,2,2,-9,0,1,6.3153534,6.3826785,0,0,0,-1002.6737,0,2,2,2019,30,11,8,0,1,11,1,9.3600569,9.3600569,0,0,0,0,0,0,0,0,0,0,15.24,61.09,-9,-9,1.666666666666667,1,1,0,0,2,8,2,1,1367,26722.58,0,0,0,-135.36156 -4850,5994,10752,10753,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.7651548,9.2088404,0,7,2,-6.2916503,0,2,2,2019,6,0,40,39,1,0,0,28.584129,28.584129,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.1,59.11,8.333333333333334,1,1,0,0,9,5,5,1,317.5,131220.55,102729.84,0,0,4865.2808 -4850,5994,10753,10752,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.5794954,7.5046663,0,7,-2,-8.606636,0,1,1,2019,7,0,36,35,1,0,0,4.6506486,4.6506486,0,0,0,0,0,0,0,0,7.809123,0,54.1,59.11,58.15,52.91,8.333333333333334,1,1,0,0,6,5,5,1,317.5,131220.55,102729.84,0,0,4865.2808 -4851,5995,10754,10755,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,7,-2,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,43.01,27.72,7,1,1,1,0,0,13,1,0,404,0,0,0,0,2608.8477 -4851,5995,10755,10754,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,7,2,0,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.01,27.72,49,48,5,1,1,1,0,1,13,1,0,404,0,0,0,0,2608.8477 -4852,5996,10756,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.5428743,9.1749058,8.1765175,0,0,-941.96552,0,2,2,2019,10,0,36,36,1,0,0,14.794015,14.794015,0,0,0,0,2,1,1,0,2.3105414,8.1938381,48.15,54.77,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,504,6194971,0,0,0,4592.2544 -4853,5997,10757,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.1973042,6.1485505,0,0,-1096.7544,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9688368,50.26,49.78,-9,-9,10,1,1,0,0,0,2,2,0,1023,101513.24,145682.88,168493.02,0,1350.3861 -4854,5998,10758,10760,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,6.5470209,6.4496832,0,27,-3,-15.61304,0,2,2,2019,11,0,2,0,1,0,0,28.229771,28.229771,0,0,0,0,0,0,0,0,0,0,57.49,15.96,40.31,51.86,6.666666666666667,1,1,0,0,8,9,5,1,194.66667,238656.64,119453.55,471371.09,298473.81,3405.1958 -4854,5998,10759,-9,10758,10760,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-969.59747,-9,2,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,58.88,-9,-9,10,1,1,0,0,0,9,5,1,194.66667,238656.64,119453.55,471371.09,298473.81,3405.1958 -4854,5998,10760,10758,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.3681898,8.9211187,0,27,3,66.334694,0,2,2,2019,13,1,48,45,1,1,0,21.558784,21.558784,0,0,0,0,14.5,0,0,0,4.0954838,0,40.31,51.86,57.49,15.96,8.333333333333334,1,1,0,0,11,9,5,1,194.66667,238656.64,119453.55,471371.09,298473.81,3405.1958 -4854,5999,10761,-9,10758,10760,1,0,20,0,0,0,2,2,-9,0,3,8.2768993,8.2278366,0,0,0,-1006.2595,0,2,2,2019,15,4,39,48,1,4,1,9.1506615,9.1506615,0,0,0,0,0,0,0,0,0,0,34.32,57.25,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,1121,264775.66,0,0,0,1293.067 -4855,6000,10762,10763,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.4489336,7.30755,44,2,52.555439,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.2083228,7.7607789,58.31,44.55,51.83,57.2,8.333333333333334,1,1,0,0,5,4,3,1,1406.5,1494312.9,743170.13,320391.25,0,2096.7813 -4855,6000,10763,10762,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.2500558,6.1221728,44,-2,-19.164457,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.7939696,5.9685426,51.83,57.2,58.31,44.55,8.333333333333334,1,1,0,0,4,4,3,1,1406.5,1494312.9,743170.13,320391.25,0,2096.7813 -4856,6001,10764,-9,10768,10767,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4602,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 -4856,6001,10765,-9,10768,10767,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.18835,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 -4856,6001,10766,-9,10768,10767,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.9052,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 -4856,6001,10767,10768,-9,-9,1,1,35,1,3,0,1,1,-9,0,5,7.4580793,7.2507324,0,10,-2,38.056873,0,3,2,2019,16,5,40,40,1,5,0,5.3560905,5.3560905,0,0,0,0,0,1,1,0,.96772891,0,39.05,48.41,48,56,5,2,3,0,0,11,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 -4856,6001,10768,10767,-9,-9,1,0,37,1,3,0,1,1,-9,0,4,0,0,0,10,2,-74.87101,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.4019268,0,48,56,39.05,48.41,7,2,3,0,0,6,4,2,1,509.79999,71431.938,0,108506.45,65624.484,1030.4808 -4857,6002,10769,10770,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,7.3448339,7.3001838,0,20,-3,58.840473,0,-9,-9,2019,8,0,15,6,1,0,0,15.513763,15.513763,0,0,0,0,2,1,1,0,0,0,57.16,56.15,53,55,8.333333333333334,3,4,0,0,6,8,3,1,550.66669,1588529.1,167917.02,828464.5,0,2635.6538 -4857,6002,10770,10769,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.4149752,7.440949,0,20,3,-15.862019,0,-9,-9,2019,9,0,21,20,1,1,0,9.7160177,9.7160177,0,0,0,0,0,1,1,0,3.7652507,0,53,55,57.16,56.15,8,3,4,0,0,9,8,3,1,550.66669,1588529.1,167917.02,828464.5,0,2635.6538 -4857,6002,10771,-9,10769,10770,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.1356,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,3,1,550.66669,1588529.1,167917.02,828464.5,0,2635.6538 -4858,6003,10772,10773,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,6.2125063,7.4229846,7.3210044,40,-4,-24.170248,0,3,3,2019,6,0,3,4,1,0,0,21.961201,21.961201,0,0,0,0,0,0,0,0,2.8141351,7.1196613,57.06,57.76,59.53,56.44,10,1,1,0,0,7,2,4,1,529.5,981984.75,561518.63,335182.81,0,3505.6155 -4858,6003,10773,10772,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3087492,7.9461584,40,4,-58.614594,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0270147,7.9480214,59.53,56.44,57.06,57.76,10,1,1,0,0,4,2,4,1,529.5,981984.75,561518.63,335182.81,0,3505.6155 -4859,6004,10774,10775,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.3231258,8.6693277,0,8,-1,-40.629215,0,2,2,2019,7,0,38,38,1,0,0,13.922013,13.922013,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.36,51.57,8.333333333333334,1,1,0,0,9,2,4,1,501,1591336.3,1061180.5,380246.81,38718.223,2913.7012 -4859,6004,10775,10774,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,7.4426317,8.3054972,7.0371804,8,1,28.467648,0,3,3,2019,12,0,25,25,1,0,0,10.658372,10.658372,0,0,0,0,0,1,1,0,1.992727,7.264719,55.36,51.57,54.96,53.17,8.333333333333334,1,1,0,0,9,2,4,1,501,1591336.3,1061180.5,380246.81,38718.223,2913.7012 -4859,6005,10776,-9,10777,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.58826,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,808.5,119246.59,19177.738,0,0,1434.4722 -4859,6005,10777,-9,10775,-9,1,0,35,0,1,0,2,2,-9,0,4,7.7923384,8.0247622,0,0,0,-1047.8945,-9,3,-9,2019,11,0,35,0,1,2,1,10.231194,10.231194,0,0,0,0,0,1,1,0,6.6540751,0,48,57,-9,-9,7,1,1,0,0,1,2,3,1,808.5,119246.59,19177.738,0,0,1434.4722 -4859,6006,10778,-9,10775,-9,1,1,25,0,1,0,2,2,-9,0,4,8.0657787,8.0244131,0,0,0,-1055.1338,-9,3,-9,2019,10,0,40,0,1,1,1,8.6530447,8.6530447,0,0,0,0,0,1,1,0,.68487602,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,1230,-232758.67,-57109.754,0,0,845.43463 -4860,6007,10779,10780,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3481417,6.9535775,9,14,-35.644978,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.359464,7.2364335,61.12,43.33,48.34,41.46,8.333333333333334,1,1,0,0,7,10,4,0,331.5,973909.63,925755.5,155968.33,0,2901.2319 -4860,6007,10780,10779,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.0460501,7.8693323,0,9,-14,-21.349842,0,2,1,2019,10,0,37,37,1,0,0,10.835719,10.835719,0,0,0,0,2,1,1,0,0,0,48.34,41.46,61.12,43.33,10,1,1,0,0,12,10,4,0,331.5,973909.63,925755.5,155968.33,0,2901.2319 -4861,6008,10781,10782,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.2357044,7.922678,0,6,-4,27.340788,0,3,2,2019,15,4,48,50,1,4,0,8.440959,8.440959,0,0,0,0,0,0,0,0,0,0,41.73,51.28,44.58,51.2,5,2,3,0,0,11,10,5,1,532.5,1427780,839084.19,253404.86,0,3172.8877 -4861,6008,10782,10781,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.5256071,8.5506983,0,6,4,59.365147,0,3,3,2019,17,5,50,48,1,5,0,8.9277925,8.9277925,0,0,0,0,0,0,0,0,0,0,44.58,51.2,41.73,51.28,3.333333333333333,2,3,0,0,11,10,5,1,532.5,1427780,839084.19,253404.86,0,3172.8877 -4862,6009,10783,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,7.4895043,7.7976027,0,0,-941.11987,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,3.7116663,0,53.672955,0,1,1,0,3.0050836,7.7979388,38.48,22.15,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,555,228602.72,159669.13,172797.08,0,1738.8319 -4863,6010,10784,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-853.22101,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8452015,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,2,1,1,295,35013.793,0,0,0,696.21289 -4864,6011,10785,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.8432164,7.3889132,0,0,0,-1029.697,0,2,2,2019,17,5,30,60,1,5,0,7.4460683,7.4460683,0,0,0,0,0,0,0,0,0,0,29.15,54.21,-9,-9,6.666666666666667,1,1,0,0,7,7,3,1,807,-436867.88,181718.23,0,0,1509.3698 -4865,6012,10786,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,9.6796722,9.7452049,6.4387403,0,0,-917.47565,0,3,2,2019,11,1,35,50,1,1,0,45.777477,45.777477,0,0,0,0,0,1,1,0,4.0380163,7.2069726,43.42,62.33,-9,-9,6.666666666666667,1,1,0,0,5,7,5,1,349,-203203.47,184727.33,0,0,3900.2473 -4866,6013,10787,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.3306313,5.1696811,0,0,-898.84839,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4445968,42.61,54.85,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,721,-65107.609,42925.672,145895.33,0,976.38672 -4867,6014,10788,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,7.9302459,7.8381267,0,0,-1005.9514,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5623095,8.0401449,61.52,39.23,-9,-9,10,1,1,0,0,0,10,4,1,385,580130.94,217861.97,336208.63,0,2348.6038 -4868,6015,10789,10790,-9,-9,1,1,35,0,0,0,2,2,-9,1,3,0,0,0,3,3,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.74,41.32,47,57,3.333333333333333,2,3,0,0,0,2,1,0,204.5,268375.31,0,119152.75,27770.158,1415.4897 -4868,6015,10790,10789,-9,-9,1,0,32,0,0,0,3,3,-9,0,4,0,0,0,3,-3,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.2959914,0,47,57,59.74,41.32,7,1,1,0,0,0,2,1,0,204.5,268375.31,0,119152.75,27770.158,1415.4897 -4869,6016,10791,10792,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.3602533,8.0957918,8,0,12.199275,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,.37672696,0,1,1,0,3.7695682,8.2133312,51,48,60.87,44.96,7,1,1,0,0,0,9,5,1,1103.5,3250924.8,1543583.5,795546.56,0,4822.3271 -4869,6016,10792,10791,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.7128692,8.7400866,7.5546165,43,0,-55.876472,0,2,2,2019,9,0,14,22,1,0,0,21.399174,21.399174,0,0,0,0,2,1,1,0,6.1889338,7.6023922,60.87,44.96,51,48,8.333333333333334,1,1,0,0,11,9,5,1,1103.5,3250924.8,1543583.5,795546.56,0,4822.3271 -4869,6017,10793,-9,10792,10791,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1098.9125,0,1,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,894,0,0,0,0,534.83813 -4870,6018,10794,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,0,0,0,0,-932.97333,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,9.9579515,0,45.82,33.47,-9,-9,8.333333333333334,1,1,0,0,5,10,1,1,4235,908730.63,438403.78,192517.75,0,4417.8315 -4871,6019,10795,10796,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,5.0146151,5.0690022,8,-2,5.4465208,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0391989,59.43,58.05,54.37,54.8,10,1,1,0,0,4,9,2,1,340,1550802,162895.53,895081.75,0,1649.9917 -4871,6019,10796,10795,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,8,2,45.51479,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,59.43,58.05,8.333333333333334,1,1,0,0,1,9,2,1,340,1550802,162895.53,895081.75,0,1649.9917 -4872,6020,10797,10798,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,5.7464538,5.7483244,41,-3,-32.251411,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9909577,5.8588977,37.22,36,53.9,51.44,3.333333333333333,1,1,0,0,6,9,3,1,670.5,1664367.8,1007128.6,470968.38,0,2449.9688 -4872,6020,10798,10797,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,7.9737015,8.5306826,40,3,113.63339,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.4081845,8.2086668,53.9,51.44,37.22,36,8.333333333333334,1,1,0,0,9,9,3,1,670.5,1664367.8,1007128.6,470968.38,0,2449.9688 -4872,6021,10799,-9,10797,10798,1,0,25,0,0,0,2,2,-9,0,3,8.3629332,8.1572418,0,0,0,-888.93317,-9,1,1,2019,13,2,29,0,1,2,0,15.805449,15.805449,0,0,0,0,0,1,1,0,.41289631,0,45.85,43.57,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,62,317275.28,-121832.27,0,0,1355.5127 -4873,6022,10800,-9,10802,10801,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.979,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 -4873,6022,10801,10802,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,7.9415984,8.0618773,0,9,7,-35.138603,0,-9,-9,2019,11,0,48,44,1,0,0,5.3481822,5.3481822,0,0,0,0,2,1,1,0,0,0,52.22,53.26,33.66,61.57,6.666666666666667,1,1,0,0,8,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 -4873,6022,10802,10801,-9,-9,1,0,32,0,3,0,3,3,-9,1,3,0,0,0,9,-7,-25.47916,0,-9,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.66,61.57,52.22,53.26,8.333333333333334,1,1,0,0,0,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 -4873,6022,10803,-9,10802,10801,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.8906,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,1027.5,184372.73,21689.611,78066.016,78783.906,2244.5745 -4874,6023,10804,-9,-9,-9,1,1,26,0,0,0,3,3,-9,0,5,8.4747066,8.1922207,0,0,0,-942.18048,0,-9,-9,2019,16,4,55,55,1,4,0,8.3480072,8.3480072,0,0,0,0,0,0,0,0,0,0,46.28,62.6,-9,-9,5,3,4,0,0,6,8,4,0,314,-184280.2,187678.14,0,0,1756.7271 -4875,6024,10805,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,5.2188559,5.0415664,0,0,-925.70538,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,5.2443404,0,0,1,1,0,0,4.8543639,54.34,32.21,-9,-9,6.666666666666667,1,1,0,1,0,11,2,0,359,-49518.281,0,0,0,795.99805 -4876,6025,10806,10809,10811,10810,1,1,43,0,2,0,3,3,-9,0,4,8.2369642,8.0166054,0,13,8,162.8961,0,3,3,2019,7,1,56,56,1,1,0,6.899158,6.899158,0,0,0,0,0,1,1,0,0,0,58.87,51.29,41.07,60.93,8.333333333333334,2,3,0,0,9,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 -4876,6025,10807,-9,10809,10806,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2952,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 -4876,6025,10808,-9,10809,10806,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.83624,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 -4876,6025,10809,10806,-9,-9,1,0,35,0,2,0,3,3,-9,0,5,7.8066497,7.8511205,0,13,-8,163.42853,0,3,3,2019,6,0,40,32,1,0,0,9.8877106,9.8877106,0,0,0,0,0,1,1,0,6.7516017,0,41.07,60.93,58.87,51.29,10,2,3,0,0,9,6,4,1,871.75,115656.96,87487.508,228281.59,40676.273,2955.9587 -4876,6026,10810,10811,-9,-9,1,1,66,0,2,0,3,3,-9,0,3,0,0,0,7,4,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1110296,0,52,48,50,48,7,2,3,0,0,0,6,1,1,2629.5,13785.914,91575.672,0,0,1096.6482 -4876,6026,10811,10810,-9,-9,1,0,62,0,2,0,3,3,-9,0,3,0,0,0,7,-4,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,48,52,48,7,2,3,0,0,0,6,1,1,2629.5,13785.914,91575.672,0,0,1096.6482 -4877,6027,10812,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.9655805,7.8825507,0,0,0,-954.18146,0,3,2,2019,19,8,37,37,1,8,0,9.2880735,9.2880735,0,0,0,0,0,1,1,0,0,0,35.69,30.24,-9,-9,6.666666666666667,1,1,0,1,9,9,4,0,308,156273.38,89283.047,0,0,1267.0909 -4878,6028,10813,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.3001328,8.740489,6.6945429,0,0,-842.25153,0,1,1,2019,7,0,40,38,1,0,0,11.58946,11.58946,0,0,0,0,0,0,0,0,7.5299959,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,293,550006.88,92053.508,44061.605,0,1616.5929 -4878,6029,10814,-9,10813,-9,1,1,27,0,0,0,2,2,-9,0,4,8.2299795,8.2001572,0,0,0,-1076.1565,-9,1,-9,2019,10,0,40,0,1,1,1,10.102973,10.102973,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,4,1,327,196983.75,0,0,0,1483.8429 -4879,6030,10815,-9,10818,10816,1,0,20,0,2,0,2,2,0,0,4,0,0,0,0,0,-930.41608,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,1690,160192.13,0,0,0,0 -4879,6031,10816,10818,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.5481176,8.5138464,0,6,4,40.736702,0,-9,-9,2019,9,0,37,37,1,1,0,14.270818,14.270818,0,0,0,0,0,1,1,0,0,0,51,56,40.41,50.59,8,1,1,0,0,1,12,4,1,699.66669,544927.63,592343.69,55627.371,0,3498.8372 -4879,6031,10817,-9,10818,10816,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1058.6132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,12,4,1,699.66669,544927.63,592343.69,55627.371,0,3498.8372 -4879,6031,10818,10816,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.4655266,7.4130793,0,6,-4,138.8615,0,3,2,2019,11,0,28,21,1,0,0,6.8290462,6.8290462,0,0,0,0,0,1,1,0,0,0,40.41,50.59,51,56,8.333333333333334,1,1,0,0,7,12,4,1,699.66669,544927.63,592343.69,55627.371,0,3498.8372 -4880,6032,10819,10821,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.7470989,9.5947533,0,6,1,-3.7326024,0,-9,-9,2019,9,0,48,48,1,1,0,42.356358,42.356358,0,0,0,0,0,0,0,0,1.4712052,0,53,55,49.3,59.89,8,1,1,0,0,1,2,5,1,422.66666,2544457,2114205.3,452051.53,35426.234,9252.334 -4880,6032,10820,-9,10821,10819,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1087.8149,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,5,1,422.66666,2544457,2114205.3,452051.53,35426.234,9252.334 -4880,6032,10821,10819,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.2254162,8.5705986,0,6,-1,.87483877,0,1,1,2019,10,0,50,47,1,0,0,6.5473599,6.5473599,0,0,0,0,0,0,0,0,7.7340517,0,49.3,59.89,53,55,6.666666666666667,1,1,0,0,9,2,5,1,422.66666,2544457,2114205.3,452051.53,35426.234,9252.334 -4880,6033,10822,-9,10821,10819,1,0,21,0,1,0,2,2,1,0,3,8.3110695,8.4895029,6.3384972,0,0,-1053.6317,-9,1,1,2019,17,5,38,0,1,5,1,12.896627,12.896627,0,0,0,0,0,0,0,0,6.2248349,0,36.43,60.14,-9,-9,5,1,1,0,0,3,2,5,1,1115,-133758,0,0,0,2196.1133 -4880,6034,10823,-9,10821,10819,1,1,18,0,1,0,3,3,1,0,4,0,0,0,0,0,-953.58765,-9,1,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,1,0,1,2,1,1,222,-140030.88,0,0,0,0 -4881,6035,10824,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1034.6118,0,3,3,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.3,23.48,-9,-9,0,1,1,0,0,0,12,1,0,281,0,0,0,0,1264.7604 -4882,6036,10825,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1089.2825,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,5,11,1,0,1696,659289.63,167799.81,434641,0,2081.8022 -4883,6037,10826,10829,-9,-9,1,1,32,1,4,0,2,2,-9,0,4,7.5566635,7.8056602,0,3,2,47.677361,0,-9,-9,2019,11,0,40,25,1,0,0,6.5214372,6.5214372,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.74,57.55,8.333333333333334,2,3,0,0,3,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 -4883,6037,10827,-9,10829,10826,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.76849,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 -4883,6037,10828,-9,10829,10826,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1106.0046,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 -4883,6037,10829,10826,-9,-9,1,0,30,1,4,0,1,1,-9,0,5,8.51126,8.3978891,0,3,-2,-149.01009,0,2,3,2019,8,0,50,42,1,0,0,9.2108526,9.2108526,0,0,0,0,0,1,1,0,2.87903,0,42.74,57.55,54.2,57.49,8.333333333333334,2,3,0,0,6,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 -4883,6037,10830,-9,10829,10826,1,0,10,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1108.9607,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 -4883,6037,10831,-9,10829,10826,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1148.1957,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,442.5,106652.5,71315.531,116975.38,78857.648,4226.1279 -4884,6038,10832,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.1649609,9.0823402,0,0,0,-883.60754,0,1,1,2019,6,0,41,45,1,0,0,29.297689,29.297689,0,0,0,0,0,0,0,0,4.0287189,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,8,8,5,1,576,598861.19,127148.65,232501.78,132087.36,3329.1077 -4885,6039,10833,10834,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.1064768,7.0027881,0,9,-2,117.25069,0,2,2,2019,5,0,44,40,1,0,0,3.2186761,3.2186761,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.81,54.55,8.333333333333334,1,1,0,0,9,9,5,1,284.5,254078.53,234340.47,0,0,5109.2217 -4885,6039,10834,10833,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,9.7606497,9.6819267,0,9,2,-4.7064586,0,-9,-9,2019,12,2,33,37,1,2,0,52.140663,52.140663,0,0,0,0,0,1,1,0,0,0,57.81,54.55,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,284.5,254078.53,234340.47,0,0,5109.2217 -4886,6040,10835,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,7.4338622,7.6674862,0,0,0,-990.59241,0,3,3,2019,5,0,15,15,1,0,0,14.229002,14.229002,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,4,5,0,0,9,11,3,1,870,416903.13,138522.91,164379.48,0,2226.2041 -4887,6041,10836,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,6.6789031,7.1243119,0,0,0,-945.70404,0,2,2,2019,7,0,16,21,1,0,0,6.3518124,6.3518124,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,13,2,1,3076,51568.785,0,0,0,2567.1038 -4887,6041,10837,-9,10836,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.8569,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,1,3076,51568.785,0,0,0,2567.1038 -4888,6042,10838,10839,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,6.965292,7.2235618,0,20,0,13.714065,0,2,2,2019,11,0,10,10,1,0,0,14.944328,14.944328,0,0,0,0,0,0,0,0,6.3049655,0,54.62,37.47,53.64,48.41,8.333333333333334,1,1,0,0,10,4,5,1,3605,57726.609,-26789.02,63266.973,0,2825.157 -4888,6042,10839,10838,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5581932,8.4309835,0,22,0,-100.91679,0,2,2,2019,10,1,50,60,1,1,0,13.107421,13.107421,0,0,0,0,0,0,0,0,3.2537804,0,53.64,48.41,54.62,37.47,6.666666666666667,1,1,0,0,10,4,5,1,3605,57726.609,-26789.02,63266.973,0,2825.157 -4889,6043,10840,10841,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,16,-7,0,0,2,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,18.76,23.91,53,55,0,1,1,1,0,0,13,1,0,289,-33788.582,0,0,0,2558.4976 -4889,6043,10841,10840,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,0,0,0,16,7,0,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,18.76,23.91,8,1,1,1,0,0,13,1,0,289,-33788.582,0,0,0,2558.4976 -4890,6044,10842,10843,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,8.4034557,8.4170341,7.4530087,49,-1,60.192131,0,2,1,2019,7,0,40,40,1,0,0,11.129679,11.129679,0,0,0,0,0,1,1,0,7.1582656,7.0219178,57.16,56.15,62.26,42.8,8.333333333333334,1,1,0,0,9,12,5,1,550,1406804,1028833.5,286893.97,0,6836.2354 -4890,6044,10843,10842,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,8.1304827,8.1618147,49,1,-29.937733,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8377228,8.4036751,62.26,42.8,57.16,56.15,6.666666666666667,1,1,0,0,0,12,5,1,550,1406804,1028833.5,286893.97,0,6836.2354 -4891,6045,10844,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,7.6216102,7.377275,0,0,-1054.1753,0,3,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.9822702,7.4818635,65.23999999999999,20.33,-9,-9,5,1,1,0,0,0,9,3,0,332,331094.16,274246.69,0,0,2029.6409 -4892,6046,10845,10847,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,12,0,84.270645,0,2,1,2019,21,9,0,50,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,46.34,61.24,62.49,55.09,3.333333333333333,1,1,1,0,8,11,2,1,734.25,217196.28,0,0,0,1003.8566 -4892,6046,10846,-9,10845,10847,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.24554,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,4,2,-9,0,0,11,2,1,734.25,217196.28,0,0,0,1003.8566 -4892,6046,10847,10845,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,6.4522171,6.2883463,0,12,0,101.22487,0,3,3,2019,7,0,10,8,1,0,0,5.55691,5.55691,0,0,0,0,0,1,1,0,6.7115188,0,62.49,55.09,46.34,61.24,8.333333333333334,4,5,0,0,8,11,2,1,734.25,217196.28,0,0,0,1003.8566 -4892,6046,10848,-9,10845,10847,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.73914,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,4,2,-9,0,0,11,2,1,734.25,217196.28,0,0,0,1003.8566 -4893,6047,10849,10851,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.6724463,8.1892977,0,6,9,-3.6608217,0,2,1,2019,11,1,38,38,1,1,0,11.867994,11.867994,0,0,0,0,0,1,1,0,0,0,45.81,58.99,35.5,54.11,6.666666666666667,1,1,0,1,11,12,4,1,719,52801.305,392.77325,0,0,3558.0127 -4893,6047,10850,-9,10851,10849,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.49011,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,719,52801.305,392.77325,0,0,3558.0127 -4893,6047,10851,10849,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.3043394,7.9104881,0,8,0,47.35112,0,3,3,2019,11,0,28,30,1,0,0,10.134424,10.134424,0,0,0,0,0,1,1,0,0,0,35.5,54.11,45.81,58.99,3.333333333333333,1,1,0,1,10,12,4,1,719,52801.305,392.77325,0,0,3558.0127 -4893,6047,10852,-9,10851,10849,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.24591,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,719,52801.305,392.77325,0,0,3558.0127 -4894,6048,10853,10854,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.7672505,7.7745953,9,1,-6.7233257,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.168644,8.0358334,39.48,38.56,50.58,51.02,6.666666666666667,1,1,0,0,0,11,3,1,284.5,973621.63,506306.5,86186.023,0,2276.3721 -4894,6048,10854,10853,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,6.1937504,5.7724676,9,-1,-122.33744,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.4557214,6.2533813,50.58,51.02,39.48,38.56,6.666666666666667,1,1,0,0,0,11,3,1,284.5,973621.63,506306.5,86186.023,0,2276.3721 -4895,6049,10855,-9,10856,10858,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-951.51196,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 -4895,6049,10856,10858,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,8.0106478,8.09375,0,4,0,-60.51984,0,2,1,2019,9,1,20,0,1,1,0,15.377569,15.377569,0,0,0,0,0,1,1,0,0,0,44.39,48.74,48.45,49.46,8.333333333333334,3,4,0,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 -4895,6049,10857,-9,10856,10858,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.7029,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 -4895,6049,10858,10856,-9,-9,1,1,44,0,3,0,1,1,-9,0,3,8.5592155,8.5599861,0,4,0,-94.908989,0,2,1,2019,8,1,37,37,1,1,0,22.859529,22.859529,0,0,0,0,0,1,1,0,0,0,48.45,49.46,44.39,48.74,8.333333333333334,3,4,0,0,10,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 -4895,6049,10859,-9,10856,10858,1,0,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1161.4662,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,3,4,-9,0,0,12,4,1,719.59998,449840.06,216478.55,0,0,3834.8926 -4896,6050,10860,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.1642079,4.8162823,0,0,-896.2793,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2366891,53.8,35.16,-9,-9,3.333333333333333,1,1,0,0,7,2,2,0,448,-4791.0879,-64228.945,0,0,1245.7216 -4897,6051,10861,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.6035337,7.3873272,0,0,-975.28284,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5327854,7.5292478,64.55,36.47,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,320,728504,92958.953,217736.17,0,2452.1311 -4898,6052,10862,10863,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.2731709,7.3246884,3,4,115.08807,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.816267,7.7363567,60.12,54.8,57.16,56.15,10,1,1,0,0,3,12,2,1,1132,163163.47,140733.53,282598.53,0,2427.6372 -4898,6052,10863,10862,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,3,-4,-28.724979,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5849595,0,57.16,56.15,60.12,54.8,10,1,1,0,0,0,12,2,1,1132,163163.47,140733.53,282598.53,0,2427.6372 -4899,6053,10864,10865,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,9.7126818,9.6230392,8.5394211,38,7,-46.60173,0,3,3,2019,10,0,30,35,1,1,0,58.80769,58.80769,0,0,0,0,0,0,0,0,7.9131784,8.2575912,52,48,57.78,39.56,7,2,3,0,0,1,8,5,1,506,2262985.3,820486.38,1424348.9,74506.641,9156.1396 -4899,6053,10865,10864,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,38,-7,6.5841293,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,0,0,0,3.9983101,0,57.78,39.56,52,48,10,2,3,0,0,4,8,5,1,506,2262985.3,820486.38,1424348.9,74506.641,9156.1396 -4900,6054,10866,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.344348,8.4414206,0,0,0,-1082.1567,0,2,2,2019,8,0,39,37,1,0,0,10.542497,10.542497,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,301,223952.91,106260.81,0,0,2152.3057 -4901,6055,10867,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,6.7263188,6.5455656,0,15,-7,-105.84181,0,2,2,2019,20,7,50,60,1,7,0,2.0099642,2.0099642,0,0,0,0,0,0,0,0,0,0,24.27,40.31,38.01,50.19,1.666666666666667,1,1,0,1,11,9,3,1,1116,-169047.27,0,0,0,719.81287 -4901,6056,10868,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.710146,7.7693133,0,15,7,44.89431,0,2,2,2019,15,4,50,60,1,4,0,7.3132644,7.3132644,0,0,0,0,27,0,0,0,0,0,38.01,50.19,24.27,40.31,8.333333333333334,1,1,0,1,11,9,3,1,643,472775.34,53804.773,228281.86,0,1047.7507 -4902,6057,10869,-9,10871,10873,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1164.0922,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 -4902,6057,10870,-9,10871,10873,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.8049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 -4902,6057,10871,10873,-9,-9,1,0,47,0,3,0,2,2,-9,0,5,0,0,0,13,0,37.224903,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,38.75,44.93,8.333333333333334,1,1,0,0,5,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 -4902,6057,10872,-9,10871,10873,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.8307,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 -4902,6057,10873,10871,-9,-9,1,1,47,0,3,0,2,2,-9,0,2,7.9320445,7.8550797,0,13,0,-42.197483,0,2,-9,2019,11,1,40,40,1,1,0,9.5796652,9.5796652,0,0,0,0,0,1,1,0,0,0,38.75,44.93,48.77,60.16,1.666666666666667,1,1,0,0,6,11,3,1,474.79999,-59262.402,44165.68,0,0,2003.2463 -4903,6058,10874,10877,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.8855438,8.7296543,0,9,1,21.352882,0,-9,-9,2019,9,0,62,58,1,0,0,10.022282,10.022282,0,0,0,0,0,0,0,0,.10695074,0,52.82,53.97,38.94,60.48,5,1,1,0,0,10,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 -4903,6058,10875,-9,10877,10874,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1079.3608,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 -4903,6058,10876,-9,10877,10874,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.3447,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 -4903,6058,10877,10874,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,6.4555917,6.3426938,0,9,-1,38.142818,0,-9,-9,2019,12,1,7,9,1,1,0,10.241921,10.241921,0,0,0,0,0,0,0,0,.26135752,0,38.94,60.48,52.82,53.97,6.666666666666667,1,1,0,0,13,1,4,1,443.75,420722.56,130940.45,104184.23,0,2357.8098 -4904,6059,10878,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-953.65149,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,4.6409864,10.275581,48.168816,0,1,1,0,0,0,60.76,9.25,-9,-9,10,1,1,0,0,0,12,1,0,1766,176067.19,0,0,0,1793.7534 -4905,6060,10879,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.8131762,8.6530943,0,0,0,-1033.4926,-9,2,2,2019,21,9,40,0,1,9,0,18.722635,18.722635,0,0,0,0,27,0,0,0,0,0,47.6,32.56,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,177,670252.25,113099.52,358433.53,0,2875.5012 -4906,6061,10880,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,5.6987162,5.9116316,0,0,-1012.9504,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1657183,5.6334414,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1296,-118305.63,172620.88,145746,0,1290.7076 -4907,6062,10881,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.088994,7.9732299,5.9654651,0,0,-1077.4658,0,3,2,2019,16,4,7,40,1,4,0,46.340858,46.340858,0,0,0,0,0,0,0,0,4.2064586,5.8221602,31.34,58.78,-9,-9,10,1,1,0,0,8,8,4,0,481,-197989.39,73505.875,251395.08,100814.09,1330.0914 -4908,6063,10882,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.3962336,8.1739864,0,0,0,-1015.4961,0,3,2,2019,17,5,46,43,1,5,0,13.887055,13.887055,0,0,0,0,0,1,1,0,0,0,35.96,57.43,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,729,478518.22,4351.5088,210745.63,58407.867,1590.4037 -4909,6064,10883,10884,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.7164378,7.8474846,0,26,-2,-21.90258,0,2,2,2019,32,12,39,37,1,12,0,6.8878779,6.8878779,0,0,0,0,2,1,1,0,0,0,16.46,61.33,42.06,53.95,3.333333333333333,1,1,0,1,11,10,3,1,1152.5,132977.8,97413.141,0,0,1891.8477 -4909,6064,10884,10883,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,6.8269529,6.5275731,0,8,2,-47.611946,0,3,2,2019,12,1,16,12,1,1,0,5.5086708,5.5086708,0,0,0,0,2,1,1,0,0,0,42.06,53.95,16.46,61.33,5,1,1,0,1,9,10,3,1,1152.5,132977.8,97413.141,0,0,1891.8477 -4909,6065,10885,-9,10883,10884,1,1,22,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1080.058,0,2,2,2019,10,1,0,18,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,24.53,44.72,-9,-9,1.666666666666667,1,1,0,0,4,10,1,1,1025,-4048.761,0,0,0,260.28653 -4910,6066,10886,10887,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.6882429,8.0066957,0,48,-1,-.07941778,0,3,2,2019,10,0,33,33,1,0,0,8.3349752,8.3349752,0,0,0,0,74.5,1,1,0,0,0,49.95,56.68,42.6,26.51,8.333333333333334,1,1,0,0,9,12,3,1,1222,-139422.77,107303.52,47224.141,0,2381.2861 -4910,6066,10887,10886,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,48,1,-27.796923,0,2,2,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.6,26.51,49.95,56.68,5,1,1,0,0,0,12,3,1,1222,-139422.77,107303.52,47224.141,0,2381.2861 -4911,6067,10888,10889,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.2655087,8.0555363,0,5,-16,79.564514,0,2,2,2019,11,0,50,45,1,1,0,9.0936146,9.0936146,0,0,0,0,0,1,1,0,0,0,49,50,47.4,55.39,7,1,1,0,0,1,4,3,1,1907.5,646142.13,563595,220906.98,0,1633.1815 -4911,6067,10889,10888,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,5,16,-105.41989,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7914724,0,47.4,55.39,49,50,8.333333333333334,1,1,0,0,3,4,3,1,1907.5,646142.13,563595,220906.98,0,1633.1815 -4912,6068,10890,10891,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5164652,7.7838955,0,2,-2,24.801775,0,-9,-9,2019,13,3,33,33,1,3,0,7.2094545,7.2094545,0,0,0,0,5.48,1,1,0,0,0,40.83,59.68,49.52,56.95,10,1,1,0,0,2,11,3,0,581,209958.44,29751.697,0,0,1118.3994 -4912,6068,10891,10890,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,2,2,2.8205154,1,-9,-9,2019,12,1,0,45,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,40.83,59.68,3.333333333333333,1,1,0,0,4,11,3,0,581,209958.44,29751.697,0,0,1118.3994 -4913,6069,10892,10893,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,59,-5,0,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,48.5,24.94,31.45,34.16,5,1,1,0,0,0,5,1,1,582,-98019.109,0,119202.13,0,1219.2981 -4913,6069,10893,10892,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,59,5,0,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,16.623108,0,120,1,1,0,0,0,31.45,34.16,48.5,24.94,8.333333333333334,1,1,0,0,0,5,1,1,582,-98019.109,0,119202.13,0,1219.2981 -4914,6070,10894,-9,10896,10895,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.67578,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,2258.3333,1015947.6,348268.66,582095.5,0,3440.0061 -4914,6070,10895,10896,-9,-9,1,1,64,0,1,0,2,2,-9,0,2,0,4.9485536,5.4246941,7,11,-12.768998,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1248264,5.0446777,41.28,39.56,63.38,53.47,5,1,1,0,0,8,10,4,1,2258.3333,1015947.6,348268.66,582095.5,0,3440.0061 -4914,6070,10896,10895,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.5794392,8.863822,0,7,-11,31.841505,0,3,3,2019,12,0,30,30,1,0,0,25.914667,25.914667,0,0,0,0,0,1,1,0,7.4257412,0,63.38,53.47,41.28,39.56,10,1,1,0,0,8,10,4,1,2258.3333,1015947.6,348268.66,582095.5,0,3440.0061 -4915,6071,10897,10898,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.3880773,7.7803955,6.8011413,7,-5,11.994686,0,3,3,2019,7,0,35,35,1,0,0,1.8369675,1.8369675,0,0,0,0,0,1,1,0,.43649775,6.899066,59.46,46.99,64.23,44.69,8.333333333333334,1,1,0,0,9,10,2,1,650.5,49158.43,0,0,0,3322.3794 -4915,6071,10898,10897,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,39,5,-108.65067,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.2376661,0,64.23,44.69,59.46,46.99,8.333333333333334,1,1,0,0,0,10,2,1,650.5,49158.43,0,0,0,3322.3794 -4916,6072,10899,10900,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.8379784,7.5807772,6,-6,-23.777363,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7393816,7.8331585,56.75,36.33,55.6,37.07,10,1,1,0,0,3,11,3,1,1110,1217501.8,692819.63,315987.81,0,3065.3784 -4916,6072,10900,10899,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.2838516,7.5628643,6,6,108.759,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1723046,7.2115984,55.6,37.07,56.75,36.33,8.333333333333334,1,1,0,0,1,11,3,1,1110,1217501.8,692819.63,315987.81,0,3065.3784 -4917,6073,10901,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1121.2086,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,7.8317437,0,0,1,1,0,0,0,57.92,38.59,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,912,-291687.09,0,0,0,2168.8169 -4918,6074,10902,10903,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.4595404,8.3440866,0,6,3,111.73882,0,3,3,2019,12,1,40,45,1,1,0,12.781306,12.781306,0,0,0,0,0,0,0,0,0,0,42.85,36.14,57.33,40.23,6.666666666666667,1,1,0,0,7,4,4,1,849.5,146364.97,19284.695,240422.52,13122.105,2400.7573 -4918,6074,10903,10902,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.3204207,7.240109,0,6,-3,68.523361,0,3,3,2019,6,0,38,30,1,0,0,3.8055258,3.8055258,0,0,0,0,0,0,0,0,0,0,57.33,40.23,42.85,36.14,8.333333333333334,1,1,0,0,7,4,4,1,849.5,146364.97,19284.695,240422.52,13122.105,2400.7573 -4919,6075,10904,10905,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.9136467,8.063755,7,-2,.19008948,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.6995687,7.4500351,51.24,58.84,54.79,55.86,8.333333333333334,1,1,0,0,0,9,3,1,836,1192223,139143.17,561518.13,0,2155.7742 -4919,6075,10905,10904,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,7,2,49.799416,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.391139,0,54.79,55.86,51.24,58.84,8.333333333333334,1,1,0,0,0,9,3,1,836,1192223,139143.17,561518.13,0,2155.7742 -4920,6076,10906,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.2102079,8.2633438,0,0,0,-920.56677,-9,3,2,2019,6,0,64,0,1,0,0,7.9551492,7.9551492,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,1239,209025.36,90315.984,0,0,1817.3433 -4921,6077,10907,-9,10910,10908,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.74524,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 -4921,6077,10908,10910,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,8.6510763,8.8253345,0,14,-2,-51.014797,0,-9,1,2019,18,5,38,34,1,5,0,14.944607,14.944607,0,0,0,0,0,0,0,0,0,0,13.98,65.45,32.32,27.54,5,1,1,0,0,8,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 -4921,6077,10909,-9,10910,10908,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.87427,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 -4921,6077,10910,10908,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,8.8724566,8.6895142,0,14,2,101.81657,0,3,3,2019,20,8,38,30,1,8,0,18.7241,18.7241,0,0,0,0,0,0,0,0,0,0,32.32,27.54,13.98,65.45,6.666666666666667,1,1,0,0,10,11,5,1,577.25,426272.56,210622.02,254320.95,151607.27,4052.7415 -4922,6078,10911,10912,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.2207189,7.4502058,56,3,112.65399,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1423874,58.84,47.11,48.68,54.5,8.333333333333334,1,1,0,0,0,10,2,1,783,770362.88,338134.75,405868.69,0,1546.4414 -4922,6078,10912,10911,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,56,-3,39.174969,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0038631,0,48.68,54.5,58.84,47.11,8.333333333333334,1,1,0,0,7,10,2,1,783,770362.88,338134.75,405868.69,0,1546.4414 -4923,6079,10913,10916,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,7.861217,7.8558412,0,8,7,-173.82184,0,2,-9,2019,11,0,45,45,1,0,0,7.4135327,7.4135327,0,0,0,0,0,1,1,0,0,0,42.5,53.5,57.16,56.15,6.666666666666667,1,1,0,1,7,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 -4923,6079,10914,-9,10916,10913,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.21265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 -4923,6079,10915,-9,10916,10913,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.34912,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 -4923,6079,10916,10913,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.3522968,7.786521,0,15,-7,45.496181,0,-9,2,2019,5,0,20,16,1,0,0,9.5376253,9.5376253,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.5,53.5,8.333333333333334,1,1,0,0,7,4,3,0,956.25,157423.95,46734.578,80676.281,68233.18,2629.3599 -4924,6080,10917,10918,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.8424907,6.9762506,21,5,23.839302,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1296327,6.5431929,65.47,35.12,67.36,24.59,10,1,1,0,0,0,5,2,1,639.5,441985.13,30985.336,141211.95,0,1236.6263 -4924,6080,10918,10917,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,20,-5,-24.329489,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.36,24.59,65.47,35.12,10,1,1,0,0,0,5,2,1,639.5,441985.13,30985.336,141211.95,0,1236.6263 -4925,6081,10919,-9,10921,10920,1,0,21,0,1,1,2,0,0,0,2,0,0,0,0,0,-1051.8351,-9,2,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,27.37,50.04,-9,-9,6.666666666666667,1,1,0,0,4,12,1,1,1039,-306526.66,0,0,0,0 -4925,6082,10920,10921,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5449543,8.7475948,0,7,5,-49.304901,0,2,2,2019,21,9,39,40,1,9,0,14.828635,14.828635,0,0,0,0,7,1,1,0,0,0,47.68,55.12,51.85,11.83,8.333333333333334,1,1,0,0,8,12,3,1,1247.3334,2247982,2049045.5,229620.25,-4604.5215,2310.5972 -4925,6082,10921,10920,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,7,-5,-.96135187,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.85,11.83,47.68,55.12,8.333333333333334,1,1,0,0,0,12,3,1,1247.3334,2247982,2049045.5,229620.25,-4604.5215,2310.5972 -4925,6082,10922,-9,10921,10920,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-872.05774,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1247.3334,2247982,2049045.5,229620.25,-4604.5215,2310.5972 -4926,6083,10923,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1010.9424,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,4.2880116,0,0,1,1,0,0,0,55.52,16.74,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,307,-352845.38,0,0,0,2083.8159 -4927,6084,10924,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,6.9039311,6.8375754,0,0,-1118.6394,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7474728,7.389955,52.49,49.26,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1021,228883.73,-20117.855,324184.44,0,983.60596 -4928,6085,10925,-9,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,7.9068551,7.9390612,7.0053821,0,0,-1046.3685,0,3,3,2019,10,0,25,35,1,1,0,11.25311,11.25311,0,0,0,0,0,1,1,0,6.6491957,0,50,49,-9,-9,7,3,4,0,1,12,8,4,1,2659,395382.94,118615.2,634798.38,0,1943.3617 -4928,6086,10926,-9,-9,10925,1,0,38,0,1,0,2,2,-9,0,4,0,0,0,0,0,-977.78198,-9,-9,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,1,0,0,8,2,1,590,-62178.934,0,0,0,1265.5205 -4928,6086,10927,-9,10926,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-877.7951,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,8,2,1,590,-62178.934,0,0,0,1265.5205 -4928,6087,10928,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,6.9558659,7.5250759,0,0,0,-907.4895,-9,-9,-9,2019,10,0,80,0,1,1,0,2.1150792,2.1150792,0,0,0,0,0,1,1,0,1.2773999,0,50,57,-9,-9,7,4,6,0,0,1,8,2,1,649,7425.1055,46376.523,0,0,704.35815 -4929,6088,10929,10932,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,0,0,0,8,2,-30.126122,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,2.2401824,0,47.69,55.06,44.02,60.7,6.666666666666667,1,1,1,0,9,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 -4929,6088,10930,-9,10932,10929,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1043.2073,-9,1,1,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,20.49,69.16,-9,-9,3.333333333333333,1,1,0,0,0,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 -4929,6088,10931,-9,10932,10929,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1062.1606,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 -4929,6088,10932,10929,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.3939123,9.4537258,0,8,-2,-10.737585,0,1,1,2019,13,2,42,24,1,2,0,31.442842,31.442842,0,0,0,0,0,0,0,0,0,0,44.02,60.7,47.69,55.06,1.666666666666667,1,1,0,0,8,12,5,1,553.75,684418.81,376562.03,325053.63,48381.141,2968.2351 -4930,6089,10933,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.5519867,8.5571804,3.8277934,0,0,-1072.9978,0,2,3,2019,10,0,39,35,1,0,0,12.266497,12.266497,0,0,0,0,0,0,0,0,5.2725763,0,47.09,58.02,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,1160,306220.75,0,0,0,1381.7979 -4931,6090,10934,10935,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6890011,8.8570452,0,7,4,3.7668254,0,-9,-9,2019,9,0,48,48,1,0,0,13.851558,13.851558,0,0,0,0,0,0,0,0,0,0,54.37,54.8,48.31,46.76,8.333333333333334,2,3,0,0,10,9,4,1,541.5,505305.34,68522.375,135119,7895.9209,2336.3606 -4931,6090,10935,10934,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,36,-4,53.081146,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,48.31,46.76,54.37,54.8,5,2,3,0,0,0,9,4,1,541.5,505305.34,68522.375,135119,7895.9209,2336.3606 -4931,6091,10936,-9,10935,10934,1,1,34,0,0,0,2,2,-9,0,4,8.1027784,8.0931892,0,0,0,-958.80267,0,3,2,2019,10,0,40,40,1,1,1,9.2389126,9.2389126,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,2,3,0,0,1,9,4,1,345,100079.9,-10555.836,0,0,1761.0654 -4932,6092,10937,10938,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.6322274,7.9736571,0,17,-6,-37.148502,0,2,2,2019,7,0,25,25,1,0,0,8.7793894,8.7793894,0,0,0,0,2,1,1,0,0,0,57.33,53.46,36.33,43.17,8.333333333333334,1,1,0,0,8,7,4,0,284.5,547306.81,298370.81,308273.97,30782.301,2499.2036 -4932,6092,10938,10937,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.0474663,7.9530501,0,17,6,99.21524,0,2,2,2019,22,10,40,40,1,10,0,10.714327,10.714327,0,0,0,0,0,1,1,0,0,0,36.33,43.17,57.33,53.46,3.333333333333333,1,1,0,0,9,7,4,0,284.5,547306.81,298370.81,308273.97,30782.301,2499.2036 -4933,6093,10939,-9,-9,-9,1,0,54,0,2,0,2,2,-9,0,2,7.8803821,7.7631893,0,0,0,-967.64459,0,3,3,2019,11,0,37,0,1,0,0,7.0325837,7.0325837,0,0,0,0,0,1,1,0,0,0,47.8,47.66,-9,-9,3.333333333333333,3,4,0,1,9,8,3,0,240,365232.59,-18800.316,110192.4,21809.973,2370.717 -4934,6094,10940,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,6.7345252,6.7652717,0,0,-1018.8803,0,2,1,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,7.2387486,0,25.61,46.24,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,395,-86423.273,148207.73,0,0,912.98218 -4935,6095,10941,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.79309,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.55,48.3,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,167,-21071.357,0,0,0,657.84918 -4936,6096,10942,10943,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.2237635,7.0441675,7,-6,162.65901,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.3271885,7.3838649,36.87,37.51,61.79,16.18,8.333333333333334,1,1,0,0,0,9,3,1,1021.5,783602.88,174281.36,467846.88,0,2118.6953 -4936,6096,10943,10942,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.3289499,7.5487208,7,6,68.943626,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.169723,7.0681939,61.79,16.18,36.87,37.51,8.333333333333334,1,1,0,0,0,9,3,1,1021.5,783602.88,174281.36,467846.88,0,2118.6953 -4937,6097,10944,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.3150673,8.2647171,0,0,0,-1016.5453,0,3,3,2019,8,0,43,45,1,0,0,10.619755,10.619755,0,0,0,0,7,0,0,0,0,0,45.22,63.14,-9,-9,8.333333333333334,3,4,0,0,8,8,4,0,825,-104087.5,55606.273,0,0,1823.2098 -4938,6098,10945,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-862.0791,0,2,2,2019,27,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,20.95,32.43,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,509,-52270.066,123581.14,0,0,1186.2832 -4939,6099,10946,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-910.5119,0,3,3,2019,21,9,0,30,3,9,0,0,0,0,0,0,0,0,0,0,0,6.7418327,0,42.17,22.65,-9,-9,1.666666666666667,1,1,1,1,8,9,1,1,116,-312050.97,0,0,0,-90.366508 -4940,6100,10947,10948,-9,-9,1,0,39,0,2,0,1,1,-9,0,2,0,0,0,16,-1,-89.860107,0,1,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,0,0,0,0,0,46.21,37.4,54.1,59.11,8.333333333333334,1,1,0,0,6,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 -4940,6100,10948,10947,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.191534,8.5915508,0,16,1,-50.547901,0,2,2,2019,7,0,50,60,1,0,0,18.484844,18.484844,0,0,0,0,0,0,0,0,3.0784547,0,54.1,59.11,46.21,37.4,8.333333333333334,1,1,0,0,11,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 -4940,6100,10949,-9,10947,10948,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.91315,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 -4940,6100,10950,-9,10947,10948,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.10614,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,826.5,395132.44,252492.25,286539.91,55290.641,3221.3005 -4941,6101,10951,-9,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,8.4858046,8.9446602,0,0,-982.79584,0,2,1,2019,14,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,8.3644457,46.89,25.18,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,242,565802.13,542041.75,64940.195,0,2804.1948 -4942,6102,10952,-9,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,7.9540334,7.8375921,0,0,0,-1044.8625,0,-9,-9,2019,11,0,24,23,1,1,0,17.450941,17.450941,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,1,10,8,3,0,416,-77823.711,76596.594,275733.28,114904.5,3446.7681 -4942,6102,10953,-9,10952,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.6771,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,416,-77823.711,76596.594,275733.28,114904.5,3446.7681 -4943,6103,10954,10955,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.1067648,7.9254909,7,4,77.214752,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,.12606739,8.1528435,39.39,37.66,61.05,33.88,5,1,1,0,0,4,9,4,1,325.5,1067921.6,571778.63,452772.44,0,2529.6606 -4943,6103,10955,10954,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8948441,7.5559268,0,7,-4,10.122057,0,3,-9,2019,8,0,39,35,1,0,0,6.8574133,6.8574133,0,0,0,0,0,0,0,0,0,0,61.05,33.88,39.39,37.66,6.666666666666667,1,1,0,0,11,9,4,1,325.5,1067921.6,571778.63,452772.44,0,2529.6606 -4944,6104,10956,10957,-9,-9,1,0,64,0,0,0,3,3,-9,0,5,0,0,0,44,-5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,54.96,53.17,3.333333333333333,1,1,0,1,7,12,1,1,1075,-80302.906,0,0,0,1058.399 -4944,6104,10957,10956,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,44,5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,48.18,61.8,6.666666666666667,1,1,0,0,0,12,1,1,1075,-80302.906,0,0,0,1058.399 -4945,6105,10958,-9,10961,10959,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.22974,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 -4945,6105,10959,10961,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.6951256,8.3634148,0,13,5,86.716492,0,2,-9,2019,11,0,50,37,1,0,0,12.494542,12.494542,0,0,0,0,0,1,1,0,0,0,48.45,57.49,46.32,53.44,5,1,1,0,1,10,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 -4945,6105,10960,-9,10961,10959,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.0583,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 -4945,6105,10961,10959,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,0,0,0,12,-5,-131.10822,0,2,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,48.45,57.49,6.666666666666667,1,1,0,0,0,9,3,0,1090.75,246793.28,130696.5,204772.69,94929.859,2557.2173 -4945,6106,10962,-9,10961,10959,1,0,21,0,2,0,2,2,-9,0,4,7.6163478,7.7793288,0,0,0,-909.91284,-9,2,2,2019,12,0,14,0,1,2,1,17.23666,17.23666,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,3,0,955,459292.19,0,0,0,1417.812 -4946,6107,10963,10964,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5323334,8.5348806,0,7,-1,-19.791456,0,3,3,2019,10,0,37,38,1,1,0,12.031071,12.031071,0,0,0,0,0,1,1,0,0,0,52,48,34.54,51.79,7,1,1,0,0,1,7,4,1,743.5,1297171.8,831629.75,328124.69,0,2293.1128 -4946,6107,10964,10963,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,7,1,12.989681,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.1683512,0,34.54,51.79,52,48,1.666666666666667,1,1,0,0,6,7,4,1,743.5,1297171.8,831629.75,328124.69,0,2293.1128 -4946,6108,10965,-9,10964,-9,1,1,42,0,0,0,2,2,-9,0,4,7.4889703,7.7370095,0,0,0,-886.24597,0,3,-9,2019,9,0,30,30,1,1,0,7.2602034,7.2602034,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,1,7,3,1,437,-177067.41,0,0,0,-90.500977 -4946,6109,10966,-9,10964,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.2155,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,1,0,0,7,1,1,476,103776.92,0,0,0,322.86871 -4947,6110,10967,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.3049812,8.4069471,0,0,0,-1130.0175,0,-9,-9,2019,12,0,40,10,1,0,0,10.957644,10.957644,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,773,136017.86,62237.172,0,0,1321.193 -4948,6111,10968,10969,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,8,-1,46.918663,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,55.6,48.28,60.18,8.333333333333334,1,1,0,0,0,2,3,1,311,820757.63,471856.31,192155.66,0,2399.229 -4948,6111,10969,10968,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.5600858,7.8015852,8,1,105.13392,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6001964,48.28,60.18,46.62,55.6,8.333333333333334,1,1,0,0,0,2,3,1,311,820757.63,471856.31,192155.66,0,2399.229 -4949,6112,10970,-9,10971,10972,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.54175,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,6,-9,0,0,1,4,1,679,93506.836,167452.81,185773.31,142604.61,2317.4209 -4949,6112,10971,10972,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.2475996,7.7405801,0,10,-7,74.151657,0,3,3,2019,13,3,30,30,1,3,0,14.373483,14.373483,0,0,0,0,2,1,1,0,0,0,35.64,55.1,38.28,57.07,8.333333333333334,1,1,0,0,13,1,4,1,679,93506.836,167452.81,185773.31,142604.61,2317.4209 -4949,6112,10972,10971,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.8550801,8.1735668,0,10,7,19.542538,0,-9,-9,2019,17,5,37,37,1,5,0,7.2741623,7.2741623,0,0,0,0,2,1,1,0,.13457343,0,38.28,57.07,35.64,55.1,3.333333333333333,1,1,0,0,13,1,4,1,679,93506.836,167452.81,185773.31,142604.61,2317.4209 -4950,6113,10973,10974,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,0,0,0,13,-6,39.842022,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,56.86,59.78,55.17,10,2,3,0,0,0,8,2,0,557.5,176694,0,273339.88,188064.67,2430.9155 -4950,6113,10974,10973,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,6.6053348,7.1557336,0,13,6,-32.21619,0,3,2,2019,6,0,20,24,1,0,0,5.6713705,5.6713705,0,0,0,0,0,1,1,0,0,0,59.78,55.17,56.96,56.86,10,2,3,0,0,11,8,2,0,557.5,176694,0,273339.88,188064.67,2430.9155 -4951,6114,10975,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,9.0106049,9.1263847,0,0,0,-1091.0829,0,2,-9,2019,24,10,84,77,1,10,0,13.872538,13.872538,0,0,0,1.4212089,0,0,0,0,2.1510487,0,13.82,34.43,-9,-9,1.666666666666667,1,1,0,0,8,12,5,0,306,102287.47,0,0,0,3082.0632 -4952,6115,10976,-9,-9,-9,1,0,27,0,1,0,2,2,-9,1,3,6.8877783,6.7120457,0,0,0,-988.97577,0,3,3,2019,16,4,14,14,1,4,0,8.0644732,8.0644732,0,0,0,0,42,1,1,0,0,0,30.88,53.54,-9,-9,5,2,3,0,1,8,5,2,0,1121.5,-134235.03,0,0,0,1128.8806 -4952,6115,10977,-9,10976,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.8974,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,2,0,1121.5,-134235.03,0,0,0,1128.8806 -4953,6116,10978,10979,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.5882215,8.9802122,0,4,4,-55.72694,0,2,2,2019,10,1,37,40,1,1,0,17.736897,17.736897,0,0,0,0,0,0,0,0,0,0,49.25,61.25,42.73,58.53,8.333333333333334,1,1,0,0,6,9,5,1,475.5,-92880.992,151348.33,0,0,3519.7729 -4953,6116,10979,10978,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.8849659,8.7592268,0,4,-4,-50.653549,0,-9,-9,2019,11,1,40,37,1,1,0,15.446069,15.446069,0,0,0,0,0,0,0,0,3.8085294,0,42.73,58.53,49.25,61.25,6.666666666666667,1,1,0,0,4,9,5,1,475.5,-92880.992,151348.33,0,0,3519.7729 -4954,6117,10980,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.9875531,8.4511633,0,0,0,-928.80554,0,3,3,2019,20,9,21,20,1,9,0,17.945581,17.945581,0,0,0,0,0,1,1,0,0,0,48.3,43.01,-9,-9,5,3,4,0,0,6,8,3,0,1542.6666,664178.44,634368.63,156197.63,83247.617,2529.2126 -4954,6117,10981,-9,10980,-9,1,0,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1135.8887,-9,2,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.71,63.08,-9,-9,6.666666666666667,3,4,1,0,0,8,3,0,1542.6666,664178.44,634368.63,156197.63,83247.617,2529.2126 -4954,6117,10982,-9,10980,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.2374,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,1542.6666,664178.44,634368.63,156197.63,83247.617,2529.2126 -4955,6118,10983,10984,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,30,-1,52.483681,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9868364,0,60.29,52.11,62.49,55.09,10,1,1,0,0,4,6,3,1,1172.5,580423.19,439636.94,95045.828,0,1311.1367 -4955,6118,10984,10983,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.6817603,7.485528,30,1,230.81981,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6836824,7.5959816,62.49,55.09,60.29,52.11,10,1,1,0,0,4,6,3,1,1172.5,580423.19,439636.94,95045.828,0,1311.1367 -4956,6119,10985,10986,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,57,-4,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,2,1,1,2498.5,218089.06,53097.523,0,0,718.06244 -4956,6119,10986,10985,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,57,4,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,52,45,8,2,3,0,0,0,2,1,1,2498.5,218089.06,53097.523,0,0,718.06244 -4957,6120,10987,-9,-9,-9,1,0,58,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1027.7111,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.2252702,0,58.9,13.94,-9,-9,5,1,1,0,0,0,10,1,0,1090,278638.41,0,0,0,1907.1934 -4957,6121,10988,-9,10987,-9,1,1,36,0,2,0,2,2,-9,0,3,8.7908287,8.9014263,0,0,0,-900.48474,0,2,-9,2019,9,0,67,30,1,0,1,10.744236,10.744236,0,0,0,0,2,1,1,0,1.6447353,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,617.33331,116318.08,95384.031,206868.27,83914.781,2791.1938 -4957,6121,10989,-9,-9,10988,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.38251,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,617.33331,116318.08,95384.031,206868.27,83914.781,2791.1938 -4957,6121,10990,-9,-9,10988,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1174.0065,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,5,0,617.33331,116318.08,95384.031,206868.27,83914.781,2791.1938 -4958,6122,10991,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.8772087,8.2256756,0,0,0,-982.19238,0,2,2,2019,5,0,44,77,1,0,0,18.038958,18.038958,0,0,0,0,0,0,0,0,.54911959,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,1070,141324.92,38221.625,133817.14,25643.533,2663.3015 -4959,6123,10992,10993,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,7.6950932,7.7835236,0,7,0,143.33632,0,2,2,2019,20,8,28,27,1,8,0,10.692523,10.692523,0,0,0,0,74.5,0,0,0,0,0,41.88,30.96,47.3,53.21,6.666666666666667,1,1,0,0,10,12,5,0,637.5,1572874.9,102162.09,1047438.8,0,4488.7314 -4959,6123,10993,10992,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.3256884,9.2787924,0,7,0,125.65872,0,-9,-9,2019,10,0,45,40,1,0,0,26.194006,26.194006,0,0,0,0,74.5,0,0,0,0,0,47.3,53.21,41.88,30.96,8.333333333333334,1,1,0,0,12,12,5,0,637.5,1572874.9,102162.09,1047438.8,0,4488.7314 -4959,6124,10994,-9,10992,10993,1,1,24,0,0,0,2,2,-9,0,4,8.1292992,7.8952031,0,0,0,-996.52319,-9,2,2,2019,10,0,38,0,1,1,1,8.2929525,8.2929525,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,4,0,327,335007.41,136781.88,0,0,1703.2416 -4960,6125,10995,-9,10996,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.3507,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,1455,-31272.688,38815.852,0,0,2564.3833 -4960,6125,10996,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.0539751,8.290885,0,0,0,-1016.4744,0,3,3,2019,4,0,32,35,1,0,0,12.893912,12.893912,0,0,0,0,2,1,1,0,0,0,44.56,59.44,-9,-9,8.333333333333334,2,3,0,0,7,8,3,0,1455,-31272.688,38815.852,0,0,2564.3833 -4961,6126,10997,10998,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.7820292,9.5577841,0,33,-2,-76.96109,0,2,2,2019,9,0,45,48,1,0,0,44.68182,44.68182,0,0,0,0,0,0,0,0,0,0,61.16,53.18,57.16,56.15,10,1,1,0,0,11,9,5,1,286,1072325.4,696236.19,356929.47,83616.414,5733.0176 -4961,6126,10998,10997,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.9405613,8.0443001,0,33,2,-14.808003,0,2,3,2019,10,0,35,35,1,0,0,8.9146881,8.9146881,0,0,0,0,0,0,0,0,4.272716,0,57.16,56.15,61.16,53.18,10,1,1,0,0,12,9,5,1,286,1072325.4,696236.19,356929.47,83616.414,5733.0176 -4962,6127,10999,11002,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,8.4958706,8.5091515,0,19,5,-107.208,0,3,3,2019,12,0,40,40,1,0,0,12.735044,12.735044,0,0,0,0,2,1,1,0,0,0,41.36,39.55,61.05,28.35,6.666666666666667,2,3,0,0,9,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 -4962,6127,11000,-9,11002,10999,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.3043,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 -4962,6127,11001,-9,11002,10999,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.35071,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 -4962,6127,11002,10999,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,0,0,0,19,-5,7.627502,0,2,2,2019,15,4,0,10,3,4,0,0,0,0,0,0,0,27,1,1,0,0,0,61.05,28.35,41.36,39.55,10,2,3,0,0,2,7,3,1,465.25,805810.63,152777.78,886225.88,268702.5,2029.7968 -4962,6128,11003,-9,11002,10999,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1047.1229,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,65.66,30.39,-9,-9,10,2,3,0,0,2,7,1,1,637,-171585.58,0,0,0,0 -4963,6129,11004,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.890933,9.1285477,0,0,0,-916.21722,0,2,1,2019,13,2,40,40,1,2,0,22.275278,22.275278,0,0,0,0,0,1,1,0,4.190711,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,496,506906.31,63947.203,0,0,3031.8088 -4964,6130,11005,11006,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.1689663,4.4568377,7,1,93.42643,0,2,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5551147,57.16,56.15,58.31,42.52,8.333333333333334,1,1,0,0,6,1,3,1,563,1329841.8,911719.69,195590.88,0,3170.8745 -4964,6130,11006,11005,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.1266832,8.1226482,7,-1,7.711174,0,2,2,2019,6,0,0,80,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7598503,8.1149817,58.31,42.52,57.16,56.15,8.333333333333334,1,1,0,0,6,1,3,1,563,1329841.8,911719.69,195590.88,0,3170.8745 -4965,6131,11007,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.6224794,5.4935722,0,0,-956.26013,0,3,2,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,5.2256808,5.7782226,47.4,54.12,-9,-9,3.333333333333333,1,1,0,1,0,5,2,0,161,106457.65,-2107.552,0,0,903.47723 -4966,6132,11008,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1029.8777,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,1,1,0,0,0,11,1,0,97,0,0,0,0,951.38086 -4967,6133,11009,11010,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.0290852,7.9173651,26,12,18.885881,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6416078,54.1,59.11,37.03,26.66,8.333333333333334,1,1,0,0,0,10,5,1,700.5,1848158.1,920798,677424.88,0,5881.293 -4967,6133,11010,11009,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,8.4220753,8.4578838,26,-12,97.361778,0,2,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,6.8299589,8.3564205,37.03,26.66,54.1,59.11,8.333333333333334,1,1,0,0,0,10,5,1,700.5,1848158.1,920798,677424.88,0,5881.293 -4968,6134,11011,-9,11014,11013,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.89569,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 -4968,6134,11012,-9,11014,11013,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.9247,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 -4968,6134,11013,11014,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,8.4343815,8.4733915,0,17,3,-6.9798799,0,3,1,2019,11,0,40,42,1,0,0,12.214581,12.214581,0,0,0,0,0,1,1,0,4.0138369,0,54.37,54.8,57.06,57.76,6.666666666666667,1,1,0,0,8,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 -4968,6134,11014,11013,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.4964724,7.6175771,0,16,-3,3.1165113,0,1,2,2019,6,0,30,24,1,0,0,8.5866156,8.5866156,0,0,0,0,0,1,1,0,1.5027603,0,57.06,57.76,54.37,54.8,10,1,1,0,0,7,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 -4968,6134,11015,-9,11014,11013,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.21155,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,571.40002,342667.59,19190.746,147467.63,86578.336,2916.5061 -4969,6135,11016,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,4.6676769,4.4958692,0,0,-991.05664,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0638289,4.5251598,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,354,419230.19,78826.133,115815.58,0,393.44293 -4970,6136,11017,11018,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.6374607,8.5849295,0,26,-6,.77658814,0,2,2,2019,12,1,44,35,1,1,0,15.656796,15.656796,0,0,0,0,0,1,1,0,.14771546,0,57.16,56.15,57.32,45.08,6.666666666666667,1,1,0,0,12,9,4,1,975,109363.34,94816.836,0,0,2323.6008 -4970,6136,11018,11017,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,6.558846,6.3873396,0,26,6,80.793549,-9,-9,-9,2019,9,0,40,0,1,1,0,2.2898307,2.2898307,0,0,0,0,0,1,1,0,0,0,57.32,45.08,57.16,56.15,6.666666666666667,1,1,0,0,12,9,4,1,975,109363.34,94816.836,0,0,2323.6008 -4970,6136,11019,-9,11017,11018,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1049.8406,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,4,1,975,109363.34,94816.836,0,0,2323.6008 -4971,6137,11020,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,0,0,-848.81061,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.68,46.02,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,985,84960.75,0,0,0,24.344093 -4971,6138,11021,-9,-9,11020,1,1,20,0,0,0,2,2,1,0,3,5.8621712,5.4992614,0,0,0,-993.02277,-9,3,2,2019,16,4,9,0,1,4,1,3.7454343,3.7454343,0,0,0,0,0,1,1,0,0,0,25.61,62.71,-9,-9,5,1,1,0,0,2,13,2,0,1755,154393.23,75686.977,0,0,475.31393 -4972,6139,11022,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.3639374,8.2603073,0,0,0,-971.80908,0,2,1,2019,8,1,46,0,1,1,0,15.191568,15.191568,0,0,0,0,0,0,0,0,.20027563,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,653,151015.14,40703.504,0,0,1635.5908 -4973,6140,11023,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8695402,7.9354491,0,0,-958.15149,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4850817,8.2069311,48.82,53.15,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,636,1093952.9,346687.5,163598.11,0,2435.5967 -4974,6141,11024,11025,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.298409,6.0921092,16,-3,-80.172394,0,3,3,2019,8,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8367219,58.07,46.29,59.7,53.75,8.333333333333334,1,1,0,0,9,10,2,1,299,978963.19,537903.56,175808.63,0,1165.874 -4974,6141,11025,11024,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.7622147,6.7364612,16,3,37.168194,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3841796,6.5434685,59.7,53.75,58.07,46.29,8.333333333333334,1,1,0,0,1,10,2,1,299,978963.19,537903.56,175808.63,0,1165.874 -4975,6142,11026,11027,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,5.8417273,5.5361915,0,34,8,-49.487789,0,2,2,2019,7,0,60,60,1,0,0,.71378773,.71378773,0,0,0,0,0,0,0,0,0,0,66.53,29.99,57.16,56.15,3.333333333333333,1,1,0,0,8,12,3,1,805.5,17326.547,0,0,0,1551.5779 -4975,6142,11027,11026,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.0256491,8.2237606,0,34,-8,-126.10722,0,2,3,2019,8,0,46,47,1,0,0,7.9860659,7.9860659,0,0,0,0,0,0,0,0,2.8272717,0,57.16,56.15,66.53,29.99,8.333333333333334,1,1,0,0,8,12,3,1,805.5,17326.547,0,0,0,1551.5779 -4975,6143,11028,-9,11027,11026,1,0,25,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1012.4415,1,1,2,2019,4,0,0,42,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,0,12,1,1,1083,-23980.582,0,0,0,0 -4975,6144,11029,-9,11027,11026,1,1,22,0,0,0,2,2,-9,0,4,8.2843637,8.2083712,0,0,0,-1024.7418,0,2,2,2019,10,0,38,40,1,1,1,11.644314,11.644314,0,0,0,0,0,0,0,0,4.7900887,0,49,58,-9,-9,7,1,1,0,0,1,12,4,1,624,38542.105,-73518.938,0,0,2174.9609 -4976,6145,11030,11032,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,0,0,0,36,-3,0,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,0,0,49.45,48.84,35.77,20.45,5,2,3,0,1,0,8,1,1,255,13221.648,0,0,0,1804.8824 -4976,6145,11031,-9,11030,11032,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-799.40479,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,48.98,57.22,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,255,13221.648,0,0,0,1804.8824 -4976,6145,11032,11030,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,36,3,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.77,20.45,49.45,48.84,5,2,3,0,1,0,8,1,1,255,13221.648,0,0,0,1804.8824 -4976,6146,11033,-9,11030,11032,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1143.483,0,3,2,2019,10,0,0,45,3,1,1,0,0,0,0,0,0,7,1,0,1,0,0,45.42,49.52,-9,-9,1.666666666666667,2,3,1,1,7,8,2,1,402,-355260.19,0,0,0,827.55829 -4976,6147,11034,-9,11030,11032,1,1,24,0,0,0,2,2,-9,0,4,8.6757879,8.3490057,0,0,0,-955.43079,0,3,2,2019,1,0,37,37,1,0,1,19.257338,19.257338,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,5,8,5,1,366,-252396.33,-75594.883,0,0,1598.1875 -4977,6148,11035,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.4057932,8.0502243,0,0,0,-1026.8666,0,1,1,2019,10,2,70,50,1,2,0,6.7623873,6.7623873,0,0,0,0,0,0,0,0,7.156374,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,12,8,4,0,539,285992.78,123901.91,511510.97,0,1476.8137 -4978,6149,11036,11038,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.6895847,8.7494497,0,14,-2,-8.4400215,0,2,1,2019,17,5,42,36,1,5,0,18.446894,18.446894,0,0,0,0,0,1,1,0,0,0,52.24,44.87,51.83,57.2,8.333333333333334,1,1,0,0,9,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 -4978,6149,11037,-9,11036,11038,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.4581,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 -4978,6149,11038,11036,-9,-9,1,1,39,2,2,0,2,2,-9,0,4,8.3711882,8.2584763,0,14,2,-82.587204,0,2,2,2019,7,0,37,37,1,0,0,15.112461,15.112461,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.24,44.87,8.333333333333334,1,1,0,0,11,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 -4978,6149,11039,-9,11036,11038,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-970.06067,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1293,195938,20587.553,306227,191713.91,3804.0862 -4979,6150,11040,-9,11043,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-919.04059,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 -4979,6150,11041,-9,11043,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-908.58392,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 -4979,6150,11042,-9,11043,-9,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1218.1036,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 -4979,6150,11043,-9,-9,-9,1,0,32,1,3,0,2,2,-9,0,4,6.7983804,7.4022331,6.1304736,0,0,-993.03674,0,3,3,2019,14,2,31,31,1,2,0,3.7098145,3.7098145,0,0,0,0,7,1,1,0,5.9732718,0,27.81,65.69,-9,-9,5,1,1,0,0,5,2,2,0,497,-47455.051,-11599.49,0,0,2394.2776 -4980,6151,11044,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,9.3424368,9.1449509,0,0,-988.83728,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,9.5511827,9.3776865,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,1349,986017.13,478040.66,295501.03,0,7028.8521 -4981,6152,11045,11046,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.6216178,5.7957125,2,-2,186.78537,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.362317,0,0,1,1,0,.24433382,5.7052655,54.62,26.74,61.08,25.28,8.333333333333334,1,1,0,0,0,11,2,0,448.5,311185.03,172312.59,181667.09,0,2961.0276 -4981,6152,11046,11045,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,3.7655699,3.6201305,2,2,-148.51833,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,15.427513,0,0,1,1,0,4.1650248,3.7333913,61.08,25.28,54.62,26.74,8.333333333333334,1,1,0,0,0,11,2,0,448.5,311185.03,172312.59,181667.09,0,2961.0276 -4982,6153,11047,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.9580383,5.9047108,0,0,-857.35699,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0496693,51.89,35.98,-9,-9,5,1,1,0,0,0,11,2,1,259,-5682.0601,103773.84,0,0,859.93317 -4983,6154,11048,11049,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,0,0,0,10,-16,-4.6233501,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9516635,0,54.1,59.11,57.16,56.15,10,1,1,0,0,8,5,4,1,368.5,1392303.3,691620.88,361857.38,0,9177.8047 -4983,6154,11049,11048,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.6339655,8.3741846,10,16,-15.068326,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.7340946,8.6988945,57.16,56.15,54.1,59.11,10,1,1,0,0,0,5,4,1,368.5,1392303.3,691620.88,361857.38,0,9177.8047 -4984,6155,11050,-9,11053,11051,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1023.9636,-9,1,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 -4984,6155,11051,11053,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.4559164,8.7801886,0,25,5,-73.674751,0,1,2,2019,6,0,46,43,1,0,0,14.310357,14.310357,0,0,0,0,0,1,1,0,0,0,49.76,55.68,27.69,62,6.666666666666667,1,1,0,1,7,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 -4984,6155,11052,-9,11053,11051,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1166.3468,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 -4984,6155,11053,11051,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.8786087,8.8274889,0,25,-5,112.74569,0,-9,2,2019,12,2,22,22,1,2,0,40.185108,40.185108,0,0,0,0,0,1,1,0,0,0,27.69,62,49.76,55.68,6.666666666666667,1,1,0,1,2,12,5,1,479.25,1307465.8,957819.25,238739.94,0,4523.5913 -4985,6156,11054,11055,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.7435193,7.9967637,0,10,0,-17.988014,0,2,2,2019,6,0,33,28,1,0,0,8.4836874,8.4836874,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.92,45.17,8.333333333333334,1,1,0,0,12,1,2,1,371.33334,45783.332,0,92256.68,63892.684,127.96221 -4985,6156,11055,11054,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,0,0,0,10,0,24.340773,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.92,45.17,54.79,55.86,8.333333333333334,1,1,0,0,12,1,2,1,371.33334,45783.332,0,92256.68,63892.684,127.96221 -4985,6156,11056,-9,11054,11055,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-964.31665,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,2,1,371.33334,45783.332,0,92256.68,63892.684,127.96221 -4986,6157,11057,-9,11058,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.45538,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1733,220251.06,-17617.785,0,0,445.05594 -4986,6157,11058,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,0,6.1242905,6.1735539,0,0,-902.11383,1,2,2,2019,11,0,0,16,2,0,0,0,0,0,0,0,0,0,1,1,0,5.9438157,0,41.23,51.32,-9,-9,5,1,1,0,0,3,7,2,0,1733,220251.06,-17617.785,0,0,445.05594 -4987,6158,11059,11060,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,5.1832552,5.1489544,46,-4,-31.65661,0,3,3,2019,21,9,0,37,4,9,0,0,0,0,0,0,0,0,1,1,0,0,4.9497643,35.59,24.47,45.13,35.32,5,1,1,0,0,10,12,2,1,1893,593341,0,242835.5,0,1410.752 -4987,6158,11060,11059,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,0,0,8,4,12.941477,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.17401002,0,45.13,35.32,35.59,24.47,6.666666666666667,1,1,0,1,6,12,2,1,1893,593341,0,242835.5,0,1410.752 -4988,6159,11061,11062,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,9.6305208,9.6226549,6.7209229,37,11,9.9384699,0,3,2,2019,9,0,16,20,1,0,0,109.56944,109.56944,0,0,0,0,2,1,1,0,7.3964438,6.1161613,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,8,6,5,1,1336.5,942077.31,637855.75,359882.5,6955.0542,9084.1025 -4988,6159,11062,11061,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,5.9743261,6.350327,0,37,-11,-27.527508,0,2,2,2019,8,0,52,50,1,0,0,.93084937,.93084937,0,0,0,0,2,1,1,0,5.4452453,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,8,6,5,1,1336.5,942077.31,637855.75,359882.5,6955.0542,9084.1025 -4989,6160,11063,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,9.1758671,9.1263885,0,0,0,-980.11707,0,1,1,2019,21,9,40,36,1,9,0,30.506861,30.506861,0,0,0,0,0,0,0,0,5.7497787,0,39.06,49.8,-9,-9,5,1,1,0,0,8,8,5,1,421,319189,175389.39,0,0,2861.8506 -4990,6161,11064,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,7.8929591,8.5755196,7.7318077,0,0,-947.53583,0,3,3,2019,11,1,27,39,1,1,0,9.2215757,9.2215757,0,0,0,0,0,0,0,0,5.3107586,7.9660201,46.8,58.27,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,850,329869.16,321680.78,147070.63,0,1919.4063 -4991,6162,11065,11066,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.6734014,7.5831428,28,3,41.095688,0,2,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,5.48,0,0,0,3.2321877,7.6634212,46.69,58.35,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,448.5,1398935.8,732173.94,1190980.4,365179.66,3708.8452 -4991,6162,11066,11065,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.9830303,9.2757463,0,28,-3,-33.530312,0,3,3,2019,12,1,47,47,1,1,0,25.246838,25.246838,0,0,0,0,0,0,0,0,0,0,51.24,58.84,46.69,58.35,6.666666666666667,1,1,0,0,12,10,5,1,448.5,1398935.8,732173.94,1190980.4,365179.66,3708.8452 -4991,6163,11067,-9,11065,11066,1,0,23,0,0,0,1,1,-9,0,3,8.4657936,8.1386747,0,0,0,-875.31842,0,2,1,2019,17,4,40,41,1,4,1,11.118608,11.118608,0,0,0,0,0,0,0,0,2.7126617,0,38.43,54.11,-9,-9,6.666666666666667,1,1,0,0,7,10,4,1,490,-80112.141,56947.098,108495.34,68688.063,1953.4486 -4991,6164,11068,-9,11065,11066,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1049.3588,-9,2,1,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,.63258892,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,4,10,1,1,304,-399421.66,0,0,0,83.051819 -4992,6165,11069,11070,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6104393,8.8122253,0,4,16,-27.282587,0,-9,-9,2019,28,12,60,56,1,12,0,10.589561,10.589561,0,0,0,0,0,0,0,0,0,0,14.78,60.88,35.78,63.13,3.333333333333333,1,1,0,0,12,2,5,1,610.5,408966.38,201631.84,295505.31,136717.33,4036.1377 -4992,6165,11070,11069,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.8329096,8.4880915,0,4,-16,91.651665,0,2,3,2019,12,0,65,60,1,0,0,8.8785505,8.8785505,0,0,0,0,0,0,0,0,0,0,35.78,63.13,14.78,60.88,8.333333333333334,1,1,0,0,9,2,5,1,610.5,408966.38,201631.84,295505.31,136717.33,4036.1377 -4993,6166,11071,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.824605,8.3910704,0,0,0,-1046.1434,0,-9,-9,2019,7,0,40,50,1,0,0,22.464512,22.464512,0,0,0,0,0,1,1,0,7.0374546,0,54.96,53.17,-9,-9,1.666666666666667,1,1,0,0,7,2,5,1,1402,-205742.27,79342.469,118894.87,53107.219,3051.491 -4994,6167,11072,-9,11073,-9,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.4104,0,2,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,4.359972,0,28.28,54.63,-9,-9,3.333333333333333,1,1,0,1,12,10,3,1,1582,3754.1641,57359.793,85432.766,22188.723,1652.0403 -4994,6167,11073,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6691761,7.5490246,4.437398,0,0,-996.28772,0,2,-9,2019,11,0,37,37,1,0,0,6.1826668,6.1826668,0,0,0,0,0,1,1,0,5.4349642,0,35.98,56.54,-9,-9,6.666666666666667,1,1,0,0,12,10,3,1,1582,3754.1641,57359.793,85432.766,22188.723,1652.0403 -4995,6168,11074,-9,-9,-9,1,0,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-955.37671,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,23.49,53.12,-9,-9,1.666666666666667,1,1,1,0,0,12,1,0,785,18681.215,0,0,0,871.01178 -4996,6169,11075,-9,-9,-9,1,0,70,1,1,0,2,2,-9,0,2,7.2113481,7.6283698,0,0,0,-918.87512,0,3,3,2019,12,0,22,20,1,0,0,7.5381866,7.5381866,0,0,0,0,0,1,1,0,2.9595625,0,51.98,42.74,-9,-9,6.666666666666667,1,1,0,0,10,12,2,1,2299,510123.78,104923.08,282766.28,0,1478.871 -4997,6170,11076,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.1470585,8.0330782,0,0,-1068.7452,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4964042,8.0063276,42.35,36.31,-9,-9,5,1,1,0,0,0,2,4,1,422,907145.06,157465,128039.05,0,1940.205 -4998,6171,11077,-9,-9,-9,1,1,33,0,0,0,3,3,-9,1,4,0,0,0,0,0,-949.7359,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,0,1,2,5,1,0,240,216620.59,13915.114,0,0,1233.7158 -4999,6172,11078,11079,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.0774717,7.8848944,0,1,2,49.68457,0,3,3,2019,5,0,37,37,1,0,0,9.3965721,9.3965721,0,0,0,0,0,0,0,0,0,0,54.69,57.47,37.05,60.3,10,2,3,0,0,9,6,5,1,864,356396.22,64578.914,156101.75,72139.117,4098.8032 -4999,6172,11079,11078,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.7778912,8.8577471,0,1,-2,-44.673698,-9,-9,-9,2019,17,6,45,0,1,6,0,15.770097,15.770097,0,0,0,0,0,0,0,0,7.4221797,0,37.05,60.3,54.69,57.47,6.666666666666667,1,1,0,0,9,6,5,1,864,356396.22,64578.914,156101.75,72139.117,4098.8032 -5000,6173,11080,11081,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.4694576,8.3601446,0,9,-13,-4.6419191,0,2,2,2019,11,0,37,38,1,2,0,19.004293,19.004293,0,0,0,0,0,0,0,0,4.8437409,0,48,56,54.79,55.86,7,1,1,0,0,1,4,5,1,147.5,499756.03,78831.328,388153.06,279046.47,3709.6768 -5000,6173,11081,11080,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.4696188,8.3706179,0,9,13,125.80188,0,2,1,2019,9,0,41,38,1,0,0,11.787173,11.787173,0,0,0,0,0,0,0,0,0,0,54.79,55.86,48,56,8.333333333333334,1,1,0,0,5,4,5,1,147.5,499756.03,78831.328,388153.06,279046.47,3709.6768 -5001,6174,11082,11083,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.3469219,8.4478893,0,31,1,128.64317,0,3,2,2019,14,2,53,53,1,2,0,9.3324947,9.3324947,0,0,0,0,2,1,1,0,0,0,33.2,50.07,30.32,17.53,1.666666666666667,1,1,0,0,7,6,4,0,354,683367.5,405986.53,241152.42,11970.273,2237.843 -5001,6174,11083,11082,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,30,-1,-16.656368,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,30.32,17.53,33.2,50.07,1.666666666666667,1,1,0,0,0,6,4,0,354,683367.5,405986.53,241152.42,11970.273,2237.843 -5002,6175,11084,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,5,7.9507661,8.0470858,0,0,0,-1038.3025,-9,2,2,2019,4,0,37,0,1,0,0,9.4405069,9.4405069,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,2,3,0,0,1,9,4,0,1112,93395.047,30939.291,0,0,1758.5592 -5003,6176,11085,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0946913,8.1823645,0,0,0,-943.78827,0,2,-9,2019,7,0,30,38,1,0,0,10.913807,10.913807,0,0,0,0,0,0,0,0,2.5685809,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,405,-91429.32,142193.27,0,0,1661.1046 -5003,6177,11086,-9,11085,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-903.73218,0,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,1,1,1,0,0,9,1,1,303,0,0,0,0,0 -5004,6178,11087,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.3777995,7.1197977,0,0,-962.45026,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1100845,7.2996006,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,1908,456325.06,366757.94,271631,0,1006.4329 -5005,6179,11088,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5338402,8.5231943,0,0,0,-856.29102,0,-9,-9,2019,10,0,40,-9,1,1,0,13.97506,13.97506,0,0,0,0,0,0,0,0,3.2422996,0,51,56,-9,-9,7,1,1,0,0,1,13,5,0,477,-69871.891,34398.699,0,0,1510.8939 -5005,6180,11089,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0468388,7.6984248,0,0,0,-1081.3763,0,-9,-9,2019,10,1,38,37,1,1,0,7.8571954,7.8571954,0,0,0,0,0,0,0,0,0,0,48,54.77,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,444,577180.75,-47131.656,0,0,1011.389 -5006,6181,11090,11091,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.5869479,5.7484226,44,0,-45.463264,0,2,-9,2019,15,4,0,0,4,4,0,0,0,1,0,1.6436855,0,0,1,1,0,5.1539273,5.5163713,33.98,56,35.01,36.82,8.333333333333334,1,1,0,0,1,2,2,1,429,658119.31,429956,171444.06,0,2062.9282 -5006,6181,11091,11090,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.6440997,6.6623964,44,0,-141.94016,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,5.9537501,6.7711706,35.01,36.82,33.98,56,6.666666666666667,1,1,0,0,8,2,2,1,429,658119.31,429956,171444.06,0,2062.9282 -5007,6182,11092,11093,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.1342258,7.0300527,10,-11,-53.23547,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2599087,7.1593251,46.22,56.92,48.6,31.69,8.333333333333334,1,1,0,0,3,12,3,1,753,1609445.8,358709.91,220106.53,0,3101.9219 -5007,6182,11093,11092,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.5068994,7.6234002,10,11,15.509486,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.7216768,7.5335779,48.6,31.69,46.22,56.92,8.333333333333334,1,1,0,0,0,12,3,1,753,1609445.8,358709.91,220106.53,0,3101.9219 -5008,6183,11094,11097,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.9757943,8.0651274,0,6,1,-31.424101,0,3,3,2019,7,0,35,30,1,0,0,11.039861,11.039861,0,0,0,0,7,1,1,0,0,0,51.24,58.84,57.16,56.15,6.666666666666667,1,1,0,0,7,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 -5008,6183,11095,-9,11094,11097,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.42548,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 -5008,6183,11096,-9,11094,11097,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.072,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 -5008,6183,11097,11094,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7144089,8.5769196,0,6,-1,-87.03009,0,2,2,2019,8,0,44,44,1,0,0,14.367059,14.367059,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,7,12,4,1,511.5,593343.69,568526.5,255161.53,222403.72,3432.1597 -5009,6184,11098,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.9504924,7.9034691,0,0,0,-1004.4146,0,3,3,2019,18,5,52,56,1,5,0,6.3186049,6.3186049,0,0,0,0,0,0,0,0,0,0,42.26,34.55,-9,-9,6.666666666666667,3,4,0,1,10,8,4,1,778,364268.19,603767.44,0,0,1155.175 -5010,6185,11099,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,6.3660636,6.1041369,0,0,-1168.6338,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.0479007,6.0713921,51.53,30.7,-9,-9,8.333333333333334,1,1,0,1,0,10,2,1,1624,26488.943,64508,123062.04,0,937.09589 -5011,6186,11100,11102,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,5.7131438,5.5825977,0,25,-1,-19.942823,0,-9,-9,2019,21,10,45,40,1,10,0,.77197844,.77197844,0,0,0,0,2,1,1,0,9.2116461,0,42.95,61.24,47.31,10.02,3.333333333333333,1,1,0,0,10,13,4,1,1117.3334,1362989.5,781671.31,313724.84,64081.941,7334.7827 -5011,6186,11101,-9,11102,11100,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-994.95599,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,4,1,1117.3334,1362989.5,781671.31,313724.84,64081.941,7334.7827 -5011,6186,11102,11100,-9,-9,1,0,52,0,1,0,1,1,-9,0,1,8.7474346,8.6198559,0,25,1,-50.312252,0,-9,-9,2019,17,6,30,30,1,6,0,25.578341,25.578341,0,0,0,0,2,1,1,0,0,0,47.31,10.02,42.95,61.24,5,1,1,0,0,10,13,4,1,1117.3334,1362989.5,781671.31,313724.84,64081.941,7334.7827 -5012,6187,11103,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.6539669,7.6409373,0,0,0,-956.38684,0,2,2,2019,12,1,25,25,1,1,0,10.836286,10.836286,0,0,0,0,2,0,0,0,0,0,58.55,22.17,-9,-9,5,3,4,0,1,12,8,3,0,626,2747.3657,-25368.764,0,0,1275.113 -5013,6188,11104,11105,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,6.7341185,7.3859253,0,8,1,98.883537,0,3,3,2019,15,3,16,16,1,3,0,9.7499828,9.7499828,0,0,0,0,0,1,1,0,0,0,30.79,35.99,50,57,8.333333333333334,1,1,0,0,9,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 -5013,6188,11105,11104,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.5651741,8.5541525,0,8,-1,15.977468,0,-9,-9,2019,10,0,44,40,1,1,0,15.505836,15.505836,0,0,0,0,0,1,1,0,4.4604506,0,50,57,30.79,35.99,7,1,1,0,0,1,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 -5013,6188,11106,-9,11104,11105,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.8582,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 -5013,6188,11107,-9,11104,11105,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.5997,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1001,-17012.08,47331.488,135913.45,151265.67,3163.7813 -5014,6189,11108,11109,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,51,-6,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,57.06,21.25,52,46,8.333333333333334,1,1,0,0,5,13,1,1,1182,169219.17,34831.496,220608.5,0,1494.1226 -5014,6189,11109,11108,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,51,6,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,6.1386781,46.71183,59.108383,0,1,1,0,0,0,52,46,57.06,21.25,8,1,1,0,0,0,13,1,1,1182,169219.17,34831.496,220608.5,0,1494.1226 -5015,6190,11110,11111,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,7.6167111,7.9548845,0,4,5,103.89352,0,-9,-9,2019,7,1,8,8,1,1,0,36.944004,36.944004,0,0,0,0,0,0,0,0,0,0,53.72,44.11,44.56,59.1,8.333333333333334,1,1,0,0,5,12,3,0,354.5,-132443.91,0,0,0,1646.1594 -5015,6190,11111,11110,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,6.7645402,6.8010626,0,4,-5,32.984192,0,-9,-9,2019,14,1,20,20,1,1,0,4.057548,4.057548,0,0,0,0,0,0,0,0,0,0,44.56,59.1,53.72,44.11,3.333333333333333,1,1,0,0,7,12,3,0,354.5,-132443.91,0,0,0,1646.1594 -5016,6191,11112,11113,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.2445107,8.3237009,0,3,-1,71.492752,0,-9,-9,2019,7,0,39,39,1,0,0,9.6624117,9.6624117,0,0,0,0,5.48,0,0,0,0,0,51.24,58.84,54.37,54.8,1.666666666666667,1,1,0,0,11,2,4,1,474.5,-41796.109,42119.285,86026.234,0,2171.7073 -5016,6191,11113,11112,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.7729692,7.7403812,0,3,1,-48.026127,0,2,2,2019,11,0,38,37,1,0,0,6.4773803,6.4773803,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.24,58.84,5,1,1,0,0,9,2,4,1,474.5,-41796.109,42119.285,86026.234,0,2171.7073 -5017,6192,11114,11115,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,6.1367598,6.0897183,0,42,-5,115.67056,0,2,2,2019,7,0,30,20,1,0,0,1.8130252,1.8130252,0,0,0,0,2,1,1,0,7.6422663,0,55.34,48.72,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,474,-40896.984,262674.28,0,0,9095.2715 -5017,6192,11115,11114,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,8.1528072,8.6469479,7.6399975,42,5,-21.30748,0,-9,2,2019,7,0,45,50,1,0,0,11.577654,11.577654,0,0,0,0,0,1,1,0,8.5289354,8.0283928,57.06,57.76,55.34,48.72,8.333333333333334,1,1,0,0,11,9,4,1,474,-40896.984,262674.28,0,0,9095.2715 -5018,6193,11116,11117,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,33,1,5.1653528,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2266054,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,11,2,3,1,483.5,1379841,841401.88,370779.25,0,1993.3672 -5018,6193,11117,11116,11119,-9,1,1,55,0,0,0,1,1,-9,0,4,7.8652215,7.858994,0,33,-1,-12.459849,0,2,2,2019,16,6,18,36,1,6,0,14.29717,14.29717,0,0,0,0,14.5,1,1,0,8.437849,0,48.87,58.55,54.1,59.11,5,1,1,0,0,12,2,3,1,483.5,1379841,841401.88,370779.25,0,1993.3672 -5018,6194,11118,-9,11116,11117,1,0,22,0,0,0,1,1,1,0,4,7.6747026,7.7715321,0,0,0,-1030.8002,-9,1,1,2019,12,0,30,0,1,0,1,13.953259,13.953259,0,0,0,0,0,1,1,0,0,0,42.3,57.54,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,1186,337234.03,23558.051,0,0,2065.9216 -5018,6195,11119,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-936.96033,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,9.2713127,0,0,1,1,0,6.4009666,0,47.7,24.01,-9,-9,5,1,1,0,0,0,2,1,1,564,229126.33,0,71893.406,0,1617.3834 -5019,6196,11120,-9,11121,-9,1,0,27,0,0,0,1,1,1,0,4,5.2069645,5.2824864,0,0,0,-972.44012,-9,2,2,2019,4,0,47,0,1,0,1,.43898201,.43898201,0,0,0,0,0,0,0,0,.84446746,0,59.29,49.68,-9,-9,8.333333333333334,3,4,0,0,3,8,2,0,559,-238947.92,0,0,0,93.259422 -5019,6197,11121,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2292433,8.1395073,0,0,0,-952.98273,0,-9,-9,2019,6,0,38,38,1,0,0,9.9054737,9.9054737,0,0,0,0,0,0,0,0,0,0,59.31,49.81,-9,-9,8.333333333333334,3,4,0,1,12,8,4,0,542,1074247.1,524061.78,431611.72,46864.059,1213.309 -5020,6198,11122,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,7.6347189,7.5044827,0,0,0,-1006.6422,0,2,-9,2019,23,8,25,25,1,8,0,10.604223,10.604223,0,0,0,0,2,1,1,0,1.0918458,0,30.47,32.31,-9,-9,3.333333333333333,1,1,0,0,10,7,3,0,397,234476.13,73466.633,0,0,1214.892 -5021,6199,11123,-9,11124,11126,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.93689,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 -5021,6199,11124,11126,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,7.9681287,8.0259914,0,9,1,-29.336647,0,2,2,2019,6,0,35,38,1,0,0,10.231475,10.231475,0,0,0,0,0,1,1,0,2.8092954,0,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,10,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 -5021,6199,11125,-9,11124,11126,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.22034,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 -5021,6199,11126,11124,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,6.1524854,5.8234272,0,9,-1,131.71054,0,2,2,2019,9,0,30,40,1,0,0,1.3673958,1.3673958,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,10,2,3,1,797.5,332662.75,27358.838,225847.78,53819.07,1540.2145 -5022,6200,11127,-9,11130,11131,1,0,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1048.1174,-9,3,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 -5022,6200,11128,-9,11130,11131,1,0,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-1000.9282,-9,3,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,2,3,-9,0,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 -5022,6200,11129,-9,11130,11131,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.4328,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 -5022,6200,11130,11131,-9,-9,1,0,39,1,3,0,3,3,-9,0,4,7.3960342,7.1918993,0,4,4,-3.5137329,0,3,3,2019,11,0,24,24,1,1,0,7.6269822,7.6269822,0,0,0,0,0,1,0,1,0,0,49,56,50,57,7,2,3,0,0,5,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 -5022,6200,11131,11130,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,0,0,0,4,-4,-80.148682,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,57,49,56,7,2,3,1,1,0,8,2,0,834.20001,27991.291,-6558.5254,222711.09,40035.215,2837.7129 -5022,6201,11132,-9,11130,11131,1,1,20,1,3,0,2,2,1,0,4,0,0,0,0,0,-955.65723,-9,3,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,1,1,0,8,2,0,152,0,0,0,0,145.27896 -5023,6202,11133,11134,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,9.4893351,9.3866606,0,10,-10,67.697723,0,2,2,2019,12,1,30,30,1,1,0,43.804153,43.804153,0,0,0,0,0,0,0,0,.9711858,0,48.1,40.57,58.26,41.06,5,1,1,0,0,11,8,5,0,226,1925705.5,692535.13,675635.38,192408.53,6050.7676 -5023,6202,11134,11133,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.3443203,8.2344818,0,10,10,-100.13555,0,2,2,2019,8,0,50,50,1,0,0,8.7068901,8.7068901,0,0,0,0,0,0,0,0,0,0,58.26,41.06,48.1,40.57,8.333333333333334,1,1,0,0,11,8,5,0,226,1925705.5,692535.13,675635.38,192408.53,6050.7676 -5024,6203,11135,11137,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.76159,8.6004534,0,9,6,-119.79855,0,-9,-9,2019,7,0,51,52,1,0,0,15.371411,15.371411,0,0,0,0,0,1,1,0,0,0,46.56,57.02,52.32,57.18,8.333333333333334,4,2,0,0,11,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 -5024,6203,11136,-9,11137,11135,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.31519,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 -5024,6203,11137,11135,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.6764374,8.4233303,0,9,-6,-52.58065,0,3,3,2019,13,5,35,21,1,5,0,14.085376,14.085376,0,0,0,0,0,1,1,0,0,0,52.32,57.18,46.56,57.02,6.666666666666667,4,2,0,0,9,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 -5024,6203,11138,-9,11137,11135,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1081.8954,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,5,1,596,434326.75,220628.58,351940.56,138043.05,3965.4561 -5025,6204,11139,11140,-9,-9,1,1,24,0,0,0,1,1,1,0,2,0,0,0,3,2,-78.801582,-9,-9,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,47.18,45.18,25.63,6.666666666666667,1,1,1,0,0,11,2,0,1326.5,286480.47,0,183148.97,0,831.31177 -5025,6204,11140,11139,-9,-9,1,0,22,0,0,0,1,1,-9,0,1,6.368711,6.8171768,4.0208936,3,-2,-62.531891,0,-9,-9,2019,20,7,10,0,1,7,0,7.2434754,7.2434754,0,0,0,0,2,1,1,0,3.2649868,0,45.18,25.63,51.5,47.18,0,1,1,0,1,1,11,2,0,1326.5,286480.47,0,183148.97,0,831.31177 -5026,6205,11141,11142,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,7.7750998,7.8599925,6.664175,16,2,-59.127064,0,2,2,2019,20,8,41,42,1,8,0,6.9407535,6.9407535,0,0,0,0,0,1,0,1,6.9301877,0,31.48,60.11,32.92,47.48,5,1,1,0,0,11,5,3,1,818.66669,71671.813,90035.734,0,0,2516.7522 -5026,6205,11142,11141,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,0,0,0,17,-2,-5.4782624,0,2,1,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,27,1,0,1,1.4595141,0,32.92,47.48,31.48,60.11,5,1,1,0,0,4,5,3,1,818.66669,71671.813,90035.734,0,0,2516.7522 -5026,6205,11143,-9,11142,11141,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.7832,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,818.66669,71671.813,90035.734,0,0,2516.7522 -5026,6206,11144,-9,11142,11141,1,1,19,0,2,0,2,2,-9,0,3,7.5637579,7.4765019,0,0,0,-1073.9834,-9,2,2,2019,18,6,46,0,1,6,1,3.2130053,3.2130053,0,0,0,0,0,1,0,1,0,0,31.25,53.29,-9,-9,3.333333333333333,1,1,0,0,5,5,3,1,650,-418991.38,10927.138,0,0,1342.7078 -5027,6207,11145,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-864.99414,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8126063,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,1,1,156,43632.461,0,248370.31,0,1168.0989 -5028,6208,11146,11147,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.7150049,8.6120253,0,8,-3,-32.475945,0,1,2,2019,8,0,41,42,1,0,0,19.571705,19.571705,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,8,7,5,1,627.5,586986.56,319961.41,111320.42,127802.25,3933.8296 -5028,6208,11147,11146,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.820477,7.9850817,0,8,3,135.75841,0,2,1,2019,12,0,30,30,1,0,0,11.94205,11.94205,0,0,0,0,0,0,0,0,3.4652154,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,8,7,5,1,627.5,586986.56,319961.41,111320.42,127802.25,3933.8296 -5029,6209,11148,11149,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,6.6782422,6.2613754,55,4,10.373468,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,3.1824274,0,0,1,1,0,6.5069509,6.7498703,44,22,56.44,24.23,8.333333333333334,1,1,0,0,0,10,2,1,1076,455189.75,14976.52,160778.41,0,2256.5981 -5029,6209,11149,11148,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,55,-4,90.920853,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,56.44,24.23,44,22,8.333333333333334,1,1,0,0,0,10,2,1,1076,455189.75,14976.52,160778.41,0,2256.5981 -5030,6210,11150,11151,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.8893652,9.1513834,0,8,4,-139.24286,0,-9,-9,2019,10,0,43,42,1,0,0,16.090372,16.090372,0,0,0,0,0,0,0,0,4.7307291,0,54.96,53.17,50.03,52.62,8.333333333333334,1,1,0,0,6,2,5,1,904,555328,59276.469,337670.88,40238.531,4086.7417 -5030,6210,11151,11150,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.3137541,8.1456232,0,30,-4,125.89007,0,2,2,2019,10,0,45,45,1,0,0,10.7644,10.7644,0,0,0,0,0,0,0,0,4.3961492,0,50.03,52.62,54.96,53.17,8.333333333333334,1,1,0,0,9,2,5,1,904,555328,59276.469,337670.88,40238.531,4086.7417 -5030,6211,11152,-9,11151,11150,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1016.9662,-9,2,1,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.6117835,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,1,2,1,1,532,-423126.97,0,0,0,-400.32602 -5031,6212,11153,11154,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.6582565,8.6608028,0,38,-1,-41.055801,-9,2,2,2019,11,0,40,0,1,0,0,11.117338,11.117338,0,0,0,0,0,0,0,0,0,0,52.97,46.93,57.06,57.76,5,1,1,0,0,12,2,5,1,1214,1314711.8,1148969.8,278731,123910.56,4060.0264 -5031,6212,11154,11153,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.481514,8.694664,3.5751212,38,1,-44.042755,0,2,1,2019,6,0,47,50,1,0,0,13.887506,13.887506,0,0,0,0,0,0,0,0,4.0514774,3.8787534,57.06,57.76,52.97,46.93,8.333333333333334,1,1,0,0,12,2,5,1,1214,1314711.8,1148969.8,278731,123910.56,4060.0264 -5032,6213,11155,-9,-9,-9,1,1,27,1,6,0,2,2,-9,0,2,7.1151867,7.3071489,0,0,0,-1064.2251,0,3,3,2019,12,0,20,19,1,0,0,6.4710603,6.4710603,0,0,0,0,0,1,1,0,0,0,37.86,51.77,-9,-9,8.333333333333334,2,3,0,0,11,2,2,1,415,-72558.5,0,0,0,866.65662 -5032,6213,11156,-9,-9,11155,1,1,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-949.44409,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,2,2,1,415,-72558.5,0,0,0,866.65662 -5033,6214,11157,11158,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,4.1533022,4.0344458,8,9,37.584785,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,0,133.73499,0,0,1,1,0,4.3695264,4.1951132,54.04,15.14,54.95,47.49,6.666666666666667,1,1,0,0,2,11,2,0,587.5,65951.734,44214.555,0,0,2146.7808 -5033,6214,11158,11157,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.5756707,6.259831,8,0,98.293678,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6673465,54.95,47.49,54.04,15.14,6.666666666666667,1,1,0,0,4,11,2,0,587.5,65951.734,44214.555,0,0,2146.7808 -5034,6215,11159,-9,11160,11161,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.2132,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 -5034,6215,11160,11161,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.4168205,8.1851254,0,4,-8,-43.310177,0,2,2,2019,15,4,41,41,1,4,0,13.689206,13.689206,0,0,0,0,0,1,1,0,0,0,28.86,43.28,30.83,21.24,5,1,1,0,0,7,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 -5034,6215,11161,11160,-9,-9,1,1,45,1,2,0,2,2,-9,0,1,8.1961136,8.1410275,0,4,8,29.164927,0,-9,-9,2019,22,9,48,48,1,9,0,7.9990826,7.9990826,0,0,0,0,0,1,1,0,0,0,30.83,21.24,28.86,43.28,3.333333333333333,1,1,0,0,9,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 -5034,6215,11162,-9,11160,11161,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.35278,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,884.25,367385.72,184389.88,201145.69,18065.318,3198.1904 -5035,6216,11163,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.7183514,8.3409805,0,0,-1031.2616,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8990645,8.2680292,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,416,1581900.8,920142,412612.72,0,3409.8911 -5036,6217,11164,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1657486,8.0123215,0,0,0,-1072.7076,0,2,2,2019,11,0,50,82,1,0,0,7.8022313,7.8022313,0,0,0,0,0,0,0,0,0,0,54.79,47.98,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,1247,131870.22,4105.5786,0,0,1581.0753 -5037,6218,11165,-9,11167,11166,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.75848,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,5,4,1,502.33334,-20392.916,168591.78,141022.56,126500.23,3937.4004 -5037,6218,11166,11167,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.5381126,8.6648426,0,7,12,96.136826,0,-9,-9,2019,7,0,30,30,1,0,0,16.395729,16.395729,0,0,0,0,0,1,1,0,0,0,55.61,50.3,45.53,35.77,8.333333333333334,2,3,0,0,9,5,4,1,502.33334,-20392.916,168591.78,141022.56,126500.23,3937.4004 -5037,6218,11167,11166,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,8.1242056,7.9890695,0,7,-12,-18.413336,0,3,2,2019,15,3,40,41,1,3,0,12.943801,12.943801,0,0,0,0,0,1,1,0,0,0,45.53,35.77,55.61,50.3,6.666666666666667,1,1,0,0,8,5,4,1,502.33334,-20392.916,168591.78,141022.56,126500.23,3937.4004 -5038,6219,11168,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-980.00024,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.68,43.04,-9,-9,5,1,1,0,0,1,1,1,0,589,471498.28,0,0,0,1549.4523 -5039,6220,11169,11170,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,43,-1,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8272372,0,46.98,59.35,53.33,53.71,8.333333333333334,1,1,0,0,0,7,1,1,437,-58677.188,31968.359,200750.22,0,786.00812 -5039,6220,11170,11169,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,43,1,0,0,3,3,2019,12,0,0,42,3,0,0,0,0,0,0,0,0,2,1,1,0,5.5756421,0,53.33,53.71,46.98,59.35,8.333333333333334,1,1,1,0,8,7,1,1,437,-58677.188,31968.359,200750.22,0,786.00812 -5040,6221,11171,11172,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.8504114,8.9528008,0,36,4,51.266129,0,2,2,2019,13,3,40,40,1,3,0,19.396402,19.396402,0,0,0,0,0,0,0,0,4.7396317,0,43.8,56.66,57.33,53.46,8.333333333333334,1,1,0,0,13,4,4,1,904,126824.73,98401.555,160016.48,60150.211,2604.7163 -5040,6221,11172,11171,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,36,-4,28.305052,0,3,2,2019,7,0,0,70,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3651853,0,57.33,53.46,43.8,56.66,10,1,1,0,0,9,4,4,1,904,126824.73,98401.555,160016.48,60150.211,2604.7163 -5041,6222,11173,11174,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,5.118711,5.2945242,0,6,-6,-86.578255,0,2,3,2019,6,2,3,0,1,2,0,8.5737257,8.5737257,0,0,0,0,0,1,1,0,0,0,48.45,57.49,52.94,49.78,6.666666666666667,1,1,0,0,9,9,3,0,641,394020.03,0,255290.78,118456.61,1394.0905 -5041,6222,11174,11173,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,7.7513337,8.030673,0,6,6,42.411034,0,3,2,2019,12,1,21,20,1,1,0,11.924022,11.924022,0,0,0,0,0,1,1,0,0,0,52.94,49.78,48.45,57.49,8.333333333333334,1,1,0,0,9,9,3,0,641,394020.03,0,255290.78,118456.61,1394.0905 -5041,6222,11175,-9,11173,11174,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.38721,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,641,394020.03,0,255290.78,118456.61,1394.0905 -5042,6223,11176,11177,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.0546398,8.9643488,0,11,-1,-44.041039,0,2,1,2019,10,0,55,55,1,1,0,18.690395,18.690395,0,0,0,0,0,1,1,0,0,0,51,56,38.7,59.52,7,2,3,0,0,1,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 -5042,6223,11177,11176,-9,-9,1,0,39,0,2,0,1,1,-9,1,3,0,0,0,11,1,-55.936462,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.7,59.52,51,56,8.333333333333334,2,3,0,0,3,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 -5042,6223,11178,-9,11177,11176,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6721,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 -5042,6223,11179,-9,11177,11176,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.57013,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,794.75,248680.36,79635.727,304247.72,212694.11,3910.9966 -5043,6224,11180,11181,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,8.1802616,8.1326809,44,0,-63.164925,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,17.672295,0,0,1,1,0,3.4463031,8.6394787,63.71,15.94,50.25,36.24,8.333333333333334,1,1,0,0,2,2,3,1,2134,1226237.3,205918.78,514559.41,0,3133.3823 -5043,6224,11181,11180,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.0627789,5.2739296,44,0,-88.807121,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,5.9228406,0,21.944372,42,1,1,0,2.9204171,4.8419275,50.25,36.24,63.71,15.94,3.333333333333333,1,1,0,0,5,2,3,1,2134,1226237.3,205918.78,514559.41,0,3133.3823 -5044,6225,11182,11183,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.4165239,8.2011671,0,2,1,43.055771,0,-9,-9,2019,9,0,35,35,1,0,0,12.637722,12.637722,0,0,0,0,2,0,0,0,0,0,54.79,55.86,49.63,54.22,6.666666666666667,1,1,0,0,7,12,5,0,319.66666,1043073.7,839592.94,157202.58,112436.14,4461.7017 -5044,6225,11183,11182,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.1242371,9.316658,0,2,-1,176.62039,0,2,2,2019,11,1,39,50,1,1,0,23.243504,23.243504,0,0,0,0,0,0,0,0,0,0,49.63,54.22,54.79,55.86,6.666666666666667,1,1,0,0,9,12,5,0,319.66666,1043073.7,839592.94,157202.58,112436.14,4461.7017 -5044,6225,11184,-9,11182,11183,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.37842,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,0,319.66666,1043073.7,839592.94,157202.58,112436.14,4461.7017 -5045,6226,11185,-9,11187,11186,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2539,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,363,21440.807,-40841.242,64793.156,36278.57,2464.7627 -5045,6226,11186,11187,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.1345749,8.1554146,0,5,1,32.428188,-9,-9,-9,2019,11,1,40,0,1,1,0,9.0005198,9.0005198,0,0,0,0,0,1,1,0,0,0,49.46,56.91,44.75,42.25,1.666666666666667,1,1,0,0,7,4,3,0,363,21440.807,-40841.242,64793.156,36278.57,2464.7627 -5045,6226,11187,11186,-9,-9,1,0,31,0,1,0,2,2,-9,0,2,6.9602551,6.8863339,0,5,-1,77.807831,0,-9,-9,2019,12,0,22,9,1,0,0,7.0910335,7.0910335,0,0,0,0,0,1,1,0,0,0,44.75,42.25,49.46,56.91,5,1,1,0,0,7,4,3,0,363,21440.807,-40841.242,64793.156,36278.57,2464.7627 -5046,6227,11188,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.2995205,8.5273914,0,0,0,-1047.8336,-9,-9,-9,2019,10,1,50,0,1,1,0,12.003463,12.003463,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,2,4,4,0,234,13957.69,-61038.078,0,0,2254.8306 -5047,6228,11189,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,7.7400465,7.109539,0,0,-1056.6422,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.339538,0,2,1,1,0,.74314123,7.7210588,49,34,-9,-9,10,1,1,0,0,0,10,3,1,783,539190.13,6417.0225,342784.56,0,1828.0935 -5047,6229,11190,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,5,0,6.4437637,6.5245171,0,0,-948.96515,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.9063742,6.1790805,44.7,41.6,-9,-9,10,1,1,0,0,0,10,2,1,2693,781863.75,54346.117,270482.56,0,1112.7592 -5048,6230,11191,11192,-9,-9,1,0,45,0,0,0,3,3,-9,1,1,0,0,0,6,2,0,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.48,17.04,56.35,21.69,0,1,1,0,1,0,4,1,0,378.5,92254.758,27589.064,0,0,2013.0907 -5048,6230,11192,11191,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,6,-2,0,0,3,3,2019,20,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,56.35,21.69,37.48,17.04,8.333333333333334,1,1,1,1,0,4,1,0,378.5,92254.758,27589.064,0,0,2013.0907 -5049,6231,11193,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.4489613,7.5811987,0,0,0,-913.20905,-9,-9,-9,2019,6,0,30,0,1,0,0,7.9825554,7.9825554,0,0,0,0,5.48,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,2,3,0,755,281312.5,-86492.5,189642.28,0,1806.2343 -5050,6232,11194,11195,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.5017967,8.2455835,11,-7,-100.12614,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3438349,54.74,57.22,50.64,31.21,8.333333333333334,1,1,0,0,9,10,5,1,340.5,347588.19,89943.164,0,0,4776.7744 -5050,6232,11195,11194,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,8.1877832,8.0845737,31,7,60.956341,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.4769497,50.64,31.21,54.74,57.22,8.333333333333334,1,1,0,0,7,10,5,1,340.5,347588.19,89943.164,0,0,4776.7744 -5051,6233,11196,11197,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.239162,5.6802855,7,-4,67.595062,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3880258,6.172328,57.51,47.91,57.93,46.29,8.333333333333334,1,1,0,0,3,2,2,1,1169,1518.3828,37066.113,0,0,2662.8127 -5051,6233,11197,11196,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.4693842,6.4644346,7,4,-28.495935,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0703402,6.5557122,57.93,46.29,57.51,47.91,8.333333333333334,1,1,0,0,1,2,2,1,1169,1518.3828,37066.113,0,0,2662.8127 -5052,6234,11198,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.2037735,9.4732571,0,0,0,-917.50757,0,3,3,2019,15,4,37,37,1,4,0,30.867363,30.867363,0,0,0,0,2,0,0,0,7.5729728,0,42.62,54.51,-9,-9,3.333333333333333,1,1,0,0,12,2,5,0,747,1564640.9,609544.44,256785.56,0,3101.0813 -5053,6235,11199,11201,-9,-9,1,1,28,0,1,0,3,3,-9,0,2,7.2912531,7.2525549,0,3,4,25.772371,0,-9,-9,2019,9,0,26,16,1,0,0,6.5487795,6.5487795,0,0,0,0,0,1,1,0,0,0,56.34,46.17,61.12,51.57,8.333333333333334,1,1,0,0,8,13,2,0,457,76915.563,2891.4609,0,0,1496.6982 -5053,6235,11200,-9,11201,11199,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5844,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,457,76915.563,2891.4609,0,0,1496.6982 -5053,6235,11201,11199,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.1431832,6.0818133,0,3,-4,-55.69875,0,2,-9,2019,6,0,8,8,1,0,0,7.6090846,7.6090846,0,0,0,0,0,1,1,0,0,0,61.12,51.57,56.34,46.17,10,1,1,0,0,4,13,2,0,457,76915.563,2891.4609,0,0,1496.6982 -5054,6236,11202,-9,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-976.16046,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,14.82,35.6,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,836,-17237.594,0,0,0,1415.7687 -5055,6237,11203,11204,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,8.0592165,8.1129198,61,1,147.37086,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.8260064,8.234911,54.51,34.54,52,45,8.333333333333334,1,1,0,0,0,2,3,1,530,1176053,864415.88,182342.63,0,3756.332 -5055,6237,11204,11203,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-49.151245,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,1.2606725,0,1,1,0,8.2629652,0,52,45,54.51,34.54,8,1,1,0,0,0,2,3,1,530,1176053,864415.88,182342.63,0,3756.332 -5056,6238,11205,11207,-9,-9,1,0,41,0,3,0,1,1,-9,1,4,0,0,0,21,0,-41.048077,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.83,57.2,48.37,61.89,8.333333333333334,1,1,0,0,0,12,3,1,670.33331,146361.78,60850.555,0,0,3278.6985 -5056,6238,11206,-9,11205,11207,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.91479,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,670.33331,146361.78,60850.555,0,0,3278.6985 -5056,6238,11207,11205,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.2025957,7.9333606,0,21,0,16.433783,0,3,-9,2019,12,0,50,65,1,0,0,6.6954207,6.6954207,0,0,0,0,0,1,1,0,0,0,48.37,61.89,51.83,57.2,10,1,1,0,0,11,12,3,1,670.33331,146361.78,60850.555,0,0,3278.6985 -5057,6239,11208,11209,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7780619,6.5181832,42,10,45.255108,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9633846,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,5,10,2,1,680.5,548028,78818.297,131757.34,0,1231.8396 -5057,6239,11209,11208,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-10,28.80722,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.2962475,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,6,10,2,1,680.5,548028,78818.297,131757.34,0,1231.8396 -5058,6240,11210,11211,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.0176668,5.9873261,8,-2,-13.268585,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6422386,6.1103086,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,2,11,2,0,232,417015.63,0,193863.38,0,1193.5537 -5058,6240,11211,11210,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,5.5867186,5.5451503,8,2,162.86168,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2591295,5.3931942,60.12,54.8,60.12,54.8,10,1,1,0,0,0,11,2,0,232,417015.63,0,193863.38,0,1193.5537 -5059,6241,11212,11213,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,8.697257,8.6113501,34,-1,5.2004991,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.033988,8.8947496,60.02,56.42,55.19,54.26,10,1,1,0,0,3,4,4,1,792,2236664.5,2051662,203072.78,0,3363.1091 -5059,6241,11213,11212,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.6548166,5.6632757,34,1,-21.730505,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,3.1006451,5.7532144,55.19,54.26,60.02,56.42,10,1,1,0,0,7,4,4,1,792,2236664.5,2051662,203072.78,0,3363.1091 -5060,6242,11214,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1128.459,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.71,39.08,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1279,-200099.73,0,0,0,1621.1072 -5061,6243,11215,11216,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,4.9190106,5.125844,9,-1,-64.615677,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7982888,4.8196373,52.64,49.14,63.27,42.4,3.333333333333333,1,1,0,0,0,5,2,1,631,28576.891,81738.266,0,0,1529.6609 -5061,6243,11216,11215,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,4.8357735,5.2376051,55,1,-5.1751032,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.4629946,4.8791208,63.27,42.4,52.64,49.14,10,1,1,0,0,0,5,2,1,631,28576.891,81738.266,0,0,1529.6609 -5062,6244,11217,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,7.2838016,7.4981704,0,0,-917.29742,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.2806825,7.304666,56.43,47.07,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,1077,488611.78,286736.88,269789.47,0,1691.5416 -5063,6245,11218,11220,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.3068171,8.3586712,0,17,-8,35.418293,0,2,3,2019,25,11,37,40,1,11,0,14.80004,14.80004,0,0,0,0,0,1,1,0,0,0,38.27,49.96,57.16,56.15,6.666666666666667,1,1,0,0,8,4,4,1,319.66666,273289.38,461483.16,175095.28,10180.203,2678.6985 -5063,6245,11219,-9,11218,11220,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1103.9481,-9,1,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,4,1,319.66666,273289.38,461483.16,175095.28,10180.203,2678.6985 -5063,6245,11220,11218,-9,-9,1,1,55,0,1,0,3,3,-9,0,4,7.1116743,7.6557927,6.4616866,17,8,81.339485,0,3,3,2019,8,0,10,30,1,0,0,17.141926,17.141926,0,0,0,0,0,1,1,0,2.9715233,6.2326164,57.16,56.15,38.27,49.96,8.333333333333334,1,1,0,0,11,4,4,1,319.66666,273289.38,461483.16,175095.28,10180.203,2678.6985 -5064,6246,11221,11223,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.4248104,9.463871,0,6,2,2.4871466,0,2,2,2019,12,1,60,60,1,1,0,24.841936,24.841936,0,0,0,0,0,0,0,0,3.5866969,0,51.14,60.45,54.1,59.11,8.333333333333334,1,1,0,0,7,2,5,1,543.66669,1420303.6,1078129.1,419278.19,146380.47,4591.0371 -5064,6246,11222,-9,11223,11221,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.70166,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,543.66669,1420303.6,1078129.1,419278.19,146380.47,4591.0371 -5064,6246,11223,11221,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.5732136,7.6379743,0,6,-2,-74.250198,0,2,2,2019,2,0,23,52,1,0,0,11.060339,11.060339,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,7,2,5,1,543.66669,1420303.6,1078129.1,419278.19,146380.47,4591.0371 -5065,6247,11224,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.7085476,7.6651263,0,0,0,-1037.1549,0,2,2,2019,8,0,32,28,1,0,0,9.0428562,9.0428562,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,372,47734.906,60593.871,0,0,746.00616 -5065,6248,11225,-9,11224,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-971.51501,-9,2,-9,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,45.75,62.87,-9,-9,8.333333333333334,1,1,0,0,3,11,1,1,35,22539.514,0,0,0,-148.75934 -5066,6249,11226,-9,11228,11227,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.646,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,767.33331,1065907.3,230426.03,598654.63,0,1725.6394 -5066,6249,11227,11228,-9,-9,1,1,66,0,1,0,2,2,-9,0,3,5.9300494,6.1004601,5.2593236,17,16,-39.881748,0,2,2,2019,9,0,20,18,1,0,0,1.6860925,1.6860925,0,0,0,0,0,1,1,0,5.7556839,5.1421833,60.86,50.49,54.38,51.94,8.333333333333334,1,1,0,0,8,7,2,1,767.33331,1065907.3,230426.03,598654.63,0,1725.6394 -5066,6249,11228,11227,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.1578112,7.4964342,0,17,-16,.24697012,0,1,1,2019,8,0,5,21,1,0,0,37.147007,37.147007,0,0,0,0,0,1,1,0,0,0,54.38,51.94,60.86,50.49,8.333333333333334,1,1,0,0,6,7,2,1,767.33331,1065907.3,230426.03,598654.63,0,1725.6394 -5067,6250,11229,11230,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.2262535,8.2043629,0,29,0,-74.11705,0,2,2,2019,11,0,32,32,1,0,0,9.0024767,9.0024767,0,0,0,0,0,1,1,0,1.7169102,0,55.31,50.07,53,55,8.333333333333334,1,1,0,0,9,5,4,1,424.66666,553382.31,606281.06,0,0,4192.5518 -5067,6250,11230,11229,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5797939,8.7430658,0,7,0,29.659737,0,-9,-9,2019,9,0,48,40,1,1,0,14.3654,14.3654,0,0,0,0,0,1,1,0,6.4179654,0,53,55,55.31,50.07,8,1,1,0,0,1,5,4,1,424.66666,553382.31,606281.06,0,0,4192.5518 -5067,6250,11231,-9,11229,11230,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.0693,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,424.66666,553382.31,606281.06,0,0,4192.5518 -5067,6251,11232,-9,11229,11230,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-985.33783,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.21,45.02,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,376,24399.441,0,0,0,0 -5068,6252,11233,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,6.7921848,6.7799854,0,0,0,-1089.9352,0,2,2,2019,9,0,16,16,1,0,0,6.5771494,6.5771494,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,13,2,0,508,-36400.703,0,0,0,1609.1825 -5068,6252,11234,-9,11233,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.19971,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,508,-36400.703,0,0,0,1609.1825 -5068,6252,11235,-9,11233,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.2502,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,508,-36400.703,0,0,0,1609.1825 -5069,6253,11236,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3057814,8.4245892,0,0,0,-1051.3126,0,2,2,2019,24,11,30,30,1,11,0,15.917561,15.917561,0,0,0,0,0,1,1,0,0,0,31.41,53.27,-9,-9,6.666666666666667,1,1,0,0,9,10,4,0,115,372683.72,35493.871,225378.91,-1637.0438,1306.5605 -5070,6254,11237,11238,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.3673525,8.3882313,10,5,37.735832,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4148872,8.379653,57.73,54.53,56.74,33.83,10,1,1,0,0,10,2,4,1,541.5,1498450.8,1160448.8,177101.19,0,3031.3193 -5070,6254,11238,11237,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,7.567296,7.1457367,10,-5,60.150913,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4835601,7.3820515,56.74,33.83,57.73,54.53,10,1,1,0,0,11,2,4,1,541.5,1498450.8,1160448.8,177101.19,0,3031.3193 -5071,6255,11239,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,4,7.9695311,7.9921489,2.0573087,0,0,-898.81787,0,2,2,2019,34,12,50,-9,1,12,0,7.7030101,7.7030101,0,0,0,0,0,1,1,0,1.7290528,0,40.84,44.66,-9,-9,5,2,3,0,1,11,6,4,1,456,-665351.88,-87818.273,0,0,1235.1337 -5072,6256,11240,11241,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.4677086,8.9738579,0,1,8,-94.736885,-9,2,2,2019,9,1,48,0,1,1,0,13.801806,13.801806,0,0,0,0,0,1,1,0,5.1770492,0,49.04,55.86,50,57,6.666666666666667,1,1,0,0,9,5,4,1,572,387496.41,21420.586,190896.91,127880.88,2888.3938 -5072,6256,11241,11240,-9,-9,1,1,36,0,1,0,3,3,-9,0,4,7.4877748,7.5131693,0,1,-8,-59.808838,-9,-9,-9,2019,10,0,40,0,1,1,0,5.088254,5.088254,0,0,0,0,0,1,1,0,0,0,50,57,49.04,55.86,7,4,1,0,0,1,5,4,1,572,387496.41,21420.586,190896.91,127880.88,2888.3938 -5072,6256,11242,-9,11240,11241,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-921.28387,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,4,1,572,387496.41,21420.586,190896.91,127880.88,2888.3938 -5073,6257,11243,-9,11245,11244,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1022.29,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,7,5,1,910.66669,1277323.9,796737.5,377598.53,31414.553,4723.6011 -5073,6257,11244,11245,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6699972,9.0166836,0,6,4,-206.42958,0,-9,-9,2019,9,0,40,40,1,1,0,20.469547,20.469547,0,0,0,0,0,0,0,0,7.0855255,0,54,54,57.16,56.15,8,1,1,0,0,1,7,5,1,910.66669,1277323.9,796737.5,377598.53,31414.553,4723.6011 -5073,6257,11245,11244,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,8.1315594,8.0601387,0,31,-4,-2.2693896,0,3,2,2019,7,0,120,120,1,0,0,3.8657503,3.8657503,0,0,0,0,0,0,0,0,3.9310677,0,57.16,56.15,54,54,6.666666666666667,1,1,0,0,9,7,5,1,910.66669,1277323.9,796737.5,377598.53,31414.553,4723.6011 -5073,6258,11246,-9,11245,11244,1,0,25,0,1,0,2,2,-9,0,5,7.543653,7.84131,0,0,0,-952.36566,0,3,2,2019,9,0,32,40,1,0,1,7.4973936,7.4973936,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,1104,30515.533,0,0,0,1414.395 -5074,6259,11247,11248,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.6522923,8.4881544,0,1,5,-37.784267,0,2,2,2019,14,3,50,50,1,3,0,12.412466,12.412466,0,0,0,0,0,0,0,0,7.7295585,0,39.16,62.84,55.79,52.62,6.666666666666667,1,1,0,0,7,8,5,0,1608.5,92550.844,58435.973,0,0,22830.145 -5074,6259,11248,11247,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.7828045,9.9891863,0,1,-5,19.793753,-9,-9,-9,2019,7,1,25,0,1,1,0,82.736855,82.736855,0,0,0,0,0,0,0,0,7.2579775,0,55.79,52.62,39.16,62.84,8.333333333333334,1,1,0,0,9,8,5,0,1608.5,92550.844,58435.973,0,0,22830.145 -5075,6260,11249,11250,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9062848,7.571641,0,33,-2,18.372629,0,2,2,2019,9,0,18,20,1,0,0,16.841953,16.841953,0,0,0,0,0,0,0,0,7.1154814,0,55.73,53.98,53,54,8.333333333333334,1,1,0,0,4,9,5,1,1601,555722,280780.59,343025.47,-1224.2932,6280.0449 -5075,6260,11250,11249,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2109575,9.5533285,6.9243498,7,2,-117.72128,0,-9,-9,2019,9,0,48,60,1,1,0,21.801958,21.801958,0,0,0,0,0,0,0,0,4.1506343,7.2726011,53,54,55.73,53.98,8,1,1,0,0,1,9,5,1,1601,555722,280780.59,343025.47,-1224.2932,6280.0449 -5075,6261,11251,-9,11249,11250,1,1,22,0,0,0,2,2,-9,0,3,7.7702942,7.8511314,0,0,0,-900.53253,0,2,2,2019,3,0,43,0,1,0,1,8.6835518,8.6835518,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,180,23997.416,0,0,0,934.98883 -5075,6262,11252,-9,11249,11250,1,1,22,0,0,0,2,2,-9,0,4,7.4268346,7.6863885,0,0,0,-1161.3695,0,2,2,2019,10,0,40,0,1,1,1,4.8354001,4.8354001,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,3,1,380,-381021.81,0,0,0,511.90195 -5076,6263,11253,11254,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,24,0,55.957954,0,2,2,2019,4,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,3.8937855,0,65.77,35,51.24,58.84,10,1,1,0,0,9,7,4,1,639.5,301950.91,390142.78,0,0,1976.2793 -5076,6263,11254,11253,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.5192127,8.7017355,0,24,9,-29.424593,0,-9,-9,2019,12,0,40,40,1,0,0,19.658066,19.658066,0,0,0,0,0,0,0,0,0,0,51.24,58.84,65.77,35,8.333333333333334,1,1,0,0,11,7,4,1,639.5,301950.91,390142.78,0,0,1976.2793 -5076,6264,11255,-9,11253,11254,1,1,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-1032.7112,-9,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.67,49.54,-9,-9,10,1,1,1,0,0,7,1,1,679,-222649.08,0,0,0,0 -5076,6265,11256,-9,11253,11254,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-902.54681,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,7,1,1,458,-81316.219,0,0,0,0 -5077,6266,11257,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-862.52014,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,2.4744101,0,22.360069,0,1,1,0,0,0,45.76,28.13,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,367,184521.13,0,220213.48,0,1845.3184 -5078,6267,11258,11259,-9,-9,1,0,41,0,3,0,2,2,-9,1,5,0,0,0,17,-3,-112.68082,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38.11,32.46,8.333333333333334,1,1,0,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 -5078,6267,11259,11258,-9,-9,1,1,44,0,3,0,2,2,-9,1,3,7.3578959,7.880177,7.210999,17,3,-7.1934428,0,3,3,2019,18,5,16,40,1,5,0,10.320414,10.320414,0,0,0,0,0,1,1,0,6.5837693,7.4206624,38.11,32.46,57.06,57.76,5,1,1,0,1,8,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 -5078,6267,11260,-9,11258,11259,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.06622,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 -5078,6267,11261,-9,11258,11259,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-938.8183,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 -5078,6267,11262,-9,11258,11259,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-921.85992,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,13,2,1,834.79999,119720.5,-14261.181,118931.82,11666.966,3214.6768 -5079,6268,11263,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.6634235,7.940433,0,0,-924.32648,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.1219063,43.6,51.61,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,817,1376131.9,64518.988,652487.06,0,2698.1006 -5080,6269,11264,11267,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.3772612,8.3296518,0,8,2,-21.321604,0,-9,3,2019,10,0,39,37,1,0,0,10.644453,10.644453,0,0,0,0,14.5,1,1,0,6.7266064,0,56.77,52.22,58.15,52.91,6.666666666666667,1,1,0,0,9,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 -5080,6269,11265,-9,11267,11264,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1052.2539,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 -5080,6269,11266,-9,11267,11264,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.79608,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 -5080,6269,11267,11264,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.2338047,8.3015766,0,8,-2,-88.308304,0,-9,-9,2019,9,0,49,47,1,0,0,7.8074861,7.8074861,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.77,52.22,8.333333333333334,1,1,0,0,8,11,4,1,407.25,529918,437078.69,119490.38,0,3977.8269 -5081,6270,11268,11269,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,7.5557084,7.4305558,9,-10,-115.5065,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9912515,7.7151632,57.63,56.14,44.7,48.48,10,1,1,0,0,0,9,4,1,316,2445106.5,1075863.9,364422.69,0,3222.3706 -5081,6270,11269,11268,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.2714882,8.3963928,30,10,36.37886,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,1.0226517,0,0,1,1,0,7.7344093,8.3499775,44.7,48.48,57.63,56.14,5,1,1,0,0,2,9,4,1,316,2445106.5,1075863.9,364422.69,0,3222.3706 -5082,6271,11270,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.4018693,7.7441859,0,0,0,-993.67792,0,3,3,2019,18,7,35,39,1,7,0,5.3166895,5.3166895,0,0,0,0,0,0,0,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,0,11,10,3,1,1246,-6142.9478,-61413.082,0,0,1526.2458 -5083,6272,11271,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.5093741,7.6336317,0,0,-934.79419,0,2,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,42,0,0,0,0,7.4031482,23.58,51.65,-9,-9,3.333333333333333,1,1,0,0,10,2,3,0,831,49878.273,16850.916,0,0,400.36499 -5084,6273,11272,11273,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.8183861,6.7833133,7,-6,-29.606838,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.92693,63.02,35.77,56.77,52.22,8.333333333333334,1,1,0,0,0,9,2,1,494.5,1386158.5,0,1035536.9,0,1520.498 -5084,6273,11273,11272,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,7,6,-46.404736,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,63.02,35.77,10,1,1,0,0,0,9,2,1,494.5,1386158.5,0,1035536.9,0,1520.498 -5085,6274,11274,11277,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.7314968,8.9701157,0,7,1,-30.730061,0,2,2,2019,7,0,50,57,1,0,0,16.677654,16.677654,0,0,0,0,0,0,0,0,.38323018,0,57.9,51.84,50.27,48.86,5,1,1,0,0,8,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 -5085,6274,11275,-9,11274,11277,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.749,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 -5085,6274,11276,-9,11274,11277,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-963.13477,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,6.666666666666667,1,1,0,1,2,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 -5085,6274,11277,11274,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,9.1632576,9.757762,0,7,-1,-3.5115368,0,3,1,2019,11,0,48,42,1,0,0,22.298382,22.298382,0,0,0,0,0,0,0,0,2.0142453,0,50.27,48.86,57.9,51.84,6.666666666666667,1,1,0,0,8,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 -5085,6274,11278,-9,11274,11277,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7215,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,927.59998,303520.22,53727.785,341086.34,123929.93,5752.4424 -5085,6275,11279,-9,11274,11277,1,0,20,0,2,0,2,2,0,0,4,0,0,0,0,0,-927.6192,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,6,1,1,1015,314078.97,0,0,0,0 -5085,6276,11280,-9,11274,11277,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-985.37061,-9,1,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,4,6,1,1,335,-116797.38,0,0,0,0 -5086,6277,11281,11282,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,6.9562273,6.8673687,0,34,-10,18.038065,0,2,3,2019,13,1,60,50,1,1,0,2.0313928,2.0313928,0,0,0,0,0,1,1,0,5.5245519,0,47.55,44.33,41.72,51.08,6.666666666666667,1,1,0,0,12,10,3,1,701.5,833846.81,179241.06,271415.56,0,2130.6838 -5086,6277,11282,11281,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.3887391,7.2425284,0,34,10,167.60878,0,3,2,2019,21,8,21,23,1,8,0,6.7306271,6.7306271,0,0,0,0,0,1,1,0,6.8358798,0,41.72,51.08,47.55,44.33,6.666666666666667,1,1,0,0,12,10,3,1,701.5,833846.81,179241.06,271415.56,0,2130.6838 -5086,6278,11283,-9,11282,11281,1,1,29,0,0,0,2,2,-9,0,4,8.6771383,8.3164015,0,0,0,-1150.2043,0,2,3,2019,13,2,43,41,1,2,1,11.385991,11.385991,0,0,0,0,0,1,1,0,0,0,35.09,62.46,-9,-9,8.333333333333334,1,1,0,0,6,10,5,1,424,-39864.285,186627.31,0,0,2092.6189 -5087,6279,11284,11285,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,33,-1,20.146175,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,62.39,56.71,7,1,1,1,0,0,2,5,1,660.5,791056.75,579403.25,468166.63,0,6370.3555 -5087,6279,11285,11284,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.9451771,9.6642733,7.0708094,33,1,-33.553188,0,2,3,2019,1,0,67,55,1,0,0,30.099178,30.099178,0,0,0,0,0,0,0,0,0,7.561933,62.39,56.71,48,49,10,1,1,0,0,8,2,5,1,660.5,791056.75,579403.25,468166.63,0,6370.3555 -5087,6280,11286,-9,11284,11285,1,0,21,0,0,0,2,2,-9,0,5,7.6380768,7.5832596,0,0,0,-1034.3037,0,2,1,2019,12,1,36,36,1,1,1,5.9695315,5.9695315,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,383,61938.398,0,0,0,468.10654 -5087,6281,11287,-9,11284,11285,1,1,28,0,0,0,2,2,-9,0,4,8.5187073,8.290638,0,0,0,-1116.6904,0,2,1,2019,10,0,37,40,1,1,1,12.91209,12.91209,0,0,0,0,0,0,0,0,3.0934489,0,49,58,-9,-9,7,1,1,0,0,1,2,4,1,502,81880.344,140483.84,0,0,1387.3119 -5088,6282,11288,11290,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,4,-14,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.9,48.63,61.91,13.53,10,1,1,1,0,0,5,1,0,567.33331,246960.3,144936.59,208967.64,11514.081,3246.5239 -5088,6282,11289,-9,11288,11290,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.75336,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,567.33331,246960.3,144936.59,208967.64,11514.081,3246.5239 -5088,6282,11290,11288,-9,-9,1,1,56,0,1,0,3,3,-9,1,1,0,0,0,4,14,0,0,-9,-9,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,61.91,13.53,62.9,48.63,1.666666666666667,1,1,0,0,0,5,1,0,567.33331,246960.3,144936.59,208967.64,11514.081,3246.5239 -5088,6283,11291,-9,11288,11290,1,1,22,0,1,0,2,2,-9,1,2,0,0,0,0,0,-971.19678,0,3,3,2019,14,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,44.56,41.81,-9,-9,5,1,1,1,1,0,5,1,0,1035,142630.06,0,0,0,1131.0359 -5089,6284,11292,11293,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7699475,7.8453326,0,8,12,56.369068,0,3,-9,2019,6,0,38,38,1,0,0,8.6990662,8.6990662,0,0,0,0,0,0,0,0,0,0,54.96,53.17,49.12,53.02,6.666666666666667,1,1,0,0,10,6,5,1,463,23877.82,19841.736,117277.48,72202.031,3231.1826 -5089,6284,11293,11292,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.8761358,8.803215,0,8,-12,15.516392,0,2,2,2019,8,0,40,45,1,0,0,23.451544,23.451544,0,0,0,0,0,0,0,0,.58363694,0,49.12,53.02,54.96,53.17,1.666666666666667,1,1,0,0,10,6,5,1,463,23877.82,19841.736,117277.48,72202.031,3231.1826 -5090,6285,11294,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4744306,7.570642,0,0,0,-935.06433,-9,-9,-9,2019,9,0,49,0,1,0,0,4.7739215,4.7739215,0,0,0,0,0,0,0,0,0,0,52.21,48.86,-9,-9,6.666666666666667,1,1,0,0,10,5,3,0,489,47024.41,34674.344,0,0,182.29083 -5091,6286,11295,11296,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.1322393,8.723362,0,10,-1,-114.60535,0,2,1,2019,7,0,50,50,1,0,0,17.825012,17.825012,0,0,0,.12872958,2,1,1,0,0,0,58.62,52.91,69.87,19,8.333333333333334,1,1,0,0,8,9,5,1,538,999702.63,113482.88,459974.13,0,3154.8 -5091,6286,11296,11295,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,34,1,-68.909096,0,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,.53751844,0,69.87,19,58.62,52.91,6.666666666666667,1,1,0,1,1,9,5,1,538,999702.63,113482.88,459974.13,0,3154.8 -5091,6287,11297,-9,11296,11295,1,0,28,0,0,0,2,2,-9,0,4,7.966661,7.8937058,0,0,0,-1020.7415,0,2,1,2019,11,0,40,40,1,2,1,7.7119169,7.7119169,0,0,0,0,0,1,1,0,0,0,46,57,-9,-9,7,1,1,0,0,1,9,4,1,656,-232106.27,108719.77,0,0,984.45776 -5091,6288,11298,-9,11296,11295,1,0,25,0,0,0,2,2,-9,0,4,7.7915134,7.5886889,0,0,0,-950.89685,0,2,1,2019,11,0,50,60,1,2,1,4.7737899,4.7737899,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,3,1,313,117757.85,0,0,0,737.88159 -5091,6289,11299,-9,11296,11295,1,0,22,0,0,0,1,1,1,1,3,7.8043661,7.8983617,0,0,0,-1102.8481,-9,2,1,2019,14,2,38,0,1,2,1,6.1376572,6.1376572,0,0,0,0,0,1,1,0,0,0,51.91,27.41,-9,-9,3.333333333333333,1,1,0,0,6,9,3,1,1291,-176107.44,23607.225,0,0,1504.8363 -5091,6290,11300,-9,11296,11295,1,1,19,0,0,0,2,2,-9,0,4,8.4145498,8.5204306,0,0,0,-1048.6106,0,2,1,2019,18,6,45,55,1,6,1,12.886518,12.886518,0,0,0,0,0,1,1,0,.38316917,0,43.79,58.33,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,289,-71933.898,-61170.992,0,0,1604.2822 -5092,6291,11301,11302,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.1279869,7.0455256,6,1,13.36214,0,3,3,2019,10,0,0,30,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.0967898,52,47,54.69,57.47,7,1,1,0,0,6,13,3,1,286,123921.7,143406.61,235297.09,0,2657.5942 -5092,6291,11302,11301,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,7.5988193,7.7702045,0,6,-1,-31.95698,0,3,3,2019,9,0,40,20,1,0,0,6.7062268,6.7062268,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,47,8.333333333333334,1,1,0,0,7,13,3,1,286,123921.7,143406.61,235297.09,0,2657.5942 -5093,6292,11303,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4087791,8.3251123,0,0,0,-941.18146,-9,-9,-9,2019,18,5,45,0,1,5,0,10.509097,10.509097,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,5,4,2,0,0,9,10,4,1,739,30722.428,34312.199,0,0,1523.5044 -5094,6293,11304,11305,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.3858948,7.411068,50,0,17.84454,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4151158,7.2648497,54.96,53.17,54.37,54.8,8.333333333333334,1,1,0,0,8,2,2,1,583,584732.75,433421.5,199242.53,0,2392.6948 -5094,6293,11305,11304,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,0,11.425033,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.32650983,0,54.37,54.8,54.96,53.17,8.333333333333334,1,1,0,0,3,2,2,1,583,584732.75,433421.5,199242.53,0,2392.6948 -5095,6294,11306,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8266492,8.0532923,0,0,0,-998.68152,0,3,2,2019,7,0,30,30,1,0,0,12.883253,12.883253,0,0,0,0,0,1,1,0,.55981892,0,47.78,35.95,-9,-9,6.666666666666667,1,1,0,0,7,9,3,0,903,1980780.5,1827315,193557.47,46441.602,1473.1035 -5096,6295,11307,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1061.8424,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,2.2468374,0,24.21,59.2,-9,-9,0,1,1,1,1,10,10,2,0,432,-210542.67,0,0,0,-258.52225 -5097,6296,11308,11309,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2335281,8.1498842,0,10,-1,24.237394,0,2,2,2019,6,0,18,21,1,0,0,20.472797,20.472797,0,0,0,0,2,0,0,0,3.2665811,0,63.24,42.39,57.16,56.15,8.333333333333334,1,1,0,0,11,12,4,1,278.5,781861.88,130267.16,254688.25,0,2271.8962 -5097,6296,11309,11308,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.9651871,7.8094425,0,10,1,9.2538662,0,2,2,2019,7,0,22,37,1,0,0,13.905499,13.905499,0,0,0,0,0,0,0,0,4.6210222,0,57.16,56.15,63.24,42.39,8.333333333333334,1,1,0,0,11,12,4,1,278.5,781861.88,130267.16,254688.25,0,2271.8962 -5098,6297,11310,11311,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.6600122,7.6228509,45,1,3.1567576,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0704069,7.5028229,57.06,57.76,35.57,63.56,8.333333333333334,1,1,0,0,0,6,3,1,582,691174.38,358621.66,275887.25,0,2634.0288 -5098,6297,11311,11310,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.7142167,6.7145009,45,-1,2.9404461,0,2,2,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.746881,6.8991442,35.57,63.56,57.06,57.76,6.666666666666667,1,1,0,0,0,6,3,1,582,691174.38,358621.66,275887.25,0,2634.0288 -5099,6298,11312,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.8199472,7.5464363,0,0,0,-1021.3842,0,3,3,2019,2,0,41,49,1,0,0,7.8554368,7.8554368,0,0,0,0,0,1,1,0,0,0,62.11,48.33,-9,-9,10,3,4,0,0,9,8,3,0,726.5,89072.203,73318.906,0,0,1187.9241 -5099,6298,11313,-9,11312,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.98767,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,726.5,89072.203,73318.906,0,0,1187.9241 -5100,6299,11314,11315,-9,-9,1,0,46,0,1,0,2,2,-9,1,1,0,0,0,4,-20,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.46000000000001,17.87,56.46,50.89,10,4,2,0,0,2,8,1,0,581,-10565.672,0,0,0,2955.5884 -5100,6299,11315,11314,-9,-9,1,1,66,0,1,0,2,2,-9,0,4,0,0,0,4,20,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.46,50.89,70.46000000000001,17.87,10,4,2,0,0,0,8,1,0,581,-10565.672,0,0,0,2955.5884 -5101,6300,11316,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.9451518,6.7042422,0,0,-1009.6039,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,7.1332026,6.7031617,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,318,75055.156,24104.344,0,0,1278.2382 -5102,6301,11317,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,0,0,-892.82813,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.24,59.44,-9,-9,8.333333333333334,1,1,1,0,6,12,1,0,1004,281456,0,0,0,1203.3008 -5102,6301,11318,-9,11317,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.29041,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,1,0,1004,281456,0,0,0,1203.3008 -5103,6302,11319,11321,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0903292,7.9446683,0,7,-8,-69.850571,0,2,1,2019,18,7,30,38,1,7,0,10.299664,10.299664,0,0,0,0,0,0,0,0,0,0,35.38,63.46,61.66,49.96,8.333333333333334,1,1,0,0,8,12,4,1,300.66666,1589238.9,948725.5,329932.06,7180.9883,3336.8091 -5103,6302,11320,-9,11319,11321,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-813.95557,-9,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,300.66666,1589238.9,948725.5,329932.06,7180.9883,3336.8091 -5103,6302,11321,11319,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.8736157,7.8207173,7,8,-39.608055,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1012797,7.8164396,61.66,49.96,35.38,63.46,8.333333333333334,1,1,0,0,3,12,4,1,300.66666,1589238.9,948725.5,329932.06,7180.9883,3336.8091 -5104,6303,11322,11323,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.837472,8.766923,9,-3,41.481125,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0781808,8.6263885,57.91,46.31,57.33,53.46,8.333333333333334,1,1,0,0,0,6,5,1,837.5,1544553.9,415007,269284.38,0,5723.918 -5104,6303,11323,11322,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.8909287,5.5402193,9,3,-16.98793,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7012177,5.8657289,57.33,53.46,57.91,46.31,8.333333333333334,1,1,0,0,0,6,5,1,837.5,1544553.9,415007,269284.38,0,5723.918 -5105,6304,11324,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,8.032939,8.3232651,0,0,0,-936.41748,0,3,3,2019,15,3,40,40,1,3,0,14.61939,14.61939,0,0,0,0,7,0,0,0,0,0,43.78,42.79,-9,-9,8.333333333333334,1,1,0,0,11,10,4,0,968,145403.64,281451.16,0,0,1511.0366 -5106,6305,11325,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.6195421,7.7167869,0,0,-1076.3619,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.5044169,7.8687434,51.77,58.57,-9,-9,5,1,1,0,0,5,9,3,1,315,761438.31,625702.56,404446.28,0,1163.8517 -5107,6306,11326,11327,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.5825033,7.1873655,40,0,-30.825359,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.5667286,7.1170807,44.25,56.64,47.39,52.89,6.666666666666667,1,1,0,0,9,8,4,1,1014,2429300.5,1231063.3,1036161.9,0,4309.4404 -5107,6306,11327,11326,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.5703297,8.6049004,39,9,9.6047449,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.6385336,8.6876602,47.39,52.89,44.25,56.64,8.333333333333334,1,1,0,0,0,8,4,1,1014,2429300.5,1231063.3,1036161.9,0,4309.4404 -5108,6307,11328,-9,11330,11329,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.9153,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,990.33331,110556.54,46243.469,0,0,2088.5576 -5108,6307,11329,11330,-9,-9,1,1,26,0,1,0,1,1,-9,0,4,8.6519337,8.4741602,0,4,-2,42.389343,0,-9,-9,2019,18,6,35,35,1,6,0,14.770627,14.770627,0,0,0,0,0,1,1,0,0,0,40.58,60.95,48,57,3.333333333333333,1,1,0,0,3,10,4,1,990.33331,110556.54,46243.469,0,0,2088.5576 -5108,6307,11330,11329,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,6.4683132,6.9387417,0,4,2,-45.798191,0,-9,-9,2019,11,0,12,15,1,2,0,5.2917285,5.2917285,0,0,0,0,0,1,1,0,0,0,48,57,40.58,60.95,7,1,1,0,0,1,10,4,1,990.33331,110556.54,46243.469,0,0,2088.5576 -5109,6308,11331,11332,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.498198,7.4730878,0,2,3,-64.316597,0,-9,-9,2019,12,0,22,22,1,0,0,7.6312785,7.6312785,0,0,0,0,0,1,1,0,.9888128,0,37.17,31.84,49.25,61.25,5,1,1,0,1,12,11,3,0,277.5,72386.727,0,0,0,2043.3477 -5109,6308,11332,11331,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,7.4012599,7.8203602,0,2,-3,80.854591,0,2,2,2019,9,0,33,33,1,0,0,6.6782408,6.6782408,0,0,0,0,0,1,1,0,3.6414304,0,49.25,61.25,37.17,31.84,8.333333333333334,1,1,0,0,12,11,3,0,277.5,72386.727,0,0,0,2043.3477 -5110,6309,11333,-9,11335,11334,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.54456,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,963.66669,356123.75,246006.5,167748.83,0,4976.3096 -5110,6309,11334,11335,-9,-9,1,1,40,0,1,0,1,1,-9,1,4,8.384675,8.8785934,6.7482576,12,1,-1.9195975,0,2,1,2019,9,1,37,37,1,1,0,16.442587,16.442587,0,0,0,0,2,1,1,0,7.0936823,0,47.49,55.02,49.86,55.31,8.333333333333334,1,1,0,0,11,6,5,1,963.66669,356123.75,246006.5,167748.83,0,4976.3096 -5110,6309,11335,11334,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,9.0316563,8.6596098,0,14,-1,-33.830673,0,2,2,2019,10,0,37,53,1,0,0,18.263771,18.263771,0,0,0,0,0,1,1,0,0,0,49.86,55.31,47.49,55.02,6.666666666666667,1,1,0,0,9,6,5,1,963.66669,356123.75,246006.5,167748.83,0,4976.3096 -5111,6310,11336,11337,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,25,-2,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.72,21.36,33.93,43.83,3.333333333333333,1,1,0,0,0,10,1,1,619,40997.664,53070.203,406890.56,126997.39,1387.0057 -5111,6310,11337,11336,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,25,2,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,33.93,43.83,41.72,21.36,6.666666666666667,1,1,0,0,12,10,1,1,619,40997.664,53070.203,406890.56,126997.39,1387.0057 -5112,6311,11338,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.0676794,8.3053064,6.3934054,0,0,-1014.8961,0,2,2,2019,7,0,45,45,1,0,0,10.505407,10.505407,0,0,0,0,7,0,0,0,0,6.3484507,59.22,37.52,-9,-9,8.333333333333334,1,1,0,0,12,6,4,0,424,938217.88,372961.69,289022.31,0,1509.7311 -5113,6312,11339,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,7.6119637,7.3131871,0,0,0,-905.48865,0,2,2,2019,9,0,30,30,1,0,0,6.563045,6.563045,0,0,0,0,0,1,1,0,2.4232144,0,51.24,58.84,-9,-9,0,1,1,0,0,8,5,3,1,582,630999.75,300087.97,222937.78,0,1170.7905 -5114,6313,11340,11341,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,8.4439678,8.1719065,3,-1,-27.906794,0,-9,-9,2019,11,0,0,55,4,0,0,0,0,0,0,0,0,0,0,0,0,8.8730097,8.3506498,51.41,56.15,56.76,31.14,1.666666666666667,1,1,0,0,7,9,5,0,1477.5,1655807.3,826997,641657.13,75256.859,4553.3262 -5114,6313,11341,11340,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,7.480381,7.7984643,0,3,1,-103.18556,0,-9,-9,2019,7,1,32,30,1,1,0,7.2593093,7.2593093,0,0,0,0,7,0,0,0,6.701416,0,56.76,31.14,51.41,56.15,10,1,1,0,0,9,9,5,0,1477.5,1655807.3,826997,641657.13,75256.859,4553.3262 -5115,6314,11342,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.0370855,7.9644985,0,0,0,-983.52124,-9,2,-9,2019,9,0,42,0,1,0,0,8.9914017,8.9914017,0,0,0,0,0,0,0,0,0,0,45.42,50.8,-9,-9,5,1,1,0,0,9,4,4,0,745,-10582.07,9542.4824,90833.859,14806.339,1770.4004 -5116,6315,11343,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.8608146,6.634479,0,0,0,-903.09509,0,3,3,2019,11,1,35,28,1,1,0,2.1726537,2.1726537,0,0,0,0,0,1,1,0,0,0,49.9,45.75,-9,-9,8.333333333333334,1,1,0,1,9,11,2,0,648,-465175.5,-37972.914,0,0,1089.3549 -5117,6316,11344,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.2630787,8.1774044,0,0,0,-940.38275,0,-9,-9,2019,5,0,40,40,1,0,0,10.100309,10.100309,0,0,0,0,0,0,0,0,5.2458367,0,42.3,57.54,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,2233,0,0,0,0,1298.0894 -5118,6317,11345,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.2146549,8.244071,0,0,0,-1107.772,0,3,-9,2019,9,0,38,40,1,0,0,9.0455132,9.0455132,0,0,0,0,2,0,0,0,1.4356275,0,44.42,54.24,-9,-9,3.333333333333333,1,1,0,0,7,9,4,1,1457,363808.41,4651.7485,146038.19,69113.281,1175.0902 -5119,6318,11346,-9,11347,11348,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1007.2734,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 -5119,6318,11347,11348,-9,-9,1,0,46,0,2,0,2,2,-9,1,2,7.5008464,7.8931403,0,8,6,-181.25346,0,3,3,2019,13,3,24,30,1,3,0,9.2884169,9.2884169,0,0,0,0,0,1,1,0,2.6809964,0,60.56,29.04,51,56,8.333333333333334,1,1,0,0,10,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 -5119,6318,11348,11347,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.1465616,9.3160782,0,8,-6,56.604195,0,-9,-9,2019,9,0,37,37,1,1,0,25.295887,25.295887,0,0,0,0,0,1,1,0,0,0,51,56,60.56,29.04,8,1,1,0,0,1,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 -5119,6318,11349,-9,11347,11348,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.22656,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1265,215734.86,-75316.945,210278.09,128741.88,5476.3125 -5120,6319,11350,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.9840622,7.0507154,0,0,-1097.274,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8065162,57.98,35.77,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,586,-116541.48,391379.13,0,0,1733.4617 -5121,6320,11351,11352,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.161128,7.921773,0,3,-4,52.170887,0,2,2,2019,19,8,46,48,1,8,0,7.4101434,7.4101434,0,0,0,0,0,0,0,0,0,0,44.19,58.01,33.06,63.21,6.666666666666667,1,1,0,0,7,12,5,1,1044,51807.457,-5689.6484,0,0,3191.5378 -5121,6320,11352,11351,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.3308992,8.5275145,0,3,4,-31.445894,0,-9,-9,2019,14,4,42,40,1,4,0,11.107763,11.107763,0,0,0,0,0,0,0,0,0,0,33.06,63.21,44.19,58.01,6.666666666666667,1,1,0,0,1,12,5,1,1044,51807.457,-5689.6484,0,0,3191.5378 -5122,6321,11353,-9,-9,-9,1,0,49,1,1,0,3,3,-9,0,2,7.6118054,7.3718767,0,0,0,-1046.3843,0,3,3,2019,12,1,30,30,1,1,0,10.355011,10.355011,0,0,0,0,7,1,1,0,0,0,36.12,41.51,-9,-9,6.666666666666667,1,1,0,0,9,13,3,0,344,50413.637,42414.273,40749.203,70444.063,1402.0466 -5122,6322,11354,-9,11353,-9,1,0,25,1,1,0,2,2,-9,0,4,8.3347778,8.4316635,0,0,0,-947.6795,0,3,-9,2019,16,5,48,49,1,5,1,8.8043823,8.8043823,0,0,0,0,0,1,1,0,0,0,34.23,58.68,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,403.5,276355.88,-1903.2843,0,0,1935.4839 -5122,6322,11355,-9,11354,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-974.93353,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,0,403.5,276355.88,-1903.2843,0,0,1935.4839 -5123,6323,11356,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.0452933,6.8572884,0,0,-1026.7175,0,2,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.6858258,6.0562654,38.45,39.53,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,3340,644568.81,183326.83,433481.5,0,759.18103 -5124,6324,11357,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-992.42529,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4178505,0,59.63,30.91,-9,-9,3.333333333333333,1,1,0,0,7,9,1,0,849,135954.92,0,0,0,654.81079 -5125,6325,11358,-9,11360,11361,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.7642,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 -5125,6325,11359,-9,11360,11361,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.01947,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 -5125,6325,11360,11361,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.677063,8.8357372,0,6,-5,-2.1601386,0,2,2,2019,8,0,39,37,1,0,0,16.854683,16.854683,0,0,0,0,0,1,1,0,0,0,61.12,51.57,62.49,55.09,10,1,1,0,0,8,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 -5125,6325,11361,11360,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.8179269,7.8723793,0,6,5,-98.641785,0,2,3,2019,6,0,50,50,1,0,0,5.9748368,5.9748368,0,0,0,0,0,1,1,0,0,0,62.49,55.09,61.12,51.57,10,1,1,0,0,8,7,4,1,581.75,479085.59,197275.34,401718.53,134715.59,3448.6719 -5126,6326,11362,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1049.7196,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.94,56.51,-9,-9,0,1,1,0,0,0,5,1,1,527,-257534.28,0,68890.523,0,914.95026 -5127,6327,11363,11365,-9,-9,1,0,41,0,1,0,3,3,-9,0,3,6.4007039,6.2149811,0,9,-2,78.055992,0,3,2,2019,22,10,10,10,1,10,0,6.4564824,6.4564824,0,0,0,0,0,1,1,0,0,0,32.92,44.25,35.6,55.01,3.333333333333333,1,1,0,0,10,11,3,1,907.66669,264327.25,12668.144,135598.42,81194,2033.2214 -5127,6327,11364,-9,11363,11365,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-975.47998,-9,3,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,3,1,907.66669,264327.25,12668.144,135598.42,81194,2033.2214 -5127,6327,11365,11363,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.4331627,8.6369686,0,9,2,-40.263729,0,-9,-9,2019,24,12,82,44,1,12,0,5.5344744,5.5344744,0,0,0,0,0,1,1,0,0,0,35.6,55.01,32.92,44.25,6.666666666666667,1,1,0,1,10,11,3,1,907.66669,264327.25,12668.144,135598.42,81194,2033.2214 -5127,6328,11366,-9,11363,11365,1,0,19,0,1,0,2,2,-9,0,3,8.0474367,7.8129578,0,0,0,-983.28497,-9,3,2,2019,12,0,35,0,1,0,1,11.458949,11.458949,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,3.333333333333333,1,1,0,1,2,11,4,1,426,62641.086,0,0,0,1106.2344 -5128,6329,11367,11368,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.0699816,8.2792492,48,0,108.33002,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7472396,8.2497606,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,1,3,1,482,1412248.3,1227924.8,179404.63,0,2924.1157 -5128,6329,11368,11367,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,5.2565765,5.4343524,7,0,91.787659,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2953119,5.2959609,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,482,1412248.3,1227924.8,179404.63,0,2924.1157 -5129,6330,11369,11370,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.0614448,5.360518,10,-1,1.73596,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1652975,41.12,43.31,52.93,28.68,8.333333333333334,1,1,0,0,5,13,2,1,1063,224618.19,50218.762,0,0,2391.7197 -5129,6330,11370,11369,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.8379712,6.4557152,10,1,5.2405233,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,.93903083,2.2436354,24.851042,0,1,1,0,5.514329,6.3271251,52.93,28.68,41.12,43.31,5,1,1,0,0,3,13,2,1,1063,224618.19,50218.762,0,0,2391.7197 -5130,6331,11371,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,0,7.4040842,7.3075604,0,0,-1172.5594,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.9348235,7.608079,35.04,41.01,-9,-9,3.333333333333333,1,1,1,1,9,7,3,1,511,714011.44,369084.22,116519.55,63258.801,1006.1422 -5131,6332,11372,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1013.9889,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,385,11723.331,0,0,0,1031.8293 -5132,6333,11373,11374,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.456975,8.6081982,7.1635461,5,-7,30.666277,0,-9,-9,2019,7,0,49,50,1,0,0,7.7212262,7.7212262,0,0,0,0,0,1,1,0,.29401556,6.9621601,54.37,54.8,52.72,55.58,8.333333333333334,1,1,0,0,12,9,4,1,684.5,483892.19,415775.97,0,0,3381.2205 -5132,6333,11374,11373,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,7.1480718,6.9526949,5,7,86.751633,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6386356,7.383255,52.72,55.58,54.37,54.8,8.333333333333334,1,1,0,0,11,9,4,1,684.5,483892.19,415775.97,0,0,3381.2205 -5133,6334,11375,11376,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.9976788,8.8733044,0,7,-1,17.961521,0,2,1,2019,5,0,42,47,1,0,0,18.718208,18.718208,0,0,0,0,0,0,0,0,7.7840991,0,57.06,57.76,55.66,35.3,8.333333333333334,1,1,0,0,10,9,5,1,852.5,100889.98,127291.09,352720.88,308923.56,5202.7417 -5133,6334,11376,11375,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.3146696,8.4161415,0,7,1,27.376368,0,-9,-9,2019,12,0,27,27,1,0,0,14.927998,14.927998,0,0,0,0,0,0,0,0,0,0,55.66,35.3,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,852.5,100889.98,127291.09,352720.88,308923.56,5202.7417 -5134,6335,11377,11378,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,48,0,-2.8915625,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,11.138356,0,0,1,1,0,0,0,53.59,46.78,54.37,54.8,8.333333333333334,1,1,0,0,0,9,2,1,1219.5,411425.94,105101.26,208634.36,0,1122.0747 -5134,6335,11378,11377,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7280383,6.5748854,48,0,-131.20288,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8101797,54.37,54.8,53.59,46.78,8.333333333333334,1,1,0,0,7,9,2,1,1219.5,411425.94,105101.26,208634.36,0,1122.0747 -5135,6336,11379,11381,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9876738,7.9454727,0,7,-10,3.1761124,-9,-9,-9,2019,8,0,36,0,1,0,0,10.121037,10.121037,0,0,0,0,0,1,1,0,0,0,46.08,57.2,42.45,37.22,6.666666666666667,1,1,0,0,9,10,4,1,515.33331,-126038.98,9491.5283,166127.63,95455.82,2612.5283 -5135,6336,11380,-9,11379,11381,1,1,16,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1076.5238,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.26,50.52,-9,-9,3.333333333333333,1,1,0,0,0,10,4,1,515.33331,-126038.98,9491.5283,166127.63,95455.82,2612.5283 -5135,6336,11381,11379,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.5266771,8.1056986,0,16,10,-44.293232,0,3,3,2019,20,8,35,35,1,8,0,6.1226931,6.1226931,0,0,0,0,0,1,1,0,0,0,42.45,37.22,46.08,57.2,3.333333333333333,1,1,0,1,9,10,4,1,515.33331,-126038.98,9491.5283,166127.63,95455.82,2612.5283 -5135,6337,11382,-9,11379,11381,1,0,20,0,0,0,2,2,-9,0,4,7.6425872,7.6484103,0,0,0,-1055.6123,0,2,2,2019,20,8,42,33,1,8,1,5.4700384,5.4700384,0,0,0,0,0,1,1,0,0,0,24.46,63.1,-9,-9,3.333333333333333,1,1,0,1,4,10,3,1,517,-102002.79,0,0,0,1234.0386 -5136,6338,11383,11385,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.364418,9.8544149,0,26,-4,78.325417,0,2,1,2019,15,5,75,40,1,5,0,27.483931,27.483931,0,0,0,0,2,0,0,0,3.2819555,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,803,2620905,178442.14,2464714.8,623651.63,7130.5693 -5136,6338,11384,-9,11385,11383,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.78265,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,803,2620905,178442.14,2464714.8,623651.63,7130.5693 -5136,6338,11385,11383,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.4469166,7.7090793,0,26,4,-47.731277,0,2,2,2019,6,0,18,0,1,0,0,12.318276,12.318276,0,0,0,0,2,0,0,0,7.0269632,0,57.16,56.15,51.24,58.84,10,1,1,0,0,7,7,5,1,803,2620905,178442.14,2464714.8,623651.63,7130.5693 -5137,6339,11386,11387,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.8980813,7.9072981,4.1103306,43,-3,-18.438753,0,3,2,2019,7,0,24,32,1,0,0,13.639996,13.639996,0,0,0,0,0,1,1,0,5.7540317,4.2358742,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,9,2,3,1,715.5,107937.83,94517.258,129060.13,-10185.805,3419.2476 -5137,6339,11387,11386,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,43,3,-34.108719,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.0628901,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,7,2,3,1,715.5,107937.83,94517.258,129060.13,-10185.805,3419.2476 -5138,6340,11388,11389,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.3372874,7.5802383,0,25,-10,41.186054,0,2,2,2019,12,0,23,26,1,0,0,8.1968937,8.1968937,0,0,0,0,0,0,0,0,3.1258943,0,54.37,54.8,50.8,48.58,6.666666666666667,1,1,0,0,10,1,4,1,722.66669,250314.53,-48255.668,128219.18,39308.746,2509.3828 -5138,6340,11389,11388,-9,-9,1,1,57,0,1,0,2,2,-9,0,2,8.3369255,8.3807077,0,8,10,82.82959,-9,-9,-9,2019,11,0,55,0,1,0,0,9.1513929,9.1513929,0,0,0,0,0,0,0,0,.34319803,0,50.8,48.58,54.37,54.8,6.666666666666667,1,1,0,0,10,1,4,1,722.66669,250314.53,-48255.668,128219.18,39308.746,2509.3828 -5138,6340,11390,-9,11388,11389,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.3309,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,722.66669,250314.53,-48255.668,128219.18,39308.746,2509.3828 -5139,6341,11391,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.3905506,8.4430399,0,0,0,-974.95685,0,2,3,2019,22,9,37,37,1,9,0,12.527186,12.527186,0,0,0,0,0,0,0,0,3.9091597,0,17.38,59.79,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,519,666182.13,680613.31,0,0,1373.955 -5140,6342,11392,11393,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.9608397,8.3514347,11,-2,-59.784618,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.72529268,8.0795202,63.65,49.16,62.56,45.64,10,1,1,0,0,8,6,4,1,1179,1308598.8,1010202.6,191787.78,0,2535.6211 -5140,6342,11393,11392,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.2348623,6.6788163,5,2,-39.444981,0,-9,-9,2019,6,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,1.9726843,6.7382765,62.56,45.64,63.65,49.16,10,1,1,0,0,8,6,4,1,1179,1308598.8,1010202.6,191787.78,0,2535.6211 -5141,6343,11394,11395,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,5.3698769,5.4401884,41,0,-158.94858,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6518803,5.5800543,47.39,52.89,44.42,54.24,5,1,1,0,0,9,8,4,1,467.5,2642748.5,1348651.3,504135.69,0,4000.834 -5141,6343,11395,11394,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,8.6865253,8.7551689,40,9,-63.283321,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.7067118,8.2486305,44.42,54.24,47.39,52.89,6.666666666666667,1,1,0,0,0,8,4,1,467.5,2642748.5,1348651.3,504135.69,0,4000.834 -5142,6344,11396,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.018343,8.0978603,0,0,0,-1072.5953,0,3,2,2019,5,0,38,40,1,0,0,11.770714,11.770714,0,0,0,0,0,1,1,0,6.9010372,0,53.31,46.97,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,484,224497.83,-58235.938,0,0,1691.1509 -5143,6345,11397,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.5424933,7.1937113,0,0,0,-955.60907,0,-9,-9,2019,16,5,25,30,1,5,0,8.5361938,8.5361938,0,0,0,0,0,0,0,0,2.7501466,0,35.5,54.11,-9,-9,5,1,1,0,0,5,10,3,0,134,22248.697,-33035.004,0,0,677.63617 -5144,6346,11398,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.7009487,8.7176714,0,0,0,-1019.7534,0,2,2,2019,12,0,45,51,1,0,0,17.488352,17.488352,0,0,0,0,0,0,0,0,1.0503603,0,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,764,397084.59,97365.922,99150.344,22584.039,2288.4011 -5145,6347,11399,11401,-9,-9,1,1,69,0,2,0,1,1,-9,0,3,0,7.2524037,7.4478073,24,26,140.93291,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4577904,7.6316366,54.22,39.67,50.26,48.51,1.666666666666667,3,4,0,0,4,8,2,0,870,60176.078,40792.281,0,0,1566.571 -5145,6347,11400,-9,11401,11399,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-998.12659,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,4,2,-9,0,0,8,2,0,870,60176.078,40792.281,0,0,1566.571 -5145,6347,11401,11399,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,0,0,0,6,-26,36.474052,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.26,48.51,54.22,39.67,6.666666666666667,3,4,1,0,3,8,2,0,870,60176.078,40792.281,0,0,1566.571 -5145,6347,11402,-9,11401,11399,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.755,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,870,60176.078,40792.281,0,0,1566.571 -5145,6348,11403,-9,11401,11399,1,0,20,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1008.9345,1,2,2,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,.97776628,0,40.25,50.93,-9,-9,3.333333333333333,4,2,0,0,0,8,1,0,380,-182450,0,0,0,-29.923162 -5146,6349,11404,11405,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,19,-3,-14.367943,0,2,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,8.0500593,0,47.24,27.28,54.21,46.79,8.333333333333334,1,1,0,0,10,7,2,1,733,168721.78,-26826.248,171510.53,77245.359,1357.3188 -5146,6349,11405,11404,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,5.2569818,5.2083111,0,19,3,-4.4582577,0,2,3,2019,10,0,24,15,1,0,0,1.1633211,1.1633211,0,0,0,0,2,0,0,0,0,0,54.21,46.79,47.24,27.28,6.666666666666667,1,1,0,0,11,7,2,1,733,168721.78,-26826.248,171510.53,77245.359,1357.3188 -5147,6350,11406,11407,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.0374651,8.1667624,0,2,-12,-45.645332,0,2,2,2019,12,2,36,39,1,2,0,12.186352,12.186352,0,0,0,0,0,0,0,0,2.0868487,0,48.45,57.49,38.34,62.12,8.333333333333334,1,1,0,0,12,10,5,1,920,958396.31,729267,353845.91,172643.22,4508.0762 -5147,6350,11407,11406,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.927393,9.1160069,0,2,12,-52.024235,0,2,3,2019,13,3,48,50,1,3,0,20.319372,20.319372,0,0,0,0,0,0,0,0,0,0,38.34,62.12,48.45,57.49,6.666666666666667,1,1,0,0,12,10,5,1,920,958396.31,729267,353845.91,172643.22,4508.0762 -5148,6351,11408,-9,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.4944839,8.235981,0,0,0,-1053.8236,0,3,3,2019,6,0,37,16,1,0,0,14.516633,14.516633,0,0,0,0,0,1,1,0,0,0,66.44,47.81,-9,-9,8.333333333333334,3,4,0,0,7,5,3,0,1902,1420438.5,889413.5,421083.28,0,1995.8293 -5148,6351,11409,-9,-9,11408,1,1,17,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1004.4084,-9,-9,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.96,55.09,-9,-9,10,3,4,0,0,0,5,3,0,1902,1420438.5,889413.5,421083.28,0,1995.8293 -5148,6352,11410,-9,-9,11408,1,0,24,0,2,0,1,1,0,0,5,0,0,0,0,0,-1016.3293,-9,3,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,55.17,58.56,-9,-9,10,3,4,0,0,3,5,1,0,1042,0,0,0,0,323.60785 -5148,6353,11411,-9,-9,11408,1,0,22,0,2,0,2,2,-9,0,5,9.610342,9.635231,0,0,0,-1100.0697,0,-9,1,2019,0,0,51,0,1,0,1,34.46151,34.46151,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,2,5,5,0,1890,41598.422,-59723.102,0,0,8171.123 -5148,6354,11412,-9,-9,11408,1,1,20,0,2,0,2,2,-9,1,5,0,0,0,0,0,-1015.7312,1,-9,1,2019,6,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,2,5,1,0,2331,-71989.414,0,0,0,299.12262 -5149,6355,11413,-9,11416,11415,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.68457,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 -5149,6355,11414,-9,11416,11415,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.07861,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 -5149,6355,11415,11416,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.8452787,8.9859505,0,20,4,68.163933,0,-9,-9,2019,12,1,38,38,1,1,0,22.090345,22.090345,0,0,0,0,0,1,1,0,0,0,46.67,55.57,37.06,51.62,6.666666666666667,2,3,0,0,10,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 -5149,6355,11416,11415,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.4712605,7.5464058,0,19,-4,-51.858799,0,-9,-9,2019,10,1,21,0,1,1,0,12.345455,12.345455,0,0,0,0,0,1,1,0,0,0,37.06,51.62,46.67,55.57,6.666666666666667,1,1,0,0,3,6,4,1,568.75,373981.25,274806.25,148340.09,26982.957,3558.343 -5150,6356,11417,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.5603275,8.8953104,0,0,0,-1030.425,0,-9,2,2019,16,4,47,57,1,4,0,16.140875,16.140875,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,475,-158001.28,0,264806.88,242118.45,2461.0339 -5150,6356,11418,-9,11417,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.9064,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,475,-158001.28,0,264806.88,242118.45,2461.0339 -5150,6356,11419,-9,11417,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.98004,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,475,-158001.28,0,264806.88,242118.45,2461.0339 -5151,6357,11420,11421,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,6.5231433,6.0973434,0,1,-4,28.985847,-9,3,2,2019,8,0,30,0,1,0,0,2.3021443,2.3021443,0,0,0,0,0,1,1,0,0,0,53.81,53.56,46.08,57.2,8.333333333333334,1,1,0,1,2,13,2,1,2559.5,58700.68,-20878.656,0,0,829.57849 -5151,6357,11421,11420,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,0,0,0,1,4,138.20384,-9,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,53.81,53.56,1.666666666666667,1,1,1,1,6,13,2,1,2559.5,58700.68,-20878.656,0,0,829.57849 -5152,6358,11422,11423,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,6.331429,6.1513176,31,-6,21.61673,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.66495782,6.0057044,43.65,26.18,57.73,54.53,10,1,1,0,0,0,7,2,1,367,945029.13,174304.97,574763.56,0,2372.6147 -5152,6358,11423,11422,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.1418872,5.9167938,31,6,-79.690231,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1331334,5.9497104,57.73,54.53,43.65,26.18,8.333333333333334,1,1,0,0,0,7,2,1,367,945029.13,174304.97,574763.56,0,2372.6147 -5153,6359,11424,11425,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.0892305,5.8031435,57,-3,-96.309174,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.385715,6.0585146,60.29,52.11,57.68,42.36,8.333333333333334,1,1,0,0,0,2,2,1,294.5,650459.44,121192.98,612981.63,0,1864.345 -5153,6359,11425,11424,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,57,3,-25.285654,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.68,42.36,60.29,52.11,8.333333333333334,1,1,0,0,0,2,2,1,294.5,650459.44,121192.98,612981.63,0,1864.345 -5154,6360,11426,11427,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.3466811,7.4433503,0,3,-3,114.15926,0,-9,-9,2019,11,0,20,25,1,0,0,7.2828083,7.2828083,0,0,0,0,0,1,1,0,0,0,51.83,57.2,35.2,48.71,1.666666666666667,1,1,0,0,4,9,3,0,483,109129.54,44868.188,0,0,1709.9669 -5154,6360,11427,11426,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,6.7611613,6.7345419,0,3,3,60.98864,0,2,2,2019,7,0,35,45,1,0,0,3.4827287,3.4827287,0,0,0,0,0,1,1,0,1.3558319,0,35.2,48.71,51.83,57.2,1.666666666666667,1,1,0,0,10,9,3,0,483,109129.54,44868.188,0,0,1709.9669 -5155,6361,11428,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-903.33044,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,30.23,44.75,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,3034,-337317.66,0,0,0,1840.0555 -5156,6362,11429,11430,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.634676,8.7561951,0,3,3,-118.62635,0,2,2,2019,11,1,44,44,1,1,0,15.366425,15.366425,0,0,0,0,0,1,1,0,0,0,47.57,51.43,53.53,51,8.333333333333334,1,1,0,0,8,5,5,0,3232,208769.13,16749.238,0,0,4342.8086 -5156,6362,11430,11429,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.9161687,8.0403204,0,3,-3,4.8184214,0,-9,-9,2019,7,0,40,40,1,0,0,8.8108978,8.8108978,0,0,0,0,0,1,1,0,0,0,53.53,51,47.57,51.43,8.333333333333334,1,1,0,0,6,5,5,0,3232,208769.13,16749.238,0,0,4342.8086 -5157,6363,11431,11432,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,7,-1,-19.577875,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2829256,0,43.78,53.93,52.48,55.6,1.666666666666667,1,1,0,0,6,7,2,1,1191,665897.5,54446.508,464589.06,0,2296.7847 -5157,6363,11432,11431,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.9040194,5.7187061,7,1,-49.616085,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2141447,5.9195757,52.48,55.6,43.78,53.93,8.333333333333334,1,1,0,0,4,7,2,1,1191,665897.5,54446.508,464589.06,0,2296.7847 -5158,6364,11433,11436,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,7.6155419,7.9528952,0,10,-4,22.033499,0,2,3,2019,10,1,30,28,1,1,0,8.3979321,8.3979321,0,0,0,0,0,1,1,0,0,0,54.69,57.47,46.91,51.8,6.666666666666667,1,1,0,1,13,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 -5158,6364,11434,-9,11433,11436,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.15186,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 -5158,6364,11435,-9,11433,11436,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-968.88867,1,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,42.41,-9,-9,10,1,1,0,0,0,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 -5158,6364,11436,11433,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,8.8075237,8.9225025,0,10,4,-65.616592,0,3,2,2019,9,0,51,50,1,0,0,11.997266,11.997266,0,0,0,0,0,1,1,0,0,0,46.91,51.8,54.69,57.47,8.333333333333334,1,1,0,0,10,11,4,1,755,73854.57,65706.977,190191.84,76197.672,3553.0232 -5158,6365,11437,-9,11433,11436,1,1,20,0,1,0,2,2,-9,0,3,7.9344215,7.8400917,0,0,0,-1045.3408,0,2,2,2019,19,7,30,35,1,7,1,9.579567,9.579567,0,0,0,0,0,1,1,0,0,0,46.27,57.3,-9,-9,5,1,1,0,0,13,11,3,1,1076,46581.664,20625.604,0,0,1011.0188 -5159,6366,11438,11439,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.1100483,8.8282328,0,9,4,150.99258,0,-9,-9,2019,18,6,12,12,1,6,0,78.049385,78.049385,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51.89,30.45,3.333333333333333,1,1,0,1,9,1,5,1,322.5,490082.75,462236.06,208930.22,109062.01,4472.5947 -5159,6366,11439,11438,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,0,0,0,9,-4,-86.369644,0,2,2,2019,15,3,0,5,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.89,30.45,46.08,57.2,3.333333333333333,1,1,1,0,8,1,5,1,322.5,490082.75,462236.06,208930.22,109062.01,4472.5947 -5160,6367,11440,-9,11443,11441,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.4195,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 -5160,6367,11441,11443,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.7234192,8.7588453,0,13,-1,87.587097,-9,2,-9,2019,11,0,60,0,1,0,0,11.312419,11.312419,0,0,0,0,0,1,1,0,0,0,53.98,50.87,31.29,61.29,8.333333333333334,1,1,0,0,9,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 -5160,6367,11442,-9,11443,11441,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.39233,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 -5160,6367,11443,11441,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,6.7596512,7.0479059,0,14,1,36.623211,0,-9,2,2019,20,7,16,16,1,7,0,8.0775118,8.0775118,0,0,0,0,0,1,1,0,0,0,31.29,61.29,53.98,50.87,5,1,1,0,0,9,5,4,1,766,259417.05,28212.227,176640.88,95484.359,3162.5918 -5161,6368,11444,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.1833892,7.1175609,0,0,-974.4364,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0946603,7.0769796,57.06,57.76,-9,-9,10,1,1,0,0,5,4,3,1,1807,1110147.5,350400.84,464589.53,0,584.26715 -5162,6369,11445,11446,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.4436369,9.1671886,0,34,0,-.18452404,0,2,2,2019,6,0,43,44,1,0,0,30.723236,30.723236,0,0,0,0,0,0,0,0,7.929769,0,61.4,54.41,54.37,54.8,1.666666666666667,2,3,0,0,9,8,5,1,764.5,1458668.5,595710,621924.75,101949.8,5760.3809 -5162,6369,11446,11445,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.5817652,7.9889598,0,34,0,-5.9187183,0,-9,-9,2019,17,5,38,40,1,5,0,14.884696,14.884696,0,0,0,0,0,0,0,0,0,0,54.37,54.8,61.4,54.41,6.666666666666667,1,1,0,0,7,8,5,1,764.5,1458668.5,595710,621924.75,101949.8,5760.3809 -5162,6370,11447,-9,11445,11446,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1091.6224,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.82,62.33,-9,-9,8.333333333333334,4,2,0,0,2,8,1,1,253,99426.313,0,0,0,0 -5163,6371,11448,11449,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,6.3347225,6.6729517,0,22,2,-50.554039,0,2,3,2019,6,0,10,80,1,0,0,7.599628,7.599628,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,5,6,2,0,1792.5,1539061,0,634011,0,1354.9696 -5163,6371,11449,11448,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.002636,7.2501569,0,22,-2,-2.3055093,0,3,3,2019,10,0,20,20,1,0,0,6.3839493,6.3839493,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,6,2,0,1792.5,1539061,0,634011,0,1354.9696 -5164,6372,11450,11451,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6250629,8.4044027,0,11,1,-50.970455,0,2,-9,2019,4,0,39,40,1,0,0,9.8549709,9.8549709,0,0,0,0,0,1,1,0,0,0,48.87,58.55,47.07,50.01,10,1,1,0,0,12,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 -5164,6372,11451,11450,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,7.869163,7.3879642,0,11,-1,-48.672863,0,2,-9,2019,12,0,26,26,1,0,0,10.240295,10.240295,0,0,0,0,0,1,1,0,0,0,47.07,50.01,48.87,58.55,8.333333333333334,1,1,0,0,13,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 -5164,6372,11452,-9,11451,11450,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.24768,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 -5164,6372,11453,-9,11451,11450,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.9058,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,789.25,165131.02,262708.03,0,0,3359.4019 -5165,6373,11454,11455,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0182724,9.021101,0,10,-5,-101.68708,0,2,2,2019,6,0,42,45,1,0,0,18.057699,18.057699,0,0,0,0,0,1,1,0,0,0,59.32,46.98,54.68,29.48,8.333333333333334,1,1,0,0,9,2,5,1,923.5,3184767,2399706,498674.81,0,5171.3887 -5165,6373,11455,11454,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,6.1673441,7.7904906,7.5450792,10,5,-145.41368,0,3,3,2019,7,1,20,30,1,1,0,4.0064845,4.0064845,0,0,0,0,0,1,1,0,0,7.7767439,54.68,29.48,59.32,46.98,8.333333333333334,1,1,0,0,11,2,5,1,923.5,3184767,2399706,498674.81,0,5171.3887 -5166,6374,11456,11458,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.4709563,7.8012414,0,25,-2,-77.067963,0,2,2,2019,8,0,29,24,1,0,0,8.7619038,8.7619038,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.1,59.11,8.333333333333334,1,1,0,0,8,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 -5166,6374,11457,-9,11456,11458,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1133.9689,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 -5166,6374,11458,11456,-9,-9,1,1,47,0,1,0,3,3,-9,0,5,8.9512701,8.8396711,0,25,2,38.634537,0,2,2,2019,10,0,40,45,1,0,0,18.546501,18.546501,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.37,54.8,8.333333333333334,1,1,0,0,11,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 -5166,6374,11459,-9,11456,11458,1,0,16,0,1,0,2,2,-9,0,3,0,4.2069592,4.0366302,0,0,-943.37573,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.2626643,0,44.7,53.68,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,620.25,300421.84,140249.67,327956.66,171833.86,3449.4854 -5167,6375,11460,11461,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7753177,7.7531238,48,0,-16.70363,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5234747,7.8839025,60.45,43.75,55.36,51.57,8.333333333333334,1,1,0,0,0,10,3,1,129,1053001,678509.63,270773.69,0,2452.9824 -5167,6375,11461,11460,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,48,0,-5.2019448,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,60.45,43.75,8.333333333333334,1,1,0,0,0,10,3,1,129,1053001,678509.63,270773.69,0,2452.9824 -5168,6376,11462,-9,-9,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1139.2336,0,-9,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,22.83,25.08,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,1187,-186877.63,0,0,0,1924.2964 -5169,6377,11463,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1011.4283,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,20.36,36.79,-9,-9,0,1,1,1,1,0,11,1,1,457,96745.906,0,0,0,223.40163 -5170,6378,11464,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.5831852,7.774035,0,0,0,-997.18188,0,1,1,2019,6,2,27,24,1,2,0,12.141096,12.141096,0,0,0,0,0,1,1,0,0,0,53.02,53.93,-9,-9,8.333333333333334,1,1,0,0,7,8,3,0,3425,140258.73,35568.438,0,0,987.84692 -5170,6379,11465,-9,11464,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8887997,7.5981188,0,0,0,-1092.8376,0,2,-9,2019,10,0,35,42,1,0,1,7.3203268,7.3203268,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,956,-488887.97,0,0,0,1029.707 -5170,6380,11466,-9,11464,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-912.58228,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,4.4270635,0,47,59,-9,-9,7,1,1,0,0,0,8,1,0,262,0,0,0,0,-352.28284 -5171,6381,11467,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.4856386,8.4378986,6.9645486,0,0,-992.27087,0,2,2,2019,3,0,36,36,1,0,0,19.75563,19.75563,0,0,0,0,0,0,0,0,4.3190932,7.3619547,60.02,56.42,-9,-9,10,3,4,0,0,5,8,5,0,766,671357.75,471128.13,245261.67,44613.871,2074.5698 -5171,6382,11468,-9,11467,-9,1,0,27,0,0,0,1,1,-9,0,3,8.2451296,8.8665752,0,0,0,-1111.8567,0,2,2,2019,17,5,41,40,1,5,1,13.951503,13.951503,0,0,0,0,0,0,0,0,0,0,26.71,57.2,-9,-9,5,3,4,0,0,5,8,4,0,371,179984.13,-3333.3088,0,0,1993.5118 -5171,6383,11469,-9,11467,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1458273,8.4288435,0,0,0,-865.6806,0,2,2,2019,18,7,35,35,1,7,1,14.063691,14.063691,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,5,3,4,0,0,4,8,4,0,262,-128475.62,9162.3115,0,0,1080.1646 -5172,6384,11470,11471,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.4041557,6.4933386,42,2,42.524654,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2222962,6.3359628,57.59,46.65,58.15,52.91,8.333333333333334,1,1,0,0,0,11,3,1,542,1482345,297450.97,509557.63,0,2506.4187 -5172,6384,11471,11470,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.349833,6.9908247,42,-2,-1.3392739,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5503898,6.775815,58.15,52.91,57.59,46.65,8.333333333333334,1,1,0,0,2,11,3,1,542,1482345,297450.97,509557.63,0,2506.4187 -5173,6385,11472,11475,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,0,0,0,2,2,21.100498,0,-9,-9,2019,9,0,0,12,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,46.08,57.2,8,2,3,1,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 -5173,6385,11473,-9,11475,11472,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.0781,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 -5173,6385,11474,-9,11475,11472,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.8584,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 -5173,6385,11475,11472,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,8.3280115,8.0813856,0,9,-2,37.491245,0,-9,-9,2019,12,0,8,0,1,0,0,63.469559,63.469559,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51,56,8.333333333333334,2,3,0,0,7,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 -5173,6385,11476,-9,11475,11472,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.9785,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,419.20001,25986.943,41441.59,0,0,2631.1499 -5174,6386,11477,11478,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8406482,7.1614509,6,-2,150.59901,0,2,3,2019,12,0,0,0,4,0,0,0,0,1,0,.14759363,0,0,1,1,0,1.2095568,7.1398139,57.24,41.16,55.69,45.86,8.333333333333334,1,1,0,0,0,5,4,1,983,829213.75,710563.5,115964.2,0,2895.0925 -5174,6386,11478,11477,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.3980055,8.0086555,6,2,119.56046,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,.94636524,0,0,1,1,0,2.3880694,8.0101881,55.69,45.86,57.24,41.16,8.333333333333334,1,1,0,0,0,5,4,1,983,829213.75,710563.5,115964.2,0,2895.0925 -5175,6387,11479,11480,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3233442,8.203826,0,30,1,-111.31307,0,2,2,2019,6,0,25,27,1,0,0,17.532049,17.532049,0,0,0,0,0,0,0,0,0,0,57.33,53.46,42.87,53.12,8.333333333333334,1,1,0,0,13,9,5,1,338.5,1305754.3,1090821.3,315829.56,21261.482,4458.3623 -5175,6387,11480,11479,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.7288809,8.9538746,0,30,-1,22.554087,0,1,1,2019,12,1,40,39,1,1,0,24.272133,24.272133,0,0,0,0,0,0,0,0,3.1500065,0,42.87,53.12,57.33,53.46,3.333333333333333,1,1,0,0,13,9,5,1,338.5,1305754.3,1090821.3,315829.56,21261.482,4458.3623 -5176,6388,11481,11482,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,8.0351648,7.9558134,0,7,-6,25.377602,0,-9,-9,2019,13,3,22,20,1,3,0,13.877612,13.877612,0,0,0,0,0,1,1,0,2.7649975,0,49.91,58.02,57.16,56.15,8.333333333333334,1,1,0,0,9,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 -5176,6388,11482,11481,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,7.8239126,8.0929079,0,14,6,48.79026,0,3,3,2019,9,1,37,37,1,1,0,6.8546271,6.8546271,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.91,58.02,5,1,1,0,0,6,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 -5176,6388,11483,-9,11481,11482,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2058,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 -5176,6388,11484,-9,11481,11482,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.774,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,669.25,55448.539,64190.242,0,0,2582.3611 -5177,6389,11485,-9,11488,11486,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-885.80591,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 -5177,6389,11486,11488,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,8.4193153,8.3529921,0,7,3,-44.364117,0,-9,-9,2019,10,0,45,50,1,0,0,10.781001,10.781001,0,0,0,0,0,1,1,0,5.4278235,0,51.83,57.2,57.33,53.46,8.333333333333334,1,1,0,0,5,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 -5177,6389,11487,-9,11488,11486,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-895.63446,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 -5177,6389,11488,11486,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,8.0605898,7.8165097,0,19,-3,40.135124,0,2,2,2019,8,0,30,37,1,0,0,12.07851,12.07851,0,0,0,0,0,1,1,0,4.1679525,0,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 -5177,6389,11489,-9,11488,11486,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.5562,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,618.40002,128615.82,124026.84,229646.64,162620.48,3305.4524 -5178,6390,11490,-9,-9,-9,1,0,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-940.45386,1,3,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,38.75,58.93,-9,-9,8.333333333333334,2,3,0,0,2,8,1,0,1333,30851.996,0,0,0,0 -5179,6391,11491,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-971.42383,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,6,1,0,995,-94341.234,0,0,0,1634.1649 -5180,6392,11492,11493,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,4.1565347,3.653259,14,-2,37.245857,0,3,2,2019,24,12,0,0,4,12,0,0,0,1,3.7009616,5.698626,18.977991,7,1,1,0,4.3319845,3.5887942,27.15,39.31,38.89,16.47,3.333333333333333,1,1,0,0,0,2,5,1,389,2249540.5,1245460.3,459523.5,0,10387.242 -5180,6392,11493,11492,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,8.7400532,9.1744928,14,2,-55.486443,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,2.5017366,2.3276119,24.068666,7,1,1,0,9.656395,8.4262972,38.89,16.47,27.15,39.31,6.666666666666667,1,1,0,0,1,2,5,1,389,2249540.5,1245460.3,459523.5,0,10387.242 -5181,6393,11494,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.3867025,8.6526327,6.9299865,0,0,-1073.0601,0,2,2,2019,16,4,30,50,1,4,0,19.497684,19.497684,0,0,0,0,0,1,1,0,7.130897,0,46.08,57.2,-9,-9,0,1,1,0,1,7,8,5,1,247,71374.773,0,0,0,3175.0115 -5182,6394,11495,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,6.15974,6.3856897,0,0,-876.336,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9898036,6.1050925,50.56,43.32,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,658,161567.61,16443.781,3960.1472,0,1004.9466 -5183,6395,11496,11497,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.0212831,6.9949174,0,21,-3,-36.957653,0,3,3,2019,10,1,50,40,1,1,0,3.2975678,3.2975678,0,0,0,0,0,1,1,0,2.5941317,0,44.26,59.43,57.16,56.15,8.333333333333334,1,1,0,0,9,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 -5183,6395,11497,11496,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,7.1263471,6.8737364,0,20,3,-106.30377,0,2,2,2019,11,0,42,40,1,0,0,3.4189432,3.4189432,0,0,0,0,0,1,1,0,3.945585,0,57.16,56.15,44.26,59.43,8.333333333333334,1,1,0,0,8,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 -5183,6395,11498,-9,11496,11497,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.8296,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 -5183,6395,11499,-9,11496,11497,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1020.8235,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.8610163,0,69.46000000000001,28.64,-9,-9,10,1,1,0,0,9,4,2,1,1082.25,321085.09,-13622.221,0,0,1157.9369 -5184,6396,11500,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1092.355,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,59.7,32.49,-9,-9,8.333333333333334,1,1,1,0,4,12,2,1,551,346805.47,0,210727.48,0,0 -5185,6397,11501,11503,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,0,0,0,8,-2,27.884718,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,49.04,55.86,5,1,1,0,0,0,4,3,1,1084,-12722.323,4482.1392,104519.78,54601.094,1919.0206 -5185,6397,11502,-9,11501,11503,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.29211,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1084,-12722.323,4482.1392,104519.78,54601.094,1919.0206 -5185,6397,11503,11501,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,8.0991497,8.0788984,0,8,2,-58.852043,0,3,2,2019,7,0,40,40,1,0,0,10.464396,10.464396,0,0,0,0,0,1,1,0,0,0,49.04,55.86,50.28,51.35,5,1,1,0,0,9,4,3,1,1084,-12722.323,4482.1392,104519.78,54601.094,1919.0206 -5186,6398,11504,11505,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.3533173,8.0152111,0,27,6,166.28188,-9,3,3,2019,10,0,47,0,1,1,0,10.604188,10.604188,0,0,0,0,0,0,0,0,0,0,50,49,47,49,7,1,1,0,0,9,13,4,0,365.5,345623.31,236502.03,141393.75,0,1741.5205 -5186,6398,11505,11504,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.1685462,7.1710749,0,27,-6,-47.547119,0,3,3,2019,12,0,25,20,1,2,0,8.9861298,8.9861298,0,0,0,0,0,0,0,0,0,0,47,49,50,49,7,1,1,0,0,10,13,4,0,365.5,345623.31,236502.03,141393.75,0,1741.5205 -5187,6399,11506,-9,11507,11509,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.8277,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 -5187,6399,11507,11509,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4567299,8.2136784,0,15,0,148.60741,0,1,1,2019,7,0,28,29,1,0,0,19.142035,19.142035,0,0,0,0,0,0,0,0,3.8526103,0,54.2,57.49,52.23,55.6,10,1,1,0,0,12,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 -5187,6399,11508,-9,11507,11509,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.47253,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 -5187,6399,11509,11507,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.3650465,9.8848429,0,15,0,-41.255348,0,2,2,2019,11,2,50,47,1,2,0,35.444855,35.444855,0,0,0,0,0,0,0,0,3.0953679,0,52.23,55.6,54.2,57.49,8.333333333333334,1,1,0,0,12,9,5,1,801,308768.53,82983.109,179898.69,121787.63,10277.757 -5188,6400,11510,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.6740932,7.5513868,0,0,-1081.1433,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.8600421,48.28,60.18,-9,-9,5,1,1,0,0,6,2,3,1,800,715211.69,373274.41,263342.44,0,1439.2283 -5189,6401,11511,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.2239585,6.6837072,0,0,-1034.2192,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.4995711,3.254817,21.189369,0,1,1,0,0,6.4826617,54.38,28.01,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,799,495626.16,179099,188377.2,0,1140.4612 -5190,6402,11512,-9,11513,11514,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-999.87207,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,8,5,1,702.66669,2194115.5,1125078.4,439072.5,0,10695.939 -5190,6402,11513,11514,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,6.3738322,6.127327,0,8,0,-8.4950905,0,-9,-9,2019,10,0,20,15,1,0,0,2.5873399,2.5873399,0,0,0,0,0,0,0,0,8.6649694,0,60.87,44.96,55.36,51.57,8.333333333333334,1,1,0,0,6,8,5,1,702.66669,2194115.5,1125078.4,439072.5,0,10695.939 -5190,6402,11514,11513,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.5484772,9.454978,0,26,0,62.36235,0,2,1,2019,10,1,45,47,1,1,0,41.271469,41.271469,0,0,0,0,0,0,0,0,2.8212552,0,55.36,51.57,60.87,44.96,8.333333333333334,1,1,0,0,11,8,5,1,702.66669,2194115.5,1125078.4,439072.5,0,10695.939 -5190,6403,11515,-9,11513,11514,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1052.0615,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.262248,0,56.19,53.98,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,419,0,0,0,0,-184.64185 -5191,6404,11516,11517,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.1811123,8.3590946,44,2,-7.8806543,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6012216,8.2616024,51,48,64.98,31.99,7,1,1,0,0,0,13,5,1,1680.5,920800.88,480284.72,406577.06,0,5214.2075 -5191,6404,11517,11516,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.3338432,8.7322826,44,-2,103.94352,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1877384,8.1469727,64.98,31.99,51,48,1.666666666666667,1,1,0,0,4,13,5,1,1680.5,920800.88,480284.72,406577.06,0,5214.2075 -5192,6405,11518,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-980.3927,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,7,1,1,0,0,0,13,1,0,1169,308791.13,0,166104.13,0,1622.5038 -5193,6406,11519,11520,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5780363,7.1770544,0,6,-4,33.476738,0,2,2,2019,18,7,42,40,1,7,0,3.6572711,3.6572711,0,0,0,0,0,0,0,0,0,0,48,46.89,51,48,3.333333333333333,1,1,0,0,7,11,4,1,1630.5,137775.67,302393.22,184017.97,0,3184.5959 -5193,6406,11520,11519,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0980577,8.4510908,7.0045547,6,4,103.16445,0,3,3,2019,15,3,41,41,1,3,0,10.298602,10.298602,0,0,0,0,0,0,0,0,4.885407,6.6622839,51,48,48,46.89,5,1,1,0,0,7,11,4,1,1630.5,137775.67,302393.22,184017.97,0,3184.5959 -5194,6407,11521,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-975.44287,0,-9,2,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,66.84999999999999,11.24,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,114,-165327.16,0,0,0,1578.3121 -5195,6408,11522,-9,11523,11524,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1145.5305,-9,2,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.50399363,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,407.33334,438679.19,337880.13,171430.28,0,1896.0209 -5195,6408,11523,11524,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.8101258,7.9313684,6.0570216,35,-7,-58.918808,0,2,2,2019,14,4,37,35,1,4,0,7.7668509,7.7668509,0,0,0,0,7,1,1,0,6.2524981,0,40.58,60.95,55.09,55.87,1.666666666666667,1,1,0,1,11,10,3,1,407.33334,438679.19,337880.13,171430.28,0,1896.0209 -5195,6408,11524,11523,-9,-9,1,1,61,0,1,0,3,3,-9,0,5,7.1979113,7.1243563,0,35,7,-111.23255,0,1,1,2019,11,0,50,-9,1,0,0,2.9852908,2.9852908,0,0,0,0,2,1,1,0,0,0,55.09,55.87,40.58,60.95,8.333333333333334,1,1,0,0,11,10,3,1,407.33334,438679.19,337880.13,171430.28,0,1896.0209 -5195,6409,11525,-9,11523,11524,1,1,21,0,1,0,2,2,-9,0,4,7.9033298,8.0464973,0,0,0,-965.93463,0,2,3,2019,9,0,37,40,1,0,1,8.7501049,8.7501049,0,0,0,0,0,1,1,0,1.5897871,0,54.2,57.49,-9,-9,5,1,1,0,0,2,10,4,1,505,-333647.06,0,0,0,1262.1031 -5196,6410,11526,11527,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,0,0,5,22,0,0,-9,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,39.71,61.59,8,1,1,1,0,0,10,1,1,804,-38951.57,0,131942.52,0,553.21954 -5196,6410,11527,11526,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,0,0,0,5,-22,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,39.71,61.59,54,53,6.666666666666667,4,5,1,0,0,10,1,1,804,-38951.57,0,131942.52,0,553.21954 -5197,6411,11528,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.4514523,9.2538118,0,0,0,-840.22729,0,2,2,2019,18,5,40,45,1,5,0,32.718357,32.718357,0,0,0,0,0,1,1,0,9.2037239,0,38.2,62.06,-9,-9,3.333333333333333,1,1,0,0,9,7,5,1,221,980451.88,130233.63,493210,0,6680.958 -5198,6412,11529,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.7359524,9.5254154,0,0,0,-940.49225,0,-9,-9,2019,16,6,37,60,1,6,0,55.976711,55.976711,0,0,0,0,0,0,0,0,2.174309,0,38.22,58.43,-9,-9,1.666666666666667,1,1,0,0,9,9,5,1,712,2459829,1518856.5,715020.25,10736.451,19760.49 -5199,6413,11530,11531,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3702021,8.2546787,0,7,1,-62.486534,-9,-9,-9,2019,9,0,42,0,1,1,0,12.563231,12.563231,0,0,0,0,0,0,0,0,5.3796573,0,52,55,53.99,50.71,8,1,1,0,0,1,4,5,1,1210.5,3169.2891,156527.17,105057.14,29075.52,3110.7236 -5199,6413,11531,11530,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.155714,7.8559809,0,27,-1,-23.230188,0,2,3,2019,9,1,40,40,1,1,0,10.121052,10.121052,0,0,0,0,0,0,0,0,0,0,53.99,50.71,52,55,8.333333333333334,1,1,0,0,9,4,5,1,1210.5,3169.2891,156527.17,105057.14,29075.52,3110.7236 -5200,6414,11532,-9,11534,11533,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.97925,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,4,1,705.66669,12762.981,-2732.7175,126519.59,93440.539,2889.364 -5200,6414,11533,11534,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.2484207,8.5296183,0,9,2,-7.3540249,0,-9,-9,2019,7,0,52,50,1,0,0,8.2611923,8.2611923,0,0,0,0,2,1,1,0,0,0,57.67,45.25,54.69,57.47,8.333333333333334,1,1,0,0,9,5,4,1,705.66669,12762.981,-2732.7175,126519.59,93440.539,2889.364 -5200,6414,11534,11533,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,7.7229514,7.9541287,0,9,-2,7.2048545,0,2,2,2019,7,0,15,12,1,0,0,24.19331,24.19331,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.67,45.25,8.333333333333334,1,1,0,0,11,5,4,1,705.66669,12762.981,-2732.7175,126519.59,93440.539,2889.364 -5201,6415,11535,11536,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.9337664,7.2462435,45,1,-27.084261,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,4.0977006,7.0320306,43.45,54.44,48.76,53.24,6.666666666666667,1,1,0,0,5,6,3,1,840,1859806.4,155606.91,413971.63,0,2066.2131 -5201,6415,11536,11535,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,6.9534492,6.8121076,45,-1,-54.665924,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,5.1670213,6.8798661,48.76,53.24,43.45,54.44,8.333333333333334,1,1,0,0,5,6,3,1,840,1859806.4,155606.91,413971.63,0,2066.2131 -5202,6416,11537,11538,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,47,-3,-51.591137,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,5.6870136,0,52.82,53.97,59.46,46.99,8.333333333333334,1,1,0,0,8,5,4,1,1466.5,1152646.3,961224.44,173499.94,0,3640.458 -5202,6416,11538,11537,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.3630104,8.7317762,9,3,-55.135746,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0647855,8.7225046,59.46,46.99,52.82,53.97,8.333333333333334,1,1,0,0,4,5,4,1,1466.5,1152646.3,961224.44,173499.94,0,3640.458 -5202,6417,11539,-9,11537,11538,1,1,38,0,0,0,2,2,-9,0,3,9.1121674,9.046773,0,0,0,-1054.6377,0,1,1,2019,11,0,49,48,1,0,0,26.194687,26.194687,0,0,0,0,0,1,1,0,0,0,44.15,39.28,-9,-9,3.333333333333333,1,1,0,0,9,5,5,1,222,81802.883,-160306.02,121472.4,112430.82,3683.3247 -5202,6418,11540,-9,11537,11538,1,1,35,0,0,0,2,2,-9,0,3,8.8253851,8.4533758,0,0,0,-1034.8975,0,1,1,2019,6,0,37,37,1,0,0,17.600374,17.600374,0,0,0,0,0,1,1,0,4.1474218,0,48.14,53.42,-9,-9,6.666666666666667,1,1,0,0,8,5,5,1,615,-31226.219,-20283.041,0,0,2430.0371 -5202,6419,11541,-9,11537,11538,1,1,33,0,0,0,3,3,-9,0,3,0,0,0,0,0,-911.31683,0,1,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.27,45.41,-9,-9,5,1,1,0,0,0,5,1,1,541,137054.86,0,0,0,1162.7982 -5203,6420,11542,11543,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4826298,8.5547142,0,7,-3,20.497702,0,-9,-9,2019,11,0,40,40,1,0,0,16.079412,16.079412,0,0,0,0,0,0,0,0,0,0,49.71,49.91,38.63,63.11,8.333333333333334,1,1,0,0,10,12,5,1,680.5,313777.78,206322.02,263736.53,134141.75,3698.2 -5203,6420,11543,11542,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.4537916,8.6036224,0,7,3,6.2139688,0,-9,-9,2019,13,3,38,39,1,3,0,13.496728,13.496728,0,0,0,0,0,0,0,0,0,0,38.63,63.11,49.71,49.91,6.666666666666667,1,1,0,0,8,12,5,1,680.5,313777.78,206322.02,263736.53,134141.75,3698.2 -5204,6421,11544,-9,11546,11545,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-904.91956,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 -5204,6421,11545,11546,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,9.5919638,9.3796816,0,10,6,-54.381275,0,-9,-9,2019,10,0,50,50,1,0,0,39.715023,39.715023,0,0,0,0,0,0,0,0,0,0,53.14,51.28,45.91,59.89,8.333333333333334,1,1,0,0,9,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 -5204,6421,11546,11545,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.6473007,6.7832026,0,20,-6,-119.29286,0,2,3,2019,12,0,18,0,1,0,0,6.8081613,6.8081613,0,0,0,0,0,0,0,0,.24771953,0,45.91,59.89,53.14,51.28,6.666666666666667,1,1,0,0,11,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 -5204,6421,11547,-9,11546,11545,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7288,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,1266.75,1763112.4,427071.69,577831.19,-7276.0498,15618.455 -5205,6422,11548,11549,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.2920699,6.5176835,9,11,-78.648575,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,6.5318766,53.68,45.47,56.45,41.98,8.333333333333334,1,1,0,0,0,7,2,1,284.5,368325.13,129044.56,132721.31,0,2240.7266 -5205,6422,11549,11548,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,9,-11,-67.626419,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.45,41.98,53.68,45.47,8.333333333333334,1,1,0,0,0,7,2,1,284.5,368325.13,129044.56,132721.31,0,2240.7266 -5206,6423,11550,-9,11551,11553,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.40143,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 -5206,6423,11551,11553,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.4023266,8.3971577,0,8,-6,8.7245932,0,2,2,2019,7,0,26,32,1,0,0,20.59379,20.59379,0,0,0,0,0,1,1,0,6.3587723,0,52.99,51.28,52,54.51,8.333333333333334,1,1,0,0,10,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 -5206,6423,11552,-9,11551,11553,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.1956,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 -5206,6423,11553,11551,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.8696117,8.8657742,0,8,6,-3.337095,0,3,3,2019,8,0,45,90,1,0,0,20.323792,20.323792,0,0,0,0,0,1,1,0,5.8349204,0,52,54.51,52.99,51.28,6.666666666666667,1,1,0,0,10,4,5,1,499,314250.06,189169.34,207535.7,86692.813,4801.856 -5207,6424,11554,11555,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,8,0,-168.95105,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,58.15,52.91,7,1,1,0,0,0,6,3,1,497.5,1014360,506674.63,139814.66,0,3588.2361 -5207,6424,11555,11554,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.8266277,7.6634912,48,0,-90.440933,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.5825257,7.6478801,58.15,52.91,51,46,10,1,1,0,0,0,6,3,1,497.5,1014360,506674.63,139814.66,0,3588.2361 -5208,6425,11556,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.7925062,7.5707726,0,0,-1044.0045,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5553129,7.8271561,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,449,267179.22,347786.5,152683.05,0,1906.3981 -5209,6426,11557,11558,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7189331,7.9217362,0,41,-2,125.06516,0,3,2,2019,8,0,50,35,1,0,0,5.566833,5.566833,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,543,687010.13,573992,111277.67,44421.289,5201.7393 -5209,6426,11558,11557,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,8.4999533,9.0643358,7.3531828,6,2,14.986287,0,3,1,2019,6,0,42,37,1,0,0,12.582248,12.582248,0,0,0,0,0,0,0,0,8.2180882,7.3656631,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,9,5,5,1,543,687010.13,573992,111277.67,44421.289,5201.7393 -5210,6427,11559,-9,11561,11560,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.48041,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,1193.6666,-144329.97,-19603.234,133719.08,144644.94,4359.7817 -5210,6427,11560,11561,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.1142216,9.3396673,0,7,1,5.1526046,0,2,2,2019,4,0,68,62,1,0,0,16.996275,16.996275,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,0,1193.6666,-144329.97,-19603.234,133719.08,144644.94,4359.7817 -5210,6427,11561,11560,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.5481362,7.7371459,0,7,-1,-70.829208,0,2,2,2019,8,0,27,27,1,0,0,9.1823292,9.1823292,0,0,0,0,0,1,1,0,3.6594031,0,57.16,56.15,51.14,60.45,10,1,1,0,0,9,4,5,0,1193.6666,-144329.97,-19603.234,133719.08,144644.94,4359.7817 -5211,6428,11562,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-944.55042,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.05,54.02,-9,-9,8.333333333333334,1,1,1,1,0,7,1,0,2518,218496.47,0,0,0,573.78711 -5212,6429,11563,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4687214,8.0540276,0,0,0,-1003.8358,0,1,1,2019,5,0,35,35,1,0,0,17.076988,17.076988,0,0,0,0,0,1,1,0,2.4406869,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,0,5,2,4,0,210,298524.09,-26491.262,0,0,1164.0431 -5213,6430,11564,11565,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,10,7,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.7,34.03,32.93,24.58,6.666666666666667,1,1,0,0,4,11,1,0,833.5,0,0,0,0,1382.2573 -5213,6430,11565,11564,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,10,-7,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.93,24.58,61.7,34.03,5,1,1,0,0,0,11,1,0,833.5,0,0,0,0,1382.2573 -5214,6431,11566,11567,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,.13467892,.092309095,0,8,2,10.9974,0,3,2,2019,21,6,45,45,1,6,0,.0003842212,.0003842212,0,0,0,0,0,0,0,0,0,0,49.41,19.94,50.03,52.62,0,1,1,0,0,8,7,2,1,666.5,581324.13,0,299299.75,0,214.41193 -5214,6431,11567,11566,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,8,-2,72.769897,0,3,3,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,120,0,0,0,0,0,50.03,52.62,49.41,19.94,5,1,1,0,0,0,7,2,1,666.5,581324.13,0,299299.75,0,214.41193 -5215,6432,11568,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,7.2866273,6.842134,0,0,0,-1130.7623,0,2,2,2019,20,7,17,35,1,7,0,9.0992403,9.0992403,0,0,0,0,0,1,1,0,0,0,38.01,34.13,-9,-9,8.333333333333334,4,5,0,0,6,8,2,0,2599,-60684.082,-61712.336,0,0,910.18225 -5215,6433,11569,-9,11568,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-904.15527,1,2,2,2019,6,0,0,20,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,824,-98217.586,0,0,0,0 -5215,6434,11570,-9,11568,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-881.24213,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.53,49.72,-9,-9,6.666666666666667,4,5,0,0,1,8,1,0,599,0,0,0,0,-521.45752 -5215,6435,11571,-9,11568,-9,1,0,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1050.8387,1,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.49,59.98,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,589,-246096.83,0,0,0,0 -5215,6436,11572,-9,11568,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-934.07086,-9,2,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,47.52,58.09,-9,-9,8.333333333333334,4,5,0,0,2,8,1,0,450,0,0,0,0,347.53238 -5216,6437,11573,11574,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,5.2344542,5.1840291,59,3,-63.194305,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,1.6554251,0,19.47081,2,1,1,0,5.9205923,5.2943077,58.73,16.63,53.62,16.43,6.666666666666667,1,1,0,0,0,7,2,1,533.5,367379.06,258786.97,201700.53,0,2220.595 -5216,6437,11574,11573,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.1124415,6.9434257,59,-3,60.420456,0,3,-9,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,7.4072375,53.62,16.43,58.73,16.63,6.666666666666667,1,1,0,0,0,7,2,1,533.5,367379.06,258786.97,201700.53,0,2220.595 -5217,6438,11575,11576,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.626121,8.1394014,8,3,24.849543,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4599004,56.64,44.13,49.35,59.64,8.333333333333334,1,1,0,0,9,9,3,1,215.5,758194.44,436013.97,340352.5,0,2314.0864 -5217,6438,11576,11575,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,8,-3,45.163902,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,3.8253775,0,49.35,59.64,56.64,44.13,8.333333333333334,1,1,0,0,4,9,3,1,215.5,758194.44,436013.97,340352.5,0,2314.0864 -5218,6439,11577,11578,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.608675,6.427793,6,-1,174.10342,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,0,6.9421663,34.42,55.98,38.99,39.26,6.666666666666667,1,1,0,0,0,13,2,1,275.5,248430.25,162170.97,160926.53,0,1856.7629 -5218,6439,11578,11577,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,6,1,-3.2608995,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.8890231,0,0,0,1,1,0,0,0,38.99,39.26,34.42,55.98,5,1,1,0,0,0,13,2,1,275.5,248430.25,162170.97,160926.53,0,1856.7629 -5219,6440,11579,11580,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.026454,8.2136765,6,7,40.569805,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3709629,7.9427624,57.9,51.84,41.35,55.01,8.333333333333334,1,1,0,0,0,7,5,1,1040.5,1113852.5,326333.75,416064.22,0,4878.4683 -5219,6440,11580,11579,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.1119623,8.6140852,0,6,-7,-156.09114,0,1,1,2019,11,0,57,58,1,0,0,19.360979,19.360979,0,0,0,.096804202,0,1,1,0,6.6842632,0,41.35,55.01,57.9,51.84,8.333333333333334,1,1,0,0,7,7,5,1,1040.5,1113852.5,326333.75,416064.22,0,4878.4683 -5219,6441,11581,11582,11580,11579,1,1,28,0,0,0,2,2,-9,0,4,6.7112412,6.6129231,0,1,4,34.407425,0,1,1,2019,14,3,38,30,1,3,0,2.5811973,2.5811973,0,0,0,0,0,1,1,0,2.9918282,0,47.66,55.13,43.93,55.38,6.666666666666667,1,1,0,0,4,7,2,1,550,173465.77,0,0,0,1343.6803 -5219,6441,11582,11581,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.6573615,7.1307287,0,1,-4,51.804337,-9,-9,-9,2019,7,0,15,0,1,0,0,11.589085,11.589085,0,0,0,0,0,1,1,0,2.5634739,0,43.93,55.38,47.66,55.13,8.333333333333334,1,1,0,0,6,7,2,1,550,173465.77,0,0,0,1343.6803 -5220,6442,11583,11584,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7481222,8.4348793,0,31,6,5.4819608,0,2,2,2019,12,0,46,50,1,0,0,11.5965,11.5965,0,0,0,0,0,0,0,0,7.4166017,0,41.3,60.77,57.74,44.14,8.333333333333334,1,1,0,0,10,2,5,1,455,1150614.5,279118,290264.38,0,5246.6572 -5220,6442,11584,11583,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,9.0759058,9.0033579,0,31,-6,-142.87534,0,2,2,2019,7,0,30,27,1,0,0,27.929056,27.929056,0,0,0,0,2,0,0,0,0,0,57.74,44.14,41.3,60.77,8.333333333333334,1,1,0,0,10,2,5,1,455,1150614.5,279118,290264.38,0,5246.6572 -5221,6443,11585,11586,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.3564758,9.6027212,0,24,1,64.588531,0,1,2,2019,14,5,31,31,1,5,0,44.055187,44.055187,0,0,0,0,0,0,0,0,1.2368673,0,49.91,55.35,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,783.5,1420648.9,333711.97,684449,220039.98,11211.643 -5221,6443,11586,11585,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.561655,9.7306585,0,24,-1,-27.315004,0,2,2,2019,7,0,50,50,1,0,0,44.299683,44.299683,0,0,0,0,0,0,0,0,1.5841159,0,57.06,57.76,49.91,55.35,8.333333333333334,1,1,0,0,11,12,5,1,783.5,1420648.9,333711.97,684449,220039.98,11211.643 -5221,6444,11587,-9,11585,11586,1,0,20,0,0,0,2,2,-9,0,5,0,7.2420573,6.937654,0,0,-940.59906,1,1,1,2019,9,0,0,16,2,0,1,0,0,0,0,0,0,0,0,0,0,7.2934861,0,46.59,59.97,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,256,-38071.203,30157.957,0,0,674.59943 -5222,6445,11588,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1002.6528,0,3,2,2019,25,12,0,2,3,12,0,0,0,0,0,0,0,0,0,0,0,3.6260867,0,37.78,39.8,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,816,-110644.17,0,0,0,190.95114 -5222,6446,11589,-9,11588,-9,1,1,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1038.5947,0,3,3,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,27.09,48.71,-9,-9,1.666666666666667,1,1,1,0,6,6,1,1,437,-235414.64,0,0,0,0 -5223,6447,11590,-9,11592,11593,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0576,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 -5223,6447,11591,-9,11592,11593,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.7926,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 -5223,6447,11592,11593,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,8.0623083,8.0401936,0,7,-6,-20.978615,0,2,3,2019,12,0,35,40,1,0,0,10.959587,10.959587,0,0,0,0,0,1,1,0,0,0,44.7,53.68,46.08,57.2,6.666666666666667,1,1,0,0,8,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 -5223,6447,11593,11592,-9,-9,1,1,38,0,2,0,3,3,-9,0,3,8.4506359,8.5147886,0,7,6,122.0881,0,-9,-9,2019,11,0,55,55,1,0,0,6.6137915,6.6137915,0,0,0,0,0,1,1,0,0,0,46.08,57.2,44.7,53.68,8.333333333333334,1,1,0,0,8,8,4,1,566.5,467240.84,-5741.9658,673815.94,291573.03,3486.2197 -5224,6448,11594,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-912.61108,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,14.812014,0,0,1,0,1,0,0,43.26,34.33,-9,-9,3.333333333333333,1,1,0,1,7,7,1,1,174,-123086.22,0,0,0,591.03656 -5225,6449,11595,11596,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.6069431,8.9076786,5.4156084,1,-6,-14.777029,-9,1,1,2019,9,0,37,0,1,0,0,23.968201,23.968201,0,0,0,0,0,1,1,0,5.0973263,0,54.2,57.49,50.02,39.75,8.333333333333334,1,1,0,1,10,12,5,1,635,892776.13,742727.13,196913.8,34488.273,4409.5039 -5225,6449,11596,11595,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,7.7079759,7.3473125,1,6,17.891573,-9,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4429896,7.7006397,50.02,39.75,54.2,57.49,3.333333333333333,1,1,0,1,5,12,5,1,635,892776.13,742727.13,196913.8,34488.273,4409.5039 -5225,6450,11597,-9,11595,11596,1,0,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-940.32397,-9,2,1,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,7.5991459,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,300,374722.78,0,0,0,409.67392 -5226,6451,11598,11599,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.3467512,8.5646238,0,8,-15,-53.603317,0,3,3,2019,12,0,50,38,1,0,0,11.493961,11.493961,0,0,0,0,0,0,0,0,8.5845757,0,54.1,59.11,29.14,59.74,8.333333333333334,1,1,0,0,10,5,4,1,924.5,345674.84,169704.38,180071.97,62998.949,3414.8896 -5226,6451,11599,11598,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.5675879,7.5728621,0,8,15,39.853035,0,2,2,2019,16,5,31,20,1,5,0,6.3522587,6.3522587,0,0,0,0,0,0,0,0,.28679419,0,29.14,59.74,54.1,59.11,8.333333333333334,1,1,0,0,11,5,4,1,924.5,345674.84,169704.38,180071.97,62998.949,3414.8896 -5227,6452,11600,11603,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,8.0886116,8.0910606,0,9,5,24.247141,0,2,2,2019,14,2,48,44,1,2,0,8.8375607,8.8375607,0,0,0,0,0,1,1,0,0,0,39.41,49.43,48.76,53.24,8.333333333333334,1,1,0,0,12,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 -5227,6452,11601,-9,11603,11600,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7806,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 -5227,6452,11602,-9,11603,11600,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.08722,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 -5227,6452,11603,11600,-9,-9,1,0,40,1,2,0,2,2,-9,1,4,6.6522346,6.7964377,0,9,-5,-19.498545,0,2,2,2019,12,0,16,16,1,0,0,5.4076629,5.4076629,0,0,0,0,27,1,1,0,0,0,48.76,53.24,39.41,49.43,8.333333333333334,1,1,0,0,11,10,3,1,487.5,295634.91,70505.156,180447.7,130788.31,2416.4807 -5228,6453,11604,11606,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.9047279,9.3029203,0,7,1,-39.223366,0,2,2,2019,8,1,38,35,1,1,0,21.958975,21.958975,0,0,0,0,0,1,1,0,6.4618926,0,55.14,47.62,46.5,58.26,6.666666666666667,1,1,0,0,9,4,5,1,639,-29104.504,114033.46,133990.41,91264.422,3971.9189 -5228,6453,11605,-9,11606,11604,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.4468,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,639,-29104.504,114033.46,133990.41,91264.422,3971.9189 -5228,6453,11606,11604,-9,-9,1,0,36,0,1,0,1,1,-9,1,4,7.3844132,7.2652011,0,7,-1,16.905336,0,-9,-9,2019,12,0,16,14,1,0,0,8.6589804,8.6589804,0,0,0,0,110,1,1,0,0,0,46.5,58.26,55.14,47.62,6.666666666666667,1,1,0,0,6,4,5,1,639,-29104.504,114033.46,133990.41,91264.422,3971.9189 -5229,6454,11607,11608,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.0178518,8.996006,0,37,0,120.72337,0,2,2,2019,7,0,50,45,1,0,0,19.879486,19.879486,0,0,0,0,0,0,0,0,8.1323509,0,48.81,59.91,57.33,53.46,8.333333333333334,2,3,0,0,12,8,5,1,1094.5,1332793.8,469433.69,400053.63,0,4618.3018 -5229,6454,11608,11607,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.1679983,8.3715448,0,37,0,25.071632,0,-9,-9,2019,12,1,28,28,1,1,0,13.899176,13.899176,0,0,0,0,0,0,0,0,4.656158,0,57.33,53.46,48.81,59.91,8.333333333333334,1,1,0,0,10,8,5,1,1094.5,1332793.8,469433.69,400053.63,0,4618.3018 -5229,6455,11609,-9,11607,11608,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1090.1089,1,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.14,58.86,-9,-9,8.333333333333334,4,2,0,0,5,8,1,1,551,118510.39,0,0,0,173.32651 -5230,6456,11610,11611,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.9342108,8.9210443,0,17,13,-85.126175,0,2,2,2019,6,0,37,48,1,0,0,25.38376,25.38376,0,0,0,0,0,1,1,0,0,0,49.25,61.25,54.1,59.11,8.333333333333334,1,1,0,0,6,1,5,1,437.5,977959.5,415693.63,785760.13,417715.88,4287.5547 -5230,6456,11611,11610,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,8.3723335,8.2568417,0,17,-13,-57.053711,0,2,2,2019,7,0,38,35,1,0,0,12.178228,12.178228,0,0,0,0,2,1,1,0,3.7559841,0,54.1,59.11,49.25,61.25,8.333333333333334,1,1,0,0,8,1,5,1,437.5,977959.5,415693.63,785760.13,417715.88,4287.5547 -5231,6457,11612,11613,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,66,-4,-156.02402,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,72.35000000000001,17.84,53.82,41.27,10,1,1,0,0,0,10,3,1,707,845222.25,-62117.734,635294.25,0,1687.1616 -5231,6457,11613,11612,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,7.5055704,7.5411067,66,4,209.80043,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.919529,7.3436852,53.82,41.27,72.35000000000001,17.84,8.333333333333334,1,1,0,0,0,10,3,1,707,845222.25,-62117.734,635294.25,0,1687.1616 -5232,6458,11614,11615,11616,-9,1,1,47,0,0,0,1,1,-9,0,4,8.8400249,8.8179874,0,6,4,-65.301689,0,2,-9,2019,9,0,40,42,1,1,0,19.434717,19.434717,0,0,0,0,0,1,1,0,0,0,53,55,58.24,41.84,8,2,3,0,0,1,8,5,1,1090,667730.63,205802.41,655198.38,120066.73,4218.3779 -5232,6458,11615,11614,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2772236,8.4923677,0,24,-4,-106.11456,0,3,3,2019,11,0,44,42,1,0,0,15.160184,15.160184,0,0,0,0,0,1,1,0,5.752646,0,58.24,41.84,53,55,8.333333333333334,2,3,0,0,8,8,5,1,1090,667730.63,205802.41,655198.38,120066.73,4218.3779 -5232,6459,11616,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.1244,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,1,820,100126.63,0,0,0,329.72134 -5233,6460,11617,11618,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,65,1,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7977748,0,56,44,54,44,8,1,1,0,0,0,7,1,1,606,-202042.17,13342.603,0,0,337.97058 -5233,6460,11618,11617,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,65,-1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,13.760105,0,0,1,1,0,0,0,54,44,56,44,8,1,1,0,0,0,7,1,1,606,-202042.17,13342.603,0,0,337.97058 -5234,6461,11619,11622,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,7.8290348,8.1547823,0,16,3,-4.5222545,0,3,3,2019,11,0,42,46,1,2,0,8.714489,8.714489,0,0,0,0,0,1,1,0,0,0,47.84,49.53,45.54,41.38,8.333333333333334,2,3,0,0,8,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 -5234,6461,11620,-9,11622,11619,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1006.4371,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 -5234,6461,11621,-9,11622,11619,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.14899,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 -5234,6461,11622,11619,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3152637,8.2443943,0,16,-3,-114.63345,0,3,3,2019,4,0,47,47,1,0,0,9.2053556,9.2053556,0,0,0,0,0,1,1,0,0,0,45.54,41.38,47.84,49.53,8.333333333333334,2,3,0,0,9,10,4,1,361.5,170236.33,-7270.519,232881.36,28237.451,2967.9097 -5235,6462,11623,-9,11624,11625,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1239.8046,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 -5235,6462,11624,11625,-9,-9,1,0,24,1,2,0,2,2,-9,0,2,0,0,0,1,-1,-14.922944,-9,2,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,29.3,47.3,57.33,53.46,5,1,1,0,0,3,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 -5235,6462,11625,11624,-9,-9,1,1,25,1,2,0,2,2,-9,0,3,7.7395172,7.5663452,0,1,1,-50.942051,-9,-9,-9,2019,6,0,46,0,1,0,0,5.7662458,5.7662458,0,0,0,0,2,1,1,0,0,0,57.33,53.46,29.3,47.3,8.333333333333334,1,1,0,0,6,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 -5235,6462,11626,-9,11624,11625,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.6911,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,265.5,26901.852,-22784.059,0,0,1978.4291 -5236,6463,11627,11629,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.2355642,7.9948812,0,10,-1,-13.606662,0,-9,-9,2019,9,2,48,38,1,2,0,8.566184,8.566184,0,0,0,0,0,1,1,0,2.8196077,0,42.27,55.97,40.98,59.35,8.333333333333334,1,1,0,0,11,2,3,1,1097,-81388.531,63058.387,196653.63,120451.39,1617.5472 -5236,6463,11628,-9,11629,11627,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.21729,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1097,-81388.531,63058.387,196653.63,120451.39,1617.5472 -5236,6463,11629,11627,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,0,0,0,10,1,-28.974554,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.4870217,0,40.98,59.35,42.27,55.97,8.333333333333334,1,1,0,0,5,2,3,1,1097,-81388.531,63058.387,196653.63,120451.39,1617.5472 -5237,6464,11630,11632,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.5442972,8.91008,0,9,4,47.078007,0,2,2,2019,6,0,37,37,1,0,0,15.862094,15.862094,0,0,0,0,0,1,1,0,0,0,48.48,55.86,40.77,61.04,8.333333333333334,1,1,0,0,8,9,5,0,570.66669,-189593.92,26893.113,345616.31,251234.88,3329.1658 -5237,6464,11631,-9,11632,11630,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.9822,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,9,5,0,570.66669,-189593.92,26893.113,345616.31,251234.88,3329.1658 -5237,6464,11632,11630,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.1261692,8.1860008,0,5,-4,-32.250134,0,2,2,2019,17,5,24,24,1,5,0,14.515121,14.515121,0,0,0,0,0,1,1,0,0,0,40.77,61.04,48.48,55.86,8.333333333333334,1,1,0,0,7,9,5,0,570.66669,-189593.92,26893.113,345616.31,251234.88,3329.1658 -5238,6465,11633,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,3.921834,4.2900138,0,0,-1010.3956,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0068879,50.14,34.89,-9,-9,5,1,1,0,0,0,9,2,1,191,116662.09,0,-37989.906,0,769.79834 -5239,6466,11634,11636,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.4622631,8.3809481,0,21,-2,-126.15681,0,1,1,2019,14,3,37,37,1,3,0,15.826882,15.826882,0,0,0,0,0,1,1,0,0,0,46.14,51.88,59.95,36.42,5,2,3,0,0,4,10,4,0,459.33334,556859.94,288990.03,262873.56,75031.266,3277.9595 -5239,6466,11635,-9,11634,11636,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1003.4348,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,0,10,4,0,459.33334,556859.94,288990.03,262873.56,75031.266,3277.9595 -5239,6466,11636,11634,-9,-9,1,1,44,0,1,0,1,1,-9,0,2,8.21665,8.1333904,0,21,2,-18.606722,0,2,2,2019,9,0,45,36,1,0,0,6.8814116,6.8814116,0,0,0,0,0,1,1,0,0,0,59.95,36.42,46.14,51.88,6.666666666666667,2,3,0,0,8,10,4,0,459.33334,556859.94,288990.03,262873.56,75031.266,3277.9595 -5240,6467,11637,11638,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.6131477,7.4386744,8,5,64.017494,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,6.842494,7.6407065,53.61,51.1,56.94,49.53,8.333333333333334,1,1,0,0,2,5,3,1,739.5,1067145,316226,305266.41,0,2719.6108 -5240,6467,11638,11637,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,8,-5,81.383675,0,2,3,2019,6,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2728422,0,56.94,49.53,53.61,51.1,10,1,1,0,0,8,5,3,1,739.5,1067145,316226,305266.41,0,2719.6108 -5241,6468,11639,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.9814029,7.8966932,0,0,0,-1054.4843,0,3,3,2019,11,0,38,42,1,0,0,9.3913021,9.3913021,0,0,0,0,0,0,0,0,0,0,47.7,51.43,-9,-9,5,1,1,0,0,12,13,4,0,133,213317.95,93063.703,0,0,1192.3877 -5242,6469,11640,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1052.6809,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,7,1,0,1,0,0,30.6,18.53,-9,-9,0,1,1,0,1,2,6,1,0,406,21073.994,0,0,0,817.02631 -5242,6470,11641,-9,11640,-9,1,0,21,0,0,0,2,2,-9,1,3,8.2706423,7.9917893,0,0,0,-933.86847,0,3,-9,2019,12,0,32,0,1,0,1,12.239687,12.239687,0,0,0,0,0,1,0,1,5.3275714,0,46.59,43.6,-9,-9,5,1,1,0,0,11,6,4,0,268,43865.938,53367.961,0,0,2329.3359 -5243,6471,11642,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2205992,6.9496441,0,0,-992.80597,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9406872,6.9005957,63.41,39.7,-9,-9,5,1,1,0,0,0,9,2,1,360,396133.22,192242.92,248311.48,0,1630.6808 -5244,6472,11643,11644,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9311748,7.8787494,49,1,-6.0855427,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4766893,8.0663271,51.22,37.13,63.41,29.17,10,1,1,0,0,0,6,4,1,897,1785737,1119517.8,443176,0,3463.2148 -5244,6472,11644,11643,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.4512849,7.7471828,49,-1,-48.408936,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4647466,7.541676,63.41,29.17,51.22,37.13,8.333333333333334,1,1,0,0,0,6,4,1,897,1785737,1119517.8,443176,0,3463.2148 -5245,6473,11645,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.1952887,6.7727699,0,0,-906.14569,0,3,3,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,6.5744801,6.2821441,44.34,49.64,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,1312,171269.97,192829.52,159714.64,34263.293,1192.1451 -5246,6474,11646,11647,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.3635864,8.5331879,0,30,-8,4.7041082,0,3,3,2019,14,2,50,47,1,2,0,9.5981092,9.5981092,0,0,0,0,14.5,0,0,0,0,0,26.45,51.77,53.99,48.04,5,1,1,0,0,9,12,5,1,242,684994.06,680268.88,162806.64,78651.719,3217.5718 -5246,6474,11647,11646,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.9162884,8.1468554,5.1343799,30,8,70.12162,0,-9,-9,2019,12,0,48,43,1,0,0,7.3587532,7.3587532,0,0,0,0,2,0,0,0,5.1833382,5.3064299,53.99,48.04,26.45,51.77,5,1,1,0,0,9,12,5,1,242,684994.06,680268.88,162806.64,78651.719,3217.5718 -5246,6475,11648,-9,11646,11647,1,1,24,0,0,0,1,1,-9,0,3,7.8712101,8.0601377,0,0,0,-1049.5463,0,2,2,2019,8,0,40,42,1,0,1,8.5082884,8.5082884,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,2063,448522.75,49409.656,0,0,1336.0232 -5247,6476,11649,11650,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,1.3140132,1.4955071,8,1,31.742096,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,0,20.279066,0,0,1,1,0,4.6480446,1.1298196,41.24,28.61,44.34,25.46,10,1,1,0,0,0,6,4,1,363.5,349089.09,495592.75,0,0,3813.1099 -5247,6476,11650,11649,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,8.0647964,8.3452253,8,-1,111.70363,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,13.572039,0,0,1,1,0,4.4978733,8.4707632,44.34,25.46,41.24,28.61,10,1,1,0,0,0,6,4,1,363.5,349089.09,495592.75,0,0,3813.1099 -5248,6477,11651,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,8.0196495,8.1352749,0,0,0,-1075.434,0,2,3,2019,7,0,48,45,1,0,0,6.4597135,6.4597135,0,0,0,0,0,1,1,0,0,0,56.22,44.42,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,300,44045.766,-45904.035,119297.39,23821.645,1055.5649 -5249,6478,11652,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.8603411,8.7417412,0,0,0,-938.47961,0,2,2,2019,11,0,48,48,1,0,0,18.950876,18.950876,0,0,0,0,0,0,0,0,4.4215064,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,248,-30450.166,0,0,0,3000.6326 -5250,6479,11653,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,4.0730052,3.7764807,0,0,-993.88635,0,3,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,6.2414722,3.916461,46.54,23.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,335,579394.44,0,187221.27,0,1065.1105 -5251,6480,11654,-9,11656,11655,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.9453,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 -5251,6480,11655,11656,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.1850886,7.2535696,0,3,6,-90.379364,0,3,-9,2019,6,0,20,30,1,0,0,7.152338,7.152338,0,0,0,0,0,1,1,0,6.8740244,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 -5251,6480,11656,11655,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,7.8779998,8.1579514,0,3,-6,126.66124,0,-9,-9,2019,7,0,38,20,1,0,0,9.893363,9.893363,0,0,0,0,0,1,1,0,7.3124137,0,57.06,57.76,57.16,56.15,10,1,1,0,0,3,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 -5251,6480,11657,-9,11656,11655,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.7125,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,945.75,296231.94,20174.545,308475.19,0,2902.2344 -5252,6481,11658,-9,-9,-9,1,0,51,1,3,0,2,2,-9,1,3,0,0,0,0,0,-1027.6779,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,.011238325,0,51.54,41.1,-9,-9,6.666666666666667,2,3,0,0,10,8,1,1,1732,-171344.66,0,0,0,479.04175 -5252,6482,11659,11660,-9,-9,1,0,25,1,3,0,2,2,-9,0,2,0,0,0,7,-6,-8.9141636,0,-9,-9,2019,16,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.8876462,0,30.69,52.39,48.67,59.26,8.333333333333334,2,3,0,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 -5252,6482,11660,11659,11658,-9,1,1,31,1,3,0,1,1,-9,0,5,8.2623911,8.5650959,0,7,6,-60.818329,0,2,-9,2019,11,0,36,36,1,0,0,16.26248,16.26248,0,0,0,0,0,1,1,0,4.1801367,0,48.67,59.26,30.69,52.39,0,2,3,0,0,13,8,3,1,826,31533.252,21969.141,0,0,2229.2297 -5252,6482,11661,-9,11659,11660,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.27411,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 -5252,6482,11662,-9,11659,11660,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.5042,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 -5252,6482,11663,-9,11659,11660,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1008,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,3,1,826,31533.252,21969.141,0,0,2229.2297 -5253,6483,11664,-9,11665,11666,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1067.568,-9,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.66,57.19,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,1419.6666,743464.88,375936.13,231571.91,105810.22,3584.3362 -5253,6483,11665,11666,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,6.8766003,7.2567339,0,5,0,-36.939426,0,-9,-9,2019,16,4,22,25,1,4,0,5.5276647,5.5276647,0,0,0,0,0,1,1,0,0,0,43.57,51.63,50.03,52.62,6.666666666666667,1,1,0,0,10,5,5,1,1419.6666,743464.88,375936.13,231571.91,105810.22,3584.3362 -5253,6483,11666,11665,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.6279268,8.7669687,0,5,0,64.12442,0,-9,-9,2019,11,1,44,42,1,1,0,18.797609,18.797609,0,0,0,0,0,1,1,0,0,0,50.03,52.62,43.57,51.63,8.333333333333334,1,1,0,0,10,5,5,1,1419.6666,743464.88,375936.13,231571.91,105810.22,3584.3362 -5254,6484,11667,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,3,7.9824486,7.9106517,0,0,0,-1005.9188,-9,-9,-9,2019,11,0,40,0,1,0,0,7.4501133,7.4501133,0,0,0,0,0,0,0,0,1.8816059,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,9,12,4,1,916,172769.77,0,0,0,1466.0015 -5255,6485,11668,11669,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.7231321,8.7334843,0,9,-12,-37.291077,0,2,2,2019,11,0,39,40,1,0,0,18.140047,18.140047,0,0,0,0,0,0,0,0,.11368296,0,40.25,49.02,48.53,58.91,6.666666666666667,1,1,0,0,11,6,5,1,762,378860.31,95121.719,164353.06,0,3038.8223 -5255,6485,11669,11668,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.7317281,7.6473284,0,9,12,-.53566045,0,3,-9,2019,10,0,34,38,1,0,0,8.774621,8.774621,0,0,0,0,0,0,0,0,.22177948,0,48.53,58.91,40.25,49.02,6.666666666666667,1,1,0,0,11,6,5,1,762,378860.31,95121.719,164353.06,0,3038.8223 -5256,6486,11670,11671,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.2861605,8.663765,7.319005,26,2,-7.6977987,0,2,3,2019,5,0,37,38,1,0,0,12.605475,12.605475,0,0,0,0,0,0,0,0,0,7.2480145,60.12,54.8,57.06,57.76,10,1,1,0,0,7,9,5,1,661,216859.69,151830.3,236287.69,41371.879,4078.584 -5256,6486,11671,11670,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.4834166,8.416297,0,26,-2,45.89043,0,-9,-9,2019,10,0,38,38,1,0,0,12.048294,12.048294,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.12,54.8,10,1,1,0,0,10,9,5,1,661,216859.69,151830.3,236287.69,41371.879,4078.584 -5256,6487,11672,-9,11671,11670,1,1,22,0,0,0,2,2,-9,0,4,7.7531834,7.6159911,0,0,0,-1172.7488,0,2,2,2019,4,0,49,42,1,0,1,5.3442903,5.3442903,0,0,0,0,0,0,0,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1142,-106531.26,38937.844,0,0,262.70856 -5257,6488,11673,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,5.965714,5.8085866,0,0,-1077.7297,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.2389479,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,231,304416.03,54473.859,94504.828,0,716.43408 -5258,6489,11674,11675,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.1733351,8.0846443,0,4,-20,-37.666946,0,-9,-9,2019,7,0,40,40,1,0,0,9.1625051,9.1625051,0,0,0,0,0,0,0,0,0,0,40.89,56.86,53.97,42.64,8.333333333333334,1,1,0,0,3,7,5,1,417,249122.84,134084.86,288833.34,246177.5,3339.7485 -5258,6489,11675,11674,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6392822,8.9778843,0,4,20,-20.233246,0,1,1,2019,10,0,40,76,1,0,0,13.469657,13.469657,0,0,0,0,0,0,0,0,0,0,53.97,42.64,40.89,56.86,8.333333333333334,4,2,0,0,11,7,5,1,417,249122.84,134084.86,288833.34,246177.5,3339.7485 -5259,6490,11676,11677,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.6824751,7.7330632,55,-6,-31.492323,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.4331245,7.4688187,55.96,49.93,37.01,22.23,6.666666666666667,1,1,0,0,0,6,3,1,466,646633.25,343347.84,317354.03,0,2982.5271 -5259,6490,11677,11676,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.6294894,6.717392,55,6,32.362381,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,11.258047,0,0,1,1,0,3.7091689,6.7802396,37.01,22.23,55.96,49.93,3.333333333333333,1,1,0,0,0,6,3,1,466,646633.25,343347.84,317354.03,0,2982.5271 -5260,6491,11678,-9,11681,11680,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.3798,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,752.25,33713.258,0,0,0,4342.4541 -5260,6491,11679,-9,11681,11680,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.2245,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,752.25,33713.258,0,0,0,4342.4541 -5260,6491,11680,11681,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.960289,8.7287159,0,7,0,-3.8288422,0,1,1,2019,8,0,41,41,1,0,0,21.389071,21.389071,0,0,0,0,0,1,1,0,2.2906206,0,62.45,40.09,38.3,62.37,8.333333333333334,1,1,0,0,7,10,5,1,752.25,33713.258,0,0,0,4342.4541 -5260,6491,11681,11680,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,7.1895189,7.6094074,6.0425,7,0,-55.291252,0,2,2,2019,13,2,14,0,1,2,0,13.662991,13.662991,0,0,0,0,0,1,1,0,5.965436,0,38.3,62.37,62.45,40.09,8.333333333333334,1,1,0,0,7,10,5,1,752.25,33713.258,0,0,0,4342.4541 -5261,6492,11682,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.0829048,7.7749734,7.2520556,0,0,-1047.0671,0,3,3,2019,11,0,17,24,1,0,0,8.8867826,8.8867826,0,0,0,0,0,0,0,0,6.9173908,6.8984833,36.03,59.01,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,1067,2649349.8,141021.19,1615757.6,0,1179.2407 -5262,6493,11683,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.064075,7.0257854,0,0,0,-972.65198,0,2,1,2019,23,11,22,16,1,11,0,7.1605039,7.1605039,0,0,0,0,0,1,1,0,0,0,33.07,39.12,-9,-9,5,1,1,0,1,11,10,2,1,800.5,23975.914,27919.594,0,0,1224.5107 -5262,6493,11684,-9,11683,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1083.6926,-9,2,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.8860879,0,48.28,60.18,-9,-9,10,1,1,0,0,2,10,2,1,800.5,23975.914,27919.594,0,0,1224.5107 -5262,6494,11685,-9,11683,-9,1,1,20,0,1,0,2,2,-9,0,1,8.3690233,8.3913393,0,0,0,-1028.0111,0,2,-9,2019,16,5,40,40,1,5,1,7.2736702,7.2736702,0,0,0,0,0,1,1,0,0,0,23.53,58.69,-9,-9,3.333333333333333,1,1,0,1,3,10,4,1,325,61541.914,-139070.94,0,0,1407.4023 -5263,6495,11686,11689,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.2654295,9.5024977,0,10,2,-12.117658,0,-9,-9,2019,11,0,38,36,1,0,0,32.868881,32.868881,0,0,0,0,0,0,0,0,5.9844928,0,57.16,56.15,46.39,60.99,8.333333333333334,1,1,0,0,10,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 -5263,6495,11687,-9,11689,11686,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.9175,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 -5263,6495,11688,-9,11689,11686,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.1121,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 -5263,6495,11689,11686,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.5543404,7.640481,0,22,-2,244.21849,0,3,2,2019,12,0,15,10,1,0,0,14.841726,14.841726,0,0,0,0,0,0,0,0,0,0,46.39,60.99,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,1,763.75,561255.81,330579.59,534429.5,163346.38,4748.5225 -5264,6496,11690,11691,-9,-9,1,0,23,0,0,1,2,0,0,0,4,0,6.6891923,6.8667974,3,-3,90.927719,-9,-9,-9,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,6.5275507,0,16.94,63.76,54.37,54.8,6.666666666666667,1,1,0,0,0,4,4,0,312,-95776.367,29502.242,176964.41,143812.31,2139.2383 -5264,6496,11691,11690,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.4451027,7.9526806,0,3,3,123.83058,0,-9,-9,2019,6,0,40,48,1,0,0,9.9515524,9.9515524,0,0,0,0,0,1,1,0,0,0,54.37,54.8,16.94,63.76,8.333333333333334,1,1,0,0,5,4,4,0,312,-95776.367,29502.242,176964.41,143812.31,2139.2383 -5265,6497,11692,11693,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,32,0,35.19817,0,3,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,21.72,22.57,49.69,55.66,5,1,1,0,0,7,11,4,1,544.5,1183162.9,636678.5,322703.5,0,2675.8188 -5265,6497,11693,11692,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6144943,8.1966591,0,32,0,-17.711664,0,3,2,2019,8,0,38,38,1,0,0,14.901968,14.901968,0,0,0,0,14.5,1,1,0,0,0,49.69,55.66,21.72,22.57,6.666666666666667,1,1,0,0,8,11,4,1,544.5,1183162.9,636678.5,322703.5,0,2675.8188 -5265,6498,11694,-9,11692,11693,1,1,28,0,0,0,2,2,-9,0,4,8.0574417,8.0710926,0,0,0,-940.16351,-9,2,2,2019,10,0,36,0,1,1,1,9.9694195,9.9694195,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,11,4,1,2083,136957.42,-3396.4446,0,0,1748.76 -5265,6499,11695,-9,11692,11693,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-959.98071,0,2,2,2019,11,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,29.35,55.99,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,129,-208384.22,0,0,0,804.09674 -5266,6500,11696,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,0,0,0,0,0,-865.46033,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.32,63.94,-9,-9,8.333333333333334,1,1,0,0,3,10,1,0,752,-252336.92,0,0,0,589.81598 -5267,6501,11697,-9,11698,11699,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.963,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,792.33331,186434.75,281272,189586.41,123147.55,3199.5552 -5267,6501,11698,11699,11700,-9,1,0,49,0,1,0,2,2,-9,0,1,8.4346485,8.4012794,0,18,-4,-30.324152,0,3,-9,2019,10,0,49,30,1,0,0,8.9255877,8.9255877,0,0,0,0,77,1,1,0,0,0,50.61,25.48,32.9,57.87,3.333333333333333,1,1,0,0,13,4,4,1,792.33331,186434.75,281272,189586.41,123147.55,3199.5552 -5267,6501,11699,11698,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,8.3434401,8.2044678,0,11,4,13.771344,0,-9,-9,2019,14,2,39,39,1,2,0,12.289119,12.289119,0,0,0,0,14.5,1,1,0,0,0,32.9,57.87,50.61,25.48,5,1,1,0,0,13,4,4,1,792.33331,186434.75,281272,189586.41,123147.55,3199.5552 -5267,6502,11700,-9,-9,-9,1,0,88,0,1,0,3,3,-9,0,2,0,5.8128247,6.1464281,0,0,-916.9931,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,12.962139,0,0,1,1,0,2.5069277,5.7378621,49.33,28.6,-9,-9,5,1,1,0,0,0,4,2,1,629,-265538.13,-3552.3384,103365.18,0,390.30713 -5268,6503,11701,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.3195877,9.0809259,0,0,0,-1075.6982,0,2,2,2019,13,3,50,50,1,3,0,26.277267,26.277267,0,0,0,0,0,1,1,0,0,0,43.19,58.53,-9,-9,1.666666666666667,3,4,0,0,9,8,5,1,1831,-406812.25,0,0,0,3639.0757 -5268,6504,11702,-9,-9,11701,1,1,33,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.32007,0,2,2,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.06,41.77,-9,-9,6.666666666666667,3,4,1,0,0,8,1,1,1230,-305575.09,0,0,0,811.60266 -5268,6505,11703,-9,-9,11701,1,1,29,0,0,0,2,2,-9,0,4,8.1133232,7.9166098,0,0,0,-944.38751,0,2,2,2019,10,0,36,0,1,1,1,10.212641,10.212641,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,317,-251280.63,49790.566,0,0,1574.8131 -5269,6506,11704,11705,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.4267492,9.2404518,0,10,0,-87.852554,0,-9,-9,2019,6,0,40,40,1,0,0,35.258133,35.258133,0,0,0,0,0,0,0,0,7.8356142,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,12,9,5,1,1320.5,5446592,2367486.8,1911766.3,0,9533.75 -5269,6506,11705,11704,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.2963562,9.482357,6.0195899,20,0,-24.433741,0,1,2,2019,5,1,16,20,1,1,0,84.651054,84.651054,0,0,0,0,5.48,0,0,0,7.7954245,6.6662374,62.39,56.71,57.16,56.15,10,1,1,0,0,12,9,5,1,1320.5,5446592,2367486.8,1911766.3,0,9533.75 -5270,6507,11706,11707,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.4771485,7.9938855,7,17,-62.298164,0,1,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4399619,0,56.57,57.78,51.83,57.2,8.333333333333334,1,1,0,0,7,10,3,1,1159,348135,307359.13,251186.06,0,3029.6223 -5270,6507,11707,11706,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,6.8747897,7.0856609,0,7,-17,68.034264,0,2,2,2019,8,0,40,45,1,0,0,2.6835008,2.6835008,0,0,0,0,0,1,1,0,4.8605556,0,51.83,57.2,56.57,57.78,8.333333333333334,1,1,0,0,9,10,3,1,1159,348135,307359.13,251186.06,0,3029.6223 -5271,6508,11708,11709,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.4597549,7.3429627,8,0,.22055714,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.178215,7.1519876,50.4,51.87,55.95,36.7,0,1,1,0,0,0,7,3,1,265.5,1022025.5,461540.56,248386.72,0,2680.1387 -5271,6508,11709,11708,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.6437926,7.3993096,8,0,.73409986,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,2.1341763,0,0,1,1,0,4.3439674,7.5061522,55.95,36.7,50.4,51.87,5,1,1,0,0,8,7,3,1,265.5,1022025.5,461540.56,248386.72,0,2680.1387 -5272,6509,11710,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.285718,6.36133,0,0,-905.92328,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7850137,6.1792955,18.44,24.26,-9,-9,1.666666666666667,1,1,0,0,0,1,2,0,360,177287.06,399165.16,0,0,2748.4688 -5273,6510,11711,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,8.3023748,8.3574333,0,0,0,-1150.3419,0,2,3,2019,33,12,69,66,1,12,0,7.6485372,7.6485372,0,0,0,0,0,0,0,0,0,0,19.78,50.7,-9,-9,1.666666666666667,1,1,0,1,13,11,4,0,139,120407.85,62233.098,0,0,1305.1316 -5274,6511,11712,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,7.494535,7.7935276,4.3192968,0,0,-958.23358,0,-9,-9,2019,6,0,21,36,1,0,0,8.2613068,8.2613068,0,0,0,0,0,1,1,0,6.5221047,4.2374158,62.39,56.71,-9,-9,10,1,1,0,0,12,7,3,1,1560,-312485.56,0,0,0,2487.9565 -5275,6512,11713,11714,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.4850163,7.4026814,39,15,-66.661644,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,42.272842,128.55141,403.94995,0,1,1,0,5.725862,7.58078,53,46,55.87,36.58,8,3,4,0,0,0,7,5,1,819.5,2009080,0,1635058.4,0,6100.2637 -5275,6512,11714,11713,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,8.8406286,9.0551529,39,-15,-75.709663,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,9.125905,55.87,36.58,53,46,5,3,4,0,0,2,7,5,1,819.5,2009080,0,1635058.4,0,6100.2637 -5276,6513,11715,-9,11716,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1076.0974,0,2,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,20.82,35.6,-9,-9,0,1,1,0,1,6,11,1,1,1379,229316.75,0,0,0,1303.6198 -5276,6514,11716,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.9687824,6.7238102,0,0,-978.57294,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,16.477034,0,0,1,1,0,0,6.7225442,64.82000000000001,11.24,-9,-9,5,1,1,0,0,0,11,2,1,932,292840.94,153279.61,254103.08,0,519.80194 -5277,6515,11717,11719,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.2683983,9.0654373,0,24,-4,-52.292404,0,3,3,2019,14,3,55,50,1,3,0,14.436556,14.436556,0,0,0,0,0,1,1,0,4.1999645,0,46.63,59.72,40.61,64.02,8.333333333333334,1,1,0,0,8,10,5,1,324.33334,4265128,3282200.5,717894,0,4849.1392 -5277,6515,11718,-9,11719,11717,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-959.39716,-9,2,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,324.33334,4265128,3282200.5,717894,0,4849.1392 -5277,6515,11719,11717,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.2208023,8.3711233,0,24,4,66.500328,0,2,2,2019,15,5,28,27,1,5,0,14.689219,14.689219,0,0,0,0,2,1,1,0,.010508161,0,40.61,64.02,46.63,59.72,8.333333333333334,1,1,0,0,8,10,5,1,324.33334,4265128,3282200.5,717894,0,4849.1392 -5277,6516,11720,-9,11719,11717,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1111.9808,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.2222803,0,47.46,52.7,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,377,-498297.5,0,0,0,56.331997 -5278,6517,11721,11722,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5567546,7.7567258,0,30,0,-46.89101,0,3,3,2019,11,0,20,16,1,0,0,10.329524,10.329524,0,0,0,0,0,0,0,0,6.595048,0,57.16,56.15,50,50,8.333333333333334,1,1,0,0,9,5,3,1,321.5,22624.797,67996.695,0,0,2587.9895 -5278,6517,11722,11721,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.5192719,7.6597109,0,9,0,-85.239044,0,-9,-9,2019,11,0,50,50,1,1,0,5.116622,5.116622,0,0,0,0,0,0,0,0,0,0,50,50,57.16,56.15,7,1,1,0,0,1,5,3,1,321.5,22624.797,67996.695,0,0,2587.9895 -5279,6518,11723,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.920002,5.8824377,0,0,-945.38879,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1827035,5.7588692,57.16,56.15,-9,-9,0,1,1,0,0,0,10,2,1,273,656551.5,-17488.412,395560.06,0,201.67732 -5280,6519,11724,11726,-9,-9,1,0,58,0,1,0,2,2,-9,0,2,0,0,0,23,-3,-69.923393,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.61,20.27,46.73,43.6,8.333333333333334,2,3,0,1,0,6,2,0,178.33333,38825.969,74833.016,0,0,807.16455 -5280,6519,11725,-9,11724,11726,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-981.83545,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.82,57.72,-9,-9,8.333333333333334,2,3,0,0,0,6,2,0,178.33333,38825.969,74833.016,0,0,807.16455 -5280,6519,11726,11724,-9,-9,1,1,61,0,1,0,2,2,-9,0,3,7.4813662,7.2472191,0,43,3,-1.1233014,0,3,2,2019,10,0,24,30,1,0,0,7.7873101,7.7873101,0,0,0,0,0,1,1,0,0,0,46.73,43.6,56.61,20.27,8.333333333333334,2,3,0,1,10,6,2,0,178.33333,38825.969,74833.016,0,0,807.16455 -5281,6520,11727,-9,11728,11729,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.32275,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 -5281,6520,11728,11729,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.3329649,8.4763279,0,10,1,91.448219,0,-9,-9,2019,10,2,37,37,1,2,0,15.536009,15.536009,0,0,0,0,0,1,1,0,7.4070911,0,50.63,50.99,39.68,38.45,8.333333333333334,1,1,0,0,8,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 -5281,6520,11729,11728,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.5595827,8.4134331,0,10,-1,-45.491257,0,2,2,2019,16,5,42,44,1,5,0,13.478935,13.478935,0,0,0,0,0,1,1,0,0,0,39.68,38.45,50.63,50.99,1.666666666666667,1,1,0,0,13,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 -5281,6520,11730,-9,11728,11729,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.3145,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,933.25,310986.16,119621.55,358197.41,224331.59,4450.144 -5282,6521,11731,-9,-9,11732,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-870.33484,-9,-9,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,2,1,633,-102165.41,0,218460.63,110952.23,61.178673 -5282,6521,11732,-9,11734,-9,1,1,44,0,2,0,2,2,-9,0,3,2.1942053,2.0491924,0,0,0,-999.43958,0,2,3,2019,12,1,39,40,1,1,0,.020544959,.020544959,0,0,0,0,0,1,1,0,0,0,43.53,47.33,-9,-9,5,1,1,0,0,9,9,2,1,633,-102165.41,0,218460.63,110952.23,61.178673 -5282,6521,11733,-9,-9,11732,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1003.3315,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,1,633,-102165.41,0,218460.63,110952.23,61.178673 -5282,6522,11734,11735,-9,-9,1,0,66,0,2,0,3,3,-9,0,3,0,0,0,1,-2,-1.6680181,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,44.4,32.51,25.74,10,1,1,0,0,0,9,2,1,248,843603,379589.5,271289.81,0,1436.4269 -5282,6522,11735,11734,-9,-9,1,1,68,0,2,0,3,3,-9,0,1,0,6.8701038,6.927412,1,2,60.865757,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,1.5824833,0,0,1,1,0,7.3938951,6.9641647,32.51,25.74,55.96,44.4,6.666666666666667,1,1,0,0,0,9,2,1,248,843603,379589.5,271289.81,0,1436.4269 -5283,6523,11736,11737,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.5035992,8.6430588,0,10,-2,101.37569,0,2,2,2019,12,0,55,25,1,0,0,10.978092,10.978092,0,0,0,0,0,0,0,0,2.7447419,0,48.77,60.16,58.16,55.87,5,1,1,0,0,10,12,5,1,209.5,719538.38,125787.44,745586.06,165835.81,4256.3604 -5283,6523,11737,11736,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.7700968,8.6356497,0,10,2,-20.410831,0,3,-9,2019,6,0,74,37,1,0,0,9.3532772,9.3532772,0,0,0,0,0,0,0,0,0,0,58.16,55.87,48.77,60.16,8.333333333333334,1,1,0,0,10,12,5,1,209.5,719538.38,125787.44,745586.06,165835.81,4256.3604 -5284,6524,11738,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2365837,8.2145147,0,0,0,-983.14117,0,-9,-9,2019,11,0,38,53,1,0,0,10.609728,10.609728,0,0,0,0,0,0,0,0,0,0,19.4,56.24,-9,-9,3.333333333333333,2,3,0,0,12,6,4,1,1224,-24634.027,4702.7905,237269.17,204778.44,1361.5514 -5285,6525,11739,-9,11740,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.0131,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,697.33331,1161699.1,1035857,237137.11,6204.3359,2834.6086 -5285,6525,11740,11741,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,6.1276078,6.1786594,4,0,-6.9652414,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.2742658,0,57.33,53.46,42.36,56.12,10,1,1,1,0,3,12,4,1,697.33331,1161699.1,1035857,237137.11,6204.3359,2834.6086 -5285,6525,11741,11740,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.6962986,8.5792809,0,4,0,113.79839,0,1,2,2019,13,1,50,80,1,1,0,17.020161,17.020161,0,0,0,0,0,0,0,0,3.6017318,0,42.36,56.12,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,1,697.33331,1161699.1,1035857,237137.11,6204.3359,2834.6086 -5286,6526,11742,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.1676455,8.0576086,0,0,0,-1038.2761,0,2,2,2019,10,0,45,39,1,0,0,6.6942315,6.6942315,0,0,0,0,2,1,1,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,623,51069.984,37932.129,0,0,1348.4353 -5287,6527,11743,-9,-9,-9,1,0,32,0,0,0,2,2,-9,1,3,0,0,0,0,0,-953.32483,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,41.27,-9,-9,5,3,4,1,0,0,8,1,0,111,-84332.25,0,0,0,964.97974 -5288,6528,11744,11745,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.8517022,7.8904333,0,33,-10,-58.225868,0,2,3,2019,12,0,50,45,1,0,0,5.3396473,5.3396473,0,0,0,0,0,1,1,0,4.7095346,0,49.67,45.88,27.81,65.69,6.666666666666667,1,1,0,0,11,10,4,1,760.5,625447.94,55990.523,475993.78,0,2588.9988 -5288,6528,11745,11744,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.375679,7.2403746,0,33,10,-96.134262,0,3,2,2019,21,7,23,21,1,7,0,8.0485916,8.0485916,0,0,0,0,0,1,1,0,6.6361704,0,27.81,65.69,49.67,45.88,8.333333333333334,1,1,0,0,11,10,4,1,760.5,625447.94,55990.523,475993.78,0,2588.9988 -5288,6529,11746,-9,11745,11744,1,1,28,0,0,0,2,2,-9,0,4,7.9837222,8.4628963,0,0,0,-1020.1571,0,2,3,2019,13,2,41,40,1,2,1,9.4086132,9.4086132,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,374,110963.52,-68827.859,0,0,1478.8391 -5289,6530,11747,11748,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5697966,8.6795187,0,5,4,17.268972,0,-9,-9,2019,8,0,35,35,1,0,0,18.168238,18.168238,0,0,0,0,0,0,0,0,4.4646168,0,55,53,50.67,36.38,8,1,1,0,0,1,4,5,1,305.5,2320076.5,2062813.1,193359.47,0,3432.1367 -5289,6530,11748,11747,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1478863,8.099041,0,5,-4,-13.15935,0,2,2,2019,9,2,24,25,1,2,0,20.95298,20.95298,0,0,0,0,7,0,0,0,.86616141,0,50.67,36.38,55,53,8.333333333333334,4,2,0,0,9,4,5,1,305.5,2320076.5,2062813.1,193359.47,0,3432.1367 -5290,6531,11749,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.8777742,7.9102044,0,0,0,-966.69537,-9,2,2,2019,13,1,34,0,1,1,0,7.1441693,7.1441693,0,0,0,0,0,1,1,0,0,0,29.52,60.83,-9,-9,8.333333333333334,1,1,0,0,13,5,3,1,1030,-64647.223,0,0,0,2105.8357 -5290,6531,11750,-9,11749,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1175.4867,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1030,-64647.223,0,0,0,2105.8357 -5290,6531,11751,-9,11749,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.5769,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1030,-64647.223,0,0,0,2105.8357 -5291,6532,11752,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.0269079,7.6567693,0,0,-1020.9302,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7875471,8.0096073,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,890,2028252.6,492192.06,722380.5,0,1810.561 -5292,6533,11753,11754,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,0,0,0,9,-6,90.206474,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,44.71,15.05,51,56,8.333333333333334,1,1,0,0,0,12,3,0,208.5,726729.31,216616.34,243186.53,0,2145.6357 -5292,6533,11754,11753,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4551249,8.3367558,0,9,6,-81.753845,0,-9,-9,2019,10,0,50,50,1,1,0,9.6314011,9.6314011,0,0,0,0,42,1,1,0,0,0,51,56,44.71,15.05,7,1,1,0,0,13,12,3,0,208.5,726729.31,216616.34,243186.53,0,2145.6357 -5293,6534,11755,11756,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.8179417,5.1478834,6,-5,-96.338127,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.6784179,5.0311632,25.07,58.58,29.55,60.48,3.333333333333333,1,1,0,0,4,7,3,1,1321,267625.5,318971,158907.88,0,2438.1895 -5293,6534,11756,11755,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.8373981,7.7587304,6,5,88.364494,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,3.0606942,7.6652727,29.55,60.48,25.07,58.58,3.333333333333333,1,1,0,0,0,7,3,1,1321,267625.5,318971,158907.88,0,2438.1895 -5294,6535,11757,11758,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.9515343,8.3748932,3,1,84.031853,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,.34143129,8.3614922,51,48,59.46,44.28,7,1,1,0,0,0,4,5,1,1051.5,3329347.5,1317159.5,1157500.6,0,2897.6855 -5294,6535,11758,11757,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.4697428,8.1941929,0,32,-1,-20.527966,0,2,3,2019,7,0,50,37,1,0,0,10.051265,10.051265,0,0,0,0,2,0,0,0,1.6688747,0,59.46,44.28,51,48,8.333333333333334,1,1,0,0,10,4,5,1,1051.5,3329347.5,1317159.5,1157500.6,0,2897.6855 -5295,6536,11759,-9,11761,11762,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.3471,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 -5295,6536,11760,-9,11761,11762,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.96484,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 -5295,6536,11761,11762,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.7274604,8.0623188,0,15,-11,96.631149,0,2,2,2019,11,2,16,20,1,2,0,22.455055,22.455055,0,0,0,0,0,0,0,0,0,0,48.7,56.22,51.41,56.15,6.666666666666667,2,3,0,0,9,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 -5295,6536,11762,11761,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,9.6500044,9.7611723,0,15,11,-10.171526,-9,-9,-9,2019,12,1,58,0,1,1,0,31.38592,31.38592,0,0,0,0,0,0,0,0,0,0,51.41,56.15,48.7,56.22,6.666666666666667,4,2,0,0,10,9,5,1,366.5,505401.16,149436.31,471427.59,202046.84,4479.9478 -5296,6537,11763,-9,11766,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.8244,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 -5296,6537,11764,-9,11766,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.926,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 -5296,6537,11765,11766,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.634654,9.1591558,0,3,4,88.099113,0,1,2,2019,10,3,37,37,1,3,0,29.5194,29.5194,0,0,0,0,0,1,1,0,0,0,35.38,63.46,40.04,55.92,6.666666666666667,1,1,0,0,11,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 -5296,6537,11766,11765,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.9008698,8.2297678,6.371273,3,-4,-52.441349,0,-9,-9,2019,12,0,35,30,1,0,0,12.013031,12.013031,0,0,0,0,0,1,1,0,5.8714633,0,40.04,55.92,35.38,63.46,8.333333333333334,1,1,0,0,2,6,5,1,466,401148.56,227318.19,389332.06,80093.734,4400.2681 -5297,6538,11767,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1016.8214,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.09302,0,51.9,21.11,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,591,302852.97,149662.38,0,0,2144.219 -5298,6539,11768,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-939.48669,0,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,40.95,16.9,-9,-9,1.666666666666667,1,1,0,1,2,5,1,0,836,86559.922,0,0,0,598.52155 -5299,6540,11769,11770,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.892724,9.2689533,0,7,0,-84.256332,0,2,2,2019,14,4,37,37,1,4,0,22.191891,22.191891,0,0,0,0,0,0,0,0,0,0,46.27,57.3,47.41,60.69,8.333333333333334,1,1,0,0,9,4,5,1,283,1387755,1030749.9,239212.09,21169.67,5056.1226 -5299,6540,11770,11769,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.9406748,8.9826612,0,23,0,-159.07982,0,3,2,2019,12,2,40,37,1,2,0,15.428899,15.428899,0,0,0,0,0,0,0,0,1.3877928,0,47.41,60.69,46.27,57.3,8.333333333333334,1,1,0,0,9,4,5,1,283,1387755,1030749.9,239212.09,21169.67,5056.1226 -5300,6541,11771,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.5341511,8.3428059,0,0,0,-925.52698,0,2,2,2019,12,0,10,45,1,0,0,64.964005,64.964005,0,0,0,0,0,0,0,0,1.8586106,0,48.28,60.18,-9,-9,8.333333333333334,4,2,0,0,9,8,5,1,305,217618.5,-71318.547,0,0,2337.8469 -5301,6542,11772,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,5.7952166,5.5527663,0,0,-1033.2742,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8274455,6.0954518,55.36,38.34,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,2383,79728.563,359299.28,-28862.664,0,680.61359 -5302,6543,11773,11774,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9218006,9.0794935,0,6,-1,43.406029,0,2,3,2019,7,0,35,35,1,0,0,27.894505,27.894505,0,0,0,0,0,0,0,0,8.6557112,0,51.24,58.84,42.05,58.8,8.333333333333334,1,1,0,0,7,1,5,1,798.5,3430993.3,1975472.5,460751.31,166633.16,7502.0908 -5302,6543,11774,11773,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.6829433,8.9182501,0,6,1,-76.483025,0,2,2,2019,18,6,38,38,1,6,0,16.826839,16.826839,0,0,0,0,2,0,0,0,5.3242407,0,42.05,58.8,51.24,58.84,3.333333333333333,1,1,0,0,7,1,5,1,798.5,3430993.3,1975472.5,460751.31,166633.16,7502.0908 -5303,6544,11775,-9,11776,11777,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.83527,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 -5303,6544,11776,11777,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9088125,9.0889854,0,14,-6,48.474995,0,2,3,2019,20,8,50,58,1,8,0,17.861614,17.861614,0,0,0,0,0,1,1,0,.054310456,0,32.64,63.56,53.32,40.19,8.333333333333334,1,1,0,0,8,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 -5303,6544,11777,11776,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.1597271,7.907527,0,14,6,41.299107,0,2,2,2019,10,0,30,27,1,0,0,12.39318,12.39318,0,0,0,0,0,1,1,0,7.5915084,0,53.32,40.19,32.64,63.56,6.666666666666667,1,1,0,0,7,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 -5303,6544,11778,-9,11776,11777,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4747,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,658,448746.63,353375.19,311483.81,153632.72,5786.335 -5304,6545,11779,-9,11782,11780,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.3243,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 -5304,6545,11780,11782,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.35604,8.4225988,0,15,1,-26.232897,0,2,2,2019,12,0,40,40,1,0,0,13.921083,13.921083,0,0,0,0,0,1,1,0,0,0,47.32,52.7,54.1,59.11,5,1,1,0,0,11,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 -5304,6545,11781,-9,11782,11780,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.2755,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 -5304,6545,11782,11780,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,6.355269,6.1785293,0,15,-1,118.30231,0,2,3,2019,12,0,10,38,1,0,0,5.5817361,5.5817361,0,0,0,0,0,1,1,0,0,0,54.1,59.11,47.32,52.7,6.666666666666667,1,1,0,1,9,6,3,1,532.75,487507.09,-38893.887,494017.94,0,2120.8206 -5305,6546,11783,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.7887697,7.7421002,0,0,-863.86407,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0298042,7.7733331,62.39,56.71,-9,-9,8.333333333333334,4,5,0,0,0,8,3,1,516,857256.38,432013.41,455918.13,0,3460.7334 -5306,6547,11784,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.3833771,8.578907,0,0,0,-992.05829,0,3,2,2019,7,0,43,43,1,0,0,13.608683,13.608683,0,0,0,0,0,0,0,0,3.1087222,0,53.97,40.34,-9,-9,6.666666666666667,1,1,0,0,8,10,5,1,1045,338583.56,335744.34,221969.92,100411.04,2312.5789 -5306,6548,11785,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6265459,8.4013815,0,0,0,-912.52997,0,-9,-9,2019,10,0,40,40,1,1,0,12.781334,12.781334,0,0,0,0,0,0,0,0,0,0,49,55,-9,-9,8,1,1,0,0,1,10,5,1,600,780906.56,213294.64,97978.164,76600.773,2018.722 -5307,6549,11786,11789,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,7.2330322,7.4245782,0,14,0,127.72971,0,2,3,2019,12,0,15,15,1,0,0,11.206857,11.206857,0,0,0,0,0,1,1,0,0,0,43.71,56.91,42.05,58.8,5,1,1,0,0,10,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 -5307,6549,11787,-9,11786,11789,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.0691,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 -5307,6549,11788,-9,11786,11789,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.48279,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 -5307,6549,11789,11786,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.1935987,9.2094879,0,14,0,26.079844,0,2,1,2019,9,0,60,55,1,0,0,17.891602,17.891602,0,0,0,0,0,1,1,0,0,0,42.05,58.8,43.71,56.91,8.333333333333334,1,1,0,0,10,7,5,1,472.25,668954.13,128449.41,471790.5,49126.816,4277.772 -5308,6550,11790,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-938.0224,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,0,32.51,42.8,-9,-9,3.333333333333333,1,1,0,0,7,2,1,1,1272,-155728.72,0,0,0,904.89008 -5309,6551,11791,11792,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6326346,7.4797182,0,33,-7,53.303894,0,3,2,2019,10,0,32,32,1,1,0,6.735136,6.735136,0,0,0,0,71.5,1,1,0,0,0,51,54,51.77,58.57,8,2,3,0,0,8,6,3,1,613,1446391,0,591437.75,0,5622.0596 -5309,6551,11792,11791,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,34,7,-11.337535,0,3,3,2019,9,0,0,45,3,0,0,0,0,0,0,0,0,42,1,1,0,8.8668776,0,51.77,58.57,51,54,8.333333333333334,2,3,1,0,5,6,3,1,613,1446391,0,591437.75,0,5622.0596 -5309,6552,11793,-9,11791,11792,1,0,27,0,0,0,1,1,-9,0,5,7.8853507,7.5698709,0,0,0,-784.80548,0,2,2,2019,22,7,37,37,1,7,1,6.371881,6.371881,0,0,0,0,14.5,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,2,3,0,0,4,6,3,1,1433,-235236.92,0,0,0,1284.2455 -5309,6553,11794,-9,11791,11792,1,0,22,0,0,0,1,1,1,0,4,7.768187,7.9088631,0,0,0,-979.34277,-9,2,1,2019,6,1,20,0,1,1,1,16.80575,16.80575,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,5,6,3,1,2188,-251300.53,0,0,0,1449.2975 -5310,6554,11795,11796,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,0,47.258835,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0148597,0,51,46,52.4,34.35,7,1,1,0,0,0,2,2,1,851.5,353854.78,36664.555,187679.56,0,1765.9905 -5310,6554,11796,11795,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.5572863,6.5113487,50,0,-15.748686,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.3609014,6.6338887,52.4,34.35,51,46,8.333333333333334,1,1,0,0,1,2,2,1,851.5,353854.78,36664.555,187679.56,0,1765.9905 -5311,6555,11797,11798,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8403983,7.6435971,0,6,3,-45.64999,0,-9,-9,2019,8,0,36,35,1,0,0,7.4018836,7.4018836,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.57,49.69,8.333333333333334,1,1,0,0,7,8,4,0,619,315526.16,0,0,0,2328.925 -5311,6555,11798,11797,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,7.7507286,8.269887,0,6,-3,-39.245754,0,-9,3,2019,9,0,39,47,1,0,0,8.9641733,8.9641733,0,0,0,0,0,1,1,0,0,0,57.57,49.69,57.16,56.15,10,1,1,0,0,6,8,4,0,619,315526.16,0,0,0,2328.925 -5311,6556,11799,-9,11797,11798,1,1,26,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1032.2073,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.02,58.85,-9,-9,8.333333333333334,1,1,1,0,0,8,1,0,1922,0,0,0,0,275.92239 -5312,6557,11800,11801,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,4.7714758,4.5867772,7,5,69.580696,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.5446486,50.29,23.1,25.34,33.37,0,1,1,0,0,0,13,2,1,567,-33208.742,0,84046.586,0,3296.0435 -5312,6557,11801,11800,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,36,-5,80.317085,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,25.34,33.37,50.29,23.1,5,1,1,0,0,0,13,2,1,567,-33208.742,0,84046.586,0,3296.0435 -5313,6558,11802,11803,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,5,1,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.3243022,0,54,45,40.59,42.99,7,1,1,0,0,0,6,1,1,494,28496.422,0,0,0,1104.5129 -5313,6558,11803,11802,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,57,-1,0,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,40.59,42.99,54,45,10,1,1,0,0,0,6,1,1,494,28496.422,0,0,0,1104.5129 -5314,6559,11804,-9,11806,11805,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-834.34387,-9,1,2,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1.4531636,0,42.3,57.54,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,1984,483771.91,0,0,0,186.28868 -5314,6560,11805,11806,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0547457,9.0615644,0,2,7,17.511705,0,-9,-9,2019,14,4,38,40,1,4,0,28.315613,28.315613,0,0,0,0,0,0,0,0,7.7930288,0,49.75,50.01,60.06,37.11,8.333333333333334,1,1,0,0,9,6,5,1,1505,733152.13,362642.81,218075.94,0,6612.9409 -5314,6560,11806,11805,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.9657545,8.9498796,0,2,-7,107.07673,0,2,2,2019,11,0,57,47,1,0,0,18.575199,18.575199,0,0,0,0,0,0,0,0,4.1072168,0,60.06,37.11,49.75,50.01,8.333333333333334,1,1,0,0,9,6,5,1,1505,733152.13,362642.81,218075.94,0,6612.9409 -5315,6561,11807,-9,11809,11810,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.6488,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 -5315,6561,11808,-9,11809,11810,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1034.916,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 -5315,6561,11809,11810,-9,-9,1,0,37,0,3,0,2,2,-9,0,1,0,0,0,16,-3,-.42106533,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.85,40.15,44.56,43.15,3.333333333333333,2,3,0,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 -5315,6561,11810,11809,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,7.755034,7.5364051,0,16,3,157.52126,0,3,1,2019,9,0,40,40,1,0,0,5.0018892,5.0018892,0,0,0,0,0,1,1,0,0,0,44.56,43.15,31.85,40.15,10,2,3,0,0,9,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 -5315,6561,11811,-9,11809,11810,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1003.6434,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,446.60001,-164000.31,18168.441,0,0,3092.2373 -5316,6562,11812,11813,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.6727142,7.6863542,0,3,13,74.102142,0,3,2,2019,9,0,40,8,1,0,0,6.2122784,6.2122784,0,0,0,0,0,0,0,0,7.0078278,0,53.99,48.04,40.67,46.13,8.333333333333334,1,1,0,0,9,7,3,1,1172.5,956049,675124.75,0,0,2058.3796 -5316,6562,11813,11812,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.3058887,7.379107,0,3,-13,-30.618029,0,-9,-9,2019,18,6,22,23,1,6,0,10.043314,10.043314,0,0,0,0,0,0,0,0,0,0,40.67,46.13,53.99,48.04,6.666666666666667,1,1,0,0,4,7,3,1,1172.5,956049,675124.75,0,0,2058.3796 -5317,6563,11814,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.624732,5.8350382,0,0,-1010.1818,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2019873,5.9016299,52.6,47.34,-9,-9,10,1,1,0,0,0,12,2,0,2000,419349.63,286363.63,167042.59,0,466.21878 -5318,6564,11815,11816,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.5306067,7.5331907,32,4,22.949594,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.7555289,7.7050333,57.06,57.76,37.25,55.98,8.333333333333334,1,1,0,0,10,10,5,0,896,1333075.5,938094.31,543208.94,51268.508,5271.8086 -5318,6564,11816,11815,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1637888,8.5520296,7.6865058,32,-4,97.922318,0,2,3,2019,19,7,25,25,1,7,0,22.299875,22.299875,0,0,0,0,0,0,0,0,8.672122,8.0332327,37.25,55.98,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,0,896,1333075.5,938094.31,543208.94,51268.508,5271.8086 -5318,6565,11817,-9,11816,11815,1,0,24,0,0,0,1,1,-9,0,4,7.966054,7.8675761,0,0,0,-967.25092,0,2,2,2019,10,1,35,30,1,1,1,6.0533142,6.0533142,0,0,0,0,0,0,0,0,5.5641994,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,10,3,0,812,182694.16,-82021.281,0,0,1222.6571 -5319,6566,11818,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.5618048,8.5110798,0,0,0,-1063.8848,0,2,3,2019,8,0,37,37,1,0,0,19.146992,19.146992,0,0,0,0,0,0,0,0,3.8099351,0,51.95,57.56,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,739,107410.38,249784.92,37696.398,48170.266,2140.4883 -5320,6567,11819,11820,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.1608906,7.2463202,0,17,-5,26.971281,0,1,1,2019,8,0,30,35,1,0,0,6.2465806,6.2465806,0,0,0,0,0,0,0,0,0,0,48.28,60.18,54.13,48.04,1.666666666666667,1,1,0,0,8,7,3,1,780,339661.03,140965.03,0,0,1873.2253 -5320,6567,11820,11819,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,6.6002054,6.174654,0,17,5,89.727654,0,-9,-9,2019,10,0,50,38,1,0,0,1.1615093,1.1615093,0,0,0,0,0,0,0,0,7.050138,0,54.13,48.04,48.28,60.18,8.333333333333334,1,1,0,0,10,7,3,1,780,339661.03,140965.03,0,0,1873.2253 -5321,6568,11821,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1049.3872,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.57,41.44,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,382,-305960.91,0,0,0,551.21967 -5322,6569,11822,11824,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.5061312,8.5136423,0,4,1,75.242622,0,-9,-9,2019,22,9,42,43,1,9,0,14.00203,14.00203,0,0,0,0,2,1,1,0,0,0,41.06,62.04,54.1,59.11,6.666666666666667,1,1,0,0,2,8,5,1,1115.3334,546864.31,262299.47,362227.28,228154.66,4592.29 -5322,6569,11823,-9,11824,11822,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.45129,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,5,1,1115.3334,546864.31,262299.47,362227.28,228154.66,4592.29 -5322,6569,11824,11822,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.6014004,8.6028986,0,4,-1,111.53292,0,2,1,2019,7,1,45,45,1,1,0,15.698229,15.698229,0,0,0,0,0,1,1,0,0,0,54.1,59.11,41.06,62.04,10,1,1,0,0,8,8,5,1,1115.3334,546864.31,262299.47,362227.28,228154.66,4592.29 -5323,6570,11825,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1000.8621,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,48.2,44.13,-9,-9,1.666666666666667,1,1,1,0,0,12,1,0,420,220645.75,0,0,0,895.93982 -5324,6571,11826,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.5896235,7.4256849,0,0,-1069.2798,0,2,2,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.4694576,7.8024807,58.73,16.63,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,628,182873.8,112669.7,351033.88,0,1661.9005 -5324,6572,11827,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.7989454,7.2125001,0,0,-990.13928,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0791826,7.8950987,48.68,46.62,-9,-9,0,1,1,0,0,1,10,3,1,409,518272.72,259672.22,189883.56,0,1939.5686 -5325,6573,11828,11829,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.5400319,6.5165005,45,6,53.936634,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.53978014,6.2641158,56.5,48.33,49.52,30.16,8.333333333333334,1,1,0,0,0,11,2,1,403,53821.398,-33092.609,173578.36,0,1488.0366 -5325,6573,11829,11828,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,45,-6,-77.056152,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.22285901,0,49.52,30.16,56.5,48.33,6.666666666666667,1,1,0,0,5,11,2,1,403,53821.398,-33092.609,173578.36,0,1488.0366 -5326,6574,11830,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0080166,7.8929658,0,0,0,-1118.5276,0,-9,-9,2019,10,0,45,21,1,0,0,6.9063892,6.9063892,0,0,0,0,27,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,187,-238652.52,0,0,0,1240.2087 -5327,6575,11831,11834,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,8.2041988,7.8229303,0,9,-2,23.10755,0,3,3,2019,12,0,36,25,1,0,0,9.4175291,9.4175291,0,0,0,0,2,1,1,0,0,0,41.48,52.55,51,55,6.666666666666667,1,1,0,0,10,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 -5327,6575,11832,-9,11831,11834,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-916.23663,-9,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.73,57.01,-9,-9,5,1,1,0,0,1,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 -5327,6575,11833,-9,11831,11834,1,1,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1165.546,-9,3,3,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31,33,-9,-9,3,1,1,-9,0,0,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 -5327,6575,11834,11831,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.308547,8.2982359,0,9,2,99.650688,0,2,2,2019,9,0,43,43,1,1,0,10.797976,10.797976,0,0,0,0,0,1,1,0,0,0,51,55,41.48,52.55,8,1,1,0,0,1,4,4,1,734.75,644880.19,260293.48,187231.63,0,3408.7607 -5328,6576,11835,-9,11836,11837,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-887.35559,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,5,1,438,406758.13,16252.328,326153.34,217809.25,3580.0571 -5328,6576,11836,11837,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.2258673,8.2736826,0,5,5,73.92601,0,-9,-9,2019,7,0,30,38,1,0,0,17.311216,17.311216,0,0,0,0,0,1,1,0,0,0,52.82,53.97,57.16,56.15,8.333333333333334,1,1,0,0,10,11,5,1,438,406758.13,16252.328,326153.34,217809.25,3580.0571 -5328,6576,11837,11836,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.5518436,8.63344,0,5,-5,-90.858017,0,1,2,2019,13,1,44,40,1,1,0,9.826664,9.826664,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.82,53.97,8.333333333333334,1,1,0,0,6,11,5,1,438,406758.13,16252.328,326153.34,217809.25,3580.0571 -5329,6577,11838,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.0836716,8.1520481,0,0,0,-957.99933,0,1,2,2019,21,9,22,21,1,9,0,17.290579,17.290579,0,0,0,0,7,1,1,0,3.2478707,0,41.27,49.97,-9,-9,6.666666666666667,1,1,0,0,11,6,3,1,496,-34101.297,47295.887,160278.95,33083.52,1669.7822 -5329,6577,11839,-9,11838,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1145.9321,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,6,3,1,496,-34101.297,47295.887,160278.95,33083.52,1669.7822 -5330,6578,11840,11842,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,10,-28,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,59.7,53.75,35.58,25.87,8.333333333333334,1,1,0,0,0,11,1,0,670,-41025.699,0,0,0,2498.584 -5330,6578,11841,-9,11840,11842,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2691,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,670,-41025.699,0,0,0,2498.584 -5330,6578,11842,11840,-9,-9,1,1,61,0,3,0,3,3,-9,1,1,0,0,0,10,28,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.58,25.87,59.7,53.75,5,1,1,0,0,0,11,1,0,670,-41025.699,0,0,0,2498.584 -5331,6579,11843,11844,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.0672531,8.0871344,44,4,60.224136,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6309948,7.9552426,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,4,6,3,1,461,839945.63,625038.44,278349.72,0,3143.6377 -5331,6579,11844,11843,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9482856,6.7518749,8,-4,141.64423,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1803999,6.8395982,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,7,6,3,1,461,839945.63,625038.44,278349.72,0,3143.6377 -5332,6580,11845,11846,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.5528784,6.6633806,7,-1,4.377459,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0139971,6.9223905,58.32,50.22,59.53,56.44,10,1,1,0,0,0,11,3,1,502.5,1064835.6,981540.88,274320.72,26419.568,2844.1719 -5332,6580,11846,11845,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.6405597,7.8131108,7,1,39.740543,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5470386,7.9045544,59.53,56.44,58.32,50.22,10,1,1,0,0,0,11,3,1,502.5,1064835.6,981540.88,274320.72,26419.568,2844.1719 -5333,6581,11847,11848,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,0,0,0,29,0,-142.97177,0,1,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.4921454,0,52.91,55.33,55.3,55.6,10,1,1,0,0,0,5,5,1,345.5,3776035,2612970,609412.25,0,2357.7607 -5333,6581,11848,11847,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.1050739,9.13309,0,31,0,-39.003193,0,1,2,2019,11,0,41,42,1,0,0,25.538958,25.538958,0,0,0,0,0,0,0,0,1.5722466,0,55.3,55.6,52.91,55.33,10,1,1,0,0,13,5,5,1,345.5,3776035,2612970,609412.25,0,2357.7607 -5334,6582,11849,11850,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,7,9,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.11,12.12,51,46,10,1,1,0,0,0,13,1,1,1156,70795.844,0,91148.203,0,1201.9802 -5334,6582,11850,11849,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,7,0,0,-9,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,60.11,12.12,8,1,1,0,0,0,13,1,1,1156,70795.844,0,91148.203,0,1201.9802 -5334,6583,11851,-9,11850,11849,1,1,39,0,0,0,3,3,-9,0,4,8.1257601,8.4016466,0,0,0,-991.6709,0,2,3,2019,11,1,80,72,1,1,0,4.8447175,4.8447175,0,0,0,0,0,1,1,0,3.8229835,0,37.3,58.69,-9,-9,3.333333333333333,1,1,0,0,7,13,4,1,218,149773.78,87212.664,0,0,1889.1752 -5335,6584,11852,11853,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,4.7943935,4.3559475,50,11,26.417223,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.6378975,5.0206261,52.29,25.7,55.65,41.83,10,1,1,0,0,0,6,2,1,1825,502558.31,114612.55,146142.22,0,1512.5413 -5335,6584,11853,11852,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.633296,5.8416591,50,-11,-107.84667,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6474223,55.65,41.83,52.29,25.7,8.333333333333334,1,1,0,0,0,6,2,1,1825,502558.31,114612.55,146142.22,0,1512.5413 -5336,6585,11854,11855,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.9197154,6.0793581,9,2,102.38185,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5954821,5.7273383,58.32,50.22,55.96,49.93,8.333333333333334,1,1,0,0,3,5,2,1,407,796164,253986.3,328128.13,0,1303.0129 -5336,6585,11855,11854,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,4.3208771,4.3446174,9,-2,-144.48465,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.68929863,4.3927917,55.96,49.93,58.32,50.22,6.666666666666667,1,1,0,0,5,5,2,1,407,796164,253986.3,328128.13,0,1303.0129 -5337,6586,11856,11857,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,9.7394867,9.8381386,8.8017502,15,5,19.586782,0,1,3,2019,12,2,42,28,1,2,0,37.867096,37.867096,0,0,0,0,0,1,1,0,4.7911277,8.9303694,41.12,55.95,51.14,60.45,6.666666666666667,1,1,0,0,11,6,5,1,3355,5117442,3246428.5,681329.69,0,11024.844 -5337,6586,11857,11856,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.2619343,8.0439129,0,15,-5,-73.868568,0,2,2,2019,8,0,40,40,1,0,0,11.796811,11.796811,0,0,0,0,0,1,1,0,4.4741001,0,51.14,60.45,41.12,55.95,8.333333333333334,1,1,0,0,10,6,5,1,3355,5117442,3246428.5,681329.69,0,11024.844 -5338,6587,11858,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0215912,7.9818373,0,0,0,-1109.4736,0,3,3,2019,6,0,32,50,1,0,0,10.986702,10.986702,0,0,0,0,14.5,1,1,0,2.5927558,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1011,162393.72,51988.332,0,0,988.4245 -5339,6588,11859,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.8497677,8.4295435,0,0,-986.58154,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.356287,8.6680851,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,6,6,5,1,788,-28893.984,-33117.449,0,0,5213.5396 -5340,6589,11860,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,6.5750532,6.7412348,0,0,0,-1071.5366,0,2,2,2019,7,0,20,30,1,0,0,5.2577662,5.2577662,0,0,0,0,0,0,0,0,5.7287226,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,7,4,2,1,341,89246.844,0,0,0,912.10693 -5341,6590,11861,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.3622942,8.7017241,0,0,0,-1114.9104,-9,-9,3,2019,12,2,51,0,1,2,0,14.314814,14.314814,0,0,0,0,2,0,0,0,0,0,52.77,55.33,-9,-9,5,1,1,0,0,7,9,5,0,538,481330.81,0,0,0,1413.7065 -5342,6591,11862,-9,11863,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.4698,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,797.5,-193262.97,-64290.57,0,0,2113.3975 -5342,6591,11863,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.1039295,7.4741092,5.2500496,0,0,-986.30084,-9,3,3,2019,17,5,20,0,1,5,0,7.4764414,7.4764414,0,0,0,0,0,1,1,0,4.8706617,0,34.48,61.03,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,797.5,-193262.97,-64290.57,0,0,2113.3975 -5343,6592,11864,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.2970076,8.4263582,0,0,0,-1066.1023,0,3,3,2019,11,0,38,78,1,0,0,15.83718,15.83718,0,0,0,0,0,0,0,0,0,0,45.56,45.13,-9,-9,5,2,3,0,0,10,6,5,1,4705,122437.79,102518.63,101305.91,24063.02,1386.4438 -5344,6593,11865,11866,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,0,0,0,2,0,21.530674,0,3,3,2019,11,1,0,60,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,23.72,62.24,34.95,34.57,6.666666666666667,1,1,1,0,3,10,3,0,873,-32280.439,4632.1382,0,0,1861.9362 -5344,6593,11866,11865,-9,-9,1,0,37,0,1,0,3,3,-9,1,2,8.0121851,7.908298,0,2,9,-29.821264,0,3,3,2019,20,8,24,20,1,8,0,13.617037,13.617037,0,0,0,0,0,1,1,0,0,0,34.95,34.57,23.72,62.24,0,1,1,0,0,2,10,3,0,873,-32280.439,4632.1382,0,0,1861.9362 -5344,6593,11867,-9,11866,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1010.5004,-9,3,-9,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.38,-9,-9,0,1,1,0,0,0,10,3,0,873,-32280.439,4632.1382,0,0,1861.9362 -5345,6594,11868,11869,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5888958,7.5386043,8,2,120.4041,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9396906,7.3229556,49.04,55.86,45.41,52.06,10,1,1,0,0,0,8,3,0,385.5,750411.5,431367.59,225451.67,0,2488.0459 -5345,6594,11869,11868,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.2904124,4.9685001,8,-2,141.44331,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4333067,45.41,52.06,49.04,55.86,8.333333333333334,1,1,0,0,0,8,3,0,385.5,750411.5,431367.59,225451.67,0,2488.0459 -5346,6595,11870,11871,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8524456,8.3144531,0,4,-4,-35.296436,0,1,2,2019,11,0,44,43,1,0,0,14.640706,14.640706,0,0,0,0,0,1,1,0,5.1526952,0,58.15,52.91,43.3,42.91,6.666666666666667,1,1,0,0,6,7,5,1,229,-74530.711,70911.695,285349.81,226264.59,3666.7373 -5346,6595,11871,11870,-9,-9,1,0,31,0,0,0,1,1,-9,1,2,8.8020086,8.6628189,0,4,4,39.472298,0,-9,-9,2019,11,0,44,46,1,0,0,18.266306,18.266306,0,0,0,0,0,1,1,0,0,0,43.3,42.91,58.15,52.91,8.333333333333334,1,1,0,0,3,7,5,1,229,-74530.711,70911.695,285349.81,226264.59,3666.7373 -5347,6596,11872,11873,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,7,-24,-19.67388,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,1.8620254,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,0,6,2,1,2487.6667,516210.66,406212.78,93005.594,68506.609,1500.5575 -5347,6596,11873,11872,-9,-9,1,1,66,0,3,0,1,1,-9,0,4,7.4628735,7.1166897,0,7,24,-6.617816,0,-9,-9,2019,7,0,50,50,1,0,0,3.4194832,3.4194832,0,0,0,0,0,1,1,0,2.2401226,0,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,9,6,2,1,2487.6667,516210.66,406212.78,93005.594,68506.609,1500.5575 -5347,6596,11874,-9,11872,11873,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-936.16156,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,1,2487.6667,516210.66,406212.78,93005.594,68506.609,1500.5575 -5348,6597,11875,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.7699695,8.0189629,0,0,0,-1011.8943,0,2,2,2019,14,2,39,45,1,2,0,7.4585109,7.4585109,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,4,6,3,0,262,-118709.83,-56987.215,0,0,993.67267 -5349,6598,11876,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,6.3969278,6.4457021,0,0,-1068.8887,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,6.302824,0,46.1,59.99,-9,-9,8.333333333333334,3,4,0,0,3,1,2,0,1476,113962,0,0,0,1208.3927 -5350,6599,11877,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2150512,7.651484,0,0,0,-1074.1747,0,2,3,2019,12,0,25,25,1,0,0,7.3966231,7.3966231,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,528,22355.93,42254.18,0,0,510.30496 -5351,6600,11878,11879,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,1,1,85.75946,-9,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.88,25.43,53,47,3.333333333333333,1,1,0,1,0,11,2,1,148.5,232902.31,120731.05,383881.44,0,2897.7544 -5351,6600,11879,11878,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,4.8012748,5.1508608,1,-1,25.073895,-9,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.522414,5.1693826,53,47,41.88,25.43,8,1,1,0,0,0,11,2,1,148.5,232902.31,120731.05,383881.44,0,2897.7544 -5352,6601,11880,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.6214619,8.9222574,0,0,-1020.1782,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.617094,8.7431288,62.39,56.71,-9,-9,10,1,1,0,0,6,10,5,0,704,676784.63,236746.67,202735.28,0,4116.957 -5353,6602,11881,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.6870375,8.7874527,0,0,0,-957.48907,0,2,1,2019,8,2,43,41,1,2,0,22.630812,22.630812,0,0,0,0,0,0,0,0,1.0292689,0,47.3,51.13,-9,-9,1.666666666666667,1,1,0,0,13,4,5,1,263,332398.28,209555.7,0,0,2265.0205 -5354,6603,11882,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-994.90729,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,6.0495505,0,0,1,1,0,0,0,40.23,25.31,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,416,430752.84,0,0,0,1287.8937 -5355,6604,11883,11884,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,9.1311283,9.0837049,13,1,-32.830875,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,8.7240114,5.4127231,19.01,22.64,38.59,60.85,0,1,1,0,0,0,4,5,1,943.5,347283.22,-11139.262,151938.31,52140.691,6211.5088 -5355,6604,11884,11883,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,13,-1,-46.989132,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,38.59,60.85,19.01,22.64,3.333333333333333,1,1,0,0,0,4,5,1,943.5,347283.22,-11139.262,151938.31,52140.691,6211.5088 -5356,6605,11885,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-939.62061,-9,-9,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,31.3,59.96,-9,-9,3.333333333333333,2,3,0,1,0,7,1,0,496,49282.727,0,0,0,242.47615 -5357,6606,11886,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.221972,7.3402753,0,0,-1092.0105,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4575834,7.5435319,46.39,60.99,-9,-9,10,1,1,0,0,0,6,3,1,1237,341733.88,184184.03,198185,0,1377.8651 -5358,6607,11887,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8131804,7.6626644,0,0,0,-1037.4557,0,3,2,2019,8,0,39,36,1,0,0,8.5802326,8.5802326,0,0,0,0,0,0,0,0,3.178719,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,691,-533070.25,0,95064.016,40179.23,1882.6525 -5358,6608,11888,-9,11887,-9,1,1,38,0,0,0,2,2,-9,0,4,0,6.7085414,6.6201253,0,0,-1076.7124,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,6.5076742,0,57.16,56.15,-9,-9,5,1,1,0,0,0,12,2,1,1690,396966.53,0,0,0,-108.21992 -5359,6609,11889,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,9.255188,8.9787731,0,0,-1098.7753,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0171599,8.9348421,57.16,56.15,-9,-9,10,1,1,0,0,0,5,5,1,903,1643679,1309168.9,184755.73,0,4827.6616 -5360,6610,11890,11891,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1216564,7.9178171,0,5,0,-14.579458,0,2,-9,2019,16,4,38,37,1,4,0,8.9213543,8.9213543,0,0,0,0,0,0,0,0,8.1366873,0,43.67,61.06,57.16,56.15,8.333333333333334,1,1,0,0,5,10,5,1,1136,1293314,727811.31,215838.16,38375.078,5407.5083 -5360,6610,11891,11890,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0839844,9.1652956,0,5,0,-127.87137,0,-9,-9,2019,6,0,38,42,1,0,0,30.298653,30.298653,0,0,0,0,0,0,0,0,3.3071108,0,57.16,56.15,43.67,61.06,8.333333333333334,1,1,0,0,8,10,5,1,1136,1293314,727811.31,215838.16,38375.078,5407.5083 -5361,6611,11892,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,4,7.9844985,8.0500603,0,0,0,-993.65088,-9,-9,-9,2019,23,8,38,0,1,8,0,9.9208193,9.9208193,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,514,268966.16,-97592.563,0,0,472.34201 -5362,6612,11893,11894,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.3725915,7.0324936,0,9,3,62.448193,0,-9,-9,2019,9,0,40,45,1,0,0,5.4070497,5.4070497,0,0,0,0,2,0,0,0,7.7935953,0,45.91,59.89,22.07,57.66,8.333333333333334,1,1,0,0,10,2,4,1,1475,343957.5,-17015.418,265483.44,0,3287.0874 -5362,6612,11894,11893,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0654345,7.8711286,0,9,-3,-1.6898373,0,2,2,2019,26,12,40,37,1,12,0,9.3036318,9.3036318,0,0,0,0,7,0,0,0,0,0,22.07,57.66,45.91,59.89,3.333333333333333,1,1,0,0,9,2,4,1,1475,343957.5,-17015.418,265483.44,0,3287.0874 -5362,6613,11895,-9,11894,11893,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1018.2495,-9,2,2,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,29.62,62.08,-9,-9,10,1,1,0,0,3,2,1,1,285,0,0,0,0,0 -5362,6614,11896,-9,11894,11893,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1046.3893,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,1255,100918.38,0,0,0,1.7336953 -5363,6615,11897,11898,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,2.689328,2.8422456,1,1,-64.750969,-9,-9,-9,2019,23,11,0,0,4,11,0,0,0,1,0,6.0543971,0,0,1,1,0,0,2.7107949,40.72,26.18,57.43,25.2,1.666666666666667,1,1,0,0,0,11,2,1,967,337812.63,39976.621,0,0,892.17621 -5363,6615,11898,11897,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,1,-1,11.272646,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.43,25.2,40.72,26.18,8.333333333333334,1,1,0,0,5,11,2,1,967,337812.63,39976.621,0,0,892.17621 -5363,6616,11899,-9,11897,11898,1,1,31,0,0,0,3,3,-9,0,2,7.2067499,7.4296379,0,0,0,-963.0376,-9,3,2,2019,17,5,39,0,1,5,0,5.9658575,5.9658575,0,0,0,0,0,1,1,0,0,0,40.65,26.16,-9,-9,3.333333333333333,1,1,0,1,4,11,3,1,463,72492.375,57198.188,0,0,708.52692 -5364,6617,11900,-9,11903,11902,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.9906,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 -5364,6617,11901,-9,11903,11902,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-925.0459,-9,2,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6.666666666666667,2,3,0,0,13,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 -5364,6617,11902,11903,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.4026337,8.5498934,0,23,8,-17.844893,0,3,3,2019,12,0,42,60,1,0,0,13.081779,13.081779,0,0,0,0,0,1,1,0,0,0,42.84,55.93,48.76,53.24,8.333333333333334,2,3,0,0,13,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 -5364,6617,11903,11902,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,8.1382523,8.1950865,0,23,-8,86.642776,0,2,2,2019,12,0,37,36,1,0,0,12.532573,12.532573,0,0,0,0,0,1,1,0,0,0,48.76,53.24,42.84,55.93,6.666666666666667,2,3,0,0,13,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 -5364,6617,11904,-9,11903,11902,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.5775,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,962.79999,224922.36,76396.438,352553.25,157648.83,3491.1853 -5364,6618,11905,-9,11903,11902,1,1,19,0,3,0,2,2,-9,0,4,0,0,0,0,0,-899.14111,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.57162279,0,48.53,58.91,-9,-9,6.666666666666667,2,3,0,0,2,8,1,1,4744,0,0,0,0,-179.74901 -5365,6619,11906,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-997.44611,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,26.83,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,148,-18847.549,0,0,0,1371.9834 -5366,6620,11907,11908,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.5640378,6.3821707,9,3,50.437363,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,3.4793918,0,7,1,1,0,3.1601672,6.4644423,49.34,47.5,52.56,39.35,8.333333333333334,1,1,0,0,0,12,2,1,537.5,467778.47,245418.03,265968.38,0,2082.3066 -5366,6620,11908,11907,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.396987,6.2331285,9,-3,5.4391274,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.6987062,6.5976577,52.56,39.35,49.34,47.5,8.333333333333334,1,1,0,0,0,12,2,1,537.5,467778.47,245418.03,265968.38,0,2082.3066 -5367,6621,11909,11910,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.9897943,7.4589725,10,1,25.463068,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.5459352,7.6075869,57.06,57.76,58.32,50.22,8.333333333333334,1,1,0,0,6,13,4,1,571.5,1458216.6,899615.13,297992.38,0,2285.3977 -5367,6621,11910,11909,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.775979,7.8361301,10,-1,47.086494,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.8912797,7.7644424,58.32,50.22,57.06,57.76,10,1,1,0,0,8,13,4,1,571.5,1458216.6,899615.13,297992.38,0,2285.3977 -5368,6622,11911,11913,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.8205137,9.0718098,0,7,-2,-67.958496,0,3,3,2019,9,1,50,45,1,1,0,18.684793,18.684793,0,0,0,0,0,1,1,0,0,0,59,31.27,29.12,43.7,5,1,1,0,0,8,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 -5368,6622,11912,-9,11913,11911,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.26862,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 -5368,6622,11913,11911,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.0323291,6.9578533,0,7,2,60.744701,0,2,1,2019,16,4,12,10,1,4,0,8.3919535,8.3919535,0,0,0,0,7,1,1,0,0,0,29.12,43.7,59,31.27,6.666666666666667,1,1,0,0,2,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 -5368,6622,11914,-9,11913,11911,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.28302,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,417.75,808612.63,449323.47,313191.34,87522.906,2717.9373 -5369,6623,11915,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.9382672,7.3864141,6.4905906,0,0,-1055.1586,0,2,2,2019,10,1,21,16,1,1,0,5.4660668,5.4660668,0,0,0,0,0,1,1,0,6.4035206,0,50.43,53.69,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,457.5,107380.61,99513.656,0,0,1649.6616 -5369,6623,11916,-9,11915,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1016.3657,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,2,1,457.5,107380.61,99513.656,0,0,1649.6616 -5370,6624,11917,-9,-9,-9,1,1,50,1,1,0,2,2,-9,1,2,0,0,0,0,0,-1009.2411,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,37.61,-9,-9,3.333333333333333,1,1,0,1,1,9,1,0,1792,-175877.72,0,0,0,718.69135 -5370,6625,11918,-9,11919,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.3147,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,1492.5,12888.884,0,0,0,606.30438 -5370,6625,11919,-9,-9,11917,1,0,23,1,1,0,3,3,-9,0,4,0,0,0,0,0,-971.37946,0,-9,2,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,36.51,61.56,-9,-9,8.333333333333334,1,1,1,0,1,9,1,0,1492.5,12888.884,0,0,0,606.30438 -5371,6626,11920,11921,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.5864735,8.3848658,0,6,-3,90.263748,0,1,2,2019,10,1,53,52,1,1,0,12.56946,12.56946,0,0,0,0,0,0,0,0,0,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,7,6,4,1,505.5,28407.93,13219.602,0,0,2710.9827 -5371,6626,11921,11920,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,0,0,0,6,3,152.58864,1,-9,-9,2019,8,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,5,6,4,1,505.5,28407.93,13219.602,0,0,2710.9827 -5372,6627,11922,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.32788,0,-9,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,1434,-273953.03,0,0,0,893.07233 -5373,6628,11923,11924,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,5.4942465,5.397243,4,4,-91.124405,0,-9,-9,2019,7,0,0,35,4,0,0,0,0,0,0,0,0,2,0,0,0,7.9448557,5.6970139,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,8,12,2,1,526,1109908.1,264844,500762.28,0,3319.8237 -5373,6628,11924,11923,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.0789256,7.0045662,0,4,-4,137.58096,0,1,2,2019,7,0,20,30,1,0,0,5.8333006,5.8333006,0,0,0,0,0,0,0,0,7.3137259,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,6,12,2,1,526,1109908.1,264844,500762.28,0,3319.8237 -5374,6629,11925,11926,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,8.8556719,8.6694403,50,8,2.0187683,0,1,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.6716681,51.83,57.2,63.41,39.7,8.333333333333334,1,1,0,0,0,10,4,1,1282.5,983085.19,171123.69,681208.5,0,3620.7026 -5374,6629,11926,11925,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,50,-8,-98.301483,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5105782,0,63.41,39.7,51.83,57.2,10,1,1,0,0,0,10,4,1,1282.5,983085.19,171123.69,681208.5,0,3620.7026 -5375,6630,11927,11928,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.8767824,8.8012009,4.6601925,5,2,156.99681,0,3,3,2019,12,0,30,30,1,0,0,19.647463,19.647463,0,0,0,0,0,0,0,0,5.5320253,4.703227,52,54.51,46.33,55.93,6.666666666666667,1,1,0,0,6,5,4,1,1880,185572.17,83247.883,143627.25,82873,2646.6992 -5375,6630,11928,11927,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.3873663,6.5791907,0,5,-2,63.517151,0,3,3,2019,10,0,14,15,1,0,0,4.0704584,4.0704584,0,0,0,0,0,0,0,0,4.2881503,0,46.33,55.93,52,54.51,8.333333333333334,1,1,0,0,4,5,4,1,1880,185572.17,83247.883,143627.25,82873,2646.6992 -5376,6631,11929,11930,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,49,-8,-135.7173,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.733103,0,58.61,40.49,57.31,50.61,10,1,1,0,0,0,10,4,1,396.5,2152110,1143741.8,439940.75,174618.25,3687.228 -5376,6631,11930,11929,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.6105232,8.73248,49,8,.67901158,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9344816,8.8395176,57.31,50.61,58.61,40.49,8.333333333333334,1,1,0,0,0,10,4,1,396.5,2152110,1143741.8,439940.75,174618.25,3687.228 -5377,6632,11931,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.4033327,8.4290018,0,0,0,-1132.2526,0,2,2,2019,9,0,39,40,1,0,0,14.309256,14.309256,0,0,0,0,0,0,0,0,4.197237,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,297,993603.31,293340.69,287299.34,0,2045.4747 -5378,6633,11932,11933,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,7.623776,9.0861616,9.0853539,44,3,-7.8525791,0,2,2,2019,11,1,46,45,1,1,0,6.4918299,6.4918299,0,0,0,0,0,0,0,0,8.7706413,4.5293822,59.32,25.72,53.75,54.92,6.666666666666667,1,1,0,0,12,9,5,1,546,2273971,1692005,482948.81,0,5557.998 -5378,6633,11933,11932,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.4883623,8.1800518,4.8571286,44,-3,-99.285088,0,2,2,2019,4,0,14,20,1,0,0,31.285086,31.285086,0,0,0,0,0,0,0,0,0,5.2771616,53.75,54.92,59.32,25.72,8.333333333333334,1,1,0,0,12,9,5,1,546,2273971,1692005,482948.81,0,5557.998 -5379,6634,11934,-9,-9,-9,1,0,39,0,2,0,3,3,-9,1,4,0,0,0,0,0,-980.1687,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,1,0,2,4,1,0,431.33334,203477.67,0,0,0,2559.6956 -5379,6634,11935,-9,11934,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.69739,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,4,1,0,431.33334,203477.67,0,0,0,2559.6956 -5379,6634,11936,-9,11934,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1135.0029,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,4,1,0,431.33334,203477.67,0,0,0,2559.6956 -5379,6635,11937,-9,11934,-9,1,1,20,0,2,0,2,2,-9,0,5,7.3885398,7.8092113,0,0,0,-1042.2766,0,3,-9,2019,7,0,55,40,1,0,1,4.6837959,4.6837959,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,5,1,1,0,0,1,4,3,0,112,23378.52,0,34039.434,105329.7,673.34253 -5380,6636,11938,11939,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,8.8413467,8.9168692,0,8,8,110.50776,0,3,2,2019,17,5,20,25,1,5,0,39.226639,39.226639,1,0,12.23631,0,0,1,1,0,0,0,34.6,59.57,60.13,49.27,0,1,1,0,0,10,10,5,0,585.5,2312501,1227544,798644.88,0,5835.8867 -5380,6636,11939,11938,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7223673,7.8281493,0,8,-8,51.636063,0,2,1,2019,4,0,25,30,1,0,0,11.052584,11.052584,0,0,0,0,0,1,1,0,7.9324713,0,60.13,49.27,34.6,59.57,8.333333333333334,1,1,0,0,10,10,5,0,585.5,2312501,1227544,798644.88,0,5835.8867 -5381,6637,11940,11941,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.3620372,6.7182093,52,-2,-111.52834,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,6.839191,58.87,45.76,54.78,34.44,8.333333333333334,1,1,0,0,0,2,2,1,974.5,-1124.1172,59963.246,94757.75,0,1696.3073 -5381,6637,11941,11940,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,52,2,-77.872978,0,3,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,2.2380462,0,54.78,34.44,58.87,45.76,8.333333333333334,1,1,0,0,0,2,2,1,974.5,-1124.1172,59963.246,94757.75,0,1696.3073 -5382,6638,11942,-9,11943,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.80573,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,171.5,-154987.41,51793.281,85590.828,46258.281,2278.9978 -5382,6638,11943,-9,-9,-9,1,0,35,0,3,0,1,1,-9,0,5,7.0777283,6.6985736,0,0,0,-959.42157,-9,2,2,2019,12,0,16,0,1,0,0,7.9328775,7.9328775,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,8,2,2,0,171.5,-154987.41,51793.281,85590.828,46258.281,2278.9978 -5383,6639,11944,-9,11946,11948,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-1053.9485,-9,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 -5383,6639,11945,-9,11946,11948,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.44049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 -5383,6639,11946,11948,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.6182971,6.9816566,6.1908741,3,-1,37.074703,0,-9,-9,2019,15,3,10,5,1,3,0,7.2468686,7.2468686,0,0,0,0,0,1,1,0,6.8425341,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 -5383,6639,11947,-9,11946,11948,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.9245,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 -5383,6639,11948,11946,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.8198128,8.2974091,0,3,1,-82.064781,0,2,2,2019,13,1,38,39,1,1,0,17.590487,17.590487,0,0,0,0,0,1,1,0,4.8881416,0,54.13,48.04,48.28,60.18,6.666666666666667,1,1,0,0,9,6,4,1,1492.2,358824.63,251115.2,168791.17,0,3559.4226 -5384,6640,11949,11950,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,4.993701,5.4917288,45,0,2.6501651,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.011034,5.1310096,48.87,58.55,35.79,52.24,8.333333333333334,1,1,0,0,0,2,2,1,881,628067,598740.88,158551.31,0,1869.7798 -5384,6640,11950,11949,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.918581,6.7226052,45,0,-16.24523,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.7147541,6.7897468,35.79,52.24,48.87,58.55,8.333333333333334,1,1,0,0,1,2,2,1,881,628067,598740.88,158551.31,0,1869.7798 -5385,6641,11951,11952,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.9536257,9.2442274,0,9,-1,-18.150949,0,1,2,2019,6,0,40,45,1,0,0,21.707203,21.707203,0,0,0,0,0,1,1,0,0,0,55.36,51.57,32.72,53.51,6.666666666666667,4,2,0,0,11,7,5,0,356.33334,-68316.258,6437.0156,0,0,6407.8345 -5385,6641,11952,11951,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.6886711,8.4158745,0,9,1,-42.205143,0,1,2,2019,23,7,60,80,1,7,0,10.057986,10.057986,0,0,0,0,0,1,1,0,8.1118746,0,32.72,53.51,55.36,51.57,3.333333333333333,4,2,0,0,11,7,5,0,356.33334,-68316.258,6437.0156,0,0,6407.8345 -5385,6641,11953,-9,11952,11951,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.57501,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,5,0,356.33334,-68316.258,6437.0156,0,0,6407.8345 -5386,6642,11954,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0469923,8.2416792,0,0,0,-1001.9785,-9,3,3,2019,11,0,38,0,1,0,0,12.703645,12.703645,0,0,0,0,0,1,1,0,1.3960577,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,1452,379526.78,327645.06,167906.48,107230.73,1744.2666 -5387,6643,11955,11956,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6435413,8.2290163,0,6,0,-98.26963,0,-9,-9,2019,6,0,42,42,1,0,0,14.040511,14.040511,0,0,0,0,0,0,0,0,0,0,50.77,50.99,54.45,56.22,8.333333333333334,1,1,0,0,9,12,5,1,1878,650218.13,386284.38,172889.98,41320.93,2712.1392 -5387,6643,11956,11955,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.522254,7.6497135,0,31,0,-91.871086,0,3,2,2019,9,1,27,26,1,1,0,8.3925753,8.3925753,0,0,0,0,0,0,0,0,0,0,54.45,56.22,50.77,50.99,10,1,1,0,0,9,12,5,1,1878,650218.13,386284.38,172889.98,41320.93,2712.1392 -5388,6644,11957,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,4.870965,5.3165979,0,0,-968.01404,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9913096,5.0477228,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,1183,-95783.969,-11231.893,158422.77,0,1073.3485 -5389,6645,11958,11960,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,9.3038254,9.2704029,0,23,4,43.188866,0,2,2,2019,10,0,48,53,1,0,0,28.927925,28.927925,0,0,0,0,0,0,0,0,3.2540021,0,52.99,51.28,54.79,55.86,8.333333333333334,1,1,0,0,10,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 -5389,6645,11959,-9,11960,11958,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.9397,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 -5389,6645,11960,11958,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.251543,8.1847935,0,23,-4,-24.897125,0,2,3,2019,7,0,37,37,1,0,0,12.235115,12.235115,0,0,0,0,0,0,0,0,0,0,54.79,55.86,52.99,51.28,8.333333333333334,1,1,0,0,10,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 -5389,6645,11961,-9,11960,11958,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-980.68573,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,994.75,829371.88,404299.38,276207.38,122263.13,4755.1064 -5389,6646,11962,-9,11960,11958,1,0,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1019.6578,-9,2,2,2019,11,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,222,-150665.33,0,0,0,0 -5390,6647,11963,11964,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.5400133,7.5355792,0,26,5,29.054012,0,2,2,2019,11,1,45,45,1,1,0,4.5472879,4.5472879,0,0,0,0,2,0,0,0,.30023864,0,51.43,45.6,47.64,31.09,6.666666666666667,1,1,0,0,9,9,3,1,515,32229.809,109524.37,0,0,1897.6809 -5390,6647,11964,11963,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,7.4866629,7.5107975,0,26,-5,25.913013,0,2,2,2019,16,4,20,21,1,4,0,8.37889,8.37889,0,0,0,0,2,0,0,0,0,0,47.64,31.09,51.43,45.6,5,1,1,0,0,9,9,3,1,515,32229.809,109524.37,0,0,1897.6809 -5391,6648,11965,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.5749311,8.0016298,0,0,-924.84052,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.722754,7.8707285,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,755,1039457.3,246746.3,773863.94,0,1983.843 -5391,6649,11966,-9,11965,-9,1,1,35,0,0,0,2,2,-9,0,3,9.2487984,9.1519775,0,0,0,-945.26935,0,2,3,2019,6,1,30,30,1,1,0,34.586468,34.586468,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,4,2,0,1,3,8,5,1,210,320256.28,26981.574,367193.09,149166.23,3193.2495 -5392,6650,11967,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.33838,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,170,0,0,0,0,757.97363 -5393,6651,11968,11969,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.2158165,7.9068785,0,6,12,107.28593,0,3,2,2019,6,0,38,38,1,0,0,10.321718,10.321718,0,0,0,0,0,0,0,0,3.3031533,0,55.96,49.93,42.38,45.49,8.333333333333334,1,1,0,0,7,5,5,1,773.5,357367.81,356470.72,131853.66,157633.14,2336.2109 -5393,6651,11969,11968,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.3257742,8.2005157,0,6,-12,-36.905964,0,2,2,2019,19,8,40,37,1,8,0,10.023634,10.023634,0,0,0,0,0,0,0,0,4.6570024,0,42.38,45.49,55.96,49.93,6.666666666666667,1,1,0,0,7,5,5,1,773.5,357367.81,356470.72,131853.66,157633.14,2336.2109 -5394,6652,11970,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.3348475,9.1202879,3.9091501,0,0,-968.70557,0,2,2,2019,14,4,40,48,1,4,0,24.620987,24.620987,0,0,0,0,2,0,0,0,4.3012691,0,47.78,48.15,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,862,1278247.4,360545.44,239393.58,0,3355.8213 -5395,6653,11971,11972,-9,-9,1,1,61,1,5,0,3,3,-9,0,3,8.1561022,8.3223219,0,9,5,23.30822,0,-9,-9,2019,10,0,40,0,1,1,0,8.6243877,8.6243877,0,0,0,0,0,1,1,0,0,0,51,49,38.2,31.47,7,2,3,0,0,9,5,2,1,422.5,1163126.3,152326.84,433120.5,15859.104,2303.8789 -5395,6653,11972,11971,-9,-9,1,0,56,1,5,0,3,3,-9,1,1,0,0,0,9,-5,24.624937,-9,2,2,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,31.47,51,49,1.666666666666667,2,3,0,0,0,5,2,1,422.5,1163126.3,152326.84,433120.5,15859.104,2303.8789 -5395,6654,11973,-9,11972,11971,1,1,26,1,5,0,1,1,-9,0,4,7.7772908,7.962389,0,0,0,-962.95898,-9,3,3,2019,10,0,40,0,1,1,1,8.3711491,8.3711491,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,9,5,4,1,906,140699.3,0,0,0,1726.2065 -5395,6655,11974,-9,11972,11971,1,1,31,1,5,0,2,2,-9,0,4,0,0,0,0,0,-1110.6918,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,5,5,1,1,1312,416175.84,0,0,0,0 -5395,6656,11975,-9,11981,11977,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-919.83105,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 -5395,6656,11976,-9,11981,11977,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1005.7386,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 -5395,6656,11977,11981,-9,-9,1,1,35,1,5,0,1,1,-9,0,4,8.552393,8.5014534,0,7,3,39.231163,0,-9,-9,2019,10,0,35,36,1,1,0,19.159292,19.159292,0,0,0,0,0,1,1,0,0,0,50,57,60.12,54.8,7,2,3,0,0,6,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 -5395,6656,11978,-9,11981,11977,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-865.5545,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 -5395,6656,11979,-9,11981,11977,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-939.94934,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 -5395,6656,11980,-9,11981,11977,1,1,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-848.95245,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 -5395,6656,11981,11977,11972,11971,1,0,32,1,5,0,1,1,-9,0,4,0,0,0,7,-3,-56.326096,-9,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,50,57,8.333333333333334,2,3,0,0,3,5,3,1,1725.8572,110880.21,214227.58,227498.53,119598.94,3721.8938 -5396,6657,11982,11984,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,8.4948368,8.0730124,0,13,0,66.823013,0,1,1,2019,10,0,37,37,1,0,0,13.944818,13.944818,0,0,0,0,7,1,1,0,2.4053984,0,46.08,57.2,58.47,50.22,6.666666666666667,1,1,0,0,13,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 -5396,6657,11983,-9,11984,11982,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.42706,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 -5396,6657,11984,11982,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,6.0841908,6.0401039,0,13,0,-21.34367,0,2,2,2019,7,0,6,6,1,0,0,8.9849243,8.9849243,0,0,0,0,7,1,1,0,0,0,58.47,50.22,46.08,57.2,8.333333333333334,1,1,0,0,9,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 -5396,6657,11985,-9,11984,11982,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.88049,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,1,613.5,128217.28,28380.547,0,0,2422.012 -5397,6658,11986,11989,-9,-9,1,1,48,0,3,0,2,2,-9,0,2,7.9417605,7.6578536,0,10,13,-102.06489,0,2,-9,2019,22,9,38,38,1,9,0,6.8249421,6.8249421,0,0,0,0,0,1,1,0,0,0,25.59,41.46,47.55,57.73,3.333333333333333,1,1,0,0,11,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 -5397,6658,11987,-9,11989,11986,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.9082,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 -5397,6658,11988,-9,11989,11986,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.2446,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 -5397,6658,11989,11986,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,7.4661269,7.3927054,5.4556975,10,-13,-23.067835,0,2,2,2019,9,0,24,21,1,0,0,8.0862083,8.0862083,0,0,0,0,7,1,1,0,5.4016738,0,47.55,57.73,25.59,41.46,8.333333333333334,1,1,0,0,12,6,3,1,244.25,149481.58,22793.801,298527.56,89305.281,4105.084 -5397,6659,11990,-9,11989,11986,1,0,18,0,3,0,2,2,1,1,3,6.5988908,6.7721329,0,0,0,-830.49817,-9,2,2,2019,6,0,16,0,1,0,1,6.1517391,6.1517391,0,0,0,0,0,1,1,0,1.3236868,0,51.17,49.39,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,236,-632547.63,78907.336,0,0,704.43469 -5398,6660,11991,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1026.858,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,0,1,0,0,47,50,-9,-9,7,2,3,0,1,4,5,1,1,262,374657.38,-35152.969,0,0,1018.1989 -5398,6661,11992,-9,11991,-9,1,1,28,0,1,0,2,2,-9,1,3,0,0,0,0,0,-981.80377,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,53.3,26.52,-9,-9,1.666666666666667,2,3,1,0,0,5,1,1,628,517080.53,0,0,0,877.42993 -5398,6662,11993,-9,11991,-9,1,0,25,0,1,0,1,1,-9,0,4,7.6859331,7.6294451,0,0,0,-1028.0187,-9,3,-9,2019,12,0,37,0,1,2,1,7.5527077,7.5527077,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,2,3,0,0,1,5,3,1,518,301156.38,0,0,0,993.9845 -5398,6663,11994,-9,11991,-9,1,1,22,0,1,1,2,0,0,1,1,0,0,0,0,0,-1040.3629,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,66.84,11.9,-9,-9,6.666666666666667,2,3,0,0,0,5,1,1,350,232052.05,0,0,0,1017.9172 -5399,6664,11995,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1207.5842,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,18.95,52.58,-9,-9,5,1,1,0,0,0,12,1,0,126,-256793.72,46669.859,0,0,1498.8708 -5400,6665,11996,-9,11998,11999,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-975.69788,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 -5400,6665,11997,-9,11998,11999,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1024.443,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 -5400,6665,11998,11999,-9,-9,1,0,30,1,5,0,2,2,-9,1,1,0,0,0,3,-6,0,0,2,3,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.32,32.11,26.89,28.6,0,1,1,0,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 -5400,6665,11999,11998,-9,-9,1,1,36,1,5,0,2,2,-9,1,2,0,0,0,3,6,0,0,-9,-9,2019,34,12,0,39,3,12,0,0,0,0,0,0,0,71.5,1,1,0,0,0,26.89,28.6,16.32,32.11,1.666666666666667,1,1,0,1,2,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 -5400,6665,12000,-9,11998,11999,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-959.53516,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 -5400,6665,12001,-9,11998,11999,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1130.3113,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 -5400,6665,12002,-9,11998,11999,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1104.3521,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,413.42856,127656.73,45325.375,0,0,3192.8713 -5401,6666,12003,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-902.29102,0,2,3,2019,9,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,4.7559505,0,52.78,47.24,-9,-9,5,1,1,1,0,10,11,1,1,382,0,0,0,0,493.68201 -5402,6667,12004,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.7088,-9,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,15.878101,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,11,2,0,746,171211.75,0,0,0,821.89545 -5403,6668,12005,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,6.9589515,6.8685894,0,0,0,-897.98755,0,-9,-9,2019,7,0,16,55,1,0,0,7.298574,7.298574,0,0,0,0,0,1,1,0,0,0,51.98,54.53,-9,-9,6.666666666666667,1,1,0,0,5,4,2,0,1308,-202192.38,0,0,0,1152.681 -5404,6669,12006,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.8918667,7.8994188,0,0,-930.23413,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.8552785,7.4214706,58.62,39.16,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,428,1772172.8,478430.88,940264.88,0,2367.8237 -5405,6670,12007,12008,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,31,-5,-65.373207,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7349319,0,39.24,53.39,58.3,52.91,10,1,1,0,0,3,10,3,1,453.5,577578.88,299419.53,230064.13,0,3237.9067 -5405,6670,12008,12007,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.9222226,7.5993366,31,5,-14.141237,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5510197,7.6045098,58.3,52.91,39.24,53.39,8.333333333333334,1,1,0,0,5,10,3,1,453.5,577578.88,299419.53,230064.13,0,3237.9067 -5406,6671,12009,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8116283,8.6854506,0,0,0,-963.2442,0,2,3,2019,9,1,40,40,1,1,0,16.797438,16.797438,0,0,0,0,0,1,1,0,3.1879687,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,13,12,5,1,511,261660.61,117928.35,339088.19,275889.53,2575.543 -5407,6672,12010,12011,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,24,9,2.7194033,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,45.04,53.77,54.2,57.49,6.666666666666667,1,1,1,0,9,2,2,1,2062.5,933983.38,673435.31,335985.88,0,679.8797 -5407,6672,12011,12010,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,6.9514804,6.8607149,0,24,0,46.784115,0,2,2,2019,8,0,10,10,1,0,0,14.51798,14.51798,0,0,0,0,0,0,0,0,6.3021069,0,54.2,57.49,45.04,53.77,8.333333333333334,1,1,0,0,12,2,2,1,2062.5,933983.38,673435.31,335985.88,0,679.8797 -5408,6673,12012,12013,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.4188852,9.0051966,7.5888286,6,1,57.750355,0,2,3,2019,4,0,13,13,1,0,0,33.499088,33.499088,0,0,0,0,0,0,0,0,0,7.0764003,57.33,53.46,54.79,55.86,10,1,1,0,0,7,11,5,0,659,4458563,4585835.5,125811.13,0,5585.1729 -5408,6673,12013,12012,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.4616117,9.1691542,0,6,-1,115.86323,0,1,2,2019,7,0,38,16,1,0,0,29.039885,29.039885,0,0,0,0,0,0,0,0,3.5885563,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,7,11,5,0,659,4458563,4585835.5,125811.13,0,5585.1729 -5409,6674,12014,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.4523892,7.1892037,0,0,0,-1016.4127,-9,3,3,2019,1,0,16,0,1,0,0,6.9531755,6.9531755,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,4,6,2,0,739,348623.25,81752.617,89519.313,0,1890.3827 -5410,6675,12015,-9,12018,12016,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.1236,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 -5410,6675,12016,12018,-9,-9,1,1,45,1,2,0,1,1,-9,0,3,8.5464697,8.5215187,0,10,7,-59.858135,0,2,1,2019,12,3,43,40,1,3,0,16.971315,16.971315,0,0,0,0,0,1,1,0,1.7637846,0,44.19,58.01,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 -5410,6675,12017,-9,12018,12016,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.65387,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 -5410,6675,12018,12016,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.760582,9.0779305,0,10,-7,104.14594,0,-9,-9,2019,9,0,37,39,1,0,0,30.37656,30.37656,0,0,0,0,0,1,1,0,0,0,54.37,54.8,44.19,58.01,8.333333333333334,1,1,0,0,11,10,5,1,703,1463110.3,398084.38,811932.56,121122.97,5567.7695 -5411,6676,12019,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.3252087,8.350502,0,0,0,-1023.3459,0,3,1,2019,16,4,42,42,1,4,0,10.18372,10.18372,0,0,0,0,0,0,0,0,1.9901032,0,43.27,38.73,-9,-9,3.333333333333333,1,1,0,0,12,11,4,1,1075,-291120.69,97748.719,115078.66,35518.316,1463.7218 -5412,6677,12020,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.06232,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.2239027,0,69.5,17.91,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1583,-24313.846,0,0,0,977.89502 -5413,6678,12021,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.3925943,5.6608481,0,0,-933.44366,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,12.566613,0,0,1,1,0,0,5.0940523,47.64,27.05,-9,-9,5,1,1,0,1,0,2,2,0,117,-216723.36,38087.059,119310.36,0,1894.641 -5414,6679,12022,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6554976,7.9564848,0,0,0,-1024.2938,0,3,-9,2019,9,0,20,33,1,0,0,24.077379,24.077379,0,0,0,0,0,1,1,0,0,0,60.69,50.51,-9,-9,5,1,1,0,0,10,2,4,1,796,82845.008,72292.688,0,0,1089.4386 -5415,6680,12023,12024,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6271324,8.6377258,0,12,1,68.687309,0,2,2,2019,7,0,39,39,1,0,0,19.752018,19.752018,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,365,533102.13,539892.75,198225.19,79824.047,3701.1414 -5415,6680,12024,12023,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1961365,8.3828154,0,13,-1,111.06193,0,3,3,2019,8,0,38,37,1,0,0,10.448139,10.448139,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,11,10,5,1,365,533102.13,539892.75,198225.19,79824.047,3701.1414 -5416,6681,12025,12026,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.716815,4.5490761,6,7,36.669659,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,1.9088061,0,0,1,1,0,5.3592491,4.2911439,54.37,54.8,57.33,53.46,6.666666666666667,1,1,0,0,0,6,3,1,748.5,195701.13,42215.031,109557.39,0,2092.0872 -5416,6681,12026,12025,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.2813153,7.9957485,7.1477456,6,-7,-2.4900556,0,-9,-9,2019,8,0,35,35,1,0,0,4.9676747,4.9676747,0,0,0,0,0,1,1,0,5.048861,7.0397458,57.33,53.46,54.37,54.8,6.666666666666667,1,1,0,0,9,6,3,1,748.5,195701.13,42215.031,109557.39,0,2092.0872 -5417,6682,12027,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.8681,-9,3,3,2019,26,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,14.31,34.39,-9,-9,0,4,5,0,1,0,7,1,0,527,-137358.86,0,0,0,1272.9076 -5418,6683,12028,12029,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,7.3130951,7.4901614,68,2,45.531754,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,24.127451,0,0,1,1,0,0,7.3178186,55.05,19.86,47.6,40.47,3.333333333333333,1,1,0,0,0,8,2,1,1280.5,578001.81,182598.5,502519.44,0,1967.7194 -5418,6683,12029,12028,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,0,0,68,-2,-158.42874,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,4.0099168,0,47.6,40.47,55.05,19.86,5,1,1,0,0,0,8,2,1,1280.5,578001.81,182598.5,502519.44,0,1967.7194 -5419,6684,12030,-9,12033,12031,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.6103,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 -5419,6684,12031,12033,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.5872116,8.55758,0,3,4,-33.701168,0,-9,-9,2019,9,0,60,50,1,1,0,9.0081644,9.0081644,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,5,0,0,4,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 -5419,6684,12032,-9,12033,12031,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.88593,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 -5419,6684,12033,12031,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,3,-4,39.173405,0,3,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,4,5,0,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 -5419,6684,12034,-9,12033,12031,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1182.8568,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,3,0,1136,514274,164863.08,270430.16,31036.605,2079.9116 -5420,6685,12035,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.4572945,8.0542908,0,0,0,-1002.4743,0,2,2,2019,13,3,37,37,1,3,0,15.520271,15.520271,0,0,0,0,0,1,1,0,3.9539509,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,7,9,4,0,621,-127290.58,-71237.594,0,0,1907.2504 -5421,6686,12036,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-981.55109,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,35.89,29.87,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1031,62600.414,56678.207,0,0,1759.2321 -5421,6687,12037,-9,12036,-9,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1024.4601,0,3,-9,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,14.5,1,1,0,0,0,31.08,51.12,-9,-9,8.333333333333334,1,1,0,0,6,13,1,0,196,0,0,0,0,391.43015 -5421,6688,12038,-9,12036,-9,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-978.19714,0,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,34.3,37.44,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,707,152518.48,0,0,0,-452.27261 -5422,6689,12039,-9,12041,12042,1,0,16,0,3,1,2,0,-9,1,3,0,5.4083238,5.4994416,0,0,-1028.0034,-9,1,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.5781565,0,49.63,54.22,-9,-9,10,1,1,0,0,0,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 -5422,6689,12040,-9,12041,12042,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.00092,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 -5422,6689,12041,12042,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,9.5263577,9.3798866,0,20,-2,92.659065,0,3,3,2019,11,1,42,44,1,1,0,49.606655,49.606655,0,0,0,0,27,1,1,0,0,0,55.22,30.3,64.57000000000001,12.51,5,1,1,0,0,6,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 -5422,6689,12042,12041,-9,-9,1,1,47,0,3,0,2,2,-9,1,1,7.912468,8.0577698,0,20,2,19.076313,0,3,3,2019,8,1,40,40,1,1,0,11.421176,11.421176,0,0,0,0,27,1,1,0,3.7166877,0,64.57000000000001,12.51,55.22,30.3,8.333333333333334,1,1,0,0,9,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 -5422,6689,12043,-9,12041,12042,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1049.0675,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,590.59998,170315.2,155143.31,144196.28,102700.36,10576.809 -5423,6690,12044,12045,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.7079954,9.8365145,0,27,-1,53.955452,-9,2,2,2019,7,0,50,0,1,0,0,39.633457,39.633457,0,0,0,0,0,0,0,0,3.9714139,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,549.5,1429722,1267774.6,131166.81,90864.836,7390.418 -5423,6690,12045,12044,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.7470932,8.9350958,0,26,1,92.663773,0,2,2,2019,7,0,43,30,1,0,0,19.733185,19.733185,0,0,0,0,0,0,0,0,3.1270862,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,5,5,1,549.5,1429722,1267774.6,131166.81,90864.836,7390.418 -5424,6691,12046,12047,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.5294747,5.5043416,44,8,32.569824,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.6206832,5.3576241,43.94,31.23,53,46,8.333333333333334,1,1,0,0,0,10,2,1,727.5,734954.19,261733.41,232862.41,0,1660.7391 -5424,6691,12047,12046,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.2720118,7.377718,44,-8,126.67625,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.475873,6.8389544,53,46,43.94,31.23,5,1,1,0,0,0,10,2,1,727.5,734954.19,261733.41,232862.41,0,1660.7391 -5425,6692,12048,-9,12049,12050,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.8628,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,1896.3334,340810.03,7370.9292,299532.91,266886.19,4716.3394 -5425,6692,12049,12050,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.4578199,8.598711,6.2640114,6,4,-51.761169,0,3,2,2019,9,0,42,42,1,0,0,14.99463,14.99463,0,0,0,0,0,1,1,0,7.0870132,0,58.05,51.82,42.85,60.33,1.666666666666667,1,1,0,0,6,7,5,1,1896.3334,340810.03,7370.9292,299532.91,266886.19,4716.3394 -5425,6692,12050,12049,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.8126125,9.1735697,0,12,-4,-15.489355,0,-9,-9,2019,13,3,55,45,1,3,0,16.956085,16.956085,0,0,0,0,0,1,1,0,0,0,42.85,60.33,58.05,51.82,8.333333333333334,1,1,0,0,8,7,5,1,1896.3334,340810.03,7370.9292,299532.91,266886.19,4716.3394 -5426,6693,12051,12054,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5593448,7.5329342,0,17,-5,-9.2600269,0,2,2,2019,8,0,44,40,1,0,0,4.9559131,4.9559131,0,0,0,0,0,0,0,0,0,0,57.33,53.46,52,55,8.333333333333334,3,4,0,0,8,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 -5426,6693,12052,-9,12051,12054,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9517,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 -5426,6693,12053,-9,12051,12054,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.16614,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 -5426,6693,12054,12051,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,7.769352,7.7897987,0,13,5,51.349552,0,3,3,2019,10,0,48,60,1,0,0,6.0653501,6.0653501,0,0,0,0,0,0,0,0,0,0,52,55,57.33,53.46,6.666666666666667,3,4,0,0,4,12,3,0,286,613762.31,246194.2,268025.28,0,2104.0991 -5427,6694,12055,12056,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.4399366,6.5578051,4,-4,-204.60547,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4277,51.14,60.45,37.16,37.37,10,1,1,0,0,8,12,3,1,341.5,1557550.3,552969.94,189036.22,0,2603.1094 -5427,6694,12056,12055,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.566905,7.5036511,4,4,5.5965567,0,2,2,2019,20,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,7.7111268,37.16,37.37,51.14,60.45,8.333333333333334,1,1,0,0,4,12,3,1,341.5,1557550.3,552969.94,189036.22,0,2603.1094 -5428,6695,12057,12059,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,9.2137232,9.243784,0,7,-4,65.441933,0,2,2,2019,9,0,45,45,1,0,0,23.272903,23.272903,0,0,0,0,0,1,1,0,.73775131,0,54.2,57.49,58.3,52.91,6.666666666666667,1,1,0,0,8,10,5,1,905.66669,663151.63,245941.17,461127.53,307752.34,4949.7622 -5428,6695,12058,-9,12057,12059,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.4747,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,905.66669,663151.63,245941.17,461127.53,307752.34,4949.7622 -5428,6695,12059,12057,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5821266,8.4702969,0,7,4,50.396107,0,-9,-9,2019,10,0,41,42,1,0,0,16.177298,16.177298,0,0,0,0,0,1,1,0,2.9658079,0,58.3,52.91,54.2,57.49,8.333333333333334,1,1,0,0,8,10,5,1,905.66669,663151.63,245941.17,461127.53,307752.34,4949.7622 -5429,6696,12060,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.158185,7.484026,0,0,-954.98004,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5182405,7.3783102,51.61,23.91,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,143,467753,89466.148,184491.16,0,1529.8508 -5430,6697,12061,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5556078,8.4818096,0,0,0,-954.94574,0,2,2,2019,22,10,55,65,1,10,0,10.804124,10.804124,0,0,0,0,0,1,1,0,3.8668697,0,45.3,52.04,-9,-9,3.333333333333333,1,1,0,0,8,9,5,1,405,845330.06,704862.88,306642.28,0,2283.2949 -5431,6698,12062,12064,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,0,0,0,9,1,89.241776,0,1,1,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.69,24.46,47.44,51.53,0,1,1,0,0,0,8,4,1,689.66669,406149.25,141852,358431.81,104196.77,2513.4624 -5431,6698,12063,-9,12062,12064,1,1,17,0,0,1,2,0,0,0,2,0,4.1227179,4.6105905,0,0,-1044.7551,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,2,1,1,0,4.7368965,0,15.02,57.11,-9,-9,5,1,1,0,0,0,8,4,1,689.66669,406149.25,141852,358431.81,104196.77,2513.4624 -5431,6698,12064,12062,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,8.7856646,8.5965738,0,9,-1,-52.555061,0,2,3,2019,18,8,43,38,1,8,0,15.22427,15.22427,0,0,0,0,7,1,1,0,3.190671,0,47.44,51.53,23.69,24.46,5,1,1,0,0,9,8,4,1,689.66669,406149.25,141852,358431.81,104196.77,2513.4624 -5432,6699,12065,12066,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,7.788763,7.3229585,0,6,-1,30.416185,0,2,2,2019,7,0,21,21,1,0,0,11.634036,11.634036,0,0,0,0,0,1,1,0,0,0,46.63,59.72,46.88,60.96,1.666666666666667,1,1,0,0,7,4,4,1,517,315023.78,186084.63,117805.77,61179.813,3539.8413 -5432,6699,12066,12065,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,7.9840817,8.5955753,7.115778,6,1,25.221834,0,1,1,2019,9,0,25,25,1,0,0,13.411144,13.411144,0,0,0,0,0,1,1,0,7.4726496,0,46.88,60.96,46.63,59.72,10,1,1,0,0,7,4,4,1,517,315023.78,186084.63,117805.77,61179.813,3539.8413 -5432,6699,12067,-9,12066,12065,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.1608,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,517,315023.78,186084.63,117805.77,61179.813,3539.8413 -5433,6700,12068,12069,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.1314526,7.991055,6,0,-42.054924,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5138822,8.2720938,60.29,38.88,52.57,25.97,8.333333333333334,1,1,0,0,0,10,3,1,1026,1236176.1,225335.38,542261,0,2738.3579 -5433,6700,12069,12068,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.2554116,5.9035239,6,0,104.37292,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.31814924,6.4493341,52.57,25.97,60.29,38.88,8.333333333333334,1,1,0,0,0,10,3,1,1026,1236176.1,225335.38,542261,0,2738.3579 -5434,6701,12070,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.3649459,7.7173109,0,0,-956.06702,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,16.442945,18.388958,131.83296,0,1,1,0,0,7.7889972,52,45,-9,-9,8,3,4,0,0,0,6,3,1,395,819614.63,328078.44,66480.898,0,1919.6917 -5435,6702,12071,12072,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.5918331,9.6044407,0,27,1,-56.598839,0,2,1,2019,8,0,48,48,1,0,0,27.187765,27.187765,0,0,0,0,0,0,0,0,0,0,47,49,58.47,50.22,10,1,1,0,0,10,13,5,1,614.5,2205110.5,1659003.3,237263.09,0,8486.168 -5435,6702,12072,12071,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.3562231,9.3866262,0,27,-1,-71.597664,0,1,2,2019,8,0,50,45,1,0,0,37.884228,37.884228,0,0,0,0,0,0,0,0,0,0,58.47,50.22,47,49,8.333333333333334,1,1,0,0,10,13,5,1,614.5,2205110.5,1659003.3,237263.09,0,8486.168 -5435,6703,12073,-9,12071,12072,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-947.27814,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,640,-287142.44,0,0,0,0 -5436,6704,12074,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,2.0992343,2.103694,0,0,-965.85852,0,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,1.9766451,2.1606023,23.54,24.46,-9,-9,3.333333333333333,1,1,0,1,0,2,2,0,629,-11070.611,0,0,0,1834.699 -5436,6705,12075,-9,12074,-9,1,0,29,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1083.6428,-9,2,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,120,1,1,0,0,0,24.55,51.82,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,1051,-154103,0,0,0,0 -5437,6706,12076,12077,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.9267569,6.7813993,0,9,-4,-191.36591,0,2,-9,2019,9,0,14,14,1,0,0,10.192855,10.192855,0,0,0,0,0,1,1,0,1.4960825,0,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,6,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 -5437,6706,12077,12076,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.6298914,8.5189934,0,9,4,-167.69505,0,-9,2,2019,6,0,40,40,1,0,0,18.042847,18.042847,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.43,55.57,1.666666666666667,1,1,0,0,10,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 -5437,6706,12078,-9,12076,12077,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-973.42365,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 -5437,6706,12079,-9,12076,12077,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.59888,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,680.5,91152.141,80701.289,131011.63,95450.406,2913.5212 -5438,6707,12080,12081,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.0863004,4.9574652,1,7,24.512007,-9,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.9970689,59.64,35.9,59.51,34.69,8.333333333333334,1,1,0,0,0,11,2,0,673.5,647732.13,602107.88,103668.1,0,1416.1653 -5438,6707,12081,12080,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,1,-7,-14.924975,-9,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,6.4013848,0,0,1,1,0,0,0,59.51,34.69,59.64,35.9,8.333333333333334,1,1,0,0,0,11,2,0,673.5,647732.13,602107.88,103668.1,0,1416.1653 -5439,6708,12082,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.8237891,6.5119262,0,0,-980.60327,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7277274,22.93,58.48,-9,-9,5,1,1,0,0,0,6,2,1,239,218889.42,102724.39,0,0,-22.262047 -5440,6709,12083,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,4.738616,4.7432942,0,0,-977.4259,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.6723175,4.9357438,53.37,49.66,-9,-9,10,1,1,0,0,0,12,2,1,386,341364.69,-30099.609,51337.563,0,1091.1967 -5441,6710,12084,12085,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7354813,9.0239897,0,33,-3,47.958622,0,2,3,2019,12,0,38,34,1,0,0,18.249077,18.249077,0,0,0,0,2,0,0,0,0,0,58.15,52.91,48.15,47.3,8.333333333333334,1,1,0,0,10,9,5,1,334,739527.25,481608.69,248647.88,24718.23,4173.3975 -5441,6710,12085,12084,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.2450504,8.0284595,0,8,3,-149.08565,0,-9,-9,2019,10,1,44,60,1,1,0,10.608296,10.608296,0,0,0,0,0,0,0,0,0,0,48.15,47.3,58.15,52.91,5,1,1,0,0,7,9,5,1,334,739527.25,481608.69,248647.88,24718.23,4173.3975 -5442,6711,12086,12087,-9,-9,1,1,58,0,2,0,2,2,-9,0,3,8.9254179,8.7496891,0,9,8,45.957176,0,2,2,2019,14,2,49,48,1,2,0,21.111885,21.111885,0,0,0,0,0,1,1,0,0,0,51.17,49.39,43.18,25.52,6.666666666666667,1,1,0,0,12,9,5,1,389.5,1688056.1,542514.75,1602466.3,678720.44,5763.0894 -5442,6711,12087,12086,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,9.0215502,9.2274685,0,9,-8,17.213308,0,1,-9,2019,19,6,38,40,1,6,0,29.259756,29.259756,0,0,0,0,0,1,1,0,1.2923044,0,43.18,25.52,51.17,49.39,5,1,1,0,0,11,9,5,1,389.5,1688056.1,542514.75,1602466.3,678720.44,5763.0894 -5442,6712,12088,-9,12087,12086,1,1,19,0,2,0,2,2,1,0,4,0,0,0,0,0,-1022.2492,-9,1,2,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,239,0,0,0,0,0 -5443,6713,12089,12090,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.5542212,6.7987394,41,-17,-37.188541,-9,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9201264,6.679801,50,47,54,45,7,4,2,0,0,0,11,2,1,593.5,636520.56,65923.367,494320.63,0,2683.8184 -5443,6713,12090,12089,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,43,17,-52.45755,-9,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,2.1730304,0,0,1,1,0,0,0,54,45,50,47,7,3,4,0,0,0,11,2,1,593.5,636520.56,65923.367,494320.63,0,2683.8184 -5444,6714,12091,12092,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,7.6630421,7.4929376,0,11,2,201.90871,0,-9,-9,2019,11,1,80,90,1,1,0,3.039597,3.039597,0,0,0,0,7,1,1,0,0,0,46.48,58.28,44.7,56.48,8.333333333333334,1,1,0,0,13,10,3,0,443,628355.5,80389.453,649489.38,205787.66,2153.3257 -5444,6714,12092,12091,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,7.7696705,7.5524912,0,11,-2,25.168297,0,2,3,2019,16,4,36,36,1,4,0,5.7979288,5.7979288,0,0,0,0,0,1,1,0,0,0,44.7,56.48,46.48,58.28,6.666666666666667,1,1,0,0,10,10,3,0,443,628355.5,80389.453,649489.38,205787.66,2153.3257 -5445,6715,12093,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.6495557,7.6717482,0,0,-1021.4927,0,2,1,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.2728419,7.8532152,46.49,39.54,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,512,1510470.9,1050158.9,96561.133,0,2385.468 -5445,6716,12094,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.5523858,7.9922338,0,0,-865.96844,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5916395,7.7709727,56.51,40.62,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,292,739153.31,637278.75,105542,0,983.0788 -5446,6717,12095,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.470746,8.5393744,0,0,0,-873.94104,0,2,2,2019,13,1,36,-9,1,1,0,17.643574,17.643574,0,0,0,0,0,0,0,0,4.2620554,0,42.73,54.46,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,252,504035.91,-54690.141,423735.25,60969.68,1818.826 -5447,6718,12096,12097,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,8.3592005,8.2285805,6,1,-54.129452,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.2429852,8.5155678,57.06,57.76,49.28,52.09,8.333333333333334,1,1,0,0,5,6,5,1,500.5,982781.5,214783.59,330366,0,5616.166 -5447,6718,12097,12096,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.3132076,9.1687851,6.072031,6,-1,62.690357,0,2,3,2019,7,0,38,42,1,0,0,31.615963,31.615963,0,0,0,0,0,0,0,0,2.4302025,6.2373114,49.28,52.09,57.06,57.76,6.666666666666667,4,2,0,0,9,6,5,1,500.5,982781.5,214783.59,330366,0,5616.166 -5448,6719,12098,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.3997445,7.1529336,0,0,0,-935.47418,0,2,2,2019,8,0,45,45,1,0,0,4.5803599,4.5803599,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,184,93444.711,0,0,0,859.08246 -5449,6720,12099,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-959.12354,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.6,26.38,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,598,-64941.797,0,0,0,1472.7737 -5450,6721,12100,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-934.90839,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.91,30.85,-9,-9,5,1,1,0,0,5,11,1,0,183,-181288.92,0,0,0,199.56216 -5451,6722,12101,-9,12103,12104,1,1,23,0,0,0,2,2,-9,0,3,8.0043764,7.8140836,0,0,0,-915.38977,0,2,3,2019,9,0,50,46,1,0,1,5.1031461,5.1031461,0,0,0,0,0,0,0,0,0,0,40.47,56.92,-9,-9,6.666666666666667,1,1,0,0,6,7,3,1,449,-354543.47,-53155.184,0,0,1260.3525 -5451,6723,12102,-9,12103,12104,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1104.6598,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,402.66666,695998.63,0,997084.69,230847.14,5282.5693 -5451,6723,12103,12104,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,9.0441341,8.6791143,0,3,0,102.28717,-9,-9,-9,2019,10,0,45,0,1,1,0,18.696487,18.696487,0,0,0,0,0,0,0,0,6.6953301,0,51,53,53,54,7,1,1,0,0,1,7,5,1,402.66666,695998.63,0,997084.69,230847.14,5282.5693 -5451,6723,12104,12103,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.9928341,8.8414106,0,3,0,1.7137883,-9,-9,-9,2019,9,0,60,0,1,1,0,12.773142,12.773142,0,0,0,0,0,0,0,0,0,0,53,54,51,53,7,1,1,0,0,1,7,5,1,402.66666,695998.63,0,997084.69,230847.14,5282.5693 -5452,6724,12105,12106,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,4.9807835,4.9511485,7,-8,43.420277,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5489078,4.2802482,52.84,42.9,52.35,46.12,6.666666666666667,1,1,0,0,4,2,2,1,1018,-27370.775,-31853.885,104185.9,0,1564.6287 -5452,6724,12106,12105,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,8,37.195019,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.35,46.12,52.84,42.9,8.333333333333334,1,1,0,0,0,2,2,1,1018,-27370.775,-31853.885,104185.9,0,1564.6287 -5453,6725,12107,-9,12108,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0886,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,3,0,410.5,-77433.07,19067.15,0,0,2406.3872 -5453,6725,12108,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.7073712,7.8814116,5.6635251,0,0,-919.81042,0,3,3,2019,10,0,40,37,1,0,0,6.6207213,6.6207213,0,0,0,0,0,1,1,0,5.9189401,0,51.14,52.08,-9,-9,6.666666666666667,1,1,0,0,10,6,3,0,410.5,-77433.07,19067.15,0,0,2406.3872 -5454,6726,12109,12110,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.5307236,7.2588382,44,-5,-31.967863,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7707744,7.5123096,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,0,2,4,1,611.5,1577028.5,168314.09,459022.13,0,3739.6724 -5454,6726,12110,12109,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.7586017,8.1278257,44,5,43.147934,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6270955,7.9901948,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,4,2,4,1,611.5,1577028.5,168314.09,459022.13,0,3739.6724 -5455,6727,12111,12112,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.8714614,7.8544726,0,10,1,85.088905,0,1,2,2019,3,0,38,29,1,0,0,6.4110661,6.4110661,0,0,0,0,2,0,0,0,7.4111314,0,54.79,55.86,50.48,56.4,8.333333333333334,1,1,0,0,11,11,5,1,689.5,491875.94,301437.06,180205.88,49045.434,3077.7529 -5455,6727,12112,12111,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.558341,8.1721401,0,10,-1,35.526585,0,2,2,2019,12,0,38,38,1,0,0,13.766901,13.766901,0,0,0,0,0,0,0,0,0,0,50.48,56.4,54.79,55.86,8.333333333333334,1,1,0,0,11,11,5,1,689.5,491875.94,301437.06,180205.88,49045.434,3077.7529 -5456,6728,12113,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,1,7.5987086,7.548418,0,0,0,-915.55237,0,-9,-9,2019,13,2,16,16,1,2,0,14.538791,14.538791,0,0,0,0,0,1,1,0,0,0,52.77,28.59,-9,-9,6.666666666666667,1,1,0,1,10,6,3,0,500,673301.13,251945.2,153258.5,39107.172,1037.528 -5457,6729,12114,12115,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.2100048,8.3829288,0,3,-21,-1.1836321,0,-9,-9,2019,12,1,40,45,1,1,0,9.5658207,9.5658207,0,0,0,0,0,0,0,0,0,0,30.3,63.25,45.4,56.19,8.333333333333334,1,1,0,0,2,7,5,1,1798.5,165779.7,38478.461,250143.48,0,3739.1694 -5457,6729,12115,12114,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.8150129,8.6583261,0,3,21,-19.135056,0,1,1,2019,13,2,76,40,1,2,0,12.017557,12.017557,0,0,0,0,0,0,0,0,0,0,45.4,56.19,30.3,63.25,8.333333333333334,4,2,0,0,10,7,5,1,1798.5,165779.7,38478.461,250143.48,0,3739.1694 -5458,6730,12116,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.083056,7.1138177,0,0,-1011.6481,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2777543,7.0157933,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,134,1211214.8,210635.09,865520.56,0,426.04031 -5459,6731,12117,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,5.7978787,6.0687094,0,0,-1082.0459,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9366617,5.7598553,44.41,53.89,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,297,129748.04,153851.77,0,0,619.26447 -5460,6732,12118,12119,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.5084019,7.7127533,44,1,5.3642015,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5162487,7.3979878,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,422.5,1546775.8,815169.63,259965.97,0,2879.7261 -5460,6732,12119,12118,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.4725986,7.2761569,44,-1,51.451782,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.481482,7.4587264,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,0,7,3,1,422.5,1546775.8,815169.63,259965.97,0,2879.7261 -5461,6733,12120,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.6421332,7.9308486,3.9208238,0,0,-901.47968,0,2,2,2019,3,0,48,30,1,0,0,4.9851727,4.9851727,0,0,0,0,0,1,1,0,3.9862638,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,7,13,3,0,626.5,-151034.58,28033.133,0,0,1915.3958 -5461,6733,12121,-9,12120,-9,1,1,17,0,0,1,2,0,0,1,3,0,0,0,0,0,-1098.981,-9,2,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,626.5,-151034.58,28033.133,0,0,1915.3958 -5461,6734,12122,-9,12120,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-945.48743,0,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,1,0,2,13,2,0,1371,-53476.723,0,0,0,0 -5462,6735,12123,12124,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.2602143,6.2530909,2,3,-48.621265,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5725856,6.2091255,60.12,54.8,57.33,53.46,10,1,1,0,0,6,4,3,1,2077.5,783268,554522.44,200669.73,0,2738.4785 -5462,6735,12124,12123,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.891726,7.6745048,2,-3,-16.218494,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4682064,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,2077.5,783268,554522.44,200669.73,0,2738.4785 -5463,6736,12125,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9920955,8.007411,0,0,-968.04407,0,-9,-9,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.8272142,7.8476062,18.71,55.07,-9,-9,3.333333333333333,1,1,0,0,8,11,3,1,261,676745.88,724433.5,0,0,1842.6759 -5464,6737,12126,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.1104712,6.810216,0,0,-1003.3014,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,4.2813864,0,0,0,1,1,0,5.7993731,6.9799514,62.65,38.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2807,529347.94,145395.44,289109.25,0,1051.1655 -5465,6738,12127,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.3141418,5.3047662,0,0,-1010.7035,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.9110932,50,47,-9,-9,7,1,1,0,1,0,13,2,1,960,72207.789,147359.81,0,0,632.32855 -5466,6739,12128,12129,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.5376339,9.7772551,0,17,8,112.9305,0,2,2,2019,11,0,45,46,1,0,0,38.247047,38.247047,0,0,0,0,0,0,0,0,0,0,50.14,53.97,49.25,61.25,3.333333333333333,1,1,0,0,8,7,5,1,881.66669,1075673.1,164028,576777.63,0,8648.4395 -5466,6739,12129,12128,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,8.8612947,8.7223902,0,17,-8,-.34615824,0,1,1,2019,11,0,36,35,1,0,0,19.280607,19.280607,0,0,0,0,0,0,0,0,0,0,49.25,61.25,50.14,53.97,1.666666666666667,1,1,0,0,7,7,5,1,881.66669,1075673.1,164028,576777.63,0,8648.4395 -5466,6739,12130,-9,12129,12128,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.124,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,7,5,1,881.66669,1075673.1,164028,576777.63,0,8648.4395 -5466,6740,12131,-9,12129,12128,1,1,18,0,1,0,2,2,1,0,5,7.3339276,7.3431401,0,0,0,-987.41956,-9,1,1,2019,2,0,20,0,1,0,1,7.5963402,7.5963402,0,0,0,0,0,0,0,0,0,0,49.96,56.89,-9,-9,10,1,1,0,0,3,7,3,1,337,97660.156,-93257.234,0,0,940.08765 -5467,6741,12132,-9,12134,12133,1,0,21,0,0,0,2,2,-9,0,4,7.7901521,7.943069,0,0,0,-1090.5126,0,2,2,2019,11,0,20,0,1,2,1,17.056778,17.056778,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,9,4,0,725,-810665.25,0,0,0,758.89545 -5467,6742,12133,12134,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8208609,8.6935091,0,4,4,-65.358406,0,-9,-9,2019,8,0,42,40,1,0,0,16.135435,16.135435,0,0,0,0,0,0,0,0,0,0,55.96,49.93,55.8,42.23,6.666666666666667,1,1,0,0,5,9,5,0,756.5,1851561.5,839470.94,796805.25,0,4359.9502 -5467,6742,12134,12133,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.65907,9.0362654,0,4,-4,-49.172642,0,3,3,2019,7,0,40,35,1,0,0,15.288021,15.288021,0,0,0,0,0,0,0,0,0,0,55.8,42.23,55.96,49.93,3.333333333333333,1,1,0,0,6,9,5,0,756.5,1851561.5,839470.94,796805.25,0,4359.9502 -5468,6743,12135,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1001.3669,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.95,23.91,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,365,122167.98,0,0,0,1408.949 -5469,6744,12136,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.2459478,7.4261308,0,0,-990.78149,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3176646,7.2475948,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,598,1449341.8,160926.88,634193.31,0,1511.64 -5470,6745,12137,12138,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,8.3036137,8.9276314,7.7964602,40,3,-70.746933,0,3,3,2019,9,0,43,41,1,0,0,9.821167,9.821167,0,0,0,0,0,0,0,0,5.4085655,7.9572468,58.92,13.92,38.18,20.71,8.333333333333334,1,1,0,0,8,13,5,1,645.5,492855.25,401920.81,81137.813,0,4465.0313 -5470,6745,12138,12137,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,7.6051874,7.4533234,40,-3,-25.33935,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,7,0,0,0,0,7.1189466,38.18,20.71,58.92,13.92,3.333333333333333,1,1,0,0,8,13,5,1,645.5,492855.25,401920.81,81137.813,0,4465.0313 -5471,6746,12139,-9,12140,12142,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1848,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 -5471,6746,12140,12142,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.3432107,7.2057891,0,4,2,63.086403,0,-9,-9,2019,11,0,28,27,1,0,0,6.4020243,6.4020243,0,0,0,0,0,1,1,0,0,0,40.88,59.72,57.16,56.15,8.333333333333334,4,1,0,0,3,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 -5471,6746,12141,-9,12140,12142,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.8774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 -5471,6746,12142,12140,-9,-9,1,1,26,1,2,0,2,2,-9,0,4,7.987834,7.6914473,0,4,-2,7.8150687,0,-9,-9,2019,7,0,44,52,1,0,0,7.6218672,7.6218672,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.88,59.72,6.666666666666667,1,1,0,0,7,13,3,1,337.5,56385.883,-36798.352,170279.27,34154.383,3650.6982 -5472,6747,12143,12144,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7526221,8.1460228,6,2,76.030434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9035382,60.12,54.8,56.18,53.85,8.333333333333334,1,1,0,0,0,9,3,1,1500.5,528711.06,284551,351665.66,0,2029.4426 -5472,6747,12144,12143,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,6,-2,38.59008,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,60.12,54.8,10,1,1,0,0,0,9,3,1,1500.5,528711.06,284551,351665.66,0,2029.4426 -5473,6748,12145,12146,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,8,-2,18.566385,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,1.8509367,0,42.26,47.95,58.33,47.36,1.666666666666667,1,1,0,0,0,4,3,1,833.5,823644.63,635992.88,139264.2,0,2792.9272 -5473,6748,12146,12145,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.6813908,7.6502519,8,2,1.1437329,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3839102,7.293004,58.33,47.36,42.26,47.95,8.333333333333334,1,1,0,0,1,4,3,1,833.5,823644.63,635992.88,139264.2,0,2792.9272 -5473,6749,12147,-9,12145,12146,1,1,35,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1079.1808,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,6.666666666666667,1,1,0,1,5,4,1,1,351,0,0,0,0,0 -5474,6750,12148,12149,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.1687889,8.1574478,0,7,7,23.25165,0,2,-9,2019,18,7,45,45,1,7,0,9.2151051,9.2151051,0,0,0,0,0,1,1,0,0,0,28.41,64.05,41.07,60.93,6.666666666666667,1,1,0,0,6,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 -5474,6750,12149,12148,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,5.9064817,5.94944,0,14,-7,65.013626,0,-9,2,2019,8,1,16,15,1,1,0,2.6314316,2.6314316,0,0,0,0,0,1,1,0,0,0,41.07,60.93,28.41,64.05,6.666666666666667,1,1,0,0,6,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 -5474,6750,12150,-9,12149,12148,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.1078,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 -5474,6750,12151,-9,12149,12148,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.69794,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,354.75,-35512.105,0,178215.14,96542.938,3228.6709 -5475,6751,12152,-9,12154,12153,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1106.4979,-9,2,1,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 -5475,6751,12153,12154,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.6604881,8.8590441,0,8,12,-178.05838,0,2,-9,2019,13,2,45,60,1,2,0,15.7566,15.7566,0,0,0,0,0,1,1,0,2.9629712,0,32.22,59.41,34.79,48.41,3.333333333333333,1,1,0,1,12,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 -5475,6751,12154,12153,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,6.8516836,6.7423081,0,8,-12,44.66785,0,-9,-9,2019,17,5,25,28,1,5,0,3.403465,3.403465,0,0,0,0,7,1,1,0,0,0,34.79,48.41,32.22,59.41,8.333333333333334,1,1,0,1,9,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 -5475,6751,12155,-9,12154,12153,1,1,17,0,2,0,3,3,-9,0,4,0,0,0,0,0,-990.50336,0,2,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,12,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 -5475,6751,12156,-9,12154,12153,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.8045,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,1071.8,286976.72,123855.35,200263.53,153325.08,2690.7773 -5476,6752,12157,12158,-9,-9,1,0,43,0,1,0,2,2,-9,1,1,0,0,0,6,-3,-84.374016,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,12.78,44.43,40.82,50.42,0,1,1,0,0,0,13,3,1,398,614992.63,96664.469,412184.19,0,2853.769 -5476,6752,12158,12157,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.6495104,8.2676811,0,6,3,-192.01443,0,3,3,2019,12,1,44,40,1,1,0,11.516559,11.516559,0,0,0,0,0,1,1,0,0,0,40.82,50.42,12.78,44.43,3.333333333333333,1,1,0,0,6,13,3,1,398,614992.63,96664.469,412184.19,0,2853.769 -5476,6752,12159,-9,12157,12158,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-995.21436,-9,2,2,2019,6,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,65.65000000000001,47,-9,-9,10,1,1,0,0,0,13,3,1,398,614992.63,96664.469,412184.19,0,2853.769 -5476,6753,12160,-9,12157,12158,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-970.1532,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,783,-96570.547,0,0,0,0 -5477,6754,12161,12162,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5051203,7.4160504,49,3,35.199112,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7538681,7.4761763,53.22,50.02,43.76,50.48,8.333333333333334,1,1,0,0,8,6,3,1,1979,800928.5,233098.09,110901.09,0,1552.1243 -5477,6754,12162,12161,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,49,-3,-25.416132,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9121507,0,43.76,50.48,53.22,50.02,8.333333333333334,1,1,0,0,4,6,3,1,1979,800928.5,233098.09,110901.09,0,1552.1243 -5478,6755,12163,12164,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.1592913,8.6015768,7.5214949,8,-1,-63.877911,0,3,2,2019,7,0,38,40,1,0,0,13.445564,13.445564,0,0,0,0,0,0,0,0,0,7.6680965,52.73,53.06,43.12,58.55,8.333333333333334,1,1,0,0,9,10,5,1,888.5,177955.92,36224.273,209875.59,18094.379,3612.5391 -5478,6755,12164,12163,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.9087529,7.9079537,6.0993443,8,1,-59.920628,0,3,3,2019,13,1,40,41,1,1,0,8.7281322,8.7281322,0,0,0,0,0,0,0,0,5.0920143,6.0013089,43.12,58.55,52.73,53.06,5,1,1,0,0,9,10,5,1,888.5,177955.92,36224.273,209875.59,18094.379,3612.5391 -5479,6756,12165,12166,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,36,-6,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.22,45.38,39.01,21.43,6.666666666666667,2,3,0,1,0,4,1,1,1345,30080.531,16751.354,0,0,1454.7046 -5479,6756,12166,12165,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,36,6,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.01,21.43,42.22,45.38,3.333333333333333,2,3,0,1,3,4,1,1,1345,30080.531,16751.354,0,0,1454.7046 -5480,6757,12167,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.2769756,8.3181305,0,0,0,-993.72333,0,2,3,2019,6,0,42,42,1,0,0,11.233183,11.233183,0,0,0,0,0,0,0,0,1.4883288,0,57.06,57.76,-9,-9,10,1,1,0,0,6,4,4,0,339,521992.63,165706.73,0,0,1662.9865 -5481,6758,12168,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,7.0185428,7.318419,0,0,-1048.1096,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.1841598,46.95,35.43,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1581,-172840.83,0,98537.156,0,2023.6273 -5482,6759,12169,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.800138,8.0031185,0,0,0,-868.64349,0,-9,-9,2019,10,0,38,36,1,1,0,8.4197359,8.4197359,0,0,0,0,0,0,0,0,.61800164,0,48,59,-9,-9,7,1,1,0,0,5,7,3,0,223,-207485.86,129145.73,0,0,1026.6938 -5483,6760,12170,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.8512034,6.7324386,0,0,-927.55103,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.0098891,54,44,-9,-9,8,1,1,0,0,0,6,2,0,318,45679.883,40947.891,216113.92,0,1261.3833 -5484,6761,12171,12172,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2402558,7.3260317,7,8,-69.622566,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.7205751,7.4623151,63.4,45.23,54.96,53.17,10,1,1,0,0,0,7,5,1,584.5,1745525.6,637889.31,375539.88,0,4754.7666 -5484,6761,12172,12171,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.4626617,8.9655552,7,-8,-176.17369,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0977058,9.0743513,54.96,53.17,63.4,45.23,8.333333333333334,1,1,0,0,0,7,5,1,584.5,1745525.6,637889.31,375539.88,0,4754.7666 -5485,6762,12173,12174,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,59,-2,107.38396,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.6980019,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,10,1,1,0,0,0,2,2,0,1455.5,669046.13,38624.5,281110.88,0,1186.6686 -5485,6762,12174,12173,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.5281982,6.7244525,59,2,-101.52196,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1941819,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,0,1455.5,669046.13,38624.5,281110.88,0,1186.6686 -5486,6763,12175,12176,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,36,-3,0,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,21.06,60.12,54.8,10,1,1,0,0,0,13,2,0,2240,578309.81,0,174555.36,0,1908.8883 -5486,6763,12176,12175,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,36,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.12,54.8,60.3,21.06,10,1,1,0,0,4,13,2,0,2240,578309.81,0,174555.36,0,1908.8883 -5487,6764,12177,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.3332853,9.3832817,0,0,0,-990.40094,0,1,1,2019,9,0,45,40,1,0,0,31.997002,31.997002,0,0,0,0,0,1,1,0,4.1514173,0,60.87,44.96,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,189,1246833.4,204199.42,902178.5,439194.69,3093.5444 -5488,6765,12178,12179,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8503766,7.5737648,42,0,-25.052967,0,-9,-9,2019,13,1,0,22,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.9141469,57.33,53.46,46.31,56.45,8.333333333333334,1,1,0,0,10,10,3,1,188.5,1178827.5,637877.38,391503.19,0,2386.3 -5488,6765,12179,12178,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.518887,5.6167469,42,0,146.38139,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3667617,46.31,56.45,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,188.5,1178827.5,637877.38,391503.19,0,2386.3 -5489,6766,12180,12181,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,7.5811577,7.7314959,0,4,-8,-22.397764,0,-9,-9,2019,8,0,30,30,1,0,0,8.1403742,8.1403742,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.21,58.07,8.333333333333334,1,1,0,0,9,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 -5489,6766,12181,12180,-9,-9,1,1,43,1,2,0,2,2,-9,0,5,8.6549473,8.5198326,0,4,8,-84.732498,0,2,2,2019,6,0,46,45,1,0,0,15.740456,15.740456,0,0,0,0,0,1,1,0,3.3801985,0,46.21,58.07,57.06,57.76,10,1,1,0,0,7,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 -5489,6766,12182,-9,12180,12181,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.8571,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 -5489,6766,12183,-9,12180,12181,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.07605,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,652,635604.44,400259.34,189838.27,23346.93,2828.812 -5490,6767,12184,12185,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.8766732,8.1834145,26,0,-8.9405565,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.8205695,7.8932261,57.31,50.61,57.06,57.76,8.333333333333334,1,1,0,0,0,1,4,1,636,2451547.5,1035380.6,556185.69,0,4400.3525 -5490,6767,12185,12184,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,8.2988482,8.1895609,26,0,23.996456,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1320705,57.06,57.76,57.31,50.61,8.333333333333334,1,1,0,0,5,1,4,1,636,2451547.5,1035380.6,556185.69,0,4400.3525 -5491,6768,12186,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,0,8.9320545,8.6017427,0,0,-949.68799,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,8.3529701,46,39,-9,-9,5,1,1,0,0,7,2,5,1,604,-1485.8684,0,0,0,1848.5477 -5492,6769,12187,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1085.6703,0,3,2,2019,18,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,3.5233457,0,55.07,36.99,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,517,-87392.703,0,0,0,1324.5093 -5493,6770,12188,12189,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,7.8909264,7.9649229,0,8,0,127.43581,0,2,2,2019,8,0,40,30,1,0,0,7.9481859,7.9481859,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,1,597,27319.213,76148.031,184633.83,143428.84,3122.6921 -5493,6770,12189,12188,-9,-9,1,0,36,0,2,0,1,1,1,0,4,8.3973751,8.6822348,0,8,0,-17.388884,-9,3,3,2019,7,0,30,0,1,0,0,22.285521,22.285521,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,13,4,1,597,27319.213,76148.031,184633.83,143428.84,3122.6921 -5493,6770,12190,-9,12189,12188,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.179,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,597,27319.213,76148.031,184633.83,143428.84,3122.6921 -5494,6771,12191,12192,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,3.1070859,3.0750804,13,-2,44.903717,0,3,2,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,7,1,1,0,5.5502682,3.370806,33.64,29.63,54.76,16.81,8.333333333333334,1,1,0,0,0,2,4,1,548.5,1187909.3,750515.13,109881.92,0,6358.376 -5494,6771,12192,12191,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,8.2925396,8.2934656,13,2,10.665676,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,8.3921452,8.3607378,54.76,16.81,33.64,29.63,8.333333333333334,1,1,0,0,1,2,4,1,548.5,1187909.3,750515.13,109881.92,0,6358.376 -5495,6772,12193,-9,12194,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.9153,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,562,253803.86,53266.207,197174.59,62127.781,3692.8591 -5495,6772,12194,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.5785475,8.8467588,7.8455043,0,0,-1091.9045,0,2,2,2019,11,1,30,35,1,1,0,19.687502,19.687502,0,0,0,0,0,1,1,0,8.0981627,0,44.36,56.72,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,562,253803.86,53266.207,197174.59,62127.781,3692.8591 -5495,6772,12195,-9,12194,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.57294,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,562,253803.86,53266.207,197174.59,62127.781,3692.8591 -5496,6773,12196,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1051.087,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,16.339754,0,134.03238,0,1,1,0,0,0,27.89,18.61,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,771,-211469.97,0,0,0,985.23792 -5497,6774,12197,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.7289453,7.8266888,0,0,0,-1003.8421,0,2,1,2019,33,12,38,80,1,12,0,5.827105,5.827105,0,0,0,0,0,0,0,0,0,0,29.37,36.9,-9,-9,1.666666666666667,1,1,0,1,10,10,3,0,620,-351391.38,-82536.133,0,0,1243.3248 -5498,6775,12198,-9,12199,12200,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.11993,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,5,0,450.66666,596302.25,204240.39,616293.63,145382.63,5341.082 -5498,6775,12199,12200,-9,-9,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,14,-3,222.69057,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.61,39.74,55.9,52.64,1.666666666666667,2,3,1,0,0,8,5,0,450.66666,596302.25,204240.39,616293.63,145382.63,5341.082 -5498,6775,12200,12199,-9,-9,1,1,35,0,1,0,1,1,-9,1,4,9.2985306,8.8485527,0,14,3,-9.7175722,0,3,2,2019,10,1,20,20,1,1,0,64.352287,64.352287,0,0,0,0,2,1,1,0,0,0,55.9,52.64,32.61,39.74,3.333333333333333,2,3,0,0,5,8,5,0,450.66666,596302.25,204240.39,616293.63,145382.63,5341.082 -5499,6776,12201,-9,12202,12203,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.2927,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 -5499,6776,12202,12203,-9,-9,1,0,33,0,2,0,1,1,-9,0,1,7.8979969,7.8094096,0,11,-3,-57.806259,0,2,2,2019,8,0,37,23,1,0,0,8.1767054,8.1767054,0,0,0,0,2,1,1,0,0,0,54.89,24.95,51,56,6.666666666666667,1,1,0,0,6,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 -5499,6776,12203,12202,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.4206352,8.5630207,0,6,3,-56.1217,0,-9,-9,2019,10,0,50,60,1,1,0,12.308777,12.308777,0,0,0,0,0,1,1,0,1.1181982,0,51,56,54.89,24.95,7,1,1,0,0,1,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 -5499,6776,12204,-9,12202,12203,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5511,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,595.75,324807.94,114059.85,233014.33,94130.086,3538.3196 -5500,6777,12205,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,5.7067347,5.8792114,0,0,-1003.099,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,2.7060492,0,24.057638,0,1,1,0,0,6.0617094,58.67,28.59,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,2340,167601.56,107548.97,2686.9268,0,1412.8539 -5501,6778,12206,-9,12207,-9,1,0,8,1,1,1,3,0,-9,0,4,0,0,0,0,0,-981.06006,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,6,1,1,538.5,289785.28,0,0,0,2229.9556 -5501,6778,12207,-9,-9,-9,1,0,57,1,1,0,2,2,-9,0,3,0,0,0,0,0,-1017.421,0,-9,-9,2019,11,0,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,1,8,6,1,1,538.5,289785.28,0,0,0,2229.9556 -5501,6778,12208,-9,12207,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-947.40112,-9,-9,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,1,1,538.5,289785.28,0,0,0,2229.9556 -5501,6778,12209,-9,12207,-9,1,1,5,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.8566,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,1,1,538.5,289785.28,0,0,0,2229.9556 -5502,6779,12210,12211,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.439137,7.2537975,10,6,-34.410278,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4899936,63.06,53.47,57.16,56.15,8.333333333333334,1,1,0,0,9,11,3,1,169,986567.13,556090,408589.69,0,1844.4967 -5502,6779,12211,12210,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,5.6014695,5.5868688,10,-6,-9.2020035,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5152445,57.16,56.15,63.06,53.47,8.333333333333334,1,1,0,0,10,11,3,1,169,986567.13,556090,408589.69,0,1844.4967 -5503,6780,12212,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.9865294,6.6871476,0,0,-913.30908,-9,2,3,2019,9,0,0,0,4,0,0,0,0,1,1.7540016,13.615156,26.684891,0,1,1,0,0,7.2207007,46.78,22.43,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,303,620094.44,256201.5,232064.97,0,1222.5853 -5504,6781,12213,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.3726726,7.5626926,0,0,-1005.594,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1320262,51.13,50.73,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,281,248208.66,113457.97,178202.75,0,1859.9808 -5505,6782,12214,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,2,7.9929709,7.9298673,0,0,0,-1076.5042,0,2,1,2019,13,3,60,67,1,3,0,5.8427992,5.8427992,0,0,0,0,0,0,0,0,3.2065289,0,40.2,37.27,-9,-9,10,1,1,0,0,7,13,4,0,3278,45528.594,64006.777,95536.086,75256.578,1896.4376 -5506,6783,12215,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.3507271,8.3717585,0,0,-1028.8209,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.4166722,8.0278444,50.25,54.04,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,282,-104903.58,817.83319,134574.95,0,1916.9415 -5507,6784,12216,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,8.1362419,8.136179,0,0,0,-1013.6646,0,2,2,2019,21,8,35,35,1,8,0,11.605139,11.605139,1,0,0,0,0,0,0,0,3.1233988,0,29.27,49.94,-9,-9,5,1,1,0,0,9,8,4,0,476,314208.34,0,130484.96,28966.051,1891.7435 -5508,6785,12217,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.3603196,5.6513615,0,0,-1088.951,0,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,5.6275296,34.17,58.8,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,333,399914.22,2839.6675,0,0,126.45151 -5509,6786,12218,-9,12220,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.48889,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,647,135510.14,0,0,0,1806.0417 -5509,6786,12219,-9,12220,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9283,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,647,135510.14,0,0,0,1806.0417 -5509,6786,12220,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1031.2754,0,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,1,0,647,135510.14,0,0,0,1806.0417 -5510,6787,12221,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,7.6201572,7.6095247,0,0,0,-935.5116,0,2,2,2019,7,0,37,38,1,0,0,7.5412908,7.5412908,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,0,1335,24247.178,3439.8538,0,0,933.04993 -5511,6788,12222,12223,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.5119591,8.4032078,0,14,2,-36.514782,0,3,2,2019,12,2,43,42,1,2,0,12.712358,12.712358,0,0,0,0,0,0,0,0,5.1239634,0,47.74,37.85,54.37,54.8,8.333333333333334,1,1,0,0,13,2,5,1,553.5,679863.75,396794.31,134606.19,73441.211,4324.8955 -5511,6788,12223,12222,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.7807484,8.8522911,0,14,-2,-79.199318,0,3,3,2019,9,1,41,40,1,1,0,16.918905,16.918905,0,0,0,0,7,0,0,0,1.1556392,0,54.37,54.8,47.74,37.85,8.333333333333334,1,1,0,0,13,2,5,1,553.5,679863.75,396794.31,134606.19,73441.211,4324.8955 -5512,6789,12224,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-937.53381,0,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,10.23,51.37,-9,-9,1.666666666666667,1,1,1,1,0,4,1,0,142,527148.31,0,0,0,732.60199 -5513,6790,12225,12226,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.0545759,9.3028278,0,20,7,78.592468,0,2,2,2019,19,9,48,46,1,9,0,21.81502,21.81502,0,0,0,0,0,0,0,0,7.5401163,0,39.14,37.02,47.49,55.02,3.333333333333333,1,1,0,0,11,1,5,1,654.5,153179.06,92135.375,0,0,6356.4023 -5513,6790,12226,12225,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5994806,8.5878153,0,19,-7,142.06152,0,2,3,2019,9,0,38,38,1,0,0,15.96797,15.96797,0,0,0,0,0,0,0,0,1.7572503,0,47.49,55.02,39.14,37.02,8.333333333333334,1,1,0,0,11,1,5,1,654.5,153179.06,92135.375,0,0,6356.4023 -5514,6791,12227,12228,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.7956066,8.7543478,0,30,-3,-71.800934,0,2,3,2019,10,0,42,40,1,0,0,19.202175,19.202175,0,0,0,0,0,0,0,0,3.2817907,0,49.73,53.97,64.96000000000001,43.19,8.333333333333334,1,1,0,0,10,12,5,1,172.5,520585.13,598162.31,185078.5,94847.453,5523.7783 -5514,6791,12228,12227,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,9.2762747,9.3086033,0,30,3,96.99041,0,3,3,2019,9,0,94,70,1,0,0,12.79115,12.79115,0,0,0,0,14.5,0,0,0,2.6860344,0,64.96000000000001,43.19,49.73,53.97,10,1,1,0,0,11,12,5,1,172.5,520585.13,598162.31,185078.5,94847.453,5523.7783 -5515,6792,12229,12230,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.6425648,6.4677501,8,4,4.2963104,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4241815,5.8935475,62.42,42.94,61.19,39.41,8.333333333333334,1,1,0,0,1,2,2,1,309.5,443192.56,111677.71,213688.08,0,1758.8977 -5515,6792,12230,12229,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.1906433,6.493588,8,-4,-37.969807,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3514161,6.1136088,61.19,39.41,62.42,42.94,8.333333333333334,1,1,0,0,3,2,2,1,309.5,443192.56,111677.71,213688.08,0,1758.8977 -5516,6793,12231,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.4925003,8.5249386,0,0,0,-943.64819,0,3,3,2019,15,4,48,57,1,4,0,15.244901,15.244901,0,0,0,0,0,1,1,0,0,0,36.76,58.96,-9,-9,5,1,1,0,1,12,2,5,1,768,-43332.438,-32901.516,0,0,2963.6003 -5517,6794,12232,12233,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.7800131,6.6247563,5,-5,-60.37225,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.9483647,6.2719212,46.67,58.37,31.84,51.65,6.666666666666667,1,1,0,0,0,4,2,1,306.5,535814.81,272756.94,167903.69,0,2134.2593 -5517,6794,12233,12232,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.6034007,7.3123007,5,5,-17.650537,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9323134,6.891202,31.84,51.65,46.67,58.37,6.666666666666667,1,1,0,0,0,4,2,1,306.5,535814.81,272756.94,167903.69,0,2134.2593 -5518,6795,12234,12235,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.9006262,8.7257519,0,9,-1,15.637138,0,2,2,2019,10,0,47,47,1,0,0,11.992338,11.992338,0,0,0,0,0,0,0,0,.95036507,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,682.5,250858.09,176023.28,336610.88,249053.81,4636.0195 -5518,6795,12235,12234,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.9691582,8.7128525,0,9,1,-13.051216,0,-9,-9,2019,5,0,41,42,1,0,0,23.428955,23.428955,0,0,0,0,0,0,0,0,2.0440474,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,682.5,250858.09,176023.28,336610.88,249053.81,4636.0195 -5518,6796,12236,-9,12234,12235,1,1,21,0,0,0,2,2,0,0,5,0,5.637176,5.7391496,0,0,-1182.6622,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.9957299,0,57.06,57.76,-9,-9,10,1,1,0,0,2,6,2,1,358,-247560.81,0,0,0,-146.48581 -5519,6797,12237,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.1591053,7.3836985,0,0,0,-1005.4352,0,-9,-9,2019,11,1,24,0,1,1,0,6.5986781,6.5986781,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,1,7,1,3,1,2042,202720.73,0,0,0,250.96404 -5520,6798,12238,12239,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.6069279,8.6074257,0,22,-1,77.962639,0,2,2,2019,6,0,60,55,1,0,0,7.9480076,7.9480076,0,0,0,0,0,1,1,0,2.853353,0,59.29,49.68,51.67,60.18,8.333333333333334,1,1,0,0,9,6,5,1,494.5,531003.25,214158.19,161682.94,21296.676,3432.542 -5520,6798,12239,12238,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.6461573,8.4992485,0,20,1,-12.75171,0,2,2,2019,8,0,37,38,1,0,0,17.26543,17.26543,0,0,0,0,0,1,1,0,.62669438,0,51.67,60.18,59.29,49.68,8.333333333333334,1,1,0,0,9,6,5,1,494.5,531003.25,214158.19,161682.94,21296.676,3432.542 -5521,6799,12240,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.5544114,7.3133507,0,0,-1011.9724,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.8303493,7.4364281,64.98999999999999,24.3,-9,-9,10,1,1,0,0,0,4,3,1,808,119328.2,183657.3,100009.26,0,1153.1456 -5522,6800,12241,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,6.911273,6.9239473,0,0,-981.28851,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.7518783,58.62,52.91,-9,-9,5,1,1,0,0,6,7,2,1,119,44337.184,163899.2,0,0,806.46912 -5523,6801,12242,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,5.0604334,4.9712396,0,0,-1023.0977,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,4.8125505,0,21.0305,0,1,1,0,0,5.1654673,54.04,16.08,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,1360,253011.08,0,0,0,2244.8223 -5524,6802,12243,-9,12246,12248,1,1,10,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1000.9978,-9,1,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 -5524,6802,12244,-9,12246,12248,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1098.1597,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 -5524,6802,12245,-9,12246,12248,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-868.14612,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 -5524,6802,12246,12248,-9,-9,1,0,40,0,4,0,1,1,-9,0,5,9.2128067,9.2683048,0,14,-5,-40.378025,0,3,1,2019,8,0,30,38,1,0,0,37.809063,37.809063,0,0,0,0,0,1,1,0,.52405041,0,59.43,58.05,42.46,54.85,10,1,1,0,0,9,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 -5524,6802,12247,-9,12246,12248,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.0244,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 -5524,6802,12248,12246,-9,-9,1,1,45,0,4,0,3,3,-9,0,3,9.0374365,9.0430794,0,14,5,42.626438,0,2,3,2019,14,2,40,40,1,2,0,28.782352,28.782352,0,0,0,0,0,1,1,0,.55073941,0,42.46,54.85,59.43,58.05,8.333333333333334,1,1,0,0,11,5,5,1,402.66666,1383423.4,1058812.1,303315.44,75742.703,7115.5781 -5525,6803,12249,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.8635349,7.1939197,0,0,-884.79059,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5454292,7.3090348,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,186,224821.28,140600.91,153688.3,0,1975.8746 -5526,6804,12250,12252,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,6.9522266,7.2661719,0,6,1,-51.617271,0,2,2,2019,12,1,16,0,1,1,0,9.604167,9.604167,0,0,0,0,0,1,0,1,0,0,49.28,52.09,52.66,48.73,8.333333333333334,1,1,0,0,1,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 -5526,6804,12251,-9,12252,12250,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.9469,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 -5526,6804,12252,12250,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,6,-1,105.16943,0,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.66,48.73,49.28,52.09,6.666666666666667,1,1,0,0,2,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 -5526,6804,12253,-9,12252,12250,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.90509,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,665.5,584660.44,153229.8,290907.69,0,1802.3353 -5526,6805,12254,-9,12252,12250,1,0,21,0,2,0,2,2,-9,0,4,7.6202707,7.4932575,0,0,0,-949.64215,0,3,3,2019,12,0,38,35,1,0,1,5.5859036,5.5859036,0,0,0,0,0,1,0,1,0,0,40.74,50.41,-9,-9,3.333333333333333,1,1,0,0,3,11,3,0,391,-11060.323,-49839.707,0,0,1074.4664 -5527,6806,12255,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.9321833,8.2184906,0,0,-1035.4,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.722614,7.9366679,39.61,38.46,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,395,797406.06,195332,201599.06,0,2100.7415 -5528,6807,12256,12257,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.5379224,5.6884274,9,-1,-13.78687,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6226377,0,54.96,53.17,61.68,49.95,8.333333333333334,1,1,0,0,0,11,4,1,537,1437519.3,901938.69,273658,0,4347.999 -5528,6807,12257,12256,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,8.2520876,8.6501713,9,1,-29.98649,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6068203,8.380228,61.68,49.95,54.96,53.17,8.333333333333334,1,1,0,0,11,11,4,1,537,1437519.3,901938.69,273658,0,4347.999 -5529,6808,12258,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,3,-6,-77.097557,0,-9,-9,2019,29,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,31.1,61.19,52.23,55.6,1.666666666666667,1,1,1,1,1,12,4,0,343,-32583.322,0,0,0,0 -5529,6809,12259,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.3245325,8.1005421,0,3,6,117.4819,-9,-9,-9,2019,9,1,40,0,1,1,0,10.845732,10.845732,0,0,0,0,0,0,0,0,0,0,52.23,55.6,31.1,61.19,8.333333333333334,1,1,0,0,2,12,4,0,414,15493.531,27242.195,117717.98,0,2136.0164 -5530,6810,12260,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7959881,7.7932291,0,0,0,-980.4386,0,3,-9,2019,17,4,37,37,1,4,0,5.5191946,5.5191946,0,0,0,0,0,0,0,0,3.8924716,0,43.95,51.24,-9,-9,5,1,1,0,0,7,4,3,1,383,412113.72,253324.45,100956.11,64227.785,886.46606 -5531,6811,12261,12265,-9,-9,1,1,42,0,5,0,2,2,-9,0,3,8.5083094,8.6979322,0,1,13,-163.06198,-9,-9,-9,2019,14,2,40,0,1,2,0,14.647881,14.647881,0,0,0,0,0,1,1,0,0,0,45.81,39.6,62.49,55.09,6.666666666666667,1,1,0,0,13,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 -5531,6811,12262,-9,12265,12261,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1008.9492,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 -5531,6811,12263,-9,12265,12261,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1009.3418,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 -5531,6811,12264,-9,12265,12261,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-921.90985,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 -5531,6811,12265,12261,-9,-9,1,0,29,0,5,0,2,2,-9,0,4,0,0,0,1,-13,-45.326786,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,45.81,39.6,8.333333333333334,1,1,0,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 -5531,6811,12266,-9,12265,12261,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1190.0337,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1055.5,-90102.883,71463.328,0,0,2841.5623 -5532,6812,12267,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.3008327,8.3528585,0,0,0,-913.00952,0,2,3,2019,8,0,40,45,1,0,0,10.356475,10.356475,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,8,4,1,692,-43913.047,-16341.311,0,0,1837.7552 -5533,6813,12268,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1033.2273,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.63,52.48,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,208,-114486.5,0,0,0,1152.8978 -5534,6814,12269,-9,-9,-9,1,1,36,0,0,0,3,3,-9,0,5,8.8955288,9.0687084,0,0,0,-914.64673,-9,-9,-9,2019,16,5,40,0,1,5,0,24.664875,24.664875,0,0,0,0,0,0,0,0,0,0,30.57,65.05,-9,-9,6.666666666666667,1,1,0,0,9,9,5,0,2296,63427.469,62184.227,0,0,3271.4192 -5535,6815,12270,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-862.93073,0,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.83,37.94,-9,-9,0,1,1,0,1,6,10,1,0,231,-104285.78,0,0,0,1323.5276 -5536,6816,12271,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,8.0647125,8.059413,0,0,0,-985.50177,0,2,3,2019,9,0,42,38,1,0,0,9.5971298,9.5971298,0,0,0,0,0,0,0,0,0,0,50.28,51.35,-9,-9,6.666666666666667,1,1,0,0,8,2,4,0,137,-205780.75,81598.383,128133.68,16945.162,1906.3784 -5537,6817,12272,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,3.9845781,4.2644696,0,0,-1024.1383,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.2536063,3.9782398,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,274,257033.63,227009.63,0,0,1361.4526 -5538,6818,12273,-9,12276,12274,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3097,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 -5538,6818,12274,12276,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7515163,8.8606787,0,15,4,75.109154,0,2,2,2019,10,2,45,45,1,2,0,14.225078,14.225078,0,0,0,0,0,1,1,0,0,0,49.46,56.91,47.38,57.75,8.333333333333334,1,1,0,1,12,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 -5538,6818,12275,-9,12276,12274,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.70276,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 -5538,6818,12276,12274,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.2352905,8.532795,6.4262285,15,-4,64.281288,0,1,2,2019,7,0,48,6,1,0,0,10.27746,10.27746,0,0,0,0,0,1,1,0,5.8297234,0,47.38,57.75,49.46,56.91,8.333333333333334,1,1,0,0,12,9,5,1,943.25,385721.69,45593.609,542087.88,219352.06,4595.7344 -5539,6819,12277,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.12091,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.41,20.59,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,140,151786.11,0,0,0,360.15967 -5540,6820,12278,12279,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.7964826,7.9834061,0,10,-4,20.060053,0,3,3,2019,9,0,45,40,1,0,0,8.0074768,8.0074768,0,0,0,0,0,0,0,0,0,0,52.3,39.24,41.17,59.31,6.666666666666667,1,1,0,0,7,10,4,0,378,39329.172,48947.043,131824.84,126343.41,2336.0737 -5540,6820,12279,12278,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6831822,8.2447987,0,10,4,21.139427,0,2,3,2019,8,0,35,35,1,0,0,7.4029813,7.4029813,0,0,0,0,0,0,0,0,0,0,41.17,59.31,52.3,39.24,6.666666666666667,1,1,0,0,9,10,4,0,378,39329.172,48947.043,131824.84,126343.41,2336.0737 -5541,6821,12280,12281,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,3.5803103,4.1131535,56,3,113.94067,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,1.3911464,3.7827773,38.39,48.48,35.28,53.3,6.666666666666667,1,1,0,0,0,12,3,1,468.5,494226.5,140154.03,283285.91,0,2485.1011 -5541,6821,12281,12280,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.9224048,7.8771486,56,-3,-101.75535,0,3,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.4951483,7.907989,35.28,53.3,38.39,48.48,6.666666666666667,1,1,0,0,0,12,3,1,468.5,494226.5,140154.03,283285.91,0,2485.1011 -5542,6822,12282,-9,12284,12283,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.97314,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 -5542,6822,12283,12284,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.6302719,8.5137424,0,7,5,35.276508,0,-9,-9,2019,12,1,43,42,1,1,0,20.331526,20.331526,0,0,0,0,0,1,1,0,2.6330521,0,51.14,52.42,54.2,57.49,6.666666666666667,1,1,0,0,8,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 -5542,6822,12284,12283,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.8856673,7.7966952,0,14,-5,99.140167,0,3,2,2019,10,0,25,25,1,0,0,14.311524,14.311524,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.14,52.42,8.333333333333334,1,1,0,0,8,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 -5542,6822,12285,-9,12284,12283,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.88763,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,758.75,148801.52,149803.53,392869.44,123546.39,3841.0405 -5543,6823,12286,12287,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.6335363,9.1339674,0,3,2,16.897673,0,-9,-9,2019,8,0,45,45,1,0,0,17.428135,17.428135,0,0,0,0,0,0,0,0,0,0,49.04,55.86,52,54.51,8.333333333333334,1,1,0,0,9,10,5,1,875.5,104234.48,60653.219,234812.81,112126.7,3073.9604 -5543,6823,12287,12286,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,6.0204592,6.2646813,0,3,-2,-99.776604,0,2,3,2019,11,0,37,37,1,0,0,1.9412185,1.9412185,0,0,0,0,0,0,0,0,0,0,52,54.51,49.04,55.86,10,1,1,0,0,9,10,5,1,875.5,104234.48,60653.219,234812.81,112126.7,3073.9604 -5544,6824,12288,12289,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.4575248,5.287993,8,-4,38.135235,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.6743913,5.6014619,44.62,57.73,35.74,39.61,8.333333333333334,1,1,0,0,7,9,4,1,333.5,1764471.3,797722.88,517035.75,0,4306.9375 -5544,6824,12289,12288,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.7244253,8.5774469,8,4,124.87674,0,2,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.008162,8.2513657,35.74,39.61,44.62,57.73,3.333333333333333,1,1,0,0,0,9,4,1,333.5,1764471.3,797722.88,517035.75,0,4306.9375 -5545,6825,12290,12291,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.0122285,6.9273925,48,-4,44.184013,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.95578,59.39,43,56.33,51.02,8.333333333333334,1,1,0,0,0,12,2,1,363.5,522572.75,331096.84,213665.89,0,2177.4268 -5545,6825,12291,12290,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.3191943,6.1592045,48,4,17.893425,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5987196,6.4449334,56.33,51.02,59.39,43,8.333333333333334,1,1,0,0,0,12,2,1,363.5,522572.75,331096.84,213665.89,0,2177.4268 -5546,6826,12292,-9,12294,12293,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.60461,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 -5546,6826,12293,12294,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.0096483,8.9566212,0,14,-2,66.853401,0,1,1,2019,12,0,55,55,1,0,0,22.505806,22.505806,0,0,0,0,0,1,1,0,0,0,41.17,59.31,39.82,58.52,6.666666666666667,1,1,0,0,10,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 -5546,6826,12294,12293,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.1207118,6.9398551,0,14,2,24.22184,0,3,2,2019,12,0,20,16,1,0,0,6.3114243,6.3114243,0,0,0,0,0,1,1,0,0,0,39.82,58.52,41.17,59.31,6.666666666666667,1,1,0,0,6,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 -5546,6826,12295,-9,12294,12293,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.55646,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,0,1144,262327.63,35134.676,538437.19,315236,4417.9722 -5547,6827,12296,12297,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.2804232,8.3997021,0,37,8,68.163132,0,3,3,2019,8,0,52,42,1,0,0,8.4659042,8.4659042,0,0,0,0,0,0,0,0,0,0,58.41,31.32,54.2,57.49,10,1,1,0,0,9,12,4,1,614.5,288106.63,72706.313,37330.77,0,3265.8049 -5547,6827,12297,12296,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0365,7.7552848,0,37,-8,24.418514,0,3,3,2019,9,0,35,35,1,0,0,10.174567,10.174567,0,0,0,0,27,0,0,0,0,0,54.2,57.49,58.41,31.32,10,1,1,0,0,9,12,4,1,614.5,288106.63,72706.313,37330.77,0,3265.8049 -5548,6828,12298,12299,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.3207607,7.1039257,0,8,0,-76.327957,0,3,3,2019,7,0,25,20,1,0,0,6.3380389,6.3380389,0,0,0,0,0,0,0,0,0,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,8,13,4,1,1416,471980.22,174433.16,78186.633,14897.596,2514.8394 -5548,6828,12299,12298,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.4095087,8.147912,0,8,0,152.88307,0,-9,-9,2019,8,0,38,48,1,0,0,17.201427,17.201427,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,9,13,4,1,1416,471980.22,174433.16,78186.633,14897.596,2514.8394 -5549,6829,12300,12301,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3097401,8.0215483,0,19,1,22.172075,0,2,2,2019,8,0,37,37,1,0,0,11.726622,11.726622,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.1,59.99,8.333333333333334,1,1,0,0,10,2,4,1,94,778653.38,376528.5,282077.09,0,2967.6558 -5549,6829,12301,12300,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.2721758,8.49718,0,19,-1,18.792929,0,2,2,2019,15,5,34,34,1,5,0,13.842585,13.842585,0,0,0,0,0,1,1,0,0,0,46.1,59.99,51.83,57.2,8.333333333333334,1,1,0,0,10,2,4,1,94,778653.38,376528.5,282077.09,0,2967.6558 -5550,6830,12302,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.728117,8.372632,0,0,0,-912.7782,0,-9,-9,2019,6,0,42,40,1,0,0,18.228073,18.228073,0,0,0,0,0,0,0,0,2.9271641,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,9,10,5,0,255,366442,34960.145,0,0,1821.0195 -5551,6831,12303,12304,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-1,82.288673,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.89,44.94,57.92,51.82,10,1,1,0,0,0,13,2,0,617.5,372003.13,75128.977,123120.44,0,792.28857 -5551,6831,12304,12303,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.0886927,6.4604878,10,1,99.226845,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0047741,57.92,51.82,60.89,44.94,10,1,1,0,0,3,13,2,0,617.5,372003.13,75128.977,123120.44,0,792.28857 -5552,6832,12305,12306,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4098558,8.4628305,0,2,1,92.256065,0,2,2,2019,15,4,60,60,1,4,0,9.0778685,9.0778685,0,0,0,0,0,0,0,0,0,0,41.06,62.04,24.66,36.37,8.333333333333334,1,1,0,0,11,4,5,1,681.5,-46515.211,-32063.652,147359.78,33852.566,3064.7258 -5552,6832,12306,12305,-9,-9,1,1,27,0,0,0,1,1,-9,0,1,8.3367767,7.9233775,0,2,-1,38.695621,0,-9,-9,2019,27,9,37,37,1,9,0,15.360607,15.360607,0,0,0,0,0,0,0,0,0,0,24.66,36.37,41.06,62.04,1.666666666666667,1,1,0,0,3,4,5,1,681.5,-46515.211,-32063.652,147359.78,33852.566,3064.7258 -5553,6833,12307,12308,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,7.3750892,7.2197986,0,18,3,107.15951,0,-9,-9,2019,7,0,38,41,1,0,0,5.0294924,5.0294924,0,0,0,0,0,0,0,0,0,0,63.39,42.39,45.43,53.5,8.333333333333334,2,3,0,0,11,6,3,1,738.5,-54598.945,92779.414,35133.289,6021.5645,1016.3174 -5553,6833,12308,12307,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,6.2706118,6.3731704,0,18,-3,-40.994274,0,-9,-9,2019,12,1,15,18,1,1,0,4.2374077,4.2374077,0,0,0,0,0,0,0,0,0,0,45.43,53.5,63.39,42.39,6.666666666666667,2,3,0,0,11,6,3,1,738.5,-54598.945,92779.414,35133.289,6021.5645,1016.3174 -5554,6834,12309,12310,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,0,0,9,13,-1.0384855,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.18,52.11,50.52,45.59,1.666666666666667,1,1,0,0,0,12,3,1,392.5,-186334.41,-7789.2295,104550.22,0,1619.2253 -5554,6834,12310,12309,-9,-9,1,0,64,0,0,0,3,3,-9,0,5,7.7168188,7.8735542,0,9,-13,22.465136,0,3,3,2019,6,0,39,39,1,0,0,8.396801,8.396801,0,0,0,0,0,1,1,0,0,0,50.52,45.59,52.18,52.11,0,1,1,0,0,10,12,3,1,392.5,-186334.41,-7789.2295,104550.22,0,1619.2253 -5555,6835,12311,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.3186083,8.0299234,0,0,-918.63568,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.120592,8.4561052,56.35,43.13,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,109,148297.78,380374.38,151360.16,0,2541.4131 -5556,6836,12312,12313,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.114521,7.2720208,0,9,-2,-82.493187,0,3,3,2019,11,0,21,21,1,0,0,6.8639855,6.8639855,0,0,0,0,0,0,0,0,0,0,48.81,59.91,48.53,58.91,8.333333333333334,1,1,0,0,12,11,2,1,868.5,1088647.5,450755.75,375217.91,0,842.45673 -5556,6836,12313,12312,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,43,2,35.022556,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,48.81,59.91,8.333333333333334,1,1,0,0,11,11,2,1,868.5,1088647.5,450755.75,375217.91,0,842.45673 -5557,6837,12314,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.15592,8.8900242,0,0,0,-1018.7054,0,3,2,2019,17,5,48,40,1,5,0,21.608309,21.608309,0,0,0,0,0,0,0,0,5.5798993,0,45.49,58.84,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,425,297095.38,7539.3188,0,0,3567.2725 -5558,6838,12315,12316,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,7.1388874,7.336339,0,27,4,-58.171726,0,2,2,2019,12,0,45,45,1,0,0,2.7941906,2.7941906,0,0,0,0,0,1,1,0,0,0,39.32,54.04,34.4,54.41,6.666666666666667,1,1,0,1,6,9,2,0,810,345738.81,59411.809,319772.22,27481.381,1379.2032 -5558,6838,12316,12315,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,6.5802584,6.5790453,0,27,-4,6.2743521,0,2,2,2019,18,6,11,11,1,6,0,7.318953,7.318953,0,0,0,0,0,1,1,0,0,0,34.4,54.41,39.32,54.04,5,1,1,0,0,9,9,2,0,810,345738.81,59411.809,319772.22,27481.381,1379.2032 -5558,6838,12317,-9,12316,12315,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1081.0677,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,17.47,63.49,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,810,345738.81,59411.809,319772.22,27481.381,1379.2032 -5558,6839,12318,-9,12316,12315,1,1,23,0,1,0,2,2,-9,0,3,7.6707153,7.3794341,0,0,0,-946.67108,0,2,2,2019,12,0,47,47,1,0,1,4.489378,4.489378,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,9,3,0,343,95997.109,0,0,0,1056.6447 -5559,6840,12319,12320,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.239748,8.3061008,0,9,3,-52.734196,0,3,2,2019,9,0,35,40,1,0,0,12.251204,12.251204,0,0,0,0,0,0,0,0,4.6407781,0,58.33,47.36,43.6,51.61,8.333333333333334,1,1,0,0,12,10,5,1,1137,1571193.3,986309.88,373757.81,0,3725.0405 -5559,6840,12320,12319,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,8.6068792,8.2746964,0,9,-3,-63.666779,0,-9,2,2019,11,0,45,45,1,0,0,11.813028,11.813028,0,0,0,0,0,0,0,0,0,0,43.6,51.61,58.33,47.36,6.666666666666667,1,1,0,0,12,10,5,1,1137,1571193.3,986309.88,373757.81,0,3725.0405 -5560,6841,12321,12322,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.9940929,8.2626734,6,5,-30.629795,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6229649,8.2313366,56,52,57.06,57.76,8,1,1,0,0,0,9,3,1,1093,1143361,826917.88,367466.81,0,2875.4822 -5560,6841,12322,12321,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.2204003,5.5261831,42,-5,-83.203278,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7372246,5.5973806,57.06,57.76,56,52,10,1,1,0,0,0,9,3,1,1093,1143361,826917.88,367466.81,0,2875.4822 -5561,6842,12323,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.7338977,7.8203669,0,0,0,-1067.6821,0,-9,-9,2019,10,0,42,38,1,0,0,7.6541853,7.6541853,0,0,0,0,0,1,1,0,0,0,55.67,44.61,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,1678,180302.3,256370.8,214753.2,24289.191,890.04193 -5561,6843,12324,-9,12323,-9,1,1,29,0,0,0,1,1,-9,0,4,8.0167685,8.1960554,0,0,0,-979.86371,0,1,-9,2019,10,0,37,42,1,1,1,9.1032524,9.1032524,0,0,0,0,0,1,1,0,1.5959017,0,49,58,-9,-9,7,4,2,0,0,1,6,4,1,497,-292020.38,110799.88,0,0,1142.5942 -5562,6844,12325,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2262526,7.9058475,0,0,0,-1003.687,0,2,2,2019,27,11,40,37,1,11,0,9.0918541,9.0918541,0,0,0,0,5.48,0,0,0,0,0,34.75,43.28,-9,-9,3.333333333333333,1,1,0,1,12,5,4,1,459,-21591.043,-41956.195,0,0,1278.9868 -5563,6845,12326,12327,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,36,0,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.21,18.82,43.27,12.89,1.666666666666667,1,1,0,0,0,1,1,0,345.5,-29876.914,0,0,0,2920.9451 -5563,6845,12327,12326,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,36,0,0,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,43.27,12.89,36.21,18.82,5,1,1,0,0,0,1,1,0,345.5,-29876.914,0,0,0,2920.9451 -5564,6846,12328,12329,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.8048854,6.7831244,32,3,-98.712585,0,2,2,2019,6,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1307898,7.1507792,62.05,20.56,54.2,57.49,10,1,1,0,0,10,10,3,1,847.5,618078.25,272559.13,279127.5,0,631.99426 -5564,6846,12329,12328,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.6624122,6.6389327,0,32,-3,70.363846,0,3,2,2019,12,2,20,10,1,2,0,4.8773823,4.8773823,0,0,0,0,0,0,0,0,.092508659,0,54.2,57.49,62.05,20.56,1.666666666666667,1,1,0,0,10,10,3,1,847.5,618078.25,272559.13,279127.5,0,631.99426 -5565,6847,12330,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.3534141,7.5588937,4.6726284,0,0,-1032.5806,0,3,-9,2019,16,3,30,30,1,3,0,6.3309708,6.3309708,0,0,0,0,0,0,0,0,4.5653458,5.2198558,34.21,46.41,-9,-9,3.333333333333333,1,1,0,0,7,11,3,1,837,59090.383,-30426.355,0,0,675.02557 -5565,6848,12331,-9,12330,-9,1,0,25,0,0,0,2,2,-9,0,1,6.9119821,7.1326098,0,0,0,-1065.011,0,2,2,2019,15,3,20,12,1,3,1,6.1959839,6.1959839,0,0,0,0,0,0,0,0,0,0,37.78,45.28,-9,-9,5,1,1,0,1,4,11,2,1,110,77597.742,0,0,0,295.026 -5565,6849,12332,-9,12330,-9,1,0,21,0,0,0,2,2,-9,0,4,7.6546583,7.3849845,0,0,0,-894.20587,0,2,2,2019,10,1,48,30,1,1,1,4.5645847,4.5645847,0,0,0,0,0,0,0,0,0,0,46.99,52.49,-9,-9,8.333333333333334,1,1,0,0,1,11,3,1,392,182868.8,0,0,0,1243.9275 -5566,6850,12333,-9,12335,12334,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.527,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,586,-71735.688,-3320.8059,0,0,2796.8499 -5566,6850,12334,12335,-9,-9,1,1,37,1,1,0,3,3,-9,0,4,8.1918449,8.2553692,0,5,2,-69.087708,0,-9,-9,2019,10,0,40,40,1,1,0,8.8985901,8.8985901,0,0,0,0,0,1,1,0,6.3677387,0,50,57,57.92,51.82,7,4,1,0,0,1,2,3,1,586,-71735.688,-3320.8059,0,0,2796.8499 -5566,6850,12335,12334,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,0,0,0,5,-2,-90.173019,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.077414,0,57.92,51.82,50,57,8.333333333333334,1,1,0,0,9,2,3,1,586,-71735.688,-3320.8059,0,0,2796.8499 -5567,6851,12336,12337,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,9,-11,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7468746,0,51.55,41.42,59.3,44.82,8.333333333333334,1,1,0,0,0,10,2,1,1168.5,157437.38,0,240381.84,0,1051.2919 -5567,6851,12337,12336,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,9,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.3,44.82,51.55,41.42,8.333333333333334,1,1,0,0,0,10,2,1,1168.5,157437.38,0,240381.84,0,1051.2919 -5568,6852,12338,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.8288121,6.6063199,0,0,-1025.3976,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,.55122435,0,0,1,1,0,7.8589239,6.8587422,52,45,-9,-9,8,3,4,0,0,0,8,2,1,1253,-291163.59,135452.97,0,0,1727.3577 -5569,6853,12339,12340,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,8.3305817,8.190546,46,0,41.78392,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3947721,8.0344315,46.31,56.45,51,46,8.333333333333334,1,1,0,0,0,5,4,1,542,881514.88,658395.06,64674.445,0,4040.0176 -5569,6853,12340,12339,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.0056653,6.948935,6,0,-88.43084,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3068533,51,46,46.31,56.45,7,1,1,0,0,0,5,4,1,542,881514.88,658395.06,64674.445,0,4040.0176 -5570,6854,12341,-9,12342,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.5348,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 -5570,6854,12342,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,4,6.9943185,7.0657659,0,0,0,-861.53558,0,3,3,2019,11,0,16,0,1,2,0,7.1388416,7.1388416,0,0,0,0,2,1,1,0,0,0,48,57,-9,-9,7,2,3,0,1,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 -5570,6854,12343,-9,12342,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1004.1072,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 -5570,6854,12344,-9,12342,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.4596,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,494.5,-56022.891,0,0,0,2269.332 -5571,6855,12345,-9,12346,12348,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.6116,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 -5571,6855,12346,12348,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,8.5701857,8.723341,6.144948,8,0,24.534748,0,2,2,2019,6,0,38,36,1,0,0,17.998451,17.998451,0,0,0,0,0,1,1,0,6.8982906,0,54.69,57.47,52.24,50.75,8.333333333333334,1,1,0,0,9,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 -5571,6855,12347,-9,12346,12348,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0042,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 -5571,6855,12348,12346,-9,-9,1,1,48,1,2,0,1,1,-9,0,2,7.7037463,7.9022636,0,8,9,-37.866245,0,-9,-9,2019,8,0,25,26,1,0,0,11.104779,11.104779,0,0,0,0,0,1,1,0,0,0,52.24,50.75,54.69,57.47,8.333333333333334,1,1,0,0,9,2,4,1,2347,344044.28,251419.44,222794.03,141645.97,2827.8618 -5572,6856,12349,-9,12350,12351,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.37952,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 -5572,6856,12350,12351,-9,-9,1,0,40,1,2,0,1,1,-9,0,5,8.5819416,8.802474,0,19,0,-25.106775,0,3,2,2019,8,0,40,40,1,0,0,22.113764,22.113764,0,0,0,0,0,1,1,0,0,0,54.1,59.11,43.76,46.27,8.333333333333334,1,1,0,0,9,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 -5572,6856,12351,12350,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,8.3629141,8.4149733,0,19,0,34.558643,0,3,-9,2019,11,1,15,20,1,1,0,41.250851,41.250851,0,0,0,0,0,1,1,0,0,0,43.76,46.27,54.1,59.11,6.666666666666667,1,1,0,1,8,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 -5572,6856,12352,-9,12350,12351,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.1703,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,950,357422.66,270075.41,57063.527,43374.32,4259.5391 -5573,6857,12353,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1098.2789,-9,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,7.1301227,0,0,0,0,0,0,0,58.72,30.19,-9,-9,8.333333333333334,4,5,0,0,0,8,2,0,173,-117873.34,0,0,0,0 -5574,6858,12354,12357,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,7.7520609,7.8492112,0,5,1,122.3718,0,2,1,2019,9,0,16,10,1,1,0,21.600372,21.600372,0,0,0,0,0,1,1,0,4.3633718,0,52,55,28.82,38.3,7,1,1,0,0,1,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 -5574,6858,12355,-9,12357,12354,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1116.4849,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.1068006,0,40.38,58.36,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 -5574,6858,12356,-9,12357,12354,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.91333,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 -5574,6858,12357,12354,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.1806698,8.1735554,0,5,-1,33.920036,0,2,2,2019,22,10,45,37,1,10,0,9.0993662,9.0993662,0,0,0,0,0,1,1,0,0,0,28.82,38.3,52,55,5,1,1,0,1,3,4,3,1,1030,342514.03,117690.98,86888.047,34083.43,2683.5537 -5574,6859,12358,-9,12357,12354,1,1,20,0,1,0,2,2,-9,0,4,7.0750661,7.4577465,0,0,0,-1027.446,0,2,2,2019,10,0,40,35,1,2,1,3.8857176,3.8857176,0,0,0,0,0,1,1,0,.14370404,0,49,58,-9,-9,7,1,1,0,0,1,4,3,1,533,318445.34,0,0,0,455.18491 -5575,6860,12359,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.9072447,6.8658929,0,0,-999.98901,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.579268,7.4013963,46.55,58.3,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,497,-40957.109,101188.7,195450.33,21505.729,1671.1162 -5576,6861,12360,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.611537,8.7904606,3.9231319,0,0,-1038.6338,0,1,1,2019,10,0,41,45,1,0,0,17.433884,17.433884,0,0,0,0,0,1,1,0,4.351243,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,432.5,98238.031,172036.25,0,0,2284.1777 -5576,6861,12361,-9,12360,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.3236,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,432.5,98238.031,172036.25,0,0,2284.1777 -5577,6862,12362,-9,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,6.1914401,6.3854313,0,0,-1065.1267,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.83533,55,45,-9,-9,8,3,4,0,0,0,6,2,0,772,126275.98,0,252608.34,0,840.04718 -5578,6863,12363,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.3089504,9.6108208,0,20,1,36.675209,0,2,2,2019,12,0,55,73,1,0,0,25.522675,25.522675,0,0,0,0,0,0,0,0,0,0,45.99,51.88,51,56,6.666666666666667,1,1,0,0,12,10,5,1,248,666518.81,213044.17,275450.47,114262.15,3842.2485 -5579,6864,12364,-9,12365,12366,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.33698,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.36550042,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,363,862600.81,102340.17,650487.75,184654.77,4214.3804 -5579,6864,12365,12366,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.9843869,7.8602042,0,9,-1,-188.4953,0,2,2,2019,10,1,30,27,1,1,0,11.243222,11.243222,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,0,363,862600.81,102340.17,650487.75,184654.77,4214.3804 -5579,6864,12366,12365,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.9363213,8.679656,0,9,1,47.745255,0,2,2,2019,9,0,57,62,1,0,0,16.942923,16.942923,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,4,5,0,363,862600.81,102340.17,650487.75,184654.77,4214.3804 -5580,6865,12367,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7601705,7.7176571,0,0,0,-903.41052,0,2,2,2019,28,11,42,42,1,11,0,5.7485094,5.7485094,0,0,0,0,0,1,1,0,0,0,41.97,46.65,-9,-9,1.666666666666667,1,1,0,1,6,9,3,0,751,45519.781,106036.27,0,0,2132.4795 -5580,6866,12368,-9,12367,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1059.3733,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,293,-41403.469,0,0,0,0 -5581,6867,12369,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.9779,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,9,13,1,1,156,6440.8271,0,0,0,-759.98468 -5582,6868,12370,12371,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.6391106,8.7789965,0,30,1,34.51405,0,3,3,2019,7,0,42,42,1,0,0,19.191273,19.191273,0,0,0,0,0,0,0,0,6.0328522,0,58.32,50.22,60.87,42.1,8.333333333333334,1,1,0,0,10,6,5,1,401,980740.88,749740.06,362946.75,0,2665.2302 -5582,6868,12371,12370,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.2981086,6.4683094,0,30,-1,-44.797619,0,2,2,2019,11,0,10,11,1,0,0,6.826365,6.826365,0,0,0,0,14.5,0,0,0,0,0,60.87,42.1,58.32,50.22,8.333333333333334,1,1,0,0,10,6,5,1,401,980740.88,749740.06,362946.75,0,2665.2302 -5583,6869,12372,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-992.46735,0,3,3,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.92,23.36,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1541,-224030.06,0,0,0,1005.2453 -5584,6870,12373,-9,12374,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.0775,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,11,3,0,467,463112.5,67160.656,107823.23,45469.148,1808.2239 -5584,6870,12374,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,8.1307802,8.2425327,0,0,0,-960.18884,0,2,2,2019,24,8,43,43,1,8,0,8.8087015,8.8087015,0,0,0,0,0,1,1,0,2.8699226,0,32.29,51.52,-9,-9,0,1,1,0,0,8,11,3,0,467,463112.5,67160.656,107823.23,45469.148,1808.2239 -5585,6871,12375,12376,-9,-9,1,0,53,0,0,0,1,1,-9,1,2,6.7994828,7.2781014,0,6,0,79.839577,0,-9,-9,2019,17,6,10,10,1,6,0,9.7715693,9.7715693,0,0,0,0,0,1,1,0,0,0,43.25,38.75,56.18,53.85,8.333333333333334,1,1,0,0,8,10,3,1,321,956382.5,490703.63,306176.84,0,1964.3597 -5585,6871,12376,12375,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.7956634,7.8106313,6,9,36.327042,0,2,2,2019,11,0,0,43,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4607339,7.4434958,56.18,53.85,43.25,38.75,8.333333333333334,1,1,0,0,7,10,3,1,321,956382.5,490703.63,306176.84,0,1964.3597 -5586,6872,12377,12378,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.5149593,8.3996325,6.0650554,3,5,130.06754,-9,-9,-9,2019,9,0,45,0,1,0,0,15.773267,15.773267,0,0,0,0,0,0,0,0,5.226449,6.4794703,48.52,42.22,48.77,60.16,6.666666666666667,1,1,0,0,0,7,5,1,999.5,574950.5,421332.34,353998.5,0,3478.4082 -5586,6872,12378,12377,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.0901995,8.0843515,0,3,-5,43.786488,0,3,1,2019,8,0,37,37,1,0,0,9.9648046,9.9648046,0,0,0,0,0,0,0,0,1.3257591,0,48.77,60.16,48.52,42.22,8.333333333333334,1,1,0,0,8,7,5,1,999.5,574950.5,421332.34,353998.5,0,3478.4082 -5587,6873,12379,12380,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,5.1794834,5.1142235,0,8,1,44.314125,0,-9,-9,2019,11,0,40,40,1,0,0,.47492132,.47492132,0,0,0,0,2,0,0,0,0,0,54.2,57.49,57.07,52.23,1.666666666666667,1,1,0,0,10,5,3,1,1281,47911.961,24127.047,0,0,1347.5372 -5587,6873,12380,12379,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.0332165,7.9721088,0,27,-1,-70.390396,-9,-9,-9,2019,8,0,41,0,1,0,0,12.207767,12.207767,0,0,0,0,0,0,0,0,0,0,57.07,52.23,54.2,57.49,8.333333333333334,1,1,0,0,10,5,3,1,1281,47911.961,24127.047,0,0,1347.5372 -5588,6874,12381,-9,12384,12382,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.45813,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 -5588,6874,12382,12384,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,0,0,0,16,-2,0,0,3,-9,2019,5,1,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,66.47,33.06,10,2,3,0,0,8,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 -5588,6874,12383,-9,12384,12382,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.09,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 -5588,6874,12384,12382,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,17,2,0,0,3,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.47,33.06,62.39,56.71,10,2,3,0,1,0,5,2,1,1649,-75278.055,0,65345.48,46583.891,606.146 -5589,6875,12385,12386,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.0910983,7.0637512,0,35,-3,-3.8410361,0,3,3,2019,14,2,25,35,1,2,0,4.53719,4.53719,0,0,0,0,0,0,0,0,0,0,50.03,52.62,58.58,22.16,8.333333333333334,1,1,0,0,9,2,2,1,363.5,155263.28,166182.34,0,0,408.68427 -5589,6875,12386,12385,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,5.3365679,5.4771519,4.4305296,35,3,-45.250774,0,2,2,2019,9,0,50,60,1,0,0,.44853193,.44853193,0,0,0,0,0,0,0,0,4.4442506,4.3750334,58.58,22.16,50.03,52.62,5,1,1,0,0,9,2,2,1,363.5,155263.28,166182.34,0,0,408.68427 -5590,6876,12387,12388,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,7,2,-75.02993,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.773068,0,60.44,36.05,45.9,38.86,10,1,1,0,0,0,13,2,1,528,188645.5,145053.88,163671.66,0,2422.6631 -5590,6876,12388,12387,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.2953072,7.3047981,7,-2,-10.63218,0,3,3,2019,14,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.4848475,7.2882104,45.9,38.86,60.44,36.05,8.333333333333334,1,1,0,0,0,13,2,1,528,188645.5,145053.88,163671.66,0,2422.6631 -5591,6877,12389,12390,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.1249366,7.1347179,29,5,40.782539,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8661551,7.5284252,58.47,50.22,57.06,57.76,10,1,1,0,0,11,9,3,1,1242.5,765637.69,138292.75,268507.16,0,3241.1094 -5591,6877,12390,12389,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,6.7836866,6.8568935,0,29,-5,60.550522,0,2,3,2019,7,0,10,10,1,0,0,15.516955,15.516955,0,0,0,0,0,1,1,0,3.7368512,0,57.06,57.76,58.47,50.22,10,1,1,0,0,12,9,3,1,1242.5,765637.69,138292.75,268507.16,0,3241.1094 -5592,6878,12391,12393,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.6064348,8.9170284,5.2640142,4,0,50.93314,0,-9,-9,2019,6,0,36,41,1,0,0,16.434597,16.434597,0,0,0,0,0,1,1,0,6.3268976,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,11,12,5,1,1513,292931.75,281797.56,165643.67,0,6900.2368 -5592,6878,12392,-9,12391,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1027.1537,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,1513,292931.75,281797.56,165643.67,0,6900.2368 -5592,6878,12393,12391,-9,-9,1,1,47,0,1,0,2,2,-9,0,5,9.4994745,9.4901524,0,4,0,-55.521156,0,-9,-9,2019,8,0,49,40,1,0,0,39.859383,39.859383,0,0,0,0,0,1,1,0,6.6611872,0,62.39,56.71,57.16,56.15,10,1,1,0,0,2,12,5,1,1513,292931.75,281797.56,165643.67,0,6900.2368 -5593,6879,12394,12396,-9,-9,1,0,34,0,2,0,3,3,-9,0,5,7.7261753,7.7574992,0,3,-2,-87.521515,0,-9,-9,2019,9,1,38,34,1,1,0,7.7154498,7.7154498,0,0,0,0,0,1,1,0,0,0,49.76,56.93,54.1,59.11,10,4,2,0,0,11,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 -5593,6879,12395,-9,12394,12396,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1010.9604,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 -5593,6879,12396,12394,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.0973797,8.0009108,0,3,2,27.023277,0,-9,-9,2019,9,1,38,39,1,1,0,11.554147,11.554147,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.76,56.93,10,1,1,0,0,11,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 -5593,6879,12397,-9,12394,12396,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7654,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,1,888.5,194295.28,36485.637,272167.78,151491.59,2514.0981 -5594,6880,12398,12399,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.2095032,6.1259933,8,3,-22.936291,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0001416,6.3968906,59.29,46.97,54.1,59.11,8.333333333333334,1,1,0,0,2,9,4,1,219.5,2108359,1112586.3,650705.56,0,3651.5955 -5594,6880,12399,12398,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,8.7036676,8.8108654,8,-3,-78.775955,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.0817509,8.3306179,54.1,59.11,59.29,46.97,8.333333333333334,1,1,0,0,7,9,4,1,219.5,2108359,1112586.3,650705.56,0,3651.5955 -5595,6881,12400,12402,-9,-9,1,1,26,0,1,0,2,2,-9,0,3,8.5151825,8.4731827,0,5,-1,-68.188347,0,-9,-9,2019,7,0,65,50,1,0,0,7.2545495,7.2545495,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,741,-187639.73,-50187.609,94358.867,84723.219,2381.9929 -5595,6881,12401,-9,12402,12400,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.3042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,741,-187639.73,-50187.609,94358.867,84723.219,2381.9929 -5595,6881,12402,12400,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,6.9543619,7.1332016,0,5,1,-5.3382974,0,3,2,2019,5,0,25,23,1,0,0,7.5828595,7.5828595,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,9,2,4,1,741,-187639.73,-50187.609,94358.867,84723.219,2381.9929 -5596,6882,12403,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.8397019,4.4657135,0,0,-995.13165,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.2390661,3.9343526,40.03,33.54,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1392,28733.18,0,0,0,764.3963 -5597,6883,12404,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9642744,6.6877604,0,0,-961.78705,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2139397,6.7992082,56.35,43.13,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1479,152422.7,91899.438,0,0,1709.9138 -5598,6884,12405,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.5972471,9.0321198,0,0,0,-867.38043,0,2,1,2019,12,0,48,48,1,0,0,18.200972,18.200972,0,0,0,0,0,0,0,0,0,0,48.29,49.79,-9,-9,6.666666666666667,1,1,0,1,11,8,5,1,395,237900.09,101028.89,0,0,1784.4338 -5599,6885,12406,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,7.8625236,8.0433474,0,0,0,-1028.6437,0,3,2,2019,12,0,70,60,1,0,0,3.4213686,3.4213686,0,0,0,0,0,1,1,0,0,0,44.74,48.37,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,43,53708.773,6414.4224,258776.53,0,3684.7341 -5599,6886,12407,-9,12406,-9,1,0,24,0,0,0,2,2,-9,0,3,8.0005655,7.7535429,0,0,0,-991.17499,0,1,2,2019,14,3,49,60,1,3,1,5.0727744,5.0727744,0,0,0,0,0,1,1,0,0,0,27.28,59.54,-9,-9,3.333333333333333,1,1,0,0,9,9,3,1,144,215413.27,0,0,0,513.02435 -5599,6887,12408,-9,12406,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1107.6501,0,2,-9,2019,4,0,0,26,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,1012,123999.27,0,0,0,-531.82843 -5600,6888,12409,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0998468,7.9947095,0,0,0,-956.51129,0,2,2,2019,12,1,47,50,1,1,0,7.6716509,7.6716509,0,0,0,0,0,1,1,0,1.7813357,0,34.83,53.04,-9,-9,5,1,1,0,0,8,9,4,0,515,705886.19,353711.59,0,0,1157.9373 -5600,6889,12410,-9,12409,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3621426,8.2378912,0,0,0,-902.25427,0,2,-9,2019,10,0,38,40,1,1,1,12.811459,12.811459,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,9,4,0,967,317483.03,0,0,0,1827.0776 -5601,6890,12411,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7353659,8.7050238,0,0,0,-988.6441,-9,2,2,2019,11,0,36,0,1,0,0,19.285549,19.285549,0,0,0,0,0,0,0,0,2.4751723,0,54.74,57.22,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,654,35274.527,50697.949,0,0,1564.5354 -5602,6891,12412,12413,-9,-9,1,1,25,1,1,0,1,1,-9,0,1,7.5670991,7.621666,0,5,-2,5.5672541,0,-9,-9,2019,22,8,28,28,1,8,0,6.6304898,6.6304898,0,0,0,0,2,1,1,0,0,0,46.3,26.35,27.21,56.51,3.333333333333333,2,3,0,1,7,2,2,0,516.33331,-38472.246,-402.68521,0,0,1040.0677 -5602,6891,12413,12412,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,0,0,0,5,2,-182.59282,0,2,-9,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,1.2524337,0,27.21,56.51,46.3,26.35,4,2,3,0,0,1,2,2,0,516.33331,-38472.246,-402.68521,0,0,1040.0677 -5602,6891,12414,-9,12413,12412,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1119.2551,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,2,2,0,516.33331,-38472.246,-402.68521,0,0,1040.0677 -5603,6892,12415,12419,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.1786051,8.0252552,0,7,-2,-30.01309,0,2,3,2019,12,0,48,43,1,0,0,10.041675,10.041675,0,0,0,0,0,1,1,0,0,0,62.72,37.28,44.17,26.06,5,1,1,0,0,11,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 -5603,6892,12416,-9,12419,-9,1,1,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1044.9005,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 -5603,6892,12417,-9,12419,12415,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.01019,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 -5603,6892,12418,-9,12419,12415,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-790.58929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 -5603,6892,12419,12415,-9,-9,1,0,37,0,3,0,2,2,-9,0,1,0,0,0,7,2,-40.902523,0,-9,-9,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,44.17,26.06,62.72,37.28,5,1,1,0,1,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 -5603,6892,12420,-9,12419,-9,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-1030.9773,-9,2,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.11,58.6,-9,-9,3.333333333333333,1,1,1,0,0,4,3,0,574.83331,83517.719,-17738.883,0,0,2525.5186 -5604,6893,12421,12422,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,5.38276,5.2765088,6,6,-51.584049,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5262742,5.2076321,64.78,32.7,42.16,57.48,8.333333333333334,1,1,0,0,5,11,2,1,299.5,350466.94,35293.746,127513.45,0,1925.3486 -5604,6893,12422,12421,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.0376415,5.2909412,6,-6,-170.31799,0,3,3,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,5.9513464,5.1453676,42.16,57.48,64.78,32.7,10,1,1,0,0,5,11,2,1,299.5,350466.94,35293.746,127513.45,0,1925.3486 -5605,6894,12423,-9,12424,12425,1,0,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1026.3171,-9,2,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.9,49.58,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 -5605,6894,12424,12425,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.0453892,7.7698126,0,8,0,-27.974972,0,3,2,2019,11,0,23,23,1,0,0,14.52132,14.52132,0,0,0,0,0,1,1,0,0,0,58.72,51.29,52,54.51,8.333333333333334,1,1,0,0,10,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 -5605,6894,12425,12424,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.7574425,8.8867073,0,8,0,-92.36879,0,2,2,2019,9,0,48,48,1,0,0,19.746677,19.746677,0,0,0,0,0,1,1,0,1.1963223,0,52,54.51,58.72,51.29,8.333333333333334,1,1,0,0,9,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 -5605,6894,12426,-9,12424,12425,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.42096,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,568.5,241300.48,143514.86,413701.72,277212.56,3714.2002 -5606,6895,12427,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.1444054,7.1061668,0,0,0,-1051.0085,0,2,2,2019,8,0,30,30,1,0,0,4.1492848,4.1492848,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,570,-22573.781,0,0,0,3140.0823 -5606,6895,12428,-9,12427,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-849.35162,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,570,-22573.781,0,0,0,3140.0823 -5606,6895,12429,-9,12427,-9,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1019.3292,-9,2,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,570,-22573.781,0,0,0,3140.0823 -5606,6895,12430,-9,12427,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.98468,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,570,-22573.781,0,0,0,3140.0823 -5607,6896,12431,-9,12433,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.5792,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,740.33331,182849.97,102813.12,73804.672,35956.766,2206.5344 -5607,6896,12432,-9,12433,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.05872,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,740.33331,182849.97,102813.12,73804.672,35956.766,2206.5344 -5607,6896,12433,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,2,8.1939859,8.379426,6.4042115,0,0,-1034.3038,0,-9,-9,2019,11,3,28,40,1,3,0,11.455538,11.455538,0,0,0,0,0,1,1,0,6.9232249,0,41.84,49.92,-9,-9,6.666666666666667,1,1,0,0,6,5,3,1,740.33331,182849.97,102813.12,73804.672,35956.766,2206.5344 -5608,6897,12434,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.4694839,5.699038,0,0,-1096.2898,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.823401,58.1,49.42,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,332,-20726.25,7740.4497,0,0,1121.4039 -5609,6898,12435,-9,-9,-9,1,0,21,0,0,0,1,1,-9,0,4,0,0,0,0,0,-952.54065,-9,2,1,2019,18,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,31.06,65.34,-9,-9,3.333333333333333,3,4,1,1,4,6,1,1,696,-14512.854,0,0,0,524.40314 -5610,6899,12436,12437,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,10,6,-11.671235,0,3,3,2019,21,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,45,37,60.53,48.35,6.666666666666667,1,1,0,1,0,13,3,1,561.5,425203.81,111165.63,140677.28,0,2021.4128 -5610,6899,12437,12436,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.0655489,8.1374693,0,10,-6,28.228067,0,3,2,2019,6,0,40,50,1,0,0,10.799995,10.799995,0,0,0,0,0,1,1,0,0,0,60.53,48.35,45,37,10,1,1,0,0,10,13,3,1,561.5,425203.81,111165.63,140677.28,0,2021.4128 -5611,6900,12438,-9,-9,-9,1,0,50,0,2,0,2,2,-9,1,2,7.0952077,6.9065962,0,0,0,-1054.5731,0,-9,-9,2019,23,7,20,20,1,7,0,5.702662,5.702662,0,0,0,0,0,1,1,0,0,0,55.76,26,-9,-9,3.333333333333333,1,1,0,0,7,6,2,0,747.66669,-14909.195,0,0,0,1769.52 -5611,6900,12439,-9,12438,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.95166,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,2,0,747.66669,-14909.195,0,0,0,1769.52 -5611,6900,12440,-9,12438,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.366,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,747.66669,-14909.195,0,0,0,1769.52 -5612,6901,12441,-9,12443,12445,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-916.42792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,837.40002,133586.11,0,0,0,2148.3423 -5612,6901,12442,-9,12443,12445,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.043,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,837.40002,133586.11,0,0,0,2148.3423 -5612,6901,12443,12445,-9,-9,1,0,30,1,4,0,2,2,-9,0,3,0,0,0,5,0,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,36.28,39.51,44.18,5,1,1,1,0,1,1,2,0,837.40002,133586.11,0,0,0,2148.3423 -5612,6901,12444,-9,12443,12445,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-920.68463,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,2,0,837.40002,133586.11,0,0,0,2148.3423 -5612,6901,12445,12443,-9,-9,1,1,30,1,4,0,2,2,-9,0,4,0,0,0,5,0,0,0,2,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,39.51,44.18,38.34,36.28,6.666666666666667,1,1,1,0,1,1,2,0,837.40002,133586.11,0,0,0,2148.3423 -5613,6902,12446,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3761377,8.9002008,7.6574926,0,0,-1028.2479,0,2,1,2019,11,0,30,0,1,0,0,18.587963,18.587963,0,0,0,0,0,0,0,0,0,8.0467491,54.3,41.09,-9,-9,10,1,1,0,0,9,13,5,1,382,-231760.69,-31525.432,0,0,2184.7883 -5614,6903,12447,12448,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.5692892,7.3537035,10,8,-136.30453,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.0612113,7.6876216,52.99,51.28,46.31,51.53,8.333333333333334,1,1,0,0,11,1,4,1,668.5,173512.2,41236.492,124600.74,0,3534.1782 -5614,6903,12448,12447,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9333086,8.3769264,7.7138453,10,-8,58.625305,0,3,3,2019,15,5,30,30,1,5,0,9.8505316,9.8505316,0,0,0,0,7,0,0,0,8.0672903,7.8005948,46.31,51.53,52.99,51.28,8.333333333333334,1,1,0,0,11,1,4,1,668.5,173512.2,41236.492,124600.74,0,3534.1782 -5615,6904,12449,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.1775284,8.132781,0,0,0,-899.72302,-9,2,2,2019,6,2,37,0,1,2,0,10.925306,10.925306,0,0,0,0,0,0,0,0,0,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,194,15760.555,-3219.4146,0,0,1714.9651 -5616,6905,12450,12452,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.395649,8.6924868,0,24,-3,-5.85604,0,2,3,2019,7,0,35,34,1,0,0,16.131357,16.131357,0,0,0,0,0,1,1,0,6.9196334,0,58.15,52.91,29.08,58.05,10,1,1,0,0,12,7,5,1,590,244418.94,108359.96,0,0,4232.4814 -5616,6905,12451,-9,12450,12452,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-936.08032,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,5,1,590,244418.94,108359.96,0,0,4232.4814 -5616,6905,12452,12450,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9771137,9.5672646,0,24,3,-18.926136,0,2,3,2019,18,6,40,41,1,6,0,24.712614,24.712614,0,0,0,0,0,1,1,0,0,0,29.08,58.05,58.15,52.91,5,1,1,0,0,12,7,5,1,590,244418.94,108359.96,0,0,4232.4814 -5617,6906,12453,-9,12454,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.1552,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,503,117041.64,0,0,0,977.1145 -5617,6906,12454,-9,-9,-9,1,0,40,0,1,0,1,1,-9,1,4,6.6768746,6.8836908,0,0,0,-933.34583,0,2,2,2019,7,0,17,20,1,0,0,6.4066796,6.4066796,0,0,0,0,27,1,1,0,0,0,50.55,49.51,-9,-9,6.666666666666667,1,1,0,0,5,12,2,0,503,117041.64,0,0,0,977.1145 -5618,6907,12455,-9,-9,12456,1,0,32,0,0,0,2,2,-9,0,4,7.1342249,6.9227734,0,0,0,-1115.2155,0,1,1,2019,10,0,15,15,1,0,1,8.4474001,8.4474001,0,0,0,0,7,1,1,0,1.5689858,0,57.16,56.15,-9,-9,10,1,1,0,0,7,13,2,1,335,-316033.78,-10570.775,0,0,298.49323 -5618,6908,12456,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.2098188,8.3590345,4.6031108,0,0,-1144.4364,0,2,2,2019,9,0,20,16,1,0,0,22.698519,22.698519,0,0,0,0,2,1,1,0,2.7033672,4.9615731,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,642,959112.31,740872.75,361646.69,0,2511.2295 -5619,6909,12457,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1023.8177,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.78,48.45,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,1167,35418.227,0,0,0,1262.4407 -5620,6910,12458,12459,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9176064,8.0473289,0,33,-3,48.137405,0,3,3,2019,12,0,20,28,1,0,0,18.485809,18.485809,0,0,0,0,0,0,0,0,0,0,42.46,41.62,39.14,38.93,6.666666666666667,1,1,0,0,9,2,5,1,1206,1311696.8,1361447.5,0,0,3274.7729 -5620,6910,12459,12458,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6845512,8.5517454,0,2,3,44.246464,-9,-9,-9,2019,13,1,42,0,1,1,0,18.932983,18.932983,0,0,0,0,0,0,0,0,2.4998505,0,39.14,38.93,42.46,41.62,3.333333333333333,1,1,0,0,9,2,5,1,1206,1311696.8,1361447.5,0,0,3274.7729 -5621,6911,12460,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-897.13708,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,21.5,54.86,-9,-9,5,1,1,1,0,0,6,1,0,164,-84563.219,0,0,0,809.99841 -5622,6912,12461,12463,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.0374031,8.1325369,0,9,-1,17.378061,0,2,2,2019,6,0,28,28,1,0,0,10.634511,10.634511,0,0,0,0,2,1,1,0,0,0,58.15,52.91,37.91,48.63,8.333333333333334,1,1,0,0,10,12,5,1,416,74573.008,135640.41,159623.2,64344.129,3404.7922 -5622,6912,12462,-9,12461,12463,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-946.83759,-9,1,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,416,74573.008,135640.41,159623.2,64344.129,3404.7922 -5622,6912,12463,12461,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.8041706,8.9996214,0,9,1,125.11688,0,2,3,2019,22,10,40,44,1,10,0,17.952997,17.952997,0,0,0,0,0,1,1,0,4.8481307,0,37.91,48.63,58.15,52.91,5,1,1,0,0,10,12,5,1,416,74573.008,135640.41,159623.2,64344.129,3404.7922 -5623,6913,12464,12466,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,6.1133528,6.2191186,0,17,5,46.152103,0,-9,-9,2019,6,0,25,24,1,0,0,2.1071568,2.1071568,0,0,0,0,0,1,0,1,0,0,63.48,51.85,66.44,47.81,8.333333333333334,1,1,0,0,7,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 -5623,6913,12465,-9,12466,12464,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.74139,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 -5623,6913,12466,12464,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,0,0,0,17,-5,-67.268997,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,1.4155457,0,66.44,47.81,63.48,51.85,8.333333333333334,1,1,0,0,0,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 -5623,6913,12467,-9,12466,12464,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.3435,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,331.5,326126.06,42632.605,143619.55,19660.215,1388.7701 -5624,6914,12468,12469,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.7501459,8.7602453,0,19,-1,36.815189,0,2,2,2019,11,0,38,38,1,0,0,18.90029,18.90029,0,0,0,0,0,1,1,0,4.3454294,0,54.2,57.49,34.04,54.63,8.333333333333334,1,1,0,0,11,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 -5624,6914,12469,12468,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,8.9411297,8.9961481,0,19,1,167.55299,0,2,2,2019,15,3,37,37,1,3,0,18.691633,18.691633,0,0,0,0,0,1,1,0,3.975527,0,34.04,54.63,54.2,57.49,3.333333333333333,1,1,0,0,12,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 -5624,6914,12470,-9,12469,12468,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.3992,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 -5624,6914,12471,-9,12469,12468,1,1,12,1,2,1,3,0,-9,0,5,0,0,0,0,0,-958.31165,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,5,1,735,523330.34,439903.53,313241.28,260184.2,4885.4434 -5625,6915,12472,12473,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.1553926,7.8863683,0,14,0,-.98412997,0,3,3,2019,6,0,49,49,1,0,0,8.3928776,8.3928776,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,9,9,5,1,1998,1512232.9,1099451.3,324428.78,0,3480.3872 -5625,6915,12473,12472,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7653866,8.8124218,0,14,0,101.80825,0,3,2,2019,14,2,40,50,1,2,0,16.353815,16.353815,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,3.333333333333333,1,1,0,0,7,9,5,1,1998,1512232.9,1099451.3,324428.78,0,3480.3872 -5625,6916,12474,-9,12472,12473,1,0,19,0,0,0,2,2,-9,0,4,6.801239,6.7190957,0,0,0,-982.1076,0,1,1,2019,7,0,8,8,1,0,1,15.112281,15.112281,0,0,0,0,0,0,0,0,0,0,41.24,62.14,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,536,-217533.2,0,0,0,1114.7993 -5626,6917,12475,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,7.2989373,7.8130465,0,0,0,-978.64691,0,2,-9,2019,11,0,39,36,1,0,0,4.6990952,4.6990952,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,4,2,3,0,1303.5,228847.28,72474.109,0,0,1005.6992 -5626,6917,12476,-9,-9,12475,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1017.1514,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,3,0,1303.5,228847.28,72474.109,0,0,1005.6992 -5627,6918,12477,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,7.8748212,8.1429968,5.8856664,0,0,-1055.267,-9,3,-9,2019,12,1,37,0,1,1,0,11.507318,11.507318,0,0,0,0,0,0,0,0,5.69807,0,55.79,52.62,-9,-9,8.333333333333334,3,4,0,0,6,11,4,0,644,-532879.38,-73541.5,0,0,1612.1584 -5628,6919,12478,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,9.2860289,9.5967417,0,0,0,-1024.2992,0,2,2,2019,5,0,9,12,1,0,0,154.24963,154.24963,0,0,0,0,2,0,0,0,0,0,41.07,60.93,-9,-9,10,4,2,0,0,3,7,5,0,1980,814668.13,99240.031,403502.72,0,3363.2156 -5628,6920,12479,-9,12478,-9,1,0,37,0,0,0,1,1,-9,0,4,7.2417216,7.2361875,0,0,0,-1014.9546,0,2,-9,2019,7,0,24,24,1,0,1,7.0131888,7.0131888,0,0,0,0,2,0,0,0,.48868141,0,60.12,54.8,-9,-9,10,3,4,0,0,3,7,3,0,209,-31164.166,12081.234,0,0,369.51028 -5629,6921,12480,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.295517,8.4119205,0,0,0,-1097.0704,0,2,2,2019,12,0,45,60,1,0,0,10.332286,10.332286,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,168,148509.17,0,0,0,1344.1541 -5630,6922,12481,12482,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.0705628,7.1555243,0,6,3,-16.56341,0,2,2,2019,22,9,20,0,1,9,0,7.2011409,7.2011409,0,0,0,0,0,0,0,0,0,0,40.19,29.13,57.16,56.15,3.333333333333333,1,1,0,0,5,9,5,1,797,1478058.6,1002447.3,493033.88,130620.25,9511.7393 -5630,6922,12482,12481,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.8725643,9.795145,6.4021463,6,-3,-46.991432,0,2,2,2019,7,0,37,37,1,0,0,87.636696,87.636696,0,0,0,0,2,0,0,0,8.2258797,0,57.16,56.15,40.19,29.13,8.333333333333334,1,1,0,0,7,9,5,1,797,1478058.6,1002447.3,493033.88,130620.25,9511.7393 -5630,6923,12483,-9,12481,12482,1,1,33,0,0,0,2,2,-9,0,2,7.8050504,7.9729562,0,0,0,-1172.934,0,2,2,2019,14,2,36,20,1,2,1,9.0518665,9.0518665,0,0,0,0,0,0,0,0,3.4691269,0,41.62,42.02,-9,-9,3.333333333333333,1,1,0,0,7,9,4,1,85,-92667.555,154148.97,0,0,1102.9281 -5631,6924,12484,12485,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,2,-5,17.680958,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,46,65.95,37.11,8,1,1,0,0,0,10,2,1,1135.5,352206.53,92671.594,241907.95,0,1087.373 -5631,6924,12485,12484,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.8909369,5.9769454,53,5,96.581497,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.249146,5.8607211,65.95,37.11,52,46,10,1,1,0,0,0,10,2,1,1135.5,352206.53,92671.594,241907.95,0,1087.373 -5632,6925,12486,12489,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.7762547,8.6757946,0,6,5,-103.67673,0,1,2,2019,12,0,47,48,1,0,0,15.035078,15.035078,0,0,0,0,0,1,1,0,4.0181136,0,47.55,44.33,45.81,61.51,8.333333333333334,1,1,0,0,6,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 -5632,6925,12487,-9,12489,12486,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.31525,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 -5632,6925,12488,-9,12489,12486,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.4458,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 -5632,6925,12489,12486,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,6.5314488,6.7919145,0,13,-5,46.39642,0,1,1,2019,10,0,17,20,1,0,0,7.7435093,7.7435093,0,0,0,0,0,1,1,0,0,0,45.81,61.51,47.55,44.33,8.333333333333334,1,1,0,0,5,4,4,1,601.5,451858.5,46084.234,252747.34,157975.14,3286.772 -5633,6926,12490,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8946037,7.7161384,0,0,0,-996.05566,0,-9,-9,2019,21,9,50,0,1,9,0,6.0566235,6.0566235,0,0,0,0,0,0,0,0,0,0,43.32,40.79,-9,-9,5,1,1,0,0,5,4,3,0,197,-206522.47,0,0,0,1188.0942 -5634,6927,12491,-9,12493,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1143.1927,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,1,0,546,220511.16,0,0,0,1586.546 -5634,6927,12492,-9,12493,-9,1,0,16,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2682,-9,3,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,6,1,0,546,220511.16,0,0,0,1586.546 -5634,6927,12493,-9,-9,-9,1,0,36,1,2,0,3,3,-9,0,1,0,0,0,0,0,-836.49908,0,3,3,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.59,36.31,-9,-9,5,2,3,1,0,0,6,1,0,546,220511.16,0,0,0,1586.546 -5635,6928,12494,12495,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,47,0,-90.742821,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,122.16111,0,0,1,1,0,2.8688428,0,41.92,12.44,46.98,59.35,5,1,1,0,0,0,2,2,0,619.5,445223.19,362267.97,58740.734,0,1922.4159 -5635,6928,12495,12494,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.6681719,6.6328316,47,0,-88.424583,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.6041558,6.3499336,46.98,59.35,41.92,12.44,8.333333333333334,1,1,0,0,6,2,2,0,619.5,445223.19,362267.97,58740.734,0,1922.4159 -5636,6929,12496,12497,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.6292667,7.7650542,36,0,34.895336,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.5754318,7.7376308,52.3,57.2,54.53,26.45,8.333333333333334,1,1,0,0,0,7,3,1,259,1518345,1007540.1,444267.34,0,3957.8103 -5636,6929,12497,12496,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,6.7989211,7.0917144,6,0,5.3917179,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,7.2066669,0,0,1,1,0,6.0753498,6.9730573,54.53,26.45,52.3,57.2,6.666666666666667,1,1,0,0,0,7,3,1,259,1518345,1007540.1,444267.34,0,3957.8103 -5637,6930,12498,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.8158898,7.0411162,0,0,-1083.1156,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4986234,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,461,445060.75,-70192.742,432441.31,0,1401.6458 -5638,6931,12499,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.9816875,7.7686663,0,0,0,-1119.3082,-9,-9,-9,2019,15,4,48,0,1,4,0,6.3429337,6.3429337,0,0,0,0,7,0,0,0,0,0,23.87,57.98,-9,-9,1.666666666666667,1,1,0,0,9,13,4,1,136,241876.73,74116.406,0,0,1129.2344 -5639,6932,12500,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.0317736,9.1088572,0,0,0,-1033.4084,0,2,2,2019,8,0,37,75,1,0,0,32.940811,32.940811,0,0,0,0,0,1,1,0,4.8549342,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,2349,1980667.8,1559156.3,221011.48,95843.609,2726.4363 -5640,6933,12501,12502,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,40,-4,-34.541111,0,3,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.83,48.42,58.15,52.91,6.666666666666667,2,3,0,0,0,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 -5640,6933,12502,12501,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3788137,8.0622158,0,5,4,-90.122093,0,-9,-9,2019,9,0,39,39,1,0,0,13.409709,13.409709,0,0,0,0,0,1,1,0,0,0,58.15,52.91,32.83,48.42,8.333333333333334,2,3,0,0,9,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 -5640,6933,12503,-9,12501,12502,1,1,17,0,0,1,3,0,0,0,4,0,4.4783764,4.3268003,0,0,-1001.6385,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.0374937,0,42.17,56.08,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 -5640,6933,12504,-9,12501,12502,1,1,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1003.6828,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,580,1154487.5,59447.543,406068.44,0,2176.6775 -5640,6934,12505,-9,12501,12502,1,1,34,0,0,0,2,2,-9,0,4,8.3250942,8.5745382,0,0,0,-1063.931,-9,2,2,2019,10,0,40,0,1,1,1,16.648275,16.648275,0,0,0,0,0,1,1,0,2.4718077,0,50,57,-9,-9,7,2,3,0,0,1,8,5,1,214,53171.117,2488.6008,0,0,1892.6238 -5641,6935,12506,-9,-9,12507,1,0,21,0,0,0,2,2,-9,0,3,7.9440494,7.6172047,0,0,0,-994.41077,0,-9,1,2019,18,6,35,35,1,6,1,7.0393472,7.0393472,0,0,0,0,0,1,1,0,.23981796,0,34.74,43.44,-9,-9,3.333333333333333,4,2,0,0,4,9,3,1,152,-113595.16,0,0,0,1076.4869 -5641,6936,12507,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.1748133,8.1246548,5.4043074,0,0,-1026.3507,0,-9,-9,2019,11,0,50,50,1,0,0,7.9781203,7.9781203,0,0,0,0,0,1,1,0,0,5.7765212,41.38,45.79,-9,-9,3.333333333333333,1,1,0,0,5,9,4,1,155,1779181,854289.31,446075.56,0,2294.8801 -5642,6937,12508,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.8609753,5.6294003,0,0,-1013.1874,0,2,1,2019,15,4,0,0,4,4,0,0,0,1,32.434395,0,296.5506,0,1,1,0,5.4292479,5.8990622,44.65,26.79,-9,-9,3.333333333333333,1,1,0,0,4,1,2,0,227,145581.59,200898.89,262471.13,0,1967.6725 -5643,6938,12509,12510,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.0107307,6.324193,10,-3,.84665251,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.50760758,6.2316389,58.07,46.29,51.38,44.05,6.666666666666667,1,1,0,0,0,7,4,1,355.5,1275743.1,866909.88,271202.5,0,3400.0093 -5643,6938,12510,12509,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,8.2698278,7.929038,10,3,-54.575623,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.1376176,8.1861601,51.38,44.05,58.07,46.29,8.333333333333334,1,1,0,0,0,7,4,1,355.5,1275743.1,866909.88,271202.5,0,3400.0093 -5644,6939,12511,12512,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4301205,8.8271942,0,8,0,-55.930283,0,2,2,2019,6,0,40,40,1,0,0,14.028441,14.028441,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.63,58.83,1.666666666666667,1,1,0,0,9,10,5,1,884.5,2285972.3,1218553,466331.47,63959.379,3355.1543 -5644,6939,12512,12511,-9,-9,1,0,49,0,0,0,3,3,-9,0,5,8.2951288,8.3359699,0,8,0,79.33638,0,3,3,2019,11,0,30,30,1,0,0,16.922878,16.922878,0,0,0,0,0,1,1,0,0,0,54.63,58.83,58.15,52.91,8.333333333333334,1,1,0,0,9,10,5,1,884.5,2285972.3,1218553,466331.47,63959.379,3355.1543 -5644,6940,12513,-9,12512,12511,1,0,20,0,0,0,2,2,-9,0,5,7.8610611,7.8976746,0,0,0,-961.66626,0,3,2,2019,10,1,35,38,1,1,1,7.4842472,7.4842472,0,0,0,0,0,1,1,0,0,0,43.57,62.68,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,731,-245323.5,0,0,0,642.57227 -5644,6941,12514,-9,12512,12511,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-919.4458,-9,3,2,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,31.18,55.62,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,621,0,0,0,0,0 -5645,6942,12515,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-866.50525,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,3.4762776,0,30.963003,0,1,1,0,0,0,60.63,38.2,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,473,-206153.8,0,0,0,-269.12363 -5646,6943,12516,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.9357,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,2,13,2,1,967,287927.41,0,176484.59,0,448.78363 -5647,6944,12517,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.509778,7.6982956,0,0,-967.60284,0,3,3,2019,25,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,5.5950098,7.7837458,14.53,45.3,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1772,386802.56,181317.95,287814.97,0,2224.9854 -5648,6945,12518,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,6.0920644,5.9449234,0,0,-861.26685,0,3,2,2019,21,9,0,21,3,9,0,0,0,0,0,0,0,0,1,1,0,0,5.7852507,27.88,30.9,-9,-9,1.666666666666667,3,4,1,1,2,8,2,1,1152,-48220.156,-1940.188,0,0,770.91486 -5648,6946,12519,-9,12518,-9,1,0,19,0,0,0,2,2,-9,0,3,5.9781594,5.5201259,0,0,0,-1021.3328,-9,2,-9,2019,17,6,25,0,1,6,1,1.8231342,1.8231342,0,0,0,0,0,1,1,0,0,0,42.62,54.51,-9,-9,6.666666666666667,3,4,0,1,2,8,2,1,1540,-363940.81,0,0,0,84.814133 -5649,6947,12520,12521,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,0,0,0,6,-7,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.92,51.82,32.74,16.46,8.333333333333334,1,1,0,0,0,1,1,0,459.5,150308.28,-11490.827,0,0,1227.6499 -5649,6947,12521,12520,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,6,7,0,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,57.92,51.82,5,1,1,0,0,0,1,1,0,459.5,150308.28,-11490.827,0,0,1227.6499 -5649,6948,12522,-9,12520,-9,1,0,24,0,0,0,2,2,-9,0,3,6.9781303,7.111701,0,0,0,-1045.7942,0,2,-9,2019,11,0,16,20,1,0,1,7.4126563,7.4126563,0,0,0,0,0,1,1,0,0,0,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,3,1,2,0,332,194883.47,0,0,0,277.00833 -5649,6949,12523,-9,12520,-9,1,0,21,0,0,0,2,2,-9,0,4,7.4240565,7.6141667,0,0,0,-974.2511,0,2,-9,2019,5,1,40,45,1,1,1,5.1546736,5.1546736,0,0,0,0,27,1,1,0,0,0,50.17,46.95,-9,-9,5,1,1,0,0,3,1,3,0,110,62331.625,-59777.711,0,0,-39.563965 -5649,6950,12524,-9,12520,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-887.56726,-9,3,3,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.051483944,0,46.53,61.33,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,237,-87677.25,0,0,0,351.39691 -5650,6951,12525,-9,12527,12528,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.542,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 -5650,6951,12526,-9,12527,12528,1,1,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-986.1712,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,66.53,29.99,-9,-9,1.666666666666667,1,1,0,0,2,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 -5650,6951,12527,12528,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,6.0777311,6.3227787,0,6,8,47.780006,0,3,-9,2019,20,7,45,70,1,7,0,1.0356286,1.0356286,0,0,0,0,0,1,1,0,0,0,44.81,31.97,54.2,57.49,8.333333333333334,1,1,0,0,6,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 -5650,6951,12528,12527,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,9.2244081,9.4660387,0,6,-8,26.916945,0,3,2,2019,7,0,80,70,1,0,0,15.959212,15.959212,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.81,31.97,8.333333333333334,1,1,0,0,7,12,5,1,550.5,401789.41,190608.08,172998.06,60338.777,4163.9077 -5651,6952,12529,-9,12530,12531,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-917.69269,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 -5651,6952,12530,12531,-9,-9,1,0,33,1,3,0,2,2,-9,0,5,8.0461054,8.1364946,5.8793831,1,1,83.994774,-9,-9,-9,2019,7,0,25,0,1,0,0,15.087854,15.087854,0,0,0,0,0,1,1,0,5.8096733,0,59.43,58.05,57.06,57.76,10,1,1,0,0,6,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 -5651,6952,12531,12530,-9,-9,1,1,32,1,3,0,2,2,-9,0,5,8.6198044,8.3893614,0,1,-1,-30.413609,-9,-9,-9,2019,7,0,50,0,1,0,0,9.9911108,9.9911108,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.43,58.05,10,1,1,0,0,13,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 -5651,6952,12532,-9,12530,12531,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.4129,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,796.75,326052.06,43426.723,434571.25,236969.67,3309.7515 -5652,6953,12533,-9,12534,12535,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.8657,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,705.66669,1130567.3,938364.13,262068.47,119090.73,15734.966 -5652,6953,12534,12535,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.1128778,8.2566948,0,32,-1,81.603737,0,2,2,2019,10,1,5,0,1,1,0,70.43261,70.43261,0,0,0,0,71.5,1,1,0,2.2126496,0,61.89,37.67,56.35,51,8.333333333333334,1,1,0,0,9,9,5,1,705.66669,1130567.3,938364.13,262068.47,119090.73,15734.966 -5652,6953,12535,12534,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,0,9.2243757,9.5071325,32,1,-50.069866,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,10.120173,9.3109007,56.35,51,61.89,37.67,10,1,1,0,0,9,9,5,1,705.66669,1130567.3,938364.13,262068.47,119090.73,15734.966 -5652,6954,12536,-9,12534,12535,1,1,23,0,1,0,1,1,-9,0,5,0,6.0227628,6.3365984,0,0,-929.74615,1,2,1,2019,5,0,0,40,2,0,1,0,0,0,0,0,0,0,1,1,0,6.6605277,0,48.18,61.8,-9,-9,0,1,1,0,0,3,9,2,1,166,212870.27,0,0,0,-206.11143 -5652,6955,12537,-9,12534,12535,1,1,21,0,1,0,2,2,0,0,2,0,5.5278363,5.7030883,0,0,-879.94995,-9,1,1,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,5.6952095,0,45.4,34.5,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,186,327665.44,0,0,0,435.68173 -5652,6956,12538,-9,12534,12535,1,1,18,0,1,1,2,0,0,0,4,0,5.6774235,5.5995097,0,0,-927.90912,-9,2,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.8014979,0,61.52,36.53,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,1166,-509460.97,-112635.77,0,0,-107.88708 -5653,6957,12539,12540,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.1136088,6.4628038,45,0,12.242921,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6250305,6.3953671,55.27,39.27,56.29,52.37,10,1,1,0,0,6,4,5,1,464.5,1114653.3,776756.13,238378.22,0,6210.8936 -5653,6957,12540,12539,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.8271809,9.1501818,45,0,-87.291748,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.190227,8.6644773,56.29,52.37,55.27,39.27,8.333333333333334,1,1,0,0,5,4,5,1,464.5,1114653.3,776756.13,238378.22,0,6210.8936 -5654,6958,12541,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,8.4945049,7.931869,0,0,-940.17761,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5174646,8.4607344,42.62,53.1,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,701,1829030.4,370811.78,342291.31,0,3411.8799 -5655,6959,12542,12544,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.4201975,8.3972282,0,9,1,84.886208,0,1,1,2019,7,0,40,40,1,0,0,17.399824,17.399824,0,0,0,0,0,1,1,0,8.1230364,0,57.06,57.76,48.98,57.22,10,1,1,0,0,11,1,5,1,557,127410.34,70422.813,231091.92,204642.95,4202.6792 -5655,6959,12543,-9,12544,12542,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.4588,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,557,127410.34,70422.813,231091.92,204642.95,4202.6792 -5655,6959,12544,12542,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.3340006,8.4945707,0,9,-1,-138.23491,0,2,2,2019,9,0,38,25,1,0,0,12.804661,12.804661,0,0,0,0,0,1,1,0,0,0,48.98,57.22,57.06,57.76,6.666666666666667,1,1,0,0,10,1,5,1,557,127410.34,70422.813,231091.92,204642.95,4202.6792 -5656,6960,12545,12546,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,0,0,0,24,-7,-108.10808,0,-9,-9,2019,21,7,0,25,3,7,0,0,0,0,0,0,0,14.5,1,1,0,2.7590718,0,32.24,41.22,40.3,47.19,5,1,1,1,0,12,6,2,0,208.5,34577.676,0,0,0,253.24249 -5656,6960,12546,12545,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,.12100852,0,10,7,-151.63142,0,-9,-9,2019,12,0,45,50,1,0,0,.00017632969,.00017632969,0,0,0,0,0,1,1,0,0,0,40.3,47.19,32.24,41.22,6.666666666666667,1,1,0,0,6,6,2,0,208.5,34577.676,0,0,0,253.24249 -5657,6961,12547,12550,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.131918,8.538929,0,6,-1,55.086571,0,-9,-9,2019,14,3,38,38,1,3,0,16.065084,16.065084,0,0,0,0,0,1,1,0,0,0,48.75,61.27,46.08,57.2,8.333333333333334,1,1,0,0,7,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 -5657,6961,12548,-9,12547,12550,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.35577,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 -5657,6961,12549,-9,12547,12550,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-891.41815,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 -5657,6961,12550,12547,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,0,0,0,6,1,-94.823044,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,48.75,61.27,6.666666666666667,1,1,0,0,3,10,3,0,728,206847.2,92378.359,177706.55,106834.92,2412.0068 -5658,6962,12551,12552,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.2469049,7.8006544,6.8974342,8,7,48.973282,0,2,2,2019,8,0,8,10,1,0,0,16.983986,16.983986,0,0,0,0,0,1,1,0,7.4900923,7.2166109,56.5,48.33,48.28,60.18,8.333333333333334,1,1,0,1,9,10,3,1,1093.5,1853810.8,1266604.1,265496.06,0,2756.509 -5658,6962,12552,12551,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.1107917,6.9840536,0,8,-7,76.438095,0,3,3,2019,17,6,40,50,1,6,0,4.1792431,4.1792431,0,0,0,0,0,1,1,0,0,0,48.28,60.18,56.5,48.33,3.333333333333333,1,1,0,0,9,10,3,1,1093.5,1853810.8,1266604.1,265496.06,0,2756.509 -5658,6963,12553,-9,12551,12552,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-958.12311,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.18173909,0,41.53,56.72,-9,-9,6.666666666666667,1,1,0,0,3,10,1,1,1070,0,0,0,0,168.87573 -5658,6964,12554,-9,12551,12552,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1070.3973,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.16332041,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,754,0,0,0,0,-319.79849 -5659,6965,12555,-9,-9,-9,1,0,56,0,0,0,2,2,0,0,4,0,0,0,0,0,-1070.567,-9,2,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,4.289115,0,52.37,51.4,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,340,74589.898,78623.563,219691.02,0,639.18616 -5660,6966,12556,12558,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4117994,8.9394026,0,23,-3,125.64529,0,3,3,2019,9,0,40,55,1,1,0,14.612668,14.612668,0,0,0,0,0,1,1,0,0,0,53,54,60.02,56.42,8,1,1,0,0,1,2,3,1,629,106495.63,108922.25,130799.64,12601.25,2590.158 -5660,6966,12557,-9,12558,12556,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1032.6807,-9,3,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.72,50.47,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,629,106495.63,108922.25,130799.64,12601.25,2590.158 -5660,6966,12558,12556,-9,-9,1,0,53,0,1,0,3,3,-9,0,5,0,0,0,23,3,110.00021,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.7980843,0,60.02,56.42,53,54,8.333333333333334,1,1,0,0,0,2,3,1,629,106495.63,108922.25,130799.64,12601.25,2590.158 -5661,6967,12559,12560,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2067409,7.2074337,9,1,37.977283,0,3,2,2019,13,4,0,30,4,4,0,0,0,0,0,0,0,0,1,1,0,4.6788282,7.5482359,46.39,52.95,57.33,42.93,8.333333333333334,1,1,0,0,10,10,3,1,695,1321504,425835.63,502936.56,0,2217.6892 -5661,6967,12560,12559,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.6258392,6.9269524,9,-1,-157.44789,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9113946,6.9664912,57.33,42.93,46.39,52.95,8.333333333333334,1,1,0,0,8,10,3,1,695,1321504,425835.63,502936.56,0,2217.6892 -5662,6968,12561,12562,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,6.9915943,6.7987785,0,34,-5,11.273458,0,2,2,2019,12,0,18,18,1,0,0,6.8762112,6.8762112,0,0,0,0,0,1,1,0,.52014238,0,36.91,53.54,49.04,55.86,5,1,1,0,0,10,7,4,1,158,913396.25,177356.3,300918.16,0,2108.8357 -5662,6968,12562,12561,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.4218569,8.3380785,6.3528757,35,5,-12.345768,0,2,2,2019,12,0,44,44,1,0,0,11.922822,11.922822,0,0,0,0,0,1,1,0,5.910789,6.4571519,49.04,55.86,36.91,53.54,6.666666666666667,1,1,0,0,12,7,4,1,158,913396.25,177356.3,300918.16,0,2108.8357 -5662,6969,12563,-9,12561,12562,1,1,23,0,0,0,1,1,1,0,3,0,0,0,0,0,-834.65289,-9,3,3,2019,21,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,.45471209,0,49.61,54.24,-9,-9,5,1,1,1,1,4,7,1,1,1335,-968.87427,0,0,0,70.725693 -5663,6970,12564,12566,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6602049,8.6146517,0,9,5,-49.860844,0,-9,-9,2019,9,0,38,40,1,0,0,14.715599,14.715599,0,0,0,0,0,1,1,0,0,0,55.78,44.75,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,573.33331,633809.69,140456.5,418814.44,126820.76,3500.7119 -5663,6970,12565,-9,12566,12564,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.4943,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,573.33331,633809.69,140456.5,418814.44,126820.76,3500.7119 -5663,6970,12566,12564,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.5953989,8.5852489,0,9,-5,-122.80462,0,3,3,2019,6,0,66,48,1,0,0,8.3009338,8.3009338,0,0,0,0,0,1,1,0,1.6988028,0,57.16,56.15,55.78,44.75,8.333333333333334,1,1,0,0,11,8,5,1,573.33331,633809.69,140456.5,418814.44,126820.76,3500.7119 -5664,6971,12567,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.5145364,6.0701528,0,0,-942.15625,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,6.9369764,8.4316483,70.028252,0,1,1,0,7.0536661,5.7470994,46.82,39.14,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,964,-148019.19,-24078.508,73271.844,0,1303.2703 -5665,6972,12568,12569,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.9588232,9.0301743,0,27,1,-56.156853,-9,3,3,2019,12,0,35,0,1,0,0,23.902422,23.902422,0,0,0,0,0,0,0,0,3.4475489,0,47,49,59.27,33.79,5,1,1,0,0,9,5,5,1,926,1595865.8,1221541.3,494547.69,223509.44,3669.5566 -5665,6972,12569,12568,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3770485,8.270792,0,26,-1,11.49653,-9,3,2,2019,5,1,38,0,1,1,0,15.119028,15.119028,0,0,0,0,14.5,0,0,0,0,0,59.27,33.79,47,49,8.333333333333334,1,1,0,0,8,5,5,1,926,1595865.8,1221541.3,494547.69,223509.44,3669.5566 -5666,6973,12570,12571,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3392477,7.5082302,0,5,-7,-122.6686,0,3,2,2019,14,2,20,20,1,2,0,8.6834002,8.6834002,0,0,0,0,14.5,0,0,0,0,0,54.78,34.44,49.39,47.46,8.333333333333334,1,1,0,0,7,6,4,1,380,64175.109,52906.223,164718.97,0,3187.2432 -5666,6973,12571,12570,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7209053,8.5986357,2.8226364,5,7,-2.5372093,0,-9,-9,2019,12,1,48,48,1,1,0,15.425335,15.425335,0,0,0,0,0,0,0,0,6.9582958,0,49.39,47.46,54.78,34.44,6.666666666666667,1,1,0,0,5,6,4,1,380,64175.109,52906.223,164718.97,0,3187.2432 -5667,6974,12572,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.4669075,8.1082163,0,0,0,-885.02887,0,2,3,2019,6,0,35,35,1,0,0,11.968108,11.968108,0,0,0,0,0,0,0,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,504,227537.16,-70600.945,127350.02,0,1560.0028 -5668,6975,12573,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,6.7268214,6.8842664,0,0,-1021.6081,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.4206996,61.61,13.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,2688,227618.34,6306.9326,0,0,1056.4403 -5669,6976,12574,-9,12575,12578,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-919.03571,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 -5669,6976,12575,12578,-9,-9,1,0,47,0,2,0,1,1,-9,0,2,6.8904266,7.2407084,5.3347187,9,2,-43.75877,0,3,3,2019,26,9,17,21,1,9,0,7.5841575,7.5841575,0,0,0,0,0,1,1,0,5.1578612,0,38.86,29.9,20.76,64.84999999999999,6.666666666666667,1,1,0,0,4,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 -5669,6976,12576,-9,12575,12578,1,0,17,0,2,0,2,2,-9,0,2,0,4.5530167,4.5773931,0,0,-955.80505,1,1,1,2019,25,12,0,0,2,12,0,0,0,0,0,0,0,14.5,1,1,0,4.4810987,0,20.57,58.76,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 -5669,6976,12577,-9,12575,12578,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.2666,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 -5669,6976,12578,12575,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.3439751,9.3330326,0,9,-2,-1.3374978,0,-9,-9,2019,24,10,44,38,1,10,0,26.885956,26.885956,0,0,0,0,0,1,1,0,.2461548,0,20.76,64.84999999999999,38.86,29.9,8.333333333333334,1,1,0,0,10,2,4,1,1046.4,748849.75,332118.47,273096.94,0,4097.3652 -5670,6977,12579,12581,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.7319098,8.870244,0,7,0,68.61512,0,-9,-9,2019,8,0,43,42,1,0,0,16.097641,16.097641,0,0,0,0,0,1,1,0,7.5040073,0,51.41,45.41,49.44,54.26,10,1,1,0,0,8,9,5,1,356,617469.69,601076.94,0,0,8582.2207 -5670,6977,12580,-9,12579,12581,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-887.37781,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,356,617469.69,601076.94,0,0,8582.2207 -5670,6977,12581,12579,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.4546862,8.7456112,0,7,0,-24.680935,0,3,-9,2019,8,0,42,40,1,0,0,10.615925,10.615925,0,0,0,0,0,1,1,0,9.4293165,0,49.44,54.26,51.41,45.41,8.333333333333334,1,1,0,0,11,9,5,1,356,617469.69,601076.94,0,0,8582.2207 -5671,6978,12582,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1046.769,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,2,1,0,390,206827,0,0,0,812.07526 -5671,6979,12583,-9,12582,-9,1,0,32,0,0,0,2,2,-9,0,5,7.9220552,8.0700855,0,0,0,-880.65613,0,3,-9,2019,14,2,50,46,1,2,0,6.9883595,6.9883595,0,0,0,0,0,1,1,0,0,0,47.86,52.33,-9,-9,6.666666666666667,2,3,0,0,2,2,4,0,152,185971.31,-7314.0483,0,0,1082.4377 -5671,6980,12584,-9,12582,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1163.1165,-9,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.33,35.67,-9,-9,6.666666666666667,2,3,1,0,0,2,1,0,971,251434.55,0,0,0,884.60938 -5672,6981,12585,12589,-9,-9,1,1,29,0,3,0,2,2,-9,1,4,0,0,0,6,1,0,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,42.54,49.29,24.15,21.49,8.333333333333334,1,1,0,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 -5672,6981,12586,-9,12589,12585,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.9046,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 -5672,6981,12587,-9,12589,12585,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1179.7999,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 -5672,6981,12588,-9,12589,12585,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.84662,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 -5672,6981,12589,12585,-9,-9,1,0,28,0,3,0,2,2,-9,1,1,0,0,0,6,-1,0,0,3,-9,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,24.15,21.49,42.54,49.29,3.333333333333333,1,1,0,0,0,5,1,0,968.59998,40637.902,0,0,0,4712.835 -5673,6982,12590,12591,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.5949945,8.4031858,0,18,8,-6.8860931,0,2,2,2019,6,0,35,35,1,0,0,15.110278,15.110278,0,0,0,0,0,0,0,0,0,0,69.78,25.95,46.5,58.26,1.666666666666667,1,1,0,0,8,9,5,1,507,3512426.3,2634566,523087.69,0,4721.0425 -5673,6982,12591,12590,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9590778,9.0837841,0,18,-8,69.415634,0,2,2,2019,8,0,43,50,1,0,0,19.030983,19.030983,0,0,0,0,0,0,0,0,0,0,46.5,58.26,69.78,25.95,8.333333333333334,1,1,0,0,11,9,5,1,507,3512426.3,2634566,523087.69,0,4721.0425 -5673,6983,12592,-9,12591,12590,1,0,18,0,0,0,2,2,-9,0,2,8.0247211,7.9972553,0,0,0,-1073.0797,0,1,2,2019,23,11,40,0,1,11,1,9.1117182,9.1117182,0,0,0,0,0,0,0,0,0,0,35.89,41.98,-9,-9,1.666666666666667,1,1,0,0,2,9,4,1,2200,-93318.484,-47950.977,0,0,1387.3104 -5673,6984,12593,-9,12591,12590,1,1,18,0,0,0,2,2,-9,0,3,7.1866636,7.2784104,0,0,0,-1032.0348,-9,1,2,2019,15,4,35,0,1,4,1,5.6112657,5.6112657,0,0,0,0,0,0,0,0,0,0,34.82,51.67,-9,-9,3.333333333333333,1,1,0,1,0,9,3,1,1282,-126890.26,0,0,0,637.79993 -5674,6985,12594,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4198828,8.3436632,0,0,0,-802.39215,0,3,3,2019,6,0,39,41,1,0,0,12.290458,12.290458,0,0,0,0,2,0,0,0,0,0,66.23,35.65,-9,-9,6.666666666666667,3,4,0,0,11,8,4,1,305,107332.73,0,0,0,1978.5624 -5675,6986,12595,12596,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,20,-7,0,-9,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,2,0,0,0,2.4526057,0,36.93,63.03,28.83,65.52,5,1,1,0,0,8,11,2,1,1234,-257783.44,0,0,0,19.784592 -5675,6986,12596,12595,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,20,7,0,0,3,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,28.83,65.52,36.93,63.03,5,1,1,0,0,8,11,2,1,1234,-257783.44,0,0,0,19.784592 -5676,6987,12597,12598,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5433025,7.7423944,7,0,-23.135906,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,4.1335182,7.7536454,52.43,55.57,67.98999999999999,21.53,6.666666666666667,1,1,0,0,0,9,3,1,1596.5,2276312.5,594009.88,451893.59,0,3141.0537 -5676,6987,12598,12597,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7503109,7.8052316,7,0,-37.106121,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,4.032166,0,2,1,1,0,5.3791742,7.8357682,67.98999999999999,21.53,52.43,55.57,8.333333333333334,1,1,0,0,0,9,3,1,1596.5,2276312.5,594009.88,451893.59,0,3141.0537 -5677,6988,12599,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.5530581,7.6109586,0,0,-953.27625,0,3,3,2019,6,0,0,14,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7023458,7.8362107,62.57,51.16,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,168,636505.88,596207.69,247808.91,0,2348.9895 -5678,6989,12600,12601,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.4081163,6.8483157,0,19,-4,23.059046,0,2,-9,2019,8,0,40,30,1,0,0,3.6953676,3.6953676,0,0,0,0,0,1,1,0,0,0,55.75,39.09,57.33,53.46,8.333333333333334,1,1,0,0,10,12,4,1,904.33331,183613.13,159885.84,169806.47,38625.73,3148.6243 -5678,6989,12601,12600,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.9301748,8.7017336,0,10,4,-20.436617,0,2,2,2019,8,0,44,44,1,0,0,19.76722,19.76722,0,0,0,0,0,1,1,0,0,0,57.33,53.46,55.75,39.09,8.333333333333334,1,1,0,0,11,12,4,1,904.33331,183613.13,159885.84,169806.47,38625.73,3148.6243 -5678,6989,12602,-9,12600,12601,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.06995,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,904.33331,183613.13,159885.84,169806.47,38625.73,3148.6243 -5679,6990,12603,12604,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,9.0839233,9.1381922,8,3,-64.121765,-9,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.7616682,9.010457,53,47,51,47,7,1,1,0,0,9,13,5,1,1625,3148572,1283839,350659.81,0,5191.8413 -5679,6990,12604,12603,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,8,-3,-114.17683,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,53,47,7,1,1,0,0,9,13,5,1,1625,3148572,1283839,350659.81,0,5191.8413 -5680,6991,12605,-9,12608,12607,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.06512,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 -5680,6991,12606,-9,12608,12607,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.62701,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 -5680,6991,12607,12608,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6885881,8.8527069,0,8,3,71.97905,0,-9,-9,2019,3,1,39,41,1,1,0,23.179453,23.179453,0,0,0,0,0,1,1,0,4.1399345,0,64.05,50.24,58.32,50.22,8.333333333333334,1,1,0,0,9,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 -5680,6991,12608,12607,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.3403831,7.5469422,0,8,-3,68.160583,0,2,2,2019,9,1,23,23,1,1,0,7.9669628,7.9669628,0,0,0,0,0,1,1,0,0,0,58.32,50.22,64.05,50.24,8.333333333333334,1,1,0,0,9,12,4,1,1066.75,-30307.387,90021.438,0,0,3453.5293 -5681,6992,12609,-9,-9,-9,1,0,25,0,0,0,2,2,0,0,5,0,0,0,0,0,-996.36035,-9,1,2,2019,21,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,10,1,1,0,1,6,1,1,0,2810,0,0,0,0,0 -5682,6993,12610,-9,12612,12614,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.445,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 -5682,6993,12611,-9,12612,12614,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.58069,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 -5682,6993,12612,12614,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,16,-2,-122.0537,1,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,65.36,38.75,39.93,57.25,10,3,4,0,0,1,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 -5682,6993,12613,-9,12612,12614,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.47406,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 -5682,6993,12614,12612,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,8.2190571,7.8531394,0,16,2,-62.762135,0,3,3,2019,9,0,40,35,1,0,0,10.076865,10.076865,0,0,0,0,0,1,1,0,0,0,39.93,57.25,65.36,38.75,10,3,4,0,0,8,8,3,0,634,60788.336,-10465.928,0,0,2920.1084 -5683,6994,12615,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1079.3208,-9,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,1.6324095,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,11,1,0,449,-272070.22,0,0,0,1339.053 -5684,6995,12616,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,0,0,-998.04785,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,2.361702,0,57.16,56.15,-9,-9,10,1,1,1,0,5,12,1,1,917,547318.19,52483.91,306715.69,0,306.11057 -5685,6996,12617,-9,-9,-9,1,0,19,0,0,0,3,3,1,0,4,7.1264944,7.2513919,0,1,-11,-48.531662,-9,-9,-9,2019,11,1,19,0,1,1,0,8.3852816,8.3852816,0,0,0,0,0,0,0,0,0,0,53.03,44.7,48,57,6.666666666666667,1,1,0,0,1,10,2,0,2855,-842.48578,0,0,0,145.2773 -5686,6997,12618,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,7.2416897,7.2343564,0,0,-850.48706,0,3,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,7.0705576,36.1,21.54,-9,-9,1.666666666666667,1,1,0,1,4,10,3,1,3890,1177367.5,174337.8,369837.34,0,740.96985 -5687,6998,12619,12621,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,7.9228139,7.9879575,0,6,3,-74.212074,0,-9,-9,2019,11,0,38,30,1,0,0,8.2919502,8.2919502,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,6.666666666666667,1,1,0,0,7,11,5,1,441.33334,283803.41,67319.844,241362.55,153870.61,4951.7466 -5687,6998,12620,-9,12621,12619,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.86,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,441.33334,283803.41,67319.844,241362.55,153870.61,4951.7466 -5687,6998,12621,12619,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,9.3610773,9.2651787,0,6,-3,-144.23843,0,2,2,2019,14,2,40,40,1,2,0,26.720209,26.720209,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,5,1,1,0,0,7,11,5,1,441.33334,283803.41,67319.844,241362.55,153870.61,4951.7466 -5688,6999,12622,12623,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,10,-1,-6.2012444,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,120,1,1,0,0,0,44.33,35.37,31.59,26,5,1,1,0,0,0,12,2,1,440,183745.84,-56114.891,161714.44,0,2030.207 -5688,6999,12623,12622,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.9730515,5.5929427,10,1,20.871243,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,3.0257483,43.067024,22.976294,0,1,1,0,0,5.7345929,31.59,26,44.33,35.37,3.333333333333333,1,1,0,0,0,12,2,1,440,183745.84,-56114.891,161714.44,0,2030.207 -5689,7000,12624,-9,-9,-9,1,0,38,0,2,0,2,2,0,0,2,0,0,0,0,0,-1071.3231,-9,3,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.79,57.01,-9,-9,6.666666666666667,1,1,0,1,5,6,1,0,390.66666,-9812.5742,0,0,0,1616.2061 -5689,7000,12625,-9,12624,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-919.39874,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,1,0,390.66666,-9812.5742,0,0,0,1616.2061 -5689,7000,12626,-9,12624,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1053.198,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,1,0,390.66666,-9812.5742,0,0,0,1616.2061 -5690,7001,12627,12630,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,7.4937649,7.5551987,0,10,0,116.88078,0,2,2,2019,10,1,27,0,1,1,0,7.5289936,7.5289936,0,0,0,0,0,0,0,0,0,0,49.27,56.95,42.95,61.24,8.333333333333334,1,1,0,0,4,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 -5690,7001,12628,-9,12627,12630,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1210.7633,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 -5690,7001,12629,-9,12627,12630,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-907.69397,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 -5690,7001,12630,12627,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,9.6604366,9.8026791,0,10,0,136.06471,0,2,-9,2019,14,3,45,48,1,3,0,39.349918,39.349918,0,0,0,0,0,0,0,0,0,0,42.95,61.24,49.27,56.95,6.666666666666667,1,1,0,0,12,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 -5690,7001,12631,-9,12627,12630,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-875.15424,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,984.40002,2292147.5,728329.88,1798696.5,802239.13,5950.5786 -5691,7002,12632,12633,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.2895651,9.4592533,6.7858219,9,1,-8.3650942,0,3,3,2019,7,0,50,50,1,0,0,22.997368,22.997368,0,0,0,0,2,0,0,0,7.16643,0,57.33,53.46,50.35,49.87,8.333333333333334,1,1,0,0,10,2,5,1,297,727702,380881.41,351698.63,0,4084.9192 -5691,7002,12633,12632,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,9,-1,-33.441006,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,.1580136,0,50.35,49.87,57.33,53.46,10,1,1,0,0,0,2,5,1,297,727702,380881.41,351698.63,0,4084.9192 -5692,7003,12634,12635,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.4955931,8.4096975,7.8181567,10,-1,-52.63102,0,2,2,2019,18,8,23,37,1,8,0,9.1105347,9.1105347,0,0,0,0,2,0,0,0,2.627964,8.0509357,32.18,43.26,52,54.51,6.666666666666667,1,1,0,0,11,6,4,1,1504,578097,187319.31,231423.69,0,2265.5615 -5692,7003,12635,12634,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.6301374,6.4460659,10,1,-124.1153,0,2,2,2019,11,0,0,37,4,0,0,0,0,0,0,0,0,2,0,0,0,3.5908442,6.6678219,52,54.51,32.18,43.26,8.333333333333334,1,1,0,0,10,6,4,1,1504,578097,187319.31,231423.69,0,2265.5615 -5693,7004,12636,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-965.96619,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,15.528649,0,140.60809,0,1,1,0,.58853197,0,54.13,45.84,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1371,41518.355,0,0,0,930.72949 -5694,7005,12637,12638,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,8.4201479,7.9870791,3.6554539,42,4,-53.653877,0,3,-9,2019,11,1,42,42,1,1,0,11.125251,11.125251,0,0,0,0,2,0,0,0,0,4.4963317,53.8,38.02,54.96,53.17,6.666666666666667,1,1,0,0,7,10,5,1,2155,3404576.5,3133476,301919.25,44908.703,2828.1868 -5694,7005,12638,12637,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2689009,8.1834192,5.6607947,42,-4,64.063171,0,-9,-9,2019,8,0,42,42,1,0,0,10.476208,10.476208,0,0,0,0,2,0,0,0,0,5.9243526,54.96,53.17,53.8,38.02,8.333333333333334,1,1,0,0,10,10,5,1,2155,3404576.5,3133476,301919.25,44908.703,2828.1868 -5695,7006,12639,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,9.1222696,9.532794,8.3472548,0,0,-1058.9269,0,2,2,2019,8,0,25,10,1,0,0,34.613766,34.613766,0,0,0,0,0,0,0,0,5.1668272,8.1465149,52.18,46.23,-9,-9,8.333333333333334,1,1,0,0,9,5,5,1,721,187908.72,0,73690.383,46818.672,6011.3765 -5695,7007,12640,-9,12639,-9,1,1,23,0,0,0,1,1,-9,0,4,8.1540632,8.0105906,5.9611797,0,0,-838.00317,0,2,1,2019,19,7,10,10,1,7,1,40.180786,40.180786,0,0,0,0,0,0,0,0,5.8697519,0,18.16,68.62,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,422,144672.69,-42269.367,0,0,2214.04 -5696,7008,12641,-9,12642,12643,1,1,25,0,0,0,1,1,-9,0,4,7.8742642,7.9324927,0,0,0,-1083.7426,0,2,2,2019,8,1,24,15,1,1,1,10.28109,10.28109,0,0,0,0,0,1,1,0,0,0,55.76,52.64,-9,-9,6.666666666666667,2,3,0,0,5,4,3,1,349,-224074.77,-32522.197,0,0,642.61053 -5696,7009,12642,12643,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,27,-7,-34.01329,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,32.18,57.15,8,2,3,0,0,0,4,2,1,187,533460.25,275074.66,99774.844,0,168.15436 -5696,7009,12643,12642,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.0525861,6.3362684,0,27,7,52.289684,0,-9,-9,2019,7,0,35,35,1,0,0,1.887815,1.887815,0,0,0,0,0,1,1,0,0,0,32.18,57.15,50,54,3.333333333333333,2,3,0,0,11,4,2,1,187,533460.25,275074.66,99774.844,0,168.15436 -5697,7010,12644,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.5703902,7.8465996,7.0799356,0,0,-1108.9823,0,-9,-9,2019,10,0,24,24,1,0,0,8.9547148,8.9547148,0,0,0,0,0,0,0,0,7.0596371,0,46.65,55.59,-9,-9,6.666666666666667,1,1,0,0,8,12,4,0,295,0,0,0,0,1215.6218 -5698,7011,12645,12646,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.1485271,9.3075848,0,8,2,-71.327271,0,-9,-9,2019,9,0,40,40,1,1,0,24.295443,24.295443,0,0,0,0,0,0,0,0,6.7604761,0,54,54,57.91,48.98,8,1,1,0,0,1,9,5,1,472,2655726.8,1476846.9,606369.13,0,3617.311 -5698,7011,12646,12645,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.6588635,7.2865272,0,36,-2,73.844543,0,3,2,2019,7,0,24,26,1,0,0,8.0137424,8.0137424,0,0,0,0,0,0,0,0,.48858896,0,57.91,48.98,54,54,8.333333333333334,1,1,0,0,9,9,5,1,472,2655726.8,1476846.9,606369.13,0,3617.311 -5699,7012,12647,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1013.8498,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,51,48,-9,-9,7,1,1,0,1,0,5,1,1,248,-67918.297,36270.254,125102.73,20287.426,667.28888 -5700,7013,12648,12649,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.0701733,8.2440853,7.7911401,7,-2,-140.99313,0,-9,-9,2019,9,0,16,11,1,0,0,16.250114,16.250114,0,0,0,0,0,1,1,0,1.8748481,8.1449118,54.2,57.49,49.8,56.68,8.333333333333334,1,1,0,0,10,7,4,1,213,1532174.3,682348.56,505750.03,0,3701.1606 -5700,7013,12649,12648,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.9425225,7.6907082,34,2,-51.974876,0,2,1,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,74.5,1,1,0,4.2898755,7.661746,49.8,56.68,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,213,1532174.3,682348.56,505750.03,0,3701.1606 -5701,7014,12650,12651,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,10,2,-74.346581,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.24,58.84,8.333333333333334,1,1,0,0,0,11,4,1,125.5,469459.69,507884.94,245310.22,0,2578.9148 -5701,7014,12651,12650,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7521124,9.0304585,0,10,-2,86.742416,0,-9,-9,2019,11,1,43,40,1,1,0,14.674209,14.674209,0,0,0,0,0,0,0,0,0,0,51.24,58.84,52,54.51,8.333333333333334,1,1,0,0,10,11,4,1,125.5,469459.69,507884.94,245310.22,0,2578.9148 -5701,7015,12652,-9,12650,12651,1,1,24,0,0,0,1,1,-9,0,3,8.1527739,8.4292555,0,0,0,-906.19598,0,2,2,2019,7,2,37,0,1,2,1,12.711692,12.711692,0,0,0,0,0,0,0,0,0,0,49.8,54.33,-9,-9,6.666666666666667,1,1,0,0,2,11,4,1,648,310422.13,58177.098,304015.25,108773.01,1610.725 -5701,7016,12653,-9,12650,12651,1,1,21,0,0,0,2,2,1,0,3,8.0329294,8.2903938,0,0,0,-983.23993,-9,2,2,2019,3,1,44,0,1,1,1,6.4573808,6.4573808,0,0,0,0,0,0,0,0,0,0,56.07,45.75,-9,-9,6.666666666666667,1,1,0,0,3,11,4,1,238,46143.324,0,0,0,1282.8495 -5702,7017,12654,-9,12657,12658,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.3645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 -5702,7017,12655,-9,12657,12658,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.2279,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 -5702,7017,12656,-9,12657,12658,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1212.806,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 -5702,7017,12657,12658,-9,-9,1,0,33,1,3,0,2,2,-9,0,3,6.7060342,6.6170616,0,3,0,-4.9034038,0,-9,-9,2019,6,0,12,12,1,0,0,8.8407936,8.8407936,0,0,0,0,0,1,1,0,0,0,64.64,48.76,54.97,47.63,8.333333333333334,3,4,0,0,10,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 -5702,7017,12658,12657,-9,-9,1,1,33,1,3,0,2,2,-9,0,3,8.2791872,8.4515076,0,3,0,106.2046,0,-9,-9,2019,11,0,36,0,1,0,0,9.2782269,9.2782269,0,0,0,0,0,1,1,0,0,0,54.97,47.63,64.64,48.76,10,2,3,0,0,2,8,3,0,332.60001,318842.88,338500.34,0,0,3091.9041 -5703,7018,12659,12660,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.2609878,7.6203856,0,1,1,156.50241,0,-9,3,2019,13,1,30,50,1,1,0,6.6396542,6.6396542,0,0,0,0,0,0,0,0,0,0,46.98,59.35,54.69,57.47,8.333333333333334,1,1,0,0,6,10,4,0,622,47836.891,-31760.516,156444.75,148772.41,1700.791 -5703,7018,12660,12659,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.3339214,7.906518,0,1,-1,55.912315,-9,-9,-9,2019,10,2,48,0,1,2,0,8.3852234,8.3852234,0,0,0,0,0,0,0,0,0,0,54.69,57.47,46.98,59.35,8.333333333333334,1,1,0,0,5,10,4,0,622,47836.891,-31760.516,156444.75,148772.41,1700.791 -5704,7019,12661,12662,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,6.6977754,7.118958,6.3497877,1,9,35.4603,-9,-9,-9,2019,13,3,21,0,1,3,0,3.6481214,3.6481214,0,0,0,0,0,1,1,0,5.9730406,0,31.15,62.63,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,918.5,65078.68,0,0,0,2269.8403 -5704,7019,12662,12661,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.3411608,8.5230627,0,1,0,-119.5429,0,2,2,2019,6,0,36,35,1,0,0,14.472238,14.472238,0,0,0,0,0,1,1,0,3.2554166,0,57.16,56.15,31.15,62.63,8.333333333333334,1,1,0,0,9,9,4,1,918.5,65078.68,0,0,0,2269.8403 -5705,7020,12663,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1051.1445,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,2.6840348,0,49,48,-9,-9,7,2,3,1,0,0,8,1,1,84,338270.25,-86879.242,0,0,-13.029207 -5706,7021,12664,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.4707012,8.3857231,0,0,0,-965.21063,0,3,2,2019,8,0,60,72,1,0,0,11.48866,11.48866,0,0,0,0,0,0,0,0,0,0,61.14,35.64,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,1838,25424.902,-129758.64,0,0,2201.6157 -5707,7022,12665,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,8.7963772,8.5123825,0,0,-1060.4525,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.418695,8.6734972,55.93,44.39,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,63,724096.44,380761.59,249961.41,0,3179.0229 -5708,7023,12666,-9,-9,-9,1,1,97,0,0,0,2,2,-9,0,2,0,7.0884228,7.1010871,0,0,-906.42603,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3771162,49.12,39.79,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,531,110277.8,3099.9119,120768.44,0,2026.7472 -5709,7024,12667,12668,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.6258383,8.858037,0,27,-3,33.966438,0,2,2,2019,5,0,45,40,1,0,0,15.088782,15.088782,0,0,0,0,0,0,0,0,0,0,54.37,54.8,53,54,6.666666666666667,3,4,0,0,11,8,5,1,621,1656769.3,1514856.6,306818.31,52140.453,4288.3853 -5709,7024,12668,12667,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1554756,8.0469007,0,27,3,54.798309,0,2,2,2019,9,0,35,35,1,1,0,14.386363,14.386363,0,0,0,0,0,0,0,0,0,0,53,54,54.37,54.8,8,3,4,0,0,1,8,5,1,621,1656769.3,1514856.6,306818.31,52140.453,4288.3853 -5710,7025,12669,12670,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.1905851,7.0368166,0,10,0,179.59132,0,2,2,2019,7,1,2,12,1,1,0,75.694534,75.694534,0,0,0,0,0,1,1,0,0,0,52.4,55.58,51.83,57.2,8.333333333333334,1,1,0,0,10,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 -5710,7025,12670,12669,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.1280775,8.8984709,0,10,0,-98.526695,0,1,1,2019,8,0,42,50,1,0,0,24.682024,24.682024,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.4,55.58,8.333333333333334,1,1,0,0,10,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 -5710,7025,12671,-9,12669,12670,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.9149,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 -5710,7025,12672,-9,12669,12670,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.04974,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,802.75,40252.844,31092.199,0,0,3067.1919 -5711,7026,12673,12674,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,24,-2,-170.17218,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.38,46.48,10,1,1,0,0,0,2,2,1,197,554292.69,275879.56,224589.63,0,1817.2845 -5711,7026,12674,12673,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.0693693,7.3421502,24,2,-27.094404,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9651966,48.38,46.48,57.16,56.15,10,1,1,0,0,0,2,2,1,197,554292.69,275879.56,224589.63,0,1817.2845 -5712,7027,12675,12676,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,0,0,0,6,-4,-12.27824,0,2,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.57,37.85,49.04,55.86,3.333333333333333,1,1,0,0,0,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 -5712,7027,12676,12675,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.2163067,8.0423632,0,6,4,78.471817,0,2,2,2019,8,0,37,38,1,0,0,9.5272732,9.5272732,0,0,0,0,0,1,1,0,0,0,49.04,55.86,41.57,37.85,6.666666666666667,1,1,0,1,5,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 -5712,7027,12677,-9,12675,12676,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-916.15149,-9,2,1,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.54,58.69,-9,-9,5,1,1,1,0,0,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 -5712,7027,12678,-9,12675,12676,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.7349,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,798.75,1928992.6,934371.38,1003667.4,173300.78,1840.1455 -5713,7028,12679,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.6392136,8.9540176,0,0,0,-968.6839,0,3,3,2019,11,0,10,25,1,0,0,90.684563,90.684563,0,0,0,0,2,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,637,578674.94,434983.38,237716.25,59697.336,2891.6016 -5714,7029,12680,-9,12683,12681,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.42914,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 -5714,7029,12681,12683,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.7230282,8.5367556,0,15,0,96.318489,-9,3,3,2019,7,0,48,0,1,0,0,13.787374,13.787374,0,0,0,0,0,1,1,0,0,0,48.87,58.55,30.61,33.66,6.666666666666667,1,1,0,0,7,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 -5714,7029,12682,-9,12683,12681,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-905.39252,-9,1,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 -5714,7029,12683,12681,-9,-9,1,0,43,0,2,0,1,1,-9,0,1,9.0130787,8.8497334,0,15,0,109.12412,-9,2,3,2019,24,10,45,0,1,10,0,20.625301,20.625301,0,0,0,0,0,1,1,0,0,0,30.61,33.66,48.87,58.55,1.666666666666667,1,1,0,0,10,11,5,1,1050.5,659351.44,273503.94,486368.75,38342.934,5259.4468 -5715,7030,12684,12686,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.7408504,9.1184559,0,20,5,-77.498238,0,2,-9,2019,11,1,50,70,1,1,0,15.957291,15.957291,0,0,0,0,0,1,1,0,0,0,41.95,57.9,58.15,52.91,5,3,4,0,0,11,8,5,1,1593.3334,880127.5,147197.84,810439.75,451866.59,4827.6157 -5715,7030,12685,-9,12684,12686,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1022.6445,-9,1,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,1593.3334,880127.5,147197.84,810439.75,451866.59,4827.6157 -5715,7030,12686,12684,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4992285,8.9751225,0,8,-5,-93.262428,0,-9,-9,2019,8,0,36,36,1,0,0,13.910782,13.910782,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.95,57.9,10,3,4,0,0,11,8,5,1,1593.3334,880127.5,147197.84,810439.75,451866.59,4827.6157 -5715,7031,12687,-9,12684,12686,1,0,26,0,0,0,2,2,-9,0,3,8.1642838,8.1267862,0,0,0,-1073.4552,0,1,2,2019,17,5,50,30,1,5,1,8.1594687,8.1594687,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,0,3,4,0,0,9,8,4,1,936,-584098.63,5757.8594,0,0,1847.9757 -5716,7032,12688,12689,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,5.0529227,5.288528,10,-7,-59.539932,0,2,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.4027433,5.1894412,42.84,48.06,49.04,55.86,5,1,1,0,0,4,11,3,1,1551,1627843.3,601908.06,250271.38,0,1722.5698 -5716,7032,12689,12688,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7343378,7.4769735,10,7,-24.697924,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0437803,7.8015342,49.04,55.86,42.84,48.06,6.666666666666667,1,1,0,0,5,11,3,1,1551,1627843.3,601908.06,250271.38,0,1722.5698 -5717,7033,12690,12692,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.6286688,9.5686102,0,8,3,40.79705,0,2,2,2019,7,0,35,40,1,0,0,35.951275,35.951275,0,0,0,0,0,1,1,0,6.8496881,0,48.87,58.55,44.07,51.46,8.333333333333334,1,1,0,0,11,9,5,1,533.66669,603599.06,226441.45,552247.31,167351.13,4319.1157 -5717,7033,12691,-9,12692,12690,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.0142,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.66669,603599.06,226441.45,552247.31,167351.13,4319.1157 -5717,7033,12692,12690,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,8,-3,-14.191887,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,44.07,51.46,48.87,58.55,5,1,1,0,0,0,9,5,1,533.66669,603599.06,226441.45,552247.31,167351.13,4319.1157 -5717,7034,12693,-9,12692,12690,1,0,19,0,2,0,2,2,-9,0,3,7.9755802,7.9467521,0,0,0,-933.22351,0,2,2,2019,11,0,40,18,1,0,1,8.4384861,8.4384861,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,786,172703.67,-63591.004,0,0,1601.4058 -5718,7035,12694,12695,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,3.6387565,3.6948059,54,2,55.573925,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4969621,3.6812239,48,37,64.09,36.45,10,1,1,0,0,0,2,3,1,1688.5,299222.94,241934.41,54811.898,24501.719,2775.7302 -5718,7035,12695,12694,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.4815989,7.4038391,0,54,-2,-79.712013,0,3,3,2019,7,0,30,30,1,0,0,6.8906698,6.8906698,0,0,0,0,0,1,1,0,5.2640109,0,64.09,36.45,48,37,8.333333333333334,1,1,0,0,11,2,3,1,1688.5,299222.94,241934.41,54811.898,24501.719,2775.7302 -5719,7036,12696,12697,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.5013838,9.2831373,0,34,3,71.006493,0,-9,-9,2019,11,0,45,40,1,0,0,41.329655,41.329655,0,0,0,0,0,0,0,0,0,0,55.36,51.57,58.15,52.91,1.666666666666667,1,1,0,0,12,7,5,1,603.5,1904876.3,1198546.6,726462,0,5253.4238 -5719,7036,12697,12696,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4653392,7.380434,0,34,-3,-120.11235,0,2,2,2019,8,0,18,20,1,0,0,9.9971066,9.9971066,0,0,0,0,0,0,0,0,2.8052473,0,58.15,52.91,55.36,51.57,8.333333333333334,1,1,0,0,12,7,5,1,603.5,1904876.3,1198546.6,726462,0,5253.4238 -5719,7037,12698,-9,12697,12696,1,0,23,0,0,0,1,1,-9,0,5,8.1181927,8.6138096,0,0,0,-959.02954,0,2,2,2019,6,1,37,38,1,1,1,12.33594,12.33594,0,0,0,0,0,0,0,0,5.6937218,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,2796,66691.633,-227.26392,0,0,1501.0712 -5720,7038,12699,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,6.3759446,6.690887,0,0,-1081.9629,0,2,1,2019,1,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6583691,55.9,44.76,-9,-9,10,1,1,0,0,12,4,2,1,1487,430142.41,38042.379,0,0,321.31097 -5721,7039,12700,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7205515,8.0960293,0,0,0,-869.82062,0,3,3,2019,9,0,30,21,1,0,0,10.56244,10.56244,0,0,0,0,7,1,1,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,9,12,4,0,1158,356150.44,197716.69,0,0,1236.5518 -5722,7040,12701,-9,12702,12704,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.34796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 -5722,7040,12702,12704,-9,-9,1,0,43,1,3,0,2,2,-9,0,3,0,0,0,9,0,-35.446114,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,48,51,5,1,1,0,0,7,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 -5722,7040,12703,-9,12702,12704,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-990.52582,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 -5722,7040,12704,12702,-9,-9,1,1,43,1,3,0,2,2,-9,0,3,8.9935198,8.5465393,0,9,0,-49.286385,0,-9,-9,2019,14,2,54,49,1,2,0,13.457401,13.457401,0,0,0,0,0,1,1,0,0,0,48,51,58.32,50.22,6.666666666666667,1,1,0,0,7,13,3,1,896.75,111088.84,45228.855,173018.14,107064.67,2970.1248 -5723,7041,12705,12707,-9,-9,1,0,33,0,5,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.44,47.24,18.13,62.09,8.333333333333334,1,1,1,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 -5723,7041,12706,-9,12705,12707,1,0,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-996.26239,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 -5723,7041,12707,12705,-9,-9,1,1,33,0,5,0,2,2,-9,1,3,0,0,0,6,0,0,0,2,2,2019,20,5,0,40,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,18.13,62.09,41.44,47.24,5,1,1,0,0,6,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 -5723,7041,12708,-9,12705,12707,1,0,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1022.489,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 -5723,7041,12709,-9,12705,12707,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1205.6499,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 -5723,7041,12710,-9,12705,12707,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1120.4846,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 -5723,7041,12711,-9,12705,12707,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1030.3451,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,570.85712,46382.551,57183.063,0,0,2356.835 -5724,7042,12712,12713,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.0896611,7.2829585,0,10,4,-36.933922,0,2,2,2019,13,1,25,26,1,1,0,6.6362314,6.6362314,0,0,0,0,5.48,0,0,0,3.5038857,0,54.2,57.49,46.25,54.46,8.333333333333334,1,1,0,0,9,6,5,1,623.5,1758055.3,1378262.5,188677.84,6686.3325,3694.9053 -5724,7042,12713,12712,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0240536,9.207407,0,10,-4,-87.059837,0,2,2,2019,10,0,60,60,1,0,0,12.943254,12.943254,0,0,0,0,7,0,0,0,4.7632017,0,46.25,54.46,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,623.5,1758055.3,1378262.5,188677.84,6686.3325,3694.9053 -5725,7043,12714,12715,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.6136732,6.6446834,8,3,128.01984,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5935955,6.6274738,60.12,54.8,59.71,50.89,10,1,1,0,0,0,4,3,1,129,783136,432090.63,-19870.934,0,2177.439 -5725,7043,12715,12714,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.3127213,7.5903201,8,-3,151.4852,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8937988,7.1582875,59.71,50.89,60.12,54.8,10,1,1,0,0,4,4,3,1,129,783136,432090.63,-19870.934,0,2177.439 -5726,7044,12716,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.8826284,7.9288635,0,0,0,-992.34027,0,3,-9,2019,8,0,43,42,1,0,0,8.1547661,8.1547661,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,518,86926.133,34264.168,285143.41,-12778.161,1467.4641 -5727,7045,12717,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,7.4859829,7.5778575,0,0,0,-1043.0286,0,-9,-9,2019,9,0,48,60,1,0,0,3.4701819,3.4701819,0,0,0,0,0,1,1,0,2.9376526,0,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,344,155441.73,138622.02,125817.75,0,1519.3361 -5728,7046,12718,12719,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.8597617,7.6344728,0,7,-13,49.022507,0,2,1,2019,1,0,37,37,1,0,0,9.8084583,9.8084583,0,0,0,0,0,1,1,0,0,0,55.42,51.42,59.26,42.79,10,1,1,0,0,10,10,3,0,661.5,831933,930134.13,136749.88,0,2785.4585 -5728,7046,12719,12718,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.3196888,6.8461218,7,13,37.860943,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0598016,59.26,42.79,55.42,51.42,8.333333333333334,1,1,0,0,7,10,3,0,661.5,831933,930134.13,136749.88,0,2785.4585 -5729,7047,12720,12721,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.8199959,7.6507144,59,-1,-72.184082,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.628171,62.99,33.29,53,46,8.333333333333334,1,1,0,0,0,2,2,1,567.5,475082.31,258364.81,280522.25,0,2826.0083 -5729,7047,12721,12720,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,7,1,14.400601,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6769838,0,53,46,62.99,33.29,8,1,1,0,0,0,2,2,1,567.5,475082.31,258364.81,280522.25,0,2826.0083 -5730,7048,12722,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.0551224,6.6887112,0,0,-1021.8781,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0691695,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,628,237336,254652.98,167410.53,0,962.88403 -5731,7049,12723,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,8.0559521,7.8100572,0,0,-1041.7341,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2616024,8.0625362,57.16,56.15,-9,-9,10,1,1,0,0,0,2,4,1,344,872057.69,254235.98,151315.89,0,2330.8535 -5732,7050,12724,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,2,7.5302081,7.3352432,0,0,0,-914.89764,0,2,2,2019,29,12,50,40,1,12,0,3.8179307,3.8179307,0,0,0,0,0,1,1,0,0,0,29.3,38.15,-9,-9,1.666666666666667,1,1,0,0,7,6,2,1,995,129885.8,290539.22,107483.4,100164.91,769.32825 -5732,7051,12725,-9,12724,-9,1,0,25,0,1,0,2,2,-9,0,5,8.0097322,7.5985761,0,0,0,-948.43915,0,1,-9,2019,15,3,37,30,1,3,1,9.8521776,9.8521776,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,6.666666666666667,1,1,0,0,6,6,4,1,1200,-329556.44,205086.67,0,0,95.569794 -5733,7052,12726,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,9.2300673,9.4682178,0,0,0,-963.16296,0,3,3,2019,7,0,40,35,1,0,0,34.519215,34.519215,0,0,0,0,7,0,0,0,4.0373483,0,56.2,40.63,-9,-9,6.666666666666667,1,1,0,0,11,4,5,1,357,223711.03,215984.22,0,0,2828.2747 -5734,7053,12727,12728,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,9.2435617,9.1312084,48,0,32.434998,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.44607681,9.1601944,53.97,25.21,52,48,8.333333333333334,1,1,0,0,9,9,5,1,1350.5,3009628.3,1718054.3,1208289.3,0,6795.8105 -5734,7053,12728,12727,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,9,0,21.921721,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0493364,0,52,48,53.97,25.21,7,1,1,0,0,0,9,5,1,1350.5,3009628.3,1718054.3,1208289.3,0,6795.8105 -5735,7054,12729,12730,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.3047328,6.8735003,65,-2,-.70573032,0,-9,-9,2019,14,4,0,0,4,4,0,0,0,1,0,4.8401575,0,120,1,1,0,0,7.1875849,56.26,30.84,52.24,14.18,3.333333333333333,1,1,0,0,0,2,3,1,417,821579,0,333693.56,0,3377.3584 -5735,7054,12730,12729,-9,-9,1,1,89,0,0,0,2,2,-9,0,1,0,6.805675,6.8062191,65,2,121.49368,-9,3,3,2019,19,6,0,0,4,6,0,0,0,1,3.3732104,50.127209,23.71496,0,1,1,0,0,6.8341699,52.24,14.18,56.26,30.84,5,1,1,0,0,0,2,3,1,417,821579,0,333693.56,0,3377.3584 -5735,7055,12731,-9,12729,12730,1,1,53,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1034.8307,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,9,2,1,1,439,-36248.055,0,0,0,0 -5736,7056,12732,12733,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.8836508,7.9463291,0,2,-2,-36.834545,0,2,2,2019,24,12,37,37,1,12,0,9.8746853,9.8746853,0,0,0,0,7,0,0,0,2.5231051,0,22.33,61.34,43.03,53.23,3.333333333333333,1,1,0,0,8,11,5,1,322.5,31061.551,117566.56,187262.7,127552.77,3096.3721 -5736,7056,12733,12732,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.309082,8.3293219,0,2,2,47.212841,0,2,2,2019,11,0,41,37,1,2,0,11.727318,11.727318,0,0,0,0,0,0,0,0,3.8861423,0,43.03,53.23,22.33,61.34,6.666666666666667,1,1,0,0,8,11,5,1,322.5,31061.551,117566.56,187262.7,127552.77,3096.3721 -5737,7057,12734,12735,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.4729834,8.7111177,0,28,-1,59.207188,0,2,3,2019,10,0,38,41,1,0,0,13.166611,13.166611,0,0,0,0,0,0,0,0,0,0,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,4,5,5,1,1245.5,1363460.8,1031663.5,240315.09,36244.621,3932.042 -5737,7057,12735,12734,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4808073,8.5955229,0,28,1,-25.311733,0,-9,-9,2019,6,0,45,45,1,0,0,14.806792,14.806792,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,6,5,5,1,1245.5,1363460.8,1031663.5,240315.09,36244.621,3932.042 -5737,7058,12736,-9,12734,12735,1,1,23,0,0,0,2,2,-9,0,3,7.9110651,8.1990452,0,0,0,-1048.3943,0,2,2,2019,12,1,39,43,1,1,1,10.062403,10.062403,0,0,0,0,0,0,0,0,0,0,53.22,50.02,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,276,-80375.734,-61465.516,0,0,914.24768 -5738,7059,12737,12738,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.4111056,7.2676568,0,7,9,146.07703,0,3,2,2019,9,0,30,20,1,0,0,8.4777451,8.4777451,0,0,0,0,27,0,0,0,2.2477782,0,45,39,56.95,35.96,5,1,1,0,0,10,6,3,1,544.5,82801.875,50666.98,52866.508,46897.148,1686.5632 -5738,7059,12738,12737,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7425575,7.8719382,0,7,0,-24.268799,0,-9,-9,2019,7,0,30,30,1,0,0,6.2501726,6.2501726,0,0,0,0,0,0,0,0,0,0,56.95,35.96,45,39,8.333333333333334,1,1,0,0,6,6,3,1,544.5,82801.875,50666.98,52866.508,46897.148,1686.5632 -5738,7060,12739,-9,-9,12737,1,0,26,0,0,0,2,2,-9,0,2,8.1121092,7.60179,0,0,0,-992.93665,0,-9,2,2019,9,0,41,40,1,0,1,8.6005011,8.6005011,0,0,0,0,0,0,0,0,.24717402,0,40.72,52.02,-9,-9,5,1,1,0,0,7,6,4,1,1522,-93938.469,4233.5278,0,0,1718.7965 -5738,7061,12740,-9,-9,12737,1,1,22,0,0,0,2,2,-9,0,2,7.71944,7.8756309,0,0,0,-1065.0751,0,-9,2,2019,11,0,39,40,1,0,1,7.5501513,7.5501513,0,0,0,0,0,0,0,0,0,0,47.04,53.26,-9,-9,5,1,1,0,0,5,6,3,1,173,133110.78,0,0,0,1039.5691 -5739,7062,12741,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,1,0,3.044858,3.2658734,0,0,-878.37952,0,-9,-9,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,3.3860238,0,25.37,30.55,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,249,-297171.53,-89118.703,0,0,1816.9513 -5740,7063,12742,-9,12744,12743,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.3495,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,5,1,691.33331,433527.94,217243.59,310335.56,50706.27,4184.7212 -5740,7063,12743,12744,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.5029097,9.008893,6.1112685,9,17,-11.372071,0,-9,-9,2019,9,0,60,60,1,1,0,12.268684,12.268684,0,0,0,0,0,1,1,0,0,6.497232,53,55,26.18,61.09,8,1,1,0,0,1,10,5,1,691.33331,433527.94,217243.59,310335.56,50706.27,4184.7212 -5740,7063,12744,12743,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.0699778,8.1946306,0,16,-17,-31.113981,0,2,2,2019,23,11,30,40,1,11,0,15.637009,15.637009,0,0,0,0,0,1,1,0,5.928925,0,26.18,61.09,53,55,5,1,1,0,0,10,10,5,1,691.33331,433527.94,217243.59,310335.56,50706.27,4184.7212 -5741,7064,12745,12746,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.4509144,7.3963203,52,3,31.209675,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0381479,7.3235621,57.33,53.46,57.06,57.76,10,1,1,0,0,0,5,3,1,945,543336.13,533872.13,129290.23,0,2297.2813 -5741,7064,12746,12745,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.1471095,7.3263817,52,-3,42.300243,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.5028806,7.2233872,57.06,57.76,57.33,53.46,10,1,1,0,0,0,5,3,1,945,543336.13,533872.13,129290.23,0,2297.2813 -5742,7065,12747,12748,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,9.0673294,9.2793226,0,36,1,60.199364,0,3,2,2019,12,0,45,41,1,0,0,20.124886,20.124886,0,0,0,0,0,0,0,0,0,0,46,39,52.78,47.24,3.333333333333333,1,1,0,0,9,6,5,1,637.5,918799.5,522401.25,215041.48,81138.609,4199.5483 -5742,7065,12748,12747,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.0312357,8.2952595,0,36,-1,139.61792,0,-9,-9,2019,12,0,44,47,1,0,0,10.004679,10.004679,0,0,0,0,0,0,0,0,0,0,52.78,47.24,46,39,8.333333333333334,1,1,0,0,9,6,5,1,637.5,918799.5,522401.25,215041.48,81138.609,4199.5483 -5742,7066,12749,-9,12748,12747,1,1,23,0,0,0,2,2,-9,0,3,7.7919946,7.7498164,0,0,0,-1011.2636,0,3,2,2019,14,3,39,46,1,3,1,8.1701183,8.1701183,0,0,0,0,0,0,0,0,0,0,42.46,54.85,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,315,-14590.168,0,0,0,1021.8198 -5743,7067,12750,12751,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,7.4428835,7.2216148,0,6,0,-84.596977,0,2,-9,2019,26,10,23,20,1,10,0,8.5491457,8.5491457,0,0,0,0,0,1,1,0,0,0,11.95,70.31,49.31,58.56,8.333333333333334,1,1,0,0,8,4,5,1,312.66666,-33613.887,-8905.9971,169790.09,228199.22,3381.3887 -5743,7067,12751,12750,-9,-9,1,1,24,0,1,0,2,2,-9,0,5,8.8515453,8.9830227,0,6,0,-7.6896949,0,-9,-9,2019,11,2,52,60,1,2,0,13.190978,13.190978,0,0,0,0,0,1,1,0,0,0,49.31,58.56,11.95,70.31,8.333333333333334,1,1,0,0,6,4,5,1,312.66666,-33613.887,-8905.9971,169790.09,228199.22,3381.3887 -5743,7067,12752,-9,12750,12751,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-878.96973,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,312.66666,-33613.887,-8905.9971,169790.09,228199.22,3381.3887 -5744,7068,12753,12755,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,7.066844,6.9846101,0,6,-8,3.8754265,0,2,3,2019,23,8,20,20,1,8,0,7.754045,7.754045,0,0,0,0,0,1,1,0,0,0,38.01,34.13,49.26,39.87,5,1,1,0,0,6,13,3,0,709.66669,130848.38,4005.1941,0,0,2564.4326 -5744,7068,12754,-9,12753,12755,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-929.16498,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,3,0,709.66669,130848.38,4005.1941,0,0,2564.4326 -5744,7068,12755,12753,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.0634251,8.1616411,0,6,8,-30.549351,0,-9,-9,2019,9,0,25,20,1,0,0,14.013626,14.013626,0,0,0,0,0,1,1,0,0,0,49.26,39.87,38.01,34.13,8.333333333333334,1,1,0,0,5,13,3,0,709.66669,130848.38,4005.1941,0,0,2564.4326 -5745,7069,12756,12757,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,6.7772336,8.4961414,8.8333397,34,6,91.955978,0,2,2,2019,6,0,2,4,1,0,0,53.295658,53.295658,0,0,0,0,14.5,0,0,0,8.1966333,8.8135128,60.02,56.42,57.06,57.76,10,1,1,0,0,11,5,5,1,450.5,857202.88,469856.34,244276.69,0,7041.5952 -5745,7069,12757,12756,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.6211987,8.6359215,0,35,-6,104.8255,0,3,3,2019,7,0,37,37,1,0,0,19.175365,19.175365,0,0,0,0,0,0,0,0,7.2538466,0,57.06,57.76,60.02,56.42,10,1,1,0,0,11,5,5,1,450.5,857202.88,469856.34,244276.69,0,7041.5952 -5746,7070,12758,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.9915538,6.1383047,0,0,-1017.5414,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,14.853607,5.4444995,134.61487,0,1,1,0,0,5.9924498,54,46,-9,-9,8,1,1,0,0,0,10,2,1,433,342372.38,165310.14,152280.05,0,1473.7922 -5747,7071,12759,12760,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.1202321,6.7392688,39,-10,63.639965,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,103.39556,0,71.5,1,1,0,6.7591763,7.1109858,57.83,39.53,41.83,54.77,6.666666666666667,1,1,0,0,0,7,2,0,637,982284.63,272445.78,386869.63,0,1797.4795 -5747,7071,12760,12759,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.1273994,5.3932738,32,10,-45.974846,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,5.2255511,4.9041991,41.83,54.77,57.83,39.53,10,1,1,0,0,0,7,2,0,637,982284.63,272445.78,386869.63,0,1797.4795 -5748,7072,12761,12762,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.8212185,9.0708981,0,30,2,-40.588043,0,3,3,2019,16,4,36,36,1,4,0,22.987999,22.987999,0,0,0,0,2,1,1,0,8.4554949,0,39.01,45.5,57.16,56.15,3.333333333333333,3,4,0,0,8,8,5,1,1153.6666,370796.63,11671.265,439685.25,187631.38,7477.856 -5748,7072,12762,12761,12766,-9,1,0,48,0,0,0,1,1,-9,0,4,9.3497553,9.437623,0,7,-2,30.461287,0,2,-9,2019,8,0,55,65,1,0,0,32.891888,32.891888,0,0,0,0,7,1,1,0,0,0,57.16,56.15,39.01,45.5,6.666666666666667,3,4,0,0,8,8,5,1,1153.6666,370796.63,11671.265,439685.25,187631.38,7477.856 -5748,7072,12763,-9,12762,12761,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-935.89069,-9,1,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.81,51.08,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,1153.6666,370796.63,11671.265,439685.25,187631.38,7477.856 -5748,7073,12764,-9,12762,12761,1,0,23,0,0,0,1,1,-9,0,4,7.2267466,7.2828765,0,0,0,-1063.225,0,1,1,2019,13,2,32,0,1,2,1,4.1399202,4.1399202,0,0,0,0,14.5,1,1,0,0,0,54.38,51.94,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,811,122562.9,0,0,0,679.34729 -5748,7074,12765,-9,12762,12761,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.808,-9,1,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,139,0,0,0,0,0 -5748,7075,12766,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.33603,8.2503519,0,0,-1055.527,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1243114,8.4873238,52,46,-9,-9,8,3,4,0,0,0,8,4,1,189,773325.44,494618.66,469382.03,0,2350.1406 -5749,7076,12767,12768,-9,-9,1,0,47,0,0,0,3,3,-9,0,5,7.4619856,7.782166,0,7,-2,26.387571,0,3,3,2019,12,2,20,25,1,2,0,7.9180293,7.9180293,0,0,0,0,0,1,1,0,0,0,49.76,56.93,45.6,49.54,8.333333333333334,1,1,0,0,8,4,5,1,2064.3333,215991.69,-6267.9648,97562.648,41928.207,3365.3169 -5749,7076,12768,12767,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.8674698,8.8032751,0,7,2,-77.913391,0,3,2,2019,13,3,36,36,1,3,0,22.273085,22.273085,0,0,0,0,0,1,1,0,4.1803336,0,45.6,49.54,49.76,56.93,6.666666666666667,1,1,0,0,9,4,5,1,2064.3333,215991.69,-6267.9648,97562.648,41928.207,3365.3169 -5749,7076,12769,-9,12767,12768,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-851.06458,1,3,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,3.8376923,0,31.31,64.07000000000001,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,2064.3333,215991.69,-6267.9648,97562.648,41928.207,3365.3169 -5750,7077,12770,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-902.67432,0,-9,-9,2019,10,1,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.44,58.7,-9,-9,3.333333333333333,1,1,1,0,5,1,1,0,944,486202.69,-91249.516,0,0,895.11572 -5750,7078,12771,-9,12770,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-906.30304,-9,3,-9,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,803,-167592.83,0,0,0,0 -5751,7079,12772,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.0195751,7.849412,0,2,-2,-.99563205,0,2,1,2019,5,0,48,48,1,0,0,7.9648318,7.9648318,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50,57,8.333333333333334,1,1,0,0,11,7,3,0,143,287180.81,-38666.051,0,0,1550.781 -5752,7080,12773,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1019.7506,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.04,16.08,-9,-9,5,1,1,0,0,3,12,1,0,689,-125565.4,0,0,0,811.46844 -5753,7081,12774,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.0003958,6.4101944,0,0,0,-941.46423,0,-9,-9,2019,11,0,12,13,1,0,0,6.2782016,6.2782016,0,0,0,0,0,1,1,0,0,0,35.44,55.47,-9,-9,6.666666666666667,1,1,0,0,13,2,2,0,713,-182474.44,45416.152,0,0,727.76727 -5753,7082,12775,-9,12774,-9,1,1,32,0,0,0,1,1,-9,1,4,0,0,0,0,0,-944.28143,0,3,-9,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,37,47.76,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,785,-21810.793,0,0,0,1813.5635 -5754,7083,12776,12777,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,7.8993192,7.8345714,0,10,-35,-5.9415483,0,-9,-9,2019,6,0,32,21,1,0,0,9.1956005,9.1956005,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,10,7,4,1,514.5,2043047,780481.88,380114.94,0,2981.7568 -5754,7083,12777,12776,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,7.5240245,7.4564333,10,35,-75.013054,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.9238596,7.490293,57.06,57.76,57.06,57.76,10,1,1,0,0,10,7,4,1,514.5,2043047,780481.88,380114.94,0,2981.7568 -5755,7084,12778,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.9358139,8.7229309,0,0,0,-894.82831,0,2,2,2019,4,0,67,60,1,0,0,14.886269,14.886269,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,397,1296942.8,64516.75,749371.06,129043.98,2755.4272 -5756,7085,12779,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1132.0758,-9,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.41,50.07,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,409,45937.465,0,0,0,1073.1803 -5757,7086,12780,12781,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,37,-3,-74.316185,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,0,0,0,7.2660437,0,48.21,50.73,39.19,43.1,3.333333333333333,1,1,0,0,8,1,3,0,451.5,937544.5,334811.34,156816.13,0,1685.5092 -5757,7086,12781,12780,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.3665814,7.8511548,7.1145058,37,3,-33.252895,0,2,2,2019,23,10,30,20,1,10,0,5.4907031,5.4907031,0,0,0,0,5.48,0,0,0,0,7.2270584,39.19,43.1,48.21,50.73,3.333333333333333,1,1,0,0,11,1,3,0,451.5,937544.5,334811.34,156816.13,0,1685.5092 -5758,7087,12782,12784,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,5.8385491,5.9987788,0,10,-2,-10.06632,-9,-9,-9,2019,19,7,7,0,1,7,0,7.0784121,7.0784121,0,0,0,0,0,1,1,0,0,0,44.26,17.69,56.91,49.54,8.333333333333334,1,1,0,0,9,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 -5758,7087,12783,-9,12782,12784,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1072.0262,-9,2,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 -5758,7087,12784,12782,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.1849852,8.3436394,0,10,2,-81.72821,0,2,2,2019,8,1,37,37,1,1,0,11.785122,11.785122,0,0,0,0,42,1,1,0,0,0,56.91,49.54,44.26,17.69,6.666666666666667,1,1,0,1,11,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 -5758,7087,12785,-9,12782,12784,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-970.21655,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,3,1,884,672182,29536.346,374120.31,126699.8,2777.4988 -5759,7088,12786,-9,-9,-9,1,0,93,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1031.9,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,2.7609921,77.027245,23.526176,0,1,1,0,4.0510745,0,37.56,54.25,-9,-9,10,1,1,0,0,0,10,1,1,684,349921.09,13796.667,0,0,-116.64148 -5760,7089,12787,12788,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,47,-5,-114.72819,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.75,25.8,43.5,27.4,8.333333333333334,1,1,0,0,0,11,3,1,671.5,867785,354650.19,110527.53,0,2311.4038 -5760,7089,12788,12787,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.9106054,7.8418384,47,5,220.34647,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,4.6893792,0,0,1,1,0,0,7.7052908,43.5,27.4,56.75,25.8,6.666666666666667,1,1,0,0,0,11,3,1,671.5,867785,354650.19,110527.53,0,2311.4038 -5761,7090,12789,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.1878686,7.4831862,0,0,-1030.4824,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3009648,7.6216607,57.16,56.15,-9,-9,10,1,1,0,0,10,9,3,1,2006,320032.84,388020.31,239919.69,0,1596.4325 -5762,7091,12790,12792,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.5045366,10.09654,0,23,3,45.919312,0,1,1,2019,12,0,40,60,1,0,0,42.709923,42.709923,0,0,0,0,0,0,0,0,0,0,51.66,54.88,44.71,42.94,8.333333333333334,1,1,0,0,10,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 -5762,7091,12791,-9,12792,12790,1,1,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-997.1012,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,47.86,-9,-9,5,1,1,0,0,0,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 -5762,7091,12792,12790,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.5292072,8.5485106,0,23,-3,-152.27676,0,1,1,2019,14,2,40,45,1,2,0,12.487957,12.487957,0,0,0,0,0,0,0,0,5.7590823,0,44.71,42.94,51.66,54.88,8.333333333333334,1,1,0,0,9,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 -5762,7091,12793,-9,12792,12790,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.9238,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,734.5,905049.5,128806.98,420322.44,0,6969.959 -5763,7092,12794,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-981.49384,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,16.214651,0,0,1,1,0,0,0,44.92,33.74,-9,-9,10,1,1,0,0,0,8,1,0,602,431562.94,0,363152.16,0,1577.0155 -5764,7093,12795,-9,12797,12796,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-820.00629,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,545.66669,128532.74,22880.365,303949.44,226925.45,3646.4641 -5764,7093,12796,12797,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.9529896,9.080739,0,5,-3,-17.762941,0,2,2,2019,12,0,41,45,1,0,0,17.800468,17.800468,0,0,0,0,0,1,1,0,0,0,34.51,57.34,54.74,57.22,5,1,1,0,0,5,12,5,1,545.66669,128532.74,22880.365,303949.44,226925.45,3646.4641 -5764,7093,12797,12796,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,7.6819186,8.0823374,0,5,3,-39.426193,0,-9,-9,2019,11,1,28,27,1,1,0,10.321267,10.321267,0,0,0,0,0,1,1,0,0,0,54.74,57.22,34.51,57.34,6.666666666666667,1,1,0,0,9,12,5,1,545.66669,128532.74,22880.365,303949.44,226925.45,3646.4641 -5765,7094,12798,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-942.11395,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.12,35.23,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,322,99179.094,0,0,0,769.01605 -5766,7095,12799,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.1571703,7.695118,0,0,-952.51831,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.518537,46.75,31.6,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,624,811285.44,157551.45,521598.38,0,1985.1454 -5766,7096,12800,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1038.5475,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,43.73,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,371,191868.13,0,0,0,875.68994 -5767,7097,12801,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.3778076,7.2218204,0,0,-1074.0049,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1768341,55.37,40.83,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,867,653479.19,0,0,0,1640.0846 -5767,7098,12802,-9,12801,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-954.1933,0,3,-9,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,37.64,-9,-9,5,1,1,1,0,10,4,1,1,1006,5787.771,0,163467.97,2252.3325,647.29828 -5768,7099,12803,12804,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.0240164,7.8555422,0,3,4,-156.02852,0,-9,-9,2019,10,1,45,45,1,1,0,7.5980864,7.5980864,0,0,0,0,0,1,1,0,0,0,43.12,58.55,41.3,60.77,3.333333333333333,1,1,0,0,2,13,3,0,837.66669,86241.68,49880.828,224617.02,138745.27,3211.5188 -5768,7099,12804,12803,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,7.1942515,7.3560109,0,3,-4,34.935741,0,2,-9,2019,11,0,21,21,1,0,0,6.4786067,6.4786067,0,0,0,0,0,1,1,0,0,0,41.3,60.77,43.12,58.55,5,1,1,0,0,6,13,3,0,837.66669,86241.68,49880.828,224617.02,138745.27,3211.5188 -5768,7099,12805,-9,12804,12803,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.9867,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,837.66669,86241.68,49880.828,224617.02,138745.27,3211.5188 -5769,7100,12806,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.7406592,7.1886554,6.1767254,0,0,-1058.5637,0,2,2,2019,9,0,16,16,1,0,0,6.6804156,6.6804156,0,0,0,0,74.5,0,0,0,5.372654,6.2984438,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,383,852826.19,287491.53,576201.13,0,1169.0471 -5770,7101,12807,-9,12809,-9,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-950.84827,-9,1,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,669.33331,235210.55,288107.44,364546.94,233225.48,2641.3799 -5770,7101,12808,-9,12809,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.17145,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,669.33331,235210.55,288107.44,364546.94,233225.48,2641.3799 -5770,7101,12809,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.9811211,8.7842226,0,0,0,-968.6134,0,1,2,2019,7,0,47,47,1,0,0,14.919831,14.919831,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,669.33331,235210.55,288107.44,364546.94,233225.48,2641.3799 -5771,7102,12810,12811,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.0445566,7.9366179,0,30,-3,87.219353,0,3,3,2019,12,1,32,32,1,1,0,10.845163,10.845163,0,0,0,0,0,1,1,0,3.9093227,0,48.53,52.16,49,50,6.666666666666667,1,1,0,0,12,4,4,1,489.66666,20986.969,12088.272,152259.45,35570.176,2950.3545 -5771,7102,12811,12810,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,7.8527055,7.9723458,0,9,3,22.871994,0,3,3,2019,11,0,36,36,1,1,0,9.0745554,9.0745554,0,0,0,0,0,1,1,0,3.2598333,0,49,50,48.53,52.16,7,1,1,0,0,10,4,4,1,489.66666,20986.969,12088.272,152259.45,35570.176,2950.3545 -5771,7102,12812,-9,12810,12811,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.68335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,489.66666,20986.969,12088.272,152259.45,35570.176,2950.3545 -5772,7103,12813,12814,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,3,8,68.701653,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,1.048224,14.5,1,1,0,0,0,62.49,55.09,24.45,26.89,6.666666666666667,1,1,0,0,2,2,2,1,210,200473.5,35403.887,127993.28,0,2097.7607 -5772,7103,12814,12813,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,6.4239821,6.2202597,3,-8,-64.101593,0,3,3,2019,26,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.0150156,24.45,26.89,62.49,55.09,0,1,1,0,0,0,2,2,1,210,200473.5,35403.887,127993.28,0,2097.7607 -5773,7104,12815,-9,12816,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1035.2799,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,967,-50397.18,0,0,0,2118.7854 -5773,7104,12816,-9,-9,-9,1,0,57,0,1,0,3,3,-9,0,2,0,2.9884751,3.6996281,0,0,-1002.7372,0,-9,-9,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,3.1952386,45.41,30.34,-9,-9,3.333333333333333,1,1,0,1,0,12,2,0,967,-50397.18,0,0,0,2118.7854 -5773,7105,12817,-9,12816,-9,1,1,18,0,1,0,3,3,1,1,4,0,0,0,0,0,-1079.6781,-9,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,12,1,0,220,-150042.48,0,0,0,730.05475 -5774,7106,12818,12819,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.2164536,8.1963949,40,0,-.95162982,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.305831,8.119298,54.96,53.17,57.16,56.15,10,1,1,0,0,8,2,4,1,1591.5,1387780,1097171.8,210590.09,0,3888.2422 -5774,7106,12819,12818,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,6.1414208,7.878921,7.6532931,7,0,-40.805935,0,2,2,2019,7,0,30,22,1,0,0,1.714687,1.714687,0,0,0,0,0,0,0,0,6.1607571,7.6041813,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,9,2,4,1,1591.5,1387780,1097171.8,210590.09,0,3888.2422 -5775,7107,12820,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.07526,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,49.4,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,792,-37939.996,-11504.299,134480.72,151162.69,348.75964 -5775,7107,12821,-9,-9,12820,1,1,17,0,0,1,2,0,0,0,5,0,5.7340508,5.8061643,0,0,-922.8941,-9,3,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.3525257,0,51.73,58.82,-9,-9,10,1,1,0,0,0,13,1,0,792,-37939.996,-11504.299,134480.72,151162.69,348.75964 -5776,7108,12822,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-987.672,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,2,0,152,0,0,0,0,1529.1237 -5777,7109,12823,-9,12825,12826,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.8894,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 -5777,7109,12824,-9,12825,12826,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.7878,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 -5777,7109,12825,12826,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.5347013,8.1452198,0,13,0,68.270897,0,1,1,2019,7,0,9,12,1,0,0,51.597446,51.597446,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.89,51.08,8.333333333333334,4,5,0,0,9,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 -5777,7109,12826,12825,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,9.0824146,8.8564892,0,13,0,-64.863426,0,1,2,2019,14,2,40,48,1,2,0,25.986692,25.986692,0,0,0,0,0,1,1,0,0,0,47.89,51.08,54.2,57.49,3.333333333333333,4,5,0,0,8,2,5,1,1146.5,415727.56,323383.25,224717.47,130736.63,5093.6714 -5778,7110,12827,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.0024,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.5283829,0,56,39.41,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,539,0,0,0,0,946.04065 -5779,7111,12828,12829,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,6.4752078,6.5300126,62,0,-112.90051,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,5.5767441,3.6717432,49.940613,0,1,1,0,0,6.033453,38,39.66,56.19,41.56,8.333333333333334,1,1,0,0,0,5,2,1,466.5,556587.5,167026.42,243251.44,0,2713.6011 -5779,7111,12829,12828,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.0177159,6.9468369,62,0,45.628773,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,7.5638227,6.9817944,56.19,41.56,38,39.66,8.333333333333334,1,1,0,0,2,5,2,1,466.5,556587.5,167026.42,243251.44,0,2713.6011 -5780,7112,12830,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,1,0,6.3959713,6.0993876,0,0,-1025.9724,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.696156,6.4808383,50.78,27.5,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1993,74109.344,2682.3933,245432.45,0,969.64612 -5781,7113,12831,12832,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,4.2224598,4.6571393,10,0,45.337009,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,4.6219664,4.7748795,52.69,45.85,57.62,43.72,8.333333333333334,1,1,0,0,5,12,2,1,137.5,-6251.3252,17108.484,0,0,1276.5857 -5781,7113,12832,12831,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,10,0,146.01642,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.62,43.72,52.69,45.85,10,1,1,0,0,2,12,2,1,137.5,-6251.3252,17108.484,0,0,1276.5857 -5782,7114,12833,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.986083,8.1458158,0,0,0,-1015.8735,0,2,2,2019,28,11,50,50,1,11,0,7.0540471,7.0540471,0,0,0,0,0,0,0,0,3.1156545,0,44.05,39.93,-9,-9,1.666666666666667,2,3,0,0,8,6,4,1,365,304643.28,105944.35,0,0,2094.9988 -5783,7115,12834,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,8.5815258,8.7410469,0,0,0,-1039.2877,0,1,2,2019,14,3,40,43,1,3,0,12.206049,12.206049,0,0,0,0,0,0,0,0,1.0778351,0,36.97,53.86,-9,-9,5,1,1,0,0,7,8,4,0,825,105268.94,22510.932,0,0,1887.6646 -5784,7116,12835,12836,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.7097759,8.7364559,0,6,1,-109.56451,0,-9,-9,2019,13,1,37,37,1,1,0,17.330725,17.330725,0,0,0,0,0,0,0,0,0,0,50.58,56.41,39.06,60.84,8.333333333333334,4,5,0,0,8,8,5,0,901.5,-38604.895,-510.1875,261397.81,143969.84,2775.4639 -5784,7116,12836,12835,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,7.7472334,8.0051422,0,6,-1,106.83294,0,3,3,2019,12,0,32,31,1,0,0,8.7849512,8.7849512,0,0,0,0,0,0,0,0,3.1900296,0,39.06,60.84,50.58,56.41,5,1,1,0,0,8,8,5,0,901.5,-38604.895,-510.1875,261397.81,143969.84,2775.4639 -5785,7117,12837,-9,12838,12839,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.5186,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,3,1,840.33331,127109.98,20475.443,453505.44,238088.53,2373.2402 -5785,7117,12838,12839,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,6.1753278,6.1647959,0,4,0,-14.777083,0,-9,-9,2019,9,0,20,25,1,0,0,3.5612571,3.5612571,0,0,0,0,0,1,1,0,3.4838011,0,57.33,53.46,57.06,57.76,10,1,1,0,0,10,9,3,1,840.33331,127109.98,20475.443,453505.44,238088.53,2373.2402 -5785,7117,12839,12838,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.2074451,8.2537613,0,4,0,-48.575741,0,-9,-9,2019,6,0,30,30,1,0,0,15.602067,15.602067,0,0,0,0,0,1,1,0,.12919267,0,57.06,57.76,57.33,53.46,10,1,1,0,0,10,9,3,1,840.33331,127109.98,20475.443,453505.44,238088.53,2373.2402 -5786,7118,12840,12841,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.526906,9.9285517,0,11,-1,121.37729,0,-9,-9,2019,11,2,45,42,1,2,0,41.476379,41.476379,0,0,0,0,0,1,1,0,0,0,42.07,56.45,44.55,36.49,6.666666666666667,1,1,0,0,6,6,5,1,505.5,3800800.5,31290.176,342544.75,0,6198.1606 -5786,7118,12841,12840,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.3636484,8.5471649,0,26,1,25.037506,0,3,3,2019,19,7,41,40,1,7,0,11.832867,11.832867,0,0,0,0,0,1,1,0,2.673682,0,44.55,36.49,42.07,56.45,3.333333333333333,1,1,0,0,11,6,5,1,505.5,3800800.5,31290.176,342544.75,0,6198.1606 -5786,7119,12842,-9,12841,12840,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-934.8111,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,1982,69055.43,0,0,0,0 -5786,7120,12843,-9,12841,12840,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-875.85571,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.1447191,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,301,-204189.44,0,0,0,513.94287 -5787,7121,12844,12845,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-56.171703,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.8063266,0,55.51,51.57,57.33,53.46,1.666666666666667,1,1,0,0,0,10,2,1,1351,720644,207999.28,441539.47,0,1339.3961 -5787,7121,12845,12844,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.9333797,7.0057821,7,3,60.508438,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7754188,7.2451739,57.33,53.46,55.51,51.57,8.333333333333334,1,1,0,0,0,10,2,1,1351,720644,207999.28,441539.47,0,1339.3961 -5788,7122,12846,12847,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,8,10,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,53,47,31.62,18.37,7,1,1,0,0,0,2,1,0,602,74003.258,24766.566,211947.11,0,1711.3967 -5788,7122,12847,12846,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,42,-10,0,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.62,18.37,53,47,10,1,1,0,0,0,2,1,0,602,74003.258,24766.566,211947.11,0,1711.3967 -5789,7123,12848,12850,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9902744,9.0464659,0,15,4,-62.96423,0,2,2,2019,9,0,40,42,1,0,0,21.301897,21.301897,0,0,0,0,0,1,1,0,5.1387587,0,58.89,48.6,54.2,57.49,8.333333333333334,1,1,0,0,10,4,5,1,977,1030835,618712.94,410120.59,78378.031,3292.6997 -5789,7123,12849,-9,12850,12848,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.67334,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,977,1030835,618712.94,410120.59,78378.031,3292.6997 -5789,7123,12850,12848,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.3445277,7.480113,0,15,-4,49.355518,0,3,2,2019,11,0,23,0,1,0,0,7.9049726,7.9049726,0,0,0,0,0,1,1,0,6.3142786,0,54.2,57.49,58.89,48.6,8.333333333333334,1,1,0,0,3,4,5,1,977,1030835,618712.94,410120.59,78378.031,3292.6997 -5790,7124,12851,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5278854,8.4491482,0,0,0,-946.53503,0,3,3,2019,11,0,48,45,1,0,0,12.017463,12.017463,0,0,0,0,0,0,0,0,4.1770983,0,47.8,43.06,-9,-9,5,1,1,0,0,7,7,4,0,1727,120495.02,113305.61,0,0,1424.123 -5791,7125,12852,12853,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,9.2877941,9.5506535,0,7,2,61.830273,0,2,2,2019,7,0,63,40,1,0,0,15.632376,15.632376,0,0,0,0,0,0,0,0,0,0,30.76,57.24,38.63,63.11,8.333333333333334,1,1,0,0,7,1,5,1,535.5,348268.44,16204.254,176096.28,75761.094,4541.6997 -5791,7125,12853,12852,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.6865001,7.5061436,0,7,-2,7.8735433,0,3,2,2019,17,6,30,35,1,6,0,8.8025455,8.8025455,0,0,0,0,0,0,0,0,0,0,38.63,63.11,30.76,57.24,6.666666666666667,1,1,0,1,6,1,5,1,535.5,348268.44,16204.254,176096.28,75761.094,4541.6997 -5792,7126,12854,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,5.6832919,5.7225404,0,0,-1010.3139,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,0,.64621305,0,1,1,0,4.0916038,5.4180737,31.01,21.33,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,157,8578.5166,2816.4578,0,0,1212.9878 -5793,7127,12855,-9,12856,12857,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.0447,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1073,306380.13,-28409.674,235914.89,191273.91,3061.0789 -5793,7127,12856,12857,-9,-9,1,0,25,0,1,0,2,2,-9,0,5,8.2773581,7.9073181,0,2,-1,-8.6881018,0,-9,-9,2019,19,6,72,38,1,6,0,6.0706382,6.0706382,0,0,0,0,0,1,1,0,0,0,54.1,59.11,38.65,54.1,8.333333333333334,1,1,0,0,2,11,4,1,1073,306380.13,-28409.674,235914.89,191273.91,3061.0789 -5793,7127,12857,12856,-9,-9,1,1,26,0,1,0,2,2,-9,0,5,8.0253735,7.9463992,0,2,1,79.861809,0,-9,-9,2019,10,1,37,37,1,1,0,10.973743,10.973743,0,0,0,0,0,1,1,0,0,0,38.65,54.1,54.1,59.11,6.666666666666667,1,1,0,0,8,11,4,1,1073,306380.13,-28409.674,235914.89,191273.91,3061.0789 -5794,7128,12858,12859,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5492263,7.3241735,0,38,0,43.442509,0,3,3,2019,13,2,20,20,1,2,0,9.6327887,9.6327887,0,0,0,0,0,0,0,0,2.2051914,0,43.9,57.01,57.16,56.15,6.666666666666667,3,4,0,0,12,8,5,1,448,515264.5,92145.266,414766.72,0,2001.6965 -5794,7128,12859,12858,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.5117588,8.5794249,0,38,0,-38.062187,0,2,3,2019,6,0,37,37,1,0,0,17.387915,17.387915,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.9,57.01,8.333333333333334,1,1,0,0,12,8,5,1,448,515264.5,92145.266,414766.72,0,2001.6965 -5795,7129,12860,12861,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.858871,7.0594568,38,-2,69.477348,0,-9,-9,2019,27,12,0,18,4,12,0,0,0,1,0,14.2349,0,0,1,1,0,4.1483135,7.1597753,20.41,47.72,39.26,60.13,6.666666666666667,1,1,0,0,12,9,4,1,1010,1773631.5,949730.38,599961.88,0,3937.6472 -5795,7129,12861,12860,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.5219345,8.4572296,39,2,57.912006,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.417141,8.5224304,39.26,60.13,20.41,47.72,8.333333333333334,1,1,0,0,7,9,4,1,1010,1773631.5,949730.38,599961.88,0,3937.6472 -5796,7130,12862,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.7789712,8.7746058,8.5061579,0,0,-989.34381,0,3,3,2019,20,6,40,30,1,6,0,9.0195026,9.0195026,0,0,0,0,0,1,1,0,6.3177996,8.5384588,35.63,62.19,-9,-9,6.666666666666667,1,1,0,0,6,11,5,1,143,3306656,115751.34,779187.5,93253.742,4065.1895 -5797,7131,12863,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.6698399,7.7160606,0,0,-1064.6014,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.1071591,7.7179465,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,830,53657.035,433037.16,0,0,1802.6646 -5798,7132,12864,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.2636995,6.9295201,0,0,-996.39496,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5923581,7.1667256,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,3581,379746.66,194895.72,199047.75,0,974.28522 -5799,7133,12865,-9,12867,-9,1,1,17,1,2,1,2,0,-9,0,5,0,0,0,0,0,-947.06677,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,-9,-9,10,3,4,0,0,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 -5799,7133,12866,-9,12867,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.5859,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 -5799,7133,12867,-9,-9,-9,1,0,37,1,2,0,3,3,-9,0,4,0,0,0,0,0,-960.26996,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,3,4,0,1,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 -5799,7133,12868,-9,12867,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.6476,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,1,0,377.25,82049.047,0,0,0,1873.2065 -5799,7134,12869,-9,12867,-9,1,1,18,1,2,1,2,0,0,0,5,0,0,0,0,0,-979.78308,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,-9,-9,8.333333333333334,3,4,0,0,0,5,1,0,757,247867.31,0,0,0,0 -5800,7135,12870,12871,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,7.8829002,7.6717811,0,2,7,-7.4966478,0,-9,-9,2019,10,0,39,0,1,0,0,6.9950294,6.9950294,0,0,0,0,0,1,1,0,0,0,54.2,57.49,46.67,55.57,6.666666666666667,1,1,0,0,0,9,4,0,1036,135979.55,29148.123,465761.75,208335.47,2748.9832 -5800,7135,12871,12870,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,7.8966403,7.6882367,0,2,-7,-60.400715,0,-9,-9,2019,7,0,44,44,1,0,0,7.6509285,7.6509285,0,0,0,0,0,1,1,0,.19338506,0,46.67,55.57,54.2,57.49,8.333333333333334,1,1,0,0,4,9,4,0,1036,135979.55,29148.123,465761.75,208335.47,2748.9832 -5800,7135,12872,-9,12871,12870,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.8579,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,1036,135979.55,29148.123,465761.75,208335.47,2748.9832 -5801,7136,12873,12874,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3299713,9.6030512,0,8,4,-27.824856,0,-9,-9,2019,7,0,48,45,1,0,0,27.506605,27.506605,0,0,0,0,2,0,0,0,5.0234237,0,50.81,51.08,57.34,31.86,10,1,1,0,0,6,1,5,1,568.5,1216308.5,860896.5,325196.94,0,4991.5239 -5801,7136,12874,12873,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8950987,7.648253,0,28,-4,-58.388073,0,2,2,2019,9,0,32,32,1,0,0,14.982302,14.982302,0,0,0,0,7,0,0,0,3.5951753,0,57.34,31.86,50.81,51.08,8.333333333333334,1,1,0,0,10,1,5,1,568.5,1216308.5,860896.5,325196.94,0,4991.5239 -5801,7137,12875,-9,12874,12873,1,1,18,0,0,0,2,2,1,0,4,6.420876,6.601069,0,0,0,-1079.2272,-9,2,1,2019,11,1,22,0,1,1,1,3.573077,3.573077,0,0,0,0,0,0,0,0,.66287142,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,153,-193330.8,0,0,0,890.10785 -5802,7138,12876,12877,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8757868,8.5677214,0,29,-3,-31.167067,0,1,3,2019,18,8,43,43,1,8,0,13.145671,13.145671,0,0,0,0,42,0,0,0,6.2492733,0,44.26,59.43,60.12,54.8,8.333333333333334,1,1,0,0,9,13,5,1,184,648177.63,55138.367,175151.97,6215.0078,4984.2173 -5802,7138,12877,12876,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4488821,8.9520121,0,29,3,-100.29134,0,3,3,2019,7,0,37,39,1,0,0,17.373713,17.373713,0,0,0,0,0,0,0,0,4.9765286,0,60.12,54.8,44.26,59.43,8.333333333333334,1,1,0,0,9,13,5,1,184,648177.63,55138.367,175151.97,6215.0078,4984.2173 -5802,7139,12878,-9,12876,12877,1,1,24,0,0,1,2,0,0,0,5,0,0,0,0,0,-1080.0446,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,476,0,0,0,0,0 -5802,7140,12879,-9,12876,12877,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-943.42676,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.44697368,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,2,13,1,1,1445,10511.608,0,0,0,261.83694 -5803,7141,12880,12881,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.2328067,6.094676,52,7,-75.463676,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.48876065,6.3788428,54.77,55.87,54.21,49.46,8.333333333333334,1,1,0,0,0,4,2,0,494.5,500453.63,142496,258356.44,0,2311.8179 -5803,7141,12881,12880,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.8402343,7.2157774,5.6817808,52,-7,-126.28991,0,3,3,2019,11,1,10,10,1,1,0,8.8203545,8.8203545,0,0,0,0,0,1,1,0,3.7982135,6.1781626,54.21,49.46,54.77,55.87,10,1,1,0,0,8,4,2,0,494.5,500453.63,142496,258356.44,0,2311.8179 -5804,7142,12882,12887,-9,-9,1,1,40,0,5,0,3,3,-9,1,2,7.4958601,7.3872514,0,3,-3,-2.6620352,0,3,3,2019,12,0,30,30,1,0,0,7.5689082,7.5689082,0,0,0,0,0,1,0,1,.95521736,0,37.83,42.51,46.09,55.59,8.333333333333334,2,3,0,0,1,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 -5804,7142,12883,-9,12887,12882,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-977.47546,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,59,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 -5804,7142,12884,-9,12887,12882,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1142.4124,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 -5804,7142,12885,-9,12887,12882,1,0,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-953.36072,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 -5804,7142,12886,-9,12887,12882,1,1,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-993.86615,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 -5804,7142,12887,12882,-9,-9,1,0,43,0,5,0,2,2,-9,0,4,7.0709534,6.8127189,0,10,3,14.416426,0,2,2,2019,6,0,16,16,1,0,0,7.4789052,7.4789052,0,0,0,0,14.5,1,0,1,2.2409494,0,46.09,55.59,37.83,42.51,8.333333333333334,2,3,0,0,12,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 -5804,7142,12888,-9,12887,12882,1,0,10,0,5,1,3,0,-9,0,5,0,0,0,0,0,-988.36841,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,2,1,544.28571,226412.8,267141.13,0,0,3007.9456 -5805,7143,12889,12893,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.6295385,9.9154253,0,4,3,-72.840866,0,2,2,2019,10,0,42,40,1,0,0,46.09391,46.09391,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,6.666666666666667,1,1,0,0,10,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 -5805,7143,12890,-9,12893,12889,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.1,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 -5805,7143,12891,-9,12893,12889,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.0925,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 -5805,7143,12892,-9,12893,12889,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.90198,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 -5805,7143,12893,12889,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.5161753,7.7461729,0,4,-3,18.289425,-9,2,2,2019,8,0,20,0,1,0,0,10.545601,10.545601,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,12,8,5,1,881.59998,1172640.5,44797.402,639083.63,138497.22,14650.848 -5806,7144,12894,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,8.5117273,8.0806141,0,0,0,-981.38531,0,2,-9,2019,8,0,60,42,1,0,0,7.3698258,7.3698258,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,10,4,4,0,461,636236,88799.82,121088.9,66484.063,1129.9371 -5807,7145,12895,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.0932946,7.384428,0,0,-1031.0027,0,1,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.1589241,7.0591722,44.25,56.64,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,158,954593.63,238402.44,149612.11,0,1414.4742 -5808,7146,12896,12897,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.972436,9.0006752,0,8,-11,39.602451,0,2,1,2019,7,0,60,60,1,0,0,13.462276,13.462276,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,8,6,5,1,1891,640432.63,252619.41,91146.938,59743.047,3607.959 -5808,7146,12897,12896,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.652144,5.1359377,8,11,-64.769485,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1689386,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,7,6,5,1,1891,640432.63,252619.41,91146.938,59743.047,3607.959 -5809,7147,12898,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.7369204,8.9268513,0,0,0,-984.92157,0,1,1,2019,12,0,40,52,1,0,0,18.153278,18.153278,0,0,0,0,0,0,0,0,7.1599326,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,290,46853.211,-34242.578,0,0,2765.4912 -5810,7148,12899,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.9113641,8.0926905,0,0,-1041.0204,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1293392,51.66,54.88,-9,-9,10,1,1,0,0,5,11,4,1,4046,369138.22,280867.09,103570.34,0,2344.1804 -5810,7149,12900,-9,-9,12899,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-920.11169,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,471,97362.195,0,0,0,0 -5810,7150,12901,-9,-9,12899,1,0,25,0,0,0,1,1,-9,0,3,8.1632748,7.9910622,0,0,0,-1024.366,0,-9,1,2019,8,0,37,30,1,0,0,10.828501,10.828501,0,0,0,0,0,1,1,0,3.3177629,0,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,2,11,4,1,1137,-122973.54,-95931.672,0,0,1547.2245 -5811,7151,12902,12903,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,53,0,19.990227,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.78,39.92,45.31,34.97,8.333333333333334,1,1,0,0,0,12,3,1,823.5,1474052.3,346873.91,655530.13,0,1959.3208 -5811,7151,12903,12902,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,8.0207319,7.840836,53,0,-55.682663,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7179542,45.31,34.97,50.78,39.92,5,1,1,0,0,0,12,3,1,823.5,1474052.3,346873.91,655530.13,0,1959.3208 -5812,7152,12904,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.401866,8.3155708,0,0,0,-944.48358,0,2,2,2019,9,0,37,42,1,0,0,14.224053,14.224053,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,567,339177.94,149665.81,392428.97,191345.14,1773.9344 -5813,7153,12905,12906,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.250052,6.61374,31,9,-8.0920763,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0843167,6.6676812,51.41,56.15,44.85,53.68,8.333333333333334,1,1,0,0,0,4,2,1,114,474531,141133.13,131608.47,0,1943.8052 -5813,7153,12906,12905,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6628385,6.8023124,31,0,-49.54388,0,2,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.6112041,44.85,53.68,51.41,56.15,3.333333333333333,1,1,0,0,0,4,2,1,114,474531,141133.13,131608.47,0,1943.8052 -5814,7154,12907,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,4.7119865,4.7800269,0,0,-884.63287,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,6.7121701,0,0,1,1,0,4.379704,5.0952158,64.2,15.57,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,605,123244.33,127419.96,0,0,275.1246 -5815,7155,12908,12909,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1674681,8.1582079,0,6,3,-18.984707,0,1,2,2019,13,1,40,39,1,1,0,10.609734,10.609734,0,0,0,0,0,0,0,0,.60917974,0,41.47,58.08,28.58,50.5,8.333333333333334,1,1,0,0,9,12,4,0,474,-24313.168,167995.72,0,0,2924.5269 -5815,7155,12909,12908,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,8.0813217,8.0792284,0,6,-3,3.9030252,0,-9,-9,2019,17,5,38,37,1,5,0,9.3028755,9.3028755,0,0,0,0,0,0,0,0,0,0,28.58,50.5,41.47,58.08,3.333333333333333,4,5,0,0,3,12,4,0,474,-24313.168,167995.72,0,0,2924.5269 -5816,7156,12910,-9,12912,12914,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.9578,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 -5816,7156,12911,-9,12912,12914,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-976.38361,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 -5816,7156,12912,12914,-9,-9,1,0,32,2,3,0,2,2,-9,0,4,7.3922348,7.2760801,0,6,-3,-108.50383,0,-9,-9,2019,14,4,20,18,1,4,0,10.930231,10.930231,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.24,58.84,8.333333333333334,1,1,0,0,7,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 -5816,7156,12913,-9,12912,12914,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-928.42224,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 -5816,7156,12914,12912,-9,-9,1,1,35,2,3,0,2,2,-9,0,4,8.8883238,8.8119411,0,6,3,-52.349781,0,2,2,2019,9,0,35,37,1,0,0,17.376993,17.376993,0,0,0,0,0,1,1,0,0,0,51.24,58.84,44.02,60.7,8.333333333333334,1,1,0,0,7,2,4,0,506.60001,66204.672,5435.6763,0,0,4378.7871 -5817,7157,12915,12916,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.4853086,8.2045803,0,4,-5,106.9734,0,3,3,2019,9,2,37,39,1,2,0,11.782998,11.782998,0,0,0,0,0,0,0,0,0,0,50.89,30.4,51,49,8.333333333333334,1,1,0,0,9,8,4,1,324.5,1717453.8,742062.63,603297.38,0,2232.7556 -5817,7157,12916,12915,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.9739246,8.0200319,0,4,5,44.516537,0,3,3,2019,10,0,32,39,1,1,0,8.9790096,8.9790096,0,0,0,0,0,0,0,0,0,0,51,49,50.89,30.4,7,1,1,0,0,1,8,4,1,324.5,1717453.8,742062.63,603297.38,0,2232.7556 -5818,7158,12917,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.9066734,7.0876527,0,0,-1062.6642,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.9595046,53,45,-9,-9,8,1,1,0,0,0,9,2,1,248,382792.06,-36601.961,249153.22,0,1024.0166 -5819,7159,12918,-9,12919,-9,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-826.62897,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,0,0,0,10,2,0,392,-63543.754,0,0,0,1074.6189 -5819,7159,12919,-9,12921,12920,1,0,41,0,0,0,3,3,-9,0,5,6.7448602,6.8707232,0,0,0,-1171.9525,0,2,2,2019,8,3,10,10,1,3,0,15.150648,15.150648,0,0,0,0,0,1,1,0,0,0,56.18,48.99,-9,-9,0,3,4,0,0,8,10,2,0,392,-63543.754,0,0,0,1074.6189 -5819,7160,12920,12921,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,46,10,0,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,34.21,53.51,7,4,2,0,0,0,10,1,0,623,-205682.72,95047.258,240409.17,0,541.12512 -5819,7160,12921,12920,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,0,0,46,-10,0,-9,-9,-9,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,53.51,54,46,0,3,4,0,0,0,10,1,0,623,-205682.72,95047.258,240409.17,0,541.12512 -5820,7161,12922,-9,12923,12924,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.8859,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,1372.6666,1151507.8,0,313622.97,163991.09,2446.8833 -5820,7161,12923,12924,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,7.5316076,7.6353512,0,13,-4,-67.555336,0,2,3,2019,3,0,25,24,1,0,0,8.5899534,8.5899534,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.43,58.05,8.333333333333334,1,1,0,0,9,7,4,0,1372.6666,1151507.8,0,313622.97,163991.09,2446.8833 -5820,7161,12924,12923,-9,-9,1,1,34,0,1,0,2,2,-9,0,5,8.3407936,8.2886772,0,13,4,7.919488,0,-9,2,2019,8,0,37,37,1,0,0,10.66685,10.66685,0,0,0,0,0,1,1,0,0,0,59.43,58.05,57.06,57.76,8.333333333333334,1,1,0,0,9,7,4,0,1372.6666,1151507.8,0,313622.97,163991.09,2446.8833 -5821,7162,12925,12927,-9,-9,1,0,46,0,2,0,1,1,-9,0,1,8.491046,8.5260706,0,9,-6,-.31505433,-9,2,2,2019,11,3,31,0,1,3,0,19.157333,19.157333,0,0,0,0,0,1,1,0,1.9333267,0,50.61,19.04,48.15,38.74,6.666666666666667,1,1,0,0,9,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 -5821,7162,12926,-9,12925,12927,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.12903,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 -5821,7162,12927,12925,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,7.8495398,8.2098398,0,8,6,-21.001102,-9,3,3,2019,9,0,41,0,1,0,0,7.9498935,7.9498935,0,0,0,0,0,1,1,0,0,0,48.15,38.74,50.61,19.04,8.333333333333334,1,1,0,0,8,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 -5821,7162,12928,-9,12925,12927,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.74304,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,659,478839.16,84042.469,484095.91,0,3927.0476 -5822,7163,12929,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.6257086,6.5752702,0,0,-985.11682,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.1184487,6.70047,44.63,45.97,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,466,69772.445,69648.039,0,0,1913.3787 -5823,7164,12930,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,6.7533264,6.5405722,0,0,0,-980.93445,0,2,2,2019,15,3,28,28,1,3,0,3.8246529,3.8246529,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,1,11,9,2,0,754,182091.69,0,0,0,1347.9651 -5823,7164,12931,-9,12930,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.0057,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,754,182091.69,0,0,0,1347.9651 -5824,7165,12932,12934,-9,-9,1,1,39,0,2,0,3,3,-9,0,3,8.6681032,8.5954533,0,8,6,-164.60983,0,-9,-9,2019,12,0,55,55,1,0,0,10.42254,10.42254,0,0,0,0,0,1,1,0,0,0,51.41,56.15,35.84,61.77,6.666666666666667,1,1,0,0,9,8,4,1,524.5,76104.727,0,0,0,3231.21 -5824,7165,12933,-9,12934,12932,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.5121,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,524.5,76104.727,0,0,0,3231.21 -5824,7165,12934,12932,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.852561,7.9046688,0,8,-6,61.164051,0,2,3,2019,14,2,28,35,1,2,0,9.5885878,9.5885878,0,0,0,0,0,1,1,0,0,0,35.84,61.77,51.41,56.15,6.666666666666667,1,1,0,0,9,8,4,1,524.5,76104.727,0,0,0,3231.21 -5824,7165,12935,-9,12934,12932,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.8867,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,524.5,76104.727,0,0,0,3231.21 -5825,7166,12936,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,4.9977732,4.8618932,0,0,-1062.5903,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.8867521,51,46,-9,-9,7,1,1,0,0,4,11,2,1,359,373148,0,339917.31,0,1197.5902 -5826,7167,12937,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1024.183,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,1,13,1,0,600,-12443.933,0,121574.64,0,818.70569 -5827,7168,12938,12939,-9,12940,1,0,24,0,0,0,2,2,-9,0,3,7.7637081,7.9553695,0,2,-2,-115.12503,0,-9,2,2019,8,0,40,40,1,0,0,8.3243723,8.3243723,0,0,0,0,0,0,0,0,1.4360199,0,52.93,52.64,57.06,57.76,8.333333333333334,1,1,0,0,7,2,4,1,480.5,-148628.89,3209.0879,146039.84,126799.8,2582.0278 -5827,7168,12939,12938,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.1699629,7.9609213,0,2,2,22.050037,0,-9,-9,2019,7,0,38,38,1,0,0,9.6657619,9.6657619,0,0,0,0,0,0,0,0,2.9467921,0,57.06,57.76,52.93,52.64,8.333333333333334,1,1,0,0,9,2,4,1,480.5,-148628.89,3209.0879,146039.84,126799.8,2582.0278 -5827,7169,12940,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6701746,8.453743,0,0,0,-896.58276,0,-9,-9,2019,9,0,40,40,1,1,0,12.068637,12.068637,0,0,0,0,0,0,0,0,3.7333066,0,52,55,-9,-9,8,4,6,0,0,1,2,5,1,348,135530.97,-34670.477,0,0,2470.9749 -5828,7170,12941,12942,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.1281395,8.3191223,0,44,4,-3.5843916,0,3,3,2019,7,0,40,40,1,0,0,9.3268719,9.3268719,0,0,0,0,0,1,1,0,0,0,60.65,38.18,57.16,56.15,8.333333333333334,1,1,0,0,13,13,3,1,390.5,1289602.9,854938.56,511965.5,0,2384.3418 -5828,7170,12942,12941,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,44,-4,67.629074,0,2,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.1675518,0,57.16,56.15,60.65,38.18,8.333333333333334,1,1,0,0,12,13,3,1,390.5,1289602.9,854938.56,511965.5,0,2384.3418 -5829,7171,12943,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.9644599,3.8132582,0,0,-925.06683,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6815491,65.21000000000001,25.88,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,875,-66820.406,-106645.82,0,0,1001.9434 -5830,7172,12944,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.5351276,7.6305146,0,0,-954.40253,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6684222,7.7085228,54.78,45.49,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,3302,758988.69,408844.22,172575.2,0,2018.9019 -5831,7173,12945,12946,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.8700337,6.2221928,14,12,30.529192,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.091433,41.61,44.94,48,49,3.333333333333333,1,1,0,1,0,7,2,0,510.5,384506.13,85335.008,322258.81,0,1291.7244 -5831,7173,12946,12945,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,14,-12,111.98029,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,41.61,44.94,7,2,3,0,1,0,7,2,0,510.5,384506.13,85335.008,322258.81,0,1291.7244 -5832,7174,12947,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1085.8401,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,24.523756,0,0,1,1,0,0,0,56.02,8.67,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,112,-92750.43,0,0,0,669.74921 -5833,7175,12948,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-953.20581,0,2,2,2019,10,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,7.1559272,0,53.96,42.86,-9,-9,5,1,1,0,0,10,7,1,1,250,716838.94,0,764093.13,0,-37.133625 -5834,7176,12949,12950,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,0,0,0,1,-7,82.899017,-9,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.77,53.13,22.97,66.72,6.666666666666667,2,3,0,0,0,4,4,1,1049.5,-113731.41,145529.2,0,0,1714.2144 -5834,7176,12950,12949,12952,-9,1,1,33,0,0,0,1,1,-9,0,5,8.3255253,8.4598684,0,1,7,20.287573,0,3,-9,2019,21,9,35,55,1,9,0,13.535624,13.535624,0,0,0,0,0,1,1,0,.96637815,0,22.97,66.72,45.77,53.13,1.666666666666667,2,3,0,1,5,4,4,1,1049.5,-113731.41,145529.2,0,0,1714.2144 -5834,7177,12951,-9,12952,-9,1,0,37,0,0,0,2,2,-9,0,5,8.3176079,8.0483685,0,0,0,-1128.5446,0,3,-9,2019,12,1,46,45,1,1,0,8.1113081,8.1113081,0,0,0,0,0,1,1,0,0,0,65.41,37.53,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,1015,-246316.63,39885.199,0,0,1745.5125 -5834,7178,12952,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1006.245,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,4,1,1,116,-48501.074,0,0,0,250.78346 -5835,7179,12953,12954,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,62,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7916236,0,54,46,41.17,52.68,8,1,1,0,0,0,5,2,1,2377,-4211.3066,0,0,0,2031.9146 -5835,7179,12954,12953,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-3,0,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,71.5,1,1,0,6.0408864,0,41.17,52.68,54,46,5,1,1,0,0,0,5,2,1,2377,-4211.3066,0,0,0,2031.9146 -5836,7180,12955,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1005.6836,0,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,23.12,26.08,-9,-9,6.666666666666667,1,1,0,0,3,10,1,0,314,-214901.73,0,0,0,1229.1923 -5837,7181,12956,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4835649,7.2535381,0,0,0,-994.86487,0,-9,-9,2019,10,0,26,30,1,0,0,7.2663713,7.2663713,0,0,0,0,2,1,1,0,0,0,47.1,49.66,-9,-9,8.333333333333334,3,4,0,1,2,8,3,0,786,-200676.06,60584.449,0,0,634.99481 -5837,7182,12957,-9,12956,-9,1,1,19,0,0,1,3,0,0,0,4,0,0,0,0,0,-1159.3909,-9,2,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,50.65,60.47,-9,-9,10,3,4,0,0,0,8,1,0,389,306655.75,0,0,0,0 -5838,7183,12958,12959,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.2422514,8.4796267,0,3,0,12.272326,0,-9,-9,2019,8,1,31,35,1,1,0,16.520262,16.520262,0,0,0,0,0,0,0,0,0,0,29.8,58.22,45.2,57.55,8.333333333333334,1,1,0,0,9,2,5,1,1535,140558,24215.063,0,0,3476.9841 -5838,7183,12959,12958,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.0331926,8.2050743,0,3,0,-9.8655262,0,2,-9,2019,7,0,45,45,1,0,0,9.3703213,9.3703213,0,0,0,0,0,0,0,0,0,0,45.2,57.55,29.8,58.22,8.333333333333334,1,1,0,0,10,2,5,1,1535,140558,24215.063,0,0,3476.9841 -5839,7184,12960,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.8833532,6.0419021,0,0,-1096.0302,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,1.8922652,6.4102607,24.088995,0,1,1,0,2.2945695,5.5137205,52,45,-9,-9,8,1,1,0,0,0,11,2,1,2983,-63765.582,153885.94,134292.81,0,605.48145 -5840,7185,12961,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.089077,8.0132694,0,0,0,-875.2644,0,3,3,2019,6,0,36,41,1,0,0,10.172626,10.172626,0,0,0,0,0,1,1,0,0,0,60.12,30.87,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,802,144912.14,0,172515.23,0,1476.4648 -5841,7186,12962,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9331222,8.0643177,5.5733271,0,0,-1128.9983,0,-9,3,2019,12,1,37,37,1,1,0,10.884335,10.884335,0,0,0,0,0,1,1,0,5.4484076,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,1,7,2,4,1,86,743763.88,396705.56,106946.53,-5907.2119,2100.9524 -5842,7187,12963,12964,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.6971998,7.6298213,0,34,2,106.86178,0,-9,-9,2019,10,1,30,30,1,1,0,7.1275859,7.1275859,0,0,0,0,0,1,1,0,0,0,50.05,52.7,40.45,38.73,8.333333333333334,2,3,0,0,10,6,3,1,911,69921.078,52140.695,0,0,780.10425 -5842,7187,12964,12963,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,0,0,0,34,-2,-69.103355,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,40.45,38.73,50.05,52.7,5,2,3,0,0,0,6,3,1,911,69921.078,52140.695,0,0,780.10425 -5842,7188,12965,-9,12964,12963,1,1,24,0,0,0,3,3,-9,0,4,7.5358491,7.3639102,0,0,0,-936.88629,0,3,3,2019,10,0,32,0,1,1,1,6.3378239,6.3378239,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,462,248675.45,0,0,0,739.41406 -5842,7188,12966,-9,-9,12965,1,0,11,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1014.9335,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,3,1,462,248675.45,0,0,0,739.41406 -5842,7189,12967,-9,12964,12963,1,0,20,0,0,1,2,0,0,0,4,0,5.6258283,5.8682303,0,0,-965.81927,-9,3,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.9981847,0,49.41,58.28,-9,-9,6.666666666666667,2,3,0,1,0,6,2,1,478,-77853.906,0,0,0,1045.4431 -5843,7190,12968,12969,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,41,-3,-27.972698,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1.149183,0,35.6,47.42,52.23,55.6,6.666666666666667,1,1,0,0,0,13,3,1,1346,1217726.5,701628.25,270701.69,0,1487.9126 -5843,7190,12969,12968,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.0915051,8.047183,41,3,-139.54774,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.3428588,8.1197414,52.23,55.6,35.6,47.42,5,1,1,0,0,6,13,3,1,1346,1217726.5,701628.25,270701.69,0,1487.9126 -5844,7191,12970,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.232254,7.3743882,0,0,-909.6767,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6052055,7.2572646,52.47,40.47,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,639,44655.266,129240.41,0,0,938.28412 -5845,7192,12971,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2692776,8.4045382,0,0,0,-1082.3757,0,2,2,2019,15,4,42,42,1,4,0,11.863154,11.863154,0,0,0,0,0,1,1,0,0,0,38.75,32.16,-9,-9,3.333333333333333,1,1,0,0,8,4,4,1,726,920437.38,261342.38,2050.8838,0,1085.3754 -5846,7193,12972,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.456399,7.3893175,0,0,0,-1015.4857,0,2,2,2019,9,0,22,34,1,0,0,10.204806,10.204806,0,0,0,0,0,0,0,0,0,0,44.95,58.82,-9,-9,8.333333333333334,1,1,0,0,9,10,3,0,159,196531.09,-81722.414,0,0,1078.8856 -5847,7194,12973,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.9761791,6.9385571,0,0,-1024.2061,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4769452,6.8479967,49.83,21.79,-9,-9,6.666666666666667,1,1,0,0,5,10,2,1,2774,254865.64,191289.28,326371.38,0,1799.0338 -5848,7195,12974,12975,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8763256,5.9474521,6,0,-40.011959,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5181308,5.8659668,55.65,41.83,56.85,39.93,8.333333333333334,1,1,0,0,1,9,2,1,758,276237.69,341694.69,193344.59,29959.814,2011.299 -5848,7195,12975,12974,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.5921588,6.7205467,6,0,58.962929,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2038846,6.7452965,56.85,39.93,55.65,41.83,8.333333333333334,1,1,0,0,0,9,2,1,758,276237.69,341694.69,193344.59,29959.814,2011.299 -5849,7196,12976,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.0895748,7.8962045,0,0,-1132.2008,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.335238,8.2531805,39.15,48.86,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,1358,538836.5,376849.41,94733.516,0,2355.135 -5850,7197,12977,12978,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,5,-7,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,17.2,31.47,8,1,1,1,1,0,11,1,0,420.5,0,0,0,0,1169.5665 -5850,7197,12978,12977,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,5,7,0,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,17.2,31.47,53,55,5,1,1,0,0,0,11,1,0,420.5,0,0,0,0,1169.5665 -5851,7198,12979,12980,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.9677973,7.901145,0,9,12,21.128109,0,3,-9,2019,18,6,40,38,1,6,0,9.9185352,9.9185352,0,0,0,0,0,0,0,0,0,0,47.66,39.1,50.07,43.69,8.333333333333334,1,1,0,0,11,4,5,1,848.5,160566.45,29565.406,264384.75,88735.188,3333.9788 -5851,7198,12980,12979,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.3193331,8.3475504,0,9,-12,72.094719,0,2,3,2019,12,0,45,0,1,0,0,9.7647161,9.7647161,0,0,0,0,0,0,0,0,0,0,50.07,43.69,47.66,39.1,8.333333333333334,1,1,0,0,8,4,5,1,848.5,160566.45,29565.406,264384.75,88735.188,3333.9788 -5852,7199,12981,12982,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.8753486,7.3745899,10,8,71.344467,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8614511,7.2143703,53.28,47.04,57.32,47.78,8.333333333333334,1,1,0,0,3,12,4,1,1418,1049495.5,620794.25,412315.56,37348.035,4486.2305 -5852,7199,12982,12981,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,4.6690192,8.6016645,8.8096046,10,-8,-82.916229,0,2,1,2019,6,0,9,20,1,0,0,1.1905593,1.1905593,0,0,0,0,0,1,1,0,0,8.6126614,57.32,47.78,53.28,47.04,8.333333333333334,1,1,0,0,11,12,4,1,1418,1049495.5,620794.25,412315.56,37348.035,4486.2305 -5853,7200,12983,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.0474329,7.8705978,0,0,-1052.8098,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6850073,7.1461816,52.4,55.58,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,550,463449.81,432939.97,114047.7,0,1112.385 -5854,7201,12984,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.06919,8.0361929,0,0,0,-940.23462,0,2,2,2019,10,0,40,38,1,0,0,8.2302094,8.2302094,0,0,0,0,0,1,1,0,1.9616615,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,1193,59034.293,-5690.9634,0,0,1922.2267 -5855,7202,12985,-9,12986,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.70038,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,958.33331,71971.719,-37681.469,0,0,2502.1033 -5855,7202,12986,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,1,0,0,0,0,0,-937.88525,0,2,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,29,19.35,-9,-9,1.666666666666667,1,1,0,1,2,5,1,0,958.33331,71971.719,-37681.469,0,0,2502.1033 -5855,7202,12987,-9,12986,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-939.2533,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,1,0,958.33331,71971.719,-37681.469,0,0,2502.1033 -5856,7203,12988,12989,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.1027465,6.7393589,40,-5,-11.107306,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8344488,62.42,32.41,60.13,49.27,8.333333333333334,1,1,0,0,4,12,3,1,4669,977227.19,779851.13,187475.28,67720.375,2200.1548 -5856,7203,12989,12988,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6182599,8.0250645,40,5,-9.9920053,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8899403,8.1976604,60.13,49.27,62.42,32.41,8.333333333333334,1,1,0,0,8,12,3,1,4669,977227.19,779851.13,187475.28,67720.375,2200.1548 -5857,7204,12990,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,6.6600475,6.7962804,0,0,-971.37518,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.4961953,54.95,29.09,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1656,146896.56,313510.91,109594.38,-5381.394,1080.6771 -5858,7205,12991,-9,12992,12993,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-923.5401,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,433,-112351.27,0,0,0,1429.5052 -5858,7205,12992,12993,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,6.6967897,6.6203537,0,4,0,-75.112167,0,-9,-9,2019,5,0,12,13,1,0,0,9.8498735,9.8498735,0,0,0,0,0,1,1,0,0,0,47.38,57.75,56.78,49.38,10,1,1,0,0,5,5,3,0,433,-112351.27,0,0,0,1429.5052 -5858,7205,12993,12992,-9,-9,1,1,23,1,1,0,2,2,-9,0,4,7.9532328,8.1414118,0,4,0,41.765598,0,-9,-9,2019,3,0,41,39,1,0,0,8.5222282,8.5222282,0,0,0,0,0,1,1,0,0,0,56.78,49.38,47.38,57.75,10,1,1,0,0,3,5,3,0,433,-112351.27,0,0,0,1429.5052 -5859,7206,12994,12995,-9,-9,1,1,53,1,2,0,3,3,-9,0,4,8.8165236,8.8189201,0,8,4,-57.311714,0,2,2,2019,8,0,51,53,1,0,0,13.895037,13.895037,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.36,35.84,8.333333333333334,1,1,0,0,10,7,4,1,177.5,905117.81,228694.03,580725.94,16502.992,3039.9302 -5859,7206,12995,12994,-9,-9,1,0,49,1,2,0,2,2,-9,0,2,6.9958057,6.7938704,0,31,-4,32.036556,0,2,1,2019,11,3,16,0,1,3,0,7.1654205,7.1654205,0,0,0,0,0,1,1,0,4.0230927,0,55.36,35.84,51.83,57.2,8.333333333333334,1,1,0,0,10,7,4,1,177.5,905117.81,228694.03,580725.94,16502.992,3039.9302 -5860,7207,12996,12997,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.2351208,8.0115004,5.9145813,11,0,-14.731893,0,2,2,2019,7,0,60,60,1,0,0,7.092227,7.092227,0,0,0,0,0,0,0,0,.91465414,6.13413,54.22,39.07,61.43,32.82,8.333333333333334,1,1,0,0,12,4,4,1,229,931136.69,520530.25,342412.19,0,2659.1997 -5860,7207,12997,12996,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.9028068,8.2061853,0,11,0,14.906147,0,-9,-9,2019,6,0,32,42,1,0,0,8.6837463,8.6837463,0,0,0,0,14.5,0,0,0,2.1735017,0,61.43,32.82,54.22,39.07,8.333333333333334,1,1,0,0,12,4,4,1,229,931136.69,520530.25,342412.19,0,2659.1997 -5861,7208,12998,-9,12999,13000,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-896.79718,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,4,0,615.33331,19291.334,35790.969,363867.63,103730.38,4430.292 -5861,7208,12999,13000,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,0,0,0,2,-3,21.681435,1,2,2,2019,16,4,0,45,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.47,52.37,57.16,56.15,8.333333333333334,1,1,0,0,7,8,4,0,615.33331,19291.334,35790.969,363867.63,103730.38,4430.292 -5861,7208,13000,12999,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.7446995,8.5233469,0,2,3,-25.086845,0,3,1,2019,6,0,41,40,1,0,0,16.643259,16.643259,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.47,52.37,8.333333333333334,2,3,0,0,10,8,4,0,615.33331,19291.334,35790.969,363867.63,103730.38,4430.292 -5862,7209,13001,13002,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.1369047,7.8250413,43,2,-24.899149,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.743587,7.6987534,39.87,48.03,44.36,54.04,3.333333333333333,1,1,0,0,9,7,4,1,128.5,875555.44,753172.13,194446.14,0,3154.3643 -5862,7209,13002,13001,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.6283255,7.9627542,0,43,-2,83.402092,0,3,3,2019,15,3,27,27,1,3,0,9.5768261,9.5768261,0,0,0,0,0,1,1,0,0,0,44.36,54.04,39.87,48.03,5,1,1,0,0,10,7,4,1,128.5,875555.44,753172.13,194446.14,0,3154.3643 -5863,7210,13003,-9,13006,13005,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.2767,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 -5863,7210,13004,-9,13006,13005,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.2184,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 -5863,7210,13005,13006,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.571435,8.3817463,0,21,1,-81.730988,-9,2,2,2019,6,0,30,0,1,0,0,22.259792,22.259792,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,12,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 -5863,7210,13006,13005,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,6.8243866,6.6385331,0,21,-1,107.79428,0,3,3,2019,10,2,10,10,1,2,0,9.8855543,9.8855543,0,0,0,0,0,1,1,0,6.7578983,0,49.35,59.64,57.16,56.15,10,1,1,0,0,9,2,3,1,465,72440.102,-2326.8589,0,0,3073.5498 -5864,7211,13007,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,7.6228948,7.396059,0,0,-988.42334,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,3.3183939,7.2931943,54.64,13.12,-9,-9,3.333333333333333,1,1,0,0,8,2,3,1,161,319614.56,0,50631.891,0,1292.9025 -5864,7212,13008,-9,-9,13007,1,1,33,0,0,0,2,2,-9,0,3,7.8757639,7.7067204,0,0,0,-867.66986,0,-9,2,2019,12,0,38,48,1,0,0,10.179848,10.179848,0,0,0,0,0,0,0,0,0,0,53.58,46.94,-9,-9,3.333333333333333,1,1,0,0,3,2,4,1,4758,41540.496,12360.711,0,0,1399.1255 -5865,7213,13009,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.4266338,9.2900028,6.990427,0,0,-1060.6798,0,2,3,2019,6,0,60,35,1,0,0,23.259037,23.259037,0,0,0,0,0,0,0,0,3.1783919,7.2116094,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1617,830195.81,410823.59,201784.97,0,5110.4268 -5866,7214,13010,-9,13012,13011,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.1021,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 -5866,7214,13011,13012,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.4750614,9.5706253,0,26,2,108.89941,0,2,3,2019,12,0,70,70,1,0,0,26.402626,26.402626,0,0,0,0,0,0,0,0,3.2340944,0,53.22,52.37,28.71,34.46,3.333333333333333,1,1,0,0,7,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 -5866,7214,13012,13011,-9,-9,1,0,47,0,3,0,1,1,-9,0,2,0,0,0,26,-2,-41.777901,0,2,2,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,120,0,0,0,1.1230518,0,28.71,34.46,53.22,52.37,5,1,1,0,0,2,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 -5866,7214,13013,-9,13012,13011,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1110.2465,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 -5866,7214,13014,-9,13012,13011,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-949.31042,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,5,1,478.39999,953800.06,294790.19,640893,0,11123.787 -5867,7215,13015,13016,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.0643806,7.9566336,0,3,0,-154.42578,0,2,1,2019,13,1,45,43,1,1,0,8.5073071,8.5073071,0,0,0,0,0,0,0,0,5.101162,0,39.7,53.37,54.2,57.49,6.666666666666667,1,1,0,0,5,8,5,0,760,137007.97,113556.48,323767.44,163317.88,3867.2837 -5867,7215,13016,13015,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.5536623,8.8425941,0,3,0,10.018421,0,-9,-9,2019,9,0,43,44,1,0,0,15.303812,15.303812,0,0,0,0,0,0,0,0,2.5868993,0,54.2,57.49,39.7,53.37,8.333333333333334,1,1,0,0,5,8,5,0,760,137007.97,113556.48,323767.44,163317.88,3867.2837 -5868,7216,13017,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.1345201,7.0889888,0,0,0,-890.07294,0,2,2,2019,2,0,50,55,1,0,0,2.8432693,2.8432693,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,10,3,1,708,2045.7181,148365.41,0,0,352.30588 -5869,7217,13018,-9,13020,13019,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.3576,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 -5869,7217,13019,13020,-9,-9,1,1,34,1,3,0,1,1,-9,0,4,8.8777685,9.0085297,0,9,0,-54.080822,0,-9,-9,2019,11,0,47,48,1,0,0,14.0899,14.0899,0,0,0,0,0,1,1,0,7.0275421,0,54.2,57.49,43.38,62.58,8.333333333333334,1,1,0,0,10,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 -5869,7217,13020,13019,-9,-9,1,0,34,1,3,0,2,2,-9,0,5,8.424365,7.961266,0,9,0,119.83979,0,2,2,2019,18,6,30,27,1,6,0,14.673718,14.673718,0,0,0,0,0,1,1,0,0,0,43.38,62.58,54.2,57.49,8.333333333333334,1,1,0,0,10,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 -5869,7217,13021,-9,13020,13019,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.44342,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 -5869,7217,13022,-9,13020,13019,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.67627,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,534.40002,366870.03,216643.75,341482.78,148077.47,4159.0869 -5870,7218,13023,13024,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,0,0,24,20,44.412289,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,57.16,56.15,8,1,1,0,0,0,8,2,1,1606.5,571316.94,113957.1,326958.41,0,667.98865 -5870,7218,13024,13023,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,7.0233278,6.428617,24,-20,-27.767931,0,-9,-9,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8863797,57.16,56.15,54,46,10,1,1,0,0,11,8,2,1,1606.5,571316.94,113957.1,326958.41,0,667.98865 -5871,7219,13025,13027,-9,-9,1,0,45,0,1,0,2,2,-9,1,3,0,0,0,8,0,0,0,3,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,71.5,1,1,0,0,0,17.12,47.51,16.04,23.99,5,1,1,0,0,0,11,1,0,277.66666,41115.25,0,0,0,2461.3564 -5871,7219,13026,-9,13025,13027,1,1,16,0,1,1,3,0,-9,1,1,0,0,0,0,0,-973.90094,-9,2,2,2019,30,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.13,38.75,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,277.66666,41115.25,0,0,0,2461.3564 -5871,7219,13027,13025,-9,-9,1,1,45,0,1,0,2,2,-9,1,1,0,0,0,8,0,0,0,2,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,17.12,47.51,0,1,1,0,1,0,11,1,0,277.66666,41115.25,0,0,0,2461.3564 -5871,7220,13028,-9,13025,13027,1,0,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-994.67072,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.34,48.7,-9,-9,6.666666666666667,1,1,0,1,0,11,1,0,943,25515.623,0,0,0,2004.8898 -5872,7221,13029,13030,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.2407813,7.2279725,60,-2,32.829929,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8740788,7.3118734,59.47,44.13,60.03,42.51,8.333333333333334,1,1,0,0,0,12,4,1,374,1489458.5,379532.13,236907.97,0,3312.9175 -5872,7221,13030,13029,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,8.209197,8.2702293,60,2,35.333111,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.9510283,7.9049788,60.03,42.51,59.47,44.13,8.333333333333334,1,1,0,0,0,12,4,1,374,1489458.5,379532.13,236907.97,0,3312.9175 -5873,7222,13031,13032,-9,-9,1,0,39,0,4,0,1,1,-9,0,4,5.9594913,5.9350166,0,9,-3,43.590363,0,2,2,2019,7,0,5,7,1,0,0,7.2676334,7.2676334,0,0,0,0,0,1,0,1,2.3216252,0,51.83,57.2,51.5,53.15,8.333333333333334,1,1,0,0,4,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 -5873,7222,13032,13031,-9,-9,1,1,42,0,4,0,2,2,-9,0,4,7.8544531,7.9793859,0,9,3,-57.735222,0,2,2,2019,9,0,35,35,1,0,0,9.2763691,9.2763691,0,0,0,0,0,1,0,1,0,0,51.5,53.15,51.83,57.2,8.333333333333334,1,1,0,0,9,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 -5873,7222,13033,-9,13031,13032,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-937.3952,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 -5873,7222,13034,-9,13031,13032,1,0,10,0,4,1,3,0,-9,0,5,0,0,0,0,0,-961.76801,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 -5873,7222,13035,-9,13031,13032,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1091.7505,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 -5873,7222,13036,-9,13031,13032,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-954.96332,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,1208.1666,-7741.1899,2124.877,0,0,2578.655 -5874,7223,13037,13038,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,48,4,-82.429436,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,6.4350004,127.88724,64.950409,0,1,1,0,0,0,38.99,17.03,50.61,45.47,3.333333333333333,1,1,0,1,0,9,2,0,1124.5,643349.06,220866.72,259419.44,0,2743.6516 -5874,7223,13038,13037,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.1289663,6.5162139,48,-4,51.424129,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,1,0,0,6.4735847,50.61,45.47,38.99,17.03,1.666666666666667,1,1,0,0,3,9,2,0,1124.5,643349.06,220866.72,259419.44,0,2743.6516 -5875,7224,13039,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.0708809,7.4715405,4.3718109,0,0,-927.9408,0,2,2,2019,6,0,28,35,1,0,0,5.4501619,5.4501619,0,0,0,0,0,1,1,0,4.4781632,4.4544334,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,1203,210378.56,0,28263.477,0,1316.5625 -5876,7225,13040,13041,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.4238329,7.5448747,0,3,-2,9.2197237,0,-9,-9,2019,15,3,25,40,1,3,0,8.8094387,8.8094387,0,0,0,0,0,0,0,0,4.2410178,0,41.17,52.68,49.95,57.02,3.333333333333333,1,1,0,0,4,5,4,1,154.5,64773.137,37610.945,140405.11,87838.313,2400.4263 -5876,7225,13041,13040,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.2215376,8.2744446,0,3,2,89.898697,0,-9,-9,2019,8,1,40,40,1,1,0,11.261369,11.261369,0,0,0,0,0,0,0,0,3.1691465,0,49.95,57.02,41.17,52.68,8.333333333333334,1,1,0,0,4,5,4,1,154.5,64773.137,37610.945,140405.11,87838.313,2400.4263 -5877,7226,13042,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.4596243,6.1235743,0,0,-1004.4681,0,2,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,5.6442671,4.7922873,39.41,37.64,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,145,93088.508,19160.387,0,0,1577.6986 -5878,7227,13043,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,3,7.7073369,7.5281944,0,0,0,-1108.4767,-9,3,3,2019,12,2,38,0,1,2,1,5.5259008,5.5259008,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,2,5,3,1,420,293428.53,0,0,0,894.98682 -5879,7228,13044,13046,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,7.9085188,7.7417898,0,8,-8,-40.01482,0,2,2,2019,6,0,25,30,1,0,0,14.577784,14.577784,0,0,0,0,0,1,1,0,0,0,46.14,54.22,54.37,54.8,8.333333333333334,1,1,0,0,10,1,5,1,865,87643.258,65208.801,224265.13,61610.801,4164.1108 -5879,7228,13045,-9,13044,13046,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.6755,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,865,87643.258,65208.801,224265.13,61610.801,4164.1108 -5879,7228,13046,13044,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.9345818,8.7412701,0,8,8,73.302658,0,2,2,2019,7,0,35,40,1,0,0,31.61071,31.61071,0,0,0,0,0,1,1,0,3.2991817,0,54.37,54.8,46.14,54.22,6.666666666666667,1,1,0,0,10,1,5,1,865,87643.258,65208.801,224265.13,61610.801,4164.1108 -5879,7229,13047,-9,13044,13046,1,1,20,0,1,1,1,0,0,0,3,0,0,0,0,0,-1047.6218,-9,1,2,2019,17,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,1,6,1,1,1,495,-87093.219,0,0,0,0 -5880,7230,13048,-9,13049,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.8167,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,357,1296747.5,527859,614253.06,48369.383,1818.675 -5880,7230,13049,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.3209829,8.4487228,6.3585477,0,0,-980.80914,0,2,2,2019,12,5,30,16,1,5,0,11.237806,11.237806,0,0,0,0,14.5,1,1,0,6.419086,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,357,1296747.5,527859,614253.06,48369.383,1818.675 -5881,7231,13050,13051,-9,-9,1,0,67,0,0,0,1,1,-9,0,1,0,7.259294,7.3543396,46,-1,-108.41785,0,2,2,2019,20,6,0,0,4,6,0,0,0,1,0,19.483568,0,0,1,1,0,0,7.1569128,46.93,15.34,52.65,51.64,3.333333333333333,1,1,0,0,4,1,4,1,236,2851117,1659111.3,685299.06,0,3058.3594 -5881,7231,13051,13050,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.8151364,7.9168391,46,1,14.130259,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.903749,52.65,51.64,46.93,15.34,8.333333333333334,1,1,0,0,7,1,4,1,236,2851117,1659111.3,685299.06,0,3058.3594 -5882,7232,13052,13053,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.1346097,6.3443155,26,1,23.642727,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9224854,6.065299,66.94,12.8,60.05,26.59,6.666666666666667,1,1,0,0,0,4,2,1,647.5,456487.03,125834.46,238592.77,0,3360.6724 -5882,7232,13053,13052,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.6199684,5.5131502,25,-1,95.11805,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.8134072,5.3257084,60.05,26.59,66.94,12.8,10,1,1,0,0,0,4,2,1,647.5,456487.03,125834.46,238592.77,0,3360.6724 -5883,7233,13054,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,7.4634647,7.5548134,0,0,0,-951.72046,-9,3,2,2019,14,2,32,0,1,2,0,7.4454985,7.4454985,0,0,0,0,0,0,0,0,.69730538,0,29.72,52,-9,-9,3.333333333333333,3,4,0,0,7,8,3,0,1013,-96145.078,10389.156,0,0,650.8446 -5884,7234,13055,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,4.4706669,4.5026278,0,0,-992.2514,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.3736825,0,60.12,54.8,-9,-9,8.333333333333334,1,1,1,0,0,10,2,1,1384,397655.84,0,0,0,856.54083 -5884,7235,13056,-9,13055,-9,1,1,22,0,0,0,2,2,-9,0,4,7.7445598,7.4094858,0,0,0,-1084.8003,0,3,-9,2019,5,0,37,42,1,0,1,7.2512836,7.2512836,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,427,-175412.03,676.4552,0,0,884.27844 -5885,7236,13057,-9,-9,-9,1,0,60,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1123.3612,0,3,3,2019,11,1,0,32,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.29,41.63,-9,-9,8.333333333333334,1,1,0,0,9,13,1,1,76,158769.16,0,0,0,1261.3608 -5885,7237,13058,-9,13057,-9,1,1,27,0,1,0,2,2,-9,0,3,7.8429437,7.8797331,0,0,0,-1008.1668,0,2,2,2019,11,1,36,25,1,1,0,9.7384739,9.7384739,0,0,0,0,0,1,1,0,6.2110806,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,736,-16159.545,0,0,0,1290.8798 -5885,7238,13059,-9,13057,-9,1,1,21,0,1,0,2,2,1,0,5,8.029048,8.0693121,0,0,0,-968.18518,-9,2,-9,2019,6,0,30,0,1,0,0,10.788715,10.788715,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,3,1,205,-232645.31,0,0,0,1319.3948 -5886,7239,13060,-9,13063,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.1569,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 -5886,7239,13061,-9,13063,13062,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.1288,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 -5886,7239,13062,13063,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,7.8907461,8.1642208,0,4,-2,-27.056358,0,-9,-9,2019,10,0,40,42,1,1,0,8.8305387,8.8305387,0,0,0,0,0,1,1,0,0,0,49,58,48.77,57.64,7,1,1,0,0,1,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 -5886,7239,13063,13062,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,6.7720222,6.8559723,0,4,2,-112.45663,0,3,3,2019,13,1,16,15,1,1,0,8.5484343,8.5484343,0,0,0,0,0,1,1,0,0,0,48.77,57.64,49,58,5,1,1,0,0,8,11,3,0,866.25,212396.77,64187.734,158030.61,76572.906,2576.8691 -5887,7240,13064,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,0,0,6,2,0,0,-9,2,2019,12,0,0,21,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8391891,0,50.08,55.33,52,48,6.666666666666667,1,1,0,0,6,8,1,1,298,521543.91,305734.97,133689.22,0,275.35828 -5887,7241,13065,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,6,-2,0,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,50.08,55.33,7,4,1,0,0,0,8,1,1,461,295038.72,236566.45,122626.38,0,0 -5888,7242,13066,13067,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,7.304112,7.2369785,0,7,-7,31.573044,0,2,3,2019,7,0,18,18,1,0,0,10.824588,10.824588,0,0,0,0,0,0,0,0,0,0,52.67,48.57,55.96,49.93,8.333333333333334,1,1,0,0,9,4,5,0,1036.5,548351.25,393892.94,183028.91,4895.644,3489.7988 -5888,7242,13067,13066,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,9.0707264,8.9645538,0,7,7,73.362061,0,-9,-9,2019,6,0,40,40,1,0,0,26.772072,26.772072,0,0,0,0,0,0,0,0,0,0,55.96,49.93,52.67,48.57,6.666666666666667,1,1,0,0,8,4,5,0,1036.5,548351.25,393892.94,183028.91,4895.644,3489.7988 -5888,7243,13068,-9,13066,13067,1,0,21,0,0,0,2,2,-9,0,4,7.6497707,7.6358891,0,0,0,-1070.48,0,2,2,2019,11,0,40,37,1,2,1,4.8647728,4.8647728,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,4,3,0,3191,0,0,0,0,199.33685 -5889,7244,13069,13070,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,8.0735483,8.1548357,6,3,-27.119047,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6244736,8.1566792,56.7,37.23,35.79,48.98,5,2,3,0,0,3,11,3,1,421.5,1776942.8,917578,336338.06,0,2726.3594 -5889,7244,13070,13069,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,6,-3,-39.190178,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4079533,0,35.79,48.98,56.7,37.23,6.666666666666667,1,1,0,0,0,11,3,1,421.5,1776942.8,917578,336338.06,0,2726.3594 -5890,7245,13071,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,0,0,0,0,0,-982.37341,0,3,3,2019,29,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.93,32.3,-9,-9,0,1,1,0,0,0,13,1,1,248,114524,0,80692.977,0,304.19556 -5891,7246,13072,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.5931273,5.5654197,0,0,-884.90094,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3990788,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,520,-326944,0,0,0,548.91986 -5892,7247,13073,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.6138034,6.9372416,0,0,-1004.5336,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8850293,7.3894062,64.38,39.16,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,114,250522.2,27009.262,249026.42,0,1434.1708 -5893,7248,13074,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.0683508,8.0341167,4.2494059,0,0,-995.95276,0,2,2,2019,6,0,40,42,1,0,0,6.7862782,6.7862782,0,0,0,0,2,0,0,0,0,4.701211,60.02,56.42,-9,-9,1.666666666666667,1,1,0,0,9,5,4,1,454,243615.41,-54288.84,0,0,1630.4788 -5893,7249,13075,-9,13074,-9,1,1,28,0,0,0,2,2,-9,0,5,7.7530169,8.1104698,0,0,0,-1016.1199,0,3,-9,2019,9,1,40,40,1,1,1,7.9063749,7.9063749,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,625,-136513.48,0,0,0,813.72461 -5894,7250,13076,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.3800716,8.1874905,0,0,0,-1023.5966,0,3,3,2019,9,0,40,40,1,0,0,14.239186,14.239186,0,0,0,0,2,0,0,0,3.8244789,0,61.28,35.65,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,243,28673.801,38462.82,208964.58,77824.703,1850.8213 -5895,7251,13077,13078,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,6.1875987,6.2865424,3.470556,24,-2,175.18323,0,-9,-9,2019,6,0,20,20,1,0,0,3.4080389,3.4080389,0,0,0,0,0,1,1,0,3.2616572,3.5950761,63.41,39.7,58.47,50.22,10,1,1,0,0,8,7,2,1,1003.5,232942.83,123745.13,176715.38,0,1751.8334 -5895,7251,13078,13077,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.973846,6.8986735,25,2,-169.84906,0,3,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3297086,6.8819885,58.47,50.22,63.41,39.7,8.333333333333334,1,1,0,0,6,7,2,1,1003.5,232942.83,123745.13,176715.38,0,1751.8334 -5896,7252,13079,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.8434429,7.7597852,0,0,0,-1013.2383,0,2,3,2019,1,0,40,45,1,0,0,8.7330923,8.7330923,0,0,0,0,0,0,0,0,0,0,57.57,49.69,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,129,192533.38,0,0,0,855.4101 -5896,7253,13080,-9,-9,13079,1,1,23,0,0,0,2,2,-9,0,2,7.7761106,7.4942751,0,0,0,-974.72913,0,3,2,2019,13,4,39,46,1,4,1,7.1480427,7.1480427,0,0,0,0,0,0,0,0,0,0,43.76,49.1,-9,-9,6.666666666666667,1,1,0,0,2,9,3,0,668,-54019,0,0,0,1311.7888 -5897,7254,13081,-9,13084,13085,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-886.3205,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 -5897,7254,13082,-9,13084,13085,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.0425,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 -5897,7254,13083,-9,13084,13085,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1031.9895,-9,2,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.06,55.03,-9,-9,5,2,3,0,0,1,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 -5897,7254,13084,13085,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.5749979,6.6341271,0,25,-5,-76.761696,0,2,2,2019,11,0,6,5,1,0,0,13.708963,13.708963,0,0,0,0,2,1,1,0,0,0,54.96,53.17,46.92,43.44,8.333333333333334,2,3,0,0,4,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 -5897,7254,13085,13084,-9,-9,1,1,47,0,2,0,3,3,-9,0,2,7.245018,7.2519069,0,25,5,-52.310917,0,3,3,2019,19,7,30,30,1,7,0,4.8594193,4.8594193,0,0,0,0,0,1,1,0,0,0,46.92,43.44,54.96,53.17,3.333333333333333,2,3,0,0,11,6,2,0,834.20001,34876.551,4055.3347,0,0,2780.033 -5897,7255,13086,13087,13084,13085,1,1,22,0,2,0,2,2,-9,0,4,7.2743955,7.1873221,0,1,-2,12.789626,0,2,2,2019,15,2,18,24,1,2,0,8.5585184,8.5585184,0,0,0,0,0,1,1,0,0,0,40.46,51.25,51.83,57.2,5,2,3,0,0,6,6,3,0,981,-380339.91,28571.418,83172.117,88802.688,2349.7202 -5897,7255,13087,13086,-9,-9,1,0,24,0,2,0,1,1,-9,0,4,8.0405083,8.3250637,0,1,2,-147.55074,-9,-9,-9,2019,8,0,38,0,1,0,0,11.803451,11.803451,0,0,0,0,0,1,1,0,3.0558283,0,51.83,57.2,40.46,51.25,8.333333333333334,2,3,0,0,3,6,3,0,981,-380339.91,28571.418,83172.117,88802.688,2349.7202 -5898,7256,13088,-9,13090,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.54852,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,639,-72585.016,-11802.71,0,0,2446.4136 -5898,7256,13089,-9,13090,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.28705,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,639,-72585.016,-11802.71,0,0,2446.4136 -5898,7256,13090,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,7.6595011,7.9386292,6.7550678,0,0,-1119.1219,0,2,2,2019,19,8,30,30,1,8,0,7.2370634,7.2370634,0,0,0,0,0,1,1,0,6.2265739,0,27.59,52.74,-9,-9,6.666666666666667,1,1,0,0,9,4,3,1,639,-72585.016,-11802.71,0,0,2446.4136 -5899,7257,13091,13092,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,46,14,28.065035,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,45.427879,0,0,1,1,0,4.9750023,0,48.91,33.14,48.28,60.18,0,1,1,0,0,0,11,2,1,644.5,448648.13,0,355185.19,0,1867.1764 -5899,7257,13092,13091,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.7964878,4.8284035,46,-14,31.574289,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.9914498,4.6095805,48.28,60.18,48.91,33.14,8.333333333333334,1,1,0,0,0,11,2,1,644.5,448648.13,0,355185.19,0,1867.1764 -5900,7258,13093,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.51366,5.7375674,0,0,-1021.7724,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7420034,61.34,36.58,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,609,199055.92,110340.85,0,0,1385.6075 -5901,7259,13094,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.5882244,7.0394316,0,0,-965.85614,0,3,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,6.7940993,25.37,58.44,-9,-9,3.333333333333333,1,1,0,1,0,2,2,1,682,1010660.6,263710.59,96037.359,0,1026.2427 -5902,7260,13095,-9,13096,13097,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5248,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 -5902,7260,13096,13097,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.233696,8.2444458,0,13,-2,-29.896826,0,1,1,2019,12,1,25,25,1,1,0,17.035635,17.035635,0,0,0,0,0,0,0,0,0,0,32.67,63.54,38.86,59.06,8.333333333333334,1,1,0,0,12,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 -5902,7260,13097,13096,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,9.2184525,9.0412321,0,13,2,.25468415,0,2,1,2019,14,3,40,41,1,3,0,30.068436,30.068436,0,0,0,0,0,0,0,0,0,0,38.86,59.06,32.67,63.54,3.333333333333333,1,1,0,0,9,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 -5902,7260,13098,-9,13096,13097,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0276,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,523,11344.727,38410.875,202955.52,113950.31,4320.7686 -5903,7261,13099,13100,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,7.5306945,7.312458,0,5,-4,64.988579,0,-9,-9,2019,13,1,28,40,1,1,0,5.8949475,5.8949475,0,0,0,0,2,0,0,0,0,0,41.68,56.39,51.14,60.45,1.666666666666667,1,1,0,0,5,1,5,1,158.5,9876.1621,161926.13,229347.23,143006.66,3612.1831 -5903,7261,13100,13099,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,9.1561956,9.0335855,0,5,4,42.777058,0,2,1,2019,6,0,40,35,1,0,0,19.376989,19.376989,0,0,0,0,2,0,0,0,0,0,51.14,60.45,41.68,56.39,8.333333333333334,1,1,0,0,8,1,5,1,158.5,9876.1621,161926.13,229347.23,143006.66,3612.1831 -5904,7262,13101,13102,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.5001345,9.7435417,0,4,1,22.894974,0,-9,-9,2019,12,2,60,50,1,2,0,25.271997,25.271997,0,0,0,0,0,1,1,0,8.1572018,0,54.37,54.8,48,56,8.333333333333334,1,1,0,0,8,10,5,1,1677.6666,664783.44,119144.88,667444.19,270945.25,7245.6885 -5904,7262,13102,13101,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.3814912,7.8006401,0,4,-1,13.033913,0,-9,-9,2019,11,0,32,32,1,2,0,6.1740375,6.1740375,0,0,0,0,0,1,1,0,0,0,48,56,54.37,54.8,7,4,1,0,0,1,10,5,1,1677.6666,664783.44,119144.88,667444.19,270945.25,7245.6885 -5904,7262,13103,-9,13102,13101,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.5017,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,1,1677.6666,664783.44,119144.88,667444.19,270945.25,7245.6885 -5905,7263,13104,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.8591247,6.8266206,0,0,-1015.9764,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.664691,66.06,35.51,-9,-9,10,1,1,0,0,0,10,2,1,659,788116.44,74258.336,305529.25,0,1988.2244 -5906,7264,13105,-9,13107,13106,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.3827,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,351,334685.41,332170.53,0,0,3154.2903 -5906,7264,13106,13107,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5634804,8.3919716,0,6,1,-21.874403,0,-9,-9,2019,9,0,1,35,1,1,0,599.3501,599.3501,0,0,0,0,0,1,1,0,3.2727644,0,51,56,22.88,65.82000000000001,8,1,1,0,0,1,10,4,1,351,334685.41,332170.53,0,0,3154.2903 -5906,7264,13107,13106,-9,-9,1,0,42,0,2,0,2,2,-9,1,5,6.7277369,6.6813974,0,6,-1,-76.393761,0,2,2,2019,10,0,14,16,1,0,0,7.1736007,7.1736007,0,0,0,0,112,1,1,0,0,0,22.88,65.82000000000001,51,56,0,1,1,0,0,9,10,4,1,351,334685.41,332170.53,0,0,3154.2903 -5906,7264,13108,-9,13107,13106,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.36096,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,351,334685.41,332170.53,0,0,3154.2903 -5907,7265,13109,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.4138126,8.4416771,0,0,0,-1026.1406,0,-9,-9,2019,10,0,41,37,1,1,1,14.285251,14.285251,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,7,7,5,1,659,56908.578,0,0,0,1744.5123 -5908,7266,13110,13111,-9,-9,1,1,50,0,3,0,2,2,-9,0,4,8.2051392,8.3493948,0,5,10,13.060303,0,-9,-9,2019,8,0,40,40,1,0,0,10.905632,10.905632,0,0,0,0,0,1,1,0,0,0,46.98,59.35,45.91,59.89,8.333333333333334,1,1,0,0,10,7,4,1,281,1380722,192595.23,684491.75,209096.13,3579.6924 -5908,7266,13111,13110,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,8.1478662,8.5957298,0,5,-10,-44.3512,0,2,2,2019,9,0,38,38,1,0,0,13.206164,13.206164,0,0,0,0,0,1,1,0,.57425934,0,45.91,59.89,46.98,59.35,8.333333333333334,1,1,0,0,7,7,4,1,281,1380722,192595.23,684491.75,209096.13,3579.6924 -5909,7267,13112,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.8154464,7.8526654,5.9397144,0,0,-1012.6888,0,3,3,2019,8,0,30,30,1,0,0,10.529593,10.529593,0,0,0,0,0,0,0,0,0,6.0698047,58.91,45.88,-9,-9,10,1,1,0,0,12,2,3,0,741,542110.69,332632.59,0,0,1537.1996 -5910,7268,13113,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.3955302,7.4278998,0,0,-1097.756,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,5.665442,7.3062344,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,532,506974.41,184042.05,138547.83,0,1446.9413 -5911,7269,13114,13115,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,7.9328785,8.6070156,6.1919508,10,3,5.6223969,0,3,3,2019,8,0,16,-9,1,0,0,21.549006,21.549006,0,0,0,0,0,1,1,0,5.7303128,6.1377721,46.26,51.5,50.15,48.44,8.333333333333334,1,1,0,0,11,12,5,1,1090,3121986,1291512.8,305169.06,0,6699.0376 -5911,7269,13115,13114,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,9.1373301,8.5398712,10,-3,-20.583565,0,2,1,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,9.1894646,8.9375334,50.15,48.44,46.26,51.5,8.333333333333334,1,1,0,0,0,12,5,1,1090,3121986,1291512.8,305169.06,0,6699.0376 -5912,7270,13116,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.2788558,7.0555048,0,0,-936.87469,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.4263639,57.41,54.88,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,156,489630.06,311184.09,169140.34,0,1554.0366 -5913,7271,13117,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,3,0,0,0,0,0,-1015.8536,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.13,47.5,-9,-9,8.333333333333334,1,1,0,0,1,9,1,0,358,-85999.445,0,0,0,1355.2944 -5913,7271,13118,-9,13117,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1106.4226,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,1,0,358,-85999.445,0,0,0,1355.2944 -5914,7272,13119,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1121.8027,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,7.8289571,0,0,1,1,0,.56020516,0,35.52,21.44,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,504,-78485.953,0,50432.859,0,1146.9698 -5915,7273,13120,13121,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.0348005,6.5861025,20,-5,-59.543823,0,2,2,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.9921827,7.2910094,57.98,29.33,55.37,43.54,6.666666666666667,1,1,0,0,0,10,2,1,646.5,620251.38,295488.94,197517.06,0,2082.8672 -5915,7273,13121,13120,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.9298306,6.0643296,19,5,-24.370214,0,2,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.470613,5.7508965,55.37,43.54,57.98,29.33,10,4,2,0,0,0,10,2,1,646.5,620251.38,295488.94,197517.06,0,2082.8672 -5916,7274,13122,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.2508621,8.1085815,0,0,-929.23297,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.0259871,7.9319696,56.31,41.98,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,598,23153.822,0,0,0,1984.0759 -5917,7275,13123,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.6340256,7.4079781,0,0,0,-855.82025,0,2,1,2019,24,10,51,75,1,10,0,6.3885202,6.3885202,0,0,0,0,0,0,0,0,0,0,34.51,47.6,-9,-9,5,1,1,0,1,9,13,3,0,926,177294.47,-2809.4807,167393.52,0,557.59985 -5918,7276,13124,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1034.4202,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.93,37.5,-9,-9,1.666666666666667,1,1,0,0,0,8,1,0,419,-235115.28,0,0,0,1888.7198 -5919,7277,13125,13128,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.3816891,8.4714756,0,19,0,32.113365,0,3,3,2019,11,0,30,34,1,0,0,15.931334,15.931334,0,0,0,0,7,1,1,0,2.4035182,0,33.57,65.97,49.86,55.31,6.666666666666667,2,3,0,0,10,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 -5919,7277,13126,-9,13125,13128,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1132.0686,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 -5919,7277,13127,-9,13125,13128,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.447,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 -5919,7277,13128,13125,13129,-9,1,1,44,0,2,0,2,2,-9,0,4,8.3274565,8.0782909,0,8,0,-112.27168,0,3,3,2019,12,0,30,30,1,0,0,16.532688,16.532688,0,0,0,0,14.5,1,1,0,7.9968553,0,49.86,55.31,33.57,65.97,8.333333333333334,2,3,0,0,10,8,4,0,420.5,270664.09,113278.97,366411.72,108217.81,4496.0952 -5919,7278,13129,-9,-9,-9,1,0,75,0,2,0,3,3,-9,0,1,0,0,0,0,0,-1128.1283,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,14.163849,26.999504,132.48209,0,1,1,0,0,0,24.33,21.59,-9,-9,0,2,3,0,0,0,8,1,0,318,0,0,0,0,2026.1327 -5920,7279,13130,13131,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,36,-1,93.243439,0,2,2,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,2,0,0,0,4.2063007,0,41.12,47.92,57.65,56.13,6.666666666666667,1,1,0,0,0,6,2,1,844,92574.141,35930.102,0,0,6174.7021 -5920,7279,13131,13130,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,7.0750799,7.1887536,0,36,1,-18.77393,0,-9,3,2019,7,0,40,40,1,0,0,3.6706178,3.6706178,0,0,0,0,0,0,0,0,9.9221401,0,57.65,56.13,41.12,47.92,6.666666666666667,1,1,0,0,7,6,2,1,844,92574.141,35930.102,0,0,6174.7021 -5921,7280,13132,13135,-9,-9,1,1,47,1,2,0,2,2,-9,0,5,8.7065954,8.4332886,0,1,9,-67.278526,0,2,2,2019,10,0,50,50,1,0,0,14.466801,14.466801,0,0,0,0,0,1,1,0,3.2870464,0,49.79,51.62,58.32,50.22,8.333333333333334,1,1,0,0,9,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 -5921,7280,13133,-9,13135,13132,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.84174,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 -5921,7280,13134,-9,13135,13132,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.21802,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 -5921,7280,13135,13132,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.6343212,8.9033775,6.2872658,1,0,44.485046,-9,-9,-9,2019,9,0,72,0,1,0,0,11.768595,11.768595,0,0,0,0,0,1,1,0,6.7193956,0,58.32,50.22,49.79,51.62,8.333333333333334,1,1,0,0,5,2,5,1,830.75,367315.69,369623.06,139792.91,39467.629,5366.043 -5922,7281,13136,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.759686,6.8074541,0,0,-982.52692,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8828955,59.04,45.74,-9,-9,10,1,1,0,0,0,5,2,1,1150,645286.25,159465.58,103942.8,0,1382.5089 -5923,7282,13137,13138,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.5180426,8.0140867,0,6,10,-46.524929,0,-9,-9,2019,9,0,40,56,1,1,0,9.9633226,9.9633226,0,0,0,0,0,1,1,0,0,0,54,53,57.16,56.15,8,1,1,0,0,1,1,4,1,1455,-95196.828,145214.58,129410.1,11188.432,2560.6563 -5923,7282,13138,13137,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7378941,7.4948549,0,23,-10,-141.72412,0,2,2,2019,10,0,23,23,1,0,0,10.48104,10.48104,0,0,0,0,0,1,1,0,2.5360076,0,57.16,56.15,54,53,8.333333333333334,1,1,0,0,8,1,4,1,1455,-95196.828,145214.58,129410.1,11188.432,2560.6563 -5924,7283,13139,13140,-9,-9,1,1,41,1,3,0,2,2,-9,1,2,0,0,0,1,11,-210.71272,-9,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.26,51.93,53.54,52.35,1.666666666666667,1,1,0,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 -5924,7283,13140,13139,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,3.5629308,3.8312602,0,1,-11,-48.958797,-9,3,2,2019,7,0,28,0,1,0,0,.16216934,.16216934,0,0,0,0,0,1,1,0,0,0,53.54,52.35,26.26,51.93,6.666666666666667,1,1,0,0,4,4,2,0,389.39999,126854.47,0,0,0,2674.8511 -5924,7283,13141,-9,13140,13139,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6556,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 -5924,7283,13142,-9,13140,13139,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-962.15491,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 -5924,7283,13143,-9,13140,13139,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-914.03485,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,389.39999,126854.47,0,0,0,2674.8511 -5925,7284,13144,13145,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,48,2,157.68274,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,9.3259325,0,52,47,55.19,54.26,7,1,1,0,0,0,10,2,1,1742,757823.38,0,384003,0,6815.2622 -5925,7284,13145,13144,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.86836,6.6992173,49,-2,-46.275578,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6409767,6.8157659,55.19,54.26,52,47,8.333333333333334,1,1,0,0,5,10,2,1,1742,757823.38,0,384003,0,6815.2622 -5925,7285,13146,-9,13145,13144,1,1,35,0,0,0,2,2,-9,0,5,8.2454567,8.0169954,0,0,0,-934.15503,0,1,1,2019,6,0,39,39,1,0,0,9.8339128,9.8339128,0,0,0,0,0,1,1,0,4.9324894,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,741,196656.11,20319.232,0,0,907.9314 -5926,7286,13147,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.7250624,7.8336086,0,0,-1122.9744,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.9747467,7.8055558,54,45,-9,-9,8,1,1,0,0,11,2,3,1,1131,510223.44,247677.88,0,0,1297.1399 -5927,7287,13148,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.5532398,8.6959343,0,0,0,-862.55853,0,3,3,2019,11,0,65,42,1,0,0,11.829155,11.829155,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,2,5,0,194,990450.44,752682.88,39168.234,45269.926,3718.2424 -5928,7288,13149,-9,13152,13150,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.52325,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 -5928,7288,13150,13152,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.7044411,9.7466002,0,15,3,-36.404934,-9,-9,-9,2019,10,0,40,0,1,1,0,45.872498,45.872498,0,0,0,0,0,1,0,1,7.0078149,0,50,57,48.68,51.88,7,1,1,0,0,1,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 -5928,7288,13151,-9,13152,13150,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.26367,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,4,2,-9,0,0,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 -5928,7288,13152,13150,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7170448,7.6252666,0,21,-3,-63.523331,0,3,1,2019,14,4,27,32,1,4,0,10.434134,10.434134,0,0,0,0,0,1,0,1,0,0,48.68,51.88,50,57,8.333333333333334,4,2,0,0,10,7,5,1,934.75,921719.31,170317.47,1024150.3,287839.94,8022.9346 -5929,7289,13153,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.8196487,6.6799564,0,0,-971.22998,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.668993,0,51,46,-9,-9,7,1,1,0,0,0,13,2,0,376,358042,234252.14,214419.89,0,2028.3533 -5930,7290,13154,13156,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,0,0,0,3,-1,-120.63047,0,2,1,2019,25,11,0,44,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,29.56,52.45,57.16,56.15,6.666666666666667,1,1,1,0,10,2,3,0,1226,81208.898,-1856.0781,0,0,1054.8726 -5930,7290,13155,-9,13154,13156,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.1508,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,1226,81208.898,-1856.0781,0,0,1054.8726 -5930,7290,13156,13154,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,7.8402762,7.7755804,0,3,1,-48.475018,0,-9,-9,2019,7,0,30,60,1,0,0,9.6170006,9.6170006,0,0,0,0,0,0,0,0,0,0,57.16,56.15,29.56,52.45,6.666666666666667,1,1,0,0,10,2,3,0,1226,81208.898,-1856.0781,0,0,1054.8726 -5931,7291,13157,13158,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,7.4335594,7.3710399,62,1,-11.541343,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,6.2884593,0,0,1,1,0,0,7.1140022,49.04,25.26,60.3,36.05,8.333333333333334,1,1,0,0,0,9,2,1,1025,1081683.1,92882.422,561503,0,1530.3696 -5931,7291,13158,13157,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,5.9472451,6.0060539,62,-1,24.493107,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.1248937,60.3,36.05,49.04,25.26,10,1,1,0,0,5,9,2,1,1025,1081683.1,92882.422,561503,0,1530.3696 -5932,7292,13159,-9,13162,13160,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.8002,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 -5932,7292,13160,13162,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,0,0,0,6,0,0,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,48.11,57.06,57.76,5,1,1,1,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 -5932,7292,13161,-9,13162,13160,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.4943,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 -5932,7292,13162,13160,-9,-9,1,0,32,0,3,0,3,3,-9,0,5,0,0,0,6,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,42.1,48.11,10,1,1,1,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 -5932,7292,13163,-9,13162,13160,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.2603,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,616.79999,-52412.863,0,156824.77,0,1732.7372 -5933,7293,13164,13165,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7040296,7.8223777,0,10,0,-70.39521,0,-9,-9,2019,22,10,38,44,1,10,0,6.7204218,6.7204218,0,0,0,0,0,0,0,0,4.6651211,0,22.3,38.76,61.25,32.49,1.666666666666667,1,1,0,1,10,12,4,1,132.5,224928.44,-3047.6797,192987.78,165382.97,2432.2222 -5933,7293,13165,13164,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.988409,8.0664186,0,10,9,137.80264,0,3,2,2019,11,1,12,12,1,1,0,36.440105,36.440105,0,0,0,0,2,0,0,0,1.3376292,0,61.25,32.49,22.3,38.76,8.333333333333334,1,1,0,0,10,12,4,1,132.5,224928.44,-3047.6797,192987.78,165382.97,2432.2222 -5934,7294,13166,13167,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.7090235,7.3890944,7,-2,-76.079437,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3914661,61.43,43.34,48.93,48.97,8.333333333333334,1,1,0,0,0,12,2,1,378.5,171120.02,190712.69,123206.16,0,1584.8853 -5934,7294,13167,13166,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,7,2,9.194932,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.93,48.97,61.43,43.34,8.333333333333334,1,1,0,0,0,12,2,1,378.5,171120.02,190712.69,123206.16,0,1584.8853 -5935,7295,13168,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9340158,7.753849,0,0,0,-998.42389,0,2,2,2019,12,0,50,40,1,0,0,5.968863,5.968863,0,0,0,0,0,0,0,0,.72806162,0,58.15,52.91,-9,-9,5,1,1,0,0,10,4,4,1,268,-115088.02,-2349.9038,0,0,717.284 -5936,7296,13169,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1057.7858,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.0236056,0,48.87,58.55,-9,-9,10,1,1,1,0,9,5,1,1,1423,-205956.45,-6518.2896,0,0,-642.24005 -5937,7297,13170,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-963.97437,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.09,36.82,-9,-9,5,1,1,0,1,0,4,1,0,275,-114018.8,0,0,0,1003.5737 -5938,7298,13171,13172,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.4080825,7.5745082,0,13,-6,39.890511,0,2,2,2019,7,1,56,56,1,1,0,3.4390087,3.4390087,0,0,0,0,0,1,1,0,8.740099,0,45.27,52.06,56.57,57.78,8.333333333333334,1,1,0,0,3,8,3,1,369.5,163184.14,-31158.781,241685.91,104228.29,7042.9971 -5938,7298,13172,13171,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.7208371,7.3701358,0,13,6,-3.679296,0,2,2,2019,5,1,28,30,1,1,0,9.9475689,9.9475689,0,0,0,0,2,1,1,0,8.7551804,0,56.57,57.78,45.27,52.06,8.333333333333334,1,1,0,0,8,8,3,1,369.5,163184.14,-31158.781,241685.91,104228.29,7042.9971 -5939,7299,13173,-9,13176,13175,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1005.088,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.53,63.13,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,602,-48181.199,0,0,0,3818.4214 -5939,7299,13174,-9,13176,13175,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.9521,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,602,-48181.199,0,0,0,3818.4214 -5939,7299,13175,13176,-9,-9,1,1,51,0,2,0,2,2,-9,1,1,0,0,0,9,12,0,0,3,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,53.52,8.32,33.87,37.06,1.666666666666667,1,1,1,0,3,13,1,0,602,-48181.199,0,0,0,3818.4214 -5939,7299,13176,13175,-9,-9,1,0,39,0,2,0,2,2,-9,1,1,0,0,0,9,-12,0,0,2,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.87,37.06,53.52,8.32,6.666666666666667,1,1,0,0,2,13,1,0,602,-48181.199,0,0,0,3818.4214 -5940,7300,13177,13178,-9,-9,1,1,78,0,1,0,1,1,-9,0,3,0,0,0,3,21,15.873073,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,34.62,35.98,8,1,1,0,0,0,11,2,1,167,589017.81,167426.28,258336.19,0,1095.5081 -5940,7300,13178,13177,-9,-9,1,0,57,0,1,0,2,2,-9,1,2,6.2619524,6.9162598,6.7737284,3,-21,61.071869,0,2,3,2019,25,9,8,0,1,9,0,8.5278234,8.5278234,0,0,0,0,118,1,1,0,0,6.6034441,34.62,35.98,54,46,0,1,1,0,0,7,11,2,1,167,589017.81,167426.28,258336.19,0,1095.5081 -5940,7301,13179,-9,13178,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1004.0195,0,2,-9,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,7,1,1,0,0,0,39.34,48.15,-9,-9,6.666666666666667,1,1,1,0,3,11,1,1,643,41937.918,0,0,0,949.15503 -5940,7301,13180,-9,13179,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.28406,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,1,643,41937.918,0,0,0,949.15503 -5941,7302,13181,13182,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,7.6743603,7.7113414,0,5,3,-14.478082,0,-9,-9,2019,20,8,30,25,1,8,0,8.6985655,8.6985655,0,0,0,0,0,1,1,0,0,0,30.95,55.52,55.52,32.47,6.666666666666667,1,1,0,0,3,8,4,0,605.5,8018.1328,49340.059,0,0,2867.2129 -5941,7302,13182,13181,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.2465439,8.8266792,0,5,-3,58.727047,0,-9,-9,2019,8,0,45,50,1,0,0,10.201296,10.201296,0,0,0,0,0,1,1,0,0,0,55.52,32.47,30.95,55.52,6.666666666666667,1,1,0,0,6,8,4,0,605.5,8018.1328,49340.059,0,0,2867.2129 -5941,7303,13183,-9,13181,13182,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-861.09357,0,2,2,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,1,1,1,0,0,8,1,0,380,0,0,0,0,272.91113 -5942,7304,13184,13185,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.0365295,6.0799313,6,1,-113.57809,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.9926424,6.067225,47.31,35.51,57.33,53.46,8.333333333333334,1,1,0,0,0,5,3,1,1373,1784058.3,356139.81,273054.81,0,3123.5605 -5942,7304,13185,13184,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.5145721,8.3319321,6,-1,22.966829,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0698695,8.3752861,57.33,53.46,47.31,35.51,8.333333333333334,1,1,0,0,0,5,3,1,1373,1784058.3,356139.81,273054.81,0,3123.5605 -5943,7305,13186,-9,13188,13189,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.3985,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,594.5,130177.8,0,0,0,1225.6575 -5943,7305,13187,-9,13188,13189,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.32886,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,594.5,130177.8,0,0,0,1225.6575 -5943,7305,13188,13189,-9,-9,1,0,27,1,2,0,3,3,-9,0,3,0,0,0,4,-1,-44.186317,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.39,52.15,45.91,59.89,5,1,1,1,1,0,12,2,0,594.5,130177.8,0,0,0,1225.6575 -5943,7305,13189,13188,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,7.7252369,8.0417891,0,4,1,-113.41528,0,2,2,2019,10,0,56,55,1,0,0,5.9832773,5.9832773,0,0,0,0,0,1,1,0,0,0,45.91,59.89,42.39,52.15,6.666666666666667,1,1,0,0,8,12,2,0,594.5,130177.8,0,0,0,1225.6575 -5944,7306,13190,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.6404128,6.4797592,0,0,-1125.4309,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,3.4995661,0,0,1,1,0,6.3115664,6.7956271,40.98,42.72,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,842,792939,303366.03,320829.94,0,1160.7183 -5944,7307,13191,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.48193,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.16,55.33,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,411,269650.53,0,0,0,1610.718 -5945,7308,13192,-9,13194,13193,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-867.70465,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 -5945,7308,13193,13194,-9,-9,1,1,27,1,2,0,2,2,-9,0,3,8.7105703,8.5990009,0,3,-4,64.65406,0,-9,-9,2019,14,2,40,40,1,2,0,17.601877,17.601877,0,0,0,0,0,1,1,0,0,0,40.8,47.62,57.16,56.15,5,2,3,0,0,3,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 -5945,7308,13194,13193,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,3,4,-146.68497,0,-9,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,40.8,47.62,10,2,3,0,0,3,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 -5945,7308,13195,-9,13194,13193,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.55499,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,4,1,582.5,156469.73,-1277.0587,224876.78,157340.19,2440.3691 -5946,7309,13196,-9,13197,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-854.45563,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,2,0,725,407648.09,0,138193.94,8575.2744,1082.2288 -5946,7309,13197,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.1959176,7.2186241,4.6878214,0,0,-879.45148,0,2,2,2019,11,1,27,28,1,1,0,6.0965805,6.0965805,0,0,0,0,0,1,1,0,5.4776154,0,46.26,42.16,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,725,407648.09,0,138193.94,8575.2744,1082.2288 -5947,7310,13198,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1206355,6.2971945,0,0,-1002.8077,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,6.7672777,0,7,1,1,0,2.5163901,6.3517728,39.73,37.29,-9,-9,3.333333333333333,1,1,0,1,0,13,2,1,873,494174.91,20159.502,402956.41,0,826.05005 -5947,7311,13199,-9,13198,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-826.13251,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.63,38.95,-9,-9,6.666666666666667,1,1,0,0,6,13,1,1,400,0,0,0,0,611.89233 -5947,7312,13200,-9,13198,-9,1,0,48,0,0,0,2,2,-9,1,1,7.1882272,7.1927147,0,0,0,-974.03973,0,2,3,2019,31,12,27,27,1,12,0,6.0624261,6.0624261,0,0,0,0,7,1,1,0,0,0,30.53,36.5,-9,-9,1.666666666666667,1,1,0,1,9,13,3,1,790,-370173.91,0,0,0,1330.4945 -5948,7313,13201,-9,13202,13203,1,0,35,0,0,0,2,2,-9,0,3,8.7633648,8.35569,0,0,0,-1032.9302,0,3,2,2019,11,1,55,60,1,1,0,9.9944181,9.9944181,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,10,10,5,1,1098,-34456.824,96677.555,0,0,2451.6133 -5948,7314,13202,13203,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,7.5980735,7.3985257,0,48,4,37.993736,0,3,3,2019,6,0,40,40,1,0,0,5.9151387,5.9151387,0,0,0,0,0,1,1,0,0,0,57.92,51.82,57.16,56.15,8.333333333333334,1,1,0,0,10,10,3,1,1683,829652.31,77519.414,754628.19,0,3444.2769 -5948,7314,13203,13202,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,7.3786745,7.7611895,5.7087021,48,-4,-50.32328,0,3,3,2019,7,0,25,21,1,0,0,6.5140495,6.5140495,0,0,0,0,0,1,1,0,4.777545,5.7411876,57.16,56.15,57.92,51.82,10,1,1,0,0,9,10,3,1,1683,829652.31,77519.414,754628.19,0,3444.2769 -5949,7315,13204,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.3337593,8.2802477,0,0,-957.50067,0,3,2,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.3201113,7.9467196,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,276,1714972.6,1255682.4,299335.09,0,2757.9548 -5950,7316,13205,-9,13206,13207,1,1,24,0,0,0,2,2,-9,0,3,8.0354433,7.7978492,0,0,0,-1022.4335,0,2,2,2019,8,0,40,45,1,0,1,7.385499,7.385499,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1570,-116434.68,0,0,0,1087.4623 -5950,7317,13206,13207,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1947212,7.7675462,0,9,-2,-149.04562,0,3,3,2019,21,9,38,38,1,9,0,9.0718126,9.0718126,0,0,0,0,0,0,0,0,0,0,38.63,57.58,47.61,53.7,6.666666666666667,1,1,0,0,10,9,5,1,465.5,2930496.5,1098184.3,1368577.1,102709.49,3270.4023 -5950,7317,13207,13206,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.4809523,8.4551601,0,9,2,-76.411301,0,2,2,2019,9,0,45,42,1,0,0,13.438257,13.438257,0,0,0,0,0,0,0,0,3.4217317,0,47.61,53.7,38.63,57.58,10,1,1,0,0,9,9,5,1,465.5,2930496.5,1098184.3,1368577.1,102709.49,3270.4023 -5951,7318,13208,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1056.0547,0,2,2,2019,7,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0150752,0,44.59,59.08,-9,-9,8.333333333333334,1,1,0,0,11,12,1,1,485,764886.44,91642.898,403374.63,0,-284.67218 -5952,7319,13209,-9,13213,13211,1,0,19,0,4,1,2,0,0,0,4,0,0,0,0,0,-974.78119,-9,1,2,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,5.48,1,1,0,0,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,0,3,2,1,0,313,253625.5,0,0,0,0 -5952,7320,13210,-9,13213,13211,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.4469,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 -5952,7320,13211,13213,-9,-9,1,1,43,0,4,0,2,2,-9,0,2,7.6535153,7.7591138,0,6,3,98.278824,0,-9,-9,2019,13,1,48,38,1,1,0,7.454422,7.454422,0,0,0,0,78,1,1,0,2.4267869,0,34.76,45.21,40.55,23.7,3.333333333333333,1,1,0,0,5,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 -5952,7320,13212,-9,13213,13211,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.7597,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 -5952,7320,13213,13211,-9,-9,1,0,40,0,4,0,1,1,-9,1,1,0,0,0,6,-3,2.6744771,0,1,2,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,40.55,23.7,34.76,45.21,5,1,1,0,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 -5952,7320,13214,-9,13213,13211,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.1912,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 -5952,7320,13215,-9,13213,13211,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.2888,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,546.66669,80928.922,44501.102,134611.27,77573.406,5931.063 -5953,7321,13216,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-978.89355,0,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,0,43.42,38.73,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1430,-234310.22,-95510.695,0,0,1935.9984 -5954,7322,13217,13218,-9,-9,1,0,53,0,1,0,2,2,-9,1,2,0,0,0,27,-1,-52.853401,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.91,31.46,48.37,38.61,5,1,1,0,0,0,11,2,0,285.5,199484.25,29239.975,156415.25,33440.816,2382.1875 -5954,7322,13218,13217,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,7.7760434,7.8057942,0,6,1,11.703715,0,-9,-9,2019,11,0,40,40,1,0,0,7.2664547,7.2664547,0,0,0,0,0,1,1,0,0,0,48.37,38.61,43.91,31.46,8.333333333333334,1,1,0,0,1,11,2,0,285.5,199484.25,29239.975,156415.25,33440.816,2382.1875 -5955,7323,13219,13221,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.0546961,8.471859,0,6,-6,52.864796,-9,2,2,2019,11,0,35,0,1,2,0,12.987622,12.987622,0,0,0,0,0,1,1,0,.6150682,0,48,57,56.35,51.16,7,1,1,0,0,5,4,4,0,490.66666,331367.38,312692.28,82042.172,4402.0933,2895.5308 -5955,7323,13220,-9,13219,13221,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.07745,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,4,0,490.66666,331367.38,312692.28,82042.172,4402.0933,2895.5308 -5955,7323,13221,13219,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.9480047,8.0936413,0,6,6,55.241142,-9,3,-9,2019,10,0,35,0,1,0,0,10.144038,10.144038,0,0,0,0,0,1,1,0,0,0,56.35,51.16,48,57,6.666666666666667,4,2,0,0,7,4,4,0,490.66666,331367.38,312692.28,82042.172,4402.0933,2895.5308 -5956,7324,13222,13223,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.5937352,7.0524411,44,5,-29.073372,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.2380176,6.8175855,38.94,40.16,66.44,47.81,6.666666666666667,1,1,0,0,4,1,2,1,690.5,649878.38,330818.44,108855.2,0,1040.1937 -5956,7324,13223,13222,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.7696028,6.010951,44,-5,5.5993247,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0355999,5.7964926,66.44,47.81,38.94,40.16,10,1,1,0,0,0,1,2,1,690.5,649878.38,330818.44,108855.2,0,1040.1937 -5957,7325,13224,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.0135193,8.286377,5.6153622,0,0,-939.65778,0,2,2,2019,10,1,30,9,1,1,0,14.189632,14.189632,0,0,0,0,0,1,1,0,5.4449172,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,2,2,3,0,385.5,-105638.64,29986.902,0,0,3525.7974 -5957,7325,13225,-9,13224,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.9229,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,2,3,0,385.5,-105638.64,29986.902,0,0,3525.7974 -5957,7326,13226,-9,13224,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1084.8621,-9,1,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,57.34,47.92,-9,-9,3.333333333333333,3,4,0,0,1,2,1,0,274,-29904.166,0,0,0,0 -5958,7327,13227,13228,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.5499439,9.5343008,0,32,-3,-63.675457,0,-9,-9,2019,16,3,43,45,1,3,0,34.715496,34.715496,0,0,0,0,0,0,0,0,0,0,38.15,62.02,53.68,45.47,3.333333333333333,1,1,0,0,9,6,5,1,1029.5,640511.25,-11458.994,368982.31,0,5702.8877 -5958,7327,13228,13227,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.3915429,7.0908852,32,3,-128.62038,0,-9,-9,2019,12,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1999359,53.68,45.47,38.15,62.02,8.333333333333334,1,1,0,0,9,6,5,1,1029.5,640511.25,-11458.994,368982.31,0,5702.8877 -5959,7328,13229,13231,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.4694624,5.9111905,0,31,-4,55.000332,0,3,2,2019,10,0,24,20,1,1,0,3.1318297,3.1318297,0,0,0,0,0,1,1,0,0,0,50,54,53,54,8,3,4,0,0,2,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 -5959,7328,13230,-9,13229,13231,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-985.14099,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 -5959,7328,13231,13229,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,7.8954444,8.0720034,0,31,4,-63.913502,0,3,3,2019,9,0,24,20,1,1,0,11.601678,11.601678,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,3,4,0,1,3,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 -5959,7328,13232,-9,13229,13231,1,0,17,0,2,1,2,0,0,1,2,0,0,0,0,0,-915.31201,-9,3,2,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,23.84,-9,-9,5,3,4,0,0,0,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 -5959,7328,13233,-9,13229,13231,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-987.65576,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,1478.8,758643.44,89489.375,806062.88,106711.19,4757.8369 -5959,7329,13234,-9,13229,13231,1,1,20,0,2,0,2,2,-9,0,4,6.5916138,7.0317664,0,0,0,-1023.033,0,3,2,2019,11,0,24,0,1,2,1,4.3957152,4.3957152,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,2,0,981,13197.332,0,0,0,798.05115 -5959,7330,13235,-9,13229,13231,1,0,18,0,2,0,2,2,0,1,1,0,0,0,0,0,-1049.6992,-9,3,2,2019,21,0,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,44.58,19.11,-9,-9,5,3,4,0,0,1,8,1,0,966,-277442.28,0,0,0,547.76147 -5959,7331,13236,-9,13229,13231,1,1,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-906.66187,-9,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,890,0,0,0,0,565.05817 -5960,7332,13237,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.0631666,7.6386852,0,0,-1083.9626,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5798681,8.0241585,64.05,42.36,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,799,740303.19,406511.53,378270.13,0,2667.4858 -5961,7333,13238,13239,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.3378544,8.2232609,0,20,5,96.954231,0,2,2,2019,12,3,48,52,1,3,0,10.61182,10.61182,0,0,0,0,0,1,1,0,3.3924065,0,38.34,62.12,49.52,56.95,5,2,3,0,0,9,6,4,1,822,1050056.9,718606.13,201829.09,0,3833.2771 -5961,7333,13239,13238,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.6733646,8.6808462,0,20,-5,-1.4669614,0,1,2,2019,9,0,37,37,1,0,0,18.847502,18.847502,0,0,0,0,0,1,1,0,0,0,49.52,56.95,38.34,62.12,8.333333333333334,2,3,0,0,9,6,4,1,822,1050056.9,718606.13,201829.09,0,3833.2771 -5961,7333,13240,-9,13239,13238,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.34973,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,6,4,1,822,1050056.9,718606.13,201829.09,0,3833.2771 -5961,7334,13241,-9,13239,13238,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.32086,-9,1,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,0,2,3,0,0,0,6,1,1,450,234324.44,0,0,0,0 -5962,7335,13242,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,7.7002029,7.4799914,0,0,0,-1109.5291,0,3,2,2019,10,1,45,17,1,1,0,5.6009817,5.6009817,0,0,0,0,2,1,1,0,0,0,48.89,38.67,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,2486,1105952,218023.08,197371.39,0,1443.812 -5963,7336,13243,-9,13246,13244,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-926.36761,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 -5963,7336,13244,13246,-9,-9,1,1,41,1,4,0,2,2,-9,0,4,7.3476558,7.0839019,0,18,4,-57.154896,0,-9,2,2019,11,0,35,30,1,0,0,4.0845623,4.0845623,0,0,0,0,0,1,1,0,6.2231855,0,54.2,57.49,49,56,8.333333333333334,2,3,0,0,10,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 -5963,7336,13245,-9,13246,13244,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-915.55609,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 -5963,7336,13246,13244,-9,-9,1,0,37,1,4,0,2,2,-9,0,4,0,0,0,18,-4,-5.4044371,0,3,3,2019,11,0,0,15,3,2,0,0,0,0,0,0,0,0,1,1,0,8.3609276,0,49,56,54.2,57.49,7,2,3,0,0,9,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 -5963,7336,13247,-9,13246,13244,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1079.5265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,574.79999,192012.41,0,196293.7,16025.264,3975.3179 -5964,7337,13248,13250,-9,-9,1,1,31,0,3,0,2,2,-9,0,4,7.2709904,7.3799977,0,1,1,-2.02788,-9,2,2,2019,10,0,60,0,1,0,0,3.4147906,3.4147906,0,0,0,0,0,1,1,0,0,0,49.86,55.31,32.23,47.35,5,1,1,0,0,5,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 -5964,7337,13249,-9,13250,13248,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1022.6465,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 -5964,7337,13250,13248,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,0,0,0,1,-1,-148.94588,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.23,47.35,49.86,55.31,3.333333333333333,1,1,1,0,3,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 -5964,7337,13251,-9,13250,13248,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.23657,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 -5964,7337,13252,-9,13250,13248,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.5785,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,1139.6,-97636.883,51557.648,0,0,2279.95 -5965,7338,13253,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.9722953,5.9146476,0,0,-1000.0435,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,1.2924023,0,0,0,1,1,0,5.491498,6.3461323,52,46,-9,-9,8,1,1,0,0,0,9,2,0,1038,326540.03,143985.44,257355.55,0,1089.8293 -5966,7339,13254,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-934.75061,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,14.06,30.46,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,210,177778.59,0,0,0,1307.5001 -5967,7340,13255,13256,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.3829222,6.5054455,54,2,26.949198,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.9513941,0,0,1,1,0,4.2900987,6.5124383,54.21,45.2,40.72,36.89,10,1,1,0,0,0,12,2,1,889,276273.38,146055.72,192328.97,0,2061.3445 -5967,7340,13256,13255,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,54,-2,154.14455,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,.82646567,0,0,1,1,0,3.2686944,0,40.72,36.89,54.21,45.2,5,1,1,0,0,0,12,2,1,889,276273.38,146055.72,192328.97,0,2061.3445 -5968,7341,13257,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.6968298,7.5730324,0,0,-962.76898,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.9090118,7.8609543,57.03,34.83,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,538,188260.88,238860.66,117718.42,0,2277.9893 -5969,7342,13258,13259,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,6.9848104,6.5719714,68,2,-28.480295,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,6.0118499,0,0,1,1,0,4.2182422,6.9825206,56,44,45.99,57.05,8,1,1,0,0,0,5,2,1,428.5,367625.75,77493.969,160011.09,0,1908.4973 -5969,7342,13259,13258,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.3161855,5.5974545,68,-2,-30.21789,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,6.3438325,5.2758155,45.99,57.05,56,44,10,1,1,0,0,0,5,2,1,428.5,367625.75,77493.969,160011.09,0,1908.4973 -5969,7343,13260,-9,13259,13258,1,1,64,0,0,0,3,3,-9,0,3,6.8117299,8.0677214,7.8874917,0,0,-1020.617,0,3,3,2019,9,1,25,20,1,1,0,3.3858073,3.3858073,0,0,0,0,14.5,1,1,0,7.4910579,7.3683634,51.98,46.5,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,371,-104121.7,107391.36,193710.17,0,1601.2645 -5970,7344,13261,13262,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0165691,7.9379568,0,5,5,-29.960493,0,3,3,2019,12,1,40,40,1,1,0,8.1951933,8.1951933,0,0,0,0,2,0,0,0,0,0,43.2,59.97,57.06,57.76,8.333333333333334,1,1,0,0,3,5,5,1,1384,296912.28,278079.56,233230.64,18314.527,3661.1748 -5970,7344,13262,13261,-9,-9,1,0,35,0,0,0,2,2,-9,0,5,8.7333298,8.8584213,0,5,-5,-60.923443,0,2,2,2019,9,1,40,40,1,1,0,14.023706,14.023706,0,0,0,0,0,0,0,0,1.0947708,0,57.06,57.76,43.2,59.97,8.333333333333334,1,1,0,0,8,5,5,1,1384,296912.28,278079.56,233230.64,18314.527,3661.1748 -5971,7345,13263,-9,13268,13265,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.9418,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 -5971,7345,13264,-9,13268,13265,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.78906,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 -5971,7345,13265,13268,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,7.1578813,6.990994,0,19,4,-30.508587,0,-9,-9,2019,12,0,35,35,1,0,0,4.3269749,4.3269749,0,0,0,0,0,1,1,0,0,0,48,51,26.24,42.21,6.666666666666667,2,3,0,1,10,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 -5971,7345,13266,-9,13268,13265,1,1,17,0,3,0,2,2,-9,0,5,0,0,0,0,0,-1159.9556,-9,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 -5971,7345,13267,-9,13268,13265,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.80011,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 -5971,7345,13268,13265,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,0,0,0,19,-4,31.587461,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,26.24,42.21,48,51,3.333333333333333,2,3,1,1,0,6,2,0,526.33331,161216.53,49898.797,217890.2,134715.22,2487.5454 -5972,7346,13269,-9,13272,13271,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-849.76239,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 -5972,7346,13270,-9,13272,13271,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.8138,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 -5972,7346,13271,13272,-9,-9,1,1,34,2,2,0,1,1,-9,0,4,9.6041126,9.6791391,0,5,0,23.744656,0,1,1,2019,10,2,45,40,1,2,0,31.217348,31.217348,0,0,0,0,0,0,0,0,0,0,43.54,59.6,43.44,61.22,6.666666666666667,4,2,0,0,11,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 -5972,7346,13272,13271,-9,-9,1,0,34,2,2,0,1,1,-9,0,5,8.4553051,8.349577,0,5,0,84.533676,0,-9,-9,2019,11,1,38,38,1,1,0,16.951153,16.951153,0,0,0,0,0,0,0,0,0,0,43.44,61.22,43.54,59.6,8.333333333333334,1,1,0,0,8,10,5,1,714,391747.47,66835.078,630970.38,241027.72,6499.7168 -5973,7347,13273,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-883.76526,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.54,19.29,-9,-9,5,1,1,0,0,0,13,1,0,851,0,0,0,0,1712.1808 -5973,7348,13274,-9,13273,-9,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-929.45093,0,2,-9,2019,17,5,0,30,3,5,1,0,0,0,0,0,0,14.5,1,1,0,0,0,51.66,54.88,-9,-9,5,1,1,1,1,1,13,1,0,1134,75974.953,0,0,0,78.345108 -5974,7349,13275,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.6139402,4.8139043,0,0,-1080.9624,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7877994,57.16,56.15,-9,-9,10,1,1,0,0,0,10,2,0,932,538577.31,-14618.494,67759.25,0,179.80193 -5975,7350,13276,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8946676,7.6144352,0,0,0,-796.7663,0,-9,2,2019,12,0,39,34,1,0,0,9.4385147,9.4385147,0,0,0,0,0,0,0,0,0,0,50.42,41.42,-9,-9,8.333333333333334,1,1,0,0,13,5,3,0,224,430842.56,213253.89,111996.24,0,759.48602 -5976,7351,13277,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5035729,7.1626964,0,0,-931.49554,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0875702,7.2536664,61.28,48.88,-9,-9,10,1,1,0,0,0,4,3,1,133,678256.94,266687.19,193660.95,0,2106.7654 -5977,7352,13278,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-953.41168,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,340,78539.344,0,0,0,257.37241 -5978,7353,13279,-9,13281,13280,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.75049,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 -5978,7353,13280,13281,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,0,0,0,8,0,189.59584,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,58.34,30.87,65.23999999999999,3.333333333333333,1,1,1,0,8,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 -5978,7353,13281,13280,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,8.9108772,9.3094349,0,8,0,8.1112661,0,2,2,2019,16,5,33,24,1,5,0,24.652559,24.652559,0,0,0,0,0,1,1,0,.25010985,0,30.87,65.23999999999999,34.65,58.34,5,1,1,0,0,2,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 -5978,7353,13282,-9,13281,13280,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-864.12463,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 -5978,7353,13283,-9,13281,13280,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.7181,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,882,288865.31,0,505519.22,220707.27,2942.634 -5979,7354,13284,13285,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.8668942,7.562561,52,2,107.373,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4554217,8.0283365,57.71,46.52,45.43,52.17,8.333333333333334,1,1,0,0,0,2,3,1,523,926745.56,319182.59,376329.13,0,2664.603 -5979,7354,13285,13284,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,52,-2,60.53669,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9780862,0,45.43,52.17,57.71,46.52,8.333333333333334,1,1,0,0,0,2,3,1,523,926745.56,319182.59,376329.13,0,2664.603 -5980,7355,13286,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-958.79193,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.19,42.77,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,1524,151315.33,0,0,0,1083.5995 -5981,7356,13287,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,5.8960195,5.8101959,0,0,-1034.6077,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3115168,5.6346326,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,304,244100.2,61601.688,126224.53,0,1035.4097 -5982,7357,13288,13289,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,38,-3,147.58647,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.98427838,0,49.66,36.69,50.51,42.98,5,1,1,0,1,12,12,2,1,978.5,366604.63,182337.03,107201.09,0,1639.7876 -5982,7357,13289,13288,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.509438,7.1217957,38,3,104.68356,0,2,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9570136,50.51,42.98,49.66,36.69,8.333333333333334,1,1,0,0,11,12,2,1,978.5,366604.63,182337.03,107201.09,0,1639.7876 -5983,7358,13290,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,5.9981985,6.142477,0,0,0,-1107.9935,-9,2,2,2019,8,1,7,0,1,1,1,6.1437287,6.1437287,0,0,0,0,0,1,0,1,0,0,35.68,62.23,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,640,-270681.44,0,0,0,-191.56392 -5984,7359,13291,13292,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.9736733,7.4100895,62,5,19.444715,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5065908,55.05,33.87,47.84,45.32,10,1,1,0,0,0,10,3,1,965.5,786876.13,236982.97,499408.69,0,2079.9155 -5984,7359,13292,13291,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.3799367,5.332602,62,-5,42.608665,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.2840519,5.4697871,47.84,45.32,55.05,33.87,8.333333333333334,1,1,0,0,0,10,3,1,965.5,786876.13,236982.97,499408.69,0,2079.9155 -5985,7360,13293,-9,13295,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6915,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,508.66666,88468.891,-6320.7593,0,0,1674.3501 -5985,7360,13294,-9,13295,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.97815,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,2,0,508.66666,88468.891,-6320.7593,0,0,1674.3501 -5985,7360,13295,-9,-9,-9,1,0,39,0,2,0,2,2,0,0,5,0,6.2166009,6.247582,0,0,-1046.4067,-9,3,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.543849,0,46.99,58.37,-9,-9,8.333333333333334,1,1,0,0,6,5,2,0,508.66666,88468.891,-6320.7593,0,0,1674.3501 -5986,7361,13296,-9,13297,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.3877,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,504.5,-40004.273,0,0,0,912.76611 -5986,7361,13297,-9,-9,-9,1,0,23,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1040.2456,-9,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,26.9,47.68,-9,-9,5,1,1,1,0,0,9,1,0,504.5,-40004.273,0,0,0,912.76611 -5987,7362,13298,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.8088803,7.7919393,0,0,-996.22797,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.7659388,7.9820094,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,176,1361733,388702.69,469594.09,0,1355.9379 -5988,7363,13299,-9,13300,13301,1,1,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-975.62366,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,955.33331,905648.44,996887.94,281985.38,0,1546.8695 -5988,7363,13300,13301,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,6.0495343,6.1468506,26,0,-114.553,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,0,0,0,5.6523805,6.1313124,50.34,56.4,58.32,50.22,6.666666666666667,1,1,0,0,9,9,3,1,955.33331,905648.44,996887.94,281985.38,0,1546.8695 -5988,7363,13301,13300,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.0462675,8.0179958,26,0,28.879034,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,3.8906462,8.3187952,58.32,50.22,50.34,56.4,10,1,1,0,0,9,9,3,1,955.33331,905648.44,996887.94,281985.38,0,1546.8695 -5989,7364,13302,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,7.8917899,8.1993933,0,0,0,-945.72766,0,2,2,2019,7,0,38,39,1,0,0,8.4102488,8.4102488,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,1191,-120531.48,-22767.393,0,0,991.46649 -5990,7365,13303,-9,-9,-9,1,0,26,1,2,0,3,3,-9,0,4,7.2903724,7.4467959,0,0,0,-994.70471,-9,-9,-9,2019,11,0,24,0,1,2,0,9.1375875,9.1375875,0,0,0,0,0,1,1,0,.70359492,0,47,57,-9,-9,7,1,1,0,0,3,4,2,0,768.5,0,0,0,0,2172.1543 -5990,7365,13304,-9,13303,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.0559,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,768.5,0,0,0,0,2172.1543 -5991,7366,13305,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.3668494,5.515615,0,0,-899.59448,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.662746,64.01000000000001,32.53,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,2329,265133.94,0,0,0,1198.7964 -5992,7367,13306,13307,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,9,4,0,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,27.56,30.95,35.55,50.24,4,1,1,0,0,0,11,1,0,683,-387461.44,0,0,0,2139.71 -5992,7367,13307,13306,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,9,-4,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,42,1,0,1,1.3439955,0,35.55,50.24,27.56,30.95,5,4,2,0,0,0,11,1,0,683,-387461.44,0,0,0,2139.71 -5992,7368,13308,-9,13306,13307,1,1,22,0,0,0,2,2,-9,0,3,8.3177376,8.2340946,0,0,0,-1028.4594,-9,2,2,2019,11,1,40,0,1,1,1,12.006594,12.006594,0,0,0,0,0,1,0,1,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,5,11,4,0,735,-197557.23,0,0,0,2089.9309 -5993,7369,13309,13310,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.9751596,8.985713,0,7,-6,39.250435,0,-9,-9,2019,16,6,50,55,1,6,0,17.603378,17.603378,0,0,0,0,0,0,0,0,1.4349886,0,33.89,56.25,57.16,56.15,6.666666666666667,1,1,0,0,8,4,5,0,429.5,-119220.09,-34591.18,276289.47,169207.3,4759.0005 -5993,7369,13310,13309,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.0181227,8.6835556,0,7,6,-45.168354,0,2,2,2019,7,0,51,50,1,0,0,14.056602,14.056602,0,0,0,0,0,0,0,0,6.6399403,0,57.16,56.15,33.89,56.25,8.333333333333334,1,1,0,0,8,4,5,0,429.5,-119220.09,-34591.18,276289.47,169207.3,4759.0005 -5994,7370,13311,13312,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,56,1,-143.65074,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6218624,0,52,46,57.9,51.84,8,1,1,0,0,0,4,3,1,509,1944396.1,1027580.3,550104,0,2637.1152 -5994,7370,13312,13311,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.8597665,8.0274544,56,-1,88.979477,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9812269,7.619648,57.9,51.84,52,46,8.333333333333334,1,1,0,0,0,4,3,1,509,1944396.1,1027580.3,550104,0,2637.1152 -5995,7371,13313,-9,13315,13314,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.7352,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,761,-250741.66,0,138162.58,77022.547,1979.3573 -5995,7371,13314,13315,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.8141584,8.7317801,0,6,-2,-67.946114,0,3,3,2019,9,0,35,38,1,0,0,18.299704,18.299704,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.94,50.33,8.333333333333334,1,1,0,0,9,4,4,0,761,-250741.66,0,138162.58,77022.547,1979.3573 -5995,7371,13315,13314,13316,-9,1,0,38,0,1,0,2,2,-9,0,4,0,0,0,6,2,128.26886,1,3,3,2019,5,0,0,44,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.94,50.33,57.33,53.46,6.666666666666667,1,1,0,0,1,4,4,0,761,-250741.66,0,138162.58,77022.547,1979.3573 -5995,7372,13316,-9,-9,-9,1,0,67,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1014.4494,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.39,37.78,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1967,-574668.25,0,0,0,847.51764 -5996,7373,13317,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.6537929,7.5366087,0,0,-911.84711,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4122109,7.3885603,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,5715,220491.63,26217.818,282602.66,0,2003.9425 -5997,7374,13318,-9,13320,13321,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.515,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 -5997,7374,13319,-9,13320,13321,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.1074,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 -5997,7374,13320,13321,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.0457053,6.8780398,0,7,11,-128.2529,0,-9,-9,2019,11,0,7,4,1,0,0,13.173604,13.173604,0,0,0,0,0,1,1,0,0,0,46.63,59.72,54.1,59.11,8.333333333333334,1,1,0,0,8,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 -5997,7374,13321,13320,-9,-9,1,1,34,0,2,0,1,1,-9,0,5,7.7428293,7.7718606,0,7,-11,-53.599911,0,1,1,2019,4,0,40,70,1,0,0,5.9661803,5.9661803,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.63,59.72,8.333333333333334,1,1,0,0,8,7,3,0,396.5,315925.59,7142.6802,110724.97,0,1984.9495 -5998,7375,13322,13323,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.3473253,8.3698349,38,7,-54.461536,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6530499,8.0203304,55.19,51.92,58.15,52.91,8.333333333333334,1,1,0,0,2,5,4,1,312,2529154,1576225.8,658056.63,8385.8047,3871.834 -5998,7375,13323,13322,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.6820569,8.0751905,38,-7,41.158726,0,2,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6330767,7.9100547,58.15,52.91,55.19,51.92,10,1,1,0,0,7,5,4,1,312,2529154,1576225.8,658056.63,8385.8047,3871.834 -5999,7376,13324,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,3.5442419,3.5676973,0,0,-1028.2805,0,3,3,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,3.7019942,4.0601983,38.64,32.39,-9,-9,5,1,1,0,0,0,6,2,0,1030,372790.34,317085.47,0,0,866.63293 -6000,7377,13325,13326,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.3099504,7.0049095,0,18,-4,-26.050697,-9,3,2,2019,14,3,25,0,1,3,0,6.9225368,6.9225368,0,0,0,0,0,0,0,0,0,0,44.69,49.93,52.84,43.58,10,1,1,0,0,10,2,3,1,455,149833.03,63156.59,109336,9099.0908,1843.7546 -6000,7377,13326,13325,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.9279652,7.8932281,0,18,4,156.81725,-9,3,3,2019,10,0,39,0,1,0,0,7.6681457,7.6681457,0,0,0,0,0,0,0,0,0,0,52.84,43.58,44.69,49.93,5,1,1,0,0,10,2,3,1,455,149833.03,63156.59,109336,9099.0908,1843.7546 -6001,7378,13327,13328,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-2,78.109634,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,3.2429242,0,0,1,1,0,0,0,59.31,49.81,57.09,43.99,8.333333333333334,1,1,0,0,0,7,3,1,1382.5,1200019,485898.88,635032.38,0,1999.0997 -6001,7378,13328,13327,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.6399822,8.1804199,57,2,-12.687612,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.4887967,7.7448926,57.09,43.99,59.31,49.81,5,1,1,0,0,0,7,3,1,1382.5,1200019,485898.88,635032.38,0,1999.0997 -6001,7379,13329,-9,13327,13328,1,0,50,0,0,0,2,2,-9,0,2,7.0793858,6.6771612,0,0,0,-934.26605,0,3,2,2019,15,3,16,16,1,3,0,5.5076976,5.5076976,0,0,0,0,0,1,1,0,0,0,41.87,43.25,-9,-9,5,1,1,0,1,11,7,2,1,457,-81837.984,-62538.402,0,0,321.06516 -6002,7380,13330,13331,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.5634542,7.4582667,42,7,-44.376328,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,29.442158,0,0,1,1,0,4.5427136,7.3070412,49.45,26.24,57.06,57.76,6.666666666666667,1,1,0,0,2,12,4,1,708.5,1732574.6,769654.56,417575,0,4958.3086 -6002,7380,13331,13330,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.2824926,8.3004131,42,-7,-63.77388,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.94699,8.6348925,57.06,57.76,49.45,26.24,10,1,1,0,0,7,12,4,1,708.5,1732574.6,769654.56,417575,0,4958.3086 -6003,7381,13332,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.8871794,6.9781532,0,16,7,-59.618385,0,1,1,2019,3,0,30,40,1,0,0,5.0798445,5.0798445,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.12,51.32,8.333333333333334,1,1,0,0,9,11,4,1,277,155832.59,92300.898,0,0,823.67133 -6003,7382,13333,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.4501457,8.5311975,0,15,-7,78.545265,0,3,2,2019,14,4,37,37,1,4,0,15.689372,15.689372,0,0,0,0,0,0,0,0,0,0,33.12,51.32,54.79,55.86,3.333333333333333,1,1,0,0,9,11,4,1,631,201648.64,322751.38,63778.367,0,1652.877 -6004,7383,13334,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.6821442,7.6847157,0,0,0,-1027.7593,-9,-9,-9,2019,8,1,35,0,1,1,0,6.8144565,6.8144565,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,6,3,0,37,177913.2,0,0,0,978.10919 -6005,7384,13335,-9,13337,13339,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.39288,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 -6005,7384,13336,-9,13337,13339,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-898.11603,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 -6005,7384,13337,13339,-9,-9,1,0,45,0,4,0,2,2,-9,0,5,8.0740976,7.7248979,0,8,13,4.0153341,0,2,2,2019,6,0,32,13,1,0,0,10.423999,10.423999,0,0,0,0,0,1,1,0,0,0,60.02,56.42,50,58,10,1,1,0,0,5,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 -6005,7384,13338,-9,13337,13339,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-909.35541,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 -6005,7384,13339,13337,-9,-9,1,1,32,0,4,0,3,3,-9,0,4,8.2765894,8.6580629,0,8,-13,5.582798,-9,3,3,2019,10,0,40,0,1,1,0,12.789527,12.789527,0,0,0,0,0,1,1,0,7.0857439,0,50,58,60.02,56.42,7,1,1,0,0,1,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 -6005,7384,13340,-9,13337,13339,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-979.42419,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,558.5,123019.3,80395.539,0,0,4001.688 -6006,7385,13341,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,8.1044579,8.1429377,0,0,-974.89594,0,1,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3257017,40.58,43.79,-9,-9,6.666666666666667,1,1,0,0,5,8,4,1,741,1390259.1,778762.13,228199.45,0,2400.3752 -6007,7386,13342,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1011.5967,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.69,19.91,-9,-9,1.666666666666667,1,1,1,0,0,9,1,0,1235,153589.89,192723.06,0,0,907.37598 -6007,7387,13343,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.3788943,6.6328683,0,0,-1096.0258,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,27,1,1,0,0,6.8931088,38.05,23.32,-9,-9,3.333333333333333,1,1,0,1,0,9,2,0,1262,161693.77,126252.52,0,0,1215.5946 -6008,7388,13344,13345,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.4080009,7.7538114,0,9,3,80.18956,0,-9,-9,2019,12,0,47,44,1,0,0,9.5704079,9.5704079,0,0,0,0,0,0,0,0,0,0,55.09,55.87,60.03,48.04,1.666666666666667,1,1,0,0,8,9,5,1,498.5,1261020.8,780255.25,365609.56,0,3718.0737 -6008,7388,13345,13344,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.8834324,8.8345747,0,34,-3,47.359753,0,2,3,2019,11,0,40,38,1,0,0,17.910254,17.910254,0,0,0,0,2,0,0,0,0,0,60.03,48.04,55.09,55.87,6.666666666666667,1,1,0,0,11,9,5,1,498.5,1261020.8,780255.25,365609.56,0,3718.0737 -6009,7389,13346,-9,13348,13347,1,0,2,1,0,1,3,0,-9,0,4,0,0,0,0,0,-984.99841,-9,-9,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,806,112900.34,36724.152,112289.91,42144.355,3098.501 -6009,7389,13347,13348,-9,-9,1,1,59,1,0,0,2,2,-9,1,1,0,0,0,29,9,-39.776863,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,31.72,35.62,0,1,1,0,0,8,12,2,0,806,112900.34,36724.152,112289.91,42144.355,3098.501 -6009,7389,13348,13347,-9,-9,1,0,50,1,0,0,2,2,-9,1,2,0,6.6516018,6.1998224,29,0,38.317574,0,1,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,74.5,1,1,0,6.319046,0,31.72,35.62,19.01,22.64,0,2,3,0,0,0,12,2,0,806,112900.34,36724.152,112289.91,42144.355,3098.501 -6010,7390,13349,-9,13350,13351,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.2491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,617,36193.543,0,0,0,1616.2743 -6010,7390,13350,13351,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.3893809,7.3796005,0,1,5,29.911314,-9,-9,-9,2019,6,0,25,0,1,0,0,8.6882296,8.6882296,0,0,0,0,0,1,1,0,0,0,52.97,53.97,37.3,56.01,3.333333333333333,1,1,0,1,6,6,2,0,617,36193.543,0,0,0,1616.2743 -6010,7390,13351,13350,-9,-9,1,1,23,0,1,0,2,2,-9,0,3,0,0,0,1,-5,-66.190063,-9,-9,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,37.3,56.01,52.97,53.97,3.333333333333333,1,1,0,1,1,6,2,0,617,36193.543,0,0,0,1616.2743 -6011,7391,13352,13353,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,10,-3,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,8.333333333333334,1,1,0,0,0,13,1,1,472,-27082.102,0,82400.875,0,1100.0287 -6011,7391,13353,13352,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,10,3,0,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,1,1,0,0,0,13,1,1,472,-27082.102,0,82400.875,0,1100.0287 -6012,7392,13354,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.946907,8.0773411,0,0,0,-893.73596,0,-9,-9,2019,13,1,50,44,1,1,0,4.8293648,4.8293648,0,0,0,0,2,1,1,0,6.5227485,0,39.86,48.24,-9,-9,3.333333333333333,1,1,0,0,5,9,3,0,167,1066331,527699.44,282653.91,0,1124.8519 -6013,7393,13355,13358,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,3.4787104,3.43365,0,32,-4,53.983685,0,3,2,2019,10,0,24,24,1,1,0,.14552444,.14552444,0,0,0,0,0,1,1,0,0,0,50,55,53,55,8,3,4,0,0,3,8,2,0,402.25,-142726.48,0,0,0,1398.3225 -6013,7393,13356,-9,13355,13358,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.07709,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,402.25,-142726.48,0,0,0,1398.3225 -6013,7393,13357,-9,13355,13358,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1183.4493,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,402.25,-142726.48,0,0,0,1398.3225 -6013,7393,13358,13355,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,5.4347243,5.0744152,0,32,4,-30.004454,0,3,3,2019,9,0,24,24,1,1,0,1.0210841,1.0210841,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,3,4,0,1,4,8,2,0,402.25,-142726.48,0,0,0,1398.3225 -6013,7394,13359,-9,13355,13358,1,1,21,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1048.3752,0,3,2,2019,11,0,0,24,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,1,0,0,8,1,0,144,0,0,0,0,0 -6013,7395,13360,-9,13355,13358,1,0,19,0,2,0,2,2,1,0,1,0,0,0,0,0,-1019.7291,-9,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.74,25.6,-9,-9,5,3,4,1,0,1,8,1,0,1172,-180916.42,0,0,0,0 -6013,7396,13361,-9,13355,13358,1,0,18,0,2,1,2,0,0,1,2,0,0,0,0,0,-1119.1857,-9,3,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,34.12,27.86,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,2932,311914.59,0,0,0,319.7178 -6013,7397,13362,-9,13355,13358,1,1,28,0,2,0,2,2,-9,0,4,0,0,0,0,0,-997.66199,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,3478,0,0,0,0,928.67334 -6014,7398,13363,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.752862,5.4553752,0,0,-848.93329,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.6772928,60.52,53.2,-9,-9,10,1,1,0,0,0,9,2,1,256,-186469.98,59988.41,160312.28,66083.18,1258.6799 -6015,7399,13364,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.4131823,8.5915556,0,0,0,-975.78076,0,3,1,2019,9,0,50,42,1,0,0,11.982089,11.982089,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,3,4,0,0,5,5,4,1,516,589866.69,17675.922,215450.03,130089.77,1431.3 -6016,7400,13365,13368,-9,-9,1,1,33,1,3,0,3,3,-9,0,4,6.5898275,6.9016051,0,4,1,174.89145,0,-9,-9,2019,0,0,20,40,1,0,0,4.2942476,4.2942476,0,0,0,0,0,1,1,0,0,0,65.06,41.58,42.71,46.45,10,1,1,0,0,9,6,2,0,750.59998,0,0,0,0,1363.9393 -6016,7400,13366,-9,13368,13365,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1117.2579,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,750.59998,0,0,0,0,1363.9393 -6016,7400,13367,-9,13368,13365,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.9334,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,750.59998,0,0,0,0,1363.9393 -6016,7400,13368,13365,-9,-9,1,0,32,1,3,0,2,2,-9,0,4,0,0,0,4,-1,76.433411,0,2,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.71,46.45,65.06,41.58,8.333333333333334,1,1,0,0,4,6,2,0,750.59998,0,0,0,0,1363.9393 -6016,7400,13369,-9,13368,13365,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.53418,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,750.59998,0,0,0,0,1363.9393 -6017,7401,13370,13372,-9,-9,1,1,53,1,2,0,3,3,-9,0,4,8.0845699,8.1493473,0,8,19,-21.101734,0,-9,-9,2019,8,0,40,40,1,0,0,9.0566263,9.0566263,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.87,51.29,8.333333333333334,1,1,0,0,11,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 -6017,7401,13371,-9,13372,13370,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.5443,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 -6017,7401,13372,13370,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,8.2366266,7.8208246,0,8,-19,72.420944,0,2,2,2019,8,0,20,20,1,0,0,19.937061,19.937061,0,0,0,0,0,1,1,0,4.4844322,0,58.87,51.29,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 -6017,7401,13373,-9,13372,13370,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.6189,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,861.5,-53363.039,-51179.258,0,0,3107.1255 -6018,7402,13374,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,4.6340938,4.8567648,0,0,-1031.8685,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.848953,0,0,1,1,0,0,4.5669312,59.74,42.51,-9,-9,10,1,1,0,0,0,2,2,0,463,73045.242,71162.219,0,0,825.1958 -6019,7403,13375,-9,13377,13376,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.92682,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,493.33334,217654.31,-33125.813,0,0,2742.9116 -6019,7403,13376,13377,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.1601038,8.2276125,0,5,2,5.1618896,0,-9,-9,2019,15,5,43,42,1,5,0,10.797657,10.797657,0,0,0,0,0,1,1,0,0,0,28.04,61.63,50.11,54.04,6.666666666666667,1,1,0,0,4,13,4,1,493.33334,217654.31,-33125.813,0,0,2742.9116 -6019,7403,13377,13376,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,7.6468601,7.8929639,0,5,-2,112.67129,0,2,2,2019,12,1,18,18,1,1,0,15.087765,15.087765,0,0,0,0,0,1,1,0,0,0,50.11,54.04,28.04,61.63,8.333333333333334,1,1,0,0,10,13,4,1,493.33334,217654.31,-33125.813,0,0,2742.9116 -6020,7404,13378,-9,-9,-9,1,0,39,0,1,0,2,2,0,0,3,0,5.6783767,5.8760448,0,0,-1092.3099,-9,2,1,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,5.7372794,0,35.18,64.77,-9,-9,6.666666666666667,1,1,0,1,6,9,2,0,2391,-109531.82,0,0,0,1758.5275 -6021,7405,13379,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.7568202,7.9741378,0,0,0,-1091.8746,-9,2,-9,2019,12,0,42,0,1,0,0,6.3254957,6.3254957,0,0,0,0,0,1,1,0,0,0,37.54,52.96,-9,-9,8.333333333333334,1,1,0,1,12,12,4,0,1249,37063.785,-73567.219,0,0,1703.8384 -6021,7406,13380,-9,13379,-9,1,0,18,0,0,0,2,2,-9,0,3,0,6.254662,6.3831978,0,0,-1038.1311,1,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.7547479,0,40.13,41.02,-9,-9,5,1,1,0,0,0,12,2,0,1364,-107095.66,0,0,0,336.88626 -6022,7407,13381,13382,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,34,-4,32.958225,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,7,2,1,382.5,-146157.97,0,0,0,942.08313 -6022,7407,13382,13381,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,4.276958,4.3706608,34,4,-86.625977,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4842114,57.06,57.76,57.16,56.15,1.666666666666667,1,1,0,0,0,7,2,1,382.5,-146157.97,0,0,0,942.08313 -6023,7408,13383,13384,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.6716719,7.1938243,22,2,-94.366798,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0363731,7.4128323,54.81,42.24,49,48,10,1,1,0,0,11,10,3,1,906.5,991375.5,351670.25,438284.06,19782.83,2253.4692 -6023,7408,13384,13383,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.5932803,6.7235422,0,11,-2,52.987492,0,-9,-9,2019,11,0,25,25,1,2,0,3.3027291,3.3027291,0,0,0,0,0,1,1,0,.25802794,0,49,48,54.81,42.24,7,1,1,0,0,1,10,3,1,906.5,991375.5,351670.25,438284.06,19782.83,2253.4692 -6024,7409,13385,-9,-9,13386,1,1,57,0,0,0,2,2,-9,0,3,7.409266,8.0007648,0,0,0,-952.83533,0,3,3,2019,11,0,40,40,1,0,0,5.2100797,5.2100797,0,0,0,0,0,1,1,0,3.8957298,0,57.34,47.92,-9,-9,6.666666666666667,1,1,0,0,12,2,3,1,374,61872.934,145116.7,78485.609,0,1485.8137 -6024,7410,13386,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1044.3818,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.04,44.94,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1086,152176.25,0,157409.45,0,1244.1362 -6025,7411,13387,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.3051405,6.0900178,0,0,-1075.6709,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3450518,6.4783192,57.16,56.15,-9,-9,10,1,1,0,0,6,8,2,1,1567,730291,285410.91,362994.47,0,257.57422 -6026,7412,13388,13389,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.4943871,7.3758116,0,3,0,-.92113686,0,2,2,2019,9,0,24,24,1,0,0,10.649864,10.649864,0,0,0,0,0,1,1,0,5.7271986,0,58.47,50.22,57.16,56.15,8.333333333333334,1,1,0,0,10,11,4,1,305.5,1396155.8,850591.63,276974.25,0,2340.7131 -6026,7412,13389,13388,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.8898568,7.5510936,3,0,6.2621865,0,2,3,2019,9,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3590384,7.7090716,57.16,56.15,58.47,50.22,8.333333333333334,1,1,0,0,10,11,4,1,305.5,1396155.8,850591.63,276974.25,0,2340.7131 -6027,7413,13390,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,8.306489,7.8101501,0,0,-1060.7128,0,2,2,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,7.7895627,54.81,28.33,-9,-9,5,1,1,0,0,0,2,4,1,645,233222.02,131349.72,0,0,2370.3464 -6028,7414,13391,13392,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.6257648,8.4201403,0,6,-5,40.200005,0,-9,-9,2019,10,1,40,35,1,1,0,12.625616,12.625616,0,0,0,0,0,0,0,0,0,0,51.49,57.57,62.49,55.09,8.333333333333334,1,1,0,0,9,12,5,1,771.5,773130.75,223340.09,420206,171359.66,13780.855 -6028,7414,13392,13391,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.4053507,9.9764853,9.0402098,6,5,-48.295486,0,-9,-9,2019,5,0,35,50,1,0,0,52.282188,52.282188,0,0,0,0,0,0,0,0,9.6601076,0,62.49,55.09,51.49,57.57,10,1,1,0,0,6,12,5,1,771.5,773130.75,223340.09,420206,171359.66,13780.855 -6029,7415,13393,-9,-9,-9,1,0,45,0,1,0,3,3,-9,0,5,8.2263041,8.181077,4.1440673,0,0,-986.66541,0,2,2,2019,12,1,16,20,1,1,0,33.592888,33.592888,0,0,0,0,0,1,1,0,4.0012083,0,31.42,63.99,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,641,57409.594,3296.2361,0,0,1827.8116 -6029,7416,13394,-9,13393,-9,1,1,19,0,1,0,2,2,-9,0,4,7.6470261,7.7268467,0,0,0,-1019.9572,0,3,-9,2019,9,0,36,0,1,0,1,6.6255302,6.6255302,0,0,0,0,0,1,1,0,0,0,60.7,47.65,-9,-9,8.333333333333334,1,1,0,1,2,7,3,1,412,-36211.664,0,0,0,1602.4851 -6030,7417,13395,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.0502481,5.7092619,0,0,-885.67688,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,6.0625505,63.11,34.71,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,335,69004.039,-72757.82,174150.75,0,1659.5989 -6030,7418,13396,-9,13395,-9,1,1,46,0,0,0,3,3,-9,1,4,0,0,0,0,0,-965.96216,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,5,1,1,432,30894.381,0,0,0,552.79449 -6031,7419,13397,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,5.3721862,5.5698051,0,0,-971.85571,0,3,3,2019,9,3,0,0,4,3,0,0,0,0,.37643871,0,0,0,1,1,0,0,5.4059939,47.04,15.9,-9,-9,10,1,1,0,0,0,9,2,1,1107,-64134.676,-82713.227,208542.94,0,1159.0354 -6032,7420,13398,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,7.3166046,7.4821229,0,0,0,-1009.1406,0,-9,-9,2019,24,12,15,15,1,12,0,10.774017,10.774017,0,0,0,0,27,1,1,0,0,0,36.66,33.33,-9,-9,1.666666666666667,1,1,0,0,5,7,3,0,190,85595.469,79912.313,0,0,2284.1165 -6033,7421,13399,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.0914183,8.0788059,0,0,0,-1120.5475,0,3,2,2019,14,0,35,47,1,3,0,11.480645,11.480645,0,0,0,0,0,0,0,0,5.3529758,0,43,39,-9,-9,6,2,3,0,0,11,8,4,1,1972,153719.19,-73297.961,0,0,1021.1061 -6034,7422,13400,13401,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.8776226,8.4588718,7.7256145,20,7,168.3774,0,3,3,2019,6,0,19,19,1,0,0,14.397549,14.397549,0,0,0,0,0,0,0,0,0,7.8651533,57.16,56.15,47,50,8.333333333333334,1,1,0,0,12,6,4,0,640.5,263018.81,64943.609,245681.28,96454.258,3114.0498 -6034,7422,13401,13400,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,5.3172755,7.591785,7.645577,20,-7,-101.14191,0,2,2,2019,18,5,48,48,1,5,0,.34747791,.34747791,0,0,0,0,0,0,0,0,0,7.1872611,47,50,57.16,56.15,6.666666666666667,1,1,0,0,13,6,4,0,640.5,263018.81,64943.609,245681.28,96454.258,3114.0498 -6035,7423,13402,13403,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.9647646,8.9117985,0,10,3,139.17758,0,3,3,2019,6,0,37,47,1,0,0,26.018105,26.018105,0,0,0,0,0,0,0,0,7.8620248,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,2,5,1,1346.5,2769012,1801721.8,472917.47,992.09033,4117.0889 -6035,7423,13403,13402,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.8993015,8.040863,0,10,-3,79.555428,0,3,3,2019,10,0,46,44,1,0,0,8.5253334,8.5253334,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,13,2,5,1,1346.5,2769012,1801721.8,472917.47,992.09033,4117.0889 -6035,7424,13404,-9,13403,-9,1,0,19,0,0,0,1,1,-9,0,4,0,0,0,0,0,-914.63251,0,1,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,458,-21666.133,0,0,0,-121.82021 -6036,7425,13405,13406,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,8.5492153,8.3874607,42,2,-7.5724254,0,2,2,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,8.8301172,9.0746183,60.02,56.42,55.68,54.24,10,1,1,0,0,10,9,4,1,678,1457423.1,1246935.6,470918.16,0,3332.4197 -6036,7425,13406,13405,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,0,0,42,-2,20.82218,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9645491,0,55.68,54.24,60.02,56.42,8.333333333333334,1,1,0,0,0,9,4,1,678,1457423.1,1246935.6,470918.16,0,3332.4197 -6037,7426,13407,13408,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,8.1768637,7.8600888,0,10,0,-115.01867,0,-9,-9,2019,15,5,40,40,1,5,0,7.1318798,7.1318798,0,0,0,0,0,1,1,0,0,0,37.99,55.28,50.28,51.35,6.666666666666667,1,1,0,0,10,2,4,0,1665,173226.11,19243.43,120902.09,106805.26,2645.8989 -6037,7426,13408,13407,-9,-9,1,1,32,1,1,0,3,3,-9,0,3,7.9087849,7.6958084,0,10,0,86.351234,0,2,2,2019,12,0,42,41,1,0,0,7.4553356,7.4553356,0,0,0,0,0,1,1,0,0,0,50.28,51.35,37.99,55.28,6.666666666666667,1,1,0,0,11,2,4,0,1665,173226.11,19243.43,120902.09,106805.26,2645.8989 -6037,7426,13409,-9,13407,13408,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.57764,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,0,1665,173226.11,19243.43,120902.09,106805.26,2645.8989 -6038,7427,13410,-9,13411,13413,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1141.8903,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,6,4,2,-9,0,0,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 -6038,7427,13411,13413,-9,-9,1,0,36,1,3,0,2,2,-9,0,5,8.1097155,7.9558806,0,13,-12,55.744236,0,2,2,2019,14,4,20,16,1,4,0,15.910245,15.910245,0,0,0,0,0,0,0,0,0,0,49.76,54.22,53,54,1.666666666666667,2,3,0,0,7,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 -6038,7427,13412,-9,13411,13413,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-836.80853,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,4,2,-9,0,0,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 -6038,7427,13413,13411,-9,-9,1,1,48,1,3,0,2,2,-9,0,4,9.5258255,9.0388489,0,13,12,18.071411,0,-9,-9,2019,9,0,40,60,1,1,0,28.084919,28.084919,0,0,0,0,0,0,0,0,7.6895952,0,53,54,49.76,54.22,7,4,2,0,0,1,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 -6038,7427,13414,-9,13411,13413,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.907,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,6,4,2,-9,0,0,9,5,1,945.59998,712856.06,437665.59,210751.75,50727.82,5259.019 -6039,7428,13415,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1062.9215,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.21,58.77,-9,-9,0,4,2,1,1,5,9,1,0,573,-81930.805,-24204.441,0,0,552.92999 -6040,7429,13416,13417,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.9063854,7.1029449,1,10,52.25082,0,2,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.1557887,7.0061574,54,46,53.54,38.94,7,1,1,0,0,5,8,2,1,363.5,805510.69,219557.19,272636.94,0,2358.4009 -6040,7429,13417,13416,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,1,-10,-1.5398378,1,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0548965,0,53.54,38.94,54,46,10,1,1,0,0,4,8,2,1,363.5,805510.69,219557.19,272636.94,0,2358.4009 -6041,7430,13418,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.7480841,6.6230974,0,0,-805.15472,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,8.7608576,0,0,1,1,0,3.9468966,6.5445518,58.33,23.43,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,275,34313.637,-31301.795,109432.73,0,1308.53 -6042,7431,13419,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,5.9504814,5.7494826,0,0,-897.1225,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,7.0295391,15.238141,60.40905,0,1,1,0,0,5.663527,43.04,32.88,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,435,142235.09,74739.055,150939.63,22251.518,1346.2441 -6043,7432,13420,13422,-9,-9,1,0,40,0,1,0,3,3,-9,0,3,7.5570354,7.9087009,0,16,1,-8.8878422,0,2,2,2019,13,0,38,28,1,2,0,7.3133259,7.3133259,0,0,0,0,0,1,1,0,0,0,45,51,43.19,42.16,1.666666666666667,1,1,0,0,8,9,5,1,704,358137.66,68858.078,536141.75,204803.41,4341.5542 -6043,7432,13421,-9,13420,13422,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.7017,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,704,358137.66,68858.078,536141.75,204803.41,4341.5542 -6043,7432,13422,13420,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.9655666,9.1109438,0,16,-1,-61.869144,0,2,2,2019,12,2,45,45,1,2,0,22.817297,22.817297,0,0,0,0,0,1,1,0,0,0,43.19,42.16,45,51,5,1,1,0,0,12,9,5,1,704,358137.66,68858.078,536141.75,204803.41,4341.5542 -6044,7433,13423,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.6497321,7.7423239,0,0,0,-916.60931,0,3,3,2019,6,0,40,44,1,0,0,6.4474506,6.4474506,0,0,0,0,0,1,1,0,5.304121,0,53.59,39.04,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,444,283666.38,83027.672,117613.13,0,1456.7747 -6045,7434,13424,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1071.7716,0,1,1,2019,12,1,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,5,1,1,0,0,8,2,1,0,260.5,-110770.78,66160.453,0,0,141.03058 -6045,7434,13425,-9,13424,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.4792,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,260.5,-110770.78,66160.453,0,0,141.03058 -6046,7435,13426,-9,13428,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.1001,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,516.66669,0,0,0,0,1757.1682 -6046,7435,13427,-9,13428,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5475,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,516.66669,0,0,0,0,1757.1682 -6046,7435,13428,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,7.4301672,7.6294837,0,0,0,-1138.5676,0,-9,-9,2019,16,3,46,20,1,3,0,4.7459807,4.7459807,0,0,0,0,0,1,1,0,0,0,49.86,55.31,-9,-9,6.666666666666667,1,1,0,0,3,6,2,0,516.66669,0,0,0,0,1757.1682 -6047,7436,13429,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.6761923,8.5896769,0,0,0,-1069.7679,0,3,3,2019,10,0,69,69,1,0,0,9.7096243,9.7096243,0,0,0,0,0,0,0,0,0,0,58.92,40.35,-9,-9,6.666666666666667,2,3,0,0,10,8,5,1,726,201311.98,0,305152.72,27843.834,1830.4647 -6048,7437,13430,13433,-9,-9,1,0,28,1,6,0,2,2,-9,0,4,0,0,0,4,-3,0,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,42,1,1,0,0,0,30.78,58.81,31.48,49.52,5,1,1,0,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 -6048,7437,13431,-9,13430,13433,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1093.6249,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 -6048,7437,13432,-9,13430,13433,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1095.4396,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 -6048,7437,13433,13430,-9,-9,1,1,31,1,6,0,2,2,-9,1,2,0,0,0,4,3,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,31.48,49.52,30.78,58.81,5,1,1,0,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 -6048,7437,13434,-9,13430,13433,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1048.803,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 -6048,7437,13435,-9,13430,13433,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1010.0646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,597,-37968.547,9118.2578,0,0,2967.4768 -6049,7438,13436,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.3477216,6.2338147,0,0,-1081.9152,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,7.6586261,0,0,1,1,0,0,6.1800232,52.76,23.83,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,655,271459.84,156504,0,0,1760.7084 -6050,7439,13437,13439,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,6.851964,6.6782441,0,25,-13,99.34314,0,-9,-9,2019,12,0,15,15,1,0,0,5.8003407,5.8003407,0,0,0,0,7,1,1,0,0,0,62.39,56.71,36.8,21.6,10,1,1,0,1,6,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 -6050,7439,13438,-9,13437,13439,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-929.61475,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.61,49.39,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 -6050,7439,13439,13437,-9,-9,1,1,58,0,2,0,2,2,-9,0,1,8.3068247,8.0945368,0,25,13,-60.13121,0,-9,-9,2019,19,5,35,35,1,5,0,14.277863,14.277863,0,0,0,0,0,1,1,0,0,0,36.8,21.6,62.39,56.71,1.666666666666667,1,1,0,1,9,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 -6050,7439,13440,-9,13437,13439,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.61902,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 -6050,7439,13441,-9,13437,13439,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.3499,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,470,230648.41,195128.34,202654.2,141000.09,2342.0054 -6051,7440,13442,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.1656113,7.5318184,5.4795551,0,0,-1021.9519,0,2,3,2019,12,0,30,33,1,0,0,6.7483115,6.7483115,0,0,0,0,0,1,1,0,5.5611715,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,13,3,0,1867,559003.31,-123527.91,0,0,1160.4202 -6051,7441,13443,-9,13442,-9,1,0,19,0,0,0,2,2,-9,0,4,6.1511354,6.5317545,0,0,0,-1004.3882,0,2,-9,2019,8,2,12,24,1,2,1,5.4448948,5.4448948,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,3,13,2,0,625,0,0,0,0,735.67499 -6052,7442,13444,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1136.2203,0,3,2,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,27,0,0,0,0,0,39.76,23.87,-9,-9,3.333333333333333,1,1,0,1,0,7,1,0,1048,69320.938,0,0,0,0 -6053,7443,13445,-9,13447,13446,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.16858,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,-9,0,0,8,4,0,1610.6666,-29370.666,0,0,0,2795.6914 -6053,7443,13446,13447,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,7.977006,7.7464647,0,6,1,68.57711,0,-9,-9,2019,6,0,34,39,1,0,0,8.2826176,8.2826176,0,0,0,0,0,1,1,0,0,0,59.27,50.04,52.64,41.11,8.333333333333334,1,1,0,0,5,8,4,0,1610.6666,-29370.666,0,0,0,2795.6914 -6053,7443,13447,13446,-9,-9,1,0,29,0,1,0,1,1,-9,0,2,7.916358,7.7133598,0,6,-1,-9.9397411,0,2,2,2019,6,0,4,12,1,0,0,78.658424,78.658424,0,0,0,0,0,1,1,0,0,0,52.64,41.11,59.27,50.04,6.666666666666667,3,4,0,0,6,8,4,0,1610.6666,-29370.666,0,0,0,2795.6914 -6054,7444,13448,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.2096033,7.8156247,0,0,0,-870.19885,0,-9,-9,2019,15,3,40,40,1,3,0,9.9371796,9.9371796,0,0,0,0,0,1,1,0,0,0,44.34,49.64,-9,-9,3.333333333333333,3,4,0,0,10,6,4,1,540,131005.58,92182.109,87801.914,83485.563,487.04675 -6055,7445,13449,13450,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.535346,6.581398,9,-2,-40.459755,0,2,2,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.7296464,6.3737736,27.89,18.61,39.37,58.81,1.666666666666667,1,1,0,0,0,10,3,1,1642,1655759.3,932989.25,599701.25,0,2521.4668 -6055,7445,13450,13449,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.0041776,7.0938606,9,2,-80.4272,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.7821457,7.0039897,39.37,58.81,27.89,18.61,5,1,1,0,0,10,10,3,1,1642,1655759.3,932989.25,599701.25,0,2521.4668 -6056,7446,13451,13452,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.5770988,7.516849,0,19,5,-6.0092545,-9,3,3,2019,6,0,39,0,1,0,0,6.4697714,6.4697714,0,0,0,0,0,0,0,0,0,0,46.76,55.32,35.13,49.6,8.333333333333334,1,1,0,0,10,2,3,1,1531,163151.63,56027.305,19212.09,20619.465,1654.489 -6056,7446,13452,13451,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.7864056,7.5385613,0,19,-5,92.031265,-9,-9,3,2019,8,1,48,0,1,1,0,3.4858036,3.4858036,0,0,0,0,0,0,0,0,0,0,35.13,49.6,46.76,55.32,5,1,1,0,0,10,2,3,1,1531,163151.63,56027.305,19212.09,20619.465,1654.489 -6056,7447,13453,-9,13452,13451,1,0,23,0,0,0,2,2,-9,0,4,7.2915397,7.5627751,0,0,0,-933.83948,-9,3,2,2019,14,3,2,0,1,3,1,105.4116,105.4116,0,0,0,0,0,0,0,0,7.2108874,0,47.05,54.48,-9,-9,5,1,1,0,0,6,2,3,1,379,-397378.09,0,0,0,1562.7119 -6057,7448,13454,13455,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.4108596,7.2747021,20,5,-10.575001,0,2,2,2019,16,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.9905362,7.1405945,42.86,24.11,27.74,32.3,6.666666666666667,4,2,0,0,0,10,4,1,599.5,431560.88,462571.31,0,0,3731.9517 -6057,7448,13455,13454,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,7.8530526,7.8615236,21,-5,33.759666,0,2,2,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,6.3210158,7.453301,27.74,32.3,42.86,24.11,3.333333333333333,1,1,0,0,0,10,4,1,599.5,431560.88,462571.31,0,0,3731.9517 -6058,7449,13456,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,0,0,0,0,0,-935.76135,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.7173429,0,61.83,36.54,-9,-9,3.333333333333333,1,1,1,1,0,2,1,1,311,8003.5923,0,0,0,408.05453 -6059,7450,13457,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.1702642,6.6259394,0,0,-978.5528,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,19.626175,0,0,1,1,0,0,6.4363527,57.77,33.07,-9,-9,10,1,1,0,0,0,12,2,1,297,515830.28,12798.781,238863.89,0,1186.3175 -6060,7451,13458,13460,-9,-9,1,0,22,0,2,0,3,3,-9,0,2,0,0,0,2,-4,-144.12971,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34.99,39.87,46.93,41.98,3.333333333333333,1,1,0,0,0,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 -6060,7451,13459,-9,13458,13460,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.98358,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 -6060,7451,13460,13458,-9,-9,1,1,26,0,2,0,2,2,-9,0,3,8.1928205,8.2437067,0,2,4,26.109455,0,-9,-9,2019,12,1,40,0,1,1,0,9.5025053,9.5025053,0,0,0,0,0,1,1,0,0,0,46.93,41.98,34.99,39.87,5,1,1,0,0,1,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 -6060,7451,13461,-9,13458,13460,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.83978,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,888.25,-34646.68,72221.633,0,0,1574.2772 -6061,7452,13462,13463,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.9804292,8.5383339,8.1122065,32,5,-83.989693,0,3,2,2019,11,2,20,40,1,2,0,12.836358,12.836358,0,0,0,0,14.5,0,0,0,0,7.8924751,51.5,39.74,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,752,1554645.4,1427341.3,160773.17,0,3017.1116 -6061,7452,13463,13462,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,6.6868787,6.3477097,0,25,-5,-97.771927,0,3,3,2019,6,0,12,12,1,0,0,7.6851759,7.6851759,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,51.5,39.74,8.333333333333334,1,1,0,0,7,2,4,1,752,1554645.4,1427341.3,160773.17,0,3017.1116 -6062,7453,13464,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,6.373414,6.459374,0,0,-1061.4382,0,-9,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,4.144134,6.4314513,35.49,59.3,-9,-9,8.333333333333334,1,1,0,1,0,9,2,1,121,616630.94,0,229981.48,0,1027.0763 -6062,7454,13465,-9,13464,-9,1,1,36,0,0,0,2,2,-9,0,3,9.3989878,9.3694735,0,0,0,-1019.7302,0,1,2,2019,13,2,68,67,1,2,0,19.855253,19.855253,0,0,0,0,0,1,1,0,0,0,52.21,34.51,-9,-9,3.333333333333333,1,1,0,1,5,9,5,1,151,-196942.42,16122.745,0,0,4430.3965 -6063,7455,13466,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.493866,8.1873121,0,0,0,-936.61102,-9,3,3,2019,6,1,22,0,1,1,0,22.389877,22.389877,0,0,0,0,2,0,0,0,0,0,46.48,53.76,-9,-9,10,2,3,0,0,10,8,4,1,499,436965.03,-24707.686,160366.78,46753.551,2332.4766 -6064,7456,13467,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1030.8068,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.12,46.93,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,1327,-35051.57,0,0,0,283.19943 -6065,7457,13468,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.7857065,7.8659039,0,0,-1002.1105,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6635199,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,1061,701068.25,267880.09,6266.979,0,1641.5231 -6066,7458,13469,13470,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.1577826,5.9516993,57,1,7.4401217,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1835256,5.9805393,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,0,357.5,190015.66,-23876.293,0,0,1887.8442 -6066,7458,13470,13469,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,56,-1,-25.595987,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,8,1,1,0,0,0,7,2,0,357.5,190015.66,-23876.293,0,0,1887.8442 -6067,7459,13471,13472,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.1040049,8.991004,0,30,2,10.055106,0,3,3,2019,9,0,40,40,1,0,0,21.423918,21.423918,0,0,0,0,0,0,0,0,3.5496538,0,46.21,58.07,54.77,55.87,10,1,1,0,0,9,13,5,1,1075.5,1964991.3,1663726.3,281057.47,0,3532.4497 -6067,7459,13472,13471,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4984155,7.5295625,0,30,-2,43.587093,0,3,2,2019,7,0,40,40,1,0,0,7.3538122,7.3538122,0,0,0,0,0,0,0,0,0,0,54.77,55.87,46.21,58.07,1.666666666666667,1,1,0,0,9,13,5,1,1075.5,1964991.3,1663726.3,281057.47,0,3532.4497 -6068,7460,13473,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.3276362,5.6152134,0,0,-1057.1158,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2941206,5.3824978,38.7,46.76,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,509,-66059.758,127616.41,163483.78,0,929.65717 -6069,7461,13474,13475,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.0263476,6.0877104,7,3,219.8116,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6861122,5.8294191,37.75,33.03,57.06,57.76,8.333333333333334,1,1,0,0,0,13,2,1,401,169581.47,119408.17,126059.05,0,1923.0896 -6069,7461,13475,13474,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,0,0,7,-3,26.053455,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0701151,0,57.06,57.76,37.75,33.03,8.333333333333334,1,1,0,0,0,13,2,1,401,169581.47,119408.17,126059.05,0,1923.0896 -6070,7462,13476,13477,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.5302353,8.7813034,6.3722334,8,2,13.425632,0,2,2,2019,16,5,38,37,1,5,0,13.399159,13.399159,0,0,0,0,0,1,1,0,0,6.9772811,41.14,52.79,39.91,54.46,8.333333333333334,1,1,0,0,9,2,5,1,1242.5,155843.33,114092.05,184381.19,85001.719,4343.6079 -6070,7462,13477,13476,-9,-9,1,1,55,0,0,0,3,3,-9,1,3,8.2162695,8.6973619,0,8,-2,64.614769,0,3,-9,2019,10,0,40,40,1,0,0,16.177448,16.177448,0,0,0,0,0,1,1,0,0,0,39.91,54.46,41.14,52.79,6.666666666666667,1,1,0,0,9,2,5,1,1242.5,155843.33,114092.05,184381.19,85001.719,4343.6079 -6070,7463,13478,-9,13476,13477,1,1,23,0,0,0,1,1,-9,0,5,8.051652,8.2225466,0,0,0,-1023.1571,0,2,3,2019,12,0,38,40,1,0,1,9.4271555,9.4271555,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,376,0,0,0,0,1684.6398 -6070,7464,13479,-9,13476,13477,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1001.4542,-9,2,3,2019,21,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,37.87,61.03,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,388,-263294,0,0,0,0 -6071,7465,13480,-9,-9,-9,1,0,43,0,2,0,3,3,-9,1,4,0,0,0,0,0,-851.32117,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,13,1,1,186,-181083.3,0,0,0,1132.286 -6072,7466,13481,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.42383,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,1,6,4,1,0,1360,0,0,0,0,1235.7677 -6073,7467,13482,13484,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.144927,7.9974723,0,28,1,55.990654,0,3,3,2019,7,0,4,42,1,0,0,89.6381,89.6381,0,0,0,0,0,1,1,0,0,0,50.23,52.59,54.13,48.04,10,2,3,0,0,12,8,4,1,397,535697.69,292539,267938.72,107702.17,8831.9404 -6073,7467,13483,-9,13482,13484,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-936.41504,-9,2,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,60.46,41.15,-9,-9,8.333333333333334,2,3,0,0,0,8,4,1,397,535697.69,292539,267938.72,107702.17,8831.9404 -6073,7467,13484,13482,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.0767536,8.3586531,0,28,-1,-95.088341,0,2,2,2019,10,0,50,70,1,0,0,7.8197813,7.8197813,0,0,0,0,0,1,1,0,9.663393,0,54.13,48.04,50.23,52.59,6.666666666666667,2,3,0,0,12,8,4,1,397,535697.69,292539,267938.72,107702.17,8831.9404 -6074,7468,13485,13486,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.8656144,6.7316141,0,26,-8,101.22195,0,-9,2,2019,8,0,15,15,1,0,0,7.3792801,7.3792801,0,0,0,0,14.5,1,1,0,0,0,52.99,51.28,55.96,49.93,8.333333333333334,1,1,0,0,10,6,3,1,596,207022.5,-63715.414,116429.28,0,1722.01 -6074,7468,13486,13485,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.4198871,7.1920042,0,26,8,78.318077,0,3,2,2019,7,0,27,27,1,0,0,5.7828274,5.7828274,0,0,0,0,0,1,1,0,0,0,55.96,49.93,52.99,51.28,1.666666666666667,1,1,0,0,7,6,3,1,596,207022.5,-63715.414,116429.28,0,1722.01 -6074,7469,13487,-9,13485,13486,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1094.3546,-9,2,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,59.46,49.66,-9,-9,10,1,1,0,0,2,6,1,1,705,-121062.84,0,0,0,0 -6075,7470,13488,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,1,0,0,0,0,0,-995.02277,0,3,3,2019,9,0,0,0,3,0,0,0,0,1,15.331325,0,137.11015,0,1,1,0,.70376068,0,41.95,28.45,-9,-9,5,1,1,0,0,0,6,1,1,291,20355.664,0,0,0,741.42706 -6076,7471,13489,-9,13490,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.2616,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,518.66669,603213.13,297082.06,354150,49199.613,3981.7749 -6076,7471,13490,13491,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.7223873,6.679677,0,2,-8,-58.289345,0,2,3,2019,24,12,14,15,1,12,0,8.7865305,8.7865305,0,0,0,0,0,1,1,0,3.4650869,0,45.43,53.5,58.32,50.22,8.333333333333334,1,1,0,0,9,6,4,1,518.66669,603213.13,297082.06,354150,49199.613,3981.7749 -6076,7471,13491,13490,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,9.1455212,9.1860867,0,2,8,-145.01836,0,2,2,2019,12,0,50,55,1,0,0,22.772297,22.772297,0,0,0,0,0,1,1,0,3.6483753,0,58.32,50.22,45.43,53.5,6.666666666666667,1,1,0,0,12,6,4,1,518.66669,603213.13,297082.06,354150,49199.613,3981.7749 -6076,7472,13492,-9,13490,13491,1,0,22,0,2,0,1,1,1,0,4,7.7590556,7.921598,0,0,0,-1007.7599,-9,2,2,2019,8,1,40,0,1,1,1,9.914319,9.914319,0,0,0,0,0,1,1,0,.53964883,0,43.49,51.48,-9,-9,6.666666666666667,1,1,0,0,3,6,4,1,672,103837.77,-7568.8506,0,0,640.17725 -6077,7473,13493,13494,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,42,5,-.78181148,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.024786,0,36.03,40.6,57.47,42.93,6.666666666666667,1,1,0,0,0,1,4,1,1382,189680.47,153710.8,109549.72,0,2725.0405 -6077,7473,13494,13493,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.378727,8.2951021,5.6607647,9,-5,74.564026,0,3,3,2019,10,0,40,40,1,0,0,13.611982,13.611982,0,0,0,0,0,1,1,0,4.438952,5.9970775,57.47,42.93,36.03,40.6,6.666666666666667,1,1,0,0,10,1,4,1,1382,189680.47,153710.8,109549.72,0,2725.0405 -6078,7474,13495,13496,-9,-9,1,1,46,0,0,0,1,1,-9,0,2,7.4589729,7.2150574,0,1,-3,33.146275,-9,2,2,2019,30,12,40,0,1,12,0,4.5502744,4.5502744,0,0,0,0,0,0,0,0,.34375763,0,27.1,53.11,51,54,0,1,1,0,1,8,4,3,1,1200,411673.34,61572.844,0,0,1507.354 -6078,7474,13496,13495,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,6.3455429,6.7179532,0,1,3,-68.397552,-9,-9,-9,2019,10,0,16,0,1,1,0,6.0755239,6.0755239,0,0,0,0,0,0,0,0,0,0,51,54,27.1,53.11,8,4,1,0,0,1,4,3,1,1200,411673.34,61572.844,0,0,1507.354 -6079,7475,13497,13498,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,7,-1,0,0,-9,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.56,39.16,39.88,26.59,1.666666666666667,1,1,0,0,0,1,2,0,817.5,-157063.94,0,0,0,1945.7355 -6079,7475,13498,13497,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,7,1,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.88,26.59,15.56,39.16,3.333333333333333,1,1,0,0,0,1,2,0,817.5,-157063.94,0,0,0,1945.7355 -6080,7476,13499,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.9413271,7.814364,0,0,0,-1051.8712,0,1,2,2019,11,0,39,38,1,0,0,8.3675175,8.3675175,0,0,0,0,0,0,0,0,.87861967,0,33.43,41.25,-9,-9,6.666666666666667,1,1,0,1,8,11,3,1,229,218852.41,57425.844,0,0,1037.2448 -6081,7477,13500,13501,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.7909832,6.8162794,10,0,-16.066143,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0884252,6.7073874,54.2,57.49,47.79,33.12,8.333333333333334,1,1,0,0,9,12,3,1,781.5,1074890.5,662003.75,360110.44,0,2268.2148 -6081,7477,13501,13500,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.3769994,7.5305605,10,0,22.425543,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.20624433,7.8802071,47.79,33.12,54.2,57.49,8.333333333333334,1,1,0,0,0,12,3,1,781.5,1074890.5,662003.75,360110.44,0,2268.2148 -6082,7478,13502,13503,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.2573452,8.3459015,0,41,1,47.123512,0,3,3,2019,11,0,37,38,1,0,0,12.755558,12.755558,0,0,0,0,0,0,0,0,0,0,51.21,40.45,44.64,39.91,10,1,1,0,0,8,1,4,0,417,824906.13,567866.5,174322.03,0,2365.5776 -6082,7478,13503,13502,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4516091,7.1019287,5.2572956,41,-1,112.43876,0,2,2,2019,10,2,18,18,1,2,0,9.3756266,9.3756266,0,0,0,0,14.5,0,0,0,0,5.106174,44.64,39.91,51.21,40.45,1.666666666666667,1,1,0,0,10,1,4,0,417,824906.13,567866.5,174322.03,0,2365.5776 -6083,7479,13504,-9,13506,13505,1,1,16,0,2,1,2,0,-9,0,3,0,4.1683192,4.0320277,0,0,-986.12354,-9,2,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.0965753,0,56.67,42.78,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 -6083,7479,13505,13506,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,7.8579984,8.0251141,0,4,-4,84.038765,0,-9,-9,2019,11,0,44,39,1,0,0,7.2561989,7.2561989,0,0,0,0,0,1,1,0,0,0,54.42,42.51,51.83,57.2,5,1,1,0,0,7,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 -6083,7479,13506,13505,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,6.3019047,6.8241811,4.6979442,4,4,27.675476,0,2,1,2019,11,0,16,12,1,0,0,6.4352312,6.4352312,0,0,0,0,27,1,1,0,4.4324012,0,51.83,57.2,54.42,42.51,6.666666666666667,1,1,0,0,5,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 -6083,7479,13507,-9,13506,13505,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.4996,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,570.75,454842.13,44908.242,466588.34,139980.27,2905.0996 -6083,7480,13508,-9,13506,13505,1,1,20,0,2,0,2,2,-9,1,2,0,0,0,0,0,-888.85864,0,2,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,24.68,47.06,-9,-9,1.666666666666667,1,1,1,0,0,2,1,1,497,-741405,0,0,0,676.39642 -6083,7481,13509,-9,13506,13505,1,1,18,0,2,0,2,2,1,1,4,0,0,0,0,0,-921.39966,-9,2,1,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,1,208,502.32254,0,0,0,0 -6084,7482,13510,13511,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,6.8156314,7.6072159,7.5493994,51,0,-11.991468,0,3,3,2019,7,0,20,20,1,0,0,5.0361266,5.0361266,0,0,0,0,0,1,1,0,7.2056904,7.5875483,46.81,51.49,54.2,57.49,8.333333333333334,1,1,0,0,8,4,3,1,1728,471336.47,335163.81,196790.2,0,2271.0513 -6084,7482,13511,13510,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.1961555,5.0536914,51,0,14.843268,0,-9,-9,2019,12,0,0,8,4,0,0,0,0,1,0,0,0,2,1,1,0,2.9653986,5.027101,54.2,57.49,46.81,51.49,1.666666666666667,1,1,0,0,8,4,3,1,1728,471336.47,335163.81,196790.2,0,2271.0513 -6085,7483,13512,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.7560711,8.881958,0,0,0,-975.73029,0,2,2,2019,12,0,37,8,1,0,0,19.901762,19.901762,0,0,0,0,0,0,0,0,5.0382833,0,53.33,53.71,-9,-9,8.333333333333334,2,3,0,0,4,8,5,0,812,218476.88,64621.27,0,0,1933.2706 -6086,7484,13513,13514,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.2639923,6.1925292,57,4,-94.028252,0,3,2,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,14.5,1,1,0,1.3572381,6.1560111,45.02,34.56,52,45,5,1,1,0,0,0,2,2,1,575,454114.44,142914.48,15346.338,0,3281.6621 -6086,7484,13514,13513,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,-4,-141.08104,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,75.621071,0,0,1,1,0,1.1203904,0,52,45,45.02,34.56,8,1,1,0,0,0,2,2,1,575,454114.44,142914.48,15346.338,0,3281.6621 -6087,7485,13515,13516,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,5.8666396,5.887362,0,7,3,67.017044,0,3,3,2019,19,7,30,30,1,7,0,1.0499564,1.0499564,0,0,0,0,0,0,0,0,0,0,32.43,32.84,49.04,55.86,5,1,1,0,0,8,11,3,1,367,630435.25,301371.88,146205.69,0,1457.5349 -6087,7485,13516,13515,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4119186,8.2243109,0,7,-3,-63.762527,0,3,3,2019,9,0,32,32,1,0,0,12.185768,12.185768,0,0,0,0,0,0,0,0,0,0,49.04,55.86,32.43,32.84,8.333333333333334,1,1,0,0,8,11,3,1,367,630435.25,301371.88,146205.69,0,1457.5349 -6088,7486,13517,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,5.8732247,5.3645077,0,0,-938.71173,0,2,3,2019,12,1,0,89,4,1,0,0,0,0,0,0,0,5.48,1,1,0,2.0906146,5.9064779,45.99,27.95,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,358,192635.02,0,0,0,-196.08302 -6089,7487,13518,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.4226975,4.9044719,0,0,-1027.4493,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.9240217,0,42.52,40.25,-9,-9,5,1,1,0,0,0,10,2,1,1202,42245.457,0,0,0,343.66858 -6089,7488,13519,13520,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.7773418,8.7873678,0,9,6,-161.91273,0,2,2,2019,7,0,44,48,1,0,0,20.279024,20.279024,0,0,0,0,0,1,1,0,0,0,64.48,48.62,40.59,40.76,5,1,1,0,0,10,10,5,1,1647,627531.25,178536.2,680870.06,260996.17,5094.5273 -6089,7488,13520,13519,13518,-9,1,1,48,0,0,0,2,2,-9,0,3,8.9045382,8.878108,0,9,-6,-7.3894458,0,2,2,2019,12,0,48,44,1,0,0,17.004889,17.004889,0,0,0,0,0,1,1,0,0,0,40.59,40.76,64.48,48.62,3.333333333333333,1,1,0,0,10,10,5,1,1647,627531.25,178536.2,680870.06,260996.17,5094.5273 -6089,7488,13521,-9,13519,13520,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-994.57959,-9,1,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,40.19,61.69,-9,-9,3.333333333333333,1,1,0,0,0,10,5,1,1647,627531.25,178536.2,680870.06,260996.17,5094.5273 -6090,7489,13522,13523,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.1727829,8.5152864,46,0,228.65115,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.3903198,8.1239433,46.89,54.32,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,662.5,1871949.6,1164746,646983.06,0,4144.0571 -6090,7489,13523,13522,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.0084352,7.8743572,46,0,-131.7113,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8555479,7.7774878,54.2,57.49,46.89,54.32,8.333333333333334,1,1,0,0,9,7,4,1,662.5,1871949.6,1164746,646983.06,0,4144.0571 -6091,7490,13524,13525,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9046359,7.98489,6.1234374,39,-16,-53.918037,0,2,2,2019,7,0,40,35,1,0,0,9.6481323,9.6481323,0,0,0,0,0,1,1,0,0,5.9406538,50.42,59.1,60.12,54.8,8.333333333333334,1,1,0,0,11,2,3,1,355,19095.229,-26036.039,104994.9,0,2046.7029 -6091,7490,13525,13524,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,4.8652291,4.9306011,30,16,80.13694,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.507225,4.6381898,60.12,54.8,50.42,59.1,8.333333333333334,1,1,0,0,9,2,3,1,355,19095.229,-26036.039,104994.9,0,2046.7029 -6092,7491,13526,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.2118235,7.9563575,0,0,0,-1007.8096,-9,2,2,2019,23,6,40,0,1,6,0,9.5837498,9.5837498,0,0,0,0,0,1,1,0,0,0,22.18,69.37,-9,-9,0,1,1,0,0,8,2,4,1,585,222825.83,113401.7,124718.55,54783.293,1988.2202 -6093,7492,13527,-9,13528,13529,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.7182,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 -6093,7492,13528,13529,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,0,0,0,6,-2,78.437241,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.22,55.19,55.36,51.57,5,2,3,1,0,0,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 -6093,7492,13529,13528,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.7367382,8.2866554,0,6,2,-.74446446,0,3,2,2019,8,0,38,45,1,0,0,8.8650045,8.8650045,0,0,0,0,0,1,1,0,0,0,55.36,51.57,39.22,55.19,8.333333333333334,2,3,0,0,7,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 -6093,7492,13530,-9,13528,13529,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-873.23047,-9,3,3,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.367328,0,43.92,62.31,-9,-9,10,2,3,0,0,0,9,2,0,532.25,-21211.574,33793.512,0,0,1634.1179 -6094,7493,13531,-9,13532,-9,1,1,51,0,0,0,3,3,-9,0,3,8.4076834,8.3736887,0,0,0,-987.96466,0,3,2,2019,18,6,46,37,1,6,0,8.5681515,8.5681515,0,0,0,0,14.5,1,1,0,0,0,40.75,58.26,-9,-9,0,1,1,0,0,9,8,4,1,433,-54855.195,-52920.445,77459.617,51509.82,1282.4467 -6094,7494,13532,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.4177675,5.4473147,0,0,-1046.5503,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,10.101388,0,0,1,1,0,0,5.1405454,52,46,-9,-9,8,1,1,0,0,0,8,2,1,451,-35981.035,0,90870.305,0,236.63805 -6095,7495,13533,13534,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.6067262,7.4702258,56,-1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7304101,60.12,54.8,55.91,38.95,10,1,1,0,0,0,2,4,1,666.5,1307233.5,587146,357463.94,0,3928.1182 -6095,7495,13534,13533,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.8073087,7.8961596,56,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8717666,55.91,38.95,60.12,54.8,8.333333333333334,1,1,0,0,2,2,4,1,666.5,1307233.5,587146,357463.94,0,3928.1182 -6096,7496,13535,13537,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.5477419,7.6849961,0,20,0,-2.8692672,0,2,2,2019,21,9,15,0,1,9,0,14.538884,14.538884,0,0,0,0,0,1,1,0,0,0,30.13,56.51,51.14,60.45,5,1,1,0,0,7,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 -6096,7496,13536,-9,13535,13537,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.93073,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 -6096,7496,13537,13535,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,8.4020443,8.3317776,0,20,0,-64.018066,0,1,1,2019,8,1,60,70,1,1,0,6.4303288,6.4303288,0,0,0,0,0,1,1,0,0,0,51.14,60.45,30.13,56.51,8.333333333333334,1,1,0,0,12,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 -6096,7496,13538,-9,13535,13537,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.43634,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,1484.25,271130.16,60386.418,171507.72,117921.22,2527.3657 -6097,7497,13539,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-956.68744,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.69,16.61,-9,-9,5,1,1,0,0,5,9,1,0,495,-191862.98,0,0,0,1595.3007 -6098,7498,13540,13543,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.0800266,8.1818504,0,7,4,53.20866,0,3,3,2019,10,0,25,34,1,1,0,17.021429,17.021429,0,0,0,0,0,1,1,0,0,0,50,55,46.08,57.2,8,1,1,0,0,1,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 -6098,7498,13541,-9,13540,13543,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.5219,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 -6098,7498,13542,-9,13540,13543,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1635,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 -6098,7498,13543,13540,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.635396,8.6323404,0,7,-4,-1.5839425,0,3,2,2019,12,0,44,37,1,0,0,13.590314,13.590314,0,0,0,0,0,1,1,0,0,0,46.08,57.2,50,55,5,1,1,0,0,8,13,4,1,1805.25,250516.64,73467.266,204653.69,26141.365,3411.0791 -6099,7499,13544,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.3624773,6.0655136,0,0,-949.93878,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,.78698891,6.363379,46.71,38.48,-9,-9,5,1,1,0,0,0,5,2,1,728,-93807.75,21119.461,21375.449,0,1805.4946 -6099,7500,13545,-9,13544,-9,1,1,44,0,0,0,3,3,-9,1,4,0,0,0,0,0,-952.97382,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,5,1,1,360,-193824.98,0,0,0,191.06648 -6100,7501,13546,13547,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.5970011,8.5924788,0,27,-5,79.32254,0,2,2,2019,16,5,37,37,1,5,0,15.233126,15.233126,0,0,0,0,0,0,0,0,6.5391107,0,28.41,64.05,49.91,58.02,6.666666666666667,1,1,0,0,9,13,5,1,721,2841591.5,1466644.9,538128.94,0,3963.1626 -6100,7501,13547,13546,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.5800171,8.3992672,0,27,5,46.556259,0,3,2,2019,12,0,37,37,1,0,0,13.980318,13.980318,0,0,0,0,0,0,0,0,7.0205607,0,49.91,58.02,28.41,64.05,8.333333333333334,1,1,0,0,9,13,5,1,721,2841591.5,1466644.9,538128.94,0,3963.1626 -6101,7502,13548,13549,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.4008465,8.3759327,0,17,-1,36.157761,0,3,3,2019,6,0,37,50,1,0,0,10.473049,10.473049,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.1,59.17,8.333333333333334,1,1,0,0,13,9,5,1,904.5,997957.13,729655.63,778725.63,426640.25,3728.4941 -6101,7502,13549,13548,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.196476,8.3633003,7.0786834,17,1,136.48785,0,3,2,2019,12,0,37,37,1,0,0,13.019198,13.019198,0,0,0,0,0,0,0,0,0,7.3981824,45.1,59.17,57.06,57.76,3.333333333333333,1,1,0,0,10,9,5,1,904.5,997957.13,729655.63,778725.63,426640.25,3728.4941 -6101,7503,13550,-9,13548,13549,1,0,22,0,0,0,1,1,1,0,4,7.2373881,6.9017367,0,0,0,-941.03748,-9,1,1,2019,11,2,25,0,1,2,1,6.3356948,6.3356948,0,0,0,0,0,0,0,0,0,0,44.21,60.79,-9,-9,6.666666666666667,1,1,0,0,7,9,3,1,2701,-380718.34,0,0,0,425.33136 -6102,7504,13551,13552,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.3187752,9.1916065,0,33,-2,49.498547,0,2,2,2019,7,0,43,43,1,0,0,32.69738,32.69738,0,0,0,0,0,0,0,0,5.3605542,0,62.39,56.71,45.67,53.13,8.333333333333334,1,1,0,0,9,5,5,1,1051,993726.75,577524.44,272212.91,0,4227.1162 -6102,7504,13552,13551,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7375674,7.4117475,0,32,2,72.950905,0,2,2,2019,11,0,26,24,1,0,0,8.5641403,8.5641403,0,0,0,0,0,0,0,0,0,0,45.67,53.13,62.39,56.71,8.333333333333334,1,1,0,0,6,5,5,1,1051,993726.75,577524.44,272212.91,0,4227.1162 -6103,7505,13553,13554,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,60,-3,-64.552818,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,26.184225,0,0,1,1,0,0,0,46.96,18.26,62.39,56.71,0,1,1,0,0,0,11,2,0,1364.5,353589.97,132638.88,187671.69,0,1795.6797 -6103,7505,13554,13553,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.6659126,5.5506277,60,3,-12.377766,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.7752895,62.39,56.71,46.96,18.26,10,1,1,0,0,0,11,2,0,1364.5,353589.97,132638.88,187671.69,0,1795.6797 -6104,7506,13555,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.5712214,6.7272024,0,0,-915.93085,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,4.1852565,0,0,0,1,1,0,6.2489834,6.8005166,46.22,34.57,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,402,647734.88,203766.03,206747.47,0,1240.0972 -6105,7507,13556,13557,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,8.3256912,8.2280045,38,-6,36.330078,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.871841,8.2435617,56.91,49.54,61.11,48.86,8.333333333333334,1,1,0,0,9,12,4,1,2593.5,1330846.3,713382.19,370564.88,0,4402.4092 -6105,7507,13557,13556,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.3791642,7.4090652,38,6,-26.3794,0,2,2,2019,7,0,0,31,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3882427,7.5412636,61.11,48.86,56.91,49.54,8.333333333333334,1,1,0,0,10,12,4,1,2593.5,1330846.3,713382.19,370564.88,0,4402.4092 -6105,7508,13558,-9,13556,13557,1,1,34,0,0,0,2,2,-9,0,4,8.0323772,8.1590977,0,0,0,-1003.5822,0,2,3,2019,11,0,38,38,1,0,0,9.4092684,9.4092684,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,12,4,1,190,-239338.11,0,0,0,749.01837 -6106,7509,13559,13560,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.9355588,8.0236559,0,13,-12,57.717911,0,3,2,2019,17,4,10,5,1,4,0,43.784931,43.784931,0,0,0,0,0,0,0,0,0,0,46.9,56.66,57.73,54.53,8.333333333333334,1,1,0,0,12,10,5,1,1226.5,116537.48,72228.375,239783.25,110367.44,3013.7358 -6106,7509,13560,13559,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.500597,8.4096918,0,13,12,-56.729706,0,2,2,2019,12,1,44,44,1,1,0,9.4308376,9.4308376,0,0,0,0,0,0,0,0,2.1359949,0,57.73,54.53,46.9,56.66,1.666666666666667,1,1,0,0,13,10,5,1,1226.5,116537.48,72228.375,239783.25,110367.44,3013.7358 -6107,7510,13561,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,3,7.9559021,8.0556049,0,0,0,-1021.566,0,3,3,2019,10,0,39,39,1,0,1,7.9879546,7.9879546,0,0,0,0,0,1,1,0,0,0,44.36,54.04,-9,-9,5,1,1,0,0,9,2,3,1,1289,-115064.52,0,0,0,567.48267 -6108,7511,13562,-9,-9,-9,1,1,23,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1036.7943,-9,3,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,5,1,1,0,0,2,9,1,0,229,-345125.03,0,0,0,0 -6109,7512,13563,-9,13564,13565,1,1,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1041.6528,1,2,2,2019,9,1,0,6,2,1,1,0,0,0,0,0,0,0,1,1,0,1.2631291,0,33.63,64.61,-9,-9,8.333333333333334,1,1,0,0,4,10,1,1,233,-387048.09,0,0,0,273.58984 -6109,7513,13564,13565,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.7761202,8.2009058,0,4,-1,-21.18218,0,-9,-9,2019,9,0,42,43,1,0,0,8.3948326,8.3948326,0,0,0,0,0,1,1,0,3.556664,0,48.05,53.56,46.09,44.85,8.333333333333334,1,1,0,0,11,10,4,1,441.33334,251998.05,93351.664,250451.86,182243.25,3131.229 -6109,7513,13565,13564,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4958563,8.2977009,0,4,1,119.70206,0,-9,-9,2019,13,3,45,44,1,3,0,13.894924,13.894924,0,0,0,0,0,1,1,0,3.3930616,0,46.09,44.85,48.05,53.56,8.333333333333334,1,1,0,0,11,10,4,1,441.33334,251998.05,93351.664,250451.86,182243.25,3131.229 -6109,7513,13566,-9,13564,13565,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.8446,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,441.33334,251998.05,93351.664,250451.86,182243.25,3131.229 -6110,7514,13567,13568,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.1053967,6.0139599,45,-3,-81.959152,0,2,2,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.595099,5.8258629,48.61,56.07,52.33,54.66,10,1,1,0,0,3,2,3,1,840,1638001.5,1347417.1,303828.13,0,2319.9287 -6110,7514,13568,13567,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.6804013,7.7400484,45,3,-158.80186,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.3351336,7.755991,52.33,54.66,48.61,56.07,8.333333333333334,1,1,0,0,5,2,3,1,840,1638001.5,1347417.1,303828.13,0,2319.9287 -6111,7515,13569,13570,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,0,0,0,7,-13,0,0,3,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,41.15,27.24,37.36,19.77,1.666666666666667,1,1,1,0,0,5,1,1,910,4939.25,0,0,0,1000.0359 -6111,7515,13570,13569,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,7,13,0,0,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,41.15,27.24,1.666666666666667,1,1,0,0,0,5,1,1,910,4939.25,0,0,0,1000.0359 -6111,7515,13571,-9,13569,13570,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.0502,-9,2,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.48,58.55,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,910,4939.25,0,0,0,1000.0359 -6112,7516,13572,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.5978432,9.3032894,0,0,0,-1083.5225,0,1,2,2019,9,0,50,57,1,0,0,30.796017,30.796017,0,0,0,0,0,0,0,0,0,0,51.71,58.83,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,261,1254239.8,754820.69,268731.97,111012.39,4998.188 -6113,7517,13573,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.0353799,5.2641497,0,0,-907.8819,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.616724,5.3191447,56.89,23.1,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,235,349581.53,37434.418,179104.75,0,824.84949 -6114,7518,13574,13576,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.4828625,9.4794235,0,10,0,6.4588208,0,2,1,2019,11,0,45,47,1,0,0,30.525908,30.525908,0,0,0,0,0,0,0,0,0,0,55.19,54.26,49.75,53.18,8.333333333333334,1,1,0,0,10,11,5,1,744.66669,3369659.5,2748685.3,633351.81,44825.203,7292.9155 -6114,7518,13575,-9,13576,13574,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1023.5558,-9,1,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,4.9321427,0,43.09,58.28,-9,-9,6.666666666666667,1,1,0,0,0,11,5,1,744.66669,3369659.5,2748685.3,633351.81,44825.203,7292.9155 -6114,7518,13576,13574,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,9.0351124,9.0570698,0,10,0,36.854317,0,2,1,2019,12,0,43,43,1,0,0,21.972597,21.972597,0,0,0,0,0,0,0,0,0,0,49.75,53.18,55.19,54.26,6.666666666666667,1,1,0,0,10,11,5,1,744.66669,3369659.5,2748685.3,633351.81,44825.203,7292.9155 -6114,7519,13577,-9,13576,13574,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1027.8021,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.48634258,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,209,423002.16,0,0,0,390.44745 -6115,7520,13578,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5511522,9.8226128,0,7,13,84.536949,0,2,2,2019,7,0,47,47,1,0,0,44.929207,44.929207,0,0,0,0,0,0,0,0,5.5182209,0,57.16,56.15,43.73,59.7,10,1,1,0,0,6,8,5,1,807,425089.13,149917.06,348755.84,102576.26,5766.1167 -6115,7521,13579,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,0,0,0,7,-13,-55.229916,0,2,3,2019,15,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,57.16,56.15,8.333333333333334,1,1,1,0,3,8,5,1,331,-116624.27,0,0,0,0 -6116,7522,13580,13582,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.4663677,9.9236145,0,6,-2,-67.720726,0,1,1,2019,9,0,50,50,1,0,0,38.951176,38.951176,0,0,0,0,0,0,0,0,6.9536424,0,58.46,44.55,36.49,58.77,8.333333333333334,1,1,0,0,7,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 -6116,7522,13581,-9,13582,13580,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.21191,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 -6116,7522,13582,13580,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,0,0,0,6,2,-69.550644,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.2579975,0,36.49,58.77,58.46,44.55,8.333333333333334,1,1,0,0,0,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 -6116,7522,13583,-9,13582,13580,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.09692,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,373,1199326.4,1086628.5,172987.3,64790.129,16118.812 -6117,7523,13584,-9,13587,13585,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-895.4126,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 -6117,7523,13585,13587,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.1011009,8.1817484,0,27,2,-17.124401,0,2,1,2019,12,2,40,38,1,2,0,9.4159555,9.4159555,0,0,0,0,2,1,1,0,0,0,47.53,47.36,47.93,43.86,6.666666666666667,1,1,0,0,13,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 -6117,7523,13586,-9,13587,13585,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1001.1542,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 -6117,7523,13587,13585,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.2346706,7.2461967,0,26,-2,-29.597385,0,2,2,2019,9,0,18,0,1,0,0,9.0430183,9.0430183,0,0,0,0,0,1,1,0,.53838879,0,47.93,43.86,47.53,47.36,8.333333333333334,1,1,0,0,7,8,3,1,827.25,1088747,435299.13,816398.5,68897.078,2638.4265 -6118,7524,13588,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.1503506,8.1734056,0,0,-866.53235,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.7981043,8.4696255,54.94,53.18,-9,-9,10,1,1,0,0,8,8,4,1,421,1893191.4,445162.03,257343.06,0,3963.8855 -6119,7525,13589,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,0,0,0,0,-977.06757,0,2,2,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.36,51.32,-9,-9,1.666666666666667,1,1,0,0,0,8,1,0,255,104136.81,0,0,0,1266.9508 -6120,7526,13590,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.5576262,7.471427,0,0,-1084.6257,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7949739,7.8022861,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,316,540882,181044.36,211347.17,0,1838.7667 -6121,7527,13591,13592,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.7355957,8.3742399,0,10,7,-52.736877,0,3,3,2019,10,1,60,60,1,1,0,9.1702671,9.1702671,0,0,0,0,0,0,0,0,0,0,59.6,46.99,42.6,40.24,6.666666666666667,3,4,0,0,9,7,5,0,330,614586.63,107238.59,409910.81,0,3277.3828 -6121,7527,13592,13591,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.0232258,7.7833109,0,37,-7,-32.085472,0,3,3,2019,10,0,30,42,1,0,0,10.975726,10.975726,0,0,0,0,0,0,0,0,0,0,42.6,40.24,59.6,46.99,6.666666666666667,3,4,0,1,12,7,5,0,330,614586.63,107238.59,409910.81,0,3277.3828 -6121,7528,13593,-9,13592,13591,1,0,36,0,0,0,2,2,-9,0,4,8.0401754,7.9828963,0,0,0,-1070.4352,0,3,2,2019,11,0,59,58,1,2,1,7.468287,7.468287,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,12,7,4,0,461,443737.25,0,0,0,1153.5308 -6122,7529,13594,13595,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.3294721,7.3907709,43,1,-94.870285,-9,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,120.0228,0,0,1,1,0,4.5943875,7.6786842,53,46,26.81,39.68,8,1,1,0,0,0,8,2,0,829.5,922381.75,104644.98,539283.38,0,1823.9009 -6122,7529,13595,13594,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,43,-1,-19.70895,-9,3,3,2019,18,8,0,0,4,8,0,0,0,1,0,43.22176,0,74.5,1,1,0,0,0,26.81,39.68,53,46,5,1,1,0,0,0,8,2,0,829.5,922381.75,104644.98,539283.38,0,1823.9009 -6123,7530,13596,13597,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.9222355,8.5717707,0,31,-5,-30.094707,0,2,-9,2019,12,0,37,37,1,0,0,16.278061,16.278061,0,0,0,0,0,1,1,0,0,0,48.94,34.29,61.85,34.03,8.333333333333334,1,1,0,0,9,1,5,0,374.5,791487.88,433684.59,511035.59,136970,3674.1257 -6123,7530,13597,13596,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.7530222,7.9594936,5.731009,31,5,11.892941,0,2,2,2019,6,0,30,30,1,0,0,9.0905886,9.0905886,0,0,0,0,0,1,1,0,.70620853,5.8593068,61.85,34.03,48.94,34.29,8.333333333333334,1,1,0,0,11,1,5,0,374.5,791487.88,433684.59,511035.59,136970,3674.1257 -6123,7531,13598,-9,13596,13597,1,0,24,0,0,0,1,1,1,0,4,8.1748552,8.5082178,0,0,0,-980.12201,-9,2,2,2019,13,1,37,0,1,1,1,12.686399,12.686399,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,1,1,4,0,922,-127295.92,-85564.242,0,0,1669.6277 -6124,7532,13599,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.1389928,7.4134021,0,0,-1015.1243,0,3,3,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,7.0377207,7.5510263,33.1,31.23,-9,-9,3.333333333333333,1,1,0,1,0,7,3,1,435,599692.19,317131.09,257356.55,48493.258,1823.5153 -6125,7533,13600,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.3824048,5.4761438,0,0,-1034.0397,0,3,-9,2019,16,7,0,0,4,7,0,0,0,1,0,41.751328,0,0,1,1,0,6.0443349,5.3936529,45.54,25.94,-9,-9,3.333333333333333,1,1,0,0,0,1,2,0,2411,-82377.531,0,0,0,1050.5153 -6126,7534,13601,13602,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,0,0,0,8,-13,-29.702723,0,2,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,63.8,49.17,48.87,58.55,3.333333333333333,2,3,0,0,0,8,3,1,170.5,1671612.3,496307.75,782822.75,0,1126.7975 -6126,7534,13602,13601,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,7.8350196,7.3366585,0,13,13,-151.35559,0,2,2,2019,7,0,16,16,1,0,0,15.682742,15.682742,0,0,0,0,0,0,0,0,0,0,48.87,58.55,63.8,49.17,1.666666666666667,2,3,0,0,11,8,3,1,170.5,1671612.3,496307.75,782822.75,0,1126.7975 -6127,7535,13603,13606,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.3107085,7.2659364,0,10,-5,101.09229,0,2,-9,2019,10,0,25,25,1,0,0,7.7591753,7.7591753,0,0,0,0,0,1,1,0,0,0,54.2,57.49,35.3,49.61,10,1,1,0,0,9,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 -6127,7535,13604,-9,13603,13606,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.3324,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 -6127,7535,13605,-9,13603,13606,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.41522,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 -6127,7535,13606,13603,-9,-9,1,1,40,1,3,0,2,2,-9,0,3,8.5915575,8.4702139,0,10,5,36.58036,0,3,-9,2019,11,1,50,40,1,1,0,16.140451,16.140451,0,0,0,0,7,1,1,0,0,0,35.3,49.61,54.2,57.49,6.666666666666667,1,1,0,0,11,2,4,1,732.5,240104.2,-22669.34,284915.81,46733.008,2975.106 -6128,7536,13607,13608,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.3006744,9.1428595,0,26,-20,16.590958,0,3,2,2019,16,6,35,35,1,6,0,27.45891,27.45891,0,0,0,0,0,1,1,0,9.0615931,0,42.61,49.31,52,48,10,1,1,0,0,10,4,5,1,646,2181951,1417925.5,717454.75,44962.281,13333.699 -6128,7536,13608,13607,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.4680243,9.496192,7.5641742,9,20,-58.829109,0,-9,-9,2019,10,0,50,50,1,1,0,30.86768,30.86768,0,0,0,0,0,1,1,0,8.3817759,7.6420417,52,48,42.61,49.31,7,1,1,0,0,1,4,5,1,646,2181951,1417925.5,717454.75,44962.281,13333.699 -6129,7537,13609,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.3889251,7.5069594,0,0,0,-954.58868,0,-9,-9,2019,9,0,25,27,1,0,0,7.7744689,7.7744689,0,0,0,0,0,0,0,0,0,0,61.42,35.65,-9,-9,8.333333333333334,1,1,0,0,7,5,3,0,837.5,-65893.531,29196.715,0,0,344.99475 -6129,7537,13610,-9,13609,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-943.95258,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,3,0,837.5,-65893.531,29196.715,0,0,344.99475 -6130,7538,13611,13612,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.8526573,9.7327051,6.8152661,7,10,-202.35451,0,-9,-9,2019,15,4,70,80,1,4,0,18.167614,18.167614,0,0,0,0,56,1,1,0,6.5229421,7.306808,50.58,40.29,28.86,40.23,3.333333333333333,1,1,0,1,11,9,5,1,1050,4138628,3552242.5,547013.25,0,9690.8242 -6130,7538,13612,13611,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,8.3292904,8.9435711,5.91857,7,-10,127.63461,-9,-9,-9,2019,17,6,50,0,1,6,0,15.086369,15.086369,0,0,0,0,0,1,1,0,6.0384111,0,28.86,40.23,50.58,40.29,6.666666666666667,1,1,0,1,12,9,5,1,1050,4138628,3552242.5,547013.25,0,9690.8242 -6131,7539,13613,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.1474719,5.0884843,0,0,-944.38934,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.091894932,5.5558119,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,6,1,2,1,325,288868.13,-47657.594,0,0,811.34906 -6132,7540,13614,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5631971,8.5966873,0,1,2,-196.28247,-9,-9,-9,2019,11,0,37,0,1,2,0,14.768151,14.768151,0,0,0,0,0,0,0,0,0,0,47,57,47.15,56.66,7,1,1,0,0,1,9,5,0,234,83746.367,69003.734,0,0,1616.4004 -6133,7541,13615,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,9.3625221,9.2515907,0,0,0,-967.71106,0,-9,1,2019,12,2,38,24,1,2,0,29.95796,29.95796,0,0,0,0,0,0,0,0,0,0,40.71,51.67,-9,-9,6.666666666666667,2,3,0,0,5,5,5,0,572,371647.28,32678.648,110846.78,83948.352,4710.0938 -6134,7542,13616,-9,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,6.9081731,6.998642,0,0,0,-972.48157,0,2,3,2019,10,0,40,40,1,0,0,3.2325029,3.2325029,0,0,0,0,0,1,1,0,0,0,61.71,43.2,-9,-9,6.666666666666667,1,1,0,0,9,13,2,1,2269.3333,107032.27,65624.828,0,0,749.01978 -6134,7542,13617,-9,13616,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.96,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,2269.3333,107032.27,65624.828,0,0,749.01978 -6134,7542,13618,-9,13616,-9,1,1,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-1049.7585,-9,2,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,0,13,2,1,2269.3333,107032.27,65624.828,0,0,749.01978 -6135,7543,13619,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.1348677,8.4164019,0,0,0,-864.59552,0,-9,-9,2019,16,4,40,44,1,4,0,9.1854334,9.1854334,0,0,0,0,0,0,0,0,0,0,36.49,48.17,-9,-9,5,1,1,0,0,9,11,4,0,291,823937.56,535716.31,111562.88,65148.871,1795.9945 -6136,7544,13620,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-976.71887,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,342,159741.05,0,0,0,1478.698 -6137,7545,13621,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.7765913,7.285665,0,0,-977.81049,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.985043,7.0754414,45.59,22.89,-9,-9,6.666666666666667,1,1,0,0,6,10,2,1,512,627786.81,195960.2,392754.75,0,1514.5907 -6138,7546,13622,13623,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,9.1076317,9.0943861,0,34,-1,-1.3041378,0,3,3,2019,18,6,37,42,1,6,0,27.876905,27.876905,0,0,0,0,0,0,0,0,0,0,30.52,44.03,56.77,52.22,6.666666666666667,1,1,0,0,10,9,5,1,651.5,698208.81,131852.64,368121.38,0,6338.6113 -6138,7546,13623,13622,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.1257305,9.0024309,0,34,1,-133.67442,0,2,3,2019,6,0,40,43,1,0,0,27.888885,27.888885,0,0,0,0,0,0,0,0,0,0,56.77,52.22,30.52,44.03,8.333333333333334,1,1,0,0,12,9,5,1,651.5,698208.81,131852.64,368121.38,0,6338.6113 -6138,7547,13624,-9,13622,13623,1,0,20,0,0,0,2,2,-9,0,3,7.9622912,7.7067304,0,0,0,-922.22186,0,3,2,2019,12,0,48,40,1,0,1,5.6885138,5.6885138,0,0,0,0,0,0,0,0,0,0,47.75,53.7,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,908,256362.92,43888.762,0,0,1551.5973 -6139,7548,13625,13626,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,6.3104606,6.7292123,6.1505737,10,0,-19.925634,0,-9,-9,2019,8,0,6,19,1,0,0,10.810019,10.810019,0,0,0,0,2,1,1,0,0,6.4753461,43.62,36.9,54.2,57.49,6.666666666666667,1,1,0,0,12,10,3,0,1222.5,343081.31,84831.883,229164.72,0,2829.9331 -6139,7548,13626,13625,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.9118276,8.1454458,10,9,37.126694,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0679979,7.5474372,54.2,57.49,43.62,36.9,8.333333333333334,1,1,0,0,7,10,3,0,1222.5,343081.31,84831.883,229164.72,0,2829.9331 -6140,7549,13627,13628,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.9003448,5.9532337,8,-10,-28.286718,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4455256,6.0658998,57.16,56.15,62,41.73,8.333333333333334,1,1,0,0,0,11,2,1,714.5,245748.78,237430.78,161269.66,0,1815.4792 -6140,7549,13628,13627,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.4108562,7.3722987,48,10,-28.899576,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8331881,7.1620483,62,41.73,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,714.5,245748.78,237430.78,161269.66,0,1815.4792 -6141,7550,13629,13630,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.7293777,7.7697949,52,3,42.902321,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,7.2787089,7.8544216,34.11,30.69,41.45,45.31,3.333333333333333,1,1,0,0,0,1,3,1,414,429613.75,69712.344,312741.13,0,2248.1748 -6141,7550,13630,13629,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,52,-3,-133.8196,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,5.48,1,1,0,3.5775898,0,41.45,45.31,34.11,30.69,8.333333333333334,1,1,0,0,0,1,3,1,414,429613.75,69712.344,312741.13,0,2248.1748 -6142,7551,13631,13632,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,8.4576235,8.2889996,10,2,2.0466464,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4647312,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,11,4,1,488,1332989.5,698876.38,133198.91,0,4185.1289 -6142,7551,13632,13631,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,6.9424987,7.3966632,22,-2,78.721115,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4845901,7.0934896,57.06,57.76,58.15,52.91,10,1,1,0,0,11,11,4,1,488,1332989.5,698876.38,133198.91,0,4185.1289 -6143,7552,13633,13634,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,9.0591497,8.7142391,0,2,0,76.873978,0,-9,-9,2019,6,0,50,45,1,0,0,20.946882,20.946882,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.79,52.62,10,1,1,0,0,10,13,5,0,301.66666,-200085.88,25264.094,208098.56,163685.72,3896.7991 -6143,7552,13634,13633,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,7.2201972,7.1485643,0,2,0,2.680166,0,2,2,2019,2,0,24,24,1,0,0,7.836977,7.836977,0,0,0,0,0,1,1,0,0,0,55.79,52.62,57.16,56.15,10,1,1,0,0,5,13,5,0,301.66666,-200085.88,25264.094,208098.56,163685.72,3896.7991 -6143,7552,13635,-9,13634,13633,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.6088,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,0,301.66666,-200085.88,25264.094,208098.56,163685.72,3896.7991 -6144,7553,13636,-9,13639,13638,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.8895,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 -6144,7553,13637,-9,13639,13638,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.8741,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 -6144,7553,13638,13639,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,9.0247211,9.1917305,0,14,1,-22.331692,0,2,2,2019,8,0,38,48,1,0,0,30.937931,30.937931,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.46,56.91,8.333333333333334,1,1,0,0,10,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 -6144,7553,13639,13638,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,7.9576507,8.0455151,0,14,-1,125.01546,0,2,2,2019,6,0,22,30,1,0,0,14.23551,14.23551,0,0,0,0,0,0,0,0,0,0,49.46,56.91,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,748,483053.78,250025.81,289849.5,214360.81,4296.8447 -6145,7554,13640,13641,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1728888,7.7374864,0,31,4,114.96082,0,3,2,2019,9,0,38,38,1,1,0,9.5108891,9.5108891,0,0,0,0,0,0,0,0,0,0,54,54,61.11,48.86,8,2,3,0,1,8,9,4,0,1183,415333.56,247519.47,234052.58,25475.402,2542.9548 -6145,7554,13641,13640,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.0079203,8.3752174,0,31,-4,38.390198,0,2,2,2019,6,0,38,36,1,0,0,11.202532,11.202532,0,0,0,0,0,0,0,0,3.1147263,0,61.11,48.86,54,54,8.333333333333334,2,3,0,0,8,9,4,0,1183,415333.56,247519.47,234052.58,25475.402,2542.9548 -6146,7555,13642,-9,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,0,0,0,0,0,-999.07324,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,0,11,1,0,805,44528.98,0,0,0,957.11407 -6146,7555,13643,-9,13642,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1039.3505,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,1,0,805,44528.98,0,0,0,957.11407 -6146,7555,13644,-9,13642,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.391,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,805,44528.98,0,0,0,957.11407 -6146,7555,13645,-9,13642,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.0225,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,805,44528.98,0,0,0,957.11407 -6147,7556,13646,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.3780499,8.4714842,0,8,-3,-96.898003,0,1,1,2019,14,3,50,45,1,3,0,10.796072,10.796072,0,0,0,0,0,0,0,0,2.724643,0,54.2,57.49,62.39,56.71,8.333333333333334,2,3,0,0,7,10,5,1,322,144019.13,100989.03,0,0,1186.7147 -6147,7557,13647,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,8.4554987,8.6082182,0,8,3,-104.98809,0,-9,-9,2019,6,0,37,38,1,0,0,14.410451,14.410451,0,0,0,0,0,0,0,0,3.2027435,0,62.39,56.71,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,211,-178224.63,120469.05,0,0,1232.5552 -6148,7558,13648,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.5343652,7.8333182,0,0,-814.02081,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.2684083,6.3822975,40.62,39.74,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,320,335739.78,298026.41,178423.97,0,1120.1024 -6149,7559,13649,-9,-9,-9,1,0,59,1,1,0,2,2,-9,0,3,7.8278227,7.6160154,0,0,0,-1011.714,0,3,3,2019,9,1,34,34,1,1,0,8.3378687,8.3378687,0,0,0,0,7,1,1,0,0,0,61.05,25.85,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,205,-197123.39,-9864.0332,132433.8,0,618.6601 -6149,7560,13650,-9,13651,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-921.38458,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,1,891.5,-234114.23,0,0,0,337.62128 -6149,7560,13651,-9,13649,-9,1,0,28,1,1,0,2,2,-9,1,3,0,0,0,0,0,-1041.5326,0,2,3,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,58.72,36.19,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,891.5,-234114.23,0,0,0,337.62128 -6150,7561,13652,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.9419641,7.741787,0,0,0,-949.46893,0,1,1,2019,5,0,9,11,1,0,0,34.223587,34.223587,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,464,59748.031,0,43109.906,0,920.33685 -6151,7562,13653,13654,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.6914787,8.4144096,45,1,-84.268478,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.9278245,8.2407389,57.16,56.15,56.94,49.53,10,1,1,0,0,0,5,4,1,1011,1168306.5,862261,193363.28,0,3368.2407 -6151,7562,13654,13653,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,46,-1,34.799129,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5028267,0,56.94,49.53,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,1011,1168306.5,862261,193363.28,0,3368.2407 -6151,7563,13655,-9,13654,13653,1,1,40,0,0,0,2,2,-9,0,4,6.8069797,6.7556181,0,0,0,-943.01941,0,2,2,2019,6,0,5,5,1,0,0,21.802748,21.802748,0,0,0,0,0,1,1,0,1.7644674,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,5,5,2,1,1371,377145.94,20203.553,0,0,422.20828 -6152,7564,13656,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.5941544,8.5256615,0,0,0,-936.59631,0,2,2,2019,8,0,42,40,1,0,0,17.246094,17.246094,0,0,0,0,0,0,0,0,3.3828821,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,7,7,5,1,674,-375830.31,0,0,0,1965.7039 -6153,7565,13657,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,6.9486876,6.932188,0,0,-931.86316,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.897172,7.3009968,57.06,57.76,-9,-9,10,1,1,0,0,4,7,2,1,659,277478.25,-44553.152,198182.84,0,2151.8828 -6154,7566,13658,13659,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.4742212,7.2695346,0,2,2,81.150787,0,2,3,2019,8,0,40,40,1,0,0,4.6525393,4.6525393,0,0,0,0,2,0,0,0,6.7554436,0,58.62,36.17,57.06,57.76,8.333333333333334,1,1,0,0,10,11,4,1,1738.5,-241611.27,-80037.453,0,0,3023.1567 -6154,7566,13659,13658,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,8.5714025,8.5881348,0,2,-2,98.442772,0,-9,-9,2019,9,0,35,40,1,0,0,13.583302,13.583302,0,0,0,0,0,0,0,0,4.3367991,0,57.06,57.76,58.62,36.17,10,1,1,0,0,10,11,4,1,1738.5,-241611.27,-80037.453,0,0,3023.1567 -6155,7567,13660,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,9.0766869,9.2567272,0,0,0,-1004.0596,0,3,3,2019,10,0,41,42,1,0,0,26.533283,26.533283,0,0,0,0,0,0,0,0,3.1130736,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,9,8,5,1,349,212483.47,74510.336,0,0,3456.6013 -6155,7568,13661,-9,13660,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8041272,7.2981005,0,0,0,-1158.7155,0,2,2,2019,11,0,37,22,1,2,1,7.5735073,7.5735073,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,3,1,311,-84256.781,0,0,0,1342.8221 -6155,7569,13662,-9,13660,-9,1,1,20,0,0,0,2,2,-9,0,4,8.2210398,8.1245661,0,0,0,-996.51831,0,2,-9,2019,11,0,37,37,1,2,1,11.888079,11.888079,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,4,1,974,502249.44,95461.555,0,0,2014.8262 -6156,7570,13663,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,7.0609255,7.1136742,0,0,0,-921.60107,0,2,2,2019,5,0,15,32,1,0,0,11.778701,11.778701,0,0,0,0,71.5,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,11,9,2,1,2705,169752.05,0,289453.66,0,1134.9357 -6157,7571,13664,13665,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,0,0,10,1,43.476208,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,5.2121558,4.221849,47.500324,0,1,1,0,0,0,49.01,26.45,53.05,47.86,5,1,1,0,0,0,7,3,0,450.5,1936764.8,616116.75,726206.63,0,2042.0339 -6157,7571,13665,13664,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.5019999,8.0959797,10,-1,-.18119033,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.4458737,7.9636836,53.05,47.86,49.01,26.45,8.333333333333334,1,1,0,0,5,7,3,0,450.5,1936764.8,616116.75,726206.63,0,2042.0339 -6158,7572,13666,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.8968558,8.2587738,0,0,0,-875.36926,0,2,3,2019,16,6,20,20,1,6,0,15.561255,15.561255,0,0,0,0,0,0,0,0,1.6162519,0,37.7,54.28,-9,-9,5,1,1,0,0,11,7,4,1,355,451211,141013.84,203406.39,0,955.45111 -6159,7573,13667,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.2782378,7.9588289,0,0,-893.06769,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7718892,7.5891299,57.27,35.61,-9,-9,10,1,1,0,0,0,10,3,1,623,422712.22,362009.13,0,0,2597.532 -6160,7574,13668,13669,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.4408817,8.585041,0,33,-6,-66.43589,0,2,1,2019,12,1,25,25,1,1,0,22.639364,22.639364,0,0,0,0,0,0,0,0,7.3407435,0,54.2,57.49,58.05,54.52,8.333333333333334,1,1,0,0,11,7,5,1,800.5,2297443.5,943145.63,1443220.5,0,5572.4951 -6160,7574,13669,13668,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,9.4275179,9.469717,0,34,6,97.294144,0,2,2,2019,7,0,32,40,1,0,0,44.274803,44.274803,0,0,0,0,0,0,0,0,0,0,58.05,54.52,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,800.5,2297443.5,943145.63,1443220.5,0,5572.4951 -6161,7575,13670,13671,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.0963068,9.0682802,0,27,-11,-48.646198,0,2,1,2019,7,0,60,60,1,0,0,21.457748,21.457748,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,13,7,5,1,398,158468.16,0,0,0,6417.0317 -6161,7575,13671,13670,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0003166,7.9513006,0,26,11,127.24393,0,2,3,2019,7,0,7,10,1,0,0,46.236778,46.236778,0,0,0,0,2,0,0,0,7.3841429,0,57.16,56.15,62.39,56.71,1.666666666666667,1,1,0,0,9,7,5,1,398,158468.16,0,0,0,6417.0317 -6162,7576,13672,13673,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.5401611,8.3734074,0,34,1,72.318443,-9,-9,-9,2019,6,0,38,0,1,0,0,14.170298,14.170298,0,0,0,0,88,1,1,0,0,0,62.39,56.71,48.45,23.16,8.333333333333334,1,1,0,0,7,2,4,0,816,1224406.9,1035289.2,398318.06,0,2690.5054 -6162,7576,13673,13672,-9,-9,1,0,57,0,0,0,1,1,-9,0,1,0,6.7100511,6.8734593,34,-1,40.062706,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.7303996,48.45,23.16,62.39,56.71,6.666666666666667,1,1,0,0,6,2,4,0,816,1224406.9,1035289.2,398318.06,0,2690.5054 -6163,7577,13674,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7893586,8.0875826,0,0,0,-902.96777,0,2,2,2019,6,0,40,47,1,0,0,10.292397,10.292397,0,0,0,0,0,1,1,0,0,0,55.8,44.26,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,3517,909538.75,-9015.4854,436802.28,0,1170.0975 -6164,7578,13675,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,6.9476056,7.2169161,0,0,-1018.1288,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.73087722,6.9386783,67.36,24.59,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,417,399545.72,120430.51,106928.52,0,1662.6044 -6165,7579,13676,13677,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.380723,8.4945774,0,27,-3,38.718693,0,-9,-9,2019,7,0,40,40,1,0,0,14.842264,14.842264,0,0,0,0,0,0,0,0,.69513851,0,48.14,42.69,45.56,51,5,2,3,0,0,9,8,4,1,578.5,697279.5,37675,751605,32183.859,2493.2524 -6165,7579,13677,13676,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.0137749,6.73104,0,4,3,-16.341413,0,3,3,2019,12,0,15,15,1,0,0,7.538765,7.538765,0,0,0,0,0,0,0,0,1.8993515,0,45.56,51,48.14,42.69,5,2,3,0,0,9,8,4,1,578.5,697279.5,37675,751605,32183.859,2493.2524 -6165,7580,13678,-9,13677,13676,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-947.74255,0,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,.40568569,0,47.64,55.02,-9,-9,5,2,3,1,0,0,8,1,1,136,-88711.086,0,0,0,-46.192444 -6166,7581,13679,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1070.6619,-9,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.48,37.81,-9,-9,10,4,2,0,0,0,7,1,1,216,0,0,0,0,243.97749 -6167,7582,13680,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.5248313,6.6454258,0,0,-1025.1315,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1235271,6.7539454,67.21000000000001,37.95,-9,-9,10,1,1,0,0,5,2,2,1,439,533199.25,-32672.773,78871.859,0,950.90271 -6168,7583,13681,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1024.4329,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,57.39,-9,-9,10,4,5,0,0,2,8,1,0,463,-312418.03,0,0,0,0 -6169,7584,13682,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-952.93884,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,26.850117,132.39967,246.80222,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,13,1,0,318,139186.28,-12436.3,179350.02,0,786.94 -6170,7585,13683,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.042263,8.4744368,0,0,-961.68787,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0197067,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,677,848696.38,491309.31,91562.039,0,3138.7952 -6171,7586,13684,13686,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,9.0167484,8.8383369,0,4,1,-32.991329,0,2,2,2019,8,0,35,35,1,0,0,34.792149,34.792149,0,0,0,0,0,1,1,0,5.6152287,0,53.2,56.67,49.05,50.32,8.333333333333334,1,1,0,0,9,7,5,1,1125.3334,2152447.8,1697344,273009,0,3961.4314 -6171,7586,13685,-9,13686,13684,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.2117,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,1125.3334,2152447.8,1697344,273009,0,3961.4314 -6171,7586,13686,13684,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.3549423,7.515666,6.1407838,4,-1,-38.678425,0,-9,-9,2019,13,4,22,22,1,4,0,9.1842775,9.1842775,0,0,0,0,0,1,1,0,5.840982,0,49.05,50.32,53.2,56.67,8.333333333333334,4,2,0,0,3,7,5,1,1125.3334,2152447.8,1697344,273009,0,3961.4314 -6171,7587,13687,-9,13686,13684,1,0,24,0,1,0,2,2,-9,0,3,8.1455383,8.6654177,0,0,0,-967.45435,0,2,2,2019,17,5,50,40,1,5,1,9.5924225,9.5924225,0,0,0,0,0,1,1,0,0,0,41.87,56.48,-9,-9,1.666666666666667,1,1,0,0,3,7,4,1,477,-214547.73,0,0,0,1133.7302 -6172,7588,13688,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.9248328,6.8444595,0,0,-916.86145,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,.48042822,0,0,1,1,0,3.6780298,6.6987844,52.56,35.06,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,925,417981.97,52549.516,241130.03,0,1895.2759 -6173,7589,13689,13690,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,7.6363926,7.5615497,0,9,0,15.568055,0,-9,-9,2019,16,4,35,40,1,4,0,9.3412437,9.3412437,0,0,0,0,0,1,1,0,0,0,30.87,38.97,29.76,44.9,8.333333333333334,1,1,0,0,8,4,3,0,334,424783.63,163068.67,0,0,2365.3083 -6173,7589,13690,13689,-9,-9,1,1,53,0,0,0,3,3,-9,1,2,6.4293146,6.4001589,0,9,0,-39.314896,0,2,3,2019,27,9,10,10,1,9,0,8.8737431,8.8737431,0,0,0,0,0,1,1,0,0,0,29.76,44.9,30.87,38.97,1.666666666666667,1,1,0,0,11,4,3,0,334,424783.63,163068.67,0,0,2365.3083 -6173,7590,13691,-9,13689,13690,1,1,28,0,0,0,2,2,-9,0,3,7.3444548,7.6559486,0,0,0,-952.20526,-9,2,2,2019,10,1,33,0,1,1,1,4.9864697,4.9864697,0,0,0,0,0,1,1,0,1.5174382,0,54.7,46.42,-9,-9,6.666666666666667,1,1,0,0,2,4,3,0,312,41876.84,-100497.27,0,0,643.33191 -6174,7591,13692,-9,13693,13695,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.15845,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 -6174,7591,13693,13695,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,0,0,0,6,0,25.448927,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2429962,0,49.25,61.25,57.16,56.15,10,1,1,0,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 -6174,7591,13694,-9,13693,13695,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-952.80353,-9,2,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 -6174,7591,13695,13693,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.4690361,9.4381104,0,6,0,122.76064,0,2,1,2019,10,0,52,52,1,0,0,23.848742,23.848742,0,0,0,0,0,1,1,0,8.5054379,0,57.16,56.15,49.25,61.25,8.333333333333334,1,1,0,0,6,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 -6174,7591,13696,-9,13693,13695,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-794.14777,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,494.20001,1006461.5,784598.31,374957.09,167514.53,7395.9912 -6175,7592,13697,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,2,6.9864974,7.2166152,5.2478466,0,0,-1031.5126,0,-9,2,2019,11,1,15,16,1,1,0,9.6239614,9.6239614,0,0,0,0,0,1,1,0,5.723331,0,39.57,47.24,-9,-9,5,1,1,0,1,5,9,2,0,336.5,179961.91,29704.443,0,0,1623.2378 -6175,7592,13698,-9,13697,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.95654,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,336.5,179961.91,29704.443,0,0,1623.2378 -6176,7593,13699,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.6038814,7.3732948,0,0,0,-1038.2126,0,2,2,2019,7,0,27,27,1,0,0,7.2938714,7.2938714,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,817,-307143.06,4944.814,0,0,1856.1237 -6176,7594,13700,-9,13699,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1034.8269,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,499,-36892.414,0,0,0,503.10519 -6177,7595,13701,13702,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,6.7581129,6.908977,0,22,-8,10.443789,0,2,2,2019,15,3,16,17,1,3,0,6.2782669,6.2782669,0,0,0,0,0,1,1,0,0,0,37.83,42.51,51.24,42.44,3.333333333333333,1,1,0,0,13,2,3,1,1070.5,1087180.9,560976.69,399146.84,54869.766,1446.3879 -6177,7595,13702,13701,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,7.9510159,7.9364004,0,22,8,81.722794,0,2,2,2019,11,0,40,40,1,0,0,7.8613253,7.8613253,0,0,0,0,7,1,1,0,1.572762,0,51.24,42.44,37.83,42.51,5,1,1,0,0,13,2,3,1,1070.5,1087180.9,560976.69,399146.84,54869.766,1446.3879 -6178,7596,13703,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,3.6804504,3.7090728,0,0,-950.77814,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.48739752,4.087985,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,1340,1236825.3,351701.81,1025285.3,0,327.12759 -6179,7597,13704,13705,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.069643,8.2562485,0,38,4,118.80979,0,3,3,2019,9,0,48,45,1,0,0,8.4148798,8.4148798,0,0,0,0,0,0,0,0,0,0,43.02,57.64,34.11,48.08,6.666666666666667,3,4,0,0,12,9,5,0,470.5,-214537.52,-51411.387,0,0,3350.7207 -6179,7597,13705,13704,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.5061884,8.4646263,0,36,-4,-34.060349,0,2,3,2019,17,4,86,63,1,4,0,5.2524047,5.2524047,0,0,0,0,0,0,0,0,0,0,34.11,48.08,43.02,57.64,5,3,4,0,0,10,9,5,0,470.5,-214537.52,-51411.387,0,0,3350.7207 -6179,7598,13706,-9,13705,13704,1,1,25,0,0,0,2,2,-9,0,3,8.1858692,8.1859055,0,0,0,-930.78082,0,2,3,2019,22,8,40,37,1,8,1,11.239392,11.239392,0,0,0,0,0,0,0,0,0,0,31.54,48.75,-9,-9,1.666666666666667,3,4,0,0,7,9,4,0,415,211925.38,0,0,0,1822.0646 -6180,7599,13707,13708,-9,-9,1,0,56,0,1,0,2,2,-9,0,5,0,0,0,33,0,-32.817478,0,2,2,2019,6,0,0,5,4,0,0,0,0,0,0,0,0,27,1,1,0,.29769796,0,57.06,57.76,55.79,52.62,0,1,1,0,0,9,9,5,1,541.33331,2846773.8,1842781.9,1171890,112020.96,18825.6 -6180,7599,13708,13707,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,0,9.2533274,9.8495855,33,0,13.558664,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,10.457689,9.274785,55.79,52.62,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,541.33331,2846773.8,1842781.9,1171890,112020.96,18825.6 -6180,7599,13709,-9,13707,13708,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-985.47815,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,1,541.33331,2846773.8,1842781.9,1171890,112020.96,18825.6 -6180,7600,13710,-9,13707,13708,1,1,24,0,1,0,1,1,1,0,4,8.4634132,8.5145912,0,0,0,-1060.7502,-9,2,1,2019,6,0,42,0,1,0,0,13.28807,13.28807,0,0,0,0,0,1,1,0,1.2599463,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,697,-174368.67,-86314.641,0,0,1436.4598 -6180,7601,13711,-9,13707,13708,1,1,22,0,1,0,2,2,0,0,3,0,6.1471391,6.4266701,0,0,-1028.374,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,6.4942455,0,44.92,52.17,-9,-9,10,1,1,0,0,1,9,2,1,4043,322977.84,21655.852,0,0,299.92746 -6180,7602,13712,-9,13707,13708,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-739.62927,-9,2,1,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.05,55.41,-9,-9,10,1,1,0,0,2,9,1,1,183,264646.31,0,0,0,0 -6181,7603,13713,13714,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,9.2890005,9.0774498,0,5,2,-110.43826,0,-9,-9,2019,7,0,50,50,1,0,0,21.95451,21.95451,0,0,0,0,0,1,1,0,4.3346534,0,41.52,38.85,46.44,59.62,6.666666666666667,1,1,0,0,9,5,5,1,319,791347.75,385195,242698.23,96145.266,5303.3467 -6181,7603,13714,13713,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.0134935,8.2767715,0,5,-2,38.931721,0,3,2,2019,17,6,40,44,1,6,0,10.373511,10.373511,0,0,0,0,0,1,1,0,7.7117391,0,46.44,59.62,41.52,38.85,8.333333333333334,1,1,0,0,9,5,5,1,319,791347.75,385195,242698.23,96145.266,5303.3467 -6182,7604,13715,13716,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.7647581,8.8026514,0,7,2,-10.855227,0,3,-9,2019,6,0,38,36,1,0,0,23.091379,23.091379,0,0,0,0,0,0,0,0,1.2215153,0,62.39,56.71,43.44,61.22,8.333333333333334,1,1,0,0,7,12,5,1,424.5,936181.38,608228.63,220742.73,100643.64,4591.3428 -6182,7604,13716,13715,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.6396484,8.623682,0,7,-2,6.3972301,0,2,2,2019,12,0,60,52,1,0,0,9.1459675,9.1459675,0,0,0,0,0,0,0,0,4.0782447,0,43.44,61.22,62.39,56.71,6.666666666666667,1,1,0,0,7,12,5,1,424.5,936181.38,608228.63,220742.73,100643.64,4591.3428 -6183,7605,13717,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.5319829,4.6495023,0,0,-1131.1892,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3510375,4.3885612,59.9,48.18,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1754,461916.81,0,304016.47,0,795.77429 -6183,7606,13718,-9,13717,-9,1,1,58,0,0,0,2,2,-9,0,4,8.4962749,8.4799891,0,0,0,-858.60596,0,2,2,2019,12,0,40,46,1,0,0,12.457818,12.457818,0,0,0,0,0,1,1,0,9.6927547,0,47.1,56.62,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1039,987571.19,510189.44,313976.22,163783.81,5622.1797 -6184,7607,13719,-9,13722,13720,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.8681,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 -6184,7607,13720,13722,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.0966978,8.1760406,0,6,-7,-61.582275,0,-9,-9,2019,7,0,55,60,1,0,0,6.9012551,6.9012551,0,0,0,0,0,1,1,0,0,0,58.15,52.91,37.11,55.92,8.333333333333334,1,1,0,0,6,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 -6184,7607,13721,-9,13722,13720,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-891.20026,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 -6184,7607,13722,13720,-9,-9,1,0,41,1,2,0,1,1,-9,0,3,8.1545334,8.0009165,0,6,7,-120.49818,0,2,3,2019,21,8,25,49,1,8,0,15.639257,15.639257,0,0,0,0,0,1,1,0,2.5393124,0,37.11,55.92,58.15,52.91,6.666666666666667,1,1,0,0,7,7,4,1,495.75,773.76855,70898.414,250499.88,214166.72,2965.637 -6185,7608,13723,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.0616083,6.0166049,0,0,-917.2793,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,5.9250808,54.6,45.18,-9,-9,10,1,1,0,0,0,4,2,1,866,183762.16,207770.88,0,0,1730.3013 -6186,7609,13724,13725,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.2294998,5.4507384,45,-3,12.085853,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.809284,5.6427116,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,2,2,1,607,615631.38,-29969.602,122317.76,0,2119.6929 -6186,7609,13725,13724,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7155647,6.3380919,45,3,5.9462485,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.6137872,6.6087208,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,2,1,607,615631.38,-29969.602,122317.76,0,2119.6929 -6186,7610,13726,-9,13724,13725,1,1,37,0,0,0,2,2,-9,0,4,7.9466977,7.9940262,0,0,0,-845.81586,0,3,2,2019,7,0,44,44,1,0,0,8.624299,8.624299,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,322,-304715.16,0,154744.83,96967.648,1465.4572 -6187,7611,13727,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.0621505,6.0132003,0,0,-951.8291,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.8353128,52.97,31.31,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,5466,480474.88,111904.73,128768.59,0,1750.3234 -6187,7612,13728,-9,13727,-9,1,0,40,0,0,0,2,2,-9,0,4,7.255033,7.1767669,0,0,0,-1049.3717,0,2,-9,2019,11,0,40,40,1,1,0,3.7488241,3.7488241,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,2,3,0,1083,121769.2,94639.523,0,0,1560.137 -6188,7613,13729,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.7540212,7.8573213,0,0,0,-1155.6185,0,3,3,2019,13,3,20,30,1,3,0,14.632561,14.632561,0,0,0,0,0,0,0,0,9.9357624,0,48.13,38.29,-9,-9,3.333333333333333,1,1,0,0,13,4,4,1,867,194886.38,249971.52,213381.72,0,7650.4253 -6188,7614,13730,-9,-9,13729,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1111.8464,0,-9,2,2019,16,0,0,17,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,30.59,59.52,-9,-9,6.666666666666667,2,3,0,0,3,4,1,1,3627,53963.266,0,0,0,0 -6189,7615,13731,13732,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.7544761,6.687243,48,-3,36.468781,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,.97791672,6.9791331,54.2,57.49,59.47,44.13,8.333333333333334,1,1,0,0,8,5,4,1,981.5,2160480,981366.88,313906.31,0,4529.6904 -6189,7615,13732,13731,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.8804808,9.0177965,10,3,25.645086,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,3.6848032,8.4407015,59.47,44.13,54.2,57.49,8.333333333333334,1,1,0,0,4,5,4,1,981.5,2160480,981366.88,313906.31,0,4529.6904 -6189,7616,13733,-9,13731,13732,1,1,39,0,0,0,2,2,-9,0,4,8.7983646,8.556963,0,0,0,-910.29431,0,1,1,2019,12,0,48,49,1,0,0,15.10878,15.10878,0,0,0,0,0,1,1,0,0,0,45.97,49.04,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,1052,267555.41,102608.16,0,0,1560.6505 -6189,7617,13734,-9,13731,13732,1,1,34,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1086.3158,0,1,1,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.6984687,0,38.24,46.08,-9,-9,5,1,1,0,0,0,5,1,1,358,0,0,0,0,1427.7339 -6190,7618,13735,13737,-9,-9,1,0,38,2,3,0,1,1,-9,0,4,7.6806364,7.5523024,0,7,2,58.164265,0,-9,-9,2019,11,0,20,35,1,0,0,14.26193,14.26193,0,0,0,0,0,1,1,0,4.4068656,0,50.55,49.51,43.38,62.58,8.333333333333334,1,1,0,0,7,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 -6190,7618,13736,-9,13735,13737,1,1,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-963.15411,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 -6190,7618,13737,13735,-9,-9,1,1,36,2,3,0,1,1,-9,0,5,8.9492044,8.9121008,0,7,-2,-20.3002,0,-9,-9,2019,9,1,38,37,1,1,0,21.11042,21.11042,0,0,0,0,0,1,1,0,3.9303789,0,43.38,62.58,50.55,49.51,6.666666666666667,1,1,0,0,8,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 -6190,7618,13738,-9,13735,13737,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.313,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 -6190,7618,13739,-9,13735,13737,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.4523,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,517.20001,1144851.8,938138.5,229683.8,127436.49,3416.4934 -6191,7619,13740,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,6.6754413,6.8656821,0,0,0,-972.20081,-9,2,-9,2019,12,1,34,0,1,1,1,2.387944,2.387944,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,11,7,2,0,7331,-159291.31,0,0,0,77.006531 -6192,7620,13741,13742,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.6778507,5.8061342,38,3,36.587299,0,2,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.2844086,5.6702619,57.09,43.99,57.33,53.46,8.333333333333334,1,1,0,0,0,2,3,1,784,860595.25,735969.5,246767.98,0,1663.6179 -6192,7620,13742,13741,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.3206639,7.6357241,8,-3,13.649944,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.4657631,7.6138167,57.33,53.46,57.09,43.99,8.333333333333334,1,1,0,0,0,2,3,1,784,860595.25,735969.5,246767.98,0,1663.6179 -6193,7621,13743,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.6141,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.67,39.12,-9,-9,10,1,1,0,0,0,12,1,1,606,-19686.637,0,0,0,1540.8422 -6194,7622,13744,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.8988447,5.7964821,0,0,-914.31653,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4058614,6.0247545,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,2883,571450.19,104659.09,106486.72,0,1179.6539 -6195,7623,13745,13746,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.1254902,8.2683353,0,15,-2,12.554177,0,2,2,2019,12,0,60,40,1,0,0,6.3995481,6.3995481,0,0,0,0,0,1,1,0,0,0,43.48,60.97,54.96,53.17,6.666666666666667,1,1,0,0,8,5,4,1,489.33334,-40127.793,15290.465,0,0,3826.7988 -6195,7623,13746,13745,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.5230875,8.6526155,0,15,2,-107.33083,0,1,3,2019,7,0,26,42,1,0,0,20.253792,20.253792,0,0,0,0,0,1,1,0,1.9206486,0,54.96,53.17,43.48,60.97,8.333333333333334,1,1,0,0,7,5,4,1,489.33334,-40127.793,15290.465,0,0,3826.7988 -6195,7623,13747,-9,13746,13745,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.63171,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,489.33334,-40127.793,15290.465,0,0,3826.7988 -6196,7624,13748,13749,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,0,0,0,9,-4,0,1,3,3,2019,10,2,0,50,2,2,0,0,0,0,0,0,0,0,1,1,0,1.4247293,0,54.46,47.86,58.57,35.72,8.333333333333334,1,1,0,0,7,12,1,1,353,87593.188,0,0,0,87.255096 -6196,7624,13749,13748,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,9,4,0,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.6630442,0,58.57,35.72,54.46,47.86,8.333333333333334,1,1,0,0,4,12,1,1,353,87593.188,0,0,0,87.255096 -6197,7625,13750,13753,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.3751793,8.4456072,0,9,6,-5.4702692,0,2,1,2019,8,0,37,37,1,0,0,13.125606,13.125606,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.41,56.15,8.333333333333334,2,3,0,0,6,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 -6197,7625,13751,-9,13753,13750,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.8206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 -6197,7625,13752,-9,13753,13750,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.8502,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 -6197,7625,13753,13750,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,0,0,0,9,-6,-162.7417,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,57.16,56.15,8.333333333333334,2,3,0,0,0,8,3,0,2216.5,502645.31,-24530.094,448289.97,53321.25,2028.7991 -6198,7626,13754,13755,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.6154699,8.5267954,4.4622502,20,-15,126.95178,0,2,2,2019,9,0,42,48,1,0,0,15.907018,15.907018,0,0,0,0,0,1,1,0,4.6263018,4.7906919,54.3,42.49,47.14,45.79,8.333333333333334,1,1,0,0,9,7,4,1,1076,2493552.5,1454523.8,843305.81,0,2155.3047 -6198,7626,13755,13754,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,4.8357267,4.7895179,20,15,67.339935,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.7556906,4.5545616,47.14,45.79,54.3,42.49,8.333333333333334,1,1,0,0,0,7,4,1,1076,2493552.5,1454523.8,843305.81,0,2155.3047 -6199,7627,13756,13757,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.182478,9.1701717,0,40,0,119.8428,0,2,1,2019,7,0,43,45,1,0,0,29.714069,29.714069,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.97,56.66,8.333333333333334,1,1,0,0,9,2,5,1,670,1905575.3,1033639.1,505203.53,0,5188.0762 -6199,7627,13757,13756,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1025476,8.1569138,7.3883891,38,0,-81.686668,0,1,-9,2019,4,0,15,45,1,0,0,17.353159,17.353159,0,0,0,0,0,0,0,0,1.5276078,7.397007,49.97,56.66,54.1,59.11,8.333333333333334,1,1,0,0,7,2,5,1,670,1905575.3,1033639.1,505203.53,0,5188.0762 -6200,7628,13758,13759,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.1784334,8.0656366,6.5274844,7,2,-96.684036,0,-9,-9,2019,6,0,42,44,1,0,0,8.0008278,8.0008278,0,0,0,0,0,0,0,0,6.6995177,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,5,10,4,0,1054.5,985449.63,-61607.148,745288.63,0,2569.001 -6200,7628,13759,13758,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.2063141,7.6082129,5.4862499,7,-2,-94.530243,0,-9,-9,2019,2,0,24,25,1,0,0,6.0535336,6.0535336,0,0,0,0,0,0,0,0,5.4351387,0,58.15,52.91,57.16,56.15,10,1,1,0,0,3,10,4,0,1054.5,985449.63,-61607.148,745288.63,0,2569.001 -6201,7629,13760,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.3700638,7.1081071,0,0,-1152.2465,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.93397015,7.176755,45.81,38.32,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,198,180271.72,112683.09,84679.648,0,1199.5634 -6202,7630,13761,13762,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.070941,7.6797462,30,1,-55.447384,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2173734,8.3893948,61.12,51.57,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,1,662,2162750.5,1432239.8,773327.63,0,3126.2556 -6202,7630,13762,13761,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,8.0018339,8.0648804,27,-1,-44.328274,0,1,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9761477,7.9605484,57.06,57.76,61.12,51.57,10,1,1,0,0,8,6,4,1,662,2162750.5,1432239.8,773327.63,0,3126.2556 -6203,7631,13763,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.6810589,5.8829818,0,0,-980.68317,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,2,1,1,0,6.7663002,5.8072886,59.5,33.04,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,351,216659.91,20654.719,149978.25,0,1007.8571 -6204,7632,13764,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,8.1782179,7.9893513,0,0,-899.41656,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2163048,55.36,54.24,-9,-9,10,1,1,0,0,9,13,4,1,1401,374858.47,387254.06,137372.77,0,2067.5305 -6205,7633,13765,13766,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4266853,8.1375656,0,32,-3,-7.4085245,0,3,3,2019,17,5,22,22,1,5,0,23.157854,23.157854,0,0,0,0,0,0,0,0,3.138761,0,46.79,51.38,45.63,58.55,3.333333333333333,1,1,0,0,10,9,5,1,471,3427545.5,205801.56,2798831.5,626636.94,5119.5791 -6205,7633,13766,13765,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.6008959,9.182477,7.7469025,32,3,-48.299809,0,3,3,2019,12,3,37,37,1,3,0,20.31946,20.31946,0,0,0,0,0,0,0,0,3.8864279,8.2752819,45.63,58.55,46.79,51.38,8.333333333333334,4,2,0,0,10,9,5,1,471,3427545.5,205801.56,2798831.5,626636.94,5119.5791 -6205,7634,13767,-9,13765,13766,1,1,25,0,0,0,1,1,-9,0,5,8.2143316,8.3304882,0,0,0,-1008.0793,0,2,2,2019,8,0,43,41,1,0,1,9.3183279,9.3183279,0,0,0,0,0,0,0,0,2.4042757,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,491,-1498.4276,54212.871,211734.66,119834.5,1686.3109 -6205,7635,13768,-9,13765,13766,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1087.089,-9,2,3,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,382,37002.41,0,0,0,0 -6206,7636,13769,13770,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,9,2,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.02,39.43,39.35,42.76,8.333333333333334,1,1,0,0,8,2,2,1,410.5,344842.72,153963.28,165733.25,0,318.31281 -6206,7636,13770,13769,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,9,-2,0,0,2,2,2019,7,1,0,43,4,1,0,0,0,0,0,0,0,0,0,0,0,3.512974,0,39.35,42.76,61.02,39.43,10,1,1,0,0,9,2,2,1,410.5,344842.72,153963.28,165733.25,0,318.31281 -6207,7637,13771,-9,13772,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-958.57019,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,1,0,1706.5,-217020.13,0,0,0,1290.8037 -6207,7637,13772,-9,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,0,0,0,0,-979.68073,0,2,-9,2019,13,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,1706.5,-217020.13,0,0,0,1290.8037 -6208,7638,13773,-9,-9,13775,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1045.2573,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,1,0,599.25,0,0,0,0,568.18524 -6208,7638,13774,-9,-9,13775,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.14319,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,1,0,599.25,0,0,0,0,568.18524 -6208,7638,13775,-9,13778,13777,1,1,38,0,3,0,2,2,-9,0,3,0,0,0,0,0,-940.41504,0,3,2,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.59,43.6,-9,-9,5,2,3,1,1,0,4,1,0,599.25,0,0,0,0,568.18524 -6208,7638,13776,-9,-9,13775,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.3152,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,1,0,599.25,0,0,0,0,568.18524 -6208,7639,13777,13778,-9,-9,1,1,61,0,3,0,3,3,-9,1,3,0,0,0,2,-4,69.566139,0,-9,-9,2019,10,0,0,20,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,51,49,50,47,7,2,3,1,0,1,4,2,0,760,369124.69,-52850.285,342803.56,6772.0728,1999.4854 -6208,7639,13778,13777,-9,-9,1,0,65,0,3,0,3,3,-9,0,3,7.8837972,7.761313,0,2,4,-114.80839,0,-9,-9,2019,11,0,20,20,1,2,0,14.775882,14.775882,0,0,0,0,0,1,1,0,1.5639881,0,50,47,51,49,7,2,3,0,0,1,4,2,0,760,369124.69,-52850.285,342803.56,6772.0728,1999.4854 -6209,7640,13779,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8996425,8.2873707,0,0,0,-946.08978,0,2,2,2019,24,12,36,36,1,12,0,9.3847246,9.3847246,0,0,0,0,27,1,1,0,0,0,31.88,32.98,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,930,-153476.98,-45914.203,0,0,820.24054 -6210,7641,13780,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,8.7489347,8.2659578,0,0,-878.21271,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6200209,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,365,2442385.8,0,1473867,0,3645.3 -6211,7642,13781,13782,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.0581646,8.9199162,0,9,-8,-67.277061,0,-9,-9,2019,11,2,82,80,1,2,0,13.213131,13.213131,0,0,0,0,0,0,0,0,7.3148508,0,47.95,39.29,54.2,57.49,6.666666666666667,1,1,0,0,7,4,5,1,701.5,2890473.5,2388356.8,506604.94,0,4195.8423 -6211,7642,13782,13781,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.0231853,7.0166554,0,9,8,-22.738161,0,1,2,2019,7,1,30,30,1,1,0,4.3547258,4.3547258,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.95,39.29,6.666666666666667,1,1,0,0,11,4,5,1,701.5,2890473.5,2388356.8,506604.94,0,4195.8423 -6212,7643,13783,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.8406563,8.8613186,0,0,0,-866.71625,0,1,2,2019,8,0,43,41,1,0,0,19.206089,19.206089,0,0,0,0,0,0,0,0,3.4666643,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,9,5,0,567,-116610.7,0,0,0,3148.4001 -6213,7644,13784,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.3238077,8.4795313,0,0,0,-957.44733,0,1,1,2019,7,0,42,42,1,0,0,11.862927,11.862927,0,0,0,0,0,0,0,0,4.2690697,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,109,0,0,0,0,1868.8661 -6214,7645,13785,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.1444983,7.0552435,0,0,0,-1063.4635,-9,2,2,2019,12,2,26,0,1,2,0,6.7368689,6.7368689,0,0,0,0,0,1,1,0,0,0,55.22,46.37,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,52,285989.66,57288.109,166501.45,154812.72,1389.3254 -6214,7645,13786,-9,13785,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.0956,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,52,285989.66,57288.109,166501.45,154812.72,1389.3254 -6215,7646,13787,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1106.9094,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,1,1,190,84064.414,0,88259.133,0,538.43915 -6216,7647,13788,13789,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.9902153,9.0634022,0,38,4,74.140511,0,3,3,2019,7,0,36,35,1,0,0,26.484543,26.484543,0,0,0,0,0,0,0,0,1.1815436,0,56.78,41.83,42.57,46.92,6.666666666666667,1,1,0,0,8,9,5,1,482.5,742326,268725.94,383311.88,170953.97,2479.689 -6216,7647,13789,13788,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,38,-4,64.375,0,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,0,0,0,1.6655158,0,42.57,46.92,56.78,41.83,6.666666666666667,1,1,0,0,0,9,5,1,482.5,742326,268725.94,383311.88,170953.97,2479.689 -6216,7648,13790,-9,13789,13788,1,0,22,0,0,0,1,1,-9,0,4,7.8774972,7.9332352,0,0,0,-943.6394,-9,2,3,2019,17,5,37,0,1,5,1,9.7501974,9.7501974,0,0,0,0,0,0,0,0,.051996753,0,42.11,57.44,-9,-9,6.666666666666667,1,1,0,0,5,9,4,1,694,-55880.082,0,0,0,1549.2107 -6217,7649,13791,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.0099773,7.7252574,0,0,0,-906.50903,-9,-9,-9,2019,11,1,43,0,1,1,0,6.7554307,6.7554307,0,0,0,0,0,1,1,0,0,0,44.16,47.38,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,1323,464136.72,831.04584,0,0,624.88245 -6218,7650,13792,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.0266662,7.0607514,0,0,-997.49084,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,6.7778969,58.09,32.73,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,433,652403.31,205121.16,215944.78,0,396.02643 -6219,7651,13793,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.9578252,7.7558904,0,0,0,-954.91217,0,2,2,2019,11,0,48,48,1,2,1,5.7620206,5.7620206,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,11,3,1,1391,-365255.69,0,0,0,288.78867 -6220,7652,13794,13795,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.5024195,8.5583324,0,20,5,-19.257727,0,3,3,2019,6,0,40,40,1,0,0,17.524811,17.524811,0,0,0,0,0,1,1,0,3.014981,0,57.06,57.76,50,55,8.333333333333334,1,1,0,0,9,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 -6220,7652,13795,13794,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.9901567,7.745738,0,7,-5,-78.811226,0,-9,-9,2019,10,0,27,20,1,1,0,11.399652,11.399652,0,0,0,0,0,1,1,0,3.7978969,0,50,55,57.06,57.76,8,1,1,0,0,1,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 -6220,7652,13796,-9,13795,13794,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.84888,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 -6220,7652,13797,-9,13795,13794,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.50739,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,1188.75,536180.63,470738.72,151547.11,29095.586,3538.7832 -6221,7653,13798,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1667681,7.9870744,0,0,0,-830.49963,0,3,3,2019,11,0,40,38,1,2,1,6.9026895,6.9026895,0,0,0,0,0,0,0,0,0,0,42.46,56.4,-9,-9,5,2,3,0,0,2,8,4,1,2334,-153900.23,-94311.297,0,0,1311.6398 -6221,7654,13799,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,6.1351352,6.200623,0,0,-987.75781,-9,3,3,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,5.8923655,0,42.95,61.24,-9,-9,5,2,3,0,0,2,8,2,1,593,-45592.344,21384.988,0,0,338.24512 -6222,7655,13800,13802,-9,-9,1,1,57,0,1,0,2,2,-9,1,3,0,0,0,7,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,51,54,7,2,3,0,0,0,4,1,0,446.25,0,0,0,0,2342.905 -6222,7655,13801,-9,13802,13800,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.24701,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,1,0,446.25,0,0,0,0,2342.905 -6222,7655,13802,13800,-9,-9,1,0,50,0,1,0,3,3,-9,1,4,0,0,0,36,-7,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,54,51,49,8,2,3,0,1,0,4,1,0,446.25,0,0,0,0,2342.905 -6222,7655,13803,-9,13802,13800,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1022.977,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,0,4,1,0,446.25,0,0,0,0,2342.905 -6222,7656,13804,-9,13802,13800,1,0,28,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1019.7462,0,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.72,45.62,-9,-9,8.333333333333334,2,3,1,1,0,4,1,0,314,-8524.0225,0,0,0,196.63795 -6222,7657,13805,-9,13802,13800,1,0,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-1073.9059,0,3,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,43.09,61.58,-9,-9,5,2,3,1,1,0,4,1,0,682,-288859.91,0,0,0,553.97888 -6222,7658,13806,-9,13802,13800,1,0,26,0,1,0,2,2,-9,0,3,7.4499135,7.4643383,0,0,0,-1000.1419,0,3,2,2019,12,1,38,50,1,1,1,4.9398437,4.9398437,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,6.666666666666667,2,3,0,0,2,4,3,0,641,38131.309,161776.3,0,0,1249.4447 -6223,7659,13807,-9,13808,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-913.42151,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,6,5,1,483.5,193993.64,63973.941,83856.25,73868.117,3382.5684 -6223,7659,13808,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.8649063,8.6735249,5.5904689,0,0,-1002.6196,0,3,-9,2019,10,2,45,38,1,2,0,16.178776,16.178776,0,0,0,0,14.5,1,1,0,6.1824722,0,42.24,34.52,-9,-9,6.666666666666667,3,4,0,0,8,6,5,1,483.5,193993.64,63973.941,83856.25,73868.117,3382.5684 -6224,7660,13809,13810,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,6.9765625,7.2720008,0,25,-10,102.627,0,2,2,2019,8,1,22,28,1,1,0,6.1329331,6.1329331,0,0,0,0,27,1,1,0,0,0,42.39,46.95,30.51,29.4,6.666666666666667,2,3,0,0,9,8,3,1,117.5,1372670.5,507085.13,633262.63,0,1748.1643 -6224,7660,13810,13809,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,0,7.3584809,7.4494858,27,10,79.423325,0,3,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,0,7.3827586,30.51,29.4,42.39,46.95,5,2,3,0,0,0,8,3,1,117.5,1372670.5,507085.13,633262.63,0,1748.1643 -6224,7661,13811,-9,13809,13810,1,1,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-956.70087,-9,3,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,6.666666666666667,2,3,0,0,2,8,2,1,406,-155206.44,0,0,0,154.50504 -6224,7662,13812,-9,13809,13810,1,0,21,0,0,0,2,2,-9,1,1,0,0,0,0,0,-906.57068,1,3,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,36.59,41.85,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,1185,4436.5698,0,0,0,623.40399 -6225,7663,13813,13814,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.4447517,7.4694471,0,5,-1,-80.778221,0,2,1,2019,3,1,17,17,1,1,0,10.999681,10.999681,0,0,0,0,0,1,1,0,0,0,49.5,47.35,52.99,48.57,1.666666666666667,1,1,0,0,10,4,3,1,1985.6666,108671.96,64586.555,0,0,997.63391 -6225,7663,13814,13813,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,6.1066022,6.0772424,0,5,1,18.668474,0,2,2,2019,9,2,50,60,1,2,0,1.1938884,1.1938884,0,0,0,0,0,1,1,0,0,0,52.99,48.57,49.5,47.35,3.333333333333333,1,1,0,0,4,4,3,1,1985.6666,108671.96,64586.555,0,0,997.63391 -6225,7663,13815,-9,13813,13814,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-971.25549,-9,2,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34,61.21,-9,-9,5,1,1,0,0,2,4,3,1,1985.6666,108671.96,64586.555,0,0,997.63391 -6226,7664,13816,13817,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,9.559659,9.4118996,0,8,-2,10.323143,0,-9,-9,2019,6,0,75,75,1,0,0,16.084213,16.084213,0,0,0,0,0,0,0,0,0,0,49.27,55.11,58.69,47.11,10,1,1,0,0,5,4,5,1,957,5440754,977378.13,1239542,0,6251.5596 -6226,7664,13817,13816,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.6856747,8.7559938,0,20,2,18.162523,0,2,2,2019,9,0,60,60,1,0,0,15.763259,15.763259,0,0,0,0,2,0,0,0,0,0,58.69,47.11,49.27,55.11,5,1,1,0,0,9,4,5,1,957,5440754,977378.13,1239542,0,6251.5596 -6227,7665,13818,13820,-9,-9,1,0,35,1,4,0,3,3,-9,0,2,0,0,0,3,-2,8.5174541,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.48,40.99,54.1,59.11,6.666666666666667,2,3,0,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 -6227,7665,13819,-9,13818,13820,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.9961,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 -6227,7665,13820,13818,-9,-9,1,1,37,1,4,0,2,2,-9,0,5,8.8124151,8.6410198,0,14,2,101.65363,0,3,3,2019,6,0,70,70,1,0,0,10.063897,10.063897,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.48,40.99,8.333333333333334,2,3,0,0,8,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 -6227,7665,13821,-9,13818,13820,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1083.3586,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 -6227,7665,13822,-9,13818,13820,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1047.0737,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 -6227,7665,13823,-9,13818,13820,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-933.29279,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,2,3,1,891.5,232714.56,24768.49,0,0,2615.7202 -6228,7666,13824,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.0145,-9,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,27.74,30.84,-9,-9,3.333333333333333,1,1,0,1,2,8,2,0,808,20631.373,0,0,0,531.77313 -6229,7667,13825,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,6.5159001,6.5767336,0,0,-1124.7894,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5646296,45.64,50.52,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,390,11443.407,58641.719,242158.59,0,807.7998 -6230,7668,13826,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.9678855,8.3013105,0,0,-848.96008,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.0762789,8.6004353,52,47,-9,-9,7,1,1,0,0,0,5,4,0,460,954409.13,739587.06,129626.96,0,3417.4531 -6231,7669,13827,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.7305145,6.7422414,0,0,-1075.1172,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,.79865628,32.057827,0,0,1,1,0,5.0525527,6.5652361,56.31,29.79,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,617,355437.28,70878.688,0,0,1463.7837 -6232,7670,13828,13829,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.4779844,8.6054392,6,6,-45.545048,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6308417,8.7909222,54,46,51,46,8,2,3,0,0,0,11,4,1,515.5,934949.44,522571.56,336020.81,0,3770.6558 -6232,7670,13829,13828,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-6,-1.8446314,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,21.400688,0,0,1,1,0,6.3591237,0,51,46,54,46,8,1,1,0,0,0,11,4,1,515.5,934949.44,522571.56,336020.81,0,3770.6558 -6233,7671,13830,13831,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,4.9891415,4.9783449,0,6,-5,-35.463421,0,2,3,2019,11,0,7,30,1,0,0,2.1223562,2.1223562,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.19,51.24,8.333333333333334,1,1,0,0,7,5,2,1,600,409659.63,0,183677.44,15131.813,1937.2688 -6233,7671,13831,13830,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,6,5,-21.12488,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.19,51.24,57.33,53.46,8.333333333333334,1,1,0,0,6,5,2,1,600,409659.63,0,183677.44,15131.813,1937.2688 -6234,7672,13832,-9,13836,13835,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-932.17706,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 -6234,7672,13833,-9,13836,13835,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.0099,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 -6234,7672,13834,-9,13836,13835,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-954.50079,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 -6234,7672,13835,13836,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.8709354,9.0078201,0,18,7,47.409966,0,2,3,2019,7,0,45,54,1,0,0,18.907187,18.907187,0,0,0,0,2,1,1,0,6.1415377,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 -6234,7672,13836,13835,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,6.6920815,6.5506191,0,18,-7,-82.642509,0,2,2,2019,9,1,16,9,1,1,0,4.7087102,4.7087102,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,5,9,4,1,588.20001,77309.242,-38202.977,0,0,3561.2825 -6235,7673,13837,13838,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.7490811,7.2818046,45,1,-14.236177,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.838181,7.3930564,60.03,45.37,60.87,44.96,8.333333333333334,1,1,0,0,0,7,3,1,1020.5,2783656.8,1723855.3,1030672.1,0,2890.4663 -6235,7673,13838,13837,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.4645014,7.1830025,45,-1,42.990509,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.889138,7.6257739,60.87,44.96,60.03,45.37,8.333333333333334,1,1,0,0,0,7,3,1,1020.5,2783656.8,1723855.3,1030672.1,0,2890.4663 -6236,7674,13839,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2957001,8.1238413,0,0,0,-1088.9489,0,1,1,2019,7,1,62,65,1,1,0,8.4144821,8.4144821,0,0,0,0,0,0,0,0,1.9978245,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,281,115320.6,167471.16,0,0,1269.024 -6236,7675,13840,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.2721033,8.3625488,0,0,0,-913.70245,-9,-9,-9,2019,12,1,110,0,1,1,0,3.6383078,3.6383078,0,0,0,0,0,0,0,0,0,0,46.52,56.03,-9,-9,5,1,1,0,0,2,4,4,0,421,-52641.336,20417.582,0,0,1403.5416 -6237,7676,13841,13842,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,32,1,31.695501,0,2,3,2019,11,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,0,1.2827202,0,50.6,51,43.44,61.22,8.333333333333334,1,1,0,0,1,9,3,1,322,123968.2,143323.11,0,0,1796.9407 -6237,7676,13842,13841,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.2028217,8.157424,0,32,-1,118.82688,0,2,2,2019,13,1,41,40,1,1,0,11.601586,11.601586,0,0,0,0,0,0,0,0,0,0,43.44,61.22,50.6,51,5,1,1,0,0,9,9,3,1,322,123968.2,143323.11,0,0,1796.9407 -6238,7677,13843,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-992.90088,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,45.17,-9,-9,10,1,1,0,0,0,10,1,0,6150,-163813.66,0,0,0,809.24329 -6239,7678,13844,-9,-9,-9,1,1,96,0,0,0,2,2,-9,0,3,0,5.65027,6.0564961,0,0,-960.698,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,.43981454,0,0,1,1,0,0,5.8572965,56,44,-9,-9,8,1,1,0,0,0,11,2,0,358,125488.84,24466.254,134039.61,0,1375.4852 -6240,7679,13845,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.3831959,7.1592402,0,0,-1029.3362,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.82975852,7.417285,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,631,177025.08,73228.867,127731.09,0,1875.6555 -6241,7680,13846,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,3,0,4.9573436,5.5860534,0,0,-991.91492,0,2,2,2019,32,12,0,39,3,12,0,0,0,0,0,0,0,0,1,1,0,5.7913408,5.420609,32.47,38.98,-9,-9,1.666666666666667,1,1,1,0,7,12,2,0,344,14830.378,0,0,0,-190.96817 -6241,7681,13847,-9,13846,-9,1,1,21,0,0,0,2,2,-9,0,5,7.7225957,7.8436308,0,0,0,-964.17761,0,3,-9,2019,3,0,9,0,1,0,1,36.287197,36.287197,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,1,4,12,3,0,601,-37681.219,-41987.453,0,0,741.47101 -6242,7682,13848,13849,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,7,8,56.974205,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,9.0461855,0,0,1,1,0,0,0,42.99,31.9,49,48,5,1,1,0,1,0,12,3,1,701.5,7110.3936,71590.391,0,0,2085.5913 -6242,7682,13849,13848,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.79843,7.928266,0,7,-8,24.994673,0,3,3,2019,11,0,38,40,1,2,0,7.1968756,7.1968756,0,0,0,0,0,1,1,0,.61472279,0,49,48,42.99,31.9,7,2,3,0,0,1,12,3,1,701.5,7110.3936,71590.391,0,0,2085.5913 -6243,7683,13850,-9,13852,13853,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.99335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 -6243,7683,13851,-9,13852,13853,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1096.3728,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 -6243,7683,13852,13853,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.1886044,7.825861,7.1486502,3,1,30.066895,0,-9,-9,2019,29,10,23,20,1,10,0,5.5757618,5.5757618,0,0,0,0,0,0,0,0,6.1810513,0,32.46,21.88,60.12,54.8,0,1,1,0,0,2,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 -6243,7683,13853,13852,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.012495,9.3084908,0,3,-1,5.1446748,0,2,2,2019,9,0,40,40,1,0,0,27.147955,27.147955,0,0,0,0,0,0,0,0,0,0,60.12,54.8,32.46,21.88,8.333333333333334,1,1,0,0,8,7,4,0,961.5,38967.102,99918.984,488872.81,345917.72,4343.0186 -6244,7684,13854,13855,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7688446,7.5492716,0,5,-8,60.317326,0,3,-9,2019,7,0,25,26,1,0,0,7.8968029,7.8968029,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,363,523771.31,366081.56,148620.06,0,2800.0464 -6244,7684,13855,13854,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.9647255,8.1891527,7.287313,5,8,-62.44508,0,-9,-9,2019,10,0,41,41,1,0,0,8.6853676,8.6853676,0,0,0,0,0,0,0,0,5.9229646,7.0926199,51.14,60.45,57.16,56.15,10,1,1,0,0,6,12,4,1,363,523771.31,366081.56,148620.06,0,2800.0464 -6245,7685,13856,-9,13857,13859,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.22339,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 -6245,7685,13857,13859,-9,-9,1,0,38,0,2,0,2,2,0,0,5,0,0,0,16,-11,0,-9,3,1,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.47,52.68,57.06,57.76,3.333333333333333,3,4,0,0,9,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 -6245,7685,13858,-9,13857,13859,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1324,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 -6245,7685,13859,13857,-9,-9,1,1,49,0,2,0,1,1,0,0,5,0,0,0,16,11,0,-9,3,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.47,52.68,6.666666666666667,3,4,0,0,9,8,1,0,452.5,327301.47,66129.781,0,0,1464.5675 -6246,7686,13860,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,5.282341,4.6025672,0,0,-1125.1857,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,5.3151002,5.1536036,59.39,21.77,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,310,68674.031,25909.637,105717.94,0,722.3653 -6247,7687,13861,13862,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.694973,9.0518131,0,21,2,-28.941126,0,2,2,2019,5,0,100,100,1,0,0,6.855401,6.855401,0,0,0,0,7,1,1,0,0,0,44.51,52.3,47.49,55.02,6.666666666666667,4,2,0,0,9,6,5,1,662.5,625344,365176.31,150325.98,32667.426,6650.6113 -6247,7687,13862,13861,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.9838772,9.0113325,0,28,-2,96.021553,0,2,-9,2019,16,4,49,92,1,4,0,18.468987,18.468987,0,0,0,0,0,1,1,0,0,0,47.49,55.02,44.51,52.3,8.333333333333334,4,2,0,0,10,6,5,1,662.5,625344,365176.31,150325.98,32667.426,6650.6113 -6247,7688,13863,-9,13862,13861,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-902.83929,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.1351151,0,46.53,61.33,-9,-9,10,4,2,0,0,4,6,1,1,487,-261564.06,0,0,0,110.28728 -6248,7689,13864,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.50073,5.4938984,0,0,-890.06006,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,5.2017636,5.2710819,36.85,50.58,-9,-9,5,1,1,0,0,0,9,2,1,375,8502.8984,-41469.891,0,0,748.05798 -6249,7690,13865,-9,-9,-9,1,0,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-928.78754,-9,-9,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1129,-7270.6528,0,0,0,1199.0896 -6250,7691,13866,13868,-9,-9,1,0,57,0,1,0,2,2,-9,0,5,8.4186583,9.0250273,0,28,3,64.421349,0,2,2,2019,6,0,24,24,1,0,0,25.052664,25.052664,0,0,0,0,0,0,0,0,1.3070486,0,57.06,57.76,45.11,49.46,10,1,1,0,0,9,7,5,1,2093.6667,2898776,121690.92,2548571,638730.69,8086.1592 -6250,7691,13867,-9,13866,13868,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.238,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,2093.6667,2898776,121690.92,2548571,638730.69,8086.1592 -6250,7691,13868,13866,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.5907612,9.7683105,0,28,-3,-98.645515,0,2,1,2019,15,4,105,65,1,4,0,16.300583,16.300583,0,0,0,0,0,0,0,0,7.025002,0,45.11,49.46,57.06,57.76,8.333333333333334,1,1,0,0,11,7,5,1,2093.6667,2898776,121690.92,2548571,638730.69,8086.1592 -6251,7692,13869,13870,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,0,0,41,-1,-67.477631,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6508055,0,57.06,57.76,53,47,8.333333333333334,1,1,0,0,5,5,4,1,460.5,319123.06,155714.36,217162.2,120890.77,4220.5601 -6251,7692,13870,13869,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.6767569,8.557601,0,6,1,-112.1888,0,-9,-9,2019,10,0,10,15,1,1,0,68.96106,68.96106,0,0,4.402771,0,0,1,1,0,6.2674303,0,53,47,57.06,57.76,7,1,1,0,0,1,5,4,1,460.5,319123.06,155714.36,217162.2,120890.77,4220.5601 -6252,7693,13871,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-892.5957,0,3,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,0,0,48.44,32.16,-9,-9,5,1,1,0,0,3,11,2,1,642,38399.746,0,0,0,1334.0026 -6252,7694,13872,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.3535538,8.0603094,0,0,0,-958.98938,0,-9,-9,2019,9,3,37,37,1,3,0,12.170527,12.170527,0,0,0,0,0,1,1,0,0,0,55.52,36.17,-9,-9,10,1,1,0,0,4,11,4,1,401,-112722.77,0,0,0,2310.3721 -6252,7695,13873,-9,13871,-9,1,0,19,0,0,0,2,2,-9,0,5,7.0416946,7.3398824,0,0,0,-1010.8983,-9,3,-9,2019,13,4,30,0,1,4,0,5.02491,5.02491,0,0,0,0,0,1,1,0,0,0,52.29,35.41,-9,-9,1.666666666666667,4,2,0,0,0,11,3,1,452,-22717.891,0,0,0,2161.8674 -6253,7696,13874,13875,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.2695241,5.9983315,6,1,74.06768,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.2648587,5.9285302,55.07,31.46,57.06,57.76,0,1,1,0,0,5,8,2,1,503,681966.19,115489.78,392565.56,-7595.8301,2168.4512 -6253,7696,13875,13874,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,6.3934374,6.1754799,52,-1,-63.112728,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,5.355299,0,14.5,1,1,0,5.6044812,6.3073702,57.06,57.76,55.07,31.46,8.333333333333334,1,1,0,0,0,8,2,1,503,681966.19,115489.78,392565.56,-7595.8301,2168.4512 -6254,7697,13876,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.2138166,8.248805,0,0,0,-945.58765,0,2,2,2019,24,9,37,37,1,9,0,7.4238553,7.4238553,0,0,0,0,0,0,0,0,0,0,27.85,67.95,-9,-9,1.666666666666667,1,1,0,0,8,7,4,0,245,555786.31,-33788,0,0,2004.8289 -6255,7698,13877,-9,13880,13878,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1019.5621,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 -6255,7698,13878,13880,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,7.6899853,7.476059,0,25,4,-6.1808095,0,3,3,2019,13,1,20,42,1,1,0,9.8206234,9.8206234,0,0,0,0,0,1,1,0,0,0,37.69,58.7,31.77,61.39,1.666666666666667,2,3,0,1,9,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 -6255,7698,13879,-9,13880,13878,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-980.72858,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,45,-9,-9,5,2,3,-9,0,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 -6255,7698,13880,13878,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,25,-4,-72.869202,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.39,37.69,58.7,3.333333333333333,2,3,0,1,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 -6255,7698,13881,-9,13880,13878,1,1,17,0,2,1,3,0,0,0,4,0,0,0,0,0,-894.24615,-9,2,3,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,1.666666666666667,2,3,0,1,0,2,2,0,414.79999,80586.547,-1126.533,128029.27,102257.2,1737.7462 -6255,7699,13882,-9,13880,13878,1,1,21,0,2,0,2,2,0,0,4,0,0,0,0,0,-926.40881,-9,2,3,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,9.85,60.39,-9,-9,5,2,3,0,0,0,2,1,0,393,0,0,0,0,1295.3956 -6256,7700,13883,13884,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.0878096,8.2231646,0,8,-12,19.293253,0,3,3,2019,15,3,39,40,1,3,0,12.268328,12.268328,0,0,0,0,0,0,0,0,0,0,31.58,61.01,49.25,61.25,6.666666666666667,1,1,0,0,9,12,4,1,724,444989.5,30466.52,153317.11,0,2181.1519 -6256,7700,13884,13883,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.2266569,7.3613081,8,12,-20.036314,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2404675,49.25,61.25,31.58,61.01,0,1,1,0,0,8,12,4,1,724,444989.5,30466.52,153317.11,0,2181.1519 -6257,7701,13885,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-953.17194,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,11,1,1,154,12541.964,0,0,0,1127.3402 -6258,7702,13886,13888,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,8.446744,8.3099089,0,7,-3,-19.250263,0,-9,-9,2019,12,1,35,35,1,1,0,13.939363,13.939363,0,0,0,0,0,1,1,0,0,0,53.39,50.01,58.32,50.22,8.333333333333334,1,1,0,0,10,10,5,1,938,525763.69,287084.72,506341.06,320372.34,4396.3506 -6258,7702,13887,-9,13886,13888,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,938,525763.69,287084.72,506341.06,320372.34,4396.3506 -6258,7702,13888,13886,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,8.8953247,8.668581,0,19,3,195.13466,0,3,3,2019,6,0,39,39,1,0,0,18.038313,18.038313,0,0,0,0,0,1,1,0,4.5318389,0,58.32,50.22,53.39,50.01,8.333333333333334,1,1,0,0,9,10,5,1,938,525763.69,287084.72,506341.06,320372.34,4396.3506 -6259,7703,13889,13890,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.3876686,8.2959957,0,9,-8,-171.34747,0,3,3,2019,12,1,29,29,1,1,0,21.924604,21.924604,0,0,0,0,0,1,1,0,4.5609341,0,43.2,59.97,47.02,44.6,8.333333333333334,1,1,0,0,10,9,4,1,866,1231072.4,1111030.8,339323.81,0,2393.6399 -6259,7703,13890,13889,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.5515389,7.5567183,9,8,95.097198,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.3037412,7.9048123,47.02,44.6,43.2,59.97,6.666666666666667,1,1,0,0,8,9,4,1,866,1231072.4,1111030.8,339323.81,0,2393.6399 -6259,7704,13891,-9,13889,13890,1,1,24,0,0,0,2,2,-9,0,1,0,0,0,0,0,-929.9621,0,1,2,2019,33,12,0,0,3,12,1,0,0,0,0,0,0,0,1,1,0,0,0,9.870000000000001,48.95,-9,-9,3.333333333333333,1,1,1,1,6,9,1,1,342,0,0,0,0,1129.5657 -6260,7705,13892,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.7919459,7.9686942,0,0,0,-978.54504,-9,2,2,2019,19,7,42,0,1,7,1,8.2054281,8.2054281,0,0,0,0,0,0,0,0,0,0,30.11,56.52,-9,-9,3.333333333333333,2,3,0,1,5,6,4,1,2906,707562.44,18970.422,118280.45,52447.297,1688.8513 -6261,7706,13893,13895,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.2344532,8.9219961,0,26,-3,-90.379768,0,2,2,2019,15,3,40,47,1,3,0,23.967453,23.967453,0,0,0,0,0,0,0,0,0,0,46.08,57.2,61.12,51.57,6.666666666666667,1,1,0,0,12,9,5,1,653,516097.91,59824.094,336629.94,46156.883,3828.1804 -6261,7706,13894,-9,13895,13893,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.1745,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,653,516097.91,59824.094,336629.94,46156.883,3828.1804 -6261,7706,13895,13893,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0034256,6.9161482,0,26,3,-83.043739,0,2,2,2019,8,0,5,8,1,0,0,28.209625,28.209625,0,0,0,0,0,0,0,0,4.8796654,0,61.12,51.57,46.08,57.2,8.333333333333334,1,1,0,0,5,9,5,1,653,516097.91,59824.094,336629.94,46156.883,3828.1804 -6261,7707,13896,-9,13895,13893,1,0,18,0,1,0,2,2,1,0,4,7.2089911,7.221272,0,0,0,-1081.0546,-9,2,1,2019,9,0,12,0,1,0,1,13.675734,13.675734,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,1928,-446602.53,-105471.22,0,0,652.98505 -6262,7708,13897,13898,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,3.8408165,4.0595679,53,1,-53.375568,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3839903,4.1232677,48.28,60.18,57.16,56.15,10,1,1,0,0,0,7,2,1,1178,412264.25,290855.84,186872.92,0,1468.8148 -6262,7708,13898,13897,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.241086,6.8876348,53,-1,-16.908167,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1852217,6.7011213,57.16,56.15,48.28,60.18,10,1,1,0,0,4,7,2,1,1178,412264.25,290855.84,186872.92,0,1468.8148 -6263,7709,13899,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.5408463,6.6671348,0,0,-1016.6229,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2682247,58.42,27.52,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,320,-219723.55,66092.438,0,0,1070.4346 -6264,7710,13900,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6648335,6.8925471,0,0,-948.9718,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1937766,6.7210484,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,749,545775.25,145286.8,252402.81,0,524.64417 -6265,7711,13901,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5929704,7.5603094,0,0,-1000.7753,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7691603,7.3255081,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,655,516358.25,316009.75,183530.77,0,965.42944 -6266,7712,13902,13903,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,-1,89.95739,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5950551,0,57.33,53.46,61.7,34.03,10,1,1,0,0,0,1,2,1,1737.5,-113750.22,28867.215,0,0,1389.262 -6266,7712,13903,13902,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.0531354,6.4174628,8,1,-27.874985,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3234205,61.7,34.03,57.33,53.46,8.333333333333334,1,1,0,0,0,1,2,1,1737.5,-113750.22,28867.215,0,0,1389.262 -6266,7713,13904,-9,13902,13903,1,1,23,0,0,0,2,2,-9,0,4,7.5765872,7.3422384,0,0,0,-1024.6208,0,3,2,2019,10,0,37,30,1,0,0,5.2854362,5.2854362,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,7,1,3,1,2705,193951.69,-11739.194,0,0,1074.0739 -6267,7714,13905,13906,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,24,-8,0,0,3,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.17,54.65,56.13,32.4,5,1,1,0,0,0,2,1,1,710.5,100365.88,23996.502,77195.313,0,1748.0459 -6267,7714,13906,13905,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,0,0,24,8,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,1,13.421396,31.108835,137.31856,14.5,1,1,0,0,0,56.13,32.4,32.17,54.65,8.333333333333334,1,1,0,0,0,2,1,1,710.5,100365.88,23996.502,77195.313,0,1748.0459 -6268,7715,13907,13908,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,7.4074898,7.7832694,0,26,0,-66.706169,0,2,3,2019,16,4,15,10,1,4,0,15.515183,15.515183,0,0,0,0,0,1,1,0,5.3070402,0,32.83,24.48,48.87,58.55,3.333333333333333,1,1,0,1,12,7,5,1,362,542166.19,323145.06,271198.56,80312.102,3377.4565 -6268,7715,13908,13907,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.128397,8.8768892,0,9,9,132.34229,0,2,2,2019,12,0,37,45,1,0,0,25.254868,25.254868,0,0,0,0,0,1,1,0,0,0,48.87,58.55,32.83,24.48,3.333333333333333,1,1,0,0,12,7,5,1,362,542166.19,323145.06,271198.56,80312.102,3377.4565 -6269,7716,13909,13911,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,7.518692,7.4502296,0,1,-1,26.439936,-9,3,3,2019,10,0,23,0,1,0,0,10.608327,10.608327,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.87,56.48,8.333333333333334,1,1,0,0,9,13,4,1,582,295628,171741.05,0,0,2728.7771 -6269,7716,13910,-9,13909,13911,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.56366,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,582,295628,171741.05,0,0,2728.7771 -6269,7716,13911,13909,-9,-9,1,1,31,0,2,0,3,3,-9,0,3,8.5771284,8.4565783,0,1,1,22.345648,-9,-9,-9,2019,11,3,38,0,1,3,0,13.184617,13.184617,0,0,0,0,0,1,1,0,0,0,41.87,56.48,57.16,56.15,5,1,1,0,1,7,13,4,1,582,295628,171741.05,0,0,2728.7771 -6269,7716,13912,-9,13909,13911,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.77777,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,582,295628,171741.05,0,0,2728.7771 -6270,7717,13913,13914,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.0489311,7.0788264,56,1,-84.568718,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,1.2490091,0,0,1,1,0,1.1004492,7.2476692,60.29,52.11,62.49,55.09,10,1,1,0,0,0,7,2,1,784,732138.31,140436.94,387664.56,0,1612.8365 -6270,7717,13914,13913,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,56,-1,-12.6643,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,60.29,52.11,6.666666666666667,1,1,0,0,10,7,2,1,784,732138.31,140436.94,387664.56,0,1612.8365 -6271,7718,13915,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,7.3246503,6.8990545,0,0,0,-1052.0385,0,3,3,2019,29,12,15,15,1,12,0,9.1084652,9.1084652,0,0,0,0,0,0,0,0,0,0,39.73,38.88,-9,-9,3.333333333333333,1,1,0,0,9,13,2,0,274,139076.86,-84993.203,0,0,784.61047 -6272,7719,13916,13918,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,9.2289324,9.2634945,0,10,-1,-125.34273,0,2,2,2019,7,0,50,45,1,0,0,20.890873,20.890873,0,0,0,0,0,1,1,0,0,0,52,54.51,44.08,59.33,8.333333333333334,1,1,0,1,11,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 -6272,7719,13917,-9,13918,13916,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1727,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 -6272,7719,13918,13916,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.2506971,8.1085892,0,10,1,72.207115,0,2,2,2019,10,0,34,35,1,0,0,14.828463,14.828463,0,0,0,0,0,1,1,0,0,0,44.08,59.33,52,54.51,8.333333333333334,1,1,0,1,10,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 -6272,7719,13919,-9,13918,13916,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.44348,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,706.25,1717795.6,470823.69,488144.56,0,4430.9292 -6273,7720,13920,13921,-9,-9,1,0,45,1,1,0,1,1,-9,0,3,8.4492722,8.3857441,0,3,-5,27.833353,0,-9,-9,2019,10,0,45,40,1,0,0,12.563902,12.563902,0,0,0,0,0,1,1,0,0,0,56.5,37.6,13.31,56.57,6.666666666666667,1,1,0,0,10,13,5,1,686.66669,286145.47,123967.35,278166.97,106756.23,4200.6846 -6273,7720,13921,13920,-9,-9,1,1,50,1,1,0,1,1,-9,0,2,8.7940407,8.7697401,0,3,5,147.83835,0,2,1,2019,30,12,41,40,1,12,0,17.528032,17.528032,0,0,0,0,0,1,1,0,0,0,13.31,56.57,56.5,37.6,1.666666666666667,1,1,0,0,9,13,5,1,686.66669,286145.47,123967.35,278166.97,106756.23,4200.6846 -6273,7720,13922,-9,13920,13921,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-906.30988,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,5,1,686.66669,286145.47,123967.35,278166.97,106756.23,4200.6846 -6274,7721,13923,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-830.27692,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.12,46.93,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,791,-32858.098,0,0,0,2076.2363 -6275,7722,13924,13925,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.5552287,7.4747982,0,17,-3,68.685051,-9,2,1,2019,6,0,31,0,1,0,0,5.9671164,5.9671164,0,0,0,0,0,0,0,0,3.586086,0,48.28,60.18,54.13,45.34,8.333333333333334,1,1,0,0,12,6,4,1,506,527305.69,173569.34,156088.36,0,1998.4249 -6275,7722,13925,13924,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.8836203,7.505393,0,17,3,-7.7626586,-9,2,2,2019,11,2,38,0,1,2,0,6.2379837,6.2379837,0,0,0,0,0,0,0,0,0,0,54.13,45.34,48.28,60.18,10,1,1,0,0,13,6,4,1,506,527305.69,173569.34,156088.36,0,1998.4249 -6276,7723,13926,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.6739407,6.5627246,0,0,-811.53735,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2625372,6.4333982,62.37,33.97,-9,-9,10,1,1,0,0,0,4,2,1,796,576656.94,98214.766,221555.61,0,1334.8585 -6277,7724,13927,13928,-9,-9,1,1,36,0,3,0,2,2,-9,1,4,8.1927433,8.147501,0,11,1,28.70439,0,-9,-9,2019,4,1,78,39,1,1,0,5.4268079,5.4268079,0,0,0,0,0,1,1,0,0,0,49,57,51.46,43.85,0,1,1,0,0,11,5,3,1,471,208096.05,77081.5,211122.8,69953.359,2198.1184 -6277,7724,13928,13927,-9,-9,1,0,35,0,3,0,2,2,-9,1,3,0,0,0,18,-1,-17.662914,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.46,43.85,49,57,0,1,1,0,0,0,5,3,1,471,208096.05,77081.5,211122.8,69953.359,2198.1184 -6277,7724,13929,-9,13928,13927,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.5243,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,471,208096.05,77081.5,211122.8,69953.359,2198.1184 -6278,7725,13930,-9,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-938.99109,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.87,25.23,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,1097,-236393.23,6222.1387,68804.984,17816.252,1697.6619 -6279,7726,13931,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1054.17,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0309162,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,231,154735.41,60156.367,0,0,639.0451 -6280,7727,13932,13933,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.7506962,8.8396883,0,7,0,-69.370407,0,1,2,2019,8,0,39,44,1,0,0,14.458701,14.458701,0,0,0,0,0,1,1,0,1.268427,0,52.82,53.97,35.63,62.19,6.666666666666667,1,1,0,0,7,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 -6280,7727,13933,13932,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.191617,8.0907936,0,7,0,-108.67782,0,2,2,2019,18,7,18,30,1,7,0,26.705969,26.705969,0,0,0,0,0,1,1,0,8.0084934,0,35.63,62.19,52.82,53.97,6.666666666666667,1,1,0,0,7,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 -6280,7727,13934,-9,13933,13932,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.25519,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 -6280,7727,13935,-9,13933,13932,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.4175,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,4,1,710,663120.81,333151.38,284389.09,175880.81,4768.3428 -6281,7728,13936,13937,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,5.3093786,5.3365736,39,-2,48.804039,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.7519827,5.2448497,37.17,45.07,57.51,28.48,1.666666666666667,1,1,0,0,0,1,2,0,534.5,105431.52,125146.56,75526.984,0,1525.14 -6281,7728,13937,13936,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,39,2,-113.50096,0,3,2,2019,5,1,0,0,4,1,0,0,0,1,0,46.372292,0,0,1,1,0,0,0,57.51,28.48,37.17,45.07,0,1,1,0,0,0,1,2,0,534.5,105431.52,125146.56,75526.984,0,1525.14 -6282,7729,13938,13939,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,8,8,116.52347,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,.08008717,0,1,1,0,6.3760562,0,52,47,57.16,56.15,7,1,1,0,0,0,4,2,1,989.5,401809.56,190685.92,231678.06,0,863.70374 -6282,7729,13939,13938,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,6.3981752,6.2015738,41,-8,-61.583916,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4285414,6.7461467,57.16,56.15,52,47,8.333333333333334,1,1,0,0,3,4,2,1,989.5,401809.56,190685.92,231678.06,0,863.70374 -6283,7730,13940,-9,13941,13943,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2999,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 -6283,7730,13941,13943,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.7591629,6.5630236,0,8,8,-4.8334026,0,3,2,2019,9,0,14,14,1,0,0,7.3599319,7.3599319,0,0,0,0,0,1,1,0,0,0,46.42,48.99,42.26,44.04,5,1,1,0,0,8,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 -6283,7730,13942,-9,13941,13943,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1082.2795,-9,2,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.26,46.8,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 -6283,7730,13943,13941,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.378829,7.4828258,0,8,-8,67.059052,0,2,2,2019,18,6,86,80,1,6,0,2.6557136,2.6557136,0,0,0,0,0,1,1,0,0,0,42.26,44.04,46.42,48.99,1.666666666666667,1,1,0,0,5,9,2,1,1285.25,255145.5,31412.861,0,0,2490.9812 -6283,7731,13944,-9,13941,13943,1,0,19,0,2,0,2,2,-9,0,3,7.2573838,7.7496009,0,0,0,-1008.59,0,2,2,2019,23,9,43,45,1,9,1,3.9973097,3.9973097,0,0,0,0,0,1,1,0,0,0,38.76,42.69,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,2048,239931.05,0,0,0,772.30945 -6284,7732,13945,13946,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.475203,7.2700906,40,-2,-53.929428,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8248029,7.3133664,57.33,53.46,55.68,54.24,10,1,1,0,0,11,8,4,1,742.5,2398473.3,1125825.6,412522.44,0,3808.7168 -6284,7732,13946,13945,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.3564615,8.4933863,40,2,12.096193,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7070327,8.4734774,55.68,54.24,57.33,53.46,10,1,1,0,0,6,8,4,1,742.5,2398473.3,1125825.6,412522.44,0,3808.7168 -6285,7733,13947,13949,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,7.1021233,6.9604263,0,14,1,-38.654564,0,2,2,2019,6,0,41,42,1,0,0,4.6162686,4.6162686,0,0,0,0,0,1,1,0,.92558575,0,58.47,50.22,57.17,50.61,8.333333333333334,2,3,0,0,5,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 -6285,7733,13948,-9,13949,13947,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.41797,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 -6285,7733,13949,13947,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.8540735,8.6650848,0,14,-1,3.1674688,0,3,2,2019,9,0,44,44,1,0,0,15.168398,15.168398,0,0,0,0,0,1,1,0,2.4530535,0,57.17,50.61,58.47,50.22,1.666666666666667,2,3,0,0,7,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 -6285,7733,13950,-9,13949,13947,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.14807,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,668.5,138781.59,97236.781,395531.66,136726.8,3028.5281 -6285,7734,13951,13952,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,7.37046,7.6502018,0,20,2,-48.288807,0,3,3,2019,11,0,36,45,1,0,0,6.7085834,6.7085834,0,0,0,0,0,1,1,0,0,0,55.19,54.26,58.33,39.49,1.666666666666667,2,3,0,0,4,8,4,1,605.5,596567.5,89906.203,385981.94,46383.996,3136.3738 -6285,7734,13952,13951,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,8.4025793,8.5299044,0,20,-2,-8.8484964,0,2,2,2019,11,0,38,0,1,0,0,13.214693,13.214693,0,0,0,.37690148,0,1,1,0,0,0,58.33,39.49,55.19,54.26,8.333333333333334,2,3,0,0,8,8,4,1,605.5,596567.5,89906.203,385981.94,46383.996,3136.3738 -6286,7735,13953,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.7363873,4.4560599,0,0,-1162.2036,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.5833616,4.3602104,38.16,49.27,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,558,25162.867,-94040.828,104196.58,0,542.31018 -6287,7736,13954,13956,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.1613598,8.3469906,0,5,-3,-68.537056,0,-9,-9,2019,12,0,46,48,1,0,0,10.20863,10.20863,0,0,0,0,0,1,1,0,0,0,39.52,58.98,26.63,40.94,6.666666666666667,1,1,0,0,6,4,4,1,822,32905.871,54638.414,0,0,2244.4724 -6287,7736,13955,-9,13954,13956,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.2963,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,822,32905.871,54638.414,0,0,2244.4724 -6287,7736,13956,13954,-9,-9,1,1,34,0,1,0,1,1,-9,0,2,7.7232261,7.9657879,0,5,3,-48.989037,0,2,2,2019,21,6,46,48,1,6,0,5.5537724,5.5537724,0,0,0,0,0,1,1,0,0,0,26.63,40.94,39.52,58.98,3.333333333333333,1,1,0,1,7,4,4,1,822,32905.871,54638.414,0,0,2244.4724 -6288,7737,13957,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.7023187,7.8815875,6.5115385,0,0,-946.46844,-9,2,2,2019,11,0,23,0,1,0,0,10.999718,10.999718,0,0,0,0,0,1,1,0,0,6.3032861,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,698,149137.13,82234.695,0,0,1835.6798 -6289,7738,13958,13959,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0753469,9.1524363,0,3,2,-.5447287,0,3,3,2019,17,5,34,35,1,5,0,30.885422,30.885422,0,0,0,0,2,0,0,0,0,0,38.15,55.39,51.79,49.21,6.666666666666667,1,1,0,0,10,13,5,1,1513.5,235372.13,152400.88,95112.141,-2936.8442,3461.5298 -6289,7738,13959,13958,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,0,0,0,3,-2,-33.180782,0,3,3,2019,20,10,0,0,3,10,0,0,0,0,0,0,0,2,0,0,0,0,0,51.79,49.21,38.15,55.39,8.333333333333334,1,1,0,0,0,13,5,1,1513.5,235372.13,152400.88,95112.141,-2936.8442,3461.5298 -6290,7739,13960,-9,13961,13962,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1094.3265,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 -6290,7739,13961,13962,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8522792,8.1080217,0,17,2,-121.53489,0,3,3,2019,19,7,38,39,1,7,0,5.2761178,5.2761178,0,0,0,0,0,1,1,0,0,0,37.13,57.46,40.23,61.31,5,1,1,0,0,9,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 -6290,7739,13962,13961,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6332569,8.5829535,0,17,-2,-22.566053,-9,2,2,2019,18,7,41,0,1,7,0,17.53722,17.53722,0,0,0,0,0,1,1,0,0,0,40.23,61.31,37.13,57.46,3.333333333333333,1,1,0,0,9,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 -6290,7739,13963,-9,13961,13962,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.06903,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,822,1234231.1,669512.38,306550.56,137248.64,3312.0532 -6291,7740,13964,13965,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,6,-23,42.228184,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,22.6,37.21,33.39,1.666666666666667,1,1,0,0,0,11,2,1,651.5,-38422.332,0,0,0,1310.9294 -6291,7740,13965,13964,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.9698138,6.0518641,6,23,-141.67213,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.1712365,37.21,33.39,30.77,22.6,6.666666666666667,1,1,0,0,0,11,2,1,651.5,-38422.332,0,0,0,1310.9294 -6292,7741,13966,13967,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.3204699,8.488102,0,7,-3,13.310684,0,-9,-9,2019,16,4,52,50,1,4,0,10.104729,10.104729,0,0,0,0,0,0,0,0,0,0,41.82,56.44,55.96,49.93,8.333333333333334,1,1,0,0,7,8,5,0,451,196293.14,43800.383,274170.19,235846.22,3691.8494 -6292,7741,13967,13966,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.0642757,7.8613739,0,7,3,166.16124,0,-9,-9,2019,3,0,48,30,1,0,0,8.6440134,8.6440134,0,0,0,0,0,0,0,0,0,0,55.96,49.93,41.82,56.44,8.333333333333334,1,1,0,0,5,8,5,0,451,196293.14,43800.383,274170.19,235846.22,3691.8494 -6293,7742,13968,13969,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.5925484,8.3727646,0,19,6,-41.277557,-9,3,3,2019,6,0,38,0,1,0,0,16.879948,16.879948,0,0,0,0,0,0,0,0,0,0,52.26,51.57,52.72,50.72,10,2,3,0,0,10,8,4,1,690.5,820016.5,514665.56,324391.5,0,2632.6841 -6293,7742,13969,13968,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,0,0,0,1,-6,-15.644384,-9,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.72,50.72,52.26,51.57,10,1,1,0,0,0,8,4,1,690.5,820016.5,514665.56,324391.5,0,2632.6841 -6293,7743,13970,-9,13969,13968,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-928.39569,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,5,2,3,0,0,0,8,1,1,1459,-270872.56,0,0,0,0 -6294,7744,13971,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1115.0792,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,765,-298395.59,0,0,0,672.68262 -6295,7745,13972,13973,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.7225342,10.193122,0,1,6,-1.4388168,-9,2,3,2019,7,0,50,0,1,0,0,33.705589,33.705589,0,0,0,0,0,1,1,0,5.5953465,0,51.54,46.93,64.47,51.45,1.666666666666667,1,1,0,0,8,5,5,0,837.33331,712931.25,285517.03,265922.72,141586.14,17195.887 -6295,7745,13973,13972,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6096153,8.9778261,6.2210813,1,-6,-33.759304,-9,-9,-9,2019,6,0,35,0,1,0,0,26.667622,26.667622,0,0,0,0,0,1,1,0,6.7044387,0,64.47,51.45,51.54,46.93,8.333333333333334,1,1,0,0,9,5,5,0,837.33331,712931.25,285517.03,265922.72,141586.14,17195.887 -6295,7745,13974,-9,13973,-9,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1081.8353,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,5,0,837.33331,712931.25,285517.03,265922.72,141586.14,17195.887 -6295,7746,13975,-9,13973,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-951.16235,-9,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,1,0,139,0,0,0,0,-183.36499 -6296,7747,13976,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.8915744,7.667942,0,0,-926.52393,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7077131,8.0653973,57.06,57.76,-9,-9,10,1,1,0,0,9,10,4,1,576,81672.789,506842.03,-26781.672,0,1313.4613 -6297,7748,13977,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.9999404,7.055028,0,0,0,-1023.3363,0,3,3,2019,14,2,16,16,1,2,0,6.8173122,6.8173122,0,0,0,0,0,1,1,0,0,0,37.42,35.77,-9,-9,5,1,1,0,0,7,4,2,0,1382,63388.887,53466.652,0,0,670.31152 -6298,7749,13978,-9,13981,13979,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.9071,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 -6298,7749,13979,13981,-9,-9,1,1,45,1,2,0,1,1,-9,0,4,8.5117588,8.3093901,0,15,10,70.543671,0,3,2,2019,11,0,41,0,1,0,0,13.187399,13.187399,0,0,0,0,0,1,1,0,0,0,54.2,57.49,38.94,60.48,8.333333333333334,2,3,0,0,10,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 -6298,7749,13980,-9,13981,13979,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.57928,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 -6298,7749,13981,13979,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.3599997,7.1939054,0,13,-10,-4.8128266,0,1,2,2019,14,3,24,35,1,3,0,7.0652337,7.0652337,0,0,0,0,0,1,1,0,0,0,38.94,60.48,54.2,57.49,6.666666666666667,1,1,0,0,8,8,4,1,979.5,125693.38,25290.037,170989.8,104575.97,2601.1445 -6299,7750,13982,13983,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,8.0077896,7.7506833,9,4,-58.860279,0,2,3,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,3.2785828,8.1635847,46.95,35.43,44.43,46.21,6.666666666666667,1,1,0,0,0,13,4,1,325,1483870.5,1074460.3,274917.5,0,3160.9587 -6299,7750,13983,13982,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.1423068,7.1395364,9,-4,67.27317,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.5828235,7.467895,44.43,46.21,46.95,35.43,5,1,1,0,0,7,13,4,1,325,1483870.5,1074460.3,274917.5,0,3160.9587 -6300,7751,13984,13985,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,31,4,12.871228,0,3,3,2019,11,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.93,54.5,52.97,32.74,8.333333333333334,1,1,0,0,12,7,3,1,821.5,1247015,775826.13,430051.63,0,478.00955 -6300,7751,13985,13984,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.1591749,8.3465672,0,31,-4,46.539433,0,-9,-9,2019,8,1,19,22,1,1,0,22.743189,22.743189,0,0,0,0,0,0,0,0,3.1460934,0,52.97,32.74,42.93,54.5,5,1,1,0,0,10,7,3,1,821.5,1247015,775826.13,430051.63,0,478.00955 -6300,7752,13986,-9,13985,13984,1,1,25,0,0,0,1,1,-9,0,4,8.7870359,8.6024113,0,0,0,-954.83203,0,3,3,2019,7,0,37,40,1,0,1,18.383104,18.383104,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,0,1,1,0,0,9,7,5,1,71,303316.97,12898.488,0,0,2439.1941 -6301,7753,13987,-9,13988,13989,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.45514,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1093,1887536.6,1542278.5,235527.3,87873.805,4317.2095 -6301,7753,13988,13989,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.2328224,8.0905962,6.3674812,5,1,101.6254,0,3,2,2019,9,0,28,28,1,0,0,11.743716,11.743716,0,0,0,0,0,1,1,0,5.8845625,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,4,5,1,1093,1887536.6,1542278.5,235527.3,87873.805,4317.2095 -6301,7753,13989,13988,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,8.518652,8.701108,7.7265329,5,-1,-87.959633,0,-9,-9,2019,9,0,45,37,1,0,0,13.280072,13.280072,0,0,0,0,0,1,1,0,0,7.8263855,54.2,57.49,57.16,56.15,10,1,1,0,0,11,4,5,1,1093,1887536.6,1542278.5,235527.3,87873.805,4317.2095 -6301,7754,13990,-9,13988,13989,1,0,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1115.8021,1,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,5,1,1,0,1,3,4,1,1,915,11362.324,0,0,0,0 -6302,7755,13991,13992,-9,-9,1,1,42,0,1,0,1,1,-9,0,5,7.7248912,7.7056394,0,14,1,-1.7323961,-9,-9,-9,2019,7,0,44,0,1,0,0,5.9542518,5.9542518,0,0,0,0,0,1,1,0,0,0,56.47,59.4,57.16,56.15,10,2,3,0,0,10,9,4,1,608.66669,-113339.46,169440.8,0,0,2722.5674 -6302,7755,13992,13991,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.2269831,8.5699615,0,14,-1,160.02567,0,-9,-9,2019,6,0,50,50,1,0,0,11.616327,11.616327,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.47,59.4,1.666666666666667,2,3,0,0,9,9,4,1,608.66669,-113339.46,169440.8,0,0,2722.5674 -6302,7755,13993,-9,13992,13991,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.91461,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,608.66669,-113339.46,169440.8,0,0,2722.5674 -6303,7756,13994,13996,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.4683943,9.3374929,0,9,2,66.776398,0,2,2,2019,7,0,60,55,1,0,0,27.693943,27.693943,0,0,0,0,0,0,0,0,4.3571849,0,57.16,56.15,44.08,59.33,10,1,1,0,0,10,7,5,1,917,3404683.5,1688082.6,964569.88,0,7480.0029 -6303,7756,13995,-9,13996,13994,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1069.693,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,917,3404683.5,1688082.6,964569.88,0,7480.0029 -6303,7756,13996,13994,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.2129173,9.434103,0,9,-2,-5.8251939,0,2,2,2019,17,6,105,23,1,6,0,12.0776,12.0776,0,0,0,0,0,0,0,0,0,0,44.08,59.33,57.16,56.15,6.666666666666667,1,1,0,0,10,7,5,1,917,3404683.5,1688082.6,964569.88,0,7480.0029 -6304,7757,13997,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,3.3741446,3.5210874,0,0,-944.35291,0,-9,-9,2019,28,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,3.4619627,3.2012551,23.94,23.19,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,217,136953.33,15140.836,0,0,930.26398 -6304,7758,13998,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.5314026,7.1342034,0,0,-901.74768,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.1815481,7.6660008,56.64,44.13,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,582,971880.44,474399.16,256177.31,21275.766,1197.635 -6305,7759,13999,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.909122,7.0358591,0,0,-1034.4138,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.7423036,6.9100428,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,686,956097.5,178200.53,266256.03,0,946.88727 -6306,7760,14000,14001,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,21,-3,76.434097,0,3,2,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,3,7,3,0,631.5,1202669.5,190357.83,964276,236846.28,1927.7065 -6306,7760,14001,14000,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.4205227,8.5518217,0,8,3,33.510658,-9,-9,-9,2019,9,0,40,0,1,1,0,15.918619,15.918619,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,4,7,3,0,631.5,1202669.5,190357.83,964276,236846.28,1927.7065 -6307,7761,14002,-9,14005,14003,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.9292,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 -6307,7761,14003,14005,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.9313822,9.3223734,0,16,3,96.616898,0,2,2,2019,10,3,70,55,1,3,0,15.942225,15.942225,0,0,0,0,0,1,1,0,0,0,49.04,55.86,46.39,60.99,8.333333333333334,1,1,0,0,9,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 -6307,7761,14004,-9,14005,14003,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.6459,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 -6307,7761,14005,14003,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.5779667,8.43046,0,16,-3,92.325104,0,1,1,2019,12,1,50,38,1,1,0,15.339315,15.339315,0,0,0,0,0,1,1,0,0,0,46.39,60.99,49.04,55.86,6.666666666666667,1,1,0,0,9,7,5,1,630,717705.13,350306.03,533572.31,196159,5578.4175 -6308,7762,14006,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,6.6919308,6.5284772,0,0,-995.67786,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,1.3892542,6.6440687,52.15,15.61,-9,-9,5,1,1,0,0,0,10,2,1,776,867386.31,453132.34,304336.5,0,1028.4418 -6308,7763,14007,-9,14006,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.2588,0,3,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,42,1,1,0,1.6801199,0,25.03,56.31,-9,-9,3.333333333333333,1,1,1,0,0,10,1,1,188,0,0,0,0,1223.5417 -6308,7764,14008,-9,14006,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1138.2639,0,3,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,2,1,1,0,.83861375,0,32.19,34.56,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,614,70386.383,0,0,0,447.14465 -6308,7765,14009,14010,14006,-9,1,1,37,0,0,0,3,3,-9,0,3,8.0406942,7.9691935,0,2,1,63.552135,0,3,-9,2019,15,2,42,41,1,2,0,6.9920158,6.9920158,0,0,0,0,0,1,1,0,0,0,46.08,57.2,45.91,59.89,1.666666666666667,1,1,0,0,11,10,4,1,1712,-203160.47,-91777.531,0,0,2339.2637 -6308,7765,14010,14009,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.9525862,8.0590677,0,2,-1,-6.4044056,0,2,2,2019,11,0,39,37,1,0,0,6.5337052,6.5337052,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.08,57.2,1.666666666666667,1,1,0,0,12,10,4,1,1712,-203160.47,-91777.531,0,0,2339.2637 -6309,7766,14011,14012,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9837017,7.8653412,0,7,0,77.445396,0,3,2,2019,12,1,23,24,1,1,0,11.911829,11.911829,0,0,0,0,0,1,1,0,0,0,42.11,49.57,43.12,58.55,8.333333333333334,1,1,0,0,9,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 -6309,7766,14012,14011,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.9454374,9.2709122,0,7,0,117.95373,0,2,2,2019,11,0,48,48,1,0,0,17.33884,17.33884,0,0,0,0,0,1,1,0,0,0,43.12,58.55,42.11,49.57,8.333333333333334,1,1,0,0,8,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 -6309,7766,14013,-9,14011,14012,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.2567,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 -6309,7766,14014,-9,14011,14012,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.68579,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1187.5,88014.297,-11132.354,384430.91,231583.97,3788.6558 -6310,7767,14015,14016,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.9542809,8.8565588,0,1,2,-77.548653,0,2,3,2019,7,1,40,40,1,1,0,20.569122,20.569122,0,0,0,0,2,0,0,0,6.3076644,0,52.77,55.33,50,55,6.666666666666667,1,1,0,0,9,11,5,1,1218.5,1102870.8,1002034.6,224833.02,80063.219,5282.2378 -6310,7767,14016,14015,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.3699083,8.0147791,0,1,-2,42.926201,-9,-9,-9,2019,10,0,40,0,1,1,0,10.345755,10.345755,0,0,0,0,0,0,0,0,0,0,50,55,52.77,55.33,8,1,1,0,0,1,11,5,1,1218.5,1102870.8,1002034.6,224833.02,80063.219,5282.2378 -6311,7768,14017,14018,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,0,0,0,8,3,-4.894114,0,3,3,2019,17,5,0,37,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,32.17,54.65,45.98,56.3,3.333333333333333,1,1,1,1,8,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 -6311,7768,14018,14017,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.4400826,8.3043127,0,8,-3,-35.435028,0,3,2,2019,13,2,38,45,1,2,0,11.654833,11.654833,0,0,0,0,0,1,1,0,0,0,45.98,56.3,32.17,54.65,5,1,1,0,1,9,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 -6311,7768,14019,-9,14018,14017,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1019.4629,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 -6311,7768,14020,-9,14018,14017,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.8678,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,1046,834970.81,92635.117,524156.06,0,1898.2885 -6312,7769,14021,14022,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,22,-8,0,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.68,44.02,68.73999999999999,22.58,8.333333333333334,1,1,0,0,0,2,1,1,451.5,600965.31,55240.773,264453.38,-7029.7754,1476.2332 -6312,7769,14022,14021,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,0,0,22,8,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,1,0,12.302528,0,14.5,1,1,0,0,0,68.73999999999999,22.58,40.68,44.02,8.333333333333334,1,1,0,0,0,2,1,1,451.5,600965.31,55240.773,264453.38,-7029.7754,1476.2332 -6313,7770,14023,14024,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,0,0,0,7,4,0,0,-9,-9,2019,12,0,0,12,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.29,46.68,36.19,33.28,6.666666666666667,1,1,1,0,1,13,1,0,508.5,-104906.23,92763.008,0,0,2174.585 -6313,7770,14024,14023,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,7,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.19,33.28,39.29,46.68,3.333333333333333,1,1,0,0,0,13,1,0,508.5,-104906.23,92763.008,0,0,2174.585 -6314,7771,14025,14028,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,0,6.1545711,5.7667503,5,-3,-43.790104,0,1,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.444838,0,43.99,50.34,49.46,56.91,8.333333333333334,1,1,0,0,4,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 -6314,7771,14026,-9,14025,14028,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.4099,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 -6314,7771,14027,-9,14025,14028,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.52167,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 -6314,7771,14028,14025,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,7.8879838,7.946733,0,5,3,48.18214,0,2,2,2019,6,0,38,38,1,0,0,9.7256985,9.7256985,0,0,0,0,0,1,1,0,0,0,49.46,56.91,43.99,50.34,8.333333333333334,1,1,0,0,8,10,3,1,642.75,1015326.4,711431,138927.94,103820.49,1608.8547 -6315,7772,14029,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-978.30933,0,2,1,2019,21,10,0,30,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,35.16,36.82,-9,-9,5,1,1,1,0,12,1,1,1,447,148245.88,0,0,0,0 -6316,7773,14030,14031,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.1566505,7.9692459,0,43,-1,94.200729,0,2,2,2019,9,0,37,36,1,0,0,7.8133669,7.8133669,0,0,0,0,2,0,0,0,0,0,55.36,51.57,57.16,56.15,5,1,1,0,0,12,9,5,1,549.5,3804709.5,241581.56,2778173,645781.25,5285.9136 -6316,7773,14031,14030,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.8510122,9.0095501,6.5404038,43,1,72.118065,0,3,3,2019,8,0,45,40,1,0,0,16.952297,16.952297,0,0,0,0,2,0,0,0,0,6.7425294,57.16,56.15,55.36,51.57,6.666666666666667,1,1,0,0,10,9,5,1,549.5,3804709.5,241581.56,2778173,645781.25,5285.9136 -6317,7774,14032,-9,14034,14033,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7925,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,616,2465195.3,1057730,1209534.3,79538.578,8671.5449 -6317,7774,14033,14034,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.6264639,10.026666,0,11,4,120.43832,0,2,1,2019,10,0,36,40,1,0,0,52.873951,52.873951,0,0,0,0,0,0,0,0,5.2857842,0,57.33,53.46,53.63,51.24,8.333333333333334,2,3,0,0,13,8,5,1,616,2465195.3,1057730,1209534.3,79538.578,8671.5449 -6317,7774,14034,14033,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.7302542,7.9719124,0,17,-4,-79.752533,0,1,1,2019,12,0,35,0,1,0,0,7.5930719,7.5930719,0,0,0,0,0,0,0,0,0,0,53.63,51.24,57.33,53.46,6.666666666666667,2,3,0,0,3,8,5,1,616,2465195.3,1057730,1209534.3,79538.578,8671.5449 -6318,7775,14035,14036,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,9.1384258,9.1973095,0,5,-5,-12.860957,0,2,2,2019,7,0,20,20,1,0,0,65.585861,65.585861,0,0,0,0,0,0,0,0,0,0,60.32,48.05,61.43,48.88,10,1,1,0,0,9,6,5,1,355.5,3386859.5,2080137.8,575746.25,0,7290.8267 -6318,7775,14036,14035,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.2787848,9.0765839,0,5,5,-49.480175,0,-9,-9,2019,8,0,42,45,1,0,0,29.544479,29.544479,0,0,0,0,0,0,0,0,0,0,61.43,48.88,60.32,48.05,8.333333333333334,1,1,0,0,9,6,5,1,355.5,3386859.5,2080137.8,575746.25,0,7290.8267 -6319,7776,14037,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1130.392,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.38,38.52,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,2610,-329371.88,0,196687.86,0,706.29425 -6320,7777,14038,14039,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.8813357,7.9977708,0,3,2,50.474403,0,2,2,2019,3,0,50,50,1,0,0,6.952805,6.952805,0,0,0,0,0,0,0,0,0,0,49.04,55.86,43.36,42.15,6.666666666666667,1,1,0,0,5,10,4,0,749.5,175622.02,38364.281,185904.5,143400.22,2045.6494 -6320,7777,14039,14038,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.2017465,6.92978,0,3,-2,-15.224497,0,-9,-9,2019,15,4,30,15,1,4,0,4.1149778,4.1149778,0,0,0,0,0,0,0,0,0,0,43.36,42.15,49.04,55.86,8.333333333333334,1,1,0,0,2,10,4,0,749.5,175622.02,38364.281,185904.5,143400.22,2045.6494 -6321,7778,14040,14041,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.3581638,7.4770012,3.7130497,7,0,1.6069583,0,-9,-9,2019,9,0,40,40,1,0,0,4.4471526,4.4471526,0,0,0,0,2,1,1,0,0,3.6281662,59.46,46.99,27.48,37.7,6.666666666666667,1,1,0,0,9,8,2,1,1605.5,222135.45,213333.98,190792.33,0,1459.2329 -6321,7778,14041,14040,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,7,9,22.287539,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,27.48,37.7,59.46,46.99,8.333333333333334,1,1,0,1,0,8,2,1,1605.5,222135.45,213333.98,190792.33,0,1459.2329 -6322,7779,14042,14043,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,7.8347335,7.7346654,0,8,1,81.12928,0,-9,-9,2019,6,0,37,38,1,0,0,9.6416826,9.6416826,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.79,55.86,8.333333333333334,1,1,0,0,13,13,4,0,1485.5,419835.38,562070.19,169263.44,108454.1,2110.9509 -6322,7779,14043,14042,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6520081,7.4922686,0,8,-1,85.817146,0,3,3,2019,8,0,32,32,1,0,0,7.4329834,7.4329834,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.69,57.47,8.333333333333334,1,1,0,0,11,13,4,0,1485.5,419835.38,562070.19,169263.44,108454.1,2110.9509 -6322,7780,14044,-9,14043,14042,1,1,23,0,0,0,2,2,-9,0,5,7.8883777,7.8387051,0,0,0,-979.03821,0,2,2,2019,4,0,35,36,1,0,1,9.1060333,9.1060333,0,0,0,0,0,0,0,0,1.741834,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,3801,-245669.17,0,0,0,1156.0464 -6323,7781,14045,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.3766174,8.5012999,0,0,0,-1121.4176,0,-9,-9,2019,9,0,30,35,1,0,0,14.752501,14.752501,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,5,1,1,0,0,11,2,4,0,3619,115592.2,92247.461,0,0,1727.2892 -6324,7782,14046,14047,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.5343537,6.6589208,10,-2,61.671555,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3723521,55.19,54.26,48.53,58.91,1.666666666666667,1,1,0,0,0,12,3,1,591,983355.75,306578.22,467533.75,0,2003.4814 -6324,7782,14047,14046,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.885561,6.8538136,10,2,-58.113251,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1537704,48.53,58.91,55.19,54.26,8.333333333333334,1,1,0,0,0,12,3,1,591,983355.75,306578.22,467533.75,0,2003.4814 -6325,7783,14048,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,9.0150919,8.9645424,7.0362482,0,0,-983.31488,0,3,3,2019,6,0,70,60,1,0,0,13.388394,13.388394,0,0,0,0,0,1,1,0,0,7.0895987,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,456,258650.64,11208.671,156720,0,4307.7251 -6326,7784,14049,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.581562,8.5491161,0,0,0,-899.68237,0,3,3,2019,13,1,30,37,1,1,0,20.29635,20.29635,0,0,0,0,0,1,1,0,3.6915059,0,52.06,41.16,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,789,73863.125,44472.445,187486.92,0,1329.9667 -6327,7785,14050,-9,14054,14051,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-961.30859,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 -6327,7785,14051,14054,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,9.0725994,9.3424616,0,11,0,-68.404434,0,-9,-9,2019,18,6,38,42,1,6,0,27.265465,27.265465,0,0,0,0,42,1,1,0,0,0,30.25,56.52,31.13,62.65,5,1,1,0,0,10,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 -6327,7785,14052,-9,14054,14051,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.85999,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 -6327,7785,14053,-9,14054,14051,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.7617,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 -6327,7785,14054,14051,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,0,0,0,11,0,85.178619,0,3,1,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,31.13,62.65,30.25,56.52,6.666666666666667,1,1,0,0,7,1,4,0,934.79999,43491.734,27228.979,147712.63,90637.898,5176.9785 -6328,7786,14055,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7282653,7.8865428,0,0,0,-1083.7285,0,-9,-9,2019,6,0,37,37,1,0,0,7.2702022,7.2702022,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,214,-27964.607,-45898.453,0,0,1303.4956 -6329,7787,14056,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,7.8037114,8.0722685,0,0,0,-861.02509,0,2,2,2019,6,0,30,36,1,0,0,9.6682348,9.6682348,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,4,3,0,301,148669.98,-116416.6,0,0,849.63983 -6330,7788,14057,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-969.55859,0,2,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,47.77,-9,-9,6.666666666666667,1,1,0,0,4,8,1,0,1154,-101582.16,0,0,0,584.13831 -6331,7789,14058,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,7.8454514,7.7036796,3.3518999,0,0,-1109.5084,0,3,3,2019,12,0,37,38,1,0,0,7.5783734,7.5783734,0,0,0,0,0,1,1,0,3.576757,0,51.41,56.15,-9,-9,5,1,1,0,0,8,11,3,1,420.5,-111391.28,27771.898,0,0,1742.2499 -6331,7789,14059,-9,14058,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.5569,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,420.5,-111391.28,27771.898,0,0,1742.2499 -6332,7790,14060,14061,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.3809361,7.8545308,2,0,87.323288,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6849194,7.281055,57.78,40.89,58.3,52.91,8.333333333333334,1,1,0,0,3,4,4,1,662,1496066.8,1137814.5,212658.38,0,3982.1265 -6332,7790,14061,14060,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.0532541,7.9128075,2,0,27.480892,-9,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8377705,7.4906769,58.3,52.91,57.78,40.89,8.333333333333334,1,1,0,0,0,4,4,1,662,1496066.8,1137814.5,212658.38,0,3982.1265 -6333,7791,14062,-9,14064,14063,1,1,22,0,0,0,2,2,-9,0,5,7.2851133,7.599566,0,0,0,-911.89111,0,2,2,2019,6,0,40,40,1,0,1,5.473124,5.473124,0,0,0,0,0,0,0,0,2.2114947,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,11,3,1,333,73972.5,31762.758,0,0,722.03845 -6333,7792,14063,14064,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5039015,8.1553125,0,10,7,-18.437677,0,-9,-9,2019,6,0,40,118,1,0,0,12.386121,12.386121,0,0,0,0,0,0,0,0,0,0,58.9,40.21,60.64,32.51,8.333333333333334,1,1,0,0,11,11,4,1,372.5,1459312.3,1130717.9,225623.53,11829.421,2732.6794 -6333,7792,14064,14063,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.7476258,7.6040721,0,10,-7,48.684452,0,2,2,2019,8,1,27,28,1,1,0,8.6065235,8.6065235,0,0,0,0,0,0,0,0,0,0,60.64,32.51,58.9,40.21,8.333333333333334,1,1,0,0,11,11,4,1,372.5,1459312.3,1130717.9,225623.53,11829.421,2732.6794 -6334,7793,14065,14068,-9,-9,1,1,33,1,2,0,2,2,-9,1,3,8.6354885,8.6232061,0,6,1,61.793228,0,-9,-9,2019,16,5,40,42,1,5,0,16.765974,16.765974,0,0,0,0,0,1,1,0,0,0,44.19,58.01,48.81,59.91,8.333333333333334,1,1,0,0,13,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 -6334,7793,14066,-9,14068,14065,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.3207,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 -6334,7793,14067,-9,14068,14065,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.8768,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 -6334,7793,14068,14065,-9,-9,1,0,32,1,2,0,1,1,-9,0,4,8.0040407,8.0687685,0,6,-1,-27.25491,0,-9,-9,2019,10,0,33,38,1,0,0,10.948201,10.948201,0,0,0,0,0,1,1,0,.97508347,0,48.81,59.91,44.19,58.01,8.333333333333334,1,1,0,0,10,4,4,1,524.75,126626.48,20979.602,221987.39,197978.5,3661.5203 -6335,7794,14069,-9,14071,14072,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.6056,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 -6335,7794,14070,-9,14071,14072,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.31378,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 -6335,7794,14071,14072,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.3988781,8.1577578,0,3,-5,-6.412281,0,-9,-9,2019,12,0,42,50,1,0,0,12.873142,12.873142,0,0,0,0,0,0,0,0,0,0,54.77,55.87,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 -6335,7794,14072,14071,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,9.4200687,9.457263,0,3,5,-148.38574,0,1,1,2019,9,0,45,45,1,0,0,38.922024,38.922024,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.77,55.87,10,1,1,0,0,11,12,5,1,521.25,-113216.17,-10940.385,277022.97,186859.16,5166.4858 -6336,7795,14073,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1103.1622,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,14.331135,20.036463,0,0,1,1,0,4.4468551,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,581,-29839.213,0,0,0,1623.061 -6337,7796,14074,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.7797627,7.9222875,0,0,0,-1046.1613,0,3,3,2019,32,12,70,35,1,12,0,3.7436755,3.7436755,0,0,0,0,0,0,0,0,0,0,20.04,35.87,-9,-9,1.666666666666667,1,1,0,0,13,12,3,0,138,-15193.244,-31772.438,0,0,830.50305 -6338,7797,14075,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.6852331,6.5106277,0,0,-1002.4485,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5906849,6.9011569,40.64,52.96,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,1121,598007.19,282399,166494.09,0,2233.7793 -6339,7798,14076,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,8.9491673,8.8559961,0,0,0,-1059.5026,0,-9,-9,2019,14,3,46,38,1,3,0,21.149529,21.149529,0,0,0,0,0,1,1,0,6.0166392,0,34.2,44.25,-9,-9,6.666666666666667,1,1,0,0,6,12,5,1,295,-40504.184,166406.19,48537.715,89658.719,2884.3306 -6340,7799,14077,14078,-9,-9,1,0,30,0,2,0,3,3,-9,1,2,0,0,0,5,-1,0,0,3,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.74,30.47,29.85,27.26,5,1,1,0,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 -6340,7799,14078,14077,-9,-9,1,1,31,0,2,0,3,3,-9,1,2,0,0,0,5,1,0,0,-9,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,0,29.85,27.26,19.74,30.47,6.666666666666667,1,1,1,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 -6340,7799,14079,-9,14077,14078,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.8819,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 -6340,7799,14080,-9,14077,14078,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.65973,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,627.25,-62081.984,11556.974,0,0,2176.4304 -6341,7800,14081,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-950.75769,0,2,2,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.78,33.47,-9,-9,6.666666666666667,2,3,1,1,0,8,1,0,201,30451.135,0,0,0,971.51929 -6342,7801,14082,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.2922111,7.1730952,0,0,-807.30157,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0164163,7.0818319,62.82,22.78,-9,-9,10,1,1,0,0,8,10,2,0,2997,365366.88,216094.48,109301.03,0,1558.7494 -6343,7802,14083,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,7.1751428,7.320672,0,0,-954.21332,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.7665629,6.9694543,49.5,46.08,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,598,965581.31,252352.34,236686.8,0,1441.3273 -6344,7803,14084,14086,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,0,0,0,12,-1,-64.652069,-9,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,58.34,50.4,52.34,6.666666666666667,1,1,0,0,6,6,5,1,538.66669,488804.63,338595.03,9859.2227,38760.734,3728.3779 -6344,7803,14085,-9,14084,14086,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.864,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,538.66669,488804.63,338595.03,9859.2227,38760.734,3728.3779 -6344,7803,14086,14084,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.3960438,9.284421,0,12,1,64.104568,-9,2,2,2019,11,0,38,0,1,0,0,29.530924,29.530924,0,0,0,0,0,1,1,0,0,0,50.4,52.34,34.65,58.34,8.333333333333334,1,1,0,0,8,6,5,1,538.66669,488804.63,338595.03,9859.2227,38760.734,3728.3779 -6345,7804,14087,14088,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5742016,8.3437653,0,10,-1,-51.558235,0,-9,-9,2019,9,0,40,40,1,1,0,10.551303,10.551303,0,0,0,0,0,0,0,0,0,0,51,56,54.79,55.86,7,1,1,0,0,1,2,4,1,198,399912.88,-7266.4922,35668.195,0,2950.397 -6345,7804,14088,14087,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.7963328,7.0913053,0,24,1,-142.91492,0,2,2,2019,7,0,23,23,1,0,0,7.6662755,7.6662755,0,0,0,0,0,0,0,0,3.5544956,0,54.79,55.86,51,56,8.333333333333334,1,1,0,0,11,2,4,1,198,399912.88,-7266.4922,35668.195,0,2950.397 -6345,7805,14089,-9,14088,14087,1,0,22,0,0,0,2,2,-9,0,4,8.3162527,8.0993071,0,0,0,-994.45337,0,2,2,2019,6,0,30,36,1,0,1,10.268758,10.268758,0,0,0,0,0,0,0,0,.29015499,0,61.12,51.57,-9,-9,10,1,1,0,0,6,2,4,1,2152,-138194.23,131859.05,0,0,1719.4287 -6345,7806,14090,-9,14088,14087,1,0,18,0,0,1,2,0,0,0,4,0,3.7991138,3.6116815,0,0,-1078.5974,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.1110773,0,57.16,56.15,-9,-9,10,1,1,0,0,1,2,2,1,828,22172,0,0,0,519.98816 -6346,7807,14091,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9268932,7.8680711,0,0,-932.24377,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9765389,8.083704,65.22,41.45,-9,-9,10,1,1,0,0,4,1,4,1,340,202794.8,345638.03,257524.67,0,2310.4604 -6347,7808,14092,14093,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.7715416,8.5312004,0,2,0,35.810108,0,-9,-9,2019,8,0,45,50,1,0,0,14.206921,14.206921,0,0,0,0,0,0,0,0,.85193706,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,5,11,5,1,488,507121.81,89687.148,314792.84,202259.22,4369.6396 -6347,7808,14093,14092,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.479167,8.1107702,0,2,0,-32.57983,0,-9,-9,2019,6,2,48,49,1,2,0,11.783319,11.783319,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,6,11,5,1,488,507121.81,89687.148,314792.84,202259.22,4369.6396 -6348,7809,14094,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.2394695,8.2602301,0,0,0,-1096.1427,0,2,1,2019,6,0,36,42,1,0,0,12.600418,12.600418,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,580,196332.92,77211.43,112057.8,-3822.6211,1939.1421 -6349,7810,14095,14096,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,8.4906092,9.1805725,7.4395652,47,-1,-64.343063,0,3,2,2019,3,0,25,20,1,0,0,21.419357,21.419357,0,0,0,0,0,0,0,0,.82645828,7.8918176,48.77,60.16,55.79,52.62,8.333333333333334,1,1,0,0,10,10,5,1,592,1963186.8,1411591,324231.75,0,3285.718 -6349,7810,14096,14095,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,0,0,47,1,3.24475,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.9704652,0,55.79,52.62,48.77,60.16,8.333333333333334,1,1,0,0,7,10,5,1,592,1963186.8,1411591,324231.75,0,3285.718 -6350,7811,14097,14098,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.6103358,7.7275176,10,-1,-28.148188,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,0,7.64503,48.33,38.96,51,46,8.333333333333334,1,1,0,0,0,13,3,1,616.5,750814.69,358496.5,275547.88,0,1827.5476 -6350,7811,14098,14097,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,10,1,65.916672,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,129.92543,0,0,1,1,0,0,0,51,46,48.33,38.96,7,1,1,0,0,0,13,3,1,616.5,750814.69,358496.5,275547.88,0,1827.5476 -6351,7812,14099,-9,14100,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.1616,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,816.5,-289774.06,0,0,0,804.5365 -6351,7812,14100,-9,-9,-9,1,0,18,1,1,0,2,2,-9,0,2,5.5586748,5.5794048,0,0,0,-1026.9174,0,-9,-9,2019,14,4,8,0,1,4,0,3.5780675,3.5780675,0,0,0,0,0,1,1,0,0,0,48.59,33.27,-9,-9,5,1,1,0,0,1,11,2,0,816.5,-289774.06,0,0,0,804.5365 -6352,7813,14101,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.1398411,8.453763,0,0,0,-1064.1407,0,3,3,2019,11,0,38,38,1,1,0,14.411506,14.411506,0,0,0,0,0,0,0,0,0,0,49,56,-9,-9,7,1,1,0,0,11,9,4,0,1088,-9529.4873,-11711.508,334564.16,194849.7,1622.9073 -6352,7814,14102,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.0905914,8.2320671,0,0,0,-1002.475,0,2,2,2019,4,0,37,37,1,0,0,9.2448645,9.2448645,0,0,0,0,0,0,0,0,3.9107757,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,11,9,4,0,358,-109267.51,-18416.047,0,0,1527.1924 -6353,7815,14103,14104,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,7.8649936,7.5371504,0,2,0,-76.723892,0,-9,-9,2019,12,0,38,38,1,0,0,6.518837,6.518837,0,0,0,0,0,0,0,0,0,0,40.97,36.99,43.34,38.4,8.333333333333334,1,1,0,0,4,7,4,1,1534,5926.5303,97466.82,154771.41,147783.31,2918.6265 -6353,7815,14104,14103,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.9471412,8.1892996,6.8516898,2,0,-28.977724,-9,-9,-9,2019,14,4,38,0,1,4,0,7.2546377,7.2546377,0,0,0,0,0,0,0,0,4.9092155,7.2578149,43.34,38.4,40.97,36.99,8.333333333333334,1,1,0,0,0,7,4,1,1534,5926.5303,97466.82,154771.41,147783.31,2918.6265 -6354,7816,14105,14106,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.7953629,7.0653052,0,8,0,47.432529,0,-9,-9,2019,7,0,40,45,1,0,0,2.3596051,2.3596051,0,0,0,0,42,0,0,0,0,0,53.44,55.06,44.59,33.59,8.333333333333334,1,1,0,0,13,12,3,0,486,-85383.414,6749.2539,0,0,1749.8701 -6354,7816,14106,14105,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,7.7940063,7.8130231,0,8,0,-60.104504,0,2,2,2019,13,3,26,28,1,3,0,10.138241,10.138241,0,0,0,0,42,0,0,0,0,0,44.59,33.59,53.44,55.06,6.666666666666667,1,1,0,0,11,12,3,0,486,-85383.414,6749.2539,0,0,1749.8701 -6355,7817,14107,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,6.479248,6.6818285,0,0,-1087.1189,0,3,2,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5071044,59.88,45.34,-9,-9,8.333333333333334,1,1,0,0,8,13,2,1,1509,188104.7,20229.932,98601.422,0,116.98596 -6356,7818,14108,14109,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.3881292,8.2422075,0,9,3,-17.982231,0,3,3,2019,10,0,40,45,1,0,0,12.686093,12.686093,0,0,0,0,0,0,0,0,3.1712363,0,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,11,13,5,1,2216.5,1182383.8,434590.44,268475.13,24352.824,2972.0664 -6356,7818,14109,14108,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.8489184,8.3547754,0,9,-3,26.191856,0,3,3,2019,8,0,37,37,1,0,0,8.1841221,8.1841221,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,2216.5,1182383.8,434590.44,268475.13,24352.824,2972.0664 -6357,7819,14110,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.9212923,7.9106908,0,0,0,-991.95282,0,-9,-9,2019,10,0,35,30,1,1,0,8.0266771,8.0266771,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,7,1,1,0,0,9,1,3,0,144,-68738.867,0,0,0,1295.9493 -6358,7820,14111,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.5683985,8.5458574,6.4872537,0,0,-1120.1047,0,2,2,2019,11,0,42,44,1,0,0,14.845155,14.845155,0,0,0,0,0,0,0,0,2.0642943,6.9579182,55.12,42.1,-9,-9,8.333333333333334,1,1,0,0,8,11,5,0,519,1084643.9,1092659.3,219763.58,0,2508.4417 -6359,7821,14112,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,3.4095089,3.6444728,0,0,-1011.938,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.494576,3.5475988,28.18,41.09,-9,-9,0,1,1,0,0,0,6,2,1,432,317868.78,0,0,0,763.41687 -6360,7822,14113,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.49487,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,30.45,64.19,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1615,64683.074,0,0,0,1399.1639 -6360,7823,14114,-9,14113,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1049.4915,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,5,1,1,0,0,0,4,1,1,358,423167.34,0,0,0,1136.7607 -6361,7824,14115,14116,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,9.2845335,9.2473907,0,36,0,26.766718,0,-9,-9,2019,8,0,42,42,1,0,0,38.404945,38.404945,0,0,0,0,0,1,1,0,5.0195398,0,52.39,45.21,54.3,42.49,6.666666666666667,1,1,0,0,10,1,5,1,1121.5,183583.52,585685.44,187166.59,57853.473,4864.7588 -6361,7824,14116,14115,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,36,0,70.432365,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.8411717,0,54.3,42.49,52.39,45.21,5,1,1,0,0,4,1,5,1,1121.5,183583.52,585685.44,187166.59,57853.473,4864.7588 -6362,7825,14117,-9,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,8.9448643,9.4415283,0,0,0,-1066.609,0,3,2,2019,9,1,35,40,1,1,0,26.908875,26.908875,0,0,0,0,0,0,0,0,4.1327577,0,53,40.54,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,1630,848524.63,653554.69,86309.617,7596.4297,3442.3423 -6363,7826,14118,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.386694,8.2992401,0,0,-1108.208,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1710072,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,517,229596.58,219176.88,0,0,1804.0466 -6364,7827,14119,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.1694441,8.0491571,0,0,0,-798.19305,0,3,1,2019,6,0,40,43,1,0,0,10.699452,10.699452,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,464,113937.34,124476.22,72953.438,93435.188,1649.9115 -6365,7828,14120,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.291048,8.363759,0,1,-3,-166.33186,0,1,1,2019,6,0,38,38,1,0,0,12.488619,12.488619,0,0,0,0,0,0,0,0,2.9945257,0,57.06,57.76,48,57,8.333333333333334,1,1,0,0,4,9,4,0,368,-433493.03,0,0,0,1426.9993 -6366,7829,14121,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.6023002,7.9221706,0,0,0,-1012.8506,0,3,2,2019,13,2,48,40,1,2,0,4.7699189,4.7699189,0,0,0,0,2,0,0,0,7.8310046,0,48.99,49.19,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,126,526734.38,34272.207,529898.06,32290.346,2865.835 -6367,7830,14122,-9,14126,14123,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1157.3474,-9,1,1,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 -6367,7830,14123,14126,-9,-9,1,1,46,0,3,0,1,1,-9,0,5,8.8106356,8.6118526,0,25,-1,-78.498535,0,2,2,2019,13,3,50,55,1,3,0,14.71708,14.71708,0,0,0,0,0,1,1,0,7.0298619,0,41.2,62.39,45.97,51.9,8.333333333333334,1,1,0,0,6,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 -6367,7830,14124,-9,14126,14123,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.936,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 -6367,7830,14125,-9,14126,14123,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.55878,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 -6367,7830,14126,14123,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.5413537,7.4702463,0,25,1,-58.461216,0,1,1,2019,9,0,20,10,1,0,0,14.172176,14.172176,0,0,0,0,0,1,1,0,3.7813904,0,45.97,51.9,41.2,62.39,8.333333333333334,1,1,0,0,4,12,3,0,459.39999,370078.69,247124.95,309994.91,95558.563,4342.7134 -6368,7831,14127,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1047.3364,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.21048076,0,56.67,53.83,-9,-9,10,1,1,0,0,0,8,1,0,138,102750.13,0,186347.52,0,983.03833 -6369,7832,14128,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.0279727,5.9717617,0,0,-1044.6212,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2408419,39.44,41.83,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,382,280364.31,275292.28,0,0,934.24347 -6370,7833,14129,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7804632,8.3593922,0,0,0,-982.40594,0,1,1,2019,10,0,35,35,1,0,1,15.660574,15.660574,0,0,0,0,0,0,0,0,4.4309535,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,8,5,1,167,287819.06,0,0,0,2249.895 -6371,7834,14130,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.1633396,7.7163286,0,0,-956.90161,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0987058,7.7280684,54.66,47.77,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,131,102183.12,0,0,0,2608.2126 -6372,7835,14131,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.969902,9.0963774,0,0,0,-1027.8334,0,3,2,2019,9,3,50,37,1,3,0,14.315118,14.315118,0,0,0,0,0,1,1,0,0,0,42.73,52.62,-9,-9,10,1,1,0,0,8,1,5,1,566,262630.75,370021.28,258625.03,62383.711,2604.7173 -6373,7836,14132,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.5731349,7.6058064,0,0,-1004.8668,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.5829418,7.5646472,46.4,57.35,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,737,1108051.5,630684.19,426364.63,0,1191.1344 -6374,7837,14133,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,0,6.3434086,6.2893529,0,0,-929.97083,1,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.2691884,0,44.19,56.73,-9,-9,8.333333333333334,2,3,0,0,7,1,2,0,1728,-300471.19,0,0,0,924.39935 -6375,7838,14134,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,8.3142271,8.1662493,0,0,0,-1019.8218,0,1,3,2019,14,2,45,44,1,2,0,9.0593824,9.0593824,0,0,0,0,0,0,0,0,0,0,43.68,40.84,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,851,-39926.93,11978.314,0,0,1115.2551 -6375,7839,14135,-9,14134,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.8625,-9,3,-9,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,39.1,39.93,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,126,-25429.947,0,0,0,0 -6375,7840,14136,-9,14134,-9,1,1,29,0,0,0,2,2,-9,0,5,8.4126654,8.576231,0,0,0,-1095.5673,0,3,-9,2019,13,1,37,60,1,1,1,15.127227,15.127227,0,0,0,0,0,0,0,0,0,0,38.94,42.9,-9,-9,5,1,1,0,0,7,2,5,0,1798,-84807.797,0,0,0,1459.4497 -6376,7841,14137,14138,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.5379715,6.3075223,59,3,24.524363,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,3.0137954,0,20.52981,0,1,1,0,5.4527407,6.1092391,54.2,57.49,62.18,36.18,10,1,1,0,0,6,10,2,1,808,948712.13,205345.94,470457.16,0,1399.8352 -6376,7841,14138,14137,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.2905936,6.6062274,59,-3,-11.095588,0,3,-9,2019,10,1,0,0,4,1,0,0,0,1,1.8145854,0,17.215731,0,1,1,0,.091886669,6.2717466,62.18,36.18,54.2,57.49,8.333333333333334,1,1,0,0,6,10,2,1,808,948712.13,205345.94,470457.16,0,1399.8352 -6377,7842,14139,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,7.5748777,8.0056047,0,0,0,-1008.0505,0,3,3,2019,6,0,70,70,1,0,0,3.2258515,3.2258515,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,6,13,3,1,702,321825.72,299487.97,3707.0615,354.56769,1025.7488 -6378,7843,14140,14141,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.9793262,7.0188742,39,-1,-20.925304,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,1.9281425,0,2,1,1,0,2.1569822,7.1082325,48.28,60.18,57.06,57.76,0,1,1,0,0,0,12,4,1,604.5,1149443,593194.38,356667.25,0,4572.7422 -6378,7843,14141,14140,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.3809109,8.3929796,5,1,91.406235,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,4.8288221,8.4176245,57.06,57.76,48.28,60.18,10,1,1,0,0,0,12,4,1,604.5,1149443,593194.38,356667.25,0,4572.7422 -6378,7844,14142,-9,14140,14141,1,0,30,0,0,0,1,1,-9,0,5,8.3664246,8.3080683,0,0,0,-1031.1917,0,3,1,2019,14,3,35,47,1,3,0,13.584798,13.584798,0,0,0,0,5.48,1,1,0,0,0,39.79,63.29,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,1965,307234.69,-7171.5786,202755.14,0,1272.4363 -6379,7845,14143,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-973.47107,0,3,-9,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,36.02,22.8,-9,-9,0,4,2,1,1,0,9,1,0,399,282908.81,0,0,0,572.1911 -6380,7846,14144,-9,14145,-9,1,1,51,0,0,0,2,2,-9,0,4,8.4394836,8.0116014,0,0,0,-971.24908,0,3,3,2019,9,0,35,37,1,1,0,12.010379,12.010379,0,0,0,0,0,1,1,0,5.3799276,0,53,55,-9,-9,8,1,1,0,0,1,8,4,0,3039,-93416.32,16719.221,258214.17,79301.938,2255.6008 -6380,7847,14145,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-998.24866,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,4.8516712,1.193276,16.704178,0,1,1,0,0,0,35.69,33.88,-9,-9,0,1,1,0,0,0,8,1,0,1262,-8708.9688,0,283097.66,0,1043.8784 -6381,7848,14146,14147,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,8.0959349,7.9318042,0,20,-16,-54.761852,0,3,2,2019,11,0,50,50,1,0,0,7.1323223,7.1323223,0,0,0,0,0,1,1,0,0,0,37.98,58.08,55.53,51.55,8.333333333333334,2,3,0,0,6,10,4,1,1215,1276029.5,896365.13,232283.88,48026.293,3301.5403 -6381,7848,14147,14146,-9,-9,1,1,56,0,2,0,2,2,-9,0,3,8.6620302,8.7260618,0,20,16,-13.366784,-9,3,2,2019,6,0,66,0,1,0,0,11.480106,11.480106,0,0,0,0,0,1,1,0,0,0,55.53,51.55,37.98,58.08,6.666666666666667,1,1,0,0,11,10,4,1,1215,1276029.5,896365.13,232283.88,48026.293,3301.5403 -6382,7849,14148,14149,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1238871,8.0722027,0,2,-2,27.951933,0,-9,-9,2019,10,2,39,39,1,2,0,8.7694569,8.7694569,0,0,0,0,0,0,0,0,0,0,42.58,58.53,37.61,56.99,6.666666666666667,1,1,0,0,2,9,5,0,721.5,-8450.8994,32092.787,307266.03,202296.72,3071.5923 -6382,7849,14149,14148,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.4781466,8.3348808,0,2,2,41.943893,0,-9,-9,2019,17,6,38,33,1,6,0,15.595343,15.595343,0,0,0,0,0,0,0,0,4.4048672,0,37.61,56.99,42.58,58.53,8.333333333333334,1,1,0,0,3,9,5,0,721.5,-8450.8994,32092.787,307266.03,202296.72,3071.5923 -6383,7850,14150,-9,14153,14151,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.76239,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 -6383,7850,14151,14153,-9,-9,1,1,57,0,2,0,3,3,-9,0,2,8.3491716,8.460886,0,22,9,138.61673,0,3,3,2019,22,9,49,55,1,9,0,9.9563742,9.9563742,0,0,0,0,0,1,1,0,0,0,26.19,39.5,45.34,53.64,3.333333333333333,1,1,0,0,12,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 -6383,7850,14152,-9,14153,14151,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.92352,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 -6383,7850,14153,14151,-9,-9,1,0,48,0,2,0,2,2,-9,1,3,6.5210338,7.0138087,0,22,0,-54.192043,0,1,1,2019,10,0,19,16,1,0,0,4.034843,4.034843,0,0,0,0,0,1,1,0,0,0,45.34,53.64,26.19,39.5,8.333333333333334,4,2,0,0,9,9,3,1,267.75,-146054.34,44978.918,0,0,2644.189 -6384,7851,14154,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.3212514,7.6242208,9,5,86.361435,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,3.9748688,7.5537858,57.16,56.15,59.43,58.05,10,1,1,0,0,2,4,3,1,221,736597.38,201447.91,141711.39,0,476.76984 -6384,7852,14155,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.5940518,7.5816722,9,-5,-102.70029,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.6847219,7.5851941,59.43,58.05,57.16,56.15,10,1,1,0,0,6,4,3,1,938,-21274.779,-88084.844,128560.68,9176.3447,991.65625 -6385,7853,14156,-9,14158,-9,1,0,15,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.19635,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,1,491.66666,-76113.25,-13162.057,72396.672,48437.734,2295.1499 -6385,7853,14157,-9,14158,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.417,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,1,491.66666,-76113.25,-13162.057,72396.672,48437.734,2295.1499 -6385,7853,14158,-9,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,7.9369817,7.7607441,0,0,0,-930.50549,-9,2,3,2019,11,0,30,0,1,0,0,13.218225,13.218225,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,7,12,2,1,491.66666,-76113.25,-13162.057,72396.672,48437.734,2295.1499 -6386,7854,14159,14160,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,0,0,0,29,2,0,0,3,3,2019,33,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.68,21.22,62.36,33.77,1.666666666666667,2,3,0,0,0,8,1,0,511,94284.031,0,0,0,1486.5878 -6386,7854,14160,14159,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,29,-2,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,62.36,33.77,24.68,21.22,8.333333333333334,2,3,0,0,0,8,1,0,511,94284.031,0,0,0,1486.5878 -6386,7855,14161,-9,14160,14159,1,1,26,0,0,0,1,1,-9,0,4,7.8041358,7.9558129,0,0,0,-974.70868,0,2,2,2019,12,0,42,42,1,0,1,8.7951488,8.7951488,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,2,3,0,0,5,8,4,0,417,89033.867,-4406.3872,0,0,746.11371 -6386,7856,14162,-9,14160,14159,1,1,24,0,0,0,2,2,-9,0,5,7.7130237,7.6985488,0,0,0,-1022.917,0,2,2,2019,8,0,30,16,1,0,1,8.8111057,8.8111057,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,6,8,3,0,2522,294065.88,38896.383,0,0,484.23834 -6386,7857,14163,-9,14160,14159,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1061.3196,1,2,2,2019,11,0,0,56,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,8,1,0,1153,0,0,0,0,839.24261 -6387,7858,14164,14165,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,64,-1,124.05557,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0113869,0,59.9,48.18,62.27,32.41,8.333333333333334,1,1,0,0,0,7,3,1,464,1216116,426757.53,600633.75,0,2714.7603 -6387,7858,14165,14164,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.5832696,7.4951787,64,1,43.902164,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3711638,7.4666352,62.27,32.41,59.9,48.18,8.333333333333334,1,1,0,0,0,7,3,1,464,1216116,426757.53,600633.75,0,2714.7603 -6388,7859,14166,14167,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.1426783,8.0392675,33,4,59.060925,0,3,3,2019,6,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,4.1904821,8.5035677,57.33,53.46,41,56.99,8.333333333333334,1,1,1,0,7,8,5,1,827,1432801,901715.44,551170.38,0,5985.8184 -6388,7859,14167,14166,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.7518187,9.5462427,0,26,-4,-2.1745203,0,1,1,2019,12,0,45,50,1,0,0,31.441133,31.441133,0,0,0,0,0,0,0,0,1.354471,0,41,56.99,57.33,53.46,6.666666666666667,1,1,0,0,8,8,5,1,827,1432801,901715.44,551170.38,0,5985.8184 -6389,7860,14168,14169,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.1563625,8.1599293,42,2,65.751312,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0870066,8.2687712,41.17,59.31,47.1,56.62,10,1,1,0,0,4,1,3,1,816,1543487.4,564787.75,295104.25,0,2976.6138 -6389,7860,14169,14168,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,42,-2,50.956524,0,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.1,56.62,41.17,59.31,10,1,1,0,0,0,1,3,1,816,1543487.4,564787.75,295104.25,0,2976.6138 -6390,7861,14170,14171,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,18,-1,-51.734234,0,2,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.2,24.76,53.92,34.27,5,1,1,1,0,4,4,4,1,413,228277.59,166767.34,180501.5,142056.13,3040.8184 -6390,7861,14171,14170,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4790525,8.3046961,0,18,1,-61.306656,0,2,2,2019,11,0,43,48,1,0,0,12.338108,12.338108,0,0,0,0,7,1,1,0,0,0,53.92,34.27,32.2,24.76,6.666666666666667,1,1,0,0,12,4,4,1,413,228277.59,166767.34,180501.5,142056.13,3040.8184 -6391,7862,14172,14173,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6781702,8.3509855,0,6,0,123.79988,0,1,2,2019,7,1,42,42,1,1,0,15.464231,15.464231,0,0,0,0,0,0,0,0,9.264204,0,55.19,54.26,53,54,8.333333333333334,1,1,0,0,7,7,5,1,534.5,1283683.8,737551,326314.88,190605.97,11482.576 -6391,7862,14173,14172,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.820467,9.4965391,0,6,0,-9.3961821,0,2,1,2019,9,0,37,40,1,1,0,55.612545,55.612545,0,0,0,0,0,0,0,0,.95397097,0,53,54,55.19,54.26,8,1,1,0,0,1,7,5,1,534.5,1283683.8,737551,326314.88,190605.97,11482.576 -6391,7863,14174,-9,14172,14173,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-834.43872,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,192,-395660.16,0,0,0,-477.71304 -6392,7864,14175,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.9245644,6.9805927,0,0,-1113.104,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.9930028,7.1355147,50.57,55.02,-9,-9,10,1,1,0,0,0,5,2,1,1172,64935.031,5303.7134,262341.91,0,766.36603 -6393,7865,14176,-9,14178,-9,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.7422,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,1,0,1321.25,36837.418,0,0,0,1790.0559 -6393,7865,14177,-9,14178,-9,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-997.67517,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,1,0,1321.25,36837.418,0,0,0,1790.0559 -6393,7865,14178,-9,-9,-9,1,0,23,2,3,0,2,2,-9,0,3,0,0,0,0,0,-877.03442,-9,-9,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,8.333333333333334,1,1,0,1,3,12,1,0,1321.25,36837.418,0,0,0,1790.0559 -6393,7865,14179,-9,14178,-9,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-891.18848,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,1,0,1321.25,36837.418,0,0,0,1790.0559 -6394,7866,14180,14181,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.862216,5.7563248,44,-1,16.305391,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1921716,6.0728788,57,45.43,54.69,57.47,8.333333333333334,1,1,0,0,0,10,4,1,3541,1605900.3,940780.13,325894.06,0,4366.6021 -6394,7866,14181,14180,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.5301085,8.2468901,44,1,18.996443,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.7683396,8.2608185,54.69,57.47,57,45.43,8.333333333333334,1,1,0,0,0,10,4,1,3541,1605900.3,940780.13,325894.06,0,4366.6021 -6395,7867,14182,14185,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.7775288,8.9140272,0,11,0,-36.038502,0,2,1,2019,8,0,55,47,1,0,0,16.600155,16.600155,0,0,0,0,0,1,1,0,4.286509,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 -6395,7867,14183,-9,14185,14182,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.32532,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 -6395,7867,14184,-9,14185,14182,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.34772,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 -6395,7867,14185,14182,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,0,0,0,11,0,-109.98435,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,3,7,4,1,980.75,18559.43,78020.992,0,0,3188.0159 -6396,7868,14186,14187,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.449327,7.2248764,0,26,-6,-20.722435,0,2,2,2019,10,2,20,32,1,2,0,9.4070787,9.4070787,0,0,0,0,0,0,0,0,0,0,42.28,45.23,38.4,36.42,10,2,3,0,0,10,8,4,0,290,91542.922,219575.56,269224.59,86957.391,2219.5586 -6396,7868,14187,14186,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.0653963,7.919878,0,26,6,57.441719,0,2,2,2019,16,6,35,35,1,6,0,10.422756,10.422756,0,0,0,0,2,0,0,0,0,0,38.4,36.42,42.28,45.23,8.333333333333334,2,3,0,0,11,8,4,0,290,91542.922,219575.56,269224.59,86957.391,2219.5586 -6397,7869,14188,14190,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,5.7865238,5.8851695,0,14,-1,-61.313053,0,2,1,2019,10,2,30,30,1,2,0,1.1343832,1.1343832,0,0,0,0,0,1,1,0,9.6046829,0,46.16,53.09,52,55,10,2,3,0,0,6,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 -6397,7869,14189,-9,14188,14190,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.0015,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 -6397,7869,14190,14188,14193,14192,1,1,44,0,2,0,1,1,-9,0,4,9.6002073,9.4004793,0,2,1,21.325912,-9,2,1,2019,9,0,60,0,1,1,0,26.594965,26.594965,0,0,0,0,0,1,1,0,0,0,52,55,46.16,53.09,7,2,3,0,0,1,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 -6397,7869,14191,-9,14188,14190,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.16,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,1,813.5,634121.38,343988.72,565736.5,206413.28,9569.7627 -6397,7870,14192,14193,-9,-9,1,1,76,0,2,0,1,1,-9,0,3,0,0,0,2,9,0,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,8.6760931,0,54,46,51,46,7,4,6,0,0,0,8,1,1,641.5,-219233.84,0,0,0,3228.9165 -6397,7870,14193,14192,-9,-9,1,0,67,0,2,0,2,2,-9,0,3,0,0,0,2,0,0,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.5223217,0,51,46,54,46,7,4,6,0,0,0,8,1,1,641.5,-219233.84,0,0,0,3228.9165 -6398,7871,14194,-9,14196,14197,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1059.9688,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,53.31,-9,-9,10,2,3,0,0,0,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 -6398,7871,14195,-9,14196,14197,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.4976,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 -6398,7871,14196,14197,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,29,-3,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.29,45.7,48.06,56.15,10,2,3,1,0,0,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 -6398,7871,14197,14196,-9,-9,1,1,57,0,1,0,3,3,-9,0,4,0,0,0,29,3,0,0,3,3,2019,6,0,0,24,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,56.15,50.29,45.7,8.333333333333334,2,3,1,0,4,6,1,1,1008,1142915.3,601911.44,515104.94,91017.984,755.75262 -6398,7872,14198,-9,14196,14197,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-929.18549,-9,2,3,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,65.06,41.58,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,201,29505.461,0,0,0,0 -6399,7873,14199,14200,-9,-9,1,0,41,1,2,0,2,2,-9,0,3,6.7636914,6.5053773,0,18,-4,40.916756,0,-9,-9,2019,20,6,10,10,1,6,0,7.5228267,7.5228267,0,0,0,0,0,1,0,1,0,0,35.86,58.14,62.49,55.09,5,1,1,0,1,8,7,3,0,241,343700.94,0,467633.25,81816.352,2971.6812 -6399,7873,14200,14199,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,7.9206557,7.7094231,0,7,4,113.62832,0,-9,-9,2019,4,0,28,17,1,0,0,8.8822918,8.8822918,0,0,0,0,0,1,0,1,0,0,62.49,55.09,35.86,58.14,6.666666666666667,1,1,0,0,12,7,3,0,241,343700.94,0,467633.25,81816.352,2971.6812 -6399,7874,14201,-9,14199,14200,1,0,21,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1137.1125,0,2,2,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,1,0,1,7,1,0,362,205636.94,0,0,0,214.00751 -6399,7874,14202,-9,14201,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-906.95435,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,1,0,362,205636.94,0,0,0,214.00751 -6400,7875,14203,14204,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.1770229,8.7297649,0,2,7,-67.09063,-9,-9,-9,2019,7,0,45,0,1,0,0,10.867372,10.867372,0,0,0,0,0,0,0,0,0,0,54.1,59.11,33.23,45.54,8.333333333333334,1,1,0,0,4,2,4,0,211.5,365400.78,95424.039,0,0,2503.3252 -6400,7875,14204,14203,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,2,-7,-78.978294,-9,2,2,2019,23,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,33.23,45.54,54.1,59.11,1.666666666666667,1,1,0,1,2,2,4,0,211.5,365400.78,95424.039,0,0,2503.3252 -6401,7876,14205,14206,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,6,4,-55.191444,0,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.22,20.96,54,54,5,1,1,0,0,0,9,4,1,450,337739.03,116595.98,127493.95,8597.9141,3513.6382 -6401,7876,14206,14205,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.9530506,9.0293217,0,6,-4,-177.64746,-9,-9,-9,2019,9,0,36,0,1,0,0,20.16753,20.16753,0,0,0,0,0,1,1,0,0,0,54,54,43.22,20.96,8,1,1,0,0,1,9,4,1,450,337739.03,116595.98,127493.95,8597.9141,3513.6382 -6401,7877,14207,-9,14205,14206,1,0,38,0,0,0,2,2,-9,0,4,8.3283672,7.8933387,0,0,0,-987.99646,0,2,2,2019,11,0,45,36,1,1,1,14.371892,14.371892,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,9,4,1,810,138232.91,51377.934,156909.13,40245.371,1268.0127 -6402,7878,14208,14209,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,6,-2,-96.046013,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,4.5607657,0,0,1,1,0,0,0,44.56,25.76,55.34,54.26,1.666666666666667,1,1,0,0,3,10,2,1,929.5,-85848.125,0,80631.523,0,1344.8524 -6402,7878,14209,14208,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,4.2897539,4.1740994,6,2,-85.783203,0,-9,-9,2019,6,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7128358,3.6472933,55.34,54.26,44.56,25.76,8.333333333333334,1,1,0,0,6,10,2,1,929.5,-85848.125,0,80631.523,0,1344.8524 -6403,7879,14210,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.2675591,6.4747086,0,0,-1076.1217,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3677549,51.84,19.52,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,858,-1413.4767,38458.504,364716.47,0,1515.1693 -6404,7880,14211,-9,14214,14212,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.6474,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 -6404,7880,14212,14214,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.8216448,8.7394285,0,15,2,-217.45879,0,2,2,2019,11,1,40,-9,1,1,0,22.758804,22.758804,0,0,0,0,0,1,1,0,0,0,38.7,53.66,44.87,48.26,10,1,1,0,0,12,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 -6404,7880,14213,-9,14214,14212,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1693,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 -6404,7880,14214,14212,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.5787563,7.2583666,0,15,-2,-84.326118,0,2,3,2019,17,6,16,16,1,6,0,10.061421,10.061421,0,0,0,0,0,1,1,0,0,0,44.87,48.26,38.7,53.66,8.333333333333334,1,1,0,0,12,1,4,1,405.5,33720.797,-24242.602,271812.56,148703.58,4762.9473 -6405,7881,14215,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,5.9432964,6.0048399,0,0,-1060.4894,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9474521,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,565,151713.7,137392.67,248655.06,0,1342.416 -6406,7882,14216,14218,-9,-9,1,0,36,3,3,0,1,1,-9,0,5,8.6518078,8.7944107,0,4,-7,7.6953731,0,-9,-9,2019,7,0,40,12,1,0,0,18.581768,18.581768,0,0,0,0,0,1,1,0,0,0,43.31,48.81,60.02,56.42,5,3,4,0,0,12,8,5,1,423.66666,1305326.8,689330.63,685833.5,293690.81,4423.4443 -6406,7882,14217,-9,14216,14218,1,1,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.605,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,5,1,423.66666,1305326.8,689330.63,685833.5,293690.81,4423.4443 -6406,7882,14218,14216,-9,-9,1,1,43,3,3,0,1,1,-9,0,5,8.731226,8.5981045,0,4,7,-56.156281,0,-9,-9,2019,5,0,42,43,1,0,0,20.479837,20.479837,0,0,0,0,0,1,1,0,0,0,60.02,56.42,43.31,48.81,1.666666666666667,3,4,0,0,12,8,5,1,423.66666,1305326.8,689330.63,685833.5,293690.81,4423.4443 -6407,7883,14219,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1063.829,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.51,50.95,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,300,20100.348,0,0,0,561.69324 -6408,7884,14220,14221,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,55,1,0,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,46.39,60.99,37.9,19.37,6.666666666666667,1,1,0,0,0,6,2,1,328.5,-92546.75,0,116364.45,0,1267.2109 -6408,7884,14221,14220,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,55,-1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.9,19.37,46.39,60.99,6.666666666666667,1,1,0,0,0,6,2,1,328.5,-92546.75,0,116364.45,0,1267.2109 -6408,7885,14222,-9,14221,14220,1,1,42,0,0,0,2,2,-9,0,4,8.2576532,8.0856524,0,0,0,-1102.6691,0,3,3,2019,8,0,40,40,1,0,0,10.494267,10.494267,0,0,0,0,0,1,1,0,0,0,64.67,41.86,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,237,-28456.49,61154.879,89388.797,-10508.612,1007.1828 -6409,7886,14223,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,5.2086229,5.4649353,0,0,-1075.6625,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,1.5313241,32.012222,0,0,1,1,0,0,5.2440858,58.35,15.54,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1203,-365663.84,41916.527,0,0,1528.0356 -6410,7887,14224,14225,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.5045428,5.3952298,48,-2,-60.07716,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3886428,56.37,40.62,61.43,43.34,8.333333333333334,1,1,0,0,6,2,2,1,329.5,167305.41,275700.06,197123.45,0,1977.2054 -6410,7887,14225,14224,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.1656919,7.3480711,48,2,-116.6371,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1759343,61.43,43.34,56.37,40.62,6.666666666666667,1,1,0,0,6,2,2,1,329.5,167305.41,275700.06,197123.45,0,1977.2054 -6411,7888,14226,14227,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2748365,8.1299505,0,9,6,8.4312897,0,3,3,2019,10,0,40,40,1,1,0,12.067227,12.067227,0,0,0,0,0,0,0,0,0,0,50,49,51.77,58.57,8.333333333333334,1,1,0,0,10,9,4,1,718.5,734220.75,349836.13,178883.86,0,2672.8936 -6411,7888,14227,14226,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4461026,7.5094318,0,9,-6,110.01918,0,-9,-9,2019,10,0,20,10,1,0,0,12.330183,12.330183,0,0,0,0,0,0,0,0,2.9843163,0,51.77,58.57,50,49,8.333333333333334,1,1,0,0,9,9,4,1,718.5,734220.75,349836.13,178883.86,0,2672.8936 -6412,7889,14228,14229,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,8.5549574,8.1750336,50,3,97.796593,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.692471,8.2831097,63.06,29.54,51,46,8.333333333333334,1,1,0,0,3,8,5,1,689,2079680.3,1348020.3,467603.63,0,5707.3281 -6412,7889,14229,14228,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.3087358,8.63311,7,-3,-57.251659,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6514921,8.5519733,51,46,63.06,29.54,7,1,1,0,0,0,8,5,1,689,2079680.3,1348020.3,467603.63,0,5707.3281 -6413,7890,14230,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.1275482,8.1138964,0,0,0,-848.07141,0,-9,-9,2019,10,1,43,40,1,1,0,9.2388248,9.2388248,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,809,-21571.639,22371.156,0,0,826.06714 -6414,7891,14231,-9,14233,14232,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-893.07776,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,473,322220.44,261629.7,233686.27,116267.47,3192.9031 -6414,7891,14232,14233,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6594934,8.568697,0,8,8,-23.857523,0,-9,-9,2019,8,0,55,60,1,0,0,10.397356,10.397356,0,0,0,0,0,1,1,0,2.4301975,0,43.55,51.57,48.96,51.88,6.666666666666667,1,1,0,0,10,2,4,1,473,322220.44,261629.7,233686.27,116267.47,3192.9031 -6414,7891,14233,14232,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.6722517,7.5859933,0,8,-8,-113.7009,0,-9,-9,2019,8,0,20,20,1,0,0,10.466489,10.466489,0,0,0,0,0,1,1,0,2.5039883,0,48.96,51.88,43.55,51.57,6.666666666666667,1,1,0,0,10,2,4,1,473,322220.44,261629.7,233686.27,116267.47,3192.9031 -6415,7892,14234,14235,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,6.6918993,6.7681618,0,6,-1,-84.129913,0,2,2,2019,7,0,25,22,1,0,0,3.9152372,3.9152372,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,6,11,4,1,587.5,213326.89,564225,94801.977,36280.133,2593.1558 -6415,7892,14235,14234,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.690382,8.658349,0,6,1,-16.196173,0,2,2,2019,7,0,50,37,1,0,0,17.453163,17.453163,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,7,11,4,1,587.5,213326.89,564225,94801.977,36280.133,2593.1558 -6415,7893,14236,-9,14234,14235,1,0,29,0,0,0,1,1,-9,0,3,7.4152265,7.2749414,0,0,0,-1077.0442,0,2,2,2019,6,0,33,38,1,0,1,4.3616829,4.3616829,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,195,193178.42,21946.646,0,0,360.80432 -6415,7894,14237,-9,14234,14235,1,0,25,0,0,0,2,2,-9,0,5,7.9589047,8.3472652,0,0,0,-1047.1902,0,2,2,2019,8,1,37,38,1,1,1,11.709481,11.709481,0,0,0,0,0,0,0,0,0,0,57.38,41.02,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,692,158675.3,30402.996,0,0,1858.2688 -6416,7895,14238,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.9453683,7.7866335,0,0,-777.67645,0,-9,-9,2019,25,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,7.3542709,26.23,27.07,-9,-9,5,1,1,0,0,0,2,3,1,912,744869.31,152284.31,277012.91,0,2770.9194 -6417,7896,14239,14240,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.4264154,9.4051971,0,11,-2,33.220158,0,2,2,2019,12,0,47,0,1,0,0,37.381626,37.381626,0,0,0,0,0,0,0,0,3.2815893,0,59.04,51.29,57.73,54.53,8.333333333333334,1,1,0,0,11,11,5,1,1028.5,745772.31,298761.44,339355.75,77345.453,5724.8374 -6417,7896,14240,14239,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,6.9448452,6.7664809,0,11,2,-42.52087,0,-9,-9,2019,6,0,32,32,1,0,0,3.3153639,3.3153639,0,0,0,0,0,0,0,0,7.6899185,0,57.73,54.53,59.04,51.29,8.333333333333334,1,1,0,0,11,11,5,1,1028.5,745772.31,298761.44,339355.75,77345.453,5724.8374 -6418,7897,14241,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-966.4826,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.84,29.24,-9,-9,0,1,1,0,1,0,11,1,1,1007,52123.18,0,0,0,494.16974 -6419,7898,14242,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.7261128,7.8127379,0,0,-1060.7322,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8473258,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,8,9,3,0,2808,1432831.6,389371.72,149515.28,0,1831.8507 -6420,7899,14243,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7594576,7.6292386,0,0,-1008.5179,-9,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,8.07057,56.75,36.33,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1782,805843.13,504824.25,108548.62,0,1697.4875 -6421,7900,14244,-9,14246,14247,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1070.7673,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 -6421,7900,14245,-9,14246,14247,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1057.2457,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 -6421,7900,14246,14247,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.5207839,7.6602168,0,24,-1,-2.0096457,0,2,2,2019,6,0,18,18,1,0,0,11.420065,11.420065,0,0,0,0,2,1,1,0,0,0,56.23,52.63,56.5,48.33,8.333333333333334,1,1,0,0,13,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 -6421,7900,14247,14246,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.9667549,9.0162296,0,24,1,15.18236,0,2,3,2019,6,0,45,45,1,0,0,30.561422,30.561422,0,0,0,0,2,1,1,0,0,0,56.5,48.33,56.23,52.63,8.333333333333334,1,1,0,0,13,9,5,1,1124.75,826082.25,314761.94,618445.25,149599.41,4325.0488 -6422,7901,14248,14249,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.0830278,8.2244053,0,7,3,10.57883,0,-9,-9,2019,14,2,44,44,1,2,0,10.733314,10.733314,0,0,0,0,0,1,1,0,0,0,40.21,54.63,51.73,58.82,3.333333333333333,1,1,0,0,8,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 -6422,7901,14249,14248,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.5172606,7.4881887,0,7,-3,39.741917,0,2,2,2019,11,0,22,22,1,0,0,10.238017,10.238017,0,0,0,0,0,1,1,0,0,0,51.73,58.82,40.21,54.63,6.666666666666667,1,1,0,0,8,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 -6422,7901,14250,-9,14249,14248,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1006.0663,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 -6422,7901,14251,-9,14249,14248,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.89832,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,338.75,578007,644492.75,222506.22,77282.117,2589.3232 -6423,7902,14252,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.3459873,8.5571384,6.5164075,0,0,-841.91376,0,2,2,2019,21,9,38,37,1,9,0,16.256207,16.256207,0,0,0,0,0,0,0,0,6.1625237,7.0810413,44.35,28.38,-9,-9,3.333333333333333,1,1,0,0,11,6,5,1,178,1194210.9,708116.94,228391.14,0,1912.4021 -6424,7903,14253,14254,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.4028072,8.8282967,5.6667275,34,5,89.147766,0,2,2,2019,12,0,44,44,1,0,0,13.293983,13.293983,0,0,0,0,0,0,0,0,.053899594,5.7466111,53.19,41.55,44.66,48.57,8.333333333333334,1,1,0,0,11,7,4,1,828,883163.44,71219.766,495113,0,2826.8032 -6424,7903,14254,14253,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.9099054,6.9367008,0,33,-5,19.707977,0,2,2,2019,18,5,18,16,1,5,0,6.4516845,6.4516845,0,0,0,0,0,0,0,0,0,0,44.66,48.57,53.19,41.55,6.666666666666667,1,1,0,0,9,7,4,1,828,883163.44,71219.766,495113,0,2826.8032 -6424,7904,14255,-9,14254,14253,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1029.8553,-9,3,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.122216,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,1,4,7,1,1,419,211743.03,0,0,0,938.06946 -6425,7905,14256,14257,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.5654669,6.0816116,49,-6,101.95921,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,8.1887226,6.4597998,60.52,30.51,45.45,27.87,8.333333333333334,1,1,0,0,0,9,2,1,395.5,633379.25,244738.97,187672.38,0,4341.2793 -6425,7905,14257,14256,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.0359888,6.0644979,49,6,61.234814,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.4311004,5.7690907,45.45,27.87,60.52,30.51,8.333333333333334,1,1,0,0,0,9,2,1,395.5,633379.25,244738.97,187672.38,0,4341.2793 -6426,7906,14258,-9,14259,14260,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2234,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 -6426,7906,14259,14260,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,8.3048983,8.2516222,0,11,1,-2.4079831,0,-9,-9,2019,10,0,38,38,1,0,0,13.09202,13.09202,0,0,0,0,7,1,1,0,0,0,56.47,51.02,60.29,52.11,6.666666666666667,1,1,0,0,13,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 -6426,7906,14260,14259,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.4824533,8.4718857,0,21,-1,-67.663399,0,2,3,2019,8,0,47,42,1,0,0,11.713095,11.713095,0,0,0,0,0,1,1,0,0,0,60.29,52.11,56.47,51.02,10,1,1,0,0,12,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 -6426,7906,14261,-9,14259,14260,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1035.0267,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,13,4,1,634.75,632659.88,177664.84,164345.73,34580.906,3923.4131 -6427,7907,14262,14263,-9,-9,1,0,36,0,0,0,3,3,-9,1,2,0,0,0,7,-12,74.394836,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,53.07,25.77,6.666666666666667,1,1,1,1,0,10,3,0,252,-139956.75,0,168826.91,64526.008,1926.3032 -6427,7907,14263,14262,-9,-9,1,1,48,0,0,0,3,3,-9,0,1,8.0814762,8.2044487,0,7,12,39.131371,0,-9,2,2019,15,5,39,39,1,5,0,9.4227514,9.4227514,0,0,0,0,0,1,1,0,0,0,53.07,25.77,43.95,53.15,8.333333333333334,1,1,0,1,9,10,3,0,252,-139956.75,0,168826.91,64526.008,1926.3032 -6428,7908,14264,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-882.9931,-9,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.36,32.24,-9,-9,3.333333333333333,1,1,1,1,0,2,1,0,1055,18413.857,0,0,0,2030.9099 -6429,7909,14265,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,7.4135051,7.2192206,0,0,-1005.0846,0,3,3,2019,6,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3811641,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,205,419596.94,374181.63,370160.34,0,242.24348 -6430,7910,14266,14267,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.7026539,8.7419968,0,24,-3,66.676682,0,1,1,2019,12,0,38,40,1,0,0,12.500308,12.500308,0,0,0,0,0,0,0,0,0,0,52.89,47.88,54.37,54.8,6.666666666666667,1,1,0,0,10,12,5,1,1686,413336.09,75201.438,259108.44,204336.66,5295.4844 -6430,7910,14267,14266,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.1788054,9.1973162,0,24,3,15.161659,0,1,1,2019,12,0,60,40,1,0,0,19.377333,19.377333,0,0,0,0,0,0,0,0,0,0,54.37,54.8,52.89,47.88,8.333333333333334,1,1,0,0,10,12,5,1,1686,413336.09,75201.438,259108.44,204336.66,5295.4844 -6430,7910,14268,-9,14266,14267,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1002.3978,-9,1,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.9398184,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1686,413336.09,75201.438,259108.44,204336.66,5295.4844 -6430,7911,14269,-9,14266,14267,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-945.17523,-9,1,1,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.8906801,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,187,0,0,0,0,-231.91219 -6431,7912,14270,-9,-9,-9,1,0,22,0,0,0,1,1,0,0,2,0,0,0,0,0,-1045.5092,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,14.5,0,0,0,0,0,48.1,36.6,-9,-9,6.666666666666667,1,1,0,0,3,6,1,0,1905,-132593.36,0,0,0,0 -6432,7913,14271,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.7340178,7.8413448,0,0,0,-995.57806,0,3,-9,2019,6,0,52,35,1,0,1,4.8724031,4.8724031,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,10,3,0,404,449029.09,0,0,0,551.02356 -6433,7914,14272,14273,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,4.7184625,5.0564165,7,5,67.364548,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9839382,4.6309338,59.53,56.44,52.75,29.83,10,1,1,0,0,0,7,2,1,491.5,345431.28,0,470506.5,0,1349.1166 -6433,7914,14273,14272,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,3.7968321,3.7625508,7,-5,16.771173,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.9293337,3.9862223,52.75,29.83,59.53,56.44,6.666666666666667,1,1,0,0,7,7,2,1,491.5,345431.28,0,470506.5,0,1349.1166 -6434,7915,14274,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-829.28076,0,-9,-9,2019,25,12,0,54,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,26.09,63.8,-9,-9,1.666666666666667,1,1,1,1,2,4,2,0,252,294055.31,0,0,0,0 -6435,7916,14275,14276,-9,-9,1,0,34,1,2,0,1,1,-9,0,2,0,0,0,17,0,-94.844147,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.56,37.59,54.1,59.11,6.666666666666667,1,1,0,0,4,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 -6435,7916,14276,14275,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,8.493515,8.2182465,0,17,0,-35.30146,0,1,1,2019,7,0,62,64,1,0,0,6.7842855,6.7842855,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.56,37.59,8.333333333333334,1,1,0,0,9,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 -6435,7916,14277,-9,14275,14276,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.9903,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 -6435,7916,14278,-9,14275,14276,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.0212,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,1115,23315.105,50836.035,147972.41,60218.57,1560.9005 -6436,7917,14279,14280,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4677544,8.3318129,0,7,-1,-25.379818,0,2,2,2019,6,0,39,37,1,0,0,12.801992,12.801992,0,0,0,0,0,0,0,0,4.5623813,0,47.13,48.65,54.38,30.71,1.666666666666667,1,1,0,0,12,11,4,1,642.5,73511.563,141841.77,0,0,3181.0928 -6436,7917,14280,14279,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,6.7342272,6.7190804,7,1,60.831856,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,0,0,0,7.6748776,6.5170188,54.38,30.71,47.13,48.65,5,1,1,0,1,10,11,4,1,642.5,73511.563,141841.77,0,0,3181.0928 -6437,7918,14281,-9,14282,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.1001,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1496.3334,-164878.02,0,0,0,1633.1222 -6437,7918,14282,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,5,6.9677858,7.1574936,0,0,0,-1044.916,0,-9,-9,2019,11,1,13,25,1,1,0,11.950037,11.950037,0,0,0,0,0,1,0,1,0,0,39.1,63.11,-9,-9,8.333333333333334,1,1,0,0,13,4,2,0,1496.3334,-164878.02,0,0,0,1633.1222 -6437,7918,14283,-9,14282,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-827.79303,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,1496.3334,-164878.02,0,0,0,1633.1222 -6438,7919,14284,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.8587728,7.0177264,0,0,-1015.4399,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.5637512,54.37,33.54,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,199,552312.19,0,392989.22,0,635.29425 -6439,7920,14285,-9,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,7.2842798,7.0828571,0,0,0,-1067.5248,0,-9,-9,2019,8,0,24,20,1,0,0,6.9319434,6.9319434,0,0,0,0,0,1,1,0,0,0,57.78,38.59,-9,-9,6.666666666666667,1,1,0,1,5,9,3,0,406,-269482.69,0,185143.66,11452.669,199.11041 -6439,7921,14286,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.6853428,8.9143534,0,0,0,-1076.3024,0,-9,-9,2019,23,7,60,62,1,7,0,9.9850245,9.9850245,0,0,0,0,27,1,1,0,0,0,28.73,42.47,-9,-9,5,1,1,0,1,4,9,4,0,167,219383.28,167181.63,126240.86,56332.242,2169.7852 -6440,7922,14287,-9,14289,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.4076,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,422.66666,-168205.8,-13184.079,0,0,2500.1125 -6440,7922,14288,-9,14289,-9,1,0,17,0,1,1,2,0,0,0,1,0,0,0,0,0,-927.43414,-9,2,-9,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,46.31,30.43,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,422.66666,-168205.8,-13184.079,0,0,2500.1125 -6440,7922,14289,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,5.7897968,5.8407383,0,0,-938.89581,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,5.7943301,0,38.5,16.75,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,422.66666,-168205.8,-13184.079,0,0,2500.1125 -6440,7923,14290,-9,14289,-9,1,1,20,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1083.3718,0,2,-9,2019,13,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,30.93,57.25,-9,-9,8.333333333333334,1,1,0,0,2,4,1,0,203,0,0,0,0,391.57449 -6441,7924,14291,14293,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.7947545,8.0355539,0,10,1,-8.338809,0,2,2,2019,10,1,37,14,1,1,0,8.1669559,8.1669559,0,0,0,0,0,1,1,0,0,0,45.91,59.89,38.01,55.39,6.666666666666667,1,1,0,0,11,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 -6441,7924,14292,-9,14291,14293,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.92291,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 -6441,7924,14293,14291,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,7.6731625,7.9012513,0,10,-1,.83015883,0,1,2,2019,10,0,95,97,1,0,0,1.6673828,1.6673828,0,0,0,0,0,1,1,0,0,0,38.01,55.39,45.91,59.89,10,1,1,0,0,13,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 -6441,7924,14294,-9,14291,14293,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.85193,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,1,1064,138766.69,51402.328,390681.06,194182.09,2788.0989 -6442,7925,14295,14296,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,6.4374509,6.5234017,8,3,62.792442,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.8224673,6.4925175,43.11,42.82,53.31,22.45,0,1,1,0,0,0,1,2,1,532.5,643762.94,474404.19,194314.53,0,1087.7695 -6442,7925,14296,14295,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,6.1213241,5.9959483,8,-3,18.63895,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,3.9191194,6.6340971,53.31,22.45,43.11,42.82,8.333333333333334,1,1,0,0,0,1,2,1,532.5,643762.94,474404.19,194314.53,0,1087.7695 -6443,7926,14297,-9,14301,14300,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.40753,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 -6443,7926,14298,-9,14301,14300,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.09686,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 -6443,7926,14299,-9,14301,14300,1,0,16,0,2,1,2,0,0,0,4,0,0,0,0,0,-1120.5466,-9,2,1,2019,16,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.75,63.75,-9,-9,6.666666666666667,2,3,0,0,1,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 -6443,7926,14300,14301,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,7.9497471,8.1678743,5.9617271,10,5,166.51427,0,-9,-9,2019,12,2,35,40,1,2,0,10.427466,10.427466,0,0,0,0,0,1,1,0,5.715446,0,38.14,47.7,41.64,54.12,6.666666666666667,2,3,0,0,12,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 -6443,7926,14301,14300,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.5710211,7.0932832,0,24,-5,-64.284676,0,3,3,2019,13,2,20,0,1,2,0,10.065735,10.065735,0,0,0,0,0,1,1,0,0,0,41.64,54.12,38.14,47.7,8.333333333333334,2,3,0,0,8,8,3,1,608.59998,521223.44,66526.367,561841.25,84704.289,3071.5552 -6443,7927,14302,-9,14301,14300,1,1,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-940.31909,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.11,54.39,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,1243,0,0,0,0,222.77704 -6444,7928,14303,-9,14304,-9,1,1,16,0,1,1,2,0,-9,0,3,0,4.6191001,4.9349222,0,0,-1044.8979,-9,2,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,4.5375652,0,49.34,53.35,-9,-9,8.333333333333334,1,1,0,1,0,9,3,1,772,135614.52,13942.15,122343.03,69727.023,1174.6587 -6444,7928,14304,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.8737073,7.844182,5.6409383,0,0,-989.97375,0,2,2,2019,7,0,34,28,1,0,0,10.288775,10.288775,0,0,0,0,0,1,0,1,6.1074815,0,48.18,61.8,-9,-9,10,1,1,0,0,9,9,3,1,772,135614.52,13942.15,122343.03,69727.023,1174.6587 -6444,7929,14305,-9,14304,-9,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1031.0127,1,2,-9,2019,7,0,0,10,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,213,20277.414,0,0,0,232.50079 -6445,7930,14306,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.7601056,6.7432523,0,0,-1031.4911,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.0595317,6.8520646,71.27,9.31,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,548,124698.41,194827.45,0,0,1402.3372 -6446,7931,14307,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.3667736,8.1862936,7.9741821,0,0,-1133.6537,0,2,2,2019,10,0,24,3,1,0,0,6.5061345,6.5061345,0,0,0,0,0,0,0,0,5.5404181,7.8169646,44.37,49.63,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,1095,-160147.56,92446.836,0,0,2551.7512 -6447,7932,14308,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.3276339,8.3436337,0,0,0,-1028.849,0,2,3,2019,16,5,70,70,1,5,0,8.613513,8.613513,0,0,0,0,14.5,1,1,0,2.3022377,0,34.44,43.57,-9,-9,5,1,1,0,0,9,11,5,0,1483,-41813.219,116422.98,162088.14,30098.646,2230.8582 -6447,7933,14309,-9,14308,-9,1,1,23,0,0,0,1,1,-9,0,4,7.3528147,7.4535995,0,0,0,-980.72705,0,2,-9,2019,5,0,28,26,1,0,1,7.2723966,7.2723966,0,0,0,0,0,1,1,0,0,0,57.1,57.51,-9,-9,8.333333333333334,1,1,0,0,2,11,3,0,586,204668.58,0,0,0,578.33307 -6447,7934,14310,-9,14308,-9,1,1,21,0,0,0,2,2,-9,0,5,7.9670196,7.8490486,0,0,0,-1075.1152,0,2,-9,2019,5,1,40,50,1,1,1,7.1112618,7.1112618,0,0,0,0,0,1,1,0,0,0,54.57,60.2,-9,-9,8.333333333333334,1,1,0,0,2,11,3,0,286,182272.28,0,0,0,1938.1458 -6448,7935,14311,-9,14312,14313,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-906.06049,-9,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,10,2,3,1,1,0,8,4,1,591,271921.28,264140.78,0,0,2323.6624 -6448,7935,14312,14313,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,6.7329178,6.599865,0,24,11,59.534264,0,3,3,2019,6,0,10,2,1,0,0,10.488634,10.488634,0,0,0,0,0,1,1,0,0,0,67.42,39.73,62.66,52.4,10,2,3,0,0,5,8,4,1,591,271921.28,264140.78,0,0,2323.6624 -6448,7935,14313,14312,-9,-9,1,1,40,0,0,0,3,3,-9,0,3,8.2363901,8.4388418,0,8,-11,-63.221512,0,-9,-9,2019,6,0,51,45,1,0,0,11.222724,11.222724,0,0,0,0,0,1,1,0,0,0,62.66,52.4,67.42,39.73,10,2,3,0,0,11,8,4,1,591,271921.28,264140.78,0,0,2323.6624 -6448,7936,14314,-9,14312,14313,1,0,20,0,0,0,3,3,-9,0,4,0,0,0,0,0,-843.73456,0,3,3,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,1,0,0,8,2,1,969,-167297.33,0,0,0,612.50482 -6448,7937,14315,-9,14312,14313,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1107.3818,-9,3,3,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,5,2,3,0,0,0,8,2,1,2304,0,0,0,0,0 -6449,7938,14316,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1035.7291,-9,2,2,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,5.48,0,0,0,5.2706218,0,27.41,25.55,-9,-9,1.666666666666667,1,1,0,0,0,9,1,1,1326,46241.633,0,0,0,41.240913 -6450,7939,14317,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,1,9.0901318,9.4287786,0,0,0,-936.3446,0,2,2,2019,17,6,37,37,1,6,0,27.720373,27.720373,0,0,0,0,0,0,0,0,3.2078791,0,47.94,33.47,-9,-9,6.666666666666667,4,2,0,0,6,8,5,1,212,2239585.8,757642.06,1266689.3,0,2711.5579 -6451,7940,14318,14320,-9,-9,1,0,36,0,1,0,2,2,-9,1,1,0,0,0,4,-7,40.785831,0,-9,2,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.8,33.05,52,56,5,1,1,0,0,1,4,4,0,1088.6666,-2084.3645,0,0,0,3664.0601 -6451,7940,14319,-9,14318,14320,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.95789,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,1088.6666,-2084.3645,0,0,0,3664.0601 -6451,7940,14320,14318,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.6444139,8.5189314,0,4,7,41.9557,0,-9,-9,2019,9,0,97,40,1,1,0,6.5076218,6.5076218,0,0,0,0,0,1,1,0,0,0,52,56,26.8,33.05,8,1,1,0,0,1,4,4,0,1088.6666,-2084.3645,0,0,0,3664.0601 -6452,7941,14321,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,8.0702629,7.5352569,0,0,-990.07172,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,10.880079,0,0,1,1,0,.02369659,7.5053234,53,44,-9,-9,8,1,1,0,0,0,1,3,1,114,70979.297,103256.05,154906.92,0,1406.7654 -6453,7942,14322,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,7.9766064,7.7040391,0,0,0,-922.59467,0,3,3,2019,12,0,25,25,1,0,0,11.258319,11.258319,0,0,0,0,2,1,1,0,0,0,55.79,28.69,-9,-9,3.333333333333333,1,1,0,1,9,13,3,0,845,138810.7,1390.2466,142044.86,46107.645,1391.738 -6454,7943,14323,14324,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.8384295,7.7966237,10,2,-64.200241,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7005434,7.43257,57.73,54.53,46.03,50.54,8.333333333333334,1,1,0,0,0,2,3,1,837,849166.75,562169.13,206879.48,0,1942.9048 -6454,7943,14324,14323,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-38.671562,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4706059,0,46.03,50.54,57.73,54.53,8.333333333333334,1,1,0,0,3,2,3,1,837,849166.75,562169.13,206879.48,0,1942.9048 -6455,7944,14325,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,5,7.7795844,7.7399631,5.2459331,0,0,-898.93591,0,2,3,2019,7,0,39,41,1,0,0,7.0660267,7.0660267,0,0,0,0,0,1,0,1,5.3432012,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,470,394117.13,380026,120528.42,50748.895,746.50403 -6455,7945,14326,-9,14325,-9,1,1,21,0,0,0,2,2,1,0,1,7.5703263,8.0068922,0,0,0,-1038.1202,-9,2,3,2019,6,0,40,0,1,0,1,5.6866646,5.6866646,0,0,0,0,0,1,0,1,0,0,43.76,46.42,-9,-9,3.333333333333333,1,1,0,0,1,6,3,1,2908,-398111.88,0,0,0,901.92297 -6455,7946,14327,-9,14325,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1104.4023,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,2.0411739,0,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,129,2038.084,0,0,0,-558.5531 -6456,7947,14328,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,7.7327161,8.1068783,0,0,0,-974.06873,0,3,2,2019,11,1,35,35,1,1,0,8.1613226,8.1613226,0,0,0,0,7,1,1,0,0,0,40.67,24.69,-9,-9,3.333333333333333,1,1,0,0,10,12,3,1,768,-176286.09,120462.77,0,0,971.20752 -6457,7948,14329,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.1646867,7.0321865,0,0,-820.03729,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.1705644,6.7391315,47.49,59.1,-9,-9,6.666666666666667,1,1,1,0,8,8,2,1,860,1561303.9,763750.69,662349.63,0,1554.1295 -6458,7949,14330,-9,14332,14331,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-935.66388,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 -6458,7949,14331,14332,-9,-9,1,1,36,0,2,0,2,2,-9,1,3,9.3180828,9.2138748,0,8,0,-166.57573,0,2,2,2019,11,0,35,35,1,0,0,34.376431,34.376431,0,0,0,0,0,1,1,0,0,0,54.37,54.8,45.27,52.06,6.666666666666667,2,3,0,0,10,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 -6458,7949,14332,14331,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.7235403,7.4994206,0,17,0,-59.404797,0,2,3,2019,11,0,20,20,1,0,0,12.427719,12.427719,0,0,0,0,0,1,1,0,0,0,45.27,52.06,54.37,54.8,3.333333333333333,2,3,0,0,6,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 -6458,7949,14333,-9,14332,14331,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.7991,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,11,5,1,839.75,134617.92,133249.67,194385.36,147760.66,5737.4497 -6459,7950,14334,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.8883219,8.6676178,0,0,0,-985.20068,0,2,3,2019,6,0,43,40,1,0,0,15.326228,15.326228,0,0,0,0,0,1,1,0,4.4371147,0,55.2,57.22,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,240,435939.44,124062.59,179176.06,0,2454.1284 -6460,7951,14335,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.8918166,7.584487,0,0,-929.70923,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8015981,7.2309475,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,372,668061.75,623280.94,112485.23,0,994.22351 -6461,7952,14336,14338,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,8.9197626,8.9508696,0,8,0,-166.40869,0,2,2,2019,11,0,50,40,1,0,0,16.94125,16.94125,0,0,0,0,0,1,1,0,0,0,54.1,59.11,45.38,26.74,8.333333333333334,4,2,0,0,9,12,4,1,548.66669,408284.72,54436.77,256083.02,0,4837.5679 -6461,7952,14337,-9,14338,14336,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1135.3574,-9,1,1,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,2,1,1,0,0,0,42.6,61.6,-9,-9,8.333333333333334,4,2,0,0,0,12,4,1,548.66669,408284.72,54436.77,256083.02,0,4837.5679 -6461,7952,14338,14336,-9,-9,1,0,47,0,1,0,1,1,-9,1,2,0,7.2968082,7.5277472,8,0,-93.596924,0,3,1,2019,29,12,0,17,3,12,0,0,0,0,0,0,0,5.48,1,1,0,6.8736377,7.7382011,45.38,26.74,54.1,59.11,6.666666666666667,4,2,0,0,8,12,4,1,548.66669,408284.72,54436.77,256083.02,0,4837.5679 -6461,7953,14339,-9,14338,14336,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1020.6032,-9,1,1,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,36.65,48.53,-9,-9,10,4,2,0,0,0,12,2,1,376,17381.965,0,0,0,0 -6462,7954,14340,14341,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.2486014,6.8442354,0,8,-1,-143.25728,0,2,2,2019,12,0,28,30,1,0,0,6.649919,6.649919,0,0,0,0,0,0,0,0,2.9842005,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,1,766.5,193712.78,81285.016,449607.53,59167.211,2008.0696 -6462,7954,14341,14340,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.4651022,8.5536127,0,8,1,-82.502029,0,3,2,2019,8,0,47,45,1,0,0,13.92673,13.92673,0,0,0,0,0,0,0,0,3.5927272,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,1,766.5,193712.78,81285.016,449607.53,59167.211,2008.0696 -6462,7955,14342,-9,14340,14341,1,0,27,0,0,0,2,2,-9,0,4,7.7214966,7.7892842,0,0,0,-967.00482,0,2,2,2019,15,3,39,44,1,3,1,7.5591192,7.5591192,0,0,0,0,0,0,0,0,.83440721,0,30.24,64.61,-9,-9,5,1,1,0,0,9,7,3,1,422,-130830.52,125133.3,0,0,782.47876 -6463,7956,14343,14344,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.2521439,7.1392174,52,0,-116.22086,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.7282283,7.0882449,57.16,56.15,51,47,8.333333333333334,1,1,0,0,0,11,2,1,622,526598.5,213290.69,330561,0,1857.6421 -6463,7956,14344,14343,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.8226886,4.913465,9,0,23.640545,0,3,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.1382627,4.6083841,51,47,57.16,56.15,7,1,1,0,0,0,11,2,1,622,526598.5,213290.69,330561,0,1857.6421 -6464,7957,14345,14346,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.0607033,5.0782175,39,1,-77.637901,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2152143,57.16,56.15,54.13,48.04,8.333333333333334,3,4,0,0,0,8,2,1,523.5,654642.38,130059.22,334387.56,0,1860.3489 -6464,7957,14346,14345,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,40,-1,102.93963,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.611212,0,54.13,48.04,57.16,56.15,6.666666666666667,1,1,0,0,0,8,2,1,523.5,654642.38,130059.22,334387.56,0,1860.3489 -6465,7958,14347,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.0772924,8.439249,0,0,0,-1115.6083,0,2,2,2019,6,0,50,50,1,0,0,9.1490297,9.1490297,0,0,0,0,0,0,0,0,3.9481854,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,280,49267.152,-32581.42,0,0,867.27606 -6466,7959,14348,14349,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.4350767,6.4701662,10,-1,10.266675,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.3287468,6.7397695,50.42,51.35,57.74,49,6.666666666666667,1,1,0,0,3,10,3,1,421.5,550707.44,319533.97,233376.22,0,3033.8254 -6466,7959,14349,14348,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.0792775,7.0394468,10,1,81.848671,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.4147549,7.1089444,57.74,49,50.42,51.35,8.333333333333334,1,1,0,0,3,10,3,1,421.5,550707.44,319533.97,233376.22,0,3033.8254 -6467,7960,14350,14351,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.0952559,4.9398146,43,-4,-30.317945,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5868559,5.2136431,52.07,51.53,51,46,10,1,1,0,0,0,6,2,1,431.5,208165.11,159707.66,95015.578,0,1653.0974 -6467,7960,14351,14350,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4042568,6.0459208,10,4,-3.7049348,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7601132,6.2088466,51,46,52.07,51.53,7,1,1,0,0,0,6,2,1,431.5,208165.11,159707.66,95015.578,0,1653.0974 -6468,7961,14352,14353,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.6557341,7.8985381,26,12,23.914755,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2404585,50.54,62.09,57.16,56.15,10,1,1,0,0,0,7,4,1,780,883114.88,289362.16,433326.94,0,2681.4517 -6468,7961,14353,14352,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7310619,8.0313454,0,29,-12,140.46574,0,3,3,2019,7,0,24,24,1,0,0,10.554133,10.554133,0,0,0,0,0,1,1,0,4.4127259,0,57.16,56.15,50.54,62.09,8.333333333333334,1,1,0,0,10,7,4,1,780,883114.88,289362.16,433326.94,0,2681.4517 -6469,7962,14354,-9,14355,-9,1,1,16,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1010.4757,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,4,0,1024.6666,288043.75,199008.47,220859.66,95143.883,2767.4475 -6469,7962,14355,14356,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.5969434,7.7893987,0,3,4,-33.376492,0,3,3,2019,12,0,32,31,1,0,0,9.0968609,9.0968609,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.9,54.53,6.666666666666667,1,1,0,0,8,12,4,0,1024.6666,288043.75,199008.47,220859.66,95143.883,2767.4475 -6469,7962,14356,14355,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.2466097,8.3503418,0,3,-4,52.418793,0,-9,-9,2019,9,0,46,49,1,0,0,10.254663,10.254663,0,0,0,0,0,1,1,0,0,0,54.9,54.53,48.87,58.55,8.333333333333334,1,1,0,0,2,12,4,0,1024.6666,288043.75,199008.47,220859.66,95143.883,2767.4475 -6470,7963,14357,14358,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9263768,7.7697048,0,33,3,192.48978,0,2,2,2019,18,8,30,36,1,8,0,10.398095,10.398095,0,0,0,0,0,0,0,0,0,0,41.58,51.4,23.35,57.32,5,1,1,0,0,10,11,5,1,520.5,592723.81,651436.88,236460.53,83816.766,2781.8706 -6470,7963,14358,14357,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.6268272,8.6929083,0,33,-3,29.907261,0,3,3,2019,20,8,36,36,1,8,0,24.75555,24.75555,0,0,0,0,0,0,0,0,5.7368231,0,23.35,57.32,41.58,51.4,1.666666666666667,1,1,0,0,10,11,5,1,520.5,592723.81,651436.88,236460.53,83816.766,2781.8706 -6470,7964,14359,-9,14357,14358,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-958.422,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.19,57.08,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,158,-63166.813,0,0,0,0 -6471,7965,14360,14361,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,10,1,-13.990027,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,3.1551607,0,40.69,39.61,21.97,21.3,8.333333333333334,1,1,0,0,0,9,2,1,1349,354088.53,222280.86,230180.23,0,1476.5203 -6471,7965,14361,14360,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.2783136,7.3781357,10,-1,144.52731,0,3,2,2019,31,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,3.43033,7.1780806,21.97,21.3,40.69,39.61,3.333333333333333,1,1,0,0,2,9,2,1,1349,354088.53,222280.86,230180.23,0,1476.5203 -6472,7966,14362,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.7718616,7.7343135,5.4884543,0,0,-965.3053,0,-9,-9,2019,23,9,25,25,1,9,0,11.14432,11.14432,0,0,0,0,2,1,1,0,5.1648655,0,24.85,67.03,-9,-9,3.333333333333333,1,1,0,1,9,10,4,1,1171,-248255.86,-4038.373,0,0,1253.5948 -6473,7967,14363,-9,14365,14364,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1009.6439,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,0,8,5,1,279.33334,1629406.6,466151.78,525711.13,0,4106.9316 -6473,7967,14364,14365,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3211794,8.3996782,0,25,3,-55.1189,0,2,2,2019,9,0,35,35,1,1,0,13.28006,13.28006,0,0,0,0,0,0,0,0,4.1167569,0,53,54,48.81,59.91,8,3,4,0,0,1,8,5,1,279.33334,1629406.6,466151.78,525711.13,0,4106.9316 -6473,7967,14365,14364,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.953021,9.0280876,0,25,-3,-11.510406,0,2,2,2019,11,0,40,35,1,0,0,20.759125,20.759125,0,0,0,0,0,0,0,0,0,0,48.81,59.91,53,54,8.333333333333334,3,4,0,0,9,8,5,1,279.33334,1629406.6,466151.78,525711.13,0,4106.9316 -6474,7968,14366,14367,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.27742,8.4916868,7.5663185,27,7,70.734581,0,3,3,2019,11,0,40,35,1,0,0,13.712984,13.712984,0,0,0,0,0,0,0,0,.0006805227,7.7409692,43.45,38.38,50.3,56.65,3.333333333333333,1,1,0,0,9,9,5,1,1441.5,430594.81,125049.57,248830.78,16213.563,3663.7632 -6474,7968,14367,14366,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.7614384,7.4768372,0,27,-7,88.573158,0,2,3,2019,11,0,40,35,1,0,0,5.2541347,5.2541347,0,0,0,0,0,0,0,0,.19603603,0,50.3,56.65,43.45,38.38,3.333333333333333,1,1,0,0,9,9,5,1,1441.5,430594.81,125049.57,248830.78,16213.563,3663.7632 -6475,7969,14368,-9,14371,14370,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5493,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 -6475,7969,14369,-9,14371,14370,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-951.30463,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 -6475,7969,14370,14371,-9,-9,1,1,37,2,2,0,1,1,-9,0,5,9.3591356,9.5553551,0,15,2,91.704659,0,2,2,2019,8,0,48,53,1,0,0,36.43676,36.43676,0,0,0,0,0,1,1,0,5.6504683,0,51.73,58.82,51.73,58.82,10,1,1,0,0,9,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 -6475,7969,14371,14370,-9,-9,1,0,35,2,2,0,1,1,-9,0,5,8.5557203,8.5269108,0,15,-2,-103.71404,0,1,1,2019,7,1,38,38,1,1,0,15.160192,15.160192,0,0,0,0,0,1,1,0,3.5046463,0,51.73,58.82,51.73,58.82,8.333333333333334,1,1,0,0,9,9,5,1,483.75,520575.72,175845.25,1126580.3,716373.06,6784.0708 -6476,7970,14372,-9,14373,14375,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.8026,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 -6476,7970,14373,14375,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,0,0,0,13,-1,50.724716,0,1,2,2019,11,0,0,23,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,54.2,57.49,7,1,1,0,0,6,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 -6476,7970,14374,-9,14373,14375,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.44373,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 -6476,7970,14375,14373,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.9496336,8.9383287,0,13,1,82.529442,0,2,2,2019,9,0,55,45,1,0,0,16.885361,16.885361,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49,55,8.333333333333334,1,1,0,0,8,2,4,1,1274,20410.301,87332.891,133933.2,123333.41,2960.3464 -6477,7971,14376,-9,14378,14379,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.6499,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 -6477,7971,14377,-9,14378,14379,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.47217,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 -6477,7971,14378,14379,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.189826,7.3326321,0,4,-7,16.994238,0,-9,-9,2019,11,0,23,23,1,2,0,7.4706717,7.4706717,0,0,0,0,0,1,1,0,0,0,46,57,49,57,7,1,1,0,0,10,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 -6477,7971,14379,14378,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,7.9168215,8.1188602,0,4,7,-98.114403,0,-9,-9,2019,10,0,35,38,1,1,0,11.827167,11.827167,0,0,0,0,0,1,1,0,3.9123082,0,49,57,46,57,7,1,1,0,0,1,10,3,1,509.75,-43689.602,20515.596,0,0,1991.4465 -6478,7972,14380,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,5,0,0,0,0,0,-997.62268,0,3,2,2019,16,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,50.96,38.68,-9,-9,8.333333333333334,1,1,0,0,1,6,1,0,246,22608.539,0,0,0,1610.1848 -6479,7973,14381,-9,-9,-9,1,0,64,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1042.1793,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.8,20.65,-9,-9,5,1,1,0,0,0,11,1,1,607,1226748.8,119591.89,325885.88,0,1219.1494 -6480,7974,14382,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-911.617,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.695102,0,56.18,48.32,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,970,30493.412,0,0,0,1456.5524 -6481,7975,14383,14384,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,6.5058155,6.6154051,10,-1,-3.976403,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2117434,6.5083184,57.06,57.76,52,54.51,10,1,1,0,0,9,9,4,1,598,2085775,922569,730169.81,0,2650.9253 -6481,7975,14384,14383,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.1394148,7.8035994,41,1,-69.189186,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.153964,8.0879049,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,0,9,4,1,598,2085775,922569,730169.81,0,2650.9253 -6482,7976,14385,14386,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.7092566,8.3282948,7.3823009,7,-7,75.14399,-9,-9,-9,2019,10,0,60,0,1,1,0,5.5764146,5.5764146,0,0,0,0,0,1,1,0,3.9004183,7.1365786,51,49,45.97,30.64,7,1,1,0,0,1,11,3,1,995.5,409702.66,335727.84,144974.56,0,2676.6829 -6482,7976,14386,14385,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,29,7,-80.315269,0,3,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.97,30.64,51,49,6.666666666666667,1,1,0,0,0,11,3,1,995.5,409702.66,335727.84,144974.56,0,2676.6829 -6483,7977,14387,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,5,9.4148283,9.3162775,0,0,0,-986.37183,0,1,1,2019,12,2,40,40,1,2,0,39.158821,39.158821,0,0,0,0,0,1,1,0,0,0,44.39,63.4,-9,-9,8.333333333333334,2,3,0,0,8,8,5,0,531,550775,84876.5,157050.3,0,6483.8594 -6484,7978,14388,14389,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4737668,7.1468272,5.3951011,47,-4,40.627537,0,-9,-9,2019,12,0,24,31,1,0,0,8.5419512,8.5419512,0,0,0,0,0,1,1,0,0,5.3850236,39.51,43.84,41.36,39.55,6.666666666666667,1,1,0,0,12,10,3,1,647,1562310.6,584516.06,240001.48,0,2904.8159 -6484,7978,14389,14388,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.3850222,7.0946789,45,4,27.832972,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.832222,41.36,39.55,39.51,43.84,3.333333333333333,1,1,0,0,8,10,3,1,647,1562310.6,584516.06,240001.48,0,2904.8159 -6485,7979,14390,14391,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7319098,8.6407967,0,31,2,2.5710793,0,2,2,2019,6,0,45,45,1,0,0,15.731005,15.731005,0,0,0,0,0,0,0,0,3.4139569,0,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,299.5,548414,159166.58,323960.06,0,3154.3965 -6485,7979,14391,14390,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9926028,7.9466062,0,33,-2,-11.566408,0,2,1,2019,7,0,41,37,1,0,0,9.2240076,9.2240076,0,0,0,0,0,0,0,0,2.6080687,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,11,5,5,1,299.5,548414,159166.58,323960.06,0,3154.3965 -6485,7980,14392,-9,14391,14390,1,0,26,0,0,0,1,1,-9,0,4,8.4513245,8.4194956,0,0,0,-1080.9517,0,2,2,2019,7,1,40,45,1,1,1,15.185296,15.185296,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,2317,169283.75,-104722.37,0,0,1212.8726 -6486,7981,14393,-9,14395,14394,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1016.4126,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 -6486,7981,14394,14395,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.6164932,9.1926117,0,18,0,56.970097,0,2,2,2019,14,4,42,44,1,4,0,14.620994,14.620994,0,0,0,0,2,0,0,0,1.4021742,0,43.03,55.9,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 -6486,7981,14395,14394,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.4538984,8.3552999,0,18,0,-45.116116,0,2,3,2019,8,0,30,26,1,0,0,18.900894,18.900894,0,0,0,0,0,0,0,0,1.3905702,0,57.16,56.15,43.03,55.9,10,1,1,0,0,10,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 -6486,7981,14396,-9,14395,14394,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.74323,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.5,689573.56,177431.39,399544.5,0,4117.9517 -6487,7982,14397,14398,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.3314028,7.6915774,41,1,71.729454,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.81778,7.8494115,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,6,4,3,1,563,1173157.6,836036.19,218959.8,0,1933.6216 -6487,7982,14398,14397,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,41,-1,-21.283638,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.2109122,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,7,4,3,1,563,1173157.6,836036.19,218959.8,0,1933.6216 -6488,7983,14399,14400,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,4.1941733,4.1281314,6,-1,23.204391,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,19.881168,0,0,1,1,0,0,4.3014836,36.27,44.19,42.52,45.55,6.666666666666667,1,1,0,0,5,13,2,1,212,396402.25,17437.264,297818.22,0,1749.2307 -6488,7983,14400,14399,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.3698573,6.5031872,6,1,-119.3789,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.598557,6.1702623,42.52,45.55,36.27,44.19,8.333333333333334,1,1,0,0,3,13,2,1,212,396402.25,17437.264,297818.22,0,1749.2307 -6489,7984,14401,14402,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.4965439,8.7504244,0,17,15,105.32941,0,3,2,2019,9,0,38,38,1,0,0,18.135887,18.135887,0,0,0,0,0,1,1,0,4.6835513,0,54.37,54.8,56.35,51.16,8.333333333333334,1,1,0,0,10,8,5,1,963.5,422498.66,0,345172.06,20891.252,3934.1345 -6489,7984,14402,14401,14403,-9,1,0,50,0,0,0,1,1,-9,0,3,8.2598047,8.0499144,0,17,-15,133.791,0,3,3,2019,8,0,39,42,1,0,0,10.292256,10.292256,0,0,0,0,7,1,1,0,0,0,56.35,51.16,54.37,54.8,8.333333333333334,3,4,0,0,10,8,5,1,963.5,422498.66,0,345172.06,20891.252,3934.1345 -6489,7985,14403,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.6353345,6.6169505,0,0,-991.8147,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1156945,57,29.53,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,414,207006.81,-3452.7029,0,0,595.88922 -6490,7986,14404,14405,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.9899397,9.2352972,7.6634531,3,6,13.687712,0,1,1,2019,7,0,48,38,1,0,0,17.393038,17.393038,0,0,0,0,0,0,0,0,9.3392916,7.9798012,54.1,59.11,58.06,46.15,8.333333333333334,1,1,0,0,8,9,5,1,2362.5,2086316,1742016.5,213480.88,15484.57,6742.3369 -6490,7986,14405,14404,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2637687,7.6797266,0,3,-6,93.292191,0,-9,-9,2019,8,2,10,12,1,2,0,19.062439,19.062439,0,0,0,0,0,0,0,0,0,0,58.06,46.15,54.1,59.11,10,1,1,0,0,9,9,5,1,2362.5,2086316,1742016.5,213480.88,15484.57,6742.3369 -6490,7987,14406,-9,14405,14404,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-999.10834,-9,2,-9,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.83005154,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,431,0,0,0,0,61.937317 -6491,7988,14407,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.6290283,8.5950861,0,0,0,-1017.858,0,2,2,2019,7,0,38,38,1,0,0,14.119954,14.119954,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,410,147123.05,37669.816,0,0,2247.9509 -6492,7989,14408,14409,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.5704622,5.7824278,25,-6,38.660393,0,1,1,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.3909841,59.46,46.99,61.02,15.15,8.333333333333334,1,1,0,0,12,7,2,1,670,153924.36,191351.84,276598.78,0,1453.7622 -6492,7989,14409,14408,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,25,6,-15.894154,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,11.856991,0,7,1,1,0,0,0,61.02,15.15,59.46,46.99,10,1,1,0,0,4,7,2,1,670,153924.36,191351.84,276598.78,0,1453.7622 -6493,7990,14410,14411,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,-6,0,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,0,54.27,22.7,64.40000000000001,36.46,6.666666666666667,1,1,0,0,0,2,1,0,271.5,27174.938,-43538.711,195541.25,0,1703.3413 -6493,7990,14411,14410,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,46,6,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,64.40000000000001,36.46,54.27,22.7,10,1,1,0,0,0,2,1,0,271.5,27174.938,-43538.711,195541.25,0,1703.3413 -6494,7991,14412,14413,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.2435284,6.3984351,28,2,3.9012294,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7145157,6.4696069,44.53,56.37,55.77,27.12,10,1,1,0,0,0,9,3,1,480,1040116.3,558482.63,436417.56,128623.74,2437.0552 -6494,7991,14413,14412,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.664185,7.7524529,28,-2,-12.688432,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.9375014,7.8652916,55.77,27.12,44.53,56.37,8.333333333333334,1,1,0,0,0,9,3,1,480,1040116.3,558482.63,436417.56,128623.74,2437.0552 -6495,7992,14414,-9,14416,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0395,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,893,-162339.31,0,0,0,2008.4628 -6495,7992,14415,-9,14416,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1215.3132,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,893,-162339.31,0,0,0,2008.4628 -6495,7992,14416,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,0,7.2495503,7.2546239,0,0,-984.30713,1,3,2,2019,8,0,0,23,2,0,0,0,0,0,0,0,0,0,1,1,0,7.0400252,0,58.3,47.38,-9,-9,8.333333333333334,1,1,0,0,6,5,2,0,893,-162339.31,0,0,0,2008.4628 -6496,7993,14417,-9,14420,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.1616,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 -6496,7993,14418,-9,14420,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1081.2407,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 -6496,7993,14419,-9,14420,-9,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.8448,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 -6496,7993,14420,-9,-9,-9,1,0,33,0,4,0,2,2,-9,0,2,6.9328756,7.1551929,7.2119026,0,0,-1039.9912,-9,2,2,2019,9,1,26,0,1,1,0,4.2183914,4.2183914,0,0,0,0,2,1,1,0,6.8098311,0,53.99,40.45,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,535.75,16551.51,84130.211,0,0,2423.7505 -6497,7994,14421,14422,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.9605017,6.8993969,10,-3,176.87602,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6526384,6.2633715,54.61,43.6,48.02,34.89,8.333333333333334,1,1,0,0,0,8,2,1,701,130593.42,-2180.9961,53815.625,10673.484,1329.2426 -6497,7994,14422,14421,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,55,3,-112.43195,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,.0044274768,0,1,1,0,0,0,48.02,34.89,54.61,43.6,8.333333333333334,1,1,0,0,0,8,2,1,701,130593.42,-2180.9961,53815.625,10673.484,1329.2426 -6498,7995,14423,14426,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,10,5,-48.076866,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,41.34,56.62,6.666666666666667,1,1,0,0,1,9,3,0,326,471904.56,93157.422,0,0,414.9071 -6498,7995,14424,-9,14426,14423,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-961.93475,-9,1,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,58.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,326,471904.56,93157.422,0,0,414.9071 -6498,7995,14425,-9,14426,14423,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-978.97852,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.2548503,0,44,59,-9,-9,7,1,1,0,0,0,9,3,0,326,471904.56,93157.422,0,0,414.9071 -6498,7995,14426,14423,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.1615667,8.1218672,0,25,-5,-87.42543,0,2,2,2019,14,2,46,50,1,2,0,8.175148,8.175148,0,0,0,0,0,0,0,0,0,0,41.34,56.62,62.66,52.4,5,1,1,0,0,13,9,3,0,326,471904.56,93157.422,0,0,414.9071 -6498,7996,14427,-9,14426,14423,1,0,21,0,0,0,1,1,1,0,3,7.1200099,6.7948112,0,0,0,-1061.5858,-9,1,2,2019,20,8,18,0,1,8,1,5.5551152,5.5551152,0,0,0,0,0,0,0,0,0,0,32.38,58.28,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,412,-421510.69,0,0,0,879.43909 -6498,7997,14428,-9,14426,14423,1,0,20,0,0,0,2,2,-9,0,3,5.4190035,5.3462219,0,0,0,-1185.1171,0,1,2,2019,12,3,32,32,1,3,1,.68434018,.68434018,0,0,0,0,0,0,0,0,7.8026371,0,39.03,49.56,-9,-9,6.666666666666667,1,1,0,0,4,9,2,0,353,-29581.881,0,0,0,1237.3472 -6498,7998,14429,-9,14426,14423,1,0,20,0,0,0,2,2,-9,0,4,8.0014029,7.8073864,0,0,0,-907.01019,0,1,2,2019,12,0,40,0,1,0,1,7.8236361,7.8236361,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,828,-54624.289,0,0,0,739.09772 -6499,7999,14430,-9,14432,14431,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.30652,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,919.66669,-71628.086,113538.84,192798.11,155157.14,4457.4072 -6499,7999,14431,14432,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.3011608,8.1394081,0,3,2,-2.6573081,0,-9,-9,2019,14,3,43,48,1,3,0,12.132181,12.132181,0,0,0,0,0,1,1,0,0,0,22.48,66.73999999999999,57.73,54.53,5,1,1,0,0,2,12,5,1,919.66669,-71628.086,113538.84,192798.11,155157.14,4457.4072 -6499,7999,14432,14431,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,8.461154,8.5985737,0,3,-2,-19.84293,0,2,1,2019,7,0,50,60,1,0,0,14.365421,14.365421,0,0,0,0,0,1,1,0,0,0,57.73,54.53,22.48,66.73999999999999,8.333333333333334,1,1,0,0,10,12,5,1,919.66669,-71628.086,113538.84,192798.11,155157.14,4457.4072 -6500,8000,14433,14434,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.3354225,8.3660879,0,26,1,-78.57962,0,2,3,2019,13,3,42,45,1,3,0,11.335233,11.335233,0,0,0,0,0,0,0,0,6.6643953,0,48.98,57.22,36.54,57.54,3.333333333333333,3,4,0,0,8,5,5,1,531,1445785.5,733890.5,723996.19,0,7842.0615 -6500,8000,14434,14433,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.5541315,9.7067518,0,28,-1,-20.138493,0,2,2,2019,22,8,45,55,1,8,0,38.975643,38.975643,0,0,0,0,0,0,0,0,9.556324,0,36.54,57.54,48.98,57.22,6.666666666666667,1,1,0,0,7,5,5,1,531,1445785.5,733890.5,723996.19,0,7842.0615 -6500,8001,14435,-9,14434,14433,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1146.3596,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.68989915,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,1,5,1,1,492,0,0,0,0,591.25494 -6501,8002,14436,-9,14439,14438,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1017.145,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 -6501,8002,14437,-9,14439,14438,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-972.23035,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 -6501,8002,14438,14439,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,8.0234861,8.345952,0,18,0,-97.369812,0,2,1,2019,10,3,30,28,1,3,0,16.139906,16.139906,0,0,0,0,27,1,1,0,5.6652212,0,54.2,57.49,41.01,62.29,8.333333333333334,1,1,0,0,11,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 -6501,8002,14439,14438,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,8.6451521,8.7551527,0,18,0,109.36668,0,1,1,2019,19,8,48,32,1,8,0,11.035484,11.035484,0,0,0,0,5.48,1,1,0,5.7022023,0,41.01,62.29,54.2,57.49,6.666666666666667,1,1,0,0,11,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 -6501,8002,14440,-9,14439,14438,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1164.3567,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,497.20001,322916.81,37345.207,238697.23,135035.44,4119.21 -6502,8003,14441,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.8547544,7.9556122,0,0,-1044.2034,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,19.10433,0,27,1,1,0,.88980883,8.0902519,66.76000000000001,29.06,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,342,1153885.3,302654.16,420649.22,0,1771.8463 -6502,8004,14442,-9,14441,-9,1,1,35,0,0,0,2,2,-9,0,3,8.7047148,8.7864208,0,0,0,-1010.8956,0,3,3,2019,6,0,40,44,1,0,0,17.388226,17.388226,0,0,0,0,27,1,1,0,0,0,62.28,45.64,-9,-9,8.333333333333334,3,4,0,0,6,8,5,1,1008,-350566.88,0,0,0,3125.9937 -6502,8005,14443,-9,14441,-9,1,1,41,0,0,0,2,2,-9,1,4,0,0,0,0,0,-961.34967,0,2,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,3,4,0,1,0,8,1,1,1874,128499.74,0,0,0,659.21191 -6503,8006,14444,-9,14446,14447,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-989.8938,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 -6503,8006,14445,-9,14446,14447,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-943.49811,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 -6503,8006,14446,14447,-9,-9,1,0,37,0,4,0,2,2,-9,0,2,0,0,0,17,-1,-43.651577,1,3,3,2019,28,9,0,0,2,9,0,0,0,0,0,0,0,7,1,1,0,0,0,15.13,33.85,24.93,19.95,6.666666666666667,2,3,0,1,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 -6503,8006,14447,14446,-9,-9,1,1,38,0,4,0,2,2,-9,0,1,6.8496656,6.7964487,0,17,1,-72.271881,0,3,2,2019,15,4,24,15,1,4,0,4.5352612,4.5352612,0,0,0,0,0,1,1,0,0,0,24.93,19.95,15.13,33.85,1.666666666666667,2,3,0,1,11,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 -6503,8006,14448,-9,14446,14447,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.2986,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 -6503,8006,14449,-9,14446,14447,1,0,12,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1084.517,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,6,2,1,465.66666,55367.422,59678.551,0,0,2588.0984 -6504,8007,14450,14451,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,7.3584814,7.3890252,0,7,-35,-104.548,0,-9,-9,2019,6,0,21,32,1,0,0,10.276667,10.276667,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.72,51.29,8.333333333333334,1,1,0,0,7,7,3,1,704,1466233,1091888.1,225497.47,12958.99,2459.7698 -6504,8007,14451,14450,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,5.8644381,8.0298405,7.6616879,7,35,36.014145,0,3,3,2019,8,1,5,4,1,1,0,7.1487231,7.1487231,0,0,0,0,0,1,1,0,6.7459784,7.0636959,58.72,51.29,57.06,57.76,10,1,1,0,0,7,7,3,1,704,1466233,1091888.1,225497.47,12958.99,2459.7698 -6505,8008,14452,-9,14455,14453,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.4453,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 -6505,8008,14453,14455,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,8.4488554,8.5092297,0,7,-1,80.072212,0,2,2,2019,8,0,40,40,1,0,0,12.187154,12.187154,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.13,40.48,6.666666666666667,1,1,0,0,8,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 -6505,8008,14454,-9,14455,14453,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.6785,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 -6505,8008,14455,14453,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,7,1,-10.959962,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,40.48,57.33,53.46,6.666666666666667,1,1,0,0,2,4,3,0,1162.25,-60397.375,0,0,0,2354.2461 -6506,8009,14456,14458,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,8.2778788,8.2917519,0,4,0,39.723579,0,-9,-9,2019,13,1,38,38,1,1,0,14.530391,14.530391,0,0,0,0,0,1,1,0,1.2475247,0,50.6,51,56.11,44.4,8.333333333333334,1,1,0,0,5,5,4,1,410,274909.13,-16905.854,311901.41,172719.34,3353.2874 -6506,8009,14457,-9,14456,14458,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-881.73785,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,410,274909.13,-16905.854,311901.41,172719.34,3353.2874 -6506,8009,14458,14456,-9,-9,1,1,29,1,1,0,1,1,-9,0,3,8.5666866,8.2814999,0,4,0,16.139288,0,-9,-9,2019,10,0,38,0,1,0,0,12.118216,12.118216,0,0,0,0,0,1,1,0,1.2490329,0,56.11,44.4,50.6,51,8.333333333333334,1,1,0,0,5,5,4,1,410,274909.13,-16905.854,311901.41,172719.34,3353.2874 -6507,8010,14459,14460,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.2820673,9.5241613,0,2,-1,-87.347717,0,2,2,2019,8,0,40,40,1,0,0,33.340752,33.340752,0,0,0,0,0,0,0,0,7.0863972,0,54.57,49.24,54.96,41.96,8.333333333333334,1,1,0,0,8,10,5,1,493,823297.25,551732.94,205764.34,0,6779.7847 -6507,8010,14460,14459,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.0409727,8.1510715,0,2,1,-109.1363,-9,-9,-9,2019,9,0,40,0,1,0,0,12.34346,12.34346,0,0,0,0,0,0,0,0,7.4603243,0,54.96,41.96,54.57,49.24,8.333333333333334,1,1,0,0,3,10,5,1,493,823297.25,551732.94,205764.34,0,6779.7847 -6508,8011,14461,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.2193403,8.6570015,0,0,0,-946.49799,0,-9,-9,2019,15,3,43,43,1,3,0,12.033039,12.033039,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,5882,120146.58,0,0,0,2080.5227 -6509,8012,14462,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.3585682,8.6365824,0,0,0,-1153.0203,0,-9,2,2019,19,7,37,37,1,7,0,12.18908,12.18908,0,0,0,0,0,0,0,0,0,0,25.1,50.97,-9,-9,3.333333333333333,1,1,0,0,11,4,4,1,1192,-4946.4854,232727.5,0,0,1730.8096 -6510,8013,14463,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-940.79901,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.6,43.75,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,381,-276378.69,0,70972.75,0,603.68811 -6511,8014,14464,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-904.33789,0,2,1,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,21.57,55.52,-9,-9,0,1,1,1,1,7,13,1,0,131,-170120.45,0,0,0,455.20523 -6512,8015,14465,14466,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,6.8488398,6.7195778,0,33,-2,-6.6674714,-9,3,3,2019,11,0,15,0,1,2,0,7.2676215,7.2676215,0,0,0,0,27,1,1,0,0,0,48,48,45.82,36.17,7,1,1,0,0,2,7,4,0,734.5,-25160.969,88903.063,0,0,2357.9109 -6512,8015,14466,14465,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.542037,8.4305649,0,33,2,-19.975668,-9,-9,-9,2019,12,1,40,0,1,1,0,9.2717829,9.2717829,0,0,0,0,27,1,1,0,0,0,45.82,36.17,48,48,6.666666666666667,1,1,0,0,13,7,4,0,734.5,-25160.969,88903.063,0,0,2357.9109 -6513,8016,14467,-9,-9,-9,1,0,21,0,1,0,2,2,-9,0,2,7.5113225,7.5942998,0,0,0,-1000.6835,0,2,-9,2019,12,0,30,40,1,0,1,8.3941851,8.3941851,0,0,0,0,0,1,1,0,0,0,45.58,49.87,-9,-9,5,1,1,0,0,5,9,3,0,586,253668.92,0,0,0,679.29535 -6514,8017,14468,-9,14469,14470,1,1,17,0,1,1,2,0,0,0,5,0,5.6349845,5.6134944,0,0,-1052.5,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.1995897,0,59.43,58.05,-9,-9,10,1,1,0,0,0,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 -6514,8017,14469,14470,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,9.2762032,9.4111166,0,20,-1,-6.4883795,0,-9,-9,2019,10,1,45,40,1,1,0,27.906166,27.906166,0,0,0,0,2,0,0,0,4.8293543,0,48.45,57.49,59.31,49.81,8.333333333333334,1,1,0,0,11,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 -6514,8017,14470,14469,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.7303944,9.5447731,0,20,1,-56.303875,0,-9,-9,2019,6,0,60,100,1,0,0,25.211931,25.211931,0,0,0,0,0,0,0,0,2.0799482,0,59.31,49.81,48.45,57.49,8.333333333333334,1,1,0,0,11,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 -6514,8017,14471,-9,14469,14470,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.6535,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,927.25,1583489.8,865078.13,608336,60913.113,8727.5576 -6515,8018,14472,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.7567019,7.8219452,0,0,0,-872.32648,0,-9,2,2019,15,3,32,30,1,3,0,8.2893925,8.2893925,0,0,0,0,0,1,1,0,0,0,50.01,52.64,-9,-9,6.666666666666667,1,1,0,0,8,5,3,0,282,6879.585,-44678.738,0,0,1552.2875 -6516,8019,14473,14474,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,8.7177,9.1061678,7.8900547,12,13,101.64885,0,-9,-9,2019,5,0,36,36,1,0,0,26.353516,26.353516,0,0,0,0,0,0,0,0,7.0817914,8.0935364,62.39,56.71,57.06,57.76,10,1,1,0,0,11,8,5,1,8154,5052690,2116441,2020651.4,498663.63,7029.6445 -6516,8019,14474,14473,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.8292274,8.9084558,0,12,-13,-36.25005,0,1,2,2019,12,3,45,55,1,3,0,18.450012,18.450012,0,0,0,0,2,0,0,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,4,2,0,0,13,8,5,1,8154,5052690,2116441,2020651.4,498663.63,7029.6445 -6516,8020,14475,-9,14474,14473,1,1,26,0,0,0,1,1,-9,0,2,8.0082941,8.2363701,0,0,0,-1076.6908,-9,1,1,2019,6,1,38,0,1,1,1,11.385118,11.385118,0,0,0,0,2,0,0,0,0,0,56.9,44.55,-9,-9,5,3,4,0,0,2,8,4,1,2874,-264931.34,79969.102,0,0,1240.0381 -6517,8021,14476,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,7.8337636,7.3003941,0,0,-1005.0681,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,7.617363,43.44,33.98,-9,-9,6.666666666666667,1,1,0,0,3,11,3,0,251,517792.66,442161.81,80997.383,0,1405.0613 -6518,8022,14477,-9,14478,14479,1,1,22,0,2,0,1,1,-9,0,4,0,6.6707883,6.9642482,0,0,-983.03174,1,1,1,2019,10,2,0,4,2,2,1,0,0,0,0,0,0,2,1,1,0,6.4485369,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,236,-17227.301,0,0,0,1164.0803 -6518,8023,14478,14479,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.3489676,8.3211145,0,2,-4,57.334816,-9,-9,-9,2019,10,0,30,0,1,1,0,14.774199,14.774199,0,0,0,0,0,1,1,0,0,0,51,54,54,54,8,4,6,0,0,1,9,4,1,995,1069172.4,570678.19,253149.06,123809.7,4453.3848 -6518,8023,14479,14478,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,8.6074724,8.6543055,0,2,4,3.6388769,-9,-9,-9,2019,9,0,50,0,1,1,0,13.04999,13.04999,0,0,0,0,0,1,1,0,4.7663507,0,54,54,51,54,8,4,6,0,0,1,9,4,1,995,1069172.4,570678.19,253149.06,123809.7,4453.3848 -6519,8024,14480,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6637516,7.378314,0,0,0,-1047.8641,0,3,3,2019,6,0,30,25,1,0,0,7.4244642,7.4244642,0,0,0,0,0,1,1,0,0,0,40.03,34.79,-9,-9,10,1,1,0,0,7,13,3,0,189,28143.324,95013.953,0,0,676.72852 -6519,8025,14481,-9,14480,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2610598,7.814908,0,0,0,-909.51093,0,2,-9,2019,10,0,55,60,1,1,1,8.8895311,8.8895311,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,5,13,4,0,385,307828.34,0,0,0,2231.0588 -6520,8026,14482,-9,-9,-9,1,0,63,0,0,0,1,1,-9,1,1,0,0,0,0,0,-933.52228,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.55,18.27,-9,-9,5,1,1,0,0,0,11,1,1,246,841121.5,300593.88,348165.88,0,976.19781 -6521,8027,14483,14484,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.0438652,6.8080225,0,20,10,-13.936793,0,3,3,2019,9,0,24,30,1,0,0,4.9608297,4.9608297,0,0,0,0,27,0,0,0,0,0,62.03,41.71,60.12,54.8,8.333333333333334,1,1,0,0,7,12,5,1,929.5,668009.38,384878.59,282478.81,0,4939.4043 -6521,8027,14484,14483,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,9.5568151,9.2042885,0,19,-10,14.748459,0,-9,-9,2019,8,0,47,47,1,0,0,25.941195,25.941195,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.03,41.71,8.333333333333334,1,1,0,0,7,12,5,1,929.5,668009.38,384878.59,282478.81,0,4939.4043 -6522,8028,14485,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-965.7912,0,-9,-9,2019,12,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,24.29,-9,-9,5,1,1,0,1,3,7,1,0,251,0,0,0,0,855.86053 -6523,8029,14486,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.0169291,7.3409166,0,0,-948.49786,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.1929426,0,25.798946,0,1,1,0,4.975378,7.5609775,53.7,28.99,-9,-9,5,1,1,0,0,0,8,3,1,432,394111.13,115390.48,0,0,1674.173 -6523,8030,14487,14488,14486,-9,1,0,54,0,0,0,1,1,-9,0,3,9.0175962,9.1084547,0,19,-6,124.26801,0,2,-9,2019,12,3,30,35,1,3,0,32.700233,32.700233,0,0,0,0,2,1,1,0,5.6647234,0,44.74,48.37,53.04,39.85,3.333333333333333,1,1,0,0,13,8,5,1,354,1227467.5,193161.31,382857.88,0,3925.189 -6523,8030,14488,14487,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.751255,8.0211802,19,6,72.687469,0,2,2,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.1286082,7.6357603,53.04,39.85,44.74,48.37,8.333333333333334,4,2,0,0,8,8,5,1,354,1227467.5,193161.31,382857.88,0,3925.189 -6524,8031,14489,-9,14491,14490,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.3425,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,828.33331,27451.047,248375.89,127188.42,97712.898,3792.8101 -6524,8031,14490,14491,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1488934,8.5460691,0,6,4,27.769953,0,-9,-9,2019,7,0,50,57,1,0,0,10.93181,10.93181,0,0,0,0,0,1,1,0,0,0,55.78,49.92,49.44,54.26,0,1,1,0,0,13,6,5,1,828.33331,27451.047,248375.89,127188.42,97712.898,3792.8101 -6524,8031,14491,14490,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.5799065,8.6695671,0,6,-4,-51.747749,0,3,3,2019,10,1,38,38,1,1,0,16.792072,16.792072,0,0,0,0,0,1,1,0,0,0,49.44,54.26,55.78,49.92,8.333333333333334,1,1,0,0,12,6,5,1,828.33331,27451.047,248375.89,127188.42,97712.898,3792.8101 -6525,8032,14492,14493,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,36,15,53.342735,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,16.723598,33.861847,128.49611,0,1,1,0,0,0,61.41,14.23,55.74,47.8,3.333333333333333,3,4,0,0,0,7,2,1,275.5,313459.53,-18504.107,129972.38,18374.744,1358.8625 -6525,8032,14493,14492,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,5.4127822,5.0698195,36,-15,21.433752,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.1991949,55.74,47.8,61.41,14.23,6.666666666666667,3,4,0,0,2,7,2,1,275.5,313459.53,-18504.107,129972.38,18374.744,1358.8625 -6526,8033,14494,14495,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.2038736,8.3420372,0,7,4,-60.028584,0,3,3,2019,6,0,44,44,1,0,0,9.1722994,9.1722994,0,0,0,0,0,1,1,0,0,0,46.31,56.45,54.1,59.11,8.333333333333334,4,2,0,0,8,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 -6526,8033,14495,14494,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.7003994,8.8439054,0,7,-4,-60.882179,0,3,3,2019,8,0,40,30,1,0,0,19.329584,19.329584,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.31,56.45,8.333333333333334,1,1,0,0,8,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 -6526,8033,14496,-9,14495,14494,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7725,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 -6526,8033,14497,-9,14495,14494,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.60443,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,11,5,1,885.25,346508.72,239907.31,199061.17,156526.48,3900.5356 -6527,8034,14498,14499,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,8.3446341,8.3000765,47,0,-48.933132,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8981102,8.3327551,55.09,55.87,50,47,8.333333333333334,1,1,0,0,0,5,3,1,949,1046977.9,693073.75,235764.08,46848.188,3091.7515 -6527,8034,14499,14498,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,7,0,-7.9429736,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0557365,0,50,47,55.09,55.87,7,1,1,0,0,0,5,3,1,949,1046977.9,693073.75,235764.08,46848.188,3091.7515 -6528,8035,14500,14501,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.3629889,6.497859,1,4,37.884224,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5316806,62.39,56.71,51,47,10,1,1,0,0,0,1,2,1,807.5,113998.61,98163,169454.22,0,1402.861 -6528,8035,14501,14500,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,1,-4,-102.15252,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,62.39,56.71,7,1,1,0,0,0,1,2,1,807.5,113998.61,98163,169454.22,0,1402.861 -6529,8036,14502,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.0288668,7.3821864,0,0,-978.17499,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.8595223,7.0559301,32.13,54.55,-9,-9,1.666666666666667,1,1,0,0,6,1,3,1,466,518499.41,262532.41,193499.8,0,568.12598 -6530,8037,14503,14504,-9,-9,1,0,28,0,2,0,3,3,-9,0,2,7.3917537,7.1105142,0,2,-7,17.397987,0,-9,-9,2019,22,8,23,23,1,8,0,9.5240564,9.5240564,0,0,0,0,0,1,1,0,0,0,27.1,46.07,50,57,5,1,1,0,1,7,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 -6530,8037,14504,14503,-9,-9,1,1,35,0,2,0,3,3,-9,0,4,8.596839,8.3897161,0,2,7,-122.61979,0,3,2,2019,10,0,40,40,1,1,0,13.09818,13.09818,0,0,0,0,0,1,1,0,0,0,50,57,27.1,46.07,7,1,1,0,0,1,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 -6530,8037,14505,-9,14503,14504,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.8186,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 -6530,8037,14506,-9,14503,14504,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.2341,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,509.75,185068.84,85497.641,89884.039,15860.001,3821.3625 -6531,8038,14507,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.0504332,6.0582447,0,0,0,-964.92163,0,2,-9,2019,17,6,10,16,1,6,0,4.6333051,4.6333051,0,0,0,0,0,1,1,0,0,0,31.24,29.07,-9,-9,1.666666666666667,1,1,0,1,12,10,2,0,551.66669,226925.39,168.72395,0,0,1364.7938 -6531,8038,14508,-9,14507,-9,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-955.72412,-9,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,0,0,0,10,2,0,551.66669,226925.39,168.72395,0,0,1364.7938 -6531,8038,14509,-9,14507,-9,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-965.91443,0,2,-9,2019,6,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43.16,53.1,-9,-9,10,1,1,0,0,2,10,2,0,551.66669,226925.39,168.72395,0,0,1364.7938 -6532,8039,14510,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7118101,8.2520533,0,0,-989.7547,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1291533,43.07,51.88,-9,-9,10,1,1,0,0,0,12,4,1,375,768967.25,548530.25,265946.22,0,2479.0801 -6533,8040,14511,14512,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,2,-2,-105.241,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.58,51.02,10,1,1,0,0,1,2,3,0,1066.5,30664.586,0,0,0,2135.6394 -6533,8040,14512,14511,-9,-9,1,1,27,1,2,0,1,1,-9,0,3,8.252039,8.0779657,0,2,2,47.153248,0,-9,-9,2019,8,1,52,40,1,1,0,6.6172028,6.6172028,0,0,0,0,0,1,1,0,0,0,50.58,51.02,54.79,55.86,6.666666666666667,1,1,0,0,4,2,3,0,1066.5,30664.586,0,0,0,2135.6394 -6533,8040,14513,-9,14511,14512,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1190.0282,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1066.5,30664.586,0,0,0,2135.6394 -6533,8040,14514,-9,14511,14512,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.02698,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1066.5,30664.586,0,0,0,2135.6394 -6534,8041,14515,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,7.9886928,7.9597678,0,0,0,-905.72687,0,-9,-9,2019,5,0,35,37,1,0,0,8.2549429,8.2549429,0,0,0,0,0,0,0,0,0,0,30.49,56.93,-9,-9,10,1,1,0,0,5,2,3,0,882,248938.88,17938.994,0,0,744.62903 -6535,8042,14516,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.9891901,6.9041805,0,0,-1028.6244,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,5.8829627,0,47.607792,0,1,1,0,0,6.7743793,48.52,23.79,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1214,439560.34,93188.961,145273.66,0,1339.2675 -6536,8043,14517,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.0314379,8.2115545,0,0,0,-954.03851,0,2,3,2019,11,0,37,37,1,0,0,10.000176,10.000176,0,0,0,0,0,0,0,0,1.9854319,0,44.81,49.61,-9,-9,5,1,1,0,0,10,7,4,0,286,555960.75,196214.41,187416.94,0,1447.0739 -6537,8044,14518,14519,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,7.9388962,7.9903913,0,9,1,-26.380516,0,3,2,2019,13,2,35,33,1,2,0,10.785945,10.785945,0,0,0,0,2,1,1,0,5.6299953,0,57.48,26.66,52,55,5,1,1,0,0,11,11,4,1,792.66669,519282.66,529658.38,249477.13,128980.9,2921.2917 -6537,8044,14519,14518,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,8.1806536,8.0934305,0,9,-1,-54.233467,-9,-9,-9,2019,9,0,50,0,1,1,0,7.084517,7.084517,0,0,0,0,0,1,1,0,0,0,52,55,57.48,26.66,8,1,1,0,0,1,11,4,1,792.66669,519282.66,529658.38,249477.13,128980.9,2921.2917 -6537,8044,14520,-9,14518,14519,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-943.74615,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,4,1,792.66669,519282.66,529658.38,249477.13,128980.9,2921.2917 -6538,8045,14521,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.1382236,7.9631615,0,0,0,-879.39807,0,2,2,2019,11,0,40,51,1,0,0,8.6053724,8.6053724,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,6,2,4,1,685,491580.72,39378.34,0,0,1646.4521 -6539,8046,14522,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.2653313,8.1635847,0,0,0,-1019.3168,-9,-9,-9,2019,13,1,50,0,1,1,0,7.3867478,7.3867478,0,0,0,0,0,0,0,0,0,0,33.81,53.54,-9,-9,5,1,1,0,0,3,10,4,0,634,-642128.25,-103789.1,0,0,1013.8675 -6540,8047,14523,14524,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.0042839,7.6957312,0,2,3,93.463089,0,-9,-9,2019,9,0,35,35,1,0,0,6.3547635,6.3547635,0,0,0,1.1294901,0,1,1,0,0,0,57.09,46.7,48.55,45.7,5,4,2,0,0,3,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 -6540,8047,14524,14523,-9,-9,1,0,27,1,2,0,1,1,-9,0,2,7.3754935,7.4680834,0,2,-3,-148.06639,0,3,2,2019,16,6,32,25,1,6,0,5.609786,5.609786,0,0,0,0,0,1,1,0,0,0,48.55,45.7,57.09,46.7,6.666666666666667,1,1,0,0,3,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 -6540,8047,14525,-9,14524,14523,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-870.30908,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 -6540,8047,14526,-9,14524,14523,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.57874,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,3,0,538.75,83122.563,-28364.021,0,0,2587.7578 -6541,8048,14527,14528,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0909748,8.2414455,0,6,5,-125.56988,0,2,2,2019,3,0,40,0,1,0,0,11.795703,11.795703,0,0,0,0,0,0,0,0,2.0691316,0,57.76,54.51,46.39,60.99,10,1,1,0,0,6,6,5,1,975,876444.44,569299.19,138998.11,127607.84,3648.4111 -6541,8048,14528,14527,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8087454,8.8897734,0,6,-5,104.21067,0,2,2,2019,8,0,37,42,1,0,0,21.493456,21.493456,0,0,0,0,0,0,0,0,.82906455,0,46.39,60.99,57.76,54.51,8.333333333333334,1,1,0,0,6,6,5,1,975,876444.44,569299.19,138998.11,127607.84,3648.4111 -6542,8049,14529,14530,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.9723206,7.0973315,0,16,-2,-43.364342,0,3,2,2019,9,3,21,21,1,3,0,6.9752555,6.9752555,0,0,0,0,0,1,1,0,.82328695,0,54.48,40.1,49.88,52.95,6.666666666666667,2,3,0,0,9,4,2,1,739.33331,-46498.82,0,140120.91,132059.89,1123.9989 -6542,8049,14530,14529,14532,14533,1,1,42,0,1,0,2,2,-9,0,3,6.6122661,6.6752305,0,16,2,114.27299,0,3,2,2019,10,0,40,40,1,0,0,1.8690268,1.8690268,0,0,0,0,0,1,1,0,7.1966753,0,49.88,52.95,54.48,40.1,3.333333333333333,2,3,0,0,10,4,2,1,739.33331,-46498.82,0,140120.91,132059.89,1123.9989 -6542,8049,14531,-9,14529,14530,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.02734,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,739.33331,-46498.82,0,140120.91,132059.89,1123.9989 -6542,8050,14532,14533,-9,-9,1,0,74,0,1,0,3,3,-9,0,3,0,0,0,5,2,-59.665066,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,5.5084786,0,0,1,1,0,0,0,51,46,53,47,7,2,3,0,0,0,4,2,1,1162,301871.25,14289.268,84935.578,0,1230.2101 -6542,8050,14533,14532,-9,-9,1,1,72,0,1,0,3,3,-9,0,3,0,6.6720281,6.4411812,5,-2,83.139091,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.726269,6.672895,53,47,51,46,7,2,3,0,0,0,4,2,1,1162,301871.25,14289.268,84935.578,0,1230.2101 -6543,8051,14534,14535,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,7.710907,8.5323658,7.5497837,20,1,118.09073,0,2,2,2019,17,5,25,8,1,5,0,10.182032,10.182032,0,0,0,0,2,0,0,0,8.1475677,0,37.03,60.32,37.52,41.4,3.333333333333333,1,1,0,0,8,8,5,1,195,1137412.4,216102.03,676524.5,95955.281,5884.1929 -6543,8051,14535,14534,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,9.4411888,9.1372948,0,5,-1,-33.164936,0,-9,-9,2019,24,12,60,60,1,12,0,21.545429,21.545429,0,0,0,0,0,0,0,0,2.4744885,0,37.52,41.4,37.03,60.32,6.666666666666667,1,1,0,0,8,8,5,1,195,1137412.4,216102.03,676524.5,95955.281,5884.1929 -6543,8052,14536,-9,14534,14535,1,1,19,0,0,1,2,0,0,0,3,0,6.6287518,6.872889,0,0,-1112.4009,-9,1,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,6.6558013,0,49.19,48.82,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,872,-9264.668,21259.037,0,0,1351.4111 -6544,8053,14537,-9,14539,14538,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.0574,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,5,1,188,1366512.5,1141284.6,202868.88,0,4018.2373 -6544,8053,14538,14539,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.926671,9.072608,0,23,6,.44020897,0,2,2,2019,7,0,42,40,1,0,0,18.954916,18.954916,0,0,0,0,0,1,1,0,3.2131252,0,60.87,42.1,37.18,19.54,6.666666666666667,1,1,0,0,11,2,5,1,188,1366512.5,1141284.6,202868.88,0,4018.2373 -6544,8053,14539,14538,-9,-9,1,0,47,0,1,0,2,2,-9,0,1,8.6032658,8.3580532,0,23,-6,4.3746014,0,3,2,2019,17,4,32,32,1,4,0,14.844352,14.844352,0,0,0,0,0,1,1,0,0,0,37.18,19.54,60.87,42.1,3.333333333333333,1,1,0,0,11,2,5,1,188,1366512.5,1141284.6,202868.88,0,4018.2373 -6544,8054,14540,-9,14539,14538,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-984.4256,-9,2,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,38.4,59.31,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,788,0,0,0,0,0 -6545,8055,14541,14543,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.4209986,7.3198786,0,6,-6,102.45696,0,2,2,2019,9,0,65,75,1,0,0,3.2772141,3.2772141,0,0,0,0,0,1,1,0,2.9862852,0,64.40000000000001,36.46,51.19,49.37,8.333333333333334,1,1,0,0,9,12,3,1,617.66669,239289.47,197665.63,40012.484,0,1683.2859 -6545,8055,14542,-9,14541,14543,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1050.4099,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.2905476,0,52.72,55.58,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,617.66669,239289.47,197665.63,40012.484,0,1683.2859 -6545,8055,14543,14541,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.4428911,7.4957347,0,28,6,-81.845764,0,2,2,2019,7,0,60,65,1,0,0,3.5544252,3.5544252,0,0,0,0,0,1,1,0,1.2409863,0,51.19,49.37,64.40000000000001,36.46,8.333333333333334,1,1,0,0,9,12,3,1,617.66669,239289.47,197665.63,40012.484,0,1683.2859 -6545,8056,14544,-9,14541,14543,1,1,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-986.8924,1,1,1,2019,8,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.71,48.06,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,158,36431.363,0,0,0,-233.84921 -6545,8057,14545,-9,14541,14543,1,1,21,0,0,0,2,2,-9,0,4,7.5259662,7.4460659,0,0,0,-926.87762,0,2,2,2019,10,1,40,7,1,1,1,6.1393471,6.1393471,0,0,0,0,0,1,1,0,.8402009,0,50.46,45.77,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,423,-337635.84,0,0,0,1207.3102 -6546,8058,14546,14547,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1494055,7.6289735,6.6481891,17,-5,56.91671,0,3,3,2019,11,1,25,8,1,1,0,6.1677518,6.1677518,0,0,0,0,0,0,0,0,3.5613577,6.8830175,39.15,41.42,54,54,8.333333333333334,1,1,0,0,10,7,3,1,212.5,62793.539,34345.371,271369.78,133809.72,1035.8947 -6546,8058,14547,14546,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,0,0,17,5,15.086325,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,0,0,0,1.4289576,0,54,54,39.15,41.42,8,1,1,0,0,9,7,3,1,212.5,62793.539,34345.371,271369.78,133809.72,1035.8947 -6547,8059,14548,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.5240698,8.1652346,0,0,0,-997.7663,0,-9,-9,2019,10,2,55,55,1,2,0,12.182842,12.182842,0,0,0,0,0,0,0,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,3,8,5,0,423,16087.395,0,0,0,1881.0884 -6548,8060,14549,14550,-9,-9,1,0,64,0,0,0,3,3,-9,1,3,0,0,0,45,0,0,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51.23,40.31,7,2,3,0,0,0,6,1,1,641.5,445997.88,181900.5,154420.22,0,1528.5551 -6548,8060,14550,14549,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,45,0,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.23,40.31,49,48,8.333333333333334,2,3,1,0,0,6,1,1,641.5,445997.88,181900.5,154420.22,0,1528.5551 -6548,8061,14551,-9,14549,14550,1,1,41,0,0,0,3,3,-9,1,4,0,0,0,0,0,-919.86267,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,2,3,0,0,0,6,1,1,356,-63256.648,0,0,0,676.15039 -6548,8062,14552,-9,14549,14550,1,1,35,0,0,0,2,2,-9,0,4,7.0886254,6.8001213,0,0,0,-981.29974,-9,3,3,2019,10,0,20,0,1,1,1,5.5434361,5.5434361,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,10,6,3,1,4659,-32666.916,30804.102,0,0,-67.80143 -6548,8063,14553,-9,14549,14550,1,1,25,0,0,0,2,2,-9,0,4,7.632391,7.4939613,0,0,0,-952.68945,-9,3,3,2019,10,0,40,0,1,1,1,6.3270984,6.3270984,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,6,3,1,552,-57342.582,0,0,0,1252.5031 -6549,8064,14554,14555,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,0,0,9,-7,83.292984,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.7386336,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,4,3,1,469.5,1558066.5,1227357.4,216755.81,0,2740.0645 -6549,8064,14555,14554,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,8.1409798,8.0804882,25,7,67.657211,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9188485,8.3181391,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,9,4,3,1,469.5,1558066.5,1227357.4,216755.81,0,2740.0645 -6550,8065,14556,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.4606733,9.3068094,0,0,0,-873.26965,0,2,2,2019,7,0,37,65,1,0,0,35.402241,35.402241,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,700,-390368.94,155207.33,0,0,3824.3423 -6551,8066,14557,-9,14559,-9,1,0,11,1,2,1,3,0,-9,0,5,0,0,0,0,0,-951.08936,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,2,0,542,-12643.055,0,0,0,2347.145 -6551,8066,14558,-9,14559,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.598,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,542,-12643.055,0,0,0,2347.145 -6551,8066,14559,-9,-9,-9,1,0,37,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1100.6074,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,542,-12643.055,0,0,0,2347.145 -6552,8067,14560,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8373089,7.9316821,0,0,-1079.5837,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1190472,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,344,883663.94,598716.69,222721.86,0,2221.5161 -6553,8068,14561,14562,-9,-9,1,0,52,1,3,0,3,3,-9,0,3,0,0,0,5,-8,72.714066,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,51,49,7,2,3,0,0,0,6,2,1,171,19525.328,103154.48,0,0,2938.0046 -6553,8068,14562,14561,-9,-9,1,1,60,1,3,0,3,3,-9,0,3,7.3961129,7.3268428,0,29,8,46.118366,0,3,3,2019,10,0,16,30,1,1,0,14.547026,14.547026,0,0,0,0,0,1,1,0,0,0,51,49,48,49,7,2,3,0,0,1,6,2,1,171,19525.328,103154.48,0,0,2938.0046 -6553,8069,14563,-9,14565,14566,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.3926,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 -6553,8069,14564,-9,14565,14566,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.98615,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 -6553,8069,14565,14566,-9,-9,1,0,29,1,3,0,2,2,-9,0,5,0,0,0,5,-2,-109.19902,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.06,57.69,55.86,49.03,10,2,3,0,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 -6553,8069,14566,14565,14561,14562,1,1,31,1,3,0,2,2,-9,0,3,7.4664187,7.3800316,0,5,2,24.246643,0,3,3,2019,7,0,27,27,1,0,0,8.1673222,8.1673222,0,0,0,0,0,1,1,0,0,0,55.86,49.03,42.06,57.69,8.333333333333334,2,3,0,0,7,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 -6553,8069,14567,-9,14565,14566,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1127.5374,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,6,2,1,1263.6,-262587.97,-14974.238,0,0,2097.1965 -6553,8070,14568,-9,14561,14562,1,1,24,1,3,0,2,2,-9,0,4,8.1607141,8.2773056,0,0,0,-1075.2487,0,3,3,2019,10,0,44,44,1,1,1,9.1280584,9.1280584,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,6,4,1,649,366948.31,7986.1563,0,0,951.64191 -6554,8071,14569,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,6.994617,7.1314054,0,0,-960.23645,0,2,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.9518576,7.4280658,39.16,38.91,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,250,681363.19,86783.672,205530.59,0,1735.8973 -6555,8072,14570,14571,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.5008311,6.8139963,10,6,29.800478,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6770787,53,47,50,47,7,1,1,0,0,0,12,2,0,1085.5,344925.28,30402.68,299869.56,0,1905.8569 -6555,8072,14571,14570,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.7397466,4.8274946,10,-6,-7.7555027,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.8333073,50,47,53,47,7,1,1,0,0,0,12,2,0,1085.5,344925.28,30402.68,299869.56,0,1905.8569 -6556,8073,14572,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-929.58466,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.82,39.88,-9,-9,3.333333333333333,1,1,1,0,6,10,1,0,101,-416185.56,0,0,0,1495.1252 -6557,8074,14573,14574,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.8915572,7.9422541,6.9110909,37,-2,-4.4163976,0,-9,-9,2019,7,0,16,20,1,0,0,7.3247619,7.3247619,0,0,0,0,0,0,0,0,.084315561,7.4764857,54.96,53.17,58.32,50.22,10,1,1,0,0,12,9,5,1,1008.5,76866.922,79099.898,0,0,3237.5518 -6557,8074,14574,14573,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3019409,8.3319721,0,37,2,-129.35544,0,3,3,2019,10,0,40,7,1,0,0,10.561735,10.561735,0,0,0,0,0,0,0,0,.24521765,0,58.32,50.22,54.96,53.17,3.333333333333333,1,1,0,0,10,9,5,1,1008.5,76866.922,79099.898,0,0,3237.5518 -6558,8075,14575,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.28418,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,44.33,-9,-9,5,1,1,0,0,0,8,1,0,374,-90890.695,0,0,0,1224.167 -6559,8076,14576,14577,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,6.661212,7.0119414,0,9,-4,107.53281,0,-9,-9,2019,6,0,12,12,1,0,0,8.1471729,8.1471729,0,0,0,0,0,1,1,0,0,0,59.43,58.05,62.39,56.71,10,2,3,0,0,5,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 -6559,8076,14577,14576,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.9208679,8.7054853,0,9,4,36.429646,0,1,1,2019,6,0,42,42,1,0,0,18.017004,18.017004,0,0,0,0,0,1,1,0,7.5451269,0,62.39,56.71,59.43,58.05,10,1,1,0,0,9,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 -6559,8076,14578,-9,14576,14577,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.23206,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 -6559,8076,14579,-9,14576,14577,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.6681,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,10,4,1,613.5,517258.69,145010.05,358367.06,158667.91,3236.501 -6560,8077,14580,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1009.4498,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.64,15.66,-9,-9,3.333333333333333,1,1,0,0,1,2,1,1,163,291200.59,0,0,0,701.90979 -6561,8078,14581,14582,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,5.2265782,5.6653085,52,0,64.668823,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,1.3590744,0,0,1,1,0,4.8939667,5.1513042,53.32,16.26,61.27,46.03,1.666666666666667,1,1,0,0,0,6,2,1,571,853785.13,264226.03,448678.81,0,2403.7742 -6561,8078,14582,14581,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.026638,7.3138018,7,0,-139.88852,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.9576445,6.9469953,61.27,46.03,53.32,16.26,8.333333333333334,1,1,0,0,0,6,2,1,571,853785.13,264226.03,448678.81,0,2403.7742 -6562,8079,14583,14584,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.0901031,6.8399239,48,2,-45.467701,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2006574,7.4146633,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,11,3,1,1733,97363.156,429791.31,0,0,2574.7354 -6562,8079,14584,14583,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.1101875,6.6078882,48,-2,-22.713301,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3097491,6.7841148,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,11,3,1,1733,97363.156,429791.31,0,0,2574.7354 -6563,8080,14585,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,5.6161098,5.2396441,0,0,-912.24951,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3245211,5.3768673,56.11,39.54,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,463,258003.25,-152886.27,62822.305,0,1030.556 -6564,8081,14586,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.6496015,6.5614262,0,0,0,-900.51184,0,3,2,2019,13,1,13,12,1,1,0,6.6836624,6.6836624,0,0,0,0,42,1,1,0,0,0,49.36,50.28,-9,-9,8.333333333333334,2,3,0,1,8,1,2,1,76,-14920.413,-52670.887,0,0,173.6929 -6565,8082,14587,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,8.1855278,7.7805061,0,0,-1097.9667,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8887253,52,45,-9,-9,10,1,1,0,0,0,12,4,1,1097,909463.31,204180.09,239552.06,0,2146.989 -6566,8083,14588,-9,14589,14590,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1036.7527,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.8941815,0,47,60,-9,-9,7,1,1,0,0,0,7,4,1,201.66667,668519.63,685848.13,172437.8,0,2425.6921 -6566,8083,14589,14590,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7705803,7.7332177,0,23,-5,66.969177,0,2,2,2019,7,0,30,26,1,0,0,8.6260223,8.6260223,0,0,0,0,0,1,1,0,0,0,54.96,53.17,59.32,46.98,8.333333333333334,1,1,0,0,11,7,4,1,201.66667,668519.63,685848.13,172437.8,0,2425.6921 -6566,8083,14590,14589,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.1337147,7.8014669,0,24,5,60.125275,0,2,2,2019,10,0,30,33,1,0,0,15.683784,15.683784,0,0,0,0,0,1,1,0,0,0,59.32,46.98,54.96,53.17,8.333333333333334,1,1,0,0,11,7,4,1,201.66667,668519.63,685848.13,172437.8,0,2425.6921 -6566,8084,14591,-9,14589,14590,1,0,20,0,0,0,2,2,-9,0,2,7.6107368,7.6514702,0,0,0,-873.06061,0,2,2,2019,16,5,34,30,1,5,1,6.0157347,6.0157347,0,0,0,0,0,1,1,0,0,0,29.84,53.01,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,995,-79323.703,0,0,0,1122.7629 -6567,8085,14592,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,6.0642686,5.5593801,0,0,-1063.9563,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.5996165,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,2,0,1539,-11008.002,0,0,0,35.097855 -6568,8086,14593,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-909.69342,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,35.87,28.33,-9,-9,0,1,1,0,1,0,10,1,0,161,0,0,0,0,279.61636 -6569,8087,14594,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1106.0143,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,36.05,-9,-9,5,1,1,1,1,0,4,1,0,1275,21642.783,0,0,0,-403.32947 -6570,8088,14595,14596,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.2349315,7.6246452,47,-1,46.145847,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3545547,6.991931,49.3,59.89,60.29,52.11,10,1,1,0,0,0,5,4,1,302,1445197.5,1172095.3,188429.36,54269.43,3057.7375 -6570,8088,14596,14595,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.0071907,7.8607631,47,1,-4.0231724,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.21442744,7.9405379,60.29,52.11,49.3,59.89,1.666666666666667,1,1,0,0,7,5,4,1,302,1445197.5,1172095.3,188429.36,54269.43,3057.7375 -6571,8089,14597,-9,14599,14598,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.9918,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 -6571,8089,14598,14599,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,0,0,0,6,5,154.34378,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,3,4,1,0,0,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 -6571,8089,14599,14598,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7828054,8.5479536,0,13,-5,-75.557869,0,3,3,2019,10,0,45,35,1,1,0,11.145194,11.145194,0,0,0,0,0,1,1,0,1.2966614,0,50,55,53,55,8,3,4,0,0,4,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 -6571,8089,14600,-9,14599,14598,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1105.174,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,1,439.25,614098.19,193819.64,263416.72,43218.371,2306.6807 -6572,8090,14601,14602,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,45,-8,88.051041,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.55,52.01,57.16,56.15,8.333333333333334,1,1,0,0,3,4,2,1,746,250662.7,129265.8,107542.49,0,1340.8419 -6572,8090,14602,14601,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,5.4942398,5.0122099,45,8,89.683449,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7801342,4.9427443,57.16,56.15,42.55,52.01,10,1,1,0,0,6,4,2,1,746,250662.7,129265.8,107542.49,0,1340.8419 -6573,8091,14603,-9,14604,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.9746,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,273,-142169.72,0,0,0,1784.0588 -6573,8091,14604,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,6.7310686,6.7277508,5.3553786,0,0,-1042.8752,0,-9,-9,2019,11,0,16,18,1,0,0,6.9820948,6.9820948,0,0,0,0,0,1,1,0,5.1468911,0,54.98,44.8,-9,-9,1.666666666666667,1,1,0,0,1,4,2,0,273,-142169.72,0,0,0,1784.0588 -6574,8092,14605,14606,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.7304125,9.7121735,0,7,8,15.794901,0,2,2,2019,11,2,50,50,1,2,0,33.090244,33.090244,0,0,0,0,0,0,0,0,3.4647543,0,54.94,50.33,56,22.83,1.666666666666667,1,1,0,0,8,2,5,1,1322,1138504.1,932821.5,317247.06,183027.66,11905.137 -6574,8092,14606,14605,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.1248255,8.4177618,0,7,-8,-63.313839,0,2,3,2019,11,0,30,30,1,0,0,15.892661,15.892661,0,0,0,0,0,0,0,0,6.7051315,0,56,22.83,54.94,50.33,8.333333333333334,1,1,0,0,8,2,5,1,1322,1138504.1,932821.5,317247.06,183027.66,11905.137 -6575,8093,14607,-9,14610,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.2063,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 -6575,8093,14608,-9,14610,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-861.18469,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 -6575,8093,14609,-9,14610,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.9902,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 -6575,8093,14610,14611,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,2,0,-32.018169,1,2,3,2019,21,8,0,16,2,8,0,0,0,0,0,0,0,0,1,0,1,0,0,27.81,65.69,60.27,46.91,8.333333333333334,1,1,0,0,1,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 -6575,8093,14611,14610,-9,-9,1,1,40,0,3,0,3,3,-9,0,5,7.4428406,7.6300397,0,2,9,43.354218,0,-9,-9,2019,12,0,16,16,1,0,0,16.355585,16.355585,0,0,0,0,2,1,0,1,0,0,60.27,46.91,27.81,65.69,6.666666666666667,1,1,0,0,1,2,2,0,640.79999,85478.539,7125.7896,131066.46,119707.82,1606.3116 -6576,8094,14612,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.0074978,8.1628847,0,0,0,-901.1214,0,2,2,2019,7,0,40,42,1,0,0,9.5631456,9.5631456,0,0,0,0,0,1,1,0,.18217322,0,62.81,30.81,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,385,475665.22,211952.39,109867.37,29263.332,1143.8315 -6577,8095,14613,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,9.0922737,8.6918736,0,0,0,-1128.8589,0,2,2,2019,7,0,52,40,1,0,0,12.908511,12.908511,0,0,0,0,0,0,0,0,2.2076573,0,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,1792,566530.38,516988.72,256481,0,1963.6267 -6578,8096,14614,14617,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.1156473,8.2817183,0,9,-4,4.5731707,0,2,2,2019,11,2,37,30,1,2,0,9.7904987,9.7904987,0,0,0,0,0,1,1,0,0,0,46.85,51.26,49.86,55.31,8.333333333333334,1,1,0,0,10,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 -6578,8096,14615,-9,14614,14617,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.5553,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 -6578,8096,14616,-9,14614,14617,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-948.05231,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 -6578,8096,14617,14614,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.7764311,8.9431353,0,9,4,24.013414,0,2,1,2019,9,0,38,38,1,0,0,23.462584,23.462584,0,0,0,0,0,1,1,0,0,0,49.86,55.31,46.85,51.26,8.333333333333334,1,1,0,0,10,11,5,1,1050.25,359739.63,218012.23,215288.41,113835.74,3943.7087 -6579,8097,14618,14619,-9,-9,1,0,42,1,1,0,1,1,-9,0,3,0,0,0,17,0,-105.40792,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.53,51.25,57.16,56.15,8.333333333333334,2,3,0,0,6,8,4,1,807,1127903,616195.75,781324.31,0,1210.6433 -6579,8097,14619,14618,-9,-9,1,1,51,1,1,0,1,1,-9,0,4,8.4340229,8.4534893,0,17,9,93.990875,0,-9,-9,2019,8,0,38,50,1,0,0,17.69379,17.69379,0,0,0,0,0,1,1,0,7.8315578,0,57.16,56.15,56.53,51.25,10,2,3,0,0,2,8,4,1,807,1127903,616195.75,781324.31,0,1210.6433 -6579,8097,14620,-9,14618,14619,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.7373,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,807,1127903,616195.75,781324.31,0,1210.6433 -6579,8098,14621,-9,14618,14619,1,1,20,1,1,1,2,0,-9,0,4,0,0,0,0,0,-1003.9443,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,2.7728314,0,1,1,0,0,0,59.78,55.17,-9,-9,8.333333333333334,2,3,0,1,0,8,1,1,1498,0,0,0,0,0 -6580,8099,14622,14623,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.4040976,6.518281,7,4,13.79402,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7822828,6.428803,54.96,53.17,49,48,8.333333333333334,1,1,0,0,0,4,2,1,529.5,314091.34,330543.25,109951.92,0,1591.3677 -6580,8099,14623,14622,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.9233465,6.6634574,7,-4,7.5072408,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.7156674,6.8608813,49,48,54.96,53.17,7,1,1,0,0,4,4,2,1,529.5,314091.34,330543.25,109951.92,0,1591.3677 -6581,8100,14624,14625,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-86.659378,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,59.7,43.01,8.333333333333334,1,1,0,0,9,2,2,1,1359,309237.19,238313.5,74953.43,0,1961.7058 -6581,8100,14625,14624,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.0012698,7.3487377,47,2,-117.30882,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9807727,6.9906001,59.7,43.01,51.94,55.88,8.333333333333334,1,1,0,0,0,2,2,1,1359,309237.19,238313.5,74953.43,0,1961.7058 -6582,8101,14626,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,3,0,6.2890158,6.1584706,0,0,-1228.7117,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6016097,31.78,37.08,-9,-9,10,1,1,0,0,0,12,2,1,67,253234.31,0,163616.7,0,866.32294 -6583,8102,14627,14628,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.3347745,6.1629891,10,10,32.366016,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,40.189705,44.190498,409.76398,0,1,1,0,5.0563021,6.1275597,49.8,36.69,39.2,53.62,10,1,1,0,0,0,7,2,1,949.5,957410,163602.11,188671.41,0,1242.8905 -6583,8102,14628,14627,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,10,-10,-113.87626,0,3,2,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,1.8190478,0,39.2,53.62,49.8,36.69,5,1,1,0,0,1,7,2,1,949.5,957410,163602.11,188671.41,0,1242.8905 -6584,8103,14629,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.0260496,7.8708034,0,0,-999.87848,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1633091,7.8137746,61.26,51.57,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,543,1260314.4,372867.25,175698.38,0,2866.1091 -6585,8104,14630,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.7823505,8.6749353,0,0,0,-938.55341,0,2,2,2019,10,1,18,26,1,1,0,35.837299,35.837299,0,0,0,0,0,0,0,0,0,0,44.64,57.71,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,470,1327517,865384.13,546501,0,1585.881 -6586,8105,14631,14633,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.9963284,8.9517641,0,6,6,-107.84778,0,2,2,2019,6,0,45,45,1,0,0,19.577585,19.577585,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.37,56.93,8.333333333333334,1,1,0,0,8,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 -6586,8105,14632,-9,14633,14631,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.38586,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 -6586,8105,14633,14631,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.8993888,7.7717476,0,19,-6,-53.25346,0,2,2,2019,7,0,28,44,1,0,0,9.4930468,9.4930468,0,0,0,0,0,1,1,0,0,0,52.37,56.93,54.79,55.86,8.333333333333334,1,1,0,0,8,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 -6586,8105,14634,-9,14633,14631,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.0142,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,608,557313.75,115425.13,342786.06,0,4096.8584 -6587,8106,14635,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.0400743,7.1861563,0,0,-969.76849,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.7058156,6.9488401,45.55,55.86,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,276,-275434.41,0,0,0,1208.0491 -6588,8107,14636,14637,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.7363844,7.9439869,0,8,0,83.067413,0,2,1,2019,14,4,37,37,1,4,0,7.6982274,7.6982274,0,0,0,0,0,0,0,0,0,0,43.94,58.68,54.37,54.8,10,1,1,0,0,9,12,5,1,658,1015182.8,435821,475581.91,-9336.2334,9726.9805 -6588,8107,14637,14636,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.7577305,10.252673,0,8,0,-54.035446,0,2,2,2019,11,0,35,40,1,0,0,52.920902,52.920902,0,0,0,0,0,0,0,0,0,0,54.37,54.8,43.94,58.68,8.333333333333334,1,1,0,0,9,12,5,1,658,1015182.8,435821,475581.91,-9336.2334,9726.9805 -6589,8108,14638,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.6942582,7.5682273,0,0,-971.27795,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.028918,7.6378412,59.87,23.92,-9,-9,5,1,1,0,0,0,2,3,1,1360,136760.8,142861.8,212535.89,0,1296.6398 -6590,8109,14639,14640,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,7,0,0,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,30.74,52,54.51,0,1,1,0,0,0,1,1,0,296,-250137.73,0,0,0,1382.9656 -6590,8109,14640,14639,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,0,0,0,7,0,0,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52,54.51,39.04,30.74,8.333333333333334,1,1,0,1,0,1,1,0,296,-250137.73,0,0,0,1382.9656 -6591,8110,14641,14642,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7642145,7.9192948,10,1,-32.971172,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1802444,7.8040071,58.83,52.64,58.15,52.91,8.333333333333334,1,1,0,0,0,5,3,1,166.5,1225072.3,619663.25,303660.06,0,2686.9495 -6591,8110,14642,14641,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.7994661,6.5602994,10,-1,93.353775,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3166242,6.9430828,58.15,52.91,58.83,52.64,8.333333333333334,1,1,0,0,0,5,3,1,166.5,1225072.3,619663.25,303660.06,0,2686.9495 -6592,8111,14643,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,5.2486358,5.4044166,0,0,0,-1014.4911,0,2,2,2019,9,0,15,15,1,0,0,1.8930411,1.8930411,0,0,0,0,0,0,0,0,7.5120358,0,54.04,60.47,-9,-9,10,1,1,0,0,13,9,2,0,246,-139477.13,64443.902,0,0,1222.6531 -6593,8112,14644,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-969.97046,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6795225,0,40.71,62.41,-9,-9,6.666666666666667,1,1,0,1,8,12,1,1,1414,40407.289,0,99668.898,0,1278.6743 -6594,8113,14645,-9,14647,14646,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.15576,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 -6594,8113,14646,14647,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,7.1821103,7.2927437,4.7498231,21,3,-22.825579,0,-9,3,2019,11,0,45,40,1,0,0,4.1437888,4.1437888,0,0,0,0,0,0,0,0,6.460813,0,57.25,38.33,39.99,51.59,6.666666666666667,1,1,0,0,11,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 -6594,8113,14647,14646,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.513268,7.6667562,0,20,-3,54.533539,0,2,2,2019,18,6,33,28,1,6,0,7.5456271,7.5456271,0,0,0,0,0,0,0,0,8.1957922,0,39.99,51.59,57.25,38.33,6.666666666666667,1,1,0,0,11,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 -6594,8113,14648,-9,14647,14646,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.49762,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 -6594,8113,14649,-9,14647,14646,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.2478,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,771.59998,58813.113,166187.59,205105.98,119052.26,3102.1663 -6595,8114,14650,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,5,0,8.3784924,8.1326132,0,0,-1063.0657,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3343396,8.1605387,55.83,54.24,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1442,1291454.3,740861.38,243661.75,0,2840.2808 -6596,8115,14651,-9,14653,14652,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-980.87347,-9,1,1,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,3.2046723,0,49.52,54.09,-9,-9,10,1,1,0,0,1,12,5,1,519.33331,1380919,1223805,430946.22,325541.41,11105.163 -6596,8115,14652,14653,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.6117382,9.4483681,0,22,-1,23.983685,0,2,2,2019,8,0,55,55,1,0,0,34.371899,34.371899,0,0,0,0,2,0,0,0,4.3283086,0,52.72,55.58,60.29,52.11,8.333333333333334,1,1,0,0,9,12,5,1,519.33331,1380919,1223805,430946.22,325541.41,11105.163 -6596,8115,14653,14652,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.2119465,9.4075851,0,22,1,-41.516399,0,1,2,2019,7,0,31,36,1,0,0,37.690815,37.690815,0,0,0,0,0,0,0,0,0,0,60.29,52.11,52.72,55.58,10,1,1,0,0,9,12,5,1,519.33331,1380919,1223805,430946.22,325541.41,11105.163 -6596,8116,14654,-9,14653,14652,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1101.0029,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,52.37,56.93,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,497,0,0,0,0,0 -6597,8117,14655,14656,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2013311,7.9425955,0,38,-2,25.08098,0,2,3,2019,7,0,45,44,1,0,0,8.1121683,8.1121683,0,0,0,0,0,0,0,0,2.5804498,0,48.28,60.18,51.64,55.4,8.333333333333334,1,1,0,0,9,10,5,1,600,1737244.3,484382.69,1008286.6,0,3628.8394 -6597,8117,14656,14655,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5022249,8.3244238,0,39,2,-90.860512,0,3,3,2019,8,0,48,48,1,0,0,11.822915,11.822915,0,0,0,0,0,0,0,0,0,0,51.64,55.4,48.28,60.18,10,1,1,0,0,9,10,5,1,600,1737244.3,484382.69,1008286.6,0,3628.8394 -6598,8118,14657,14658,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.5804543,5.2054234,6,0,114.39991,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,2.5939276,5.1201282,54.79,55.86,59.36,40.22,8.333333333333334,1,1,0,0,5,12,2,1,660,170413.08,100704.14,79229.57,0,1946.8145 -6598,8118,14658,14657,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,6,0,-39.155346,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,59.36,40.22,54.79,55.86,5,1,1,0,0,2,12,2,1,660,170413.08,100704.14,79229.57,0,1946.8145 -6598,8119,14659,-9,14658,14657,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-991.82928,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,12,1,1,634,111891.11,0,0,0,568.23975 -6599,8120,14660,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.4595919,9.2657099,0,0,0,-953.90479,0,2,1,2019,15,3,43,50,1,3,0,30.590517,30.590517,0,0,0,0,0,0,0,0,2.5374615,0,32.37,60.51,-9,-9,3.333333333333333,2,3,0,0,10,6,5,1,2009,916550.19,869795.5,38539.297,76693.422,4650.2695 -6600,8121,14661,14664,-9,-9,1,1,56,0,2,0,1,1,-9,0,5,0,8.161273,8.3157473,25,3,-33.356888,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.465673,8.2370949,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,4,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 -6600,8121,14662,-9,14664,14661,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.71887,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 -6600,8121,14663,-9,14664,14661,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-766.42517,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.85,60.98,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 -6600,8121,14664,14661,-9,-9,1,0,53,0,2,0,1,1,-9,0,4,8.706274,8.8606482,0,24,-3,-8.0798731,0,1,1,2019,8,0,38,57,1,0,0,19.058676,19.058676,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,9,4,1,1641.75,589102.19,354165.91,450906.19,78368.422,4172.1328 -6600,8122,14665,-9,14664,14661,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-990.29492,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,366,155584.92,0,0,0,881.63507 -6600,8123,14666,-9,14664,14661,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-998.68811,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,592,-73118.922,0,0,0,-224.51372 -6601,8124,14667,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.6087246,9.6521177,0,0,0,-1043.4,0,2,1,2019,10,1,48,48,1,1,0,49.526768,49.526768,0,0,0,0,0,0,0,0,3.694674,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,492,465819.06,308059.97,0,0,3993.5374 -6602,8125,14668,14669,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.7079625,4.4512801,4,13,-80.463249,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.759099,53,47,47.12,56.68,7,1,1,0,0,0,10,2,1,256.5,247423.94,-37841.773,227306.08,0,1330.0413 -6602,8125,14669,14668,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,3.4927714,3.367208,41,-13,11.222415,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4688046,47.12,56.68,53,47,8.333333333333334,1,1,0,0,5,10,2,1,256.5,247423.94,-37841.773,227306.08,0,1330.0413 -6603,8126,14670,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1049.7605,0,2,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,29.53,24.61,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,397,114713.44,0,0,0,1995.4202 -6603,8126,14671,-9,14670,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.8141,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,397,114713.44,0,0,0,1995.4202 -6603,8126,14672,-9,14670,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-912.77124,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,1,0,397,114713.44,0,0,0,1995.4202 -6604,8127,14673,14674,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,5.8152752,6.2351799,7,8,-80.847221,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,23.817326,0,0,1,1,0,2.2088339,6.2288742,54.31,28.8,47.17,47.5,10,1,1,0,0,0,12,2,1,1546.5,36276.016,0,172639.84,0,1028.7234 -6604,8127,14674,14673,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,7,-8,-8.6347885,0,1,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5216365,0,47.17,47.5,54.31,28.8,8.333333333333334,1,1,0,0,0,12,2,1,1546.5,36276.016,0,172639.84,0,1028.7234 -6605,8128,14675,14676,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.4445333,7.0411005,0,56,-6,25.461159,0,-9,-9,2019,6,0,11,11,1,0,0,7.4327884,7.4327884,0,0,0,0,0,1,1,0,0,0,59.7,53.75,60.12,54.8,10,1,1,0,0,13,4,2,1,765,298459.25,0,89620.078,0,1269.2864 -6605,8128,14676,14675,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.511045,4.5871058,56,6,109.89005,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5934534,4.511497,60.12,54.8,59.7,53.75,10,1,1,0,0,0,4,2,1,765,298459.25,0,89620.078,0,1269.2864 -6606,8129,14677,-9,14679,14680,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1029.6525,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,2,0,0,0,0,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,1,6,1,0,564,-207744.83,0,0,0,356.27209 -6606,8130,14678,-9,14679,14680,1,1,20,0,0,0,2,2,-9,0,4,7.7653074,7.4735317,0,0,0,-890.39258,0,2,3,2019,4,0,40,0,1,0,1,6.4469194,6.4469194,0,0,0,0,2,0,0,0,0,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,2,6,3,0,441,199484.94,0,0,0,1059.8678 -6606,8131,14679,14680,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.6628881,8.1563425,0,2,-5,9.6145411,0,2,2,2019,22,11,15,44,1,11,0,28.573214,28.573214,0,0,0,0,0,0,0,0,0,0,39.61,18.47,55.36,51.57,3.333333333333333,4,2,0,0,11,6,3,0,431,-22279.453,-19477.91,106837.69,0,1439.5833 -6606,8131,14680,14679,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,5.8744764,6.1905851,2,5,46.247604,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,2,0,0,0,0,5.8376088,55.36,51.57,39.61,18.47,3.333333333333333,1,1,0,0,0,6,3,0,431,-22279.453,-19477.91,106837.69,0,1439.5833 -6607,8132,14681,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.5244164,8.144536,6.142045,0,0,-1089.6455,0,2,2,2019,12,3,35,25,1,3,0,7.7041984,7.7041984,0,0,0,0,0,1,1,0,6.4268336,0,46.79,40.85,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,2254,101407.41,0,0,0,3192.6885 -6608,8133,14682,14684,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.9270453,7.8507924,0,6,-2,45.219616,0,1,1,2019,12,3,23,38,1,3,0,12.644431,12.644431,0,0,0,0,0,1,1,0,1.8998077,0,45.26,56.19,45.61,54.5,8.333333333333334,1,1,0,0,4,4,4,1,805,124769.57,113948.51,184212.66,84430.984,3257.1833 -6608,8133,14683,-9,14682,14684,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.42682,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,805,124769.57,113948.51,184212.66,84430.984,3257.1833 -6608,8133,14684,14682,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.6265965,8.7186947,0,6,2,-80.180397,0,1,2,2019,16,5,48,55,1,5,0,14.091025,14.091025,0,0,0,0,0,1,1,0,3.8783031,0,45.61,54.5,45.26,56.19,8.333333333333334,1,1,0,0,6,4,4,1,805,124769.57,113948.51,184212.66,84430.984,3257.1833 -6609,8134,14685,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1004.27,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,0,6,1,0,1895,-80967.875,0,0,0,513.35303 -6609,8135,14686,-9,14685,-9,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1124.3572,-9,3,-9,2019,19,5,0,0,3,5,1,0,0,0,0,0,0,71.5,1,1,0,3.8380902,0,41.4,44.66,-9,-9,5,1,1,1,1,3,6,2,0,683,-124977.13,0,0,0,595.6181 -6609,8136,14687,-9,14685,-9,1,0,21,0,0,0,2,2,-9,0,3,6.7426786,6.939733,0,0,0,-938.66278,-9,3,-9,2019,13,1,17,0,1,1,1,6.8473158,6.8473158,0,0,0,0,74.5,1,1,0,0,0,38.16,44.66,-9,-9,5,1,1,0,0,2,6,2,0,256,-47630.672,0,0,0,146.04059 -6610,8137,14688,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1057062,6.9216533,0,0,-936.06934,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9091568,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,0,11,2,0,408,46661.227,125913.88,0,0,1072.5388 -6611,8138,14689,14690,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9045696,8.2028589,8,6,46.876759,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.2092104,53,47,29.6,44.79,7,1,1,0,0,0,13,4,1,848.5,2827057.5,2366416.5,407653.44,0,4607.6074 -6611,8138,14690,14689,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,8.0029573,7.9402366,8,-6,26.68322,0,1,1,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,4.1853909,8.3327837,29.6,44.79,53,47,6.666666666666667,1,1,0,0,2,13,4,1,848.5,2827057.5,2366416.5,407653.44,0,4607.6074 -6612,8139,14691,14692,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.7766595,7.4368587,56,-3,-56.309216,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,11.087564,0,74.5,1,1,0,0,7.3445296,27.43,45.64,54,46,6.666666666666667,1,1,0,0,0,12,3,1,493,937309.13,456376.06,300024.75,0,2497.0798 -6612,8139,14692,14691,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.0175405,6.1175117,6,3,-141.1727,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.111136,54,46,27.43,45.64,7,1,1,0,0,0,12,3,1,493,937309.13,456376.06,300024.75,0,2497.0798 -6613,8140,14693,14694,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.5853958,7.5742264,0,6,2,-50.247978,0,2,2,2019,13,2,25,0,1,2,0,5.365799,5.365799,0,0,0,0,0,0,0,0,4.9395356,0,50.8,48.58,36.63,54.1,6.666666666666667,1,1,0,0,5,6,4,1,587,519753.66,105266.51,219661.89,0,2470.3262 -6613,8140,14694,14693,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.4095049,8.2616825,0,6,-2,108.80498,0,3,3,2019,14,2,35,28,1,2,0,12.53597,12.53597,0,0,0,0,2,0,0,0,5.6569519,0,36.63,54.1,50.8,48.58,5,1,1,0,0,7,6,4,1,587,519753.66,105266.51,219661.89,0,2470.3262 -6613,8140,14695,-9,14694,14693,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1175.0082,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,2.1662738,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,587,519753.66,105266.51,219661.89,0,2470.3262 -6614,8141,14696,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.8552361,8.7129812,0,0,0,-961.56885,0,2,1,2019,20,8,48,37,1,8,0,12.47222,12.47222,0,0,0,0,0,1,1,0,0,0,17.16,63.07,-9,-9,1.666666666666667,1,1,0,0,4,12,5,1,903,-144043.03,-11310.776,0,0,2019.6859 -6615,8142,14697,14698,-9,-9,1,0,39,0,0,0,2,2,-9,1,2,0,6.6804757,6.4496861,21,-3,6.0952444,0,2,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,8.379838,6.7423215,43.65,29.11,48.4,50.83,6.666666666666667,1,1,0,0,10,7,3,1,1411,506185.5,248774.42,199527.25,0,2492.0269 -6615,8142,14698,14697,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.5635686,7.2536631,0,21,3,-57.739246,0,2,3,2019,15,4,18,16,1,4,0,12.645435,12.645435,0,0,0,0,7,1,1,0,0,0,48.4,50.83,43.65,29.11,6.666666666666667,1,1,0,0,13,7,3,1,1411,506185.5,248774.42,199527.25,0,2492.0269 -6616,8143,14699,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.6352401,6.9425459,0,0,-1087.5656,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8184276,6.7338505,61.12,51.57,-9,-9,10,1,1,0,0,3,13,2,1,277,697853.31,300623.44,203614.19,0,1489.6354 -6617,8144,14700,14701,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,6.9990363,7.1722002,0,8,1,-7.042069,0,3,3,2019,6,0,10,10,1,0,0,13.335406,13.335406,0,0,0,0,42,1,1,0,0,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,8,13,4,1,505,98423.703,-15345.48,0,0,2114.5503 -6617,8144,14701,14700,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.2902527,7.9576745,0,8,-1,53.112976,0,2,3,2019,6,0,42,41,1,0,0,9.2087822,9.2087822,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,0,1,1,0,0,8,13,4,1,505,98423.703,-15345.48,0,0,2114.5503 -6618,8145,14702,14703,-9,-9,1,1,53,0,0,0,2,2,-9,1,3,0,0,0,31,-7,-8.8745804,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,59.04,48.6,5,1,1,0,0,0,13,3,1,852.5,277827.19,-12204.766,170403.77,0,1195.2218 -6618,8145,14703,14702,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.5245581,7.5146589,0,31,7,32.769688,0,3,3,2019,7,0,30,30,1,0,0,9.2941942,9.2941942,0,0,0,0,96,1,1,0,0,0,59.04,48.6,39.15,41.42,5,1,1,0,0,12,13,3,1,852.5,277827.19,-12204.766,170403.77,0,1195.2218 -6618,8146,14704,-9,14703,14702,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1123.9419,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,408,0,0,0,0,-88.962318 -6619,8147,14705,-9,14707,14706,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.3489,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 -6619,8147,14706,14707,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.600131,8.665597,0,23,4,42.992744,0,2,2,2019,7,0,44,47,1,0,0,14.852635,14.852635,0,0,0,.62080663,0,1,1,0,0,0,54.69,57.47,54.1,59.11,8.333333333333334,1,1,0,0,9,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 -6619,8147,14707,14706,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.5089407,7.6922865,0,23,-4,-18.910887,0,2,2,2019,10,0,28,24,1,0,0,6.4690304,6.4690304,0,0,0,0,0,1,1,0,.42754138,0,54.1,59.11,54.69,57.47,8.333333333333334,1,1,0,0,9,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 -6619,8147,14708,-9,14707,14706,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4742,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,2147.25,161543.23,183230.33,165511.77,121647.48,3019.9141 -6620,8148,14709,-9,14712,14710,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.757,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,2,3,-9,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 -6620,8148,14710,14712,-9,-9,1,1,72,0,2,0,3,3,-9,0,4,0,0,0,15,26,0,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,56.33,51.68,37.49,56.03,10,2,3,0,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 -6620,8148,14711,-9,14712,14710,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.9758,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 -6620,8148,14712,14710,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,0,0,0,15,-26,0,0,3,3,2019,7,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,37.49,56.03,56.33,51.68,10,2,3,0,0,0,5,1,1,454.5,78592.68,0,215060.08,122982.11,1119.1914 -6621,8149,14713,-9,14716,14714,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.7511,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 -6621,8149,14714,14716,-9,-9,1,1,45,0,5,0,2,2,-9,0,4,8.6799307,8.7459774,0,7,1,-43.309956,0,3,3,2019,13,2,60,60,1,2,0,10.367318,10.367318,0,0,0,0,0,1,1,0,0,0,36.2,64.19,43.9,57.01,5,1,1,0,0,7,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 -6621,8149,14715,-9,14716,14714,1,0,11,0,5,1,3,0,-9,0,3,0,0,0,0,0,-1102.3112,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 -6621,8149,14716,14714,-9,-9,1,0,44,0,5,0,2,2,-9,0,3,0,0,0,7,-1,-45.349571,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.9,57.01,36.2,64.19,6.666666666666667,1,1,0,0,6,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 -6621,8149,14717,-9,14716,14714,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1028.8424,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 -6621,8149,14718,-9,14716,14714,1,1,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1017.1606,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 -6621,8149,14719,-9,14716,14714,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1045.8398,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,887.71429,-60348.75,69349.648,0,0,2929.8188 -6621,8150,14720,-9,14716,14714,1,1,19,0,5,0,2,2,1,0,3,6.6526747,6.7506566,0,0,0,-1122.8097,-9,2,2,2019,6,0,30,0,1,0,1,3.6855683,3.6855683,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,266,56402.137,0,0,0,630.70239 -6621,8151,14721,-9,14716,14714,1,1,18,0,5,1,2,0,0,0,3,0,0,0,0,0,-951.0097,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.033426672,0,47.15,56.66,-9,-9,10,1,1,0,0,0,7,1,1,155,141190.77,0,0,0,-183.30046 -6622,8152,14722,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1782131,7.7080841,7.7763572,0,0,-988.42285,0,3,3,2019,9,0,60,80,1,0,0,2.3164408,2.3164408,0,0,0,0,0,0,0,0,7.6617136,7.7655644,53,52,-9,-9,8.333333333333334,2,3,0,0,9,10,4,1,289,493086.59,200310,200943.63,30720.717,3176.772 -6623,8153,14723,14724,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.9472437,8.0879488,48,2,29.163687,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.046349,8.0055017,51.91,42.22,56.1,49.93,6.666666666666667,1,1,0,0,4,11,4,1,291,1574912.6,1012143,488159.84,0,3943.2058 -6623,8153,14724,14723,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.7034535,7.6507869,48,-2,81.584198,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1351385,7.6782775,56.1,49.93,51.91,42.22,10,1,1,0,0,0,11,4,1,291,1574912.6,1012143,488159.84,0,3943.2058 -6624,8154,14725,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.0008116,7.8107157,0,0,0,-1034.0643,0,-9,2,2019,6,0,21,35,1,0,0,14.409053,14.409053,0,0,0,0,0,0,0,0,0,0,54.77,39.97,-9,-9,10,1,1,0,0,10,12,4,0,511,257424.84,0,145733.09,69470.617,1723.3518 -6625,8155,14726,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.7455449,7.6471815,0,0,0,-824.12109,0,-9,-9,2019,14,2,40,20,1,2,0,6.4475455,6.4475455,0,0,0,0,0,0,0,0,0,0,29.08,61.11,-9,-9,5,1,1,0,0,1,4,3,0,997,-270794.22,0,0,0,470.2648 -6626,8156,14727,14728,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,6,-7,67.233711,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.16,50.53,24.93,19.95,6.666666666666667,1,1,0,0,0,11,2,0,1118,37567.496,0,184566.67,0,1279.5509 -6626,8156,14728,14727,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,4.6181526,4.264565,6,7,-39.757389,0,2,1,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,4.6630301,4.3606367,24.93,19.95,47.16,50.53,0,1,1,0,0,0,11,2,0,1118,37567.496,0,184566.67,0,1279.5509 -6627,8157,14729,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.9709501,8.7865019,0,0,0,-1068.717,0,3,-9,2019,11,2,43,11,1,2,0,23.038532,23.038532,0,0,0,0,0,0,0,0,0,0,56.61,44.14,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,305,906363.69,687556.25,349547.31,0,2319.3218 -6628,8158,14730,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7660866,8.6609192,0,0,0,-1018.3824,0,2,2,2019,8,0,38,40,1,0,0,16.308582,16.308582,0,0,0,0,0,0,0,0,1.4390901,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,555,130148.72,-22030.799,189036.91,192441.16,2101.5093 -6629,8159,14731,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.7569561,5.5685339,0,0,-1003.1748,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4116917,5.5004339,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,966,21135.953,42595.105,0,0,890.12512 -6630,8160,14732,14733,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.9528289,8.1680222,6.9993091,19,5,102.00919,0,2,2,2019,8,0,23,24,1,0,0,14.571112,14.571112,0,0,0,0,0,1,1,0,0,7.141396,51.24,58.84,44,38,10,1,1,0,0,11,12,4,1,232,1294341.3,970394,212438.52,16764.902,2414.978 -6630,8160,14733,14732,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,6.2777238,6.1503277,19,-5,20.672262,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.1361362,5.9280543,44,38,51.24,58.84,5,1,1,0,0,9,12,4,1,232,1294341.3,970394,212438.52,16764.902,2414.978 -6631,8161,14734,14735,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,7.0138621,6.9542866,51,1,102.07956,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.1406264,6.7694864,29.78,25.84,55.36,51.57,3.333333333333333,1,1,0,0,0,4,2,0,651,443961.94,285005.5,270039.81,0,1540.6987 -6631,8161,14735,14734,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,51,-1,-23.201778,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.36,51.57,29.78,25.84,8.333333333333334,1,1,0,0,0,4,2,0,651,443961.94,285005.5,270039.81,0,1540.6987 -6632,8162,14736,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.8537216,6.7055802,0,0,-1086.5956,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,2.69455,0,22.013054,0,1,1,0,1.5906683,7.0541692,62.42,32.41,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,304,-42523.043,84869.094,59114.949,0,109.00286 -6633,8163,14737,14738,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.0824785,8.1168842,51,4,-2.2744186,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.795818,8.2431927,55.73,53.98,63.99,32.39,10,1,1,0,0,5,9,4,1,547.5,1850408.8,776613.31,643750.25,0,3540.1616 -6633,8163,14738,14737,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.7873311,7.8724952,51,-4,31.367489,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.463279,7.7414689,63.99,32.39,55.73,53.98,10,1,1,0,0,2,9,4,1,547.5,1850408.8,776613.31,643750.25,0,3540.1616 -6634,8164,14739,14740,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.5615044,6.7331395,10,-4,20.691439,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0338697,6.334918,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,10,10,3,1,457,1095629.9,367737,401965,0,1667.1604 -6634,8164,14740,14739,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1554589,7.1092911,10,4,41.742199,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.800941,7.1881475,60.12,54.8,57.16,56.15,10,1,1,0,0,2,10,3,1,457,1095629.9,367737,401965,0,1667.1604 -6635,8165,14741,14742,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,2,-6,144.58162,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.35,23.26,50.2,52.61,3.333333333333333,1,1,0,0,0,4,3,0,398,680872.44,501027.84,280575,0,3135.2974 -6635,8165,14742,14741,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0141897,7.7307067,4.7099218,2,6,60.467545,0,-9,-9,2019,10,0,44,54,1,0,0,8.1410198,8.1410198,0,0,0,0,7,1,1,0,0,5.0009742,50.2,52.61,46.35,23.26,5,1,1,0,0,10,4,3,0,398,680872.44,501027.84,280575,0,3135.2974 -6636,8166,14743,-9,-9,14744,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1058.2996,-9,-9,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.9333,0,38.81,54.3,-9,-9,5,1,1,0,0,0,10,1,1,425,305051.09,0,0,0,1087.193 -6636,8167,14744,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.6994095,8.8835564,6.9741588,0,0,-1168.1047,0,-9,-9,2019,13,1,30,37,1,1,0,23.497078,23.497078,0,0,0,0,0,0,0,0,5.6500378,7.1354542,43.95,51.24,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,2058,335810.22,258935.34,49172.832,0,2583.447 -6637,8168,14745,14746,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.6760073,8.6841249,0,10,0,106.82855,0,1,1,2019,14,2,60,48,1,2,0,14.782023,14.782023,0,0,0,0,0,0,0,0,0,0,46.8,58.27,51,57,8.333333333333334,1,1,0,0,8,4,5,1,398.5,361336.94,219798.34,207329.39,114185.45,4241.5234 -6637,8168,14746,14745,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.7985611,8.8490238,0,11,0,-30.719532,0,2,2,2019,10,0,50,50,1,1,0,12.637349,12.637349,0,0,0,0,0,0,0,0,3.773895,0,51,57,46.8,58.27,7,1,1,0,0,10,4,5,1,398.5,361336.94,219798.34,207329.39,114185.45,4241.5234 -6638,8169,14747,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,5.3513312,5.391489,0,0,-1063.8704,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.44969398,5.1664848,29.24,54.65,-9,-9,1.666666666666667,1,1,1,0,10,7,2,1,778,315714.06,205876.28,0,0,-219.40021 -6639,8170,14748,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.7996535,7.9986024,0,0,0,-1091.4417,0,3,3,2019,11,0,50,50,1,0,0,6.6854343,6.6854343,0,0,0,0,0,1,1,0,0,0,36.18,48.3,-9,-9,3.333333333333333,2,3,0,1,7,11,2,0,500,261719.55,44755.91,0,0,1834.3287 -6640,8171,14749,14750,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.4059296,8.3779793,0,5,1,-65.184677,0,1,1,2019,7,0,47,45,1,0,0,11.546185,11.546185,0,0,0,0,0,0,0,0,0,0,53.94,40.38,41.17,59.31,6.666666666666667,2,3,0,0,10,9,5,1,185.5,247155.97,79860.477,601337.88,333992.5,3644.0771 -6640,8171,14750,14749,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5890808,8.5938845,0,5,-1,15.898929,0,-9,-9,2019,5,1,40,40,1,1,0,12.587471,12.587471,0,0,0,0,0,0,0,0,0,0,41.17,59.31,53.94,40.38,5,2,3,0,0,3,9,5,1,185.5,247155.97,79860.477,601337.88,333992.5,3644.0771 -6641,8172,14751,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.6920466,6.6831698,0,0,-1072.9495,-9,3,2,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,5.0909653,6.6980867,43.59,38.38,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,205,317611.19,77300.43,90056.594,0,1652.8649 -6642,8173,14752,14753,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,9.8750668,9.9082661,8.421876,40,3,117.77155,0,2,3,2019,6,0,20,20,1,0,0,98.314072,98.314072,0,0,0,0,0,0,0,0,8.9546165,8.9064932,53.83,53.69,57.1,41.16,8.333333333333334,1,1,0,0,8,5,5,1,987,1863907.4,1375070.5,390997.81,0,7804.6895 -6642,8173,14753,14752,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.9141846,5.6747751,40,-3,87.954567,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4358091,5.7090263,57.1,41.16,53.83,53.69,8.333333333333334,1,1,0,0,0,5,5,1,987,1863907.4,1375070.5,390997.81,0,7804.6895 -6643,8174,14754,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,9.4068336,9.3615274,0,0,0,-936.43799,0,1,1,2019,8,0,38,45,1,0,0,34.861973,34.861973,0,0,0,0,0,0,0,0,4.3569894,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,790,607680.63,-2247.7827,179956.59,0,4270.3906 -6644,8175,14755,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5154285,8.2413492,0,0,0,-927.64325,0,2,2,2019,6,0,40,30,1,0,0,11.488288,11.488288,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,336,284710.47,0,0,0,2212.2625 -6645,8176,14756,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,4,0,0,0,0,0,-971.11169,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.8606002,0,57.16,56.15,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,1288,93652.531,0,0,0,413.77106 -6646,8177,14757,-9,14759,14760,1,1,17,0,3,0,2,2,1,0,1,0,0,0,0,0,-1015.4527,-9,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.19,42.84,-9,-9,5,1,1,1,0,0,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 -6646,8177,14758,-9,14759,14760,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-988.48047,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 -6646,8177,14759,14760,-9,-9,1,0,53,0,3,0,2,2,-9,0,3,8.3457603,8.4050474,5.7542825,18,4,28.22377,0,1,3,2019,4,0,38,61,1,0,0,15.38527,15.38527,0,0,0,0,7,1,1,0,6.0346522,0,66.98,25.65,36.1,51.14,8.333333333333334,1,1,0,0,8,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 -6646,8177,14760,14759,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,8.6096668,8.5178938,0,12,-4,-63.850647,0,3,3,2019,13,1,46,47,1,1,0,12.304596,12.304596,0,0,0,0,0,1,1,0,0,0,36.1,51.14,66.98,25.65,5,1,1,0,0,10,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 -6646,8177,14761,-9,14759,14760,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1111.899,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,475.79999,761488.38,269092.75,583578.31,169910.77,3312.4055 -6646,8178,14762,14763,14759,14760,1,1,20,0,3,0,2,2,-9,0,4,8.2828426,8.0019131,0,2,-1,47.232399,0,2,2,2019,8,0,50,48,1,0,0,6.8649101,6.8649101,0,0,0,0,0,1,1,0,0,0,51.83,57.2,17.15,56.96,10,1,1,0,0,3,7,3,0,1055,54717.266,-68927.531,0,0,2438.2532 -6646,8178,14763,14762,-9,-9,1,0,21,0,3,0,2,2,-9,0,3,8.0814371,8.5315428,0,2,1,-56.794991,0,-9,-9,2019,27,11,55,52,1,11,0,7.5033717,7.5033717,0,0,0,0,0,1,1,0,0,0,17.15,56.96,51.83,57.2,6.666666666666667,1,1,0,0,2,7,3,0,1055,54717.266,-68927.531,0,0,2438.2532 -6646,8179,14764,-9,14759,14760,1,0,27,0,3,0,3,3,-9,0,3,0,0,0,0,0,-990.047,0,2,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,222,317654.25,0,0,0,664.73016 -6646,8179,14765,-9,14764,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.9984,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,222,317654.25,0,0,0,664.73016 -6647,8180,14766,-9,14767,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.073,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,201.5,162718.17,0,0,0,991.61621 -6647,8180,14767,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1181.6101,-9,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.53,49.9,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,201.5,162718.17,0,0,0,991.61621 -6648,8181,14768,14769,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9559722,7.9627299,0,4,0,42.582306,0,2,2,2019,5,0,37,35,1,0,0,10.185914,10.185914,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,6,4,4,1,575,-27602.143,66283.461,0,0,2870.251 -6648,8181,14769,14768,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.2173319,8.1423073,0,4,0,34.451809,0,-9,-9,2019,4,0,50,47,1,0,0,7.2110267,7.2110267,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,3,4,4,1,575,-27602.143,66283.461,0,0,2870.251 -6649,8182,14770,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.9906678,8.3349695,6.02914,0,0,-1042.3341,0,2,2,2019,18,6,23,21,1,6,0,15.988575,15.988575,0,0,0,0,0,1,1,0,1.8113015,6.3938255,36.38,47.94,-9,-9,3.333333333333333,1,1,0,0,12,2,4,1,290,-55023.719,96677.664,0,0,1515.6539 -6650,8183,14771,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,6.803751,6.4335427,0,0,0,-909.37109,0,3,2,2019,20,8,16,56,1,8,0,5.7085671,5.7085671,0,0,0,0,0,0,0,0,6.7037635,0,41.21,35.28,-9,-9,5,1,1,0,0,11,6,2,1,458,195369.78,301880.75,0,0,1183.9628 -6651,8184,14772,14773,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5490427,8.8672762,0,1,0,114.58326,0,3,3,2019,1,0,34,40,1,0,0,13.736269,13.736269,0,0,0,0,0,0,0,0,0,0,55.93,52.62,59.43,58.05,10,1,1,0,0,5,13,5,0,697.5,151844.22,4070.0674,326072.25,220914.83,3333.9951 -6651,8184,14773,14772,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.5058775,7.9679122,0,1,0,-25.572172,-9,-9,-9,2019,7,0,38,0,1,0,0,12.504409,12.504409,0,0,0,0,0,0,0,0,2.1985884,0,59.43,58.05,55.93,52.62,10,1,1,0,0,4,13,5,0,697.5,151844.22,4070.0674,326072.25,220914.83,3333.9951 -6652,8185,14774,14775,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.0503774,6.9266281,0,35,2,-12.744249,0,3,3,2019,7,0,25,23,1,0,0,5.5807519,5.5807519,0,0,0,0,0,0,0,0,.6995241,0,49.69,52.99,51,49,5,1,1,0,0,11,4,4,1,482,538773.94,142506.44,305664.16,83536.406,2361.1965 -6652,8185,14775,14774,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.3725882,8.3063765,0,8,-2,22.759956,0,-9,-9,2019,10,0,38,38,1,1,0,12.446777,12.446777,0,0,0,0,0,0,0,0,2.2811196,0,51,49,49.69,52.99,7,1,1,0,0,1,4,4,1,482,538773.94,142506.44,305664.16,83536.406,2361.1965 -6653,8186,14776,14777,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.7939339,5.9591064,51,-3,119.2803,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,51.743286,0,0,1,1,0,2.8165245,6.0379214,51.46,18.52,36.03,40.6,6.666666666666667,1,1,0,0,0,13,2,1,1225,157350.02,25328.088,0,0,1770.9507 -6653,8186,14777,14776,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,3,3,26.33168,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,40.6,51.46,18.52,5,1,1,0,0,0,13,2,1,1225,157350.02,25328.088,0,0,1770.9507 -6654,8187,14778,14779,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.017765,8.3981934,0,3,3,-23.899885,0,-9,-9,2019,7,0,34,46,1,0,0,12.900868,12.900868,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.52,56.95,1.666666666666667,1,1,0,0,12,1,3,0,220,394104.28,14133.702,111418.5,33666.461,1906.5042 -6654,8187,14779,14778,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,0,0,0,22,-3,-38.467979,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,54.2,57.49,8.333333333333334,1,1,0,0,4,1,3,0,220,394104.28,14133.702,111418.5,33666.461,1906.5042 -6654,8188,14780,-9,14779,14778,1,0,22,0,1,0,1,1,-9,0,3,7.2316341,7.2744884,0,0,0,-1090.1782,-9,2,2,2019,9,0,40,0,1,0,1,4.3313136,4.3313136,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,6,1,3,0,680,128890.7,0,0,0,1185.0536 -6655,8189,14781,14782,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7245121,8.8482399,0,8,-2,-9.3299885,0,-9,-9,2019,13,1,38,37,1,1,0,19.791557,19.791557,0,0,0,0,2,0,0,0,3.7039118,0,48.81,59.91,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,1301,1344672.3,1110401.8,682820.13,55793.5,4033.0713 -6655,8189,14782,14781,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,6.6988258,7.1032014,8,2,.66730529,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.9491873,6.324194,54.37,54.8,48.81,59.91,1.666666666666667,1,1,0,0,5,10,5,1,1301,1344672.3,1110401.8,682820.13,55793.5,4033.0713 -6656,8190,14783,-9,14784,14786,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.81207,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 -6656,8190,14784,14786,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.9374685,8.9717474,0,13,0,-105.54876,0,1,1,2019,8,0,45,45,1,0,0,23.399954,23.399954,0,0,0,0,0,0,0,0,0,0,52.38,55.95,57.06,57.76,8.333333333333334,1,1,0,0,8,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 -6656,8190,14785,-9,14784,14786,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.82947,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 -6656,8190,14786,14784,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.1103544,9.2831116,0,13,0,82.708801,0,2,2,2019,8,1,66,60,1,1,0,16.551037,16.551037,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.38,55.95,10,1,1,0,1,10,8,5,1,667.75,2199485.3,198071.06,1330620.5,214362.86,5592.1597 -6657,8191,14787,14790,-9,-9,1,1,41,1,2,0,2,2,-9,0,2,8.7683506,8.385232,0,8,8,47.090508,0,-9,-9,2019,19,7,40,40,1,7,0,18.234894,18.234894,0,0,0,0,0,1,1,0,2.8631139,0,30.95,45.59,46.61,56.93,5,1,1,0,0,10,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 -6657,8191,14788,-9,14790,14787,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.24811,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 -6657,8191,14789,-9,14790,14787,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.30365,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 -6657,8191,14790,14787,-9,-9,1,0,33,1,2,0,1,1,-9,1,3,8.0867128,8.5901833,0,8,-8,46.278252,0,2,1,2019,12,0,42,24,1,0,0,8.7707996,8.7707996,0,0,0,0,0,1,1,0,0,0,46.61,56.93,30.95,45.59,8.333333333333334,1,1,0,0,8,11,4,0,775.5,425544.47,240725.28,115023.62,66604.375,3406.875 -6658,8192,14791,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,7.3741994,7.5214653,0,0,-952.96008,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,.32261118,7.6506858,35.38,40.3,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,1163,947710.88,0,0,0,1805.0129 -6659,8193,14792,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2285337,5.885695,0,0,-994.37567,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.1626406,49,47,-9,-9,7,1,1,0,0,3,5,2,0,129,245339.66,209403.91,121449.73,0,948.22064 -6660,8194,14793,14794,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1210546,8.1340237,45,4,-62.408627,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9430079,8.1139631,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,4,6,4,1,1338.5,2201716.3,1033444.2,813804.06,0,2646.5835 -6660,8194,14794,14793,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.4596176,6.6305833,9,-4,40.543697,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7471309,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,7,6,4,1,1338.5,2201716.3,1033444.2,813804.06,0,2646.5835 -6661,8195,14795,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.4143829,7.6980877,0,0,0,-975.84235,0,-9,-9,2019,12,1,60,50,1,1,0,3.2397864,3.2397864,0,0,0,0,0,0,0,0,3.2738683,0,41.37,57.18,-9,-9,3.333333333333333,1,1,0,1,7,12,3,1,1504,489338.28,-87170.117,308936.22,0,943.81494 -6662,8196,14796,-9,-9,-9,1,0,40,0,4,0,2,2,-9,0,3,7.900589,7.8579249,0,0,0,-940.24115,0,2,2,2019,7,0,19,17,1,0,0,15.596451,15.596451,0,0,0,0,0,1,1,0,0,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 -6662,8196,14797,-9,14796,-9,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.6835,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 -6662,8196,14798,-9,14796,-9,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1125.3617,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 -6662,8196,14799,-9,14796,-9,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-996.70563,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 -6662,8196,14800,-9,14796,-9,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.8067,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,1,857.40002,-37214.414,30699.314,107257.52,45371.547,2382.2188 -6663,8197,14801,-9,14802,14803,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.0296,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 -6663,8197,14802,14803,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,9.1765251,9.3000498,0,26,-1,20.077803,0,2,2,2019,8,0,42,42,1,0,0,33.444424,33.444424,0,0,0,0,0,0,0,0,3.555268,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 -6663,8197,14803,14802,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.3146687,9.3818941,0,26,1,-.86268777,0,2,2,2019,8,0,42,44,1,0,0,31.128832,31.128832,0,0,0,0,0,0,0,0,4.525598,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,9,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 -6663,8197,14804,-9,14802,14803,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.67212,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,761.75,637250.25,360668.56,353231.91,92382.375,6849.8799 -6664,8198,14805,-9,14806,14808,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.2654,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 -6664,8198,14806,14808,-9,-9,1,0,31,0,2,0,1,1,-9,0,2,7.1659837,6.8990121,0,6,-1,-20.671511,0,3,-9,2019,17,5,27,22,1,5,0,4.8325539,4.8325539,0,0,0,0,0,1,1,0,0,0,45.58,31.91,51.65,39.74,3.333333333333333,1,1,0,1,2,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 -6664,8198,14807,-9,14806,14808,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9886,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 -6664,8198,14808,14806,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,7.7788701,8.0115957,0,6,1,99.783913,0,-9,-9,2019,15,3,40,45,1,3,0,5.6801157,5.6801157,0,0,0,0,0,1,1,0,0,0,51.65,39.74,45.58,31.91,6.666666666666667,1,1,0,1,7,4,3,0,454.5,52675.688,-42837.172,0,0,2194.3206 -6665,8199,14809,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.6793246,7.5562506,0,0,-1100.0729,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.5179579,7.5718088,43.96,62.06,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,199,2089.2148,27104.973,0,0,2000.646 -6666,8200,14810,14811,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.6470966,8.9426222,0,8,-8,-75.427391,0,1,1,2019,14,4,38,37,1,4,0,18.786438,18.786438,0,0,0,0,0,0,0,0,6.0837994,0,52.43,55.57,54.2,57.49,8.333333333333334,1,1,0,0,8,7,5,1,1231.5,1272480.5,539333,605227.38,259122.72,5727.0107 -6666,8200,14811,14810,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.4948845,9.6858215,0,8,8,55.688831,0,1,1,2019,9,0,39,38,1,0,0,42.34309,42.34309,0,0,0,0,0,0,0,0,5.7384458,0,54.2,57.49,52.43,55.57,6.666666666666667,1,1,0,0,8,7,5,1,1231.5,1272480.5,539333,605227.38,259122.72,5727.0107 -6667,8201,14812,14813,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-7,9.6280956,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.12,54.85,45.89,26.23,10,1,1,0,0,0,9,2,1,1487,608922.44,51411.375,194763.33,0,1632.5299 -6667,8201,14813,14812,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.0703635,6.0187449,8,7,-89.06897,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9163208,45.89,26.23,39.12,54.85,8.333333333333334,1,1,0,0,0,9,2,1,1487,608922.44,51411.375,194763.33,0,1632.5299 -6668,8202,14814,14815,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.7007866,8.3318672,4.6062961,19,-15,59.345272,0,2,2,2019,11,0,48,95,1,0,0,14.076982,14.076982,0,0,0,0,2,1,1,0,4.8764758,4.9409938,54.22,39.07,56.86,48.05,6.666666666666667,1,1,0,0,8,7,4,1,1159.5,1754865.6,61770.242,858328,0,2640.7354 -6668,8202,14815,14814,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.50629,4.2377653,19,15,5.6741734,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.7849426,4.5485821,56.86,48.05,54.22,39.07,10,1,1,0,0,0,7,4,1,1159.5,1754865.6,61770.242,858328,0,2640.7354 -6669,8203,14816,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-997.83704,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,6.5240827,0,50.634964,0,1,1,0,4.8980112,0,51,46,-9,-9,7,1,1,0,0,0,4,1,0,2342,157622.03,0,0,0,1210.2576 -6670,8204,14817,14818,-9,-9,1,1,54,0,1,0,3,3,-9,0,2,0,0,0,4,2,-42.619282,0,3,2,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.28,40.15,40.77,51.55,3.333333333333333,1,1,0,1,0,13,2,1,540.5,-39832.313,49512.148,248326.53,157561.3,3713.3872 -6670,8204,14818,14817,-9,-9,1,0,52,0,1,0,2,2,-9,1,4,7.1179943,7.3889389,0,4,-2,79.972054,0,1,3,2019,17,5,18,0,1,5,0,8.5770912,8.5770912,0,0,0,0,14.5,1,1,0,0,0,40.77,51.55,31.28,40.15,6.666666666666667,1,1,0,0,1,13,2,1,540.5,-39832.313,49512.148,248326.53,157561.3,3713.3872 -6671,8205,14819,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.6713939,6.6064997,0,0,-960.00128,0,2,2,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,3.062331,6.4400277,19.46,57.02,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,284,123616.96,-12408.935,115994.32,0,481.93237 -6672,8206,14820,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.8705626,7.0683246,0,0,-1013.4177,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6992569,7.0108404,54.41,26.76,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,849,447340.38,112792.95,366229.63,0,1096.3207 -6673,8207,14821,14822,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,9,-4,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,43.43,54.3,7,1,1,0,0,0,13,1,0,487.5,286166.69,45157.848,240830.08,0,2042.2251 -6673,8207,14822,14821,-9,-9,1,1,57,0,0,0,2,2,-9,1,4,0,0,0,9,4,0,0,-9,-9,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.43,54.3,47,49,6.666666666666667,1,1,1,0,2,13,1,0,487.5,286166.69,45157.848,240830.08,0,2042.2251 -6674,8208,14823,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1013.0633,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,6.73,56.61,-9,-9,5,4,2,0,1,5,9,1,0,652,0,0,0,0,478.42914 -6675,8209,14824,14825,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.9861145,8.419549,0,3,-1,-29.580048,0,-9,-9,2019,9,2,35,25,1,2,0,11.128278,11.128278,0,0,0,0,0,0,0,0,0,0,47.24,53.95,45.81,61.51,8.333333333333334,1,1,0,0,2,8,5,1,515,4285.2578,-49786.418,367913,267350.91,4633.2559 -6675,8209,14825,14824,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,9.3710003,9.1008511,0,3,1,-50.196278,0,2,2,2019,8,0,65,60,1,0,0,18.308752,18.308752,0,0,0,0,0,0,0,0,3.2717514,0,45.81,61.51,47.24,53.95,6.666666666666667,1,1,0,0,7,8,5,1,515,4285.2578,-49786.418,367913,267350.91,4633.2559 -6676,8210,14826,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1002.3567,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.15130068,0,46,23.63,-9,-9,6.666666666666667,1,1,0,0,2,5,1,0,379,-77199.633,0,0,0,1251.7457 -6677,8211,14827,-9,-9,-9,1,1,24,0,0,0,2,2,1,1,2,0,0,0,0,0,-1006.8561,-9,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,2.2150254,0,1,1,0,0,0,4.26,66.34999999999999,-9,-9,1.666666666666667,1,1,0,1,1,12,1,0,373,-112423.42,0,0,0,1248.4989 -6678,8212,14828,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.7406445,7.8307557,0,0,0,-1134.8417,0,3,3,2019,8,0,35,25,1,0,0,5.5274935,5.5274935,0,0,0,0,0,1,1,0,1.3630903,0,52.97,48.43,-9,-9,6.666666666666667,1,1,0,0,7,4,3,0,1156,-137330.17,0,0,0,1469.9594 -6678,8213,14829,-9,14828,-9,1,1,19,0,0,0,2,2,1,0,1,0,0,0,0,0,-962.05695,-9,3,-9,2019,10,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,40.27,38.55,-9,-9,6.666666666666667,1,1,1,1,2,4,1,0,816,145265.3,0,0,0,259.38593 -6679,8214,14830,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.8431211,8.006526,0,0,-1060.49,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3105578,7.9383039,57.51,47.91,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,663,1138209.4,700766.63,161308.95,0,1274.9581 -6680,8215,14831,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,2,0,0,0,0,0,-1006.1818,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,14.01,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,963,155097.13,0,0,0,2663.9629 -6680,8215,14832,-9,14831,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.06494,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,1,0,963,155097.13,0,0,0,2663.9629 -6680,8216,14833,-9,14831,-9,1,0,26,0,1,0,1,1,-9,0,4,7.6022191,7.344234,0,0,0,-778.01215,0,3,2,2019,11,0,42,-9,1,2,1,4.738843,4.738843,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,375,151712.34,10361.417,0,0,2651.4556 -6680,8217,14834,-9,14831,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1056.4055,-9,3,-9,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,38.62,47.42,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,365,163663.27,0,0,0,1305.2566 -6681,8218,14835,14836,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.3118067,9.1620865,0,16,4,-57.61652,0,2,2,2019,11,0,37,38,1,0,0,39.139294,39.139294,0,0,0,0,0,0,0,0,0,0,53.85,40.02,41.52,50.05,1.666666666666667,1,1,0,0,12,7,5,1,535.5,464629.69,114950.22,445903.13,145753.94,6200.2129 -6681,8218,14836,14835,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.1828232,9.3700962,0,16,-4,43.402565,0,2,2,2019,17,8,35,41,1,8,0,25.068359,25.068359,0,0,0,0,0,0,0,0,6.7151208,0,41.52,50.05,53.85,40.02,8.333333333333334,1,1,0,0,12,7,5,1,535.5,464629.69,114950.22,445903.13,145753.94,6200.2129 -6682,8219,14837,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.9642906,5.8261518,0,0,-1136.1637,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,6.943912,5.9254451,55.09,43.45,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,454,-102245.98,96610.078,0,0,643.6828 -6683,8220,14838,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.068542,7.1085949,0,0,-965.3078,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3953099,60.02,56.42,-9,-9,10,1,1,0,0,5,13,3,1,383,571748.31,25321.387,409745.28,0,1025.1636 -6684,8221,14839,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.0163555,7.0839391,0,0,-1083.2721,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,15.466168,0,0,1,1,0,2.0429153,6.5213246,53.52,37.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,773,676203.44,65573.836,187199.27,0,1466.5291 -6685,8222,14840,-9,14841,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.65558,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,1141,262273.63,12753.931,119360.37,56494.672,2805.2842 -6685,8222,14841,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.8996153,8.2024412,6.8243146,0,0,-1011.7675,0,1,2,2019,9,0,18,20,1,0,0,18.142916,18.142916,0,0,0,0,0,1,1,0,7.9095898,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,1141,262273.63,12753.931,119360.37,56494.672,2805.2842 -6685,8222,14842,-9,14841,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.2774,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1141,262273.63,12753.931,119360.37,56494.672,2805.2842 -6686,8223,14843,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.7158933,5.5983996,0,0,-1049.3024,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.1616141,5.7215309,44.6,37.64,-9,-9,5,1,1,0,0,0,1,2,1,1207,198539.8,60337.344,127015.71,-12732.962,1179.325 -6687,8224,14844,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.6051292,8.2577457,0,0,0,-1083.8972,0,1,1,2019,6,2,38,0,1,2,0,15.882676,15.882676,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,1.666666666666667,1,1,0,0,2,6,5,0,603,-224329.06,95670.672,116717.4,77031.383,1773.9042 -6688,8225,14845,14846,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,52,-3,-102.19463,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0396758,0,54.61,40.3,44.5,54.04,8.333333333333334,1,1,0,0,7,2,3,0,663.5,971358.13,644356.69,0,0,2660.686 -6688,8225,14846,14845,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.0939035,8.0447168,11,3,108.93278,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.523829,44.5,54.04,54.61,40.3,8.333333333333334,1,1,0,0,0,2,3,0,663.5,971358.13,644356.69,0,0,2660.686 -6689,8226,14847,-9,14849,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.78888,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,1,1,327.66666,-49668.531,0,0,0,1560.8687 -6689,8226,14848,-9,14849,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9207,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,327.66666,-49668.531,0,0,0,1560.8687 -6689,8226,14849,-9,14851,-9,1,0,39,1,2,0,2,2,-9,1,4,0,0,0,0,0,-854.11353,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,0,6,1,1,327.66666,-49668.531,0,0,0,1560.8687 -6689,8227,14850,-9,14849,-9,1,0,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-993.49615,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,120,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,6,1,1,600,0,0,0,0,0 -6689,8228,14851,-9,-9,-9,1,0,60,1,2,0,3,3,-9,0,3,0,0,0,0,0,-1017.2087,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,48,48,-9,-9,7,2,3,0,0,0,6,1,1,264,6413.8647,0,0,0,858.12622 -6690,8229,14852,14853,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.0676937,7.7648702,0,3,-10,-11.6507,0,2,2,2019,15,3,38,42,1,3,0,8.905447,8.905447,0,0,0,0,2,0,0,0,0,0,41.47,35.36,55.1,47.5,6.666666666666667,1,1,0,0,8,6,4,0,507.5,-73226.492,188748.86,0,0,2030.1305 -6690,8229,14853,14852,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,7.9827313,8.2623653,0,3,10,-100.87651,0,-9,-9,2019,11,0,42,45,1,0,0,10.145306,10.145306,0,0,0,0,0,0,0,0,3.9802229,0,55.1,47.5,41.47,35.36,5,1,1,0,0,12,6,4,0,507.5,-73226.492,188748.86,0,0,2030.1305 -6691,8230,14854,-9,-9,-9,1,0,27,0,1,0,1,1,-9,0,3,8.099144,8.2935781,0,0,0,-949.52393,0,2,1,2019,6,0,38,38,1,0,1,9.6686964,9.6686964,0,0,0,0,0,1,1,0,6.8167906,0,36.14,59.14,-9,-9,8.333333333333334,4,2,0,0,6,2,4,1,329,161824.94,-75987.242,0,0,2296.3862 -6691,8231,14855,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,7.5932469,7.7143712,0,0,0,-1006.71,0,2,-9,2019,9,0,40,0,1,0,1,6.2964621,6.2964621,0,0,0,0,0,1,1,0,0,0,30.75,61.56,-9,-9,5,4,2,0,0,3,2,3,1,582,29008.004,-47626.848,0,0,1560.1396 -6692,8232,14856,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,7.9896159,8.1038418,0,0,0,-913.04785,0,2,2,2019,6,0,82,40,1,0,0,4.236733,4.236733,0,0,0,.67909896,0,1,1,0,5.1051135,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,48,232174.8,312826.03,0,0,1358.2377 -6693,8233,14857,14858,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.0264997,8.1012344,0,6,-4,119.88698,0,-9,-9,2019,13,1,43,40,1,1,0,6.6838207,6.6838207,0,0,0,0,0,0,0,0,0,0,46.95,59.37,44.18,41.63,6.666666666666667,1,1,0,0,6,4,4,1,484,506234.66,-39438.52,15194.757,40523.922,2611.4011 -6693,8233,14858,14857,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.4043827,7.865839,0,6,4,-114.29321,0,3,2,2019,22,10,43,47,1,10,0,12.22556,12.22556,0,0,0,0,0,0,0,0,0,0,44.18,41.63,46.95,59.37,5,1,1,0,0,9,4,4,1,484,506234.66,-39438.52,15194.757,40523.922,2611.4011 -6693,8234,14859,-9,14857,14858,1,1,21,0,0,0,2,2,-9,0,5,7.8120322,7.868587,0,0,0,-1094.7045,0,2,2,2019,10,0,44,45,1,0,1,5.7909703,5.7909703,0,0,0,0,0,0,0,0,0,0,50.41,58,-9,-9,3.333333333333333,1,1,0,0,4,4,3,1,836,9040.8164,-132434.55,0,0,952.87579 -6694,8235,14860,14861,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,55,-1,52.24733,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,47.44,39.02,56.08,44.42,0,1,1,0,0,0,2,2,1,781,174239.33,161129.63,44423.078,0,1879.8591 -6694,8235,14861,14860,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.7694011,6.556519,6,1,23.336008,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3109407,6.4008079,56.08,44.42,47.44,39.02,10,1,1,0,0,0,2,2,1,781,174239.33,161129.63,44423.078,0,1879.8591 -6695,8236,14862,14864,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.6703482,8.9130278,0,6,0,-54.587616,0,-9,-9,2019,12,1,57,46,1,1,0,11.629607,11.629607,0,0,0,0,0,1,1,0,1.7857049,0,49.44,56.93,54.79,55.86,8.333333333333334,1,1,0,0,4,4,5,1,946,418985.09,279515.22,372510.59,255129.94,6499.6812 -6695,8236,14863,-9,14864,14862,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1115.467,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,946,418985.09,279515.22,372510.59,255129.94,6499.6812 -6695,8236,14864,14862,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,9.4247723,9.3083687,0,7,0,134.66664,0,2,1,2019,9,0,45,32,1,0,0,38.335758,38.335758,0,0,0,0,0,1,1,0,3.4265494,0,54.79,55.86,49.44,56.93,8.333333333333334,2,3,0,0,8,4,5,1,946,418985.09,279515.22,372510.59,255129.94,6499.6812 -6696,8237,14865,14866,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5551281,7.3740697,47,-4,39.231186,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,1.8393009,7.4804335,57.16,56.15,57.08,20.39,8.333333333333334,1,1,0,0,9,8,3,1,828,499285.06,110871.56,448366.06,0,2152.7988 -6696,8237,14866,14865,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,47,4,-39.955528,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,10.895916,0,0,1,1,0,0,0,57.08,20.39,57.16,56.15,5,1,1,0,0,0,8,3,1,828,499285.06,110871.56,448366.06,0,2152.7988 -6697,8238,14867,-9,-9,14868,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.9491,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,3,1,778.5,-125338.91,6908.229,0,0,1592.9392 -6697,8238,14868,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,1,7.788269,8.0550976,0,0,0,-1062.4854,0,3,3,2019,13,2,39,39,1,2,0,7.0799093,7.0799093,0,0,0,0,0,1,0,1,0,0,38.61,19.09,-9,-9,1.666666666666667,4,2,0,0,12,4,3,1,778.5,-125338.91,6908.229,0,0,1592.9392 -6698,8239,14869,-9,14870,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.8407,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,817.33331,132842.91,0,0,0,1575.8406 -6698,8239,14870,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1100.2837,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.11,48.24,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,817.33331,132842.91,0,0,0,1575.8406 -6698,8239,14871,-9,14870,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1025.6238,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,1,0,817.33331,132842.91,0,0,0,1575.8406 -6699,8240,14872,14874,-9,-9,1,1,43,1,1,0,1,1,-9,0,3,8.9978695,8.9035158,0,7,7,45.587627,0,2,1,2019,8,1,47,55,1,1,0,21.931715,21.931715,0,0,0,0,0,1,1,0,4.2183394,0,52.4,52.91,57.06,57.76,8.333333333333334,1,1,0,0,7,7,5,1,907.66669,652193.75,290276.53,549851.19,197339.44,4978.1963 -6699,8240,14873,-9,14874,14872,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-790.4386,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,907.66669,652193.75,290276.53,549851.19,197339.44,4978.1963 -6699,8240,14874,14872,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.0908804,7.9533863,0,7,-7,-85.435112,0,1,1,2019,4,1,44,50,1,1,0,9.1905489,9.1905489,0,0,0,0,0,1,1,0,2.5979116,0,57.06,57.76,52.4,52.91,8.333333333333334,1,1,0,0,7,7,5,1,907.66669,652193.75,290276.53,549851.19,197339.44,4978.1963 -6700,8241,14875,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,5.8340816,5.1252713,0,0,0,-1032.9946,0,2,2,2019,12,0,20,18,1,0,0,1.6034856,1.6034856,0,0,0,0,0,1,1,0,0,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,10,9,2,0,445,239706.59,0,0,0,1172.0879 -6700,8241,14876,-9,14875,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.5511,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,445,239706.59,0,0,0,1172.0879 -6701,8242,14877,14878,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.2463207,7.6024623,0,2,0,-4.0081849,0,-9,-9,2019,8,0,15,20,1,0,0,13.724697,13.724697,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.44,40.48,8.333333333333334,1,1,0,0,7,2,4,1,1227,346123.81,-52337.52,82671.695,56729.391,2571.5708 -6701,8242,14878,14877,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.4512844,8.3523407,0,2,0,-95.505501,0,2,2,2019,6,0,45,40,1,0,0,12.952463,12.952463,0,0,0,0,0,0,0,0,3.3487463,0,61.44,40.48,57.16,56.15,10,1,1,0,0,7,2,4,1,1227,346123.81,-52337.52,82671.695,56729.391,2571.5708 -6702,8243,14879,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-979.08075,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.5,20.07,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,2664,0,0,0,0,1593.0367 -6703,8244,14880,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0998392,8.0124903,0,0,0,-985.68427,0,3,3,2019,12,3,40,40,1,3,0,9.1067734,9.1067734,0,0,0,0,0,1,1,0,0,0,53.82,50.73,-9,-9,6.666666666666667,4,2,0,0,11,11,4,1,4021,80291.375,-179970.94,96418.25,50771.098,1781.5433 -6704,8245,14881,14882,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,55,-3,-.84379488,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.56073725,0,56.41,48.18,54.37,54.8,8.333333333333334,1,1,0,0,5,8,2,1,1003.5,534412.25,277550.63,435167.28,0,1721.9191 -6704,8245,14882,14881,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.256741,7.239006,55,3,219.74168,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0546041,7.6264272,54.37,54.8,56.41,48.18,8.333333333333334,1,1,0,0,0,8,2,1,1003.5,534412.25,277550.63,435167.28,0,1721.9191 -6705,8246,14883,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.4382386,6.8202324,0,0,-985.84625,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.2136865,0,49.27,56.95,-9,-9,8.333333333333334,2,3,0,0,4,10,2,0,1822,130413.11,0,0,0,297.14093 -6706,8247,14884,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,0,0,0,5,-17,72.582047,0,2,3,2019,23,11,0,45,3,11,0,0,0,0,0,0,0,0,0,0,0,3.5790191,0,45.91,59.89,59.53,56.44,5,2,3,1,0,11,10,5,1,250,-63487.402,0,0,0,485.51779 -6706,8248,14885,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.5348806,9.3936939,0,5,17,107.15842,0,-9,-9,2019,2,0,50,40,1,0,0,38.512058,38.512058,0,0,0,0,0,0,0,0,6.7785239,0,59.53,56.44,45.91,59.89,8.333333333333334,1,1,0,0,8,10,5,1,321,2922403,1580080.6,635823.25,0,6646.0356 -6707,8249,14886,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.4914713,6.5379839,0,0,-931.67877,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,6.553546,0,67.485588,0,1,1,0,1.3180338,6.7740335,54,44,-9,-9,8,1,1,0,0,0,5,2,0,503,172241.36,56812.418,114269.21,0,2048.207 -6708,8250,14887,14889,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9048104,6.8982105,0,7,-2,73.470764,0,2,2,2019,14,3,28,26,1,3,0,3.9634609,3.9634609,0,0,0,0,0,1,1,0,0,0,41.4,58.06,46.5,58.26,8.333333333333334,1,1,0,0,8,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 -6708,8250,14888,-9,14887,14889,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7075,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 -6708,8250,14889,14887,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3502903,8.5909157,0,7,2,-43.251316,0,2,2,2019,11,0,36,36,1,0,0,13.809996,13.809996,0,0,0,0,0,1,1,0,1.6622136,0,46.5,58.26,41.4,58.06,6.666666666666667,1,1,0,0,8,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 -6708,8250,14890,-9,14887,14889,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.5847,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1284.25,73760.594,120141.02,229899.05,23463.863,2476.6797 -6709,8251,14891,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-987.45319,0,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,32.11,36.8,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,601,0,0,0,0,1430.4071 -6709,8252,14892,-9,14891,-9,1,1,24,0,0,1,2,0,0,0,2,0,0,0,0,0,-983.09705,-9,3,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,40.03,53.42,-9,-9,5,1,1,0,0,0,9,1,0,421,-209623.72,0,0,0,365.73511 -6710,8253,14893,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,7.3429608,7.5380354,0,0,0,-970.01141,0,2,2,2019,10,2,16,16,1,2,0,13.188572,13.188572,0,0,0,0,0,1,1,0,2.5497017,0,58.07,33.06,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,144,587779.31,549726.44,247369,78682.461,1101.7964 -6711,8254,14894,-9,14897,14895,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.8126,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 -6711,8254,14895,14897,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,7.6523561,8.0516691,0,3,3,-115.57038,0,2,2,2019,15,3,45,47,1,3,0,6.436306,6.436306,0,0,0,0,2,1,1,0,4.5705361,0,48.17,36.02,49.54,53.32,5,1,1,0,0,8,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 -6711,8254,14896,-9,14897,14895,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.65802,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 -6711,8254,14897,14895,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,0,0,0,3,-3,-49.17194,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.54,53.32,48.17,36.02,3.333333333333333,1,1,0,0,0,7,3,0,1148.25,-201844.72,0,0,0,2527.5747 -6712,8255,14898,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.1196108,8.3351746,0,0,0,-1036.5721,0,2,2,2019,15,3,38,38,1,3,0,11.260421,11.260421,0,0,0,0,0,0,0,0,0,0,39.99,62.58,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,247,-72766.758,-22428.109,0,0,1257.7292 -6713,8256,14899,14901,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,0,9.0866108,8.9557447,8,4,-57.831139,0,2,2,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,8.5019283,7.8416805,57.16,56.15,57.16,56.15,1.666666666666667,1,1,0,0,8,9,5,1,917.33331,2368219.8,1041493.4,893367,0,5711.1509 -6713,8256,14900,-9,14901,14899,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.26581,-9,2,2,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,2,0,0,0,1.4627676,0,41.34,59.43,-9,-9,3.333333333333333,1,1,0,0,0,9,5,1,917.33331,2368219.8,1041493.4,893367,0,5711.1509 -6713,8256,14901,14899,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.6749372,7.4153333,0,8,-4,61.16785,0,2,2,2019,6,0,28,25,1,0,0,7.3003364,7.3003364,0,0,0,0,0,0,0,0,3.7733898,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,917.33331,2368219.8,1041493.4,893367,0,5711.1509 -6713,8257,14902,-9,14901,14899,1,0,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-993.08984,1,2,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.84139162,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,118,23691.141,0,0,0,-696.07263 -6714,8258,14903,14904,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,9.0212555,8.4776154,0,11,1,-13.996237,0,2,3,2019,13,1,90,45,1,1,0,11.101586,11.101586,0,0,0,0,0,0,0,0,0,0,36.7,55.02,41.69,46.77,3.333333333333333,1,1,0,0,12,9,5,1,240.5,898783.13,771146.13,433799.13,0,4315.9995 -6714,8258,14904,14903,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.3383398,8.2440319,0,11,-1,172.99446,0,3,3,2019,19,7,20,45,1,7,0,20.407505,20.407505,0,0,0,0,0,0,0,0,1.9781708,0,41.69,46.77,36.7,55.02,3.333333333333333,1,1,0,1,11,9,5,1,240.5,898783.13,771146.13,433799.13,0,4315.9995 -6715,8259,14905,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2791119,7.3975549,0,0,-1037.5023,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6890635,7.7289057,57.16,56.15,-9,-9,10,1,1,0,0,3,11,3,1,1161,330854.72,282818.28,0,0,1958.4393 -6716,8260,14906,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.9196081,7.8576803,0,0,0,-1127.3043,0,2,2,2019,10,0,39,38,1,0,0,12.517668,12.517668,0,0,0,0,2,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,396,213602.72,735.59277,0,0,951.17523 -6717,8261,14907,14908,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,41,1,19.784126,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.27,37.56,51.24,58.84,3.333333333333333,1,1,0,0,7,4,3,1,1367,83971.875,170972.41,0,0,1503.9634 -6717,8261,14908,14907,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9832149,8.1660967,0,36,-1,-41.130394,0,3,3,2019,11,0,38,43,1,0,0,14.692837,14.692837,0,0,0,0,5.48,0,0,0,0,0,51.24,58.84,42.27,37.56,5,1,1,0,0,12,4,3,1,1367,83971.875,170972.41,0,0,1503.9634 -6717,8262,14909,-9,14908,14907,1,1,32,0,0,0,2,2,-9,0,4,7.8467445,8.1692019,0,0,0,-893.16559,0,2,3,2019,6,0,45,40,1,0,1,8.8748579,8.8748579,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,793,-446100.56,-40616.313,0,0,1216.3274 -6718,8263,14910,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-879.16986,0,3,3,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,15.05,27.23,-9,-9,3.333333333333333,1,1,0,0,1,11,1,0,855,-208522.19,0,0,0,1871.6611 -6719,8264,14911,-9,14912,-9,1,1,47,0,0,0,1,1,-9,0,1,8.6951952,8.7979097,0,0,0,-940.5213,0,2,-9,2019,6,0,30,30,1,0,0,22.990763,22.990763,0,0,0,0,2,1,0,1,2.742331,0,45.22,48.57,-9,-9,8.333333333333334,4,2,0,0,10,7,5,0,203,-2470.1628,42676.422,0,0,2209.4402 -6719,8265,14912,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.4933,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,1.3331537,0,0,1,0,1,0,0,34.66,37.02,-9,-9,5,1,1,0,0,0,7,1,0,1001,-5333.4888,0,272305.56,0,839.10822 -6720,8266,14913,-9,-9,14914,1,1,37,0,0,0,1,1,-9,0,4,8.9230995,8.9884796,0,0,0,-961.67871,0,2,2,2019,7,0,45,45,1,0,0,19.409962,19.409962,0,0,0,0,0,0,0,0,7.44842,0,55.78,49.92,-9,-9,8.333333333333334,2,3,0,0,10,4,5,1,1203,260352.31,-46197.184,139894.23,116475.09,3061.6582 -6720,8267,14914,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.9305062,7.7891169,0,0,-1042.874,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.8163466,8.1058054,58.47,50.22,-9,-9,1.666666666666667,2,3,0,0,8,4,3,1,582,1321748,893969.56,115286.45,0,1484.7218 -6721,8268,14915,14916,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.454433,5.3505406,49,-11,-66.556618,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.1017077,5.7670116,51,42,60.59,20.78,10,1,1,0,0,0,6,2,1,1177.5,138252.73,63688.07,156156.94,0,1503.7039 -6721,8268,14916,14915,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,4.9974608,4.6357961,49,11,30.282572,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,4.7665062,60.59,20.78,51,42,6.666666666666667,1,1,0,0,0,6,2,1,1177.5,138252.73,63688.07,156156.94,0,1503.7039 -6722,8269,14917,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,5.4547791,5.5205841,5.1264324,0,0,-1095.1268,0,2,2,2019,11,0,20,25,1,0,0,1.172979,1.172979,0,0,0,0,0,1,0,1,6.078372,4.9344025,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,11,7,2,1,784,-156628.83,0,0,0,765.35083 -6722,8270,14918,-9,14917,-9,1,0,23,0,0,0,2,2,-9,0,4,7.961719,7.7325511,0,0,0,-1155.4257,0,2,-9,2019,13,2,37,37,1,2,1,8.1319437,8.1319437,0,0,0,0,0,1,0,1,2.145272,0,40.89,54.03,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,414,20867.439,19000.33,0,0,1232.8666 -6722,8271,14919,-9,14917,-9,1,0,19,0,0,0,2,2,-9,0,4,6.3708158,6.5138984,0,0,0,-818.54327,0,2,-9,2019,10,1,16,0,1,1,1,4.0778975,4.0778975,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,191,148945.39,0,0,0,229.17218 -6723,8272,14920,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,6.2910519,7.1378069,6.3539772,0,0,-1018.8288,0,2,2,2019,12,0,35,0,1,0,0,1.6521304,1.6521304,0,0,0,0,0,1,1,0,6.4786239,0,48.55,42.79,-9,-9,6.666666666666667,1,1,0,1,9,5,2,0,2030.5,-11172.109,-5205.2969,0,0,1153.0991 -6723,8272,14921,-9,14920,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.84509,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,2030.5,-11172.109,-5205.2969,0,0,1153.0991 -6724,8273,14922,-9,14923,14925,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.2068,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 -6724,8273,14923,14925,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.8917246,9.0626297,0,2,-4,-29.682983,0,1,1,2019,10,0,40,40,1,1,0,26.843023,26.843023,0,0,0,0,0,1,1,0,0,0,50,55,60.73,36.84,8,1,1,0,0,1,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 -6724,8273,14924,-9,14923,14925,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-966.70801,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 -6724,8273,14925,14923,-9,-9,1,1,51,0,2,0,1,1,-9,1,3,7.8678007,8.5060797,7.3586359,2,4,-112.30516,0,1,1,2019,6,0,24,25,1,0,0,13.82511,13.82511,0,0,0,0,0,1,1,0,8.009696,7.6910019,60.73,36.84,50,55,8.333333333333334,1,1,0,0,8,12,5,1,525,1796639.6,1348571,232285.8,0,6547.6201 -6724,8274,14926,-9,14923,14925,1,0,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1013.5676,1,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.22113968,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,3280,42723.961,0,0,0,-31.707224 -6725,8275,14927,14929,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.7668858,8.7364264,0,6,0,33.072826,0,-9,-9,2019,10,0,37,47,1,0,0,16.787933,16.787933,0,0,0,0,0,1,1,0,0,0,49.52,56.95,46.67,55.57,6.666666666666667,1,1,0,0,7,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 -6725,8275,14928,-9,14929,14927,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6714,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 -6725,8275,14929,14927,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.9169488,8.140192,0,6,0,-6.832293,0,2,2,2019,12,0,24,24,1,0,0,15.590466,15.590466,0,0,0,0,0,1,1,0,0,0,46.67,55.57,49.52,56.95,8.333333333333334,1,1,0,0,7,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 -6725,8275,14930,-9,14929,14927,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6335,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,710.5,95037.617,48833.605,196294.06,130891.52,3419.0623 -6726,8276,14931,14934,-9,-9,1,0,40,1,2,0,1,1,-9,0,2,8.9433022,8.8858747,0,6,-2,-52.587341,0,3,2,2019,9,0,18,18,1,0,0,56.677692,56.677692,0,0,0,0,14.5,1,1,0,7.8379006,0,53.23,47.51,47.3,53.21,8.333333333333334,1,1,0,0,7,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 -6726,8276,14932,-9,14931,14934,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.52777,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 -6726,8276,14933,-9,14931,14934,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.56677,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 -6726,8276,14934,14931,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.7317705,8.6582155,0,6,2,-25.593431,0,2,2,2019,10,0,50,41,1,0,0,16.734848,16.734848,0,0,0,0,0,1,1,0,0,0,47.3,53.21,53.23,47.51,10,1,1,0,0,7,2,5,1,637.25,539512.63,257675.5,122985.94,70286.414,7010.5938 -6727,8277,14935,14936,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.2708282,9.5668592,0,30,-1,.12102032,0,3,3,2019,12,3,45,43,1,3,0,27.577234,27.577234,0,0,0,0,0,0,0,0,3.5614669,0,47.62,56.48,51.14,60.45,6.666666666666667,1,1,0,0,9,7,5,1,875.5,1876088.8,1054690.6,748426.88,0,3142.5859 -6727,8277,14936,14935,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,0,0,30,1,-5.8460889,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,47.62,56.48,3.333333333333333,1,1,1,0,4,7,5,1,875.5,1876088.8,1054690.6,748426.88,0,3142.5859 -6727,8278,14937,-9,14935,14936,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1129.1987,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,0,1,1,0,0,6,7,1,1,926,368491.03,0,0,0,-258.81558 -6727,8279,14938,-9,14935,14936,1,1,25,0,0,0,2,2,-9,0,4,7.9435539,8.0385494,0,0,0,-1079.1116,0,1,2,2019,1,0,46,37,1,0,1,8.7855902,8.7855902,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,252,10359.362,-59762.035,0,0,677.73047 -6728,8280,14939,14940,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,7,-1,-156.47597,0,3,3,2019,6,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.16,56.15,10,1,1,0,0,7,2,2,1,801.5,142377.78,0,88765.742,0,1181.3058 -6728,8280,14940,14939,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,4.049161,3.9315395,7,1,4.8264942,0,3,3,2019,6,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6653056,4.0136299,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,7,2,2,1,801.5,142377.78,0,88765.742,0,1181.3058 -6729,8281,14941,14942,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.2618198,9.1000128,0,9,-4,48.856522,0,-9,-9,2019,6,0,50,49,1,0,0,20.773439,20.773439,0,0,0,0,2,0,0,0,7.4307709,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,11,12,5,1,456.5,1227569.3,1139855.1,237503.83,0,3726.6094 -6729,8281,14942,14941,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,4.6308661,4.6691465,0,9,4,-28.277323,0,1,1,2019,8,0,1,1,1,0,0,14.388154,14.388154,0,0,0,0,7,0,0,0,2.4425967,0,48.81,59.91,57.06,57.76,10,1,1,0,0,12,12,5,1,456.5,1227569.3,1139855.1,237503.83,0,3726.6094 -6729,8282,14943,-9,14942,14941,1,0,18,0,0,0,2,2,-9,0,5,7.4084854,7.8430791,0,0,0,-882.7298,0,1,1,2019,14,4,38,0,1,4,1,5.7143354,5.7143354,0,0,0,0,0,0,0,0,1.5580477,0,40.07,64.29000000000001,-9,-9,3.333333333333333,1,1,0,0,1,12,3,1,419,-197990.72,0,0,0,481.16791 -6730,8283,14944,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.3524065,8.414135,0,1,-5,12.956856,0,-9,-9,2019,12,0,42,40,1,0,0,13.711476,13.711476,0,0,0,0,71.5,1,1,0,0,0,41.47,59.33,50,55,3.333333333333333,1,1,0,0,9,7,4,0,450,118203.84,-89966.422,0,0,1593.0167 -6731,8284,14945,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.2466621,5.8825331,0,0,-945.19421,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.0709424,44.04,19.51,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,297,351883.38,26050.771,171060.64,0,1190.0636 -6732,8285,14946,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.1944952,8.3062258,0,0,0,-1025.3567,-9,2,2,2019,13,3,50,0,1,3,0,8.458149,8.458149,0,0,0,0,0,0,0,0,3.3676546,0,47.33,58,-9,-9,6.666666666666667,1,1,0,0,5,7,4,0,913,-111165.53,0,0,0,2941.4763 -6733,8286,14947,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.0692425,6.3404846,0,0,-957.24329,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3656671,6.1345067,52.24,50.75,-9,-9,10,1,1,0,0,0,4,2,1,281,-90055.914,156582.94,175368.42,0,805.48413 -6734,8287,14948,14949,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.9285312,5.6504245,30,0,37.052235,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.8069663,5.9545255,21.11,59.55,51.44,54.51,3.333333333333333,1,1,0,0,10,10,3,1,902.5,1421286.6,902667.63,498966.56,0,2754.6702 -6734,8287,14949,14948,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.419518,7.3546209,30,0,65.467949,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9254436,51.44,54.51,21.11,59.55,8.333333333333334,1,1,0,0,10,10,3,1,902.5,1421286.6,902667.63,498966.56,0,2754.6702 -6735,8288,14950,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,6.4074869,6.6475601,0,0,-789.76672,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,20.345802,0,0,1,1,0,0,6.573441,53.88,23.51,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,344,275261.41,-94047.469,202888.41,0,1266.9834 -6736,8289,14951,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,6.761929,6.8865328,0,0,0,-1014.8279,0,2,2,2019,11,2,20,25,1,2,0,6.239852,6.239852,0,0,0,0,0,1,1,0,6.4706135,0,62.42,32.41,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,904,-142367.27,0,0,0,1144.4314 -6737,8290,14952,-9,14953,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.26,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,648,57653.93,0,0,0,897.38782 -6737,8290,14953,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,5.0786924,4.8259192,0,0,0,-1115.2822,0,2,2,2019,11,0,18,16,1,0,0,1.5271984,1.5271984,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,9,9,2,0,648,57653.93,0,0,0,897.38782 -6738,8291,14954,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,0,0,0,0,-888.56256,-9,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.38,62.99,-9,-9,0,1,1,0,0,0,11,1,0,620,338714.56,0,0,0,807.26257 -6739,8292,14955,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,8.7211218,8.7209272,0,0,0,-1130.3575,0,2,2,2019,6,0,40,35,1,0,0,17.891701,17.891701,0,0,0,0,0,0,0,0,6.1854329,0,57.57,49.69,-9,-9,6.666666666666667,2,3,0,0,8,10,5,1,644,341170.13,0,0,0,2715.5852 -6740,8293,14956,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,2,0,10.646232,10.264352,0,0,-959.82501,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.0512576,9.7875538,46.95,31.56,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,2144,1546192.5,426965,1127144.4,0,15752.014 -6741,8294,14957,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.4836941,4.2543783,0,0,-921.91443,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.3088226,52,47,-9,-9,7,1,1,0,0,0,13,2,0,394,-150780.78,108902.06,0,0,2587.1328 -6742,8295,14958,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.2915096,6.4204836,0,0,-1004.5333,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,1.5708557,0,7,1,1,0,7.7204175,6.3699617,59.3,44.14,-9,-9,10,1,1,0,0,0,10,2,1,963,428329.31,114292.77,147096.09,0,1590.473 -6743,8296,14959,14960,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,9.4621096,9.3563251,0,3,3,-103.89436,0,2,3,2019,8,0,37,38,1,0,0,28.714571,28.714571,0,0,0,0,0,0,0,0,0,0,45.77,53.13,59.14,52.5,6.666666666666667,1,1,0,0,8,7,5,0,641,318952.94,-70775.219,570325.44,406197.69,5520.5469 -6743,8296,14960,14959,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.5633192,8.4450197,0,3,-3,-100.67178,0,-9,-9,2019,4,0,40,48,1,0,0,18.174105,18.174105,0,0,0,0,0,0,0,0,1.5166196,0,59.14,52.5,45.77,53.13,8.333333333333334,1,1,0,0,3,7,5,0,641,318952.94,-70775.219,570325.44,406197.69,5520.5469 -6744,8297,14961,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.1326418,7.7956967,0,0,0,-1032.6964,0,3,1,2019,11,0,48,38,1,0,0,8.8545065,8.8545065,0,0,0,0,0,1,1,0,.68137568,0,40.19,58.26,-9,-9,3.333333333333333,2,3,0,0,6,2,4,1,1196,7862.6323,-80535.289,107715.59,12787.192,951.47858 -6745,8298,14962,-9,14966,14963,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.7542,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 -6745,8298,14963,14966,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.8476934,9.060627,0,1,-1,53.79388,-9,2,2,2019,7,0,41,0,1,0,0,20.45936,20.45936,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,7,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 -6745,8298,14964,-9,14966,14963,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-895.45178,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 -6745,8298,14965,-9,14966,14963,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.0022,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 -6745,8298,14966,14963,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,0,0,0,1,1,76.010147,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,10,1,1,0,0,5,10,4,1,880.40002,413582.69,48892.547,247704.34,117007.4,2952.4773 -6746,8299,14967,14968,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,0,0,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,56.29,52.37,5,1,1,0,0,0,12,1,1,961.5,625824.56,-23989.299,185597.38,0,1550.5696 -6746,8299,14968,14967,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,0,0,10,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.29,52.37,57.92,51.82,8.333333333333334,1,1,0,0,9,12,1,1,961.5,625824.56,-23989.299,185597.38,0,1550.5696 -6747,8300,14969,14970,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.2880445,7.1570544,6,1,-.32373384,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.541893,7.3679156,43.83,37.91,50.08,55.33,5,1,1,0,0,4,7,3,1,1601.5,1130144.3,606211,263861.66,0,2289.1606 -6747,8300,14970,14969,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.4236603,7.1886239,6,-1,49.384235,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.71385,7.4181314,50.08,55.33,43.83,37.91,8.333333333333334,1,1,0,0,3,7,3,1,1601.5,1130144.3,606211,263861.66,0,2289.1606 -6748,8301,14971,14972,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,8,-1,47.018856,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,5.8460259,0,55.25,25,64.55,36.47,6.666666666666667,2,3,0,0,0,8,2,1,245.5,1169664.8,-35021.152,918576.88,0,1260.4272 -6748,8301,14972,14971,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.9404726,4.3895159,8,1,11.12679,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1573963,4.8710332,64.55,36.47,55.25,25,8.333333333333334,2,3,0,0,4,8,2,1,245.5,1169664.8,-35021.152,918576.88,0,1260.4272 -6749,8302,14973,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,8.7506599,8.9307699,0,0,0,-1007.7937,0,2,3,2019,25,9,47,45,1,9,0,13.312998,13.312998,0,0,0,0,14.5,1,1,0,0,0,17.21,41.4,-9,-9,1.666666666666667,1,1,0,0,8,2,5,1,435,-277894.03,1043.1488,0,0,1991.7372 -6750,8303,14974,14975,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,7.7678871,7.6512575,28,-5,53.940395,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,7.8362947,32.59,40.89,51.41,56.15,6.666666666666667,1,1,0,0,10,5,5,1,607,2527065.8,1797955.4,397691.88,0,4357.2402 -6750,8303,14975,14974,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.0284262,8.7212696,0,8,5,84.328247,0,3,3,2019,10,1,58,44,1,1,0,12.949218,12.949218,0,0,0,0,0,0,0,0,0,0,51.41,56.15,32.59,40.89,8.333333333333334,1,1,0,0,7,5,5,1,607,2527065.8,1797955.4,397691.88,0,4357.2402 -6751,8304,14976,14977,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,9.9568834,9.51752,0,14,1,85.890305,0,2,2,2019,7,0,53,50,1,0,0,35.06572,35.06572,0,0,0,0,0,0,0,0,5.0863118,0,62.39,56.71,57.74,49,10,1,1,0,0,9,9,5,1,914.33331,472109.25,66693.352,363658.44,62783.852,6110.9458 -6751,8304,14977,14976,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5369692,8.7299328,0,14,-1,-163.05414,0,1,1,2019,7,0,38,46,1,0,0,19.330362,19.330362,0,0,0,0,0,0,0,0,3.9212306,0,57.74,49,62.39,56.71,8.333333333333334,1,1,0,0,8,9,5,1,914.33331,472109.25,66693.352,363658.44,62783.852,6110.9458 -6751,8304,14978,-9,14977,14976,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.9613,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,914.33331,472109.25,66693.352,363658.44,62783.852,6110.9458 -6752,8305,14979,14980,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,40,-3,82.444366,0,2,1,2019,8,0,0,16,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,52.23,35.61,57.33,53.46,8.333333333333334,1,1,0,0,8,1,5,1,873.5,686746.94,497201.44,431447.5,0,3396.6572 -6752,8305,14980,14979,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.7026911,9.7555733,0,40,3,-6.5882955,0,2,2,2019,10,0,48,40,1,0,0,36.346821,36.346821,0,0,0,0,2,0,0,0,3.7025409,0,57.33,53.46,52.23,35.61,6.666666666666667,1,1,0,0,9,1,5,1,873.5,686746.94,497201.44,431447.5,0,3396.6572 -6753,8306,14981,14982,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.5911484,8.7795362,0,9,-1,-50.294273,0,2,2,2019,8,0,22,28,1,0,0,35.645874,35.645874,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,8,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 -6753,8306,14982,14981,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.646368,8.8987617,0,15,1,-75.67363,0,2,2,2019,10,0,48,48,1,0,0,18.31896,18.31896,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,1.666666666666667,2,3,0,0,9,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 -6753,8306,14983,-9,14981,14982,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.72,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 -6753,8306,14984,-9,14981,14982,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.19061,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,539,759226.88,377238,587093.63,212686.66,5273.7705 -6754,8307,14985,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.9952917,8.9485502,0,0,0,-994.50775,-9,3,3,2019,7,0,46,0,1,0,0,17.712181,17.712181,0,0,0,0,27,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,10,9,5,0,659,1704223.9,763551.38,688944.5,22940.355,2340.4094 -6755,8308,14986,14988,-9,-9,1,1,40,1,1,0,1,1,-9,0,3,9.5344791,9.756505,0,15,3,-17.136904,0,2,2,2019,10,0,45,42,1,0,0,44.935215,44.935215,0,0,0,0,0,1,1,0,5.2214022,0,47.83,52.32,46.08,57.2,6.666666666666667,1,1,0,0,10,9,5,1,249.66667,1891478.6,1154817,362035.94,0,10197.163 -6755,8308,14987,-9,14988,14986,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1158.1459,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,249.66667,1891478.6,1154817,362035.94,0,10197.163 -6755,8308,14988,14986,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,9.0481253,9.0166893,0,14,-3,56.736023,0,2,2,2019,14,2,30,28,1,2,0,28.197577,28.197577,0,0,0,0,0,1,1,0,6.9381113,0,46.08,57.2,47.83,52.32,6.666666666666667,1,1,0,0,10,9,5,1,249.66667,1891478.6,1154817,362035.94,0,10197.163 -6756,8309,14989,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.6337309,7.6286292,0,0,-989.08588,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.7815838,7.7695708,55.83,37.52,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,569,909689.13,161558.2,315275.84,0,1849.074 -6757,8310,14990,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.0170708,6.0935311,0,0,-1020.9213,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.1372166,44.25,29.98,-9,-9,5,1,1,0,1,0,5,2,1,381,260036.44,-2471.6208,0,0,1350.7235 -6758,8311,14991,-9,14992,-9,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.8967,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,1135.6666,-17729.453,0,0,0,1698.3163 -6758,8311,14992,-9,-9,-9,1,0,33,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1012.7607,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.12,55.95,-9,-9,8.333333333333334,1,1,1,0,0,11,1,0,1135.6666,-17729.453,0,0,0,1698.3163 -6758,8311,14993,-9,14992,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-917.62891,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,1135.6666,-17729.453,0,0,0,1698.3163 -6759,8312,14994,-9,14995,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.6975,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,732,202533.55,0,0,0,284.47266 -6759,8312,14995,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.8570809,6.8069024,0,0,0,-877.98175,-9,2,2,2019,15,3,16,0,1,3,0,7.2709942,7.2709942,0,0,0,0,0,1,1,0,0,0,47.32,47.16,-9,-9,5,1,1,0,1,1,2,2,0,732,202533.55,0,0,0,284.47266 -6760,8313,14996,14997,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,8.5084467,8.8137589,0,3,-8,-55.732708,0,-9,-9,2019,11,0,37,37,1,0,0,15.036329,15.036329,0,0,0,0,0,1,1,0,7.4494758,0,52.43,55.57,54.1,59.11,6.666666666666667,1,1,0,0,3,10,4,1,932.33331,-61659.488,1237.7979,0,0,4902.5127 -6760,8313,14997,14996,-9,-9,1,1,36,1,1,0,2,2,-9,0,5,7.7799048,7.9849081,0,3,8,-69.941765,0,3,2,2019,7,1,56,55,1,1,0,5.8026838,5.8026838,0,0,0,0,0,1,1,0,8.9070082,0,54.1,59.11,52.43,55.57,6.666666666666667,1,1,0,0,8,10,4,1,932.33331,-61659.488,1237.7979,0,0,4902.5127 -6760,8313,14998,-9,14996,14997,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.3677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,932.33331,-61659.488,1237.7979,0,0,4902.5127 -6761,8314,14999,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.7434659,6.699523,0,0,0,-1011.5054,0,3,3,2019,16,4,15,15,1,4,0,7.6199884,7.6199884,0,0,0,0,0,1,1,0,.74709582,0,38.17,41.83,-9,-9,5,1,1,0,0,1,6,2,0,535,-99387.523,-18588.316,94039.039,0,948.38507 -6762,8315,15000,-9,15004,15003,1,0,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1092.0104,-9,2,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,3,1,1,-9,0,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 -6762,8315,15001,-9,15004,15003,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1015.2031,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 -6762,8315,15002,-9,15004,15003,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-945.59766,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 -6762,8315,15003,15004,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,6.9831438,6.808785,0,6,6,-38.560448,0,-9,-9,2019,10,0,40,20,1,1,0,2.8351038,2.8351038,0,0,0,0,0,1,1,0,0,0,51,56,47.7,48.03,7,2,3,0,0,1,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 -6762,8315,15004,15003,-9,-9,1,0,31,0,3,0,2,2,-9,0,3,0,0,0,17,-6,112.44386,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.7,48.03,51,56,3.333333333333333,2,3,0,1,0,2,2,0,904.40002,10648.564,38285.664,0,0,1977.452 -6763,8316,15005,15006,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.9156528,5.7765574,62,2,-57.239704,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,1,0,49.356079,0,0,1,1,0,0,5.9595022,41.14,26.12,29.08,35.47,5,1,1,0,0,0,7,2,0,237.5,388732.84,60642.949,214396.13,0,1996.4558 -6763,8316,15006,15005,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,62,-2,18.577494,0,3,-9,2019,16,5,0,0,4,5,0,0,0,1,2.441664,0,24.092562,74.5,1,1,0,0,0,29.08,35.47,41.14,26.12,8.333333333333334,1,1,0,0,0,7,2,0,237.5,388732.84,60642.949,214396.13,0,1996.4558 -6764,8317,15007,-9,-9,15008,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8301,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,258.5,-268047.53,0,0,0,1313.3057 -6764,8317,15008,-9,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,7.5964723,7.6002674,0,0,0,-1050.0504,-9,-9,-9,2019,10,0,37,0,1,0,0,7.6650949,7.6650949,0,0,0,0,0,1,1,0,0,0,57.6,57.49,-9,-9,10,1,1,0,0,5,10,3,0,258.5,-268047.53,0,0,0,1313.3057 -6765,8318,15009,15010,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,26,4,0,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,7,1,1,0,0,0,28.78,29.2,48.12,18.77,1.666666666666667,1,1,0,0,0,12,1,0,3292.5,131723.3,0,0,0,627.47302 -6765,8318,15010,15009,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,26,-4,0,0,-9,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.12,18.77,28.78,29.2,6.666666666666667,1,1,0,0,0,12,1,0,3292.5,131723.3,0,0,0,627.47302 -6766,8319,15011,-9,15012,15013,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.9352,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 -6766,8319,15012,15013,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.6955128,8.5747938,0,2,-3,13.279081,0,2,2,2019,10,0,38,38,1,1,0,15.692627,15.692627,0,0,0,0,0,1,1,0,0,0,50,55,42.26,41.98,8,2,3,0,0,11,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 -6766,8319,15013,15012,-9,-9,1,1,50,0,2,0,1,1,-9,0,2,8.8960075,9.1193609,0,2,3,46.81282,0,-9,-9,2019,12,0,40,50,1,0,0,27.473507,27.473507,0,0,0,0,0,1,1,0,4.4736676,0,42.26,41.98,50,55,1.666666666666667,2,3,0,0,11,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 -6766,8319,15014,-9,15012,15013,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.0647,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1083.75,2909896.3,89010.773,854178.75,106399.06,4928.5264 -6767,8320,15015,15016,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.0478301,6.265379,7,1,-48.812828,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.37708,6.2203851,49.52,50.14,51.28,35.77,10,1,1,0,0,0,2,2,1,1388,336956.72,172284.36,104818.69,0,1108.375 -6767,8320,15016,15015,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,56,-1,39.697468,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.28,35.77,49.52,50.14,10,1,1,0,0,0,2,2,1,1388,336956.72,172284.36,104818.69,0,1108.375 -6768,8321,15017,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-999.07025,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,19.76,-9,-9,5,1,1,0,1,0,12,1,0,1723,87388.617,0,0,0,305.50281 -6769,8322,15018,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.0792513,6.1895452,0,0,-999.97528,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0543814,42.15,24.44,-9,-9,5,1,1,0,0,5,11,2,1,1436,-109842.66,124721.7,0,0,826.84778 -6769,8323,15019,-9,15018,-9,1,1,35,0,0,0,2,2,-9,0,3,7.5707235,7.6710019,0,0,0,-1029.7085,0,3,2,2019,6,1,26,18,1,1,0,7.5918336,7.5918336,0,0,0,0,2,1,1,0,0,0,48.05,53.56,-9,-9,6.666666666666667,1,1,0,0,11,11,3,1,180,-56442.355,-48190.906,114818.84,64749.305,347.58862 -6769,8324,15020,-9,15018,-9,1,1,32,0,0,0,2,2,-9,0,2,7.1433949,7.1339927,0,0,0,-1061.0494,0,2,2,2019,7,0,17,34,1,0,0,8.2174864,8.2174864,0,0,0,0,0,1,1,0,0,0,46.52,47.87,-9,-9,5,1,1,0,1,8,11,2,1,855,-143771.05,24084.705,0,0,845.83386 -6770,8325,15021,15022,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,0,0,0,32,-1,-65.907303,0,2,2,2019,22,10,0,40,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,31.93,58.41,6.666666666666667,1,1,0,0,8,4,4,1,454.5,1553491.8,950125,362949.25,0,3850.7883 -6770,8325,15022,15021,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.687417,8.8298817,0,32,1,51.328484,0,1,1,2019,20,8,88,-9,1,8,0,7.3101854,7.3101854,0,0,0,0,0,1,1,0,7.6831422,0,31.93,58.41,44.66,57.83,8.333333333333334,1,1,0,0,8,4,4,1,454.5,1553491.8,950125,362949.25,0,3850.7883 -6770,8326,15023,-9,15021,15022,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-957.14148,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,803,112745.49,0,0,0,89.244698 -6770,8327,15024,-9,15021,15022,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1081.786,1,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,2.7730732,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,4,1,1,400,51103.879,-74042.57,0,0,-142.27632 -6771,8328,15025,-9,15026,15027,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-963.76782,0,3,2,2019,25,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,31.49,43.99,-9,-9,1.666666666666667,2,3,0,0,2,8,1,1,532,332657.84,24346.91,0,0,0 -6771,8329,15026,15027,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,6.9791222,6.9329996,0,40,-8,52.224258,0,3,3,2019,12,0,16,15,1,0,0,7.9952502,7.9952502,0,0,0,0,0,1,1,0,2.6831751,0,36.18,48.3,38.16,44.66,6.666666666666667,1,1,0,0,11,8,2,1,1575,541642.06,223466.53,205474.72,0,1053.748 -6771,8329,15027,15026,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,11,8,-40.607727,0,-9,-9,2019,20,7,0,0,4,7,0,0,0,1,1.4223295,3.1028597,21.981674,14.5,1,1,0,2.9916615,0,38.16,44.66,36.18,48.3,5,1,1,0,0,12,8,2,1,1575,541642.06,223466.53,205474.72,0,1053.748 -6772,8330,15028,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1077.9424,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,4.0432611,0,0,1,1,0,0,0,58.81,34.45,-9,-9,10,1,1,0,0,0,13,1,1,625,-88271.484,0,0,0,180.43852 -6772,8331,15029,-9,-9,15028,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1014.5289,0,2,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.78,38.23,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,1876,-241329.59,0,0,0,695.14355 -6773,8332,15030,15031,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.4738083,9.575285,0,35,1,-33.957069,0,3,3,2019,12,3,46,45,1,3,0,32.346104,32.346104,0,0,0,0,2,0,0,0,7.7375398,0,39,54.39,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,544.5,917769.25,106860.02,451628.94,0,4826.1758 -6773,8332,15031,15030,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.1217647,7.4361157,0,35,-1,-117.83518,0,2,2,2019,3,0,32,22,1,0,0,6.0751467,6.0751467,0,0,0,0,7,0,0,0,0,0,57.16,56.15,39,54.39,8.333333333333334,1,1,0,0,10,12,5,1,544.5,917769.25,106860.02,451628.94,0,4826.1758 -6773,8333,15032,-9,15031,15030,1,1,21,0,0,0,2,2,0,0,5,0,6.7727685,6.4961543,0,0,-946.60864,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,6.7276249,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,349,0,0,0,0,688.64594 -6773,8334,15033,-9,15031,15030,1,1,21,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1013.3254,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.49244604,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,345,185813.39,0,0,0,372.50467 -6774,8335,15034,15035,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7755156,8.981679,0,28,2,76.809387,0,2,2,2019,11,1,49,47,1,1,0,19.010307,19.010307,0,0,0,0,0,0,0,0,2.2739398,0,47.78,44.19,39.33,58.88,8.333333333333334,1,1,0,0,10,5,5,1,349.5,1968369.8,1424761.6,366149.59,0,5154.3296 -6774,8335,15035,15034,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8123951,8.8435659,0,28,-2,65.471756,0,2,2,2019,19,7,45,45,1,7,0,15.786299,15.786299,0,0,0,0,0,0,0,0,2.7798278,0,39.33,58.88,47.78,44.19,8.333333333333334,1,1,0,0,10,5,5,1,349.5,1968369.8,1424761.6,366149.59,0,5154.3296 -6775,8336,15036,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1063.5005,0,3,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,32.94,19.18,-9,-9,0,1,1,0,1,3,5,2,0,480,257012.31,-94736.227,0,0,1252.0172 -6775,8337,15037,-9,15036,-9,1,1,25,0,0,0,2,2,-9,1,4,0,0,0,0,0,-959.59619,0,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,5,1,0,617,-106279.45,0,0,0,1008.3504 -6776,8338,15038,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.853919,7.9978065,0,0,0,-1061.0137,0,2,2,2019,10,0,38,38,1,0,0,9.9843578,9.9843578,0,0,0,0,0,1,1,0,0,0,50.24,49.64,-9,-9,8.333333333333334,1,1,0,0,10,11,4,0,188,77789.578,136156.88,0,0,1514.812 -6777,8339,15039,15040,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,6,-1,119.02489,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.06,37.97,54,54,6.666666666666667,1,1,1,0,0,12,5,1,575,273158.59,214065.3,145480.53,131269.91,9461.7627 -6777,8339,15040,15039,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.5393372,9.4706669,0,6,1,-92.362129,0,-9,-9,2019,8,0,40,40,1,0,0,49.123013,49.123013,0,0,0,0,0,1,1,0,8.1084309,0,54,54,35.06,37.97,8,1,1,0,0,1,12,5,1,575,273158.59,214065.3,145480.53,131269.91,9461.7627 -6777,8340,15041,-9,15039,15040,1,0,21,0,0,0,2,2,1,0,4,7.7070484,7.8164115,0,0,0,-921.25049,-9,2,2,2019,11,0,16,0,1,2,1,16.900169,16.900169,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,12,3,1,2231,-144749.58,50843.348,0,0,742.31421 -6778,8341,15042,15043,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.235219,8.194169,0,10,-1,-124.26939,0,-9,-9,2019,11,0,38,38,1,0,0,14.677595,14.677595,0,0,0,0,0,0,0,0,0,0,52,54.51,47.15,56.66,8.333333333333334,1,1,0,0,12,12,5,1,769.5,660182,176244.16,157007.5,0,4134.3457 -6778,8341,15043,15042,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.8936958,9.0817947,0,10,1,92.044037,0,2,2,2019,9,0,39,39,1,0,0,21.32049,21.32049,0,0,0,0,2,0,0,0,2.2013526,0,47.15,56.66,52,54.51,8.333333333333334,1,1,0,0,11,12,5,1,769.5,660182,176244.16,157007.5,0,4134.3457 -6779,8342,15044,15045,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7778921,8.5347195,0,6,-13,133.94826,0,-9,-9,2019,7,0,45,45,1,0,0,13.022505,13.022505,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,9,4,1,375,-194159.88,85359.32,69385.078,-12724.236,2911.8513 -6779,8342,15045,15044,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.5637946,4.6661911,6,13,15.488434,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6892881,4.6863637,54.2,57.49,57.16,56.15,0,1,1,0,0,5,9,4,1,375,-194159.88,85359.32,69385.078,-12724.236,2911.8513 -6780,8343,15046,15047,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,8,-2,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,45.2,25.75,7,1,1,0,0,0,13,1,0,844,-36496.82,0,0,0,1740.9036 -6780,8343,15047,15046,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,8,2,0,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.2,25.75,49,48,5,1,1,0,0,2,13,1,0,844,-36496.82,0,0,0,1740.9036 -6781,8344,15048,15049,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8312125,8.3073778,1.6743486,24,-2,-7.5004916,0,2,2,2019,23,11,37,38,1,11,0,8.6925993,8.6925993,0,0,0,0,0,0,0,0,0,1.5774682,26.78,58.12,52.81,49.13,3.333333333333333,1,1,0,1,9,10,3,1,1303.5,119333.3,217597.97,204013.88,21153.656,1885.1406 -6781,8344,15049,15048,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,6.3018756,6.6310983,0,6,2,4.8855343,0,3,2,2019,11,0,12,12,1,0,0,6.9139323,6.9139323,0,0,0,0,2,0,0,0,0,0,52.81,49.13,26.78,58.12,5,1,1,0,1,7,10,3,1,1303.5,119333.3,217597.97,204013.88,21153.656,1885.1406 -6781,8345,15050,-9,15048,15049,1,1,25,0,0,0,2,2,-9,0,4,8.0392437,8.3323822,0,0,0,-1090.3745,0,2,2,2019,8,1,46,39,1,1,1,9.0313578,9.0313578,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,213,234410.14,0,0,0,1788.2877 -6781,8346,15051,-9,15048,15049,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-902.99902,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,35.52,59.26,-9,-9,6.666666666666667,1,1,0,0,6,10,1,1,1260,-412281.81,0,0,0,722.41406 -6781,8347,15052,-9,15048,15049,1,1,20,0,0,0,2,2,1,0,3,6.6019187,6.5343628,0,0,0,-966.10815,-9,2,2,2019,9,2,16,0,1,2,1,5.1101928,5.1101928,0,0,0,0,0,0,0,0,0,0,49.19,46.12,-9,-9,5,1,1,0,0,2,10,2,1,348,173757.92,0,0,0,191.45389 -6782,8348,15053,15054,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.9783802,7.0242324,44,3,58.328007,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9229422,7.3705354,57.33,53.46,46.08,57.2,6.666666666666667,1,1,0,0,6,7,2,1,542,657969,400342.25,237933.53,0,578.60767 -6782,8348,15054,15053,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,4.544723,4.442842,44,-3,-4.4903755,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.9256735,4.4735761,46.08,57.2,57.33,53.46,8.333333333333334,1,1,0,0,0,7,2,1,542,657969,400342.25,237933.53,0,578.60767 -6783,8349,15055,15056,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.2294726,7.0202508,21,15,-63.033203,0,3,3,2019,10,1,0,10,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.8358636,7.5165567,64.97,24.32,57.16,56.15,6.666666666666667,1,1,0,0,9,7,3,1,212,2030383.9,1363980.8,394456.5,0,1756.9259 -6783,8349,15056,15055,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3275256,7.4550009,0,21,-15,58.794811,0,3,3,2019,9,0,27,20,1,0,0,6.3218026,6.3218026,0,0,0,0,2,1,1,0,2.0727344,0,57.16,56.15,64.97,24.32,8.333333333333334,1,1,0,0,9,7,3,1,212,2030383.9,1363980.8,394456.5,0,1756.9259 -6784,8350,15057,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.703979,7.6184554,0,0,0,-965.83911,-9,-9,-9,2019,6,0,45,0,1,0,0,6.184648,6.184648,0,0,0,0,0,0,0,0,0,0,49.46,56.91,-9,-9,10,1,1,0,0,3,9,3,1,732,271089.34,0,0,0,1105.6522 -6785,8351,15058,15060,15061,-9,1,1,61,0,1,0,2,2,-9,0,4,7.4702163,7.3018775,0,14,12,14.094674,0,3,2,2019,6,0,30,35,1,0,0,5.1536512,5.1536512,0,0,0,0,2,1,1,0,0,0,57.16,56.15,52.43,55.57,8.333333333333334,1,1,0,0,9,9,5,1,2007.3334,1015928.6,262706.41,747835.56,37888.301,5942.0601 -6785,8351,15059,-9,15060,15058,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.59,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,2007.3334,1015928.6,262706.41,747835.56,37888.301,5942.0601 -6785,8351,15060,15058,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,9.8736172,9.6303215,0,14,-12,79.176384,0,2,3,2019,8,0,50,53,1,0,0,42.927673,42.927673,0,0,0,0,2,1,1,0,2.4379699,0,52.43,55.57,57.16,56.15,6.666666666666667,1,1,0,0,6,9,5,1,2007.3334,1015928.6,262706.41,747835.56,37888.301,5942.0601 -6785,8352,15061,-9,-9,-9,1,0,83,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1072.6722,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,1.1280565,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,1,124,335058.09,0,0,0,1697.6201 -6786,8353,15062,15063,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.6329718,7.9872327,60,-2,-78.718887,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,3.1266425,7.4284539,49.12,36.61,41.51,31.19,8.333333333333334,1,1,0,0,0,9,3,1,1453.5,1270269.6,342839.31,337056.13,0,3676.4346 -6786,8353,15063,15062,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.5923452,7.7234282,11,2,-73.129898,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,7.7557974,41.51,31.19,49.12,36.61,3.333333333333333,1,1,0,0,0,9,3,1,1453.5,1270269.6,342839.31,337056.13,0,3676.4346 -6787,8354,15064,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.9245214,8.5488081,0,0,-925.17395,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4957604,8.8850489,57.16,56.15,-9,-9,10,1,1,0,0,0,9,5,1,596,1621834,631805.06,228504.27,0,4654.7822 -6788,8355,15065,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.6255684,8.7459278,0,0,0,-1040.7419,-9,1,1,2019,8,0,62,0,1,0,0,12.146096,12.146096,0,0,0,0,0,0,0,0,0,0,32.93,55.18,-9,-9,6.666666666666667,1,1,0,0,10,7,5,0,2095,-262304.78,37629.504,0,0,1913.229 -6789,8356,15066,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.061542,7.2921658,0,0,-954.35486,-9,-9,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.5741882,7.2657247,52,52,-9,-9,10,1,1,0,0,0,6,3,0,1057,149058.92,231357.53,97609.477,0,1625.8141 -6790,8357,15067,-9,15068,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.078,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,59,-9,-9,7,4,2,-9,0,0,6,2,0,866.5,-285103.06,0,0,0,828.58093 -6790,8357,15068,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,1,0,0,0,0,0,-885.02448,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,29.86,20.5,-9,-9,5,4,2,0,0,0,6,2,0,866.5,-285103.06,0,0,0,828.58093 -6790,8358,15069,-9,15068,-9,1,1,26,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1020.8084,0,3,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,42,1,0,1,0,0,41,43,-9,-9,6.666666666666667,4,2,1,1,0,6,1,0,729,104492.37,0,0,0,287.94577 -6790,8359,15070,-9,15068,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-917.79089,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,14.5,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,0,6,1,0,1278,0,0,0,0,0 -6790,8360,15071,-9,15068,-9,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-940.98254,-9,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,2,1,0,1,0,0,59.73,50.87,-9,-9,1.666666666666667,3,4,1,0,0,6,1,0,219,0,0,0,0,0 -6791,8361,15072,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.7438455,6.6948662,0,0,-1063.8358,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4108782,6.4945459,54.17,33,-9,-9,10,3,4,0,0,0,8,2,1,461,271745.69,100023.95,316619.47,0,1245.2686 -6792,8362,15073,-9,15074,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.34998,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,362.33334,-31363.701,28040.73,0,0,2209.261 -6792,8362,15074,-9,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,7.542428,7.3626099,0,0,0,-1059.7847,0,2,2,2019,11,0,26,18,1,0,0,9.1467743,9.1467743,0,0,0,0,2,1,1,0,0,0,42.32,44.11,-9,-9,1.666666666666667,1,1,0,0,10,12,2,0,362.33334,-31363.701,28040.73,0,0,2209.261 -6792,8362,15075,-9,15074,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.18835,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,362.33334,-31363.701,28040.73,0,0,2209.261 -6792,8363,15076,-9,15074,-9,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-945.49786,-9,3,-9,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,.60382921,0,25.61,62.71,-9,-9,3.333333333333333,1,1,0,0,1,12,1,0,231,-160813.02,0,0,0,695.07074 -6793,8364,15077,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1110.1212,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.51,44.34,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,3600,363523.97,68193.516,0,0,1004.5983 -6794,8365,15078,15079,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.8379488,6.6158938,52,4,-258.14191,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.7061687,7.1185317,49.1,21.97,33.91,44.25,3.333333333333333,1,1,0,0,0,4,2,1,993.5,522665.13,267815.44,138395.52,0,1692.9795 -6794,8365,15079,15078,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.1268353,5.0816827,52,-4,36.312183,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,4.8852558,33.91,44.25,49.1,21.97,6.666666666666667,1,1,0,0,0,4,2,1,993.5,522665.13,267815.44,138395.52,0,1692.9795 -6794,8366,15080,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-945.82947,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,4,1,1,523.5,-81155.766,0,0,0,0 -6794,8366,15081,-9,-9,15080,1,1,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-951.18811,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,1,523.5,-81155.766,0,0,0,0 -6795,8367,15082,-9,15085,15084,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.28625,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 -6795,8367,15083,-9,15085,15084,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.55719,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 -6795,8367,15084,15085,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.6322737,8.3851795,0,12,0,10.025973,0,1,1,2019,7,0,37,37,1,0,0,15.539121,15.539121,0,0,0,0,7,1,1,0,1.6090739,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,12,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 -6795,8367,15085,15084,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,8.4907188,8.5925465,0,12,0,-145.73132,0,2,2,2019,11,0,6,6,1,0,0,104.79161,104.79161,0,0,0,0,7,1,1,0,3.3470769,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,550.25,307383.72,163474.95,431232.41,225089.03,2136.3308 -6796,8368,15086,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-926.03143,0,-9,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,0,67.36,32.42,-9,-9,10,1,1,0,0,0,5,1,1,217,409689.16,0,0,0,885.646 -6797,8369,15087,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.4755239,8.4843063,0,0,0,-912.26483,0,3,2,2019,6,0,38,40,1,0,0,13.050347,13.050347,0,0,0,0,0,1,1,0,3.0209203,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,441,319107.81,129920.84,92642.828,61154.488,1223.0438 -6798,8370,15088,15089,-9,-9,1,1,23,2,2,0,2,2,-9,0,4,8.2883863,8.2257032,0,4,-1,-53.686836,0,2,2,2019,14,3,50,42,1,3,0,7.1073165,7.1073165,0,0,0,0,0,1,1,0,0,0,45.13,57.48,57.16,56.15,10,1,1,0,0,5,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 -6798,8370,15089,15088,-9,-9,1,0,24,2,2,0,2,2,-9,0,4,6.8761244,6.705142,0,4,1,18.908859,0,-9,-9,2019,7,0,18,0,1,0,0,5.6512928,5.6512928,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.13,57.48,10,1,1,0,0,1,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 -6798,8370,15090,-9,15089,15088,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.26,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 -6798,8370,15091,-9,15089,15088,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-937.6972,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,760.5,-3037.3516,0,0,0,2800.3735 -6799,8371,15092,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,7.7203422,7.4778876,0,0,-1092.8422,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,0,24.658239,0,0,1,1,0,7.7306314,0,44.17,19.58,-9,-9,1.666666666666667,1,1,0,0,0,5,3,1,1309,278349.13,316548.47,258595.33,0,1470.8611 -6799,8372,15093,-9,15092,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.4695,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,6.4370694,0,43.6,40.88,-9,-9,5,1,1,0,0,0,5,1,1,897,-13787.779,0,0,0,512.83124 -6800,8373,15094,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,7.6393037,8.0134373,0,0,-879.0473,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.8337693,7.8570476,55.77,37.05,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,426,2263810,365830.38,1316130.3,0,1805.694 -6801,8374,15095,15096,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.02563,9.030056,0,2,7,44.857124,-9,-9,-9,2019,9,0,50,0,1,1,0,17.786465,17.786465,0,0,0,0,0,0,0,0,1.765864,0,53,55,53.87,29.51,8,4,1,0,0,1,8,5,0,724.5,237927.83,231114.28,334811.19,188156.75,6496.9639 -6801,8374,15096,15095,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.8626671,8.7673302,0,2,-7,59.699795,0,2,3,2019,10,0,50,45,1,0,0,16.292738,16.292738,0,0,0,0,0,0,0,0,6.3436952,0,53.87,29.51,53,55,8.333333333333334,1,1,0,0,8,8,5,0,724.5,237927.83,231114.28,334811.19,188156.75,6496.9639 -6802,8375,15097,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.386898,4.7477574,0,0,-1099.8026,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,2.5827425,3.4880435,0,0,1,1,0,4.8050952,5.2951412,55.76,18.3,-9,-9,6.666666666666667,2,3,0,0,0,7,2,1,522,119432.66,0,195644.27,0,1527.583 -6803,8376,15098,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,6.9804072,6.9429231,0,0,0,-1010.3841,0,-9,2,2019,16,4,18,18,1,4,0,6.1383638,6.1383638,0,0,0,0,0,1,1,0,0,0,44.68,47.44,-9,-9,6.666666666666667,1,1,0,0,2,12,2,0,669,100515.01,-115167.85,0,0,907.32159 -6803,8377,15099,-9,15098,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.2842326,6.4893727,0,0,-747.67694,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.2137656,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,848,18717.152,-43501.816,0,0,679.44556 -6804,8378,15100,15101,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,7,10,59.412518,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.3791432,0,54,46,57.06,57.76,8,1,1,0,0,0,11,2,1,566.5,511501.69,159286.02,133035.86,0,2011.6873 -6804,8378,15101,15100,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.9988627,7.0635376,24,-10,-7.6277347,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.0748672,7.1539674,57.06,57.76,54,46,8.333333333333334,1,1,0,0,0,11,2,1,566.5,511501.69,159286.02,133035.86,0,2011.6873 -6805,8379,15102,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,2,7.9076018,7.705399,0,0,0,-961.79126,0,3,3,2019,11,0,30,30,1,0,0,11.707072,11.707072,0,0,0,0,0,1,1,0,0,0,51.55,45.62,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,219,145527.09,28534.078,0,0,2078.1289 -6806,8380,15103,-9,15106,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.29883,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,181.25,-52418.109,0,0,0,2916.7271 -6806,8380,15104,-9,15106,-9,1,1,16,0,2,0,3,3,-9,0,3,0,0,0,0,0,-895.15466,-9,3,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,1,9,1,0,181.25,-52418.109,0,0,0,2916.7271 -6806,8380,15105,-9,15106,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.52496,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,181.25,-52418.109,0,0,0,2916.7271 -6806,8380,15106,-9,-9,-9,1,0,45,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1016.719,0,3,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,59.54,11.06,-9,-9,5,1,1,0,0,0,9,1,0,181.25,-52418.109,0,0,0,2916.7271 -6806,8381,15107,-9,15106,-9,1,1,22,0,2,0,2,2,-9,0,3,8.0966082,7.9290595,0,0,0,-1057.7712,0,2,3,2019,11,0,36,50,1,0,1,10.811627,10.811627,0,0,0,0,0,1,1,0,0,0,56.52,48.31,-9,-9,6.666666666666667,1,1,0,0,3,9,4,0,581,-289596.53,0,0,0,1394.175 -6807,8382,15108,-9,-9,-9,1,0,71,0,2,0,1,1,-9,0,3,0,3.3193121,3.3708086,0,0,-966.7204,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5640538,2.8791773,38.5,44.29,-9,-9,6.666666666666667,2,3,0,0,0,5,2,1,445,-95163.406,28651.184,0,0,767.19739 -6807,8383,15109,-9,15111,15110,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-867.14874,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 -6807,8383,15110,15111,15108,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2664194,9.3325138,0,4,3,7.3151317,0,1,-9,2019,12,0,46,44,1,0,0,28.457121,28.457121,0,0,0,0,0,1,1,0,0,0,46.8,55.75,50.67,47.25,5,2,3,0,0,12,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 -6807,8383,15111,15110,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,8.0236177,7.9071264,0,4,-3,2.4535155,0,-9,-9,2019,15,0,23,23,1,4,0,18.238482,18.238482,0,0,0,0,0,1,1,0,0,0,50.67,47.25,46.8,55.75,6,2,3,0,0,12,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 -6807,8383,15112,-9,15111,15110,1,0,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-994.6123,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,2,3,1,0,0,5,5,1,596.5,191049.09,61907.602,316638.22,149890.67,5263.0117 -6807,8384,15113,-9,15111,15110,1,0,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-1042.9408,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,40.94,58.35,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,1471,173231.67,0,0,0,0 -6808,8385,15114,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1112.3744,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,11,1,0,483,221090.09,0,0,0,662.79218 -6809,8386,15115,-9,15117,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-851.39191,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,506.75,127090.71,0,0,0,1452.3519 -6809,8386,15116,-9,15117,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.23065,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,506.75,127090.71,0,0,0,1452.3519 -6809,8386,15117,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1119.8197,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,5,1,0,506.75,127090.71,0,0,0,1452.3519 -6809,8386,15118,-9,15117,-9,1,1,17,0,2,0,3,3,1,0,5,0,0,0,0,0,-990.11761,-9,2,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,5,1,0,506.75,127090.71,0,0,0,1452.3519 -6809,8387,15119,-9,15117,-9,1,0,19,0,2,0,2,2,-9,0,4,7.3749218,7.5334539,0,0,0,-893.10858,0,2,-9,2019,17,5,35,12,1,5,1,7.1677923,7.1677923,0,0,0,0,0,1,1,0,0,0,44.19,56.73,-9,-9,6.666666666666667,1,1,0,0,3,5,3,0,851,-110163.59,0,0,0,447.94736 -6810,8388,15120,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,2,0,6.0388684,6.008378,0,0,-1030.1942,0,3,1,2019,21,9,0,15,3,9,0,0,0,0,0,0,0,0,1,0,1,5.9815974,0,34.2,41.42,-9,-9,5,3,4,1,0,1,4,2,0,1095.5,-214707.44,0,0,0,1316.3508 -6810,8388,15121,-9,15120,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.58282,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,3,4,-9,0,0,4,2,0,1095.5,-214707.44,0,0,0,1316.3508 -6811,8389,15122,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.6994405,6.3591914,0,0,-990.52985,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7608929,56.1,39.4,-9,-9,5,1,1,0,0,0,7,2,1,928,306778.72,-34922.867,194926.38,0,1282.5145 -6812,8390,15123,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.2461004,8.1817122,0,0,0,-1041.1165,0,3,3,2019,10,0,49,51,1,0,0,9.1087542,9.1087542,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,7,7,4,0,361,-49705.398,26375.48,90606.984,0,1260.9258 -6813,8391,15124,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,7.3678651,7.2799044,0,0,-983.1344,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,4.2511325,0,45.708839,0,1,1,0,4.8192248,7.1097283,55,44.76,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,244,470599.72,156309.89,173844.48,0,1363.2697 -6814,8392,15125,15126,-9,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,6,-6,26.122391,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.66,10.47,15.08,66.28,8.333333333333334,1,1,0,1,0,12,4,0,1477,-24371.51,0,182206.78,143230.84,3844.4795 -6814,8392,15126,15125,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.3826303,8.4015026,6.499022,6,6,75.551857,0,-9,-9,2019,31,12,49,49,1,12,0,10.962763,10.962763,0,0,0,0,27,1,1,0,6.8883786,0,15.08,66.28,48.66,10.47,3.333333333333333,1,1,0,1,9,12,4,0,1477,-24371.51,0,182206.78,143230.84,3844.4795 -6815,8393,15127,15128,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,7.6235929,7.6264291,0,5,3,-34.211441,0,-9,-9,2019,9,0,40,40,1,1,0,6.4239044,6.4239044,0,0,0,0,0,1,1,0,.42434627,0,52,55,58.74,40.91,7,1,1,0,0,1,5,3,1,1264.3334,391065.88,12381.998,185852.77,109103.09,2350.2407 -6815,8393,15128,15127,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,7.7495127,7.9910245,0,22,-3,57.70319,0,2,2,2019,10,0,30,30,1,0,0,9.6218834,9.6218834,0,0,0,0,42,1,1,0,0,0,58.74,40.91,52,55,8.333333333333334,1,1,0,0,7,5,3,1,1264.3334,391065.88,12381.998,185852.77,109103.09,2350.2407 -6815,8393,15129,-9,15128,15127,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.9049,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1264.3334,391065.88,12381.998,185852.77,109103.09,2350.2407 -6816,8394,15130,15131,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0076103,7.6992984,0,10,-6,-15.92273,0,3,3,2019,11,0,38,38,1,0,0,9.5390663,9.5390663,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.38,32.89,8.333333333333334,1,1,0,0,11,13,3,1,482.5,328396.97,16068.613,201142.78,0,1155.9788 -6816,8394,15131,15130,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,10,6,-27.283018,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44.38,32.89,57.16,56.15,3.333333333333333,1,1,1,1,1,13,3,1,482.5,328396.97,16068.613,201142.78,0,1155.9788 -6816,8395,15132,-9,15130,15131,1,0,29,0,0,0,1,1,-9,0,2,8.0062828,8.3135138,0,0,0,-1013.3584,0,3,3,2019,17,6,38,38,1,6,1,11.121495,11.121495,0,0,0,0,0,1,1,0,0,0,35.13,53.3,-9,-9,5,1,1,0,0,7,13,4,1,607,-111196.92,-15677.165,0,0,1277.2676 -6817,8396,15133,15135,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.3647594,9.6565962,0,9,2,-106.006,0,2,2,2019,12,0,80,90,1,0,0,20.949774,20.949774,0,0,0,0,0,0,0,0,0,0,50.41,44.25,46.9,56.66,6.666666666666667,1,1,0,0,10,2,5,1,299,1834359.5,1604269.1,212574.59,137096.11,5278.3643 -6817,8396,15134,-9,15135,15133,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.73633,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,5,1,299,1834359.5,1604269.1,212574.59,137096.11,5278.3643 -6817,8396,15135,15133,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.0172825,7.3629961,0,9,-2,-4.6124849,0,2,2,2019,0,0,26,23,1,0,0,10.592072,10.592072,0,0,0,0,0,0,0,0,0,0,46.9,56.66,50.41,44.25,8.333333333333334,1,1,0,0,10,2,5,1,299,1834359.5,1604269.1,212574.59,137096.11,5278.3643 -6818,8397,15136,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.2029982,7.3043785,0,0,-919.89905,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,5.08114,6.9574852,43.78,46.06,-9,-9,8.333333333333334,4,2,0,0,0,9,3,1,219,363110.56,253275.17,204816.45,0,606.3551 -6819,8398,15137,15138,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,9.1701488,9.5785112,5.1342049,35,3,43.50919,0,2,3,2019,18,7,12,45,1,7,0,113.7403,113.7403,0,0,0,0,0,0,0,0,2.1827021,5.6227574,51.83,57.2,52,54.51,8.333333333333334,1,1,0,0,10,8,5,1,500.5,464739.44,40924.578,391161.38,0,6122.2852 -6819,8398,15138,15137,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.9125967,8.8561125,0,35,-3,110.52072,0,3,3,2019,9,1,36,39,1,1,0,22.506258,22.506258,0,0,0,0,2,0,0,0,3.1265934,0,52,54.51,51.83,57.2,8.333333333333334,1,1,0,0,10,8,5,1,500.5,464739.44,40924.578,391161.38,0,6122.2852 -6820,8399,15139,-9,15142,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.4087,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 -6820,8399,15140,-9,15142,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.7395,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,4,2,-9,0,0,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 -6820,8399,15141,-9,15142,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.84485,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 -6820,8399,15142,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.6534867,7.8428226,0,0,0,-947.44696,0,-9,-9,2019,14,4,30,22,1,4,0,6.344687,6.344687,0,0,0,0,0,1,1,0,0,0,39.44,60.23,-9,-9,8.333333333333334,1,1,0,0,4,9,2,0,535.75,-97083.328,35912.785,0,0,2158.7864 -6821,8400,15143,-9,15144,-9,1,0,31,0,0,0,2,2,-9,0,5,7.8076897,8.0766144,0,0,0,-1035.8136,0,2,2,2019,10,0,37,37,1,0,1,7.9398026,7.9398026,0,0,0,0,14.5,1,1,0,2.0967078,0,38.24,63.73,-9,-9,5,1,1,0,0,8,4,4,1,1346,-357154.78,-18922.816,0,0,1236.2443 -6821,8401,15144,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,5.5542612,6.0196972,0,0,-946.64441,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.4100556,5.8080831,42.36,22.75,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,883,-95745.742,174017.44,0,0,788.75537 -6822,8402,15145,-9,15147,15146,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1001.613,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,2,1,887.33331,111888.38,0,0,0,902.19208 -6822,8402,15146,15147,-9,-9,1,1,60,0,1,0,2,2,-9,0,1,0,5.6069016,5.4311485,32,5,106.97806,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.394979,5.3937964,38,21.86,51.83,57.2,3.333333333333333,1,1,0,0,0,4,2,1,887.33331,111888.38,0,0,0,902.19208 -6822,8402,15147,15146,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,32,-5,-12.711824,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,.98528779,0,51.83,57.2,38,21.86,6.666666666666667,1,1,0,0,0,4,2,1,887.33331,111888.38,0,0,0,902.19208 -6823,8403,15148,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.0742741,8.3713131,6.2730012,0,0,-1051.2887,0,3,-9,2019,9,0,38,41,1,0,0,8.3623838,8.3623838,0,0,0,0,0,0,0,0,5.0826907,6.5032616,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,585,189844.59,-38448.254,0,0,1529.6989 -6824,8404,15149,15150,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,10,-10,-.34503973,0,3,2,2019,15,3,0,0,4,3,0,0,0,1,0,6.3249321,0,0,1,1,0,0,0,37.22,33.33,54,46,6.666666666666667,2,3,0,0,0,8,2,1,1504,907982,135083.13,394779.03,0,1880.8116 -6824,8404,15150,15149,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.206779,7.1258197,10,10,126.00685,0,-9,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,6.8746595,54,46,37.22,33.33,8,2,3,0,0,0,8,2,1,1504,907982,135083.13,394779.03,0,1880.8116 -6824,8405,15151,15152,15149,15150,1,0,49,0,0,0,2,2,-9,0,3,8.2847137,8.0994701,0,10,-8,19.752535,0,3,3,2019,12,0,36,41,1,0,0,14.424473,14.424473,0,0,0,0,27,1,1,0,0,0,44.65,44.31,38.5,39.22,6.666666666666667,2,3,0,0,11,8,5,1,542,517165.34,49792.238,275174,32541.324,3067.4272 -6824,8405,15152,15151,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4646654,8.5076742,0,10,8,-63.357399,0,2,2,2019,10,2,58,58,1,2,0,7.2262087,7.2262087,0,0,0,0,2,1,1,0,3.6687467,0,38.5,39.22,44.65,44.31,6.666666666666667,2,3,0,0,11,8,5,1,542,517165.34,49792.238,275174,32541.324,3067.4272 -6824,8406,15153,-9,15151,15152,1,1,24,0,0,0,1,1,-9,0,2,9.065362,8.7817869,0,0,0,-1111.6082,0,2,2,2019,22,7,90,40,1,7,1,8.6360312,8.6360312,0,0,0,0,0,1,1,0,0,0,17.87,57.38,-9,-9,1.666666666666667,4,2,0,0,5,8,5,1,668,216475.38,19446.928,149298.45,120511.39,2681.0076 -6824,8407,15154,-9,15151,15152,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-950.30334,-9,2,2,2019,15,0,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,47.93,51.29,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,273,-251268.66,0,0,0,717.95001 -6825,8408,15155,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.3124995,7.4955854,0,0,-994.99902,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.6846228,58.08,43.46,-9,-9,8.333333333333334,3,4,0,0,8,8,3,1,1664,666955.81,432952.69,356707.81,0,1288.5814 -6825,8409,15156,-9,15155,-9,1,0,23,0,0,0,1,1,-9,0,3,5.1496434,5.1428156,0,0,0,-1115.7703,-9,1,-9,2019,4,0,30,0,1,0,0,.84901798,.84901798,0,0,0,0,0,0,0,0,0,0,51.36,49.48,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,330,-254482.61,0,0,0,-164.41663 -6826,8410,15157,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1005.1876,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,4.1150236,0,25.86,52.85,-9,-9,8.333333333333334,1,1,0,0,5,4,1,0,434,-305963.38,0,0,0,863.06409 -6827,8411,15158,15159,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.4943986,8.6325235,7.8390946,7,4,-118.12354,0,2,2,2019,7,0,45,45,1,0,0,4.4341497,4.4341497,0,0,0,0,2,0,0,0,4.078094,8.1581173,57.16,56.15,52.79,35.58,8.333333333333334,1,1,0,0,8,1,4,1,943,568175.19,717398.5,0,0,2660.4517 -6827,8411,15159,15158,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,7,-4,-19.93944,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,7,0,0,0,0,0,52.79,35.58,57.16,56.15,8.333333333333334,1,1,0,0,8,1,4,1,943,568175.19,717398.5,0,0,2660.4517 -6827,8412,15160,-9,15159,15158,1,0,27,0,0,0,2,2,-9,0,5,7.6803403,7.8212967,0,0,0,-1114.1417,0,2,2,2019,4,0,34,32,1,0,1,7.8954964,7.8954964,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,10,1,1,0,0,1,1,3,1,170,-461932.22,918.55249,0,0,1114.4635 -6828,8413,15161,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,6.5089869,6.4640946,0,0,-1038.8503,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8245637,6.3543229,41.49,52.34,-9,-9,5,1,1,0,0,7,9,2,1,645,257427.14,8049.5439,388261.34,0,1981.5146 -6829,8414,15162,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.1371207,6.2317696,0,0,-1067.6527,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.612916,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,2699,638791.94,235415.34,107267.54,76651.563,-112.32425 -6830,8415,15163,-9,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,7.1479993,7.3632927,0,0,0,-926.00739,0,2,2,2019,12,1,10,6,1,1,0,18.64506,18.64506,0,0,0,0,14.5,1,1,0,0,0,41.47,56.81,-9,-9,5,2,3,0,0,6,8,2,0,404,233137.55,18421.023,0,0,2189.521 -6830,8416,15164,-9,-9,-9,1,1,55,0,2,0,1,1,-9,1,1,0,0,0,0,0,-1019.1221,0,1,1,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,18.76,23.91,-9,-9,1.666666666666667,1,1,0,1,0,8,1,0,564.33331,1149364.5,756908.25,309410.72,0,299.24719 -6830,8416,15165,-9,15163,15164,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.0336,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,564.33331,1149364.5,756908.25,309410.72,0,299.24719 -6830,8416,15166,-9,15163,15164,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.2045,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,1,0,564.33331,1149364.5,756908.25,309410.72,0,299.24719 -6831,8417,15167,15168,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.7187457,6.648263,3,2,-42.377594,0,-9,-9,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,2,1,1,0,0,6.9271078,15.87,53.87,52,46,1.666666666666667,1,1,0,0,0,4,2,0,384.5,155268.41,93775.336,93264.266,0,1809.3767 -6831,8417,15168,15167,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.1614738,5.1450005,3,-2,56.191372,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.0798974,52,46,15.87,53.87,7,1,1,0,1,0,4,2,0,384.5,155268.41,93775.336,93264.266,0,1809.3767 -6832,8418,15169,15170,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.0842137,4.9992299,9,2,43.860424,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9401193,5.31213,50.97,53.42,48.41,56.13,10,1,1,0,0,0,12,2,1,1428,256408.72,64966.973,231472.81,0,1378.4637 -6832,8418,15170,15169,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,6.1069613,6.5372705,9,-2,1.9665251,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.8374343,6.4443679,48.41,56.13,50.97,53.42,10,1,1,0,0,0,12,2,1,1428,256408.72,64966.973,231472.81,0,1378.4637 -6833,8419,15171,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.0951614,8.2069006,0,0,0,-1042.1107,0,3,3,2019,10,0,60,60,1,0,0,6.2303953,6.2303953,0,0,0,0,0,0,0,0,2.9142466,0,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,2487,-154495.06,0,202097.13,0,1949.113 -6834,8420,15172,15173,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.4342093,7.2691584,58,-2,62.863422,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3685932,7.5059018,53.91,37.1,51.39,59.18,8.333333333333334,1,1,0,0,0,12,4,1,446,796885.38,74605.07,256206.83,0,5464.6426 -6834,8420,15173,15172,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,7.8967123,7.8448443,58,2,81.423203,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5746861,7.982192,51.39,59.18,53.91,37.1,10,1,1,0,0,0,12,4,1,446,796885.38,74605.07,256206.83,0,5464.6426 -6835,8421,15174,15175,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,4.8746552,5.1243167,64,-2,6.718421,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8788981,5.2076011,55.96,49.93,39.51,40.13,8.333333333333334,1,1,0,0,0,4,2,1,403,254514.66,0,259588.72,0,1529.772 -6835,8421,15175,15174,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,64,2,-109.5512,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.51,40.13,55.96,49.93,8.333333333333334,1,1,0,0,0,4,2,1,403,254514.66,0,259588.72,0,1529.772 -6836,8422,15176,15177,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.4369631,7.7468805,58,1,23.069653,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.9415741,7.3328705,58.46,36.99,44.32,38.2,8.333333333333334,1,1,0,0,0,5,2,1,434,323906.5,111721.19,230315.97,0,2125.8584 -6836,8422,15177,15176,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.625464,4.3418865,58,-1,-121.36658,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.8900602,4.4146266,44.32,38.2,58.46,36.99,10,1,1,0,0,0,5,2,1,434,323906.5,111721.19,230315.97,0,2125.8584 -6836,8423,15178,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.4137087,6.0888844,0,0,-995.33551,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5612288,6.3695083,53,46,-9,-9,8,1,1,0,0,0,5,2,1,1043,220559.83,324164.84,60201.836,0,1027.262 -6837,8424,15179,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1170.5583,-9,-9,-9,2019,28,10,0,0,4,10,0,0,0,1,0,48.352406,0,0,1,1,0,0,0,38,25,-9,-9,0,1,1,0,0,0,9,1,0,458,154104.36,172319.14,285322.03,118536.63,2024.5049 -6838,8425,15180,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.9552422,8.7511568,0,0,0,-967.9425,0,-9,-9,2019,9,0,37,37,1,0,0,27.074385,27.074385,0,0,0,0,0,1,1,0,3.4598992,0,52.18,43.43,-9,-9,5,1,1,0,0,9,6,5,0,513,198969.55,243703.03,497.58371,-23908.082,2988.624 -6839,8426,15181,15182,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.3425078,4.5606103,7,-2,145.32495,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,10.121153,0,120,1,1,0,4.3701434,4.6897383,51,46,48.97,46.01,8,1,1,0,0,0,13,2,1,1322.5,715205.69,211597.66,322058.13,0,773.51154 -6839,8426,15182,15181,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,4.8120489,5.0690012,7,2,6.4645262,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4243741,5.0466599,48.97,46.01,51,46,10,1,1,0,0,0,13,2,1,1322.5,715205.69,211597.66,322058.13,0,773.51154 -6840,8427,15183,15184,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.9992957,8.10888,8,2,-48.470398,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,45.294083,0,7,1,1,0,0,8.0266504,43.46,28.89,57.97,14.19,5,1,1,0,0,0,11,3,1,215,1113098.9,749723.31,245974.3,0,3348.5728 -6840,8427,15184,15183,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.182734,6.2393279,8,-2,30.399723,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,22.581926,0,7,1,1,0,3.2301691,6.2180233,57.97,14.19,43.46,28.89,6.666666666666667,1,1,0,0,6,11,3,1,215,1113098.9,749723.31,245974.3,0,3348.5728 -6841,8428,15185,15186,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,7.086206,6.7152729,36,0,-135.65079,0,2,2,2019,15,3,0,50,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6.6353855,46.02,58.57,51.83,57.2,6.666666666666667,1,1,1,0,12,1,3,1,2939,48634.355,70107.063,261688.97,107320.67,1688.7056 -6841,8428,15186,15185,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.6814828,7.4579024,0,36,0,-35.760063,0,3,2,2019,8,0,35,33,1,0,0,7.6324015,7.6324015,0,0,0,0,7,0,0,0,0,0,51.83,57.2,46.02,58.57,6.666666666666667,1,1,0,0,12,1,3,1,2939,48634.355,70107.063,261688.97,107320.67,1688.7056 -6841,8429,15187,-9,15186,15185,1,0,31,0,0,0,2,2,-9,0,3,8.1689129,8.2894316,0,0,0,-1089.2114,0,2,2,2019,9,0,45,47,1,0,1,12.042209,12.042209,0,0,0,0,0,0,0,0,3.2945194,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,427,-28115.742,-46426.578,0,0,1075.5101 -6842,8430,15188,-9,15190,15189,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1104.7062,-9,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,7,4,1,1845,1095206.8,1156728.6,0,0,2937.7271 -6842,8430,15189,15190,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2954102,7.2291899,0,27,6,-94.924309,0,-9,-9,2019,12,0,37,40,1,0,0,3.9958656,3.9958656,0,0,0,0,7,1,1,0,0,0,59.05,26.8,40.32,63.02,8.333333333333334,1,1,0,0,9,7,4,1,1845,1095206.8,1156728.6,0,0,2937.7271 -6842,8430,15190,15189,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0159321,7.9908943,0,27,-6,-88.940659,0,-9,-9,2019,21,9,26,26,1,9,0,16.682558,16.682558,0,0,0,0,0,1,1,0,0,0,40.32,63.02,59.05,26.8,1.666666666666667,1,1,0,0,7,7,4,1,1845,1095206.8,1156728.6,0,0,2937.7271 -6842,8431,15191,-9,15190,15189,1,0,25,0,0,0,2,2,-9,0,2,8.3707247,8.2558403,0,0,0,-977.4325,0,2,2,2019,12,0,37,40,1,0,1,10.950642,10.950642,0,0,0,0,0,1,1,0,0,0,48.83,49.52,-9,-9,0,1,1,0,0,6,7,4,1,135,-67646.797,0,0,0,1280.9509 -6842,8432,15192,-9,15190,15189,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-970.07172,1,2,2,2019,10,1,0,7,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,228,283753.94,0,0,0,0 -6843,8433,15193,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1045.6947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.64,37.78,-9,-9,10,1,1,0,0,0,7,2,0,462,333157,0,41206.621,0,1047.2947 -6844,8434,15194,15195,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.4817371,8.394989,6,-1,-47.136337,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1692228,8.5314283,58.49,50.2,40.96,35.62,8.333333333333334,1,1,0,0,0,9,4,1,316,1652591.3,614501.94,710912,0,2991.709 -6844,8434,15195,15194,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,1,40.173401,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,40.96,35.62,58.49,50.2,6.666666666666667,1,1,0,0,0,9,4,1,316,1652591.3,614501.94,710912,0,2991.709 -6845,8435,15196,15197,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.4492621,6.4585872,9,-6,-10.229085,-9,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.5981594,6.3160954,50.53,50.08,38.07,48.83,10,1,1,0,0,4,4,3,1,348,1007345.4,377695,191915.17,0,2205.1509 -6845,8435,15197,15196,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4851584,7.4300632,9,6,60.856457,-9,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.7834044,7.0253201,38.07,48.83,50.53,50.08,8.333333333333334,1,1,0,0,3,4,3,1,348,1007345.4,377695,191915.17,0,2205.1509 -6846,8436,15198,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,8.5351725,8.5342188,0,0,0,-1081.0903,0,3,3,2019,17,7,45,44,1,7,0,10.628955,10.628955,0,0,0,0,0,0,0,0,5.0977349,0,49.56,39.99,-9,-9,5,1,1,0,0,11,6,4,1,1236,917993.81,613468.25,134933.94,0,1928.3582 -6847,8437,15199,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.9669003,4.6767483,0,0,-1086.1453,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,4.5214481,5.0555315,43.49,43.6,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,501,27175.303,12480.371,0,0,762.02704 -6848,8438,15200,15201,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,3.6818635,3.8424883,7,11,22.060638,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.3620703,42.93,42.71,51.41,56.15,5,1,1,0,0,0,13,2,0,586.5,24219.156,0,0,0,1468.2321 -6848,8438,15201,15200,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,7,-11,105.82135,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,42.93,42.71,8.333333333333334,1,1,0,0,0,13,2,0,586.5,24219.156,0,0,0,1468.2321 -6849,8439,15202,15203,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.0112257,8.8683271,0,9,7,-1.7508749,0,2,2,2019,11,0,46,45,1,0,0,14.380054,14.380054,0,0,0,0,0,1,1,0,0,0,46.16,58.62,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,857.33331,450354.69,94753.492,316909.09,22599.475,3276.1577 -6849,8439,15203,15202,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,7.6261477,7.9929719,0,9,-7,-101.29259,0,2,2,2019,8,0,30,30,1,0,0,10.146145,10.146145,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.16,58.62,8.333333333333334,1,1,0,0,11,12,5,1,857.33331,450354.69,94753.492,316909.09,22599.475,3276.1577 -6849,8439,15204,-9,15203,15202,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-992.90137,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,857.33331,450354.69,94753.492,316909.09,22599.475,3276.1577 -6850,8440,15205,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.0724664,7.2216349,0,0,0,-1084.1698,0,3,3,2019,15,3,20,20,1,3,0,5.0357208,5.0357208,0,0,0,0,0,1,0,1,0,0,46.67,36.49,-9,-9,5,1,1,0,0,11,5,3,1,1576,165833.27,0,0,0,1382.5055 -6851,8441,15206,15207,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,10,-1,146.10324,-9,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1681106,0,52.58,47.36,56.94,49.53,10,1,1,0,0,0,4,3,1,890,656422.81,363973.31,-31698.793,0,2169.5608 -6851,8441,15207,15206,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.9137731,7.633779,59,1,-111.37866,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.4178104,0,0,1,1,0,2.5174577,7.689599,56.94,49.53,52.58,47.36,8.333333333333334,1,1,0,0,0,4,3,1,890,656422.81,363973.31,-31698.793,0,2169.5608 -6852,8442,15208,-9,15209,15211,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.2965,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 -6852,8442,15209,15211,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,6.6579208,6.7286739,0,15,-1,-128.23459,0,2,3,2019,11,0,10,0,1,0,0,10.328549,10.328549,0,0,0,0,0,1,1,0,0,0,51.24,58.84,43.2,59.97,6.666666666666667,1,1,0,0,9,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 -6852,8442,15210,-9,15209,15211,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.87964,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 -6852,8442,15211,15209,-9,-9,1,1,34,0,3,0,1,1,-9,0,4,9.0851555,9.504961,0,15,1,91.422554,0,1,3,2019,10,2,49,47,1,2,0,28.521105,28.521105,0,0,0,0,0,1,1,0,0,0,43.2,59.97,51.24,58.84,6.666666666666667,1,1,0,0,9,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 -6852,8442,15212,-9,15209,15211,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.1057,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,616.40002,357786.91,106796.7,433105.69,215263.05,3816.3672 -6853,8443,15213,15216,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.6263361,9.2848167,0,9,-2,36.805702,0,2,2,2019,9,0,38,40,1,0,0,48.745327,48.745327,0,0,0,0,0,0,0,0,0,0,55.19,54.26,51.19,52.17,8.333333333333334,1,1,0,0,9,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 -6853,8443,15214,-9,15216,15213,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.995,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 -6853,8443,15215,-9,15216,15213,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.11664,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 -6853,8443,15216,15213,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,9,2,170.1778,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.19,52.17,55.19,54.26,0,1,1,0,0,2,6,5,1,1104.25,231617.61,286451.56,260139.22,146490.47,5099.6055 -6854,8444,15217,15218,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.566227,9.5648746,0,3,-3,23.71908,0,-9,-9,2019,9,1,48,52,1,1,0,30.205639,30.205639,0,0,0,0,2,0,0,0,0,0,57.16,56.15,45.9,47.46,8.333333333333334,1,1,0,0,7,7,5,1,1028,627179.25,180150.83,905113.25,567225.63,4572.7896 -6854,8444,15218,15217,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.0927105,8.3503408,0,3,3,-3.8559129,0,-9,-9,2019,9,2,30,28,1,2,0,13.064977,13.064977,0,0,0,0,2,0,0,0,3.0037227,0,45.9,47.46,57.16,56.15,8.333333333333334,1,1,0,0,10,7,5,1,1028,627179.25,180150.83,905113.25,567225.63,4572.7896 -6855,8445,15219,-9,15224,15225,1,0,25,1,1,0,1,1,-9,0,4,8.3712778,8.3676023,0,0,0,-1063.7764,-9,3,3,2019,10,2,43,0,1,2,1,12.763632,12.763632,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,6.666666666666667,2,3,0,0,1,2,4,1,370,198802,27972.852,0,0,1263.4893 -6855,8446,15220,15221,-9,-9,1,0,24,1,1,0,2,2,-9,1,3,0,0,0,2,-4,0,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,58.15,52.91,6.666666666666667,2,3,0,0,0,2,1,1,311,-23730.369,0,0,0,1444.6029 -6855,8446,15221,15220,15224,15225,1,1,28,1,1,0,2,2,-9,1,4,0,0,0,2,4,0,-9,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,58.15,52.91,57.33,53.46,10,2,3,0,0,0,2,1,1,311,-23730.369,0,0,0,1444.6029 -6855,8446,15222,-9,15220,15221,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-896.3269,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,1,1,311,-23730.369,0,0,0,1444.6029 -6855,8447,15223,-9,15224,15225,1,1,22,1,1,0,2,2,-9,0,3,7.6477699,7.7610407,0,0,0,-968.38885,-9,3,3,2019,19,6,48,0,1,6,1,5.781743,5.781743,0,0,0,0,0,1,1,0,0,0,43.94,46.17,-9,-9,3.333333333333333,2,3,0,0,2,2,3,1,419,175858.73,0,109362.56,91704.008,283.80649 -6855,8448,15224,15225,-9,-9,1,0,59,1,1,0,3,3,-9,0,3,0,0,0,40,-1,0,-9,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.68,37.85,55.2,49.4,6.666666666666667,2,3,0,0,0,2,1,1,495.5,202447.7,0,0,0,844.83398 -6855,8448,15225,15224,-9,-9,1,1,60,1,1,0,3,3,-9,1,2,0,0,0,40,1,0,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.2,49.4,49.68,37.85,8.333333333333334,2,3,0,0,0,2,1,1,495.5,202447.7,0,0,0,844.83398 -6856,8449,15226,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.1227174,5.8058085,0,0,-965.49725,0,3,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.8144059,36.87,37.37,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,524,464142.5,154716.31,203222.22,0,774.20074 -6857,8450,15227,15228,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,6.6179419,6.4358416,0,30,-3,-114.92093,0,3,2,2019,9,0,16,13,1,0,0,5.5458255,5.5458255,0,0,0,0,0,0,0,0,2.0610046,0,57.33,53.46,59.32,36.25,10,1,1,0,0,8,10,4,1,760.5,869935.81,343946.38,327327.31,0,2604.0117 -6857,8450,15228,15227,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.956305,8.1216803,6.9936733,30,3,-55.138515,0,2,2,2019,7,0,43,42,1,0,0,8.6101637,8.6101637,0,0,0,0,0,0,0,0,6.6911554,6.8913431,59.32,36.25,57.33,53.46,8.333333333333334,1,1,0,0,9,10,4,1,760.5,869935.81,343946.38,327327.31,0,2604.0117 -6857,8451,15229,-9,15227,15228,1,1,33,0,0,0,2,2,-9,0,4,7.6528645,7.718225,0,0,0,-1036.7755,0,2,2,2019,16,5,48,0,1,5,1,4.4813304,4.4813304,0,0,0,0,0,0,0,0,0,0,34.56,62.74,-9,-9,3.333333333333333,1,1,0,0,6,10,3,1,304,194863.23,2510.2439,0,0,973.12231 -6858,8452,15230,-9,15231,15232,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-826.71149,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 -6858,8452,15231,15232,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,23,-4,-64.506516,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,52,55,7,2,3,0,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 -6858,8452,15232,15231,-9,-9,1,1,43,0,3,0,3,3,-9,0,4,8.7802229,9.1549187,0,6,4,26.792685,0,-9,-9,2019,9,0,40,20,1,1,0,19.383127,19.383127,0,0,0,0,0,1,1,0,0,0,52,55,50,55,7,2,3,0,1,5,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 -6858,8452,15233,-9,15231,15232,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1076.113,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 -6858,8452,15234,-9,15231,15232,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.219,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,774,398559.47,314827.5,385069.47,175712.81,3035.3706 -6858,8453,15235,-9,15231,15232,1,1,20,0,3,1,2,0,0,0,4,0,0,0,0,0,-899.99072,-9,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,1680,0,0,0,0,0 -6858,8454,15236,-9,15231,15232,1,1,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-879.96552,-9,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,511,0,0,0,0,0 -6859,8455,15237,15238,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0308638,8.3236618,0,1,1,-144.5022,-9,-9,-9,2019,10,0,40,0,1,1,0,9.7742443,9.7742443,0,0,0,0,0,1,1,0,0,0,51,56,53.12,44.26,7,1,1,0,0,1,5,4,0,354.5,611625.81,441209.31,151278.45,79647.625,2648.1045 -6859,8455,15238,15237,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.1142683,7.949163,0,1,-1,-71.310318,-9,2,2,2019,7,0,50,0,1,0,0,5.7906837,5.7906837,0,0,0,0,2,1,1,0,0,0,53.12,44.26,51,56,8.333333333333334,1,1,0,0,12,5,4,0,354.5,611625.81,441209.31,151278.45,79647.625,2648.1045 -6860,8456,15239,15240,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.8890982,6.1742024,37,-2,62.371498,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.8774319,5.7920141,57.1,43.84,47.3,27.19,6.666666666666667,1,1,0,0,0,9,2,1,277,760915,173400.94,373573.59,0,2138.4128 -6860,8456,15240,15239,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,6.1849728,6.3181362,37,2,9.5849142,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.555181,6.536221,47.3,27.19,57.1,43.84,5,1,1,0,0,0,9,2,1,277,760915,173400.94,373573.59,0,2138.4128 -6861,8457,15241,15242,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.6581926,7.6497016,0,9,1,53.158741,0,2,3,2019,6,0,40,45,1,0,0,7.4595404,7.4595404,0,0,0,0,0,0,0,0,3.1344221,0,57.33,53.46,57.33,53.46,10,1,1,0,0,10,9,4,1,1155,599412.44,576472.13,0,0,1592.5999 -6861,8457,15242,15241,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.6827292,7.7921758,0,9,-1,-118.79833,0,2,2,2019,8,0,20,19,1,0,0,14.251974,14.251974,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,10,9,4,1,1155,599412.44,576472.13,0,0,1592.5999 -6861,8458,15243,-9,15242,15241,1,0,26,0,0,0,1,1,-9,0,3,8.8207693,8.199708,0,0,0,-909.54181,0,2,2,2019,15,5,41,38,1,5,1,14.709997,14.709997,0,0,0,0,2,0,0,0,0,0,40.88,59.72,-9,-9,6.666666666666667,1,1,0,1,9,9,5,1,742,-76674.086,1792.7948,0,0,1838.7041 -6862,8459,15244,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,2,7.9053822,7.4931712,0,0,0,-1035.8961,0,-9,-9,2019,12,2,20,20,1,2,0,13.481985,13.481985,0,0,0,0,0,1,1,0,.76864594,0,46.26,46.77,-9,-9,1.666666666666667,3,4,0,0,11,8,3,1,1060.5,0,0,0,0,1664.6738 -6862,8459,15245,-9,15244,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1014.1552,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,3,4,-9,0,0,8,3,1,1060.5,0,0,0,0,1664.6738 -6863,8460,15246,15247,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2831049,8.0381632,0,7,-1,36.81662,0,3,3,2019,6,0,37,37,1,0,0,10.484194,10.484194,0,0,0,0,0,0,0,0,3.8677659,0,62.49,55.09,55.44,52.99,10,1,1,0,0,8,11,4,1,274.5,1079217.9,889184.75,208855.81,0,2548.2671 -6863,8460,15247,15246,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9252858,8.0448704,0,7,1,34.296726,0,-9,-9,2019,10,0,35,43,1,0,0,9.0744019,9.0744019,0,0,0,0,0,0,0,0,2.0689926,0,55.44,52.99,62.49,55.09,8.333333333333334,1,1,0,0,8,11,4,1,274.5,1079217.9,889184.75,208855.81,0,2548.2671 -6864,8461,15248,15249,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,7.9068804,7.7346992,0,13,0,-68.566917,0,2,1,2019,13,1,28,24,1,1,0,10.409386,10.409386,0,0,0,0,0,0,0,0,0,0,59.99,46.71,57.9,51.84,8.333333333333334,2,3,0,0,11,8,5,1,1351.6666,335061.53,-70647.602,256309.48,111144.25,2849.3645 -6864,8461,15249,15248,-9,-9,1,1,41,1,1,0,1,1,-9,0,3,8.8443308,8.5809622,0,12,0,-10.558172,0,3,2,2019,8,0,43,42,1,0,0,17.150179,17.150179,0,0,0,0,0,0,0,0,0,0,57.9,51.84,59.99,46.71,6.666666666666667,2,3,0,0,12,8,5,1,1351.6666,335061.53,-70647.602,256309.48,111144.25,2849.3645 -6864,8461,15250,-9,15248,15249,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.73169,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,5,1,1351.6666,335061.53,-70647.602,256309.48,111144.25,2849.3645 -6865,8462,15251,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1039.7482,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.66,52.94,-9,-9,6.666666666666667,1,1,0,1,0,12,1,1,533,733468.38,131751.36,503395.16,0,1522.3534 -6866,8463,15252,15253,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5919132,8.4801865,0,36,2,-19.576832,0,2,1,2019,6,0,47,40,1,0,0,11.186255,11.186255,0,0,0,0,2,0,0,0,5.3133931,0,61.12,51.57,55.96,49.93,10,1,1,0,0,10,5,5,1,705.5,1478278.6,857665.38,171323.28,0,3141.9324 -6866,8463,15253,15252,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,7.7280478,7.7686267,37,-2,-26.840883,0,2,2,2019,8,0,0,31,4,0,0,0,0,0,0,0,0,2,0,0,0,5.2759881,8.3153715,55.96,49.93,61.12,51.57,8.333333333333334,1,1,0,0,9,5,5,1,705.5,1478278.6,857665.38,171323.28,0,3141.9324 -6867,8464,15254,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3583221,8.3732615,0,0,0,-1094.8131,0,3,-9,2019,2,0,38,46,1,0,0,12.380768,12.380768,0,0,0,0,0,1,1,0,7.0065265,0,62.66,52.4,-9,-9,10,3,4,0,0,7,8,4,1,3290,1072054.8,736340.44,275368.47,0,1805.4463 -6868,8465,15255,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,5.3363237,5.2952032,0,0,-933.80402,0,2,3,2019,21,8,0,0,4,8,0,0,0,1,2.2144747,8.2039232,24.845871,0,1,1,0,0,5.6884027,45.41,10.82,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,2537,304743.25,31190.467,81611.172,0,1253.7621 -6869,8466,15256,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-899.24384,0,-9,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,35.39,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,746,-327976,0,0,0,1755.528 -6870,8467,15257,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.3632069,8.5141726,0,0,0,-1061.1078,0,-9,-9,2019,12,0,38,40,1,0,0,16.728365,16.728365,0,0,0,0,0,1,1,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,12,5,0,690,-436830.56,70458.266,128434.73,33358.723,1138.6312 -6871,8468,15258,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.606245,8.7575216,4.1998,0,0,-1102.0583,0,1,3,2019,10,0,37,37,1,0,0,23.388632,23.388632,0,0,0,0,0,1,1,0,4.4739776,0,48,52.43,-9,-9,3.333333333333333,1,1,0,0,11,9,5,1,659,490892.53,309984.63,259649.63,0,2090.844 -6872,8469,15259,15260,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.3993273,9.8746471,8.5131702,1,1,-7.4239941,-9,-9,2,2019,19,7,58,0,1,7,0,19.252815,19.252815,0,0,0,0,2,1,1,0,6.2603173,8.6957054,25.84,63.8,50.18,47.09,6.666666666666667,1,1,0,0,7,9,5,1,937,6586875,4664240.5,884602.44,0,6837.4453 -6872,8469,15260,15259,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,4.8089061,4.6966724,1,-1,-192.30916,-9,2,1,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,4.888721,0,50.18,47.09,25.84,63.8,8.333333333333334,1,1,0,0,1,9,5,1,937,6586875,4664240.5,884602.44,0,6837.4453 -6873,8470,15261,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.9907923,7.4097424,0,0,-1094.4099,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3758821,6.9413509,54.85,49.77,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,322,343959.72,220265.8,0,0,1611.0249 -6874,8471,15262,15263,-9,-9,1,1,39,0,2,0,3,3,-9,0,2,9.0069084,8.958004,5.800127,2,0,45.420261,-9,-9,-9,2019,10,1,60,0,1,1,0,13.184947,13.184947,0,0,0,0,0,1,1,0,6.2192073,0,46.97,42.54,54.1,59.11,6.666666666666667,1,1,0,0,9,7,4,0,706,892780.75,1127538,160473.59,88969.594,4312.9458 -6874,8471,15263,15262,-9,-9,1,0,39,0,2,0,3,3,-9,0,5,7.8981133,7.7244821,0,2,0,-41.221565,0,3,2,2019,10,0,40,37,1,0,0,9.5442305,9.5442305,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.97,42.54,8.333333333333334,1,1,0,0,7,7,4,0,706,892780.75,1127538,160473.59,88969.594,4312.9458 -6875,8472,15264,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.9430456,9.2179804,0,0,0,-1024.501,-9,-9,-9,2019,7,0,50,0,1,0,0,17.555531,17.555531,0,0,0,0,0,0,0,0,3.4651606,0,64.93000000000001,32.7,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,883,1280658.9,579672.81,428005.31,0,3685.8933 -6876,8473,15265,15267,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.3805599,8.5451946,0,5,3,-64.474327,0,-9,-9,2019,10,0,50,45,1,1,0,9.1408644,9.1408644,0,0,0,0,0,1,1,0,0,0,51,56,62.39,56.71,7,1,1,0,0,1,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 -6876,8473,15266,-9,15267,15265,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4041,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 -6876,8473,15267,15265,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,7.320097,7.3370905,0,14,-3,-114.05923,0,1,2,2019,6,0,20,20,1,0,0,10.26738,10.26738,0,0,0,0,0,1,1,0,1.6029599,0,62.39,56.71,51,56,10,1,1,0,0,7,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 -6876,8473,15268,-9,15267,15265,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.45844,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,10,3,1,505.25,353005.47,122254.8,144904.67,45570.535,2322.1418 -6877,8474,15269,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7962146,7.6719131,0,0,0,-920.23621,0,3,2,2019,6,0,42,44,1,0,0,9.3122473,9.3122473,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,1644,247694.03,141955.56,0,0,903.63568 -6878,8475,15270,15271,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,6.6475053,6.1422758,2,-1,90.144775,0,2,2,2019,14,3,0,40,3,3,0,0,0,0,0,0,0,0,0,0,0,6.3199806,0,40.97,32.79,41.14,30.1,3.333333333333333,1,1,0,0,12,11,3,1,853.66669,149583.89,76890.828,159897.06,35999.855,1443.6056 -6878,8475,15271,15270,-9,-9,1,1,46,0,1,0,2,2,-9,0,1,7.8190722,7.7411218,0,2,1,-40.470543,-9,-9,-9,2019,10,1,86,0,1,1,0,3.8258884,3.8258884,0,0,0,0,0,0,0,0,0,0,41.14,30.1,40.97,32.79,6.666666666666667,1,1,0,0,1,11,3,1,853.66669,149583.89,76890.828,159897.06,35999.855,1443.6056 -6878,8475,15272,-9,15270,-9,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-949.84918,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,11,3,1,853.66669,149583.89,76890.828,159897.06,35999.855,1443.6056 -6879,8476,15273,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1007.0142,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,11.046469,0,0,1,1,0,2.0017631,0,34.73,29.11,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,708,-142009.8,0,0,0,669.25116 -6880,8477,15274,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.6898746,8.9345331,6.0384355,0,0,-927.64282,0,2,1,2019,15,5,38,35,1,5,0,18.294186,18.294186,0,0,0,0,0,0,0,0,6.6469088,0,45.98,54.24,-9,-9,5,1,1,0,0,9,6,5,1,387.5,805626,774104,150473.98,0,2248.2197 -6880,8477,15275,-9,15274,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.96216,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,5,1,387.5,805626,774104,150473.98,0,2248.2197 -6881,8478,15276,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1063.4215,0,-9,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,8,1,0,3162,558713.5,0,0,0,981.85101 -6882,8479,15277,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.2934456,8.5409164,0,0,0,-1002.2254,0,1,2,2019,7,0,43,42,1,0,0,10.693903,10.693903,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,515,-196613.92,184755.02,0,0,1641.6029 -6883,8480,15278,15279,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.7732291,7.2508478,65,-1,67.060425,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3449469,55,45,53,45,8,1,1,0,0,0,9,2,1,977,558979.25,263042.44,395382.81,0,3210.3845 -6883,8480,15279,15278,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,65,1,-22.575691,0,2,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.871469,0,53,45,55,45,8,1,1,0,0,0,9,2,1,977,558979.25,263042.44,395382.81,0,3210.3845 -6884,8481,15280,15283,-9,-9,1,1,59,0,2,0,2,2,-9,1,4,8.0322456,8.1081781,0,29,8,25.008038,0,3,-9,2019,9,2,40,0,1,2,0,9.3142138,9.3142138,0,0,0,0,2,1,1,0,0,0,47.1,48.39,54.86,36.8,6.666666666666667,4,2,0,0,7,8,3,0,627,280501.66,0,269285.16,0,2683.8525 -6884,8481,15281,-9,15283,15280,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.1212,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,10,3,4,0,0,0,8,3,0,627,280501.66,0,269285.16,0,2683.8525 -6884,8481,15282,-9,15283,15280,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-950.21021,-9,2,2,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,0,8,3,0,627,280501.66,0,269285.16,0,2683.8525 -6884,8481,15283,15280,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,0,0,0,29,-8,65.42691,0,2,-9,2019,11,2,0,16,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.86,36.8,47.1,48.39,10,3,4,0,0,9,8,3,0,627,280501.66,0,269285.16,0,2683.8525 -6884,8482,15284,-9,15283,15280,1,0,20,0,2,1,3,0,0,0,5,0,0,0,0,0,-1004.3344,-9,2,2,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,40.97,30,-9,-9,0,1,1,0,0,0,8,1,0,1447,-40158.164,0,0,0,0 -6885,8483,15285,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.3333077,6.0051508,0,0,-934.36365,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,3.1532745,9.9816389,0,0,1,1,0,3.3395867,6.4369764,59.57,29.57,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1012,193579.81,-20900.281,209903.94,0,1052.7175 -6886,8484,15286,-9,-9,-9,1,0,55,1,5,0,1,1,-9,0,2,8.278142,8.3381271,0,0,0,-907.24182,0,2,2,2019,10,1,38,37,1,1,0,13.880832,13.880832,0,0,0,0,0,1,1,0,0,0,53.8,43.19,-9,-9,5,1,1,0,0,13,8,3,0,1962,114127.59,25670.715,409361.75,44686.18,1846.0166 -6886,8485,15287,-9,15288,-9,1,1,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-938.94379,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,1060,50521.434,0,0,0,1563.2266 -6886,8485,15288,-9,15286,-9,1,0,37,1,5,0,2,2,-9,0,3,8.1061745,7.9127307,0,0,0,-929.09998,0,1,-9,2019,16,4,31,31,1,4,1,13.155055,13.155055,0,0,0,0,0,1,1,0,0,0,41.99,53.75,-9,-9,3.333333333333333,4,2,0,0,13,8,4,0,1060,50521.434,0,0,0,1563.2266 -6887,8486,15289,15290,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,7.0736566,7.3606915,0,10,-1,-133.58075,0,3,3,2019,36,12,16,20,1,12,0,8.7539406,8.7539406,0,0,0,0,0,0,0,0,0,0,26.85,26.95,50.44,43.31,1.666666666666667,1,1,0,1,11,10,4,0,948.5,320943.84,422640.81,0,0,2344.7905 -6887,8486,15290,15289,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.4841623,8.3814192,0,10,1,-12.773672,0,-9,-9,2019,15,3,33,38,1,3,0,13.602221,13.602221,0,0,0,0,0,0,0,0,3.3180325,0,50.44,43.31,26.85,26.95,5,1,1,0,0,11,10,4,0,948.5,320943.84,422640.81,0,0,2344.7905 -6888,8487,15291,-9,15294,15293,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.25024,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 -6888,8487,15292,-9,15294,15293,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.0254,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 -6888,8487,15293,15294,-9,-9,1,1,32,0,3,0,2,2,1,0,3,7.9688191,7.8582568,0,5,1,-62.293259,-9,2,2,2019,6,0,46,0,1,0,0,4.8665171,4.8665171,0,0,0,0,0,1,1,0,0,0,52,54.51,59.14,52.5,8.333333333333334,1,1,0,0,2,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 -6888,8487,15294,15293,-9,-9,1,0,31,0,3,0,2,2,1,0,4,0,0,0,5,-1,-33.214706,-9,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.14,52.5,52,54.51,8.333333333333334,1,1,0,0,0,1,2,0,864,-53573.695,985.8631,0,0,2589.9272 -6889,8488,15295,15296,-9,-9,1,0,56,0,1,0,2,2,-9,1,4,0,0,0,33,-5,-20.201477,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,1.1585778,0,48.28,60.18,37.96,24.76,8.333333333333334,1,1,0,0,0,4,2,1,304.66666,102421.84,0,0,0,1484.8552 -6889,8488,15296,15295,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,0,5.3539171,5.3862534,33,5,-65.565567,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6849113,5.5881405,37.96,24.76,48.28,60.18,6.666666666666667,1,1,0,0,0,4,2,1,304.66666,102421.84,0,0,0,1484.8552 -6889,8488,15297,-9,15295,15296,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1022.3205,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,2,1,304.66666,102421.84,0,0,0,1484.8552 -6890,8489,15298,15299,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.596128,7.5427542,42,3,56.974556,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1427112,7.7513919,52.23,55.6,57.06,57.76,8.333333333333334,1,1,0,0,5,9,3,1,277.5,1114482.9,815904.63,411608.13,0,2897.1897 -6890,8489,15299,15298,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,6.4175172,6.2983193,42,-3,25.651596,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8874218,6.2861176,57.06,57.76,52.23,55.6,10,1,1,0,0,4,9,3,1,277.5,1114482.9,815904.63,411608.13,0,2897.1897 -6891,8490,15300,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.1599026,9.2870188,0,0,0,-1095.6669,0,3,3,2019,27,9,48,61,1,9,0,25.360998,25.360998,0,0,0,0,7,0,0,0,5.5463481,0,9.83,68.75,-9,-9,0,1,1,0,0,6,8,5,1,431,579275.94,147535.19,0,0,4577.9214 -6892,8491,15301,15302,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,7.152041,7.4394884,0,1,4,154.82623,-9,2,2,2019,8,0,12,0,1,0,0,10.815396,10.815396,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,10,1,1,0,0,7,12,4,0,831,-84835.836,-47077.758,106763.69,67827.469,1974.0569 -6892,8491,15302,15301,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.173893,7.9691625,0,1,-4,-35.710632,-9,-9,-9,2019,13,3,35,0,1,3,0,11.774806,11.774806,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,10,1,1,0,0,3,12,4,0,831,-84835.836,-47077.758,106763.69,67827.469,1974.0569 -6893,8492,15303,15304,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.0912867,8.0102491,0,18,-12,83.372513,0,3,3,2019,27,10,38,38,1,10,0,8.5297813,8.5297813,0,0,0,0,2,1,1,0,0,0,29.06,45.59,54.2,57.49,5,1,1,0,0,9,7,5,1,688.5,159090.44,28837.086,199982.31,11782.291,3411.5615 -6893,8492,15304,15303,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4880791,8.8247347,0,18,12,-105.49277,0,-9,2,2019,8,0,42,48,1,0,0,16.128561,16.128561,0,0,0,0,0,1,1,0,0,0,54.2,57.49,29.06,45.59,8.333333333333334,1,1,0,0,9,7,5,1,688.5,159090.44,28837.086,199982.31,11782.291,3411.5615 -6894,8493,15305,-9,-9,-9,1,0,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-880.06293,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.87,35.01,-9,-9,0,1,1,0,0,1,6,1,0,297,63670.285,0,0,0,1132.6346 -6895,8494,15306,15307,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.0397615,9.2020044,0,24,0,-72.832001,0,2,2,2019,9,0,68,52,1,0,0,15.932531,15.932531,0,0,0,0,0,1,1,0,4.0164962,0,51.66,54.88,63.83,27.55,6.666666666666667,1,1,0,0,11,12,5,1,420.5,674026.56,347428.56,29351.209,0,4666.6875 -6895,8494,15307,15306,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.894671,7.9603944,0,24,0,28.052383,0,2,2,2019,6,0,35,35,1,0,0,7.6810327,7.6810327,0,0,0,0,0,1,1,0,0,0,63.83,27.55,51.66,54.88,6.666666666666667,1,1,0,0,11,12,5,1,420.5,674026.56,347428.56,29351.209,0,4666.6875 -6896,8495,15308,15309,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.6490517,8.2399645,0,9,0,24.514288,0,3,3,2019,8,0,37,38,1,0,0,14.455843,14.455843,0,0,0,0,0,1,1,0,0,0,53.81,53.56,56.67,42.78,8.333333333333334,1,1,0,0,12,9,4,1,450,1195013.1,209353.88,766480.25,0,2990.9932 -6896,8495,15309,15308,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.984787,6.4703836,9,9,14.566615,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2743716,56.67,42.78,53.81,53.56,8.333333333333334,1,1,0,0,0,9,4,1,450,1195013.1,209353.88,766480.25,0,2990.9932 -6897,8496,15310,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.2133865,8.4766722,6.1290712,0,0,-964.09387,0,2,2,2019,32,12,30,40,1,12,0,15.440962,15.440962,0,0,0,0,0,1,1,0,2.1651049,5.9374275,18.2,64.59999999999999,-9,-9,1.666666666666667,1,1,0,0,10,2,4,1,413,489846.78,98449.898,167789.61,0,2940.437 -6898,8497,15311,15312,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,7.393887,7.2245588,8,2,-99.014481,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4759703,7.2264848,57.06,57.76,53.45,49.53,8.333333333333334,1,1,0,0,2,8,2,1,318.5,448941.38,344638.75,124866.56,0,1982.0667 -6898,8497,15312,15311,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,8,-2,-29.13269,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.453486,0,53.45,49.53,57.06,57.76,8.333333333333334,1,1,0,0,2,8,2,1,318.5,448941.38,344638.75,124866.56,0,1982.0667 -6899,8498,15313,15315,-9,-9,1,1,68,0,1,0,1,1,-9,0,3,0,0,0,7,23,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,15.546146,12.79773,131.25421,0,1,1,0,0,0,52,47,50,55,7,2,3,0,1,0,8,1,0,422.66666,671399.63,321330.75,555035.63,223923.23,1261.2875 -6899,8498,15314,-9,15315,15313,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.7926,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,422.66666,671399.63,321330.75,555035.63,223923.23,1261.2875 -6899,8498,15315,15313,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,0,0,0,7,-23,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,50,55,52,47,8,2,3,0,1,0,8,1,0,422.66666,671399.63,321330.75,555035.63,223923.23,1261.2875 -6900,8499,15316,-9,15317,15319,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0114,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 -6900,8499,15317,15319,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.3950629,7.7207508,0,20,0,-35.71101,0,2,-9,2019,3,0,16,16,1,0,0,10.280929,10.280929,0,0,0,0,0,1,1,0,3.287746,0,52.27,57.22,49.86,55.31,8.333333333333334,1,1,0,0,9,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 -6900,8499,15318,-9,15317,15319,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.16693,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 -6900,8499,15319,15317,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.0017147,6.7397857,0,8,0,63.572113,0,-9,-9,2019,12,0,60,60,1,0,0,2.59464,2.59464,0,0,0,0,0,1,1,0,0,0,49.86,55.31,52.27,57.22,8.333333333333334,1,1,0,0,9,4,2,1,505,55683.363,0,183111.08,12965.948,1830.0939 -6901,8500,15320,15321,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,40,-2,0,-9,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.9422355,0,48,48,57.16,56.15,7,2,3,0,0,5,11,1,1,1548.5,-68101.563,-80714.094,0,0,1208.8539 -6901,8500,15321,15320,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,0,0,0,39,2,0,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48,48,8.333333333333334,2,3,0,0,5,11,1,1,1548.5,-68101.563,-80714.094,0,0,1208.8539 -6901,8501,15322,-9,15320,15321,1,0,31,0,0,0,1,1,1,0,5,8.8706923,8.6514168,0,0,0,-973.11786,-9,2,2,2019,16,6,30,0,1,6,0,24.198202,24.198202,0,0,0,0,0,0,0,0,1.4967763,0,32.26,61.08,-9,-9,6.666666666666667,2,3,0,0,6,11,5,1,3051,111173.2,37874.547,130302.96,136206.05,3062.6929 -6902,8502,15323,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.3686118,7.5654745,0,0,-894.52002,0,2,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,2.7907372,7.8744764,38.57,53.75,-9,-9,5,1,1,0,0,0,4,3,1,524,1063318.4,350252.72,159565.48,0,1766.0309 -6903,8503,15324,15325,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,9.4532261,9.4167824,46,7,26.809965,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3725786,9.6312103,56.92,49.39,46.96,37.93,8.333333333333334,1,1,0,0,2,9,5,1,1972,13407510,2145641.5,920469.63,0,10714.895 -6903,8503,15325,15324,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.7393284,8.6039114,46,-7,-114.1536,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.9641132,9.076622,46.96,37.93,56.92,49.39,6.666666666666667,1,1,0,0,0,9,5,1,1972,13407510,2145641.5,920469.63,0,10714.895 -6904,8504,15326,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,0,0,-966.91669,-9,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,1,1,0,0,1,2,1,0,765,0,0,0,0,0 -6905,8505,15327,15328,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,7.675139,7.9321814,0,3,-3,61.294498,0,2,2,2019,8,0,40,40,1,0,0,7.2992435,7.2992435,0,0,0,0,2,0,0,0,.63371688,0,58.85,41.83,43.99,34.88,8.333333333333334,1,1,0,0,13,11,3,0,780.5,-16750.625,162125.47,59461.313,99655.156,1636.2275 -6905,8505,15328,15327,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,7.5126367,7.4581213,0,3,3,48.559853,0,-9,-9,2019,18,6,22,22,1,6,0,9.4142494,9.4142494,0,0,0,0,0,0,0,0,.38835284,0,43.99,34.88,58.85,41.83,5,1,1,0,0,13,11,3,0,780.5,-16750.625,162125.47,59461.313,99655.156,1636.2275 -6906,8506,15329,15330,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.7448416,8.648138,0,6,0,41.249592,0,1,2,2019,6,0,42,43,1,0,0,23.649635,23.649635,0,0,0,0,0,0,0,0,.51241064,0,57.06,57.76,54.9,54.53,10,1,1,0,0,9,9,5,1,276,1719377.8,930016.75,646569.63,92748.813,3052.3647 -6906,8506,15330,15329,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.2557797,7.9487214,6.3768373,39,0,-58.555546,0,3,3,2019,8,0,20,15,1,0,0,10.880539,10.880539,0,0,0,0,2,0,0,0,6.1700668,0,54.9,54.53,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,276,1719377.8,930016.75,646569.63,92748.813,3052.3647 -6906,8507,15331,-9,15330,15329,1,0,32,0,0,0,1,1,-9,0,4,7.7518353,7.6469769,0,0,0,-934.8382,0,1,1,2019,7,0,33,26,1,0,1,7.1629338,7.1629338,0,0,0,0,0,0,0,0,.17498749,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,190,178771.81,6827.6143,84320.672,85559.133,655.96851 -6907,8508,15332,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,8.2157011,8.2692528,0,0,-938.87042,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1223536,8.4284372,49.14,51.53,-9,-9,10,1,1,0,0,3,8,4,1,287,2126304,491509.06,1611593.3,0,2723.5969 -6908,8509,15333,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.0212393,7.3595119,0,0,0,-1091.7625,0,3,3,2019,7,0,22,22,1,0,0,8.2047672,8.2047672,0,0,0,0,0,1,0,1,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,1,3,2,3,0,273,800893.44,321538.28,0,0,1391.0206 -6908,8510,15334,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1013.8869,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,31.93,58.41,-9,-9,6.666666666666667,1,1,1,1,1,2,1,0,302,294740,0,0,0,553.37146 -6909,8511,15335,-9,15338,15336,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1010.9697,-9,1,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 -6909,8511,15336,15338,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.3377619,8.2881613,0,22,1,92.357536,0,2,2,2019,11,1,40,38,1,1,0,10.206213,10.206213,0,0,0,0,0,1,1,0,0,0,45.27,50.01,47.81,52.33,3.333333333333333,1,1,0,0,12,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 -6909,8511,15337,-9,15338,15336,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.1663,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 -6909,8511,15338,15336,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,9.0450907,9.0271082,0,22,-1,81.760017,0,3,3,2019,15,3,40,30,1,3,0,19.515751,19.515751,0,0,0,0,0,1,1,0,1.710887,0,47.81,52.33,45.27,50.01,5,1,1,0,0,11,13,5,1,638.5,-89680.43,190081.13,123677.55,91279.938,4388.1777 -6910,8512,15339,15340,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.2294512,7.3196082,0,13,-16,23.722324,0,2,2,2019,11,1,20,25,1,1,0,8.3083668,8.3083668,0,0,0,0,0,1,1,0,0,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,3,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 -6910,8512,15340,15339,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,9.228898,8.9633656,0,6,16,-54.721199,0,3,3,2019,12,1,50,55,1,1,0,20.601982,20.601982,0,0,0,0,0,1,1,0,0,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,6,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 -6910,8512,15341,-9,15339,15340,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.2448,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 -6910,8512,15342,-9,15339,15340,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.3858,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1331,865182.75,634511.94,234320.19,4471.3774,3901.21 -6911,8513,15343,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.6685572,8.4861603,5.9213533,0,0,-942.55853,0,3,3,2019,11,1,37,37,1,1,0,14.121728,14.121728,0,0,0,0,0,0,0,0,3.249897,5.8200188,52.69,43.18,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,1294,571465.5,274029.44,67250.883,0,1592.5553 -6912,8514,15344,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,7.5873761,7.6616387,0,0,0,-1001.1089,0,3,3,2019,5,0,36,0,1,0,0,6.43576,6.43576,0,0,0,0,0,1,1,0,0,0,59.19,51.29,-9,-9,10,1,1,0,0,8,13,3,1,942,-100779.34,22392.572,0,0,2239.1514 -6913,8515,15345,15346,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,1,-56.936199,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.12,41.75,54.38,46.77,10,1,1,0,0,0,12,2,1,667.5,776709.94,202541.34,361792.81,0,1454.5215 -6913,8515,15346,15345,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.3523865,6.9990582,8,-1,48.975166,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9258721,6.958303,54.38,46.77,50.12,41.75,8.333333333333334,1,1,0,1,0,12,2,1,667.5,776709.94,202541.34,361792.81,0,1454.5215 -6914,8516,15347,15348,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,8.0173502,8.2156601,0,33,-3,158.46857,0,3,3,2019,9,0,34,40,1,0,0,15.071094,15.071094,0,0,0,0,7,1,1,0,0,0,56.35,35.1,53,54,8.333333333333334,1,1,0,0,9,12,5,1,519,347831.5,172153.89,137887.73,0,3050.9148 -6914,8516,15348,15347,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2219067,8.3969936,0,10,3,-11.465153,0,-9,-9,2019,9,0,38,38,1,1,0,11.272218,11.272218,0,0,0,0,0,1,1,0,0,0,53,54,56.35,35.1,8,1,1,0,0,1,12,5,1,519,347831.5,172153.89,137887.73,0,3050.9148 -6914,8517,15349,-9,15347,15348,1,0,29,0,0,0,2,2,-9,0,2,6.6713347,6.8452516,0,0,0,-1005.8979,0,3,2,2019,25,8,24,30,1,8,1,4.5268941,4.5268941,0,0,0,0,0,1,1,0,0,0,20.67,54.46,-9,-9,5,1,1,0,0,9,12,2,1,541,349798.53,0,0,0,103.95752 -6914,8518,15350,-9,15347,15348,1,0,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-980.43878,-9,3,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,1,0,5,12,1,1,1043,-71163.938,0,0,0,0 -6915,8519,15351,15352,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.0000925,9.1770267,0,40,1,2.7558751,0,2,3,2019,16,5,46,45,1,5,0,19.552704,19.552704,0,0,0,0,0,1,1,0,4.3408756,0,47.3,51.13,49.04,55.86,6.666666666666667,1,1,0,0,10,12,5,1,658,2315394,1717223,427145.44,0,2950.0532 -6915,8519,15352,15351,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,40,-1,111.38651,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3877218,0,49.04,55.86,47.3,51.13,8.333333333333334,1,1,0,0,0,12,5,1,658,2315394,1717223,427145.44,0,2950.0532 -6916,8520,15353,15354,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.7715368,6.8278418,52,3,-65.753433,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4163232,6.6940875,57.66,45.08,54.14,42.51,8.333333333333334,1,1,0,0,2,5,2,1,306.5,1072420.4,238656.45,386395.69,0,1365.584 -6916,8520,15354,15353,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,5.5714455,5.99752,52,-3,-180.51758,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.2865543,54.14,42.51,57.66,45.08,8.333333333333334,1,1,0,0,3,5,2,1,306.5,1072420.4,238656.45,386395.69,0,1365.584 -6917,8521,15355,15356,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.1520572,7.052206,0,11,-3,-58.289032,0,-9,-9,2019,11,0,50,50,1,0,0,3.1000044,3.1000044,0,0,0,0,0,0,0,0,8.5370932,0,38.66,57.81,44.22,56.66,6.666666666666667,1,1,0,0,11,10,5,1,1329.5,902302.38,478927.38,206441.5,0,7254.6362 -6917,8521,15356,15355,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.4647055,9.537962,0,23,3,-94.851921,0,2,2,2019,12,0,50,90,1,0,0,23.10771,23.10771,0,0,0,0,0,0,0,0,2.8316407,0,44.22,56.66,38.66,57.81,3.333333333333333,1,1,0,0,13,10,5,1,1329.5,902302.38,478927.38,206441.5,0,7254.6362 -6918,8522,15357,-9,15360,15359,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.7682,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 -6918,8522,15358,-9,15360,15359,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.74689,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 -6918,8522,15359,15360,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,7.4841995,7.3835535,0,20,6,1.0070428,0,3,3,2019,9,0,30,36,1,0,0,7.2110023,7.2110023,0,0,0,0,0,1,1,0,0,0,42.94,55.94,52.32,48.93,5,2,3,0,0,11,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 -6918,8522,15360,15359,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.9656591,8.6606216,0,20,-6,8.4178305,0,2,2,2019,9,0,46,48,1,0,0,15.415853,15.415853,0,0,0,0,0,1,1,0,0,0,52.32,48.93,42.94,55.94,8.333333333333334,2,3,0,0,11,2,4,1,1025.25,1597523.3,1482148.8,155575.5,35981.102,3097.9146 -6919,8523,15361,15363,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,7.6758666,7.3574533,0,20,-1,17.185211,0,3,-9,2019,6,0,30,28,1,0,0,7.3735237,7.3735237,0,0,0,0,0,1,1,0,0,0,52,57,56.18,51.02,10,3,4,0,0,7,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 -6919,8523,15362,-9,15361,15363,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1164.8264,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,3,4,0,0,1,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 -6919,8523,15363,15361,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.5355682,8.5017433,0,20,1,79.673096,0,-9,-9,2019,7,0,60,40,1,0,0,8.5460806,8.5460806,0,0,0,0,0,1,1,0,0,0,56.18,51.02,52,57,8.333333333333334,3,4,0,0,8,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 -6919,8523,15364,-9,15361,15363,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.42554,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,755.5,174965.52,6750.8877,307469.28,174661.38,3028.2156 -6920,8524,15365,15366,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.0142403,7.752162,7,6,87.360397,0,-9,-9,2019,15,3,0,37,4,3,0,0,0,0,0,0,0,0,1,1,0,1.9179292,8.1054668,39.52,58.98,51.83,57.2,3.333333333333333,1,1,0,0,5,2,3,1,737.5,1923877,1480879.9,308338.13,0,2570.6035 -6920,8524,15366,15365,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,10,-6,-83.652878,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5991454,0,51.83,57.2,39.52,58.98,8.333333333333334,1,1,0,0,5,2,3,1,737.5,1923877,1480879.9,308338.13,0,2570.6035 -6921,8525,15367,15368,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.9497299,7.1055851,38,3,-124.58729,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3848047,44.05,55.39,54.2,57.49,6.666666666666667,1,1,0,0,0,12,3,1,303,1677463.3,312096.22,253270.81,0,1886.9927 -6921,8525,15368,15367,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.750504,6.9284134,38,-3,-30.049061,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8369362,7.0050402,54.2,57.49,44.05,55.39,8.333333333333334,1,1,0,0,0,12,3,1,303,1677463.3,312096.22,253270.81,0,1886.9927 -6922,8526,15369,-9,15370,-9,1,0,37,0,0,0,3,3,-9,0,4,1.9057027,1.2042949,0,0,0,-1121.4514,0,3,-9,2019,6,0,48,8,1,0,0,.011985668,.011985668,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,10,8,2,0,1860,0,0,0,0,-7.1994557 -6922,8527,15370,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.5623,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,2.6234269,71.951172,24.067852,0,1,1,0,0,0,63.01,30.77,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,413,75087.516,0,0,0,447.37897 -6923,8528,15371,-9,15372,15373,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.4686,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 -6923,8528,15372,15373,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,7.5304241,7.8116484,0,13,-4,-45.250404,0,2,2,2019,8,0,34,34,1,0,0,7.9722753,7.9722753,0,0,0,0,0,1,1,0,0,0,46.33,55.93,23.41,55.96,8.333333333333334,1,1,0,0,6,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 -6923,8528,15373,15372,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,7.8275237,8.0829325,0,7,4,43.508015,0,2,2,2019,26,12,48,0,1,12,0,6.9382901,6.9382901,0,0,0,0,0,1,1,0,0,0,23.41,55.96,46.33,55.93,5,1,1,0,0,1,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 -6923,8528,15374,-9,15372,15373,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.1929,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 -6923,8528,15375,-9,15372,15373,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1012.457,-9,2,2,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,64.07000000000001,47.52,-9,-9,10,1,1,0,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 -6923,8528,15376,-9,15372,15373,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-871.12195,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,1107.8334,326831.63,20412.703,130944.93,5103.6836,3087.8206 -6924,8529,15377,-9,15378,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.9847,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,1,0,520,46625.551,0,0,0,3530.9109 -6924,8529,15378,-9,-9,-9,1,0,55,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1153.3564,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.53,51,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,520,46625.551,0,0,0,3530.9109 -6925,8530,15379,-9,15380,15381,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-949.5625,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 -6925,8530,15380,15381,-9,-9,1,0,39,0,4,0,1,1,-9,0,4,9.193428,9.2481298,0,13,-5,-29.008806,0,3,1,2019,6,0,38,30,1,0,0,26.636358,26.636358,0,0,0,0,0,1,1,0,3.2414212,0,59.53,56.44,52,56,8.333333333333334,1,1,0,0,9,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 -6925,8530,15381,15380,-9,-9,1,1,44,0,4,0,3,3,-9,0,4,8.6060591,8.8540392,0,13,5,-69.059662,0,2,3,2019,9,0,40,45,1,1,0,14.06106,14.06106,0,0,0,0,0,1,1,0,0,0,52,56,59.53,56.44,8,1,1,0,0,1,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 -6925,8530,15382,-9,15380,15381,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1042.1891,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 -6925,8530,15383,-9,15380,15381,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1130.0275,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 -6925,8530,15384,-9,15380,15381,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-974.06299,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,880.5,4440495,1000508.9,921982.94,65911.25,6108.7725 -6926,8531,15385,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,7.5629749,7.357419,0,0,-1039.0319,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,7.1138501,10.153038,65.769165,0,1,1,0,3.4562297,7.422092,54.7,11.76,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,192,999489.94,99727,311699.56,0,1929.2295 -6927,8532,15386,15387,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,30,12,-66.493233,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7035756,0,52.18,48.93,49,48,8.333333333333334,1,1,0,0,0,9,5,1,392,176570208,1697758.3,5059327,0,6613.437 -6927,8532,15387,15386,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,9.6044664,9.7549877,7.2537971,7,-12,49.328392,0,-9,-9,2019,11,0,25,32,1,2,0,67.168945,67.168945,0,0,0,0,0,1,1,0,.55612421,7.9865232,49,48,52.18,48.93,7,1,1,0,0,1,9,5,1,392,176570208,1697758.3,5059327,0,6613.437 -6928,8533,15388,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.7767363,7.1855235,0,0,-1058.0149,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,2.9660876,0,21.726019,0,1,1,0,5.237709,6.9539266,61.63,35.07,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,473,623016.31,140185.7,236900.56,0,1574.1021 -6929,8534,15389,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.5709171,7.9001551,0,0,0,-1104.5494,0,2,-9,2019,11,0,30,0,1,0,0,8.8700809,8.8700809,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,892,-60439.453,18788.936,0,0,1969.549 -6929,8534,15390,-9,15389,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.0719,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,892,-60439.453,18788.936,0,0,1969.549 -6930,8535,15391,15392,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,45,-1,-108.73425,0,3,3,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,0,30.52,23.87,52.99,51.28,10,1,1,0,0,0,11,4,1,820.5,1489530,639220.19,241341.78,0,2964.6611 -6930,8535,15392,15391,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.6386948,8.8651953,0,45,1,68.474968,0,3,3,2019,9,1,63,66,1,1,0,11.302582,11.302582,0,0,0,0,0,1,1,0,3.2682867,0,52.99,51.28,30.52,23.87,8.333333333333334,1,1,0,0,9,11,4,1,820.5,1489530,639220.19,241341.78,0,2964.6611 -6931,8536,15393,-9,15395,15394,1,0,17,0,2,0,2,2,-9,0,3,0,0,0,0,0,-916.15106,1,1,3,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.57,44.73,-9,-9,10,1,1,0,0,1,12,4,1,265.33334,868535.63,339843.78,312836.91,158666.55,4477.7324 -6931,8536,15394,15395,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,9.0221157,8.7727489,0,25,-1,-109.6235,0,3,3,2019,9,0,58,55,1,0,0,14.244805,14.244805,0,0,0,0,0,1,1,0,0,0,54.95,45.15,44.94,45.31,8.333333333333334,1,1,0,0,12,12,4,1,265.33334,868535.63,339843.78,312836.91,158666.55,4477.7324 -6931,8536,15395,15394,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.4090347,8.1120262,0,25,1,6.0482173,0,3,3,2019,12,0,35,37,1,0,0,14.674285,14.674285,0,0,0,0,0,1,1,0,0,0,44.94,45.31,54.95,45.15,8.333333333333334,1,1,0,0,12,12,4,1,265.33334,868535.63,339843.78,312836.91,158666.55,4477.7324 -6932,8537,15396,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,4,0,0,0,0,0,-985.04431,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,42,1,0,1,0,0,42.05,58.8,-9,-9,6.666666666666667,1,1,1,0,0,5,1,0,942,0,0,0,0,1099.5698 -6932,8537,15397,-9,15396,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.61804,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,942,0,0,0,0,1099.5698 -6933,8538,15398,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.9651499,8.4141035,0,0,-924.73077,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7114108,8.322382,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,867,696383.19,363284.88,317150.31,0,2598.9521 -6934,8539,15399,-9,15401,15402,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1138.3756,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 -6934,8539,15400,-9,15401,15402,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.0914,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 -6934,8539,15401,15402,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,7.4188671,7.4070239,0,14,0,16.613867,0,2,2,2019,12,0,20,23,1,0,0,10.880079,10.880079,0,0,0,0,2,1,1,0,0,0,49.09,57.3,51.24,58.84,6.666666666666667,1,1,0,0,10,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 -6934,8539,15402,15401,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,9.3836174,9.6693373,0,14,0,-156.54733,0,2,2,2019,9,0,70,50,1,0,0,14.731832,14.731832,0,0,0,0,2,1,1,0,3.598103,0,51.24,58.84,49.09,57.3,8.333333333333334,1,1,0,0,13,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 -6934,8539,15403,-9,15401,15402,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.6361,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1126.4,351483.97,134764.67,235121.5,126221.16,4754.6099 -6935,8540,15404,15406,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,7.9793854,8.0499907,0,5,-1,-64.533096,-9,-9,-9,2019,12,0,42,0,1,0,0,7.0657301,7.0657301,0,0,0,0,0,1,1,0,0,0,38.43,56.45,48.87,58.55,8.333333333333334,1,1,0,0,5,2,5,1,1750.6666,90958.664,152065.47,165244.63,130026.8,3873.9822 -6935,8540,15405,-9,15406,15404,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-917.85645,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1750.6666,90958.664,152065.47,165244.63,130026.8,3873.9822 -6935,8540,15406,15404,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.625495,8.7606363,7.0853791,5,1,9.4048557,0,1,1,2019,8,0,48,22,1,0,0,15.493659,15.493659,0,0,0,0,0,1,1,0,0,7.4088268,48.87,58.55,38.43,56.45,8.333333333333334,1,1,0,0,10,2,5,1,1750.6666,90958.664,152065.47,165244.63,130026.8,3873.9822 -6936,8541,15407,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1420259,8.0637054,0,0,0,-940.26263,0,2,3,2019,14,2,43,52,1,2,0,9.1240053,9.1240053,0,0,0,0,0,0,0,0,0,0,40.58,60.95,-9,-9,5,1,1,0,1,10,9,4,1,1068,-30499.801,136717.17,0,0,1386.5735 -6937,8542,15408,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.630733,7.739913,0,0,0,-1062.2579,-9,2,-9,2019,6,0,28,0,1,0,0,8.5207748,8.5207748,0,0,0,0,0,0,0,0,0,0,57.55,34.77,-9,-9,0,1,1,0,0,10,12,3,1,232,-51385.996,18527.133,0,0,899.30267 -6938,8543,15409,15410,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4133434,7.5914488,45,-3,-4.6203122,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.858398,7.5140748,58.15,52.91,54.2,57.49,10,1,1,0,0,4,5,4,1,732.5,1062324.3,636646.38,399734.38,0,4101.8247 -6938,8543,15410,15409,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.2773409,8.4087296,45,3,70.094772,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4202018,8.257926,54.2,57.49,58.15,52.91,10,1,1,0,0,3,5,4,1,732.5,1062324.3,636646.38,399734.38,0,4101.8247 -6939,8544,15411,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,8.7926178,8.9504004,7.0888925,16,-17,-124.2533,0,1,2,2019,8,0,55,75,1,0,0,16.029814,16.029814,0,0,0,0,0,1,1,0,2.6570189,7.7968121,57.06,57.76,61.75,37.79,8.333333333333334,1,1,0,0,8,7,5,1,1983,217291.47,108246.52,0,0,3249.2925 -6939,8544,15412,-9,15411,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.20081,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1983,217291.47,108246.52,0,0,3249.2925 -6939,8545,15413,-9,-9,-9,1,0,62,0,1,0,3,3,-9,0,3,8.3922195,8.8237209,8.1787634,16,17,90.068504,0,-9,-9,2019,6,0,38,37,1,0,0,15.457131,15.457131,0,0,0,0,0,1,1,0,5.7814655,8.0148468,61.75,37.79,57.06,57.76,8.333333333333334,1,1,0,0,11,7,5,1,433,1249710.3,928333.5,278474.06,0,4319.7891 -6940,8546,15414,15415,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5102348,8.2674274,0,5,1,129.98135,0,-9,2,2019,10,1,37,37,1,1,0,13.608102,13.608102,0,0,0,0,0,0,0,0,3.1715546,0,50.5,52.77,35.91,63.19,10,1,1,0,0,7,6,5,1,532.5,223229.63,120030.09,97427.43,71297.281,3863.6443 -6940,8546,15415,15414,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.6807346,8.4790888,0,5,-1,-150.68987,0,-9,-9,2019,14,2,39,42,1,2,0,16.833448,16.833448,0,0,0,0,0,0,0,0,4.6198668,0,35.91,63.19,50.5,52.77,8.333333333333334,1,1,0,0,5,6,5,1,532.5,223229.63,120030.09,97427.43,71297.281,3863.6443 -6941,8547,15416,15417,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.6261196,8.6427364,0,19,4,79.882004,0,-9,-9,2019,12,0,40,40,1,0,0,16.275877,16.275877,0,0,0,0,0,1,1,0,0,0,42.22,56.11,44.54,51.51,5,1,1,0,0,10,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 -6941,8547,15417,15416,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,7.5295658,7.6707225,0,19,-4,151.52292,0,2,2,2019,10,0,24,16,1,0,0,10.143992,10.143992,0,0,0,0,0,1,1,0,0,0,44.54,51.51,42.22,56.11,8.333333333333334,1,1,0,0,10,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 -6941,8547,15418,-9,15417,15416,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.06946,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 -6941,8547,15419,-9,15417,15416,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.45148,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,778.5,160893.39,82997.477,346445.75,134252.55,3266.9497 -6942,8548,15420,-9,-9,15421,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.1776,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 -6942,8548,15421,-9,-9,-9,1,1,39,0,3,0,2,2,-9,1,2,0,0,0,0,0,-1053.8058,0,3,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.76,43.85,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 -6942,8548,15422,-9,-9,15421,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.72467,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 -6942,8548,15423,-9,-9,15421,1,1,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1023.4701,-9,1,2,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,10,1,0,602.25,-181941.98,0,0,0,1362.166 -6943,8549,15424,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.9721422,8.1901865,0,0,-988.95374,0,1,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0175867,8.0369005,52.79,51.64,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,1132,1398163.5,384572.41,596320.06,0,2315.3389 -6944,8550,15425,15427,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1803217,8.3465385,0,6,-11,48.318775,0,2,2,2019,7,0,10,5,1,0,0,50.898499,50.898499,0,0,0,0,0,1,1,0,6.5063405,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,9,5,5,1,670.66669,26123.703,125881.12,225153.39,97541.039,6611.4751 -6944,8550,15426,-9,15425,15427,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.8566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,670.66669,26123.703,125881.12,225153.39,97541.039,6611.4751 -6944,8550,15427,15425,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,9.4014378,9.6476507,0,6,11,-17.976238,0,3,3,2019,6,0,20,20,1,0,0,70.302414,70.302414,0,0,0,0,0,1,1,0,7.3119206,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,670.66669,26123.703,125881.12,225153.39,97541.039,6611.4751 -6945,8551,15428,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.3209491,6.2090802,0,0,-1071.3311,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2054877,41.34,56.62,-9,-9,10,1,1,0,0,0,12,2,0,309,430514.13,97634.953,0,0,919.80664 -6946,8552,15429,-9,15431,15430,1,0,36,0,0,0,1,1,-9,0,3,8.7745762,8.7860441,0,0,0,-1124.9988,-9,2,2,2019,17,6,42,0,1,6,0,15.555279,15.555279,0,0,0,0,0,1,1,0,1.8031321,0,40.27,50.59,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,1095,526527.25,111080.93,0,0,2009.0101 -6946,8553,15430,15431,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.8035665,7.4927211,35,2,52.543438,-9,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9892395,7.7621989,60.02,56.42,53.99,48.04,10,1,1,0,0,9,13,5,1,312,1410886,899198.25,105198.46,0,5333.2979 -6946,8553,15431,15430,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.9072542,8.7805414,0,1,-2,23.040894,-9,-9,-9,2019,8,0,37,0,1,0,0,21.339209,21.339209,0,0,0,0,0,1,1,0,.89642984,0,53.99,48.04,60.02,56.42,6.666666666666667,1,1,0,0,10,13,5,1,312,1410886,899198.25,105198.46,0,5333.2979 -6947,8554,15432,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.007823,7.7580519,0,0,0,-800.50702,0,2,3,2019,15,3,38,38,1,3,0,7.8879704,7.8879704,0,0,0,0,0,0,0,0,0,0,48.57,53.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,426,318401.84,-82818.406,0,0,516.98108 -6947,8555,15433,-9,15432,-9,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-884.35632,-9,2,-9,2019,32,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,27.28,65.96000000000001,-9,-9,1.666666666666667,1,1,0,0,3,2,1,1,2079,-164368.36,0,0,0,314.70291 -6948,8556,15434,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.6407094,7.0095921,0,0,-936.1358,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1447625,52,45,-9,-9,8,1,1,0,0,0,2,2,1,1142,339610.5,81109.609,264017.16,0,1080.9319 -6949,8557,15435,15436,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,6.7115092,6.7868652,0,6,11,125.50774,0,3,3,2019,6,0,20,20,1,0,0,5.651792,5.651792,0,0,0,0,0,1,1,0,0,0,54.96,53.17,58.2,54.53,8.333333333333334,1,1,0,0,6,6,4,1,419,103185.5,0,97583.063,9884.1641,3306.5361 -6949,8557,15436,15435,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.602375,8.6673574,0,6,-11,-33.904324,0,2,1,2019,9,0,53,52,1,0,0,11.681853,11.681853,0,0,0,0,0,1,1,0,0,0,58.2,54.53,54.96,53.17,8.333333333333334,1,1,0,0,6,6,4,1,419,103185.5,0,97583.063,9884.1641,3306.5361 -6950,8558,15437,15438,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,8.3353405,8.3699141,0,9,8,241.1478,0,-9,-9,2019,12,0,35,35,1,0,0,11.961011,11.961011,0,0,0,0,0,1,1,0,0,0,54.37,54.8,33.22,44.32,8.333333333333334,1,1,0,0,11,12,5,1,3637,541073.88,-10693.863,479658.69,130796.86,3514.9565 -6950,8558,15438,15437,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,8.5724478,8.3354912,0,9,-8,49.325233,0,3,2,2019,21,9,41,37,1,9,0,18.859085,18.859085,0,0,0,0,0,1,1,0,0,0,33.22,44.32,54.37,54.8,3.333333333333333,1,1,0,0,11,12,5,1,3637,541073.88,-10693.863,479658.69,130796.86,3514.9565 -6951,8559,15439,15440,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.0754099,8.0772943,0,10,2,-4.631403,0,2,-9,2019,10,2,45,45,1,2,0,7.3555179,7.3555179,0,0,0,0,0,0,0,0,2.4905457,0,49.06,58.64,55.93,49.95,10,1,1,0,0,11,10,3,1,675,-13891.492,19606.293,222540.25,130933.28,1142.8207 -6951,8559,15440,15439,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,10,-2,51.069279,0,3,-9,2019,14,1,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,55.93,49.95,49.06,58.64,8.333333333333334,1,1,0,0,11,10,3,1,675,-13891.492,19606.293,222540.25,130933.28,1142.8207 -6952,8560,15441,15443,-9,-9,1,0,33,2,3,0,2,2,-9,0,4,7.1320839,7.3622456,0,7,-7,73.169357,0,2,2,2019,6,0,23,23,1,0,0,7.5645981,7.5645981,0,0,0,0,0,1,1,0,0,0,52.82,53.97,45.49,58.84,8.333333333333334,1,1,0,0,4,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 -6952,8560,15442,-9,15441,15443,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-747.6886,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 -6952,8560,15443,15441,-9,-9,1,1,40,2,3,0,2,2,-9,0,3,0,0,0,7,7,15.659653,0,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.49,58.84,52.82,53.97,5,1,1,1,0,6,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 -6952,8560,15444,-9,15441,15443,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.5452,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,722.5,-12372.791,6830.9517,0,0,927.71814 -6953,8561,15445,15446,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.858098,9.0545959,7.5414495,31,-4,-96.707779,0,2,3,2019,14,3,25,30,1,3,0,36.403965,36.403965,0,0,0,0,0,0,0,0,9.2845535,7.8889899,42.71,53.58,51.83,57.2,8.333333333333334,1,1,0,0,11,11,5,1,658,1357483.6,1159164.5,281633.81,46972.375,7932.1279 -6953,8561,15446,15445,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.6664224,7.6968932,31,4,85.614746,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.0023613,7.7882652,51.83,57.2,42.71,53.58,8.333333333333334,1,1,0,0,10,11,5,1,658,1357483.6,1159164.5,281633.81,46972.375,7932.1279 -6953,8562,15447,-9,15445,15446,1,0,23,0,0,0,1,1,-9,0,3,7.4871521,7.7811351,0,0,0,-1092.6515,0,2,2,2019,16,4,30,30,1,4,1,9.875267,9.875267,0,0,0,0,0,0,0,0,0,0,32.95,54.16,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,2702,-323414.66,44731.078,0,0,497.08865 -6954,8563,15448,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1081.1713,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.64,48.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,2065,257058.84,0,55462.035,0,1265.2126 -6955,8564,15449,15450,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.7399902,7.0593324,29,10,-46.350761,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,86.874756,0,0,1,1,0,6.3342042,6.7021236,56.79,22.19,55.96,49.93,5,1,1,0,0,5,4,2,1,628,336618.5,84788.875,269778.78,0,2212.5178 -6955,8564,15450,15449,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,29,-10,-63.867847,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,49.93,56.79,22.19,5,1,1,0,0,0,4,2,1,628,336618.5,84788.875,269778.78,0,2212.5178 -6955,8565,15451,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-963.38104,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,-9,-9,8.333333333333334,1,1,1,0,5,4,1,1,460,84814.422,0,155758.17,22631.123,146.44667 -6955,8566,15452,-9,15450,15449,1,1,25,0,0,0,2,2,-9,0,4,8.0176992,7.8384137,0,0,0,-942.45679,0,2,3,2019,11,0,43,41,1,0,0,7.8957543,7.8957543,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,188,46180.926,0,0,0,474.74399 -6956,8567,15453,15454,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,55,-1,19.204288,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,7.2471871,0,0,1,1,0,1.0714006,0,59.22,40.22,55.79,52.62,6.666666666666667,1,1,0,0,0,9,2,1,515,661486.19,65751.313,628348.88,0,1407.6805 -6956,8567,15454,15453,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.8288727,6.8712506,55,1,-75.612373,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6218438,6.4746099,55.79,52.62,59.22,40.22,8.333333333333334,1,1,0,0,0,9,2,1,515,661486.19,65751.313,628348.88,0,1407.6805 -6957,8568,15455,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.6697927,7.9724569,5.3605304,0,0,-1105.7098,0,3,-9,2019,23,11,42,50,1,11,0,5.8569689,5.8569689,0,0,0,0,0,1,1,0,0,5.6473131,36.16,34.96,-9,-9,5,1,1,0,1,6,5,4,0,805,-201697.2,-22056.313,108417.1,12425.356,978.37848 -6958,8569,15456,-9,15457,15459,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.4021,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 -6958,8569,15457,15459,-9,-9,1,0,40,0,2,0,1,1,1,0,4,7.7978992,8.4124413,0,12,-10,-44.751766,-9,3,3,2019,16,4,54,0,1,4,0,4.6719675,4.6719675,0,0,0,0,0,0,0,0,.93595368,0,35.57,63.56,48.28,60.18,8.333333333333334,2,3,0,0,2,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 -6958,8569,15458,-9,15457,15459,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.73853,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 -6958,8569,15459,15457,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.3505669,9.0454559,0,12,10,-14.982438,0,3,3,2019,9,0,47,52,1,0,0,31.07453,31.07453,0,0,0,0,0,0,0,0,2.3548055,0,48.28,60.18,35.57,63.56,8.333333333333334,1,1,0,0,10,9,5,1,2662,102042.98,130102.83,504657.19,495063.25,5450.25 -6959,8570,15460,15461,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,8,15,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,7.4579654,157.68454,59.943523,0,1,1,0,0,0,54,46,50,47,8,2,3,0,0,0,8,1,0,649,26282.48,-10570.242,0,0,1513.2522 -6959,8570,15461,15460,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,50,-15,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,54,46,7,2,3,0,0,0,8,1,0,649,26282.48,-10570.242,0,0,1513.2522 -6959,8571,15462,-9,15461,15460,1,0,26,0,0,0,2,2,-9,0,4,8.4222107,8.1894112,0,0,0,-1016.7728,0,3,-9,2019,11,0,38,22,1,2,0,12.912066,12.912066,0,0,0,0,2,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,8,8,4,0,397,121697.22,0,0,0,1967.4027 -6959,8572,15463,-9,15461,15460,1,1,24,0,0,0,2,2,-9,0,4,7.7344866,7.6515284,0,0,0,-901.40997,-9,3,-9,2019,10,0,38,0,1,1,0,6.0162935,6.0162935,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,3,0,461,144872.72,0,0,0,1653.1471 -6959,8573,15464,-9,15461,15460,1,1,34,0,0,0,2,2,-9,0,4,7.877099,8.1445284,0,0,0,-950.40564,-9,3,-9,2019,10,0,60,0,1,1,0,6.9204483,6.9204483,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,8,4,0,489,-131440.64,0,0,0,1792.3201 -6960,8574,15465,15466,-9,-9,1,0,27,0,0,0,1,1,1,1,1,0,0,0,3,-8,-128.81023,-9,2,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,37.83,16.67,59.53,56.44,8.333333333333334,1,1,0,0,7,5,3,1,1866,-162150.28,0,0,0,1868.6409 -6960,8574,15466,15465,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.0157442,8.0447254,0,3,8,-54.227055,0,-9,-9,2019,8,0,37,40,1,0,0,11.732844,11.732844,0,0,0,0,42,1,1,0,0,0,59.53,56.44,37.83,16.67,8.333333333333334,1,1,0,0,4,5,3,1,1866,-162150.28,0,0,0,1868.6409 -6960,8575,15467,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.828732,7.8835917,0,0,-1030.3235,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,6.0895939,0,47.563454,0,1,1,0,4.430521,8.1878757,36.51,28.13,-9,-9,5,1,1,0,0,0,5,4,1,214,981815.19,292566.03,189121.28,0,2164.2192 -6961,8576,15468,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,5.4492564,5.8585019,0,0,-1094.3948,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4884143,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,136,-2156.7854,191565.92,61872.285,0,530.20801 -6962,8577,15469,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.9809966,7.9436698,0,0,0,-970.66162,0,-9,3,2019,4,0,85,74,1,0,0,4.7832789,4.7832789,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,1059,101766.99,-34251.371,77119.836,-2020.2783,1408.9099 -6963,8578,15470,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,4.9929581,4.8880672,0,0,-990.28485,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,13.485842,0,0,1,1,0,0,5.4186211,46.19,16.97,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,193,826011.94,34766.504,490823,0,1001.7642 -6964,8579,15471,-9,15473,15474,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9948,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 -6964,8579,15472,-9,15473,15474,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.04175,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 -6964,8579,15473,15474,-9,-9,1,0,40,0,3,0,1,1,-9,0,3,7.8504152,7.8122482,0,9,2,109.0603,0,-9,-9,2019,11,1,20,20,1,1,0,11.213189,11.213189,0,0,0,0,0,0,0,0,1.3055296,0,43.73,55.44,46.34,61.24,8.333333333333334,1,1,0,0,9,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 -6964,8579,15474,15473,-9,-9,1,1,38,0,3,0,1,1,-9,0,5,9.1109076,9.4733171,0,9,-2,52.416809,0,-9,-9,2019,6,1,40,37,1,1,0,23.90637,23.90637,0,0,0,0,0,0,0,0,1.2790692,0,46.34,61.24,43.73,55.44,8.333333333333334,1,1,0,0,10,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 -6964,8579,15475,-9,15473,15474,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1131.4301,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,1,669.20001,654243.44,476018.78,299841.72,202540.94,3986.0708 -6965,8580,15476,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.8411384,5.7820973,0,0,-1142.0535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.07939,5.9252267,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,773,-279946.38,17554.805,176006.13,0,687.1933 -6966,8581,15477,15478,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0822086,8.6208658,0,6,1,75.640213,0,-9,-9,2019,9,0,40,50,1,1,0,11.397035,11.397035,0,0,0,0,0,0,0,0,0,0,51,56,46.4,59.87,8,1,1,0,0,1,9,5,1,1029,214894.73,183651.91,0,0,3387.1992 -6966,8581,15478,15477,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.602397,8.5294962,0,6,-1,-117.87363,0,2,2,2019,8,0,52,57,1,0,0,11.268491,11.268491,0,0,0,0,0,0,0,0,.73786247,0,46.4,59.87,51,56,8.333333333333334,1,1,0,0,7,9,5,1,1029,214894.73,183651.91,0,0,3387.1992 -6967,8582,15479,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,5,0,7.062921,7.2422318,0,0,-1029.4214,-9,1,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.8719301,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,5,1,2,0,417,217985.42,0,0,0,-65.005577 -6967,8583,15480,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,6.2762504,5.8455825,0,0,-858.0755,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.5249434,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1224,0,0,0,0,65.37571 -6967,8584,15481,-9,-9,-9,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-971.61548,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.8,53.98,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1219,-246367.2,0,0,0,136.80164 -6967,8585,15482,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1100.8655,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,1,2,0,878,-241656.63,0,0,0,0 -6968,8586,15483,15484,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,34,6,17.300711,0,2,2,2019,1,0,0,47,4,0,0,0,0,0,0,0,0,2,0,0,0,2.6204135,0,48.45,49.46,43.05,44.78,8.333333333333334,1,1,0,0,9,11,4,1,731.5,1488403.3,858753.19,447767.63,0,1652.8936 -6968,8586,15484,15483,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.599308,8.5919447,0,32,-6,25.594,0,1,1,2019,6,0,37,47,1,0,0,15.636233,15.636233,0,0,0,0,7,0,0,0,1.09468,0,43.05,44.78,48.45,49.46,6.666666666666667,1,1,0,0,9,11,4,1,731.5,1488403.3,858753.19,447767.63,0,1652.8936 -6969,8587,15485,15486,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,10,15,0,0,-9,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.89,39.46,38.18,31.44,5,1,1,0,0,0,7,1,0,193.5,519668.38,0,261748.95,0,1627.3849 -6969,8587,15486,15485,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,0,0,0,10,-15,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,31.44,39.89,39.46,5,1,1,0,1,0,7,1,0,193.5,519668.38,0,261748.95,0,1627.3849 -6970,8588,15487,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.6825633,7.9006276,0,0,0,-985.263,0,3,2,2019,10,0,39,39,1,1,0,8.7610941,8.7610941,0,0,0,0,2,1,0,1,0,0,51,48,-9,-9,7,1,1,0,0,12,9,3,1,308,69494.609,162149.66,0,0,1186.7552 -6971,8589,15488,15489,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.3170695,7.3620658,0,34,-13,35.856441,0,3,2,2019,15,3,24,14,1,3,0,5.8599272,5.8599272,0,0,0,0,0,1,1,0,0,0,51.41,56.15,55.36,51.57,8.333333333333334,1,1,0,0,12,6,3,1,1807.5,428295.84,316374.56,136190.47,0,2111.4287 -6971,8589,15489,15488,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.9225507,7.6791077,34,13,39.825981,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6695652,55.36,51.57,51.41,56.15,1.666666666666667,1,1,0,0,12,6,3,1,1807.5,428295.84,316374.56,136190.47,0,2111.4287 -6972,8590,15490,15491,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.7510662,8.6649561,0,13,-1,14.274274,0,2,2,2019,12,1,38,38,1,1,0,20.548031,20.548031,0,0,0,0,0,1,1,0,0,0,46.5,58.26,59.47,41.3,5,1,1,0,0,9,2,4,0,425,458246.75,433307.75,167404.38,96466.5,3396.1282 -6972,8590,15491,15490,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,7.654634,7.544673,0,13,1,-18.002707,0,2,1,2019,11,0,25,0,1,0,0,10.464483,10.464483,0,0,0,0,0,1,1,0,0,0,59.47,41.3,46.5,58.26,8.333333333333334,1,1,0,0,0,2,4,0,425,458246.75,433307.75,167404.38,96466.5,3396.1282 -6973,8591,15492,15494,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,7.5485334,7.4892626,0,1,-2,-58.986485,0,-9,2,2019,20,8,44,20,1,8,0,3.6237614,3.6237614,0,0,0,0,0,1,1,0,0,0,22.66,56.02,50,57,3.333333333333333,1,1,0,0,3,7,3,0,908,422177.94,104221.52,270930.47,0,1923.2024 -6973,8591,15493,-9,15492,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.7944,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,908,422177.94,104221.52,270930.47,0,1923.2024 -6973,8591,15494,15492,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,7.619276,7.4586816,0,1,2,63.246811,-9,-9,-9,2019,10,0,40,0,1,1,0,7.680027,7.680027,0,0,0,0,0,1,1,0,0,0,50,57,22.66,56.02,7,4,1,0,0,1,7,3,0,908,422177.94,104221.52,270930.47,0,1923.2024 -6974,8592,15495,-9,15497,15496,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.7951,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 -6974,8592,15496,15497,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.3960495,8.7055283,0,8,2,-138.11377,0,1,3,2019,9,0,37,37,1,1,0,15.381838,15.381838,0,0,0,0,0,1,1,0,0,0,52,55,46.9,56.66,8,1,1,0,1,7,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 -6974,8592,15497,15496,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,8,-2,-27.383415,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,52,55,1.666666666666667,1,1,0,1,7,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 -6974,8592,15498,-9,15497,15496,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1038.3861,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,3305.25,87299.938,131222.09,0,0,1532.2212 -6975,8593,15499,15500,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6440639,7.384994,7,7,-104.66765,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.196609,7.2126274,53,47,57.06,57.76,7,4,1,0,0,0,11,3,1,527.5,719540.94,408475,176599.09,0,2261.3481 -6975,8593,15500,15499,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.0651789,6.3235598,7,-7,2.5222783,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8128948,5.6929946,57.06,57.76,53,47,8.333333333333334,1,1,0,0,1,11,3,1,527.5,719540.94,408475,176599.09,0,2261.3481 -6976,8594,15501,15502,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.9892864,9.0741596,0,34,-5,-.80807781,0,2,2,2019,9,0,35,35,1,0,0,32.140636,32.140636,0,0,0,0,2,0,0,0,1.1849303,0,51.67,60.18,55.9,52.64,1.666666666666667,1,1,0,0,12,8,5,1,341,323193.94,44295.078,648998.81,287897.56,4175.9019 -6976,8594,15502,15501,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8084416,7.6932688,0,36,5,-20.21636,0,3,3,2019,10,0,28,30,1,0,0,10.133359,10.133359,0,0,0,0,0,0,0,0,.007800343,0,55.9,52.64,51.67,60.18,1.666666666666667,1,1,0,0,12,8,5,1,341,323193.94,44295.078,648998.81,287897.56,4175.9019 -6976,8595,15503,-9,15502,15501,1,0,29,0,0,0,1,1,-9,0,4,8.4870653,8.7711773,0,0,0,-1000.8223,0,2,2,2019,10,0,37,36,1,0,1,13.080245,13.080245,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,862,317174.41,5550.1475,0,0,1521.7849 -6977,8596,15504,15505,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5901184,8.6853647,0,29,-14,-110.6753,0,1,2,2019,10,0,64,87,1,0,0,11.207472,11.207472,0,0,0,0,2,1,1,0,5.1978941,0,51.11,50.75,53,47,8.333333333333334,1,1,0,0,9,5,5,1,718,2461505.5,2285755,242260.84,0,6829.1743 -6977,8596,15505,15504,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,8.5842495,8.7537451,0,6,14,4.2949138,0,-9,2,2019,10,0,35,35,1,1,0,20.56167,20.56167,0,0,0,0,0,1,1,0,8.0700207,0,53,47,51.11,50.75,7,1,1,0,0,1,5,5,1,718,2461505.5,2285755,242260.84,0,6829.1743 -6977,8597,15506,-9,15504,15505,1,0,18,0,0,0,2,2,-9,0,4,7.3817773,7.3301167,0,0,0,-1102.4165,0,2,3,2019,12,0,35,0,1,2,1,5.8452697,5.8452697,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,5,3,1,1996,53634.695,-11800.9,0,0,881.85626 -6978,8598,15507,15508,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,7,2,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,45.87,38.23,0,1,1,0,0,5,7,1,1,1390.5,375132.06,-44160.195,128681.3,0,1275.4851 -6978,8598,15508,15507,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,45,-2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.87,38.23,48.87,58.55,8.333333333333334,1,1,0,0,1,7,1,1,1390.5,375132.06,-44160.195,128681.3,0,1275.4851 -6979,8599,15509,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1116.0786,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,0,30.12,28.17,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,802,23751.447,0,0,0,1507.7765 -6980,8600,15510,-9,15511,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-928.37244,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,1,0,651.5,303342.69,-43665.117,473794.38,144955.66,1776.7781 -6980,8600,15511,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-913.88538,-9,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,48.63,11.82,-9,-9,6.666666666666667,3,4,1,0,1,8,1,0,651.5,303342.69,-43665.117,473794.38,144955.66,1776.7781 -6980,8601,15512,-9,15511,-9,1,0,21,0,1,0,2,2,-9,0,4,0,0,0,0,0,-738.06659,-9,2,-9,2019,9,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,3,4,1,0,2,8,1,0,1334,-147679.63,0,0,0,900.29315 -6981,8602,15513,-9,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.9518118,8.1424179,0,0,0,-1099.5198,0,2,1,2019,22,9,48,12,1,9,0,9.589777,9.589777,0,0,0,0,0,1,0,1,0,0,17.27,58.44,-9,-9,6.666666666666667,1,1,0,0,12,2,4,0,455.5,-79885.742,0,0,0,2163.9036 -6981,8602,15514,-9,15513,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.5344,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,.01091267,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,0,455.5,-79885.742,0,0,0,2163.9036 -6982,8603,15515,15516,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.0745697,9.1198025,0,33,-1,50.02224,0,3,2,2019,10,0,50,60,1,0,0,16.3395,16.3395,0,0,0,0,0,1,1,0,3.1762848,0,52.01,48.98,44.01,34.42,6.666666666666667,1,1,0,0,10,7,5,1,610,2282443.5,1106275.5,767116.56,0,2806.061 -6982,8603,15516,15515,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,33,1,-7.7652392,0,-9,-9,2019,15,3,0,51,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44.01,34.42,52.01,48.98,1.666666666666667,1,1,0,0,9,7,5,1,610,2282443.5,1106275.5,767116.56,0,2806.061 -6982,8604,15517,-9,15516,15515,1,0,20,0,0,0,2,2,-9,0,3,7.4364343,7.5628314,0,0,0,-1053.2015,0,2,2,2019,7,0,32,26,1,0,1,7.5176325,7.5176325,0,0,0,0,0,1,1,0,0,0,53.22,50.02,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,213,-242848.52,0,0,0,684.91864 -6983,8605,15518,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.2716389,8.6974688,0,0,0,-946.24146,0,3,3,2019,6,0,35,40,1,0,0,17.738733,17.738733,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,7,5,0,170,1558321.8,882411.38,670441.94,0,2357.0703 -6984,8606,15519,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.6838861,6.5198913,0,0,-1005.1496,0,1,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.63626,55.44,33.59,-9,-9,10,4,2,0,0,0,6,2,1,1650,19988.191,-15646.694,212606.22,0,753.73938 -6985,8607,15520,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.3447628,8.0602722,0,0,0,-938.64514,0,1,2,2019,9,0,36,37,1,0,0,9.8146315,9.8146315,0,0,0,0,0,0,0,0,2.5996234,0,45.77,51.86,-9,-9,8.333333333333334,4,2,0,0,5,7,4,1,343,135870,0,0,0,764.84357 -6986,8608,15521,15522,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.1332588,8.2229605,0,18,12,-20.656044,-9,3,3,2019,12,0,43,0,1,0,0,8.7555771,8.7555771,0,0,0,0,2,1,1,0,0,0,54.96,53.17,45.73,47.04,8.333333333333334,1,1,0,0,8,5,5,1,537.33331,681128.19,313690.53,291902.53,83047.555,3608.6399 -6986,8608,15522,15521,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,8.4869184,8.5454693,0,18,-12,5.8338442,-9,2,2,2019,14,3,41,0,1,3,0,12.750301,12.750301,0,0,0,0,7,1,1,0,0,0,45.73,47.04,54.96,53.17,6.666666666666667,1,1,0,0,10,5,5,1,537.33331,681128.19,313690.53,291902.53,83047.555,3608.6399 -6986,8608,15523,-9,15522,15521,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.17169,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,537.33331,681128.19,313690.53,291902.53,83047.555,3608.6399 -6987,8609,15524,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.0960984,5.7292881,0,0,-1029.1333,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0677619,49.69,52.99,-9,-9,8.333333333333334,1,1,0,0,7,2,2,0,185,274074.06,132485.03,150491.42,0,1408.0183 -6988,8610,15525,-9,15527,15526,1,1,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1105.2848,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,0,1,1,0,0,1,12,2,1,328.66666,121832.61,0,0,0,808.87415 -6988,8610,15526,15527,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,6.7407765,6.7238064,0,7,-8,16.317537,0,3,2,2019,9,0,70,80,1,0,0,1.2443267,1.2443267,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.81,61.51,8.333333333333334,1,1,0,0,8,12,2,1,328.66666,121832.61,0,0,0,808.87415 -6988,8610,15527,15526,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,6.7932048,6.6138139,0,7,8,146.21452,0,3,-9,2019,10,0,40,45,1,0,0,2.3226638,2.3226638,0,0,0,0,0,0,0,0,0,0,45.81,61.51,54.37,54.8,10,1,1,0,0,8,12,2,1,328.66666,121832.61,0,0,0,808.87415 -6988,8611,15528,-9,15527,15526,1,1,18,0,0,0,2,2,-9,0,3,7.0566182,7.7790284,0,0,0,-1151.1069,0,2,2,2019,7,1,50,0,1,1,1,3.7273154,3.7273154,0,0,0,0,0,0,0,0,4.025331,0,60.06,34.28,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,499,134166.31,0,0,0,813.9436 -6989,8612,15529,-9,15530,-9,1,1,60,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1040.7417,0,3,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,11,1,1,778,117136.94,0,0,0,372.76157 -6989,8613,15530,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,7.3272352,7.4722176,0,0,-1003.2768,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,39.36293,0,0,1,1,0,0,7.2991886,34.52,18.38,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,704,598809.44,115821.77,166253.5,0,1511.3879 -6990,8614,15531,-9,15532,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.63171,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,2314,12876.891,0,0,0,1464.8025 -6990,8614,15532,-9,-9,-9,1,0,21,0,1,1,2,0,0,0,4,0,6.3485823,5.7415667,0,0,-1082.4683,-9,-9,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,5.8912148,0,46.85,47.29,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2314,12876.891,0,0,0,1464.8025 -6991,8615,15533,15534,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,8.0427418,7.9286418,0,7,3,-60.648788,0,3,2,2019,15,3,30,31,1,3,0,10.843403,10.843403,0,0,0,0,0,0,0,0,0,0,42.05,29.67,27,36.97,5,1,1,0,0,9,2,5,1,854,449376.09,223662.5,201127.67,16288.732,2594.6221 -6991,8615,15534,15533,-9,-9,1,0,44,0,0,0,1,1,-9,0,1,8.2540741,7.9048328,0,7,-3,5.4864836,0,2,2,2019,18,6,68,0,1,6,0,6.5964694,6.5964694,0,0,0,0,7,0,0,0,0,0,27,36.97,42.05,29.67,1.666666666666667,1,1,0,0,10,2,5,1,854,449376.09,223662.5,201127.67,16288.732,2594.6221 -6992,8616,15535,15536,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.8708239,7.7723517,0,4,-4,-83.385391,0,3,3,2019,11,0,38,36,1,0,0,7.4434376,7.4434376,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.65,60.47,8.333333333333334,1,1,0,0,7,4,4,0,404.66666,16162.133,2508.615,0,0,2638.9834 -6992,8616,15536,15535,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,7.6881299,7.7235942,0,4,4,-24.698797,0,-9,-9,2019,7,0,39,40,1,0,0,7.1199803,7.1199803,0,0,0,0,0,1,1,0,0,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,0,404.66666,16162.133,2508.615,0,0,2638.9834 -6992,8616,15537,-9,15535,15536,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.8491,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,404.66666,16162.133,2508.615,0,0,2638.9834 -6993,8617,15538,-9,15542,15541,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-889.19342,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 -6993,8617,15539,-9,15542,15541,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.7607,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 -6993,8617,15540,-9,15542,15541,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.5922,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 -6993,8617,15541,15542,-9,-9,1,1,47,2,3,0,1,1,-9,0,5,9.8832846,9.9911194,0,14,3,-12.595508,0,3,1,2019,6,0,40,80,1,0,0,46.173389,46.173389,0,0,0,0,0,1,1,0,8.1975622,0,54.1,59.11,50,55,1.666666666666667,4,2,0,0,9,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 -6993,8617,15542,15541,-9,-9,1,0,44,2,3,0,1,1,-9,0,4,8.3384657,8.5976477,0,14,-3,-105.50438,-9,-9,-9,2019,10,0,22,0,1,1,0,25.675251,25.675251,0,0,0,0,0,1,1,0,8.6431456,0,50,55,54.1,59.11,8,1,1,0,0,1,8,5,1,407.39999,416272.72,57677.617,820136.19,420678.91,10775.157 -6994,8618,15543,-9,15544,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-970.15271,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,1,771,167624.88,0,0,0,1162.2712 -6994,8618,15544,-9,-9,-9,1,0,29,2,2,0,1,1,-9,0,4,7.346734,7.0524316,0,0,0,-907.8645,0,-9,-9,2019,11,1,32,41,1,1,0,4.7478795,4.7478795,0,0,0,0,0,1,0,1,2.0489111,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,6,6,2,1,771,167624.88,0,0,0,1162.2712 -6994,8618,15545,-9,15544,-9,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.6174,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,771,167624.88,0,0,0,1162.2712 -6995,8619,15546,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.8460078,6.5764494,0,0,-1024.5133,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.534451,64.38,34.3,-9,-9,10,1,1,0,0,0,4,2,1,3575,-52565.129,153950.36,0,0,299.013 -6996,8620,15547,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.7231474,8.0268974,6.7551632,0,0,-948.56677,0,3,2,2019,6,0,35,35,1,0,0,7.5925846,7.5925846,0,0,0,0,0,1,1,0,6.8240609,6.7466912,49.84,44.96,-9,-9,0,1,1,0,0,11,9,4,1,1253,1194933.4,316742.06,327374.13,0,1882.9353 -6997,8621,15548,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,7.5168614,7.8520703,0,0,-1109.1749,0,1,2,2019,10,1,0,0,4,1,0,0,0,1,8.2142744,0,68.682144,0,1,1,0,6.0726542,7.698503,56.5,24.37,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,236,816554.19,84005.664,201904.33,0,2540.9563 -6998,8622,15549,15550,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.6984425,8.5207005,0,7,3,-116.54606,0,3,2,2019,7,0,36,36,1,0,0,13.904651,13.904651,0,0,0,0,0,0,0,0,0,0,53.82,45.88,43.7,58.28,8.333333333333334,1,1,0,0,9,13,5,1,510,941513.75,630337.31,258183.94,0,4470.4131 -6998,8622,15550,15549,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.9226551,8.953042,0,7,-3,45.73143,0,3,3,2019,11,0,36,36,1,0,0,34.023045,34.023045,0,0,0,0,0,0,0,0,4.8851199,0,43.7,58.28,53.82,45.88,6.666666666666667,1,1,0,0,9,13,5,1,510,941513.75,630337.31,258183.94,0,4470.4131 -6998,8623,15551,-9,15549,15550,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-983.99603,-9,2,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1628,55456.934,0,0,0,0 -6999,8624,15552,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.5614319,7.9882078,5.882761,0,0,-1083.6973,0,3,3,2019,27,11,25,25,1,11,0,10.000415,10.000415,0,0,0,0,2,0,0,0,6.1814561,5.4583812,31.59,39.69,-9,-9,3.333333333333333,1,1,0,0,10,4,3,1,465,36323.184,131237.63,0,0,1283.8549 -7000,8625,15553,-9,15555,-9,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.1506,-9,1,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,3.0664859,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 -7000,8625,15554,-9,15555,-9,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-925.28497,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 -7000,8625,15555,-9,-9,-9,1,0,48,0,3,0,1,1,-9,0,1,6.7182364,7.8445477,6.9060869,0,0,-1081.4324,0,2,1,2019,17,5,20,25,1,5,0,4.4780841,4.4780841,0,0,0,0,2,1,1,0,7.24436,0,21.67,40.52,-9,-9,1.666666666666667,1,1,0,0,12,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 -7000,8625,15556,-9,15555,-9,1,0,14,0,3,1,3,0,-9,0,1,0,0,0,0,0,-943.44495,-9,2,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,33,-9,-9,3,1,1,-9,0,0,9,2,0,444.75,-196869.23,58080.785,0,0,3115.4224 -7001,8626,15557,15558,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,-2,-110.26504,0,3,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.4,45.23,60.02,56.42,10,1,1,0,0,0,9,3,1,1806,403012.81,270884.63,382161.75,0,3211.1025 -7001,8626,15558,15557,-9,-9,1,1,83,0,0,0,2,2,-9,0,5,0,8.4865274,7.8014255,61,2,122.29917,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0964937,60.02,56.42,63.4,45.23,10,1,1,0,0,0,9,3,1,1806,403012.81,270884.63,382161.75,0,3211.1025 -7002,8627,15559,-9,-9,-9,1,0,27,1,3,0,2,2,-9,0,4,0,5.782104,6.169014,0,0,-919.72711,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,5.5113506,0,37.78,55.7,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 -7002,8627,15560,-9,15559,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.2236,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 -7002,8627,15561,-9,15559,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.4886,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 -7002,8627,15562,-9,15559,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.6956,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,1031,-141909.73,0,0,0,2039.5481 -7003,8628,15563,15564,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.2828398,8.8243179,0,21,1,-106.30864,0,1,1,2019,10,0,37,37,1,0,0,30.701841,30.701841,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.69,57.47,8.333333333333334,1,1,0,0,12,7,5,1,1049.5,1249155.9,840224,641353.13,0,4042.9795 -7003,8628,15564,15563,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,6.7732983,7.1159205,0,21,-1,141.36958,0,2,1,2019,7,0,2,4,1,0,0,58.439011,58.439011,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.37,54.8,8.333333333333334,1,1,0,0,10,7,5,1,1049.5,1249155.9,840224,641353.13,0,4042.9795 -7003,8629,15565,-9,15564,15563,1,1,21,0,0,1,1,0,0,0,4,0,6.3840284,6.7592206,0,0,-1041.2031,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.6388574,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,9,7,2,1,1355,-286530.25,0,0,0,620.39923 -7003,8630,15566,-9,15564,15563,1,0,20,0,0,0,2,2,-9,0,2,7.6198511,7.5169492,0,0,0,-903.99707,0,1,1,2019,20,7,32,32,1,7,1,7.8067975,7.8067975,0,0,0,0,0,0,0,0,0,0,31.68,51.99,-9,-9,3.333333333333333,1,1,0,0,4,7,3,1,2032,187362.66,0,0,0,1320.0559 -7004,8631,15567,-9,15569,15570,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.5174,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 -7004,8631,15568,-9,15569,15570,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5842,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 -7004,8631,15569,15570,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,7.5077477,7.4794769,0,11,-2,-114.65716,0,3,3,2019,8,1,20,0,1,1,0,9.6843586,9.6843586,0,0,0,0,0,1,1,0,0,0,54.03,44.43,57.86,40.98,8.333333333333334,2,3,0,0,1,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 -7004,8631,15570,15569,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.1857939,8.9108858,0,11,2,-92.787941,0,1,1,2019,7,0,40,37,1,0,0,21.722921,21.722921,0,0,0,0,0,1,1,0,3.1269937,0,57.86,40.98,54.03,44.43,8.333333333333334,2,3,0,0,11,8,4,1,1485.25,564279.38,163312.14,400715.16,121510.51,3933.8096 -7005,8632,15571,15572,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,7.8687811,7.5251269,0,10,4,-22.853449,0,2,2,2019,11,1,40,0,1,1,0,8.293828,8.293828,0,0,0,0,0,1,1,0,0,0,39.49,48.49,38.92,51.7,8.333333333333334,1,1,0,0,5,11,3,0,1420,466016.88,174769.59,136926.78,60800.883,2606.6748 -7005,8632,15572,15571,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.759131,7.8388419,0,10,-4,-39.437954,0,3,-9,2019,12,2,29,35,1,2,0,8.9573641,8.9573641,0,0,0,0,0,1,1,0,0,0,38.92,51.7,39.49,48.49,3.333333333333333,4,2,0,0,8,11,3,0,1420,466016.88,174769.59,136926.78,60800.883,2606.6748 -7006,8633,15573,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,8.4683018,8.2502232,0,0,0,-1093.63,0,3,2,2019,13,2,30,29,1,2,0,17.210831,17.210831,0,0,0,0,0,1,1,0,0,0,42.33,36.2,-9,-9,3.333333333333333,1,1,0,0,10,9,4,1,618,202727.8,-32856.836,139587.92,14477.241,2011.4934 -7007,8634,15574,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.5603991,8.8491049,0,0,0,-1088.2036,0,3,3,2019,12,0,39,38,1,0,0,13.177311,13.177311,0,0,0,0,0,0,0,0,3.7337985,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,822,143515.36,12402.446,0,0,2475.3984 -7007,8635,15575,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.453681,8.6840782,0,0,0,-1099.8309,0,-9,3,2019,5,0,43,45,1,0,0,16.730742,16.730742,0,0,0,0,0,0,0,0,.47796458,0,57.71,54.89,-9,-9,10,1,1,0,0,9,8,5,1,375,436997.84,0,542132.38,93105.633,2268.4756 -7008,8636,15576,15577,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,8,1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,29.365904,0,0,1,1,0,0,0,52,48,42.84,45.2,7,1,1,0,0,0,13,1,1,723.5,348342.88,0,103988.14,0,1974.0272 -7008,8636,15577,15576,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,8,-1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,42.84,45.2,52,48,6.666666666666667,1,1,0,0,0,13,1,1,723.5,348342.88,0,103988.14,0,1974.0272 -7009,8637,15578,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.1473293,7.5634952,0,0,-959.53528,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,8.3606892,7.3000665,54.1,59.11,-9,-9,10,1,1,0,0,9,2,3,1,689,475810,124484.15,269722.31,0,3518.5378 -7010,8638,15579,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.1356235,7.3642449,0,0,-998.63721,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9211321,7.2137694,56.97,46.72,-9,-9,10,1,1,0,0,11,11,3,1,240,839824.38,355541.22,114440.91,0,1091.1641 -7011,8639,15580,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.1137218,8.130888,7.2109823,0,0,-1006.8167,0,-9,-9,2019,9,0,20,20,1,0,0,7.9673066,7.9673066,0,0,0,0,0,0,0,0,7.107636,7.5491161,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,1807,228613.94,-50666.535,0,0,2710.8513 -7012,8640,15581,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.2055473,3.882895,0,0,-977.50812,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7801909,4.2914071,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,697,-134191.31,89536.789,100119.38,0,668.54248 -7013,8641,15582,15586,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.3984747,9.4172649,0,17,0,17.835575,0,2,2,2019,7,0,50,60,1,0,0,35.020027,35.020027,0,0,0,0,0,0,0,0,3.2042611,0,53.33,53.71,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 -7013,8641,15583,-9,15586,15582,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-880.6192,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 -7013,8641,15584,-9,15586,15582,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-983.82129,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 -7013,8641,15585,-9,15586,15582,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-973.17169,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 -7013,8641,15586,15582,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.8146486,8.6842327,0,17,0,30.900604,0,2,2,2019,5,0,62,60,1,0,0,12.554721,12.554721,0,0,0,0,0,0,0,0,3.7320695,0,57.06,57.76,53.33,53.71,8.333333333333334,1,1,0,0,6,9,5,1,1015.4,733329.69,495077,422088.84,232660.77,6794.0825 -7014,8642,15587,15588,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.2145071,8.0104008,7.0738297,49,0,64.352493,0,-9,-9,2019,10,0,26,-9,1,1,0,7.8970551,7.8970551,0,0,0,0,0,1,1,0,5.1203866,7.486701,52,48,47.31,10.02,7,2,3,0,0,1,2,3,1,295.5,1203747,730567.25,211884.94,0,2244.3853 -7014,8642,15588,15587,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,49,0,123.81488,0,2,2,2019,16,5,0,25,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,10.02,52,48,5,1,1,0,0,10,2,3,1,295.5,1203747,730567.25,211884.94,0,2244.3853 -7015,8643,15589,-9,15591,15590,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1141.5505,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,844,337514.25,115539.63,312899.22,134313.31,4250.1431 -7015,8643,15590,15591,-9,-9,1,1,42,1,1,0,1,1,-9,0,4,8.8821707,8.892683,0,6,7,8.4386282,0,2,2,2019,12,0,40,40,1,0,0,27.041334,27.041334,0,0,0,0,0,0,0,0,1.2987896,0,49.11,52.88,51.81,57.22,8.333333333333334,1,1,0,0,7,10,5,1,844,337514.25,115539.63,312899.22,134313.31,4250.1431 -7015,8643,15591,15590,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.3309031,8.1240053,0,6,-7,-21.972271,0,1,1,2019,10,0,24,39,1,0,0,14.801223,14.801223,0,0,0,0,0,0,0,0,3.1315129,0,51.81,57.22,49.11,52.88,3.333333333333333,1,1,0,0,6,10,5,1,844,337514.25,115539.63,312899.22,134313.31,4250.1431 -7016,8644,15592,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,1,6.6857409,6.7747722,0,0,0,-1009.2313,0,2,2,2019,29,11,13,13,1,11,0,6.8175602,6.8175602,0,0,0,0,0,1,1,0,0,0,28.43,26.5,-9,-9,5,1,1,0,1,9,10,2,1,2140,270411.47,0,0,0,487.43469 -7017,8645,15593,-9,15595,15594,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-901.07306,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 -7017,8645,15594,15595,-9,-9,1,1,59,0,1,0,1,1,-9,0,3,8.9973135,8.3703184,0,19,13,-80.645233,0,2,1,2019,10,0,50,60,1,1,0,10.528847,10.528847,0,0,0,0,0,1,1,0,2.9185262,0,51,49,48.29,47.89,7,4,2,0,0,1,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 -7017,8645,15595,15594,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,6.780014,6.7548313,0,19,-13,-4.6839881,0,-9,-9,2019,8,0,15,15,1,0,0,8.1287489,8.1287489,0,0,0,0,0,1,1,0,4.5612721,0,48.29,47.89,51,49,3.333333333333333,1,1,0,0,10,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 -7017,8645,15596,-9,15595,15594,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.26465,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,892,1480933,427215.69,706420.44,356982.5,2734.0925 -7018,8646,15597,15598,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,10,-8,92.068039,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,41.17,59.31,5,1,1,0,0,7,12,2,1,94,574506.75,147912.59,186168.69,0,1519.6624 -7018,8646,15598,15597,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.5436883,5.7257318,10,8,-24.52766,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5667582,41.17,59.31,49,48,8.333333333333334,1,1,0,0,7,12,2,1,94,574506.75,147912.59,186168.69,0,1519.6624 -7019,8647,15599,15600,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,4.2305183,4.2719278,9,1,-1.1822643,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1775837,4.3661475,60.72,47.63,61.28,48.88,8.333333333333334,1,1,0,0,5,6,2,1,369.5,-25751.422,0,116954.95,0,1177.3145 -7019,8647,15600,15599,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,55,-1,-53.12196,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,60.72,47.63,8.333333333333334,1,1,0,0,4,6,2,1,369.5,-25751.422,0,116954.95,0,1177.3145 -7020,8648,15601,15602,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.5951843,6.4064579,48,-4,-67.752357,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.9284506,57.16,56.15,61.98,17.81,8.333333333333334,1,1,0,0,3,8,4,1,706.5,920237.5,162906.06,672762.88,0,3470.1289 -7020,8648,15602,15601,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,8.4731913,8.3677368,48,4,25.411406,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.8332655,8.3655472,61.98,17.81,57.16,56.15,8.333333333333334,1,1,0,0,0,8,4,1,706.5,920237.5,162906.06,672762.88,0,3470.1289 -7021,8649,15603,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,8.3264837,8.4030437,0,0,-869.23993,0,3,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,4.2938161,8.4370499,47.38,26.84,-9,-9,10,1,1,0,0,0,9,4,1,420,1085012.8,341582.78,549703,0,2568.9497 -7022,8650,15604,15606,-9,-9,1,1,39,2,2,0,1,1,-9,0,3,9.340313,9.4338751,0,5,4,27.92227,0,1,1,2019,8,1,30,35,1,1,0,45.976646,45.976646,0,0,0,0,0,1,1,0,8.1511002,0,38.64,55.03,23.08,65.11,8.333333333333334,1,1,0,0,13,8,5,1,510,575139.63,143699.63,0,0,10282.151 -7022,8650,15605,-9,15606,15604,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-941.31769,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,510,575139.63,143699.63,0,0,10282.151 -7022,8650,15606,15604,-9,-9,1,0,35,2,2,0,1,1,-9,0,4,9.100049,9.1266508,0,5,-4,69.769165,-9,2,2,2019,23,10,15,0,1,10,0,67.469177,67.469177,0,0,0,0,0,1,1,0,5.5434556,0,23.08,65.11,38.64,55.03,6.666666666666667,1,1,0,0,9,8,5,1,510,575139.63,143699.63,0,0,10282.151 -7022,8650,15607,-9,15606,15604,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6448,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,510,575139.63,143699.63,0,0,10282.151 -7023,8651,15608,15609,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8101106,7.8856287,0,2,-2,99.251747,0,3,2,2019,24,12,25,29,1,12,0,11.50686,11.50686,0,0,0,0,42,1,1,0,0,0,31.68,42.84,13.52,38.97,6.666666666666667,1,1,0,0,10,2,3,0,544.5,339907.84,236548.72,0,0,1697.6833 -7023,8651,15609,15608,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,2,2,-34.973766,0,-9,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,13.52,38.97,31.68,42.84,3.333333333333333,1,1,0,0,6,2,3,0,544.5,339907.84,236548.72,0,0,1697.6833 -7024,8652,15610,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,6.4635243,6.0406713,0,0,-879.03021,-9,3,-9,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,6.2528872,47,38,-9,-9,8.333333333333334,1,1,0,0,12,1,2,1,903,436795.75,268762.59,0,0,-3.5279922 -7025,8653,15611,15612,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.1693115,8.3741646,51,1,-75.470917,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7604384,8.7862654,54.96,53.17,56.92,49.39,8.333333333333334,1,1,0,0,0,10,4,1,579.5,1571208,1052401.9,426794.56,0,4312.8921 -7025,8653,15612,15611,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,4.6840835,4.8274941,51,-1,-58.416943,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8239017,4.9581971,56.92,49.39,54.96,53.17,8.333333333333334,1,1,0,0,0,10,4,1,579.5,1571208,1052401.9,426794.56,0,4312.8921 -7026,8654,15613,15614,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.6526566,9.5589886,0,21,1,-21.028692,0,2,2,2019,8,1,36,40,1,1,0,56.272163,56.272163,0,0,0,0,0,0,0,0,5.1473036,0,57.16,56.15,43.09,39.67,8.333333333333334,1,1,0,0,11,8,5,1,1661,1768818.3,82152.141,0,0,10677.189 -7026,8654,15614,15613,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.9721642,8.9500628,0,21,-1,-23.590464,0,3,3,2019,12,0,2,50,1,0,0,560.46503,560.46503,0,0,0,0,0,0,0,0,4.857749,0,43.09,39.67,57.16,56.15,8.333333333333334,2,3,0,0,12,8,5,1,1661,1768818.3,82152.141,0,0,10677.189 -7027,8655,15615,15616,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,7.1410179,6.9548535,0,38,2,-40.577194,0,-9,-9,2019,11,0,40,35,1,0,0,3.3853736,3.3853736,0,0,0,0,0,0,0,0,0,0,38.24,63.73,49.28,50.19,6.666666666666667,1,1,0,0,11,2,3,1,975,-172699.39,59900.488,0,0,1586.0447 -7027,8655,15616,15615,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.0726504,6.9900146,0,38,-2,34.228134,0,2,2,2019,10,0,32,24,1,0,0,4.5241995,4.5241995,0,0,0,0,0,0,0,0,3.69051,0,49.28,50.19,38.24,63.73,8.333333333333334,1,1,0,0,11,2,3,1,975,-172699.39,59900.488,0,0,1586.0447 -7028,8656,15617,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.0114484,6.688787,0,0,-1165.5537,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,0,13.749899,0,0,1,1,0,0,6.4085827,56.01,17.03,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,259,375013.66,54476.668,212261.91,0,1722.7173 -7029,8657,15618,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-984.66748,0,2,2,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,0,51.43,17.06,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,157,0,0,0,0,871.76715 -7030,8658,15619,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.9628,0,2,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,20.42,-9,-9,3.333333333333333,1,1,0,1,0,9,1,0,419,50085.934,0,0,0,1559.8878 -7031,8659,15620,15621,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,7.1178741,7.5438881,9,4,-23.357998,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,121.20756,0,71.5,1,1,0,0,7.2305741,34.79,26.59,47.71,21.83,6.666666666666667,1,1,0,0,0,11,2,1,1329.5,329239.13,180925.52,178655.97,0,2064.8013 -7031,8659,15621,15620,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,9,-4,-51.764462,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,11.235608,0,120,1,1,0,0,0,47.71,21.83,34.79,26.59,5,1,1,0,0,0,11,2,1,1329.5,329239.13,180925.52,178655.97,0,2064.8013 -7032,8660,15622,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8594031,8.1318026,0,0,-1023.5812,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.984961,44.81,49.8,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,1566,846977.56,728886.88,230941.73,0,1765.0454 -7033,8661,15623,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1075.5793,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,227,32000.426,0,0,0,0 -7034,8662,15624,-9,-9,-9,1,0,26,0,0,0,1,1,1,0,4,8.0728312,8.177824,0,0,0,-1031.3147,-9,1,1,2019,8,0,39,0,1,0,0,9.1289492,9.1289492,0,0,0,0,0,0,0,0,.22913551,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,1,4,0,302,78937.461,90703.313,110539.27,62086.672,1661.5793 -7035,8663,15625,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-937.08691,-9,3,3,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.78,34.25,-9,-9,6.666666666666667,1,1,0,1,0,6,1,0,519,-189794.61,0,161245.17,0,1194.653 -7035,8664,15626,-9,15625,-9,1,1,38,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1111.0135,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,30.7,25.29,-9,-9,5,1,1,0,0,2,6,1,0,803,47564.52,0,0,0,1077.686 -7036,8665,15627,-9,15630,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-990.27747,1,2,1,2019,8,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,42.31,56.08,-9,-9,5,1,1,0,0,4,11,1,0,308,-42674.227,0,0,0,-54.134663 -7036,8666,15628,-9,15630,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-947.29144,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,0,147,-346392.75,0,0,0,670.51288 -7036,8667,15629,15630,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,0,0,4,6,0,0,-9,-9,2019,6,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.33,56.54,6.666666666666667,1,1,1,0,3,11,1,0,1796.5,72599.234,0,68578.289,40719.504,298.03793 -7036,8667,15630,15629,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,4,-6,0,0,2,-9,2019,15,5,0,30,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,56.54,57.33,53.46,3.333333333333333,1,1,1,1,5,11,1,0,1796.5,72599.234,0,68578.289,40719.504,298.03793 -7037,8668,15631,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.7568712,8.9791355,0,0,0,-952.55908,0,1,1,2019,10,0,40,36,1,0,0,19.107826,19.107826,0,0,0,0,0,1,1,0,4.0283818,0,54.2,57.49,-9,-9,10,1,1,0,0,11,6,5,1,1637,164804.34,246404.47,0,0,1382.469 -7037,8669,15632,-9,-9,15631,1,1,24,0,0,0,1,1,-9,0,4,7.788229,7.7626562,0,0,0,-1038.115,0,-9,2,2019,12,0,50,60,1,0,1,6.4203353,6.4203353,0,0,0,0,0,1,1,0,7.4086576,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,688,114765.42,8086.5596,0,0,1695.6223 -7038,8670,15633,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,6.8535619,7.4655876,7.072505,0,0,-1019.5049,0,1,1,2019,11,1,15,15,1,1,0,5.965642,5.965642,0,0,0,0,0,1,1,0,7.7379751,0,54.21,49.46,-9,-9,1.666666666666667,1,1,0,0,9,9,3,1,284,597725.06,123378.24,343155.16,0,1080.2974 -7039,8671,15634,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.8944159,9.0782604,0,0,0,-952.63513,0,2,1,2019,11,1,60,60,1,1,0,13.489959,13.489959,0,0,0,0,7,1,1,0,1.6916837,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,11,6,5,1,808,833574.69,740290.69,198317.11,58036.574,2952.9885 -7039,8672,15635,-9,15634,-9,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-1039.8129,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,160,-420433.13,0,0,0,685.95782 -7040,8673,15636,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1019.9151,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35,19.35,-9,-9,1.666666666666667,3,4,0,0,0,8,1,0,275,-208181.88,23318.654,0,0,1698.8508 -7041,8674,15637,-9,15638,15639,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.27905,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1113.6666,1551613.4,764683.81,897381.81,277470.75,4448.876 -7041,8674,15638,15639,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.9070983,7.9091372,0,7,-2,38.571976,0,2,2,2019,8,0,24,23,1,0,0,9.9045124,9.9045124,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48.89,43.78,8.333333333333334,1,1,0,0,8,2,5,1,1113.6666,1551613.4,764683.81,897381.81,277470.75,4448.876 -7041,8674,15639,15638,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.3512707,9.4447565,0,7,2,-196.24915,0,2,2,2019,10,0,60,60,1,0,0,27.210487,27.210487,0,0,0,0,0,0,0,0,0,0,48.89,43.78,51.83,57.2,6.666666666666667,1,1,0,0,8,2,5,1,1113.6666,1551613.4,764683.81,897381.81,277470.75,4448.876 -7042,8675,15640,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.4226542,7.6289291,6.5671968,0,0,-950.44141,0,2,2,2019,8,0,26,25,1,0,0,9.4285536,9.4285536,0,0,0,0,0,1,1,0,6.6999502,0,58.32,50.22,-9,-9,10,1,1,0,0,10,11,3,1,684,244460.69,32717.629,147380.44,66639.469,1573.4211 -7042,8675,15641,-9,15640,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.9396,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,3,1,684,244460.69,32717.629,147380.44,66639.469,1573.4211 -7043,8676,15642,15643,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.150712,5.0306358,44,-5,16.199249,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.364532,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,3,7,4,1,186.5,1546220.3,852105.69,480841.88,0,3438.4495 -7043,8676,15643,15642,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.726429,8.522686,44,5,-25.81708,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3334603,8.2577858,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,186.5,1546220.3,852105.69,480841.88,0,3438.4495 -7044,8677,15644,15645,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.558804,6.3977795,0,21,-1,136.09448,0,3,2,2019,4,0,20,10,1,0,0,3.0596447,3.0596447,0,0,0,0,0,1,1,0,0,0,50.21,48.32,26.1,54.44,6.666666666666667,1,1,0,1,10,2,3,1,1021.3333,-19265.732,302423,0,0,2308.9722 -7044,8677,15645,15644,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.2555437,8.1315384,0,21,1,5.3614569,0,3,3,2019,27,12,39,40,1,12,0,9.8463259,9.8463259,0,0,0,0,2,1,1,0,0,0,26.1,54.44,50.21,48.32,5,1,1,0,0,12,2,3,1,1021.3333,-19265.732,302423,0,0,2308.9722 -7044,8677,15646,-9,15645,15644,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1009.8608,-9,2,2,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1021.3333,-19265.732,302423,0,0,2308.9722 -7045,8678,15647,15648,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,47,-6,0,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,4.620997,0,0,1,1,0,0,0,36.21,22.89,54.77,53.2,6.666666666666667,1,1,0,0,0,2,1,0,257.5,283156.69,16269.986,201384.95,0,1354.8145 -7045,8678,15648,15647,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,48,6,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.77,53.2,36.21,22.89,8.333333333333334,1,1,0,0,0,2,1,0,257.5,283156.69,16269.986,201384.95,0,1354.8145 -7046,8679,15649,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.048203,6.8365397,0,0,-1045.0005,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0569077,54,46,-9,-9,8,1,1,0,0,0,11,2,1,498,8556.9043,125820.41,0,0,1627.8043 -7047,8680,15650,-9,15652,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.86963,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,747.33331,417984.88,203030.02,322816.03,0,1343.5892 -7047,8680,15651,-9,15652,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1023.3915,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,1.8685369,0,54.6,55.89,-9,-9,10,1,1,0,0,1,9,2,0,747.33331,417984.88,203030.02,322816.03,0,1343.5892 -7047,8680,15652,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.4798245,7.5581508,0,0,0,-969.20679,0,2,2,2019,11,0,35,26,1,0,0,5.5124388,5.5124388,0,0,0,0,0,1,0,1,0,0,45.99,51.88,-9,-9,6.666666666666667,1,1,0,0,7,9,2,0,747.33331,417984.88,203030.02,322816.03,0,1343.5892 -7048,8681,15653,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.027297,4.6788783,0,0,-990.74078,0,1,2,2019,16,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.8760281,4.7727633,58.32,36.99,-9,-9,8.333333333333334,1,1,0,1,5,7,2,0,5595,465180.19,110229.09,184188.83,0,957.11963 -7049,8682,15654,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.6274009,7.0801044,0,0,-1125.6206,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1822791,6.6808858,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,455,357452.03,45402.695,-41668.809,0,1462.6663 -7050,8683,15655,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.8821545,7.4380717,0,0,-1197.511,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,120,0,0,0,0,7.6172795,43.54,59.6,-9,-9,5,1,1,0,0,0,8,3,1,221,544389.25,352676.97,366358.09,0,1230.6237 -7051,8684,15656,15657,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,28,-3,-133.61987,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,0,0,0,4.3783422,0,47.16,55.33,51.08,54.77,5,1,1,0,0,9,2,4,1,1572,979770.25,527775.44,310810.63,0,1882.5011 -7051,8684,15657,15656,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.7946997,8.7553349,0,4,3,-13.615069,0,-9,-9,2019,8,0,40,38,1,0,0,15.503306,15.503306,0,0,0,0,0,0,0,0,5.0348091,0,51.08,54.77,47.16,55.33,8.333333333333334,1,1,0,0,11,2,4,1,1572,979770.25,527775.44,310810.63,0,1882.5011 -7052,8685,15658,15659,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.8046637,6.7970514,6,-4,36.323277,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8071604,6.9096513,54.61,51.04,41.17,51.44,8.333333333333334,1,1,0,0,6,1,2,1,757,616670.56,277564.81,102649.36,0,2129.0571 -7052,8685,15659,15658,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,6,4,-92.635712,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,41.17,51.44,54.61,51.04,8.333333333333334,1,1,0,0,0,1,2,1,757,616670.56,277564.81,102649.36,0,2129.0571 -7053,8686,15660,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.4254332,8.4344807,0,0,0,-1076.9425,-9,-9,-9,2019,10,0,45,0,1,0,0,12.639964,12.639964,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,6.666666666666667,1,1,0,0,8,4,5,0,2286,298265.78,418910.53,177098.06,101528.6,1870.8246 -7054,8687,15661,15664,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.7113657,8.4227409,0,15,8,49.270264,0,-9,-9,2019,9,0,45,49,1,1,0,8.4885273,8.4885273,0,0,0,0,0,1,1,0,0,0,53,54,50,55,8,3,4,0,0,9,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 -7054,8687,15662,-9,15664,15661,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.13989,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 -7054,8687,15663,-9,15664,15661,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-907.0719,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 -7054,8687,15664,15661,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.9902716,7.9809499,0,15,-8,-73.206879,0,2,3,2019,10,0,30,30,1,1,0,9.2739401,9.2739401,0,0,0,0,0,1,1,0,0,0,50,55,53,54,8,2,3,0,0,8,7,4,1,491.25,70377.875,80949.102,347181.75,253542.72,2720.3738 -7055,8688,15665,-9,15666,15667,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.4408,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,552.33331,281938.22,299925.13,148527.19,37983.266,3437.0488 -7055,8688,15666,15667,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.6027527,8.265069,0,9,0,-2.8516607,0,2,2,2019,20,9,34,32,1,9,0,15.328841,15.328841,0,0,0,0,0,1,1,0,0,0,27.91,58.72,51.24,58.84,3.333333333333333,1,1,0,0,9,6,5,1,552.33331,281938.22,299925.13,148527.19,37983.266,3437.0488 -7055,8688,15667,15666,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.9577103,9.1035233,0,9,0,-32.068584,0,1,1,2019,6,0,42,42,1,0,0,19.550913,19.550913,0,0,0,0,0,1,1,0,0,0,51.24,58.84,27.91,58.72,8.333333333333334,1,1,0,0,11,6,5,1,552.33331,281938.22,299925.13,148527.19,37983.266,3437.0488 -7056,8689,15668,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.0407238,8.1344929,0,0,0,-908.56055,0,3,2,2019,7,0,27,24,1,0,0,13.760515,13.760515,0,0,0,0,0,1,0,1,3.7162621,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,397,152018.05,127587.79,244664.13,0,2211.9353 -7056,8690,15669,-9,-9,15668,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-974.15656,-9,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,11,1,1,164,0,0,0,0,1067.7748 -7056,8691,15670,-9,-9,15668,1,0,22,0,0,0,2,2,-9,0,3,7.6787419,7.7378597,0,0,0,-1008.4528,0,-9,2,2019,11,2,35,15,1,2,0,8.0109634,8.0109634,0,0,0,0,0,1,0,1,.35073683,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1415,487998.22,0,0,0,27.054935 -7057,8692,15671,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.2100048,6.2467666,0,0,-974.97308,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6249461,5.8981247,65.96000000000001,37.13,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,374,695479.06,-18137.578,113803.82,0,577.74237 -7058,8693,15672,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7385702,7.4658346,0,0,0,-1011.104,0,2,2,2019,21,9,60,0,1,9,0,3.6417246,3.6417246,0,0,0,0,0,0,0,0,0,0,38.41,43.03,-9,-9,3.333333333333333,1,1,0,0,5,5,3,0,1263,185735.14,0,0,0,994.57471 -7059,8694,15673,15674,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.4890842,7.8100514,56,0,-19.407209,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9222591,7.3658571,54.45,56.22,57.33,53.46,10,1,1,0,0,0,11,3,1,1629.5,-6999.6445,347248.69,187916.94,0,2387.7622 -7059,8694,15674,15673,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,57,0,-129.11801,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5955958,0,57.33,53.46,54.45,56.22,8.333333333333334,1,1,0,0,0,11,3,1,1629.5,-6999.6445,347248.69,187916.94,0,2387.7622 -7060,8695,15675,15676,-9,-9,1,0,33,0,0,0,1,1,-9,1,2,0,0,0,17,-2,16.930429,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.0893323,0,41.93,27.2,40.26,35.46,6.666666666666667,1,1,0,0,7,2,5,1,242,456253.28,88235.422,183873.17,34723.535,2714.3237 -7060,8695,15676,15675,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.8950319,8.9299812,0,17,2,118.77205,0,2,2,2019,12,0,41,53,1,0,0,23.394073,23.394073,0,0,0,0,7,1,1,0,0,0,40.26,35.46,41.93,27.2,6.666666666666667,1,1,0,0,9,2,5,1,242,456253.28,88235.422,183873.17,34723.535,2714.3237 -7061,8696,15677,-9,15680,15681,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-895.50562,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 -7061,8696,15678,-9,15680,15681,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1140.1733,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 -7061,8696,15679,-9,15680,15681,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.5951,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 -7061,8696,15680,15681,-9,-9,1,0,32,0,3,0,2,2,-9,0,5,7.9106541,7.7083135,0,8,-4,15.050696,0,2,3,2019,6,0,35,35,1,0,0,8.3746424,8.3746424,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,10,1,1,0,0,2,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 -7061,8696,15681,15680,-9,-9,1,1,36,0,3,0,3,3,-9,0,5,8.144268,8.2397881,0,8,4,-158.8266,0,-9,-9,2019,2,0,30,48,1,0,0,12.366156,12.366156,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,10,1,1,0,0,11,13,3,1,929.59998,178524.08,0,127072.48,79923.039,2556.8914 -7062,8697,15682,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.1328001,6.7271976,0,0,0,-1026.2397,0,1,1,2019,3,1,24,20,1,1,0,6.3856149,6.3856149,0,0,0,0,0,1,1,0,0,0,61.11,48.86,-9,-9,6.666666666666667,1,1,0,0,6,8,2,0,895,346315.63,31980.414,0,0,355.66415 -7062,8698,15683,-9,15682,-9,1,1,21,0,0,0,2,2,-9,0,4,7.6307292,7.3281431,0,0,0,-1087.4156,0,2,-9,2019,8,0,42,30,1,0,1,4.3132272,4.3132272,0,0,0,0,0,1,1,0,2.4497786,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,2,8,3,0,864,-6256.3452,0,0,0,893.78546 -7062,8699,15684,-9,15682,-9,1,1,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-950.47894,-9,2,-9,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,62.01,41.71,-9,-9,8.333333333333334,1,1,1,0,0,8,1,0,682,-311185.94,0,0,0,0 -7063,8700,15685,15687,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,0,0,0,10,0,0,0,2,-9,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.92,46.63,46,52,10,1,1,0,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 -7063,8700,15686,-9,15685,15687,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.23859,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 -7063,8700,15687,15685,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,0,0,0,10,0,0,0,2,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46,52,33.92,46.63,6.666666666666667,1,1,1,0,1,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 -7063,8700,15688,-9,15685,15687,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1019.2343,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 -7063,8700,15689,-9,15685,15687,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-994.9118,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,8,1,0,301.20001,509250.94,0,927874.69,327709.97,3380.72 -7064,8701,15690,15692,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.185318,8.0220871,0,1,0,88.980354,-9,3,3,2019,10,0,45,0,1,0,0,8.8222265,8.8222265,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.5,49.48,8.333333333333334,1,1,0,0,11,7,4,1,812.66669,109083.12,-59969.445,184868.41,0,2150.5552 -7064,8701,15691,-9,15692,15690,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1071.8683,-9,2,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,1,7,4,1,812.66669,109083.12,-59969.445,184868.41,0,2150.5552 -7064,8701,15692,15690,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,6.9609127,7.2470808,0,1,9,-44.593391,-9,3,3,2019,11,0,46,0,1,0,0,2.4060562,2.4060562,0,0,0,0,0,1,1,0,3.1083555,0,41.5,49.48,57.16,56.15,8.333333333333334,1,1,0,0,11,7,4,1,812.66669,109083.12,-59969.445,184868.41,0,2150.5552 -7064,8702,15693,-9,15692,15690,1,1,19,0,0,0,2,2,-9,0,3,7.5559216,7.4810104,0,0,0,-1070.7487,-9,2,3,2019,14,2,24,0,1,2,1,8.5215311,8.5215311,0,0,0,0,0,1,1,0,0,0,24.47,61.54,-9,-9,6.666666666666667,1,1,0,0,4,7,3,1,812,-12540.473,-61752.691,0,0,462.00272 -7065,8703,15694,15695,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,6.1624084,6.2914047,0,8,-12,160.76003,0,2,3,2019,12,1,40,40,1,1,0,1.600348,1.600348,0,0,0,0,0,0,0,0,3.4891596,0,43.59,59.64,61.12,51.57,6.666666666666667,1,1,0,0,9,7,5,1,1286,905393.25,21448.559,448685.34,0,14521.424 -7065,8703,15695,15694,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,9.6450548,9.6212034,0,8,12,52.627598,0,3,3,2019,8,0,30,40,1,0,0,64.67717,64.67717,0,0,0,0,0,0,0,0,1.1447682,0,61.12,51.57,43.59,59.64,8.333333333333334,1,1,0,0,9,7,5,1,1286,905393.25,21448.559,448685.34,0,14521.424 -7066,8704,15696,-9,-9,-9,1,0,51,0,1,0,2,2,-9,1,3,7.3764691,7.4676719,4.2418284,0,0,-911.13525,0,2,1,2019,12,4,25,24,1,4,0,6.6345983,6.6345983,0,0,0,0,0,1,1,0,4.5451641,0,58.38,35.1,-9,-9,6.666666666666667,1,1,0,1,7,12,2,0,1766,157142.92,233495.03,0,0,1944.23 -7066,8704,15697,-9,15696,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.8011,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,12,2,0,1766,157142.92,233495.03,0,0,1944.23 -7067,8705,15698,15699,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.3007221,8.3832932,42,8,-46.559875,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.8528595,7.915369,54.2,57.49,34.07,20.89,8.333333333333334,1,1,0,0,0,7,3,1,698.5,1437642.3,297515.88,534708.19,0,2279.3005 -7067,8705,15699,15698,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,5.1477776,4.9125371,42,-8,64.612427,0,3,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.9510913,5.0470328,34.07,20.89,54.2,57.49,5,1,1,0,0,2,7,3,1,698.5,1437642.3,297515.88,534708.19,0,2279.3005 -7068,8706,15700,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.0222049,6.7569814,0,0,-932.5495,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9070497,54,44,-9,-9,8,1,1,0,0,0,6,2,0,465,554570.13,-445.49643,187228.55,0,1084.8257 -7069,8707,15701,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.2963495,7.0966625,0,0,-1031.6626,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,6.4375725,0,48.970638,0,1,1,0,0,6.8899856,70.59,24.06,-9,-9,10,1,1,0,0,0,12,3,1,159,594860.88,300370.44,259018.36,0,1254.6429 -7070,8708,15702,15703,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.049418,7.0135174,0,10,-5,72.161247,0,2,2,2019,7,0,18,18,1,0,0,7.1384535,7.1384535,0,0,0,0,0,0,0,0,4.3683143,0,54.79,55.86,52.38,55.6,10,1,1,0,0,11,2,5,1,2351,1034215.3,805102.31,330744.81,46461.164,4560.9497 -7070,8708,15703,15702,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.4436283,9.5087328,0,10,5,-95.51265,0,3,3,2019,14,2,45,45,1,2,0,33.954456,33.954456,0,0,0,0,0,0,0,0,4.400249,0,52.38,55.6,54.79,55.86,8.333333333333334,1,1,0,0,11,2,5,1,2351,1034215.3,805102.31,330744.81,46461.164,4560.9497 -7070,8709,15704,-9,15702,15703,1,1,25,0,0,0,1,1,-9,0,4,8.2745562,8.3946562,0,0,0,-1047.4464,0,2,2,2019,10,1,41,38,1,1,1,12.874065,12.874065,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,10,1,1,0,0,4,2,5,1,1046,432183.78,0,0,0,1667.2767 -7071,8710,15705,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,8.6588001,8.6046877,0,0,0,-1036.6115,0,2,2,2019,17,5,60,60,1,5,0,11.905262,11.905262,0,0,0,0,0,1,1,0,0,0,41.69,46.3,-9,-9,3.333333333333333,1,1,0,0,7,12,5,0,652,278564.28,341301.94,0,0,3779.0083 -7072,8711,15706,15707,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2339878,7.9458313,0,6,-4,-193.86873,-9,-9,-9,2019,4,0,18,0,1,0,0,24.499611,24.499611,0,0,0,0,0,1,1,0,0,0,52.72,55.58,50.4,55.04,10,1,1,0,0,7,12,5,1,585.5,84247.477,94331.633,88481.227,66922.477,2918.1436 -7072,8711,15707,15706,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.6555405,8.4258337,0,6,4,-124.55653,-9,2,2,2019,8,2,42,0,1,2,0,14.093015,14.093015,0,0,0,0,0,1,1,0,.2462928,0,50.4,55.04,52.72,55.58,8.333333333333334,1,1,0,0,7,12,5,1,585.5,84247.477,94331.633,88481.227,66922.477,2918.1436 -7073,8712,15708,15709,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,9.3181715,9.1804829,0,9,-1,-21.476507,0,1,3,2019,12,0,50,49,1,0,0,25.953609,25.953609,0,0,0,0,0,0,0,0,4.808136,0,58.15,52.91,63.48,51.85,8.333333333333334,1,1,0,0,10,9,5,1,546,269931.63,363020.5,352237.56,31625.223,7111.5547 -7073,8712,15709,15708,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.4127569,9.1024809,0,9,1,-55.65823,0,1,1,2019,7,0,41,41,1,0,0,26.666298,26.666298,0,0,0,0,0,0,0,0,5.0886383,0,63.48,51.85,58.15,52.91,8.333333333333334,1,1,0,0,10,9,5,1,546,269931.63,363020.5,352237.56,31625.223,7111.5547 -7074,8713,15710,-9,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1005.0803,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.53,37.66,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,510,0,0,0,0,2332.6387 -7075,8714,15711,-9,15712,15713,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.01312,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,967.33331,367984.25,104523.83,200262.13,94901.922,2574.8203 -7075,8714,15712,15713,-9,-9,1,0,29,0,1,0,1,1,-9,0,4,7.4925141,7.4378424,0,6,-8,63.078022,0,-9,-9,2019,13,3,22,28,1,3,0,9.5705719,9.5705719,0,0,0,0,0,1,1,0,0,0,41.36,59.41,33.89,57.81,6.666666666666667,1,1,0,0,8,10,4,1,967.33331,367984.25,104523.83,200262.13,94901.922,2574.8203 -7075,8714,15713,15712,-9,-9,1,1,37,0,1,0,1,1,-9,0,2,8.4092426,8.4511976,0,6,8,-5.4931674,0,2,2,2019,12,0,30,37,1,0,0,18.477613,18.477613,0,0,0,0,0,1,1,0,0,0,33.89,57.81,41.36,59.41,8.333333333333334,1,1,0,0,9,10,4,1,967.33331,367984.25,104523.83,200262.13,94901.922,2574.8203 -7076,8715,15714,-9,-9,15715,1,0,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1052.6929,-9,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,.46561241,0,47.39,56.64,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,349,49023.672,25637.686,89511.734,27119.764,2251.4119 -7076,8715,15715,-9,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.3939638,8.6463003,0,0,0,-901.39294,0,-9,-9,2019,7,0,46,47,1,0,0,15.198662,15.198662,0,0,0,0,0,1,1,0,3.7747033,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,349,49023.672,25637.686,89511.734,27119.764,2251.4119 -7076,8715,15716,-9,-9,15715,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-825.92407,-9,-9,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,4,1,349,49023.672,25637.686,89511.734,27119.764,2251.4119 -7077,8716,15717,15718,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.1128707,7.0515161,45,-5,.66435266,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.2261839,6.8644028,44.84,49.01,57.16,56.15,5,1,1,0,0,11,1,3,1,443,1272392.6,784328.5,335305.31,0,2252.3174 -7077,8716,15718,15717,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5063229,7.8091836,45,5,-75.937248,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5576022,7.6187506,57.16,56.15,44.84,49.01,10,1,1,0,0,6,1,3,1,443,1272392.6,784328.5,335305.31,0,2252.3174 -7078,8717,15719,15720,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,6,-5,-73.448837,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,14.82,35.6,54,54,0,1,1,0,0,0,10,2,1,494.5,1904994,135989.41,1958907.8,612908.13,772.6272 -7078,8717,15720,15719,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,0,4.7512412,4.5386896,6,5,-9.2054033,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,4.881393,54,54,14.82,35.6,8,1,1,0,0,0,10,2,1,494.5,1904994,135989.41,1958907.8,612908.13,772.6272 -7078,8718,15721,-9,15719,15720,1,0,21,0,0,0,2,2,-9,0,3,7.9455476,7.9400539,0,0,0,-992.28552,0,2,2,2019,24,11,44,44,1,11,1,5.7100067,5.7100067,0,0,0,0,2,1,1,0,2.535346,0,27.77,54.89,-9,-9,3.333333333333333,1,1,0,0,2,10,3,1,83,241723.73,11875.393,0,0,1063.0344 -7079,8719,15722,15723,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5504007,8.2473364,0,10,3,-53.439583,0,3,3,2019,6,0,40,37,1,0,0,12.848847,12.848847,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.79,55.86,10,1,1,0,0,12,10,5,1,419.5,598237.81,17303.105,204277.28,19884.266,3862.8213 -7079,8719,15723,15722,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.4434042,8.5694485,6.9369206,45,-3,-1.7749406,0,2,2,2019,6,0,37,37,1,0,0,11.657689,11.657689,0,0,0,0,0,0,0,0,0,6.8405023,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,419.5,598237.81,17303.105,204277.28,19884.266,3862.8213 -7080,8720,15724,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.5425634,7.5623207,0,0,0,-943.42755,0,2,2,2019,10,2,40,46,1,2,0,6.5517716,6.5517716,0,0,0,0,0,0,0,0,7.7182631,0,49.76,56.93,-9,-9,6.666666666666667,2,3,0,0,10,8,3,1,540,-299607.5,29163.619,0,0,2314.2703 -7081,8721,15725,15726,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.2203503,8.2872858,50,1,-52.039032,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0311236,8.5004244,51.83,57.2,53.92,41.71,8.333333333333334,1,1,0,0,0,6,4,1,927.5,1067059.5,929110,190259.95,0,3027.2285 -7081,8721,15726,15725,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,50,-1,48.013493,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.92,41.71,51.83,57.2,5,1,1,0,0,0,6,4,1,927.5,1067059.5,929110,190259.95,0,3027.2285 -7082,8722,15727,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,5.9067264,6.1604991,0,0,0,-1002.5282,0,2,-9,2019,8,0,20,30,1,0,0,2.0209165,2.0209165,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,3.333333333333333,1,1,0,1,6,11,2,0,373,672733.56,85685.461,219899.95,63553.613,479.18335 -7083,8723,15728,-9,15730,15731,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.20123,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 -7083,8723,15729,-9,15730,15731,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2516,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 -7083,8723,15730,15731,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6574945,8.7534857,0,22,-4,34.988174,0,2,2,2019,13,1,37,40,1,1,0,25.821674,25.821674,0,0,0,0,0,1,1,0,0,0,57.16,56.15,35.53,61.29,8.333333333333334,1,1,0,0,12,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 -7083,8723,15731,15730,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.402009,8.2827816,0,21,4,-31.296972,0,2,3,2019,9,0,36,41,1,0,0,13.49806,13.49806,0,0,0,0,0,1,1,0,3.7736187,0,35.53,61.29,57.16,56.15,5,1,1,0,0,13,12,5,1,609.5,679569.19,52471.012,423440.66,199667.44,4102.563 -7084,8724,15732,15733,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.1057911,8.0981293,0,5,-1,51.610546,0,2,2,2019,12,0,37,44,1,0,0,10.944258,10.944258,0,0,0,0,7,0,0,0,0,0,48.87,58.55,41.54,17.76,6.666666666666667,1,1,0,0,10,12,5,1,273.5,461444,303492.56,176511.61,69576.688,3927.2356 -7084,8724,15733,15732,-9,-9,1,0,49,0,0,0,1,1,-9,0,1,0,8.5745277,8.21661,5,1,135.87373,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,9.0627518,41.54,17.76,48.87,58.55,5,1,1,0,0,8,12,5,1,273.5,461444,303492.56,176511.61,69576.688,3927.2356 -7084,8725,15734,-9,15733,15732,1,1,21,0,0,0,1,1,-9,0,3,8.0532475,8.3248014,0,0,0,-1004.8137,-9,1,2,2019,19,7,10,0,1,7,1,37.716015,37.716015,0,0,0,0,7,0,0,0,0,0,31.07,57.25,-9,-9,6.666666666666667,1,1,0,0,4,12,4,1,587,142719.36,0,0,0,1512.1417 -7085,8726,15735,15736,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,6.5391755,6.6527963,7,7,50.689541,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,6.7588601,52.96,16.49,29.39,23.28,5,1,1,1,0,4,11,2,0,257.5,335473.63,408849.25,0,0,1720.7998 -7085,8726,15736,15735,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,7,-7,-.54421699,0,2,2,2019,24,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,29.39,23.28,52.96,16.49,0,1,1,0,0,0,11,2,0,257.5,335473.63,408849.25,0,0,1720.7998 -7086,8727,15737,15738,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,0,0,0,9,2,0,0,2,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,52.22,34.18,10,1,1,1,0,3,13,1,0,555.33331,1409.819,0,62125.98,33357.961,1210.4663 -7086,8727,15738,15737,-9,-9,1,0,43,0,1,0,1,1,-9,1,3,0,0,0,9,-2,0,0,2,1,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,52.22,34.18,54.2,57.49,8.333333333333334,1,1,0,0,0,13,1,0,555.33331,1409.819,0,62125.98,33357.961,1210.4663 -7086,8727,15739,-9,15738,15737,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1105.8306,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,0,555.33331,1409.819,0,62125.98,33357.961,1210.4663 -7087,8728,15740,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.6663,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,8,1,1,0,0,0,2,1,1,145,-304354.59,0,0,0,626.83368 -7088,8729,15741,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,1,0,7.8853288,7.6319637,0,0,-983.15417,0,2,-9,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.7871385,7.559207,28.78,29.4,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,567,205171.47,-20766.742,0,0,2118.9648 -7089,8730,15742,15743,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.7763472,8.7152596,0,6,0,12.919762,0,3,2,2019,7,0,39,50,1,0,0,13.95452,13.95452,0,0,0,0,0,0,0,0,5.3200231,0,60.12,54.8,45.93,50.19,8.333333333333334,1,1,0,0,7,7,4,1,1119,141657.16,35244.027,0,0,2870.4463 -7089,8730,15743,15742,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5058308,7.5227246,0,6,0,56.340057,0,2,2,2019,12,0,36,30,1,0,0,5.9418855,5.9418855,0,0,0,0,0,0,0,0,.38215047,0,45.93,50.19,60.12,54.8,8.333333333333334,1,1,0,0,7,7,4,1,1119,141657.16,35244.027,0,0,2870.4463 -7089,8731,15744,-9,15743,15742,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-919.80005,0,2,2,2019,17,5,0,47,3,5,1,0,0,0,0,0,0,0,0,0,0,3.3382688,0,24.54,62.96,-9,-9,3.333333333333333,1,1,1,0,7,7,1,1,401,-496881.63,0,0,0,-71.440292 -7090,8732,15745,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,7.0880198,7.5799184,5.5858116,0,0,-1052.3955,0,3,2,2019,11,0,22,23,1,0,0,7.10813,7.10813,0,0,0,0,0,1,1,0,0,5.9472141,44.29,47.71,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,617,424442.97,147962.52,405654,7861.2197,1644.8018 -7091,8733,15746,-9,15747,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-967.83844,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,1,0,530,24439.391,0,0,0,738.87109 -7091,8733,15747,-9,-9,-9,1,0,25,1,1,0,3,3,-9,0,3,0,0,0,0,0,-1087.1375,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,10,1,1,0,0,3,9,1,0,530,24439.391,0,0,0,738.87109 -7092,8734,15748,15749,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.9235249,7.952744,0,10,-7,-23.936531,0,-9,-9,2019,21,9,38,35,1,9,0,10.268594,10.268594,0,0,0,0,0,1,1,0,1.7836694,0,38.78,54.31,53.57,44.13,8.333333333333334,1,1,0,0,11,4,3,1,890,583594.5,270419.59,155383.3,0,2058.4839 -7092,8734,15749,15748,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,7.0350609,7.4343472,0,10,7,38.305729,0,2,-9,2019,11,1,28,30,1,1,0,5.5807204,5.5807204,0,0,0,0,0,1,1,0,3.2022498,0,53.57,44.13,38.78,54.31,8.333333333333334,1,1,0,0,12,4,3,1,890,583594.5,270419.59,155383.3,0,2058.4839 -7092,8735,15750,-9,15748,15749,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1001.1295,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,61,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,742,0,0,0,0,0 -7093,8736,15751,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1168.1315,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.0158544,0,0,1,1,0,0,0,53.98,50.87,-9,-9,0,1,1,0,0,0,7,1,0,1490,190438.45,0,0,0,741.12347 -7094,8737,15752,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,8.1770668,8.2874727,0,0,0,-886.16528,-9,-9,-9,2019,10,0,37,0,1,0,0,9.514534,9.514534,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,5,1,1,0,0,7,5,4,1,224,198519.78,21699.701,0,0,1423.7848 -7095,8738,15753,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1014.9856,-9,3,3,2019,7,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,42.92,55.83,-9,-9,10,4,2,0,1,1,8,1,0,165,-222472.33,0,0,0,703.70551 -7096,8739,15754,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.7978239,8.8438444,0,0,0,-981.00183,0,2,2,2019,9,1,36,36,1,1,0,19.715042,19.715042,0,0,0,0,0,0,0,0,6.3076582,0,50.63,40.25,-9,-9,3.333333333333333,2,3,0,0,13,8,5,1,548,1552104.3,785770.31,525043.63,0,2922.386 -7097,8740,15755,15756,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,-1,0,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.75,42.2,55.62,47.44,8.333333333333334,1,1,0,0,0,10,1,0,838,-99798.891,0,96614.688,0,1471.6606 -7097,8740,15756,15755,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,47,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.62,47.44,46.75,42.2,1.666666666666667,1,1,0,0,0,10,1,0,838,-99798.891,0,96614.688,0,1471.6606 -7098,8741,15757,15758,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.5544643,6.6958961,2,-1,48.816357,0,3,3,2019,10,2,0,24,4,2,0,0,0,1,5.2917705,54.409935,64.245811,0,1,1,0,0,7.102457,64.3,16.47,38.56,23.07,10,1,1,0,0,8,12,2,0,474.5,-249563.06,49495.453,0,0,3244.4546 -7098,8741,15758,15757,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,2,1,16.073866,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,50.325359,0,0,1,1,0,0,0,38.56,23.07,64.3,16.47,5,1,1,0,0,0,12,2,0,474.5,-249563.06,49495.453,0,0,3244.4546 -7099,8742,15759,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.1039162,8.2016544,0,0,0,-993.93878,-9,-9,-9,2019,4,0,50,0,1,0,0,8.5070591,8.5070591,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,9,4,4,0,738,-123720.55,20458.973,0,0,1536.7921 -7100,8743,15760,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,7.3916736,7.3650732,0,0,-886.13538,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1946106,7.3723731,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,513,403805.16,141855.34,339991.94,0,1009.4758 -7101,8744,15761,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.1821094,7.3895531,0,0,0,-963.09076,0,3,2,2019,11,0,16,26,1,0,0,9.3478785,9.3478785,0,0,0,0,0,0,0,0,0,0,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,162,446206.75,73865.734,931457.5,188969,548.60498 -7102,8745,15762,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.2622504,7.5267029,0,0,-965.35364,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1143932,7.3626637,52.08,46.68,-9,-9,8.333333333333334,1,1,0,0,0,2,3,0,1798,125783.38,17462.516,132975.58,0,1656.0088 -7103,8746,15763,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.028,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,10,1,1,0,0,9,12,1,1,474,-290602.22,0,104285.23,0,824.81622 -7104,8747,15764,15765,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5760646,7.0894785,25,-3,-9.589325,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1279421,55.36,51.57,52.08,55.93,8.333333333333334,1,1,0,0,0,10,3,1,718.5,888369.88,345069.28,324919.16,0,2674.3389 -7104,8747,15765,15764,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.9357948,6.8128037,25,3,-17.116549,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7850728,7.0766301,52.08,55.93,55.36,51.57,8.333333333333334,1,1,0,0,0,10,3,1,718.5,888369.88,345069.28,324919.16,0,2674.3389 -7105,8748,15766,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.2496595,8.4183254,0,0,0,-1063.0385,0,2,2,2019,10,0,44,40,1,0,0,13.771025,13.771025,0,0,0,0,0,1,1,0,0,0,56.05,37.73,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,253,591238.31,-59486.074,172515.67,111742.63,1636.9064 -7106,8749,15767,-9,15768,15769,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.2383,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 -7106,8749,15768,15769,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,7.3868637,7.1905112,0,18,2,107.62937,0,3,3,2019,19,7,16,26,1,7,0,13.001356,13.001356,0,0,0,0,0,1,0,1,0,0,43.54,59.6,36.45,62.92,1.666666666666667,1,1,0,0,11,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 -7106,8749,15769,15768,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5608559,8.5472593,0,18,-2,58.920521,0,2,3,2019,19,7,50,50,1,7,0,12.905255,12.905255,0,0,0,0,0,1,0,1,0,0,36.45,62.92,43.54,59.6,3.333333333333333,1,1,0,0,11,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 -7106,8749,15770,-9,15768,15769,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1137.0127,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,573,402106.78,342601.03,76163.492,45445.313,3141.2527 -7107,8750,15771,15772,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.2109776,8.269248,0,1,2,-45.074318,-9,2,2,2019,6,0,40,0,1,0,0,11.479685,11.479685,0,0,0,0,0,0,0,0,0,0,42.29,51.8,62.27,42.94,8.333333333333334,1,1,0,0,10,2,5,1,752,999483.13,453695.09,202660.56,31885.074,3174.29 -7107,8750,15772,15771,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.061348,7.9906244,0,1,-2,-70.687614,-9,3,3,2019,11,0,60,0,1,0,0,7.1299338,7.1299338,0,0,0,0,0,0,0,0,0,0,62.27,42.94,42.29,51.8,8.333333333333334,1,1,0,0,7,2,5,1,752,999483.13,453695.09,202660.56,31885.074,3174.29 -7108,8751,15773,15774,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,3.2979667,3.2690296,48,-1,-4.2339716,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1106632,3.5723283,57.09,46.7,60.62,41.03,10,1,1,0,0,9,4,2,1,176,311963.66,96286.789,89821.492,0,1589.2085 -7108,8751,15774,15773,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.9132843,5.8185258,49,1,17.016832,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7194943,5.824574,60.62,41.03,57.09,46.7,10,1,1,0,0,6,4,2,1,176,311963.66,96286.789,89821.492,0,1589.2085 -7109,8752,15775,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-838.65601,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,50.49,19.06,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,531,130986.16,0,0,0,696.37317 -7110,8753,15776,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.7120066,8.3949156,8.0772867,0,0,-1022.6569,0,3,2,2019,12,0,8,12,1,0,0,12.315326,12.315326,0,0,0,0,2,1,1,0,8.3649387,0,50.94,53.44,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,854,905060.81,509854.97,349414.81,-5721.1343,2712.0461 -7110,8754,15777,-9,15776,-9,1,0,28,0,0,0,2,2,-9,1,4,4.3918395,4.2992854,0,0,0,-1059.6385,0,2,-9,2019,5,0,19,6,1,0,0,.53244871,.53244871,0,0,0,0,0,1,1,0,0,0,49.88,59.37,-9,-9,10,1,1,0,0,2,9,2,1,789,395133.91,0,0,0,96.222099 -7111,8755,15778,15779,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.0128436,7.6736441,45,8,5.8945537,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.3044231,7.5457215,51.4,43.72,49.25,61.25,8.333333333333334,1,1,0,0,0,7,3,1,584,2294012,526963.13,705028.13,0,2370.2666 -7111,8755,15779,15778,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,5.5647402,5.8385496,45,-8,25.539516,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1126699,5.1520495,49.25,61.25,51.4,43.72,8.333333333333334,1,1,0,0,3,7,3,1,584,2294012,526963.13,705028.13,0,2370.2666 -7112,8756,15780,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9875426,6.1891117,0,0,-992.3562,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.8546338,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,5,4,2,0,654,55650.559,137002.25,0,0,830.68555 -7113,8757,15781,15782,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.8651361,9.1600151,0,8,3,-49.612453,0,2,3,2019,8,0,44,44,1,0,0,19.690775,19.690775,0,0,0,0,2,0,0,0,0,0,58.55,51.64,57.58,33.42,6.666666666666667,1,1,0,1,10,8,5,1,718.5,854237.5,146476.63,403322.06,65154.961,4569.6631 -7113,8757,15782,15781,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.3339701,8.0884314,0,8,-3,42.884808,0,2,1,2019,11,0,55,40,1,0,0,8.0036001,8.0036001,0,0,0,0,2,0,0,0,0,0,57.58,33.42,58.55,51.64,5,1,1,0,0,10,8,5,1,718.5,854237.5,146476.63,403322.06,65154.961,4569.6631 -7114,8758,15783,15784,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.5549369,7.103035,0,34,-2,-46.642307,0,3,2,2019,12,1,13,24,1,1,0,14.45361,14.45361,0,0,0,0,0,0,0,0,3.2195225,0,44.33,47.48,57.33,53.46,6.666666666666667,1,1,0,0,11,7,5,1,341,526364.13,138128.88,224411.19,3777.3096,2597.2227 -7114,8758,15784,15783,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.76336,8.7795963,0,34,2,67.441353,0,3,3,2019,9,0,50,50,1,0,0,11.937532,11.937532,0,0,0,0,2,0,0,0,0,0,57.33,53.46,44.33,47.48,6.666666666666667,1,1,0,0,11,7,5,1,341,526364.13,138128.88,224411.19,3777.3096,2597.2227 -7114,8759,15785,-9,15783,15784,1,1,24,0,0,0,2,2,-9,0,5,7.3010077,7.3914051,0,0,0,-1102.2542,0,2,2,2019,7,0,30,0,1,0,1,5.7451024,5.7451024,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,190,-107701.37,0,0,0,149.55333 -7114,8760,15786,-9,15783,15784,1,1,22,0,0,0,2,2,-9,0,3,7.2475538,7.4727182,0,0,0,-1025.9462,0,2,2,2019,16,5,44,40,1,5,1,5.4339495,5.4339495,0,0,0,0,0,0,0,0,0,0,29.63,50.23,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,681,343629.09,17330.172,0,0,903.79779 -7115,8761,15787,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.5946026,8.0215702,0,0,-1091.2883,0,-9,-9,2019,14,4,0,60,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.5813088,56.91,49.54,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,120,452345.03,253981.34,153624.42,0,1736.7163 -7116,8762,15788,15789,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,7,1,130.8636,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,40.942253,0,0,1,1,0,1.4303963,0,59.12,12.68,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,846.5,365905.19,112710.49,347874.38,0,1810.4573 -7116,8762,15789,15788,-9,-9,1,1,80,0,0,0,2,2,-9,0,5,0,5.6107478,5.4397531,7,-1,54.103428,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,5.5259471,5.8051558,57.06,57.76,59.12,12.68,8.333333333333334,1,1,0,0,0,7,2,0,846.5,365905.19,112710.49,347874.38,0,1810.4573 -7117,8763,15790,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.77349,6.7986598,0,0,-1090.9623,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.16299953,6.3731093,46.21,29.96,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,284,5588.1255,179199.67,0,0,1634.2878 -7117,8764,15791,-9,15790,-9,1,0,18,0,0,1,3,0,0,0,2,0,4.9166307,4.9203124,0,0,-869.75787,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.1671653,4.326663,45.05,39.07,-9,-9,6.666666666666667,4,2,0,0,1,8,2,1,981,-308240.59,0,0,0,588.70099 -7118,8765,15792,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.5810232,8.7328978,0,0,0,-1102.7621,0,2,1,2019,12,0,50,60,1,0,0,17.540047,17.540047,0,0,0,0,0,1,1,0,0,0,46.91,51.8,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,567,-34582.266,106033.18,113196.73,31810.494,2510.3748 -7119,8766,15793,-9,15794,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.68994,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,977.5,172375.66,-74321.789,0,0,1940.152 -7119,8766,15794,-9,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,0,0,-882.724,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.01,43.31,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,977.5,172375.66,-74321.789,0,0,1940.152 -7120,8767,15795,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.5365868,6.8004065,0,0,-982.6275,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7655153,6.4136181,61.85,47.26,-9,-9,10,1,1,0,0,5,2,2,1,571,344691.03,84666.18,220213.89,0,1856.8612 -7121,8768,15796,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.6703424,8.789979,0,0,0,-984.43842,0,1,1,2019,7,0,42,42,1,0,0,16.084551,16.084551,0,0,0,0,0,0,0,0,3.2554622,0,35.22,56.72,-9,-9,5,1,1,0,0,10,4,5,1,491,-53513.629,150979.91,84229.156,-5898.1079,1923.8655 -7122,8769,15797,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.7123404,9.0554848,0,0,0,-1099.5723,0,2,3,2019,21,9,50,45,1,9,0,19.244175,19.244175,0,0,0,0,0,0,0,0,1.2242258,0,27.81,65.69,-9,-9,5,1,1,0,0,8,8,5,1,1194,1033640.9,160132.19,742245.63,150508.19,2828.0854 -7123,8770,15798,15799,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,6,6,85.310081,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,39.41,47.43,25.79,6.666666666666667,1,1,0,0,2,9,5,0,535,197305.13,83082.359,244972.52,130506.66,3577.3862 -7123,8770,15799,15798,-9,-9,1,1,45,0,0,0,2,2,-9,1,2,8.8704786,9.0996695,0,4,-6,29.017288,0,-9,-9,2019,19,7,30,60,1,7,0,33.707157,33.707157,0,0,0,0,0,1,1,0,0,0,47.43,25.79,61.04,39.41,3.333333333333333,1,1,0,0,8,9,5,0,535,197305.13,83082.359,244972.52,130506.66,3577.3862 -7124,8771,15800,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-996.24756,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,49.13,36.96,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,331,188585.27,0,0,0,616.15411 -7125,8772,15801,15802,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.6849537,8.8447132,0,8,-8,115.37898,0,3,3,2019,11,0,42,42,1,0,0,21.000622,21.000622,0,0,0,0,0,1,1,0,3.121973,0,51.14,60.45,48.18,61.8,8.333333333333334,1,1,0,0,9,5,5,1,506.5,184205.91,284975.25,173430.36,93738.789,3772.6572 -7125,8772,15802,15801,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,7.297749,7.8259521,6.7989898,8,8,-52.217602,0,3,2,2019,8,0,12,12,1,0,0,15.09178,15.09178,0,0,0,0,0,1,1,0,3.0038402,6.907146,48.18,61.8,51.14,60.45,8.333333333333334,1,1,0,0,9,5,5,1,506.5,184205.91,284975.25,173430.36,93738.789,3772.6572 -7126,8773,15803,-9,15805,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.9065,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,5,1,775,411750.5,219128.48,93959.938,42705.902,10814.976 -7126,8773,15804,-9,15805,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.94135,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,5,1,775,411750.5,219128.48,93959.938,42705.902,10814.976 -7126,8773,15805,-9,-9,-9,1,0,51,0,2,0,3,3,-9,0,4,9.8446636,9.6460209,0,0,0,-1005.3392,0,-9,-9,2019,11,0,30,35,1,0,0,58.864868,58.864868,0,0,0,0,2,1,1,0,0,0,53.42,52.33,-9,-9,8.333333333333334,1,1,0,0,4,11,5,1,775,411750.5,219128.48,93959.938,42705.902,10814.976 -7127,8774,15806,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,7.9304256,8.2522049,0,0,0,-1075.1987,0,2,3,2019,14,2,36,37,1,2,0,10.96203,10.96203,0,0,0,0,0,0,0,0,0,0,32.57,41.99,-9,-9,5,1,1,0,0,9,13,4,1,491,-502140.09,-63441.73,0,0,1518.944 -7128,8775,15807,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-885.61682,0,2,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,1,0,223,0,0,0,0,1185.1072 -7129,8776,15808,15809,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.131506,8.2934141,0,31,-4,24.269041,0,2,2,2019,7,0,30,50,1,0,0,12.838577,12.838577,0,0,0,0,7,1,1,0,2.5004027,0,57.16,56.15,40.45,48.9,8.333333333333334,1,1,0,0,10,6,5,1,472,916085.88,563805.56,161991.66,30204.781,5363.5854 -7129,8776,15809,15808,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.886549,9.1861324,0,31,4,80.305443,0,2,3,2019,3,0,50,0,1,0,0,16.986864,16.986864,0,0,0,0,2,1,1,0,2.7984576,0,40.45,48.9,57.16,56.15,5,1,1,0,0,4,6,5,1,472,916085.88,563805.56,161991.66,30204.781,5363.5854 -7129,8777,15810,-9,15808,15809,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-995.88159,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.4991863,0,57.73,54.53,-9,-9,10,1,1,0,0,1,6,1,1,722,0,0,0,0,40.656422 -7130,8778,15811,15814,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.8429203,9.9493475,0,17,-1,42.698395,0,2,3,2019,10,0,41,45,1,0,0,48.861172,48.861172,0,0,0,0,0,1,1,0,0,0,48.28,60.18,52.67,48.57,8.333333333333334,1,1,0,0,8,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 -7130,8778,15812,-9,15814,15811,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.7603,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 -7130,8778,15813,-9,15814,15811,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.3496,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 -7130,8778,15814,15811,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.1092024,7.9479709,0,7,1,9.7040653,0,-9,-9,2019,10,0,32,32,1,0,0,10.189198,10.189198,0,0,0,0,2,1,1,0,0,0,52.67,48.57,48.28,60.18,6.666666666666667,1,1,0,0,8,13,5,1,1499.75,224671.97,184888.88,164757.83,120721.53,26785.961 -7131,8779,15815,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.9227157,7.0331783,0,0,-1048.3716,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.7527447,38.81,24.14,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,292,-630071.75,-19293.434,0,0,1887.6613 -7132,8780,15816,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,0,6.084662,5.9505382,0,0,-954.55383,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.6089268,0,46.08,57.2,-9,-9,8.333333333333334,1,1,1,0,5,9,2,0,1113,-158285.56,-5444.6685,0,0,-141.51155 -7133,8781,15817,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-946.47931,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.85,37.23,-9,-9,8.333333333333334,1,1,0,1,5,7,1,1,197,0,0,0,0,869.60315 -7134,8782,15818,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.2154007,4.563777,0,0,-1004.6323,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,7.1817145,0,0,0,1,1,0,3.3097069,4.4885921,54.58,43.7,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,255,320181.53,57964.539,204304.02,0,-63.607815 -7135,8783,15819,-9,15820,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1001.1108,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.1082494,0,41.15,54.82,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,796.5,44909.715,40134.719,86512.578,48125.125,2012.1306 -7135,8783,15820,-9,-9,-9,1,0,49,0,1,0,2,2,-9,1,2,6.7842383,7.2137818,5.8436804,0,0,-947.20178,0,1,1,2019,10,1,16,16,1,1,0,8.6890106,8.6890106,0,0,0,0,0,1,1,0,5.7156415,0,41.57,29.82,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,796.5,44909.715,40134.719,86512.578,48125.125,2012.1306 -7135,8784,15821,-9,15820,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1066.4918,-9,2,-9,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,36.48,61.57,-9,-9,6.666666666666667,1,1,0,0,3,4,1,1,406,-286019.84,0,0,0,0 -7136,8785,15822,15823,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.3334513,8.2858906,37,2,56.112293,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.9201069,8.29461,39.22,43.21,46.99,58.37,8.333333333333334,2,3,0,0,6,6,5,1,904.5,1756813.3,1208754.9,245785.03,0,4481.0488 -7136,8785,15823,15822,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,8.5501766,8.8364353,0,3,-2,27.995802,0,-9,-9,2019,21,8,48,53,1,8,0,11.766508,11.766508,0,0,0,0,0,0,0,0,0,0,46.99,58.37,39.22,43.21,6.666666666666667,2,3,0,0,11,6,5,1,904.5,1756813.3,1208754.9,245785.03,0,4481.0488 -7136,8786,15824,-9,15823,15822,1,0,34,0,0,0,1,1,-9,0,4,8.8088379,8.8087091,0,0,0,-1049.8105,0,2,2,2019,25,10,37,37,1,10,1,22.818287,22.818287,0,0,0,0,0,0,0,0,6.0659332,0,25.2,66.67,-9,-9,3.333333333333333,2,3,0,0,9,6,5,1,749,630890.25,195452.67,180220.5,18049.629,3934.6609 -7137,8787,15825,15826,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.5633707,8.7249498,7.3904843,6,1,178.88771,0,3,3,2019,18,6,45,47,1,6,0,12.34117,12.34117,0,0,0,0,0,1,1,0,3.965909,7.6379418,40.93,36.78,44.11,51.36,8.333333333333334,1,1,0,0,7,11,5,0,1051.5,530332.75,280523.78,136511.25,13397.906,3933.6509 -7137,8787,15826,15825,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7568302,7.4141674,5.5092993,6,-1,46.852703,0,3,3,2019,15,3,23,20,1,3,0,8.3998966,8.3998966,0,0,0,0,2,1,1,0,1.9790946,5.4392467,44.11,51.36,40.93,36.78,8.333333333333334,1,1,0,0,7,11,5,0,1051.5,530332.75,280523.78,136511.25,13397.906,3933.6509 -7138,8788,15827,15829,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9955196,9.0504389,0,9,-1,-20.915291,0,2,1,2019,15,4,37,38,1,4,0,25.74675,25.74675,0,0,0,0,0,1,1,0,3.9071839,0,45.91,59.89,46.61,56.93,6.666666666666667,1,1,0,0,10,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 -7138,8788,15828,-9,15829,15827,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3799,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 -7138,8788,15829,15827,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.7096949,9.0892324,0,9,1,72.604073,0,2,1,2019,9,1,35,35,1,1,0,23.092794,23.092794,0,0,0,0,0,1,1,0,2.1910574,0,46.61,56.93,45.91,59.89,5,1,1,0,0,9,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 -7138,8788,15830,-9,15829,15827,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.48505,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1448,384181.94,92054.484,614523.38,254289.42,5550.0107 -7139,8789,15831,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.7553334,6.5754504,0,0,-869.45355,0,-9,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0019388,54.22,44.27,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,320,427439,213462.69,311170.53,0,1107.2977 -7140,8790,15832,15833,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.7664757,8.3108721,6,6,-65.48571,0,2,2,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,7,1,1,0,9.1221905,5.852807,54.63,58.83,29.35,31.4,8.333333333333334,1,1,0,0,8,2,4,1,389.5,2756131,538701.06,406135.41,0,6216.6528 -7140,8790,15833,15832,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,4.0860634,3.8159883,6,-6,-73.856964,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,1.5577199,10.579095,28.834106,0,1,1,0,5.411684,3.9554007,29.35,31.4,54.63,58.83,8.333333333333334,1,1,0,0,0,2,4,1,389.5,2756131,538701.06,406135.41,0,6216.6528 -7141,8791,15834,15836,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.9997792,8.5912218,8.046298,23,-6,20.636518,0,2,3,2019,21,10,35,38,1,10,0,11.285833,11.285833,0,0,0,0,0,0,0,0,7.2062864,0,36.13,41.27,59.29,36.27,5,2,3,0,0,6,8,5,1,884.33331,1007090.3,650251.63,319228.38,0,5388.2412 -7141,8791,15835,-9,15834,15836,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-887.34174,-9,2,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,884.33331,1007090.3,650251.63,319228.38,0,5388.2412 -7141,8791,15836,15834,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.0817785,9.2173424,0,23,6,-130.9158,0,2,2,2019,10,0,70,38,1,0,0,15.634142,15.634142,0,0,0,0,0,0,0,0,2.6525548,0,59.29,36.27,36.13,41.27,6.666666666666667,2,3,0,0,6,8,5,1,884.33331,1007090.3,650251.63,319228.38,0,5388.2412 -7141,8792,15837,-9,15834,15836,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1028.5033,-9,2,1,2019,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,27.67,55.1,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,728,-186614.95,0,0,0,0 -7142,8793,15838,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-828.82275,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,43.12,58.55,-9,-9,10,1,1,0,0,0,8,1,1,710,384303.75,0,364408.69,0,292.03226 -7143,8794,15839,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1015.8591,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.7,34.03,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,164,214475.28,0,93940.313,0,318.1048 -7144,8795,15840,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.6343641,7.7749743,0,0,-1047.2405,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,7.5144396,37.23,46.2,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,434,736121.19,286812.97,420116.25,0,2110.7217 -7145,8796,15841,15842,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.2280855,7.9676852,0,3,4,-53.661079,0,2,2,2019,2,0,38,47,1,0,0,9.673502,9.673502,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,9,2,4,0,453,177873.05,-19851.564,146056.81,126993.91,2118.9473 -7145,8796,15842,15841,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.8321514,7.5493627,0,3,-4,42.38245,0,-9,-9,2019,9,1,37,42,1,1,0,7.0476646,7.0476646,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,3,2,4,0,453,177873.05,-19851.564,146056.81,126993.91,2118.9473 -7146,8797,15843,15845,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.4160986,8.5034981,0,7,0,-3.0647004,0,-9,-9,2019,12,1,40,46,1,1,0,11.935398,11.935398,0,0,0,0,0,1,1,0,0,0,36.12,59.65,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,0,1520.3334,-72550,-1093.9961,0,0,3578.6545 -7146,8797,15844,-9,15845,15843,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.1737,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,0,1520.3334,-72550,-1093.9961,0,0,3578.6545 -7146,8797,15845,15843,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.9117646,8.167264,0,7,0,73.360481,0,-9,-9,2019,7,0,40,40,1,0,0,11.803366,11.803366,0,0,0,0,0,1,1,0,0,0,58.32,50.22,36.12,59.65,8.333333333333334,1,1,0,0,7,7,5,0,1520.3334,-72550,-1093.9961,0,0,3578.6545 -7147,8798,15846,-9,15849,15847,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1044.2291,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,2,0,434.5,-81700.18,0,0,0,2798.6738 -7147,8798,15847,15849,-9,-9,1,1,50,0,1,0,3,3,-9,1,1,0,0,0,18,0,0,0,-9,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.91,22.6,46.16,35.96,5,1,1,0,1,0,7,2,0,434.5,-81700.18,0,0,0,2798.6738 -7147,8798,15848,-9,15849,15847,1,0,17,0,1,1,2,0,0,0,4,0,4.650281,4.8882279,0,0,-955.99188,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,27,1,1,0,5.4676104,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,7,2,0,434.5,-81700.18,0,0,0,2798.6738 -7147,8798,15849,15847,-9,-9,1,0,50,0,1,0,3,3,-9,0,1,0,0,0,19,0,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,46.16,35.96,30.91,22.6,5,1,1,0,1,0,7,2,0,434.5,-81700.18,0,0,0,2798.6738 -7147,8799,15850,-9,15849,15847,1,0,18,0,1,0,2,2,-9,0,3,7.9322929,7.9345274,0,0,0,-947.60016,0,3,3,2019,11,3,43,0,1,3,1,7.5001025,7.5001025,0,0,0,0,2,1,1,0,5.819818,0,32.76,65.84,-9,-9,6.666666666666667,1,1,0,0,3,7,3,0,1017,103390.12,0,0,0,1368.9652 -7148,8800,15851,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.6675096,6.6835809,0,0,-942.68982,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.2629744,6.8215089,44.9,25.52,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,652,969708.56,124165.24,520516.84,0,811.14136 -7148,8801,15852,-9,15851,-9,1,0,19,0,0,1,2,0,0,0,3,0,3.9552553,4.0748477,0,0,-894.41217,-9,2,-9,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9652665,46.86,55.66,-9,-9,8.333333333333334,4,2,0,0,2,8,2,1,329,264378.81,0,0,0,75.661659 -7149,8802,15853,15854,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0347328,8.1796761,0,32,-1,26.58412,0,-9,-9,2019,8,0,31,40,1,0,0,13.19693,13.19693,0,0,0,0,0,0,0,0,2.4348586,0,57.16,56.15,52.89,47.88,8.333333333333334,1,1,0,0,9,9,5,1,3686.5,563258,157649.97,328338.88,0,3051.4756 -7149,8802,15854,15853,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.5105171,8.2645893,0,32,1,-32.226112,0,-9,-9,2019,11,0,48,55,1,0,0,9.1258783,9.1258783,0,0,0,0,0,0,0,0,4.5520654,0,52.89,47.88,57.16,56.15,6.666666666666667,1,1,0,0,9,9,5,1,3686.5,563258,157649.97,328338.88,0,3051.4756 -7149,8803,15855,-9,15853,15854,1,0,26,0,0,0,1,1,-9,0,4,7.9831553,8.0489044,0,0,0,-929.32532,0,2,2,2019,6,0,41,50,1,0,1,11.747825,11.747825,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,244,-49065.129,0,0,0,1849.4414 -7150,8804,15856,15859,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,6.4907522,6.8152337,0,3,-5,166.0508,0,-9,-9,2019,12,0,19,16,1,0,0,6.3558612,6.3558612,0,0,0,0,0,1,1,0,0,0,46.73,51.47,56.75,42.74,6.666666666666667,1,1,0,0,9,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 -7150,8804,15857,-9,15856,15859,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.6837,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 -7150,8804,15858,-9,15856,15859,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.17151,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 -7150,8804,15859,15856,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,6.8230705,6.6781449,0,3,5,-89.115067,0,-9,-9,2019,8,2,17,16,1,2,0,7.6212964,7.6212964,0,0,0,0,0,1,1,0,0,0,56.75,42.74,46.73,51.47,8.333333333333334,1,1,0,0,7,9,2,0,774.5,47302.402,-33574.203,0,0,1367.1631 -7151,8805,15860,15861,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,58,-4,-64.592018,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4577579,0,49.28,52.09,60.29,52.11,8.333333333333334,1,1,0,0,0,4,2,0,1121,412345.41,132393.42,243931.02,0,1191.7397 -7151,8805,15861,15860,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.5942206,6.8064208,58,4,168.1503,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3533647,6.4786925,60.29,52.11,49.28,52.09,8.333333333333334,1,1,0,0,0,4,2,0,1121,412345.41,132393.42,243931.02,0,1191.7397 -7152,8806,15862,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,4.5201116,4.3241282,0,0,-924.54926,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3376327,4.4508977,52.21,51.53,-9,-9,10,1,1,0,0,0,10,2,0,327,30078.82,25789.676,0,0,1255.5072 -7153,8807,15863,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.8134899,7.3900189,0,0,0,-1017.0502,0,-9,-9,2019,10,0,20,45,1,0,0,13.567247,13.567247,0,0,0,0,7,0,0,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,6,13,3,0,438,-183558.56,0,0,0,1469.3558 -7154,8808,15864,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.51824,7.5226588,0,0,0,-1151.937,-9,-9,2,2019,20,8,25,0,1,8,0,9.6200981,9.6200981,0,0,0,0,0,1,1,0,0,0,39.29,39.12,-9,-9,0,1,1,0,1,8,5,3,0,2365,-69248.883,-9114.415,0,0,774.3443 -7155,8809,15865,-9,15867,15866,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1074.2449,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 -7155,8809,15866,15867,-9,-9,1,1,41,0,4,0,3,3,-9,1,1,0,0,0,25,-1,0,0,3,3,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,34.86,18.02,31.34,49.52,3.333333333333333,1,1,1,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 -7155,8809,15867,15866,-9,-9,1,0,42,0,4,0,3,3,-9,0,2,0,0,0,25,1,0,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,31.34,49.52,34.86,18.02,3.333333333333333,1,1,0,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 -7155,8809,15868,-9,15867,15866,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-961.08423,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,277.25,-131730.7,55927.227,258090.44,119383.44,1453.4976 -7156,8810,15869,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5726986,7.668222,0,0,0,-963.16852,0,2,2,2019,11,1,32,31,1,1,0,7.9044523,7.9044523,0,0,0,0,0,0,0,0,0,0,23.62,67.12,-9,-9,5,1,1,0,0,13,2,3,1,436,420294.72,62570.199,122014.96,49035.875,769.14563 -7157,8811,15870,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.1127777,8.3508577,0,0,0,-844.13074,0,2,2,2019,10,0,39,39,1,0,0,10.328313,10.328313,0,0,0,0,14.5,0,0,0,.96371257,0,57.33,53.46,-9,-9,5,1,1,0,0,11,5,4,1,645,381718.13,145501.11,144777.16,0,2028.3298 -7158,8812,15871,15872,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,39,5,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,4.0592403,0,52,48,49,48,7,2,3,0,0,3,8,1,1,486.5,301150.41,0,238788.61,0,2991.5229 -7158,8812,15872,15871,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,39,-5,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,8.2410107,0,49,48,52,48,7,2,3,0,0,7,8,1,1,486.5,301150.41,0,238788.61,0,2991.5229 -7159,8813,15873,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.7244015,8.2504749,0,0,-980.22156,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0750997,7.8354096,52,47,-9,-9,7,1,1,0,0,0,4,3,1,336,361058.09,309496.94,163350,0,1221.1626 -7160,8814,15874,15875,-9,-9,1,0,41,0,0,0,3,3,-9,0,4,8.1907997,8.1240129,0,7,-4,24.372231,0,3,3,2019,10,0,42,41,1,0,0,9.7841492,9.7841492,0,0,0,0,0,0,0,0,.58180952,0,43.96,62.06,49.04,55.86,8.333333333333334,1,1,0,0,8,6,4,1,657,151985.78,105993.2,216749.48,25391.027,2856.5454 -7160,8814,15875,15874,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,7.9421663,7.9617863,0,7,4,-27.378387,0,-9,3,2019,9,0,40,40,1,0,0,8.7912512,8.7912512,0,0,0,0,0,0,0,0,0,0,49.04,55.86,43.96,62.06,8.333333333333334,1,1,0,0,8,6,4,1,657,151985.78,105993.2,216749.48,25391.027,2856.5454 -7161,8815,15876,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5904255,8.5208549,0,0,0,-1089.1833,0,2,2,2019,7,0,40,40,1,0,0,13.990958,13.990958,0,0,0,0,0,0,0,0,4.9362378,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,666,286909.63,341424.94,292280.94,73632.195,1789.7106 -7162,8816,15877,15878,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.9415078,4.9466395,2,3,29.867899,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,.070854686,5.0490189,54.08,22.61,48.6,19.87,8.333333333333334,1,1,0,0,0,7,2,1,551.5,1177837.3,863506,377616.13,0,1749.8096 -7162,8816,15878,15877,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,2,-3,82.389481,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,2,1,1,0,0,0,48.6,19.87,54.08,22.61,5,1,1,0,0,0,7,2,1,551.5,1177837.3,863506,377616.13,0,1749.8096 -7163,8817,15879,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,1,0,0,0,0,0,-972.45746,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,8.314599,78.599419,0,0,1,1,0,2.3595793,0,42.2,14.42,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,312,-181893.7,0,0,0,348.85068 -7164,8818,15880,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,5.3222818,5.9641657,0,0,-991.45062,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,5.3965511,34.72,55.65,-9,-9,3.333333333333333,1,1,1,1,6,9,2,0,738,344075.25,148793.84,0,0,692.15765 -7165,8819,15881,15882,-9,-9,1,1,55,0,2,0,2,2,-9,1,2,0,0,0,2,-1,-67.544876,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.61,26.05,52.24,50.75,6.666666666666667,1,1,0,0,0,9,3,0,1729.5,552307.63,158815.5,0,0,2634.0396 -7165,8819,15882,15881,-9,-9,1,0,56,0,2,0,2,2,-9,0,2,8.3427849,7.7874198,0,2,1,-59.459988,0,2,-9,2019,7,0,30,30,1,0,0,10.591393,10.591393,0,0,0,0,0,1,0,1,4.6838589,0,52.24,50.75,40.61,26.05,8.333333333333334,1,1,0,0,9,9,3,0,1729.5,552307.63,158815.5,0,0,2634.0396 -7165,8820,15883,-9,15885,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.92816,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,769.33331,102081,37898.137,0,0,1305.4587 -7165,8820,15884,-9,15885,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.29907,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,769.33331,102081,37898.137,0,0,1305.4587 -7165,8820,15885,-9,15882,15881,1,0,28,0,2,0,2,2,-9,0,4,6.9640737,7.1410847,0,0,0,-1016.8665,0,2,2,2019,9,2,25,30,1,2,1,5.8688169,5.8688169,0,0,0,0,0,1,0,1,0,0,36.26,62.83,-9,-9,6.666666666666667,1,1,0,0,2,9,2,0,769.33331,102081,37898.137,0,0,1305.4587 -7166,8821,15886,-9,15887,15888,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-920.47607,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,5,1,478,425233.66,165251.52,550550.13,242582.23,3549.7192 -7166,8821,15887,15888,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,0,0,0,11,0,20.430862,0,2,2,2019,10,1,0,39,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,52.77,55.33,8.333333333333334,1,1,0,0,10,2,5,1,478,425233.66,165251.52,550550.13,242582.23,3549.7192 -7166,8821,15888,15887,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,9.2173557,9.0854464,0,11,0,27.841692,0,1,1,2019,8,2,45,45,1,2,0,28.525301,28.525301,0,0,0,0,0,1,1,0,0,0,52.77,55.33,49.46,56.91,8.333333333333334,1,1,0,0,12,2,5,1,478,425233.66,165251.52,550550.13,242582.23,3549.7192 -7167,8822,15889,-9,15890,-9,1,1,34,0,0,0,1,1,-9,0,4,8.2225533,7.9472322,0,0,0,-982.13129,0,1,1,2019,4,0,36,40,1,0,0,11.593968,11.593968,0,0,0,0,0,1,1,0,.97117043,0,60.68,44.84,-9,-9,6.666666666666667,1,1,0,0,11,10,4,1,178,-145694.31,-1068.5634,0,0,1953.0905 -7167,8823,15890,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,4.4955349,4.6411123,0,0,0,-878.42175,0,-9,-9,2019,6,0,10,10,1,0,0,.92313069,.92313069,0,0,0,0,0,1,1,0,6.8776927,0,62.24,26.91,-9,-9,8.333333333333334,1,1,0,0,12,10,2,1,244,73289.336,0,95433.781,0,760.28864 -7168,8824,15891,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.1383152,7.8982043,0,0,0,-961.54193,0,3,3,2019,14,2,46,40,1,2,0,7.5199809,7.5199809,0,0,0,0,0,1,1,0,0,0,43.25,38.75,-9,-9,6.666666666666667,2,3,0,0,6,6,4,0,458,-118290.13,31753.158,0,0,1656.8767 -7168,8824,15892,-9,15891,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1020.2377,0,2,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,22.39,56.02,-9,-9,0,2,3,0,0,1,6,4,0,458,-118290.13,31753.158,0,0,1656.8767 -7169,8825,15893,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,8.6107244,8.7298975,0,0,0,-994.57159,-9,3,2,2019,22,10,100,0,1,10,0,5.4181108,5.4181108,0,0,0,0,0,0,0,0,0,0,31.1,40.06,-9,-9,3.333333333333333,1,1,0,0,9,4,5,0,3689,60327.324,269612.25,0,0,1884.2397 -7170,8826,15894,15895,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.6210775,9.6621246,7.4743562,31,-11,-37.780006,0,3,2,2019,7,0,50,60,1,0,0,40.231083,40.231083,0,0,0,0,2,1,1,0,4.3110714,7.4293079,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,343.5,2573262.5,1696104.1,594353.75,0,15077.043 -7170,8826,15895,15894,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.1193199,9.4841785,30,11,-35.799313,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9331474,9.2529869,57.16,56.15,51.24,58.84,10,1,1,0,0,6,9,5,1,343.5,2573262.5,1696104.1,594353.75,0,15077.043 -7170,8827,15896,-9,15894,15895,1,0,24,0,0,0,1,1,-9,0,4,8.499258,8.1316948,0,0,0,-917.04779,0,1,2,2019,6,0,9,40,1,0,1,41.856625,41.856625,0,0,0,0,0,1,1,0,3.464947,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,277,125509.23,-47488.543,0,0,993.10272 -7170,8828,15897,-9,15894,15895,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1036.7357,-9,1,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,43.65,58.28,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,777,222036.17,0,0,0,0 -7171,8829,15898,15899,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,4,-2,21.246624,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69.07000000000001,24.73,46.29,51.55,1.666666666666667,1,1,0,0,0,13,5,1,625.5,852582,412345.88,543729.75,0,4046.4111 -7171,8829,15899,15898,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.1525354,9.3975372,0,4,2,-1.4827142,0,3,3,2019,17,5,36,34,1,5,0,33.451328,33.451328,0,0,0,0,0,0,0,0,0,0,46.29,51.55,69.07000000000001,24.73,6.666666666666667,1,1,0,0,11,13,5,1,625.5,852582,412345.88,543729.75,0,4046.4111 -7172,8830,15900,-9,15902,15901,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.58032,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,1050.5,30473.707,0,0,0,2483.3242 -7172,8830,15901,15902,-9,-9,1,1,44,0,2,0,3,3,-9,1,2,0,0,0,6,-3,44.42588,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.35,30.78,22.14,62.85,6.666666666666667,1,1,0,0,0,13,3,1,1050.5,30473.707,0,0,0,2483.3242 -7172,8830,15902,15901,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.4111872,8.2621918,0,6,3,-39.974857,0,2,3,2019,35,12,70,60,1,12,0,8.2030439,8.2030439,0,0,0,0,0,1,1,0,0,0,22.14,62.85,42.35,30.78,3.333333333333333,1,1,0,0,6,13,3,1,1050.5,30473.707,0,0,0,2483.3242 -7172,8830,15903,-9,15902,15901,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.90289,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,1050.5,30473.707,0,0,0,2483.3242 -7173,8831,15904,15905,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,0,0,0,9,-4,154.68581,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.47,51.45,59.53,56.44,10,2,3,1,1,1,8,4,1,513,600074.63,37399.414,497046.03,69329.406,4080.5078 -7173,8831,15905,15904,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9320002,8.9560747,0,25,4,26.532101,0,2,2,2019,0,0,38,-9,1,0,0,18.066488,18.066488,0,0,0,0,0,1,1,0,5.4101253,0,59.53,56.44,64.47,51.45,10,2,3,0,0,9,8,4,1,513,600074.63,37399.414,497046.03,69329.406,4080.5078 -7173,8832,15906,-9,15904,15905,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-950.70355,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,544,0,0,0,0,0 -7174,8833,15907,15908,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.7156053,7.71909,1,4,-27.338547,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.358995,7.4822488,50,47,55,53,7,4,6,0,0,0,10,5,1,691,1614547,669338,223541.06,0,6130.2959 -7174,8833,15908,15907,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.5830135,9.5279741,0,1,-4,29.171902,-9,-9,-9,2019,8,0,12,0,1,0,0,110.49928,110.49928,0,0,0,0,0,1,1,0,5.4821024,0,55,53,50,47,8,4,6,0,0,1,10,5,1,691,1614547,669338,223541.06,0,6130.2959 -7175,8834,15909,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.0694904,7.814796,0,0,-937.99945,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2089481,7.7255607,41.64,54.12,-9,-9,6.666666666666667,2,3,0,0,3,12,3,1,549,176547.33,184386.69,0,0,892.7644 -7176,8835,15910,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3807421,6.4171195,0,0,-1003.0106,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,5.6850281,2.7332838,20.695488,0,1,1,0,1.5821075,6.6386628,52,45,-9,-9,8,2,3,0,0,0,6,2,1,724,-35142.148,71688.305,286708.53,0,626.5752 -7177,8836,15911,-9,-9,-9,1,0,41,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1053.0854,0,3,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,38.91,37.84,-9,-9,5,1,1,0,1,0,7,1,0,724.33331,-44489.648,0,0,0,1433.0745 -7177,8836,15912,-9,15911,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.47266,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,1,0,724.33331,-44489.648,0,0,0,1433.0745 -7177,8836,15913,-9,15911,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.86914,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,724.33331,-44489.648,0,0,0,1433.0745 -7178,8837,15914,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.9015293,7.2867689,0,0,-1076.5062,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.5838614,6.9797244,45.75,55.83,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,328,407537.91,151296.63,406890.69,0,962.87836 -7179,8838,15915,15917,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,7.9716802,7.9368854,0,15,1,9.4336119,0,-9,-9,2019,6,0,48,44,1,0,0,5.8325105,5.8325105,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.02,56.42,10,2,3,0,0,11,9,4,1,1083.3334,355215.25,129104.28,395038.09,191839.7,2989.3796 -7179,8838,15916,-9,15917,15915,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.41669,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,1083.3334,355215.25,129104.28,395038.09,191839.7,2989.3796 -7179,8838,15917,15915,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,8.3446159,8.6144876,0,15,-1,-30.698351,0,-9,-9,2019,6,0,42,50,1,0,0,11.985603,11.985603,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.39,56.71,10,2,3,0,0,10,9,4,1,1083.3334,355215.25,129104.28,395038.09,191839.7,2989.3796 -7180,8839,15918,15919,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.8821259,8.9107227,0,2,3,72.741768,0,2,2,2019,9,0,50,50,1,0,0,18.903719,18.903719,0,0,0,0,0,0,0,0,0,0,41.47,58.08,48,56,8.333333333333334,1,1,0,0,8,7,5,1,1131.5,67926.016,88149.953,0,0,3926.3428 -7180,8839,15919,15918,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.2500219,8.474472,0,2,-3,86.253822,0,-9,-9,2019,11,0,35,42,1,2,0,16.048529,16.048529,0,0,0,0,0,0,0,0,0,0,48,56,41.47,58.08,7,1,1,0,0,3,7,5,1,1131.5,67926.016,88149.953,0,0,3926.3428 -7181,8840,15920,-9,15921,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.93195,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,2,0,528.66669,-54948.516,0,0,0,2455.8416 -7181,8840,15921,-9,-9,-9,1,0,34,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1041.3336,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,2.7165759,0,1,1,0,0,0,26.15,50.58,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,528.66669,-54948.516,0,0,0,2455.8416 -7181,8840,15922,-9,15921,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2969,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,528.66669,-54948.516,0,0,0,2455.8416 -7182,8841,15923,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.9856129,5.9289837,0,0,-1081.9413,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1351008,6.0119243,54,46,-9,-9,8,1,1,0,0,0,13,2,1,1142,226267.22,260762.03,107948.91,0,906.34967 -7183,8842,15924,15925,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.2991276,6.9159579,6,2,82.862083,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2755561,7.5089693,58.15,52.91,50.97,53.42,10,1,1,0,0,0,11,3,1,630,994499.38,404778.31,174522.03,0,3387.5703 -7183,8842,15925,15924,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.8392472,7.691504,6,-2,-53.896858,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5622077,7.4814606,50.97,53.42,58.15,52.91,10,1,1,0,0,0,11,3,1,630,994499.38,404778.31,174522.03,0,3387.5703 -7184,8843,15926,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.8001881,8.4018278,0,0,0,-1108.1884,0,3,3,2019,10,0,16,16,1,0,0,44.496227,44.496227,0,0,0,0,110,1,1,0,0,0,41.07,60.93,-9,-9,0,2,3,0,0,8,11,4,0,854.5,325707.88,275088.53,162471.81,73834.938,2967.3628 -7184,8843,15927,-9,15926,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.8308,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,4,0,854.5,325707.88,275088.53,162471.81,73834.938,2967.3628 -7184,8844,15928,-9,15926,-9,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-1115.4896,-9,2,-9,2019,15,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,0,4,2,0,0,0,11,1,0,755,245376.27,0,0,0,0 -7185,8845,15929,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1000.076,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.2714415,0,0,0,1,1,0,0,0,41.01,21.98,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1338,294593.59,-57664.867,0,0,2201.8936 -7186,8846,15930,15931,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.1402516,6.1985288,32,0,-52.352795,-9,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,6.4152646,5.9513321,34.81,61.47,41.04,46.15,5,1,1,0,0,0,10,2,1,1128,737876.31,131834.61,578794,0,691.12756 -7186,8846,15931,15930,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,1,0,-160.27872,-9,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,2.613533,0,41.04,46.15,34.81,61.47,5,1,1,0,0,8,10,2,1,1128,737876.31,131834.61,578794,0,691.12756 -7187,8847,15932,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.444109,8.5038509,0,0,0,-958.95886,0,2,3,2019,12,1,45,53,1,1,0,9.840518,9.840518,0,0,0,0,0,0,0,0,0,0,42.11,41.98,-9,-9,5,1,1,0,0,10,5,5,1,645,358694.94,149783.02,0,0,2049.8899 -7188,8848,15933,-9,15935,15934,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9403,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,471.33334,21917.906,19183.105,251495.31,136587.06,2328.4333 -7188,8848,15934,15935,-9,-9,1,1,25,1,1,0,2,2,-9,0,2,8.2833576,8.0574837,0,1,3,-61.805542,-9,-9,-9,2019,21,7,55,0,1,7,0,7.1780548,7.1780548,0,0,0,0,0,1,1,0,0,0,26.81,40.59,52.6,52.88,5,1,1,0,0,8,6,4,0,471.33334,21917.906,19183.105,251495.31,136587.06,2328.4333 -7188,8848,15935,15934,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,7.2326126,7.409802,0,1,-3,110.08727,-9,-9,-9,2019,6,0,25,0,1,0,0,7.6061625,7.6061625,0,0,0,0,0,1,1,0,0,0,52.6,52.88,26.81,40.59,8.333333333333334,1,1,0,0,5,6,4,0,471.33334,21917.906,19183.105,251495.31,136587.06,2328.4333 -7189,8849,15936,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.2565551,5.9153519,0,0,-1083.7478,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,.11668287,0,1,1,0,0,6.2092371,64.34,40.5,-9,-9,10,1,1,0,0,0,12,2,1,342,159792.2,284455.72,0,0,1328.5334 -7190,8850,15937,15938,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.0746737,4.7802629,49,0,53.077591,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6015759,4.9442739,56.27,37.01,60.8,22.12,5,1,1,0,0,6,2,2,1,1315.5,-55075.047,25223.223,0,0,947.72095 -7190,8850,15938,15937,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,49,0,88.957062,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9873564,0,60.8,22.12,56.27,37.01,8.333333333333334,1,1,0,0,0,2,2,1,1315.5,-55075.047,25223.223,0,0,947.72095 -7191,8851,15939,15940,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.412735,8.4515524,0,10,1,67.806297,0,2,-9,2019,10,0,40,37,1,0,0,13.802432,13.802432,0,0,0,0,0,1,1,0,0,0,46.5,58.26,48.88,45.14,8.333333333333334,1,1,0,0,12,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 -7191,8851,15940,15939,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,7.7677107,7.503984,0,10,-1,153.35037,0,2,-9,2019,17,5,26,25,1,5,0,11.134039,11.134039,0,0,0,0,0,1,1,0,0,0,48.88,45.14,46.5,58.26,8.333333333333334,1,1,0,0,12,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 -7191,8851,15941,-9,15940,15939,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0533,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 -7191,8851,15942,-9,15940,15939,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-825.32373,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,698.25,-8903.4453,-25609.568,0,0,3393.3149 -7192,8852,15943,-9,15945,15944,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.0511,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,934,1626439,1197903.8,251670.16,178478.42,9668.5801 -7192,8852,15944,15945,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.2311411,9.1765862,0,28,0,-63.755329,0,2,2,2019,7,0,13,14,1,0,0,106.18624,106.18624,0,0,0,0,0,0,0,0,3.3128748,0,60.02,56.42,45.91,59.89,8.333333333333334,1,1,0,0,8,6,5,1,934,1626439,1197903.8,251670.16,178478.42,9668.5801 -7192,8852,15945,15944,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,9.6450739,9.4440298,0,28,0,-27.221939,0,2,2,2019,12,1,36,40,1,1,0,46.230724,46.230724,0,0,0,0,0,0,0,0,6.3863935,0,45.91,59.89,60.02,56.42,8.333333333333334,1,1,0,0,8,6,5,1,934,1626439,1197903.8,251670.16,178478.42,9668.5801 -7192,8853,15946,-9,15945,15944,1,0,18,0,1,1,2,0,0,0,3,0,4.5538845,4.2908149,0,0,-943.84717,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,4.4729452,0,47.4,54.06,-9,-9,8.333333333333334,1,1,0,0,1,6,2,1,1508,0,0,0,0,-8.5950775 -7193,8854,15947,-9,15950,15951,1,1,21,0,2,0,1,1,1,0,5,0,0,0,0,0,-1021.8265,-9,1,1,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,2,3,1,0,0,4,1,0,181,-165952.41,39994.227,0,0,0 -7193,8855,15948,-9,15950,15951,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-988.81891,-9,3,1,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37.73,60.97,-9,-9,3.333333333333333,2,3,0,0,0,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 -7193,8855,15949,-9,15950,15951,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-828.38324,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 -7193,8855,15950,15951,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,7.6438446,7.6174726,0,4,-14,126.18501,0,3,2,2019,17,6,38,38,1,6,0,6.774291,6.774291,0,0,0,0,0,0,0,0,0,0,35.73,44.46,46.33,55.93,6.666666666666667,2,3,0,0,4,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 -7193,8855,15951,15950,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,8.1259556,8.1023846,0,4,14,-48.540882,0,-9,-9,2019,9,0,40,40,1,0,0,6.4565387,6.4565387,0,0,0,0,0,0,0,0,0,0,46.33,55.93,35.73,44.46,6.666666666666667,2,3,0,0,4,4,3,0,854.5,967200.75,818228.06,221802.69,0,1953.3552 -7194,8856,15952,-9,15953,15954,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.72668,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,1,901.25,150772.25,0,0,0,1759.6605 -7194,8856,15953,15954,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,0,0,0,17,3,49.061394,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.4080898,0,57.06,57.76,40.76,41.18,8.333333333333334,2,3,0,0,0,6,2,1,901.25,150772.25,0,0,0,1759.6605 -7194,8856,15954,15953,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,6.8504858,6.778892,0,17,-3,138.30386,0,3,3,2019,12,0,35,30,1,0,0,3.1029918,3.1029918,0,0,0,0,0,1,1,0,0,0,40.76,41.18,57.06,57.76,6.666666666666667,2,3,0,0,9,6,2,1,901.25,150772.25,0,0,0,1759.6605 -7194,8856,15955,-9,15953,15954,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.03229,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,901.25,150772.25,0,0,0,1759.6605 -7194,8857,15956,-9,15953,15954,1,1,22,0,2,0,2,2,-9,0,5,7.8169022,7.469161,0,0,0,-964.70465,0,2,2,2019,6,0,35,40,1,0,1,6.8158984,6.8158984,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,6,3,1,751,-126267.16,-76965.875,0,0,700.79163 -7194,8858,15957,-9,15953,15954,1,0,21,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1074.9768,1,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,64.64,48.76,-9,-9,10,2,3,0,0,0,6,1,1,464,319471,0,0,0,793.16022 -7195,8859,15958,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,6.6947098,6.5829864,0,0,0,-1074.163,0,2,2,2019,12,1,20,20,1,1,0,3.714175,3.714175,0,0,0,0,0,1,1,0,8.0838203,0,48.54,46.62,-9,-9,6.666666666666667,1,1,0,0,11,9,2,0,1586,278316,0,265056.5,0,2334.978 -7195,8859,15959,-9,15958,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-945.32312,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,9,2,0,1586,278316,0,265056.5,0,2334.978 -7196,8860,15960,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,6.4374452,6.3422947,0,0,-1119.8325,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,12.444024,0,0,1,1,0,1.1640646,6.2662029,44.49,32.65,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,600,147581.19,-28776.574,0,0,1074.4308 -7197,8861,15961,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,6.8218246,7.2556963,0,0,-908.0874,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.1446676,7.4822145,62.39,56.71,-9,-9,10,1,1,0,0,0,10,3,1,4513,627941.5,83943.102,0,0,1527.4138 -7198,8862,15962,-9,15963,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.9292,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,0,559.5,199295.05,46938.68,0,0,2176.3521 -7198,8862,15963,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.8197856,7.9214821,5.9398894,0,0,-1062.874,0,2,2,2019,12,3,23,23,1,3,0,9.4679165,9.4679165,0,0,0,0,0,1,1,0,6.1429329,0,62.42,32.41,-9,-9,8.333333333333334,1,1,0,0,9,7,3,0,559.5,199295.05,46938.68,0,0,2176.3521 -7199,8863,15964,15966,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,8.0860882,8.2813873,0,3,-6,9.0393591,0,-9,-9,2019,10,0,25,35,1,0,0,12.890135,12.890135,0,0,0,0,0,1,1,0,0,0,44.19,58.01,51,56,1.666666666666667,1,1,0,0,7,2,4,1,312,-80681.461,67428,0,0,3419.5061 -7199,8863,15965,-9,15964,15966,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.5462,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,312,-80681.461,67428,0,0,3419.5061 -7199,8863,15966,15964,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.3868589,8.6460924,0,3,6,106.07478,-9,-9,-9,2019,10,0,40,0,1,1,0,12.86326,12.86326,0,0,0,0,0,1,1,0,0,0,51,56,44.19,58.01,7,4,1,0,0,1,2,4,1,312,-80681.461,67428,0,0,3419.5061 -7200,8864,15967,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,0,0,-933.93634,0,2,2,2019,7,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.99,44.45,-9,-9,6.666666666666667,1,1,0,0,5,9,1,0,703,-215890.16,0,0,0,1206.369 -7201,8865,15968,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,6.1448593,6.5310802,0,0,-980.66504,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9972291,36.42,44.54,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,286,377352.19,-44450.848,182515.28,0,1449.3502 -7202,8866,15969,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.2060003,8.3425112,0,0,0,-925.03186,0,3,3,2019,6,0,55,55,1,0,0,5.5168848,5.5168848,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,307,324925.78,151828.53,0,0,1566.3641 -7203,8867,15970,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8075294,7.9114408,0,0,0,-1040.5121,0,2,-9,2019,17,5,38,42,1,5,0,7.5011358,7.5011358,0,0,0,0,0,0,0,0,0,0,52.13,48.84,-9,-9,0,4,2,0,0,8,11,3,1,227,10252.404,-53086.164,0,0,1241.0912 -7203,8868,15971,-9,15970,-9,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-979.51971,-9,2,-9,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,1,0,1,11,1,1,1087,84512.266,0,0,0,0 -7204,8869,15972,15973,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,6.7255464,6.6492143,0,11,-1,19.878963,0,2,3,2019,9,0,60,50,1,0,0,1.5300621,1.5300621,0,0,0,0,0,0,0,0,3.2216561,0,52.82,46.09,33.58,61.56,8.333333333333334,4,5,0,0,12,8,3,1,1070.5,-119430.02,3260.6555,0,0,1176.0183 -7204,8869,15973,15972,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.6503601,7.9008598,0,11,1,8.5573473,0,2,3,2019,12,0,60,60,1,0,0,4.0681701,4.0681701,0,0,0,0,0,0,0,0,2.7721007,0,33.58,61.56,52.82,46.09,3.333333333333333,4,2,0,0,8,8,3,1,1070.5,-119430.02,3260.6555,0,0,1176.0183 -7205,8870,15974,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.6083913,7.3426123,0,0,-1016.1719,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5455422,7.4428554,49.97,56.66,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1365,884783.31,292371.94,242846.11,0,1451.5236 -7206,8871,15975,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.3918829,9.2899685,0,0,0,-983.50226,0,1,2,2019,11,0,50,14,1,0,0,20.98885,20.98885,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,681,333908.84,-89642.219,0,0,3285.0757 -7206,8872,15976,-9,15975,-9,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-995.39856,0,1,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,27.83,55.3,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,465,0,0,0,0,0 -7206,8873,15977,-9,15975,-9,1,0,22,0,0,0,2,2,-9,0,4,8.3681746,8.3530245,0,3,-4,103.27374,-9,2,2,2019,8,0,40,0,1,0,0,9.8561411,9.8561411,0,0,0,0,0,0,0,0,0,0,51.24,58.84,47,57,8.333333333333334,1,1,0,0,5,9,3,1,670,172218.48,17116.59,0,0,1216.8285 -7207,8874,15978,-9,15981,15979,1,1,18,0,2,0,2,2,1,0,4,0,5.2829309,5.8407154,0,0,-1040.0308,-9,1,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,5.4810104,0,46.16,58.62,-9,-9,8.333333333333334,1,1,1,0,0,12,2,0,644,-147115.63,164219.95,0,0,465.05807 -7207,8875,15979,15981,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.4135208,8.4975443,0,4,2,-13.184451,0,-9,-9,2019,16,5,34,18,1,5,0,18.224358,18.224358,0,0,0,0,0,1,0,1,0,0,33.89,57.81,51.16,20.12,3.333333333333333,1,1,0,1,7,12,3,0,815.66669,-16705.758,19778.994,0,0,2725.4336 -7207,8875,15980,-9,15981,15979,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.63098,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,815.66669,-16705.758,19778.994,0,0,2725.4336 -7207,8875,15981,15979,-9,-9,1,0,35,0,2,0,1,1,-9,1,1,0,6.2236214,5.8878074,4,-2,-2.0174651,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,6.1853147,0,51.16,20.12,33.89,57.81,6.666666666666667,1,1,0,1,3,12,3,0,815.66669,-16705.758,19778.994,0,0,2725.4336 -7208,8876,15982,15983,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,7.1519599,7.1801119,28,-1,-93.454414,0,3,2,2019,8,0,0,35,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0371885,7.0898962,42.19,17.56,47.46,36.51,6.666666666666667,1,1,0,0,10,2,3,1,2468.5,738619.63,697207.44,114314.48,0,1365.2207 -7208,8876,15983,15982,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.0648499,7.4920297,28,1,-110.12653,0,3,3,2019,11,0,0,35,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1983304,47.46,36.51,42.19,17.56,5,1,1,0,0,10,2,3,1,2468.5,738619.63,697207.44,114314.48,0,1365.2207 -7208,8877,15984,-9,15982,15983,1,1,25,0,0,0,2,2,-9,0,4,8.0940409,8.2238913,0,0,0,-1077.2554,0,3,2,2019,7,0,40,40,1,0,0,10.140532,10.140532,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,674,-53043.402,-31468.441,0,0,527.16394 -7209,8878,15985,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1022.5068,0,3,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.51,22.42,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1934,517184.13,0,332386.41,0,665.76404 -7210,8879,15986,-9,15989,15987,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.5831,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 -7210,8879,15987,15989,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.6433821,8.7813234,0,12,2,71.337418,0,2,2,2019,11,0,40,42,1,0,0,18.060911,18.060911,0,0,0,0,0,1,1,0,0,0,49.86,55.31,44.44,39.68,8.333333333333334,1,1,0,0,9,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 -7210,8879,15988,-9,15989,15987,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.46985,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 -7210,8879,15989,15987,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,7.1896825,7.3133059,0,12,-2,32.401466,0,2,3,2019,11,2,20,20,1,2,0,7.678257,7.678257,0,0,0,0,0,1,1,0,0,0,44.44,39.68,49.86,55.31,8.333333333333334,1,1,0,0,9,1,4,1,870,212902.33,145801.8,92001.813,64013.102,2813.4695 -7211,8880,15990,-9,15991,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.818,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,641.66669,86370.445,0,0,0,2394.3894 -7211,8880,15991,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1007.6928,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.19,40.17,-9,-9,5,1,1,0,0,0,12,1,0,641.66669,86370.445,0,0,0,2394.3894 -7211,8880,15992,-9,15991,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.16919,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,641.66669,86370.445,0,0,0,2394.3894 -7212,8881,15993,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.4294367,7.8235683,0,0,0,-976.21179,-9,1,1,2019,12,0,36,0,1,0,0,6.7099404,6.7099404,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,528,209818.38,0,20214.293,-20768.752,1109.1196 -7213,8882,15994,15995,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,5,-2,-87.434113,0,3,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,53.01,43.56,54.2,57.49,8.333333333333334,1,1,0,0,0,4,3,0,455.5,650321.5,422644.38,207969.13,0,2117.0166 -7213,8882,15995,15994,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.7226982,7.9839206,49,2,-24.42816,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6312985,54.2,57.49,53.01,43.56,8.333333333333334,1,1,0,0,4,4,3,0,455.5,650321.5,422644.38,207969.13,0,2117.0166 -7214,8883,15996,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.2634554,8.1675568,0,0,-1049.2347,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.2160189,7.9785538,45.33,49.24,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,439,1076329.1,443663.13,644460.63,0,1649.5698 -7215,8884,15997,-9,15999,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8609,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1401.3334,189142.73,27729.059,0,0,1816.2671 -7215,8884,15998,-9,15999,-9,1,1,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1021.4042,-9,2,-9,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.84,61.77,-9,-9,3.333333333333333,1,1,1,0,0,9,3,0,1401.3334,189142.73,27729.059,0,0,1816.2671 -7215,8884,15999,-9,16000,16001,1,0,44,0,2,0,2,2,-9,0,4,7.9220352,8.2117558,6.2325034,0,0,-979.90247,0,1,3,2019,11,1,39,39,1,1,0,6.6097283,6.6097283,0,0,0,0,0,1,1,0,6.273046,0,52.34,56.95,-9,-9,10,1,1,0,0,8,9,3,0,1401.3334,189142.73,27729.059,0,0,1816.2671 -7215,8885,16000,16001,-9,-9,1,0,67,0,2,0,2,2,-9,0,2,0,7.5631657,7.7186174,6,-2,-11.50911,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0088844,7.2726398,65.81,23.91,53,47,8.333333333333334,1,1,0,0,0,9,3,0,800.5,293172.38,51076.906,0,0,3484.6392 -7215,8885,16001,16000,-9,-9,1,1,69,0,2,0,3,3,-9,0,3,0,7.9537272,7.9574485,6,2,-36.381145,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2598453,8.102066,53,47,65.81,23.91,7,1,1,0,0,0,9,3,0,800.5,293172.38,51076.906,0,0,3484.6392 -7216,8886,16002,16003,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.5624595,6.3280025,33,3,26.85747,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.1408627,6.6864071,40.05,43.86,64.23999999999999,29.69,6.666666666666667,1,1,0,0,11,4,4,1,404,982839.13,190564,394196.72,246617.52,3076.1704 -7216,8886,16003,16002,-9,-9,1,1,69,0,0,0,3,3,-9,1,3,7.7826796,8.3875313,6.7871981,33,-3,24.351299,0,2,3,2019,7,0,17,24,1,0,0,17.759426,17.759426,1,0,.44285727,0,0,1,1,0,6.8239908,6.8265204,64.23999999999999,29.69,40.05,43.86,8.333333333333334,1,1,0,0,11,4,4,1,404,982839.13,190564,394196.72,246617.52,3076.1704 -7217,8887,16004,16005,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,46,0,-39.383823,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.0079575,0,58.15,52.91,53.5,51.02,8.333333333333334,1,1,0,0,0,6,5,1,833.5,1698840.3,383241.75,387126.63,0,6296.9185 -7217,8887,16005,16004,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,9.0986986,8.9568834,46,0,-41.339016,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,9.0184832,9.0997782,53.5,51.02,58.15,52.91,8.333333333333334,1,1,0,0,10,6,5,1,833.5,1698840.3,383241.75,387126.63,0,6296.9185 -7218,8888,16006,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.5454612,7.0667682,0,0,-972.89417,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,4.0053635,7.4852562,48.52,43.78,-9,-9,6.666666666666667,1,1,0,1,0,10,3,1,1641,246259.88,112984.19,227000.11,0,2321.9319 -7219,8889,16007,16008,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.0983973,7.5531588,51,3,4.3338313,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.9548073,7.0891562,55.76,52.64,42.24,30.88,10,1,1,0,0,4,10,2,1,333.5,587327.38,88548.313,321561.25,0,1977.3555 -7219,8889,16008,16007,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,49,-3,-45.622143,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7586436,0,42.24,30.88,55.76,52.64,10,1,1,0,0,1,10,2,1,333.5,587327.38,88548.313,321561.25,0,1977.3555 -7220,8890,16009,16011,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,8.6341562,8.4719572,0,8,0,-106.67647,0,2,1,2019,8,0,37,38,1,0,0,20.820658,20.820658,0,0,0,0,0,1,1,0,0,0,50.48,56.4,46.56,57.02,8.333333333333334,1,1,0,0,7,2,5,1,677,176030.13,-27329.143,233166.59,157662.92,4175.1987 -7220,8890,16010,-9,16009,16011,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-875.00763,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,677,176030.13,-27329.143,233166.59,157662.92,4175.1987 -7220,8890,16011,16009,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.5846672,8.341013,0,8,0,.13985708,0,-9,-9,2019,12,0,39,39,1,0,0,17.701876,17.701876,0,0,0,0,0,1,1,0,0,0,46.56,57.02,50.48,56.4,10,1,1,0,0,9,2,5,1,677,176030.13,-27329.143,233166.59,157662.92,4175.1987 -7221,8891,16012,-9,16014,16013,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.137,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,766,-36156.43,128791.49,0,0,2666.1963 -7221,8891,16013,16014,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,8.4927311,8.7441998,0,8,1,48.010967,0,2,2,2019,7,0,37,49,1,0,0,15.097109,15.097109,0,0,0,0,0,1,1,0,0,0,57.33,53.46,30.77,64.34,8.333333333333334,1,1,0,0,9,4,4,1,766,-36156.43,128791.49,0,0,2666.1963 -7221,8891,16014,16013,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,5.5640817,5.604959,0,8,-1,-18.536652,0,2,1,2019,19,8,40,40,1,8,0,.90659964,.90659964,0,0,0,0,0,1,1,0,2.1250708,0,30.77,64.34,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,766,-36156.43,128791.49,0,0,2666.1963 -7222,8892,16015,-9,16017,16016,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-955.7475,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,5,1,1629.3334,1079534.3,609278.44,599014.56,51586.301,4988.0249 -7222,8892,16016,16017,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,9.277071,9.1960297,7.1907272,7,4,-15.207568,0,3,2,2019,13,2,44,37,1,2,0,27.283934,27.283934,0,0,0,0,0,1,1,0,5.3502688,7.6850786,37.85,48.75,52.65,54.32,8.333333333333334,1,1,0,0,8,7,5,1,1629.3334,1079534.3,609278.44,599014.56,51586.301,4988.0249 -7222,8892,16017,16016,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,5.4673924,7.2653003,6.8663082,7,-4,-54.105766,0,-9,2,2019,8,2,5,5,1,2,0,4.5170879,4.5170879,0,0,0,0,0,1,1,0,0,7.0098619,52.65,54.32,37.85,48.75,8.333333333333334,1,1,0,0,8,7,5,1,1629.3334,1079534.3,609278.44,599014.56,51586.301,4988.0249 -7222,8893,16018,-9,16017,16016,1,0,21,0,1,0,2,2,0,0,2,0,0,0,0,0,-1146.8552,-9,2,1,2019,33,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,2.7230666,0,16.38,54.99,-9,-9,1.666666666666667,1,1,0,0,3,7,1,1,372,-415901.94,0,0,0,722.68799 -7223,8894,16019,-9,16021,16020,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1170.9434,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 -7223,8894,16020,16021,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,9.2505503,9.4594202,0,20,3,-47.442722,0,3,2,2019,13,1,37,53,1,1,0,32.186729,32.186729,0,0,0,0,0,0,0,0,0,0,43.57,62.68,57.16,56.15,6.666666666666667,1,1,0,0,10,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 -7223,8894,16021,16020,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,20,-3,98.945694,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.57,62.68,8.333333333333334,1,1,0,0,10,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 -7223,8894,16022,-9,16021,16020,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4997,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,993.25,1041661.3,711012.56,339726.56,159856.94,3272.5725 -7224,8895,16023,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-979.47797,-9,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.22,41.57,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,2607,272590.09,0,0,0,464.9906 -7225,8896,16024,-9,16026,16025,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.02228,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 -7225,8896,16025,16026,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.7343979,9.1293306,0,12,2,43.829334,0,2,2,2019,12,0,52,40,1,0,0,15.374024,15.374024,0,0,0,0,0,1,1,0,.40922964,0,53.54,36.24,35.79,44.37,3.333333333333333,1,1,0,0,8,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 -7225,8896,16026,16025,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.4670529,7.5645475,0,12,-2,1.2251179,0,1,3,2019,12,1,28,27,1,1,0,7.6279078,7.6279078,0,0,0,1.8552204,2,1,1,0,7.9513335,0,35.79,44.37,53.54,36.24,6.666666666666667,1,1,0,0,7,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 -7225,8896,16027,-9,16026,16025,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.73114,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,604.75,376244.69,241850.97,191691.28,144547.19,3932.7012 -7226,8897,16028,16029,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.6877594,7.0319557,33,13,-85.164803,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2907305,6.5733218,61.12,51.57,57.16,56.15,10,1,1,0,0,0,2,2,1,310,212886.91,53947.297,54241.25,0,958.39203 -7226,8897,16029,16028,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,33,-13,30.629313,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.12,51.57,10,1,1,0,0,3,2,2,1,310,212886.91,53947.297,54241.25,0,958.39203 -7227,8898,16030,16031,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.2624283,7.9310646,0,4,2,72.556458,0,1,1,2019,6,1,44,39,1,1,0,7.9913359,7.9913359,0,0,0,0,0,0,0,0,0,0,56.58,49.75,50.3,56.65,8.333333333333334,1,1,0,0,10,5,5,0,646.5,117876.79,154969.34,94915.781,89304.742,3276.9497 -7227,8898,16031,16030,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.2376175,8.5128269,0,4,-2,.30264783,0,-9,-9,2019,11,1,38,37,1,1,0,13.0352,13.0352,0,0,0,0,0,0,0,0,0,0,50.3,56.65,56.58,49.75,8.333333333333334,1,1,0,0,9,5,5,0,646.5,117876.79,154969.34,94915.781,89304.742,3276.9497 -7228,8899,16032,16033,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.6910048,8.1305666,6.6882935,36,2,54.435677,-9,3,3,2019,6,0,38,0,1,0,0,5.8627748,5.8627748,0,0,0,0,0,0,0,0,2.3013904,7.03614,55.06,40.97,41.76,57.81,8.333333333333334,1,1,0,0,12,7,4,0,992,345583.56,164307.28,0,0,2853.958 -7228,8899,16033,16032,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.6963286,7.99264,7.174159,36,-2,60.747135,-9,3,3,2019,11,1,20,0,1,1,0,14.000559,14.000559,0,0,0,0,0,0,0,0,3.2713091,7.1204214,41.76,57.81,55.06,40.97,8.333333333333334,1,1,0,0,12,7,4,0,992,345583.56,164307.28,0,0,2853.958 -7228,8900,16034,-9,16033,16032,1,1,38,0,0,0,2,2,-9,0,3,7.8511314,7.7145433,0,0,0,-1002.9047,-9,2,3,2019,3,0,48,0,1,0,1,5.3855786,5.3855786,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,10,1,1,0,0,12,7,3,0,149,0,0,0,0,508.37009 -7229,8901,16035,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.2418799,5.5019898,0,0,-916.77954,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4424043,5.1487589,66.37,38.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,449,608585.75,0,199764.52,0,1074.1344 -7230,8902,16036,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.7473836,6.8207793,0,0,-1089.2323,0,2,1,2019,8,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,4.0860405,7.2099257,44.45,50.99,-9,-9,1.666666666666667,1,1,1,0,9,9,2,1,1400,563375.94,144535.5,273412,26318.1,882.85553 -7231,8903,16037,16038,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,7.4323339,7.5773401,10,4,91.099548,0,-9,2,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,120,1,1,0,0,7.5736265,35.7,23.15,40.3,22.27,8.333333333333334,1,1,0,0,0,6,2,1,423,489152,283271.06,259824.36,0,2300.1255 -7231,8903,16038,16037,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,10,-4,146.13573,0,-9,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,40.3,22.27,35.7,23.15,3.333333333333333,1,1,0,0,0,6,2,1,423,489152,283271.06,259824.36,0,2300.1255 -7232,8904,16039,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,6.5363116,6.8495636,0,0,-902.95532,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,6.5081635,29.09,39.51,-9,-9,1.666666666666667,1,1,1,0,0,6,2,0,861,-429785.81,0,0,0,1595.0005 -7233,8905,16040,-9,16043,16042,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-985.88733,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 -7233,8905,16041,-9,16043,16042,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.68774,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 -7233,8905,16042,16043,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4566755,8.30865,0,9,3,-60.828407,0,3,3,2019,8,0,46,43,1,0,0,12.777696,12.777696,0,0,0,0,2,1,1,0,5.2059188,0,56.86,50.75,57.06,57.76,8.333333333333334,1,1,0,0,10,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 -7233,8905,16043,16042,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.9922447,7.8833232,0,9,-3,-67.339027,0,2,2,2019,8,0,33,36,1,0,0,9.0028028,9.0028028,0,0,0,0,0,1,1,0,0,0,57.06,57.76,56.86,50.75,8.333333333333334,1,1,0,0,10,12,4,1,675,320817.47,317888.56,138576.23,49752.258,3301.8589 -7234,8906,16044,16045,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.1370716,9.2325182,0,7,2,-12.333221,0,2,2,2019,15,4,47,40,1,4,0,25.881992,25.881992,0,0,0,0,0,0,0,0,5.0536509,0,33.74,63,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,810,1464133.1,810958.5,202684.88,0,5225.0313 -7234,8906,16045,16044,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8377113,8.5839882,0,7,-2,-94.63237,0,3,2,2019,7,0,37,31,1,0,0,22.283646,22.283646,0,0,0,0,7,0,0,0,5.7139068,0,57.16,56.15,33.74,63,6.666666666666667,1,1,0,0,8,12,5,1,810,1464133.1,810958.5,202684.88,0,5225.0313 -7235,8907,16046,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.3323793,8.1955271,0,0,0,-1147.5537,0,2,2,2019,9,1,38,42,1,1,0,13.417125,13.417125,0,0,0,0,0,1,1,0,0,0,53.92,52.23,-9,-9,6.666666666666667,1,1,0,0,8,8,4,0,1226,581564.13,308349.53,377905.25,268585.72,1859.8317 -7235,8908,16047,-9,16049,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.3746,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,4,0,577.33331,252032.78,0,202320,101252.97,2208.3823 -7235,8908,16048,-9,16049,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.94153,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,577.33331,252032.78,0,202320,101252.97,2208.3823 -7235,8908,16049,-9,16046,-9,1,0,33,0,2,0,2,2,-9,0,4,7.9551167,7.887918,0,0,0,-974.37744,0,2,-9,2019,9,0,30,30,1,0,1,11.544621,11.544621,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,8,8,4,0,577.33331,252032.78,0,202320,101252.97,2208.3823 -7236,8909,16050,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3562908,8.4874058,0,0,0,-998.03979,0,2,-9,2019,6,0,46,48,1,0,0,15.244581,15.244581,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,2,3,0,0,13,2,5,1,671,701516,364576.44,255821.44,77639.57,2142.3721 -7237,8910,16051,16055,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,7.9405999,8.2738371,0,5,0,-165.17699,0,2,2,2019,14,4,20,21,1,4,0,11.691483,11.691483,0,0,0,0,0,1,1,0,0,0,41.11,60.68,48.77,60.16,5,1,1,0,0,6,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 -7237,8910,16052,-9,16051,16055,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.6557,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 -7237,8910,16053,-9,16051,16055,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-949.19348,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 -7237,8910,16054,-9,16051,16055,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-950.104,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 -7237,8910,16055,16051,-9,-9,1,1,44,0,3,0,1,1,-9,0,5,8.7103329,9.0451851,0,5,0,-91.304283,0,3,3,2019,15,3,40,39,1,3,0,23.761015,23.761015,0,0,0,0,0,1,1,0,0,0,48.77,60.16,41.11,60.68,6.666666666666667,1,1,0,1,6,8,4,1,1479.4,1673151.1,152128.97,1190362.9,0,4504.9102 -7238,8911,16056,16057,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.5604143,8.6812572,0,1,0,-10.948698,-9,2,2,2019,23,11,38,0,1,11,0,18.930595,18.930595,0,0,0,0,0,0,0,0,1.1774511,0,35.49,62.14,54.1,59.11,3.333333333333333,1,1,0,0,10,11,5,1,218,94226.375,69701.094,116906.25,76082.109,2586.9316 -7238,8911,16057,16056,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,8.0506325,7.8351393,0,1,9,22.576986,-9,3,3,2019,11,0,35,0,1,0,0,12.55104,12.55104,0,0,0,0,0,0,0,0,0,0,54.1,59.11,35.49,62.14,8.333333333333334,1,1,0,0,10,11,5,1,218,94226.375,69701.094,116906.25,76082.109,2586.9316 -7239,8912,16058,-9,16060,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-940.40277,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 -7239,8912,16059,-9,16060,-9,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1086.0337,-9,2,-9,2019,25,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.54,54.81,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 -7239,8912,16060,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.4918408,7.6718578,0,0,0,-1055.605,0,1,-9,2019,5,0,56,35,1,0,0,3.7348154,3.7348154,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,3,4,0,0,3,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 -7239,8912,16061,-9,16060,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.91199,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,812.5,-66148.844,17703.863,0,0,2174.896 -7240,8913,16062,-9,16067,-9,1,0,21,1,6,0,2,2,-9,0,5,6.8210096,6.7773719,0,0,0,-1076.7571,-9,2,-9,2019,30,10,30,0,1,10,1,2.8436289,2.8436289,0,0,0,0,0,1,1,0,0,0,43.05,57.29,-9,-9,3.333333333333333,1,1,0,0,3,6,2,0,121,-11510.188,-31659.857,0,0,285.51279 -7240,8914,16063,-9,16067,16069,1,1,3,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1097.0348,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7240,8914,16064,-9,16067,-9,1,0,12,1,6,1,3,0,-9,0,4,0,0,0,0,0,-918.25232,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7240,8914,16065,-9,16067,-9,1,0,10,1,6,1,3,0,-9,0,5,0,0,0,0,0,-1088.7312,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7240,8914,16066,-9,16067,16069,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1165.3737,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7240,8914,16067,16069,-9,-9,1,0,42,1,6,0,2,2,-9,0,4,0,0,0,6,-7,-2.1527507,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,59.29,49.68,5,1,1,0,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7240,8914,16068,-9,16067,16069,1,0,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1093.8345,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7240,8914,16069,16067,-9,-9,1,1,49,1,6,0,2,2,-9,0,4,8.2152662,8.185195,0,6,7,47.283504,0,-9,-9,2019,11,0,42,41,1,0,0,9.610301,9.610301,0,0,0,0,0,1,1,0,0,0,59.29,49.68,51.24,58.84,5,1,1,0,0,4,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7240,8914,16070,-9,16067,-9,1,0,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1000.8246,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,952,14961.212,0,383992.81,277244.34,2634.1653 -7241,8915,16071,-9,16072,16073,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.15137,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,994.66669,92255.898,31358.039,143125.81,91152.227,4049.021 -7241,8915,16072,16073,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.4814768,7.2862096,0,9,-2,-90.274017,0,2,2,2019,7,0,38,36,1,0,0,4.1108842,4.1108842,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.46,59.39,1.666666666666667,1,1,0,0,9,5,5,1,994.66669,92255.898,31358.039,143125.81,91152.227,4049.021 -7241,8915,16073,16072,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.9066181,8.6433964,0,9,2,10.445126,0,2,3,2019,10,0,47,42,1,0,0,18.408987,18.408987,0,0,0,0,0,1,1,0,6.2291064,0,38.46,59.39,57.16,56.15,0,1,1,0,0,9,5,5,1,994.66669,92255.898,31358.039,143125.81,91152.227,4049.021 -7242,8916,16074,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,3,7.2116008,7.3791881,0,0,0,-889.52368,-9,-9,-9,2019,7,0,40,0,1,0,0,3.4797618,3.4797618,0,0,0,0,0,0,0,0,0,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,301,-138737.3,97448.141,0,0,313.0426 -7243,8917,16075,16076,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.5444059,8.4858427,0,9,0,-35.30743,0,-9,-9,2019,16,5,17,17,1,5,0,24.395901,24.395901,0,0,0,0,0,1,1,0,2.4409702,0,45.13,57.48,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,696.33331,366705.66,0,263595.13,17972.879,4735.5469 -7243,8917,16076,16075,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,8.5752316,8.8075504,0,9,0,-27.610121,0,2,2,2019,5,0,42,40,1,0,0,17.000256,17.000256,0,0,0,0,0,1,1,0,6.3748097,0,57.06,57.76,45.13,57.48,8.333333333333334,1,1,0,0,9,12,5,1,696.33331,366705.66,0,263595.13,17972.879,4735.5469 -7243,8917,16077,-9,16075,16076,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.7168,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,696.33331,366705.66,0,263595.13,17972.879,4735.5469 -7244,8918,16078,16079,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.429677,8.0517359,0,5,3,35.27898,0,-9,-9,2019,10,0,36,37,1,0,0,11.789652,11.789652,0,0,0,0,0,0,0,0,.039930094,0,42.05,58.8,35.5,56.48,6.666666666666667,1,1,0,0,6,12,5,1,730,-57863.852,-5884.5967,149830.03,95658.156,2747.7102 -7244,8918,16079,16078,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.1671162,8.2696829,0,5,-3,-59.168671,0,-9,-9,2019,20,7,45,42,1,7,0,9.8098469,9.8098469,0,0,0,0,0,0,0,0,0,0,35.5,56.48,42.05,58.8,8.333333333333334,1,1,0,1,8,12,5,1,730,-57863.852,-5884.5967,149830.03,95658.156,2747.7102 -7245,8919,16080,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,7.3764172,7.4406223,0,0,-1054.0918,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,5.3039885,1.1444876,44.481682,0,1,1,0,2.2927082,7.1326165,56.78,26.69,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,181,291124.16,102477.74,-8340.5664,0,1997.9303 -7246,8920,16081,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-898.99908,0,1,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.24,19.06,-9,-9,3.333333333333333,1,1,0,1,0,9,1,0,1773,0,0,0,0,773.25189 -7247,8921,16082,-9,16083,16085,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1048.7605,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 -7247,8921,16083,16085,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,0,0,0,22,1,83.701164,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,42.79,33.24,51.14,60.45,5,1,1,0,0,0,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 -7247,8921,16084,-9,16083,16085,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-959.83136,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 -7247,8921,16085,16083,-9,-9,1,1,43,0,2,0,1,1,-9,1,5,9.5030708,9.3498211,0,22,-1,90.285324,0,2,1,2019,7,0,55,47,1,0,0,28.168695,28.168695,0,0,0,0,0,1,1,0,7.6936412,0,51.14,60.45,42.79,33.24,6.666666666666667,1,1,0,0,8,4,5,1,254.25,733312,642118.44,293282.69,137669.02,6130.5107 -7248,8922,16086,16087,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.1328588,7.0486727,0,4,1,-156.54982,0,3,2,2019,8,0,30,30,1,0,0,5.842814,5.842814,0,0,0,0,0,0,0,0,0,0,54,54,38.09,63.39,8,1,1,0,0,1,10,5,1,473.5,415952.63,203480.72,0,0,3119.9829 -7248,8922,16087,16086,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.8621721,8.7018356,0,4,-1,85.607368,0,1,2,2019,17,5,37,45,1,5,0,21.459473,21.459473,0,0,0,0,0,0,0,0,0,0,38.09,63.39,54,54,5,1,1,0,0,10,10,5,1,473.5,415952.63,203480.72,0,0,3119.9829 -7249,8923,16088,16089,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2196856,8.3615389,0,2,0,-38.111092,0,2,2,2019,12,0,50,50,1,0,0,8.2453852,8.2453852,0,0,0,0,0,0,0,0,0,0,55.9,52.64,44.19,56.73,8.333333333333334,1,1,0,0,7,4,5,0,1956,93284.234,121795.59,0,0,2784.7036 -7249,8923,16089,16088,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3012447,8.0769129,0,2,0,150.53941,-9,-9,-9,2019,14,2,41,0,1,2,0,9.7380028,9.7380028,0,0,0,0,0,0,0,0,1.0091848,0,44.19,56.73,55.9,52.64,6.666666666666667,1,1,0,0,2,4,5,0,1956,93284.234,121795.59,0,0,2784.7036 -7250,8924,16090,16091,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9291058,8.0646505,0,10,-6,2.2236869,0,-9,-9,2019,9,0,35,1,1,0,0,9.7146206,9.7146206,0,0,0,0,27,0,0,0,0,0,54.69,57.47,48.87,58.55,8.333333333333334,1,1,0,0,12,6,5,1,707,634333.81,210904.14,286733.09,83943.406,4513.186 -7250,8924,16091,16090,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1902952,8.9274788,7.7908792,26,6,46.288811,0,2,2,2019,10,0,9,43,1,0,0,47.299702,47.299702,0,0,0,0,0,0,0,0,7.0307593,8.0960979,48.87,58.55,54.69,57.47,8.333333333333334,1,1,0,0,12,6,5,1,707,634333.81,210904.14,286733.09,83943.406,4513.186 -7250,8925,16092,-9,16090,16091,1,0,21,0,0,0,1,1,1,0,3,7.2706246,7.2334433,0,0,0,-1121.313,-9,2,2,2019,21,7,40,0,1,7,1,5.2114224,5.2114224,0,0,0,0,0,0,0,0,0,0,25.99,60.99,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,190,-88704.156,0,0,0,1109.5439 -7251,8926,16093,16094,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.2022152,8.1956797,0,6,-2,-15.066145,0,-9,-9,2019,12,2,37,37,1,2,0,12.5552,12.5552,0,0,0,0,0,0,0,0,2.3851104,0,38.4,60.75,49.46,49.04,8.333333333333334,1,1,0,0,7,11,5,1,580.5,109531.52,0,162940.36,168126.72,3699.4651 -7251,8926,16094,16093,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.3247871,8.5268431,0,6,2,-38.263214,0,2,2,2019,10,0,37,37,1,0,0,14.257208,14.257208,0,0,0,0,0,0,0,0,2.8509805,0,49.46,49.04,38.4,60.75,8.333333333333334,1,1,0,0,11,11,5,1,580.5,109531.52,0,162940.36,168126.72,3699.4651 -7252,8927,16095,-9,16096,16097,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.6736,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,942.66669,776446.19,672382.75,276580.38,254853.44,6050.9277 -7252,8927,16096,16097,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,8.8303194,8.8973646,0,7,0,185.79897,0,2,3,2019,11,1,38,37,1,1,0,26.804255,26.804255,0,0,0,0,0,1,1,0,0,0,45.46,61.87,20.23,65.13,3.333333333333333,1,1,0,0,8,13,5,1,942.66669,776446.19,672382.75,276580.38,254853.44,6050.9277 -7252,8927,16097,16096,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,8.6846628,8.351017,0,7,0,74.615364,0,1,1,2019,22,11,45,40,1,11,0,18.010942,18.010942,0,0,0,0,0,1,1,0,0,0,20.23,65.13,45.46,61.87,6.666666666666667,1,1,0,1,8,13,5,1,942.66669,776446.19,672382.75,276580.38,254853.44,6050.9277 -7253,8928,16098,16100,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.2739906,7.2334752,0,5,-7,-8.5795155,0,2,2,2019,13,2,23,16,1,2,0,7.79814,7.79814,0,0,0,.6725263,0,1,1,0,.55926985,0,49.52,56.95,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,0,557.33331,-18641.23,39550.078,117013.75,53762.281,2883.8472 -7253,8928,16099,-9,16098,16100,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.91705,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,0,557.33331,-18641.23,39550.078,117013.75,53762.281,2883.8472 -7253,8928,16100,16098,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.2858801,8.5285463,0,5,7,-137.92058,0,-9,-9,2019,10,0,40,43,1,0,0,10.865636,10.865636,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.52,56.95,6.666666666666667,1,1,0,0,6,5,4,0,557.33331,-18641.23,39550.078,117013.75,53762.281,2883.8472 -7254,8929,16101,16102,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.1200819,8.1983643,0,30,-1,32.528072,0,3,3,2019,8,0,40,40,1,0,0,9.7758064,9.7758064,0,0,0,0,2,0,0,0,0,0,43.54,59.6,55.36,51.57,10,1,1,0,0,9,6,5,1,742.5,1192321.3,730242.88,295431.56,72870.859,3435.0576 -7254,8929,16102,16101,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6273804,8.3625965,0,30,1,-52.396797,0,3,3,2019,12,0,50,58,1,0,0,15.113251,15.113251,0,0,0,0,7,0,0,0,0,0,55.36,51.57,43.54,59.6,5,1,1,0,0,9,6,5,1,742.5,1192321.3,730242.88,295431.56,72870.859,3435.0576 -7254,8930,16103,-9,16101,16102,1,0,23,0,0,0,2,2,-9,0,1,7.9433856,8.1458902,0,0,0,-1043.6671,0,2,2,2019,14,3,40,37,1,3,1,8.6166267,8.6166267,0,0,0,0,2,0,0,0,1.9698137,0,54.55,30.52,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,484,173389.75,0,0,0,1263.8441 -7255,8931,16104,-9,16105,-9,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-959.56311,0,1,-9,2019,35,12,0,41,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,1,10,9,1,0,458,88571.273,0,0,0,1328.9926 -7255,8932,16105,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.5801415,6.6621585,0,0,-1028.9487,-9,-9,-9,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.7745557,47.89,16.41,-9,-9,3.333333333333333,1,1,0,0,0,9,2,0,350,788451.56,131143.2,496000.91,0,1684.575 -7256,8933,16106,-9,-9,-9,1,0,52,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1042.437,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.4,19.88,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,723,206164.27,0,0,0,1202.8562 -7257,8934,16107,-9,16108,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.4772,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,837,153953.66,0,0,0,1582.677 -7257,8934,16108,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.8990064,7.8580198,0,0,0,-933.87665,0,-9,-9,2019,7,0,32,22,1,0,0,10.739106,10.739106,0,0,0,0,0,1,1,0,0,0,58.16,42.18,-9,-9,5,1,1,0,0,2,5,3,0,837,153953.66,0,0,0,1582.677 -7258,8935,16109,-9,-9,-9,1,0,96,0,0,0,2,2,-9,0,3,0,7.2292142,7.5115914,0,0,-961.00409,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8594024,7.296011,54,43,-9,-9,8,1,1,0,0,0,6,3,0,491,533010,31786.299,184004.13,0,1920.5294 -7259,8936,16110,16111,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.4700089,5.5175881,38,-1,29.31402,0,3,3,2019,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,2.4071498,5.7108836,36.42,51.76,50.65,60.47,8.333333333333334,1,1,0,0,0,2,3,1,556.5,721771.81,524456.94,153440.17,0,1634.8851 -7259,8936,16111,16110,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2080297,8.1870623,0,9,1,-119.3583,0,-9,-9,2019,8,0,45,60,1,0,0,10.852271,10.852271,0,0,0,0,0,0,0,0,0,0,50.65,60.47,36.42,51.76,10,1,1,0,0,11,2,3,1,556.5,721771.81,524456.94,153440.17,0,1634.8851 -7260,8937,16112,16113,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.346242,8.6974497,50,-1,101.27135,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2871294,9.0089006,57.16,56.15,57.33,53.46,10,1,1,0,0,0,8,4,1,689,1840111,176011.75,634582,0,4525.5361 -7260,8937,16113,16112,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,50,1,-158.46101,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4459596,0,57.33,53.46,57.16,56.15,10,1,1,0,0,0,8,4,1,689,1840111,176011.75,634582,0,4525.5361 -7261,8938,16114,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.567699,5.3989406,0,0,-999.18781,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5769706,67.02,35.8,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,498,178173.31,199284.27,172899.83,0,1548.7687 -7262,8939,16115,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,1,0,4.5032721,4.6993351,0,0,-986.3252,0,3,2,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,4.7351947,33.48,37.99,-9,-9,8.333333333333334,4,5,0,1,0,9,2,1,507,-217532.94,11763.553,0,0,858.91388 -7263,8940,16116,16118,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.3410034,8.132822,0,7,0,30.355452,0,-9,-9,2019,13,2,16,16,1,2,0,30.330853,30.330853,0,0,0,0,0,0,0,0,1.8754985,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,5,4,5,1,421.66666,374929.44,245471.95,0,0,5113.104 -7263,8940,16117,-9,16116,16118,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.787,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,421.66666,374929.44,245471.95,0,0,5113.104 -7263,8940,16118,16116,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,9.3639584,9.0566864,0,7,0,-109.77377,0,1,1,2019,8,0,50,48,1,0,0,19.56222,19.56222,0,0,0,0,0,0,0,0,2.386549,0,57.16,56.15,45.81,61.51,8.333333333333334,1,1,0,0,7,4,5,1,421.66666,374929.44,245471.95,0,0,5113.104 -7264,8941,16119,16120,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,5.2949152,5.5728421,0,42,-2,3.7479107,0,2,1,2019,11,0,4,20,1,0,0,6.5632148,6.5632148,0,0,0,0,0,0,0,0,6.7584119,0,57.06,57.76,55,53,8.333333333333334,1,1,0,0,9,9,3,1,293.5,334945.75,102204.73,284317.66,0,2918.2222 -7264,8941,16120,16119,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,7.8360848,7.2489729,42,2,53.419712,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.6451688,7.8591084,55,53,57.06,57.76,8,1,1,0,0,0,9,3,1,293.5,334945.75,102204.73,284317.66,0,2918.2222 -7265,8942,16121,16123,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.2788534,8.3328114,0,11,-4,-28.641855,0,3,1,2019,21,10,36,36,1,10,0,15.156086,15.156086,0,0,0,0,0,1,1,0,6.7023067,0,39.16,62.84,42.85,60.33,3.333333333333333,1,1,0,0,11,2,5,0,923.66669,442112.75,198000.69,494093.94,255533.17,6451.687 -7265,8942,16122,-9,16121,16123,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.5946,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,0,923.66669,442112.75,198000.69,494093.94,255533.17,6451.687 -7265,8942,16123,16121,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.3420467,9.8795347,0,11,4,-21.670328,0,2,1,2019,22,10,40,40,1,10,0,41.638069,41.638069,0,0,0,0,0,1,1,0,0,0,42.85,60.33,39.16,62.84,1.666666666666667,1,1,0,0,6,2,5,0,923.66669,442112.75,198000.69,494093.94,255533.17,6451.687 -7266,8943,16124,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.00623,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.42,31.95,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,71,31669.074,0,0,0,293.40338 -7266,8944,16125,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-952.24524,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.15,19.97,-9,-9,1.666666666666667,1,1,0,1,9,4,1,1,272,99808.195,0,0,0,1343.5907 -7267,8945,16126,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,4.8420939,5.0269938,0,0,-992.97943,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.7712841,61.86,34.66,-9,-9,10,1,1,0,0,0,9,2,0,380,57199.957,0,254998.08,0,861.50702 -7268,8946,16127,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1014.4383,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.5951324,0,60.53,48.35,-9,-9,10,1,1,0,0,9,10,1,1,243,-70758.109,0,0,0,75.337425 -7269,8947,16128,16129,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.6296873,6.576242,4.0602665,6,1,185.07446,0,2,2,2019,6,0,40,40,1,0,0,2.0693786,2.0693786,0,0,0,.34027505,0,1,1,0,0,4.7157259,54.45,56.22,56.32,40.65,8.333333333333334,1,1,0,0,6,1,3,1,950.5,356104.97,412506.31,43606.445,35710.078,2288.5073 -7269,8947,16129,16128,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,6.6760883,7.9271789,8.0246687,6,-1,72.571983,0,2,2,2019,9,1,80,80,1,1,0,1.0454123,1.0454123,0,0,0,0,0,1,1,0,2.0160558,7.7476692,56.32,40.65,54.45,56.22,8.333333333333334,1,1,0,0,6,1,3,1,950.5,356104.97,412506.31,43606.445,35710.078,2288.5073 -7270,8948,16130,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,5.6686525,5.8119035,0,0,-1054.3521,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8705211,57.06,57.76,-9,-9,10,1,1,0,0,0,13,2,0,328,334920.47,46404.148,162575.88,0,1302.1401 -7271,8949,16131,-9,-9,-9,1,0,30,0,1,0,2,2,-9,1,3,6.7955122,6.6502852,0,0,0,-966.56042,0,2,2,2019,11,1,12,6,1,1,0,8.0111027,8.0111027,0,0,0,0,27,1,1,0,0,0,50.4,47.17,-9,-9,6.666666666666667,1,1,0,0,5,5,2,0,440,174069.36,252632.84,0,0,1966.83 -7272,8950,16132,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.1593451,7.2884507,0,0,-1063.2329,0,1,1,2019,15,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.4264007,7.3121462,48.21,50.73,-9,-9,5,1,1,0,0,0,9,3,1,2455,1122365,361169.72,608026.88,0,2000.6302 -7273,8951,16133,16134,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.6967664,7.8007264,0,46,0,-25.756559,0,3,3,2019,7,0,24,30,1,0,0,10.964206,10.964206,0,0,0,0,0,1,1,0,1.3012471,0,59.14,52.5,45.41,46.4,8.333333333333334,1,1,0,0,10,7,3,1,2961.5,1158360.8,390285.72,405641.19,0,2197.1462 -7273,8951,16134,16133,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8678079,6.80301,9,9,46.039185,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1158547,6.4909229,45.41,46.4,59.14,52.5,10,1,1,0,0,0,7,3,1,2961.5,1158360.8,390285.72,405641.19,0,2197.1462 -7274,8952,16135,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.1105471,7.8239989,0,0,0,-935.50732,0,2,2,2019,16,5,39,42,1,5,0,9.7658033,9.7658033,0,0,0,0,0,0,0,0,0,0,37.57,51.67,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,173,300796.75,159589.06,0,0,1486.1536 -7275,8953,16136,-9,16138,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-970.77081,0,3,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,120,1,0,1,0,0,23.56,40.94,-9,-9,0,1,1,0,0,7,10,2,1,707,180522.81,0,0,0,640.49554 -7275,8954,16137,-9,16136,-9,1,0,19,0,0,1,2,0,0,1,2,0,5.978025,6.4373288,0,0,-1024.4918,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,14.5,1,0,1,6.5294561,0,31.75,56.27,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,273,169160.81,-5900.1523,0,0,796.63287 -7275,8955,16138,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,0,0,0,0,-873.89502,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,42.724625,0,0,1,0,1,0,0,23.33,20.77,-9,-9,3.333333333333333,1,1,0,0,10,10,1,1,623,499495.56,0,241629.47,0,630.42792 -7276,8956,16139,16140,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.2990818,8.5691614,0,1,-5,24.19968,-9,2,3,2019,11,0,35,0,1,2,0,12.698733,12.698733,0,0,0,0,0,0,0,0,4.160296,0,48,57,50,57,7,2,3,0,0,5,4,4,1,827.5,169724.3,61564.043,247829.09,183911.41,2662.04 -7276,8956,16140,16139,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,7.8249092,7.8519144,0,1,5,-71.113503,-9,-9,-9,2019,10,0,37,0,1,1,0,6.9831905,6.9831905,0,0,0,0,0,0,0,0,0,0,50,57,48,57,7,2,3,0,0,9,4,4,1,827.5,169724.3,61564.043,247829.09,183911.41,2662.04 -7277,8957,16141,16144,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.527338,8.6571646,0,6,-1,99.345627,0,-9,-9,2019,9,0,38,46,1,0,0,15.713945,15.713945,0,0,0,0,0,1,1,0,0,0,54.77,55.87,54.1,59.11,1.666666666666667,1,1,0,0,7,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 -7277,8957,16142,-9,16144,16141,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.9226,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 -7277,8957,16143,-9,16144,16141,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.7016,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 -7277,8957,16144,16141,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.2831416,7.5560374,0,6,1,69.218109,0,3,3,2019,8,0,25,20,1,0,0,6.7898169,6.7898169,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.77,55.87,10,1,1,0,0,7,11,4,1,1371.25,83124.555,-14864.091,0,0,2646.9175 -7278,8958,16145,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.646872,7.6393056,3.3838289,0,0,-1005.4874,0,2,2,2019,10,1,30,30,1,1,0,7.6181316,7.6181316,0,0,0,0,0,1,1,0,3.9230819,3.465986,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,330,237597.44,0,288915.84,25931.826,1989.2766 -7279,8959,16146,16147,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.9364033,7.3689694,9,2,39.145611,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3112726,7.8592873,56.29,52.37,53.83,42.64,8.333333333333334,1,1,0,0,7,7,4,1,3265.5,1547639.1,1043397.4,463639.88,0,2805.9048 -7279,8959,16147,16146,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.4678402,7.429914,9,-2,-68.979118,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4790416,53.83,42.64,56.29,52.37,8.333333333333334,1,1,0,0,6,7,4,1,3265.5,1547639.1,1043397.4,463639.88,0,2805.9048 -7280,8960,16148,-9,16149,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2784,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,542,-68331.75,22433.734,0,0,2185.7283 -7280,8960,16149,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.3281994,7.8639092,5.8922586,0,0,-999.34186,0,1,2,2019,13,2,17,18,1,2,0,12.66824,12.66824,0,0,0,0,2,1,1,0,6.0278597,0,50.43,51.02,-9,-9,8.333333333333334,1,1,0,0,9,13,3,0,542,-68331.75,22433.734,0,0,2185.7283 -7281,8961,16150,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.9312968,5.6517582,0,0,-983.62268,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.8091674,0,57.39,45.42,-9,-9,10,3,4,0,0,0,4,2,0,1276,-196428.89,-18683.506,0,0,-405.6767 -7281,8962,16151,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.5076952,5.4859619,0,0,-878.7923,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.2181478,0,47.66,53.55,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,104,-53415.059,0,0,0,537.78912 -7282,8963,16152,16153,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.1606264,9.0094643,0,12,-1,53.305195,0,3,3,2019,9,0,40,40,1,1,0,22.683966,22.683966,0,0,0,0,0,0,0,0,4.1093354,0,53,54,50.22,39.49,8,1,1,0,0,9,7,5,1,220,1537070,1662476.1,297812.91,98300.32,5939.8984 -7282,8963,16153,16152,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,9.1230726,8.8003788,0,12,1,83.697357,0,2,3,2019,16,4,45,42,1,4,0,24.76601,24.76601,0,0,0,0,0,0,0,0,0,0,50.22,39.49,53,54,5,1,1,0,0,6,7,5,1,220,1537070,1662476.1,297812.91,98300.32,5939.8984 -7283,8964,16154,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,8.9093008,8.8833809,0,0,-920.85742,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4492087,8.9453173,64.38,34.3,-9,-9,10,1,1,0,0,0,5,5,0,243,1322645.1,1173572.5,221070.5,0,5839.3984 -7284,8965,16155,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.1872873,8.0913286,0,0,0,-945.79767,0,2,2,2019,12,1,45,39,1,1,0,8.3403816,8.3403816,0,0,0,0,0,0,0,0,0,0,48.83,30.23,-9,-9,1.666666666666667,1,1,0,1,10,5,4,1,1037,145458.86,-26137.08,0,0,1827.6896 -7285,8966,16156,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.0368538,7.8726125,0,0,0,-981.6806,0,1,1,2019,12,0,39,39,1,0,0,10.724788,10.724788,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,275,-279851.06,29660.086,0,0,1334.0222 -7286,8967,16157,-9,16158,16159,1,0,21,0,1,0,1,1,-9,0,4,7.5151033,7.9368629,0,0,0,-1031.6106,-9,1,3,2019,8,0,36,0,1,0,1,5.7026992,5.7026992,0,0,0,0,0,1,1,0,0,0,45.85,61.26,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,460,242563.95,0,0,0,1718.4233 -7286,8968,16158,16159,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.7251301,9.2309656,0,8,-1,-89.184395,0,-9,-9,2019,12,0,31,28,1,0,0,28.373724,28.373724,0,0,0,0,2,1,1,0,1.8845817,0,42.37,48.08,42.85,51.08,6.666666666666667,1,1,0,0,9,13,5,1,532,689744,659635.25,0,0,3772.4961 -7286,8968,16159,16158,-9,-9,1,1,50,0,1,0,3,3,-9,0,2,7.6485019,7.7903233,0,8,1,30.58906,0,3,3,2019,13,1,30,40,1,1,0,7.8858604,7.8858604,0,0,0,0,0,1,1,0,0,0,42.85,51.08,42.37,48.08,5,1,1,0,0,9,13,5,1,532,689744,659635.25,0,0,3772.4961 -7286,8968,16160,-9,16158,16159,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.8784,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,532,689744,659635.25,0,0,3772.4961 -7287,8969,16161,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1011.6727,0,2,3,2019,17,5,0,30,3,5,0,0,0,0,0,0,0,2,1,0,1,0,0,44.25,50.64,-9,-9,5,1,1,1,0,9,12,1,0,483,316185.34,0,0,0,347.80713 -7288,8970,16162,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,8.5048733,8.9572306,0,0,-878.52802,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4381132,8.7752886,61.82,34.04,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1084,607340.06,244859.73,399092.25,0,3978.6973 -7289,8971,16163,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.2498031,6.2005563,0,0,-1078.0355,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.79722,6.2869906,51.83,57.2,-9,-9,10,1,1,0,0,0,1,2,1,878,-1201.4271,180719.88,170834.34,0,762.00781 -7290,8972,16164,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.3270845,8.3759117,0,0,-1030.5397,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5757589,8.3021917,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,4,1,124,398271.88,621061,225832.88,0,2082.8853 -7291,8973,16165,-9,16166,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.08722,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,2,0,1295,-89516.43,0,0,0,2603.3108 -7291,8973,16166,-9,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,0,6.1214814,6.5332446,0,0,-1117.0688,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.3588428,0,38.28,25.53,-9,-9,6.666666666666667,1,1,0,1,0,4,2,0,1295,-89516.43,0,0,0,2603.3108 -7291,8973,16167,-9,16166,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.444,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,1295,-89516.43,0,0,0,2603.3108 -7292,8974,16168,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1089.1442,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 -7292,8974,16169,-9,16168,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.61926,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 -7292,8974,16170,-9,16168,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-816.43573,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 -7292,8974,16171,-9,16168,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.31824,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,1714,-45065.043,0,0,0,1490.4539 -7293,8975,16172,16173,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.0578365,8.553997,0,4,1,-168.40553,0,2,1,2019,10,1,40,40,1,1,0,20.92993,20.92993,0,0,0,0,0,1,1,0,.63097101,0,49.04,55.86,41.85,56.37,8.333333333333334,1,1,0,0,10,13,4,1,1141.3334,126955.27,117109.23,208321.95,147924.27,2405.8762 -7293,8975,16173,16172,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,0,0,0,4,-1,12.523932,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.028294351,0,41.85,56.37,49.04,55.86,8.333333333333334,1,1,0,0,6,13,4,1,1141.3334,126955.27,117109.23,208321.95,147924.27,2405.8762 -7293,8975,16174,-9,16173,16172,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.85254,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1141.3334,126955.27,117109.23,208321.95,147924.27,2405.8762 -7294,8976,16175,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.634985,8.6584053,0,0,0,-1007.83,0,2,2,2019,7,1,37,37,1,1,0,18.173857,18.173857,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,797,4689.7944,193397.81,0,0,1820.1063 -7295,8977,16176,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,9.0905981,9.1124344,0,0,0,-944.68707,-9,-9,-9,2019,12,0,45,0,1,0,0,19.352165,19.352165,0,0,0,0,0,0,0,0,0,0,44.53,52.41,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,293,252934.61,62114.113,174262.09,124912.12,3006.9648 -7296,8978,16177,16180,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.4143677,7.4322443,0,19,-11,-28.564665,0,2,2,2019,10,0,28,25,1,0,0,8.3294945,8.3294945,0,0,0,0,0,0,0,0,0,0,51.77,58.57,51.83,57.2,8.333333333333334,1,1,0,0,5,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 -7296,8978,16178,-9,16177,16180,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.2555,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 -7296,8978,16179,-9,16177,16180,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.7606,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 -7296,8978,16180,16177,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.8718462,9.7291183,0,19,11,38.109348,0,2,2,2019,9,1,42,45,1,1,0,37.941299,37.941299,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.77,58.57,8.333333333333334,1,1,0,0,8,9,5,1,394.5,529601.75,435104.75,646926.75,348429.81,5619.9131 -7297,8979,16181,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.062068,8.9804869,7.6847849,0,0,-961.26331,0,2,2,2019,10,0,53,49,1,0,0,16.801291,16.801291,0,0,0,0,0,0,0,0,7.7314329,0,57.91,43.45,-9,-9,8.333333333333334,4,5,0,0,9,2,5,1,121,1585437.4,1343767.9,401117.63,0,4618.1211 -7298,8980,16182,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1022.9448,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,5.5203104,11.866191,0,0,1,1,0,0,0,55.69,20.5,-9,-9,5,1,1,0,0,0,2,2,0,489,-523994.34,0,44482.043,0,1594.9352 -7299,8981,16183,16184,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.672513,8.463232,47,1,18.059189,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7182088,8.6829472,57.48,47.92,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,749.5,2241884.5,1533666.1,538230.56,48870.414,5221.3281 -7299,8981,16184,16183,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.5639591,7.515286,47,-1,5.0892453,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4910712,57.16,56.15,57.48,47.92,10,1,1,0,0,3,13,4,1,749.5,2241884.5,1533666.1,538230.56,48870.414,5221.3281 -7300,8982,16185,16186,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,7.2106581,7.3237386,0,27,8,82.505295,0,2,2,2019,11,0,55,50,1,0,0,2.966476,2.966476,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.97,56.11,8.333333333333334,1,1,0,0,12,6,3,1,1319.5,-95196.797,41515.383,-1597.0488,0,1253.0828 -7300,8982,16186,16185,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,5.6205106,5.6797523,27,-8,16.781668,0,3,3,2019,11,0,0,25,3,0,0,0,0,0,0,0,0,0,1,1,0,2.5677431,5.4270964,47.97,56.11,54.2,57.49,5,1,1,1,0,11,6,3,1,1319.5,-95196.797,41515.383,-1597.0488,0,1253.0828 -7300,8983,16187,-9,16186,16185,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-991.13397,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,1213,-703539.88,0,0,0,0 -7300,8984,16188,-9,16186,16185,1,1,32,0,0,0,2,2,-9,0,4,7.9446626,8.3088512,0,0,0,-832.16223,-9,2,3,2019,11,1,48,0,1,1,1,7.8513904,7.8513904,0,0,0,0,0,1,1,0,0,0,32.48,63.44,-9,-9,5,1,1,0,0,7,6,4,1,447,257782.61,-45507.18,0,0,1466.0352 -7301,8985,16189,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.6207752,5.5005131,0,0,-811.92249,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.967648,5.9363942,51.17,36.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1045,120949.05,34450.699,135133.81,0,605.54633 -7302,8986,16190,-9,16191,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.0944,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 -7302,8986,16191,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,8.4873896,8.2086058,6.636951,0,0,-1021.3245,0,2,2,2019,9,0,38,36,1,0,0,15.271708,15.271708,0,0,0,0,0,1,1,0,6.5706673,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,9,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 -7302,8986,16192,-9,16191,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.4434,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 -7302,8986,16193,-9,16191,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.4803,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,672.5,-137505.86,-19262.121,0,0,2929.949 -7303,8987,16194,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,6.2811542,6.8028893,0,0,-848.95392,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.3852992,0,16.045437,0,1,1,0,.6520412,6.9365597,45.07,44.27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,697,155742.2,2010.3271,51448.664,0,1901.6289 -7304,8988,16195,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1066.4834,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,13,1,0,917,-74323.18,0,0,0,0 -7305,8989,16196,16197,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,0,0,0,12,1,-28.040676,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.5290647,0,60.29,52.11,57.16,56.15,8.333333333333334,2,3,1,0,0,9,5,0,466,156157.88,81037.563,0,0,4189.4683 -7305,8989,16197,16196,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.5192299,9.3821688,0,14,-1,29.105778,0,1,1,2019,8,0,52,52,1,0,0,28.557018,28.557018,0,0,0,0,0,0,0,0,5.1535268,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,9,9,5,0,466,156157.88,81037.563,0,0,4189.4683 -7306,8990,16198,-9,16199,16200,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.2587,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,2338.3333,-220343.03,0,0,0,1376.028 -7306,8990,16199,16200,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,0,0,0,1,3,0,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,74.84,29.19,8.333333333333334,1,1,0,0,0,4,1,0,2338.3333,-220343.03,0,0,0,1376.028 -7306,8990,16200,16199,-9,-9,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,1,-3,0,-9,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,74.84,29.19,54.2,57.49,8.333333333333334,1,1,1,0,0,4,1,0,2338.3333,-220343.03,0,0,0,1376.028 -7307,8991,16201,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6008663,8.5562105,0,0,0,-1124.5942,0,3,-9,2019,15,4,37,45,1,4,0,17.293444,17.293444,0,0,0,0,2,0,0,0,0,0,50.7,46.68,-9,-9,6.666666666666667,1,1,0,1,9,1,5,1,491,424432.81,609747.25,53966.875,36233.973,1214.6869 -7307,8992,16202,16203,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,7.790349,7.7310071,0,1,0,74.199104,-9,-9,-9,2019,7,0,40,0,1,0,0,7.533567,7.533567,0,0,0,0,2,0,0,0,0,0,49.12,57.28,35.46,47.42,8.333333333333334,1,1,0,0,0,1,4,1,1478.5,-138884.41,6488.0684,121826.92,125295.66,2717.1089 -7307,8992,16203,16202,16201,-9,1,1,19,0,0,0,2,2,-9,0,2,8.0710373,7.9310308,0,1,0,-41.743889,0,2,-9,2019,14,5,50,43,1,5,0,6.8467698,6.8467698,0,0,0,0,0,0,0,0,0,0,35.46,47.42,49.12,57.28,3.333333333333333,1,1,0,0,3,1,4,1,1478.5,-138884.41,6488.0684,121826.92,125295.66,2717.1089 -7308,8993,16204,16205,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.2330799,7.0026655,0,8,-5,30.463633,0,2,2,2019,15,4,11,9,1,4,0,12.463202,12.463202,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.51,54.51,6.666666666666667,1,1,0,0,10,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 -7308,8993,16205,16204,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.0177736,8.6937103,0,8,5,3.2633581,0,1,1,2019,8,0,50,56,1,0,0,22.166502,22.166502,0,0,0,0,0,1,1,0,1.4941511,0,48.51,54.51,51.73,58.82,8.333333333333334,1,1,0,0,10,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 -7308,8993,16206,-9,16204,16205,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.7499,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 -7308,8993,16207,-9,16204,16205,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1011.7253,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,658.25,276268.81,177115.34,145923.84,0,3224.1875 -7309,8994,16208,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,4.9816222,4.9762554,0,0,-973.16302,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,5.1775599,21.56,40.39,-9,-9,1.666666666666667,1,1,0,1,0,2,2,1,475,-137178.61,-16243.622,148061.17,48115.129,634.26685 -7310,8995,16209,-9,16212,16211,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-932.85437,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,.4481177,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 -7310,8995,16210,-9,16212,16211,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.16296,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 -7310,8995,16211,16212,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.8424616,8.9768648,0,24,1,-78.130676,0,3,2,2019,14,3,38,37,1,3,0,18.998432,18.998432,0,0,0,0,0,1,1,0,0,0,49.97,53.99,56.88,39.03,6.666666666666667,1,1,0,1,13,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 -7310,8995,16212,16211,-9,-9,1,0,47,0,2,0,1,1,-9,0,2,7.3548865,7.2554088,0,30,-1,28.549412,0,2,1,2019,8,0,13,10,1,0,0,13.103203,13.103203,0,0,0,0,0,1,1,0,1.9337343,0,56.88,39.03,49.97,53.99,6.666666666666667,1,1,0,0,13,7,4,1,546.75,129468.38,74001.203,298535.19,138697.81,3903.9917 -7311,8996,16213,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.568892,6.6160436,0,0,-1106.7185,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,.76748937,6.8402629,54.34,50.92,-9,-9,0,1,1,0,0,0,6,2,1,453,650267.75,270411.53,-6564.0151,0,1809.6693 -7312,8997,16214,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,3,5.9809341,6.2705579,0,0,0,-894.21985,-9,2,3,2019,12,0,7,0,1,0,0,6.1759014,6.1759014,0,0,0,0,42,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,398,43544.051,13239.207,0,0,1429.5935 -7313,8998,16215,16216,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.3582239,8.3187561,0,11,0,-30.182148,-9,3,3,2019,10,0,40,0,1,1,0,10.356986,10.356986,0,0,0,0,0,1,1,0,4.221045,0,50,49,60.11,21.86,7,1,1,0,0,1,4,3,1,516,647686.94,442847.38,143972.95,0,2874.0854 -7313,8998,16216,16215,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,11,9,-2.2437592,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,6.6125536,0,0,1,1,0,0,0,60.11,21.86,50,49,10,1,1,0,0,0,4,3,1,516,647686.94,442847.38,143972.95,0,2874.0854 -7314,8999,16217,16218,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.7374544,8.5014057,0,8,-3,148.85078,0,1,1,2019,6,0,10,10,1,0,0,73.862274,73.862274,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,10,7,5,1,406.33334,1051215.8,475898.63,600440.5,152594.97,7275.1357 -7314,8999,16218,16217,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.3920946,9.447793,0,8,3,-78.805092,0,-9,-9,2019,10,0,43,50,1,0,0,31.409037,31.409037,0,0,0,0,0,1,1,0,6.2001538,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,406.33334,1051215.8,475898.63,600440.5,152594.97,7275.1357 -7314,8999,16219,-9,16217,16218,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.565,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,406.33334,1051215.8,475898.63,600440.5,152594.97,7275.1357 -7315,9000,16220,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9409862,8.2890778,5.0394073,0,0,-915.18683,0,3,3,2019,11,0,30,24,1,2,0,11.907042,11.907042,0,0,0,0,0,0,0,0,5.0711389,5.6002145,50,47,-9,-9,7,1,1,0,0,9,11,4,0,1192,-265495.13,42989.91,0,0,1284.9897 -7316,9001,16221,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.0160303,6.9827833,0,0,-976.45087,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6471391,7.1761975,53.62,46.84,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1091,-272964.94,193741.73,0,0,1827.5524 -7317,9002,16222,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,7.1385212,6.9675059,0,0,0,-989.45502,0,2,-9,2019,12,1,16,16,1,1,0,9.065959,9.065959,0,0,0,0,0,1,0,1,0,0,48.79,25.03,-9,-9,8.333333333333334,2,3,0,0,11,9,2,1,243,-104934.61,27049.152,0,0,1848.5988 -7317,9002,16223,-9,16222,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1047.9298,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,9,2,1,243,-104934.61,27049.152,0,0,1848.5988 -7318,9003,16224,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,4.6973252,4.6689301,0,0,0,-968.77026,0,2,3,2019,10,0,35,35,1,1,0,.26468951,.26468951,0,0,0,0,0,0,0,0,0,0,51,53,-9,-9,7,1,1,0,0,4,4,2,0,168,-31721.594,57933.301,0,0,2116.8098 -7318,9004,16225,-9,16224,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1000.0235,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,4,1,0,1201,0,0,0,0,-258.74631 -7318,9005,16226,-9,16224,-9,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1006.2732,1,2,-9,2019,12,0,0,32,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,3,4,1,0,1681,-353434.63,0,0,0,857.58734 -7319,9006,16227,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.7777195,8.8209209,0,0,0,-970.72552,0,3,2,2019,10,0,45,45,1,0,0,15.848648,15.848648,0,0,0,0,0,0,0,0,6.2952824,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,264,1944764.5,902125.63,397430.81,0,3451.6387 -7319,9007,16228,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.1748562,8.2619495,0,0,0,-1090.0906,0,-9,-9,2019,12,0,37,37,1,0,0,10.415525,10.415525,0,0,0,0,0,0,0,0,0,0,47.2,58.1,-9,-9,5,3,4,0,0,11,9,4,1,1800,1100945.6,891819.5,75004.031,-5688.5967,1504.5359 -7320,9008,16229,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,0,0,0,0,0,-972.74084,0,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,15.08,66.28,-9,-9,1.666666666666667,1,1,1,1,0,1,1,0,541,0,0,0,0,622.6673 -7321,9009,16230,16231,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.9018936,7.826427,0,2,-1,23.300348,0,-9,-9,2019,2,0,37,50,1,0,0,9.8274908,9.8274908,0,0,0,0,0,0,0,0,0,0,54.2,57.49,44.83,57.81,10,1,1,0,0,2,9,5,0,629,-311337.13,0,0,0,2846.0405 -7321,9009,16231,16230,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4069872,8.4750719,0,2,1,-5.1539822,0,2,2,2019,12,1,40,40,1,1,0,13.398648,13.398648,0,0,0,0,0,0,0,0,0,0,44.83,57.81,54.2,57.49,8.333333333333334,1,1,0,0,6,9,5,0,629,-311337.13,0,0,0,2846.0405 -7322,9010,16232,16233,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,2.7979996,5.355186,4.860043,2,0,-21.597761,0,2,2,2019,17,5,16,16,1,5,0,.12846681,.12846681,0,0,0,0,0,1,1,0,5.0394239,0,40.1,54.56,40.35,53.17,5,1,1,0,0,4,9,2,0,217.5,139490.5,0,0,0,2710.6665 -7322,9010,16233,16232,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,6.7814722,6.7416778,0,2,0,-29.421688,0,-9,-9,2019,9,0,32,32,1,0,0,2.7008491,2.7008491,0,0,0,0,0,1,1,0,0,0,40.35,53.17,40.1,54.56,8.333333333333334,1,1,0,0,10,9,2,0,217.5,139490.5,0,0,0,2710.6665 -7322,9011,16234,-9,16232,-9,1,1,19,0,1,1,2,0,0,0,4,0,5.0102477,5.2388473,0,0,-1003.9183,-9,2,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.0405493,0,46.92,60.71,-9,-9,8.333333333333334,1,1,0,1,0,9,2,0,62,62601.387,0,0,0,320.25586 -7323,9012,16235,16236,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.734376,6.6937509,0,8,1,29.493317,0,2,2,2019,9,0,16,13,1,0,0,5.3499126,5.3499126,0,0,0,0,0,1,1,0,0,0,39.54,54.5,39.51,45.46,10,1,1,0,0,2,5,3,1,1287.3334,132568.34,94916.047,110245.05,0,1453.0021 -7323,9012,16236,16235,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.1461153,7.9484568,0,8,-1,71.607468,0,2,2,2019,14,2,41,40,1,2,0,7.9704108,7.9704108,0,0,0,0,0,1,1,0,0,0,39.51,45.46,39.54,54.5,5,1,1,0,0,9,5,3,1,1287.3334,132568.34,94916.047,110245.05,0,1453.0021 -7323,9012,16237,-9,16235,16236,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1124.6552,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,3,1,1287.3334,132568.34,94916.047,110245.05,0,1453.0021 -7323,9013,16238,-9,16235,16236,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1079.7885,-9,2,2,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,49.8,54.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,296,242580.03,0,0,0,-26.118555 -7324,9014,16239,16242,-9,-9,1,0,47,0,2,0,3,3,-9,1,3,0,0,0,22,-10,0,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.65,39.74,50,49,5,2,3,0,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 -7324,9014,16240,-9,16239,16242,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1020.3004,-9,3,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 -7324,9014,16241,-9,16239,16242,1,1,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-994.38196,-9,3,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,46.97,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 -7324,9014,16242,16239,-9,-9,1,1,57,0,2,0,3,3,-9,0,3,0,0,0,22,10,0,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,51.65,39.74,7,2,3,1,0,0,8,1,0,1030.5,-42492.883,0,0,0,2161.4534 -7324,9015,16243,-9,16239,16242,1,1,28,0,2,0,3,3,-9,0,4,0,0,0,0,0,-922.72919,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,1,0,0,8,1,0,1085,0,0,0,0,390.66922 -7325,9016,16244,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,1,8.3600864,8.0962286,0,0,0,-1062.5057,0,-9,-9,2019,24,8,42,37,1,8,0,11.916408,11.916408,0,0,0,0,0,1,1,0,2.0655327,0,32.57,35.7,-9,-9,1.666666666666667,1,1,0,1,11,9,5,0,1872,-227791.81,20076.721,0,0,2382.5161 -7326,9017,16245,16246,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.4715519,8.6338348,5.8325706,25,0,18.369377,0,1,3,2019,7,0,40,40,1,0,0,15.679927,15.679927,0,0,0,0,0,1,1,0,6.4072151,0,42.46,41.62,51.56,50.61,6.666666666666667,1,1,0,0,13,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 -7326,9017,16246,16245,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.0679121,7.971417,0,25,0,39.396431,0,2,1,2019,12,0,28,28,1,0,0,12.333767,12.333767,0,0,0,0,0,1,1,0,0,0,51.56,50.61,42.46,41.62,6.666666666666667,1,1,0,0,13,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 -7326,9017,16247,-9,16246,16245,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.47522,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 -7326,9017,16248,-9,16246,16245,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.8544,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,2.0263317,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1173.25,256286.13,10496.635,347807,196293.19,3821.6001 -7327,9018,16249,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,7.1377621,7.3579516,0,0,-962.15668,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.2567081,7.6971107,39.97,44.05,-9,-9,5,1,1,0,0,4,2,3,1,627,985779.06,651327.63,102197.52,64399.945,877.33832 -7328,9019,16250,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.2499819,8.2740812,0,0,0,-1014.2667,0,3,2,2019,3,0,23,42,1,0,0,20.382221,20.382221,0,0,0,0,2,0,0,0,4.6789284,0,57.16,56.15,-9,-9,10,1,1,0,0,12,10,4,1,499,-291340.97,135847.25,0,0,2104.7444 -7329,9020,16251,16252,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4270997,7.3104095,8,0,-33.02058,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.056922,7.5310473,58.79,41.84,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,423,804493.13,240536.34,556746.56,0,4912.9087 -7329,9020,16252,16251,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.4989309,6.3670044,8,0,14.025666,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0880003,6.4837537,57.06,57.76,58.79,41.84,10,1,1,0,0,0,11,3,1,423,804493.13,240536.34,556746.56,0,4912.9087 -7330,9021,16253,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.6323977,7.7506638,6.8359118,0,0,-980.31305,0,3,1,2019,4,0,22,21,1,0,0,11.253075,11.253075,0,0,0,0,2,0,0,0,.0048582722,6.5548372,58.87,37.89,-9,-9,10,4,2,0,0,7,8,3,1,400,790626.13,264121.56,508685.84,0,998.00476 -7331,9022,16254,16255,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.2432604,5.2110872,56,0,2.0170617,0,3,3,2019,9,0,0,35,4,0,0,0,0,0,0,0,0,120,1,1,0,5.0041108,5.5663853,48.29,47.89,68.23999999999999,20.26,5,1,1,0,0,13,2,2,1,713.5,-35757.363,88646.016,0,0,1593.4644 -7331,9022,16255,16254,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,5.1126924,5.011117,56,9,-26.135221,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,208.00566,0,0,1,1,0,4.8122125,4.8693056,68.23999999999999,20.26,48.29,47.89,1.666666666666667,1,1,0,0,9,2,2,1,713.5,-35757.363,88646.016,0,0,1593.4644 -7332,9023,16256,16258,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.4298387,7.5227399,27,15,-86.706184,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0746875,33.78,26.64,50.03,52.62,5,1,1,0,0,0,7,2,1,375,722865.5,295845.5,369462.72,0,1777.7656 -7332,9023,16257,-9,16258,16256,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-970.87714,-9,3,3,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,0,0,45.11,36.37,-9,-9,3.333333333333333,4,2,0,0,1,7,2,1,375,722865.5,295845.5,369462.72,0,1777.7656 -7332,9023,16258,16256,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,0,0,0,25,-15,-51.221878,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,33.78,26.64,10,2,3,0,0,0,7,2,1,375,722865.5,295845.5,369462.72,0,1777.7656 -7332,9024,16259,-9,16258,16256,1,1,21,0,0,1,2,0,0,0,3,0,3.6301095,3.7819841,0,0,-1036.7626,-9,3,3,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,7,1,1,0,3.6110692,0,34.55,59.61,-9,-9,8.333333333333334,4,2,0,0,0,7,2,1,246,212127.77,0,0,0,799.61072 -7333,9025,16260,-9,16262,16263,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5321,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 -7333,9025,16261,-9,16262,16263,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.48389,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 -7333,9025,16262,16263,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,7.0616822,6.9634366,0,8,-5,99.243584,0,-9,-9,2019,7,0,16,0,1,0,0,8.8618689,8.8618689,0,0,0,0,0,1,1,0,0,0,57.16,56.15,29.15,58.41,8.333333333333334,1,1,0,0,6,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 -7333,9025,16263,16262,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.5636044,8.5820456,0,8,5,-161.22771,0,-9,-9,2019,12,0,40,40,1,0,0,13.707152,13.707152,0,0,0,0,0,1,1,0,0,0,29.15,58.41,57.16,56.15,8.333333333333334,1,1,0,0,12,6,4,1,1736.25,405072.19,26146.68,128906.33,86118.633,3110.5767 -7334,9026,16264,16266,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.8838816,8.9070587,0,2,-7,-55.961277,-9,-9,-9,2019,6,0,37,0,1,0,0,18.661047,18.661047,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,10,1,1,0,0,9,12,5,1,753.33331,658703.13,437427.28,401345.97,80523.367,4579.0596 -7334,9026,16265,-9,16264,16266,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.16699,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,753.33331,658703.13,437427.28,401345.97,80523.367,4579.0596 -7334,9026,16266,16264,-9,-9,1,1,42,1,1,0,2,2,-9,0,5,8.9812984,8.9505434,0,2,7,40.663231,0,2,1,2019,8,0,40,40,1,0,0,18.065821,18.065821,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,10,12,5,1,753.33331,658703.13,437427.28,401345.97,80523.367,4579.0596 -7335,9027,16267,16268,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,6.7711358,7.6806326,7.1242151,50,0,17.376596,0,3,3,2019,11,0,8,10,1,0,0,18.218988,18.218988,0,0,0,0,0,1,1,0,3.6418734,7.1121621,53.75,54.92,51.73,58.82,8.333333333333334,1,1,0,0,9,2,4,1,825.5,2069714,1404829.8,405626.19,0,3398.4971 -7335,9027,16268,16267,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.6096244,7.7476749,50,0,21.014423,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.1688361,7.7518873,51.73,58.82,53.75,54.92,8.333333333333334,1,1,0,0,0,2,4,1,825.5,2069714,1404829.8,405626.19,0,3398.4971 -7336,9028,16269,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,5.9396329,6.150907,0,0,-1059.8329,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,2.7626109,12.719856,52.544159,0,1,1,0,0,6.0179768,61.04,42.09,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,64,115406.7,-21289.322,174863.53,0,1755.172 -7337,9029,16270,-9,16271,-9,1,0,25,0,0,0,2,2,1,0,5,6.4458947,6.7440872,0,0,0,-986.80109,-9,3,-9,2019,12,1,10,0,1,1,1,9.1770372,9.1770372,0,0,0,0,0,1,1,0,0,0,44.68,56.71,-9,-9,5,2,3,0,0,5,2,2,0,370,-52101.813,52805.355,0,0,564.52832 -7337,9030,16271,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.06531,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,32.92,-9,-9,5,2,3,1,0,0,2,1,0,203,139707.08,129201.27,170477.88,89953.68,719.32489 -7337,9031,16272,-9,16271,-9,1,1,24,0,0,0,1,1,-9,0,3,7.7959433,7.922874,0,0,0,-1166.097,0,3,-9,2019,6,0,40,0,1,0,1,6.767077,6.767077,0,0,0,0,0,1,1,0,0,0,59.46,46.99,-9,-9,8.333333333333334,2,3,0,0,6,2,3,0,338,-19571.939,-52461.668,0,0,825.82886 -7338,9032,16273,16276,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.3226633,8.0977001,0,2,1,95.686592,-9,-9,-9,2019,10,0,36,0,1,1,0,9.2878189,9.2878189,0,0,0,0,0,1,1,0,0,0,48,58,57.16,56.15,7,4,1,0,0,1,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 -7338,9032,16274,-9,16276,16273,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.43231,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 -7338,9032,16275,-9,16276,16273,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.24445,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 -7338,9032,16276,16273,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.1865401,7.1169963,0,2,-1,-30.200941,0,-9,-9,2019,10,1,25,23,1,1,0,5.5947323,5.5947323,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48,58,8.333333333333334,1,1,0,0,9,5,3,1,661,5278.5225,-43239.973,0,0,2248.0005 -7339,9033,16277,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.3154707,6.3100348,0,0,-1055.4097,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,2.6648583,.49108294,23.585865,0,1,1,0,0,6.3651118,27.24,23.07,-9,-9,10,1,1,0,0,0,8,2,1,294,275893.56,-10448.753,338405.69,0,2065.4158 -7340,9034,16278,16279,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,8.1396742,8.1753044,0,3,-4,35.282349,0,2,-9,2019,11,2,43,39,1,2,0,12.499053,12.499053,0,0,0,0,2,0,0,0,.99295932,0,28.11,52.68,34.29,49.1,8.333333333333334,1,1,0,1,9,9,4,1,281,494922.94,39081.543,645910.75,180784.13,2111.3794 -7340,9034,16279,16278,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.7487869,7.4790602,0,3,4,-10.200497,0,-9,-9,2019,13,1,42,0,1,1,0,6.2088771,6.2088771,0,0,0,0,0,0,0,0,0,0,34.29,49.1,28.11,52.68,6.666666666666667,1,1,0,0,1,9,4,1,281,494922.94,39081.543,645910.75,180784.13,2111.3794 -7341,9035,16280,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-906.10126,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,40.15,-9,-9,8.333333333333334,3,4,1,0,5,4,1,1,1149,141432.86,0,0,0,-108.26599 -7342,9036,16281,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.0645752,7.8228111,0,0,-1102.2771,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1911511,7.7548351,52.27,57.22,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,638,912219.19,580004.44,292478.09,0,2217.2153 -7343,9037,16282,16283,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.9407272,9.0800285,0,23,1,-77.75415,0,3,-9,2019,11,1,35,40,1,1,0,31.462805,31.462805,0,0,0,0,0,0,0,0,0,0,49.28,44.66,41.17,59.31,8.333333333333334,1,1,0,0,9,2,5,1,595,300583.34,80906.258,140820.67,50954.414,5170.7637 -7343,9037,16283,16282,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.0809307,8.7967291,0,23,-1,-53.559067,0,3,2,2019,12,0,38,37,1,0,0,19.329815,19.329815,0,0,0,0,0,0,0,0,3.1815319,0,41.17,59.31,49.28,44.66,6.666666666666667,1,1,0,0,9,2,5,1,595,300583.34,80906.258,140820.67,50954.414,5170.7637 -7344,9038,16284,16289,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,8.2927132,7.8470259,0,8,3,63.267529,0,2,2,2019,8,0,35,35,1,0,0,9.6849203,9.6849203,0,0,0,0,0,1,0,1,0,0,49.63,54.22,54.79,55.86,8.333333333333334,1,1,0,0,8,12,3,0,1039,157938,13143.422,0,0,3418.5598 -7344,9038,16285,-9,16289,16284,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1129.9712,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 -7344,9038,16286,-9,16289,16284,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.91699,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 -7344,9038,16287,-9,16289,16284,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1124.5275,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 -7344,9038,16288,-9,16289,16284,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1060.7758,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,1039,157938,13143.422,0,0,3418.5598 -7344,9038,16289,16284,-9,-9,1,0,38,0,4,0,1,1,-9,0,4,5.9223604,6.0629787,0,8,-3,-58.451603,0,2,2,2019,6,0,7,5,1,0,0,7.3340697,7.3340697,0,0,0,0,0,1,0,1,2.7423716,0,54.79,55.86,49.63,54.22,8.333333333333334,1,1,0,0,3,12,3,0,1039,157938,13143.422,0,0,3418.5598 -7345,9039,16290,16291,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,5,-2,-50.683037,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,51.02,52.22,7,1,1,0,0,0,13,3,1,626,1313847.5,529943.75,132273.41,0,2925.6572 -7345,9039,16291,16290,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.7333922,7.8357458,5,2,-54.155289,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,26.834053,0,0,1,1,0,1.5275033,7.7432208,51.02,52.22,51,46,8.333333333333334,1,1,0,0,0,13,3,1,626,1313847.5,529943.75,132273.41,0,2925.6572 -7346,9040,16292,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.1817183,7.4123945,0,0,-1084.0005,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9275517,58.57,24.99,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,361,175655.34,0,99588.852,0,1145.4207 -7347,9041,16293,-9,16294,16295,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.35522,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 -7347,9041,16294,16295,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,0,0,0,8,-13,-68.117844,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,38.58,48.57,7,4,5,0,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 -7347,9041,16295,16294,-9,-9,1,1,43,1,3,0,3,3,-9,0,3,6.7238097,6.3895898,0,13,13,-106.88632,0,3,2,2019,15,4,10,24,1,4,0,9.6892462,9.6892462,0,0,0,0,0,1,1,0,0,0,38.58,48.57,48,57,5,4,5,0,1,10,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 -7347,9041,16296,-9,16294,16295,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.9852,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 -7347,9041,16297,-9,16294,16295,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-877.89801,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,5,-9,0,0,6,2,0,553.59998,222619.53,0,88137.109,47560.758,1879.439 -7348,9042,16298,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,6.3467417,6.8728781,0,0,-1033.0824,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6496387,53.35,51.14,-9,-9,10,1,1,0,0,0,11,2,0,739,-300786.66,159171.52,0,0,1612.1379 -7349,9043,16299,16300,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.1716413,8.9139557,0,6,2,-71.824394,0,-9,-9,2019,10,0,30,0,1,0,0,31.214922,31.214922,0,0,0,0,0,0,0,0,5.3670082,0,67.19,35.11,66.37,38.36,6.666666666666667,1,1,0,0,5,4,5,1,886.5,1197606.4,309393,244418.22,0,8300.8281 -7349,9043,16300,16299,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.1336632,7.104598,6,-2,-126.99191,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,9.4269381,6.9233985,66.37,38.36,67.19,35.11,10,1,1,0,0,0,4,5,1,886.5,1197606.4,309393,244418.22,0,8300.8281 -7350,9044,16301,16302,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,7.5764484,7.8038416,0,36,8,-9.6089487,0,3,3,2019,10,2,42,42,1,2,0,5.1276417,5.1276417,0,0,0,0,0,0,0,0,0,0,65.54000000000001,11.97,43.09,57.04,6.666666666666667,1,1,0,0,8,12,4,1,681.5,268984.13,0,130905.91,0,2348.5859 -7350,9044,16302,16301,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9035892,7.9194136,0,36,-8,-14.648548,0,3,3,2019,10,1,35,35,1,1,0,8.070343,8.070343,0,0,0,0,14.5,0,0,0,0,0,43.09,57.04,65.54000000000001,11.97,10,1,1,0,0,8,12,4,1,681.5,268984.13,0,130905.91,0,2348.5859 -7351,9045,16303,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.9570971,7.494987,0,0,-1013.6854,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,14.186175,0,0,1,1,0,0,6.9650354,53,46,-9,-9,8,1,1,0,0,0,2,3,1,1158,524339.13,396644,151761.89,0,1401.16 -7352,9046,16304,-9,-9,-9,1,1,46,0,0,0,2,2,1,1,2,0,0,0,0,0,-928.99469,-9,2,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,120,1,0,1,0,0,14.91,35.1,-9,-9,0,1,1,0,1,2,12,1,0,401,-65916.047,0,0,0,134.1423 -7353,9047,16305,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,4,8.7793827,8.7827082,0,0,0,-949.10046,-9,1,1,2019,16,5,40,0,1,5,0,20.198788,20.198788,0,0,0,0,0,0,0,0,0,0,27.81,65.69,-9,-9,8.333333333333334,1,1,0,0,0,8,5,0,599,69023.664,83624.852,0,0,3287.7896 -7354,9048,16306,16307,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.3324804,8.3352289,7,16,-131.48831,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.783433,8.1410093,60.29,52.11,43.92,62.31,8.333333333333334,1,1,0,0,0,5,4,1,873,1065409.5,842688.88,175890.59,0,5980.2671 -7354,9048,16307,16306,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,0,0,0,7,-16,-219.26732,0,2,2,2019,18,7,0,30,3,7,0,0,0,0,0,0,0,14.5,1,1,0,2.2930982,0,43.92,62.31,60.29,52.11,8.333333333333334,1,1,0,0,8,5,4,1,873,1065409.5,842688.88,175890.59,0,5980.2671 -7355,9049,16308,-9,16309,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5417,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,993,599153,323184.94,115150.44,33194.645,2515.0176 -7355,9049,16309,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.7118502,8.6589222,5.7341642,0,0,-829.97968,0,2,2,2019,9,0,41,45,1,0,0,17.407537,17.407537,0,0,0,0,0,1,1,0,6.1131325,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,9,12,5,1,993,599153,323184.94,115150.44,33194.645,2515.0176 -7356,9050,16310,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.2317934,7.1634908,0,0,-981.71802,0,3,3,2019,9,0,0,37,4,0,0,0,0,1,0,0,0,0,1,1,0,7.7744651,7.0809989,36.32,44.1,-9,-9,6.666666666666667,1,1,0,0,8,8,3,1,231,471884.34,325823.91,304486.09,0,1339.0873 -7357,9051,16311,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1042.5864,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,0,1,1,0,0,0,8,1,1,184,0,0,0,0,1544.8827 -7358,9052,16312,16313,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.8489571,6.4216833,6,3,99.852882,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8903942,57.16,56.15,38.58,36.13,10,1,1,0,0,0,12,2,1,2038,357619,252397.78,152572.97,0,2422.6147 -7358,9052,16313,16312,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.5784907,5.6243496,6,-3,46.664993,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,4.9004102,0,0,1,1,0,5.7646756,5.9023981,38.58,36.13,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,2038,357619,252397.78,152572.97,0,2422.6147 -7359,9053,16314,16317,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,8.4306536,8.6471233,0,11,3,-47.956291,0,2,3,2019,13,4,27,28,1,4,0,17.795164,17.795164,0,0,0,0,99,1,1,0,0,0,47.31,39.47,29.46,59.39,6.666666666666667,1,1,0,0,13,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 -7359,9053,16315,-9,16314,16317,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.8656,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 -7359,9053,16316,-9,16314,16317,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.36493,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 -7359,9053,16317,16314,-9,-9,1,1,42,0,2,0,2,2,-9,1,3,8.5442648,8.6335182,0,11,-3,69.813698,0,3,1,2019,16,5,22,26,1,5,0,22.827517,22.827517,0,0,0,0,74.5,1,1,0,0,0,29.46,59.39,47.31,39.47,5,1,1,0,0,13,9,4,1,1076.25,712283.81,553830.94,0,0,4478.7524 -7360,9054,16318,16321,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.6680236,7.7617621,0,11,4,-60.565903,0,-9,3,2019,12,0,39,36,1,0,0,6.4087887,6.4087887,0,0,0,0,0,1,1,0,0,0,46.39,52.95,40.12,56.01,8.333333333333334,1,1,0,0,9,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 -7360,9054,16319,-9,16321,16318,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.1382,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 -7360,9054,16320,-9,16321,16318,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-837.40088,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,1,0,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 -7360,9054,16321,16318,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9841824,7.9136672,0,11,-4,23.655449,0,3,2,2019,13,2,39,0,1,2,0,8.3851871,8.3851871,0,0,0,0,2,1,1,0,0,0,40.12,56.01,46.39,52.95,6.666666666666667,1,1,0,0,1,12,3,0,695.5,321076.13,141279.61,34078.238,0,2374.4424 -7361,9055,16322,16323,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.200779,8.4823971,0,6,2,-29.583595,0,-9,-9,2019,11,0,38,38,1,0,0,10.215837,10.215837,0,0,0,3.4656577,0,0,0,0,5.8971477,0,55.19,54.26,47.32,49.99,8.333333333333334,1,1,0,0,9,7,4,1,2725,318929.28,63229.148,322128.75,0,2050.2454 -7361,9055,16323,16322,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5525761,7.6185136,0,35,-2,-113.45785,0,3,2,2019,16,4,27,27,1,4,0,6.210114,6.210114,0,0,0,0,0,0,0,0,4.2878747,0,47.32,49.99,55.19,54.26,6.666666666666667,1,1,0,0,9,7,4,1,2725,318929.28,63229.148,322128.75,0,2050.2454 -7362,9056,16324,16325,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.4108324,8.5815125,52,-10,67.987007,0,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.0586214,8.5024233,50.78,35.96,67.94,30.64,8.333333333333334,1,1,0,0,13,7,4,1,1539.5,3408319.5,617822.75,2454185.8,93406.703,4011.2021 -7362,9056,16325,16324,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,6.8128495,6.7173953,52,10,-65.36705,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9515011,6.6421061,67.94,30.64,50.78,35.96,8.333333333333334,1,1,0,0,0,7,4,1,1539.5,3408319.5,617822.75,2454185.8,93406.703,4011.2021 -7363,9057,16326,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,5,0,3.7598639,3.7437208,0,0,-963.19867,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.949362,4.0827222,62,44.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,395,825867.94,44386.363,268951.53,0,990.70367 -7364,9058,16327,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,4.9268131,4.6379118,0,0,-1164.3193,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5334072,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,251,243822.53,52474.305,0,0,1242.317 -7365,9059,16328,16329,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.194562,8.0439787,0,34,-3,5.3313985,0,-9,-9,2019,9,0,38,42,1,0,0,10.140491,10.140491,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,531.5,121473.3,-280.99084,213239.72,0,3625.0532 -7365,9059,16329,16328,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0048418,8.6634274,0,35,3,71.495506,0,-9,-9,2019,10,0,56,40,1,0,0,13.374382,13.374382,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,3,4,0,0,10,6,5,1,531.5,121473.3,-280.99084,213239.72,0,3625.0532 -7366,9060,16330,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-951.21722,0,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,31.72,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1799,431413.75,0,111861.7,0,964.27301 -7367,9061,16331,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.0419402,6.9393229,0,0,0,-997.02258,0,2,2,2019,7,0,40,30,1,0,0,3.7175627,3.7175627,0,0,0,0,0,1,1,0,0,0,59.15,49.67,-9,-9,8.333333333333334,1,1,0,0,9,11,2,1,535,78377.414,45183.477,0,0,1366.8982 -7367,9061,16332,-9,-9,16331,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-962.46118,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,11,2,1,535,78377.414,45183.477,0,0,1366.8982 -7367,9061,16333,-9,-9,16331,1,0,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-957.16656,-9,-9,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,3,11,2,1,535,78377.414,45183.477,0,0,1366.8982 -7368,9062,16334,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6660347,8.5139265,0,0,0,-947.91351,0,2,2,2019,8,0,35,35,1,0,0,13.428076,13.428076,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,734,215569.84,349108.44,224552.97,97672.672,2032.835 -7368,9062,16335,-9,-9,16334,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-918.49182,1,-9,2,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,23.88,57.05,-9,-9,5,1,1,0,1,0,9,5,1,734,215569.84,349108.44,224552.97,97672.672,2032.835 -7369,9063,16336,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.459434,6.2507839,0,0,-972.31146,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.8303022,6.4984889,51.07,48.48,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,1083,532999.94,0,497122.44,0,1543.4315 -7370,9064,16337,16338,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,6.6032853,6.3443356,0,46,-4,-59.248436,0,3,2,2019,11,2,16,0,1,2,0,5.6569738,5.6569738,0,0,0,0,0,0,0,0,0,0,45.69,53.27,46.9,56.66,5,1,1,0,0,10,9,2,1,933,491832.31,332983.59,184504.84,0,922.28967 -7370,9064,16338,16337,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.117754,6.8279934,0,46,4,75.651611,0,3,-9,2019,13,1,40,50,1,1,0,2.6277907,2.6277907,0,0,0,0,0,0,0,0,0,0,46.9,56.66,45.69,53.27,3.333333333333333,1,1,0,0,10,9,2,1,933,491832.31,332983.59,184504.84,0,922.28967 -7371,9065,16339,16340,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4673548,8.2754984,5.7147837,6,2,-53.784023,0,2,2,2019,11,2,30,30,1,2,0,11.844908,11.844908,0,0,0,0,0,0,0,0,5.7893333,0,51.94,55.88,43.71,56.91,8.333333333333334,1,1,0,0,12,4,5,1,700,449647.13,324323.47,224954.59,0,2546.3516 -7371,9065,16340,16339,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1506653,8.4032736,0,6,-2,-87.042259,0,2,2,2019,11,2,30,45,1,2,0,16.475252,16.475252,0,0,0,0,2,0,0,0,3.7793276,0,43.71,56.91,51.94,55.88,8.333333333333334,1,1,0,0,12,4,5,1,700,449647.13,324323.47,224954.59,0,2546.3516 -7372,9066,16341,16343,-9,-9,1,0,70,1,0,0,1,1,-9,0,4,0,5.8199873,5.4359026,10,1,68.554405,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6447768,6.0071368,54.2,57.49,43.32,52.98,6.666666666666667,1,1,0,0,4,4,3,1,659,458666.22,160889.53,328687.38,0,4181.7529 -7372,9066,16342,-9,16341,16343,1,1,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-853.69171,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,4,3,1,659,458666.22,160889.53,328687.38,0,4181.7529 -7372,9066,16343,16341,-9,-9,1,1,69,1,0,0,1,1,-9,0,3,0,7.1731176,7.1358519,10,-1,213.47852,0,-9,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.0508304,43.32,52.98,54.2,57.49,3.333333333333333,1,1,0,0,6,4,3,1,659,458666.22,160889.53,328687.38,0,4181.7529 -7373,9067,16344,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.4475861,9.4363194,0,0,0,-904.47491,0,-9,-9,2019,9,0,65,50,1,0,0,22.267235,22.267235,0,0,0,0,0,0,0,0,4.2693257,0,45.46,61.87,-9,-9,6.666666666666667,1,1,0,0,4,8,5,0,522,404062.31,407651.56,0,0,4498.5229 -7373,9068,16345,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,6.9332185,6.9587684,0,0,0,-1016.8976,0,1,1,2019,7,0,70,65,1,0,0,2.1930928,2.1930928,0,0,0,0,0,0,0,0,.54496634,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,7,8,2,0,483,43509.91,28147.76,0,0,476.50247 -7374,9069,16346,16347,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,7.7972589,8.4373178,6.0075703,8,-4,32.937752,0,3,2,2019,12,1,18,37,1,1,0,13.509393,13.509393,1,0,0,0,0,1,1,0,2.5487194,5.6929493,53.99,26.78,45.32,33.51,8.333333333333334,1,1,0,0,9,7,3,1,289.5,1219904.5,651003.63,348841.25,7310.7568,2028.0167 -7374,9069,16347,16346,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.7180891,6.566236,8,4,54.854824,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.8192616,7.002008,45.32,33.51,53.99,26.78,6.666666666666667,1,1,0,0,6,7,3,1,289.5,1219904.5,651003.63,348841.25,7310.7568,2028.0167 -7375,9070,16348,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1205.2555,0,3,2,2019,27,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,25.77,44.42,-9,-9,0,1,1,1,1,0,13,1,0,139,-40094.84,-29158.936,53790.934,75181.461,1744.9165 -7376,9071,16349,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.72542,8.9150953,0,0,0,-933.0976,0,2,1,2019,15,5,41,40,1,5,0,20.136286,20.136286,0,0,0,0,0,0,0,0,2.5092974,0,42.95,57.28,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,1155,-9598.3652,194624.8,0,0,2342.4048 -7377,9072,16350,16352,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.571063,8.4511957,0,2,-6,-149.88147,0,-9,-9,2019,6,0,40,40,1,0,0,11.804114,11.804114,0,0,0,0,0,1,1,0,0,0,56.43,49.75,41.87,59.15,8.333333333333334,2,3,0,0,6,8,4,0,704.33331,231663.23,-14592.628,400908.41,184329.48,3503.8772 -7377,9072,16351,-9,16352,16350,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-916.0661,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,704.33331,231663.23,-14592.628,400908.41,184329.48,3503.8772 -7377,9072,16352,16350,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.0286331,8.269042,0,2,6,-.4232032,0,-9,-9,2019,12,1,38,0,1,1,0,8.6817751,8.6817751,0,0,0,0,0,1,1,0,0,0,41.87,59.15,56.43,49.75,8.333333333333334,2,3,0,0,9,8,4,0,704.33331,231663.23,-14592.628,400908.41,184329.48,3503.8772 -7378,9073,16353,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.422781,9.4144945,0,7,6,78.268242,0,2,1,2019,9,0,37,43,1,0,0,55.517662,55.517662,0,0,0,0,0,0,0,0,0,0,58.72,43.42,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,304,2009426.8,444251.03,596288.69,0,4625.4111 -7378,9074,16354,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.5773697,9.0054522,0,7,-6,23.031197,0,1,3,2019,10,0,37,50,1,0,0,18.045166,18.045166,0,0,0,0,0,0,0,0,3.3737314,0,54.2,57.49,58.72,43.42,8.333333333333334,1,1,0,0,8,9,5,1,377,74260.227,109552.15,322623.97,129717.99,3151.6169 -7378,9075,16355,-9,16353,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1085.9839,-9,1,-9,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1.8056245,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,614,28256.441,0,0,0,52.736153 -7379,9076,16356,16357,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,6.7858281,7.133862,0,8,4,-42.779274,0,2,2,2019,6,0,39,39,1,0,0,2.7916884,2.7916884,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.16,56.15,10,1,1,0,0,9,5,3,1,1283.5,1008624.2,486461.81,251864.17,0,1612.4053 -7379,9076,16357,16356,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8240547,7.7524419,0,8,-4,12.151656,0,2,3,2019,7,0,39,36,1,0,0,8.6566772,8.6566772,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.07,60.93,8.333333333333334,1,1,0,0,9,5,3,1,1283.5,1008624.2,486461.81,251864.17,0,1612.4053 -7379,9077,16358,-9,16357,16356,1,1,22,0,0,0,2,2,-9,0,5,7.3771853,7.3599396,0,0,0,-982.04156,0,2,3,2019,6,0,32,40,1,0,1,4.9841518,4.9841518,0,0,0,0,0,0,0,0,3.0025101,0,62.39,56.71,-9,-9,10,1,1,0,0,4,5,3,1,899,105360.23,-67974.977,0,0,1191.455 -7380,9078,16359,16362,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,11,-4,-58.506744,0,2,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.2266698,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,5,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 -7380,9078,16360,-9,16359,16362,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.9374,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 -7380,9078,16361,-9,16359,16362,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.82471,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 -7380,9078,16362,16359,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.8559284,8.60952,0,12,4,36.848854,0,2,2,2019,7,0,42,40,1,0,0,22.741648,22.741648,0,0,0,0,2,1,1,0,4.0406213,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,331.25,307135.13,208991.67,0,0,2967.5134 -7381,9079,16363,16364,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.76863,9.1311035,0,21,3,-17.196566,0,1,2,2019,11,2,44,2,1,2,0,18.611053,18.611053,0,0,0,0,0,1,1,0,0,0,43.73,59.7,54.37,54.8,8.333333333333334,1,1,0,0,9,12,5,0,1486,1019520.4,1029080.4,156253.5,70576.797,4960.3628 -7381,9079,16364,16363,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.7969675,8.7990427,0,21,-3,-101.43559,-9,2,1,2019,2,0,47,0,1,0,0,17.582884,17.582884,0,0,0,0,0,1,1,0,0,0,54.37,54.8,43.73,59.7,10,1,1,0,0,10,12,5,0,1486,1019520.4,1029080.4,156253.5,70576.797,4960.3628 -7381,9079,16365,-9,16363,16364,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.3135,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,0,1486,1019520.4,1029080.4,156253.5,70576.797,4960.3628 -7382,9080,16366,16367,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,7,-3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3769723,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,1,1,1265.5,325292.16,0,0,0,767.95203 -7382,9080,16367,16366,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,7,3,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9644706,0,57.16,56.15,55.36,51.57,10,1,1,0,0,8,7,1,1,1265.5,325292.16,0,0,0,767.95203 -7383,9081,16368,16369,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,32,-5,0,0,-9,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,5,1,1,733.5,616432.31,0,236477.97,0,1508.9823 -7383,9081,16369,16368,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,32,5,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,.4156841,0,0,1,1,0,0,0,54,46,51,46,7,1,1,0,0,0,5,1,1,733.5,616432.31,0,236477.97,0,1508.9823 -7384,9082,16370,-9,16371,16373,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.5553,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 -7384,9082,16371,16373,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6114426,8.8196688,0,14,2,-185.62846,0,-9,-9,2019,9,0,48,40,1,0,0,14.383901,14.383901,0,0,0,0,0,1,1,0,7.3604102,0,52.8,53.98,56.77,52.22,6.666666666666667,1,1,0,0,11,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 -7384,9082,16372,-9,16371,16373,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.25378,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 -7384,9082,16373,16371,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6908236,8.7064142,0,10,-2,-63.657951,0,-9,-9,2019,12,2,40,40,1,2,0,22.64291,22.64291,0,0,0,0,0,1,1,0,0,0,56.77,52.22,52.8,53.98,6.666666666666667,1,1,0,0,11,13,5,1,451.5,1419112.1,1313870.9,237631.64,48443.848,4858.0039 -7385,9083,16374,-9,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-910.52258,0,2,2,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,2.1615388,0,37,29,-9,-9,0,3,4,0,1,0,4,1,0,289,450393.72,0,0,0,187.18872 -7386,9084,16375,16376,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.867487,9.1944094,0,7,7,-50.725243,0,2,1,2019,11,0,40,30,1,0,0,26.483912,26.483912,0,0,0,.16434826,0,1,1,0,7.0546331,0,51.41,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 -7386,9084,16376,16375,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,9.0038404,9.3690786,0,7,-7,-66.409904,0,2,3,2019,6,0,20,22,1,0,0,47.526825,47.526825,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.41,56.15,10,1,1,0,0,8,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 -7386,9084,16377,-9,16376,16375,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1091.7211,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 -7386,9084,16378,-9,16376,16375,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1200.7102,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,582.5,625067.5,461396.81,273172.09,170315,6840.6875 -7387,9085,16379,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-952.92883,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,480,578422.38,0,149890.69,0,871.25098 -7388,9086,16380,-9,16381,16382,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6277,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,2096.6667,-36549.934,6768.0181,0,0,2181.4592 -7388,9086,16381,16382,-9,-9,1,0,34,1,1,0,3,3,-9,0,3,0,0,0,2,1,84.922623,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,50,57,8.333333333333334,1,1,0,0,5,4,3,0,2096.6667,-36549.934,6768.0181,0,0,2181.4592 -7388,9086,16382,16381,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.2278214,7.957407,0,2,-1,73.585632,0,-9,-9,2019,10,0,50,0,1,1,0,9.1074572,9.1074572,0,0,0,0,0,1,0,1,0,0,50,57,54.37,54.8,7,1,1,0,0,1,4,3,0,2096.6667,-36549.934,6768.0181,0,0,2181.4592 -7389,9087,16383,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.5100889,7.7870975,6.736671,0,0,-1112.1179,0,2,1,2019,11,2,12,16,1,2,0,19.321239,19.321239,0,0,0,0,0,1,1,0,0,7.0538011,42.61,54.85,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,1821.6666,429486.28,158720.19,179145.23,83315.172,1793.5815 -7389,9087,16384,-9,16383,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.6058,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1821.6666,429486.28,158720.19,179145.23,83315.172,1793.5815 -7389,9087,16385,-9,16383,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3763,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1821.6666,429486.28,158720.19,179145.23,83315.172,1793.5815 -7390,9088,16386,16387,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.1284494,8.7085943,0,17,-4,-41.721226,0,2,1,2019,16,5,21,40,1,5,0,41.371967,41.371967,0,0,0,0,0,1,1,0,0,0,24.6,64.69,40.06,58.7,8.333333333333334,2,3,0,0,9,8,5,1,347,1494479,270760.63,1679114.9,336505.63,5789.4434 -7390,9088,16387,16386,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9780197,9.3914967,0,17,4,28.052176,0,3,2,2019,5,0,35,38,1,0,0,25.989977,25.989977,0,0,0,0,0,1,1,0,3.4970403,0,40.06,58.7,24.6,64.69,8.333333333333334,2,3,0,0,8,8,5,1,347,1494479,270760.63,1679114.9,336505.63,5789.4434 -7390,9088,16388,-9,16386,16387,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.2716,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,347,1494479,270760.63,1679114.9,336505.63,5789.4434 -7391,9089,16389,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.6359234,7.78756,0,0,0,-1043.1079,0,3,3,2019,11,0,23,26,1,0,0,12.711064,12.711064,0,0,0,0,0,0,0,0,0,0,51.53,43.93,-9,-9,6.666666666666667,4,2,0,0,8,6,3,0,2827,149628.97,23444.838,185853.38,118867.55,844.80707 -7392,9090,16390,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.2141447,8.627614,6.9484501,0,0,-972.28082,-9,2,1,2019,6,1,37,0,1,1,0,11.941211,11.941211,0,0,0,0,0,1,1,0,7.5353894,0,57.98,34.53,-9,-9,8.333333333333334,1,1,0,1,8,10,5,1,1043,368446.84,667148.13,142504.38,55284.5,3207.7544 -7392,9091,16391,-9,16390,-9,1,1,18,0,0,1,2,0,-9,0,2,0,0,0,0,0,-817.44043,-9,1,-9,2019,23,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,27.1,51.52,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,439,154749.61,0,0,0,0 -7393,9092,16392,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7741103,7.5084181,0,0,0,-947.52893,0,2,2,2019,3,0,30,25,1,0,0,7.9899659,7.9899659,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,0,2,3,0,1,3,8,3,0,1543,320701.16,381650.06,0,0,1120.9185 -7394,9093,16393,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.856884,7.1220078,0,0,-916.51471,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,26.631023,10.552185,0,0,1,1,0,2.5728831,7.0501204,57.34,31.99,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,1173,473465.81,171011.19,584282.81,0,1491.4486 -7395,9094,16394,-9,16395,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.666,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,1471,272443.06,107254.98,0,0,885.8252 -7395,9094,16395,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,7.8840013,7.6096368,0,0,0,-1012.2879,0,-9,-9,2019,11,0,45,43,1,0,0,5.5438271,5.5438271,0,0,0,0,0,1,1,0,0,0,46.31,51.53,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,1471,272443.06,107254.98,0,0,885.8252 -7396,9095,16396,-9,16397,16398,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.4436,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,762.66669,108005.33,53031.539,0,0,5076.3203 -7396,9095,16397,16398,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.6810088,7.4065275,0,7,0,12.805792,0,2,2,2019,8,1,20,20,1,1,0,12.912023,12.912023,0,0,0,0,2,0,0,0,6.8696852,0,54.79,55.86,57.06,57.76,10,1,1,0,0,7,10,5,1,762.66669,108005.33,53031.539,0,0,5076.3203 -7396,9095,16398,16397,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,9.1845856,9.3384037,0,7,9,-131.68497,0,2,2,2019,7,0,40,37,1,0,0,28.53673,28.53673,0,0,0,0,0,0,0,0,4.4707208,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,9,10,5,1,762.66669,108005.33,53031.539,0,0,5076.3203 -7396,9096,16399,-9,16397,16398,1,0,19,1,1,0,2,2,-9,0,3,0,0,0,0,0,-893.87323,0,1,2,2019,21,6,0,27,3,6,1,0,0,0,0,0,0,0,0,0,0,.21781313,0,29.09,64.72,-9,-9,5,1,1,0,0,3,10,1,1,846,-85471.195,0,0,0,5.0646133 -7397,9097,16400,16401,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.1754847,9.1316433,0,6,-2,91.131882,0,1,1,2019,9,0,35,35,1,0,0,29.478727,29.478727,0,0,0,0,0,0,0,0,0,0,51.24,58.84,60.02,56.42,8.333333333333334,2,3,0,0,5,7,5,1,703.5,202455.2,500.73047,487819.09,281224.34,6746.7534 -7397,9097,16401,16400,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,9.2128601,9.0918407,0,6,2,85.107391,0,-9,-9,2019,6,0,43,50,1,0,0,31.653864,31.653864,0,0,0,0,0,0,0,0,1.9075763,0,60.02,56.42,51.24,58.84,10,1,1,0,0,8,7,5,1,703.5,202455.2,500.73047,487819.09,281224.34,6746.7534 -7398,9098,16402,16403,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,8.3108091,8.2943888,0,22,1,-149.0789,0,2,2,2019,9,0,39,39,1,0,0,11.631023,11.631023,0,0,0,0,0,0,0,0,0,0,46.32,53.44,47.32,49.99,5,1,1,0,1,13,7,4,0,768.5,148054.55,0,0,0,2363.073 -7398,9098,16403,16402,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,0,0,0,24,-1,52.343025,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,49.99,46.32,53.44,3.333333333333333,1,1,1,0,9,7,4,0,768.5,148054.55,0,0,0,2363.073 -7398,9099,16404,-9,16403,16402,1,0,20,0,0,0,2,2,-9,0,4,8.1231089,8.2584114,0,0,0,-1001.0682,0,2,2,2019,11,0,40,41,1,0,1,10.382631,10.382631,0,0,0,0,0,0,0,0,0,0,46.76,55.32,-9,-9,8.333333333333334,1,1,0,0,2,7,4,0,598,-227514.66,0,0,0,1703.4061 -7399,9100,16405,-9,-9,16407,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8235,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,1,0,464,49034.387,0,0,0,662.54346 -7399,9100,16406,-9,-9,16407,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.43842,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,464,49034.387,0,0,0,662.54346 -7399,9100,16407,-9,-9,-9,1,1,42,0,2,0,2,2,-9,1,1,0,0,0,0,0,-954.37537,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,20.97,24.53,-9,-9,3.333333333333333,1,1,0,0,0,5,1,0,464,49034.387,0,0,0,662.54346 -7400,9101,16408,16409,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.5271673,7.585773,0,8,9,173.71532,0,2,2,2019,16,6,27,32,1,6,0,7.4974866,7.4974866,0,0,0,0,0,1,1,0,0,0,30.71,49.36,51.17,49.39,8.333333333333334,1,1,0,0,6,5,4,0,1280,470160.44,454559.38,191864.22,43599.773,2139.0579 -7400,9101,16409,16408,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.3347664,8.2131786,0,8,0,147.6828,0,3,2,2019,11,0,40,40,1,0,0,10.320963,10.320963,0,0,0,0,0,1,1,0,0,0,51.17,49.39,30.71,49.36,6.666666666666667,1,1,0,1,7,5,4,0,1280,470160.44,454559.38,191864.22,43599.773,2139.0579 -7401,9102,16410,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.9589667,7.9363599,0,0,-1084.496,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8853841,60.29,52.11,-9,-9,10,1,1,0,0,11,2,3,1,630,479628.38,331270.81,107666.81,0,1875.5927 -7402,9103,16411,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.675602,8.5797491,0,0,0,-1102.0526,0,2,2,2019,15,4,39,38,1,4,0,18.758322,18.758322,0,0,0,0,2,0,0,0,0,0,42.77,35.75,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,468,169559.38,193176.72,192681.47,99045.359,1424.0679 -7403,9104,16412,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,9.5492592,9.6702938,0,0,0,-952.11444,0,2,2,2019,9,0,90,46,1,0,0,16.086502,16.086502,0,0,0,0,0,0,0,0,7.661571,0,49.04,55.86,-9,-9,5,1,1,0,0,8,8,5,0,974,30072.154,17734.67,0,0,4881.0039 -7404,9105,16413,16414,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.2339034,6.3057599,0,10,4,-29.794016,0,-9,-9,2019,10,0,70,70,1,0,0,.51959038,.51959038,1,0,0,0,0,0,0,0,3.7924907,0,55.89,45.9,43.34,52.75,8.333333333333334,1,1,0,0,12,5,2,1,571,-25829.484,90637.117,146479.25,0,504.99341 -7404,9105,16414,16413,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,44,-4,-4.5726886,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.34,52.75,55.89,45.9,8.333333333333334,1,1,0,0,7,5,2,1,571,-25829.484,90637.117,146479.25,0,504.99341 -7405,9106,16415,-9,-9,-9,1,0,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-990.56372,-9,-9,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,10,1,1,0,0,2,12,1,0,1485,-71742.883,0,0,0,-139.32831 -7406,9107,16416,-9,-9,-9,1,1,93,0,0,0,2,2,-9,0,3,0,7.1797647,7.0937433,0,0,-1034.9424,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,12.58441,0,0,1,1,0,0,7.0128217,66.72,27.26,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2682,562706.06,206837.14,60715.598,0,1365.2188 -7407,9108,16417,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,7.5579281,7.6616268,0,0,0,-949.12695,0,3,3,2019,21,9,30,40,1,9,0,8.7311535,8.7311535,0,0,0,0,0,1,1,0,0,0,35.76,20.17,-9,-9,1.666666666666667,1,1,0,1,6,9,3,1,570,27789.428,-68142.68,0,0,1065.5865 -7408,9109,16418,16419,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3612165,8.6710176,0,6,1,41.71526,0,2,2,2019,6,0,45,38,1,0,0,15.059718,15.059718,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.8,56.68,8.333333333333334,1,1,0,0,5,7,5,1,574.5,101758.62,15362.088,164509.69,183094,3936.7241 -7408,9109,16419,16418,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.370223,8.6087236,0,6,-1,37.783844,0,-9,-9,2019,6,0,38,51,1,0,0,11.875201,11.875201,0,0,0,0,0,0,0,0,3.1084671,0,49.8,56.68,48.28,60.18,8.333333333333334,1,1,0,0,6,7,5,1,574.5,101758.62,15362.088,164509.69,183094,3936.7241 -7409,9110,16420,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.1649971,7.1261678,0,0,-1052.9343,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.5593724,60.99,44.82,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,1809,917664.44,234593.39,660344,0,2421.134 -7410,9111,16421,16422,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,0,0,0,4,-11,-93.840965,0,-9,-9,2019,4,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,0,4.4932642,0,57.06,57.76,56.35,48.33,8.333333333333334,1,1,1,0,5,9,4,1,958,953097.13,603683.81,339604.13,48611.289,2130.5879 -7410,9111,16422,16421,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4261551,8.1739588,0,4,11,2.2336268,0,2,3,2019,10,0,25,24,1,0,0,19.143486,19.143486,0,0,0,0,0,0,0,0,3.0081627,0,56.35,48.33,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,958,953097.13,603683.81,339604.13,48611.289,2130.5879 -7410,9112,16423,-9,16421,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1010.3203,-9,1,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,80,-322687.56,0,0,0,0 -7411,9113,16424,16425,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.4752979,7.3648853,9,7,14.946527,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8523955,7.4073467,52.65,51.64,49.37,56.01,6.666666666666667,1,1,0,0,0,4,4,1,1119,2812406.8,1920111.6,359482.69,0,3709.8677 -7411,9113,16425,16424,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8705812,8.2332106,9,-7,-49.255867,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4594197,8.2390223,49.37,56.01,52.65,51.64,10,1,1,0,0,4,4,4,1,1119,2812406.8,1920111.6,359482.69,0,3709.8677 -7412,9114,16426,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,6.2386699,6.3219347,0,0,-977.80139,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.356925,6.968236,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,11,2,1,1381,472034.47,86219.391,574957.13,0,1205.3711 -7413,9115,16427,16428,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,7,-3,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,54,46,8,1,1,0,0,0,13,1,1,736,-45080.688,39517.117,0,0,1325.0358 -7413,9115,16428,16427,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,6.1955314,0,0,1,1,0,0,0,54,46,52,45,8,1,1,0,0,0,13,1,1,736,-45080.688,39517.117,0,0,1325.0358 -7413,9116,16429,-9,16427,16428,1,0,46,0,0,0,2,2,-9,0,3,8.1554441,8.2775249,0,0,0,-1012.8708,0,3,3,2019,12,0,35,36,1,0,0,12.217719,12.217719,0,0,0,0,0,1,1,0,0,0,36.78,54.48,-9,-9,6.666666666666667,1,1,0,1,8,13,4,1,540,25501.977,131432.48,112886.38,16782.166,1945.5789 -7413,9116,16430,-9,16429,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1053.6917,-9,2,-9,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,60.41,-9,-9,10,1,1,0,0,0,13,4,1,540,25501.977,131432.48,112886.38,16782.166,1945.5789 -7413,9117,16431,-9,16429,-9,1,0,22,0,0,0,1,1,1,0,5,8.0543652,8.3393288,0,0,0,-985.9729,-9,2,-9,2019,11,0,36,0,1,0,1,10.920463,10.920463,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,503,197405.92,-33677.988,0,0,1730.0405 -7414,9118,16432,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.5670252,8.4274101,0,0,0,-986.26813,0,1,2,2019,7,0,37,37,1,0,0,13.669709,13.669709,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,4,0,1285,101018.38,70361.125,81407.789,69305.797,2281.979 -7415,9119,16433,16434,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,7.4743781,7.4535799,0,4,2,-34.879025,0,-9,2,2019,11,0,40,50,1,0,0,4.8095951,4.8095951,0,0,0,0,0,1,1,0,0,0,46.31,56.45,32.62,52.61,8.333333333333334,1,1,0,0,7,10,4,1,1058,1274464.8,1005735.6,377224.25,136916.64,3760.4333 -7415,9119,16434,16433,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.6434937,9.0942869,5.1114054,4,-2,-12.047837,0,-9,-9,2019,12,0,42,44,1,0,0,18.659344,18.659344,0,0,0,0,0,1,1,0,5.1385508,0,32.62,52.61,46.31,56.45,5,1,1,0,0,9,10,4,1,1058,1274464.8,1005735.6,377224.25,136916.64,3760.4333 -7416,9120,16435,16436,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,8.4841242,8.8283043,0,8,-7,22.051273,0,2,2,2019,24,12,37,38,1,12,0,24.913237,24.913237,0,0,0,0,7,0,0,0,4.0938363,0,32.47,49.12,56.11,44.4,5,1,1,0,1,11,9,5,1,391,2095490.1,1253976.6,744603.13,0,6116.4941 -7416,9120,16436,16435,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,9.2917137,9.1365061,0,8,7,141.19827,0,-9,-9,2019,11,1,45,50,1,1,0,26.832005,26.832005,0,0,0,0,0,0,0,0,6.173965,0,56.11,44.4,32.47,49.12,8.333333333333334,1,1,0,1,12,9,5,1,391,2095490.1,1253976.6,744603.13,0,6116.4941 -7417,9121,16437,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,7.4229188,7.1835027,0,0,0,-1014.4978,0,3,-9,2019,10,1,16,0,1,1,0,11.898993,11.898993,0,0,0,0,0,1,1,0,0,0,43.85,30.02,-9,-9,1.666666666666667,1,1,0,1,4,2,3,0,564,440420.47,72171.164,163264.72,0,1172.9236 -7418,9122,16438,16439,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.9385743,7.1615171,55,0,6.016808,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.5046945,0,0,1,1,0,4.7460036,7.105608,57.16,56.15,57.33,53.46,0,1,1,0,0,0,2,2,1,330,65437.844,110534.45,0,0,772.85229 -7418,9122,16439,16438,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,0,-75.887817,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6053517,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,330,65437.844,110534.45,0,0,772.85229 -7419,9123,16440,-9,16442,16441,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-993.92102,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.0986483,0,52.19,47.95,-9,-9,6.666666666666667,2,3,0,0,0,6,4,0,754,673731.63,134100.64,405091.53,0,3596.884 -7419,9123,16441,16442,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,8.8911848,8.8441296,0,19,4,121.18272,0,3,3,2019,3,0,40,40,1,0,0,20.095745,20.095745,0,0,0,0,0,1,1,0,0,0,45.04,47.98,72,28.94,10,2,3,0,0,9,6,4,0,754,673731.63,134100.64,405091.53,0,3596.884 -7419,9123,16442,16441,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.3748507,7.6373115,0,19,-4,-8.9821377,0,2,2,2019,8,1,35,24,1,1,0,7.2526946,7.2526946,0,0,0,0,0,1,1,0,0,0,72,28.94,45.04,47.98,8.333333333333334,2,3,0,0,6,6,4,0,754,673731.63,134100.64,405091.53,0,3596.884 -7420,9124,16443,16445,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.73738,7.394412,0,5,-11,7.0460806,0,2,3,2019,11,1,32,32,1,1,0,6.632576,6.632576,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.1,59.11,6.666666666666667,1,1,0,0,9,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 -7420,9124,16444,-9,16443,16445,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-861.52313,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,48.03,-9,-9,10,1,1,1,0,0,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 -7420,9124,16445,16443,-9,-9,1,1,52,0,2,0,1,1,-9,0,5,9.5707684,9.4976587,0,5,11,-25.709122,0,3,1,2019,5,0,47,35,1,0,0,44.67823,44.67823,0,0,0,0,0,0,0,0,0,0,54.1,59.11,48.87,58.55,6.666666666666667,1,1,0,0,11,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 -7420,9124,16446,-9,16443,16445,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1043.0867,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,1046.5,3387349,2611413.3,787097.69,79393.32,5091.5444 -7421,9125,16447,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,8.0782051,7.9212208,0,0,-1028.28,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.2981863,3.9237874,53.82,17.34,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,313,468244,432996.38,140708.55,0,4360.9971 -7422,9126,16448,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-975.36835,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.62,33.26,-9,-9,6.666666666666667,1,1,0,0,4,13,1,1,458,124448.35,-23093.313,0,0,259.565 -7422,9127,16449,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1119.8876,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,38.75,-9,-9,5,1,1,1,1,0,13,1,1,438,134498.47,72655.594,0,0,797.33942 -7423,9128,16450,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.3933229,8.1957026,0,0,0,-1072.0948,0,3,2,2019,28,12,37,42,1,12,0,14.494984,14.494984,0,0,0,0,0,1,1,0,0,0,20.1,55.77,-9,-9,3.333333333333333,1,1,0,0,12,12,4,0,431,230796.89,222377.19,99498.242,62458.238,2287.1921 -7424,9129,16451,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,9.1188984,8.7965631,0,0,0,-924.7132,0,2,2,2019,11,1,60,80,1,1,0,17.895426,17.895426,0,0,0,0,2,0,0,0,0,0,42.22,56.11,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,741,602810.19,271930.97,0,0,3162.0081 -7425,9130,16452,16453,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.8571358,8.8067102,0,43,0,-113.16576,0,2,2,2019,6,0,48,50,1,0,0,20.439449,20.439449,0,0,0,0,0,1,1,0,0,0,61.47,40.47,40.42,25.95,8.333333333333334,1,1,0,0,12,6,4,0,242,2094320.3,1519651.8,410899.69,25694.76,3098.5122 -7425,9130,16453,16452,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,0,0,43,0,58.144009,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.42,25.95,61.47,40.47,5,1,1,0,0,8,6,4,0,242,2094320.3,1519651.8,410899.69,25694.76,3098.5122 -7425,9131,16454,-9,16453,16452,1,1,31,0,0,0,1,1,-9,0,2,8.3616467,8.2535963,0,0,0,-978.32178,0,2,1,2019,36,12,51,52,1,12,1,9.0327072,9.0327072,0,0,0,0,0,1,1,0,0,0,.45,63.9,-9,-9,1.666666666666667,1,1,0,0,9,6,4,0,225,328002.31,5543.3247,0,0,1268.2438 -7425,9132,16455,-9,16453,16452,1,0,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1048.8608,0,1,1,2019,22,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,731,261687.91,0,0,0,306.00009 -7426,9133,16456,16458,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.4803624,8.1156778,7.4308872,5,-6,-40.673458,0,-9,-9,2019,6,0,23,16,1,0,0,7.4940591,7.4940591,0,0,0,0,0,1,1,0,0,7.0800524,43.28,57.13,44.73,23.53,10,1,1,0,0,3,10,5,1,701,161592.3,102708.78,239587.66,57784.527,3783.8115 -7426,9133,16457,-9,16456,16458,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.6315,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,701,161592.3,102708.78,239587.66,57784.527,3783.8115 -7426,9133,16458,16456,-9,-9,1,1,52,0,1,0,2,2,-9,0,1,8.7141361,8.7947922,0,5,6,-35.064285,0,2,2,2019,16,5,40,40,1,5,0,22.19153,22.19153,0,0,0,0,0,1,1,0,0,0,44.73,23.53,43.28,57.13,3.333333333333333,1,1,0,0,12,10,5,1,701,161592.3,102708.78,239587.66,57784.527,3783.8115 -7427,9134,16459,16461,-9,-9,1,1,63,0,1,0,2,2,-9,0,3,9.2103128,9.1666241,7.0651073,31,15,-12.597318,0,2,2,2019,11,1,50,55,1,1,0,29.988916,29.988916,0,0,0,0,0,0,0,0,1.8844354,7.4227805,51.41,56.15,41.62,60.42,6.666666666666667,1,1,0,0,10,9,5,1,667,1189905,198009.36,745456.88,27800.252,4064.4922 -7427,9134,16460,-9,16461,16459,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.7695,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,667,1189905,198009.36,745456.88,27800.252,4064.4922 -7427,9134,16461,16459,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,31,-15,-11.361172,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.6146765,0,41.62,60.42,51.41,56.15,1.666666666666667,1,1,0,0,0,9,5,1,667,1189905,198009.36,745456.88,27800.252,4064.4922 -7427,9135,16462,-9,16461,16459,1,1,25,0,1,0,1,1,-9,0,4,8.1940727,8.1922407,0,0,0,-1034.0999,0,2,2,2019,7,0,45,40,1,0,1,12.546007,12.546007,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,1003,-13563.105,99377.602,0,0,1701.4979 -7427,9136,16463,-9,16461,16459,1,0,22,0,1,0,2,2,-9,0,5,7.6941609,7.3814855,0,0,0,-836.77679,0,2,2,2019,5,0,40,35,1,0,1,4.7712259,4.7712259,0,0,0,0,0,0,0,0,1.0374336,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,348,192306.44,0,0,0,1038.9541 -7427,9137,16464,-9,16461,16459,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1047.2422,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,872,4294.5356,0,0,0,-316.29605 -7427,9138,16465,-9,16461,16459,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-984.15741,-9,2,2,2019,19,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,40.06,58.99,-9,-9,3.333333333333333,1,1,1,0,0,9,1,1,1021,-26569.342,0,0,0,0 -7428,9139,16466,-9,16468,16467,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.7739,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 -7428,9139,16467,16468,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.7523489,8.5732689,0,7,-5,-1.5110123,0,-9,-9,2019,7,0,39,38,1,0,0,17.630335,17.630335,0,0,0,0,0,1,1,0,1.7603338,0,57.16,56.15,53.39,50.01,8.333333333333334,1,1,0,0,7,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 -7428,9139,16468,16467,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,0,0,0,7,5,-25.46171,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.5809231,0,53.39,50.01,57.16,56.15,10,1,1,0,0,5,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 -7428,9139,16469,-9,16468,16467,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.8319,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,701.75,143117.97,6169.9272,0,0,2389.6248 -7429,9140,16470,16471,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,7.4651113,7.3348436,0,13,2,19.950304,0,2,2,2019,22,10,25,35,1,10,0,6.2773457,6.2773457,0,0,0,0,0,1,1,0,0,0,56.51,21.54,37.42,60.49,3.333333333333333,1,1,0,0,9,9,4,1,1065.5,565862.25,371173.19,329287.13,9257.3018,2685.9595 -7429,9140,16471,16470,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.3537312,8.271102,0,13,-2,-47.020664,0,3,3,2019,7,0,60,50,1,0,0,10.157092,10.157092,0,0,0,0,0,1,1,0,0,0,37.42,60.49,56.51,21.54,10,1,1,0,0,10,9,4,1,1065.5,565862.25,371173.19,329287.13,9257.3018,2685.9595 -7430,9141,16472,16473,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,7.8244228,8.1568403,0,6,0,20.966038,0,3,2,2019,6,0,50,45,1,0,0,7.278605,7.278605,0,0,0,0,0,0,0,0,0,0,54.2,57.49,40.66,29.1,8.333333333333334,1,1,0,1,8,6,3,1,323.5,143743.59,0,0,0,1200.1567 -7430,9141,16473,16472,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,6,0,142.66493,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.66,29.1,54.2,57.49,0,1,1,1,1,0,6,3,1,323.5,143743.59,0,0,0,1200.1567 -7431,9142,16474,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.2004223,7.3240566,0,0,0,-1036.5333,0,3,3,2019,9,0,30,22,1,0,0,5.0586748,5.0586748,0,0,0,0,0,1,1,0,0,0,51.1,48.47,-9,-9,6.666666666666667,2,3,0,0,6,1,3,0,1355,264431.38,0,212501.39,42336.453,513.0144 -7432,9143,16475,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.9570441,8.0045033,0,0,-908.05841,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8990283,40.92,57.96,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,327,745974.75,346195.47,188085.02,0,2173.4133 -7432,9144,16476,-9,-9,16475,1,0,23,0,0,0,1,1,1,0,4,7.9327259,7.9693155,0,0,0,-988.31897,-9,-9,1,2019,7,0,39,0,1,0,0,6.6555657,6.6555657,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,10,1,1,0,0,3,11,4,1,214,-295828.88,-25546.494,126433.52,84273.258,969.33862 -7433,9145,16477,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-918.42426,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.42,46.51,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,2481,0,0,0,0,1512.9915 -7434,9146,16478,-9,16479,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1012.9745,-9,3,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,529,0,0,0,0,900.94507 -7434,9146,16479,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,6.9422522,6.8172369,0,0,0,-924.86334,0,3,3,2019,14,2,24,0,1,2,0,4.5212269,4.5212269,0,0,0,0,7,1,1,0,0,0,45.97,28.93,-9,-9,1.666666666666667,2,3,0,1,0,6,2,1,529,0,0,0,0,900.94507 -7434,9147,16480,-9,16479,-9,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1015.4962,-9,3,-9,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,10,2,3,0,0,2,6,1,1,442,71914.648,0,0,0,-240.21449 -7435,9148,16481,-9,16483,16482,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-775.84778,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 -7435,9148,16482,16483,-9,-9,1,1,43,1,3,0,2,2,-9,0,3,0,0,0,20,5,38.519146,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.5,49.54,17.2,67.83,5,2,3,1,1,6,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 -7435,9148,16483,16482,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,8.9797821,8.6425619,0,20,-5,-73.958054,0,3,2,2019,32,12,88,50,1,12,0,8.5920916,8.5920916,0,0,0,0,2,1,1,0,0,0,17.2,67.83,42.5,49.54,3.333333333333333,2,3,0,0,6,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 -7435,9148,16484,-9,16483,16482,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.19983,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 -7435,9148,16485,-9,16483,16482,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.86365,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,409,461149.59,-9324.7217,398565.94,37470.762,2627.9631 -7436,9149,16486,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.8638315,8.0975494,0,0,0,-1018.6984,0,2,2,2019,11,0,22,21,1,0,0,15.020045,15.020045,0,0,0,0,0,0,0,0,.75925046,0,47.46,52.7,-9,-9,6.666666666666667,1,1,0,0,13,8,3,1,510,180668.2,0,386546.31,0,1625.4945 -7437,9150,16487,16488,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.9968452,8.1285152,0,31,-11,182.08321,0,3,1,2019,21,9,18,22,1,9,0,20.275229,20.275229,0,0,0,0,0,1,1,0,9.4990158,0,47.59,55.4,51.42,48.12,8.333333333333334,1,1,0,0,9,8,5,1,451.5,1797873.4,351345.5,1960039.8,312547.97,12630.312 -7437,9150,16488,16487,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,9.1863976,9.2103786,8.2664728,8,11,13.234859,0,-9,-9,2019,12,1,25,42,1,1,0,43.21402,43.21402,0,0,0,0,0,1,1,0,9.8970261,8.4292564,51.42,48.12,47.59,55.4,8.333333333333334,1,1,0,0,9,8,5,1,451.5,1797873.4,351345.5,1960039.8,312547.97,12630.312 -7437,9151,16489,-9,16487,16488,1,0,25,0,0,0,1,1,1,0,3,8.4586477,7.9678631,0,0,0,-1074.2329,-9,2,1,2019,6,0,38,0,1,0,1,9.9233818,9.9233818,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,245,-4054.533,0,0,0,972.41187 -7437,9152,16490,-9,16487,16488,1,1,23,0,0,0,1,1,-9,0,3,8.4979668,8.5253248,0,0,0,-921.49518,-9,2,1,2019,5,0,38,0,1,0,1,13.912865,13.912865,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,144,0,0,0,0,1904.7362 -7438,9153,16491,-9,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.5313225,8.6344976,0,0,0,-1081.9957,0,3,1,2019,10,0,50,65,1,1,0,11.771368,11.771368,0,0,0,0,0,1,1,0,.23541395,0,50,57,-9,-9,7,2,3,0,0,1,8,4,1,1077,-12658.92,0,176905.78,46688.699,1694.1989 -7438,9154,16492,-9,16495,16493,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.05042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,342,46511.707,75963.188,0,0,3726.1267 -7438,9154,16493,16495,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.7533722,8.4689379,0,6,12,-11.145835,0,3,1,2019,9,0,36,40,1,1,0,15.382502,15.382502,0,0,0,0,0,1,1,0,7.7399912,0,51,56,47,57,8,2,3,0,0,7,8,3,1,342,46511.707,75963.188,0,0,3726.1267 -7438,9154,16494,-9,16495,16493,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.4092,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,342,46511.707,75963.188,0,0,3726.1267 -7438,9154,16495,16493,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,6,-12,-4.5670047,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,2,3,0,0,0,8,3,1,342,46511.707,75963.188,0,0,3726.1267 -7438,9155,16496,-9,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.4994545,8.6578302,6.1636772,0,0,-967.39502,0,3,1,2019,10,0,50,45,1,1,0,15.203036,15.203036,0,0,0,0,0,1,1,0,8.7455378,6.1961112,51,57,-9,-9,7,2,3,0,0,1,8,4,1,452,398006.75,0,194395.84,11656.584,5008.0093 -7438,9156,16497,-9,-9,-9,1,1,29,1,2,0,2,2,-9,0,2,9.1025238,9.2096472,0,0,0,-1159.9781,0,3,1,2019,30,11,45,40,1,11,0,20.801748,20.801748,0,0,0,0,0,1,1,0,2.6645124,0,15.67,50.04,-9,-9,3.333333333333333,2,3,0,0,7,8,5,1,241,362052.5,0,331581.41,136682.41,3152.7712 -7439,9157,16498,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1012.8923,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4113398,0,64.23,44.69,-9,-9,10,1,1,0,0,9,10,1,1,92,-207589.67,0,0,0,747.73584 -7440,9158,16499,16501,-9,-9,1,1,61,0,3,0,3,3,-9,0,3,7.4461522,7.3179216,0,8,4,-4.9790349,-9,3,2,2019,10,0,40,0,1,1,0,4.4390001,4.4390001,0,0,0,0,0,1,1,0,2.4159057,0,51,48,49,48,7,2,3,0,0,10,2,2,1,672.66669,30870.02,-75432.75,0,0,837.88892 -7440,9158,16500,-9,16501,16499,1,0,16,0,3,0,2,2,-9,0,2,0,0,0,0,0,-929.99615,-9,3,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.54018664,0,38,44,-9,-9,6.666666666666667,2,3,1,0,0,2,2,1,672.66669,30870.02,-75432.75,0,0,837.88892 -7440,9158,16501,16499,-9,-9,1,0,57,0,3,0,3,3,-9,0,3,0,0,0,8,-4,-37.342869,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,1,0,0,2,2,1,672.66669,30870.02,-75432.75,0,0,837.88892 -7440,9159,16502,16505,16501,16499,1,1,30,0,3,0,2,2,-9,0,5,7.7560487,7.8143449,0,10,3,112.59122,0,3,3,2019,6,0,45,35,1,0,0,4.9136567,4.9136567,0,0,0,0,0,1,1,0,0,0,39.92,58.05,52.39,37.22,10,2,3,0,0,10,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 -7440,9159,16503,-9,16505,16502,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.1486,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 -7440,9159,16504,-9,16505,16502,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.85388,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 -7440,9159,16505,16502,-9,-9,1,0,27,0,3,0,2,2,-9,0,5,0,0,0,10,-3,95.966797,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,2.4306145,0,52.39,37.22,39.92,58.05,1.666666666666667,2,3,0,0,5,2,2,1,410.25,92752.82,-20556.584,0,0,1540.6414 -7441,9160,16506,16507,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.0403757,8.0499535,0,8,-4,32.604374,0,-9,-9,2019,9,0,37,36,1,0,0,9.6476269,9.6476269,0,0,0,0,2,1,1,0,0,0,51.83,57.2,39.64,26.93,8.333333333333334,1,1,0,0,7,4,3,1,184,827726.94,569380.5,375046.19,65490.242,2417.0264 -7441,9160,16507,16506,-9,-9,1,1,52,0,1,0,2,2,-9,1,1,0,6.7355876,6.7355232,8,4,-10.855971,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.5136361,6.8397627,39.64,26.93,51.83,57.2,6.666666666666667,1,1,0,0,0,4,3,1,184,827726.94,569380.5,375046.19,65490.242,2417.0264 -7442,9161,16508,16509,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.4275827,6.5119491,40,0,-7.4861908,0,2,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9765334,6.8720326,60.02,56.42,61.79,32.24,10,1,1,0,0,0,2,2,1,430.5,632470.88,257435.56,327532.44,0,1860.8928 -7442,9161,16509,16508,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,5.6529222,6.3882647,40,9,-101.69887,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7956295,5.9573779,61.79,32.24,60.02,56.42,8.333333333333334,1,1,0,0,0,2,2,1,430.5,632470.88,257435.56,327532.44,0,1860.8928 -7443,9162,16510,16511,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,0,0,0,4,0,-153.42482,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,57.33,53.46,6.666666666666667,2,3,1,0,0,4,3,0,339,64287.336,48804.305,0,0,1364.1316 -7443,9162,16511,16510,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.6482024,7.7356477,5.273324,24,0,-2.851135,0,3,1,2019,10,0,27,-9,1,0,0,10.432885,10.432885,0,0,0,0,0,0,0,0,5.1627412,0,57.33,53.46,46.33,55.93,6.666666666666667,2,3,0,0,12,4,3,0,339,64287.336,48804.305,0,0,1364.1316 -7443,9163,16512,-9,16511,16510,1,1,26,0,0,0,2,2,-9,0,4,7.8798423,7.6833973,0,0,0,-1007.4398,0,2,2,2019,7,0,30,30,1,0,1,6.906981,6.906981,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,4,4,3,0,1033,101379.31,29022.914,0,0,1284.4579 -7443,9164,16513,-9,16511,16510,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.4993,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,8,4,1,0,304,188924.05,0,0,0,-728.80823 -7443,9165,16514,-9,16511,16510,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1093.1949,-9,2,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43.9,57.01,-9,-9,5,2,3,0,0,0,4,1,0,257,-188247.28,0,0,0,0 -7444,9166,16515,-9,16517,16519,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1024.4183,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 -7444,9166,16516,-9,16517,16519,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.7129,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 -7444,9166,16517,16519,-9,-9,1,0,34,1,4,0,3,3,-9,0,3,0,0,0,15,-3,-11.044487,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,60.32,38.33,39.32,46.61,6.666666666666667,2,3,0,1,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 -7444,9166,16518,-9,16517,16519,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.49744,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 -7444,9166,16519,16517,-9,-9,1,1,37,1,4,0,1,1,-9,0,3,8.3648014,8.353693,0,8,3,24.721428,0,-9,-9,2019,10,0,40,40,1,0,0,9.7070103,9.7070103,0,0,0,0,0,1,1,0,0,0,39.32,46.61,60.32,38.33,6.666666666666667,2,3,0,0,7,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 -7444,9166,16520,-9,16517,16519,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.5042,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,496.66666,615947.81,57744.102,571039.06,109262.86,2288.4392 -7445,9167,16521,16522,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.6042876,5.3790765,69,2,27.856253,0,3,3,2019,11,0,0,0,4,2,0,0,0,1,6.5914135,15.811398,66.826492,0,1,1,0,5.4629645,5.0963626,47,33.94,53,44,6.666666666666667,1,1,0,0,6,7,2,1,1107.5,339095.06,36481.691,231838.59,0,760.39258 -7445,9167,16522,16521,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,9,-2,-74.750031,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,47,33.94,8,1,1,0,0,0,7,2,1,1107.5,339095.06,36481.691,231838.59,0,760.39258 -7445,9168,16523,-9,16522,16521,1,1,64,0,0,0,2,2,-9,0,3,6.5029926,6.4359722,0,0,0,-1053.8507,0,2,3,2019,10,0,50,45,1,1,0,1.3040673,1.3040673,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,1,7,2,1,2294,230279.83,355672.75,0,0,718.52063 -7446,9169,16524,16527,-9,-9,1,1,37,1,3,0,1,1,-9,0,5,9.528019,9.6251574,0,13,0,64.877586,0,2,2,2019,8,0,50,60,1,0,0,27.292191,27.292191,0,0,0,0,7,1,1,0,7.6690998,0,49.7,58.29,35.2,61.14,8.333333333333334,1,1,0,0,12,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 -7446,9169,16525,-9,16527,16524,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-947.75043,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 -7446,9169,16526,-9,16527,16524,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.1853,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 -7446,9169,16527,16524,-9,-9,1,0,37,1,3,0,1,1,-9,0,3,7.486135,7.6070724,0,13,0,-40.140583,0,2,2,2019,13,0,23,15,1,2,0,9.6471138,9.6471138,0,0,0,0,0,1,1,0,0,0,35.2,61.14,49.7,58.29,3.333333333333333,1,1,0,0,9,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 -7446,9169,16528,-9,16527,16524,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.3121,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,0,1009.4,192368.66,175906.16,228783.02,110523.45,5425.3696 -7447,9170,16529,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.2461519,6.1605544,0,0,-871.43634,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.6865726,6.1100192,61.12,51.57,-9,-9,10,1,1,0,0,7,6,2,0,1228,487584.16,0,341918.47,0,837.66565 -7448,9171,16530,16531,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,56,8,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9868729,0,47.8,39.1,54.38,49.27,6.666666666666667,1,1,0,0,0,6,1,1,549,326735.5,0,154026.19,8944.3457,484.62787 -7448,9171,16531,16530,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-8,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3365449,0,54.38,49.27,47.8,39.1,8.333333333333334,1,1,0,0,0,6,1,1,549,326735.5,0,154026.19,8944.3457,484.62787 -7448,9172,16532,-9,16531,16530,1,1,50,0,0,0,2,2,-9,0,3,8.8684959,8.8668108,0,0,0,-1011.4793,0,3,3,2019,9,0,46,50,1,0,0,16.996649,16.996649,0,0,0,0,0,1,1,0,0,0,44.3,55.28,-9,-9,6.666666666666667,1,1,0,0,4,6,5,1,486,468598.97,268856.22,0,0,2209.8127 -7449,9173,16533,-9,16535,16536,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-954.21045,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 -7449,9173,16534,-9,16535,16536,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1153.6349,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,5,3,4,0,0,0,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 -7449,9173,16535,16536,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.5577011,8.7441864,0,8,2,-19.940058,0,2,2,2019,9,0,36,35,1,0,0,21.19459,21.19459,0,0,0,0,0,1,1,0,1.2258946,0,62.49,55.09,51.41,56.15,6.666666666666667,3,4,0,1,9,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 -7449,9173,16536,16535,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,5.2296991,5.0537763,0,8,-2,-112.16837,0,3,3,2019,9,0,55,60,1,0,0,.45472664,.45472664,0,0,0,0,0,1,1,0,0,0,51.41,56.15,62.49,55.09,5,3,4,0,0,9,12,3,1,1104.25,287476.34,319144.63,0,0,2701.7244 -7450,9174,16537,16538,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.276228,7.100862,52,3,-95.856316,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2079282,55.36,51.57,54.79,55.86,8.333333333333334,1,1,0,0,0,10,2,1,364.5,453416.28,53269.531,476328.31,0,2096.4451 -7450,9174,16538,16537,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,52,-3,36.126026,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1859293,0,54.79,55.86,55.36,51.57,8.333333333333334,1,1,0,0,7,10,2,1,364.5,453416.28,53269.531,476328.31,0,2096.4451 -7451,9175,16539,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.1158023,5.8645711,0,0,-1005.4979,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3090577,5.5635839,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,808,436546.28,160241.45,263754.75,0,1504.4293 -7452,9176,16540,16541,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4758673,8.7676134,0,8,-14,-10.308187,0,2,2,2019,23,11,40,55,1,11,0,20.820961,20.820961,0,0,0,0,0,0,0,0,3.4957607,0,18.97,57.66,54.2,57.49,6.666666666666667,1,1,0,1,10,10,5,1,363.5,799828.56,435300.84,347184.13,0,3021.406 -7452,9176,16541,16540,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.7346206,7.9578705,0,8,14,-18.67856,0,3,2,2019,13,2,50,45,1,2,0,6.219121,6.219121,0,0,0,0,0,0,0,0,0,0,54.2,57.49,18.97,57.66,8.333333333333334,1,1,0,1,8,10,5,1,363.5,799828.56,435300.84,347184.13,0,3021.406 -7453,9177,16542,16544,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,7,-14,107.59821,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.4425902,0,46.4,59.87,42.39,54.77,6.666666666666667,1,1,0,0,1,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 -7453,9177,16543,-9,16542,16544,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1041.1183,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.8401523,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 -7453,9177,16544,16542,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,8.169508,7.8971329,0,7,14,45.101284,0,-9,-9,2019,20,7,50,25,1,7,0,6.0524473,6.0524473,0,0,0,0,0,1,1,0,6.9338937,0,42.39,54.77,46.4,59.87,5,1,1,0,0,10,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 -7453,9177,16545,-9,16542,16544,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1076.771,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,224.75,1577702.5,614710.81,420192.56,0,2492.6421 -7454,9178,16546,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.6076617,7.3426523,8,5,-87.408379,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.9484248,7.4398389,57.16,56.15,58.15,52.91,10,1,1,0,0,2,4,3,1,914,382413.28,231127.2,310815.69,0,580.45782 -7454,9179,16547,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.6554155,7.8858857,8,-5,-41.41827,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.489574,7.6592793,58.15,52.91,57.16,56.15,10,1,1,0,0,6,4,3,1,502,854656.75,493681,123716.91,0,848.2132 -7455,9180,16548,-9,16551,16550,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.0143,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,373.25,59267.227,0,0,0,1471.9104 -7455,9180,16549,-9,16551,16550,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.42456,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,1,373.25,59267.227,0,0,0,1471.9104 -7455,9180,16550,16551,-9,-9,1,1,30,0,2,0,3,3,-9,0,4,6.791769,7.0251889,0,6,0,8.7714481,0,-9,-9,2019,10,0,35,20,1,1,0,3.5950797,3.5950797,0,0,0,0,0,1,1,0,0,0,50,57,45.23,37.81,7,2,3,0,0,1,2,2,1,373.25,59267.227,0,0,0,1471.9104 -7455,9180,16551,16550,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,0,0,0,12,0,192.08997,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.23,37.81,50,57,5,2,3,0,0,0,2,2,1,373.25,59267.227,0,0,0,1471.9104 -7456,9181,16552,16553,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.6452808,8.4290571,0,6,-4,199.38728,0,2,2,2019,6,0,37,37,1,0,0,12.511528,12.511528,0,0,0,3.7783005,7,1,1,0,.79027671,0,57.06,57.76,56.92,49.39,10,1,1,0,0,9,11,4,1,1064,540965,601785.5,180333.31,15040.967,3401.457 -7456,9181,16553,16552,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.2346926,8.1316137,0,6,4,79.414841,0,2,2,2019,8,0,40,41,1,0,0,10.634998,10.634998,0,0,0,0,2,1,1,0,1.1667047,0,56.92,49.39,57.06,57.76,6.666666666666667,1,1,0,0,9,11,4,1,1064,540965,601785.5,180333.31,15040.967,3401.457 -7456,9182,16554,-9,16552,16553,1,1,18,0,1,0,2,2,0,0,3,0,0,0,0,0,-953.85419,-9,2,2,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,27,1,1,0,0,0,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,193,-197476.3,0,0,0,0 -7457,9183,16555,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,9.0092564,8.7763367,0,0,0,-935.22125,0,3,-9,2019,8,0,43,39,1,0,0,14.129996,14.129996,0,0,0,0,0,0,0,0,0,0,44.85,53.68,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,956,14951.649,62079.996,0,0,2932.3091 -7457,9184,16556,-9,-9,16555,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1165.5729,0,-9,3,2019,7,0,0,48,3,0,1,0,0,0,0,0,0,0,0,0,0,.26640218,0,47.23,52.55,-9,-9,8.333333333333334,1,1,0,1,3,9,1,1,901,0,0,0,0,560.75537 -7458,9185,16557,16558,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.653492,7.7535791,0,3,0,15.214518,0,2,2,2019,13,2,43,42,1,2,0,6.3757586,6.3757586,0,0,0,0,0,0,0,0,2.9204662,0,46.35,42.16,62.49,55.09,6.666666666666667,1,1,0,0,8,6,4,0,1175,92956.25,0,0,0,2721.1636 -7458,9185,16558,16557,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.6244259,7.8697462,0,3,0,-6.4065433,0,-9,-9,2019,6,0,44,43,1,0,0,5.9447303,5.9447303,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.35,42.16,8.333333333333334,1,1,0,0,4,6,4,0,1175,92956.25,0,0,0,2721.1636 -7459,9186,16559,-9,16562,16560,1,1,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1018.0114,-9,3,2,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,6.666666666666667,4,2,0,0,0,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 -7459,9186,16560,16562,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,7.8729596,8.3478127,7.5038486,21,16,182.10022,0,3,2,2019,6,0,33,66,1,0,0,8.8639545,8.8639545,0,0,0,0,0,1,1,0,7.4595342,7.5331893,54.96,53.17,46.19,51.61,6.666666666666667,1,1,0,0,12,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 -7459,9186,16561,-9,16562,16560,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-999.07141,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 -7459,9186,16562,16560,-9,-9,1,0,41,0,1,0,3,3,-9,0,4,8.2651072,8.440464,0,21,-16,36.185341,0,3,2,2019,10,2,50,50,1,2,0,8.5613308,8.5613308,0,0,0,0,0,1,1,0,0,0,46.19,51.61,54.96,53.17,6.666666666666667,2,3,0,1,7,10,4,1,646.75,574566.63,371286.56,280907.34,174248.67,3406.8066 -7460,9187,16563,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9981875,7.6216917,0,0,0,-857.73328,0,-9,-9,2019,10,0,30,28,1,0,0,8.8355274,8.8355274,0,0,0,0,0,0,0,0,.69409251,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,13,7,3,1,6455,148478.14,44258.719,0,0,587.40009 -7460,9188,16564,-9,16563,-9,1,1,29,0,0,0,1,1,-9,0,4,8.1060333,7.8697333,0,0,0,-1065.8016,0,2,-9,2019,8,0,41,42,1,0,1,7.740397,7.740397,0,0,0,0,0,0,0,0,4.6887574,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,1578,-48651.863,0,0,0,1129.2439 -7461,9189,16565,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,0,0,0,0,-848.78473,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.98,48.33,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,448,188149.44,0,266083.41,64955.188,135.79073 -7462,9190,16566,16567,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,7,-1,-83.757187,0,-9,-9,2019,8,1,0,24,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,1,0,9,13,3,1,535.5,861227.25,758214.75,249981.66,0,1618.6753 -7462,9190,16567,16566,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.2710066,7.7862239,16,1,17.013281,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0854921,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,13,3,1,535.5,861227.25,758214.75,249981.66,0,1618.6753 -7463,9191,16568,16569,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.0012369,6.8515487,0,9,-7,-91.092812,0,3,3,2019,11,0,12,12,1,2,0,9.4582663,9.4582663,0,0,0,0,0,1,1,0,0,0,48,48,51,48,7,1,1,0,0,4,11,2,1,1034.5,415870.31,163765.5,89159.813,0,1112.6238 -7463,9191,16569,16568,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,9,7,-32.260971,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,0,51,48,48,48,7,1,1,0,0,10,11,2,1,1034.5,415870.31,163765.5,89159.813,0,1112.6238 -7463,9192,16570,-9,16568,16569,1,0,23,0,0,0,2,2,-9,0,4,8.1236382,7.7317457,0,0,0,-1091.526,0,3,3,2019,12,0,30,40,1,2,1,9.0479717,9.0479717,0,0,0,0,0,1,1,0,0,0,59.44,44.8,-9,-9,0,1,1,0,0,6,11,3,1,800,-77797.531,0,0,0,1208.0887 -7464,9193,16571,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.0007133,8.0548487,0,0,0,-984.20367,0,2,3,2019,17,4,39,39,1,4,0,10.118268,10.118268,0,0,0,0,0,0,0,0,0,0,44.34,56.4,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,535,545456.63,684288.06,92942.195,518.72949,1434.2115 -7465,9194,16572,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,5.2193923,5.0115004,0,0,-1079.4786,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,5.344439,41.37,20.45,-9,-9,3.333333333333333,1,1,0,1,0,6,2,0,1161,148456.45,49605.422,0,0,1521.5891 -7466,9195,16573,16574,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.2072372,8.1859961,0,1,-4,-8.0726938,-9,-9,-9,2019,7,0,28,0,1,0,0,10.751201,10.751201,0,0,0,0,0,0,0,0,0,0,55.49,46.23,52.02,46.15,8.333333333333334,1,1,0,0,2,6,5,1,187.5,272825.81,-32831.199,147118.22,143959.84,3630.7578 -7466,9195,16574,16573,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.8239927,8.7386351,3.6885302,1,4,-15.633724,0,2,2,2019,13,1,40,50,1,1,0,15.321629,15.321629,0,0,0,0,0,0,0,0,3.717742,0,52.02,46.15,55.49,46.23,3.333333333333333,1,1,0,0,9,6,5,1,187.5,272825.81,-32831.199,147118.22,143959.84,3630.7578 -7467,9196,16575,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.6986213,7.6787748,0,0,-1011.6603,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6494226,7.4559045,53,44,-9,-9,8,1,1,0,0,0,1,3,1,793,528746.94,110051.09,82284.063,0,2054.0833 -7468,9197,16576,16577,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,39,-6,-15.733704,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,6,5,2,1,1178,345620.22,224479.89,0,0,2311.7539 -7468,9197,16577,16576,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,7.5203714,7.267426,34,6,29.797922,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2021246,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,5,2,1,1178,345620.22,224479.89,0,0,2311.7539 -7469,9198,16578,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,5.0995116,5.0786529,0,0,-919.7511,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0881648,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,8,8,2,1,2039,43427.367,108906.87,0,0,91.25811 -7469,9199,16579,-9,-9,16578,1,0,27,0,0,0,2,2,-9,0,3,8.2907391,8.549819,0,0,0,-1020.6865,0,-9,2,2019,13,0,38,36,1,3,0,12.583204,12.583204,0,0,0,0,0,0,0,0,0,0,44,53,-9,-9,6,1,1,0,1,5,8,4,1,1098,381080.28,28078.238,0,0,1586.7668 -7470,9200,16580,16581,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.5858717,6.5382562,54,0,83.721252,0,3,2,2019,19,6,0,0,4,6,0,0,0,1,0,31.685768,0,0,1,1,0,0,6.444479,29.67,42.63,63.42,36.84,1.666666666666667,1,1,0,0,0,1,2,1,786,-150747.58,65637.867,163365.08,0,1992.7136 -7470,9200,16581,16580,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.5878243,5.4987493,54,0,-46.84726,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9668427,5.4148879,63.42,36.84,29.67,42.63,8.333333333333334,1,1,0,0,2,1,2,1,786,-150747.58,65637.867,163365.08,0,1992.7136 -7471,9201,16582,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.4388537,4.5061154,0,0,-1122.5603,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,7.6069808,0,0,1,1,0,4.8012261,4.2747216,54,46,-9,-9,8,1,1,0,0,0,13,2,1,184,146572.2,60780.535,169311.28,0,1155.1147 -7472,9202,16583,16585,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,0,0,0,25,3,67.70546,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,6.62219,0,57.06,57.76,53,55,10,1,1,0,0,6,7,5,1,776.33331,2143872.5,1269878.4,770798,0,4683.7168 -7472,9202,16584,-9,16583,16585,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.44604,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,776.33331,2143872.5,1269878.4,770798,0,4683.7168 -7472,9202,16585,16583,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.7126179,9.8878775,0,25,-3,181.49269,0,2,1,2019,9,0,40,75,1,1,0,38.965378,38.965378,0,0,0,0,0,0,0,0,4.7551408,0,53,55,57.06,57.76,8,1,1,0,0,1,7,5,1,776.33331,2143872.5,1269878.4,770798,0,4683.7168 -7473,9203,16586,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.6498718,8.8607273,0,0,0,-1113.8533,0,-9,-9,2019,16,4,50,45,1,4,0,13.189173,13.189173,0,0,0,0,0,1,1,0,0,0,34.03,63.01,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,313,717276,27189.654,0,0,2256.4575 -7474,9204,16587,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1161.1183,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,55.3,31.67,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,968,0,0,0,0,820.6134 -7475,9205,16588,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,7.0211644,7.5447955,6.1003838,0,0,-914.19067,0,2,3,2019,33,12,16,16,1,12,0,9.3114166,9.3114166,0,0,0,0,0,1,1,0,5.3870344,0,15.47,56.98,-9,-9,1.666666666666667,1,1,0,0,13,12,2,1,1435.6666,274986.03,44210.805,0,0,1567.4896 -7475,9205,16589,-9,16588,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-886.53912,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.82498389,0,46,60,-9,-9,7,1,1,0,0,0,12,2,1,1435.6666,274986.03,44210.805,0,0,1567.4896 -7475,9205,16590,-9,16588,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.3333,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,1,1435.6666,274986.03,44210.805,0,0,1567.4896 -7475,9206,16591,-9,16588,-9,1,0,27,0,1,0,2,2,-9,0,3,7.926393,7.7451391,0,0,0,-946.6745,0,3,2,2019,15,3,36,38,1,3,1,8.3359642,8.3359642,0,0,0,0,0,1,1,0,0,0,42.46,54.85,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,652,-46663.242,-60104.234,0,0,1042.6851 -7476,9207,16592,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.5744543,8.1969242,8.1208677,0,0,-826.07385,0,3,-9,2019,9,0,16,24,1,0,0,11.369542,11.369542,0,0,0,0,0,1,1,0,8.0425863,7.722609,61.29,46.02,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,5575,35592.535,14757.748,0,0,2498.0071 -7477,9208,16593,-9,16594,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.0319,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 -7477,9208,16594,-9,-9,-9,1,0,33,0,3,0,1,1,-9,0,5,7.4450769,7.4657245,0,0,0,-1105.9886,0,3,3,2019,0,0,24,24,1,0,0,9.8512506,9.8512506,0,0,0,0,0,1,1,0,0,0,67.33,43.48,-9,-9,10,2,3,0,0,8,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 -7477,9208,16595,-9,16594,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.61133,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 -7477,9208,16596,-9,16594,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.38873,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,0,1116.5,294132.25,6714.8701,0,0,2495.0276 -7478,9209,16597,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1086.9127,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,1.666666666666667,1,1,0,0,8,13,1,1,732,43441.324,74287.203,0,0,784.20441 -7478,9210,16598,-9,-9,16597,1,0,22,0,0,0,1,1,-9,0,5,8.7161121,8.0896626,0,0,0,-1051.1351,-9,-9,1,2019,9,0,38,0,1,0,0,14.234852,14.234852,0,0,0,0,0,1,1,0,0,0,52.27,57.22,-9,-9,6.666666666666667,1,1,0,0,2,13,4,1,2443,-31668.057,-52825.539,0,0,1569.1809 -7479,9211,16599,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,9.3280144,9.7643032,7.9516025,0,0,-1023.4338,0,2,2,2019,5,0,90,90,1,0,0,15.3397,15.3397,0,0,0,0,0,0,0,0,7.7380314,8.015914,54.2,57.49,-9,-9,10,1,1,0,0,9,7,5,1,207,78216.469,127456.19,0,0,8502.3809 -7480,9212,16600,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,8.2495031,8.3054457,0,0,-870.36041,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2900906,8.1202993,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,964,784505,531703.25,279531.59,0,1908.1838 -7481,9213,16601,16602,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,9.0254278,9.4162254,0,10,-6,-32.024982,0,3,2,2019,11,0,40,42,1,0,0,24.917484,24.917484,0,0,0,0,0,0,0,0,8.5932446,0,57.33,53.46,51.59,42.57,6.666666666666667,1,1,0,0,10,6,5,1,273.5,2054729.8,1432187.3,178691.25,0,6511.1338 -7481,9213,16602,16601,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.8130941,8.6893158,0,10,6,-24.637007,0,-9,2,2019,12,1,42,41,1,1,0,17.570581,17.570581,0,0,0,0,0,0,0,0,6.8542452,0,51.59,42.57,57.33,53.46,6.666666666666667,1,1,0,0,11,6,5,1,273.5,2054729.8,1432187.3,178691.25,0,6511.1338 -7482,9214,16603,16604,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2369709,8.2231369,50,-1,-11.274035,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2986197,8.3492308,59.26,51.02,61.43,43.34,10,1,1,0,0,0,6,4,1,622.5,1340155.3,851187.25,338415.69,0,2862.4653 -7482,9214,16604,16603,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.6944461,6.6976061,50,1,17.344732,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2881372,6.7966352,61.43,43.34,59.26,51.02,8.333333333333334,1,1,0,0,4,6,4,1,622.5,1340155.3,851187.25,338415.69,0,2862.4653 -7483,9215,16605,-9,16607,16608,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.1973,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 -7483,9215,16606,-9,16607,16608,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.61084,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 -7483,9215,16607,16608,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.7891436,8.4310265,0,18,-1,156.6828,0,1,2,2019,10,0,52,47,1,0,0,10.69583,10.69583,0,0,0,0,27,1,1,0,1.3333081,0,48.2,52.06,42.12,61.5,8.333333333333334,1,1,0,0,8,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 -7483,9215,16608,16607,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.5507545,8.5446653,0,18,1,-4.4667559,0,1,1,2019,11,0,54,48,1,0,0,10.676622,10.676622,0,0,0,0,2,1,1,0,0,0,42.12,61.5,48.2,52.06,6.666666666666667,1,1,0,0,10,13,5,1,401.5,949241.44,774610.63,276043.94,195150.27,5508.8872 -7484,9216,16609,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.6541777,8.6329422,0,0,0,-964.00842,0,-9,-9,2019,13,3,35,35,1,3,0,16.846336,16.846336,0,0,0,0,0,0,0,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,762,50372.641,-20216.057,0,0,2323.6289 -7485,9217,16610,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,7.9795413,7.9278479,0,0,0,-817.5191,0,3,2,2019,19,6,30,20,1,6,0,9.6032553,9.6032553,0,0,0,0,14.5,1,1,0,0,0,29.71,64.88,-9,-9,1.666666666666667,3,4,0,1,8,8,4,0,353,190320.89,-53643.949,0,0,2167.533 -7486,9218,16611,16612,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,6.675117,6.8645706,0,27,0,11.000052,0,3,2,2019,11,0,12,12,1,0,0,8.1171017,8.1171017,0,0,0,0,0,0,0,0,1.8030213,0,39.63,51.79,58.14,44.9,6.666666666666667,1,1,0,0,9,10,4,1,690,1456335.9,1104050.4,423365.28,10897.27,2828.1621 -7486,9218,16612,16611,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.3627033,8.2497301,7.3154602,27,0,93.208405,0,2,2,2019,11,2,22,22,1,2,0,15.794197,15.794197,0,0,0,0,0,0,0,0,6.9757013,7.7415833,58.14,44.9,39.63,51.79,8.333333333333334,1,1,0,0,9,10,4,1,690,1456335.9,1104050.4,423365.28,10897.27,2828.1621 -7487,9219,16613,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.4646215,7.4683833,0,0,-931.52527,0,3,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,1.5431972,7.4870415,49.11,42.15,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1019,578848.63,181321.3,246631.61,0,1317.7665 -7488,9220,16614,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.1184158,8.9137182,7.507853,0,0,-873.95673,0,1,1,2019,10,0,26,26,1,0,0,18.680923,18.680923,0,0,0,0,0,0,0,0,0,7.3639297,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,483,1122486.1,708665.88,299274.31,0,2585.1902 -7489,9221,16615,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,6.5723143,6.5858636,0,0,-946.8158,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,3.7120218,0,0,0,1,1,0,5.1153488,6.3861403,57.32,38.32,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,59,517728.09,0,314920,0,968.40417 -7490,9222,16616,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,8.0384417,7.6338873,0,0,-1065.6987,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.9926982,48.98,51.81,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,453,347288.53,199393.83,118291.83,0,2899.0706 -7491,9223,16617,16618,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,9.7258835,9.5678854,0,4,-2,13.055988,0,3,-9,2019,7,0,38,12,1,0,0,39.213688,39.213688,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,6,5,5,1,690,327869.69,141731.16,145659.06,73967.492,7788.7383 -7491,9223,16618,16617,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,9.0948324,9.1915274,0,4,2,18.757301,0,-9,-9,2019,2,0,48,60,1,0,0,22.388927,22.388927,0,0,0,0,0,0,0,0,6.1253495,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,690,327869.69,141731.16,145659.06,73967.492,7788.7383 -7492,9224,16619,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.7847214,7.3092599,0,0,-815.54956,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,1.7530822,11.822099,22.822878,0,1,1,0,4.1932631,7.6024885,47.05,35.09,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,887,245295.28,162753.66,273596.97,37270.469,1495.1724 -7493,9225,16620,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.9024606,8.1335688,0,0,0,-962.3175,0,1,2,2019,13,1,43,48,1,1,0,8.987154,8.987154,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,3.333333333333333,1,1,0,0,11,2,4,1,618,5203.8999,-66307.008,0,0,1117.8905 -7494,9226,16621,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.934381,6.0432076,0,0,-996.44427,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0157924,56.91,49.54,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,247,-275379.41,37617.359,229341.67,0,1150.3549 -7495,9227,16622,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.9960537,8.1729736,0,0,0,-1044.6233,-9,2,2,2019,16,4,42,0,1,4,0,9.403944,9.403944,0,0,0,0,0,1,1,0,0,0,39.27,60.24,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,732,-330034.5,81593.125,0,0,1750.3188 -7496,9228,16623,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,9.1753531,8.9636421,0,0,0,-945.51898,0,2,2,2019,7,0,49,44,1,0,0,14.84741,14.84741,0,0,0,0,0,1,1,0,0,0,50.27,45.68,-9,-9,5,1,1,0,0,9,5,5,0,2360,301014.31,214401.13,165153.77,64998.402,2585.6184 -7497,9229,16624,16625,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.7392969,7.8171511,7,2,136.38051,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.4112091,7.7064123,45.36,29.2,65.3,26.47,10,1,1,0,0,0,9,4,1,1215,2220571,801816.38,777732.38,0,3410.8787 -7497,9229,16625,16624,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.4127975,7.4924655,56,-2,-168.12727,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2575846,65.3,26.47,45.36,29.2,8.333333333333334,1,1,0,0,0,9,4,1,1215,2220571,801816.38,777732.38,0,3410.8787 -7498,9230,16626,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,5.7004442,6.0881667,0,0,-1015.7773,0,3,3,2019,26,8,0,0,4,8,0,0,0,1,1.9485272,17.638195,27.800529,0,1,1,0,1.188297,5.7342825,19.91,25.08,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,488,21946.098,35584.914,0,0,1187.3055 -7499,9231,16627,16628,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,9.1825523,9.3627634,0,3,8,79.738495,-9,-9,-9,2019,8,0,40,0,1,0,0,31.184023,31.184023,0,0,0,0,0,0,0,0,3.3298125,0,58.05,51.82,46.23,44.94,8.333333333333334,1,1,0,0,13,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 -7499,9231,16628,16627,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,7.5074201,7.5788159,0,3,-8,-69.610023,-9,2,2,2019,8,1,8,0,1,1,0,23.087009,23.087009,0,0,0,0,0,0,0,0,0,0,46.23,44.94,58.05,51.82,8.333333333333334,4,2,0,0,7,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 -7499,9231,16629,-9,16628,16627,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.1115,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 -7499,9231,16630,-9,16628,16627,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.81219,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,767.5,1203830.4,795508.81,381551.44,143212.09,4177.2642 -7500,9232,16631,-9,16633,16632,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-853.09302,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,5,1,1165,832334.69,621328.81,264857.75,114085.78,6402.3848 -7500,9232,16632,16633,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,8.5931959,8.5455227,0,10,0,28.168079,0,-9,-9,2019,20,8,50,55,1,8,0,15.03372,15.03372,0,0,0,0,0,0,0,0,.84781736,0,35.55,60.77,51.25,50.81,3.333333333333333,1,1,0,0,8,4,5,1,1165,832334.69,621328.81,264857.75,114085.78,6402.3848 -7500,9232,16633,16632,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.415637,9.6171284,0,11,0,9.7737751,0,2,1,2019,11,1,5,45,1,1,0,299.70206,299.70206,0,0,0,0,0,0,0,0,0,0,51.25,50.81,35.55,60.77,8.333333333333334,2,3,0,0,12,4,5,1,1165,832334.69,621328.81,264857.75,114085.78,6402.3848 -7501,9233,16634,-9,16640,16637,1,0,18,1,4,0,2,2,1,0,5,0,6.4591994,6.4427767,0,0,-943.1474,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,6.4648876,0,51.73,58.82,-9,-9,10,1,1,0,0,0,12,2,1,928,-155915.09,0,0,0,882.96106 -7501,9233,16635,-9,16634,-9,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-937.14398,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,2,1,928,-155915.09,0,0,0,882.96106 -7501,9234,16636,-9,16640,16637,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1145.2194,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 -7501,9234,16637,16640,-9,-9,1,1,45,1,4,0,2,2,-9,0,4,8.1772232,8.1362123,0,10,7,-5.4904861,0,3,3,2019,17,5,38,36,1,5,0,9.2938108,9.2938108,0,0,0,0,0,1,0,1,0,0,36.32,53.56,46.85,51.26,8.333333333333334,1,1,0,0,11,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 -7501,9234,16638,-9,16640,16637,1,1,16,1,4,1,3,0,-9,0,5,0,0,0,0,0,-923.21198,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.69,58.07,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 -7501,9234,16639,-9,16640,16637,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-878.10858,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 -7501,9234,16640,16637,-9,-9,1,0,38,1,4,0,2,2,-9,0,3,7.4850302,7.6116786,0,10,-7,178.39763,0,3,3,2019,6,0,27,27,1,0,0,8.4421024,8.4421024,0,0,0,0,0,1,0,1,0,0,46.85,51.26,36.32,53.56,10,1,1,0,0,11,12,3,1,1389.8,278716.63,383951.34,110277.34,65084.156,2923.3167 -7502,9235,16641,-9,16642,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.5027,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,643.66669,635.6875,0,0,0,1481.7773 -7502,9235,16642,-9,-9,-9,1,0,31,1,2,0,1,1,-9,1,2,7.3628225,7.496335,0,0,0,-1103.5065,0,2,-9,2019,8,0,23,0,1,0,0,9.022994,9.022994,0,0,0,0,7,1,1,0,0,0,48.29,47.3,-9,-9,8.333333333333334,3,4,0,0,1,7,2,0,643.66669,635.6875,0,0,0,1481.7773 -7502,9235,16643,-9,16642,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.7151,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,2,0,643.66669,635.6875,0,0,0,1481.7773 -7503,9236,16644,-9,16645,-9,1,0,17,0,1,1,3,0,0,1,2,0,0,0,0,0,-1036.5811,-9,1,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.51,43.78,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,497.5,-108751.62,0,0,0,2628.9556 -7503,9236,16645,-9,-9,-9,1,0,41,0,1,0,1,1,-9,1,3,0,6.8264661,6.8817391,0,0,-1030.5952,0,2,2,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,6.4451184,0,29.57,58.13,-9,-9,10,1,1,0,0,7,1,2,0,497.5,-108751.62,0,0,0,2628.9556 -7504,9237,16646,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4551811,8.7622566,0,0,0,-985.87799,0,3,2,2019,9,0,40,40,1,0,0,14.717392,14.717392,0,0,0,0,0,1,1,0,1.632509,0,46,50,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,1832,353040.88,210653.92,172385,96920.313,1543.969 -7505,9238,16647,16648,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.9880443,8.0028229,4.6300645,8,-21,53.395378,0,-9,-9,2019,12,0,39,39,1,0,0,8.2889967,8.2889967,0,0,0,0,7,0,0,0,0,5.0562282,39.44,57.55,37.6,43.76,3.333333333333333,1,1,0,1,10,4,3,0,473,686589.13,698162.75,131639.25,0,1117.978 -7505,9238,16648,16647,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,5.9457846,5.8864202,22,21,-73.590851,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,0,6.0644383,37.6,43.76,39.44,57.55,6.666666666666667,1,1,0,0,7,4,3,0,473,686589.13,698162.75,131639.25,0,1117.978 -7506,9239,16649,16650,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.9731236,8.1591835,4,11,-128.84666,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.1267214,8.1216431,57.16,56.15,33.58,61.56,8.333333333333334,1,1,0,0,0,10,4,1,832,1954685.9,1055326.3,650136.75,0,3820.1719 -7506,9239,16650,16649,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.802259,8.0493536,4,-11,-145.08708,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,9.0242195,8.0709753,33.58,61.56,57.16,56.15,5,1,1,0,0,0,10,4,1,832,1954685.9,1055326.3,650136.75,0,3820.1719 -7507,9240,16651,-9,16653,-9,1,0,50,0,0,0,2,2,-9,1,2,0,7.3431649,7.2546258,0,0,-882.36499,0,3,2,2019,34,12,0,29,3,12,0,0,0,0,0,0,0,0,1,0,1,7.2579632,0,23.53,39.78,-9,-9,0,1,1,1,0,7,10,3,1,638,150118.23,0,0,0,1988.1697 -7507,9240,16652,-9,16651,-9,1,0,17,0,0,1,3,0,0,1,3,0,0,0,0,0,-1010.324,-9,2,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,31.81,56.96,-9,-9,5,1,1,0,0,0,10,3,1,638,150118.23,0,0,0,1988.1697 -7507,9241,16653,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1085.0704,0,2,2,2019,24,9,0,0,4,9,0,0,0,0,0,0,0,0,1,0,1,0,0,45.3,24.15,-9,-9,3.333333333333333,1,1,0,0,10,10,1,1,316,-37451.105,71521.32,0,0,587.9173 -7508,9242,16654,16655,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.8216953,7.3936553,53,1,16.672709,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4503436,6.6108484,57.16,56.15,44.49,35.51,10,1,1,0,0,7,10,2,1,726.5,548089.06,279314.16,169831.58,0,1730.0002 -7508,9242,16655,16654,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,53,-1,-36.690556,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.49,35.51,57.16,56.15,5,1,1,0,0,3,10,2,1,726.5,548089.06,279314.16,169831.58,0,1730.0002 -7509,9243,16656,-9,-9,-9,1,1,26,0,0,0,3,3,-9,0,2,8.3604879,8.2710953,0,0,0,-923.62494,0,3,3,2019,8,2,52,16,1,2,0,6.5447555,6.5447555,0,0,0,0,0,1,1,0,0,0,37.43,57.47,-9,-9,6.666666666666667,1,1,0,0,3,2,4,0,361,35672.805,0,0,0,1116.3833 -7510,9244,16657,-9,16658,16659,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9218,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,1786.6666,462343.5,345436.81,0,0,8563.332 -7510,9244,16658,16659,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,6.9136004,6.9649243,0,6,-2,-79.076294,0,2,2,2019,12,0,14,17,1,0,0,7.278048,7.278048,0,0,0,0,0,0,0,0,0,0,42.76,57.53,54.79,55.86,8.333333333333334,1,1,0,0,1,5,5,1,1786.6666,462343.5,345436.81,0,0,8563.332 -7510,9244,16659,16658,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.8349457,9.6614637,0,6,2,-63.569004,0,2,2,2019,11,0,57,62,1,0,0,35.072552,35.072552,0,0,0,0,0,0,0,0,3.3599064,0,54.79,55.86,42.76,57.53,3.333333333333333,1,1,0,0,7,5,5,1,1786.6666,462343.5,345436.81,0,0,8563.332 -7511,9245,16660,16661,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,54,-5,-11.595748,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7554946,0,61.43,43.34,57.73,54.53,10,1,1,0,0,9,1,4,1,513,2081928.8,531712.75,854886.94,0,3601.7505 -7511,9245,16661,16660,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.400939,8.4384661,54,5,55.817364,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4498247,8.7042341,57.73,54.53,61.43,43.34,8.333333333333334,1,1,0,0,0,1,4,1,513,2081928.8,531712.75,854886.94,0,3601.7505 -7512,9246,16662,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3706818,8.3757296,0,0,0,-1007.8425,0,2,1,2019,11,0,37,38,1,2,0,12.608166,12.608166,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,9,8,4,1,332,87050.039,148574.94,0,0,1392.8358 -7513,9247,16663,16664,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.2606859,8.1269531,0,17,-1,120.35851,0,2,2,2019,11,1,38,33,1,1,0,10.008229,10.008229,0,0,0,0,0,1,1,0,0,0,45.91,59.89,52.43,55.57,8.333333333333334,1,1,0,0,8,2,4,1,521.33331,722456.5,481870.63,164765.88,-8013.8032,2864.0637 -7513,9247,16664,16663,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.1850252,8.489027,0,17,1,-202.54893,0,2,2,2019,5,0,36,36,1,0,0,12.080579,12.080579,0,0,0,0,0,1,1,0,4.2360458,0,52.43,55.57,45.91,59.89,8.333333333333334,1,1,0,0,8,2,4,1,521.33331,722456.5,481870.63,164765.88,-8013.8032,2864.0637 -7513,9247,16665,-9,16663,16664,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.2264,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,4,1,521.33331,722456.5,481870.63,164765.88,-8013.8032,2864.0637 -7514,9248,16666,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.1627498,6.3357682,0,0,-1011.4664,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.3135633,53,47,-9,-9,7,1,1,0,0,0,11,2,1,734,164274.39,147490.8,0,0,237.88022 -7515,9249,16667,16668,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,9.1015635,9.0592299,54,1,97.259781,0,-9,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6817374,9.0696917,61.16,53.18,52,46,0,1,1,0,0,0,10,4,1,416.5,2232603,794232.75,708688.75,0,4217.3027 -7515,9249,16668,16667,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,54,-1,13.285532,0,-9,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,61.16,53.18,8,1,1,0,0,0,10,4,1,416.5,2232603,794232.75,708688.75,0,4217.3027 -7516,9250,16669,16670,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.4767928,7.6443586,34,3,115.82602,0,1,3,2019,9,0,0,17,3,0,0,0,0,0,0,0,0,2,0,0,0,3.0782874,7.8393283,53.61,52.37,49.58,55.59,8.333333333333334,1,1,1,0,11,7,5,1,284.5,958817.63,467008.44,463888.63,0,3967.665 -7516,9250,16670,16669,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.6606989,8.5318031,0,34,-3,25.971706,0,2,2,2019,9,0,60,55,1,0,0,8.9073906,8.9073906,0,0,0,0,0,0,0,0,0,0,49.58,55.59,53.61,52.37,3.333333333333333,1,1,0,0,13,7,5,1,284.5,958817.63,467008.44,463888.63,0,3967.665 -7517,9251,16671,16672,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0881281,8.3499908,0,7,-2,35.560295,0,2,3,2019,7,1,35,35,1,1,0,11.238283,11.238283,0,0,0,0,14.5,1,1,0,3.9073074,0,57.34,39.89,50.68,28.49,8.333333333333334,1,1,0,0,8,12,5,1,413.5,297612.44,231371.34,126953.46,0,4004.665 -7517,9251,16672,16671,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,7.9673162,8.1910715,7.1385188,7,2,-47.421764,0,3,3,2019,9,2,40,40,1,2,0,8.2827282,8.2827282,0,0,0,0,7,1,1,0,4.252934,7.1833081,50.68,28.49,57.34,39.89,5,1,1,0,0,6,12,5,1,413.5,297612.44,231371.34,126953.46,0,4004.665 -7518,9252,16673,-9,16674,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.29993,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,1,1,385,0,0,0,0,1917.3577 -7518,9252,16674,-9,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,0,0,0,0,0,-995.75507,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.09,51.14,-9,-9,6.666666666666667,2,3,0,1,0,4,1,1,385,0,0,0,0,1917.3577 -7519,9253,16675,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1027.399,0,2,3,2019,13,2,0,0,4,2,0,0,0,1,0,10.457726,0,0,1,1,0,0,0,43.27,20.92,-9,-9,5,1,1,0,0,0,1,1,1,990,-178618.89,0,0,0,1617.5205 -7520,9254,16676,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.689786,7.7453942,0,0,0,-949.73828,0,2,2,2019,9,0,45,39,1,0,0,4.3525982,4.3525982,0,0,0,0,0,0,0,0,0,0,35.22,48.79,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,695,388525.59,22590.453,289913.03,31411.367,653.4082 -7521,9255,16677,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,6.1445918,5.7891841,0,0,-1013.6784,0,2,3,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.5775614,0,31.01,38.97,-9,-9,3.333333333333333,1,1,0,0,0,9,2,0,535,707198.69,136466.73,484954.59,0,1721.2881 -7522,9256,16678,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.8886514,7.891408,0,0,0,-1013.6147,0,2,2,2019,11,0,32,32,1,0,0,6.9497104,6.9497104,0,0,0,0,0,0,0,0,0,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,644,247827.13,36321.566,0,0,634.4278 -7523,9257,16679,16680,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,7.9491878,7.7977362,0,7,2,105.50038,0,1,2,2019,10,0,38,48,1,0,0,8.843709,8.843709,0,0,0,0,0,1,1,0,3.9265118,0,54.79,55.86,41.23,59.35,8.333333333333334,1,1,0,0,7,4,4,1,479.66666,-30119.311,158592.94,55037.809,52538.375,2445.4951 -7523,9257,16680,16679,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,7.8948126,7.9864416,0,7,-2,-38.916809,0,1,1,2019,11,2,23,23,1,2,0,11.244284,11.244284,0,0,0,0,0,1,1,0,3.4037514,0,41.23,59.35,54.79,55.86,6.666666666666667,1,1,0,0,5,4,4,1,479.66666,-30119.311,158592.94,55037.809,52538.375,2445.4951 -7523,9257,16681,-9,16680,16679,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.5831,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,479.66666,-30119.311,158592.94,55037.809,52538.375,2445.4951 -7524,9258,16682,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.8659434,7.8117976,0,0,0,-986.43646,0,2,2,2019,7,0,40,40,1,0,0,9.189764,9.189764,0,0,0,0,0,0,0,0,.11522633,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,163,147930.3,0,0,0,1595.9448 -7525,9259,16683,16684,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,7.4777212,7.6858387,7,6,-58.077271,0,2,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.7636437,7.848752,53,23.02,32.37,59.41,8.333333333333334,1,1,0,0,6,11,5,1,311,1487625.5,1329937.6,204711.17,0,6014.1797 -7525,9259,16684,16683,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.9832106,8.495697,0,7,-6,-25.612413,0,3,3,2019,12,1,40,41,1,1,0,21.617369,21.617369,0,0,0,0,2,1,1,0,8.6762409,0,32.37,59.41,53,23.02,8.333333333333334,1,1,0,0,9,11,5,1,311,1487625.5,1329937.6,204711.17,0,6014.1797 -7526,9260,16685,16686,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.0208454,7.8896294,0,8,-5,31.948252,0,-9,2,2019,12,0,40,40,1,2,0,7.6486287,7.6486287,0,0,0,0,0,0,0,0,0,0,18.58,51.23,49.63,54.22,10,1,1,0,0,8,5,4,0,747.5,503370.13,372547.56,99796.453,0,2707.1094 -7526,9260,16686,16685,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.0478096,7.7019925,0,8,5,35.821468,0,3,3,2019,9,0,37,37,1,0,0,10.119192,10.119192,0,0,0,0,0,0,0,0,0,0,49.63,54.22,18.58,51.23,6.666666666666667,1,1,0,0,10,5,4,0,747.5,503370.13,372547.56,99796.453,0,2707.1094 -7526,9261,16687,-9,16685,16686,1,0,23,0,0,0,2,2,-9,0,1,7.3772659,7.5092349,0,0,0,-1014.7469,-9,2,2,2019,9,1,35,0,1,1,1,4.9331784,4.9331784,0,0,0,0,0,0,0,0,0,0,48.57,43.34,-9,-9,10,1,1,0,0,10,5,3,0,662,457.21188,0,0,0,1093.0587 -7527,9262,16688,16689,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.0738764,8.0513668,0,11,0,95.290169,0,2,2,2019,20,8,40,38,1,8,0,7.5541573,7.5541573,0,0,0,0,0,0,0,0,.15540677,0,34.13,61.39,60.69,53.18,8.333333333333334,1,1,0,0,11,10,5,1,185,516227.78,101257.88,202419.22,191460.11,3485.075 -7527,9262,16689,16688,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.7043295,8.7232885,0,11,0,-153.66129,0,2,2,2019,7,0,36,37,1,0,0,21.034798,21.034798,0,0,0,0,0,0,0,0,0,0,60.69,53.18,34.13,61.39,8.333333333333334,1,1,0,0,12,10,5,1,185,516227.78,101257.88,202419.22,191460.11,3485.075 -7528,9263,16690,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,8.1692295,8.4825907,0,0,-1046.0271,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3869758,8.1582241,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,541,948647.38,536758.38,307969.25,0,1839.0796 -7529,9264,16691,16692,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,0,0,10,5,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.43466,0,57.06,57.76,45.9,15.65,8.333333333333334,1,1,0,0,8,12,2,1,367,1072542.5,212973.36,260286.98,0,2992.9575 -7529,9264,16692,16691,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,0,0,10,-5,0,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,45.9,15.65,57.06,57.76,3.333333333333333,1,1,0,0,7,12,2,1,367,1072542.5,212973.36,260286.98,0,2992.9575 -7530,9265,16693,16694,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,0,0,44,4,21.464525,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.88,39.09,60.3,46.58,6.666666666666667,1,1,0,0,0,12,2,0,1596,201492.09,90323.836,111435.39,0,691.90381 -7530,9265,16694,16693,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.2656932,7.4312472,0,44,-4,-16.46793,-9,3,3,2019,6,0,24,0,1,0,0,6.182343,6.182343,0,0,0,0,0,1,1,0,0,0,60.3,46.58,42.88,39.09,5,1,1,0,0,8,12,2,0,1596,201492.09,90323.836,111435.39,0,691.90381 -7531,9266,16695,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,6.9062963,6.8956728,0,0,-941.52814,0,3,-9,2019,20,8,0,0,4,8,0,0,0,1,0,.037924983,0,0,1,1,0,7.3710737,6.891479,30.42,22.97,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,1627,333244.53,112329.48,191856.17,0,1913.7766 -7532,9267,16696,16697,-9,-9,1,0,47,0,0,0,2,2,-9,1,4,7.8095045,7.7121997,0,29,-2,-35.66473,0,3,-9,2019,7,0,40,34,1,0,0,8.0282001,8.0282001,0,0,0,0,27,1,1,0,0,0,52.82,53.97,53,55,8.333333333333334,2,3,0,0,9,6,3,1,1717.5,90155.328,0,0,0,2025.9681 -7532,9267,16697,16696,16698,16699,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,7,2,-47.592968,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.0981009,0,53,55,52.82,53.97,8,2,3,0,0,0,6,3,1,1717.5,90155.328,0,0,0,2025.9681 -7532,9268,16698,16699,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.8196192,4.9586658,7,-8,-34.542458,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.9866014,51,47,54,46,7,2,3,0,0,0,6,2,1,258,275894.75,95391.508,0,0,1571.7041 -7532,9268,16699,16698,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,7,8,52.572647,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51,47,8,2,3,0,0,0,6,2,1,258,275894.75,95391.508,0,0,1571.7041 -7532,9269,16700,-9,16696,16697,1,1,26,0,0,0,1,1,-9,0,4,7.7449989,7.8396492,0,0,0,-973.59552,0,2,3,2019,10,0,37,0,1,1,1,5.9664116,5.9664116,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,1642,-13809.909,0,0,0,1376.7181 -7532,9270,16701,-9,16696,16697,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-981.62689,1,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,6,2,1,805,-29907.342,0,0,0,0 -7533,9271,16702,16703,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.0999422,8.2819433,7.0623341,6,-4,-51.700298,0,2,2,2019,7,0,40,46,1,0,0,8.4517374,8.4517374,0,0,0,0,0,1,1,0,0,7.3615408,50.08,55.33,55.61,29.04,8.333333333333334,1,1,0,0,6,13,5,1,1736.5,1189483.8,880499.75,214987.34,3181.8306,4844.9019 -7533,9271,16703,16702,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.5182271,8.0939293,6,4,-76.479797,0,2,3,2019,13,3,0,0,4,3,0,0,0,1,0,5.0494437,0,0,1,1,0,0,7.7476101,55.61,29.04,50.08,55.33,8.333333333333334,1,1,0,0,0,13,5,1,1736.5,1189483.8,880499.75,214987.34,3181.8306,4844.9019 -7534,9272,16704,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.1083322,7.3517971,0,0,0,-1058.4541,0,3,2,2019,9,0,20,20,1,0,0,7.760931,7.760931,0,0,0,0,0,0,0,0,0,0,57.51,42.37,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,278,114912.35,-35365.715,141246.75,35893.84,693.0976 -7534,9273,16705,-9,16704,-9,1,1,20,0,0,0,2,2,-9,0,4,7.7453356,7.8579102,0,0,0,-1039.2297,-9,1,-9,2019,11,0,36,0,1,2,1,7.3903756,7.3903756,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,12,3,0,1056,-139760.2,0,0,0,1317.5176 -7535,9274,16706,16708,-9,-9,1,1,30,0,1,0,2,2,-9,1,3,0,0,0,7,1,0,0,-9,-9,2019,11,0,0,48,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.2,48.71,46.08,57.2,5,1,1,1,0,0,5,1,0,695.66669,-9175.3662,0,0,0,1891.075 -7535,9274,16707,-9,16708,16706,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.3538,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,695.66669,-9175.3662,0,0,0,1891.075 -7535,9274,16708,16706,-9,-9,1,0,29,0,1,0,3,3,-9,1,3,0,0,0,7,-1,0,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46.08,57.2,35.2,48.71,6.666666666666667,1,1,0,0,0,5,1,0,695.66669,-9175.3662,0,0,0,1891.075 -7536,9275,16709,16711,-9,-9,1,1,45,0,2,0,2,2,-9,1,2,0,0,0,12,11,0,-9,-9,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,44.24,35.51,33.79,19.89,5,1,1,0,0,1,10,2,0,1973,125948.37,-16156.515,0,0,4561.1699 -7536,9275,16710,-9,16711,16709,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-909.31677,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,2,0,1973,125948.37,-16156.515,0,0,4561.1699 -7536,9275,16711,16709,-9,-9,1,0,34,0,2,0,2,2,-9,1,1,0,0,0,12,-11,0,-9,2,2,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,7,1,1,0,0,0,33.79,19.89,44.24,35.51,5,1,1,0,0,0,10,2,0,1973,125948.37,-16156.515,0,0,4561.1699 -7537,9276,16712,16713,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,38,-3,8.0936146,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,1,0,0,0,53.62,48.74,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,1433.5,855667.13,132743.33,537742.06,0,4069.1021 -7537,9276,16713,16712,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.4362917,9.4974136,0,38,3,-23.149702,0,1,2,2019,3,0,45,44,1,0,0,32.032879,32.032879,0,0,0,0,2,1,1,0,0,0,57.06,57.76,53.62,48.74,8.333333333333334,1,1,0,0,8,9,5,1,1433.5,855667.13,132743.33,537742.06,0,4069.1021 -7538,9277,16714,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5352974,8.6707306,6.8036928,0,0,-917.51013,0,3,3,2019,9,0,40,38,1,0,0,14.994061,14.994061,0,0,0,0,0,1,1,0,5.3027687,7.2055898,59.71,45.35,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,262,1842539.8,414616.91,684046,0,2199.9946 -7539,9278,16715,16716,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,56,1,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,6.1588988,0,0,0,0,0,0,0,55,45,53,45,8,4,5,0,0,0,8,1,1,413.5,-42681.418,0,0,0,0 -7539,9278,16716,16715,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,6,-1,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,2.2342422,0,0,0,0,0,0,0,0,53,45,55,45,8,4,5,0,0,0,8,1,1,413.5,-42681.418,0,0,0,0 -7539,9279,16717,-9,16716,16715,1,0,50,0,0,0,1,1,-9,0,2,6.7632174,6.9138718,0,0,0,-1013.485,0,1,1,2019,7,0,18,18,1,0,0,8.0419512,8.0419512,0,0,0,0,0,0,0,0,0,0,57.57,49.69,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,628,132317.66,0,0,0,453.54306 -7539,9280,16718,-9,16717,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1054.865,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,2,0,0,0,8,1,1,254,185703.28,0,0,0,0 -7539,9281,16719,-9,16717,-9,1,1,23,0,0,0,2,2,1,0,4,8.4304161,8.0124788,0,0,0,-1057.5392,-9,1,1,2019,10,0,40,0,1,1,1,12.913507,12.913507,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,1,437,62789.684,0,0,0,1555.5966 -7540,9282,16720,-9,16721,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.0814,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,1107.6666,229522.63,-54148.031,0,0,995.90485 -7540,9282,16721,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.3470273,7.340723,0,0,0,-934.93378,0,3,3,2019,6,0,16,16,1,0,0,10.494482,10.494482,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,1107.6666,229522.63,-54148.031,0,0,995.90485 -7540,9282,16722,-9,16721,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-998.20087,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,2,0,1107.6666,229522.63,-54148.031,0,0,995.90485 -7541,9283,16723,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.8963394,8.047739,0,0,-921.14325,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,3.7896535,7.9564581,63.99,35.25,-9,-9,5,1,1,0,0,2,13,4,0,1186,109031.73,318358.94,0,0,1302.8483 -7542,9284,16724,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,4.5434003,4.4102321,0,0,-1049.0317,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6557131,55,45,-9,-9,8,1,1,0,0,0,13,2,1,879,678942.13,-40537.012,86034.859,0,1244.01 -7543,9285,16725,16726,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.9213276,8.7490683,0,9,-4,91.705505,0,-9,-9,2019,6,0,52,50,1,0,0,16.020903,16.020903,0,0,0,0,0,0,0,0,2.883754,0,63.97,49.13,54.96,53.17,10,1,1,0,0,12,12,5,1,466,30465.068,-6024.4946,101536.3,0,3661.9495 -7543,9285,16726,16725,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,5.4645391,5.6678891,9,4,-106.86736,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.6450721,5.4083142,54.96,53.17,63.97,49.13,8.333333333333334,1,1,0,0,7,12,5,1,466,30465.068,-6024.4946,101536.3,0,3661.9495 -7544,9286,16727,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,5.5093946,5.2649636,0,0,-1022.5374,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,5.3302469,0,0,1,1,0,5.9650035,5.3042307,48.46,14.79,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,119,335544.25,-47478.926,0,0,1498.3684 -7544,9287,16728,16729,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.0984383,7.930778,0,1,-2,8.4979734,-9,-9,-9,2019,11,0,41,0,1,0,0,9.0558357,9.0558357,0,0,0,0,2,1,1,0,0,0,60.87,44.96,59.7,53.75,8.333333333333334,1,1,0,0,1,1,4,1,215.5,136746.94,111745.18,167866.84,0,3185.2051 -7544,9287,16729,16728,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.7092557,8.3669395,7.4334497,1,2,-80.430321,-9,-9,-9,2019,6,0,41,0,1,0,0,4.5976305,4.5976305,0,0,0,0,2,1,1,0,0,7.5545273,59.7,53.75,60.87,44.96,10,1,1,0,0,7,1,4,1,215.5,136746.94,111745.18,167866.84,0,3185.2051 -7545,9288,16730,-9,16732,16731,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.28607,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 -7545,9288,16731,16732,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.7400665,8.63626,0,2,-1,58.544743,0,2,2,2019,7,0,40,45,1,0,0,17.591795,17.591795,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,7,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 -7545,9288,16732,16731,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.7463174,6.8240705,0,2,1,-74.745369,0,-9,-9,2019,10,0,20,20,1,0,0,4.5622249,4.5622249,0,0,0,0,0,1,1,0,0,0,59.53,56.44,57.06,57.76,8.333333333333334,1,1,0,0,2,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 -7545,9288,16733,-9,16732,16731,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.29297,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.0779148,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,951.25,260512.36,175683.23,225626.97,38094.48,2820.1348 -7546,9289,16734,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,3.7609477,3.7847888,0,0,-846.28351,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,1.4934231,0,0,1,1,0,0,3.478615,42.09,43.11,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,958,254102.31,-16736.07,94595.273,0,1837.7751 -7547,9290,16735,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2944632,8.6765099,6.8897614,0,0,-973.48523,0,-9,-9,2019,11,0,27,35,1,0,0,17.382725,17.382725,0,0,0,0,7,0,0,0,0,6.7661438,50.4,55.04,-9,-9,5,1,1,0,0,13,8,5,0,587,245071.17,-116969.16,216756.7,0,2795.2981 -7548,9291,16736,16737,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,8.6674566,9.0811634,6.8529391,5,2,-94.306793,0,2,1,2019,6,0,38,39,1,0,0,20.22917,20.22917,0,0,0,0,0,0,0,0,0,7.4996295,57.57,49.69,51.77,58.57,8.333333333333334,1,1,0,0,8,13,5,1,609.5,507274.06,433409.94,291817.25,83210.484,4551.3965 -7548,9291,16737,16736,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.9414234,7.6887951,0,5,-2,-34.144543,0,2,3,2019,9,0,39,46,1,0,0,7.1535931,7.1535931,0,0,0,0,0,0,0,0,6.2993345,0,51.77,58.57,57.57,49.69,8.333333333333334,1,1,0,0,4,13,5,1,609.5,507274.06,433409.94,291817.25,83210.484,4551.3965 -7549,9292,16738,-9,-9,-9,1,1,73,0,2,0,2,2,-9,0,3,8.4084463,8.3738165,0,0,0,-1120.5273,-9,3,3,2019,8,0,50,0,1,0,0,8.6725998,8.6725998,0,1.5034547,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,5,1,1,0,0,9,6,3,1,263,693411.06,664502.5,0,0,3222.9343 -7550,9293,16739,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-923.71277,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,43.24,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,381,39925.133,0,0,0,639.50635 -7551,9294,16740,16741,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.8338642,8.4662085,0,5,1,-82.427483,0,1,1,2019,18,8,40,41,1,8,0,15.155739,15.155739,0,0,0,0,2,1,1,0,.090543471,0,27.94,69.66,18.48,54.92,6.666666666666667,1,1,0,0,8,7,4,0,1100.5,-62968.289,50985.227,0,0,2755.457 -7551,9294,16741,16740,-9,-9,1,0,25,0,0,0,1,1,0,0,4,0,0,0,5,-1,-14.336147,-9,-9,-9,2019,32,11,0,0,2,11,0,0,0,0,0,0,0,2,1,1,0,1.1347262,0,18.48,54.92,27.94,69.66,3.333333333333333,1,1,0,0,3,7,4,0,1100.5,-62968.289,50985.227,0,0,2755.457 -7552,9295,16742,-9,16745,16743,1,0,18,1,2,1,2,0,-9,0,3,0,0,0,0,0,-870.48853,-9,1,2,2019,15,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,3.333333333333333,1,1,0,0,4,2,1,1,318,0,0,0,0,0 -7552,9296,16743,16745,-9,-9,1,1,51,1,2,0,2,2,-9,0,3,8.1700602,8.1135607,0,1,8,-18.441662,-9,-9,-9,2019,10,0,40,0,1,0,0,9.1314325,9.1314325,0,0,0,0,0,1,1,0,0,0,55.36,51.57,48.87,58.55,8.333333333333334,1,1,0,0,11,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 -7552,9296,16744,-9,16745,16743,1,1,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.25018,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 -7552,9296,16745,16743,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,7.9956684,8.3041086,0,1,-8,77.037323,-9,2,2,2019,12,0,38,0,1,0,0,10.562813,10.562813,0,0,0,0,0,1,1,0,0,0,48.87,58.55,55.36,51.57,3.333333333333333,1,1,0,0,8,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 -7552,9296,16746,-9,16745,16743,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.15967,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,464.25,778057.75,404959.09,145977.16,0,3695.5518 -7553,9297,16747,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.1616416,6.3274102,0,0,-988.12299,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.4530287,51,46,-9,-9,8,3,4,0,0,0,8,2,0,104,135277.36,69599.258,0,0,1030.3544 -7554,9298,16748,-9,16749,16750,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.801,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,627,124954.7,106146.36,245410.98,182788.36,3194.2271 -7554,9298,16749,16750,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,8.1523876,8.3418055,0,13,-6,-55.842545,0,2,2,2019,7,1,41,34,1,1,0,14.37487,14.37487,0,0,0,0,0,1,1,0,2.8818393,0,49.91,56.93,35.39,55.43,8.333333333333334,1,1,0,0,9,10,5,1,627,124954.7,106146.36,245410.98,182788.36,3194.2271 -7554,9298,16750,16749,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.5572519,8.3235312,0,13,6,9.4535789,0,2,2,2019,23,11,45,47,1,11,0,14.63405,14.63405,0,0,0,0,0,1,1,0,4.4678669,0,35.39,55.43,49.91,56.93,3.333333333333333,1,1,0,0,9,10,5,1,627,124954.7,106146.36,245410.98,182788.36,3194.2271 -7555,9299,16751,16752,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,7.629982,7.6418557,31,0,150.74559,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5395365,7.6063771,60.02,56.42,54.69,57.47,10,1,1,0,0,5,9,4,1,229,1491278.5,1218589.8,304110.78,0,2347.3779 -7555,9299,16752,16751,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,7.8163342,8.1282072,6.4539204,32,0,-14.18112,0,2,1,2019,7,0,15,25,1,0,0,20.051178,20.051178,0,0,0,0,0,1,1,0,3.9152582,6.3912463,54.69,57.47,60.02,56.42,8.333333333333334,1,1,0,0,8,9,4,1,229,1491278.5,1218589.8,304110.78,0,2347.3779 -7556,9300,16753,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.7064581,7.7663603,0,0,-996.63715,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,3.0312457,0,18.437635,0,1,1,0,.93832076,7.37673,46.74,49.89,-9,-9,0,1,1,0,0,0,10,3,1,276,569039.94,263412.84,293375.28,0,1261.6821 -7557,9301,16754,16755,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.8564081,7.8882418,0,3,-1,-56.704464,0,-9,-9,2019,4,1,40,40,1,1,0,8.3902531,8.3902531,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.07,60.93,10,2,3,0,0,2,5,3,0,522.5,1233.7656,40157.07,185290.39,145528.66,2209.876 -7557,9301,16755,16754,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,6.966784,6.7137871,0,3,1,-71.11161,0,-9,-9,2019,8,2,20,30,1,2,0,5.301652,5.301652,0,0,0,0,0,1,1,0,0,0,41.07,60.93,62.39,56.71,10,2,3,0,0,7,5,3,0,522.5,1233.7656,40157.07,185290.39,145528.66,2209.876 -7558,9302,16756,16758,-9,-9,1,1,44,1,1,0,1,1,-9,0,4,9.1787348,8.8623905,0,8,11,30.553431,0,-9,-9,2019,7,0,40,46,1,0,0,24.404871,24.404871,0,0,0,0,0,1,1,0,1.1333599,0,57.16,56.15,38.69,61.75,8.333333333333334,1,1,0,0,7,9,5,1,892.33331,1025989.1,332559.91,0,0,6101.8232 -7558,9302,16757,-9,16758,16756,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.7602,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,892.33331,1025989.1,332559.91,0,0,6101.8232 -7558,9302,16758,16756,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,8.3446417,8.6708994,0,8,-11,88.894722,0,2,2,2019,13,1,47,47,1,1,0,12.064975,12.064975,0,0,0,0,0,1,1,0,7.5868835,0,38.69,61.75,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,892.33331,1025989.1,332559.91,0,0,6101.8232 -7559,9303,16759,16760,-9,-9,1,1,75,0,1,0,2,2,-9,0,4,0,5.9099741,5.7856836,55,2,-108.40322,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.0209827,5.7253861,48.85,58.56,50.93,54.77,6.666666666666667,1,1,0,0,0,5,3,1,602.5,302111.53,122423.33,197712.69,3257.7844,3276.2241 -7559,9303,16760,16759,-9,-9,1,0,73,0,1,0,2,2,-9,0,4,0,7.9800353,8.1654615,55,-2,-67.964447,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.319644,6.976666,50.93,54.77,48.85,58.56,8.333333333333334,1,1,0,0,0,5,3,1,602.5,302111.53,122423.33,197712.69,3257.7844,3276.2241 -7560,9304,16761,16764,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,5.9896069,5.7692094,0,18,-3,63.633778,0,2,2,2019,5,0,7,5,1,0,0,5.1838756,5.1838756,0,0,0,0,0,1,1,0,0,0,57.06,57.76,56.62,52.36,10,1,1,0,0,2,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 -7560,9304,16762,-9,16761,16764,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.7266,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 -7560,9304,16763,-9,16761,16764,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.69861,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 -7560,9304,16764,16761,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,7.7503824,7.5584278,0,13,3,-78.093399,0,2,2,2019,8,1,40,39,1,1,0,6.9322739,6.9322739,0,0,0,0,0,1,1,0,0,0,56.62,52.36,57.06,57.76,10,1,1,0,0,4,7,3,1,492.5,-53033.676,70908.266,0,0,2172.2434 -7561,9305,16765,-9,16768,16767,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.3068,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 -7561,9305,16766,-9,16768,16767,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1165.9945,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,2,3,-9,0,0,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 -7561,9305,16767,16768,-9,-9,1,1,40,0,2,0,2,2,-9,0,2,6.9659491,6.9925132,0,18,4,116.92956,0,3,3,2019,6,2,24,54,1,2,0,6.6675458,6.6675458,0,0,0,0,0,1,1,0,0,0,45.26,44.36,49,56,8.333333333333334,2,3,0,0,8,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 -7561,9305,16768,16767,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,18,-4,-22.304264,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,45.26,44.36,7,2,3,0,0,0,8,2,0,1019.25,80116.539,-25368.053,0,0,1743.4873 -7562,9306,16769,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1025.9755,-9,-9,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,52.04,-9,-9,10,1,1,0,0,0,2,2,0,621,397874.91,0,0,0,1797.218 -7563,9307,16770,16771,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.8320341,7.7824326,0,28,-5,-94.168312,0,3,-9,2019,22,7,15,6,1,7,0,17.459846,17.459846,0,0,0,0,111,1,1,0,0,0,35.07,28.93,21.37,22.93,1.666666666666667,2,3,0,1,8,10,2,1,587.33331,236359.61,0,0,0,902.86151 -7563,9307,16771,16770,-9,-9,1,1,49,0,1,0,2,2,-9,1,1,0,0,0,28,5,19.498871,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.37,22.93,35.07,28.93,0,2,3,0,1,11,10,2,1,587.33331,236359.61,0,0,0,902.86151 -7563,9307,16772,-9,16770,16771,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1109.8344,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,10,2,1,587.33331,236359.61,0,0,0,902.86151 -7563,9308,16773,-9,16770,16771,1,0,20,0,1,0,2,2,-9,0,3,6.4419851,6.8420148,0,0,0,-1080.9064,0,2,2,2019,19,7,25,24,1,7,1,4.7473369,4.7473369,0,0,0,0,0,1,1,0,0,0,44.89,33.11,-9,-9,5,2,3,0,0,4,10,2,1,4841,-73120.992,-12724.189,0,0,494.73657 -7564,9309,16774,16775,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.2207112,7.4038177,5,2,26.670771,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5079393,57.33,53.46,50.75,16.34,8.333333333333334,1,1,0,0,0,12,2,1,1044,455323.81,193854.91,166130.44,0,1587.3062 -7564,9309,16775,16774,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,51,-2,-41.000492,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,134.31683,0,0,1,1,0,0,0,50.75,16.34,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,1044,455323.81,193854.91,166130.44,0,1587.3062 -7565,9310,16776,16777,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.0685453,8.1164417,5.8472581,14,-4,-119.86113,0,3,3,2019,20,9,37,38,1,9,0,9.2099485,9.2099485,0,0,0,0,0,0,0,0,0,5.6270089,48,48,58.76,29.96,8.333333333333334,1,1,0,0,12,12,5,1,690.5,1661103.3,1361630.9,272466.66,0,3167.9014 -7565,9310,16777,16776,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.4502363,8.2667255,5.3528042,18,4,105.21301,0,3,3,2019,8,0,39,65,1,0,0,15.448805,15.448805,0,0,0,0,0,0,0,0,2.1078417,5.8154516,58.76,29.96,48,48,5,1,1,0,0,10,12,5,1,690.5,1661103.3,1361630.9,272466.66,0,3167.9014 -7566,9311,16778,16779,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2607908,8.0994511,21,13,-15.732308,0,1,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.2567072,45.82,54.57,23.68,57.88,8.333333333333334,1,1,0,0,10,7,5,1,2460,7863502.5,2288955,1980150.8,360545.5,4585.9326 -7566,9311,16779,16778,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.4698696,9.2922373,0,10,-13,70.830177,0,1,2,2019,28,11,41,82,1,11,0,29.683226,29.683226,0,0,0,0,0,0,0,0,.060264584,0,23.68,57.88,45.82,54.57,1.666666666666667,1,1,0,0,12,7,5,1,2460,7863502.5,2288955,1980150.8,360545.5,4585.9326 -7567,9312,16780,-9,16781,16782,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.30212,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,537.66669,630229.81,283583.44,290726.91,9702.1484,7822.2866 -7567,9312,16781,16782,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,9.0473194,9.0068245,0,7,-6,-31.730047,0,2,2,2019,8,0,43,38,1,0,0,21.363985,21.363985,0,0,0,0,0,0,0,0,2.6171832,0,39.9,58.54,57.33,53.46,6.666666666666667,1,1,0,0,9,8,5,1,537.66669,630229.81,283583.44,290726.91,9702.1484,7822.2866 -7567,9312,16782,16781,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.4205132,9.5633726,0,7,6,-147.83252,0,2,3,2019,2,0,45,45,1,0,0,32.10709,32.10709,0,0,0,0,0,0,0,0,7.5160799,0,57.33,53.46,39.9,58.54,6.666666666666667,1,1,0,0,10,8,5,1,537.66669,630229.81,283583.44,290726.91,9702.1484,7822.2866 -7568,9313,16783,16784,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,60,-1,74.840729,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,3.5836782,0,58.47,50.22,43.04,32.88,8.333333333333334,1,1,0,0,4,1,3,1,308,753061.13,219550.8,390904.44,0,2326.885 -7568,9313,16784,16783,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.8433728,7.844079,60,1,-9.6941156,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,40.380882,0,0,1,1,0,3.3631389,7.5379667,43.04,32.88,58.47,50.22,8.333333333333334,1,1,0,0,0,1,3,1,308,753061.13,219550.8,390904.44,0,2326.885 -7569,9314,16785,16786,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.0020366,6.7743392,57,-3,-112.92166,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7315636,6.9102407,59.08,29.49,58.89,38.08,8.333333333333334,1,1,0,0,0,5,3,1,1905,1583300.3,494855.31,652589.44,0,2297.9258 -7569,9314,16786,16785,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.514235,7.5177903,57,3,-80.151878,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,1.9098063,0,0,1,1,0,2.7280788,7.134491,58.89,38.08,59.08,29.49,10,1,1,0,0,0,5,3,1,1905,1583300.3,494855.31,652589.44,0,2297.9258 -7570,9315,16787,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1010.5878,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,1,0,0,8,1,0,302,1127203,267245.03,153753.45,0,820.5271 -7571,9316,16788,16789,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3991318,8.4929523,0,10,2,-159.8559,0,3,3,2019,11,0,37,37,1,1,0,12.389186,12.389186,0,0,0,0,0,0,0,0,2.4562984,0,50,50,54.74,57.22,7,1,1,0,0,1,13,4,1,287,183994.22,270389.69,309151.5,216937.69,2198.0796 -7571,9316,16789,16788,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.1799865,6.9288864,0,10,-2,153.91995,0,3,3,2019,12,0,23,23,1,0,0,6.2663465,6.2663465,0,0,0,0,7,0,0,0,0,0,54.74,57.22,50,50,8.333333333333334,1,1,0,0,11,13,4,1,287,183994.22,270389.69,309151.5,216937.69,2198.0796 -7572,9317,16790,16791,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.7061872,6.6763849,58,0,-60.953533,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.2393994,6.7785459,46.73,46.3,45.07,38.73,10,1,1,0,0,0,7,2,1,571.5,352478.59,122401.6,217078.38,0,2790.4038 -7572,9317,16791,16790,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,6.3725638,6.3521018,58,0,-6.0842824,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.774014,6.2209811,45.07,38.73,46.73,46.3,8.333333333333334,1,1,0,0,0,7,2,1,571.5,352478.59,122401.6,217078.38,0,2790.4038 -7573,9318,16792,-9,16793,16794,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.98126,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,1015.6667,-18493.295,0,145774.41,90713.063,1652.6899 -7573,9318,16793,16794,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,0,0,0,6,-1,-157.04854,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.2896924,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,1015.6667,-18493.295,0,145774.41,90713.063,1652.6899 -7573,9318,16794,16793,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,7.7356133,8.1260824,0,6,1,-38.227505,0,2,2,2019,7,0,48,50,1,0,0,7.0468383,7.0468383,0,0,0,0,0,1,1,0,4.5211892,0,62.39,56.71,62.39,56.71,10,1,1,0,0,11,7,3,1,1015.6667,-18493.295,0,145774.41,90713.063,1652.6899 -7574,9319,16795,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.6245365,8.3593159,0,0,0,-1120.9358,0,2,1,2019,9,0,40,36,1,0,0,15.242215,15.242215,0,0,0,0,0,0,0,0,0,0,45.09,52.41,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,671,1794494.3,1276452.1,353632.28,29018.254,1597.1475 -7575,9320,16796,16798,-9,-9,1,1,37,2,2,0,2,2,-9,0,4,9.1439657,8.9692764,0,4,3,-29.573963,0,2,2,2019,10,0,40,40,1,1,0,22.855806,22.855806,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,7,1,1,0,0,1,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 -7575,9320,16797,-9,16798,16796,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-939.82526,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 -7575,9320,16798,16796,-9,-9,1,0,34,2,2,0,2,2,-9,0,4,0,0,0,4,-3,-16.757034,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,56,10,1,1,0,0,0,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 -7575,9320,16799,-9,16798,16796,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.8129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,616.75,11020.543,278519.25,0,0,2955.019 -7576,9321,16800,16801,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.5662313,6.6144943,9,5,54.314465,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.7455893,6.8592854,44.45,37.64,52.93,47.44,5,2,3,0,0,0,4,5,1,427,2351665,1356586,328455.94,0,4278.0112 -7576,9321,16801,16800,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.8771296,9.0928059,0,9,-5,63.852551,0,3,3,2019,8,0,37,42,1,0,0,25.615171,25.615171,1,0,0,0,2,1,1,0,4.0521092,0,52.93,47.44,44.45,37.64,6.666666666666667,1,1,0,0,10,4,5,1,427,2351665,1356586,328455.94,0,4278.0112 -7577,9322,16802,16803,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6492643,8.9819746,0,6,-2,-44.864544,0,-9,-9,2019,9,0,39,44,1,0,0,18.931015,18.931015,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.96,24.7,8.333333333333334,1,1,0,0,8,2,5,1,1805,651858.94,271557.38,260966.72,144347.66,3845.9507 -7577,9322,16803,16802,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,8.2273655,8.145647,0,39,2,71.623215,0,2,2,2019,18,4,32,60,1,4,0,13.609049,13.609049,0,0,0,0,2,0,0,0,3.2243307,0,32.96,24.7,57.16,56.15,6.666666666666667,1,1,0,0,8,2,5,1,1805,651858.94,271557.38,260966.72,144347.66,3845.9507 -7578,9323,16804,16805,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.0052395,7.8413672,7,2,-5.9762025,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.881959,48.32,43.56,33.94,56.25,8.333333333333334,1,1,0,0,0,10,3,1,566.5,1216837.9,667060.5,414618.78,0,2328.4375 -7578,9323,16805,16804,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,0,0,43,-2,66.249763,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,4.3772082,0,33.94,56.25,48.32,43.56,8.333333333333334,1,1,0,0,6,10,3,1,566.5,1216837.9,667060.5,414618.78,0,2328.4375 -7579,9324,16806,16808,-9,-9,1,1,59,1,1,0,2,2,-9,0,4,7.9966078,8.1470251,0,5,34,-59.349442,0,-9,-9,2019,6,0,50,60,1,0,0,6.328186,6.328186,0,0,0,0,0,1,1,0,0,0,62.1,51.16,57.06,57.76,8.333333333333334,1,1,0,0,10,2,4,0,968.66669,162321.94,-7875.4897,165533.83,43439.68,2344.6558 -7579,9324,16807,-9,16808,16806,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2926,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,968.66669,162321.94,-7875.4897,165533.83,43439.68,2344.6558 -7579,9324,16808,16806,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,8.1184616,7.8725791,0,5,-34,19.21357,0,2,2,2019,8,0,37,38,1,0,0,7.3332911,7.3332911,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.1,51.16,8.333333333333334,1,1,0,0,8,2,4,0,968.66669,162321.94,-7875.4897,165533.83,43439.68,2344.6558 -7580,9325,16809,16810,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.6263933,7.7717185,0,33,-3,15.632082,0,3,3,2019,11,0,18,18,1,0,0,17.091314,17.091314,0,0,0,0,2,0,0,0,0,0,44.78,47.22,54.37,54.8,5,1,1,0,1,7,10,4,1,725.5,506420.34,163845.09,271274.81,37603.391,2065.3647 -7580,9325,16810,16809,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.744257,7.8108931,0,7,3,54.477741,0,-9,-9,2019,8,0,36,36,1,0,0,7.7889552,7.7889552,0,0,0,0,0,0,0,0,0,0,54.37,54.8,44.78,47.22,6.666666666666667,1,1,0,1,8,10,4,1,725.5,506420.34,163845.09,271274.81,37603.391,2065.3647 -7580,9326,16811,-9,16809,16810,1,1,25,0,0,0,2,2,-9,0,2,9.5095787,9.8683071,0,0,0,-1077.8628,0,2,2,2019,19,6,8,0,1,6,1,267.60727,267.60727,0,0,0,0,0,0,0,0,0,0,19.89,59.36,-9,-9,1.666666666666667,1,1,0,1,6,10,5,1,413,278977.22,0,0,0,10530.286 -7580,9327,16812,-9,16809,16810,1,0,18,0,0,0,2,2,-9,0,4,6.9341168,6.652658,0,0,0,-966.15479,0,2,2,2019,11,0,25,0,1,0,1,3.1331308,3.1331308,0,0,0,0,0,0,0,0,0,0,38.88,61.85,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,1715,-22605.732,0,0,0,878.98999 -7581,9328,16813,16814,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.9795265,8.6240683,0,7,0,93.984184,-9,-9,-9,2019,10,0,37,0,1,1,0,20.097704,20.097704,0,0,0,0,0,1,1,0,0,0,50,57,55.76,52.64,7,1,1,0,0,1,12,5,1,526.66669,-49075.508,0,297021.5,128142.96,4515.2998 -7581,9328,16814,16813,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.7789602,8.5320873,0,11,0,-182.21928,0,2,2,2019,7,0,36,33,1,0,0,16.995766,16.995766,0,0,0,0,0,1,1,0,1.8893335,0,55.76,52.64,50,57,8.333333333333334,1,1,0,0,9,12,5,1,526.66669,-49075.508,0,297021.5,128142.96,4515.2998 -7581,9328,16815,-9,16814,16813,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.00525,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,526.66669,-49075.508,0,297021.5,128142.96,4515.2998 -7582,9329,16816,16817,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,7.0544815,7.0582557,0,19,4,100.27157,0,-9,-9,2019,9,1,85,80,1,1,0,1.3275135,1.3275135,0,0,0,0,0,1,1,0,.54249805,0,54.2,57.49,57.31,50.61,8.333333333333334,1,1,0,0,10,10,3,1,646.66669,-47839.512,52221.188,0,0,1612.4751 -7582,9329,16817,16816,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.2577686,7.5996323,0,19,-4,14.31207,0,-9,-9,2019,9,0,28,27,1,0,0,7.0640659,7.0640659,0,0,0,0,0,1,1,0,0,0,57.31,50.61,54.2,57.49,6.666666666666667,1,1,0,0,7,10,3,1,646.66669,-47839.512,52221.188,0,0,1612.4751 -7582,9329,16818,-9,16817,16816,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-980.33173,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,1,646.66669,-47839.512,52221.188,0,0,1612.4751 -7583,9330,16819,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,5.2193327,4.9961333,0,0,-1092.2915,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.3272514,5.2620955,65.63,42.66,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,1421,435638.63,53913.051,159383.02,0,784.64197 -7584,9331,16820,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,7.210947,7.3550062,0,0,-944.36841,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9811336,7.3302999,48.59,53.29,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,432,1327409.6,-3578.958,826350.63,0,238.89516 -7585,9332,16821,16822,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.8196893,8.2591381,9,7,-59.423775,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,2.9483452,8.0341864,38.9,21.43,53.97,40.34,8.333333333333334,1,1,0,0,0,2,4,1,1313,520849.94,332453.78,180409.66,0,3534.3135 -7585,9332,16822,16821,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.3246307,7.3525672,59,-7,56.12775,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.7304637,7.3997579,53.97,40.34,38.9,21.43,8.333333333333334,1,1,0,0,0,2,4,1,1313,520849.94,332453.78,180409.66,0,3534.3135 -7586,9333,16823,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0519094,7.9827766,0,0,0,-1009.584,0,-9,2,2019,12,0,37,39,1,0,0,11.641049,11.641049,0,0,0,0,0,1,1,0,0,0,58.23,35.22,-9,-9,8.333333333333334,1,1,0,0,11,5,4,0,1058,-270430.09,42263.242,0,0,1188.4691 -7587,9334,16824,16825,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,0,0,0,6,-3,-51.478283,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,54,6.666666666666667,1,1,0,0,0,13,3,0,646,1168407.3,980830.5,0,0,2075.929 -7587,9334,16825,16824,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.31427,8.2944593,0,6,3,-144.42914,0,-9,-9,2019,9,0,40,0,1,0,0,12.124437,12.124437,0,0,0,0,0,0,0,0,0,0,54,54,57.16,56.15,8,1,1,0,0,1,13,3,0,646,1168407.3,980830.5,0,0,2075.929 -7587,9335,16826,-9,16824,16825,1,0,29,0,0,0,1,1,-9,0,4,7.6979933,7.8238544,0,0,0,-899.68652,0,3,3,2019,11,0,37,37,1,2,1,7.2048373,7.2048373,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,1,1,0,0,1,13,3,0,401,208258.38,-81076.438,0,0,295.18176 -7588,9336,16827,16828,-9,-9,1,1,50,0,0,0,3,3,-9,1,4,6.6991224,6.3876758,0,6,0,33.607841,0,2,3,2019,9,0,15,10,1,1,0,4.6836653,4.6836653,0,0,0,0,0,1,1,0,0,0,53,54,36.37,32.36,8,1,1,0,0,8,4,3,0,315.5,236270.73,-66550.328,81116.906,0,1813.9059 -7588,9336,16828,16827,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.8371329,8.1160984,0,6,0,-18.458687,0,-9,-9,2019,16,4,41,38,1,4,0,5.8369341,5.8369341,0,0,0,0,0,1,1,0,1.2832506,0,36.37,32.36,53,54,6.666666666666667,1,1,0,0,4,4,3,0,315.5,236270.73,-66550.328,81116.906,0,1813.9059 -7588,9337,16829,-9,16828,16827,1,1,25,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1100.0261,0,2,2,2019,27,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,2.0864339,0,29.73,43.23,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,591,0,0,0,0,630.6344 -7589,9338,16830,16831,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.4450798,8.0469122,10,2,58.34959,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,120,1,1,0,7.4379878,7.7720575,30.77,64.34,49,48,6.666666666666667,1,1,0,0,9,5,2,1,406,666336.75,377675.81,292166.88,66207.141,2076.4033 -7589,9338,16831,16830,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,10,-2,12.5691,0,3,3,2019,11,0,0,21,4,2,0,0,0,0,0,0,0,0,1,1,0,2.9320426,0,49,48,30.77,64.34,7,1,1,0,0,0,5,2,1,406,666336.75,377675.81,292166.88,66207.141,2076.4033 -7590,9339,16832,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.9310637,7.5146322,0,0,-999.08545,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0875731,60.29,52.11,-9,-9,10,1,1,0,0,5,11,3,1,1571,609320.75,390101.81,206935.64,7325.6074,1917.6349 -7591,9340,16833,-9,16835,16834,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.84552,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,683,86742.156,54743.668,433040.09,236075.31,5554.1016 -7591,9340,16834,16835,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,9.5750113,9.5561485,0,10,2,49.539642,0,-9,-9,2019,11,1,39,33,1,1,0,44.588066,44.588066,0,0,0,0,0,0,0,0,3.8033733,0,45.06,53.76,57.33,53.46,8.333333333333334,1,1,0,0,12,9,5,1,683,86742.156,54743.668,433040.09,236075.31,5554.1016 -7591,9340,16835,16834,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,7.6452971,7.4881735,0,10,-2,-52.890656,0,2,2,2019,6,0,20,44,1,0,0,10.043458,10.043458,0,0,0,0,0,0,0,0,2.8715031,0,57.33,53.46,45.06,53.76,10,1,1,0,0,10,9,5,1,683,86742.156,54743.668,433040.09,236075.31,5554.1016 -7592,9341,16836,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,4.5862012,4.7130995,0,0,-970.96649,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,4.60568,0,42.910843,0,1,1,0,.60507607,4.5622611,56.52,50.99,-9,-9,5,1,1,0,0,0,12,2,0,419,513821.5,-45868.465,144749.23,0,1501.4727 -7593,9342,16837,-9,16838,16839,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1147.2179,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,5,0,606.66669,1316992.6,364437.66,357144.91,0,5124.5605 -7593,9342,16838,16839,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,8.7934513,8.7420149,0,10,-2,101.44682,0,2,2,2019,6,0,40,40,1,0,0,16.475033,16.475033,0,0,0,0,0,1,1,0,0,0,47.38,47.02,50.11,54.04,6.666666666666667,1,1,0,0,11,13,5,0,606.66669,1316992.6,364437.66,357144.91,0,5124.5605 -7593,9342,16839,16838,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,8.8200731,8.6366129,0,10,2,-34.200886,0,3,3,2019,12,1,65,50,1,1,0,10.331712,10.331712,0,0,0,0,0,1,1,0,1.8310785,0,50.11,54.04,47.38,47.02,6.666666666666667,1,1,0,0,11,13,5,0,606.66669,1316992.6,364437.66,357144.91,0,5124.5605 -7593,9343,16840,-9,16838,16839,1,1,23,0,1,0,2,2,-9,0,3,7.7973895,7.9970856,0,0,0,-1009.746,0,2,2,2019,7,0,35,40,1,0,1,8.8706627,8.8706627,0,0,0,0,0,1,1,0,.88020444,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,4,13,3,0,904,544336,110930.84,0,0,498.9324 -7594,9344,16841,-9,16842,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3544292,8.4701405,0,0,0,-1171.358,0,1,1,2019,11,0,43,48,1,0,1,12.287252,12.287252,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,3.333333333333333,3,4,0,0,9,4,5,1,318,-37865.605,96943.211,70441.555,91319.766,1839.0786 -7594,9345,16842,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,8.5240211,8.374033,0,0,0,-959.74695,0,-9,-9,2019,12,4,37,37,1,4,0,14.810485,14.810485,0,0,0,0,0,0,0,0,0,0,44.19,16.89,-9,-9,3.333333333333333,3,4,0,0,11,4,4,1,1192,761262.31,780446.44,112736.84,50063.789,1715.161 -7595,9346,16843,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.5262814,8.646554,0,2,6,33.381516,0,3,3,2019,8,0,37,40,1,0,0,11.604104,11.604104,0,0,0,0,0,0,0,0,4.6811132,0,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,10,11,5,1,2489,394480.91,43490.816,187625.61,36711.59,2586.1643 -7595,9347,16844,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.8106918,8.4562693,0,2,-6,22.387905,0,-9,-9,2019,6,0,40,40,1,0,0,15.362175,15.362175,0,0,0,0,0,0,0,0,4.2581291,0,60.02,56.42,54.1,59.11,0,1,1,0,0,2,11,5,1,365,60520.52,14897.625,163372.39,58713.93,2042.562 -7596,9348,16845,-9,16848,16847,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.64685,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 -7596,9348,16846,-9,16848,16847,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.74988,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 -7596,9348,16847,16848,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.0099163,8.0292454,0,8,0,42.543781,0,2,2,2019,7,0,50,40,1,0,0,8.9519739,8.9519739,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,10,1,1,0,0,9,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 -7596,9348,16848,16847,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,9.0486555,8.6497526,0,8,0,-84.06913,0,-9,-9,2019,9,0,37,25,1,0,0,18.745121,18.745121,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,9,13,4,1,969.5,165370.95,-26016.551,154593.89,141255.66,3726.4338 -7597,9349,16849,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,6.703311,7.6733823,0,0,-938.04755,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,1.5215821,0,21.958515,0,1,1,0,4.4243398,6.9995575,50.08,27.76,-9,-9,5,1,1,0,0,5,13,2,0,500,245027.73,91429.414,265712.38,0,1019.3349 -7598,9350,16850,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,7.3195033,7.1541166,0,0,-941.21179,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2044501,59.53,56.44,-9,-9,10,1,1,0,0,0,5,3,1,580,469473.22,37579.41,333588.06,0,1513.3435 -7599,9351,16851,-9,16855,16854,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.5661,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 -7599,9351,16852,-9,16855,16854,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.2657,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 -7599,9351,16853,-9,16855,16854,1,1,10,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1023.2813,-9,2,3,2019,20,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,34,-9,-9,3,1,1,-9,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 -7599,9351,16854,16855,-9,-9,1,1,38,0,3,0,3,3,-9,0,2,8.3012915,8.1185932,0,10,-2,114.8601,0,-9,-9,2019,10,2,42,42,1,2,0,10.843997,10.843997,0,0,0,0,0,1,1,0,0,0,40.69,42.63,51.83,57.2,0,1,1,0,1,11,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 -7599,9351,16855,16854,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,0,0,0,10,2,-90.325066,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,40.69,42.63,6.666666666666667,1,1,0,0,0,12,3,0,581.59998,-100970.37,33323.133,0,0,2420.7014 -7600,9352,16856,-9,16858,16857,1,0,34,0,0,0,2,2,-9,0,4,8.5685053,8.7831907,0,0,0,-962.89294,0,3,2,2019,11,2,60,47,1,2,0,9.2966785,9.2966785,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,705,188067.44,133725.36,0,0,2521.6816 -7600,9353,16857,16858,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,6.9766521,7.3137894,6.0747623,47,-4,-3.1536248,0,3,3,2019,12,0,21,20,1,0,0,8.0275669,8.0275669,0,0,0,0,2,1,1,0,4.5922766,6.2529216,58.15,52.91,52.43,55.57,8.333333333333334,1,1,0,0,8,10,4,1,934.5,1980471,1501469.8,347762.5,0,3180.9668 -7600,9353,16858,16857,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,8.0307274,7.8613734,0,47,4,59.329288,0,3,3,2019,6,0,40,40,1,0,0,9.2964678,9.2964678,0,0,0,0,0,1,1,0,0,0,52.43,55.57,58.15,52.91,6.666666666666667,1,1,0,0,9,10,4,1,934.5,1980471,1501469.8,347762.5,0,3180.9668 -7601,9354,16859,16860,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,.26896504,6.764204,7.2848892,4,5,-4.4439707,0,-9,-9,2019,12,1,25,0,1,1,0,.00080447021,.00080447021,0,0,0,0,0,1,1,0,0,7.1325765,56.17,9.609999999999999,52.99,51.28,8.333333333333334,1,1,0,0,1,1,2,1,714,195877.27,0,159486.14,0,322.90955 -7601,9354,16860,16859,-9,-9,1,1,53,0,0,0,2,2,-9,1,3,0,0,0,4,-5,13.620027,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.99,51.28,56.17,9.609999999999999,6.666666666666667,1,1,0,0,8,1,2,1,714,195877.27,0,159486.14,0,322.90955 -7602,9355,16861,-9,-9,-9,1,0,39,0,2,0,1,1,1,0,2,7.050756,6.9621973,0,0,0,-903.88281,-9,3,2,2019,25,11,20,0,1,11,0,5.6046243,5.6046243,0,0,0,0,2,1,1,0,0,0,28.88,54.9,-9,-9,3.333333333333333,1,1,0,1,6,6,2,0,434.33334,10937.974,9764.9834,0,0,322.48715 -7602,9355,16862,-9,16861,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1051.2518,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,6,2,0,434.33334,10937.974,9764.9834,0,0,322.48715 -7602,9355,16863,-9,16861,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-998.1134,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,6,2,0,434.33334,10937.974,9764.9834,0,0,322.48715 -7603,9356,16864,16865,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,29,-3,39.319611,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,7,0,0,0,3.5088942,0,48.68,51.82,56.3,38.96,8.333333333333334,1,1,0,0,9,2,4,1,629.5,438128.94,111858.39,215735.53,0,2346.7432 -7603,9356,16865,16864,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.3578863,8.4289045,0,5,3,27.211109,0,-9,-9,2019,9,0,35,40,1,0,0,17.630735,17.630735,0,0,0,0,0,0,0,0,0,0,56.3,38.96,48.68,51.82,8.333333333333334,1,1,0,0,12,2,4,1,629.5,438128.94,111858.39,215735.53,0,2346.7432 -7603,9357,16866,-9,16864,16865,1,1,30,0,0,0,1,1,-9,0,3,7.8336911,7.957624,0,0,0,-918.30811,-9,2,2,2019,15,3,38,0,1,3,1,8.5189266,8.5189266,0,0,0,0,0,0,0,0,3.1469536,0,22.65,64.05,-9,-9,5,1,1,0,0,2,2,4,1,1093,70163.688,-125969.33,0,0,794.00226 -7604,9358,16867,16869,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.737915,8.3663168,0,9,-4,-35.341003,0,-9,-9,2019,9,0,35,40,1,1,0,20.98823,20.98823,0,0,0,0,0,1,1,0,0,0,51,56,57.06,57.76,7,1,1,0,0,1,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 -7604,9358,16868,-9,16869,16867,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-946.75555,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 -7604,9358,16869,16867,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,7.2690978,7.4760084,0,9,4,-10.369089,0,2,3,2019,10,0,22,23,1,0,0,9.7208004,9.7208004,0,0,0,0,0,1,1,0,3.5427976,0,57.06,57.76,51,56,10,1,1,0,0,10,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 -7604,9358,16870,-9,16869,16867,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1230.3334,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,491.25,593030.5,140590.81,358297.25,167722.63,3222.875 -7605,9359,16871,16872,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,49,-4,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,2.5020494,0,21.705954,0,1,1,0,3.1741812,0,52.44,27.29,51.94,55.88,3.333333333333333,1,1,0,0,0,7,1,1,401.5,0,0,0,0,1146.5059 -7605,9359,16872,16871,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,49,4,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3111689,0,51.94,55.88,52.44,27.29,8.333333333333334,1,1,0,0,5,7,1,1,401.5,0,0,0,0,1146.5059 -7606,9360,16873,16874,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.4539909,7.3592982,0,7,-1,-77.195869,0,2,2,2019,7,0,16,16,1,0,0,15.668682,15.668682,0,0,0,0,0,1,1,0,8.9871368,0,58.3,52.91,64.15000000000001,32.53,8.333333333333334,1,1,0,0,8,4,3,1,379,667611.25,438909.34,370262.28,0,5473.0781 -7606,9360,16874,16873,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,7,1,-172.76718,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5298495,0,64.15000000000001,32.53,58.3,52.91,8.333333333333334,1,1,0,0,0,4,3,1,379,667611.25,438909.34,370262.28,0,5473.0781 -7607,9361,16875,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,5.2320147,5.2035971,0,0,-1036.3344,1,-9,-9,2019,10,0,0,38,2,1,0,0,0,0,0,0,0,0,1,1,0,5.3901248,0,48,59,-9,-9,7,1,1,0,0,3,9,2,0,1304,257443.89,0,0,0,-316.64648 -7608,9362,16876,-9,16877,16878,1,1,46,0,0,0,3,3,-9,0,4,8.0417957,8.0380678,0,0,0,-952.79913,0,3,3,2019,9,0,25,40,1,1,0,16.48287,16.48287,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,1,2,4,1,537,-135411.64,126441,0,0,1981.0082 -7608,9363,16877,16878,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,7,-1,65.895195,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,3.5290313,0,35.59,49.94,57.73,36.13,1.666666666666667,1,1,0,0,3,2,3,1,760.5,540649.31,187452.33,91710.039,0,2970.6101 -7608,9363,16878,16877,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,7.011157,7.7022996,7.1324129,7,1,121.81079,0,3,3,2019,9,1,18,18,1,1,0,7.7167892,7.7167892,1,0,0,0,0,1,1,0,6.5678768,7.0508308,57.73,36.13,35.59,49.94,8.333333333333334,1,1,0,0,8,2,3,1,760.5,540649.31,187452.33,91710.039,0,2970.6101 -7609,9364,16879,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1004.3191,0,2,2,2019,13,1,0,50,3,1,0,0,0,0,0,0,0,2,0,0,0,0,0,53.39,49.67,-9,-9,6.666666666666667,1,1,1,0,9,13,1,0,691,0,0,0,0,0 -7610,9365,16880,16881,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.6195736,8.3406792,46,2,-49.414715,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1685383,8.8929272,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,1,620.5,2138035.8,820819.5,885176.5,0,3843.5205 -7610,9365,16881,16880,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.1609836,5.7223382,46,-2,57.441338,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0889456,5.5520267,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,620.5,2138035.8,820819.5,885176.5,0,3843.5205 -7610,9366,16882,-9,16881,16880,1,1,40,0,0,0,2,2,-9,0,4,8.5135059,8.0378771,0,0,0,-990.15045,0,2,2,2019,12,0,88,38,1,0,0,6.0666585,6.0666585,0,0,0,0,0,1,1,0,4.0291862,0,30.83,62.98,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,449,211793.72,-56232.152,0,0,1533.3879 -7611,9367,16883,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.8413787,6.9888263,0,0,-947.94379,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9569535,7.0944262,55.43,41.03,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,487,304546.34,226927.45,226111.83,0,1161.5149 -7612,9368,16884,-9,16885,16886,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.0237,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 -7612,9368,16885,16886,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,0,0,0,8,-4,-78.186981,0,1,1,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,32.34,56.69,47.58,56.39,5,2,3,0,0,0,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 -7612,9368,16886,16885,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.826622,9.7296257,0,8,4,56.937271,0,1,1,2019,11,0,50,50,1,0,0,50.640156,50.640156,0,0,0,0,0,0,0,0,7.7831969,0,47.58,56.39,32.34,56.69,6.666666666666667,2,3,0,0,9,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 -7612,9368,16887,-9,16885,16886,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.2547,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,0,640,932949.19,536997.38,588980.5,350221.59,8011.3389 -7613,9369,16888,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.1800575,6.1399894,0,0,-1028.8837,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4694152,0,69.84,17.55,-9,-9,6.666666666666667,1,1,0,0,2,5,2,0,3777,369103.63,143110.67,35779.832,0,961.07092 -7614,9370,16889,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4058743,7.4845567,0,0,-886.68958,0,1,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.3091216,7.5275512,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,0,6,3,1,2182,857708.44,338622.75,149691.41,0,1816.9303 -7615,9371,16890,16891,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.254096,8.1420727,0,5,-1,-27.668575,0,2,2,2019,11,0,42,52,1,0,0,11.254717,11.254717,0,0,0,0,0,0,0,0,0,0,51.73,56.3,46.55,58.3,8.333333333333334,1,1,0,0,10,4,5,1,639.5,984982.75,868440.44,151632.13,36557.949,3265.0244 -7615,9371,16891,16890,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.4204912,8.2424898,0,5,1,-18.42251,0,-9,-9,2019,8,0,37,37,1,0,0,14.22871,14.22871,0,0,0,0,0,0,0,0,0,0,46.55,58.3,51.73,56.3,8.333333333333334,1,1,0,0,10,4,5,1,639.5,984982.75,868440.44,151632.13,36557.949,3265.0244 -7615,9372,16892,-9,16891,16890,1,0,21,0,0,0,2,2,-9,0,5,8.5707388,8.5070372,0,0,0,-1089.3467,0,2,2,2019,11,2,37,37,1,2,1,15.20417,15.20417,0,0,0,0,0,0,0,0,.18861078,0,44.77,51.04,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,57,80423.008,0,0,0,1323.9012 -7616,9373,16893,16894,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.4823265,8.2353134,0,4,16,-60.879921,0,2,2,2019,6,0,45,43,1,0,0,8.4380922,8.4380922,0,0,0,0,0,0,0,0,0,0,57.76,54.51,30.94,61.65,10,1,1,0,0,12,4,4,1,2020,4073.4219,220944.66,156507.25,93378.781,1946.4563 -7616,9373,16894,16893,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.3159008,7.3753557,0,4,-16,-169.53622,0,-9,-9,2019,11,0,20,20,1,0,0,7.2194457,7.2194457,0,0,0,0,0,0,0,0,0,0,30.94,61.65,57.76,54.51,8.333333333333334,1,1,0,0,12,4,4,1,2020,4073.4219,220944.66,156507.25,93378.781,1946.4563 -7617,9374,16895,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1024.2876,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,5.0192752,0,0,1,1,0,2.3138452,0,47,18.38,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,593,371317.22,0,188577.7,0,976.56769 -7618,9375,16896,16897,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.6102657,8.8275528,0,6,-1,-71.481483,0,3,3,2019,9,0,45,39,1,1,0,11.981161,11.981161,0,0,0,0,2,0,0,0,0,0,54,54,52,53,8,1,1,0,0,6,12,4,1,290,472483.31,563694.88,35356.25,0,2825.7495 -7618,9375,16897,16896,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.4080505,7.7205224,0,36,1,-5.4006057,0,3,3,2019,10,0,39,41,1,1,0,5.9147248,5.9147248,0,0,0,0,0,0,0,0,0,0,52,53,54,54,8,1,1,0,0,8,12,4,1,290,472483.31,563694.88,35356.25,0,2825.7495 -7619,9376,16898,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,5,0,7.5057688,7.4174519,0,0,-1011.3057,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.6721125,7.2226815,41.47,45.23,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,297,511438.22,167973.75,26802.332,0,1457.1177 -7620,9377,16899,-9,16901,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.3293,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1275.75,111318.53,0,0,0,1205.1694 -7620,9377,16900,-9,16901,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-976.89301,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,8,2,0,1275.75,111318.53,0,0,0,1205.1694 -7620,9377,16901,-9,-9,-9,1,0,41,0,3,0,2,2,-9,0,5,7.0695457,7.2360039,0,0,0,-1027.7777,0,2,1,2019,7,2,9,0,1,2,0,12.986489,12.986489,0,0,0,0,0,1,1,0,0,0,43.62,43.48,-9,-9,8.333333333333334,2,3,0,0,5,8,2,0,1275.75,111318.53,0,0,0,1205.1694 -7620,9377,16902,-9,16901,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.666,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1275.75,111318.53,0,0,0,1205.1694 -7621,9378,16903,16904,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,8.3820648,8.3588963,0,8,-8,-14.124614,0,2,2,2019,9,0,35,36,1,0,0,14.502246,14.502246,0,0,0,0,0,1,1,0,0,0,54.69,57.47,62.39,56.71,6.666666666666667,1,1,0,0,9,12,4,1,620,1481000,749281.5,376030.19,0,3152.2476 -7621,9378,16904,16903,-9,-9,1,1,57,0,2,0,1,1,-9,0,5,7.8207121,7.8653617,0,8,8,-93.528801,0,2,2,2019,6,0,47,40,1,0,0,7.0940933,7.0940933,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.69,57.47,10,1,1,0,0,8,12,4,1,620,1481000,749281.5,376030.19,0,3152.2476 -7622,9379,16905,16907,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.8690205,7.83816,0,8,-2,73.460861,0,-9,2,2019,24,10,39,39,1,10,0,9.2150259,9.2150259,0,0,0,0,0,1,1,0,0,0,33.05,43.41,51,56,3.333333333333333,1,1,0,0,10,2,4,0,644.66669,303916.44,111076.97,168448.56,99887.891,2469.9236 -7622,9379,16906,-9,16905,16907,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1018.3942,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,0,644.66669,303916.44,111076.97,168448.56,99887.891,2469.9236 -7622,9379,16907,16905,-9,-9,1,1,38,0,1,0,3,3,-9,0,4,7.7699504,7.7567997,0,8,2,42.794933,0,-9,-9,2019,10,0,39,0,1,1,0,8.6961355,8.6961355,0,0,0,0,0,1,1,0,0,0,51,56,33.05,43.41,7,1,1,0,0,1,2,4,0,644.66669,303916.44,111076.97,168448.56,99887.891,2469.9236 -7623,9380,16908,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,7.3973236,7.415513,0,0,-945.24298,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.9691424,7.0326424,34.66,39.57,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,879,447284.88,282860.81,219652.19,0,1069.6156 -7624,9381,16909,16910,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,8,-1,90.165642,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,10.774879,0,0,1,1,0,4.168447,0,37.26,26.17,36.03,31.14,8.333333333333334,1,1,0,0,0,11,2,1,489,250817.53,84451.422,272012.34,0,1707.7942 -7624,9381,16910,16909,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,5.8833752,6.6704063,8,1,-116.58264,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,4.9464121,0,0,1,1,0,4.7104311,6.4597273,36.03,31.14,37.26,26.17,6.666666666666667,1,1,0,0,0,11,2,1,489,250817.53,84451.422,272012.34,0,1707.7942 -7625,9382,16911,-9,16914,16912,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.2566,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 -7625,9382,16912,16914,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.3631716,8.5180578,0,3,5,26.133862,0,-9,-9,2019,7,0,72,48,1,0,0,6.5956941,6.5956941,0,0,0,0,2,1,1,0,0,0,49.68,50.49,40.97,50.75,10,1,1,0,0,4,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 -7625,9382,16913,-9,16914,16912,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.4063,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 -7625,9382,16914,16912,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,8.0361471,8.0147791,0,3,-5,82.308289,0,2,3,2019,8,2,35,35,1,2,0,10.117602,10.117602,0,0,0,0,0,1,1,0,0,0,40.97,50.75,49.68,50.49,8.333333333333334,1,1,0,0,9,1,4,1,523,27250.332,20482.182,156305.3,23243.771,3275.9092 -7626,9383,16915,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.8868861,7.3466282,0,0,-963.45758,0,2,2,2019,18,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.1136155,7.8580837,22.69,37.16,-9,-9,5,1,1,0,0,0,13,3,1,347,356070.22,213739.89,192280.16,54115.813,2515.7695 -7627,9384,16916,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5028768,6.5470924,0,0,-1067.2634,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.8730383,6.6399202,39.46,21.27,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,1756,62801.004,344829.22,144255.16,0,985.73663 -7628,9385,16917,16918,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.7926092,8.9736814,0,34,-1,16.073439,0,2,2,2019,7,0,45,40,1,0,0,17.949261,17.949261,0,0,0,0,2,0,0,0,3.6348159,0,55.36,51.57,56.35,43.13,10,1,1,0,0,9,9,5,1,670.5,1434371.4,753317.75,370490.31,-6703.2109,4549.7729 -7628,9385,16918,16917,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.8533659,7.7666936,34,1,11.224229,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.0020499,7.6489511,56.35,43.13,55.36,51.57,8.333333333333334,1,1,0,0,7,9,5,1,670.5,1434371.4,753317.75,370490.31,-6703.2109,4549.7729 -7628,9386,16919,-9,16917,16918,1,0,31,0,0,0,1,1,-9,0,4,8.6789284,8.5031738,0,0,0,-1002.0851,0,2,2,2019,20,8,43,43,1,8,1,11.902963,11.902963,0,0,0,0,0,0,0,0,3.6052701,0,32.73,62.17,-9,-9,3.333333333333333,1,1,0,0,6,9,5,1,2575,76903.023,112503.38,0,0,2257.3367 -7629,9387,16920,-9,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,0,0,0,0,0,-1105.3761,-9,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.47,60.56,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,478.5,-284985.84,0,0,0,1064.2037 -7629,9387,16921,-9,16920,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.7185,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,1,0,478.5,-284985.84,0,0,0,1064.2037 -7630,9388,16922,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,0,0,0,0,0,-922.1142,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.19,36.14,-9,-9,5,2,3,0,0,0,4,1,0,301,0,0,0,0,0 -7630,9389,16923,-9,16922,-9,1,0,19,0,0,0,2,2,-9,0,2,6.3703003,6.8817501,0,0,0,-963.39801,0,3,-9,2019,19,5,14,38,1,5,1,6.8395553,6.8395553,0,0,0,0,7,1,1,0,0,0,38.28,49.04,-9,-9,6.666666666666667,2,3,0,0,2,4,2,0,724,276336.66,0,0,0,-254.51958 -7631,9390,16924,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,6.6694775,6.9262362,0,0,-881.42743,0,2,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8235497,58.98,23.2,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1260,-260765.8,-16222.166,0,0,874.14264 -7632,9391,16925,16926,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.2773848,8.5992794,7.3162227,2,3,-23.783337,0,-9,-9,2019,9,0,40,45,1,1,0,13.131092,13.131092,0,0,0,0,0,1,1,0,4.0543432,7.1651464,54,53,35.3,51.51,8,1,1,0,0,1,9,5,1,552,1139996.3,603255.38,449359.28,4853.5029,3550.7437 -7632,9391,16926,16925,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.4594622,7.8383474,7.3888516,2,-3,-142.42677,0,2,2,2019,15,5,30,20,1,5,0,7.0969038,7.0969038,0,0,0,0,0,1,1,0,0,6.7961507,35.3,51.51,54,53,8.333333333333334,1,1,0,0,7,9,5,1,552,1139996.3,603255.38,449359.28,4853.5029,3550.7437 -7632,9392,16927,-9,16926,-9,1,0,19,0,0,0,2,2,-9,0,3,6.4729571,6.6094995,0,0,0,-1010.4503,0,3,-9,2019,10,0,13,21,1,0,1,6.2801986,6.2801986,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,1.666666666666667,1,1,0,0,3,9,2,1,2045,351518.28,0,0,0,1124.5081 -7633,9393,16928,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.8612509,7.9716959,0,0,0,-1052.5988,0,3,3,2019,11,0,45,50,1,0,0,7.4844794,7.4844794,0,0,0,0,0,1,1,0,0,0,39.09,55.3,-9,-9,5,1,1,0,0,7,5,4,0,417,292954.09,147979.63,0,0,1681.9387 -7634,9394,16929,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1130.1592,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,14.5,1,1,0,.40365267,0,38.36,48.9,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,146,0,0,0,0,1718.2585 -7634,9395,16930,-9,16929,-9,1,0,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1126.073,0,3,-9,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,7,1,1,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,492,0,0,0,0,579.89624 -7635,9396,16931,16932,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.4601698,8.7194023,0,9,-4,-104.64287,0,2,2,2019,10,2,37,43,1,2,0,18.872017,18.872017,0,0,0,0,0,1,1,0,0,0,41.6,53.68,60.29,52.11,5,1,1,0,0,9,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 -7635,9396,16932,16931,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.0818138,7.04106,0,15,4,20.653057,0,2,2,2019,6,0,16,24,1,0,0,10.347205,10.347205,0,0,0,0,0,1,1,0,0,0,60.29,52.11,41.6,53.68,8.333333333333334,1,1,0,0,6,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 -7635,9396,16933,-9,16932,16931,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.07172,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 -7635,9396,16934,-9,16932,16931,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.8414,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,1040,223914.03,72336.039,212069.36,124409.45,2778.377 -7636,9397,16935,-9,16938,16939,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.1082,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,577,0,0,0,0,2770.7695 -7636,9397,16936,-9,16938,16939,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.8346,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,0,577,0,0,0,0,2770.7695 -7636,9397,16937,-9,16938,16939,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.7369,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,3,0,577,0,0,0,0,2770.7695 -7636,9397,16938,16939,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,0,0,0,5,-2,-57.965034,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,32.19,62.45,7,1,1,0,0,0,1,3,0,577,0,0,0,0,2770.7695 -7636,9397,16939,16938,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,8.1725702,8.2710924,0,21,2,145.38441,0,2,2,2019,15,3,40,65,1,3,0,8.1976404,8.1976404,0,0,0,0,0,1,1,0,0,0,32.19,62.45,49,55,3.333333333333333,1,1,0,0,1,1,3,0,577,0,0,0,0,2770.7695 -7637,9398,16940,16941,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.2035456,9.0742273,0,26,1,-66.536118,0,2,1,2019,11,1,48,56,1,1,0,23.649416,23.649416,0,0,0,0,0,0,0,0,0,0,51.22,49.35,58.32,50.22,10,1,1,0,0,9,13,5,1,523,2654109,2084562.3,488203.06,178279.56,7424.5835 -7637,9398,16941,16940,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.7128801,9.8047438,0,26,-1,-110.66314,0,1,2,2019,8,0,45,54,1,0,0,31.584139,31.584139,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.22,49.35,8.333333333333334,1,1,0,0,9,13,5,1,523,2654109,2084562.3,488203.06,178279.56,7424.5835 -7637,9399,16942,-9,16940,16941,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.2523,-9,1,1,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,38.01,58.07,-9,-9,10,1,1,0,0,0,13,1,1,1473,90084.484,0,0,0,0 -7638,9400,16943,16944,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3076258,8.0984831,0,6,-1,45.796177,0,2,2,2019,11,0,37,37,1,0,0,14.010512,14.010512,0,0,0,0,0,0,0,0,0,0,55.79,52.62,53.63,40.71,1.666666666666667,1,1,0,0,11,11,4,1,532,680445.19,373603.94,293076.84,0,3497.4849 -7638,9400,16944,16943,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,6.0186791,5.6327209,6,1,-55.993786,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,7.4231577,5.8430576,53.63,40.71,55.79,52.62,6.666666666666667,1,1,0,0,10,11,4,1,532,680445.19,373603.94,293076.84,0,3497.4849 -7639,9401,16945,16949,-9,-9,1,1,37,1,3,0,2,2,-9,0,2,9.1799717,9.086442,0,8,2,14.145289,0,-9,-9,2019,17,5,40,40,1,5,0,22.603392,22.603392,0,0,0,0,0,1,1,0,0,0,33.25,39.34,23.7,59.45,5,1,1,0,0,7,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 -7639,9401,16946,-9,16949,16945,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.57239,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 -7639,9401,16947,-9,16949,16945,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-903.86719,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 -7639,9401,16948,-9,16949,16945,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.42615,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 -7639,9401,16949,16945,-9,-9,1,0,35,1,3,0,1,1,-9,0,3,8.4530439,8.7989197,0,8,-2,84.945427,0,2,2,2019,17,5,33,31,1,5,0,21.442995,21.442995,0,0,0,0,0,1,1,0,0,0,23.7,59.45,33.25,39.34,3.333333333333333,1,1,0,0,9,7,5,1,1329,1276665.1,426830.06,453775.06,0,5044.6782 -7640,9402,16950,-9,-9,-9,1,1,21,0,0,0,1,1,1,0,4,7.941494,8.2058096,0,0,0,-1043.9734,-9,-9,-9,2019,6,0,38,0,1,0,0,10.355378,10.355378,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,8,4,0,2460,-178902.97,-47749.594,0,0,1855.7162 -7641,9403,16951,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,6.5113935,7.3027663,5.9275217,0,0,-842.0744,0,2,2,2019,13,2,22,30,1,2,0,3.6224329,3.6224329,0,0,0,0,7,1,1,0,0,6.1859684,43.87,46.5,-9,-9,5,1,1,0,1,9,5,2,1,837,259514.23,-17348.236,271310.88,211885.3,909.11877 -7642,9404,16952,16953,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,8.4809065,8.107254,62,0,-4.3935323,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5145731,8.0502529,54.79,47.98,55.71,46,10,1,1,0,0,0,9,4,1,495.5,1455800.3,374589.56,1024261.3,0,3577.6653 -7642,9404,16953,16952,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.3764734,7.4739814,62,0,-19.833473,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4318891,7.6093292,55.71,46,54.79,47.98,10,1,1,0,0,0,9,4,1,495.5,1455800.3,374589.56,1024261.3,0,3577.6653 -7643,9405,16954,16955,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.6692276,7.6532445,54,2,-57.738285,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9562697,7.3580065,62.1,51.16,52,54.51,10,1,1,0,0,0,11,3,1,983,1037877.8,400172.56,0,0,1923.589 -7643,9405,16955,16954,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,54,-2,-47.767731,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,62.1,51.16,8.333333333333334,1,1,0,0,0,11,3,1,983,1037877.8,400172.56,0,0,1923.589 -7644,9406,16956,16957,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,21,-7,-34.339428,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,52.48,55.6,8,2,3,0,1,4,8,4,1,1668,491798.97,355015.94,229938.25,0,1902.2141 -7644,9406,16957,16956,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.2427597,8.1490498,0,21,7,-50.108097,0,3,2,2019,9,0,40,40,1,0,0,13.957375,13.957375,0,0,0,0,0,1,1,0,0,0,52.48,55.6,51,54,1.666666666666667,2,3,0,1,11,8,4,1,1668,491798.97,355015.94,229938.25,0,1902.2141 -7644,9407,16958,-9,16956,16957,1,1,27,0,0,0,1,1,-9,0,4,8.4335346,8.6663465,0,0,0,-1157.6707,0,2,1,2019,11,1,57,57,1,1,1,8.8604708,8.8604708,0,0,0,0,0,1,1,0,0,0,31.77,61.1,-9,-9,5,2,3,0,0,3,8,5,1,1622,-438840.88,5327.457,0,0,1545.2428 -7644,9408,16959,-9,16956,16957,1,0,23,0,0,0,1,1,1,0,3,7.1975403,7.1889982,0,0,0,-997.0329,-9,2,1,2019,13,2,3,0,1,2,1,50.973766,50.973766,0,0,0,0,0,1,1,0,0,0,37.61,56.99,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,1698,59783.605,84960.023,0,0,1335.7272 -7644,9409,16960,-9,16956,16957,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1007.3841,0,2,1,2019,15,0,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,33.22,33.71,-9,-9,5,2,3,1,0,0,8,1,1,218,48243.941,0,0,0,-104.88043 -7644,9410,16961,-9,16956,16957,1,0,20,0,0,1,2,0,0,0,3,0,7.9178452,8.0540018,0,0,-1034.5404,-9,2,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,8.0568399,0,39.33,51.01,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,583,232044.02,12554.911,0,0,1684.4656 -7645,9411,16962,-9,16964,16963,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.5753,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,486.66666,169704.06,-37665.969,271383.09,202302.31,1803.5061 -7645,9411,16963,16964,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.6229086,8.2223339,0,4,1,-16.779781,0,2,2,2019,8,0,48,40,1,0,0,12.372762,12.372762,0,0,0,0,0,1,1,0,0,0,60.12,54.8,50.2,51.15,6.666666666666667,2,3,0,0,9,8,3,0,486.66666,169704.06,-37665.969,271383.09,202302.31,1803.5061 -7645,9411,16964,16963,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,4,-1,39.635605,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.2,51.15,60.12,54.8,8.333333333333334,2,3,0,0,3,8,3,0,486.66666,169704.06,-37665.969,271383.09,202302.31,1803.5061 -7646,9412,16965,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,3.5503829,3.4860244,0,0,-1005.0422,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,12.607805,0,0,1,1,0,2.0917985,3.7325311,43.29,17.29,-9,-9,5,1,1,0,0,0,2,2,1,285,-157058.94,0,0,0,341.94922 -7647,9413,16966,16967,-9,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,5,-1,-.81455487,0,-9,-9,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.44,25.73,34.6,59.57,5,1,1,0,0,0,11,3,0,1162,-263619.88,0,0,0,2199.2803 -7647,9413,16967,16966,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.1826563,8.1219234,0,5,1,113.57354,0,3,3,2019,15,4,40,40,1,4,0,10.101754,10.101754,0,0,0,0,0,1,1,0,.81650519,0,34.6,59.57,42.44,25.73,8.333333333333334,1,1,0,0,9,11,3,0,1162,-263619.88,0,0,0,2199.2803 -7648,9414,16968,16969,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.3294563,8.3782463,0,11,-3,-5.317708,0,-9,-9,2019,11,0,40,40,1,1,0,13.351316,13.351316,0,0,0,0,0,1,1,0,0,0,49,50,58.15,52.91,7,1,1,0,0,1,4,4,1,357.5,443585.69,0,205766.19,0,2359.1318 -7648,9414,16969,16968,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.2546716,7.7870917,0,22,3,77.495537,0,3,3,2019,6,0,24,26,1,0,0,6.3594127,6.3594127,0,0,0,0,0,1,1,0,0,0,58.15,52.91,49,50,8.333333333333334,1,1,0,0,12,4,4,1,357.5,443585.69,0,205766.19,0,2359.1318 -7649,9415,16970,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3037505,7.100132,0,0,-928.07709,0,2,-9,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,4.4368768,7.6531782,48.16,33.33,-9,-9,3.333333333333333,3,4,0,0,8,8,3,1,1908,987857.94,103141.75,371350.28,0,615.4873 -7650,9416,16971,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,5.8123646,6.2733474,0,0,-895.01807,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,5.235415,14.305456,47.746708,0,1,1,0,7.0820599,5.9088016,54.58,37.48,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,820,-254764.41,74728.914,0,0,1188.2318 -7651,9417,16972,16973,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.0915947,8.1648417,46,2,65.524841,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3298402,8.2413702,45.46,52.15,57.16,56.15,8.333333333333334,1,1,0,0,4,11,4,1,630.5,1805519.9,1105248,257611.98,0,3611.3467 -7651,9417,16973,16972,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.1940074,7.0546908,46,-2,-.72988284,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6586447,7.0181165,57.16,56.15,45.46,52.15,8.333333333333334,1,1,0,0,0,11,4,1,630.5,1805519.9,1105248,257611.98,0,3611.3467 -7652,9418,16974,-9,16975,16976,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.82422,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,12,4,1,548,370707.53,356939.44,233815.27,118810.15,3200.2681 -7652,9418,16975,16976,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.5947437,8.7257671,0,13,-1,56.246716,0,2,2,2019,12,0,34,34,1,2,0,22.359268,22.359268,0,0,0,0,0,1,1,0,4.8531799,0,47.14,30.92,37.17,45.07,5,2,3,0,0,12,12,4,1,548,370707.53,356939.44,233815.27,118810.15,3200.2681 -7652,9418,16976,16975,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.3489757,7.2850661,0,13,1,-68.420631,0,2,2,2019,11,2,30,30,1,2,0,6.3673797,6.3673797,0,0,0,0,0,1,1,0,0,0,37.17,45.07,47.14,30.92,5,2,3,0,0,11,12,4,1,548,370707.53,356939.44,233815.27,118810.15,3200.2681 -7653,9419,16977,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1114.8719,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.42,28.97,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,242,5762.8286,0,0,0,758.33051 -7654,9420,16978,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.5459123,6.624146,0,0,-1040.0846,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0180731,6.8617067,54.77,50.34,-9,-9,8.333333333333334,1,1,0,0,9,8,2,1,1479,281026.03,210816.27,304041.47,248833.02,757.33972 -7655,9421,16979,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.1615343,7.8870716,0,0,-962.45984,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.9048238,7.5775518,54,53,-9,-9,5,1,1,0,0,0,8,3,1,242,1400379.5,289489.41,695160.19,0,1726.3782 -7656,9422,16980,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.579596,4.6270356,0,0,-971.62726,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.672379,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,316,-57025.203,-43437.977,168242.25,0,23.378889 -7657,9423,16981,16982,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.5969877,8.8152075,0,4,0,19.008244,0,3,3,2019,10,0,37,80,1,1,0,18.21406,18.21406,0,0,0,0,89,1,1,0,0,0,50,49,48,49,7,1,1,0,0,12,13,5,1,883.5,364486.88,265040.75,66986.07,0,3054.9753 -7657,9423,16982,16981,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.0920367,7.4458437,4,0,-49.727318,0,2,2,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.2504058,48,49,50,49,7,1,1,0,0,0,13,5,1,883.5,364486.88,265040.75,66986.07,0,3054.9753 -7657,9424,16983,-9,16982,16981,1,1,24,0,0,0,2,2,-9,0,4,7.7259183,7.5820713,0,0,0,-799.25598,0,2,2,2019,10,0,36,38,1,1,1,6.5386572,6.5386572,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,8,13,3,1,402,292844.88,-36730.797,0,0,954.50085 -7657,9425,16984,-9,16982,16981,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.7915,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,120,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,2,1,476,253081.58,0,0,0,0 -7658,9426,16985,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.7482328,8.0119543,0,0,0,-1071.4988,0,2,2,2019,24,12,38,38,1,12,0,7.6270442,7.6270442,0,0,0,0,2,1,1,0,0,0,35.71,49.77,-9,-9,5,3,4,0,0,12,8,4,1,1049,-365681.44,38649.105,0,0,1344.0469 -7659,9427,16986,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,0,0,-979.60242,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,8.0794878,0,45.35,50.81,-9,-9,8.333333333333334,4,2,1,0,4,8,1,1,943,-112749.79,0,0,0,1588.0627 -7659,9428,16987,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3520527,8.2874947,0,0,0,-894.76086,0,3,3,2019,12,0,35,37,1,0,0,13.297102,13.297102,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,5,3,4,0,0,11,8,4,1,2129,-94988.008,84159.117,0,0,1508.2933 -7660,9429,16988,16989,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,6.4663973,7.2162018,5.699439,39,8,-60.661175,0,3,2,2019,9,0,8,25,1,0,0,12.422633,12.422633,0,0,0,0,0,1,1,0,5.704319,5.4168711,63.02,35.77,61.8,32.35,5,1,1,0,1,12,6,5,1,1181.5,1844784.5,1420939,476581.88,0,2945.4312 -7660,9429,16989,16988,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.957407,9.0496073,0,39,-8,-125.54764,0,2,2,2019,6,0,40,42,1,0,0,22.452463,22.452463,0,0,0,0,0,1,1,0,0,0,61.8,32.35,63.02,35.77,8.333333333333334,1,1,0,1,11,6,5,1,1181.5,1844784.5,1420939,476581.88,0,2945.4312 -7661,9430,16990,16991,-9,-9,1,0,30,0,1,0,2,2,-9,0,1,0,0,0,7,2,27.527561,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,30.76,28.13,38.59,60.85,3.333333333333333,1,1,0,0,2,5,3,0,1376.3334,86707.695,0,0,0,1780.7136 -7661,9430,16991,16990,-9,-9,1,1,28,0,1,0,2,2,-9,1,4,8.1716681,8.0904303,0,7,-2,28.985233,0,-9,-9,2019,14,3,45,45,1,3,0,11.684343,11.684343,0,0,0,0,0,1,1,0,0,0,38.59,60.85,30.76,28.13,5,1,1,0,0,9,5,3,0,1376.3334,86707.695,0,0,0,1780.7136 -7661,9430,16992,-9,16990,16991,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.1844,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1376.3334,86707.695,0,0,0,1780.7136 -7662,9431,16993,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.7463427,7.910264,0,0,0,-982.23889,0,1,1,2019,10,0,16,25,1,0,0,17.368883,17.368883,0,0,0,0,0,0,0,0,2.7394361,0,50.54,55.04,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,927,846381.63,452406.72,478170.53,0,538.88263 -7663,9432,16994,16995,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,6.5745196,6.5602117,38,-4,56.567448,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,5.7942314,0,0,1,1,0,1.1208305,6.8093562,58.82,39.12,60.28,43.74,8.333333333333334,1,1,0,0,0,4,3,1,326.5,904122.63,394382.38,339226,0,2305.0427 -7663,9432,16995,16994,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,6.9618897,7.4223208,38,4,-24.59576,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,.74739385,7.1525526,60.28,43.74,58.82,39.12,6.666666666666667,1,1,0,0,0,4,3,1,326.5,904122.63,394382.38,339226,0,2305.0427 -7664,9433,16996,16998,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,9.0478153,8.7280607,0,4,1,-20.782913,0,2,1,2019,6,0,45,57,1,0,0,15.934324,15.934324,0,0,0,0,0,1,1,0,0,0,54.77,55.87,37.52,61.39,8.333333333333334,1,1,0,0,7,12,5,1,458.66666,190428.67,151103.97,224571.61,156206.22,4492.0571 -7664,9433,16997,-9,16998,16996,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-999.93207,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,458.66666,190428.67,151103.97,224571.61,156206.22,4492.0571 -7664,9433,16998,16996,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.0629597,8.4837093,0,4,-1,-161.97946,0,-9,-9,2019,19,7,26,28,1,7,0,20.302317,20.302317,0,0,0,0,0,1,1,0,0,0,37.52,61.39,54.77,55.87,8.333333333333334,1,1,0,0,9,12,5,1,458.66666,190428.67,151103.97,224571.61,156206.22,4492.0571 -7665,9434,16999,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.9775305,8.8534412,0,0,0,-911.65936,0,2,3,2019,9,1,47,55,1,1,0,15.313251,15.313251,0,0,0,0,0,0,0,0,4.8636737,0,57.17,48.12,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,147,231559.61,-11625.927,0,0,2543.3083 -7666,9435,17000,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.7632184,6.5366263,0,0,-901.52655,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3329153,50.68,53.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1401,409905.72,86365.891,0,0,1145.3326 -7667,9436,17001,17002,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.1918335,8.2614336,0,2,0,37.832539,0,-9,-9,2019,11,0,42,42,1,0,0,10.651914,10.651914,0,0,0,0,14.5,1,1,0,0,0,43.25,38.75,37.4,44.13,3.333333333333333,1,1,0,0,12,6,3,0,3023.5,285701.66,86452.734,71372.031,0,2329.176 -7667,9436,17002,17001,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,5.8759804,6.2156305,35,0,-24.429291,0,3,3,2019,18,6,0,39,3,6,0,0,0,0,0,0,0,0,1,1,0,6.3197284,0,37.4,44.13,43.25,38.75,6.666666666666667,1,1,0,0,11,6,3,0,3023.5,285701.66,86452.734,71372.031,0,2329.176 -7668,9437,17003,17004,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.6214843,7.6018591,0,18,-1,-56.857368,-9,-9,-9,2019,11,0,32,0,1,0,0,5.8579626,5.8579626,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,4,5,0,414.5,564598,122528.03,156890.47,14185.723,2946.2866 -7668,9437,17004,17003,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.3905191,8.4303055,0,1,1,117.03343,-9,-9,-9,2019,7,0,37,0,1,0,0,15.277131,15.277131,0,0,0,0,0,1,1,0,3.0759501,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,3,4,5,0,414.5,564598,122528.03,156890.47,14185.723,2946.2866 -7668,9438,17005,-9,17003,17004,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-921.94757,-9,2,1,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,1,0,2,4,1,0,611,-126256.66,0,0,0,37.161884 -7668,9439,17006,-9,17003,17004,1,0,22,0,0,0,2,2,-9,0,5,7.9067988,7.7405925,0,0,0,-1126.7821,-9,2,1,2019,6,0,35,0,1,0,1,7.0626469,7.0626469,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,4,3,0,438,-141666.77,0,0,0,1074.6559 -7669,9440,17007,-9,17008,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-879.64008,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,0,676,655538.31,0,436673.19,108857.34,2423.5901 -7669,9440,17008,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.6231203,8.7748795,0,0,0,-990.03735,0,1,2,2019,3,1,30,23,1,1,0,21.706167,21.706167,0,0,0,0,0,1,1,0,0,0,43.71,56.91,-9,-9,6.666666666666667,1,1,0,0,8,10,4,0,676,655538.31,0,436673.19,108857.34,2423.5901 -7669,9440,17009,-9,17008,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.2477,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,676,655538.31,0,436673.19,108857.34,2423.5901 -7670,9441,17010,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.3795981,7.1035275,0,0,-941.84253,0,3,2,2019,10,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4319503,7.5549231,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,681,921432.38,470548.88,58928.125,0,1769.4982 -7671,9442,17011,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1102.556,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.58,44.39,-9,-9,3.333333333333333,1,1,0,0,2,1,1,0,840,345163.91,0,0,0,753.0199 -7671,9443,17012,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.3775721,8.4566965,0,0,0,-950.57666,0,-9,-9,2019,12,0,38,45,1,0,0,17.230238,17.230238,0,0,0,0,0,1,1,0,0,0,41.46,53.68,-9,-9,5,1,1,0,0,3,1,4,0,497,-464150.72,-12131.5,0,0,1687.1077 -7672,9444,17013,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-902.67078,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,26.15,50.58,-9,-9,5,1,1,0,0,0,4,1,0,1545,333572.41,0,0,0,865.22296 -7673,9445,17014,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.3198605,8.1573305,0,0,-1073.6254,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.478322,8.1377659,66.06,38.34,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1647,375482.09,191345.55,195253.67,0,3037.5129 -7674,9446,17015,-9,17017,17018,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.364,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 -7674,9446,17016,-9,17017,17018,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1057.4784,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 -7674,9446,17017,17018,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6304588,7.5032153,0,10,-29,8.8621798,0,2,2,2019,18,6,36,30,1,6,0,6.3092637,6.3092637,0,0,0,0,0,1,1,0,0,0,29.13,46.2,54.97,47.63,3.333333333333333,1,1,0,0,12,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 -7674,9446,17018,17017,-9,-9,1,1,67,0,2,0,2,2,-9,0,3,7.82547,8.2153969,6.8255196,10,29,-29.724064,0,3,-9,2019,10,0,30,30,1,0,0,10.989536,10.989536,0,0,0,0,0,1,1,0,0,6.8548427,54.97,47.63,29.13,46.2,8.333333333333334,1,1,0,0,10,5,3,1,1002.25,1608058.5,1068864,388846.34,0,3257.4819 -7675,9447,17019,17020,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,7.5869012,7.5521164,6,0,66.892868,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,28.996151,0,0,1,1,0,4.928997,8.017458,51,47,53.93,49.4,7,1,1,0,0,0,7,4,1,903,85636.344,88717.227,192734.78,185757.91,4470.6226 -7675,9447,17020,17019,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.3462276,8.13659,6,0,19.603971,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,6.2009611,8.2643213,53.93,49.4,51,47,6.666666666666667,1,1,0,0,5,7,4,1,903,85636.344,88717.227,192734.78,185757.91,4470.6226 -7676,9448,17021,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.7439,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.97,53.99,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,428,-356753.53,0,0,0,60.364544 -7677,9449,17022,17023,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,8.0390863,7.7937636,0,7,4,-63.878006,0,-9,-9,2019,12,0,44,20,1,0,0,6.6605043,6.6605043,0,0,0,0,2,1,1,0,0,0,38.65,34.09,22.06,65.69,6.666666666666667,1,1,0,0,7,2,4,1,259.5,152732.25,-65647.266,125163.44,0,2002.552 -7677,9449,17023,17022,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9700985,7.8789792,0,7,-4,7.1429381,0,3,3,2019,22,8,39,39,1,8,0,7.297277,7.297277,0,0,0,0,0,1,1,0,0,0,22.06,65.69,38.65,34.09,1.666666666666667,1,1,0,0,9,2,4,1,259.5,152732.25,-65647.266,125163.44,0,2002.552 -7678,9450,17024,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.20984,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.06,32.2,-9,-9,1.666666666666667,1,1,0,0,7,12,1,0,193,-170430.92,0,0,0,531.91119 -7679,9451,17025,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.509882,8.3978052,0,0,0,-999.33655,0,3,2,2019,22,9,37,37,1,9,0,15.241165,15.241165,0,0,0,0,0,0,0,0,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1586,386076.94,132470.97,48715.492,44206.465,2525.4744 -7680,9452,17026,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1049.6516,-9,2,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,36.51,33.67,-9,-9,8.333333333333334,1,1,0,1,0,7,1,1,1339,-97971.273,0,0,0,1077.7887 -7680,9453,17027,-9,17026,-9,1,1,36,0,0,0,3,3,-9,0,4,8.676383,8.6507206,0,0,0,-1048.229,-9,2,2,2019,10,0,36,0,1,1,0,19.616842,19.616842,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,5,1,717,697579.44,201763.52,272748.72,114783.58,1869.8597 -7681,9454,17028,-9,17031,17029,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1039.8771,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 -7681,9454,17029,17031,-9,-9,1,1,54,0,2,0,2,2,-9,0,2,8.6080027,8.5644512,0,30,1,-6.1304965,0,2,3,2019,17,5,37,37,1,5,0,18.167017,18.167017,0,0,0,0,2,1,1,0,0,0,33.63,40.33,61.27,32.63,5,1,1,0,0,10,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 -7681,9454,17030,-9,17031,17029,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.183,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 -7681,9454,17031,17029,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,8.5382338,8.0140257,0,30,-1,50.880348,0,2,2,2019,12,0,35,35,1,0,0,10.89929,10.89929,0,0,0,0,0,1,1,0,2.5138969,0,61.27,32.63,33.63,40.33,6.666666666666667,1,1,0,0,10,6,4,1,474.25,1656811.4,1362125.3,232181.16,65628.031,3488.4126 -7682,9455,17032,-9,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.324,0,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.72,47.23,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,1750,213704.06,7018.27,0,0,658.85522 -7682,9456,17033,-9,17032,-9,1,0,19,0,0,0,2,2,1,0,4,6.7021732,6.4416003,0,0,0,-1053.8381,-9,2,-9,2019,6,2,20,0,1,2,1,3.9559298,3.9559298,0,0,0,0,2,1,1,0,0,0,46,59,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,8725,-41870.477,0,0,0,268.20813 -7683,9457,17034,-9,17036,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.70068,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,1,0,1045.6666,149750.98,0,0,0,1950.8461 -7683,9457,17035,-9,17036,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.6157,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,1,0,1045.6666,149750.98,0,0,0,1950.8461 -7683,9457,17036,-9,-9,-9,1,0,31,1,2,0,2,2,-9,1,1,0,0,0,0,0,-1050.1302,0,2,2,2019,30,11,0,18,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,14.88,32.77,-9,-9,1.666666666666667,1,1,0,0,3,12,1,0,1045.6666,149750.98,0,0,0,1950.8461 -7684,9458,17037,17038,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,9.7383089,9.7939968,0,11,2,-75.202576,0,2,1,2019,11,0,50,50,1,0,0,45.273743,45.273743,0,0,0,0,0,0,0,0,4.4478331,0,49.35,59.64,41.46,55.58,8.333333333333334,1,1,0,0,12,7,5,0,918,986007.63,302824.5,1047535.4,472166.56,6530.0605 -7684,9458,17038,17037,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,8.039114,7.7043014,0,11,-2,64.620735,0,1,1,2019,13,2,25,53,1,2,0,10.525787,10.525787,0,0,0,0,0,0,0,0,1.4648993,0,41.46,55.58,49.35,59.64,6.666666666666667,1,1,0,0,11,7,5,0,918,986007.63,302824.5,1047535.4,472166.56,6530.0605 -7684,9458,17039,-9,17038,17037,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.0038,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,0,918,986007.63,302824.5,1047535.4,472166.56,6530.0605 -7685,9459,17040,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-875.28357,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,4.7844105,0,0,1,1,0,0,0,50.06,30.61,-9,-9,10,1,1,0,0,0,10,1,0,874,482011.22,-11790.546,0,0,1303.7009 -7686,9460,17041,17043,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,9.0761099,8.9272852,0,11,2,-48.747593,0,2,2,2019,3,0,47,47,1,0,0,20.126038,20.126038,0,0,0,0,2,1,1,0,2.5928843,0,57.16,56.15,50.91,41.38,8.333333333333334,2,3,0,0,11,8,5,1,803,430772.47,46591.945,614315.06,175779.83,2958.2666 -7686,9460,17042,-9,17043,17041,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.91382,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,803,430772.47,46591.945,614315.06,175779.83,2958.2666 -7686,9460,17043,17041,17045,17044,1,0,37,0,1,0,1,1,-9,0,3,0,0,0,11,-2,25.231026,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,50.91,41.38,57.16,56.15,5,2,3,0,1,0,8,5,1,803,430772.47,46591.945,614315.06,175779.83,2958.2666 -7686,9461,17044,17045,-9,-9,1,1,75,0,1,0,1,1,-9,0,3,0,0,0,6,4,0,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,51,46,8,2,3,0,0,0,8,1,1,955.5,1871388.3,415581.59,483701.47,0,77.377213 -7686,9461,17045,17044,-9,-9,1,0,71,0,1,0,2,2,-9,0,3,0,0,0,6,-4,0,-9,-9,-9,2019,11,0,0,0,3,1,0,0,0,1,0,12.642202,0,0,1,1,0,0,0,51,46,53,46,7,2,3,0,0,0,8,1,1,955.5,1871388.3,415581.59,483701.47,0,77.377213 -7687,9462,17046,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.8852406,7.6205006,0,0,-1037.3158,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.3922529,7.8067632,29.64,44.7,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,348,544494.44,412356.09,230651.31,-2931.5796,2618.9778 -7688,9463,17047,17048,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.0271845,7.1332746,0,11,2,-26.221226,0,2,2,2019,8,0,40,24,1,0,0,3.323096,3.323096,0,0,0,0,0,0,0,0,3.1221852,0,59.53,56.44,59.43,58.05,8.333333333333334,1,1,0,0,5,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 -7688,9463,17048,17047,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,9.8358793,9.5325785,0,11,-2,119.81293,0,-9,-9,2019,8,1,60,40,1,1,0,31.511902,31.511902,0,0,0,0,0,0,0,0,3.4934223,0,59.43,58.05,59.53,56.44,8.333333333333334,1,1,0,0,6,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 -7688,9463,17049,-9,17047,17048,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.4717,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 -7688,9463,17050,-9,17047,17048,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.3616,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,279.25,662590,347812.63,665006.38,291947.66,5767.7441 -7689,9464,17051,17052,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.1659966,7.8256946,0,17,4,-41.362389,0,-9,-9,2019,15,3,41,37,1,3,0,10.321152,10.321152,0,0,0,0,0,0,0,0,0,0,39.09,60.15,41.3,60.77,5,1,1,0,0,8,1,5,1,1583,296788.47,0,137407.75,11642.49,2586.0315 -7689,9464,17052,17051,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.1068554,8.1727943,6.3075614,6,-4,-55.407959,0,-9,-9,2019,8,0,27,29,1,0,0,15.520667,15.520667,0,0,0,0,0,0,0,0,6.1919408,6.6664081,41.3,60.77,39.09,60.15,8.333333333333334,1,1,0,0,9,1,5,1,1583,296788.47,0,137407.75,11642.49,2586.0315 -7690,9465,17053,17054,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,9.3329716,9.4292974,0,1,0,-78.705704,-9,-9,-9,2019,9,0,50,0,1,0,0,32.011669,32.011669,0,0,0,0,0,1,1,0,.76070809,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,1,11,9,5,1,842.5,379186.03,218532.72,348852.97,64692.156,5294.8999 -7690,9465,17054,17053,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7870474,7.4224224,0,23,0,64.06073,-9,2,2,2019,8,0,21,0,1,0,0,10.599451,10.599451,0,0,0,0,0,1,1,0,.75467539,0,57.16,56.15,58.15,52.91,10,1,1,0,0,11,9,5,1,842.5,379186.03,218532.72,348852.97,64692.156,5294.8999 -7690,9466,17055,-9,17054,17053,1,0,24,0,0,0,2,2,-9,1,5,8.2102795,8.5802059,0,0,0,-856.42603,-9,2,3,2019,10,0,37,0,1,2,1,11.423017,11.423017,0,0,0,0,0,1,1,0,5.1659188,0,53.07,41.56,-9,-9,1.666666666666667,1,1,0,0,6,9,4,1,212,107275.34,1777.6781,0,0,2703.2942 -7691,9467,17056,17057,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.3532505,8.1377211,0,37,0,54.401615,0,2,2,2019,15,3,60,25,1,3,0,6.4976859,6.4976859,0,0,0,0,0,0,0,0,5.0002532,0,41.99,53.75,50.09,49.2,5,1,1,0,0,10,11,4,1,189.5,129450.03,290073,0,0,2216.9065 -7691,9467,17057,17056,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,37,0,-6.7926855,0,3,3,2019,12,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,6.041471,0,50.09,49.2,41.99,53.75,8.333333333333334,1,1,0,0,8,11,4,1,189.5,129450.03,290073,0,0,2216.9065 -7692,9468,17058,17059,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.1798882,6.3228383,45,1,-106.4693,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3871088,5.0539746,54.94,50.33,51.83,57.2,10,1,1,0,0,7,5,2,1,216,433737.19,128641.14,145131.91,0,1565.4447 -7692,9468,17059,17058,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,45,-1,-2.0450242,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,54.94,50.33,10,1,1,0,0,6,5,2,1,216,433737.19,128641.14,145131.91,0,1565.4447 -7693,9469,17060,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,6.8691692,7.2578902,0,0,-914.58215,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7560196,59.88,45.34,-9,-9,10,1,1,0,0,0,9,2,1,589,840941.44,132803.89,414084.41,0,1363.3711 -7694,9470,17061,-9,17063,17062,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.4524,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,864.66669,283898.59,140704.58,163479.2,142533.31,2904.7026 -7694,9470,17062,17063,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.2080994,8.4906979,0,8,-16,-102.26881,0,2,2,2019,10,0,40,40,1,0,0,11.136651,11.136651,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,11,9,4,1,864.66669,283898.59,140704.58,163479.2,142533.31,2904.7026 -7694,9470,17063,17062,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.7626243,7.7525892,0,8,16,160.27939,0,3,3,2019,9,0,25,30,1,0,0,7.5219712,7.5219712,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,6.666666666666667,1,1,0,0,11,9,4,1,864.66669,283898.59,140704.58,163479.2,142533.31,2904.7026 -7694,9471,17064,-9,17063,17062,1,1,20,0,1,0,2,2,1,0,4,7.6690187,7.7770782,0,0,0,-1031.7058,-9,2,2,2019,11,0,15,0,1,2,1,15.705664,15.705664,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,3,1,598,164447.3,0,0,0,626.16779 -7695,9472,17065,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.4734416,4.4158697,0,0,-983.672,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,4.5267324,46.26,42.16,-9,-9,5,1,1,0,0,2,2,2,0,656,146941.03,20277.361,0,0,1454.8732 -7696,9473,17066,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.432869,8.3124046,0,0,0,-988.01874,0,3,3,2019,12,2,43,38,1,2,0,10.758749,10.758749,0,0,0,0,14.5,0,0,0,0,0,53.59,42.05,-9,-9,6.666666666666667,1,1,0,1,10,2,4,1,185,-74733.445,30829.619,189865.42,3771.6711,1475.5575 -7697,9474,17067,-9,17069,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.14819,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,1257.6666,116098.63,0,0,0,1504.1553 -7697,9474,17068,-9,17069,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.37622,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,1257.6666,116098.63,0,0,0,1504.1553 -7697,9474,17069,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,5,0,0,0,0,0,-1025.8823,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.5,55.35,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,1257.6666,116098.63,0,0,0,1504.1553 -7698,9475,17070,-9,17071,17072,1,0,43,0,2,0,2,2,-9,0,4,7.7095737,8.0573473,6.3278642,0,0,-1112.3905,0,1,3,2019,9,0,39,40,1,0,0,7.3481998,7.3481998,0,0,0,0,0,1,1,0,6.588532,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,511,-136779.67,-41435.492,330448.16,376006.97,2172.1812 -7698,9476,17071,17072,-9,-9,1,0,66,0,2,0,2,2,-9,0,2,0,7.6960096,7.7969642,5,-2,90.492462,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.0124784,51.25,30.49,54.49,45.08,6.666666666666667,1,1,0,0,0,9,3,0,1326.5,1191292.8,475341.81,198510.77,0,3052.7803 -7698,9476,17072,17071,-9,-9,1,1,68,0,2,0,3,3,-9,0,3,0,8.1732235,8.1733255,5,2,105.58136,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1670637,54.49,45.08,51.25,30.49,8.333333333333334,1,1,0,0,0,9,3,0,1326.5,1191292.8,475341.81,198510.77,0,3052.7803 -7699,9477,17073,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.885201,8.2246246,6.4267788,0,0,-979.4743,0,-9,-9,2019,10,0,16,16,1,0,0,25.422129,25.422129,0,0,0,0,0,1,1,0,0,6.790935,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,924,-16442.287,-44230.945,0,0,1478.7263 -7700,9478,17074,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,5.9684157,6.3578234,0,0,-961.23199,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.9841094,49.78,23.35,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,327,-73169.836,-59991.551,222388.56,0,1420.7922 -7701,9479,17075,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.3971586,8.2080641,0,0,0,-1038.6527,-9,2,2,2019,12,0,45,0,1,0,0,11.856057,11.856057,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,7,10,4,1,295,37760.484,91924.695,0,0,1526.0186 -7701,9480,17076,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.8296204,8.3900967,0,0,0,-1071.9281,-9,-9,-9,2019,22,8,45,0,1,8,0,16.818974,16.818974,0,0,0,0,0,0,0,0,4.1343083,0,23.89,59.55,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,331,-146456.88,107285.5,0,0,2367.1951 -7702,9481,17077,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-990.32214,0,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,1,0,0,8,1,0,431,-27088.83,0,0,0,965.20557 -7703,9482,17078,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.9216628,5.9127941,0,0,-1013.4894,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,5.6213889,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,978,380094.53,164957.73,86204.602,28955.229,551.12762 -7704,9483,17079,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.5780497,8.6509075,0,0,0,-967.1897,0,3,2,2019,10,0,55,55,1,0,0,10.028403,10.028403,0,0,0,0,0,0,0,0,0,0,53.48,53.71,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,1786,273584.09,133091.58,0,0,2615.8767 -7705,9484,17080,-9,17083,17081,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.2933,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 -7705,9484,17081,17083,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,7.7801218,8.1275463,0,6,6,-29.624508,0,2,3,2019,10,1,43,40,1,1,0,6.420496,6.420496,0,0,0,0,0,1,1,0,0,0,47.31,50.2,36,51.15,8.333333333333334,1,1,0,0,9,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 -7705,9484,17082,-9,17083,17081,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-750.4436,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 -7705,9484,17083,17081,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,6,-6,-148.34032,0,2,3,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36,51.15,47.31,50.2,8.333333333333334,1,1,0,0,0,12,3,1,1506.5,446103.56,162521.27,170874.69,30113.799,1894.2697 -7706,9485,17084,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,7.1699929,7.3685184,0,0,-978.44623,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,7.0750484,37.35,15.58,-9,-9,0,1,1,0,0,0,9,3,1,499,275077.03,39705.227,217508.75,18613.355,1266.0366 -7706,9486,17085,-9,17084,-9,1,1,22,0,0,0,2,2,-9,0,5,8.5593624,8.5687923,0,0,0,-952.14856,-9,2,2,2019,11,0,43,0,1,0,1,11.80693,11.80693,0,0,0,0,42,1,1,0,.19600084,0,43.57,62.68,-9,-9,10,1,1,0,0,6,9,4,1,1420,-45751.277,-104046.13,0,0,1738.2351 -7707,9487,17086,17087,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.589911,7.7189298,56,1,-5.2793546,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,0,7.8756795,53.82,13.72,57.91,9.140000000000001,8.333333333333334,1,1,0,0,0,11,3,1,1400.5,950382.69,384502.5,310351.56,0,2097.4849 -7707,9487,17087,17086,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,56,-1,-67.028671,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.91,9.140000000000001,53.82,13.72,5,1,1,0,0,0,11,3,1,1400.5,950382.69,384502.5,310351.56,0,2097.4849 -7708,9488,17088,-9,17089,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.4314,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,2,0,584.66669,-102479.6,21575.432,127213.92,48260.371,1749.3596 -7708,9488,17089,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.2513251,7.2489095,0,0,0,-900.62457,0,3,2,2019,6,0,16,16,1,0,0,13.48321,13.48321,0,0,0,0,0,1,1,0,0,0,46.4,43.47,-9,-9,8.333333333333334,3,4,0,0,2,7,2,0,584.66669,-102479.6,21575.432,127213.92,48260.371,1749.3596 -7708,9488,17090,-9,17089,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.15692,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,584.66669,-102479.6,21575.432,127213.92,48260.371,1749.3596 -7709,9489,17091,17092,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,7.1465259,7.0237656,53,1,35.620228,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.5535808,0,0,1,1,0,3.3900151,7.1788554,62.7,41.29,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,674.5,568561.38,143197.72,458977.94,0,2125.114 -7709,9489,17092,17091,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.3817592,5.2810926,53,-1,-67.360947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7844591,5.3764324,57.16,56.15,62.7,41.29,8.333333333333334,1,1,0,0,0,9,2,1,674.5,568561.38,143197.72,458977.94,0,2125.114 -7710,9490,17093,17094,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.7923102,7.9060817,0,8,1,-78.828865,0,3,3,2019,12,1,30,30,1,1,0,6.6295567,6.6295567,0,0,0,0,0,0,0,0,0,0,38.51,59.43,33.6,45.88,6.666666666666667,1,1,0,0,9,9,3,1,457.5,284761.03,283382.44,145935.05,0,1711.7703 -7710,9490,17094,17093,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.2559471,7.2306428,0,8,-1,115.34227,0,3,2,2019,21,9,20,20,1,9,0,8.7705927,8.7705927,0,0,0,0,0,0,0,0,0,0,33.6,45.88,38.51,59.43,3.333333333333333,1,1,0,0,9,9,3,1,457.5,284761.03,283382.44,145935.05,0,1711.7703 -7710,9491,17095,-9,17094,17093,1,1,36,0,0,0,2,2,-9,0,3,7.9032612,8.047452,0,0,0,-1015.4317,0,2,2,2019,15,3,35,35,1,3,1,7.9977689,7.9977689,0,0,0,0,0,0,0,0,1.078127,0,42.87,45.21,-9,-9,5,1,1,0,0,9,9,4,1,490,-23823.914,42691.168,0,0,1405.6714 -7711,9492,17096,17097,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.2879162,8.1870518,54,2,-104.25253,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,9.0678711,0,0,1,1,0,3.9444976,8.4921255,56.69,46.84,49.68,32.32,8.333333333333334,1,1,0,0,0,6,3,1,862,804848.44,720269.88,203381.88,0,3289.7202 -7711,9492,17097,17096,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.8226967,4.9195671,54,-2,146.71808,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,8.7593775,0,0,1,1,0,.41678759,5.1399369,49.68,32.32,56.69,46.84,5,1,1,0,0,0,6,3,1,862,804848.44,720269.88,203381.88,0,3289.7202 -7712,9493,17098,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7379923,8.1325617,0,0,0,-1040.6781,0,-9,-9,2019,14,3,42,35,1,3,0,7.4000077,7.4000077,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,5,3,4,0,0,10,8,3,0,541.66669,187477.7,0,173343.78,90897.086,1771.1552 -7712,9493,17099,-9,17098,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-948.19208,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,3,0,541.66669,187477.7,0,173343.78,90897.086,1771.1552 -7712,9493,17100,-9,17098,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.2791,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,3,0,541.66669,187477.7,0,173343.78,90897.086,1771.1552 -7713,9494,17101,17102,-9,-9,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,8,1,0,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.07,12.11,37.84,52.88,1.666666666666667,1,1,0,0,0,6,1,0,440.33334,98787.313,-25414.254,0,0,2610.6924 -7713,9494,17102,17101,-9,-9,1,1,31,0,1,0,1,1,-9,1,4,0,0,0,8,-1,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,37.84,52.88,48.07,12.11,6.666666666666667,1,1,1,0,3,6,1,0,440.33334,98787.313,-25414.254,0,0,2610.6924 -7713,9494,17103,-9,17101,17102,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.97681,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,440.33334,98787.313,-25414.254,0,0,2610.6924 -7714,9495,17104,17105,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.4050007,7.7350569,7,3,-23.311136,0,3,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7552075,7.4435306,60.02,56.42,60.12,54.8,0,1,1,0,0,2,10,2,1,1685,353205.09,110272.81,245038.78,0,2709.6633 -7714,9495,17105,17104,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,4.7600751,4.8513379,7,-3,-17.515169,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.5136766,4.5773597,60.12,54.8,60.02,56.42,10,1,1,0,0,2,10,2,1,1685,353205.09,110272.81,245038.78,0,2709.6633 -7715,9496,17106,17107,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.3155642,6.2889199,47,-4,46.87949,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8337574,6.2713637,57.33,53.46,61.28,48.88,8.333333333333334,1,1,0,0,4,12,2,1,845,500262.25,351966.38,239389.13,0,1897.2666 -7715,9496,17107,17106,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.9143028,6.4912372,47,4,-4.4993396,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0150204,61.28,48.88,57.33,53.46,8.333333333333334,1,1,0,0,1,12,2,1,845,500262.25,351966.38,239389.13,0,1897.2666 -7716,9497,17108,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,5.3744698,8.7455978,8.7511377,0,0,-982.48395,0,-9,-9,2019,12,0,6,4,1,0,0,3.8711026,3.8711026,0,0,0,0,0,0,0,0,8.0921144,0,44.42,51.06,-9,-9,8.333333333333334,1,1,0,0,8,13,5,1,801,141968,92489.805,129302.32,26375.416,2724.7305 -7717,9498,17109,17110,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.4160194,8.5886097,0,32,5,24.364941,0,2,2,2019,11,0,60,60,1,0,0,11.006669,11.006669,0,0,0,0,0,0,0,0,3.3842773,0,55.66,54.25,37.76,52.92,10,1,1,0,0,7,12,4,1,953.5,576073.31,475212.03,320948.38,52139.148,2642.6621 -7717,9498,17110,17109,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.4823251,6.5412254,0,8,-5,-140.64447,0,2,2,2019,13,2,20,0,1,2,0,4.204421,4.204421,0,0,0,0,0,0,0,0,0,0,37.76,52.92,55.66,54.25,6.666666666666667,1,1,0,0,2,12,4,1,953.5,576073.31,475212.03,320948.38,52139.148,2642.6621 -7718,9499,17111,17113,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.9320688,7.6376405,0,9,2,-33.59898,0,2,-9,2019,8,0,32,32,1,0,0,9.9542999,9.9542999,0,0,0,0,0,1,1,0,0,0,45.13,54.73,48.45,57.49,8.333333333333334,1,1,0,0,11,5,4,1,701,55886.82,9949.6982,258677.55,149573,2754.9995 -7718,9499,17112,-9,17111,17113,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.2598,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,701,55886.82,9949.6982,258677.55,149573,2754.9995 -7718,9499,17113,17111,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.4778585,8.1809063,0,9,-2,8.7589512,0,3,2,2019,12,4,42,40,1,4,0,12.200001,12.200001,0,0,0,0,0,1,1,0,3.0298345,0,48.45,57.49,45.13,54.73,6.666666666666667,1,1,0,0,11,5,4,1,701,55886.82,9949.6982,258677.55,149573,2754.9995 -7719,9500,17114,17115,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,19,6,38.445297,0,3,2,2019,11,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,44.13,59.37,8.333333333333334,1,1,1,0,12,11,3,0,735,130479.12,71228.352,77723.156,19195.893,2251.1021 -7719,9500,17115,17114,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.1918116,8.0316391,0,18,-6,156.06831,-9,2,3,2019,13,3,38,0,1,3,0,8.8186045,8.8186045,0,0,0,0,0,0,0,0,7.2020936,0,44.13,59.37,50.57,52.35,5,1,1,0,0,13,11,3,0,735,130479.12,71228.352,77723.156,19195.893,2251.1021 -7720,9501,17116,17117,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.9350324,5.8585649,53,3,-124.99664,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9055369,5.5813794,51.83,57.2,31.69,34.16,8.333333333333334,1,1,0,0,1,7,2,1,423,174240.19,183328.25,381175.88,0,1397.5902 -7720,9501,17117,17116,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,53,-3,-190.01407,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,31.69,34.16,51.83,57.2,8.333333333333334,1,1,0,0,0,7,2,1,423,174240.19,183328.25,381175.88,0,1397.5902 -7721,9502,17118,-9,17120,17119,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1091.9489,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,666.33331,745295.31,246205.83,384853,0,2512.2896 -7721,9502,17119,17120,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,32,9,12.269484,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,18.67,25.83,22.39,1.666666666666667,1,1,0,0,8,12,2,0,666.33331,745295.31,246205.83,384853,0,2512.2896 -7721,9502,17120,17119,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,6.8658185,6.8802791,32,0,-73.649002,0,1,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,6.5206079,0,25.83,22.39,43.06,18.67,0,2,3,0,0,0,12,2,0,666.33331,745295.31,246205.83,384853,0,2512.2896 -7722,9503,17121,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.6508155,8.0015364,0,0,-957.1012,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,9.0969954,8.0169086,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,338,315884.38,365274.97,93508.875,0,7331.2871 -7723,9504,17122,17123,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,9,2,20.58713,0,1,1,2019,4,0,0,43,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,10,5,2,1,320,1793253.9,940692.38,800776.25,0,1857.0283 -7723,9504,17123,17122,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.3889832,7.6127024,9,-2,92.406609,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8481407,7.3223281,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,7,5,2,1,320,1793253.9,940692.38,800776.25,0,1857.0283 -7723,9505,17124,-9,17123,17122,1,1,23,0,0,0,1,1,1,0,5,0,0,0,0,0,-1126.8989,-9,1,1,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,59.91,-9,-9,8.333333333333334,1,1,1,0,4,5,1,1,648,14735.433,0,0,0,113.21062 -7724,9506,17125,17126,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,8.1827555,8.3150873,0,7,6,52.268658,0,2,3,2019,8,0,45,53,1,0,0,12.061014,12.061014,0,0,0,0,0,0,0,0,2.6985459,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,8,10,5,1,715,2166605.3,1948773.6,576948.75,426721.25,3333.575 -7724,9506,17126,17125,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.3323722,7.9054675,6.4140162,7,-6,48.437675,0,2,3,2019,8,0,22,38,1,0,0,10.796,10.796,0,0,0,0,2,0,0,0,1.8419269,6.6815186,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,8,10,5,1,715,2166605.3,1948773.6,576948.75,426721.25,3333.575 -7725,9507,17127,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1020.6056,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,3.6449583,0,0,1,1,0,0,0,35.62,20.45,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,2207,-148884.03,0,0,0,120.00882 -7726,9508,17128,17129,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,9.0820103,8.9883108,0,6,1,86.733185,0,2,2,2019,12,1,42,47,1,1,0,18.456083,18.456083,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.77,55.87,8.333333333333334,1,1,0,0,9,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 -7726,9508,17129,17128,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,7.7936788,7.9703074,0,6,-1,-108.9103,0,-9,-9,2019,7,0,24,24,1,0,0,13.270691,13.270691,0,0,0,0,0,1,1,0,1.714038,0,54.77,55.87,54.37,54.8,8.333333333333334,1,1,0,0,9,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 -7726,9508,17130,-9,17129,17128,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.1261,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 -7726,9508,17131,-9,17129,17128,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.77155,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,608,210272.08,128682.81,302210.25,238572.34,4008.541 -7727,9509,17132,17133,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.2282243,7.6709042,6.8400588,39,-1,16.405737,0,3,3,2019,12,4,24,37,1,4,0,7.4237013,7.4237013,0,0,0,0,2,0,0,0,4.6418853,6.7869992,49,48,57.16,56.15,8.333333333333334,1,1,0,0,9,11,4,1,956.5,747337.88,471807,302977.53,66319.391,3689.7358 -7727,9509,17133,17132,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.5294838,8.1489487,39,1,93.95752,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.1262531,8.7535734,57.16,56.15,49,48,8.333333333333334,1,1,0,0,7,11,4,1,956.5,747337.88,471807,302977.53,66319.391,3689.7358 -7728,9510,17134,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,1.483915,6.6018176,6.0929627,0,0,-990.51569,0,2,2,2019,13,1,20,22,1,1,0,.034341548,.034341548,0,0,0,0,0,1,1,0,6.7238884,0,57.3,18.67,-9,-9,3.333333333333333,1,1,0,0,5,10,2,0,2413,0,0,0,0,1211.7126 -7728,9510,17135,-9,17134,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.26038,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,0,2413,0,0,0,0,1211.7126 -7729,9511,17136,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1078.8431,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,6.666666666666667,2,3,1,0,1,5,2,0,643,0,0,0,0,0 -7730,9512,17137,17138,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.3325644,7.4728293,8,-1,-44.323624,0,1,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5196409,7.2985606,46.84,55.68,46.26,42.16,8.333333333333334,1,1,0,0,0,12,3,1,1503.5,900267.56,678330.5,396665.25,110356.81,3103.0674 -7730,9512,17138,17137,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.4171267,7.1377068,8,1,-64.216064,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.7602139,7.1595492,46.26,42.16,46.84,55.68,5,1,1,0,0,5,12,3,1,1503.5,900267.56,678330.5,396665.25,110356.81,3103.0674 -7731,9513,17139,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-959.84387,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,.95967877,0,0,1,1,0,2.5810084,0,37.47,34.76,-9,-9,5,1,1,0,0,0,12,1,0,574,-10626.122,0,0,0,1419.6047 -7732,9514,17140,17141,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6302223,8.8381081,0,4,-4,22.83758,0,-9,-9,2019,8,0,31,29,1,0,0,27.871004,27.871004,0,0,0,0,0,0,0,0,3.5054431,0,55.79,52.62,57.16,56.15,10,1,1,0,0,10,9,5,1,350,1473572.8,145612.75,970486.25,0,4772.3823 -7732,9514,17141,17140,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.0340557,9.0243893,7.0977197,4,4,-40.458866,0,3,3,2019,7,0,40,37,1,0,0,18.542912,18.542912,0,0,0,0,0,0,0,0,1.6062659,7.2281165,57.16,56.15,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,350,1473572.8,145612.75,970486.25,0,4772.3823 -7733,9515,17142,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1026.3748,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.49,20.49,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,50,0,0,0,0,1394.2645 -7733,9516,17143,-9,17142,-9,1,1,23,0,0,0,2,2,1,0,4,7.3027768,7.3902073,0,0,0,-825.06879,-9,2,-9,2019,10,0,35,0,1,1,1,5.5486937,5.5486937,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,3,1,2811,97862.75,-2888.2952,0,0,696.32104 -7733,9517,17144,-9,17142,-9,1,1,18,0,0,0,2,2,-9,0,4,7.4925089,7.6690192,0,0,0,-1086.5227,0,2,-9,2019,6,0,38,0,1,0,1,5.7597933,5.7597933,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,635,0,0,0,0,1091.3058 -7734,9518,17145,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,7.8987446,8.4347334,0,0,0,-833.49921,0,3,3,2019,8,1,29,28,1,1,0,12.022824,12.022824,0,0,0,0,0,1,1,0,7.8124313,0,48.69,41.09,-9,-9,6.666666666666667,1,1,0,0,12,6,3,1,940,693757.06,383887.31,128128.2,60181.613,2743.6887 -7735,9519,17146,-9,17147,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.6041,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,8,2,0,1126,131931.97,4800.3301,0,0,1636.3534 -7735,9519,17147,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.8412604,7.0628977,5.1595616,0,0,-1006.7042,0,2,2,2019,10,1,20,23,1,1,0,4.7461324,4.7461324,0,0,0,0,7,1,1,0,5.4069066,0,52.65,54.32,-9,-9,5,1,1,0,0,2,8,2,0,1126,131931.97,4800.3301,0,0,1636.3534 -7736,9520,17148,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1049.4309,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,3,4,1,0,0,8,1,0,401,-127798.53,0,0,0,1232.2891 -7737,9521,17149,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,8.387805,8.2933741,0,0,-1091.3801,0,2,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.4771514,8.0510035,41.29,48.5,-9,-9,3.333333333333333,1,1,0,0,10,5,4,0,1949,864607.06,917586.69,127634.92,0,1557.5225 -7738,9522,17150,17151,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.65555,5.972506,8,8,-102.66418,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.4997773,50.21,45.02,48.78,38.38,8.333333333333334,1,1,0,0,0,10,2,1,519.5,573597.56,471926.47,183208.11,0,1858.2921 -7738,9522,17151,17150,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.886549,7.1853299,8,-8,50.093346,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.2989678,7.1177859,48.78,38.38,50.21,45.02,3.333333333333333,1,1,0,0,9,10,2,1,519.5,573597.56,471926.47,183208.11,0,1858.2921 -7739,9523,17152,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.4295702,5.526443,0,0,-1047.2246,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,1,0,20.857212,0,120,1,1,0,0,5.9362321,40.27,35.81,-9,-9,5,1,1,0,0,0,8,2,0,923,466707.5,106061.98,299717.44,0,1201.559 -7739,9524,17153,-9,17152,-9,1,1,42,0,0,0,3,3,-9,1,2,0,0,0,0,0,-999.02679,0,3,-9,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.18,33.45,-9,-9,0,4,2,0,1,0,8,1,0,844,-126276.35,0,0,0,612.10614 -7740,9525,17154,17155,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.4980984,5.4291668,7,0,40.224247,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,4.2117887,5.7084937,53.17,46.94,43.01,53.24,8.333333333333334,1,1,0,0,5,12,2,1,616,236730.02,122003.3,122913.77,0,1489.6255 -7740,9525,17155,17154,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,7,0,91.033829,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,43.01,53.24,53.17,46.94,8.333333333333334,1,1,0,0,2,12,2,1,616,236730.02,122003.3,122913.77,0,1489.6255 -7740,9526,17156,-9,17155,17154,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1098.9342,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,0,12,1,1,983,-78376.375,0,0,0,1007.0414 -7741,9527,17157,17158,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.7614441,9.9004431,6.0828481,8,-4,21.744938,0,3,3,2019,9,0,45,48,1,0,0,37.775066,37.775066,0,0,0,0,0,1,1,0,0,5.906692,46.21,58.07,57.33,53.46,8.333333333333334,1,1,0,0,8,11,5,1,195.5,1369277,438477.38,396999.44,0,10706.693 -7741,9527,17158,17157,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.6990252,6.74052,8,4,-131.46251,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.163765,6.400259,57.33,53.46,46.21,58.07,8.333333333333334,1,1,0,0,4,11,5,1,195.5,1369277,438477.38,396999.44,0,10706.693 -7742,9528,17159,-9,17161,17160,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.0831,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 -7742,9528,17160,17161,-9,-9,1,1,52,1,2,0,2,2,-9,0,3,8.9366989,8.9374313,6.8367162,11,14,23.230816,0,2,2,2019,8,1,40,40,1,1,0,19.388557,19.388557,0,0,0,0,0,1,1,0,0,7.4558301,52,54.51,26.43,53.73,8.333333333333334,1,1,0,0,13,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 -7742,9528,17161,17160,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,11,-14,-97.789726,0,-9,-9,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.43,53.73,52,54.51,3.333333333333333,1,1,0,1,7,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 -7742,9528,17162,-9,17161,17160,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.42371,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,397.5,1388228.9,611871.56,1599097.5,655470.63,3096.3374 -7743,9529,17163,17165,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,8.8107872,8.3591442,0,6,-5,-53.720184,0,-9,-9,2019,8,0,38,37,1,0,0,14.457077,14.457077,0,0,0,0,0,1,1,0,.39858046,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,6,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 -7743,9529,17164,-9,17165,17163,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.62958,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 -7743,9529,17165,17163,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,0,0,0,6,5,-109.0331,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.9603024,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,5,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 -7743,9529,17166,-9,17165,17163,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.4818,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,657.75,-181225.02,4805.0566,0,0,2229.9648 -7744,9530,17167,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.0179558,7.7092328,0,0,-1105.4895,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5818784,7.5068965,62.06,43.51,-9,-9,10,1,1,0,0,0,2,3,1,2832,449229.25,38071.848,274983.94,0,2130.0425 -7745,9531,17168,17169,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.1180706,8.8440924,0,6,12,27.412153,0,2,2,2019,8,0,42,44,1,0,0,16.633644,16.633644,0,0,0,0,0,0,0,0,5.0900288,0,57.73,54.53,65.73999999999999,27.66,8.333333333333334,1,1,0,0,7,4,5,1,1129,333040.94,147623.61,170612.41,73913.391,5147.126 -7745,9531,17169,17168,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.5417404,8.5715685,0,6,-12,2.4905918,0,2,2,2019,6,0,40,40,1,0,0,23.434261,23.434261,0,0,0,0,2,0,0,0,4.7749162,0,65.73999999999999,27.66,57.73,54.53,6.666666666666667,1,1,0,0,7,4,5,1,1129,333040.94,147623.61,170612.41,73913.391,5147.126 -7746,9532,17170,17171,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.6051097,6.1477737,7,11,45.225555,0,3,3,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,42,1,0,1,3.4129689,6.2297912,34.68,56.05,48,48,10,1,1,0,0,0,7,2,1,262.5,476226.16,118219.07,142813.94,0,1553.4751 -7746,9532,17171,17170,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,7,-11,59.506584,0,3,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,48,48,34.68,56.05,0,1,1,0,0,0,7,2,1,262.5,476226.16,118219.07,142813.94,0,1553.4751 -7747,9533,17172,17173,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.7613697,7.8102312,10,-10,-39.72435,0,3,3,2019,24,9,0,18,4,9,0,0,0,0,0,0,0,74.5,1,1,0,0,7.3162522,28.98,54.35,39.57,18.04,1.666666666666667,1,1,0,0,10,10,3,1,1133.5,898819.38,179150.53,451116.5,0,2860.5981 -7747,9533,17173,17172,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,6.6284618,6.8757796,10,10,-128.22957,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,1,0,28.328499,0,0,1,1,0,0,6.4271903,39.57,18.04,28.98,54.35,1.666666666666667,1,1,0,0,0,10,3,1,1133.5,898819.38,179150.53,451116.5,0,2860.5981 -7748,9534,17174,17175,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5521231,7.6785412,0,7,-7,53.384754,-9,2,2,2019,10,0,24,0,1,1,0,8.8920679,8.8920679,0,0,0,0,0,0,0,0,0,0,51,53,54,53,8,1,1,0,0,10,9,5,1,2272.5,1653835.5,1048028.4,392583.72,-18329.391,3683.3652 -7748,9534,17175,17174,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,8.6011181,8.9061089,0,36,7,108.36707,0,3,2,2019,8,0,60,54,1,0,0,10.396513,10.396513,0,0,0,0,0,0,0,0,0,0,54,53,51,53,8,1,1,0,0,10,9,5,1,2272.5,1653835.5,1048028.4,392583.72,-18329.391,3683.3652 -7749,9535,17176,17179,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.8415232,8.7355728,0,7,2,-105.50443,0,3,3,2019,9,0,42,37,1,0,0,23.091743,23.091743,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.44,53.27,8.333333333333334,1,1,0,0,9,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 -7749,9535,17177,-9,17176,17179,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2122,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 -7749,9535,17178,-9,17176,17179,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.67792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 -7749,9535,17179,17176,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6984787,8.8139791,0,7,-2,-70.887489,0,3,3,2019,11,0,40,40,1,0,0,21.77277,21.77277,0,0,0,0,0,1,1,0,0,0,51.44,53.27,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,1262.5,1166810.9,848373.75,475014.19,165136.61,5621.1719 -7750,9536,17180,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.0187392,6.3075967,0,0,-881.66504,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3280168,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,1114,529766.88,218290.73,162487.66,0,537.99921 -7751,9537,17181,-9,17182,17183,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.9302,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1292.6666,-47673.941,0,75667.047,0,2190.5276 -7751,9537,17182,17183,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.9765372,7.9348269,0,1,-3,30.871283,-9,-9,-9,2019,11,0,21,0,1,2,0,13.841948,13.841948,0,0,0,0,0,1,1,0,1.4235454,0,47,58,57.29,35.37,7,1,1,0,0,1,6,4,0,1292.6666,-47673.941,0,75667.047,0,2190.5276 -7751,9537,17183,17182,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,7.7077689,7.6444325,0,1,3,29.33708,0,2,-9,2019,7,1,44,44,1,1,0,6.2796807,6.2796807,0,0,0,0,0,1,1,0,0,0,57.29,35.37,47,58,8.333333333333334,1,1,0,0,6,6,4,0,1292.6666,-47673.941,0,75667.047,0,2190.5276 -7752,9538,17184,-9,17185,17186,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-898.41864,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,0,2,2,0,616,90381.43,27791.803,0,0,1838.8613 -7752,9538,17185,17186,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,0,0,0,2,-6,-6.9337702,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.14819,0,46.93,43.23,41.17,59.31,3.333333333333333,2,3,0,0,0,2,2,0,616,90381.43,27791.803,0,0,1838.8613 -7752,9538,17186,17185,-9,-9,1,1,55,0,1,0,3,3,-9,0,4,6.7735896,7.0181136,0,2,6,-72.410728,0,-9,-9,2019,10,0,16,16,1,0,0,8.4434013,8.4434013,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.93,43.23,6.666666666666667,2,3,0,0,10,2,2,0,616,90381.43,27791.803,0,0,1838.8613 -7753,9539,17187,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.2064238,8.10186,0,0,0,-902.40002,-9,-9,-9,2019,14,3,36,0,1,3,0,14.075056,14.075056,0,0,0,0,0,0,0,0,0,0,52.6,34.11,-9,-9,1.666666666666667,1,1,0,1,10,8,4,0,668,178292.95,232642.81,0,0,1395.9595 -7754,9540,17188,17189,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7176409,7.9333711,6,2,-67.487091,0,2,2,2019,33,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,5.0429535,7.5289497,20.56,59.69,55,53,3.333333333333333,1,1,0,0,2,9,5,1,87,1447699,1077066.5,542680.25,282746.63,3822.2676 -7754,9540,17189,17188,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.0596895,8.7358294,0,6,-2,-110.69565,0,-9,-9,2019,8,0,40,40,1,0,0,15.784782,15.784782,0,0,0,0,0,0,0,0,5.7360096,0,55,53,20.56,59.69,8,1,1,0,0,1,9,5,1,87,1447699,1077066.5,542680.25,282746.63,3822.2676 -7755,9541,17190,17191,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.372323,8.561285,0,10,-5,-20.426132,0,-9,-9,2019,11,0,47,43,1,0,0,10.795631,10.795631,0,0,0,0,0,1,1,0,0,0,54.45,56.22,56.44,52.37,8.333333333333334,2,3,0,0,12,8,5,1,617,172366.69,512852,210108,105106.3,4588.7617 -7755,9541,17191,17190,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.9609795,9.1184673,0,24,5,-22.850876,0,2,2,2019,10,0,35,35,1,0,0,27.817497,27.817497,0,0,0,0,0,1,1,0,0,0,56.44,52.37,54.45,56.22,8.333333333333334,2,3,0,0,12,8,5,1,617,172366.69,512852,210108,105106.3,4588.7617 -7755,9542,17192,-9,17190,17191,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1062.4093,-9,2,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,430,0,0,0,0,0 -7756,9543,17193,17194,17196,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.2842755,6.2472229,44,2,43.930851,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4291353,57.46,35.71,43.67,43.38,8.333333333333334,1,1,0,0,0,11,3,0,890.33331,999402.94,384701.03,197681.69,0,1991.7542 -7756,9543,17194,17193,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,7.5001526,7.9102273,0,44,-2,-154.97357,0,3,-9,2019,10,1,37,34,1,1,0,7.8177996,7.8177996,0,0,0,0,2,1,1,0,0,0,43.67,43.38,57.46,35.71,1.666666666666667,1,1,0,0,12,11,3,0,890.33331,999402.94,384701.03,197681.69,0,1991.7542 -7756,9543,17195,-9,17194,17193,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1149.744,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,11,3,0,890.33331,999402.94,384701.03,197681.69,0,1991.7542 -7756,9544,17196,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.8761406,7.0588498,0,0,-1016.8649,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,21.922152,0,0,1,1,0,0,6.8901458,52,45,-9,-9,8,1,1,0,0,0,11,2,0,231,-215333.81,131697.78,204996.94,0,1150.6412 -7757,9545,17197,17198,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,0,0,21,-1,0,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.8034071,0,53.99,48.04,40.45,41.66,8.333333333333334,1,1,0,0,5,10,1,1,1189.5,785437.25,385791.22,269841.63,0,416.29047 -7757,9545,17198,17197,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,21,1,0,0,3,2,2019,12,3,0,19,3,3,0,0,0,0,0,0,0,0,0,0,0,7.0969038,0,40.45,41.66,53.99,48.04,0,1,1,1,1,10,10,1,1,1189.5,785437.25,385791.22,269841.63,0,416.29047 -7758,9546,17199,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-971.21075,0,3,2,2019,19,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,28.79,21.04,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,1205,-115901.3,0,0,0,1218.0538 -7759,9547,17200,-9,17201,17202,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2721,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,1459.6666,361983.84,248786.39,405526.59,233419.02,4036.7856 -7759,9547,17201,17202,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.3837318,8.1040525,0,12,-3,124.6685,0,2,3,2019,14,3,30,29,1,3,0,15.761876,15.761876,0,0,0,0,0,1,1,0,0,0,48,54.77,55.19,54.26,8.333333333333334,1,1,0,0,9,7,5,1,1459.6666,361983.84,248786.39,405526.59,233419.02,4036.7856 -7759,9547,17202,17201,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.7153711,8.7506456,0,11,3,2.6936848,0,2,2,2019,8,0,70,38,1,0,0,10.532817,10.532817,0,0,0,0,0,1,1,0,1.6928115,0,55.19,54.26,48,54.77,8.333333333333334,1,1,0,0,9,7,5,1,1459.6666,361983.84,248786.39,405526.59,233419.02,4036.7856 -7760,9548,17203,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.1854448,9.2526379,0,0,0,-1083.188,0,3,1,2019,14,2,33,32,1,2,0,38.232147,38.232147,0,0,0,0,0,0,0,0,0,0,49.87,41.9,-9,-9,5,1,1,0,0,13,6,5,1,666,2229241.3,2162417.3,162677.77,48760.352,3141.8652 -7760,9549,17204,-9,17203,-9,1,1,24,0,0,0,2,2,-9,0,3,7.0332007,7.3336816,0,0,0,-953.7373,-9,1,-9,2019,16,4,40,0,1,4,1,3.0376914,3.0376914,0,0,0,0,0,0,0,0,0,0,29.12,59.76,-9,-9,3.333333333333333,1,1,0,1,8,6,2,1,1169,-13168.24,10733.673,0,0,633.30487 -7761,9550,17205,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.4992433,7.7261124,0,0,-997.43372,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.3641796,7.4821887,53.47,52.37,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1354,457609.72,428768.88,199247.66,0,6387.1724 -7762,9551,17206,-9,17207,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.2131,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,1149,134950.19,6182.3755,291894.84,130620.41,1971.2533 -7762,9551,17207,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,6.331274,7.3808966,7.4739208,0,0,-1140.2369,0,1,2,2019,29,11,20,15,1,11,0,3.2909925,3.2909925,0,0,0,0,0,1,1,0,6.462625,0,17.79,63.7,-9,-9,3.333333333333333,1,1,0,0,7,4,2,1,1149,134950.19,6182.3755,291894.84,130620.41,1971.2533 -7762,9551,17208,-9,17207,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.69916,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,1,1149,134950.19,6182.3755,291894.84,130620.41,1971.2533 -7763,9552,17209,17210,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.2474451,8.3536091,0,6,2,-25.163792,0,1,1,2019,10,0,41,45,1,0,0,9.594389,9.594389,0,0,0,0,0,1,1,0,3.100337,0,62.39,56.71,42.82,54.37,6.666666666666667,1,1,0,0,12,9,4,1,435,-103381.36,-37065.34,0,0,3372.8628 -7763,9552,17210,17209,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.83957,7.9360309,0,6,-2,-86.791031,0,-9,-9,2019,8,0,36,36,1,0,0,7.4105816,7.4105816,0,0,0,0,0,1,1,0,0,0,42.82,54.37,62.39,56.71,5,2,3,0,0,7,9,4,1,435,-103381.36,-37065.34,0,0,3372.8628 -7764,9553,17211,17212,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.0848079,7.0993547,56,-1,48.580204,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.621398,6.836421,58.32,50.22,38.57,54.11,8.333333333333334,1,1,0,0,0,7,3,1,1264.5,1604552,473448.5,575758.5,0,2848.8809 -7764,9553,17212,17211,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.9221139,7.4356689,56,1,24.342653,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,2.618432,0,0,1,1,0,1.7380003,7.5662766,38.57,54.11,58.32,50.22,6.666666666666667,1,1,0,0,0,7,3,1,1264.5,1604552,473448.5,575758.5,0,2848.8809 -7765,9554,17213,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,3.7834222,3.9322433,0,0,-1017.7794,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.566622,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,2164,70929.992,0,0,0,1627.2567 -7766,9555,17214,17215,-9,-9,1,1,28,0,0,0,1,1,-9,0,2,8.5948601,8.9318161,0,7,-2,-211.1049,0,1,1,2019,15,0,48,48,1,4,0,14.448056,14.448056,0,0,0,0,0,0,0,0,0,0,42,43,45.4,41.4,5,1,1,0,0,6,1,5,1,243,-4868.6504,20351.799,232488.91,165772.47,3466.415 -7766,9555,17215,17214,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,7.9921637,7.6118317,0,7,2,-93.698441,0,-9,-9,2019,12,0,38,38,1,0,0,10.038828,10.038828,0,0,0,0,0,0,0,0,0,0,45.4,41.4,42,43,8.333333333333334,1,1,0,0,7,1,5,1,243,-4868.6504,20351.799,232488.91,165772.47,3466.415 -7767,9556,17216,-9,17217,17220,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.5994,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,2,3,-9,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 -7767,9556,17217,17220,-9,-9,1,0,38,0,3,0,3,3,-9,0,3,0,0,0,11,-8,14.806885,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64.25,39.29,41.94,48.65,10,2,3,0,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 -7767,9556,17218,-9,17217,17220,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.848,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 -7767,9556,17219,-9,17217,17220,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-964.3125,-9,3,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,2,3,-9,0,0,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 -7767,9556,17220,17217,-9,-9,1,1,46,0,3,0,3,3,-9,0,2,7.3970208,7.3085608,0,23,8,-106.53444,0,-9,-9,2019,13,2,70,70,1,2,0,2.8916304,2.8916304,0,0,0,0,0,1,0,1,0,0,41.94,48.65,64.25,39.29,8.333333333333334,2,3,0,0,13,1,2,1,640.40002,26348.637,-93341.922,0,0,2521.9021 -7768,9557,17221,17222,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.0253801,7.9917912,40,8,-21.101196,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5446534,8.0003777,54.2,57.49,42.78,15.43,8.333333333333334,1,1,0,0,0,7,4,1,397.5,1631515.5,878930.13,648667.13,0,3009.4111 -7768,9557,17222,17221,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,6.963367,7.124248,40,-8,-68.656853,0,3,2,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,5.4113526,7.0099893,42.78,15.43,54.2,57.49,1.666666666666667,1,1,0,0,2,7,4,1,397.5,1631515.5,878930.13,648667.13,0,3009.4111 -7769,9558,17223,-9,17228,17229,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1094.2963,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 -7769,9558,17224,-9,17228,17229,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1125.6904,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 -7769,9558,17225,-9,17228,17229,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-798.09369,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 -7769,9558,17226,-9,17228,17229,1,0,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1021.5131,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 -7769,9558,17227,-9,17228,17229,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1001.5066,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 -7769,9558,17228,17229,-9,-9,1,0,27,1,5,0,2,2,-9,0,4,0,0,0,5,-10,-31.3459,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,57,51,56,7,1,1,0,0,0,8,2,0,842.28571,99663.688,0,0,0,2424.8503 -7769,9558,17229,17228,-9,-9,1,1,37,1,5,0,2,2,-9,0,4,7.7898502,7.5185795,0,5,10,18.51259,0,-9,-9,2019,10,0,47,40,1,1,0,4.794662,4.794662,0,0,0,0,0,1,0,1,0,0,51,56,48,57,7,1,1,0,0,5,8,2,0,842.28571,99663.688,0,0,0,2424.8503 -7770,9559,17230,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1029.2107,0,3,3,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,7,1,1,0,7.0835013,0,50.2,40.62,-9,-9,3.333333333333333,1,1,0,0,10,13,1,1,676,64803.039,0,0,0,1280.6945 -7771,9560,17231,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1111.7245,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4904356,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,6,1,1,421,252201.34,-21288.973,0,0,174.61848 -7772,9561,17232,17233,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,0,-70.184776,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,10,2,1,526.5,982614.63,119084.28,316216.59,0,2213.7476 -7772,9561,17233,17232,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.9439869,7.1122293,51,0,-38.290722,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7868042,53,47,51,46,7,1,1,0,0,0,10,2,1,526.5,982614.63,119084.28,316216.59,0,2213.7476 -7773,9562,17234,17235,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.6136971,8.6621666,0,7,17,120.3512,0,-9,-9,2019,4,0,42,42,1,0,0,11.484804,11.484804,0,0,0,0,0,0,0,0,3.764605,0,45.35,54.75,40.19,50.39,8.333333333333334,1,1,0,0,9,5,5,1,839.5,840466.13,695772.63,354102.13,0,3293.5034 -7773,9562,17235,17234,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.2983513,8.0077314,0,7,-17,-93.253273,0,2,2,2019,13,1,42,42,1,1,0,8.9256706,8.9256706,0,0,0,0,0,0,0,0,1.0979463,0,40.19,50.39,45.35,54.75,8.333333333333334,1,1,0,0,9,5,5,1,839.5,840466.13,695772.63,354102.13,0,3293.5034 -7774,9563,17236,17237,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-6,3.3511164,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,3.1623504,32.137779,25.012522,71.5,1,1,0,4.5448136,0,61.28,24.6,22.94,37.13,10,1,1,0,0,0,6,2,1,473,474926.5,297203.88,260749.63,0,2164.5618 -7774,9563,17237,17236,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.9665866,6.8054299,6,6,65.143707,0,-9,-9,2019,24,11,0,0,4,11,0,0,0,1,4.6494312,34.312077,24.656765,0,1,1,0,4.5706348,6.6458354,22.94,37.13,61.28,24.6,6.666666666666667,1,1,0,0,0,6,2,1,473,474926.5,297203.88,260749.63,0,2164.5618 -7775,9564,17238,17239,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.299479,7.0362234,8,3,-42.365414,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3663034,7.1128235,57.33,53.46,47.79,56.46,8.333333333333334,1,1,0,0,4,5,3,1,482,985290.13,792709,346073.56,0,2934.5632 -7775,9564,17239,17238,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8761034,7.7796144,8,-3,22.313721,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8106358,7.9004145,47.79,56.46,57.33,53.46,8.333333333333334,1,1,0,0,3,5,3,1,482,985290.13,792709,346073.56,0,2934.5632 -7776,9565,17240,17242,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.9564924,8.0299845,0,10,0,197.34044,0,2,2,2019,14,4,37,35,1,4,0,10.397906,10.397906,0,0,0,0,0,1,1,0,0,0,43.84,58.37,57.33,53.46,8.333333333333334,1,1,0,0,11,9,5,1,661.66669,662470.44,502562.25,614564.13,302825.81,4727.0845 -7776,9565,17241,-9,17240,17242,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.64764,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,661.66669,662470.44,502562.25,614564.13,302825.81,4727.0845 -7776,9565,17242,17240,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.2029037,9.4752321,0,10,0,-52.059406,0,-9,-9,2019,7,0,55,55,1,0,0,20.286335,20.286335,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.84,58.37,8.333333333333334,1,1,0,0,11,9,5,1,661.66669,662470.44,502562.25,614564.13,302825.81,4727.0845 -7777,9566,17243,17247,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.8598232,8.9641628,6.2588897,9,8,-83.711411,0,2,2,2019,8,0,48,48,1,0,0,21.300531,21.300531,0,0,0,0,0,1,1,0,6.8658566,0,61.12,51.57,49.04,55.86,8.333333333333334,1,1,0,0,10,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 -7777,9566,17244,-9,17247,17243,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6158,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 -7777,9566,17245,-9,17247,17243,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.49451,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 -7777,9566,17246,-9,17247,17243,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-1064.0106,-9,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 -7777,9566,17247,17243,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,9,-8,-49.37854,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,61.12,51.57,8.333333333333334,1,1,0,0,0,9,4,1,705.20001,122972.05,63463.598,328373.41,161663.23,2752.0793 -7777,9567,17248,-9,17247,17243,1,1,20,0,2,0,2,2,-9,0,4,7.335103,7.3652759,0,0,0,-980.87823,0,2,2,2019,6,0,45,45,1,0,1,4.348949,4.348949,0,0,0,0,0,1,1,0,5.779983,0,54.2,57.49,-9,-9,10,1,1,0,0,10,9,3,1,289,361219.84,0,0,0,1148.4152 -7778,9568,17249,17250,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.5120406,7.5144124,0,8,5,-100.23508,0,-9,-9,2019,10,2,20,0,1,2,0,10.363045,10.363045,0,0,0,0,0,0,0,0,3.4048913,0,31.95,55.47,51.66,54.88,10,1,1,0,0,9,6,5,1,127,-26412.465,171453.77,149400.88,69124.742,3883.2246 -7778,9568,17250,17249,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8381929,9.0210209,0,8,-5,-29.680771,0,-9,-9,2019,10,0,45,50,1,0,0,16.825611,16.825611,0,0,0,0,0,0,0,0,4.2615261,0,51.66,54.88,31.95,55.47,5,1,1,0,0,12,6,5,1,127,-26412.465,171453.77,149400.88,69124.742,3883.2246 -7779,9569,17251,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.3824797,9.3289061,0,0,0,-836.17035,0,1,1,2019,11,0,48,50,1,0,0,27.167322,27.167322,0,0,0,0,2,0,0,0,0,0,37.75,56.99,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,628,938824.19,524784.19,286570.78,133495.2,3299.4783 -7780,9570,17252,17254,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.4313216,7.122777,0,20,-7,-49.402218,0,3,3,2019,9,0,19,19,1,0,0,11.597457,11.597457,0,0,0,0,0,1,1,0,2.5875504,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,366.66666,300428.44,121508.71,133267.05,-11289.988,2943.4819 -7780,9570,17253,-9,17252,17254,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.2539,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,366.66666,300428.44,121508.71,133267.05,-11289.988,2943.4819 -7780,9570,17254,17252,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.8541842,8.793313,0,10,7,-80.267365,0,-9,-9,2019,8,0,37,40,1,0,0,23.116255,23.116255,0,0,0,0,0,1,1,0,2.1277096,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,366.66666,300428.44,121508.71,133267.05,-11289.988,2943.4819 -7781,9571,17255,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-944.62836,0,3,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.05,27.23,-9,-9,0,1,1,0,1,0,1,1,0,225,81539.227,53684.078,0,0,852.396 -7782,9572,17256,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,6.1455717,6.0988636,0,0,-957.86578,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.9016678,6.0905113,54.13,48.04,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,839,-278634.44,0,0,0,716.72485 -7783,9573,17257,-9,17258,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-949.13733,0,3,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,57.92,51.82,-9,-9,6.666666666666667,1,1,0,0,6,11,1,1,189,-418424.19,0,0,0,0 -7783,9574,17258,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.4208045,6.0405297,0,0,-1057.3718,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,11.082994,0,0,1,1,0,0,6.2680016,54,44,-9,-9,8,1,1,0,0,0,11,2,1,246,47770.762,36070.203,151707.48,0,824.22675 -7784,9575,17259,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.3405352,8.4926596,0,0,-1036.7959,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,6.8765435,8.5586882,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,555,462094.44,714387,156970.45,0,3825.3135 -7785,9576,17260,17261,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.1857424,9.1925554,0,9,3,-62.214169,0,-9,-9,2019,27,10,60,55,1,10,0,20.4841,20.4841,0,0,0,0,0,0,0,0,0,0,49.27,56.95,52.23,55.6,3.333333333333333,1,1,0,0,12,8,5,1,812.5,234647.63,515628.38,208400.44,69082.875,5757.9844 -7785,9576,17261,17260,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6202469,8.1201162,0,9,-3,70.030128,0,2,2,2019,12,2,44,41,1,2,0,15.929056,15.929056,0,0,0,0,0,0,0,0,0,0,52.23,55.6,49.27,56.95,8.333333333333334,4,2,0,0,10,8,5,1,812.5,234647.63,515628.38,208400.44,69082.875,5757.9844 -7786,9577,17262,17263,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,50,-4,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.14,43.11,57.33,53.46,8.333333333333334,1,1,0,0,0,10,1,0,666.5,254595.13,0,247988.3,0,1886.707 -7786,9577,17263,17262,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,50,4,0,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,.17663532,0,0,1,1,0,0,0,57.33,53.46,47.14,43.11,10,1,1,0,0,3,10,1,0,666.5,254595.13,0,247988.3,0,1886.707 -7787,9578,17264,17266,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8208094,8.7740984,0,28,0,-24.345596,0,2,2,2019,8,0,50,60,1,0,0,11.139977,11.139977,0,0,0,0,0,1,1,0,0,0,46.48,50.24,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,1276.6666,3286185.5,1521667.5,569976.88,0,4553.5728 -7787,9578,17265,-9,17264,17266,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-903.72461,-9,1,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.71,61.53,-9,-9,10,1,1,0,0,2,2,5,1,1276.6666,3286185.5,1521667.5,569976.88,0,4553.5728 -7787,9578,17266,17264,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.6257658,8.7018747,0,28,0,-4.9777255,0,2,2,2019,10,0,40,40,1,0,0,17.123775,17.123775,0,0,0,0,0,1,1,0,4.1325145,0,57.16,56.15,46.48,50.24,8.333333333333334,1,1,0,0,9,2,5,1,1276.6666,3286185.5,1521667.5,569976.88,0,4553.5728 -7787,9579,17267,-9,17264,17266,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1052.6588,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.6607847,0,41.85,59.52,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,308,0,0,0,0,118.31906 -7788,9580,17268,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.9281759,8.1229534,3.8822415,0,0,-1043.5659,0,2,2,2019,18,6,48,48,1,6,0,6.0664039,6.0664039,0,0,0,0,0,1,1,0,3.820632,0,32.32,63.9,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,812,-6148.3213,107213.12,0,0,1527.6299 -7788,9581,17269,-9,17268,-9,1,1,20,0,0,0,2,2,-9,0,3,7.276412,7.1440368,0,0,0,-821.62622,0,2,-9,2019,15,3,32,0,1,3,1,4.9885144,4.9885144,0,0,0,0,0,1,1,0,0,0,37.32,52.38,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,565,142611.08,0,0,0,-246.0974 -7788,9582,17270,-9,17268,-9,1,1,18,0,0,1,2,0,0,1,3,0,0,0,0,0,-904.31921,-9,2,-9,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.81,39.65,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,449,0,0,0,0,828.55682 -7789,9583,17271,17272,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.4159365,5.6413279,43,1,24.264502,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.016469,5.3081088,59.14,52.5,52,48,8.333333333333334,1,1,0,0,5,9,2,1,1245.5,593751.19,409688,212424.5,0,4243.4473 -7789,9583,17272,17271,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8615069,7.1857681,43,-1,40.217834,0,3,3,2019,10,0,0,21,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1307635,52,48,59.14,52.5,7,1,1,0,0,0,9,2,1,1245.5,593751.19,409688,212424.5,0,4243.4473 -7790,9584,17273,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.2464776,6.8954239,0,0,-1026.0448,0,-9,2,2019,10,0,0,0,4,0,0,0,0,1,2.6726418,0,27.604874,0,1,1,0,6.6236882,7.2088275,57.87,38.63,-9,-9,1.666666666666667,1,1,0,0,0,10,3,0,1043,149839.25,152010.02,214985.13,0,1675.6892 -7791,9585,17274,17275,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.2893181,8.2855015,5,2,-23.665865,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,8.2388592,8.3377628,52,48,60.02,56.42,7,1,1,0,0,0,1,5,1,824,1883227.3,1561346.5,463562.38,0,7551.104 -7791,9585,17275,17274,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,8.4301443,8.4656572,35,-2,88.220093,0,2,2,2019,3,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0009604,8.5870018,60.02,56.42,52,48,10,1,1,0,0,8,1,5,1,824,1883227.3,1561346.5,463562.38,0,7551.104 -7792,9586,17276,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9656076,7.4935832,0,0,-1046.046,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9489527,7.8514767,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,281,477230.69,387157.19,124373.97,0,1868.9791 -7793,9587,17277,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-909.9856,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,22,-9,-9,5,1,1,0,0,0,12,1,0,405,-138650.72,0,0,0,1648.1777 -7794,9588,17278,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,7.5820999,7.8051662,0,0,-931.87891,0,3,3,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,2.2547357,8.0006151,41.82,33.78,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,497,353788.41,-50749.75,161688,0,1170.5917 -7795,9589,17279,17280,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,-4,-22.98336,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.16,48.06,7,1,1,0,0,0,7,2,0,263.5,265989,45873,0,0,1573.0126 -7795,9589,17280,17279,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.5596838,7.0667262,45,4,-9.6863909,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,6.7882128,58.16,48.06,50,47,8.333333333333334,1,1,0,0,0,7,2,0,263.5,265989,45873,0,0,1573.0126 -7795,9590,17281,-9,17279,17280,1,0,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1081.4404,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,7,1,0,2645,435081.81,0,0,0,1010.302 -7796,9591,17282,-9,17283,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.40991,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,1367.5,166819.81,102026.58,0,0,1597.2598 -7796,9591,17283,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,5,7.118701,7.4574018,6.00385,0,0,-908.71417,0,2,2,2019,3,0,16,16,1,0,0,10.570832,10.570832,0,0,0,0,0,1,1,0,5.4696751,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,1367.5,166819.81,102026.58,0,0,1597.2598 -7797,9592,17284,17285,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6027732,7.8231082,0,3,-1,-27.367395,0,-9,-9,2019,11,1,59,35,1,1,0,5.1610484,5.1610484,0,0,0,0,27,0,0,0,0,0,44.08,59.33,54.4,51.93,3.333333333333333,1,1,0,0,4,5,4,0,1309,-93148.688,101235.91,136976.98,58387.738,2468.1519 -7797,9592,17285,17284,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.6696258,7.8529196,0,3,1,36.410347,0,3,2,2019,13,2,39,40,1,2,0,8.2897482,8.2897482,0,0,0,0,0,0,0,0,0,0,54.4,51.93,44.08,59.33,6.666666666666667,1,1,0,0,8,5,4,0,1309,-93148.688,101235.91,136976.98,58387.738,2468.1519 -7798,9593,17286,17287,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.0588064,9.1975021,0,31,5,43.791687,0,-9,-9,2019,13,1,40,40,1,1,0,27.563984,27.563984,0,0,0,0,0,0,0,0,3.0374081,0,47.32,52.7,51.83,57.2,6.666666666666667,1,1,0,0,10,8,5,1,861,883107.31,480009.88,194207.67,0,4225.5088 -7798,9593,17287,17286,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.941062,7.9214048,0,31,-5,74.816292,0,2,-9,2019,7,0,36,24,1,0,0,10.057294,10.057294,0,0,0,0,0,0,0,0,2.4716005,0,51.83,57.2,47.32,52.7,8.333333333333334,1,1,0,0,10,8,5,1,861,883107.31,480009.88,194207.67,0,4225.5088 -7799,9594,17288,17289,-9,-9,1,0,63,0,1,0,2,2,-9,0,4,0,4.9407978,5.1347175,8,-5,-57.176712,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.1941981,5.1167426,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,0,11,3,1,1117,692395.31,72568.281,393219.16,0,1576.4674 -7799,9594,17289,17288,-9,-9,1,1,68,0,1,0,2,2,-9,0,4,0,7.7903614,7.8440614,8,5,80.643585,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3017325,7.7482576,48.87,58.55,57.16,56.15,6.666666666666667,1,1,0,0,0,11,3,1,1117,692395.31,72568.281,393219.16,0,1576.4674 -7799,9595,17290,-9,-9,17291,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1037.1848,-9,-9,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,4,1,693,-16710.289,206572.59,217147.97,119674.69,2065.1067 -7799,9595,17291,-9,17288,17289,1,1,40,0,1,0,3,3,-9,0,4,8.2574806,8.5854473,0,0,0,-915.89319,0,2,1,2019,23,11,60,60,1,11,0,9.6387587,9.6387587,0,0,0,0,0,1,1,0,0,0,42.93,36.83,-9,-9,6.666666666666667,1,1,0,1,8,11,4,1,693,-16710.289,206572.59,217147.97,119674.69,2065.1067 -7800,9596,17292,-9,17293,17294,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.60095,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 -7800,9596,17293,17294,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.9211969,7.8774519,0,7,6,-95.549667,0,3,3,2019,12,1,38,14,1,1,0,10.530592,10.530592,0,0,0,0,0,1,1,0,0,0,49.58,55.59,57.33,53.46,8.333333333333334,1,1,0,0,5,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 -7800,9596,17294,17293,-9,-9,1,1,26,0,2,0,3,3,-9,0,3,7.1277151,7.2059665,0,7,-6,82.38929,0,-9,-9,2019,12,0,30,25,1,0,0,6.736053,6.736053,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.58,55.59,6.666666666666667,1,1,0,0,6,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 -7800,9596,17295,-9,17293,17294,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.73199,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,623.25,-70990,35389.648,125739.55,85929.453,2500.0784 -7801,9597,17296,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1003.4197,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,10,1,1,0,0,8,1,1,0,1439,150188.59,0,0,0,92.943489 -7802,9598,17297,17298,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.5837994,8.3510876,10,2,92.055916,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9669404,8.4926939,52.21,48.86,57.57,43.81,8.333333333333334,1,1,0,0,0,7,4,1,1070.5,3390375.3,683984.75,1773575.3,0,4111.5063 -7802,9598,17298,17297,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-110.0071,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4651097,0,57.57,43.81,52.21,48.86,8.333333333333334,1,1,0,0,0,7,4,1,1070.5,3390375.3,683984.75,1773575.3,0,4111.5063 -7803,9599,17299,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.4590182,6.7509909,0,0,-1030.1301,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6483531,6.5302873,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,414,-171554.66,82546.289,41865.965,0,852.48267 -7804,9600,17300,17301,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.3949647,5.329061,51,-1,25.60429,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.4930959,5.5418315,46.95,59.37,57.76,54.51,10,1,1,0,0,0,9,2,1,215,708456.75,334792.06,590090.19,0,2245.4187 -7804,9600,17301,17300,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.0262637,7.1307001,51,1,62.549572,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6081934,7.096271,57.76,54.51,46.95,59.37,8.333333333333334,1,1,0,0,0,9,2,1,215,708456.75,334792.06,590090.19,0,2245.4187 -7805,9601,17302,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.4595351,7.8229985,0,0,0,-1078.464,-9,3,3,2019,17,5,44,0,1,5,0,7.3853259,7.3853259,0,0,0,0,14.5,1,1,0,0,0,27.98,41.86,-9,-9,6.666666666666667,1,1,0,1,9,9,3,0,279,202359.34,-90168.82,0,0,981.98572 -7806,9602,17303,17304,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,9.2386827,9.447834,0,3,7,-6.8087792,-9,-9,-9,2019,12,1,43,0,1,1,0,34.425797,34.425797,0,0,0,0,0,1,1,0,0,0,42.89,62.6,33.24,65.53,8.333333333333334,1,1,0,0,0,7,5,1,559.66669,1073766.8,138951.59,742130.56,104304.64,5030.8823 -7806,9602,17304,17303,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.2810707,8.2579737,4.0054455,3,-7,39.165558,0,3,3,2019,11,0,38,36,1,0,0,12.458159,12.458159,0,0,0,0,0,1,1,0,3.8450661,0,33.24,65.53,42.89,62.6,3.333333333333333,1,1,0,1,11,7,5,1,559.66669,1073766.8,138951.59,742130.56,104304.64,5030.8823 -7806,9602,17305,-9,17304,17303,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-938.38782,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.59919387,0,41,56.99,-9,-9,5,1,1,0,0,0,7,5,1,559.66669,1073766.8,138951.59,742130.56,104304.64,5030.8823 -7807,9603,17306,17307,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.8280487,9.0718107,0,8,-2,-85.466469,0,-9,-9,2019,10,0,42,41,1,0,0,23.271723,23.271723,0,0,0,0,7,0,0,0,3.2919228,0,51.49,57.57,45.72,55.84,8.333333333333334,1,1,0,0,10,6,5,1,1221,311833.28,13294.084,140698.88,282751.75,5252.8564 -7807,9603,17307,17306,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8898201,8.9007826,0,27,2,-12.134031,0,2,2,2019,13,1,47,43,1,1,0,15.562215,15.562215,0,0,0,0,0,0,0,0,6.5891242,0,45.72,55.84,51.49,57.57,8.333333333333334,1,1,0,0,10,6,5,1,1221,311833.28,13294.084,140698.88,282751.75,5252.8564 -7807,9604,17308,-9,17306,17307,1,0,20,0,0,0,2,2,-9,0,4,7.7401981,7.9424963,0,0,0,-975.89081,0,2,2,2019,7,0,39,39,1,0,1,7.352005,7.352005,0,0,0,0,0,0,0,0,3.8757794,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,77,352148.75,0,0,0,1754.3517 -7808,9605,17309,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,5.9999075,5.7977214,0,0,-913.42932,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,2.9478734,0,28.114082,0,1,1,0,0,5.8145604,56.1,25.97,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2415,52941.563,0,186818.47,0,760.94263 -7809,9606,17310,-9,17312,17313,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-826.76288,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,1,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 -7809,9606,17311,-9,17312,17313,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-924.6524,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 -7809,9606,17312,17313,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,7.2177668,7.5416327,0,28,1,85.789841,0,3,2,2019,4,0,32,0,1,0,0,6.4511476,6.4511476,0,0,0,0,0,0,0,0,0,0,60.02,56.42,59.7,43.22,8.333333333333334,1,1,0,0,2,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 -7809,9606,17313,17312,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.0542984,8.3260431,0,28,-1,-53.214947,0,2,2,2019,8,0,40,47,1,0,0,13.037846,13.037846,0,0,0,.67065263,0,0,0,0,4.0300455,0,59.7,43.22,60.02,56.42,10,1,1,0,0,10,9,3,1,440.25,264125.19,117710.25,276979.47,43207.82,2271.0491 -7809,9607,17314,-9,17312,17313,1,0,21,0,1,0,1,1,1,0,3,8.2528038,8.5093927,0,0,0,-871.01001,-9,2,2,2019,11,3,69,0,1,3,1,7.1921682,7.1921682,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1933,-230245.11,103851.99,0,0,2025.0874 -7809,9608,17315,-9,17312,17313,1,1,20,0,1,0,2,2,-9,0,1,0,0,0,0,0,-1047.5521,0,2,2,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1.5668845,0,46.05,31.12,-9,-9,0,1,1,1,0,0,9,2,1,1052,65932.531,0,0,0,304.22189 -7810,9609,17316,17317,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.9609709,9.0922098,0,2,10,80.701149,0,1,1,2019,13,1,40,46,1,1,0,24.881943,24.881943,0,0,0,0,0,0,0,0,4.7477183,0,48.87,58.55,57.06,57.76,10,4,5,0,0,10,5,5,1,2235.6667,418932.28,186553,249741.06,209345.66,5342.001 -7810,9609,17317,17316,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.1690693,8.2398081,0,2,-10,-104.78097,-9,-9,-9,2019,6,0,40,0,1,0,0,13.615446,13.615446,0,0,0,0,0,0,0,0,4.646131,0,57.06,57.76,48.87,58.55,10,4,2,0,0,1,5,5,1,2235.6667,418932.28,186553,249741.06,209345.66,5342.001 -7810,9609,17318,-9,17317,17316,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-895.9054,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,5,5,1,2235.6667,418932.28,186553,249741.06,209345.66,5342.001 -7811,9610,17319,17320,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.1022606,6.5326257,0,11,5,69.27742,0,-9,-9,2019,15,3,45,0,1,3,0,3.4279175,3.4279175,0,0,0,0,0,0,0,0,0,0,37.87,33.13,44.62,57.73,5,2,3,0,0,1,4,4,1,624,300201.97,41718.176,137377.81,0,2522.5366 -7811,9610,17320,17319,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4181728,8.414053,0,31,-5,71.401924,0,2,3,2019,13,3,41,42,1,3,0,12.632794,12.632794,0,0,0,0,14.5,0,0,0,3.9397426,0,44.62,57.73,37.87,33.13,6.666666666666667,2,3,0,0,13,4,4,1,624,300201.97,41718.176,137377.81,0,2522.5366 -7811,9611,17321,-9,17320,17319,1,1,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-1054.1484,-9,2,2,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,40.64,52.96,-9,-9,5,2,3,1,0,3,4,1,1,1321,-82505.875,0,0,0,0 -7812,9612,17322,17323,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.0199242,7.9894729,0,31,-15,-69.92569,0,3,2,2019,10,1,40,35,1,1,0,10.050323,10.050323,0,0,0,0,74.5,1,1,0,0,0,44,38,59,54,1.666666666666667,3,4,0,1,12,8,3,0,512,1003049.9,680334.63,318574.38,0,2109.9006 -7812,9612,17323,17322,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,3.1979795,3.4001455,31,15,46.546165,0,3,2,2019,14,3,0,0,4,3,0,0,0,1,0,21.744654,0,0,1,1,0,3.4763775,3.2820537,59,54,44,38,6.666666666666667,3,4,0,0,0,8,3,0,512,1003049.9,680334.63,318574.38,0,2109.9006 -7813,9613,17324,17325,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.5498767,7.3738637,8,3,21.567297,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.2209549,7.8574576,57.33,53.46,37.17,47.9,8.333333333333334,1,1,0,0,4,9,3,1,481.5,1320205,448923.25,640724.75,0,2716.3794 -7813,9613,17325,17324,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1227641,6.8266907,8,-3,-75.865128,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.7923293,6.8445983,37.17,47.9,57.33,53.46,8.333333333333334,1,1,0,0,2,9,3,1,481.5,1320205,448923.25,640724.75,0,2716.3794 -7814,9614,17326,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,4.7164311,4.5972519,0,0,-910.03424,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2340703,4.6907973,64.81,30.01,-9,-9,10,1,1,0,0,0,12,2,1,463,321702.88,-12342.685,0,0,1169.7253 -7815,9615,17327,17328,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,6.551909,7.1306252,6.6457534,24,18,99.652405,0,2,3,2019,5,0,14,13,1,0,0,4.964118,4.964118,0,0,0,0,0,1,1,0,0,6.7837281,53.37,45.61,48,48,5,1,1,0,0,8,11,4,1,915.5,20298.898,-17217.006,165420.91,0,2954.8123 -7815,9615,17328,17327,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0337868,7.8975544,0,24,-18,174.51062,0,3,2,2019,11,0,16,18,1,2,0,21.199205,21.199205,0,0,0,0,0,1,1,0,6.7287478,0,48,48,53.37,45.61,7,1,1,0,0,1,11,4,1,915.5,20298.898,-17217.006,165420.91,0,2954.8123 -7815,9616,17329,-9,17328,17327,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-897.47955,1,2,2,2019,7,0,0,8,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,183,-87649.82,0,0,0,0 -7816,9617,17330,17331,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,5.4122801,5.4886189,53,-3,-37.169064,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3723621,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,6,10,2,1,564.5,694561.19,79708.25,360691.13,0,1822.0577 -7816,9617,17331,17330,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.5765338,5.5088282,53,3,26.666248,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1492929,5.5482845,57.16,56.15,57.33,53.46,10,1,1,0,0,0,10,2,1,564.5,694561.19,79708.25,360691.13,0,1822.0577 -7817,9618,17332,17333,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.7838898,8.6755104,0,16,4,35.841839,0,2,1,2019,11,0,62,62,1,0,0,14.590454,14.590454,0,0,0,0,0,1,1,0,.31165835,0,50.07,41.79,47.22,45.94,1.666666666666667,1,1,0,0,12,11,5,1,546,1038124.4,942431.13,512716.75,363029.06,4603.0527 -7817,9618,17333,17332,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.8794079,8.8832045,0,16,-4,-40.518726,0,1,2,2019,8,1,31,42,1,1,0,23.949539,23.949539,0,0,0,0,0,1,1,0,0,0,47.22,45.94,50.07,41.79,8.333333333333334,1,1,0,0,12,11,5,1,546,1038124.4,942431.13,512716.75,363029.06,4603.0527 -7818,9619,17334,17335,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,9.311306,9.3189411,0,8,-2,59.46608,0,2,2,2019,6,0,37,36,1,0,0,35.963654,35.963654,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.15,52.91,10,1,1,0,0,9,12,5,1,398,863525.19,582720.25,245041.34,115741.66,5863.8096 -7818,9619,17335,17334,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6111116,8.3140974,6.2497001,8,2,-32.81218,0,3,2,2019,7,0,42,42,1,0,0,10.067521,10.067521,0,0,0,0,0,1,1,0,0,6.8692179,58.15,52.91,62.49,55.09,8.333333333333334,1,1,0,0,9,12,5,1,398,863525.19,582720.25,245041.34,115741.66,5863.8096 -7819,9620,17336,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,5.7907538,5.7489386,0,0,-991.0426,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8153839,5.9025979,60.11,44.43,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,571,432570.88,102086.28,324626.5,0,1299.0105 -7820,9621,17337,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0715542,7.9566112,0,0,-1005.0967,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.3397894,7.9764247,50.18,52.62,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,509,510547.38,345853.97,111093.17,0,1368.0715 -7821,9622,17338,17339,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,63,-2,-2.9084995,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,4.5518656,0,0,1,1,0,0,0,53.94,21.61,34.47,18.35,5,1,1,0,0,0,7,2,1,459,173083.5,57971.492,187135.66,0,2970.8752 -7821,9622,17339,17338,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.0318213,7.3276424,63,2,36.762844,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.3903246,7.0307031,34.47,18.35,53.94,21.61,8.333333333333334,1,1,0,0,0,7,2,1,459,173083.5,57971.492,187135.66,0,2970.8752 -7822,9623,17340,17341,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.3711352,7.2723255,38,-1,-63.010609,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.9878271,7.2747941,56.35,51,60.12,54.8,8.333333333333334,1,1,0,0,9,2,2,1,3302.5,1420198.8,311844.53,222952.77,0,1567.5281 -7822,9623,17341,17340,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,38,1,59.993458,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5345376,0,60.12,54.8,56.35,51,10,1,1,0,0,11,2,2,1,3302.5,1420198.8,311844.53,222952.77,0,1567.5281 -7823,9624,17342,17343,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1998305,7.1487851,0,7,0,-50.572392,0,-9,-9,2019,11,0,16,15,1,2,0,9.4545784,9.4545784,0,0,0,0,0,0,0,0,.74862361,0,49,48,58.96,34.12,7,1,1,0,0,1,1,5,1,739.5,793030.19,555743.75,203168.97,86919.75,3223.7319 -7823,9624,17343,17342,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,9.1254272,9.2523785,6.4397655,32,0,5.295413,0,3,3,2019,11,1,42,45,1,1,0,28.55953,28.55953,0,0,0,0,2,0,0,0,.51254028,6.362318,58.96,34.12,49,48,8.333333333333334,1,1,0,0,9,1,5,1,739.5,793030.19,555743.75,203168.97,86919.75,3223.7319 -7824,9625,17344,-9,17345,17346,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.7059,-9,2,3,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,2,1,1,0,0,0,26.1,59.61,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1084,0,0,0,0,2760.1516 -7824,9625,17345,17346,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,5,-10,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,41.24,30.33,37.62,20.21,5,1,1,1,0,0,13,1,0,1084,0,0,0,0,2760.1516 -7824,9625,17346,17345,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,5,10,0,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,37.62,20.21,41.24,30.33,1.666666666666667,1,1,1,0,4,13,1,0,1084,0,0,0,0,2760.1516 -7825,9626,17347,17348,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.2780905,7.5882039,10,-10,176.94843,0,1,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0855622,7.4509187,59.7,53.75,51,46,10,1,1,0,0,7,10,2,1,1128.5,387467.88,126892.47,147020.88,0,2474.126 -7825,9626,17348,17347,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,10,10,-61.363369,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,59.7,53.75,8,1,1,0,0,0,10,2,1,1128.5,387467.88,126892.47,147020.88,0,2474.126 -7826,9627,17349,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,8.0249748,7.6454029,0,0,-992.56555,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,11.830665,0,0,1,1,0,0,7.4815979,65.54000000000001,33.23,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,2264,-24394.701,243146.28,0,0,2164.5632 -7827,9628,17350,17351,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3316803,7.7843375,0,45,-1,8.7291088,0,-9,-9,2019,11,0,25,16,1,0,0,12.664199,12.664199,0,0,0,0,2,1,1,0,2.6849418,0,54.37,54.8,63.06,29.54,8.333333333333334,1,1,0,0,8,5,4,1,453,230177,155920.38,156518.78,0,2105.7158 -7827,9628,17351,17350,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,7.7393541,7.719758,0,45,1,5.0388713,0,2,-9,2019,10,1,32,32,1,1,0,6.0748601,6.0748601,0,0,0,0,0,1,1,0,2.1668212,0,63.06,29.54,54.37,54.8,8.333333333333334,1,1,0,0,4,5,4,1,453,230177,155920.38,156518.78,0,2105.7158 -7828,9629,17352,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.7545905,6.7972107,0,0,-824.20367,0,2,1,2019,15,6,0,0,4,6,0,0,0,0,0,0,0,42,1,1,0,3.3794429,6.8924241,40.64,42.22,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,432,128411.03,179168.72,326347.03,0,1099.6786 -7829,9630,17353,17354,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.6448998,7.953042,39,0,-59.817192,0,2,1,2019,7,0,0,47,4,0,0,0,0,0,0,0,0,14.5,0,0,0,5.1730618,7.9447055,59.71,48.06,51.77,58.57,10,1,1,0,0,10,6,5,1,1263.5,3829089,1554450.8,1238016.8,0,4393.9966 -7829,9630,17354,17353,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.2799587,8.8109875,39,0,-56.524914,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.9761133,8.0731773,51.77,58.57,59.71,48.06,8.333333333333334,1,1,0,0,4,6,5,1,1263.5,3829089,1554450.8,1238016.8,0,4393.9966 -7830,9631,17355,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1108.145,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.57,28.62,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,514,119831.81,0,0,0,349.43216 -7831,9632,17356,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.28418,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,3.0121865,0,0,1,1,0,0,0,25.31,44.08,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,501,-189481.72,0,0,0,1058.1689 -7831,9633,17357,-9,17356,-9,1,1,36,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.79712,0,3,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,3.2577419,0,42,42,-9,-9,3,1,1,0,1,0,13,1,0,1978,0,0,0,0,-145.51257 -7832,9634,17358,17359,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,5.0742369,5.5296388,51,0,-52.221161,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9624,57.06,57.76,58.32,50.22,8.333333333333334,1,1,0,0,0,5,3,1,773.5,1426188,1020919.3,292863.94,0,3657.0596 -7832,9634,17359,17358,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.4885302,8.1593256,51,0,-153.8139,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3700943,8.1575384,58.32,50.22,57.06,57.76,8.333333333333334,1,1,0,0,3,5,3,1,773.5,1426188,1020919.3,292863.94,0,3657.0596 -7833,9635,17360,-9,17362,17363,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5999,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 -7833,9635,17361,-9,17362,17363,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-980.93414,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 -7833,9635,17362,17363,-9,-9,1,0,35,1,3,0,3,3,-9,0,3,0,0,0,14,0,-86.519989,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.2,51.14,57.33,53.46,6.666666666666667,2,3,0,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 -7833,9635,17363,17362,-9,-9,1,1,35,1,3,0,2,2,-9,0,3,6.7773018,6.7210279,0,8,0,-22.075583,0,-9,-9,2019,11,0,16,16,1,0,0,6.0218186,6.0218186,0,0,0,0,0,1,1,0,0,0,57.33,53.46,45.2,51.14,6.666666666666667,2,3,0,0,11,4,2,0,893.20001,-45551.363,0,0,0,1867.822 -7833,9635,17364,-9,17362,17363,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-963.46814,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,893.20001,-45551.363,0,0,0,1867.822 -7834,9636,17365,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0770125,7.0216236,0,0,-833.70392,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.9099262,7.3017025,57.16,56.15,-9,-9,3.333333333333333,1,1,0,0,9,4,3,0,829,469498.53,174768.09,181189.67,0,1411.1365 -7835,9637,17366,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4118948,8.4565248,0,0,0,-1048.4874,0,2,2,2019,16,4,54,54,1,4,0,9.8315592,9.8315592,0,0,0,0,0,0,0,0,0,0,43.48,60.97,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,826,-194641.45,0,0,0,1380.7574 -7836,9638,17367,17368,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.3537159,7.5360126,7,2,14.013061,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.71641743,7.1164851,43.54,59.6,54.45,56.22,0,1,1,0,0,4,8,3,1,713.5,1204963,373511.94,634917.5,0,1767.929 -7836,9638,17368,17367,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2480965,6.4693599,7,-2,47.549408,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3130622,6.3238959,54.45,56.22,43.54,59.6,10,1,1,0,0,1,8,3,1,713.5,1204963,373511.94,634917.5,0,1767.929 -7837,9639,17369,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,8.1053696,7.8333287,0,0,-975.44098,0,3,2,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.8275137,8.057765,35.29,26.33,-9,-9,6.666666666666667,2,3,0,0,0,8,3,1,422,676410.63,0,457917.75,0,2138.5283 -7838,9640,17370,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.1209221,8.4366693,0,0,0,-931.23016,0,2,2,2019,13,2,43,42,1,2,0,8.8092117,8.8092117,0,0,0,0,0,0,0,0,0,0,46.4,37.96,-9,-9,6.666666666666667,1,1,0,1,8,12,4,1,435,-27202.617,0,60964.691,55879.48,952.65479 -7838,9641,17371,-9,17370,-9,1,1,27,0,0,0,2,2,-9,0,3,7.8579268,8.2864351,0,0,0,-904.33063,0,3,1,2019,15,4,42,45,1,4,1,9.5989933,9.5989933,0,0,0,0,0,0,0,0,2.593374,0,42.68,52.15,-9,-9,3.333333333333333,1,1,0,0,8,12,4,1,805,287507.19,0,0,0,1212.8444 -7839,9642,17372,17373,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,52,5,-13.116196,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.53,56.44,57.16,56.15,8.333333333333334,1,1,0,0,5,7,2,1,1178.5,-108073.78,17254.469,0,0,2298.8901 -7839,9642,17373,17372,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,7.0108519,6.7484374,0,52,-5,84.224457,0,3,-9,2019,7,0,20,20,1,0,0,4.8678427,4.8678427,0,0,0,0,2,1,1,0,2.0641646,0,57.16,56.15,59.53,56.44,8.333333333333334,1,1,0,0,9,7,2,1,1178.5,-108073.78,17254.469,0,0,2298.8901 -7840,9643,17374,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.6021051,8.5887928,4.8666968,0,0,-1186.2755,0,3,3,2019,6,0,60,80,1,0,0,10.696236,10.696236,0,0,0,0,0,1,1,0,5.0810032,4.8688612,60.12,54.8,-9,-9,10,1,1,0,0,13,11,5,1,227,347433.72,76139.195,0,0,2649.0837 -7841,9644,17375,17376,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.757494,7.7649956,2,6,81.054123,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,.56324637,0,1,1,0,7.5081425,7.8699722,57.93,46.29,49,48,10,1,1,0,0,0,5,4,1,923.5,468045.22,400372.28,148824.75,36196.594,3774.8291 -7841,9644,17376,17375,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,8.0774536,8.2628469,0,2,-6,-32.349442,-9,-9,-9,2019,11,0,37,0,1,2,0,10.550138,10.550138,0,0,0,0,0,1,1,0,5.4852171,0,49,48,57.93,46.29,7,1,1,0,0,1,5,4,1,923.5,468045.22,400372.28,148824.75,36196.594,3774.8291 -7842,9645,17377,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.6620598,9.0597553,0,0,0,-964.9198,0,2,3,2019,13,4,49,40,1,4,0,19.205027,19.205027,0,0,0,0,2,0,0,0,3.0335824,0,43.44,61.22,-9,-9,6.666666666666667,1,1,0,0,7,6,5,1,798,138249.58,128276.88,0,0,2357.3027 -7843,9646,17378,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,7.8423395,7.5508924,0,0,-1077.0063,0,2,3,2019,25,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,7.7095795,31.25,27.77,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,273,600691.31,64015.453,137034.31,0,1789.5319 -7844,9647,17379,17380,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,29,5,-111.98407,0,2,3,2019,11,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,50,49,5,1,1,0,0,7,1,4,1,399,730945.19,458409.78,246890.03,0,1115.9258 -7844,9647,17380,17379,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8975029,8.6186914,0,8,-5,40.601089,-9,-9,-9,2019,10,0,37,0,1,1,0,20.999376,20.999376,0,0,0,0,0,0,0,0,0,0,50,49,52.4,52.91,7,1,1,0,0,1,1,4,1,399,730945.19,458409.78,246890.03,0,1115.9258 -7844,9648,17381,-9,17379,17380,1,1,24,0,0,0,2,2,-9,0,5,8.5350399,8.3778429,0,0,0,-1024.1206,0,1,2,2019,11,1,40,43,1,1,1,18.363861,18.363861,0,0,0,0,0,0,0,0,3.00933,0,37.17,60.32,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,332,218751.77,-13104.915,172566.23,113232.14,2089.9607 -7844,9649,17382,-9,17379,17380,1,1,23,0,0,0,2,2,-9,0,4,8.6059999,8.6825066,0,0,0,-1009.953,0,1,2,2019,10,0,37,38,1,1,1,18.751816,18.751816,0,0,0,0,0,0,0,0,2.7984695,0,48,59,-9,-9,7,1,1,0,0,1,1,5,1,375,191042.3,-111500.11,0,0,1211.7286 -7845,9650,17383,-9,17388,17386,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.8643,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 -7845,9650,17384,-9,17388,17386,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.12769,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 -7845,9650,17385,-9,17388,17386,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.0819,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 -7845,9650,17386,17388,-9,-9,1,1,36,0,3,0,1,1,0,0,5,0,0,0,6,3,-44.264282,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.07,60.93,8.333333333333334,3,4,0,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 -7845,9650,17387,-9,17388,17386,1,1,17,0,3,1,2,0,-9,0,5,0,0,0,0,0,-889.66193,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,0,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 -7845,9650,17388,17386,-9,-9,1,0,33,0,3,0,2,2,-9,0,5,7.6353145,7.4320035,0,9,-3,-85.822105,-9,3,3,2019,6,0,33,0,1,0,0,5.6274033,5.6274033,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.06,57.76,8.333333333333334,3,4,0,0,7,4,2,0,526.66669,-44392.781,-20300.92,0,0,890.39917 -7846,9651,17389,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.3665361,8.87187,0,0,0,-957.85895,0,2,2,2019,16,5,50,50,1,5,0,11.86068,11.86068,0,0,0,0,0,1,1,0,4.0714083,0,50.03,52.62,-9,-9,3.333333333333333,1,1,0,0,8,9,5,0,688,103369.07,41277.16,0,0,2363.5034 -7847,9652,17390,-9,17391,17392,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.17822,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,783,198712.47,0,142731.78,33764.285,1606.8146 -7847,9652,17391,17392,-9,-9,1,0,39,0,1,0,3,3,-9,1,2,7.1368876,6.8955636,0,3,-8,-70.375412,0,-9,-9,2019,17,6,20,20,1,6,0,6.419591,6.419591,0,0,0,0,0,1,1,0,0,0,25.76,46.65,47.78,51.29,5,1,1,0,0,8,6,2,0,783,198712.47,0,142731.78,33764.285,1606.8146 -7847,9652,17392,17391,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,0,0,0,3,8,-167.3087,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,47.78,51.29,25.76,46.65,5,1,1,1,0,0,6,2,0,783,198712.47,0,142731.78,33764.285,1606.8146 -7848,9653,17393,-9,17394,17395,1,0,5,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1053.7826,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 -7848,9653,17394,17395,-9,-9,1,0,37,0,7,0,3,3,-9,0,3,0,0,0,15,-8,27.773378,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.46,46.99,52,55,8.333333333333334,2,3,0,1,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 -7848,9653,17395,17394,-9,-9,1,1,45,0,7,0,3,3,-9,0,4,3.5691681,3.3644598,0,8,8,101.0034,0,3,3,2019,9,0,20,40,1,1,0,.20943734,.20943734,0,0,0,0,0,1,1,0,0,0,52,55,59.46,46.99,8,2,3,0,0,9,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 -7848,9653,17396,-9,17394,17395,1,0,9,0,7,1,3,0,-9,0,4,0,0,0,0,0,-950.04089,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 -7848,9653,17397,-9,17394,17395,1,0,6,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1069.64,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 -7848,9653,17398,-9,17394,17395,1,1,16,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1001.246,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 -7848,9653,17399,-9,17394,17395,1,1,8,0,7,1,3,0,-9,0,4,0,0,0,0,0,-911.75446,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1011.7143,34966.867,0,0,0,1456.9365 -7849,9654,17400,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,1,0,8.7166338,8.6301527,0,0,-1071.639,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.169744,8.4806337,45.01,20.45,-9,-9,3.333333333333333,1,1,0,0,0,2,5,1,233,7859.9204,69658.086,0,0,4243.0508 -7850,9655,17401,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.2587948,5.2980251,0,0,-1109.5455,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,3.3124993,13.388327,24.469681,0,1,1,0,1.6728692,5.3960042,50.1,38.47,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,665,-373506.69,-111460.49,0,0,745.8277 -7851,9656,17402,-9,-9,-9,1,0,31,0,1,0,3,3,-9,1,2,8.1811647,7.5210714,0,0,0,-968.32556,0,3,3,2019,16,4,12,0,1,4,0,18.015499,18.015499,0,0,0,0,14.5,1,1,0,0,0,40.2,32.07,-9,-9,1.666666666666667,1,1,0,0,1,11,3,0,220,113519.53,0,0,0,1875.7834 -7852,9657,17403,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.2190614,5.242826,0,0,-1035.27,0,2,2,2019,10,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4162965,57.88,49,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,276,218876.33,0,85830.188,0,723.16956 -7853,9658,17404,17405,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.5214024,8.6641769,9,3,-67.532852,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7442465,8.6228218,54.79,55.86,46.71,48.99,10,1,1,0,0,0,2,4,1,710.5,1243467.1,550628.25,299025.81,0,4400.4883 -7853,9658,17405,17404,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.886467,6.3697095,9,-3,-88.799553,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6515114,6.5119767,46.71,48.99,54.79,55.86,8.333333333333334,1,1,0,0,0,2,4,1,710.5,1243467.1,550628.25,299025.81,0,4400.4883 -7854,9659,17406,17407,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,8.6457968,8.4513006,0,6,7,-41.059696,0,2,3,2019,3,0,49,52,1,0,0,14.141961,14.141961,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,7,6,4,1,531.33331,306652,216778.22,68343.156,108302.53,3829.5178 -7854,9659,17407,17406,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.1982946,8.3419371,0,6,-7,-9.3994799,0,2,3,2019,7,0,37,0,1,0,0,14.476892,14.476892,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,7,6,4,1,531.33331,306652,216778.22,68343.156,108302.53,3829.5178 -7854,9659,17408,-9,17407,17406,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.86115,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,531.33331,306652,216778.22,68343.156,108302.53,3829.5178 -7854,9660,17409,-9,17407,17406,1,1,20,0,1,0,2,2,-9,0,3,7.5046988,7.6269813,0,0,0,-979.98291,0,2,3,2019,13,3,40,34,1,3,1,5.732111,5.732111,0,0,0,0,0,1,1,0,2.731334,0,47.46,52.7,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,572,-314397.41,-26924.637,0,0,545.30298 -7854,9661,17410,-9,17407,17406,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1052.8218,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,-9,-9,10,1,1,0,0,1,6,1,1,468,-281855.09,0,0,0,330.68423 -7855,9662,17411,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7581501,8.9184246,0,0,0,-956.96161,0,2,1,2019,21,9,41,45,1,9,0,15.112076,15.112076,0,0,0,0,0,1,1,0,0,0,17.28,69.26000000000001,-9,-9,3.333333333333333,1,1,0,0,8,2,5,0,423,-68784.633,66961.516,0,0,2460.2212 -7856,9663,17412,17413,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7186146,7.6908708,0,10,0,-55.441147,0,2,2,2019,11,0,40,40,1,0,0,5.3371348,5.3371348,0,0,0,0,2,0,0,0,0,0,51.77,58.57,41.23,51.32,8.333333333333334,1,1,0,0,6,2,5,1,340.5,826884.31,398233.41,82139.258,0,3408.7046 -7856,9663,17413,17412,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.8441305,8.8585682,0,7,0,-60.417019,0,2,2,2019,16,4,41,41,1,4,0,18.926336,18.926336,0,0,0,0,2,0,0,0,6.7778263,0,41.23,51.32,51.77,58.57,6.666666666666667,1,1,0,0,9,2,5,1,340.5,826884.31,398233.41,82139.258,0,3408.7046 -7857,9664,17414,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.8732376,5.8791738,0,0,-955.2652,0,2,1,2019,25,9,0,0,4,9,0,0,0,1,33.453102,0,283.68582,0,1,1,0,5.8333445,6.3045387,38.47,28.46,-9,-9,5,1,1,0,0,3,1,2,0,416,-4488.1147,62986.645,0,0,1146.7723 -7858,9665,17415,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.6071806,8.5202198,0,0,0,-878.57159,0,1,1,2019,12,0,43,45,1,0,0,12.10267,12.10267,0,0,0,0,0,0,0,0,2.4722533,0,39.44,60.23,-9,-9,6.666666666666667,1,1,0,0,4,8,5,0,306,207732.44,0,0,0,1480.9437 -7859,9666,17416,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.31238,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,10.718331,3.7140739,81.173027,0,1,1,0,0,0,49.09,22.96,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,629,78140.563,76978.461,150054.3,0,1175.3368 -7860,9667,17417,17418,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.929882,9.3833551,0,1,4,107.3091,-9,2,2,2019,9,0,52,0,1,0,0,18.462788,18.462788,0,0,0,0,0,1,1,0,0,0,54.94,53.18,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,426.33334,827859.75,225714.63,313979.72,29268.898,4568.9878 -7860,9667,17418,17417,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.3860006,8.0287476,0,1,-4,60.386986,-9,-9,-9,2019,7,0,25,0,1,0,0,19.156712,19.156712,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.94,53.18,8.333333333333334,1,1,0,0,5,12,5,1,426.33334,827859.75,225714.63,313979.72,29268.898,4568.9878 -7860,9667,17419,-9,17418,17417,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-906.19556,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,426.33334,827859.75,225714.63,313979.72,29268.898,4568.9878 -7861,9668,17420,17421,-9,-9,1,0,44,1,3,0,1,1,-9,0,3,8.0166674,7.8388734,0,7,2,66.07679,0,-9,-9,2019,10,0,38,38,1,0,0,9.6168623,9.6168623,0,0,0,0,0,1,1,0,0,0,52.41,42.18,57.16,56.15,6.666666666666667,1,1,0,1,7,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 -7861,9668,17421,17420,-9,-9,1,1,42,1,3,0,2,2,-9,0,4,8.8881435,8.6995144,0,7,-2,-12.929149,0,3,3,2019,4,0,52,52,1,0,0,14.339883,14.339883,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.41,42.18,8.333333333333334,1,1,0,0,8,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 -7861,9668,17422,-9,17420,17421,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.47583,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 -7861,9668,17423,-9,17420,17421,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.78949,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 -7861,9668,17424,-9,17420,17421,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.9346,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,576.59998,139358.14,104683.95,0,0,3285.8108 -7862,9669,17425,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.5500479,8.5911331,0,0,0,-962.99884,0,2,2,2019,12,0,82,80,1,0,0,6.5568461,6.5568461,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,13,2,5,0,165,-21291.379,112503.39,0,0,2951.093 -7863,9670,17426,17427,-9,-9,1,0,40,1,1,0,1,1,-9,0,5,8.8964348,8.6308365,0,9,2,26.933077,0,2,2,2019,7,0,42,42,1,0,0,18.864428,18.864428,0,0,0,0,0,1,1,0,0,0,54.1,59.11,41.17,59.31,8.333333333333334,1,1,0,0,11,12,5,1,378.33334,173526.34,165643.59,176285.23,126444.2,4766.9531 -7863,9670,17427,17426,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.3236876,8.2587404,0,9,-2,59.667797,0,3,2,2019,7,0,40,38,1,0,0,9.2574778,9.2574778,0,0,0,0,0,1,1,0,0,0,41.17,59.31,54.1,59.11,8.333333333333334,1,1,0,0,9,12,5,1,378.33334,173526.34,165643.59,176285.23,126444.2,4766.9531 -7863,9670,17428,-9,17426,17427,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-956.46539,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,378.33334,173526.34,165643.59,176285.23,126444.2,4766.9531 -7864,9671,17429,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-912.22137,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8943127,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,828,-220343.38,0,0,0,887.5943 -7865,9672,17430,17433,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,8.3981752,8.4009485,0,15,7,-94.581657,0,-9,-9,2019,10,1,40,40,1,1,0,13.769061,13.769061,0,0,0,0,71.5,1,1,0,0,0,34.8,50.31,49.55,44.87,5,1,1,0,0,6,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 -7865,9672,17431,-9,17433,17430,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1035.3019,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 -7865,9672,17432,-9,17433,17430,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.0898,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 -7865,9672,17433,17430,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,15,-7,36.62862,0,3,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,49.55,44.87,34.8,50.31,6.666666666666667,1,1,0,0,2,11,3,0,583.75,1275891.6,1124972.6,178676.38,0,3937.5952 -7866,9673,17434,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1002.1179,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,591,-532945.56,0,199058.31,0,1515.0771 -7867,9674,17435,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1152.6692,1,2,3,2019,20,5,0,12,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,14.89,68.98,-9,-9,5,1,1,0,0,3,8,1,1,407,-58632.883,0,0,0,0 -7867,9675,17436,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,8.2784338,8.2938757,0,0,0,-965.94611,0,2,3,2019,12,0,43,0,1,0,1,9.9938889,9.9938889,0,0,0,0,0,1,1,0,0,0,38.04,58.33,-9,-9,5,1,1,0,0,1,8,4,1,3606,-47229.543,0,0,0,1360.9701 -7868,9676,17437,17438,-9,-9,1,1,32,0,2,0,1,1,-9,0,5,8.4576092,8.6452332,0,6,-1,39.787849,0,-9,-9,2019,1,0,37,37,1,0,0,17.179882,17.179882,0,0,0,0,0,1,1,0,0,0,57.06,57.76,26.75,59.47,10,4,2,0,0,9,2,4,0,1292.6666,230259.09,165766.94,91880.367,83392.523,3423.7725 -7868,9676,17438,17437,-9,-9,1,0,33,0,2,0,1,1,-9,0,3,7.1691017,7.0243454,0,6,1,-74.213242,0,2,3,2019,20,9,21,24,1,9,0,9.2412214,9.2412214,0,0,0,0,0,1,1,0,0,0,26.75,59.47,57.06,57.76,8.333333333333334,1,1,0,0,7,2,4,0,1292.6666,230259.09,165766.94,91880.367,83392.523,3423.7725 -7868,9676,17439,-9,17438,17437,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.61591,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,2,4,0,1292.6666,230259.09,165766.94,91880.367,83392.523,3423.7725 -7869,9677,17440,17441,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.2610683,8.2969627,0,6,0,-72.425301,0,3,3,2019,6,0,38,43,1,0,0,8.6691914,8.6691914,0,0,0,0,0,0,0,0,0,0,44.49,61.79,54.57,49.24,3.333333333333333,1,1,0,0,6,12,4,0,519,169031.38,188199.13,122877.8,122124.58,1509.9677 -7869,9677,17441,17440,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7368469,7.9338093,0,6,0,-101.93741,0,-9,-9,2019,7,0,35,39,1,0,0,9.0571184,9.0571184,0,0,0,0,0,0,0,0,0,0,54.57,49.24,44.49,61.79,8.333333333333334,1,1,0,0,7,12,4,0,519,169031.38,188199.13,122877.8,122124.58,1509.9677 -7869,9678,17442,-9,17441,17440,1,1,23,0,0,0,2,2,-9,0,3,8.2123375,7.7948961,0,0,0,-1085.9187,0,2,3,2019,7,0,27,32,1,0,1,16.870483,16.870483,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,5,12,3,0,718,-22687.131,-38741.125,0,0,648.42859 -7869,9679,17443,-9,17441,17440,1,0,21,0,0,0,2,2,-9,0,3,7.7131391,7.6384621,0,0,0,-952.22906,0,2,3,2019,10,1,35,35,1,1,1,8.3605757,8.3605757,0,0,0,0,0,0,0,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,3,0,226,-71036.82,0,0,0,1208.075 -7869,9680,17444,-9,17441,17440,1,0,19,0,0,0,2,2,-9,0,3,6.7706738,6.5755668,0,0,0,-994.40253,0,2,3,2019,12,0,28,40,1,0,1,3.2069483,3.2069483,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,706,189210.03,0,0,0,522.38037 -7870,9681,17445,17446,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,5.0548253,7.2853456,7.3032293,42,5,-84.399788,0,-9,-9,2019,6,0,4,8,1,0,0,5.0971656,5.0971656,0,0,0,0,0,1,1,0,5.4131355,7.260313,62.4,48.33,57.16,56.15,10,1,1,0,0,12,6,3,1,746.5,503417.38,409585.06,157239.09,0,2237.0754 -7870,9681,17446,17445,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.6477599,6.7438049,42,-5,-13.795226,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6520598,7.0901084,57.16,56.15,62.4,48.33,8.333333333333334,1,1,0,0,0,6,3,1,746.5,503417.38,409585.06,157239.09,0,2237.0754 -7871,9682,17447,-9,17448,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1128.0388,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,4,3,1,1221,203488.81,31248.867,137542.66,48974.117,1220.6047 -7871,9682,17448,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.437923,7.3408947,0,0,0,-879.78857,0,-9,-9,2019,19,7,25,25,1,7,0,7.4977403,7.4977403,0,0,0,0,0,1,1,0,0,0,24.44,61.56,-9,-9,1.666666666666667,2,3,0,1,10,4,3,1,1221,203488.81,31248.867,137542.66,48974.117,1220.6047 -7872,9683,17449,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,5,8.5037937,8.3492184,0,0,0,-902.17633,-9,-9,-9,2019,7,0,48,0,1,0,0,9.9321089,9.9321089,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,2,4,1,631,64875.457,-75803.328,0,0,2384.7456 -7873,9684,17450,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.2576237,9.1093454,8.6471739,0,0,-1027.9956,0,3,3,2019,12,1,40,45,1,1,0,12.539626,12.539626,0,0,0,0,0,1,1,0,8.4363117,0,50.51,23.31,-9,-9,6.666666666666667,1,1,0,0,7,10,4,0,416.5,989139,603766.75,109353.73,0,4965.5142 -7873,9684,17451,-9,17450,-9,1,1,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1144.4839,-9,2,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.98,57.22,-9,-9,10,1,1,0,0,0,10,4,0,416.5,989139,603766.75,109353.73,0,4965.5142 -7873,9685,17452,-9,17450,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1022.5012,-9,2,-9,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,30.81,52.29,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,470,419948.09,0,0,0,0 -7874,9686,17453,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-944.07001,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.8366964,0,50.21,44.21,-9,-9,10,1,1,0,0,0,6,1,1,857,-372790.22,0,0,0,778.37115 -7874,9687,17454,-9,17453,-9,1,1,51,0,0,0,2,2,-9,0,4,8.2076826,8.237628,0,0,0,-1060,0,3,3,2019,7,0,40,40,1,0,0,10.675879,10.675879,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,6,4,1,997,-11021.341,406331.34,25542.482,28374.84,1302.1686 -7875,9688,17455,17457,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,9.0004168,8.9795542,0,15,0,-70.230843,0,2,2,2019,5,0,47,35,1,0,0,17.392822,17.392822,0,0,0,0,0,1,1,0,0,0,62.27,48.47,55.22,46.37,10,1,1,0,0,10,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 -7875,9688,17456,-9,17457,17455,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.9983,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 -7875,9688,17457,17455,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.9669862,6.9767671,0,15,0,1.0482746,0,2,2,2019,10,0,18,25,1,0,0,6.074285,6.074285,0,0,0,0,0,1,1,0,0,0,55.22,46.37,62.27,48.47,8.333333333333334,1,1,0,0,8,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 -7875,9688,17458,-9,17457,17455,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.12927,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,711.25,269771.06,222419.72,227039.45,138256.53,3075.6973 -7876,9689,17459,17460,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5543747,8.6178169,0,31,4,44.587021,0,2,2,2019,12,1,60,60,1,1,0,13.768362,13.768362,0,0,0,0,0,0,0,0,0,0,59.05,42.91,49.29,54.59,8.333333333333334,1,1,0,0,6,12,4,1,704,577652.13,253764.77,383103.16,0,1878.2036 -7876,9689,17460,17459,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,7,-4,-45.549385,0,2,2,2019,9,2,0,4,3,2,0,0,0,0,0,0,1.9107271,0,0,0,0,0,0,49.29,54.59,59.05,42.91,5,1,1,0,0,1,12,4,1,704,577652.13,253764.77,383103.16,0,1878.2036 -7877,9690,17461,-9,17463,17464,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.45972,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 -7877,9690,17462,-9,17463,17464,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.7742,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 -7877,9690,17463,17464,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.3515978,7.4609437,0,6,-7,-111.6089,0,2,2,2019,12,0,31,23,1,0,0,5.0315375,5.0315375,0,0,0,0,0,1,1,0,0,0,51.14,60.45,61.12,51.57,6.666666666666667,1,1,0,0,9,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 -7877,9690,17464,17463,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.6115112,9.8136272,0,6,7,-8.90452,0,-9,-9,2019,6,0,57,63,1,0,0,25.915205,25.915205,0,0,0,0,0,1,1,0,0,0,61.12,51.57,51.14,60.45,8.333333333333334,1,1,0,0,9,9,5,1,728.25,501617.03,99252.719,312914.44,0,5283.061 -7878,9691,17465,17466,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.9728751,7.7393112,0,6,2,17.862906,0,3,3,2019,8,0,44,52,1,0,0,5.8573294,5.8573294,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,12,4,1,289.5,529858.5,280488.47,239332.14,56249.289,2176.9004 -7878,9691,17466,17465,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.2997246,8.2677736,0,6,-2,-68.671906,0,-9,-9,2019,7,0,37,49,1,0,0,9.1035061,9.1035061,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.37,54.8,10,1,1,0,0,7,12,4,1,289.5,529858.5,280488.47,239332.14,56249.289,2176.9004 -7879,9692,17467,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,6.79807,6.8731275,0,0,-901.4292,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4842339,6.8182588,59.26,51.02,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,475,160448.22,-32115.598,122345.33,0,834.11499 -7880,9693,17468,17469,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.9492702,7.1406345,9,2,105.29983,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8063588,6.4293957,43.85,34.28,50.15,44.48,8.333333333333334,1,1,0,0,4,7,3,1,887,784786,299407.69,430300.44,0,2297.6836 -7880,9693,17469,17468,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.2747083,7.0434084,9,-2,-190.53745,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0034895,7.493577,50.15,44.48,43.85,34.28,8.333333333333334,1,1,0,0,3,7,3,1,887,784786,299407.69,430300.44,0,2297.6836 -7881,9694,17470,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.6841726,6.5912499,0,0,0,-971.23853,0,3,3,2019,6,0,10,14,1,0,0,6.3492293,6.3492293,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,1,6,2,2,0,2245,546646.56,233022.19,126095.23,52841.219,446.8172 -7882,9695,17471,17473,-9,-9,1,0,50,0,1,0,3,3,-9,1,1,0,0,0,7,-5,0,-9,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.17,22.78,36.6,25.58,5,1,1,0,0,0,12,1,0,435,-195981.33,0,99464.086,55837.184,2776.3296 -7882,9695,17472,-9,17471,17473,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.2865,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,435,-195981.33,0,99464.086,55837.184,2776.3296 -7882,9695,17473,17471,-9,-9,1,1,55,0,1,0,3,3,-9,1,1,0,0,0,7,5,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,5.48,1,1,0,0,0,36.6,25.58,47.17,22.78,10,1,1,0,0,0,12,1,0,435,-195981.33,0,99464.086,55837.184,2776.3296 -7883,9696,17474,17475,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.3939304,7.7651944,8,5,43.076065,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0179305,7.8621674,54.2,57.49,55.61,39.56,8.333333333333334,1,1,0,0,0,7,3,1,213,937281.63,348436.75,530443.31,0,3064.0217 -7883,9696,17475,17474,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,8,-5,-58.176102,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.61,39.56,54.2,57.49,8.333333333333334,1,1,0,0,0,7,3,1,213,937281.63,348436.75,530443.31,0,3064.0217 -7884,9697,17476,-9,17478,17479,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-952.05438,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 -7884,9697,17477,-9,17478,17479,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.5035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 -7884,9697,17478,17479,-9,-9,1,0,30,0,4,0,2,2,-9,0,3,0,0,0,8,-1,-3.2880628,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.53,55.8,42.46,41.62,5,1,1,0,0,2,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 -7884,9697,17479,17478,-9,-9,1,1,31,0,4,0,2,2,-9,0,2,8.2701588,7.9726491,0,8,1,67.00827,0,-9,-9,2019,13,1,50,47,1,1,0,7.0321231,7.0321231,0,0,0,0,0,1,1,0,0,0,42.46,41.62,38.53,55.8,3.333333333333333,1,1,0,0,4,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 -7884,9697,17480,-9,17478,17479,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-942.24579,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 -7884,9697,17481,-9,17478,17479,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-944.11841,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,812.16669,166712.67,129973.37,236338.77,155859.09,1534.2637 -7885,9698,17482,-9,17483,-9,1,1,58,0,0,0,2,2,-9,0,3,8.7799063,8.8440628,0,0,0,-932.46289,0,2,1,2019,12,1,40,40,1,1,0,18.447945,18.447945,0,0,0,0,2,1,1,0,9.4171743,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,352,1379977.5,744365.88,319845.81,0,6161.7178 -7885,9699,17483,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1147.0514,0,2,3,2019,10,0,0,0,4,1,0,0,0,1,0,9.300765,0,0,1,1,0,8.852396,0,53,44,-9,-9,8,1,1,0,0,0,8,2,1,525,-20185.412,0,0,0,2645.9944 -7886,9700,17484,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.0718226,5.9132466,0,0,-984.41193,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,1.0264989,0,1,1,0,5.8745379,5.7854834,47.27,36.41,-9,-9,5,1,1,0,0,0,5,2,0,1665,628594.06,14505.275,440288.03,0,1201.99 -7887,9701,17485,17486,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,0,0,6,7,39.752655,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.0445218,0,54,46,51,46,7,1,1,0,0,0,8,2,1,720,-75907.953,0,0,0,2555.439 -7887,9701,17486,17485,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.2477293,5.7098231,18,-7,94.50663,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.7393703,5.8340392,51,46,54,46,7,1,1,0,0,0,8,2,1,720,-75907.953,0,0,0,2555.439 -7888,9702,17487,-9,-9,-9,1,0,22,0,1,1,2,0,0,0,3,0,0,0,0,0,-970.35291,-9,1,-9,2019,28,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,12.72,65.98999999999999,-9,-9,1.666666666666667,2,3,0,1,0,8,1,0,2067,-21601.82,0,0,0,0 -7889,9703,17488,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.7454343,7.1668358,0,0,-1035.3212,0,2,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,27,0,0,0,0,7.532505,33.42,54.81,-9,-9,6.666666666666667,1,1,0,0,10,2,3,0,1007,290454.28,782765.19,149814.36,0,882.99506 -7890,9704,17489,17490,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,0,0,36,-4,63.831276,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,56.02,44.25,10,1,1,0,0,4,9,2,1,660,357084.25,226816.03,0,0,1311.1759 -7890,9704,17490,17489,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.6669574,5.7450023,36,4,-88.836624,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1191745,5.3234282,56.02,44.25,57.06,57.76,10,1,1,0,0,3,9,2,1,660,357084.25,226816.03,0,0,1311.1759 -7891,9705,17491,17492,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.6471472,8.4223108,0,14,-2,56.533245,0,2,-9,2019,12,0,44,46,1,0,0,13.652737,13.652737,0,0,0,0,0,0,0,0,0,0,50.72,46.82,57.33,53.46,8.333333333333334,4,2,0,0,13,8,5,0,791,425399.75,178840.88,302359.75,23564.047,3239.8726 -7891,9705,17492,17491,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.0327225,7.7984524,0,14,2,-176.19847,0,2,-9,2019,6,0,30,38,1,0,0,12.413034,12.413034,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.72,46.82,6.666666666666667,4,2,0,0,12,8,5,0,791,425399.75,178840.88,302359.75,23564.047,3239.8726 -7892,9706,17493,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.8677158,8.8789129,0,11,6,-66.771088,0,3,2,2019,12,0,29,32,1,0,0,27.555645,27.555645,0,0,0,0,0,0,0,0,.50948578,0,46.08,57.2,47.01,58,6.666666666666667,1,1,0,0,13,2,5,1,873,1613262.9,917157.5,250126.66,50104.406,1350.6398 -7892,9707,17494,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.1908426,8.6648655,8.3213263,11,-6,104.55225,0,2,3,2019,14,3,40,38,1,3,0,12.518566,12.518566,0,0,0,0,0,0,0,0,8.233613,0,47.01,58,46.08,57.2,8.333333333333334,1,1,0,0,13,2,5,1,2431,76299.164,-13232.912,0,0,4930.3384 -7893,9708,17495,17496,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.9069214,8.9659185,0,10,-6,35.04364,0,2,2,2019,15,3,42,60,1,3,0,23.487747,23.487747,0,0,0,0,0,0,0,0,0,0,41.56,61.79,58.46,44.55,6.666666666666667,1,1,0,0,8,11,5,1,3405.5,1387881.3,1023365.4,222285.13,77069.078,5177.2227 -7893,9708,17496,17495,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.647994,8.7893991,0,10,6,-8.7216282,0,2,2,2019,9,0,50,50,1,0,0,8.8622093,8.8622093,0,0,0,0,0,0,0,0,0,0,58.46,44.55,41.56,61.79,1.666666666666667,1,1,0,0,8,11,5,1,3405.5,1387881.3,1023365.4,222285.13,77069.078,5177.2227 -7894,9709,17497,17498,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.7153597,9.7937918,6.4862604,5,10,-55.164375,0,-9,-9,2019,9,0,80,80,1,0,0,25.13983,25.13983,0,0,0,0,0,0,0,0,0,6.7409959,58.65,39.14,23.35,45.38,6.666666666666667,1,1,0,0,9,9,5,1,542,1535105.8,360030.41,803377.63,0,8218.5059 -7894,9709,17498,17497,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,6.8183923,6.9437747,6.0365052,5,-10,-26.473904,0,-9,-9,2019,36,12,70,70,1,12,0,1.1235232,1.1235232,0,0,0,0,0,0,0,0,5.9130855,0,23.35,45.38,58.65,39.14,3.333333333333333,1,1,0,0,10,9,5,1,542,1535105.8,360030.41,803377.63,0,8218.5059 -7895,9710,17499,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.8136134,7.7622371,0,0,0,-819.57587,0,-9,2,2019,13,1,40,0,1,1,0,6.2983394,6.2983394,0,0,0,0,0,1,1,0,0,0,42.05,42.9,-9,-9,1.666666666666667,4,5,0,0,1,12,3,0,173,-2674.4646,0,0,0,897.51202 -7896,9711,17500,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.9776945,8.9419041,0,0,0,-912.54041,0,-9,-9,2019,7,0,57,47,1,0,0,15.51663,15.51663,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,2072,375735.81,-13317.062,245620.31,23988.912,2324.4558 -7897,9712,17501,-9,17502,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1038.0621,-9,2,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,9,1,1,644,12312.54,0,0,0,280.48636 -7897,9713,17502,17503,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.9423676,8.922883,0,2,-8,-4.7126675,0,3,2,2019,25,11,40,40,1,11,0,18.010798,18.010798,0,0,0,0,0,0,0,0,0,0,34.5,44.11,49.91,58.02,6.666666666666667,1,1,0,0,6,9,5,1,2412.5,382802.41,127517.94,0,0,5123.9902 -7897,9713,17503,17502,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.036974,8.7560005,0,2,8,-43.944977,0,-9,-9,2019,10,0,60,50,1,0,0,17.059839,17.059839,0,0,0,.86150581,0,0,0,0,7.0594997,0,49.91,58.02,34.5,44.11,8.333333333333334,1,1,0,0,1,9,5,1,2412.5,382802.41,127517.94,0,0,5123.9902 -7898,9714,17504,-9,17505,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-957.7287,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.2586279,0,47,60,-9,-9,7,3,4,0,0,0,8,1,0,334.5,55155.746,0,0,0,1222.355 -7898,9714,17505,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-955.17981,0,2,2,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.71,34.82,-9,-9,6.666666666666667,3,4,1,0,10,8,1,0,334.5,55155.746,0,0,0,1222.355 -7899,9715,17506,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,9.6424713,9.686986,0,0,-960.97235,0,2,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,14.5,1,1,0,9.448555,8.2774954,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,558,1255237.5,1087201,231152.03,0,7985.9146 -7900,9716,17507,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.4283252,7.6361241,0,0,-1021.2258,0,2,2,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,9.5286074,7.6773877,47.05,53.98,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,536,209845.09,123500.41,255222.38,0,6142.1904 -7901,9717,17508,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.2572942,6.8527784,0,0,-1054.8147,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0238271,59.15,49.67,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,2214,467570.94,236819.86,528686.19,0,1671.6953 -7902,9718,17509,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.6310005,8.8013821,0,0,0,-954.8855,0,-9,-9,2019,9,0,50,50,1,0,0,14.679552,14.679552,0,0,0,0,0,0,0,0,7.3242073,0,46.28,62.6,-9,-9,6.666666666666667,2,3,0,0,8,8,5,0,68,537325.19,0,356032.66,134150.48,2780.04 -7903,9719,17510,17511,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.1039829,8.268033,0,31,0,21.71246,0,3,3,2019,7,0,60,60,1,0,0,5.3501821,5.3501821,0,0,0,0,0,0,0,0,0,0,58.32,50.22,60.02,56.42,8.333333333333334,1,1,0,0,13,10,4,1,475,171754.47,115188.63,173191.06,79073.898,2826.5193 -7903,9719,17511,17510,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0534391,7.6375008,0,31,0,-79.763123,0,3,3,2019,6,0,36,24,1,0,0,10.217575,10.217575,0,0,0,0,0,0,0,0,0,0,60.02,56.42,58.32,50.22,10,1,1,0,0,11,10,4,1,475,171754.47,115188.63,173191.06,79073.898,2826.5193 -7903,9720,17512,-9,17511,17510,1,0,22,0,0,0,2,2,-9,0,4,8.2607965,8.4309607,0,0,0,-1048.3453,0,2,1,2019,12,1,38,39,1,1,1,13.940022,13.940022,0,0,0,0,0,0,0,0,.31569117,0,40.4,58.34,-9,-9,8.333333333333334,1,1,0,1,6,10,4,1,73,-85833.758,-52372.691,0,0,1936.5229 -7904,9721,17513,17514,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2179747,8.1580029,0,31,6,33.223946,0,3,2,2019,15,4,37,37,1,4,0,14.999063,14.999063,0,0,0,0,0,0,0,0,0,0,56.75,31,28.9,49.04,3.333333333333333,1,1,0,0,10,11,5,1,1157,2460526.3,1915944.9,251821.09,0,3276.9543 -7904,9721,17514,17513,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.7756548,8.7110281,0,31,-6,-96.044365,0,3,1,2019,22,9,37,37,1,9,0,19.385252,19.385252,0,0,0,0,0,0,0,0,0,0,28.9,49.04,56.75,31,1.666666666666667,1,1,0,0,9,11,5,1,1157,2460526.3,1915944.9,251821.09,0,3276.9543 -7904,9722,17515,-9,17514,17513,1,1,23,0,0,0,2,2,-9,0,5,7.5204363,7.1937647,0,0,0,-929.16418,0,2,2,2019,10,0,40,37,1,0,1,5.4406824,5.4406824,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,5,1,1,0,1,4,11,3,1,2561,242245.36,0,0,0,175.46274 -7905,9723,17516,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1020.713,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,5,13,2,1,205,0,0,0,0,0 -7906,9724,17517,-9,17520,17518,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-998.88177,-9,2,2,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,2,1,1,0,0,0,7.38,59.26,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 -7906,9724,17518,17520,-9,-9,1,1,39,0,2,0,2,2,-9,1,3,8.4443312,8.5947723,0,10,1,72.77243,0,2,3,2019,8,1,38,38,1,1,0,16.882816,16.882816,0,0,0,0,27,1,1,0,0,0,43.71,56.91,19.01,22.64,3.333333333333333,1,1,0,0,11,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 -7906,9724,17519,-9,17520,17518,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1086.4512,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 -7906,9724,17520,17518,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,10,-1,-29.623116,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.1873574,0,19.01,22.64,43.71,56.91,6.666666666666667,1,1,0,0,5,7,3,1,1258.5,-179812.14,-9409.6729,0,0,2556.356 -7907,9725,17521,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.6478715,7.4422154,0,0,0,-1161.1642,0,-9,-9,2019,16,6,41,40,1,6,0,4.5123925,4.5123925,0,0,0,0,0,1,1,0,0,0,31.21,61.39,-9,-9,6.666666666666667,1,1,0,0,4,5,3,1,2032,407713.81,0,0,0,937.65192 -7907,9726,17522,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.75213,7.6702056,0,0,-905.39197,-9,-9,-9,2019,6,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.1222515,7.9655366,54.37,54.8,-9,-9,10,1,1,0,0,0,5,3,1,778,707322.94,242588.58,342809.97,0,1694.6604 -7908,9727,17523,17524,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.1830721,8.2304897,0,1,-4,-.21116321,-9,-9,-9,2019,11,0,45,0,1,0,0,8.2066002,8.2066002,0,0,0,0,0,0,0,0,0,0,57.33,53.46,59.71,34.98,5,1,1,0,0,11,4,4,1,294.5,799373.75,151831.91,198385.97,138455.41,3182.2905 -7908,9727,17524,17523,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.957159,8.1122894,0,18,4,-99.098656,-9,-9,-9,2019,12,1,37,0,1,1,0,7.7569132,7.7569132,0,0,0,0,0,0,0,0,0,0,59.71,34.98,57.33,53.46,0,1,1,0,0,11,4,4,1,294.5,799373.75,151831.91,198385.97,138455.41,3182.2905 -7908,9728,17525,-9,17524,17523,1,1,22,0,0,0,2,2,-9,0,4,8.7986422,8.7618227,0,0,0,-1034.6588,-9,2,2,2019,4,0,40,0,1,0,1,16.50791,16.50791,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,4,4,5,1,803,111721.55,137833.52,137244.56,135982.36,2484.2729 -7909,9729,17526,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.7108946,6.3747725,0,0,-1115.4425,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,7.0630169,0,48.81,59.91,-9,-9,8.333333333333334,2,3,0,0,3,10,2,0,256,-39078.434,0,0,0,215.03294 -7910,9730,17527,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-982.13086,0,3,2,2019,21,9,0,0,4,9,0,0,0,1,8.4110126,0,94.698692,0,1,1,0,0,0,40.55,21.33,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,267,-75218.477,-26088.658,0,0,1601.8469 -7911,9731,17528,-9,-9,17529,1,0,16,0,1,1,2,0,-9,0,5,0,4.7606745,4.5243974,0,0,-1074.5917,-9,-9,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.5138006,0,52.66,56.94,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1873.5,3719429.5,777910.56,728733.5,0,472.13812 -7911,9731,17529,-9,-9,-9,1,1,63,0,1,0,1,1,-9,0,3,0,6.39467,6.4727592,0,0,-911.51483,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.359199,7.077106,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,7,8,2,1,1873.5,3719429.5,777910.56,728733.5,0,472.13812 -7912,9732,17530,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1046.4425,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,34.69,-9,-9,8.333333333333334,1,1,0,0,3,1,2,1,1177,0,0,0,0,0 -7913,9733,17531,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.2963624,7.310266,0,0,-1034.4209,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,2.7930989,10.725322,0,0,1,1,0,.53380513,7.1503448,40.87,23.32,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,393,236928.02,0,105217.62,0,1939.2212 -7914,9734,17532,17533,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.0315294,8.3601103,0,4,2,-50.928345,0,-9,-9,2019,9,0,47,46,1,0,0,8.9178915,8.9178915,0,0,0,0,0,0,0,0,2.1616526,0,56.35,51.16,42.07,50.91,6.666666666666667,1,1,0,0,6,9,4,0,2396,-238767.38,0,0,0,3241.9714 -7914,9734,17533,17532,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.098649,8.0823603,0,4,-2,-43.522369,0,2,-9,2019,13,1,55,55,1,1,0,5.6280937,5.6280937,0,0,0,0,0,0,0,0,0,0,42.07,50.91,56.35,51.16,8.333333333333334,1,1,0,0,8,9,4,0,2396,-238767.38,0,0,0,3241.9714 -7915,9735,17534,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9429893,7.6121488,0,0,0,-933.02136,0,3,3,2019,11,0,37,37,1,0,0,7.6950822,7.6950822,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,1360,231962.2,244354.7,257098.06,0,1333.9786 -7916,9736,17535,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.712409,7.5328321,0,0,0,-1063.5815,0,-9,-9,2019,36,12,24,28,1,12,0,11.518459,11.518459,0,0,0,0,0,1,1,0,0,0,23.28,38.38,-9,-9,1.666666666666667,1,1,0,0,6,6,3,1,944,5089.6372,63557.109,0,0,606.49915 -7917,9737,17536,-9,17538,17537,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-821.5033,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.2808907,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,1,5,1,1351,1216194.8,89575.945,701029.69,192349.64,8430.5137 -7917,9737,17537,17538,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.6340399,9.697998,0,9,0,39.547554,0,2,3,2019,7,0,30,30,1,0,0,63.025261,63.025261,0,0,0,0,0,0,0,0,3.3950565,0,54.63,58.83,57.16,56.15,8.333333333333334,1,1,0,0,10,1,5,1,1351,1216194.8,89575.945,701029.69,192349.64,8430.5137 -7917,9737,17538,17537,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.7540216,8.5674343,0,9,0,28.185532,0,2,1,2019,8,0,33,33,1,0,0,20.997353,20.997353,0,0,0,0,5.48,0,0,0,2.4657812,0,57.16,56.15,54.63,58.83,8.333333333333334,1,1,0,0,10,1,5,1,1351,1216194.8,89575.945,701029.69,192349.64,8430.5137 -7918,9738,17539,-9,17542,17540,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1035.3108,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.06,56.51,-9,-9,3.333333333333333,2,3,0,0,0,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 -7918,9738,17540,17542,-9,-9,1,1,47,0,2,0,2,2,-9,1,1,0,0,0,30,-1,-59.120907,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.06,24.75,34.08,39.06,0,2,3,1,0,0,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 -7918,9738,17541,-9,17542,17540,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.19348,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 -7918,9738,17542,17540,-9,-9,1,0,48,0,2,0,2,2,-9,0,1,8.3141651,8.1658392,0,30,1,9.9304323,0,3,3,2019,16,5,38,38,1,5,0,9.3039799,9.3039799,0,0,0,0,42,1,1,0,0,0,34.08,39.06,26.06,24.75,5,2,3,0,0,10,6,3,0,710.25,302197.53,-9601.4805,233996.84,159547.73,2265.4524 -7918,9739,17543,-9,17542,17540,1,1,24,0,2,0,2,2,-9,0,3,7.7412386,7.8361025,0,0,0,-946.90289,0,3,3,2019,13,1,47,47,1,1,1,4.309257,4.309257,0,0,0,0,14.5,1,1,0,0,0,38.72,53.77,-9,-9,5,2,3,0,0,4,6,3,0,505,175671.44,0,0,0,728.83685 -7918,9740,17544,-9,17542,17540,1,1,20,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1054.9854,0,2,2,2019,22,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,24.51,47.41,-9,-9,1.666666666666667,2,3,0,0,0,6,1,0,616,2061.6492,0,0,0,566.91797 -7919,9741,17545,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.6864,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,5.4111204,0,47.715836,0,1,1,0,0,0,52.18,26.24,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,541,0,0,0,0,2163.2449 -7920,9742,17546,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0821609,8.4142065,0,0,0,-1108.9423,0,-9,3,2019,10,0,39,44,1,1,0,9.8284073,9.8284073,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,1,5,4,0,604,382094.97,202739.23,93563.391,0,1621.0735 -7920,9743,17547,-9,-9,17546,1,1,24,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1007.5242,0,-9,3,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,41.22,55.74,-9,-9,5,1,1,1,1,4,5,1,0,270,204197.81,0,0,0,15.312487 -7921,9744,17548,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.9882903,7.6879439,5.3963981,0,0,-1028.7413,0,2,2,2019,12,0,20,20,1,0,0,8.2695398,8.2695398,0,0,0,0,14.5,1,1,0,5.9200587,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,0,6,8,2,0,383,133369.88,93616.938,0,0,858.18896 -7921,9744,17549,-9,17548,-9,1,0,16,0,1,0,3,3,-9,0,3,0,2.6263688,2.6506083,0,0,-1019.985,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,5.48,1,1,0,3.466387,0,43.84,58.37,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,383,133369.88,93616.938,0,0,858.18896 -7921,9745,17550,-9,17548,-9,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-955.11304,-9,2,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,1,8,1,0,404,0,0,0,0,0 -7922,9746,17551,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.1275539,8.2249851,0,0,0,-1236.858,-9,3,1,2019,18,6,20,0,1,6,0,20.38866,20.38866,0,0,0,0,0,1,1,0,0,0,30.06,57.76,-9,-9,6.666666666666667,1,1,0,1,5,7,4,0,896,0,0,0,0,2805.9172 -7923,9747,17552,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1022.4995,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,5.2145591,0,50.683014,0,1,1,0,.1862445,0,43.43,18.29,-9,-9,0,1,1,0,1,0,10,1,0,813,165897.61,27148.375,0,0,1848.2021 -7924,9748,17553,17554,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,7.7817335,7.7623453,0,19,-3,-47.100883,0,3,2,2019,9,0,17,17,1,0,0,15.825324,15.825324,0,0,0,0,2,0,0,0,5.3929858,0,54.2,57.49,55.24,55.87,8.333333333333334,1,1,0,0,9,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 -7924,9748,17554,17553,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,9.5193129,9.6888123,0,8,3,47.061501,0,-9,-9,2019,10,1,51,48,1,1,0,30.039761,30.039761,0,0,0,0,0,0,0,0,4.8292823,0,55.24,55.87,54.2,57.49,10,1,1,0,0,9,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 -7924,9748,17555,-9,17553,17554,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.9682,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 -7924,9748,17556,-9,17553,17554,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.74896,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,488,2182058.3,1299095.1,678760.38,131500.81,5991.9912 -7925,9749,17557,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.4469137,8.2191248,0,0,0,-1019.9818,0,3,2,2019,20,8,43,46,1,8,0,8.7347603,8.7347603,0,0,0,0,0,1,0,1,0,0,42.75,61.95,-9,-9,1.666666666666667,1,1,0,0,13,9,4,1,435,304206.38,369080.72,383013.97,0,1132.8065 -7926,9750,17558,-9,17559,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1150.4175,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,3,4,-9,0,0,8,3,0,1244.3334,-92908.266,0,0,0,2034 -7926,9750,17559,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.9438105,8.0469952,0,0,0,-1026.8423,0,2,2,2019,12,2,42,33,1,2,0,10.685479,10.685479,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,3.333333333333333,4,2,0,1,3,8,3,0,1244.3334,-92908.266,0,0,0,2034 -7926,9750,17560,-9,17559,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1028.2156,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,3,0,1244.3334,-92908.266,0,0,0,2034 -7926,9751,17561,-9,17559,-9,1,0,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-955.974,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.48,60.97,-9,-9,8.333333333333334,3,4,0,0,1,8,1,0,747,-130817.52,0,0,0,1199.0474 -7927,9752,17562,17563,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.9252253,8.1070766,0,9,5,-3.7360237,0,3,1,2019,6,0,45,35,1,0,0,6.4100356,6.4100356,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.59,54.8,8.333333333333334,3,4,0,0,7,9,4,0,464.5,496315.06,345526.72,152409.53,57293.836,2319.783 -7927,9752,17563,17562,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.0349159,7.9298749,0,9,-5,-41.115646,0,3,2,2019,1,0,42,35,1,0,0,8.7776928,8.7776928,0,0,0,0,0,0,0,0,0,0,60.59,54.8,62.49,55.09,8.333333333333334,3,4,0,0,7,9,4,0,464.5,496315.06,345526.72,152409.53,57293.836,2319.783 -7928,9753,17564,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.1205029,6.9769754,0,0,-1030.4097,-9,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1989679,51.84,50.44,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1166,487564.38,109093.17,140863.66,0,1188.7374 -7929,9754,17565,17566,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,6.3446202,6.7790599,9,2,23.961187,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1565204,6.9558916,60.02,56.42,62.27,18.5,8.333333333333334,1,1,0,0,0,12,2,1,275.5,250611.03,197978,104051.64,0,1115.0903 -7929,9754,17566,17565,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.3973079,6.5654755,9,-2,22.72352,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5177932,6.5063591,62.27,18.5,60.02,56.42,8.333333333333334,1,1,0,0,0,12,2,1,275.5,250611.03,197978,104051.64,0,1115.0903 -7930,9755,17567,-9,17568,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1168.1442,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1706,136743.94,-39121.402,0,0,1755.9614 -7930,9755,17568,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,2,7.5431585,7.2456942,0,0,0,-1101.5316,0,2,2,2019,12,0,32,32,1,0,0,6.3011465,6.3011465,0,0,0,0,0,1,1,0,0,0,37.65,49.52,-9,-9,5,1,1,0,0,2,4,3,0,1706,136743.94,-39121.402,0,0,1755.9614 -7931,9756,17569,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1002.693,0,3,3,2019,25,11,0,30,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,49.4,25.79,-9,-9,5,1,1,0,0,7,9,1,1,255,305546.38,0,0,0,419.66333 -7932,9757,17570,-9,17571,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.09137,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,720.33331,144051.28,-5243.897,0,0,1471.6393 -7932,9757,17571,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.2543554,7.2441225,0,0,0,-836.56476,0,2,1,2019,17,7,25,25,1,7,0,6.3001838,6.3001838,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,5,1,1,0,1,11,2,2,1,720.33331,144051.28,-5243.897,0,0,1471.6393 -7932,9757,17572,-9,17571,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.31934,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,1,720.33331,144051.28,-5243.897,0,0,1471.6393 -7933,9758,17573,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.4495187,7.2488222,0,0,0,-893.49139,0,1,-9,2019,11,0,35,37,1,0,0,5.7315331,5.7315331,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,1975,-75515.891,113946.31,0,0,900.00763 -7934,9759,17574,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4038067,8.3198318,0,0,0,-917.87714,0,3,2,2019,11,0,41,40,1,0,0,15.874745,15.874745,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,186,126593.91,-26278.275,0,0,2461.8738 -7934,9760,17575,-9,17574,-9,1,0,21,0,0,0,2,2,1,0,4,5.8774266,6.1161466,0,0,0,-1010.2612,-9,1,-9,2019,19,6,27,0,1,6,1,1.5584877,1.5584877,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,11,2,0,546,320849.28,0,0,0,765.75208 -7935,9761,17576,17577,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,50,-3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,62.301723,0,0,1,1,0,0,0,27.38,41.67,36.03,40.6,6.666666666666667,1,1,0,0,0,13,1,1,4283,344753.53,90639.469,0,0,1588.8113 -7935,9761,17577,17576,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,2,3,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.03,40.6,27.38,41.67,6.666666666666667,1,1,0,0,0,13,1,1,4283,344753.53,90639.469,0,0,1588.8113 -7936,9762,17578,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.9144993,8.5664625,0,0,0,-974.21619,0,1,2,2019,9,2,42,42,1,2,0,18.468624,18.468624,0,0,0,0,0,0,0,0,5.2742887,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,7,8,5,0,593,113176.57,9484.123,66968.523,74730.984,2212.4778 -7937,9763,17579,17580,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.9258032,6.8311872,6,2,-37.99012,0,2,2,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1277199,55.38,43.85,53.06,45.59,8.333333333333334,1,1,0,0,6,12,3,1,349,671761.56,429905.19,212717.78,0,2133.5127 -7937,9763,17580,17579,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.565268,7.1958365,6,-2,77.348473,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,2.8719003,7.4340019,53.06,45.59,55.38,43.85,6.666666666666667,1,1,0,0,0,12,3,1,349,671761.56,429905.19,212717.78,0,2133.5127 -7938,9764,17581,17584,-9,-9,1,0,33,1,3,0,3,3,-9,1,2,0,0,0,2,-5,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,30.9,46.08,42.72,1.666666666666667,1,1,0,1,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 -7938,9764,17582,-9,17581,17584,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.7025,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 -7938,9764,17583,-9,17581,17584,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.3214,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 -7938,9764,17584,17581,-9,-9,1,1,38,1,3,0,2,2,-9,0,2,0,0,0,2,5,0,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,42.72,39.15,30.9,5,1,1,1,1,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 -7938,9764,17585,-9,17581,17584,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.7796,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,1472.2,-120698.9,-25832.756,0,0,1589.7809 -7939,9765,17586,17587,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8561945,8.7299318,0,21,6,14.146872,0,-9,-9,2019,7,0,44,39,1,0,0,13.833278,13.833278,0,0,0,0,2,0,0,0,0,0,42.26,56.11,48,49,6.666666666666667,1,1,0,0,10,1,5,1,1159,105043.01,199023.14,73239.359,56858.281,3389.5938 -7939,9765,17587,17586,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9614272,7.8627419,0,21,-6,-32.514439,0,-9,2,2019,12,0,36,36,1,0,0,10.495155,10.495155,0,0,0,0,7,0,0,0,0,0,48,49,42.26,56.11,5,1,1,0,0,10,1,5,1,1159,105043.01,199023.14,73239.359,56858.281,3389.5938 -7939,9766,17588,-9,17587,17586,1,1,24,0,0,0,2,2,-9,0,4,8.2903385,8.5432758,0,0,0,-1029.806,0,2,2,2019,9,0,39,39,1,0,1,10.678669,10.678669,0,0,0,0,0,0,0,0,5.8205595,0,48.53,58.91,-9,-9,3.333333333333333,1,1,0,0,1,1,4,1,840,508226.19,-103.69337,0,0,1668.1755 -7939,9767,17589,-9,17587,17586,1,1,18,0,0,0,2,2,-9,0,4,7.3512664,7.6501355,0,0,0,-963.88977,0,2,2,2019,6,0,39,0,1,0,1,3.7083197,3.7083197,0,0,0,0,0,0,0,0,0,0,58.99,41.57,-9,-9,10,1,1,0,0,1,1,3,1,204,419543,0,0,0,353.24826 -7940,9768,17590,17591,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,8,-1,-5.5057397,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.9292278,0,44.19,39.24,59.43,58.05,6.666666666666667,1,1,0,0,6,6,4,1,1472.5,1648809,1074416,414137.13,0,3739.1602 -7940,9768,17591,17590,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,8.2992306,8.2331972,8,1,-25.448242,0,3,3,2019,6,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2346764,8.1131372,59.43,58.05,44.19,39.24,8.333333333333334,1,1,0,0,9,6,4,1,1472.5,1648809,1074416,414137.13,0,3739.1602 -7940,9769,17592,-9,17590,17591,1,1,35,0,0,0,2,2,-9,0,5,7.3695135,7.5660858,0,0,0,-986.00232,0,2,2,2019,12,0,95,90,1,0,0,2.3886921,2.3886921,0,0,0,0,0,1,1,0,2.2019885,0,55.68,54.24,-9,-9,6.666666666666667,1,1,0,0,9,6,3,1,82,367904.44,0,0,0,637.7099 -7941,9770,17593,17594,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.7217216,8.9314394,0,7,0,-12.906261,0,2,3,2019,9,0,60,45,1,0,0,15.075492,15.075492,0,0,0,0,0,0,0,0,0,0,35.38,63.46,50.5,34.37,6.666666666666667,1,1,0,0,8,11,5,1,1610,688433.38,3848.4004,206383.16,95807.719,4420.2617 -7941,9770,17594,17593,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.5112877,8.6287327,0,7,0,62.287094,0,2,3,2019,11,1,37,47,1,1,0,12.558523,12.558523,0,0,0,0,0,0,0,0,0,0,50.5,34.37,35.38,63.46,8.333333333333334,1,1,0,0,8,11,5,1,1610,688433.38,3848.4004,206383.16,95807.719,4420.2617 -7941,9771,17595,-9,17594,17593,1,0,23,0,0,0,2,2,-9,0,3,8.439579,8.571434,0,0,0,-839.30621,0,2,2,2019,15,3,51,35,1,3,1,10.812555,10.812555,0,0,0,0,0,0,0,0,.98974264,0,46.59,43.6,-9,-9,8.333333333333334,1,1,0,0,6,11,5,1,1032,-305817.53,-66293.68,78254.727,85758.016,2299.2466 -7942,9772,17596,17597,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.2107878,8.9268684,0,9,-5,60.505981,0,2,1,2019,15,5,35,40,1,5,0,22.206413,22.206413,0,0,0,0,0,0,0,0,0,0,28.08,63.9,53.38,52.51,6.666666666666667,1,1,0,0,10,4,5,1,368,326655.03,226497.86,294085.88,119702.81,3387.5327 -7942,9772,17597,17596,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.2171307,8.2536526,0,9,5,-52.636429,0,1,1,2019,13,1,40,38,1,1,0,8.6677132,8.6677132,0,0,0,0,0,0,0,0,3.7019596,0,53.38,52.51,28.08,63.9,6.666666666666667,1,1,0,0,8,4,5,1,368,326655.03,226497.86,294085.88,119702.81,3387.5327 -7943,9773,17598,17600,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.0345821,7.9791255,0,8,-4,-23.127819,0,1,1,2019,7,1,22,40,1,1,0,11.60497,11.60497,0,0,0,0,0,1,1,0,0,0,52.89,35.24,41.88,45.59,6.666666666666667,2,3,0,0,9,2,5,1,618.66669,778537.5,244552.48,338550.41,75475.18,4188.2925 -7943,9773,17599,-9,17598,17600,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.396,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,618.66669,778537.5,244552.48,338550.41,75475.18,4188.2925 -7943,9773,17600,17598,-9,-9,1,1,40,1,1,0,1,1,-9,0,4,9.168499,8.823061,0,8,4,25.353556,0,2,2,2019,16,4,48,50,1,4,0,18.20723,18.20723,0,0,0,0,0,1,1,0,1.2469565,0,41.88,45.59,52.89,35.24,5,2,3,0,0,11,2,5,1,618.66669,778537.5,244552.48,338550.41,75475.18,4188.2925 -7944,9774,17601,17602,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,9.7855148,9.7929201,0,8,2,-43.549416,0,3,3,2019,6,0,35,32,1,0,0,59.37571,59.37571,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.37,44.27,8.333333333333334,2,3,0,1,11,4,5,1,311,1654593.3,282352.72,356073.69,0,5970.8105 -7944,9774,17602,17601,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,8,-2,-4.2710195,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.37,44.27,58.15,52.91,6.666666666666667,2,3,0,0,0,4,5,1,311,1654593.3,282352.72,356073.69,0,5970.8105 -7944,9775,17603,-9,17602,17601,1,1,31,0,0,0,2,2,-9,0,3,8.263649,8.3716002,0,0,0,-972.3526,-9,3,3,2019,12,0,32,0,1,0,1,9.8645487,9.8645487,0,0,0,0,0,1,1,0,0,0,66.61,45.12,-9,-9,6.666666666666667,2,3,0,0,7,4,4,1,426,166798.56,-34524.582,0,0,1667.1447 -7944,9776,17604,-9,17602,17601,1,0,26,0,0,0,2,2,-9,0,5,0,0,0,0,0,-842.47968,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,1,0,1,4,1,1,455,0,0,0,0,0 -7944,9777,17605,-9,17602,17601,1,0,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.21533,0,3,3,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,43.5,33.22,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,707,66598.875,0,0,0,194.86481 -7944,9778,17606,-9,17602,17601,1,1,22,0,0,0,2,2,-9,0,5,6.817575,6.5231552,0,0,0,-956.45502,0,3,3,2019,2,0,8,9,1,0,1,14.494946,14.494946,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,4,2,1,904,264700,0,0,0,26.486343 -7945,9779,17607,17608,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.4708929,5.0877686,53,4,-17.355328,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,5.0524349,5.2763228,61.69,31.34,61.62,34.93,10,1,1,0,0,5,4,2,1,2392.5,379849.22,228459.28,169125.05,0,2314.1204 -7945,9779,17608,17607,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0323801,6.9619083,8,-4,-79.997002,0,-9,-9,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.1350465,7.023448,61.62,34.93,61.69,31.34,8.333333333333334,1,1,0,0,0,4,2,1,2392.5,379849.22,228459.28,169125.05,0,2314.1204 -7945,9780,17609,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3605833,8.2222843,0,0,0,-918.20288,0,-9,-9,2019,10,1,38,38,1,1,0,8.5085421,8.5085421,0,0,0,0,0,1,1,0,3.8498251,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,6,4,4,1,2173,721300.06,537167.94,273066.78,0,2108.9065 -7946,9781,17610,-9,17611,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.4857,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1134,-49568.102,0,0,0,676.33917 -7946,9781,17611,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1050.499,0,-9,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.45,40.2,-9,-9,0,1,1,0,0,0,12,2,0,1134,-49568.102,0,0,0,676.33917 -7947,9782,17612,-9,17614,17613,1,1,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-956.30273,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,4,1,1113.3334,232808.48,97540.281,340998.97,201687.64,7146.7339 -7947,9782,17613,17614,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.4281902,9.3511906,0,19,9,52.54213,0,3,3,2019,21,9,24,24,1,9,0,55.22525,55.22525,0,0,0,0,0,1,1,0,0,0,48.23,49.26,48,56,3.333333333333333,2,3,0,1,12,2,4,1,1113.3334,232808.48,97540.281,340998.97,201687.64,7146.7339 -7947,9782,17614,17613,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,10,0,-56.284222,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,48.23,49.26,7,2,3,0,0,0,2,4,1,1113.3334,232808.48,97540.281,340998.97,201687.64,7146.7339 -7948,9783,17615,17616,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,6.9569564,6.8957419,0,22,0,137.89038,0,3,3,2019,11,0,12,0,1,2,0,11.079209,11.079209,0,0,0,0,7,0,0,0,0,0,48,49,46.72,39.2,7,1,1,0,0,5,2,5,1,271,356049.22,601479.13,148547.97,0,3257.4053 -7948,9783,17616,17615,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.7771826,8.6104593,0,25,0,68.394142,0,2,2,2019,21,9,47,40,1,9,0,17.024757,17.024757,0,0,0,0,0,0,0,0,.53114331,0,46.72,39.2,48,49,5,1,1,0,0,8,2,5,1,271,356049.22,601479.13,148547.97,0,3257.4053 -7949,9784,17617,17618,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,8,-2,32.544037,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,0,0,46.87,43.31,49,36,10,3,4,0,0,0,2,2,1,587.5,256704.84,142230.78,143885,0,2311.8645 -7949,9784,17618,17617,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.0976429,6.7759757,8,2,146.58736,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.9754348,49,36,46.87,43.31,10,3,4,0,0,0,2,2,1,587.5,256704.84,142230.78,143885,0,2311.8645 -7950,9785,17619,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.9368553,8.220706,0,0,0,-1027.6212,0,3,3,2019,8,0,37,37,1,0,0,9.8308258,9.8308258,0,0,0,0,2,0,0,0,0,0,50.34,48.53,-9,-9,5,1,1,0,0,10,11,4,1,238,715421.75,425688.38,0,0,1776.1437 -7951,9786,17620,17623,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,0,0,0,5,-1,-86.405586,0,2,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,2,1,0,1,0,0,45.73,57.57,11.59,49.93,6.666666666666667,3,4,0,0,0,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 -7951,9786,17621,-9,17620,17623,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-983.99274,-9,2,2,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,0,1,0,0,33.86,53.31,-9,-9,3.333333333333333,4,2,0,0,0,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 -7951,9786,17622,-9,17620,17623,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.6575,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 -7951,9786,17623,17620,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.751729,8.7955542,0,5,1,49.801529,0,-9,-9,2019,23,9,30,30,1,9,0,28.400383,28.400383,0,0,0,0,7,1,0,1,0,0,11.59,49.93,45.73,57.57,1.666666666666667,1,1,0,0,10,8,3,0,589.5,516574.16,274838.75,334214.22,188305.88,4398.8799 -7952,9787,17624,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.0269995,7.1424069,0,0,-925.4408,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.7752323,6.9507632,35.28,32.64,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,286,414383.88,133838.09,302923.72,0,1051.1829 -7953,9788,17625,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1005.8581,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,31.9,19.36,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,919,199492.05,0,0,0,946.14282 -7954,9789,17626,17627,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,0,0,33,1,15.941208,-9,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57,59.12,52.81,51.41,6.666666666666667,1,1,0,0,5,7,5,1,595,2847630,1011568.2,912662.13,0,3809.479 -7954,9789,17627,17626,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,9.4585438,9.1139545,0,33,-1,-20.148523,-9,3,3,2019,10,2,44,0,1,2,0,33.549019,33.549019,0,0,0,0,0,1,1,0,3.2319379,0,52.81,51.41,57,59.12,6.666666666666667,1,1,0,0,12,7,5,1,595,2847630,1011568.2,912662.13,0,3809.479 -7955,9790,17628,17629,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.2540364,7.2056031,0,19,5,-5.7160978,0,2,2,2019,18,6,20,20,1,6,0,7.7966766,7.7966766,0,0,0,0,0,0,0,0,0,0,38.51,59.43,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,403.5,1647889.8,1369640,221137.34,89925.813,3293.3799 -7955,9790,17629,17628,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.8909712,8.7562256,0,19,-5,-8.7163191,0,2,2,2019,7,0,42,43,1,0,0,19.71187,19.71187,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.51,59.43,8.333333333333334,1,1,0,0,5,12,5,1,403.5,1647889.8,1369640,221137.34,89925.813,3293.3799 -7955,9791,17630,-9,17628,17629,1,0,20,0,0,0,2,2,-9,0,4,7.9532967,7.8859878,0,0,0,-1000.1011,0,2,2,2019,11,0,36,25,1,0,1,11.341805,11.341805,0,0,0,0,0,0,0,0,1.1785498,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,222,-185642.78,0,0,0,782.25293 -7956,9792,17631,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.6813459,7.7709436,0,0,0,-992.52869,0,3,2,2019,20,8,48,42,1,8,0,5.9499235,5.9499235,0,0,0,0,0,0,0,0,0,0,45.22,46.61,-9,-9,6.666666666666667,4,2,0,0,8,6,3,0,721,-341183.88,0,81446.859,39494.898,623.38751 -7957,9793,17632,17633,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,5.222003,4.9940615,47,-6,58.065926,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,5.1209512,42.35,30.78,38.89,20.09,0,1,1,0,0,0,4,2,0,2351.5,544000.56,175255.44,210268.92,0,1143.5054 -7957,9793,17633,17632,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,47,6,-87.678131,0,-9,-9,2019,23,9,0,0,4,9,0,0,0,1,0,123.60926,0,0,1,1,0,0,0,38.89,20.09,42.35,30.78,1.666666666666667,1,1,0,0,0,4,2,0,2351.5,544000.56,175255.44,210268.92,0,1143.5054 -7958,9794,17634,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1038.7642,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.77,14.57,-9,-9,0,1,1,0,0,0,4,1,1,1339,584898.75,9949.0986,152187.27,0,552.82123 -7959,9795,17635,17636,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.7640076,8.613862,7.9912219,8,2,-31.456566,0,3,1,2019,11,2,20,18,1,2,0,16.86054,16.86054,0,0,0,0,0,0,0,0,7.6763411,8.1741066,48.28,60.18,59.22,37.52,8.333333333333334,1,1,0,0,8,10,5,1,789,312493.09,324779.31,134024,0,5534.5786 -7959,9795,17636,17635,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.174036,7.1322227,8,-2,-9.4520826,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3253517,7.4270411,59.22,37.52,48.28,60.18,5,1,1,0,0,8,10,5,1,789,312493.09,324779.31,134024,0,5534.5786 -7960,9796,17637,17638,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1815119,8.2408524,0,31,-5,-12.000734,-9,3,3,2019,11,0,18,0,1,2,0,24.451387,24.451387,0,0,0,0,0,0,0,0,0,0,48,48,40.88,41.16,7,3,4,0,0,10,8,3,1,458,1729692.8,506665.84,204776.83,0,1316.2947 -7960,9796,17638,17637,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,0,0,37,5,-13.8978,0,2,2,2019,12,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.88,41.16,48,48,6.666666666666667,1,1,0,0,7,8,3,1,458,1729692.8,506665.84,204776.83,0,1316.2947 -7961,9797,17639,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.1956682,8.3593369,0,0,0,-1025.2003,0,2,2,2019,20,6,70,51,1,6,0,6.3624811,6.3624811,0,0,0,0,0,0,0,0,0,0,25.54,66.3,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,5593,905838.5,347599.34,245983.52,21322.928,2363.6416 -7962,9798,17640,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,7.065074,7.0488057,0,0,0,-1098.2714,0,3,2,2019,14,4,16,20,1,4,0,7.0035343,7.0035343,0,0,0,0,27,1,0,1,0,0,46.89,39.18,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,1164,0,0,0,0,1254.2277 -7963,9799,17641,-9,17644,17642,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-842.8302,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 -7963,9799,17642,17644,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5675468,8.00527,0,4,4,-39.245098,0,-9,-9,2019,7,0,43,39,1,0,0,13.259742,13.259742,0,0,0,0,0,1,1,0,0,0,60.6,43.75,57.16,56.15,8.333333333333334,1,1,0,0,6,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 -7963,9799,17643,-9,17644,17642,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.91913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 -7963,9799,17644,17642,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3824959,7.7449684,0,9,-4,-94.108337,0,-9,-9,2019,6,0,18,18,1,0,0,9.0255394,9.0255394,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.6,43.75,8.333333333333334,1,1,0,0,11,12,4,0,644.75,106986.35,62973.613,160700.36,81291.945,3178.6519 -7964,9800,17645,17646,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.5927491,6.198308,58,-1,-33.940289,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.4236732,45.49,58.84,51.66,54.88,8.333333333333334,1,1,0,0,0,4,2,1,438.5,561200.94,106140.64,224484.59,0,1735.3857 -7964,9800,17646,17645,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.6585641,6.8429103,58,1,129.3246,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.0910883,6.8976173,51.66,54.88,45.49,58.84,8.333333333333334,1,1,0,0,0,4,2,1,438.5,561200.94,106140.64,224484.59,0,1735.3857 -7965,9801,17647,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.0438833,6.8316026,3.8876152,0,0,-1029.7706,0,3,3,2019,5,0,10,10,1,0,0,11.792809,11.792809,1,0,0,0,0,1,1,0,7.1388383,4.1208305,53.19,48.51,-9,-9,8.333333333333334,1,1,0,0,9,9,2,0,1533,1388744.6,342830.19,596909,0,1972.5242 -7966,9802,17648,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.082478,7.1302352,0,0,-969.39673,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2637281,57.24,25.1,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,372,64852.594,113571.78,109224.69,0,1330.7678 -7967,9803,17649,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,6.0264678,6.0657759,0,0,-861.94934,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,8.0065069,6.3674188,31.95,26.36,-9,-9,1.666666666666667,1,1,0,0,9,9,2,1,672,-159992.95,0,0,0,1074.4635 -7968,9804,17650,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,6.7195892,6.7081871,0,0,0,-925.75525,0,2,2,2019,13,2,12,45,1,2,0,11.906754,11.906754,0,0,0,0,0,1,1,0,0,0,30.61,37.27,-9,-9,8.333333333333334,1,1,0,0,9,5,2,0,1819,256551.89,-76591.086,0,0,348.85681 -7969,9805,17651,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8069162,7.8809538,0,0,-970.04144,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6487374,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,579,886944.88,385993,115643.09,0,1475.8123 -7970,9806,17652,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.6209855,7.997973,6.7279792,0,0,-1018.1517,0,3,3,2019,10,0,32,30,1,0,0,8.1384449,8.1384449,0,0,0,0,0,1,1,0,6.1077147,0,52.48,55.6,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,881,266387.47,6754.8467,0,0,1884.384 -7971,9807,17653,-9,17654,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.3286,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,643.5,124393.91,0,0,0,663.22009 -7971,9807,17654,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,7.2208309,6.6352692,0,0,0,-947.22565,0,-9,-9,2019,16,4,16,24,1,4,0,7.880825,7.880825,0,0,0,0,0,1,1,0,0,0,39.13,44.14,-9,-9,5,1,1,0,0,8,13,2,0,643.5,124393.91,0,0,0,663.22009 -7972,9808,17655,17656,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,1.9128687,1.7014964,48,1,-43.241791,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3771315,2.0405033,56.19,41.56,42.6,44.91,8.333333333333334,1,1,0,0,11,9,2,1,393,1135154,97157.344,334807.56,0,3810.1758 -7972,9808,17656,17655,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.8279796,7.2503262,51,-1,-49.796864,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.3687296,7.1733384,42.6,44.91,56.19,41.56,6.666666666666667,1,1,0,0,0,9,2,1,393,1135154,97157.344,334807.56,0,3810.1758 -7973,9809,17657,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,0,0,0,0,-932.2063,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,7.2225027,0,57.791164,0,1,1,0,3.4506373,0,55.64,44.72,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,820,133656.78,0,0,0,217.45723 -7974,9810,17658,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.7014546,5.9711404,0,0,-1040.49,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.101872,0,0,1,1,0,0,5.8470984,52,44,-9,-9,8,1,1,0,0,0,11,2,1,242,217138.13,172522.11,0,0,1650.8502 -7975,9811,17659,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.05109,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,8,1,0,613,286053,0,77461.789,0,1125.4219 -7976,9812,17660,17661,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.5545444,8.0920334,8,7,-107.55074,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8933403,8.3026161,53.38,41.98,50.51,47.24,8.333333333333334,1,1,0,0,0,1,5,1,834,1716977.1,148532.25,540151.25,0,5281.4351 -7976,9812,17661,17660,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.461544,8.4268427,44,-7,13.230333,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9610806,8.4256859,50.51,47.24,53.38,41.98,6.666666666666667,1,1,0,0,0,1,5,1,834,1716977.1,148532.25,540151.25,0,5281.4351 -7977,9813,17662,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.6659956,8.9246511,7.6999922,0,0,-1135.1698,0,2,2,2019,12,1,35,25,1,1,0,16.094624,16.094624,0,0,0,0,0,1,1,0,8.2997904,0,48.28,60.18,-9,-9,5,1,1,0,0,10,10,4,1,392,217055.36,-25732.49,268111.38,78223.922,3412.4197 -7977,9813,17663,-9,17662,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.7318,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,392,217055.36,-25732.49,268111.38,78223.922,3412.4197 -7977,9813,17664,-9,17662,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.58679,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,392,217055.36,-25732.49,268111.38,78223.922,3412.4197 -7978,9814,17665,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,6.8158746,6.8734412,0,0,-1008.3351,0,2,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.8186202,0,36.29,32.94,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,1214,-105143.88,0,0,0,1355.9799 -7979,9815,17666,17667,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,8.9514427,8.9833908,0,21,-2,37.787571,0,1,2,2019,11,3,40,37,1,3,0,27.812576,27.812576,0,0,0,0,0,0,0,0,0,0,45.81,61.51,54.2,31.22,8.333333333333334,1,1,0,0,8,7,5,1,737.5,469398.34,262626.38,526417.63,205124.47,3670.1492 -7979,9815,17667,17666,-9,-9,1,0,49,0,1,0,1,1,-9,0,1,0,0,0,21,2,-88.296318,0,2,3,2019,9,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,.71481282,0,54.2,31.22,45.81,61.51,8.333333333333334,1,1,0,0,3,7,5,1,737.5,469398.34,262626.38,526417.63,205124.47,3670.1492 -7980,9816,17668,17669,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.0000038,7.727284,0,7,6,-39.103146,0,2,2,2019,7,0,20,20,1,0,0,19.584087,19.584087,0,0,0,0,0,1,1,0,0,0,41.47,57.49,51.24,58.84,8.333333333333334,1,1,0,0,9,7,5,1,731.66669,-123995.55,30066.539,234518.06,149162.41,3499.4236 -7980,9816,17669,17668,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.9041071,8.6584454,0,7,-6,64.955307,0,-9,-9,2019,8,0,45,45,1,0,0,17.437313,17.437313,0,0,0,0,0,1,1,0,0,0,51.24,58.84,41.47,57.49,6.666666666666667,1,1,0,0,9,7,5,1,731.66669,-123995.55,30066.539,234518.06,149162.41,3499.4236 -7980,9816,17670,-9,17668,17669,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.07697,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,731.66669,-123995.55,30066.539,234518.06,149162.41,3499.4236 -7981,9817,17671,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.9385533,8.0246277,0,0,0,-990.48907,0,2,2,2019,7,0,37,37,1,0,0,8.4690619,8.4690619,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,406,-44373.84,0,0,0,1905.5763 -7982,9818,17672,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.5407257,8.5466166,0,0,0,-1050.7142,0,3,3,2019,5,0,42,38,1,0,0,12.065553,12.065553,0,0,0,0,2,0,0,0,6.0719886,0,58.3,52.91,-9,-9,6.666666666666667,1,1,0,0,8,13,5,1,505,128515.2,289759.72,173143.39,38080.625,1932.5868 -7983,9819,17673,17674,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.5880036,6.4415231,17,-12,151.08609,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,12.850333,0,0,1,1,0,0,6.6760941,64.31,22.15,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,775.5,471513.94,196131.44,283771.44,60669.453,2366.7378 -7983,9819,17674,17673,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,7.0761518,6.9940443,16,12,-80.458961,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.336803,57.16,56.15,64.31,22.15,10,1,1,0,0,0,2,2,1,775.5,471513.94,196131.44,283771.44,60669.453,2366.7378 -7984,9820,17675,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,8.961894,8.7948532,0,0,-1038.9548,0,2,1,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,9.0856752,8.8326683,64.16,29.7,-9,-9,8.333333333333334,1,1,0,0,2,7,5,1,501,937946.13,416378.88,361839.88,0,7555.6729 -7985,9821,17676,17677,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.7198281,7.9058256,0,7,2,34.538048,-9,3,2,2019,10,0,50,0,1,1,0,5.8670683,5.8670683,0,0,0,0,0,1,1,0,1.8542237,0,51,48,43.59,59.64,7,1,1,0,0,1,4,3,1,299.5,347498.47,200158.48,195045.23,0,1981.4441 -7985,9821,17677,17676,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,6.9849353,7.3639407,0,44,-2,-64.523613,0,3,3,2019,11,0,25,25,1,0,0,4.590641,4.590641,0,0,0,0,0,1,1,0,0,0,43.59,59.64,51,48,6.666666666666667,1,1,0,0,8,4,3,1,299.5,347498.47,200158.48,195045.23,0,1981.4441 -7986,9822,17678,17679,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.2577953,8.5405121,0,9,3,-73.327881,-9,2,2,2019,10,2,18,0,1,2,0,24.711029,24.711029,0,0,0,0,0,0,0,0,7.0583835,0,59.46,46.99,58.05,54.52,1.666666666666667,1,1,0,0,10,10,5,1,504,910104.31,555517.5,327874.13,0,4268.7109 -7986,9822,17679,17678,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.7162018,8.4491739,0,9,-3,-25.791643,0,2,2,2019,8,0,23,15,1,0,0,29.893126,29.893126,0,0,0,0,0,0,0,0,0,0,58.05,54.52,59.46,46.99,8.333333333333334,1,1,0,0,10,10,5,1,504,910104.31,555517.5,327874.13,0,4268.7109 -7987,9823,17680,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,0,0,-957.42139,0,2,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.4893842,0,50,55,-9,-9,8,4,2,0,0,0,8,1,0,786.5,0,0,0,0,1211.3723 -7987,9823,17681,-9,17680,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.3244,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,786.5,0,0,0,0,1211.3723 -7987,9824,17682,-9,17680,-9,1,0,22,0,2,1,2,0,0,0,3,0,0,0,0,0,-851.2254,-9,2,-9,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,26.1,54.44,-9,-9,5,3,4,0,0,4,8,1,0,387,-104357.2,0,0,0,0 -7988,9825,17683,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-890.40588,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.57746691,0,39.05,59.16,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,1141,0,0,0,0,-65.660667 -7989,9826,17684,17685,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,9.120347,8.7112417,0,10,6,14.123323,0,2,2,2019,11,0,47,58,1,0,0,18.812992,18.812992,0,0,0,0,0,0,0,0,.095297888,0,42.4,45.68,40.98,52.59,6.666666666666667,1,1,0,0,11,10,5,1,333,1365334.1,924778,403406.13,0,3450.5547 -7989,9826,17685,17684,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9225554,7.514122,0,10,-6,8.8254137,0,2,1,2019,15,3,6,28,1,3,0,36.640759,36.640759,0,0,0,0,0,0,0,0,1.0833294,0,40.98,52.59,42.4,45.68,6.666666666666667,1,1,0,0,11,10,5,1,333,1365334.1,924778,403406.13,0,3450.5547 -7989,9827,17686,-9,17685,17684,1,0,18,0,0,0,2,2,-9,0,4,7.2977471,7.0752792,0,0,0,-1034.1908,0,2,2,2019,10,2,16,0,1,2,1,9.0572376,9.0572376,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,2,10,3,1,1306,-102692.13,0,0,0,536.8042 -7990,9828,17687,-9,17690,17691,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1000.1398,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 -7990,9828,17688,-9,17690,17691,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.74561,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 -7990,9828,17689,-9,17690,17691,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1017.1529,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 -7990,9828,17690,17691,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.7550211,9.0207996,0,20,-1,-49.87402,0,1,1,2019,9,0,40,38,1,0,0,18.485338,18.485338,0,0,0,0,0,0,0,0,0,0,51.53,49.1,52.23,55.6,8.333333333333334,1,1,0,0,12,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 -7990,9828,17691,17690,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.0866508,9.2457609,0,20,1,-71.760445,0,2,2,2019,9,0,45,50,1,0,0,32.236881,32.236881,0,0,0,0,0,0,0,0,0,0,52.23,55.6,51.53,49.1,6.666666666666667,1,1,0,0,12,2,5,1,1249.4,481150.91,9536.5635,326308.25,89987.055,5586.2856 -7991,9829,17692,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.6586676,8.6211624,0,0,0,-1024.2076,0,2,2,2019,15,5,42,43,1,5,0,17.139605,17.139605,0,0,0,0,0,1,1,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,5,8,5,0,170,-154520.02,121454.43,0,0,1841.1796 -7992,9830,17693,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-884.11444,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,17.14134,0,0,1,0,1,0,0,52.64,8.960000000000001,-9,-9,5,1,1,0,0,0,13,1,1,225,62861.77,0,0,0,1208.2539 -7992,9831,17694,-9,17693,-9,1,0,52,0,0,0,1,1,-9,0,4,8.1570368,8.5126925,0,0,0,-883.78845,0,3,3,2019,25,11,38,37,1,11,0,14.48212,14.48212,0,0,0,0,14.5,1,0,1,0,0,44.93,55.1,-9,-9,3.333333333333333,1,1,0,0,8,13,4,1,441,481131.72,259001.97,139376.33,27918.266,1548.4938 -7992,9832,17695,-9,17694,-9,1,0,23,0,0,0,1,1,-9,1,3,8.6515055,8.6825342,0,0,0,-1021.8519,0,1,-9,2019,5,0,38,38,1,0,1,14.422482,14.422482,0,0,0,0,0,1,0,1,0,0,53.2,26.42,-9,-9,3.333333333333333,1,1,0,0,8,13,5,1,2482,200476.73,-89031.625,0,0,2469.2712 -7993,9833,17696,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1079.8005,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,3.2231829,0,27.497185,0,1,1,0,.28376424,0,58.22,40.76,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1291,161964.39,0,0,0,509.66037 -7994,9834,17697,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,5.9757128,6.1278348,0,0,-915.81458,0,2,1,2019,12,2,0,0,4,2,0,0,0,1,3.1209476,0,0,0,1,1,0,0,6.3576217,50,33,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,409,96099.469,-8368.6855,366264.59,0,706.48523 -7995,9835,17698,-9,17702,17700,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.4701,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 -7995,9835,17699,-9,17702,17700,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1946,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 -7995,9835,17700,17702,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.3829699,9.6392889,0,8,-1,-116.95853,0,-9,-9,2019,11,4,53,48,1,4,0,33.878235,33.878235,0,0,0,0,0,0,0,0,0,0,53.81,53.56,38.69,61.75,5,1,1,0,0,10,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 -7995,9835,17701,-9,17702,17700,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.2362,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 -7995,9835,17702,17700,-9,-9,1,0,50,0,3,0,1,1,-9,0,4,9.4439554,9.3433475,0,27,1,15.883141,0,-9,-9,2019,13,3,45,47,1,3,0,46.078934,46.078934,0,0,0,0,0,0,0,0,0,0,38.69,61.75,53.81,53.56,6.666666666666667,3,4,0,0,10,8,5,1,1172.6,590680.63,16629.922,834668.75,406181.13,9362.4189 -7996,9836,17703,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1026.3969,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40,25,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,262,-63925.668,-62140.289,0,0,930.81354 -7997,9837,17704,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,5.4112253,5.5318022,0,0,0,-985.91479,0,2,1,2019,11,1,18,25,1,1,0,1.5661411,1.5661411,0,0,0,0,2,1,1,0,5.210824,0,47.16,47.3,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,1311,846299.56,169396.11,824175.31,31460.568,1268.6431 -7998,9838,17705,17706,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.8302794,8.8462553,0,22,0,87.791389,0,2,-9,2019,12,2,40,48,1,2,0,20.125788,20.125788,0,0,0,0,0,1,1,0,0,0,55.65,41.83,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,634.5,1520043,258147.53,753666.75,101420.02,4444.7642 -7998,9838,17706,17705,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3156557,7.7401929,0,22,0,-66.344681,0,3,2,2019,6,0,39,40,1,0,0,12.527198,12.527198,0,0,0,0,0,1,1,0,2.7086892,0,57.16,56.15,55.65,41.83,8.333333333333334,1,1,0,0,11,8,5,1,634.5,1520043,258147.53,753666.75,101420.02,4444.7642 -7999,9839,17707,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1132.2764,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19,19.03,-9,-9,5,1,1,0,1,4,12,1,0,420,-47018.895,0,0,0,1418.5449 -7999,9840,17708,-9,-9,-9,1,0,18,0,0,0,3,3,1,0,3,6.8925381,6.8919735,0,0,0,-1051.4915,-9,-9,-9,2019,9,1,30,0,1,1,0,2.904665,2.904665,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,10,1,1,0,0,2,12,2,0,581,247090.08,0,0,0,782.75745 -8000,9841,17709,17711,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.4585314,8.504096,0,22,0,-58.191319,0,3,2,2019,9,0,45,52,1,0,0,14.296999,14.296999,0,0,0,0,7,1,1,0,0,0,56.18,51.02,57.33,53.46,8.333333333333334,2,3,0,0,13,8,4,1,232,428113.97,163256.06,356092.41,106429.64,3423.291 -8000,9841,17710,-9,17711,17709,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1045.6703,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,0,8,4,1,232,428113.97,163256.06,356092.41,106429.64,3423.291 -8000,9841,17711,17709,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,7.7239151,7.6212397,0,22,0,41.480801,0,3,2,2019,6,0,10,10,1,0,0,26.029242,26.029242,0,0,0,0,7,1,1,0,0,0,57.33,53.46,56.18,51.02,8.333333333333334,2,3,0,0,8,8,4,1,232,428113.97,163256.06,356092.41,106429.64,3423.291 -8001,9842,17712,17713,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,44,-4,43.805714,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,52.81,12.56,8.333333333333334,1,1,0,0,0,9,3,1,901,1652478.5,1093606.5,412831.59,0,3085.4277 -8001,9842,17713,17712,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.8017759,8.0046329,44,4,25.573006,0,2,-9,2019,12,0,0,0,4,0,0,0,0,1,0,14.979093,0,0,1,1,0,6.1885128,7.7155342,52.81,12.56,50,47,8.333333333333334,1,1,0,0,0,9,3,1,901,1652478.5,1093606.5,412831.59,0,3085.4277 -8002,9843,17714,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,7.716836,8.2919712,7.0470414,0,0,-1013.4381,0,2,1,2019,8,0,43,45,1,0,0,6.2069783,6.2069783,0,0,0,0,0,1,1,0,0,6.9573703,62.67,44.01,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,110,544007.5,493690.38,41814.371,0,2055.5459 -8003,9844,17715,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,0,0,0,0,-924.69812,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,0,1,0,0,54.18,16.88,-9,-9,5,1,1,0,0,0,12,1,1,255,-219979.59,0,0,0,1606.5923 -8003,9845,17716,-9,-9,17715,1,1,24,0,0,0,2,2,0,0,5,0,0,0,0,0,-989.85815,-9,-9,2,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,1.6478928,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,621,499168.81,0,0,0,-298.31836 -8004,9846,17717,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.4005651,8.1882925,0,0,0,-966.79425,0,2,2,2019,6,0,40,40,1,0,0,11.015965,11.015965,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,183,-290955.06,0,0,0,1632.7628 -8005,9847,17718,17720,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.1779423,8.2166681,0,2,6,-54.131374,0,2,2,2019,10,0,40,40,1,0,0,9.4306087,9.4306087,0,0,0,0,0,1,1,0,2.8072054,0,34.17,56.31,34.62,61.03,8.333333333333334,1,1,0,0,8,2,4,1,915.66669,964074.81,658227.63,268403.47,0,3753.114 -8005,9847,17719,-9,17720,17718,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1133.8564,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,915.66669,964074.81,658227.63,268403.47,0,3753.114 -8005,9847,17720,17718,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.2685089,8.4402304,0,2,-6,-148.13023,0,-9,-9,2019,12,0,37,38,1,0,0,13.834273,13.834273,0,0,0,0,0,1,1,0,0,0,34.62,61.03,34.17,56.31,5,1,1,0,1,10,2,4,1,915.66669,964074.81,658227.63,268403.47,0,3753.114 -8006,9848,17721,17722,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.3042994,5.3399172,55,0,18.610195,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9936996,48.92,44.88,51.9,38.14,8.333333333333334,1,1,0,0,8,4,3,1,509.5,528445.88,336296.06,165183.25,0,2835.3975 -8006,9848,17722,17721,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,7.1854601,7.7871327,6.052269,55,0,-9.7684612,0,3,3,2019,9,1,24,20,1,1,0,6.4930892,6.4930892,0,0,0,0,0,1,1,0,1.1301523,6.891861,51.9,38.14,48.92,44.88,8.333333333333334,1,1,0,0,12,4,3,1,509.5,528445.88,336296.06,165183.25,0,2835.3975 -8007,9849,17723,17724,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.6751199,7.7701616,43,2,-101.94792,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8252625,7.8569179,56.35,51,54.72,46.41,8.333333333333334,1,1,0,0,5,11,4,1,742,1530235.8,1493849.3,312314.84,0,2829.8064 -8007,9849,17724,17723,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.7555027,8.1838379,43,-2,42.216053,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.3773332,8.0211773,54.72,46.41,56.35,51,10,1,1,0,0,5,11,4,1,742,1530235.8,1493849.3,312314.84,0,2829.8064 -8008,9850,17725,17726,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.4301405,8.6815052,0,32,3,73.232887,0,3,3,2019,6,0,37,37,1,0,0,17.243713,17.243713,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.35,59.64,10,1,1,0,0,12,13,5,1,705.5,1979444.9,1608205,468639.06,53664.469,3841.1665 -8008,9850,17726,17725,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.9081173,8.7130594,0,32,-3,-79.684227,0,1,3,2019,11,0,39,42,1,0,0,19.389002,19.389002,0,0,0,0,7,0,0,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,1,1,0,0,12,13,5,1,705.5,1979444.9,1608205,468639.06,53664.469,3841.1665 -8008,9851,17727,-9,17726,17725,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-967.7226,-9,1,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.0351224,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,503,-257281.63,0,0,0,-272.23309 -8009,9852,17728,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.90118,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.3731422,0,59.27,40.23,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,305,-113601.25,0,253264.22,0,562.96143 -8010,9853,17729,17730,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,5.1096845,5.3909445,35,-12,-25.016991,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,5.3172612,32.06,40.79,62.59,18.99,5,1,1,0,0,8,9,2,0,582.5,-289207.53,0,0,0,1202.2991 -8010,9853,17730,17729,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,6.6449533,6.806416,35,12,-37.323372,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,27.076145,26.347872,250.68185,0,1,1,0,0,6.6851721,62.59,18.99,32.06,40.79,6.666666666666667,1,1,0,0,0,9,2,0,582.5,-289207.53,0,0,0,1202.2991 -8011,9854,17731,-9,17732,17733,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.7078,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 -8011,9854,17732,17733,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,6.9251075,6.8356671,0,13,-10,64.847023,0,2,2,2019,12,1,6,16,1,1,0,17.541046,17.541046,0,0,0,0,0,1,1,0,1.0835128,0,40.89,51.69,28.2,22.68,6.666666666666667,2,3,0,0,5,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 -8011,9854,17733,17732,-9,-9,1,1,54,0,2,0,1,1,-9,1,1,0,0,0,13,10,-55.555363,0,1,1,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.2,22.68,40.89,51.69,0,1,1,0,1,0,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 -8011,9854,17734,-9,17732,17733,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.4628,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,637.5,2201149.8,632656.56,393137.63,0,2385.4126 -8012,9855,17735,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,4.9968185,5.0211658,0,0,-1113.5426,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.885438,50.88,34.81,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,558,466756.34,-47778.102,0,0,1611.7059 -8013,9856,17736,17738,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.8610773,8.7733784,0,7,6,4.8840976,0,-9,-9,2019,10,0,40,40,1,1,0,18.854076,18.854076,0,0,0,0,0,1,1,0,0,0,51,57,57.16,56.15,7,1,1,0,0,1,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 -8013,9856,17737,-9,17738,17736,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.3441,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 -8013,9856,17738,17736,17742,17741,1,0,30,0,3,0,2,2,-9,0,4,0,0,0,13,-6,95.389221,0,2,3,2019,7,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,57,10,1,1,0,0,3,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 -8013,9856,17739,-9,17738,17736,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.51038,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 -8013,9856,17740,-9,17738,17736,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.81219,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,416,-149530.41,-31950.732,0,0,2574.801 -8013,9857,17741,17742,-9,-9,1,1,55,0,3,0,3,3,-9,0,2,0,5.3227921,5.1951232,33,4,54.238098,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9230261,5.1355796,39.56,34.81,57.06,57.76,8.333333333333334,1,1,0,0,6,11,2,1,305.5,584107.88,121335.3,189025.56,7923.3491,860.56531 -8013,9857,17742,17741,-9,-9,1,0,51,0,3,0,2,2,-9,0,5,7.523138,7.988318,0,33,-4,82.290283,0,2,2,2019,6,0,50,37,1,0,0,3.9909575,3.9909575,0,0,0,0,0,1,1,0,0,0,57.06,57.76,39.56,34.81,0,1,1,0,0,8,11,2,1,305.5,584107.88,121335.3,189025.56,7923.3491,860.56531 -8014,9858,17743,-9,17744,-9,1,0,29,0,0,0,2,2,-9,0,4,8.6016254,8.295496,0,0,0,-969.65112,0,3,-9,2019,18,8,44,40,1,8,1,12.908502,12.908502,0,0,0,0,0,0,0,0,0,0,40.58,60.95,-9,-9,6.666666666666667,1,1,0,1,6,13,5,1,1171,-99670.039,-20985.381,0,0,1980.8787 -8014,9859,17744,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.9674492,7.9084911,0,0,0,-1013.9308,0,2,2,2019,10,0,35,35,1,0,0,9.726058,9.726058,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,1,9,13,3,1,162,177297.67,342553.13,95595.641,73548.164,1131.3951 -8014,9860,17745,-9,17744,-9,1,0,27,0,0,0,1,1,-9,0,5,8.2976799,8.5900955,0,0,0,-943.24762,0,3,-9,2019,6,1,36,40,1,1,1,14.990516,14.990516,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,596,-33292.781,90900.477,0,0,1948.8596 -8015,9861,17746,-9,-9,-9,1,1,56,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1027.1938,0,2,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,53.22,37.91,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,557,0,0,0,0,0 -8016,9862,17747,-9,17749,17748,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.7982,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 -8016,9862,17748,17749,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,9.1324902,8.8876457,0,7,0,83.337311,0,2,2,2019,9,0,35,35,1,0,0,22.01104,22.01104,0,0,0,0,0,1,1,0,6.9281998,0,54.1,59.11,50.57,41.62,8.333333333333334,1,1,0,0,8,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 -8016,9862,17749,17748,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4056606,8.2628336,0,7,0,20.972773,0,2,1,2019,15,3,25,25,1,3,0,22.527281,22.527281,0,0,0,0,0,1,1,0,.96035808,0,50.57,41.62,54.1,59.11,5,1,1,0,0,6,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 -8016,9862,17750,-9,17749,17748,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-968.22675,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,517,304928.59,79721.352,295425.81,241349.66,5430.0889 -8017,9863,17751,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.5728664,8.3353596,0,0,0,-951.09619,0,2,2,2019,5,0,42,41,1,0,0,16.077009,16.077009,0,0,0,0,0,0,0,0,3.6458802,0,55.68,54.24,-9,-9,8.333333333333334,1,1,0,0,12,8,5,0,677,143544.2,11091.495,0,0,1723.3379 -8018,9864,17752,17753,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.8986492,9.2247295,0,29,4,-95.568367,0,3,1,2019,10,0,30,30,1,1,0,24.975784,24.975784,0,0,0,0,0,0,0,0,5.7013087,0,51,49,65.23,38.89,7,2,3,0,0,1,7,5,1,387.5,1510532.8,762608.06,408532.44,10904.469,4964.2676 -8018,9864,17753,17752,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.2568855,8.2143383,0,29,-4,16.712378,0,3,1,2019,10,0,15,15,1,0,0,27.92775,27.92775,0,0,0,0,0,0,0,0,6.44278,0,65.23,38.89,51,49,8.333333333333334,2,3,0,0,11,7,5,1,387.5,1510532.8,762608.06,408532.44,10904.469,4964.2676 -8018,9865,17754,-9,17753,17752,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-927.43451,-9,1,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,34.22,59.96,-9,-9,8.333333333333334,2,3,0,0,0,7,1,1,170,8972.9639,0,0,0,0 -8019,9866,17755,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4354305,8.5249357,6.0262704,0,0,-861.62726,0,2,2,2019,19,8,42,48,1,8,0,13.679253,13.679253,0,0,0,0,0,0,0,0,4.7850494,5.9862571,24.18,49.81,-9,-9,3.333333333333333,1,1,0,0,9,7,5,1,1253,944142.75,563765.75,269103.63,0,1726.1448 -8020,9867,17756,17757,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.8299184,8.0933714,0,2,-4,-47.561359,0,-9,-9,2019,11,0,40,40,1,0,0,7.4143867,7.4143867,0,0,0,0,14.5,0,0,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,4,1,0,0,8,4,4,0,483,881416.38,516017.72,0,0,2922.2961 -8020,9867,17757,17756,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3684702,8.3522511,0,2,4,-156.25925,0,-9,3,2019,7,0,47,40,1,0,0,10.73929,10.73929,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,7,4,4,0,483,881416.38,516017.72,0,0,2922.2961 -8021,9868,17758,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7778172,8.4518108,7.0487552,0,0,-958.02545,0,3,2,2019,10,0,24,39,1,0,0,13.120771,13.120771,0,0,0,0,2,1,1,0,7.0759039,5.4673996,58.15,52.91,-9,-9,5,1,1,0,0,10,9,4,1,358,491708.47,430106.41,0,0,1080.8416 -8022,9869,17759,17760,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,43,-4,0,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,50.48,52.51,54.26,8.333333333333334,1,1,0,0,0,12,1,1,579.5,323832.91,82790.82,356670.63,0,791.20972 -8022,9869,17760,17759,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,43,4,0,0,-9,1,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.51,54.26,51.64,50.48,8.333333333333334,1,1,0,0,0,12,1,1,579.5,323832.91,82790.82,356670.63,0,791.20972 -8023,9870,17761,-9,17764,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.9187,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,388,-183077,0,0,0,2184.2354 -8023,9870,17762,-9,17764,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.30872,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,388,-183077,0,0,0,2184.2354 -8023,9870,17763,-9,17764,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.5616,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,388,-183077,0,0,0,2184.2354 -8023,9870,17764,-9,-9,-9,1,0,25,1,3,0,2,2,-9,0,2,0,6.800458,6.9027843,0,0,-1102.3535,0,1,1,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.6706624,0,38.21,51.98,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,388,-183077,0,0,0,2184.2354 -8024,9871,17765,17766,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.8270769,7.6879234,38,-1,-35.239574,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,11.793612,0,0,1,1,0,3.1942782,7.7417536,56,52,46,36,8.333333333333334,1,1,0,0,0,4,3,1,462,823549.38,524259.91,69225.539,0,2295.4795 -8024,9871,17766,17765,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.6676483,6.5323639,38,1,-69.609024,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5295339,6.6358633,46,36,56,52,8.333333333333334,1,1,0,0,0,4,3,1,462,823549.38,524259.91,69225.539,0,2295.4795 -8024,9872,17767,-9,17766,17765,1,0,47,0,0,0,2,2,-9,0,3,8.1537991,8.1677275,0,0,0,-1131.7771,0,2,2,2019,6,0,40,39,1,0,0,12.290666,12.290666,0,0,0,0,0,1,1,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,166,77124.57,114827.18,203481.44,44117.727,1149.022 -8025,9873,17768,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,9.0161219,9.1472702,0,0,0,-1022.7114,0,-9,-9,2019,13,2,48,45,1,2,0,25.32222,25.32222,0,0,0,0,0,0,0,0,3.6178439,0,38.45,60.79,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,834,165163.77,160120.78,0,0,2562.9475 -8026,9874,17769,-9,17770,17771,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.5872,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,3,1,442,112136.87,52703.508,193181.2,7375.4629,1927.0502 -8026,9874,17770,17771,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,0,0,0,11,-6,-131.41237,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.6350813,0,57.06,57.76,46.8,57.03,8.333333333333334,2,3,0,0,0,2,3,1,442,112136.87,52703.508,193181.2,7375.4629,1927.0502 -8026,9874,17771,17770,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,7.9428363,7.8724394,0,26,6,58.885262,0,3,3,2019,10,0,36,36,1,0,0,8.632762,8.632762,0,0,0,0,0,1,1,0,2.0554681,0,46.8,57.03,57.06,57.76,5,2,3,0,0,13,2,3,1,442,112136.87,52703.508,193181.2,7375.4629,1927.0502 -8026,9875,17772,-9,17770,17771,1,0,21,0,1,0,1,1,1,0,4,0,0,0,0,0,-958.76855,-9,1,2,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,461,-4584.6787,0,0,0,0 -8026,9876,17773,-9,17770,17771,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1026.7279,-9,1,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,39.47,60.21,-9,-9,10,2,3,0,0,0,2,1,1,185,104818.01,0,0,0,0 -8027,9877,17774,-9,17777,17775,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.0394,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 -8027,9877,17775,17777,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.1852388,9.4789743,0,8,-2,-94.99115,0,-9,-9,2019,12,0,36,40,1,0,0,30.938566,30.938566,0,0,0,0,0,0,0,0,3.229986,0,52.99,51.28,65.06,41.58,8.333333333333334,1,1,0,0,9,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 -8027,9877,17776,-9,17777,17775,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.12,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 -8027,9877,17777,17775,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,20,2,67.194984,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,52.99,51.28,8.333333333333334,1,1,0,0,1,12,4,1,629.75,163022,40120.859,263902.13,23792.305,3368.6833 -8028,9878,17778,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1017.6041,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,2.5307126,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,1,11,1,0,1008,223970.7,156528.08,137210.23,24545.539,489.60797 -8029,9879,17779,17780,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.3306437,6.8165183,54,2,48.396233,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.92900926,7.1611152,59.15,49.67,58.76,40.89,10,1,1,0,0,2,10,2,1,695.5,339925.06,258814.98,268720.81,0,1489.6826 -8029,9879,17780,17779,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,54,-2,-61.405514,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.3565985,0,58.76,40.89,59.15,49.67,5,1,1,0,0,2,10,2,1,695.5,339925.06,258814.98,268720.81,0,1489.6826 -8030,9880,17781,17782,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.9250798,7.8069549,10,5,52.234081,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1675959,52.31,58.29,38.67,29.8,8.333333333333334,1,1,0,0,11,10,4,1,639,1412928,565989.25,554415.75,0,1475.1531 -8030,9880,17782,17781,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.015974,7.9870963,0,39,-5,-21.26368,0,2,2,2019,18,6,30,29,1,6,0,9.5762148,9.5762148,0,0,0,0,0,0,0,0,0,0,38.67,29.8,52.31,58.29,3.333333333333333,1,1,0,0,12,10,4,1,639,1412928,565989.25,554415.75,0,1475.1531 -8031,9881,17783,17784,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,7.3019137,7.3577719,29,10,44.190952,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8113813,7.2967572,60.02,56.42,60.03,42.65,8.333333333333334,1,1,0,0,4,9,2,1,916.5,645342.69,255393.22,369253.44,0,1506.9678 -8031,9881,17784,17783,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,4.0800571,3.7198169,29,-10,-50.65097,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.47516897,3.6865165,60.03,42.65,60.02,56.42,10,1,1,0,0,9,9,2,1,916.5,645342.69,255393.22,369253.44,0,1506.9678 -8032,9882,17785,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.4499779,7.4833527,0,0,-935.06262,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6980543,7.4388213,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,522,808534.06,271032.78,208066.73,0,1502.4204 -8033,9883,17786,17787,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.0947924,9.0375757,0,6,-1,78.15979,0,2,3,2019,13,2,47,45,1,2,0,18.865328,18.865328,0,0,0,0,0,1,1,0,0,0,53.33,35.31,51.73,20.84,6.666666666666667,1,1,0,0,7,13,5,1,655,28594.184,20064.281,0,0,2701.5481 -8033,9883,17787,17786,-9,-9,1,0,48,0,0,0,3,3,-9,1,2,0,0,0,6,1,-183.65154,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.73,20.84,53.33,35.31,6.666666666666667,1,1,0,0,0,13,5,1,655,28594.184,20064.281,0,0,2701.5481 -8033,9884,17788,-9,17787,17786,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-996.41046,1,3,2,2019,6,0,0,37,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,394,-123154.43,0,0,0,0 -8033,9885,17789,-9,17787,17786,1,1,19,0,0,0,2,2,-9,0,5,6.9460702,6.9697766,0,0,0,-1026.3448,0,3,2,2019,3,0,25,30,1,0,1,5.3756232,5.3756232,0,0,0,0,2,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,2,13,2,1,237,109751,0,0,0,138.65508 -8034,9886,17790,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-946.68756,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,47.32,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,556,-120924.01,0,0,0,819.79535 -8035,9887,17791,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.9894581,5.6019473,0,0,-1058.3386,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.68363,48.65,53.17,-9,-9,8.333333333333334,4,2,0,0,8,8,2,0,360,366554.63,73073.039,147621.33,0,1143.2476 -8035,9888,17792,-9,17791,-9,1,0,37,0,0,0,2,2,-9,0,4,0,0,0,0,0,-957.79608,0,2,-9,2019,11,0,0,37,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,4,2,1,0,0,8,2,0,1807,0,0,0,0,561.05872 -8036,9889,17793,17794,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.676733,6.9982042,49,4,-52.608025,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5854735,6.6171179,58.15,52.91,55.36,46.37,10,1,1,0,0,8,10,2,1,761,649409.38,174887.47,273207.06,0,1882.2157 -8036,9889,17794,17793,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.096849,6.3336205,49,-4,45.108078,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8283148,5.9805188,55.36,46.37,58.15,52.91,8.333333333333334,1,1,0,0,8,10,2,1,761,649409.38,174887.47,273207.06,0,1882.2157 -8037,9890,17795,17798,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.4150181,7.3471332,0,16,-3,-48.367619,0,2,2,2019,10,0,2,2,1,0,0,77.334282,77.334282,0,0,0,0,0,1,1,0,2.871124,0,46.39,52.95,45,53.85,10,1,1,0,0,6,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 -8037,9890,17796,-9,17795,17798,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.8736,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 -8037,9890,17797,-9,17795,17798,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6915,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 -8037,9890,17798,17795,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4030313,9.1685858,0,16,3,101.59093,0,2,2,2019,9,2,40,45,1,2,0,24.805101,24.805101,0,0,0,0,0,1,1,0,0,0,45,53.85,46.39,52.95,8.333333333333334,1,1,0,0,10,2,5,1,436.75,477705.28,257922.42,275088.88,160292.84,5001.3086 -8038,9891,17799,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,7.650209,7.7570362,6.1771369,0,0,-949.74988,0,2,3,2019,11,0,6,29,1,0,0,38.224075,38.224075,0,0,0,0,0,1,1,0,6.6144671,0,54.37,54.8,-9,-9,5,3,4,0,0,3,8,3,0,1337,389232.63,0,622169.25,0,4210.2417 -8038,9891,17800,-9,17799,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.459,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,1337,389232.63,0,622169.25,0,4210.2417 -8038,9892,17801,-9,17799,-9,1,0,24,0,1,0,2,2,-9,0,4,7.0620098,7.1690884,0,0,0,-1097.7266,0,1,1,2019,11,0,37,38,1,2,1,3.9786301,3.9786301,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,241,-348582.59,0,0,0,-33.242397 -8038,9893,17802,-9,17799,-9,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-912.31537,1,1,-9,2019,11,1,0,32,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.25,38.33,-9,-9,5,3,4,0,0,4,8,1,0,598,-3273.1714,0,0,0,124.81442 -8039,9894,17803,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.8236833,7.5315962,3.894974,0,0,-1052.4919,0,2,2,2019,12,2,36,31,1,2,0,7.5280476,7.5280476,0,0,0,0,2,1,1,0,4.9590287,4.1680284,47.76,48.16,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,98,-163657.75,2390.5493,74563.211,0,697.62585 -8040,9895,17804,17805,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,7.2553887,7.2881155,0,21,-3,62.760468,0,3,3,2019,8,0,45,60,1,0,0,3.5093093,3.5093093,0,0,0,0,0,0,0,0,6.6365657,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,10,10,5,1,845,2004087.5,1549397.6,315200.13,0,3332.9771 -8040,9895,17805,17804,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.8641319,8.7335081,0,6,3,-28.066116,0,-9,-9,2019,9,0,50,50,1,0,0,17.365091,17.365091,0,0,0,0,2,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,10,10,5,1,845,2004087.5,1549397.6,315200.13,0,3332.9771 -8041,9896,17806,17807,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.2800779,4.8177667,4,-7,3.9180512,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7055521,5.2921968,43.25,38.75,37.62,29.2,5,2,3,0,0,0,6,3,1,605,595575.75,147325.63,131696.09,0,1851.5984 -8041,9896,17807,17806,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.5634041,7.715178,4,7,54.421291,0,3,1,2019,19,8,0,0,4,8,0,0,0,1,0,10.461588,0,0,1,1,0,5.5443172,7.3209219,37.62,29.2,43.25,38.75,8.333333333333334,2,3,0,0,0,6,3,1,605,595575.75,147325.63,131696.09,0,1851.5984 -8042,9897,17808,17809,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.5837765,7.7351737,10,1,49.095291,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.444582,7.8423729,46.98,35.42,50.89,30.74,8.333333333333334,1,1,0,0,7,2,3,0,528.5,725993.13,320814.25,454895.31,0,2391.248 -8042,9897,17809,17808,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,10,-1,-14.04024,0,2,2,2019,16,6,0,0,4,6,0,0,0,1,.91678995,4.1144037,27.944017,7,1,1,0,2.9548106,0,50.89,30.74,46.98,35.42,8.333333333333334,1,1,0,0,0,2,3,0,528.5,725993.13,320814.25,454895.31,0,2391.248 -8043,9898,17810,17811,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.0781469,7.5252981,7,-1,40.92659,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4180303,7.2153292,47.72,52.18,39.99,34.69,8.333333333333334,1,1,0,0,0,7,2,1,1486,1024391.1,384788.63,372344.78,0,3663.9307 -8043,9898,17811,17810,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,3.4565351,3.4326787,7,1,-22.797951,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,6.4829931,3.1551518,39.99,34.69,47.72,52.18,8.333333333333334,1,1,0,0,0,7,2,1,1486,1024391.1,384788.63,372344.78,0,3663.9307 -8044,9899,17812,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2009325,7.8333235,0,0,-1127.0063,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2070546,8.2416134,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,500,1161001.5,497600.91,29719.219,0,1475.4949 -8045,9900,17813,17814,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-1,-164.16318,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5553861,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,7,3,1,1845.5,941324.63,335930.06,475465.06,0,3429.7349 -8045,9900,17814,17813,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.7309666,7.603807,9,1,-47.14159,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0685139,7.4394178,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,4,7,3,1,1845.5,941324.63,335930.06,475465.06,0,3429.7349 -8046,9901,17815,17816,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.598309,6.2901969,45,3,-34.956619,0,3,3,2019,9,1,0,30,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6208143,6.3840113,57.98,47.73,53.39,44.47,8.333333333333334,1,1,0,0,8,6,2,1,2492,114126.04,57435.383,154035.44,0,2102.4819 -8046,9901,17816,17815,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.5985041,5.4720201,45,-3,40.036247,0,3,3,2019,11,0,0,15,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6080999,5.5138626,53.39,44.47,57.98,47.73,8.333333333333334,1,1,0,0,4,6,2,1,2492,114126.04,57435.383,154035.44,0,2102.4819 -8046,9902,17817,-9,17816,17815,1,0,35,0,0,0,1,1,0,0,4,0,0,0,0,0,-1017.3918,-9,3,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,47.42,-9,-9,8.333333333333334,1,1,0,0,8,6,1,1,209,-263668.44,0,0,0,0 -8047,9903,17818,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4222403,8.4077053,5.3633265,0,0,-1055.6095,0,2,2,2019,15,6,37,42,1,6,0,12.831578,12.831578,0,0,0,0,0,1,1,0,0,6.0486331,35.96,40.41,-9,-9,3.333333333333333,1,1,0,0,13,7,5,1,442,765721.5,81424.977,343047.41,0,1690.8463 -8048,9904,17819,-9,17820,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.5232,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,700,130625.16,10099.162,0,0,1297.8771 -8048,9904,17820,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.0686398,7.9789033,0,0,0,-993.90991,0,2,1,2019,12,1,39,39,1,1,0,9.318099,9.318099,0,0,0,0,0,1,1,0,0,0,38.18,55.38,-9,-9,1.666666666666667,3,4,0,1,9,7,3,0,700,130625.16,10099.162,0,0,1297.8771 -8049,9905,17821,17822,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.5100594,8.5091925,45,1,-128.36501,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.4146194,8.4256144,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,5,7,4,1,868.5,2090492.1,1009479.3,503914.88,0,3811.5647 -8049,9905,17822,17821,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,45,-1,16.113308,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,10,1,1,0,0,0,7,4,1,868.5,2090492.1,1009479.3,503914.88,0,3811.5647 -8050,9906,17823,-9,17825,-9,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-949.14667,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,567.25,0,0,0,0,1800.7888 -8050,9906,17824,-9,17825,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.0682,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,567.25,0,0,0,0,1800.7888 -8050,9906,17825,-9,-9,-9,1,0,27,1,3,0,2,2,-9,1,4,0,0,0,0,0,-851.0257,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,5,1,1,0,0,0,4,1,0,567.25,0,0,0,0,1800.7888 -8050,9906,17826,-9,17825,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.04816,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,567.25,0,0,0,0,1800.7888 -8051,9907,17827,17829,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1773186,8.2081537,0,7,9,-24.269001,0,-9,-9,2019,9,0,50,50,1,1,0,9.1609383,9.1609383,0,0,0,0,0,1,1,0,0,0,53,54,55.13,34.07,8,1,1,0,0,1,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 -8051,9907,17828,-9,17829,17827,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1119.1904,-9,1,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.41137567,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 -8051,9907,17829,17827,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.3835258,8.8315172,0,7,0,36.439808,0,2,2,2019,7,0,46,46,1,0,0,15.243781,15.243781,0,0,0,0,0,1,1,0,0,0,55.13,34.07,53,54,8.333333333333334,1,1,0,0,7,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 -8051,9907,17830,-9,17829,17827,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.38824,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,445.25,191974.73,126958.16,201970.55,0,4083.7007 -8052,9908,17831,17832,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.0806289,6.6284995,49,-3,4.399775,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9226685,6.7274222,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,4,11,3,1,787,684726.25,483507.63,113729.77,0,2790.9275 -8052,9908,17832,17831,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.3563061,7.0102677,49,3,101.11244,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5928366,7.3438563,62.39,56.71,57.06,57.76,10,1,1,0,0,6,11,3,1,787,684726.25,483507.63,113729.77,0,2790.9275 -8053,9909,17833,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.7864304,7.1556149,0,0,-1224.0623,0,2,2,2019,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,6.5624871,7.5408797,25.31,44.08,-9,-9,3.333333333333333,1,1,0,1,8,1,3,1,687,530841.44,90339.656,152481.2,0,630.90546 -8053,9910,17834,-9,17833,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2161875,8.4579744,0,0,0,-1045.1995,0,1,1,2019,11,0,38,37,1,2,0,8.5587435,8.5587435,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,1,4,1,2226,-238733.17,0,0,0,1426.7419 -8054,9911,17835,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,7.8537898,7.7157807,0,0,-984.8526,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,3.4872978,0,25.562284,0,1,1,0,0,7.8905401,62.01,38.87,-9,-9,0,1,1,0,0,0,1,3,1,311,170774.08,51485.281,136130.34,0,2030.0613 -8055,9912,17836,17838,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,7.8397679,8.4335938,0,3,-2,-3.7664185,0,-9,-9,2019,7,0,38,36,1,0,0,9.6553726,9.6553726,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.27,34.73,8.333333333333334,1,1,0,0,6,2,4,0,501,197847.38,9455.7061,139844.98,100464.99,2327.4988 -8055,9912,17837,-9,17836,17838,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.86865,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,0,501,197847.38,9455.7061,139844.98,100464.99,2327.4988 -8055,9912,17838,17836,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,7.6577153,8.0885534,0,3,2,87.426727,-9,-9,-9,2019,21,9,50,0,1,9,0,6.4323339,6.4323339,0,0,0,0,0,1,1,0,0,0,36.27,34.73,57.16,56.15,3.333333333333333,1,1,0,1,3,2,4,0,501,197847.38,9455.7061,139844.98,100464.99,2327.4988 -8056,9913,17839,-9,17840,17841,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-946.12665,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,4,1,638.33331,83035.523,104264.84,76104.609,64927.238,3336.5317 -8056,9913,17840,17841,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.0200663,8.234766,0,25,-2,-31.843779,0,3,3,2019,10,0,39,37,1,0,0,7.7030692,7.7030692,0,0,0,0,0,1,1,0,.60824776,0,52,54.51,46.08,57.2,5,1,1,0,0,13,4,4,1,638.33331,83035.523,104264.84,76104.609,64927.238,3336.5317 -8056,9913,17841,17840,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.3296452,8.8121099,0,20,2,-27.916439,0,3,3,2019,11,0,40,44,1,0,0,23.843006,23.843006,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52,54.51,5,1,1,0,0,13,4,4,1,638.33331,83035.523,104264.84,76104.609,64927.238,3336.5317 -8056,9914,17842,-9,17840,17841,1,0,20,0,1,0,2,2,-9,0,3,8.0543394,8.4684191,0,0,0,-1048.7732,0,2,2,2019,12,0,50,35,1,0,1,7.8091507,7.8091507,0,0,0,0,0,1,1,0,0,0,36.93,56.27,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,729,-180037.97,107769.68,0,0,2323.4919 -8057,9915,17843,17844,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1929541,7.8903975,0,9,5,-112.92448,0,3,2,2019,11,1,20,25,1,1,0,11.921381,11.921381,0,0,0,0,14.5,0,0,0,0,0,57.73,41.12,57.33,53.46,5,1,1,0,0,10,12,5,1,217,1109003.5,1075396,69671.734,0,2441.8345 -8057,9915,17844,17843,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8339148,8.6583996,0,9,-5,99.958809,0,1,1,2019,8,0,40,39,1,0,0,17.140854,17.140854,0,0,0,0,0,0,0,0,2.3194096,0,57.33,53.46,57.73,41.12,8.333333333333334,1,1,0,0,12,12,5,1,217,1109003.5,1075396,69671.734,0,2441.8345 -8058,9916,17845,17846,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.4612341,7.9920955,0,6,2,-20.669689,0,-9,-9,2019,10,0,35,38,1,0,0,12.792413,12.792413,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.26,51.94,6.666666666666667,1,1,0,0,7,9,4,0,534.5,317369.94,31452.797,545399.75,208144.03,2292.8887 -8058,9916,17846,17845,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,7.6132011,7.8530016,0,6,-2,-80.367996,0,1,1,2019,16,4,33,33,1,4,0,7.3704777,7.3704777,0,0,0,0,0,0,0,0,0,0,32.26,51.94,57.16,56.15,3.333333333333333,2,3,0,0,6,9,4,0,534.5,317369.94,31452.797,545399.75,208144.03,2292.8887 -8059,9917,17847,-9,17848,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.588,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,862.5,251789.53,23828.854,0,0,1989.2556 -8059,9917,17848,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,7.8516989,7.8527699,0,0,0,-1090.1852,-9,-9,-9,2019,11,0,25,0,1,0,0,12.231484,12.231484,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,862.5,251789.53,23828.854,0,0,1989.2556 -8060,9918,17849,-9,17850,-9,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-950.51782,-9,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,0,10,2,0,1391.5,-39245.758,0,0,0,1379.3619 -8060,9918,17850,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,6.960989,7.3987489,0,0,0,-1110.9862,0,-9,3,2019,30,11,26,15,1,11,0,4.501008,4.501008,0,0,0,0,0,1,1,0,0,0,12.11,63.22,-9,-9,1.666666666666667,1,1,0,1,8,10,2,0,1391.5,-39245.758,0,0,0,1379.3619 -8061,9919,17851,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,7.9661617,7.6658158,0,0,-1067.5385,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.9153371,53,44,-9,-9,8,1,1,0,0,0,12,4,1,2046,302591.56,0,152889.64,0,2450.8845 -8062,9920,17852,17853,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.2786427,8.2052717,0,3,3,-80.089462,0,-9,-9,2019,10,0,60,38,1,1,0,7.2295752,7.2295752,0,0,0,0,0,0,0,0,0,0,49,58,50.43,53.69,7,4,1,0,0,1,5,5,0,819.5,-151271.45,74416.18,96417.484,93151.891,3819.9341 -8062,9920,17853,17852,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1946554,7.9993567,3.5804861,3,-3,-53.342403,0,1,1,2019,10,0,50,50,1,0,0,7.4862962,7.4862962,0,0,0,0,0,0,0,0,3.7907135,0,50.43,53.69,49,58,8.333333333333334,1,1,0,0,3,5,5,0,819.5,-151271.45,74416.18,96417.484,93151.891,3819.9341 -8063,9921,17854,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.177381,5.6648331,0,0,-949.82013,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,2.4367435,2.9891958,20.904139,0,1,1,0,4.5774846,5.7577729,48.39,16.7,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,253,296003.69,-22428.256,0,0,1212.9025 -8064,9922,17855,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.229248,8.0864067,0,0,0,-1045.0146,0,2,1,2019,12,0,50,45,1,0,0,9.2513685,9.2513685,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,1,9,8,4,0,1303,54015.324,64730.863,0,0,1791.0099 -8065,9923,17856,17857,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,47,0,-95.993141,0,3,3,2019,11,2,0,41,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.08,51.24,61.69,36.54,8.333333333333334,1,1,0,0,6,1,3,1,213,348318.88,179951.39,140324.34,0,2320.2637 -8065,9923,17857,17856,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,7.5162263,7.8564687,4.0047197,47,0,82.187019,0,3,-9,2019,8,0,27,33,1,0,0,11.798827,11.798827,0,0,0,0,7,1,1,0,0,4.1321363,61.69,36.54,45.08,51.24,1.666666666666667,1,1,0,0,9,1,3,1,213,348318.88,179951.39,140324.34,0,2320.2637 -8066,9924,17858,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,8.1655941,8.3039808,0,0,0,-942.56354,-9,-9,-9,2019,12,0,30,0,1,0,0,16.686834,16.686834,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,12,7,4,0,68,1306693.5,265444.94,266550.41,0,1551.8669 -8067,9925,17859,-9,17861,17860,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1081.8257,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,406,-15429.978,0,0,0,0 -8067,9926,17860,17861,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.4279089,8.7695627,0,6,2,7.6962676,0,-9,-9,2019,9,0,43,43,1,0,0,13.826795,13.826795,0,0,0,0,0,1,1,0,0,0,62.49,55.09,50.78,45.45,8.333333333333334,1,1,0,0,11,9,4,1,348.33334,2041567.9,1980285.1,311939.19,133337.27,3075.8806 -8067,9926,17861,17860,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.9676995,7.5455761,0,6,-2,110.05781,0,-9,2,2019,11,0,25,28,1,0,0,12.607483,12.607483,0,0,0,0,0,1,1,0,0,0,50.78,45.45,62.49,55.09,8.333333333333334,1,1,0,0,7,9,4,1,348.33334,2041567.9,1980285.1,311939.19,133337.27,3075.8806 -8067,9926,17862,-9,17861,17860,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-980.31342,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,348.33334,2041567.9,1980285.1,311939.19,133337.27,3075.8806 -8068,9927,17863,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.7934704,6.5789938,0,0,-1009.9667,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,12.286385,0,0,1,1,0,4.3305564,6.7464485,22.53,33.09,-9,-9,5,1,1,0,0,0,6,2,1,274,216273.69,74096.188,66948.664,0,1588.5947 -8069,9928,17864,17865,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,38,-1,-.23574457,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,58.07,46.29,62.49,55.09,8.333333333333334,1,1,0,0,0,7,3,1,467,2633364,486066.94,473528.13,0,1881.9922 -8069,9928,17865,17864,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.3720675,8.2187243,38,1,-5.1616344,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,3.6069701,8.2170553,62.49,55.09,58.07,46.29,8.333333333333334,1,1,0,0,0,7,3,1,467,2633364,486066.94,473528.13,0,1881.9922 -8070,9929,17866,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1051.0559,-9,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.1998551,0,47.52,57.75,-9,-9,6.666666666666667,1,1,0,0,4,8,2,1,820,1006820.1,659812.19,285569.94,0,269.95743 -8071,9930,17867,17868,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.7450361,8.8766499,7.3724222,7,-1,-101.80305,0,-9,-9,2019,10,0,40,38,1,1,0,13.642341,13.642341,0,0,0,0,0,1,1,0,2.9968464,7.7194095,51,48,61.04,39.41,7,1,1,0,0,1,6,5,1,211.5,1468060,515886.28,408029.56,0,3396.9302 -8071,9930,17868,17867,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,6.216568,6.3255553,4.8144331,40,1,-37.820099,0,2,3,2019,9,0,6,14,1,0,0,7.8621426,7.8621426,0,0,0,0,0,1,1,0,0,4.7434349,61.04,39.41,51,48,6.666666666666667,1,1,0,0,9,6,5,1,211.5,1468060,515886.28,408029.56,0,3396.9302 -8071,9931,17869,-9,17868,17867,1,1,35,0,0,0,2,2,-9,0,4,8.4338169,8.622963,0,0,0,-1105.8014,0,3,2,2019,10,0,40,40,1,1,1,9.2875576,9.2875576,0,0,0,0,0,1,1,0,4.9571829,0,50,57,-9,-9,7,1,1,0,0,1,6,4,1,2338,76270.109,-50094.195,0,0,1710.1995 -8072,9932,17870,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-952.62872,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,2,1,1,0,0,0,48.51,51.81,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,365,116071.72,0,268530.47,0,927.44409 -8073,9933,17871,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.0418596,6.4090014,0,0,-1053.2778,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5930748,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,514,551965.63,208565.67,243400.75,0,1258.9833 -8074,9934,17872,17873,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,6.1289926,6.1307559,0,45,-6,14.681877,0,3,2,2019,17,4,23,23,1,4,0,1.9876503,1.9876503,0,0,0,0,0,1,1,0,0,0,35.64,25.97,51.48,46.41,8.333333333333334,1,1,0,0,10,11,2,1,635.5,804298.88,20130.242,390979.25,0,1268.2197 -8074,9934,17873,17872,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.2937918,6.193747,45,6,-11.217945,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.9551525,51.48,46.41,35.64,25.97,8.333333333333334,1,1,0,0,7,11,2,1,635.5,804298.88,20130.242,390979.25,0,1268.2197 -8075,9935,17874,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,7.8447561,8.0086422,0,0,-998.09906,-9,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1417317,8.0719194,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,307,278740.5,108490.41,44683.605,0,2256.5305 -8075,9936,17875,-9,-9,17874,1,1,35,0,0,0,1,1,-9,0,5,7.6288195,7.4010177,0,0,0,-888.42389,-9,-9,1,2019,6,1,25,0,1,1,0,10.977812,10.977812,0,0,0,0,0,1,1,0,3.9182909,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,1,12,3,1,437,-285647.03,-110077.17,0,0,1150.3668 -8076,9937,17876,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.8018923,5.8806753,0,0,-1087.7766,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5510488,5.550797,52.8,53.98,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,2400,344476.56,116245.87,0,0,393.05634 -8076,9938,17877,-9,17876,-9,1,1,27,0,0,0,2,2,-9,0,4,7.762825,7.4473858,0,0,0,-1079.7109,0,2,-9,2019,10,0,40,50,1,1,0,4.3303666,4.3303666,0,0,0,0,0,1,1,0,2.0668566,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,980,446097.78,54894.82,0,0,103.80458 -8076,9939,17878,-9,17876,-9,1,1,23,0,0,0,1,1,-9,0,4,0,5.3248324,5.2446833,0,0,-1047.4867,1,2,2,2019,14,7,0,5,2,7,0,0,0,0,0,0,0,0,1,1,0,5.5948472,0,26.24,66.14,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,849,-8259.5693,0,0,0,-12.474131 -8077,9940,17879,17880,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.898283,7.9629722,0,20,-4,-99.657867,0,-9,-9,2019,8,0,37,42,1,0,0,7.6271768,7.6271768,0,0,0,0,0,1,1,0,0,0,44.09,55.83,38.05,30.52,10,1,1,0,0,6,1,3,0,707,613652.31,351724.91,0,0,2643.7915 -8077,9940,17880,17879,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,4,4,98.44297,0,-9,-9,2019,20,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,30.52,44.09,55.83,5,1,1,0,0,0,1,3,0,707,613652.31,351724.91,0,0,2643.7915 -8078,9941,17881,17882,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.3066916,6.0548391,53,0,-8.4493818,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.1671906,0,0,1,1,0,5.3155303,6.149858,50.24,37.57,57.01,50.75,8.333333333333334,1,1,0,0,0,1,2,1,1244,298502.22,248641.94,122595.16,0,1910.4102 -8078,9941,17882,17881,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.7462826,6.2664042,53,0,114.14684,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5242386,57.01,50.75,50.24,37.57,10,1,1,0,0,0,1,2,1,1244,298502.22,248641.94,122595.16,0,1910.4102 -8079,9942,17883,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.6307192,8.4211102,0,0,-1106.8629,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.5824423,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,2022,1124366,277640.28,265369.72,0,2804.1304 -8080,9943,17884,17885,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.2377415,7.856545,0,10,17,-80.113968,0,-9,-9,2019,6,0,16,17,1,0,0,22.956392,22.956392,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,9,7,5,0,2686,-26649.547,-17905.639,0,0,3177.9473 -8080,9943,17885,17884,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4789906,8.1934261,0,10,-17,-8.8365335,0,2,3,2019,5,0,5,60,1,0,0,115.22352,115.22352,0,0,0,0,0,0,0,0,1.9960929,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,13,7,5,0,2686,-26649.547,-17905.639,0,0,3177.9473 -8081,9944,17886,17887,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6020699,9.9724789,6.4484553,39,-3,-73.574181,0,3,3,2019,6,0,35,30,1,0,0,37.799706,37.799706,0,0,0,0,0,0,0,0,0,6.7399297,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,618,3698031.5,3332675,353680.25,0,6767.7744 -8081,9944,17887,17886,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.0963926,8.5707245,39,3,-32.47834,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1174326,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,6,5,1,618,3698031.5,3332675,353680.25,0,6767.7744 -8082,9945,17888,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,8.0578394,7.9082851,0,0,-1011.7308,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8598404,60.12,54.8,-9,-9,10,1,1,0,0,0,7,4,1,214,546989.38,236317.72,237759.63,0,2020.9235 -8083,9946,17889,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1104.9521,0,3,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,52.98,8.6,-9,-9,1.666666666666667,1,1,0,1,4,2,1,0,777,-210510.86,0,0,0,606.70941 -8084,9947,17890,17891,17892,-9,1,0,57,0,0,0,1,1,-9,0,5,8.3531065,8.4192266,0,33,-1,-200.90207,0,2,2,2019,6,0,40,65,1,0,0,13.356162,13.356162,0,0,0,0,0,0,0,0,2.4291604,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,930.5,823404.13,59354.023,667174.63,59458.59,5517.6611 -8084,9947,17891,17890,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.0268383,9.1502628,0,34,1,-127.29321,0,2,1,2019,7,0,45,47,1,0,0,25.198603,25.198603,0,0,0,0,0,0,0,0,3.0718079,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,9,2,5,1,930.5,823404.13,59354.023,667174.63,59458.59,5517.6611 -8084,9948,17892,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.771,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.4076333,0,52,45,-9,-9,8,4,6,0,0,0,2,1,1,274,-148651.86,0,0,0,-354.05136 -8084,9949,17893,-9,17890,17891,1,0,28,0,0,0,1,1,-9,0,5,8.7732143,8.4534569,0,0,0,-908.50177,0,1,1,2019,7,0,58,50,1,0,1,9.7166033,9.7166033,0,0,0,0,0,0,0,0,2.405165,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,191,433212.81,67828.344,224722,110625.08,2079.0117 -8085,9950,17894,17895,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,0,0,0,5,3,-2.0342557,0,-9,-9,2019,6,0,0,52,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,57.16,56.15,10,1,1,1,0,3,1,2,0,686.25,31508.76,0,0,0,1195.4677 -8085,9950,17895,17894,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.1696124,7.0054278,0,5,-3,-75.399925,0,2,2,2019,5,0,20,18,1,0,0,6.3125625,6.3125625,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.65,56.13,10,1,1,0,0,5,1,2,0,686.25,31508.76,0,0,0,1195.4677 -8085,9950,17896,-9,17895,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1085.7035,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,1,2,0,686.25,31508.76,0,0,0,1195.4677 -8085,9950,17897,-9,17895,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6891,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,686.25,31508.76,0,0,0,1195.4677 -8086,9951,17898,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.6521559,8.5890303,6.5968575,0,0,-960.29041,0,3,3,2019,15,4,44,48,1,4,0,16.024822,16.024822,0,0,0,0,5.48,1,1,0,0,6.6446395,35.93,49.57,-9,-9,5,1,1,0,0,11,2,5,1,416,-48445.316,0,0,0,3075.7498 -8087,9952,17899,-9,17901,17900,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1089.726,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.91,41.74,-9,-9,10,2,3,0,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 -8087,9952,17900,17901,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,20,10,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,59.9,28.94,8,2,3,0,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 -8087,9952,17901,17900,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,20,-10,0,0,2,3,2019,5,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,59.9,28.94,52,55,8.333333333333334,2,3,0,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 -8087,9952,17902,-9,17901,17900,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1058.7289,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,1,0,916.25,-125125.97,5218.7056,0,0,1138.7343 -8088,9953,17903,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.2135,0,1,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,-9,-9,10,1,1,0,0,5,5,1,0,568,-591.5174,0,0,0,1153.7321 -8089,9954,17904,17905,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,8,0,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,52,43.99,49.35,19.8,1.666666666666667,1,1,0,0,0,4,1,1,522,28799.262,0,0,0,1456.842 -8089,9954,17905,17904,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,8,9,0,0,3,2,2019,20,7,0,0,4,7,0,0,0,1,0,45.447983,0,0,1,1,0,0,0,49.35,19.8,52,43.99,1.666666666666667,1,1,0,0,0,4,1,1,522,28799.262,0,0,0,1456.842 -8090,9955,17906,17907,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.4749165,8.2187843,0,7,-2,.72575665,0,3,3,2019,6,0,40,40,1,0,0,10.926356,10.926356,0,0,0,0,0,0,0,0,0,0,53.67,51.01,48.71,51.81,6.666666666666667,1,1,0,0,8,6,5,1,237.5,1042480,198090.16,323073.22,73301.172,4321.0732 -8090,9955,17907,17906,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.9587231,9.2394142,0,7,2,-50.276402,0,3,2,2019,8,0,50,60,1,0,0,19.491688,19.491688,1,0,0,0,0,0,0,0,0,0,48.71,51.81,53.67,51.01,8.333333333333334,1,1,0,0,8,6,5,1,237.5,1042480,198090.16,323073.22,73301.172,4321.0732 -8091,9956,17908,17909,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.3909492,7.706501,9,-2,83.137093,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3439274,55.11,47.63,41.77,49.72,8.333333333333334,1,1,0,0,0,12,2,1,1640,772865.25,103053.82,413361.25,0,2106.5876 -8091,9956,17909,17908,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,9,2,94.016129,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.77,49.72,55.11,47.63,8.333333333333334,1,1,0,0,0,12,2,1,1640,772865.25,103053.82,413361.25,0,2106.5876 -8092,9957,17910,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,7.9641113,8.1264839,0,0,0,-970.87592,0,3,2,2019,8,0,37,37,1,0,0,10.652056,10.652056,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,809,643019.88,490177.41,0,0,1442.9369 -8093,9958,17911,-9,17914,17912,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1032.6945,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,44.61,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 -8093,9958,17912,17914,-9,17916,1,1,49,0,2,0,1,1,-9,0,5,9.1244516,8.8464785,0,19,3,-80.799278,0,3,2,2019,10,0,40,40,1,0,0,19.807802,19.807802,0,0,0,0,2,1,1,0,9.3000412,0,48.84,47.98,46.38,47,8.333333333333334,2,3,0,1,8,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 -8093,9958,17913,-9,17914,17912,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1031.6605,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 -8093,9958,17914,17912,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.7690153,8.8789015,0,19,-3,42.607956,0,3,3,2019,9,0,38,38,1,0,0,19.602871,19.602871,0,0,0,0,0,1,1,0,0,0,46.38,47,48.84,47.98,8.333333333333334,2,3,0,0,9,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 -8093,9958,17915,-9,17914,17912,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.1691,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,577,981356.5,755335.38,568638.81,296059.63,8553.1738 -8093,9959,17916,-9,-9,-9,1,1,86,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1005.0029,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,9,1,1,151,-28497.248,0,0,0,0 -8094,9960,17917,17918,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.4508719,6.7767658,43,1,-48.631016,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6982269,58.47,50.22,52,47,6.666666666666667,1,1,0,0,0,12,3,1,239,517556.94,267210.06,253641.27,0,2254.1826 -8094,9960,17918,17917,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,6.8556433,7.0828047,10,-1,-77.256805,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1781223,6.9054823,52,47,58.47,50.22,7,1,1,0,0,0,12,3,1,239,517556.94,267210.06,253641.27,0,2254.1826 -8095,9961,17919,17920,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.5474124,5.451622,29,4,134.34872,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4748178,55.96,49.93,52.79,36.91,8.333333333333334,1,1,0,0,0,11,2,1,1109,143037.38,145428.92,0,0,1407.7395 -8095,9961,17920,17919,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.2145648,5.1879339,29,-4,18.370659,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,3.3871276,0,0,1,1,0,0,5.0860524,52.79,36.91,55.96,49.93,6.666666666666667,1,1,0,0,9,11,2,1,1109,143037.38,145428.92,0,0,1407.7395 -8096,9962,17921,17922,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,4.5781293,4.9390349,54,1,-28.313906,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.85969818,5.1420279,54.1,59.11,46.39,60.99,8.333333333333334,1,1,0,0,0,5,2,1,486,151246.19,115787.91,0,0,1923.8723 -8096,9962,17922,17921,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.2520537,6.6189904,54,-1,-89.89669,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7612047,6.328989,46.39,60.99,54.1,59.11,1.666666666666667,1,1,0,0,1,5,2,1,486,151246.19,115787.91,0,0,1923.8723 -8097,9963,17923,17924,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.7628479,8.4482269,0,8,-1,-60.950092,0,3,3,2019,7,0,46,46,1,0,0,10.351772,10.351772,0,0,0,0,0,0,0,0,5.9939647,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,9,4,5,0,343.5,811803.63,371412.63,374232.06,244231.17,4684.5488 -8097,9963,17924,17923,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,8.4970942,8.4298887,0,8,1,-124.86865,0,3,3,2019,11,0,40,40,1,0,0,15.671229,15.671229,0,0,0,0,0,0,0,0,4.5501823,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,4,4,5,0,343.5,811803.63,371412.63,374232.06,244231.17,4684.5488 -8098,9964,17925,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.983851,8.0445318,0,0,0,-963.12994,0,2,3,2019,22,10,43,0,1,10,0,8.7868176,8.7868176,0,0,0,0,0,1,1,0,0,0,42.61,44.11,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,783.66669,14218.397,18657.354,103259.59,77224.961,2441.7522 -8098,9964,17926,-9,17925,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.61896,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,783.66669,14218.397,18657.354,103259.59,77224.961,2441.7522 -8098,9964,17927,-9,17925,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.16357,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,783.66669,14218.397,18657.354,103259.59,77224.961,2441.7522 -8099,9965,17928,17929,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,34,-13,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.29,52.11,8.333333333333334,1,1,0,0,3,2,1,1,224.5,-329529.56,27300.113,41020.781,0,187.61594 -8099,9965,17929,17928,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,34,13,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.1232431,0,60.29,52.11,60.29,52.11,8.333333333333334,1,1,0,0,0,2,1,1,224.5,-329529.56,27300.113,41020.781,0,187.61594 -8100,9966,17930,17931,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,8,1,0,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,48.61,41.07,7,1,1,0,0,0,13,2,0,1318.5,-31449.438,0,110644.73,0,1559.2236 -8100,9966,17931,17930,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,8,-1,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.61,41.07,51,46,6.666666666666667,1,1,0,0,3,13,2,0,1318.5,-31449.438,0,110644.73,0,1559.2236 -8101,9967,17932,17933,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,6.9531217,6.7979808,0,26,-4,-141.48143,-9,2,2,2019,8,0,50,0,1,0,0,1.7243388,1.7243388,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.02,56.42,8.333333333333334,2,3,0,0,8,8,5,1,414,5827147,3976609,724107.63,0,3815.0317 -8101,9967,17933,17932,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,9.2635822,9.2162991,0,26,4,-1.6633954,-9,-9,-9,2019,2,0,40,0,1,0,0,32.840626,32.840626,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,8.333333333333334,2,3,0,0,6,8,5,1,414,5827147,3976609,724107.63,0,3815.0317 -8101,9968,17934,-9,17932,17933,1,0,22,0,0,0,1,1,-9,0,3,7.8414435,7.7169132,0,0,0,-1074.8328,-9,2,2,2019,9,0,42,0,1,0,1,7.2494698,7.2494698,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,1,8,3,1,390,492176.94,0,0,0,1416.7819 -8101,9969,17935,-9,17932,17933,1,0,25,0,0,0,1,1,-9,0,3,8.6377344,8.8290234,0,0,0,-968.22797,-9,2,2,2019,7,0,53,0,1,0,1,15.09405,15.09405,0,0,0,0,0,0,0,0,1.7727757,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,252,-206951.33,60845.629,0,0,1908.6377 -8102,9970,17936,17937,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,6.5015764,6.7884412,53,-1,-6.296268,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.58324921,6.8605952,62.39,56.71,54.67,43.45,10,1,1,0,0,5,5,2,1,639,433150.69,147519.81,163005.31,0,2030.9783 -8102,9970,17937,17936,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.605824,5.8353267,53,1,-121.96531,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7317824,54.67,43.45,62.39,56.71,8.333333333333334,1,1,0,0,0,5,2,1,639,433150.69,147519.81,163005.31,0,2030.9783 -8103,9971,17938,17939,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.8416252,8.8714476,0,5,-2,-28.656071,0,-9,-9,2019,12,0,48,42,1,0,0,16.48991,16.48991,0,0,0,0,0,0,0,0,4.6946874,0,49.04,55.86,54.2,57.49,8.333333333333334,1,1,0,0,5,7,5,1,365,-151119,13284.696,0,0,5983.792 -8103,9971,17939,17938,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.2503605,9.054204,0,5,2,49.128468,0,-9,-9,2019,11,0,48,48,1,0,0,14.522223,14.522223,0,0,0,0,0,0,0,0,5.5374155,0,54.2,57.49,49.04,55.86,8.333333333333334,2,3,0,0,10,7,5,1,365,-151119,13284.696,0,0,5983.792 -8104,9972,17940,17941,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,7,-7,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,95.957237,0,0,1,1,0,0,0,35.55,50.24,62.49,55.09,6.666666666666667,3,4,0,1,0,8,1,0,1132.5,528158.75,0,359135.59,0,515.60425 -8104,9972,17941,17940,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,66,7,0,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,35.55,50.24,8.333333333333334,3,4,0,0,0,8,1,0,1132.5,528158.75,0,359135.59,0,515.60425 -8104,9973,17942,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-977.58246,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.09,56.75,-9,-9,6.666666666666667,3,4,1,0,1,8,1,0,621,-181749.08,0,0,0,0 -8105,9974,17943,-9,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,7.5197463,7.8490214,0,0,0,-912.1778,0,3,3,2019,6,0,15,16,1,0,0,16.708618,16.708618,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,0,3,4,0,0,6,5,2,0,498,19237.195,0,0,0,1908.4666 -8105,9974,17944,-9,-9,17943,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9546,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,5,2,0,498,19237.195,0,0,0,1908.4666 -8105,9974,17945,-9,-9,17943,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.03259,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,5,2,0,498,19237.195,0,0,0,1908.4666 -8105,9974,17946,-9,-9,17943,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.9576,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,5,2,0,498,19237.195,0,0,0,1908.4666 -8105,9975,17947,-9,-9,17943,1,0,22,0,3,0,2,2,1,0,5,7.367528,7.2570744,0,0,0,-1008.5299,-9,3,1,2019,4,0,18,0,1,0,1,9.2631569,9.2631569,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,1,5,3,0,671,232246.39,97811.969,0,0,1127.5898 -8105,9976,17948,-9,-9,17943,1,0,21,0,3,0,2,2,1,0,5,7.9311557,7.6228986,0,0,0,-903.87366,-9,-9,1,2019,5,0,40,0,1,0,1,10.858218,10.858218,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,5,4,0,148,-88226.125,0,0,0,1379.0475 -8105,9977,17949,-9,-9,17943,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-865.81433,-9,-9,1,2019,4,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.08,48.06,-9,-9,10,3,4,0,0,0,5,1,0,394,0,0,0,0,0 -8106,9978,17950,17951,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,9.0367508,8.7698774,4.8915648,19,-10,-89.875153,0,2,2,2019,12,1,41,41,1,1,0,29.418768,29.418768,0,0,0,0,0,1,1,0,0,5.5847425,46.93,26.05,60.12,54.8,3.333333333333333,1,1,0,0,11,7,5,1,213.5,924671.13,566687.88,511333.25,0,3302.9692 -8106,9978,17951,17950,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,19,10,-12.433764,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,46.93,26.05,8.333333333333334,1,1,0,0,10,7,5,1,213.5,924671.13,566687.88,511333.25,0,3302.9692 -8107,9979,17952,-9,17953,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.53308,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,1199,-89426.406,20662.301,0,0,1780.1963 -8107,9979,17953,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.5070004,7.2593274,0,0,0,-1101.9917,0,-9,-9,2019,12,1,24,28,1,1,0,7.5906429,7.5906429,0,0,0,0,0,1,1,0,0,0,37.53,58.25,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,1199,-89426.406,20662.301,0,0,1780.1963 -8108,9980,17954,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.5517573,7.8470778,6.0509057,0,0,-1041.0988,0,2,2,2019,22,8,28,27,1,8,0,8.0712938,8.0712938,0,0,0,0,71.5,1,1,0,6.1369328,0,25.44,65.40000000000001,-9,-9,1.666666666666667,1,1,0,0,9,12,3,0,162,558506.56,0,0,0,1460.8629 -8109,9981,17955,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3841333,8.0532246,0,0,0,-1075.0157,0,-9,3,2019,9,1,38,40,1,1,0,11.217216,11.217216,0,0,0,0,0,0,0,0,0,0,31.56,43.62,-9,-9,5,3,4,0,0,8,8,4,1,688,940908.88,150017.14,0,0,934.20184 -8109,9982,17956,-9,17955,-9,1,1,34,0,0,0,2,2,-9,0,4,8.7517118,8.5447378,0,0,0,-942.08557,0,1,-9,2019,10,0,40,36,1,1,1,17.72274,17.72274,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,5,1,421,21921.525,38265.355,0,0,1862.2455 -8109,9983,17957,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.4388046,8.7401609,0,0,0,-1033.286,-9,-9,-9,2019,7,0,60,0,1,0,0,10.346394,10.346394,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,221,37407.73,0,0,0,2512.1492 -8110,9984,17958,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.7184901,7.8245144,0,0,-999.78345,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,.69281,0,25.180475,0,1,1,0,2.7422981,7.546526,59.79,18.14,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,194,564611.19,295290.88,364656.16,0,3200.2646 -8111,9985,17959,17960,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4939709,7.5546613,32,3,60.144302,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.5792036,7.3956914,44.44,51.2,59.68,48.41,8.333333333333334,1,1,0,0,8,5,4,1,879.5,1401562.8,1175596.1,97500.32,0,5426.7041 -8111,9985,17960,17959,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.1049747,8.7767925,32,-3,8.4807005,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1565423,8.555397,59.68,48.41,44.44,51.2,8.333333333333334,1,1,0,0,6,5,4,1,879.5,1401562.8,1175596.1,97500.32,0,5426.7041 -8112,9986,17961,-9,17965,17962,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1095.8712,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 -8112,9986,17962,17965,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.7881556,9.7227287,0,11,0,-52.779076,0,2,-9,2019,12,2,42,45,1,2,0,48.298115,48.298115,0,0,0,0,0,0,0,0,4.4982285,0,43.12,56.93,33.31,61.94,8.333333333333334,1,1,0,0,13,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 -8112,9986,17963,-9,17965,17962,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1089.0272,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 -8112,9986,17964,-9,17965,17962,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.1036,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 -8112,9986,17965,17962,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.3275328,7.3961854,0,11,0,-103.15031,0,2,2,2019,17,6,29,27,1,6,0,5.4125199,5.4125199,0,0,0,0,0,0,0,0,4.4463177,0,33.31,61.94,43.12,56.93,8.333333333333334,1,1,0,0,5,10,5,1,596,2335760.5,638474,1787805.1,793979.06,5679.998 -8113,9987,17966,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.4029284,7.2593665,0,0,-1000.166,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,29.997993,0,0,1,1,0,4.0546064,7.0510106,52.3,18.32,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,580,12732.348,332619.28,0,0,989.23157 -8114,9988,17967,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.9608483,7.7458363,0,0,-989.84436,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,.69809866,0,1,1,0,2.8309464,7.7453771,59.15,49.67,-9,-9,10,1,1,0,0,4,1,4,1,284,375826.56,420504.16,131473.25,0,2488.1365 -8115,9989,17968,17969,-9,-9,1,0,56,0,1,0,3,3,-9,0,4,0,0,0,4,-2,-58.434784,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55,53,8,2,3,0,0,0,2,2,1,1168,242110.81,-63184.938,186773.58,157285.72,1564.1464 -8115,9989,17969,17968,-9,-9,1,1,58,0,1,0,3,3,-9,0,4,7.7778382,7.6496677,0,4,2,-24.476637,0,-9,-9,2019,8,0,40,30,1,0,0,6.0084367,6.0084367,0,0,0,0,0,1,1,0,0,0,55,53,52,53,8,2,3,0,0,1,2,2,1,1168,242110.81,-63184.938,186773.58,157285.72,1564.1464 -8115,9990,17970,-9,17971,17972,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.8419,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,666.66669,-130472.91,0,0,0,1290.7487 -8115,9990,17971,17972,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,.062493458,.27781785,0,9,1,-39.568512,0,-9,-9,2019,18,6,18,30,1,6,0,.00099821575,.00099821575,0,0,0,0,7,1,1,0,0,0,41.31,59.79,41.99,37.6,10,2,3,0,0,8,2,3,1,666.66669,-130472.91,0,0,0,1290.7487 -8115,9990,17972,17971,17968,17969,1,1,34,0,1,0,2,2,-9,0,3,7.6093993,7.8848381,0,7,-1,19.998589,0,3,3,2019,15,5,40,45,1,5,0,7.5834327,7.5834327,0,0,0,0,2,1,1,0,.16750962,0,41.99,37.6,41.31,59.79,8.333333333333334,2,3,0,0,8,2,3,1,666.66669,-130472.91,0,0,0,1290.7487 -8115,9991,17973,-9,17968,17969,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-911.44574,-9,3,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,-9,-9,10,4,2,0,0,0,2,1,1,607,-63068.539,0,0,0,404.21021 -8116,9992,17974,-9,-9,-9,1,0,51,1,1,0,2,2,-9,0,5,7.6537013,7.8878508,6.6044073,0,0,-984.26721,0,3,3,2019,20,8,25,27,1,8,0,8.5177402,8.5177402,0,0,0,0,7,1,0,1,6.8505459,0,38.05,63.64,-9,-9,3.333333333333333,1,1,0,1,8,9,3,0,548,284579.78,121742.73,229917.95,0,1259.8226 -8116,9993,17975,-9,17974,-9,1,0,26,1,1,0,2,2,-9,0,4,7.9487925,8.0544615,0,0,0,-919.12909,0,2,-9,2019,6,0,43,42,1,0,1,10.000332,10.000332,0,0,0,0,0,1,0,1,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,300,-44817.438,41032.258,0,0,1709.5596 -8116,9993,17976,-9,17975,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-847.1817,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,0,300,-44817.438,41032.258,0,0,1709.5596 -8116,9994,17977,-9,17974,-9,1,1,25,1,1,0,2,2,-9,1,4,0,0,0,0,0,-989.2533,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,2.9803033,0,48,59,-9,-9,7,1,1,0,0,0,9,1,0,3047,178717.11,0,0,0,849.44702 -8117,9995,17978,-9,17981,17980,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.21436,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 -8117,9995,17979,-9,17981,17980,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7294,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 -8117,9995,17980,17981,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,4.5214849,4.7012987,0,8,-3,-2.9942362,0,3,1,2019,12,0,14,20,1,0,0,.86652613,.86652613,0,0,0,0,74.5,1,1,0,0,0,50.03,52.62,26.36,57.88,8.333333333333334,1,1,0,0,10,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 -8117,9995,17981,17980,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,9.023386,9.0919609,0,8,3,-54.150227,0,2,3,2019,18,8,43,42,1,8,0,24.970186,24.970186,0,0,0,0,83,1,1,0,0,0,26.36,57.88,50.03,52.62,8.333333333333334,1,1,0,0,10,9,4,1,376.5,88899.047,146867.66,292451,202234.88,3865.2178 -8118,9996,17982,17983,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,8.1831961,8.239028,5,6,12.836432,0,2,3,2019,12,2,0,40,4,2,0,0,0,0,0,0,0,0,1,1,0,0,8.1439829,44.92,57.6,55.19,54.26,8.333333333333334,1,1,0,0,6,7,4,1,696,220371.7,231965.23,0,0,2726.6719 -8118,9996,17983,17982,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,7.7143393,7.5428863,5,-6,-60.97691,0,-9,-9,2019,10,1,0,36,4,1,0,0,0,0,0,0,0,14.5,1,1,0,2.655467,7.7166271,55.19,54.26,44.92,57.6,10,3,4,0,0,6,7,4,1,696,220371.7,231965.23,0,0,2726.6719 -8118,9997,17984,-9,17983,17982,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-966.02295,0,3,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,10,1,1,0,0,4,7,1,1,501,60746.781,0,0,0,1385.152 -8119,9998,17985,-9,17987,17986,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-961.61664,-9,3,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.12,39.31,-9,-9,10,1,1,0,0,0,5,3,0,752.66669,46391.023,65591.938,0,0,2411.4172 -8119,9998,17986,17987,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,7.9846702,7.842741,0,24,0,-60.97113,0,2,2,2019,11,0,40,40,1,0,0,8.7181635,8.7181635,0,0,0,0,2,1,1,0,0,0,52.01,48.98,48.91,39.24,3.333333333333333,1,1,0,0,9,5,3,0,752.66669,46391.023,65591.938,0,0,2411.4172 -8119,9998,17987,17986,-9,-9,1,0,45,0,2,0,3,3,-9,0,2,8.1359777,8.2115784,0,7,0,48.358234,0,-9,-9,2019,7,1,37,37,1,1,0,8.8083525,8.8083525,0,0,0,0,2,1,1,0,0,0,48.91,39.24,52.01,48.98,6.666666666666667,1,1,0,0,10,5,3,0,752.66669,46391.023,65591.938,0,0,2411.4172 -8119,9999,17988,-9,17987,17986,1,0,21,0,2,0,2,2,-9,0,5,7.4255672,7.4391799,0,0,0,-948.31494,0,3,2,2019,6,0,36,42,1,0,1,7.162446,7.162446,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,5,3,0,3026,246236.52,0,0,0,696.65161 -8120,10000,17989,17990,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0456991,8.4385395,0,15,0,-100.73151,0,2,2,2019,7,0,39,38,1,0,0,19.521122,19.521122,0,0,0,0,0,0,0,0,3.0628695,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,11,6,5,1,834,633549.75,403805.25,113528.03,0,4283.1978 -8120,10000,17990,17989,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.3129883,8.4467211,0,15,0,102.54723,0,2,2,2019,7,0,37,37,1,0,0,10.947271,10.947271,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,6,5,1,834,633549.75,403805.25,113528.03,0,4283.1978 -8121,10001,17991,-9,17994,17992,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.45746,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 -8121,10001,17992,17994,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,8.3298674,8.0924091,0,16,1,-9.6754026,0,2,2,2019,12,3,45,46,1,3,0,11.813811,11.813811,0,0,0,0,0,1,1,0,0,0,47.77,41.01,57.06,57.76,6.666666666666667,1,1,0,0,9,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 -8121,10001,17993,-9,17994,17992,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1069.1654,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 -8121,10001,17994,17992,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,7.7745066,7.8735323,0,16,-1,-8.6821938,0,2,2,2019,9,0,20,20,1,0,0,13.189301,13.189301,0,0,0,1.0865674,0,1,1,0,0,0,57.06,57.76,47.77,41.01,8.333333333333334,1,1,0,0,9,8,3,1,644.75,211253.14,0,231272.16,84188.773,3040.9185 -8122,10002,17995,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-910.97504,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.95,47.88,-9,-9,0,1,1,0,0,0,2,1,0,789,169966.11,0,0,0,1076.0137 -8123,10003,17996,17997,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.4308548,5.4816108,1,-3,-8.8802557,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5480635,5.4259977,58.72,51.29,60.12,54.8,8.333333333333334,1,1,0,0,10,10,3,1,763,790003,261813.91,306291.69,0,2166.751 -8123,10003,17997,17996,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.4357467,7.8796148,1,3,-13.168678,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6105022,60.12,54.8,58.72,51.29,8.333333333333334,1,1,0,0,0,10,3,1,763,790003,261813.91,306291.69,0,2166.751 -8124,10004,17998,17999,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,8.6869707,8.6021385,7,2,111.85932,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2690544,9.1272173,60.02,56.42,54.63,58.83,10,1,1,0,0,0,10,5,1,500,1966077.6,860220.25,695059.38,0,5752.5225 -8124,10004,17999,17998,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,7.1759605,6.9397645,7,-2,74.570129,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9625525,7.2479038,54.63,58.83,60.02,56.42,10,1,1,0,0,2,10,5,1,500,1966077.6,860220.25,695059.38,0,5752.5225 -8125,10005,18000,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1005.6325,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,26.82,28.3,-9,-9,5,1,1,0,0,0,1,1,0,113,-39114.496,0,0,0,1795.7495 -8126,10006,18001,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.3170476,6.4163151,0,0,-911.41351,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.94037867,6.5495362,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,850,303171.19,-20067.713,0,0,1398.2811 -8127,10007,18002,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,5.1812043,4.9407296,0,0,-1086.8092,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4558811,49.93,42.87,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,845,437944.22,0,270941.56,0,333.24997 -8128,10008,18003,18004,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.6396408,6.6739702,6,-3,-29.672739,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.456594,6.78125,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,3,12,2,1,867,391147.72,211068.63,200613.38,0,872.57831 -8128,10008,18004,18003,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.6243453,5.5474992,6,3,39.007824,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3427629,60.12,54.8,57.06,57.76,10,1,1,0,0,1,12,2,1,867,391147.72,211068.63,200613.38,0,872.57831 -8129,10009,18005,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.3353405,8.1144533,0,0,0,-1001.7697,0,-9,2,2019,11,0,40,45,1,0,0,11.585273,11.585273,0,0,0,0,2,0,0,0,0,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,2414,-396547.16,-74698.813,0,0,1848.9717 -8130,10010,18006,18007,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.8828001,6.9193501,10,-4,-46.801483,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5886369,55.76,52.64,54.61,49.13,8.333333333333334,1,1,0,0,7,6,4,1,813,1422078.1,995003.19,529677.75,124415.13,3193.623 -8130,10010,18007,18006,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.0931044,8.2765932,46,4,-25.206015,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6150732,8.1451788,54.61,49.13,55.76,52.64,8.333333333333334,1,1,0,0,4,6,4,1,813,1422078.1,995003.19,529677.75,124415.13,3193.623 -8131,10011,18008,18009,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6917419,8.4783077,4.6241055,6,-5,.657152,0,3,2,2019,8,0,50,50,1,0,0,9.0962963,9.0962963,0,0,0,0,0,0,0,0,1.6530169,5.1978559,58.47,50.22,48.82,20.07,8.333333333333334,1,1,0,0,7,12,4,1,733,540071.06,362747.06,116084.08,14316.965,2086.7512 -8131,10011,18009,18008,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,4.6951885,4.4072065,6,5,18.52397,0,3,3,2019,16,4,0,30,4,4,0,0,0,0,0,0,0,0,0,0,0,0,4.8212571,48.82,20.07,58.47,50.22,8.333333333333334,1,1,0,0,7,12,4,1,733,540071.06,362747.06,116084.08,14316.965,2086.7512 -8132,10012,18010,18011,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.0492811,8.0422974,0,7,11,119.90449,0,3,2,2019,7,0,38,38,1,0,0,8.7314062,8.7314062,0,0,0,0,0,0,0,0,2.7856026,0,55.53,51.55,49.93,20.52,8.333333333333334,1,1,0,0,8,5,4,1,798.5,883912.38,591385,93836.844,34172.602,2977.6802 -8132,10012,18011,18010,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.2151804,8.3557177,0,7,-11,127.78774,0,2,2,2019,20,7,42,40,1,7,0,11.464376,11.464376,0,0,0,0,0,0,0,0,5.2225733,0,49.93,20.52,55.53,51.55,6.666666666666667,1,1,0,0,8,5,4,1,798.5,883912.38,591385,93836.844,34172.602,2977.6802 -8133,10013,18012,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.672925,8.6875582,0,0,0,-899.69318,0,-9,2,2019,12,0,40,40,1,0,0,15.330044,15.330044,0,0,0,0,0,0,0,0,3.6871343,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,592,1049139.8,960260,105164.6,15653.801,2334.1282 -8134,10014,18013,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,5.7048836,5.5667896,0,0,0,-1007.372,0,3,-9,2019,14,5,10,8,1,5,0,3.9828126,3.9828126,0,0,0,0,0,1,0,1,0,0,35.44,44.74,-9,-9,6.666666666666667,1,1,0,1,4,9,2,0,1221.5,174778.09,-22076.867,0,0,1077.9615 -8134,10014,18014,-9,18013,-9,1,1,17,0,0,1,2,0,0,0,3,0,5.1562119,5.35638,0,0,-975.66852,-9,2,-9,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,2,1,0,1,5.0575538,0,39.41,47.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1221.5,174778.09,-22076.867,0,0,1077.9615 -8135,10015,18015,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,2,6.8411117,6.8284931,0,0,0,-1058.8782,0,3,3,2019,12,0,16,0,1,0,0,7.556654,7.556654,0,0,0,0,0,1,0,1,0,0,51.25,48.45,-9,-9,3.333333333333333,4,2,0,1,4,2,2,0,466,89527.43,0,0,0,846.99103 -8136,10016,18016,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.822114,8.8535166,0,0,0,-1060.9875,0,3,3,2019,8,0,32,36,1,0,0,31.28727,31.28727,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,7,1,5,1,461,1040075.3,353786.94,281364.47,0,2470.2495 -8137,10017,18017,18018,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.2515297,8.4283543,5.8022819,7,12,-18.957386,-9,2,2,2019,13,1,36,0,1,1,0,13.556988,13.556988,0,0,0,0,0,1,1,0,7.2570815,0,54.1,59.11,52,54.51,8.333333333333334,1,1,0,0,11,2,5,1,2507,191013.34,-261.60254,246947.69,191202.64,4560.3062 -8137,10017,18018,18017,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.8398523,8.9960976,0,7,-12,9.7636795,0,-9,-9,2019,6,0,40,37,1,0,0,14.818241,14.818241,0,0,0,0,0,1,1,0,3.5101566,0,52,54.51,54.1,59.11,6.666666666666667,1,1,0,0,6,2,5,1,2507,191013.34,-261.60254,246947.69,191202.64,4560.3062 -8137,10018,18019,-9,18017,18018,1,0,19,0,1,0,2,2,-9,0,4,7.3646836,7.5911803,0,0,0,-883.92554,0,2,2,2019,22,10,40,22,1,10,1,4.6169558,4.6169558,0,0,0,0,0,1,1,0,0,0,28.86,44.62,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,187,-43827.387,3730.7512,0,0,1338.8132 -8138,10019,18020,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,8.2618008,7.8353534,0,0,0,-1055.895,0,2,2,2019,13,3,45,0,1,3,0,6.7894258,6.7894258,0,0,0,0,0,1,1,0,0,0,37.91,45.93,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,455,66655.383,110079.37,0,0,1750.1829 -8139,10020,18021,-9,-9,-9,1,0,48,0,3,0,2,2,-9,1,3,6.4878297,6.5919423,0,0,0,-986.70746,-9,2,1,2019,14,4,8,0,1,4,0,8.9805851,8.9805851,0,0,0,0,7,1,1,0,3.7270463,0,43.12,58.55,-9,-9,5,1,1,0,0,6,10,2,1,267,240321.72,0,0,0,2024.7273 -8139,10020,18022,-9,18021,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.1377,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,267,240321.72,0,0,0,2024.7273 -8140,10021,18023,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.1666903,7.0926614,0,0,-1040.4209,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7215843,7.6102228,57.76,48.98,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,327,275789.34,310413.34,0,0,1532.4662 -8141,10022,18024,18025,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-4,-85.892105,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,124.39126,0,0,1,1,0,0,0,52,45,57.06,57.76,8,1,1,0,0,0,12,3,1,878.5,1280523.5,270346.94,416249.25,0,3278.5847 -8141,10022,18025,18024,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,7.6892786,7.5073867,58,4,19.200245,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.5391855,7.5090404,57.06,57.76,52,45,8.333333333333334,1,1,0,0,0,12,3,1,878.5,1280523.5,270346.94,416249.25,0,3278.5847 -8142,10023,18026,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,1,0,6.3759332,6.2867174,0,0,-909.07269,0,3,3,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,6.4490976,31.75,19.7,-9,-9,6.666666666666667,3,4,0,1,0,6,2,0,478,0,0,0,0,2381.3733 -8143,10024,18027,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-970.73425,-9,2,3,2019,9,0,0,0,4,0,0,0,0,1,5.5335584,3.963294,43.930428,0,1,1,0,0,0,55.45,9.790000000000001,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,635,75979.945,0,0,0,1339.9696 -8144,10025,18028,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,4.0943961,4.2547474,0,0,-965.49292,-9,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3625479,3.8809395,58.31,42.52,-9,-9,6.666666666666667,1,1,0,0,3,11,2,1,785,-51059.301,74756.258,0,0,710.23547 -8145,10026,18029,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.97087,8.7764149,0,9,-3,55.507145,0,1,1,2019,5,0,42,38,1,0,0,15.539447,15.539447,0,0,0,0,2,0,0,0,4.7690825,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,1463,-181805.58,-60328.055,0,0,2643.5618 -8145,10027,18030,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.1210847,6.8351488,0,9,3,-2.663939,0,2,2,2019,7,0,24,20,1,0,0,5.3771949,5.3771949,0,0,0,0,2,0,0,0,1.2798402,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,726,1217698.9,514253.97,167144.86,0,619.52106 -8146,10028,18031,-9,18033,18032,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1086.407,-9,2,3,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.52988,0,60.25,47.79,-9,-9,10,1,1,0,0,0,6,5,1,373.66666,659261.81,45417.031,260286.53,115624.99,3893.9304 -8146,10028,18032,18033,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.7854195,8.9649515,0,8,7,-25.599203,0,2,3,2019,1,0,49,50,1,0,0,16.45491,16.45491,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,9,6,5,1,373.66666,659261.81,45417.031,260286.53,115624.99,3893.9304 -8146,10028,18033,18032,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.6614542,8.054183,0,8,-7,-29.995037,0,2,3,2019,7,0,40,35,1,0,0,6.4868817,6.4868817,0,0,0,0,0,1,1,0,2.4670827,0,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,9,6,5,1,373.66666,659261.81,45417.031,260286.53,115624.99,3893.9304 -8146,10029,18034,-9,18033,18032,1,1,22,0,1,0,2,2,-9,0,4,7.8671165,7.7234254,0,0,0,-1058.8971,0,2,3,2019,11,1,43,43,1,1,1,7.3149095,7.3149095,0,0,0,0,0,1,1,0,4.2909031,0,33.12,57.95,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,250,77195.359,0,0,0,1584.1895 -8146,10030,18035,-9,18033,18032,1,0,20,0,1,0,2,2,-9,0,5,7.5219417,7.5087142,0,0,0,-906.435,0,2,3,2019,4,0,35,8,1,0,1,6.7905269,6.7905269,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,3,6,3,1,833,-190160.09,35951.508,0,0,695.69849 -8147,10031,18036,-9,18037,18038,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.9409,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,1106.3334,312430.41,35806.543,188003.67,76639.422,4137.5571 -8147,10031,18037,18038,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.5948439,8.2696161,0,19,1,-64.567635,0,2,2,2019,10,0,42,40,1,0,0,13.687049,13.687049,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,1,5,1,1106.3334,312430.41,35806.543,188003.67,76639.422,4137.5571 -8147,10031,18038,18037,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.6500711,8.9822617,0,19,-1,-101.68887,0,2,1,2019,6,0,76,41,1,0,0,13.194799,13.194799,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,10,1,5,1,1106.3334,312430.41,35806.543,188003.67,76639.422,4137.5571 -8148,10032,18039,18040,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.6521378,7.4938693,48,-3,-5.4068475,0,3,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.8891191,7.4103346,50.52,47.59,50.51,32.45,8.333333333333334,1,1,0,0,6,6,3,1,606,1338685.4,339862.31,314805.56,0,1999.8767 -8148,10032,18040,18039,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,0,0,48,3,-58.609406,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9370079,0,50.51,32.45,50.52,47.59,8.333333333333334,1,1,0,0,4,6,3,1,606,1338685.4,339862.31,314805.56,0,1999.8767 -8149,10033,18041,18042,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.02,20.92,57.59,30.59,6.666666666666667,2,3,0,1,0,4,1,1,1029.5,-96850.992,0,0,0,2449.3247 -8149,10033,18042,18041,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.59,30.59,49.02,20.92,6.666666666666667,2,3,0,0,0,4,1,1,1029.5,-96850.992,0,0,0,2449.3247 -8149,10034,18043,-9,18042,18041,1,0,25,0,0,1,1,0,0,0,4,0,0,0,0,0,-932.63953,-9,3,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,6.666666666666667,2,3,0,0,6,4,1,1,542,13919.098,0,0,0,0 -8149,10035,18044,-9,18042,18041,1,0,23,0,0,0,1,1,1,0,2,8.0611076,7.9294009,0,0,0,-1046.7902,-9,3,3,2019,12,1,38,0,1,1,0,6.8607802,6.8607802,0,0,0,0,0,1,1,0,0,0,38.75,55.66,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,686,-294119.91,0,0,0,1435.9595 -8149,10036,18045,-9,18042,18041,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1147.162,-9,3,3,2019,25,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,-9,-9,3.333333333333333,2,3,0,0,6,4,1,1,146,297022.47,0,0,0,0 -8150,10037,18046,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-946.74335,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,11.71,50.62,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,164,-67094.219,0,0,0,998.08289 -8151,10038,18047,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.3505368,7.5234666,0,0,-1097.486,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4476585,7.5208368,61.68,28.84,-9,-9,10,1,1,0,0,0,2,3,1,500,572847.94,152766.14,431439.19,0,1224.4598 -8152,10039,18048,18051,-9,-9,1,1,33,1,3,0,1,1,-9,0,4,0,0,0,3,-5,107.21592,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,57,49,56,7,2,3,1,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 -8152,10039,18049,-9,18051,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.15088,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 -8152,10039,18050,-9,18051,18048,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.2291,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 -8152,10039,18051,18048,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,6.9901547,7.2715192,0,3,5,29.242867,0,3,3,2019,11,0,24,24,1,1,0,5.9231234,5.9231234,0,0,0,0,0,1,0,1,0,0,49,56,50,57,7,2,3,0,0,4,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 -8152,10039,18052,-9,18051,18048,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-947.3808,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,568.59998,-103958.58,55316.805,0,0,2375.0557 -8152,10040,18053,-9,18051,18048,1,1,19,1,3,0,2,2,-9,0,5,0,0,0,0,0,-999.95935,1,3,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,45.64,46.83,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,561,0,0,0,0,97.934029 -8153,10041,18054,18055,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,2,-7,-123.07856,1,-9,-9,2019,23,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,12.79,67.41,35.75,59.47,3.333333333333333,1,1,0,1,0,4,3,1,1350,-122072.84,6390.1929,0,0,1336.2394 -8153,10041,18055,18054,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9928775,7.858099,0,2,7,-106.49608,0,2,3,2019,13,3,45,40,1,3,0,6.1908135,6.1908135,0,0,0,0,0,0,0,0,0,0,35.75,59.47,12.79,67.41,1.666666666666667,1,1,0,0,4,4,3,1,1350,-122072.84,6390.1929,0,0,1336.2394 -8154,10042,18056,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,2,7.181303,7.7627749,7.1823769,0,0,-1002.6738,0,3,3,2019,9,1,21,21,1,1,0,8.7029953,8.7029953,0,0,0,0,0,1,1,0,7.1900272,0,61.1,19.62,-9,-9,5,2,3,0,0,7,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 -8154,10042,18057,-9,18056,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.37732,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 -8154,10042,18058,-9,18056,-9,1,0,17,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1099.6852,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.0999877,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,1,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 -8154,10042,18059,-9,18056,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.66437,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 -8154,10042,18060,-9,18056,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.58795,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,2,1,476.20001,206883.7,51485.727,94463.781,68314.438,4629.0161 -8155,10043,18061,18062,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,0,0,2,3,-150.55272,0,-9,-9,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,16.26,49.48,46.53,8.333333333333334,1,1,1,1,4,4,3,1,477,516791.94,23905.076,109859.38,0,585.19446 -8155,10043,18062,18061,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.3508806,7.4674568,5.1297455,2,-3,46.810654,0,-9,-9,2019,6,0,30,31,1,0,0,6.7233357,6.7233357,0,0,0,0,0,1,1,0,5.4432344,5.0909157,49.48,46.53,59.07,16.26,10,1,1,0,0,8,4,3,1,477,516791.94,23905.076,109859.38,0,585.19446 -8156,10044,18063,-9,-9,18066,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.0712,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 -8156,10044,18064,-9,-9,18066,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.22351,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 -8156,10044,18065,-9,-9,18066,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.5155,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 -8156,10044,18066,-9,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.4248161,8.4182739,0,0,0,-1060.6425,0,2,2,2019,12,0,38,38,1,0,0,13.523824,13.523824,0,0,0,0,0,1,1,0,7.8755832,0,41.68,49.81,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,548.5,54750.266,-18138.936,113262.51,30480.389,3206.2593 -8156,10045,18067,-9,-9,18066,1,1,18,0,3,0,2,2,-9,0,4,7.0262909,7.1576171,0,0,0,-985.64465,0,-9,2,2019,1,0,58,0,1,0,1,2.6890342,2.6890342,0,0,0,0,0,1,1,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,252,-440570.44,-40900.449,0,0,364.27142 -8157,10046,18068,18069,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.4680834,8.8024693,0,10,1,-2.4283161,-9,2,2,2019,8,0,38,0,1,0,0,16.690517,16.690517,0,0,0,0,27,1,1,0,0,0,55.28,37.42,21.8,23.99,6.666666666666667,1,1,0,0,9,12,4,0,623,606136.13,280916.59,156939.44,146066.08,4402.2749 -8157,10046,18069,18068,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,7.8733177,7.9592376,10,-1,11.741948,-9,2,2,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,7.7649236,0,21.8,23.99,55.28,37.42,0,1,1,0,1,0,12,4,0,623,606136.13,280916.59,156939.44,146066.08,4402.2749 -8157,10047,18070,-9,18069,18068,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1034.2557,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,3,12,2,0,297,130841.74,0,0,0,738.22363 -8158,10048,18071,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1059.9009,0,3,2,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.01,54.29,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,810,-159527.33,0,0,0,1204.7913 -8159,10049,18072,18073,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,9.1063251,9.0896902,35,1,2.6633241,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6215954,7.1916065,57.57,49.69,58.32,50.22,8.333333333333334,1,1,0,0,0,12,5,1,762.5,1186129.8,888602.38,164351.66,10266.981,3543.9414 -8159,10049,18073,18072,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,35,-1,4.8645167,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,2.7929595,2,1,1,0,0,0,58.32,50.22,57.57,49.69,8.333333333333334,1,1,0,0,0,12,5,1,762.5,1186129.8,888602.38,164351.66,10266.981,3543.9414 -8160,10050,18074,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1025.1429,0,1,1,2019,9,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6247215,0,56.58,47.39,-9,-9,8.333333333333334,1,1,0,0,12,2,1,1,313,0,0,0,0,2063.3267 -8161,10051,18075,-9,18077,18076,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.1001,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,1,0,2983.6667,-106078.98,0,0,0,1240.1542 -8161,10051,18076,18077,-9,-9,1,1,24,0,1,0,2,2,-9,0,4,0,0,0,5,1,0,0,1,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,45.73,18.5,7,1,1,0,0,0,5,1,0,2983.6667,-106078.98,0,0,0,1240.1542 -8161,10051,18077,18076,-9,-9,1,0,23,0,1,0,2,2,-9,0,1,0,0,0,5,-1,0,0,-9,-9,2019,17,6,0,42,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,45.73,18.5,49,58,5,1,1,0,0,2,5,1,0,2983.6667,-106078.98,0,0,0,1240.1542 -8162,10052,18078,18080,-9,-9,1,1,33,0,3,0,2,2,-9,0,5,8.3677301,8.4355888,0,5,3,-68.81498,0,-9,-9,2019,8,0,62,60,1,0,0,7.0932584,7.0932584,0,0,0,0,0,1,1,0,0,0,60.02,56.42,57.09,46.7,6.666666666666667,1,1,0,0,7,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 -8162,10052,18079,-9,18080,18078,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.61682,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 -8162,10052,18080,18078,-9,-9,1,0,30,0,3,0,2,2,1,0,3,8.181612,8.4043293,0,5,-3,29.211491,-9,-9,-9,2019,7,0,43,0,1,0,0,10.142094,10.142094,0,0,0,0,0,1,1,0,0,0,57.09,46.7,60.02,56.42,8.333333333333334,1,1,0,0,3,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 -8162,10052,18081,-9,18080,18078,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.38416,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,0,233.5,-19840.801,19358.84,91964.797,82960.555,3900.5874 -8163,10053,18082,18083,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.1664534,8.2569094,4.9067893,9,-3,-55.021873,0,3,3,2019,7,0,51,52,1,0,0,6.5363932,6.5363932,0,0,0,0,0,1,1,0,5.4510288,5.2097802,61.12,51.57,35.67,64.46000000000001,8.333333333333334,1,1,0,0,10,7,4,1,875.5,1543513,915126,592799,0,2913.249 -8163,10053,18083,18082,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.7142067,6.8331752,9,3,58.995998,0,2,1,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,6.3948698,6.4239392,35.67,64.46000000000001,61.12,51.57,3.333333333333333,1,1,0,0,10,7,4,1,875.5,1543513,915126,592799,0,2913.249 -8164,10054,18084,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.1868,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,46,-9,-9,10,1,1,1,0,0,1,2,0,959,369398.66,0,0,0,821.3559 -8165,10055,18085,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.0449038,7.9374037,0,0,0,-1105.0477,0,-9,-9,2019,12,1,40,55,1,1,0,8.927433,8.927433,0,0,0,0,0,0,0,0,0,0,45.19,48.64,-9,-9,5,1,1,0,0,3,9,4,0,462,722323.31,118630.93,442700.03,0,1222.9919 -8166,10056,18086,18087,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.2116094,6.3603606,42,7,177.49042,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9881263,6.2266426,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,5,5,3,1,890.5,895094.94,727287,128300.42,-5102.2554,1949.2244 -8166,10056,18087,18086,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.1854086,7.373744,43,-7,103.67004,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6980662,7.1758265,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,8,5,3,1,890.5,895094.94,727287,128300.42,-5102.2554,1949.2244 -8167,10057,18088,-9,18090,18091,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.96942,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 -8167,10057,18089,-9,18090,18091,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.0567,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 -8167,10057,18090,18091,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,10,1,-5.0983357,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,3.8828728,0,36.91,53.54,43.94,58,6.666666666666667,1,1,0,0,8,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 -8167,10057,18091,18090,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.2047005,8.8860817,0,10,-1,112.00942,0,2,2,2019,18,6,43,80,1,6,0,25.19385,25.19385,0,0,0,0,0,0,0,0,2.0909591,0,43.94,58,36.91,53.54,6.666666666666667,1,1,0,0,12,9,5,1,765.25,491542.78,142210.05,321847.09,0,4153.4375 -8168,10058,18092,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.0011334,5.9814663,0,0,-1041.3647,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5839176,5.7052279,57.57,49.69,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,322,104207.52,102837.82,0,0,970.75165 -8169,10059,18093,18094,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,5.4969535,5.8647771,2,5,-101.8308,0,-9,-9,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,5.9594536,41.89,17.4,49,48,3.333333333333333,1,1,0,0,0,2,4,1,309.5,590307,259383.94,210089.59,75623.234,2249.6433 -8169,10059,18094,18093,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.5215254,8.5642338,0,2,-5,34.949406,0,-9,-9,2019,11,0,21,16,1,2,0,19.361769,19.361769,0,0,0,0,0,1,1,0,5.0246983,0,49,48,41.89,17.4,7,4,2,0,0,1,2,4,1,309.5,590307,259383.94,210089.59,75623.234,2249.6433 -8170,10060,18095,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.734684,5.8238263,0,0,-957.00592,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5027561,5.6827292,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2917,457805.03,134807.27,112028.41,0,950.8269 -8171,10061,18096,18097,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,5,-1,-130.10577,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.2542086,0,51,46,41.87,39.29,7,1,1,0,0,3,4,2,1,322,329158.72,295242.09,117374.19,0,4575.5635 -8171,10061,18097,18096,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.3613467,7.4270391,5,1,13.654425,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.9558153,7.3889585,41.87,39.29,51,46,10,1,1,0,0,0,4,2,1,322,329158.72,295242.09,117374.19,0,4575.5635 -8171,10062,18098,-9,18096,18097,1,1,39,0,0,0,3,3,-9,0,4,9.463788,9.9153872,0,0,0,-1018.2094,0,3,3,2019,9,0,35,30,1,1,0,64.911644,64.911644,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,7,1,1,0,0,6,4,5,1,489,463019.5,0,120870.16,85490.805,7318.9185 -8172,10063,18099,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.3093328,7.4450812,0,0,0,-848.44183,0,2,2,2019,8,0,35,32,1,0,0,5.8913774,5.8913774,0,0,0,.8140462,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,2306,-131065.63,187090.09,0,0,531.7049 -8173,10064,18100,-9,18102,18101,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-958.27661,-9,3,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 -8173,10064,18101,18102,-9,-9,1,1,47,0,3,0,3,3,-9,0,4,8.2494087,8.0345163,0,15,5,85.156479,0,-9,-9,2019,9,0,40,38,1,1,0,10.550352,10.550352,0,0,0,0,0,1,1,0,0,0,52,55,49,55,8,1,1,0,0,11,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 -8173,10064,18102,18101,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,15,-5,47.898819,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,4,5,0,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 -8173,10064,18103,-9,18102,18101,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.4832,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 -8173,10064,18104,-9,18102,18101,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.7473,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,556,85169.961,-7033.3423,150731.33,37698.695,1968.679 -8174,10065,18105,18106,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.6263103,8.7661562,0,9,3,188.31883,0,-9,-9,2019,14,2,39,37,1,2,0,16.788101,16.788101,0,0,0,0,0,1,1,0,0,0,35.86,64.55,48.87,58.55,6.666666666666667,1,1,0,0,10,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 -8174,10065,18106,18105,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.1754045,8.3421831,0,9,-3,10.941433,0,2,2,2019,11,0,26,47,1,0,0,19.816149,19.816149,0,0,0,0,0,1,1,0,7.7168522,0,48.87,58.55,35.86,64.55,8.333333333333334,1,1,0,0,10,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 -8174,10065,18107,-9,18106,18105,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.1782,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 -8174,10065,18108,-9,18106,18105,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.87976,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,2403,505564.31,154111.84,338300.31,101705.41,5119.3662 -8175,10066,18109,18110,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.0579257,6.907268,56,-3,-8.2056847,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.900218,7.0517759,32.78,54.18,53,46,5,1,1,0,0,12,4,3,1,326.5,497748.09,17372.102,157442.16,0,2291.4336 -8175,10066,18110,18109,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.3209753,7.3298006,56,3,-.86616659,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.526186,53,46,32.78,54.18,7,1,1,0,0,0,4,3,1,326.5,497748.09,17372.102,157442.16,0,2291.4336 -8176,10067,18111,18112,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.322711,5.9398022,9,3,29.484976,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5779505,6.446291,55.93,52.62,57.06,57.76,8.333333333333334,1,1,0,0,2,9,4,1,376,2506813.5,1636371.5,686436.06,110356.58,4716.2021 -8176,10067,18112,18111,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,8.4984665,8.5437803,9,-3,-57.941761,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6276975,8.8246241,57.06,57.76,55.93,52.62,8.333333333333334,1,1,0,0,8,9,4,1,376,2506813.5,1636371.5,686436.06,110356.58,4716.2021 -8177,10068,18113,18115,-9,-9,1,1,29,0,1,0,2,2,-9,0,4,8.3769684,8.3092718,0,8,1,48.518463,0,3,2,2019,11,0,45,50,1,0,0,10.333995,10.333995,0,0,0,0,0,1,1,0,0,0,52.8,53.98,55.95,47.23,8.333333333333334,1,1,0,0,10,5,4,1,307,146617,-86238.852,75904.469,26932.537,2118.7083 -8177,10068,18114,-9,18115,18113,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1167.7321,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,307,146617,-86238.852,75904.469,26932.537,2118.7083 -8177,10068,18115,18113,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.533741,7.4018402,0,8,-1,-110.72378,0,2,2,2019,7,0,30,25,1,0,0,7.2880082,7.2880082,0,0,0,0,0,1,1,0,2.05422,0,55.95,47.23,52.8,53.98,8.333333333333334,1,1,0,0,10,5,4,1,307,146617,-86238.852,75904.469,26932.537,2118.7083 -8178,10069,18116,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1009.6172,-9,-9,-9,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,2.8797576,0,27.99,54.97,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,717,375418.97,0,0,0,44.615509 -8178,10070,18117,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1046.3734,-9,-9,-9,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,3,4,1,0,335,0,0,0,0,0 -8179,10071,18118,18119,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1529379,7.0861826,0,8,9,-74.397842,0,3,-9,2019,8,0,27,28,1,0,0,5.3609653,5.3609653,0,0,0,0,7,0,0,0,0,0,50.2,55.41,52,54.51,6.666666666666667,4,2,0,0,8,4,4,1,648,258728.98,167392.66,118895.66,18204.309,2448.2944 -8179,10071,18119,18118,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3123655,8.5652304,0,8,0,18.949574,0,3,2,2019,10,0,48,46,1,0,0,13.733103,13.733103,0,0,0,0,0,0,0,0,0,0,52,54.51,50.2,55.41,8.333333333333334,1,1,0,0,9,4,4,1,648,258728.98,167392.66,118895.66,18204.309,2448.2944 -8180,10072,18120,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,5.2672844,5.441812,0,0,-1104.5282,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,7.7836275,0,62.932499,7,1,1,0,3.9000123,5.2194376,50.64,21.27,-9,-9,10,1,1,0,0,0,5,2,0,877,317668.75,67744.781,127928.84,0,1526.1494 -8181,10073,18121,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-981.67487,0,2,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.31,31.67,-9,-9,0,1,1,1,1,4,4,1,0,3018,-57101.875,60266.953,0,0,604.55359 -8181,10074,18122,-9,18121,-9,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-1084.0815,-9,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,1,1,0,4,1,0,301,265583.91,0,0,0,0 -8182,10075,18123,18124,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.2675157,7.310051,59,-1,-14.083821,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,5.48,1,1,0,0,7.3150096,50.68,17.76,52.8,19.65,5,1,1,0,0,0,5,4,1,189,1615765.5,108143.85,468545,0,4197.5986 -8182,10075,18124,18123,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,8.139533,8.6324186,59,1,152.20523,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.0341253,52.8,19.65,50.68,17.76,10,1,1,0,0,0,5,4,1,189,1615765.5,108143.85,468545,0,4197.5986 -8183,10076,18125,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-928.56647,0,1,2,2019,21,9,0,30,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,28.41,64.05,-9,-9,5,1,1,0,0,5,9,1,0,390,0,0,0,0,64.406372 -8183,10077,18126,-9,18125,-9,1,1,26,0,0,0,2,2,-9,0,3,6.7653036,7.1999002,0,0,0,-914.61578,0,2,-9,2019,6,0,20,25,1,0,1,4.6800184,4.6800184,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,2,9,2,0,674,93410.883,-90220.633,0,0,686.9151 -8184,10078,18127,18128,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,7.052866,7.0088887,33,-2,197.95782,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.074053,6.9161644,52.11,53.15,51.47,53.17,6.666666666666667,1,1,0,0,0,6,3,1,1299,1037702.1,594553.63,417053.75,0,976.02832 -8184,10078,18128,18127,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,6.802115,7.0176873,33,2,-114.86491,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.9465024,7.2660904,51.47,53.17,52.11,53.15,8.333333333333334,1,1,0,0,0,6,3,1,1299,1037702.1,594553.63,417053.75,0,976.02832 -8185,10079,18129,18130,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5381675,7.2816319,0,31,0,181.79056,0,3,3,2019,11,0,20,20,1,0,0,12.7609,12.7609,0,0,0,0,0,0,0,0,6.9879556,0,47.09,58.02,49,50,8.333333333333334,1,1,0,0,10,5,4,1,1401,-282553.78,28799.186,123440.94,31589.375,2112.4331 -8185,10079,18130,18129,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.9631996,7.9049034,0,10,0,130.11333,0,-9,-9,2019,11,0,50,50,1,1,0,6.2889342,6.2889342,0,0,0,0,0,0,0,0,0,0,49,50,47.09,58.02,7,1,1,0,0,1,5,4,1,1401,-282553.78,28799.186,123440.94,31589.375,2112.4331 -8186,10080,18131,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.9512277,4.9292207,0,0,-946.73492,0,3,2,2019,12,1,0,16,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.7813869,42.22,48.53,-9,-9,8.333333333333334,1,1,0,0,8,11,2,0,221,51390.973,0,0,0,950.90118 -8187,10081,18132,18133,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,5.662313,5.3928976,6,-7,-33.121101,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4089231,5.3450718,62.39,56.71,53.93,52.08,10,1,1,0,0,0,13,2,1,445.5,390034.31,136922.11,71876.547,0,1446.1937 -8187,10081,18133,18132,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,6,7,75.373985,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,4.9113483,0,0,1,1,0,0,0,53.93,52.08,62.39,56.71,8.333333333333334,1,1,0,0,9,13,2,1,445.5,390034.31,136922.11,71876.547,0,1446.1937 -8188,10082,18134,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.6162257,7.443944,0,0,0,-1175.8951,-9,1,2,2019,12,3,41,0,1,3,0,7.1271353,7.1271353,0,0,0,0,0,0,0,0,.79953486,0,42.86,53.58,-9,-9,1.666666666666667,2,3,0,0,8,5,3,1,1146,144976.72,0,0,0,1377.8002 -8189,10083,18135,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.7579494,7.0177722,0,0,-950.41211,0,-9,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.9103327,7.0165596,33.67,28.36,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,526,594370.25,26482.43,86479.828,0,3198.4053 -8190,10084,18136,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9449162,7.783534,0,0,0,-975.16522,0,-9,-9,2019,9,0,60,72,1,0,0,4.9250798,4.9250798,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,8.333333333333334,1,1,0,0,11,2,4,0,2076,318593.59,383393.94,140442.7,40228.543,1295.2329 -8191,10085,18137,18138,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.040452,8.888689,0,5,3,67.310471,0,2,2,2019,9,0,35,37,1,0,0,32.492817,32.492817,0,0,0,0,0,0,0,0,7.1426678,0,54.79,55.86,33.66,56.04,8.333333333333334,1,1,0,0,10,6,5,1,1234,650527.56,310726.75,249775.47,0,3211.1179 -8191,10085,18138,18137,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,4.4495635,4.1493983,0,5,-3,-70.334892,0,-9,-9,2019,21,7,3,2,1,7,0,3.1655109,3.1655109,0,0,0,0,0,0,0,0,6.8671913,0,33.66,56.04,54.79,55.86,6.666666666666667,1,1,0,0,11,6,5,1,1234,650527.56,310726.75,249775.47,0,3211.1179 -8192,10086,18139,18140,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.1783662,6.3978553,10,12,3.2859137,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.6337311,6.3540602,43.18,47.7,26.32,53.06,6.666666666666667,1,1,0,0,8,6,3,1,782,-59834.199,146238.44,108578.6,0,1869.6931 -8192,10086,18140,18139,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.2586336,7.9662576,0,10,-12,-89.586021,0,-9,-9,2019,15,4,38,38,1,4,0,9.0545864,9.0545864,0,0,0,0,0,1,1,0,4.3383727,0,26.32,53.06,43.18,47.7,3.333333333333333,1,1,0,0,12,6,3,1,782,-59834.199,146238.44,108578.6,0,1869.6931 -8193,10087,18141,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.1298413,6.7749958,0,0,-998.11316,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1858835,6.7328157,57.14,48.13,-9,-9,1.666666666666667,1,1,0,0,10,2,2,1,1882,390896.66,173586.95,230905.02,0,751.84869 -8194,10088,18142,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,7.7421813,7.406548,0,0,-1036.5974,0,3,2,2019,11,3,0,0,4,3,0,0,0,1,3.5726616,8.5675297,0,0,1,1,0,5.5525255,7.5073009,46.25,42.37,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1130,1126466.5,181254.59,496804.59,0,1721.0996 -8195,10089,18143,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,6.6766624,7.2716994,0,0,-1017.3611,0,2,1,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.0026479,7.0810709,49.96,50.49,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,1564,344994.25,17285.197,0,0,1238.1549 -8196,10090,18144,18145,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.8744655,6.4765658,40,-1,38.932056,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,.33902603,6.8337374,46.08,57.2,54.96,53.17,5,1,1,0,0,9,2,4,1,264.5,163915.55,0,50024.016,0,2302.9424 -8196,10090,18145,18144,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6987047,8.4866743,0,40,1,65.027252,0,3,3,2019,9,0,40,43,1,0,0,17.673515,17.673515,0,0,0,0,0,0,0,0,.42030033,0,54.96,53.17,46.08,57.2,5,1,1,0,0,9,2,4,1,264.5,163915.55,0,50024.016,0,2302.9424 -8197,10091,18146,18148,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,8.4551992,7.9029112,0,8,3,30.9506,0,-9,-9,2019,16,5,40,40,1,5,0,11.484848,11.484848,0,0,0,0,0,1,1,0,1.2316626,0,46.92,60.71,20.49,34.18,5,1,1,0,0,11,10,3,1,482,-140812.8,40672.055,0,0,1845.7568 -8197,10091,18147,-9,18148,18146,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.40967,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,482,-140812.8,40672.055,0,0,1845.7568 -8197,10091,18148,18146,-9,-9,1,0,25,0,1,0,2,2,-9,0,1,5.3825049,5.7899127,0,8,-3,-54.791454,0,-9,-9,2019,21,8,8,20,1,8,0,3.0259628,3.0259628,0,0,0,0,0,1,1,0,1.2110656,0,20.49,34.18,46.92,60.71,0,1,1,0,0,2,10,3,1,482,-140812.8,40672.055,0,0,1845.7568 -8198,10092,18149,18150,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.9792509,8.748662,0,19,2,107.98203,0,2,2,2019,12,0,40,35,1,0,0,20.099136,20.099136,0,0,0,0,0,1,1,0,0,0,52.82,53.97,33.16,63.52,5,1,1,0,0,9,8,5,1,419,794930.94,90392.672,740270.38,394337.16,4661.6147 -8198,10092,18150,18149,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,7.7775517,8.3624763,0,7,-2,-60.490131,0,-9,-9,2019,18,8,7,40,1,8,0,49.38287,49.38287,0,0,0,0,0,1,1,0,0,0,33.16,63.52,52.82,53.97,8.333333333333334,1,1,0,0,3,8,5,1,419,794930.94,90392.672,740270.38,394337.16,4661.6147 -8199,10093,18151,18152,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,30,-3,0,-9,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.19,35.47,43.2,59.97,0,2,3,0,0,0,6,1,0,822.5,-53610.609,0,0,0,2389.603 -8199,10093,18152,18151,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,0,0,31,3,0,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,43.2,59.97,21.19,35.47,1.666666666666667,1,1,0,0,0,6,1,0,822.5,-53610.609,0,0,0,2389.603 -8200,10094,18153,18154,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.5740156,8.903451,0,25,-2,50.468628,0,2,1,2019,7,0,42,40,1,0,0,22.499067,22.499067,0,0,0,0,0,0,0,0,0,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,9,9,5,1,676.5,1486556.3,1391097.5,312622.63,78787.344,5119.8423 -8200,10094,18154,18153,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.899991,8.3679647,0,24,2,-8.3812227,0,2,2,2019,7,0,40,40,1,0,0,19.643734,19.643734,0,0,0,0,2,0,0,0,2.1886911,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,676.5,1486556.3,1391097.5,312622.63,78787.344,5119.8423 -8200,10095,18155,-9,18154,18153,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-987.74628,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,993,103059.82,0,0,0,0 -8201,10096,18156,18157,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.5930715,7.5692787,0,1,-2,65.892578,-9,-9,-9,2019,7,0,37,0,1,0,0,5.1807685,5.1807685,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.61,61.54,8.333333333333334,1,1,0,0,8,1,4,1,517.33331,-49495.543,86789.844,0,0,3071.4507 -8201,10096,18157,18156,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,8.7483292,8.5599785,0,1,2,14.627761,-9,3,3,2019,10,0,38,0,1,0,0,14.61578,14.61578,0,0,0,0,0,1,1,0,0,0,51.61,61.54,51.83,57.2,8.333333333333334,1,1,0,0,7,1,4,1,517.33331,-49495.543,86789.844,0,0,3071.4507 -8201,10096,18158,-9,18156,18157,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.39331,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,517.33331,-49495.543,86789.844,0,0,3071.4507 -8202,10097,18159,18160,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.9097824,8.8812313,0,20,-3,-123.74509,0,3,3,2019,12,1,38,38,1,1,0,23.142681,23.142681,0,0,0,0,2,1,1,0,7.5253825,0,47.24,53.95,58.15,52.91,8.333333333333334,2,3,0,0,10,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 -8202,10097,18160,18159,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.9002552,8.8088675,0,20,3,37.872005,0,3,2,2019,8,0,38,40,1,0,0,20.353729,20.353729,0,0,0,0,0,1,1,0,7.836997,0,58.15,52.91,47.24,53.95,8.333333333333334,2,3,0,0,9,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 -8202,10097,18161,-9,18159,18160,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.03412,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 -8202,10097,18162,-9,18159,18160,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.73218,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,5,1,243,1729397.3,1075481.6,1235154.8,340100.91,7054.1411 -8202,10098,18163,-9,18159,18160,1,1,18,0,2,0,2,2,1,0,5,6.8745542,7.0185728,0,0,0,-918.36273,-9,1,1,2019,6,0,18,0,1,0,1,5.8496132,5.8496132,0,0,0,0,7,1,1,0,1.6656982,0,61.01,50.48,-9,-9,10,2,3,0,0,1,9,2,1,65,140387.31,0,0,0,855.03674 -8203,10099,18164,18165,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,33,0,0,0,3,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,44.25,23.22,39,28.19,3.333333333333333,1,1,0,0,0,13,2,0,1170.5,60541.836,87775.844,0,0,1875.3337 -8203,10099,18165,18164,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,37,0,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,39,28.19,44.25,23.22,3.333333333333333,1,1,0,0,0,13,2,0,1170.5,60541.836,87775.844,0,0,1875.3337 -8204,10100,18166,-9,-9,-9,1,0,60,0,0,0,1,1,-9,1,1,0,0,0,0,0,-988.55194,0,2,2,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,.69597954,0,33.56,17.19,-9,-9,8.333333333333334,4,2,0,0,0,4,1,0,1039,574619.75,253191.39,290316.94,36149.086,1964.8453 -8205,10101,18167,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.1021581,7.1312637,0,0,0,-1148.979,0,-9,-9,2019,7,0,20,43,1,0,0,5.8896379,5.8896379,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,10,1,1,0,0,3,11,2,0,129,122311.5,0,0,0,855.14984 -8205,10102,18168,18169,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,3,5.1466551,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,5.8269439,0,0,1,1,0,0,0,56.67,26.59,39.69,62.39,8.333333333333334,1,1,0,0,0,11,2,0,2476,245878.81,85436.563,0,0,1744.25 -8205,10102,18169,18168,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.990675,6.9009552,8,-3,62.955479,0,3,3,2019,6,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0351319,39.69,62.39,56.67,26.59,0,1,1,0,0,9,11,2,0,2476,245878.81,85436.563,0,0,1744.25 -8206,10103,18170,-9,18171,18172,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1072.2462,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 -8206,10103,18171,18172,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,6.7264786,6.6513124,0,20,0,-1.7464191,0,3,2,2019,12,0,16,18,1,0,0,6.0211582,6.0211582,0,0,0,0,42,1,1,0,0,0,48.69,45.7,29.18,50.81,6.666666666666667,2,3,0,1,12,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 -8206,10103,18172,18171,-9,-9,1,1,47,0,1,0,1,1,-9,1,2,7.9525414,7.8712444,0,20,9,21.15181,0,3,3,2019,24,12,35,35,1,12,0,6.8811083,6.8811083,0,0,0,.83684868,0,1,1,0,0,0,29.18,50.81,48.69,45.7,3.333333333333333,2,3,0,1,10,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 -8206,10103,18173,-9,18171,18172,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0027,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 -8206,10103,18174,-9,18171,18172,1,1,17,0,1,1,2,0,0,0,5,0,4.4094462,4.2633443,0,0,-956.1745,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,4.8076844,0,57.06,57.76,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,408.79999,127502.33,16095.942,113574.33,41874.625,3157.7649 -8207,10104,18175,18176,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,7.4004469,7.155992,9,-1,70.977509,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,1.4149023,0,1,1,0,5.7285004,7.4351006,54.2,57.49,56.59,49.89,8.333333333333334,1,1,0,0,0,2,3,1,266,1041417.8,615111.63,258688.97,0,3663.8882 -8207,10104,18176,18175,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.3159008,7.2714682,9,1,-48.788143,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.035337,7.725553,56.59,49.89,54.2,57.49,8.333333333333334,1,1,0,0,0,2,3,1,266,1041417.8,615111.63,258688.97,0,3663.8882 -8208,10105,18177,18178,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,8,2,22.811636,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.15,26.03,59.53,56.44,8.333333333333334,1,1,0,0,0,4,4,1,909.5,1901159.6,803906.06,412280.63,0,3525.2227 -8208,10105,18178,18177,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.2263784,8.4283438,7.194356,8,-2,-72.856743,0,3,3,2019,7,0,48,40,1,0,0,12.741871,12.741871,1,0,0,0,2,1,1,0,3.9471712,7.0031533,59.53,56.44,46.15,26.03,8.333333333333334,1,1,0,0,9,4,4,1,909.5,1901159.6,803906.06,412280.63,0,3525.2227 -8209,10106,18179,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6611671,8.6491795,0,0,0,-939.15558,0,2,3,2019,22,10,42,37,1,10,0,15.121284,15.121284,0,0,0,0,0,0,0,0,0,0,36.99,50.67,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,988,49814.887,-32806.98,0,0,1594.1061 -8210,10107,18180,18183,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,9.3071127,9.0728569,0,8,0,32.928802,0,2,2,2019,12,0,46,48,1,0,0,28.970566,28.970566,0,0,0,0,0,1,1,0,3.18817,0,48.7,56.22,30.14,66.23,6.666666666666667,1,1,0,0,10,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 -8210,10107,18181,-9,18183,18180,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.9613,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 -8210,10107,18182,-9,18183,18180,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.27344,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 -8210,10107,18183,18180,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.2813091,8.3723488,0,8,0,64.943977,0,2,2,2019,15,3,42,21,1,3,0,11.536852,11.536852,0,0,0,0,0,1,1,0,0,0,30.14,66.23,48.7,56.22,8.333333333333334,1,1,0,0,7,9,5,1,501.75,-85530.422,68197.023,0,0,4795.9805 -8211,10108,18184,18185,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,0,0,0,25,-2,-46.956604,0,2,2,2019,11,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,3.320235,0,44.69,49.93,53.54,49.68,8.333333333333334,1,1,0,0,9,7,5,1,278,5525044,2813835,1190614.5,165442.59,11861.349 -8211,10108,18185,18184,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,10.104705,10.069385,0,25,2,-22.625586,0,2,1,2019,7,0,40,45,1,0,0,73.258583,73.258583,0,0,0,0,0,1,1,0,3.7428441,0,53.54,49.68,44.69,49.93,8.333333333333334,4,2,0,0,10,7,5,1,278,5525044,2813835,1190614.5,165442.59,11861.349 -8211,10109,18186,-9,18184,18185,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1044.6237,-9,1,1,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.91,59.07,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,2034,195271.25,0,0,0,0 -8212,10110,18187,18188,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.4743972,7.5081582,5.4286661,39,-3,-2.2617619,0,2,2,2019,7,0,32,32,1,0,0,6.8568082,6.8568082,0,0,0,0,0,0,0,0,6.0736318,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,9,2,4,1,993,625415.25,16446.215,287340.56,0,2602.7896 -8212,10110,18188,18187,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.9491901,7.816946,39,3,60.196289,0,3,2,2019,7,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,2.0522382,7.6037936,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,993,625415.25,16446.215,287340.56,0,2602.7896 -8212,10111,18189,-9,18187,18188,1,1,27,0,0,0,1,1,-9,0,3,7.6838164,8.1389294,0,0,0,-1014.9423,-9,1,1,2019,17,5,35,0,1,5,1,9.9342823,9.9342823,0,0,0,0,0,0,0,0,0,0,41.64,41.69,-9,-9,6.666666666666667,1,1,0,0,1,2,4,1,420,10500.018,0,0,0,729.03699 -8213,10112,18190,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,7.0779209,7.5594387,0,0,0,-972.01508,0,-9,-9,2019,9,0,26,32,1,0,0,6.0295892,6.0295892,0,0,0,0,0,1,1,0,0,0,59.04,54.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,329,513708.38,674.3468,133489.73,0,1460.515 -8214,10113,18191,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,2.8646832,2.6673748,0,0,-982.99249,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,2.9472911,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,2,0,560,93765.211,-33643.074,110593.2,0,698.57513 -8215,10114,18192,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.6490402,8.6927032,0,0,0,-1025.538,0,-9,-9,2019,9,0,32,30,1,1,0,15.487059,15.487059,0,0,0,0,0,0,0,0,6.4631176,0,53,54,-9,-9,8,1,1,0,0,9,13,5,1,512,750495.5,952459.56,185311.95,0,2509.0735 -8216,10115,18193,18194,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,38,-1,0,0,3,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.38,43.19,64.09999999999999,38.1,3.333333333333333,2,3,1,1,0,8,1,1,990,-32016.422,0,0,0,510.01254 -8216,10115,18194,18193,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,38,1,0,0,3,3,2019,9,2,0,16,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,64.09999999999999,38.1,39.38,43.19,10,2,3,0,1,4,8,1,1,990,-32016.422,0,0,0,510.01254 -8216,10116,18195,-9,18193,18194,1,0,30,0,0,0,2,2,-9,0,4,8.2524204,8.2832632,0,0,0,-926.18347,0,3,3,2019,15,3,44,50,1,3,0,9.3457766,9.3457766,0,0,0,0,0,1,1,0,0,0,23.47,63.51,-9,-9,8.333333333333334,2,3,0,1,10,8,4,1,603,-243483.59,-136817.08,0,0,1458.479 -8217,10117,18196,18198,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.4717736,7.6698217,0,3,1,21.804575,0,1,2,2019,24,11,37,37,1,11,0,5.3642755,5.3642755,0,0,0,0,0,1,1,0,0,0,39.74,39.79,46.67,55.57,8.333333333333334,1,1,0,0,5,9,4,1,3083.6667,192266.63,52475.199,319017.88,183475.73,3136.8076 -8217,10117,18197,-9,18196,18198,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.95087,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,4,1,3083.6667,192266.63,52475.199,319017.88,183475.73,3136.8076 -8217,10117,18198,18196,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.4857273,8.8323889,0,3,-1,20.638758,0,1,1,2019,10,0,35,35,1,0,0,16.242744,16.242744,0,0,0,0,0,1,1,0,0,0,46.67,55.57,39.74,39.79,6.666666666666667,2,3,0,0,9,9,4,1,3083.6667,192266.63,52475.199,319017.88,183475.73,3136.8076 -8218,10118,18199,18201,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.6492743,7.6873627,0,13,1,68.059296,0,2,3,2019,9,0,40,50,1,0,0,6.464684,6.464684,0,0,0,0,0,1,1,0,0,0,40.78,40.85,53,55,8.333333333333334,2,3,0,0,2,8,3,1,543,402804.22,9725.3613,404205.16,0,2233.7495 -8218,10118,18200,-9,18199,18201,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1032.8953,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,8,3,1,543,402804.22,9725.3613,404205.16,0,2233.7495 -8218,10118,18201,18199,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,7.4404278,7.7286758,0,9,-1,110.73019,0,-9,-9,2019,9,0,65,40,1,1,0,4.0944896,4.0944896,0,0,0,0,0,1,1,0,4.9848032,0,53,55,40.78,40.85,8,2,3,0,0,1,8,3,1,543,402804.22,9725.3613,404205.16,0,2233.7495 -8218,10119,18202,-9,18199,18201,1,1,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1048.6377,0,2,2,2019,21,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,6.071342,0,51.64,57.24,-9,-9,6.666666666666667,2,3,1,0,0,8,1,1,450,87121.039,0,0,0,398.93192 -8219,10120,18203,-9,-9,18205,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-979.12347,-9,-9,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,2,1,227.33333,-7279.9771,-40826.508,0,0,2375.6704 -8219,10120,18204,-9,-9,18205,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1035.7751,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,8.333333333333334,1,1,0,0,2,10,2,1,227.33333,-7279.9771,-40826.508,0,0,2375.6704 -8219,10120,18205,-9,-9,-9,1,1,42,0,2,0,3,3,-9,0,3,7.5535331,7.4122863,0,0,0,-927.5163,0,3,3,2019,9,0,38,37,1,0,0,5.8752747,5.8752747,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,1,10,10,2,1,227.33333,-7279.9771,-40826.508,0,0,2375.6704 -8220,10121,18206,18207,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.2205982,8.3542843,9,1,-59.889435,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.3185077,8.0629377,51.64,52.04,42.6,61.6,5,1,1,0,0,8,1,5,1,785.5,564597.63,363047.94,491581.38,150050.66,4152.6553 -8220,10121,18207,18206,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,8.0430651,8.7786303,9,-1,57.972233,0,2,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,2.6580403,8.0360785,42.6,61.6,51.64,52.04,3.333333333333333,1,1,0,0,7,1,5,1,785.5,564597.63,363047.94,491581.38,150050.66,4152.6553 -8221,10122,18208,18210,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.1509314,8.2279081,0,15,-15,-44.329063,0,2,2,2019,12,0,35,25,1,0,0,12.67284,12.67284,0,0,0,0,0,1,1,0,0,0,46.4,57.35,54.74,57.22,8.333333333333334,2,3,0,0,12,8,4,1,567.33331,508315.66,282931.75,295994.84,106189.95,2833.1943 -8221,10122,18209,-9,18208,18210,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.77411,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,567.33331,508315.66,282931.75,295994.84,106189.95,2833.1943 -8221,10122,18210,18208,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,7.9352584,8.0262861,0,15,15,-132.66342,0,2,2,2019,3,0,14,30,1,0,0,25.810829,25.810829,0,0,0,0,0,1,1,0,0,0,54.74,57.22,46.4,57.35,8.333333333333334,2,3,0,0,12,8,4,1,567.33331,508315.66,282931.75,295994.84,106189.95,2833.1943 -8222,10123,18211,-9,18213,18212,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-850.86646,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,1514.6666,5636152.5,1003422.6,3629668.8,199365.02,6421.5884 -8222,10123,18212,18213,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.5318079,9.6231012,0,24,1,135.83768,0,2,1,2019,8,0,41,43,1,0,0,36.938148,36.938148,0,0,0,0,0,1,1,0,0,0,60.29,52.11,40.48,62.56,8.333333333333334,1,1,0,0,12,8,5,1,1514.6666,5636152.5,1003422.6,3629668.8,199365.02,6421.5884 -8222,10123,18213,18212,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.4474201,8.7628698,0,24,-1,27.583721,0,2,2,2019,12,0,26,25,1,0,0,24.367701,24.367701,0,0,0,0,0,1,1,0,0,0,40.48,62.56,60.29,52.11,8.333333333333334,1,1,0,0,11,8,5,1,1514.6666,5636152.5,1003422.6,3629668.8,199365.02,6421.5884 -8222,10124,18214,-9,18213,18212,1,0,19,0,1,0,2,2,0,1,3,0,0,0,0,0,-1022.7855,-9,1,1,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,.55299503,0,43.73,55.44,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,62,-51559.039,0,0,0,244.91405 -8223,10125,18215,-9,18216,18217,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.02411,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,825.66669,107806.7,-18562.543,142319.5,120447.88,3229.2002 -8223,10125,18216,18217,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.1748552,8.0772886,5.4075441,5,6,12.458526,0,-9,-9,2019,8,0,30,30,1,0,0,12.753135,12.753135,0,0,0,0,27,1,1,0,5.3856807,0,46.44,59.62,46.76,51.4,6.666666666666667,1,1,0,0,2,10,3,0,825.66669,107806.7,-18562.543,142319.5,120447.88,3229.2002 -8223,10125,18217,18216,-9,-9,1,1,32,0,2,0,2,2,-9,1,3,6.564322,6.486896,0,5,-6,-47.891037,0,-9,-9,2019,11,0,20,15,1,0,0,4.9741058,4.9741058,0,0,0,0,27,1,1,0,0,0,46.76,51.4,46.44,59.62,5,1,1,0,0,4,10,3,0,825.66669,107806.7,-18562.543,142319.5,120447.88,3229.2002 -8224,10126,18218,18219,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.3044577,6.2507753,63,2,-62.91357,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,3.7129581,0,14.5,1,1,0,5.3481736,6.1229906,57.76,54.51,62.22,19.21,8.333333333333334,1,1,0,0,0,2,2,1,744,618159.94,138837.02,284660.41,0,2393.1123 -8224,10126,18219,18218,-9,-9,1,0,85,0,0,0,3,3,-9,0,5,0,0,0,63,-2,38.086845,0,3,2,2019,12,4,0,0,4,4,0,0,0,1,0,6.6995697,0,2,1,1,0,0,0,62.22,19.21,57.76,54.51,8.333333333333334,1,1,0,0,0,2,2,1,744,618159.94,138837.02,284660.41,0,2393.1123 -8225,10127,18220,18222,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.703084,8.5162792,0,5,4,123.54946,0,2,1,2019,6,0,42,50,1,0,0,14.519953,14.519953,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.49,52.77,8.333333333333334,1,1,0,0,6,4,4,1,407.66666,890951.88,825636.75,161556.5,29251.215,3401.3984 -8225,10127,18221,-9,18222,18220,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1046.6971,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,4,4,1,407.66666,890951.88,825636.75,161556.5,29251.215,3401.3984 -8225,10127,18222,18220,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.9760375,7.8358002,0,5,-4,22.789429,0,1,2,2019,10,1,43,37,1,1,0,8.1798229,8.1798229,0,0,0,0,0,1,1,0,0,0,36.49,52.77,57.16,56.15,1.666666666666667,1,1,0,0,6,4,4,1,407.66666,890951.88,825636.75,161556.5,29251.215,3401.3984 -8226,10128,18223,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.3073668,7.5673556,0,0,0,-903.83533,0,1,1,2019,9,0,50,40,1,0,0,3.1793084,3.1793084,0,0,0,0,74.5,1,1,0,0,0,52.54,25.99,-9,-9,3.333333333333333,1,1,0,1,10,10,3,0,234,1112526.8,736233.44,0,0,838.93262 -8226,10129,18224,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1066.3005,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,0,49.87,18.74,-9,-9,5,1,1,0,1,0,10,1,0,640,106783.82,0,127214.92,0,1449.2168 -8227,10130,18225,-9,-9,-9,1,0,58,0,1,0,1,1,-9,0,4,9.2726307,9.0348845,6.0535073,0,0,-894.09186,0,2,2,2019,15,4,52,30,1,4,0,21.69689,21.69689,0,0,0,0,0,1,1,0,7.8011374,0,37.28,54.63,-9,-9,3.333333333333333,1,1,0,0,10,5,5,1,289,901950.81,820869.75,153957.88,60332.719,4484.7603 -8227,10130,18226,-9,18225,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.74402,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,289,901950.81,820869.75,153957.88,60332.719,4484.7603 -8228,10131,18227,-9,18229,18228,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.1681,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,525.66669,817427.81,174266.44,543274.75,0,2374.3442 -8228,10131,18228,18229,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,7.6271677,8.0359621,0,25,12,29.618477,0,2,3,2019,13,1,30,30,1,1,0,7.7946358,7.7946358,0,0,0,0,0,1,1,0,0,0,46,61.6,28.97,59.76,6.666666666666667,1,1,0,0,11,7,4,1,525.66669,817427.81,174266.44,543274.75,0,2374.3442 -8228,10131,18229,18228,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.0305347,7.860013,0,25,-12,56.438805,0,2,-9,2019,21,9,40,39,1,9,0,10.10082,10.10082,0,0,0,0,0,1,1,0,0,0,28.97,59.76,46,61.6,6.666666666666667,1,1,0,1,11,7,4,1,525.66669,817427.81,174266.44,543274.75,0,2374.3442 -8229,10132,18230,18231,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7187672,6.7114525,38,16,63.690536,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4670777,6.8531346,61.27,46.03,49.09,42.51,8.333333333333334,1,1,0,0,0,7,3,1,469.5,769931.13,513138.63,271887.94,0,2051.2129 -8229,10132,18231,18230,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6204624,7.5690751,0,38,-16,-63.840843,0,2,2,2019,10,1,31,31,1,1,0,7.6503959,7.6503959,0,0,0,0,0,1,1,0,0,0,49.09,42.51,61.27,46.03,8.333333333333334,1,1,0,0,8,7,3,1,469.5,769931.13,513138.63,271887.94,0,2051.2129 -8229,10133,18232,-9,18231,18230,1,1,28,0,0,0,2,2,-9,0,4,7.8945584,7.810411,0,0,0,-910.78302,0,2,3,2019,10,0,30,30,1,1,1,8.2277842,8.2277842,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,3,1,169,-21395.881,113717.82,0,0,1375.1019 -8230,10134,18233,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.899374,5.8325791,0,0,-883.96002,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9313111,52,54.51,-9,-9,8.333333333333334,1,1,0,0,7,6,2,1,474,515371.84,226314.56,0,0,1256.868 -8231,10135,18234,-9,18235,18236,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.56287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 -8231,10135,18235,18236,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.5869031,7.724649,0,7,6,-25.101265,0,3,3,2019,14,4,30,30,1,4,0,8.10956,8.10956,0,0,0,0,0,1,1,0,0,0,54.92,26.61,51,56,6.666666666666667,1,1,0,0,9,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 -8231,10135,18236,18235,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.1271677,9.2318764,0,7,-6,44.195,-9,-9,-9,2019,9,0,37,0,1,1,0,19.423138,19.423138,0,0,0,0,0,1,1,0,2.6383343,0,51,56,54.92,26.61,8,1,1,0,0,1,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 -8231,10135,18237,-9,18235,18236,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.85376,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,729.25,110445.28,79888.398,123674.44,120569.78,4195.52 -8232,10136,18238,18240,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,7.8593116,8.1909218,0,7,-2,76.832687,0,-9,-9,2019,10,3,22,22,1,3,0,15.140122,15.140122,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,7,2,5,1,711.66669,200890.63,47493.598,139049.88,0,4364.5557 -8232,10136,18239,-9,18238,18240,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-903.32196,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,711.66669,200890.63,47493.598,139049.88,0,4364.5557 -8232,10136,18240,18238,-9,-9,1,1,37,1,1,0,1,1,-9,0,5,8.9200792,8.5828867,0,7,2,147.5099,0,2,3,2019,13,5,48,40,1,5,0,15.60085,15.60085,0,0,0,0,0,1,1,0,5.7511921,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,711.66669,200890.63,47493.598,139049.88,0,4364.5557 -8233,10137,18241,18242,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,4.9052062,5.0003414,6,4,85.067131,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0466189,62.9,48.63,67.89,25.82,8.333333333333334,1,1,0,0,0,13,2,0,649,365110.69,184483.31,150877,0,2916.8508 -8233,10137,18242,18241,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,6,-4,39.309017,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,4.528038,0,0,1,1,0,0,0,67.89,25.82,62.9,48.63,8.333333333333334,1,1,0,0,0,13,2,0,649,365110.69,184483.31,150877,0,2916.8508 -8234,10138,18243,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.1117506,8.3462181,0,0,0,-986.46667,0,2,2,2019,15,4,45,38,1,4,0,12.057478,12.057478,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,607,-138205.48,53171.156,0,0,1263.3152 -8235,10139,18244,18246,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,9.3666134,9.3663397,0,3,14,99.464439,0,-9,-9,2019,9,0,46,-9,1,1,0,28.496134,28.496134,0,0,0,0,0,1,1,0,0,0,51,56,55.2,49.4,8,4,5,0,0,1,2,5,1,279.66666,336839.13,161358.05,256200.58,214383.03,10715.474 -8235,10139,18245,-9,18246,18244,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.41254,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,279.66666,336839.13,161358.05,256200.58,214383.03,10715.474 -8235,10139,18246,18244,-9,-9,1,0,24,1,1,0,1,1,-9,0,2,8.3244114,8.3197927,0,3,-14,-60.021065,0,-9,-9,2019,7,1,38,37,1,1,0,11.752593,11.752593,0,0,0,0,0,1,1,0,.76962042,0,55.2,49.4,51,56,6.666666666666667,1,1,0,0,4,2,5,1,279.66666,336839.13,161358.05,256200.58,214383.03,10715.474 -8236,10140,18247,18249,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.1627588,7.7790079,0,9,2,-55.298607,0,2,2,2019,7,0,28,31,1,0,0,11.493835,11.493835,0,0,0,0,0,1,1,0,2.1904249,0,52.01,48.98,46.08,57.2,6.666666666666667,1,1,0,0,11,7,4,1,796,-129717.2,91283.359,0,0,2961.3516 -8236,10140,18248,-9,18247,18249,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.06561,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,796,-129717.2,91283.359,0,0,2961.3516 -8236,10140,18249,18247,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.1522942,8.4082642,0,9,-2,-54.467319,0,2,1,2019,11,0,37,0,1,0,0,10.142674,10.142674,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52.01,48.98,5,1,1,0,0,12,7,4,1,796,-129717.2,91283.359,0,0,2961.3516 -8236,10141,18250,-9,18247,18249,1,1,18,0,1,0,2,2,1,0,4,7.0887241,6.9894466,0,0,0,-1009.1741,-9,2,2,2019,10,0,47,0,1,0,1,2.9988821,2.9988821,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,1034,-220266.5,0,0,0,652.65558 -8237,10142,18251,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.5438395,8.7138338,0,0,0,-948.55688,0,2,-9,2019,12,1,40,7,1,1,1,15.725473,15.725473,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,2,3,0,0,7,7,5,1,1655,8007.856,-87586.703,0,0,1569.5168 -8238,10143,18252,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,5.2604675,5.4593167,0,0,-1010.3651,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3503923,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,795,-352394.09,0,0,0,1061.157 -8239,10144,18253,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.0701532,9.1847382,0,0,0,-1044.9379,-9,2,1,2019,7,0,40,0,1,0,0,27.568254,27.568254,0,0,0,0,0,0,0,0,2.8563581,0,49.88,52.95,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,61,614771.38,88942.297,0,0,3893.1016 -8240,10145,18254,18255,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.6432142,8.7466888,0,3,9,-1.2839911,0,-9,-9,2019,9,0,45,44,1,0,0,14.474184,14.474184,0,0,0,0,0,0,0,0,7.4619646,0,56.91,49.54,43.37,57.28,8.333333333333334,1,1,0,0,7,9,5,1,612,-58972.891,18928.455,295984.16,132543.13,5097.208 -8240,10145,18255,18254,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.8200269,8.1881933,0,3,0,28.959558,0,-9,-9,2019,20,8,43,32,1,8,0,6.8047709,6.8047709,0,0,0,0,2,0,0,0,6.6553679,0,43.37,57.28,56.91,49.54,8.333333333333334,1,1,0,0,2,9,5,1,612,-58972.891,18928.455,295984.16,132543.13,5097.208 -8241,10146,18256,18257,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.8789377,8.9830151,0,9,0,14.906405,0,3,3,2019,10,0,50,45,1,0,0,16.15551,16.15551,0,0,0,0,0,0,0,0,0,0,57.76,54.51,48.28,60.18,8.333333333333334,1,1,0,0,10,9,5,1,856.5,968739.94,609825.5,368850.81,143133.13,4468.9668 -8241,10146,18257,18256,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3851337,8.3935833,0,9,0,-94.041969,0,-9,-9,2019,4,0,30,28,1,0,0,13.110903,13.110903,0,0,0,0,2,0,0,0,0,0,48.28,60.18,57.76,54.51,8.333333333333334,1,1,0,0,3,9,5,1,856.5,968739.94,609825.5,368850.81,143133.13,4468.9668 -8242,10147,18258,-9,18259,18261,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1065.527,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 -8242,10147,18259,18261,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,11,-7,-107.09626,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,40.58,60.95,7,2,3,0,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 -8242,10147,18260,-9,18259,18261,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.0322,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 -8242,10147,18261,18259,18263,-9,1,1,39,0,3,0,1,1,-9,0,4,4.0166016,4.2353311,0,11,7,144.85994,0,3,-9,2019,11,0,36,35,1,0,0,.16297592,.16297592,0,0,0,0,0,1,1,0,0,0,40.58,60.95,48,57,6.666666666666667,2,3,0,0,11,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 -8242,10147,18262,-9,18259,18261,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-984.87775,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,4,2,1,1030.6,56497.309,19908.352,133264.72,112926.29,1241.3297 -8242,10148,18263,-9,-9,-9,1,0,73,0,3,0,3,3,-9,0,3,0,0,0,0,0,-945.21082,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,2.4490557,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,4,2,1,945,-123448.23,0,0,0,560.25543 -8243,10149,18264,18265,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,47,3,57.888901,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2268033,0,34.47,19.62,57.73,30.59,1.666666666666667,1,1,0,0,6,6,3,1,497.5,1312744.6,920465.75,242222.84,0,2277.3203 -8243,10149,18265,18264,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.7844248,8.0640373,47,-3,42.160175,0,3,2,2019,8,1,0,38,4,1,0,0,0,0,0,0,0,2,1,1,0,2.2045841,7.8767862,57.73,30.59,34.47,19.62,6.666666666666667,1,1,0,0,9,6,3,1,497.5,1312744.6,920465.75,242222.84,0,2277.3203 -8244,10150,18266,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,0,6.1879106,5.6865225,0,0,-919.3161,1,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.4278917,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,3,11,2,0,579,35973.879,0,0,0,1788.4458 -8244,10150,18267,-9,18266,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.5657,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,579,35973.879,0,0,0,1788.4458 -8245,10151,18268,18269,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.4427004,7.2333841,34,-1,108.23333,0,1,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,2.3883712,7.0652423,48.45,57.49,64.16,29.7,8.333333333333334,1,1,0,0,6,11,4,1,279,1400501.5,621756.5,224167.89,0,2654.3677 -8245,10151,18269,18268,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,8.1485176,8.5773907,34,1,-114.9141,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.3781433,8.2795248,64.16,29.7,48.45,57.49,10,1,1,0,0,7,11,4,1,279,1400501.5,621756.5,224167.89,0,2654.3677 -8246,10152,18270,18271,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8252754,7.9147544,34,14,-42.372456,0,3,3,2019,7,1,0,2,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.413507,58.48,36.66,49.58,50.05,8.333333333333334,1,1,0,0,7,12,4,1,311.5,1415172.3,545559.38,821092.63,0,3209.4187 -8246,10152,18271,18270,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.9337058,8.1885958,0,7,-14,-14.061558,0,-9,-9,2019,10,0,26,25,1,0,0,11.930206,11.930206,0,0,0,0,0,1,1,0,0,0,49.58,50.05,58.48,36.66,5,4,2,0,0,6,12,4,1,311.5,1415172.3,545559.38,821092.63,0,3209.4187 -8246,10153,18272,-9,18271,18270,1,1,19,0,0,0,2,2,1,0,4,7.9096031,7.7796702,0,0,0,-952.39673,-9,1,1,2019,19,8,40,0,1,8,1,6.5250258,6.5250258,0,0,0,0,0,1,1,0,0,0,40.83,59.68,-9,-9,6.666666666666667,4,2,0,0,0,12,3,1,2327,230585.56,-62226.98,0,0,907.59967 -8247,10154,18273,18275,-9,-9,1,1,38,1,2,0,2,2,-9,0,4,6.6109843,6.8787141,0,13,8,-69.971565,0,2,2,2019,10,0,12,35,1,1,0,8.9722424,8.9722424,0,0,0,0,0,1,1,0,0,0,51,56,29.01,54.44,7,2,3,0,0,1,8,2,0,470.5,84887,0,0,0,1168.1909 -8247,10154,18274,-9,18275,18273,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.7074,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,470.5,84887,0,0,0,1168.1909 -8247,10154,18275,18273,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,0,0,0,12,-8,17.262257,0,2,2,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.01,54.44,51,56,5,2,3,0,0,0,8,2,0,470.5,84887,0,0,0,1168.1909 -8247,10154,18276,-9,18275,18273,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.5575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,470.5,84887,0,0,0,1168.1909 -8248,10155,18277,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.3407044,5.8793941,0,0,-960.09442,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.31621471,5.9787774,62.42,42.94,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,882,96759.094,115843.76,0,0,452.15103 -8249,10156,18278,-9,18280,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.7068,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,1944.6666,-71612.43,0,0,0,1673.767 -8249,10156,18279,-9,18280,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-765.82751,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,1944.6666,-71612.43,0,0,0,1673.767 -8249,10156,18280,-9,-9,-9,1,0,33,1,3,0,3,3,-9,1,1,0,0,0,0,0,-1017.1901,0,3,2,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33,29.67,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,1944.6666,-71612.43,0,0,0,1673.767 -8250,10157,18281,18283,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,7.5187306,8.3938541,7.4300728,7,-2,-18.382551,0,2,2,2019,7,0,15,36,1,0,0,17.699293,17.699293,0,0,0,0,14.5,1,1,0,0,7.7354312,40.79,52.69,51,49,8.333333333333334,3,4,0,0,9,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 -8250,10157,18282,-9,18281,18283,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1002.9969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,14.91,68.97,-9,-9,1.666666666666667,3,4,0,0,1,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 -8250,10157,18283,18281,-9,-9,1,1,57,0,1,0,2,2,-9,1,3,0,0,0,7,2,-144.67482,0,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,40.79,52.69,7,3,4,0,0,0,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 -8250,10157,18284,-9,18281,18283,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.26685,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,3,1,610.5,22774.104,-13049.901,125339.52,69621.406,2815.2993 -8251,10158,18285,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.267128,8.6023397,0,0,0,-994.73138,0,2,2,2019,12,0,38,36,1,0,0,17.537518,17.537518,0,0,0,0,0,0,0,0,4.4131474,0,47.44,56.39,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,540,1282349.9,1027044.8,159242.63,0,1409.6079 -8251,10159,18286,-9,18285,-9,1,1,30,0,0,0,1,1,-9,0,5,0,0,0,0,0,-944.94586,-9,1,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,655,-78582.211,0,0,0,0 -8252,10160,18287,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-909.22699,0,3,3,2019,10,0,0,48,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,3,4,1,1,8,8,1,1,1213,211080.3,-89520.148,0,0,341.61349 -8252,10161,18288,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1016.1225,0,-9,-9,2019,11,0,0,15,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,1,249,86796.063,0,175795.3,0,2302.4946 -8252,10162,18289,-9,18288,18287,1,1,32,0,0,0,2,2,-9,0,4,8.3317528,8.4126997,0,0,0,-1038.3119,0,3,2,2019,10,0,48,40,1,1,1,12.695303,12.695303,0,0,0,0,0,1,1,0,1.2814643,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,2648,94964.781,122108.72,0,0,1525.1559 -8253,10163,18290,18291,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.2909656,7.3692427,34,-3,-30.770538,0,3,2,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,42,1,1,0,4.2273755,7.1890087,61.28,48.88,30.6,18.53,8.333333333333334,1,1,0,0,9,2,3,1,996.5,1033793.1,487997.81,160406.44,18224.959,2647.3596 -8253,10163,18291,18290,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,6.5368075,6.7045817,34,3,42.04105,0,3,2,2019,22,10,0,0,4,10,0,0,0,1,2.4104359,56.216713,25.534979,0,1,1,0,3.7009475,5.9837017,30.6,18.53,61.28,48.88,6.666666666666667,1,1,0,0,6,2,3,1,996.5,1033793.1,487997.81,160406.44,18224.959,2647.3596 -8254,10164,18292,18294,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,9.2695227,9.1265755,0,29,-1,15.343943,0,1,2,2019,7,0,30,60,1,0,0,35.878201,35.878201,0,0,0,0,0,0,0,0,8.9662695,0,52.25,53.24,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,667,439351.09,443338.53,236860.05,155620.3,4660.5928 -8254,10164,18293,-9,18292,18294,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1052.6185,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,4,1,667,439351.09,443338.53,236860.05,155620.3,4660.5928 -8254,10164,18294,18292,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,0,0,0,28,1,-159.66795,0,2,3,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,7.3681483,0,57.16,56.15,52.25,53.24,8.333333333333334,1,1,0,0,9,2,4,1,667,439351.09,443338.53,236860.05,155620.3,4660.5928 -8254,10165,18295,-9,18292,18294,1,1,19,0,1,0,2,2,-9,0,4,0,5.7926936,5.7830176,0,0,-981.77252,1,1,1,2019,5,0,0,4,2,0,1,0,0,0,0,0,0,0,0,0,0,5.8296857,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,669,206485.33,0,0,0,127.22601 -8255,10166,18296,18297,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.6643262,4.9647441,8,0,141.29587,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,2.0311263,12.012975,19.900673,0,1,1,0,0,4.4490986,51.11,40.1,62.1,51.16,8.333333333333334,1,1,0,0,0,2,2,1,391,106745.41,-55140.469,207413.47,0,1640.6079 -8255,10166,18297,18296,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,0,0,8,0,-57.409283,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,51.11,40.1,10,1,1,0,0,0,2,2,1,391,106745.41,-55140.469,207413.47,0,1640.6079 -8256,10167,18298,18299,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,2,3,2019,13,1,0,0,4,1,0,0,0,1,0,34.414257,0,0,1,1,0,2.8007798,0,63.11,26.8,47.62,50.74,6.666666666666667,1,1,0,0,0,5,1,1,322,-77910.891,0,105496.48,0,1003.3384 -8256,10167,18299,18298,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,10,-5,0,0,3,2,2019,7,2,0,0,4,2,0,0,0,1,0,0,0,27,1,1,0,0,0,47.62,50.74,63.11,26.8,10,1,1,0,0,0,5,1,1,322,-77910.891,0,105496.48,0,1003.3384 -8257,10168,18300,-9,18302,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.89972,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 -8257,10168,18301,-9,18302,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.61023,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 -8257,10168,18302,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,1,0,5.6689773,5.7093496,0,0,-1221.8115,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,6.0738344,0,33.64,18.89,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 -8257,10168,18303,-9,18302,-9,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1010.7059,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.1,43.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,621.25,509553.81,0,182502.39,0,3103.3132 -8257,10169,18304,-9,18302,-9,1,1,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-1025.2186,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,31.54,60.02,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,682,0,0,0,0,-292.19318 -8258,10170,18305,18306,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.7309618,8.7117014,9,3,26.808311,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1881456,8.8557777,38.75,53.76,54.2,57.49,8.333333333333334,1,1,0,0,5,7,5,1,198,651963,38947.281,511033.25,0,4584.9326 -8258,10170,18306,18305,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.8778348,6.4058437,9,-3,-27.390535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.8239007,6.4927578,54.2,57.49,38.75,53.76,8.333333333333334,1,1,0,0,7,7,5,1,198,651963,38947.281,511033.25,0,4584.9326 -8259,10171,18307,-9,18310,-9,1,0,25,0,0,0,2,2,-9,0,5,7.8146996,8.035511,0,0,0,-939.79486,-9,2,-9,2019,9,0,40,0,1,0,0,6.7838502,6.7838502,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,536,87311.234,-56447.66,0,0,1438.8606 -8259,10172,18308,-9,18310,-9,1,1,27,0,0,0,2,2,1,0,4,0,0,0,0,0,-899.29419,-9,2,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,1,0,0,13,1,1,355,0,0,0,0,-108.90853 -8259,10173,18309,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.8327436,8.785614,0,6,-3,17.442286,0,3,3,2019,7,0,59,47,1,0,0,16.26474,16.26474,0,0,0,0,14.5,0,0,0,0,0,62.42,42.94,57.06,57.76,6.666666666666667,1,1,0,0,7,13,5,1,245,1207148.5,815515.25,348528.09,0,2833.8391 -8259,10174,18310,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,8.9443197,8.9897661,0,6,3,56.243343,0,3,3,2019,5,0,37,37,1,0,0,32.23888,32.23888,0,0,0,0,0,0,0,0,6.5474205,0,57.06,57.76,62.42,42.94,10,1,1,0,0,7,13,5,1,422,95166.617,0,85520.984,56753.684,3798.0039 -8260,10175,18311,18312,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.4445019,8.582736,0,1,9,16.769449,-9,-9,-9,2019,12,1,45,0,1,1,0,11.731328,11.731328,0,0,0,0,0,1,1,0,0,0,43.42,62.33,49.84,45.87,6.666666666666667,1,1,0,0,8,6,5,1,1126.5,211062.11,7683.7754,149371.28,102862.92,3900.9878 -8260,10175,18312,18311,-9,-9,1,0,33,0,0,0,3,3,-9,0,3,7.0121326,7.7531896,7.0356922,1,0,-28.662691,0,3,-9,2019,10,0,8,0,1,0,0,19.630831,19.630831,0,0,0,0,0,1,1,0,7.3746591,0,49.84,45.87,43.42,62.33,8.333333333333334,1,1,0,0,5,6,5,1,1126.5,211062.11,7683.7754,149371.28,102862.92,3900.9878 -8261,10176,18313,18314,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.8791046,9.0717239,0,9,6,-8.4530106,0,-9,-9,2019,0,0,41,20,1,0,0,20.204824,20.204824,0,0,0,0,0,0,0,0,3.7310815,0,57.06,57.76,52.54,54.24,10,1,1,0,0,10,6,5,1,862,944376.75,746780.25,194773.16,76867.688,5902.6631 -8261,10176,18314,18313,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.5043917,8.5505438,0,9,-6,-27.992805,0,-9,-9,2019,6,0,45,45,1,0,0,14.766035,14.766035,0,0,0,0,0,0,0,0,2.9354498,0,52.54,54.24,57.06,57.76,6.666666666666667,1,1,0,0,13,6,5,1,862,944376.75,746780.25,194773.16,76867.688,5902.6631 -8262,10177,18315,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,7.8637161,8.0446854,0,0,-989.12567,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.8667061,7.8425565,47.87,38.01,-9,-9,5,1,1,0,0,7,11,3,1,574,645442.44,461328.53,229964.58,0,1184.8062 -8263,10178,18316,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.7198553,8.830677,5.3118429,0,0,-1154.5898,0,-9,2,2019,10,0,36,35,1,0,0,16.814131,16.814131,0,0,0,0,0,0,0,0,5.7166667,0,48.25,53.5,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,506,330781.25,335376,180275.69,140115.03,1750.4498 -8263,10179,18317,-9,18316,-9,1,1,28,0,0,0,1,1,-9,0,2,8.5514526,8.5868893,0,0,0,-963.70532,0,2,-9,2019,10,0,54,51,1,0,1,10.124752,10.124752,0,0,0,0,0,0,0,0,0,0,43.86,47.83,-9,-9,6.666666666666667,1,1,0,0,9,8,4,0,291.5,-18596.367,-25001.988,0,0,1623.1118 -8263,10179,18318,-9,-9,18317,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.1958,-9,-9,-9,2019,22,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,3.4295356,0,30.65,58.62,-9,-9,10,4,2,1,0,0,8,4,0,291.5,-18596.367,-25001.988,0,0,1623.1118 -8264,10180,18319,18320,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,48,2,0,-9,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,42.62,39.82,6.666666666666667,1,1,0,0,0,2,2,0,565.5,183076.92,-36459.461,111242.19,0,2421.5713 -8264,10180,18320,18319,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,48,-2,0,-9,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,42.62,39.82,39.15,41.42,8.333333333333334,1,1,0,0,0,2,2,0,565.5,183076.92,-36459.461,111242.19,0,2421.5713 -8265,10181,18321,-9,18322,18323,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.6148,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 -8265,10181,18322,18323,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.2190933,9.1347141,7.4334555,2,6,24.59536,0,-9,-9,2019,10,0,40,32,1,0,0,11.210259,11.210259,0,0,0,0,0,1,1,0,7.2228298,0,55.19,54.26,48.28,60.18,1.666666666666667,1,1,0,0,10,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 -8265,10181,18323,18322,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6808023,8.849884,0,2,-6,-113.16016,0,2,2,2019,12,0,35,35,1,0,0,18.881477,18.881477,0,0,0,0,0,1,1,0,0,0,48.28,60.18,55.19,54.26,1.666666666666667,1,1,0,0,10,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 -8265,10181,18324,-9,18322,18323,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7454,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,1070.25,206008.47,144219.67,147490.27,152172.47,4739.2573 -8266,10182,18325,18326,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,0,0,0,31,-2,0,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,51.25,13.47,7,2,3,0,0,0,4,1,1,413,0,0,0,0,757.14709 -8266,10182,18326,18325,-9,-9,1,1,49,0,1,0,2,2,-9,0,1,0,0,0,9,2,0,0,-9,-9,2019,11,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,13.47,47,50,5,2,3,1,0,0,4,1,1,413,0,0,0,0,757.14709 -8266,10183,18327,-9,18325,18326,1,1,20,0,1,0,2,2,-9,0,3,8.4981575,8.6787462,0,0,0,-994.68542,0,3,2,2019,5,1,40,48,1,1,1,15.810318,15.810318,0,0,0,0,0,1,1,0,0,0,46.02,58.57,-9,-9,5,2,3,0,0,2,4,5,1,924,128038.45,88545.664,0,0,2564.4829 -8266,10184,18328,-9,18325,18326,1,1,19,0,1,0,2,2,-9,0,5,7.1666803,7.1174445,0,0,0,-1115.2694,0,3,2,2019,3,0,40,40,1,0,1,2.5533252,2.5533252,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,4,2,1,599,-244564.81,0,0,0,43.27372 -8267,10185,18329,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.3422656,7.4039245,0,0,0,-1084.0188,0,-9,-9,2019,6,0,24,24,1,0,0,8.1405525,8.1405525,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,6.666666666666667,1,1,0,0,10,2,3,0,782,27973.352,43980.734,0,0,1828.1335 -8267,10185,18330,-9,-9,18329,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.9798,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,782,27973.352,43980.734,0,0,1828.1335 -8268,10186,18331,18333,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,6.9643092,6.9767556,0,3,-1,-120.20004,0,-9,-9,2019,7,0,12,37,1,0,0,10.297377,10.297377,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53.51,60.74,10,1,1,0,0,3,2,3,1,1004.3333,2102.1824,0,0,0,1745.4835 -8268,10186,18332,-9,18331,18333,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-919.9353,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1004.3333,2102.1824,0,0,0,1745.4835 -8268,10186,18333,18331,-9,-9,1,1,26,1,1,0,2,2,-9,0,5,8.0513334,8.0723934,0,3,1,11.495975,0,2,2,2019,3,0,50,50,1,0,0,6.5264659,6.5264659,0,0,0,0,2,1,1,0,0,0,53.51,60.74,57.06,57.76,10,1,1,0,0,6,2,3,1,1004.3333,2102.1824,0,0,0,1745.4835 -8269,10187,18334,18335,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,0,0,0,22,2,114.30678,0,2,2,2019,13,4,0,40,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,20.87,56.95,46.69,8.333333333333334,1,1,1,0,7,2,5,1,470,342166.88,195039.2,194324.92,101130.97,3406.4692 -8269,10187,18335,18334,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,9.6061668,9.1727257,0,22,-2,-13.800648,0,2,1,2019,9,0,55,60,1,0,0,19.001486,19.001486,0,0,0,0,7,1,1,0,0,0,56.95,46.69,54.94,20.87,6.666666666666667,1,1,0,0,7,2,5,1,470,342166.88,195039.2,194324.92,101130.97,3406.4692 -8269,10188,18336,-9,18334,18335,1,0,19,0,0,0,1,1,1,0,3,7.6207762,7.6303582,0,0,0,-1066.9648,-9,2,2,2019,5,0,37,0,1,0,1,7.1148987,7.1148987,0,0,0,0,7,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,136,110590.85,0,0,0,712.10883 -8270,10189,18337,18338,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,9.0491314,9.3863964,0,43,0,-40.467396,0,3,2,2019,5,0,50,50,1,0,0,17.410269,17.410269,0,0,0,0,0,0,0,0,1.1688048,0,53.86,52.34,49.95,56.68,8.333333333333334,1,1,0,0,6,10,5,1,546,2036852.4,1040835.9,737968.5,0,3190.2998 -8270,10189,18338,18337,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,43,0,22.452414,0,3,2,2019,13,2,0,42,4,2,0,0,0,0,0,0,0,0,0,0,0,6.2535796,0,49.95,56.68,53.86,52.34,8.333333333333334,1,1,0,0,4,10,5,1,546,2036852.4,1040835.9,737968.5,0,3190.2998 -8271,10190,18339,-9,18340,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.04608,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,350.33334,240628.84,29704.82,353640.47,126025.33,3538.3794 -8271,10190,18340,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.8349609,8.9260979,0,0,0,-888.23456,0,1,1,2019,15,4,70,70,1,4,0,11.505844,11.505844,0,0,0,0,0,0,0,0,0,0,37.76,58.68,-9,-9,3.333333333333333,4,2,0,0,12,8,5,1,350.33334,240628.84,29704.82,353640.47,126025.33,3538.3794 -8271,10190,18341,-9,18340,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1075.3724,-9,1,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,8,5,1,350.33334,240628.84,29704.82,353640.47,126025.33,3538.3794 -8272,10191,18342,18343,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.7692623,7.6508412,58,1,-3.8664377,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.41587913,7.5312595,61.19,36.58,58.23,43.46,0,1,1,0,0,0,11,3,1,462,800757.25,474345.56,135124.09,0,2293.5486 -8272,10191,18343,18342,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.2160521,7.0101738,58,-1,-15.2243,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.50885934,6.8270621,58.23,43.46,61.19,36.58,8.333333333333334,1,1,0,0,0,11,3,1,462,800757.25,474345.56,135124.09,0,2293.5486 -8273,10192,18344,18345,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.7805281,8.4791203,0,31,4,95.690002,0,2,1,2019,8,0,60,60,1,0,0,10.472335,10.472335,0,0,0,0,0,0,0,0,4.7910142,0,54.35,57.84,39.48,58.88,8.333333333333334,1,1,0,0,10,4,5,1,343.5,2467116.5,2305259.3,406133.56,23633.832,3723.7839 -8273,10192,18345,18344,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.5539846,8.5301495,0,31,-4,40.213619,0,2,2,2019,14,2,40,37,1,2,0,20.648413,20.648413,0,0,0,0,0,0,0,0,1.1542888,0,39.48,58.88,54.35,57.84,8.333333333333334,1,1,0,0,10,4,5,1,343.5,2467116.5,2305259.3,406133.56,23633.832,3723.7839 -8274,10193,18346,18347,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.9022298,7.6792994,38,0,43.097672,0,2,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1.078621,8.0260735,54.2,57.49,52.81,19.32,8.333333333333334,1,1,0,0,10,5,4,1,692,1767329.4,881939.88,0,0,2417.6973 -8274,10193,18347,18346,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.0498562,7.8856621,0,38,0,-.45094576,0,2,2,2019,12,0,32,0,1,0,0,12.305796,12.305796,0,0,0,0,0,0,0,0,0,0,52.81,19.32,54.2,57.49,3.333333333333333,1,1,0,0,12,5,4,1,692,1767329.4,881939.88,0,0,2417.6973 -8274,10194,18348,-9,18347,18346,1,1,34,0,0,0,2,2,-9,0,3,6.8284483,7.3036189,0,0,0,-1003.4202,0,1,1,2019,9,0,13,13,1,0,1,6.9291706,6.9291706,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,5,1,1,0,0,8,5,2,1,833,-142383.06,0,0,0,826.76648 -8275,10195,18349,18350,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1049824,8.7749462,8.1860304,44,-4,-14.404633,0,3,3,2019,10,1,38,40,1,1,0,14.275269,14.275269,0,0,0,0,0,0,0,0,7.0347338,8.1537905,48.61,51.8,46.26,42.16,6.666666666666667,1,1,0,0,13,2,5,1,1159,414433.38,-62288.402,114151.63,29217.191,5616.7773 -8275,10195,18350,18349,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.4742832,8.262394,0,11,4,-26.381687,0,-9,-9,2019,12,0,36,37,1,0,0,17.680571,17.680571,0,0,0,0,0,0,0,0,0,0,46.26,42.16,48.61,51.8,6.666666666666667,1,1,0,0,13,2,5,1,1159,414433.38,-62288.402,114151.63,29217.191,5616.7773 -8276,10196,18351,18353,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.4839525,8.2966394,0,8,-7,29.57551,0,-9,-9,2019,5,0,37,40,1,0,0,14.068564,14.068564,0,0,0,0,0,1,1,0,1.0873086,0,59.78,55.17,57.16,56.15,8.333333333333334,1,1,0,0,12,11,5,1,392.33334,1780745.4,1585226.1,327243.44,0,3884.4429 -8276,10196,18352,-9,18351,18353,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.6271,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,392.33334,1780745.4,1585226.1,327243.44,0,3884.4429 -8276,10196,18353,18351,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.7316713,8.8460979,0,8,7,-41.03178,0,2,2,2019,9,0,37,38,1,0,0,20.321417,20.321417,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.78,55.17,8.333333333333334,1,1,0,0,12,11,5,1,392.33334,1780745.4,1585226.1,327243.44,0,3884.4429 -8277,10197,18354,-9,18356,18355,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-960.69702,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 -8277,10197,18355,18356,-9,-9,1,1,47,0,2,0,3,3,-9,0,5,8.2194748,8.2027359,0,16,-6,-63.498436,0,3,3,2019,6,0,50,60,1,0,0,8.3067226,8.3067226,0,0,0,0,27,1,1,0,0,0,62.39,56.71,54.79,55.86,8.333333333333334,1,1,0,1,11,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 -8277,10197,18356,18355,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,6.1798224,6.3176885,0,16,6,-156.04234,0,2,3,2019,6,0,9,9,1,0,0,6.4581451,6.4581451,0,0,0,0,7,1,1,0,0,0,54.79,55.86,62.39,56.71,5,1,1,0,1,5,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 -8277,10197,18357,-9,18356,18355,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.40344,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,3,1,389.25,377651.84,60115.059,207462.66,64936.578,2929.7703 -8278,10198,18358,18359,-9,-9,1,0,65,0,1,0,1,1,-9,0,5,0,0,0,23,1,-158.57675,0,3,1,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,44.8,43.72,41.89,8.333333333333334,2,3,0,0,5,8,3,1,338,1868654,880663.38,643105.75,0,4869.5107 -8278,10198,18359,18358,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,8.11866,8.481451,0,21,-1,-1.0487775,0,3,-9,2019,15,4,36,40,1,4,0,14.414159,14.414159,0,0,0,0,0,1,1,0,0,0,43.72,41.89,34.46,44.8,10,2,3,0,0,10,8,3,1,338,1868654,880663.38,643105.75,0,4869.5107 -8279,10199,18360,-9,18361,18362,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.20361,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 -8279,10199,18361,18362,-9,-9,1,0,22,1,2,0,2,2,-9,0,2,0,0,0,2,0,-107.87833,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.18,54.59,54.2,57.49,6.666666666666667,1,1,0,0,1,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 -8279,10199,18362,18361,-9,-9,1,1,22,1,2,0,2,2,-9,0,4,7.7713637,7.6778064,0,2,0,167.80557,0,-9,-9,2019,10,0,33,33,1,0,0,6.9451594,6.9451594,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.18,54.59,5,1,1,0,0,1,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 -8279,10199,18363,-9,18361,18362,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.2368,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,197.75,68699.305,-42667.625,0,0,1853.9044 -8280,10200,18364,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.7172074,7.9224505,0,0,-1048.4315,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,0,.28247812,0,0,1,1,0,.41647241,7.892426,46.54,40.46,-9,-9,5,1,1,0,0,0,8,3,1,606,683288.31,200869.95,287995.44,0,1703.3906 -8281,10201,18365,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,6.4184375,6.3274784,0,0,0,-956.55682,0,3,3,2019,19,7,8,28,1,7,0,8.4720087,8.4720087,0,0,0,0,0,1,1,0,6.8715229,0,40.61,64.02,-9,-9,6.666666666666667,1,1,0,1,8,9,2,0,159,93806.078,94807.617,297535.5,34992.41,1335.275 -8282,10202,18366,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1009.7709,0,1,2,2019,19,7,0,14,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.28,49.34,-9,-9,1.666666666666667,1,1,1,0,7,1,1,0,664,-118903.13,0,0,0,1074.988 -8283,10203,18367,18368,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.5813322,7.5565996,0,34,-1,93.594154,0,2,3,2019,13,2,20,16,1,2,0,8.902545,8.902545,0,0,0,0,2,0,0,0,2.2848682,0,55.19,54.26,57.41,54.88,8.333333333333334,1,1,0,0,9,2,3,1,2103,151818.56,102420.95,0,0,984.63989 -8283,10203,18368,18367,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,6.5136065,6.8247013,0,6,1,-39.296814,0,2,1,2019,6,0,45,50,1,0,0,2.2427328,2.2427328,0,0,0,0,0,0,0,0,2.1147814,0,57.41,54.88,55.19,54.26,10,1,1,0,0,9,2,3,1,2103,151818.56,102420.95,0,0,984.63989 -8284,10204,18369,18371,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.758357,8.9429731,0,25,2,-28.840363,0,2,2,2019,22,8,45,85,1,8,0,19.765989,19.765989,0,0,0,0,0,1,1,0,3.9485767,0,27.86,56.01,26.42,49.89,1.666666666666667,1,1,0,1,10,6,4,1,520,409571.28,368076.06,101452.23,103780.27,2295.5073 -8284,10204,18370,-9,18371,18369,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1000.5531,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.67089915,0,32.56,65.15000000000001,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,520,409571.28,368076.06,101452.23,103780.27,2295.5073 -8284,10204,18371,18369,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,26,-2,68.115662,0,2,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,1.9641947,0,26.42,49.89,27.86,56.01,3.333333333333333,1,1,0,1,0,6,4,1,520,409571.28,368076.06,101452.23,103780.27,2295.5073 -8285,10205,18372,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.6437416,8.721899,0,0,0,-1078.073,0,2,2,2019,7,0,40,40,1,0,0,18.104187,18.104187,0,0,0,0,2,0,0,0,.67963678,0,54.74,57.22,-9,-9,10,1,1,0,0,8,9,5,1,1522,95633.109,237554.34,188450.08,122500.86,2232.6565 -8286,10206,18373,18374,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.9323292,8.0127277,48,-2,-4.5756636,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,2.8795643,5.9426632,23.10001,0,1,1,0,0,7.7195692,27.25,35.34,60.7,47.65,6.666666666666667,1,1,0,0,0,8,4,1,136,1339255.6,803317.13,559744.13,0,3175.0703 -8286,10206,18374,18373,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.4817085,7.9988718,48,2,27.771315,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,15.282886,0,0,1,1,0,5.0977197,7.8539648,60.7,47.65,27.25,35.34,10,1,1,0,0,0,8,4,1,136,1339255.6,803317.13,559744.13,0,3175.0703 -8287,10207,18375,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.549346,8.3396444,6.8370967,0,0,-954.45984,0,3,3,2019,10,0,12,10,1,0,0,38.963081,38.963081,0,0,0,0,0,1,1,0,6.7168679,7.0704303,54.44,51.82,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,1513,386332.53,353580.44,126817.32,0,3167.7898 -8288,10208,18376,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,8.1839552,7.8362198,0,0,-1029.2028,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1251593,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,329,888827,658126,104026.31,0,1783.5011 -8289,10209,18377,-9,18378,-9,1,1,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-976.18689,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 -8289,10209,18378,-9,-9,-9,1,0,33,2,4,0,2,2,-9,1,4,0,0,0,0,0,-804.93549,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 -8289,10209,18379,-9,18378,-9,1,1,10,2,4,1,3,0,-9,0,5,0,0,0,0,0,-1022.1885,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 -8289,10209,18380,-9,18378,-9,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.4481,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 -8289,10209,18381,-9,18378,-9,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.0985,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,1119.2,75826.859,0,0,0,2004.5797 -8290,10210,18382,-9,18383,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.3953,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,680,237759.69,0,0,0,1857.3839 -8290,10210,18383,-9,-9,-9,1,0,23,0,1,0,2,2,0,1,2,0,6.5482621,6.8335881,0,0,-1081.3051,-9,-9,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,6.5282269,0,38,43,-9,-9,5,1,1,0,0,0,13,2,0,680,237759.69,0,0,0,1857.3839 -8291,10211,18384,18386,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,7.8354044,7.6040487,0,3,-1,-18.707539,0,-9,-9,2019,6,0,40,43,1,0,0,6.836267,6.836267,0,0,0,0,0,1,1,0,0,0,55.96,49.93,47.49,55.02,8.333333333333334,1,1,0,0,5,2,3,1,775,154863.84,24671.135,0,0,2237.7935 -8291,10211,18385,-9,18386,18384,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.57837,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,775,154863.84,24671.135,0,0,2237.7935 -8291,10211,18386,18384,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.2919745,7.2529407,0,3,1,-20.67798,0,3,2,2019,10,0,25,20,1,0,0,5.2839003,5.2839003,0,0,0,0,0,1,1,0,0,0,47.49,55.02,55.96,49.93,8.333333333333334,1,1,0,0,7,2,3,1,775,154863.84,24671.135,0,0,2237.7935 -8292,10212,18387,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,6.9794974,6.7903147,0,0,-1121.7692,-9,3,3,2019,23,10,0,0,4,10,0,0,0,1,7.5783515,0,62.121662,0,1,1,0,5.5413818,6.9179955,27.2,27.24,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,304,45416.18,109850.27,0,0,1944.1146 -8293,10213,18388,18390,-9,-9,1,1,37,0,2,0,3,3,-9,0,3,6.4542499,6.3245096,0,17,-3,7.3593764,0,-9,-9,2019,9,0,40,35,1,0,0,1.6210555,1.6210555,0,0,0,0,7,1,1,0,0,0,50.72,51.02,41.34,35.15,6.666666666666667,1,1,0,0,7,2,2,0,658.5,-303650.19,0,0,0,1766.6155 -8293,10213,18389,-9,18390,18388,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7858,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,658.5,-303650.19,0,0,0,1766.6155 -8293,10213,18390,18388,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,5.6140165,4.8769283,0,17,3,81.047707,0,2,2,2019,16,4,40,35,1,4,0,.4745357,.4745357,0,0,0,0,0,1,1,0,0,0,41.34,35.15,50.72,51.02,6.666666666666667,1,1,0,0,7,2,2,0,658.5,-303650.19,0,0,0,1766.6155 -8293,10213,18391,-9,18390,18388,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.87433,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,658.5,-303650.19,0,0,0,1766.6155 -8293,10214,18392,-9,18390,18388,1,1,18,0,2,1,2,0,0,1,4,0,0,0,0,0,-1015.942,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,302,-137879.13,0,0,0,546.16309 -8294,10215,18393,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1090.9006,0,2,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,14.5,1,1,0,4.7802415,0,49.68,37.85,-9,-9,8.333333333333334,1,1,0,0,7,10,1,0,185,638542.63,127924.54,275753.81,0,716.20654 -8295,10216,18394,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.6001568,8.9161043,0,0,0,-892.48517,0,2,3,2019,8,0,41,36,1,0,0,16.58399,16.58399,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,11,8,5,1,190,95457.766,269330.44,0,0,1818.6964 -8296,10217,18395,18396,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,6.0786619,5.9829836,9,10,-11.912593,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0912848,6.0370412,58.15,32.92,47.29,57.89,6.666666666666667,1,1,0,0,0,7,2,1,532.5,592295.31,82543.063,225372.23,0,1456.9365 -8296,10217,18396,18395,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.732635,6.7751446,9,-10,32.105816,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,5.9751973,47.29,57.89,58.15,32.92,8.333333333333334,1,1,0,0,1,7,2,1,532.5,592295.31,82543.063,225372.23,0,1456.9365 -8297,10218,18397,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,4.975255,4.5958958,0,0,0,-949.16199,0,2,2,2019,10,1,16,16,1,1,0,.7757498,.7757498,0,0,0,0,0,1,1,0,0,0,43.75,50.34,-9,-9,8.333333333333334,1,1,0,0,12,9,2,0,1238.5,-186895.14,90923.969,0,0,365.07275 -8297,10218,18398,-9,18397,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.476,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1238.5,-186895.14,90923.969,0,0,365.07275 -8298,10219,18399,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.2052956,4.1215973,0,0,-948.91467,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.806083,4.6331415,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,493,-161343.47,134558.31,90993.719,0,574.8913 -8299,10220,18400,18401,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.5441585,6.2542996,0,41,-18,54.831787,0,3,-9,2019,12,0,84,77,1,0,0,.99461091,.99461091,0,0,0,0,0,1,1,0,0,0,51.71,58.83,55.27,44.81,6.666666666666667,1,1,0,0,12,6,2,1,1021.5,147536.14,109340.71,0,0,4289.9902 -8299,10220,18401,18400,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.1603122,6.2775464,41,18,-41.203556,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4147558,55.27,44.81,51.71,58.83,8.333333333333334,1,1,0,0,9,6,2,1,1021.5,147536.14,109340.71,0,0,4289.9902 -8299,10221,18402,-9,18404,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1130.3972,-9,-9,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,46.82,-9,-9,5,1,1,0,0,0,6,3,1,531.33331,8023.5547,0,0,0,816.37183 -8299,10221,18403,-9,18404,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-842.84277,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,531.33331,8023.5547,0,0,0,816.37183 -8299,10221,18404,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.3278298,7.4473233,0,0,0,-1040.1851,0,-9,-9,2019,12,0,37,37,1,0,0,5.6232781,5.6232781,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,10,6,3,1,531.33331,8023.5547,0,0,0,816.37183 -8300,10222,18405,18406,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,7.6413059,7.962142,0,19,0,230.9156,0,2,1,2019,18,7,21,0,1,7,0,14.813844,14.813844,0,0,0,0,0,0,0,0,4.8061576,0,30.4,56.28,52,55,3.333333333333333,2,3,0,0,10,8,5,1,1292,780874.31,94261.031,568490.13,0,3441.333 -8300,10222,18406,18405,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.766921,8.5475626,0,8,0,-51.586788,0,-9,-9,2019,10,1,35,35,1,1,0,22.035046,22.035046,0,0,0,0,0,0,0,0,3.9915822,0,52,55,30.4,56.28,8.333333333333334,1,1,0,0,1,8,5,1,1292,780874.31,94261.031,568490.13,0,3441.333 -8301,10223,18407,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7036071,7.834693,0,0,0,-1005.6744,0,3,3,2019,10,0,40,41,1,0,0,6.5867887,6.5867887,0,0,0,0,0,0,0,0,0,0,56.16,36.13,-9,-9,5,2,3,0,0,4,9,3,1,550,-173561.27,0,0,0,1381.5614 -8301,10224,18408,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6610737,8.051733,0,0,0,-1024.1405,0,-9,-9,2019,8,0,46,35,1,0,0,7.79951,7.79951,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,5,2,3,0,0,1,9,4,1,389,-239561.16,0,0,0,1241.1272 -8302,10225,18409,18410,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.5130291,8.4933987,51,0,-27.900269,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,9.064949,8.6678114,50.93,39.92,57.33,53.46,8.333333333333334,1,1,0,0,0,8,4,1,185.5,2185678.8,883756.13,649373.25,0,5092.5034 -8302,10225,18410,18409,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.3223734,6.7977471,51,0,-110.59223,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4514704,6.3397913,57.33,53.46,50.93,39.92,8.333333333333334,1,1,0,0,0,8,4,1,185.5,2185678.8,883756.13,649373.25,0,5092.5034 -8303,10226,18411,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.573194,6.768465,0,0,-1106.2418,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,3.6693056,0,15.633071,0,1,1,0,0,6.7546034,59.12,36.62,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,1210,222375.06,59337.973,402354.38,0,2477.6941 -8304,10227,18412,18413,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.0677633,8.0674753,0,1,0,-135.61644,-9,-9,-9,2019,6,0,38,0,1,0,0,12.540433,12.540433,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,8,13,5,1,522.5,74290.031,94678.57,124705.89,91217.328,3442.229 -8304,10227,18413,18412,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.4230671,8.3704033,0,1,0,32.553795,-9,1,2,2019,11,0,38,0,1,0,0,11.136189,11.136189,0,0,0,0,0,0,0,0,5.970819,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,8,13,5,1,522.5,74290.031,94678.57,124705.89,91217.328,3442.229 -8305,10228,18414,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.6688447,6.1780214,0,0,-1123.2146,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.7449236,5.6663151,40.49,30.23,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,878,695384.63,69396.797,144299.08,0,685.14697 -8306,10229,18415,18416,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.052269,7.746913,0,3,-5,263.34888,0,-9,-9,2019,9,2,80,80,1,2,0,3.8876381,3.8876381,0,0,0,0,0,0,0,0,0,0,48.65,51.93,52.3,43.16,0,1,1,0,0,6,12,3,0,1410,-24018.121,15311.129,0,0,1903.7028 -8306,10229,18416,18415,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,7.1608005,7.4307194,0,3,5,8.838048,0,-9,-9,2019,9,2,8,32,1,2,0,22.780693,22.780693,0,0,0,0,0,0,0,0,0,0,52.3,43.16,48.65,51.93,10,1,1,0,0,4,12,3,0,1410,-24018.121,15311.129,0,0,1903.7028 -8307,10230,18417,18418,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.1926231,8.2545977,0,13,3,-88.650414,0,3,3,2019,6,0,37,37,1,0,0,11.75511,11.75511,0,0,0,0,0,0,0,0,2.6675172,0,57.16,56.15,51,52.08,8.333333333333334,1,1,0,0,10,6,5,1,548.5,133968.47,55198.391,174103.59,81844.836,3304.0044 -8307,10230,18418,18417,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.6702166,8.5151386,0,13,-3,58.640541,0,2,2,2019,8,0,37,37,1,0,0,17.074745,17.074745,0,0,0,0,0,0,0,0,2.7434459,0,51,52.08,57.16,56.15,8.333333333333334,1,1,0,0,10,6,5,1,548.5,133968.47,55198.391,174103.59,81844.836,3304.0044 -8308,10231,18419,-9,18420,18422,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1076.7565,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 -8308,10231,18420,18422,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,9.0645914,9.1121864,0,25,-7,43.858002,0,2,2,2019,13,2,45,41,1,2,0,24.455324,24.455324,0,0,0,0,0,0,0,0,0,0,45.73,57.57,58.15,52.91,8.333333333333334,1,1,0,0,11,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 -8308,10231,18421,-9,18420,18422,1,1,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1067.376,-9,1,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.5145276,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 -8308,10231,18422,18420,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.7382565,8.4841623,0,22,7,-2.5808804,0,-9,-9,2019,12,1,37,35,1,1,0,18.011934,18.011934,0,0,0,0,0,0,0,0,0,0,58.15,52.91,45.73,57.57,6.666666666666667,1,1,0,0,11,8,5,1,949.75,5131546.5,2757477.5,1185092.9,178451.38,5856.2466 -8309,10232,18423,18424,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,6.7482262,6.8198581,0,8,-3,-43.843044,0,3,3,2019,7,0,8,16,1,0,0,11.777653,11.777653,0,0,0,0,0,1,1,0,0,0,50.63,50.99,39.1,47.26,6.666666666666667,1,1,0,0,9,6,4,1,1608,253874.47,169261.55,107730.62,22917.395,3068.2329 -8309,10232,18424,18423,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.8787794,8.856061,0,8,3,51.28125,0,-9,-9,2019,12,0,55,55,1,0,0,15.895792,15.895792,0,0,0,0,0,1,1,0,0,0,39.1,47.26,50.63,50.99,3.333333333333333,1,1,0,0,9,6,4,1,1608,253874.47,169261.55,107730.62,22917.395,3068.2329 -8310,10233,18425,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.1794119,7.1284161,0,0,-1056.1475,0,2,2,2019,17,6,0,0,4,6,0,0,0,1,2.9941819,0,31.342787,0,1,1,0,3.2051914,7.3032179,42.86,34.81,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,3301,312184.59,152874.22,142298.16,0,2176.2813 -8311,10234,18426,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-994.94995,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3428221,0,55.27,39.27,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,613,-105243.2,0,0,0,187.08395 -8312,10235,18427,18429,-9,-9,1,0,29,2,5,0,3,3,-9,0,1,0,0,0,4,-2,42.631729,0,-9,-9,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.37,40.65,57.16,56.15,0,1,1,0,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 -8312,10235,18428,-9,18427,18429,1,0,5,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1064.5203,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 -8312,10235,18429,18427,-9,-9,1,1,31,2,5,0,2,2,-9,0,4,7.5602531,7.1513381,0,4,2,81.041122,0,-9,-9,2019,11,1,35,0,1,1,0,4.0564113,4.0564113,0,0,0,0,0,1,1,0,0,0,57.16,56.15,18.37,40.65,8.333333333333334,1,1,0,0,1,4,2,0,1112,145940.23,0,0,0,2791.1741 -8312,10235,18430,-9,18427,18429,1,0,9,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1016.4709,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 -8312,10235,18431,-9,18427,18429,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-991.62866,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 -8312,10235,18432,-9,18427,18429,1,1,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1006.6924,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 -8312,10235,18433,-9,18427,18429,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-967.12042,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1112,145940.23,0,0,0,2791.1741 -8313,10236,18434,18435,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.6476936,9.5633488,0,6,2,70.997269,0,2,2,2019,11,1,45,40,1,1,0,45.203903,45.203903,0,0,0,0,0,0,0,0,0,0,55,53,57.16,56.15,6.666666666666667,1,1,0,0,7,12,5,1,594.5,1634868.8,1620672.6,67291.813,288.17529,5768.2212 -8313,10236,18435,18434,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.7113762,6.6109719,6,-2,-50.942566,0,2,2,2019,11,0,0,21,4,0,0,0,0,0,0,0,0,14.5,0,0,0,3.1297388,6.5056286,57.16,56.15,55,53,10,1,1,0,0,7,12,5,1,594.5,1634868.8,1620672.6,67291.813,288.17529,5768.2212 -8314,10237,18436,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.961647,7.6796255,0,0,0,-1142.0328,0,3,3,2019,10,0,33,33,1,0,0,9.2969532,9.2969532,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,700,10209.539,176955.02,0,0,1792.0581 -8315,10238,18437,18438,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3961248,8.3828764,0,8,-4,98.759598,0,2,2,2019,9,0,38,37,1,0,0,13.059034,13.059034,0,0,0,0,0,0,0,0,4.9080176,0,52,54.51,54.96,42.64,8.333333333333334,1,1,0,0,9,10,5,1,531,651705.63,102893.6,639736.63,0,3087.3186 -8315,10238,18438,18437,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.6657195,7.8982649,6.6991315,8,4,-4.6811643,0,3,2,2019,7,0,30,22,1,0,0,9.3545265,9.3545265,0,0,0,0,0,0,0,0,5.9839277,6.5668006,54.96,42.64,52,54.51,6.666666666666667,1,1,0,0,9,10,5,1,531,651705.63,102893.6,639736.63,0,3087.3186 -8316,10239,18439,-9,-9,-9,1,0,55,0,0,0,1,1,-9,1,2,0,0,0,0,0,-957.45801,0,3,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,34.13,-9,-9,5,1,1,0,0,0,12,1,0,1234,449548.06,0,0,0,1426.6882 -8317,10240,18440,-9,18441,18442,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1019.5707,-9,2,2,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,20.47,72.79000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1017.6667,1865074.9,692194.38,437964.19,0,2689.4238 -8317,10240,18441,18442,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.2832241,7.9512577,0,22,-30,-108.85128,0,3,2,2019,7,0,60,30,1,0,0,5.3993168,5.3993168,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.04,55.86,10,1,1,0,0,9,9,4,1,1017.6667,1865074.9,692194.38,437964.19,0,2689.4238 -8317,10240,18442,18441,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.9716811,6.5530605,22,30,23.775282,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4776802,6.3985124,49.04,55.86,57.06,57.76,5,1,1,0,0,5,9,4,1,1017.6667,1865074.9,692194.38,437964.19,0,2689.4238 -8318,10241,18443,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.8918734,6.6405969,0,0,-992.36755,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8845663,6.8980827,48.53,50.88,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,691,-242713.69,0,0,0,1547.4155 -8319,10242,18444,18445,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.7785063,8.7435551,0,4,5,-18.612362,0,-9,-9,2019,10,0,39,40,1,0,0,26.267508,26.267508,0,0,0,0,0,0,0,0,3.623677,0,49.41,58.28,50.14,53.97,8.333333333333334,1,1,0,0,5,7,5,1,299.5,266285.91,94371.289,0,0,4967.3018 -8319,10242,18445,18444,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,9.0328074,9.1345778,0,4,-5,-41.582592,0,-9,-9,2019,11,0,42,43,1,0,0,16.715982,16.715982,0,0,0,0,0,0,0,0,0,0,50.14,53.97,49.41,58.28,6.666666666666667,1,1,0,0,7,7,5,1,299.5,266285.91,94371.289,0,0,4967.3018 -8320,10243,18446,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.3217301,6.1511211,0,0,-1031.1747,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2046759,6.2166858,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,694,95445.234,93403.883,0,0,887.22687 -8321,10244,18447,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-999.98767,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,16.928623,0,0,1,1,0,0,0,43.01,22.52,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,665,13264.474,-70198.211,0,0,1783.7402 -8322,10245,18448,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,5,0,7.028769,7.1879439,0,0,-1208.4464,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.21106672,7.274631,56.67,53.83,-9,-9,10,1,1,0,0,0,7,2,0,905,-3848.9153,-77900.313,0,0,935.91327 -8323,10246,18449,-9,18452,18451,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.09198,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 -8323,10246,18450,-9,18452,18451,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.54346,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 -8323,10246,18451,18452,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,7.4902368,7.5485463,0,7,1,-72.63752,0,3,2,2019,6,0,40,40,1,0,0,4.7040639,4.7040639,0,0,0,0,0,1,1,0,7.1140323,0,62.39,56.71,49,56,8.333333333333334,1,1,0,0,8,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 -8323,10246,18452,18451,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.3452134,7.1318483,0,7,-1,-108.33831,0,1,2,2019,11,0,25,23,1,1,0,6.3781819,6.3781819,0,0,0,0,0,1,1,0,6.4948158,0,49,56,62.39,56.71,7,1,1,0,0,3,12,3,1,330.25,-12295.885,89972.172,0,0,2483.8354 -8324,10247,18453,18454,-9,-9,1,0,42,0,2,0,3,3,-9,1,3,0,0,0,1,-5,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.78,34.44,53.94,45.89,6.666666666666667,1,1,1,1,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 -8324,10247,18454,18453,-9,-9,1,1,47,0,2,0,3,3,-9,1,2,0,0,0,1,5,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.94,45.89,54.78,34.44,5,1,1,1,1,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 -8324,10247,18455,-9,18453,18454,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.12292,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 -8324,10247,18456,-9,18453,18454,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.48035,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,768.75,-54586.211,63001.582,0,0,2713.5439 -8325,10248,18457,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.2712531,5.9092326,0,0,-1177.4241,-9,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.0579143,5.9120631,66.36,32.68,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,117,328011.59,-145882.75,404706.91,0,1394.4027 -8326,10249,18458,18459,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.3841381,8.2054253,0,1,2,23.129749,-9,-9,-9,2019,10,0,50,0,1,1,0,5.3496642,5.3496642,0,0,0,0,0,0,0,0,0,0,50,57,31.19,61.63,7,1,1,0,0,1,11,5,1,1263.5,258828.97,-12264.115,339976.25,214231.38,3509.356 -8326,10249,18459,18458,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.7737188,8.6380463,0,1,-2,-53.939445,-9,3,3,2019,20,8,44,0,1,8,0,15.700935,15.700935,0,0,0,0,0,0,0,0,0,0,31.19,61.63,50,57,6.666666666666667,1,1,0,0,7,11,5,1,1263.5,258828.97,-12264.115,339976.25,214231.38,3509.356 -8327,10250,18460,18461,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.1793652,6.9523306,2,10,-59.843098,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4510275,7.1720762,55.88,43.6,41.3,34.93,6.666666666666667,1,1,0,0,5,8,2,1,997.5,494039.25,225251.28,287729.25,0,2369.5566 -8327,10250,18461,18460,-9,-9,1,0,65,0,0,0,1,1,0,0,3,0,0,0,2,-10,61.433834,-9,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.3535409,0,41.3,34.93,55.88,43.6,6.666666666666667,1,1,0,0,4,8,2,1,997.5,494039.25,225251.28,287729.25,0,2369.5566 -8328,10251,18462,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.9102697,8.32621,0,0,0,-1081.7657,0,2,2,2019,8,0,40,40,1,0,0,18.736681,18.736681,0,0,0,0,0,0,0,0,2.1366336,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1031,1509853.8,1321911.3,93676.047,0,2141.0383 -8329,10252,18463,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.1894083,5.6438594,0,0,-962.20435,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.497117,54.74,57.22,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,169,70747.57,-47080.598,210087.02,0,998.93164 -8330,10253,18464,18465,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,0,0,0,6,5,0,0,3,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.85,54.28,52.18,17.13,6.666666666666667,2,3,1,0,0,8,1,0,2337,-762.0459,0,0,0,1087.5956 -8330,10253,18465,18464,-9,-9,1,0,39,0,0,0,3,3,-9,0,1,0,0,0,22,-5,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.18,17.13,37.85,54.28,3.333333333333333,2,3,1,0,0,8,1,0,2337,-762.0459,0,0,0,1087.5956 -8331,10254,18466,18467,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.2994738,9.5902643,0,11,11,44.463383,0,3,3,2019,12,0,40,40,1,0,0,30.64732,30.64732,0,0,0,0,0,0,0,0,7.5100217,0,43.69,45.94,58.15,52.91,5,2,3,0,0,8,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 -8331,10254,18467,18466,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,6.6055346,6.7165227,0,11,-11,44.672054,0,3,3,2019,1,0,10,0,1,0,0,9.713521,9.713521,0,0,0,0,0,0,0,0,8.3567429,0,58.15,52.91,43.69,45.94,8.333333333333334,2,3,0,0,3,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 -8331,10254,18468,-9,18467,18466,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1941,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 -8331,10254,18469,-9,18467,18466,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.8739,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,5,1,533.5,977611.38,158234.17,703429.38,218212.56,5881.4639 -8332,10255,18470,18471,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7463822,7.6015677,0,5,-2,-147.43762,0,-9,-9,2019,21,9,24,24,1,9,0,9.2366991,9.2366991,0,0,0,0,0,0,0,0,2.4580185,0,29.87,49.76,45.56,47.83,3.333333333333333,1,1,0,0,6,5,4,1,1164,41910.863,69777.43,41255.059,65843.156,2304.103 -8332,10255,18471,18470,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9317555,8.3977394,0,5,2,-10.803483,-9,-9,-9,2019,12,0,40,0,1,0,0,9.8790207,9.8790207,0,0,0,0,0,0,0,0,3.1091058,0,45.56,47.83,29.87,49.76,8.333333333333334,1,1,0,0,6,5,4,1,1164,41910.863,69777.43,41255.059,65843.156,2304.103 -8333,10256,18472,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,0,0,-916.76917,0,2,2,2019,14,4,0,35,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.5,60.14,-9,-9,8.333333333333334,1,1,0,0,12,8,1,0,331,633300.19,0,291497.81,0,1363.3326 -8334,10257,18473,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3831673,8.2777624,0,15,-13,41.022049,0,-9,3,2019,10,0,45,0,1,0,0,11.664642,11.664642,0,0,0,0,0,0,0,0,0,0,52,54.51,44.94,21.37,5,1,1,0,0,9,1,4,0,292,492431.13,115865.27,196332.84,87817.977,2257.4207 -8334,10258,18474,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,15,13,133.53568,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,21.37,52,54.51,1.666666666666667,1,1,1,0,7,1,4,0,997,-337791.66,0,0,0,0 -8335,10259,18475,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.906261,5.8619046,0,0,-928.75751,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8837161,47.04,47.38,-9,-9,6.666666666666667,1,1,0,1,0,8,2,0,260,601733.63,0,256840.61,0,612.78821 -8335,10260,18476,-9,18475,-9,1,1,27,0,0,0,1,1,-9,0,4,7.3182697,7.2682185,0,0,0,-976.31567,0,2,-9,2019,6,0,35,35,1,0,0,5.4280009,5.4280009,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,3,8,3,0,789,84267.297,-12780.618,0,0,707.00696 -8336,10261,18477,-9,18478,-9,1,1,33,0,0,0,2,2,-9,0,1,8.4028139,8.4536972,0,0,0,-799.15948,0,2,-9,2019,11,0,70,46,1,0,0,6.728375,6.728375,0,0,0,0,0,0,0,0,0,0,45.17,44.4,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,535,2728.1543,96.443199,157531.16,145061.55,1553.5892 -8336,10262,18478,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.6881719,7.7051668,5.2941022,0,0,-1020.6376,0,-9,-9,2019,24,11,30,29,1,11,0,8.609684,8.609684,0,0,0,0,0,0,0,0,1.0903667,5.4326806,28.53,45.86,-9,-9,5,1,1,0,0,7,9,3,1,564,-139178.66,0,0,0,1316.9856 -8337,10263,18479,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,3,7.8558812,7.8320642,0,0,0,-965.11572,0,-9,-9,2019,3,0,46,40,1,0,0,7.2134995,7.2134995,0,0,0,0,0,0,0,0,3.0797894,0,61.83,42.07,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,909,169830.78,0,0,0,1532.0549 -8338,10264,18480,-9,18481,18484,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5519,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 -8338,10264,18481,18484,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,7.8415966,7.7608604,0,14,-8,98.689713,0,3,3,2019,5,0,35,10,1,0,0,7.3149314,7.3149314,0,0,0,0,7,1,0,1,6.7979851,0,57.06,57.76,52.65,51.64,10,1,1,0,0,11,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 -8338,10264,18482,-9,18481,18484,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-860.10535,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 -8338,10264,18483,-9,18481,18484,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.6324,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 -8338,10264,18484,18481,-9,-9,1,1,55,0,3,0,3,3,-9,0,3,6.6988635,6.433639,0,9,8,43.360294,-9,-9,-9,2019,13,1,49,0,1,1,0,1.8035549,1.8035549,0,0,0,0,0,1,0,1,.63237453,0,52.65,51.64,57.06,57.76,6.666666666666667,1,1,0,1,11,13,2,1,670.59998,332578.69,114212.78,245560.81,0,3222.1772 -8338,10265,18485,-9,18481,18484,1,0,19,0,3,0,2,2,-9,0,5,0,5.4755516,5.2344337,0,0,-937.49225,1,1,3,2019,10,3,0,15,2,3,1,0,0,0,0,0,0,0,1,0,1,4.958046,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,13,2,1,194,81213.195,0,0,0,728.63757 -8339,10266,18486,18487,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.1409054,8.260829,8,2,21.885647,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0551629,8.441185,54.45,56.22,45.24,46.88,10,1,1,0,0,0,7,4,1,916.5,1573515,799457,681103.63,0,3529.2271 -8339,10266,18487,18486,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.2704344,6.2534595,8,-2,-75.763252,0,2,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,1.7479672,6.2715063,45.24,46.88,54.45,56.22,8.333333333333334,1,1,0,0,0,7,4,1,916.5,1573515,799457,681103.63,0,3529.2271 -8340,10267,18488,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.5581517,7.8665652,0,0,0,-1045.0369,0,2,2,2019,19,7,29,23,1,7,0,8.6988621,8.6988621,0,0,0,0,0,1,1,0,0,0,40.45,52.86,-9,-9,3.333333333333333,1,1,0,1,9,12,2,1,626,-152130.36,0,0,0,1086.3718 -8340,10267,18489,-9,18488,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.6169,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,2,1,626,-152130.36,0,0,0,1086.3718 -8341,10268,18490,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-860.33521,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,8.4221649,0,0,1,1,0,0,0,48.13,26.21,-9,-9,5,1,1,0,0,0,2,1,0,440,-285870,0,0,0,1614.9469 -8342,10269,18491,-9,18492,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.4734669,7.5258861,0,0,-981.62219,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,42,1,1,0,0,7.361259,34.68,51.79,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,188,1173503,408649.97,456723.34,0,153.52574 -8342,10270,18492,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.4276,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,3.3027415,11.747428,0,0,1,1,0,0,0,53.33,25.17,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,193,60072.281,100750.84,0,0,69.303955 -8343,10271,18493,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1047.3434,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,2.5292926,0,26.104179,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,4070,297062.69,0,108496.48,0,1199.8374 -8344,10272,18494,18495,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,6,-17,-15.264607,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,47.3,53.21,7,1,1,0,0,0,13,3,1,427.5,166945.75,93354.844,157883.3,0,8255.1055 -8344,10272,18495,18494,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,7.3101149,8.3053913,7.4767218,6,17,-13.748559,0,3,3,2019,7,0,40,40,1,0,0,4.5253878,4.5253878,0,0,0,0,42,1,1,0,9.1561689,7.5569973,47.3,53.21,49,48,10,1,1,0,0,7,13,3,1,427.5,166945.75,93354.844,157883.3,0,8255.1055 -8345,10273,18496,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.2075658,7.0378666,0,0,0,-882.58569,0,-9,-9,2019,23,11,39,38,1,11,0,3.7469933,3.7469933,0,0,0,0,0,0,0,0,0,0,29.07,53.09,-9,-9,3.333333333333333,1,1,0,0,5,10,3,0,590,-208337.22,182245.47,0,0,693.29669 -8346,10274,18497,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.4566927,8.1270666,7.7945476,0,0,-1010.9206,0,-9,-9,2019,11,0,27,29,1,0,0,7.6191254,7.6191254,0,0,0,0,0,0,0,0,4.4834871,7.861506,58.72,51.29,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,1155,1252700.9,550291.31,580846.94,0,1845.6224 -8346,10275,18498,-9,-9,18497,1,0,36,0,0,0,2,2,-9,0,3,7.3454766,7.6950674,0,0,0,-941.90253,0,-9,1,2019,11,0,38,38,1,0,1,8.2930336,8.2930336,0,0,0,0,0,0,0,0,0,0,41.57,45.88,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,327,-57885.785,-58043.527,0,0,946.40869 -8347,10276,18499,-9,18501,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1041.201,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,4,2,1,814,303895,54551.148,151226.34,63460.477,3045.1108 -8347,10276,18500,-9,18501,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-980.43787,-9,2,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,814,303895,54551.148,151226.34,63460.477,3045.1108 -8347,10276,18501,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,1,6.8085036,7.0017099,6.1062989,0,0,-1070.6017,0,1,1,2019,10,0,16,0,1,0,0,5.4127684,5.4127684,0,0,0,0,2,1,1,0,5.8228335,0,55.37,20.51,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,814,303895,54551.148,151226.34,63460.477,3045.1108 -8348,10277,18502,18504,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,8.0012913,7.6409469,0,6,1,47.104309,0,-9,-9,2019,10,2,40,40,1,2,0,7.3702426,7.3702426,0,0,0,0,0,1,1,0,0,0,55.38,27.27,41.17,59.31,5,1,1,0,0,8,4,4,1,3461.3333,151643.16,34352.52,0,0,3544.1643 -8348,10277,18503,-9,18502,18504,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.455,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,3461.3333,151643.16,34352.52,0,0,3544.1643 -8348,10277,18504,18502,-9,-9,1,1,29,0,1,0,2,2,-9,0,4,8.4832125,8.5295334,0,6,-1,-88.579613,0,1,2,2019,9,2,40,39,1,2,0,10.843423,10.843423,0,0,0,0,0,1,1,0,0,0,41.17,59.31,55.38,27.27,8.333333333333334,1,1,0,0,6,4,4,1,3461.3333,151643.16,34352.52,0,0,3544.1643 -8349,10278,18505,18506,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.6810875,8.4276218,0,2,-4,88.045143,-9,-9,-9,2019,7,0,46,0,1,0,0,9.8479433,9.8479433,0,0,0,0,0,1,1,0,3.0503073,0,50.63,50.99,32.93,43.79,6.666666666666667,1,1,0,0,10,4,4,1,758,1371510.8,983302.69,383739.56,51773.285,3807.4526 -8349,10278,18506,18505,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.9858027,8.4887819,0,20,4,-17.571022,-9,-9,-9,2019,19,7,25,0,1,7,0,17.81064,17.81064,0,0,0,0,0,1,1,0,2.7724473,0,32.93,43.79,50.63,50.99,6.666666666666667,1,1,0,0,11,4,4,1,758,1371510.8,983302.69,383739.56,51773.285,3807.4526 -8349,10278,18507,-9,18506,18505,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-957.21289,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,758,1371510.8,983302.69,383739.56,51773.285,3807.4526 -8350,10279,18508,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.0521722,5.9384484,0,0,-1086.382,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6868815,6.5736241,59.53,56.44,-9,-9,10,1,1,0,0,9,1,2,1,1187,85159.523,155066.97,93950.672,0,1517.8818 -8351,10280,18509,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3926711,7.7414331,0,0,-987.70636,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3052146,7.5221534,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,278,795758.69,395302.66,184781.2,25195.498,1890.1024 -8352,10281,18510,18512,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.0980501,8.2309923,0,9,-1,3.6889424,0,2,1,2019,4,0,25,25,1,0,0,19.411518,19.411518,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,818.66669,-248844.56,0,198640.83,160457.91,4300.0454 -8352,10281,18511,-9,18510,18512,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.30878,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,818.66669,-248844.56,0,198640.83,160457.91,4300.0454 -8352,10281,18512,18510,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,8.7141905,8.4262323,0,9,1,-151.60587,0,2,2,2019,11,3,42,37,1,3,0,15.939879,15.939879,0,0,0,0,0,1,1,0,3.56565,0,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,10,4,5,1,818.66669,-248844.56,0,198640.83,160457.91,4300.0454 -8353,10282,18513,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,1,-4,0,0,2,2,2019,22,10,0,16,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.51,23.31,49,48,1.666666666666667,1,1,1,1,1,4,1,0,79,308413.44,0,0,0,813.79376 -8354,10283,18514,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2805195,8.262929,0,0,0,-1055.7483,0,-9,-9,2019,9,0,42,40,1,0,0,12.65436,12.65436,0,0,0,0,7,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,8,1,4,1,399,339834.91,190720.28,235775.45,75954.586,2131.8923 -8355,10284,18515,18516,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.8538814,7.6619411,0,8,-18,-85.451256,0,3,2,2019,6,0,16,14,1,0,0,14.656481,14.656481,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.17,41.15,8.333333333333334,1,1,0,0,9,13,3,1,1718,1168659.8,932170.13,198695.61,0,2846.9072 -8355,10284,18516,18515,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.2863359,7.437243,8,18,-7.1109786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3892064,57.17,41.15,57.06,57.76,5,1,1,0,0,0,13,3,1,1718,1168659.8,932170.13,198695.61,0,2846.9072 -8356,10285,18517,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1025.6819,0,2,2,2019,12,0,0,50,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,1,0,8,12,1,1,1021,0,0,0,0,0 -8357,10286,18518,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.3536034,8.494215,0,0,0,-1032.4644,0,2,2,2019,12,1,30,30,1,1,0,18.508362,18.508362,0,0,0,0,0,0,0,0,2.31091,0,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,723,519890.13,324186.72,125196.88,66211.43,1601.3531 -8358,10287,18519,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.4976,0,1,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,42.89,62.6,-9,-9,3.333333333333333,2,3,0,0,11,8,1,0,1183,316551.41,0,0,0,-983.33813 -8359,10288,18520,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.9135032,8.0371866,0,0,-967.45587,0,3,3,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.2186294,7.7798848,42.84,55.81,-9,-9,10,1,1,0,0,0,12,3,1,355,-89295.031,0,0,0,1564.2797 -8360,10289,18521,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.0008473,7.0804043,0,0,0,-995.82007,0,2,2,2019,8,0,16,16,1,0,0,8.9002514,8.9002514,0,0,0,0,27,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,174.5,-258414.94,0,0,0,2000.2446 -8360,10289,18522,-9,18521,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-968.1955,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,2,0,174.5,-258414.94,0,0,0,2000.2446 -8361,10290,18523,18524,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.5016651,8.2999439,9,18,100.47446,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,8.414793,30.74,51.49,52.01,43.45,5,1,1,0,0,0,8,5,1,1874,2124222.5,1424022.8,630644.13,0,5247.5259 -8361,10290,18524,18523,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.4062996,8.5192127,0,9,-18,-64.049576,0,3,2,2019,11,0,54,49,1,0,0,9.2782068,9.2782068,0,0,0,0,0,1,1,0,2.379669,0,52.01,43.45,30.74,51.49,8.333333333333334,3,4,0,0,12,8,5,1,1874,2124222.5,1424022.8,630644.13,0,5247.5259 -8361,10291,18525,-9,18524,18523,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-956.84692,-9,1,1,2019,21,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,29.67,55.89,-9,-9,10,3,4,0,0,1,8,1,1,271,0,0,0,0,109.5969 -8362,10292,18526,-9,18528,18529,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.37482,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 -8362,10292,18527,-9,18528,18529,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.1022,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 -8362,10292,18528,18529,-9,-9,1,0,36,0,2,0,1,1,0,1,1,0,0,0,13,-10,0,-9,2,2,2019,29,11,0,0,2,11,0,0,0,0,0,0,0,2,1,1,0,0,0,46,17.21,57.48,31.86,8.333333333333334,1,1,0,0,0,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 -8362,10292,18529,18528,-9,-9,1,1,46,0,2,0,2,2,-9,1,2,0,0,0,13,10,0,0,-9,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.48,31.86,46,17.21,5,1,1,0,0,1,10,1,0,1204.5,-49209.922,0,0,0,3153.7734 -8363,10293,18530,18532,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9790697,8.5698786,0,26,7,66.352692,0,3,3,2019,9,0,37,37,1,0,0,16.245493,16.245493,0,0,0,0,0,1,1,0,0,0,53.71,49.66,48.17,48.12,8.333333333333334,2,3,0,1,8,6,5,1,757,457469.88,4303.9282,310789.91,114122.86,3707.9219 -8363,10293,18531,-9,18532,18530,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.89313,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,757,457469.88,4303.9282,310789.91,114122.86,3707.9219 -8363,10293,18532,18530,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.4113321,8.5460138,0,26,-7,-114.54376,0,-9,-9,2019,7,0,32,33,1,0,0,14.399348,14.399348,0,0,0,0,0,1,1,0,0,0,48.17,48.12,53.71,49.66,6.666666666666667,2,3,0,0,11,6,5,1,757,457469.88,4303.9282,310789.91,114122.86,3707.9219 -8363,10294,18533,-9,18532,18530,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1261.2363,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,6,1,1,1877,0,0,0,0,0 -8364,10295,18534,18535,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,8.1669807,8.2320671,4.2494879,9,1,53.57542,0,3,2,2019,6,0,10,10,1,0,0,46.607338,46.607338,0,0,0,0,0,1,1,0,4.4842911,4.4797525,64.17,46.05,57.16,56.15,10,1,1,0,0,10,11,4,0,840.5,1285248.8,582792,251822.23,0,3350.292 -8364,10295,18535,18534,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,6.5761509,6.8348088,0,9,-1,-21.087729,0,3,3,2019,12,0,20,10,1,0,0,2.8831394,2.8831394,0,0,0,0,0,1,1,0,0,0,57.16,56.15,64.17,46.05,10,1,1,0,0,10,11,4,0,840.5,1285248.8,582792,251822.23,0,3350.292 -8364,10296,18536,-9,18535,18534,1,1,41,0,0,0,3,3,-9,0,4,7.3987966,7.3166919,0,0,0,-1127.65,0,3,3,2019,6,0,25,25,1,0,0,6.4360099,6.4360099,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,5,1,1,0,0,9,11,3,0,715,31595.336,-78777.789,0,0,1259.072 -8365,10297,18537,18538,-9,-9,1,1,61,0,1,0,3,3,-9,0,4,8.8013935,9.1458483,6.8470564,7,10,131.64302,0,3,3,2019,6,0,38,38,1,0,0,17.001196,17.001196,0,0,0,0,0,1,1,0,3.2742705,6.9419675,58.15,52.91,41.42,49.15,1.666666666666667,1,1,0,0,9,9,4,0,440,1156317,719137.31,444227.53,0,3934.4939 -8365,10297,18538,18537,-9,-9,1,0,51,0,1,0,3,3,-9,1,4,6.5812912,6.4630318,0,7,-10,47.420815,0,3,3,2019,14,4,15,15,1,4,0,6.9443636,6.9443636,0,0,0,0,111,1,1,0,0,0,41.42,49.15,58.15,52.91,5,1,1,0,0,6,9,4,0,440,1156317,719137.31,444227.53,0,3934.4939 -8365,10297,18539,-9,18538,18537,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.04578,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,0,440,1156317,719137.31,444227.53,0,3934.4939 -8366,10298,18540,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,28,0,24.632517,0,2,3,2019,4,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,8.5392666,0,51.83,57.2,54.7,51.94,8.333333333333334,1,1,0,0,9,10,2,1,516,-102123.09,0,0,0,972.10394 -8366,10299,18541,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,0,6.6225953,6.8835216,28,0,-33.639751,0,2,2,2019,9,0,0,15,4,0,0,0,0,0,0,0,0,14.5,0,0,0,9.1528902,0,54.7,51.94,51.83,57.2,8.333333333333334,1,1,0,0,9,10,2,1,506,780390.44,243926.45,0,0,2583.4822 -8367,10300,18542,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.72491,-9,1,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29.14,41.34,-9,-9,3.333333333333333,1,1,0,0,6,12,1,1,965,217410.56,0,0,0,22.447195 -8368,10301,18543,18544,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.353548,6.2600431,6,9,-31.21102,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5225191,60.03,45.37,56.94,49.53,8.333333333333334,1,1,0,0,0,9,4,1,608,1542075.9,475240.31,568466.63,0,3163.3359 -8368,10301,18544,18543,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.569561,8.5174904,0,6,0,97.263855,0,3,3,2019,6,0,38,38,1,0,0,12.515952,12.515952,0,0,0,0,0,1,1,0,0,0,56.94,49.53,60.03,45.37,8.333333333333334,1,1,0,0,8,9,4,1,608,1542075.9,475240.31,568466.63,0,3163.3359 -8369,10302,18545,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,5.1637831,6.5302577,6.9774733,0,0,-1017.9397,-9,2,2,2019,13,1,97,0,1,1,0,.19262148,.19262148,0,0,0,0,0,1,0,1,6.1054492,0,41.62,60.42,-9,-9,1.666666666666667,1,1,0,0,11,9,2,0,1393.6666,-108321.15,46120.328,0,0,4691.9873 -8369,10302,18546,-9,18545,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-983.29272,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,2,0,1393.6666,-108321.15,46120.328,0,0,4691.9873 -8369,10302,18547,-9,18545,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.93109,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1393.6666,-108321.15,46120.328,0,0,4691.9873 -8370,10303,18548,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,9.7826395,9.7278652,0,0,0,-880.2002,0,-9,-9,2019,10,0,50,60,1,0,0,31.52191,31.52191,0,0,0,0,2,0,0,0,8.5221252,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,2822,677571.31,79933.531,434143.06,0,5287.3145 -8371,10304,18549,-9,18551,18550,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1065.5856,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 -8371,10304,18550,18551,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,7.3594785,7.5657768,0,2,9,4.1610503,0,-9,-9,2019,15,4,30,30,1,4,0,6.5718608,6.5718608,0,0,0,0,0,0,0,0,0,0,45.7,34.29,45.75,62.87,3.333333333333333,3,4,0,0,6,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 -8371,10304,18551,18550,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,9.4418278,9.1946478,0,2,0,-58.594147,0,2,2,2019,7,0,38,38,1,0,0,33.374336,33.374336,0,0,0,0,0,0,0,0,0,0,45.75,62.87,45.7,34.29,6.666666666666667,3,4,0,0,10,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 -8371,10304,18552,-9,18551,18550,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-973.68427,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,420.5,2798673,1133687.1,1524526,0,5192.3857 -8371,10305,18553,-9,18551,18550,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-969.67554,1,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.42,60.53,-9,-9,8.333333333333334,3,4,0,0,2,8,1,1,838,0,0,0,0,0 -8371,10306,18554,-9,18551,18550,1,0,20,0,1,0,2,2,1,0,5,0,0,0,0,0,-941.13666,-9,1,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,1.666666666666667,3,4,0,0,0,8,1,1,553,29701.156,0,0,0,0 -8372,10307,18555,18556,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.8384047,8.8334532,33,7,-44.668293,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.0934291,8.2088327,54.96,53.17,48.53,58.91,10,1,1,0,0,4,8,5,1,1651.5,2807204,1729368.3,200901.81,0,7485.5693 -8372,10307,18556,18555,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.2668352,9.0661097,0,40,-7,-146.87372,0,3,3,2019,12,2,47,52,1,2,0,27.533094,27.533094,0,0,0,0,2,0,0,0,7.1722407,0,48.53,58.91,54.96,53.17,10,1,1,0,0,9,8,5,1,1651.5,2807204,1729368.3,200901.81,0,7485.5693 -8373,10308,18557,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1532946,7.9446516,0,0,0,-1045.1003,0,2,2,2019,11,0,40,46,1,0,0,9.0079107,9.0079107,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,324,177435.44,60292.383,129695.7,0,2063.3789 -8374,10309,18558,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.7520885,8.7290916,0,0,0,-1120.912,0,2,2,2019,8,1,35,35,1,1,0,21.965347,21.965347,0,0,0,0,0,0,0,0,.19055419,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,356,1279832.9,1311034,168603.14,1052.7793,2544.7212 -8375,10310,18559,18562,-9,-9,1,1,47,0,3,0,2,2,-9,1,3,0,0,0,2,5,0,-9,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,47,21.37,22.93,8.333333333333334,4,5,0,0,0,12,1,0,817,-163339.08,0,0,0,3175.0635 -8375,10310,18560,-9,18562,18559,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-911.8125,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,817,-163339.08,0,0,0,3175.0635 -8375,10310,18561,-9,18562,18559,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1166.0208,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,817,-163339.08,0,0,0,3175.0635 -8375,10310,18562,18559,-9,-9,1,0,42,0,3,0,2,2,-9,1,1,0,0,0,2,-5,0,0,2,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,74.5,1,1,0,0,0,21.37,22.93,38.51,47,1.666666666666667,1,1,0,0,3,12,1,0,817,-163339.08,0,0,0,3175.0635 -8376,10311,18563,18565,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,7.1175356,7.7800426,5.784348,7,7,-2.538831,0,2,2,2019,4,0,45,38,1,0,0,4.8214898,4.8214898,0,0,0,0,42,0,0,0,5.432066,0,49.58,55.59,41.07,60.93,8.333333333333334,1,1,0,0,7,12,4,1,426,853125.56,716688.44,264933.44,100689.95,3037.1064 -8376,10311,18564,-9,18563,18565,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.5817,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,426,853125.56,716688.44,264933.44,100689.95,3037.1064 -8376,10311,18565,18563,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.6610956,8.4092865,0,7,-7,-7.3398695,0,2,2,2019,8,0,40,37,1,0,0,14.941496,14.941496,0,0,0,0,0,0,0,0,.74776989,0,41.07,60.93,49.58,55.59,3.333333333333333,1,1,0,0,8,12,4,1,426,853125.56,716688.44,264933.44,100689.95,3037.1064 -8376,10312,18566,-9,18563,18565,1,1,18,0,1,0,2,2,1,0,5,8.3899593,8.3784618,0,0,0,-798.88043,-9,2,1,2019,6,0,45,0,1,0,1,13.894994,13.894994,0,0,0,0,0,0,0,0,3.3818491,0,54.69,57.47,-9,-9,10,1,1,0,0,1,12,4,1,827,-58901.527,41654.891,86994.883,67726.734,1783.8042 -8377,10313,18567,18568,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,0,0,0,1,-1,0,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,0,0,0,0,0,62.49,55.09,25.3,41.82,8.333333333333334,1,1,1,0,0,10,1,1,2651,226101.16,-1753.0176,0,0,0 -8377,10313,18568,18567,-9,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,1,1,0,0,2,3,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,25.3,41.82,62.49,55.09,0,1,1,1,1,0,10,1,1,2651,226101.16,-1753.0176,0,0,0 -8378,10314,18569,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.0847473,7.251822,0,4,5,-38.075668,0,3,3,2019,12,0,20,38,1,0,0,5.9829283,5.9829283,0,0,0,0,0,1,1,0,4.3714075,0,55.36,51.57,63.71,15.94,8.333333333333334,1,1,0,0,7,2,2,1,1591,12835.773,0,0,0,1018.6392 -8378,10315,18570,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,4,-5,-11.918057,0,-9,-9,2019,7,1,0,38,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,63.71,15.94,55.36,51.57,10,1,1,1,0,9,2,2,1,408,0,0,0,0,411.27664 -8379,10316,18571,18572,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.9055295,7.9518919,5.8113766,34,5,-10.945115,0,3,3,2019,9,0,37,38,1,0,0,7.0531902,7.0531902,0,0,0,0,0,0,0,0,0,5.8662014,49.86,55.31,57.33,53.46,8.333333333333334,1,1,0,0,5,11,5,1,609,796758.38,460441.03,375777.19,236461.64,4445.8564 -8379,10316,18572,18571,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2166624,8.7347212,7.4069886,35,-5,19.825203,0,2,-9,2019,5,0,47,37,1,0,0,13.120305,13.120305,0,0,0,0,0,0,0,0,7.2598295,7.5571823,57.33,53.46,49.86,55.31,8.333333333333334,1,1,0,0,9,11,5,1,609,796758.38,460441.03,375777.19,236461.64,4445.8564 -8380,10317,18573,18574,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1743183,8.457798,0,25,-6,27.575338,0,2,2,2019,11,0,48,55,1,0,0,9.3652983,9.3652983,0,0,0,0,2,0,0,0,0,0,55.19,54.26,45.18,54.77,8.333333333333334,1,1,0,0,10,7,4,1,418,-38460.867,0,0,0,1841.0303 -8380,10317,18574,18573,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,5.8421769,6.4523768,0,25,6,162.38342,0,2,2,2019,12,1,6,6,1,1,0,10.129144,10.129144,0,0,0,0,14.5,0,0,0,0,0,45.18,54.77,55.19,54.26,8.333333333333334,1,1,0,0,10,7,4,1,418,-38460.867,0,0,0,1841.0303 -8380,10318,18575,-9,18574,18573,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-909.47467,-9,2,2,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,2.6257784,0,39.08,57.81,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,198,282153.09,0,0,0,88.08284 -8381,10319,18576,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.8444057,5.5334611,0,0,-1012.0162,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.4111328,43.65,58.28,-9,-9,6.666666666666667,2,3,0,0,4,9,2,0,252,54996.469,34197.855,180252.3,0,2004.0486 -8382,10320,18577,18578,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.3081293,8.4927673,0,1,-1,79.654556,0,1,1,2019,5,0,55,55,1,0,0,8.0660982,8.0660982,0,0,0,0,0,0,0,0,6.1487679,0,58.89,48.6,52,54.51,8.333333333333334,1,1,0,0,3,8,5,0,532.5,251856.28,-89816.359,232997,175267.69,3882.9663 -8382,10320,18578,18577,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.5112886,8.6513186,0,1,1,-7.412096,-9,-9,-9,2019,11,1,41,0,1,1,0,18.468748,18.468748,0,0,0,0,0,0,0,0,0,0,52,54.51,58.89,48.6,8.333333333333334,1,1,0,0,0,8,5,0,532.5,251856.28,-89816.359,232997,175267.69,3882.9663 -8383,10321,18579,18580,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.7177572,6.752811,11,18,101.87729,0,3,3,2019,14,2,0,25,4,2,0,0,0,1,0,3.9038537,0,0,1,1,0,6.8858719,7.041966,35.41,30.02,49.63,54.22,6.666666666666667,1,1,0,0,13,7,3,0,766.5,512349.44,315583.84,0,0,2050.4004 -8383,10321,18580,18579,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8408399,8.1589708,0,11,-18,-81.740494,0,3,3,2019,9,0,38,37,1,0,0,8.8920765,8.8920765,0,0,0,0,88,1,1,0,0,0,49.63,54.22,35.41,30.02,6.666666666666667,1,1,0,0,13,7,3,0,766.5,512349.44,315583.84,0,0,2050.4004 -8384,10322,18581,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.6994305,8.1091747,0,0,0,-943.58435,0,-9,-9,2019,13,1,30,30,1,1,0,9.8713942,9.8713942,0,0,0,0,0,0,0,0,0,0,38.99,51.22,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,891,233949.41,0,51090.668,0,1251.1267 -8385,10323,18582,-9,18585,-9,1,0,37,0,3,0,2,2,-9,0,4,6.5180597,6.5189896,0,0,0,-979.9848,0,2,2,2019,12,0,25,25,1,0,0,3.3282521,3.3282521,0,0,0,0,0,1,1,0,0,0,51.64,57.24,-9,-9,5,1,1,0,0,3,4,2,0,1617,207622.16,-9514.0498,152964.45,0,787.4986 -8385,10324,18583,-9,18585,-9,1,1,31,0,3,0,2,2,-9,0,2,7.9096575,7.5768065,0,0,0,-1051.5392,-9,2,-9,2019,36,12,37,0,1,12,0,9.6065435,9.6065435,0,0,0,0,0,1,1,0,0,0,33.45,51.41,-9,-9,6.666666666666667,1,1,0,0,10,4,3,0,227,-129498.39,-8042.5249,0,0,1971.3633 -8385,10325,18584,-9,18585,-9,1,1,33,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1037.226,-9,2,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,15.81,32.36,-9,-9,0,1,1,0,1,0,4,1,0,797,0,0,0,0,237.55879 -8385,10326,18585,-9,-9,-9,1,0,60,0,3,0,2,2,-9,0,1,0,5.1908989,5.5278463,0,0,-1116.4524,0,-9,-9,2019,19,0,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,0,5.1647158,37,26,-9,-9,5,1,1,0,0,4,4,2,0,493,61188.582,-10086.685,75255.805,0,1380.4719 -8385,10327,18586,-9,18585,-9,1,1,35,0,3,0,2,2,-9,0,5,0,0,0,0,0,-1028.2654,-9,2,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,10,4,2,0,616,53194.855,0,0,0,1579.1407 -8385,10327,18587,-9,-9,18586,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.7086,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,616,53194.855,0,0,0,1579.1407 -8385,10327,18588,-9,-9,18586,1,0,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-983.21844,-9,-9,2,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,4,2,0,616,53194.855,0,0,0,1579.1407 -8385,10327,18589,-9,-9,18586,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1054.9099,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,2,0,616,53194.855,0,0,0,1579.1407 -8385,10328,18590,-9,-9,-9,1,1,63,0,3,0,3,3,-9,0,2,0,0,0,0,0,-886.63965,-9,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,43.98,-9,-9,5,1,1,1,1,0,4,2,0,435,-10273.235,4101.2031,109829.7,0,598.4187 -8386,10329,18591,-9,18594,18592,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-982.64246,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 -8386,10329,18592,18594,-9,-9,1,1,36,2,2,0,1,1,-9,0,4,8.956111,8.9506865,0,10,-3,30.546326,0,2,2,2019,10,2,90,47,1,2,0,8.519948,8.519948,0,0,0,0,0,1,1,0,0,0,55.87,53.99,57.06,57.76,10,1,1,0,0,11,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 -8386,10329,18593,-9,18594,18592,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.9792,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 -8386,10329,18594,18592,-9,-9,1,0,39,2,2,0,2,2,-9,0,5,9.1698055,9.0255384,0,10,3,17.732494,0,2,1,2019,9,1,45,45,1,1,0,18.095585,18.095585,0,0,0,0,0,1,1,0,2.9158049,0,57.06,57.76,55.87,53.99,10,1,1,0,0,11,12,5,1,637.5,477749.28,-23693.924,343676.13,56344.625,6257.2476 -8387,10330,18595,18597,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.0510931,8.1993971,0,1,-1,-44.840054,-9,-9,-9,2019,11,0,30,0,1,0,0,15.542629,15.542629,0,0,0,0,0,1,1,0,.79853618,0,54.2,57.49,52.13,57.22,8.333333333333334,1,1,0,0,10,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 -8387,10330,18596,-9,18595,18597,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.243,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 -8387,10330,18597,18595,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.3268328,7.7743735,0,1,1,9.3897676,-9,1,1,2019,6,0,42,0,1,0,0,7.8339038,7.8339038,0,0,0,0,0,1,1,0,.26671419,0,52.13,57.22,54.2,57.49,8.333333333333334,1,1,0,0,8,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 -8387,10330,18598,-9,18595,18597,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.88367,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1294.5,134743.28,-35754.656,179333.17,131209.91,2694.9089 -8388,10331,18599,18600,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.9875107,7.6969233,0,6,1,42.806648,0,2,3,2019,11,0,20,21,1,0,0,13.274783,13.274783,0,0,0,0,0,0,0,0,0,0,50.09,30.13,54.2,57.49,6.666666666666667,1,1,0,0,6,13,4,1,385,931047.69,638649.63,157666.88,0,2443.8994 -8388,10331,18600,18599,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2720594,7.8237176,0,6,-1,121.65984,0,3,3,2019,8,0,40,40,1,0,0,10.394786,10.394786,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.09,30.13,8.333333333333334,1,1,0,0,7,13,4,1,385,931047.69,638649.63,157666.88,0,2443.8994 -8389,10332,18601,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1096.1046,0,-9,-9,2019,11,0,0,14,3,0,0,0,0,0,0,0,0,7,1,0,1,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,1,1,1,12,1,0,505,368540.47,-10.07506,0,0,555.74573 -8389,10333,18602,-9,-9,18601,1,0,23,0,0,0,2,2,1,0,4,0,0,0,0,0,-944.27466,-9,-9,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,6.666666666666667,1,1,1,0,0,12,1,0,62,55443.723,0,0,0,-19.298182 -8389,10334,18603,-9,-9,18601,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-934.60034,0,-9,3,2019,26,10,0,0,3,10,1,0,0,0,0,0,0,0,1,0,1,0,0,20.19,44.1,-9,-9,0,1,1,0,0,0,12,1,0,567,175.496,0,0,0,1060.9694 -8390,10335,18604,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6372318,8.7325611,0,0,0,-1023.7428,0,2,2,2019,3,0,40,50,1,0,0,21.520439,21.520439,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,656,106187.78,81880.852,325180.22,83808.656,2138.8225 -8391,10336,18605,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,5.6124463,5.3684268,0,0,-1048.9911,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,5.5808001,28.15,23.58,-9,-9,3.333333333333333,1,1,0,0,2,12,2,0,346,-255391.13,-29330.357,109617.23,19325.457,1649.1772 -8392,10337,18606,18608,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.1336117,8.4138775,0,8,-3,63.062412,0,2,2,2019,12,4,42,42,1,4,0,12.970875,12.970875,0,0,0,0,0,1,1,0,0,0,38.41,59.77,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,270.33334,352194.31,246899.47,248172.53,243620.95,4991.0151 -8392,10337,18607,-9,18606,18608,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.32062,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,270.33334,352194.31,246899.47,248172.53,243620.95,4991.0151 -8392,10337,18608,18606,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,9.0000343,8.8658104,0,8,3,132.66307,0,2,2,2019,8,0,55,52,1,0,0,17.430937,17.430937,0,0,0,0,0,1,1,0,3.543937,0,54.2,57.49,38.41,59.77,8.333333333333334,1,1,0,0,8,5,5,1,270.33334,352194.31,246899.47,248172.53,243620.95,4991.0151 -8393,10338,18609,-9,-9,-9,1,0,39,0,3,0,2,2,-9,1,4,7.5038333,8.2692032,7.500597,0,0,-916.48859,0,2,3,2019,12,1,37,24,1,1,0,6.6915331,6.6915331,0,0,0,0,0,1,0,1,6.8524404,0,49.12,57.28,-9,-9,5,1,1,0,0,7,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 -8393,10338,18610,-9,18609,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.91595,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 -8393,10338,18611,-9,18609,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.06415,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 -8393,10338,18612,-9,18609,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.5427,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 -8393,10338,18613,-9,18609,-9,1,0,17,0,3,0,2,2,1,0,4,0,0,0,0,0,-966.14301,-9,2,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,1,0,1,10,3,1,988.40002,58484.297,8611.0283,0,0,4249.23 -8394,10339,18614,18615,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.9698386,7.8339844,5.9951315,36,1,72.820076,0,-9,-9,2019,6,0,40,38,1,0,0,11.060354,11.060354,0,0,0,0,14.5,1,1,0,0,5.2122097,62.39,56.71,53.6,27.65,8.333333333333334,1,1,0,0,9,2,4,0,820,1398762.3,666811.75,328716.38,0,2615.0811 -8394,10339,18615,18614,-9,-9,1,0,59,0,0,0,1,1,-9,0,1,0,6.8779707,7.4718924,36,-1,1.3491365,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9998822,53.6,27.65,62.39,56.71,3.333333333333333,1,1,0,0,6,2,4,0,820,1398762.3,666811.75,328716.38,0,2615.0811 -8395,10340,18616,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,7.8737535,8.0612707,0,0,0,-906.69983,0,-9,-9,2019,6,0,36,35,1,0,0,8.1547117,8.1547117,0,0,0,0,0,1,1,0,0,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,1,9,9,4,0,2213,-133843.78,82112.664,0,0,1294.7006 -8396,10341,18617,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,0,0,-951.93811,0,2,2,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.4420741,0,34.79,44.64,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,200,96232.578,268606.09,138165.73,0,-98.543129 -8397,10342,18618,-9,18620,18621,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1000.329,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,1,0,741,138231.66,0,0,0,1643.3228 -8397,10342,18619,-9,18620,18621,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.41748,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,741,138231.66,0,0,0,1643.3228 -8397,10342,18620,18621,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,9,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52,54.51,8.333333333333334,1,1,1,1,0,2,1,0,741,138231.66,0,0,0,1643.3228 -8397,10342,18621,18620,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,0,0,0,9,0,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,54.79,55.86,8.333333333333334,1,1,1,1,0,2,1,0,741,138231.66,0,0,0,1643.3228 -8397,10342,18622,-9,18620,18621,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1507,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,741,138231.66,0,0,0,1643.3228 -8398,10343,18623,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4867525,8.3094091,0,0,0,-990.2522,0,-9,-9,2019,3,1,37,40,1,1,0,15.212514,15.212514,0,0,0,0,0,0,0,0,4.3614697,0,57.06,57.76,-9,-9,10,1,1,0,0,8,2,5,0,1073,265104.72,-509.13892,0,0,1075.1865 -8399,10344,18624,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5997419,8.8842726,0,0,0,-1015.4169,0,-9,-9,2019,7,0,37,40,1,0,0,21.690922,21.690922,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,5,0,775,0,0,0,0,2506.8308 -8400,10345,18625,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-864.28583,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,50.69,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,189,-51829.793,0,0,0,0 -8401,10346,18626,18629,-9,-9,1,0,28,0,2,0,3,3,-9,0,4,0,0,0,5,-6,36.41853,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,865,86632.313,19682.342,0,0,2518.8403 -8401,10346,18627,-9,18626,18629,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.3299,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,865,86632.313,19682.342,0,0,2518.8403 -8401,10346,18628,-9,18626,18629,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.76129,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,865,86632.313,19682.342,0,0,2518.8403 -8401,10346,18629,18626,18634,18633,1,1,34,0,2,0,2,2,-9,0,4,8.3664789,8.5078831,0,5,6,36.037247,0,3,3,2019,10,0,38,35,1,1,0,12.979559,12.979559,0,0,0,0,0,1,1,0,3.1861739,0,50,57,47,57,7,2,3,0,0,1,8,3,1,865,86632.313,19682.342,0,0,2518.8403 -8401,10347,18630,-9,18634,18633,1,1,27,0,2,0,2,2,-9,0,4,6.8195448,6.8006644,0,0,0,-1181.3187,0,3,3,2019,10,0,30,30,1,1,1,4.0052471,4.0052471,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,2,1,608,33356.77,0,0,0,1094.2238 -8401,10348,18631,-9,18634,18633,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-923.67578,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,1,312,-174272.19,0,0,0,0 -8401,10349,18632,-9,18634,18633,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1062.7819,-9,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,286,-198784.47,0,0,0,-68.780083 -8401,10350,18633,18634,-9,-9,1,1,60,0,2,0,3,3,-9,0,3,0,0,0,7,4,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,2,3,1,0,0,8,1,1,387.5,339619.59,140901.52,273009.75,0,2253.479 -8401,10350,18634,18633,-9,-9,1,0,56,0,2,0,3,3,-9,0,3,0,0,0,41,-4,0,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,1,1,387.5,339619.59,140901.52,273009.75,0,2253.479 -8402,10351,18635,18636,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,0,0,0,5,2,-17.329271,0,-9,-9,2019,27,11,0,32,3,11,0,0,0,0,0,0,0,0,0,0,0,3.1291881,0,14.41,49.49,34.99,38.3,5,1,1,0,0,11,7,5,1,766,178739.02,0,309915.13,108294.82,4076.2539 -8402,10351,18636,18635,-9,-9,1,1,39,0,1,0,2,2,-9,0,2,9.3280706,9.044116,0,5,-2,74.614128,0,1,1,2019,18,6,55,60,1,6,0,22.441133,22.441133,0,0,0,0,0,0,0,0,6.5251551,0,34.99,38.3,14.41,49.49,3.333333333333333,1,1,0,0,8,7,5,1,766,178739.02,0,309915.13,108294.82,4076.2539 -8402,10351,18637,-9,18635,18636,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.6938,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,766,178739.02,0,309915.13,108294.82,4076.2539 -8403,10352,18638,18641,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.7177949,7.2884412,0,22,2,-15.547379,0,2,2,2019,9,0,10,0,1,0,0,18.646572,18.646572,0,0,0,0,0,0,0,0,6.1024132,0,59.32,46.98,41.06,62.04,8.333333333333334,1,1,0,0,1,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 -8403,10352,18639,-9,18638,18641,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.35999,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 -8403,10352,18640,-9,18638,18641,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.63385,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 -8403,10352,18641,18638,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.4288921,9.649745,0,22,-2,-202.90878,0,2,2,2019,10,1,40,49,1,1,0,56.988068,56.988068,0,0,0,0,0,0,0,0,0,0,41.06,62.04,59.32,46.98,6.666666666666667,1,1,0,0,8,9,5,1,739,2050950.4,535246,1411259.8,0,5769.0625 -8404,10353,18642,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.7425346,6.6147337,0,0,0,-1009.8371,0,3,2,2019,8,0,17,16,1,0,0,5.6077981,5.6077981,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,1,12,2,0,728.5,-62384.168,29893.346,0,0,772.42688 -8404,10353,18643,-9,18642,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.2567,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,728.5,-62384.168,29893.346,0,0,772.42688 -8405,10354,18644,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,7.0110526,7.2865276,0,0,-1004.4625,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,14.698097,0,0,1,1,0,1.1711957,7.0124574,42.24,21.56,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,684,740366.69,187183.95,442403.78,0,1129.8065 -8406,10355,18645,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,6.88376,7.0680938,0,0,0,-946.92444,0,3,3,2019,27,11,19,0,1,11,0,6.3010535,6.3010535,0,0,0,0,0,1,1,0,0,0,20.13,32.97,-9,-9,5,1,1,0,0,8,5,2,0,651,240140.72,-25739.318,0,0,2154.7559 -8406,10356,18646,-9,18645,-9,1,1,20,0,0,0,2,2,-9,0,4,7.842432,7.5959439,0,0,0,-911.12732,0,2,3,2019,10,0,37,37,1,2,1,5.0988679,5.0988679,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,3,0,59,-211224.41,0,0,0,468.82843 -8406,10357,18647,-9,18645,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-960.13501,-9,2,-9,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,63.24,45.25,-9,-9,10,1,1,0,0,1,5,1,0,136,65382.574,0,0,0,0 -8407,10358,18648,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.5516157,8.9105816,0,0,0,-945.35431,0,3,2,2019,22,10,32,37,1,10,0,19.055304,19.055304,0,0,0,0,0,0,0,0,0,0,36.65,48.36,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,427,44021.953,50198.73,121321.59,92830.977,1590.4135 -8407,10359,18649,-9,18648,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.77246,-9,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,232,-47531.16,0,0,0,0 -8408,10360,18650,18651,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.6399336,8.6370764,0,10,6,-9.7143545,0,-9,-9,2019,8,0,40,40,1,0,0,17.565115,17.565115,0,0,0,0,0,1,1,0,0,0,51.64,50.48,51.73,58.82,8.333333333333334,1,1,0,0,11,12,4,1,942,308219.31,153528.02,351165.78,111104.3,2991.4653 -8408,10360,18651,18650,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,7.6712251,7.5175881,0,10,-6,2.1875885,0,2,2,2019,5,0,24,38,1,0,0,11.842483,11.842483,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51.64,50.48,6.666666666666667,1,1,0,0,11,12,4,1,942,308219.31,153528.02,351165.78,111104.3,2991.4653 -8408,10360,18652,-9,18651,18650,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-906.26196,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,942,308219.31,153528.02,351165.78,111104.3,2991.4653 -8409,10361,18653,18654,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.3216853,7.2039948,0,6,14,-271.83932,0,2,2,2019,10,2,35,37,1,2,0,3.6564319,3.6564319,0,0,0,0,0,1,1,0,1.3028618,0,40.13,48.89,42.79,64.22,5,1,1,0,1,7,6,4,1,739.33331,1728854.5,1038094.6,185479.25,0,2611.1667 -8409,10361,18654,18653,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.4939709,8.502511,6.0093036,6,-14,77.134102,0,3,3,2019,15,4,30,30,1,4,0,18.388325,18.388325,0,0,0,0,14.5,1,1,0,5.9831357,0,42.79,64.22,40.13,48.89,3.333333333333333,1,1,0,0,7,6,4,1,739.33331,1728854.5,1038094.6,185479.25,0,2611.1667 -8409,10361,18655,-9,18654,18653,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1015.6368,-9,1,1,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,.12169545,0,41.87,59.15,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,739.33331,1728854.5,1038094.6,185479.25,0,2611.1667 -8410,10362,18656,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.032548,8.1226215,0,4,2,76.967499,0,1,2,2019,6,0,54,50,1,0,0,5.7377496,5.7377496,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.77,56.48,8.333333333333334,1,1,0,0,3,2,4,0,81,320013.88,-35536.664,65557.188,45158.875,1333.2953 -8410,10363,18657,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.6798811,7.7059035,0,4,-2,-10.697959,0,-9,-9,2019,12,0,37,40,1,0,0,9.2587891,9.2587891,0,0,0,0,0,0,0,0,0,0,47.77,56.48,51.83,57.2,8.333333333333334,1,1,0,0,2,2,4,0,641,521995.34,-63683.641,0,0,1236.8319 -8411,10364,18658,18659,-9,-9,1,0,22,0,0,0,2,2,1,0,3,7.4503703,7.4926558,0,3,0,39.984028,-9,-9,-9,2019,8,1,13,0,1,1,0,18.993097,18.993097,0,0,0,0,0,1,1,0,0,0,41.57,55.37,48.87,58.55,8.333333333333334,1,1,0,0,4,5,4,0,1397.5,34436.695,74067.992,0,0,2342.3442 -8411,10364,18659,18658,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.0194664,8.0990076,0,3,0,-10.263517,0,-9,-9,2019,6,0,39,41,1,0,0,8.5610676,8.5610676,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.57,55.37,10,1,1,0,0,2,5,4,0,1397.5,34436.695,74067.992,0,0,2342.3442 -8412,10365,18660,18661,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,42,2,20.824619,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.774262,0,54.2,57.49,60.12,54.8,10,1,1,0,0,1,4,3,1,603.5,902515.88,679270.38,276966.75,0,2781.6465 -8412,10365,18661,18660,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8466072,7.9294348,9,-2,.51788306,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1836586,8.2829418,60.12,54.8,54.2,57.49,10,1,1,0,0,0,4,3,1,603.5,902515.88,679270.38,276966.75,0,2781.6465 -8413,10366,18662,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.0606661,8.410183,5.4825511,0,0,-844.18109,0,3,2,2019,4,0,35,37,1,0,0,10.578572,10.578572,0,0,0,0,0,1,1,0,7.3580642,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,240,1233451.4,1084966.4,0,0,2165.9883 -8414,10367,18663,18664,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9133301,8.0101938,10,1,-52.174877,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,4.8717909,7.7862411,46.39,60.99,47.62,56.48,8.333333333333334,1,1,0,0,5,4,4,1,730.5,1571317.9,562415.25,558296.19,0,2991.9614 -8414,10367,18664,18663,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5016079,7.4514418,10,-1,-76.635635,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.6568537,7.5076523,47.62,56.48,46.39,60.99,8.333333333333334,1,1,0,0,4,4,4,1,730.5,1571317.9,562415.25,558296.19,0,2991.9614 -8415,10368,18665,-9,18667,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8132,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,473.66666,-255212.95,0,0,0,1846.2246 -8415,10368,18666,-9,18667,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3733,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,473.66666,-255212.95,0,0,0,1846.2246 -8415,10368,18667,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,1,0,6.6021042,6.0734162,0,0,-1080.1545,0,-9,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.2961721,0,43.42,18.09,-9,-9,0,1,1,0,0,0,4,2,0,473.66666,-255212.95,0,0,0,1846.2246 -8416,10369,18668,18669,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,4.8514595,4.8901567,48,-4,-71.21122,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.5489887,4.9611039,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,0,12,3,1,721.5,1025852,521938.38,189599.53,0,2751.7559 -8416,10369,18669,18668,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.9717445,8.1271591,48,4,-110.22294,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8858573,8.1930552,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,0,12,3,1,721.5,1025852,521938.38,189599.53,0,2751.7559 -8417,10370,18670,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-919.83307,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.24,36.96,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,253,277883.69,0,0,0,1059.9833 -8417,10371,18671,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.0362201,7.115478,0,0,0,-902.03741,0,-9,-9,2019,6,0,18,18,1,0,0,6.8526735,6.8526735,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,257,292211.72,0,0,0,591.06873 -8418,10372,18672,18674,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.8825045,9.6776714,0,26,-1,-80.69191,0,2,1,2019,20,7,45,42,1,7,0,41.367275,41.367275,0,0,0,0,0,0,0,0,0,0,38.09,63.39,59.06,35.36,6.666666666666667,1,1,0,0,9,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 -8418,10372,18673,-9,18674,18672,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.58014,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 -8418,10372,18674,18672,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,7.3171368,7.1940451,0,26,1,28.280298,0,1,2,2019,5,0,13,20,1,0,0,10.603401,10.603401,0,0,0,0,0,0,0,0,1.422496,0,59.06,35.36,38.09,63.39,8.333333333333334,1,1,0,0,5,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 -8418,10372,18675,-9,18674,18672,1,0,17,0,2,1,2,0,0,0,3,0,5.6333117,5.6232533,0,0,-975.11749,-9,1,1,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,6.0675964,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,0,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 -8418,10372,18676,-9,18674,18672,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.3202,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1009.8,728958.94,760918.75,268225.81,98182.156,5922.1494 -8419,10373,18677,-9,18679,18680,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.46454,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 -8419,10373,18678,-9,18679,18680,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-813.93311,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 -8419,10373,18679,18680,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.9289775,8.0252676,0,12,0,-74.870552,0,3,3,2019,9,0,20,19,1,0,0,18.17754,18.17754,0,0,0,0,0,1,1,0,4.2763886,0,48.87,58.55,61.1,41.19,8.333333333333334,1,1,0,0,9,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 -8419,10373,18680,18679,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.5921011,8.7118711,0,12,0,-18.94475,0,2,2,2019,6,0,52,56,1,0,0,12.955137,12.955137,0,0,0,0,0,1,1,0,4.106204,0,61.1,41.19,48.87,58.55,10,1,1,0,0,9,12,4,1,688.5,241934.92,44719.953,119357.37,40787.215,3180.2947 -8420,10374,18681,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.3607893,5.3117032,0,0,-948.41968,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.689467,4.9230347,53,52,-9,-9,10,2,3,0,0,5,7,2,0,319,566933.94,-17510.525,286088.59,0,483.80563 -8421,10375,18682,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.9535847,8.8763666,0,0,0,-1105.059,0,2,1,2019,26,12,50,50,1,12,0,20.191267,20.191267,0,0,0,0,0,0,0,0,2.8585885,0,23.56,60.95,-9,-9,1.666666666666667,2,3,0,0,9,6,5,1,462,98906.141,-47287.887,0,0,2960.3748 -8422,10376,18683,18684,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.8223066,7.1117887,1,-10,-63.807526,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4447093,7.0138936,57.16,56.15,53.14,51.28,8.333333333333334,1,1,0,0,6,9,3,1,399.5,982956.5,380261.31,435768.84,29603.025,2345.7141 -8422,10376,18684,18683,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.2701983,7.1968627,1,10,-31.91403,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7717743,7.1127372,53.14,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,399.5,982956.5,380261.31,435768.84,29603.025,2345.7141 -8423,10377,18685,18686,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.3569984,7.4527988,7,3,12.053131,0,2,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,120,1,1,0,6.2885756,7.4268322,39.74,39.79,51.69,25.61,3.333333333333333,1,1,0,0,0,7,2,1,914.5,1136855.8,0,821283.5,0,2799.2285 -8423,10377,18686,18685,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,44,-3,29.464025,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,4.7295156,246.12537,0,0,1,1,0,2.2009647,0,51.69,25.61,39.74,39.79,5,1,1,0,0,0,7,2,1,914.5,1136855.8,0,821283.5,0,2799.2285 -8424,10378,18687,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1089.0408,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.5,50.28,-9,-9,6.666666666666667,1,1,0,0,2,13,1,0,983,-7655.6367,0,0,0,653.40503 -8425,10379,18688,18690,-9,-9,1,1,63,0,2,0,2,2,-9,0,4,7.4620028,7.3842974,0,37,9,-23.375679,0,-9,2,2019,12,0,24,24,1,0,0,7.7016625,7.7016625,0,0,0,0,0,1,1,0,0,0,34.73,59.76,46.67,55.57,5,1,1,0,0,13,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 -8425,10379,18689,-9,18690,18688,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.3965,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 -8425,10379,18690,18688,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,7.6255803,7.5728216,0,37,0,125.13184,0,2,2,2019,6,0,25,22,1,0,0,7.7323847,7.7323847,0,0,0,0,0,1,1,0,1.4912229,0,46.67,55.57,34.73,59.76,5,1,1,0,0,13,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 -8425,10379,18691,-9,18690,18688,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.26178,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,3,1,1484.25,1822832.8,692399.25,498083.31,0,2113.3938 -8425,10380,18692,-9,18690,18688,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-917.12097,1,2,2,2019,11,0,0,16,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,560,0,0,0,0,0 -8426,10381,18693,18696,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,7.860311,7.6586089,0,1,7,2.0033586,-9,-9,-9,2019,18,7,60,0,1,7,0,4.8154926,4.8154926,0,0,0,0,0,1,1,0,0,0,38.24,25.76,38.22,44.29,3.333333333333333,2,3,0,1,3,8,3,0,774.5,100922.15,0,0,0,3374.4243 -8426,10381,18694,-9,18696,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.60962,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,774.5,100922.15,0,0,0,3374.4243 -8426,10381,18695,-9,18696,18693,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.0107,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,774.5,100922.15,0,0,0,3374.4243 -8426,10381,18696,18693,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,0,0,0,1,-7,-90.375565,-9,2,2,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.22,44.29,38.24,25.76,6.666666666666667,2,3,0,1,0,8,3,0,774.5,100922.15,0,0,0,3374.4243 -8427,10382,18697,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1067.9021,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,38,26,-9,-9,0,1,1,0,1,0,6,1,0,903,-61396.301,0,0,0,321.36496 -8428,10383,18698,-9,18703,18705,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-963.1272,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8428,10383,18699,-9,18703,18705,1,1,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-791.54706,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,0,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8428,10383,18700,-9,18703,18705,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-936.06683,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8428,10383,18701,-9,18703,18705,1,0,17,0,5,1,2,0,0,0,4,0,0,0,0,0,-1070.9099,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8428,10383,18702,-9,18703,18705,1,0,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-989.35425,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8428,10383,18703,18705,-9,-9,1,0,40,0,5,0,2,2,-9,0,4,0,0,0,7,-6,-39.270203,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,3,4,0,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8428,10383,18704,-9,18703,18705,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-976.68842,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8428,10383,18705,18703,-9,-9,1,1,46,0,5,0,3,3,-9,0,4,6.9962573,6.8395872,0,7,6,70.779404,0,2,2,2019,9,0,26,27,1,1,0,3.984246,3.984246,0,0,0,0,14.5,1,1,0,0,0,52,55,49,55,8,3,4,0,1,8,8,2,0,405.75,-219862.64,0,0,0,1578.3497 -8429,10384,18706,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-918.23395,0,-9,1,2019,6,0,0,20,3,0,0,0,0,0,0,0,0,2,1,1,0,2.4959319,0,54.61,51.04,-9,-9,5,1,1,1,0,4,11,1,0,190,285567.69,0,0,0,-23.189548 -8429,10385,18707,-9,-9,18706,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-984.47156,0,-9,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,1,0,0,11,1,0,1139,0,0,0,0,950.19281 -8430,10386,18708,18709,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.8630862,8.284297,6,5,-38.445328,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,26.834045,43.82478,0,0,1,1,0,0,7.8599272,62.29,49.94,31.11,40.97,10,1,1,0,0,0,13,4,1,868.5,1720870.3,1275535,298258.38,0,4341.9609 -8430,10386,18709,18708,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.1007643,8.1563644,6,-5,43.249283,0,1,1,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,14.5,1,1,0,5.2122765,8.2311611,31.11,40.97,62.29,49.94,8.333333333333334,1,1,0,0,2,13,4,1,868.5,1720870.3,1275535,298258.38,0,4341.9609 -8431,10387,18710,18711,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,9.5754528,9.5856895,0,7,-2,5.0997138,0,1,1,2019,7,0,30,36,1,0,0,39.985966,39.985966,0,0,0,0,0,0,0,0,6.6616015,0,54.1,59.11,41.47,58.08,8.333333333333334,1,1,0,0,8,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 -8431,10387,18711,18710,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,.26308554,.18897359,0,7,2,-150.40968,0,-9,-9,2019,14,2,32,43,1,2,0,.00058163807,.00058163807,0,0,0,0,0,0,0,0,5.3359904,0,41.47,58.08,54.1,59.11,8.333333333333334,1,1,0,0,7,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 -8431,10387,18712,-9,18710,18711,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.91882,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 -8431,10387,18713,-9,18710,18711,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.07593,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,466.75,233728.03,132004.03,351461.22,136402.22,4690.188 -8432,10388,18714,18715,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.1244307,8.3690777,53,1,-21.382689,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7854176,7.8403044,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,9,3,1,819.5,920826.75,369582.19,367316.94,0,3825.1626 -8432,10388,18715,18714,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.0139823,6.0454745,53,-1,-118.46198,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5181484,5.9092522,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,819.5,920826.75,369582.19,367316.94,0,3825.1626 -8433,10389,18716,18717,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.6217203,7.6618876,6,-1,-76.510437,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7560763,7.6087704,52.25,53.24,59.26,16.35,8.333333333333334,1,1,0,0,1,7,3,0,792.5,441136.25,346757,332553.63,0,2521.335 -8433,10389,18717,18716,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,6,1,-49.393429,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,59.26,16.35,52.25,53.24,8.333333333333334,1,1,0,0,0,7,3,0,792.5,441136.25,346757,332553.63,0,2521.335 -8434,10390,18718,18720,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,0,0,0,17,0,90.861176,0,2,1,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,50.95,43.05,51.77,58.57,8.333333333333334,1,1,0,0,0,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 -8434,10390,18719,-9,18718,18720,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.4493,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 -8434,10390,18720,18718,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.6236067,8.6015081,0,17,0,88.883064,0,1,1,2019,1,0,50,35,1,0,0,17.007856,17.007856,0,0,0,0,0,1,1,0,0,0,51.77,58.57,50.95,43.05,8.333333333333334,2,3,0,0,12,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 -8434,10390,18721,-9,18718,18720,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9227,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,1216.5,755736.88,320976.94,351865.84,23147.488,2566.4233 -8435,10391,18722,18723,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.2024293,7.0184083,0,11,9,105.50162,0,3,-9,2019,9,0,28,28,1,0,0,4.8419738,4.8419738,0,0,0,0,0,0,0,0,0,0,55.79,52.62,55.96,49.93,6.666666666666667,4,2,0,0,11,4,5,1,731,699516.13,630318.69,161640.91,79159.039,2810.8247 -8435,10391,18723,18722,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.0421553,8.8512707,0,11,0,114.99842,0,3,2,2019,8,0,48,48,1,0,0,13.492468,13.492468,0,0,0,0,0,0,0,0,.30718663,0,55.96,49.93,55.79,52.62,8.333333333333334,1,1,0,0,12,4,5,1,731,699516.13,630318.69,161640.91,79159.039,2810.8247 -8436,10392,18724,18726,-9,-9,1,1,28,1,2,0,2,2,-9,1,5,0,0,0,2,2,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.37,38.76,58.32,50.22,3.333333333333333,2,3,1,0,0,8,1,0,810,273783.81,0,0,0,1007.0256 -8436,10392,18725,-9,18726,18724,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.0756,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,810,273783.81,0,0,0,1007.0256 -8436,10392,18726,18724,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,2,-2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,65.37,38.76,10,2,3,0,0,2,8,1,0,810,273783.81,0,0,0,1007.0256 -8436,10392,18727,-9,18726,18724,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.6328,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,810,273783.81,0,0,0,1007.0256 -8437,10393,18728,18729,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7639203,7.8521528,0,28,1,-88.934471,0,-9,-9,2019,10,0,42,42,1,1,0,7.6906586,7.6906586,0,0,0,0,0,1,1,0,0,0,51,54,53,54,7,2,3,0,0,8,6,3,1,562.5,-13716.766,0,385332.31,64533.762,1052.6232 -8437,10393,18729,18728,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,28,-1,-118.36099,0,3,3,2019,9,0,0,10,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,51,54,7,2,3,0,0,0,6,3,1,562.5,-13716.766,0,385332.31,64533.762,1052.6232 -8438,10394,18730,-9,18731,18733,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.62891,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 -8438,10394,18731,18733,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.4633627,8.8455524,0,9,-2,132.74118,0,2,2,2019,10,1,43,40,1,1,0,14.07554,14.07554,0,0,0,0,0,1,1,0,0,0,57.33,53.46,35.78,55.1,8.333333333333334,1,1,0,0,10,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 -8438,10394,18732,-9,18731,18733,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.7356,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 -8438,10394,18733,18731,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,7.454957,7.8833499,5.6326032,9,2,139.81047,-9,-9,-9,2019,11,0,50,0,1,0,0,4.1760569,4.1760569,0,0,0,0,0,1,1,0,8.5482044,0,35.78,55.1,57.33,53.46,6.666666666666667,1,1,0,0,8,4,4,1,502.75,121112.57,141917.56,149306.06,126779.69,5348.6147 -8439,10395,18734,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.0635691,8.1929617,0,0,0,-866.71381,0,3,-9,2019,2,0,34,30,1,0,0,8.8342991,8.8342991,0,0,0,0,0,1,1,0,0,0,59.96,36.21,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,1184,-118152.83,92161.711,0,0,1486.9116 -8440,10396,18735,18736,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.0095415,7.5074739,38,-7,-20.22249,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9827147,7.6065187,48.93,50.55,54.21,49.46,8.333333333333334,1,1,0,0,0,6,4,1,957.5,1718946.3,1082214.8,446712.69,0,5307.0972 -8440,10396,18736,18735,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.3911009,7.9068356,43,7,135.50203,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8226051,7.7901492,54.21,49.46,48.93,50.55,10,1,1,0,0,0,6,4,1,957.5,1718946.3,1082214.8,446712.69,0,5307.0972 -8441,10397,18737,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.8846531,8.9283342,0,0,0,-944.27716,0,2,2,2019,6,0,46,43,1,0,0,18.41687,18.41687,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,10,5,0,224,159586.72,74614.195,0,0,2939.366 -8442,10398,18738,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.2606492,6.4249616,0,0,-839.04681,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2053456,6.5211453,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,439,256931.13,146079.91,92794.07,0,1229.2755 -8443,10399,18739,18740,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.9742861,8.652216,0,6,-3,50.356415,0,2,2,2019,25,11,38,41,1,11,0,19.181946,19.181946,0,0,0,0,0,1,1,0,0,0,28.97,59.76,47.07,56.64,3.333333333333333,1,1,0,0,5,12,4,1,451.33334,114639.34,114384.05,254967.7,159641.27,3124.5129 -8443,10399,18740,18739,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.0893087,7.1501174,0,6,3,-204.25932,0,-9,-9,2019,8,1,32,28,1,1,0,5.0165205,5.0165205,0,0,0,0,0,1,1,0,0,0,47.07,56.64,28.97,59.76,8.333333333333334,1,1,0,0,9,12,4,1,451.33334,114639.34,114384.05,254967.7,159641.27,3124.5129 -8443,10399,18741,-9,18740,18739,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.7608,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,451.33334,114639.34,114384.05,254967.7,159641.27,3124.5129 -8444,10400,18742,18743,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.0185556,9.0516644,0,16,3,156.72705,0,1,1,2019,10,2,50,53,1,2,0,18.109022,18.109022,0,0,0,0,0,0,0,0,0,0,49.04,55.86,22.9,49.02,6.666666666666667,4,2,0,0,7,9,5,0,1157,327574,-36248.926,0,0,3961.4424 -8444,10400,18743,18742,-9,-9,1,1,46,0,0,0,3,3,-9,0,3,7.9054489,8.1693611,0,7,-3,114.89384,0,-9,-9,2019,35,12,34,41,1,12,0,9.2925873,9.2925873,0,0,0,0,0,0,0,0,0,0,22.9,49.02,49.04,55.86,5,4,2,0,0,9,9,5,0,1157,327574,-36248.926,0,0,3961.4424 -8445,10401,18744,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.6142206,7.7494311,0,0,-843.18262,0,3,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.2878289,7.6573014,42.91,46.48,-9,-9,5,1,1,0,0,0,11,3,0,423,-52291.688,224876.91,211928.77,0,1626.2345 -8446,10402,18745,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.1414547,8.4046841,0,0,0,-957.52771,-9,-9,1,2019,11,1,44,0,1,1,0,10.732558,10.732558,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,839,261832.02,224649.69,216793.17,0,1009.2307 -8447,10403,18746,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1141.8992,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,10.732512,0,0,1,1,0,0,0,39.39,37.66,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,439,734744.19,0,225292.52,0,1079.8815 -8448,10404,18747,18748,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,6,-8,0,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,39.84,40.69,46.37,45.97,8.333333333333334,2,3,0,1,0,5,1,0,2043,450914.06,20889.957,231939.66,0,1357.9949 -8448,10404,18748,18747,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,6,8,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.37,45.97,39.84,40.69,0,2,3,0,1,0,5,1,0,2043,450914.06,20889.957,231939.66,0,1357.9949 -8449,10405,18749,18750,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.2053518,8.1736469,0,5,2,-19.598593,0,-9,-9,2019,9,0,40,40,1,0,0,7.8957524,7.8957524,0,0,0,0,0,0,0,0,3.8903861,0,47.31,48.3,43.92,62.31,6.666666666666667,1,1,0,0,6,2,4,0,407.5,-193742.77,87917.125,148603.95,80940.297,2593.2651 -8449,10405,18750,18749,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.7474761,7.8758969,0,5,-2,31.994957,0,-9,-9,2019,6,0,25,12,1,0,0,10.373929,10.373929,0,0,0,0,0,0,0,0,4.4666376,0,43.92,62.31,47.31,48.3,8.333333333333334,1,1,0,0,5,2,4,0,407.5,-193742.77,87917.125,148603.95,80940.297,2593.2651 -8450,10406,18751,-9,18753,18752,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1055.8326,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 -8450,10406,18752,18753,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,9.3800468,9.7755966,0,7,-6,29.298426,0,2,3,2019,9,0,47,48,1,0,0,42.293087,42.293087,0,0,0,0,0,0,0,0,6.3587098,0,45.81,61.51,43.48,60.97,8.333333333333334,1,1,0,0,8,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 -8450,10406,18753,18752,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.6557188,8.7043781,0,7,6,-21.744324,0,3,3,2019,12,3,34,34,1,3,0,23.757826,23.757826,0,0,0,0,7,0,0,0,4.7420387,0,43.48,60.97,45.81,61.51,8.333333333333334,1,1,0,0,8,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 -8450,10406,18754,-9,18753,18752,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.47192,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,718.75,825918,553477.19,641537.56,245927.63,6662.7129 -8451,10407,18755,18756,-9,-9,1,1,45,1,3,0,2,2,-9,0,4,0,0,0,9,8,0,0,2,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,57.47,37.71,56.96,56.86,8.333333333333334,3,4,1,1,8,8,1,0,715.59998,0,0,0,0,710.89996 -8451,10407,18756,18755,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,9,-8,0,0,-9,-9,2019,8,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,56.86,57.47,37.71,8.333333333333334,3,4,0,1,6,8,1,0,715.59998,0,0,0,0,710.89996 -8451,10407,18757,-9,18756,18755,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.9924,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,715.59998,0,0,0,0,710.89996 -8451,10407,18758,-9,18756,18755,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.72766,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,1,0,715.59998,0,0,0,0,710.89996 -8451,10407,18759,-9,18756,18755,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-912.02386,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,715.59998,0,0,0,0,710.89996 -8452,10408,18760,-9,-9,18761,1,0,36,0,0,0,2,2,-9,0,3,7.7446818,7.6994953,0,0,0,-1042.2039,0,2,2,2019,17,5,51,45,1,5,0,5.7453732,5.7453732,0,0,0,0,0,1,1,0,0,0,37.78,53.03,-9,-9,3.333333333333333,1,1,0,0,6,2,3,1,1020,71685.594,-93374.328,0,0,757.28522 -8452,10409,18761,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.6671238,8.6473036,5.3828316,0,0,-1001.5623,0,2,3,2019,10,1,60,75,1,1,0,10.740097,10.740097,0,0,0,0,7,1,1,0,0,5.7177529,49.22,47.48,-9,-9,5,1,1,0,0,9,2,5,1,344,490239.66,83434.125,364197.78,0,2088.0657 -8453,10410,18762,18763,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,6,-5,-50.555309,0,2,3,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,37,26,48.87,58.55,5,1,1,0,0,0,10,2,1,706,632988.81,341925.88,277253.63,0,1181.5913 -8453,10410,18763,18762,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,5.6524649,7.7586555,7.3522606,6,5,-36.259964,0,3,3,2019,6,0,40,35,1,0,0,.68278944,.68278944,0,0,0,0,2,1,1,0,1.3629798,7.144937,48.87,58.55,37,26,1.666666666666667,1,1,0,0,6,10,2,1,706,632988.81,341925.88,277253.63,0,1181.5913 -8453,10411,18764,-9,18762,18763,1,0,30,0,0,0,3,3,-9,0,4,8.0783319,7.8429923,0,0,0,-1090.0773,-9,2,2,2019,11,0,37,0,1,2,1,9.3789625,9.3789625,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,4,1,1293,73365.938,0,0,0,1135.3597 -8454,10412,18765,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.0199528,8.1071577,6.4827871,0,0,-987.18958,0,-9,-9,2019,9,0,40,40,1,0,0,9.2610016,9.2610016,0,0,0,0,0,1,1,0,6.2610793,6.8012233,57.06,57.76,-9,-9,5,1,1,0,0,11,8,4,1,390,859477.75,691015.19,189831.39,69223.953,1889.0846 -8454,10413,18766,-9,18765,-9,1,1,29,0,0,0,1,1,-9,0,3,3.2593367,3.0814066,0,0,0,-922.76758,0,2,2,2019,22,9,50,47,1,9,1,.08442042,.08442042,0,0,0,0,0,1,1,0,4.1082811,0,29.26,60.76,-9,-9,6.666666666666667,4,2,0,0,7,8,2,1,799,-350312.59,0,0,0,192.66972 -8455,10414,18767,18768,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.8306274,8.7932253,0,3,4,13.914809,0,2,2,2019,6,0,33,48,1,0,0,18.768539,18.768539,0,0,0,0,0,0,0,0,1.9901944,0,57.16,56.15,52.32,57.18,10,1,1,0,0,9,5,5,1,1328,502510.09,260102.91,77638.688,0,5515.5166 -8455,10414,18768,18767,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.9587374,8.8707008,0,3,-4,-35.628441,0,-9,-9,2019,6,0,40,40,1,0,0,26.354452,26.354452,0,0,0,0,14.5,0,0,0,7.8171782,0,52.32,57.18,57.16,56.15,8.333333333333334,1,1,0,0,1,5,5,1,1328,502510.09,260102.91,77638.688,0,5515.5166 -8456,10415,18769,-9,18772,18773,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.44379,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 -8456,10415,18770,-9,18772,18773,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.4917,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 -8456,10415,18771,-9,18772,18773,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.74292,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 -8456,10415,18772,18773,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,7.8254523,8.2998257,0,6,-1,102.29496,0,-9,-9,2019,9,0,10,12,1,0,0,46.833168,46.833168,0,0,0,0,0,1,1,0,2.8718076,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,6,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 -8456,10415,18773,18772,-9,-9,1,1,39,0,3,0,1,1,-9,0,5,8.607934,8.5370035,0,6,1,90.737389,0,2,2,2019,9,0,55,55,1,0,0,11.816631,11.816631,0,0,0,0,0,1,1,0,3.2934971,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,7,5,4,1,1253.8,125140.24,105773.72,0,0,4763.5659 -8457,10416,18774,18775,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,9,-1,-85.524452,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.3109179,0,52,48,43.91,55.39,7,4,1,0,0,0,9,2,1,357,-73351.883,201901.47,0,0,1549.0564 -8457,10416,18775,18774,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.0245919,6.2250543,9,1,59.040733,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6633687,5.8594317,43.91,55.39,52,48,8.333333333333334,1,1,0,0,3,9,2,1,357,-73351.883,201901.47,0,0,1549.0564 -8458,10417,18776,18777,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,9.137742,9.1864376,0,15,0,43.528851,0,2,2,2019,9,0,46,51,1,0,0,20.723635,20.723635,0,0,0,0,0,1,1,0,0,0,51.77,58.57,63.63,51.86,8.333333333333334,3,4,0,0,8,8,5,1,317.66666,1301595.1,1252659.8,217988.23,32678.109,4398.2915 -8458,10417,18777,18776,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.2166042,8.5098553,0,15,9,-30.089035,0,2,1,2019,3,0,54,45,1,0,0,9.3581867,9.3581867,0,0,0,0,0,1,1,0,3.5586169,0,63.63,51.86,51.77,58.57,8.333333333333334,3,4,0,0,8,8,5,1,317.66666,1301595.1,1252659.8,217988.23,32678.109,4398.2915 -8458,10417,18778,-9,18776,18777,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-895.92755,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,317.66666,1301595.1,1252659.8,217988.23,32678.109,4398.2915 -8458,10418,18779,-9,18776,18777,1,0,20,0,1,0,2,2,-9,0,4,7.6536255,7.5581775,0,0,0,-1031.9825,0,1,1,2019,11,0,30,37,1,2,1,7.9437828,7.9437828,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,1,786,67968.406,0,0,0,942.2475 -8459,10419,18780,18781,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3877001,8.7748365,0,36,-1,-32.790638,0,1,2,2019,8,0,40,38,1,0,0,15.276693,15.276693,0,0,0,0,0,0,0,0,0,0,47.5,37.66,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,1546.5,471549.5,195734.41,397775.94,-6572.6069,4990.6563 -8459,10419,18781,18780,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.0594282,9.0088673,0,36,1,132.27176,0,-9,2,2019,8,0,53,38,1,0,0,23.114166,23.114166,0,0,0,0,0,0,0,0,0,0,57.16,56.15,47.5,37.66,8.333333333333334,1,1,0,0,6,9,5,1,1546.5,471549.5,195734.41,397775.94,-6572.6069,4990.6563 -8459,10420,18782,-9,18780,18781,1,0,23,0,0,0,2,2,0,0,4,0,0,0,0,0,-942.25134,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.12,60.58,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,791,-164005.83,0,0,0,0 -8460,10421,18783,-9,18785,18784,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.6208,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,1059.6666,421469.09,154073.69,383215.03,228798.89,7252.6992 -8460,10421,18784,18785,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.8394566,8.8468218,0,6,-2,73.370247,0,-9,-9,2019,9,0,40,40,1,1,0,21.076153,21.076153,0,0,0,0,0,1,1,0,0,0,52,55,58.05,54.52,8,4,1,0,0,1,11,4,1,1059.6666,421469.09,154073.69,383215.03,228798.89,7252.6992 -8460,10421,18785,18784,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.2716379,8.5026989,0,6,2,-34.385017,0,1,1,2019,6,0,30,30,1,0,0,14.190786,14.190786,0,0,0,0,0,1,1,0,8.8938599,0,58.05,54.52,52,55,8.333333333333334,1,1,0,0,7,11,4,1,1059.6666,421469.09,154073.69,383215.03,228798.89,7252.6992 -8461,10422,18786,18787,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5468111,8.7305746,0,6,0,-12.004389,0,-9,-9,2019,9,0,37,42,1,0,0,16.609743,16.609743,0,0,0,0,0,0,0,0,.98632014,0,46.63,59.72,42.18,45.94,8.333333333333334,1,1,0,0,9,2,5,1,926.5,426838.47,73553.836,184235.66,137960.75,2811.7966 -8461,10422,18787,18786,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,7.9818783,8.0957613,0,6,0,-27.472353,0,2,3,2019,16,6,38,37,1,6,0,9.4345999,9.4345999,0,0,0,0,0,0,0,0,0,0,42.18,45.94,46.63,59.72,6.666666666666667,1,1,0,0,5,2,5,1,926.5,426838.47,73553.836,184235.66,137960.75,2811.7966 -8462,10423,18788,18789,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.2940388,8.3463678,0,18,-3,3.7032647,0,-9,-9,2019,8,0,45,45,1,0,0,7.8069892,7.8069892,0,0,0,0,0,1,1,0,0,0,54.79,55.86,40.98,48.98,8.333333333333334,1,1,0,0,7,2,3,1,2707,158942.53,39588.797,46396.691,59465.371,1563.5261 -8462,10423,18789,18788,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,18,3,-27.13238,0,2,2,2019,16,4,0,15,3,4,0,0,0,0,0,0,0,0,1,1,0,2.5161781,0,40.98,48.98,54.79,55.86,6.666666666666667,1,1,0,0,10,2,3,1,2707,158942.53,39588.797,46396.691,59465.371,1563.5261 -8462,10423,18790,-9,18789,18788,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1156.2284,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,2707,158942.53,39588.797,46396.691,59465.371,1563.5261 -8462,10424,18791,-9,18789,18788,1,0,19,0,1,0,2,2,-9,0,3,7.9693208,8.1437483,0,0,0,-1059.5522,0,2,2,2019,8,0,37,38,1,0,1,9.3277435,9.3277435,0,0,0,0,0,1,1,0,0,0,57.6,43.74,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,723,-2338.3357,-51383.629,0,0,1682.2332 -8462,10425,18792,-9,18789,18788,1,1,22,0,1,0,2,2,-9,0,2,7.3801045,7.1787262,0,0,0,-891.29443,0,2,2,2019,7,2,37,39,1,2,1,3.7653782,3.7653782,0,0,0,0,0,1,1,0,0,0,55.6,47.8,-9,-9,6.666666666666667,1,1,0,0,7,2,3,1,103,124969.39,0,0,0,58.900345 -8463,10426,18793,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,7.8843107,8.330122,7.0430465,0,0,-921.7597,0,2,1,2019,9,2,25,23,1,2,0,10.937569,10.937569,0,0,0,0,0,1,1,0,0,7.5635562,57.57,44.16,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,722,840738.31,659501.13,115258.77,0,2643.6101 -8464,10427,18794,-9,18795,-9,1,1,50,0,0,0,3,3,-9,0,4,8.0167122,7.618053,0,0,0,-859.8913,0,3,3,2019,7,1,56,50,1,1,0,5.7843928,5.7843928,0,0,0,0,7,1,1,0,0,0,56.38,53.73,-9,-9,8.333333333333334,1,1,0,0,11,8,4,0,217,258743.91,-142423.28,271273.81,32515.6,1444.9626 -8464,10428,18795,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.1533,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,8,1,0,470,119933.25,0,0,0,381.11099 -8465,10429,18796,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.8389425,8.1515589,6.710361,0,0,-997.96008,0,3,2,2019,10,0,23,23,1,0,0,10.809071,10.809071,0,0,0,0,0,1,1,0,0,7.1099429,53.56,49.66,-9,-9,5,1,1,0,0,11,10,4,1,520,-221560.27,-5270.1631,0,0,1588.4124 -8466,10430,18797,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.1261978,7.9325027,0,0,0,-1044.8636,0,3,3,2019,6,0,70,70,1,0,0,5.8622947,5.8622947,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,0,1,1,0,0,8,13,4,1,204,-327954.34,-45358.652,169227.13,47032.352,2435.7781 -8467,10431,18798,-9,18799,18800,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2092,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 -8467,10431,18799,18800,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7938371,8.2903814,0,1,-5,-25.478254,-9,2,2,2019,10,0,40,0,1,0,0,7.1058106,7.1058106,0,0,0,0,0,1,1,0,0,0,46.9,56.66,57.16,56.15,0,1,1,0,0,7,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 -8467,10431,18800,18799,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.8432512,7.5580082,0,1,5,82.606606,-9,-9,-9,2019,6,0,50,0,1,0,0,5.6015286,5.6015286,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.9,56.66,10,1,1,0,0,9,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 -8467,10431,18801,-9,18799,18800,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.51563,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,1516.75,81336.633,150823.59,148225.06,90094.773,2382.0835 -8468,10432,18802,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.7437811,8.6552753,0,0,0,-919.65082,0,2,3,2019,7,0,45,38,1,0,0,15.380781,15.380781,0,0,0,0,0,0,0,0,3.2012165,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,7,9,5,1,346,-46240.871,9333.2285,0,0,1848.5133 -8469,10433,18803,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1074.4194,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,1.666666666666667,3,4,0,1,1,8,1,0,433,112607.29,0,0,0,1618.7455 -8470,10434,18804,18805,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.3831677,7.2505884,0,38,5,23.212986,0,3,3,2019,6,0,40,32,1,0,0,4.1414824,4.1414824,0,0,0,0,0,1,1,0,0,0,52.73,54.34,38.81,36.33,8.333333333333334,2,3,0,1,6,5,2,0,925.5,834207.13,211583.28,143732.59,0,768.323 -8470,10434,18805,18804,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,38,-5,-5.5246038,0,3,3,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,1.1681319,0,38.81,36.33,52.73,54.34,8.333333333333334,2,3,0,1,0,5,2,0,925.5,834207.13,211583.28,143732.59,0,768.323 -8470,10435,18806,-9,18805,18804,1,1,22,0,0,0,1,1,1,0,4,8.4792261,8.5784817,0,0,0,-974.7757,-9,3,3,2019,18,6,37,0,1,6,1,18.006392,18.006392,0,0,0,0,0,1,1,0,0,0,32.76,57.87,-9,-9,6.666666666666667,2,3,0,0,0,5,5,0,522,-53290.953,-65448.387,0,0,2443.6548 -8471,10436,18807,-9,18810,18808,1,1,16,0,3,1,3,0,-9,0,2,0,0,0,0,0,-963.20245,-9,1,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.48,48.31,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 -8471,10436,18808,18810,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.8726778,9.1549597,0,22,-2,-16.078382,0,2,1,2019,14,2,45,47,1,2,0,18.127913,18.127913,0,0,0,0,0,1,1,0,0,0,37.33,54.67,38.86,59.06,8.333333333333334,1,1,0,0,10,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 -8471,10436,18809,-9,18810,18808,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.46558,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 -8471,10436,18810,18808,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.068789,7.3798614,0,22,2,-25.576239,0,2,2,2019,13,2,21,21,1,2,0,6.0557151,6.0557151,0,0,0,0,0,1,1,0,0,0,38.86,59.06,37.33,54.67,8.333333333333334,1,1,0,0,4,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 -8471,10436,18811,-9,18810,18808,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1032.5197,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,4,1,570,334168.44,132316.16,343938.28,148698.5,3564.2708 -8472,10437,18812,18813,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.9281073,3.0626173,36,-1,81.403229,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0189152,2.8874884,61.55,25.93,59.3,34.68,6.666666666666667,1,1,0,0,0,7,2,1,484.5,40991.945,-72038.172,34154.934,0,833.1853 -8472,10437,18813,18812,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,36,1,14.855872,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,10.095676,0,0,1,1,0,0,0,59.3,34.68,61.55,25.93,8.333333333333334,1,1,0,0,0,7,2,1,484.5,40991.945,-72038.172,34154.934,0,833.1853 -8473,10438,18814,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,8.9601793,9.3463259,8.2433558,0,0,-946.45032,0,2,3,2019,8,1,31,44,1,1,0,26.723421,26.723421,0,0,0,0,2,0,0,0,9.2957268,8.5848494,62.17,28.8,-9,-9,3.333333333333333,1,1,0,0,10,8,5,1,163,1907014.3,867933.25,533361.75,0,6404.0356 -8474,10439,18815,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,8.1996059,7.8540988,0,0,-1018.6346,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8517926,7.7151785,61.01,53.18,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,418,-72018.43,91260.484,0,0,1363.2599 -8475,10440,18816,-9,18818,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.3945,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1816.6666,11118.373,119861.1,33310.805,81029.234,3175.8489 -8475,10440,18817,-9,18818,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.0981,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1816.6666,11118.373,119861.1,33310.805,81029.234,3175.8489 -8475,10440,18818,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.9025927,8.7989378,6.4864101,0,0,-1175.7578,-9,-9,-9,2019,4,0,36,0,1,0,0,19.765137,19.765137,0,0,0,0,0,1,1,0,7.2190866,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1816.6666,11118.373,119861.1,33310.805,81029.234,3175.8489 -8476,10441,18819,18820,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.1118841,9.1641684,7.2209492,37,7,-27.286419,0,3,3,2019,9,0,33,33,1,0,0,27.267103,27.267103,0,0,0,0,0,1,1,0,1.8666329,7.0934758,54.37,54.8,58.51,44.51,8.333333333333334,1,1,0,0,11,9,5,0,327.5,191902.91,152150.41,299003.5,96661.961,5245.4224 -8476,10441,18820,18819,-9,-9,1,0,62,0,0,0,3,3,-9,1,4,7.4113555,7.2567992,4.4661422,37,-7,-79.472954,0,2,3,2019,10,0,38,28,1,0,0,5.1722169,5.1722169,0,0,0,0,0,1,1,0,6.3720255,4.6660905,58.51,44.51,54.37,54.8,10,1,1,0,0,11,9,5,0,327.5,191902.91,152150.41,299003.5,96661.961,5245.4224 -8477,10442,18821,18824,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.7806401,7.996191,0,22,-1,-54.822105,0,1,1,2019,9,0,18,16,1,0,0,15.847767,15.847767,0,0,0,0,0,1,1,0,3.0796096,0,51.36,49.48,32.56,55.43,6.666666666666667,4,2,0,0,11,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 -8477,10442,18822,-9,18821,18824,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.4733,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 -8477,10442,18823,-9,18821,18824,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.75598,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 -8477,10442,18824,18821,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.2277126,7.8988457,0,11,1,-19.283508,0,-9,-9,2019,20,9,30,30,1,9,0,12.467648,12.467648,0,0,0,0,2,1,1,0,3.5857394,0,32.56,55.43,51.36,49.48,1.666666666666667,1,1,0,1,6,7,4,1,383.5,413473.03,159846.64,234398.23,194217.66,3547.8994 -8478,10443,18825,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.5402474,6.5245738,0,0,0,-896.38159,0,2,2,2019,11,0,24,24,1,0,0,3.0523617,3.0523617,0,0,0,0,0,0,0,0,4.2969303,0,41.58,58.16,-9,-9,6.666666666666667,1,1,0,0,13,13,2,1,352,363715.63,210364.97,0,0,-147.73022 -8479,10444,18826,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.9305806,7.9542584,0,0,-949.56122,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.5666573,0,38.126312,0,1,1,0,2.8628373,7.7565284,50.93,39.92,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,80,744668.31,282175.63,89562.68,0,1620.0647 -8480,10445,18827,18828,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.0985384,8.326786,0,8,1,30.57254,0,3,3,2019,12,0,33,30,1,0,0,13.96266,13.96266,0,0,0,0,0,0,0,0,4.2327728,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,11,4,1,460.5,74028.625,132849.22,0,0,2067.4409 -8480,10445,18828,18827,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.8021679,7.9108133,4.9011321,8,-1,38.230907,0,2,2,2019,9,0,44,41,1,0,0,5.8327303,5.8327303,0,0,0,0,0,0,0,0,0,5.1769381,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,5,11,4,1,460.5,74028.625,132849.22,0,0,2067.4409 -8481,10446,18829,18830,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.0314894,6.7330036,0,31,0,102.49001,0,-9,2,2019,16,4,16,18,1,4,0,6.7690182,6.7690182,0,0,0,0,27,0,0,0,0,0,49.23,34.69,38.09,44.98,6.666666666666667,1,1,0,0,9,11,3,0,1046,589779,217416.34,234996.03,0,1644.5924 -8481,10446,18830,18829,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.5322981,7.6719036,5.376924,32,9,16.647678,0,3,2,2019,12,0,34,39,1,0,0,8.1187334,8.1187334,0,0,0,0,0,0,0,0,0,5.2911954,38.09,44.98,49.23,34.69,6.666666666666667,1,1,0,0,9,11,3,0,1046,589779,217416.34,234996.03,0,1644.5924 -8482,10447,18831,18833,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.7217784,7.998457,0,25,-3,-50.921417,0,3,3,2019,6,0,37,0,1,0,0,8.8692694,8.8692694,0,0,0,0,0,1,1,0,0,0,37.73,52.99,57.17,50.61,8.333333333333334,3,4,0,0,1,8,3,0,1223,242420.56,133015.34,0,0,2423.6277 -8482,10447,18832,-9,18831,18833,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.11469,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1223,242420.56,133015.34,0,0,2423.6277 -8482,10447,18833,18831,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,6.8835416,6.7915306,0,25,3,25.829144,0,-9,3,2019,8,0,60,60,1,0,0,1.3115332,1.3115332,0,0,0,0,0,1,1,0,0,0,57.17,50.61,37.73,52.99,6.666666666666667,3,4,0,0,10,8,3,0,1223,242420.56,133015.34,0,0,2423.6277 -8482,10448,18834,-9,18831,18833,1,1,22,0,1,0,2,2,1,0,4,8.8980608,9.0775232,0,0,0,-1000.5085,-9,1,2,2019,3,0,45,0,1,0,1,17.957197,17.957197,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,3,4,0,0,4,8,5,0,471,69817.422,0,279299.38,109000.71,3929.8015 -8483,10449,18835,18836,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.9392748,9.0179176,0,15,0,-3.9376163,0,2,2,2019,8,2,50,51,1,2,0,21.644562,21.644562,0,0,0,0,0,0,0,0,0,0,47.74,53.75,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,630,-54042.227,34292.715,262878.13,187920.28,5447.2891 -8483,10449,18836,18835,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,9.308979,9.5379677,0,15,0,-8.0209646,0,1,1,2019,12,0,43,37,1,0,0,32.10429,32.10429,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.74,53.75,8.333333333333334,1,1,0,0,10,2,5,1,630,-54042.227,34292.715,262878.13,187920.28,5447.2891 -8484,10450,18837,18838,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,8.9738779,8.9759111,6.216043,41,-3,13.072907,0,2,3,2019,5,0,44,43,1,0,0,19.662964,19.662964,0,0,0,0,0,1,1,0,6.3396745,6.3044624,56.34,40.63,57.91,43.45,8.333333333333334,1,1,0,0,12,7,5,1,1253,1046436.4,595691.75,268027.5,0,4460.6499 -8484,10450,18838,18837,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.4164991,5.9445825,41,3,15.851639,0,2,1,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.9742615,6.5147386,57.91,43.45,56.34,40.63,8.333333333333334,1,1,0,0,12,7,5,1,1253,1046436.4,595691.75,268027.5,0,4460.6499 -8485,10451,18839,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.4599438,6.0713272,0,0,0,-1043.1351,0,3,3,2019,9,1,35,40,1,1,0,1.8693819,1.8693819,0,0,0,0,0,1,0,1,0,0,43.05,54.23,-9,-9,3.333333333333333,1,1,0,1,12,11,2,1,727,-18888.037,69345.906,0,0,-395.15671 -8485,10452,18840,-9,18839,-9,1,0,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-979.13452,-9,2,-9,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,1,0,1,0,0,21.28,37.81,-9,-9,1.666666666666667,1,1,0,1,7,11,1,1,439,-359721.97,0,0,0,843.71014 -8486,10453,18841,18842,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.5186749,8.5464258,0,18,1,-121.94179,0,2,2,2019,9,2,45,45,1,2,0,11.095614,11.095614,0,0,0,0,0,1,1,0,0,0,51.78,50.54,48.11,53.76,8.333333333333334,1,1,0,0,8,9,5,0,654,51422.23,43396.859,242224.7,168931.78,6376.811 -8486,10453,18842,18841,-9,-9,1,0,37,1,1,0,3,3,-9,0,5,8.9445782,8.7904568,0,18,-1,-124.83811,0,2,2,2019,8,1,50,60,1,1,0,25.675949,25.675949,0,0,0,0,0,1,1,0,0,0,48.11,53.76,51.78,50.54,8.333333333333334,1,1,0,0,7,9,5,0,654,51422.23,43396.859,242224.7,168931.78,6376.811 -8486,10453,18843,-9,18842,18841,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.87122,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,0,654,51422.23,43396.859,242224.7,168931.78,6376.811 -8487,10454,18844,18845,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5914803,8.4373159,0,6,2,-58.251957,0,-9,-9,2019,9,0,40,40,1,1,0,17.839024,17.839024,0,0,0,0,0,1,1,0,0,0,53,54,57.16,56.15,8,1,1,0,0,1,4,4,1,635,64886.207,73536.625,117523.34,32649.498,2549.2998 -8487,10454,18845,18844,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.7533813,6.7798185,0,6,-2,68.366447,0,2,2,2019,6,0,16,13,1,0,0,7.4763393,7.4763393,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,54,10,1,1,0,0,8,4,4,1,635,64886.207,73536.625,117523.34,32649.498,2549.2998 -8487,10454,18846,-9,18845,18844,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.91437,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,635,64886.207,73536.625,117523.34,32649.498,2549.2998 -8487,10455,18847,-9,18845,18844,1,1,22,0,1,0,2,2,-9,0,4,8.1466951,7.9560251,0,0,0,-969.42444,0,2,2,2019,10,0,39,40,1,1,1,9.9440575,9.9440575,0,0,0,0,0,1,1,0,.63340718,0,49,58,-9,-9,7,1,1,0,0,1,4,4,1,540,25576.418,0,117401.58,121233.28,1500.0515 -8488,10456,18848,-9,18850,18852,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.38531,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 -8488,10456,18849,-9,18850,18852,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.7205,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 -8488,10456,18850,18852,-9,-9,1,0,37,1,3,0,1,1,-9,0,2,8.4402666,8.6972475,0,6,2,-21.358173,0,2,1,2019,22,10,38,47,1,10,0,21.546169,21.546169,0,0,0,0,0,1,1,0,0,0,16.61,51.24,50.08,55.33,3.333333333333333,1,1,0,0,7,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 -8488,10456,18851,-9,18850,18852,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.8195,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 -8488,10456,18852,18850,-9,-9,1,1,35,1,3,0,1,1,-9,0,3,8.5759621,8.3245039,0,6,-2,41.663952,0,1,-9,2019,10,0,41,39,1,0,0,12.850811,12.850811,0,0,0,0,0,1,1,0,0,0,50.08,55.33,16.61,51.24,8.333333333333334,1,1,0,0,7,12,4,1,1004.2,93073.352,137664.84,211108.28,172899.69,3884.8945 -8489,10457,18853,18854,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.2186546,8.3007889,0,2,0,-13.017115,0,-9,3,2019,12,0,39,40,1,0,0,8.7753887,8.7753887,0,0,0,0,2,1,1,0,0,0,49.04,55.86,45.81,61.51,5,1,1,0,0,11,4,4,1,693,118313.71,30177.059,171774.7,88764.227,3091.3264 -8489,10457,18854,18853,-9,-9,1,0,34,0,1,0,2,2,-9,0,5,8.3710012,8.473094,0,6,0,-88.305138,0,2,2,2019,6,0,40,40,1,0,0,15.222855,15.222855,0,0,0,0,0,1,1,0,0,0,45.81,61.51,49.04,55.86,8.333333333333334,1,1,0,0,10,4,4,1,693,118313.71,30177.059,171774.7,88764.227,3091.3264 -8489,10457,18855,-9,18854,18853,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.566,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,693,118313.71,30177.059,171774.7,88764.227,3091.3264 -8490,10458,18856,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.2019315,7.2441888,0,0,0,-1008.9882,0,2,2,2019,8,1,37,37,1,1,0,3.8054233,3.8054233,0,0,0,0,0,0,0,0,2.3043666,0,51.82,38.48,-9,-9,8.333333333333334,3,4,0,0,12,8,3,1,371,291867.28,-112465.58,104402.98,0,437.22449 -8491,10459,18857,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,5.3539095,5.0979013,0,0,-960.38043,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,5.7051239,4.6676607,50.119007,0,1,1,0,0,5.3235807,54.53,17.3,-9,-9,3.333333333333333,3,4,0,0,0,8,2,1,615,418072.84,89180.867,0,0,858.20428 -8492,10460,18858,-9,18862,18860,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.79034,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 -8492,10460,18859,-9,18862,18860,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.2073,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 -8492,10460,18860,18862,18863,-9,1,1,44,0,3,0,3,3,-9,0,4,7.5305471,7.4421682,0,9,11,120.76672,0,3,3,2019,9,0,24,24,1,1,0,7.3076668,7.3076668,0,0,0,0,0,1,1,0,0,0,51,56,48,57,7,2,3,0,0,12,8,2,0,853.40002,42261.262,0,0,0,1548.8269 -8492,10460,18861,-9,18862,18860,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.05573,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 -8492,10460,18862,18860,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,9,-11,-125.73026,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,2,3,0,0,0,8,2,0,853.40002,42261.262,0,0,0,1548.8269 -8492,10461,18863,-9,-9,-9,1,0,77,0,3,0,3,3,-9,0,3,0,0,0,0,0,-991.84235,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,8,1,0,429,-154363.47,0,0,0,592.55493 -8493,10462,18864,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.00079,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,41.28,57.99,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,358,-187416.84,0,0,0,568.43414 -8494,10463,18865,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7981987,8.7344608,0,0,0,-994.01593,0,2,3,2019,10,1,41,0,1,1,0,14.277106,14.277106,0,0,0,0,0,1,1,0,0,0,49.87,44.61,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,1201,436549.38,22769.643,0,0,2594.7239 -8495,10464,18866,-9,18868,18867,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.81567,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,1,431.33334,521236.38,237851.22,422628.44,0,2450.3457 -8495,10464,18867,18868,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,7.9220886,7.6564126,0,13,15,-50.532097,0,2,2,2019,6,0,16,15,1,0,0,18.88982,18.88982,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.78,59.38,8.333333333333334,2,3,0,0,10,8,3,1,431.33334,521236.38,237851.22,422628.44,0,2450.3457 -8495,10464,18868,18867,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.6781683,7.6087475,0,13,-15,49.190788,0,2,2,2019,11,1,60,17,1,1,0,4.145946,4.145946,0,0,0,0,0,1,1,0,0,0,46.78,59.38,54.96,53.17,8.333333333333334,2,3,0,0,10,8,3,1,431.33334,521236.38,237851.22,422628.44,0,2450.3457 -8496,10465,18869,-9,18871,18872,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5693,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 -8496,10465,18870,-9,18871,18872,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.9296,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 -8496,10465,18871,18872,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.4133816,7.9573069,0,5,-4,-88.540771,0,3,3,2019,11,1,22,39,1,1,0,20.000401,20.000401,0,0,0,0,0,1,1,0,0,0,55.19,51.55,50.03,52.62,8.333333333333334,1,1,0,0,10,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 -8496,10465,18872,18871,-9,-9,1,1,38,1,2,0,2,2,-9,0,3,9.4838581,9.1315594,0,5,4,107.42066,0,-9,-9,2019,5,0,50,50,1,0,0,27.396023,27.396023,0,0,0,0,0,1,1,0,0,0,50.03,52.62,55.19,51.55,8.333333333333334,1,1,0,0,11,13,5,1,866.25,98134.719,159007.42,172703.08,133022.22,5479.6104 -8497,10466,18873,18874,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9319968,7.8508873,0,3,2,-117.46889,0,-9,-9,2019,12,1,50,45,1,1,0,7.6543841,7.6543841,0,0,0,0,0,0,0,0,0,0,45.1,46.88,21.39,56.34,8.333333333333334,1,1,0,0,5,9,5,1,637,-94741.484,0,0,0,3138.3647 -8497,10466,18874,18873,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.3932447,8.6866217,0,3,-2,111.35065,0,-9,-9,2019,24,9,62,49,1,9,0,7.1246471,7.1246471,0,0,0,0,0,0,0,0,0,0,21.39,56.34,45.1,46.88,6.666666666666667,1,1,0,0,4,9,5,1,637,-94741.484,0,0,0,3138.3647 -8498,10467,18875,-9,-9,-9,1,0,69,0,2,0,2,2,-9,0,3,0,6.8318477,7.0246825,0,0,-1068.448,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6700726,7.5220742,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,269,1497247,394818.81,555620.06,0,1518.6013 -8499,10468,18876,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.0405312,7.6089716,0,0,0,-1097.7726,0,3,2,2019,7,2,35,22,1,2,0,9.2454987,9.2454987,0,0,0,0,0,1,1,0,7.001925,0,42.22,58.79,-9,-9,6.666666666666667,1,1,0,0,5,8,3,0,1016,-155820.48,0,0,0,2742.6875 -8499,10468,18877,-9,18876,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.975,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,1016,-155820.48,0,0,0,2742.6875 -8499,10469,18878,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,8.0549164,7.9875221,0,0,0,-1045.8767,-9,-9,-9,2019,34,12,43,0,1,12,0,8.58496,8.58496,0,0,0,0,0,1,1,0,0,0,14.03,54.62,-9,-9,5,1,1,0,1,1,8,4,0,318,-137303.16,0,0,0,1633.8069 -8500,10470,18879,18880,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.7206812,8.817584,0,26,-8,-29.319166,0,3,3,2019,19,7,37,37,1,7,0,18.650545,18.650545,0,0,0,0,0,1,1,0,0,0,34.57,50.44,27.46,43.04,3.333333333333333,1,1,0,1,10,2,4,1,729.5,611409.5,376105.59,122271.52,0,2380.5352 -8500,10470,18880,18879,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,24,8,-76.62632,0,3,3,2019,20,8,0,47,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.46,43.04,34.57,50.44,1.666666666666667,1,1,0,0,10,2,4,1,729.5,611409.5,376105.59,122271.52,0,2380.5352 -8500,10471,18881,-9,18879,18880,1,1,21,0,0,0,2,2,-9,0,3,8.0811148,8.1743441,0,0,0,-954.29102,0,2,2,2019,22,10,36,33,1,10,1,11.247435,11.247435,0,0,0,0,0,1,1,0,0,0,26.01,61.11,-9,-9,3.333333333333333,1,1,0,0,3,2,4,1,204,226755.3,-60838.602,0,0,1165.6168 -8501,10472,18882,-9,18883,18885,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.30267,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 -8501,10472,18883,18885,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,9.1897039,9.0299473,0,9,-2,-77.511497,0,1,1,2019,12,1,29,30,1,1,0,51.70002,51.70002,0,0,0,0,0,0,0,0,7.643971,0,49.31,58.56,51.77,58.57,8.333333333333334,1,1,0,0,9,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 -8501,10472,18884,-9,18883,18885,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1148.9191,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 -8501,10472,18885,18883,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,9.4618921,9.4557123,0,9,2,-39.158073,0,-9,-9,2019,11,0,48,42,1,0,0,22.396343,22.396343,0,0,0,0,0,0,0,0,7.2204413,0,51.77,58.57,49.31,58.56,8.333333333333334,1,1,0,0,9,8,5,1,869,330678.66,54901.281,388730.75,240363.45,7997.2441 -8502,10473,18886,18887,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,6,-8,0,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,14.65706,14.395828,131.17654,0,1,1,0,0,0,41.13,22.99,37.07,26.67,1.666666666666667,2,3,0,0,0,6,1,1,657,164473.11,0,109823.27,0,2249.0593 -8502,10473,18887,18886,-9,-9,1,1,91,0,0,0,3,3,-9,0,1,0,0,0,6,8,0,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,37.07,26.67,41.13,22.99,1.666666666666667,2,3,0,0,0,6,1,1,657,164473.11,0,109823.27,0,2249.0593 -8503,10474,18888,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.4548035,8.5145197,0,0,0,-958.30756,0,2,2,2019,11,0,32,36,1,0,0,18.720413,18.720413,0,0,0,0,0,1,1,0,0,0,40.92,43.43,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,1006.5,22856.75,36077.922,48305.332,57604.328,2158.4504 -8503,10474,18889,-9,18888,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.44702,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,0,1006.5,22856.75,36077.922,48305.332,57604.328,2158.4504 -8504,10475,18890,18891,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,3.6179636,3.6519127,8,7,172.43411,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,4.3308554,0,120,1,1,0,0,3.2428362,57.93,48.96,50.4,51.01,10,1,1,0,0,0,4,2,0,1452,262741.59,15674.56,0,0,1838.4725 -8504,10475,18891,18890,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,3.8877449,3.6597469,8,-7,-72.760826,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9118185,3.6617596,50.4,51.01,57.93,48.96,0,1,1,0,0,0,4,2,0,1452,262741.59,15674.56,0,0,1838.4725 -8505,10476,18892,18893,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.8970437,8.1733379,57,5,31.879826,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1179547,8.0983219,59.95,28.04,41.17,35.06,1.666666666666667,1,1,0,0,0,7,3,1,368,446241.19,61580.609,242023.22,0,2871.6885 -8505,10476,18893,18892,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,57,-5,-87.046318,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,35.06,59.95,28.04,6.666666666666667,1,1,0,0,10,7,3,1,368,446241.19,61580.609,242023.22,0,2871.6885 -8506,10477,18894,-9,-9,18895,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.677,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,344,-259365.75,-101024.81,0,0,2938.4214 -8506,10477,18895,-9,18897,18896,1,1,38,0,1,0,2,2,-9,0,4,8.543004,8.6780968,0,0,0,-994.67297,0,3,3,2019,4,0,40,48,1,0,1,14.537065,14.537065,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,344,-259365.75,-101024.81,0,0,2938.4214 -8506,10478,18896,18897,-9,-9,1,1,59,0,1,0,3,3,-9,0,2,0,0,0,6,0,0,0,-9,-9,2019,6,0,0,45,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.68,38.6,47.07,26.08,10,1,1,1,0,9,11,1,1,296.5,-34942.75,0,0,0,0 -8506,10478,18897,18896,-9,-9,1,0,59,0,1,0,3,3,-9,1,1,0,0,0,6,0,0,0,-9,-9,2019,8,1,0,38,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,26.08,54.68,38.6,8.333333333333334,1,1,0,0,12,11,1,1,296.5,-34942.75,0,0,0,0 -8507,10479,18898,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,8.2212496,7.5722208,0,0,0,-950.21411,0,2,3,2019,24,11,37,37,1,11,0,8.3258648,8.3258648,0,0,0,0,0,1,1,0,2.8925197,0,34.22,20.89,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,90,7943.5679,125019.87,150727.03,75531.719,1796.0975 -8508,10480,18899,-9,18901,18903,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-944.11499,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 -8508,10480,18900,-9,18901,18903,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.6307,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 -8508,10480,18901,18903,-9,-9,1,0,46,2,4,0,1,1,-9,0,3,5.3295193,5.4705796,0,3,1,27.853405,0,1,2,2019,17,5,60,55,1,5,0,.4597604,.4597604,0,0,0,0,0,1,0,1,0,0,43.6,51.61,57.16,56.15,5,1,1,0,1,11,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 -8508,10480,18902,-9,18901,18903,1,0,10,2,4,1,3,0,-9,0,5,0,0,0,0,0,-1040.1162,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 -8508,10480,18903,18901,-9,-9,1,1,45,2,4,0,2,2,-9,0,4,8.5718489,8.5327501,0,3,-1,2.1640246,0,-9,-9,2019,7,0,70,60,1,0,0,7.7998767,7.7998767,0,0,0,0,0,1,0,1,0,0,57.16,56.15,43.6,51.61,10,1,1,0,1,11,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 -8508,10480,18904,-9,18901,18903,1,0,13,2,4,1,3,0,-9,0,4,0,0,0,0,0,-984.37726,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1020.5,254822.19,46182.656,156366.95,17553.869,4448.7202 -8509,10481,18905,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.4359741,7.6569638,0,0,0,-1091.9174,0,1,1,2019,12,1,24,43,1,1,0,8.9256239,8.9256239,0,0,0,0,0,0,0,0,2.1122584,0,52.43,55.57,-9,-9,8.333333333333334,4,2,0,0,2,8,3,0,330,147307.86,0,0,0,1437.4746 -8510,10482,18906,-9,18908,18907,1,1,16,0,3,1,3,0,-9,0,2,0,0,0,0,0,-842.15143,-9,2,2,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,0,1,0,0,43.01,55.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,580,254075.39,106189.23,99999.484,31604.061,1750.7175 -8510,10482,18907,18908,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,7.9033899,7.9971485,0,23,-2,76.246689,0,-9,-9,2019,10,0,40,34,1,0,0,8.8872442,8.8872442,0,0,0,0,0,1,0,1,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,12,4,2,0,580,254075.39,106189.23,99999.484,31604.061,1750.7175 -8510,10482,18908,18907,-9,-9,1,0,51,0,3,0,2,2,-9,0,4,0,0,0,23,2,122.16752,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,580,254075.39,106189.23,99999.484,31604.061,1750.7175 -8510,10483,18909,-9,18908,18907,1,1,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-966.9425,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,414,96098.984,0,85265.445,0,0 -8511,10484,18910,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.9797115,8.6915617,0,0,0,-1062.3153,0,2,-9,2019,7,0,52,52,1,0,0,17.45038,17.45038,0,0,0,0,0,0,0,0,3.4537535,0,57.93,46.29,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,772,-157944.38,109577.42,0,0,2381.8071 -8512,10485,18911,-9,18913,18914,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.89423,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 -8512,10485,18912,-9,18913,18914,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.651,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 -8512,10485,18913,18914,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.356287,8.4300127,0,17,-3,23.271732,0,1,1,2019,11,0,20,20,1,0,0,23.085726,23.085726,0,0,0,0,0,0,0,0,7.0851974,0,54.55,49.1,43.92,62.31,8.333333333333334,1,1,0,0,10,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 -8512,10485,18914,18913,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.7269955,9.6631508,0,17,3,-77.533813,0,2,2,2019,11,0,45,45,1,0,0,36.25164,36.25164,0,0,0,0,0,0,0,0,2.026613,0,43.92,62.31,54.55,49.1,8.333333333333334,1,1,0,0,12,12,5,1,807.5,1541693,918961.88,393521.56,0,8685.7773 -8513,10486,18915,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.1728287,8.3750315,0,0,0,-1004.8007,0,-9,-9,2019,7,1,40,40,1,1,0,11.612354,11.612354,0,0,0,0,0,0,0,0,.56202859,0,42.12,60.4,-9,-9,8.333333333333334,1,1,0,0,1,4,4,0,832,-50067.984,-30965.668,0,0,2053.3469 -8513,10487,18916,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,7.8508272,8.0349121,0,0,0,-1076.6545,0,-9,-9,2019,6,0,43,40,1,0,0,10.230463,10.230463,0,0,0,0,0,0,0,0,.50091308,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,335,441745.94,-33517.676,204286.55,0,1485.1659 -8514,10488,18917,-9,18919,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.2388,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,2,0,398.33334,-104001.08,26735.863,0,0,2324.6892 -8514,10488,18918,-9,18919,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.1158,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,398.33334,-104001.08,26735.863,0,0,2324.6892 -8514,10488,18919,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,7.0807562,7.5173655,6.2442412,0,0,-932.75476,0,1,2,2019,12,0,19,20,1,0,0,7.8881922,7.8881922,0,0,0,0,0,1,0,1,5.9582505,0,46.06,60.24,-9,-9,5,1,1,0,0,8,6,2,0,398.33334,-104001.08,26735.863,0,0,2324.6892 -8515,10489,18920,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4019184,8.4158287,0,0,0,-1100.2588,-9,2,3,2019,7,0,55,0,1,0,0,9.6461201,9.6461201,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,224,99641.828,0,0,0,1953.4135 -8516,10490,18921,-9,18925,18922,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.23553,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 -8516,10490,18922,18925,-9,-9,1,1,48,1,3,0,1,1,-9,0,4,9.4084778,9.2790251,0,6,12,56.75708,0,3,3,2019,12,2,46,45,1,2,0,25.531883,25.531883,0,0,0,0,0,0,0,0,1.6750853,0,49.44,56.93,11.24,45.24,5,1,1,0,0,7,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 -8516,10490,18923,-9,18925,18922,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.6448,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 -8516,10490,18924,-9,18925,18922,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.6201,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 -8516,10490,18925,18922,-9,-9,1,0,36,1,3,0,1,1,-9,0,1,9.1499815,9.0543184,0,6,-12,-6.0791016,0,1,1,2019,33,12,120,60,1,12,0,8.7232676,8.7232676,0,0,0,0,0,0,0,0,3.4941168,0,11.24,45.24,49.44,56.93,3.333333333333333,1,1,0,0,7,9,5,1,419.79999,3444804.5,1995484.5,1070962,299423.53,7076.2314 -8517,10491,18926,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.22253,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,2.5030518,0,25.344191,0,1,1,0,3.4419253,0,51,46,-9,-9,7,1,1,0,0,0,10,1,1,1290,-65538.852,0,176254.94,0,967.37317 -8518,10492,18927,18928,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.9880638,8.1975517,10,1,12.9362,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8986249,7.2157974,53.33,45.84,58.72,43.42,8.333333333333334,1,1,0,0,1,7,3,1,307,1828190.3,712710.13,411108.91,0,3340.4038 -8518,10492,18928,18927,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.1175809,7.1453605,10,-1,-6.501123,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6422224,6.9881663,58.72,43.42,53.33,45.84,8.333333333333334,1,1,0,0,6,7,3,1,307,1828190.3,712710.13,411108.91,0,3340.4038 -8519,10493,18929,18930,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,36,-2,27.495413,0,-9,-9,2019,24,10,0,20,3,10,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.49,44.86,31.62,18.37,1.666666666666667,1,1,0,0,10,2,2,0,1095,-139042.56,0,150736.78,0,1721.6531 -8519,10493,18930,18929,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,4.6077046,4.2509127,36,2,34.960083,0,-9,-9,2019,20,6,0,0,4,6,0,0,0,1,0,30.540678,0,74.5,1,1,0,0,4.3856668,31.62,18.37,41.49,44.86,6.666666666666667,1,1,0,0,0,2,2,0,1095,-139042.56,0,150736.78,0,1721.6531 -8519,10494,18931,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.5075417,7.7226224,0,0,0,-1124.6536,0,-9,-9,2019,11,0,51,32,1,0,0,4.7016439,4.7016439,0,0,0,0,0,1,1,0,0,0,44.89,53.77,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,151,452583.44,-60540.891,0,0,1098.5555 -8520,10495,18932,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1006.9978,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,10.051041,0,2,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,11,1,1,136,-224432.25,0,0,0,439.97284 -8521,10496,18933,18934,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.6140871,8.5088854,6,2,-26.15704,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1114264,8.5268793,56.33,51.02,58.05,54.52,10,1,1,0,0,0,7,4,1,897.5,1900778.5,583301.19,606226.38,0,3725.0771 -8521,10496,18934,18933,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,6,-2,101.17242,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,56.33,51.02,8.333333333333334,1,1,0,0,0,7,4,1,897.5,1900778.5,583301.19,606226.38,0,3725.0771 -8522,10497,18935,18936,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,7.867404,8.1669655,0,2,4,72.167976,0,-9,-9,2019,8,2,30,24,1,2,0,10.294237,10.294237,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.4,45.88,10,2,3,0,0,9,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 -8522,10497,18936,18935,-9,-9,1,0,31,0,3,0,3,3,-9,0,4,0,0,0,9,-4,-113.15501,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.4,45.88,54.2,57.49,0,2,3,1,0,0,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 -8522,10497,18937,-9,18936,18935,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.04852,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 -8522,10497,18938,-9,18936,18935,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.23456,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,1544.25,146875.94,97850.141,0,0,2006.4468 -8523,10498,18939,-9,18942,18941,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.5045,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 -8523,10498,18940,-9,18942,18941,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.97314,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 -8523,10498,18941,18942,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.6568823,9.5550776,0,6,4,-54.324238,0,-9,-9,2019,11,0,70,60,1,0,0,25.840132,25.840132,0,0,0,0,0,0,0,0,3.2070212,0,34.36,48.31,26.49,68.48,5,2,3,0,0,13,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 -8523,10498,18942,18941,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.9514065,8.8647041,0,11,-4,139.71277,0,1,3,2019,12,0,35,25,1,0,0,27.951105,27.951105,0,0,0,0,0,0,0,0,0,0,26.49,68.48,34.36,48.31,6.666666666666667,2,3,0,0,11,6,5,1,678.5,977612.5,713852.63,605376.06,368371.78,9803.7715 -8524,10499,18943,18944,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.7575898,6.3558931,47,2,-151.48563,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4286766,56.25,44.4,65.38,41.59,3.333333333333333,1,1,0,0,5,9,3,1,798,1122544,358520.88,518384.75,20695.031,2368.7695 -8524,10499,18944,18943,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.114646,7.1342444,47,-2,-26.857025,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1709538,65.38,41.59,56.25,44.4,8.333333333333334,1,1,0,0,0,9,3,1,798,1122544,358520.88,518384.75,20695.031,2368.7695 -8524,10500,18945,-9,18943,18944,1,1,42,0,0,0,2,2,-9,0,4,8.497304,8.3351746,0,0,0,-1072.5537,0,2,2,2019,9,1,48,47,1,1,0,8.9649067,8.9649067,0,0,0,1.8619109,0,1,1,0,0,0,27.83,62.06,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,3669,428028.84,0,0,0,1818.2233 -8525,10501,18946,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.7066317,8.5486784,0,0,0,-1132.4441,0,-9,-9,2019,9,0,59,39,1,0,0,14.112836,14.112836,0,0,0,0,0,0,0,0,0,0,39.69,42.53,-9,-9,0,3,4,0,0,9,8,5,0,556,1152840,757183.56,502636.56,122485.02,2308.4287 -8525,10502,18947,-9,18946,-9,1,1,22,0,0,0,2,2,1,0,3,6.2008276,5.7622919,0,0,0,-1098.4689,-9,2,-9,2019,12,2,12,0,1,2,1,3.5019917,3.5019917,0,0,0,0,0,0,0,0,0,0,45.16,56.56,-9,-9,10,3,4,0,0,0,8,2,0,230,-81224.523,0,0,0,384.22192 -8525,10503,18948,-9,18946,-9,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-1091.1343,-9,2,-9,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,1,0,196,0,0,0,0,-189.32718 -8526,10504,18949,18950,-9,-9,1,0,34,0,0,0,2,2,-9,0,5,8.5670671,8.8711004,0,6,0,-.77101594,0,3,2,2019,6,0,44,40,1,0,0,13.737906,13.737906,0,0,0,0,0,0,0,0,2.3456733,0,57.06,57.76,60.02,56.42,10,1,1,0,0,8,10,5,1,790.5,319781.19,149926.03,249092.89,150690.19,6310.6494 -8526,10504,18950,18949,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.9308224,9.4127245,0,6,0,24.536041,0,-9,-9,2019,6,0,39,38,1,0,0,20.824387,20.824387,0,0,0,0,2,0,0,0,3.3774714,0,60.02,56.42,57.06,57.76,8.333333333333334,1,1,0,0,5,10,5,1,790.5,319781.19,149926.03,249092.89,150690.19,6310.6494 -8527,10505,18951,18953,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.4988031,8.6335154,0,2,-2,46.896328,0,-9,-9,2019,16,5,51,51,1,5,0,12.525445,12.525445,0,0,0,0,0,1,1,0,6.8821726,0,40.24,53.28,53.82,50.73,8.333333333333334,1,1,0,0,4,11,5,0,376.66666,461646.56,60999.316,216333.7,186427.36,6271.9346 -8527,10505,18952,-9,18951,18953,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.437,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,0,376.66666,461646.56,60999.316,216333.7,186427.36,6271.9346 -8527,10505,18953,18951,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.1858492,8.5940113,0,2,2,-23.294544,0,1,1,2019,6,0,40,46,1,0,0,10.947587,10.947587,0,0,0,0,0,1,1,0,6.3631673,0,53.82,50.73,40.24,53.28,8.333333333333334,1,1,0,0,6,11,5,0,376.66666,461646.56,60999.316,216333.7,186427.36,6271.9346 -8528,10506,18954,18955,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.2343006,9.1873455,0,3,9,-58.211571,0,2,-9,2019,7,0,40,40,1,0,0,31.143551,31.143551,0,0,0,0,0,0,0,0,4.4712968,0,54.63,58.83,44.02,39.06,8.333333333333334,1,1,0,0,9,8,5,1,731.5,3104161.5,636506.38,510798.38,0,6429.7988 -8528,10506,18955,18954,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,9.271533,9.4583778,0,3,0,53.864075,0,-9,-9,2019,18,7,43,45,1,7,0,29.843092,29.843092,0,0,0,0,0,0,0,0,6.8807611,0,44.02,39.06,54.63,58.83,5,1,1,0,0,2,8,5,1,731.5,3104161.5,636506.38,510798.38,0,6429.7988 -8529,10507,18956,18957,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.0945864,7.8579659,0,31,-1,-29.706251,0,2,2,2019,11,0,35,35,1,2,0,11.811749,11.811749,0,0,0,0,0,0,0,0,0,0,48,51,51.98,43.8,7,2,3,0,0,1,2,4,1,605,180298.63,5495.6914,0,0,1917.5017 -8529,10507,18957,18956,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.2153196,7.2226872,0,31,1,52.579559,0,2,2,2019,8,0,33,20,1,0,0,5.7693949,5.7693949,0,0,0,0,0,0,0,0,0,0,51.98,43.8,48,51,6.666666666666667,2,3,0,0,12,2,4,1,605,180298.63,5495.6914,0,0,1917.5017 -8529,10508,18958,-9,18957,18956,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1031.1646,0,2,3,2019,11,0,0,10,3,2,1,0,0,0,0,0,0,0,0,0,0,.27139112,0,48,59,-9,-9,7,2,3,0,0,5,2,1,1,699,-119412.41,0,0,0,-174.11189 -8529,10509,18959,-9,18957,18956,1,1,23,0,0,0,1,1,1,0,5,8.485568,8.4234095,0,0,0,-1058.7245,-9,2,2,2019,12,0,38,0,1,0,1,14.783092,14.783092,0,0,0,0,0,0,0,0,1.8196938,0,37.48,61.3,-9,-9,5,2,3,0,0,5,2,5,1,396,563538,-26750.48,0,0,1377.0608 -8530,10510,18960,18962,-9,-9,1,0,33,1,2,0,2,2,-9,0,2,7.8246045,7.9156828,0,9,1,74.388542,0,-9,-9,2019,9,0,20,39,1,0,0,15.738406,15.738406,0,0,0,0,14.5,1,1,0,0,0,52.24,50.75,48.53,58.91,5,1,1,0,0,11,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 -8530,10510,18961,-9,18960,18962,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.1064,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 -8530,10510,18962,18960,-9,-9,1,1,32,1,2,0,2,2,-9,0,4,8.3091621,8.1066351,0,9,-1,-7.8250327,0,1,2,2019,12,2,36,42,1,2,0,13.52472,13.52472,0,0,0,0,0,1,1,0,1.7811803,0,48.53,58.91,52.24,50.75,6.666666666666667,1,1,0,0,9,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 -8530,10510,18963,-9,18960,18962,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.0297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,829.25,-89912.086,-44033.039,110071.06,88702.438,2889.7744 -8531,10511,18964,18965,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.5143433,6.3563137,46,-2,-55.389271,0,3,3,2019,13,2,0,57,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8122139,62.1,51.16,57.16,56.15,8.333333333333334,1,1,0,0,8,5,2,1,577.5,339726.16,302515.75,127485.69,0,1114.696 -8531,10511,18965,18964,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.3082495,6.5576539,46,2,-20.472494,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.456049,57.16,56.15,62.1,51.16,10,1,1,0,0,0,5,2,1,577.5,339726.16,302515.75,127485.69,0,1114.696 -8532,10512,18966,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.1755352,6.0422029,0,0,-941.47095,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2258673,46.85,40.53,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,507,31533.471,95425.047,53691.766,0,519.07385 -8533,10513,18967,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.3755355,7.5558629,6.075243,0,0,-876.44482,0,3,3,2019,7,0,22,22,1,0,0,7.8337879,7.8337879,0,0,0,0,0,0,0,0,0,5.7959352,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,3335,41357.676,-15316.675,0,0,817.4068 -8534,10514,18968,-9,18969,18971,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-971.26862,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 -8534,10514,18969,18971,-9,-9,1,0,44,2,2,0,2,2,-9,0,4,0,0,0,8,-6,46.263626,0,-9,-9,2019,7,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,1.4439197,0,60.12,54.8,57.16,56.15,6.666666666666667,1,1,0,0,8,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 -8534,10514,18970,-9,18969,18971,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-946.37274,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 -8534,10514,18971,18969,-9,-9,1,1,50,2,2,0,2,2,-9,0,4,7.9994431,8.2476759,0,8,6,74.05024,0,-9,-9,2019,6,0,37,37,1,0,0,11.359568,11.359568,0,0,0,0,0,1,1,0,3.5592444,0,57.16,56.15,60.12,54.8,6.666666666666667,1,1,0,0,9,11,3,1,623,228628.61,73408.297,75687.266,20979.08,1474.6757 -8535,10515,18972,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.1015248,6.045536,0,0,-921.18213,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,6.1884804,49.86,52.97,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,126,360424.84,34776.715,224617.31,0,1318.2666 -8535,10516,18973,-9,18972,-9,1,0,39,0,0,0,2,2,-9,0,4,7.5447197,7.2906113,0,0,0,-864.38141,0,2,-9,2019,10,0,40,40,1,1,0,4.8377566,4.8377566,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,8,1,1,0,0,1,2,3,0,2775,375024.94,0,0,0,998.37067 -8536,10517,18974,18975,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2747793,8.2966461,0,8,-8,22.965683,0,2,2,2019,7,0,35,40,1,0,0,15.16817,15.16817,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,9,11,4,1,747.5,1289049.6,881806,140366.09,0,3012.8684 -8536,10517,18975,18974,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.1925974,7.992301,8,8,128.0358,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4179544,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,747.5,1289049.6,881806,140366.09,0,3012.8684 -8537,10518,18976,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,2,0,0,0,0,0,-878.96863,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,40.574791,0,0,1,1,0,0,0,36.84,26.2,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,242,-8996.6709,0,120664.88,0,1887.6105 -8538,10519,18977,-9,18981,18980,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.42914,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 -8538,10519,18978,-9,18981,18980,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-964.45697,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,0,0,0,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 -8538,10519,18979,-9,18981,18980,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 -8538,10519,18980,18981,-9,-9,1,1,51,0,3,0,3,3,-9,0,3,7.6532493,8.678297,8.1691608,20,14,66.018944,0,3,3,2019,11,0,35,35,1,2,0,6.3084106,6.3084106,0,0,0,0,0,1,1,0,0,8.415658,49,50,32.9,57.87,7,2,3,0,0,1,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 -8538,10519,18981,18980,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,6.5447373,6.8446212,0,20,-14,-24.205521,0,3,3,2019,7,0,10,10,1,0,0,11.300946,11.300946,0,0,0,0,0,1,1,0,0,0,32.9,57.87,49,50,8.333333333333334,2,3,0,0,12,4,3,1,419,475083.44,85541.586,209494.05,0,3952.6873 -8539,10520,18982,18985,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.495327,8.6747942,0,22,1,30.217611,0,2,2,2019,8,0,36,35,1,0,0,13.848728,13.848728,0,0,0,0,0,1,1,0,0,0,52.54,54.24,45.98,56.3,8.333333333333334,1,1,0,0,7,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 -8539,10520,18983,-9,18982,18985,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.7476,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 -8539,10520,18984,-9,18982,18985,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.13397,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 -8539,10520,18985,18982,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.9617538,8.8282824,0,22,-1,92.819557,0,2,2,2019,10,0,47,45,1,0,0,19.977921,19.977921,0,0,0,0,0,1,1,0,0,0,45.98,56.3,52.54,54.24,8.333333333333334,1,1,0,0,9,10,5,1,771.75,185259.19,137602.44,203124.38,125582.47,4808.8745 -8540,10521,18986,18987,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.5062976,7.432713,0,7,-4,67.139496,0,-9,-9,2019,24,12,33,43,1,12,0,5.3044691,5.3044691,0,0,0,0,0,0,0,0,3.1773541,0,32.76,57.87,37.85,53.23,5,1,1,0,0,7,4,4,1,1101,128802.91,216821.83,140205.97,64495.406,2419.3049 -8540,10521,18987,18986,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.2862444,8.2799921,0,7,4,14.026525,0,3,2,2019,22,10,40,43,1,10,0,14.623186,14.623186,0,0,0,0,0,0,0,0,1.7687714,0,37.85,53.23,32.76,57.87,3.333333333333333,1,1,0,0,10,4,4,1,1101,128802.91,216821.83,140205.97,64495.406,2419.3049 -8540,10522,18988,-9,18986,18987,1,1,23,0,0,0,2,2,-9,0,4,7.6500158,7.7469983,0,0,0,-1083.5573,0,2,2,2019,10,1,40,44,1,1,1,7.0851254,7.0851254,0,0,0,0,0,0,0,0,.10735341,0,47.38,57.75,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,1040,-624694.94,0,0,0,1166.197 -8541,10523,18989,18990,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.9932222,7.564497,6.7800179,28,-6,-22.367523,0,-9,-9,2019,9,2,20,28,1,2,0,8.5744743,8.5744743,0,0,0,0,0,1,1,0,0,6.6351533,58.97,26.09,57.16,56.15,6.666666666666667,1,1,0,0,2,7,3,0,310,1353705.6,655400.56,159594.84,0,1169.2416 -8541,10523,18990,18989,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,6.5455346,6.5919013,28,6,-68.203545,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9489856,57.16,56.15,58.97,26.09,8.333333333333334,1,1,0,0,2,7,3,0,310,1353705.6,655400.56,159594.84,0,1169.2416 -8541,10524,18991,-9,18989,18990,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-967.00427,0,2,2,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,6.666666666666667,1,1,1,0,1,7,1,0,462,207401.72,0,0,0,544.5448 -8542,10525,18992,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.6462955,8.1470966,0,0,0,-998.82813,0,2,2,2019,22,10,37,38,1,10,0,17.801733,17.801733,0,0,0,0,0,0,0,0,3.3808467,0,36.62,58.96,-9,-9,3.333333333333333,1,1,0,0,11,9,4,1,212,594790.38,867539,0,0,1487.723 -8542,10526,18993,-9,18992,-9,1,0,27,0,0,0,1,1,-9,0,2,8.152319,8.462183,0,0,0,-1111.0983,0,2,-9,2019,11,1,50,53,1,1,1,9.1401691,9.1401691,0,0,0,0,0,0,0,0,0,0,30.48,35.01,-9,-9,5,1,1,0,0,5,9,4,1,662,467681.56,-7837.7847,0,0,1375.996 -8543,10527,18994,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,0,0,0,0,-980.78412,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,24.07,63.14,-9,-9,6.666666666666667,4,5,0,0,0,10,2,0,327,-227772.23,0,0,0,1137.0857 -8544,10528,18995,18996,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,7,-2,65.676369,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.8377867,0,58.15,52.91,55.51,51.57,8.333333333333334,2,3,0,0,2,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 -8544,10528,18996,18995,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,9.2914505,9.0866356,0,7,2,22.774189,0,1,1,2019,11,1,34,33,1,1,0,33.884026,33.884026,0,0,0,0,0,0,0,0,6.6579375,0,55.51,51.57,58.15,52.91,6.666666666666667,2,3,0,0,8,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 -8544,10528,18997,-9,18995,18996,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.0224,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 -8544,10528,18998,-9,18995,18996,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.7086,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,5,1,822.75,-56156.496,-4589.2593,151947.05,110459.38,4611.3574 -8545,10529,18999,19000,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.9007158,7.678689,0,32,1,2.7663665,0,3,3,2019,11,0,40,40,1,0,0,7.317812,7.317812,0,0,0,0,0,0,0,0,4.8557782,0,51.42,32.06,60.12,54.8,5,1,1,0,0,9,4,5,1,1057.5,3089856.8,2236898,448024.88,0,6455.3311 -8545,10529,19000,18999,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.2879038,9.4406433,0,32,-1,38.104179,0,2,1,2019,8,0,16,35,1,0,0,102.46838,102.46838,0,0,0,0,0,0,0,0,6.2273345,0,60.12,54.8,51.42,32.06,8.333333333333334,4,2,0,0,7,4,5,1,1057.5,3089856.8,2236898,448024.88,0,6455.3311 -8545,10530,19001,-9,18999,19000,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-923.82123,-9,1,1,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,6.666666666666667,4,2,0,0,2,4,1,1,324,-466593.78,0,0,0,3288.4985 -8546,10531,19002,19003,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.0763721,8.1643686,0,8,-4,119.6353,0,2,2,2019,12,0,50,37,1,0,0,6.367763,6.367763,0,0,0,0,0,0,0,0,1.0880136,0,50.51,53.71,35.03,56.63,6.666666666666667,1,1,0,0,9,10,4,1,493.5,567887.75,440845.75,176296.48,89450.07,2675.0242 -8546,10531,19003,19002,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2790127,8.2181597,0,8,4,51.63625,0,2,2,2019,12,0,37,37,1,0,0,12.803751,12.803751,0,0,0,0,0,0,0,0,4.0383215,0,35.03,56.63,50.51,53.71,3.333333333333333,1,1,0,0,9,10,4,1,493.5,567887.75,440845.75,176296.48,89450.07,2675.0242 -8547,10532,19004,19005,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.5094562,7.1782508,44,-1,-72.357285,0,3,-9,2019,17,5,0,0,4,5,0,0,0,1,0,11.029469,0,0,1,1,0,0,7.7208633,40.55,28.87,33.12,40.59,3.333333333333333,1,1,0,0,0,10,2,1,218,1085419.8,504306.5,230136.03,0,3408.6304 -8547,10532,19005,19004,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,3.4315991,3.1354916,45,1,4.945075,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,3.4264417,3.1010108,33.12,40.59,40.55,28.87,3.333333333333333,1,1,0,0,0,10,2,1,218,1085419.8,504306.5,230136.03,0,3408.6304 -8548,10533,19006,19007,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.697402,8.8664598,0,11,-16,43.802917,-9,2,-9,2019,10,0,48,0,1,0,0,16.490143,16.490143,0,0,0,0,0,0,0,0,0,0,39.39,58.79,52,54.51,6.666666666666667,1,1,0,0,10,1,5,1,176,192803.19,-34882.094,240064.45,20021.195,4124.5513 -8548,10533,19007,19006,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2251863,8.4976635,6.3157473,11,16,-76.667755,0,3,3,2019,8,0,38,41,1,0,0,12.09011,12.09011,0,0,0,0,2,0,0,0,1.5573707,6.50351,52,54.51,39.39,58.79,8.333333333333334,1,1,0,0,12,1,5,1,176,192803.19,-34882.094,240064.45,20021.195,4124.5513 -8549,10534,19008,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1031.8789,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,747,-377764.97,0,0,0,935.81732 -8550,10535,19009,-9,19010,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.4301,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,526,342041.09,86743.797,143665.14,38174.516,2307.2666 -8550,10535,19010,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.0364075,8.1720991,4.7257433,0,0,-900.08057,0,3,2,2019,22,10,22,26,1,10,0,17.823608,17.823608,0,0,0,0,2,1,1,0,6.6271372,0,39.39,37.66,-9,-9,5,2,3,0,1,8,8,3,1,526,342041.09,86743.797,143665.14,38174.516,2307.2666 -8551,10536,19011,19012,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.1512651,8.5314322,0,3,-10,0,0,2,2,2019,9,0,38,37,1,0,0,10.086282,10.086282,0,0,0,0,0,1,1,0,0,0,46.88,60.96,54.96,53.17,8.333333333333334,1,1,0,0,5,7,4,1,1452,148609.78,84353.656,338055.06,142406.89,2989.0942 -8551,10536,19012,19011,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.4850979,8.2829733,0,3,10,0,0,-9,-9,2019,7,0,40,40,1,0,0,10.977474,10.977474,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.88,60.96,8.333333333333334,1,1,0,0,8,7,4,1,1452,148609.78,84353.656,338055.06,142406.89,2989.0942 -8552,10537,19013,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.3541603,6.3337069,0,0,-1040.7662,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.639442,30.97,45.17,-9,-9,3.333333333333333,1,1,0,0,6,10,2,0,622,640924,204009.63,254719.27,0,542.99945 -8553,10538,19014,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.9349918,6.6794319,0,0,-980.35187,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1154537,6.728394,48.54,41.09,-9,-9,5,1,1,0,0,0,6,2,1,532,155465.36,272383,0,0,1230.5879 -8554,10539,19015,19016,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.1258826,6.0466247,7,2,-127.90796,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.924943,6.3329659,60.02,56.42,59.04,54.12,10,1,1,0,0,6,1,5,1,1865.5,1774365,1393574.3,265094,0,6286.938 -8554,10539,19016,19015,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,8.7537584,9.027874,7,-2,-108.20332,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.5366926,4.4779749,59.04,54.12,60.02,56.42,10,1,1,0,0,6,1,5,1,1865.5,1774365,1393574.3,265094,0,6286.938 -8555,10540,19017,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.2856035,8.7540054,7.1966939,0,0,-1033.9774,0,-9,-9,2019,0,0,38,38,1,0,0,11.026356,11.026356,0,0,0,0,0,0,0,0,2.4984152,7.0128145,64.40000000000001,42,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,239,304557.56,0,221663.33,9891.2246,1784.1168 -8556,10541,19018,19019,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.9755096,9.5663252,0,7,-5,14.415191,0,2,1,2019,9,1,48,43,1,1,0,35.679546,35.679546,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.73,53.97,3.333333333333333,1,1,0,0,9,5,5,1,677,1755393.3,1093342,355592.63,6540.2026,8167.7871 -8556,10541,19019,19018,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1874018,9.1642914,0,7,5,39.854519,0,2,2,2019,12,0,47,60,1,0,0,22.123789,22.123789,0,0,0,0,0,0,0,0,4.6404467,0,49.73,53.97,51.24,58.84,5,1,1,0,0,9,5,5,1,677,1755393.3,1093342,355592.63,6540.2026,8167.7871 -8556,10542,19020,-9,19018,19019,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1003.8479,-9,1,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,5,1,1,422,18981.059,0,0,0,541.76849 -8557,10543,19021,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1024.4077,0,3,-9,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,2,1,1,0,0,0,27.64,19.88,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,5295,-144581.02,0,0,0,855.80103 -8557,10544,19022,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-919.9715,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,43.51,55.11,-9,-9,3.333333333333333,1,1,1,0,0,4,1,0,1505,147451.73,0,0,0,0 -8558,10545,19023,19024,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,54,-11,0,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,14.764129,0,128.33037,27,1,1,0,4.2075715,0,48.19,30.93,47.55,33.8,6.666666666666667,1,1,0,0,0,13,1,1,548.5,86211.375,-20193.535,89087.109,0,1142.8333 -8558,10545,19024,19023,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,0,0,54,11,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,3.8071938,0,47.55,33.8,48.19,30.93,8.333333333333334,1,1,0,0,0,13,1,1,548.5,86211.375,-20193.535,89087.109,0,1142.8333 -8559,10546,19025,-9,19027,19026,1,0,20,0,4,0,2,2,1,1,2,0,0,0,0,0,-835.08344,-9,1,2,2019,24,7,0,0,3,7,1,0,0,0,0,0,0,27,1,1,0,0,0,11.32,41.13,-9,-9,0,1,1,0,0,4,2,2,0,196,22243.049,0,0,0,-19.679892 -8559,10547,19026,19027,-9,-9,1,1,44,0,4,0,2,2,-9,0,3,7.7764859,7.7519817,0,7,3,-191.19391,0,-9,-9,2019,13,1,36,48,1,1,0,8.1224527,8.1224527,0,0,0,0,90,1,1,0,0,0,37.78,53.03,39.27,37.24,5,1,1,0,0,5,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 -8559,10547,19027,19026,-9,-9,1,0,41,0,4,0,1,1,-9,1,3,0,0,0,7,-3,53.37431,0,1,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.27,37.24,37.78,53.03,8.333333333333334,1,1,0,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 -8559,10547,19028,-9,19027,19026,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1055.5208,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 -8559,10547,19029,-9,19027,19026,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1085.1827,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 -8559,10547,19030,-9,19027,19026,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-997.30768,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 -8559,10547,19031,-9,19027,19026,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.6272,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,463.33334,414595.47,32414.387,192714.95,0,4649.3003 -8560,10548,19032,-9,19034,-9,1,0,28,0,0,0,2,2,0,0,4,0,0,0,0,0,-944.1767,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,13,1,1,945,73644.805,0,0,0,647.1474 -8560,10549,19033,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,9.1091957,9.255702,0,8,-3,1.6691679,0,3,3,2019,15,5,42,48,1,5,0,27.166452,27.166452,0,0,0,0,14.5,1,1,0,0,0,41.55,59.5,52.32,57.18,6.666666666666667,1,1,0,0,9,13,5,1,622,1789052.1,1231728.6,497226.97,0,3443.74 -8560,10550,19034,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,8.8493729,9.1302185,0,8,3,-79.547508,0,3,3,2019,6,0,47,42,1,0,0,23.1728,23.1728,0,0,0,0,0,1,1,0,7.219985,0,52.32,57.18,41.55,59.5,10,1,1,0,0,9,13,5,1,1281,-208627.17,-41285.289,0,0,3804.3271 -8561,10551,19035,19036,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,33,-2,-53.650608,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.93784,0,51.77,58.57,62.39,56.71,8.333333333333334,1,1,0,0,7,9,2,1,846.5,113491.72,-10244.721,248946.41,0,1417.4364 -8561,10551,19036,19035,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,6.7302175,6.7167506,0,32,2,1.4194442,0,3,3,2019,7,0,40,40,1,0,0,2.1454554,2.1454554,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.77,58.57,8.333333333333334,1,1,0,1,11,9,2,1,846.5,113491.72,-10244.721,248946.41,0,1417.4364 -8562,10552,19037,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.8196468,6.8300538,0,0,0,-1040.1184,0,-9,-9,2019,10,2,26,26,1,2,0,3.9665518,3.9665518,0,0,0,0,0,1,1,0,0,0,52.13,54.7,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,1381,102724.22,-39216.078,0,0,253.55406 -8563,10553,19038,19039,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2428827,7.9449329,0,3,2,-51.344406,0,2,2,2019,11,0,42,84,1,0,0,6.0217137,6.0217137,0,0,0,0,7,1,1,0,0,0,43.92,47.65,33.23,52.67,5,1,1,0,0,11,11,4,0,1129.3334,49395.285,59662.27,48195.352,0,2610.8494 -8563,10553,19039,19038,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.8417344,7.7852921,0,3,-2,-50.029556,0,3,3,2019,15,4,37,37,1,4,0,8.9557056,8.9557056,0,0,0,0,0,1,1,0,0,0,33.23,52.67,43.92,47.65,5,1,1,0,0,10,11,4,0,1129.3334,49395.285,59662.27,48195.352,0,2610.8494 -8563,10553,19040,-9,19039,19038,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.8247,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,0,1129.3334,49395.285,59662.27,48195.352,0,2610.8494 -8564,10554,19041,19042,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.5788541,7.5236006,35,0,112.35497,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.20169,7.4891043,53.79,41.29,46.67,55.57,8.333333333333334,1,1,0,0,0,9,4,1,241,842170.25,425574.5,384926.41,0,4050.9829 -8564,10554,19042,19041,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.8797345,7.8917594,35,9,1.9577096,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6542764,7.6681099,46.67,55.57,53.79,41.29,10,1,1,0,0,0,9,4,1,241,842170.25,425574.5,384926.41,0,4050.9829 -8565,10555,19043,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,7.1259594,7.0127592,3.9947762,0,0,-1066.1038,0,2,1,2019,3,0,20,31,1,0,0,4.567955,4.567955,0,0,0,0,0,1,1,0,4.5311494,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,795,-231241.13,0,0,0,942.50873 -8565,10555,19044,-9,19043,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.75909,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,2,0,795,-231241.13,0,0,0,942.50873 -8566,10556,19045,19046,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,6.2355428,6.8122749,6.4565806,33,-7,58.412834,0,2,3,2019,7,0,8,15,1,0,0,9.2131329,9.2131329,1,0,0,0,0,1,1,0,6.9391952,0,52.77,55.33,46.76,51.4,8.333333333333334,1,1,0,0,13,10,3,1,271.5,411222.63,262909.94,0,0,2475.3708 -8566,10556,19046,19045,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.6911154,7.7551703,33,7,59.532516,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,5.1608648,7.931386,46.76,51.4,52.77,55.33,8.333333333333334,1,1,0,0,6,10,3,1,271.5,411222.63,262909.94,0,0,2475.3708 -8567,10557,19047,-9,19048,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-874.76697,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,1,1,276.5,-32130.813,0,0,0,256.83685 -8567,10557,19048,-9,-9,-9,1,0,45,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1016.9363,0,3,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,30.53,41.68,-9,-9,3.333333333333333,2,3,0,0,7,6,1,1,276.5,-32130.813,0,0,0,256.83685 -8568,10558,19049,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.6332307,6.3557506,0,0,-949.30957,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.190043,5.9919868,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,298,536401.38,9464.5771,194479.61,0,869.53851 -8569,10559,19050,19051,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.4274893,7.7696285,44,1,-136.40338,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0587149,7.5515795,57.06,57.76,35.86,64.55,10,1,1,0,0,0,6,3,1,797,1020543.3,536602.5,397976,0,3009.8359 -8569,10559,19051,19050,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.9963436,6.84904,44,-1,-21.9447,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6397295,6.8336744,35.86,64.55,57.06,57.76,8.333333333333334,1,1,0,0,0,6,3,1,797,1020543.3,536602.5,397976,0,3009.8359 -8570,10560,19052,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8688326,8.5989838,0,0,0,-954.96686,0,1,1,2019,4,1,37,37,1,1,0,18.751835,18.751835,0,0,0,0,0,1,1,0,3.5142214,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,7,10,5,0,241,127633.95,67186.609,0,0,2565.1809 -8571,10561,19053,19054,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.5368767,5.7770209,54,13,-73.253944,0,2,2,2019,10,3,0,0,4,3,0,0,0,1,2.6724391,8.7521896,25.668961,0,1,1,0,0,5.5419221,39.62,31.99,51.83,57.2,8.333333333333334,1,1,0,0,0,7,3,1,1761,430289.69,284109.31,318548.81,0,2526.7437 -8571,10561,19054,19053,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.7916451,7.8376093,0,8,-13,-52.595078,0,3,3,2019,7,0,35,38,1,0,0,9.8049231,9.8049231,0,0,0,0,7,1,1,0,3.8045967,0,51.83,57.2,39.62,31.99,8.333333333333334,1,1,0,0,11,7,3,1,1761,430289.69,284109.31,318548.81,0,2526.7437 -8572,10562,19055,19056,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.0265265,6.8567696,21,-2,2.021446,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7508755,6.9735584,60.12,41.6,58.15,52.91,10,1,1,0,0,5,9,2,1,253.5,621004.81,304903.88,399094.13,0,1664.1699 -8572,10562,19056,19055,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.7479258,5.1702161,21,2,-45.025162,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,5.1902056,58.15,52.91,60.12,41.6,8.333333333333334,1,1,0,0,5,9,2,1,253.5,621004.81,304903.88,399094.13,0,1664.1699 -8573,10563,19057,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-852.54041,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.5318635,0,0,1,1,0,0,0,60.37,15.19,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,446,62881.637,0,0,0,497.5676 -8574,10564,19058,19059,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,2.5649564,2.6339712,7,1,-65.739708,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8428741,2.9832773,54.9,54.53,48.87,58.55,10,1,1,0,0,0,6,3,1,652.5,708214.38,365441,330160.16,0,2202.8945 -8574,10564,19059,19058,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.5207834,7.7885413,49,-1,1.6340595,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9845905,7.4900699,48.87,58.55,54.9,54.53,8.333333333333334,1,1,0,0,9,6,3,1,652.5,708214.38,365441,330160.16,0,2202.8945 -8575,10565,19060,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.3924875,7.5218101,0,0,0,-903.28217,0,3,2,2019,11,0,50,50,1,0,0,4.3609543,4.3609543,0,0,0,0,0,0,0,0,2.8932586,0,41.99,53.75,-9,-9,5,1,1,0,0,11,10,3,1,487,748328.38,349992,181627.64,0,792.61346 -8576,10566,19061,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.7450275,5.7581844,0,0,-977.0993,-9,-9,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,5.800261,0,39.22,61.48,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,531,-69873.703,0,0,0,407.71194 -8577,10567,19062,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,8.2177706,8.2385254,0,0,-888.15509,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.4648519,8.0599518,59.55,38.61,-9,-9,6.666666666666667,1,1,0,0,2,13,4,0,632,-374856.03,-79685.656,84940.375,38377.633,2289.6448 -8578,10568,19063,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-902.69141,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.95,25.68,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,179,-309071.69,0,0,0,1088.3314 -8579,10569,19064,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.6319027,8.4601583,0,0,0,-982.55603,0,2,2,2019,11,0,45,37,1,0,0,15.712234,15.712234,0,0,0,0,0,0,0,0,3.2772362,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,10,2,5,0,499,320526.78,372231.84,138855.45,87975.102,2284.5039 -8580,10570,19065,19067,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.349102,7.9609294,0,9,0,40.363003,0,2,3,2019,9,1,30,37,1,1,0,12.60843,12.60843,0,0,0,0,0,0,0,0,0,0,48.77,60.16,59.72,51.02,6.666666666666667,1,1,0,0,11,12,5,1,329.66666,50748.621,101315.6,295127.44,191949.72,5536.9102 -8580,10570,19066,-9,19065,19067,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.75128,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,329.66666,50748.621,101315.6,295127.44,191949.72,5536.9102 -8580,10570,19067,19065,-9,-9,1,1,31,1,1,0,2,2,-9,0,5,9.2954273,9.3184423,0,9,0,25.751951,0,1,2,2019,9,0,42,42,1,0,0,31.966091,31.966091,0,0,0,0,0,0,0,0,0,0,59.72,51.02,48.77,60.16,6.666666666666667,1,1,0,0,8,12,5,1,329.66666,50748.621,101315.6,295127.44,191949.72,5536.9102 -8581,10571,19068,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,7.9180031,8.0275335,6.8952889,0,0,-1092.8914,0,-9,-9,2019,8,0,6,18,1,0,0,60.682781,60.682781,0,0,0,0,0,1,1,0,6.6218576,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,5,4,1,600.5,48626.961,0,116206.11,73277.359,2103.2917 -8581,10571,19069,-9,19068,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.33417,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,5,4,1,600.5,48626.961,0,116206.11,73277.359,2103.2917 -8581,10572,19070,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,1,8.0491209,8.2372313,0,0,0,-939.75781,0,-9,-9,2019,18,4,37,48,1,4,0,14.3474,14.3474,0,0,0,0,0,1,1,0,0,0,42.21,31.27,-9,-9,6.666666666666667,2,3,0,0,4,5,4,1,191,553006.13,-30105.471,0,0,1782.811 -8582,10573,19071,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.0248356,8.1575737,0,0,0,-992.03595,-9,3,2,2019,11,0,40,0,1,1,0,8.0546865,8.0546865,0,0,0,0,0,1,1,0,0,0,44.41,56.75,-9,-9,8.333333333333334,1,1,0,0,13,6,4,1,557,542647.31,174531.25,318980.47,6112.8408,2577.8386 -8583,10574,19072,-9,19076,19073,1,0,22,1,2,0,2,2,-9,0,2,7.3516235,7.3584304,0,0,0,-1033.8824,-9,3,3,2019,10,0,30,0,1,0,0,5.1963515,5.1963515,0,0,0,0,0,1,1,0,0,0,55.99,46.53,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,192,-308754.34,-29430.795,0,0,582.77826 -8583,10575,19073,19076,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.3121309,8.989151,0,2,0,-15.881051,0,-9,-9,2019,8,0,50,55,1,0,0,23.797028,23.797028,0,0,0,0,0,1,1,0,0,0,58.3,52.91,57.9,51.84,8.333333333333334,1,1,0,0,2,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 -8583,10575,19074,-9,19076,19073,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.2932,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 -8583,10575,19075,-9,19076,19073,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.7964,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 -8583,10575,19076,19073,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,7.5397768,7.5380845,0,2,0,-98.003784,0,2,2,2019,7,0,18,18,1,0,0,15.475263,15.475263,0,0,0,0,0,1,1,0,0,0,57.9,51.84,58.3,52.91,8.333333333333334,1,1,0,0,9,9,5,1,1418.5,358152.59,110983.17,486241.25,147781.84,4587.5444 -8584,10576,19077,19081,-9,-9,1,0,35,1,3,0,1,1,-9,0,3,0,0,0,11,-1,-52.084923,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.1987041,0,57.09,43.99,38.34,62.12,10,2,3,0,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 -8584,10576,19078,-9,19077,19081,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.33026,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 -8584,10576,19079,-9,19077,19081,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.18048,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 -8584,10576,19080,-9,19077,19081,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.3164,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,.56401062,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 -8584,10576,19081,19077,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,7.1550207,6.7963319,0,11,1,-86.827904,0,3,3,2019,16,4,50,37,1,4,0,3.9968588,3.9968588,0,0,0,0,0,0,0,0,8.2175579,0,38.34,62.12,57.09,43.99,8.333333333333334,2,3,0,0,6,8,2,1,696,900701.94,100602.32,555373.88,6961.5991,3216.7495 -8585,10577,19082,-9,19083,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.9174,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,-9,0,0,8,1,0,691,202995.42,0,0,0,1686.729 -8585,10577,19083,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,0,0,0,0,0,-958.65869,1,3,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,5,8,1,0,691,202995.42,0,0,0,1686.729 -8586,10578,19084,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.5825872,8.4036751,0,0,0,-927.15594,-9,2,-9,2019,9,1,15,0,1,1,1,26.859674,26.859674,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,105,-12564.663,-78367.008,0,0,1354.0303 -8587,10579,19085,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,6.3083787,6.3744965,0,0,-1071.7124,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3529077,55,45,-9,-9,8,1,1,0,0,0,9,2,1,1076,272576.44,168489.78,178442.44,0,638.80096 -8588,10580,19086,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.6942482,8.6757507,0,0,0,-1096.9425,0,3,3,2019,11,1,40,40,1,1,0,16.84516,16.84516,0,0,0,0,0,0,0,0,0,0,45.2,41.12,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,369,95760.742,411563.69,0,0,2370.8127 -8589,10581,19087,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,7.7787147,8.2907343,7.4799705,0,0,-968.36761,0,2,1,2019,4,0,23,22,1,0,0,11.673006,11.673006,0,0,0,0,0,1,1,0,0,7.6117988,60.54,42.81,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,733,622969.25,238533.38,391170.25,0,2399.2188 -8590,10582,19088,19089,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,3.3136423,3.3418782,37,8,105.43453,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.3145616,3.4771204,49.24,50.42,58.7,46.46,8.333333333333334,1,1,0,0,0,5,2,1,793.5,361307.16,442972.19,121020.61,41047.215,2029.3389 -8590,10582,19089,19088,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.3228269,6.4400988,37,-8,36.323017,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0960646,5.9927082,58.7,46.46,49.24,50.42,8.333333333333334,1,1,0,0,7,5,2,1,793.5,361307.16,442972.19,121020.61,41047.215,2029.3389 -8591,10583,19090,19091,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.8997836,7.9265227,0,8,-1,58.511162,0,2,2,2019,16,5,41,40,1,5,0,6.5509305,6.5509305,0,0,0,0,0,0,0,0,0,0,46.63,59.72,48.53,58.91,8.333333333333334,1,1,0,0,8,6,5,1,285,393469.75,106808.36,379292.5,269147.03,3706.6589 -8591,10583,19091,19090,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.6787367,8.3115463,0,8,1,-11.294057,0,2,2,2019,14,2,45,48,1,2,0,12.90627,12.90627,0,0,0,0,0,0,0,0,6.4635611,0,48.53,58.91,46.63,59.72,8.333333333333334,1,1,0,0,11,6,5,1,285,393469.75,106808.36,379292.5,269147.03,3706.6589 -8592,10584,19092,19094,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6361065,7.1678209,0,9,-5,-61.743202,0,3,3,2019,7,0,1,20,1,0,0,152.93275,152.93275,0,0,0,0,0,1,1,0,2.3082488,0,57.16,56.15,52,47.5,10,1,1,0,0,6,2,3,1,715.33331,223452.84,3186.8518,162315.03,0,1087.24 -8592,10584,19093,-9,19092,19094,1,1,17,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1058.7743,1,2,1,2019,36,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,3.56,59.88,-9,-9,0,1,1,0,0,0,2,3,1,715.33331,223452.84,3186.8518,162315.03,0,1087.24 -8592,10584,19094,19092,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,6.6845345,6.6922374,0,9,5,-19.82806,0,3,2,2019,7,0,40,40,1,0,0,1.7734768,1.7734768,0,0,0,0,0,1,1,0,3.5603681,0,52,47.5,57.16,56.15,8.333333333333334,1,1,0,0,10,2,3,1,715.33331,223452.84,3186.8518,162315.03,0,1087.24 -8593,10585,19095,19096,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,8.9963894,8.9733639,0,15,4,-117.53104,0,2,2,2019,11,0,48,48,1,0,0,18.783291,18.783291,0,0,0,0,0,1,1,0,0,0,48.21,50.73,54.2,57.49,6.666666666666667,1,1,0,1,12,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 -8593,10585,19096,19095,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.2673159,8.1155529,0,15,-4,31.443428,0,2,2,2019,9,0,38,22,1,0,0,10.791121,10.791121,0,0,0,0,0,1,1,0,.51099956,0,54.2,57.49,48.21,50.73,6.666666666666667,1,1,0,1,12,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 -8593,10585,19097,-9,19096,19095,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.6083,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 -8593,10585,19098,-9,19096,19095,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-931.98596,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,1467.75,687516.44,251021.09,351477.69,196151.16,3867.8159 -8594,10586,19099,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,2,0,6.288959,6.3708014,0,0,-1102.6265,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.2106438,6.4964242,60.19,32.12,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,108,726341.06,-1877.0981,198887.7,0,736.15503 -8595,10587,19100,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1067.1317,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.12,29.51,-9,-9,5,1,1,1,0,0,8,1,0,442,344188.88,0,0,0,1455.7887 -8596,10588,19101,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,7.5172129,7.6123953,5.8722029,0,0,-1042.5355,0,3,3,2019,12,0,41,40,1,0,0,5.5051818,5.5051818,0,0,0,0,0,1,1,0,5.9163079,0,36.79,56.27,-9,-9,5,1,1,0,0,8,5,3,0,859,-149690.63,10141.229,0,0,1619.5029 -8596,10588,19102,-9,19101,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-835.79303,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,3,0,859,-149690.63,10141.229,0,0,1619.5029 -8597,10589,19103,19104,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,9.4183397,9.4190817,0,2,2,50.820477,-9,-9,-9,2019,20,8,55,0,1,8,0,31.079042,31.079042,0,0,0,0,0,0,0,0,3.7753792,0,46.16,58.62,51.24,58.84,5,1,1,0,0,5,4,5,1,232.5,209807.17,130454.77,131087.53,58918.445,5008.9937 -8597,10589,19104,19103,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.2270031,8.5631456,0,5,-2,-18.615599,0,2,1,2019,8,0,30,37,1,0,0,16.063036,16.063036,0,0,0,0,0,0,0,0,0,0,51.24,58.84,46.16,58.62,8.333333333333334,1,1,0,0,6,4,5,1,232.5,209807.17,130454.77,131087.53,58918.445,5008.9937 -8598,10590,19105,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,3.9867473,4.1735239,0,0,-968.00275,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5509422,4.0420523,56.64,53.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,193,414176.53,-28356.525,78825.164,33726.676,718.83478 -8599,10591,19106,19107,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.8813457,8.8559847,5.2417431,6,10,-73.169899,0,-9,-9,2019,13,1,37,37,1,1,0,21.192751,21.192751,0,0,0,0,0,0,0,0,5.1705246,5.6228495,35.77,41.56,33.94,53.43,5,1,1,0,0,6,4,5,1,652.5,1682612.8,1189687.4,286022.75,21106.262,6627.1123 -8599,10591,19107,19106,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.1174741,7.8663034,7.2694826,6,-10,50.764355,0,2,2,2019,23,11,30,37,1,11,0,3.8698609,3.8698609,0,0,0,0,0,0,0,0,8.7899065,7.5978961,33.94,53.43,35.77,41.56,8.333333333333334,1,1,0,0,7,4,5,1,652.5,1682612.8,1189687.4,286022.75,21106.262,6627.1123 -8600,10592,19108,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,8.0650997,8.2228785,0,0,-981.07184,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3144841,8.4010563,60.02,56.42,-9,-9,10,1,1,0,0,0,9,4,1,91,1135242.3,704140.56,174744.83,0,2631.8149 -8601,10593,19109,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,2.7134047,2.9222755,0,0,-909.78589,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,3.0031333,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,426,144962.41,-10454.545,113693.98,16933.303,1746.8618 -8601,10594,19110,-9,19109,-9,1,0,33,0,0,0,2,2,-9,0,4,8.2832632,8.085001,0,0,0,-1013.9229,0,3,-9,2019,6,0,35,40,1,0,0,11.697804,11.697804,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,105,-315390.13,0,91530.141,100452.04,1500.4176 -8602,10595,19111,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,5.5157943,5.4687815,0,0,-959.28076,-9,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.4815512,54.04,40.02,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,140,212963.25,0,0,0,425.78952 -8602,10596,19112,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,9.4818859,9.8855095,7.5457225,0,0,-893.56079,-9,3,2,2019,8,0,37,0,1,0,0,49.598835,49.598835,0,0,0,0,0,1,1,0,6.3993268,7.4046054,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,5,0,975,1423032.8,1084054.8,343161.63,0,9284.2695 -8603,10597,19113,19114,-9,-9,1,1,52,0,0,0,3,3,-9,0,2,7.1217246,7.1280403,0,9,0,54.779324,0,-9,-9,2019,26,11,20,18,1,11,0,7.5463376,7.5463376,0,0,0,0,0,0,0,0,0,0,45,40,35.03,51.43,3.333333333333333,1,1,0,0,5,5,5,0,1404,900392.75,782737.63,259548.94,0,2629.8269 -8603,10597,19114,19113,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.792243,8.5843229,0,9,0,14.789152,0,-9,-9,2019,20,6,107,95,1,6,0,6.27073,6.27073,0,0,0,0,0,0,0,0,.26865739,0,35.03,51.43,45,40,6.666666666666667,1,1,0,0,11,5,5,0,1404,900392.75,782737.63,259548.94,0,2629.8269 -8604,10598,19115,19116,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.2486658,8.4378128,0,17,-10,-11.233027,0,2,3,2019,11,0,80,80,1,0,0,5.2651954,5.2651954,0,0,0,0,2,0,0,0,4.6104054,0,57.06,57.76,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,1,726.5,34404.883,-26285.949,245939.91,127035.77,3033.8689 -8604,10598,19116,19115,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.1134062,7.9607449,0,16,10,50.676071,0,2,2,2019,7,0,25,25,1,0,0,17.122772,17.122772,0,0,0,0,0,0,0,0,5.1565633,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,1,726.5,34404.883,-26285.949,245939.91,127035.77,3033.8689 -8605,10599,19117,19118,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.3784876,8.5007076,0,1,1,-12.969657,-9,-9,-9,2019,15,6,35,0,1,6,0,15.871506,15.871506,0,0,0,0,0,0,0,0,4.1562514,0,27.93,60.19,49.35,59.64,8.333333333333334,1,1,0,0,1,4,5,0,516.5,300060.28,33728.824,175298.83,128756.84,2387.5254 -8605,10599,19118,19117,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0667725,8.0372133,0,1,-1,-77.942841,0,1,1,2019,15,3,65,65,1,3,0,7.2440634,7.2440634,0,0,0,0,0,0,0,0,0,0,49.35,59.64,27.93,60.19,6.666666666666667,1,1,0,0,6,4,5,0,516.5,300060.28,33728.824,175298.83,128756.84,2387.5254 -8606,10600,19119,19120,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.7952313,5.3825831,19,-4,15.560822,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1266308,5.1725574,49.63,54.22,57.76,54.51,8.333333333333334,1,1,0,0,0,9,3,1,133,1360690.8,462802.13,464211.44,0,2637.6689 -8606,10600,19120,19119,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.7169991,7.7211289,19,4,12.279592,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6758561,57.76,54.51,49.63,54.22,10,1,1,0,0,4,9,3,1,133,1360690.8,462802.13,464211.44,0,2637.6689 -8607,10601,19121,19122,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,7.8598533,7.8027654,9,-1,29.051105,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,.703471,7.5274515,47.55,33.8,56.1,49.93,8.333333333333334,1,1,0,0,9,2,4,1,1449,-62794.121,9316.6797,0,0,2350.6816 -8607,10601,19122,19121,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.6423979,7.5973539,0,9,1,50.987862,0,3,2,2019,8,0,32,32,1,0,0,7.3616705,7.3616705,0,0,0,0,0,0,0,0,0,0,56.1,49.93,47.55,33.8,10,1,1,0,0,8,2,4,1,1449,-62794.121,9316.6797,0,0,2350.6816 -8608,10602,19123,-9,19127,19126,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.7128,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 -8608,10602,19124,-9,19127,19126,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.25922,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 -8608,10602,19125,-9,19127,19126,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-906.04926,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 -8608,10602,19126,19127,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,8.1692705,8.3018703,0,1,3,94.131859,-9,3,1,2019,10,0,56,0,1,1,0,7.5111952,7.5111952,0,0,0,0,0,1,1,0,0,0,50,57,33.18,60.48,7,2,3,0,0,1,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 -8608,10602,19127,19126,-9,-9,1,0,34,1,3,0,1,1,-9,0,3,0,0,0,1,-3,66.054062,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,33.18,60.48,50,57,6.666666666666667,2,3,0,0,2,9,3,1,838,79851.711,7314.9531,0,0,1582.5549 -8609,10603,19128,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.4074779,5.4457455,0,0,-951.84192,0,3,3,2019,8,1,0,30,4,1,0,0,0,0,0,79.707901,0,0,1,1,0,4.1912794,5.2456326,65.26000000000001,14.58,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,222,671321.13,67368.078,172606.89,0,1775.1951 -8610,10604,19129,19130,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,8.8250322,8.4743681,40,-1,87.862556,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.6989541,8.5625267,49.25,61.25,46.88,60.96,8.333333333333334,1,1,0,0,8,2,5,1,1763,2436338,2126120.8,162369.3,0,4223.9263 -8610,10604,19130,19129,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.2824144,8.1756496,40,1,-134.3768,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.1269169,8.1766167,46.88,60.96,49.25,61.25,10,1,1,0,0,3,2,5,1,1763,2436338,2126120.8,162369.3,0,4223.9263 -8611,10605,19131,-9,19133,19134,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.4328,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 -8611,10605,19132,-9,19133,19134,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1036.6013,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 -8611,10605,19133,19134,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,0,0,8,10,0,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,36.15,25.71,50,57,8.333333333333334,1,1,0,0,4,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 -8611,10605,19134,19133,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,0,0,0,8,-10,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,36.15,25.71,7,1,1,1,0,0,1,1,0,322.5,121037.3,23192.627,0,0,1699.4067 -8612,10606,19135,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.7147341,8.349761,0,0,0,-1036.212,0,2,2,2019,11,0,40,37,1,0,0,14.734705,14.734705,0,0,0,0,2,1,1,0,4.4433455,0,46,61.6,-9,-9,6.666666666666667,1,1,0,0,10,5,5,1,266,948600.38,759835.44,308585.31,0,1708.8938 -8613,10607,19136,19137,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.2187052,7.9873009,0,1,-5,-151.20764,-9,2,2,2019,12,1,35,0,1,1,0,13.279655,13.279655,0,0,0,0,0,0,0,0,0,0,46.33,50.4,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,0,1256.5,664757.25,128605.98,183899.22,149404.88,2960.4004 -8613,10607,19137,19136,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2666473,8.1790447,0,1,5,-186.32977,-9,2,2,2019,10,0,38,0,1,0,0,11.489252,11.489252,0,0,0,0,0,0,0,0,0,0,54.2,57.49,46.33,50.4,8.333333333333334,1,1,0,0,6,2,5,0,1256.5,664757.25,128605.98,183899.22,149404.88,2960.4004 -8613,10608,19138,-9,19136,19137,1,1,20,0,0,0,2,2,-9,0,5,8.2366686,8.4052238,0,0,0,-1059.8578,-9,2,2,2019,6,0,46,0,1,0,1,8.8049221,8.8049221,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,4,2,4,0,315,203565.5,-31702.939,0,0,1403.7396 -8614,10609,19139,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.2965384,8.0443192,0,0,-1003.8651,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,9.0780687,7.2894707,58.15,52.91,-9,-9,10,1,1,0,0,0,9,4,1,2430,1403964.5,854962.44,409933.31,6744.8687,3416.2126 -8615,10610,19140,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.1309128,8.2779303,6.7537508,0,0,-1109.9033,0,2,2,2019,6,0,35,30,1,0,0,16.054766,16.054766,0,0,0,0,0,1,1,0,6.5371585,0,53.75,59.47,-9,-9,10,2,3,0,0,8,9,4,0,1984.5,273564.81,28189.527,366515.69,102454.78,2639.5078 -8615,10610,19141,-9,19140,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-938.68805,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,9,4,0,1984.5,273564.81,28189.527,366515.69,102454.78,2639.5078 -8615,10611,19142,-9,19140,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1006.6493,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,4,2,0,0,0,9,1,0,246,0,0,0,0,0 -8615,10612,19143,-9,19140,-9,1,0,19,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1041.0743,1,2,-9,2019,12,1,0,18,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.92,58.91,-9,-9,10,2,3,0,0,2,9,1,0,1048,33269.484,0,0,0,439.46686 -8616,10613,19144,19145,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.8396888,7.563108,0,9,0,-16.705812,0,2,2,2019,6,0,27,18,1,0,0,7.9953036,7.9953036,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,277,348302.47,452873.56,193566.52,71707.031,2820.6079 -8616,10613,19145,19144,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.6256895,8.2306643,0,9,0,109.41973,0,2,2,2019,8,0,45,45,1,0,0,13.209641,13.209641,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,277,348302.47,452873.56,193566.52,71707.031,2820.6079 -8617,10614,19146,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.2151279,5.7873077,0,0,-989.83563,0,3,-9,2019,10,1,0,0,4,1,0,0,0,1,0,7.7480502,0,0,1,1,0,5.1474977,5.9211807,50.5,38.58,-9,-9,10,1,1,0,0,0,12,2,1,389,-51676.563,39262.043,0,0,802.36145 -8618,10615,19147,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.1233373,5.4751611,0,0,-1049.9978,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7480683,5.1289287,35.24,43.47,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,641,248216.72,140413.3,0,0,1012.1973 -8619,10616,19148,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.9816923,5.9473176,0,0,-986.9187,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,4.7331295,4.9024019,18.775766,0,1,1,0,0,6.2138972,55.25,27.5,-9,-9,10,1,1,0,0,0,6,2,1,120,789499.56,364540.06,40810.492,0,1500.3511 -8620,10617,19149,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-954.55042,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.46,24.8,-9,-9,5,1,1,0,0,0,9,1,0,375,77391.094,-63285.992,0,0,1403.7151 -8620,10618,19150,-9,19149,-9,1,0,23,0,0,0,1,1,-9,0,3,8.3550615,8.3594961,0,0,0,-997.62219,0,2,-9,2019,28,11,54,46,1,11,1,8.0604153,8.0604153,0,0,0,0,0,1,1,0,0,0,19.94,64.13,-9,-9,3.333333333333333,1,1,0,0,5,9,4,0,1068,290667.13,0,0,0,1387.5022 -8621,10619,19151,19152,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.4711204,6.2009873,8,1,103.08416,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6201787,54.21,49.46,54.96,53.17,8.333333333333334,3,4,0,0,0,2,3,1,402.5,836980.75,249426.77,407762.44,0,3602.0059 -8621,10619,19152,19151,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.0981164,7.27038,8,-1,41.430355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3564701,7.410687,54.96,53.17,54.21,49.46,10,1,1,0,0,0,2,3,1,402.5,836980.75,249426.77,407762.44,0,3602.0059 -8622,10620,19153,19154,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.1181607,7.0289335,0,25,0,-39.914639,0,-9,-9,2019,6,0,20,20,1,0,0,5.8689666,5.8689666,0,0,0,0,0,0,0,0,3.3527298,0,57.11,43.98,45.45,42.55,8.333333333333334,1,1,0,0,13,7,4,1,669,688107.63,21062.344,446815.75,64449.078,2378.2427 -8622,10620,19154,19153,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.8080873,8.5716143,0,10,0,-25.190865,0,3,3,2019,10,1,45,45,1,1,0,13.098833,13.098833,0,0,0,0,0,0,0,0,0,0,45.45,42.55,57.11,43.98,5,1,1,0,0,9,7,4,1,669,688107.63,21062.344,446815.75,64449.078,2378.2427 -8622,10621,19155,-9,19153,19154,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-802.7179,0,3,3,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,10,1,1,0,0,4,7,1,1,1456,-64034.766,0,0,0,-184.69156 -8623,10622,19156,19158,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.0545902,8.1638737,0,6,0,-30.967064,0,-9,3,2019,12,0,47,47,1,0,0,7.0365677,7.0365677,0,0,0,0,0,1,1,0,0,0,52.38,55.6,58.05,51.82,6.666666666666667,1,1,0,0,8,4,4,1,1433.3334,152593.66,65699.984,200832.19,138760.41,2826.3267 -8623,10622,19157,-9,19158,19156,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.56641,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1433.3334,152593.66,65699.984,200832.19,138760.41,2826.3267 -8623,10622,19158,19156,-9,-9,1,0,31,0,1,0,2,2,-9,0,5,8.2484169,8.3266964,0,10,0,-118.15178,0,2,2,2019,6,0,40,45,1,0,0,12.014887,12.014887,0,0,0,0,0,1,1,0,0,0,58.05,51.82,52.38,55.6,8.333333333333334,1,1,0,0,8,4,4,1,1433.3334,152593.66,65699.984,200832.19,138760.41,2826.3267 -8624,10623,19159,19160,-9,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,8,-13,0,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,42,1,1,0,0,0,34.86,26.05,37.48,27.77,5,1,1,1,1,0,5,1,1,545.5,83700.336,0,0,0,813.73773 -8624,10623,19160,19159,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,8,13,0,0,-9,-9,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.48,27.77,34.86,26.05,0,1,1,0,0,0,5,1,1,545.5,83700.336,0,0,0,813.73773 -8625,10624,19161,19162,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3657432,7.6284451,9,6,36.529881,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4828024,7.2766838,51.77,58.57,55.2,49.4,8.333333333333334,1,1,0,0,0,10,3,1,938,1818132,1264052,355770.03,0,3233.1279 -8625,10624,19162,19161,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.873632,7.8160281,38,-6,-86.554604,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1546302,7.4951744,55.2,49.4,51.77,58.57,8.333333333333334,1,1,0,0,11,10,3,1,938,1818132,1264052,355770.03,0,3233.1279 -8626,10625,19163,19164,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.7600145,8.8769007,0,36,-5,25.191608,0,2,-9,2019,10,1,40,42,1,1,0,16.421667,16.421667,0,0,0,0,0,0,0,0,4.2015724,0,49.97,40.31,61.12,51.57,6.666666666666667,1,1,0,0,13,10,5,1,1742.5,2180860.5,1457546.3,342220.34,0,2834.2642 -8626,10625,19164,19163,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.3500352,7.2891469,37,5,12.378525,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.1158576,7.0411181,61.12,51.57,49.97,40.31,8.333333333333334,1,1,0,0,11,10,5,1,1742.5,2180860.5,1457546.3,342220.34,0,2834.2642 -8627,10626,19165,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6232357,7.6230588,0,0,0,-926.63165,0,3,3,2019,12,2,25,25,1,2,0,10.885183,10.885183,0,0,0,0,0,0,0,0,0,0,37.42,60.49,-9,-9,10,1,1,0,0,11,13,3,1,999,34264.035,0,101844.27,0,651.75903 -8628,10627,19166,-9,19168,19167,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.82428,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,560.66669,99714.516,0,0,0,4180.5947 -8628,10627,19167,19168,-9,-9,1,1,27,0,1,0,2,2,-9,0,5,9.0241404,8.9845476,0,6,-1,62.951187,0,2,-9,2019,11,0,40,36,1,0,0,27.882277,27.882277,0,0,0,0,0,1,1,0,4.3545923,0,59.04,51.29,26.23,53.27,10,1,1,0,0,5,4,5,1,560.66669,99714.516,0,0,0,4180.5947 -8628,10627,19168,19167,-9,-9,1,0,28,0,1,0,1,1,-9,0,2,8.3078117,7.7662816,0,6,1,90.044846,0,-9,-9,2019,22,10,24,24,1,10,0,14.080943,14.080943,0,0,0,0,0,1,1,0,1.5934199,0,26.23,53.27,59.04,51.29,8.333333333333334,1,1,0,0,5,4,5,1,560.66669,99714.516,0,0,0,4180.5947 -8629,10628,19169,-9,-9,-9,1,0,24,0,0,0,2,2,1,0,4,8.5463228,8.6562147,0,0,0,-921.49432,-9,-9,-9,2019,7,0,58,0,1,0,0,7.7466187,7.7466187,0,0,0,0,0,0,0,0,7.9743114,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,875,82958.695,0,0,0,3311.6067 -8630,10629,19170,-9,19173,19171,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.0789,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 -8630,10629,19171,19173,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,9.0226107,8.8416834,0,14,4,95.973854,0,2,1,2019,11,0,52,50,1,0,0,14.196637,14.196637,0,0,0,0,0,1,1,0,0,0,54.02,40.03,54.13,48.04,6.666666666666667,1,1,0,0,10,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 -8630,10629,19172,-9,19173,19171,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.87268,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 -8630,10629,19173,19171,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.71138,8.7560415,0,14,-4,11.011535,0,1,2,2019,6,0,50,46,1,0,0,13.216874,13.216874,0,0,0,0,0,1,1,0,0,0,54.13,48.04,54.02,40.03,10,1,1,0,0,10,11,5,1,403.75,394988.19,268282.28,172723.61,115378.97,4857.1958 -8631,10630,19174,19175,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,56,6,0,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,12.233985,0,2,1,1,0,0,0,51.15,14.45,43.26,58.26,8.333333333333334,1,1,0,0,7,7,1,1,557,73655.68,19019.814,95535.344,0,503.36203 -8631,10630,19175,19174,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,8,-6,0,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,0,43.26,58.26,51.15,14.45,8.333333333333334,1,1,0,0,0,7,1,1,557,73655.68,19019.814,95535.344,0,503.36203 -8632,10631,19176,19177,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,23,-4,57.043911,0,3,3,2019,14,2,0,47,4,2,0,0,0,0,0,0,0,0,0,0,0,2.8668485,0,40.33,55.64,54.2,57.49,6.666666666666667,1,1,0,0,10,5,2,1,1028.5,-55650.586,-29809.289,80747.469,0,1056.5452 -8632,10631,19177,19176,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.5033545,7.2431936,23,4,-68.908348,0,-9,-9,2019,18,5,0,25,3,5,0,0,0,0,0,0,0,0,0,0,0,6.9904685,6.5556026,54.2,57.49,40.33,55.64,6.666666666666667,1,1,0,0,10,5,2,1,1028.5,-55650.586,-29809.289,80747.469,0,1056.5452 -8633,10632,19178,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6433811,8.6029005,0,0,0,-1001.513,0,3,3,2019,22,9,38,38,1,9,0,15.212506,15.212506,0,0,0,0,0,0,0,0,0,0,39.04,56.44,-9,-9,5,1,1,0,0,11,13,5,1,866,716174.56,609690.31,18322.207,0,1942.4955 -8634,10633,19179,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,7.1579885,7.2199869,0,0,-1013.8594,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3683925,51.81,50.46,-9,-9,5,1,1,0,0,0,10,3,1,726,354261.88,13833.083,163101.58,0,1134.0233 -8635,10634,19180,19181,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.2293401,6.0186424,56,0,114.14028,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0409846,6.2885556,56,52,43.54,34.21,10,1,1,0,0,0,7,2,1,691,665522.13,0,309668.88,0,920.54352 -8635,10634,19181,19180,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,2.3306808,2.1048813,56,0,25.663939,0,3,3,2019,16,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.7056344,2.1056647,43.54,34.21,56,52,8.333333333333334,1,1,0,0,0,7,2,1,691,665522.13,0,309668.88,0,920.54352 -8636,10635,19182,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,0,6.7131739,6.8475466,0,0,-796.85907,1,1,1,2019,12,1,0,43,2,1,0,0,0,0,0,0,0,0,0,0,0,7.5350904,0,52.36,45.23,-9,-9,6.666666666666667,1,1,0,0,8,9,2,0,3104,437462.91,0,0,0,712.64044 -8637,10636,19183,19184,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.1083546,8.7849112,0,26,4,-109.96478,0,2,2,2019,12,1,38,41,1,1,0,21.893803,21.893803,0,0,0,0,0,0,0,0,0,0,55.19,54.26,54.07,52.08,8.333333333333334,1,1,0,0,12,4,5,1,274.5,92590.969,141431.13,355571.25,183303.84,3851.6025 -8637,10636,19184,19183,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.3742685,8.390789,0,27,-4,20.891035,0,2,-9,2019,9,0,41,41,1,0,0,9.8100882,9.8100882,0,0,0,0,0,0,0,0,0,0,54.07,52.08,55.19,54.26,8.333333333333334,1,1,0,0,11,4,5,1,274.5,92590.969,141431.13,355571.25,183303.84,3851.6025 -8637,10637,19185,-9,19184,19183,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-869.00995,-9,1,2,2019,12,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,23,43.59,-9,-9,10,1,1,0,0,0,4,2,1,824,-58228.402,0,0,0,0 -8638,10638,19186,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.6358,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.79,36.29,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,478,0,0,0,0,696.68188 -8639,10639,19187,19188,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,4.8921776,4.9879971,25,0,62.018814,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,0,5.1143413,49.66,26.04,40.21,27,8.333333333333334,1,1,0,1,0,5,2,0,516,189348.64,67943.055,99144.563,0,1487.5737 -8639,10639,19188,19187,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,3.8227766,3.7240369,25,0,-71.79763,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,3.469439,3.563148,40.21,27,49.66,26.04,1.666666666666667,1,1,0,1,0,5,2,0,516,189348.64,67943.055,99144.563,0,1487.5737 -8640,10640,19189,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.0348911,8.8236074,0,0,0,-924.57776,0,3,3,2019,9,0,45,35,1,0,0,15.230965,15.230965,0,0,0,0,0,0,0,0,1.8961242,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,514,265967.59,206931.31,213261.08,65858.867,2330.9182 -8641,10641,19190,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4345121,8.6494284,0,0,0,-959.80731,0,2,1,2019,7,0,40,38,1,0,0,15.462959,15.462959,0,0,0,0,0,0,0,0,2.8867373,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,581,760059.69,109529.3,278034.97,98596.75,1476.3655 -8642,10642,19191,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.3302574,8.2990999,0,0,-1104.4697,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.18053031,7.959208,60.29,52.11,-9,-9,1.666666666666667,1,1,0,0,0,2,4,1,732,-190048.84,0,0,0,1892.8918 -8643,10643,19192,19193,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.0992393,7.8394308,0,5,3,-2.5879171,0,-9,-9,2019,11,1,37,25,1,1,0,13.40121,13.40121,0,0,0,0,0,0,0,0,0,0,38.4,56.03,45.43,44.67,6.666666666666667,1,1,0,0,4,11,5,1,1913.5,50267.289,75782.75,0,0,2759.6995 -8643,10643,19193,19192,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.5203705,8.6919889,0,5,-3,87.218407,0,2,2,2019,12,0,37,37,1,0,0,17.130825,17.130825,0,0,0,0,0,0,0,0,0,0,45.43,44.67,38.4,56.03,3.333333333333333,1,1,0,0,8,11,5,1,1913.5,50267.289,75782.75,0,0,2759.6995 -8644,10644,19194,-9,-9,-9,1,0,33,0,3,0,3,3,-9,0,4,7.2496824,7.7784262,7.1611419,0,0,-1021.4697,0,2,2,2019,13,3,30,0,1,3,0,5.7575445,5.7575445,0,0,0,0,0,1,1,0,6.9650383,7.4822216,35.67,64.46000000000001,-9,-9,3.333333333333333,1,1,0,0,1,8,3,1,1015.75,39271.172,0,0,0,3692.7429 -8644,10644,19195,-9,19194,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.4343,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,1,1015.75,39271.172,0,0,0,3692.7429 -8644,10644,19196,-9,19194,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.6685,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,1,1015.75,39271.172,0,0,0,3692.7429 -8644,10644,19197,-9,19194,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1084.2982,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,3,1,1015.75,39271.172,0,0,0,3692.7429 -8645,10645,19198,-9,19199,19200,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1080.4346,-9,1,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,53.16,32.18,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 -8645,10645,19199,19200,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.2187443,8.0029335,0,21,-1,-6.6509285,0,2,2,2019,13,1,27,31,1,1,0,14.332408,14.332408,0,0,0,0,0,0,0,0,0,0,40.42,63.93,54.2,57.49,6.666666666666667,1,1,0,0,8,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 -8645,10645,19200,19199,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.1108398,9.5556068,0,21,1,62.125164,0,2,1,2019,10,0,37,43,1,0,0,38.253887,38.253887,0,0,0,0,0,0,0,0,3.5014243,0,54.2,57.49,40.42,63.93,8.333333333333334,1,1,0,0,9,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 -8645,10645,19201,-9,19199,19200,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1092.5071,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,8,5,1,439.75,649142.88,181317.95,800683.25,256070.73,5451.1836 -8646,10646,19202,19203,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.955781,8.7539759,0,8,-2,216.47914,-9,-9,-9,2019,10,0,24,0,1,1,0,26.078011,26.078011,0,0,0,0,0,1,1,0,0,0,51,49,54.1,59.11,7,3,4,0,0,7,8,5,1,655,1130230.5,743539.94,339433.22,77268.063,4363.6465 -8646,10646,19203,19202,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,8.2460117,8.4735422,5.9337273,40,2,-125.55427,0,3,2,2019,8,0,21,20,1,0,0,19.80987,19.80987,0,0,0,0,0,1,1,0,5.8215003,5.8656416,54.1,59.11,51,49,10,3,4,0,0,10,8,5,1,655,1130230.5,743539.94,339433.22,77268.063,4363.6465 -8647,10647,19204,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1013.398,0,2,2,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,.54395819,0,37,28,-9,-9,4,1,1,0,0,0,7,1,0,396,-200604.53,0,0,0,871.12769 -8648,10648,19205,19206,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,24.02,31.21,32.14,26.13,1.666666666666667,1,1,0,0,0,12,1,0,283,200970.94,0,143255.44,0,1021.9497 -8648,10648,19206,19205,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,3,3,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,5.48,1,1,0,0,0,32.14,26.13,24.02,31.21,0,1,1,0,0,0,12,1,0,283,200970.94,0,143255.44,0,1021.9497 -8649,10649,19207,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.9078245,9.1760464,5.5660706,0,0,-1003.5867,0,3,3,2019,10,0,45,43,1,1,0,20.002918,20.002918,0,0,0,0,0,0,0,0,0,5.9733629,51,48,-9,-9,7,1,1,0,0,9,4,5,1,764,504845.88,11721.543,378752,0,2485.4441 -8649,10650,19208,-9,-9,19207,1,1,26,0,0,0,1,1,-9,0,4,8.0439339,8.1416731,0,0,0,-992.40771,0,2,2,2019,10,0,37,41,1,1,1,11.673198,11.673198,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,5,4,4,1,1095,0,0,0,0,1545.8547 -8650,10651,19209,19211,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.3187132,8.3369808,0,7,0,-78.133469,0,-9,-9,2019,11,2,30,30,1,2,0,15.546595,15.546595,0,0,0,0,0,1,1,0,3.4714592,0,43.48,60.97,44.68,56.37,8.333333333333334,1,1,0,0,8,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 -8650,10651,19210,-9,19209,19211,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.7032,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 -8650,10651,19211,19209,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,9.108655,8.9008026,0,7,0,59.224781,0,1,1,2019,12,0,45,55,1,0,0,23.420454,23.420454,0,0,0,0,0,1,1,0,0,0,44.68,56.37,43.48,60.97,8.333333333333334,1,1,0,0,8,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 -8650,10651,19212,-9,19209,19211,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-842.81506,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 -8650,10651,19213,-9,19209,19211,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.47955,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,267.79999,654553.5,467076.94,280232.31,208446.52,4563.2661 -8651,10652,19214,19215,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.2751274,7.9160519,7.6861477,46,2,15.88369,0,-9,-9,2019,6,0,28,28,1,0,0,6.0089641,6.0089641,1,0,0,0,0,1,1,0,2.7309148,7.5937233,54.79,55.86,45.13,41.57,8.333333333333334,1,1,0,0,9,9,3,1,801.5,1108907.9,475378.34,347941.19,0,2630.8396 -8651,10652,19215,19214,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,46,-2,-115.89696,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5705972,0,45.13,41.57,54.79,55.86,10,1,1,0,0,8,9,3,1,801.5,1108907.9,475378.34,347941.19,0,2630.8396 -8652,10653,19216,19217,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.2647057,8.3568726,0,1,9,57.98959,-9,-9,-9,2019,18,6,50,0,1,6,0,8.3582315,8.3582315,0,0,0,0,0,0,0,0,3.3524499,0,32.16,46.11,34.36,57.34,1.666666666666667,1,1,0,0,1,8,4,0,226,473816.59,142043.36,526740,200016.94,2823.8774 -8652,10653,19217,19216,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.6208496,7.817502,0,1,0,51.889832,-9,2,2,2019,11,0,54,0,1,0,0,5.0351791,5.0351791,0,0,0,0,0,0,0,0,0,0,34.36,57.34,32.16,46.11,8.333333333333334,1,1,0,0,4,8,4,0,226,473816.59,142043.36,526740,200016.94,2823.8774 -8653,10654,19218,-9,19219,19221,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.83472,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 -8653,10654,19219,19221,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.9601383,7.9535985,0,6,-3,84.586975,0,-9,-9,2019,7,0,20,22,1,0,0,13.910397,13.910397,0,0,0,0,0,1,1,0,0,0,53.56,49.66,54.37,54.8,6.666666666666667,1,1,0,0,12,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 -8653,10654,19220,-9,19219,19221,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.24451,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 -8653,10654,19221,19219,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.8683195,8.4395905,0,6,3,-7.1550488,0,-9,-9,2019,7,1,40,40,1,1,0,15.817358,15.817358,0,0,0,0,0,1,1,0,0,0,54.37,54.8,53.56,49.66,10,3,4,0,0,10,9,5,0,476.25,215263.09,33045.477,520455.63,354329.47,3549.0591 -8654,10655,19222,19223,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,5.3361273,5.2658434,58,-5,11.434213,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.3658099,57.06,57.76,55.59,36.72,8.333333333333334,1,1,0,0,0,12,2,0,941,500018.34,12334.912,536263.5,0,1238.7764 -8654,10655,19223,19222,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.3864603,6.4628043,58,5,71.918938,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5811768,55.59,36.72,57.06,57.76,8.333333333333334,1,1,0,0,0,12,2,0,941,500018.34,12334.912,536263.5,0,1238.7764 -8655,10656,19224,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,5.6111484,5.7545938,0,0,-968.87653,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,.93485689,6.4152484,21.51738,0,1,1,0,5.8412108,5.6453323,65.5,15.37,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1289,454035.72,192234.19,264523.75,0,364.39401 -8656,10657,19225,19228,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.6289701,8.4228468,0,7,6,-32.426056,0,-9,-9,2019,9,0,40,45,1,1,0,13.250429,13.250429,0,0,0,0,0,1,1,0,0,0,52,55,48.87,58.55,8,1,1,0,0,1,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 -8656,10657,19226,-9,19228,19225,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.5756,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 -8656,10657,19227,-9,19228,19225,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.4935,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 -8656,10657,19228,19225,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.1975698,8.2181082,0,10,-6,58.046104,0,2,-9,2019,6,0,22,33,1,0,0,17.748268,17.748268,0,0,0,0,0,1,1,0,.55821031,0,48.87,58.55,52,55,8.333333333333334,1,1,0,0,10,7,4,1,334.5,1097035,805210.38,223243.75,72025.953,3370.7107 -8657,10658,19229,19230,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.3253717,8.4621487,0,7,-2,-51.609108,0,2,2,2019,16,4,19,20,1,4,0,25.316257,25.316257,0,0,0,0,0,0,0,0,2.7280214,0,36.97,58.59,48.87,58.55,6.666666666666667,1,1,0,0,7,9,5,1,719,3660770.5,2314979,958169.94,0,7780.1191 -8657,10658,19230,19229,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.5131712,9.7714138,0,7,2,-85.876472,0,2,2,2019,10,0,44,48,1,0,0,49.590714,49.590714,0,0,0,0,0,0,0,0,2.915014,0,48.87,58.55,36.97,58.59,5,1,1,0,0,7,9,5,1,719,3660770.5,2314979,958169.94,0,7780.1191 -8658,10659,19231,19232,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,33,5,-158.03813,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.5953889,0,57.33,53.46,57.57,49.69,8.333333333333334,1,1,0,0,0,9,3,1,557,895398.19,481168.44,452781.94,0,1254.1372 -8658,10659,19232,19231,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,7.3232427,7.6250134,6.7256832,33,-5,31.626736,0,3,2,2019,6,0,24,24,1,0,0,5.9131546,5.9131546,0,0,0,0,0,1,1,0,4.0927153,7.1459336,57.57,49.69,57.33,53.46,8.333333333333334,1,1,0,0,11,9,3,1,557,895398.19,481168.44,452781.94,0,1254.1372 -8659,10660,19233,19234,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,8,-3,-6.018137,0,3,-9,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.49,42.59,54.85,54.62,10,2,3,0,0,0,8,3,1,973,421622.78,-28898.07,373603.25,0,1424.2715 -8659,10660,19234,19233,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.9902577,7.865324,0,38,3,-43.627575,0,-9,-9,2019,5,0,40,40,1,0,0,9.4966936,9.4966936,0,0,0,0,0,0,0,0,0,0,54.85,54.62,54.49,42.59,8.333333333333334,2,3,0,0,8,8,3,1,973,421622.78,-28898.07,373603.25,0,1424.2715 -8659,10661,19235,-9,19233,19234,1,1,25,0,0,0,1,1,-9,0,4,8.8096018,8.9959879,0,0,0,-1041.3328,0,3,2,2019,11,3,43,37,1,3,1,17.800337,17.800337,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,647,-134436.11,-55034.805,0,0,2894.979 -8659,10662,19236,-9,19233,19234,1,1,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1049.2452,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,504,329761.81,0,0,0,0 -8660,10663,19237,19238,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.3757734,7.1833749,8,1,108.40724,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5097821,7.3134847,48.45,57.49,47.31,50.2,8.333333333333334,1,1,0,0,0,2,3,1,663,711384.75,466492.63,-2435.936,0,2732.8496 -8660,10663,19238,19237,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.1011119,6.0138178,8,-1,92.026573,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.5419419,6.1942897,47.31,50.2,48.45,57.49,5,1,1,0,0,0,2,3,1,663,711384.75,466492.63,-2435.936,0,2732.8496 -8661,10664,19239,19240,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,6,4,168.47047,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,35.1,60.02,56.42,8.333333333333334,1,1,0,0,0,9,5,1,483,1498680.8,1338677.3,501713.5,74054.633,2441.8445 -8661,10664,19240,19239,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,8.9928007,9.072423,0,6,-4,60.06884,0,3,3,2019,6,0,44,45,1,0,0,19.82732,19.82732,0,0,0,0,0,0,0,0,0,0,60.02,56.42,56.35,35.1,8.333333333333334,1,1,0,0,7,9,5,1,483,1498680.8,1338677.3,501713.5,74054.633,2441.8445 -8661,10665,19241,-9,19239,19240,1,1,26,0,0,0,2,2,-9,0,3,8.3382149,8.2943726,0,0,0,-1074.1804,0,3,3,2019,10,0,41,45,1,0,1,14.051281,14.051281,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,647,180729.48,4639.9531,0,0,1458.6533 -8662,10666,19242,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.67205,5.6926084,0,0,-1065.4592,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.6047816,40.5,42.22,-9,-9,6.666666666666667,1,1,0,1,0,7,2,0,296,-63799.066,-57558.52,0,0,1390.6857 -8663,10667,19243,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,4.0147238,4.0574784,0,0,-1033.2694,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,8.0581636,0,0,1,1,0,0,3.9425035,37.6,14.31,-9,-9,5,1,1,0,0,1,12,2,1,860,262196.34,24147.963,36555.492,0,1931.7769 -8664,10668,19244,19245,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,54,1,-133.03314,0,3,-9,2019,11,1,0,0,4,1,0,0,0,1,0,10.649105,0,0,1,1,0,4.4184899,0,40,23,52.32,36.86,6.666666666666667,1,1,0,0,5,10,2,1,641.5,697888.13,323358,304838.69,0,2195.9937 -8664,10668,19245,19244,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.7858157,7.7846284,55,-1,-12.181893,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,3.4787126,7.5807657,52.32,36.86,40,23,6.666666666666667,1,1,0,0,0,10,2,1,641.5,697888.13,323358,304838.69,0,2195.9937 -8665,10669,19246,19248,-9,-9,1,1,54,0,1,0,3,3,-9,1,4,0,5.9805694,6.4914751,27,6,-54.213108,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0284567,53,54,43.55,42.24,8,2,3,0,0,0,8,2,0,404.33334,-60100.398,56367.387,0,0,2823.3689 -8665,10669,19247,-9,19248,19246,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.13855,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,404.33334,-60100.398,56367.387,0,0,2823.3689 -8665,10669,19248,19246,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,27,-6,134.13063,0,3,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.55,42.24,53,54,5,2,3,0,1,0,8,2,0,404.33334,-60100.398,56367.387,0,0,2823.3689 -8665,10670,19249,-9,19248,19246,1,1,22,0,1,0,2,2,-9,0,4,7.949657,8.1700211,0,0,0,-873.44843,0,3,3,2019,10,0,15,12,1,1,1,27.232105,27.232105,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,4,0,1348,85701.25,0,0,0,1232.7831 -8665,10671,19250,-9,19248,19246,1,0,21,0,1,0,2,2,-9,0,3,7.7148085,7.8519115,0,0,0,-1084.5341,0,3,3,2019,9,0,10,37,1,0,1,32.478992,32.478992,0,0,0,0,0,1,1,0,0,0,53.78,48.41,-9,-9,6.666666666666667,2,3,0,0,2,8,3,0,1631,-134780.48,0,0,0,1824.0305 -8666,10672,19251,-9,19253,19252,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.2032,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,677.33331,1332113.5,869166.25,621897.63,205975.69,2842.1614 -8666,10672,19252,19253,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,8.5587912,8.6074467,0,10,7,11.348427,0,-9,-9,2019,24,12,40,34,1,12,0,13.172237,13.172237,0,0,0,0,0,1,1,0,0,0,30.55,52.39,25.42,65.41,3.333333333333333,1,1,0,0,12,7,4,1,677.33331,1332113.5,869166.25,621897.63,205975.69,2842.1614 -8666,10672,19253,19252,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.4372358,8.3626537,0,10,-7,45.50676,0,2,-9,2019,20,8,37,40,1,8,0,13.332228,13.332228,0,0,0,0,0,1,1,0,0,0,25.42,65.41,30.55,52.39,3.333333333333333,1,1,0,0,11,7,4,1,677.33331,1332113.5,869166.25,621897.63,205975.69,2842.1614 -8667,10673,19254,19255,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.4653525,5.5776224,53,3,27.854492,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,39.765606,3.0123,0,1,1,0,0,6.0883532,42.62,15.89,60.84,23.72,5,1,1,0,0,0,5,2,1,1051.5,270753.81,124282.45,62132.148,0,1873.0525 -8667,10673,19255,19254,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-3,-130.5313,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,27,1,1,0,0,0,60.84,23.72,42.62,15.89,8.333333333333334,1,1,0,0,0,5,2,1,1051.5,270753.81,124282.45,62132.148,0,1873.0525 -8668,10674,19256,19257,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.7751088,7.636889,0,2,0,56.978706,0,-9,-9,2019,10,1,37,35,1,1,0,7.7221799,7.7221799,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.2,57.49,10,1,1,0,0,6,6,4,0,779.5,93082.43,10537.664,0,0,2219.3313 -8668,10674,19257,19256,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.6955256,7.7355008,0,2,0,-170.82065,0,2,3,2019,7,0,37,38,1,0,0,6.3276663,6.3276663,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.47,59.4,8.333333333333334,1,1,0,0,5,6,4,0,779.5,93082.43,10537.664,0,0,2219.3313 -8669,10675,19258,19259,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,9,-1,19.127766,0,2,2,2019,24,8,0,0,4,8,0,0,0,1,1.3814318,1.1090268,25.510466,0,1,1,0,2.8756769,0,57.32,10.78,48.02,34.89,6.666666666666667,1,1,0,0,0,2,3,0,652.5,419293,272905.81,414941.97,0,2524.6787 -8669,10675,19259,19258,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.7643776,7.5400286,9,1,61.481964,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.6705265,7.6849618,48.02,34.89,57.32,10.78,8.333333333333334,1,1,0,0,7,2,3,0,652.5,419293,272905.81,414941.97,0,2524.6787 -8670,10676,19260,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,5.0528698,4.9370689,0,0,-975.64075,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,2.9082344,5.2538071,21.846558,0,1,1,0,5.1169448,4.9453139,56.01,27.43,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,298,199049.86,0,0,0,853.49664 -8671,10677,19261,19263,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.3772149,7.6347175,0,20,5,-180.96625,0,3,3,2019,4,0,30,40,1,0,0,6.5437999,6.5437999,0,0,0,0,0,0,0,0,8.0818453,0,56.01,51.37,57.1,57.51,8.333333333333334,2,3,0,0,8,8,5,1,1199.6666,516418.09,375479.53,301766.06,0,4792.8823 -8671,10677,19262,-9,19263,19261,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1047.7504,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,2,3,0,0,0,8,5,1,1199.6666,516418.09,375479.53,301766.06,0,4792.8823 -8671,10677,19263,19261,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7331314,8.8975973,0,20,-5,-3.6826766,-9,-9,-9,2019,12,0,38,0,1,0,0,16.639788,16.639788,0,0,0,0,0,0,0,0,3.1076539,0,57.1,57.51,56.01,51.37,8.333333333333334,2,3,0,0,11,8,5,1,1199.6666,516418.09,375479.53,301766.06,0,4792.8823 -8671,10678,19264,-9,19263,19261,1,1,24,0,0,0,1,1,-9,0,4,8.3358631,8.1417522,0,0,0,-985.03912,-9,2,1,2019,4,0,43,0,1,0,1,13.430429,13.430429,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,1,8,4,1,396,314376.31,4837.8545,0,0,1930.5415 -8671,10679,19265,-9,19263,19261,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1041.0347,-9,1,2,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,991,24235.436,0,0,0,0 -8671,10680,19266,-9,19263,19261,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1081.8574,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.77,51.93,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1897,0,0,0,0,0 -8672,10681,19267,19268,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,7.9120646,8.3175001,34,2,-197.31027,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.6520777,7.9642072,55.19,54.26,52,53,8.333333333333334,1,1,0,0,0,10,3,1,1375,1606780.3,0,1004761.8,0,1693.8059 -8672,10681,19268,19267,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,0,0,0,6,-2,-19.048903,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,55.19,54.26,8,1,1,1,0,0,10,3,1,1375,1606780.3,0,1004761.8,0,1693.8059 -8673,10682,19269,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1020.7984,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,7.1888456,0,50.48,34.52,-9,-9,5,1,1,0,0,1,5,1,1,169,78454.984,0,0,0,1142.7587 -8674,10683,19270,19271,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,39,-1,6.6695642,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,56.66,52.99,51.28,8.333333333333334,1,1,0,0,0,12,5,1,976.5,2414126,1757479.6,449195.44,0,2970.6211 -8674,10683,19271,19270,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.0176287,9.3057632,0,39,1,59.105465,0,2,3,2019,9,0,45,48,1,0,0,21.089689,21.089689,0,0,0,0,0,1,1,0,0,0,52.99,51.28,47.15,56.66,6.666666666666667,1,1,0,0,9,12,5,1,976.5,2414126,1757479.6,449195.44,0,2970.6211 -8675,10684,19272,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.2924061,7.5228081,0,0,-1045.9578,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.249516,7.3586783,54.32,48.01,-9,-9,10,1,1,0,0,0,6,3,1,587,491101.69,279325.91,0,0,1481.7119 -8676,10685,19273,-9,19277,19276,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.0757,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 -8676,10685,19274,-9,19277,19276,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.5143,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 -8676,10685,19275,-9,19277,19276,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.92847,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 -8676,10685,19276,19277,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,7.7033715,7.4698286,0,20,6,-17.909279,-9,3,3,2019,11,2,40,0,1,2,0,5.1480308,5.1480308,0,0,0,0,86,1,1,0,0,0,41.44,49.62,27.69,22.93,1.666666666666667,1,1,0,0,9,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 -8676,10685,19277,19276,-9,-9,1,0,45,0,3,0,2,2,-9,1,1,0,0,0,20,-6,78.711151,0,-9,-9,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,27.69,22.93,41.44,49.62,0,1,1,0,0,4,9,2,0,433.39999,591.94452,-10930.844,0,0,2961.2534 -8676,10686,19278,-9,19277,19276,1,1,18,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1047.7441,1,2,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,2,9,2,0,956,0,0,0,0,-348.39011 -8677,10687,19279,19280,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,6.755868,6.619379,0,10,-1,74.635902,0,3,3,2019,11,0,18,18,1,2,0,5.4473791,5.4473791,0,0,0,0,0,1,1,0,0,0,48,57,41.98,44.15,8.333333333333334,1,1,0,0,7,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 -8677,10687,19280,19279,-9,-9,1,1,39,1,3,0,2,2,-9,0,3,8.1597347,8.3274336,0,10,1,-17.913021,0,-9,-9,2019,12,0,50,50,1,0,0,9.9651117,9.9651117,0,0,0,0,0,1,1,0,0,0,41.98,44.15,48,57,8.333333333333334,1,1,0,0,11,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 -8677,10687,19281,-9,19279,19280,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-967.73126,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 -8677,10687,19282,-9,19279,19280,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.2123,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 -8677,10687,19283,-9,19279,19280,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.5734,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,965.59998,59742.691,-30392.781,0,0,2647.052 -8678,10688,19284,19285,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4319391,8.6640282,0,8,0,-70.599213,0,-9,-9,2019,9,0,40,37,1,1,0,13.842261,13.842261,0,0,0,0,0,0,0,0,0,0,52,55,51.02,52.22,8,1,1,0,0,1,9,5,1,571,418268.81,141312.91,452696.91,41992.813,3925.0322 -8678,10688,19285,19284,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.2535172,8.2643003,0,8,0,-75.640617,0,2,2,2019,9,0,35,35,1,0,0,10.70211,10.70211,0,0,0,0,0,0,0,0,0,0,51.02,52.22,52,55,8.333333333333334,1,1,0,0,13,9,5,1,571,418268.81,141312.91,452696.91,41992.813,3925.0322 -8679,10689,19286,-9,19290,19287,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.82056,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 -8679,10689,19287,19290,19291,-9,1,1,38,0,3,0,2,2,-9,0,3,7.8132801,7.4789362,0,3,-1,45.537254,0,3,-9,2019,6,0,37,25,1,0,0,7.6034794,7.6034794,0,0,0,0,7,1,0,1,0,0,57.33,53.46,57.33,53.46,8.333333333333334,2,3,0,0,7,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 -8679,10689,19288,-9,19290,19287,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1046.7473,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 -8679,10689,19289,-9,19290,19287,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.183,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 -8679,10689,19290,19287,-9,-9,1,0,39,0,3,0,3,3,-9,1,3,0,0,0,3,1,-15.742541,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,57.33,53.46,57.33,53.46,8.333333333333334,2,3,0,0,10,6,2,1,486.60001,93776.25,0,111625.63,51860.512,2767.5054 -8679,10690,19291,-9,-9,-9,1,0,80,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1083.4388,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,0,0,52,45,-9,-9,8,2,3,0,0,0,6,1,1,2366,110150.97,0,0,0,924.53687 -8680,10691,19292,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,2,0,5.7899327,5.9568501,0,0,-1037.9038,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.4524298,48,34,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,277,223882.81,0,184994.27,0,890.67517 -8681,10692,19293,19294,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,9.3642368,9.219965,0,7,1,3.8618431,0,3,2,2019,11,3,43,42,1,3,0,24.532232,24.532232,0,0,0,0,0,0,0,0,.91225433,0,51.83,57.2,55.36,54.24,8.333333333333334,1,1,0,0,11,6,5,1,770.66669,330149.47,-20294.867,90375.445,41148.289,3567.3838 -8681,10692,19294,19293,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,5.2500191,5.0968904,0,7,-1,33.808914,0,-9,-9,2019,7,0,52,0,1,0,0,.35556459,.35556459,0,0,0,0,0,0,0,0,0,0,55.36,54.24,51.83,57.2,10,1,1,0,0,3,6,5,1,770.66669,330149.47,-20294.867,90375.445,41148.289,3567.3838 -8681,10692,19295,-9,19294,19293,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-899.67944,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,770.66669,330149.47,-20294.867,90375.445,41148.289,3567.3838 -8682,10693,19296,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,7.0851083,8.0868711,7.2617817,0,0,-1005.6426,0,3,3,2019,11,0,15,15,1,0,0,13.55649,13.55649,1,0,0,0,0,1,1,0,0,7.3432417,38.3,27.26,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,278,637956.06,508415.84,119983.09,0,2090.6741 -8683,10694,19297,19298,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.5622301,8.2134428,0,18,-2,49.588238,0,-9,-9,2019,9,0,40,15,1,1,0,13.37745,13.37745,0,0,0,0,0,1,1,0,4.8654432,0,53,55,57.33,53.46,8,3,4,0,0,1,9,5,1,1017,1136626.3,870935.75,436644.69,184250.63,4361.3252 -8683,10694,19298,19297,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.0979424,8.9343748,0,18,2,19.353533,0,2,3,2019,7,0,44,40,1,0,0,20.491863,20.491863,0,0,0,0,0,1,1,0,3.7073677,0,57.33,53.46,53,55,6.666666666666667,3,4,0,0,9,9,5,1,1017,1136626.3,870935.75,436644.69,184250.63,4361.3252 -8684,10695,19299,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.1718554,5.3779173,0,0,-1040.4393,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.9669137,52,48,-9,-9,7,1,1,0,0,0,11,2,0,1406,73521.477,24972.436,0,0,1912.6694 -8684,10696,19300,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-821.61792,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,11,1,0,4921,430909.06,-69039.852,161426.5,0,763.65173 -8685,10697,19301,19302,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,7.4479194,7.7124581,43,1,2.0782156,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.6593313,60.02,56.42,59.43,58.05,8.333333333333334,1,1,0,0,0,9,3,1,745.5,1028838.9,698264.56,348105.88,0,2819.2834 -8685,10697,19302,19301,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.0640502,5.7817793,43,-1,50.497768,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.6417899,6.3640928,59.43,58.05,60.02,56.42,10,1,1,0,0,0,9,3,1,745.5,1028838.9,698264.56,348105.88,0,2819.2834 -8686,10698,19303,-9,19304,19306,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7844,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 -8686,10698,19304,19306,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,8.2868176,8.249094,0,8,-5,-13.914316,0,-9,-9,2019,11,0,45,30,1,0,0,9.5061808,9.5061808,0,0,0,0,0,1,1,0,0,0,44.26,59.43,65.83,37.25,8.333333333333334,1,1,0,0,11,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 -8686,10698,19305,-9,19304,19306,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.05872,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 -8686,10698,19306,19304,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.4294558,8.3742065,0,8,5,50.291142,0,-9,-9,2019,6,0,40,35,1,0,0,11.31013,11.31013,0,0,0,0,0,1,1,0,0,0,65.83,37.25,44.26,59.43,6.666666666666667,1,1,0,0,10,2,4,1,392,264656.16,121345.31,204071.58,141177.47,3671.2361 -8687,10699,19307,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.85968,0,3,3,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.06,44.49,-9,-9,10,1,1,1,0,0,4,1,1,494,-276775.56,0,0,0,-182.55264 -8688,10700,19308,19309,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.4005003,8.5447512,0,8,0,29.520365,0,2,2,2019,9,0,38,38,1,0,0,16.210356,16.210356,0,0,0,0,0,1,1,0,0,0,51.77,58.57,46.34,61.24,8.333333333333334,1,1,0,0,11,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 -8688,10700,19309,19308,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.9557095,9.0264378,0,8,0,22.775873,0,-9,-9,2019,11,0,29,30,1,0,0,29.009872,29.009872,0,0,0,0,0,1,1,0,1.2809064,0,46.34,61.24,51.77,58.57,6.666666666666667,1,1,0,0,11,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 -8688,10700,19310,-9,19309,19308,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9407,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 -8688,10700,19311,-9,19309,19308,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.005,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1177.5,234099.97,121295.9,439930.44,243357.75,4473.4541 -8689,10701,19312,19313,-9,-9,1,0,37,1,3,0,2,2,-9,1,2,4.5632992,4.5251718,0,5,4,-38.956799,0,2,-9,2019,20,8,10,6,1,8,0,.95204812,.95204812,0,0,0,0,74.5,1,1,0,0,0,39.89,44.39,50,57,5,1,1,0,0,4,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 -8689,10701,19313,19312,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,8.1766739,8.2433453,0,5,-4,183.41844,0,-9,-9,2019,10,0,37,40,1,1,0,8.9721289,8.9721289,0,0,0,0,0,1,1,0,0,0,50,57,39.89,44.39,7,4,1,0,0,1,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 -8689,10701,19314,-9,19312,-9,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.96,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 -8689,10701,19315,-9,19312,-9,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3726,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 -8689,10701,19316,-9,19312,19313,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.803,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,3,0,1446,91069.102,1825.2037,92261.266,0,2424.4238 -8690,10702,19317,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-922.37604,0,3,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,24.82,-9,-9,5,1,1,0,0,0,12,1,0,874,246824.63,0,0,0,1720.7847 -8691,10703,19318,19319,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,7,-3,30.830196,0,3,3,2019,26,12,0,0,4,12,0,0,0,1,0,13.929449,0,120,1,1,0,0,0,46.27,23.87,39.38,31.37,5,1,1,0,0,0,11,2,1,1558,354840.09,-25146.512,211894.34,0,3110.4917 -8691,10703,19319,19318,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,6.0276484,5.7677469,7,3,34.545124,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,120,1,1,0,0,5.7965899,39.38,31.37,46.27,23.87,1.666666666666667,1,1,0,0,0,11,2,1,1558,354840.09,-25146.512,211894.34,0,3110.4917 -8692,10704,19320,-9,-9,-9,1,1,27,0,0,0,1,1,-9,1,1,9.8966513,9.5271645,0,0,0,-1058.3427,0,3,2,2019,19,7,55,60,1,7,1,34.086304,34.086304,0,0,0,0,2,1,1,0,0,0,37.58,35.91,-9,-9,1.666666666666667,2,3,0,0,4,6,5,1,120,-330883.78,15094.019,0,0,13516.493 -8693,10705,19321,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.3501616,8.2558804,0,0,0,-1048.5729,0,2,1,2019,8,1,40,47,1,1,0,10.381807,10.381807,0,0,0,0,2,0,0,0,.28113848,0,42.35,36.31,-9,-9,1.666666666666667,3,4,0,0,7,8,4,0,894,41347.656,87276.906,0,0,2305.4529 -8694,10706,19322,19323,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.128274,8.5399961,9,1,122.18843,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4161615,8.3773537,64.54000000000001,42,60.02,56.42,10,1,1,0,0,0,12,4,1,426.5,1487253.1,1303009.3,261637.78,0,5043.9634 -8694,10706,19323,19322,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,5.5651937,5.56604,9,-1,-8.5899992,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7350225,5.4120531,60.02,56.42,64.54000000000001,42,10,1,1,0,0,0,12,4,1,426.5,1487253.1,1303009.3,261637.78,0,5043.9634 -8695,10707,19324,19325,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,7,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9176373,0,52,47,47.85,52.43,7,1,1,0,0,0,10,1,1,911.5,100551.9,0,137536.25,0,2007.2549 -8695,10707,19325,19324,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,44,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5698028,0,47.85,52.43,52,47,8.333333333333334,1,1,0,0,9,10,1,1,911.5,100551.9,0,137536.25,0,2007.2549 -8695,10708,19326,-9,19325,19324,1,0,29,0,0,0,2,2,-9,0,4,7.9515839,7.9316092,0,0,0,-944.99475,0,3,2,2019,11,0,40,40,1,2,0,7.5331774,7.5331774,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,1,439,427332.97,52236.766,0,0,1318.6703 -8695,10709,19327,-9,19325,19324,1,1,33,0,0,0,2,2,-9,0,4,7.9375587,7.5983124,0,0,0,-1002.6962,0,3,2,2019,10,0,40,40,1,1,0,7.9346671,7.9346671,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,10,3,1,682,172911.3,-36277.508,0,0,992.49579 -8696,10710,19328,19329,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,39,-3,0,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,55.42,29.07,38.01,31.89,8.333333333333334,1,1,0,0,0,7,1,1,306.5,134072.67,0,0,0,1536.6299 -8696,10710,19329,19328,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,0,0,0,39,3,0,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,31.89,55.42,29.07,5,1,1,0,0,0,7,1,1,306.5,134072.67,0,0,0,1536.6299 -8697,10711,19330,19331,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,3.8401551,3.9802337,53,-3,62.740772,0,3,-9,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.6633542,3.6421399,58,44.81,50,36,6.666666666666667,1,1,0,0,0,10,2,1,128.5,312356,48582.027,376323.69,0,1570.7605 -8697,10711,19331,19330,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.6720772,5.9160838,53,3,96.346207,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.3340697,5.9393048,50,36,58,44.81,3.333333333333333,1,1,0,0,0,10,2,1,128.5,312356,48582.027,376323.69,0,1570.7605 -8698,10712,19332,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-773.401,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,42.72,-9,-9,5,1,1,0,1,0,12,2,0,1221,221133.78,-40643.832,9459.8877,23073.086,1215.8446 -8699,10713,19333,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,5.7266226,5.2846332,0,0,-942.59088,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.23037,5.4864206,39.43,45.8,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,795,-45480.844,0,156275.77,0,1610.7301 -8700,10714,19334,-9,19335,19337,1,1,1,3,4,1,3,0,-9,0,4,0,0,0,0,0,-970.32703,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 -8700,10714,19335,19337,-9,-9,1,0,27,3,4,0,2,2,-9,0,4,6.989171,6.7806811,0,11,-10,25.731277,0,2,2,2019,10,1,16,25,1,1,0,7.936152,7.936152,0,0,0,0,0,1,1,0,0,0,33.46,47.78,51.73,58.82,8.333333333333334,1,1,0,0,7,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 -8700,10714,19336,-9,19335,19337,1,1,0,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1120.222,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 -8700,10714,19337,19335,-9,-9,1,1,37,3,4,0,1,1,-9,0,5,8.870573,8.8017921,0,11,10,-77.709923,0,2,1,2019,7,0,37,36,1,0,0,15.962755,15.962755,0,0,0,0,0,1,1,0,1.1060081,0,51.73,58.82,33.46,47.78,8.333333333333334,4,2,0,0,8,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 -8700,10714,19338,-9,19335,19337,1,0,0,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1084.9388,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 -8700,10714,19339,-9,19335,19337,1,0,4,3,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.9324,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,750.16669,237079.69,256960.14,73424.367,78143.773,3321.8921 -8701,10715,19340,19341,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,8.048254,8.479681,7.2128086,10,2,-2.4471788,0,3,3,2019,10,0,27,20,1,0,0,14.445387,14.445387,1,0,0,0,0,1,1,0,3.1126721,7.2108159,35.62,57.79,47.35,24.43,8.333333333333334,1,1,0,0,11,12,4,1,580.5,884732.38,227146.22,403392.94,0,2447.2876 -8701,10715,19341,19340,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,10,-2,-15.854298,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,14.218935,0,0,1,1,0,3.4900427,0,47.35,24.43,35.62,57.79,6.666666666666667,1,1,0,0,0,12,4,1,580.5,884732.38,227146.22,403392.94,0,2447.2876 -8702,10716,19342,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.9469147,6.6763787,0,0,0,-930.28552,0,-9,-9,2019,10,0,16,16,1,0,0,7.4009624,7.4009624,0,0,0,0,0,1,1,0,1.8842065,0,44.7,49.72,-9,-9,6.666666666666667,1,1,0,0,8,2,2,0,151,-114030.4,0,0,0,647.97467 -8702,10717,19343,-9,19342,-9,1,1,27,0,0,0,1,1,-9,1,4,0,0,0,0,0,-982.89954,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,1,1,0,0,0,2,1,0,499,136495.86,0,0,0,323.37567 -8703,10718,19344,-9,19345,19346,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.19269,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,5,1,1606,208089.47,-38210.605,152678.77,106081.78,3531.1416 -8703,10718,19345,19346,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.4343777,8.4109325,0,1,1,37.283451,-9,-9,-9,2019,8,0,50,0,1,0,0,12.31581,12.31581,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.34,56.62,8.333333333333334,1,1,0,0,12,11,5,1,1606,208089.47,-38210.605,152678.77,106081.78,3531.1416 -8703,10718,19346,19345,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.3218927,8.5210752,0,1,-1,141.04916,0,3,3,2019,7,0,39,39,1,0,0,9.6730261,9.6730261,0,0,0,0,0,1,1,0,0,0,41.34,56.62,57.16,56.15,8.333333333333334,1,1,0,0,12,11,5,1,1606,208089.47,-38210.605,152678.77,106081.78,3531.1416 -8704,10719,19347,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.8554635,6.8581977,0,0,-901.82635,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.9784732,6.999794,36.31,41.6,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,315,670804,168779.44,364350.78,0,1132.4194 -8705,10720,19348,19349,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.657733,8.2829943,0,11,2,-25.155468,0,2,2,2019,8,0,44,40,1,0,0,13.523756,13.523756,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,6,5,1,526.66669,45215.223,51018.523,0,0,3712.5408 -8705,10720,19349,19348,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.4844913,8.2848825,0,18,-2,115.17564,0,2,3,2019,2,0,39,40,1,0,0,12.916293,12.916293,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,6,5,1,526.66669,45215.223,51018.523,0,0,3712.5408 -8705,10720,19350,-9,19349,19348,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.5042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,526.66669,45215.223,51018.523,0,0,3712.5408 -8706,10721,19351,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1175.6401,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,33.71,33.2,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,437,187700,0,0,0,862.5899 -8707,10722,19352,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.8407779,7.1038566,0,0,-988.88812,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.8820891,54.2,57.49,-9,-9,10,1,1,0,0,0,5,3,1,1075,645310.56,167311.84,193844.92,25552.314,993.37317 -8708,10723,19353,-9,19355,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.4105,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1050.6666,273864.5,0,0,0,984.27301 -8708,10723,19354,-9,19355,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-876.97241,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1050.6666,273864.5,0,0,0,984.27301 -8708,10723,19355,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,0,0,0,0,0,-882.81573,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,28.53,53.36,-9,-9,5,1,1,0,0,1,13,1,0,1050.6666,273864.5,0,0,0,984.27301 -8709,10724,19356,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.3880401,6.4506035,0,0,-1087.7266,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,.3495875,2.5615127,0,1,1,0,0,6.2068944,52,44,-9,-9,8,1,1,0,0,0,11,2,1,472,243943.77,-36619.047,222462.64,0,758.99994 -8710,10725,19357,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8351636,8.0118685,0,0,0,-1008.6537,-9,-9,-9,2019,6,0,43,0,1,0,0,7.9780478,7.9780478,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,1,2,4,0,155,-316890.59,0,0,0,1301.7853 -8710,10726,19358,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1060.0614,0,-9,-9,2019,28,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,37.3,33.29,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,195,64576.203,0,0,0,784.74524 -8711,10727,19359,19360,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.8453217,9.2741814,7.6218452,9,1,-5.8815837,0,2,-9,2019,5,0,45,45,1,0,0,18.314938,18.314938,0,0,0,0,0,0,0,0,7.5008588,7.6003475,55.36,51.57,55.73,53.98,8.333333333333334,1,1,0,0,7,7,5,1,445,475187.69,122482.84,838276,233729.81,7846.5898 -8711,10727,19360,19359,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.3407764,9.1254873,0,33,-1,-5.4206939,0,2,2,2019,9,0,40,40,1,0,0,33.709938,33.709938,0,0,0,0,0,0,0,0,1.7931663,0,55.73,53.98,55.36,51.57,8.333333333333334,1,1,0,0,11,7,5,1,445,475187.69,122482.84,838276,233729.81,7846.5898 -8712,10728,19361,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,6.9641676,6.9422159,0,0,0,-970.17084,0,2,1,2019,24,12,16,20,1,12,0,6.2504497,6.2504497,0,0,0,0,0,0,0,0,0,0,43.14,54.57,-9,-9,5,1,1,0,0,7,12,2,1,309,523963.41,-34970.293,122326.53,38448.508,767.84723 -8712,10729,19362,-9,19361,-9,1,0,18,0,0,1,3,0,0,0,3,0,0,0,0,0,-966.1145,-9,1,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,22.9,57.05,-9,-9,6.666666666666667,1,1,0,0,11,12,1,1,413,-364536.72,0,0,0,0 -8713,10730,19363,19364,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0888858,7.0852242,34,0,83.717827,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6981094,6.829618,56.94,49.53,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,1,556,1069488.3,438335.72,277943.97,0,1598.6082 -8713,10730,19364,19363,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.3232126,6.0969577,34,0,80.649948,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.076391,6.3645248,54.2,57.49,56.94,49.53,6.666666666666667,1,1,0,0,7,2,2,1,556,1069488.3,438335.72,277943.97,0,1598.6082 -8713,10731,19365,-9,19363,19364,1,1,32,0,0,0,1,1,-9,0,2,9.1506357,9.0111094,0,0,0,-1033.0441,0,2,2,2019,21,9,15,40,1,9,0,60.075096,60.075096,0,0,0,0,0,1,1,0,2.8573661,0,31.18,57.88,-9,-9,3.333333333333333,1,1,0,0,5,2,5,1,2887,325887.75,-32730.133,52889.973,98793.867,3626.6628 -8713,10732,19366,-9,19363,19364,1,1,31,0,0,0,1,1,-9,0,5,6.2621975,6.4585934,0,0,0,-1056.0088,0,2,2,2019,6,0,40,40,1,0,0,1.5116503,1.5116503,0,0,0,0,0,1,1,0,3.0908728,0,62.29,49.94,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,1575,-79867.555,0,0,0,62.285767 -8714,10733,19367,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,7.7727537,8.2484007,0,0,0,-995.77783,0,2,2,2019,12,1,40,0,1,1,0,8.48839,8.48839,0,0,0,0,0,0,0,0,0,0,45.65,54.59,-9,-9,3.333333333333333,1,1,0,1,10,2,3,1,472,-346083.72,-90733.992,0,0,694.13477 -8715,10734,19368,-9,19370,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.7863,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1469,112204.26,58907.672,159339.31,62684.633,2055.6257 -8715,10734,19369,-9,19370,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.20337,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,1469,112204.26,58907.672,159339.31,62684.633,2055.6257 -8715,10734,19370,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,7.336586,7.6775761,6.995553,0,0,-991.88434,0,2,3,2019,13,2,21,0,1,2,0,5.3866811,5.3866811,0,0,0,0,0,1,1,0,6.6492486,0,49.17,46.79,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,1469,112204.26,58907.672,159339.31,62684.633,2055.6257 -8716,10735,19371,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.67066,7.5059628,0,0,0,-1044.5948,0,3,3,2019,9,0,42,40,1,0,0,7.4192691,7.4192691,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,388,272885.44,53495.918,0,0,839.46381 -8717,10736,19372,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,6.7518353,6.7817359,0,0,0,-1015.7742,0,-9,-9,2019,11,1,40,50,1,1,0,2.5605192,2.5605192,0,0,0,0,0,1,1,0,2.8905723,0,53.11,47.09,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,613,-128598.92,0,0,0,1184.6548 -8718,10737,19373,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-944.00183,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,36.78,41.13,-9,-9,6.666666666666667,1,1,0,1,0,2,1,1,248,-178521.28,0,0,0,656.14996 -8719,10738,19374,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,5.5919709,5.7559624,0,0,-879.57532,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,5.6211834,0,58.07,25.16,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,443.5,4158.9766,-60915.469,0,0,1099.0361 -8719,10738,19375,-9,19374,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-947.88416,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,2,3,-9,0,0,9,2,1,443.5,4158.9766,-60915.469,0,0,1099.0361 -8720,10739,19376,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,6.0954938,6.3559971,0,0,-1044.5946,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,2.7195089,0,18.960443,0,1,1,0,0,6.2069979,65.23,38.89,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,611,219310.59,6989.7749,90767.07,0,1505.9489 -8721,10740,19377,19379,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.0438833,8.2392263,0,9,-5,13.689502,0,-9,-9,2019,11,0,39,39,1,1,0,8.1988144,8.1988144,0,0,0,0,0,1,1,0,0,0,49,50,50.84,10.67,7,1,1,0,0,1,5,3,1,994,235550.06,108189.79,239074.8,0,1764.1108 -8721,10740,19378,-9,19379,19377,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.2985,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,3,1,994,235550.06,108189.79,239074.8,0,1764.1108 -8721,10740,19379,19377,-9,-9,1,0,57,0,1,0,2,2,-9,1,1,0,0,0,9,5,-12.000595,0,3,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,50.84,10.67,49,50,6.666666666666667,1,1,0,1,0,5,3,1,994,235550.06,108189.79,239074.8,0,1764.1108 -8721,10741,19380,-9,19379,19377,1,1,18,0,1,0,2,2,-9,0,3,7.4374428,7.2101312,0,0,0,-1125.9047,0,2,2,2019,9,0,47,0,1,0,1,3.9860294,3.9860294,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,335,0,0,0,0,886.00879 -8722,10742,19381,19382,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.0200262,7.3875666,6.4695978,10,2,-16.133245,0,3,3,2019,6,0,20,20,1,0,0,6.9765048,6.9765048,0,0,0,0,0,0,0,0,0,6.672112,56.25,40.2,54.96,53.17,1.666666666666667,1,1,0,0,8,12,3,0,270,523160.31,-48186.961,0,0,1788.1182 -8722,10742,19382,19381,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.195869,7.855372,6.3317318,10,-2,172.75798,0,3,3,2019,12,0,20,20,1,0,0,7.6086202,7.6086202,0,0,0,0,0,0,0,0,.76706004,6.3185391,54.96,53.17,56.25,40.2,8.333333333333334,1,1,0,0,12,12,3,0,270,523160.31,-48186.961,0,0,1788.1182 -8723,10743,19383,19384,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,8.1474648,8.7141609,0,22,-20,138.44186,0,-9,-9,2019,9,0,41,40,1,0,0,12.824306,12.824306,0,0,0,0,0,1,1,0,5.2896366,0,51.24,58.84,54,46,10,1,1,0,0,9,8,3,1,934,1206819,173746.16,726876.94,0,1832.1962 -8723,10743,19384,19383,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,22,20,-160.38521,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51.24,58.84,8,1,1,0,0,0,8,3,1,934,1206819,173746.16,726876.94,0,1832.1962 -8724,10744,19385,19386,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.6305904,8.7042456,0,3,4,-129.09909,0,-9,-9,2019,9,1,40,38,1,1,0,15.316848,15.316848,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.31,56.08,5,1,1,0,0,9,12,5,0,758.5,120865.69,82958.586,297127.94,185892.78,4547.4458 -8724,10744,19386,19385,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.8731852,8.559988,0,3,-4,-104.00215,0,2,2,2019,14,2,49,55,1,2,0,13.590807,13.590807,0,0,0,0,0,0,0,0,0,0,42.31,56.08,54.2,57.49,8.333333333333334,1,1,0,0,9,12,5,0,758.5,120865.69,82958.586,297127.94,185892.78,4547.4458 -8725,10745,19387,-9,19389,19388,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.2389,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,5,4,1,1523.6666,-108851.16,77829.055,80377.688,41848.195,4019.5903 -8725,10745,19388,19389,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.3731279,8.4935875,0,5,4,6.6504383,0,-9,-9,2019,9,0,40,40,1,1,0,13.225706,13.225706,0,0,0,0,0,1,1,0,0,0,52,55,53.71,52.34,7,1,1,0,0,1,5,4,1,1523.6666,-108851.16,77829.055,80377.688,41848.195,4019.5903 -8725,10745,19389,19388,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,7.4615827,7.5493102,0,5,-4,64.236488,0,3,3,2019,11,0,20,20,1,0,0,15.552056,15.552056,0,0,0,0,0,1,1,0,1.444519,0,53.71,52.34,52,55,8.333333333333334,1,1,0,0,8,5,4,1,1523.6666,-108851.16,77829.055,80377.688,41848.195,4019.5903 -8726,10746,19390,-9,-9,-9,1,1,63,0,1,0,2,2,-9,0,4,0,8.7105303,8.3955669,0,0,-978.23846,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.0164204,8.5244436,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1333,340639.59,578326.88,347741.63,203132.66,4136.0835 -8727,10747,19391,-9,19396,19394,1,0,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-907.12628,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 -8727,10747,19392,-9,19396,19394,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-949.31189,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 -8727,10747,19393,-9,19396,19394,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-864.6626,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 -8727,10747,19394,19396,-9,-9,1,1,53,0,5,0,3,3,-9,0,4,6.857419,7.2905922,0,24,8,14.99618,0,3,3,2019,9,0,24,12,1,1,0,5.8953032,5.8953032,0,0,0,0,0,1,1,0,0,0,53,54,50,55,8,2,3,0,1,3,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 -8727,10747,19395,-9,19396,19394,1,0,16,0,5,1,3,0,-9,0,4,0,0,0,0,0,-997.86725,-9,3,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,27,57.58,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 -8727,10747,19396,19394,-9,-9,1,0,45,0,5,0,3,3,-9,1,4,0,0,0,24,-8,91.384781,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,54,8,2,3,0,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 -8727,10747,19397,-9,19396,19394,1,1,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-993.96832,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1058.2858,1160360.3,376625.97,710813.56,115354.13,4638.2197 -8727,10748,19398,-9,19396,19394,1,1,25,0,5,0,2,2,-9,0,4,0,0,0,0,0,-955.18768,0,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,1,0,8,1,0,544,0,0,0,0,304.45163 -8727,10749,19399,-9,19396,19394,1,0,23,0,5,0,2,2,-9,0,3,7.9444022,8.1332016,0,0,0,-1029.774,0,3,3,2019,9,0,40,50,1,0,1,10.189137,10.189137,0,0,0,0,0,1,1,0,0,0,47.37,51.46,-9,-9,6.666666666666667,2,3,0,0,4,8,4,0,471,207210.08,78595.672,0,0,1015.636 -8727,10750,19400,-9,19396,19394,1,0,20,0,5,0,2,2,-9,0,5,0,0,0,0,0,-997.82764,0,3,3,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,60.92,43.72,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,372,139724.77,0,0,0,515.10919 -8727,10751,19401,-9,19396,19394,1,1,19,0,5,0,2,2,-9,0,4,0,0,0,0,0,-863.48743,1,3,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,321,149243.17,0,0,0,524.51385 -8728,10752,19402,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.2469993,7.780776,0,0,-894.94873,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2897904,7.2773004,59.36,45.74,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,343,646854.13,21847.537,0,0,592.77039 -8728,10753,19403,-9,19402,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-980.22742,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.3854773,0,49,58,-9,-9,7,1,1,0,0,0,5,1,1,273,-570788.44,0,0,0,-207.94785 -8729,10754,19404,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-881.18353,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.19,29.57,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,228,210426.52,70325.914,269679.81,0,489.78152 -8729,10755,19405,-9,-9,19404,1,0,19,0,0,0,3,3,1,0,5,6.38726,5.9866104,0,0,0,-1091.4491,-9,-9,3,2019,6,0,37,0,1,0,1,1.3383849,1.3383849,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,13,2,0,1421,-332462.09,0,0,0,73.351418 -8730,10756,19406,19407,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,9.2352037,8.9921389,0,13,0,86.368332,0,2,2,2019,14,3,45,45,1,3,0,21.495214,21.495214,0,0,0,0,0,0,0,0,4.2042804,0,41.98,51.26,55.19,54.26,5,2,3,0,0,6,8,5,1,669.5,-36765.609,49392.152,239940.59,153016.92,8185.8408 -8730,10756,19407,19406,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.7402868,8.699996,0,8,0,4.7660308,0,-9,-9,2019,11,1,43,42,1,1,0,17.082979,17.082979,0,0,0,0,0,0,0,0,8.9138927,0,55.19,54.26,41.98,51.26,5,2,3,0,0,4,8,5,1,669.5,-36765.609,49392.152,239940.59,153016.92,8185.8408 -8731,10757,19408,19409,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,7,-7,-23.467836,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,2.2346101,0,24.733086,0,1,1,0,0,0,48.49,36.33,59.88,45.34,8.333333333333334,1,1,0,0,0,1,3,1,363,287271.63,366256.44,198822.36,0,2820.0151 -8731,10757,19409,19408,-9,-9,1,1,89,0,0,0,2,2,-9,0,4,0,7.9313178,8.0958834,7,7,-86.399879,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3395004,7.8025012,59.88,45.34,48.49,36.33,8.333333333333334,1,1,0,0,0,1,3,1,363,287271.63,366256.44,198822.36,0,2820.0151 -8732,10758,19410,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.0253887,6.8224239,0,0,0,-958.66333,0,3,-9,2019,5,0,50,40,1,0,0,2.7580276,2.7580276,0,0,0,0,0,1,1,0,0,0,44.49,61.79,-9,-9,6.666666666666667,1,1,0,0,9,2,2,1,108,292166.72,-64142.691,0,0,956.65936 -8733,10759,19411,19412,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,4.3543792,4.6059113,44,3,37.267109,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.6900504,4.5998387,55.41,24.54,55.76,52.64,8.333333333333334,1,1,0,0,0,4,2,1,985.5,620979.56,316828.94,202397.48,-6624.7422,1334.5536 -8733,10759,19412,19411,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.7638421,6.9837775,5.5464959,8,-3,63.009613,0,-9,3,2019,8,0,16,20,1,0,0,6.5924106,6.5924106,0,0,0,0,0,1,1,0,5.9802113,5.9221749,55.76,52.64,55.41,24.54,8.333333333333334,1,1,0,0,10,4,2,1,985.5,620979.56,316828.94,202397.48,-6624.7422,1334.5536 -8734,10760,19413,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.0811596,9.322979,0,0,0,-972.97858,0,2,2,2019,6,0,60,60,1,0,0,21.552761,21.552761,0,0,0,0,0,1,1,0,6.2399487,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,625,521836.47,66473.133,301859.75,165444.59,3428.1873 -8735,10761,19414,19415,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,7.9733467,7.9150357,60,2,-29.968903,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0546522,7.5804257,53.23,35.08,53,44,5,1,1,0,0,0,8,3,1,270,1265948,321429.5,461223.34,0,3120.9658 -8735,10761,19415,19414,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,6.8957558,6.891561,60,-2,-78.99791,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.7562623,53,44,53.23,35.08,8,1,1,0,0,0,8,3,1,270,1265948,321429.5,461223.34,0,3120.9658 -8736,10762,19416,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1092.5134,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,3.333333333333333,1,1,1,0,3,4,1,0,278,505768.44,0,0,0,888.66766 -8737,10763,19417,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.64771,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,0,13,1,0,289,82589.094,0,0,0,152.08717 -8737,10764,19418,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.6383057,5.7169194,0,0,-1108.5884,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.5916958,52,48,-9,-9,7,1,1,0,0,0,13,2,0,640,339274.84,256996.78,-95975.859,0,1956.4883 -8738,10765,19419,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4454012,8.4170322,0,0,0,-984.26196,0,3,3,2019,12,0,42,0,1,0,0,11.666131,11.666131,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,157,292594.38,-16841.857,522760.13,30673.061,2314.1128 -8739,10766,19420,19421,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,9.1880941,9.138979,0,1,2,223.53426,-9,-9,-9,2019,12,0,50,0,1,0,0,21.090483,21.090483,0,0,0,0,0,0,0,0,0,0,44.36,54.04,48.79,29.29,6.666666666666667,1,1,0,0,2,9,5,0,415.5,299676.41,224167.75,572487.75,360210.81,5422.4893 -8739,10766,19421,19420,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.7161798,8.6813059,0,1,-2,66.195953,0,2,3,2019,11,0,75,42,1,0,0,7.5041823,7.5041823,0,0,0,0,0,0,0,0,0,0,48.79,29.29,44.36,54.04,6.666666666666667,1,1,0,0,10,9,5,0,415.5,299676.41,224167.75,572487.75,360210.81,5422.4893 -8740,10767,19422,19423,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.8950648,5.9809098,47,2,-2.2088563,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9552636,54.31,36.96,59.91,42.65,10,1,1,0,0,0,2,5,1,6870,573021.81,371498.38,116654.76,58696.555,4826.1719 -8740,10767,19423,19422,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7808504,8.8875551,0,15,-2,19.973934,0,3,2,2019,7,0,51,56,1,0,0,20.603987,20.603987,0,0,0,0,0,1,1,0,6.1355171,0,59.91,42.65,54.31,36.96,10,1,1,0,0,9,2,5,1,6870,573021.81,371498.38,116654.76,58696.555,4826.1719 -8741,10768,19424,19425,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,9.6868591,9.3759956,43,7,-71.499985,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,5.3807173,0,0,1,1,0,0,9.5512657,47.87,25.58,54.1,59.11,5,1,1,0,0,2,12,5,1,482.5,2493268.5,197453.22,807723.5,0,9297.707 -8741,10768,19425,19424,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.599617,8.1394615,43,-7,-48.266315,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,6.0353184,7.8406634,54.1,59.11,47.87,25.58,8.333333333333334,1,1,0,0,7,12,5,1,482.5,2493268.5,197453.22,807723.5,0,9297.707 -8742,10769,19426,19429,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,0,0,0,9,7,0,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,49.46,56.91,53.04,31.61,5,4,2,1,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 -8742,10769,19427,-9,19429,19426,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.36572,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 -8742,10769,19428,-9,19429,19426,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.33728,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 -8742,10769,19429,19426,-9,-9,1,0,38,0,3,0,2,2,-9,1,2,0,0,0,9,-7,0,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.04,31.61,49.46,56.91,8.333333333333334,1,1,0,0,0,8,1,0,623.5,-200937.14,0,0,0,1871.5215 -8743,10770,19430,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.6934428,7.5393229,0,0,0,-904.02252,0,3,3,2019,11,0,36,38,1,0,0,6.7609758,6.7609758,0,0,0,0,0,1,1,0,0,0,55.91,47.11,-9,-9,3.333333333333333,1,1,0,0,10,6,3,1,259,46455.594,177991.19,126399.66,39493.141,917.0274 -8743,10771,19431,-9,19430,-9,1,0,34,0,1,0,2,2,-9,0,4,7.9575715,7.9737878,5.0989079,0,0,-999.05048,-9,2,-9,2019,9,0,31,0,1,0,1,10.861564,10.861564,0,0,0,0,2,1,1,0,4.542367,0,48.15,54.77,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,626.5,-376880.25,-34131.063,0,0,1303.5304 -8743,10771,19432,-9,19431,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.68286,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,626.5,-376880.25,-34131.063,0,0,1303.5304 -8744,10772,19433,19434,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,4.0462108,4.4034715,51,3,45.289879,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,10.7836,0,0,1,1,0,4.2517543,4.2961688,32.17,28.78,55.96,49.93,3.333333333333333,1,1,0,0,0,12,2,0,1025,-59265.293,0,0,0,1714.261 -8744,10772,19434,19433,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,51,-3,24.67342,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.96,49.93,32.17,28.78,10,1,1,0,0,0,12,2,0,1025,-59265.293,0,0,0,1714.261 -8745,10773,19435,19436,-9,-9,1,0,80,0,0,0,1,1,-9,0,2,0,7.4388008,7.153018,10,0,-179.49156,0,3,3,2019,31,11,0,0,4,11,0,0,0,1,6.8127666,29.676861,62.770607,0,1,1,0,4.7977672,7.5901022,24.37,42.08,41.06,62.04,0,1,1,0,0,0,9,4,1,266,1051327,648550.5,395753.41,0,3893.2358 -8745,10773,19436,19435,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.4061232,8.477129,10,0,104.99269,0,2,3,2019,17,7,0,0,4,7,0,0,0,0,0,0,0,27,1,1,0,3.4327459,8.2468052,41.06,62.04,24.37,42.08,3.333333333333333,1,1,0,0,5,9,4,1,266,1051327,648550.5,395753.41,0,3893.2358 -8746,10774,19437,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.4958506,9.3654203,0,0,0,-984.63831,0,2,3,2019,8,0,52,45,1,0,0,21.508154,21.508154,0,0,0,0,0,0,0,0,6.8029137,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,10,11,5,1,419,1358388.3,728033.25,405701.78,0,3651.0867 -8747,10775,19438,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7318282,7.6087365,0,0,0,-920.77722,0,3,3,2019,12,0,30,30,1,0,0,8.6844835,8.6844835,0,0,0,0,0,0,0,0,0,0,44.08,41.97,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,1098,384348.34,423859.5,89520.602,0,526.61255 -8748,10776,19439,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.2464838,6.0332756,0,0,-1016.2191,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.2189732,6.2436905,60.12,54.8,-9,-9,10,1,1,0,0,6,10,2,1,361,805623.06,80369.805,297189.5,0,1145.551 -8749,10777,19440,19441,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,8.5268583,8.0716152,59,-1,-41.198265,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0120363,67.42,34.2,61.12,51.57,8.333333333333334,1,1,0,0,0,10,3,1,282,1172118.5,601164.88,720130.5,0,3689.4392 -8749,10777,19441,19440,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,3.2024903,3.2768447,59,1,54.720673,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,2.8557322,61.12,51.57,67.42,34.2,10,1,1,0,0,4,10,3,1,282,1172118.5,601164.88,720130.5,0,3689.4392 -8750,10778,19442,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.8279238,7.6997504,0,0,0,-1008.6902,0,2,2,2019,12,0,40,45,1,0,0,5.2050281,5.2050281,0,0,0,0,0,0,0,0,3.2708077,0,47.32,52.7,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,1100,-201530.02,-26626.609,0,0,784.91614 -8751,10779,19443,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1026.9071,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,.60943407,0,49.34,22.16,-9,-9,3.333333333333333,1,1,0,0,1,5,1,1,1097,36935.133,0,0,0,740.36426 -8752,10780,19444,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5741739,8.0842905,0,0,0,-910.40692,0,2,2,2019,9,0,38,40,1,0,0,13.122113,13.122113,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,8,4,4,0,357,-280405.25,8079.812,95997.328,49934.316,1271.412 -8753,10781,19445,19446,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.4440184,9.2005129,0,8,-1,7.7009053,0,-9,-9,2019,8,1,40,43,1,1,0,38.33041,38.33041,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,10,1,1,0,0,7,6,5,1,699,283272.5,80849.32,263721.97,18107.637,4561.9395 -8753,10781,19446,19445,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.1368914,8.2419186,0,8,1,99.025429,0,2,1,2019,7,3,43,51,1,3,0,10.716825,10.716825,0,0,0,0,0,0,0,0,1.0060357,0,54.1,59.11,54.1,59.11,10,1,1,0,0,5,6,5,1,699,283272.5,80849.32,263721.97,18107.637,4561.9395 -8753,10781,19447,-9,19446,19445,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.8882,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,699,283272.5,80849.32,263721.97,18107.637,4561.9395 -8754,10782,19448,-9,19449,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.55072,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,826,320294.41,0,0,0,1649.762 -8754,10782,19449,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,2,5.0747447,5.0159903,0,0,0,-1073.7557,0,2,2,2019,25,11,2,0,1,11,0,6.5416164,6.5416164,0,0,0,0,0,1,1,0,0,0,23.02,33.05,-9,-9,3.333333333333333,1,1,0,0,5,2,2,0,826,320294.41,0,0,0,1649.762 -8754,10783,19450,-9,19449,-9,1,0,18,0,1,0,2,2,-9,0,3,6.9758754,7.004405,0,0,0,-948.90875,0,2,-9,2019,25,11,26,0,1,11,1,5.1326337,5.1326337,0,0,0,0,0,1,1,0,0,0,23.44,61.18,-9,-9,5,1,1,0,0,1,2,2,0,504,-88219.195,0,0,0,433.26334 -8755,10784,19451,19452,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.0058098,8.2827463,0,1,5,62.195873,-9,3,3,2019,4,1,38,0,1,1,0,8.9536552,8.9536552,0,0,0,0,0,1,1,0,0,0,56.28,55.34,45.81,58.99,6.666666666666667,2,3,0,0,5,11,3,1,1059,-259026.44,-2970.5234,43486.285,102478.47,1714.595 -8755,10784,19452,19451,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,6.144053,5.9328332,0,1,-5,-90.085976,-9,-9,-9,2019,8,0,24,0,1,0,0,2.0010099,2.0010099,0,0,0,0,0,1,1,0,0,0,45.81,58.99,56.28,55.34,8.333333333333334,2,3,0,0,2,11,3,1,1059,-259026.44,-2970.5234,43486.285,102478.47,1714.595 -8756,10785,19453,-9,19456,19455,1,1,33,0,0,0,2,2,-9,0,4,6.8832889,6.8255916,0,0,0,-947.86475,0,2,2,2019,10,0,40,40,1,1,1,2.6285462,2.6285462,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,1,5,13,2,1,1552,89768.078,0,0,0,-389.0864 -8756,10786,19454,-9,19456,19455,1,0,32,0,0,0,2,2,-9,0,5,8.0499287,7.8475733,0,0,0,-1095.5286,0,2,3,2019,7,0,40,40,1,0,1,7.510282,7.510282,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,1828,-45039.695,0,0,0,1274.766 -8756,10787,19455,19456,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,8,6,49.354565,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,60.02,56.42,7,1,1,0,0,3,13,2,1,1176.5,752102.06,511013.75,131124.22,0,1332.6797 -8756,10787,19456,19455,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,6.9621973,6.936224,0,8,-6,-9.5199614,0,3,3,2019,6,0,19,19,1,0,0,7.3180685,7.3180685,0,0,0,0,0,1,1,0,0,0,60.02,56.42,52,48,5,1,1,0,0,9,13,2,1,1176.5,752102.06,511013.75,131124.22,0,1332.6797 -8756,10788,19457,-9,19456,19455,1,1,30,0,0,0,2,2,-9,0,4,8.2017536,7.9679613,0,0,0,-972.00146,0,2,2,2019,12,0,40,40,1,0,1,12.697468,12.697468,0,0,0,0,0,1,1,0,0,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,216,184449.23,29388.199,0,0,1546.5883 -8756,10789,19458,-9,19456,19455,1,1,21,0,0,0,1,1,1,0,4,7.7810445,7.5615211,0,0,0,-1091.8315,-9,3,3,2019,10,0,40,0,1,0,1,4.4527054,4.4527054,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,5,1,1,0,0,0,13,3,1,368,-58721.047,0,0,0,1153.116 -8757,10790,19459,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1004.3898,0,3,-9,2019,8,1,0,0,4,1,0,0,0,1,0,16.579885,0,0,1,1,0,0,0,34.46,27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,228,159239.83,0,119888.77,0,1546.9036 -8758,10791,19460,19461,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.3280592,7.7650313,40,4,95.312401,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.0293825,8.0617466,57.57,38.96,54.1,59.11,5,2,3,0,0,0,8,3,1,533,974560.63,539632.5,375409,134252.3,1765.7952 -8758,10791,19461,19460,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,4.1179051,4.6295481,7,-4,69.52726,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,4.3429217,54.1,59.11,57.57,38.96,8.333333333333334,2,3,0,0,0,8,3,1,533,974560.63,539632.5,375409,134252.3,1765.7952 -8759,10792,19462,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,5.9021611,5.9056535,0,0,-918.32239,0,2,2,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.074614,48.18,61.8,-9,-9,0,1,1,0,0,0,2,2,1,789,5260.0576,0,155492.77,0,885.25226 -8760,10793,19463,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.8948,0,2,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37,28,-9,-9,5,1,1,1,0,3,11,1,0,1369,96630.953,0,0,0,686.07257 -8761,10794,19464,19465,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,7.1056395,7.739531,57,-3,-143.66805,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6544027,7.1866026,54.1,59.11,52,45,10,1,1,0,0,7,6,3,1,457.5,655335.31,343009.66,374723.5,0,1782.5375 -8761,10794,19465,19464,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.521904,5.1579313,8,3,27.528833,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.74911404,5.5747662,52,45,54.1,59.11,8,1,1,0,0,0,6,3,1,457.5,655335.31,343009.66,374723.5,0,1782.5375 -8762,10795,19466,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.5187201,6.6125998,0,0,-932.43567,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.8728814,6.3836169,44.74,48.37,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,312,465841.06,-24296.676,394067.09,0,921.45905 -8763,10796,19467,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,6.8705149,6.6042728,0,0,-1084.6732,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,15.560208,0,0,0,1,1,0,6.6175609,0,36.98,29.84,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,2348,476946.91,111319.63,184896.45,0,1100.1621 -8764,10797,19468,19470,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.267415,8.2187281,0,9,-1,-14.746382,0,-9,-9,2019,11,0,38,38,1,0,0,12.4891,12.4891,0,0,0,0,0,1,1,0,0,0,47.32,52.7,42.44,64.58,5,1,1,0,0,6,10,3,0,611.33331,264645.41,3736.2566,202316.09,162588.72,1924.0205 -8764,10797,19469,-9,19470,19468,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.1505,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,611.33331,264645.41,3736.2566,202316.09,162588.72,1924.0205 -8764,10797,19470,19468,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,6.7990279,6.2122269,0,16,1,5.1562839,0,2,3,2019,30,11,12,7,1,11,0,7.7498684,7.7498684,0,0,0,0,0,1,1,0,0,0,42.44,64.58,47.32,52.7,1.666666666666667,1,1,0,0,10,10,3,0,611.33331,264645.41,3736.2566,202316.09,162588.72,1924.0205 -8765,10798,19471,19472,-9,-9,1,1,37,1,1,0,2,2,-9,0,5,9.0354662,8.8280001,0,1,3,-59.652393,0,-9,-9,2019,6,0,20,20,1,0,0,55.536674,55.536674,0,0,0,0,0,1,1,0,0,0,57.06,57.76,32.76,64.44,6.666666666666667,1,1,0,0,8,9,5,1,479,672695.63,246022.78,289903.66,199848.11,3945.1797 -8765,10798,19472,19471,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.5370593,7.1275992,0,1,-3,29.068117,0,3,2,2019,17,6,7,20,1,6,0,29.789045,29.789045,0,0,0,0,0,1,1,0,0,0,32.76,64.44,57.06,57.76,8.333333333333334,1,1,0,0,8,9,5,1,479,672695.63,246022.78,289903.66,199848.11,3945.1797 -8765,10798,19473,-9,19472,19471,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.81207,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,479,672695.63,246022.78,289903.66,199848.11,3945.1797 -8766,10799,19474,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.1438427,7.625948,0,0,-1009.9083,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3438444,7.6692953,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,436,474913.78,617071.25,0,0,1915.8344 -8767,10800,19475,19476,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.2979689,8.7134848,0,2,6,170.42812,0,-9,-9,2019,7,0,42,40,1,0,0,12.110749,12.110749,0,0,0,0,0,0,0,0,5.4103732,0,51.71,44.8,57.06,57.76,8.333333333333334,1,1,0,0,4,11,5,1,842.5,262354.72,9163.2793,172642.38,93943.359,3141.2915 -8767,10800,19476,19475,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.3558674,8.587471,0,2,-6,-88.567711,0,2,1,2019,8,0,50,50,1,0,0,9.5475168,9.5475168,0,0,0,0,0,0,0,0,2.8388386,0,57.06,57.76,51.71,44.8,10,1,1,0,0,10,11,5,1,842.5,262354.72,9163.2793,172642.38,93943.359,3141.2915 -8768,10801,19477,-9,19479,19478,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.78027,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 -8768,10801,19478,19479,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.8624325,9.602128,0,7,2,-91.772858,0,2,-9,2019,7,0,50,48,1,0,0,38.615696,38.615696,0,0,0,0,0,0,0,0,8.1900673,0,52.65,54.32,45.38,56.21,8.333333333333334,1,1,0,0,8,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 -8768,10801,19479,19478,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,0,0,7,-2,7.7290483,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.66384596,0,45.38,56.21,52.65,54.32,8.333333333333334,1,1,0,0,2,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 -8768,10801,19480,-9,19479,19478,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4987,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1077.5,149250.58,21200.016,0,0,4653.5723 -8769,10802,19481,19482,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,7.060328,7.1706839,4.9502401,38,1,69.341072,0,2,2,2019,8,0,25,30,1,0,0,4.9855046,4.9855046,0,0,0,0,0,1,1,0,9.0139418,5.2545605,52.15,48.98,59.81,35.89,8.333333333333334,1,1,0,0,12,7,3,1,325.5,1155885.1,67469.109,541511.63,0,8744.8525 -8769,10802,19482,19481,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,7.0840926,7.3705773,5.0963569,38,-1,-29.796635,0,3,3,2019,11,1,40,40,1,1,0,3.2950621,3.2950621,0,0,0,0,0,1,1,0,8.612092,6.0084691,59.81,35.89,52.15,48.98,8.333333333333334,1,1,0,0,12,7,3,1,325.5,1155885.1,67469.109,541511.63,0,8744.8525 -8770,10803,19483,19484,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.1960182,7.8870792,0,7,0,-64.046707,0,2,2,2019,13,1,38,32,1,1,0,13.316073,13.316073,0,0,0,0,0,0,0,0,0,0,48.18,61.8,57.16,56.15,8.333333333333334,1,1,0,0,7,10,5,1,892,210808.78,-27564.754,217333.34,106484.2,3376.4521 -8770,10803,19484,19483,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.9103584,9.2858677,0,7,0,-29.251497,0,2,2,2019,7,0,41,37,1,0,0,18.126394,18.126394,0,0,0,0,0,0,0,0,1.715485,0,57.16,56.15,48.18,61.8,8.333333333333334,1,1,0,0,8,10,5,1,892,210808.78,-27564.754,217333.34,106484.2,3376.4521 -8771,10804,19485,19486,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,9.8802538,9.9086094,0,29,-5,-1.9217473,0,2,2,2019,11,0,50,51,1,0,0,40.108303,40.108303,0,0,0,0,0,0,0,0,2.6543412,0,49.61,54.24,55.69,51.72,8.333333333333334,1,1,0,0,11,10,5,1,2116,2005103,1672340.5,232418.91,45648.266,7508.6602 -8771,10804,19486,19485,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.0575008,8.7378283,0,8,5,244.6413,0,2,2,2019,8,0,47,40,1,0,0,15.459059,15.459059,0,0,0,0,0,0,0,0,6.5632706,0,55.69,51.72,49.61,54.24,8.333333333333334,1,1,0,0,11,10,5,1,2116,2005103,1672340.5,232418.91,45648.266,7508.6602 -8772,10805,19487,19488,-9,-9,1,0,67,1,2,0,3,3,-9,0,2,0,0,0,9,-17,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,3.0791161,0,0,1,1,0,0,0,50.75,39.21,53.71,37.87,6.666666666666667,2,3,0,0,0,5,1,1,5922,-144796.64,49993.352,0,0,131.84441 -8772,10805,19488,19487,-9,-9,1,1,84,1,2,0,2,2,-9,0,2,0,0,0,9,17,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,3.2234499,0,0,1,1,0,0,0,53.71,37.87,50.75,39.21,6.666666666666667,2,3,0,0,0,5,1,1,5922,-144796.64,49993.352,0,0,131.84441 -8772,10806,19489,19491,-9,-9,1,0,49,1,2,0,1,1,-9,0,3,6.772212,6.6619101,0,9,2,-9.4165773,0,-9,-9,2019,12,0,12,14,1,2,0,7.8912039,7.8912039,0,0,0,0,0,1,1,0,0,0,47,50,66.61,45.12,7,2,3,0,0,4,5,2,1,606.33331,535204.13,52185.977,347383.22,0,1798.8927 -8772,10806,19490,-9,19489,19491,1,0,17,1,2,1,2,0,-9,0,4,0,0,0,0,0,-1046.8823,-9,1,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,2,3,0,0,0,5,2,1,606.33331,535204.13,52185.977,347383.22,0,1798.8927 -8772,10806,19491,19489,19487,19488,1,1,47,1,2,0,2,2,-9,0,3,7.0432463,7.3201351,0,27,-2,-70.930351,0,2,2,2019,12,0,22,22,1,0,0,6.1647358,6.1647358,0,0,0,0,0,1,1,0,6.7278914,0,66.61,45.12,47,50,10,2,3,0,0,10,5,2,1,606.33331,535204.13,52185.977,347383.22,0,1798.8927 -8772,10807,19492,-9,19495,19493,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.1771,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 -8772,10807,19493,19495,19487,19488,1,1,37,1,2,0,2,2,-9,0,4,7.3653984,7.6177835,0,9,0,93.385132,0,3,2,2019,6,0,25,40,1,0,0,8.2046871,8.2046871,0,0,0,0,0,1,1,0,0,0,60.12,54.8,60.29,52.11,8.333333333333334,2,3,0,0,10,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 -8772,10807,19494,-9,19495,19493,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.90802,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 -8772,10807,19495,19493,-9,-9,1,0,37,1,2,0,3,3,-9,0,3,0,0,0,9,0,-76.499474,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,60.12,54.8,8.333333333333334,2,3,0,0,0,5,2,1,799,-55135.516,-40088.363,118827.53,81757.383,1110.866 -8772,10808,19496,-9,19489,19491,1,0,21,1,2,1,2,0,0,0,1,0,0,0,0,0,-946.63037,-9,1,2,2019,25,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,19.16,41.39,-9,-9,0,2,3,0,0,0,5,1,1,67,-112014.3,0,0,0,0 -8773,10809,19497,-9,19498,19500,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.33685,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 -8773,10809,19498,19500,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.6596746,8.7738771,0,16,-6,-34.852535,0,3,2,2019,11,0,39,78,1,0,0,16.862349,16.862349,0,0,0,0,42,1,1,0,5.9437881,0,48.57,45.28,45.49,58.84,8.333333333333334,1,1,0,0,8,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 -8773,10809,19499,-9,19498,19500,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.11273,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 -8773,10809,19500,19498,-9,-9,1,1,44,0,2,0,2,2,-9,1,3,0,0,0,16,6,-23.368988,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.49,58.84,48.57,45.28,10,1,1,0,0,4,11,3,1,354,91755.75,169946.88,96490.727,40072.102,2544.6055 -8774,10810,19501,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.2035966,5.9986129,0,0,-1018.4263,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8597255,54.2,57.49,-9,-9,5,1,1,0,0,0,9,2,1,514,150899.5,126721.51,158657.83,98610.648,1125.8281 -8775,10811,19502,19503,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,9.3517962,9.1264534,47,0,-145.16905,0,3,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,9.210063,38.36,48.5,50.72,46.82,5,1,1,0,0,0,10,5,1,1019,3137060.5,657536.25,721059,0,5260.6377 -8775,10811,19503,19502,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,47,0,61.620659,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.7445707,0,50.72,46.82,38.36,48.5,8.333333333333334,1,1,0,0,0,10,5,1,1019,3137060.5,657536.25,721059,0,5260.6377 -8776,10812,19504,19506,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.3091841,8.2582312,0,22,-3,-157.12883,0,2,2,2019,18,6,12,12,1,6,0,43.061558,43.061558,0,0,0,0,0,1,1,0,0,0,38.59,60.85,31.21,58.59,8.333333333333334,1,1,0,0,8,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 -8776,10812,19505,-9,19504,19506,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.528,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 -8776,10812,19506,19504,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.8528128,8.9661398,0,22,3,-38.775574,0,2,2,2019,25,11,47,52,1,11,0,19.275175,19.275175,0,0,0,0,0,1,1,0,0,0,31.21,58.59,38.59,60.85,1.666666666666667,1,1,0,0,10,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 -8776,10812,19507,-9,19504,19506,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.35455,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,5,1,1327.5,1167068.9,450905.66,550366.06,2961.324,5524.6934 -8776,10813,19508,-9,19504,19506,1,1,19,0,2,0,2,2,1,0,4,7.1591125,7.0706992,0,0,0,-881.12244,-9,1,1,2019,8,0,25,0,1,0,1,6.0561829,6.0561829,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,2,1,2,1,3122,273891.16,-61190.953,0,0,553.61871 -8777,10814,19509,19510,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.5169058,8.6446238,0,6,0,76.059517,0,3,-9,2019,9,0,37,37,1,1,0,19.80275,19.80275,0,0,0,0,0,0,0,0,6.3637309,0,52,56,49.86,55.31,8,1,1,0,0,1,4,5,1,1109,89661.328,347785.34,225455.59,99885.703,4415.3867 -8777,10814,19510,19509,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.463295,8.4113693,0,6,0,-53.017094,0,-9,-9,2019,7,0,40,40,1,0,0,12.840821,12.840821,0,0,0,0,0,0,0,0,0,0,49.86,55.31,52,56,10,1,1,0,0,9,4,5,1,1109,89661.328,347785.34,225455.59,99885.703,4415.3867 -8778,10815,19511,19512,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,7.6769667,7.6632051,0,27,-6,-24.137312,0,2,3,2019,8,0,5,12,1,0,0,65.608284,65.608284,0,0,0,0,0,0,0,0,7.6418333,0,57.06,57.76,54.37,54.8,0,1,1,0,0,5,1,3,1,728.5,-36867.406,-26369.836,0,0,4809.0762 -8778,10815,19512,19511,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,5.208077,4.8247008,0,27,6,96.866959,0,2,2,2019,9,0,12,12,1,0,0,1.4326489,1.4326489,0,0,0,0,0,0,0,0,8.8819876,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,9,1,3,1,728.5,-36867.406,-26369.836,0,0,4809.0762 -8778,10816,19513,-9,19511,19512,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-980.31464,1,2,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,7.7046237,0,36.54,60.21,-9,-9,8.333333333333334,1,1,0,0,5,1,1,1,462,-164975.77,0,0,0,593.95709 -8778,10817,19514,-9,19511,19512,1,1,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-841.94647,-9,2,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,6.9673719,0,43.67,61.06,-9,-9,8.333333333333334,1,1,1,0,0,1,1,1,1014,349989.63,0,0,0,942.41949 -8779,10818,19515,-9,19516,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.3076,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,536,80684.93,-39903.098,0,0,1923.9236 -8779,10818,19516,-9,-9,-9,1,0,42,1,2,0,2,2,-9,0,3,0,0,0,0,0,-947.41064,0,2,2,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.65,64.97,-9,-9,8.333333333333334,1,1,0,1,7,9,1,0,536,80684.93,-39903.098,0,0,1923.9236 -8780,10819,19517,-9,19521,19518,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.3528,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 -8780,10819,19518,19521,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.6035099,8.412569,0,11,4,-134.33882,0,3,2,2019,7,0,46,51,1,0,0,14.086685,14.086685,0,0,0,0,0,1,1,0,0,0,56.35,51,49.3,46.56,8.333333333333334,1,1,0,0,8,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 -8780,10819,19519,-9,19521,19518,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.4398,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 -8780,10819,19520,-9,19521,19518,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.69177,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 -8780,10819,19521,19518,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,8.6726112,8.3823071,0,11,-4,9.2809992,0,3,2,2019,7,0,38,38,1,0,0,13.797151,13.797151,0,0,0,0,2,1,1,0,0,0,49.3,46.56,56.35,51,8.333333333333334,1,1,0,0,10,11,4,1,768,238409.75,174549.7,186803.31,62060.961,4162.8257 -8781,10820,19522,19523,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4334822,8.3559713,0,3,-3,-39.674068,0,3,3,2019,11,0,36,40,1,2,0,15.437712,15.437712,0,0,0,0,0,1,1,0,6.5368156,0,49,48,40.07,40.08,7,1,1,0,0,1,13,4,0,316,406067.88,219866.3,147281.02,0,3502.2766 -8781,10820,19523,19522,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,7.2439847,7.3585114,3,3,-51.716038,0,3,3,2019,14,3,0,50,3,3,0,0,0,0,0,0,0,0,1,1,0,6.0861187,7.343503,40.07,40.08,49,48,3.333333333333333,1,1,0,0,7,13,4,0,316,406067.88,219866.3,147281.02,0,3502.2766 -8782,10821,19524,19525,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.1542821,7.2097249,0,6,3,126.18772,-9,3,-9,2019,10,0,84,0,1,1,0,1.5562428,1.5562428,0,0,0,0,0,1,1,0,0,0,52,48,58.48,28.63,7,1,1,0,0,1,13,2,1,117,377302.63,155176.67,52498.82,0,914.91309 -8782,10821,19525,19524,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,6,-3,-18.018253,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.48,28.63,52,48,5,1,1,0,0,0,13,2,1,117,377302.63,155176.67,52498.82,0,914.91309 -8783,10822,19526,-9,-9,-9,1,0,19,0,1,0,2,2,1,0,5,7.77281,8.2054453,6.3816018,0,0,-1040.606,-9,3,3,2019,26,9,27,0,1,9,1,10.773154,10.773154,0,0,0,0,0,1,1,0,6.4383898,0,23.95,54.01,-9,-9,0,2,3,0,0,1,8,4,1,584,337214.66,-59606.766,0,0,916.80286 -8784,10823,19527,19528,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.5968924,8.7242851,0,3,3,-93.530785,0,3,3,2019,17,5,51,37,1,5,0,12.823276,12.823276,0,0,0,0,0,0,0,0,4.1872425,0,27.56,56.58,51.47,53.17,6.666666666666667,1,1,0,0,8,13,5,1,1017.5,4210.1367,90929.531,181624.31,123375.61,3632.0364 -8784,10823,19528,19527,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.9668303,7.8698564,0,3,-3,-49.563072,0,-9,-9,2019,9,0,38,0,1,0,0,11.752823,11.752823,0,0,0,0,2,0,0,0,0,0,51.47,53.17,27.56,56.58,3.333333333333333,1,1,0,0,8,13,5,1,1017.5,4210.1367,90929.531,181624.31,123375.61,3632.0364 -8785,10824,19529,19530,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,8.3302221,8.3543396,64,1,95.799889,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9441857,8.3673229,49.12,53.02,62.1,51.16,10,1,1,0,0,0,9,4,1,738.5,1083057.4,575611.94,509200.91,0,3634.8589 -8785,10824,19530,19529,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,64,-1,51.266426,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.1184015,0,62.1,51.16,49.12,53.02,8.333333333333334,1,1,0,0,0,9,4,1,738.5,1083057.4,575611.94,509200.91,0,3634.8589 -8786,10825,19531,19532,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,6.8685822,6.7457757,0,35,0,-14.271721,0,3,3,2019,15,3,47,45,1,3,0,2.0096214,2.0096214,0,0,0,0,0,0,0,0,5.7479424,0,44.98,55.14,52,54.51,6.666666666666667,1,1,0,0,10,7,4,1,470,348130.25,77585.133,225681.97,72728.461,2816.9951 -8786,10825,19532,19531,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4531431,8.3233194,0,35,0,-43.448471,0,3,2,2019,10,0,37,37,1,0,0,17.012772,17.012772,0,0,0,0,0,0,0,0,6.9623637,0,52,54.51,44.98,55.14,8.333333333333334,1,1,0,0,10,7,4,1,470,348130.25,77585.133,225681.97,72728.461,2816.9951 -8787,10826,19533,-9,19536,19535,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.6422,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 -8787,10826,19534,-9,19536,19535,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.90479,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 -8787,10826,19535,19536,-9,-9,1,1,52,0,2,0,3,3,-9,0,2,8.5307083,8.7477083,0,30,2,-34.249992,0,3,3,2019,10,1,35,40,1,1,0,15.255325,15.255325,0,0,0,0,0,1,1,0,4.1436982,0,53.63,40.71,57.93,46.29,6.666666666666667,1,1,0,0,11,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 -8787,10826,19536,19535,-9,-9,1,0,50,0,2,0,3,3,-9,0,3,7.8815269,7.8586731,0,30,-2,-48.629948,0,2,2,2019,8,1,38,38,1,1,0,7.313035,7.313035,0,0,0,0,0,1,1,0,0,0,57.93,46.29,53.63,40.71,8.333333333333334,1,1,0,0,8,7,4,1,694.25,1071977.8,175239.06,578625.25,4900.6621,3197.0132 -8787,10827,19537,-9,19536,19535,1,1,23,0,2,0,2,2,-9,0,4,8.3354187,8.1306162,0,0,0,-950.1449,0,3,3,2019,14,2,55,50,1,2,1,8.3128967,8.3128967,0,0,0,0,0,1,1,0,2.1564815,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,5,7,4,1,625,-266502.66,0,0,0,2069.457 -8788,10828,19538,-9,19540,19541,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.0729,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 -8788,10828,19539,-9,19540,19541,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.0771,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 -8788,10828,19540,19541,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.0481005,7.0293884,0,13,0,-117.2184,0,3,3,2019,11,0,19,7,1,0,0,6.1125884,6.1125884,0,0,0,0,0,1,1,0,0,0,43.08,57.18,46.56,50.26,6.666666666666667,1,1,0,0,8,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 -8788,10828,19541,19540,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.9116755,8.5795374,0,15,0,24.134295,0,3,2,2019,11,0,40,42,1,0,0,16.711714,16.711714,0,0,0,0,0,1,1,0,0,0,46.56,50.26,43.08,57.18,6.666666666666667,1,1,0,0,8,5,4,1,652.75,145804.25,62894.133,158710.84,149915.13,2700.9971 -8789,10829,19542,-9,19544,19545,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5028,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 -8789,10829,19543,-9,19544,19545,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-896.24298,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 -8789,10829,19544,19545,-9,-9,1,0,32,1,3,0,2,2,-9,0,2,0,0,0,13,0,120.76995,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37,40.09,51,57,3.333333333333333,2,3,0,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 -8789,10829,19545,19544,-9,-9,1,1,32,1,3,0,3,3,-9,0,4,7.8793597,8.284133,0,13,0,15.795144,0,3,2,2019,10,0,43,43,1,1,0,6.7112675,6.7112675,0,0,0,0,0,1,1,0,0,0,51,57,37,40.09,7,2,3,0,0,6,4,2,1,406.20001,99810.508,0,0,0,2961.2993 -8789,10829,19546,-9,19544,19545,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.3286,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,406.20001,99810.508,0,0,0,2961.2993 -8790,10830,19547,19548,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1429896,7.6449699,6,-2,38.053123,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3105383,7.4341173,57.16,56.15,57.16,56.15,10,1,1,0,0,0,10,3,1,1193.5,762637.38,290267.94,514809,0,2898.1758 -8790,10830,19548,19547,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3152828,7.4360356,6,2,52.835289,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6333427,7.2243462,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,1193.5,762637.38,290267.94,514809,0,2898.1758 -8791,10831,19549,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.4440932,6.9326863,0,0,-1016.8851,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9649315,46.79,41.89,-9,-9,10,4,2,0,0,7,8,2,1,920,577559.94,59507.238,0,0,547.73944 -8792,10832,19550,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.6597075,7.4811215,0,0,-1178.9834,0,3,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.1961412,7.3493209,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,438,283480.38,130926.81,133205.88,0,1560.8464 -8793,10833,19551,-9,-9,19552,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.13214,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,348,-40941.641,0,0,0,1145.9714 -8793,10833,19552,-9,-9,-9,1,1,48,0,2,0,2,2,-9,1,2,0,0,0,0,0,-959.92798,0,1,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,31.16,29.2,-9,-9,1.666666666666667,1,1,0,0,7,2,1,0,348,-40941.641,0,0,0,1145.9714 -8793,10833,19553,-9,-9,19552,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.87177,-9,-9,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,1,0,348,-40941.641,0,0,0,1145.9714 -8794,10834,19554,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-934.85913,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,10.741272,0,0,1,0,1,0,0,57.38,25.76,-9,-9,8.333333333333334,1,1,0,0,11,5,1,1,254,-282152.94,0,0,0,661.9823 -8794,10835,19555,-9,19554,-9,1,1,43,0,0,0,2,2,-9,0,2,0,0,0,0,0,-970.68408,-9,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,32.41,38.25,-9,-9,1.666666666666667,1,1,1,1,0,5,1,1,256,138554.75,0,0,0,-886.57367 -8795,10836,19556,-9,19558,19557,1,0,65,0,0,0,3,3,-9,0,3,0,8.1119671,8.0938482,0,0,-1017.9565,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,71.5,1,1,0,2.9946978,8.3306608,42.68,42.07,-9,-9,5,1,1,0,0,0,8,4,1,736,1003493.5,721206,409976.13,0,2201.0076 -8795,10837,19557,19558,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-3.81972,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4568534,0,55,45,53,44,8,1,1,0,0,0,8,2,1,242,1149629.6,0,831486.5,0,2080.5322 -8795,10837,19558,19557,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.8642774,7.0423493,6,1,41.019672,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1044693,6.8199835,53,44,55,45,8,1,1,0,0,0,8,2,1,242,1149629.6,0,831486.5,0,2080.5322 -8796,10838,19559,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.9227209,7.7862639,0,0,-1069.7711,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4363093,7.8670692,62.72,46.72,-9,-9,10,1,1,0,0,0,12,3,0,1771,641166.25,441765.44,42941.969,0,2035.0635 -8796,10839,19560,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6459608,8.3178749,0,0,0,-1047.3866,0,-9,-9,2019,9,0,40,36,1,1,0,14.364147,14.364147,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,1,12,5,0,321,954612.56,768000,165286.44,0,1545.563 -8797,10840,19561,19562,-9,-9,1,0,86,0,0,0,2,2,-9,0,1,0,0,0,3,4,0,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,7.9868336,120.59452,68.970924,0,1,1,0,0,0,34.71,18.35,37.18,40.21,8.333333333333334,1,1,0,0,0,10,2,1,1724,115489.91,0,0,0,1407.4514 -8797,10840,19562,19561,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,3,-4,0,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,0,37.18,40.21,34.71,18.35,8.333333333333334,1,1,0,0,0,10,2,1,1724,115489.91,0,0,0,1407.4514 -8798,10841,19563,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.41962,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.64,29.69,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,1681,-77061.617,0,0,0,1235.0125 -8799,10842,19564,-9,19565,-9,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.52692,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,570.33331,44086.637,34626.938,0,0,1676.8243 -8799,10842,19565,-9,-9,-9,1,0,34,1,2,0,2,2,-9,0,2,7.8660016,7.7696004,0,0,0,-873.50171,0,2,2,2019,11,0,40,40,1,0,1,5.6261015,5.6261015,0,0,0,0,7,1,1,0,0,0,44.16,47.5,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,570.33331,44086.637,34626.938,0,0,1676.8243 -8799,10842,19566,-9,19565,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.614,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,1,570.33331,44086.637,34626.938,0,0,1676.8243 -8800,10843,19567,19568,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.7255201,8.7297792,0,10,-2,-54.68737,0,-9,-9,2019,8,0,55,54,1,0,0,11.039118,11.039118,0,0,0,0,0,0,0,0,0,0,53.03,45.97,35.56,52.74,10,1,1,0,0,6,10,4,1,844,1840532.8,1652163.3,215642.28,0,2128.0188 -8800,10843,19568,19567,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.163475,6.1802597,10,2,110.33932,0,2,2,2019,12,0,0,48,3,0,0,0,0,0,0,0,0,27,0,0,0,0,5.7306809,35.56,52.74,53.03,45.97,8.333333333333334,1,1,0,0,12,10,4,1,844,1840532.8,1652163.3,215642.28,0,2128.0188 -8801,10844,19569,19570,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.8790445,9.1955004,0,11,2,-99.932602,0,2,3,2019,13,2,44,44,1,2,0,19.684847,19.684847,0,0,0,0,0,1,1,0,0,0,42.95,61.24,54.2,57.49,5,1,1,0,0,11,5,5,1,757.66669,1945465.9,1614783.9,295491.25,107380.51,4058.0623 -8801,10844,19570,19569,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,7.8951745,8.230526,0,11,-2,-39.011276,0,2,2,2019,8,0,8,7,1,0,0,46.345531,46.345531,0,0,0,0,0,1,1,0,4.7366743,0,54.2,57.49,42.95,61.24,8.333333333333334,1,1,0,0,11,5,5,1,757.66669,1945465.9,1614783.9,295491.25,107380.51,4058.0623 -8801,10844,19571,-9,19570,19569,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.4203,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,757.66669,1945465.9,1614783.9,295491.25,107380.51,4058.0623 -8802,10845,19572,19573,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,7.0440292,7.2115059,47,-5,60.687416,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7897253,7.0817943,57.06,57.76,55.19,54.26,10,1,1,0,0,7,7,3,1,2352,1610890.1,572141.44,448503.5,0,2598.8774 -8802,10845,19573,19572,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.2855611,6.6882801,8,5,3.160409,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4610634,7.1618218,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,0,7,3,1,2352,1610890.1,572141.44,448503.5,0,2598.8774 -8803,10846,19574,19575,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.333889,8.129055,0,8,1,-36.852261,0,2,3,2019,8,0,40,50,1,0,0,10.324012,10.324012,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.94,43.43,8.333333333333334,1,1,0,0,8,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 -8803,10846,19575,19574,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,8.2013731,8.5360708,0,8,-1,-97.304764,0,2,2,2019,12,0,36,36,1,0,0,14.801989,14.801989,0,0,0,0,0,1,1,0,6.7175169,0,48.94,43.43,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 -8803,10846,19576,-9,19575,19574,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.1734,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 -8803,10846,19577,-9,19575,19574,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1094.3104,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 -8803,10846,19578,-9,19575,19574,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-971.41693,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,4,1,730.40002,357238.56,166021.53,309957.44,150441.53,3953.8611 -8804,10847,19579,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-968.01282,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,33.34,39.42,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,549,-35323.047,0,0,0,2287.1213 -8804,10848,19580,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-850.84711,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.65,43.05,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,323,291127.47,0,0,0,456.51489 -8805,10849,19581,19582,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.3611746,8.3228445,0,4,0,-92.764542,0,-9,-9,2019,16,4,47,50,1,4,0,10.504681,10.504681,0,0,0,0,0,0,0,0,0,0,31.52,63.65,38.51,59.43,8.333333333333334,1,1,0,0,10,2,5,1,425,397418.38,67902.531,0,0,3847.8872 -8805,10849,19582,19581,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.3702669,8.3407574,0,4,0,95.220116,0,3,2,2019,20,8,39,38,1,8,0,13.707901,13.707901,0,0,0,0,0,0,0,0,0,0,38.51,59.43,31.52,63.65,10,1,1,0,0,10,2,5,1,425,397418.38,67902.531,0,0,3847.8872 -8806,10850,19583,-9,19586,19585,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.8861,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 -8806,10850,19584,-9,19586,19585,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4461,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 -8806,10850,19585,19586,-9,-9,1,1,31,2,2,0,1,1,-9,0,4,9.1157141,8.9852333,0,1,1,18.91712,-9,-9,-9,2019,17,5,37,0,1,5,0,23.789642,23.789642,0,0,0,0,0,1,1,0,0,0,31.08,55.98,44.47,55.39,6.666666666666667,1,1,0,0,5,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 -8806,10850,19586,19585,-9,-9,1,0,30,2,2,0,1,1,-9,0,3,8.5930405,8.4110594,0,1,-1,-20.29775,-9,2,2,2019,8,0,24,0,1,0,0,21.016441,21.016441,0,0,0,0,0,1,1,0,0,0,44.47,55.39,31.08,55.98,10,1,1,0,0,9,9,5,1,1132.5,625201.56,293203.88,592911.75,338018.59,4337.355 -8807,10851,19587,-9,19589,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.37189,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,7,3,0,429.33334,46542.227,67156.977,0,0,2203.114 -8807,10851,19588,-9,19589,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.342,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,3,0,429.33334,46542.227,67156.977,0,0,2203.114 -8807,10851,19589,-9,-9,-9,1,0,33,0,2,0,1,1,-9,0,3,8.0325232,8.3057165,0,0,0,-927.78839,0,2,-9,2019,9,0,37,43,1,0,0,10.402349,10.402349,0,0,0,0,0,1,1,0,0,0,42.61,54.85,-9,-9,6.666666666666667,3,4,0,0,3,7,3,0,429.33334,46542.227,67156.977,0,0,2203.114 -8808,10852,19590,19592,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.624774,8.9271622,0,10,-2,110.87849,0,3,2,2019,7,0,42,42,1,0,0,19.053432,19.053432,0,0,0,0,0,1,1,0,0,0,60.29,52.11,48.18,61.8,8.333333333333334,1,1,0,0,12,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 -8808,10852,19591,-9,19592,19590,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.42383,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 -8808,10852,19592,19590,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,7.4432144,7.4023495,0,10,2,-40.765068,0,3,3,2019,12,0,24,24,1,0,0,7.3154311,7.3154311,0,0,0,0,0,1,1,0,6.5686975,0,48.18,61.8,60.29,52.11,10,1,1,0,0,12,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 -8808,10852,19593,-9,19592,19590,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-946.14246,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,4,1,720.25,357911.25,108700.16,200665.86,26743.922,3880.1504 -8809,10853,19594,19595,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,27,-7,20.789808,0,3,2,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.28,42.41,36.37,23,10,1,1,0,0,0,13,2,1,779.5,15699.988,14567.64,0,0,1207.0055 -8809,10853,19595,19594,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,6.3525701,6.3989592,27,7,-42.241432,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,.74391472,120,1,1,0,0,6.9610972,36.37,23,52.28,42.41,10,1,1,0,0,9,13,2,1,779.5,15699.988,14567.64,0,0,1207.0055 -8809,10854,19596,-9,19594,19595,1,0,23,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1034.6229,0,3,3,2019,3,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,10,1,1,1,0,0,13,1,1,513,-215158.44,0,0,0,802.90143 -8810,10855,19597,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,8.8613234,9.4769888,0,0,-998.37708,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.0496693,52.55,36.85,-9,-9,8.333333333333334,1,1,0,0,0,13,5,0,870,1678088.8,1043784.8,285279.84,0,5103.999 -8811,10856,19598,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1040.3145,-9,2,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.47,31.68,-9,-9,0,1,1,0,0,8,12,1,0,218,-307487.91,141680.75,0,0,749.52826 -8812,10857,19599,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-989.70215,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.06,38.71,-9,-9,5,1,1,0,0,0,8,1,0,989,700242.81,603010.81,0,0,1636.3938 -8813,10858,19600,19601,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.4208755,8.6331358,0,26,0,-2.2342949,0,2,1,2019,5,0,18,43,1,0,0,38.888065,38.888065,0,0,0,0,0,0,0,0,3.1038852,0,57.16,56.15,52.57,52.89,8.333333333333334,2,3,0,0,11,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 -8813,10858,19601,19600,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.7131071,9.8172989,0,10,0,-29.575724,0,-9,-9,2019,9,0,52,55,1,0,0,33.0993,33.0993,0,0,0,0,0,0,0,0,7.2093925,0,52.57,52.89,57.16,56.15,8.333333333333334,1,1,0,0,7,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 -8813,10858,19602,-9,19600,19601,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.7214,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 -8813,10858,19603,-9,19600,19601,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-996.09845,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,8,5,1,384.75,5252207.5,2790513.8,1219135.3,181220.55,21550.43 -8814,10859,19604,19610,-9,-9,1,0,40,0,5,0,1,1,-9,1,2,0,0,0,7,-7,0,0,2,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,31.72,43.85,59.14,52.5,3.333333333333333,1,1,0,0,2,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 -8814,10859,19605,-9,19604,19610,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-821.71106,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 -8814,10859,19606,-9,19604,19610,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-980.21246,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 -8814,10859,19607,-9,19604,19610,1,0,12,0,5,1,3,0,-9,0,3,0,0,0,0,0,-962.54901,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 -8814,10859,19608,-9,19604,19610,1,1,13,0,5,1,3,0,-9,0,3,0,0,0,0,0,-976.79602,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 -8814,10859,19609,-9,19604,19610,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-984.05695,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 -8814,10859,19610,19604,-9,-9,1,1,47,0,5,0,2,2,-9,1,4,0,0,0,7,7,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,59.14,52.5,31.72,43.85,8.333333333333334,1,1,0,0,0,7,1,1,499.42856,61104.25,-21259.283,0,0,3549.7751 -8815,10860,19611,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-992.37408,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,43.85,36.9,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,352,641564.31,0,0,0,1004.3549 -8816,10861,19612,19614,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,8.0506058,7.9841423,0,6,-4,70.765091,0,-9,-9,2019,9,0,24,24,1,0,0,12.743305,12.743305,0,0,0,0,0,1,1,0,0,0,47.32,52.7,51.17,49.39,8.333333333333334,1,1,0,0,8,4,5,1,425.33334,848976.13,628723.5,260823.22,134829.11,3943.7983 -8816,10861,19613,-9,19612,19614,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-933.33197,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,425.33334,848976.13,628723.5,260823.22,134829.11,3943.7983 -8816,10861,19614,19612,-9,-9,1,1,43,1,1,0,1,1,-9,0,3,8.8904963,9.179122,0,6,4,29.375008,0,2,2,2019,11,1,40,40,1,1,0,22.522596,22.522596,0,0,0,0,0,1,1,0,7.7632937,0,51.17,49.39,47.32,52.7,8.333333333333334,1,1,0,0,7,4,5,1,425.33334,848976.13,628723.5,260823.22,134829.11,3943.7983 -8817,10862,19615,-9,19616,-9,1,0,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-1036.9377,-9,3,-9,2019,0,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.48,41.06,-9,-9,10,2,3,0,0,0,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 -8817,10862,19616,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,7.0117984,6.8996682,0,0,0,-1021.9517,0,3,3,2019,11,0,16,16,1,1,0,6.1310825,6.1310825,0,0,0,0,0,1,1,0,3.2113581,0,49,56,-9,-9,7,2,3,0,0,10,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 -8817,10862,19617,-9,19616,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1124.332,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 -8817,10862,19618,-9,19616,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1062.584,-9,3,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,4,2,0,779.75,-102704.45,-43465.457,0,0,1603.3533 -8817,10863,19619,-9,19616,-9,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1165.9166,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,1,0,4,1,0,1125,-535525.44,0,0,0,863.49719 -8817,10864,19620,-9,19616,-9,1,1,19,0,2,0,2,2,1,1,5,0,0,0,0,0,-989.39557,-9,3,-9,2019,29,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,2.9119723,0,45.56,34.85,-9,-9,8.333333333333334,2,3,1,0,0,4,1,0,327,46532.258,0,0,0,631.53375 -8818,10865,19621,19622,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,8.1333189,8.2724867,0,26,5,123.73499,0,-9,-9,2019,16,4,39,39,1,4,0,13.16062,13.16062,0,0,0,0,0,1,1,0,3.4251378,0,46.08,57.2,51.83,57.2,8.333333333333334,1,1,0,0,9,7,4,1,429,577798.75,0,276152.59,0,2860.7249 -8818,10865,19622,19621,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.8776517,7.6868448,0,26,-5,-15.619066,0,3,2,2019,7,0,26,29,1,0,0,9.1839581,9.1839581,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.08,57.2,10,1,1,0,0,9,7,4,1,429,577798.75,0,276152.59,0,2860.7249 -8819,10866,19623,-9,19624,19625,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4329,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,477,436289.41,387785.34,178213.77,0,3382.8828 -8819,10866,19624,19625,-9,-9,1,0,36,0,2,0,1,1,-9,0,2,8.1932917,8.2355776,0,8,-5,-22.69269,0,2,3,2019,19,7,32,34,1,7,0,14.471499,14.471499,0,0,0,0,7,1,1,0,0,0,36.18,32.24,54.2,57.49,8.333333333333334,1,1,0,0,10,4,4,1,477,436289.41,387785.34,178213.77,0,3382.8828 -8819,10866,19625,19624,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.5654974,8.3401365,0,8,5,22.014257,0,2,2,2019,11,0,37,41,1,0,0,14.443769,14.443769,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.18,32.24,8.333333333333334,1,1,0,0,10,4,4,1,477,436289.41,387785.34,178213.77,0,3382.8828 -8820,10867,19626,19627,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.5756936,6.4724493,2,4,-57.314064,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8105373,63.38,53.47,51,46,10,1,1,0,0,0,1,2,1,1024.5,172079.08,-12348.359,0,0,1300.2511 -8820,10867,19627,19626,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,2,-4,-55.824348,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.5416596,0,51,46,63.38,53.47,7,1,1,0,0,0,1,2,1,1024.5,172079.08,-12348.359,0,0,1300.2511 -8821,10868,19628,19629,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,57,0,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,40.214764,0,0,1,1,0,0,0,54.63,21.21,51.24,38.85,8.333333333333334,1,1,0,0,0,4,1,0,572,63372.602,-43752.969,105601,0,2790.1201 -8821,10868,19629,19628,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,57,0,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.24,38.85,54.63,21.21,8.333333333333334,1,1,0,0,0,4,1,0,572,63372.602,-43752.969,105601,0,2790.1201 -8822,10869,19630,19632,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,0,0,0,6,1,30.724129,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.07,56.1,8.333333333333334,1,1,1,1,9,12,3,1,517.33331,37757.508,-39744.414,0,0,1379.63 -8822,10869,19631,-9,19632,19630,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.01764,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,3,1,517.33331,37757.508,-39744.414,0,0,1379.63 -8822,10869,19632,19630,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,8.1881599,8.4163265,0,6,-1,50.660801,0,-9,-9,2019,8,0,36,39,1,0,0,15.585831,15.585831,0,0,0,0,0,0,0,0,0,0,45.07,56.1,57.16,56.15,6.666666666666667,1,1,0,1,4,12,3,1,517.33331,37757.508,-39744.414,0,0,1379.63 -8823,10870,19633,19634,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-1,-29.821095,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4966946,0,57.45,43.74,52,54.51,0,1,1,0,0,6,11,2,1,1543.5,701286.25,18840.703,224033.88,0,1402.2863 -8823,10870,19634,19633,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.5732403,6.8005857,9,1,83.489693,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1363754,7.072372,52,54.51,57.45,43.74,8.333333333333334,1,1,0,0,0,11,2,1,1543.5,701286.25,18840.703,224033.88,0,1402.2863 -8824,10871,19635,19636,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,37,-4,12.780593,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,9.5571718,0,54.2,57.49,40.86,29.01,8.333333333333334,1,1,0,0,3,9,2,1,299.5,655909.81,146931.22,287040.19,0,7819.4355 -8824,10871,19636,19635,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.2364635,5.2191744,37,4,28.186161,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,4.4679356,0,0,1,1,0,0,5.2644591,40.86,29.01,54.2,57.49,8.333333333333334,1,1,0,0,8,9,2,1,299.5,655909.81,146931.22,287040.19,0,7819.4355 -8825,10872,19637,-9,19638,19641,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1000.3452,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 -8825,10872,19638,19641,-9,-9,1,0,43,0,4,0,2,2,-9,0,3,8.2711725,8.2910156,0,12,6,-130.52524,0,2,2,2019,8,0,44,37,1,0,0,9.6078176,9.6078176,0,0,0,0,0,1,1,0,1.4810802,0,50.18,52.62,45.69,53.27,6.666666666666667,1,1,0,0,9,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 -8825,10872,19639,-9,19638,19641,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-995.67499,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 -8825,10872,19640,-9,19638,19641,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1067.6439,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 -8825,10872,19641,19638,-9,-9,1,1,37,0,4,0,1,1,-9,0,3,8.0723839,8.4300995,5.5182238,12,-6,70.435387,0,1,2,2019,11,1,37,38,1,1,0,10.511665,10.511665,0,0,0,0,0,1,1,0,5.742485,0,45.69,53.27,50.18,52.62,5,1,1,0,0,11,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 -8825,10872,19642,-9,19638,19641,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.2125,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,453.66666,603752,177563.36,138616.02,33779.059,3570.2808 -8826,10873,19643,19644,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.5807276,8.4592085,0,1,2,-44.000492,-9,-9,-9,2019,10,0,40,0,1,1,0,15.215205,15.215205,0,0,0,0,0,0,0,0,0,0,49,58,45.81,61.51,7,4,1,0,0,1,11,5,0,819.5,-52012.203,-58863.141,246386.41,142655.95,3958.4204 -8826,10873,19644,19643,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,8.4803629,8.2562065,0,1,-2,51.10746,0,2,-9,2019,17,4,46,41,1,4,0,8.1082182,8.1082182,0,0,0,0,0,0,0,0,4.1537323,0,45.81,61.51,49,58,10,1,1,0,0,6,11,5,0,819.5,-52012.203,-58863.141,246386.41,142655.95,3958.4204 -8827,10874,19645,19647,-9,-9,1,0,38,0,5,0,2,2,-9,0,4,7.0923977,7.0173316,0,6,-12,86.101791,0,-9,-9,2019,12,0,25,25,1,0,0,6.7222219,6.7222219,0,0,0,0,0,1,1,0,0,0,53.97,39.66,39.79,57.19,8.333333333333334,1,1,0,0,7,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 -8827,10874,19646,-9,19645,19647,1,0,15,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1008.3796,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 -8827,10874,19647,19645,-9,-9,1,1,50,0,5,0,1,1,-9,0,3,8.6488008,8.6606436,0,6,12,3.1374032,0,2,-9,2019,12,1,60,55,1,1,0,11.600234,11.600234,0,0,0,0,0,1,1,0,3.1494398,0,39.79,57.19,53.97,39.66,3.333333333333333,1,1,0,1,10,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 -8827,10874,19648,-9,19645,19647,1,0,12,0,5,1,3,0,-9,0,2,0,0,0,0,0,-1097.8535,-9,2,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 -8827,10874,19649,-9,19645,19647,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-993.6579,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 -8827,10874,19650,-9,19645,19647,1,1,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1068.8118,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,825.16669,7094842.5,6603218,322134.41,0,3571.4395 -8828,10875,19651,-9,19653,19652,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1023.8848,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,1,2,1,854,188517.89,36793.996,0,0,2299.4739 -8828,10875,19652,19653,-9,-9,1,1,60,0,1,0,3,3,-9,0,3,7.4586782,7.3722892,0,33,12,-31.259766,0,3,2,2019,14,2,32,32,1,2,0,6.62784,6.62784,0,0,0,0,0,1,1,0,0,0,44.43,41.6,47,50,1.666666666666667,2,3,0,1,11,1,2,1,854,188517.89,36793.996,0,0,2299.4739 -8828,10875,19653,19652,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,0,0,0,8,-12,28.732267,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,44.43,41.6,7,2,3,0,0,0,1,2,1,854,188517.89,36793.996,0,0,2299.4739 -8828,10876,19654,-9,19653,19652,1,1,25,0,1,0,1,1,-9,0,4,7.2306561,7.5385885,0,0,0,-1084.1151,0,3,3,2019,11,0,30,36,1,0,1,8.0756445,8.0756445,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,2,3,0,0,11,1,3,1,253,326724.69,-6874.4731,0,0,1422.661 -8828,10877,19655,-9,19653,19652,1,0,22,0,1,1,1,0,0,0,4,0,0,0,0,0,-1055.8358,-9,3,3,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,2,3,0,0,0,1,1,1,758,280330.09,57277.023,0,0,-315.3891 -8828,10878,19656,-9,19653,19652,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-995.90662,-9,3,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,3.0224605,0,54.2,57.49,-9,-9,10,2,3,0,0,0,1,2,1,571,-482064.5,0,0,0,-7.3180342 -8829,10879,19657,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1122.2628,0,2,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,60.8,51.86,-9,-9,10,1,1,0,0,0,9,1,1,118,-100194.19,0,0,0,1418.5244 -8830,10880,19658,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,8.875351,8.7317162,0,0,0,-999.81335,0,2,2,2019,10,2,47,45,1,2,0,18.140869,18.140869,0,0,0,0,0,0,0,0,8.1939888,0,43.33,48.1,-9,-9,8.333333333333334,1,1,0,0,12,6,5,1,487,-221826.33,116483.85,93255.461,31908.166,3642.99 -8831,10881,19659,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.8144169,6.0718703,0,0,-1062.7493,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,0,5.6863923,51.37,36.83,-9,-9,5,1,1,0,0,0,4,2,1,546,640485.63,123548.09,204619.05,0,803.81262 -8832,10882,19660,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,6.105185,6.6870894,0,0,-981.8172,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,2.7078569,34.417103,23.319689,0,1,1,0,5.569747,5.6405315,61.86,30.99,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,651,123881.77,35693,336838.94,0,1717.8884 -8832,10883,19661,-9,19660,-9,1,1,55,0,0,0,1,1,-9,0,3,9.2761021,8.9437056,0,0,0,-1040.666,0,2,2,2019,9,0,71,61,1,0,0,12.468066,12.468066,0,0,0,0,14.5,1,1,0,3.8087654,0,52.54,52.91,-9,-9,5,1,1,0,0,9,8,5,0,665,584906.56,243830.45,186112,62938.082,2269.5217 -8833,10884,19662,19663,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.7307205,8.0532789,0,21,2,-91.095238,0,3,3,2019,12,2,44,41,1,2,0,7.9931421,7.9931421,0,0,0,0,0,0,0,0,4.506412,0,35.39,59.05,57.16,56.15,6.666666666666667,1,1,0,0,8,5,5,1,415,724787.31,491992.19,284952.47,100360.35,5326.4971 -8833,10884,19663,19662,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.5143652,9.4610796,0,21,-2,-7.8143501,0,2,2,2019,11,0,40,39,1,0,0,34.11153,34.11153,0,0,0,0,0,0,0,0,4.370554,0,57.16,56.15,35.39,59.05,8.333333333333334,1,1,0,0,10,5,5,1,415,724787.31,491992.19,284952.47,100360.35,5326.4971 -8834,10885,19664,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,0,0,-955.74585,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,0,5,13,1,0,1215,240247.5,0,0,0,606.49298 -8835,10886,19665,19667,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.3377895,8.1366034,0,10,-13,44.429844,0,2,2,2019,12,2,37,37,1,2,0,17.389883,17.389883,0,0,0,0,0,1,1,0,0,0,38.38,57.97,49.41,58.28,8.333333333333334,1,1,0,0,13,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 -8835,10886,19666,-9,19667,19665,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.6815,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 -8835,10886,19667,19665,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.8240967,8.2473278,0,10,13,90.246689,0,2,2,2019,9,0,19,18,1,0,0,14.817266,14.817266,0,0,0,0,0,1,1,0,0,0,49.41,58.28,38.38,57.97,8.333333333333334,1,1,0,0,13,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 -8835,10886,19668,-9,19667,19665,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.91876,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,480.25,-11193.453,100789,128958.68,35977.68,2924.1924 -8836,10887,19669,19671,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,7.513886,7.7996483,7.1489773,9,9,26.972033,0,2,2,2019,6,0,40,40,1,0,0,4.6803198,4.6803198,0,0,0,0,0,1,1,0,6.7583075,7.0839477,62.49,55.09,50.57,25.56,8.333333333333334,1,1,0,0,10,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 -8836,10887,19670,-9,19671,19669,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1066.7855,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 -8836,10887,19671,19669,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,8.3667107,8.3178778,0,9,0,-144.536,0,2,2,2019,19,7,38,38,1,7,0,7.298655,7.298655,0,0,0,0,5.48,1,1,0,.9083553,0,50.57,25.56,62.49,55.09,3.333333333333333,1,1,0,0,10,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 -8836,10887,19672,-9,19671,19669,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.85266,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,520.25,939534.63,136985.89,230983.33,0,2959.1416 -8836,10888,19673,-9,19671,19669,1,1,19,0,2,0,2,2,-9,0,5,7.4370508,7.3623567,0,0,0,-979.96295,0,2,2,2019,6,0,40,0,1,0,1,6.1454773,6.1454773,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,518,231424.64,-8690.4629,0,0,865.21045 -8837,10889,19674,19675,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,7.7652817,7.5379639,55,0,38.969761,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7744818,7.3389525,60.7,39.78,49,42.07,8.333333333333334,1,1,0,0,0,13,3,1,1817.5,323940.88,135665.66,146110.73,0,1531.9402 -8837,10889,19675,19674,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,5.5219626,5.7964826,55,0,2.8721232,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4913507,5.5197153,49,42.07,60.7,39.78,8.333333333333334,1,1,0,0,0,13,3,1,1817.5,323940.88,135665.66,146110.73,0,1531.9402 -8838,10890,19676,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.2035599,8.5264301,0,0,0,-1058.592,0,3,3,2019,16,3,30,31,1,3,0,15.688535,15.688535,0,0,0,0,0,1,1,0,2.1765175,0,47.58,56.39,-9,-9,5,1,1,0,0,12,7,4,1,1111,1206061.4,350735.41,549577.44,0,2100.781 -8839,10891,19677,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.2291,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,699,-130776.58,0,0,0,382.88345 -8840,10892,19678,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.9643655,8.198163,0,0,0,-1052.1849,0,2,2,2019,10,2,19,18,1,2,0,18.526468,18.526468,0,0,0,0,0,0,0,0,5.8795199,0,57.41,34.15,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,628,-50698.508,-50108.469,0,0,2044.2588 -8841,10893,19679,-9,19680,19682,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.48517,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 -8841,10893,19680,19682,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,6.7653599,6.494215,0,18,-5,-67.868088,0,2,2,2019,11,0,20,15,1,2,0,6.7823148,6.7823148,0,0,0,0,14.5,1,1,0,0,0,49,56,35.65,48.57,5,2,3,0,1,10,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 -8841,10893,19681,-9,19680,19682,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.80261,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 -8841,10893,19682,19680,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,8.040926,8.231534,0,8,5,15.578718,0,2,1,2019,25,9,40,38,1,9,0,8.3098345,8.3098345,0,0,0,0,0,1,1,0,0,0,35.65,48.57,49,56,0,2,3,0,1,9,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 -8841,10893,19683,-9,19680,19682,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1151.1909,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,772.40002,145424.23,75285.508,199593,143218.5,2286.1772 -8842,10894,19684,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.1601238,8.0935555,0,0,0,-1051.5115,-9,-9,-9,2019,12,0,43,0,1,0,0,8.5481939,8.5481939,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,169,251006.44,36370.238,0,0,2091.2734 -8843,10895,19685,19688,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.9140468,7.848186,0,24,10,39.379066,0,-9,-9,2019,9,0,60,70,1,1,0,4.6203766,4.6203766,0,0,0,0,0,1,1,0,0,0,53,55,65.56,41.56,8,2,3,0,0,10,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 -8843,10895,19686,-9,19688,19685,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.6537,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 -8843,10895,19687,-9,19688,19685,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.1861,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 -8843,10895,19688,19685,-9,-9,1,0,40,0,2,0,3,3,-9,0,5,0,0,0,24,-10,141.93953,0,3,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,65.56,41.56,53,55,0,2,3,0,0,0,4,2,1,1127.75,42305.199,0,117542.95,70908.992,2014.3635 -8843,10896,19689,-9,19688,19685,1,1,22,0,2,0,2,2,-9,0,4,7.0577073,6.9572353,0,0,0,-907.21625,0,3,2,2019,10,0,40,40,1,1,1,3.6110661,3.6110661,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,4,2,1,1203,0,0,0,0,710.74298 -8843,10897,19690,-9,19688,19685,1,0,20,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1097.1827,0,3,2,2019,18,8,0,6,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,37.03,52.29,-9,-9,5,2,3,1,0,2,4,1,1,719,0,0,0,0,0 -8843,10898,19691,-9,19688,19685,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-874.19495,-9,3,2,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,37.15,58.69,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,750,0,0,0,0,0 -8844,10899,19692,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.5157261,7.6077061,0,0,0,-1043.8669,0,-9,-9,2019,7,0,19,20,1,0,0,11.861791,11.861791,0,0,0,0,2,1,1,0,0,0,46.12,51.63,-9,-9,6.666666666666667,3,4,0,0,11,6,3,1,612,676685.06,325651.47,158268.5,0,906.96112 -8845,10900,19693,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1032.3224,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0012226,0,55.29,55.84,-9,-9,0,1,1,0,0,1,12,2,1,361,150472.91,0,0,0,864.48846 -8846,10901,19694,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0086184,8.0576611,0,0,0,-1037.0763,0,2,-9,2019,6,0,55,50,1,0,0,7.6548915,7.6548915,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,10,9,4,1,454,-14124.967,43625.75,0,0,1367.7399 -8847,10902,19695,19696,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.0044584,8.4501371,0,4,-3,5.408689,0,2,2,2019,6,0,37,37,1,0,0,9.197403,9.197403,0,0,0,0,0,0,0,0,1.0170616,0,55.79,52.62,47.97,37.71,8.333333333333334,1,1,0,0,11,13,4,1,206.5,151415.09,74061.859,180204.63,43788.625,2237.8025 -8847,10902,19696,19695,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,6.6519399,7.0118713,0,4,3,-58.322628,0,2,3,2019,11,0,16,18,1,0,0,8.1623383,8.1623383,0,0,0,0,2,0,0,0,0,0,47.97,37.71,55.79,52.62,8.333333333333334,1,1,0,0,8,13,4,1,206.5,151415.09,74061.859,180204.63,43788.625,2237.8025 -8848,10903,19697,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-993.15924,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.15000000000001,32.53,-9,-9,5,1,1,0,0,0,9,1,0,1069,568417.25,0,369391.34,0,638.66583 -8849,10904,19698,-9,19699,19701,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.89771,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 -8849,10904,19699,19701,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.7429781,9.3785143,0,18,1,-14.669229,0,1,2,2019,13,3,44,42,1,3,0,20.906664,20.906664,0,0,0,0,0,1,1,0,0,0,40.15,55.99,54.79,55.86,8.333333333333334,1,1,0,0,12,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 -8849,10904,19700,-9,19699,19701,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.01556,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 -8849,10904,19701,19699,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6996956,8.8541803,0,18,-1,118.68726,0,2,2,2019,6,0,35,40,1,0,0,19.646315,19.646315,0,0,0,0,0,1,1,0,0,0,54.79,55.86,40.15,55.99,8.333333333333334,1,1,0,0,11,2,5,1,623.75,198332.56,84632.547,194588.83,133810.8,4917.9102 -8850,10905,19702,-9,-9,-9,1,0,54,0,2,0,1,1,-9,0,3,8.1469793,8.0838232,0,0,0,-1048.5914,0,2,2,2019,11,1,37,37,1,1,0,12.251187,12.251187,0,0,0,0,0,1,1,0,0,0,54.97,47.63,-9,-9,5,1,1,0,0,12,8,3,0,312,-111655.04,-4784.564,0,0,850.56256 -8850,10906,19703,-9,19705,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.81,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,1119.6666,-98987.5,52754.586,225053.03,87476.289,1720.3331 -8850,10906,19704,-9,19705,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.5674,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,1119.6666,-98987.5,52754.586,225053.03,87476.289,1720.3331 -8850,10906,19705,-9,19702,-9,1,0,37,0,2,0,2,2,-9,0,2,7.9984169,7.8233132,0,0,0,-1030.3856,0,1,-9,2019,17,5,31,29,1,5,1,9.5758152,9.5758152,0,0,0,0,0,1,1,0,0,0,31.56,56.17,-9,-9,3.333333333333333,4,2,0,0,12,8,4,0,1119.6666,-98987.5,52754.586,225053.03,87476.289,1720.3331 -8851,10907,19706,19708,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.1096392,9.1865377,0,7,-2,-33.536194,0,2,2,2019,9,0,40,40,1,0,0,36.728897,36.728897,0,0,0,0,2,1,1,0,2.1652198,0,57.33,53.46,38.09,37.11,8.333333333333334,1,1,0,0,8,12,5,1,389.66666,2200332,2079177.3,322461.56,228030.58,5885.5669 -8851,10907,19707,-9,19708,19706,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-927.88654,-9,1,1,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,389.66666,2200332,2079177.3,322461.56,228030.58,5885.5669 -8851,10907,19708,19706,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,8.8643064,8.6353426,0,7,2,76.505562,0,3,3,2019,26,11,50,48,1,11,0,12.238526,12.238526,0,0,0,0,0,1,1,0,0,0,38.09,37.11,57.33,53.46,3.333333333333333,1,1,0,0,8,12,5,1,389.66666,2200332,2079177.3,322461.56,228030.58,5885.5669 -8851,10908,19709,-9,19708,19706,1,1,21,0,0,0,2,2,-9,0,3,7.6821384,7.5243258,0,0,0,-836.3952,0,1,1,2019,7,0,40,15,1,0,1,8.3122778,8.3122778,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,876,-53281.039,0,0,0,1261.0953 -8852,10909,19710,19711,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6307716,8.4671993,0,9,-8,112.49678,0,2,3,2019,10,0,40,40,1,0,0,14.284284,14.284284,0,0,0,0,0,1,1,0,7.4274225,0,57.16,56.15,53.62,46.84,8.333333333333334,1,1,0,0,10,13,5,1,522.5,476162.75,309441.75,125807.4,175731.92,5080.1177 -8852,10909,19711,19710,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.642663,8.0507774,0,9,8,22.332264,0,3,2,2019,11,0,40,40,1,0,0,7.1039495,7.1039495,0,0,0,0,0,1,1,0,7.2311521,0,53.62,46.84,57.16,56.15,8.333333333333334,1,1,0,0,10,13,5,1,522.5,476162.75,309441.75,125807.4,175731.92,5080.1177 -8853,10910,19712,19713,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,0,0,0,17,7,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,62.99,41.32,1.666666666666667,2,3,1,0,0,7,1,0,516,0,0,0,0,1314.79 -8853,10910,19713,19712,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,0,0,17,-7,0,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.99,41.32,54.2,57.49,10,2,3,1,0,0,7,1,0,516,0,0,0,0,1314.79 -8853,10910,19714,-9,19713,19712,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.4402,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,516,0,0,0,0,1314.79 -8854,10911,19715,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.3445473,6.2967825,0,0,-1037.3862,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3599377,58.5,44.67,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,651,277464.31,148348.41,91549.625,36501.672,1150.2625 -8855,10912,19716,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.2878857,8.5715227,0,0,0,-1058.2327,0,-9,3,2019,29,12,50,60,1,12,0,10.923036,10.923036,0,0,0,0,0,1,1,0,0,0,38.11,38,-9,-9,3.333333333333333,1,1,0,0,9,4,5,0,475,1585166.1,1559436.5,0,0,2043.7307 -8856,10913,19717,19718,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0108538,7.9471149,46,-1,81.369286,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.6481805,7.7009468,48.33,34.35,57.16,56.15,5,1,1,0,0,9,5,3,1,246.5,1382690,744943.81,129143.3,0,2328.1226 -8856,10913,19718,19717,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4692612,6.6061239,7,1,172.47902,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2929754,6.7026849,57.16,56.15,48.33,34.35,8.333333333333334,1,1,0,0,8,5,3,1,246.5,1382690,744943.81,129143.3,0,2328.1226 -8857,10914,19719,-9,19720,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.0159,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,2094,122817.88,0,0,0,1216.0236 -8857,10914,19720,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,0,0,0,0,-964.9032,1,3,2,2019,13,2,0,30,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,60.41,-9,-9,6.666666666666667,1,1,0,1,5,13,1,0,2094,122817.88,0,0,0,1216.0236 -8857,10914,19721,-9,19720,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.0753,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,2094,122817.88,0,0,0,1216.0236 -8858,10915,19722,19723,-9,-9,1,1,80,0,0,0,1,1,-9,0,5,0,9.6026649,9.5821371,60,-1,193.74243,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9746227,9.6445227,57.06,57.76,48.32,31.91,8.333333333333334,1,1,0,0,0,7,5,1,835,1460755.8,721341.56,594259.44,0,7372.9321 -8858,10915,19723,19722,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.7442126,5.8838735,60,1,6.2966733,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0458398,48.32,31.91,57.06,57.76,10,1,1,0,0,0,7,5,1,835,1460755.8,721341.56,594259.44,0,7372.9321 -8859,10916,19724,19726,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.5172586,8.6689434,0,5,1,45.363346,-9,-9,-9,2019,9,0,35,0,1,1,0,14.394384,14.394384,0,0,0,0,0,1,1,0,2.7917118,0,51,56,32.84,60.85,8,1,1,0,0,1,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 -8859,10916,19725,-9,19726,19724,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0252,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 -8859,10916,19726,19724,-9,-9,1,0,41,0,2,0,2,2,-9,1,3,6.6259704,6.7569022,0,5,-1,14.564291,-9,2,2,2019,20,7,16,0,1,7,0,5.7411118,5.7411118,0,0,0,0,74.5,1,1,0,0,0,32.84,60.85,51,56,1.666666666666667,1,1,0,0,8,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 -8859,10916,19727,-9,19726,19724,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.36859,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,706.75,691758.38,473445.19,296656.63,8657.5498,3370.8755 -8860,10917,19728,19729,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4461584,7.5689673,0,10,-2,-112.33778,0,3,3,2019,24,12,20,20,1,12,0,11.975652,11.975652,0,0,0,0,0,0,0,0,7.8350635,0,34.16,37.44,58.15,52.91,3.333333333333333,1,1,0,0,10,5,4,1,164,373812.03,157745.48,128185,134158.78,3594.1912 -8860,10917,19729,19728,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.4000244,8.4528627,0,10,2,40.359291,0,3,2,2019,8,0,40,40,1,0,0,12.923267,12.923267,0,0,0,0,0,0,0,0,0,0,58.15,52.91,34.16,37.44,1.666666666666667,1,1,0,0,10,5,4,1,164,373812.03,157745.48,128185,134158.78,3594.1912 -8861,10918,19730,19731,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.8901792,7.7025743,9,-6,87.163284,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.4399502,7.3641262,56.94,49.53,54.62,37.47,6.666666666666667,1,1,1,0,11,1,3,1,1676.5,1091551.5,581475.81,324662.06,0,1363.3577 -8861,10918,19731,19730,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.2845283,6.3433442,9,6,32.916111,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1521487,6.2216754,54.62,37.47,56.94,49.53,8.333333333333334,1,1,0,0,0,1,3,1,1676.5,1091551.5,581475.81,324662.06,0,1363.3577 -8862,10919,19732,19733,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,1,8,13.463615,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.9531097,0,57.16,56.15,47.44,56.39,8.333333333333334,1,1,0,0,11,11,2,1,256,154319.03,56356.289,129447.24,-4932.2373,1862.0944 -8862,10919,19733,19732,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,5.2822895,5.47544,0,1,-8,-42.302277,-9,2,2,2019,12,1,16,0,1,1,0,1.4499019,1.4499019,0,0,0,0,0,0,0,0,0,0,47.44,56.39,57.16,56.15,8.333333333333334,1,1,0,0,11,11,2,1,256,154319.03,56356.289,129447.24,-4932.2373,1862.0944 -8862,10920,19734,-9,19732,19733,1,1,27,0,0,0,1,1,-9,0,4,8.714303,8.990715,0,0,0,-1067.6746,-9,2,1,2019,5,0,58,0,1,0,1,15.432898,15.432898,0,0,0,0,0,0,0,0,2.2290022,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,11,5,1,1250,21317.246,90097.039,168155.11,126587.65,2576.7639 -8863,10921,19735,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,6.9434471,6.845017,0,0,0,-1083.4337,0,2,2,2019,7,0,30,20,1,0,0,3.5144253,3.5144253,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,1901,1568802.4,101846.95,958617.13,0,513.68481 -8864,10922,19736,19738,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.1965542,8.4106007,0,8,-5,73.27417,0,-9,-9,2019,15,3,60,60,1,3,0,8.3377972,8.3377972,0,0,0,0,0,1,1,0,1.1282123,0,53.77,45.91,60.28,43.74,3.333333333333333,1,1,0,0,9,10,5,1,707.33331,2556462.5,1965593.1,214211.95,0,3397.1094 -8864,10922,19737,-9,19736,19738,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-977.03436,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,707.33331,2556462.5,1965593.1,214211.95,0,3397.1094 -8864,10922,19738,19736,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.1069221,8.1911545,5.9701638,8,5,-26.106989,0,2,2,2019,9,0,55,60,1,0,0,7.2565827,7.2565827,0,0,0,0,0,1,1,0,3.0882282,5.5876632,60.28,43.74,53.77,45.91,8.333333333333334,1,1,0,0,8,10,5,1,707.33331,2556462.5,1965593.1,214211.95,0,3397.1094 -8865,10923,19739,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.1651793,7.8305721,0,0,0,-1072.6149,0,2,2,2019,7,0,38,0,1,0,0,10.703838,10.703838,0,0,0,0,0,1,1,0,7.1619501,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,120,-2048.3813,0,0,0,2613.2344 -8866,10924,19740,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,6.8256817,6.9523969,0,0,0,-869.11859,-9,-9,-9,2019,10,0,60,0,1,0,0,1.9620441,1.9620441,0,0,0,0,0,1,1,0,0,0,41.28,57.99,-9,-9,6.666666666666667,1,1,0,0,11,7,2,0,698,-102166.82,0,0,0,1242.2366 -8867,10925,19741,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-926.84381,0,-9,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,37.41,38.6,-9,-9,6.666666666666667,1,1,0,1,0,10,1,0,1054,576255.94,0,202866.92,0,958.4809 -8868,10926,19742,19743,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.8270369,8.6283369,0,13,1,-135.57805,0,-9,-9,2019,6,0,40,40,1,0,0,23.72323,23.72323,0,0,0,0,0,0,0,0,2.3390737,0,57.15,46.69,53,55,10,1,1,0,0,9,8,5,1,368.5,876899.5,715424.75,0,0,2840.3916 -8868,10926,19743,19742,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.4742126,7.2052126,0,13,-1,104.75162,0,-9,-9,2019,9,0,49,-9,1,1,0,4.4889693,4.4889693,0,0,0,0,0,0,0,0,4.3221478,0,53,55,57.15,46.69,8,1,1,0,0,1,8,5,1,368.5,876899.5,715424.75,0,0,2840.3916 -8869,10927,19744,19745,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.1760693,7.9821076,0,16,-16,50.102615,0,2,1,2019,9,0,71,44,1,0,0,5.3080297,5.3080297,0,0,0,0,7,1,1,0,3.3489673,0,61.28,48.88,72.84,18,8.333333333333334,1,1,0,0,10,2,3,1,912.5,219210.75,309980.44,0,0,2354.2993 -8869,10927,19745,19744,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,5.305758,4.9647107,16,16,-28.662264,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5374942,5.0887523,72.84,18,61.28,48.88,5,1,1,0,0,6,2,3,1,912.5,219210.75,309980.44,0,0,2354.2993 -8870,10928,19746,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.5791731,7.5202961,0,0,0,-917.25568,0,2,2,2019,11,1,60,40,1,1,0,4.0622845,4.0622845,0,0,0,0,14.5,0,0,0,0,0,55.77,31.2,-9,-9,1.666666666666667,1,1,0,0,10,1,3,1,1075,49053.191,105160.11,0,0,1398.431 -8871,10929,19747,19748,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,63,-5,-65.373917,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.686689,0,58.61,40.49,40.54,39.94,8.333333333333334,1,1,0,0,0,10,2,1,516.5,180264.33,0,0,0,928.81226 -8871,10929,19748,19747,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,4.1024213,4.0043192,63,5,-85.537064,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,25.257524,0,0,1,1,0,4.109158,4.2813683,40.54,39.94,58.61,40.49,6.666666666666667,1,1,0,0,0,10,2,1,516.5,180264.33,0,0,0,928.81226 -8871,10930,19749,-9,19747,19748,1,1,44,0,0,0,2,2,-9,0,4,7.6561737,7.7459192,0,0,0,-948.44861,0,3,3,2019,12,0,32,30,1,0,0,6.6240606,6.6240606,0,0,0,0,7,1,1,0,.62787741,0,46.98,59.35,-9,-9,5,1,1,0,0,8,10,3,1,4061,-57059.395,62236.047,0,0,229.48964 -8872,10931,19750,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.4259739,7.0695772,0,0,-1085.746,0,1,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5719662,67.52,24.05,-9,-9,10,4,2,0,0,0,6,2,1,1019,163610.25,0,0,0,982.44226 -8873,10932,19751,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,5.7461314,5.9435778,0,0,-1017.282,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,15.603566,0,142.84782,0,1,1,0,4.6846247,6.2698569,67.73999999999999,28.65,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,722,-97404.578,102273.37,0,0,992.74982 -8873,10933,19752,-9,-9,19751,1,1,56,0,0,0,2,2,-9,0,3,7.8191757,8.2153339,6.059823,0,0,-1000.027,-9,-9,3,2019,6,0,39,0,1,0,0,8.4638929,8.4638929,0,0,0,0,7,1,1,0,3.9050589,6.0211673,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,679,594744,179686.02,0,0,1489.0098 -8874,10934,19753,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.7754211,8.8000526,0,0,0,-979.44299,0,-9,-9,2019,12,0,43,43,1,0,0,21.015755,21.015755,0,0,0,0,0,1,1,0,7.6916246,0,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,372,-270557.19,-11677.689,0,0,3773.5544 -8875,10935,19754,19755,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,7.2497625,6.838531,64,1,-45.217213,0,3,3,2019,18,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.3004627,38.24,26.38,65.21000000000001,31.08,10,1,1,0,0,0,9,2,1,1200.5,222251.83,77918.203,225812.73,0,1752.856 -8875,10935,19755,19754,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,5.8890729,6.11059,64,-1,4.4737282,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,5.9138904,65.21000000000001,31.08,38.24,26.38,8.333333333333334,1,1,0,0,5,9,2,1,1200.5,222251.83,77918.203,225812.73,0,1752.856 -8876,10936,19756,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.8124027,8.7386637,0,0,0,-1009.6799,0,3,3,2019,13,1,80,44,1,1,0,7.0505815,7.0505815,0,0,0,0,0,1,1,0,0,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,11,7,5,0,400,-154095.02,29169.807,0,0,2291.302 -8877,10937,19757,-9,19758,19759,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.17493,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 -8877,10937,19758,19759,-9,-9,1,0,26,1,3,0,3,3,-9,0,3,0,0,0,8,-5,41.676212,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,53,31.46,57.32,8.333333333333334,1,1,0,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 -8877,10937,19759,19758,-9,-9,1,1,31,1,3,0,2,2,-9,0,3,7.657093,7.1856666,0,8,5,-4.6058898,0,-9,-9,2019,21,9,40,27,1,9,0,5.4117951,5.4117951,0,0,0,0,0,1,0,1,0,0,31.46,57.32,44,53,3.333333333333333,1,1,0,0,4,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 -8877,10937,19760,-9,19758,19759,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.1376,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 -8877,10937,19761,-9,19758,19759,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.5696,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,617,-102785.98,-25797.49,0,0,3150.6714 -8878,10938,19762,19763,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,4.6679826,4.6743131,8,9,43.965714,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.8554931,4.5629053,51.41,56.15,58.33,39.49,8.333333333333334,1,1,0,0,0,10,2,1,509,601886.63,181469.69,380310.5,0,2790.1885 -8878,10938,19763,19762,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.6942062,6.6078258,8,0,19.001198,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.289669,6.5751204,58.33,39.49,51.41,56.15,8.333333333333334,1,1,0,0,0,10,2,1,509,601886.63,181469.69,380310.5,0,2790.1885 -8879,10939,19764,-9,19765,19766,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.736,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,632.33331,76825.273,24137.311,281674.31,94320.453,5175.9219 -8879,10939,19765,19766,-9,-9,1,0,30,0,1,0,1,1,-9,0,2,8.4931335,8.7725506,0,7,1,71.560837,0,-9,-9,2019,12,0,30,24,1,0,0,15.607848,15.607848,0,0,0,0,0,1,1,0,0,0,41.58,52.86,55.35,46.24,6.666666666666667,1,1,0,0,6,4,5,1,632.33331,76825.273,24137.311,281674.31,94320.453,5175.9219 -8879,10939,19766,19765,-9,-9,1,1,29,0,1,0,2,2,-9,0,5,8.706008,8.7458601,0,7,-1,-17.128265,0,2,-9,2019,6,0,30,40,1,0,0,33.926193,33.926193,0,0,0,0,0,1,1,0,3.3807135,0,55.35,46.24,41.58,52.86,10,1,1,0,0,7,4,5,1,632.33331,76825.273,24137.311,281674.31,94320.453,5175.9219 -8880,10940,19767,19768,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2387619,8.0353765,3.617116,6,8,56.908619,0,3,3,2019,7,0,43,43,1,0,0,7.9164834,7.9164834,0,0,0,0,0,0,0,0,3.7817295,0,55.19,54.26,57.06,57.76,6.666666666666667,1,1,0,0,7,9,4,1,2012,1825095.1,1139944.5,552816.25,0,2502.8877 -8880,10940,19768,19767,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.1916838,8.0415077,0,6,-8,18.840771,0,-9,-9,2019,6,0,35,32,1,0,0,13.355891,13.355891,0,0,0,0,2,0,0,0,.77994233,0,57.06,57.76,55.19,54.26,10,1,1,0,0,7,9,4,1,2012,1825095.1,1139944.5,552816.25,0,2502.8877 -8880,10941,19769,-9,19768,19767,1,1,26,0,0,0,1,1,-9,0,5,0,0,0,0,0,-898.70422,0,3,3,2019,6,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,0,3.8508453,0,51.14,60.45,-9,-9,8.333333333333334,1,1,1,0,3,9,1,1,203,-188573.27,0,0,0,-515.78015 -8880,10942,19770,-9,19768,19767,1,1,24,0,0,0,1,1,-9,0,4,6.5148726,6.3613558,0,0,0,-757.59851,0,2,2,2019,7,1,12,0,1,1,1,6.034349,6.034349,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,436,-149058.09,-23417.4,0,0,-511.52573 -8881,10943,19771,19772,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.4901152,8.4428864,6,0,-70.417862,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.3728685,8.2111292,51.8,44.35,54.02,43.98,8.333333333333334,1,1,0,0,0,12,3,1,648,1612040.5,1043254.2,500406.63,0,3607.1982 -8881,10943,19772,19771,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,0,0,6,0,-167.58662,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6256742,0,54.02,43.98,51.8,44.35,10,1,1,0,0,0,12,3,1,648,1612040.5,1043254.2,500406.63,0,3607.1982 -8882,10944,19773,19774,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,0,0,0,6,1,0,0,3,2,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.69,19.91,35.79,20.44,1.666666666666667,1,1,0,0,0,9,1,0,451.5,-1098.6191,-61430.945,0,0,2723.3467 -8882,10944,19774,19773,-9,-9,1,1,39,0,0,0,2,2,-9,1,1,0,0,0,6,-1,0,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,35.79,20.44,36.69,19.91,5,1,1,0,1,0,9,1,0,451.5,-1098.6191,-61430.945,0,0,2723.3467 -8883,10945,19775,-9,19776,19777,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-984.8299,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,1519.3334,1416928.4,592034.31,413280.94,0,4949.5034 -8883,10945,19776,19777,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.4542379,8.6402216,0,17,-1,-31.280983,0,1,1,2019,7,0,36,35,1,0,0,14.628165,14.628165,0,0,0,0,0,0,0,0,0,0,55.09,55.87,46.39,52.95,8.333333333333334,1,1,0,0,9,10,5,1,1519.3334,1416928.4,592034.31,413280.94,0,4949.5034 -8883,10945,19777,19776,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.9390669,9.1356106,0,10,1,-47.115063,0,-9,-9,2019,10,0,42,42,1,0,0,22.969105,22.969105,0,0,0,0,0,0,0,0,6.5671659,0,46.39,52.95,55.09,55.87,6.666666666666667,1,1,0,0,6,10,5,1,1519.3334,1416928.4,592034.31,413280.94,0,4949.5034 -8884,10946,19778,19780,-9,-9,1,0,41,0,3,0,2,2,-9,0,2,7.1922855,7.56214,0,9,-1,38.958275,0,2,2,2019,10,0,35,35,1,0,0,6.2868333,6.2868333,0,0,0,0,0,1,1,0,1.5700781,0,56.44,28.43,36.54,60.21,6.666666666666667,1,1,0,0,9,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 -8884,10946,19779,-9,19778,19780,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.8228,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 -8884,10946,19780,19778,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.6695728,8.9839621,0,9,1,-.04716723,0,2,2,2019,14,2,30,60,1,2,0,22.846056,22.846056,0,0,0,0,0,1,1,0,6.7947226,0,36.54,60.21,56.44,28.43,5,1,1,0,0,7,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 -8884,10946,19781,-9,19778,19780,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-882.85901,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 -8884,10946,19782,-9,19778,19780,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.6711,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,703,216726.59,197087.67,324289.28,130085.32,3513.6365 -8885,10947,19783,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,0,0,0,0,0,-877.41821,0,1,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,3,4,1,0,0,4,1,0,407,-6282.645,182069.25,164463.55,81544.594,-141.17529 -8886,10948,19784,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.4044714,8.1890182,0,0,0,-862.68048,0,2,2,2019,12,0,48,48,1,0,0,8.7027912,8.7027912,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,1028,4455.3472,0,0,0,1098.9611 -8887,10949,19785,19786,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.3394375,7.6808648,0,3,0,-.53131986,0,3,3,2019,8,0,28,40,1,0,0,9.0021353,9.0021353,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.59,50.44,8.333333333333334,1,1,0,0,8,10,4,1,483.66666,431925.78,135711.78,182529.03,65705.336,2985.416 -8887,10949,19786,19785,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.5274944,8.7070217,0,3,0,39.137917,0,3,2,2019,9,0,45,45,1,0,0,12.199826,12.199826,0,0,0,0,0,1,1,0,0,0,51.59,50.44,57.16,56.15,6.666666666666667,1,1,0,0,8,10,4,1,483.66666,431925.78,135711.78,182529.03,65705.336,2985.416 -8887,10949,19787,-9,19785,19786,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-977.6355,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,483.66666,431925.78,135711.78,182529.03,65705.336,2985.416 -8888,10950,19788,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.9765639,5.9944658,0,0,-1045.3551,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3711843,5.513607,54.95,39.62,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1851,79522.578,-46586.164,0,0,357.8139 -8889,10951,19789,19790,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,40,0,-13.604074,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.87,46.68,60.52,53.2,8.333333333333334,1,1,0,0,0,9,4,1,1365,765690,410685,326283.34,0,2054.4087 -8889,10951,19790,19789,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.4152107,8.470377,0,40,0,-58.419842,0,-9,3,2019,6,0,50,50,1,0,0,10.305361,10.305361,0,0,0,0,0,1,1,0,0,0,60.52,53.2,47.87,46.68,8.333333333333334,1,1,0,0,11,9,4,1,1365,765690,410685,326283.34,0,2054.4087 -8890,10952,19791,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,8.9126749,8.7635288,0,0,0,-1097.3663,0,2,2,2019,7,0,60,0,1,0,0,14.206033,14.206033,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,5,8,5,0,541,-65278.719,0,0,0,2805.0913 -8891,10953,19792,-9,-9,-9,1,1,25,0,1,0,1,1,-9,0,2,8.1100636,7.7779412,0,0,0,-1034.6727,0,3,2,2019,22,7,70,60,1,7,1,5.2073002,5.2073002,0,0,0,0,0,0,0,0,0,0,36.65,36.16,-9,-9,1.666666666666667,2,3,0,0,2,6,4,1,415,178851.97,59114.52,80283.938,72419.977,1319.6039 -8892,10954,19793,19794,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.6047382,7.9208894,8,1,-71.000786,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,6.8231716,7.1074095,46.98,59.35,54.1,59.11,8.333333333333334,1,1,0,0,1,11,4,1,2663,2676183,1827872.3,414503.31,0,3610.3616 -8892,10954,19794,19793,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,8.7066727,8.3692837,35,-1,-189.28648,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0126586,8.0727844,54.1,59.11,46.98,59.35,8.333333333333334,1,1,0,0,10,11,4,1,2663,2676183,1827872.3,414503.31,0,3610.3616 -8893,10955,19795,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.8953023,7.9678984,0,0,0,-942.25446,0,2,-9,2019,5,0,37,37,1,0,0,9.2903919,9.2903919,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,1002,-972.69342,0,0,0,1286.9524 -8894,10956,19796,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,6.905416,6.6178751,0,0,0,-915.12421,0,3,-9,2019,12,1,16,16,1,1,0,7.1501036,7.1501036,0,0,0,0,71.5,1,0,1,0,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,1,10,13,2,0,4322,241943.95,-46943.215,0,0,1308.5286 -8895,10957,19797,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,4.3330154,4.6067705,0,0,-1102.5149,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7442508,4.3487544,43.24,34.35,-9,-9,5,1,1,0,1,0,7,2,0,1167,468324.84,18710.375,301309.78,0,1409.3715 -8896,10958,19798,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,7.3535419,6.8474817,0,0,-984.55524,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2421784,46.87,27.31,-9,-9,5,1,1,0,0,0,2,3,1,504,336219.78,321419,38957.867,0,1680.0814 -8897,10959,19799,19800,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,0,0,45,-8,47.467026,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7065191,0,55.9,51.29,63.48,51.85,8.333333333333334,1,1,0,0,0,2,4,1,1354,2926259.5,1911851.9,137560.34,0,4863.4556 -8897,10959,19800,19799,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.6051483,8.3669367,45,8,-33.417843,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,.75623882,0,1,1,0,7.4691458,8.5012836,63.48,51.85,55.9,51.29,1.666666666666667,1,1,0,0,0,2,4,1,1354,2926259.5,1911851.9,137560.34,0,4863.4556 -8898,10960,19801,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,1,0,7.6809278,7.9407897,0,0,-946.9054,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,2.0501962,0,0,0,1,1,0,3.5356779,7.9688559,55.37,16.9,-9,-9,5,1,1,0,0,0,11,4,1,942,874760.25,568511.81,220884.84,0,2053.3342 -8899,10961,19802,19804,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,6.9586267,8.2714891,7.7020431,14,0,25.148743,0,2,2,2019,10,0,40,40,1,0,0,3.1226995,3.1226995,0,0,0,0,0,1,1,0,8.4937353,0,51.48,56.13,35.95,61.84,8.333333333333334,1,1,0,0,10,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 -8899,10961,19803,-9,19804,19802,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1085.0426,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 -8899,10961,19804,19802,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.6738358,8.6587572,0,14,0,-70.299957,0,1,2,2019,8,0,50,47,1,0,0,10.138465,10.138465,0,0,0,0,0,1,1,0,0,0,35.95,61.84,51.48,56.13,8.333333333333334,1,1,0,0,12,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 -8899,10961,19805,-9,19804,19802,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.32184,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1188,162958.56,19425.16,141372.84,89945.719,5507.7188 -8900,10962,19806,19807,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4416904,8.5873356,0,8,6,-71.45945,0,-9,-9,2019,7,0,54,45,1,0,0,10.835244,10.835244,0,0,0,0,0,0,0,0,0,0,58.32,50.22,52.5,51.97,1.666666666666667,1,1,0,0,9,4,5,1,566.5,335326.78,120053.78,158298.31,29854.6,3303.0806 -8900,10962,19807,19806,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6262674,7.6968784,0,8,-6,-21.75733,0,3,3,2019,6,0,39,39,1,0,0,7.3788557,7.3788557,0,0,0,0,7,0,0,0,2.1011841,0,52.5,51.97,58.32,50.22,1.666666666666667,1,1,0,0,9,4,5,1,566.5,335326.78,120053.78,158298.31,29854.6,3303.0806 -8900,10963,19808,-9,19807,19806,1,0,31,0,0,0,3,3,-9,0,3,7.4629045,7.58567,0,0,0,-1036.6603,0,3,2,2019,18,6,56,35,1,6,1,4.5816207,4.5816207,0,0,0,0,0,0,0,0,0,0,34.52,48.98,-9,-9,5,1,1,0,0,9,4,3,1,453,-312613.59,90853.063,0,0,384.46048 -8900,10964,19809,-9,19807,19806,1,1,26,0,0,0,2,2,-9,0,4,8.0829039,8.1045189,0,0,0,-981.55896,0,3,2,2019,8,0,54,40,1,0,1,8.0281963,8.0281963,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,5,4,4,1,1149,293974.56,0,0,0,693.88257 -8901,10965,19810,19811,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,7.7194977,7.5540719,0,4,4,105.42963,0,2,2,2019,9,2,30,30,1,2,0,7.8588796,7.8588796,0,0,0,0,0,0,0,0,0,0,51.14,60.45,64.21000000000001,31.14,10,1,1,0,0,6,6,4,1,890,-121024.58,93528.219,147050.89,88685.875,2921.3879 -8901,10965,19811,19810,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.2642221,8.2007561,0,4,-4,-38.596043,0,-9,-9,2019,6,0,36,41,1,0,0,14.271001,14.271001,0,0,0,0,0,0,0,0,0,0,64.21000000000001,31.14,51.14,60.45,8.333333333333334,1,1,0,0,7,6,4,1,890,-121024.58,93528.219,147050.89,88685.875,2921.3879 -8902,10966,19812,19813,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.0829926,7.8359623,0,7,0,-102.97778,0,-9,-9,2019,6,0,60,50,1,0,0,7.6839905,7.6839905,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,9,4,5,1,572.5,945886.81,706871.25,187184.16,35004.773,3997.6641 -8902,10966,19813,19812,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.9757719,8.7974157,0,29,0,-39.311043,0,2,3,2019,9,0,107,50,1,0,0,6.3392973,6.3392973,0,0,0,0,0,0,0,0,0,0,57.73,54.53,57.16,56.15,1.666666666666667,1,1,0,0,9,4,5,1,572.5,945886.81,706871.25,187184.16,35004.773,3997.6641 -8903,10967,19814,19815,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.9232178,7.1843138,6,0,189.97279,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,7.9961171,7.2244792,58.15,52.91,59.06,32.53,10,1,1,0,0,0,5,4,1,776.5,896097.88,648643.81,139926.19,0,6984.5171 -8903,10967,19815,19814,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,8.317831,8.5024042,6,0,43.035339,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,7.8167953,8.3740225,59.06,32.53,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,776.5,896097.88,648643.81,139926.19,0,6984.5171 -8904,10968,19816,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.7554083,8.8162956,0,0,0,-962.39325,0,2,2,2019,19,7,50,45,1,7,0,17.840458,17.840458,0,0,0,0,7,0,0,0,5.8023906,0,52.48,50.07,-9,-9,8.333333333333334,1,1,0,0,10,6,5,0,714,-149802.17,190305.88,100067.56,108594.37,2445.604 -8905,10969,19817,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1006.9697,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,10,1,1,0,0,0,11,1,1,269,130255.37,0,0,0,816.2453 -8906,10970,19818,19819,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,8.2926559,8.4876776,0,7,1,-9.5954533,0,2,2,2019,33,12,40,0,1,12,0,13.422103,13.422103,0,0,0,0,0,0,0,0,0,0,14.79,62.78,35.31,54.01,1.666666666666667,1,1,0,0,9,2,5,0,815,42477.883,43664.762,218721.31,55902.547,4332.6592 -8906,10970,19819,19818,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.75315,8.86063,0,7,-1,-3.5537577,0,2,2,2019,16,5,44,43,1,5,0,18.141151,18.141151,0,0,0,0,0,0,0,0,3.7962396,0,35.31,54.01,14.79,62.78,6.666666666666667,1,1,0,0,9,2,5,0,815,42477.883,43664.762,218721.31,55902.547,4332.6592 -8907,10971,19820,-9,-9,-9,1,0,18,0,1,0,2,2,-9,0,4,6.5927196,6.3627191,0,0,0,-996.31433,0,2,2,2019,6,0,29,0,1,0,1,2.7185936,2.7185936,0,0,0,0,0,1,1,0,4.9391246,0,57.42,46.51,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,1570,385327.59,0,0,0,637.26398 -8908,10972,19821,19822,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.0387583,8.2980909,2.9009433,34,-3,-103.66668,0,3,2,2019,7,0,44,44,1,0,0,9.7957516,9.7957516,0,0,0,0,0,1,1,0,0,3.2800663,48.98,57.22,57.06,57.76,8.333333333333334,1,1,0,0,9,7,5,1,783.5,5445663,1401490.3,1967745.3,0,5723.5771 -8908,10972,19822,19821,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,8.2093515,8.8793344,6.956923,34,3,30.064051,0,2,2,2019,5,0,42,35,1,0,0,11.0124,11.0124,0,0,0,0,0,1,1,0,3.2763548,7.2534003,57.06,57.76,48.98,57.22,10,1,1,0,0,9,7,5,1,783.5,5445663,1401490.3,1967745.3,0,5723.5771 -8909,10973,19823,-9,19824,19825,1,1,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-964.74359,-9,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,1,0,0,12,4,0,459.33334,773832.19,360878.63,202613.48,-1935.7771,2186.4656 -8909,10973,19824,19825,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.7497005,8.2070351,0,22,-8,40.643291,0,3,2,2019,12,0,60,45,1,0,0,10.53675,10.53675,0,0,0,0,0,0,0,0,0,0,57.16,48.27,52,55,8.333333333333334,1,1,0,0,11,12,4,0,459.33334,773832.19,360878.63,202613.48,-1935.7771,2186.4656 -8909,10973,19825,19824,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,5.6139646,5.443912,0,24,8,-35.096531,0,-9,-9,2019,9,0,40,35,1,1,0,.73867989,.73867989,0,0,0,0,0,0,0,0,0,0,52,55,57.16,48.27,8,1,1,0,0,1,12,4,0,459.33334,773832.19,360878.63,202613.48,-1935.7771,2186.4656 -8909,10974,19826,-9,19824,19825,1,0,19,0,0,0,2,2,1,0,4,6.6390696,6.4291859,0,0,0,-739.34125,-9,2,1,2019,12,0,14,0,1,2,1,6.5660987,6.5660987,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,1,12,2,0,512,328122.78,0,0,0,479.54092 -8910,10975,19827,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3246565,8.7765188,0,0,0,-955.70819,0,2,2,2019,11,0,36,36,1,0,0,14.664664,14.664664,0,0,0,0,0,0,0,0,5.5159163,0,44.43,56.74,-9,-9,6.666666666666667,3,4,0,0,9,8,4,1,312,2934307.5,0,1738526.8,0,1802.8453 -8911,10976,19828,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,0,0,0,0,0,-881.43921,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.69,41.09,-9,-9,5,1,1,0,1,0,5,1,0,1226.3334,83985.664,0,0,0,1514.6948 -8911,10976,19829,-9,19828,-9,1,1,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4203,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,1,0,1226.3334,83985.664,0,0,0,1514.6948 -8911,10976,19830,-9,19828,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.33356,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,1226.3334,83985.664,0,0,0,1514.6948 -8912,10977,19831,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.1254387,8.1735258,6.8563561,0,0,-1025.4768,0,-9,-9,2019,8,0,70,60,1,0,0,4.0745993,4.0745993,1,0,0,0,0,1,1,0,6.7571921,7.0384035,50.65,53.71,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,281,296185.66,-65961.758,0,0,2652.834 -8913,10978,19832,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9436798,8.1433191,0,0,0,-1017.7335,-9,2,3,2019,23,11,33,0,1,11,0,9.502367,9.502367,0,0,0,0,0,0,0,0,2.124979,0,26.76,53.94,-9,-9,3.333333333333333,3,4,0,0,10,8,4,0,574,435215.06,21479.449,0,0,1097.5425 -8914,10979,19833,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,6.2824001,6.3784223,0,0,-900.78058,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.3986759,52.18,43.42,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,993,-22199.846,142326.42,0,0,1302.8058 -8915,10980,19834,19835,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.9871025,8.2162027,0,4,3,87.356461,0,-9,-9,2019,13,2,25,8,1,2,0,15.619891,15.619891,0,0,0,0,0,0,0,0,0,0,44.01,54.41,32.08,47.89,6.666666666666667,1,1,0,0,3,11,5,1,559.5,509450.13,462603.31,73634.813,76029.188,3556.8398 -8915,10980,19835,19834,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,8.4949598,8.3352137,0,4,-3,30.448671,0,2,2,2019,23,11,37,40,1,11,0,17.959152,17.959152,0,0,0,0,0,0,0,0,0,0,32.08,47.89,44.01,54.41,3.333333333333333,1,1,0,0,7,11,5,1,559.5,509450.13,462603.31,73634.813,76029.188,3556.8398 -8916,10981,19836,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,5.7066641,5.8104677,0,0,0,-1013.0325,0,2,2,2019,23,10,20,20,1,10,0,1.913389,1.913389,0,0,0,0,0,0,0,0,1.9146729,0,38.42,52.33,-9,-9,0,2,3,0,1,7,8,2,0,838,-21561.66,18339.594,0,0,64.568352 -8917,10982,19837,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.4114914,8.1506605,0,0,0,-997.24011,0,2,3,2019,14,3,44,46,1,3,0,13.096884,13.096884,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,3.333333333333333,3,4,0,1,11,9,5,1,1100,331451.69,-16112.748,0,0,2060.48 -8918,10983,19838,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.449439,7.0323648,0,0,0,-997.59973,0,2,2,2019,9,0,23,22,1,0,0,8.0502005,8.0502005,0,0,0,0,0,0,0,0,0,0,50.96,53.58,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,1325,600746.38,11378.356,180592.27,83289.211,578.66333 -8919,10984,19839,19840,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.6876993,8.7402267,6.6090093,7,-4,55.141048,0,1,2,2019,13,1,46,46,1,1,0,16.757648,16.757648,0,0,0,0,0,0,0,0,7.0307016,0,51.71,58.83,41.15,48.96,8.333333333333334,1,1,0,0,9,9,5,1,918,396527.69,176436.06,550569.75,355082.31,5058.8394 -8919,10984,19840,19839,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.837923,8.7805862,0,7,4,50.863411,0,-9,-9,2019,12,2,38,38,1,2,0,15.507096,15.507096,0,0,0,0,0,0,0,0,0,0,41.15,48.96,51.71,58.83,8.333333333333334,1,1,0,0,6,9,5,1,918,396527.69,176436.06,550569.75,355082.31,5058.8394 -8920,10985,19841,19842,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.5550141,6.6610775,6,-5,-65.611542,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.2914357,6.59618,36.92,51.87,41.69,48.36,6.666666666666667,1,1,0,0,0,4,2,1,458.5,848179.5,227414.61,232818.33,0,1914.6451 -8920,10985,19842,19841,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.8900952,6.7470684,6,5,55.470787,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.6019602,6.6123633,41.69,48.36,36.92,51.87,3.333333333333333,1,1,0,0,0,4,2,1,458.5,848179.5,227414.61,232818.33,0,1914.6451 -8921,10986,19843,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.3675637,5.482543,0,0,-1033.5574,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5656514,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,170,250717.27,71772.422,186187.11,0,125.18661 -8922,10987,19844,19845,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.5329781,8.310276,0,5,-11,-64.842751,0,2,2,2019,11,0,40,45,1,0,0,13.599548,13.599548,0,0,0,0,0,0,0,0,1.6814497,0,54.2,57.49,52.82,53.97,6.666666666666667,1,1,0,0,9,5,5,1,534,1448055.4,1363380.3,237316.75,118776.05,3567.8765 -8922,10987,19845,19844,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,8.4286633,8.4100657,0,5,11,-51.087139,0,3,2,2019,8,0,37,37,1,0,0,14.124469,14.124469,0,0,0,0,0,0,0,0,1.8430278,0,52.82,53.97,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,534,1448055.4,1363380.3,237316.75,118776.05,3567.8765 -8923,10988,19846,19847,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.0769548,7.294456,0,1,11,-12.696906,0,3,3,2019,12,0,20,24,1,0,0,7.5646143,7.5646143,0,0,0,0,0,1,0,1,0,0,48.28,53.42,52.8,40.58,8.333333333333334,1,1,0,0,8,13,3,0,1294,-174398.13,58984.395,0,0,1239.255 -8923,10988,19847,19846,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.6966739,7.4510021,0,1,-11,-76.31485,-9,-9,-9,2019,7,0,37,0,1,0,0,5.828723,5.828723,0,0,0,0,0,1,0,1,0,0,52.8,40.58,48.28,53.42,10,1,1,0,0,0,13,3,0,1294,-174398.13,58984.395,0,0,1239.255 -8924,10989,19848,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.3753576,7.0746799,0,0,-974.4118,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1270604,61.28,28.21,-9,-9,8.333333333333334,3,4,0,0,2,8,3,0,81,2189828,196641.92,2020245.5,0,1503.6987 -8925,10990,19849,19850,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.691359,6.6655464,0,44,-2,-13.341947,0,2,2,2019,11,0,6,7,1,0,0,18.182972,18.182972,0,0,0,0,0,1,1,0,0,0,49.43,44.66,55.65,41.83,6.666666666666667,1,1,0,0,11,2,3,1,343,1733225.1,1346015.3,120774.11,0,2493.3904 -8925,10990,19850,19849,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3119497,7.2712393,44,2,60.25132,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1626248,55.65,41.83,49.43,44.66,8.333333333333334,1,1,0,0,2,2,3,1,343,1733225.1,1346015.3,120774.11,0,2493.3904 -8926,10991,19851,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.275979,7.589294,0,0,0,-1080.9274,0,2,1,2019,11,1,30,22,1,1,0,4.9669037,4.9669037,0,0,0,0,0,0,0,0,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,6,6,3,1,2845,79013.234,42818.848,0,0,1262.1077 -8927,10992,19852,-9,19853,-9,1,0,40,0,0,0,3,3,-9,0,5,0,0,0,0,0,-934.77789,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,1612,-379494.28,0,0,0,325.85684 -8927,10993,19853,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-942.96606,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,141,440657.72,0,389230.03,0,1366.798 -8928,10994,19854,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,7.5556374,7.7949619,0,0,-913.04932,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.0377216,7.2417469,42.42,36.32,-9,-9,6.666666666666667,1,1,0,0,6,7,3,1,546,223311.58,166757.08,142882.88,-975.03766,1117.3986 -8929,10995,19855,19856,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,5.7822547,5.8491983,57,2,-8.9929152,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.381609,5.7090344,47.14,31,53.87,18.77,8.333333333333334,1,1,0,0,0,2,2,1,810.5,40160.922,82192.391,0,0,2196.7739 -8929,10995,19856,19855,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.2215362,6.3857322,57,-2,141.51579,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,4.7334523,0,0,1,1,0,2.0059252,6.0591874,53.87,18.77,47.14,31,6.666666666666667,1,1,0,0,0,2,2,1,810.5,40160.922,82192.391,0,0,2196.7739 -8930,10996,19857,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7587924,7.9048357,0,0,0,-999.59546,0,3,2,2019,5,0,25,27,1,0,0,10.650322,10.650322,0,0,0,0,0,0,0,0,2.4650035,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,87,288272.94,0,175395.08,0,846.31079 -8931,10997,19858,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1089.0085,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,5.0999994,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,1,0,544,48328.883,0,0,0,718.40161 -8932,10998,19859,-9,-9,-9,1,0,39,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1084.7993,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,22.3,36.08,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,712,-152583.88,0,0,0,1588.6501 -8932,10998,19860,-9,19859,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.01477,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,712,-152583.88,0,0,0,1588.6501 -8933,10999,19861,19862,-9,-9,1,0,31,0,2,0,1,1,-9,0,4,7.8607531,7.4863253,0,7,-6,-51.484093,0,2,2,2019,21,9,24,17,1,9,0,9.0101318,9.0101318,0,0,0,0,0,1,1,0,0,0,38.69,61.75,46.63,59.72,6.666666666666667,1,1,0,0,5,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 -8933,10999,19862,19861,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.7982321,8.8072119,0,7,6,-73.349174,0,1,1,2019,7,0,37,44,1,0,0,17.339729,17.339729,0,0,0,0,0,1,1,0,0,0,46.63,59.72,38.69,61.75,1.666666666666667,1,1,0,0,9,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 -8933,10999,19863,-9,19861,19862,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.6417,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 -8933,10999,19864,-9,19861,19862,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.12976,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,887.25,238945.97,115105.44,349591.69,150270.17,3813.0327 -8934,11000,19865,-9,19867,19868,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-904.98541,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,5,1,0,3595,-93457.961,0,0,0,0 -8934,11001,19866,-9,19867,19868,1,1,21,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1066.2299,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,5,1,0,225,184816.91,0,0,0,1277.8999 -8934,11002,19867,19868,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,5.9631915,6.6295376,5.9449201,6,0,88.202507,0,-9,-9,2019,13,1,6,8,1,1,0,7.5213704,7.5213704,0,0,0,0,120,1,1,0,6.6067319,0,38.16,44.66,54,53,10,1,1,0,0,4,5,4,0,532,242048.7,36407.34,222472.98,0,2891.6211 -8934,11002,19868,19867,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.4447556,8.3340607,0,6,9,14.809898,-9,-9,-9,2019,9,0,40,0,1,1,0,11.757854,11.757854,0,0,0,0,0,1,1,0,0,0,54,53,38.16,44.66,8,1,1,0,0,1,5,4,0,532,242048.7,36407.34,222472.98,0,2891.6211 -8935,11003,19869,-9,19871,19873,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.2746,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 -8935,11003,19870,-9,19871,19873,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.2158,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 -8935,11003,19871,19873,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,6.8710203,7.0516868,0,5,-10,35.984093,0,-9,-9,2019,10,0,16,16,1,1,0,6.551496,6.551496,0,0,0,0,0,1,1,0,0,0,49,56,54.2,57.49,8,1,1,0,0,1,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 -8935,11003,19872,-9,19871,19873,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.89795,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 -8935,11003,19873,19871,-9,-9,1,1,49,0,3,0,3,3,-9,0,4,8.0446157,7.8824444,0,5,10,70.997475,0,3,2,2019,7,0,45,48,1,0,0,10.122157,10.122157,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49,56,8.333333333333334,1,1,0,0,9,4,3,0,879.59998,132482.17,6588.0205,113030.91,63618.117,2808.6765 -8935,11004,19874,-9,19871,19873,1,1,18,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1008.2081,1,2,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.15144065,0,48,59,-9,-9,7,1,1,0,0,0,4,2,0,793,102277.93,0,0,0,-284.14563 -8936,11005,19875,19876,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.5576091,6.8079629,7,0,1.4832127,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7238345,6.8582125,57.06,57.76,56.79,38.59,10,1,1,0,0,0,11,3,1,707,1038626.2,854956.88,263691.97,27051.301,3904.583 -8936,11005,19876,19875,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.9378791,7.3020186,7,0,57.566135,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.7881513,7.4496684,56.79,38.59,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,707,1038626.2,854956.88,263691.97,27051.301,3904.583 -8937,11006,19877,19878,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9003892,7.8956389,0,11,-3,-20.313187,0,2,2,2019,15,4,37,37,1,4,0,10.033368,10.033368,0,0,0,0,7,0,0,0,4.1982822,0,38.34,54.24,54.69,57.47,6.666666666666667,1,1,0,0,9,2,5,1,566.5,187982.27,138597.42,0,0,3398.0554 -8937,11006,19878,19877,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.6064329,8.6954222,0,11,3,-11.618973,0,2,1,2019,6,0,37,37,1,0,0,16.37018,16.37018,0,0,0,0,7,0,0,0,4.2359333,0,54.69,57.47,38.34,54.24,8.333333333333334,1,1,0,0,8,2,5,1,566.5,187982.27,138597.42,0,0,3398.0554 -8938,11007,19879,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,7.2911749,7.0666623,0,0,-897.76044,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.1149349,35.39,22.01,-9,-9,1.666666666666667,1,1,0,0,3,5,3,1,487,234697.11,213991.28,224912.38,26963.473,1496.0417 -8939,11008,19880,-9,19881,19882,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-872.44214,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 -8939,11008,19881,19882,-9,-9,1,0,38,0,3,0,2,2,-9,0,1,0,0,0,8,3,-63.454487,0,-9,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.48,36.83,38.92,56.08,5,1,1,0,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 -8939,11008,19882,19881,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,8.310194,8.4599829,0,8,-3,171.41969,0,2,3,2019,10,0,48,48,1,1,0,10.693946,10.693946,0,0,0,0,0,1,1,0,0,0,38.92,56.08,32.48,36.83,8.333333333333334,1,1,0,0,12,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 -8939,11008,19883,-9,19881,-9,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1007.2907,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 -8939,11008,19884,-9,19881,19882,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.829,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,621.79999,-47811.133,81632.711,0,0,2913.6216 -8939,11009,19885,-9,19881,-9,1,0,18,0,3,0,2,2,-9,0,3,0,0,0,0,0,-985.40265,1,2,-9,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,32.68,51.25,-9,-9,5,1,1,0,1,0,4,1,0,589,-241787.75,0,0,0,0 -8940,11010,19886,19887,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.1128044,8.0640106,0,4,-1,46.571396,0,-9,-9,2019,14,3,32,31,1,3,0,10.577271,10.577271,0,0,0,0,0,0,0,0,2.9599612,0,53.39,49.67,51.83,57.2,3.333333333333333,1,1,0,0,8,6,5,1,726,45917.656,-9509.1768,0,0,3259.75 -8940,11010,19887,19886,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.5271635,8.7409611,0,4,1,-27.575907,0,-9,-9,2019,8,0,35,35,1,0,0,19.003691,19.003691,0,0,0,0,0,0,0,0,2.4828422,0,51.83,57.2,53.39,49.67,8.333333333333334,1,1,0,0,4,6,5,1,726,45917.656,-9509.1768,0,0,3259.75 -8941,11011,19888,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,8.2940331,8.2927494,0,0,-1072.484,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,.78839749,8.4825878,62.49,55.09,-9,-9,10,1,1,0,0,9,4,4,1,625,1139390.5,12548.563,586629.75,0,1724.8438 -8942,11012,19889,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.1585665,7.6682506,0,0,-1108.6621,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.227531,7.1453347,46,36,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,612,-107384.45,246946.34,0,0,991.02826 -8943,11013,19890,19891,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.8462901,7.9246974,10,8,83.591301,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.797657,7.712532,50.34,56.4,45,38,8.333333333333334,1,1,0,0,3,6,3,1,1944,710398.75,265747.75,218942.06,0,2557.1382 -8943,11013,19891,19890,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,6.0360084,5.8600636,0,10,-8,-65.641968,-9,-9,-9,2019,14,3,8,0,1,3,0,5.6842127,5.6842127,0,0,0,0,0,1,1,0,5.1898084,0,45,38,50.34,56.4,8.333333333333334,1,1,0,0,13,6,3,1,1944,710398.75,265747.75,218942.06,0,2557.1382 -8944,11014,19892,19893,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,6.3609056,6.1418681,0,34,-6,-6.6207085,0,-9,2,2019,7,0,6,6,1,0,0,10.072269,10.072269,0,0,0,0,2,1,1,0,0,0,57.91,30.25,43.19,27.87,8.333333333333334,1,1,0,0,12,8,3,0,567.5,670168.13,201845.67,478919,0,1427.1447 -8944,11014,19893,19892,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,7.9905338,8.2251396,0,36,6,-110.34267,0,3,3,2019,7,0,43,43,1,0,0,8.6029272,8.6029272,0,0,0,0,2,1,1,0,0,0,43.19,27.87,57.91,30.25,6.666666666666667,1,1,0,0,12,8,3,0,567.5,670168.13,201845.67,478919,0,1427.1447 -8945,11015,19894,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,6.3341899,6.2136598,0,0,-1015.6268,0,1,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.2572484,6.1937213,51,32.01,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,1397,490127.25,22991.039,271137.28,0,567.86505 -8946,11016,19895,19896,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,8,-12,0,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,41.6,23.15,37.65,27.39,1.666666666666667,1,1,0,0,0,4,1,0,868,116794.1,0,0,0,2742.3252 -8946,11016,19896,19895,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,8,12,0,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,37.65,27.39,41.6,23.15,5,1,1,0,0,0,4,1,0,868,116794.1,0,0,0,2742.3252 -8947,11017,19897,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.3107085,7.0904317,0,0,-969.22864,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,6.2353501,0,0,1,1,0,7.3993034,7.0997963,54.62,32.87,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1139,-33432.641,40148.945,37482.043,0,919.36206 -8948,11018,19898,19899,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,18,-5,-12.753738,0,-9,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,23.61,57.06,57.76,6.666666666666667,1,1,0,0,9,12,3,1,202.5,1293430.3,642446.38,358105.38,0,2765.3193 -8948,11018,19899,19898,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.9547138,7.9370885,7.259563,18,5,-59.770332,0,2,2,2019,5,0,24,47,1,0,0,12.998443,12.998443,0,0,0,0,0,1,1,0,0,7.3133941,57.06,57.76,43.1,23.61,0,1,1,0,0,10,12,3,1,202.5,1293430.3,642446.38,358105.38,0,2765.3193 -8949,11019,19900,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8134842,8.8649769,0,0,0,-941.24969,0,1,1,2019,7,0,38,37,1,0,0,19.067133,19.067133,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,606,231645.47,8189.938,159920.05,86304.773,2397.3801 -8950,11020,19901,-9,19902,19904,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.22736,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 -8950,11020,19902,19904,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,0,0,0,8,-4,39.277939,1,2,2,2019,19,6,0,22,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.95,44.9,38.1,55.36,1.666666666666667,1,1,0,1,2,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 -8950,11020,19903,-9,19902,19904,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.39868,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 -8950,11020,19904,19902,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.6010036,9.4623871,0,8,4,54.37912,0,-9,-9,2019,10,0,50,60,1,0,0,32.865791,32.865791,0,0,0,0,0,1,1,0,0,0,38.1,55.36,37.95,44.9,5,1,1,0,0,7,9,5,0,1088.25,596680.44,224889.28,441062.53,162119.47,3820.7573 -8951,11021,19905,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-953.3916,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,54,-9,-9,8,1,1,0,0,0,13,1,0,475,-83963.516,0,0,0,921.22827 -8951,11022,19906,-9,19905,-9,1,0,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-960.19971,0,3,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,27,1,1,0,0,0,29.65,28.9,-9,-9,1.666666666666667,1,1,0,0,6,13,1,0,1529,0,0,0,0,885.12714 -8951,11023,19907,-9,19905,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1017.5291,0,3,-9,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,27,1,1,0,0,0,17.53,41.05,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,151,-262115.97,0,0,0,294.56702 -8952,11024,19908,19909,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.1138039,8.1239834,0,5,-1,195.6059,0,2,2,2019,15,3,37,38,1,3,0,9.7018232,9.7018232,0,0,0,0,0,0,0,0,0,0,27.61,57.58,57.33,53.46,6.666666666666667,1,1,0,0,7,13,5,1,934,10326.258,1707.4824,160437.83,110950.72,3095.4727 -8952,11024,19909,19908,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.2362452,8.2108889,0,5,1,58.854576,-9,-9,-9,2019,6,0,52,0,1,0,0,10.977546,10.977546,0,0,0,0,0,0,0,0,0,0,57.33,53.46,27.61,57.58,8.333333333333334,1,1,0,0,9,13,5,1,934,10326.258,1707.4824,160437.83,110950.72,3095.4727 -8953,11025,19910,19911,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.6137495,8.5967569,0,38,-4,9.8169746,0,3,3,2019,7,0,44,45,1,0,0,10.685184,10.685184,0,0,0,0,0,1,1,0,2.0303528,0,57.9,51.84,57.16,56.15,8.333333333333334,1,1,0,0,8,10,4,1,1064.5,1400471.5,1023902.8,248512.25,0,2700.1157 -8953,11025,19911,19910,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,3.8502502,3.9124799,35,4,-99.137711,0,2,1,2019,2,0,0,21,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7226868,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,8,10,4,1,1064.5,1400471.5,1023902.8,248512.25,0,2700.1157 -8954,11026,19912,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,6.4991503,6.9997983,0,0,-1015.713,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,.22587655,0,0,1,1,0,0,6.806334,51.74,13.1,-9,-9,5,1,1,0,0,0,13,2,1,376,20665.502,191943.14,0,0,2352.8308 -8955,11027,19913,19914,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,5.4256811,5.4972744,8,-8,29.08873,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8756318,5.7543859,61.12,51.57,59.88,45.37,8.333333333333334,1,1,0,0,2,10,2,1,383,660766.56,164557.33,331544.09,0,423.63953 -8955,11027,19914,19913,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.245276,5.5720859,8,8,-87.255798,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0923204,5.6587625,59.88,45.37,61.12,51.57,8.333333333333334,1,1,0,0,0,10,2,1,383,660766.56,164557.33,331544.09,0,423.63953 -8956,11028,19915,19918,-9,-9,1,1,40,0,4,0,2,2,-9,0,4,8.1984863,8.0351439,0,9,3,28.522594,0,-9,-9,2019,10,0,60,55,1,1,0,6.8659143,6.8659143,0,0,0,0,0,1,0,1,0,0,50,57,41.74,27.13,7,1,1,0,0,1,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 -8956,11028,19916,-9,19918,19915,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-954.75757,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 -8956,11028,19917,-9,19918,19915,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-967.30536,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 -8956,11028,19918,19915,-9,-9,1,0,37,0,4,0,2,2,-9,0,1,0,0,0,9,-3,-88.918808,0,2,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,7,1,0,1,0,0,41.74,27.13,50,57,3.333333333333333,1,1,0,1,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 -8956,11028,19919,-9,19918,19915,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1032.8021,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.0855272,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 -8956,11028,19920,-9,19918,19915,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-790.87286,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,849.5,661159.56,107771.54,590717.81,0,2810.7725 -8957,11029,19921,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1699057,8.0132875,0,0,0,-963.77631,0,-9,-9,2019,13,1,37,37,1,1,0,11.113819,11.113819,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,10,10,4,0,614,267111.31,78074.273,114062.51,0,1245.5145 -8957,11030,19922,-9,19921,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1054.9946,0,2,-9,2019,21,8,0,20,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,7.100000000000001,72.46000000000001,-9,-9,1.666666666666667,1,1,1,0,2,10,1,0,765,76722.555,0,0,0,0 -8957,11031,19923,-9,19921,-9,1,0,21,0,0,0,2,2,-9,0,3,7.8719625,7.7771988,0,0,0,-942.05615,0,3,-9,2019,12,0,40,42,1,0,1,8.0809002,8.0809002,0,0,0,0,0,0,0,0,0,0,46.73,46.3,-9,-9,5,1,1,0,0,5,10,3,0,309,-13732.245,-3647.2107,0,0,774.68341 -8958,11032,19924,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.5096474,8.514369,0,0,0,-994.40302,0,-9,-9,2019,12,0,42,42,1,0,0,16.922762,16.922762,0,0,0,0,0,0,0,0,3.990921,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,1703,152398.22,45886.703,0,0,1602.3109 -8959,11033,19925,19926,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.7749157,7.4315901,7,-3,55.593323,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7951741,7.5054669,56.92,49.39,58.23,43.46,10,1,1,0,0,0,6,3,1,541,1098757.3,468202.72,275600,0,4581.5698 -8959,11033,19926,19925,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4549537,7.4009423,7,3,-147.01665,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8688569,7.6597652,58.23,43.46,56.92,49.39,8.333333333333334,1,1,0,0,0,6,3,1,541,1098757.3,468202.72,275600,0,4581.5698 -8960,11034,19927,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.5484109,7.3994827,0,0,0,-1055.6771,0,2,2,2019,11,0,23,15,1,0,0,7.3013735,7.3013735,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,1105,276298.66,210505.06,224780.25,98929.516,1696.6799 -8960,11034,19928,-9,19927,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.7546,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1105,276298.66,210505.06,224780.25,98929.516,1696.6799 -8961,11035,19929,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.6006703,5.6514339,0,0,-1021.6574,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,19.266846,0,0,1,1,0,0,5.3831019,53.63,20.04,-9,-9,5,1,1,0,0,0,5,2,1,213,-22011.209,148173.28,0,0,1413.3954 -8961,11036,19930,-9,19929,-9,1,0,43,0,0,0,3,3,-9,0,4,7.0210981,7.1021838,0,0,0,-1055.8716,0,3,-9,2019,12,2,20,39,1,2,0,7.5584254,7.5584254,0,0,0,0,27,1,1,0,0,0,39.23,60.15,-9,-9,6.666666666666667,1,1,0,0,11,5,3,1,449,-348132.69,5764.667,0,0,341.91708 -8962,11037,19931,-9,19935,19933,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-979.44739,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 -8962,11037,19932,-9,19935,19933,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-958.07367,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 -8962,11037,19933,19935,-9,-9,1,1,37,0,3,0,2,2,-9,0,5,7.85673,7.7936549,0,18,4,-107.55653,0,3,3,2019,8,0,40,40,1,0,0,6.090179,6.090179,0,0,0,0,0,1,1,0,0,0,54.1,59.11,60.12,54.8,6.666666666666667,1,1,0,0,12,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 -8962,11037,19934,-9,19935,19933,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1138.7805,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 -8962,11037,19935,19933,-9,-9,1,0,33,0,3,0,3,3,-9,0,4,7.2896986,7.4575043,0,18,-4,-62.966251,0,2,2,2019,6,0,20,20,1,0,0,8.0064592,8.0064592,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.1,59.11,6.666666666666667,1,1,0,0,3,12,3,1,665.20001,144338.55,16120.235,0,0,2462.1099 -8963,11038,19936,19937,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.1561403,8.334095,0,7,1,.83198053,0,-9,-9,2019,10,0,43,42,1,0,0,11.668161,11.668161,0,0,0,0,0,0,0,0,0,0,48.28,53.42,51.14,60.45,8.333333333333334,1,1,0,0,11,7,5,1,463.5,3375744,2889467.5,333105.81,0,4862.3652 -8963,11038,19937,19936,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.1494093,9.0728712,0,7,-1,94.962082,0,3,2,2019,7,0,48,44,1,0,0,25.778353,25.778353,0,0,0,0,0,0,0,0,7.6310229,0,51.14,60.45,48.28,53.42,8.333333333333334,1,1,0,0,11,7,5,1,463.5,3375744,2889467.5,333105.81,0,4862.3652 -8964,11039,19938,19939,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.4398174,4.8196759,7,0,-57.321575,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.4487367,4.5044713,49.41,58.28,57.33,53.46,10,1,1,0,0,0,7,3,1,224.5,2368678.3,586497.88,681473.38,0,1275.4551 -8964,11039,19939,19938,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.7607532,7.8770514,7,0,37.592594,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7084174,7.5013685,57.33,53.46,49.41,58.28,8.333333333333334,1,1,0,0,0,7,3,1,224.5,2368678.3,586497.88,681473.38,0,1275.4551 -8965,11040,19940,19941,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.4984875,8.4729195,0,18,-2,25.737711,0,1,1,2019,12,1,32,32,1,1,0,15.41026,15.41026,0,0,0,0,0,0,0,0,0,0,52.82,53.97,60.02,56.42,8.333333333333334,1,1,0,0,3,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 -8965,11040,19941,19940,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,7.8192148,7.724052,0,18,2,-105.13581,0,2,2,2019,11,0,50,55,1,0,0,4.2016768,4.2016768,0,0,0,0,0,0,0,0,9.634203,0,60.02,56.42,52.82,53.97,6.666666666666667,1,1,0,0,10,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 -8965,11040,19942,-9,19940,19941,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.28,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 -8965,11040,19943,-9,19940,19941,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.8259,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,612.75,230693.75,75984.148,278066.78,119619.3,10263.801 -8966,11041,19944,-9,19946,19945,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.9694,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,424,260852.89,75357.047,256227.7,126197.38,2617.5149 -8966,11041,19945,19946,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.0948305,8.1970396,0,1,-1,0,-9,-9,-9,2019,17,5,37,0,1,5,0,8.8618479,8.8618479,0,0,0,0,0,1,1,0,0,0,36.57,52.23,46.91,49.9,6.666666666666667,1,1,0,0,4,12,4,1,424,260852.89,75357.047,256227.7,126197.38,2617.5149 -8966,11041,19946,19945,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.1565113,7.6010308,0,14,1,0,-9,-9,-9,2019,11,0,40,0,1,0,0,11.652495,11.652495,0,0,0,0,0,1,1,0,0,0,46.91,49.9,36.57,52.23,8.333333333333334,1,1,0,0,9,12,4,1,424,260852.89,75357.047,256227.7,126197.38,2617.5149 -8966,11042,19947,-9,19946,19945,1,1,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1016.1608,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,480,-171576.97,0,0,0,0 -8967,11043,19948,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.758306,7.8942099,5.4336324,0,0,-1077.4413,0,3,2,2019,6,0,35,35,1,0,0,6.7871156,6.7871156,0,0,0,0,0,1,1,0,6.7142282,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,400,108637.75,0,0,0,1966.5801 -8967,11043,19949,-9,19948,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.65918,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,400,108637.75,0,0,0,1966.5801 -8968,11044,19950,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,1,8.2308083,8.2647114,0,0,0,-820.82471,0,2,3,2019,18,7,40,30,1,7,0,11.955388,11.955388,0,0,0,0,0,1,1,0,0,0,35.22,32.79,-9,-9,3.333333333333333,1,1,0,0,5,8,3,0,355,214489.31,0,0,0,1412.1284 -8968,11044,19951,-9,19950,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.86932,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,8,3,0,355,214489.31,0,0,0,1412.1284 -8969,11045,19952,19954,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.1564999,8.2290506,0,6,6,-20.621462,0,3,2,2019,9,0,48,47,1,0,0,8.561594,8.561594,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,290.33334,857862.13,680148.75,136364.36,0,2631.1838 -8969,11045,19953,-9,19954,19952,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.65619,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,290.33334,857862.13,680148.75,136364.36,0,2631.1838 -8969,11045,19954,19952,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9927859,8.0203838,0,6,-6,-53.372421,0,2,2,2019,8,2,30,36,1,2,0,12.83775,12.83775,0,0,0,0,0,1,1,0,0,0,54.2,57.49,58.32,50.22,5,1,1,0,0,7,11,4,1,290.33334,857862.13,680148.75,136364.36,0,2631.1838 -8970,11046,19955,19956,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,10,-5,28.678774,0,-9,-9,2019,11,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,57.06,57.76,8.333333333333334,1,1,1,0,3,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 -8970,11046,19956,19955,-9,-9,1,1,43,1,2,0,1,1,-9,0,5,9.0866461,9.5783157,0,10,5,-31.127542,0,2,1,2019,7,0,47,50,1,0,0,27.307844,27.307844,0,0,0,0,0,0,0,0,7.9398971,0,57.06,57.76,35.91,63.19,10,1,1,0,0,9,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 -8970,11046,19957,-9,19955,19956,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.70789,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 -8970,11046,19958,-9,19955,19956,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.73773,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1202750.8,549966.38,427365.28,127898.39,4780.0552 -8971,11047,19959,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.0988369,8.097084,0,0,0,-945.50653,0,3,2,2019,33,11,48,35,1,11,0,8.6513662,8.6513662,0,0,0,0,0,1,0,1,0,0,44.03,47.13,-9,-9,3.333333333333333,1,1,0,1,6,8,4,0,254,-22365.205,95403.141,0,0,1953.4399 -8971,11047,19960,-9,19959,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.037,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,0,254,-22365.205,95403.141,0,0,1953.4399 -8972,11048,19961,19962,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,46,-3,-99.334747,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1803854,0,51.84,51.67,48.48,54.62,8.333333333333334,1,1,0,0,0,9,2,1,1119,886432.25,480858.88,131174.91,0,2783.2109 -8972,11048,19962,19961,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.1981282,7.3371058,45,3,56.811134,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.798981,7.3887496,48.48,54.62,51.84,51.67,8.333333333333334,1,1,0,0,8,9,2,1,1119,886432.25,480858.88,131174.91,0,2783.2109 -8973,11049,19963,19964,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0583644,7.6798229,38,3,-1.8840914,0,2,2,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,74.5,1,1,0,7.4304314,4.06533,54.36,49.13,47.31,10.02,8.333333333333334,1,1,0,0,0,10,4,1,933,769614.5,522352.19,262239.16,46509.844,4010.6182 -8973,11049,19964,19963,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,7.8321643,8.2698965,38,-3,134.55055,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.260149,47.31,10.02,54.36,49.13,3.333333333333333,1,1,0,0,0,10,4,1,933,769614.5,522352.19,262239.16,46509.844,4010.6182 -8974,11050,19965,19966,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.918963,6.8382812,52,9,13.291556,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,14.512505,0,0,1,1,0,5.4747829,7.0819721,65.89,22.13,59.04,54.12,8.333333333333334,1,1,0,0,0,5,2,1,1147.5,335572.88,216436.44,164302.75,0,1734.0767 -8974,11050,19966,19965,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.8580074,6.8760319,52,0,55.964668,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.6822271,6.6524878,59.04,54.12,65.89,22.13,10,1,1,0,0,0,5,2,1,1147.5,335572.88,216436.44,164302.75,0,1734.0767 -8975,11051,19967,19968,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.9924245,8.1274776,0,9,-3,45.80183,0,2,3,2019,7,0,30,30,1,0,0,13.826541,13.826541,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,6,2,5,1,4450.3335,-24597.439,0,199466.36,38164.242,6978.3989 -8975,11051,19968,19967,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,9.5316935,9.6396151,0,9,3,11.160302,0,2,2,2019,8,0,60,70,1,0,0,33.056068,33.056068,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,10,2,5,1,4450.3335,-24597.439,0,199466.36,38164.242,6978.3989 -8975,11051,19969,-9,19967,19968,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1065.6575,-9,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,4450.3335,-24597.439,0,199466.36,38164.242,6978.3989 -8976,11052,19970,-9,-9,-9,1,0,62,0,2,0,3,3,-9,1,5,7.9405007,7.6090946,0,0,0,-1154.3492,0,3,3,2019,12,0,60,60,1,0,0,3.5986874,3.5986874,0,0,0,0,66,1,1,0,0,0,62.99,49.54,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,1674,374680.16,-45455.414,118679.63,0,4586.127 -8976,11053,19971,-9,19970,-9,1,1,38,0,2,0,2,2,-9,0,4,8.5039291,8.570426,6.2107401,0,0,-894.97485,0,3,-9,2019,10,0,20,16,1,1,1,27.277618,27.277618,0,0,0,0,0,1,1,0,8.5886812,6.4254608,51,56,-9,-9,7,1,1,0,0,1,2,5,1,1549,-188487.2,9465.5664,0,0,5768.562 -8977,11054,19972,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,6.3433967,6.344583,0,0,-975.52612,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.5486598,6.4768605,40.45,46.6,-9,-9,5,1,1,0,0,7,9,2,1,701,969825.5,8942.9941,400844.91,0,1102.6816 -8978,11055,19973,19974,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.6505833,8.7178726,0,7,1,29.563368,0,-9,-9,2019,9,0,45,37,1,0,0,16.505199,16.505199,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,5,12,4,1,865.5,50420.813,22831.313,0,0,2376.5046 -8978,11055,19974,19973,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,0,0,0,7,-1,-45.94297,0,2,2,2019,8,1,0,44,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,4,12,4,1,865.5,50420.813,22831.313,0,0,2376.5046 -8979,11056,19975,-9,19979,19978,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.22668,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 -8979,11056,19976,-9,19979,19978,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1005.1299,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.62,52.2,-9,-9,10,2,3,0,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 -8979,11056,19977,-9,19979,19978,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-959.87354,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 -8979,11056,19978,19979,-9,-9,1,1,68,0,3,0,2,2,-9,0,3,0,0,0,25,25,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.32,50.22,8.333333333333334,2,3,0,0,4,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 -8979,11056,19979,19978,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,25,-25,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.33,53.46,10,2,3,0,0,0,7,1,0,593.79999,-16072.783,0,0,0,1089.8795 -8979,11057,19980,-9,19979,19978,1,1,21,0,3,0,2,2,-9,0,4,8.4265308,8.3964062,0,0,0,-880.57892,0,2,2,2019,10,0,40,0,1,1,1,9.6503992,9.6503992,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,7,4,0,294,-108628.64,0,0,0,1787.4023 -8979,11058,19981,-9,19979,19978,1,0,19,0,3,0,2,2,1,0,3,0,0,0,0,0,-959.80811,-9,2,2,2019,13,0,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,37.94,57.43,-9,-9,6.666666666666667,2,3,1,0,0,7,1,0,627,-57867.137,0,0,0,832.96289 -8980,11059,19982,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.8931003,7.7885842,0,0,0,-897.664,0,3,3,2019,10,0,37,37,1,0,0,7.5977583,7.5977583,0,0,0,0,0,1,1,0,0,0,48.99,49.19,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,697,-409716.38,-5249.5962,0,0,1436.8364 -8981,11060,19983,19984,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,8,-4,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,0,1,2.5159497,0,42.35,36.31,55.2,49.4,5,1,1,0,0,0,2,2,0,613.5,221500.2,0,178456.06,0,1823.6506 -8981,11060,19984,19983,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,44,4,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55.2,49.4,42.35,36.31,10,1,1,0,0,0,2,2,0,613.5,221500.2,0,178456.06,0,1823.6506 -8981,11061,19985,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.7377448,7.6804533,0,0,0,-1008.4135,0,-9,-9,2019,11,2,40,40,1,2,0,7.8089361,7.8089361,0,0,0,0,0,1,0,1,2.6759899,0,38.55,48.59,-9,-9,6.666666666666667,1,1,0,0,3,2,3,0,641,27972.885,0,0,0,937.4209 -8981,11062,19986,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,4,6.1301122,6.0907373,0,0,0,-1034.9254,-9,-9,-9,2019,17,5,6,0,1,5,0,7.7817903,7.7817903,0,0,0,0,0,1,0,1,0,0,50.15,49.65,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,677,356168.81,0,0,0,199.57141 -8982,11063,19987,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.4909639,8.5025501,0,0,0,-1027.5601,0,3,3,2019,6,1,50,60,1,1,0,9.06458,9.06458,0,0,0,0,0,0,0,0,0,0,36.98,49.04,-9,-9,5,1,1,0,0,11,2,5,1,252,412611.31,154521.92,118423.91,0,1964.6975 -8983,11064,19988,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-936.7674,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.97,53.06,-9,-9,5,1,1,1,1,0,6,1,0,1142,-218854.48,0,0,0,618.56232 -8984,11065,19989,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.326,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.23999999999999,41.59,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,554,-124827.38,0,0,0,1331.677 -8985,11066,19990,19991,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.0608644,8.8028507,0,3,-1,-85.60125,0,1,2,2019,14,3,45,51,1,3,0,20.962515,20.962515,0,0,0,0,0,1,1,0,0,0,45.81,61.51,54,53,6.666666666666667,1,1,0,0,9,10,5,1,1190,2104443.3,1920155.8,318335.13,48151.625,4781.8638 -8985,11066,19991,19990,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1917486,7.9265375,0,3,1,14.396828,0,3,2,2019,9,0,30,35,1,1,0,15.025668,15.025668,0,0,0,0,0,1,1,0,3.7001982,0,54,53,45.81,61.51,8,1,1,0,0,1,10,5,1,1190,2104443.3,1920155.8,318335.13,48151.625,4781.8638 -8986,11067,19992,19993,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.3622475,8.7583866,0,39,-1,82.709892,0,3,2,2019,12,0,38,42,1,0,0,12.107969,12.107969,0,0,0,0,0,0,0,0,0,0,45,36.36,40.55,29.03,6.666666666666667,1,1,0,0,9,12,4,1,428.5,371023.31,131880.28,249329.39,131217.41,2594.0898 -8986,11067,19993,19992,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,7.5675592,7.0321569,39,1,-32.032154,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,7.367847,40.55,29.03,45,36.36,5,1,1,0,0,5,12,4,1,428.5,371023.31,131880.28,249329.39,131217.41,2594.0898 -8987,11068,19994,19995,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,9.5575628,9.7914991,0,25,-2,27.62188,0,2,3,2019,10,1,40,40,1,1,0,60.003094,60.003094,0,0,0,0,7,1,1,0,0,0,54.2,57.49,52.23,55.6,8.333333333333334,1,1,0,0,12,12,5,1,929.5,2723583.8,1798754.5,667353.75,102931.5,20831.238 -8987,11068,19995,19994,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.7000761,8.914813,0,25,2,-56.804195,0,2,1,2019,8,0,70,60,1,0,0,8.6385584,8.6385584,0,0,0,0,0,1,1,0,0,0,52.23,55.6,54.2,57.49,1.666666666666667,1,1,0,0,12,12,5,1,929.5,2723583.8,1798754.5,667353.75,102931.5,20831.238 -8987,11069,19996,-9,19994,19995,1,0,20,0,1,0,1,1,1,0,3,6.4063239,6.7975917,0,0,0,-979.48547,-9,1,1,2019,8,0,20,0,1,0,1,3.4548771,3.4548771,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,711,-254547.56,0,0,0,916.76385 -8987,11070,19997,-9,19994,19995,1,0,19,0,1,0,2,2,-9,0,4,6.7624865,6.4607463,0,0,0,-870.20215,0,1,1,2019,21,9,10,0,1,9,1,8.2276096,8.2276096,0,0,0,0,0,1,1,0,.62923568,0,34.48,61.03,-9,-9,3.333333333333333,1,1,0,0,1,12,2,1,677,-251260.61,0,0,0,55.088135 -8988,11071,19998,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.1196814,7.9702983,0,0,0,-993.31268,0,-9,-9,2019,6,0,43,43,1,0,0,7.2045102,7.2045102,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,461,-147070.02,-68621.281,0,0,618.88501 -8988,11072,19999,-9,-9,19998,1,0,22,0,0,0,2,2,-9,0,2,7.8770347,7.6542163,0,0,0,-986.81104,0,2,2,2019,15,3,39,40,1,3,1,6.8446031,6.8446031,0,0,0,0,0,0,0,0,0,0,43.95,53.15,-9,-9,5,1,1,0,0,4,9,3,0,1504,147294.73,0,0,0,1024.0439 -8989,11073,20000,20001,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.7216635,9.0129089,0,6,11,-84.811035,0,2,2,2019,4,0,35,35,1,0,0,27.814466,27.814466,0,0,0,0,0,0,0,0,2.4018722,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,7,4,5,1,531,524009.09,275271.84,191833.88,92151.352,4239.521 -8989,11073,20001,20000,-9,-9,1,0,37,0,0,0,2,2,-9,0,5,8.2866049,8.2714539,0,6,-11,75.567734,0,-9,-9,2019,6,0,38,22,1,0,0,13.131828,13.131828,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,7,4,5,1,531,524009.09,275271.84,191833.88,92151.352,4239.521 -8989,11073,20002,-9,20001,20000,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.15576,0,2,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,4,5,1,531,524009.09,275271.84,191833.88,92151.352,4239.521 -8990,11074,20003,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-896.11676,0,-9,-9,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,34.95,61.81,-9,-9,1.666666666666667,1,1,1,0,2,4,1,0,704,0,0,0,0,595.76398 -8991,11075,20004,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.6461334,7.7114182,0,0,0,-1007.6392,0,2,2,2019,12,2,30,17,1,2,0,8.5342226,8.5342226,0,0,0,0,0,1,1,0,0,0,34.24,26.38,-9,-9,3.333333333333333,1,1,0,1,9,11,3,1,303,378162.94,158509.63,0,0,475.48053 -8991,11076,20005,-9,20004,-9,1,1,18,0,0,0,2,2,1,0,4,7.4699783,7.0773048,0,0,0,-1092.3047,-9,2,-9,2019,10,0,19,0,1,0,1,11.695952,11.695952,0,0,0,0,0,1,1,0,1.5543069,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,118,206030.38,0,0,0,892.00146 -8992,11077,20006,20007,-9,-9,1,0,25,0,1,0,2,2,-9,1,1,0,0,0,7,-1,0,0,3,3,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,25.44,23.66,21.22,61.89,0,1,1,0,0,1,10,1,0,806.66669,-48542.734,0,0,0,2288.042 -8992,11077,20007,20006,-9,-9,1,1,26,0,1,0,2,2,-9,1,3,0,0,0,7,1,0,0,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,21.22,61.89,25.44,23.66,5,1,1,1,0,1,10,1,0,806.66669,-48542.734,0,0,0,2288.042 -8992,11077,20008,-9,20006,20007,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.86951,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,806.66669,-48542.734,0,0,0,2288.042 -8993,11078,20009,20010,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,7.9745693,8.0176716,0,5,0,87.579018,0,3,2,2019,11,1,45,0,1,1,0,7.4612374,7.4612374,0,0,0,0,0,0,0,0,0,0,45.49,58.84,37.02,39.96,3.333333333333333,1,1,0,1,7,6,3,1,743.5,-79824.039,0,0,0,1518.8767 -8993,11078,20010,20009,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,0,0,0,5,0,-162.81094,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,37.02,39.96,45.49,58.84,5,1,1,0,1,0,6,3,1,743.5,-79824.039,0,0,0,1518.8767 -8994,11079,20011,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.3228407,8.3302593,0,0,0,-909.53467,0,3,2,2019,11,0,57,48,1,2,0,7.2471151,7.2471151,0,0,0,0,0,0,0,0,0,0,48,48,-9,-9,7,4,2,0,0,9,6,4,0,714,38215.871,334156.28,149309.19,101155.24,1554.0859 -8995,11080,20012,-9,20015,20013,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.9397,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 -8995,11080,20013,20015,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.2602406,8.335145,0,13,1,95.604172,0,3,3,2019,6,0,38,38,1,0,0,12.414257,12.414257,0,0,0,0,0,1,1,0,0,0,52.14,49.84,51.58,54.52,8.333333333333334,2,3,0,0,11,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 -8995,11080,20014,-9,20015,20013,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.83539,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 -8995,11080,20015,20013,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.0112972,7.5082588,0,13,-1,-73.103333,0,2,2,2019,5,0,32,-9,1,0,0,9.4439831,9.4439831,0,0,0,0,0,1,1,0,0,0,51.58,54.52,52.14,49.84,3.333333333333333,2,3,0,0,9,7,4,1,816.25,724657.5,443805.16,223898.23,167113.81,2955.8918 -8996,11081,20016,20017,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.5630846,7.9651532,0,5,4,-47.50177,-9,-9,-9,2019,11,1,52,0,1,1,0,9.1733923,9.1733923,0,0,0,0,0,0,0,0,0,0,43.39,50.26,57.16,56.15,3.333333333333333,1,1,0,0,12,2,5,1,152,-53394.578,116311.67,216877.34,150410.84,2432.9109 -8996,11081,20017,20016,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0582237,8.1787004,0,5,-4,-50.000366,0,2,3,2019,7,0,38,38,1,0,0,10.264161,10.264161,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.39,50.26,8.333333333333334,1,1,0,0,10,2,5,1,152,-53394.578,116311.67,216877.34,150410.84,2432.9109 -8997,11082,20018,20019,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.3593221,7.5527248,0,28,4,-96.073097,0,3,1,2019,8,0,30,60,1,0,0,6.7547255,6.7547255,0,0,0,0,0,1,1,0,3.8532662,0,54,54,57.41,54.88,8,2,3,0,0,1,7,4,1,388,184447.3,-59757.414,298902.47,37759.328,4321.8301 -8997,11082,20019,20018,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9535766,7.7522526,0,28,-4,52.377129,0,3,1,2019,10,0,15,20,1,0,0,17.223133,17.223133,0,0,0,0,0,1,1,0,7.8027225,0,57.41,54.88,54,54,8.333333333333334,2,3,0,0,10,7,4,1,388,184447.3,-59757.414,298902.47,37759.328,4321.8301 -8997,11083,20020,-9,20019,20018,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1018.1358,-9,1,1,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.11,56.52,-9,-9,8.333333333333334,2,3,0,0,0,7,2,1,398,47210.797,0,0,0,0 -8998,11084,20021,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,7.1769209,6.9264364,0,0,-1021.7223,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3846402,6.8042111,55.96,49.93,-9,-9,1.666666666666667,1,1,0,0,2,10,3,1,110,372273.47,197956.17,240556,0,772.7002 -8999,11085,20022,20023,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.6038098,7.6208878,5.8700161,11,-1,-77.32357,0,-9,-9,2019,6,0,10,11,1,0,0,20.698273,20.698273,0,0,0,0,0,0,0,0,7.4976082,6.146369,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,1,137,269339.59,37862.086,343004.44,247249.55,2739.051 -8999,11085,20023,20022,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.4893761,7.6786098,45,1,19.548489,0,3,3,2019,4,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0206819,7.3851156,57.16,56.15,57.16,56.15,10,1,1,0,0,12,7,4,1,137,269339.59,37862.086,343004.44,247249.55,2739.051 -9000,11086,20024,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,6.4651804,6.037065,0,0,-969.49927,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,6.5162063,37.42,35.77,-9,-9,3.333333333333333,1,1,0,1,8,5,2,1,100,-7332.125,217839.72,0,0,470.62054 -9001,11087,20025,-9,-9,-9,1,1,59,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1023.9521,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,61.1,14.42,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,295,61087.727,0,239895.31,81127.273,1874.0078 -9002,11088,20026,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.6400366,7.4678087,0,0,-917.84552,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.0550756,7.3211546,50.67,42.05,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,595,191418.44,0,212135.75,0,2192.207 -9002,11089,20027,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.2832012,7.6287332,0,0,-893.40247,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.15694,7.5840569,52.82,46.09,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,852,1121526,394850.91,488662.53,0,1975.4437 -9003,11090,20028,20029,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.914217,9.0920219,0,23,3,-129.45624,0,3,2,2019,8,0,55,48,1,0,0,15.006737,15.006737,0,0,0,0,0,0,0,0,0,0,47.15,55.39,54.2,57.49,8.333333333333334,2,3,0,0,8,12,5,1,407,292401.69,174912.34,169755.09,31891.859,6514.6641 -9003,11090,20029,20028,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.9611597,9.0133724,0,23,-3,137.24371,0,2,1,2019,8,0,40,40,1,0,0,24.817375,24.817375,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.15,55.39,8.333333333333334,1,1,0,0,8,12,5,1,407,292401.69,174912.34,169755.09,31891.859,6514.6641 -9004,11091,20030,20031,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2967014,7.1029215,10,2,-67.539818,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,7.1937256,45.19,45.41,60.67,15.86,8.333333333333334,1,1,0,0,0,5,2,1,534.5,593959.13,351871.91,164981.59,0,2062.8374 -9004,11091,20031,20030,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,10,-2,-121.96725,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,15.574858,0,0,1,1,0,0,0,60.67,15.86,45.19,45.41,8.333333333333334,1,1,0,0,0,5,2,1,534.5,593959.13,351871.91,164981.59,0,2062.8374 -9005,11092,20032,20033,-9,-9,1,1,35,0,1,0,1,1,-9,0,5,9.0527639,8.8866224,0,6,0,1.0696753,0,-9,-9,2019,10,0,36,51,1,0,0,26.868877,26.868877,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51.24,58.84,8.333333333333334,1,1,0,0,8,11,5,1,530,313484.41,97184.602,218848.23,195542.69,3446.9102 -9005,11092,20033,20032,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,7.7734575,7.4109526,0,15,0,46.866096,0,2,2,2019,9,0,23,25,1,0,0,10.826495,10.826495,0,0,0,0,0,1,1,0,4.086926,0,51.24,58.84,51.73,58.82,8.333333333333334,1,1,0,0,8,11,5,1,530,313484.41,97184.602,218848.23,195542.69,3446.9102 -9005,11092,20034,-9,20033,20032,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.5193,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,530,313484.41,97184.602,218848.23,195542.69,3446.9102 -9006,11093,20035,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.4906254,6.2331829,0,0,-1023.1194,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.43889388,6.4070969,53.76,42.63,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,103,-16783.396,80685.078,0,0,1129.1879 -9007,11094,20036,20037,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.2674751,8.7115736,0,25,2,-116.40565,0,3,2,2019,6,0,40,47,1,0,0,15.942346,15.942346,0,0,0,0,2,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,477,2035088.1,1448303.3,229102.75,0,5377.3853 -9007,11094,20037,20036,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.5243349,9.2637968,0,24,-2,-67.706017,0,2,2,2019,11,0,50,50,1,0,0,24.116693,24.116693,0,0,0,0,0,0,0,0,6.0434499,0,54.2,57.49,54.2,57.49,3.333333333333333,1,1,0,0,10,2,5,1,477,2035088.1,1448303.3,229102.75,0,5377.3853 -9008,11095,20038,-9,20041,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-974.21375,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 -9008,11095,20039,-9,20041,-9,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.4108,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 -9008,11095,20040,-9,20041,-9,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.4417,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 -9008,11095,20041,-9,-9,-9,1,0,36,0,4,0,2,2,-9,0,2,0,0,0,0,0,-1013.6456,0,2,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.91,31.4,-9,-9,5,1,1,0,0,0,2,1,0,683,152625.92,0,0,0,852.39465 -9008,11095,20042,-9,20041,-9,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1090.5236,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,683,152625.92,0,0,0,852.39465 -9009,11096,20043,20044,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.7346191,7.7609906,0,1,2,65.631165,-9,-9,-9,2019,10,0,41,0,1,0,0,5.9534383,5.9534383,0,0,0,0,0,0,0,0,0,0,59.43,58.05,57.76,54.51,8.333333333333334,1,1,0,0,1,11,4,1,439.5,-9119.1875,0,207602.94,111918.15,2259.3696 -9009,11096,20044,20043,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6827807,7.6885357,0,1,-2,-118.20192,0,2,-9,2019,6,0,39,39,1,0,0,6.6572623,6.6572623,0,0,0,0,0,0,0,0,.48674276,0,57.76,54.51,59.43,58.05,8.333333333333334,1,1,0,0,6,11,4,1,439.5,-9119.1875,0,207602.94,111918.15,2259.3696 -9010,11097,20045,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1001.0182,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.12,56.68,-9,-9,8.333333333333334,2,3,0,0,0,5,1,0,975.33331,-61740.457,0,0,0,1145.2019 -9010,11097,20046,-9,20045,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.17657,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,1,0,975.33331,-61740.457,0,0,0,1145.2019 -9010,11097,20047,-9,20045,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.61774,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,1,0,975.33331,-61740.457,0,0,0,1145.2019 -9011,11098,20048,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.2539129,7.9925876,0,0,0,-902.27222,0,2,1,2019,5,0,38,39,1,0,0,13.44141,13.44141,0,0,0,0,0,0,0,0,4.4861555,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,10,5,1,1057,278185.72,-14667.266,0,0,1760.1892 -9012,11099,20049,20050,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.9281006,7.9720879,61,5,40.107704,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1393642,56,44,53,45,8,1,1,0,0,0,4,3,1,463.5,402870.91,223076.66,143767.03,0,2672.1235 -9012,11099,20050,20049,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,61,-5,-14.389915,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,56,44,8,1,1,0,0,0,4,3,1,463.5,402870.91,223076.66,143767.03,0,2672.1235 -9013,11100,20051,20052,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,9,8,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,38.18,49.84,10,1,1,0,0,3,9,1,1,1483,746692.25,0,463399.56,0,1018.1978 -9013,11100,20052,20051,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-8,0,0,3,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,49.84,61.12,51.57,6.666666666666667,1,1,0,0,0,9,1,1,1483,746692.25,0,463399.56,0,1018.1978 -9014,11101,20053,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,2.4910867,2.8904674,0,0,-860.87085,0,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,14.5,1,1,0,0,2.5300653,42.61,18.41,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,325,364523.25,86976.563,226342.77,0,952.79132 -9015,11102,20054,20055,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.8856835,8.1975679,31,-2,53.750973,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.5238547,7.9376478,45.44,50.58,51.24,58.84,8.333333333333334,1,1,0,0,3,2,4,1,399,1798092.3,1446252,152345.25,0,3371.3916 -9015,11102,20055,20054,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.8273773,7.8498497,28,2,17.318563,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,3.4403589,8.1502314,51.24,58.84,45.44,50.58,6.666666666666667,1,1,0,0,0,2,4,1,399,1798092.3,1446252,152345.25,0,3371.3916 -9015,11103,20056,-9,20054,20055,1,1,27,0,0,0,1,1,1,0,4,0,0,0,0,0,-989.68518,-9,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,0,1,0,0,49.59,58.37,-9,-9,8.333333333333334,1,1,1,1,4,2,1,1,658,-348142.63,0,0,0,384.36996 -9015,11104,20057,-9,20054,20055,1,1,29,0,0,0,1,1,-9,0,3,7.7829876,7.7901688,0,0,0,-1034.9408,0,2,1,2019,24,10,35,28,1,10,0,5.9898763,5.9898763,0,0,0,0,0,1,0,1,.55804545,0,12.72,65.98999999999999,-9,-9,1.666666666666667,1,1,0,0,2,2,3,1,1099,-239626.41,4094.2249,0,0,408.42618 -9016,11105,20058,-9,20059,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.88092,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,4,0,439,-432516.63,32419.74,0,0,1837.7355 -9016,11105,20059,-9,-9,-9,1,0,37,1,1,0,2,2,-9,0,2,8.4147778,8.4615784,0,0,0,-1077.4237,0,3,3,2019,12,0,39,40,1,0,0,14.255596,14.255596,0,0,0,0,0,1,1,0,0,0,41.87,45.95,-9,-9,8.333333333333334,1,1,0,0,10,8,4,0,439,-432516.63,32419.74,0,0,1837.7355 -9017,11106,20060,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.4545503,5.485908,0,0,-857.45239,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.1539874,5.3430805,58.9,45.74,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,366,635249.69,-157236.77,88096.328,0,627.13385 -9018,11107,20061,-9,20065,20063,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1046.0248,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,61.62,-9,-9,3.333333333333333,1,1,0,0,1,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 -9018,11107,20062,-9,20065,20063,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.41626,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 -9018,11107,20063,20065,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2954502,8.2202511,5.1336732,1,5,-62.023392,0,2,2,2019,7,0,35,0,1,0,0,13.341735,13.341735,0,0,0,0,2,1,1,0,0,5.0117884,62.19,33.35,53.44,32.71,8.333333333333334,1,1,0,0,7,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 -9018,11107,20064,-9,20065,20063,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-1114.2512,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,30.1,-9,-9,5,1,1,1,0,0,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 -9018,11107,20065,20063,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,8.3652506,8.0319595,0,1,-5,109.5731,-9,-9,-9,2019,10,1,20,0,1,1,0,23.278936,23.278936,0,0,0,0,0,1,1,0,0,0,53.44,32.71,62.19,33.35,8.333333333333334,1,1,0,0,0,5,4,1,329.60001,915063.5,744828.25,152953.31,0,4814.5596 -9019,11108,20066,20067,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,6.4646487,6.2706699,0,31,4,-42.698261,0,3,3,2019,10,0,10,13,1,0,0,7.2054749,7.2054749,0,0,0,0,0,0,0,0,4.329453,0,57.16,56.15,50.01,52.64,6.666666666666667,1,1,0,0,12,9,5,1,588,583690.13,175561.61,433928.72,70155.078,4386.1963 -9019,11108,20067,20066,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.250536,9.4151068,7.1005654,9,-4,-130.83955,0,-9,-9,2019,12,0,37,37,1,0,0,35.247356,35.247356,0,0,0,0,0,0,0,0,3.9498436,7.2744007,50.01,52.64,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,588,583690.13,175561.61,433928.72,70155.078,4386.1963 -9019,11109,20068,-9,20066,20067,1,1,23,0,0,0,2,2,-9,0,4,7.8288732,7.7146788,0,0,0,-973.49933,0,2,1,2019,6,0,44,54,1,0,1,5.9908047,5.9908047,0,0,0,0,0,0,0,0,1.4553541,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,425,-101944.26,205.47449,0,0,1445.3817 -9020,11110,20069,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.9907913,7.8887358,7.3370457,0,0,-996.70953,0,3,3,2019,30,11,14,14,1,11,0,7.5799656,7.5799656,0,0,0,0,2,1,1,0,6.9355803,0,29.98,43.87,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,476,-217460.39,-56079.23,0,0,1851.6139 -9020,11111,20070,-9,-9,20071,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-944.56537,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,673.66669,217647.39,97543.57,0,0,366.16046 -9020,11111,20071,20072,20069,-9,1,1,22,0,0,0,1,1,-9,0,3,7.1332765,7.0510106,0,1,1,-89.586319,-9,3,-9,2019,11,1,18,0,1,1,0,6.4842639,6.4842639,0,0,0,0,0,1,1,0,0,0,49.97,48.78,39.84,34.25,3.333333333333333,1,1,0,0,2,9,2,0,673.66669,217647.39,97543.57,0,0,366.16046 -9020,11111,20072,20071,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,1,-1,9.6658478,-9,-9,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39.84,34.25,49.97,48.78,8.333333333333334,1,1,0,0,0,9,2,0,673.66669,217647.39,97543.57,0,0,366.16046 -9021,11112,20073,-9,20074,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.44196,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 -9021,11112,20074,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9726586,6.8594918,0,0,0,-931.62659,0,2,2,2019,12,1,30,18,1,1,0,4.1575842,4.1575842,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,1,6,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 -9021,11112,20075,-9,20074,-9,1,0,17,0,2,1,2,0,0,0,3,0,4.4033461,3.9969733,0,0,-930.11853,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,3.678051,0,51.36,36.04,-9,-9,5,1,1,0,0,2,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 -9021,11112,20076,-9,20074,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.4899,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,1605.25,70544.953,315.20117,0,0,1765.2334 -9022,11113,20077,-9,20078,20080,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.8593,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 -9022,11113,20078,20080,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.1967974,9.2469864,0,8,-2,-13.937813,0,-9,-9,2019,10,0,37,35,1,1,0,28.956326,28.956326,0,0,0,0,0,1,1,0,6.6978922,0,50,54,57.06,57.76,8,1,1,0,0,1,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 -9022,11113,20079,-9,20078,20080,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.16852,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 -9022,11113,20080,20078,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,7.849185,7.7178211,0,16,2,-77.053268,0,2,2,2019,6,0,5,15,1,0,0,44.971142,44.971142,0,0,0,0,0,1,1,0,9.1249199,0,57.06,57.76,50,54,8.333333333333334,1,1,0,0,11,9,5,1,776.75,1011312.9,68172.938,1015824,183976.44,6962.9912 -9023,11114,20081,20082,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.3317733,7.1647301,0,2,-1,-51.175385,0,-9,-9,2019,7,0,45,35,1,0,0,4.6808047,4.6808047,0,0,0,0,0,1,1,0,6.811718,0,64.40000000000001,42,45.32,54.77,8.333333333333334,1,1,0,0,6,8,5,1,933,547122.75,10990.598,648875.63,95999.141,3513.8467 -9023,11114,20082,20081,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8202047,8.9015503,0,2,1,8.69909,0,2,2,2019,12,1,37,36,1,1,0,23.997728,23.997728,0,0,0,0,0,1,1,0,0,0,45.32,54.77,64.40000000000001,42,8.333333333333334,3,4,0,0,12,8,5,1,933,547122.75,10990.598,648875.63,95999.141,3513.8467 -9023,11115,20083,-9,20082,-9,1,0,19,0,0,0,2,2,-9,0,5,6.1917295,6.5015454,0,0,0,-910.59015,0,1,-9,2019,14,3,33,0,1,3,1,2.0692117,2.0692117,0,0,0,0,0,1,1,0,1.6753447,0,46.4,59.87,-9,-9,8.333333333333334,3,4,0,0,1,8,2,1,221,-257782.88,0,0,0,602.98389 -9024,11116,20084,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,6.34937,6.1912231,0,0,-1119.5718,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,6.2299533,60.12,38.9,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,260,192501.13,107244.3,62556.391,0,1009.6171 -9025,11117,20085,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.4572649,7.0186553,0,0,0,-840.12219,0,2,-9,2019,22,9,28,20,1,9,0,6.4729891,6.4729891,0,0,0,0,0,1,1,0,0,0,31.15,59.96,-9,-9,1.666666666666667,1,1,0,1,4,10,3,0,1697,67557.188,0,0,0,314.27914 -9025,11118,20086,-9,20085,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1101.4558,0,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,0,0,10,1,0,2599,136317.38,0,0,0,0 -9026,11119,20087,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1014.9193,0,2,2,2019,15,5,0,15,4,5,0,0,0,0,0,0,0,0,1,1,0,2.994668,0,35.86,64.55,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,1373,477280.66,304504.97,17732.377,0,45.972881 -9027,11120,20088,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1127.819,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,0,9.5828428,0,0,1,1,0,0,0,26.06,45.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,213,148212.14,0,144274.39,0,765.41705 -9028,11121,20089,20090,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5344877,8.8052053,0,26,3,-138.19168,0,3,3,2019,10,1,52,60,1,1,0,13.382883,13.382883,0,0,0,0,0,0,0,0,3.4086986,0,41.4,55.39,54.1,50.87,8.333333333333334,1,1,0,0,9,2,5,1,1024.5,990763.75,388760.44,106580.56,0,4091.4548 -9028,11121,20090,20089,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.2479525,8.8287287,0,26,-3,-57.915936,0,2,3,2019,18,6,37,37,1,6,0,16.182447,16.182447,0,0,0,0,0,0,0,0,0,0,54.1,50.87,41.4,55.39,6.666666666666667,1,1,0,0,9,2,5,1,1024.5,990763.75,388760.44,106580.56,0,4091.4548 -9028,11122,20091,-9,20090,20089,1,1,18,0,0,0,2,2,-9,0,4,7.6816487,7.8265696,0,0,0,-1172.151,0,2,2,2019,7,0,25,0,1,0,1,10.123857,10.123857,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,2,3,1,2084,-211060.61,0,0,0,775.06433 -9028,11123,20092,-9,20090,20089,1,1,18,0,0,0,2,2,-9,0,5,8.0576086,8.0906935,0,0,0,-1040.7123,0,2,2,2019,6,0,40,0,1,0,1,8.6892052,8.6892052,0,0,0,0,0,0,0,0,.2540527,0,48.65,53.42,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,300,-52812.117,0,0,0,1498.2052 -9029,11124,20093,20095,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.1461744,8.1119509,0,2,-7,-44.755898,0,-9,-9,2019,11,0,37,44,1,0,0,11.819389,11.819389,0,0,0,0,14.5,1,1,0,0,0,44.57,52.34,34.94,20.71,6.666666666666667,1,1,0,0,11,12,3,1,637.33331,-22030.566,39614.172,95540.953,101250.6,2663.7646 -9029,11124,20094,-9,20093,20095,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-941.82874,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,0,0,0,12,3,1,637.33331,-22030.566,39614.172,95540.953,101250.6,2663.7646 -9029,11124,20095,20093,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,2,7,-44.464325,0,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.94,20.71,44.57,52.34,3.333333333333333,1,1,0,0,5,12,3,1,637.33331,-22030.566,39614.172,95540.953,101250.6,2663.7646 -9030,11125,20096,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,10.283788,10.028147,0,0,0,-1063.3113,0,1,1,2019,21,9,72,16,1,9,0,38.303734,38.303734,0,0,0,0,0,0,0,0,8.1729174,0,31.17,62.74,-9,-9,3.333333333333333,1,1,0,0,12,8,5,1,4275,961467.19,616480.19,596552.56,0,13871.673 -9031,11126,20097,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,4.3766646,4.4043598,0,0,-1077.8793,0,3,2,2019,19,6,0,0,4,6,0,0,0,1,7.3638477,0,66.092239,0,1,1,0,0,3.9762104,38.02,28.54,-9,-9,0,1,1,0,1,2,13,2,0,2168,241897,0,0,0,1200.9858 -9032,11127,20098,20099,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,8.5218182,8.3267984,0,21,1,23.71664,0,2,2,2019,2,0,39,37,1,0,0,16.578053,16.578053,0,0,0,0,0,1,1,0,.30559206,0,57.06,57.76,56.5,51,10,1,1,0,0,10,6,5,1,1686,259505.63,51713.199,115693.2,0,3911.866 -9032,11127,20099,20098,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.2759647,8.3884716,0,23,-1,-55.909821,0,2,2,2019,7,0,53,60,1,0,0,8.5147133,8.5147133,0,0,0,0,0,1,1,0,.83445179,0,56.5,51,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,1686,259505.63,51713.199,115693.2,0,3911.866 -9032,11127,20100,-9,20099,20098,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.7094,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1686,259505.63,51713.199,115693.2,0,3911.866 -9033,11128,20101,20102,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.4658608,7.4543986,35,1,50.199734,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0276866,7.8749127,57.16,56.15,60.44,46.58,8.333333333333334,1,1,0,0,10,4,3,1,773,1593016.1,919127.88,197617.7,0,3050.9189 -9033,11128,20102,20101,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.7995224,7.437551,35,-1,66.741638,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.9122915,7.472003,60.44,46.58,57.16,56.15,8.333333333333334,1,1,0,0,6,4,3,1,773,1593016.1,919127.88,197617.7,0,3050.9189 -9034,11129,20103,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9948444,8.8563776,0,0,0,-904.15344,0,2,3,2019,12,0,45,48,1,0,0,22.525707,22.525707,0,0,0,0,2,0,0,0,2.164856,0,49.52,55.68,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,1186,299683.97,201415.27,410522.91,0,2929.7424 -9035,11130,20104,20105,-9,-9,1,1,58,0,1,0,3,3,-9,0,4,8.2294998,8.1396313,0,7,0,8.7928438,0,3,3,2019,9,1,54,42,1,1,0,8.5357056,8.5357056,0,0,0,0,2,1,1,0,0,0,60.7,47.65,46.58,49.13,8.333333333333334,1,1,0,0,7,5,4,1,259,491758.75,685366.63,171452.28,19191.359,3040.3779 -9035,11130,20105,20104,-9,-9,1,0,58,0,1,0,3,3,-9,0,3,8.2498522,8.0770178,0,7,0,-35.220871,0,2,2,2019,16,5,39,44,1,5,0,13.136469,13.136469,0,0,0,0,2,1,1,0,0,0,46.58,49.13,60.7,47.65,8.333333333333334,1,1,0,0,8,5,4,1,259,491758.75,685366.63,171452.28,19191.359,3040.3779 -9035,11131,20106,-9,20105,20104,1,0,32,0,1,0,2,2,-9,0,4,7.3054338,7.496551,5.168694,0,0,-952.63519,0,2,2,2019,11,0,15,59,1,0,1,11.243053,11.243053,0,0,0,0,7,1,1,0,5.2710652,0,45.69,38.55,-9,-9,5,1,1,0,0,8,5,3,1,688,141038.69,0,0,0,1810.4048 -9035,11131,20107,-9,20106,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.00946,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,688,141038.69,0,0,0,1810.4048 -9036,11132,20108,20109,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.5038099,9.2331285,0,4,0,54.255901,0,-9,-9,2019,4,0,36,38,1,0,0,22.979725,22.979725,0,0,0,0,0,1,1,0,2.4847856,0,41.34,56.62,54.79,55.86,10,1,1,0,0,11,5,5,1,992.66669,372775,21300.729,196303.73,159116.77,3384.2529 -9036,11132,20109,20108,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,7.9877958,8.0344219,0,4,0,-60.647381,0,2,2,2019,6,0,18,18,1,0,0,21.189018,21.189018,0,0,0,0,0,1,1,0,0,0,54.79,55.86,41.34,56.62,8.333333333333334,1,1,0,0,9,5,5,1,992.66669,372775,21300.729,196303.73,159116.77,3384.2529 -9036,11132,20110,-9,20109,20108,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-935.31879,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,992.66669,372775,21300.729,196303.73,159116.77,3384.2529 -9037,11133,20111,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.0598927,7.9451857,0,3,0,53.452114,0,2,2,2019,7,0,40,37,1,0,0,10.205485,10.205485,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,3,9,3,0,803,121313.16,0,0,0,1579.7913 -9037,11134,20112,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,3,0,111.13315,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,1,0,0,9,3,0,234,70470.984,102146.67,0,0,-173.26106 -9038,11135,20113,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.6567879,8.7087002,0,0,0,-1066.6259,0,3,1,2019,9,0,7,7,1,0,0,79.578636,79.578636,0,0,0,0,0,0,0,0,.54939729,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,1051,290194.78,23103.359,140999.22,0,2346.8716 -9039,11136,20114,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-973.35724,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,10.02,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,606,-42191.172,0,0,0,1821.104 -9040,11137,20115,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.9610848,8.3492661,7.1922827,0,0,-1073.5389,0,1,1,2019,6,0,60,60,1,0,0,4.0021968,4.0021968,0,0,0,0,0,1,1,0,7.089015,7.0206914,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,89,471643.31,-13046.3,0,0,2882.4702 -9041,11138,20116,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-900.64221,0,-9,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,36,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,504,-117420.99,0,0,0,537.87347 -9042,11139,20117,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1002.8389,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.9,42.08,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1395,-149311.91,0,0,0,935.57697 -9043,11140,20118,20119,-9,-9,1,0,38,0,3,0,3,3,-9,0,4,0,4.8862805,4.947443,5,-1,66.404724,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.224309,0,51.24,58.84,51,56,10,1,1,0,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 -9043,11140,20119,20118,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.6078835,8.8271761,0,5,1,21.910044,0,-9,-9,2019,10,0,40,40,1,1,0,13.610626,13.610626,0,0,0,0,0,1,1,0,0,0,51,56,51.24,58.84,7,1,1,0,0,1,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 -9043,11140,20120,-9,20118,20119,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.4818,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 -9043,11140,20121,-9,20118,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1005.127,-9,3,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 -9043,11140,20122,-9,20118,20119,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.7392,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,384.39999,-84733.523,-47927.289,0,0,2808.4641 -9044,11141,20123,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,4.9301691,4.7084179,0,0,-1061.5948,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,17.440794,0,0,1,1,0,0,5.163908,39.23,20.18,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,439,-225790.53,-27276.023,27864.381,0,1604.085 -9045,11142,20124,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.7917132,6.3763275,0,0,-991.67505,0,2,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,0,6.3609824,37.68,56.97,-9,-9,3.333333333333333,1,1,0,0,4,11,2,1,1025,454004.72,88647.063,184759.05,0,1944.2714 -9046,11143,20125,20126,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.6039305,8.5483761,0,6,-3,83.391487,0,1,2,2019,5,0,41,41,1,0,0,12.938441,12.938441,0,0,0,0,0,0,0,0,3.4632251,0,54.79,55.86,56.92,49.39,8.333333333333334,1,1,0,0,10,10,4,1,552,248005.78,211468.61,260257.8,214862.28,3228.2739 -9046,11143,20126,20125,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,7.7932386,7.9608111,0,6,3,-78.779243,0,-9,-9,2019,6,0,47,40,1,0,0,5.3509192,5.3509192,0,0,0,0,0,0,0,0,3.0510213,0,56.92,49.39,54.79,55.86,8.333333333333334,1,1,0,0,12,10,4,1,552,248005.78,211468.61,260257.8,214862.28,3228.2739 -9046,11143,20127,-9,20125,20126,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-935.23065,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,552,248005.78,211468.61,260257.8,214862.28,3228.2739 -9047,11144,20128,-9,20132,20129,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.32544,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,5,-9,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 -9047,11144,20129,20132,-9,-9,1,1,45,0,3,0,3,3,-9,0,4,0,0,0,15,13,0,0,3,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,0,12,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 -9047,11144,20130,-9,20132,20129,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.06702,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,5,-9,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 -9047,11144,20131,-9,20132,20129,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.34326,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 -9047,11144,20132,20129,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,10,-13,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,1,0,463.79999,-182996.59,-3699.1694,0,0,1099.2686 -9048,11145,20133,-9,20134,20135,1,1,27,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1062.9296,0,3,2,2019,19,7,0,28,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,18.79,62.96,-9,-9,1.666666666666667,2,3,1,0,2,8,1,1,185,-77074.531,0,0,0,0 -9048,11146,20134,20135,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.5319562,6.5572963,0,36,-8,-34.330986,0,3,3,2019,12,0,10,10,1,0,0,8.6126585,8.6126585,0,0,0,0,0,0,0,0,2.1906164,0,37.92,53.03,40.64,52.96,8.333333333333334,1,1,0,0,9,8,3,1,1277,678849.38,233636.59,625577.63,0,1121.8192 -9048,11146,20135,20134,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.7533188,7.769733,0,7,8,-34.597034,0,-9,-9,2019,12,0,39,38,1,0,0,5.3254318,5.3254318,0,0,0,0,0,0,0,0,3.0878253,0,40.64,52.96,37.92,53.03,6.666666666666667,1,1,0,0,9,8,3,1,1277,678849.38,233636.59,625577.63,0,1121.8192 -9049,11147,20136,20137,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.5932446,9.9855471,0,8,-5,-129.40034,0,2,1,2019,13,2,56,48,1,2,0,39.112679,39.112679,0,0,0,0,0,0,0,0,.22658193,0,51.24,58.84,54.1,59.11,1.666666666666667,1,1,0,0,10,5,5,1,906,947249.06,675205.38,399083.5,81644.445,7618.6895 -9049,11147,20137,20136,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.0110779,8.8072319,0,8,5,101.73608,0,2,2,2019,7,0,60,47,1,0,0,18.654308,18.654308,0,0,0,0,0,0,0,0,5.0775156,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,10,5,5,1,906,947249.06,675205.38,399083.5,81644.445,7618.6895 -9050,11148,20138,-9,20139,-9,1,1,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.3967,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,511.25,90253.453,0,0,0,1685.3394 -9050,11148,20139,-9,-9,-9,1,0,41,1,2,0,3,3,-9,0,4,0,0,0,0,0,-988.49432,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,1,7,1,0,511.25,90253.453,0,0,0,1685.3394 -9050,11148,20140,-9,20139,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.99841,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,1,0,511.25,90253.453,0,0,0,1685.3394 -9050,11148,20141,-9,20139,-9,1,1,17,1,2,0,2,2,1,0,3,0,0,0,0,0,-929.9093,-9,3,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,2,1,1,0,0,0,43.72,51.38,-9,-9,5,1,1,0,0,0,7,1,0,511.25,90253.453,0,0,0,1685.3394 -9051,11149,20142,20143,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.2745371,7.2872014,10,-1,-138.37073,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.403543,55.96,49.93,51.77,58.57,10,1,1,0,0,3,9,5,1,677.5,2522361.8,1341885,893415.5,0,3806.7349 -9051,11149,20143,20142,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.4135523,9.1139555,0,10,1,125.85847,0,3,2,2019,8,0,42,9,1,0,0,24.743277,24.743277,0,0,0,0,0,0,0,0,2.0945442,0,51.77,58.57,55.96,49.93,8.333333333333334,1,1,0,0,11,9,5,1,677.5,2522361.8,1341885,893415.5,0,3806.7349 -9052,11150,20144,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7058105,7.8949285,0,0,0,-1038.8276,0,3,-9,2019,12,0,50,38,1,0,0,4.7869902,4.7869902,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,6.666666666666667,1,1,0,0,11,11,3,1,1970,210970.67,0,39974.609,0,946.7937 -9053,11151,20145,20146,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.9460783,9.0868912,0,6,0,-41.583492,0,-9,-9,2019,8,1,44,44,1,1,0,21.236629,21.236629,0,0,0,0,0,1,1,0,0,0,50.03,55.3,30.11,56.52,8.333333333333334,1,1,0,0,11,5,5,1,317,629982.38,384319.22,253095.91,48750.445,3409.5679 -9053,11151,20146,20145,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.0918598,7.2520895,0,6,0,12.265399,0,-9,-9,2019,24,12,23,22,1,12,0,7.5378127,7.5378127,0,0,0,0,7,1,1,0,0,0,30.11,56.52,50.03,55.3,5,1,1,0,0,11,5,5,1,317,629982.38,384319.22,253095.91,48750.445,3409.5679 -9053,11152,20147,-9,20146,20145,1,0,18,0,1,0,2,2,1,0,4,6.6267343,6.6557732,0,0,0,-1071.822,-9,2,2,2019,11,1,19,0,1,1,1,3.473119,3.473119,0,0,0,0,2,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,952,-129371.38,0,0,0,554.39594 -9054,11153,20148,-9,20149,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.18768,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,789.33331,-143150.45,0,0,0,1396.594 -9054,11153,20149,-9,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,0,0,0,0,0,-960.86694,0,3,3,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.28,52,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,789.33331,-143150.45,0,0,0,1396.594 -9054,11153,20150,-9,20149,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.43921,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,789.33331,-143150.45,0,0,0,1396.594 -9055,11154,20151,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.2545981,4.6448717,0,0,-1052.1686,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.4767919,4.2182374,49,47,-9,-9,7,2,3,0,0,0,5,2,1,354,46935.984,-23985.014,0,0,1508.7076 -9056,11155,20152,20153,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,6.9850593,6.9473257,0,2,-2,78.986671,0,2,2,2019,11,0,8,8,1,0,0,11.75003,11.75003,1,0,0,0,0,1,1,0,4.8331189,0,48.83,43.99,54.25,43.85,1.666666666666667,1,1,0,0,11,10,4,1,611.5,654648.13,443309.81,171855.36,0,3024.6431 -9056,11155,20153,20152,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.2403021,7.999537,47,2,99.730789,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7514725,54.25,43.85,48.83,43.99,0,4,2,0,0,0,10,4,1,611.5,654648.13,443309.81,171855.36,0,3024.6431 -9057,11156,20154,20155,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,8,5,-75.486282,0,3,3,2019,31,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.21,16.73,22.31,46.45,6.666666666666667,1,1,0,0,0,2,5,1,419,168048.53,62015.914,14016.29,62965.711,2743.1077 -9057,11156,20155,20154,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.9692354,8.8882408,0,8,-5,71.470901,0,3,3,2019,33,12,50,55,1,12,0,15.582546,15.582546,0,0,0,0,0,1,1,0,0,0,22.31,46.45,32.21,16.73,1.666666666666667,1,1,0,0,9,2,5,1,419,168048.53,62015.914,14016.29,62965.711,2743.1077 -9058,11157,20156,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.1417723,8.2767973,0,0,-978.21692,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,4.6809039,8.2675085,54.22,39.07,-9,-9,3.333333333333333,1,1,0,0,1,10,4,1,1114,463898.19,405235.78,0,0,3684.1062 -9059,11158,20157,20158,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.3440456,8.2934799,0,10,12,7.097631,0,2,2,2019,7,0,66,66,1,0,0,8.4114618,8.4114618,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,1209,121170.87,40380.438,606860.5,268905.5,4526.8862 -9059,11158,20158,20157,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.5724545,8.8984032,0,11,-12,43.915768,0,2,3,2019,12,0,65,0,1,0,0,10.259496,10.259496,0,0,0,0,0,0,0,0,0,0,51.83,57.2,49.04,55.86,5,1,1,0,0,9,7,5,1,1209,121170.87,40380.438,606860.5,268905.5,4526.8862 -9060,11159,20159,20160,-9,-9,1,1,58,0,2,0,2,2,-9,0,3,8.8963614,8.5723219,0,2,6,9.6064215,0,3,3,2019,10,0,60,56,1,0,0,15.244624,15.244624,0,0,0,0,0,1,1,0,3.8321249,0,46.55,58.3,47.25,38.93,8.333333333333334,1,1,0,0,7,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 -9060,11159,20160,20159,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,7.1543369,7.0149865,0,2,-6,136.74356,0,3,3,2019,15,4,40,35,1,4,0,3.6550488,3.6550488,0,0,0,0,7,1,1,0,0,0,47.25,38.93,46.55,58.3,8.333333333333334,1,1,0,0,7,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 -9060,11159,20161,-9,20160,20159,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9862,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,6,-9,0,0,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 -9060,11159,20162,-9,20160,20159,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6406,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,1496.25,335114,272404.47,233087.36,62010.262,3237.0403 -9061,11160,20163,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.5332928,7.9940248,0,0,-925.20184,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2878904,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,70,1317801.3,736884.44,380741.5,0,2278.8574 -9062,11161,20164,-9,20168,20167,1,1,21,0,2,0,2,2,-9,0,4,7.848999,7.9618077,0,0,0,-1040.5781,0,2,2,2019,9,1,45,0,1,1,1,7.6113,7.6113,0,0,0,0,0,1,1,0,0,0,49.34,35.36,-9,-9,6.666666666666667,1,1,0,0,4,10,4,1,197,-714859.13,-77069.734,0,0,1376.8682 -9062,11162,20165,-9,20168,20167,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.41138,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 -9062,11162,20166,-9,20168,20167,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-892.31665,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.1938739,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 -9062,11162,20167,20168,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.8274641,8.8625822,0,8,2,17.723423,0,2,2,2019,4,0,50,50,1,0,0,20.473604,20.473604,0,0,0,0,0,1,1,0,4.0568285,0,51.78,50.54,41.17,59.31,8.333333333333334,1,1,0,0,9,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 -9062,11162,20168,20167,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.2048883,7.2668304,0,8,-2,-14.937749,0,3,2,2019,3,0,22,12,1,0,0,6.688663,6.688663,0,0,0,0,0,1,1,0,0,0,41.17,59.31,51.78,50.54,10,1,1,0,0,9,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 -9062,11162,20169,-9,20168,20167,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.5933,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,1064.2,359222.63,167797.86,209667.42,117855.39,4108.4263 -9063,11163,20170,20171,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.2200937,8.2240906,39,6,-30.917597,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9271364,8.0055914,51.31,49.39,51.67,60.18,8.333333333333334,1,1,0,0,3,9,3,1,1066,1124743.3,741586.25,306179.88,0,2408.3662 -9063,11163,20171,20170,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,0,0,7,-6,-9.4104147,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,51.31,49.39,8.333333333333334,1,1,0,0,8,9,3,1,1066,1124743.3,741586.25,306179.88,0,2408.3662 -9064,11164,20172,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,1,6.9434314,6.9065881,0,0,0,-939.41547,0,3,3,2019,33,12,26,28,1,12,0,4.6637616,4.6637616,0,0,0,0,0,1,1,0,0,0,28.67,33.26,-9,-9,1.666666666666667,1,1,0,0,11,13,2,1,523.5,368481.16,11685.469,208150.34,0,1610.3768 -9064,11164,20173,-9,20172,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1104.4446,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,13,2,1,523.5,368481.16,11685.469,208150.34,0,1610.3768 -9065,11165,20174,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1142.5483,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,1,1,0,441,338415.78,0,0,0,1327.5348 -9066,11166,20175,20176,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8385472,7.8709497,39,1,13.532246,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7050328,7.454761,57.16,56.15,51.79,55.99,10,1,1,0,0,0,4,4,1,1071,1633232.5,1345167.6,111495.7,0,4104.7192 -9066,11166,20176,20175,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.2013788,7.4546204,39,-1,-19.741434,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5975852,7.4400601,51.79,55.99,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,1071,1633232.5,1345167.6,111495.7,0,4104.7192 -9067,11167,20177,-9,20179,20180,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7427,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,0,774.25,-35075.953,0,0,0,3003.0466 -9067,11167,20178,-9,20179,20180,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.77338,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,0,774.25,-35075.953,0,0,0,3003.0466 -9067,11167,20179,20180,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.0023451,6.9881105,0,8,-2,46.51123,0,2,2,2019,7,0,9,10,1,0,0,16.746714,16.746714,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,0,774.25,-35075.953,0,0,0,3003.0466 -9067,11167,20180,20179,-9,-9,1,1,32,1,2,0,2,2,-9,0,4,8.386281,8.3709373,0,8,2,13.254671,0,-9,-9,2019,7,0,65,60,1,0,0,7.5139933,7.5139933,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,5,1,1,0,0,8,7,4,0,774.25,-35075.953,0,0,0,3003.0466 -9068,11168,20181,20182,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.2909899,5.5705333,43,6,51.94376,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.1275005,5.3311872,42.33,21.52,60.69,53.18,8.333333333333334,1,1,0,0,0,7,2,1,1356.5,252801.02,-7515.9453,164225.16,0,1684.4434 -9068,11168,20182,20181,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,4.447247,4.5047016,43,-6,65.870834,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.1976581,4.9243059,60.69,53.18,42.33,21.52,8.333333333333334,1,1,0,0,0,7,2,1,1356.5,252801.02,-7515.9453,164225.16,0,1684.4434 -9069,11169,20183,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2716436,8.7235336,0,0,0,-948.58929,0,3,3,2019,12,1,37,40,1,1,0,11.158692,11.158692,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,209,110614.99,-25553.143,0,0,1839.2611 -9070,11170,20184,-9,-9,20186,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-970.42517,-9,-9,1,2019,24,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,36.26,62.83,-9,-9,3.333333333333333,1,1,0,0,0,7,5,1,461,1410966.8,1008474.8,502199.78,253126.89,9390.416 -9070,11170,20185,20186,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,9.0034094,9.0071249,0,4,-1,69.707085,0,-9,-9,2019,11,0,44,35,1,0,0,18.214512,18.214512,0,0,0,0,0,0,0,0,6.7857866,0,51.77,58.57,25.1,55.18,6.666666666666667,1,1,0,0,3,7,5,1,461,1410966.8,1008474.8,502199.78,253126.89,9390.416 -9070,11170,20186,20185,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,8.5635567,8.3251324,0,4,1,26.416399,0,1,1,2019,19,7,48,48,1,7,0,14.808763,14.808763,0,0,0,0,0,0,0,0,8.6866188,0,25.1,55.18,51.77,58.57,5,1,1,0,0,10,7,5,1,461,1410966.8,1008474.8,502199.78,253126.89,9390.416 -9071,11171,20187,20188,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.9997282,5.1219716,54,-3,32.682133,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2236032,5.1232338,62.11,48.33,61.28,48.88,8.333333333333334,1,1,0,0,0,4,2,0,892.5,428502.13,129926.54,151968.41,0,1156.6139 -9071,11171,20188,20187,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,54,3,-53.494759,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8550855,0,61.28,48.88,62.11,48.33,10,1,1,0,0,0,4,2,0,892.5,428502.13,129926.54,151968.41,0,1156.6139 -9072,11172,20189,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.4004478,6.4721155,0,0,-996.63037,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,21.023932,0,0,1,1,0,4.0925188,6.095367,44.46,39.34,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,887,-184885.64,41698.082,0,0,1528.803 -9073,11173,20190,20191,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,7.9401283,8.1258011,0,10,-3,56.566097,0,-9,-9,2019,24,12,32,0,1,12,0,9.9313173,9.9313173,0,0,0,0,0,0,0,0,4.8012033,0,30.28,37.77,33.82,31.95,1.666666666666667,1,1,0,0,10,5,3,1,147.5,331691.5,247211.38,0,0,1640.6753 -9073,11173,20191,20190,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.0709243,7.1405044,0,10,3,79.63549,0,3,3,2019,23,11,24,16,1,11,0,5.5879402,5.5879402,0,0,0,0,0,0,0,0,0,0,33.82,31.95,30.28,37.77,6.666666666666667,1,1,0,0,11,5,3,1,147.5,331691.5,247211.38,0,0,1640.6753 -9074,11174,20192,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.9342475,7.1522551,0,0,-1010.8632,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.9079962,56.16,21.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,232,1940850.8,2149368.8,0,0,1329.2079 -9075,11175,20193,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.8318048,7.9610467,0,0,-1014.5456,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0942287,8.1720304,54.6,50.69,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,573,481612.09,400531,250909.59,0,1244.8711 -9076,11176,20194,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.0573435,7.7500691,0,0,0,-975.55865,0,3,3,2019,12,0,33,33,1,0,0,10.104714,10.104714,0,0,0,0,0,0,0,0,0,0,30.49,56.93,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,369,-185620.31,-25794.039,0,0,1618.6792 -9077,11177,20195,-9,20196,20198,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.526,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 -9077,11177,20196,20198,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,7.5648685,7.3125544,0,15,-10,-70.291039,0,2,2,2019,14,2,24,20,1,2,0,8.6628523,8.6628523,0,0,0,0,0,1,1,0,0,0,41.3,60.77,33.11,56.17,8.333333333333334,2,3,0,0,9,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 -9077,11177,20197,-9,20196,20198,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.716,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 -9077,11177,20198,20196,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,8.2720861,7.937829,0,16,10,-67.461693,0,2,2,2019,19,7,37,35,1,7,0,13.600794,13.600794,0,0,0,0,0,1,1,0,1.3959459,0,33.11,56.17,41.3,60.77,3.333333333333333,2,3,0,0,9,9,3,1,413.25,212549.03,54572.875,286734.75,66329.516,2243.8643 -9078,11178,20199,-9,-9,-9,1,0,82,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1051.0835,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,7,1,1,912,-121439.55,0,0,0,1188.8169 -9078,11179,20200,20203,20199,-9,1,0,57,0,2,0,2,2,-9,0,1,0,0,0,9,-2,90.737305,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,27.8,61.12,51.57,6.666666666666667,1,1,0,0,1,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 -9078,11179,20201,-9,20200,20203,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8909,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 -9078,11179,20202,-9,20200,20203,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.07104,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 -9078,11179,20203,20200,-9,-9,1,1,59,0,2,0,2,2,-9,0,4,8.7283144,8.7576332,0,9,2,-62.282608,0,3,3,2019,6,0,46,45,1,0,0,13.992419,13.992419,0,0,0,0,0,1,1,0,0,0,61.12,51.57,40.15,27.8,8.333333333333334,1,1,0,0,10,7,4,1,720.75,680997.31,356002.5,368160.53,50919.594,2658.5247 -9079,11180,20204,-9,20205,20207,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-963.42841,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 -9079,11180,20205,20207,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,7.8127956,7.5939703,0,21,-6,57.442406,0,3,2,2019,16,6,28,28,1,6,0,8.1963758,8.1963758,0,0,0,0,0,1,1,0,0,0,46,51,68.89,19.75,6.666666666666667,3,4,0,0,5,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 -9079,11180,20206,-9,20205,20207,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.30865,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,3,4,-9,0,0,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 -9079,11180,20207,20205,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,7.0500503,7.7979503,7.0178442,8,6,77.885559,0,-9,-9,2019,8,3,30,10,1,3,0,4.3618336,4.3618336,0,0,0,0,0,1,1,0,6.158381,0,68.89,19.75,46,51,1.666666666666667,4,2,0,0,5,8,3,0,964.25,196607.66,-12904.354,185270.72,75626.398,3355.2212 -9079,11181,20208,-9,20205,20207,1,0,19,0,2,1,2,0,0,0,3,0,7.2486358,7.0310774,0,0,-1042.2964,-9,3,2,2019,28,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,7.4245443,0,34.98,58.78,-9,-9,1.666666666666667,3,4,0,0,0,8,3,0,188,373343.03,59596.148,0,0,991.22876 -9080,11182,20209,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.6713347,7.8887434,6.0205917,0,0,-1005.7115,0,2,2,2019,10,0,37,37,1,0,0,7.7668414,7.7668414,0,0,0,0,0,1,1,0,0,6.4523401,44.38,56.83,-9,-9,5,1,1,0,0,10,2,4,1,738,638050,-64308.684,103642.96,27521.203,1453.6649 -9081,11183,20210,20211,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.685914,7.2666364,0,8,0,-8.0370712,0,3,3,2019,20,8,15,9,1,8,0,8.6419449,8.6419449,0,0,0,0,0,0,0,0,7.352385,0,31.54,58.74,53,54,5,1,1,0,0,11,9,5,1,655,852059.19,595553.19,246861.56,127720.96,7078.4126 -9081,11183,20211,20210,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.4179659,9.5563288,7.9542747,8,0,61.886028,0,2,2,2019,9,0,50,0,1,1,0,30.70919,30.70919,0,0,0,0,0,0,0,0,8.1899948,8.003191,53,54,31.54,58.74,8,1,1,0,0,1,9,5,1,655,852059.19,595553.19,246861.56,127720.96,7078.4126 -9081,11184,20212,-9,20210,20211,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.8954,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1746,-275930.34,0,0,0,-233.5209 -9081,11185,20213,-9,20210,20211,1,0,22,0,0,0,1,1,1,0,5,4.7586999,5.019031,0,0,0,-953.31226,-9,2,1,2019,15,3,30,0,1,3,1,.50721043,.50721043,0,0,0,0,0,0,0,0,3.8528202,0,36.78,44.19,-9,-9,3.333333333333333,1,1,0,0,3,9,2,1,576,-239141.83,0,0,0,256.39337 -9082,11186,20214,20215,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,6.7368622,6.88832,46,2,-58.361343,0,2,2,2019,15,3,0,40,3,3,0,0,0,0,0,0,0,5.48,1,1,0,0,6.9440274,48.55,19.9,30.4,22.85,0,1,1,0,1,7,11,2,0,1139.5,2363757.5,1837627.3,103083.59,0,1024.0767 -9082,11186,20215,20214,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,46,-2,-21.66782,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,30.4,22.85,48.55,19.9,3.333333333333333,1,1,0,1,0,11,2,0,1139.5,2363757.5,1837627.3,103083.59,0,1024.0767 -9083,11187,20216,-9,-9,-9,1,0,57,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1021.9241,0,3,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,32.57,20.42,-9,-9,0,1,1,0,1,0,11,1,1,2728,-343882.63,0,0,0,879.91144 -9083,11188,20217,-9,20216,-9,1,1,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1212.104,0,1,-9,2019,17,5,0,0,3,5,1,0,0,0,0,0,0,27,1,1,0,0,0,19.67,51.13,-9,-9,6.666666666666667,1,1,1,0,0,11,1,1,166,150468.64,0,0,0,-37.897678 -9084,11189,20218,20219,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,7.2732754,7.601335,54,0,153.52786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0454283,54.1,59.11,61.62,34.93,10,1,1,0,0,0,9,3,1,2155,668735.5,556968.38,321010.81,0,2291.4653 -9084,11189,20219,20218,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.6123681,6.4860325,54,0,-38.02277,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2540503,61.62,34.93,54.1,59.11,10,1,1,0,0,0,9,3,1,2155,668735.5,556968.38,321010.81,0,2291.4653 -9085,11190,20220,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.5902023,8.4222288,0,0,0,-910.26587,0,-9,-9,2019,11,0,1,45,1,0,0,545.99689,545.99689,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1621,977015.56,120948.95,861194.31,87608.023,2071.738 -9086,11191,20221,-9,20223,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.13007,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,711.66669,457742.5,209852.75,209795.77,0,2484.6101 -9086,11191,20222,-9,20223,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.93121,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,711.66669,457742.5,209852.75,209795.77,0,2484.6101 -9086,11191,20223,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.9897604,8.8200979,0,0,0,-959.0094,0,1,2,2019,7,0,35,36,1,0,0,18.549973,18.549973,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,711.66669,457742.5,209852.75,209795.77,0,2484.6101 -9087,11192,20224,20225,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,17,5,-17.226034,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.37,28.07,37.75,24.81,3.333333333333333,1,1,0,0,1,2,3,0,738,388536.25,38239.313,45034.988,37429.961,1337.4976 -9087,11192,20225,20224,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.7733335,7.7148499,0,17,-5,157.9455,0,3,3,2019,14,2,41,39,1,2,0,6.2931137,6.2931137,0,0,0,0,0,1,1,0,0,0,37.75,24.81,45.37,28.07,6.666666666666667,1,1,0,0,11,2,3,0,738,388536.25,38239.313,45034.988,37429.961,1337.4976 -9088,11193,20226,20227,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,8,-7,-17.735466,0,3,3,2019,15,3,0,30,4,3,0,0,0,0,0,0,0,0,1,1,0,3.2516301,0,53.46,39.14,58.32,50.22,8.333333333333334,1,1,0,0,8,12,2,1,241,796510,350549.41,183355.81,0,940.23218 -9088,11193,20227,20226,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,6.8083882,6.3228559,8,7,-78.477875,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4677114,58.32,50.22,53.46,39.14,8.333333333333334,1,1,0,0,5,12,2,1,241,796510,350549.41,183355.81,0,940.23218 -9088,11194,20228,-9,20226,20227,1,1,25,0,0,1,2,0,0,0,3,0,0,0,0,0,-1084.6051,-9,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,1.0651834,0,23.13,65.14,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,223,178928.36,0,0,0,849.56757 -9089,11195,20229,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-982.65906,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,49.84,42.6,-9,-9,5,1,1,0,0,0,7,2,0,886,218228.38,0,323865.06,0,1523.8152 -9090,11196,20230,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.248394,7.9371443,0,0,0,-870.60199,-9,2,2,2019,13,2,40,0,1,2,0,11.273997,11.273997,0,0,0,0,0,0,0,0,1.4835515,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,740,253934.27,-59346.879,0,0,1641.4844 -9091,11197,20231,-9,-9,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-956.42517,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.57,53.02,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,514,313497.88,0,0,0,948.39722 -9092,11198,20232,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,7.2276087,6.9165816,0,0,0,-1016.244,0,-9,-9,2019,13,1,20,30,1,1,0,8.8489399,8.8489399,0,0,0,0,74.5,1,0,1,0,0,40.48,60.05,-9,-9,5,1,1,0,0,8,5,2,0,476,214630.7,88916.875,53308.828,74737.156,801.69788 -9092,11199,20233,-9,20232,-9,1,1,19,0,2,0,3,3,1,0,3,0,0,0,0,0,-1009.11,-9,2,-9,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,45.58,45.14,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,1212,104324.13,0,0,0,610.78748 -9093,11200,20234,-9,20237,-9,1,0,16,0,3,1,2,0,-9,0,1,0,0,0,0,0,-949.9397,-9,3,-9,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,36.98,-9,-9,10,1,1,0,0,0,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 -9093,11200,20235,-9,20237,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.49768,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 -9093,11200,20236,-9,20237,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.3551,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 -9093,11200,20237,-9,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,6.9177985,7.0478625,0,0,0,-998.97845,0,2,2,2019,11,0,16,16,1,2,0,7.4794989,7.4794989,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,1,4,12,2,0,797.5,247265.06,12569.193,0,0,2140.2625 -9094,11201,20238,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.68505,8.7476215,0,0,0,-1000.2455,0,3,3,2019,6,0,50,46,1,0,0,12.854963,12.854963,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,561,923759.25,570705.44,112790.68,92653.578,1840.0665 -9095,11202,20239,-9,20241,20240,1,0,18,0,0,0,2,2,1,0,4,7.1081138,7.4063382,0,0,0,-979.11725,-9,2,2,2019,8,1,25,0,1,1,1,7.0825539,7.0825539,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,165,131559.69,86000.289,0,0,770.57434 -9095,11203,20240,20241,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.7206373,8.8933315,0,4,5,58.350395,0,-9,-9,2019,5,0,49,51,1,0,0,14.559287,14.559287,0,0,0,0,0,1,1,0,0,0,55.27,56.95,59.53,56.44,8.333333333333334,1,1,0,0,11,4,5,1,558.5,148531.38,-18036.723,122225.31,114562.3,4512.7061 -9095,11203,20241,20240,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1375418,8.5745039,5.9491706,4,-5,-25.32176,0,2,3,2019,4,0,37,37,1,0,0,10.655262,10.655262,0,0,0,0,2,1,1,0,6.8870802,0,59.53,56.44,55.27,56.95,10,1,1,0,0,11,4,5,1,558.5,148531.38,-18036.723,122225.31,114562.3,4512.7061 -9096,11204,20242,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,4.893528,5.1101108,0,0,0,-999.17517,-9,2,2,2019,10,1,40,0,1,1,0,.44517919,.44517919,0,0,0,0,0,0,0,0,7.4560781,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,282,51895.367,0,280029.41,51366.813,518.52887 -9096,11205,20243,-9,20242,-9,1,1,22,0,0,0,2,2,-9,0,4,6.9689631,6.7643318,0,0,0,-889.55261,-9,3,-9,2019,11,0,40,0,1,0,1,3.1669786,3.1669786,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,447,0,0,0,0,690.42755 -9096,11206,20244,-9,20242,-9,1,1,20,0,0,0,2,2,-9,0,4,7.2156935,6.9916749,0,0,0,-1024.4222,-9,3,-9,2019,11,0,18,0,1,0,1,9.3289871,9.3289871,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,1144,205800.3,-4268.1191,0,0,417.21405 -9096,11207,20245,-9,20242,-9,1,0,18,0,0,0,2,2,-9,0,3,6.4895935,6.6322594,0,0,0,-1089.4749,-9,3,-9,2019,10,0,40,0,1,0,1,2.2563114,2.2563114,0,0,0,0,0,0,0,0,3.4975076,0,51.07,48.48,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,427,-218200.59,0,0,0,490.11664 -9097,11208,20246,20247,-9,-9,1,1,31,2,1,0,2,2,-9,0,2,0,0,0,3,4,0,0,-9,-9,2019,30,12,0,30,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.96,46.59,24.91,56.41,1.666666666666667,1,1,1,1,3,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 -9097,11208,20247,20246,-9,-9,1,0,27,2,1,0,2,2,1,0,2,0,0,0,3,-4,0,-9,3,2,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,24.91,56.41,19.96,46.59,5,1,1,0,1,0,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 -9097,11208,20248,-9,20247,20246,1,1,2,2,1,1,3,0,-9,0,4,0,0,0,0,0,-946.57629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 -9097,11208,20249,-9,20247,20246,1,0,0,2,1,1,3,0,-9,0,4,0,0,0,0,0,-976.70764,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,942.75,-88318.75,-34522.859,0,0,836.24817 -9098,11209,20250,20251,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,9.0608301,8.9472036,0,5,-2,52.904865,0,-9,-9,2019,7,0,41,41,1,0,0,24.414526,24.414526,0,0,0,0,0,0,0,0,3.1064129,0,54.45,56.22,53.39,50.01,8.333333333333334,1,1,0,0,4,6,5,1,859.66669,421458.91,102358.52,303456.5,41185.719,5794.708 -9098,11209,20251,20250,-9,-9,1,0,40,1,1,0,1,1,-9,0,3,9.0189838,9.2823782,0,5,2,-58.108437,0,1,1,2019,8,0,40,37,1,0,0,23.620514,23.620514,0,0,0,0,0,0,0,0,.22980368,0,53.39,50.01,54.45,56.22,8.333333333333334,1,1,0,0,7,6,5,1,859.66669,421458.91,102358.52,303456.5,41185.719,5794.708 -9098,11209,20252,-9,20251,20250,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.76636,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,859.66669,421458.91,102358.52,303456.5,41185.719,5794.708 -9099,11210,20253,20254,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,9.2656908,9.0298862,0,9,4,55.094616,0,2,1,2019,8,0,37,40,1,0,0,31.637205,31.637205,0,0,0,0,2,0,0,0,0,0,54.1,59.11,38.01,55.39,8.333333333333334,1,1,0,0,11,1,5,1,629,810852.13,830839,152775.34,89586.938,4139.189 -9099,11210,20254,20253,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.2603292,8.2297888,0,9,-4,-79.92128,0,-9,-9,2019,13,1,95,95,1,1,0,3.6489151,3.6489151,0,0,0,0,2,0,0,0,2.0245285,0,38.01,55.39,54.1,59.11,5,1,1,0,0,9,1,5,1,629,810852.13,830839,152775.34,89586.938,4139.189 -9100,11211,20255,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.7153645,7.432622,0,0,-917.91309,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,1.5576984,0,18.539986,0,1,1,0,1.9292256,7.8432188,40.37,29.81,-9,-9,3.333333333333333,1,1,0,0,0,13,3,1,717,471180.16,39495.441,11882.686,0,1506.5519 -9101,11212,20256,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.417748,7.7990279,0,0,-1053.7941,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5588031,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,749,766557.44,279542.16,416053.09,0,2052.9578 -9102,11213,20257,20258,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,54,-3,42.568958,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,58.08,43.46,49.32,39.55,8.333333333333334,1,1,0,0,0,8,3,1,470.5,543681.63,453472.63,198345.95,0,2239.3005 -9102,11213,20258,20257,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.5847073,7.8497787,54,3,-106.65996,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1362658,49.32,39.55,58.08,43.46,8.333333333333334,1,1,0,0,0,8,3,1,470.5,543681.63,453472.63,198345.95,0,2239.3005 -9103,11214,20259,20260,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.8881083,6.4101844,9,3,32.64188,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7082195,53,47,40.97,28.18,7,1,1,0,0,0,4,2,1,1645,179615.06,283585.41,70196.781,0,1959.0077 -9103,11214,20260,20259,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.6296616,6.0860729,55,-3,52.970829,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,15.596382,0,120,1,1,0,.63097835,5.7239313,40.97,28.18,53,47,6.666666666666667,1,1,0,0,0,4,2,1,1645,179615.06,283585.41,70196.781,0,1959.0077 -9104,11215,20261,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.6603913,7.5688725,0,0,0,-856.51514,0,-9,-9,2019,9,0,43,39,1,1,0,4.7166591,4.7166591,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,0,0,3,6,3,0,652,-438264.59,77960.867,0,0,1271.2252 -9105,11216,20262,20263,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.4747419,8.532403,0,31,-3,-55.378742,0,3,3,2019,19,7,44,38,1,7,0,12.037171,12.037171,0,0,0,0,14.5,0,0,0,5.3554559,0,28.4,48.15,53,54,6.666666666666667,1,1,0,0,7,12,5,1,287.5,325936.38,434790,97432.555,58146.031,3104.0632 -9105,11216,20263,20262,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9971919,7.9842777,0,8,3,-14.212268,0,-9,-9,2019,9,0,38,38,1,1,0,9.260191,9.260191,0,0,0,0,0,0,0,0,0,0,53,54,28.4,48.15,8,1,1,0,0,1,12,5,1,287.5,325936.38,434790,97432.555,58146.031,3104.0632 -9105,11217,20264,-9,20262,20263,1,0,27,0,0,0,2,2,-9,0,3,8.2698193,8.259346,0,0,0,-1029.043,0,3,2,2019,9,1,42,30,1,1,1,9.8778315,9.8778315,0,0,0,0,2,0,0,0,0,0,43.06,47.68,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,580,174193.25,72789.984,107824.24,58118.16,1302.0675 -9105,11218,20265,-9,20262,20263,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-969.67413,1,3,2,2019,9,1,0,35,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,5,12,1,1,592,-5473.9185,0,0,0,0 -9106,11219,20266,20267,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,7,-1,.38074574,0,3,3,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.86,16.85,54.45,56.22,6.666666666666667,1,1,0,0,0,5,2,0,490.5,-26712.443,-3672.5234,134852.39,0,1985.3588 -9106,11219,20267,20266,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,6.8700838,6.9183264,0,7,1,-44.031479,0,3,3,2019,10,1,12,18,1,1,0,7.724627,7.724627,0,0,0,0,42,1,1,0,0,0,54.45,56.22,42.86,16.85,10,1,1,0,0,8,5,2,0,490.5,-26712.443,-3672.5234,134852.39,0,1985.3588 -9107,11220,20268,20269,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.5063744,8.7528639,53,3,6.3801279,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1529441,8.5788546,53,46,51,46,8,1,1,0,0,0,7,4,1,420.5,1868187.8,1125103.8,441431.16,0,3976.3716 -9107,11220,20269,20268,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,0,0,53,-3,15.046415,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7609539,0,51,46,53,46,8,1,1,0,0,0,7,4,1,420.5,1868187.8,1125103.8,441431.16,0,3976.3716 -9108,11221,20270,20272,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.5317626,6.460762,0,20,3,-17.385643,0,2,2,2019,11,0,5,2,1,0,0,13.178539,13.178539,0,0,0,0,0,1,1,0,0,0,52.19,40.6,51.61,50.58,6.666666666666667,1,1,0,0,11,2,3,1,392,359635.78,260640.94,84771.078,52712.762,1711.4594 -9108,11221,20271,-9,20270,20272,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1013.3177,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,5.1548338,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,2,2,3,1,392,359635.78,260640.94,84771.078,52712.762,1711.4594 -9108,11221,20272,20270,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.0697975,7.9697294,0,20,-3,61.8978,0,-9,-9,2019,9,0,50,40,1,0,0,7.5010161,7.5010161,0,0,0,0,0,1,1,0,0,0,51.61,50.58,52.19,40.6,8.333333333333334,1,1,0,0,9,2,3,1,392,359635.78,260640.94,84771.078,52712.762,1711.4594 -9108,11222,20273,-9,20270,20272,1,0,21,0,0,0,2,2,-9,0,4,7.8544207,7.9365778,0,0,0,-1017.4623,0,2,2,2019,15,5,33,35,1,5,1,8.7489624,8.7489624,0,0,0,0,0,1,1,0,.70864004,0,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,225,351777.34,90553.258,0,0,1065.8646 -9109,11223,20274,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-950.16669,0,2,2,2019,12,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,3.5928352,0,33.53,60.12,-9,-9,1.666666666666667,1,1,1,0,7,12,1,1,697,66430.633,0,0,0,271.65097 -9110,11224,20275,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.3908758,5.2492809,0,0,-910.97766,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9050832,5.1661654,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1132,-251470.02,-12674.938,0,0,900.20966 -9111,11225,20276,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,5.3198667,5.4584394,0,0,-1095.502,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.4218955,62.9,48.63,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1645,227968.67,9002.9434,208421.14,0,455.78235 -9112,11226,20277,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-859.88116,0,-9,-9,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,37.44,27.88,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,235,-228641.81,0,51025.539,0,1433.8794 -9113,11227,20278,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.1155,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.5713739,0,47.78,48.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,497,-379506.06,0,0,0,1278.2953 -9114,11228,20279,-9,20282,20280,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.93634,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 -9114,11228,20280,20282,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,8.3289232,8.5255127,0,13,10,38.361259,0,3,2,2019,11,0,43,40,1,0,0,13.231822,13.231822,0,0,0,0,0,1,1,0,0,0,45.69,57.19,56.92,49.39,8.333333333333334,2,3,0,0,8,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 -9114,11228,20281,-9,20282,20280,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1158.6619,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 -9114,11228,20282,20280,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.5124016,8.4031563,0,11,-10,-6.5786057,0,1,2,2019,12,2,25,25,1,2,0,20.746544,20.746544,0,0,0,0,0,1,1,0,0,0,56.92,49.39,45.69,57.19,8.333333333333334,1,1,0,0,6,8,4,1,425.75,397279.84,110349.79,571387.94,162391.5,5553.0601 -9115,11229,20283,20284,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.5424271,8.5934877,0,29,-1,-89.778854,0,2,3,2019,11,0,38,38,1,0,0,13.924897,13.924897,0,0,0,0,0,0,0,0,6.6895785,0,58.15,52.91,59.53,56.44,8.333333333333334,1,1,0,0,5,5,5,1,1372.5,590628.94,342578.63,296070.66,0,4481.7983 -9115,11229,20284,20283,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.9027395,9.0258999,0,29,1,-100.89217,0,-9,-9,2019,8,0,45,45,1,0,0,18.356174,18.356174,0,0,0,0,0,0,0,0,6.4504905,0,59.53,56.44,58.15,52.91,10,1,1,0,0,7,5,5,1,1372.5,590628.94,342578.63,296070.66,0,4481.7983 -9116,11230,20285,20289,-9,-9,1,0,32,2,3,0,2,2,-9,0,2,0,5.2436533,5.6589293,4,0,56.262444,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.7740293,0,62.07,32.78,62.49,55.09,8.333333333333334,1,1,0,0,3,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 -9116,11230,20286,-9,20285,20289,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-995.57874,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 -9116,11230,20287,-9,20285,20289,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.5881,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 -9116,11230,20288,-9,20285,20289,1,1,9,2,3,1,3,0,-9,0,4,0,0,0,0,0,-949.66248,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 -9116,11230,20289,20285,-9,-9,1,1,32,2,3,0,2,2,-9,0,4,8.4284019,8.3921204,0,4,0,-30.773376,0,-9,-9,2019,6,0,63,60,1,0,0,9.6164913,9.6164913,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.07,32.78,8.333333333333334,1,1,0,0,11,6,3,1,864.59998,142775.28,22131.854,194359.06,104801.66,2134.822 -9117,11231,20290,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.458734,6.2408762,0,0,-890.91565,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7188697,6.4131923,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,349,589382.19,140539.06,111485.93,0,1064.2198 -9118,11232,20291,-9,20293,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1082.256,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,11,2,0,624.33331,-99895.875,0,0,0,1544.4401 -9118,11232,20292,-9,20293,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.04028,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,624.33331,-99895.875,0,0,0,1544.4401 -9118,11232,20293,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,5,6.1876507,6.4789934,0,0,0,-912.35541,0,-9,2,2019,26,12,14,55,1,12,0,5.0159793,5.0159793,0,0,0,0,42,1,1,0,0,0,38.44,29.6,-9,-9,3.333333333333333,1,1,0,1,6,11,2,0,624.33331,-99895.875,0,0,0,1544.4401 -9119,11233,20294,20295,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.5209255,8.4434586,0,6,-1,65.597832,0,3,3,2019,8,0,40,44,1,0,0,12.084401,12.084401,0,0,0,0,0,0,0,0,7.6023073,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,4,5,1,376.5,86830.586,204522.56,83324.547,38660.504,5700.9229 -9119,11233,20295,20294,-9,-9,1,0,42,0,0,0,1,1,1,0,5,8.4657173,8.2988453,0,6,1,147.70654,-9,3,3,2019,10,2,37,0,1,2,0,15.116695,15.116695,0,0,0,0,0,0,0,0,2.6108639,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,2,4,5,1,376.5,86830.586,204522.56,83324.547,38660.504,5700.9229 -9120,11234,20296,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.1080379,8.2684155,0,0,0,-1037.9735,0,-9,-9,2019,10,0,42,40,1,0,0,9.4006796,9.4006796,0,0,0,0,0,0,0,0,0,0,40.05,57.26,-9,-9,6.666666666666667,1,1,0,0,13,11,4,0,696,388424.59,143511.53,162148.3,0,869.50885 -9121,11235,20297,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.2243891,6.5240498,0,0,-933.84479,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.6251822,56.6,23.1,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,720,292389,-43507.789,35759.262,0,1486.6359 -9122,11236,20298,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.5688219,9.5688763,0,0,0,-946.24683,0,2,2,2019,9,0,50,45,1,0,0,37.694664,37.694664,0,0,0,0,0,0,0,0,0,0,45.39,57.93,-9,-9,1.666666666666667,1,1,0,0,7,9,5,1,238,4847053,3685735.8,1028730.2,500628.78,15703.747 -9123,11237,20299,20300,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0525661,7.3816843,46,-1,-32.850941,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1134038,7.1718335,55.19,54.26,42.17,56.08,8.333333333333334,1,1,0,0,0,5,4,1,765.5,1212780.1,897837.88,194308.75,0,3102.8818 -9123,11237,20300,20299,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.5418839,7.9274573,46,1,-76.832016,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1766787,7.7730098,42.17,56.08,55.19,54.26,10,1,1,0,0,7,5,4,1,765.5,1212780.1,897837.88,194308.75,0,3102.8818 -9124,11238,20301,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.0002747,5.9898453,0,0,-1002.9052,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,.54487699,6.3051319,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,167,-88377.891,-24141.441,0,0,398.15942 -9125,11239,20302,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,5.2845888,5.5609436,0,0,-1078.3868,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4489846,54.79,55.86,-9,-9,10,1,1,0,0,0,2,2,0,2348,229178.72,123702.53,100646,0,1439.3816 -9126,11240,20303,20304,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,7.8619814,8.1724234,0,3,-4,26.513517,0,-9,-9,2019,12,2,21,42,1,2,0,18.797201,18.797201,0,0,0,0,0,1,1,0,0,0,45.22,63.14,57.16,56.15,10,1,1,0,0,4,12,5,1,1717.3334,205778.41,8176.0469,297729.69,173452.41,4811.2373 -9126,11240,20304,20303,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.7796116,8.8128881,0,3,4,-3.5467744,0,2,2,2019,8,1,45,40,1,1,0,22.638205,22.638205,0,0,0,0,0,1,1,0,4.6008978,0,57.16,56.15,45.22,63.14,8.333333333333334,1,1,0,0,9,12,5,1,1717.3334,205778.41,8176.0469,297729.69,173452.41,4811.2373 -9126,11240,20305,-9,20303,20304,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.52002,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1717.3334,205778.41,8176.0469,297729.69,173452.41,4811.2373 -9127,11241,20306,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.5830626,6.5486422,0,0,-893.40607,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,8.5801325,0,0,1,1,0,0,6.9246297,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,139,281883.53,9034.5938,127641.46,0,1200.9285 -9128,11242,20307,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-953.65558,0,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,1,0,10,1,0,426,-169791,0,0,0,1454.8198 -9129,11243,20308,20309,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,31,-6,-49.657085,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,2,0,0,0,1.2886935,0,53.37,45.61,54.37,54.8,6.666666666666667,2,3,0,0,1,4,4,1,656.5,1231567.1,1122469.3,142959.77,0,2477.3728 -9129,11243,20309,20308,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.5667057,8.7327061,31,6,39.444366,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.6986113,8.4939318,54.37,54.8,53.37,45.61,8.333333333333334,1,1,0,0,11,4,4,1,656.5,1231567.1,1122469.3,142959.77,0,2477.3728 -9130,11244,20310,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.6127,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,5.2191939,0,49.41,58.28,-9,-9,6.666666666666667,1,1,1,0,6,8,1,1,917,-178351.95,0,0,0,625.31134 -9131,11245,20311,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.7396545,6.9155402,0,0,-922.50195,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9543915,50,47,-9,-9,7,1,1,0,0,0,5,2,0,284,377905.13,122708.74,351304.13,0,1385.6913 -9132,11246,20312,20313,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.8842793,6.0260229,55,-1,-92.473808,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7059183,6.4085898,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,9,2,1,1105,728157,85332.344,495431.38,0,3484.0308 -9132,11246,20313,20312,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.3354459,7.1145215,55,1,128.62668,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1624379,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,1105,728157,85332.344,495431.38,0,3484.0308 -9133,11247,20314,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5146408,8.5416861,0,0,0,-942.01709,0,2,2,2019,25,12,50,50,1,12,0,10.023517,10.023517,0,0,0,0,0,0,0,0,0,0,33.76,45.61,-9,-9,0,1,1,0,1,9,7,4,1,663,268960.59,121067.23,247278.92,0,1453.0087 -9134,11248,20315,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.2095079,8.332468,0,0,0,-885.91699,0,2,2,2019,9,0,40,45,1,0,0,11.955514,11.955514,0,0,0,0,0,0,0,0,2.3535349,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,10,8,4,0,791,-29805.996,54688.723,0,0,1812.5106 -9135,11249,20316,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,5.222343,5.3543591,0,0,0,-1005.0278,0,2,2,2019,11,0,40,40,1,0,0,.58707994,.58707994,0,0,0,0,0,0,0,0,0,0,61.44,37.81,-9,-9,8.333333333333334,1,1,0,0,8,4,2,1,864,21353.803,-71721.297,0,0,-20.621613 -9136,11250,20317,20318,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.63626,7.7698994,0,27,0,-29.325268,0,2,2,2019,14,0,28,15,1,3,0,7.2085805,7.2085805,0,0,0,0,2,0,0,0,0,0,45.9,27.36,39.22,56.75,6,3,4,0,1,10,8,3,0,501,217674.09,119483.47,0,0,645.83557 -9136,11250,20318,20317,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,25,0,-111.8253,0,3,3,2019,14,6,0,37,3,6,0,0,0,0,0,0,0,14.5,0,0,0,.81390691,0,39.22,56.75,45.9,27.36,3.333333333333333,3,4,0,1,11,8,3,0,501,217674.09,119483.47,0,0,645.83557 -9136,11251,20319,-9,20318,20317,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-865.22046,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,3.8651044,0,55.66,45.88,-9,-9,6.666666666666667,3,4,0,0,4,8,1,0,966,76731.852,0,0,0,-397.76038 -9137,11252,20320,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.8967714,6.6588378,0,0,-1013.768,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9004803,66.61,45.12,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,2359,534935.63,232397.56,313499.28,0,1085.8828 -9138,11253,20321,20322,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,38,-5,-118.45522,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,42.22,55,53,7,4,2,0,0,7,8,2,1,2362.5,1452516.5,844055.88,364611.13,0,1143.1061 -9138,11253,20322,20321,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.4114928,6.6896744,0,9,5,-26.945501,0,-9,-9,2019,6,0,20,20,1,0,0,8.3304195,8.3304195,0,0,0,0,0,1,1,0,0,0,55,53,40.64,42.22,8.333333333333334,1,1,0,0,11,8,2,1,2362.5,1452516.5,844055.88,364611.13,0,1143.1061 -9139,11254,20323,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1071.9435,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,31.94,-9,-9,5,1,1,0,0,10,12,1,0,897,-378675.06,0,155783.38,0,1316.7566 -9140,11255,20324,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,8.010787,7.6731391,0,0,-945.37299,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.7284174,7.3503499,48.43,47.89,-9,-9,8.333333333333334,1,1,0,1,3,7,3,0,376,537932.19,244987.22,335556.16,0,1234.7524 -9141,11256,20325,-9,20328,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-990.49011,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,5,1,1,1111,-490723.56,0,0,0,559.97754 -9141,11257,20326,20328,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.8806667,8.8776779,5.6034546,2,2,60.436901,0,-9,-9,2019,8,0,50,40,1,0,0,14.600131,14.600131,0,0,0,0,0,0,0,0,6.0818095,0,54.79,55.86,49.37,56.01,8.333333333333334,1,1,0,0,3,5,5,1,1122.6666,505600.56,307953.13,244254.11,175492.83,4539.7651 -9141,11257,20327,-9,-9,20326,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-962.23206,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,5,1,1122.6666,505600.56,307953.13,244254.11,175492.83,4539.7651 -9141,11257,20328,20326,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.3765001,8.6562214,0,2,-2,-59.509903,0,2,2,2019,4,0,45,50,1,0,0,14.902771,14.902771,0,0,0,0,2,0,0,0,0,0,49.37,56.01,54.79,55.86,8.333333333333334,1,1,0,0,5,5,5,1,1122.6666,505600.56,307953.13,244254.11,175492.83,4539.7651 -9142,11258,20329,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.0973721,7.7784925,6.7556267,0,0,-985.58392,0,3,-9,2019,5,0,15,10,1,0,0,9.9266777,9.9266777,0,0,0,0,0,0,0,0,0,6.4945588,53.76,44.54,-9,-9,6.666666666666667,3,4,0,0,11,8,3,0,3112,144004.14,45396.68,0,0,1006.6378 -9143,11259,20330,20331,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2833738,9.6583691,8.2008953,6,2,-43.273045,0,-9,2,2019,10,0,50,50,1,0,0,28.639492,28.639492,0,0,0,0,7,0,0,0,0,8.4845142,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,7,2,5,1,742.5,152826.55,151645.16,151451.47,87927.766,5897.9009 -9143,11259,20331,20330,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.4404745,7.3689489,6.8479652,6,-2,-112.10302,0,2,2,2019,15,5,11,11,1,5,0,6.0109587,6.0109587,0,0,0,0,0,0,0,0,0,6.3534627,51.24,58.84,54.2,57.49,10,1,1,0,0,7,2,5,1,742.5,152826.55,151645.16,151451.47,87927.766,5897.9009 -9144,11260,20332,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.1123638,8.8311033,0,0,0,-1074.761,0,2,-9,2019,8,0,37,40,1,0,1,24.02046,24.02046,0,0,0,0,0,1,1,0,.85298383,0,40.87,57.99,-9,-9,6.666666666666667,2,3,0,0,8,7,5,1,1295,-77144.172,45790.309,0,0,2880.782 -9145,11261,20333,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,7.7067118,7.6834221,0,0,-916.38995,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7111702,7.9201355,59.6,52.5,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,309,454880.19,363832.72,383532.75,31084.23,1355.8278 -9146,11262,20334,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,4.6080785,6.0615501,5.8936448,0,0,-924.79645,0,1,1,2019,10,0,25,24,1,0,0,.37274614,.37274614,0,0,0,0,0,1,1,0,6.4881296,0,52.82,53.97,-9,-9,8.333333333333334,4,2,0,0,10,10,2,0,777,-313423.34,123446.82,0,0,958.43768 -9147,11263,20335,20336,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.5566921,6.0556855,27,0,-7.4018903,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,1.3173159,0,0,1,1,0,0,6.5240912,58.15,52.91,65.22,38.75,8.333333333333334,1,1,0,0,0,7,2,0,1754,669328.69,28993.111,483264.06,0,1985.2981 -9147,11263,20336,20335,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.3728504,6.1217618,24,0,103.61646,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6696587,6.1576691,65.22,38.75,58.15,52.91,8.333333333333334,1,1,0,0,0,7,2,0,1754,669328.69,28993.111,483264.06,0,1985.2981 -9148,11264,20337,20338,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,7.0224767,7.0757523,0,4,6,55.317989,0,3,-9,2019,6,0,20,20,1,0,0,8.7091494,8.7091494,0,0,0,0,0,1,1,0,7.9012108,0,61.12,51.57,57.06,57.76,8.333333333333334,1,1,0,0,12,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 -9148,11264,20338,20337,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.4049797,8.3843985,0,4,-6,48.284931,0,-9,-9,2019,8,0,41,38,1,0,0,9.6898813,9.6898813,0,0,0,0,0,1,1,0,7.639627,0,57.06,57.76,61.12,51.57,8.333333333333334,1,1,0,0,4,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 -9148,11264,20339,-9,20338,20337,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1135.3387,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 -9148,11264,20340,-9,20338,20337,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.772,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,581.25,1446487.1,139469.44,885350.69,0,4150.166 -9149,11265,20341,20342,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.5835848,8.7331877,0,13,-16,157.89172,0,2,2,2019,7,0,40,40,1,0,0,20.125414,20.125414,0,0,0,0,0,0,0,0,0,0,54.41,44.37,26.64,34.19,8.333333333333334,1,1,0,0,10,4,5,1,366.5,-37940.168,113244.66,287261.06,112289.06,3168.2939 -9149,11265,20342,20341,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,0,7.4996166,7.5023537,13,16,26.567053,0,3,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,7.6007318,26.64,34.19,54.41,44.37,1.666666666666667,1,1,0,0,8,4,5,1,366.5,-37940.168,113244.66,287261.06,112289.06,3168.2939 -9150,11266,20343,20346,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,7.9505057,7.8713307,0,9,12,-73.867821,0,-9,-9,2019,20,8,38,38,1,8,0,6.6307034,6.6307034,0,0,0,0,0,1,1,0,.34059694,0,49.04,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 -9150,11266,20344,-9,20346,20343,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.9576,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 -9150,11266,20345,-9,20346,20343,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.0895,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 -9150,11266,20346,20343,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.4580994,8.4598465,0,9,-12,19.896362,0,2,2,2019,10,0,37,37,1,0,0,13.912483,13.912483,0,0,0,0,2,1,1,0,0,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,10,12,4,1,446.5,324482.91,331114.47,115962.34,50237.203,2596.5908 -9151,11267,20347,20348,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4723067,7.8124304,23,1,-31.896717,0,2,2,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.9514937,7.6810169,43.86,48.88,56.58,49.75,8.333333333333334,1,1,0,0,5,4,5,1,1129,2735760.5,1611894.8,665357.88,0,4770.6973 -9151,11267,20348,20347,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.9027872,8.8754711,23,-1,9.2751207,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9805889,8.8320799,56.58,49.75,43.86,48.88,8.333333333333334,1,1,0,0,7,4,5,1,1129,2735760.5,1611894.8,665357.88,0,4770.6973 -9152,11268,20349,-9,20352,20350,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2783,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 -9152,11268,20350,20352,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.011426,8.3158855,0,16,0,-83.81356,0,2,2,2019,16,4,40,37,1,4,0,10.681211,10.681211,0,0,0,0,0,1,1,0,2.0521228,0,36.62,58.96,48.87,58.55,6.666666666666667,1,1,0,0,11,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 -9152,11268,20351,-9,20352,20350,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.63019,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 -9152,11268,20352,20350,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.0879087,8.0051517,0,10,0,-16.894011,0,-9,-9,2019,10,0,27,30,1,0,0,11.301866,11.301866,0,0,0,0,0,1,1,0,0,0,48.87,58.55,36.62,58.96,6.666666666666667,1,1,0,0,3,10,4,1,1526.75,370486.72,199672.19,349723.75,133076.33,2906.4678 -9153,11269,20353,20354,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,6.9296312,6.5031562,0,20,3,-91.207855,0,-9,-9,2019,6,0,12,12,1,0,0,6.233583,6.233583,0,0,0,0,0,0,0,0,0,0,62.39,56.71,42.09,39.2,10,1,1,0,0,7,12,5,1,1396.5,760265.25,808868.69,101285.53,30111.902,3404.3486 -9153,11269,20354,20353,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,8.9327612,8.9055071,0,20,-3,-12.355134,0,-9,-9,2019,11,1,40,45,1,1,0,21.198936,21.198936,0,0,0,0,0,0,0,0,0,0,42.09,39.2,62.39,56.71,3.333333333333333,1,1,0,1,7,12,5,1,1396.5,760265.25,808868.69,101285.53,30111.902,3404.3486 -9154,11270,20355,-9,20358,20356,1,1,22,0,1,0,2,2,-9,0,4,7.6709323,7.5461345,0,0,0,-1042.7415,0,2,1,2019,8,0,35,30,1,0,1,6.6038294,6.6038294,0,0,0,0,0,1,1,0,0,0,49.38,58.29,-9,-9,5,4,2,0,0,3,8,3,1,620,116573.39,35290.457,0,0,980.62793 -9154,11271,20356,20358,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.1612635,8.9235888,0,6,4,13.838306,0,-9,-9,2019,9,0,36,37,1,0,0,25.640596,25.640596,0,0,0,0,0,1,1,0,3.8139775,0,54.2,57.49,51,54,8.333333333333334,3,4,0,0,9,8,5,1,387,943290.75,546611.44,453674.03,153901.77,5051.5542 -9154,11271,20357,-9,20358,20356,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.61755,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,387,943290.75,546611.44,453674.03,153901.77,5051.5542 -9154,11271,20358,20356,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.2434902,8.3977671,0,6,-4,-50.025135,0,2,2,2019,10,0,48,36,1,1,0,10.612494,10.612494,0,0,0,0,0,1,1,0,0,0,51,54,54.2,57.49,8,4,2,0,0,7,8,5,1,387,943290.75,546611.44,453674.03,153901.77,5051.5542 -9155,11272,20359,-9,20360,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-984.99036,-9,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,1,0,0,6,2,0,538,103286.16,0,0,0,2272.7393 -9155,11272,20360,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.7202921,6.9616466,0,0,0,-1126.0282,0,2,-9,2019,23,11,16,16,1,11,0,7.0209846,7.0209846,0,0,0,0,0,1,1,0,0,0,25.86,61.44,-9,-9,6.666666666666667,1,1,0,0,9,6,2,0,538,103286.16,0,0,0,2272.7393 -9155,11272,20361,-9,20360,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.47992,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,4,2,-9,0,0,6,2,0,538,103286.16,0,0,0,2272.7393 -9155,11273,20362,-9,20360,-9,1,0,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-998.36951,-9,2,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,47.21,49.76,-9,-9,6.666666666666667,4,2,0,0,3,6,1,0,816,0,0,0,0,0 -9155,11274,20363,-9,20360,-9,1,1,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1035.9886,-9,2,-9,2019,23,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,38.32,40.9,-9,-9,5,4,2,0,1,0,6,2,0,925,1325.9366,0,0,0,0 -9156,11275,20364,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.2597399,8.1091919,0,0,0,-1019.7402,-9,-9,-9,2019,9,1,43,0,1,1,0,8.6707106,8.6707106,0,0,0,0,0,0,0,0,0,0,41.26,47.48,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,458,223550.58,-30174.416,0,0,1557.7725 -9157,11276,20365,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1104.6042,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1228862,0,59.32,46.98,-9,-9,10,1,1,0,0,6,4,2,1,293,-328152.97,0,0,0,894.34436 -9158,11277,20366,-9,-9,-9,1,0,49,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1009.7661,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,-9,-9,5,1,1,0,0,0,10,1,0,846,11996.519,0,0,0,1643.402 -9159,11278,20367,20368,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.8365836,5.9174809,46,2,-37.596085,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.642858,53.91,39.8,58.32,50.22,8.333333333333334,1,1,0,0,0,2,5,1,510.5,791475.25,0,806159.88,0,3949.5376 -9159,11278,20368,20367,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.7490988,9.0548983,0,14,-2,74.282822,0,3,2,2019,7,0,56,65,1,0,0,14.607858,14.607858,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.91,39.8,10,1,1,0,0,8,2,5,1,510.5,791475.25,0,806159.88,0,3949.5376 -9160,11279,20369,-9,-9,-9,1,1,31,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1022.048,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.21,53.09,-9,-9,5,1,1,0,1,0,11,1,0,595,-197243.66,0,0,0,1219.4427 -9161,11280,20370,-9,20371,20372,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1090.1617,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 -9161,11280,20371,20372,-9,-9,1,0,39,1,4,0,1,1,1,0,4,7.560257,8.1356821,6.6180449,3,-3,-114.78273,-9,-9,-9,2019,16,4,37,0,1,4,0,6.9382129,6.9382129,0,0,0,0,0,1,1,0,6.3397951,0,43.54,59.6,45.56,45.03,5,1,1,0,0,13,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 -9161,11280,20372,20371,-9,-9,1,1,42,1,4,0,2,2,-9,0,3,8.0939569,8.1061678,0,3,3,-203.02547,0,2,2,2019,13,2,28,20,1,2,0,13.377893,13.377893,0,0,0,0,2,1,1,0,0,0,45.56,45.03,43.54,59.6,8.333333333333334,1,1,0,0,12,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 -9161,11280,20373,-9,20371,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-971.14313,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 -9161,11280,20374,-9,20371,-9,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-985.71545,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 -9161,11280,20375,-9,20371,-9,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1168.6167,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,597.66669,227718.84,42154.879,202582.38,107968.55,4389.4453 -9162,11281,20376,20377,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,60,-2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8853683,0,57.16,56.15,55.27,44.81,8.333333333333334,1,1,0,0,3,2,1,1,773,-208529.33,19398.102,0,0,1468.573 -9162,11281,20377,20376,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,60,2,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5542083,0,55.27,44.81,57.16,56.15,8.333333333333334,1,1,0,0,0,2,1,1,773,-208529.33,19398.102,0,0,1468.573 -9163,11282,20378,20379,-9,-9,1,1,49,0,0,0,2,2,-9,0,1,8.8014698,8.8413696,0,6,1,-78.505211,0,3,2,2019,11,1,50,45,1,1,0,11.145627,11.145627,0,0,0,0,0,0,0,0,6.1309757,0,55.78,31.55,57.33,53.46,8.333333333333334,1,1,0,0,7,4,5,1,683,361501.25,57478.414,101724.98,90276.828,3599.3511 -9163,11282,20379,20378,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9038563,7.4174514,0,6,-1,28.391539,0,3,3,2019,11,2,39,24,1,2,0,5.9723434,5.9723434,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.78,31.55,8.333333333333334,1,1,0,0,7,4,5,1,683,361501.25,57478.414,101724.98,90276.828,3599.3511 -9164,11283,20380,20381,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,57,-3,86.074951,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,27,1,1,0,4.2975283,0,32.16,34.32,53,44,5,1,1,0,0,8,7,2,1,578.5,26155,-30630.682,0,0,2655.2754 -9164,11283,20381,20380,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.3546839,6.2828007,57,3,5.2312322,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.5698493,6.8944082,53,44,32.16,34.32,8,1,1,0,0,0,7,2,1,578.5,26155,-30630.682,0,0,2655.2754 -9165,11284,20382,20383,-9,-9,1,0,38,0,0,0,3,3,-9,1,4,0,0,0,7,-2,28.913061,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,0,5,3,0,358.5,108619.18,88064.266,0,0,2338.1096 -9165,11284,20383,20382,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.7275462,7.8823333,0,7,2,-50.330696,0,-9,-9,2019,9,0,40,30,1,1,0,6.6246543,6.6246543,0,0,0,0,0,1,1,0,2.1712596,0,51,56,49,56,8,1,1,0,0,1,5,3,0,358.5,108619.18,88064.266,0,0,2338.1096 -9166,11285,20384,20385,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.029232,7.9962888,50,1,-8.6646786,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,3.9458165,7.8806863,46.45,26.2,37.69,58.7,8.333333333333334,1,1,0,0,0,9,3,1,197.5,1249368.8,454603.63,779820.75,0,2561.8843 -9166,11285,20385,20384,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.2373281,6.0639715,50,-1,139.86896,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,6.0516729,37.69,58.7,46.45,26.2,10,1,1,0,0,0,9,3,1,197.5,1249368.8,454603.63,779820.75,0,2561.8843 -9167,11286,20386,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1107.969,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.55,28.25,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,362,-215662.91,0,0,0,1211.5903 -9168,11287,20387,20388,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,7.3484559,7.2354765,0,4,-6,89.851707,0,-9,-9,2019,14,2,40,40,1,2,0,3.8273234,3.8273234,0,0,0,0,0,1,1,0,0,0,37.93,54.93,57.16,56.15,3.333333333333333,1,1,0,0,7,11,3,1,1008,339949.88,234609.66,255510.06,145366.5,2180.0889 -9168,11287,20388,20387,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.4123607,6.8669839,0,4,6,-17.757696,0,2,2,2019,8,0,98,12,1,0,0,1.7239043,1.7239043,0,0,0,0,28,1,1,0,7.2168918,0,57.16,56.15,37.93,54.93,8.333333333333334,1,1,0,0,11,11,3,1,1008,339949.88,234609.66,255510.06,145366.5,2180.0889 -9168,11288,20389,-9,20388,-9,1,1,27,0,0,0,1,1,-9,0,4,7.4673457,7.6241956,0,0,0,-1018.1498,0,1,-9,2019,12,0,35,40,1,0,1,6.4410295,6.4410295,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,1,4,11,3,1,327,81470.477,32861.836,0,0,685.9718 -9168,11289,20390,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,0,0,0,0,0,-999.60504,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,51.53,-9,-9,10,1,1,1,0,0,11,1,1,765,-82672.305,0,0,0,1441.3707 -9168,11290,20391,-9,-9,-9,1,1,24,0,0,0,3,3,-9,1,4,0,0,0,0,0,-979.96765,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,0,11,1,1,276,18837.383,0,0,0,1832.6302 -9169,11291,20392,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.4929152,7.51089,0,0,0,-1121.7809,0,3,3,2019,10,0,13,13,1,0,0,18.30566,18.30566,0,0,0,0,0,0,0,0,7.2517729,0,42.95,29.14,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,252,561175.25,63448.43,151111.91,70638.414,1141.7775 -9169,11292,20393,-9,20392,-9,1,1,24,0,0,0,2,2,-9,0,4,7.7920847,7.7967267,0,0,0,-940.33081,0,3,-9,2019,8,0,36,38,1,0,1,8.6351013,8.6351013,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,5,3,1,557,-190200.59,100441.3,0,0,685.75726 -9170,11293,20394,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4095044,7.6823783,0,0,-1107.8262,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5912747,63.48,51.85,-9,-9,5,1,1,0,0,0,12,3,1,1850,845401.38,522750.06,179087.53,-31242.396,1775.2506 -9171,11294,20395,20396,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.2274837,9.3454552,0,9,-17,107.70922,0,2,2,2019,1,0,50,35,1,0,0,26.093527,26.093527,0,0,0,0,0,1,1,0,3.7695742,0,52,54.51,54.2,57.49,10,1,1,0,0,10,10,5,1,629,205469.53,22818.133,348127.09,255516.53,5856.2783 -9171,11294,20396,20395,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,0,0,9,17,-8.2199049,0,1,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3646569,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,9,10,5,1,629,205469.53,22818.133,348127.09,255516.53,5856.2783 -9172,11295,20397,20398,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,39,-1,84.110535,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8012195,0,57.16,56.15,62.9,48.63,8.333333333333334,1,1,0,0,0,8,2,1,1148,780306.5,89410.219,580595.31,0,1630.906 -9172,11295,20398,20397,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.4296227,5.3478966,38,1,.77870923,0,3,2,2019,3,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7940187,5.2137475,62.9,48.63,57.16,56.15,10,3,4,0,0,0,8,2,1,1148,780306.5,89410.219,580595.31,0,1630.906 -9173,11296,20399,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1055.2255,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50.34,21.74,-9,-9,5,1,1,0,0,0,12,1,0,397,264514.59,0,0,0,752.60791 -9174,11297,20400,-9,20401,20402,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-987.61176,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 -9174,11297,20401,20402,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.0692415,8.9492769,0,18,0,-33.810184,0,2,2,2019,15,4,45,38,1,4,0,20.624437,20.624437,0,0,0,0,0,1,1,0,8.6906366,0,36.45,62.92,54.1,59.11,6.666666666666667,1,1,0,0,9,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 -9174,11297,20402,20401,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.2359905,9.2274704,0,18,0,21.401567,0,2,1,2019,8,0,38,35,1,0,0,24.348143,24.348143,0,0,0,0,0,1,1,0,3.0851965,0,54.1,59.11,36.45,62.92,8.333333333333334,1,1,0,0,10,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 -9174,11297,20403,-9,20401,20402,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-997.73499,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,595.75,1222377,814492.88,696541.94,479625.66,6792.6602 -9175,11298,20404,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,0,6.5583692,6.1835699,0,0,-1081.5056,0,2,1,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,6.5695405,0,45.84,41.48,-9,-9,5,1,1,1,0,7,9,2,1,902,162689.69,498069.47,0,0,104.34676 -9176,11299,20405,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.6929245,8.3611813,0,0,0,-1023.2343,0,-9,-9,2019,10,0,37,37,1,0,0,18.009096,18.009096,0,0,0,0,2,1,1,0,2.839216,0,50.27,44.25,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,1375,886468.19,575954.38,177148.36,0,2146.4458 -9176,11300,20406,-9,20405,-9,1,1,18,0,0,1,2,0,0,0,4,0,3.8769817,3.9110332,0,0,-1007.1106,-9,2,-9,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,3.4128711,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1149,-322319.78,0,0,0,39.074081 -9177,11301,20407,-9,20410,20409,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-876.44769,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 -9177,11301,20408,-9,20410,20409,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-941.97333,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 -9177,11301,20409,20410,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.2984419,7.9931674,0,1,3,56.971497,-9,-9,-9,2019,3,1,40,0,1,1,0,8.2954321,8.2954321,0,0,0,0,0,1,1,0,0,0,57.16,56.15,31.93,58.41,6.666666666666667,1,1,0,0,0,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 -9177,11301,20410,20409,-9,-9,1,0,25,1,2,0,2,2,-9,0,3,0,0,0,1,-3,-24.077833,0,2,2,2019,16,4,0,10,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,31.93,58.41,57.16,56.15,10,1,1,1,0,6,4,3,0,1423.5,20466.457,44213.645,0,0,2734.3552 -9178,11302,20411,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.935544,8.9966536,0,0,0,-915.49719,0,3,3,2019,10,0,43,48,1,0,0,22.284735,22.284735,0,0,0,0,0,1,1,0,2.0348239,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,472,735898.44,603113.81,285151.81,0,2346.5637 -9179,11303,20412,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.0129042,7.9618635,0,0,0,-1002.154,0,2,2,2019,16,5,38,40,1,5,0,9.3458834,9.3458834,0,0,0,0,0,1,1,0,2.6047297,0,39.42,60.59,-9,-9,3.333333333333333,1,1,0,0,8,7,4,1,1842,9790.6719,121184.57,0,0,923.13611 -9180,11304,20413,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.65454,1,1,1,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,25.39,66.76000000000001,-9,-9,1.666666666666667,3,4,0,1,1,4,1,0,599,0,0,0,0,449.09827 -9181,11305,20414,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,9.114439,8.925602,3.9372067,0,0,-1051.937,0,-9,-9,2019,6,0,38,36,1,0,0,23.414341,23.414341,0,0,0,0,0,1,1,0,8.5374994,0,48.21,53.75,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,1280,396878.34,424933.66,207084.58,90766.906,4875.4463 -9181,11305,20415,-9,20414,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.35205,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1280,396878.34,424933.66,207084.58,90766.906,4875.4463 -9182,11306,20416,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.6951761,8.472271,0,0,0,-1159.7474,0,3,2,2019,14,2,40,40,1,2,0,18.797613,18.797613,0,0,0,0,0,0,0,0,3.5493467,0,50.91,46.91,-9,-9,6.666666666666667,1,1,0,0,11,2,5,1,505,-247621.47,35675.652,0,0,2129.6609 -9183,11307,20417,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.9335,0,-9,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.1398954,0,0,1,1,0,0,0,64.65000000000001,24.14,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,335,-93300.125,71496.648,190408.64,0,1460.2644 -9184,11308,20418,20419,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,67,-8,0,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.63,56.34,56,44,6.666666666666667,1,1,0,0,0,9,1,1,413,688661.81,0,372141.19,0,1356.6177 -9184,11308,20419,20418,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,67,8,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,47.284706,0,0,1,1,0,3.9782162,0,56,44,26.63,56.34,8,1,1,0,0,0,9,1,1,413,688661.81,0,372141.19,0,1356.6177 -9185,11309,20420,20421,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,5.6854181,5.7079797,8,1,50.327251,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0755405,6.0292244,44.25,56.64,27.7,50.61,6.666666666666667,1,1,0,0,4,4,3,1,1165.5,592886.63,503519.44,94451.391,5378.9106,2260.3474 -9185,11309,20421,20420,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.3322339,7.4111147,8,-1,125.88304,0,-9,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1496348,7.1899219,27.7,50.61,44.25,56.64,3.333333333333333,1,1,0,0,6,4,3,1,1165.5,592886.63,503519.44,94451.391,5378.9106,2260.3474 -9186,11310,20422,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.7450614,7.6167021,0,0,-1016.715,0,1,1,2019,11,0,0,0,4,0,0,0,0,1,3.4087429,0,25.627693,2,1,1,0,7.216156,8.1512499,57.27,41.15,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,504,582309.38,246316.34,184466.52,0,1978.1627 -9187,11311,20423,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1033.7032,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.81,28.45,-9,-9,5,1,1,0,0,0,13,1,0,393,-116265.23,0,0,0,1509.9922 -9188,11312,20424,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.7218494,8.9134388,0,0,0,-1029.2677,0,2,2,2019,11,0,50,47,1,0,0,15.399759,15.399759,0,0,0,0,0,0,0,0,0,0,59.45,33.75,-9,-9,3.333333333333333,1,1,0,0,8,12,5,1,653,517392.31,65029.379,345249.63,79052.523,2610.3635 -9189,11313,20425,-9,-9,20426,1,1,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-914.52295,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,1,0,10,4,1,831.66669,199168.94,-33543.395,186396.66,149717.19,3148.6765 -9189,11313,20426,20427,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3575935,7.9907084,0,5,0,-89.335709,0,-9,-9,2019,14,2,40,0,1,2,0,12.177238,12.177238,0,0,0,0,0,1,1,0,.76998502,0,46.1,59.99,41.23,53.22,5,1,1,0,0,4,10,4,1,831.66669,199168.94,-33543.395,186396.66,149717.19,3148.6765 -9189,11313,20427,20426,-9,-9,1,0,27,0,0,0,2,2,1,0,2,7.9672909,8.1186895,0,5,0,105.2334,-9,-9,-9,2019,16,4,44,0,1,4,0,9.8625355,9.8625355,0,0,0,0,0,1,1,0,0,0,41.23,53.22,46.1,59.99,5,1,1,0,0,4,10,4,1,831.66669,199168.94,-33543.395,186396.66,149717.19,3148.6765 -9190,11314,20428,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-959.81268,-9,2,2,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,28.65,25.24,-9,-9,0,1,1,0,1,0,9,2,0,654,29872.145,-126258.27,384596.63,132915.25,1345.1179 -9190,11315,20429,-9,20428,-9,1,1,34,0,0,0,2,2,-9,0,2,7.925139,7.8622885,0,0,0,-1017.1508,-9,2,2,2019,22,9,30,0,1,9,0,9.4870186,9.4870186,0,0,0,0,14.5,1,1,0,0,0,43.84,47.84,-9,-9,6.666666666666667,1,1,0,1,10,9,4,0,401,-237039.14,0,0,0,1620.457 -9191,11316,20430,20431,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.2304125,7.5528774,50,-7,17.629988,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2818055,7.4496908,47.61,53.7,49.3,39.64,8.333333333333334,1,1,0,0,0,10,3,1,779,980898.38,501954.44,457829.75,0,2598.749 -9191,11316,20431,20430,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,6.5832486,6.5703745,50,7,53.170643,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3064041,6.2764692,49.3,39.64,47.61,53.7,8.333333333333334,1,1,0,0,0,10,3,1,779,980898.38,501954.44,457829.75,0,2598.749 -9192,11317,20432,20433,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,3.5815122,3.7014582,56,-2,-108.27206,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,6.9891543,0,0,1,1,0,0,3.6298683,41.17,17.23,55,45,6.666666666666667,1,1,0,0,0,5,3,1,396.5,954550,271454.97,398440.94,0,2486.5696 -9192,11317,20433,20432,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.9294987,8.1524668,56,2,126.06826,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.8969107,7.9463606,55,45,41.17,17.23,8,1,1,0,0,0,5,3,1,396.5,954550,271454.97,398440.94,0,2486.5696 -9193,11318,20434,20435,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,9.1597052,9.1419773,5.9246988,6,0,137.89557,0,3,3,2019,6,0,30,30,1,0,0,44.929604,44.929604,0,0,0,0,0,1,1,0,6.6789846,6.3219595,58.72,51.29,58.15,52.91,8.333333333333334,1,1,0,0,7,9,5,1,202,1467229,656591.13,676361,0,6214.6377 -9193,11318,20435,20434,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.3498654,6.9697742,6,0,-87.828613,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8347654,58.15,52.91,58.72,51.29,10,1,1,0,0,3,9,5,1,202,1467229,656591.13,676361,0,6214.6377 -9194,11319,20436,20437,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,51,-2,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.2,49.4,56.59,39.36,8.333333333333334,1,1,0,0,0,7,1,1,920.5,335749.47,0,241765.78,0,655.34412 -9194,11319,20437,20436,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,51,2,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.59,39.36,55.2,49.4,8.333333333333334,1,1,0,0,9,7,1,1,920.5,335749.47,0,241765.78,0,655.34412 -9194,11320,20438,-9,20437,20436,1,0,31,0,0,0,2,2,-9,0,3,7.6654239,7.7154045,0,0,0,-1034.172,-9,3,2,2019,5,0,30,0,1,0,0,8.1996126,8.1996126,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,406,-305184.22,0,0,0,1263.8049 -9195,11321,20439,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-944.53943,0,3,-9,2019,22,10,0,49,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,39.47,-9,-9,6.666666666666667,1,1,1,0,9,9,2,0,1997,0,0,0,0,346.63388 -9196,11322,20440,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.2769327,7.9697742,0,0,0,-1021.754,0,-9,-9,2019,12,0,38,38,1,0,0,9.049346,9.049346,0,0,0,0,0,0,0,0,0,0,42.68,40.36,-9,-9,1.666666666666667,1,1,0,0,8,8,4,0,211,778401.19,461997.97,358333.03,42790.824,1344.7142 -9196,11323,20441,-9,20440,-9,1,1,26,0,0,0,2,2,-9,0,3,7.6910596,7.4522142,0,0,0,-1057.5361,0,2,-9,2019,6,0,9,40,1,0,1,24.41917,24.41917,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,124,-100590.13,0,0,0,662.84302 -9197,11324,20442,20443,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,51,3,11.837179,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,377,41378.555,24612.703,181608.13,0,1429.9371 -9197,11324,20443,20442,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,4.55126,4.512392,51,-3,1.2881235,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7332659,4.2484837,57.16,56.15,55.19,54.26,10,1,1,0,0,0,4,2,1,377,41378.555,24612.703,181608.13,0,1429.9371 -9198,11325,20444,20445,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.9287133,8.0664892,6,-5,19.271193,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.653193,7.8927045,48.05,46.39,57.57,49.69,8.333333333333334,1,1,0,0,4,13,4,1,366,75158.828,-78366.43,128365.18,76869.609,3599.1504 -9198,11325,20445,20444,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.1279736,7.8573003,0,6,5,15.439566,0,2,3,2019,8,0,32,29,1,0,0,11.504829,11.504829,0,0,0,0,0,1,1,0,.4331165,0,57.57,49.69,48.05,46.39,8.333333333333334,1,1,0,0,6,13,4,1,366,75158.828,-78366.43,128365.18,76869.609,3599.1504 -9199,11326,20446,20447,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,9.6217623,9.7534981,31,2,-10.245195,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,7,0,0,0,0,9.9434462,42.28,50.79,51.66,54.88,8.333333333333334,2,3,0,0,8,7,5,1,424,2027481.8,1569559,503768.63,0,9452.252 -9199,11326,20447,20446,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9002733,8.4009333,0,31,-2,-60.718819,0,2,2,2019,11,0,48,38,1,0,0,6.4081326,6.4081326,0,0,0,0,42,0,0,0,0,0,51.66,54.88,42.28,50.79,8.333333333333334,2,3,0,0,13,7,5,1,424,2027481.8,1569559,503768.63,0,9452.252 -9200,11327,20448,20449,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.2310576,7.5762224,6.7015328,49,0,-82.283974,0,3,3,2019,9,0,10,8,1,0,0,10.196236,10.196236,0,0,0,0,0,1,1,0,5.1351118,6.6834493,59.14,52.5,50.34,56.4,8.333333333333334,1,1,0,0,8,2,4,1,345,838029.75,647443.88,254234.25,0,3444.2546 -9200,11327,20449,20448,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.03016,8.1092243,49,0,77.7714,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1222596,7.5982647,50.34,56.4,59.14,52.5,8.333333333333334,1,1,0,0,0,2,4,1,345,838029.75,647443.88,254234.25,0,3444.2546 -9201,11328,20450,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.067369,7.4008918,0,0,0,-949.11609,0,3,3,2019,16,6,20,29,1,6,0,6.2758212,6.2758212,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,653,74735.773,0,88405.578,25631.596,788.85858 -9202,11329,20451,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.0657749,6.986866,0,0,-995.66156,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,3.8132725,0,0,0,1,1,0,3.4891889,7.0877295,57.34,21.46,-9,-9,5,1,1,0,0,0,9,3,1,239,567270.75,161183.77,292070,0,1445.4404 -9203,11330,20452,20454,-9,-9,1,0,51,0,1,0,3,3,-9,1,2,0,0,0,34,-7,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51.39,21.21,51,49,6.666666666666667,1,1,0,0,0,13,1,0,794,49560.828,0,0,0,1689.8667 -9203,11330,20453,-9,20452,20454,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-992.00537,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,1,0,794,49560.828,0,0,0,1689.8667 -9203,11330,20454,20452,-9,-9,1,1,58,0,1,0,3,3,-9,0,3,0,0,0,34,7,0,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,51.39,21.21,7,1,1,1,0,0,13,1,0,794,49560.828,0,0,0,1689.8667 -9204,11331,20455,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.0995035,5.3850231,0,0,-971.297,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,2.7321484,0,0,1,1,0,5.706069,5.2358861,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,323,55023.078,0,0,0,2126.1045 -9205,11332,20456,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4965353,7.3419967,0,0,0,-1004.3857,0,3,-9,2019,4,1,28,44,1,1,0,8.3277092,8.3277092,0,0,0,0,0,1,1,0,7.0408545,0,62.66,52.4,-9,-9,10,3,4,0,0,10,8,3,1,1568,247829.56,156118.45,0,0,1586.7415 -9206,11333,20457,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,7.2822986,6.6824751,0,0,-1072.7688,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8511879,6.8190598,56.02,44.25,-9,-9,8.333333333333334,1,1,0,0,7,6,2,1,716,325800.25,79428.305,49107.449,0,1837.3014 -9207,11334,20458,20460,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.2874193,8.2042103,0,19,-1,-75.410973,0,2,3,2019,9,0,37,37,1,0,0,14.999582,14.999582,0,0,0,0,0,1,1,0,2.4600201,0,54.2,57.49,52.79,51.64,8.333333333333334,1,1,0,0,10,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 -9207,11334,20459,-9,20460,20458,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1087.6748,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 -9207,11334,20460,20458,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1928129,8.2874451,0,9,1,46.128979,0,-9,-9,2019,9,0,42,20,1,0,0,10.470505,10.470505,0,0,0,0,0,1,1,0,1.0572331,0,52.79,51.64,54.2,57.49,8.333333333333334,1,1,0,0,10,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 -9207,11334,20461,-9,20460,20458,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1003.5865,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,13,4,1,1092,297386.06,284519.94,83217.969,66525.914,3205.6196 -9208,11335,20462,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1194.2336,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.980978,0,52.06,32.02,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,719,-90343.836,-7848.1416,280884.91,0,784.83417 -9209,11336,20463,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.0470276,8.0474148,0,0,-1057.8655,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.3711739,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,104,966408.19,633346.5,0,0,1844.7054 -9210,11337,20464,20465,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,55,-2,-106.83152,0,3,3,2019,25,10,0,0,4,10,0,0,0,1,0,121.43642,0,0,1,1,0,0,0,49.03,13.18,52.94,49.78,5,1,1,0,0,0,5,2,1,584.5,641316.88,71201.57,132898.73,0,1705.1709 -9210,11337,20465,20464,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.3526025,6.0965929,55,2,17.204222,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.1360803,6.1936584,52.94,49.78,49.03,13.18,8.333333333333334,1,1,0,0,0,5,2,1,584.5,641316.88,71201.57,132898.73,0,1705.1709 -9211,11338,20466,20467,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5840693,8.8109636,0,3,3,-55.119732,0,-9,-9,2019,12,1,60,60,1,1,0,11.425285,11.425285,0,0,0,0,0,0,0,0,0,0,52.4,52.91,35.32,58.41,8.333333333333334,1,1,0,0,2,10,4,1,290.5,1578031.5,1508961.1,115475.3,0,1526.5542 -9211,11338,20467,20466,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,2.0545161,2.0493875,0,3,-3,-77.132431,0,-9,-9,2019,15,4,43,35,1,4,0,.018388161,.018388161,0,0,0,0,0,0,0,0,0,0,35.32,58.41,52.4,52.91,3.333333333333333,1,1,0,0,9,10,4,1,290.5,1578031.5,1508961.1,115475.3,0,1526.5542 -9212,11339,20468,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.4209361,8.3799419,7.3831658,0,0,-1103.0125,0,3,2,2019,19,7,25,25,1,7,0,9.1786079,9.1786079,0,0,0,0,7,0,0,0,0,7.7087121,33.83,56.03,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,360,495801.41,133817.23,259203.66,0,1337.0673 -9212,11340,20469,-9,20468,-9,1,1,23,0,0,0,2,2,-9,0,4,7.6504092,7.798605,0,0,0,-1001.2305,0,1,-9,2019,10,0,40,0,1,1,1,5.5553241,5.5553241,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,3,1,2248,162946.73,0,0,0,493.94092 -9213,11341,20470,20471,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7187529,8.716074,0,10,-1,47.034466,0,3,3,2019,11,0,25,27,1,1,0,26.006247,26.006247,0,0,0,0,2,1,1,0,0,0,49,55,51,56,7,1,1,0,0,13,8,5,1,1354,755703.13,401625.88,430504.84,274279.94,4996.3188 -9213,11341,20471,20470,-9,-9,1,1,44,0,2,0,3,3,-9,0,4,8.8543644,8.6950798,0,25,1,-52.337807,0,2,2,2019,9,0,42,40,1,1,0,16.276747,16.276747,0,0,0,0,2,1,1,0,0,0,51,56,49,55,7,2,3,0,0,9,8,5,1,1354,755703.13,401625.88,430504.84,274279.94,4996.3188 -9214,11342,20472,20473,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.7377262,7.9559245,6.7518148,9,4,-20.394508,0,3,3,2019,10,0,43,42,1,0,0,6.8186622,6.8186622,0,0,0,0,0,0,0,0,0,6.5076513,59.46,46.99,48,48,6.666666666666667,1,1,0,0,10,11,4,1,2667,393337.63,257658.22,87455.484,0,2250.228 -9214,11342,20473,20472,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.4295731,7.3246818,0,9,-4,57.76535,0,2,2,2019,10,0,40,45,1,0,0,4.1229916,4.1229916,0,0,0,0,0,0,0,0,2.0389929,0,48,48,59.46,46.99,6.666666666666667,1,1,0,0,10,11,4,1,2667,393337.63,257658.22,87455.484,0,2250.228 -9215,11343,20474,20477,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,0,0,0,6,4,-37.423248,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,42.46,52.82,53.97,5,1,1,1,0,0,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 -9215,11343,20475,-9,20477,20474,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.4938,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 -9215,11343,20476,-9,20477,20474,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.85541,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 -9215,11343,20477,20474,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,6.8510261,6.8310356,0,6,-4,10.024618,0,2,3,2019,10,0,20,4,1,0,0,5.5415344,5.5415344,0,0,0,0,0,1,1,0,0,0,52.82,53.97,19.42,42.46,6.666666666666667,1,1,0,0,5,12,2,0,1186,121820.05,32225.838,0,0,2080.6135 -9216,11344,20478,-9,-9,-9,1,1,41,0,0,0,3,3,-9,1,2,0,0,0,0,0,-980.26221,0,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,33.32,37.85,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,287,65660.617,0,0,0,1787.8176 -9216,11345,20479,-9,-9,20478,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-894.00793,-9,-9,3,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,253,284271.41,0,0,0,752.40326 -9217,11346,20480,20482,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,8.7764597,8.7263517,0,10,-1,-69.518059,0,-9,-9,2019,9,0,30,30,1,0,0,21.710779,21.710779,0,0,0,0,0,1,1,0,7.2388687,0,46.04,35.51,63.41,39.7,6.666666666666667,2,3,0,0,12,5,5,1,473.33334,915845.81,709683.69,236338.08,74057.523,6359.7534 -9217,11346,20481,-9,20480,20482,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.87946,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,5,5,1,473.33334,915845.81,709683.69,236338.08,74057.523,6359.7534 -9217,11346,20482,20480,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.4935322,8.4781179,0,18,1,-7.8093939,0,2,2,2019,8,0,37,37,1,0,0,20.802061,20.802061,0,0,0,0,0,1,1,0,8.6725321,0,63.41,39.7,46.04,35.51,8.333333333333334,2,3,0,0,12,5,5,1,473.33334,915845.81,709683.69,236338.08,74057.523,6359.7534 -9218,11347,20483,20484,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.0757556,6.9756489,57,-2,-11.925282,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3447342,6.9974403,57.48,47.92,58.15,52.91,8.333333333333334,1,1,0,0,0,5,5,1,330.5,2094186,1082619,812532.5,0,8238.4336 -9218,11347,20484,20483,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.8878393,8.856946,57,2,68.74968,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8938837,8.7818527,58.15,52.91,57.48,47.92,8.333333333333334,1,1,0,0,1,5,5,1,330.5,2094186,1082619,812532.5,0,8238.4336 -9219,11348,20485,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1066.8242,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,7,1,1,0,1,0,13,1,1,628,-116473.65,0,157918.77,0,523.15863 -9220,11349,20486,20488,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,7.7690911,8.3401394,0,7,-4,-146.27156,0,2,2,2019,7,1,45,38,1,1,0,7.9071894,7.9071894,0,0,0,0,0,1,1,0,0,0,43.96,62.06,51.14,60.45,8.333333333333334,1,1,0,0,7,9,4,1,551.66669,381834.16,111691.2,441726.91,196207.44,2434.625 -9220,11349,20487,-9,20486,20488,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1175.1372,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,551.66669,381834.16,111691.2,441726.91,196207.44,2434.625 -9220,11349,20488,20486,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,7.8716269,8.1070099,0,7,4,93.893684,0,-9,-9,2019,13,3,8,40,1,3,0,31.825596,31.825596,0,0,0,0,0,1,1,0,0,0,51.14,60.45,43.96,62.06,5,1,1,0,0,7,9,4,1,551.66669,381834.16,111691.2,441726.91,196207.44,2434.625 -9221,11350,20489,20491,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,8.6767178,8.6296492,0,10,-3,-63.806938,0,2,3,2019,13,1,51,25,1,1,0,11.803256,11.803256,0,0,0,0,0,1,1,0,0,0,40.48,62.56,57.16,56.15,5,1,1,0,1,13,2,5,1,953.66669,669652.25,371627.34,502376.13,92979.375,4465.4854 -9221,11350,20490,-9,20489,20491,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.7004,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,953.66669,669652.25,371627.34,502376.13,92979.375,4465.4854 -9221,11350,20491,20489,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.0914011,8.873394,0,10,3,39.451942,0,2,2,2019,7,0,57,52,1,0,0,15.940647,15.940647,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.48,62.56,8.333333333333334,1,1,0,1,13,2,5,1,953.66669,669652.25,371627.34,502376.13,92979.375,4465.4854 -9222,11351,20492,-9,20493,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1134.6428,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,3,1,403,-102255.76,0,0,0,1395.5205 -9222,11351,20493,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.5459714,7.5930643,0,0,0,-951.87628,0,-9,-9,2019,31,11,23,35,1,11,0,10.675197,10.675197,0,0,0,0,2,1,0,1,0,0,9.300000000000001,53.83,-9,-9,0,1,1,0,1,11,11,3,1,403,-102255.76,0,0,0,1395.5205 -9223,11352,20494,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.4037218,9.3628311,0,0,0,-1077.9613,0,3,2,2019,14,2,53,50,1,2,0,18.316357,18.316357,0,0,0,0,0,0,0,0,7.4593039,0,41.04,54.03,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,518,222310.38,96456.156,469088.66,287327.09,3607.179 -9224,11353,20495,20496,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.5358419,8.5139551,0,29,0,-96.906937,0,-9,-9,2019,13,3,40,37,1,3,0,15.939359,15.939359,0,0,0,0,0,0,0,0,0,0,51,49,52.23,55.6,5,3,4,0,0,9,8,5,1,1146,562681.44,103843.22,355520.81,54110.164,3310.6714 -9224,11353,20496,20495,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.29772,7.9662728,0,26,0,7.1891451,0,-9,-9,2019,11,0,46,50,1,0,0,12.112392,12.112392,0,0,0,0,0,0,0,0,0,0,52.23,55.6,51,49,6.666666666666667,3,4,0,0,7,8,5,1,1146,562681.44,103843.22,355520.81,54110.164,3310.6714 -9224,11354,20497,-9,20496,20495,1,1,26,0,0,0,1,1,-9,0,4,8.6049681,8.4929323,0,0,0,-946.78772,0,1,1,2019,11,0,40,45,1,0,1,12.465065,12.465065,0,0,0,0,0,0,0,0,4.3642526,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,4,1,147,0,0,0,0,2941.1995 -9224,11355,20498,-9,20496,20495,1,0,24,0,0,0,1,1,-9,0,4,8.2812395,8.3150902,0,0,0,-1098.1481,0,1,1,2019,14,3,35,37,1,3,1,12.976254,12.976254,0,0,0,0,0,0,0,0,0,0,34.48,61.03,-9,-9,5,3,4,0,0,4,8,4,1,539,280312.03,56727.637,0,0,1056.3732 -9225,11356,20499,-9,20500,20502,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.5782,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 -9225,11356,20500,20502,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.4240026,8.3939161,0,24,0,-147.94962,0,2,2,2019,13,3,35,40,1,3,0,17.862551,17.862551,0,0,0,0,0,0,0,0,2.5150561,0,48.28,60.18,52,55,6.666666666666667,1,1,0,0,8,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 -9225,11356,20501,-9,20500,20502,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-977.53345,-9,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 -9225,11356,20502,20500,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.8116856,9.6954889,0,25,0,-54.810349,0,2,2,2019,9,0,70,50,1,1,0,24.28463,24.28463,0,0,0,0,0,0,0,0,1.7411479,0,52,55,48.28,60.18,8,1,1,0,0,1,5,5,1,932.5,1828894.6,940809.56,630145.31,202480.97,6739.5283 -9226,11357,20503,-9,20506,20505,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.55524,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 -9226,11357,20504,-9,20506,20505,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.72253,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 -9226,11357,20505,20506,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.5776739,8.6064587,0,5,7,-60.099091,0,-9,-9,2019,5,0,42,42,1,0,0,12.608061,12.608061,0,0,0,0,0,1,1,0,2.4965365,0,58.89,48.6,38.6,52.76,10,1,1,0,0,9,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 -9226,11357,20506,20505,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,0,0,0,5,-7,-154.28979,1,2,2,2019,14,4,0,8,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38.6,52.76,58.89,48.6,8.333333333333334,1,1,0,0,7,2,3,1,266.25,3850.1758,0,131295.53,91235.281,2722.1421 -9227,11358,20507,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-945.513,-9,3,-9,2019,26,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,29.78,17.81,-9,-9,0,1,1,0,0,3,5,1,0,518,0,0,0,0,1800.8848 -9228,11359,20508,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,5.9695253,5.5455451,0,0,-957.59167,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.1082468,5.6451426,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1389,533270.19,573409.88,202836.11,0,870.54736 -9229,11360,20509,20510,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.8010283,9.073864,0,3,6,-17.34972,0,1,1,2019,9,0,40,40,1,0,0,22.13908,22.13908,0,0,0,0,0,0,0,0,4.2040782,0,43.73,59.7,54.37,54.8,8.333333333333334,2,3,0,0,6,8,5,1,402.5,491652,-51728.594,0,0,3195.1179 -9229,11360,20510,20509,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,6.936523,6.9932113,0,3,-6,-29.536461,0,-9,-9,2019,9,0,30,0,1,0,0,4.2168212,4.2168212,0,0,0,0,0,0,0,0,0,0,54.37,54.8,43.73,59.7,8.333333333333334,2,3,0,0,1,8,5,1,402.5,491652,-51728.594,0,0,3195.1179 -9230,11361,20511,20512,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.646389,6.7519064,32,13,-43.72662,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9096513,6.6160121,57.33,53.46,57.16,56.15,0,1,1,0,0,0,2,2,1,475.5,317943.69,168692.88,179922.84,0,1643.3687 -9230,11361,20512,20511,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,32,-13,38.89806,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,3,2,2,1,475.5,317943.69,168692.88,179922.84,0,1643.3687 -9231,11362,20513,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.4668779,5.6438766,0,0,-1028.2955,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1313353,5.5768003,50.09,52.47,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,1614,-168888.67,113310.76,0,0,320.59448 -9232,11363,20514,20515,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,0,0,6,-6,-79.355415,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,50.54,62.09,8.333333333333334,1,1,0,0,0,12,2,1,491,892310.13,183277.94,760135.5,0,2565.488 -9232,11363,20515,20514,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,6.9919934,6.8779101,6,6,-116.02414,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7987809,7.0084262,50.54,62.09,46.28,62.6,10,1,1,0,0,0,12,2,1,491,892310.13,183277.94,760135.5,0,2565.488 -9233,11364,20516,20518,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.6437502,8.5220709,0,5,3,15.939727,0,-9,-9,2019,17,7,47,49,1,7,0,10.611563,10.611563,0,0,0,0,0,1,1,0,0,0,47.47,52.37,46.23,51.67,3.333333333333333,1,1,0,0,4,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 -9233,11364,20517,-9,20518,20516,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4047,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 -9233,11364,20518,20516,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,5,-3,-50.801647,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.23,51.67,47.47,52.37,6.666666666666667,1,1,0,0,4,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 -9233,11364,20519,-9,20518,20516,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.00104,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,321.75,132034.48,72424.953,0,0,2237.5991 -9234,11365,20520,-9,-9,-9,1,1,37,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1001.307,0,3,2,2019,16,3,0,44,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,42.82,45.65,-9,-9,10,1,1,1,1,1,12,1,0,487,-60707.41,0,0,0,808.58258 -9235,11366,20521,20522,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,4.2252769,4.1801896,7,5,-37.01651,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.107738,56.33,40.29,58.96,28.92,6.666666666666667,1,1,0,0,0,12,3,1,431,83694.18,184007,0,0,2349.4744 -9235,11366,20522,20521,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.7806439,7.9951882,6.7340131,7,-5,-49.717274,0,3,2,2019,9,0,25,25,1,0,0,9.7941637,9.7941637,0,0,0,0,0,1,1,0,5.2895646,6.7690887,58.96,28.92,56.33,40.29,6.666666666666667,1,1,0,0,8,12,3,1,431,83694.18,184007,0,0,2349.4744 -9236,11367,20523,20524,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,7.6656351,7.9645314,7.1758676,39,-16,-127.51648,0,3,3,2019,11,0,24,12,1,2,0,9.4705915,9.4705915,0,0,0,0,0,1,1,0,0,7.5049725,49,48,53,46,7,3,4,0,0,12,8,3,1,224,910997.25,448056.69,404803.09,0,3041.1216 -9236,11367,20524,20523,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.0162892,6.641192,39,16,115.11573,0,2,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,6.1805296,53,46,49,48,7,3,4,0,1,0,8,3,1,224,910997.25,448056.69,404803.09,0,3041.1216 -9236,11368,20525,-9,20523,20524,1,1,29,0,0,0,2,2,-9,0,4,7.2018371,6.8333349,0,0,0,-1054.819,0,1,3,2019,10,0,8,8,1,1,1,13.694501,13.694501,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,3,4,0,0,5,8,2,1,274,-188554.42,0,0,0,782.43005 -9236,11369,20526,-9,20523,20524,1,1,52,0,0,0,2,2,-9,0,4,8.2807722,8.2143898,0,0,0,-1024.0211,0,1,3,2019,9,0,30,30,1,1,1,14.111749,14.111749,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,3,4,0,0,5,8,4,1,129,1031964.1,744735.63,0,0,1606.6643 -9237,11370,20527,20528,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,0,0,0,6,13,82.588226,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.7383051,0,55.68,54.24,57.16,56.15,8.333333333333334,1,1,0,0,6,9,2,1,891,144840.98,0,0,0,3439.2627 -9237,11370,20528,20527,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.5880399,7.6920362,0,6,-13,-57.026192,0,1,1,2019,6,0,30,15,1,0,0,7.5953116,7.5953116,0,0,0,0,0,0,0,0,6.9987965,0,57.16,56.15,55.68,54.24,8.333333333333334,1,1,0,0,8,9,2,1,891,144840.98,0,0,0,3439.2627 -9237,11371,20529,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1034.2214,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,1215,-456065.47,0,0,0,539.2157 -9238,11372,20530,20531,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,7,-1,0,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.32,50.22,52,48,8.333333333333334,1,1,0,0,7,12,1,1,236,273536.53,0,176088.05,0,1297.9512 -9238,11372,20531,20530,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,7,1,0,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6349378,0,52,48,58.32,50.22,7,1,1,0,0,0,12,1,1,236,273536.53,0,176088.05,0,1297.9512 -9239,11373,20532,20533,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.7840576,6.9450951,7,-4,-18.54641,0,3,3,2019,8,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,6.6194906,6.9539227,57.16,56.15,60.12,54.8,0,1,1,0,0,7,11,4,1,761.5,275893,154797.38,130251.31,0,2342.8101 -9239,11373,20533,20532,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.9526415,8.360404,7.367456,7,4,77.497742,0,3,3,2019,6,0,25,30,1,0,0,13.776403,13.776403,0,0,0,0,0,0,0,0,6.9992566,6.7129998,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,761.5,275893,154797.38,130251.31,0,2342.8101 -9240,11374,20534,-9,20536,20535,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1055.7871,-9,1,1,2019,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,27.18,67.57000000000001,-9,-9,5,4,2,0,0,0,8,5,0,187.33333,1866150.3,523840.69,1008133.8,150823.81,15451.926 -9240,11374,20535,20536,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.7726965,9.6174192,0,23,2,37.36805,0,2,3,2019,7,0,35,40,1,0,0,46.856255,46.856255,0,0,0,0,0,0,0,0,9.4991112,0,43.73,59.7,52,54.51,3.333333333333333,4,2,0,0,7,8,5,0,187.33333,1866150.3,523840.69,1008133.8,150823.81,15451.926 -9240,11374,20536,20535,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,9.5212822,9.4498501,0,22,-2,184.36093,0,-9,-9,2019,6,0,35,35,1,0,0,58.309658,58.309658,0,0,0,0,0,0,0,0,6.1467848,0,52,54.51,43.73,59.7,8.333333333333334,1,1,0,0,10,8,5,0,187.33333,1866150.3,523840.69,1008133.8,150823.81,15451.926 -9240,11375,20537,-9,20536,20535,1,0,19,0,1,1,1,0,0,0,4,0,0,0,0,0,-948.29517,-9,1,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,-9,-9,6.666666666666667,4,2,0,0,5,8,1,0,369,-435041.34,8054.938,0,0,0 -9241,11376,20538,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,5.4678545,5.8223591,0,0,0,-1009.4152,-9,-9,1,2019,11,0,60,0,1,0,0,.51323271,.51323271,0,0,0,0,0,0,0,0,0,0,35.61,49.92,-9,-9,8.333333333333334,1,1,0,0,11,4,2,0,282,215776.98,0,0,0,730.17035 -9242,11377,20539,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1099.6063,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.0589952,0,44.36,54.04,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,128,206364.28,0,0,0,949.487 -9243,11378,20540,20541,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.6938782,8.5329142,37,7,-110.92484,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.3781371,8.5052567,54.61,51.04,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,1,290,1836109.8,1329431.8,135632.02,0,2523.2261 -9243,11378,20541,20540,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,6.2274408,6.5156631,38,-7,-29.930084,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4779882,6.5119896,57.16,56.15,54.61,51.04,8.333333333333334,1,1,0,0,8,2,4,1,290,1836109.8,1329431.8,135632.02,0,2523.2261 -9244,11379,20542,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,6.9591498,6.9344244,0,0,0,-1073.0468,-9,3,3,2019,23,10,20,0,1,10,0,5.0103498,5.0103498,0,0,0,0,0,0,0,0,0,0,35.37,36.9,-9,-9,5,2,3,0,0,12,8,2,1,482,1267982,0,769362.38,0,594.02753 -9245,11380,20543,-9,20545,20546,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.8383,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 -9245,11380,20544,-9,20545,20546,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.9424,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 -9245,11380,20545,20546,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,6,-4,97.92939,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,47.83,62.16,7,1,1,0,0,0,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 -9245,11380,20546,20545,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,7.8808074,7.7253432,0,6,4,-84.544594,0,-9,-9,2019,9,1,42,41,1,1,0,6.5780144,6.5780144,0,0,0,0,2,1,1,0,0,0,47.83,62.16,48,57,10,1,1,0,0,9,6,2,0,827.75,-31548.355,0,68248.023,49860.492,2144.9316 -9246,11381,20547,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,5,7.0099678,6.8501201,0,0,0,-1058.3761,0,3,3,2019,8,0,28,8,1,0,0,5.3885307,5.3885307,0,0,0,0,0,1,1,0,7.0992293,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,491,-446442.97,117283.02,0,0,1034.1628 -9247,11382,20548,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.278152,6.5728655,0,0,-1122.5326,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8933272,7.3526907,69.31,34.17,-9,-9,10,1,1,0,0,0,12,3,1,93,639402.13,69617.391,426929.41,0,2065.3154 -9248,11383,20549,20550,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.2023697,7.9845009,0,2,12,-129.15953,0,3,3,2019,28,11,42,42,1,11,0,8.3959923,8.3959923,0,0,0,0,0,0,0,0,0,0,23.42,64.87,22.1,53.35,1.666666666666667,3,4,0,1,9,5,4,0,1365.5,558901.56,0,455967.75,0,1909.4482 -9248,11383,20550,20549,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,6.9468946,7.1115479,0,2,-12,26.403038,0,-9,-9,2019,27,10,20,20,1,10,0,5.2571435,5.2571435,0,0,0,0,0,0,0,0,0,0,22.1,53.35,23.42,64.87,0,3,4,0,1,1,5,4,0,1365.5,558901.56,0,455967.75,0,1909.4482 -9249,11384,20551,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.3775954,7.3154507,0,0,0,-950.19965,0,2,2,2019,8,1,21,17,1,1,0,9.7285786,9.7285786,0,0,0,0,0,1,1,0,0,0,30.11,52.21,-9,-9,10,3,4,0,0,5,8,2,0,3117.5,11674.055,42902.855,0,0,1753.6697 -9249,11384,20552,-9,20551,-9,1,0,16,0,1,1,2,0,-9,0,4,0,5.43401,5.4220877,0,0,-960.66296,-9,3,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.4542441,0,42.51,47.85,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,3117.5,11674.055,42902.855,0,0,1753.6697 -9250,11385,20553,20554,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,8.1732454,7.829411,35,-1,4.3555198,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.9925699,7.7260799,54.1,59.11,42.95,61.24,10,1,1,0,0,9,6,4,1,808,2080717.5,1361979,374013.13,0,2293.8398 -9250,11385,20554,20553,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.4302626,7.6207767,35,1,20.608131,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.7368078,7.8945928,42.95,61.24,54.1,59.11,8.333333333333334,1,1,0,0,10,6,4,1,808,2080717.5,1361979,374013.13,0,2293.8398 -9251,11386,20555,-9,20556,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-961.32214,0,3,3,2019,15,4,0,38,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,46.55,44.15,-9,-9,5,1,1,1,0,9,12,1,1,170,531784.19,384317.56,0,0,0 -9251,11387,20556,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.449995,4.9769139,0,0,-1031.7269,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1094613,51.24,58.84,-9,-9,10,1,1,0,0,0,12,2,1,857,132253.05,0,0,0,816.40137 -9252,11388,20557,-9,20558,20559,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.776,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,692,265133.25,865.52863,176545.69,0,1944.7495 -9252,11388,20558,20559,-9,-9,1,0,48,0,1,0,1,1,-9,1,3,0,0,0,21,-5,-130.03094,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,4.2083087,0,50.6,51,61.27,46.03,8.333333333333334,1,1,0,0,0,11,3,1,692,265133.25,865.52863,176545.69,0,1944.7495 -9252,11388,20559,20558,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,8.4067392,8.2153683,0,21,5,-14.852505,0,2,1,2019,6,0,37,36,1,0,0,12.499106,12.499106,0,0,0,0,27,1,1,0,3.5706387,0,61.27,46.03,50.6,51,1.666666666666667,1,1,0,0,9,11,3,1,692,265133.25,865.52863,176545.69,0,1944.7495 -9253,11389,20560,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1039.7963,0,3,3,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.8288102,0,52.6,34.11,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,325,-1626.9663,0,0,0,614.25983 -9254,11390,20561,20562,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,6,13,12.553615,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.11,48.86,57.33,53.46,6.666666666666667,1,1,0,0,6,8,2,0,966.5,-30453.891,0,0,0,1356.176 -9254,11390,20562,20561,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.2681909,7.7354207,0,6,-13,34.994301,0,-9,-9,2019,11,0,26,22,1,0,0,7.6081505,7.6081505,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.11,48.86,8.333333333333334,1,1,0,0,9,8,2,0,966.5,-30453.891,0,0,0,1356.176 -9255,11391,20563,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2442827,8.2120266,5.1111298,0,0,-1000.4747,0,3,3,2019,11,0,30,30,1,0,0,15.984631,15.984631,0,0,0,0,0,1,1,0,5.4318609,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,442,658219,555115.38,168640.47,27836.025,1954.8694 -9255,11391,20564,-9,20563,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1042.3567,-9,1,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,1.590277,0,43.49,59.98,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,442,658219,555115.38,168640.47,27836.025,1954.8694 -9256,11392,20565,-9,20566,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.3959,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,629.66669,0,0,0,0,1448.0277 -9256,11392,20566,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,6.7402143,6.882102,0,0,0,-925.55005,0,-9,-9,2019,11,0,16,6,1,0,0,6.9068923,6.9068923,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,4,2,0,0,2,6,2,0,629.66669,0,0,0,0,1448.0277 -9256,11392,20567,-9,20566,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.5799,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,629.66669,0,0,0,0,1448.0277 -9257,11393,20568,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-911.35846,0,3,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.9822793,0,37.52,61.39,-9,-9,8.333333333333334,1,1,0,0,5,8,1,1,521,452479.09,0,359530.81,0,2358.3423 -9258,11394,20569,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1073.5316,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.56,31.15,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,805,-73395.695,39000.332,156253.39,-21421.828,1794.0438 -9259,11395,20570,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-917.92114,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.88,12.59,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,3822,-62552.258,0,0,0,1095.476 -9260,11396,20571,-9,20572,20573,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.3473,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,3,1,362.33334,100265.37,69506.305,141870.34,77100.836,4743.7456 -9260,11396,20572,20573,-9,-9,1,0,36,0,2,0,3,3,-9,0,5,7.3061476,7.5829706,0,14,-8,-10.408937,0,3,3,2019,12,1,70,40,1,1,0,2.4424918,2.4424918,0,0,0,0,0,1,1,0,0,0,30.22,61.23,48.28,60.18,6.666666666666667,2,3,0,0,11,6,3,1,362.33334,100265.37,69506.305,141870.34,77100.836,4743.7456 -9260,11396,20573,20572,20575,20574,1,1,44,0,2,0,3,3,-9,0,4,8.0995464,8.2295055,0,14,8,-15.05056,0,3,3,2019,7,0,70,56,1,0,0,5.9546256,5.9546256,0,0,0,0,0,1,1,0,8.9305973,0,48.28,60.18,30.22,61.23,8.333333333333334,2,3,0,0,11,6,3,1,362.33334,100265.37,69506.305,141870.34,77100.836,4743.7456 -9260,11397,20574,20575,-9,-9,1,1,67,0,2,0,3,3,-9,0,3,0,0,0,8,4,18.216448,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7672623,0,52,48,50,47,7,2,3,0,0,0,6,2,1,878,106150.5,113777.08,0,0,1773.6913 -9260,11397,20575,20574,-9,-9,1,0,63,0,2,0,3,3,-9,0,3,0,7.1883316,7.0052948,8,-4,-4.864964,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.1813717,50,47,52,48,7,2,3,0,0,0,6,2,1,878,106150.5,113777.08,0,0,1773.6913 -9261,11398,20576,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.9444466,7.7133112,0,0,-910.44086,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3375225,5.9051189,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,1035,2057402.9,940184.06,448065.41,0,705.64313 -9261,11399,20577,-9,20576,-9,1,1,25,0,0,0,1,1,-9,0,4,7.6273131,7.5723128,0,0,0,-1037.6736,-9,2,-9,2019,10,0,36,0,1,1,0,4.9537311,4.9537311,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,1,3,1,281,-44206.98,0,0,0,230.09076 -9261,11400,20578,-9,20576,-9,1,1,23,0,0,1,1,0,-9,0,3,0,0,0,0,0,-872.66821,-9,2,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.1639619,0,37.78,53.03,-9,-9,1.666666666666667,1,1,0,0,1,1,1,1,598,0,0,0,0,905.42554 -9262,11401,20579,20580,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3176098,8.2956505,0,3,0,-90.917702,0,-9,-9,2019,15,3,37,41,1,3,0,13.893904,13.893904,0,0,0,0,0,0,0,0,0,0,29.57,58.13,52.99,51.28,6.666666666666667,1,1,0,0,4,12,5,1,523.5,6940.2861,73092.422,0,0,2896.2893 -9262,11401,20580,20579,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.1574297,8.2137671,0,3,0,-4.2075286,-9,2,3,2019,12,0,45,0,1,0,0,8.2241564,8.2241564,0,0,0,0,0,0,0,0,0,0,52.99,51.28,29.57,58.13,8.333333333333334,1,1,0,0,11,12,5,1,523.5,6940.2861,73092.422,0,0,2896.2893 -9263,11402,20581,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-958.87579,0,1,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,24.96,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,208,0,0,0,0,474.83264 -9264,11403,20582,20583,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.933073,8.9415751,0,6,2,51.706215,0,-9,-9,2019,9,0,40,40,1,1,0,19.686657,19.686657,0,0,0,0,0,0,0,0,0,0,53,55,49.35,59.64,8,4,1,0,0,1,13,5,1,1456.5,895388.25,77945.289,313141.5,0,4928.9795 -9264,11403,20583,20582,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,9.0484085,9.1936407,0,6,-2,40.301537,0,3,3,2019,8,0,30,37,1,0,0,30.737539,30.737539,0,0,0,0,14.5,0,0,0,4.9747105,0,49.35,59.64,53,55,8.333333333333334,1,1,0,0,7,13,5,1,1456.5,895388.25,77945.289,313141.5,0,4928.9795 -9264,11404,20584,-9,20583,20582,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.7217,-9,2,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,2,13,1,1,484,131624.5,0,0,0,111.10065 -9265,11405,20585,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,8.6149874,8.4531498,7.0901322,0,0,-950.14594,0,3,-9,2019,12,1,49,43,1,1,0,9.5722427,9.5722427,0,0,0,0,0,0,0,0,1.6557324,7.5154896,44.55,28.62,-9,-9,1.666666666666667,1,1,0,0,10,8,5,0,569,835331.75,271398,168934.8,0,2716.4834 -9266,11406,20586,20587,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,8.1945,7.9281983,45,7,-150.4256,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2426744,8.0639305,56.66,29.23,52.6,52.88,6.666666666666667,1,1,0,0,6,6,4,1,419,1151954.5,857301.94,204412.2,0,3103.6963 -9266,11406,20587,20586,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.9439287,7.7385163,45,-7,37.036095,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7686248,52.6,52.88,56.66,29.23,8.333333333333334,2,3,0,0,0,6,4,1,419,1151954.5,857301.94,204412.2,0,3103.6963 -9267,11407,20588,-9,20589,20590,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.8863,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,2477,362874.56,226086.33,273216.44,177345.31,5097.1133 -9267,11407,20589,20590,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.8083963,8.6633301,6.0206223,6,-5,85.47422,0,2,2,2019,11,0,48,43,1,0,0,16.795412,16.795412,0,0,0,0,0,1,1,0,6.2312341,0,57.06,57.76,41.06,62.04,6.666666666666667,1,1,0,0,9,6,5,1,2477,362874.56,226086.33,273216.44,177345.31,5097.1133 -9267,11407,20590,20589,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.2717152,8.9270239,0,6,5,-27.475677,0,2,2,2019,12,2,44,43,1,2,0,22.270876,22.270876,0,0,0,0,0,1,1,0,0,0,41.06,62.04,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,2477,362874.56,226086.33,273216.44,177345.31,5097.1133 -9268,11408,20591,20592,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.6075354,8.6856375,0,4,1,155.77246,0,2,1,2019,6,0,43,47,1,0,0,14.455071,14.455071,0,0,0,0,0,0,0,0,0,0,54.2,57.49,66.2,38.34,8.333333333333334,1,1,0,0,6,2,5,1,436,141342,-25850.381,106730.08,63437.355,3429.1318 -9268,11408,20592,20591,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4326496,8.5742149,0,4,-1,-11.847738,0,-9,-9,2019,11,0,40,43,1,0,0,14.746738,14.746738,0,0,0,0,0,0,0,0,0,0,66.2,38.34,54.2,57.49,8.333333333333334,1,1,0,0,5,2,5,1,436,141342,-25850.381,106730.08,63437.355,3429.1318 -9268,11409,20593,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,0,0,0,0,0,-986.97845,1,-9,-9,2019,22,8,0,44,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,893,216108.53,0,0,0,-146.96651 -9269,11410,20594,-9,20596,20595,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.41541,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 -9269,11410,20595,20596,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.5952864,8.7611532,0,15,-1,-23.445227,0,2,1,2019,16,5,55,30,1,5,0,12.443857,12.443857,0,0,0,0,0,1,1,0,2.4041102,0,43.67,61.06,57.48,43.72,6.666666666666667,1,1,0,0,11,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 -9269,11410,20596,20595,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.862124,6.8444986,0,15,1,12.181283,0,1,1,2019,10,2,15,19,1,2,0,7.3716254,7.3716254,0,0,0,0,0,1,1,0,2.6963363,0,57.48,43.72,43.67,61.06,8.333333333333334,1,1,0,0,9,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 -9269,11410,20597,-9,20596,20595,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.22302,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,3324.75,161326.09,106198.33,109394.55,76263.242,2650.2642 -9270,11411,20598,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.7898312,7.9012189,0,0,-909.84839,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,6.8499846,7.6696863,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,3630,804737.31,541514.25,122790.37,0,1413.9972 -9271,11412,20599,20600,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.1824737,7.5526538,6,-1,95.546349,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.2287927,7.372879,44.41,56.75,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,575.5,2904671,891106.88,227269.75,0,3134.3076 -9271,11412,20600,20599,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.7915235,7.8535662,6,1,-83.724113,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1531696,7.8459597,57.16,56.15,44.41,56.75,10,1,1,0,0,3,12,4,1,575.5,2904671,891106.88,227269.75,0,3134.3076 -9271,11413,20601,-9,20599,20600,1,1,37,0,0,0,1,1,-9,0,4,8.0392752,8.0005789,0,0,0,-1019.4179,0,1,1,2019,11,0,38,39,1,0,0,8.935998,8.935998,0,0,0,0,0,1,1,0,7.3085217,0,42.37,55.29,-9,-9,6.666666666666667,1,1,0,0,5,12,4,1,302,164591.88,-73725.133,0,0,2393.875 -9272,11414,20602,-9,20603,20604,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.0385,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 -9272,11414,20603,20604,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,6.7025375,6.8567801,0,9,-15,72.789063,0,2,2,2019,13,0,24,16,1,2,0,4.3163733,4.3163733,0,0,0,0,0,1,1,0,0,0,29.87,62.19,57.76,54.51,0,1,1,0,0,9,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 -9272,11414,20604,20603,-9,-9,1,1,46,1,2,0,2,2,-9,0,4,8.7090521,8.5685072,0,9,15,6.970715,0,-9,-9,2019,9,0,112,56,1,0,0,4.4730077,4.4730077,0,0,0,0,0,1,1,0,0,0,57.76,54.51,29.87,62.19,8.333333333333334,1,1,0,0,9,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 -9272,11414,20605,-9,20603,20604,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.4772,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,844.5,172576.97,82078.633,166373.13,71376.789,3315.3367 -9273,11415,20606,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,8.3531904,8.3677502,0,0,-962.04791,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.5371766,8.8746958,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,106,1367563.6,1331336.6,79077.578,0,2134.9895 -9274,11416,20607,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4306955,7.7611527,0,0,-1102.463,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0537248,7.4594522,50.01,52.64,-9,-9,5,1,1,0,0,10,1,3,1,359,630577.31,420353.78,0,0,1447.9465 -9275,11417,20608,20609,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3164444,8.3383665,0,5,0,21.961374,0,2,2,2019,16,5,38,38,1,5,0,13.810177,13.810177,0,0,0,0,0,0,0,0,0,0,45.48,57.46,56.6,47.06,8.333333333333334,1,1,0,0,10,13,5,1,393,312188.38,12197.258,359447.59,232626,3615.6777 -9275,11417,20609,20608,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.5552263,8.5152693,0,5,0,-46.728954,0,-9,-9,2019,7,0,37,37,1,0,0,17.986475,17.986475,0,0,0,0,0,0,0,0,0,0,56.6,47.06,45.48,57.46,8.333333333333334,1,1,0,0,6,13,5,1,393,312188.38,12197.258,359447.59,232626,3615.6777 -9276,11418,20610,20613,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.4521523,8.0522099,0,10,3,-84.847351,0,2,1,2019,6,0,25,20,1,0,0,20.495909,20.495909,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,11,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 -9276,11418,20611,-9,20610,20613,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.73126,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 -9276,11418,20612,-9,20610,20613,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.0308,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 -9276,11418,20613,20610,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9163799,8.5429058,0,9,-3,14.977223,0,2,2,2019,11,2,47,47,1,2,0,15.443962,15.443962,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,1468.5,1239009.9,176352.25,755084.31,25462.184,3753.3594 -9277,11419,20614,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.1836834,9.2412767,0,0,0,-976.47418,0,2,3,2019,8,0,40,41,1,0,0,20.378532,20.378532,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,1756,998632,841892.06,410909.47,86759.648,2817.1831 -9278,11420,20615,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,5,0,0,0,1,-3,0,-9,2,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49.37,43.5,27.83,47.86,10,1,1,1,0,0,8,1,0,1171,222630.97,0,0,0,816.11548 -9278,11421,20616,-9,-9,-9,1,0,24,0,0,0,2,2,-9,1,3,0,0,0,1,3,0,-9,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,27.83,47.86,49.37,43.5,8.333333333333334,1,1,1,0,0,8,1,0,611,166703.45,0,0,0,1542.8901 -9279,11422,20617,-9,20618,20619,1,0,17,0,2,0,2,2,-9,0,2,0,0,0,0,0,-933.81232,1,3,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,29.43,-9,-9,5,2,3,0,0,0,2,2,1,234.66667,267479.69,20276.57,171356.72,-3932.4827,1110.856 -9279,11422,20618,20619,-9,-9,1,0,58,0,2,0,3,3,-9,0,2,0,0,0,9,-4,-16.640947,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.14,18.77,51,49,8.333333333333334,2,3,0,0,0,2,2,1,234.66667,267479.69,20276.57,171356.72,-3932.4827,1110.856 -9279,11422,20619,20618,-9,-9,1,1,62,0,2,0,3,3,-9,0,3,7.5519705,7.6965046,0,9,4,65.177452,0,3,2,2019,10,0,48,40,1,1,0,5.7340689,5.7340689,0,0,0,0,0,1,1,0,0,0,51,49,65.14,18.77,7,2,3,0,0,1,2,2,1,234.66667,267479.69,20276.57,171356.72,-3932.4827,1110.856 -9279,11423,20620,-9,20623,20622,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.9968,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 -9279,11423,20621,-9,20623,20622,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.181,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 -9279,11423,20622,20623,20618,20619,1,1,31,0,2,0,2,2,-9,0,4,7.6579866,7.9868507,0,11,3,100.13847,0,3,3,2019,1,0,48,45,1,0,0,6.1530862,6.1530862,0,0,0,0,0,1,1,0,0,0,53.96,45.85,53.98,48.14,10,2,3,0,0,11,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 -9279,11423,20623,20622,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,0,0,11,-3,112.2166,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,48.14,53.96,45.85,8.333333333333334,2,3,0,0,5,2,2,1,1652.5,94066.242,26037.504,0,0,2136.2312 -9280,11424,20624,20625,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.2503481,9.0449886,0,16,3,-31.606638,0,3,3,2019,4,0,45,47,1,0,0,28.167294,28.167294,0,0,0,0,0,0,0,0,2.4926982,0,54.2,57.49,49.35,59.64,8.333333333333334,1,1,0,0,9,4,5,1,496.5,1742954.5,1391304.3,235423.69,0,4595.9438 -9280,11424,20625,20624,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.2481918,7.8998694,0,17,-3,20.495495,0,3,3,2019,7,0,34,34,1,0,0,12.777833,12.777833,0,0,0,0,0,0,0,0,3.0318441,0,49.35,59.64,54.2,57.49,10,1,1,0,0,9,4,5,1,496.5,1742954.5,1391304.3,235423.69,0,4595.9438 -9280,11425,20626,-9,20625,20624,1,1,20,0,0,0,2,2,-9,0,4,7.7124839,7.9372807,0,0,0,-996.99103,0,2,2,2019,5,0,35,32,1,0,1,9.9516306,9.9516306,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,1575,132903.84,0,0,0,1625.7511 -9281,11426,20627,-9,20628,20630,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-880.12677,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 -9281,11426,20628,20630,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.528758,7.4319134,0,6,0,-38.610893,0,2,3,2019,10,0,12,25,1,0,0,14.781509,14.781509,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.17,45.07,10,1,1,0,0,5,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 -9281,11426,20629,-9,20628,20630,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.14532,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 -9281,11426,20630,20628,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,4.3871446,4.6915288,0,6,0,-53.916641,0,-9,3,2019,11,0,40,47,1,0,0,.27209938,.27209938,0,0,0,0,0,1,1,0,6.9916496,0,37.17,45.07,57.33,53.46,6.666666666666667,1,1,0,0,8,9,2,1,1838.25,204959.41,199862.81,203989.63,78606.641,1712.8154 -9282,11427,20631,20632,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.3568239,6.2574115,55,-1,-27.810392,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6530597,6.3796406,57.24,41.16,46.39,29.02,8.333333333333334,1,1,0,0,5,8,4,1,748.5,1460653.6,606708.69,694928.38,42055.117,2844.6182 -9282,11427,20632,20631,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,8.0268011,8.4316778,7.068294,55,1,-39.816364,0,3,3,2019,23,11,10,20,1,11,0,35.099781,35.099781,0,0,0,0,0,1,1,0,6.4311709,6.8144827,46.39,29.02,57.24,41.16,3.333333333333333,1,1,0,0,13,8,4,1,748.5,1460653.6,606708.69,694928.38,42055.117,2844.6182 -9283,11428,20633,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8521805,7.8527055,0,0,0,-1051.3597,0,-9,-9,2019,7,0,35,16,1,0,0,9.7407331,9.7407331,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,10,1,1,0,0,7,9,3,0,1378,-149311.81,-296.61374,0,0,522.79395 -9284,11429,20634,-9,20636,-9,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-967.71246,-9,2,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.1,43.67,-9,-9,6.666666666666667,1,1,0,1,0,5,1,1,221,40987.789,0,0,0,0 -9284,11430,20635,20636,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.819521,7.7538848,0,4,4,-95.931938,0,-9,-9,2019,7,0,37,37,1,0,0,8.3401375,8.3401375,0,0,0,0,0,1,1,0,0,0,44.85,53.68,57.06,57.76,8.333333333333334,1,1,0,0,5,5,4,1,268.5,1093925.8,235027.69,487932.78,0,2587.9941 -9284,11430,20636,20635,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.7370443,8.3523483,0,4,-4,-91.954544,0,2,3,2019,9,0,40,40,1,0,0,8.1059484,8.1059484,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.85,53.68,8.333333333333334,1,1,0,0,5,5,4,1,268.5,1093925.8,235027.69,487932.78,0,2587.9941 -9285,11431,20637,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1071.8124,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,69.34,20.95,-9,-9,0,1,1,0,0,0,2,1,0,1042,445133.91,0,0,0,850.19647 -9286,11432,20638,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-968.14203,0,2,-9,2019,12,4,0,40,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,61.37,17.83,-9,-9,6.666666666666667,3,4,1,0,4,8,1,0,864,224636.7,0,0,0,281.75748 -9286,11433,20639,-9,20638,-9,1,1,30,0,0,0,1,1,-9,0,3,8.7267332,8.6769171,0,0,0,-998.45251,0,3,-9,2019,17,6,52,40,1,6,1,12.851768,12.851768,0,0,0,0,0,1,1,0,0,0,29.95,49.42,-9,-9,3.333333333333333,3,4,0,0,7,8,5,0,619,427216.81,122576.89,346724.34,88186.766,2476.9683 -9287,11434,20640,-9,20642,20643,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.18207,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 -9287,11434,20641,-9,20642,20643,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.81482,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 -9287,11434,20642,20643,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,3,-1,-47.352802,0,1,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,42.3,57.54,54.1,59.11,6.666666666666667,1,1,0,0,0,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 -9287,11434,20643,20642,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,9.3517981,9.204237,0,3,1,-36.267467,0,-9,-9,2019,8,0,35,34,1,0,0,31.747349,31.747349,0,0,0,0,0,1,1,0,0,0,54.1,59.11,42.3,57.54,10,1,1,0,0,1,12,5,1,1199.75,38192.098,72539.938,266776.22,151340.59,4174.5161 -9288,11435,20644,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.1844263,6.1637964,0,0,-1011.5681,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5413628,6.0354958,49.64,48.66,-9,-9,8.333333333333334,4,2,0,0,10,6,2,1,5427,400295.63,348656.66,392927.22,0,1069.1221 -9288,11436,20645,-9,-9,20644,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-966.03491,-9,-9,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.87,53.99,-9,-9,8.333333333333334,4,2,0,0,0,6,1,1,482,447917.03,0,0,0,0 -9289,11437,20646,-9,-9,20650,1,0,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-946.57507,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 -9289,11437,20647,-9,-9,20650,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-901.16693,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 -9289,11437,20648,-9,-9,20650,1,1,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1014.1266,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 -9289,11437,20649,20650,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,5.9344068,5.7083526,6,1,-47.206432,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0462213,57.16,56.15,54.63,31.94,8.333333333333334,1,1,0,0,3,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 -9289,11437,20650,20649,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,5.4697723,5.6873841,6,-1,13.843527,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,3.7595229,5.3529248,54.63,31.94,57.16,56.15,3.333333333333333,1,1,0,0,2,10,2,1,881.20001,279661.28,166552.17,251886.88,0,2723.0281 -9290,11438,20651,-9,20653,20654,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.1601,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 -9290,11438,20652,-9,20653,20654,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5965,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 -9290,11438,20653,20654,-9,-9,1,0,41,0,2,0,3,3,-9,0,2,7.4308004,8.0078068,0,4,3,-70.631752,0,3,3,2019,20,7,24,28,1,7,0,11.01315,11.01315,0,0,0,0,0,1,1,0,0,0,44.45,45.08,36.24,48.69,5,1,1,0,0,5,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 -9290,11438,20654,20653,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,0,0,0,4,-3,37.522846,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.24,48.69,44.45,45.08,8.333333333333334,1,1,1,0,6,4,2,1,763.75,104188.7,74238.867,44946.766,65102.617,2545.7065 -9291,11439,20655,-9,20656,20657,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.7059,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,556,560058.44,227424.33,737162.75,369459.91,7050.2354 -9291,11439,20656,20657,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,9.0618563,9.1911001,0,21,0,-58.862663,0,2,2,2019,12,0,38,31,1,0,0,22.990812,22.990812,0,0,0,0,0,1,1,0,0,0,43.02,57.64,50.13,48.3,8.333333333333334,1,1,0,0,11,10,5,1,556,560058.44,227424.33,737162.75,369459.91,7050.2354 -9291,11439,20657,20656,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.0929604,9.2765188,0,21,0,.020853013,-9,2,2,2019,10,1,38,0,1,1,0,32.609024,32.609024,0,0,0,0,0,1,1,0,1.1048687,0,50.13,48.3,43.02,57.64,8.333333333333334,1,1,0,0,11,10,5,1,556,560058.44,227424.33,737162.75,369459.91,7050.2354 -9292,11440,20658,-9,20661,20660,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.18134,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 -9292,11440,20659,-9,20661,20660,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.44617,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 -9292,11440,20660,20661,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.8212652,8.7359848,0,7,2,81.91227,0,2,2,2019,7,0,70,65,1,0,0,12.123235,12.123235,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.16,53.09,8.333333333333334,1,1,0,0,6,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 -9292,11440,20661,20660,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3964248,7.6471081,4.6762967,15,-2,-30.887857,0,2,2,2019,14,2,22,23,1,2,0,9.5186701,9.5186701,0,0,0,0,7,1,1,0,4.0889006,0,46.16,53.09,41.17,59.31,6.666666666666667,1,1,0,0,8,1,4,0,833.5,1083167.8,948761.88,196803.31,93332.938,3520.7397 -9292,11441,20662,-9,20661,20660,1,0,19,0,2,0,2,2,1,0,4,7.6126671,7.387033,0,0,0,-1030.2701,-9,2,2,2019,8,0,40,0,1,0,1,4.2514601,4.2514601,0,0,0,0,0,1,1,0,0,0,47.38,57.75,-9,-9,1.666666666666667,1,1,0,0,2,1,3,0,207,-24065.85,-92239.609,0,0,939.84137 -9293,11442,20663,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,4.9358945,4.92735,0,0,-999.59741,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,17.718884,0,0,0,1,1,0,0,4.8605552,51.83,29.31,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1863,50579.906,-98421.57,0,0,2227.1387 -9294,11443,20664,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.4985619,7.3674202,0,0,0,-1079.7466,0,3,-9,2019,11,1,30,30,1,1,0,6.8514881,6.8514881,0,0,0,0,0,0,0,0,0,0,53.08,36.58,-9,-9,6.666666666666667,1,1,0,0,9,8,3,0,204,80194.555,91834.703,0,0,1128.5129 -9295,11444,20665,-9,20666,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-968.90173,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,6,3,0,907,-80997.766,126134.41,0,0,2176.2046 -9295,11444,20666,-9,20667,20668,1,0,42,1,1,0,2,2,-9,0,3,7.5910192,7.6112523,0,0,0,-941.57971,0,2,1,2019,8,1,48,47,1,1,0,6.3666315,6.3666315,0,0,0,0,27,1,1,0,0,0,50.53,28.09,-9,-9,6.666666666666667,3,4,0,0,9,6,3,0,907,-80997.766,126134.41,0,0,2176.2046 -9295,11445,20667,20668,-9,-9,1,0,76,1,1,0,2,2,-9,0,5,0,0,0,3,-3,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.39,58.82,42.9,23.98,8.333333333333334,3,4,0,0,0,6,1,0,640,152265.14,197482.34,127206.97,0,164.00514 -9295,11445,20668,20667,-9,-9,1,1,79,1,1,0,1,1,-9,0,2,0,0,0,3,3,0,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,14.371442,0,0,1,1,0,0,0,42.9,23.98,39.39,58.82,5,3,4,0,0,0,6,1,0,640,152265.14,197482.34,127206.97,0,164.00514 -9296,11446,20669,20670,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.4519076,6.6650395,0,37,3,-107.5429,0,3,3,2019,9,0,44,44,1,0,0,2.0501997,2.0501997,0,0,0,0,0,0,0,0,0,0,49.59,58.37,38.34,62.12,3.333333333333333,1,1,0,1,11,12,2,1,1021.5,303826.19,150203.91,187568.03,0,-1127.4576 -9296,11446,20670,20669,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,37,-3,-70.513649,0,2,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,0,0,38.34,62.12,49.59,58.37,3.333333333333333,1,1,1,1,11,12,2,1,1021.5,303826.19,150203.91,187568.03,0,-1127.4576 -9297,11447,20671,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-981.80511,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,16.179247,0,0,1,1,0,0,0,32.74,24.49,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,379,225903.94,0,65652.102,0,1961.3052 -9297,11448,20672,-9,20671,-9,1,1,51,0,0,0,2,2,-9,0,4,8.125411,8.2062864,0,0,0,-991.38647,-9,2,-9,2019,9,0,35,0,1,1,0,11.451534,11.451534,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,0,0,1,8,4,0,122,927540.13,686990.81,404045.31,0,1168.446 -9298,11449,20673,20674,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,6.455061,7.4683995,7.0213003,32,-3,-108.53118,0,2,2,2019,11,1,8,12,1,1,0,11.039466,11.039466,0,0,0,0,0,0,0,0,0,6.7541475,53.8,45.89,37.42,53.29,6.666666666666667,1,1,0,0,12,2,4,1,538.5,418980.38,367874.19,123815.24,0,2541.5188 -9298,11449,20674,20673,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.1312332,8.136446,7.5752902,32,3,-113.67816,0,3,3,2019,24,10,18,21,1,10,0,6.6704016,6.6704016,0,0,0,0,0,0,0,0,0,7.4543481,37.42,53.29,53.8,45.89,6.666666666666667,1,1,0,0,10,2,4,1,538.5,418980.38,367874.19,123815.24,0,2541.5188 -9299,11450,20675,20676,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.9078755,8.2785959,0,29,7,-12.286473,0,3,3,2019,11,2,50,40,1,2,0,9.7128162,9.7128162,0,0,0,0,0,0,0,0,0,0,68.59,41.47,49.38,34.36,10,2,3,0,0,13,9,4,1,2118.5,361324.44,185367.53,-35097.949,6565.2529,2260.9402 -9299,11450,20676,20675,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.2628665,6.9830418,0,30,-7,20.584829,0,3,3,2019,20,8,30,8,1,8,0,4.9713011,4.9713011,0,0,0,0,0,0,0,0,0,0,49.38,34.36,68.59,41.47,1.666666666666667,1,1,0,1,12,9,4,1,2118.5,361324.44,185367.53,-35097.949,6565.2529,2260.9402 -9300,11451,20677,20679,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.2705441,8.2517414,0,8,0,-28.415428,0,2,2,2019,9,0,15,45,1,0,0,33.98978,33.98978,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.37,54.8,5,1,1,0,0,8,4,4,1,447.66666,477163.5,183449.98,185433.03,88889.906,2592.8425 -9300,11451,20678,-9,20679,20677,1,1,16,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1121.8002,-9,2,3,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,51.9,-9,-9,3.333333333333333,1,1,0,0,0,4,4,1,447.66666,477163.5,183449.98,185433.03,88889.906,2592.8425 -9300,11451,20679,20677,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.0962009,8.1526146,0,8,0,55.6903,0,2,2,2019,11,0,30,28,1,0,0,11.86237,11.86237,0,0,0,0,2,1,1,0,0,0,54.37,54.8,49.04,55.86,5,1,1,0,0,9,4,4,1,447.66666,477163.5,183449.98,185433.03,88889.906,2592.8425 -9301,11452,20680,20681,-9,-9,1,1,59,0,0,0,1,1,-9,1,3,7.2317185,7.3487802,0,32,0,1.8914804,0,2,2,2019,14,1,50,70,1,1,0,3.5717893,3.5717893,0,0,0,0,0,1,1,0,0,0,47.31,48.3,35.69,35.44,5,1,1,0,1,11,2,2,0,1800.5,356688.59,26865.672,224777.39,0,1497.8921 -9301,11452,20681,20680,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,5.9615092,5.7665038,0,31,0,81.495522,0,1,1,2019,14,1,21,21,1,1,0,2.2085896,2.2085896,0,0,0,0,0,1,1,0,1.5770992,0,35.69,35.44,47.31,48.3,1.666666666666667,1,1,0,1,7,2,2,0,1800.5,356688.59,26865.672,224777.39,0,1497.8921 -9301,11453,20682,-9,20681,20680,1,0,19,0,0,0,2,2,1,0,3,6.0797524,6.2235947,0,0,0,-1056.4481,-9,2,1,2019,18,3,24,0,1,3,1,2.5467808,2.5467808,0,0,0,0,0,1,1,0,0,0,42.6,44.91,-9,-9,5,1,1,0,1,3,2,2,0,633,422089.13,0,0,0,-214.75357 -9302,11454,20683,20685,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,6.144557,6.4173837,0,12,1,-34.056297,0,2,2,2019,6,0,8,5,1,0,0,6.2453661,6.2453661,0,0,0,0,0,1,1,0,7.9873548,0,54.1,59.11,52.18,48.96,8.333333333333334,1,1,0,0,9,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 -9302,11454,20684,-9,20683,20685,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-804.95477,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 -9302,11454,20685,20683,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,8.7289677,8.6056223,0,12,-1,4.0455208,0,2,2,2019,8,0,37,44,1,0,0,17.929569,17.929569,0,0,0,0,0,1,1,0,0,0,52.18,48.96,54.1,59.11,8.333333333333334,1,1,0,0,10,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 -9302,11454,20686,-9,20683,20685,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.68958,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,760,111540.8,123410.36,228541.28,122251.44,3697.457 -9303,11455,20687,-9,20690,20688,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1084.3368,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,46.09,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 -9303,11455,20688,20690,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3371038,8.2344065,0,9,2,-66.662483,0,2,2,2019,11,0,37,48,1,0,0,13.117822,13.117822,0,0,0,0,0,1,1,0,0,0,47.75,53.7,50.73,32.11,1.666666666666667,1,1,0,0,10,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 -9303,11455,20689,-9,20690,20688,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1020.8682,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 -9303,11455,20690,20688,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.9938259,8.051034,0,9,-2,74.907814,0,3,2,2019,6,0,40,40,1,0,0,8.7719498,8.7719498,0,0,0,0,0,1,1,0,0,0,50.73,32.11,47.75,53.7,8.333333333333334,1,1,0,0,10,12,4,1,424.5,238802.42,282123.94,206580,79405.328,2730.1731 -9304,11456,20691,20692,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.4449515,6.8449903,10,2,-135.29491,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,7.1606512,0,0,1,1,0,4.2594504,6.8172469,40.55,21,47.95,56.13,5,1,1,0,0,0,2,3,1,2814.5,627543.63,492771.38,147581.88,0,2349.2744 -9304,11456,20692,20691,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4212232,7.5552616,52,-2,-29.784981,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5996737,7.3154206,47.95,56.13,40.55,21,6.666666666666667,1,1,0,0,8,2,3,1,2814.5,627543.63,492771.38,147581.88,0,2349.2744 -9304,11457,20693,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,7.4215946,7.5572824,0,0,0,-1126.1184,0,-9,-9,2019,9,0,40,24,1,0,0,5.7514019,5.7514019,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,388,-45211.348,-112671.96,0,0,592.09045 -9305,11458,20694,20697,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,0,4.9231954,4.9907279,8,-1,101.29403,1,3,3,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.9352837,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,1,5,3,0,948,-118371.22,0,0,0,2053.1917 -9305,11458,20695,-9,20694,20697,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.132,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,948,-118371.22,0,0,0,2053.1917 -9305,11458,20696,-9,20694,20697,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1002.8541,-9,1,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.79,65.03,-9,-9,5,1,1,0,0,0,5,3,0,948,-118371.22,0,0,0,2053.1917 -9305,11458,20697,20694,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,7.8871408,7.6182995,0,8,1,33.793591,0,-9,-9,2019,8,1,40,42,1,1,0,7.6964293,7.6964293,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,8,5,3,0,948,-118371.22,0,0,0,2053.1917 -9305,11458,20698,-9,20694,20697,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1145.2354,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,3,0,948,-118371.22,0,0,0,2053.1917 -9306,11459,20699,-9,-9,-9,1,1,35,0,0,0,3,3,-9,1,4,0,0,0,0,0,-961.01984,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.05,57.87,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,1069,-432961.69,0,0,0,755.29749 -9307,11460,20700,20701,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,0,0,67,2,-2.9049973,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,6.9748988,30.853865,63.30843,0,1,1,0,3.9189975,0,40.63,26.65,55.12,31.57,3.333333333333333,1,1,0,0,0,8,2,1,452,774027,185464.47,455901.66,0,1756.4847 -9307,11460,20701,20700,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.3622799,7.6032968,67,-2,60.208843,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,3.6026113,7.4261618,55.12,31.57,40.63,26.65,5,1,1,0,0,0,8,2,1,452,774027,185464.47,455901.66,0,1756.4847 -9308,11461,20702,20703,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.8873215,8.0737371,6.4463463,10,1,-83.648712,0,3,3,2019,7,0,40,40,1,0,0,6.6824861,6.6824861,0,0,0,0,0,0,0,0,5.1651015,6.3434553,57.9,51.84,62.39,56.71,5,1,1,0,0,11,6,4,1,221,577439.38,174506,138681.06,0,1752.1479 -9308,11461,20703,20702,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.8530064,6.7839618,0,10,-1,-62.648205,0,3,3,2019,6,0,13,13,1,0,0,10.132656,10.132656,0,0,0,0,27,0,0,0,0,0,62.39,56.71,57.9,51.84,8.333333333333334,1,1,0,0,11,6,4,1,221,577439.38,174506,138681.06,0,1752.1479 -9309,11462,20704,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,1,7.7181916,7.4818106,0,0,0,-919.67206,0,2,-9,2019,13,2,35,32,1,2,0,8.2732077,8.2732077,0,0,0,0,0,1,1,0,0,0,34.23,30.82,-9,-9,3.333333333333333,1,1,0,0,9,9,4,1,264,10283.142,112930.66,0,0,1021.2163 -9309,11463,20705,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.8986063,8.5744028,0,0,-1009.8201,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,8.3002453,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,565,751003.56,506044.59,281113.69,0,2709.6892 -9310,11464,20706,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1158.8811,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,5.8534269,0,24.07,62.16,-9,-9,3.333333333333333,1,1,1,1,10,12,1,1,340,0,0,0,0,-7.7559223 -9311,11465,20707,20708,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.9374452,5.7237754,56,4,-138.01454,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0959129,65.91,39.85,58.32,50.22,10,1,1,0,0,0,7,2,1,367,694390.5,9909.4375,627393.63,0,1204.074 -9311,11465,20708,20707,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,56,-4,107.44678,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,65.91,39.85,8.333333333333334,1,1,0,0,0,7,2,1,367,694390.5,9909.4375,627393.63,0,1204.074 -9312,11466,20709,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,4.7711606,5.2256141,0,0,-982.37543,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.14467,0,0,1,1,0,1.315612,4.7266612,65.32000000000001,10.55,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,520,368607.44,0,0,0,1689.783 -9313,11467,20710,20712,-9,-9,1,1,42,0,4,0,3,3,-9,0,3,8.5718222,8.1781445,0,1,9,40.537308,-9,-9,-9,2019,6,0,55,0,1,0,0,8.4834547,8.4834547,0,0,0,0,2,1,1,0,0,0,60.87,34.23,51.83,57.2,8.333333333333334,1,1,0,0,9,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 -9313,11467,20711,-9,20712,20710,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-923.25006,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 -9313,11467,20712,20710,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,7.6807833,7.7657919,5.9513783,1,0,5.2163072,-9,2,3,2019,6,0,40,0,1,0,0,10.129366,10.129366,0,0,0,0,0,1,1,0,5.6377511,0,51.83,57.2,60.87,34.23,8.333333333333334,1,1,0,0,7,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 -9313,11467,20713,-9,20712,20710,1,0,13,0,4,1,3,0,-9,0,2,0,0,0,0,0,-970.24225,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,10,3,0,1155.5,67446.594,224389.59,307231.13,148174.69,3595.2856 -9314,11468,20714,20716,-9,-9,1,0,34,1,4,0,2,2,-9,0,5,5.9742146,5.7883329,0,9,-3,144.47606,0,2,3,2019,5,0,10,35,1,0,0,3.7443714,3.7443714,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.63,56.14,10,1,1,0,0,3,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 -9314,11468,20715,-9,20714,20716,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.4323,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 -9314,11468,20716,20714,-9,-9,1,1,37,1,4,0,3,3,-9,0,5,7.9639735,8.349618,0,9,3,25.252649,0,-9,-9,2019,10,1,56,30,1,1,0,6.9686341,6.9686341,0,0,0,0,0,1,1,0,0,0,57.63,56.14,57.06,57.76,10,1,1,0,0,12,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 -9314,11468,20717,-9,20714,20716,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.83807,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,568.25,-47432.797,25397.668,0,0,1747.1785 -9315,11469,20718,-9,20719,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.07288,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,587.5,119183.23,0,0,0,772.12244 -9315,11469,20719,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,0,0,-856.26862,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,57,-9,-9,7,1,1,1,0,0,2,1,0,587.5,119183.23,0,0,0,772.12244 -9316,11470,20720,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.992528,6.847795,0,0,0,-1078.9489,-9,2,2,2019,16,4,16,0,1,4,0,7.9210806,7.9210806,0,0,0,0,0,1,1,0,0,0,34.21,51.94,-9,-9,5,1,1,0,0,8,12,2,0,3141,312261.56,50817.258,0,0,1411.7362 -9317,11471,20721,-9,20722,-9,1,0,27,0,0,0,2,2,-9,0,4,8.6126423,8.7346497,0,0,0,-928.21985,-9,2,2,2019,7,0,42,0,1,0,0,18.585747,18.585747,0,0,0,0,0,0,0,0,6.8855448,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,375,-440639.06,30396.586,0,0,2308.8564 -9317,11472,20722,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,0,0,0,0,-807.47418,0,2,2,2019,15,3,0,33,4,3,0,0,0,0,0,0,0,0,0,0,0,2.4126594,0,48.23,48.66,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,1023,259657.33,102935.86,0,0,-83.053146 -9318,11473,20723,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,7.4929094,7.5405145,0,0,-1030.0187,0,3,-9,2019,14,4,0,0,4,4,0,0,0,1,126.76091,0,1199.0845,0,1,1,0,0,7.3707962,28.7,26.71,-9,-9,5,1,1,0,0,0,13,3,0,705,-70086.328,94650.156,204802.45,0,1588.001 -9319,11474,20724,20725,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.1329393,8.1107187,0,38,1,-23.167053,0,2,2,2019,4,0,37,40,1,0,0,13.944982,13.944982,0,0,0,0,0,0,0,0,1.2869624,0,58.99,34.1,43.34,60.31,10,1,1,0,0,11,7,5,1,1214,738978.63,335392.56,280249.72,0,3481.1963 -9319,11474,20725,20724,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.428956,8.5357447,0,38,-1,14.401464,0,3,1,2019,17,5,50,47,1,5,0,11.383093,11.383093,0,0,0,0,0,0,0,0,1.8118443,0,43.34,60.31,58.99,34.1,8.333333333333334,4,2,0,0,11,7,5,1,1214,738978.63,335392.56,280249.72,0,3481.1963 -9320,11475,20726,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.55762,8.7064161,0,0,0,-1014.0273,0,2,-9,2019,9,0,35,6,1,0,0,15.325333,15.325333,0,0,0,0,0,0,0,0,0,0,52.26,47.71,-9,-9,6.666666666666667,3,4,0,0,9,8,5,0,967,-61146.652,129974.49,170524.33,90511.641,1408.9792 -9320,11476,20727,-9,20726,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-994.31592,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,3.333333333333333,4,2,0,0,0,8,1,0,538,-384903.5,0,0,0,-444.45374 -9321,11477,20728,-9,20729,20731,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.7753,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 -9321,11477,20729,20731,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,7.4088588,7.3558898,0,1,-8,-107.77824,-9,2,2,2019,7,0,14,0,1,0,0,14.01217,14.01217,0,0,0,0,0,1,1,0,0,0,48.28,60.18,60.12,54.8,8.333333333333334,1,1,0,0,9,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 -9321,11477,20730,-9,20729,20731,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.27551,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 -9321,11477,20731,20729,-9,-9,1,1,46,1,2,0,2,2,-9,0,4,8.6013012,8.2828932,0,1,8,-13.035813,-9,3,3,2019,10,0,44,0,1,0,0,14.748148,14.748148,0,0,0,0,0,1,1,0,0,0,60.12,54.8,48.28,60.18,8.333333333333334,1,1,0,0,11,7,4,0,309.5,657507.94,129150.86,513067.34,0,2457.6799 -9322,11478,20732,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-907.06427,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.23,54.11,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,605,0,0,0,0,955.31512 -9323,11479,20733,20734,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.2814813,7.2795362,60,-2,67.761154,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3262734,59.07,37.52,48.96,32.89,8.333333333333334,1,1,0,0,0,10,4,1,559,1166826.6,443344.88,321616.88,0,3390.6733 -9323,11479,20734,20733,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,8.3385191,8.2059479,60,2,49.660576,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,3.4147699,0,24.318705,0,1,1,0,8.6383429,8.2197876,48.96,32.89,59.07,37.52,10,1,1,0,0,11,10,4,1,559,1166826.6,443344.88,321616.88,0,3390.6733 -9324,11480,20735,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.7284274,7.7156172,0,0,0,-1033.125,-9,2,-9,2019,6,0,40,0,1,0,0,7.0893359,7.0893359,0,0,0,0,0,0,0,0,0,0,45,51,-9,-9,10,1,1,0,0,12,2,3,1,530,228755.58,45257.145,98850.648,33966.898,1917.4907 -9325,11481,20736,20737,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,9.7891922,9.6729355,0,9,-7,-46.934486,0,2,2,2019,6,0,37,38,1,0,0,57.229721,57.229721,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.53,48.35,8.333333333333334,1,1,0,0,10,9,5,1,690,4418440,3586409.5,505681.19,0,8349.7969 -9325,11481,20737,20736,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,8.5354939,8.2730331,0,9,7,-80.845726,0,2,3,2019,8,0,70,50,1,0,0,7.1191974,7.1191974,0,0,0,0,0,1,1,0,7.4957924,0,60.53,48.35,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,690,4418440,3586409.5,505681.19,0,8349.7969 -9325,11482,20738,-9,20737,20736,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-933.68579,-9,3,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,144,-3264.478,0,0,0,0 -9326,11483,20739,20740,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.7793164,7.8337846,0,7,3,13.363189,0,-9,-9,2019,10,0,40,40,1,1,0,7.8411689,7.8411689,0,0,0,0,0,0,0,0,1.4642599,0,51,49,53.39,44.47,7,1,1,0,0,10,13,5,1,380.5,528288.63,422529.38,65459.813,34360.414,3092.8604 -9326,11483,20740,20739,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.757637,8.8085165,0,7,-3,-25.842817,0,3,3,2019,9,0,34,34,1,0,0,17.282782,17.282782,0,0,0,0,7,0,0,0,4.6923633,0,53.39,44.47,51,49,8.333333333333334,1,1,0,0,10,13,5,1,380.5,528288.63,422529.38,65459.813,34360.414,3092.8604 -9326,11484,20741,-9,20740,20739,1,1,25,0,0,0,2,2,-9,0,4,8.0964956,8.0520067,0,0,0,-1023.8831,0,2,2,2019,10,0,37,37,1,1,1,8.866766,8.866766,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,1,385,51747.449,0,0,0,1625.1943 -9327,11485,20742,-9,20743,20744,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-970.83893,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.44,51.82,-9,-9,8.333333333333334,1,1,0,1,0,1,4,1,464,1144311.8,898729.19,429362.56,182252.53,3726.5266 -9327,11485,20743,20744,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.9909697,8.9682255,0,10,-2,-5.1554589,0,2,2,2019,22,9,43,45,1,9,0,17.646523,17.646523,0,0,0,0,14.5,0,0,0,0,0,22.63,67.09,51.1,52.08,3.333333333333333,1,1,0,0,11,1,4,1,464,1144311.8,898729.19,429362.56,182252.53,3726.5266 -9327,11485,20744,20743,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,0,7.3175902,6.9217525,10,2,-16.373995,0,-9,-9,2019,7,0,0,55,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4419031,51.1,52.08,22.63,67.09,3.333333333333333,1,1,0,0,12,1,4,1,464,1144311.8,898729.19,429362.56,182252.53,3726.5266 -9328,11486,20745,20746,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,8,-3,28.169353,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.85296291,0,44.78,56.37,38.01,24.67,6.666666666666667,1,1,0,0,0,13,2,1,267,453036.88,158029.23,125072.22,0,1253.9606 -9328,11486,20746,20745,-9,-9,1,1,80,0,0,0,2,2,-9,0,1,0,5.940032,6.0599704,8,3,65.944656,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,8.1909466,0,0,1,1,0,0,6.1076508,38.01,24.67,44.78,56.37,5,1,1,0,0,0,13,2,1,267,453036.88,158029.23,125072.22,0,1253.9606 -9329,11487,20747,20748,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.0460358,8.8022556,0,8,-3,2.2151701,0,1,-9,2019,11,0,53,44,1,0,0,17.783369,17.783369,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.25,48.45,8.333333333333334,1,1,0,0,8,7,5,1,538.33331,307464,1520.9908,336997.5,123691.88,3244.3457 -9329,11487,20748,20747,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,7.8410401,7.7514853,0,24,3,16.656265,0,2,1,2019,10,0,30,30,1,0,0,10.045881,10.045881,0,0,0,0,2,0,0,0,.79345435,0,51.25,48.45,54.2,57.49,8.333333333333334,1,1,0,0,10,7,5,1,538.33331,307464,1520.9908,336997.5,123691.88,3244.3457 -9329,11487,20749,-9,20748,20747,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-988.74146,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,538.33331,307464,1520.9908,336997.5,123691.88,3244.3457 -9329,11488,20750,-9,20748,20747,1,0,18,0,1,0,2,2,1,0,4,7.0542817,7.2328806,0,0,0,-1071.6619,-9,1,1,2019,18,6,3,0,1,6,1,54.840023,54.840023,0,0,0,0,0,0,0,0,3.5960915,0,28.41,64.05,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,1096,589797,-18809.406,0,0,1097.2354 -9330,11489,20751,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.0202932,7.252274,5.8137131,0,0,-891.41675,0,2,2,2019,10,1,16,16,1,1,0,7.7609439,7.7609439,0,0,0,0,42,0,0,0,5.5645857,6.0006952,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,385,408046.22,64383.793,353457.63,0,260.68521 -9331,11490,20752,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.77466,0,-9,-9,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,39,-9,-9,6,2,3,0,1,0,8,2,0,1001,79247.672,0,0,0,471.90607 -9331,11491,20753,-9,20752,-9,1,1,27,0,0,0,2,2,-9,0,1,0,0,0,0,0,-964.23102,-9,3,-9,2019,36,12,0,0,2,12,1,0,0,0,0,0,0,7,1,0,1,0,0,45.72,37.22,-9,-9,2,2,3,0,0,0,8,1,0,438,-81244.93,0,0,0,0 -9332,11492,20754,-9,20756,20755,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1034.4005,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.16,37,-9,-9,10,1,1,0,0,1,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 -9332,11492,20755,20756,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,9.0539722,9.1011963,0,1,-3,-2.9557645,-9,-9,-9,2019,19,7,51,0,1,7,0,16.895416,16.895416,0,0,0,0,2,1,1,0,0,0,49.28,52.09,33.19,39.25,3.333333333333333,1,1,0,1,9,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 -9332,11492,20756,20755,-9,-9,1,0,39,0,2,0,2,2,-9,0,1,0,6.6121106,6.4789038,1,3,53.527374,-9,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,6.4569292,33.19,39.25,49.28,52.09,3.333333333333333,1,1,0,1,5,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 -9332,11492,20757,-9,20756,20755,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.46094,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 -9332,11492,20758,-9,20756,20755,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.2565,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,736.40002,295218.59,100791.83,323167.91,200383.56,4083.2451 -9333,11493,20759,20760,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.6178236,8.8980017,0,7,-8,22.071352,-9,-9,-9,2019,11,0,40,0,1,0,0,17.757698,17.757698,0,0,0,0,0,0,0,0,7.0154295,0,40.98,52.59,52.94,47.11,6.666666666666667,1,1,0,0,4,11,4,1,387,1413382.8,913729.13,289176.59,0,3805.3196 -9333,11493,20760,20759,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.5981174,7.6768155,0,7,8,94.171829,0,2,3,2019,12,1,22,30,1,1,0,9.5558157,9.5558157,0,0,0,0,0,0,0,0,0,0,52.94,47.11,40.98,52.59,8.333333333333334,1,1,0,0,3,11,4,1,387,1413382.8,913729.13,289176.59,0,3805.3196 -9334,11494,20761,20762,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,3,7,59.226051,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0034909,0,54.79,55.86,49.04,55.86,10,1,1,0,0,9,9,4,1,227,1530852.3,1716596.3,189874.53,0,1669.9155 -9334,11494,20762,20761,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5881786,8.02561,0,3,-7,-16.422707,0,2,2,2019,7,0,37,37,1,0,0,11.845617,11.845617,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.79,55.86,8.333333333333334,1,1,0,0,9,9,4,1,227,1530852.3,1716596.3,189874.53,0,1669.9155 -9335,11495,20763,20764,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3370085,8.0119267,0,8,5,172.67876,0,3,2,2019,18,6,46,45,1,6,0,11.301498,11.301498,0,0,0,0,2,0,0,0,3.6436367,0,38.17,59.79,35.8,59.5,3.333333333333333,1,1,0,0,11,5,4,1,619,185761.08,18128.508,251414.81,105896.48,2056.0356 -9335,11495,20764,20763,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.3516202,7.6560612,0,8,-5,-20.603458,0,2,2,2019,16,4,18,19,1,4,0,12.542329,12.542329,0,0,0,0,0,0,0,0,.55289006,0,35.8,59.5,38.17,59.79,8.333333333333334,1,1,0,0,10,5,4,1,619,185761.08,18128.508,251414.81,105896.48,2056.0356 -9336,11496,20765,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1024.7214,1,2,1,2019,11,0,0,42,2,0,0,0,0,0,0,0,0,0,0,0,0,8.4131622,0,54.2,57.49,-9,-9,6.666666666666667,4,2,0,0,9,8,1,1,1063,6535.3745,0,0,0,3347.6902 -9337,11497,20766,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,0,0,-972.27625,0,3,3,2019,10,0,0,30,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,2,3,1,0,1,5,1,1,1146,-115148.16,0,0,0,450.93341 -9338,11498,20767,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5747128,8.5776577,0,0,0,-1020.0216,0,2,2,2019,9,0,40,45,1,0,0,18.287165,18.287165,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,0,8,8,5,1,141,644975.63,255431.23,302110.03,107152.84,2562.467 -9339,11499,20768,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1066.1722,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,19.35,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,595,141331.27,0,0,0,1720.7469 -9340,11500,20769,-9,20771,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-890.93683,-9,3,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,4,2,0,0,0,10,1,0,1361,111676.78,0,0,0,1766.3889 -9340,11500,20770,-9,20771,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1148.2531,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,10,1,0,1361,111676.78,0,0,0,1766.3889 -9340,11500,20771,-9,-9,-9,1,0,38,0,2,0,3,3,-9,1,1,0,0,0,0,0,-998.29041,0,3,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,30.85,17.26,-9,-9,0,3,4,0,0,0,10,1,0,1361,111676.78,0,0,0,1766.3889 -9341,11501,20772,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9509573,7.6528883,0,0,0,-910.58508,0,3,2,2019,17,6,33,17,1,6,0,10.925619,10.925619,0,0,0,0,0,0,0,0,0,0,43.35,52.88,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,1313,-84531.375,-32199.168,0,0,871.91425 -9341,11502,20773,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,7.0109439,6.9553204,0,0,0,-963.87714,0,-9,-9,2019,12,0,35,0,1,2,0,5.0642986,5.0642986,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,1,5,2,1,101,271415.63,0,0,0,345.50507 -9342,11503,20774,-9,20776,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.05823,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,396.66666,107506.01,49654.457,0,0,1610.5669 -9342,11503,20775,-9,20776,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.1134,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,396.66666,107506.01,49654.457,0,0,1610.5669 -9342,11503,20776,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.1250148,7.5245142,0,0,0,-1079.0458,0,2,2,2019,11,1,24,30,1,1,0,6.3671885,6.3671885,0,0,0,0,0,1,0,1,0,0,60.28,43.74,-9,-9,8.333333333333334,1,1,0,0,12,2,2,0,396.66666,107506.01,49654.457,0,0,1610.5669 -9343,11504,20777,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.1194148,8.0578804,8.1645145,0,0,-1129.6448,0,3,-9,2019,9,0,15,16,1,0,0,11.774377,11.774377,0,0,0,0,0,1,1,0,7.906168,8.1447296,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,1691,6541447.5,0,0,0,2624.6414 -9344,11505,20778,-9,20780,20781,1,0,18,0,1,0,2,2,-9,0,3,7.115274,7.3101277,0,0,0,-950.10052,0,3,2,2019,10,0,35,0,1,0,1,4.8258243,4.8258243,0,0,0,0,0,1,1,0,0,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,532,-97523.227,141710.98,0,0,643.74823 -9344,11506,20779,-9,20780,20781,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.1782,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,604.33331,84028.156,-23934.869,0,0,1181.965 -9344,11506,20780,20781,-9,-9,1,0,37,0,1,0,3,3,-9,0,4,6.0777049,6.6195049,0,8,-3,55.431873,0,2,-9,2019,11,0,8,0,1,0,0,7.2662916,7.2662916,0,0,0,0,2,1,1,0,0,0,48.06,57.48,54.1,49.39,6.666666666666667,1,1,0,1,1,7,2,0,604.33331,84028.156,-23934.869,0,0,1181.965 -9344,11506,20781,20780,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,6.7714,7.3951488,5.90341,8,3,-48.619476,0,-9,-9,2019,10,0,16,0,1,0,0,8.1948147,8.1948147,0,0,0,0,2,1,1,0,5.728972,0,54.1,49.39,48.06,57.48,5,1,1,0,1,1,7,2,0,604.33331,84028.156,-23934.869,0,0,1181.965 -9345,11507,20782,20783,-9,-9,1,0,37,0,0,0,2,2,-9,0,5,8.2808428,8.7441969,0,6,-5,-138.54013,0,3,2,2019,1,0,47,47,1,0,0,12.830615,12.830615,0,0,0,0,0,1,1,0,0,0,61.01,53.18,51,56,10,1,1,0,0,6,7,5,1,236.66667,192406.8,0,318935.63,179192.8,4011.8835 -9345,11507,20783,20782,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.6224165,8.830143,0,6,5,168.46707,-9,-9,-9,2019,9,0,50,0,1,1,0,15.381636,15.381636,0,0,0,0,0,1,1,0,0,0,51,56,61.01,53.18,8,4,1,0,0,1,7,5,1,236.66667,192406.8,0,318935.63,179192.8,4011.8835 -9345,11507,20784,-9,20782,20783,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.21405,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.168649,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,236.66667,192406.8,0,318935.63,179192.8,4011.8835 -9346,11508,20785,20786,-9,-9,1,1,92,0,0,0,1,1,-9,0,3,0,8.4074659,8.3762827,34,11,105.374,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.157722,8.3714199,62.58,29.37,53.53,51,6.666666666666667,1,1,0,0,0,2,5,1,712.5,1290917.5,887610.38,373756.81,0,4786.1152 -9346,11508,20786,20785,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.8746982,7.749218,34,-11,-29.964348,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2614226,7.9674358,53.53,51,62.58,29.37,8.333333333333334,1,1,0,0,0,2,5,1,712.5,1290917.5,887610.38,373756.81,0,4786.1152 -9347,11509,20787,20788,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,6.0133376,5.8370976,7,-4,-7.9124637,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.7114601,54.1,59.11,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,411.5,535219.88,197770.67,130537.5,0,1326.2919 -9347,11509,20788,20787,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.9446101,6.3771591,7,4,-79.200073,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.3850842,6.3913198,57.33,53.46,54.1,59.11,8.333333333333334,1,1,0,0,0,12,2,1,411.5,535219.88,197770.67,130537.5,0,1326.2919 -9348,11510,20789,-9,20790,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.9913,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,1,1,1148.6666,23818.406,0,0,0,1824.0342 -9348,11510,20790,-9,-9,-9,1,0,41,0,3,0,2,2,-9,1,4,0,0,0,0,0,-974.55542,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,45.3,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,1148.6666,23818.406,0,0,0,1824.0342 -9348,11510,20791,-9,20790,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1048.636,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,1,1,1148.6666,23818.406,0,0,0,1824.0342 -9349,11511,20792,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-917.54315,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.12,61.85,-9,-9,6.666666666666667,1,1,1,1,1,13,1,0,2144.3333,-84486.781,0,0,0,1469.7581 -9349,11511,20793,-9,20792,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.41016,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,2144.3333,-84486.781,0,0,0,1469.7581 -9349,11511,20794,-9,20792,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.5254,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,2144.3333,-84486.781,0,0,0,1469.7581 -9350,11512,20795,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1009.1825,-9,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,1,0,0,1,1,0,1194,75774.102,0,0,0,994.49371 -9350,11513,20796,-9,-9,20795,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-991.63733,0,1,2,2019,6,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,0,1,1,1,0,3,1,1,0,491,151604.77,0,0,0,-20.144123 -9351,11514,20797,20798,-9,-9,1,0,38,0,5,0,2,2,-9,0,4,0,0,0,15,-1,0,-9,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,2,3,0,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 -9351,11514,20798,20797,-9,-9,1,1,39,0,5,0,3,3,-9,1,4,0,0,0,15,1,0,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,2,3,0,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 -9351,11514,20799,-9,20797,20798,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-881.58014,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 -9351,11514,20800,-9,20797,20798,1,1,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1031.4376,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 -9351,11514,20801,-9,20797,20798,1,0,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-1077.5457,-9,2,3,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,10,2,3,0,0,0,6,1,1,824.59998,9866.0742,0,0,0,3220.3796 -9352,11515,20802,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.1066098,6.1229653,0,0,-1071.579,0,3,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,6.1012836,51.66,28.08,-9,-9,0,1,1,0,0,0,4,2,1,237,98072.867,-61398.656,0,0,577.52362 -9353,11516,20803,20806,-9,-9,1,1,61,0,2,0,3,3,-9,0,4,8.6955204,8.4549017,0,17,18,0,0,3,3,2019,10,0,40,40,1,0,0,21.111971,21.111971,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,6.666666666666667,3,4,0,0,8,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 -9353,11516,20804,-9,20806,20803,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.13794,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 -9353,11516,20805,-9,20806,20803,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.85547,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,3,4,-9,0,0,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 -9353,11516,20806,20803,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7058258,8.692627,0,17,-18,0,0,3,3,2019,7,1,35,37,1,1,0,21.818119,21.818119,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,3,4,0,0,8,8,5,1,372.5,2739056,2078192.5,516997.56,38523.402,5349.1953 -9354,11517,20807,20808,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.9205289,7.9842978,0,6,-1,83.299721,0,3,3,2019,7,0,36,36,1,0,0,14.131122,14.131122,0,0,0,0,7,1,1,0,0,0,60.02,56.42,51,48,8.333333333333334,1,1,0,0,9,13,3,1,154.5,144918.78,459129.19,0,0,1806.0078 -9354,11517,20808,20807,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,6,1,-33.973446,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,60.02,56.42,7,1,1,0,0,0,13,3,1,154.5,144918.78,459129.19,0,0,1806.0078 -9355,11518,20809,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5856304,8.7007513,0,0,0,-1039.9515,0,1,1,2019,22,9,28,28,1,9,0,25.457478,25.457478,0,0,0,0,0,1,1,0,4.6982236,0,31.51,60.03,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,452,435256.06,101550.93,233920.14,71158.008,1950.0093 -9356,11519,20810,20811,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9376068,8.1999931,0,4,-5,5.5822906,0,-9,-9,2019,10,0,29,51,1,0,0,11.989107,11.989107,0,0,0,0,0,0,0,0,.93015224,0,35.91,63.19,52,54.51,8.333333333333334,1,1,0,0,2,5,5,1,806,294991.09,322709.22,228575.88,63399.805,3411.6768 -9356,11519,20811,20810,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.7430305,8.7136583,0,4,5,-52.225159,0,2,2,2019,10,0,36,37,1,0,0,16.713535,16.713535,0,0,0,0,7,0,0,0,0,0,52,54.51,35.91,63.19,8.333333333333334,1,1,0,0,11,5,5,1,806,294991.09,322709.22,228575.88,63399.805,3411.6768 -9357,11520,20812,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.5689154,7.008472,0,0,-977.30841,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.599885,6.3243961,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,291,26686.186,117710.13,0,0,842.27039 -9358,11521,20813,20814,-9,-9,1,0,34,1,4,0,2,2,-9,0,4,8.3687496,8.2507067,0,1,0,98.628227,-9,-9,-9,2019,6,0,25,0,1,0,0,15.351652,15.351652,0,0,0,0,0,1,1,0,0,0,46.76,31.57,54,57,8.333333333333334,2,3,0,0,4,8,3,0,460.66666,194514.78,163996.58,0,0,5340.4136 -9358,11521,20814,20813,-9,-9,1,1,43,1,4,0,3,3,-9,0,5,7.9971471,8.1224165,0,21,9,-43.214333,-9,3,3,2019,6,0,24,0,1,0,0,16.374998,16.374998,0,0,0,0,0,1,1,0,0,0,54,57,46.76,31.57,8.333333333333334,2,3,0,0,4,8,3,0,460.66666,194514.78,163996.58,0,0,5340.4136 -9358,11521,20815,-9,20813,20814,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.015,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,460.66666,194514.78,163996.58,0,0,5340.4136 -9359,11522,20816,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-882.29956,0,3,-9,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,3.867857,0,25.89,27.44,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,99,-258807.8,0,0,0,817.69934 -9360,11523,20817,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.9597,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.2142124,0,0,1,1,0,0,0,44.32,38.2,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,415,25290.941,0,0,0,1377.4344 -9360,11524,20818,-9,20817,-9,1,0,59,0,0,0,1,1,-9,1,3,0,0,0,0,0,-862.84497,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51.11,41.35,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,488,1380620.8,0,432095.91,0,77.299515 -9361,11525,20819,-9,-9,-9,1,1,89,0,1,0,1,1,-9,0,2,0,7.407836,6.8260918,0,0,-1074.8561,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4281197,67.02,14.22,-9,-9,10,2,3,0,0,0,2,2,0,313,234562.48,-133120.31,184947.84,0,1282.9332 -9362,11526,20820,-9,-9,-9,1,0,38,0,0,0,1,1,-9,1,2,0,0,0,0,0,-968.75665,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,31.07,54.95,-9,-9,6.666666666666667,1,1,0,0,9,11,1,1,253,-249246.55,-49250.008,83159.867,93096.109,666.20331 -9363,11527,20821,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.7720604,8.8816223,3.6033497,0,0,-883.73621,0,2,2,2019,16,5,50,45,1,5,0,12.528288,12.528288,0,0,0,0,0,0,0,0,4.610435,0,37.92,53.03,-9,-9,3.333333333333333,1,1,0,0,8,6,5,0,3144,-158802.19,64351.27,0,0,1499.3405 -9364,11528,20822,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.7630272,8.4902182,0,0,0,-1001.3873,0,3,2,2019,12,2,36,43,1,2,0,17.24579,17.24579,0,0,0,0,0,0,0,0,6.6805148,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,115,-98723.383,225693.28,0,0,2841.9849 -9365,11529,20823,20824,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,9.3569059,9.1003246,0,9,-10,37.023777,0,3,3,2019,10,0,4,4,1,0,0,390.26202,390.26202,0,0,0,0,0,0,0,0,3.1979675,0,55.85,39.09,41.06,62.04,8.333333333333334,1,1,0,0,10,10,5,1,374,502531.19,343629.94,297177.22,98025.141,11042.522 -9365,11529,20824,20823,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.944623,9.7047539,0,9,10,33.841602,0,3,3,2019,20,10,50,43,1,10,0,37.306606,37.306606,0,0,0,0,0,0,0,0,6.0740905,0,41.06,62.04,55.85,39.09,8.333333333333334,1,1,0,0,9,10,5,1,374,502531.19,343629.94,297177.22,98025.141,11042.522 -9366,11530,20825,20826,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,6.7223063,6.7508688,7,4,-55.551083,0,2,1,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,2.7849362,6.6756611,32.79,36.53,61.64,32.24,6.666666666666667,1,1,0,0,6,7,4,1,594,1706645.3,105852.68,808627.25,0,3118.3425 -9366,11530,20826,20825,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.4751959,8.7493172,5.7328129,7,-4,53.397583,0,3,2,2019,11,0,37,34,1,0,0,16.515627,16.515627,1,0,0,0,0,1,1,0,3.4697156,6.2151647,61.64,32.24,32.79,36.53,8.333333333333334,1,1,0,0,8,7,4,1,594,1706645.3,105852.68,808627.25,0,3118.3425 -9367,11531,20827,20828,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,41,3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,66.52,38.36,10,1,1,0,0,0,12,1,0,647.5,-29816.781,27804.139,148181.59,0,1188.7604 -9367,11531,20828,20827,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.52,38.36,62.66,52.4,6.666666666666667,1,1,0,0,0,12,1,0,647.5,-29816.781,27804.139,148181.59,0,1188.7604 -9368,11532,20829,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-965.21448,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,44.6,28.05,-9,-9,5,1,1,0,0,0,13,1,0,420,215559.63,0,0,0,1130.1835 -9368,11533,20830,-9,-9,20829,1,1,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-935.55518,0,-9,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,13,1,0,1096,-4860.4839,0,0,0,778.6748 -9369,11534,20831,20832,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4711618,8.5937471,0,2,0,126.73781,0,-9,-9,2019,6,0,40,35,1,0,0,14.456447,14.456447,0,0,0,0,0,0,0,0,2.8487089,0,48.81,59.91,50.54,62.09,8.333333333333334,1,1,0,0,1,8,5,0,798,91157.344,23594.961,0,0,3911.6538 -9369,11534,20832,20831,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.2353497,8.0101252,0,2,0,-25.479078,0,-9,-9,2019,8,3,55,55,1,3,0,7.7642827,7.7642827,0,0,0,0,0,0,0,0,4.8772559,0,50.54,62.09,48.81,59.91,6.666666666666667,1,1,0,1,6,8,5,0,798,91157.344,23594.961,0,0,3911.6538 -9370,11535,20833,20834,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,8.752037,8.9184084,0,11,-3,-87.782364,0,2,1,2019,16,4,47,47,1,4,0,15.639503,15.639503,0,0,0,0,0,1,1,0,0,0,41.35,62.05,58.3,52.91,8.333333333333334,1,1,0,0,4,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 -9370,11535,20834,20833,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.8197775,8.5808153,0,9,3,-60.87479,0,2,1,2019,6,0,39,42,1,0,0,23.232151,23.232151,0,0,0,0,2,1,1,0,0,0,58.3,52.91,41.35,62.05,8.333333333333334,1,1,0,0,7,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 -9370,11535,20835,-9,20833,20834,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.71307,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 -9370,11535,20836,-9,20833,20834,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.0111,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,5,1,888.75,215538.16,74801.609,233673.25,163604.08,4752.7124 -9371,11536,20837,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.3907132,6.2720079,0,0,-913.48712,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9128809,6.5155702,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1037,655474.06,27606.641,252926.8,0,2542.1736 -9372,11537,20838,20839,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.6922069,7.9034095,0,4,-2,-10.064239,0,1,2,2019,6,0,40,40,1,0,0,5.5944648,5.5944648,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,7,11,3,1,279,68041.305,0,0,0,735.45789 -9372,11537,20839,20838,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,4,2,-8.3387365,1,-9,-9,2019,10,1,0,12,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,8,11,3,1,279,68041.305,0,0,0,735.45789 -9373,11538,20840,20841,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.6310592,7.3062372,9,15,-3.2885106,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5316606,62.39,56.71,66.77,39.43,8.333333333333334,1,1,0,0,6,7,3,1,216.5,1311324,270896.5,686609.44,0,2287.2021 -9373,11538,20841,20840,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.7401094,6.9974174,9,-15,23.515059,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9873939,0,66.77,39.43,62.39,56.71,10,1,1,0,0,3,7,3,1,216.5,1311324,270896.5,686609.44,0,2287.2021 -9374,11539,20842,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-983.41022,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,1150,409938.47,0,94358.398,0,1274.7288 -9374,11540,20843,-9,20842,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1119.8009,0,3,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.76,22.94,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,136,202560.94,0,0,0,569.02264 -9375,11541,20844,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.0416355,7.0525832,0,0,-916.58521,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3512335,66.52,32.82,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,863,121059.09,49399.273,0,0,1464.4465 -9376,11542,20845,20846,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.0206289,8.7645826,0,3,1,13.020765,0,3,3,2019,10,0,80,70,1,1,0,12.189034,12.189034,0,0,0,0,0,1,1,0,0,0,50,49,40.55,41.06,7,1,1,0,0,11,13,5,1,1915.5,148465.36,4314.4995,78201.5,0,4023.686 -9376,11542,20846,20845,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,7.1736679,6.8301082,3,-1,8.4538326,0,2,2,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.1705041,40.55,41.06,50,49,6.666666666666667,1,1,0,0,0,13,5,1,1915.5,148465.36,4314.4995,78201.5,0,4023.686 -9376,11543,20847,-9,20846,20845,1,1,23,0,0,0,2,2,-9,0,4,8.2600565,8.201396,0,0,0,-978.88983,0,2,2,2019,10,0,38,35,1,1,1,10.674604,10.674604,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,7,13,4,1,3915,-294358.44,-575.50604,0,0,646.66071 -9376,11544,20848,-9,20846,20845,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1059.4408,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,1,0,13,2,1,462,0,0,0,0,0 -9377,11545,20849,-9,20850,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2099,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,920,288542.66,176914.81,197002.47,210029.95,2001.2825 -9377,11545,20850,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.4878111,8.4663181,0,0,0,-1048.7155,0,2,2,2019,14,2,35,37,1,2,0,16.131653,16.131653,0,0,0,0,0,1,1,0,0,0,36.53,47.94,-9,-9,3.333333333333333,1,1,0,0,7,6,3,1,920,288542.66,176914.81,197002.47,210029.95,2001.2825 -9377,11545,20851,-9,20850,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.0688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,920,288542.66,176914.81,197002.47,210029.95,2001.2825 -9378,11546,20852,20853,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.4781694,6.6403413,62,-3,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4190798,64.58,30.92,58.34,42.51,8.333333333333334,2,3,0,0,0,7,2,1,276.5,1035547.4,480525.38,443769.5,0,1427.077 -9378,11546,20853,20852,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.5646639,6.6790681,62,3,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3852491,58.34,42.51,64.58,30.92,8.333333333333334,2,3,0,0,0,7,2,1,276.5,1035547.4,480525.38,443769.5,0,1427.077 -9379,11547,20854,20855,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.854785,8.566577,55,-1,20.405264,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6214247,8.1333046,48.06,51.06,54.62,53.53,6.666666666666667,1,1,0,0,0,4,3,1,292,959065.25,736946,315684.41,0,3075.1741 -9379,11547,20855,20854,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,55,1,-33.358437,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4948928,0,54.62,53.53,48.06,51.06,8.333333333333334,1,1,0,0,0,4,3,1,292,959065.25,736946,315684.41,0,3075.1741 -9380,11548,20856,20857,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.9053526,8.8012695,0,8,1,60.295227,0,2,2,2019,22,10,35,38,1,10,0,23.284641,23.284641,0,0,0,0,0,0,0,0,2.6973882,0,25.18,58.65,54.1,59.11,5,1,1,0,0,12,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 -9380,11548,20857,20856,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,9.3824396,9.0676813,0,8,-1,-116.17521,0,-9,-9,2019,11,0,39,44,1,0,0,31.377346,31.377346,0,0,0,0,0,0,0,0,7.4136844,0,54.1,59.11,25.18,58.65,8.333333333333334,1,1,0,0,8,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 -9380,11548,20858,-9,20856,20857,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.119,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 -9380,11548,20859,-9,20856,20857,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.23395,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,1375.75,108810.3,39066.719,340731.81,163747.7,5490.1201 -9381,11549,20860,20861,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5140657,7.311326,0,29,-10,-15.633798,0,2,2,2019,14,2,23,23,1,2,0,9.7631025,9.7631025,0,0,0,0,0,1,1,0,.50939244,0,36.35,53.49,24.33,21.59,6.666666666666667,2,3,0,0,13,8,3,1,899.5,2363690,1274983.3,863353.56,0,2085.0154 -9381,11549,20861,20860,-9,-9,1,1,59,0,0,0,1,1,-9,0,1,0,7.5923247,7.5548515,31,10,43.057079,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,3.8487432,7.6913366,24.33,21.59,36.35,53.49,3.333333333333333,2,3,0,0,0,8,3,1,899.5,2363690,1274983.3,863353.56,0,2085.0154 -9381,11550,20862,-9,20860,20861,1,1,27,0,0,0,2,2,-9,0,3,8.1055899,7.9655004,0,0,0,-993.44806,0,3,1,2019,12,0,41,41,1,0,1,10.614738,10.614738,0,0,0,0,0,1,1,0,0,0,46.8,57.03,-9,-9,6.666666666666667,2,3,0,0,4,8,4,1,288,-358214.25,96835.578,0,0,1990.8262 -9381,11551,20863,-9,20860,20861,1,0,25,0,0,0,2,2,0,1,2,0,0,0,0,0,-929.35742,-9,3,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,4.7221713,0,34.44,48.18,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,492,194149.36,0,0,0,1878.7246 -9382,11552,20864,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.3251553,7.1768842,0,0,-1021.2672,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.338984,7.4199672,58.23,37.93,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,3050,4116.1997,383248.34,0,0,1590.5953 -9383,11553,20865,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.826128,9.0117931,0,0,0,-1030.3652,0,1,1,2019,3,0,44,45,1,0,0,22.792744,22.792744,0,0,0,0,0,0,0,0,.69678974,0,60.02,56.42,-9,-9,10,2,3,0,0,8,8,5,0,2142,149357.3,76045.289,119153.77,106556.07,3529.2493 -9384,11554,20866,-9,20867,20868,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.1155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1217.6666,187310.61,24028.928,323635.41,234819.23,4280.4248 -9384,11554,20867,20868,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,7.6615868,7.6181693,0,5,-8,55.633583,0,-9,-9,2019,7,0,36,36,1,0,0,6.8322945,6.8322945,0,0,0,0,2,1,1,0,0,0,47.33,58,60.02,56.42,8.333333333333334,1,1,0,0,5,5,5,1,1217.6666,187310.61,24028.928,323635.41,234819.23,4280.4248 -9384,11554,20868,20867,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,8.8489933,8.9086037,0,5,8,17.0107,0,2,2,2019,10,0,40,45,1,0,0,28.850292,28.850292,0,0,0,0,0,1,1,0,0,0,60.02,56.42,47.33,58,8.333333333333334,1,1,0,0,6,5,5,1,1217.6666,187310.61,24028.928,323635.41,234819.23,4280.4248 -9385,11555,20869,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,4.2946572,4.4351115,0,0,-912.96588,1,-9,-9,2019,15,3,0,49,2,3,0,0,0,0,0,0,0,0,0,0,0,4.8542299,0,54.45,50.69,-9,-9,8.333333333333334,1,1,0,0,6,8,2,0,485,4062.0295,0,0,0,-12.109155 -9386,11556,20870,20871,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3442421,8.5819664,0,34,0,-12.586599,0,3,2,2019,18,8,37,37,1,8,0,15.137906,15.137906,0,0,0,0,0,0,0,0,7.8268638,0,36.93,56.27,54.33,50.48,6.666666666666667,1,1,0,0,9,7,4,1,716,1498523.5,670138.63,695590.81,0,2840.9839 -9386,11556,20871,20870,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,6.7030258,6.4500036,0,34,0,-74.531937,0,3,3,2019,11,0,45,48,1,0,0,2.020817,2.020817,0,0,0,0,0,0,0,0,4.5242424,0,54.33,50.48,36.93,56.27,5,1,1,0,0,9,7,4,1,716,1498523.5,670138.63,695590.81,0,2840.9839 -9387,11557,20872,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.6659541,7.2741771,0,0,-886.3515,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.309588,7.8030772,54.7,34.63,-9,-9,1.666666666666667,1,1,0,0,0,13,3,1,193,178924.8,25057.59,128116.42,0,1601.5613 -9388,11558,20873,20874,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,8,-6,-21.308712,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,18.121061,0,0,1,1,0,4.0082226,0,52.59,33.77,56.42,37.79,10,1,1,0,0,0,11,4,1,702,1089805.1,240993.34,422337.25,0,2804.8198 -9388,11558,20874,20873,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.5540867,8.2593956,8,6,48.116558,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2218213,8.3957481,56.42,37.79,52.59,33.77,8.333333333333334,2,3,0,0,0,11,4,1,702,1089805.1,240993.34,422337.25,0,2804.8198 -9389,11559,20875,20876,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,2,1,0,0,3,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64,18.35,42.07,34.85,0,1,1,1,1,1,4,1,0,981.5,167091.38,6261.5742,0,0,2124.4175 -9389,11559,20876,20875,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,2,-1,0,0,3,3,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,42.07,34.85,31.64,18.35,1.666666666666667,1,1,0,0,0,4,1,0,981.5,167091.38,6261.5742,0,0,2124.4175 -9390,11560,20877,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2525549,8.2864809,0,0,0,-1047.9353,0,2,2,2019,11,1,42,47,1,1,0,9.4338942,9.4338942,0,0,0,0,0,1,1,0,0,0,52.56,47.22,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,327,191357.56,130163.23,0,0,1135.826 -9391,11561,20878,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.4133272,6.3810463,0,0,-1064.5995,-9,-9,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,6.1721978,0,21.95,67.01000000000001,-9,-9,5,1,1,0,1,2,10,2,0,844,-113839.84,0,0,0,605.55328 -9392,11562,20879,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0369868,6.677093,0,0,-1018.355,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,5.8535786,7.3072352,48.78,53.38,-9,-9,3.333333333333333,1,1,0,0,8,8,2,1,273,935956.81,249215.06,230737.05,0,740.03308 -9393,11563,20880,20882,-9,-9,1,1,28,0,2,0,2,2,-9,0,4,7.4187431,7.3787274,0,4,3,-42.135769,-9,-9,-9,2019,18,7,30,0,1,7,0,8.9463902,8.9463902,0,0,0,0,0,1,1,0,0,0,30.77,64.34,44.19,58.01,5,1,1,0,0,5,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 -9393,11563,20881,-9,20882,20880,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.22687,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 -9393,11563,20882,20880,-9,-9,1,0,25,0,2,0,3,3,-9,0,3,7.2215753,7.3776622,0,4,-3,62.846092,0,-9,-9,2019,11,1,24,24,1,1,0,6.793725,6.793725,0,0,0,0,0,1,1,0,0,0,44.19,58.01,30.77,64.34,8.333333333333334,1,1,0,0,7,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 -9393,11563,20883,-9,20882,20880,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.61823,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,1195.25,-100540.19,-82028.773,0,0,1996.9656 -9394,11564,20884,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,8.1773567,8.0662432,0,0,0,-991.85364,0,-9,3,2019,11,1,46,0,1,1,0,7.6571803,7.6571803,0,0,0,0,0,1,1,0,0,0,51.26,40.42,-9,-9,3.333333333333333,1,1,0,0,1,2,4,0,2806,488842.16,579154.94,0,0,1711.1073 -9395,11565,20885,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.9125938,5.8482275,0,0,-882.05353,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1731168,5.7721272,51.24,58.84,-9,-9,10,1,1,0,0,0,4,2,0,3008,662282.69,233194.31,275056.03,0,1054.7882 -9396,11566,20886,20887,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.8441262,8.1261454,0,6,-5,96.699997,0,2,2,2019,16,4,37,37,1,4,0,7.7812948,7.7812948,0,0,0,0,0,0,0,0,.69479543,0,45.26,45.46,42.29,58.81,8.333333333333334,1,1,0,0,7,12,5,1,363,307346.31,96938.531,386013.19,194998.13,2942.873 -9396,11566,20887,20886,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.7054834,8.5506077,0,6,5,74.042519,0,-9,-9,2019,7,0,43,46,1,0,0,17.742878,17.742878,0,0,0,0,0,0,0,0,0,0,42.29,58.81,45.26,45.46,6.666666666666667,1,1,0,0,9,12,5,1,363,307346.31,96938.531,386013.19,194998.13,2942.873 -9397,11567,20888,20889,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,38,2,-61.240211,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8220124,0,30.34,50.86,49.97,56.66,6.666666666666667,2,3,0,0,0,9,5,0,557.5,4670482,2542624,751106.75,0,13417.377 -9397,11567,20889,20888,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.2502337,9.7140503,39,-2,-68.296799,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,10.078123,9.7399778,49.97,56.66,30.34,50.86,8.333333333333334,1,1,0,0,5,9,5,0,557.5,4670482,2542624,751106.75,0,13417.377 -9398,11568,20890,20891,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,7.2071676,8.0052061,6.8215675,34,-5,64.781242,0,2,3,2019,12,0,30,30,1,0,0,5.8352485,5.8352485,1,0,0,0,0,1,1,0,0,7.1183157,38.71,61.21,55.63,44.55,6.666666666666667,1,1,0,0,12,1,3,1,309,1350869,648762.88,387086.19,16890.854,2027.8257 -9398,11568,20891,20890,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,34,5,-39.224712,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.63,44.55,38.71,61.21,8.333333333333334,1,1,0,0,11,1,3,1,309,1350869,648762.88,387086.19,16890.854,2027.8257 -9398,11569,20892,-9,20891,20890,1,1,26,0,0,0,2,2,-9,0,4,8.1251583,8.1976995,0,0,0,-896.59027,0,2,1,2019,4,0,42,43,1,0,1,7.2640443,7.2640443,0,0,0,0,0,1,1,0,0,0,60.87,42.1,-9,-9,6.666666666666667,1,1,0,0,8,1,4,1,1119,259129.06,-50863.996,0,0,944.95428 -9399,11570,20893,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.4705563,8.2618752,0,0,0,-1012.1079,-9,3,2,2019,12,0,35,0,1,0,0,16.380104,16.380104,0,0,0,0,0,0,0,0,5.7558174,0,51.5,39.74,-9,-9,8.333333333333334,1,1,0,0,5,2,4,0,1976,145996.64,9196.0635,0,0,1748.3123 -9400,11571,20894,20895,-9,-9,1,1,44,0,1,0,2,2,-9,0,5,8.1390657,8.086175,0,18,-8,21.234577,0,2,2,2019,6,0,38,40,1,0,0,13.161728,13.161728,0,0,0,0,0,1,1,0,0,0,57.06,57.76,64.40000000000001,25.94,8.333333333333334,1,1,0,0,8,9,5,1,201.5,857846.75,-39003.988,737312,0,4632.4995 -9400,11571,20895,20894,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,8.9309025,9.1426697,6.1820445,18,8,59.567909,0,2,2,2019,9,1,10,40,1,1,0,80.905663,80.905663,0,0,0,0,0,1,1,0,0,6.6081653,64.40000000000001,25.94,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,201.5,857846.75,-39003.988,737312,0,4632.4995 -9401,11572,20896,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1141.1814,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.98,28.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,584,208298.13,0,0,0,1589.9375 -9402,11573,20897,20898,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.6122522,8.8839884,0,6,0,-50.850296,0,2,1,2019,6,0,55,55,1,0,0,17.361406,17.361406,0,0,0,0,0,0,0,0,0,0,62,44.54,35.47,52.59,8.333333333333334,1,1,0,0,6,9,5,1,628,578156.25,179181.44,597521.63,238082.59,6502.0752 -9402,11573,20898,20897,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.1061163,8.7571592,0,6,0,-43.919254,0,-9,-9,2019,13,1,37,39,1,1,0,28.126806,28.126806,0,0,0,0,0,0,0,0,0,0,35.47,52.59,62,44.54,5,1,1,0,0,8,9,5,1,628,578156.25,179181.44,597521.63,238082.59,6502.0752 -9403,11574,20899,20901,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.3439274,8.2855997,0,8,-6,93.564629,0,2,1,2019,7,0,49,35,1,0,0,8.114975,8.114975,0,0,0,0,7,1,1,0,0,0,57.06,57.76,20.38,26.17,6.666666666666667,1,1,0,0,8,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 -9403,11574,20900,-9,20899,20901,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2832,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 -9403,11574,20901,20899,-9,-9,1,1,45,0,2,0,3,3,-9,1,1,0,0,0,8,6,-56.769672,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.38,26.17,57.06,57.76,0,1,1,0,1,8,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 -9403,11574,20902,-9,20899,20901,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.33063,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,3,1,381.5,199103.86,119622.87,168054.11,126957.57,2660.114 -9404,11575,20903,20904,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.1248131,7.8323655,0,4,4,-12.966678,0,-9,3,2019,6,0,38,38,1,0,0,11.116851,11.116851,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,4,4,0,235,240370.66,24928.891,107549.73,59210.277,2316.7632 -9404,11575,20904,20903,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.8280668,7.9323382,0,4,-4,78.923759,0,-9,-9,2019,8,0,40,40,1,0,0,7.5724874,7.5724874,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,4,1,0,0,10,4,4,0,235,240370.66,24928.891,107549.73,59210.277,2316.7632 -9405,11576,20905,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,1,8.0751982,8.2348976,0,0,0,-1036.4138,0,2,2,2019,27,10,35,38,1,10,0,15.195325,15.195325,0,0,0,0,0,1,1,0,0,0,24.93,19.95,-9,-9,0,1,1,0,0,9,12,4,1,1211,-237171.73,74559.813,0,0,1393.3091 -9406,11577,20906,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.56421,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.91,59.95,-9,-9,6.666666666666667,3,4,1,1,4,8,1,0,317,86408.742,0,0,0,538.36646 -9407,11578,20907,20909,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,7.4638877,7.5889144,0,23,7,44.954132,0,2,3,2019,26,12,25,30,1,12,0,9.4173965,9.4173965,0,0,0,0,14.5,1,0,1,2.4413042,0,29.21,55.99,37.17,30.28,6.666666666666667,2,3,0,0,10,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 -9407,11578,20908,-9,20909,20907,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.6931,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 -9407,11578,20909,20907,-9,-9,1,0,40,0,1,0,3,3,-9,1,1,0,0,0,23,-7,56.992439,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,0,1,1.9931649,0,37.17,30.28,29.21,55.99,6.666666666666667,2,3,0,0,0,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 -9407,11578,20910,-9,20909,20907,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1095.2452,-9,3,3,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,7,1,0,1,0,0,41.04,54.03,-9,-9,8.333333333333334,2,3,0,0,1,2,2,1,1354,268781.25,12365.671,181850.23,0,2612.2739 -9407,11579,20911,-9,20909,20907,1,1,21,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1018.4405,0,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,14.5,1,0,1,1.5323581,0,46.67,55.57,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,92,0,0,0,0,368.19958 -9408,11580,20912,20913,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.2436562,7.2625117,0,9,4,56.285053,0,2,1,2019,6,0,20,30,1,0,0,7.3978519,7.3978519,0,0,0,0,0,0,0,0,0,0,52,54.51,53.51,40.29,10,1,1,0,0,11,9,3,1,1348.5,1411712.3,721790.38,382509.28,0,1953.0646 -9408,11580,20913,20912,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.8035522,7.8440642,0,26,-4,-42.793957,0,3,2,2019,7,0,25,30,1,0,0,8.5488462,8.5488462,0,0,0,0,7,0,0,0,2.6608672,0,53.51,40.29,52,54.51,6.666666666666667,1,1,0,0,11,9,3,1,1348.5,1411712.3,721790.38,382509.28,0,1953.0646 -9408,11581,20914,-9,20913,20912,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1022.5412,-9,1,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,472,0,0,0,0,-77.759995 -9408,11582,20915,-9,20913,20912,1,1,19,0,0,0,2,2,-9,0,5,7.7750626,8.1335125,0,0,0,-931.84082,0,1,2,2019,8,0,46,9,1,0,1,5.1947789,5.1947789,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,3,9,3,1,190,11736.146,55203.563,0,0,564.99304 -9409,11583,20916,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,5.9228659,6.0101695,0,0,-930.1286,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,7.2594361,0,59.153111,0,1,1,0,3.7902672,6.2491627,68.07000000000001,17.6,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,447,806200.13,87259.961,212797.63,0,1268.8596 -9410,11584,20917,20918,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,8.1609755,8.1423178,0,4,1,-46.99509,0,-9,-9,2019,19,7,30,30,1,7,0,15.038994,15.038994,0,0,0,0,0,1,1,0,0,0,19.34,53.33,46.31,41.9,1.666666666666667,1,1,0,1,9,8,2,0,571,90158.508,79164.906,0,0,2710.3538 -9410,11584,20918,20917,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,0,0,0,4,-1,-24.958893,0,2,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,46.31,41.9,19.34,53.33,3.333333333333333,3,4,0,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 -9410,11584,20919,-9,20918,20917,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1012.8959,-9,2,2,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 -9410,11584,20920,-9,20918,20917,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.1805,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 -9410,11584,20921,-9,20918,20917,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.86377,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,571,90158.508,79164.906,0,0,2710.3538 -9411,11585,20922,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.4660845,6.8349214,0,0,-951.26099,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3521819,6.68539,61.01,53.18,-9,-9,10,1,1,0,0,0,13,2,1,718,359190.69,94734.43,108728.17,0,1062.6215 -9412,11586,20923,-9,20926,20927,1,1,12,1,6,1,3,0,-9,0,4,0,0,0,0,0,-916.35864,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9412,11586,20924,-9,20926,20927,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-941.02606,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9412,11586,20925,-9,20926,20927,1,1,10,1,6,1,3,0,-9,0,4,0,0,0,0,0,-993.84338,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9412,11586,20926,20927,-9,-9,1,0,32,1,6,0,3,3,-9,1,4,0,3.5965197,3.7553501,4,0,-135.38135,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,3.3909957,0,58.75,51.28,35.73,32.53,10,1,1,0,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9412,11586,20927,20926,-9,-9,1,1,32,1,6,0,2,2,-9,1,1,0,0,0,4,0,-2.0445108,0,2,1,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.73,32.53,58.75,51.28,6.666666666666667,1,1,0,0,2,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9412,11586,20928,-9,20926,20927,1,1,14,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1021.0699,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9412,11586,20929,-9,20926,20927,1,0,3,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1039.5239,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9412,11586,20930,-9,20926,20927,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-994.49585,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,749.25,154927.22,59885.5,0,0,3481.813 -9413,11587,20931,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,1,0,7.5685835,7.7604933,0,0,-960.83704,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5318427,45.77,25.24,-9,-9,5,1,1,0,0,2,5,3,1,971,821941.25,160434.97,437633.88,0,1616.3552 -9414,11588,20932,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0795641,7.9252572,0,0,0,-1058.3698,0,3,2,2019,11,0,39,39,1,0,0,9.5633163,9.5633163,0,0,0,0,0,1,1,0,3.1267269,0,58.15,52.91,-9,-9,1.666666666666667,1,1,0,0,10,2,4,1,932,271935.34,152042.31,102599.84,90716.625,1692.6006 -9415,11589,20933,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.8101,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,4,6,0,0,0,12,1,0,3545,-137287.25,0,0,0,1210.7539 -9415,11590,20934,-9,20935,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1124.8357,0,3,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,30.09,39.58,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,4151,-192793.84,0,0,0,1042.7001 -9415,11591,20935,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1101.171,0,-9,-9,2019,26,10,0,0,4,10,0,0,0,1,0,58.580986,0,120,1,1,0,0,0,33.33,21.65,-9,-9,1.666666666666667,1,1,0,1,0,12,1,0,328,-161162.31,0,63668.16,0,85.054337 -9416,11592,20936,20937,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,25,-1,-14.00807,-9,-9,-9,2019,12,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,7.3832178,0,45.69,64.23,39.74,13.23,6.666666666666667,1,1,0,0,6,9,2,1,804.5,2295152,1187855.4,827923.38,0,966.97705 -9416,11592,20937,20936,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,0,6.0430245,6.2348366,25,1,117.04193,-9,-9,-9,2019,26,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,6.0221505,39.74,13.23,45.69,64.23,0,1,1,0,0,4,9,2,1,804.5,2295152,1187855.4,827923.38,0,966.97705 -9416,11593,20938,-9,20936,20937,1,1,24,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1033.8275,-9,1,1,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,9,1,1,385,217945.38,0,0,0,810.81592 -9417,11594,20939,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.6466265,7.4714255,0,0,0,-1131.8293,0,-9,-9,2019,8,0,30,30,1,0,0,7.7257619,7.7257619,0,0,0,0,0,1,1,0,7.5545058,0,57.16,56.15,-9,-9,10,1,1,0,0,10,13,3,1,556,89169.578,184391.17,129710.13,0,2104.2227 -9418,11595,20940,20942,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.0185385,9.2297058,0,10,2,-41.321468,0,3,2,2019,8,0,40,40,1,0,0,24.652819,24.652819,0,0,0,0,0,0,0,0,0,0,70.39,40.52,48.77,60.16,10,1,1,0,0,11,12,5,1,1306.3334,712496.63,51908.445,743189.06,162039.14,3768.7146 -9418,11595,20941,-9,20942,20940,1,1,17,0,0,1,2,0,0,0,5,0,5.3110895,5.5673308,0,0,-1030.2068,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.3085723,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,0,12,5,1,1306.3334,712496.63,51908.445,743189.06,162039.14,3768.7146 -9418,11595,20942,20940,-9,-9,1,0,45,0,0,0,2,2,1,0,5,8.1119814,7.8581486,0,10,-2,-88.026123,-9,2,3,2019,8,0,36,0,1,0,0,7.2604098,7.2604098,0,0,0,0,0,0,0,0,1.8217688,0,48.77,60.16,70.39,40.52,6.666666666666667,1,1,0,0,7,12,5,1,1306.3334,712496.63,51908.445,743189.06,162039.14,3768.7146 -9418,11596,20943,-9,20942,20940,1,0,22,0,0,0,1,1,1,0,5,8.3975801,8.0015469,0,0,0,-887.15674,-9,2,2,2019,3,0,50,0,1,0,1,11.393908,11.393908,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,12,4,1,1048,84620.297,12110.784,0,0,1590.4821 -9419,11597,20944,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,4.7579875,4.7536101,0,0,-986.92432,-9,3,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,4.1362209,0,34.86,18.02,-9,-9,1.666666666666667,3,4,0,1,0,8,2,0,1181,146830.39,-41632.477,0,0,587.81348 -9420,11598,20945,20946,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,9.5035992,9.7089701,0,8,0,-76.154465,0,2,3,2019,17,5,42,90,1,5,0,43.922001,43.922001,0,0,0,0,0,0,0,0,0,0,42.52,53.48,59.29,46.97,5,1,1,0,0,6,8,5,1,1023.5,912221,506543.19,680755.13,350116.88,4800.0005 -9420,11598,20946,20945,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,0,0,0,8,0,-157.66733,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,46.97,42.52,53.48,8.333333333333334,1,1,0,0,4,8,5,1,1023.5,912221,506543.19,680755.13,350116.88,4800.0005 -9420,11599,20947,-9,20946,20945,1,1,18,0,1,1,3,0,0,0,4,0,3.7281063,3.6665921,0,0,-978.34637,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,3.7941844,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,658,-48456.02,-32611.672,0,0,-35.796722 -9421,11600,20948,20949,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.3734236,8.5989151,0,1,-4,-87.630028,0,2,2,2019,15,5,39,39,1,5,0,19.188646,19.188646,0,0,0,0,0,0,0,0,.54158682,0,30.75,61.56,38.59,60.85,10,1,1,0,0,10,11,5,1,788.5,320148.44,99057.867,199142.28,86405.703,2894.5728 -9421,11600,20949,20948,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.0471058,7.9882188,0,1,4,-19.953238,-9,-9,-9,2019,14,2,39,0,1,2,0,9.0001011,9.0001011,0,0,0,0,0,0,0,0,0,0,38.59,60.85,30.75,61.56,8.333333333333334,1,1,0,0,5,11,5,1,788.5,320148.44,99057.867,199142.28,86405.703,2894.5728 -9422,11601,20950,20953,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,5.2282219,5.4134593,5.012208,10,-4,-59.679981,0,2,2,2019,17,5,4,4,1,5,0,4.738389,4.738389,0,0,0,0,0,1,1,0,4.8088183,0,31.29,61.29,39.23,52.28,3.333333333333333,1,1,0,1,2,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 -9422,11601,20951,-9,20950,20953,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.54077,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 -9422,11601,20952,-9,20950,20953,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4917,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 -9422,11601,20953,20950,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,6.4214926,6.3125629,0,10,4,107.04263,0,2,2,2019,21,9,45,30,1,9,0,1.3947823,1.3947823,0,0,0,0,0,1,1,0,0,0,39.23,52.28,31.29,61.29,3.333333333333333,1,1,0,1,8,9,2,0,800.75,-3485.6741,0,0,0,1854.2379 -9423,11602,20954,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.0607662,8.2194548,0,0,0,-1118.4249,0,-9,3,2019,6,0,74,102,1,0,0,4.5114202,4.5114202,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,2,4,0,397,583415.19,91469.305,0,0,1447.4292 -9424,11603,20955,20956,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1243906,8.0597324,0,8,4,97.248634,0,-9,-9,2019,10,0,50,40,1,1,0,7.0789976,7.0789976,0,0,0,0,0,0,0,0,3.7039502,0,51,57,54.2,57.49,7,1,1,0,0,1,2,3,1,739.66669,-68524.219,66955.508,0,0,2821.0334 -9424,11603,20956,20955,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.5831695,7.5121431,0,17,-4,39.636971,0,2,2,2019,12,0,25,25,1,0,0,7.1152158,7.1152158,0,0,0,0,0,0,0,0,6.8872447,0,54.2,57.49,51,57,8.333333333333334,1,1,0,0,9,2,3,1,739.66669,-68524.219,66955.508,0,0,2821.0334 -9424,11603,20957,-9,20956,20955,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.4218,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,739.66669,-68524.219,66955.508,0,0,2821.0334 -9425,11604,20958,-9,20960,20961,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.412,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 -9425,11604,20959,-9,20960,20961,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-806.5849,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 -9425,11604,20960,20961,-9,-9,1,0,25,2,2,0,2,2,-9,0,4,0,0,0,5,-5,-71.156403,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.93,36.84,43.59,49.11,6.666666666666667,2,3,0,0,5,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 -9425,11604,20961,20960,-9,-9,1,1,30,2,2,0,2,2,-9,0,2,7.9845681,8.2851067,0,5,5,106.49515,0,2,2,2019,6,0,35,37,1,0,0,13.085523,13.085523,0,0,0,0,0,1,1,0,0,0,43.59,49.11,45.93,36.84,8.333333333333334,2,3,0,0,11,4,3,1,652,-251111.38,14475.881,0,0,1959.4882 -9426,11605,20962,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.9634542,8.6853561,0,0,0,-851.19873,0,3,3,2019,13,1,43,46,1,1,0,18.644873,18.644873,0,0,0,0,0,0,0,0,3.119756,0,37.98,59.7,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,296,87355.203,0,370879.38,304309.69,4029.2109 -9427,11606,20963,20964,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.3443327,8.2854624,7,5,110.63319,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,120,1,1,0,2.4082413,8.0521803,25.86,55.71,37.57,56.9,3.333333333333333,1,1,0,0,0,7,3,1,853,1203521.8,886888.56,317933.25,0,2748.9099 -9427,11606,20964,20963,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.8922625,4.9061594,7,-5,-86.907188,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.3003111,37.57,56.9,25.86,55.71,8.333333333333334,1,1,0,0,4,7,3,1,853,1203521.8,886888.56,317933.25,0,2748.9099 -9428,11607,20965,20966,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.3510466,8.815074,0,33,0,-3.3750627,0,3,-9,2019,11,0,45,45,1,0,0,11.397866,11.397866,0,0,0,0,0,0,0,0,0,0,48.68,51.82,48,49,8.333333333333334,1,1,0,0,7,8,5,0,756,358878.31,185866.91,274229.69,80183.875,3863.8818 -9428,11607,20966,20965,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.0360661,8.0402241,0,8,0,79.231804,0,-9,-9,2019,11,0,45,45,1,2,0,7.7231855,7.7231855,0,0,0,0,0,0,0,0,0,0,48,49,48.68,51.82,7,1,1,0,0,1,8,5,0,756,358878.31,185866.91,274229.69,80183.875,3863.8818 -9429,11608,20967,-9,20969,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.1264,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,846,0,0,0,0,4805.5586 -9429,11608,20968,-9,20969,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.373,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,846,0,0,0,0,4805.5586 -9429,11608,20969,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.9377804,9.259511,7.6621661,0,0,-936.3656,0,-9,-9,2019,11,0,30,30,1,0,0,35.739532,35.739532,0,0,0,0,0,1,0,1,8.0844555,0,49.25,52.88,-9,-9,6.666666666666667,1,1,0,0,4,7,5,1,846,0,0,0,0,4805.5586 -9430,11609,20970,20971,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5501246,6.6566801,30,-13,70.800804,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.3269405,6.6923447,53.39,28.41,58.15,52.91,8.333333333333334,1,1,0,0,0,10,3,1,356.5,912247.63,507095.53,332403.03,0,4075.9553 -9430,11609,20971,20970,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.715765,7.6675949,30,13,16.74548,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3426352,7.880064,58.15,52.91,53.39,28.41,10,1,1,0,0,0,10,3,1,356.5,912247.63,507095.53,332403.03,0,4075.9553 -9431,11610,20972,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.9302464,9.1891804,0,0,0,-965.70215,0,3,3,2019,9,1,65,65,1,1,0,18.952074,18.952074,0,0,0,0,0,0,0,0,4.0259356,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,120,731795.31,173639.25,0,0,2136.4197 -9432,11611,20973,20974,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,6.6195421,6.54988,9,-1,-13.690816,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,6.4654593,27.98,47.27,57.16,56.15,8.333333333333334,1,1,1,0,1,5,4,1,653,83576.813,89688.172,153324.66,0,2077.2441 -9432,11611,20974,20973,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.6841536,8.5900545,7.0693989,9,1,-93.615402,0,3,3,2019,6,0,37,37,1,0,0,5.3359718,5.3359718,0,0,0,0,71.5,1,1,0,2.1091967,7.3757777,57.16,56.15,27.98,47.27,8.333333333333334,1,1,0,0,12,5,4,1,653,83576.813,89688.172,153324.66,0,2077.2441 -9433,11612,20975,20976,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.453155,7.5035915,8,2,-6.3593073,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7842941,7.9524975,57.16,56.15,42.6,44.91,8.333333333333334,1,1,0,0,0,12,3,1,609,649899.88,586785.88,339899.88,119265.45,2143.8892 -9433,11612,20976,20975,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,8,-2,-43.078011,0,1,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6087892,0,42.6,44.91,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,609,649899.88,586785.88,339899.88,119265.45,2143.8892 -9434,11613,20977,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,7.5823784,7.4632611,0,0,0,-1112.8809,0,1,1,2019,8,1,40,45,1,1,0,3.4721901,3.4721901,0,0,0,0,0,1,1,0,7.6772575,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,902,0,0,0,0,2664.4624 -9435,11614,20978,20979,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.2075143,7.3545227,55,-3,-23.896622,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.361506,50,46,49.58,55.59,7,1,1,0,0,0,11,3,1,342,1646825.8,872248.06,682284.38,0,3474.2363 -9435,11614,20979,20978,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6026797,7.6081796,55,3,10.348291,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5874953,49.58,55.59,50,46,6.666666666666667,1,1,0,0,0,11,3,1,342,1646825.8,872248.06,682284.38,0,3474.2363 -9436,11615,20980,20981,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.9916959,5.0049233,6,-3,-17.835886,0,2,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6761155,4.9977827,46.73,46.63,52.81,35.58,10,1,1,0,0,5,8,2,1,454.5,1224449.3,293780.38,464280.75,0,1834.6008 -9436,11615,20981,20980,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.840312,6.8641987,6,3,-61.58078,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.8507705,6.7018085,52.81,35.58,46.73,46.63,10,1,1,0,0,5,8,2,1,454.5,1224449.3,293780.38,464280.75,0,1834.6008 -9437,11616,20982,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.6741438,8.4004669,0,0,0,-1020.2819,0,3,3,2019,11,1,37,37,1,1,0,16.804047,16.804047,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1043.5,-52126.723,-19426.742,0,0,2099.9546 -9437,11616,20983,-9,20982,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1001.7455,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1043.5,-52126.723,-19426.742,0,0,2099.9546 -9437,11617,20984,-9,20982,-9,1,1,22,0,0,0,2,2,-9,0,3,8.3585701,7.8879352,0,0,0,-982.25616,0,2,-9,2019,20,7,34,49,1,7,1,9.9429102,9.9429102,0,0,0,0,0,1,1,0,0,0,26.08,55.45,-9,-9,1.666666666666667,3,4,0,0,4,7,4,1,223,-339198.59,0,0,0,1709.1672 -9438,11618,20985,20986,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.9274664,7.9360895,0,23,-2,25.236809,0,2,2,2019,29,12,49,48,1,12,0,5.1589084,5.1589084,0,0,0,0,14.5,1,1,0,0,0,28.33,57.1,40.87,23.35,1.666666666666667,1,1,0,1,13,7,3,0,390,320592.19,142952.44,0,0,1428.1672 -9438,11618,20986,20985,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,23,2,-112.88976,0,2,2,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,23.35,28.33,57.1,1.666666666666667,1,1,0,0,7,7,3,0,390,320592.19,142952.44,0,0,1428.1672 -9439,11619,20987,-9,20990,20989,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6823,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 -9439,11619,20988,-9,20990,20989,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.02466,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 -9439,11619,20989,20990,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,8.933939,8.9492445,0,15,0,26.736477,0,2,2,2019,7,0,35,35,1,0,0,23.084322,23.084322,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.33,55.93,8.333333333333334,2,3,0,0,9,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 -9439,11619,20990,20989,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.0866289,7.670804,0,15,0,-103.65514,0,2,1,2019,10,0,20,20,1,0,0,19.057207,19.057207,0,0,0,0,0,1,1,0,2.4983952,0,46.33,55.93,57.16,56.15,8.333333333333334,2,3,0,0,5,6,5,1,416.25,-117775.28,54013.172,0,0,4581.4146 -9440,11620,20991,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.0912104,8.2968035,0,0,0,-948.90466,-9,2,2,2019,20,8,39,0,1,8,0,10.339072,10.339072,0,0,0,0,0,0,0,0,0,0,36.14,38,-9,-9,3.333333333333333,1,1,0,0,8,12,4,0,1450,128294.04,88065.32,204574.59,92195.82,1235.8453 -9441,11621,20992,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.1521754,6.124289,0,0,-1049.7177,0,2,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.3426986,49.35,19.8,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,192,301577.5,163468.75,0,0,1712.9154 -9442,11622,20993,20994,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,-4,-2.6578834,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49,47,56.46,49.68,8.333333333333334,1,1,0,0,5,4,2,1,689,21703.461,77853.477,86065.313,0,4117.5679 -9442,11622,20994,20993,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.8547888,6.7952724,9,4,-32.60416,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5529985,6.8769636,56.46,49.68,49,47,8.333333333333334,1,1,0,0,3,4,2,1,689,21703.461,77853.477,86065.313,0,4117.5679 -9443,11623,20995,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,5.3912039,6.1619859,5.3974452,0,0,-1052.6417,0,2,1,2019,14,2,20,18,1,2,0,1.0769426,1.0769426,0,0,0,0,0,0,0,0,2.6384883,6.0036492,33.3,56.3,-9,-9,5,1,1,0,1,12,10,2,1,729,-183947.05,144244.77,297479.94,144722.81,-168.75444 -9443,11624,20996,-9,20995,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0408421,7.9273667,0,0,0,-969.43091,0,2,-9,2019,16,5,32,38,1,5,1,9.9948826,9.9948826,0,0,0,0,0,0,0,0,1.3359596,0,35.97,61.83,-9,-9,6.666666666666667,1,1,0,0,6,10,4,1,253,44783.355,150404.84,0,0,1454.4888 -9443,11625,20997,-9,20995,-9,1,0,22,0,0,0,1,1,1,0,4,7.6821771,7.8426809,0,0,0,-977.96393,-9,2,-9,2019,5,0,35,0,1,0,1,7.3541269,7.3541269,0,0,0,0,0,0,0,0,5.6622391,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,10,3,1,508,-8214.2246,23437.359,0,0,1625.9253 -9444,11626,20998,20999,-9,-9,1,1,32,1,1,0,1,1,-9,0,3,8.1200237,8.2378025,0,1,0,173.28163,-9,-9,-9,2019,4,0,39,0,1,0,0,12.29143,12.29143,0,0,0,0,0,1,1,0,0,0,57.92,51.82,58.63,33.83,10,1,1,0,0,9,12,5,1,772.66669,179111.45,141510.16,292429.31,194582.38,3600.1958 -9444,11626,20999,20998,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,8.7972689,8.9030561,0,1,0,64.866295,-9,2,2,2019,9,1,38,0,1,1,0,17.707815,17.707815,0,0,0,0,0,1,1,0,0,0,58.63,33.83,57.92,51.82,10,1,1,0,0,9,12,5,1,772.66669,179111.45,141510.16,292429.31,194582.38,3600.1958 -9444,11626,21000,-9,20999,20998,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-838.5307,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,772.66669,179111.45,141510.16,292429.31,194582.38,3600.1958 -9445,11627,21001,-9,21003,21004,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.099,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 -9445,11627,21002,-9,21003,21004,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.34302,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 -9445,11627,21003,21004,-9,-9,1,0,28,1,2,0,1,1,-9,0,5,0,0,0,8,-6,16.456881,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.32,56.64,10,1,1,0,0,4,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 -9445,11627,21004,21003,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.9703684,9.1988754,0,8,6,80.291245,0,-9,-9,2019,12,2,40,38,1,2,0,25.207327,25.207327,0,0,0,0,0,1,1,0,0,0,41.32,56.64,62.39,56.71,6.666666666666667,1,1,0,0,7,1,4,1,501.25,252245.75,154605.41,150025.39,113668.09,2852.8901 -9446,11628,21005,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,4.5569005,4.6874108,0,0,-1040.5197,0,3,2,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.6697035,4.9668384,29.46,35.46,-9,-9,5,1,1,0,0,0,4,2,1,367,150259.44,44194.152,0,0,859.26697 -9447,11629,21006,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9234257,7.8953462,0,0,0,-881.27631,0,-9,3,2019,12,1,70,36,1,1,0,4.2564626,4.2564626,0,0,0,0,0,1,1,0,0,0,50.21,50.22,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,192,366883.53,0,27608.012,0,864.37927 -9447,11630,21007,-9,21006,-9,1,1,22,0,0,0,2,2,-9,0,4,6.6083488,6.7527728,0,0,0,-901.63556,0,2,-9,2019,10,0,16,16,1,1,1,5.6898632,5.6898632,0,0,0,0,0,1,1,0,2.3376002,0,48,59,-9,-9,7,1,1,0,0,4,4,2,0,295,-129075.61,-80809.055,0,0,726.34344 -9448,11631,21008,21009,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.9228411,9.2719364,0,10,8,-17.302004,0,2,2,2019,11,1,37,37,1,1,0,25.198452,25.198452,0,0,0,0,0,1,1,0,3.2520175,0,47.61,53.7,34.81,44.78,8.333333333333334,1,1,0,0,12,1,5,1,1337.5,1255915,911671.75,112115.7,0,4112.3496 -9448,11631,21009,21008,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,7.8504076,7.9235311,0,10,-8,149.98029,0,2,2,2019,18,7,22,25,1,7,0,13.235415,13.235415,0,0,0,0,0,1,1,0,0,0,34.81,44.78,47.61,53.7,6.666666666666667,1,1,0,0,12,1,5,1,1337.5,1255915,911671.75,112115.7,0,4112.3496 -9449,11632,21010,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.1516337,7.2385845,0,0,-1042.2535,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8903394,7.0997148,68.92,33.1,-9,-9,10,1,1,0,0,0,9,3,1,135,357964.63,168170,282981.25,18678.213,810.56268 -9450,11633,21011,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.3770819,8.5432854,0,0,0,-1105.4565,0,2,2,2019,14,2,42,44,1,2,0,10.886148,10.886148,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,1580,191730.45,136478.19,386284.25,188354.97,1757.123 -9450,11634,21012,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.0464168,7.2739744,0,0,-1055.6831,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.5106959,7.4772849,65.38,25.53,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,477,352441.72,138276.91,0,0,2027.8899 -9451,11635,21013,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,4.0551085,4.1327004,0,0,-1047.5496,0,3,-9,2019,32,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,6.671257,4.0802169,37.45,38.38,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,329,-602568.75,91240.078,0,0,1304.7523 -9452,11636,21014,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1189.7382,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,45.49,-9,-9,10,1,1,0,0,0,10,1,0,199,32205.908,98994.242,0,0,1110.224 -9453,11637,21015,21016,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,.11590343,.084124401,0,8,-26,-104.80451,0,3,2,2019,12,1,35,40,1,1,0,.0005354546,.0005354546,0,0,0,0,0,1,1,0,0,0,42.56,38.56,63.44,39.68,5,1,1,0,0,2,11,2,0,1114,465228.81,172011.39,234679.31,106469.98,1243.6262 -9453,11637,21016,21015,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,6.8469257,6.6203618,0,8,26,-60.200024,0,-9,-9,2019,8,0,16,16,1,0,0,6.1209831,6.1209831,0,0,0,0,7,1,1,0,0,0,63.44,39.68,42.56,38.56,5,1,1,0,1,6,11,2,0,1114,465228.81,172011.39,234679.31,106469.98,1243.6262 -9454,11638,21017,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.024384,6.6280222,0,0,-1027.9792,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.5100071,6.6436458,45.43,38.94,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,78,-477676.06,-41460.488,146449.06,0,757.8208 -9455,11639,21018,21019,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.0561752,7.0588341,0,9,2,-68.2099,0,2,-9,2019,14,2,20,20,1,2,0,6.4260149,6.4260149,0,0,0,0,0,0,0,0,0,0,46.08,57.2,48.77,60.16,6.666666666666667,1,1,0,0,7,1,3,1,1038.5,409890.69,9791.0811,79658.18,64671.469,1432.6123 -9455,11639,21019,21018,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.4968872,7.6914606,0,9,-2,76.008217,0,2,1,2019,9,0,45,45,1,0,0,4.8987651,4.8987651,0,0,0,0,0,0,0,0,2.2271914,0,48.77,60.16,46.08,57.2,3.333333333333333,1,1,0,0,10,1,3,1,1038.5,409890.69,9791.0811,79658.18,64671.469,1432.6123 -9455,11640,21020,-9,21018,21019,1,0,22,0,0,0,1,1,1,0,4,8.0771589,7.9129171,0,0,0,-1115.8248,-9,2,2,2019,15,4,38,0,1,4,1,8.9650841,8.9650841,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,8.333333333333334,1,1,0,0,1,1,4,1,1233,-239193.73,0,0,0,1744.739 -9456,11641,21021,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.7635536,9.4474545,0,0,0,-975.92224,0,2,3,2019,7,0,51,55,1,0,0,36.921726,36.921726,0,0,0,0,0,0,0,0,7.6428032,0,55.12,44.8,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,329,65124.02,41363.465,0,0,5112.6919 -9457,11642,21022,-9,21023,-9,1,0,17,0,1,0,2,2,-9,0,3,0,3.7731586,3.7577534,0,0,-1075.834,1,1,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.3333421,0,36.44,54.6,-9,-9,3.333333333333333,1,1,0,0,0,1,4,1,279.5,135098.41,94619.703,109646.94,103407.98,2388.6592 -9457,11642,21023,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.3488855,8.5652523,6.5167336,0,0,-1054.4175,0,2,3,2019,10,0,37,37,1,0,0,13.126485,13.126485,0,0,0,0,0,1,1,0,6.3105597,0,50.08,55.33,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,279.5,135098.41,94619.703,109646.94,103407.98,2388.6592 -9458,11643,21024,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-976.09113,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,1.6518974,0,56.48,36.43,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,2718,86452.852,0,0,0,-331.31396 -9459,11644,21025,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-953.46887,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.11,33.16,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,664,-75242.602,0,0,0,1354.6244 -9460,11645,21026,21028,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.7181888,7.5228677,0,20,1,-131.42525,0,3,2,2019,9,0,50,50,1,1,0,4.6993103,4.6993103,0,0,0,0,0,1,1,0,0,0,52,56,33.47,56.25,8,2,3,0,0,1,5,2,1,667,32755.504,0,0,0,3450.2598 -9460,11645,21027,-9,21028,21026,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.1053,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,667,32755.504,0,0,0,3450.2598 -9460,11645,21028,21026,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,20,-1,18.285177,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.9196115,0,33.47,56.25,52,56,6.666666666666667,2,3,0,0,0,5,2,1,667,32755.504,0,0,0,3450.2598 -9460,11645,21029,-9,21028,21026,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.11877,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,667,32755.504,0,0,0,3450.2598 -9461,11646,21030,21032,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.9590192,8.2664051,0,8,-1,-32.668385,0,3,1,2019,22,10,30,30,1,10,0,11.552634,11.552634,0,0,0,0,71.5,0,0,0,.69728971,0,48.45,57.49,23.03,58.38,5,1,1,0,0,9,9,5,1,477.33334,580532,62062.402,327453.97,95383.156,5168.9346 -9461,11646,21031,-9,21030,21032,1,1,17,0,1,1,3,0,0,0,5,0,0,0,0,0,-905.80511,-9,2,1,2019,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30.37,68.59,-9,-9,5,1,1,0,0,0,9,5,1,477.33334,580532,62062.402,327453.97,95383.156,5168.9346 -9461,11646,21032,21030,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.4999886,9.2442284,0,8,1,-99.735321,0,2,1,2019,24,12,32,36,1,12,0,42.760529,42.760529,0,0,0,0,27,0,0,0,0,0,23.03,58.38,48.45,57.49,5,1,1,0,1,9,9,5,1,477.33334,580532,62062.402,327453.97,95383.156,5168.9346 -9462,11647,21033,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6860256,7.4934464,0,0,-978.64746,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,5.3674841,7.6839857,63.26,45.23,-9,-9,10,1,1,0,0,8,11,3,1,205,420064.13,487880.19,162750.38,-15838.838,1315.4508 -9462,11648,21034,-9,-9,21033,1,1,24,0,0,0,1,1,-9,0,4,7.8908968,8.1204329,0,0,0,-1041.0775,0,3,2,2019,6,1,47,40,1,1,0,6.0961342,6.0961342,0,0,0,0,0,0,0,0,0,0,44.05,55.39,-9,-9,10,1,1,0,0,7,11,4,1,647,89836.688,0,159979.16,33561.563,1648.8346 -9463,11649,21035,-9,21036,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.5077,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,784.5,131084.63,0,0,0,1226.6904 -9463,11649,21036,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,6.9858122,6.8790021,0,0,0,-1024.0818,0,-9,-9,2019,9,0,20,0,1,0,0,6.3658447,6.3658447,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,784.5,131084.63,0,0,0,1226.6904 -9464,11650,21037,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.672266,6.4867697,0,0,-952.69281,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,8.6857586,4.9038506,72.845222,0,1,1,0,.23413242,6.5929756,37.16,34.67,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,345,98733.273,34518.777,117440.6,0,1853.5126 -9465,11651,21038,21043,-9,-9,1,0,39,1,5,0,3,3,-9,1,4,0,0,0,9,2,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,30.92,24.94,8.333333333333334,1,1,0,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9465,11651,21039,-9,21038,21043,1,0,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1155.5398,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9465,11651,21040,-9,21038,-9,1,0,17,1,5,1,2,0,-9,0,4,0,0,0,0,0,-922.56104,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9465,11651,21041,-9,21038,21043,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-980.37543,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9465,11651,21042,-9,21038,21043,1,1,12,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1052.9398,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9465,11651,21043,21038,-9,-9,1,1,37,1,5,0,2,2,-9,1,2,0,0,0,9,-2,0,0,2,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.92,24.94,45.91,59.89,6.666666666666667,1,1,1,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9465,11651,21044,-9,21038,21043,1,1,10,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1018.8276,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9465,11651,21045,-9,21038,21043,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-924.52557,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,1038.75,64012.746,0,0,0,4620.8545 -9466,11652,21046,-9,-9,21047,1,0,20,0,0,0,2,2,-9,0,3,7.5541224,7.6152205,0,0,0,-938.45911,0,-9,1,2019,23,11,35,8,1,11,1,5.8614826,5.8614826,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,3,9,3,1,509,8301.7734,34706.059,0,0,1255.3723 -9466,11653,21047,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.2065001,8.0670414,5.4218836,0,0,-976.40558,0,-9,-9,2019,11,0,50,21,1,0,0,8.8338175,8.8338175,0,0,0,0,0,1,1,0,0,5.9242139,52.01,48.98,-9,-9,5,1,1,0,0,4,9,4,1,342,1574506.3,1133136.4,0,0,1282.8307 -9467,11654,21048,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.2165723,7.3677306,0,0,-1023.6851,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1285048,7.8078661,46.39,60.99,-9,-9,10,1,1,0,0,0,11,3,1,68,412343.66,232194.92,162709.66,0,2527.4128 -9468,11655,21049,-9,21050,21051,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.08514,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 -9468,11655,21050,21051,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.8994126,8.0753908,0,9,0,-39.955341,0,2,2,2019,12,0,24,50,1,0,0,15.460224,15.460224,0,0,0,0,0,1,1,0,0,0,48.02,44.38,57.16,56.15,6.666666666666667,1,1,0,0,10,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 -9468,11655,21051,21050,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6498489,8.755271,0,9,0,113.98041,0,-9,-9,2019,9,0,45,90,1,0,0,15.502963,15.502963,0,0,0,0,2,1,1,0,0,0,57.16,56.15,48.02,44.38,6.666666666666667,1,1,0,0,10,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 -9468,11655,21052,-9,21050,21051,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1054.1522,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,4,1,1128.5,252929.92,180453.98,122813.8,90675.391,3470.707 -9469,11656,21053,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-984.78668,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,26.81,40.59,-9,-9,1.666666666666667,1,1,0,1,8,5,1,1,2253,-375046.5,0,0,0,784.45557 -9470,11657,21054,21055,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.5549316,7.995604,9,5,-2.5354867,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6411543,7.1235037,57.73,54.53,58.84,47.11,8.333333333333334,1,1,0,0,0,6,3,1,2436.5,900925.25,685014.69,227519.52,0,2532.4929 -9470,11657,21055,21054,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.5199742,7.1952434,9,-5,1.7429214,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4880898,7.3267803,58.84,47.11,57.73,54.53,8.333333333333334,1,1,0,0,0,6,3,1,2436.5,900925.25,685014.69,227519.52,0,2532.4929 -9471,11658,21056,-9,21058,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.3638,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,0,332,-25071.047,0,0,0,1989.3778 -9471,11658,21057,-9,21058,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.4765,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,332,-25071.047,0,0,0,1989.3778 -9471,11658,21058,-9,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,0,0,-966.65289,0,2,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,0,8,2,0,332,-25071.047,0,0,0,1989.3778 -9472,11659,21059,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1026.1082,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.14,57.07,-9,-9,10,1,1,1,0,0,4,1,0,126,-236880.84,0,0,0,1111.6514 -9473,11660,21060,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.946218,8.3204288,0,0,-892.2002,0,1,1,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.904294,8.1438398,51.83,57.2,-9,-9,10,1,1,0,0,0,12,4,1,452,1747800.5,726804.19,160800.84,0,1500.4178 -9474,11661,21061,21062,-9,-9,1,1,41,1,2,0,2,2,-9,0,2,8.564992,8.7991476,7.5547276,6,11,77.742142,0,-9,-9,2019,12,1,55,80,1,1,0,10.507371,10.507371,0,0,0,0,0,1,1,0,8.2963791,0,31.99,53.22,51.41,56.15,6.666666666666667,1,1,0,0,7,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 -9474,11661,21062,21061,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,6.924582,7.0312004,0,6,-11,-.12583314,0,-9,-9,2019,12,1,17,15,1,1,0,11.504221,11.504221,0,0,0,0,0,1,1,0,0,0,51.41,56.15,31.99,53.22,6.666666666666667,1,1,0,0,8,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 -9474,11661,21063,-9,21062,21061,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-881.32819,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 -9474,11661,21064,-9,21062,21061,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-814.59259,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,598.75,630125.38,383942.19,155005.28,29479.313,3243.604 -9475,11662,21065,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.9605341,6.8509846,0,0,-938.52448,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7037168,6.7432256,55,45,-9,-9,8,1,1,0,0,0,11,2,1,719,93004.164,172187.55,230852.34,0,1324.8361 -9476,11663,21066,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7565041,7.5358081,0,0,0,-946.09888,0,1,2,2019,8,0,40,16,1,0,0,7.2353649,7.2353649,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,562,44977.121,-12540.518,0,0,1059.1787 -9477,11664,21067,21068,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,7.4295659,7.4343338,66,2,139.74544,-9,3,3,2019,12,0,0,0,4,0,0,0,0,1,5.9805593,23.810055,61.007198,0,1,1,0,4.3547692,7.3385849,50.01,18.3,54.57,28.1,5,1,1,0,0,0,8,2,1,960.5,1340947.8,165879.91,882044.94,0,1796.8789 -9477,11664,21068,21067,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,66,-2,-63.1894,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,42,1,1,0,3.87692,0,54.57,28.1,50.01,18.3,3.333333333333333,1,1,0,0,0,8,2,1,960.5,1340947.8,165879.91,882044.94,0,1796.8789 -9478,11665,21069,21070,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.3679152,4.4820709,2,9,1.2810856,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,4.9192424,4.6249666,55.32,36.78,51,46,8.333333333333334,1,1,0,0,0,12,2,1,1609,153669.52,0,87531.648,0,1900.4478 -9478,11665,21070,21069,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,2,0,83.812141,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,16.75322,0,0,1,1,0,8.0516806,0,51,46,55.32,36.78,7,1,1,0,0,0,12,2,1,1609,153669.52,0,87531.648,0,1900.4478 -9478,11666,21071,-9,21070,21069,1,1,46,0,0,0,2,2,-9,0,4,8.2828627,8.1744661,0,0,0,-1054.109,0,2,3,2019,6,0,37,37,1,0,0,10.81154,10.81154,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,221,300096.41,324742.34,92419.977,0,1763.4352 -9479,11667,21072,21073,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.3777256,8.422184,0,4,-10,60.040733,0,2,2,2019,12,2,36,36,1,2,0,14.670745,14.670745,0,0,0,0,0,1,1,0,.25996089,0,44.81,55.02,59.7,53.75,5,4,2,0,0,9,8,5,1,409,283519.56,17659.445,425607.25,176247.5,4025.9011 -9479,11667,21073,21072,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.8991413,8.6514473,0,4,10,-55.788368,0,-9,-9,2019,7,0,48,48,1,0,0,13.485524,13.485524,0,0,0,0,0,1,1,0,0,0,59.7,53.75,44.81,55.02,6.666666666666667,1,1,0,0,3,8,5,1,409,283519.56,17659.445,425607.25,176247.5,4025.9011 -9480,11668,21074,21075,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0151968,7.4252152,0,32,-1,60.154442,0,3,3,2019,11,0,19,19,1,0,0,7.9339933,7.9339933,0,0,0,0,0,0,0,0,6.7900066,0,55.79,52.62,51,49,6.666666666666667,1,1,0,0,9,6,4,1,1601.5,381662.31,34474.305,153837.31,45117.531,3019.7522 -9480,11668,21075,21074,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.5426502,8.4552307,0,7,1,88.511757,0,-9,-9,2019,10,0,37,37,1,1,0,11.668759,11.668759,0,0,0,0,0,0,0,0,0,0,51,49,55.79,52.62,7,1,1,0,0,1,6,4,1,1601.5,381662.31,34474.305,153837.31,45117.531,3019.7522 -9480,11669,21076,-9,21074,21075,1,1,22,0,0,0,2,2,-9,0,4,8.3018169,8.0506659,0,0,0,-1020.0311,0,2,2,2019,9,0,37,37,1,0,1,8.2898722,8.2898722,0,0,0,0,0,0,0,0,2.8707509,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,154,275256.38,-135630.06,0,0,661.34302 -9481,11670,21077,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.8346782,4.7396727,0,0,-917.53156,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6025996,4.9665837,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,229,102200.1,8845.2676,67014.258,0,1106.5219 -9482,11671,21078,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,1,0,0,0,0,0,-960.68982,0,2,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,23.46,32.83,-9,-9,3.333333333333333,4,2,1,1,1,6,1,0,505,204862.3,-48084.172,0,0,2228.7844 -9483,11672,21079,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,0,0,0,0,-995.33453,0,2,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,0,0,35.61,49.92,-9,-9,6.666666666666667,1,1,0,0,7,10,2,0,544,529341.06,0,153261.97,0,636.27557 -9484,11673,21080,-9,-9,-9,1,0,39,0,0,0,1,1,-9,1,3,0,0,0,8,-8,0,0,2,3,2019,13,1,0,40,3,1,0,0,0,0,0,0,0,42,1,0,1,0,0,44.16,58.02,24.33,21.59,10,1,1,0,0,7,13,2,0,1583,-133776.2,-41230.125,0,0,-66.756256 -9484,11674,21081,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,8,8,0,0,-9,-9,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,24.33,21.59,44.16,58.02,0,1,1,1,0,2,13,1,0,41,-41826.93,53392.434,0,0,617.63751 -9484,11675,21082,-9,21081,-9,1,1,22,0,0,0,2,2,-9,0,3,7.7274432,7.6046233,0,0,0,-1029.2876,0,2,-9,2019,8,0,45,42,1,0,1,4.9901686,4.9901686,0,0,0,0,0,1,0,1,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,526,610516.25,-68146.234,0,0,961.05975 -9485,11676,21083,21084,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2733207,6.7792349,9,0,25.369951,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1777921,7.4610143,59.14,52.5,57.33,53.46,8.333333333333334,1,1,0,0,11,5,2,1,159.5,582637.5,251138.31,104746.75,0,2935.3455 -9485,11676,21084,21083,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.2368031,6.1671934,9,9,-84.640976,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6854911,6.4655137,57.33,53.46,59.14,52.5,8.333333333333334,1,1,0,0,0,5,2,1,159.5,582637.5,251138.31,104746.75,0,2935.3455 -9486,11677,21085,21087,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,5.5194454,5.7660971,0,10,3,133.04231,0,2,2,2019,11,0,15,0,1,0,0,2.6084907,2.6084907,0,0,0,0,0,1,1,0,0,0,51.34,49.37,51.77,58.57,6.666666666666667,1,1,0,0,8,12,5,1,817,628924.38,632465.81,331963.03,125897.95,6309.8594 -9486,11677,21086,-9,21085,21087,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-843.63141,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,817,628924.38,632465.81,331963.03,125897.95,6309.8594 -9486,11677,21087,21085,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.6277819,9.6869106,0,10,-3,43.185265,0,1,1,2019,9,0,50,50,1,0,0,31.431967,31.431967,0,0,0,0,0,1,1,0,5.0905962,0,51.77,58.57,51.34,49.37,8.333333333333334,1,1,0,0,12,12,5,1,817,628924.38,632465.81,331963.03,125897.95,6309.8594 -9486,11678,21088,-9,21085,21087,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.23834,-9,2,1,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,28.16,65.32000000000001,-9,-9,6.666666666666667,1,1,0,0,1,12,2,1,129,-133354.58,0,0,0,0 -9487,11679,21089,21090,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,7,-2,-55.246395,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,8.5777788,0,0,1,1,0,2.1727114,0,49.01,31.65,46.07,37.4,8.333333333333334,1,1,0,0,0,4,3,1,994.5,479437.78,110741.59,237025.03,0,2375.5154 -9487,11679,21090,21089,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.4157357,7.7776093,7,2,22.465042,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9026006,7.5777183,46.07,37.4,49.01,31.65,8.333333333333334,1,1,0,0,0,4,3,1,994.5,479437.78,110741.59,237025.03,0,2375.5154 -9488,11680,21091,21092,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.1269159,9.5458107,8.3141565,9,2,-64.122459,0,-9,2,2019,9,0,30,48,1,0,0,28.614738,28.614738,0,0,0,0,0,1,1,0,0,8.563941,52.23,55.6,60.02,56.42,8.333333333333334,1,1,0,0,10,2,5,1,1108.5,1690186.6,1734524,171163.98,10792.023,5021.644 -9488,11680,21092,21091,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,0,0,0,9,-2,65.433128,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,52.23,55.6,10,1,1,0,0,9,2,5,1,1108.5,1690186.6,1734524,171163.98,10792.023,5021.644 -9489,11681,21093,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1332016,8.5103321,4.1389027,0,0,-956.80365,0,2,2,2019,12,0,40,48,1,2,0,11.129456,11.129456,0,0,0,0,7,0,0,0,0,4.2785702,48,49,-9,-9,7,3,4,0,1,8,8,4,0,152,689559.75,41165.148,475956.44,36724.43,1087.5671 -9489,11682,21094,-9,21093,-9,1,0,24,0,0,0,2,2,-9,0,4,8.263938,8.2156811,0,0,0,-824.22345,0,2,2,2019,11,0,25,35,1,2,1,13.003582,13.003582,0,0,0,0,0,0,0,0,5.8151145,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,215,0,0,0,0,1363.8386 -9489,11683,21095,-9,21093,-9,1,1,20,0,0,0,2,2,-9,0,4,7.0746403,7.109571,0,0,0,-895.21442,0,2,-9,2019,11,0,25,-9,1,2,1,5.8166203,5.8166203,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,3,8,3,0,750,-217358.7,43606.715,0,0,1006.5908 -9490,11684,21096,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.5960522,6.3239179,0,0,-933.54694,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1860147,62.67,49.54,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,400,554937.75,170143.7,50489.457,0,1135.0881 -9491,11685,21097,21101,-9,-9,1,0,32,0,3,0,1,1,-9,0,4,7.7096338,7.8997445,0,5,-11,-31.933758,0,3,1,2019,11,0,37,44,1,2,0,11.141047,11.141047,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,3,4,0,0,4,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 -9491,11685,21098,-9,21097,21101,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2219,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 -9491,11685,21099,-9,21097,21101,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.9607,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 -9491,11685,21100,-9,21097,21101,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.8967,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 -9491,11685,21101,21097,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,0,0,0,12,11,-71.738113,0,3,3,2019,9,0,0,24,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,48,57,7,3,4,0,0,0,2,2,0,644.59998,226055.41,136842.69,144878.66,26315.834,968.4472 -9492,11686,21102,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.31703,8.5651722,0,0,0,-940.51697,0,2,2,2019,10,0,50,48,1,0,0,10.034856,10.034856,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,655,-259747.7,0,517.75494,0,1675.8655 -9493,11687,21103,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.1774168,8.5526676,0,0,-962.68109,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,5.1256495,8.1103497,47.55,33.8,-9,-9,5,1,1,0,1,6,2,4,1,1623,503837.19,355637,127429.56,0,1748.2574 -9494,11688,21104,21105,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,7.7424016,8.2227421,7.7569737,46,-1,-111.54858,0,3,3,2019,7,0,30,30,1,0,0,9.8250103,9.8250103,0,0,0,0,0,1,1,0,.3937628,7.7494159,60.02,56.42,29.94,47.13,8.333333333333334,1,1,0,0,10,5,5,1,561,1406037.1,1251144.9,119194.08,0,3502.0725 -9494,11688,21105,21104,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,7.5647821,7.9336181,5.5474744,46,1,-215.70111,0,3,-9,2019,21,9,42,37,1,9,0,7.6251988,7.6251988,1,0,0,0,0,1,1,0,0,5.8195648,29.94,47.13,60.02,56.42,0,1,1,0,0,10,5,5,1,561,1406037.1,1251144.9,119194.08,0,3502.0725 -9495,11689,21106,21108,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.1347113,8.0996475,0,32,-1,30.001446,0,2,1,2019,8,0,41,41,1,0,0,11.727746,11.727746,0,0,0,0,0,1,1,0,0,0,49.66,55.68,47.4,54.06,8.333333333333334,1,1,0,0,10,2,5,1,216,679316.13,118437.86,716619.94,61070.434,5021.1123 -9495,11689,21107,-9,21106,21108,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-893.63403,-9,1,1,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.79,63.51,-9,-9,3.333333333333333,1,1,0,0,2,2,5,1,216,679316.13,118437.86,716619.94,61070.434,5021.1123 -9495,11689,21108,21106,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.1030827,9.3615866,0,28,1,.63356233,0,2,1,2019,15,4,42,42,1,4,0,20.352837,20.352837,0,0,0,0,0,1,1,0,6.5401912,0,47.4,54.06,49.66,55.68,8.333333333333334,1,1,0,0,11,2,5,1,216,679316.13,118437.86,716619.94,61070.434,5021.1123 -9496,11690,21109,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,8.1480598,8.248312,0,0,0,-962.78857,0,-9,-9,2019,12,0,37,37,1,2,0,12.153894,12.153894,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,6,9,4,1,581,-31417.771,5185.2866,0,0,1322.9819 -9497,11691,21110,-9,21111,21114,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.42572,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 -9497,11691,21111,21114,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.8591614,8.8879251,0,23,-5,-11.990568,0,3,2,2019,12,1,52,45,1,1,0,15.762842,15.762842,0,0,0,0,0,1,1,0,0,0,53.71,44.13,40.32,32.64,5,2,3,0,0,9,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 -9497,11691,21112,-9,21111,21114,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1018.8942,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 -9497,11691,21113,-9,21111,21114,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-945.75995,-9,1,2,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.84,41.97,-9,-9,5,2,3,0,0,1,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 -9497,11691,21114,21111,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,0,0,0,23,5,70.926292,0,3,3,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.32,32.64,53.71,44.13,5,2,3,1,0,7,6,3,1,537.59998,347373.06,31748.719,360824.19,0,2233.3 -9498,11692,21115,21116,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9423227,7.9705949,0,32,2,-98.428482,0,2,3,2019,5,0,35,32,1,0,0,9.92169,9.92169,0,0,0,0,0,0,0,0,3.8941448,0,60.12,54.8,54.2,57.49,10,1,1,0,0,11,9,5,1,1187.5,1428329.5,471111.25,515054.47,318408.25,6029.6797 -9498,11692,21116,21115,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.617487,9.5439711,0,32,-2,-39.756104,0,2,2,2019,9,0,48,48,1,0,0,38.417206,38.417206,0,0,0,0,0,0,0,0,0,0,54.2,57.49,60.12,54.8,10,1,1,0,0,10,9,5,1,1187.5,1428329.5,471111.25,515054.47,318408.25,6029.6797 -9499,11693,21117,21118,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.635705,8.8285551,0,7,-5,-30.254532,0,-9,-9,2019,9,0,37,40,1,1,0,17.929663,17.929663,0,0,0,0,0,1,1,0,2.1340556,0,53,55,36.04,27.04,8,1,1,0,0,1,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 -9499,11693,21118,21117,-9,-9,1,0,55,0,1,0,2,2,-9,1,2,0,0,0,7,5,-59.475952,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,36.04,27.04,53,55,5,1,1,0,1,0,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 -9499,11693,21119,-9,21118,21117,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-984.98297,-9,2,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 -9499,11693,21120,-9,21118,21117,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.2908,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,818,1051575,810918.88,159068.42,0,3134.3635 -9500,11694,21121,-9,21124,21123,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-964.39954,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 -9500,11694,21122,-9,21124,21123,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-927.80933,-9,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.72254437,0,45,59,-9,-9,7,1,1,0,0,0,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 -9500,11694,21123,21124,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,5.9610863,5.7580252,0,18,-2,12.787926,0,2,-9,2019,11,0,40,40,1,1,0,.92487651,.92487651,0,0,0,0,0,0,0,0,0,0,49,49,52.82,53.97,7,1,1,0,0,1,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 -9500,11694,21124,21123,-9,-9,1,0,57,0,1,0,3,3,-9,0,4,0,0,0,18,2,7.200551,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,49,49,6.666666666666667,1,1,0,0,5,4,2,1,715.5,-16221.469,32883.984,0,0,34.269768 -9501,11695,21125,-9,-9,-9,1,0,35,0,0,0,3,3,-9,1,2,0,0,0,0,0,-969.01715,0,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,32.11,-9,-9,5,1,1,0,0,0,8,1,0,1117,-238134.17,0,0,0,1547.7974 -9502,11696,21126,21127,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.5532889,7.4743481,37,2,-40.898098,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.872447,7.2730932,54.79,55.86,58.47,50.22,8.333333333333334,1,1,0,0,5,7,4,1,628.5,739149.5,162691.67,310669.13,0,2890.1782 -9502,11696,21127,21126,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.9985085,8.0770798,36,-2,-15.77265,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.578125,8.209897,58.47,50.22,54.79,55.86,8.333333333333334,1,1,0,0,6,7,4,1,628.5,739149.5,162691.67,310669.13,0,2890.1782 -9503,11697,21128,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,9.191021,8.9956074,7.6230693,0,0,-1008.3821,0,-9,-9,2019,8,0,58,80,1,0,0,19.097239,19.097239,0,0,0,0,0,1,1,0,5.5502844,7.3626757,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,11,5,0,1408,670454.06,656155.5,0,0,4664.1377 -9503,11697,21129,-9,21128,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.298,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,0,1408,670454.06,656155.5,0,0,4664.1377 -9504,11698,21130,21131,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.1958857,8.216361,0,10,4,-12.564108,-9,1,2,2019,12,1,40,0,1,1,0,12.180699,12.180699,0,0,0,0,0,1,1,0,6.9995413,0,50.01,55.31,44.74,45.52,6.666666666666667,1,1,0,0,11,8,5,1,1676.5,238506.59,89017.586,370915.72,181682.06,6024.5889 -9504,11698,21131,21130,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,9.3356915,9.7225552,0,10,-4,-45.225571,0,-9,-9,2019,10,1,41,40,1,1,0,43.380745,43.380745,0,0,0,0,0,1,1,0,3.9053249,0,44.74,45.52,50.01,55.31,8.333333333333334,1,1,0,0,11,8,5,1,1676.5,238506.59,89017.586,370915.72,181682.06,6024.5889 -9505,11699,21132,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.9939103,6.8216591,0,0,0,-1036.0873,0,3,3,2019,11,0,16,16,1,0,0,8.8153887,8.8153887,0,0,0,0,0,0,0,0,0,0,41.3,42.96,-9,-9,5,1,1,0,1,3,13,2,0,460,37127.227,0,0,0,533.4342 -9505,11700,21133,-9,21132,-9,1,0,25,0,0,0,2,2,-9,0,3,7.9389,7.6335607,0,0,0,-1056.8549,0,3,3,2019,11,1,38,30,1,1,1,7.4506249,7.4506249,0,0,0,0,0,0,0,0,0,0,46.8,57.03,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,197,-218761.13,-24159.975,0,0,1169.5527 -9506,11701,21134,21136,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.1497507,7.5637827,0,1,0,41.059071,-9,2,2,2019,12,0,15,0,1,0,0,13.528648,13.528648,0,0,0,0,0,1,1,0,0,0,54.37,54.8,58.15,52.91,6.666666666666667,1,1,0,0,10,4,5,1,316.33334,1232844,1111557.6,201866.95,0,5170.9976 -9506,11701,21135,-9,21134,21136,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-941.73334,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,5,1,316.33334,1232844,1111557.6,201866.95,0,5170.9976 -9506,11701,21136,21134,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,9.0665998,9.2430038,0,1,9,-60.3293,-9,-9,-9,2019,12,0,70,0,1,0,0,16.57403,16.57403,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.37,54.8,6.666666666666667,1,1,0,0,9,4,5,1,316.33334,1232844,1111557.6,201866.95,0,5170.9976 -9506,11702,21137,-9,21134,21136,1,1,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.44702,-9,2,2,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,1.0236135,0,38.09,63.39,-9,-9,5,1,1,0,0,2,4,1,1,292,-37006.316,0,0,0,-154.58844 -9507,11703,21138,21139,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0748615,8.3091917,0,27,4,-7.2209816,0,3,3,2019,14,3,36,63,1,3,0,9.5201607,9.5201607,0,0,0,0,2,0,0,0,0,0,42.69,35.95,50.27,48.86,6.666666666666667,3,4,0,0,11,8,4,1,227,951018.5,618882.25,399493.63,86415.141,2741.8816 -9507,11703,21139,21138,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.0858984,8.273922,0,27,-4,14.145615,0,-9,-9,2019,11,0,50,59,1,0,0,7.6186185,7.6186185,0,0,0,0,0,0,0,0,0,0,50.27,48.86,42.69,35.95,1.666666666666667,1,1,0,0,9,8,4,1,227,951018.5,618882.25,399493.63,86415.141,2741.8816 -9507,11704,21140,-9,21138,21139,1,0,20,0,0,0,2,2,-9,0,3,0,6.4926786,6.6962094,0,0,-977.03906,1,2,2,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,6.1986566,0,46.56,47.56,-9,-9,5,4,2,0,0,2,8,2,1,1275,-162586.31,0,0,0,411.94522 -9507,11705,21141,-9,21138,21139,1,1,22,0,0,0,2,2,-9,0,3,8.2968893,8.5316744,0,0,0,-991.97998,0,2,2,2019,10,1,41,0,1,1,1,9.370554,9.370554,0,0,0,0,0,0,0,0,0,0,57.88,41.12,-9,-9,6.666666666666667,4,2,0,0,4,8,4,1,1746,-13673.807,9045.8555,0,0,1497.5924 -9508,11706,21142,21143,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.0611744,8.3772802,0,9,5,38.035912,-9,-9,-9,2019,12,1,39,0,1,1,0,11.954608,11.954608,0,0,0,0,0,1,1,0,5.1456699,0,43.47,50.15,39.6,55.82,6.666666666666667,1,1,0,0,0,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 -9508,11706,21143,21142,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7675018,8.362175,0,24,-5,14.538954,-9,2,2,2019,17,3,50,0,1,3,0,9.0745096,9.0745096,0,0,0,0,0,1,1,0,0,0,39.6,55.82,43.47,50.15,5,1,1,0,0,12,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 -9508,11706,21144,-9,21143,21142,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.614,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 -9508,11706,21145,-9,21143,21142,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.7845,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,0,504.5,300785.13,268952.06,0,0,3617.1001 -9508,11707,21146,-9,21143,21142,1,0,20,0,2,1,2,0,-9,0,3,0,0,0,0,0,-998.80792,-9,1,2,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,36.46,58.79,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,597,78961.297,0,0,0,0 -9508,11708,21147,-9,21143,21142,1,0,19,0,2,0,2,2,-9,0,4,7.6016116,7.6769419,0,0,0,-978.14429,-9,1,2,2019,11,2,32,0,1,2,1,7.4193115,7.4193115,0,0,0,0,0,1,1,0,0,0,40.06,56.13,-9,-9,5,1,1,0,1,3,9,3,0,497,282507.38,-28168.857,0,0,1125.9938 -9509,11709,21148,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.2140675,8.0247955,6.6005297,0,0,-1064.251,0,3,3,2019,10,0,24,24,1,0,0,7.1747007,7.1747007,0,0,0,0,0,1,1,0,0,6.6948752,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,338,-46232.691,88899.359,0,0,1419.1748 -9510,11710,21149,-9,21150,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-840.93146,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.1137141,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1880,-56348.777,-92338.313,113876.62,49927.633,1942.5093 -9510,11710,21150,-9,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.0837412,8.2710009,0,0,0,-1051.035,0,3,3,2019,7,0,37,42,1,0,0,10.085855,10.085855,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1880,-56348.777,-92338.313,113876.62,49927.633,1942.5093 -9511,11711,21151,-9,21154,21153,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-883.07013,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 -9511,11711,21152,-9,21154,21153,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.2796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 -9511,11711,21153,21154,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,9.5910273,9.3358393,0,9,3,-41.490936,0,2,2,2019,10,1,35,35,1,1,0,43.055912,43.055912,0,0,0,0,0,0,0,0,0,0,52.4,52.91,36.55,47.92,6.666666666666667,1,1,0,0,12,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 -9511,11711,21154,21153,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,9,-3,49.344631,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,2,0,0,0,0,0,36.55,47.92,52.4,52.91,5,1,1,0,0,0,9,5,1,1316.25,551768.5,191595.17,467059.47,198368.73,4267.5259 -9511,11712,21155,-9,21154,21153,1,0,20,0,2,0,2,2,-9,0,2,8.1158705,8.2418633,0,0,0,-910.94696,0,2,2,2019,12,0,30,40,1,0,1,10.270142,10.270142,0,0,0,0,0,0,0,0,0,0,51.89,51.11,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,551,-229336.48,33349.531,0,0,1309.2975 -9512,11713,21156,21157,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.0359926,7.9119053,0,30,4,-6.7962499,0,3,3,2019,12,1,39,39,1,1,0,9.6582022,9.6582022,0,0,0,0,0,1,1,0,0,0,37.24,35.87,55.28,13.75,3.333333333333333,1,1,0,0,6,5,3,0,771.5,1370744.3,1060851.5,321374.63,61383.227,1440.8699 -9512,11713,21157,21156,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,30,-4,-148.13693,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.28,13.75,37.24,35.87,3.333333333333333,1,1,0,0,0,5,3,0,771.5,1370744.3,1060851.5,321374.63,61383.227,1440.8699 -9513,11714,21158,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.1443176,7.78614,0,0,0,-918.88879,0,-9,3,2019,9,0,41,15,1,1,0,7.4303379,7.4303379,0,0,0,0,0,0,0,0,0,0,53,55,-9,-9,8,3,4,0,0,8,8,4,0,1034,-6941.4438,353.93604,0,0,1290.954 -9514,11715,21159,21160,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,9.6937666,9.7344046,0,2,-4,24.095572,0,2,-9,2019,6,0,57,57,1,0,0,31.633297,31.633297,0,0,0,0,0,0,0,0,8.3665447,0,38.59,63.37,59.32,46.98,10,1,1,0,0,11,10,5,1,284.5,400187.88,450098.97,185308.88,57118.109,6628.0293 -9514,11715,21160,21159,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,5.9413371,6.3635693,0,2,4,-86.003288,0,2,3,2019,5,0,3,2,1,0,0,14.12324,14.12324,0,0,0,0,0,0,0,0,7.8681889,0,59.32,46.98,38.59,63.37,8.333333333333334,1,1,0,0,11,10,5,1,284.5,400187.88,450098.97,185308.88,57118.109,6628.0293 -9515,11716,21161,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-990.29785,0,2,2,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,5.48,0,0,0,0,0,59.71,50.89,-9,-9,6.666666666666667,3,4,1,0,8,8,2,1,1545,-240190.66,48167.125,0,0,0 -9516,11717,21162,21163,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.8797579,8.9337139,0,10,-3,-46.566757,0,2,2,2019,18,7,48,53,1,7,0,17.816744,17.816744,0,0,0,0,14.5,0,0,0,0,0,39.03,51.14,58.23,43.46,3.333333333333333,1,1,0,0,10,2,5,0,476.5,1064310.5,671637.5,524573,178897.41,3860.1335 -9516,11717,21163,21162,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.2000942,7.9357266,4.2139106,10,3,1.6598963,0,3,3,2019,6,1,37,38,1,1,0,9.5967941,9.5967941,0,0,0,0,2,0,0,0,0,4.8489819,58.23,43.46,39.03,51.14,10,1,1,0,0,10,2,5,0,476.5,1064310.5,671637.5,524573,178897.41,3860.1335 -9516,11718,21164,-9,21162,21163,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-934.24353,-9,1,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,3,2,1,0,556,0,0,0,0,0 -9517,11719,21165,21166,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.9455233,8.5195045,7.5364141,11,2,74.159637,0,-9,-9,2019,10,0,24,42,1,1,0,15.739434,15.739434,0,0,0,0,0,1,1,0,6.2074752,7.2485008,52,48,56.01,30.14,7,1,1,0,0,1,4,4,1,1056,316953.19,-1167.7275,169745.44,0,2983.481 -9517,11719,21166,21165,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.2962885,5.5646825,51,-2,-10.100207,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,.64486051,0,0,1,1,0,5.580729,0,56.01,30.14,52,48,8.333333333333334,1,1,0,0,9,4,4,1,1056,316953.19,-1167.7275,169745.44,0,2983.481 -9518,11720,21167,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.7139416,8.8025122,0,0,0,-882.16699,0,-9,-9,2019,11,0,38,35,1,0,0,15.95006,15.95006,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,741,43225.086,94026.258,0,0,2417.4314 -9519,11721,21168,21169,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.8245444,7.9332185,0,31,0,-43.041294,0,2,2,2019,13,1,30,30,1,1,0,11.951472,11.951472,0,0,0,0,0,0,0,0,1.8354766,0,34.19,60.03,60.52,53.2,8.333333333333334,1,1,0,0,10,9,3,1,239.5,394090.56,171444.41,0,0,1946.9783 -9519,11721,21169,21168,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,6.5607638,6.6818113,0,30,0,-27.18329,-9,2,2,2019,9,0,55,0,1,0,0,1.6820616,1.6820616,0,0,0,0,0,0,0,0,0,0,60.52,53.2,34.19,60.03,1.666666666666667,1,1,0,0,10,9,3,1,239.5,394090.56,171444.41,0,0,1946.9783 -9520,11722,21170,21171,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,10,-1,74.622681,0,3,2,2019,13,4,0,0,4,4,0,0,0,0,0,0,0,2,0,0,0,7.5298543,0,52.65,51.64,51.67,60.18,8.333333333333334,1,1,0,0,7,9,3,1,381,2059768.4,1315860.5,515283.38,0,2875.2031 -9520,11722,21171,21170,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,7.5011945,8.1179161,10,1,27.535448,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.9344096,7.5454693,51.67,60.18,52.65,51.64,10,1,1,0,0,7,9,3,1,381,2059768.4,1315860.5,515283.38,0,2875.2031 -9521,11723,21172,21173,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,5.9916987,5.9243412,60,7,-87.540764,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4365821,57.16,56.15,64.22,34.32,6.666666666666667,1,1,0,0,0,1,2,0,619,328770.69,225084.94,92492.766,0,1813.8503 -9521,11723,21173,21172,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.175477,6.2659774,11,-7,-65.39447,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.5205402,0,0,1,1,0,0,6.1918077,64.22,34.32,57.16,56.15,8.333333333333334,1,1,0,0,0,1,2,0,619,328770.69,225084.94,92492.766,0,1813.8503 -9522,11724,21174,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.203063,8.1093969,0,0,0,-1033.1857,0,1,2,2019,7,0,45,45,1,0,0,7.8344698,7.8344698,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,1952,963660.06,868313,303474.44,106331.55,1271.2163 -9523,11725,21175,21178,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.475008,8.3830013,0,2,-4,53.300331,0,2,2,2019,14,3,60,50,1,3,0,8.3816137,8.3816137,0,0,0,0,0,0,0,0,7.4231091,0,47.05,56.66,55.2,57.22,6.666666666666667,1,1,0,0,11,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 -9523,11725,21176,-9,21175,21178,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-942.03339,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 -9523,11725,21177,-9,21175,21178,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 -9523,11725,21178,21175,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,9.5932684,9.6308556,0,2,4,-110.56526,0,2,2,2019,6,0,45,32,1,0,0,35.938728,35.938728,0,0,0,0,0,0,0,0,7.2047172,0,55.2,57.22,47.05,56.66,8.333333333333334,1,1,0,0,11,11,5,0,694.75,630828,427315.56,332767.06,195895.2,10565.664 -9524,11726,21179,21180,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.5383883,8.5327692,0,7,1,107.36665,0,-9,-9,2019,10,0,44,36,1,1,0,11.702906,11.702906,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,0,0,1,2,4,1,596.66669,-7993.0938,-47090.227,163400.66,99660.602,2766.3188 -9524,11726,21180,21179,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,7.1869569,7.2958293,0,7,-1,-29.440805,0,-9,-9,2019,9,1,33,17,1,1,0,4.7197571,4.7197571,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,8,2,4,1,596.66669,-7993.0938,-47090.227,163400.66,99660.602,2766.3188 -9524,11726,21181,-9,21180,21179,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.9813,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,596.66669,-7993.0938,-47090.227,163400.66,99660.602,2766.3188 -9525,11727,21182,21183,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.6918964,8.6347961,0,10,-2,-25.794695,0,2,2,2019,9,0,50,44,1,0,0,16.220848,16.220848,0,0,0,0,0,0,0,0,0,0,46.61,56.93,38.16,44.66,5,1,1,0,0,11,9,5,1,491,4401730,2115801.3,1197372.8,0,5197.3311 -9525,11727,21183,21182,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,8.1202745,8.0190954,36,2,-34.055843,0,2,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,4.4080663,7.7939968,38.16,44.66,46.61,56.93,3.333333333333333,1,1,0,0,8,9,5,1,491,4401730,2115801.3,1197372.8,0,5197.3311 -9526,11728,21184,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.8409634,6.9644666,0,0,0,-894.97461,0,-9,-9,2019,9,0,40,40,1,0,0,2.7232816,2.7232816,0,0,0,0,0,0,0,0,7.3860216,0,52.88,56.68,-9,-9,8.333333333333334,3,4,0,0,11,8,2,1,676,598983.06,0,711176.31,0,735.42242 -9527,11729,21185,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4930515,8.2218542,0,0,0,-1063.8928,0,1,1,2019,10,2,87,47,1,2,0,7.4722714,7.4722714,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,3,8,4,0,331,205525.31,0,0,0,1839.3821 -9528,11730,21186,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-965.82507,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,2,3,0,0,0,8,1,0,1495,138841.48,0,0,0,567.28015 -9528,11731,21187,-9,21186,-9,1,0,29,0,0,0,2,2,-9,0,5,8.1327057,8.342248,0,0,0,-975.09882,0,3,-9,2019,7,1,35,45,1,1,1,12.63333,12.63333,0,0,0,0,0,1,1,0,1.1951445,0,46.88,60.96,-9,-9,8.333333333333334,2,3,0,0,7,8,4,0,915,-49022.227,0,0,0,1346.9543 -9528,11732,21188,-9,21186,-9,1,0,25,0,0,0,1,1,-9,0,5,8.3464899,8.1788502,0,0,0,-1044.4797,0,3,3,2019,9,0,37,40,1,0,1,11.047132,11.047132,0,0,0,0,0,1,1,0,1.329652,0,51.73,58.82,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,250,-110876.33,0,0,0,1193.8292 -9528,11733,21189,-9,21186,-9,1,0,22,0,0,0,2,2,-9,0,4,7.804985,7.9705687,0,0,0,-1048.5751,0,3,3,2019,8,2,37,32,1,2,1,8.2522964,8.2522964,0,0,0,0,0,1,1,0,0,0,55.32,42.04,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,293,-329047.44,11735.12,0,0,1147.3276 -9529,11734,21190,21191,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.4421968,7.5339856,0,7,2,-2.1216531,0,3,3,2019,9,0,40,30,1,1,0,6.3255773,6.3255773,0,0,0,0,0,1,1,0,0,0,52,55,41.23,51.32,8,2,3,0,0,1,8,3,0,459,20261.043,162578.09,0,0,1765.3077 -9529,11734,21191,21190,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,27,-2,-80.880486,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,51.32,52,55,6.666666666666667,2,3,0,0,0,8,3,0,459,20261.043,162578.09,0,0,1765.3077 -9529,11735,21192,-9,21191,21190,1,0,20,0,0,0,2,2,-9,0,4,6.1775832,6.057868,0,0,0,-894.68835,0,2,2,2019,17,5,28,5,1,5,1,2.0151193,2.0151193,0,0,0,0,0,1,1,0,0,0,39.33,58.88,-9,-9,6.666666666666667,2,3,0,0,3,8,2,0,387,-315045.03,0,0,0,175.80438 -9530,11736,21193,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.5824394,7.0226974,0,0,-1135.3008,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6348553,6.9129629,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,1084,-248195.11,62818.613,0,0,826.65906 -9531,11737,21194,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.54736,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.53,38.19,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,293,324765.59,0,0,0,511.48102 -9532,11738,21195,-9,21197,21199,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.58563,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 -9532,11738,21196,-9,21197,21199,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1051.251,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 -9532,11738,21197,21199,-9,-9,1,0,31,0,4,0,2,2,-9,1,3,0,0,0,15,-4,-33.199997,0,2,2,2019,13,1,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,19.05,52,54.51,8.333333333333334,1,1,0,0,1,10,3,0,426.5,-42291.004,0,0,0,5033.1479 -9532,11738,21198,-9,21197,21199,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.3929,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 -9532,11738,21199,21197,-9,-9,1,1,35,0,4,0,2,2,-9,0,3,8.2694635,8.5221539,0,15,4,131.72754,0,2,1,2019,8,0,37,8,1,0,0,12.229699,12.229699,0,0,0,0,0,1,1,0,0,0,52,54.51,52.21,19.05,5,1,1,0,0,9,10,3,0,426.5,-42291.004,0,0,0,5033.1479 -9532,11738,21200,-9,21197,21199,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.35303,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,426.5,-42291.004,0,0,0,5033.1479 -9533,11739,21201,21202,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2045918,7.1939511,43,3,-20.610733,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2553325,53,47,54.74,57.22,7,1,1,0,0,0,5,3,1,340.5,562121.75,494188.28,51553.508,0,2491.8403 -9533,11739,21202,21201,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.4501638,6.4185853,43,-3,31.767555,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.057826,6.3566413,54.74,57.22,53,47,8.333333333333334,1,1,0,0,6,5,3,1,340.5,562121.75,494188.28,51553.508,0,2491.8403 -9534,11740,21203,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.2103834,9.4346447,0,0,0,-1083.8865,0,2,1,2019,9,0,45,53,1,0,0,30.708326,30.708326,0,0,0,0,0,0,0,0,2.1947777,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,655,800304.69,394058.34,273731.63,109272.67,3832.5125 -9535,11741,21204,21205,-9,-9,1,1,42,0,0,0,3,3,-9,0,4,8.4507132,8.5475912,0,1,-11,-23.524549,-9,-9,-9,2019,10,0,51,0,1,1,0,12.506142,12.506142,0,0,0,0,2,1,0,1,0,0,51,56,47,49,7,2,3,0,1,13,8,4,1,516,-59061.477,104938.59,0,0,2615.6218 -9535,11741,21205,21204,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.1977701,7.1027637,0,17,11,161.23965,-9,3,3,2019,12,0,28,0,1,2,0,5.1969414,5.1969414,0,0,0,0,0,1,0,1,0,0,47,49,51,56,7,2,3,0,0,7,8,4,1,516,-59061.477,104938.59,0,0,2615.6218 -9535,11742,21206,-9,21205,21204,1,0,22,0,0,0,3,3,-9,0,5,0,0,0,0,0,-954.33521,-9,3,3,2019,10,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,51.63,47.98,-9,-9,8.333333333333334,2,3,1,0,0,8,1,1,447,251701.67,0,0,0,509.24414 -9535,11743,21207,-9,21205,21204,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1034.2942,-9,3,3,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,0,1,0,0,51.15,50.81,-9,-9,0,2,3,0,0,0,8,2,1,485,194112.88,0,0,0,0 -9535,11744,21208,-9,21205,21204,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1079.4178,-9,3,3,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,41.34,56.62,-9,-9,0,2,3,1,0,0,8,1,1,756,-531855.5,0,0,0,0 -9536,11745,21209,21210,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.05937,9.4605007,0,6,3,109.94911,0,-9,-9,2019,9,0,37,73,1,1,0,33.211811,33.211811,0,0,0,0,0,1,1,0,.59007722,0,53,55,46.39,52.95,8,1,1,0,0,1,2,4,1,521.33331,246497.02,199484.89,309102.19,133504.53,4002.522 -9536,11745,21210,21209,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,22,-3,-5.0315733,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.2404675,0,46.39,52.95,53,55,8.333333333333334,1,1,0,0,6,2,4,1,521.33331,246497.02,199484.89,309102.19,133504.53,4002.522 -9536,11745,21211,-9,21210,21209,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-993.3194,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,2,4,1,521.33331,246497.02,199484.89,309102.19,133504.53,4002.522 -9537,11746,21212,21213,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,6.4180231,5.9208269,9,-3,-116.62453,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,4.0724821,6.2383518,52.03,14.1,38.6,40.53,5,1,1,0,0,0,1,2,1,599.5,426616.25,-31809.057,112128.61,49302.578,1835.4573 -9537,11746,21213,21212,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,6.3858294,6.4008989,9,3,103.74132,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.8411622,6.4023075,38.6,40.53,52.03,14.1,10,1,1,0,0,0,1,2,1,599.5,426616.25,-31809.057,112128.61,49302.578,1835.4573 -9538,11747,21214,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,6.6580572,6.6221905,0,0,-1007.3293,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.6346598,0,44.92,57.6,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1242,174149.16,-91786.969,0,0,912.03662 -9538,11748,21215,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-899.01227,-9,-9,-9,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,777,-116425.9,0,0,0,41.38443 -9539,11749,21216,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.1327381,7.1205158,0,0,0,-991.21851,0,3,3,2019,9,0,25,15,1,0,0,8.5147352,8.5147352,0,0,0,0,7,0,0,0,1.2411363,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,6,2,3,0,981,393991.31,-97040.469,0,0,1168.619 -9540,11750,21217,21218,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,0,0,61,-4,-5.173172,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4092593,0,49.41,58.28,56.25,44.4,8.333333333333334,1,1,0,0,0,6,2,1,976,612876.25,216463.22,132295.86,0,2464.189 -9540,11750,21218,21217,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.4676619,7.0303426,61,4,11.301182,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6400309,7.1780934,56.25,44.4,49.41,58.28,6.666666666666667,1,1,0,0,0,6,2,1,976,612876.25,216463.22,132295.86,0,2464.189 -9541,11751,21219,21221,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.6148062,7.8471909,0,10,2,9.077487,0,-9,-9,2019,4,0,40,40,1,0,0,7.792397,7.792397,0,0,0,0,0,1,1,0,0,0,50.54,62.09,42.81,54.48,8.333333333333334,1,1,0,0,11,2,3,1,412.66666,494051.09,46724.805,0,0,2317.407 -9541,11751,21220,-9,21219,21221,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.29926,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,3,1,412.66666,494051.09,46724.805,0,0,2317.407 -9541,11751,21221,21219,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.0227633,7.9936924,0,10,-2,-67.564484,0,2,-9,2019,10,1,58,55,1,1,0,5.9393559,5.9393559,0,0,0,0,0,1,1,0,0,0,42.81,54.48,50.54,62.09,6.666666666666667,1,1,0,0,11,2,3,1,412.66666,494051.09,46724.805,0,0,2317.407 -9542,11752,21222,-9,-9,-9,1,0,23,0,0,0,1,1,0,0,4,0,0,0,0,0,-934.7345,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,4,5,1,0,651,-191687.64,0,0,0,-177.42784 -9543,11753,21223,21224,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.6976438,6.5899129,10,-1,-50.091557,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4886918,6.7037425,57.16,56.15,48.81,59.91,8.333333333333334,1,1,0,0,1,2,2,1,773.5,568497.56,190379.7,197607.69,0,2234.1655 -9543,11753,21224,21223,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.332242,5.3611593,10,1,68.688118,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6975245,5.4325204,48.81,59.91,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,773.5,568497.56,190379.7,197607.69,0,2234.1655 -9544,11754,21225,21226,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,5.9497967,8.3711338,7.8780828,33,7,3.628747,0,2,2,2019,6,0,15,25,1,0,0,3.1727288,3.1727288,0,0,0,0,0,1,1,0,3.1294291,8.283329,63.83,43.62,64.64,48.76,1.666666666666667,1,1,0,0,11,9,3,1,492.5,792029.88,467610.69,307011.75,0,1981.9525 -9544,11754,21226,21225,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,33,-7,-152.16197,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.5558414,0,64.64,48.76,63.83,43.62,10,2,3,0,0,0,9,3,1,492.5,792029.88,467610.69,307011.75,0,1981.9525 -9545,11755,21227,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,3,7.6591859,7.9512787,0,0,0,-1014.6278,0,1,2,2019,17,5,44,30,1,5,0,6.5521083,6.5521083,0,0,0,0,2,1,1,0,0,0,46,51,-9,-9,6.666666666666667,1,1,0,0,10,1,3,0,414,-204272.77,69384.531,0,0,1130.9041 -9546,11756,21228,-9,21230,21229,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.4567,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,751.33331,-116603.17,24243.82,138224.63,126061.16,2603.3591 -9546,11756,21229,21230,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,7.9493327,7.8519025,0,7,2,-37.474941,0,-9,-9,2019,12,2,37,40,1,2,0,8.1173611,8.1173611,0,0,0,0,0,1,1,0,0,0,49.91,50.15,47,57,6.666666666666667,1,1,0,0,9,13,4,1,751.33331,-116603.17,24243.82,138224.63,126061.16,2603.3591 -9546,11756,21230,21229,-9,-9,1,0,29,1,1,0,2,2,-9,0,4,7.8542895,7.9842119,0,7,-2,-135.05995,0,2,2,2019,11,0,30,32,1,2,0,13.170259,13.170259,0,0,0,0,0,1,1,0,.29254505,0,47,57,49.91,50.15,7,1,1,0,0,8,13,4,1,751.33331,-116603.17,24243.82,138224.63,126061.16,2603.3591 -9547,11757,21231,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-993.83276,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.29,30.35,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,803,-129789.16,0,0,0,1852.0743 -9548,11758,21232,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.5161657,7.4873085,0,0,0,-1110.3896,0,-9,-9,2019,12,1,43,30,1,1,0,5.7675352,5.7675352,0,0,0,0,0,1,1,0,0,0,48.8,49.1,-9,-9,8.333333333333334,1,1,0,0,6,2,3,0,472.5,108684.97,0,0,0,1284.1516 -9548,11758,21233,-9,21232,-9,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-899.5238,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,472.5,108684.97,0,0,0,1284.1516 -9549,11759,21234,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.5856876,7.3752971,0,0,-1034.4417,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7873001,7.2820745,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,973,573527.63,119089.29,330056.09,0,1373.8291 -9550,11760,21235,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0046654,8.1107454,0,0,0,-975.12042,0,3,3,2019,16,3,40,38,1,3,0,8.838397,8.838397,0,0,0,0,0,1,1,0,4.0665751,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,565,211747.75,-15382.295,0,0,761.54584 -9551,11761,21236,-9,21238,21239,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.64374,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 -9551,11761,21237,-9,21238,21239,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.9606,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 -9551,11761,21238,21239,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,0,0,0,7,0,-85.19458,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.62,44.76,47.07,53.97,8.333333333333334,1,1,0,0,4,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 -9551,11761,21239,21238,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,9.0096836,9.0684605,0,7,0,14.359309,0,2,2,2019,12,1,38,38,1,1,0,27.728418,27.728418,0,0,0,0,0,1,1,0,4.7591972,0,47.07,53.97,55.62,44.76,6.666666666666667,4,5,0,0,8,7,4,1,641,-278902.88,41891.281,0,0,2611.2385 -9552,11762,21240,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,7.9918098,8.060792,0,0,0,-939.01819,0,2,2,2019,10,0,30,35,1,0,0,12.64726,12.64726,0,0,0,0,0,0,0,0,8.1488962,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,6,4,0,861,1150409.8,803368.44,194106.34,0,2685.4475 -9553,11763,21241,21244,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,6.780674,7.1886425,0,11,1,-9.9096012,0,3,2,2019,13,1,14,22,1,1,0,6.3927698,6.3927698,0,0,0,0,0,1,1,0,0,0,40.77,61.04,51.49,57.57,6.666666666666667,2,3,0,0,3,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 -9553,11763,21242,-9,21241,21244,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.2043,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 -9553,11763,21243,-9,21241,21244,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-800.38898,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 -9553,11763,21244,21241,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,7.9579325,7.8563867,0,11,-1,-6.0192389,0,3,2,2019,8,1,70,66,1,1,0,4.1953602,4.1953602,0,0,0,0,0,1,1,0,0,0,51.49,57.57,40.77,61.04,5,2,3,0,0,7,2,3,1,574.75,163664.66,0,136984.33,92543.719,2710.8704 -9554,11764,21245,21246,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.690609,8.8224192,0,22,-1,46.787895,0,2,2,2019,7,0,40,40,1,0,0,23.77342,23.77342,0,0,0,0,0,1,1,0,0,0,55.21,43.87,57.33,53.46,6.666666666666667,1,1,0,0,11,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 -9554,11764,21246,21245,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.0377445,9.2692471,0,22,1,-175.40654,0,2,2,2019,6,0,41,43,1,0,0,25.000841,25.000841,0,0,0,0,0,1,1,0,.83137167,0,57.33,53.46,55.21,43.87,8.333333333333334,1,1,0,0,11,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 -9554,11764,21247,-9,21245,21246,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.07068,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 -9554,11764,21248,-9,21245,21246,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.23621,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,540,422129.59,305513.13,213959.38,136643.92,5499.7842 -9555,11765,21249,21250,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.8105431,8.5784264,0,29,6,-101.45842,0,-9,2,2019,6,0,48,50,1,0,0,11.395559,11.395559,0,0,0,0,0,0,0,0,0,0,55.79,52.62,63.16,38.47,10,1,1,0,0,9,9,5,1,139,297401.41,341159.44,257690.75,61524.344,3335.6597 -9555,11765,21250,21249,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.2396049,8.1876268,0,30,-6,219.1606,0,3,2,2019,8,1,45,49,1,1,0,7.9293737,7.9293737,0,0,0,0,0,0,0,0,0,0,63.16,38.47,55.79,52.62,8.333333333333334,1,1,0,0,8,9,5,1,139,297401.41,341159.44,257690.75,61524.344,3335.6597 -9555,11766,21251,-9,21250,21249,1,0,20,0,0,0,2,2,-9,0,4,7.991775,7.9759231,0,0,0,-1025.8193,0,2,3,2019,10,0,8,40,1,0,1,34.863277,34.863277,0,0,0,0,2,0,0,0,0,0,53.53,43.07,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,69,-118463.33,0,0,0,1842.6105 -9556,11767,21252,-9,21255,21254,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.36725,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 -9556,11767,21253,-9,21255,21254,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7867,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 -9556,11767,21254,21255,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.1219807,8.7629862,0,10,4,-2.2537329,0,2,2,2019,10,0,61,60,1,0,0,17.304325,17.304325,0,0,0,0,0,0,0,0,0,0,46.67,55.57,50.03,52.62,8.333333333333334,1,1,0,0,11,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 -9556,11767,21255,21254,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,0,0,0,10,-4,-71.849457,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,46.67,55.57,6.666666666666667,1,1,0,0,5,9,4,1,719.25,337083.97,-68017.414,423297.84,115105.33,3311.0256 -9557,11768,21256,-9,21260,21258,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1031.6785,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 -9557,11768,21257,-9,21260,21258,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1047.5891,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 -9557,11768,21258,21260,-9,-9,1,1,34,1,5,0,2,2,-9,0,4,7.8549094,7.9108534,0,6,-3,40.7509,0,-9,-9,2019,10,0,37,30,1,1,0,6.5308294,6.5308294,0,0,0,0,0,1,1,0,0,0,51,56,50.08,33.76,7,2,3,0,0,1,4,2,1,571.71429,212266.92,0,0,0,2695.4829 -9557,11768,21259,-9,21260,21258,1,1,13,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1003.2037,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 -9557,11768,21260,21258,-9,-9,1,0,37,1,5,0,1,1,-9,0,3,0,0,0,20,3,-152.13039,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.08,33.76,51,56,8.333333333333334,2,3,0,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 -9557,11768,21261,-9,21260,21258,1,1,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1037.756,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 -9557,11768,21262,-9,21260,21258,1,1,14,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1025.8801,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,2,1,571.71429,212266.92,0,0,0,2695.4829 -9558,11769,21263,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,7.1412287,7.3023939,0,0,-1018.3005,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.2237349,51.6,13.1,-9,-9,5,1,1,0,1,0,7,2,0,1116,249843.08,221311.59,0,0,1404.7192 -9559,11770,21264,21265,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.2512026,7.5020442,6.4126811,45,-2,-16.563049,0,3,3,2019,6,0,30,30,1,0,0,4.9639692,4.9639692,0,0,0,0,2,1,1,0,6.7214584,5.5504136,64.08,44.69,57.06,42.51,10,2,3,0,0,10,6,3,1,768.5,438040.88,268397.91,169974.63,0,1813.7357 -9559,11770,21265,21264,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,9,2,-25.719337,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.6744211,0,57.06,42.51,64.08,44.69,10,2,3,0,0,0,6,3,1,768.5,438040.88,268397.91,169974.63,0,1813.7357 -9559,11771,21266,-9,21265,21264,1,0,37,0,0,0,1,1,-9,0,3,8.3738174,8.3705101,0,0,0,-936.45605,0,3,2,2019,19,7,50,50,1,7,1,9.045433,9.045433,0,0,0,0,14.5,1,1,0,0,0,40.4,58.62,-9,-9,6.666666666666667,2,3,0,0,3,6,4,1,686,-136384.61,48149.621,195758.69,173438.52,2118.7471 -9559,11772,21267,-9,21265,21264,1,1,31,0,0,0,2,2,-9,0,3,8.4239006,8.0262938,0,0,0,-1054.1238,0,3,2,2019,10,1,40,42,1,1,1,11.087358,11.087358,0,0,0,0,0,1,1,0,0,0,47.94,53.79,-9,-9,8.333333333333334,2,3,0,0,3,6,4,1,2004,141309.91,69757.398,0,0,1086.5336 -9560,11773,21268,-9,21270,-9,1,0,54,0,0,0,2,2,-9,0,4,8.358819,8.1333981,0,0,0,-963.6673,0,3,1,2019,12,3,40,37,1,3,0,9.1633368,9.1633368,0,0,0,0,42,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,164,777810.63,88281.828,602541.38,0,1291.0459 -9560,11774,21269,-9,21268,-9,1,1,25,0,0,0,2,2,-9,0,2,8.1453447,7.9067287,0,0,0,-1047.4076,0,3,2,2019,17,5,45,43,1,5,1,8.8590679,8.8590679,0,0,0,0,2,1,1,0,0,0,35.45,52.95,-9,-9,3.333333333333333,1,1,0,0,9,7,4,1,576,-238463.66,0,0,0,1530.1777 -9560,11775,21270,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.14014,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.0785241,0,53,44,-9,-9,8,4,6,0,0,0,7,1,1,593,103573.23,0,33475.141,0,859.13434 -9561,11776,21271,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.8840146,7.9067068,6.2302046,0,0,-1055.0737,-9,3,3,2019,8,0,30,0,1,0,0,12.420605,12.420605,0,0,0,2.0051498,0,1,1,0,4.3714857,6.6838484,55,53,-9,-9,8,1,1,0,0,1,9,4,0,2395,524650.81,457572.28,340398.53,0,771.82629 -9561,11777,21272,-9,-9,21271,1,1,39,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1010.0337,0,2,2,2019,21,8,0,0,3,8,1,0,0,0,0,0,0,2,1,1,0,0,0,29.45,51.83,-9,-9,0,1,1,0,0,0,9,1,0,396,268950.34,0,0,0,439.7063 -9562,11778,21273,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-955.31299,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.2,20.2,-9,-9,1.666666666666667,2,3,0,0,0,8,1,0,544,-160818.48,0,0,0,1042.6914 -9563,11779,21274,21275,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.592226,7.5298586,0,26,-4,-16.855341,0,1,3,2019,8,0,30,31,1,0,0,10.151098,10.151098,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,54,6.666666666666667,1,1,0,0,8,11,4,1,502.5,880555.38,511202.38,208466.5,22188.791,3037.7883 -9563,11779,21275,21274,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.5023241,8.3047018,0,5,4,158.82581,0,-9,-9,2019,9,0,70,57,1,1,0,8.1299953,8.1299953,0,0,0,0,0,1,1,0,0,0,53,54,57.16,56.15,7,1,1,0,0,1,11,4,1,502.5,880555.38,511202.38,208466.5,22188.791,3037.7883 -9564,11780,21276,-9,-9,-9,1,1,38,0,0,0,2,2,-9,1,5,8.5164938,8.6254206,0,0,0,-1011.0139,-9,2,-9,2019,6,0,38,0,1,0,0,15.269957,15.269957,0,0,0,0,88,1,1,0,0,0,56.34,53.98,-9,-9,10,1,1,0,0,10,8,5,0,438,248057.16,26725.979,0,0,7099.457 -9565,11781,21277,21278,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9676175,6.1077442,37,1,-66.191231,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7823849,58.9,45.74,47,38,8.333333333333334,1,1,0,0,12,6,2,1,497.5,160132.11,38859.918,139464.5,-3315.5359,1770.0024 -9565,11781,21278,21277,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.4972816,6.4569554,37,-1,23.034418,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4766502,47,38,58.9,45.74,8.333333333333334,1,1,0,0,4,6,2,1,497.5,160132.11,38859.918,139464.5,-3315.5359,1770.0024 -9566,11782,21279,-9,21282,21281,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7889,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 -9566,11782,21280,-9,21282,21281,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.62994,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 -9566,11782,21281,21282,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.4354329,7.1001563,0,7,-1,-8.1736975,0,2,2,2019,12,0,40,45,1,0,0,5.3759136,5.3759136,0,0,0,0,0,1,1,0,6.5003748,0,51.24,58.84,55.34,54.26,8.333333333333334,1,1,0,0,8,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 -9566,11782,21282,21281,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.8080897,7.4057178,0,7,1,-32.226746,0,1,2,2019,10,0,31,30,1,0,0,7.068202,7.068202,0,0,0,0,0,1,1,0,0,0,55.34,54.26,51.24,58.84,8.333333333333334,1,1,0,0,7,1,3,1,467,86990.734,0,60684.438,29820.727,2175.7234 -9567,11783,21283,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1002.2998,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,15.48,25.61,-9,-9,0,1,1,0,0,0,12,1,0,269,120409.65,0,0,0,1145.8047 -9568,11784,21284,21285,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.0476093,7.8854599,0,34,2,-5.3488078,0,2,3,2019,9,0,42,40,1,0,0,9.9345121,9.9345121,0,0,0,0,0,0,0,0,1.3732563,0,55.02,54.61,54.2,57.49,8.333333333333334,1,1,0,0,9,13,4,1,256.5,900770.25,139045.11,125002.73,0,2107.1738 -9568,11784,21285,21284,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.6177206,7.7301135,34,-2,146.90996,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.5944567,7.7144413,54.2,57.49,55.02,54.61,10,1,1,0,0,0,13,4,1,256.5,900770.25,139045.11,125002.73,0,2107.1738 -9569,11785,21286,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1075.34,0,1,2,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.33,42.32,-9,-9,5,1,1,0,0,0,9,1,0,304,-276974.81,0,0,0,1917.8617 -9570,11786,21287,21289,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,8.1532669,8.1372871,0,4,0,-26.19026,0,-9,-9,2019,13,2,50,65,1,2,0,9.0546017,9.0546017,0,0,0,0,0,1,1,0,0,0,43.12,58.55,48.06,53.4,8.333333333333334,1,1,0,0,7,10,5,0,1021,117319.38,128834.77,250488.41,160418.33,3554.0764 -9570,11786,21288,-9,21287,21289,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.2117,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,0,1021,117319.38,128834.77,250488.41,160418.33,3554.0764 -9570,11786,21289,21287,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.435174,8.7607574,0,4,0,-93.857292,0,-9,-9,2019,9,0,60,60,1,0,0,11.89414,11.89414,0,0,0,0,0,1,1,0,0,0,48.06,53.4,43.12,58.55,6.666666666666667,1,1,0,0,10,10,5,0,1021,117319.38,128834.77,250488.41,160418.33,3554.0764 -9571,11787,21290,-9,21292,21291,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.07019,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,1,813.33331,308071.59,30762.016,366420.22,0,2293.634 -9571,11787,21291,21292,-9,-9,1,1,50,0,2,0,1,1,-9,1,2,0,0,0,3,8,-65.934647,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,2.5467634,0,44,40,50.94,53.44,8.333333333333334,1,1,0,0,1,13,2,1,813.33331,308071.59,30762.016,366420.22,0,2293.634 -9571,11787,21292,21291,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.3629508,6.3561573,0,13,-8,-6.4950953,0,2,2,2019,11,0,14,15,1,0,0,5.0823669,5.0823669,0,0,0,0,42,1,0,1,0,0,50.94,53.44,44,40,6.666666666666667,1,1,0,0,5,13,2,1,813.33331,308071.59,30762.016,366420.22,0,2293.634 -9572,11788,21293,21294,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,8,1,-109.23248,0,2,3,2019,12,1,0,0,4,1,0,0,0,1,0,40.801933,0,0,1,1,0,0,0,41.64,15.05,62.49,55.09,1.666666666666667,1,1,0,0,0,2,3,1,552.5,1013486.1,641698.13,259401.44,0,1997.0696 -9572,11788,21294,21293,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.7514133,7.8928032,8,-1,203.81131,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,3.5152922,7.6667643,62.49,55.09,41.64,15.05,10,1,1,0,0,0,2,3,1,552.5,1013486.1,641698.13,259401.44,0,1997.0696 -9573,11789,21295,21296,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.2195883,8.5021944,0,18,9,46.312332,0,-9,-9,2019,13,1,9,38,1,1,0,66.316734,66.316734,0,0,0,0,0,1,1,0,0,0,55.36,51.57,61.5,34.39,5,2,3,0,0,3,8,4,1,1019.3333,179601.8,0,0,0,2385.71 -9573,11789,21296,21295,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,7.1375947,7.3622799,0,18,0,-87.830345,0,3,3,2019,10,0,20,0,1,0,0,9.4217606,9.4217606,0,0,0,0,0,1,1,0,0,0,61.5,34.39,55.36,51.57,8.333333333333334,2,3,0,0,7,8,4,1,1019.3333,179601.8,0,0,0,2385.71 -9573,11789,21297,-9,21296,21295,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.1432,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1019.3333,179601.8,0,0,0,2385.71 -9573,11790,21298,-9,21296,21295,1,1,20,0,1,1,2,0,0,0,2,0,0,0,0,0,-1005.0987,-9,1,1,2019,25,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,27.97,60.5,-9,-9,1.666666666666667,2,3,0,1,0,8,1,1,156,0,0,0,0,147.61989 -9574,11791,21299,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.9625511,8.7616367,0,0,0,-965.90436,0,1,1,2019,22,11,48,48,1,11,0,18.437391,18.437391,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,5,2,3,0,0,11,8,5,1,575,824707.19,584199.5,357126.81,236391.67,2381.9976 -9574,11791,21300,-9,21299,-9,1,1,13,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1017.7005,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,5,1,575,824707.19,584199.5,357126.81,236391.67,2381.9976 -9574,11791,21301,-9,21299,-9,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1003.5447,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,575,824707.19,584199.5,357126.81,236391.67,2381.9976 -9574,11792,21302,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.5630417,9.5151997,0,0,0,-1007.7344,0,3,2,2019,15,3,45,9,1,3,0,39.419575,39.419575,0,0,0,0,0,0,0,0,5.9834452,0,39.23,60.49,-9,-9,3.333333333333333,1,1,0,0,11,8,5,1,1414,1632380.1,587420.19,620225.06,0,9324.9639 -9575,11793,21303,-9,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,7.0344262,6.8753247,0,0,0,-1034.2103,0,-9,-9,2019,24,12,16,16,1,12,0,8.7307482,8.7307482,0,0,0,0,7,1,1,0,0,0,24.03,57.05,-9,-9,1.666666666666667,1,1,0,0,3,9,2,0,1858,-47256.973,17175.842,0,0,1089.4597 -9576,11794,21304,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4069138,6.27983,0,0,-1073.1685,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.4355817,6.1279931,56.49,33.2,-9,-9,6.666666666666667,1,1,0,1,0,8,2,1,1085,402394.56,22494.703,346883.88,0,1226.8713 -9577,11795,21305,21306,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.5584106,8.9707794,0,1,1,10.702726,-9,2,3,2019,30,12,40,0,1,12,0,15.595529,15.595529,0,0,0,0,0,1,1,0,6.9954877,0,25.42,65.41,63.38,53.47,3.333333333333333,1,1,0,0,10,2,5,1,606,2925620.8,2285579,414375.44,0,7525.2378 -9577,11795,21306,21305,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,9.4490795,9.5282373,0,1,-1,58.645596,-9,-9,-9,2019,5,0,48,0,1,0,0,37.120022,37.120022,0,0,0,0,0,1,1,0,6.629467,0,63.38,53.47,25.42,65.41,8.333333333333334,2,3,0,0,10,2,5,1,606,2925620.8,2285579,414375.44,0,7525.2378 -9577,11795,21307,-9,21305,21306,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-863.66888,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,606,2925620.8,2285579,414375.44,0,7525.2378 -9578,11796,21308,21309,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.6160364,8.675168,0,2,0,-79.127373,0,2,2,2019,8,0,42,40,1,0,0,16.004951,16.004951,0,0,0,0,0,0,0,0,5.1264529,0,57.33,53.46,49.06,58.64,6.666666666666667,1,1,0,0,13,9,5,1,587,835102.38,23743.869,1018425.3,298801.72,3817.7695 -9578,11796,21309,21308,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.1024494,8.2061176,0,2,0,107.53752,0,-9,-9,2019,9,1,38,37,1,1,0,11.987988,11.987988,0,0,0,0,0,0,0,0,4.9069033,0,49.06,58.64,57.33,53.46,8.333333333333334,1,1,0,0,13,9,5,1,587,835102.38,23743.869,1018425.3,298801.72,3817.7695 -9579,11797,21310,21311,-9,-9,1,0,64,0,1,0,2,2,-9,0,3,0,7.9300022,7.5240698,2,-3,85.046349,0,3,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.4233649,7.4233623,42.22,56.11,51,48,1.666666666666667,1,1,0,0,1,5,2,1,331.5,955482.44,250775.59,599793.88,115640.58,1018.171 -9579,11797,21311,21310,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,0,0,0,2,3,94.068985,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,42.22,56.11,7,1,1,0,0,0,5,2,1,331.5,955482.44,250775.59,599793.88,115640.58,1018.171 -9579,11798,21312,-9,21313,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.66388,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,718,333265.09,72348.813,267031.25,114802.39,2448.9983 -9579,11798,21313,-9,21310,21311,1,0,32,0,1,0,2,2,-9,0,4,8.1088247,8.3442078,5.7924018,0,0,-1098.9861,0,2,2,2019,11,0,43,43,1,0,0,8.5887203,8.5887203,0,0,0,0,2,1,1,0,6.1035161,0,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,718,333265.09,72348.813,267031.25,114802.39,2448.9983 -9580,11799,21314,21315,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.3419127,7.2248836,50,2,131.91776,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,4.2543101,7.567028,37.25,31.7,43.93,31.44,8.333333333333334,1,1,0,0,0,6,2,1,759,916653.25,355886.22,485589.63,0,2021.3094 -9580,11799,21315,21314,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,46,-2,-42.787758,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.0436878,0,43.93,31.44,37.25,31.7,6.666666666666667,1,1,0,0,0,6,2,1,759,916653.25,355886.22,485589.63,0,2021.3094 -9581,11800,21316,21317,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9932609,7.8231153,49,5,-16.156887,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7580888,8.2754135,64.40000000000001,42,53.78,35.18,10,1,1,0,0,11,7,3,1,906,1206464,376505.38,467312.84,0,2854.0747 -9581,11800,21317,21316,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.5423222,6.8940134,49,-5,.22327939,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6587639,53.78,35.18,64.40000000000001,42,5,1,1,0,0,0,7,3,1,906,1206464,376505.38,467312.84,0,2854.0747 -9582,11801,21318,21319,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.978056,8.5866327,0,23,-2,167.20738,0,-9,-9,2019,3,0,37,63,1,0,0,21.194883,21.194883,0,0,0,0,0,0,0,0,0,0,61.28,46.17,44.98,57.48,8.333333333333334,4,2,0,0,9,7,5,1,1557.5,1766936.3,1695284,282717.91,96770.969,4757.269 -9582,11801,21319,21318,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.58675,8.4099483,0,4,2,80.307091,0,-9,-9,2019,6,0,50,50,1,0,0,11.562085,11.562085,0,0,0,0,0,0,0,0,3.5495398,0,44.98,57.48,61.28,46.17,8.333333333333334,4,2,0,0,3,7,5,1,1557.5,1766936.3,1695284,282717.91,96770.969,4757.269 -9583,11802,21320,21321,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.6254487,7.4108191,0,6,-1,.80109495,0,3,3,2019,10,1,26,26,1,1,0,9.0274973,9.0274973,0,0,0,0,0,1,1,0,0,0,58.07,46.29,51.2,46.51,1.666666666666667,1,1,0,0,7,13,4,1,822.5,528735.44,361122.41,173410.94,14133.152,2426.6399 -9583,11802,21321,21320,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.307807,8.1040325,0,6,1,26.635674,0,3,3,2019,8,0,43,50,1,0,0,9.3515606,9.3515606,0,0,0,0,0,1,1,0,0,0,51.2,46.51,58.07,46.29,6.666666666666667,1,1,0,0,7,13,4,1,822.5,528735.44,361122.41,173410.94,14133.152,2426.6399 -9583,11803,21322,-9,21320,21321,1,0,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1020.9741,0,3,2,2019,11,0,0,60,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,1,1,6,13,1,1,514,-214644.36,-14653.104,0,0,-39.255703 -9583,11804,21323,-9,21320,21321,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-924.80542,-9,3,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,575,375505.25,0,0,0,660.02948 -9583,11805,21324,-9,21320,21321,1,1,18,0,0,0,2,2,1,0,3,6.0957141,6.5950403,0,0,0,-969.56665,-9,3,2,2019,8,0,12,0,1,0,1,5.6416078,5.6416078,0,0,0,0,0,1,1,0,.27108195,0,55.93,49.95,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,465,238412.94,-34277.605,0,0,81.166313 -9584,11806,21325,21326,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,7.8479347,7.778317,0,6,1,-33.689606,0,2,3,2019,7,0,22,28,1,0,0,14.728502,14.728502,0,0,0,0,0,0,0,0,0,0,65.63,29.46,51.24,58.84,6.666666666666667,1,1,0,0,7,13,5,1,157,1723544.5,1578057.9,135243.91,95030.313,5263.2358 -9584,11806,21326,21325,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.5061617,9.4937201,0,6,-1,-3.3985968,0,3,2,2019,8,0,37,82,1,0,0,52.396606,52.396606,0,0,0,0,0,0,0,0,3.6377819,0,51.24,58.84,65.63,29.46,8.333333333333334,1,1,0,0,7,13,5,1,157,1723544.5,1578057.9,135243.91,95030.313,5263.2358 -9584,11807,21327,-9,21326,21325,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1039.3263,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,350,-241946.47,0,0,0,-43.394638 -9585,11808,21328,21329,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,7,1,-30.839302,0,2,1,2019,15,3,0,0,4,3,0,0,0,1,0,11.012977,0,14.5,1,1,0,0,0,37.27,62.66,36.14,59.14,5,1,1,0,0,2,7,5,1,605,1742465,855855.13,474737.63,0,4574.7671 -9585,11808,21329,21328,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,8.6154146,8.7506075,6.5657816,7,-1,132.87595,0,2,2,2019,12,1,20,20,1,1,0,42.800728,42.800728,0,0,0,0,7,1,1,0,7.2394481,6.9070821,36.14,59.14,37.27,62.66,8.333333333333334,1,1,0,0,9,7,5,1,605,1742465,855855.13,474737.63,0,4574.7671 -9586,11809,21330,21331,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1054459,7.6018372,0,28,1,53.188122,0,3,3,2019,8,0,35,22,1,0,0,8.0080605,8.0080605,0,0,0,0,0,0,0,0,0,0,58.89,48.6,41.78,61.86,8.333333333333334,1,1,0,0,10,12,5,1,782.5,3307617,3102239,224725.25,0,4482.7744 -9586,11809,21331,21330,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8337412,9.239975,0,25,-1,78.844376,0,3,3,2019,18,7,50,50,1,7,0,15.342805,15.342805,0,0,0,0,0,0,0,0,0,0,41.78,61.86,58.89,48.6,8.333333333333334,1,1,0,0,10,12,5,1,782.5,3307617,3102239,224725.25,0,4482.7744 -9587,11810,21332,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-947.52429,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5326384,0,52.52,51.4,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,343,26570.5,0,0,0,405.03412 -9588,11811,21333,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.9640021,8.2467947,0,0,0,-926.07349,0,2,2,2019,10,0,50,44,1,1,0,6.0209107,6.0209107,0,0,0,0,0,0,0,0,2.0411127,0,49,58,-9,-9,10,1,1,0,0,11,10,3,1,1176,788545.19,77639.797,258434.34,0,1749.4865 -9589,11812,21334,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,8.522522,8.3619528,0,0,-933.22137,0,3,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3544493,7.9884877,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,452,1742558.9,916363.5,343164.63,0,2671.1438 -9590,11813,21335,21336,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.1112661,8.1513519,7.8690391,28,6,-62.109661,0,2,2,2019,7,0,10,30,1,0,0,18.026146,18.026146,0,0,0,0,0,0,0,0,0,7.6277046,65.03,31.43,49.61,54.24,8.333333333333334,1,1,0,0,6,7,5,1,598.5,2595315.5,1437574,579723.38,0,5387.9375 -9590,11813,21336,21335,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.3726397,8.7484303,8.0665302,8,-6,.66754889,0,2,2,2019,9,2,21,21,1,2,0,24.399139,24.399139,0,0,0,0,14.5,0,0,0,0,7.94665,49.61,54.24,65.03,31.43,8.333333333333334,1,1,0,0,8,7,5,1,598.5,2595315.5,1437574,579723.38,0,5387.9375 -9591,11814,21337,-9,21339,21340,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.3171,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 -9591,11814,21338,-9,21339,21340,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.3266,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 -9591,11814,21339,21340,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,8.7410746,8.9031553,5.6552539,6,-1,-77.767006,0,-9,-9,2019,12,1,40,35,1,1,0,13.533175,13.533175,0,0,0,0,0,0,0,0,6.9928288,0,45.49,50.81,48.71,61.53,8.333333333333334,4,1,0,0,9,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 -9591,11814,21340,21339,-9,-9,1,1,42,0,3,0,1,1,-9,0,5,9.7541599,9.8572845,0,6,1,-31.917404,0,2,1,2019,8,1,48,47,1,1,0,42.987743,42.987743,0,0,0,0,0,0,0,0,8.2501621,0,48.71,61.53,45.49,50.81,8.333333333333334,1,1,0,0,9,13,5,1,292,1663766.4,964496.5,405207.44,0,11835.761 -9592,11815,21341,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.4897218,8.1777525,7.4824119,0,0,-933.27173,0,2,2,2019,10,0,28,29,1,0,0,7.6674399,7.6674399,0,0,0,0,0,0,0,0,7.4700246,0,46.27,57.3,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,170,606315.56,79220.328,442884.44,0,1748.1877 -9592,11816,21342,-9,21341,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1000.978,-9,2,-9,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,5,1,1,0,0,1,7,2,1,209,152290.98,0,0,0,0 -9593,11817,21343,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,6.5445652,6.7044244,0,0,-1154.2507,0,2,2,2019,10,2,0,0,4,2,0,0,0,1,1.9051621,13.97386,19.022243,0,1,1,0,6.2103643,6.6741252,50.74,9.76,-9,-9,10,1,1,0,0,0,12,2,0,126,601588.75,258545.77,112316.11,4947.9355,1000.416 -9594,11818,21344,-9,-9,21346,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-999.91003,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,732.66669,2649436.5,1914718,447606.81,0,5644.9648 -9594,11818,21345,21346,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.6598606,7.4337568,7,4,-24.167974,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,1.2921098,7.65132,37.43,17,57.24,52.21,3.333333333333333,1,1,0,0,4,10,5,1,732.66669,2649436.5,1914718,447606.81,0,5644.9648 -9594,11818,21346,21345,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.5673246,9.5334749,5.996737,7,-4,-15.083465,0,1,2,2019,4,0,40,40,1,0,0,45.68198,45.68198,0,0,0,0,42,1,1,0,6.4594507,0,57.24,52.21,37.43,17,10,1,1,0,0,8,10,5,1,732.66669,2649436.5,1914718,447606.81,0,5644.9648 -9595,11819,21347,21348,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.2676201,5.6217299,6,5,72.633186,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9588919,5.5634727,55,45,52,45,8,1,1,0,0,0,13,2,1,1394,-64091.906,55894.188,132672.97,0,2336.1453 -9595,11819,21348,21347,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,6,-5,10.47378,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,13,2,1,1394,-64091.906,55894.188,132672.97,0,2336.1453 -9595,11820,21349,-9,21348,21347,1,1,47,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1198.7051,0,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,13,1,1,1652,314779.59,0,0,0,416.67435 -9596,11821,21350,21351,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,7.7352848,7.5446138,0,41,-3,77.629456,0,3,3,2019,9,3,39,39,1,3,0,6.7232528,6.7232528,0,0,0,0,0,1,1,0,0,0,44.02,60.7,56.35,51.16,10,1,1,0,0,8,4,3,0,565,348088.66,298237.44,164297.06,0,1391.8208 -9596,11821,21351,21350,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,40,3,-32.419243,0,3,2,2019,7,0,0,5,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,44.02,60.7,10,1,1,0,0,8,4,3,0,565,348088.66,298237.44,164297.06,0,1391.8208 -9597,11822,21352,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2028809,8.255434,7.1922393,0,0,-933.60187,0,2,2,2019,4,0,18,18,1,0,0,19.755709,19.755709,0,0,0,0,0,1,0,1,0,7.1669626,55.35,41.97,-9,-9,6.666666666666667,1,1,0,0,13,2,4,0,257,213635.78,215602.13,181229.63,33730.41,2814.7522 -9597,11823,21353,-9,21352,-9,1,0,25,0,0,0,1,1,-9,0,5,8.4081221,8.3092289,0,0,0,-1067.5267,0,2,1,2019,10,1,35,25,1,1,1,12.632987,12.632987,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,4,5,0,0,9,2,4,0,159,-420066.13,-141964.16,0,0,1347.5958 -9597,11824,21354,-9,21352,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1117.6997,0,2,-9,2019,20,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,34.98,42.37,-9,-9,5,1,1,0,0,0,2,1,0,190,356773.38,0,0,0,-35.715267 -9597,11825,21355,-9,21352,-9,1,0,20,0,0,0,2,2,-9,0,4,6.1753407,6.0934906,0,0,0,-966.12048,0,2,-9,2019,12,1,24,0,1,1,1,1.9556184,1.9556184,0,0,0,0,0,1,0,1,0,0,34.56,63.72,-9,-9,6.666666666666667,1,1,0,0,1,2,2,0,558,172442.91,52799.93,0,0,850.62878 -9598,11826,21356,21357,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.9212966,8.0010471,0,2,0,-18.299646,0,2,2,2019,13,2,30,52,1,2,0,11.282508,11.282508,0,0,0,0,0,1,1,0,0,0,32.67,63.54,45.42,46.53,5,1,1,0,0,9,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 -9598,11826,21357,21356,-9,-9,1,1,27,1,2,0,2,2,-9,0,3,0,0,0,2,0,-97.592415,1,-9,-9,2019,21,8,0,38,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,46.53,32.67,63.54,6.666666666666667,1,1,0,0,5,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 -9598,11826,21358,-9,21356,21357,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-906.80078,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 -9598,11826,21359,-9,21356,21357,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.49213,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,786.5,141133.98,119139.59,0,0,1362.8997 -9599,11827,21360,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.2555037,6.2159595,0,0,-1040.3038,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,7.8484006,0,0,1,1,0,5.9934359,5.7656112,65.96000000000001,8.01,-9,-9,10,1,1,0,0,0,7,2,1,1502,119930.74,139715.02,211812.42,0,849.22607 -9600,11828,21361,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,9.157958,9.2967415,0,0,0,-881.71887,0,2,2,2019,14,2,42,41,1,2,0,29.546904,29.546904,0,0,0,0,0,0,0,0,0,0,41.02,59.77,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,832,-9535.7842,76819.461,402639.63,201386.5,3081.6262 -9601,11829,21362,21363,-9,-9,1,1,44,0,0,0,3,3,-9,0,2,0,0,0,7,-2,0,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,31.63,39.79,29.52,23.21,5,1,1,1,1,0,4,1,0,604.5,90457.859,-24383.578,0,0,2266.4475 -9601,11829,21363,21362,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,7,2,0,0,3,3,2019,22,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.52,23.21,31.63,39.79,0,1,1,0,1,0,4,1,0,604.5,90457.859,-24383.578,0,0,2266.4475 -9602,11830,21364,21365,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.7832041,8.8201475,0,2,4,8.5633297,0,1,1,2019,0,0,40,48,1,0,0,13.364406,13.364406,0,0,0,0,0,0,0,0,7.5167751,0,60.02,56.42,47.58,56.39,10,1,1,0,0,4,12,4,0,386,-241925.19,6623.4609,141346.13,103004.48,3662.6699 -9602,11830,21365,21364,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,2,-4,-51.995762,0,-9,-9,2019,6,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.58,56.39,60.02,56.42,8.333333333333334,1,1,0,0,0,12,4,0,386,-241925.19,6623.4609,141346.13,103004.48,3662.6699 -9603,11831,21366,21368,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.5085711,7.250761,0,8,-3,-15.735859,0,2,2,2019,13,1,22,15,1,1,0,8.9462957,8.9462957,0,0,0,0,2,1,1,0,0,0,43.79,58.33,58.32,50.22,6.666666666666667,1,1,0,0,9,12,3,0,1039.6666,151602.13,51081.719,167288.95,123756.39,2392.7195 -9603,11831,21367,-9,21366,21368,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1085.9658,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,0,1039.6666,151602.13,51081.719,167288.95,123756.39,2392.7195 -9603,11831,21368,21366,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,7.8110533,8.004096,0,8,3,55.275249,0,2,2,2019,5,0,37,35,1,0,0,7.9607425,7.9607425,0,0,0,0,0,1,1,0,1.7617217,0,58.32,50.22,43.79,58.33,8.333333333333334,1,1,0,0,9,12,3,0,1039.6666,151602.13,51081.719,167288.95,123756.39,2392.7195 -9603,11832,21369,-9,21366,21368,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-998.16498,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,870,265999.84,0,0,0,662.03632 -9604,11833,21370,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,7,-3,-9.6807375,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,54,54,6.666666666666667,1,1,1,0,6,12,4,1,145,-122314.7,-83309.477,0,0,0 -9604,11834,21371,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.2393036,8.377161,5.5707459,7,3,-14.818341,0,-9,-9,2019,9,0,38,38,1,0,0,12.059614,12.059614,0,0,0,0,0,0,0,0,8.2684832,5.6231861,54,54,47.66,52.33,8,4,1,0,0,1,12,4,1,577,-294450.94,0,11427.645,0,4163.1396 -9605,11835,21372,21373,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.2472515,8.3547983,0,7,0,165.23164,0,2,2,2019,9,2,60,70,1,2,0,8.2913408,8.2913408,0,0,0,0,0,0,0,0,0,0,46.62,31.84,56.99,27.03,6.666666666666667,1,1,0,0,8,4,4,1,428.5,1008444,701703.5,256843.81,0,2597.0029 -9605,11835,21373,21372,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7566361,7.3908262,0,7,0,-17.932146,0,-9,-9,2019,7,1,32,43,1,1,0,7.7111411,7.7111411,0,0,0,0,14.5,0,0,0,5.9115992,0,56.99,27.03,46.62,31.84,8.333333333333334,1,1,0,0,8,4,4,1,428.5,1008444,701703.5,256843.81,0,2597.0029 -9606,11836,21374,21375,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.4671168,7.8601742,49,0,48.844463,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3121357,7.623385,54.44,27.89,51.42,48.12,8.333333333333334,1,1,0,0,7,6,3,1,696,365400.31,183244.8,0,0,4554.0752 -9606,11836,21375,21374,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.3469396,7.3352604,49,0,-70.872826,0,2,1,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3108864,7.1959443,51.42,48.12,54.44,27.89,8.333333333333334,1,1,0,0,2,6,3,1,696,365400.31,183244.8,0,0,4554.0752 -9607,11837,21376,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-931.00037,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,44.85,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1849,-70164.422,0,0,0,1072.2277 -9608,11838,21377,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.5429754,6.6714144,0,0,-949.52441,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6283221,60.29,52.11,-9,-9,10,1,1,0,0,0,12,2,0,1110,272247.09,212190.84,0,0,1482.1288 -9609,11839,21378,-9,21380,21381,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.9787,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 -9609,11839,21379,-9,21380,21381,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.64874,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 -9609,11839,21380,21381,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.4251919,7.0721936,0,10,-1,116.41013,0,3,-9,2019,20,8,19,25,1,8,0,7.0941963,7.0941963,0,0,0,0,0,1,1,0,0,0,46.72,39.2,41.56,53.91,1.666666666666667,1,1,0,1,6,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 -9609,11839,21381,21380,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,0,0,0,10,1,71.107567,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.56,53.91,46.72,39.2,5,1,1,1,1,9,4,2,0,2196.5,92627.914,5041.3965,0,0,1382.4982 -9610,11840,21382,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6524796,7.9347053,5.5735431,0,0,-1120.5607,0,1,2,2019,10,0,16,17,1,0,0,14.928524,14.928524,0,0,0,0,2,1,1,0,5.0029082,0,48.2,44.16,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,1202,-86450.07,20965.732,0,0,1683.986 -9610,11840,21383,-9,21382,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.2341,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,0,1202,-86450.07,20965.732,0,0,1683.986 -9610,11840,21384,-9,21382,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.07416,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,1202,-86450.07,20965.732,0,0,1683.986 -9611,11841,21385,21386,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.8374653,8.7707329,8,-1,76.680679,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.8966093,8.7407207,39.41,43.9,43.84,58.37,8.333333333333334,1,1,0,0,0,10,5,1,224.5,2424634.3,1768564,573211,0,4615.2861 -9611,11841,21386,21385,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9886889,6.7513361,43,1,-168.84245,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9607079,6.955348,43.84,58.37,39.41,43.9,6.666666666666667,1,1,0,0,7,10,5,1,224.5,2424634.3,1768564,573211,0,4615.2861 -9612,11842,21387,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1134.8002,0,-9,2,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,30.13,29.87,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,646,-275637.19,0,0,0,559.76825 -9613,11843,21388,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.2588229,6.3009806,0,0,-1052.3829,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,42.321117,0,0,1,1,0,0,6.3829799,42.35,36.31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,337,515241.88,141303.3,0,0,867.4068 -9614,11844,21389,-9,21390,21391,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.9163,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,452.33334,387113.38,289907.25,213430.77,114456.48,2740.1379 -9614,11844,21390,21391,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.6243029,8.6793261,0,7,-8,-65.130249,0,1,1,2019,19,9,30,30,1,9,0,19.312748,19.312748,0,0,0,0,0,1,1,0,0,0,36.2,64.19,51.14,60.45,8.333333333333334,1,1,0,0,8,12,4,1,452.33334,387113.38,289907.25,213430.77,114456.48,2740.1379 -9614,11844,21391,21390,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,7.9216418,8.0466671,0,7,8,85.329857,0,2,2,2019,11,0,33,33,1,0,0,7.953023,7.953023,0,0,0,0,0,1,1,0,0,0,51.14,60.45,36.2,64.19,6.666666666666667,1,1,0,0,8,12,4,1,452.33334,387113.38,289907.25,213430.77,114456.48,2740.1379 -9615,11845,21392,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.2657995,7.1604118,0,0,0,-1055.0125,0,-9,-9,2019,10,0,16,46,1,1,0,9.984477,9.984477,0,0,0,0,0,1,1,0,0,0,51,49,-9,-9,7,1,1,0,0,11,9,3,1,672,132327.42,52415.059,0,0,1530.954 -9616,11846,21393,21396,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.9134159,8.9290409,0,10,4,93.318703,0,2,1,2019,7,0,38,38,1,0,0,25.333145,25.333145,0,0,0,0,0,0,0,0,7.6962614,0,52,54.51,43.29,55.57,8.333333333333334,1,1,0,0,11,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 -9616,11846,21394,-9,21396,21393,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.2301,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 -9616,11846,21395,-9,21396,21393,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1170.4114,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 -9616,11846,21396,21393,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.5448284,8.5819654,0,10,-4,-77.574165,0,2,2,2019,10,2,45,45,1,2,0,14.675689,14.675689,0,0,0,0,0,0,0,0,0,0,43.29,55.57,52,54.51,8.333333333333334,1,1,0,0,11,12,5,1,969.25,1256704.4,859734.19,335896.16,104163.39,5031.8364 -9617,11847,21397,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6544991,8.4686098,0,0,0,-1061.1399,0,2,2,2019,3,1,36,36,1,1,0,16.350378,16.350378,0,0,0,0,0,1,1,0,.42070165,0,59.43,49.68,-9,-9,6.666666666666667,1,1,0,0,11,2,5,1,1511,301229.5,-22455.484,45099.977,23474.32,1426.6099 -9618,11848,21398,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.8283911,5.7143259,0,0,-922.53943,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,4.5962944,0,43.205009,0,1,1,0,5.51442,5.6475792,53,47,-9,-9,8,1,1,0,0,0,13,2,1,770,560634,206530.78,0,0,1298.7748 -9619,11849,21399,-9,-9,-9,1,0,36,0,0,0,3,3,-9,0,2,7.8655801,7.5480189,0,0,0,-1046.5513,0,-9,-9,2019,24,9,30,30,1,9,0,10.691822,10.691822,0,0,0,0,0,1,1,0,0,0,30.16,22.85,-9,-9,1.666666666666667,2,3,0,1,6,8,3,0,630,-339958.16,-51087.598,0,0,1164.8351 -9619,11850,21400,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.0516992,6.8518214,0,0,0,-987.79712,0,-9,-9,2019,21,7,16,16,1,7,0,8.4815321,8.4815321,0,0,0,0,0,1,1,0,0,0,31.86,31.76,-9,-9,1.666666666666667,2,3,0,1,2,8,2,0,1734,158629.64,6387.4272,0,0,997.41565 -9620,11851,21401,21402,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.2485294,8.3862629,39,6,77.421112,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.4661341,8.1946077,39.02,48.65,39.74,23.88,6.666666666666667,1,1,0,0,8,8,5,1,727.5,2207365.5,1038350.5,791475.13,0,3687.6958 -9620,11851,21402,21401,-9,-9,1,0,57,0,0,0,1,1,-9,1,1,8.3059874,8.3549385,0,33,-6,100.98705,0,3,3,2019,18,6,45,15,1,6,0,12.608361,12.608361,0,0,0,0,0,1,1,0,0,0,39.74,23.88,39.02,48.65,3.333333333333333,3,4,0,1,11,8,5,1,727.5,2207365.5,1038350.5,791475.13,0,3687.6958 -9621,11852,21403,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1062.7175,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.4596982,0,55.26,55.85,-9,-9,10,1,1,0,0,0,9,1,1,1909,548205.5,0,280226.31,0,768.89258 -9622,11853,21404,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.4093008,8.4119978,7.0765033,0,0,-1047.4906,0,3,3,2019,12,0,37,37,1,0,0,11.339766,11.339766,0,0,0,0,0,1,1,0,0,6.9661727,48.4,29.56,-9,-9,5,1,1,0,1,8,4,5,1,124,1235319.8,771383.69,234941.16,0,1436.3419 -9622,11854,21405,-9,21404,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-955.86414,-9,2,-9,2019,12,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,47.38,49.72,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,376,-28584.357,0,0,0,217.70473 -9623,11855,21406,21407,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,0,0,0,16,-10,0,0,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,1,0,595.5,-213525.81,75147.938,0,0,1368.3887 -9623,11855,21407,21406,-9,-9,1,1,43,0,2,0,2,2,-9,1,4,0,0,0,16,10,0,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,0,8,1,0,595.5,-213525.81,75147.938,0,0,1368.3887 -9624,11856,21408,21409,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.0403519,8.1032572,55,3,-137.26314,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.018743,8.1308622,54.37,54.8,54.72,43.67,8.333333333333334,1,1,0,0,0,1,3,1,829.5,881653.88,534409.25,346447.09,0,2952.7185 -9624,11856,21409,21408,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,55,-3,126.47516,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.2489355,0,54.72,43.67,54.37,54.8,8.333333333333334,1,1,0,0,0,1,3,1,829.5,881653.88,534409.25,346447.09,0,2952.7185 -9625,11857,21410,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.5798969,6.4143515,0,0,-1116.9473,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2311711,6.5384417,59.64,38.61,-9,-9,10,1,1,0,0,0,8,2,1,1354,151304.86,56573.199,448773.59,0,1401.1509 -9626,11858,21411,21413,-9,-9,1,0,31,2,2,0,2,2,-9,0,4,7.5145006,7.6105714,0,4,0,6.4625077,0,2,1,2019,7,1,22,22,1,1,0,9.0111437,9.0111437,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.06,60.24,8.333333333333334,1,1,0,0,8,9,5,1,911.75,353046.47,0,0,0,4239.1831 -9626,11858,21412,-9,21411,21413,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.2732,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,911.75,353046.47,0,0,0,4239.1831 -9626,11858,21413,21411,-9,-9,1,1,31,2,2,0,2,2,-9,0,5,9.1255932,9.1791868,0,4,0,99.160667,0,-9,-9,2019,9,2,60,42,1,2,0,15.936262,15.936262,0,0,0,0,0,1,1,0,0,0,46.06,60.24,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,911.75,353046.47,0,0,0,4239.1831 -9626,11858,21414,-9,21411,21413,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.6569,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,911.75,353046.47,0,0,0,4239.1831 -9627,11859,21415,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.7401719,6.2805586,0,0,-1027.499,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.1784878,6.7248058,64.64,21.97,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,122,387794.63,70790.234,225653.98,0,887.53522 -9628,11860,21416,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.4884233,7.8762693,0,0,0,-1062.4353,0,3,2,2019,8,0,40,35,1,0,0,5.2232656,5.2232656,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,349,735564.69,462832.44,262350.19,0,545.18719 -9629,11861,21417,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,6.8340125,6.6022816,0,0,0,-1003.4067,0,3,2,2019,18,6,11,16,1,6,0,9.912199,9.912199,0,0,0,0,0,0,0,0,7.0773349,0,30.44,42.61,-9,-9,3.333333333333333,1,1,0,0,12,6,2,1,807,367854.81,227155.53,101357.07,0,511.94772 -9630,11862,21418,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6171484,8.9764843,0,0,0,-1049.9261,0,3,3,2019,9,0,45,45,1,0,0,14.824447,14.824447,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,600,451402.09,148753.16,113089.51,95969.352,2780.8826 -9631,11863,21419,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.2612896,7.3410621,6.2531052,0,0,-868.09827,0,-9,-9,2019,14,2,30,28,1,2,0,2.6455338,2.6455338,0,0,0,0,0,0,0,0,2.4795814,6.3489761,35.56,52.74,-9,-9,3.333333333333333,1,1,0,0,11,8,3,1,494,-317899.84,93700.094,0,0,367.46255 -9632,11864,21420,21421,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.2993107,8.2310753,0,8,-3,7.193841,0,1,2,2019,27,11,42,42,1,11,0,8.6575708,8.6575708,0,0,0,0,0,0,0,0,.15534304,0,22.99,61.19,54.37,54.8,6.666666666666667,1,1,0,0,9,4,5,1,1534.5,855175.88,494761.31,140929.92,50303.227,3645.7036 -9632,11864,21421,21420,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.650281,8.7307873,0,8,3,35.332443,0,2,1,2019,9,0,48,42,1,0,0,14.07052,14.07052,0,0,0,0,0,0,0,0,0,0,54.37,54.8,22.99,61.19,8.333333333333334,1,1,0,0,9,4,5,1,1534.5,855175.88,494761.31,140929.92,50303.227,3645.7036 -9633,11865,21422,21423,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.5324888,8.3040066,35,0,-36.567566,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6195316,8.7022343,56.1,49.93,57.33,53.46,8.333333333333334,1,1,0,0,6,12,4,1,814.5,1663041.8,936928.19,248900.05,0,3190.1311 -9633,11865,21423,21422,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.6519737,4.2705808,35,0,-24.75708,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0689995,4.5490675,57.33,53.46,56.1,49.93,10,1,1,0,0,0,12,4,1,814.5,1663041.8,936928.19,248900.05,0,3190.1311 -9634,11866,21424,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.6214366,6.54948,0,0,-984.12585,-9,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,41.354599,0,0,1,1,0,0,6.65766,53,45,-9,-9,8,1,1,0,0,0,11,2,1,228,330860.91,56686.074,39770.09,0,834.74292 -9635,11867,21425,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.7973471,8.7624855,0,0,0,-1096.7092,0,3,3,2019,8,0,60,60,1,0,0,10.215553,10.215553,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,12,6,5,1,209,630158.13,562639.19,0,0,3010.7695 -9636,11868,21426,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.0943313,6.282619,0,0,-999.6463,0,-9,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.0469174,6.2182374,53.78,35.18,-9,-9,5,1,1,0,0,7,8,2,1,1377,170908.92,206969.98,270826.81,0,995.02332 -9637,11869,21427,21428,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.1620865,9.2693262,0,31,0,-32.501575,0,2,3,2019,8,1,42,47,1,1,0,21.113279,21.113279,0,0,0,0,0,0,0,0,8.4496145,0,54.37,54.8,43.63,61.31,8.333333333333334,1,1,0,0,6,10,5,1,1104,853084.13,983966.94,238646.25,156803.72,6493.6626 -9637,11869,21428,21427,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.3342686,8.7218189,0,31,0,-165.7892,0,3,3,2019,13,2,30,50,1,2,0,16.165882,16.165882,0,0,0,0,0,0,0,0,0,0,43.63,61.31,54.37,54.8,6.666666666666667,1,1,0,0,10,10,5,1,1104,853084.13,983966.94,238646.25,156803.72,6493.6626 -9638,11870,21429,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.3613272,7.5883613,0,0,-892.39447,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.176797,7.5302949,58.32,50.22,-9,-9,6.666666666666667,2,3,0,0,7,8,3,1,278,656651.38,195998.55,305028.59,0,1248.7679 -9639,11871,21430,21431,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6334019,7.6961207,39,4,49.872086,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0371933,7.6778183,57.33,53.46,57.16,56.15,10,1,1,0,0,8,12,4,1,789.5,1123382.3,962724,168099.2,9380.5508,2339.5786 -9639,11871,21431,21430,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2738991,7.565794,0,9,-4,-73.176445,0,3,3,2019,6,0,30,30,1,0,0,12.797892,12.797892,0,0,0,0,0,1,1,0,1.3765504,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,1,789.5,1123382.3,962724,168099.2,9380.5508,2339.5786 -9640,11872,21432,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.3650312,5.1024027,0,0,-1229.8339,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3323298,49.07,46.35,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,466,423903.94,0,522831.78,0,1857.6632 -9641,11873,21433,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,5,0,0,0,0,0,-918.0036,0,2,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,27.9,67.39,-9,-9,0,3,4,0,0,0,8,1,0,466.25,0,0,0,0,1641.5585 -9641,11873,21434,-9,21433,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.394,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,466.25,0,0,0,0,1641.5585 -9641,11873,21435,-9,21433,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.87415,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,466.25,0,0,0,0,1641.5585 -9641,11873,21436,-9,21433,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.85162,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,466.25,0,0,0,0,1641.5585 -9642,11874,21437,21438,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,39,-6,-13.999031,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,2.8735993,0,55.19,54.26,48.87,58.55,8.333333333333334,1,1,0,0,0,9,3,1,2689.5,1488422.1,768342.13,356184.09,0,1697.429 -9642,11874,21438,21437,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.1740961,8.1951694,39,6,-38.676922,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.5674288,8.0627661,48.87,58.55,55.19,54.26,8.333333333333334,1,1,0,0,1,9,3,1,2689.5,1488422.1,768342.13,356184.09,0,1697.429 -9643,11875,21439,21443,-9,-9,1,1,49,0,3,0,3,3,-9,0,4,8.4314194,8.5720682,0,6,2,78.010422,0,-9,-9,2019,9,0,40,40,1,1,0,11.247965,11.247965,0,0,0,0,0,1,1,0,0,0,53,55,57.16,56.15,8,4,1,0,0,1,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 -9643,11875,21440,-9,21443,21439,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.2098,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 -9643,11875,21441,-9,21443,21439,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.8533,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 -9643,11875,21442,-9,21443,21439,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.68793,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 -9643,11875,21443,21439,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,7.2555499,7.4019766,0,6,-2,10.400721,0,-9,-9,2019,6,0,21,18,1,0,0,9.3818111,9.3818111,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,55,8.333333333333334,1,1,0,0,6,8,4,1,1007.4,330281.22,-7137.9517,476661.13,161233.84,2763.9771 -9644,11876,21444,-9,21445,21446,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.717,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,1,840,-30203.486,0,0,0,-30.721296 -9644,11876,21445,21446,-9,-9,1,0,22,1,1,0,2,2,-9,1,4,0,0,0,5,-5,78.293076,0,-9,-9,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.09,44.26,58.47,50.22,10,1,1,0,0,4,6,2,1,840,-30203.486,0,0,0,-30.721296 -9644,11876,21446,21445,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,5.8746266,5.6786957,0,5,5,-56.014194,0,-9,-9,2019,9,0,60,55,1,0,0,.98259348,.98259348,0,0,0,0,0,1,1,0,4.6746178,0,58.47,50.22,56.09,44.26,8.333333333333334,1,1,0,0,10,6,2,1,840,-30203.486,0,0,0,-30.721296 -9645,11877,21447,21448,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.1580853,5.3930707,9,-2,67.825668,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5858722,5.0469565,51.01,41.69,57.33,53.46,10,1,1,0,0,1,9,2,1,738.5,490784.31,97199.578,154243.2,0,1471.9114 -9645,11877,21448,21447,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,9,2,82.540039,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.01,41.69,8.333333333333334,1,1,0,0,1,9,2,1,738.5,490784.31,97199.578,154243.2,0,1471.9114 -9646,11878,21449,21450,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,0,8.3252592,8.7321596,41,0,0,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.5986271,0,45.81,61.51,59.19,51.29,8.333333333333334,1,1,0,0,6,4,5,1,739,1276714.5,576951.5,616188.38,246595.78,6117.8145 -9646,11878,21450,21449,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,8.3444147,8.7040672,41,0,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.8032017,0,59.19,51.29,45.81,61.51,8.333333333333334,1,1,0,0,6,4,5,1,739,1276714.5,576951.5,616188.38,246595.78,6117.8145 -9647,11879,21451,21452,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,3,18,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,47.89,29.85,5,1,1,0,1,0,10,2,0,775.5,-104108.2,-12484.502,303893.28,0,1163.6133 -9647,11879,21452,21451,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,0,0,0,3,-18,0,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,47.89,29.85,60.29,52.11,1.666666666666667,1,1,0,1,5,10,2,0,775.5,-104108.2,-12484.502,303893.28,0,1163.6133 -9648,11880,21453,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,9.5858326,9.6442986,0,0,0,-1109.359,0,1,1,2019,8,0,60,55,1,0,0,22.739273,22.739273,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,823,-593827.19,0,0,0,5023.6348 -9648,11881,21454,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.7707624,8.7714367,6.0059114,0,0,-1029.6362,0,-9,-9,2019,11,1,40,42,1,1,0,18.427483,18.427483,0,0,0,0,0,0,0,0,6.5513854,0,28.08,63.9,-9,-9,6.666666666666667,1,1,0,0,3,8,5,0,374,454501.34,60230.844,299178.5,202769.2,2823.157 -9649,11882,21455,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-943.63226,0,3,3,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.55,54.69,-9,-9,3.333333333333333,1,1,1,1,3,4,1,0,199,-89633.031,0,0,0,1314.106 -9650,11883,21456,21457,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.3140073,7.2096586,0,52,-2,-12.757274,0,3,3,2019,9,0,30,30,1,0,0,5.5377345,5.5377345,0,0,0,0,2,1,1,0,0,0,53.47,48.39,35.49,28.44,8.333333333333334,1,1,0,0,9,2,2,1,880,425742.09,185472.3,96578.82,0,2179.0784 -9650,11883,21457,21456,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,3.7026663,3.9109893,52,2,6.3272696,0,3,3,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,3.7318773,35.49,28.44,53.47,48.39,6.666666666666667,1,1,0,0,0,2,2,1,880,425742.09,185472.3,96578.82,0,2179.0784 -9651,11884,21458,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7755795,7.9324036,0,0,0,-1190.4277,0,3,3,2019,17,6,43,30,1,6,0,6.2127085,6.2127085,0,0,0,0,0,0,0,0,1.1217211,0,38.38,56.81,-9,-9,5,1,1,0,0,8,9,3,1,618,-216416.88,126074.69,0,0,684.94928 -9652,11885,21459,21461,21463,-9,1,1,52,0,0,0,1,1,-9,0,4,9.1919451,9.121829,0,34,0,-12.484223,0,2,2,2019,12,0,35,20,1,0,0,41.739281,41.739281,0,0,0,0,27,1,1,0,0,0,51.83,57.2,51.73,58.82,8.333333333333334,1,1,0,0,11,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 -9652,11885,21460,-9,21461,21459,1,1,12,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1020.3358,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 -9652,11885,21461,21459,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.2178774,9.3951197,0,34,0,67.048981,0,2,2,2019,7,0,8,10,1,0,0,120.50024,120.50024,0,0,0,0,118,1,1,0,0,0,51.73,58.82,51.83,57.2,8.333333333333334,1,1,0,0,11,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 -9652,11885,21462,-9,21461,21459,1,1,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1029.3833,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.85,61.26,-9,-9,6.666666666666667,1,1,0,0,0,4,5,1,681.5,3374284.8,2832070,556725.88,99722.422,7746.2959 -9652,11886,21463,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,6.2825327,6.538475,0,0,-860.49481,-9,-9,-9,2019,18,0,0,0,4,5,0,0,0,1,4.7693768,36.808746,49.438477,0,1,1,0,4.7782416,6.4352279,40,22,-9,-9,5,1,1,0,0,0,4,2,1,138,368844.44,0,272073.97,0,963.25287 -9653,11887,21464,21465,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.235158,8.422636,0,11,2,-4.2763214,0,-9,-9,2019,8,0,42,42,1,0,0,11.176042,11.176042,1,0,0,0,0,1,1,0,3.7984045,0,50.41,46.95,51.77,58.57,8.333333333333334,1,1,0,0,12,13,4,1,819,1645175.3,1172523,325177,0,3711.7485 -9653,11887,21465,21464,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.3952303,7.7707853,43,-2,45.651924,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.382925,51.77,58.57,50.41,46.95,8.333333333333334,1,1,0,0,9,13,4,1,819,1645175.3,1172523,325177,0,3711.7485 -9653,11888,21466,-9,21465,21464,1,0,27,0,0,0,1,1,-9,0,4,7.8745012,7.4999447,0,0,0,-881.41736,0,2,2,2019,9,0,35,30,1,0,0,8.5572309,8.5572309,0,0,0,0,0,1,1,0,1.3576944,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,589,330974.97,0,0,0,1219.2047 -9654,11889,21467,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5809541,7.6281886,0,0,-1081.1725,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4379568,7.5773859,60.12,54.8,-9,-9,10,1,1,0,0,9,2,3,1,640,889850.19,293170.91,115348.73,0,415.62558 -9655,11890,21468,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1101.4102,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,3.1276562,7.4965129,22.883261,0,1,1,0,0,0,30.24,36.75,-9,-9,3.333333333333333,4,2,0,0,0,8,2,1,282,199987.06,0,367815.56,0,399.09756 -9656,11891,21469,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.5011001,4.5769353,0,0,-916.5094,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4130816,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,551,99448.32,-127548.41,0,0,426.45169 -9657,11892,21470,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.4966078,7.7507391,0,0,0,-976.57172,0,-9,-9,2019,22,9,29,29,1,9,0,12.860181,12.860181,0,0,0,0,0,0,0,0,0,0,30.33,57.95,-9,-9,5,1,1,0,0,10,13,3,1,903,-110005,47453.234,0,0,1487.8884 -9658,11893,21471,-9,21473,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.8121,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,0,656,-86395.898,0,0,0,2119.6743 -9658,11893,21472,-9,21473,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1020.0107,-9,2,-9,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,55.39,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,656,-86395.898,0,0,0,2119.6743 -9658,11893,21473,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,6.8680439,6.8928227,0,0,0,-921.71619,-9,2,3,2019,12,0,16,0,1,0,0,8.6242371,8.6242371,0,0,0,0,0,1,1,0,0,0,45.71,33.36,-9,-9,3.333333333333333,1,1,0,0,5,6,2,0,656,-86395.898,0,0,0,2119.6743 -9659,11894,21474,21476,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.7896118,9.2578449,0,19,3,52.847012,0,1,2,2019,22,11,38,37,1,11,0,19.278009,19.278009,0,0,0,0,0,1,1,0,0,0,22.14,67.11,40.48,62.56,6.666666666666667,1,1,0,0,7,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 -9659,11894,21475,-9,21474,21476,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6287,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 -9659,11894,21476,21474,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.9643583,8.4039679,0,19,-3,23.389887,0,2,1,2019,18,7,60,50,1,7,0,14.523938,14.523938,0,0,0,0,0,1,1,0,0,0,40.48,62.56,22.14,67.11,8.333333333333334,1,1,0,0,9,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 -9659,11894,21477,-9,21474,21476,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.36505,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,675,709949.88,433052.56,295789.25,178085.81,4631.9116 -9660,11895,21478,21479,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.9684649,7.3607855,9,-1,-45.04562,0,2,2,2019,8,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.626812,7.0094528,56.99,36.18,56.49,28.99,8.333333333333334,1,1,0,1,0,12,2,1,991,379367.56,276681,124083.41,0,1683.6796 -9660,11895,21479,21478,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,9,1,-68.085579,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.49,28.99,56.99,36.18,10,1,1,0,0,0,12,2,1,991,379367.56,276681,124083.41,0,1683.6796 -9661,11896,21480,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-989.30267,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,931,-9595.9951,-22580.014,0,0,260.77457 -9661,11897,21481,-9,21480,-9,1,0,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-978.09698,0,3,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,11,1,0,201,162446.56,0,0,0,846.19861 -9662,11898,21482,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-946.19592,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.94,33.46,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1167,427469.19,0,0,0,1023.6332 -9663,11899,21483,21484,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.413868,8.517725,0,21,5,-47.468914,0,2,-9,2019,7,0,55,50,1,0,0,13.576233,13.576233,0,0,0,0,0,1,1,0,0,0,51.24,58.84,51.88,42.11,1.666666666666667,3,4,0,0,12,8,5,1,493.5,1071947.4,135203.97,564318.63,94552.43,4099.0371 -9663,11899,21484,21483,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6101503,8.4051228,0,9,-5,28.584532,0,-9,-9,2019,11,0,36,36,1,0,0,17.065699,17.065699,0,0,0,0,0,1,1,0,0,0,51.88,42.11,51.24,58.84,5,3,4,0,0,12,8,5,1,493.5,1071947.4,135203.97,564318.63,94552.43,4099.0371 -9663,11900,21485,-9,21483,21484,1,0,18,0,0,0,2,2,1,0,4,6.8016067,7.0168114,0,0,0,-1058.796,-9,1,2,2019,3,0,37,0,1,0,1,2.6556876,2.6556876,0,0,0,0,0,1,1,0,2.8045821,0,57.16,56.15,-9,-9,10,3,4,0,0,1,8,2,1,519,-116809.55,0,0,0,366.34381 -9664,11901,21486,21489,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.1884623,8.2792482,5.5094299,9,-3,34.355171,0,2,2,2019,6,0,40,40,1,0,0,13.302984,13.302984,0,0,0,0,7,1,1,0,6.6886911,0,49.61,57.26,57.06,57.76,8.333333333333334,1,1,0,0,10,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 -9664,11901,21487,-9,21486,21489,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1034.3551,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 -9664,11901,21488,-9,21486,21489,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8805,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 -9664,11901,21489,21486,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.9077392,7.985291,0,9,3,-33.780579,0,-9,-9,2019,6,0,40,45,1,0,0,7.2338195,7.2338195,0,0,0,0,0,1,1,0,.8744601,0,57.06,57.76,49.61,57.26,8.333333333333334,1,1,0,0,10,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 -9664,11901,21490,-9,21486,21489,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-961.5426,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,966.40002,586962.38,407045.19,209693.19,78793.172,3997.2361 -9665,11902,21491,21492,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.6900134,7.743957,7,6,34.668224,0,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4870203,7.7072182,53,47,57.16,56.15,8,1,1,0,0,0,9,3,1,1259,822867.13,458491.19,396278.19,0,2938.876 -9665,11902,21492,21491,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.8525443,6.7095952,41,-6,61.737175,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7951202,6.9106021,57.16,56.15,53,47,8.333333333333334,1,1,0,0,0,9,3,1,1259,822867.13,458491.19,396278.19,0,2938.876 -9666,11903,21493,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.1012969,6.8596625,0,0,-1121.4756,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,2.7966011,0,0,7,1,1,0,0,7.0683613,55.61,37.5,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,2713,275046.84,143623.72,96774.43,0,1674.0679 -9667,11904,21494,21496,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.5281715,8.8332253,0,23,6,-1.3869972,0,3,3,2019,12,1,48,47,1,1,0,13.946434,13.946434,0,0,0,0,0,1,1,0,0,0,41.59,61.77,57.06,57.76,3.333333333333333,1,1,0,0,13,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 -9667,11904,21495,-9,21496,21494,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7575,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 -9667,11904,21496,21494,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,6.8882198,7.2343903,0,21,-6,-75.03273,0,3,2,2019,6,0,30,30,1,0,0,6.3481116,6.3481116,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.59,61.77,8.333333333333334,1,1,0,0,13,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 -9667,11904,21497,-9,21496,21494,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.8726,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,449.5,205409.81,144249.44,202919.72,119898.46,2810.4583 -9668,11905,21498,21499,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,7.339941,6.628778,0,21,-1,-130.35213,0,2,2,2019,12,0,40,40,1,0,0,2.6926584,2.6926584,0,0,0,0,0,1,1,0,0,0,49.72,50.05,50.03,52.62,3.333333333333333,1,1,0,0,9,7,4,0,390.33334,674274.81,3057.1155,552836.31,304204.16,2326.895 -9668,11905,21499,21498,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.1217546,7.9173689,0,19,1,-13.621305,0,2,2,2019,8,1,46,42,1,1,0,6.7553253,6.7553253,0,0,0,0,0,1,1,0,0,0,50.03,52.62,49.72,50.05,3.333333333333333,1,1,0,0,10,7,4,0,390.33334,674274.81,3057.1155,552836.31,304204.16,2326.895 -9668,11905,21500,-9,21498,21499,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1025.9108,-9,2,2,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,0,7,4,0,390.33334,674274.81,3057.1155,552836.31,304204.16,2326.895 -9669,11906,21501,21502,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.8364258,6.8771863,0,41,-3,-45.675072,0,2,2,2019,12,2,14,32,1,2,0,8.4049931,8.4049931,0,0,0,0,0,0,0,0,5.2608328,0,45.01,49.59,32.07,67.69,8.333333333333334,1,1,0,0,11,5,3,1,1247.5,1464842,1064817.5,213013.94,0,2563.7334 -9669,11906,21502,21501,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,7.6140914,8.212822,0,41,3,-30.089764,0,2,1,2019,24,12,30,30,1,12,0,7.1088557,7.1088557,0,0,0,0,0,0,0,0,6.8610187,0,32.07,67.69,45.01,49.59,3.333333333333333,1,1,0,0,10,5,3,1,1247.5,1464842,1064817.5,213013.94,0,2563.7334 -9670,11907,21503,21504,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,8.0493135,7.7456803,0,6,-18,-65.977509,0,-9,-9,2019,12,0,37,37,1,0,0,9.740016,9.740016,0,0,0,0,0,0,0,0,1.7518623,0,40.34,45.5,40.62,51.79,8.333333333333334,2,3,0,0,12,4,4,1,1269,2307518,1465075.9,475695.63,0,2795.554 -9670,11907,21504,21503,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.3022003,7.7775507,0,6,18,-1.0822936,0,2,2,2019,11,2,36,30,1,2,0,10.037952,10.037952,0,0,0,0,2,0,0,0,3.5875919,0,40.62,51.79,40.34,45.5,5,1,1,0,0,12,4,4,1,1269,2307518,1465075.9,475695.63,0,2795.554 -9671,11908,21505,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.2756896,7.3318038,0,0,0,-968.22656,0,3,3,2019,14,2,45,35,1,2,0,4.6758232,4.6758232,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,713,0,0,0,0,785.5166 -9672,11909,21506,21507,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,0,0,16,6,106.62502,-9,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.60691243,0,49,48,48.47,44.25,7,1,1,1,0,9,8,5,1,160.5,2894387,1961132.8,584726.31,0,3655.6367 -9672,11909,21507,21506,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,9.3302097,9.049593,0,16,-6,99.795593,-9,2,2,2019,16,5,50,0,1,5,0,27.071775,27.071775,0,0,0,0,0,0,0,0,3.1933305,0,48.47,44.25,49,48,3.333333333333333,1,1,0,0,9,8,5,1,160.5,2894387,1961132.8,584726.31,0,3655.6367 -9673,11910,21508,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.5154142,7.9921846,0,0,-1017.9197,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0658183,8.542614,56.86,50.75,-9,-9,10,1,1,0,0,3,8,4,1,208,1657992.9,495165.47,250779.81,0,3190.0532 -9674,11911,21509,21510,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.2613287,8.2700882,0,8,-7,23.370325,0,3,3,2019,11,1,38,0,1,1,0,10.149315,10.149315,0,0,0,0,0,0,0,0,0,0,51.41,34.89,59.14,52.5,1.666666666666667,1,1,0,0,8,11,5,1,212.5,248629.09,117401.06,255048.28,107460.08,5814.3779 -9674,11911,21510,21509,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.4404469,9.5505219,0,8,7,-35.052582,0,2,2,2019,6,0,50,50,1,0,0,20.098021,20.098021,0,0,0,0,0,0,0,0,0,0,59.14,52.5,51.41,34.89,8.333333333333334,1,1,0,0,8,11,5,1,212.5,248629.09,117401.06,255048.28,107460.08,5814.3779 -9674,11912,21511,-9,21509,21510,1,1,24,0,0,0,1,1,1,0,5,0,0,0,0,0,-934.22571,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,2,11,1,1,232,-171017.23,0,0,0,0 -9675,11913,21512,21513,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,50,-5,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,51,46,54,46,8,1,1,0,0,0,13,1,1,683,31690.777,0,124712.13,0,2367.4998 -9675,11913,21513,21512,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,50,5,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,51,46,8,1,1,0,0,0,13,1,1,683,31690.777,0,124712.13,0,2367.4998 -9676,11914,21514,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.7146,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.41,16.97,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,237,345686.09,0,263362.63,0,475.75684 -9677,11915,21515,21516,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,7,-1,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5609884,0,52,54.51,49.25,33.22,6.666666666666667,1,1,0,0,0,11,1,1,900,-208162.25,0,0,0,897.49207 -9677,11915,21516,21515,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,7,1,0,0,3,3,2019,9,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3622384,0,49.25,33.22,52,54.51,8.333333333333334,1,1,0,0,8,11,1,1,900,-208162.25,0,0,0,897.49207 -9678,11916,21517,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,8.3429489,7.7960658,0,0,-997.73218,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,5.9112802,0,66.935654,0,1,1,0,0,7.8562446,52.58,50.04,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,650,1031686.3,305778.41,208652.97,0,2378.5894 -9679,11917,21518,-9,21520,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.2396,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,0,632.33331,402066.09,79942.602,224484.03,0,1953.8015 -9679,11917,21519,-9,21520,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-884.72333,-9,1,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,3,0,632.33331,402066.09,79942.602,224484.03,0,1953.8015 -9679,11917,21520,-9,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,7.6558399,7.8989282,0,0,0,-1060.8363,0,2,2,2019,9,0,16,18,1,0,0,17.127937,17.127937,0,0,0,0,0,1,1,0,0,0,46.88,60.96,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,632.33331,402066.09,79942.602,224484.03,0,1953.8015 -9680,11918,21521,21522,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.7113447,8.4074411,0,7,3,-82.803596,0,2,2,2019,8,0,35,35,1,0,0,15.379531,15.379531,0,0,0,0,0,1,1,0,0,0,60.92,38.04,55.94,47.09,8.333333333333334,1,1,0,0,7,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 -9680,11918,21522,21521,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,0,0,7,-3,-103.44463,0,2,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,55.94,47.09,60.92,38.04,6.666666666666667,1,1,0,0,6,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 -9680,11918,21523,-9,21522,21521,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.00366,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 -9680,11918,21524,-9,21522,21521,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.68427,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,1027.75,-176802.69,-15183.025,0,0,2282.8711 -9681,11919,21525,21526,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-48.631947,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3627243,0,56.52,48.31,58.5,44.67,8.333333333333334,1,1,0,0,0,1,3,1,404.5,1243308.8,446178.84,398366.72,0,1994.7606 -9681,11919,21526,21525,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.270134,8.1249123,54,3,19.47958,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,.5020209,0,1,1,0,1.0959108,8.3476591,58.5,44.67,56.52,48.31,8.333333333333334,1,1,0,0,0,1,3,1,404.5,1243308.8,446178.84,398366.72,0,1994.7606 -9682,11920,21527,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.291399,8.1866894,0,0,-977.85815,0,2,2,2019,5,0,0,41,4,0,0,0,0,0,0,0,0,0,1,1,0,2.507926,8.1720142,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,1661,188885.72,-53960.367,0,0,1865.3132 -9682,11921,21528,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.0174241,5.1549678,0,0,-1095.5967,-9,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.1025553,49,48,-9,-9,7,1,1,0,0,0,2,2,1,358,337127.84,82132.125,0,0,1801.8245 -9683,11922,21529,21530,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.0421734,9.0653334,0,6,0,-108.50991,0,2,1,2019,13,1,45,38,1,1,0,19.589359,19.589359,0,0,0,0,2,1,1,0,7.1404638,0,38.59,60.85,54.2,57.49,8.333333333333334,1,1,0,0,7,10,4,1,773.66669,952212.13,556909.94,285739.5,155244.77,3288.8328 -9683,11922,21530,21529,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,0,0,0,6,0,-58.082962,0,2,1,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,.92306978,0,54.2,57.49,38.59,60.85,6.666666666666667,1,1,0,0,6,10,4,1,773.66669,952212.13,556909.94,285739.5,155244.77,3288.8328 -9683,11922,21531,-9,21530,21529,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-900.64832,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,773.66669,952212.13,556909.94,285739.5,155244.77,3288.8328 -9684,11923,21532,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.8321867,8.6699114,0,0,0,-1027.8567,0,-9,-9,2019,12,4,35,35,1,4,0,19.10923,19.10923,0,0,0,0,0,0,0,0,2.7597764,0,22.02,51.31,-9,-9,6.666666666666667,1,1,0,0,7,2,5,1,557,30024.479,26444.939,0,0,2702.1665 -9685,11924,21533,-9,21534,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7868,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 -9685,11924,21534,-9,-9,-9,1,0,36,0,3,0,1,1,-9,1,2,0,0,0,0,0,-1024.0391,0,2,2,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,47.58,47.46,-9,-9,8.333333333333334,3,4,0,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 -9685,11924,21535,-9,21534,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.10016,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 -9685,11924,21536,-9,21534,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.90363,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,1,0,807.5,-52186.129,46044.652,0,0,1614.9762 -9686,11925,21537,21538,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.9205275,8.9717503,0,11,7,116.54186,0,-9,-9,2019,6,0,39,-9,1,0,0,22.080858,22.080858,0,0,0,0,0,0,0,0,0,0,52.6,52.88,60.29,52.11,8.333333333333334,1,1,0,0,12,4,5,0,690,1618233,315491.75,131316.56,0,4040.7822 -9686,11925,21538,21537,-9,-9,1,0,43,0,0,0,3,3,-9,0,3,7.3839593,7.3334379,0,11,-7,-66.342445,0,2,3,2019,10,0,18,18,1,0,0,10.351089,10.351089,0,0,0,0,0,0,0,0,1.4617172,0,60.29,52.11,52.6,52.88,6.666666666666667,1,1,0,0,13,4,5,0,690,1618233,315491.75,131316.56,0,4040.7822 -9687,11926,21539,-9,21542,21541,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.6926,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 -9687,11926,21540,-9,21542,21541,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.2792,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 -9687,11926,21541,21542,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.8276463,8.6619205,0,11,4,-19.42462,0,2,1,2019,9,0,46,43,1,1,0,11.488291,11.488291,0,0,0,0,0,1,1,0,0,0,52,56,43.09,57.04,8,1,1,0,0,11,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 -9687,11926,21542,21541,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.6023979,8.9151316,0,13,-4,-160.1561,0,2,3,2019,9,0,50,55,1,0,0,12.104399,12.104399,0,0,0,0,2,1,1,0,0,0,43.09,57.04,52,56,10,2,3,0,0,11,6,5,1,1506,1246789,1320177.6,550566.75,198758.55,4102.7173 -9688,11927,21543,21544,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.8657823,7.6999121,0,9,0,-90.463814,0,3,3,2019,11,0,30,30,1,0,0,10.871793,10.871793,0,0,0,0,0,0,0,0,0,0,52.08,55.93,60.06,39.82,8.333333333333334,1,1,0,0,6,9,4,1,1742,1975878.6,691846.13,666145.31,0,2376.9961 -9688,11927,21544,21543,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.8488235,7.8410025,5.4707665,9,0,47.126823,0,3,3,2019,8,0,38,38,1,0,0,9.5852757,9.5852757,0,0,0,0,5.48,0,0,0,0,5.4936013,60.06,39.82,52.08,55.93,8.333333333333334,1,1,0,0,10,9,4,1,1742,1975878.6,691846.13,666145.31,0,2376.9961 -9689,11928,21545,-9,21546,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.49658,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,657,-24778.309,0,0,0,1303.4263 -9689,11928,21546,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,7.2499599,7.2228484,0,0,0,-1069.7743,0,-9,-9,2019,15,4,6,18,1,4,0,26.682573,26.682573,0,0,0,0,0,1,1,0,0,0,51.98,54.53,-9,-9,8.333333333333334,2,3,0,0,6,5,2,1,657,-24778.309,0,0,0,1303.4263 -9689,11929,21547,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.6649342,8.5163031,0,0,0,-1170.9938,-9,-9,-9,2019,14,3,50,0,1,3,0,12.268544,12.268544,0,0,0,0,0,1,1,0,0,0,54.34,53.29,-9,-9,5,2,3,0,0,1,5,4,1,488,-268859.63,4427.0635,174691.64,152376,1106.5261 -9690,11930,21548,21549,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.0657701,2.2703695,7,5,217.54665,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2468135,2.3201616,46.22,29.37,58.91,32.18,5,1,1,0,0,0,4,2,1,1129,0,0,0,0,1518.9194 -9690,11930,21549,21548,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-5,31.583887,0,3,3,2019,9,1,0,8,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,58.91,32.18,46.22,29.37,8.333333333333334,1,1,0,0,9,4,2,1,1129,0,0,0,0,1518.9194 -9691,11931,21550,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.6337514,7.8493514,0,0,-1023.2352,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1464329,8.0019178,51.83,57.2,-9,-9,1.666666666666667,1,1,0,0,9,2,3,1,400,111677.2,357613.59,122831.85,0,1651.0967 -9692,11932,21551,21552,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,9.8527126,9.9229012,0,17,-1,-155.33575,0,2,1,2019,9,0,50,60,1,0,0,36.592445,36.592445,0,0,0,0,0,0,0,0,0,0,46.5,58.26,55.79,52.62,5,1,1,0,0,10,6,5,1,626.5,431978.19,429809.97,256586.84,201380.86,11120.658 -9692,11932,21552,21551,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.7230186,9.9061165,6.8164468,17,1,-4.2069244,0,3,2,2019,5,0,10,40,1,0,0,146.98482,146.98482,0,0,0,0,0,0,0,0,6.9589396,7.5693207,55.79,52.62,46.5,58.26,8.333333333333334,1,1,0,0,8,6,5,1,626.5,431978.19,429809.97,256586.84,201380.86,11120.658 -9693,11933,21553,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.8673263,7.9828134,0,0,0,-885.62817,-9,1,1,2019,20,9,40,0,1,9,0,7.7944112,7.7944112,0,0,0,0,0,1,1,0,7.2487926,0,44.54,51.64,-9,-9,3.333333333333333,1,1,0,1,12,11,4,1,737,129091.28,171623.66,0,0,1963.6602 -9694,11934,21554,21556,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.2207193,8.2689009,0,3,-1,0,0,-9,-9,2019,9,0,37,38,1,1,0,11.498317,11.498317,0,0,0,0,0,1,1,0,0,0,51,56,46,61.6,8,1,1,0,0,9,13,4,1,496.66666,-103561.19,95674.25,266224,210798.39,3027.7754 -9694,11934,21555,-9,21556,21554,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.7202,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,496.66666,-103561.19,95674.25,266224,210798.39,3027.7754 -9694,11934,21556,21554,-9,-9,1,0,40,1,1,0,2,2,-9,0,5,8.164402,8.227128,0,3,1,0,0,2,3,2019,11,0,30,38,1,0,0,16.107599,16.107599,0,0,0,0,0,1,1,0,0,0,46,61.6,51,56,8.333333333333334,1,1,0,0,6,13,4,1,496.66666,-103561.19,95674.25,266224,210798.39,3027.7754 -9695,11935,21557,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,7.6545782,8.0591602,0,0,-1138.8385,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.746098,7.8365583,52.36,37.07,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,596,531561.31,486264.59,69795.961,52578.828,632.42249 -9696,11936,21558,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.8081169,8.8532848,0,0,0,-1019.9131,0,2,2,2019,11,0,55,58,1,0,0,13.205714,13.205714,0,0,0,0,0,0,0,0,0,0,52.42,39.66,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,1508,187334.25,203643.78,95218.664,73666.594,2109.2197 -9697,11937,21559,-9,21560,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.4446,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,325.66666,30727.818,0,0,0,1506.4314 -9697,11937,21560,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,6.8935761,7.0429735,0,0,0,-982.26251,0,3,3,2019,11,0,16,16,1,0,0,6.9734559,6.9734559,0,0,0,0,0,1,0,1,0,0,37.28,55.9,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,325.66666,30727.818,0,0,0,1506.4314 -9697,11937,21561,-9,21560,-9,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.10797,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,4,2,0,325.66666,30727.818,0,0,0,1506.4314 -9698,11938,21562,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,7.80159,7.9814496,0,0,0,-1013.6009,-9,1,2,2019,9,0,46,0,1,0,0,7.3139825,7.3139825,0,0,0,0,0,0,0,0,3.393337,0,44.3,58.08,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,385,0,0,0,0,1288.0657 -9699,11939,21563,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,2,7.528007,7.5074763,0,0,0,-1061.6802,0,-9,-9,2019,10,1,60,22,1,1,0,4.6193428,4.6193428,0,0,0,0,14.5,1,0,1,0,0,49.34,38.62,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,1405,-183550.86,-6574.1689,0,0,983.66602 -9699,11939,21564,-9,21563,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.35492,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,1405,-183550.86,-6574.1689,0,0,983.66602 -9700,11940,21565,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,5.5783653,5.9466887,0,0,-1119.058,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.3759723,48.78,14.45,-9,-9,3.333333333333333,1,1,0,1,7,11,2,1,165,166560.34,174673.55,104095.08,0,1126.7588 -9701,11941,21566,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.6254578,8.6458111,0,0,0,-1027.0281,0,3,3,2019,6,0,35,35,1,0,0,18.568159,18.568159,0,0,0,0,0,0,0,0,4.1024494,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,671,743420.75,714265.56,162706.27,17398.928,1675.1943 -9702,11942,21567,21569,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,9.1938009,9.4174356,0,9,6,-43.431614,0,2,2,2019,20,8,58,72,1,8,0,12.854924,12.854924,0,0,0,0,0,1,1,0,.92698359,0,31.36,49.5,40.18,46.39,3.333333333333333,1,1,0,0,10,10,5,1,586.66669,1086181.8,916764.56,281109.97,54343.742,3901.0549 -9702,11942,21568,-9,21569,21567,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1068.1738,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.428591,0,54.34,53.29,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,586.66669,1086181.8,916764.56,281109.97,54343.742,3901.0549 -9702,11942,21569,21567,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.7319441,7.693337,0,9,-6,-3.7759864,0,2,1,2019,15,3,28,34,1,3,0,8.096693,8.096693,0,0,0,0,0,1,1,0,.04631374,0,40.18,46.39,31.36,49.5,8.333333333333334,1,1,0,0,10,10,5,1,586.66669,1086181.8,916764.56,281109.97,54343.742,3901.0549 -9702,11943,21570,-9,21569,21567,1,0,21,0,0,0,2,2,-9,0,2,0,0,0,0,0,-998.73779,1,2,2,2019,8,0,0,38,2,0,1,0,0,0,0,0,0,0,1,1,0,2.5897124,0,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,348,-66703.93,0,0,0,-162.98943 -9703,11944,21571,-9,21573,21572,1,0,16,0,2,0,2,2,-9,1,2,0,0,0,0,0,-920.5022,-9,3,3,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.47,42.95,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 -9703,11944,21572,21573,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,7.6020823,7.5504575,0,29,1,74.015495,0,3,3,2019,12,0,24,24,1,0,0,9.1663723,9.1663723,0,0,0,0,74.5,1,0,1,0,0,39.89,42.29,43.5,39.76,5,1,1,0,0,11,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 -9703,11944,21573,21572,-9,-9,1,0,49,0,2,0,3,3,-9,1,5,0,0,0,29,-1,-28.369545,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,120,1,0,1,0,0,43.5,39.76,39.89,42.29,1.666666666666667,1,1,0,0,0,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 -9703,11944,21574,-9,21573,21572,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.2632,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,2,0,427.75,2375036,85813.961,1005414.8,0,3904.022 -9703,11945,21575,-9,21573,21572,1,1,23,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1034.1924,0,3,3,2019,34,11,0,0,3,11,1,0,0,0,0,0,0,7,1,0,1,4.5897841,0,37.03,41.77,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,1654,193361.17,0,0,0,600.43756 -9704,11946,21576,21577,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.9053264,8.3378448,0,33,0,44.726284,0,3,3,2019,7,0,40,27,1,0,0,6.7846265,6.7846265,0,0,0,0,7,0,0,0,0,0,58.05,54.52,52.54,48.71,8.333333333333334,1,1,0,0,12,10,5,1,425.5,1017753.6,172100.67,539558.38,0,4544.0249 -9704,11946,21577,21576,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.1836271,9.1554556,0,33,0,70.729912,0,2,3,2019,10,1,47,48,1,1,0,19.669722,19.669722,0,0,0,0,0,0,0,0,0,0,52.54,48.71,58.05,54.52,8.333333333333334,1,1,0,0,8,10,5,1,425.5,1017753.6,172100.67,539558.38,0,4544.0249 -9704,11947,21578,-9,21576,21577,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-859.97418,0,1,2,2019,16,4,0,39,3,4,1,0,0,0,0,0,0,2,0,0,0,0,0,49.06,58.64,-9,-9,8.333333333333334,1,1,1,0,5,10,1,1,3249,-104561.21,0,0,0,0 -9705,11948,21579,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7243938,8.3859797,0,0,0,-970.59607,0,3,3,2019,10,0,41,42,1,0,0,15.040729,15.040729,0,0,0,0,0,1,1,0,6.022429,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,1425,1216730.1,551479.44,393173.34,52531.879,1587.8319 -9706,11949,21580,-9,-9,-9,1,0,41,0,2,0,2,2,-9,1,2,7.6089959,7.7065487,0,0,0,-1086.8667,0,1,-9,2019,23,9,21,37,1,9,0,9.4479866,9.4479866,0,0,0,0,2,1,1,0,0,0,40.77,30.45,-9,-9,6.666666666666667,3,4,0,0,12,8,2,0,1473,310540.47,-4929.1382,203241.78,135234.63,2205.1953 -9707,11950,21581,-9,21583,21582,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-917.78894,-9,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,4,2,0,0,1,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 -9707,11950,21582,21583,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.5491138,7.4849133,0,10,-2,107.08748,0,2,2,2019,9,0,30,30,1,0,0,6.6412783,6.6412783,0,0,0,0,0,1,1,0,1.9329693,0,51.83,57.2,47,50,8.333333333333334,1,1,0,0,11,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 -9707,11950,21583,21582,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.7855797,8.6864061,0,10,2,-67.432259,0,1,1,2019,12,0,14,30,1,2,0,48.456432,48.456432,0,0,0,0,2,1,1,0,7.1025352,0,47,50,51.83,57.2,7,4,2,0,0,11,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 -9707,11950,21584,-9,21583,21582,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-931.92694,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,4,1,322.5,-121008.71,43361.035,377183.97,322888,4059.6274 -9707,11951,21585,-9,21583,21582,1,0,19,0,1,0,2,2,-9,0,4,7.7051415,7.9939814,0,0,0,-974.18011,0,1,2,2019,14,5,46,8,1,5,1,5.6903701,5.6903701,0,0,0,0,0,1,1,0,0,0,32.34,58.16,-9,-9,8.333333333333334,4,2,0,0,2,7,3,1,1009,-360812.72,-21197.004,0,0,1265.2756 -9708,11952,21586,21587,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.4086556,5.1574731,61,0,-33.309875,0,3,3,2019,14,5,0,0,4,5,0,0,0,1,0,1.8501927,0,71.5,1,1,0,0,4.691144,26.98,48.6,35.93,24.23,5,1,1,0,0,0,2,2,1,1174,397401.44,197335.31,201907.5,0,1816.167 -9708,11952,21587,21586,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.1095061,6.7613473,61,0,-162.96399,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.0065422,35.93,24.23,26.98,48.6,1.666666666666667,1,1,0,0,0,2,2,1,1174,397401.44,197335.31,201907.5,0,1816.167 -9709,11953,21588,21589,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.4161716,6.5853906,35,-5,4.3488574,0,3,2,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6510482,6.6979904,59.6,46.99,57.33,53.46,8.333333333333334,1,1,0,0,12,9,2,1,3103.5,1563359.5,272690.94,484098.13,0,1265.7808 -9709,11953,21589,21588,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,35,5,-38.765015,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3985329,0,57.33,53.46,59.6,46.99,8.333333333333334,1,1,0,0,0,9,2,1,3103.5,1563359.5,272690.94,484098.13,0,1265.7808 -9710,11954,21590,21591,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.0267596,6.8678617,0,33,0,-116.71485,0,3,3,2019,12,0,20,24,1,0,0,6.4464722,6.4464722,0,0,0,0,0,1,1,0,0,0,43.06,45.22,44.92,45.77,3.333333333333333,2,3,0,0,9,5,3,1,317.33334,366401.13,-40049.391,76375.289,1849.3018,1733.7659 -9710,11954,21591,21590,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,7.1909757,7.1466026,0,33,0,-44.438908,0,3,3,2019,6,0,20,24,1,0,0,7.2337227,7.2337227,0,0,0,0,0,1,1,0,0,0,44.92,45.77,43.06,45.22,5,2,3,0,0,9,5,3,1,317.33334,366401.13,-40049.391,76375.289,1849.3018,1733.7659 -9710,11954,21592,-9,21590,21591,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1024.9335,-9,3,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,-9,-9,5,2,3,0,0,0,5,3,1,317.33334,366401.13,-40049.391,76375.289,1849.3018,1733.7659 -9711,11955,21593,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,6.9641685,7.0883808,0,0,0,-1081.52,0,3,3,2019,30,12,20,20,1,12,0,7.2548442,7.2548442,0,0,0,0,0,1,1,0,0,0,24.82,48.65,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,1072,19141.219,38171.977,0,0,565.74622 -9712,11956,21594,-9,-9,-9,1,0,60,0,0,0,1,1,-9,1,1,0,0,0,0,0,-999.93988,-9,3,3,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,0,1,1,0,1,0,11,1,0,289,449100.94,73768.492,7711.9814,0,1703.9081 -9712,11957,21595,-9,21594,-9,1,1,24,0,0,0,2,2,0,0,3,0,0,0,0,0,-892.23572,-9,1,-9,2019,22,10,0,0,2,10,1,0,0,0,0,0,0,120,1,1,0,0,0,18.79,62.96,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,469,-247822.48,0,0,0,712.8114 -9713,11958,21596,21597,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.8650513,7.7735548,0,1,0,-14.279166,-9,-9,-9,2019,13,4,40,0,1,4,0,9.1466913,9.1466913,0,0,0,0,0,0,0,0,0,0,52.64,30.25,48.45,51.96,8.333333333333334,1,1,0,0,4,5,3,1,494.5,232918.89,-13476.336,225552.13,0,1839.2678 -9713,11958,21597,21596,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,6.3917422,6.3217626,0,1,0,-26.582178,-9,3,3,2019,15,4,10,0,1,4,0,6.7298799,6.7298799,0,0,0,0,116,0,0,0,4.5748644,0,48.45,51.96,52.64,30.25,5,1,1,0,0,8,5,3,1,494.5,232918.89,-13476.336,225552.13,0,1839.2678 -9713,11959,21598,-9,21597,21596,1,1,21,0,1,0,2,2,-9,0,3,7.3865981,7.1892214,0,0,0,-966.03107,-9,3,2,2019,8,0,9,0,1,0,1,24.902517,24.902517,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,5,3,1,742,0,0,0,0,972.2605 -9713,11960,21599,-9,21597,21596,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-993.06946,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,5,1,1,512,-377043.09,0,0,0,0 -9714,11961,21600,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,4,0,7.6571393,7.6818366,0,0,-945.05603,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.6024742,45.01,57.46,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,273,201510.42,86299.453,0,0,1904.7966 -9715,11962,21601,-9,21603,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.2729,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1515.3334,217059.88,125007.72,281074.13,136266.22,3006.0928 -9715,11962,21602,-9,21603,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.2694,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1515.3334,217059.88,125007.72,281074.13,136266.22,3006.0928 -9715,11962,21603,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.9509783,8.7943268,0,0,0,-1028.8304,0,2,2,2019,9,0,15,55,1,0,0,44.476269,44.476269,0,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,11,11,4,1,1515.3334,217059.88,125007.72,281074.13,136266.22,3006.0928 -9716,11963,21604,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.6792345,7.8129997,0,0,-1068.6241,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.3548784,48.87,58.55,-9,-9,5,1,1,0,0,4,11,3,1,146,583003.94,456348.09,0,0,1435.2551 -9717,11964,21605,21606,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.0645838,8.1955862,0,6,-5,-7.8244147,0,2,2,2019,7,0,27,35,1,0,0,20.646492,20.646492,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.73,54.53,10,1,1,0,0,7,11,5,1,510.5,1021556.1,1067632.1,201938.88,60486.801,4468.1631 -9717,11964,21606,21605,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.9014835,9.2620344,0,6,5,-63.477497,0,2,2,2019,4,0,37,38,1,0,0,25.260197,25.260197,0,0,0,0,0,0,0,0,6.9566069,0,57.73,54.53,58.15,52.91,0,1,1,0,0,7,11,5,1,510.5,1021556.1,1067632.1,201938.88,60486.801,4468.1631 -9717,11965,21607,-9,21606,21605,1,1,20,0,0,0,2,2,-9,0,4,7.6534529,7.5251236,0,0,0,-1015.3739,0,1,2,2019,8,0,44,37,1,0,1,4.8468037,4.8468037,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,704,-25759.771,0,0,0,1057.1022 -9717,11966,21608,-9,21606,21605,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-961.02911,1,1,2,2019,10,0,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,11,1,1,1228,-428919.09,0,0,0,0 -9718,11967,21609,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,9.3873653,8.8087015,6.0387301,0,0,-978.47443,0,2,2,2019,10,0,70,65,1,0,0,15.877383,15.877383,0,0,0,0,0,1,1,0,7.7881289,6.5310035,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,312,-215348.41,-50191.035,0,0,4582.1006 -9719,11968,21610,21611,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,33,0,4.0245423,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.67,57.49,8,2,3,0,0,0,9,5,1,96.5,1054950,496901.34,344860.06,147350.13,2522.6506 -9719,11968,21611,21610,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.9285975,8.9931774,0,9,0,91.995163,0,-9,-9,2019,8,0,41,40,1,0,0,23.540131,23.540131,0,0,0,0,0,0,0,0,1.1931032,0,54.67,57.49,50,55,6.666666666666667,2,3,0,0,11,9,5,1,96.5,1054950,496901.34,344860.06,147350.13,2522.6506 -9720,11969,21612,-9,-9,-9,1,0,91,0,0,0,1,1,-9,0,3,0,10.083838,9.9251299,0,0,-1030.8291,0,3,1,2019,10,0,0,0,4,1,0,0,0,1,1.3450992,45.942684,21.890545,0,1,1,0,0,10.017169,53,44,-9,-9,8,2,3,0,0,0,8,5,1,374,1007969.1,557186.75,133627.73,0,13071.799 -9721,11970,21613,21614,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,53,1,39.411228,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,3.9277365,0,0,1,1,0,0,0,55.83,39.43,39.15,30.9,8.333333333333334,1,1,0,0,0,10,2,1,604.5,-45844.832,193735.84,141993.69,0,975.38019 -9721,11970,21614,21613,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.2405691,5.5731072,53,-1,52.141655,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.5274758,39.15,30.9,55.83,39.43,3.333333333333333,1,1,0,0,0,10,2,1,604.5,-45844.832,193735.84,141993.69,0,975.38019 -9721,11971,21615,-9,21613,21614,1,1,47,0,0,0,3,3,-9,0,1,8.0704813,7.8962016,0,0,0,-941.2691,-9,3,3,2019,20,5,38,0,1,5,0,8.4401121,8.4401121,0,0,0,0,0,1,1,0,0,0,21.98,40.05,-9,-9,3.333333333333333,1,1,0,0,10,10,4,1,2202,1327356.3,106971.45,473404.81,0,1965.0701 -9722,11972,21616,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,6.505733,7.2545877,6.8624511,0,0,-998.23297,0,2,2,2019,13,3,21,19,1,3,0,4.4767456,4.4767456,0,0,0,0,0,1,0,1,6.2577786,0,34.94,53.21,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,2209,480830.5,0,52807.137,19554.936,1186.2631 -9723,11973,21617,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,6.7215919,6.6488986,0,0,-959.6828,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1391702,7.0243578,57.06,57.76,-9,-9,10,1,1,0,0,0,10,2,1,1907,180124.83,99161.164,0,0,1420.5592 -9724,11974,21618,21619,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.284009,8.0058689,0,38,-4,-113.74738,0,-9,-9,2019,12,0,50,45,1,0,0,9.016448,9.016448,0,0,0,0,0,0,0,0,3.4702098,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,13,2,5,1,553,845966.38,282636.31,336861.16,0,4412.0479 -9724,11974,21619,21618,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,8.4070501,8.8747578,7.3901649,39,4,-16.555025,0,3,2,2019,2,0,49,39,1,0,0,7.4382148,7.4382148,0,0,0,0,0,0,0,0,3.8942065,7.446095,57.06,57.76,57.33,53.46,10,1,1,0,0,13,2,5,1,553,845966.38,282636.31,336861.16,0,4412.0479 -9724,11975,21620,-9,21618,21619,1,1,25,0,0,0,2,2,-9,0,4,8.6661921,8.4640131,0,0,0,-982.44678,0,2,2,2019,6,0,54,39,1,0,1,14.674635,14.674635,0,0,0,0,0,0,0,0,.66447401,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,767,554204,62213.527,0,0,2007.0931 -9725,11976,21621,21622,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.259892,6.5954008,10,5,-42.678268,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.5628681,6.5353236,55.36,54.24,57.06,57.76,10,1,1,0,0,0,11,3,0,743.5,792981.31,301782.44,409108.72,0,3168.7407 -9725,11976,21622,21621,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,7.1715684,7.7523737,10,-5,-169.89243,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4828024,7.6864166,57.06,57.76,55.36,54.24,10,1,1,0,0,0,11,3,0,743.5,792981.31,301782.44,409108.72,0,3168.7407 -9726,11977,21623,21624,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,6,-3,85.938072,0,-9,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.71,27.21,53.43,31.34,5,2,3,0,1,0,5,3,1,323.5,943487.31,143673.31,174403.25,33724.379,2183.2739 -9726,11977,21624,21623,-9,21627,1,1,53,0,0,0,2,2,-9,0,2,7.6150126,7.5222526,0,34,3,6.7329192,-9,-9,3,2019,10,0,16,0,1,0,0,14.697451,14.697451,0,0,0,0,0,1,1,0,0,0,53.43,31.34,41.71,27.21,8.333333333333334,2,3,0,0,9,5,3,1,323.5,943487.31,143673.31,174403.25,33724.379,2183.2739 -9726,11978,21625,-9,21623,21624,1,1,22,0,0,0,2,2,-9,0,3,8.0781851,8.0254469,0,0,0,-995.58661,0,3,2,2019,7,1,38,53,1,1,1,7.4430847,7.4430847,0,0,0,0,2,1,1,0,.3447164,0,58.32,50.22,-9,-9,6.666666666666667,2,3,0,0,6,5,3,1,272,261186.72,7638.8115,0,0,1591.4457 -9726,11979,21626,-9,21623,21624,1,0,21,0,0,0,2,2,-9,0,4,7.9207873,7.8459373,0,0,0,-954.38629,0,2,2,2019,25,11,38,40,1,11,1,7.6443844,7.6443844,0,0,0,0,7,1,1,0,0,0,21.14,57.91,-9,-9,1.666666666666667,2,3,0,0,4,5,3,1,679,164880.05,0,0,0,415.3587 -9726,11980,21627,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.27435,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,71.101486,0,0,1,1,0,7.3025661,0,55,45,-9,-9,8,2,3,0,0,0,5,1,1,815,356968.28,0,83588.094,0,4057.5811 -9727,11981,21628,21630,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,7.3235908,7.498281,0,18,-15,-5.9572835,0,1,1,2019,5,0,22,5,1,0,0,7.5659366,7.5659366,0,0,0,0,0,1,1,0,4.4229908,0,57.73,54.53,59.46,46.99,10,1,1,0,0,7,7,2,1,1243.6666,1804156.8,663892.94,398741.72,0,1447.0417 -9727,11981,21629,-9,21628,21630,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.3262,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,1243.6666,1804156.8,663892.94,398741.72,0,1447.0417 -9727,11981,21630,21628,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,0,5.0315852,5.1806183,18,15,-151.10539,0,2,2,2019,10,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4834905,5.1621323,59.46,46.99,57.73,54.53,8.333333333333334,1,1,0,0,9,7,2,1,1243.6666,1804156.8,663892.94,398741.72,0,1447.0417 -9728,11982,21631,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.7201939,9.45397,0,0,0,-908.4649,-9,-9,-9,2019,11,0,50,0,1,0,0,30.731171,30.731171,0,0,0,0,0,0,0,0,2.1073935,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,3,8,5,0,367,28665.457,32560.531,0,0,4105.4355 -9728,11983,21632,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,9.5819139,9.512764,0,0,0,-920.16272,0,1,1,2019,12,4,65,65,1,4,0,29.717392,29.717392,0,0,0,0,0,0,0,0,0,0,40.36,65.29000000000001,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,602,-4822.498,-88675.203,0,0,9465.2314 -9729,11984,21633,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-905.26013,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.69,39.98,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1320,-171300.42,0,0,0,1520.5204 -9730,11985,21634,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.5229206,8.2749338,0,0,0,-1083.2311,0,3,3,2019,7,0,35,37,1,0,0,16.36768,16.36768,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,109,4800450,3723873.5,1108631.6,532540.38,1957.272 -9731,11986,21635,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0971518,8.1215878,0,0,0,-917.53497,0,3,2,2019,13,3,35,32,1,3,0,7.9945107,7.9945107,0,0,0,0,0,0,0,0,.15202491,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,769,378338.38,0,137834.88,0,1229.1448 -9732,11987,21636,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,1,7.3641939,7.4933181,0,0,0,-1024.5979,0,3,2,2019,26,9,42,38,1,9,0,5.2415237,5.2415237,0,0,0,0,2,1,1,0,.76659459,0,15.83,46.15,-9,-9,0,3,4,0,0,7,8,3,0,171,-19115.811,0,0,0,1240.5814 -9733,11988,21637,21638,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,8.2341795,8.1112518,0,8,-7,-29.866257,0,2,3,2019,12,0,27,18,1,2,0,14.432213,14.432213,0,0,0,0,0,0,0,0,1.1760781,0,34.74,55.63,36.71,57.52,8.333333333333334,1,1,0,0,10,4,5,0,563,-3726.3789,43280.43,139900.72,103387.36,5583.082 -9733,11988,21638,21637,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,8.8442564,9.2616549,0,8,7,-140.06413,0,-9,-9,2019,7,0,40,40,1,0,0,23.020338,23.020338,0,0,0,0,0,0,0,0,0,0,36.71,57.52,34.74,55.63,8.333333333333334,1,1,0,0,9,4,5,0,563,-3726.3789,43280.43,139900.72,103387.36,5583.082 -9733,11989,21639,-9,21637,21638,1,0,22,0,0,0,2,2,-9,0,3,8.1802082,7.9697433,0,0,0,-936.84576,0,2,2,2019,13,1,45,40,1,1,1,5.4463429,5.4463429,0,0,0,0,0,0,0,0,0,0,43,53,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,424,115459.44,0,0,0,666.09167 -9734,11990,21640,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.7832165,6.8710699,0,0,-992.45428,0,2,2,2019,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,4.748569,6.4965067,58.1,31.46,-9,-9,6.666666666666667,1,1,0,0,11,13,2,1,807,416919.69,226914.88,97634.68,0,-155.03017 -9735,11991,21641,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1123.5883,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,2.5175619,0,0,1,1,0,0,0,45.96,40.13,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,106,-145699.08,0,183995.48,0,737.10394 -9736,11992,21642,21643,-9,-9,1,1,44,0,2,0,1,1,-9,1,5,9.1340809,9.2762194,0,6,0,22.95883,0,3,3,2019,13,3,70,75,1,3,0,15.55233,15.55233,0,0,0,0,2,1,1,0,8.2340631,0,40.13,62.93,57.06,57.76,10,1,1,0,0,7,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 -9736,11992,21643,21642,-9,-9,1,0,44,0,2,0,3,3,-9,0,5,0,0,0,6,0,94.825249,0,3,2,2019,7,0,0,8,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,40.13,62.93,8.333333333333334,1,1,0,0,3,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 -9736,11992,21644,-9,21643,21642,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.40393,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 -9736,11992,21645,-9,21643,21642,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.28381,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1222.75,473630.53,352516.88,215982.45,170325.84,11903.25 -9737,11993,21646,21647,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,7.6362686,7.5944724,0,6,-2,-2.2789729,0,-9,-9,2019,7,2,40,37,1,2,0,8.2493973,8.2493973,0,0,0,0,0,1,1,0,0,0,53.48,46.24,53.5,51.02,6.666666666666667,1,1,0,0,8,5,4,0,503.33334,47255.004,-18123.094,79119.813,50403.023,2743.4495 -9737,11993,21647,21646,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.230197,8.3228073,0,6,2,30.238735,-9,-9,-9,2019,10,0,85,0,1,0,0,5.2120018,5.2120018,0,0,0,0,0,1,1,0,0,0,53.5,51.02,53.48,46.24,8.333333333333334,1,1,0,0,6,5,4,0,503.33334,47255.004,-18123.094,79119.813,50403.023,2743.4495 -9737,11993,21648,-9,21646,21647,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-829.49042,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,503.33334,47255.004,-18123.094,79119.813,50403.023,2743.4495 -9738,11994,21649,21650,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1507483,8.4926233,0,8,-5,-6.3341832,0,2,1,2019,13,2,60,40,1,2,0,6.5915022,6.5915022,0,0,0,0,0,0,0,0,.56225288,0,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,420.5,249059.39,241231.14,87951.156,59822.605,1978.6293 -9738,11994,21650,21649,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.659946,7.4425578,0,8,5,49.8069,0,2,3,2019,9,0,72,50,1,0,0,2.4022036,2.4022036,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,9,4,4,1,420.5,249059.39,241231.14,87951.156,59822.605,1978.6293 -9739,11995,21651,-9,21654,21653,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8876,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,2,3,-9,0,0,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 -9739,11995,21652,-9,21654,21653,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.98297,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 -9739,11995,21653,21654,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,9.2930079,9.2042313,0,7,5,-19.361132,0,1,1,2019,6,0,49,45,1,0,0,26.43153,26.43153,0,0,0,0,0,1,1,0,0,0,51.25,50.75,53.05,52.71,6.666666666666667,2,3,0,0,5,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 -9739,11995,21654,21653,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.4241281,7.6911154,0,7,-5,-193.58398,0,2,3,2019,11,0,28,28,1,0,0,8.9264479,8.9264479,0,0,0,0,2,1,1,0,0,0,53.05,52.71,51.25,50.75,8.333333333333334,2,3,0,0,3,6,5,0,316,148524.98,45025.262,182845.13,77308.086,4142.9238 -9740,11996,21655,21656,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4554024,8.2733755,0,3,5,-76.644432,0,-9,-9,2019,10,0,37,37,1,1,0,13.498838,13.498838,0,0,0,0,0,0,0,0,3.0535243,0,49,58,39.49,48.49,7,1,1,0,0,1,11,4,1,443.5,-40053.16,53553.113,246454.97,129165,2152.7065 -9740,11996,21656,21655,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.3187542,7.0111842,0,3,-5,90.968803,0,2,2,2019,17,5,20,37,1,5,0,9.5406866,9.5406866,0,0,0,0,0,0,0,0,0,0,39.49,48.49,49,58,5,1,1,0,0,6,11,4,1,443.5,-40053.16,53553.113,246454.97,129165,2152.7065 -9741,11997,21657,-9,21661,21659,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.4837,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 -9741,11997,21658,-9,21661,21659,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.4024,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 -9741,11997,21659,21661,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.7542019,8.462533,0,14,3,-61.03825,0,2,1,2019,11,0,39,39,1,0,0,15.669436,15.669436,0,0,0,0,0,1,1,0,4.2160296,0,57.06,55.24,37.65,58.66,10,2,3,0,0,8,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 -9741,11997,21660,-9,21661,21659,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1153.4905,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 -9741,11997,21661,21659,-9,-9,1,0,35,0,3,0,1,1,-9,0,5,0,0,0,14,-3,-72.043121,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.65,58.66,57.06,55.24,10,2,3,0,0,7,4,3,1,685.20001,-87425.359,21610.836,228678.92,101093.73,2527.4233 -9742,11998,21662,21663,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.7014656,7.2520285,53,2,12.923153,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8985999,7.2877755,57.48,45.43,60.05,32.12,8.333333333333334,2,3,0,0,0,8,2,1,619.5,625732.38,199331.08,246418.19,0,2331.9287 -9742,11998,21663,21662,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,53,-2,-126.9162,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,5.0862656,0,0,1,1,0,0,0,60.05,32.12,57.48,45.43,8.333333333333334,2,3,0,0,0,8,2,1,619.5,625732.38,199331.08,246418.19,0,2331.9287 -9743,11999,21664,21665,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.3787346,7.474195,51,0,33.099915,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5374832,7.7910595,60.81,43.46,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,393.5,684994.06,157050.77,246238.48,0,2437.3713 -9743,11999,21665,21664,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.6124258,6.4733095,51,0,-3.6227469,0,2,-9,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2137985,6.3939033,57.16,56.15,60.81,43.46,10,1,1,0,0,5,12,3,1,393.5,684994.06,157050.77,246238.48,0,2437.3713 -9744,12000,21666,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.3579178,8.0918512,0,0,0,-1186.5569,0,-9,-9,2019,12,0,39,41,1,0,0,11.522033,11.522033,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,1,1,0,0,6,9,5,1,471,-287606.69,-49449.262,0,0,1732.8118 -9745,12001,21667,-9,21670,21669,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.73535,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 -9745,12001,21668,-9,21670,21669,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-960.36261,0,1,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 -9745,12001,21669,21670,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.8221445,8.8512001,0,25,-1,104.10472,0,3,2,2019,8,0,40,37,1,0,0,19.064592,19.064592,0,0,0,0,0,1,1,0,1.8647821,0,52,54.51,36.54,57.54,8.333333333333334,1,1,0,0,10,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 -9745,12001,21670,21669,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,7.8234386,8.0361338,0,25,1,53.668602,0,2,2,2019,10,1,16,16,1,1,0,18.764648,18.764648,0,0,0,0,0,1,1,0,2.7711544,0,36.54,57.54,52,54.51,8.333333333333334,1,1,0,0,10,5,5,1,1702.5,2038328.5,1565718.5,311018.47,118144.66,3912.1072 -9745,12002,21671,-9,21670,21669,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-923.63245,1,1,1,2019,21,9,0,11,2,9,1,0,0,0,0,0,0,0,1,1,0,3.3714759,0,36.51,61.56,-9,-9,6.666666666666667,1,1,0,0,2,5,1,1,664,-532698.56,0,0,0,276.5491 -9746,12003,21672,21673,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7009368,7.4371576,47,0,-86.252144,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6263299,7.8504901,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,0,1,3,1,677,222923.38,390397.94,120857.75,0,2792.7217 -9746,12003,21673,21672,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.689168,5.6506796,47,0,-199.31436,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6509552,5.7949495,57.33,53.46,52,54.51,10,1,1,0,0,2,1,3,1,677,222923.38,390397.94,120857.75,0,2792.7217 -9747,12004,21674,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-905.50659,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1522487,0,53.76,49.63,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,225,-39500.492,0,0,0,955.67822 -9748,12005,21675,21676,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6103191,8.5480623,0,6,-2,64.136604,0,-9,-9,2019,11,0,45,45,1,0,0,16.851276,16.851276,0,0,0,0,0,0,0,0,0,0,51.83,57.2,60.02,56.42,8.333333333333334,1,1,0,0,9,8,5,1,501.5,3350826.5,2136869.5,674203.13,0,6025.7119 -9748,12005,21676,21675,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.3206816,9.1888666,6.1565895,6,2,-110.92439,0,-9,-9,2019,6,0,65,50,1,0,0,19.264263,19.264263,0,0,0,0,0,0,0,0,6.1288671,6.2085767,60.02,56.42,51.83,57.2,8.333333333333334,1,1,0,0,9,8,5,1,501.5,3350826.5,2136869.5,674203.13,0,6025.7119 -9749,12006,21677,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6796393,6.9358792,0,0,-974.008,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.6636777,6.7058597,61.11,43.69,-9,-9,0,1,1,0,0,0,7,2,1,387,1208576.9,52434.73,614919.88,0,738.8028 -9750,12007,21678,21680,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.9824362,8.1001625,0,10,-2,-74.814018,0,-9,-9,2019,8,0,43,26,1,0,0,5.3444142,5.3444142,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.65,56.13,10,1,1,0,0,8,1,4,1,1269.3334,27586.77,-36948.973,52995.121,104674.85,3376.9663 -9750,12007,21679,-9,21678,21680,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.91937,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1269.3334,27586.77,-36948.973,52995.121,104674.85,3376.9663 -9750,12007,21680,21678,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.2859039,8.1617289,0,11,2,-60.098999,0,-9,-9,2019,7,0,54,60,1,0,0,9.8511448,9.8511448,0,0,0,0,0,1,1,0,0,0,57.65,56.13,54.69,57.47,8.333333333333334,1,1,0,0,8,1,4,1,1269.3334,27586.77,-36948.973,52995.121,104674.85,3376.9663 -9751,12008,21681,-9,21682,21683,1,0,41,0,0,0,1,1,-9,0,3,7.5829487,6.9238362,0,0,0,-941.87445,0,2,3,2019,12,3,40,40,1,3,0,4.9448605,4.9448605,0,0,0,0,0,1,1,0,0,0,43.95,51.24,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,2071,269685.69,0,0,0,1609.9813 -9751,12009,21682,21683,21684,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.1207991,6.6342487,2,-7,101.12095,0,3,-9,2019,24,12,0,15,4,12,0,0,0,0,0,0,0,42,1,1,0,7.0985289,6.7433534,33.07,44.65,15.15,48.8,3.333333333333333,1,1,0,0,0,10,2,1,974.5,489785.63,251496,225253.17,0,1749.947 -9751,12009,21683,21682,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,5.7338805,6.2580047,2,7,83.076218,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,1,0,9.3006611,0,2,1,1,0,6.3607168,5.9255624,15.15,48.8,33.07,44.65,3.333333333333333,1,1,0,0,0,10,2,1,974.5,489785.63,251496,225253.17,0,1749.947 -9751,12010,21684,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,4.0342236,4.2576103,0,0,-1018.2617,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,7.9844756,0,0,1,1,0,3.168469,4.0502295,47.37,38.69,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1158,160177.66,-103649.63,150861.89,0,195.21172 -9752,12011,21685,21687,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,19,-3,-4.2904773,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.97,52.1,53.02,53.93,1.666666666666667,2,3,0,0,0,2,2,1,699.5,-32438.492,0,0,0,1057.4402 -9752,12011,21686,-9,21685,21687,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.57892,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,2,2,1,699.5,-32438.492,0,0,0,1057.4402 -9752,12011,21687,21685,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,5.7829275,5.6404629,0,19,3,52.684757,0,3,3,2019,10,0,7,7,1,1,0,4.4019704,4.4019704,0,0,0,0,0,1,1,0,0,0,53.02,53.93,56.97,52.1,10,2,3,0,0,12,2,2,1,699.5,-32438.492,0,0,0,1057.4402 -9752,12011,21688,-9,21685,21687,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.5788,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,699.5,-32438.492,0,0,0,1057.4402 -9752,12012,21689,-9,21685,21687,1,1,23,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1021.0276,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.87,42.1,-9,-9,8.333333333333334,2,3,0,0,2,2,1,1,425,-23598.965,0,154093.11,0,-570.28485 -9752,12013,21690,-9,21685,21687,1,0,22,0,2,1,2,0,0,0,4,0,0,0,0,0,-1003.3401,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,68.03,40.23,-9,-9,10,2,3,0,0,0,2,1,1,489,31269.178,0,0,0,0 -9752,12014,21691,-9,21685,21687,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-1070.8914,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,70.88,36.48,-9,-9,10,2,3,0,0,0,2,1,1,2442,-232863.14,0,0,0,0 -9753,12015,21692,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.897851,7.5699072,0,0,-1059.5983,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4468893,7.4980059,58.47,50.22,-9,-9,10,1,1,0,0,0,5,3,1,657,542051.38,121657.18,285992.81,0,1690.6213 -9754,12016,21693,21694,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.6798377,6.5717349,31,-3,20.504002,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5430088,6.7277236,45.73,57.57,60.84,47.65,6.666666666666667,1,1,0,0,4,10,3,1,1427,1022582.4,614691,396624.75,0,2763.0769 -9754,12016,21694,21693,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.8508315,7.8516889,10,3,-73.684006,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.7843528,7.701478,60.84,47.65,45.73,57.57,6.666666666666667,1,1,0,0,1,10,3,1,1427,1022582.4,614691,396624.75,0,2763.0769 -9755,12017,21695,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.7379241,8.4016237,7.6934881,0,0,-827.73395,0,2,3,2019,6,0,27,22,1,0,0,8.0731859,8.0731859,0,0,0,0,0,1,1,0,0,7.5796776,55.87,53.99,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,163,238536.84,-23084.775,240203.03,0,1788.2268 -9756,12018,21696,-9,21697,-9,1,1,49,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1083.1212,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,0,0,0,7,1,1,260,-69997.883,0,0,0,844.10693 -9756,12019,21697,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1036.9575,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.98,18.36,-9,-9,6.666666666666667,3,4,0,0,0,7,1,1,242,19983.65,0,0,0,860.37158 -9757,12020,21698,21699,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.3814363,5.2433434,36,-10,29.983204,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.2952466,5.1194763,57.01,13.47,56.34,28,10,1,1,0,0,0,9,2,0,1381.5,598714.13,-3529.5781,448213.81,0,1621.2854 -9757,12020,21699,21698,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,36,10,66.159103,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.34,28,57.01,13.47,6.666666666666667,1,1,0,0,0,9,2,0,1381.5,598714.13,-3529.5781,448213.81,0,1621.2854 -9758,12021,21700,21701,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.4474182,7.2609696,8,-1,13.417953,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7100501,6.9544964,47.16,55.33,47.28,36.86,8.333333333333334,1,1,0,0,0,2,2,1,289,-40264.961,161861.41,0,0,941.078 -9758,12021,21701,21700,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,8,1,6.9868288,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.28,36.86,47.16,55.33,8.333333333333334,1,1,0,0,0,2,2,1,289,-40264.961,161861.41,0,0,941.078 -9758,12022,21702,-9,21701,21700,1,1,52,0,0,0,2,2,-9,0,4,7.6914535,7.8014979,0,0,0,-973.34119,0,2,3,2019,10,0,38,37,1,0,0,6.6083975,6.6083975,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,45,-126784.98,44673.012,0,0,1574.8347 -9759,12023,21703,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.5385618,7.7336459,0,0,-888.47327,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3992319,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,608,505651.47,207557.19,245794.8,0,875.15808 -9760,12024,21704,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.8856864,5.8168063,0,0,-1072.7886,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1881785,5.8698149,43.33,50.15,-9,-9,10,1,1,0,0,0,6,2,1,3429,195071.38,-9679.21,71154,0,380.1669 -9760,12025,21705,21706,21704,-9,1,1,46,0,0,0,3,3,-9,0,5,7.0113721,7.0018969,0,7,-11,-59.573193,0,2,2,2019,5,0,30,40,1,0,0,3.24593,3.24593,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.85,52.08,10,1,1,0,0,8,6,2,1,746.5,-16658.871,0,0,0,203.22725 -9760,12025,21706,21705,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,7,11,67.468811,0,-9,-9,2019,14,2,0,27,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,52.08,57.06,57.76,6.666666666666667,1,1,0,0,1,6,2,1,746.5,-16658.871,0,0,0,203.22725 -9761,12026,21707,21708,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,5.8736143,6.037796,5,5,-17.909496,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4477148,6.0162477,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,1,1419,202405.89,106751.34,0,0,763.42871 -9761,12026,21708,21707,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.1810694,5.3911018,5,-5,-15.280437,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6458812,4.9667087,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,0,7,2,1,1419,202405.89,106751.34,0,0,763.42871 -9762,12027,21709,-9,-9,-9,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-1013.5666,-9,3,3,2019,22,10,0,0,3,10,1,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,5,2,3,1,1,1,7,1,1,1181,-248321.2,0,0,0,0 -9762,12028,21710,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-942.67902,-9,3,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,30.58,52.76,-9,-9,6.666666666666667,2,3,0,1,0,7,1,1,647,26679.99,0,0,0,0 -9763,12029,21711,-9,21713,21712,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.49353,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,9,5,1,563.66669,-27656.313,-866.04004,434774.22,254952.97,3784.1953 -9763,12029,21712,21713,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,8.6996059,8.6988382,0,3,6,-184.75606,-9,3,2,2019,17,5,50,0,1,5,0,11.116416,11.116416,0,0,0,0,0,0,0,0,0,0,43.49,38.07,41.52,41.71,3.333333333333333,2,3,0,0,11,9,5,1,563.66669,-27656.313,-866.04004,434774.22,254952.97,3784.1953 -9763,12029,21713,21712,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,8.4547997,8.2927284,0,3,-6,-69.072609,-9,2,1,2019,11,1,40,0,1,1,0,10.410724,10.410724,0,0,0,0,0,0,0,0,0,0,41.52,41.71,43.49,38.07,3.333333333333333,2,3,0,0,8,9,5,1,563.66669,-27656.313,-866.04004,434774.22,254952.97,3784.1953 -9764,12030,21714,-9,21715,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.4382,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,603,192100.58,-13362.648,86223.57,113410.3,1886.6531 -9764,12030,21715,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4063988,8.7672377,0,10,2,24.707523,0,2,1,2019,9,0,40,42,1,0,0,13.519053,13.519053,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,603,192100.58,-13362.648,86223.57,113410.3,1886.6531 -9764,12030,21716,-9,21715,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4233,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,603,192100.58,-13362.648,86223.57,113410.3,1886.6531 -9764,12031,21717,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.383718,7.2081051,0,10,-2,44.512005,0,3,3,2019,6,0,18,22,1,0,0,10.645666,10.645666,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,3,2,4,1,168,-140592.84,19334.994,46310.734,0,1147.463 -9765,12032,21718,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.5074525,6.4734664,0,0,-1043.6572,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.719285,48.81,59.91,-9,-9,10,1,1,0,0,0,12,2,0,161,172632.89,-59950.602,0,0,2496.2913 -9766,12033,21719,21720,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.0450544,8.7085114,0,23,3,-94.014618,-9,3,2,2019,9,0,40,0,1,1,0,18.261377,18.261377,0,0,0,0,0,0,0,0,0,0,53,54,55.83,35.81,8,2,3,0,0,1,8,5,1,603.5,648857.63,188957.34,474713.25,18397.32,2807.7021 -9766,12033,21720,21719,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,6.9225416,6.8918328,0,23,-3,16.341936,-9,3,1,2019,14,2,8,0,1,2,0,15.60549,15.60549,0,0,0,0,0,0,0,0,2.9232495,0,55.83,35.81,53,54,8.333333333333334,2,3,0,0,10,8,5,1,603.5,648857.63,188957.34,474713.25,18397.32,2807.7021 -9767,12034,21721,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.709332,7.0654922,0,0,-1011.6253,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.142591,6.8757186,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,988,-255072.02,133842.66,87682.344,0,1459.0284 -9768,12035,21722,21723,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.5859818,5.9588418,10,3,39.157299,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,2.5552878,.085949726,24.951811,0,1,1,0,5.047121,5.6878119,52.95,25.5,55.18,44.66,8.333333333333334,1,1,0,0,0,7,2,1,504,41522.355,80278.172,0,0,1569.2964 -9768,12035,21723,21722,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,10,-3,-163.32332,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.107162,0,55.18,44.66,52.95,25.5,8.333333333333334,1,1,0,0,0,7,2,1,504,41522.355,80278.172,0,0,1569.2964 -9769,12036,21724,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1113.6489,0,-9,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,14.86,53.05,-9,-9,5,1,1,1,0,0,6,1,0,201,53329.09,0,0,0,746.10785 -9770,12037,21725,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1006.231,-9,-9,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,.79757762,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,562,-39389.113,0,0,0,-39.874413 -9771,12038,21726,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.4459457,8.4180155,0,0,0,-1086.4159,0,2,2,2019,15,4,38,38,1,4,0,12.748346,12.748346,0,0,0,0,2,0,0,0,0,0,41.95,46.07,-9,-9,8.333333333333334,1,1,0,0,4,6,4,0,1182,-165100.72,65688.75,0,0,1429.7917 -9772,12039,21727,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.9095669,8.3843241,7.8026991,0,0,-966.06787,0,2,1,2019,7,0,30,30,1,0,0,8.4613628,8.4613628,0,0,0,0,0,0,0,0,0,7.8147006,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,518,-131264,198140.14,0,0,2665.2307 -9773,12040,21728,21729,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.4805765,7.9743676,10,2,-50.501312,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.4757824,7.8608451,46.95,40.97,48.28,60.18,6.666666666666667,1,1,0,0,0,4,4,1,483.5,1115486.5,703066.25,252090.81,0,4002.158 -9773,12040,21729,21728,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.321063,8.3675623,10,-2,37.882259,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5324159,8.3040056,48.28,60.18,46.95,40.97,8.333333333333334,1,1,0,0,0,4,4,1,483.5,1115486.5,703066.25,252090.81,0,4002.158 -9774,12041,21730,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,4,-4,0,0,2,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.01,25.88,49,48,0,1,1,0,0,1,4,1,0,728,51276.262,130172.94,0,0,1076.8419 -9775,12042,21731,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-948.53394,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,37.11,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,504,94147.289,0,0,0,1214.3331 -9776,12043,21732,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-985.39471,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.67,39.03,-9,-9,10,1,1,0,0,0,9,1,0,595,299981.75,0,0,0,484.76205 -9777,12044,21733,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1170.7308,0,2,3,2019,22,9,0,0,4,9,0,0,0,1,1.0688767,3.8113701,21.203035,0,1,1,0,3.6073103,0,44.51,21.72,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,486,-189871.86,0,0,0,2098.092 -9778,12045,21734,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.3987923,6.5002179,0,0,-1005.9598,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.1993833,6.7211761,63.25,32,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1166,202398.98,12816.616,87206.664,0,1081.8619 -9779,12046,21735,-9,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,6.3727417,6.4147277,0,0,-1037.3169,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,6.6621056,0,31.16,24.03,-9,-9,5,1,1,0,1,0,4,2,0,4319,-76145.68,-29165.453,0,0,1505.6052 -9779,12046,21736,-9,21735,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.91138,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,4319,-76145.68,-29165.453,0,0,1505.6052 -9779,12046,21737,-9,21735,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.51654,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,4319,-76145.68,-29165.453,0,0,1505.6052 -9780,12047,21738,21739,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.2254457,8.9569407,0,28,-4,.067599595,0,2,2,2019,15,4,52,55,1,4,0,21.578753,21.578753,0,0,0,0,0,1,1,0,0,0,48.81,59.91,53.94,45.89,6.666666666666667,1,1,0,0,10,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 -9780,12047,21739,21738,-9,-9,1,1,56,0,1,0,2,2,-9,0,2,6.7055607,6.4925261,0,28,4,128.37459,0,2,2,2019,7,0,10,50,1,0,0,8.1456041,8.1456041,0,0,0,0,0,1,1,0,0,0,53.94,45.89,48.81,59.91,5,1,1,0,0,12,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 -9780,12047,21740,-9,21738,21739,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.5936,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 -9780,12047,21741,-9,21738,21739,1,1,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-972.73322,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.54096651,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,670.25,527419.5,285077.25,323548,88514.664,3379.7224 -9781,12048,21742,21745,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.9075999,7.9043403,0,16,-5,113.003,0,1,1,2019,11,0,15,20,1,0,0,19.923401,19.923401,0,0,0,0,0,1,1,0,0,0,44.02,60.7,45.46,61.87,6.666666666666667,1,1,0,0,7,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 -9781,12048,21743,-9,21742,21745,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0276,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 -9781,12048,21744,-9,21742,21745,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.60327,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 -9781,12048,21745,21742,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,9.3752098,9.5207319,0,16,5,-133.23067,0,3,3,2019,14,3,45,42,1,3,0,27.435156,27.435156,0,0,0,0,0,1,1,0,0,0,45.46,61.87,44.02,60.7,6.666666666666667,2,3,0,0,11,9,5,1,508.75,880877.06,268818.22,804920.88,65055.211,5392.3452 -9782,12049,21746,21747,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1719809,8.132719,0,24,6,-56.843967,0,2,2,2019,15,4,45,46,1,4,0,8.3760805,8.3760805,0,0,0,0,0,1,1,0,1.890676,0,46.68,53.95,53.41,49.78,5,1,1,0,0,8,9,4,1,1285.3334,202158.47,179565.95,306711.88,113104.99,3063.3904 -9782,12049,21747,21746,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,8.0810175,8.0832071,0,24,-6,92.207176,0,2,2,2019,11,1,40,45,1,1,0,10.540207,10.540207,0,0,0,0,0,1,1,0,.5452736,0,53.41,49.78,46.68,53.95,8.333333333333334,1,1,0,0,8,9,4,1,1285.3334,202158.47,179565.95,306711.88,113104.99,3063.3904 -9782,12049,21748,-9,21747,21746,1,0,16,0,1,1,2,0,-9,0,4,0,3.4733849,3.7452297,0,0,-967.88019,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,4.3172164,0,49.44,56.93,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1285.3334,202158.47,179565.95,306711.88,113104.99,3063.3904 -9783,12050,21749,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1039.8634,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.19,33.94,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,1106,366302.44,0,0,0,1685.9122 -9783,12051,21750,-9,21749,-9,1,1,24,0,0,0,1,1,-9,0,4,7.8789139,7.8106246,0,0,0,-1001.3307,0,2,-9,2019,12,0,28,39,1,0,1,11.116755,11.116755,0,0,0,3.1655638,0,1,1,0,0,0,37.27,56.09,-9,-9,5,3,4,0,0,5,8,4,0,559,111552.66,-76212.008,0,0,979.87744 -9784,12052,21751,21752,-9,-9,1,0,54,0,1,0,3,3,-9,1,2,0,0,0,8,0,0,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,32.72,42.31,31.79,20.69,10,1,1,0,1,0,5,1,0,882.66669,74459.766,0,0,0,2048.5496 -9784,12052,21752,21751,-9,-9,1,1,54,0,1,0,2,2,-9,1,2,0,0,0,8,0,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,0,0,31.79,20.69,32.72,42.31,5,1,1,0,0,0,5,1,0,882.66669,74459.766,0,0,0,2048.5496 -9784,12052,21753,-9,21751,21752,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.0668,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,882.66669,74459.766,0,0,0,2048.5496 -9784,12053,21754,-9,21751,21752,1,1,29,0,1,0,2,2,-9,0,3,0,0,0,0,0,-944.72839,0,3,2,2019,8,0,0,20,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,30.62,45.54,-9,-9,5,1,1,1,0,0,5,1,0,844,-125328.88,0,0,0,0 -9785,12054,21755,-9,21756,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-813.47852,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,456.5,146694.97,33832.57,0,0,2826.3286 -9785,12054,21756,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.3046093,8.4458923,7.2707314,14,-18,-101.60606,0,1,2,2019,7,0,60,34,1,0,0,7.5008087,7.5008087,0,0,0,0,2,1,1,0,2.4274576,7.2983317,57.06,57.76,48.11,19.11,8.333333333333334,1,1,0,0,6,7,5,1,456.5,146694.97,33832.57,0,0,2826.3286 -9785,12055,21757,-9,-9,-9,1,0,60,0,1,0,3,3,-9,0,1,8.6126604,9.3755665,8.3872309,14,18,74.806747,0,-9,-9,2019,18,6,37,42,1,6,0,16.387651,16.387651,0,0,0,0,0,1,1,0,8.4992046,8.6963215,48.11,19.11,57.06,57.76,8.333333333333334,1,1,0,0,9,7,5,1,1030,1128559.1,645541.81,477663.66,0,5634.0679 -9786,12056,21758,21759,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.4508877,8.7218294,0,2,-5,-5.5544786,0,-9,-9,2019,8,0,45,40,1,0,0,10.651721,10.651721,0,0,0,0,0,0,0,0,6.7637749,0,48.87,58.55,20,62.76,1.666666666666667,1,1,0,0,4,9,5,1,370,195756.89,70771.242,0,0,5723.7314 -9786,12056,21759,21758,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.6409378,9.2211733,0,2,5,-50.623032,0,2,2,2019,20,8,45,40,1,8,0,18.743298,18.743298,0,0,0,0,0,0,0,0,7.3813205,0,20,62.76,48.87,58.55,8.333333333333334,1,1,0,0,8,9,5,1,370,195756.89,70771.242,0,0,5723.7314 -9787,12057,21760,21761,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,0,0,46,5,0,0,2,2,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.9713893,0,62.39,56.71,63.41,29.17,10,2,3,0,0,0,8,1,1,726,674156,0,589543.5,0,1504.5154 -9787,12057,21761,21760,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,46,-5,0,0,3,3,2019,14,0,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,.70606691,0,63.41,29.17,62.39,56.71,6.666666666666667,2,3,0,0,0,8,1,1,726,674156,0,589543.5,0,1504.5154 -9788,12058,21762,-9,21763,21764,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.974,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,400.33334,19102.592,61486.504,287512.94,192389.19,3298.8601 -9788,12058,21763,21764,-9,-9,1,0,48,1,1,0,2,2,-9,0,4,7.9190664,7.8573961,0,4,14,52.066463,0,2,3,2019,9,0,25,28,1,0,0,14.039928,14.039928,0,0,0,0,7,1,1,0,4.5037408,0,51.95,53.02,49.41,58.28,8.333333333333334,1,1,0,0,9,5,4,1,400.33334,19102.592,61486.504,287512.94,192389.19,3298.8601 -9788,12058,21764,21763,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.1690474,8.0681086,0,4,-14,25.97871,0,-9,-9,2019,12,0,48,45,1,0,0,12.810429,12.810429,0,0,0,0,0,1,1,0,1.5590833,0,49.41,58.28,51.95,53.02,8.333333333333334,1,1,0,0,6,5,4,1,400.33334,19102.592,61486.504,287512.94,192389.19,3298.8601 -9789,12059,21765,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.4298429,6.8592949,0,0,0,-965.72827,0,2,2,2019,15,3,27,22,1,3,0,5.9276342,5.9276342,0,0,0,0,2,0,0,0,0,0,48.5,34.74,-9,-9,5,1,1,0,0,11,6,3,1,581,243660.13,0,137551.52,0,729.26807 -9790,12060,21766,21767,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,8.2725239,9.407876,8.8771267,37,0,79.632553,0,-9,-9,2019,9,0,50,42,1,0,0,10.858068,10.858068,0,0,0,0,0,1,1,0,9.1011705,0,56.25,33.87,48.73,47.81,5,1,1,0,0,11,1,5,1,504,370038.16,317316.81,111815.73,0,6281.7852 -9790,12060,21767,21766,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,37,0,76.527863,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4606023,0,48.73,47.81,56.25,33.87,5,1,1,0,0,4,1,5,1,504,370038.16,317316.81,111815.73,0,6281.7852 -9791,12061,21768,21769,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,8,7,0,0,-9,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,31.44,50.22,37.71,19.4,5,1,1,1,0,0,12,1,0,1238.5,-403378.69,0,0,0,1118.5826 -9791,12061,21769,21768,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,8,-7,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37.71,19.4,31.44,50.22,6.666666666666667,1,1,0,1,0,12,1,0,1238.5,-403378.69,0,0,0,1118.5826 -9792,12062,21770,21771,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.2323456,8.2437868,0,34,-5,-3.7244544,0,2,2,2019,15,4,38,38,1,4,0,11.486272,11.486272,0,0,0,0,71.5,1,1,0,0,0,49.88,44.92,32.21,16.73,5,1,1,0,1,12,10,4,1,370,114113.03,-29238.576,0,0,2004.3005 -9792,12062,21771,21770,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,6.5246148,6.5869923,34,5,-11.760252,0,2,2,2019,27,11,0,23,3,11,0,0,0,0,0,0,0,0,1,1,0,5.1698518,6.1269569,32.21,16.73,49.88,44.92,1.666666666666667,1,1,1,1,11,10,4,1,370,114113.03,-29238.576,0,0,2004.3005 -9793,12063,21772,21773,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.2673244,8.2087498,0,24,0,67.98526,0,2,3,2019,12,1,50,40,1,1,0,10.112745,10.112745,0,0,0,0,0,0,0,0,0,0,35.97,61.83,57.06,57.76,8.333333333333334,1,1,0,0,10,11,5,1,1034,1693509.5,1491574.1,182922.94,59599.965,3637.6194 -9793,12063,21773,21772,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.8436832,8.6840639,0,24,0,6.5641093,0,2,2,2019,7,0,48,40,1,0,0,17.953968,17.953968,0,0,0,0,0,0,0,0,.82693624,0,57.06,57.76,35.97,61.83,8.333333333333334,1,1,0,0,11,11,5,1,1034,1693509.5,1491574.1,182922.94,59599.965,3637.6194 -9793,12064,21774,-9,21773,21772,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.9487,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,0,11,2,1,1685,-216039.41,0,0,0,0 -9794,12065,21775,21776,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,1,-2,0,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,36.77,38.64,21.72,22.57,5,1,1,0,0,0,9,2,0,2645.5,-154032.88,35313.527,0,0,2446.499 -9794,12065,21776,21775,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,1,2,0,0,3,2,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,21.72,22.57,36.77,38.64,0,1,1,0,0,0,9,2,0,2645.5,-154032.88,35313.527,0,0,2446.499 -9795,12066,21777,21778,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.2410574,8.6535168,3,-4,-60.030663,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2143207,8.1622458,51.49,57.57,36.56,42.39,8.333333333333334,1,1,0,0,6,9,3,1,293,1721824.3,752033.31,568000.5,0,2683.1404 -9795,12066,21778,21777,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.261095,4.9881511,3,4,164.48605,0,-9,-9,2019,16,6,0,0,4,6,0,0,0,1,0,5.3988967,0,0,1,1,0,0,5.4893422,36.56,42.39,51.49,57.57,6.666666666666667,4,2,0,0,0,9,3,1,293,1721824.3,752033.31,568000.5,0,2683.1404 -9796,12067,21779,21780,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,6,-4,10.347501,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.1193371,0,0,1,1,0,0,0,53.59,33.58,60.02,56.42,8.333333333333334,1,1,0,0,5,12,2,1,480,-90292.25,0,272997.25,0,1292.6847 -9796,12067,21780,21779,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,3.8338799,3.5322907,6,4,-52.732666,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,3.5066588,60.02,56.42,53.59,33.58,8.333333333333334,1,1,0,0,4,12,2,1,480,-90292.25,0,272997.25,0,1292.6847 -9797,12068,21781,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.198617,7.0611005,0,0,-950.32434,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.7696879,6.8583326,60.02,56.42,-9,-9,10,1,1,0,0,0,8,2,1,235,1162342.6,378033.84,698565.19,0,1110.4056 -9798,12069,21782,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-942.61597,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,35.98,28.4,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,278,0,0,0,0,2348.1606 -9799,12070,21783,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,6.4880233,6.2160974,0,0,-1174.2552,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,8.0596752,6.4112434,57.06,57.76,-9,-9,10,1,1,0,0,0,2,2,1,1070,741295.56,605034.06,132535.13,1786.407,2982.6111 -9800,12071,21784,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9355083,7.61202,0,0,0,-1013.8621,0,-9,-9,2019,17,6,39,40,1,6,0,7.7732458,7.7732458,0,0,0,0,0,0,0,0,4.0685992,0,28.19,57.34,-9,-9,1.666666666666667,1,1,0,0,6,12,3,0,926,221968.69,0,0,0,1390.9358 -9801,12072,21785,21786,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.3063436,6.4420791,6,2,40.73518,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9070554,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,3,12,2,0,1214.5,394879.97,146382.47,144470.72,0,2103.4272 -9801,12072,21786,21785,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,6,-2,-75.142845,0,3,2,2019,6,0,0,75,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,12,2,0,1214.5,394879.97,146382.47,144470.72,0,2103.4272 -9802,12073,21787,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,0,0,-985.31183,0,-9,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.6485963,0,57.06,57.76,-9,-9,10,1,1,0,0,0,10,1,1,231,103310.61,0,0,0,1261.7397 -9803,12074,21788,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,7.771986,7.8392344,0,0,-995.3299,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.928381,7.8884387,40.87,44.58,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,402,278265.28,152334.03,238605.31,0,2520.5002 -9804,12075,21789,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.7201519,6.0410438,0,0,-1057.374,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.0242076,44.32,16.32,-9,-9,1.666666666666667,1,1,0,1,2,5,2,1,428,150447.5,100700.16,0,0,497.59833 -9804,12076,21790,-9,21789,-9,1,0,44,0,0,0,2,2,-9,0,3,8.0891018,7.9270453,0,0,0,-946.41577,0,3,-9,2019,12,1,47,55,1,1,0,6.4266896,6.4266896,0,0,0,0,79,1,1,0,4.1659303,0,54.13,48.04,-9,-9,6.666666666666667,1,1,0,0,6,5,4,1,347,220196.3,-33763.633,0,0,1385.8208 -9805,12077,21791,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1160.3671,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,40.37,19.29,-9,-9,5,1,1,0,0,6,11,1,1,493,148983.97,0,0,0,1474.8767 -9805,12078,21792,-9,21791,-9,1,1,32,0,0,0,1,1,-9,0,3,8.3713064,8.6044865,0,0,0,-1041.0662,0,2,3,2019,13,1,47,47,1,1,1,10.845248,10.845248,0,0,0,0,0,1,1,0,2.2401509,0,21.01,63.59,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,460,-250028.97,10114.104,0,0,1858.6454 -9806,12079,21793,21794,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.6139917,8.7827997,0,39,-4,-.78994489,0,3,3,2019,6,0,43,44,1,0,0,11.48772,11.48772,0,0,0,0,14.5,1,1,0,.89774638,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,10,4,1,300.5,1445021.8,1070409.5,222462.06,0,2817.7622 -9806,12079,21794,21793,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,5.4661298,5.0827165,36,4,54.649693,0,2,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,.084802195,4.6716557,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,8,10,4,1,300.5,1445021.8,1070409.5,222462.06,0,2817.7622 -9807,12080,21795,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.6190681,7.5565791,0,0,-944.04797,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.7570124,7.274703,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,2297,878760.38,471812.38,196120.91,-10595.66,581.11865 -9808,12081,21796,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,4.9527593,5.128665,0,0,-956.0127,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5084701,4.7679906,61.28,46.17,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,660,590604.25,36472.863,0,0,1292.4131 -9809,12082,21797,21798,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.9042535,7.8268237,24,9,-39.61462,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.7563777,57.92,38.59,37.17,45.07,8.333333333333334,1,1,0,0,0,2,4,1,457,953815.81,745893.69,247656.88,0,3154.113 -9809,12082,21798,21797,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.4686489,7.6701441,24,0,-59.479954,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,0,7.7641044,37.17,45.07,57.92,38.59,6.666666666666667,1,1,0,0,0,2,4,1,457,953815.81,745893.69,247656.88,0,3154.113 -9810,12083,21799,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.7302,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,336,8265.499,0,0,0,1737.098 -9811,12084,21800,-9,21802,21803,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.53168,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 -9811,12084,21801,-9,21802,21803,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.81201,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 -9811,12084,21802,21803,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,6.9813309,7.1472688,0,15,-6,-69.062767,0,-9,-9,2019,15,4,22,22,1,4,0,7.2213373,7.2213373,0,0,0,0,0,1,1,0,0,0,39.05,57.88,41.09,56.74,3.333333333333333,1,1,0,0,9,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 -9811,12084,21803,21802,-9,-9,1,1,47,1,2,0,3,3,-9,0,4,7.9795995,7.7605095,0,15,6,96.604752,0,2,2,2019,10,0,44,39,1,0,0,7.950367,7.950367,0,0,0,0,0,1,1,0,0,0,41.09,56.74,39.05,57.88,6.666666666666667,1,1,0,0,7,5,3,1,997.5,61789.555,19875.801,0,0,2388.5859 -9812,12085,21804,-9,21806,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.70166,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,1,0,646,87903.688,0,0,0,1745.7603 -9812,12085,21805,-9,21806,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.543,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,646,87903.688,0,0,0,1745.7603 -9812,12085,21806,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1049.2216,0,1,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.57,46.33,-9,-9,5,1,1,0,1,0,9,1,0,646,87903.688,0,0,0,1745.7603 -9813,12086,21807,21808,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.3755636,6.4309568,46,1,-19.271069,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,5.8756227,6.5323048,60.29,52.11,47.02,22.99,8.333333333333334,1,1,0,0,0,12,2,1,1229,288730.41,68138.633,165761.88,0,2352.0981 -9813,12086,21808,21807,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,4.8148003,4.8860893,46,-1,8.7416134,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,14.877351,0,0,1,1,0,5.4279013,5.0110087,47.02,22.99,60.29,52.11,5,1,1,0,0,0,12,2,1,1229,288730.41,68138.633,165761.88,0,2352.0981 -9814,12087,21809,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.0796194,8.9545622,0,0,0,-1059.0507,0,2,2,2019,11,0,48,50,1,2,0,16.773062,16.773062,0,0,0,0,0,0,0,0,0,0,48,51,-9,-9,8.333333333333334,4,2,0,0,12,9,5,1,1158,743922.94,681599.5,327393.66,210452.81,2176.1602 -9815,12088,21810,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.9663053,5.7241364,0,0,-1061.3622,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.4237313,6.2051258,43.05,50.71,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,525,-169130.67,85716.227,217489.23,42886.316,1362.7806 -9816,12089,21811,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,5.7191133,6.7462392,5.4616666,0,0,-1120.8458,-9,2,1,2019,16,4,12,0,1,4,0,4.2842522,4.2842522,0,0,0,0,2,0,0,0,5.1806073,0,46.08,57.2,-9,-9,1.666666666666667,3,4,0,1,3,8,2,0,208,-134164.41,0,0,0,350.03647 -9817,12090,21812,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.6335917,8.9448481,0,0,0,-1029.4561,0,2,2,2019,20,8,38,38,1,8,0,20.692411,20.692411,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,291,165146.77,54740.719,80574.531,108316.36,2490.8467 -9818,12091,21813,21814,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,45,-2,0,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,40.15,33.33,7,1,1,0,0,0,12,2,0,377.5,212980.11,-8066.6611,0,0,2062.5815 -9818,12091,21814,21813,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,45,2,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,33.33,49,48,6.666666666666667,1,1,0,0,0,12,2,0,377.5,212980.11,-8066.6611,0,0,2062.5815 -9819,12092,21815,21816,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.1506491,7.0208035,0,9,1,-15.10365,0,-9,-9,2019,6,0,16,20,1,0,0,8.3123751,8.3123751,0,0,0,0,0,0,0,0,1.4397449,0,58.73,40.59,54.2,57.49,10,1,1,0,0,11,10,3,1,3692.5,-640.52539,33263.566,0,0,1886.0559 -9819,12092,21816,21815,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.5205345,7.951087,5.930933,9,-1,-19.856102,0,2,2,2019,8,0,27,27,1,0,0,8.2435989,8.2435989,0,0,0,0,0,0,0,0,5.7432327,5.9060798,54.2,57.49,58.73,40.59,8.333333333333334,1,1,0,0,11,10,3,1,3692.5,-640.52539,33263.566,0,0,1886.0559 -9820,12093,21817,21818,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.9493446,7.8375869,0,8,0,-81.067329,0,-9,-9,2019,9,0,30,30,1,0,0,10.849425,10.849425,0,0,0,0,0,1,1,0,0,0,45.4,56.19,51.21,52.15,8.333333333333334,1,1,0,0,8,13,4,1,734.33331,418484.78,486759.63,213978.16,73887.742,2918.8345 -9820,12093,21818,21817,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.8254719,8.9460411,0,8,0,-133.85857,0,2,2,2019,12,3,44,42,1,3,0,11.190973,11.190973,0,0,0,0,7,1,1,0,2.7778478,0,51.21,52.15,45.4,56.19,8.333333333333334,1,1,0,0,8,13,4,1,734.33331,418484.78,486759.63,213978.16,73887.742,2918.8345 -9820,12093,21819,-9,21817,21818,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-825.81323,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,734.33331,418484.78,486759.63,213978.16,73887.742,2918.8345 -9821,12094,21820,-9,21821,21823,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.93835,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 -9821,12094,21821,21823,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,3.7439914,3.8569026,0,6,0,61.580997,0,2,2,2019,12,2,5,15,1,2,0,1.1718581,1.1718581,0,0,0,0,0,1,1,0,0,0,45.43,52.23,62.39,56.71,8.333333333333334,1,1,0,0,7,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 -9821,12094,21822,-9,21821,21823,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-910.12085,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 -9821,12094,21823,21821,-9,-9,1,1,44,1,3,0,3,3,-9,0,5,7.0264673,7.2333803,0,6,9,-66.213303,0,-9,-9,2019,9,0,12,42,1,0,0,11.036958,11.036958,0,0,0,0,0,1,1,0,0,0,62.39,56.71,45.43,52.23,10,1,1,0,0,5,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 -9821,12094,21824,-9,21821,21823,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.4516,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,680.79999,23078.598,0,368839.81,196436.19,1920.0391 -9822,12095,21825,21826,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.6895189,4.6073112,8,-3,3.3953483,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.6475945,53.64,43.21,42.05,43.34,6.666666666666667,1,1,0,0,0,12,2,1,551.5,76637.195,-61885.992,209693.84,0,1590.9774 -9822,12095,21826,21825,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,8,3,-195.47586,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,43.34,53.64,43.21,6.666666666666667,1,1,0,0,7,12,2,1,551.5,76637.195,-61885.992,209693.84,0,1590.9774 -9823,12096,21827,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.3685741,8.5112953,0,0,0,-968.20526,0,2,2,2019,9,0,37,38,1,0,0,16.422749,16.422749,0,0,0,0,0,1,1,0,0,0,51.01,55.04,-9,-9,8.333333333333334,4,2,0,0,9,5,3,1,657.66669,76381.203,119906.96,160655.56,0,2478.9363 -9823,12096,21828,-9,21827,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.1922,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,3,1,657.66669,76381.203,119906.96,160655.56,0,2478.9363 -9823,12096,21829,-9,21827,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.07538,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,5,3,1,657.66669,76381.203,119906.96,160655.56,0,2478.9363 -9824,12097,21830,-9,21833,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.3436,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 -9824,12097,21831,-9,21833,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.4838,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 -9824,12097,21832,-9,21833,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.97137,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 -9824,12097,21833,-9,-9,-9,1,0,28,0,3,0,2,2,-9,0,4,8.0418053,8.163785,0,0,0,-1000.6711,0,2,3,2019,8,0,30,20,1,0,0,11.411654,11.411654,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,2081,60414.563,66616.977,0,0,2223.3616 -9825,12098,21834,21835,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5095139,8.3351746,0,22,6,-25.827517,0,2,2,2019,7,0,43,37,1,0,0,14.643107,14.643107,0,0,0,0,0,0,0,0,4.0626316,0,58.32,50.22,46.8,55.75,8.333333333333334,3,4,0,0,10,8,5,1,307.5,1064859.4,598095.38,373020.78,0,4504.1226 -9825,12098,21835,21834,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.0615635,8.7335911,0,24,-6,-3.0954416,0,-9,-9,2019,15,5,45,44,1,5,0,17.544748,17.544748,0,0,0,0,0,0,0,0,2.5483794,0,46.8,55.75,58.32,50.22,8.333333333333334,1,1,0,0,10,8,5,1,307.5,1064859.4,598095.38,373020.78,0,4504.1226 -9825,12099,21836,-9,21835,21834,1,0,20,0,0,0,2,2,-9,0,3,7.9175673,7.7026715,0,0,0,-1034.5334,0,1,2,2019,21,9,40,35,1,9,1,7.5554509,7.5554509,0,0,0,0,0,0,0,0,.23210971,0,22.94,65.05,-9,-9,6.666666666666667,4,2,0,0,2,8,3,1,413,-400244.16,-78658.172,0,0,690.10944 -9825,12100,21837,-9,21835,21834,1,0,20,0,0,0,2,2,-9,0,4,7.5129051,7.4156914,0,0,0,-968.14581,0,1,2,2019,8,0,25,30,1,0,1,8.3347464,8.3347464,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,4,2,0,0,3,8,3,1,191,105714.05,0,0,0,1456.7115 -9826,12101,21838,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,8.0255337,7.8362575,0,0,-969.46497,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.0313816,7.9135771,57.16,56.15,-9,-9,10,1,1,0,0,0,6,4,1,3089,862560.81,1006497.9,163576.11,0,1616.5609 -9827,12102,21839,21840,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,62,-6,-58.467388,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9917172,0,49.88,47.22,50.05,40.62,8.333333333333334,1,1,0,0,0,7,2,1,1687,697286.25,223322.98,426571.13,0,1528.9738 -9827,12102,21840,21839,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.678833,7.3273335,62,6,-51.335232,0,3,1,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,1.3221136,7.4938745,50.05,40.62,49.88,47.22,5,1,1,0,0,0,7,2,1,1687,697286.25,223322.98,426571.13,0,1528.9738 -9828,12103,21841,21842,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,10,-2,11.930692,0,-9,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,3.4355886,0,43.1,23.61,58.69,52.64,3.333333333333333,1,1,0,0,8,11,4,0,606.5,1108745.4,1011505.9,105556.77,0,2078.3494 -9828,12103,21842,21841,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.8093748,8.6564579,0,10,2,42.626919,0,3,3,2019,8,0,52,48,1,0,0,12.90392,12.90392,0,0,0,0,0,0,0,0,0,0,58.69,52.64,43.1,23.61,8.333333333333334,1,1,0,0,11,11,4,0,606.5,1108745.4,1011505.9,105556.77,0,2078.3494 -9829,12104,21843,21844,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.3881311,7.230423,5.0993261,44,-8,64.355141,0,3,3,2019,10,0,22,27,1,0,0,8.7394447,8.7394447,0,0,0,0,0,1,1,0,0,5.1631966,55.19,54.26,54.96,53.17,10,1,1,0,0,9,7,3,1,1560,1238292.9,495838.09,525294,0,2851.2324 -9829,12104,21844,21843,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.5002389,7.6728897,0,46,8,-41.069866,0,3,2,2019,7,0,12,20,1,0,0,20.127512,20.127512,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.19,54.26,8.333333333333334,1,1,0,0,9,7,3,1,1560,1238292.9,495838.09,525294,0,2851.2324 -9830,12105,21845,21846,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.5271873,7.6676826,47,1,-61.66293,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1598873,7.6640048,51.47,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,1018.5,762563.75,186773.84,220613.63,0,2451.082 -9830,12105,21846,21845,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.4435344,6.2862616,47,-1,83.312256,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.1790671,6.5165219,57.16,56.15,51.47,53.17,0,1,1,0,0,0,12,3,1,1018.5,762563.75,186773.84,220613.63,0,2451.082 -9831,12106,21847,-9,21849,21850,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.0755,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 -9831,12106,21848,-9,21849,21850,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.92889,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 -9831,12106,21849,21850,-9,-9,1,0,28,1,2,0,3,3,-9,0,4,0,0,0,5,0,40.071373,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51.49,57.57,7,2,3,0,0,0,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 -9831,12106,21850,21849,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.1497669,8.2497349,0,5,9,-78.646187,0,-9,-9,2019,10,0,45,48,1,0,0,9.0214472,9.0214472,0,0,0,0,0,1,1,0,0,0,51.49,57.57,47,57,8.333333333333334,2,3,0,0,9,6,3,1,1626.5,119958.65,110005.03,111561.55,88110.477,1533.7527 -9832,12107,21851,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,1,0,7.7569971,8.0146313,0,0,-955.05487,0,-9,-9,2019,13,3,0,0,4,3,0,0,0,1,6.0648198,15.821986,50.122116,0,1,1,0,2.1093793,7.8233333,51.19,15.16,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1863,656844.94,178075.89,138266.55,0,1961.8326 -9833,12108,21852,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1008.8008,0,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,6.666666666666667,4,2,0,0,2,6,1,0,982.66669,-286414.31,0,0,0,1087.5114 -9833,12108,21853,-9,21852,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.9976,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,1,0,982.66669,-286414.31,0,0,0,1087.5114 -9833,12108,21854,-9,21852,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.50012,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,982.66669,-286414.31,0,0,0,1087.5114 -9834,12109,21855,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,.40783644,.3700273,0,0,-1068.611,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,.42134595,53.9,52.09,-9,-9,8.333333333333334,4,5,1,1,2,10,2,1,2547,240547,-28470.57,0,0,770.4444 -9835,12110,21856,21857,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,6,1,43.95372,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8677549,0,42.8,49.41,55,52,8.333333333333334,1,1,0,0,6,7,3,1,934.5,548926.13,552987.63,142731.88,0,1957.5238 -9835,12110,21857,21856,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.2159414,8.1240683,0,6,-1,-27.615788,0,3,3,2019,8,0,38,37,1,0,0,12.550893,12.550893,0,0,0,0,0,1,1,0,0,0,55,52,42.8,49.41,8,1,1,0,0,1,7,3,1,934.5,548926.13,552987.63,142731.88,0,1957.5238 -9835,12111,21858,-9,21856,-9,1,1,41,0,0,0,2,2,-9,0,4,6.7043357,6.8571019,0,0,0,-997.86835,0,3,-9,2019,9,0,30,30,1,1,0,4.3023887,4.3023887,0,0,0,0,0,1,1,0,7.4599395,0,52,55,-9,-9,7,1,1,0,0,1,7,2,1,157,-31744.518,0,0,0,278.52136 -9835,12112,21859,-9,21856,-9,1,1,44,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.6041,0,3,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,7,1,1,1,0,0,7,1,1,588,80158.133,0,0,0,310.27042 -9836,12113,21860,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,0,0,-951.58679,0,2,1,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,0,7,1,1,574,173417.92,0,0,0,-188.09297 -9837,12114,21861,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.4287653,6.3144007,0,0,-931.29071,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6283891,5.9991636,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,1566,223725.72,161363.48,427896.47,0,1474.2262 -9838,12115,21862,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.8382702,8.7361965,0,0,0,-1007.954,0,1,2,2019,12,3,30,28,1,3,0,26.833738,26.833738,0,0,0,0,0,0,0,0,0,0,37.98,59.7,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,799,624507.13,538274.38,450262.72,32816.629,2485.0647 -9839,12116,21863,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1072.6305,0,2,1,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,0,0,0,5.2202244,0,53.23,42.9,-9,-9,10,1,1,0,0,0,9,1,1,350,-200930.47,0,0,0,-178.32579 -9840,12117,21864,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,2,0,0,0,0,0,-986.26221,0,-9,-9,2019,11,1,0,48,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,52.45,26.21,-9,-9,5,1,1,1,1,3,1,1,0,266,287057.25,0,0,0,491.01709 -9841,12118,21865,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.3660755,7.6009579,0,0,-969.20697,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3773894,7.4396186,50.6,53.68,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,781,403265.72,287422.72,404800.13,66160.523,778.99139 -9842,12119,21866,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.90314,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,2.0244956,5.2332487,24.578629,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,8,1,0,544,110273.2,0,282675.59,0,2769.8396 -9843,12120,21867,21868,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8941002,8.643302,0,30,2,94.70266,0,2,2,2019,6,0,45,45,1,0,0,17.390368,17.390368,0,0,0,0,0,0,0,0,4.0352478,0,57.16,56.15,53.3,55.06,8.333333333333334,1,1,0,0,11,5,5,1,538,739011.13,239139.38,310172.09,58986.938,3641.4146 -9843,12120,21868,21867,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0322342,8.0110817,0,32,-2,94.289894,0,2,1,2019,8,0,37,40,1,0,0,11.59876,11.59876,0,0,0,0,0,0,0,0,3.7777414,0,53.3,55.06,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,538,739011.13,239139.38,310172.09,58986.938,3641.4146 -9843,12121,21869,-9,21868,21867,1,0,25,0,0,0,1,1,-9,0,3,8.1269388,7.6373663,0,0,0,-953.09467,0,2,2,2019,8,0,45,40,1,0,1,6.748076,6.748076,0,0,0,0,0,0,0,0,3.6592577,0,36.13,54.74,-9,-9,6.666666666666667,1,1,0,0,5,5,4,1,495,-228293.73,0,0,0,1282.1471 -9844,12122,21870,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-926.89569,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.31,41.6,-9,-9,3.333333333333333,1,1,0,0,8,12,1,0,813,-88718.703,0,0,0,1716.6844 -9845,12123,21871,21873,-9,-9,1,0,29,1,1,0,1,1,-9,0,2,0,0,0,7,0,12.0989,0,-9,-9,2019,17,5,0,42,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,34.81,57.16,56.15,8.333333333333334,1,1,0,0,3,11,5,1,405,247016.08,82465.242,172127.88,49241.98,3814.8069 -9845,12123,21872,-9,21871,21873,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.4863,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,405,247016.08,82465.242,172127.88,49241.98,3814.8069 -9845,12123,21873,21871,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.8763123,9.2242575,0,7,9,-52.01968,0,2,2,2019,11,0,60,50,1,0,0,16.381765,16.381765,0,0,0,0,27,1,1,0,6.8151803,0,57.16,56.15,39.56,34.81,8.333333333333334,1,1,0,0,8,11,5,1,405,247016.08,82465.242,172127.88,49241.98,3814.8069 -9846,12124,21874,21875,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.6425915,7.5981965,9,-2,-20.503511,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,5.1406541,8.0050983,49,48,62.18,36.18,7,1,1,0,0,0,12,4,1,710,1879277.4,1100856.3,367747.69,0,3053.3933 -9846,12124,21875,21874,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.0427485,8.5353079,43,2,.0036928116,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,8.6302252,62.18,36.18,49,48,8.333333333333334,1,1,0,0,7,12,4,1,710,1879277.4,1100856.3,367747.69,0,3053.3933 -9847,12125,21876,-9,21877,21878,1,1,22,0,0,0,2,2,-9,0,4,7.8630333,7.9457126,0,0,0,-1111.1293,0,2,1,2019,10,0,39,9,1,1,1,6.4578195,6.4578195,0,0,0,0,0,0,0,0,3.3742182,0,49,58,-9,-9,7,4,2,0,0,1,8,3,1,284,-341908.72,0,0,0,1427.0145 -9847,12126,21877,21878,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3432035,7.9845324,0,4,-1,-13.848716,0,-9,-9,2019,8,0,40,40,1,0,0,10.972401,10.972401,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53,54,6.666666666666667,1,1,0,0,5,8,5,1,988,580665.69,113447.19,294001.34,57827.387,3926.5093 -9847,12126,21878,21877,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.67488,8.6291552,0,4,1,-49.221378,0,-9,-9,2019,9,0,40,50,1,1,0,13.994608,13.994608,0,0,0,0,0,0,0,0,0,0,53,54,48.28,60.18,8,4,1,0,0,1,8,5,1,988,580665.69,113447.19,294001.34,57827.387,3926.5093 -9848,12127,21879,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,8.2418461,7.9998894,0,0,-966.4541,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3240509,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,3385,497682.13,571555.06,0,0,2458.4773 -9849,12128,21880,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.1012921,7.4641457,0,0,0,-1013.7845,0,2,1,2019,14,2,18,18,1,2,0,9.5677252,9.5677252,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,1213,-160886.48,-4499.8218,0,0,1673.4471 -9849,12129,21881,-9,21880,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1069.7446,-9,2,-9,2019,14,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,38.32,59.33,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,222,455849.25,0,0,0,510.42548 -9849,12130,21882,-9,21880,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-972.5365,-9,2,-9,2019,24,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,39.22,53.61,-9,-9,5,1,1,0,0,2,10,1,1,224,224226.77,0,0,0,0 -9850,12131,21883,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.1838307,5.97858,0,0,-831.95264,0,3,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8208017,5.7837343,62.51,44.7,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,774,-24609.377,81677.188,156565.83,0,1128.7841 -9851,12132,21884,21885,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.5851307,8.135252,52,-1,-12.27326,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4258585,8.5086212,61.58,43.34,58.15,52.91,8.333333333333334,1,1,0,0,0,4,4,1,623,1620246.9,733060.69,281259.19,0,3138.0801 -9851,12132,21885,21884,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,52,1,135.75471,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1438813,0,58.15,52.91,61.58,43.34,10,1,1,0,0,0,4,4,1,623,1620246.9,733060.69,281259.19,0,3138.0801 -9852,12133,21886,21887,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0867434,8.1574907,0,27,4,-63.560928,0,2,2,2019,9,0,40,37,1,0,0,9.1353455,9.1353455,0,0,0,0,0,0,0,0,0,0,55.3,55.6,47.58,56.39,8.333333333333334,1,1,0,0,9,4,3,1,398.5,1152164.9,971715.13,311765.13,0,1660.7363 -9852,12133,21887,21886,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,4.0356097,5.7890925,5.8533945,27,-4,-34.125652,0,1,2,2019,9,0,1,1,1,0,0,5.1053224,5.1053224,0,0,0,0,2,0,0,0,5.2454286,0,47.58,56.39,55.3,55.6,6.666666666666667,1,1,0,0,9,4,3,1,398.5,1152164.9,971715.13,311765.13,0,1660.7363 -9852,12134,21888,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.0957394,7.6974859,0,0,0,-957.86517,0,1,2,2019,8,0,44,42,1,0,0,6.8369737,6.8369737,0,0,0,.38314146,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,3796,364688.63,-128481.28,80125.148,0,788.31537 -9853,12135,21889,-9,21890,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.05334,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,0,448,552.20313,30210.438,0,0,1485.9341 -9853,12135,21890,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.9417672,8.023572,0,0,0,-1069.4873,0,3,3,2019,27,8,45,52,1,8,0,8.7766228,8.7766228,0,0,0,0,0,1,1,0,0,0,47.7,38.79,-9,-9,3.333333333333333,3,4,0,1,3,2,3,0,448,552.20313,30210.438,0,0,1485.9341 -9854,12136,21891,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.1835241,8.4666042,0,0,0,-1071.342,0,1,1,2019,0,0,38,40,1,0,0,8.5495434,8.5495434,0,0,0,0,0,0,0,0,0,0,61.68,26.01,-9,-9,3.333333333333333,3,4,0,0,5,4,4,0,1216,232371.77,121720.3,166554.5,78122.93,1530.1118 -9854,12137,21892,-9,21891,-9,1,1,22,0,0,0,2,2,-9,0,4,7.5802693,7.644053,0,0,0,-934.0827,-9,1,2,2019,10,0,40,0,1,1,1,4.8548603,4.8548603,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,4,3,0,460,-63880.543,0,0,0,1093.2487 -9854,12138,21893,-9,21891,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-916.38367,-9,1,-9,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,4,2,0,0,0,4,1,0,843,128933.58,0,0,0,0 -9855,12139,21894,-9,21895,21896,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-813.66235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,838.33331,330872.59,-8270.6084,164602.7,111165.46,2893.6675 -9855,12139,21895,21896,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.7478719,6.4759264,0,6,17,-61.836224,-9,3,2,2019,9,0,50,0,1,0,0,1.6800921,1.6800921,0,0,0,0,0,1,1,0,0,0,44.19,58.01,48.14,53.42,8.333333333333334,1,1,0,0,11,4,4,1,838.33331,330872.59,-8270.6084,164602.7,111165.46,2893.6675 -9855,12139,21896,21895,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.8513947,8.5054417,0,1,-17,-22.730917,-9,-9,-9,2019,11,1,44,0,1,1,0,16.136816,16.136816,0,0,0,0,0,1,1,0,6.2539597,0,48.14,53.42,44.19,58.01,6.666666666666667,1,1,0,0,11,4,4,1,838.33331,330872.59,-8270.6084,164602.7,111165.46,2893.6675 -9855,12140,21897,-9,21895,21896,1,0,19,0,1,0,2,2,-9,0,5,8.1396589,7.8867359,0,0,0,-968.51886,-9,2,2,2019,11,0,30,0,1,0,1,11.932117,11.932117,0,0,0,0,0,1,1,0,1.0004927,0,57.06,57.76,-9,-9,10,1,1,0,0,2,4,4,1,1498,234915.83,-97391.359,0,0,1545.5004 -9856,12141,21898,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-885.65399,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,2,3,0,0,0,8,1,0,366,758145.25,0,206330.23,0,490.83743 -9857,12142,21899,21900,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,8.5897675,8.524375,45,-1,-29.646116,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0517623,8.3953257,60.23,40.24,62.39,56.71,8.333333333333334,1,1,0,0,5,7,4,1,567,1662506,1138444.3,501122.75,0,2804.5493 -9857,12142,21900,21899,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,0,0,45,1,-36.290741,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.23,40.24,8.333333333333334,1,1,0,0,5,7,4,1,567,1662506,1138444.3,501122.75,0,2804.5493 -9858,12143,21901,-9,21903,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.01282,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,684,-131292.89,-51664.434,0,0,2088.7693 -9858,12143,21902,-9,21903,-9,1,0,16,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1072.474,-9,2,-9,2019,27,11,0,0,2,11,0,0,0,0,0,0,0,0,1,0,1,0,0,13.29,54.11,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,684,-131292.89,-51664.434,0,0,2088.7693 -9858,12143,21903,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,2,0,7.1196227,6.956109,0,0,-1020.2484,0,1,1,2019,19,7,0,22,3,7,0,0,0,0,0,0,0,74.5,1,0,1,6.5971599,0,29.41,54.63,-9,-9,1.666666666666667,1,1,0,1,10,5,2,1,684,-131292.89,-51664.434,0,0,2088.7693 -9859,12144,21904,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.606101,8.5079107,0,0,0,-993.44641,0,2,-9,2019,8,0,65,57,1,0,0,10.818202,10.818202,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,11,10,5,0,753,-149935.48,234080.55,203772.77,112982.46,2678.7632 -9860,12145,21905,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9152551,7.6503758,0,0,-994.42682,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.60449922,7.6489882,57.33,53.46,-9,-9,10,1,1,0,0,0,8,3,1,1001,-59552.453,364840.91,224204.39,0,1824.9332 -9861,12146,21906,21907,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.62535,8.5295935,0,8,2,-21.239132,0,3,-9,2019,6,0,40,38,1,0,0,17.438032,17.438032,0,0,0,0,0,0,0,0,1.0788398,0,57.06,57.76,45.81,61.51,10,1,1,0,0,9,12,5,1,702,644392.63,180238.44,255015.69,125863.61,4134.6187 -9861,12146,21907,21906,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.6229296,8.7557659,0,8,-2,31.343645,0,2,2,2019,12,0,55,60,1,0,0,10.833364,10.833364,0,0,0,0,0,0,0,0,2.4598958,0,45.81,61.51,57.06,57.76,6.666666666666667,1,1,0,0,9,12,5,1,702,644392.63,180238.44,255015.69,125863.61,4134.6187 -9862,12147,21908,-9,21911,21910,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.2688,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 -9862,12147,21909,-9,21911,21910,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.73364,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 -9862,12147,21910,21911,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.1513853,8.0654478,0,15,0,132.71155,0,1,1,2019,11,1,50,30,1,1,0,10.907026,10.907026,0,0,0,0,0,0,0,0,0,0,56.5,48.33,58.55,51.64,8.333333333333334,2,3,0,0,9,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 -9862,12147,21911,21910,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,0,0,0,15,0,110.71246,0,2,1,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,8.1803732,0,58.55,51.64,56.5,48.33,8.333333333333334,1,1,0,0,0,6,3,1,675.75,325231.81,219602.73,148129.66,105517.08,4120.7939 -9863,12148,21912,21913,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,9,-3,-96.279266,0,2,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,10.56,40.31,41.62,47.22,10,1,1,0,1,6,11,5,1,448,1210735.8,798403.69,426972,19309.121,2707.1758 -9863,12148,21913,21912,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.9548512,8.7516956,0,9,3,-63.011875,0,2,2,2019,8,0,40,41,1,0,0,22.91345,22.91345,0,0,0,0,7,1,1,0,0,0,41.62,47.22,10.56,40.31,1.666666666666667,1,1,0,1,10,11,5,1,448,1210735.8,798403.69,426972,19309.121,2707.1758 -9863,12149,21914,-9,21912,21913,1,0,22,0,0,0,2,2,-9,1,1,0,0,0,0,0,-933.33167,0,2,1,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,42.45,12.16,-9,-9,0,1,1,0,1,0,11,1,1,185,134664.56,0,0,0,357.52051 -9863,12150,21915,-9,21912,21913,1,1,20,0,0,0,2,2,-9,0,2,4.8142209,4.5771046,0,0,0,-954.90088,0,2,1,2019,21,7,40,0,1,7,1,.25509337,.25509337,0,0,0,0,86,1,1,0,0,0,42.53,29.43,-9,-9,1.666666666666667,1,1,0,1,1,11,2,1,324,253089.11,0,0,0,27.756607 -9864,12151,21916,-9,21918,21917,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1028.0038,-9,1,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.03,43.77,-9,-9,0,1,1,0,0,1,10,4,0,473.66666,112473.15,40684.285,303271.31,96460.594,2991.6763 -9864,12151,21917,21918,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,8.5074034,8.2674809,0,10,-8,29.146841,0,2,2,2019,18,6,40,0,1,6,0,10.681052,10.681052,0,0,0,0,0,1,1,0,0,0,32.88,53.63,45.37,28.07,6.666666666666667,1,1,0,0,11,10,4,0,473.66666,112473.15,40684.285,303271.31,96460.594,2991.6763 -9864,12151,21918,21917,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.5018954,7.6606851,0,10,8,-51.874496,0,2,2,2019,21,8,34,30,1,8,0,6.1230068,6.1230068,0,0,0,0,0,1,1,0,0,0,45.37,28.07,32.88,53.63,3.333333333333333,1,1,0,0,9,10,4,0,473.66666,112473.15,40684.285,303271.31,96460.594,2991.6763 -9864,12152,21919,-9,21918,21917,1,1,21,0,0,0,2,2,-9,0,4,6.9248314,7.0269499,0,0,0,-871.38794,0,1,2,2019,11,0,35,30,1,2,1,3.6528461,3.6528461,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,1,10,2,0,1540,-206506.13,-23628.473,0,0,-44.536034 -9865,12153,21920,-9,21921,21923,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.5315,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 -9865,12153,21921,21923,-9,-9,1,0,30,0,3,0,2,2,-9,1,1,6.4433351,6.4287004,4.582726,12,-11,-150.40347,0,2,1,2019,23,9,12,16,1,9,0,6.8268585,6.8268585,0,0,0,0,0,1,1,0,4.412488,0,41.07,16.67,43.4,55.65,3.333333333333333,1,1,0,0,7,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 -9865,12153,21922,-9,21921,21923,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1132.7415,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 -9865,12153,21923,21921,-9,-9,1,1,41,0,3,0,2,2,-9,0,4,8.3636007,8.321269,0,12,11,58.671001,0,2,3,2019,15,3,38,38,1,3,0,14.419256,14.419256,0,0,0,0,2,1,1,0,.13410342,0,43.4,55.65,41.07,16.67,5,1,1,0,0,8,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 -9865,12153,21924,-9,21921,21923,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1144.8179,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,0,846.40002,-23967.396,0,119169,139934.34,2874.9136 -9866,12154,21925,21926,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,3.7579434,4.2758012,47,-5,-150.2944,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6181431,4.635479,51.02,52.22,49.25,61.25,10,1,1,0,0,3,10,2,1,1103.5,158318.02,93276.438,261417,0,2035.3716 -9866,12154,21926,21925,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,6.9787331,6.6239223,47,5,-45.516422,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8197885,7.0167055,49.25,61.25,51.02,52.22,8.333333333333334,1,1,0,0,0,10,2,1,1103.5,158318.02,93276.438,261417,0,2035.3716 -9867,12155,21927,21928,-9,-9,1,0,48,0,1,0,3,3,-9,0,2,0,0,0,7,0,25.277916,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,38.26,60.62,41.03,6.666666666666667,1,1,0,0,0,9,2,0,371,278513.63,-23920.531,439705.78,89365.906,1670.4691 -9867,12155,21928,21927,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,7.534142,7.7548676,0,7,0,176.02814,0,-9,-9,2019,6,0,30,31,1,0,0,6.9006534,6.9006534,0,0,0,0,0,1,1,0,0,0,60.62,41.03,46.8,38.26,5,1,1,0,0,2,9,2,0,371,278513.63,-23920.531,439705.78,89365.906,1670.4691 -9868,12156,21929,21930,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.1331015,8.2622585,47,0,27.068197,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0734901,8.124835,60.12,54.8,61.12,51.57,8.333333333333334,1,1,0,0,0,1,3,1,439,1445610.6,1068962,373013.06,0,3471.1226 -9868,12156,21930,21929,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.1003561,5.3579431,6,0,138.03427,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.886313,4.7033134,61.12,51.57,60.12,54.8,8.333333333333334,1,1,0,0,0,1,3,1,439,1445610.6,1068962,373013.06,0,3471.1226 -9869,12157,21931,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.259151,6.3714595,0,0,-976.84521,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9474368,6.452014,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,10,1,2,1,264,368330.44,405287.72,188026.69,0,1389.5846 -9870,12158,21932,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.1993299,7.4431581,0,0,-1000.9022,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.1737199,6.9138136,61.44,32.61,-9,-9,10,2,3,0,0,0,8,2,1,667,827231.81,130119.71,730852.81,0,860.40161 -9871,12159,21933,-9,21935,21934,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.49103,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 -9871,12159,21934,21935,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,7.7584929,7.7236814,0,18,-2,208.6136,0,2,2,2019,12,0,32,32,1,0,0,9.1188774,9.1188774,0,0,0,0,0,1,1,0,0,0,43.62,50.48,36.57,52.23,6.666666666666667,2,3,0,0,12,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 -9871,12159,21935,21934,-9,-9,1,0,44,0,3,0,2,2,-9,0,3,8.1555586,8.4350624,0,18,2,-117.37173,0,-9,-9,2019,24,12,38,30,1,12,0,14.952094,14.952094,0,0,0,0,0,1,1,0,0,0,36.57,52.23,43.62,50.48,6.666666666666667,2,3,0,0,11,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 -9871,12159,21936,-9,21935,21934,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1089.8179,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 -9871,12159,21937,-9,21935,21934,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.44476,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,3,1,782.79999,380815.81,201737.91,321050.06,193323.55,2754.2422 -9872,12160,21938,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1031.4248,0,3,3,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,49.56,12.91,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,258,-297751.28,64328.668,0,0,1107.2701 -9873,12161,21939,21940,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,7,-5,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.76,41.18,51,46,3.333333333333333,1,1,0,0,0,13,1,1,421,-155628.45,0,0,0,2042.1816 -9873,12161,21940,21939,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,7,5,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,7.2399426,0,0,1,1,0,0,0,51,46,40.76,41.18,7,1,1,0,0,0,13,1,1,421,-155628.45,0,0,0,2042.1816 -9874,12162,21941,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-989.211,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,3.1027954,0,26.068804,0,1,1,0,0,0,35.46,15.4,-9,-9,0,1,1,0,0,0,13,1,0,121,-31490.596,83764.164,0,0,1381.295 -9875,12163,21942,-9,21944,21945,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.202,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 -9875,12163,21943,-9,21944,21945,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0051,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 -9875,12163,21944,21945,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,9.3222446,9.4994764,0,9,-5,-88.879845,0,1,1,2019,7,0,32,32,1,0,0,37.743477,37.743477,0,0,0,0,0,0,0,0,1.9617014,0,54.74,57.22,45.66,57.21,8.333333333333334,4,5,0,0,7,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 -9875,12163,21945,21944,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.1066399,9.2005434,0,9,5,7.8453069,0,2,2,2019,11,2,42,37,1,2,0,25.148289,25.148289,0,0,0,0,0,0,0,0,.79035121,0,45.66,57.21,54.74,57.22,8.333333333333334,1,1,0,0,7,8,5,1,567.75,1129977.6,166104.27,522471.03,260250.58,6326.5303 -9876,12164,21946,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.8772306,8.3715706,0,5,18,103.61742,0,3,3,2019,9,0,50,50,1,0,0,12.363898,12.363898,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,52.35,8.333333333333334,1,1,0,0,8,4,5,1,468,460596.25,512710.09,124193.88,91735.664,1825.6697 -9876,12165,21947,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.7997408,8.536746,0,5,-18,-80.512695,0,2,2,2019,9,0,64,50,1,0,0,9.2333021,9.2333021,0,0,0,0,0,0,0,0,0,0,54,52.35,57.16,56.15,8.333333333333334,1,1,0,0,7,4,5,1,235,-78802.961,-49804.074,60270.742,63257.469,2309.0667 -9877,12166,21948,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.7463417,9.0763693,0,0,0,-909.21777,0,2,2,2019,11,0,37,35,1,0,0,28.940369,28.940369,0,0,0,0,0,0,0,0,0,0,31.29,61.29,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,10097,-60985.629,117279.35,207264.86,103788.58,2520.8206 -9878,12167,21949,-9,21951,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.13159,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,333,121479.88,7451.5654,190740.39,86960.18,1111.8435 -9878,12167,21950,-9,21951,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.7767,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,333,121479.88,7451.5654,190740.39,86960.18,1111.8435 -9878,12167,21951,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.0111446,8.3913622,0,0,0,-914.71997,0,2,2,2019,14,4,38,37,1,4,0,11.305352,11.305352,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,1,3,6,3,1,333,121479.88,7451.5654,190740.39,86960.18,1111.8435 -9879,12168,21952,21954,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,8.3196783,7.8732328,0,6,7,-32.755512,0,1,2,2019,9,0,40,40,1,0,0,9.6447382,9.6447382,0,0,0,0,2,1,1,0,3.1877787,0,55.6,47.8,54.2,57.49,8.333333333333334,1,1,0,0,7,13,5,1,636.33331,195045.3,253908.72,141205.81,149943.55,4404.4819 -9879,12168,21953,-9,21954,21952,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.0345,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,636.33331,195045.3,253908.72,141205.81,149943.55,4404.4819 -9879,12168,21954,21952,-9,-9,1,0,38,0,1,0,1,1,-9,1,4,8.9126463,8.7398472,0,6,-7,67.800285,0,-9,-9,2019,9,1,55,69,1,1,0,20.123327,20.123327,0,0,0,0,0,1,1,0,6.5093923,0,54.2,57.49,55.6,47.8,6.666666666666667,1,1,0,0,9,13,5,1,636.33331,195045.3,253908.72,141205.81,149943.55,4404.4819 -9879,12169,21955,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,2,0,0,0,0,0,-971.95245,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,-9,-9,6.666666666666667,1,1,0,1,0,13,1,1,1100,382751.72,99055.867,0,0,854.33643 -9880,12170,21956,21957,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,0,0,0,36,0,-106.23592,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,4.4605994,0,47.78,36.16,57.48,38.19,8.333333333333334,1,1,0,0,4,1,4,1,191.5,917329.75,802344.13,134872.33,22095.811,2306.2427 -9880,12170,21957,21956,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.7531347,8.889884,0,36,0,-79.031853,0,3,2,2019,8,0,38,37,1,0,0,16.532196,16.532196,0,0,0,0,0,0,0,0,3.8662887,0,57.48,38.19,47.78,36.16,8.333333333333334,1,1,0,0,9,1,4,1,191.5,917329.75,802344.13,134872.33,22095.811,2306.2427 -9880,12171,21958,-9,21957,21956,1,1,25,0,0,0,2,2,-9,0,5,8.2528095,8.4264946,0,0,0,-1012.1337,0,2,2,2019,0,0,45,0,1,0,1,7.7270937,7.7270937,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,1,4,1,288,-15.890862,0,0,0,1961.5596 -9881,12172,21959,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.5281887,7.4607797,0,0,-1117.9691,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3882828,7.2428117,57.06,57.76,-9,-9,10,1,1,0,0,9,2,3,1,1487,612401.31,326481.22,47282.555,0,3479.2261 -9882,12173,21960,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.8424973,7.6860337,0,0,0,-914.80182,0,2,2,2019,9,0,47,0,1,0,0,6.4643455,6.4643455,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,2,11,3,0,295,-385913.06,124366.69,170635.98,26851.297,1989.9463 -9883,12174,21961,21962,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.0252843,6.2578745,37,8,43.476017,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.138495,59.97,43.87,54.05,8.050000000000001,10,1,1,0,0,0,4,2,1,550.5,504161.75,154869.7,120844.14,0,2000.3907 -9883,12174,21962,21961,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,37,-8,56.374886,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.05,8.050000000000001,59.97,43.87,6.666666666666667,1,1,0,0,0,4,2,1,550.5,504161.75,154869.7,120844.14,0,2000.3907 -9884,12175,21963,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7285972,7.3325562,0,0,0,-949.76373,0,3,3,2019,11,0,30,30,1,0,0,7.3536267,7.3536267,0,0,0,0,0,1,1,0,0,0,49.05,39.59,-9,-9,8.333333333333334,1,1,0,0,11,13,3,1,655,115813.34,0,104063.58,24195.342,1306.8212 -9885,12176,21964,21965,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.3983555,8.5704107,0,3,3,-44.85495,0,2,2,2019,7,0,37,38,1,0,0,16.535292,16.535292,0,0,0,0,0,0,0,0,3.2449708,0,55.73,53.98,54.79,55.86,8.333333333333334,1,1,0,0,7,9,5,1,1281.5,66126.375,61046.617,280215.13,216491.31,3896.4009 -9885,12176,21965,21964,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5681305,8.3215656,0,3,-3,2.6791761,0,-9,-9,2019,9,0,35,35,1,0,0,16.627239,16.627239,0,0,0,0,0,0,0,0,3.8526025,0,54.79,55.86,55.73,53.98,8.333333333333334,4,2,0,0,5,9,5,1,1281.5,66126.375,61046.617,280215.13,216491.31,3896.4009 -9886,12177,21966,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5038424,7.2827201,0,0,0,-919.09564,0,2,2,2019,12,0,39,35,1,0,0,5.0286593,5.0286593,0,0,0,0,0,0,0,0,0,0,40.75,58.26,-9,-9,3.333333333333333,1,1,0,0,9,1,3,1,3798,864142.63,162510.69,210333.27,0,966.22064 -9887,12178,21967,21968,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.5490646,8.4843445,5.4514914,40,2,35.763107,0,2,1,2019,10,0,4,7,1,0,0,157.92804,157.92804,0,0,0,0,7,0,0,0,5.8882775,0,54.07,49.4,51.24,58.84,8.333333333333334,1,1,0,0,10,8,5,1,589.5,2643803.5,1771552.9,738213.63,0,8626.1826 -9887,12178,21968,21967,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.8872986,9.5233545,8.6287575,8,-2,-46.08765,0,-9,-9,2019,10,1,26,45,1,1,0,26.82122,26.82122,0,0,0,0,2,0,0,0,6.4283075,8.9253378,51.24,58.84,54.07,49.4,8.333333333333334,1,1,0,0,10,8,5,1,589.5,2643803.5,1771552.9,738213.63,0,8626.1826 -9887,12179,21969,-9,21967,21968,1,1,27,0,0,0,1,1,-9,0,5,8.1897287,8.0835495,0,0,0,-1053.7548,0,1,1,2019,11,0,35,35,1,0,1,10.712327,10.712327,0,0,0,0,0,0,0,0,3.4065053,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,709,-102648.08,72792.523,0,0,1928.1521 -9888,12180,21970,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,7.7264051,7.7176604,0,0,0,-979.13464,-9,-9,3,2019,5,0,38,0,1,0,1,4.7032881,4.7032881,0,0,0,0,0,1,1,0,0,0,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,5,1,3,1,1416,-93361.508,0,0,0,1053.9352 -9889,12181,21971,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,5.290771,5.2524061,0,0,-964.82678,0,2,2,2019,19,7,0,24,4,7,0,0,0,0,0,0,0,14.5,1,1,0,0,5.7053108,28.73,39.77,-9,-9,5,1,1,0,0,10,13,2,1,420,36645.672,0,0,0,660.56909 -9890,12182,21972,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.8373122,6.1738935,0,0,-987.10529,0,2,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,120,1,1,0,2.693996,5.9187675,33.31,51.41,-9,-9,6.666666666666667,1,1,0,1,3,7,2,1,354,118325.79,8006.6226,0,0,-83.183502 -9891,12183,21973,21974,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,52,-2,-86.256142,0,3,3,2019,11,0,0,14,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1777091,0,55.34,48.72,53.92,52.23,10,1,1,0,0,8,9,2,1,861,229570.16,13839.914,253344.5,0,905.03259 -9891,12183,21974,21973,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.6980228,5.471694,52,2,8.0993433,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5622125,53.92,52.23,55.34,48.72,8.333333333333334,1,1,0,0,0,9,2,1,861,229570.16,13839.914,253344.5,0,905.03259 -9892,12184,21975,21977,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.8627887,8.0408201,0,4,8,-55.996185,0,2,-9,2019,23,7,45,40,1,7,0,8.2569666,8.2569666,0,0,0,0,0,1,1,0,0,0,59.9,39.94,19.26,56.49,3.333333333333333,1,1,0,1,12,2,4,1,344.66666,447544.78,20060.883,145885.98,42840.121,2926.5596 -9892,12184,21976,-9,21977,21975,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.40033,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,344.66666,447544.78,20060.883,145885.98,42840.121,2926.5596 -9892,12184,21977,21975,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.9339561,8.0011454,4.5810714,4,-8,-30.223047,0,-9,-9,2019,26,10,6,10,1,10,0,54.968201,54.968201,0,0,0,0,0,1,1,0,4.6733122,0,19.26,56.49,59.9,39.94,3.333333333333333,1,1,0,0,5,2,4,1,344.66666,447544.78,20060.883,145885.98,42840.121,2926.5596 -9893,12185,21978,21979,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,11,-5,0,0,3,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.78,30.61,48.53,36.1,8.333333333333334,1,1,0,0,3,10,1,0,116,120657.24,-5443.4141,258984.06,60250.402,2261.3022 -9893,12185,21979,21978,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,11,5,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,48.53,36.1,36.78,30.61,6.666666666666667,1,1,0,0,10,10,1,0,116,120657.24,-5443.4141,258984.06,60250.402,2261.3022 -9894,12186,21980,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.513638,6.6111631,0,0,-1015.1474,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6183028,61.29,43.34,-9,-9,3.333333333333333,3,4,0,0,11,7,2,1,2109,-46124.035,0,0,0,705.73199 -9895,12187,21981,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.7351522,7.6173172,6.2608528,0,0,-1131.1381,0,3,3,2019,11,0,32,39,1,0,0,6.3743167,6.3743167,0,0,0,0,0,1,1,0,0,6.2090802,47.07,53.97,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,254,51993.215,32428.426,-46767.012,0,841.59338 -9896,12188,21982,21983,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.4209318,8.6069031,0,21,-2,25.908792,0,2,2,2019,12,0,36,36,1,0,0,15.178256,15.178256,0,0,0,0,2,0,0,0,3.098701,0,39.33,46.92,53,55,5,2,3,0,0,11,8,5,1,645.5,271718.44,98738.328,258586.53,50016.578,3526.6304 -9896,12188,21983,21982,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3309841,8.6622734,0,21,2,-34.916233,-9,2,2,2019,9,0,42,0,1,1,0,9.6652088,9.6652088,0,0,0,0,0,0,0,0,0,0,53,55,39.33,46.92,8,2,3,0,0,1,8,5,1,645.5,271718.44,98738.328,258586.53,50016.578,3526.6304 -9896,12189,21984,-9,21982,21983,1,0,25,0,0,0,1,1,-9,0,4,8.1450253,7.9423685,0,0,0,-963.63324,0,2,2,2019,8,0,46,35,1,0,1,10.834071,10.834071,0,0,0,0,0,0,0,0,0,0,43.96,62.06,-9,-9,8.333333333333334,2,3,0,0,6,8,4,1,383,377998.13,-65396.684,0,0,1319.7561 -9896,12190,21985,-9,21982,21983,1,1,20,0,0,0,2,2,1,0,4,8.3235455,8.0751553,0,0,0,-984.97681,-9,2,2,2019,11,0,20,0,1,2,1,23.596996,23.596996,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,4,1,1027,-140991.56,-116314.26,0,0,1715.6331 -9897,12191,21986,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.3780303,6.6204858,0,0,-858.54089,0,3,3,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,6.4236031,36.03,51.13,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,605,314592.94,8079.0972,132969.36,0,266.61542 -9898,12192,21987,21988,-9,-9,1,0,29,0,0,0,1,1,0,0,4,0,0,0,3,-4,-135.36714,-9,-9,-9,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,62.06,60.02,56.42,8.333333333333334,4,2,0,0,3,9,5,1,571,293313.38,66887.969,307283.75,188990,3806.1753 -9898,12192,21988,21987,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.0831766,9.0665703,0,3,4,-61.637272,0,2,2,2019,7,0,39,39,1,0,0,22.26001,22.26001,0,0,0,0,0,1,1,0,0,0,60.02,56.42,43.96,62.06,8.333333333333334,1,1,0,0,10,9,5,1,571,293313.38,66887.969,307283.75,188990,3806.1753 -9899,12193,21989,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1028.1179,-9,-9,-9,2019,20,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,30.7,41.19,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,109,200998.48,0,0,0,0 -9900,12194,21990,21991,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5614405,8.5861015,0,28,2,-66.405792,0,2,2,2019,12,0,40,38,1,0,0,11.872166,11.872166,0,0,0,0,0,0,0,0,0,0,51.4,46.55,60.13,46.57,6.666666666666667,1,1,0,0,12,10,5,1,735.5,1967157.8,1230365.4,464416.47,0,6355.6074 -9900,12194,21991,21990,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,9.1533346,8.8226433,0,28,-2,-34.167439,0,2,2,2019,13,1,38,-9,1,1,0,28.894445,28.894445,0,0,0,0,0,0,0,0,0,0,60.13,46.57,51.4,46.55,8.333333333333334,1,1,0,0,12,10,5,1,735.5,1967157.8,1230365.4,464416.47,0,6355.6074 -9900,12195,21992,-9,21991,21990,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-974.10504,-9,2,2,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49.86,52.97,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,735,245205.13,0,0,0,0 -9901,12196,21993,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8591471,7.7792954,0,0,0,-996.39539,0,3,3,2019,32,12,39,39,1,12,0,6.8715415,6.8715415,0,0,0,0,0,0,0,0,0,0,18.85,57.64,-9,-9,1.666666666666667,1,1,0,0,12,9,3,1,379,175442.69,63783.246,0,0,1026.2997 -9902,12197,21994,21995,-9,-9,1,1,28,0,0,0,2,2,1,1,4,0,0,0,1,1,-43.754452,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,59.55,23.15,7,2,3,0,1,4,8,3,0,528.5,145002.41,46754.648,175840.86,144024.13,1155.6262 -9902,12197,21995,21994,-9,-9,1,0,27,0,0,0,2,2,1,0,1,8.3039017,8.0433464,0,1,-1,114.84311,-9,-9,-9,2019,20,0,15,0,1,7,0,30.772177,30.772177,0,0,0,0,0,0,0,0,0,0,59.55,23.15,50,57,10,2,3,0,0,1,8,3,0,528.5,145002.41,46754.648,175840.86,144024.13,1155.6262 -9903,12198,21996,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.77087,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,31.481174,0,0,1,1,0,0,0,55.44,33.59,-9,-9,10,1,1,0,0,0,13,1,1,1162,-10589.02,0,0,0,818.23676 -9904,12199,21997,21998,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7878499,8.4865131,0,34,-2,-16.1464,0,2,1,2019,9,0,38,41,1,0,0,10.789101,10.789101,0,0,0,0,0,0,0,0,3.0135169,0,52.31,58.29,54.2,57.49,8.333333333333334,1,1,0,0,12,5,5,1,476,-246697.19,118100.62,165682.53,85757.5,2696.0796 -9904,12199,21998,21997,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6613197,8.7136412,0,32,2,26.890894,0,2,2,2019,10,0,45,45,1,0,0,12.853894,12.853894,0,0,0,0,0,0,0,0,5.7094154,0,54.2,57.49,52.31,58.29,10,1,1,0,0,12,5,5,1,476,-246697.19,118100.62,165682.53,85757.5,2696.0796 -9904,12200,21999,-9,21997,21998,1,0,27,0,0,0,1,1,-9,0,3,7.7898293,7.9245911,0,0,0,-997.41382,0,2,2,2019,13,2,42,40,1,2,1,6.5187531,6.5187531,0,0,0,0,0,0,0,0,3.9623787,0,33.12,61.85,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,731,69401.961,0,0,0,315.91241 -9905,12201,22000,22001,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,0,0,62,8,-75.535805,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,5.291853,0,0,1,1,0,0,0,72.59,14.07,53,44,10,1,1,0,0,0,2,2,1,608,120782.48,-78078.828,117089.69,0,958.64606 -9905,12201,22001,22000,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.6331577,5.5765057,62,-8,-1.8562341,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5769634,53,44,72.59,14.07,8,1,1,0,0,0,2,2,1,608,120782.48,-78078.828,117089.69,0,958.64606 -9906,12202,22002,22003,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,8,-5,130.16292,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,62.49,55.09,1.666666666666667,1,1,0,0,7,1,3,1,544,434998.31,283446.84,153037.33,0,1964.3975 -9906,12202,22003,22002,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,7.2691197,7.3611426,5.5932941,8,5,20.416065,0,3,3,2019,6,0,14,40,1,0,0,15.013053,15.013053,0,0,0,0,0,1,1,0,5.1649804,5.7997608,62.49,55.09,54.2,57.49,10,1,1,0,0,9,1,3,1,544,434998.31,283446.84,153037.33,0,1964.3975 -9906,12203,22004,-9,22002,22003,1,1,31,0,0,0,1,1,-9,0,4,6.4702878,6.4571896,0,0,0,-1047.8018,0,2,2,2019,9,1,56,40,1,1,0,1.404175,1.404175,0,0,0,0,0,1,1,0,0,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,0,7,1,2,1,111,-622530,0,0,0,215.11633 -9906,12204,22005,-9,22002,22003,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-939.45551,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.97,46.39,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,809,0,0,0,0,0 -9907,12205,22006,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.3489809,7.4490104,0,0,0,-1013.6833,0,3,3,2019,12,0,21,21,1,0,0,9.0352879,9.0352879,0,0,0,0,7,0,0,0,0,0,40.98,45.22,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,1930,127118.88,25450.1,0,0,222.14575 -9908,12206,22007,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-825.23633,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,51.35,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1168,101762.44,0,0,0,-211.17906 -9909,12207,22008,-9,22010,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.8286,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,329,-9711.8691,5327.4844,0,0,2063.5352 -9909,12207,22009,-9,22010,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1090.6478,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,4,5,0,0,0,8,3,0,329,-9711.8691,5327.4844,0,0,2063.5352 -9909,12207,22010,-9,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,8.0006504,7.7778068,0,0,0,-1052.637,-9,-9,-9,2019,10,0,16,0,1,1,0,13.570616,13.570616,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,4,5,0,0,1,8,3,0,329,-9711.8691,5327.4844,0,0,2063.5352 -9909,12208,22011,-9,22010,-9,1,1,21,0,1,0,1,1,1,0,2,7.8025403,7.7670188,0,0,0,-1015.4403,-9,3,-9,2019,26,10,60,0,1,10,1,5.909565,5.909565,0,0,0,0,0,1,1,0,0,0,37.3,27.76,-9,-9,3.333333333333333,4,5,0,0,0,8,3,0,115,-437473.28,-22346.527,0,0,1288.4642 -9910,12209,22012,-9,22014,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-896.47949,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,1,0,780,-72015.461,0,0,0,2138.2139 -9910,12209,22013,-9,22014,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.9142,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,1,0,780,-72015.461,0,0,0,2138.2139 -9910,12209,22014,-9,-9,-9,1,0,25,2,2,0,2,2,-9,1,2,0,0,0,0,0,-1033.2056,0,2,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.65,34.28,-9,-9,5,1,1,0,0,2,12,1,0,780,-72015.461,0,0,0,2138.2139 -9911,12210,22015,22016,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.4208746,8.490941,0,10,0,24.747795,0,-9,-9,2019,8,1,42,42,1,1,0,16.698399,16.698399,0,0,0,0,0,0,0,0,0,0,45.89,46.24,57.33,53.46,5,1,1,0,0,13,12,5,1,351.5,252160.06,85500.469,179466.78,15.608398,5918.7666 -9911,12210,22016,22015,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6779695,7.5012259,0,35,0,-57.542942,0,3,2,2019,8,0,28,26,1,0,0,9.3218517,9.3218517,0,0,0,0,7,0,0,0,9.0455046,0,57.33,53.46,45.89,46.24,8.333333333333334,1,1,0,0,13,12,5,1,351.5,252160.06,85500.469,179466.78,15.608398,5918.7666 -9912,12211,22017,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-898.27014,0,3,3,2019,10,0,0,39,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,52.17,-9,-9,6.666666666666667,1,1,1,0,2,1,1,0,685,-322247.06,0,0,0,1075.245 -9913,12212,22018,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,7.5872965,7.6869502,0,0,-1025.2177,0,3,1,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.9240394,7.9939203,44.25,25.21,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,467,125874.88,114598.35,0,0,1657.2839 -9914,12213,22019,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.6737514,7.4965796,0,0,-930.55505,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,2.0359831,7.2319112,48.92,37.32,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,270,138447.03,41003.406,69650.016,0,1252.2146 -9915,12214,22020,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.7383432,6.7163124,0,0,-907.77301,0,3,2,2019,19,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.45005935,6.6432796,34.48,61.03,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,270,352065.84,0,355809.22,0,797.68835 -9916,12215,22021,22023,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,7.4097228,7.4961038,0,2,-3,51.62579,0,-9,-9,2019,16,4,29,30,1,4,0,7.0842352,7.0842352,0,0,0,0,0,1,1,0,0,0,39.58,57.61,55.86,32.76,5,3,4,0,1,3,7,3,0,1059.6666,378841.69,135135.22,425890.31,162407.33,1570.0713 -9916,12215,22022,-9,22023,22021,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1196.4081,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,7,3,0,1059.6666,378841.69,135135.22,425890.31,162407.33,1570.0713 -9916,12215,22023,22021,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.0932913,6.8494239,0,2,3,-39.187141,0,2,2,2019,11,2,20,30,1,2,0,6.2545962,6.2545962,0,0,0,0,2,1,1,0,0,0,55.86,32.76,39.58,57.61,8.333333333333334,1,1,0,0,3,7,3,0,1059.6666,378841.69,135135.22,425890.31,162407.33,1570.0713 -9917,12216,22024,-9,22026,22025,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.59515,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,322.33334,818292.5,557330.44,676512.5,368683.91,8704.5742 -9917,12216,22025,22026,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.1514149,8.9392319,0,12,1,26.225504,0,1,1,2019,12,0,60,50,1,0,0,18.143053,18.143053,0,0,0,0,0,0,0,0,.32524502,0,53.68,45.47,49.35,59.64,8.333333333333334,1,1,0,0,9,8,5,1,322.33334,818292.5,557330.44,676512.5,368683.91,8704.5742 -9917,12216,22026,22025,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.5473261,9.5070562,0,12,-1,114.95358,0,1,1,2019,10,1,44,42,1,1,0,41.434898,41.434898,0,0,0,0,0,0,0,0,8.5375977,0,49.35,59.64,53.68,45.47,8.333333333333334,1,1,0,0,9,8,5,1,322.33334,818292.5,557330.44,676512.5,368683.91,8704.5742 -9918,12217,22027,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0146751,7.957993,5.3207736,0,0,-1154.8676,0,1,1,2019,18,5,35,40,1,5,0,9.6333857,9.6333857,0,0,0,0,14.5,0,0,0,4.8094244,5.2762332,45.18,54.77,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,663,-356681.09,12483.584,71616.516,9176.2773,949.12305 -9919,12218,22028,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,6.8816328,6.51794,0,0,0,-973.23022,0,-9,-9,2019,10,0,20,18,1,0,0,5.0690446,5.0690446,0,0,0,0,2,1,1,0,0,0,42.78,54.5,-9,-9,6.666666666666667,1,1,0,0,2,1,2,0,824,-114198.7,0,0,0,1779.7438 -9920,12219,22029,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.6586981,8.8679008,0,0,0,-994.60992,0,3,2,2019,12,1,38,36,1,1,0,18.604137,18.604137,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,924,1323537.1,0,697495.88,0,2694.6028 -9921,12220,22030,22031,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.3126621,8.577673,0,7,4,27.18273,0,2,1,2019,13,3,37,35,1,3,0,15.067605,15.067605,0,0,0,0,0,1,1,0,3.0862648,0,41.53,44.73,51.24,58.84,6.666666666666667,1,1,0,0,3,12,4,1,1067,248039.44,293406.5,158437.03,99732.219,1860.2437 -9921,12220,22031,22030,-9,-9,1,1,48,0,0,0,1,1,0,0,4,0,0,0,7,-4,-3.028708,-9,3,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.0246463,0,51.24,58.84,41.53,44.73,8.333333333333334,1,1,0,0,6,12,4,1,1067,248039.44,293406.5,158437.03,99732.219,1860.2437 -9922,12221,22032,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.6242867,6.3259025,0,0,-1171.0547,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,1.2831565,6.2875504,42.13,24.16,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,258,663578.56,309386.63,60388.457,0,1681.7971 -9923,12222,22033,22035,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.2449007,8.4865322,0,8,-3,80.48938,0,-9,-9,2019,13,1,36,32,1,1,0,10.61632,10.61632,0,0,0,0,0,1,1,0,0,0,52.48,54.33,57.06,57.76,8.333333333333334,1,1,0,0,12,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 -9923,12222,22034,-9,22033,22035,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.8584,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 -9923,12222,22035,22033,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.8409853,8.7719431,0,8,3,85.47496,0,-9,-9,2019,8,0,50,55,1,0,0,10.660572,10.660572,0,0,0,0,0,1,1,0,1.6848886,0,57.06,57.76,52.48,54.33,10,1,1,0,0,11,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 -9923,12222,22036,-9,22033,22035,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.21375,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,560.5,215302.64,259091.83,345795.94,173284.22,3923.8618 -9924,12223,22037,-9,22038,22039,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.0027,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 -9924,12223,22038,22039,-9,-9,1,0,34,1,3,0,1,1,-9,0,3,0,0,0,14,-7,105.26209,0,2,1,2019,8,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.81,43.21,54.28,42.51,10,2,3,0,0,3,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 -9924,12223,22039,22038,-9,-9,1,1,41,1,3,0,1,1,-9,0,3,8.9623995,8.8780651,0,13,7,28.005083,-9,2,1,2019,12,1,38,0,1,1,0,22.650259,22.650259,0,0,0,0,0,1,1,0,0,0,54.28,42.51,64.81,43.21,6.666666666666667,2,3,0,0,12,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 -9924,12223,22040,-9,22038,22039,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.77832,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 -9924,12223,22041,-9,22038,22039,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-941.98578,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,4,0,1031,795167.5,185153.67,768416.5,214566.77,3515.6028 -9925,12224,22042,22043,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,7.3752775,7.2281456,0,8,9,73.407417,0,3,3,2019,9,0,60,40,1,1,0,2.8521543,2.8521543,0,0,0,0,0,1,1,0,0,0,52,55,57.16,56.15,8,3,4,0,0,1,7,4,0,1082.3334,364115.31,148969.47,128087.42,43314.598,2925.4519 -9925,12224,22043,22042,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.2630434,8.314724,0,19,0,-12.005512,0,2,2,2019,8,0,38,33,1,0,0,17.868753,17.868753,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,55,8.333333333333334,3,4,0,0,10,7,4,0,1082.3334,364115.31,148969.47,128087.42,43314.598,2925.4519 -9925,12224,22044,-9,22043,22042,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.79681,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,4,0,1082.3334,364115.31,148969.47,128087.42,43314.598,2925.4519 -9925,12225,22045,-9,22043,22042,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1034.254,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,3,4,0,0,0,7,1,0,881,0,0,0,0,0 -9925,12226,22046,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.9879251,8.3138285,0,0,0,-1011.1786,0,-9,-9,2019,11,0,40,20,1,0,0,10.766978,10.766978,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,4,7,3,0,759,-270341.66,0,0,0,1992.7178 -9926,12227,22047,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.4821568,8.4109945,0,0,0,-874.23657,0,-9,-9,2019,11,0,45,45,1,0,0,10.944471,10.944471,0,0,0,0,0,0,0,0,0,0,56.98,51.33,-9,-9,5,1,1,0,0,9,6,4,1,498,512315.81,289261.09,87974.664,25066.607,1761.3173 -9927,12228,22048,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.9570475,5.9952493,0,0,-1055.6332,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,5.6819758,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,487,594685.81,51473.266,183445.17,0,1501.8632 -9928,12229,22049,22050,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,4.9490228,5.3289833,48,-1,4.1233602,0,3,-9,2019,11,0,0,0,4,2,0,0,0,1,0,24.895046,0,0,1,1,0,0,5.5948358,50,47,52,48,7,1,1,0,0,0,2,2,1,722,229000.09,111816.81,137006.97,0,2558.4202 -9928,12229,22050,22049,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,48,1,-129.50456,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,19.850594,0,71.5,1,1,0,0,0,52,48,50,47,7,1,1,0,0,0,2,2,1,722,229000.09,111816.81,137006.97,0,2558.4202 -9929,12230,22051,22052,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,56,-3,-41.590302,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,5.0499291,0,0,1,1,0,0,0,59.84,17.14,57.76,54.51,6.666666666666667,1,1,0,0,0,7,2,1,369,863618.94,77845.961,843600.13,0,1374.9683 -9929,12230,22052,22051,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.2295918,6.5484977,56,3,-127.46075,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4936867,6.3277993,57.76,54.51,59.84,17.14,10,1,1,0,0,4,7,2,1,369,863618.94,77845.961,843600.13,0,1374.9683 -9930,12231,22053,-9,22056,22054,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.994,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 -9930,12231,22054,22056,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.1584234,8.2063684,0,2,0,13.519311,0,-9,-9,2019,10,0,35,45,1,1,0,12.797232,12.797232,0,0,0,0,0,1,1,0,6.1167722,0,51,56,33.41,62.84,7,1,1,0,0,1,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 -9930,12231,22055,-9,22056,22054,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.56714,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 -9930,12231,22056,22054,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,0,0,0,2,0,-67.675285,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,5.48,1,1,0,0,0,33.41,62.84,51,56,3.333333333333333,1,1,0,0,3,8,3,1,844.25,1816482.8,80902.281,864464.31,288386.31,1940.4285 -9931,12232,22057,22058,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.691009,8.0324421,0,6,3,78.17305,0,-9,-9,2019,12,2,40,40,1,2,0,7.6064148,7.6064148,0,0,0,0,0,0,0,0,0,0,53.61,31.11,44.94,49.91,8.333333333333334,1,1,0,0,6,9,4,0,1385.5,-27507.863,-5382.4541,0,0,2173.897 -9931,12232,22058,22057,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,8.0918818,7.952673,0,6,-3,-154.78908,0,-9,-9,2019,13,1,44,38,1,1,0,6.8301802,6.8301802,0,0,0,0,0,0,0,0,0,0,44.94,49.91,53.61,31.11,5,1,1,0,0,5,9,4,0,1385.5,-27507.863,-5382.4541,0,0,2173.897 -9932,12233,22059,22062,-9,-9,1,1,39,0,3,0,3,3,-9,0,3,8.2446318,8.2720079,0,18,2,-39.73526,0,3,1,2019,14,2,41,40,1,2,0,13.115154,13.115154,0,0,0,0,0,1,1,0,4.2748523,0,48.85,42.66,58.05,54.52,1.666666666666667,1,1,0,0,9,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 -9932,12233,22060,-9,22062,22059,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.10352,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 -9932,12233,22061,-9,22062,22059,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1076,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 -9932,12233,22062,22059,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,7.2753005,7.3014479,0,17,-2,231.7673,0,1,2,2019,7,0,12,30,1,0,0,11.882527,11.882527,0,0,0,0,0,1,1,0,3.8990936,0,58.05,54.52,48.85,42.66,10,1,1,0,0,8,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 -9932,12233,22063,-9,22062,22059,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.69891,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,607.20001,366396.5,32687.893,279920.09,155936.23,2685.4207 -9933,12234,22064,22065,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,57,1,.56169552,0,3,-9,2019,32,12,0,0,4,12,0,0,0,1,28.173374,22.02397,265.48743,0,1,1,0,.70867741,0,33.33,22.86,47.28,36.86,1.666666666666667,1,1,0,0,5,10,2,1,639.5,647431.13,131995.25,470108.81,0,2220.3882 -9933,12234,22065,22064,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.6658387,7.2220626,58,-1,-9.9162254,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,2.930212,7.4116421,47.28,36.86,33.33,22.86,8.333333333333334,1,1,0,0,0,10,2,1,639.5,647431.13,131995.25,470108.81,0,2220.3882 -9934,12235,22066,22067,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.9756441,9.1199789,0,12,2,-149.1053,-9,2,1,2019,7,0,42,0,1,0,0,22.210295,22.210295,0,0,0,0,0,1,1,0,3.6267798,0,59.53,56.44,46.33,55.93,8.333333333333334,1,1,0,0,8,5,5,1,502.66666,358686.13,172966.53,187997.25,139608.5,3539.3694 -9934,12235,22067,22066,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.0261583,7.5536408,0,12,-2,7.2459683,0,2,2,2019,10,0,26,26,1,0,0,10.096014,10.096014,0,0,0,0,0,1,1,0,0,0,46.33,55.93,59.53,56.44,6.666666666666667,1,1,0,0,10,5,5,1,502.66666,358686.13,172966.53,187997.25,139608.5,3539.3694 -9934,12235,22068,-9,22067,22066,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5706,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,502.66666,358686.13,172966.53,187997.25,139608.5,3539.3694 -9935,12236,22069,22070,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.2149372,6.771667,56,2,83.862511,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,10.85125,0,0,1,1,0,1.0239652,6.7903423,56.81,38.58,39.23,28.06,8.333333333333334,1,1,0,0,0,1,2,1,1035,1127353.9,339736.25,272461.56,0,1232.2412 -9935,12236,22070,22069,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.1078525,5.1702662,56,-2,86.360466,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,5.1817684,39.23,28.06,56.81,38.58,8.333333333333334,1,1,0,0,0,1,2,1,1035,1127353.9,339736.25,272461.56,0,1232.2412 -9936,12237,22071,22072,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.4100103,8.0561552,0,6,-3,-33.601151,0,-9,-9,2019,10,0,25,24,1,0,0,24.223658,24.223658,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.3,60.77,8.333333333333334,1,1,0,0,7,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 -9936,12237,22072,22071,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.42101,9.2679195,0,6,3,49.17144,0,2,2,2019,16,4,42,40,1,4,0,23.314651,23.314651,0,0,0,0,0,0,0,0,0,0,41.3,60.77,54.2,57.49,6.666666666666667,1,1,0,0,7,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 -9936,12237,22073,-9,22071,22072,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.0629,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 -9936,12237,22074,-9,22071,22072,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.0131,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,519.5,1695456.3,1299634.4,416516.84,295809.63,5205.6855 -9937,12238,22075,-9,22077,22078,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.1345,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 -9937,12238,22076,-9,22077,22078,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.45972,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 -9937,12238,22077,22078,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.4173069,8.1390114,0,16,0,-46.891491,0,1,1,2019,14,4,14,28,1,4,0,29.962246,29.962246,0,0,0,0,14.5,0,0,0,.94551384,0,43.2,59.97,35.86,64.55,6.666666666666667,1,1,0,0,9,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 -9937,12238,22078,22077,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,9.4213667,9.2223492,0,16,0,-102.49117,0,2,1,2019,22,11,37,43,1,11,0,34.075878,34.075878,0,0,0,0,2,0,0,0,.61486423,0,35.86,64.55,43.2,59.97,6.666666666666667,1,1,0,0,9,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 -9937,12238,22079,-9,22077,22078,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.1315,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,555.20001,2493571,1414982.9,795438,0,5401.437 -9938,12239,22080,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.4018235,6.724473,0,0,-1063.741,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3167272,7.1238952,48.53,38.59,-9,-9,5,1,1,0,0,0,6,2,1,376,214354.34,0,0,0,904.66486 -9939,12240,22081,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,7.0359511,7.0162582,0,0,-1083.9967,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8985305,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,824,169786.72,166190.66,0,0,1619.9863 -9940,12241,22082,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,1,6.0061584,6.0744247,0,0,0,-1011.5985,0,3,3,2019,15,4,20,20,1,4,0,2.448513,2.448513,0,0,0,0,0,1,1,0,0,0,41.34,39.47,-9,-9,6.666666666666667,1,1,0,1,10,9,2,0,262,214738.84,479069.88,0,0,1289.1469 -9941,12242,22083,22084,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,22,-10,42.217838,0,3,-9,2019,21,10,0,4,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,27.34,64.59,25.18,63.88,3.333333333333333,1,1,1,0,11,2,4,1,716,72512.07,297042.28,150304.72,124855.25,2306.5383 -9941,12242,22084,22083,-9,-9,1,1,58,0,1,0,1,1,-9,0,3,8.8637667,8.6926289,0,22,10,-34.898067,0,2,2,2019,29,11,40,38,1,11,0,17.649858,17.649858,0,0,0,0,0,1,1,0,.40591359,0,25.18,63.88,27.34,64.59,3.333333333333333,1,1,0,0,11,2,4,1,716,72512.07,297042.28,150304.72,124855.25,2306.5383 -9941,12242,22085,-9,22083,22084,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-986.01917,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,716,72512.07,297042.28,150304.72,124855.25,2306.5383 -9941,12243,22086,-9,22083,22084,1,0,18,0,1,0,3,3,-9,0,4,6.1222606,6.0475821,0,0,0,-1033.5284,-9,2,1,2019,13,4,8,0,1,4,1,6.3486595,6.3486595,0,0,0,0,0,1,1,0,0,0,40.77,61.04,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,1163,-61306.273,0,0,0,-219.45732 -9942,12244,22087,22088,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.2657952,5.5422206,7,10,166.41969,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4667325,5.444912,46.56,50.26,38.66,21.8,0,1,1,0,0,6,9,2,1,528,878798.13,218012.47,556330.5,0,1613.5889 -9942,12244,22088,22087,-9,-9,1,0,60,0,0,0,1,1,-9,0,1,0,0,0,7,-10,-84.759056,0,-9,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.66,21.8,46.56,50.26,5,1,1,0,0,0,9,2,1,528,878798.13,218012.47,556330.5,0,1613.5889 -9943,12245,22089,22091,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,6.9963684,6.536634,0,27,0,30.037884,0,2,2,2019,10,0,20,17,1,0,0,5.5204206,5.5204206,0,0,0,0,2,1,1,0,0,0,56.77,52.22,57.16,56.15,6.666666666666667,1,1,0,0,9,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 -9943,12245,22090,-9,22089,22091,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.83624,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 -9943,12245,22091,22089,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.040678,8.8772888,0,27,0,.79926634,0,3,2,2019,7,0,42,40,1,0,0,23.779491,23.779491,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.77,52.22,8.333333333333334,1,1,0,0,9,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 -9943,12245,22092,-9,22089,22091,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.29,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,871,500853.56,-2360.5332,377651.31,0,4214.6753 -9944,12246,22093,-9,22094,-9,1,0,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-913.02777,-9,2,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,29,32,-9,-9,3,1,1,-9,0,0,1,2,0,448.5,0,0,0,0,1834.6115 -9944,12246,22094,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,6.6779404,6.8120394,0,0,0,-1045.9004,0,-9,-9,2019,23,11,16,20,1,11,0,6.6392212,6.6392212,0,0,0,0,0,1,1,0,0,0,26.63,55.63,-9,-9,3.333333333333333,1,1,0,0,4,1,2,0,448.5,0,0,0,0,1834.6115 -9945,12247,22095,22096,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.5100551,7.5026131,0,8,-5,39.734055,0,-9,2,2019,13,3,19,19,1,3,0,10.553877,10.553877,0,0,0,0,0,0,0,0,0,0,44.1,38.34,54.96,53.17,8.333333333333334,1,1,0,0,9,12,5,1,1101,208511.84,170275.77,86349.664,23321.127,3793.7983 -9945,12247,22096,22095,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.3845892,9.217823,0,8,5,31.882315,0,3,2,2019,6,0,40,40,1,0,0,22.315784,22.315784,0,0,0,0,0,0,0,0,3.1907611,0,54.96,53.17,44.1,38.34,8.333333333333334,1,1,0,0,9,12,5,1,1101,208511.84,170275.77,86349.664,23321.127,3793.7983 -9945,12248,22097,-9,22095,22096,1,1,24,0,0,0,2,2,-9,0,3,8.4783211,8.4136152,0,0,0,-854.83771,0,2,2,2019,27,11,38,38,1,11,1,13.616436,13.616436,0,0,0,0,0,0,0,0,0,0,25.02,64.34,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,733,486615.81,-116541.41,0,0,2224.7139 -9946,12249,22098,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.3950367,4.3729877,0,0,-1078.5074,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,1.9822688,4.4712791,54.2,57.49,-9,-9,10,1,1,0,0,0,12,2,0,661,221403.64,0,236098.98,0,1047.8446 -9947,12250,22099,-9,-9,-9,1,0,48,1,1,0,2,2,-9,0,3,8.1010313,7.8771553,0,0,0,-976.22955,0,3,3,2019,20,8,47,21,1,8,0,6.3083558,6.3083558,0,0,0,0,0,1,1,0,0,0,53.83,39.94,-9,-9,5,1,1,0,0,3,2,3,0,741,41427.527,145746.39,0,0,1325.3998 -9947,12251,22100,-9,22099,-9,1,1,21,1,1,0,2,2,-9,0,3,7.983407,8.1181669,0,0,0,-999.03809,0,2,-9,2019,8,1,42,24,1,1,1,8.0291367,8.0291367,0,0,0,0,0,1,1,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,375,552125,-72994.047,0,0,635.65198 -9947,12252,22101,-9,22102,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.0646,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,744.5,0,0,0,0,1089.7738 -9947,12252,22102,-9,22099,-9,1,0,18,1,1,0,2,2,0,0,4,0,0,0,0,0,-1046.3612,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.7177625,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,2,1,0,744.5,0,0,0,0,1089.7738 -9948,12253,22103,22104,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.4976892,7.5971613,0,42,-4,33.387661,0,-9,-9,2019,9,0,23,23,1,0,0,9.5631866,9.5631866,0,0,0,0,0,0,0,0,2.1383939,0,39.1,57.79,43.37,57.28,6.666666666666667,1,1,0,0,12,9,3,1,1134.5,2635860.5,1917820,534768.19,0,1076.4443 -9948,12253,22104,22103,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,5.5556026,5.4880466,0,41,4,-120.10194,0,3,3,2019,11,0,50,45,1,0,0,.44939682,.44939682,0,0,0,0,0,0,0,0,0,0,43.37,57.28,39.1,57.79,8.333333333333334,1,1,0,0,12,9,3,1,1134.5,2635860.5,1917820,534768.19,0,1076.4443 -9948,12254,22105,-9,22103,22104,1,0,31,0,0,0,2,2,-9,0,2,7.5337729,7.7132578,0,0,0,-1081.3959,0,3,2,2019,12,1,39,39,1,1,1,5.943284,5.943284,0,0,0,0,0,0,0,0,0,0,36.17,51.34,-9,-9,6.666666666666667,1,1,0,0,12,9,3,1,106,641363.06,144544.67,0,0,1250.0697 -9949,12255,22106,22107,-9,-9,1,0,22,0,0,0,1,1,1,0,4,9.8699989,9.7143917,0,3,1,110.42064,-9,-9,-9,2019,17,5,24,0,1,5,0,76.578583,76.578583,0,0,0,0,0,0,0,0,.20447877,0,34.19,60.03,55.19,54.26,6.666666666666667,1,1,0,0,2,8,5,0,2682,-32236.773,130982.91,264649.13,128128.66,7491.3018 -9949,12255,22107,22106,-9,-9,1,1,21,0,0,0,1,1,1,0,4,7.8707838,8.016696,0,3,-1,35.172516,-9,-9,-9,2019,6,0,41,0,1,0,0,9.1195183,9.1195183,0,0,0,0,0,0,0,0,1.1981151,0,55.19,54.26,34.19,60.03,8.333333333333334,1,1,0,0,6,8,5,0,2682,-32236.773,130982.91,264649.13,128128.66,7491.3018 -9950,12256,22108,22111,-9,-9,1,0,42,0,1,0,3,3,-9,0,5,0,0,0,20,-6,-60.802101,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.33,40.62,48.87,58.55,10,2,3,0,0,7,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 -9950,12256,22109,-9,22108,22111,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-978.71252,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 -9950,12256,22110,-9,22108,22111,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1079.6302,-9,3,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.6985754,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 -9950,12256,22111,22108,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.2916451,8.2953739,0,20,6,-6.0849776,0,-9,-9,2019,10,0,47,49,1,0,0,8.5340204,8.5340204,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50.33,40.62,6.666666666666667,2,3,0,0,7,6,3,1,528.75,-113399.62,-28718.904,0,0,2331.5383 -9951,12257,22112,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.8351636,7.3961463,0,0,-1046.5664,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,3.2340004,12.549801,0,0,1,1,0,5.1286063,8.1924391,54.18,16.14,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1867,252503.77,-17524.387,0,0,1898.5975 -9952,12258,22113,-9,22114,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0054,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,3,0,520.5,365376.63,83014.953,0,0,1399.4569 -9952,12258,22114,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,8.0277252,8.4839201,0,0,0,-979.06128,0,3,3,2019,6,0,35,0,1,0,0,13.80994,13.80994,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,3,4,0,0,1,8,3,0,520.5,365376.63,83014.953,0,0,1399.4569 -9953,12259,22115,-9,22117,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.8884,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,647.33331,109579.05,0,0,0,1183.601 -9953,12259,22116,-9,22117,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.86353,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,647.33331,109579.05,0,0,0,1183.601 -9953,12259,22117,-9,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1076.079,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,647.33331,109579.05,0,0,0,1183.601 -9954,12260,22118,22119,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,0,0,0,10,-8,0,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,49.69,52.99,46.38,44.17,6.666666666666667,1,1,1,1,8,8,1,1,2006.5,223700.09,0,0,0,1868.9587 -9954,12260,22119,22118,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,0,0,10,8,0,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,46.38,44.17,49.69,52.99,5,3,4,0,0,0,8,1,1,2006.5,223700.09,0,0,0,1868.9587 -9955,12261,22120,22121,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.0113282,6.0208335,54,1,36.996414,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3196702,6.1653023,54.55,49.25,54.2,57.49,8.333333333333334,1,1,0,0,0,9,4,1,252,2021522,529633,688340.13,0,3087.5215 -9955,12261,22121,22120,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.1448174,8.5384598,54,-1,85.450294,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.91689426,8.4436769,54.2,57.49,54.55,49.25,8.333333333333334,1,1,0,0,0,9,4,1,252,2021522,529633,688340.13,0,3087.5215 -9956,12262,22122,22123,-9,-9,1,0,55,0,3,0,2,2,-9,0,2,7.7847743,7.9043851,0,23,3,-25.861864,0,3,2,2019,9,0,20,20,1,0,0,17.963436,17.963436,0,0,0,0,0,1,1,0,0,0,56.02,40.98,52,54.51,8.333333333333334,1,1,0,0,6,2,3,0,996.66669,1223427.3,819019.88,246633.5,0,4068.5195 -9956,12262,22123,22122,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,7.6795154,7.4701819,0,23,-3,108.71749,0,3,2,2019,4,0,40,40,1,0,0,6.2294307,6.2294307,0,0,0,0,0,1,1,0,8.9238319,0,52,54.51,56.02,40.98,8.333333333333334,1,1,0,0,12,2,3,0,996.66669,1223427.3,819019.88,246633.5,0,4068.5195 -9956,12262,22124,-9,22122,22123,1,1,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1027.3807,-9,2,2,2019,23,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,6.666666666666667,1,1,0,0,0,2,3,0,996.66669,1223427.3,819019.88,246633.5,0,4068.5195 -9956,12263,22125,-9,22122,22123,1,1,30,0,3,0,2,2,0,0,3,0,6.5707636,6.5241284,0,0,-998.86548,-9,2,2,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,6.3521228,0,37.23,41,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,1117,-24106.721,-14202.908,0,0,1316.9934 -9956,12263,22126,-9,-9,22125,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.7346,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,1117,-24106.721,-14202.908,0,0,1316.9934 -9956,12263,22127,-9,-9,22125,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.0248,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1117,-24106.721,-14202.908,0,0,1316.9934 -9957,12264,22128,-9,-9,-9,1,0,41,0,1,0,1,1,-9,1,1,0,7.3647575,7.232183,0,0,-1084.4811,0,2,2,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.4972324,0,33.81,15.92,-9,-9,5,1,1,0,0,0,7,2,1,634.5,-235122.89,0,0,0,1666.814 -9957,12264,22129,-9,22128,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.2391,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,634.5,-235122.89,0,0,0,1666.814 -9958,12265,22130,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-932.03314,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,57.63,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,368,-118125.58,0,0,0,1911.6405 -9959,12266,22131,22132,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.0214911,7.2640691,0,18,-6,-21.043108,0,-9,2,2019,19,8,20,20,1,8,0,7.7415504,7.7415504,0,0,0,0,0,0,0,0,4.7530642,0,38.43,56.45,49.04,55.86,8.333333333333334,1,1,0,0,9,2,5,1,744.33331,203973.69,264424.25,167120.67,102959.39,3339.803 -9959,12266,22132,22131,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.9644165,9.1759644,0,18,6,84.395317,0,2,2,2019,13,1,45,45,1,1,0,24.333036,24.333036,0,0,0,0,0,0,0,0,4.4099212,0,49.04,55.86,38.43,56.45,6.666666666666667,1,1,0,0,9,2,5,1,744.33331,203973.69,264424.25,167120.67,102959.39,3339.803 -9959,12266,22133,-9,22131,22132,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.7594,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,744.33331,203973.69,264424.25,167120.67,102959.39,3339.803 -9960,12267,22134,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.676631,9.0367289,0,0,0,-984.20502,0,3,3,2019,10,0,39,38,1,0,0,19.952221,19.952221,0,0,0,0,0,0,0,0,3.3681741,0,54.25,43.85,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,121,215478.44,171657.28,331485.47,90278.898,1739.9012 -9961,12268,22135,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1141.1259,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,37.16,37.37,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,733,209532.95,0,0,0,645.72076 -9961,12269,22136,-9,22135,-9,1,0,32,0,0,0,2,2,-9,0,4,8.7641516,8.8808184,0,0,0,-1113.7556,0,3,-9,2019,21,9,37,36,1,9,1,14.250244,14.250244,0,0,0,0,7,1,0,1,0,0,33.26,61.9,-9,-9,6.666666666666667,2,3,0,0,10,8,5,0,876,-60034.5,10883.147,0,0,2019.2959 -9961,12270,22137,-9,22135,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1006.5611,0,3,3,2019,9,1,0,44,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48.81,59.91,-9,-9,10,2,3,1,0,6,8,1,0,1299,53902.953,0,0,0,0 -9961,12271,22138,-9,22135,-9,1,0,25,0,0,0,2,2,-9,0,3,7.7429919,7.7129326,0,0,0,-1011.412,0,3,3,2019,13,0,28,28,1,3,1,8.3839025,8.3839025,0,0,0,3.4581811,0,1,0,1,0,0,41.69,48.36,-9,-9,6.666666666666667,2,3,0,1,5,8,3,0,677,115731.71,-31946.922,0,0,668.7984 -9962,12272,22139,22140,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,44,-1,.40119624,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.218914,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,13,3,1,172.5,2222659.5,762048.25,229097.78,0,4552.6602 -9962,12272,22140,22139,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.2389965,8.1518841,44,1,-56.108437,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7133894,8.4213257,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,5,13,3,1,172.5,2222659.5,762048.25,229097.78,0,4552.6602 -9963,12273,22141,22144,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.6269007,8.6216183,0,7,-5,-32.046505,0,2,2,2019,16,4,40,40,1,4,0,18.082264,18.082264,0,0,0,0,0,1,1,0,0,0,28.55,61.38,39.51,56.1,6.666666666666667,1,1,0,0,9,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 -9963,12273,22142,-9,22144,22141,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4578,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 -9963,12273,22143,-9,22144,22141,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.9261,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 -9963,12273,22144,22141,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.5226669,7.6344666,0,7,5,-54.773884,0,2,-9,2019,13,2,25,4,1,2,0,10.148092,10.148092,0,0,0,0,0,1,1,0,0,0,39.51,56.1,28.55,61.38,6.666666666666667,1,1,0,0,7,10,4,1,830.5,223286.39,151824.94,0,0,3406.103 -9964,12274,22145,22146,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,36,-12,110.25517,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,24.077833,0,0,1,1,0,3.3459797,0,46.16,21.28,46.98,21.07,8.333333333333334,1,1,0,0,0,11,2,1,295,584947.06,85783.023,246171.95,0,969.59558 -9964,12274,22146,22145,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.9990821,5.9596205,36,12,119.17628,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,27.308245,0,0,1,1,0,3.2403567,5.8711376,46.98,21.07,46.16,21.28,6.666666666666667,1,1,0,0,0,11,2,1,295,584947.06,85783.023,246171.95,0,969.59558 -9965,12275,22147,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,6.2309051,6.1941385,0,0,-967.5578,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,14.548508,0,0,1,1,0,0,5.9172015,46.11,22.3,-9,-9,5,1,1,0,0,0,6,2,1,260,-1593.9807,70683.688,277243.41,0,1456.5919 -9966,12276,22148,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1062.7379,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,6.5781202,8.7828426,63.72773,0,1,1,0,0,0,33.08,24.12,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,279,55758.586,0,0,0,1486.688 -9967,12277,22149,22150,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.9367814,7.9822292,0,1,0,-45.189232,-9,-9,-9,2019,8,1,44,0,1,1,0,8.1513214,8.1513214,0,0,0,0,0,0,0,0,0,0,58.56,46.45,49.76,56.93,8.333333333333334,1,1,0,0,1,7,4,0,241,63838.992,0,0,0,1942.3782 -9967,12277,22150,22149,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.7740421,7.5140691,0,1,0,15.829411,0,3,2,2019,10,0,60,43,1,0,0,3.7413287,3.7413287,0,0,0,0,0,0,0,0,0,0,49.76,56.93,58.56,46.45,8.333333333333334,1,1,0,0,8,7,4,0,241,63838.992,0,0,0,1942.3782 -9968,12278,22151,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1343069,7.3289762,0,0,-853.43201,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,2.4768281,0,23.855223,0,1,1,0,8.0028067,7.1417079,51,46,-9,-9,7,3,4,0,0,0,8,3,1,915,1379334.6,230622.31,744436.75,0,2232.3206 -9969,12279,22152,22153,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3521924,7.3601351,0,6,-3,148.35236,0,3,2,2019,8,0,31,32,1,0,0,6.7311654,6.7311654,0,0,0,0,0,0,0,0,0,0,61.28,46.17,52,48,8.333333333333334,1,1,0,0,7,13,3,1,751.5,705390.81,297978.38,158132.34,0,1065.0333 -9969,12279,22153,22152,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.866859,6.7049432,0,6,3,10.764825,0,3,3,2019,10,0,40,50,1,1,0,2.8607197,2.8607197,0,0,0,0,0,0,0,0,0,0,52,48,61.28,46.17,7,1,1,0,0,7,13,3,1,751.5,705390.81,297978.38,158132.34,0,1065.0333 -9969,12280,22154,-9,22152,22153,1,1,33,0,0,0,2,2,-9,0,4,7.3410273,7.2315936,0,0,0,-998.91852,0,3,2,2019,10,0,40,50,1,1,1,3.3137732,3.3137732,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,7,13,2,1,345,431905.78,22919.793,0,0,291.48297 -9969,12281,22155,-9,22152,22153,1,1,29,0,0,0,3,3,-9,0,4,7.8539572,8.3003006,0,0,0,-988.04059,0,3,2,2019,10,0,37,37,1,1,1,7.6967354,7.6967354,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,5,13,4,1,745,345059.03,0,0,0,986.71088 -9970,12282,22156,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1124.7164,-9,-9,1,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1.8061237,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,316,76262.797,0,0,0,-148.60242 -9971,12283,22157,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.1911197,6.3206573,0,0,-886.90869,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.065562,6.2047668,44.53,44.54,-9,-9,1.666666666666667,2,3,0,0,2,8,2,1,576,977205.63,113381.2,343421.44,0,222.28435 -9971,12284,22158,-9,-9,22157,1,0,32,0,0,0,1,1,-9,0,5,8.2804508,8.5584326,0,0,0,-1013.6462,0,2,2,2019,10,0,40,40,1,0,0,14.420783,14.420783,0,0,0,0,0,0,0,0,0,0,45.08,55.11,-9,-9,8.333333333333334,2,3,0,0,9,8,4,1,460,261977.17,0,230290.69,93355.352,1664.4082 -9972,12285,22159,22160,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.1586304,7.9492078,48,3,-20.59355,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1908393,8.2901545,46.84,58.02,58.05,54.52,10,1,1,0,0,4,10,4,1,554.5,1653484.4,746203.88,785601.06,0,4148.6948 -9972,12285,22160,22159,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.927567,7.2040658,48,-3,-90.332825,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.082778,8.0219784,58.05,54.52,46.84,58.02,10,1,1,0,0,4,10,4,1,554.5,1653484.4,746203.88,785601.06,0,4148.6948 -9973,12286,22161,22162,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,0,0,52,3,8.6973772,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.35811,0,52.13,57.22,62.81,30.81,6.666666666666667,1,1,0,0,0,10,2,1,395.5,285786,11120.486,139146.75,0,1307.7656 -9973,12286,22162,22161,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.4979186,6.5578938,6,-3,-65.126068,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.722765,62.81,30.81,52.13,57.22,8.333333333333334,1,1,0,0,0,10,2,1,395.5,285786,11120.486,139146.75,0,1307.7656 -9974,12287,22163,22164,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.4522409,8.6369429,0,14,-3,14.24784,0,2,3,2019,10,0,28,28,1,0,0,15.544278,15.544278,0,0,0,0,0,1,1,0,0,0,47.05,56.66,49.12,57.28,8.333333333333334,1,1,0,0,11,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 -9974,12287,22164,22163,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.943017,9.1620102,0,13,3,7.2673092,0,2,2,2019,10,0,60,70,1,0,0,18.111927,18.111927,0,0,0,0,0,1,1,0,0,0,49.12,57.28,47.05,56.66,6.666666666666667,1,1,0,0,11,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 -9974,12287,22165,-9,22163,22164,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5242,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 -9974,12287,22166,-9,22163,22164,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.9264,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,885.5,591636.13,-1820.9736,813929.38,332736.41,4897.5068 -9975,12288,22167,22168,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.9359398,7.9680686,0,34,-6,-145.53519,0,1,1,2019,12,0,26,17,1,0,0,11.693069,11.693069,0,0,0,0,0,0,0,0,1.2596065,0,47.92,45.42,51.42,48.12,3.333333333333333,1,1,0,0,11,11,4,1,231,1266218.4,865844.5,381083.41,0,2675.3916 -9975,12288,22168,22167,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.9576902,8.1313667,36,6,83.123581,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2200127,51.42,48.12,47.92,45.42,8.333333333333334,1,1,0,0,9,11,4,1,231,1266218.4,865844.5,381083.41,0,2675.3916 -9976,12289,22169,22170,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,4.6287007,4.8208055,60,-3,11.454516,0,3,3,2019,18,0,0,0,4,5,0,0,0,1,0,15.090528,0,0,1,1,0,4.7115812,4.5396228,30.57,36.27,59.53,56.44,4,1,1,0,0,0,1,2,1,1319,360570.72,28829.283,0,0,1482.3746 -9976,12289,22170,22169,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,0,0,61,3,-43.624458,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.7157011,0,59.53,56.44,30.57,36.27,8.333333333333334,1,1,0,0,0,1,2,1,1319,360570.72,28829.283,0,0,1482.3746 -9977,12290,22171,22173,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,9.0532389,8.5771008,0,9,17,48.187435,0,2,3,2019,11,0,48,50,1,0,0,16.463324,16.463324,0,0,0,0,0,1,1,0,6.4288664,0,41.06,62.04,38.28,63.48,6.666666666666667,1,1,0,0,9,10,5,1,829.66669,1300646.5,914714.94,226187.42,70221.313,4752.4575 -9977,12290,22172,-9,22173,22171,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.34607,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,829.66669,1300646.5,914714.94,226187.42,70221.313,4752.4575 -9977,12290,22173,22171,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,9.1771488,9.1026297,0,9,-17,-17.556808,0,2,1,2019,12,1,35,36,1,1,0,31.315128,31.315128,0,0,0,0,0,1,1,0,4.9023876,0,38.28,63.48,41.06,62.04,8.333333333333334,1,1,0,0,12,10,5,1,829.66669,1300646.5,914714.94,226187.42,70221.313,4752.4575 -9978,12291,22174,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,2,0,7.7215567,7.4292269,0,0,-855.19983,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,15.305605,0,136.00743,0,1,1,0,0,7.3509493,44.52,35.92,-9,-9,5,1,1,0,0,0,9,3,0,1482,711976.19,0,349313.22,0,1414.7815 -9979,12292,22175,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.16235,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,4.3693585,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,13,1,0,1060,-74096.477,0,0,0,1224.6135 -9980,12293,22176,22178,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,7.9522347,7.939827,0,13,4,62.68338,0,2,3,2019,4,0,30,25,1,0,0,10.327991,10.327991,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,8.333333333333334,1,1,0,0,9,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 -9980,12293,22177,-9,22176,22178,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.2431,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 -9980,12293,22178,22176,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,9.3296747,9.0227213,0,6,-4,52.227932,0,-9,-9,2019,10,0,45,45,1,1,0,21.583986,21.583986,0,0,0,1.5111511,0,0,0,0,0,0,50,57,51.73,58.82,7,1,1,0,0,1,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 -9980,12293,22179,-9,22176,22178,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.06006,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1191.75,676529.13,218184.23,453661.91,262131,4313.0098 -9981,12294,22180,-9,22181,22183,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.1107,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 -9981,12294,22181,22183,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,0,0,0,8,-2,-123.79456,0,-9,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,37.26,52.24,50.75,1.666666666666667,1,1,0,0,10,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 -9981,12294,22182,-9,22181,22183,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.8522,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 -9981,12294,22183,22181,-9,-9,1,1,47,0,2,0,1,1,-9,0,2,8.5290012,8.524127,0,8,2,36.730812,0,-9,2,2019,5,0,37,37,1,0,0,17.28841,17.28841,0,0,0,0,0,1,1,0,0,0,52.24,50.75,19.42,37.26,6.666666666666667,1,1,0,0,11,1,4,1,609.25,92573.289,10214.212,193480.16,87849.469,2457.3374 -9982,12295,22184,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.157444,8.0951872,0,0,-1022.4294,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9868746,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,579,1105683.3,513183.81,0,0,2233.6887 -9983,12296,22185,22187,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,9.0283098,9.2224312,0,17,-2,-82.94561,0,2,2,2019,6,0,38,38,1,0,0,32.554989,32.554989,0,0,0,0,0,0,0,0,6.9090118,0,54.69,57.47,52.25,42.38,10,1,1,0,0,10,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 -9983,12296,22186,-9,22185,22187,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.2901,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 -9983,12296,22187,22185,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.2051973,9.1644392,0,17,2,-107.7087,0,2,2,2019,9,0,41,38,1,0,0,32.921207,32.921207,0,0,0,0,0,0,0,0,0,0,52.25,42.38,54.69,57.47,8.333333333333334,1,1,0,0,10,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 -9983,12296,22188,-9,22185,22187,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5153,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,717.75,129048.45,148210.48,0,0,6287.6143 -9984,12297,22189,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.5528831,8.6244917,0,0,0,-1044.1027,0,-9,-9,2019,8,0,44,37,1,0,0,13.176723,13.176723,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,284,-26275.246,166558.86,0,0,1768.7939 -9984,12298,22190,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.3047638,8.6979866,0,0,0,-1007.684,0,-9,-9,2019,6,0,49,49,1,0,0,9.5954285,9.5954285,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,11,4,0,761,37741.566,0,0,0,2181.5703 -9985,12299,22191,22193,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.0867996,8.112112,0,11,-3,-69.735107,0,2,3,2019,14,3,55,34,1,3,0,7.2552438,7.2552438,0,0,0,0,2,1,1,0,0,0,42.02,56.48,48.77,60.16,6.666666666666667,2,3,0,0,9,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 -9985,12299,22192,-9,22191,22193,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.64221,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 -9985,12299,22193,22191,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.4925957,8.344245,0,9,3,-74.92141,0,2,1,2019,12,1,43,42,1,1,0,13.857123,13.857123,0,0,0,0,0,1,1,0,0,0,48.77,60.16,42.02,56.48,8.333333333333334,1,1,0,0,9,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 -9985,12299,22194,-9,22191,22193,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.13019,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,4,1,729.75,623467.63,361161.06,264356.31,75769.055,3565.6045 -9986,12300,22195,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,9.3033266,8.9097614,0,0,-866.99896,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.638359,9.2057171,57.91,46.15,-9,-9,8.333333333333334,1,1,0,0,2,8,5,1,291,3117871.5,461243,652003.5,0,5454.6875 -9987,12301,22196,22197,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.1622868,8.0569763,13,11,158.44731,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6090374,57.73,54.53,56.92,49.39,10,1,1,0,0,0,6,4,1,1034,1327573.8,514931.44,140882.5,0,3565.3779 -9987,12301,22197,22196,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.9705524,7.7204852,13,-11,-3.4519176,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,.27442986,0,1,1,0,5.6419187,7.9882188,56.92,49.39,57.73,54.53,8.333333333333334,1,1,0,0,0,6,4,1,1034,1327573.8,514931.44,140882.5,0,3565.3779 -9987,12302,22198,-9,22197,22196,1,0,33,0,0,0,1,1,-9,0,4,7.7495842,8.3217812,0,0,0,-929.55005,-9,2,2,2019,8,0,38,0,1,0,0,8.1677914,8.1677914,0,0,0,0,0,1,1,0,2.9528224,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,445,203862.66,143089.03,52574.332,88309.68,1711.6067 -9988,12303,22199,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.2647038,9.5658646,0,0,0,-1013.3617,0,2,2,2019,2,0,48,50,1,0,0,26.975584,26.975584,0,0,0,0,0,0,0,0,5.1049943,0,54.84,40.76,-9,-9,10,1,1,0,0,6,9,5,1,242,957256.56,3416.1919,151162.53,164699.2,3985.197 -9989,12304,22200,22201,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,2,3,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.33,21.69,38.3,24.4,5,1,1,0,0,0,13,1,0,644,194136.69,0,0,0,2741.4729 -9989,12304,22201,22200,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,2,-3,0,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.3,24.4,32.33,21.69,6.666666666666667,1,1,0,0,0,13,1,0,644,194136.69,0,0,0,2741.4729 -9990,12305,22202,-9,22203,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.25366,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,1,0,1109,181220.13,0,0,0,1021.3217 -9990,12305,22203,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1018.2054,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,19.18,61.69,-9,-9,1.666666666666667,4,2,1,1,3,2,1,0,1109,181220.13,0,0,0,1021.3217 -9991,12306,22204,22205,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.9941864,8.0113049,10,0,-58.533611,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5819635,8.2441368,60.2,39.82,51.67,50.46,10,1,1,0,0,0,11,4,1,361.5,1606856.5,1214727,215805.55,0,5307.7539 -9991,12306,22205,22204,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.7371602,7.8851995,10,0,174.41441,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0098944,8.0035086,51.67,50.46,60.2,39.82,8.333333333333334,1,1,0,0,3,11,4,1,361.5,1606856.5,1214727,215805.55,0,5307.7539 -9992,12307,22206,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.470993,8.173317,0,0,0,-885.85883,0,3,3,2019,11,0,40,0,1,0,0,12.737166,12.737166,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,6.666666666666667,3,4,0,0,2,8,4,0,313,216361.84,-97054.008,0,0,1389.3596 -9993,12308,22207,22208,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,65,-6,-20.454012,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7304547,0,50.78,45.45,56.8,38.79,8.333333333333334,1,1,0,0,0,7,2,1,1037.5,285145.47,230303.56,0,0,1728.5984 -9993,12308,22208,22207,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.3800163,7.207036,65,6,-1.0584894,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3875563,7.5232825,56.8,38.79,50.78,45.45,8.333333333333334,1,1,0,0,0,7,2,1,1037.5,285145.47,230303.56,0,0,1728.5984 -9994,12309,22209,-9,22210,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.0538,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,508.66666,231713.94,50804.953,0,0,3501.5034 -9994,12309,22210,-9,-9,-9,1,0,37,0,3,0,1,1,-9,0,3,7.7560244,8.0053358,6.543354,0,0,-978.44031,0,2,2,2019,13,1,25,30,1,1,0,9.5200682,9.5200682,0,0,0,0,0,1,1,0,6.7986145,0,43.71,56.91,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,508.66666,231713.94,50804.953,0,0,3501.5034 -9994,12309,22211,-9,22210,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.0923,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,508.66666,231713.94,50804.953,0,0,3501.5034 -9995,12310,22212,22214,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.8369236,8.7155704,0,7,-3,28.485537,0,2,2,2019,12,0,40,35,1,0,0,17.184155,17.184155,0,0,0,0,0,1,1,0,0,0,33.64,53.56,38.16,31.3,5,1,1,0,0,8,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 -9995,12310,22213,-9,22214,22212,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8246,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 -9995,12310,22214,22212,-9,-9,1,0,43,0,2,0,3,3,-9,1,2,0,0,0,7,3,-134.65034,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,31.3,33.64,53.56,3.333333333333333,1,1,0,1,5,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 -9995,12310,22215,-9,22214,22212,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.85114,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,572.5,136180.73,118863.12,137207.39,62082.961,3334.4229 -9996,12311,22216,-9,22217,22219,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9149,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 -9996,12311,22217,22219,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,8,0,42.978058,0,-9,-9,2019,18,8,0,30,3,8,0,0,0,0,0,0,0,0,1,1,0,1.6427532,0,43.06,59.91,28.13,46.94,8.333333333333334,1,1,0,0,7,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 -9996,12311,22218,-9,22217,22219,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.22589,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 -9996,12311,22219,22217,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,9.5710449,9.66469,0,8,0,.70002896,0,2,2,2019,23,11,60,60,1,11,0,25.767752,25.767752,0,0,0,0,0,1,1,0,0,0,28.13,46.94,43.06,59.91,6.666666666666667,1,1,0,0,8,6,5,1,1017.25,-7210.5117,61621.977,144745.06,106387.82,4898.7954 -9997,12312,22220,22221,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.8709316,8.4201641,0,6,0,102.68485,0,1,1,2019,10,0,18,18,1,0,0,36.316051,36.316051,0,0,0,0,0,0,0,0,7.4330902,0,51.77,58.57,38.57,58.06,8.333333333333334,1,1,0,0,7,8,5,1,55,548913.25,520026.41,181627.25,83956.75,6939.1909 -9997,12312,22221,22220,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.8424816,7.9404268,0,6,0,-43.219021,0,1,2,2019,18,8,18,18,1,8,0,15.974051,15.974051,0,0,0,0,0,0,0,0,8.6774998,0,38.57,58.06,51.77,58.57,8.333333333333334,1,1,0,0,7,8,5,1,55,548913.25,520026.41,181627.25,83956.75,6939.1909 -9997,12313,22222,-9,22220,22221,1,1,21,0,0,0,1,1,0,0,5,0,0,0,0,0,-998.15674,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,39.71,61.59,-9,-9,8.333333333333334,1,1,0,0,1,8,1,1,1534,-238801.36,0,0,0,335.3959 -9997,12314,22223,-9,22220,22221,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1097.1251,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,42.19,52.52,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,523,-24734.246,0,0,0,0 -9998,12315,22224,22225,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,8,0,127.83768,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,51,46,7,1,1,1,1,4,2,2,1,455.5,136790.3,0,179099.22,0,1126.196 -9998,12315,22225,22224,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,3.6900802,3.8928776,8,9,68.870193,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.2254858,51,46,51,48,7,1,1,0,1,1,2,2,1,455.5,136790.3,0,179099.22,0,1126.196 -9999,12316,22226,22227,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6946359,8.2244997,34,-2,-204.96132,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.3378527,8.5432625,48.11,56.11,48.99,54.36,6.666666666666667,1,1,0,0,7,10,4,1,138,-10691.336,84975.406,0,0,4556.937 -9999,12316,22227,22226,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.9273186,7.6137938,34,2,48.434166,0,2,2,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,6.8533559,7.5680842,48.99,54.36,48.11,56.11,8.333333333333334,1,1,0,0,2,10,4,1,138,-10691.336,84975.406,0,0,4556.937 -10000,12317,22228,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.2725329,7.7616873,0,0,-1035.3052,0,2,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,7,0,0,0,4.0413475,7.5932202,38.07,47.5,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1101,512088.47,410859.53,142909.91,0,965.13074 -10001,12318,22229,22230,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,2,-10,0,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,0,1,0,0,33.9,60.31,48.12,45.41,3.333333333333333,4,2,1,1,6,9,1,0,2086,-73060.602,-18858.203,0,0,1222.1282 -10001,12318,22230,22229,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,0,0,0,2,10,0,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,0,1,0,0,48.12,45.41,33.9,60.31,6.666666666666667,1,1,1,1,0,9,1,0,2086,-73060.602,-18858.203,0,0,1222.1282 -10002,12319,22231,22232,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,28,2,58.249008,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,56.47,59.4,8.333333333333334,1,1,0,0,8,9,3,1,1329.5,1183128.6,385515.06,584939.5,0,863.0849 -10002,12319,22232,22231,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,7.7183027,7.660131,0,29,-2,16.686003,0,2,2,2019,11,0,60,60,1,0,0,4.4964643,4.4964643,0,0,0,0,2,0,0,0,0,0,56.47,59.4,55.2,49.4,5,1,1,0,0,13,9,3,1,1329.5,1183128.6,385515.06,584939.5,0,863.0849 -10002,12320,22233,-9,22231,22232,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,0,0,-970.49731,0,2,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,1,0,2,9,1,1,320,72518.602,0,0,0,0 -10003,12321,22234,22235,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.3867755,6.0773416,9,-7,56.497604,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.87198687,6.367547,41.17,59.31,57.06,57.76,10,1,1,0,0,0,1,2,0,938.5,403345.88,126193.95,205758.25,0,1205.7626 -10003,12321,22235,22234,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,6.2691126,6.1580715,58,7,-43.684311,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6256247,57.06,57.76,41.17,59.31,8.333333333333334,1,1,0,0,0,1,2,0,938.5,403345.88,126193.95,205758.25,0,1205.7626 -10004,12322,22236,22237,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.3584795,8.3993416,0,1,0,-45.792038,-9,-9,-9,2019,6,0,35,0,1,0,0,15.274567,15.274567,0,0,0,0,0,0,0,0,0,0,54.2,57.49,31.85,54.25,6.666666666666667,1,1,0,0,0,8,5,0,615,-2889.168,32572.152,0,0,5254.1641 -10004,12322,22237,22236,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,9.3389902,9.4201031,0,1,0,147.84108,0,-9,-9,2019,16,5,55,55,1,5,0,29.851355,29.851355,0,0,0,0,0,0,0,0,4.3792048,0,31.85,54.25,54.2,57.49,6.666666666666667,1,1,0,0,5,8,5,0,615,-2889.168,32572.152,0,0,5254.1641 -10005,12323,22238,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1157.0889,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,40.08,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,1139,-132401.88,0,149024.42,0,630.49438 -10006,12324,22239,-9,-9,-9,1,1,75,0,2,0,2,2,-9,0,3,0,0,0,0,0,-964.44678,0,3,3,2019,9,0,0,50,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8743331,0,63.65,49.16,-9,-9,5,1,1,0,0,11,6,1,1,413,-405566.47,0,0,0,923.99036 -10007,12325,22240,22241,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.399509,7.2719464,47,6,17.002848,0,3,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.916835,7.6125531,57.16,56.15,49,48,10,1,1,0,0,0,7,3,1,623,1016740.3,526676.31,762228.38,0,1734.3916 -10007,12325,22241,22240,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.9969425,5.9821048,47,-6,193.1731,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.024714,49,48,57.16,56.15,7,1,1,0,0,0,7,3,1,623,1016740.3,526676.31,762228.38,0,1734.3916 -10008,12326,22242,22243,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.1116419,8.398181,0,7,1,-19.066206,0,1,1,2019,9,0,15,18,1,0,0,33.259617,33.259617,0,0,0,0,0,0,0,0,1.8172125,0,49.52,56.95,47.61,53.7,8.333333333333334,1,1,0,0,8,8,4,1,384.5,1193423.6,531726.56,330510.81,0,4874.8911 -10008,12326,22243,22242,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.7414403,7.4104815,0,7,-1,126.12728,0,1,2,2019,12,2,10,18,1,2,0,18.601294,18.601294,0,0,0,0,0,0,0,0,8.3898134,0,47.61,53.7,49.52,56.95,8.333333333333334,1,1,0,0,8,8,4,1,384.5,1193423.6,531726.56,330510.81,0,4874.8911 -10008,12327,22244,-9,22242,22243,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-944.55609,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,36.43,52.23,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,805,-121328.72,0,0,0,0 -10009,12328,22245,22246,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.8907804,9.2725601,0,6,5,-4.5826993,0,-9,-9,2019,11,0,42,46,1,0,0,28.404053,28.404053,0,0,0,0,0,0,0,0,3.8198445,0,46.44,59.62,52.5,46.44,8.333333333333334,1,1,0,0,7,7,5,1,856,333715.69,131979,0,0,5116.7329 -10009,12328,22246,22245,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.9912014,8.8750563,0,6,-5,4.3625903,0,-9,-9,2019,9,0,41,43,1,0,0,21.480906,21.480906,0,0,0,0,0,0,0,0,5.8788133,0,52.5,46.44,46.44,59.62,8.333333333333334,1,1,0,0,9,7,5,1,856,333715.69,131979,0,0,5116.7329 -10010,12329,22247,22249,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,8.2093611,8.1451702,0,12,4,72.231781,0,-9,-9,2019,11,0,35,0,1,2,0,12.652293,12.652293,0,0,0,0,0,1,1,0,0,0,49,55,50,57,7,2,3,0,0,1,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 -10010,12329,22248,-9,22247,22249,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.81628,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 -10010,12329,22249,22247,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,7.8630981,8.0206137,0,2,-4,68.564812,0,-9,-9,2019,10,0,24,25,1,1,0,21.209862,21.209862,0,0,0,0,0,1,1,0,0,0,50,57,49,55,7,2,3,0,0,1,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 -10010,12329,22250,-9,22247,22249,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.1942,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 -10010,12329,22251,-9,22247,22249,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.67487,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,6,3,1,416.20001,638768.69,361768.03,144937.59,81961.789,3944.8469 -10011,12330,22252,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-875.22913,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,-9,-9,7,1,1,0,0,0,1,1,1,606,378930.91,0,0,0,797.89648 -10011,12331,22253,-9,22252,-9,1,1,45,0,0,0,2,2,-9,0,4,8.213933,8.192564,0,0,0,-894.33044,0,2,-9,2019,12,0,37,37,1,0,0,11.796993,11.796993,0,0,0,0,71.5,1,1,0,0,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,8,1,4,1,248,710531,154680.53,143391.95,85467.461,1274.1226 -10011,12332,22254,-9,22252,-9,1,1,42,0,0,0,1,1,-9,0,3,8.5088739,8.3710794,0,0,0,-1120.048,0,3,3,2019,12,2,42,43,1,2,0,15.923402,15.923402,0,0,0,0,0,1,1,0,4.9777927,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,713,-176624.05,-43336.137,0,0,2393.3113 -10012,12333,22255,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.2376232,8.2983017,0,0,-860.2121,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.644976,8.4077177,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,890,1308231,698012.63,416033.28,0,2532.4639 -10013,12334,22256,-9,22257,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.33087,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,486.66666,-22517.402,-14713.804,0,0,1685.3239 -10013,12334,22257,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,6.9120941,6.5885348,0,0,0,-1111.39,0,2,2,2019,10,0,16,16,1,0,0,8.2755947,8.2755947,0,0,0,0,0,1,1,0,0,0,71.13,36.21,-9,-9,5,1,1,0,0,8,13,2,0,486.66666,-22517.402,-14713.804,0,0,1685.3239 -10013,12334,22258,-9,22257,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.45782,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,2,0,486.66666,-22517.402,-14713.804,0,0,1685.3239 -10014,12335,22259,-9,22263,-9,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-882.14648,-9,2,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 -10014,12335,22260,22263,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.7038908,8.8822241,0,4,5,61.667282,0,-9,-9,2019,9,0,37,41,1,0,0,16.058273,16.058273,0,0,0,0,0,1,1,0,0,0,58.47,31.46,46.08,57.2,8.333333333333334,1,1,0,1,12,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 -10014,12335,22261,-9,22263,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1027.1995,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 -10014,12335,22262,-9,22263,-9,1,1,17,0,3,0,3,3,1,0,5,0,0,0,0,0,-1092.5731,-9,2,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,25.34,67.01000000000001,-9,-9,10,1,1,1,1,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 -10014,12335,22263,22260,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,6.6833148,7.1497517,5.2150517,4,-5,12.848576,0,2,2,2019,16,4,17,17,1,4,0,5.2444696,5.2444696,0,0,0,0,0,1,1,0,5.5438271,0,46.08,57.2,58.47,31.46,6.666666666666667,1,1,0,0,3,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 -10014,12335,22264,-9,22263,22260,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.31494,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,746.66669,449737.5,232606.42,425784.97,102727.98,3130.5557 -10015,12336,22265,-9,22268,22267,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.4413,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 -10015,12336,22266,-9,22268,22267,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.51672,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 -10015,12336,22267,22268,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.6113262,8.7077055,0,8,1,-23.231068,0,2,2,2019,9,0,42,45,1,0,0,21.292442,21.292442,0,0,0,0,0,1,1,0,0,0,45.46,61.87,54.69,57.47,8.333333333333334,1,1,0,0,10,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 -10015,12336,22268,22267,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.0429516,7.7994237,0,18,-1,-127.17311,0,2,3,2019,8,0,32,28,1,0,0,11.317742,11.317742,0,0,0,0,0,1,1,0,0,0,54.69,57.47,45.46,61.87,8.333333333333334,1,1,0,0,10,2,4,1,1191.25,665655.5,488138.84,270856.13,201085.59,3896.5034 -10016,12337,22269,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.0789022,8.0185137,0,0,0,-909.45105,0,3,2,2019,10,1,35,35,1,1,0,11.057654,11.057654,0,0,0,0,7,1,1,0,0,0,43.96,62.06,-9,-9,5,1,1,0,0,10,11,4,1,329,-104750.31,0,120952.47,32079.213,1074.3848 -10017,12338,22270,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.518775,8.7002907,0,0,0,-1125.3511,0,2,1,2019,9,1,40,42,1,1,0,14.994969,14.994969,0,0,0,0,0,1,1,0,0,0,51.01,49.85,-9,-9,8.333333333333334,3,4,0,0,10,8,5,0,1306,120759.88,84589.648,264584.28,163698,2896.1492 -10017,12339,22271,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,7.871377,8.0746145,0,0,0,-1026.0492,0,2,1,2019,6,0,30,0,1,0,0,9.8208714,9.8208714,0,0,0,0,0,1,1,0,0,0,46.69,58.35,-9,-9,8.333333333333334,3,4,0,0,4,8,4,0,243,-112127.26,43062.301,0,0,1774.5048 -10017,12340,22272,-9,22271,-9,1,0,32,0,0,0,2,2,-9,0,4,8.6342916,8.9351702,0,0,0,-1016.1814,0,2,1,2019,6,0,43,41,1,0,0,13.126785,13.126785,0,0,0,0,0,1,1,0,0,0,63.06,53.47,-9,-9,8.333333333333334,3,4,0,0,7,8,5,0,177,-227993.03,-28712.75,0,0,2037.0559 -10017,12341,22273,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.3173552,8.3679962,0,0,0,-1099.1709,0,-9,-9,2019,12,1,46,40,1,1,0,11.308619,11.308619,0,0,0,0,0,1,1,0,0,0,50.76,51.17,-9,-9,6.666666666666667,3,4,0,0,6,8,4,0,700,500801.88,-37531.527,0,0,1605.2919 -10018,12342,22274,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.3702068,6.5660033,0,0,-999.24805,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3723097,6.0843043,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,5339,548004.25,0,259127.42,0,1273.6715 -10019,12343,22275,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.0530014,7.0519247,0,0,0,-1129.2271,0,2,2,2019,8,1,16,16,1,1,0,9.2791138,9.2791138,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,491,538970.06,57681.074,359085.5,26170.789,1454.0359 -10020,12344,22276,22277,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.7036381,7.7687516,11,-2,-79.768791,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4135828,57.06,57.76,60.12,54.8,10,1,1,0,0,11,10,5,1,2405.5,5211059,3296937.5,958444,0,7212.8223 -10020,12344,22277,22276,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.2278757,9.3521042,9.3195543,47,2,62.715748,0,2,2,2019,4,0,16,8,1,0,0,13.178831,13.178831,1,0,0,0,0,1,1,0,0,8.8827295,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,1,2405.5,5211059,3296937.5,958444,0,7212.8223 -10021,12345,22278,22279,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.9195924,7.2471561,61,-1,-68.41317,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1846132,62.18,36.18,61.43,43.34,10,1,1,0,0,0,11,3,1,665,331970.09,274925.5,176414.67,0,2850.3665 -10021,12345,22279,22278,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.3971558,7.2725,61,1,64.877808,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9327421,61.43,43.34,62.18,36.18,8.333333333333334,1,1,0,0,0,11,3,1,665,331970.09,274925.5,176414.67,0,2850.3665 -10022,12346,22280,22281,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.7367449,8.6733179,0,11,-6,-19.54533,0,-9,-9,2019,6,0,37,37,1,0,0,16.977589,16.977589,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.61,41.71,8.333333333333334,1,1,0,0,7,13,4,1,314.66666,331898.19,281488.88,126835.3,53769.352,2937.7388 -10022,12346,22281,22280,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.2560339,7.3291254,0,11,6,-104.2566,0,3,3,2019,12,2,18,17,1,2,0,9.0044088,9.0044088,0,0,0,0,0,1,1,0,0,0,41.61,41.71,62.39,56.71,8.333333333333334,1,1,0,0,12,13,4,1,314.66666,331898.19,281488.88,126835.3,53769.352,2937.7388 -10022,12346,22282,-9,22281,22280,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.2128,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,4,1,314.66666,331898.19,281488.88,126835.3,53769.352,2937.7388 -10023,12347,22283,22284,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.8488626,7.8592234,0,9,0,-2.2651186,0,1,2,2019,9,0,46,80,1,0,0,5.7556028,5.7556028,0,0,0,0,0,0,0,0,6.3526998,0,53.22,50.02,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,1052.5,981667.75,946901.38,437240.94,0,1992.3721 -10023,12347,22284,22283,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.18223,7.5616817,0,9,0,78.964195,0,2,2,2019,12,2,23,20,1,2,0,8.3590155,8.3590155,0,0,0,0,0,0,0,0,0,0,51.14,60.45,53.22,50.02,5,1,1,0,0,10,12,4,1,1052.5,981667.75,946901.38,437240.94,0,1992.3721 -10024,12348,22285,22286,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,7.5570703,7.3269382,0,46,1,-24.536787,0,2,-9,2019,6,0,30,32,1,0,0,7.9252477,7.9252477,0,0,0,0,0,1,1,0,3.6064141,0,60.95,22.45,48.24,53.66,8.333333333333334,1,1,0,0,5,5,4,1,1361,347044,39838.52,97122.813,0,2409.0405 -10024,12348,22286,22285,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6791401,8.17661,0,46,-1,19.832586,0,-9,-9,2019,12,0,25,25,1,0,0,10.623363,10.623363,0,0,0,0,0,1,1,0,3.3256207,0,48.24,53.66,60.95,22.45,8.333333333333334,1,1,0,0,9,5,4,1,1361,347044,39838.52,97122.813,0,2409.0405 -10025,12349,22287,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,4.4865952,4.2735648,0,0,-901.69287,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.2598877,43.39,45.28,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,571,-112268.27,149326.8,0,0,1167.927 -10026,12350,22288,-9,22289,-9,1,1,33,0,0,0,1,1,-9,0,3,7.8036671,7.959476,0,0,0,-1087.2856,0,1,1,2019,11,2,40,40,1,2,0,6.7528076,6.7528076,0,0,0,0,0,1,1,0,3.0401061,0,43.29,50.63,-9,-9,3.333333333333333,1,1,0,0,10,10,4,1,194,27717.938,99074.688,0,0,1371.8469 -10026,12351,22289,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,7.3370929,7.1486783,5.2664881,0,0,-1163.406,0,-9,-9,2019,8,0,10,10,1,0,0,14.717694,14.717694,0,0,0,0,0,1,1,0,6.2411299,0,63.21,26.71,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,306,219664.03,141136.92,0,0,1435.1442 -10027,12352,22290,22291,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,10,-8,0,0,-9,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,71.5,1,1,0,2.6350515,0,31.91,47.7,52,45,3.333333333333333,1,1,0,0,3,8,1,1,720.5,291700.97,30656.4,119899.76,0,1312.269 -10027,12352,22291,22290,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,10,8,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,22.180153,0,0,1,1,0,2.6919148,0,52,45,31.91,47.7,8,1,1,0,0,0,8,1,1,720.5,291700.97,30656.4,119899.76,0,1312.269 -10028,12353,22292,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.1098719,8.0225983,0,0,0,-944.53302,0,-9,2,2019,11,0,37,39,1,0,0,10.487274,10.487274,0,0,0,0,0,1,1,0,0,0,58.23,24.7,-9,-9,3.333333333333333,1,1,0,0,10,7,4,1,993,131164.95,35167.633,0,0,1398.3965 -10029,12354,22293,22294,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.8956852,5.6479006,6,2,78.279388,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,6.8513322,6.078393,60.12,54.8,34.96,43.69,10,1,1,0,0,0,13,2,1,1302.5,9761.7188,191319.08,0,0,2024.2922 -10029,12354,22294,22293,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,4.57549,4.1888728,6,-2,-59.986347,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,0,8.3708591,0,74.5,1,1,0,6.4009318,4.5266371,34.96,43.69,60.12,54.8,10,1,1,0,0,0,13,2,1,1302.5,9761.7188,191319.08,0,0,2024.2922 -10030,12355,22295,22296,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,6.3012547,6.5958772,10,4,22.608988,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,6.8122454,41.99,47.09,44.75,54.99,5,1,1,1,1,7,10,2,1,399,1370087.6,13215.925,645752.5,0,529.49719 -10030,12355,22296,22295,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,10,-4,-44.373295,0,-9,-9,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,.027492424,0,44.75,54.99,41.99,47.09,8.333333333333334,1,1,1,0,8,10,2,1,399,1370087.6,13215.925,645752.5,0,529.49719 -10031,12356,22297,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.8575959,7.9362431,0,0,-936.68738,0,3,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3197114,7.7953062,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,8,7,3,1,2036,1083848.6,541842.63,330274,0,1732.3616 -10032,12357,22298,22299,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4367266,8.5249443,0,6,1,15.121499,0,-9,-9,2019,12,1,43,36,1,1,0,14.136884,14.136884,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.85,53.68,8.333333333333334,1,1,0,0,5,11,5,1,622,710504,607971,87574.25,100188.95,3105.0286 -10032,12357,22299,22298,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.953177,7.9978495,0,6,-1,-23.819799,0,-9,-9,2019,6,0,40,45,1,0,0,9.4771528,9.4771528,0,0,0,0,0,0,0,0,0,0,44.85,53.68,57.16,56.15,8.333333333333334,1,1,0,0,8,11,5,1,622,710504,607971,87574.25,100188.95,3105.0286 -10033,12358,22300,-9,22301,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.271,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,1,0,1369.5,-42308.738,0,0,0,668.27124 -10033,12358,22301,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-993.62463,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,56,-9,-9,7,1,1,1,1,0,8,1,0,1369.5,-42308.738,0,0,0,668.27124 -10034,12359,22302,22303,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.3602653,7.5380344,11,5,96.845718,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9568748,7.747292,43.6,51.61,44.12,48.5,8.333333333333334,1,1,0,0,0,2,4,1,502.5,1230062.8,767833,179960.7,0,3159.4575 -10034,12359,22303,22302,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.1353941,7.7489738,36,-5,32.39209,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,8.0163622,44.12,48.5,43.6,51.61,6.666666666666667,1,1,0,0,3,2,4,1,502.5,1230062.8,767833,179960.7,0,3159.4575 -10035,12360,22304,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.3073292,8.5225677,0,0,0,-1019.1531,0,-9,-9,2019,6,0,40,43,1,0,0,14.290071,14.290071,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,599,102152.47,-49248.996,0,0,1509.2251 -10036,12361,22305,22308,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.4095545,9.674531,0,17,1,-131.97485,0,-9,-9,2019,2,0,50,55,1,0,0,34.035854,34.035854,0,0,0,0,0,1,1,0,0,0,62.39,56.71,48,56,8.333333333333334,1,1,0,0,10,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 -10036,12361,22306,-9,22308,22305,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.9332,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 -10036,12361,22307,-9,22308,22305,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.43176,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 -10036,12361,22308,22305,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,0,0,0,17,-1,88.086388,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,62.39,56.71,7,1,1,0,0,3,7,5,1,603,150993.41,65715.938,232113.03,133514.28,4402.9775 -10037,12362,22309,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,1,0,4.7863183,4.7904973,0,0,-1006.8972,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,6.7874799,6.3238678,60.482254,0,1,1,0,5.1475997,4.9069791,52.22,18.93,-9,-9,10,1,1,0,0,0,10,2,1,1897,153738.63,115345.48,301892.94,0,922.08557 -10038,12363,22310,22311,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,0,0,0,9,-2,52.286285,0,2,-9,2019,8,0,0,42,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,50.1,58.15,37.78,8.333333333333334,1,1,0,1,12,2,2,1,3134.5,141285.75,-7350.9219,280504.72,14792.63,-487.9632 -10038,12363,22311,22310,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.0694194,7.4919162,0,9,2,-6.4818726,0,2,3,2019,2,0,35,33,1,0,0,4.1496296,4.1496296,0,0,0,0,0,1,1,0,0,0,58.15,37.78,61.68,50.1,10,1,1,0,0,5,2,2,1,3134.5,141285.75,-7350.9219,280504.72,14792.63,-487.9632 -10038,12364,22312,-9,22311,22310,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-1059.6007,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,2,2,1,1,2080,-91568.289,0,0,0,0 -10039,12365,22313,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,5.808619,5.7049913,0,0,-1074.1343,0,3,-9,2019,7,1,0,0,4,1,0,0,0,1,29.024021,0,277.80966,0,1,1,0,0,5.6762066,66.92,15.49,-9,-9,10,1,1,0,0,0,4,2,0,154,-100684.16,0,0,0,1534.0645 -10040,12366,22314,22318,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.889492,8.9069996,0,23,3,-74.27124,0,2,2,2019,9,0,35,35,1,0,0,25.77091,25.77091,0,0,0,0,0,1,1,0,5.1033521,0,54.2,57.49,44.64,55.04,1.666666666666667,1,1,0,0,9,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 -10040,12366,22315,-9,22318,22314,1,1,17,0,2,1,2,0,0,0,4,0,3.7101374,4.0336003,0,0,-997.42694,-9,1,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,3.3227556,0,39.39,57.52,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 -10040,12366,22316,-9,22318,22314,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9423,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 -10040,12366,22317,-9,22318,22314,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.5989,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 -10040,12366,22318,22314,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.7517986,7.613905,0,23,-3,-86.487244,0,3,3,2019,11,2,33,33,1,2,0,9.0608511,9.0608511,0,0,0,0,0,1,1,0,3.0585082,0,44.64,55.04,54.2,57.49,6.666666666666667,1,1,0,0,11,7,4,1,1058.8,591144.94,297541.41,336772.56,98108.492,3780.1582 -10041,12367,22319,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,3.3105433,3.2769704,0,0,-1008.6822,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.34131783,3.0333498,65.06,41.58,-9,-9,10,1,1,0,0,0,6,2,1,4894,-214771.05,67870.031,0,0,1233.5309 -10042,12368,22320,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.263792,8.4643917,0,0,0,-980.46057,0,-9,-9,2019,23,10,38,51,1,10,0,15.994195,15.994195,0,0,0,0,0,0,0,0,2.396255,0,32.64,63.56,-9,-9,5,1,1,0,1,9,7,5,0,422,348379.34,34153.395,0,0,1975.2562 -10043,12369,22321,22322,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0107727,7.7294817,0,4,1,218.03943,0,2,2,2019,10,0,35,36,1,0,0,11.371814,11.371814,0,0,0,0,0,0,0,0,6.9763508,0,47.91,57.48,50.91,54.79,8.333333333333334,1,1,0,0,10,13,4,1,1000.5,497028.59,347727.88,154465.53,5870.0186,2438.8657 -10043,12369,22322,22321,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.6037674,7.5733356,0,4,-1,-27.314922,0,3,3,2019,12,0,39,0,1,0,0,6.5437279,6.5437279,0,0,0,0,0,0,0,0,0,0,50.91,54.79,47.91,57.48,8.333333333333334,1,1,0,0,10,13,4,1,1000.5,497028.59,347727.88,154465.53,5870.0186,2438.8657 -10043,12370,22323,-9,22322,22321,1,1,28,0,0,0,2,2,-9,0,4,7.9308324,7.9039664,0,0,0,-808.93896,0,3,2,2019,11,0,36,36,1,0,1,7.1124282,7.1124282,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1247,-153070.52,9344.2031,0,0,889.05725 -10044,12371,22324,22325,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,20,1,-94.57402,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,3.6723137,0,0,1,1,0,3.1887739,0,62.51,41.87,58.32,50.22,8.333333333333334,1,1,0,0,0,10,3,1,508.5,1121368.8,262198.13,586314.56,0,3250.6658 -10044,12371,22325,22324,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.2804012,8.2176456,32,-1,-43.840824,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0201869,8.5807104,58.32,50.22,62.51,41.87,8.333333333333334,1,1,0,0,4,10,3,1,508.5,1121368.8,262198.13,586314.56,0,3250.6658 -10045,12372,22326,-9,22327,22329,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.15637,-9,2,1,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,0,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 -10045,12372,22327,22329,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.4078574,6.9651794,0,20,-11,4.5820336,0,3,-9,2019,1,0,18,8,1,0,0,8.5681639,8.5681639,0,0,0,0,0,1,1,0,0,0,57.06,57.76,36.43,60.14,10,1,1,0,0,9,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 -10045,12372,22328,-9,22327,22329,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.6944,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 -10045,12372,22329,22327,-9,-9,1,1,57,0,2,0,1,1,-9,0,3,9.0230608,8.6605625,0,20,11,-1.9111438,0,2,2,2019,22,10,38,39,1,10,0,21.828119,21.828119,0,0,0,0,0,1,1,0,2.7812865,0,36.43,60.14,57.06,57.76,3.333333333333333,1,1,0,0,9,2,4,1,660.75,670431.81,419977.25,278629.78,77538.039,3327.4619 -10046,12373,22330,-9,-9,-9,1,0,57,0,0,0,1,1,0,0,4,0,0,0,18,7,0,-9,1,1,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,59.15,49.67,47,50,8.333333333333334,1,1,0,0,9,11,1,1,185,1334216.9,0,517419.28,0,156.98277 -10047,12374,22331,-9,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,7.3949962,7.4511213,0,0,0,-902.38287,0,2,2,2019,9,0,27,24,1,0,0,7.8426442,7.8426442,0,0,0,0,0,1,1,0,0,0,45.92,45.23,-9,-9,5,1,1,0,0,9,6,2,0,2138.3333,130609.05,63297.203,0,0,1242.504 -10047,12374,22332,-9,22331,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.80591,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,2138.3333,130609.05,63297.203,0,0,1242.504 -10047,12374,22333,-9,22331,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.91168,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,2138.3333,130609.05,63297.203,0,0,1242.504 -10048,12375,22334,22335,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.7889252,8.0278473,4,-1,94.795052,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9371009,49.41,56.95,51,48,8.333333333333334,1,1,0,0,0,13,3,1,1103,1304684,658562.25,275984.84,0,1842.9756 -10048,12375,22335,22334,-9,-9,1,1,64,0,0,0,1,1,-9,1,3,0,0,0,4,1,55.521339,0,3,3,2019,10,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,49.41,56.95,7,1,1,1,0,0,13,3,1,1103,1304684,658562.25,275984.84,0,1842.9756 -10048,12376,22336,-9,22334,22335,1,1,24,0,0,0,1,1,-9,0,3,8.5609417,8.7305851,0,0,0,-955.23328,0,2,-9,2019,16,6,45,51,1,6,1,13.171233,13.171233,0,0,0,0,0,1,1,0,0,0,35.9,60.41,-9,-9,3.333333333333333,1,1,0,0,2,13,5,1,1125,488094.44,22599.916,160560.38,128084.04,2694.4111 -10049,12377,22337,22338,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.3416767,8.0411053,0,23,-3,28.188751,0,2,2,2019,14,2,30,23,1,2,0,12.299565,12.299565,0,0,0,0,0,0,0,0,4.9763579,0,37.54,56.92,51.83,57.2,6.666666666666667,1,1,0,0,12,9,5,0,731.5,1609799.6,1111149.8,387568.84,19186.656,4058.3545 -10049,12377,22338,22337,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.9080715,8.971736,0,23,3,-29.727562,0,-9,-9,2019,13,1,45,43,1,1,0,17.879156,17.879156,0,0,0,0,0,0,0,0,0,0,51.83,57.2,37.54,56.92,8.333333333333334,1,1,0,0,12,9,5,0,731.5,1609799.6,1111149.8,387568.84,19186.656,4058.3545 -10050,12378,22339,22340,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.7732582,8.1062689,41,-15,88.626503,0,-9,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,120,1,1,0,0,7.8683505,42.5,30.78,34.77,25.02,1.666666666666667,3,4,0,1,6,9,3,1,842,194117.03,223238.25,94321.438,0,2240.4224 -10050,12378,22340,22339,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,5.0941734,4.9278922,41,15,277.36072,0,-9,-9,2019,27,10,0,0,4,10,0,0,0,1,41.220688,32.935951,384.74377,0,1,1,0,5.5716653,5.0255451,34.77,25.02,42.5,30.78,5,4,2,0,1,9,9,3,1,842,194117.03,223238.25,94321.438,0,2240.4224 -10051,12379,22341,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.7541814,5.5173531,0,0,-828.55286,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,4.8963761,0,0,0,0,0,5.2079864,5.4623752,54.61,51.04,-9,-9,5,1,1,0,0,3,11,2,1,2287,349147.75,335745.47,75796.086,0,699.05408 -10052,12380,22342,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7284245,5.5407782,0,0,-1066.1685,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,3.5629551,0,26.025715,0,1,1,0,3.2963858,5.3050065,25.26,31.88,-9,-9,5,1,1,0,0,0,6,2,1,2451,-26368.959,131390.25,74556.922,19847.166,1393.6227 -10053,12381,22343,22344,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.8100743,7.8024011,0,26,2,27.015911,0,-9,-9,2019,6,0,39,42,1,0,0,7.9247017,7.9247017,0,0,0,0,0,0,0,0,0,0,60.02,56.42,50.06,55.28,10,1,1,0,0,11,2,3,1,341.5,258550.77,155206.17,55006.504,0,2062.3835 -10053,12381,22344,22343,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.7984462,6.5800834,0,27,-2,-3.2398314,0,3,3,2019,6,0,17,17,1,0,0,7.5189519,7.5189519,0,0,0,0,0,0,0,0,0,0,50.06,55.28,60.02,56.42,10,1,1,0,0,11,2,3,1,341.5,258550.77,155206.17,55006.504,0,2062.3835 -10053,12382,22345,-9,22344,22343,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1099.2438,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.59,54.8,-9,-9,10,1,1,0,0,0,2,2,1,725,89016.656,0,0,0,1061.7441 -10054,12383,22346,22347,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.9229584,8.7242107,0,21,0,79.496643,0,3,2,2019,10,0,50,45,1,0,0,17.15999,17.15999,0,0,0,0,0,1,1,0,0,0,46.4,59.87,36.97,58.59,8.333333333333334,1,1,0,0,11,1,5,1,638.5,974244.88,775760.38,472534.41,310827.56,4151.7949 -10054,12383,22347,22346,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.8704786,9.0414391,0,21,0,144.36119,0,2,2,2019,11,0,50,50,1,0,0,12.74628,12.74628,0,0,0,0,2,1,1,0,0,0,36.97,58.59,46.4,59.87,8.333333333333334,1,1,0,1,11,1,5,1,638.5,974244.88,775760.38,472534.41,310827.56,4151.7949 -10055,12384,22348,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.0489655,7.6384673,0,0,0,-1027.4778,0,2,1,2019,7,0,24,24,1,0,0,11.683856,11.683856,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,3,4,0,0,9,8,3,0,1488,-393304.41,127966.11,0,0,1061.4506 -10056,12385,22349,-9,22352,22351,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-963.5058,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,2,3,-9,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 -10056,12385,22350,-9,22352,22351,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.8827,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 -10056,12385,22351,22352,-9,-9,1,1,56,0,3,0,3,3,-9,0,3,0,0,0,21,10,0,-9,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,2.2756238,0,50,49,46.62,47.44,7,2,3,1,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 -10056,12385,22352,22351,-9,-9,1,0,46,0,3,0,3,3,-9,1,3,0,0,0,21,-10,0,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,42,1,0,1,0,0,46.62,47.44,50,49,8.333333333333334,2,3,0,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 -10056,12385,22353,-9,22352,22351,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-958.55634,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,0,1,0,0,58.32,50.22,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,606.20001,-8158.7119,0,0,0,1352.222 -10057,12386,22354,-9,22356,-9,1,0,16,1,2,1,3,0,-9,0,3,0,0,0,0,0,-867.80707,-9,2,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.99,53.75,-9,-9,5,1,1,0,0,0,5,2,0,1324.3334,0,0,0,0,727.19611 -10057,12386,22355,-9,22356,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.909,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1324.3334,0,0,0,0,727.19611 -10057,12386,22356,-9,-9,-9,1,0,43,1,2,0,2,2,-9,0,3,0,6.4551601,6.4475489,0,0,-976.9328,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,6.1753783,0,34.73,60.05,-9,-9,5,1,1,0,0,8,5,2,0,1324.3334,0,0,0,0,727.19611 -10058,12387,22357,22358,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.2386637,9.1311646,0,10,-1,4.1681194,0,2,2,2019,6,0,49,53,1,0,0,23.984562,23.984562,0,0,0,0,0,1,1,0,5.058145,0,54.96,53.17,55.12,42.1,6.666666666666667,1,1,0,0,11,11,5,1,1163.5,513600.94,689868.69,178437.75,34020.535,3268.1323 -10058,12387,22358,22357,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,10,1,-14.047383,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,14.5,1,1,0,.085420616,0,55.12,42.1,54.96,53.17,5,1,1,0,0,1,11,5,1,1163.5,513600.94,689868.69,178437.75,34020.535,3268.1323 -10058,12388,22359,-9,22358,22357,1,1,34,0,0,0,2,2,-9,1,3,6.7439818,6.6455112,0,0,0,-1055.5129,0,2,2,2019,8,0,15,16,1,0,1,7.7277017,7.7277017,0,0,0,0,0,1,1,0,0,0,52.99,48.57,-9,-9,10,1,1,0,0,11,11,2,1,583,-188412.86,0,0,0,1238.4401 -10059,12389,22360,-9,22362,22361,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-994.63867,-9,3,3,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,331.66666,-61709.336,0,0,0,2187.0859 -10059,12389,22361,22362,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.3185835,7.3765559,0,21,1,-43.94421,0,3,3,2019,9,0,40,0,1,1,0,3.2047353,3.2047353,0,0,0,0,0,1,1,0,0,0,47.1,48.39,62.39,56.71,8.333333333333334,2,3,0,0,9,8,2,1,331.66666,-61709.336,0,0,0,2187.0859 -10059,12389,22362,22361,-9,-9,1,0,43,0,1,0,3,3,-9,0,5,0,0,0,21,-1,65.268677,0,3,3,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,47.1,48.39,0,2,3,0,0,0,8,2,1,331.66666,-61709.336,0,0,0,2187.0859 -10059,12390,22363,-9,22362,22361,1,0,22,0,1,0,2,2,-9,0,2,8.4455242,8.3668661,0,0,0,-940.70068,0,3,3,2019,17,6,40,0,1,6,1,10.38483,10.38483,0,0,0,0,0,1,1,0,0,0,29.4,36.88,-9,-9,10,2,3,0,0,1,8,4,1,482,-351651.63,0,0,0,2854.8015 -10059,12391,22364,-9,22362,22361,1,0,20,0,1,0,2,2,1,0,4,7.8072343,8.7672462,8.3558521,0,0,-950.60193,-9,3,3,2019,11,0,35,0,1,2,1,8.1543598,8.1543598,0,0,0,0,0,1,1,0,9.0095978,0,47,58,-9,-9,7,2,3,0,0,3,8,5,1,696,246042.08,181568.98,0,0,2572.5457 -10060,12392,22365,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-961.26764,0,-9,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,1.5538038,0,48.75,61.27,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,417,151949.88,0,0,0,353.48148 -10061,12393,22366,22367,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,7.8896699,8.2173967,0,3,3,-14.333606,0,3,3,2019,12,1,40,45,1,1,0,9.6290941,9.6290941,0,0,0,0,14.5,1,1,0,1.9578787,0,50.1,49.64,44.02,60.7,8.333333333333334,1,1,0,0,8,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 -10061,12393,22367,22366,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.0875368,8.3662567,0,3,-3,-7.5544052,0,3,3,2019,11,2,42,24,1,2,0,9.0663328,9.0663328,0,0,0,0,2,1,1,0,0,0,44.02,60.7,50.1,49.64,6.666666666666667,1,1,0,0,11,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 -10061,12393,22368,-9,22367,22366,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.8925,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 -10061,12393,22369,-9,22367,22366,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.53845,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,752,33664.684,110442.45,68928.609,45917.445,3462.4087 -10062,12394,22370,-9,22371,22374,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.85455,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,812.20001,19477.904,0,0,0,1679.4948 -10062,12394,22371,22374,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,4,12,-12.746652,0,-9,-9,2019,19,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.57,58.04,61.51,44.56,1.666666666666667,1,1,0,0,3,7,2,0,812.20001,19477.904,0,0,0,1679.4948 -10062,12394,22372,-9,22371,-9,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.60193,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,0,812.20001,19477.904,0,0,0,1679.4948 -10062,12394,22373,-9,22371,-9,1,1,16,1,3,1,3,0,-9,0,3,0,0,0,0,0,-880.49408,-9,2,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,50.48,-9,-9,10,1,1,0,0,0,7,2,0,812.20001,19477.904,0,0,0,1679.4948 -10062,12394,22374,22371,-9,-9,1,1,25,1,3,0,2,2,-9,0,4,7.9289546,8.1712875,0,4,-12,74.312012,0,-9,-9,2019,10,1,46,45,1,1,0,7.5100884,7.5100884,0,0,0,0,0,1,1,0,0,0,61.51,44.56,35.57,58.04,8.333333333333334,1,1,0,0,4,7,2,0,812.20001,19477.904,0,0,0,1679.4948 -10063,12395,22375,-9,22378,22376,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1000.6875,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 -10063,12395,22376,22378,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1450005,7.8146462,0,5,0,19.171803,0,2,3,2019,12,1,40,44,1,1,0,7.2190137,7.2190137,0,0,0,0,0,1,1,0,0,0,46.5,58.26,58.05,54.52,8.333333333333334,1,1,0,0,6,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 -10063,12395,22377,-9,22378,22376,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.25696,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 -10063,12395,22378,22376,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.6756449,8.7342777,0,5,0,-96.371948,0,2,2,2019,6,0,33,33,1,0,0,21.080851,21.080851,0,0,0,0,0,1,1,0,.63720399,0,58.05,54.52,46.5,58.26,8.333333333333334,1,1,0,0,6,9,4,1,693,285970.34,300168,206864.06,120153.53,3554.5867 -10064,12396,22379,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.9070234,8.199873,8.3166046,0,0,-1052.5007,0,3,2,2019,8,0,6,10,1,0,0,14.426456,14.426456,0,0,0,.95347357,71.5,1,1,0,9.1395044,0,44.19,56.73,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,1160,-68463.961,169627.66,0,0,2972.9045 -10064,12397,22380,-9,22379,-9,1,0,24,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1110.2467,0,2,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.64,41.08,-9,-9,10,1,1,0,0,0,9,1,1,110,54736.105,0,0,0,626.28381 -10065,12398,22381,22382,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.5942564,6.4683051,9,3,62.192863,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,1.7254715,0,0,1,1,0,0,6.4104996,30.04,44.66,43.27,19.65,8.333333333333334,1,1,0,0,7,11,2,1,249,-126822.92,109961.85,0,0,2163.3616 -10065,12398,22382,22381,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,-3,-131.41368,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,8.2691479,0,0,1,1,0,0,0,43.27,19.65,30.04,44.66,8.333333333333334,1,1,0,0,0,11,2,1,249,-126822.92,109961.85,0,0,2163.3616 -10066,12399,22383,22384,-9,-9,1,1,94,0,0,0,1,1,-9,0,4,0,7.4656048,7.9273295,41,21,52.496513,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,17.048168,0,0,1,1,0,1.0182896,7.5801334,63.39,42.39,57.16,56.15,10,1,1,0,0,0,7,4,1,270.5,0,0,0,0,3140.4951 -10066,12399,22384,22383,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.4699373,7.5465403,41,-21,-39.91914,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.862803,7.6173487,57.16,56.15,63.39,42.39,8.333333333333334,1,1,0,0,0,7,4,1,270.5,0,0,0,0,3140.4951 -10067,12400,22385,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1063.4108,0,2,1,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.25,20.16,-9,-9,1.666666666666667,4,2,0,1,0,8,1,0,553,-233288.67,-97594.391,0,0,1697.3754 -10068,12401,22386,22387,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.3853531,9.5642452,0,11,3,15.766253,0,-9,-9,2019,11,0,40,40,1,0,0,33.627316,33.627316,0,0,0,0,7,0,0,0,4.2164893,0,53.8,45.89,58.99,34.1,8.333333333333334,1,1,0,0,8,1,5,1,374,832219.31,772940.31,299743.84,19455.168,5143.7915 -10068,12401,22387,22386,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.9861588,8.2874613,0,31,-3,9.2888432,0,2,2,2019,7,0,23,23,1,0,0,17.778574,17.778574,0,0,0,0,7,0,0,0,0,0,58.99,34.1,53.8,45.89,8.333333333333334,1,1,0,0,13,1,5,1,374,832219.31,772940.31,299743.84,19455.168,5143.7915 -10068,12402,22388,-9,22387,22386,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1051.0265,-9,2,1,2019,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.25567305,0,62.97,41.18,-9,-9,8.333333333333334,1,1,0,0,5,1,1,1,383,0,0,0,0,-93.536324 -10069,12403,22389,22390,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,6.2154508,6.3558588,4,0,-49.778076,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.4966326,6.4718161,47.31,50.2,59.43,58.05,8.333333333333334,1,1,0,0,11,11,4,1,1149.5,1883053.1,1401373.3,130480.92,0,2854.6035 -10069,12403,22390,22389,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,0,7.8893003,7.7982988,4,0,131.83293,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.3941369,8.2605629,59.43,58.05,47.31,50.2,8.333333333333334,1,1,0,0,7,11,4,1,1149.5,1883053.1,1401373.3,130480.92,0,2854.6035 -10070,12404,22391,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.1961932,5.1657734,0,0,-970.92383,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.5566423,4.9060712,48.35,47.74,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2150,15614.567,0,0,0,1324.4307 -10071,12405,22392,22393,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,50,0,76.521004,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2401338,0,60.7,47.65,57.33,53.46,8.333333333333334,1,1,0,0,0,6,3,1,640,955772.25,419165.66,213415.78,0,3631.4634 -10071,12405,22393,22392,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,8.3478222,8.2968636,50,0,51.917282,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4402885,7.2457981,57.33,53.46,60.7,47.65,8.333333333333334,1,1,0,0,0,6,3,1,640,955772.25,419165.66,213415.78,0,3631.4634 -10072,12406,22394,-9,22396,22397,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-950.82513,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 -10072,12406,22395,-9,22396,22397,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-902.48846,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 -10072,12406,22396,22397,-9,-9,1,0,51,0,2,0,1,1,-9,0,5,8.6895447,8.7627621,0,8,-2,3.6373308,0,2,2,2019,7,0,20,46,1,0,0,40.764149,40.764149,0,0,0,0,0,0,0,0,4.3211293,0,57.06,57.76,49.87,50.46,8.333333333333334,3,4,0,0,7,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 -10072,12406,22397,22396,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,9.7837944,9.459013,0,8,2,-125.71288,0,3,3,2019,7,0,55,50,1,0,0,38.555046,38.555046,0,0,0,0,0,0,0,0,5.1684842,0,49.87,50.46,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,495.5,1540981.6,880651.13,862843.44,289368.5,7726.2905 -10073,12407,22398,22399,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.0810671,7.6130028,0,1,-12,8.166976,-9,-9,-9,2019,10,0,38,0,1,1,0,8.7117996,8.7117996,0,0,0,0,0,1,1,0,3.7149105,0,50,55,49.91,39.62,8,1,1,0,0,1,2,4,1,219.5,458181.38,351073.88,329992.94,183779.56,3095.1392 -10073,12407,22399,22398,-9,-9,1,1,59,0,2,0,2,2,-9,0,2,8.3567839,8.7346277,0,11,12,-64.464363,-9,3,-9,2019,12,0,38,0,1,0,0,12.865208,12.865208,0,0,0,0,0,1,1,0,2.8759689,0,49.91,39.62,50,55,6.666666666666667,1,1,0,0,7,2,4,1,219.5,458181.38,351073.88,329992.94,183779.56,3095.1392 -10074,12408,22400,22403,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,5.8504,5.855938,0,12,-13,-31.409773,0,3,3,2019,6,0,15,4,1,0,0,3.0849741,3.0849741,0,0,0,0,0,1,1,0,1.9384347,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,3,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 -10074,12408,22401,-9,22400,22403,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1937,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 -10074,12408,22402,-9,22400,22403,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.5244,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 -10074,12408,22403,22400,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.9114285,7.6434021,0,11,13,37.663116,0,2,1,2019,9,0,32,30,1,0,0,10.104493,10.104493,0,0,0,0,0,1,1,0,8.663496,0,48.87,58.55,54.1,59.11,8.333333333333334,1,1,0,0,9,12,2,1,803.75,220240.48,112482.73,138062.81,24917.621,3686.1724 -10075,12409,22404,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,0,0,0,0,-981.19305,0,2,3,2019,10,2,0,45,3,2,0,0,0,0,0,0,0,2,0,0,0,0,0,52.66,36.05,-9,-9,8.333333333333334,1,1,0,0,9,8,1,1,1205,237221.88,0,338308.06,0,-547.89148 -10076,12410,22405,22406,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,39,-5,-7.6686683,0,2,2,2019,12,1,0,24,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,52.99,46.08,47.15,56.66,5,1,1,1,0,11,12,4,1,1004.5,2126716.8,1205285.5,343751.94,0,3290.8464 -10076,12410,22406,22405,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.4518762,8.7371616,7.9404235,39,5,161.48495,0,2,2,2019,9,0,21,57,1,0,0,9.2317877,9.2317877,0,0,0,0,0,1,1,0,8.3779688,8.2989988,47.15,56.66,52.99,46.08,6.666666666666667,1,1,0,0,10,12,4,1,1004.5,2126716.8,1205285.5,343751.94,0,3290.8464 -10077,12411,22407,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.9375515,7.6397882,0,0,-896.57318,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,42,1,1,0,7.63346,7.5814652,35.3,44.73,-9,-9,5,1,1,0,0,1,2,3,1,656,820064.5,117532.51,166109.63,0,2928.8142 -10078,12412,22408,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3925381,8.2118092,0,0,0,-900.06012,0,-9,-9,2019,10,0,40,40,1,0,0,12.179369,12.179369,0,0,0,0,74.5,1,1,0,0,0,47.07,51.26,-9,-9,5,1,1,0,0,10,1,4,1,1320,-308308,38044.945,0,0,1873.5156 -10079,12413,22409,-9,22412,22410,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.65027,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,4,1,507,1823438.8,1445989.8,437024.06,227511.47,2421.9795 -10079,12413,22410,-9,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.7407465,8.7493324,0,3,6,59.990822,0,-9,-9,2019,21,9,60,52,1,9,0,13.772452,13.772452,0,0,0,0,0,1,1,0,0,0,36.01,56.52,49,56,3.333333333333333,2,3,0,0,9,6,4,1,507,1823438.8,1445989.8,437024.06,227511.47,2421.9795 -10079,12413,22411,-9,22412,22410,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.02545,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,507,1823438.8,1445989.8,437024.06,227511.47,2421.9795 -10079,12414,22412,-9,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,3,-6,-45.049213,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,36.01,56.52,7,2,3,0,0,0,6,4,1,260,-14797.156,0,138713.34,12191.286,594.09277 -10080,12415,22413,22414,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,47,2,62.936047,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.38,51.97,8.333333333333334,1,1,0,0,4,11,2,1,610,1154660.8,703796.75,151081.27,0,2344.0234 -10080,12415,22414,22413,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,7.366528,7.76682,5.3648992,47,-2,2.4269075,0,2,3,2019,14,3,18,18,1,3,0,10.140503,10.140503,0,0,0,0,0,1,1,0,0,5.4461298,44.38,51.97,57.16,56.15,6.666666666666667,1,1,0,0,9,11,2,1,610,1154660.8,703796.75,151081.27,0,2344.0234 -10081,12416,22415,-9,22419,22416,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.2272,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 -10081,12416,22416,22419,-9,-9,1,1,47,0,3,0,3,3,-9,0,5,8.0802183,8.295784,0,10,7,-23.100512,0,-9,-9,2019,7,0,40,46,1,0,0,11.262206,11.262206,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,8.333333333333334,1,1,0,0,12,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 -10081,12416,22417,-9,22419,22416,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.9442,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 -10081,12416,22418,-9,22419,22416,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.88489,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 -10081,12416,22419,22416,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.6337843,8.9581804,0,17,-7,-124.89323,0,2,1,2019,9,0,38,40,1,0,0,16.911928,16.911928,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,12,13,4,1,861.20001,1347775.4,1060438.8,345253.09,75947.5,3914.8391 -10082,12417,22420,22421,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.2150688,9.0530519,0,6,1,96.251427,0,2,2,2019,10,0,37,37,1,0,0,25.527824,25.527824,0,0,0,0,2,0,0,0,6.7225127,0,57.16,56.15,51.02,44.19,8.333333333333334,1,1,0,0,7,11,5,1,613,374426.59,178254.06,325364.81,171083.56,3987.854 -10082,12417,22421,22420,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,6.9465528,6.9965858,0,6,-1,-43.393761,0,3,3,2019,16,4,15,39,1,4,0,6.7239451,6.7239451,0,0,0,0,0,0,0,0,0,0,51.02,44.19,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,613,374426.59,178254.06,325364.81,171083.56,3987.854 -10083,12418,22422,22423,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.6525526,8.4440899,0,41,3,-45.336273,0,-9,-9,2019,10,0,40,40,1,1,0,13.286318,13.286318,0,0,0,0,0,0,0,0,2.7791448,0,50,49,40.39,54.22,7,1,1,0,0,1,7,5,1,1052.5,1103859,849000.63,0,0,2785.488 -10083,12418,22423,22422,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9880514,7.9024577,0,41,-3,-59.264866,0,3,3,2019,12,0,37,40,1,0,0,9.6492853,9.6492853,0,0,0,0,2,0,0,0,0,0,40.39,54.22,50,49,8.333333333333334,1,1,0,0,12,7,5,1,1052.5,1103859,849000.63,0,0,2785.488 -10084,12419,22424,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1103.4012,0,-9,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,19.99,47.11,-9,-9,0,1,1,0,0,0,9,1,0,329,-496219.53,0,0,0,1496.3536 -10085,12420,22425,22426,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,5.6361551,5.3411183,49,23,55.758221,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,4.0882263,0,24.234135,0,1,1,0,3.1657979,5.4557266,53.54,34.39,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,432.5,3218085.5,328380,554240.88,0,3038.9082 -10085,12420,22426,22425,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.7317595,7.76197,49,-23,9.7100496,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5167453,7.6834879,57.16,56.15,53.54,34.39,8.333333333333334,1,1,0,0,0,10,3,1,432.5,3218085.5,328380,554240.88,0,3038.9082 -10086,12421,22427,22428,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.996769,8.1795874,11,6,62.664108,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.92496812,8.0574036,58.44,46.03,56.4,31.83,8.333333333333334,1,1,0,0,0,9,3,1,1076.5,508896.03,-65033.777,376723.38,0,2597.6689 -10086,12421,22428,22427,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,59,-6,-54.213085,0,-9,2,2019,9,1,0,0,4,1,0,0,0,1,3.2630916,0,24.824713,0,1,1,0,1.1823767,0,56.4,31.83,58.44,46.03,6.666666666666667,1,1,0,0,0,9,3,1,1076.5,508896.03,-65033.777,376723.38,0,2597.6689 -10087,12422,22429,22430,-9,-9,1,0,32,0,2,0,2,2,-9,0,1,6.7038293,6.9375668,0,3,-13,-56.816406,0,-9,-9,2019,16,4,20,0,1,4,0,6.1445551,6.1445551,0,0,0,0,0,1,1,0,0,0,49.1,49.77,57.16,56.15,5,1,1,0,1,1,11,4,0,297.66666,362775.59,114349.15,262577.09,-1395.0465,2830.665 -10087,12422,22430,22429,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.4056616,8.344388,0,3,13,-40.173489,0,2,3,2019,9,2,45,39,1,2,0,13.93708,13.93708,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.1,49.77,0,1,1,0,0,7,11,4,0,297.66666,362775.59,114349.15,262577.09,-1395.0465,2830.665 -10087,12422,22431,-9,22429,22430,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.8146,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,297.66666,362775.59,114349.15,262577.09,-1395.0465,2830.665 -10088,12423,22432,22433,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.375052,7.3547077,0,24,-4,136.14145,0,3,3,2019,13,2,10,10,1,2,0,16.147692,16.147692,0,0,0,0,2,0,0,0,2.4114449,0,48.82,41.3,59.53,56.44,8.333333333333334,1,1,0,0,10,1,5,1,616.5,527735,95513.203,387834.19,0,7547.5264 -10088,12423,22433,22432,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.7602663,9.6397324,0,24,4,56.60545,0,2,3,2019,6,0,70,75,1,0,0,28.387102,28.387102,0,0,0,0,2,0,0,0,4.9685593,0,59.53,56.44,48.82,41.3,8.333333333333334,1,1,0,0,10,1,5,1,616.5,527735,95513.203,387834.19,0,7547.5264 -10089,12424,22434,-9,-9,-9,1,0,33,0,0,0,1,1,1,0,3,7.8925805,7.903327,0,0,0,-960.67328,-9,1,1,2019,25,12,30,0,1,12,0,10.183767,10.183767,0,0,0,0,0,0,0,0,0,0,35.57,51.07,-9,-9,3.333333333333333,4,2,0,0,11,8,3,1,205,82789.805,28804.082,0,0,1084.9331 -10090,12425,22435,22437,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,7.052372,7.4847975,0,7,8,-41.021919,-9,3,2,2019,14,1,30,0,1,1,0,6.0188651,6.0188651,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.23,55.6,10,2,3,0,0,5,9,5,1,991,349333.06,43680.48,515058.34,439599.06,4975.7173 -10090,12425,22436,-9,22435,22437,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.4799,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,991,349333.06,43680.48,515058.34,439599.06,4975.7173 -10090,12425,22437,22435,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,9.3532639,9.5019398,0,8,-8,160.38339,-9,2,1,2019,10,0,78,0,1,0,0,23.913742,23.913742,0,0,0,0,0,0,0,0,0,0,52.23,55.6,54.2,57.49,1.666666666666667,4,2,0,0,7,9,5,1,991,349333.06,43680.48,515058.34,439599.06,4975.7173 -10091,12426,22438,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.295742,8.5231705,0,0,0,-853.72162,0,2,2,2019,7,0,50,48,1,0,0,9.8549099,9.8549099,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,81,208305.48,67175.813,0,0,1967.3748 -10092,12427,22439,-9,22440,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-988.74396,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,913,208560.25,0,0,0,1506.0864 -10092,12427,22440,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.1978393,7.1783757,0,0,0,-924.42035,0,3,-9,2019,19,7,16,16,1,7,0,8.7050571,8.7050571,0,0,0,0,7,1,1,0,0,0,31,60.29,-9,-9,5,3,4,0,1,3,8,2,0,913,208560.25,0,0,0,1506.0864 -10093,12428,22441,22442,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,1,-38.151131,0,3,2,2019,9,1,0,16,4,1,0,0,0,0,0,0,0,0,1,1,0,2.2956119,0,52.94,41.91,61.04,39.41,8.333333333333334,1,1,0,0,7,12,3,0,2729,1624521.6,1136010.4,184469.06,0,2846.3442 -10093,12428,22442,22441,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.160778,7.9231834,0,43,-1,37.369907,0,3,3,2019,6,0,50,35,1,0,0,6.2345839,6.2345839,0,0,0,0,0,1,1,0,.22106144,0,61.04,39.41,52.94,41.91,6.666666666666667,1,1,0,0,8,12,3,0,2729,1624521.6,1136010.4,184469.06,0,2846.3442 -10094,12429,22443,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9568133,7.6461854,0,0,-1119.7511,0,1,1,2019,7,0,0,19,4,0,0,0,0,0,0,0,0,0,1,1,0,.72965074,7.5970912,53.78,48.41,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,130,611316.44,290673.16,161024.97,0,2124.4583 -10095,12430,22444,22445,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.7599826,7.8845081,56,3,-44.188271,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,56.931507,0,0,1,1,0,3.9436655,7.8956041,44.07,22.17,54.79,55.86,8.333333333333334,1,1,0,0,0,4,3,1,2269,1188425.8,291782.13,302482.41,0,3184.2334 -10095,12430,22445,22444,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,7.4104996,7.0818472,54,-3,-39.287502,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,3.0869362,7.2312102,54.79,55.86,44.07,22.17,8.333333333333334,1,1,0,0,0,4,3,1,2269,1188425.8,291782.13,302482.41,0,3184.2334 -10095,12431,22446,-9,22445,22444,1,1,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-966.93109,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52.6,52.88,-9,-9,5,1,1,0,0,0,4,1,1,224,161869.95,3701.3428,0,0,300.29645 -10096,12432,22447,22448,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.2100449,8.0671911,49,-2,21.303087,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1733499,8.1865788,58.15,52.91,52.48,54.33,10,1,1,0,0,7,10,3,1,650,961182.69,636086.13,341542.38,0,2535.522 -10096,12432,22448,22447,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,49,2,70.923576,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2826619,0,52.48,54.33,58.15,52.91,8.333333333333334,1,1,0,0,8,10,3,1,650,961182.69,636086.13,341542.38,0,2535.522 -10097,12433,22449,-9,-9,-9,1,1,63,0,3,0,3,3,-9,0,3,0,7.3290615,7.1871657,0,0,-1022.5933,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5095153,46.1,44.8,-9,-9,1.666666666666667,1,1,0,0,4,4,2,1,1439,346128.44,256869.84,0,0,1106.7485 -10097,12434,22450,-9,22452,22453,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.45068,-9,2,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 -10097,12434,22451,-9,22452,22453,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1003.6675,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 -10097,12434,22452,22453,-9,22449,1,0,42,0,3,0,2,2,-9,0,4,7.832437,7.925241,0,8,-3,26.458376,0,3,3,2019,13,2,39,0,1,2,0,6.4864049,6.4864049,0,0,0,0,0,1,1,0,0,0,49.06,58.64,37.65,57.34,8.333333333333334,1,1,0,0,5,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 -10097,12434,22453,22452,-9,-9,1,1,45,0,3,0,1,1,-9,0,5,8.2725239,8.6381512,7.2787056,8,3,48.545353,0,-9,-9,2019,24,12,45,40,1,12,0,9.8634005,9.8634005,0,0,0,0,0,1,1,0,0,7.8806419,37.65,57.34,49.06,58.64,6.666666666666667,1,1,0,0,10,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 -10097,12434,22454,-9,22452,22453,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-953.1925,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,859,2082418.6,1787181,386388.34,55622.508,4258.2085 -10098,12435,22455,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,7.9080858,7.9266644,0,0,0,-1027.8458,-9,3,3,2019,7,0,38,0,1,0,0,9.4732609,9.4732609,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,8,4,0,226,-345310.09,-71099.484,0,0,866.50391 -10099,12436,22456,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.2125196,6.5387254,0,0,-976.578,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4031734,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,1563,-139308.34,253529.2,113158.99,0,1092.0939 -10100,12437,22457,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.6242561,8.6031103,5.7832541,0,0,-1094.1091,-9,-9,-9,2019,15,4,48,0,1,4,0,12.517543,12.517543,0,0,0,0,0,0,0,0,6.5777569,0,46.67,55.57,-9,-9,1.666666666666667,1,1,0,0,3,10,5,0,177,-187524.69,-3035.6394,0,0,2222.0459 -10101,12438,22458,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.6836061,9.6537237,0,0,0,-1047.6053,0,2,2,2019,9,0,45,16,1,0,0,46.499733,46.499733,0,0,0,0,0,0,0,0,3.7415826,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,373,429478.13,228156.95,0,0,5027.2051 -10102,12439,22459,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.9787846,9.0561304,0,0,0,-989.5094,0,1,1,2019,12,0,30,30,1,0,0,28.292473,28.292473,0,0,0,0,0,1,1,0,6.8453417,0,44.59,59.08,-9,-9,5,1,1,0,0,11,5,5,1,1994,702251.31,218628.95,0,0,1895.7355 -10103,12440,22460,-9,22463,22461,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.15082,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 -10103,12440,22461,22463,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.1906776,9.2992916,0,8,1,18.482548,-9,2,1,2019,10,0,40,0,1,1,0,26.035206,26.035206,0,0,0,0,0,0,0,0,0,0,51,56,41.17,59.31,7,1,1,0,0,1,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 -10103,12440,22462,-9,22463,22461,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1216.7793,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 -10103,12440,22463,22461,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.0352044,6.5746198,0,8,-1,-252.1539,-9,2,2,2019,10,0,15,0,1,0,0,6.0578523,6.0578523,0,0,0,0,0,0,0,0,0,0,41.17,59.31,51,56,8.333333333333334,1,1,0,0,9,1,5,1,803.25,240547.27,180333.27,328824.78,195266.78,4241.1455 -10104,12441,22464,22465,22466,-9,1,1,30,0,0,0,1,1,-9,0,1,8.4581709,8.5944986,0,3,-1,-20.588589,0,3,2,2019,7,0,37,51,1,0,0,13.789909,13.789909,0,0,0,0,0,0,0,0,2.0865977,0,51.3,30.86,59.46,46.99,6.666666666666667,2,3,0,0,5,7,5,1,1749,417980.25,93723.938,108698.16,106855.39,3314.605 -10104,12441,22465,22464,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.960031,7.9783359,0,3,1,-63.090973,0,-9,-9,2019,11,0,39,50,1,0,0,9.8616486,9.8616486,0,0,0,0,0,0,0,0,0,0,59.46,46.99,51.3,30.86,8.333333333333334,2,3,0,0,1,7,5,1,1749,417980.25,93723.938,108698.16,106855.39,3314.605 -10104,12442,22466,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.2359147,7.0627489,0,0,0,-1053.5797,0,-9,-9,2019,16,5,20,20,1,5,0,8.0619898,8.0619898,0,0,0,0,0,0,0,0,0,0,50.26,31.02,-9,-9,6.666666666666667,2,3,0,0,11,7,3,1,595,402052.03,0,0,0,209.01434 -10105,12443,22467,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,9.1769218,9.3482561,0,0,0,-963.87061,0,2,2,2019,12,2,40,45,1,2,0,22.174986,22.174986,0,0,0,0,0,0,0,0,7.0908904,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,2033,339231.28,112832.08,0,0,3165.2146 -10106,12444,22468,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.1799278,5.8220096,0,0,0,-1050.2224,0,3,3,2019,24,11,25,0,1,11,0,1.9951484,1.9951484,0,0,0,0,0,1,1,0,6.3066068,0,23.95,40.66,-9,-9,3.333333333333333,1,1,0,0,9,2,2,1,662,119520.66,86708.43,0,0,591.49811 -10106,12445,22469,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1050.6248,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,40.06,-9,-9,3.333333333333333,1,1,0,1,2,2,1,1,3355,311766.59,49639.727,0,0,1103.2856 -10107,12446,22470,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.7466598,7.0740247,0,0,-975.89148,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,6.8958025,0,45.2,57.55,-9,-9,6.666666666666667,1,1,0,0,4,4,2,0,499,522785.53,0,0,0,703.63171 -10108,12447,22471,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.5087175,7.7034245,5.3040881,0,0,-847.05164,0,3,3,2019,10,0,34,47,1,0,0,6.1386127,6.1386127,0,0,0,0,0,1,1,0,5.5306883,0,57.33,53.46,-9,-9,1.666666666666667,1,1,0,1,8,12,3,0,1127.6666,-40990.668,57991.309,0,0,2089.9685 -10108,12447,22472,-9,22471,-9,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1032.186,-9,2,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,53.85,-9,-9,5,1,1,0,0,0,12,3,0,1127.6666,-40990.668,57991.309,0,0,2089.9685 -10108,12447,22473,-9,22471,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1005.5187,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.75,60.7,-9,-9,5,1,1,0,0,0,12,3,0,1127.6666,-40990.668,57991.309,0,0,2089.9685 -10108,12448,22474,-9,22471,-9,1,1,24,0,0,0,1,1,1,0,4,6.7519813,6.9355431,0,0,0,-922.92621,-9,2,2,2019,26,10,32,0,1,10,1,2.7405589,2.7405589,0,0,0,0,0,1,1,0,0,0,25.09,61.36,-9,-9,3.333333333333333,1,1,0,0,3,12,2,0,183,-206350.88,0,0,0,164.91037 -10108,12449,22475,-9,22471,-9,1,1,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-898.76953,-9,2,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,56.49,40.63,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,1319,-434419.06,0,0,0,0 -10109,12450,22476,22477,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.2366533,8.2640409,0,6,-2,-21.805695,0,1,2,2019,8,0,42,45,1,0,0,12.210287,12.210287,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.98,50.87,5,1,1,0,0,9,4,4,1,1111,400169,108755.52,102752.41,0,2822.189 -10109,12450,22477,22476,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6965013,7.7129407,0,6,2,-28.66888,0,2,2,2019,12,0,32,34,1,0,0,7.4176469,7.4176469,0,0,0,0,2,0,0,0,0,0,53.98,50.87,57.16,56.15,6.666666666666667,1,1,0,0,4,4,4,1,1111,400169,108755.52,102752.41,0,2822.189 -10110,12451,22478,22479,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.0744691,7.2875319,0,26,-1,-92.059624,0,2,2,2019,4,0,48,48,1,0,0,2.2841024,2.2841024,0,0,0,0,0,0,0,0,0,0,60.12,54.8,51.83,57.2,10,1,1,0,0,8,5,5,1,1067,424204,399407.75,248419.67,51889.32,3172.4487 -10110,12451,22479,22478,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9960327,8.8010283,0,26,1,9.7389603,0,2,3,2019,9,0,50,50,1,0,0,18.944271,18.944271,0,0,0,0,0,0,0,0,1.2506385,0,51.83,57.2,60.12,54.8,8.333333333333334,1,1,0,0,11,5,5,1,1067,424204,399407.75,248419.67,51889.32,3172.4487 -10111,12452,22480,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.1704226,8.1637793,0,7,-3,-76.482559,0,1,1,2019,5,0,45,43,1,0,0,8.2727718,8.2727718,0,0,0,0,0,0,0,0,.18739545,0,57.06,57.76,46.91,59.62,8.333333333333334,2,3,0,0,6,10,4,1,162,-117315.2,0,0,0,877.90942 -10111,12453,22481,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,7.8908825,8.3592443,0,7,3,109.64034,0,-9,-9,2019,3,0,38,41,1,0,0,10.490952,10.490952,0,0,0,0,0,0,0,0,0,0,46.91,59.62,57.06,57.76,8.333333333333334,1,1,0,0,8,10,4,1,634,106037.51,0,0,0,1505.8027 -10112,12454,22482,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,9.2591972,9.0958242,0,0,0,-980.32428,0,2,2,2019,11,0,41,37,1,0,0,30.008499,30.008499,0,0,0,0,0,0,0,0,0,0,35.42,59.31,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,1587,-103744.91,164621.03,115078.91,100317.98,3082.9692 -10113,12455,22483,22484,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.3663883,9.7301168,0,21,-3,-66.487846,0,-9,-9,2019,5,0,35,30,1,0,0,50.388397,50.388397,0,0,0,0,0,0,0,0,8.9834929,0,51.24,58.84,44.66,55.12,8.333333333333334,1,1,0,0,9,8,5,0,1321,3429033.5,222860.3,1339544.5,492059.38,14054.437 -10113,12455,22484,22483,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.8977432,9.8790398,0,22,3,95.357437,0,2,3,2019,9,0,40,35,1,0,0,46.504589,46.504589,0,0,0,0,0,0,0,0,8.1252871,0,44.66,55.12,51.24,58.84,3.333333333333333,4,2,0,0,6,8,5,0,1321,3429033.5,222860.3,1339544.5,492059.38,14054.437 -10113,12456,22485,-9,22483,22484,1,0,18,0,1,1,1,0,0,0,4,0,0,0,0,0,-977.71387,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,2,0,0,0,8,1,0,219,-65621.43,40309.723,0,0,406.40182 -10114,12457,22486,22487,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,9.0284901,9.142518,0,2,1,-52.357754,0,-9,-9,2019,8,0,58,40,1,0,0,19.874853,19.874853,0,0,0,0,0,0,0,0,1.0063181,0,51.24,58.84,35.55,60.77,8.333333333333334,1,1,0,0,2,9,5,1,704,116403.13,-14617.316,347981.94,177759.41,4076.8052 -10114,12457,22487,22486,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.00562,8.2801104,0,2,-1,-8.9223709,0,-9,-9,2019,19,7,41,36,1,7,0,8.1798229,8.1798229,0,0,0,0,0,0,0,0,0,0,35.55,60.77,51.24,58.84,6.666666666666667,1,1,0,0,8,9,5,1,704,116403.13,-14617.316,347981.94,177759.41,4076.8052 -10115,12458,22488,22489,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6766338,7.705667,6,2,-33.648998,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7493939,57.33,53.46,62.15,28.37,0,1,1,0,0,0,5,2,1,187,832743.63,476596.75,124142.91,0,1920.7058 -10115,12458,22489,22488,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,6,-2,-41.460442,0,2,2,2019,14,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.3125961,0,62.15,28.37,57.33,53.46,10,1,1,0,0,0,5,2,1,187,832743.63,476596.75,124142.91,0,1920.7058 -10116,12459,22490,22491,-9,-9,1,1,52,0,1,0,3,3,-9,0,1,8.4287729,8.6862726,0,30,4,64.650711,-9,-9,-9,2019,12,0,55,0,1,0,0,12.806236,12.806236,0,0,0,0,0,1,1,0,0,0,43.12,30.66,47.94,48.26,6.666666666666667,1,1,0,0,5,10,4,0,1256.5,179706.22,135548.45,280054.25,202793.94,2001.7441 -10116,12459,22491,22490,-9,-9,1,0,48,0,1,0,3,3,-9,0,3,5.8208909,5.9387159,0,30,-4,-67.557144,0,-9,-9,2019,15,3,6,6,1,3,0,5.8841524,5.8841524,0,0,0,0,0,1,1,0,0,0,47.94,48.26,43.12,30.66,8.333333333333334,1,1,0,0,5,10,4,0,1256.5,179706.22,135548.45,280054.25,202793.94,2001.7441 -10117,12460,22492,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.4267106,5.6526089,0,0,-1133.5759,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5234694,5.0951214,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,6,9,2,1,697,-130815.95,0,131485.8,0,562.22217 -10118,12461,22493,-9,22494,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.00604,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,496,508515.5,171720.77,243433.47,108458.04,2383.8591 -10118,12461,22494,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,8.4550009,8.5653992,0,0,0,-984.19653,0,2,2,2019,12,0,35,34,1,0,0,12.647377,12.647377,0,0,0,0,0,1,1,0,0,0,35.04,41.01,-9,-9,3.333333333333333,1,1,0,0,10,6,4,1,496,508515.5,171720.77,243433.47,108458.04,2383.8591 -10119,12462,22495,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4354086,8.1276827,0,0,0,-1005.4154,0,2,2,2019,6,0,47,47,1,0,0,10.890191,10.890191,0,0,0,0,7,0,0,0,0,0,56.74,55.09,-9,-9,6.666666666666667,3,4,0,0,11,8,4,0,1579,23854.154,86615.039,0,0,1829.6968 -10120,12463,22496,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1039.9823,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.7796402,0,48.9,36.9,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,2422,1154809.4,269646.63,238298.64,0,4994.2007 -10121,12464,22497,22498,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.1131153,8.9190426,0,33,2,58.038155,0,2,2,2019,12,0,28,28,1,0,0,26.610847,26.610847,0,0,0,0,0,0,0,0,0,0,50.62,48.28,55.2,57.22,6.666666666666667,1,1,0,0,11,12,5,1,318,2087997.1,1648197.3,258055.59,0,7422.2173 -10121,12464,22498,22497,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.2363443,9.3775578,0,33,-2,4.3277779,0,1,2,2019,10,0,55,60,1,0,0,26.378742,26.378742,0,0,0,0,7,0,0,0,6.371419,0,55.2,57.22,50.62,48.28,0,1,1,0,0,11,12,5,1,318,2087997.1,1648197.3,258055.59,0,7422.2173 -10121,12465,22499,-9,22498,22497,1,0,22,0,0,0,1,1,-9,0,5,8.3245029,8.3730526,0,0,0,-877.11249,0,1,1,2019,8,0,45,80,1,0,1,13.161407,13.161407,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,136,-263378.38,16945.52,0,0,869.59625 -10121,12466,22500,-9,22498,22497,1,1,21,0,0,0,2,2,1,0,3,6.5035834,6.6447258,0,0,0,-1028.3427,-9,1,1,2019,9,0,10,0,1,0,1,6.9766493,6.9766493,0,0,0,0,0,0,0,0,0,0,36.98,50.5,-9,-9,6.666666666666667,1,1,0,0,4,12,2,1,149,-447957.47,0,0,0,-278.54364 -10122,12467,22501,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1011.8458,-9,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.57095,0,51,46,-9,-9,7,1,1,0,0,0,13,1,1,399,93941.852,0,177677.81,0,849.75586 -10123,12468,22502,22505,-9,-9,1,0,35,1,2,0,3,3,-9,0,4,7.1680346,7.3578181,0,7,-4,46.97266,0,2,-9,2019,9,0,24,40,1,0,0,6.4749198,6.4749198,0,0,0,0,0,1,1,0,0,0,52.48,54.33,55.36,51.57,8.333333333333334,1,1,0,0,5,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 -10123,12468,22503,-9,22502,22505,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3751,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 -10123,12468,22504,-9,22502,22505,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.64142,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 -10123,12468,22505,22502,22507,22506,1,1,39,1,2,0,3,3,-9,0,3,7.6638432,7.8696346,0,7,4,-117.19415,0,3,2,2019,11,0,30,40,1,0,0,12.526622,12.526622,0,0,0,0,0,1,1,0,0,0,55.36,51.57,52.48,54.33,8.333333333333334,1,1,0,0,7,13,3,0,555.25,-95301.023,-90745.492,0,0,2900.6021 -10123,12469,22506,22507,-9,-9,1,1,65,1,2,0,3,3,-9,0,2,0,0,0,1,8,0,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.24,26.68,50.4,37.68,8.333333333333334,1,1,1,1,2,13,1,0,231.5,-92834.625,0,148211.2,54237.602,764.15735 -10123,12469,22507,22506,-9,-9,1,0,57,1,2,0,3,3,-9,0,3,0,0,0,1,-8,0,-9,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.4,37.68,60.24,26.68,8.333333333333334,1,1,1,0,0,13,1,0,231.5,-92834.625,0,148211.2,54237.602,764.15735 -10124,12470,22508,22510,-9,-9,1,1,58,0,1,0,2,2,-9,0,1,0,0,0,2,12,-3.4179001,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.27,20.92,43.57,43.17,5,1,1,0,0,0,13,2,0,2933.3333,0,0,0,0,1318.4196 -10124,12470,22509,-9,22510,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-852.92145,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,2,0,2933.3333,0,0,0,0,1318.4196 -10124,12470,22510,22508,-9,-9,1,0,46,0,1,0,3,3,-9,0,5,7.6411266,7.2358799,0,2,-12,-66.167702,-9,3,3,2019,0,0,36,0,1,0,0,4.854672,4.854672,0,0,0,0,0,1,1,0,2.5728192,0,43.57,43.17,43.27,20.92,10,1,1,0,0,10,13,2,0,2933.3333,0,0,0,0,1318.4196 -10124,12471,22511,-9,22510,-9,1,0,26,0,1,0,2,2,-9,0,3,7.6920309,7.7785425,0,0,0,-984.52576,-9,3,-9,2019,7,0,4,0,1,0,1,63.603924,63.603924,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,521,-135818.02,0,0,0,547.28467 -10124,12472,22512,-9,22510,-9,1,0,22,0,1,0,3,3,-9,0,3,7.6614385,7.6235704,0,0,0,-917.89526,-9,3,-9,2019,7,0,39,0,1,0,1,6.7636175,6.7636175,0,0,0,0,0,1,1,0,0,0,57.78,45.1,-9,-9,6.666666666666667,1,1,0,0,2,13,3,0,230,-378722.03,0,0,0,1695.3212 -10124,12473,22513,-9,22510,-9,1,1,18,0,1,0,1,1,-9,0,3,8.1389828,8.1952734,0,0,0,-1061.4344,-9,3,-9,2019,8,0,50,0,1,0,1,8.7858772,8.7858772,0,0,0,0,0,1,1,0,0,0,45.37,54.74,-9,-9,5,1,1,0,0,10,13,4,0,988,66308.758,-77435.547,0,0,2010.7157 -10125,12474,22514,22515,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.4455838,7.0900097,30,3,-59.50238,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5576777,7.4427662,60.44,46.58,62.11,45.63,8.333333333333334,1,1,0,0,4,2,4,1,269.5,1614701.8,876510,239653.7,0,3329.8506 -10125,12474,22515,22514,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.8914552,7.8786688,7.3724618,30,-3,-32.018654,0,2,2,2019,11,0,28,28,1,0,0,2.6066988,2.6066988,0,0,0,0,0,1,1,0,6.7973509,7.4281974,62.11,45.63,60.44,46.58,1.666666666666667,1,1,0,0,7,2,4,1,269.5,1614701.8,876510,239653.7,0,3329.8506 -10126,12475,22516,22517,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.7814684,8.1877031,0,4,-10,70.130157,0,-9,-9,2019,6,0,30,36,1,0,0,12.121475,12.121475,0,0,0,0,0,1,1,0,0,0,57.19,37.4,52,54.51,8.333333333333334,1,1,0,0,9,2,5,1,532,578361.44,372230.56,354735.13,0,4098.7358 -10126,12475,22517,22516,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.6417303,8.2668934,0,4,10,-63.42429,0,3,-9,2019,8,0,38,43,1,0,0,17.296974,17.296974,0,0,0,0,0,1,1,0,7.0900726,0,52,54.51,57.19,37.4,10,1,1,0,0,9,2,5,1,532,578361.44,372230.56,354735.13,0,4098.7358 -10126,12476,22518,-9,22516,22517,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1013.1921,-9,2,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,10,1,1,0,0,5,2,1,1,331,0,0,0,0,0 -10127,12477,22519,22520,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.0563316,8.2710876,5.7710447,41,0,59.790836,0,2,3,2019,9,0,28,25,1,0,0,15.426574,15.426574,0,0,0,0,0,1,1,0,0,6.0095468,58.15,52.91,50.88,45.4,8.333333333333334,1,1,0,0,12,13,3,0,389,766057,277054.31,153859.64,0,2756.5073 -10127,12477,22520,22519,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.0941987,5.3242326,41,9,-59.379856,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.497869,50.88,45.4,58.15,52.91,6.666666666666667,1,1,0,0,5,13,3,0,389,766057,277054.31,153859.64,0,2756.5073 -10127,12478,22521,-9,22519,22520,1,0,35,0,0,0,1,1,-9,0,3,8.6164703,8.4071856,0,0,0,-826.96436,0,1,2,2019,27,10,44,44,1,10,0,8.907671,8.907671,0,0,0,0,0,1,1,0,.12931919,0,35.2,46,-9,-9,6.666666666666667,1,1,0,0,11,13,4,0,2152,-232528.58,-57674.063,100371.91,97186.82,1650.6658 -10128,12479,22522,-9,22525,22523,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.3469,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 -10128,12479,22523,22525,-9,-9,1,1,42,1,2,0,2,2,-9,0,2,9.2110777,9.0473099,0,6,3,.88384396,0,2,3,2019,6,0,39,39,1,0,0,28.997438,28.997438,0,0,0,0,0,1,1,0,0,0,56.94,39,54.37,33.54,8.333333333333334,1,1,0,0,12,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 -10128,12479,22524,-9,22525,22523,1,0,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.8661,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 -10128,12479,22525,22523,-9,-9,1,0,39,1,2,0,2,2,-9,0,2,0,6.4121194,6.3347774,6,-3,-103.05327,0,-9,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.5236497,0,54.37,33.54,56.94,39,5,1,1,0,0,2,5,5,0,741.75,216212.2,-49358.637,473726.13,296253.03,3873.8582 -10129,12480,22526,-9,22529,22528,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.5621,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 -10129,12480,22527,-9,22529,22528,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1079.428,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 -10129,12480,22528,22529,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.4105859,7.4142747,0,9,1,-134.64494,0,2,2,2019,9,0,45,40,1,1,0,3.8286431,3.8286431,0,0,0,0,0,1,0,1,0,0,52,56,57.16,56.15,8,1,1,0,0,1,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 -10129,12480,22529,22528,-9,-9,1,0,44,0,2,0,2,2,-9,1,4,0,0,0,17,-1,-58.732986,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,52,56,6.666666666666667,1,1,0,0,0,10,2,0,1152.5,228705.36,-37221.445,290838.81,61251.605,1927.812 -10129,12481,22530,-9,22529,22528,1,1,20,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1090.2596,-9,2,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,0,0,0,10,1,0,254,340747.56,0,0,0,0 -10130,12482,22531,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.8004494,8.7148848,0,0,-833.74188,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,9.4360056,7.9071012,59.15,49.67,-9,-9,10,1,1,0,0,0,9,5,1,780,242932.7,-101455.44,0,0,3635.8987 -10131,12483,22532,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-946.7796,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,21.375324,0,0,1,1,0,0,0,65.81,8.01,-9,-9,10,1,1,0,0,0,12,1,0,86,293358.25,0,0,0,1100.3677 -10132,12484,22533,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.673018,7.5742445,0,0,-971.47937,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0765705,7.7592134,60.29,52.11,-9,-9,10,1,1,0,0,3,5,3,1,598,507812.47,280125.69,85103.18,0,1154.2168 -10133,12485,22534,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,10.84379,10.682531,0,0,-963.00635,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,6.869348,0,0,1,1,0,0,9.7888479,43.91,19.94,-9,-9,6.666666666666667,1,1,0,0,5,11,5,1,198,616194.19,387909.88,180198.33,0,20879.232 -10133,12486,22535,-9,22534,-9,1,1,33,0,0,0,2,2,-9,0,2,6.9031305,7.0281906,0,0,0,-1032.7288,0,3,2,2019,16,5,16,19,1,5,0,6.5463543,6.5463543,0,0,0,0,7,1,1,0,0,0,40.99,54.49,-9,-9,1.666666666666667,1,1,0,1,9,11,2,1,690,-123275.63,37732.762,-17467.715,94018.891,320.97012 -10133,12487,22536,-9,22534,-9,1,1,30,0,0,0,2,2,-9,0,3,7.341928,7.7762127,0,0,0,-1037.5146,0,2,2,2019,8,0,32,31,1,0,0,7.5534749,7.5534749,0,0,0,0,0,1,1,0,0,0,47.66,52.33,-9,-9,5,1,1,0,0,6,11,3,1,4493,-201039.61,0,0,0,669.21368 -10134,12488,22537,22538,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.2829351,5.4659009,7,6,60.833656,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0598764,4.9489064,60.12,54.8,49,48,8.333333333333334,1,1,0,0,4,11,2,1,665,61724.328,379790.75,114641.95,-1700.5068,2844.0513 -10134,12488,22538,22537,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.3547816,6.9513483,7,-6,10.39194,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.1552782,7.2781439,49,48,60.12,54.8,5,1,1,0,0,5,11,2,1,665,61724.328,379790.75,114641.95,-1700.5068,2844.0513 -10135,12489,22539,22540,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,8.2694778,7.7859573,26,-10,178.31062,0,2,2,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.642693,7.8182592,36.3,28.42,49.12,51.75,1.666666666666667,1,1,0,1,0,10,3,1,892,812707.25,307864.88,309518.69,0,2454.3127 -10135,12489,22540,22539,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.1626916,6.9870996,6,10,-22.916897,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,4.6924152,7.2897687,49.12,51.75,36.3,28.42,6.666666666666667,1,1,0,1,2,10,3,1,892,812707.25,307864.88,309518.69,0,2454.3127 -10136,12490,22541,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.0562468,7.9412274,0,0,0,-908.58722,0,3,3,2019,18,6,40,0,1,6,0,7.6290722,7.6290722,0,0,0,0,0,0,0,0,0,0,40.26,35.9,-9,-9,6.666666666666667,1,1,0,0,3,5,4,0,258,-72672.406,82363.078,0,0,1343.4252 -10137,12491,22542,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.4853382,8.5447092,0,0,0,-1003.2198,0,-9,3,2019,9,0,48,50,1,0,0,8.5967188,8.5967188,0,0,0,0,0,0,0,0,0,0,58.65,39.14,-9,-9,6.666666666666667,3,4,0,0,11,8,4,1,1082,1034062.6,475098.16,237380.67,0,1274.4248 -10138,12492,22543,22544,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,0,0,0,11,1,173.01474,0,3,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,57.16,56.15,8.333333333333334,2,3,1,0,0,9,5,0,385,366173.94,249390.72,631997.75,306339.41,3292.3962 -10138,12492,22544,22543,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.2858152,9.0594168,0,13,-1,-19.407221,0,1,1,2019,8,0,52,53,1,0,0,20.616354,20.616354,0,0,0,0,0,0,0,0,3.8323548,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,8,9,5,0,385,366173.94,249390.72,631997.75,306339.41,3292.3962 -10139,12493,22545,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,5.3642912,5.524734,0,0,-1137.2997,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.4541764,0,48.87,58.55,-9,-9,0,1,1,1,1,3,5,2,1,358.5,-38821.516,0,0,0,875.01306 -10139,12493,22546,-9,22545,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.2833,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,358.5,-38821.516,0,0,0,875.01306 -10140,12494,22547,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.1410103,8.1410704,0,0,-1064.8787,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5280023,8.0533009,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,357,943741.31,551786.5,185830.36,0,3216.0068 -10141,12495,22548,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-923.82257,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.172971,4.5240183,18.331093,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,1,1,0,224,225353.86,0,0,0,2272.7646 -10142,12496,22549,22550,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.6937551,9.8709574,0,7,2,120.55919,0,1,1,2019,17,6,46,42,1,6,0,30.703934,30.703934,0,0,0,0,2,0,0,0,6.683218,0,55.19,54.26,43.73,59.7,6.666666666666667,1,1,0,0,8,5,5,1,435.5,1680286.4,1254617.4,369473.53,34378.922,6581.2158 -10142,12496,22550,22549,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,7,-2,-50.856499,0,3,3,2019,12,2,0,45,3,2,0,0,0,0,0,0,0,0,0,0,0,4.2995915,0,43.73,59.7,55.19,54.26,6.666666666666667,1,1,0,0,7,5,5,1,435.5,1680286.4,1254617.4,369473.53,34378.922,6581.2158 -10142,12497,22551,-9,22550,22549,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.2506,-9,1,1,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,913,-16586.771,0,0,0,0 -10143,12498,22552,22554,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.5632553,8.5111933,0,5,2,-89.242126,0,2,2,2019,10,0,37,37,1,1,0,12.68338,12.68338,0,0,0,0,0,1,1,0,0,0,50,56,35.56,52.74,7,1,1,0,0,1,13,5,1,321,304235.25,161059.59,184881.66,62049.543,3385.0876 -10143,12498,22553,-9,22554,22552,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.9557,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,321,304235.25,161059.59,184881.66,62049.543,3385.0876 -10143,12498,22554,22552,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1812181,8.3244095,0,5,-2,130.09009,0,2,2,2019,10,0,22,24,1,0,0,25.897436,25.897436,0,0,0,0,0,1,1,0,0,0,35.56,52.74,50,56,8.333333333333334,1,1,0,0,9,13,5,1,321,304235.25,161059.59,184881.66,62049.543,3385.0876 -10144,12499,22555,22556,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.1595101,7.584959,4.7985721,36,1,245.56807,0,-9,-9,2019,9,0,40,40,1,0,0,4.7931709,4.7931709,0,0,0,0,0,0,0,0,1.9407967,4.6897497,39.45,57.43,46.08,57.2,8.333333333333334,1,1,0,0,13,8,3,1,748.5,785585.63,0,731818.25,0,852.22302 -10144,12499,22556,22555,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.685997,6.71314,4.7161465,36,-1,53.193169,0,-9,-9,2019,10,0,40,40,1,0,0,1.8458382,1.8458382,0,0,0,0,0,0,0,0,5.4236526,5.178236,46.08,57.2,39.45,57.43,5,4,2,0,0,13,8,3,1,748.5,785585.63,0,731818.25,0,852.22302 -10144,12500,22557,-9,22555,22556,1,0,23,0,0,0,2,2,-9,0,3,5.5047164,5.7019038,0,0,0,-1048.0223,0,3,3,2019,33,12,24,24,1,12,1,1.0560645,1.0560645,0,0,0,0,0,0,0,0,.19218495,0,25.34,60.38,-9,-9,3.333333333333333,4,2,0,0,3,8,2,1,175,-122829.97,-2833.9854,0,0,-100.13936 -10145,12501,22558,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.0934753,8.468873,0,0,0,-1098.5795,0,1,1,2019,18,7,62,65,1,7,0,6.8334241,6.8334241,0,0,0,0,0,0,0,0,0,0,36.37,57.89,-9,-9,3.333333333333333,4,2,0,1,9,7,4,1,738,-27160.369,53972.336,0,0,1896.1439 -10146,12502,22559,-9,22561,22560,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-850.513,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,369.33334,444922.38,225431.98,345370.63,94537.391,3946.511 -10146,12502,22560,22561,-9,-9,1,1,54,0,1,0,2,2,-9,0,5,7.2680435,7.1565804,0,18,0,-3.3055301,0,1,3,2019,7,0,57,55,1,0,0,2.1640005,2.1640005,0,0,0,0,0,1,1,0,0,0,57.06,57.76,42.96,48.95,8.333333333333334,1,1,0,0,9,7,4,1,369.33334,444922.38,225431.98,345370.63,94537.391,3946.511 -10146,12502,22561,22560,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,8.6663513,9.1018038,0,18,0,29.652439,0,-9,-9,2019,17,4,31,-9,1,4,0,21.670219,21.670219,0,0,0,0,0,1,1,0,0,0,42.96,48.95,57.06,57.76,5,1,1,0,0,7,7,4,1,369.33334,444922.38,225431.98,345370.63,94537.391,3946.511 -10146,12503,22562,-9,22561,22560,1,0,24,0,1,0,1,1,-9,0,4,8.3269281,8.510251,0,0,0,-1135.1523,0,2,2,2019,9,2,48,45,1,2,1,10.714774,10.714774,0,0,0,0,0,1,1,0,0,0,43.14,61.33,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,419,-96115.672,-92469.82,0,0,1509.4589 -10147,12504,22563,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1139.9006,0,2,1,2019,19,6,0,30,3,6,0,0,0,0,0,0,0,0,1,1,0,6.363203,0,38.39,16.39,-9,-9,6.666666666666667,1,1,0,1,5,2,1,0,175,277604.47,0,0,0,1638.0929 -10148,12505,22564,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,6.9147625,7.0127301,0,0,0,-1236.3208,0,2,2,2019,10,2,15,15,1,2,0,7.3398137,7.3398137,0,0,0,0,7,1,1,0,0,0,51.66,19.42,-9,-9,8.333333333333334,1,1,0,0,7,4,2,0,1006,-68156.828,0,0,0,726.737 -10149,12506,22565,22566,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7262306,7.9298449,0,2,1,-27.934584,0,2,2,2019,11,0,36,36,1,0,0,5.9403048,5.9403048,0,0,0,0,0,0,0,0,7.733933,0,62.49,55.09,58.47,50.22,8.333333333333334,1,1,0,0,8,13,4,1,470,37566.25,212986.34,0,0,3401.9844 -10149,12506,22566,22565,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,8.169384,8.3235435,0,2,-1,-8.5666428,0,3,3,2019,11,0,36,36,1,0,0,11.927882,11.927882,0,0,0,0,0,0,0,0,0,0,58.47,50.22,62.49,55.09,8.333333333333334,1,1,0,0,8,13,4,1,470,37566.25,212986.34,0,0,3401.9844 -10149,12507,22567,-9,22566,22565,1,1,26,0,0,0,2,2,-9,0,4,8.040411,7.8282542,0,0,0,-971.60992,0,3,2,2019,11,0,46,36,1,0,1,8.113658,8.113658,0,0,0,0,0,0,0,0,0,0,50.65,60.47,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,356,421994.59,0,0,0,1607.3651 -10150,12508,22568,22569,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.3369608,8.2503014,0,8,0,-6.1457729,0,1,1,2019,13,2,30,38,1,2,0,16.423319,16.423319,0,0,0,0,2,1,1,0,0,0,45.01,57.46,52,55,8.333333333333334,1,1,0,0,9,7,5,1,1163.5,468684.31,215109.64,412469.34,35720.875,4111.5679 -10150,12508,22569,22568,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.8104038,8.7659159,0,8,0,26.40093,0,-9,-9,2019,9,0,38,-9,1,1,0,19.273787,19.273787,0,0,0,0,0,1,1,0,5.2082634,0,52,55,45.01,57.46,8,1,1,0,0,1,7,5,1,1163.5,468684.31,215109.64,412469.34,35720.875,4111.5679 -10151,12509,22570,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.1716475,6.8874865,0,0,-1061.3341,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.9924655,7.1241817,63.66,46.31,-9,-9,8.333333333333334,1,1,0,0,4,5,3,1,1349,543806.44,395954.75,105170.37,0,1637.1328 -10152,12510,22571,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.6043615,7.7842817,6.4853916,0,0,-1077.4962,0,-9,-9,2019,12,0,34,33,1,0,0,6.0085716,6.0085716,0,0,0,0,0,1,1,0,6.8142776,0,49.49,59.98,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,359,87033.563,0,0,0,1620.2102 -10152,12510,22572,-9,22571,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1125.3483,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,359,87033.563,0,0,0,1620.2102 -10152,12511,22573,-9,22571,-9,1,0,18,0,1,0,2,2,1,0,3,7.7893467,7.9359646,0,0,0,-974.45319,-9,2,-9,2019,17,6,37,0,1,6,1,10.960776,10.960776,0,0,0,0,0,1,1,0,0,0,30.22,49.72,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,420,-88999.367,69691.313,0,0,1478.8333 -10153,12512,22574,22575,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-2,27.593857,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,3.7459195,0,61.58,43.34,54.77,33.21,10,1,1,0,0,6,5,3,1,688,436221.38,120155.95,161678.13,0,2263.8979 -10153,12512,22575,22574,-9,-9,1,1,70,0,0,0,3,3,-9,1,1,6.9176054,7.8932457,6.8497939,49,2,-89.776176,0,3,3,2019,10,1,16,16,1,1,0,7.6832395,7.6832395,1,0,4.5888948,0,0,1,1,0,4.5888224,7.1007609,54.77,33.21,61.58,43.34,8.333333333333334,1,1,0,0,10,5,3,1,688,436221.38,120155.95,161678.13,0,2263.8979 -10154,12513,22576,22577,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,6,-11,2.5566936,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,62.39,56.71,8.333333333333334,1,1,0,0,0,7,2,1,1097.5,538645.88,195511.11,298424.63,54630.094,1432.6887 -10154,12513,22577,22576,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,0,6.4161844,6.3115487,6,11,70.655884,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,6.4991708,62.39,56.71,58.16,48.06,10,1,1,0,0,0,7,2,1,1097.5,538645.88,195511.11,298424.63,54630.094,1432.6887 -10155,12514,22578,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.8073106,7.7426405,0,0,0,-1020.5986,0,-9,-9,2019,12,1,39,39,1,1,0,8.6162491,8.6162491,0,0,0,0,0,1,1,0,0,0,49.18,30.52,-9,-9,5,1,1,0,0,5,4,3,0,624,23174.709,0,0,0,514.82898 -10156,12515,22579,22581,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.3967252,7.7768264,0,7,2,24.560402,0,2,2,2019,9,0,12,14,1,0,0,19.3493,19.3493,0,0,0,0,0,1,1,0,0,0,44.53,56.37,53.99,48.04,8.333333333333334,1,1,0,0,8,6,3,1,329.66666,294324.38,-16023.293,501951.44,16789.293,2777.5396 -10156,12515,22580,-9,22579,22581,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.6235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,329.66666,294324.38,-16023.293,501951.44,16789.293,2777.5396 -10156,12515,22581,22579,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,7.7919369,8.0548592,0,7,-2,-28.873291,0,-9,-9,2019,6,0,37,38,1,0,0,9.7926998,9.7926998,0,0,0,0,0,1,1,0,0,0,53.99,48.04,44.53,56.37,5,4,2,0,0,7,6,3,1,329.66666,294324.38,-16023.293,501951.44,16789.293,2777.5396 -10157,12516,22582,22583,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,9.7868605,9.8802071,6.9365501,41,-5,124.45165,0,2,2,2019,11,1,16,20,1,1,0,112.12876,112.12876,0,0,0,0,0,1,1,0,7.4673495,7.2559772,50.43,53.69,56.35,48.33,5,1,1,0,0,9,9,5,1,206,2358209.8,1557062.8,624890.63,81819.547,10837.355 -10157,12516,22583,22582,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,41,5,-61.352367,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0414009,0,56.35,48.33,50.43,53.69,8.333333333333334,1,1,0,0,0,9,5,1,206,2358209.8,1557062.8,624890.63,81819.547,10837.355 -10158,12517,22584,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,5.9920702,5.891191,0,0,-1002.3749,0,2,-9,2019,18,6,0,18,3,6,0,0,0,0,0,0,0,0,1,1,0,6.3981576,0,29.59,24.13,-9,-9,0,1,1,0,1,7,4,2,0,462,-70414.352,-1872.1394,0,0,1533.8354 -10159,12518,22585,22586,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.5853047,6.5463352,59,-1,11.159673,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,3.924202,6.8044844,52.46,52.76,39.88,43.87,10,1,1,0,0,0,4,3,1,147.5,456081.56,250001.63,215834.56,0,1742.6696 -10159,12518,22586,22585,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.8043981,6.8439789,6,1,-85.270279,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,6.2739453,0,0,1,1,0,4.3151526,6.9719338,39.88,43.87,52.46,52.76,10,1,1,0,0,0,4,3,1,147.5,456081.56,250001.63,215834.56,0,1742.6696 -10160,12519,22587,22588,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.1984935,6.8215642,0,42,-5,48.442554,0,3,3,2019,10,0,20,17,1,0,0,6.1419148,6.1419148,0,0,0,0,0,1,1,0,4.3316593,0,47.7,47.03,63.16,38.47,8.333333333333334,1,1,0,0,10,2,3,1,439.5,251875,393711.69,244744.56,0,2758.5527 -10160,12519,22588,22587,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.5868478,7.2764401,42,5,66.334473,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3125715,7.6046381,63.16,38.47,47.7,47.03,8.333333333333334,1,1,0,0,10,2,3,1,439.5,251875,393711.69,244744.56,0,2758.5527 -10161,12520,22589,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-985.5199,0,2,2,2019,18,7,0,0,4,7,0,0,0,1,0,10.901606,0,0,1,1,0,0,0,44.23,20.38,-9,-9,5,1,1,0,0,0,1,1,0,449,94848.031,0,0,0,1494.2062 -10161,12521,22590,-9,22589,-9,1,0,50,0,0,0,1,1,-9,0,3,7.5180573,7.3651471,0,0,0,-1065.8979,0,2,-9,2019,12,0,20,16,1,2,0,10.101292,10.101292,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,1,1,3,0,384,978728.81,613605.38,213389.94,0,666.74005 -10162,12522,22591,22592,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.4517188,4.5888772,6,-5,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8670611,58.11,40.74,39.6,49.52,10,1,1,0,0,0,9,2,1,1849.5,106629.67,176209.19,0,0,1547.6121 -10162,12522,22592,22591,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,4.6187153,4.7963858,6,5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7463303,39.6,49.52,58.11,40.74,6.666666666666667,1,1,0,0,0,9,2,1,1849.5,106629.67,176209.19,0,0,1547.6121 -10163,12523,22593,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-948.98065,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,49.65,29.71,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1059,348974.53,0,146216.88,0,792.8786 -10164,12524,22594,22595,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.7112694,7.4051123,35,6,99.158684,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,7,0,0,0,0,7.8625035,51.42,48.12,46.39,60.99,8.333333333333334,1,1,0,0,9,11,4,1,394.5,1445550.8,818611,446596.19,0,1657.9951 -10164,12524,22595,22594,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.6530595,7.5747294,0,33,-6,81.297012,0,1,1,2019,7,1,17,37,1,1,0,14.906292,14.906292,0,0,0,0,7,0,0,0,1.5098587,0,46.39,60.99,51.42,48.12,8.333333333333334,1,1,0,0,10,11,4,1,394.5,1445550.8,818611,446596.19,0,1657.9951 -10165,12525,22596,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1107.9811,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,73.648621,81.58091,690.00793,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,11,2,0,1445,222750.83,-18206.596,152777.97,0,69.155502 -10166,12526,22597,22598,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,35,-2,73.873154,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0751476,0,55.76,52.64,58.15,52.91,6.666666666666667,1,1,0,0,9,9,2,1,357.5,1270693.8,971056.94,235267.14,0,2054.186 -10166,12526,22598,22597,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,6.3231864,6.3789487,0,34,2,23.94265,0,3,3,2019,7,0,15,15,1,0,0,3.6160073,3.6160073,0,0,0,0,0,1,1,0,5.3511205,0,58.15,52.91,55.76,52.64,8.333333333333334,1,1,0,0,13,9,2,1,357.5,1270693.8,971056.94,235267.14,0,2054.186 -10167,12527,22599,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.4526091,8.6126461,0,0,0,-939.40503,0,2,3,2019,14,3,45,47,1,3,0,14.772451,14.772451,0,0,0,0,0,1,1,0,0,0,40.33,35.66,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,1942,360371.56,20457.465,319203.41,0,1268.926 -10168,12528,22600,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3489819,8.2115116,0,0,0,-836.78461,0,-9,3,2019,9,1,37,57,1,1,0,11.808089,11.808089,0,0,0,0,0,1,1,0,0,0,34.18,52.93,-9,-9,6.666666666666667,1,1,0,0,11,10,4,0,555,-3123.2175,3977.5173,0,0,1366.2612 -10169,12529,22601,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.1258664,5.6204438,0,0,-1070.6816,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,4.6872058,0,0,1,1,0,3.2774038,6.0206642,52,45,-9,-9,8,1,1,0,0,0,4,2,1,549,105220.03,126604.22,174980.25,0,1038.2878 -10170,12530,22602,22603,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,58,-1,-10.443729,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,60.23,37.07,8,1,1,0,0,0,13,2,1,852,141571.14,182463.59,172504.16,0,1793.7915 -10170,12530,22603,22602,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,7.4667096,7.4751306,58,1,-60.591007,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0880871,60.23,37.07,54,46,5,1,1,0,0,2,13,2,1,852,141571.14,182463.59,172504.16,0,1793.7915 -10171,12531,22604,22605,-9,-9,1,0,48,1,3,0,3,3,-9,0,3,6.6414375,5.8815646,0,6,-7,-159.55219,0,3,3,2019,9,1,10,10,1,1,0,4.7467022,4.7467022,0,0,0,0,0,1,1,0,0,0,60.31,43.75,54.64,45.08,8.333333333333334,2,3,0,0,4,4,3,1,475.5,329335.5,188874.88,0,0,2019.3892 -10171,12531,22605,22604,-9,-9,1,1,55,1,3,0,3,3,-9,0,3,7.952775,8.3674459,0,32,7,1.4555084,0,3,3,2019,8,0,30,25,1,0,0,15.903225,15.903225,0,0,0,0,0,1,1,0,0,0,54.64,45.08,60.31,43.75,8.333333333333334,2,3,0,0,9,4,3,1,475.5,329335.5,188874.88,0,0,2019.3892 -10171,12532,22606,-9,22604,22605,1,1,24,1,3,0,2,2,-9,0,4,7.4563966,7.6112657,0,0,0,-1099.7217,0,3,3,2019,10,0,20,0,1,1,1,8.8779097,8.8779097,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,4,3,1,764,38807.16,0,0,0,738.78076 -10171,12533,22607,-9,22611,22608,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.02441,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 -10171,12533,22608,22611,22604,22605,1,1,30,1,3,0,1,1,-9,0,3,8.9133224,8.8952379,0,6,0,36.699753,0,3,3,2019,8,0,41,0,1,0,0,16.901821,16.901821,0,0,0,0,0,1,1,0,0,0,49.04,55.86,48,56,6.666666666666667,2,3,0,0,7,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 -10171,12533,22609,-9,22611,22608,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-990.54828,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 -10171,12533,22610,-9,22611,22608,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.6108,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 -10171,12533,22611,22608,-9,-9,1,0,30,1,3,0,1,1,-9,0,4,0,0,0,6,0,-21.027712,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,49.04,55.86,7,2,3,0,0,0,4,3,1,420.60001,244760.14,37376.109,179517.59,22098.145,2507.5813 -10172,12534,22612,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0468903,8.177125,5.304873,0,0,-1015.8641,0,3,3,2019,10,0,37,37,1,0,0,8.7623034,8.7623034,0,0,0,0,0,1,0,1,5.8558655,5.6978464,49.74,36.89,-9,-9,3.333333333333333,1,1,0,0,9,1,4,1,461,113180.22,3606.791,64572.297,29194.234,1160.6942 -10172,12535,22613,-9,22612,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-979.50403,0,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,48.81,59.91,-9,-9,3.333333333333333,1,1,1,0,0,1,1,1,721,-332651.38,0,0,0,354.57462 -10172,12536,22614,-9,22612,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1030.8109,0,2,3,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,27.81,65.69,-9,-9,1.666666666666667,1,1,1,0,1,1,1,1,2600,-244428.89,0,0,0,568.513 -10173,12537,22615,22616,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4068937,8.5602541,0,11,19,46.677437,0,2,2,2019,23,8,38,10,1,8,0,14.156544,14.156544,0,0,0,0,0,0,0,0,0,0,36.12,53.62,35.96,48.96,3.333333333333333,1,1,0,0,10,1,5,1,636.5,713243.63,128715.99,379333.31,73721.641,4088.8926 -10173,12537,22616,22615,-9,-9,1,1,42,0,0,0,1,1,-9,0,2,8.5776663,8.7582521,0,11,-19,-69.729668,0,2,2,2019,24,11,37,42,1,11,0,12.95397,12.95397,0,0,0,0,0,0,0,0,0,0,35.96,48.96,36.12,53.62,1.666666666666667,1,1,0,0,13,1,5,1,636.5,713243.63,128715.99,379333.31,73721.641,4088.8926 -10174,12538,22617,22618,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0403681,8.2750216,0,25,3,-96.003159,0,2,2,2019,16,5,16,16,1,5,0,35.995399,35.995399,0,0,0,0,27,0,0,0,0,0,46.88,40.77,52,55,6.666666666666667,1,1,0,0,10,4,5,1,1341,584541.31,33122.391,316735.56,0,2195.8311 -10174,12538,22618,22617,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2097101,8.1255131,0,25,-3,66.52243,0,2,-9,2019,9,0,37,39,1,1,0,14.909634,14.909634,0,0,0,0,0,0,0,0,0,0,52,55,46.88,40.77,8,1,1,0,0,10,4,5,1,1341,584541.31,33122.391,316735.56,0,2195.8311 -10174,12539,22619,-9,22617,22618,1,1,27,0,0,0,2,2,-9,0,4,7.4962802,7.9670267,0,0,0,-910.46265,0,2,2,2019,30,11,40,20,1,11,1,7.6936865,7.6936865,0,0,0,0,0,0,0,0,0,0,17.88,67.62,-9,-9,0,1,1,0,1,5,4,3,1,240,188537.64,0,0,0,998.9231 -10175,12540,22620,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.3505363,7.3424592,0,0,0,-1011.3783,0,3,3,2019,11,0,44,45,1,0,0,4.5368714,4.5368714,0,0,0,0,0,1,1,0,0,0,46.03,51.75,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,1128,443028.44,284683.44,37969.027,0,1236.6516 -10176,12541,22621,22622,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4966869,7.3082404,23,12,36.324814,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6900373,7.2795348,58.91,45.88,57.33,53.46,8.333333333333334,1,1,0,0,10,10,4,1,717.5,552688.81,313282.56,225153.56,0,3168.2754 -10176,12541,22622,22621,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.3531475,8.210598,0,23,-12,2.1228764,0,-9,-9,2019,10,1,41,41,1,1,0,8.4107342,8.4107342,0,0,0,0,0,1,1,0,3.4295549,0,57.33,53.46,58.91,45.88,8.333333333333334,1,1,0,0,12,10,4,1,717.5,552688.81,313282.56,225153.56,0,3168.2754 -10177,12542,22623,22624,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.7257814,8.7588339,0,24,6,-92.833221,0,3,3,2019,8,0,44,49,1,0,0,18.179468,18.179468,0,0,0,0,0,0,0,0,2.9887192,0,54.79,55.86,51.24,58.84,8.333333333333334,1,1,0,0,9,9,5,1,1159,250962.36,135826.41,0,0,4667.3228 -10177,12542,22624,22623,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,9.3246469,9.1404161,0,24,-6,-139.60712,0,2,3,2019,9,0,45,45,1,0,0,25.09594,25.09594,0,0,0,0,0,0,0,0,5.3309817,0,51.24,58.84,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,1159,250962.36,135826.41,0,0,4667.3228 -10178,12543,22625,22626,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,0,0,0,42,-1,-32.800426,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.4663696,0,57.06,57.76,57.33,53.46,10,1,1,0,0,0,6,5,1,556.5,2674775.5,2208629.5,244985.94,0,6830.873 -10178,12543,22626,22625,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.8004608,9.8973751,0,42,1,75.070068,0,3,3,2019,6,0,50,50,1,0,0,33.356224,33.356224,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,556.5,2674775.5,2208629.5,244985.94,0,6830.873 -10179,12544,22627,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.901474,7.9510603,0,0,0,-1123.2493,0,3,3,2019,5,1,40,45,1,1,0,7.7834396,7.7834396,0,0,0,0,2,1,1,0,0,0,55.51,40.83,-9,-9,5,1,1,0,0,10,6,4,1,2350,268008.94,-14809.38,210398.2,0,1144.1038 -10180,12545,22628,22629,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.6828251,7.3962512,0,6,-7,-44.358891,0,3,3,2019,9,0,35,35,1,0,0,6.2916679,6.2916679,0,0,0,0,0,0,0,0,0,0,45.85,61.26,55,53,8.333333333333334,1,1,0,0,9,5,4,0,434,275649.5,-40505.531,191532.13,96364.469,2659.4272 -10180,12545,22629,22628,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2793112,8.2147112,0,6,7,79.545517,-9,-9,-9,2019,8,0,50,0,1,0,0,9.5573721,9.5573721,0,0,0,0,0,0,0,0,0,0,55,53,45.85,61.26,8,1,1,0,0,1,5,4,0,434,275649.5,-40505.531,191532.13,96364.469,2659.4272 -10181,12546,22630,-9,22631,22633,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.8766,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 -10181,12546,22631,22633,-9,-9,1,0,34,2,3,0,1,1,-9,0,3,8.7826767,8.5238514,0,7,-2,-91.927582,0,2,2,2019,17,5,31,26,1,5,0,21.595135,21.595135,0,0,0,0,0,1,1,0,0,0,45.75,38.47,58.15,50.21,3.333333333333333,1,1,0,1,8,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 -10181,12546,22632,-9,22631,22633,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-960.37762,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 -10181,12546,22633,22631,-9,-9,1,1,36,2,3,0,2,2,-9,0,4,8.9434242,8.7420235,0,7,2,119.47323,0,-9,-9,2019,13,2,40,40,1,2,0,25.479502,25.479502,0,0,0,0,0,1,1,0,0,0,58.15,50.21,45.75,38.47,3.333333333333333,1,1,0,0,6,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 -10181,12546,22634,-9,22631,22633,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-953.45709,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,398.39999,449827.19,439477.25,364048.91,232697.06,5054.9058 -10182,12547,22635,22636,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,6.7571082,6.6586361,0,7,-7,-103.24728,0,-9,-9,2019,5,0,15,14,1,0,0,6.1648049,6.1648049,0,0,0,0,0,1,1,0,0,0,56.74,55.09,54.2,57.49,6.666666666666667,3,4,0,0,5,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 -10182,12547,22636,22635,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,7.9654617,7.5408206,0,7,7,144.33282,0,-9,-9,2019,11,0,40,37,1,0,0,7.8245893,7.8245893,0,0,0,0,0,1,1,0,0,0,54.2,57.49,56.74,55.09,5,1,1,0,0,6,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 -10182,12547,22637,-9,22635,22636,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.92,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 -10182,12547,22638,-9,22635,22636,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.9836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 -10182,12547,22639,-9,22635,22636,1,0,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1043.1194,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.8,50.32,-9,-9,8.333333333333334,4,2,1,0,0,10,2,0,903.79999,93073.266,8571.25,151156.7,99915.805,2183.7063 -10183,12548,22640,22641,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.5160785,6.5165277,19,-2,-132.47952,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.9290476,6.9200225,54.2,57.49,49.32,22.65,8.333333333333334,1,1,0,0,13,1,3,1,467.5,2521284.5,421553.13,1261013,0,3619.489 -10183,12548,22641,22640,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.6721454,7.6368914,19,2,121.84956,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,11.301488,0,0,1,1,0,1.377949,7.9281077,49.32,22.65,54.2,57.49,3.333333333333333,1,1,0,0,0,1,3,1,467.5,2521284.5,421553.13,1261013,0,3619.489 -10184,12549,22642,22643,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.5371637,7.4594674,0,53,-2,112.30206,0,3,3,2019,11,0,30,30,1,0,0,7.1039667,7.1039667,0,0,0,0,0,1,1,0,8.1148567,0,62.11,45.63,50.7,24.52,8.333333333333334,1,1,0,0,10,2,3,1,1196.5,590645.38,512400.63,0,0,5856.7295 -10184,12549,22643,22642,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.9210744,6.8117285,53,2,57.092434,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.2967215,2.9054878,50.7,24.52,62.11,45.63,8.333333333333334,1,1,0,0,0,2,3,1,1196.5,590645.38,512400.63,0,0,5856.7295 -10185,12550,22644,-9,-9,-9,1,1,53,0,0,0,1,1,1,0,3,8.2399063,7.9974151,0,0,0,-936.44659,-9,-9,-9,2019,6,0,54,0,1,0,0,6.8883986,6.8883986,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,4832,338432.75,-56940.844,276029.72,0,1298.6711 -10186,12551,22645,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.7046041,7.6257677,0,0,0,-885.39526,0,2,2,2019,7,0,12,13,1,0,0,23.127144,23.127144,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,211,268557.5,84007.875,0,0,1487.3867 -10186,12552,22646,-9,22645,-9,1,1,24,0,0,0,2,2,-9,0,3,8.111846,7.9116135,0,0,0,-950.97235,-9,3,-9,2019,14,2,50,0,1,2,1,6.6138377,6.6138377,0,0,0,0,0,0,0,0,0,0,34.88,49.06,-9,-9,5,1,1,0,0,4,9,4,0,1317,-336642.38,-192608.47,0,0,1360.3612 -10187,12553,22647,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1000.6713,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,2.244751,1.4221203,25.938128,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,6,1,1,867,245670.11,0,42462.391,0,357.68216 -10188,12554,22648,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.7568169,8.6770973,0,0,0,-1001.9688,0,2,3,2019,25,9,50,50,1,9,0,10.907332,10.907332,0,0,0,0,2,0,0,0,2.0063324,0,29.43,54.74,-9,-9,3.333333333333333,1,1,0,0,8,2,5,1,1781,-20743.195,170.98962,97864.984,45817.414,2535.4297 -10189,12555,22649,-9,22651,22650,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.8716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 -10189,12555,22650,22651,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.5033627,8.7272148,0,6,3,-72.156631,0,-9,-9,2019,10,0,80,65,1,0,0,9.9680109,9.9680109,0,0,0,0,0,1,1,0,0,0,46.33,55.93,62.42,37.4,5,1,1,0,0,6,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 -10189,12555,22651,22650,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,6.0017524,6.1246376,0,15,-3,-13.798146,0,3,3,2019,10,0,8,0,1,0,0,7.554678,7.554678,0,0,0,0,0,1,1,0,0,0,62.42,37.4,46.33,55.93,8.333333333333334,1,1,0,0,1,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 -10189,12555,22652,-9,22651,22650,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.26672,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,689,175357.5,0,162287.92,118620.08,2339.3916 -10190,12556,22653,-9,22654,22657,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-886.7771,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 -10190,12556,22654,22657,-9,-9,1,0,40,1,4,0,1,1,-9,0,5,9.0880127,9.1003513,0,17,1,43.923466,0,3,3,2019,8,0,82,50,1,0,0,12.862,12.862,0,0,0,0,0,0,0,0,.91484994,0,57.06,57.76,54.1,59.11,6.666666666666667,1,1,0,0,10,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 -10190,12556,22655,-9,22654,22657,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.7581,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 -10190,12556,22656,-9,22654,22657,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-953.12976,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 -10190,12556,22657,22654,-9,-9,1,1,39,1,4,0,2,2,-9,0,5,8.4600391,8.7774725,0,8,-1,132.09196,0,-9,-9,2019,11,0,36,24,1,0,0,18.477764,18.477764,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,10,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 -10190,12556,22658,-9,22654,22657,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.3541,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,726.33331,1341466.4,25725.549,316382.41,113234.23,4233.728 -10191,12557,22659,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,0,0,-934.11438,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46.97,48.32,-9,-9,6.666666666666667,3,4,1,1,12,8,1,0,775,-4785.2935,8291.5059,0,0,2.6746602 -10191,12558,22660,-9,22659,-9,1,1,33,0,0,0,2,2,-9,0,3,7.8310146,7.7548985,0,0,0,-1097.5208,0,1,-9,2019,12,0,40,40,1,0,1,8.5710545,8.5710545,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,10,8,4,0,343,4042.6675,22167.408,0,0,1003.7927 -10192,12559,22661,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1167.7012,0,3,3,2019,23,7,0,0,4,7,0,0,0,1,0,28.40663,0,0,1,1,0,0,0,27.46,30.96,-9,-9,5,1,1,0,0,0,4,1,1,731,-230314.92,-46652.152,0,0,1210.0505 -10192,12560,22662,-9,-9,22661,1,1,23,0,0,0,2,2,1,1,2,0,0,0,0,0,-1115.7644,-9,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,27.14,47.34,-9,-9,1.666666666666667,1,1,0,1,0,4,1,1,338,204862.09,0,0,0,-140.42181 -10192,12561,22663,-9,-9,22661,1,1,21,0,0,0,2,2,-9,0,3,7.9215927,8.0614157,0,0,0,-1037.6555,0,3,3,2019,12,1,44,38,1,1,0,8.5071745,8.5071745,0,0,0,0,14.5,1,1,0,0,0,29.5,45.94,-9,-9,5,1,1,0,0,6,4,4,1,706,-246572.7,0,0,0,444.74161 -10193,12562,22664,-9,22665,22666,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-967.81573,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,5,1,1075.6666,2846032.8,1687564.4,1026057.5,204004.33,15389.115 -10193,12562,22665,22666,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,0,0,0,23,-1,-53.955334,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,9.4718637,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,1,0,8,5,1,1075.6666,2846032.8,1687564.4,1026057.5,204004.33,15389.115 -10193,12562,22666,22665,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.6036634,9.553751,0,23,1,-19.168406,0,2,2,2019,11,1,67,60,1,1,0,30.892956,30.892956,0,0,0,0,0,0,0,0,8.8123045,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,1075.6666,2846032.8,1687564.4,1026057.5,204004.33,15389.115 -10194,12563,22667,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0420904,7.79983,0,0,0,-938.00256,0,2,3,2019,7,0,38,36,1,0,0,9.618186,9.618186,0,0,0,0,27,0,0,0,0,0,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,900,-341364.44,10401.664,0,0,1188.7339 -10195,12564,22668,22669,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.3869925,8.3459387,0,1,1,99.575752,-9,-9,-9,2019,2,0,57,0,1,0,0,11.259148,11.259148,0,0,0,0,0,0,0,0,2.4795449,0,52,54.51,41.3,60.77,10,1,1,0,0,3,9,5,0,983,177947.84,30457.195,0,0,2661.0786 -10195,12564,22669,22668,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8410416,7.9915986,0,1,-1,-40.597679,0,2,1,2019,9,0,38,45,1,0,0,7.4451327,7.4451327,0,0,0,0,0,0,0,0,2.4755509,0,41.3,60.77,52,54.51,8.333333333333334,1,1,0,0,3,9,5,0,983,177947.84,30457.195,0,0,2661.0786 -10196,12565,22670,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9900346,7.7505922,0,0,-1163.941,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5913815,7.8075428,58.47,42.19,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,210,454211.63,390757.59,218615.84,0,1901.375 -10197,12566,22671,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-905.40143,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.55,55.6,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,205,-267295.13,51073.551,0,0,1394.5814 -10198,12567,22672,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.5781655,6.6108675,0,0,-853.65619,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.1775827,7.2611847,49.1,36.06,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,445,449595.81,136983.95,0,0,1032.6212 -10199,12568,22673,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.2219963,8.0647106,0,0,0,-1020.8245,0,-9,-9,2019,9,0,50,50,1,0,0,11.385484,11.385484,0,0,0,0,0,0,0,0,.63619369,0,55.57,45.88,-9,-9,8.333333333333334,1,1,0,0,6,7,4,0,2039,-50463.039,53743.25,0,0,759.08124 -10200,12569,22674,22675,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,3.7925138,4.0904751,9,1,-32.195686,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4704549,3.7942138,52.41,44.88,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,1,496.5,495447.25,320794.81,102389.6,0,1732.9131 -10200,12569,22675,22674,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.002739,6.1585622,9,-1,99.312614,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0996819,0,54.2,57.49,52.41,44.88,8.333333333333334,1,1,0,0,0,2,2,1,496.5,495447.25,320794.81,102389.6,0,1732.9131 -10201,12570,22676,22680,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,7.2504854,7.1538472,0,19,10,19.27887,0,-9,3,2019,9,0,24,24,1,1,0,8.905407,8.905407,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,8,1,2,1,526,74397.438,0,0,0,1417.7424 -10201,12570,22677,-9,22680,22676,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-921.18561,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 -10201,12570,22678,-9,22680,22676,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-966.96997,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 -10201,12570,22679,-9,22680,22676,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.9453,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,6,2,3,-9,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 -10201,12570,22680,22676,-9,-9,1,0,34,1,3,0,3,3,-9,0,4,0,0,0,5,-10,47.898197,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,1,2,1,526,74397.438,0,0,0,1417.7424 -10202,12571,22681,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4217319,8.4052162,0,0,0,-977.94196,0,2,2,2019,7,0,42,37,1,0,0,13.961359,13.961359,0,0,0,0,0,1,1,0,4.5296268,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,736,2295793.8,1412121.8,532911.56,0,2004.009 -10203,12572,22682,22683,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,7.6602011,8.0037203,0,10,-2,112.42971,0,3,3,2019,9,0,70,70,1,1,0,3.580806,3.580806,0,0,0,0,2,1,1,0,0,0,52,55,60.12,54.8,8,3,4,0,0,11,12,4,1,2271.5,554502.44,249036.48,322739.63,78363.172,3379.1089 -10203,12572,22683,22682,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,8.8764467,8.7530365,0,10,2,114.58177,0,2,2,2019,8,0,12,45,1,0,0,50.036064,50.036064,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52,55,8.333333333333334,3,4,0,1,11,12,4,1,2271.5,554502.44,249036.48,322739.63,78363.172,3379.1089 -10203,12573,22684,-9,22683,22682,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1016.4155,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.76,54.41,-9,-9,6.666666666666667,3,4,0,0,0,12,1,1,1416,-264413.09,0,0,0,0 -10204,12574,22685,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.1849575,7.168016,0,0,-1033.6346,0,2,2,2019,7,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5797777,7.5025902,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,91,1318514.6,666775.56,446907.91,102200.91,1510.6051 -10205,12575,22686,-9,22689,22688,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-969.35168,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 -10205,12575,22687,-9,22689,22688,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-923.61505,-9,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.936861,0,47.69,55.06,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 -10205,12575,22688,22689,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,7.8665271,7.8367538,0,33,2,34.015133,0,2,2,2019,10,0,35,40,1,0,0,8.4469242,8.4469242,0,0,0,0,0,1,1,0,0,0,48.14,53.42,53.39,44.47,6.666666666666667,1,1,0,0,12,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 -10205,12575,22689,22688,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.9555502,7.1725068,0,33,-2,4.9083247,0,-9,-9,2019,10,0,25,20,1,0,0,4.9086947,4.9086947,0,0,0,0,0,1,1,0,0,0,53.39,44.47,48.14,53.42,8.333333333333334,1,1,0,0,10,10,3,1,639.75,125708.4,28910.484,255661.61,171096.56,2138.9053 -10206,12576,22690,22691,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7388744,8.7819862,7.4893537,37,1,103.16499,0,3,3,2019,8,0,40,40,1,0,0,14.755299,14.755299,0,0,0,0,0,0,0,0,4.4217091,7.4749846,51.83,57.2,43.95,51.24,8.333333333333334,1,1,0,0,9,5,5,1,327,2846332,2182980,168827.81,0,3498.6558 -10206,12576,22691,22690,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.2917738,7.7289281,5.5106096,37,-1,92.304779,0,2,2,2019,17,5,25,27,1,5,0,7.303793,7.303793,0,0,0,0,0,0,0,0,2.8595467,5.7825103,43.95,51.24,51.83,57.2,6.666666666666667,1,1,0,0,9,5,5,1,327,2846332,2182980,168827.81,0,3498.6558 -10206,12577,22692,-9,22691,22690,1,0,23,0,0,0,1,1,-9,0,4,8.2059031,8.2506533,0,0,0,-935.38342,0,2,2,2019,12,0,38,0,1,0,1,11.571277,11.571277,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,293,-513824.91,63639.328,0,0,2142.1123 -10206,12578,22693,-9,22691,22690,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-956.24548,1,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.66,39.17,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,384,-84428.063,0,0,0,1580.9347 -10207,12579,22694,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.547441,6.2858291,0,0,-970.96387,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3521628,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,1571,575252,-5209.5483,75382.625,0,1813.2791 -10208,12580,22695,22697,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,7.9327097,7.7165914,0,5,-2,-144.98012,0,-9,-9,2019,8,0,40,48,1,0,0,9.6477785,9.6477785,0,0,0,0,27,1,1,0,2.6478446,0,48.87,58.55,46.4,59.87,6.666666666666667,1,1,0,0,4,4,3,1,979,172956.88,29855.85,0,0,2511.0125 -10208,12580,22696,-9,22697,22695,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.1452,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,979,172956.88,29855.85,0,0,2511.0125 -10208,12580,22697,22695,-9,-9,1,0,38,1,2,0,1,1,-9,1,5,6.2793751,6.4917107,0,5,2,4.3683586,0,3,3,2019,2,0,40,36,1,0,0,1.3589941,1.3589941,0,0,0,0,86,1,1,0,.8269434,0,46.4,59.87,48.87,58.55,8.333333333333334,1,1,0,0,8,4,3,1,979,172956.88,29855.85,0,0,2511.0125 -10208,12580,22698,-9,22697,22695,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.43433,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,979,172956.88,29855.85,0,0,2511.0125 -10209,12581,22699,22700,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4459209,8.0280905,0,7,2,49.852058,0,3,2,2019,8,0,40,40,1,0,0,13.289423,13.289423,0,0,0,0,0,0,0,0,0,0,51.49,57.57,61.44,40.51,8.333333333333334,1,1,0,0,9,2,4,1,833.5,50085.84,0,0,0,1900.9641 -10209,12581,22700,22699,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,6.7342076,6.4619417,0,7,-2,-70.463486,0,2,3,2019,7,0,45,45,1,0,0,2.280371,2.280371,0,0,0,0,0,0,0,0,0,0,61.44,40.51,51.49,57.57,8.333333333333334,1,1,0,0,7,2,4,1,833.5,50085.84,0,0,0,1900.9641 -10209,12582,22701,-9,22700,22699,1,1,20,0,0,0,2,2,-9,0,3,7.4437604,7.456028,0,0,0,-1035.8668,0,2,2,2019,6,1,35,42,1,1,1,6.6570101,6.6570101,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,343,-76173.5,263992.97,0,0,733.67584 -10209,12583,22702,-9,22700,22699,1,0,25,0,0,0,2,2,-9,0,4,8.0624647,7.8256302,0,0,0,-1063.2534,0,2,2,2019,11,0,46,40,1,0,1,6.2837753,6.2837753,0,0,0,0,0,0,0,0,0,0,52.02,46.37,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,198,85327.922,0,0,0,1065.024 -10210,12584,22703,-9,22705,22707,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.57458,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 -10210,12584,22704,-9,22705,22707,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-976.1416,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 -10210,12584,22705,22707,-9,-9,1,0,54,0,3,0,3,3,-9,0,3,0,0,0,8,-4,0,0,3,3,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.52,53.17,47.61,53.7,6,1,1,0,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 -10210,12584,22706,-9,22705,22707,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1018.0679,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 -10210,12584,22707,22705,-9,-9,1,1,58,0,3,0,3,3,-9,0,3,0,0,0,8,4,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,37.52,53.17,6.666666666666667,1,1,1,0,7,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 -10210,12584,22708,-9,22705,22707,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-995.70557,-9,3,3,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,638,679464.75,186910.38,339233.13,0,1192.3477 -10210,12585,22709,-9,22705,22707,1,0,20,0,3,0,2,2,-9,0,5,7.1821928,7.1793303,0,0,0,-1004.6578,0,3,3,2019,10,0,48,37,1,0,1,4.3103042,4.3103042,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,4,13,3,0,566,352934.97,-100285.88,0,0,-293.34198 -10211,12586,22710,-9,22713,22712,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.6223,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 -10211,12586,22711,-9,22713,22712,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.59137,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 -10211,12586,22712,22713,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.4574337,8.5945435,0,16,0,6.7082157,0,2,2,2019,6,0,45,48,1,0,0,14.749269,14.749269,0,0,0,0,0,1,1,0,0,0,58.85,43.28,57.16,56.15,8.333333333333334,2,3,0,0,7,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 -10211,12586,22713,22712,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,0,0,0,16,0,-29.818624,0,2,2,2019,7,0,0,30,3,0,0,0,0,0,0,0,0,2,1,1,0,7.658711,0,57.16,56.15,58.85,43.28,8.333333333333334,2,3,0,0,7,9,4,1,567.5,81152.547,-9104.1963,0,0,3775.5967 -10212,12587,22714,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.5563779,5.5250678,0,0,-937.51935,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,16.157953,0,132.95091,0,1,1,0,3.8769069,5.5857267,65.23,38.89,-9,-9,10,1,1,0,0,0,2,2,1,672,155398.47,-170073.81,135596.77,0,206.48601 -10212,12588,22715,-9,-9,22714,1,1,57,0,0,0,2,2,-9,0,4,7.7600837,8.045929,6.2023029,0,0,-981.3244,0,-9,3,2019,6,0,39,39,1,0,0,7.615406,7.615406,0,0,0,0,2,1,1,0,4.1221781,6.3299589,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,186,-114780.96,110138.59,0,0,1685.5515 -10213,12589,22716,22717,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,9.1262827,8.9205561,0,7,2,48.479713,-9,-9,-9,2019,10,0,42,0,1,1,0,20.16943,20.16943,0,0,0,0,0,0,0,0,6.7863145,0,50,57,40.83,59.68,7,1,1,0,0,1,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 -10213,12589,22717,22716,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,6.1940913,6.3479691,0,10,-2,-59.41666,0,2,1,2019,18,6,18,-9,1,6,0,3.4631867,3.4631867,0,0,0,0,0,0,0,0,0,0,40.83,59.68,50,57,8.333333333333334,1,1,0,0,2,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 -10213,12589,22718,-9,22717,22716,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.2804,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 -10213,12589,22719,-9,22717,22716,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.1951,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,722.25,163882.2,132317.47,115959.63,102459.66,3580.5391 -10214,12590,22720,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.5336018,8.5074835,0,0,0,-978.46387,0,2,2,2019,9,0,33,42,1,0,0,17.68705,17.68705,0,0,0,0,0,1,1,0,3.8291323,0,56.35,43.13,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,1290,-204572.27,-26454.389,0,0,1612.4138 -10215,12591,22721,22722,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.0965753,4.0021405,6,-1,-6.6922674,0,3,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.0006838,56.95,46.69,63.65,49.16,10,1,1,0,0,0,10,2,1,1757,470349.63,107404.16,287155.13,0,1260.3492 -10215,12591,22722,22721,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.3717318,6.4340949,6,1,.36721265,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4250164,6.4411578,63.65,49.16,56.95,46.69,8.333333333333334,1,1,0,0,1,10,2,1,1757,470349.63,107404.16,287155.13,0,1260.3492 -10216,12592,22723,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,4.5640144,4.4364867,0,0,-942.76038,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.7871224,4.750195,48.36,28.21,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,484,73234.992,-80562.797,38257.449,0,1518.0903 -10217,12593,22724,22725,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.7575197,8.0744677,7,1,10.449673,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,2,1,1,0,4.7199416,7.9583507,41.22,44.22,47.7,49.53,6.666666666666667,1,1,0,0,0,11,3,1,985.5,468937.88,479865.59,85058.281,0,2384.4829 -10217,12593,22725,22724,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,5.8550558,5.9772592,7,-1,-33.691593,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.2071104,5.9227753,47.7,49.53,41.22,44.22,6.666666666666667,1,1,0,0,0,11,3,1,985.5,468937.88,479865.59,85058.281,0,2384.4829 -10218,12594,22726,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.3737597,7.5122294,0,0,-1077.976,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.6552954,41.38,51.32,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,823,294087.22,282547.22,195433.44,0,1680.7932 -10219,12595,22727,-9,-9,22728,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-978.09607,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,1,468,62243.152,-87287.039,158476.16,130583.68,2021.9141 -10219,12595,22728,-9,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.5911913,8.5177917,0,0,0,-935.18048,0,2,2,2019,10,0,40,45,1,0,0,12.933587,12.933587,0,0,0,0,0,1,1,0,0,0,42.64,50.88,-9,-9,5,1,1,0,0,7,10,3,1,468,62243.152,-87287.039,158476.16,130583.68,2021.9141 -10219,12596,22729,-9,-9,22728,1,0,18,0,1,1,2,0,-9,0,1,0,0,0,0,0,-1029.5886,-9,-9,3,2019,23,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,49.42,19.81,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,422,-177949.23,0,0,0,0 -10220,12597,22730,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,5.9708824,5.6840687,0,0,-799.55054,0,2,2,2019,31,12,0,0,4,12,0,0,0,0,0,0,0,7,1,1,0,5.0048132,5.6864047,19.83,46.71,-9,-9,3.333333333333333,1,1,0,1,8,9,2,0,336,200204.34,55374.961,186741.63,35681.262,1062.1641 -10221,12598,22731,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1005.1609,0,1,2,2019,34,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.7,39.59,-9,-9,0,1,1,0,0,5,1,1,0,563,-376721.78,0,0,0,415.94336 -10221,12599,22732,-9,22731,-9,1,1,23,0,0,0,2,2,0,0,5,0,0,0,0,0,-977.09106,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.81,56.94,-9,-9,8.333333333333334,1,1,0,0,3,1,1,0,317,485699.53,0,0,0,46.637161 -10222,12600,22733,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1055.3735,0,2,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,24.14,27.03,-9,-9,0,1,1,0,0,0,11,1,1,1352,484581.28,0,0,0,0 -10223,12601,22734,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.2423592,7.1040239,0,0,-923.06012,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8075559,7.2989578,63.7,16.76,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,452,54914.352,344850.31,212013.97,0,2722.2627 -10224,12602,22735,22736,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.1448045,7.3037963,0,2,3,-103.36552,0,-9,-9,2019,9,0,45,0,1,0,0,3.3606193,3.3606193,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,3.333333333333333,2,3,0,0,1,4,3,0,502,279329.78,-55951.316,0,0,1792.2104 -10224,12602,22736,22735,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,7.7447572,7.9908857,0,2,-3,39.312286,0,2,2,2019,7,0,23,20,1,0,0,11.915524,11.915524,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,6.666666666666667,1,1,0,0,7,4,3,0,502,279329.78,-55951.316,0,0,1792.2104 -10225,12603,22737,22738,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.662107,8.0216312,0,10,-17,-45.724823,0,3,2,2019,6,0,40,20,1,0,0,6.8913188,6.8913188,0,0,0,0,0,1,1,0,0,0,59.86,48.06,49.19,48.82,8.333333333333334,1,1,0,0,11,5,3,1,1181.5,1156811.6,660526.88,185961.25,0,2157.3408 -10225,12603,22738,22737,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.3773856,5.7086,10,17,-62.225983,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.920712,6.0574017,49.19,48.82,59.86,48.06,6.666666666666667,1,1,0,0,2,5,3,1,1181.5,1156811.6,660526.88,185961.25,0,2157.3408 -10226,12604,22739,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.0012503,5.7324648,0,0,-1089.7877,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,5.9192972,46.23,43.51,-9,-9,5,1,1,0,0,5,12,2,1,394,111305.07,46456.672,218811.95,0,-20.551374 -10227,12605,22740,22741,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.6971564,6.5890255,9,-12,92.253433,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9304514,6.7158875,57.16,56.15,57.33,53.46,10,1,1,0,0,5,8,3,1,602,934759,608239.88,206201.78,0,1701.9222 -10227,12605,22741,22740,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5287342,7.9434066,9,12,148.41415,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0609879,7.5647521,57.33,53.46,57.16,56.15,10,1,1,0,0,0,8,3,1,602,934759,608239.88,206201.78,0,1701.9222 -10228,12606,22742,22743,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.476058,7.6865082,0,30,8,-146.05704,0,2,2,2019,9,0,60,80,1,0,0,3.5772533,3.5772533,0,0,0,0,7,0,0,0,0,0,59.74,41.31,54.2,57.49,1.666666666666667,1,1,0,0,11,12,5,1,483,1272623.8,1149835,114301.31,0,3524.856 -10228,12606,22743,22742,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6991663,8.4279537,0,30,-8,17.19014,0,2,3,2019,11,2,40,25,1,2,0,16.28334,16.28334,0,0,0,0,2,0,0,0,0,0,54.2,57.49,59.74,41.31,8.333333333333334,1,1,0,0,11,12,5,1,483,1272623.8,1149835,114301.31,0,3524.856 -10228,12607,22744,-9,22743,22742,1,1,25,0,0,0,2,2,-9,0,4,8.2497978,8.1024151,0,0,0,-1006.4134,0,2,2,2019,6,0,40,44,1,0,1,11.92273,11.92273,0,0,0,0,0,0,0,0,.88515717,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,1059,253388.8,28845.221,0,0,1889.4512 -10229,12608,22745,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.3454,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,9,1,0,1552,55081.777,0,0,0,1713.2061 -10230,12609,22746,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,5.903419,6.323617,0,0,-932.31702,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,5.9912176,41.17,17.23,-9,-9,10,1,1,0,1,8,7,2,1,1563,-68620.258,24997.037,0,0,358.96091 -10231,12610,22747,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.9978633,8.205925,0,0,0,-1099.3945,0,2,2,2019,11,0,40,40,1,0,0,9.9363623,9.9363623,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,11,5,4,1,710,21947.494,0,0,0,2038.7217 -10232,12611,22748,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.6789856,9.0938578,0,0,-1060.3154,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2768364,8.537219,58.15,52.91,-9,-9,10,1,1,0,0,7,6,5,1,416,481235,88182.188,398812.66,65901.906,4502.4072 -10233,12612,22749,22750,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,6,-4,50.993187,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.02,49.19,10,1,1,0,0,0,4,2,1,710.5,409802.16,-72324.359,352983.25,0,1087.5145 -10233,12612,22750,22749,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,5.027245,5.0601926,6,4,-26.434889,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8738108,41.02,49.19,57.16,56.15,5,1,1,0,0,0,4,2,1,710.5,409802.16,-72324.359,352983.25,0,1087.5145 -10234,12613,22751,22752,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.3102436,8.3034229,0,25,-1,-78.10569,0,3,3,2019,11,0,40,37,1,0,0,15.922976,15.922976,0,0,0,0,0,0,0,0,0,0,36.45,62.92,53,55,6.666666666666667,1,1,0,0,9,13,5,1,841.5,1392823.9,825050,271483.09,0,5105.6191 -10234,12613,22752,22751,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.2083464,9.162075,0,25,1,-49.548161,0,3,3,2019,9,0,38,50,1,1,0,29.767817,29.767817,0,0,0,0,0,0,0,0,7.1284876,0,53,55,36.45,62.92,8,1,1,0,0,1,13,5,1,841.5,1392823.9,825050,271483.09,0,5105.6191 -10234,12614,22753,-9,22751,22752,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1094.7888,-9,1,2,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,1374,0,0,0,0,0 -10234,12615,22754,-9,22751,22752,1,0,20,0,0,0,2,2,-9,0,4,7.90804,7.6951208,0,0,0,-1030.6355,-9,1,1,2019,8,1,40,0,1,1,1,9.1208258,9.1208258,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,554,162431.3,4622.0913,0,0,1783.8745 -10235,12616,22755,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.1819334,8.7068691,7.2065291,0,0,-1080.1898,0,3,2,2019,9,0,41,48,1,0,0,13.446186,13.446186,0,0,0,0,0,0,0,0,0,7.4801626,59.31,44.28,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,556,89.083771,-39719.98,0,0,1861.6066 -10236,12617,22756,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1059.9735,0,2,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.01,30.2,-9,-9,3.333333333333333,1,1,0,1,0,5,1,0,474,10934.566,-127720.99,0,0,915.92999 -10237,12618,22757,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.4863033,8.4189806,0,0,0,-995.86859,-9,2,2,2019,12,0,37,0,1,0,0,13.425515,13.425515,0,0,0,0,0,0,0,0,0,0,37.08,49.23,-9,-9,6.666666666666667,1,1,0,0,7,2,5,1,482,-111212.76,202524.66,0,0,2264.509 -10238,12619,22758,22759,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.7904506,6.5324883,9,-10,27.649136,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.0694718,6.7742219,57.33,53.46,48.48,37.25,8.333333333333334,1,1,0,0,3,4,2,1,1110.5,400196.44,227265.47,112688.98,0,1509.9917 -10238,12619,22759,22758,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.3380499,6.7437515,9,10,66.131111,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,14.276802,0,0,1,1,0,5.111732,5.8623762,48.48,37.25,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,1110.5,400196.44,227265.47,112688.98,0,1509.9917 -10239,12620,22760,22761,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.2268839,7.5408602,17,4,202.82579,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0501442,7.4792013,56.11,44.4,54.1,59.11,8.333333333333334,1,1,0,0,8,7,2,1,383.5,664849.69,0,495752.13,0,1890.5984 -10239,12620,22761,22760,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,0,0,17,-4,92.918022,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2438362,0,54.1,59.11,56.11,44.4,8.333333333333334,1,1,0,0,7,7,2,1,383.5,664849.69,0,495752.13,0,1890.5984 -10240,12621,22762,22763,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.9968271,8.3925619,5.5481391,27,8,77.093727,0,3,3,2019,9,1,48,42,1,1,0,7.444066,7.444066,0,0,0,0,0,0,0,0,0,5.3146801,64.63,28.09,40.97,32.79,8.333333333333334,1,1,0,0,9,4,4,0,921.5,678800.88,642997.25,185560.19,0,2724.8984 -10240,12621,22763,22762,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8888021,7.9265823,0,27,-8,-24.032162,0,3,3,2019,15,3,48,42,1,3,0,8.6143818,8.6143818,0,0,0,0,14.5,0,0,0,0,0,40.97,32.79,64.63,28.09,3.333333333333333,1,1,0,0,9,4,4,0,921.5,678800.88,642997.25,185560.19,0,2724.8984 -10241,12622,22764,22765,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.4098387,8.1568356,0,37,2,1.5850707,0,-9,-9,2019,7,0,40,42,1,0,0,9.3377943,9.3377943,0,0,0,0,0,0,0,0,0,0,57.71,46.52,54.58,47.62,8.333333333333334,1,1,0,0,10,10,4,1,503,302287.13,62918.016,217491.17,14000.574,2665.3242 -10241,12622,22765,22764,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.8704615,7.7517681,0,37,-2,111.17738,0,-9,-9,2019,6,0,26,40,1,0,0,11.276917,11.276917,0,0,0,0,0,0,0,0,0,0,54.58,47.62,57.71,46.52,8.333333333333334,1,1,0,0,10,10,4,1,503,302287.13,62918.016,217491.17,14000.574,2665.3242 -10242,12623,22766,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.6258764,7.4436493,0,0,0,-1031.4172,0,3,3,2019,8,0,40,16,1,0,0,6.0350108,6.0350108,0,0,0,0,7,1,1,0,0,0,50.6,51,-9,-9,5,1,1,0,0,4,2,3,1,2126.5,280187.41,48185.535,306029,0,2161.0396 -10242,12623,22767,-9,22766,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.5282,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,2126.5,280187.41,48185.535,306029,0,2161.0396 -10243,12624,22768,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1012.4575,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,9,2,1,545,-207802.75,0,0,0,0 -10243,12625,22769,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-948.04724,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,74.5,1,1,0,0,0,49.66,18.67,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,299,-394125.38,0,0,0,640.15808 -10244,12626,22770,-9,22772,22771,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.6753,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 -10244,12626,22771,22772,-9,-9,1,1,50,0,3,0,3,3,-9,0,4,7.8937578,8.2133007,0,8,12,-118.15519,0,-9,-9,2019,9,0,60,60,1,1,0,7.2210741,7.2210741,0,0,0,0,0,1,1,0,5.839292,0,53,55,54.1,59.11,8,4,1,0,0,1,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 -10244,12626,22772,22771,22774,-9,1,0,38,0,3,0,2,2,-9,0,5,0,0,0,18,-12,-39.239452,0,1,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,53,55,10,1,1,0,0,1,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 -10244,12626,22773,-9,22772,22771,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1170.63,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,336.5,-4762.5952,90892.68,99977.172,53532.543,2887.4319 -10244,12627,22774,-9,-9,-9,1,0,67,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1034.0494,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0835004,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,258,219842.02,0,0,0,1164.9031 -10245,12628,22775,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,8.6960001,8.5428171,0,10,-2,-111.67003,0,2,2,2019,9,0,42,42,1,0,0,14.942426,14.942426,0,0,0,0,0,0,0,0,5.261086,0,57.06,57.76,50.24,58.02,10,1,1,0,0,9,2,5,1,614,351017.63,114786.88,0,0,2100.6936 -10245,12629,22776,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,9.1762753,9.1218033,0,10,2,35.140659,0,3,3,2019,9,0,40,45,1,0,0,29.401049,29.401049,0,0,0,0,0,0,0,0,6.5069814,0,50.24,58.02,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,272,187283.42,387008.88,32354.227,40345.18,3284.0205 -10246,12630,22777,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-934.1734,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,3496,0,0,0,0,1017.1379 -10247,12631,22778,22779,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,39,3,23.20327,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.68000000000001,29.57,57.9,51.84,8.333333333333334,3,4,0,0,0,8,5,1,656,3202765,1619327.3,1175606,0,3455.6069 -10247,12631,22779,22778,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.7859869,8.8353796,0,9,-3,12.684537,0,-9,-9,2019,8,0,50,45,1,0,0,19.989489,19.989489,0,0,0,0,14.5,1,1,0,0,0,57.9,51.84,67.68000000000001,29.57,8.333333333333334,3,4,0,0,9,8,5,1,656,3202765,1619327.3,1175606,0,3455.6069 -10248,12632,22780,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7736712,8.424346,0,0,0,-1187.5166,0,2,2,2019,10,0,36,36,1,0,0,19.856924,19.856924,0,0,0,0,0,0,0,0,3.3241858,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,11,10,5,1,283,102186.06,10332.801,119663.98,65315.715,1850.3239 -10249,12633,22781,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.1820569,6.4325781,0,0,-923.04456,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.7420411,6.5066614,40.33,50.39,-9,-9,6.666666666666667,1,1,0,0,9,11,2,1,300,361070.78,236819.63,158506.09,0,521.88702 -10250,12634,22782,22783,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,7.8325691,7.8617511,0,19,-12,43.024925,0,3,3,2019,14,2,38,38,1,2,0,7.5442328,7.5442328,0,0,0,0,7,0,0,0,1.7351581,0,33.46,40.35,52,54.51,5,1,1,0,0,10,7,5,1,511,723561.75,415371.38,320269.63,31244.875,3228.3528 -10250,12634,22783,22782,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4716921,8.8627224,0,19,12,-33.995468,0,-9,2,2019,9,0,42,42,1,0,0,11.840605,11.840605,0,0,0,0,0,0,0,0,3.0055847,0,52,54.51,33.46,40.35,8.333333333333334,1,1,0,0,10,7,5,1,511,723561.75,415371.38,320269.63,31244.875,3228.3528 -10251,12635,22784,22785,-9,-9,1,0,73,0,0,0,1,1,-9,0,5,0,6.9244394,7.0740533,53,1,-28.433512,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2691665,6.8391294,52.66,56.94,54.37,54.8,8.333333333333334,1,1,0,0,4,11,4,1,474.5,1708655.3,900002.25,209240.44,0,3522.1968 -10251,12635,22785,22784,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.856319,7.9597006,53,-1,-12.126822,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.2929511,8.1582947,54.37,54.8,52.66,56.94,8.333333333333334,1,1,0,0,4,11,4,1,474.5,1708655.3,900002.25,209240.44,0,3522.1968 -10251,12636,22786,-9,22784,22785,1,1,45,0,0,0,2,2,-9,1,4,4.9969049,4.8927698,0,0,0,-914.17621,0,1,1,2019,7,0,37,36,1,0,0,.43473157,.43473157,0,0,0,0,0,1,1,0,0,0,55.57,45.88,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,1117,-104487.79,125718.91,0,0,546.05927 -10252,12637,22787,22789,-9,-9,1,1,33,0,2,0,3,3,-9,0,4,6.1015553,6.201457,0,14,1,97.75518,-9,3,3,2019,9,0,24,0,1,0,0,1.7511303,1.7511303,0,0,0,0,0,1,1,0,0,0,48.87,58.55,2.87,57.43,8.333333333333334,2,3,0,0,12,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 -10252,12637,22788,-9,22789,22787,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.8665,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 -10252,12637,22789,22787,-9,-9,1,0,32,0,2,0,2,2,-9,0,2,7.3889666,7.5483375,0,14,-1,26.122797,0,3,3,2019,27,11,24,20,1,11,0,8.6861687,8.6861687,0,0,0,0,0,1,1,0,0,0,2.87,57.43,48.87,58.55,1.666666666666667,2,3,0,0,5,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 -10252,12637,22790,-9,22789,22787,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.12604,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,569,76639.266,-52971.426,0,0,1900.7806 -10253,12638,22791,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-940.99878,0,-9,-9,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,26.89,28.6,-9,-9,3.333333333333333,3,4,0,1,0,6,1,0,509,-213874.3,0,0,0,1196.9672 -10253,12639,22792,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1009.8797,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,6,0,0,0,6,1,0,999,-174825.91,0,0,0,863.8042 -10254,12640,22793,22794,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.6879053,9.0614433,27,-2,134.19278,0,2,2,2019,5,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,8.424819,8.7709131,55.79,52.62,58.31,42.52,10,1,1,0,0,11,8,5,1,174,1442779.8,614079.56,753136.25,84999.484,8831.8984 -10254,12640,22794,22793,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,9.586587,9.4174995,0,27,2,69.438675,0,-9,-9,2019,8,0,50,60,1,0,0,43.092957,43.092957,0,0,0,0,0,0,0,0,0,0,58.31,42.52,55.79,52.62,1.666666666666667,1,1,0,0,11,8,5,1,174,1442779.8,614079.56,753136.25,84999.484,8831.8984 -10254,12641,22795,-9,22794,22793,1,1,20,0,0,0,2,2,1,0,4,7.7430811,7.5690951,0,0,0,-868.71936,-9,1,1,2019,7,1,36,0,1,1,1,6.7619915,6.7619915,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,8,3,1,1838,116764.36,115119.74,0,0,1211.2285 -10255,12642,22796,22797,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.6055312,7.7639513,0,6,0,-135.49625,0,2,1,2019,11,0,26,29,1,0,0,9.4482956,9.4482956,0,0,0,0,2,0,0,0,4.0833659,0,52.01,46.48,57.06,57.76,8.333333333333334,1,1,0,0,7,11,3,1,1195,-197634.91,-62333.027,103643.17,0,1144.6309 -10255,12642,22797,22796,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,0,0,6,0,85.081085,0,1,3,2019,6,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,6.2376728,0,57.06,57.76,52.01,46.48,8.333333333333334,1,1,0,0,7,11,3,1,1195,-197634.91,-62333.027,103643.17,0,1144.6309 -10256,12643,22798,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,3,0,6.9491062,6.8249831,0,0,-1075.8533,0,-9,-9,2019,24,12,0,21,3,12,0,0,0,0,0,0,0,120,1,0,1,6.2724237,0,24.28,42.81,-9,-9,5,1,1,0,0,10,7,2,1,697,1329.2279,0,0,0,1460.1228 -10256,12643,22799,-9,22798,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.09729,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,1,697,1329.2279,0,0,0,1460.1228 -10256,12643,22800,-9,22798,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-903.45105,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,2,1,697,1329.2279,0,0,0,1460.1228 -10257,12644,22801,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1091.9089,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,59.3,39.29,-9,-9,5,1,1,1,1,0,13,1,0,332,-33525.566,0,0,0,746.43207 -10258,12645,22802,22803,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.4511805,7.5400758,0,28,-5,-48.751339,0,-9,-9,2019,10,0,22,22,1,0,0,6.3582339,6.3582339,0,0,0,0,2,0,0,0,2.6028957,0,60.12,54.8,28.86,68.77,10,1,1,0,0,8,7,3,1,969,219660.19,134991.03,121225.42,100445.92,2083.9773 -10258,12645,22803,22802,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.8648787,7.661314,0,28,5,-70.762825,0,3,3,2019,11,0,60,50,1,0,0,5.4619422,5.4619422,0,0,0,0,0,0,0,0,0,0,28.86,68.77,60.12,54.8,8.333333333333334,1,1,0,0,9,7,3,1,969,219660.19,134991.03,121225.42,100445.92,2083.9773 -10258,12646,22804,-9,22802,22803,1,1,23,0,0,0,1,1,-9,0,5,8.7988338,8.3679266,0,0,0,-1022.3092,0,3,3,2019,0,0,40,22,1,0,1,13.391995,13.391995,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,7,5,1,654,0,0,0,0,2105.8743 -10259,12647,22805,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.2375221,6.2386532,0,0,-1004.1052,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.8646432,5.9647555,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,135,863057.63,99913.273,235313.94,0,1169.6418 -10260,12648,22806,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5407157,6.6559758,0,0,-1066.5194,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9992785,62.66,52.4,-9,-9,10,1,1,0,0,0,12,2,0,285,356758.53,251460.55,0,0,902.48389 -10261,12649,22807,22808,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,5.1528673,5.3143954,37,8,-13.47121,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3722548,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,5,10,5,1,1459.5,1501447.4,867061.13,300720.19,109653.77,4458.2471 -10261,12649,22808,22807,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,7.2123747,8.8923483,8.5994606,37,-8,-32.681957,0,3,3,2019,6,0,5,10,1,0,0,25.677338,25.677338,0,0,0,0,0,0,0,0,8.8733044,0,57.06,57.76,52,54.51,0,1,1,0,0,9,10,5,1,1459.5,1501447.4,867061.13,300720.19,109653.77,4458.2471 -10262,12650,22809,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6375761,8.4827967,0,0,0,-1028.5016,0,2,2,2019,8,0,44,53,1,0,0,17.81225,17.81225,0,0,0,0,0,0,0,0,2.5345552,0,55.19,54.26,-9,-9,5,1,1,0,0,8,10,5,1,277,241647.5,37232.457,462812.22,238937.61,1874.6785 -10263,12651,22810,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,4.7609162,5.0698404,0,0,-1033.9235,0,3,3,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,5.2781811,27.89,18.61,-9,-9,5,1,1,1,0,1,1,2,1,745,160607.81,79057.891,0,0,245.11473 -10264,12652,22811,22812,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6310668,8.1073351,0,20,9,105.60094,0,3,3,2019,12,2,48,36,1,2,0,4.9860234,4.9860234,0,0,0,0,0,0,0,0,0,0,39.37,54.73,53,54,5,1,1,0,0,6,2,3,0,933.5,369956.88,204495.63,80097.734,0,468.43555 -10264,12652,22812,22811,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,4.6601667,4.8450131,21,0,-25.110659,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,5.0848475,53,54,39.37,54.73,8,1,1,0,0,0,2,3,0,933.5,369956.88,204495.63,80097.734,0,468.43555 -10265,12653,22813,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,9.7309828,9.8884878,0,0,0,-910.2298,0,2,1,2019,7,0,45,57,1,0,0,38.215881,38.215881,0,0,0,0,7,0,0,0,6.6677637,0,41.89,50.72,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,126,745218.75,255836.3,541878.13,59883.809,7206.6118 -10266,12654,22814,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-950.46332,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,40,26,-9,-9,1.666666666666667,1,1,0,1,10,12,1,0,479,123783.7,-66767.734,0,0,901.13062 -10267,12655,22815,22816,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.0188608,8.0633659,0,21,4,-25.77742,0,3,3,2019,11,0,39,39,1,0,0,11.865196,11.865196,0,0,0,0,0,0,0,0,0,0,54.97,31.57,41.49,52.34,5,1,1,0,0,13,2,4,1,1075,516912.13,48933.297,273259.34,114483.02,2633.3342 -10267,12655,22816,22815,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8393292,7.6916037,0,21,-4,-8.2382355,0,3,2,2019,9,0,25,25,1,0,0,12.78397,12.78397,0,0,0,0,0,0,0,0,0,0,41.49,52.34,54.97,31.57,8.333333333333334,1,1,0,0,13,2,4,1,1075,516912.13,48933.297,273259.34,114483.02,2633.3342 -10268,12656,22817,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7188668,7.7796082,5.6865783,0,0,-888.93481,0,-9,-9,2019,12,0,10,30,1,0,0,30.13092,30.13092,0,0,0,0,0,1,1,0,5.8623939,0,50.43,51.02,-9,-9,6.666666666666667,1,1,0,0,13,9,4,1,285,457217.75,-85334.297,0,0,1891.4503 -10268,12657,22818,-9,22817,-9,1,0,18,0,0,0,1,1,1,0,5,0,0,0,0,0,-953.42023,-9,2,-9,2019,27,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,14.55,75.48,-9,-9,5,1,1,1,1,0,9,1,1,300,-48084.293,0,0,0,0 -10269,12658,22819,22820,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.5971842,7.7440825,7.2204342,39,-2,93.354195,0,3,2,2019,10,0,12,22,1,0,0,9.8908024,9.8908024,0,0,0,0,2,0,0,0,0,7.4337311,55.19,54.26,57.16,56.15,6.666666666666667,1,1,0,0,9,9,4,1,786.5,564920.75,196867.59,217763.69,13358.954,3243.5386 -10269,12658,22820,22819,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.3564034,8.4114332,0,38,2,37.603569,0,2,2,2019,6,0,20,30,1,0,0,27.133259,27.133259,0,0,0,0,2,0,0,0,3.6241477,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,9,9,4,1,786.5,564920.75,196867.59,217763.69,13358.954,3243.5386 -10270,12659,22821,22822,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,16,6,85.241768,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,46,63.38,53.47,7,1,1,0,0,0,12,2,0,1117.5,730984.13,271707.44,153273.52,0,1406.8601 -10270,12659,22822,22821,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,5.7135305,5.7503152,11,-6,-82.203072,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.160635,5.3060179,63.38,53.47,52,46,8.333333333333334,1,1,0,0,7,12,2,0,1117.5,730984.13,271707.44,153273.52,0,1406.8601 -10271,12660,22823,22824,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3185492,7.3613267,1,4,24.831583,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0749743,7.0893292,55.43,45.88,60.02,56.42,8.333333333333334,1,1,0,0,0,6,2,1,817.5,703553.5,518866.09,106424.38,0,2716.9165 -10271,12660,22824,22823,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,5.8792138,5.7363124,1,-4,99.066612,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0385046,5.7440429,60.02,56.42,55.43,45.88,10,1,1,0,0,0,6,2,1,817.5,703553.5,518866.09,106424.38,0,2716.9165 -10272,12661,22825,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1083.4646,0,2,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,22.54,60.65,-9,-9,0,1,1,1,1,0,1,1,0,245,0,0,0,0,177.80466 -10273,12662,22826,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.1623163,8.3547125,0,0,0,-1001.2094,0,2,2,2019,12,0,38,35,1,0,0,14.198668,14.198668,0,0,0,0,0,1,1,0,0,0,41.28,50.08,-9,-9,6.666666666666667,1,1,0,0,10,12,4,0,746,74886.125,85297.016,93697.406,68443.242,1398.2727 -10274,12663,22827,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.8034005,5.4941077,0,0,-1041.0067,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,5.551332,42.5,25.25,-9,-9,6.666666666666667,1,1,0,1,0,13,2,0,911,184139.67,196977.95,0,0,574.02142 -10275,12664,22828,22829,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.586771,7.6780815,7.2760139,31,-6,53.562958,0,3,3,2019,8,0,4,5,1,0,0,18.980536,18.980536,0,0,0,0,0,1,1,0,7.4442682,7.2657971,42.29,51.8,55.79,52.62,10,1,1,0,0,10,4,3,1,1111,423312.5,115050.86,185662.44,0,2934.2944 -10275,12664,22829,22828,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.4515862,7.398622,10,6,56.842094,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3457322,55.79,52.62,42.29,51.8,10,1,1,0,0,4,4,3,1,1111,423312.5,115050.86,185662.44,0,2934.2944 -10276,12665,22830,-9,22832,22831,1,0,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1026.2339,0,3,3,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.79,33.86,-9,-9,3.333333333333333,2,3,1,1,0,8,1,1,434,129337.33,0,0,0,1507.3744 -10276,12666,22831,22832,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,7,8,0,0,-9,-9,2019,30,12,0,0,4,12,0,0,0,1,0,40.096138,0,0,1,1,0,0,0,16.04,23.99,22.7,26.42,3.333333333333333,2,3,0,1,0,8,1,1,1432.5,-64080.938,0,143057.31,0,1367.4901 -10276,12666,22832,22831,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,41,-8,0,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,0,27.47117,0,14.5,1,1,0,0,0,22.7,26.42,16.04,23.99,1.666666666666667,2,3,0,1,0,8,1,1,1432.5,-64080.938,0,143057.31,0,1367.4901 -10277,12667,22833,22834,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,51,0,-63.674305,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.35,51,45.49,58.84,8.333333333333334,1,1,0,0,7,7,2,1,914.5,713497.94,282911.34,491654.94,0,1547.1453 -10277,12667,22834,22833,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2044911,6.9053283,51,0,65.464279,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.1017084,7.0224104,45.49,58.84,56.35,51,10,1,1,0,0,6,7,2,1,914.5,713497.94,282911.34,491654.94,0,1547.1453 -10278,12668,22835,-9,22836,-9,1,1,50,0,0,0,3,3,-9,0,3,7.6725922,7.7716355,0,0,0,-1008.0142,0,3,3,2019,6,0,45,55,1,0,0,6.0390797,6.0390797,0,0,0,0,0,1,1,0,2.6561217,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,1,3,0,551,371119.22,66879.102,0,0,540.17029 -10278,12669,22836,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.569,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,5.0861702,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,0,125,-111968.38,0,0,0,827.44843 -10279,12670,22837,22838,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.2952228,6.2414103,41,-4,70.373833,0,3,3,2019,11,0,0,18,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2609863,6.2581282,53.14,20.41,58.32,50.22,6.666666666666667,1,1,0,0,11,1,2,0,471.5,1190346.5,280724,351014,0,2796.3208 -10279,12670,22838,22837,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3770199,6.8400164,10,4,-33.407394,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.7787776,6.7276268,58.32,50.22,53.14,20.41,8.333333333333334,1,1,0,0,0,1,2,0,471.5,1190346.5,280724,351014,0,2796.3208 -10280,12671,22839,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.012166,8.0212822,0,0,0,-1019.3719,0,2,-9,2019,4,0,15,20,1,0,0,21.476128,21.476128,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,2351,0,0,0,0,1631.1825 -10281,12672,22840,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.9669924,6.071568,0,0,-939.78296,0,2,2,2019,13,2,0,0,4,2,0,0,0,1,0,5.962234,.097285651,0,1,1,0,5.3693299,6.3635654,51.22,41.36,-9,-9,5,1,1,0,0,0,6,2,1,91,175692.53,-21065.381,145175.09,0,1066.6967 -10282,12673,22841,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,8.4750671,8.2583952,0,0,-1050.1285,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,8.1941071,0,0,1,1,0,4.9783854,8.1666422,31.33,24.93,-9,-9,3.333333333333333,1,1,0,0,0,12,4,0,1387,1121288.5,631550.63,190668.16,0,4054.2087 -10283,12674,22842,22843,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.3140087,5.6817417,7,20,6.6175628,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,6.2420869,1.4121652,7,1,1,0,0,5.7125492,48.03,34.7,33.86,41.78,10,1,1,0,0,0,5,2,1,452,285619.19,137665.03,225054.8,0,1265.7219 -10283,12674,22843,22842,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,7,-20,-82.324196,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.86,41.78,48.03,34.7,6.666666666666667,1,1,0,1,0,5,2,1,452,285619.19,137665.03,225054.8,0,1265.7219 -10283,12675,22844,-9,22843,22842,1,0,22,0,0,0,2,2,-9,0,4,7.1923137,6.7906265,0,0,0,-871.09015,0,2,3,2019,13,1,30,30,1,1,0,5.8270431,5.8270431,0,0,0,0,14.5,1,1,0,0,0,45.41,50.66,-9,-9,6.666666666666667,1,1,0,0,3,5,2,1,478,-89453.828,0,0,0,345.14087 -10284,12676,22845,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,0,0,-993.31592,0,2,2,2019,7,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,7.7107401,0,60.03,45.37,-9,-9,10,1,1,0,0,11,1,1,1,212,299808.84,150356.97,0,0,1918.5814 -10285,12677,22846,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.140563,8.2521963,0,0,0,-1136.6169,0,1,1,2019,9,1,45,50,1,1,0,11.303452,11.303452,0,0,0,0,0,0,0,0,9.1382761,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,1479,456442.25,136454.03,603103.75,250331.11,4602.377 -10286,12678,22847,22848,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,6.9310074,7.2174745,27,-12,6.051908,0,1,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,8.9870138,7.2599983,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,5,9,4,1,250,1844811.8,1405323.5,416676.47,0,5799.3477 -10286,12678,22848,22847,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.8296738,8.0131865,3,12,-175.24953,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1650343,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,9,9,4,1,250,1844811.8,1405323.5,416676.47,0,5799.3477 -10287,12679,22849,22850,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.6594543,6.8838949,48,2,1.2730118,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4185143,6.7727227,54.96,53.17,46.39,60.99,8.333333333333334,1,1,0,0,0,6,3,0,865.5,1393228.3,602558.5,158738.3,0,2907.7285 -10287,12679,22850,22849,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.7668524,7.8331456,48,-2,-115.27676,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,6.780158,7.879952,46.39,60.99,54.96,53.17,6.666666666666667,1,1,0,0,4,6,3,0,865.5,1393228.3,602558.5,158738.3,0,2907.7285 -10288,12680,22851,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8804879,7.1290956,0,0,-1140.4972,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8032937,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,3115,-15664.83,58519.625,0,0,1392.1688 -10289,12681,22852,22853,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.2925215,7.5609031,34,14,1.4325635,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.5119634,55.96,49.93,46.57,46.63,8.333333333333334,1,1,0,0,10,9,3,1,1181,949124.31,651336.38,417986.53,0,2708.6128 -10289,12681,22853,22852,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,6.7349224,7.1318889,4.5821486,34,-14,-9.5786324,0,2,2,2019,13,2,35,6,1,2,0,2.7353508,2.7353508,0,0,0,0,0,1,1,0,4.925694,4.67519,46.57,46.63,55.96,49.93,6.666666666666667,1,1,0,0,8,9,3,1,1181,949124.31,651336.38,417986.53,0,2708.6128 -10290,12682,22854,22857,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.0431509,7.8994145,0,11,-8,56.189068,0,2,2,2019,21,9,23,23,1,9,0,15.606367,15.606367,0,0,0,0,0,1,1,0,0,0,37.42,48.97,50.79,48.24,6.666666666666667,1,1,0,0,13,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 -10290,12682,22855,-9,22854,22857,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.0432,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 -10290,12682,22856,-9,22854,22857,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.7402,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 -10290,12682,22857,22854,-9,-9,1,1,47,0,3,0,2,2,-9,0,4,8.4438963,8.218914,0,11,8,102.80918,0,2,2,2019,12,3,41,41,1,3,0,15.222487,15.222487,0,0,0,0,7,1,1,0,2.9569204,0,50.79,48.24,37.42,48.97,6.666666666666667,1,1,0,0,13,7,4,1,671,554191.13,205300.59,598555.38,254042.05,3303.9041 -10291,12683,22858,22859,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.5403962,7.1337261,49,1,-24.453972,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.930141,7.3569589,46.63,59.72,53.93,28.14,10,1,1,0,0,0,6,2,1,1444,939588.94,341745.13,285291.28,0,1617.72 -10291,12683,22859,22858,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,49,-1,-168.15355,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.93,28.14,46.63,59.72,8.333333333333334,1,1,0,0,0,6,2,1,1444,939588.94,341745.13,285291.28,0,1617.72 -10292,12684,22860,-9,22862,22861,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1000.3321,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,2186,308882.94,12364.262,0,0,5967.7119 -10292,12684,22861,22862,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,9.1761675,8.9948235,0,8,0,58.385429,0,2,2,2019,10,1,59,40,1,1,0,19.648886,19.648886,0,0,0,0,0,1,1,0,0,0,55.12,42.1,42.38,49.16,8.333333333333334,1,1,0,0,9,7,5,1,2186,308882.94,12364.262,0,0,5967.7119 -10292,12684,22862,22861,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.9148445,8.7246599,0,8,0,29.859472,0,2,3,2019,20,6,50,59,1,6,0,13.343819,13.343819,0,0,0,0,0,1,1,0,1.1139799,0,42.38,49.16,55.12,42.1,6.666666666666667,1,1,0,0,9,7,5,1,2186,308882.94,12364.262,0,0,5967.7119 -10292,12685,22863,-9,22862,22861,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-890.15369,-9,1,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.60417688,0,45.34,57.55,-9,-9,6.666666666666667,1,1,0,0,1,7,1,1,929,0,0,0,0,-68.473923 -10293,12686,22864,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,3.4192436,3.7753487,0,0,-990.55341,0,3,-9,2019,17,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,3.494678,40.38,34.42,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,212,231573.61,0,0,0,1505.3636 -10294,12687,22865,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.6231751,6.7633452,0,0,-1053.455,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.9771864,0,0,1,1,0,0,6.8556685,57.25,47.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,447,480352.03,-1537.4199,181611.58,0,799.56415 -10295,12688,22866,22867,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.9725733,6.7287707,56,-3,-87.653122,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,3.9297173,7.2306662,55.36,51.57,44.9,32.45,6.666666666666667,1,1,0,1,9,4,2,1,564,238682.09,40020.609,83078.781,0,1110.9551 -10295,12688,22867,22866,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,56,3,119.42872,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,12.107881,0,0,1,1,0,0,0,44.9,32.45,55.36,51.57,3.333333333333333,1,1,0,1,7,4,2,1,564,238682.09,40020.609,83078.781,0,1110.9551 -10296,12689,22868,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,8.1472387,7.8381877,4.2756782,0,0,-855.79492,0,-9,-9,2019,24,10,37,37,1,10,0,13.590545,13.590545,0,0,0,0,0,1,1,0,6.9643679,0,14.32,55.81,-9,-9,6.666666666666667,1,1,0,0,4,12,4,0,539,71755.945,0,0,0,1646.3251 -10297,12690,22869,22872,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,6.9320693,7.0923066,0,5,-5,-5.1450095,0,2,1,2019,1,0,23,20,1,0,0,4.6941333,4.6941333,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.45,43.74,8.333333333333334,1,1,0,0,6,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 -10297,12690,22870,-9,22869,22872,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.7155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 -10297,12690,22871,-9,22869,22872,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.4319,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 -10297,12690,22872,22869,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.1300049,8.2520342,0,5,5,36.728508,0,2,2,2019,9,0,42,41,1,0,0,9.1386137,9.1386137,0,0,0,0,0,1,1,0,0,0,57.45,43.74,57.16,56.15,0,1,1,0,0,4,2,3,1,1169,-36257.242,30888.285,0,0,2793.3403 -10298,12691,22873,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,1,0,6.8162465,6.5362711,0,0,-940.31274,-9,1,1,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,6.3935266,0,27.17,44.65,-9,-9,3.333333333333333,4,2,0,0,0,8,2,1,506,40951.398,0,0,0,47.93848 -10299,12692,22874,-9,-9,-9,1,0,55,0,1,0,3,3,-9,0,4,7.9308062,8.066988,0,0,0,-999.65784,0,-9,-9,2019,11,0,32,32,1,0,0,9.9146481,9.9146481,0,0,0,0,14.5,1,1,0,0,0,52.77,55.33,-9,-9,5,1,1,0,0,8,4,3,1,464,36208.848,-7110.6055,168215.22,0,1648.2283 -10299,12692,22875,-9,22874,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.0078,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,4,3,1,464,36208.848,-7110.6055,168215.22,0,1648.2283 -10300,12693,22876,22877,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6064606,8.5972576,0,30,0,-36.57703,0,2,3,2019,9,0,65,107,1,0,0,9.0006075,9.0006075,0,0,0,0,0,0,0,0,2.5103343,0,54.45,56.22,57.06,57.76,6.666666666666667,1,1,0,0,10,4,5,1,464.5,844067.13,443575.88,396209.69,2560.0132,4713.0313 -10300,12693,22877,22876,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.5939426,8.2073374,0,8,0,92.456108,0,-9,-9,2019,8,0,40,60,1,0,0,16.297871,16.297871,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.45,56.22,8.333333333333334,1,1,0,0,10,4,5,1,464.5,844067.13,443575.88,396209.69,2560.0132,4713.0313 -10301,12694,22878,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.875226,8.2030001,0,0,0,-990.31274,0,2,3,2019,19,7,38,30,1,7,0,8.1897345,8.1897345,0,0,0,0,0,0,0,0,0,0,48.99,43.66,-9,-9,6.666666666666667,1,1,0,1,3,12,4,1,1702,-212556.17,-59830.445,0,0,1362.5905 -10302,12695,22879,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-982.56335,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.75,22.16,-9,-9,10,1,1,0,0,0,13,1,1,649,478799.13,0,146852.55,0,905.41644 -10303,12696,22880,22881,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.062974,7.1891713,47,1,18.990826,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.2562157,6.9647074,51.96,43.81,52.91,55.33,8.333333333333334,1,1,0,0,5,6,3,1,1505.5,1046811.1,583496.31,323500.75,0,1491.7784 -10303,12696,22881,22880,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.6324806,6.837213,47,-1,-55.544136,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9452171,6.1400485,52.91,55.33,51.96,43.81,8.333333333333334,1,1,0,0,5,6,3,1,1505.5,1046811.1,583496.31,323500.75,0,1491.7784 -10304,12697,22882,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.9131889,9.3263235,0,0,0,-1062.1523,0,1,2,2019,5,0,48,44,1,0,0,29.005722,29.005722,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,1684,1408031,718956.31,0,0,3330.9707 -10305,12698,22883,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-856.91223,0,2,3,2019,9,0,0,0,4,1,0,0,0,1,0,22.212999,0,0,1,1,0,3.1480849,0,54,43,-9,-9,8,1,1,0,0,0,7,1,0,2945,-4833.6729,0,0,0,393.37677 -10306,12699,22884,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.299551,7.9836116,0,0,-960.78326,0,-9,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0871401,57.34,47.92,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1230,1231975.1,448073.5,304952.06,0,3154.3284 -10307,12700,22885,22887,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.9596195,9.1923094,0,7,3,7.8304768,0,-9,-9,2019,4,0,39,39,1,0,0,24.398932,24.398932,0,0,0,0,0,1,1,0,4.7023168,0,62.49,55.09,54.73,32.88,8.333333333333334,2,3,0,0,9,8,5,1,866.66669,192459.66,66412.797,178011.53,47178.785,3852.1541 -10307,12700,22886,-9,22887,22885,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-999.71161,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.59,49.89,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,866.66669,192459.66,66412.797,178011.53,47178.785,3852.1541 -10307,12700,22887,22885,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.1338592,7.3088465,0,33,-3,21.536381,0,3,3,2019,11,0,16,17,1,0,0,10.192615,10.192615,0,0,0,0,0,1,1,0,3.3664167,0,54.73,32.88,62.49,55.09,8.333333333333334,2,3,0,0,9,8,5,1,866.66669,192459.66,66412.797,178011.53,47178.785,3852.1541 -10307,12701,22888,-9,22887,22885,1,0,22,0,0,0,1,1,-9,0,4,8.3452883,8.5369425,0,0,0,-1011.433,0,2,2,2019,10,0,41,41,1,0,1,11.525398,11.525398,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,2,8,4,1,326,385056.16,0,0,0,1831.3618 -10307,12702,22889,-9,22887,22885,1,0,23,0,0,0,1,1,-9,0,5,8.1213913,7.7436762,0,0,0,-1074.5558,0,2,2,2019,11,0,48,37,1,0,1,6.9361348,6.9361348,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,2,8,4,1,4802,48765.566,0,0,0,1732.8822 -10308,12703,22890,22891,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,8.6237335,8.2733946,57,5,-1.1214551,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6350216,8.070118,59.33,51.29,48.97,47.62,8.333333333333334,1,1,0,0,0,1,4,1,3244.5,1333145.9,330921.63,379005.72,0,3502.251 -10308,12703,22891,22890,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,0,0,57,-5,-87.551018,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5773435,0,48.97,47.62,59.33,51.29,10,1,1,0,0,11,1,4,1,3244.5,1333145.9,330921.63,379005.72,0,3502.251 -10309,12704,22892,22893,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4099407,6.3037748,55,1,-98.656479,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5079303,6.8028169,48.85,42.66,54.03,47.14,6.666666666666667,1,1,0,0,0,10,2,1,1220.5,341663.69,121564.22,185400.59,0,2494.3467 -10309,12704,22893,22892,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.4897752,6.661377,55,-1,52.430996,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.662744,6.2951832,54.03,47.14,48.85,42.66,10,1,1,0,0,0,10,2,1,1220.5,341663.69,121564.22,185400.59,0,2494.3467 -10310,12705,22894,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.7142448,8.4742727,0,0,-945.22723,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4517322,8.6073723,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,1635,1317358.8,927650.06,303471.47,0,4627.3906 -10311,12706,22895,22897,-9,-9,1,0,47,0,2,0,2,2,-9,1,4,0,0,0,4,0,0,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.2,57.49,41.29,24.56,8.333333333333334,1,1,0,0,0,1,1,1,757.66669,131615.94,0,130376.06,-6986.1807,1880.9479 -10311,12706,22896,-9,22895,22897,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.8091,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,1,1,757.66669,131615.94,0,130376.06,-6986.1807,1880.9479 -10311,12706,22897,22895,-9,-9,1,1,47,0,2,0,2,2,-9,1,1,0,0,0,4,0,0,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.29,24.56,54.2,57.49,8.333333333333334,1,1,0,0,10,1,1,1,757.66669,131615.94,0,130376.06,-6986.1807,1880.9479 -10312,12707,22898,22899,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,9.0312576,9.1686287,0,2,4,53.054268,0,-9,-9,2019,26,10,60,60,1,10,0,13.83456,13.83456,0,0,0,0,0,0,0,0,0,0,28.81,62.74,39.26,57.46,3.333333333333333,1,1,0,0,4,9,5,1,1293.5,-2306.5938,120041.47,50196.223,65714.313,4390.4741 -10312,12707,22899,22898,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,7.1504593,7.4955478,0,2,-4,-68.98941,0,3,2,2019,20,9,45,46,1,9,0,2.8681519,2.8681519,0,0,0,0,0,0,0,0,2.4535959,0,39.26,57.46,28.81,62.74,3.333333333333333,2,3,0,0,5,9,5,1,1293.5,-2306.5938,120041.47,50196.223,65714.313,4390.4741 -10313,12708,22900,-9,22903,22902,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.19092,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 -10313,12708,22901,-9,22903,22902,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.63727,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 -10313,12708,22902,22903,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,6.5760489,6.5167542,0,4,3,-106.95181,0,2,2,2019,9,0,38,55,1,0,0,2.1185601,2.1185601,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.67,55.57,6.666666666666667,1,1,0,0,7,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 -10313,12708,22903,22902,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.7318892,7.9261208,0,4,-3,118.61352,0,1,1,2019,12,1,31,0,1,1,0,9.2661209,9.2661209,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.06,57.76,8.333333333333334,1,1,0,0,3,10,3,1,840.25,654472.63,500859.63,44007.523,27290.035,1337.2539 -10314,12709,22904,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.7485394,7.8847914,0,0,0,-970.75598,0,3,-9,2019,7,0,70,35,1,0,0,3.4395747,3.4395747,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,100,192345.27,209410.86,163577.38,0,416.42496 -10315,12710,22905,22907,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,8.6598701,8.6102877,0,7,-15,-123.48574,0,2,3,2019,19,7,48,54,1,7,0,16.407417,16.407417,0,0,0,0,0,1,1,0,0,0,40.61,64.02,57.06,57.76,3.333333333333333,1,1,0,1,9,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 -10315,12710,22906,-9,22905,22907,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.93109,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 -10315,12710,22907,22905,-9,-9,1,1,56,1,2,0,2,2,-9,0,5,6.5861454,6.7219415,0,7,15,-37.148064,0,2,-9,2019,6,0,30,25,1,0,0,3.4438119,3.4438119,0,0,0,0,0,1,1,0,0,0,57.06,57.76,40.61,64.02,8.333333333333334,4,2,0,0,8,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 -10315,12710,22908,-9,22905,22907,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.60883,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,758.5,560653.81,223079.78,256922.19,0,2756.3484 -10316,12711,22909,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1045.4028,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,2.3638682,0,14.5,1,1,0,0,0,52.97,54.31,-9,-9,10,1,1,0,0,0,7,1,0,862,127742.11,0,0,0,2344.5012 -10316,12712,22910,-9,22909,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-977.09064,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.11,30.16,-9,-9,5,1,1,0,0,0,7,1,0,2196,-28470.717,0,0,0,1279.7241 -10317,12713,22911,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,8.1499767,7.6887584,0,0,0,-1047.5745,0,-9,-9,2019,32,12,52,46,1,12,0,6.6160836,6.6160836,0,0,0,0,0,0,0,0,0,0,28.98,53.63,-9,-9,3.333333333333333,1,1,0,1,8,6,4,0,888,-384110.34,-71745.281,0,0,2058.7021 -10317,12714,22912,-9,22911,-9,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-914.56665,-9,3,-9,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,28,52.45,-9,-9,5,1,1,0,0,0,6,1,0,174,333328.13,0,0,0,0 -10318,12715,22913,22914,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.7519789,9.0011196,0,13,4,-5.9417958,0,2,2,2019,7,0,45,55,1,0,0,13.769196,13.769196,0,0,0,0,0,0,0,0,.323477,0,51.24,58.84,51.27,45.41,8.333333333333334,1,1,0,0,9,10,5,1,910.5,801509.25,820051.5,140172.94,150730.89,3875.8809 -10318,12715,22914,22913,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.2842875,8.3130341,0,13,-4,165.80273,0,-9,2,2019,7,0,37,38,1,0,0,11.031035,11.031035,0,0,0,0,0,0,0,0,0,0,51.27,45.41,51.24,58.84,6.666666666666667,1,1,0,0,10,10,5,1,910.5,801509.25,820051.5,140172.94,150730.89,3875.8809 -10319,12716,22915,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.5301266,8.3965139,0,0,0,-985.70001,-9,3,2,2019,6,0,35,0,1,0,0,15.559076,15.559076,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,1055,-35123.098,-59177.23,0,0,2036.6179 -10319,12716,22916,-9,22915,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1070.882,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,1055,-35123.098,-59177.23,0,0,2036.6179 -10319,12717,22917,-9,22915,-9,1,0,24,0,1,0,2,2,-9,0,4,8.3016129,8.2542181,0,0,0,-1042.3875,-9,2,3,2019,10,0,50,0,1,0,1,8.3199434,8.3199434,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,7,2,4,1,2607,-50916.57,-46788.508,0,0,1693.4502 -10320,12718,22918,22919,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.031209,8.8197374,0,26,0,-92.886116,0,2,1,2019,7,0,53,42,1,0,0,18.615002,18.615002,0,0,0,0,0,0,0,0,3.106385,0,57.06,57.76,55.36,51.57,8.333333333333334,1,1,0,0,9,10,5,1,1036.5,1075013,601184.63,0,0,3359.8628 -10320,12718,22919,22918,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,5.3054895,5.1581392,0,26,0,-35.431099,0,3,2,2019,7,0,6,40,1,0,0,2.7013116,2.7013116,0,0,0,0,0,0,0,0,.9470225,0,55.36,51.57,57.06,57.76,10,1,1,0,0,2,10,5,1,1036.5,1075013,601184.63,0,0,3359.8628 -10320,12719,22920,-9,22919,22918,1,1,19,0,0,1,2,0,0,0,5,0,5.9127073,5.6670246,0,0,-1201.0917,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,5.9533305,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,427,71834.844,0,0,0,247.10223 -10321,12720,22921,22922,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.0996637,8.3179541,3.8083484,43,-1,-39.297195,0,3,3,2019,10,0,48,50,1,0,0,9.8233709,9.8233709,0,0,0,0,0,0,0,0,4.5678759,0,55.51,51.57,49.99,29.69,6.666666666666667,2,3,0,0,7,5,3,0,1690,433985.78,180689.63,144195.58,0,1612.5057 -10321,12720,22922,22921,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,4.757338,5.1047416,44,1,64.517891,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,4.7914157,49.99,29.69,55.51,51.57,6.666666666666667,2,3,0,0,4,5,3,0,1690,433985.78,180689.63,144195.58,0,1612.5057 -10322,12721,22923,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,6.891118,7.2002764,0,0,0,-1079.1104,0,3,3,2019,6,0,20,18,1,0,0,6.5606728,6.5606728,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,9,6,2,0,522,355982.97,77049.445,134589.42,0,1293.6193 -10322,12722,22924,-9,22923,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1129.1676,-9,3,-9,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,6,1,0,255,0,0,0,0,0 -10323,12723,22925,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.7365012,4.4858804,0,0,-958.32397,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,4.1372871,47.21,55.3,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,234,648589.31,0,255119.36,0,570.66797 -10324,12724,22926,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.5246425,7.2858691,0,0,-851.83984,0,2,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0389314,7.8260016,56.9,49.4,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,351,228050.42,400632.31,211843.5,0,1912.8383 -10325,12725,22927,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,8.6605778,8.6139612,0,0,0,-1167.2628,0,2,2,2019,12,0,37,37,1,0,0,15.158413,15.158413,0,0,0,0,0,0,0,0,5.2884679,0,43,39,-9,-9,5,1,1,0,0,8,6,5,0,367,198782.36,65468.129,7831.3467,79711.305,2080.9626 -10326,12726,22928,22929,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,4.4858356,4.1151195,50,3,58.953976,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0054502,4.1068764,35.7,23.15,58.9,45.74,6.666666666666667,1,1,0,0,0,12,2,0,1713,0,0,0,0,1837.8093 -10326,12726,22929,22928,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,50,-3,-22.904335,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.9,45.74,35.7,23.15,8.333333333333334,1,1,0,0,0,12,2,0,1713,0,0,0,0,1837.8093 -10327,12727,22930,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.7220078,8.5883141,0,0,0,-923.27081,0,-9,-9,2019,11,0,47,38,1,0,0,15.176925,15.176925,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,503,-36883.371,149411.33,0,0,1988.285 -10328,12728,22931,22932,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8553109,8.2056112,0,30,-5,19.20409,0,2,1,2019,12,0,24,27,1,0,0,13.175428,13.175428,0,0,0,0,0,0,0,0,7.2707071,0,51.83,57.2,57.33,53.46,8.333333333333334,1,1,0,0,10,7,5,1,832.5,1546148.8,627161,697399.69,0,3910.3394 -10328,12728,22932,22931,-9,-9,1,1,59,0,0,0,1,1,1,0,3,0,8.483469,8.4113274,30,5,62.424358,-9,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.4696736,8.550107,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,832.5,1546148.8,627161,697399.69,0,3910.3394 -10328,12729,22933,-9,22931,22932,1,1,25,0,0,0,2,2,-9,0,4,8.6748886,8.7092314,0,0,0,-1223.0814,0,2,1,2019,9,0,41,45,1,0,1,14.873759,14.873759,0,0,0,0,0,0,0,0,3.7602117,0,52.37,56.93,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,665,-5807.7471,0,0,0,1463.5287 -10328,12730,22934,-9,22931,22932,1,1,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1011.4702,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.7885175,0,49.05,46.37,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,429,-36785.234,0,0,0,440.06726 -10328,12731,22935,-9,22931,22932,1,1,19,0,0,0,2,2,-9,0,3,7.4210396,7.075738,0,0,0,-1008.834,0,2,1,2019,19,6,30,0,1,6,1,4.6338115,4.6338115,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,3.333333333333333,1,1,0,1,1,7,3,1,474,-497027.38,0,0,0,1116.5289 -10329,12732,22936,22937,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.5786667,8.6440229,0,11,0,-105.44211,0,2,2,2019,21,7,30,30,1,7,0,17.438028,17.438028,0,0,0,0,0,1,1,0,0,0,42.85,60.33,51.73,58.82,8.333333333333334,1,1,0,0,9,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 -10329,12732,22937,22936,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,8.9585047,9.0016136,0,11,0,11.345731,0,2,2,2019,7,0,56,58,1,0,0,18.595446,18.595446,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.85,60.33,10,1,1,0,0,9,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 -10329,12732,22938,-9,22936,22937,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.6618,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 -10329,12732,22939,-9,22936,22937,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.8125,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,413,404109.91,-5821.894,632193.75,373063.63,4977.1143 -10330,12733,22940,22943,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,24,0,86.49189,0,3,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,30.01,47.2,42.19,8.333333333333334,2,3,0,0,0,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 -10330,12733,22941,-9,22940,22943,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1127.0614,-9,2,1,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,61.75,-9,-9,6.666666666666667,2,3,0,0,0,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 -10330,12733,22942,-9,22940,22943,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1042.8838,-9,2,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 -10330,12733,22943,22940,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,9.3424654,9.448266,0,24,9,33.793671,0,2,1,2019,20,7,35,40,1,7,0,28.791262,28.791262,0,0,0,0,0,1,1,0,0,0,47.2,42.19,51.94,30.01,5,2,3,0,1,8,8,4,0,620.5,446969.06,102693.51,586727.88,178348.97,4441.4829 -10331,12734,22944,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7491093,8.3579292,0,0,0,-1005.7446,0,-9,-9,2019,6,0,48,45,1,0,0,11.069638,11.069638,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,1,1,0,0,10,10,5,1,1729,4052471.5,3317044.8,127127.45,0,1667.2236 -10331,12735,22945,-9,-9,22944,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1044.2002,-9,-9,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,1,3,10,1,1,878,149565.33,0,0,0,99.268013 -10332,12736,22946,22947,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.5667181,8.5891027,0,6,-1,38.197212,0,-9,-9,2019,8,0,28,41,1,0,0,21.797155,21.797155,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.41,56.15,8.333333333333334,2,3,0,0,7,7,5,1,567,1703589.3,1443457,296194.03,70049.5,4659.4868 -10332,12736,22947,22946,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,9.2477713,9.3053942,0,6,1,89.392746,0,3,1,2019,11,1,37,37,1,1,0,24.378393,24.378393,0,0,0,0,0,0,0,0,6.1920543,0,51.41,56.15,54.2,57.49,8.333333333333334,2,3,0,0,8,7,5,1,567,1703589.3,1443457,296194.03,70049.5,4659.4868 -10333,12737,22948,-9,22949,22951,1,1,23,0,2,0,2,2,-9,0,5,7.5570846,7.6957097,0,0,0,-1008.3702,0,3,2,2019,8,0,42,52,1,0,1,6.6854544,6.6854544,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,5,3,1,208,124982.38,21487.871,0,0,1165.9189 -10333,12738,22949,22951,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,0,0,0,2,-6,77.312782,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,51.41,56.15,6.666666666666667,1,1,0,0,0,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 -10333,12738,22950,-9,22949,22951,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-901.31921,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 -10333,12738,22951,22949,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0859394,7.9790206,0,2,6,79.933624,0,3,3,2019,8,1,40,47,1,1,0,8.2206726,8.2206726,0,0,0,0,0,1,1,0,0,0,51.41,56.15,45.91,59.89,10,1,1,0,0,9,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 -10333,12738,22952,-9,22949,22951,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.54993,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,522,-15468.593,-29539.012,0,0,2117.072 -10333,12739,22953,-9,22949,22951,1,1,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1027.6957,0,3,2,2019,22,9,0,40,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,18.48,61.98,-9,-9,5,1,1,0,0,4,5,1,1,874,-4401.8608,0,0,0,0 -10334,12740,22954,22955,-9,-9,1,1,38,1,2,0,2,2,-9,1,3,0,0,0,7,6,-55.060192,0,-9,-9,2019,11,2,0,12,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,52,54.51,47,57,6.666666666666667,1,1,0,0,5,11,3,0,1015,166196,-24847.104,0,0,3108.21 -10334,12740,22955,22954,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.243495,8.2393961,0,7,-6,60.050571,0,2,3,2019,7,0,30,30,1,0,0,12.950123,12.950123,0,0,0,0,0,1,1,0,0,0,47,57,52,54.51,10,1,1,0,0,8,11,3,0,1015,166196,-24847.104,0,0,3108.21 -10334,12740,22956,-9,22955,22954,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.06134,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,1015,166196,-24847.104,0,0,3108.21 -10334,12740,22957,-9,22955,22954,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.0674,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,1015,166196,-24847.104,0,0,3108.21 -10335,12741,22958,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.3663588,7.4332533,0,0,-934.54553,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.238904,8.065093,56.52,48.31,-9,-9,10,1,1,0,0,0,12,3,1,2750,578548.81,151724.58,256376.47,0,1936.9948 -10336,12742,22959,22960,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.9950891,8.0841341,6.4324446,8,3,-112.11523,0,2,-9,2019,15,4,41,45,1,4,0,5.9391494,5.9391494,0,0,0,0,0,0,0,0,6.4099479,0,40.28,41.42,44.66,57.83,5,1,1,0,0,9,13,4,1,1023,-169162.78,-2225.501,226832.22,120171.41,3084.4751 -10336,12742,22960,22959,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.0295191,8.0712986,0,8,-3,-33.719696,0,2,3,2019,12,0,38,38,1,0,0,12.168006,12.168006,0,0,0,0,0,0,0,0,6.5295687,0,44.66,57.83,40.28,41.42,8.333333333333334,1,1,0,0,9,13,4,1,1023,-169162.78,-2225.501,226832.22,120171.41,3084.4751 -10337,12743,22961,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,5.4515262,5.3555074,0,0,-952.77881,0,3,-9,2019,23,11,0,0,4,11,0,0,0,1,.35690317,0,20.461769,0,1,1,0,0,4.9337673,39.76,23.87,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,361,188399.14,0,0,0,932.80792 -10337,12744,22962,-9,22961,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.8652239,5.993257,0,0,-988.06915,0,2,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.4314065,5.8979702,50.11,54.04,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,276,-210242.8,396287.38,21796.67,0,889.50793 -10338,12745,22963,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,6.0828538,6.2599554,0,0,-934.38239,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,8.1372652,4.9512691,73.471947,0,1,1,0,6.1206164,6.3228321,40.57,27.73,-9,-9,5,1,1,0,0,0,9,2,0,559,172283.89,132911.56,0,0,1531.2677 -10338,12746,22964,-9,-9,22963,1,1,54,0,0,0,2,2,-9,0,3,8.2633066,8.123683,0,0,0,-970.13153,0,-9,3,2019,8,0,40,40,1,0,0,10.03482,10.03482,0,0,0,0,2,1,1,0,0,0,55.96,49.93,-9,-9,3.333333333333333,1,1,0,0,12,9,4,0,305,-101970.37,0,0,0,2278.1528 -10339,12747,22965,22966,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3695717,8.3370752,9,1,-122.72025,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0994854,8.5917988,56.33,51.02,44.88,46.67,8.333333333333334,1,1,0,0,1,9,3,1,1798,1156870.1,728888,338417.91,0,3821.7173 -10339,12747,22966,22965,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,9,-1,43.850704,0,2,1,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.6198406,0,44.88,46.67,56.33,51.02,8.333333333333334,1,1,0,0,3,9,3,1,1798,1156870.1,728888,338417.91,0,3821.7173 -10340,12748,22967,22968,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.6191778,8.315588,0,7,1,-87.594322,0,-9,-9,2019,7,0,41,40,1,0,0,7.7212834,7.7212834,0,0,0,0,0,1,1,0,4.6391506,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,340.5,351910.56,124433.06,217210.25,0,1682.9688 -10340,12748,22968,22967,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,4.5817108,4.7289872,7,-1,-38.750786,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8457985,4.7467108,57.16,56.15,57.33,53.46,10,1,1,0,0,2,7,3,1,340.5,351910.56,124433.06,217210.25,0,1682.9688 -10341,12749,22969,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.3804398,7.540781,0,0,-921.36163,0,1,1,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,5.7529469,7.2058897,42.58,34.6,-9,-9,5,1,1,0,1,0,7,3,1,883,43025.531,256525.58,121066.19,0,1246.552 -10342,12750,22970,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,6.470705,6.4715495,0,0,-1075.194,0,3,3,2019,24,9,0,0,4,9,0,0,0,1,0,14.816333,0,0,1,1,0,4.9018636,6.3753519,44.19,18.11,-9,-9,5,1,1,0,0,0,4,2,1,1666,537213,0,165188.72,0,1239.1379 -10342,12751,22971,-9,22970,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.6930943,6.3502741,0,0,-1017.2426,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.0404849,6.6841602,47,38,-9,-9,5,1,1,0,0,0,4,2,1,1253,232715.3,98606.586,3145.1184,0,504.20813 -10343,12752,22972,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.5371218,9.2399588,0,0,0,-1028.5365,0,2,2,2019,6,0,48,53,1,0,0,28.341799,28.341799,0,0,0,0,0,0,0,0,5.8141203,0,57.06,57.76,-9,-9,10,1,1,0,0,12,6,5,1,1064,-25677.791,-40316.184,0,0,5373.6396 -10344,12753,22973,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.8264818,8.7988853,0,0,0,-1054.0347,0,-9,-9,2019,6,0,45,45,1,0,0,18.070007,18.070007,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,6,4,5,0,1479,-71014.773,0,0,0,2177.7925 -10345,12754,22974,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1078.0856,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.4997177,0,58.16,42.18,-9,-9,10,1,1,0,0,0,7,1,1,599,584091.31,0,590300.88,0,557.83954 -10346,12755,22975,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,9.1645641,9.1805639,3.4651544,0,0,-946.99475,0,2,2,2019,13,4,40,40,1,4,0,25.537357,25.537357,0,0,0,0,2,0,0,0,4.4432669,0,44.48,52.88,-9,-9,5,1,1,0,0,11,4,5,1,721,312449.63,309030.84,166523.92,61495.348,3547.0012 -10347,12756,22976,22977,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.2742915,6.9385228,0,33,-2,99.074524,0,2,2,2019,9,0,35,35,1,0,0,4.1010151,4.1010151,0,0,0,0,0,0,0,0,5.0201721,0,54,53,54.27,53.56,8,1,1,0,0,1,9,3,1,1622.5,363496.06,140692.38,255011.94,9765.2197,1322.8927 -10347,12756,22977,22976,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,7.0689635,6.9937401,0,33,2,-7.7468839,0,2,2,2019,6,0,17,15,1,0,0,6.7158775,6.7158775,0,0,0,0,0,0,0,0,4.6096387,0,54.27,53.56,54,53,8.333333333333334,1,1,0,0,11,9,3,1,1622.5,363496.06,140692.38,255011.94,9765.2197,1322.8927 -10347,12757,22978,-9,22977,22976,1,1,24,0,0,0,1,1,-9,0,4,7.764812,7.8818593,0,0,0,-1006.1287,0,1,2,2019,10,0,35,0,1,1,1,8.336688,8.336688,0,0,0,0,0,0,0,0,1.3530002,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,194,-7205.2017,0,0,0,1430.0385 -10347,12758,22979,-9,22977,22976,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1043.6395,-9,1,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.5763297,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,287,-20896.74,0,0,0,106.48449 -10348,12759,22980,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1123.5038,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,36.9,-9,-9,5,1,1,0,1,0,13,1,0,843,48152.258,-119545.35,0,0,69.282326 -10349,12760,22981,22982,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.564887,8.3328876,0,4,0,34.201035,0,-9,-9,2019,6,0,37,40,1,0,0,13.366719,13.366719,0,0,0,0,0,0,0,0,0,0,55.34,54.26,57.33,53.46,8.333333333333334,1,1,0,0,7,4,5,1,1054.5,149661.91,109308.91,169737.31,122518.28,3219.626 -10349,12760,22982,22981,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.1547461,8.1401587,0,4,0,17.026537,0,2,2,2019,5,0,40,39,1,0,0,9.0763493,9.0763493,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.34,54.26,8.333333333333334,4,2,0,0,11,4,5,1,1054.5,149661.91,109308.91,169737.31,122518.28,3219.626 -10350,12761,22983,22984,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,45,-1,-157.87669,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6679382,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,0,13,4,1,991,1842798.9,623772.13,142207.16,0,3187.3403 -10350,12761,22984,22983,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.6524286,8.4130764,45,1,-107.65562,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6302047,8.0012054,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,5,13,4,1,991,1842798.9,623772.13,142207.16,0,3187.3403 -10351,12762,22985,22986,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,0,0,0,6,-16,-47.399235,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,52.13,54.7,10,1,1,1,0,4,11,3,1,811,846735,902911.44,0,0,1218.8049 -10351,12762,22986,22985,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.3747263,8.0790901,0,6,16,93.051178,0,-9,-9,2019,6,1,60,40,1,1,0,7.0146332,7.0146332,0,0,0,0,14.5,0,0,0,0,0,52.13,54.7,51.24,58.84,10,1,1,0,0,11,11,3,1,811,846735,902911.44,0,0,1218.8049 -10352,12763,22987,-9,22988,22989,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.32001,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1303,-6028.813,0,0,0,2639.3889 -10352,12763,22988,22989,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.5619802,7.2085404,0,5,0,31.497801,0,-9,-9,2019,10,2,22,22,1,2,0,9.575758,9.575758,0,0,0,0,0,1,1,0,0,0,48.77,51.79,25.07,65.78,8.333333333333334,1,1,0,0,5,6,4,1,1303,-6028.813,0,0,0,2639.3889 -10352,12763,22989,22988,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,8.4412031,8.7594433,0,5,0,32.577698,0,2,2,2019,25,9,38,48,1,9,0,14.790735,14.790735,0,0,0,0,0,1,1,0,0,0,25.07,65.78,48.77,51.79,1.666666666666667,1,1,0,0,8,6,4,1,1303,-6028.813,0,0,0,2639.3889 -10353,12764,22990,22991,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0241537,8.0867672,37,-5,-48.21838,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8859296,8.2891541,51.3,50.72,57.16,56.15,8.333333333333334,1,1,0,0,5,6,3,1,809,6746156,1506931.5,528822.5,0,3234.0332 -10353,12764,22991,22990,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.9893146,5.1714053,36,5,-30.127863,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.597939,5.1788459,57.16,56.15,51.3,50.72,10,1,1,0,0,0,6,3,1,809,6746156,1506931.5,528822.5,0,3234.0332 -10354,12765,22992,22993,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5957985,8.5700302,0,1,-5,15.778659,-9,-9,-9,2019,11,0,35,0,1,2,0,16.140036,16.140036,0,0,0,0,0,0,0,0,0,0,48,57,54.2,57.49,7,4,4,0,0,1,8,4,0,1116,253023.41,15290.396,0,0,2162.2007 -10354,12765,22993,22992,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,0,0,0,1,5,68.059082,1,1,2,2019,10,0,0,21,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,57,8.333333333333334,3,4,0,0,9,8,4,0,1116,253023.41,15290.396,0,0,2162.2007 -10355,12766,22994,22995,-9,-9,1,1,27,0,0,0,3,3,-9,0,5,8.0343924,7.9339166,0,3,3,-29.42004,0,-9,-9,2019,6,0,40,40,1,0,0,10.795768,10.795768,0,0,0,0,2,0,0,0,0,0,59.43,58.05,62.39,56.71,10,1,1,0,0,4,11,4,0,432,-12278.781,-8077.6533,0,0,2432.1338 -10355,12766,22995,22994,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.2114391,8.0607777,0,3,-3,50.902763,0,-9,-9,2019,6,0,48,32,1,0,0,8.1374788,8.1374788,0,0,0,0,0,0,0,0,0,0,62.39,56.71,59.43,58.05,8.333333333333334,1,1,0,0,6,11,4,0,432,-12278.781,-8077.6533,0,0,2432.1338 -10356,12767,22996,22997,-9,-9,1,0,64,0,0,0,3,3,-9,1,1,0,7.710753,7.7382646,8,-14,115.63346,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,7.8478074,54.99,17.61,51.17,39.65,8.333333333333334,1,1,0,0,0,10,3,1,256.5,1152281.8,490490.13,359353.97,0,2402.6758 -10356,12767,22997,22996,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.9646082,5.8553805,30,14,-78.063179,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,1.0230972,6.0905108,51.17,39.65,54.99,17.61,5,1,1,0,0,0,10,3,1,256.5,1152281.8,490490.13,359353.97,0,2402.6758 -10357,12768,22998,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-778.87268,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,1,15.53647,120.49041,129.66077,7,1,1,0,0,0,30.84,27.65,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,154,-45869.434,0,0,0,793.09082 -10357,12769,22999,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,5.1342454,5.1815209,0,0,0,-1048.587,0,-9,-9,2019,10,0,60,40,1,1,0,.42486003,.42486003,0,0,0,0,0,1,1,0,3.5130527,0,51,49,-9,-9,7,1,1,0,0,1,4,2,0,569,-303051.53,46091.172,0,0,-556.96027 -10358,12770,23000,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.170948,7.9199896,0,0,0,-1000.003,0,2,2,2019,9,0,39,0,1,0,0,9.0171051,9.0171051,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,6,6,4,0,990,234159.81,-34768.715,0,0,1659.8634 -10359,12771,23001,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,7.9420228,7.9472528,0,0,0,-908.41632,-9,-9,-9,2019,3,0,49,0,1,0,0,6.8681965,6.8681965,0,0,0,0,0,0,0,0,.23317213,0,55.09,55.87,-9,-9,10,1,1,0,0,8,9,4,1,1891,-660534.56,0,0,0,1161.9861 -10360,12772,23002,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.1793,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,11,1,0,350,205871.52,141956.52,212939.92,0,1290.9369 -10360,12773,23003,-9,23002,-9,1,1,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1048.3455,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,56.04,35.23,-9,-9,10,1,1,0,0,0,11,1,0,266,0,0,0,0,778.67419 -10361,12774,23004,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,1,0,7.6171732,7.4103904,0,0,-1021.2144,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2693186,7.3749394,40.43,34.66,-9,-9,3.333333333333333,1,1,0,0,2,5,3,1,378,488039.81,356868.09,313710.28,0,1133.5699 -10362,12775,23005,23006,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.451623,8.199398,0,6,3,3.7721817,0,-9,-9,2019,8,0,50,48,1,0,0,7.0206084,7.0206084,0,0,0,0,0,0,0,0,0,0,52.77,55.33,48.03,46.88,8.333333333333334,1,1,0,0,7,12,5,1,3395.5,369264.44,189188.22,269971.41,165721.67,2883.9641 -10362,12775,23006,23005,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.3272924,8.4340782,0,6,-3,-5.3735518,0,-9,-9,2019,11,0,38,41,1,0,0,15.34425,15.34425,0,0,0,0,0,0,0,0,1.9231529,0,48.03,46.88,52.77,55.33,8.333333333333334,1,1,0,0,7,12,5,1,3395.5,369264.44,189188.22,269971.41,165721.67,2883.9641 -10363,12776,23007,23008,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,8.2772541,8.173851,0,4,-1,83.154694,0,-9,-9,2019,16,4,8,40,1,4,0,43.216061,43.216061,0,0,0,0,0,0,0,0,0,0,36.84,45.75,40.61,64.02,6.666666666666667,1,1,0,0,1,8,5,0,329.5,-22786.156,53432.309,175932.14,171765.56,4274.4746 -10363,12776,23008,23007,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.8506165,8.8595839,0,4,1,-113.14629,0,-9,-9,2019,14,1,80,65,1,1,0,11.79061,11.79061,0,0,0,0,7,0,0,0,0,0,40.61,64.02,36.84,45.75,6.666666666666667,1,1,0,0,5,8,5,0,329.5,-22786.156,53432.309,175932.14,171765.56,4274.4746 -10364,12777,23009,23010,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.7473307,9.2022676,0,1,1,-37.816666,-9,-9,-9,2019,9,0,38,0,1,0,0,20.5917,20.5917,0,0,0,0,0,1,1,0,0,0,46.53,61.33,51.83,57.2,8.333333333333334,1,1,0,0,1,13,5,1,519,262800.78,539929,293722.88,215924.31,4131.4229 -10364,12777,23010,23009,23011,23012,1,0,26,0,0,0,1,1,-9,0,4,8.6276608,8.4272089,0,1,-1,-11.697924,0,3,1,2019,13,1,38,38,1,1,0,13.230515,13.230515,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.53,61.33,10,1,1,0,0,6,13,5,1,519,262800.78,539929,293722.88,215924.31,4131.4229 -10364,12778,23011,23012,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,8,-1,-88.589081,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.53,35.71,50.97,40.02,8.333333333333334,1,1,0,0,0,13,3,1,836,1793015,1110728,183919.06,0,2454.8071 -10364,12778,23012,23011,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.8461995,7.7286267,8,1,-39.421127,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1054735,50.97,40.02,54.53,35.71,8.333333333333334,1,1,0,0,0,13,3,1,836,1793015,1110728,183919.06,0,2454.8071 -10365,12779,23013,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,4,0,5.6255245,5.3273973,0,0,-911.09906,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.7243085,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,366,-197576.63,0,0,0,576.58783 -10366,12780,23014,-9,23017,23015,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.7228,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,746.75,73249.883,0,0,0,2533.0242 -10366,12780,23015,23017,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,6.7361484,6.7172165,0,2,5,-31.023169,-9,-9,-9,2019,11,0,16,0,1,0,0,6.3602252,6.3602252,0,0,0,0,0,1,1,0,0,0,46.15,53.24,45.17,56.33,10,1,1,0,0,6,9,3,0,746.75,73249.883,0,0,0,2533.0242 -10366,12780,23016,-9,23017,23015,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.28943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,746.75,73249.883,0,0,0,2533.0242 -10366,12780,23017,23015,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.690196,7.4870172,0,2,-5,-57.038525,0,-9,-9,2019,12,0,16,22,1,0,0,15.463667,15.463667,0,0,0,0,0,1,1,0,0,0,45.17,56.33,46.15,53.24,5,1,1,0,0,8,9,3,0,746.75,73249.883,0,0,0,2533.0242 -10367,12781,23018,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.6166706,8.92204,0,0,0,-1019.2301,-9,2,2,2019,10,0,42,0,1,0,0,14.981844,14.981844,0,0,0,0,0,1,1,0,0,0,53.3,42.91,-9,-9,5,1,1,0,0,10,4,5,0,651,172877.22,276367.25,149091.66,96532.227,2429.4272 -10368,12782,23019,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-853.96069,0,-9,-9,2019,31,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,27.38,38.97,-9,-9,5,1,1,0,0,0,6,1,0,469,-333838.03,0,0,0,1262.848 -10369,12783,23020,23021,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.2497435,7.3402843,45,2,38.346817,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4304166,58.08,40.76,46.65,46.1,6.666666666666667,1,1,0,0,2,2,3,1,330.5,452711.69,502670.78,0,0,2340.3923 -10369,12783,23021,23020,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.7111344,6.8471551,0,45,-2,43.778969,0,2,2,2019,12,0,6,6,1,0,0,15.637407,15.637407,0,0,0,0,0,1,1,0,0,0,46.65,46.1,58.08,40.76,5,1,1,0,0,12,2,3,1,330.5,452711.69,502670.78,0,0,2340.3923 -10370,12784,23022,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.5072,-9,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.11,44.4,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,1793,295038.56,0,262821.91,0,1489.4431 -10371,12785,23023,-9,23025,23026,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.89069,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 -10371,12785,23024,-9,23025,23026,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-991.13177,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 -10371,12785,23025,23026,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.4980021,8.358778,0,7,-3,64.021667,0,-9,-9,2019,5,0,31,30,1,0,0,15.456133,15.456133,0,0,0,0,0,1,1,0,0,0,48.83,57.34,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 -10371,12785,23026,23025,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.4858794,7.6399846,0,7,3,81.834938,0,-9,-9,2019,3,0,50,70,1,0,0,3.4848866,3.4848866,0,0,0,0,2,1,1,0,0,0,57.06,57.76,48.83,57.34,8.333333333333334,1,1,0,0,8,12,4,1,444.75,115107.98,59947.609,140316.45,73924.563,2938.7673 -10372,12786,23027,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,0,0,0,0,0,-918.31818,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,791,1668653.5,1197686.1,184649.73,0,0 -10373,12787,23028,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1155682,8.2121744,0,0,0,-935.49329,0,2,2,2019,17,4,55,52,1,4,0,6.2121911,6.2121911,0,0,0,0,27,0,0,0,0,0,34.71,42.42,-9,-9,1.666666666666667,1,1,0,0,9,4,4,1,158,209796.67,0,230707.36,0,400.14676 -10374,12788,23029,23030,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.5220118,9.9559813,0,19,1,56.147514,0,2,3,2019,5,0,60,55,1,0,0,30.1422,30.1422,0,0,0,0,0,0,0,0,0,0,58.47,50.22,58.15,52.91,8.333333333333334,1,1,0,0,9,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 -10374,12788,23030,23029,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,19,-1,-20.823444,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.1951207,0,58.15,52.91,58.47,50.22,8.333333333333334,1,1,0,0,1,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 -10374,12788,23031,-9,23030,23029,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.8805,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 -10374,12788,23032,-9,23030,23029,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2754,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,447,1861507.4,1864004.8,199868.75,92540.547,4233.2188 -10375,12789,23033,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-984.34125,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,.96267915,0,1,1,0,0,0,53.81,48.39,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,2540,95332.055,0,0,0,-392.93008 -10376,12790,23034,23035,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,0,0,8,-7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.09,47.92,64.64,45.9,10,1,1,0,0,0,13,1,1,446.5,358396.25,-28557.887,0,0,0 -10376,12790,23035,23034,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,0,0,8,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,45.9,63.09,47.92,10,1,1,0,0,0,13,1,1,446.5,358396.25,-28557.887,0,0,0 -10377,12791,23036,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-959.31543,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,49.39,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,4195,64434.449,0,0,0,1700.7622 -10378,12792,23037,23038,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8796396,8.884655,7.4669561,39,1,-47.739143,0,3,2,2019,5,0,45,48,1,0,0,17.91247,17.91247,0,0,0,0,0,0,0,0,8.1938782,0,57.16,56.15,21.16,63.25,8.333333333333334,1,1,0,0,12,12,5,1,425.5,1238449.9,1019299.4,267803.69,95625,4580.5415 -10378,12792,23038,23037,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,39,-1,6.2169447,-9,3,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,21.16,63.25,57.16,56.15,3.333333333333333,1,1,0,0,10,12,5,1,425.5,1238449.9,1019299.4,267803.69,95625,4580.5415 -10379,12793,23039,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.4895277,7.3917284,0,0,0,-1164.4315,0,2,-9,2019,8,1,24,23,1,1,0,8.67871,8.67871,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,10,1,1,0,0,9,10,3,0,807,-8723.4414,0,0,0,1328.7833 -10379,12793,23040,-9,23039,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.7996,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,807,-8723.4414,0,0,0,1328.7833 -10380,12794,23041,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-947.2486,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.84,43.99,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,144,261792.67,0,0,0,384.7247 -10381,12795,23042,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.5685034,7.3729262,0,0,0,-1042.951,-9,-9,-9,2019,10,1,36,0,1,1,0,5.6194119,5.6194119,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,1,1,2,3,0,642,264938.97,-17832.15,0,0,969.36292 -10382,12796,23043,23044,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.6564751,8.7109919,0,30,0,-47.87199,0,2,2,2019,11,0,50,30,1,0,0,18.690475,18.690475,0,0,0,0,0,0,0,0,3.7002861,0,49.35,59.64,50.67,34.02,6.666666666666667,1,1,0,0,9,10,5,0,293.5,835025.38,644663.88,472267,138880.09,3407.0903 -10382,12796,23044,23043,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,7.1943808,7.5518293,0,30,0,-30.8689,0,2,3,2019,9,1,30,20,1,1,0,5.0734057,5.0734057,0,0,0,0,0,0,0,0,4.0305777,0,50.67,34.02,49.35,59.64,8.333333333333334,1,1,0,0,10,10,5,0,293.5,835025.38,644663.88,472267,138880.09,3407.0903 -10382,12797,23045,-9,23043,23044,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1148.726,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,510,41816.809,0,0,0,12.219376 -10383,12798,23046,23047,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.8076811,8.4761028,0,27,-2,54.556164,0,2,2,2019,12,0,38,38,1,0,0,15.902209,15.902209,0,0,0,0,0,1,1,0,0,0,45.91,59.89,25.6,60.21,5,1,1,0,0,11,6,5,1,1729.3334,344097.66,99122.445,50360.141,25042.41,3309.2415 -10383,12798,23047,23046,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.399693,7.4810205,0,27,2,5.3200059,0,2,3,2019,14,2,35,-9,1,2,0,5.803369,5.803369,0,0,0,0,0,1,1,0,4.9394121,0,25.6,60.21,45.91,59.89,1.666666666666667,1,1,0,0,10,6,5,1,1729.3334,344097.66,99122.445,50360.141,25042.41,3309.2415 -10383,12798,23048,-9,23046,23047,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1057.1155,-9,2,2,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,23.55,66.2,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,1729.3334,344097.66,99122.445,50360.141,25042.41,3309.2415 -10384,12799,23049,23050,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,8.2921591,8.2274094,0,14,1,120.63298,0,3,3,2019,10,0,30,40,1,0,0,17.704361,17.704361,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.77,60.16,8.333333333333334,1,1,0,0,10,7,5,1,542,-125224.31,39979.039,0,0,3638.9646 -10384,12799,23050,23049,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.311244,8.333642,0,14,-1,-55.479176,0,2,2,2019,8,1,32,40,1,1,0,17.497816,17.497816,0,0,0,0,0,1,1,0,0,0,48.77,60.16,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,542,-125224.31,39979.039,0,0,3638.9646 -10384,12799,23051,-9,23050,23049,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-999.04639,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,542,-125224.31,39979.039,0,0,3638.9646 -10385,12800,23052,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.9050384,8.0445957,0,0,0,-1026.2329,0,3,3,2019,6,0,38,37,1,0,0,11.71771,11.71771,0,0,0,0,0,0,0,0,0,0,62.1,51.16,-9,-9,8.333333333333334,1,1,0,0,7,10,4,0,749,699377.63,343584.44,249145.44,115946.14,1112.2957 -10385,12801,23053,-9,23052,-9,1,1,23,0,0,0,2,2,-9,0,3,8.0173178,8.1858521,0,0,0,-978.27246,0,3,-9,2019,10,0,51,50,1,0,1,8.9227705,8.9227705,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,3,10,4,0,345,89747.883,0,0,0,1330.9838 -10386,12802,23054,23055,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.020021,7.2940321,0,41,0,-166.82611,0,2,2,2019,11,0,20,25,1,2,0,7.1228223,7.1228223,0,0,0,0,0,1,1,0,0,0,49,48,45.81,58.99,7,1,1,0,0,12,13,4,1,530.5,166008.08,74445.164,158192.53,0,2464.5896 -10386,12802,23055,23054,-9,-9,1,1,62,0,0,0,3,3,-9,1,4,7.6488695,8.2039652,6.6178665,10,0,67.887718,0,-9,-9,2019,13,4,23,22,1,4,0,9.1366396,9.1366396,0,0,0,0,0,1,1,0,0,7.0824256,45.81,58.99,49,48,5,1,1,0,0,12,13,4,1,530.5,166008.08,74445.164,158192.53,0,2464.5896 -10387,12803,23056,23057,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.3112698,8.6577368,0,11,0,56.203541,0,1,-9,2019,6,0,50,50,1,0,0,8.9965401,8.9965401,0,0,0,0,0,0,0,0,4.8579488,0,56.07,45.75,53.01,28.22,6.666666666666667,1,1,0,0,13,2,5,1,780,2130856,1513891,163779.59,0,3166.4517 -10387,12803,23057,23056,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.4477901,8.4889803,0,11,0,-74.69783,0,1,2,2019,11,3,41,41,1,3,0,10.258495,10.258495,0,0,0,0,0,0,0,0,1.4236913,0,53.01,28.22,56.07,45.75,8.333333333333334,1,1,0,0,10,2,5,1,780,2130856,1513891,163779.59,0,3166.4517 -10388,12804,23058,23059,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,0,0,7,3,0,0,-9,-9,2019,18,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.0997654,0,38.68,41.89,36.31,33.7,5,2,3,0,1,4,8,1,0,1162,521675.38,0,505437.75,0,-7.6903648 -10388,12804,23059,23058,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,7,-3,0,0,-9,-9,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,1.051147,0,36.31,33.7,38.68,41.89,5,2,3,0,0,0,8,1,0,1162,521675.38,0,505437.75,0,-7.6903648 -10389,12805,23060,23061,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.1036854,8.545927,0,22,8,-117.55162,0,3,2,2019,9,0,40,40,1,1,0,10.549059,10.549059,0,0,0,0,0,1,1,0,0,0,54,54,51.14,60.45,8,1,1,0,0,1,2,5,1,769,1080025,718129.63,336204.06,59156.559,3548.6523 -10389,12805,23061,23060,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.7208462,8.4381914,0,22,-8,96.964203,0,2,3,2019,13,4,41,40,1,4,0,16.420841,16.420841,0,0,0,0,0,1,1,0,0,0,51.14,60.45,54,54,8.333333333333334,1,1,0,0,9,2,5,1,769,1080025,718129.63,336204.06,59156.559,3548.6523 -10390,12806,23062,-9,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,5.0584469,5.3603039,0,0,0,-1054.7614,0,1,2,2019,9,0,35,7,1,0,0,.68911707,.68911707,0,0,0,0,7,1,1,0,0,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,307,183233.75,45908.777,0,0,1286.059 -10391,12807,23063,23064,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,3.320009,3.7839487,11,5,-84.133553,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,17.752668,0,0,1,1,0,3.685864,3.5281677,54,46,51,46,8,1,1,0,0,0,4,2,1,858.5,159375.36,0,0,0,1333.6362 -10391,12807,23064,23063,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.322216,4.2398744,60,-5,14.971219,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,3.9389429,4.2811785,51,46,54,46,7,1,1,0,0,9,4,2,1,858.5,159375.36,0,0,0,1333.6362 -10392,12808,23065,23066,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.5868759,7.141046,9,3,85.420959,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0456877,58.15,52.91,44.36,54.04,10,1,1,0,0,7,9,3,1,845.5,1264741.5,719308.13,520176.25,0,2837.4087 -10392,12808,23066,23065,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.5932021,7.596518,28,-3,11.432111,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.9967046,44.36,54.04,58.15,52.91,6.666666666666667,1,1,0,0,5,9,3,1,845.5,1264741.5,719308.13,520176.25,0,2837.4087 -10393,12809,23067,23068,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.5706463,7.3645968,8,-3,-128.97827,0,3,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5378776,7.5574007,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,8,10,3,1,666.5,637201.13,400169.69,179919.72,0,2580.5928 -10393,12809,23068,23067,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,4.6009459,4.3401222,8,3,-17.473204,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.241354,4.391377,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,9,10,3,1,666.5,637201.13,400169.69,179919.72,0,2580.5928 -10393,12810,23069,-9,23067,23068,1,1,48,0,0,0,1,1,-9,0,4,8.2010632,7.9381809,0,0,0,-1063.9193,0,2,2,2019,6,0,45,50,1,0,0,6.714376,6.714376,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,200,487497.16,76978.492,608314.19,243170.47,871.32959 -10394,12811,23070,23073,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,7.7043719,7.5411897,0,13,-11,-47.053795,0,3,3,2019,13,1,45,8,1,1,0,4.7634377,4.7634377,0,0,0,0,0,0,0,0,0,0,26.8,47.71,42.37,48.08,3.333333333333333,2,3,0,0,5,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 -10394,12811,23071,-9,23070,23073,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.2218,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 -10394,12811,23072,-9,23070,23073,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.98895,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 -10394,12811,23073,23070,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.1704464,8.9427404,0,13,11,-64.798149,0,3,3,2019,12,0,55,40,1,0,0,22.305794,22.305794,0,0,0,0,0,0,0,0,0,0,42.37,48.08,26.8,47.71,5,2,3,0,0,10,7,5,1,584,739577.88,122962.23,752922.88,396778.25,4223.4014 -10395,12812,23074,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-985.43451,0,3,3,2019,29,10,0,56,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.96,25.94,-9,-9,1.666666666666667,2,3,0,1,4,8,1,0,151,-441295.06,0,0,0,1328.1781 -10396,12813,23075,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.8436,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,-9,-9,1.666666666666667,1,1,0,0,2,6,1,1,278,0,0,0,0,1256.7822 -10397,12814,23076,-9,23077,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.38055,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,704,356327.72,0,0,0,1926.1232 -10397,12814,23077,-9,-9,-9,1,0,26,0,1,0,1,1,-9,0,4,7.7375922,7.4878979,0,0,0,-1075.6929,0,2,2,2019,12,0,37,37,1,0,0,9.1137323,9.1137323,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,5,1,1,0,0,3,7,3,0,704,356327.72,0,0,0,1926.1232 -10398,12815,23078,23079,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.6522179,7.9052467,3,-1,-46.177235,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3832312,7.8251987,60.67,42.47,51,46,8.333333333333334,1,1,0,0,0,11,3,1,1047,54740.461,0,0,0,2439.9043 -10398,12815,23079,23078,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,3,1,-52.539467,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0249777,0,51,46,60.67,42.47,8,1,1,0,0,0,11,3,1,1047,54740.461,0,0,0,2439.9043 -10399,12816,23080,23081,-9,-9,1,1,32,0,1,0,1,1,-9,0,3,8.9955206,8.9475346,0,8,3,70.170471,0,2,2,2019,8,0,40,40,1,0,0,26.156799,26.156799,0,0,0,0,0,1,1,0,1.1083083,0,54.37,54.8,49.42,57.29,6.666666666666667,1,1,0,0,9,4,5,0,758.33331,78484.406,251873.47,0,0,4489.6182 -10399,12816,23081,23080,-9,-9,1,0,29,0,1,0,1,1,-9,0,5,7.7894082,7.9460835,0,8,-3,-32.197002,0,-9,-9,2019,15,3,39,36,1,3,0,7.8015409,7.8015409,0,0,0,0,0,1,1,0,1.8699617,0,49.42,57.29,54.37,54.8,6.666666666666667,1,1,0,0,10,4,5,0,758.33331,78484.406,251873.47,0,0,4489.6182 -10399,12816,23082,-9,23081,23080,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.21326,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,758.33331,78484.406,251873.47,0,0,4489.6182 -10400,12817,23083,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.7607861,7.8125691,0,0,-937.18054,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4242959,7.5859985,52.14,43.99,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,410,800570.81,293114.16,319551.06,0,1894.9915 -10401,12818,23084,23085,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.1486058,7.4800014,10,-2,38.57473,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.7652044,7.3229117,46.55,43.16,55.2,44.8,6.666666666666667,1,1,0,0,0,12,3,1,449.5,1194484.8,647417.38,55157.938,0,2508.6802 -10401,12818,23085,23084,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.1740317,6.9425583,10,2,85.249435,0,2,2,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.4095051,7.3982821,55.2,44.8,46.55,43.16,8.333333333333334,1,1,0,0,6,12,3,1,449.5,1194484.8,647417.38,55157.938,0,2508.6802 -10402,12819,23086,23087,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,8.0423422,8.4083595,10,4,145.32173,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2439966,8.4540253,46.34,51.52,37.74,25.05,6.666666666666667,2,3,0,0,3,11,4,1,867.5,1071154,873604.44,257671.66,0,3337.6101 -10402,12819,23087,23086,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,5.2356977,5.1701026,10,-4,107.907,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4228883,5.1199951,37.74,25.05,46.34,51.52,0,1,1,0,0,0,11,4,1,867.5,1071154,873604.44,257671.66,0,3337.6101 -10403,12820,23088,-9,23090,-9,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1062.0482,-9,1,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.48,60.15,-9,-9,10,1,1,0,0,2,7,3,1,2874.3333,363931.97,153215.88,237862.41,0,2707.5623 -10403,12820,23089,-9,23090,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-983.33667,-9,1,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,29.38,51.37,-9,-9,3.333333333333333,1,1,0,0,10,7,3,1,2874.3333,363931.97,153215.88,237862.41,0,2707.5623 -10403,12820,23090,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,7.7661676,7.8994474,7.2643781,0,0,-1025.6128,0,2,2,2019,3,0,27,36,1,0,0,12.03866,12.03866,0,0,0,0,0,1,1,0,8.0263243,0,62.39,56.71,-9,-9,10,1,1,0,0,9,7,3,1,2874.3333,363931.97,153215.88,237862.41,0,2707.5623 -10404,12821,23091,23093,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.2132826,9.4673386,0,1,-4,27.430908,-9,1,1,2019,6,0,44,0,1,0,0,23.439911,23.439911,0,0,0,0,2,1,1,0,0,0,51.83,57.2,51.83,57.2,10,1,1,0,0,10,8,5,1,887.66669,688632.88,221458.97,491398.47,243786.92,8193.2861 -10404,12821,23092,-9,23091,23093,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.2191,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,887.66669,688632.88,221458.97,491398.47,243786.92,8193.2861 -10404,12821,23093,23091,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.8091402,9.453578,0,1,4,98.12291,-9,2,1,2019,8,0,37,0,1,0,0,47.649849,47.649849,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,10,4,2,0,0,11,8,5,1,887.66669,688632.88,221458.97,491398.47,243786.92,8193.2861 -10405,12822,23094,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.2827454,8.3165493,0,0,0,-1052.709,0,2,2,2019,12,0,37,37,1,0,0,14.177513,14.177513,0,0,0,0,0,0,0,0,0,0,50.86,47.22,-9,-9,5,1,1,0,0,12,12,4,0,824,-73149.305,6547.3833,165932.63,76619.789,920.3985 -10406,12823,23095,23096,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,4.6195097,4.6474094,4,23,-45.776199,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.4618473,4.6996899,49.46,41.01,48,56,5,1,1,0,0,9,2,4,1,568,682126.88,492286.63,164290.72,0,3661.373 -10406,12823,23096,23095,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.72964,8.5794439,0,4,-23,21.417274,-9,-9,-9,2019,11,0,37,0,1,1,0,19.465643,19.465643,0,0,0,0,0,0,0,0,6.0677056,0,48,56,49.46,41.01,7,1,1,0,0,1,2,4,1,568,682126.88,492286.63,164290.72,0,3661.373 -10407,12824,23097,23099,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.828824,8.4524984,0,3,10,-48.954815,0,-9,-9,2019,10,1,38,40,1,1,0,21.017643,21.017643,0,0,0,0,0,0,0,0,0,0,50.46,53.68,55.09,55.87,6.666666666666667,1,1,0,0,9,12,5,1,512.66669,1547267.3,931623.38,267031.59,0,3748.6128 -10407,12824,23098,-9,23099,23097,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.3408,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,512.66669,1547267.3,931623.38,267031.59,0,3748.6128 -10407,12824,23099,23097,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,7.9950161,7.6182818,0,3,-10,-1.5894654,0,2,2,2019,8,0,32,28,1,0,0,16.125036,16.125036,0,0,0,0,0,0,0,0,0,0,55.09,55.87,50.46,53.68,8.333333333333334,1,1,0,0,7,12,5,1,512.66669,1547267.3,931623.38,267031.59,0,3748.6128 -10408,12825,23100,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.7978067,7.590322,0,0,-1051.4589,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,8.2577658,7.7718005,54,45,-9,-9,8,2,3,0,0,0,8,3,1,924,1068489.8,16315.159,468942.47,0,3528.4094 -10409,12826,23101,23104,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.1722412,8.0767117,0,14,8,-56.353714,0,2,2,2019,12,0,45,40,1,0,0,9.343502,9.343502,0,0,0,0,0,1,1,0,0,0,46.67,55.57,50.51,42.98,5,1,1,0,0,9,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 -10409,12826,23102,-9,23104,23101,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.74243,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 -10409,12826,23103,-9,23104,23101,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1162.9929,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 -10409,12826,23104,23101,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.285634,7.369801,0,14,-8,34.52113,0,3,2,2019,10,0,14,16,1,0,0,12.806148,12.806148,0,0,0,0,0,1,1,0,6.889358,0,50.51,42.98,46.67,55.57,6.666666666666667,2,3,0,0,7,10,4,1,1215.75,1487037.5,1042820.6,472446.38,110413.05,3366.1274 -10410,12827,23105,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,4,7.1899462,7.1980062,0,0,0,-863.6217,0,3,-9,2019,1,0,24,24,1,0,0,4.9631257,4.9631257,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,266.5,-112718.18,0,0,0,1692.8752 -10410,12827,23106,-9,23105,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.65363,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,2,0,266.5,-112718.18,0,0,0,1692.8752 -10411,12828,23107,23108,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,8.0433931,8.4337053,52,2,-39.735176,0,-9,1,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.5203843,8.3817873,53.51,60.74,52.24,50.75,8.333333333333334,1,1,0,0,0,8,4,1,4087.5,2345106,776294,653120.31,0,5126.0557 -10411,12828,23108,23107,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.0528321,6.163157,52,-2,-100.65139,0,-9,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.260931,5.864552,52.24,50.75,53.51,60.74,10,1,1,0,0,0,8,4,1,4087.5,2345106,776294,653120.31,0,5126.0557 -10412,12829,23109,-9,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.0170307,8.0993786,0,0,0,-1041.1304,0,3,3,2019,9,0,40,58,1,0,0,11.000072,11.000072,0,0,0,0,0,0,0,0,0,0,43.86,46.5,-9,-9,5,1,1,0,0,9,9,3,1,1592,81175.258,240397.72,0,0,1580.2441 -10412,12829,23110,-9,-9,23109,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.813,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,1592,81175.258,240397.72,0,0,1580.2441 -10413,12830,23111,23112,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,6,-13,0,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.47,55.65,36.14,39.16,6.666666666666667,1,1,1,0,0,11,2,0,566,-65147.629,0,0,0,1580.4819 -10413,12830,23112,23111,-9,-9,1,1,63,0,0,0,3,3,-9,1,5,0,0,0,6,13,0,0,3,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.14,39.16,40.47,55.65,0,1,1,0,0,2,11,2,0,566,-65147.629,0,0,0,1580.4819 -10413,12831,23113,-9,23111,23112,1,1,25,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.76459,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,3.333333333333333,1,1,1,1,0,11,1,0,3175,103361.78,0,0,0,413.64667 -10414,12832,23114,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.2009783,8.4161015,0,0,0,-945.17822,0,-9,-9,2019,7,0,48,38,1,0,0,8.8783054,8.8783054,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,691,898918.63,737105.13,127586.34,38586.359,1947.7546 -10415,12833,23115,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,7.2077045,7.1134601,0,0,-974.06189,0,2,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,5.3508782,7.4948616,40.14,24.96,-9,-9,3.333333333333333,1,1,0,0,5,2,3,1,905,-13578.126,82853.234,148454.89,0,1817.5178 -10416,12834,23116,23117,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.4445114,8.8059387,0,10,-3,43.146626,0,-9,-9,2019,14,2,42,45,1,2,0,35.17292,35.17292,0,0,0,0,0,0,0,0,7.8593507,0,49.41,58.28,59.88,16.23,10,1,1,0,0,11,10,5,1,617.5,1064279.4,790429.81,623407.13,278004.13,12643.649 -10416,12834,23117,23116,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,9.6651354,9.9385815,0,34,3,61.5737,-9,-9,2,2019,6,0,10,0,1,0,0,160.41359,160.41359,0,0,0,0,0,0,0,0,2.6257963,0,59.88,16.23,49.41,58.28,6.666666666666667,1,1,0,0,9,10,5,1,617.5,1064279.4,790429.81,623407.13,278004.13,12643.649 -10417,12835,23118,23119,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,61,-2,0,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,57.66,26.31,54.14,38.87,6.666666666666667,1,1,0,0,0,5,1,1,818.5,66620.203,-80738.555,121458.78,0,1204.302 -10417,12835,23119,23118,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,61,2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,8.0217705,0,0,1,1,0,0,0,54.14,38.87,57.66,26.31,8.333333333333334,1,1,0,0,0,5,1,1,818.5,66620.203,-80738.555,121458.78,0,1204.302 -10418,12836,23120,23121,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,8.5191536,8.2723799,0,20,10,171.62871,0,2,2,2019,13,1,48,0,1,1,0,10.965664,10.965664,0,0,0,0,0,1,1,0,0,0,44.3,32.69,46.76,47.2,6.666666666666667,2,3,0,1,11,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 -10418,12836,23121,23120,-9,-9,1,0,36,0,2,0,3,3,-9,0,3,0,0,0,11,-10,-68.283638,0,2,2,2019,12,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,1.4294833,0,46.76,47.2,44.3,32.69,6.666666666666667,2,3,0,1,0,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 -10418,12836,23122,-9,23121,23120,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.02234,-9,3,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 -10418,12836,23123,-9,23121,23120,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.3086,-9,3,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,588.75,632676.63,46623.723,742099.44,112246.22,2230.1519 -10419,12837,23124,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.032238,8.4531317,0,0,0,-1032.3645,0,2,3,2019,12,0,50,42,1,0,0,8.7033043,8.7033043,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,3712,-106950.98,0,0,0,1531.027 -10420,12838,23125,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,5,0,6.6172462,7.1142015,0,0,-878.99719,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5425007,6.7588401,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,1089,294266.13,133415.27,223007.08,0,649.82623 -10421,12839,23126,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,6.918251,6.7914133,0,0,0,-1035.6167,0,-9,-9,2019,8,0,16,20,1,0,0,5.8173747,5.8173747,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,6,13,2,0,339,-3795.3735,28127.656,0,0,1671.6718 -10422,12840,23127,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7377043,7.2303576,0,0,-967.02057,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,4.9928551,7.7851319,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,337,1040890.3,317273.19,232545.11,0,1399.374 -10423,12841,23128,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1144.4834,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.96105,0,52.19,41.38,-9,-9,0,1,1,0,0,7,12,1,1,3536,458659.5,0,138915.42,0,1391.1217 -10424,12842,23129,23130,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.2235541,7.1571131,57,2,-144.00807,0,-9,2,2019,14,2,0,0,4,2,0,0,0,1,2.8423338,51.589588,20.666145,14.5,1,1,0,0,7.2822838,36.83,30.64,48.28,28.09,8.333333333333334,1,1,0,0,0,12,3,1,1798.5,1304725,669429.88,333961.69,0,3259.0605 -10424,12842,23130,23129,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.1718769,7.6871018,57,-2,-9.724658,0,3,-9,2019,12,2,0,0,4,2,0,0,0,1,0,24.325325,0,7,1,1,0,5.9950724,7.7072845,48.28,28.09,36.83,30.64,8.333333333333334,1,1,0,0,5,12,3,1,1798.5,1304725,669429.88,333961.69,0,3259.0605 -10425,12843,23131,23134,-9,-9,1,1,33,1,2,0,3,3,-9,0,5,8.1840506,8.3358526,0,7,-7,101.87954,0,2,2,2019,10,0,55,50,1,0,0,7.544127,7.544127,0,0,0,0,0,1,1,0,0,0,44.06,60.14,41.6,53.74,8.333333333333334,1,1,0,0,8,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 -10425,12843,23132,-9,23134,23131,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.13208,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 -10425,12843,23133,-9,23134,23131,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.3932,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 -10425,12843,23134,23131,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.7229052,8.0155468,0,7,7,-23.106701,0,2,2,2019,12,0,30,30,1,0,0,9.7920256,9.7920256,0,0,0,0,0,1,1,0,0,0,41.6,53.74,44.06,60.14,8.333333333333334,1,1,0,0,8,7,4,1,592.5,108596.31,22052.02,224837.5,144523.39,2076.6169 -10426,12844,23135,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.8239546,6.5322061,0,0,-989.79596,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.6216879,54,44,-9,-9,8,1,1,0,0,0,11,2,0,191,100508.54,119691.92,121445.54,0,1402.3174 -10426,12845,23136,-9,23135,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1095.1572,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,41.85,44.38,-9,-9,5,1,1,0,0,0,11,1,0,229,289758.75,0,0,0,741.64301 -10427,12846,23137,23141,-9,-9,1,1,41,1,4,0,2,2,-9,0,3,8.8408108,9.0629168,0,3,12,24.2355,0,2,2,2019,16,6,37,48,1,6,0,26.136059,26.136059,0,0,0,0,0,1,1,0,0,0,43.38,52.86,2.73,57.43,3.333333333333333,1,1,0,1,5,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 -10427,12846,23138,-9,23141,23137,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-954.52136,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 -10427,12846,23139,-9,23141,23137,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-851.72278,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 -10427,12846,23140,-9,23141,23137,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-960.46271,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 -10427,12846,23141,23137,-9,-9,1,0,29,1,4,0,3,3,-9,0,2,0,0,0,3,-12,90.046089,0,-9,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,2.73,57.43,43.38,52.86,6.666666666666667,1,1,0,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 -10427,12846,23142,-9,23141,23137,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.9487,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,910.66669,707701.25,375764.44,164905.72,36751.598,5114.4976 -10428,12847,23143,23144,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.0663676,7.205101,9,2,-50.033981,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.81778,7.331264,60.6,43.75,59.46,46.99,8.333333333333334,1,1,0,0,4,10,3,1,857.5,730929.81,401564.66,247824.97,0,2741.7688 -10428,12847,23144,23143,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.986495,7.1786146,9,-2,117.82711,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7976503,5.3821182,59.46,46.99,60.6,43.75,8.333333333333334,1,1,0,0,0,10,3,1,857.5,730929.81,401564.66,247824.97,0,2741.7688 -10429,12848,23145,-9,23147,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1126.1025,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,3,1,456,-254976.81,0,0,0,2447.3965 -10429,12848,23146,-9,23147,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.65997,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,3,1,456,-254976.81,0,0,0,2447.3965 -10429,12848,23147,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.1803718,7.6224661,7.0187368,0,0,-1136.8082,0,2,3,2019,9,0,21,21,1,0,0,6.4713788,6.4713788,0,0,0,0,0,1,1,0,7.0554872,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,456,-254976.81,0,0,0,2447.3965 -10430,12849,23148,23149,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.9222789,7.0818934,59,-6,43.104111,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,42,1,1,0,5.2164755,7.1595483,52.17,25.93,50.14,37.92,5,1,1,0,0,0,2,2,1,547.5,403066.06,94706.813,186228.27,0,1763.3011 -10430,12849,23149,23148,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,6.0803041,5.8942347,59,6,-23.426311,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.6761625,0,0,1,1,0,0,5.9545045,50.14,37.92,52.17,25.93,6.666666666666667,1,1,0,0,0,2,2,1,547.5,403066.06,94706.813,186228.27,0,1763.3011 -10431,12850,23150,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1113.9083,0,3,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,51.21,27.79,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1073,263402.69,51643.574,0,0,603.2514 -10432,12851,23151,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,8.1769066,8.0180616,0,0,0,-889.67572,0,2,2,2019,19,8,40,39,1,8,0,9.3843527,9.3843527,0,0,0,0,0,1,1,0,0,0,34.97,34.06,-9,-9,1.666666666666667,1,1,0,1,9,6,4,0,1012,671226.94,412879.88,0,0,1281.9944 -10433,12852,23152,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,1,0,0,0,0,0,-955.59131,0,2,1,2019,20,9,0,28,3,9,0,0,0,0,0,0,0,0,1,1,0,2.3943744,0,47.45,20.75,-9,-9,6.666666666666667,1,1,1,0,2,8,1,1,917.5,43742.875,196279.47,0,0,2083.2056 -10433,12852,23153,-9,23152,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-976.77271,-9,1,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,8,1,1,917.5,43742.875,196279.47,0,0,2083.2056 -10434,12853,23154,23156,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,7.9183049,7.6053967,0,8,7,49.685818,0,-9,-9,2019,8,0,40,38,1,0,0,5.986145,5.986145,0,0,0,0,0,1,1,0,0,0,54.9,54.53,35.53,45.84,8.333333333333334,1,1,0,0,8,11,4,1,598.33331,746127.31,513131.34,260025.31,64200.289,3277.7007 -10434,12853,23155,-9,23156,23154,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.7723,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,598.33331,746127.31,513131.34,260025.31,64200.289,3277.7007 -10434,12853,23156,23154,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,8.6169224,8.6940508,0,8,-7,-14.129692,0,2,2,2019,16,4,48,37,1,4,0,12.006076,12.006076,0,0,0,0,2,1,1,0,0,0,35.53,45.84,54.9,54.53,3.333333333333333,1,1,0,0,12,11,4,1,598.33331,746127.31,513131.34,260025.31,64200.289,3277.7007 -10435,12854,23157,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-940.12561,0,3,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,29.81,43.63,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,91,-536049.06,0,0,0,1207.3981 -10436,12855,23158,23159,-9,-9,1,0,57,0,1,0,2,2,-9,1,4,0,5.1759582,5.5442338,41,-2,-75.73468,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,5.3400598,53.18,48.31,25.63,23.75,8.333333333333334,1,1,0,0,0,5,2,1,518.5,113545.53,0,78646.047,62578.266,3171.7241 -10436,12855,23159,23158,-9,-9,1,1,59,0,1,0,3,3,-9,1,1,0,5.4673328,5.2542868,41,2,-31.934803,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,5.2591939,25.63,23.75,53.18,48.31,0,1,1,0,0,0,5,2,1,518.5,113545.53,0,78646.047,62578.266,3171.7241 -10437,12856,23160,23161,-9,-9,1,0,36,0,0,0,2,2,-9,1,2,0,0,0,6,0,41.197681,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.4215426,0,25.85,58.94,57.33,53.46,5,1,1,0,0,0,7,3,0,1338.5,-63867.992,-57131.117,0,0,2469.1609 -10437,12856,23161,23160,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.0242596,8.3838634,0,6,0,-44.595051,0,-9,-9,2019,7,0,37,38,1,0,0,8.8714857,8.8714857,0,0,0,0,0,1,1,0,3.7527566,0,57.33,53.46,25.85,58.94,8.333333333333334,1,1,0,0,7,7,3,0,1338.5,-63867.992,-57131.117,0,0,2469.1609 -10438,12857,23162,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-965.18756,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,3.0470896,0,0,1,1,0,0,0,50.49,42.4,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,481,-26203.572,151751.17,0,0,697.77899 -10439,12858,23163,23164,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.4725337,7.3099971,56,-1,1.6439893,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,2.1824987,7.2959042,54.7,34.63,41.6,27.1,8.333333333333334,1,1,0,0,0,10,2,1,781.5,312594.41,188461.39,246940.55,0,2709.8406 -10439,12858,23164,23163,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,55,1,15.783042,0,3,-9,2019,18,7,0,0,4,7,0,0,0,1,0,32.45192,0,0,1,1,0,2.3195813,0,41.6,27.1,54.7,34.63,3.333333333333333,1,1,0,0,5,10,2,1,781.5,312594.41,188461.39,246940.55,0,2709.8406 -10440,12859,23165,23166,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,8.8658848,8.8405237,0,18,-1,-92.629601,0,2,2,2019,20,8,42,45,1,8,0,21.799063,21.799063,0,0,0,0,0,1,1,0,0,0,31.28,58.79,39.2,58.82,5,1,1,0,0,13,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 -10440,12859,23166,23165,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5081959,8.2311211,0,19,1,-82.475189,0,1,2,2019,17,5,41,51,1,5,0,13.2859,13.2859,0,0,0,0,0,1,1,0,0,0,39.2,58.82,31.28,58.79,8.333333333333334,1,1,0,0,8,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 -10440,12859,23167,-9,23166,23165,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.09015,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 -10440,12859,23168,-9,23166,23165,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.2657,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,549.25,86959.156,64039.781,194532.88,87352.578,4514.6895 -10441,12860,23169,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,3,7.4959006,7.3502965,0,0,0,-983.83954,0,2,3,2019,9,0,36,0,1,0,0,5.1775799,5.1775799,0,0,0,0,2,1,1,0,0,0,48.21,37.04,-9,-9,6.666666666666667,1,1,0,0,1,9,3,0,363,-66866.445,-23066.604,0,0,323.17386 -10442,12861,23170,23171,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,8.0172749,7.6584077,51,3,-23.672272,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1173005,8.5972071,54.59,41.44,56.64,44.13,6.666666666666667,1,1,0,0,8,7,4,1,394,1606652.3,615533.63,569441,0,3661.4438 -10442,12861,23171,23170,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.9955764,7.2855062,51,-3,123.7717,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,16.232765,0,0,1,1,0,0,7.2372799,56.64,44.13,54.59,41.44,8.333333333333334,1,1,0,0,0,7,4,1,394,1606652.3,615533.63,569441,0,3661.4438 -10443,12862,23172,23173,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.2402501,8.2452583,7.4184008,7,-1,51.989235,0,2,-9,2019,12,0,24,4,1,0,0,6.5399089,6.5399089,0,0,0,0,0,0,0,0,5.4339409,7.7179942,51.49,57.57,49.35,59.64,8.333333333333334,1,1,0,0,8,13,4,1,418.5,227913.84,350823.22,170442.72,150678.53,2427.6641 -10443,12862,23173,23172,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.9377913,7.9525204,0,7,1,-89.734741,0,-9,-9,2019,11,0,37,37,1,0,0,10.100745,10.100745,0,0,0,0,0,0,0,0,6.2736149,0,49.35,59.64,51.49,57.57,8.333333333333334,1,1,0,0,8,13,4,1,418.5,227913.84,350823.22,170442.72,150678.53,2427.6641 -10444,12863,23174,23175,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3555088,9.1902657,0,9,16,-52.2519,0,-9,-9,2019,12,0,47,50,1,0,0,26.083574,26.083574,0,0,0,0,0,0,0,0,0,0,54.37,54.8,49,55,8.333333333333334,1,1,0,0,8,7,5,1,1440.5,3033283,2216172,222752.69,0,3377.5947 -10444,12863,23175,23174,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,0,0,0,10,-16,-240.3475,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,49,55,54.37,54.8,7,2,3,1,0,0,7,5,1,1440.5,3033283,2216172,222752.69,0,3377.5947 -10445,12864,23176,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.0619798,6.0474572,0,0,-1016.2007,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,.8255707,0,22.030678,0,1,1,0,6.2756596,5.7697511,48.45,14.01,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,354,197135.36,79895.789,101926.85,27643.316,1985.1405 -10446,12865,23177,-9,23179,-9,1,1,19,0,0,0,2,2,1,0,2,5.8395414,5.8662081,0,0,0,-984.54865,-9,2,-9,2019,26,8,7,0,1,8,1,5.149169,5.149169,0,0,0,0,0,0,0,0,0,0,17.3,58.87,-9,-9,1.666666666666667,1,1,0,0,1,5,2,1,1246,144510.23,0,0,0,847.00043 -10446,12866,23178,23179,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.9377799,7.7644873,0,5,3,-71.554977,0,-9,-9,2019,9,0,37,37,1,0,0,7.1754208,7.1754208,0,0,0,0,0,0,0,0,0,0,52.6,52.88,52.21,59.91,8.333333333333334,1,1,0,0,6,5,4,1,123,745923,423678.13,171848.59,0,2125.0161 -10446,12866,23179,23178,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.9797764,8.1963148,0,5,-3,-31.452343,0,2,3,2019,8,2,37,40,1,2,0,10.635521,10.635521,0,0,0,0,0,0,0,0,0,0,52.21,59.91,52.6,52.88,8.333333333333334,1,1,0,0,6,5,4,1,123,745923,423678.13,171848.59,0,2125.0161 -10447,12867,23180,23181,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,6.6857743,6.4082503,0,23,-6,-37.188961,0,-9,-9,2019,23,11,25,25,1,11,0,4.3476181,4.3476181,0,0,0,0,0,0,0,0,0,0,24.73,52.82,54.96,53.17,5,1,1,0,0,12,6,5,0,712.5,837342.38,348437.31,208561.09,97957.32,3165.1836 -10447,12867,23181,23180,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7065363,9.13694,0,9,6,143.75192,0,-9,-9,2019,11,0,50,45,1,0,0,15.682921,15.682921,0,0,0,0,2,0,0,0,0,0,54.96,53.17,24.73,52.82,5,1,1,0,0,5,6,5,0,712.5,837342.38,348437.31,208561.09,97957.32,3165.1836 -10448,12868,23182,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.4881,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.86,37.13,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,2928,82245.695,0,0,0,883.71906 -10449,12869,23183,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.789175,7.7177839,0,0,0,-1043.8842,0,-9,2,2019,9,0,42,50,1,0,0,7.1591411,7.1591411,0,0,0,0,0,1,1,0,3.3333468,0,60.45,43.72,-9,-9,6.666666666666667,1,1,0,0,10,12,3,1,409,128516.16,231005.16,0,0,1278.252 -10450,12870,23184,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.0575,0,3,3,2019,26,11,0,0,4,11,0,0,0,1,0,33.940182,0,0,1,1,0,0,0,39.38,22.52,-9,-9,3.333333333333333,4,5,0,0,0,11,1,0,874,478971.69,0,134568.67,0,1977.6941 -10451,12871,23185,23186,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3123722,8.49195,0,4,-5,7.4274292,0,-9,-9,2019,12,1,37,37,1,1,0,14.497403,14.497403,0,0,0,0,0,0,0,0,0,0,51.77,58.57,45.43,53.5,8.333333333333334,1,1,0,0,6,9,5,1,935.5,771318.75,201011.34,494636.5,79978.047,4204.8403 -10451,12871,23186,23185,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.591424,8.3981304,0,4,5,60.441593,0,3,3,2019,12,0,48,49,1,0,0,14.03086,14.03086,0,0,0,0,0,0,0,0,8.2253237,0,45.43,53.5,51.77,58.57,5,1,1,0,0,9,9,5,1,935.5,771318.75,201011.34,494636.5,79978.047,4204.8403 -10451,12872,23187,-9,23185,23186,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1002.4344,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,1,424,-225404.72,0,0,0,1002.1043 -10452,12873,23188,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,8.4741545,8.6052094,0,0,-963.57568,0,1,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.1536703,8.1529808,53.68,45.47,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,2257,1485584.3,0,320363.75,0,3869.0779 -10452,12874,23189,-9,23188,-9,1,1,53,0,0,0,1,1,-9,0,4,6.8039794,7.8120227,6.5879097,0,0,-934.15643,0,2,1,2019,6,0,50,60,1,0,0,3.3012285,3.3012285,0,0,0,0,2,1,1,0,6.8321061,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,1659,173525.17,-59636.887,0,0,822.76477 -10452,12875,23190,-9,23188,-9,1,1,49,0,0,0,1,1,-9,0,3,7.1556368,8.1178551,6.8995214,0,0,-971.9856,0,2,1,2019,10,0,50,50,1,0,0,2.9566846,2.9566846,0,0,0,0,0,1,1,0,6.6643133,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,13,7,3,1,504,179947,394649.16,0,0,1255.5911 -10453,12876,23191,23192,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.981576,9.0747051,0,28,-7,84.064392,0,2,2,2019,7,0,38,42,1,0,0,21.403797,21.403797,0,0,0,0,2,0,0,0,1.3687478,0,57.16,56.15,62,47.24,8.333333333333334,1,1,0,0,11,8,5,1,875.5,698154.25,3580.7363,351651.03,17514.859,4889.0996 -10453,12876,23192,23191,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,8.7629566,8.9336948,0,28,7,10.37158,0,2,2,2019,3,0,10,40,1,0,0,65.879395,65.879395,0,0,0,0,7,0,0,0,2.8951263,0,62,47.24,57.16,56.15,10,1,1,0,0,11,8,5,1,875.5,698154.25,3580.7363,351651.03,17514.859,4889.0996 -10454,12877,23193,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.7865705,7.9794064,6.3505349,0,0,-1031.9888,0,2,2,2019,9,0,40,37,1,0,0,7.0716529,7.0716529,0,0,0,0,0,1,1,0,6.522841,0,54.8,50.32,-9,-9,8.333333333333334,1,1,0,0,9,6,3,0,1293.5,107128.84,-7619.3848,0,0,2936.3911 -10454,12877,23194,-9,23193,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.1001,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1293.5,107128.84,-7619.3848,0,0,2936.3911 -10455,12878,23195,-9,23197,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1062.2487,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,0,593,37708.387,-27517.113,0,0,2484.6802 -10455,12878,23196,-9,23197,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1057.0135,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,0,593,37708.387,-27517.113,0,0,2484.6802 -10455,12878,23197,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.1198902,7.6291842,0,0,0,-1033.6962,0,-9,2,2019,11,0,30,25,1,2,0,12.890829,12.890829,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,13,13,3,0,593,37708.387,-27517.113,0,0,2484.6802 -10456,12879,23198,23200,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.7638178,8.9477234,0,4,3,-30.004948,0,-9,-9,2019,9,0,34,37,1,1,0,25.400658,25.400658,0,0,0,0,0,1,1,0,0,0,52,55,48.87,58.55,8,1,1,0,0,1,12,5,1,616,557765.13,374515.59,261215.81,174000.16,4387.9199 -10456,12879,23199,-9,23200,23198,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.0858,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,616,557765.13,374515.59,261215.81,174000.16,4387.9199 -10456,12879,23200,23198,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8941121,8.4503298,0,20,-3,46.114899,0,3,2,2019,11,0,38,37,1,0,0,11.373528,11.373528,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52,55,6.666666666666667,1,1,0,0,6,12,5,1,616,557765.13,374515.59,261215.81,174000.16,4387.9199 -10456,12880,23201,-9,23200,23198,1,1,18,0,1,0,2,2,-9,0,5,7.6414123,7.7227921,0,0,0,-998.42932,0,2,2,2019,6,0,38,0,1,0,1,6.7865186,6.7865186,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,2,12,3,1,1273,64820.301,0,0,0,362.64569 -10457,12881,23202,23203,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.5712199,7.6421371,5.9795227,8,0,-23.618956,0,3,3,2019,10,0,36,37,1,0,0,6.6168132,6.6168132,0,0,0,0,2,0,0,0,4.3823004,6.0107465,57.16,56.15,52.24,48.84,8.333333333333334,1,1,0,0,8,12,4,1,427.5,383490.53,43685.93,419936.75,198547.53,2900.293 -10457,12881,23203,23202,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2289104,8.4474506,0,8,0,86.548683,0,3,3,2019,7,0,35,38,1,0,0,15.547596,15.547596,0,0,0,0,0,0,0,0,6.3166461,0,52.24,48.84,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,1,427.5,383490.53,43685.93,419936.75,198547.53,2900.293 -10458,12882,23204,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.5971608,6.8296018,5.1332231,0,0,-982.58179,0,3,2,2019,10,0,10,-9,1,0,0,9.0442209,9.0442209,0,0,0,0,0,1,1,0,6.0786543,4.9837527,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,7,12,2,1,336,512313.53,0,0,0,556.21564 -10459,12883,23205,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.6740842,7.300488,0,0,0,-1138.8938,0,-9,-9,2019,11,0,30,30,1,0,0,7.4550724,7.4550724,0,0,0,0,0,1,1,0,0,0,20.11,66.45,-9,-9,1.666666666666667,1,1,0,1,9,10,3,0,291,97445.719,11572.194,0,0,468.43573 -10459,12884,23206,-9,23205,-9,1,1,23,0,0,0,1,1,1,0,3,7.4961824,7.0566621,0,0,0,-1037.7668,-9,2,2,2019,24,9,25,0,1,9,1,6.652277,6.652277,0,0,0,0,0,1,1,0,.9026252,0,23.19,63.78,-9,-9,1.666666666666667,1,1,0,1,7,10,3,0,338,-171996.91,-30063.766,0,0,492.54099 -10460,12885,23207,23208,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.6063061,7.3880973,0,8,2,29.010736,0,2,2,2019,7,0,30,30,1,0,0,6.6960726,6.6960726,0,0,0,0,0,0,0,0,7.7592478,0,54.15,48.02,56.33,43.15,8.333333333333334,1,1,0,0,9,9,3,1,1189.5,3667072.5,446009.5,1240904.9,500059.81,2383.1069 -10460,12885,23208,23207,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.0750966,6.0979314,0,8,-2,68.699005,0,3,3,2019,13,2,60,40,1,2,0,.81005931,.81005931,0,0,0,0,0,0,0,0,2.025774,0,56.33,43.15,54.15,48.02,8.333333333333334,1,1,0,0,9,9,3,1,1189.5,3667072.5,446009.5,1240904.9,500059.81,2383.1069 -10460,12886,23209,-9,23208,23207,1,1,25,0,0,0,2,2,-9,0,3,8.8075266,8.5971642,0,0,0,-968.00708,0,3,2,2019,12,0,30,35,1,0,1,22.974358,22.974358,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,608,30568.148,2349.1768,0,0,2282.3726 -10460,12887,23210,-9,23208,23207,1,1,24,0,0,0,2,2,-9,0,3,2.052974,2.0174134,0,0,0,-982.13293,0,3,2,2019,11,0,4,40,1,0,1,.25778937,.25778937,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,1047,94159.227,0,0,0,-227.87439 -10461,12888,23211,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.2230825,6.4697008,0,0,-957.59442,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.3422551,4.8151131,52.25,31.98,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,552,593063.25,55330.156,581944.75,0,1466.2399 -10462,12889,23212,23213,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.2994967,8.381155,0,9,0,-68.873779,0,3,3,2019,11,1,96,72,1,1,0,6.2107635,6.2107635,0,0,0,0,0,0,0,0,0,0,55.3,31.67,58.57,35.72,5,1,1,0,0,11,1,5,0,482.5,277082.75,272977.72,85554.492,0,2939.146 -10462,12889,23213,23212,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.0334024,7.8824172,0,9,0,-47.519646,0,3,2,2019,10,1,60,40,1,1,0,5.0899935,5.0899935,0,0,0,0,0,0,0,0,0,0,58.57,35.72,55.3,31.67,8.333333333333334,1,1,0,0,9,1,5,0,482.5,277082.75,272977.72,85554.492,0,2939.146 -10463,12890,23214,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.8559122,8.909914,0,0,0,-1056.3042,0,2,2,2019,8,0,30,22,1,0,0,17.679159,17.679159,0,0,0,0,7,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,10,10,5,0,194,96696.719,288902.97,160063.78,147257.86,2329.7427 -10464,12891,23215,-9,23216,23218,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-958.60889,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 -10464,12891,23216,23218,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.6663342,7.7174468,0,14,-13,43.659016,0,3,3,2019,7,1,10,10,1,1,0,26.144815,26.144815,0,0,0,0,0,1,1,0,4.7638812,0,57.06,57.76,52.4,55.58,8.333333333333334,1,1,0,0,5,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 -10464,12891,23217,-9,23216,23218,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.78796,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 -10464,12891,23218,23216,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,9.4616413,9.4815159,0,13,13,7.0284867,0,2,1,2019,9,1,32,30,1,1,0,49.288181,49.288181,0,0,0,0,0,1,1,0,3.0668671,0,52.4,55.58,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,1018,655665.5,467205.94,332269.25,91726.25,29070.967 -10465,12892,23219,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1017.2853,0,3,3,2019,21,8,0,47,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,32,43.74,-9,-9,5,1,1,1,1,3,5,1,0,2721,-250068.73,0,0,0,1083.234 -10466,12893,23220,23221,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.177186,6.0152144,29,16,13.357703,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9043751,5.9795451,57.49,31.66,53.99,46.42,6.666666666666667,1,1,0,0,8,2,4,1,4748.5,725335.38,653578,63548.469,48969.645,2498.2954 -10466,12893,23221,23220,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.3010397,8.4239063,0,29,-16,-20.290522,0,2,2,2019,7,1,44,40,1,1,0,10.72085,10.72085,0,0,0,0,2,1,1,0,0,0,53.99,46.42,57.49,31.66,8.333333333333334,1,1,0,0,10,2,4,1,4748.5,725335.38,653578,63548.469,48969.645,2498.2954 -10467,12894,23222,23223,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.1013522,6.2073927,8,23,45.943787,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,8.4645004,0,42,1,1,0,5.1025791,6.2334704,43.84,22.92,32.89,21.66,5,1,1,0,0,1,11,2,1,1314,345054.88,181779.08,145129.56,0,2065.4702 -10467,12894,23223,23222,-9,-9,1,0,47,0,0,0,1,1,-9,1,1,0,0,0,8,-23,-66.528755,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.89,21.66,43.84,22.92,1.666666666666667,1,1,0,0,0,11,2,1,1314,345054.88,181779.08,145129.56,0,2065.4702 -10468,12895,23224,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1014.954,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,8.3705673,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,893,-54552.578,155797.42,0,0,3166.7451 -10469,12896,23225,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-925.51288,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,1,0,440,37712.719,9879.7549,0,0,1111.6281 -10470,12897,23226,23227,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.8193436,8.8599272,0,7,-1,-33.310184,0,-9,-9,2019,15,6,40,38,1,6,0,21.275505,21.275505,0,0,0,0,0,0,0,0,.38585493,0,46.67,55.57,30.67,65.95,8.333333333333334,1,1,0,0,8,7,5,1,313.5,144154.38,105516.28,419077.22,186359.11,3833.7871 -10470,12897,23227,23226,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.4368343,8.3667974,0,7,1,-14.334065,0,2,2,2019,17,6,38,38,1,6,0,14.244511,14.244511,0,0,0,0,0,0,0,0,1.1297612,0,30.67,65.95,46.67,55.57,8.333333333333334,1,1,0,0,6,7,5,1,313.5,144154.38,105516.28,419077.22,186359.11,3833.7871 -10471,12898,23228,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-878.15302,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.37,61.5,-9,-9,5,1,1,0,1,0,13,1,0,559,-176849.97,0,0,0,484.88004 -10471,12899,23229,-9,23228,-9,1,0,36,0,0,0,2,2,-9,0,2,8.1132679,7.9776192,0,0,0,-871.30151,0,3,3,2019,18,6,46,40,1,6,0,10.468173,10.468173,0,0,0,0,0,1,1,0,0,0,32.49,49.1,-9,-9,3.333333333333333,1,1,0,0,10,13,4,0,1299,218265.17,24725.9,0,0,1701.3896 -10472,12900,23230,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2854033,8.4629393,0,0,0,-1063.5444,0,2,1,2019,18,5,39,37,1,5,0,13.397482,13.397482,0,0,0,0,0,0,0,0,1.21595,0,30.77,64.34,-9,-9,3.333333333333333,1,1,0,0,2,10,4,1,741,-204837.98,38378.59,0,0,1661.9591 -10473,12901,23231,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.5303779,6.4432659,0,0,-983.71753,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,1.8945996,0,22.786785,0,1,1,0,0,6.5997519,39.8,26.44,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1051,578804.56,60480.406,267748.53,0,1256.7983 -10474,12902,23232,23233,-9,-9,1,0,38,2,5,0,2,2,-9,0,4,7.8472781,7.9648786,0,17,0,-107.84823,0,-9,-9,2019,9,0,19,19,1,0,0,14.276054,14.276054,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.01,40.66,10,1,1,0,0,12,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 -10474,12902,23233,23232,-9,-9,1,1,38,2,5,0,2,2,-9,0,3,8.6328526,8.5966387,0,17,0,-31.925663,0,2,-9,2019,11,0,45,45,1,0,0,16.921749,16.921749,0,0,0,0,0,1,1,0,6.9987817,0,56.01,40.66,57.16,56.15,1.666666666666667,1,1,0,0,12,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 -10474,12902,23234,-9,23232,23233,1,1,5,2,5,1,3,0,-9,0,4,0,0,0,0,0,-856.92395,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 -10474,12902,23235,-9,23232,23233,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1037.0443,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 -10474,12902,23236,-9,23232,23233,1,1,10,2,5,1,3,0,-9,0,3,0,0,0,0,0,-972.78906,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 -10474,12902,23237,-9,23232,23233,1,1,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1091.3689,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 -10474,12902,23238,-9,23232,23233,1,1,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1082.8739,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,554.28571,305176.25,273089.97,193012.47,141013.84,3720.9734 -10475,12903,23239,23240,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.1761642,7.1912274,0,26,3,-116.79733,0,-9,3,2019,6,0,20,20,1,0,0,6.9253645,6.9253645,0,0,0,0,0,1,1,0,0,0,56.38,48.28,45.09,60.15,10,3,4,0,0,11,8,3,0,607,447144.94,88185.148,205725.38,0,2906.9258 -10475,12903,23240,23239,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.8856163,7.8522158,0,26,-3,-36.52652,0,3,3,2019,6,0,37,37,1,0,0,8.955739,8.955739,0,0,0,0,0,1,1,0,0,0,45.09,60.15,56.38,48.28,8.333333333333334,3,4,0,0,2,8,3,0,607,447144.94,88185.148,205725.38,0,2906.9258 -10475,12904,23241,-9,23240,23239,1,1,23,0,1,0,2,2,-9,0,5,8.3866234,7.9810553,0,0,0,-985.92883,0,1,2,2019,6,0,40,-9,1,0,1,9.1028986,9.1028986,0,0,0,0,0,1,1,0,0,0,51.53,57.01,-9,-9,8.333333333333334,3,4,0,0,5,8,4,0,687,99219.18,0,301081.72,114787.71,1601.2678 -10475,12905,23242,-9,23240,23239,1,1,18,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1080.7529,-9,1,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,1,0,601,0,0,0,0,0 -10476,12906,23243,23244,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.3749676,8.265337,0,5,-5,0,0,-9,-9,2019,11,1,39,40,1,1,0,14.63933,14.63933,0,0,0,0,0,1,1,0,1.1117479,0,43.76,58.35,38,44.52,6.666666666666667,1,1,0,0,7,2,5,1,724.33331,113119.88,155264.27,188402.89,71976.086,3171.0205 -10476,12906,23244,23243,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.3862562,8.3430376,0,5,5,0,0,2,2,2019,12,1,52,42,1,1,0,8.5833082,8.5833082,0,0,0,0,7,1,1,0,0,0,38,44.52,43.76,58.35,6.666666666666667,1,1,0,0,4,2,5,1,724.33331,113119.88,155264.27,188402.89,71976.086,3171.0205 -10476,12906,23245,-9,23243,23244,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.04047,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,724.33331,113119.88,155264.27,188402.89,71976.086,3171.0205 -10477,12907,23246,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.7945738,8.8787127,0,0,0,-1038.728,0,2,2,2019,12,2,40,44,1,2,0,20.322943,20.322943,0,0,0,0,0,0,0,0,0,0,49.61,54.24,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,1068,213060.67,-57528.207,0,0,3078.3486 -10478,12908,23247,23248,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.3829913,5.7387505,7,-4,-102.88189,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,5.0576777,0,0,1,1,0,4.0378709,5.5985541,61.85,22.98,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,1149.5,1011281.6,430654.5,160012.17,0,2315.2554 -10478,12908,23248,23247,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4181633,7.4831877,7,4,98.048302,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.9885392,7.1344681,57.16,56.15,61.85,22.98,8.333333333333334,1,1,0,0,0,12,3,1,1149.5,1011281.6,430654.5,160012.17,0,2315.2554 -10479,12909,23249,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,7.9126067,7.7286139,0,0,0,-1031.2703,0,1,1,2019,11,1,35,35,1,1,0,8.4938736,8.4938736,0,0,0,0,0,0,0,0,6.043787,0,47.69,50.26,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1285,-254658.2,-95549.25,0,0,2131.3828 -10480,12910,23250,23251,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.1641951,8.372654,0,3,2,31.9627,0,-9,-9,2019,16,6,37,38,1,6,0,17.752382,17.752382,0,0,0,0,0,0,0,0,.22406833,0,38.51,59.43,52.49,49.48,8.333333333333334,1,1,0,0,3,2,5,1,706,415519,-4412.981,214461.08,137943.8,2935.2065 -10480,12910,23251,23250,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,8.051096,8.2353468,0,3,-2,16.141024,0,1,1,2019,8,0,44,30,1,0,0,8.6473179,8.6473179,0,0,0,0,0,0,0,0,.35579827,0,52.49,49.48,38.51,59.43,6.666666666666667,1,1,0,0,8,2,5,1,706,415519,-4412.981,214461.08,137943.8,2935.2065 -10481,12911,23252,23253,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.5850959,8.0802498,30,0,77.275681,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,14.957601,0,0,1,1,0,5.4502749,7.8281994,55.47,39.68,59.63,22.67,10,1,1,0,0,0,2,4,1,1373.5,1139106.3,594068.13,328721.53,0,4078.7627 -10481,12911,23253,23252,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.8765645,8.0044956,30,0,-47.224072,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0009818,7.8783627,59.63,22.67,55.47,39.68,3.333333333333333,1,1,0,0,0,2,4,1,1373.5,1139106.3,594068.13,328721.53,0,4078.7627 -10482,12912,23254,23255,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.5416851,8.8545876,0,19,1,-30.001514,0,2,3,2019,9,1,37,29,1,1,0,14.148396,14.148396,0,0,0,0,0,1,1,0,0,0,50.54,62.09,61.01,53.18,6.666666666666667,2,3,0,0,8,8,5,1,862.5,1022353.4,234801.44,337887.38,14469.264,4891.2461 -10482,12912,23255,23254,-9,-9,1,1,42,0,1,0,1,1,-9,0,5,9.0872898,8.7549343,0,19,-1,69.896721,0,1,1,2019,6,0,74,62,1,0,0,11.509076,11.509076,0,0,0,0,0,1,1,0,3.1403983,0,61.01,53.18,50.54,62.09,8.333333333333334,2,3,0,0,9,8,5,1,862.5,1022353.4,234801.44,337887.38,14469.264,4891.2461 -10483,12913,23256,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.6139812,8.7089701,0,0,0,-993.7785,0,2,3,2019,7,0,47,37,1,0,0,13.179796,13.179796,0,0,0,0,0,0,0,0,0,0,59.91,42.65,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,456,895459.19,220101.59,287366.38,0,2080.23 -10484,12914,23257,23258,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.3428812,8.4535398,0,6,-4,-43.592701,0,1,1,2019,10,0,55,70,1,0,0,7.1110005,7.1110005,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,8,7,5,1,373.5,39147.648,88790.68,353075.63,241615.56,4091.1165 -10484,12914,23258,23257,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.162797,9.108036,0,6,4,112.95378,0,-9,-9,2019,7,0,50,50,1,0,0,20.899506,20.899506,0,0,0,0,0,0,0,0,2.6957643,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,373.5,39147.648,88790.68,353075.63,241615.56,4091.1165 -10485,12915,23259,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4819393,8.7739878,0,0,0,-1068.087,-9,1,1,2019,11,1,35,0,1,1,0,22.641411,22.641411,0,0,0,0,0,1,1,0,0,0,17.88,67.62,-9,-9,5,1,1,0,0,9,9,5,0,526,101779.04,-51876.719,0,0,2395.1233 -10486,12916,23260,23261,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.1313705,8.1495399,0,30,3,64.473213,0,3,-9,2019,22,6,39,45,1,6,0,14.896008,14.896008,0,0,0,0,0,0,0,0,0,0,35.44,44.94,46.87,47.3,5,1,1,0,0,8,2,5,1,518.5,355540.63,107288.84,188969.91,125987.15,3103.5654 -10486,12916,23261,23260,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8739567,8.0775747,0,30,-3,40.707241,0,3,2,2019,20,6,42,40,1,6,0,9.5399513,9.5399513,0,0,0,0,0,0,0,0,3.5462024,0,46.87,47.3,35.44,44.94,10,1,1,0,0,9,2,5,1,518.5,355540.63,107288.84,188969.91,125987.15,3103.5654 -10486,12917,23262,-9,23261,23260,1,0,23,0,0,0,2,2,-9,0,2,7.6800108,7.5425577,0,0,0,-968.50604,0,2,2,2019,14,2,36,40,1,2,1,5.5456719,5.5456719,0,0,0,0,0,0,0,0,0,0,48.64,41.4,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,354,26102.156,-10775.268,0,0,932.87659 -10487,12918,23263,23264,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.0021563,8.8235903,0,34,3,-21.217888,0,3,3,2019,7,0,48,36,1,0,0,16.925404,16.925404,0,0,0,0,0,0,0,0,2.6113362,0,62.67,44.01,51.83,57.2,8.333333333333334,1,1,0,0,10,6,5,1,1375.5,438701.03,274059.5,145614.92,0,4178.249 -10487,12918,23264,23263,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.3893929,8.5065393,0,34,-3,-5.1725488,0,2,3,2019,10,0,37,38,1,0,0,15.111485,15.111485,0,0,0,0,7,0,0,0,4.32198,0,51.83,57.2,62.67,44.01,5,1,1,0,0,10,6,5,1,1375.5,438701.03,274059.5,145614.92,0,4178.249 -10488,12919,23265,23266,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,54,-7,45.165764,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,123.48273,0,71.5,1,1,0,0,0,41.77,26.19,60.14,38.88,8.333333333333334,1,1,0,0,0,5,2,1,1372,27219.078,105599.56,124473.44,0,2266.1245 -10488,12919,23266,23265,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.7174129,6.9900374,55,7,-87.954536,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.8083111,7.0916333,60.14,38.88,41.77,26.19,10,1,1,0,0,0,5,2,1,1372,27219.078,105599.56,124473.44,0,2266.1245 -10489,12920,23267,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.18152,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,540,1934.3383,0,0,0,1737.881 -10490,12921,23268,23269,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.4463634,9.4513636,7.3835039,10,4,13.028645,0,3,2,2019,21,9,37,42,1,9,0,30.644016,30.644016,0,0,0,0,0,1,1,0,5.2883472,7.6225924,25.35,55.96,54.79,55.86,5,1,1,0,0,11,7,5,1,580.33331,939101.63,521381.63,642562.81,152927.47,4712.1602 -10490,12921,23269,23268,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,5.6641517,7.3269534,6.9482927,10,-4,114.1647,0,-9,2,2019,7,0,5,5,1,0,0,8.2110825,8.2110825,0,0,0,0,2,1,1,0,0,6.9563637,54.79,55.86,25.35,55.96,8.333333333333334,1,1,0,0,11,7,5,1,580.33331,939101.63,521381.63,642562.81,152927.47,4712.1602 -10490,12921,23270,-9,23269,23268,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1269.1414,-9,2,1,2019,19,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.14,68.03,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,580.33331,939101.63,521381.63,642562.81,152927.47,4712.1602 -10491,12922,23271,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.9673386,6.842382,0,0,-966.59882,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.0528798,6.5823741,50.78,33.91,-9,-9,5,1,1,0,0,0,11,2,0,625,146050.22,91692.305,0,0,667.4743 -10492,12923,23272,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8911753,8.0296068,7.4367785,0,0,-1040.1622,0,2,2,2019,8,0,20,20,1,0,0,6.0623598,6.0623598,0,0,0,0,7,0,0,0,5.2745962,7.7233853,48.7,56.22,-9,-9,1.666666666666667,1,1,0,0,10,10,3,1,365,1196934.5,600452,114953.79,0,1369.501 -10493,12924,23273,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.5371857,9.3258705,0,7,-3,-10.218607,0,1,1,2019,4,0,38,30,1,0,0,49.855564,49.855564,0,0,0,0,2,0,0,0,5.1965041,0,57.9,51.84,51.24,58.84,8.333333333333334,1,1,0,0,7,4,5,1,582,199300.33,290996.19,97245.883,14465.43,12583.772 -10493,12925,23274,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.5600142,8.0395088,0,7,3,32.083641,0,2,2,2019,11,2,40,40,1,2,0,6.9789634,6.9789634,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.9,51.84,6.666666666666667,1,1,0,0,9,4,5,1,494,-31529.998,-10715.353,0,0,914.05359 -10494,12926,23275,23276,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.0928631,8.3890038,0,9,-12,37.174313,0,2,2,2019,12,1,37,76,1,1,0,9.0080204,9.0080204,0,0,0,0,2,0,0,0,4.9637237,0,53.06,42.33,50.11,55.32,8.333333333333334,1,1,0,0,10,5,5,1,1525.5,847285.88,383393.44,80135.398,56825.508,2954.8906 -10494,12926,23276,23275,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3338947,8.0705872,0,9,12,109.36198,0,3,2,2019,9,0,38,38,1,0,0,11.960061,11.960061,0,0,0,0,0,0,0,0,2.2889946,0,50.11,55.32,53.06,42.33,8.333333333333334,1,1,0,0,10,5,5,1,1525.5,847285.88,383393.44,80135.398,56825.508,2954.8906 -10495,12927,23277,23278,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6127796,8.5993462,0,37,2,-78.522575,0,3,3,2019,16,4,55,55,1,4,0,14.722807,14.722807,0,0,0,0,0,1,1,0,2.3410323,0,46.31,58.29,37.42,59.7,6.666666666666667,1,1,0,0,6,9,4,1,635,1724382.5,1204594.8,453946.28,0,2129.2383 -10495,12927,23278,23277,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,36,-2,-26.09634,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,2.7973285,0,37.42,59.7,46.31,58.29,6.666666666666667,1,1,0,0,0,9,4,1,635,1724382.5,1204594.8,453946.28,0,2129.2383 -10495,12928,23279,-9,23278,23277,1,1,27,0,0,0,2,2,-9,1,5,7.3227615,7.8390498,0,0,0,-1027.1083,0,2,3,2019,12,1,42,27,1,1,1,5.1285629,5.1285629,0,0,0,0,0,1,1,0,3.3682892,0,51.14,60.45,-9,-9,1.666666666666667,1,1,0,0,7,9,3,1,1341,-399042.22,0,0,0,887.35071 -10495,12929,23280,-9,23278,23277,1,0,23,0,0,0,1,1,-9,0,3,7.9474144,8.4783134,0,0,0,-1102.3203,0,2,2,2019,8,0,12,55,1,0,1,35.205357,35.205357,0,0,0,0,0,1,1,0,2.6578822,0,45.89,53.15,-9,-9,5,1,1,0,0,6,9,4,1,333,109282.46,-72760.023,0,0,1334.1882 -10495,12930,23281,-9,23278,23277,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-793.05078,-9,2,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,1,1016,98012.531,0,0,0,0 -10495,12931,23282,-9,23278,23277,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-895.42047,1,2,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.27712241,0,44.6,58.09,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,3027,-164285.66,0,0,0,-424.28482 -10496,12932,23283,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.4744258,7.6871581,0,0,0,-928.10901,0,3,3,2019,14,2,47,50,1,2,0,4.3724031,4.3724031,0,0,0,0,0,1,1,0,0,0,37.47,50.46,-9,-9,6.666666666666667,2,3,0,0,8,11,2,0,562,-160786.47,38405.586,0,0,1611.6232 -10497,12933,23284,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.3132014,5.5521584,0,0,-999.37476,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1101627,5.6931572,58.96,28.92,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,412,-46181.555,18347.924,243658.27,0,791.89032 -10498,12934,23285,23286,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5703344,8.5246582,0,7,5,86.822197,0,-9,-9,2019,7,0,42,42,1,0,0,9.6328201,9.6328201,0,0,0,0,0,0,0,0,0,0,59.6,46.99,54.96,53.17,8.333333333333334,1,1,0,0,7,2,5,1,1543.5,1602647,262034,110449.02,0,3091.8042 -10498,12934,23286,23285,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1837206,8.3027601,0,7,-5,-74.000603,0,-9,-9,2019,11,0,37,38,1,0,0,13.037873,13.037873,0,0,0,0,0,0,0,0,0,0,54.96,53.17,59.6,46.99,5,1,1,0,0,12,2,5,1,1543.5,1602647,262034,110449.02,0,3091.8042 -10499,12935,23287,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.9092693,7.1625547,0,0,-1037.6403,0,3,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9819946,53.71,41.42,-9,-9,10,4,5,0,0,0,6,2,0,809,296416.66,209261.39,0,0,1730.8549 -10500,12936,23288,-9,23289,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.63831,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,712.5,-216208.61,47585.051,0,0,1698.4509 -10500,12936,23289,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,6.7771788,6.8454661,0,0,0,-931.21979,0,-9,-9,2019,16,4,32,17,1,4,0,4.4385056,4.4385056,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,9,2,0,712.5,-216208.61,47585.051,0,0,1698.4509 -10501,12937,23290,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6514359,8.4816751,0,0,0,-976.43384,0,2,2,2019,25,11,40,40,1,11,0,17.418087,17.418087,0,0,0,0,0,1,1,0,0,0,22.65,64.05,-9,-9,1.666666666666667,1,1,0,0,8,6,5,1,177,6778.8921,84620.445,0,0,2518.4763 -10502,12938,23291,23292,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,7,-3,-48.081841,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.2031088,0,43.35,52.88,56.1,49.93,6.666666666666667,1,1,0,0,0,11,3,1,806.5,532613.69,374388.06,154586.09,0,1913.6724 -10502,12938,23292,23291,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.0103769,7.8616734,7,3,-74.972939,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1812556,7.6957045,56.1,49.93,43.35,52.88,8.333333333333334,1,1,0,0,3,11,3,1,806.5,532613.69,374388.06,154586.09,0,1913.6724 -10503,12939,23293,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.3905249,8.096159,0,0,0,-1099.9211,0,-9,-9,2019,18,8,37,12,1,8,0,11.160174,11.160174,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,5,1,1,0,0,2,10,4,0,398,-113222.11,0,0,0,1879.1283 -10504,12940,23294,-9,23297,23295,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.0044,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 -10504,12940,23295,23297,-9,-9,1,1,32,0,3,0,3,3,-9,0,4,8.3163309,8.6666641,0,3,3,80.992027,0,-9,-9,2019,10,0,60,16,1,1,0,10.033796,10.033796,0,0,0,0,0,1,1,0,0,0,51,57,45,55.12,7,2,3,0,0,1,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 -10504,12940,23296,-9,23297,23295,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.8564,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 -10504,12940,23297,23295,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,3,-3,-24.697449,1,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,55.12,51,57,6.666666666666667,1,1,0,0,6,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 -10504,12940,23298,-9,23297,23295,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.7856,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,0,1742.2,302587.88,0,230080.17,158076.67,4376.3623 -10505,12941,23299,23300,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,6.7024293,7.7718515,5.9982939,3,10,-33.618797,0,2,2,2019,22,10,31,30,1,10,0,3.7787266,3.7787266,0,0,0,0,2,0,0,0,4.2670684,6.5139346,31.72,61.01,48.87,58.55,3.333333333333333,1,1,0,0,7,11,5,1,196,2264152.8,1580765.5,269113.38,0,3642.7598 -10505,12941,23300,23299,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.6422997,8.7921877,0,3,-10,-35.698845,0,3,2,2019,8,0,50,45,1,0,0,16.514662,16.514662,0,0,0,0,2,0,0,0,2.1391368,0,48.87,58.55,31.72,61.01,6.666666666666667,1,1,0,0,7,11,5,1,196,2264152.8,1580765.5,269113.38,0,3642.7598 -10505,12942,23301,-9,23299,23300,1,1,22,0,0,1,1,0,0,0,4,0,7.8248153,7.8991117,0,0,-1025.4437,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,7.6677504,0,50.62,53.79,-9,-9,6.666666666666667,1,1,0,0,4,11,3,1,524,-289506.84,-166678.44,0,0,974.125 -10506,12943,23302,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5784378,8.5592031,0,0,0,-1056.4292,0,1,1,2019,5,0,46,44,1,0,0,11.827485,11.827485,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,2,5,0,2012,466770.22,40424.941,0,0,2045.1724 -10507,12944,23303,23305,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7837086,7.7279596,0,9,2,37.823811,0,1,1,2019,13,2,38,38,1,2,0,7.4964747,7.4964747,0,0,0,0,0,1,1,0,0,0,40.42,54.21,39.77,49.18,6.666666666666667,1,1,0,0,9,2,4,1,392.66666,1972426.9,1422789.1,321149.09,79674.023,2775.7053 -10507,12944,23304,-9,23303,23305,1,1,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-985.6142,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.95,57.56,-9,-9,10,1,1,0,0,1,2,4,1,392.66666,1972426.9,1422789.1,321149.09,79674.023,2775.7053 -10507,12944,23305,23303,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5376844,8.2632017,0,9,-2,64.069817,0,1,1,2019,16,4,41,42,1,4,0,12.179154,12.179154,0,0,0,0,0,1,1,0,0,0,39.77,49.18,40.42,54.21,6.666666666666667,1,1,0,0,9,2,4,1,392.66666,1972426.9,1422789.1,321149.09,79674.023,2775.7053 -10507,12945,23306,-9,23303,23305,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-985.88379,-9,2,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.23,56.21,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,1276,56682.523,0,0,0,0 -10508,12946,23307,23308,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.3759995,9.5134382,0,11,3,-3.6931429,0,-9,-9,2019,7,0,43,50,1,0,0,25.680485,25.680485,0,0,0,0,0,0,0,0,2.3659701,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,1393.5,1743078.8,1488690.5,303074.44,73899.75,3442.1338 -10508,12946,23308,23307,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.2188606,6.756393,0,33,-3,-104.81208,0,2,1,2019,9,0,17,11,1,0,0,5.7530293,5.7530293,0,0,0,0,0,0,0,0,1.7146331,0,57.16,56.15,57.16,56.15,1.666666666666667,1,1,0,0,13,10,5,1,1393.5,1743078.8,1488690.5,303074.44,73899.75,3442.1338 -10508,12947,23309,-9,23308,23307,1,1,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-999.36462,-9,1,1,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1.049675,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,239,258737.19,0,0,0,-40.310638 -10508,12948,23310,-9,23308,23307,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.8497,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.834218,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,583,-57384.043,0,0,0,-266.52808 -10509,12949,23311,-9,23313,23314,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4841,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 -10509,12949,23312,-9,23313,23314,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.75836,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 -10509,12949,23313,23314,-9,-9,1,0,43,0,2,0,2,2,-9,1,2,0,0,0,21,1,53.282009,0,2,2,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,7.400691,0,43.33,27.43,54.5,57.5,3.333333333333333,1,1,0,0,0,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 -10509,12949,23314,23313,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,9.5938263,9.459095,0,21,-1,12.332092,0,2,1,2019,5,0,47,50,1,0,0,41.169586,41.169586,0,0,0,0,7,1,1,0,0,0,54.5,57.5,43.33,27.43,8.333333333333334,1,1,0,0,7,4,5,1,743.75,543884.44,142523.02,538650.69,307544.81,6269.3833 -10510,12950,23315,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,6.5531249,6.7737107,0,0,-911.02374,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.617274,0,0,1,1,0,0,6.5275998,44.18,23.2,-9,-9,5,1,1,0,0,0,4,2,1,467,3677.1089,0,0,0,1443.4551 -10511,12951,23316,23317,-9,-9,1,1,65,0,0,0,2,2,-9,1,4,7.859684,8.6994591,7.4876537,47,-2,-72.706047,0,3,3,2019,11,0,48,48,1,0,0,7.794517,7.794517,0,0,0,0,0,1,1,0,0,7.7898679,57.16,56.15,62.49,55.09,10,1,1,0,0,8,4,4,1,398,808866.38,483605.63,262944.84,0,3150.7183 -10511,12951,23317,23316,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.5268164,6.3522677,47,2,113.28815,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0762267,62.49,55.09,57.16,56.15,10,1,1,0,0,7,4,4,1,398,808866.38,483605.63,262944.84,0,3150.7183 -10512,12952,23318,23319,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9123421,7.9979901,49,4,121.69257,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3361173,7.9631581,61.61,37.79,51.37,35.92,8.333333333333334,1,1,0,0,0,7,3,1,520,933851.19,390239.03,295073.81,0,2156.5837 -10512,12952,23319,23318,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,49,-4,6.9495254,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5463023,0,51.37,35.92,61.61,37.79,8.333333333333334,1,1,0,0,0,7,3,1,520,933851.19,390239.03,295073.81,0,2156.5837 -10513,12953,23320,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.4165502,6.3067098,0,0,-953.08887,-9,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.2549205,55,45,-9,-9,8,3,4,0,0,0,4,2,1,886,40808.762,118880.3,0,0,1957.2593 -10514,12954,23321,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-868.05402,0,3,3,2019,19,7,0,37,3,7,0,0,0,0,0,0,0,0,1,1,0,.82510102,0,46.45,54.09,-9,-9,5,1,1,1,0,7,9,1,1,772,300690.5,0,185590.25,0,-408.23755 -10515,12955,23322,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.8098574,7.6217494,0,0,-1080.1986,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2835288,7.8376985,57.16,56.15,-9,-9,10,1,1,0,0,12,10,3,1,757,1009079,565981.19,3029.3521,0,1485.3805 -10516,12956,23323,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.7907619,8.5769033,0,0,0,-1015.037,0,2,1,2019,8,0,44,45,1,0,0,15.686272,15.686272,0,0,0,0,0,0,0,0,3.5350833,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,842,179743.84,22553.217,0,0,1993.2471 -10517,12957,23324,23325,-9,-9,1,1,61,2,2,0,3,3,-9,0,5,6.6249404,7.0696726,0,34,2,51.069115,0,3,3,2019,5,0,16,24,1,0,0,7.0892763,7.0892763,0,0,0,0,0,1,1,0,0,0,57,55,35.06,50.61,10,2,3,0,1,6,4,2,1,409,2871232.5,1082086.8,1282156.5,0,949.01428 -10517,12957,23325,23324,-9,-9,1,0,59,2,2,0,3,3,-9,0,2,6.4718604,6.2156749,0,41,-2,-16.388008,0,3,3,2019,21,9,11,0,1,9,0,7.8595843,7.8595843,0,0,0,0,0,1,1,0,0,0,35.06,50.61,57,55,3.333333333333333,2,3,0,1,9,4,2,1,409,2871232.5,1082086.8,1282156.5,0,949.01428 -10517,12958,23326,23329,-9,-9,1,1,30,2,2,0,1,1,-9,0,3,7.5311446,7.7251954,0,4,1,-50.96452,0,-9,-9,2019,6,0,46,37,1,0,0,5.855124,5.855124,0,0,0,0,0,1,1,0,0,0,50.82,57.78,32.84,60.85,8.333333333333334,2,3,0,0,3,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 -10517,12958,23327,-9,23329,23326,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2075,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 -10517,12958,23328,-9,23329,23326,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.0946,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 -10517,12958,23329,23326,23325,23324,1,0,29,2,2,0,2,2,-9,0,3,7.2242985,7.1556158,0,4,-1,25.72887,0,3,3,2019,14,3,40,18,1,3,0,3.7539344,3.7539344,0,0,0,0,0,1,1,0,0,0,32.84,60.85,50.82,57.78,6.666666666666667,2,3,0,0,7,4,3,1,1432.5,101285.42,29942.781,0,0,2266.939 -10518,12959,23330,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.7517347,8.4127626,0,0,0,-1020.4912,0,2,2,2019,14,3,44,41,1,3,0,16.658766,16.658766,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,10,7,5,0,1811,614358.44,-35876.738,804026.44,292750.31,2397.8423 -10519,12960,23331,23332,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,1,-1,0,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,33.28,22.89,24.93,19.95,3.333333333333333,1,1,0,0,0,12,2,0,1036.5,102720.03,0,0,0,1943.2042 -10519,12960,23332,23331,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,1,1,0,-9,3,3,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,24.93,19.95,33.28,22.89,1.666666666666667,1,1,0,0,0,12,2,0,1036.5,102720.03,0,0,0,1943.2042 -10520,12961,23333,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.4465179,8.3522482,0,0,0,-1095.4529,0,2,2,2019,11,0,8,6,1,0,0,85.862312,85.862312,0,0,0,0,2,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,216,163017.44,9915.4463,0,0,2415.8464 -10521,12962,23334,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,4.8371749,8.7836676,8.6943998,0,0,-1011.0358,0,-9,-9,2019,20,9,4,4,1,9,0,3.8949919,3.8949919,0,0,0,0,0,0,0,0,9.0647783,0,34.36,57.34,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,140,108027.37,288136.91,83320.219,86450.141,3237.998 -10522,12963,23335,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.0067272,7.8397875,0,0,-996.88611,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8462646,8.1098728,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,6,8,4,1,102,247204.83,349715.72,378733.63,0,2362.6492 -10523,12964,23336,23337,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,5.1000547,5.2037954,59,-2,-112.34529,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1021037,5.2656417,55.94,47.09,62.27,32.41,8.333333333333334,1,1,0,0,4,7,2,1,943.5,702162,102337.02,183973.5,0,1533.3474 -10523,12964,23337,23336,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.5047011,6.3416162,59,2,147.1525,-9,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0788889,6.5687833,62.27,32.41,55.94,47.09,8.333333333333334,1,1,0,0,0,7,2,1,943.5,702162,102337.02,183973.5,0,1533.3474 -10524,12965,23338,-9,-9,-9,1,1,32,1,4,0,1,1,-9,0,4,0,0,0,0,0,-930.33496,0,3,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,57,-9,-9,7,2,3,1,0,4,8,1,0,924,-94889.422,0,0,0,0 -10525,12966,23339,23340,-9,-9,1,0,57,1,2,0,1,1,-9,0,3,7.9877634,8.2713871,0,37,-1,110.7675,0,3,2,2019,6,0,45,45,1,0,0,8.9510794,8.9510794,0,0,0,0,0,1,1,0,0,0,57.33,53.46,47,38,8.333333333333334,2,3,0,0,9,5,4,1,896.5,599878.31,157928.03,229072.27,0,2612.5383 -10525,12966,23340,23339,-9,-9,1,1,58,1,2,0,3,3,-9,0,2,8.3397188,7.9394908,0,37,1,-46.943092,0,3,2,2019,13,2,38,40,1,2,0,10.465019,10.465019,0,0,0,0,0,1,1,0,0,0,47,38,57.33,53.46,3.333333333333333,2,3,0,0,9,5,4,1,896.5,599878.31,157928.03,229072.27,0,2612.5383 -10525,12967,23341,-9,23339,23340,1,1,31,1,2,0,2,2,-9,0,4,8.4514971,8.6351109,0,0,0,-1072.5697,0,2,2,2019,8,1,53,48,1,1,1,12.352474,12.352474,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,2,3,0,0,5,5,5,1,186,-210595.56,34130.363,0,0,1603.038 -10525,12968,23342,-9,23343,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.94092,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,801,79938.82,0,288954.97,170104.16,1300.3662 -10525,12968,23343,-9,23339,23340,1,0,33,1,2,0,1,1,-9,0,3,7.8860211,7.8703856,0,0,0,-1138.6743,-9,1,3,2019,29,11,28,0,1,11,1,8.6858559,8.6858559,0,0,0,0,0,1,1,0,1.8165894,0,37.47,51.92,-9,-9,5,2,3,0,0,5,5,3,1,801,79938.82,0,288954.97,170104.16,1300.3662 -10525,12968,23344,-9,23343,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.99261,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,801,79938.82,0,288954.97,170104.16,1300.3662 -10526,12969,23345,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3465471,8.3044348,0,0,0,-1045.2644,-9,2,2,2019,11,2,37,0,1,2,1,11.685734,11.685734,0,0,0,0,2,1,1,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,494,-95353.227,0,0,0,1384.5621 -10527,12970,23346,-9,23347,23348,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.38373,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 -10527,12970,23347,23348,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.8883915,7.9823537,0,1,-4,-5.4231615,-9,3,3,2019,8,0,38,0,1,0,0,8.5049868,8.5049868,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.4,54.12,8.333333333333334,1,1,0,0,13,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 -10527,12970,23348,23347,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.4843006,8.6423035,0,17,4,-27.135904,-9,3,3,2019,8,0,50,0,1,0,0,11.215785,11.215785,0,0,0,0,0,1,1,0,0,0,47.4,54.12,54.2,57.49,8.333333333333334,1,1,0,0,13,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 -10527,12970,23349,-9,23347,23348,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1039.2515,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,4,0,1589.75,-4017.2813,16934.717,120799.18,0,3367.2288 -10528,12971,23350,23352,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,7.7695465,7.9973726,0,7,5,-113.94123,0,2,2,2019,10,0,40,40,1,1,0,8.0519753,8.0519753,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,1,1,0,0,6,4,3,0,466,164732.42,71581.148,123334.32,93416.75,1607.9592 -10528,12971,23351,-9,23352,23350,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-897.72003,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,466,164732.42,71581.148,123334.32,93416.75,1607.9592 -10528,12971,23352,23350,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,0,0,0,7,-5,-4.1442933,0,-9,-9,2019,11,0,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,1,1,0,0,9,4,3,0,466,164732.42,71581.148,123334.32,93416.75,1607.9592 -10529,12972,23353,23354,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.3339663,6.3427448,51,1,58.440834,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,2.5945385,0,2,1,1,0,0,6.5844746,53.63,35.18,55.19,22.45,5,1,1,0,0,0,7,2,1,275.5,898457.5,169065.31,658706.31,0,2353.8621 -10529,12972,23354,23353,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,6.9480491,6.5673227,51,-1,8.9686499,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.505321,6.8696795,55.19,22.45,53.63,35.18,5,1,1,0,0,5,7,2,1,275.5,898457.5,169065.31,658706.31,0,2353.8621 -10530,12973,23355,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.2223473,8.4305553,0,0,0,-1000.0961,0,3,3,2019,8,0,37,37,1,0,0,15.510221,15.510221,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,3,4,0,0,11,7,4,0,709,110166.88,8928.5605,0,0,2015.2014 -10530,12973,23356,-9,23355,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.5515,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,4,0,709,110166.88,8928.5605,0,0,2015.2014 -10530,12974,23357,-9,23355,-9,1,1,21,0,1,0,2,2,-9,0,4,8.0872507,7.6447825,0,0,0,-1123.8046,0,2,-9,2019,0,0,49,32,1,0,1,6.6085777,6.6085777,0,0,0,0,0,1,1,0,4.3719354,0,48,59,-9,-9,5,3,4,0,0,3,7,4,0,235,335909.91,0,0,0,1144.2633 -10531,12975,23358,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.5568461,7.4368248,0,0,-944.50476,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5300827,7.4069629,57.92,51.82,-9,-9,10,1,1,0,0,0,6,3,1,900,802188.88,272076.38,294373.97,0,1571.0739 -10532,12976,23359,-9,23361,23362,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.37677,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 -10532,12976,23360,-9,23361,23362,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1724,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 -10532,12976,23361,23362,-9,-9,1,0,49,0,2,0,3,3,-9,0,2,7.8192945,7.7410316,0,29,-2,-143.09392,0,2,2,2019,8,1,38,37,1,1,0,9.3443689,9.3443689,0,0,0,0,0,1,1,0,0,0,58.98,7.33,56.19,46.16,6.666666666666667,1,1,0,0,7,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 -10532,12976,23362,23361,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,8.7913094,8.3628321,0,29,2,59.304317,0,3,3,2019,8,1,40,41,1,1,0,15.556677,15.556677,0,0,0,0,0,1,1,0,3.7356589,0,56.19,46.16,58.98,7.33,6.666666666666667,1,1,0,0,10,7,4,1,350.5,673143.94,399183.53,316815.84,59168.484,3129.2554 -10532,12977,23363,-9,23361,23362,1,1,22,0,2,0,2,2,-9,0,4,8.3022642,8.3132143,0,0,0,-1059.9419,0,3,3,2019,10,3,50,58,1,3,1,9.1539106,9.1539106,0,0,0,0,0,1,1,0,0,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,431,235611.78,0,278699.63,123848.09,1612.4657 -10533,12978,23364,23365,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.553978,8.7885075,7.4447565,33,-16,-10.035529,0,2,2,2019,5,0,38,38,1,0,0,17.696014,17.696014,0,0,0,0,0,1,1,0,0,7.300561,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,7,4,5,1,327,1148826.3,657196.63,229022.13,0,4579.6523 -10533,12978,23365,23364,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.8630123,6.6769419,31,16,21.587786,0,1,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.51331836,6.9245577,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,0,4,5,1,327,1148826.3,657196.63,229022.13,0,4579.6523 -10533,12979,23366,-9,23364,23365,1,1,23,0,0,0,1,1,-9,0,5,7.6086073,7.712821,0,0,0,-889.60242,0,2,2,2019,8,0,35,38,1,0,1,6.8054523,6.8054523,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,368,-189961.73,0,0,0,626.59412 -10534,12980,23367,23368,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9394875,8.1774378,0,4,-1,142.3322,0,-9,-9,2019,7,0,37,37,1,0,0,9.0581427,9.0581427,0,0,0,0,0,0,0,0,7.4108744,0,53.59,49.64,9.42,47.38,6.666666666666667,1,1,0,0,7,4,4,1,584,-186551.39,0,0,0,2511.2188 -10534,12980,23368,23367,-9,-9,1,1,47,0,0,0,2,2,-9,0,1,7.3816595,7.1914911,0,4,1,45.578674,0,-9,-9,2019,27,12,45,40,1,12,0,3.314692,3.314692,0,0,0,0,0,0,0,0,5.0567722,0,9.42,47.38,53.59,49.64,1.666666666666667,1,1,0,0,7,4,4,1,584,-186551.39,0,0,0,2511.2188 -10535,12981,23369,-9,-9,-9,1,1,78,0,1,0,2,2,-9,0,1,0,7.3601003,7.3102479,0,0,-985.59216,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,3.3926008,0,0,1,1,0,.0038438498,7.5487499,28.9,37.08,-9,-9,3.333333333333333,1,1,0,1,0,9,3,1,444,26357.561,66725.328,0,0,2003.8745 -10536,12982,23370,23371,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,7,-2,44.839783,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8137484,0,53.65,41.29,48.14,38.86,8.333333333333334,1,1,0,0,0,7,3,1,433,1033647,387632.56,662613.19,0,2277.5186 -10536,12982,23371,23370,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.9801712,7.738833,7,2,-49.113499,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.9382434,8.4571857,48.14,38.86,53.65,41.29,8.333333333333334,1,1,0,0,0,7,3,1,433,1033647,387632.56,662613.19,0,2277.5186 -10537,12983,23372,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,9.1417074,8.9308443,0,0,0,-940.19476,0,-9,-9,2019,13,2,43,58,1,2,0,22.173971,22.173971,0,0,0,0,0,0,0,0,1.9948959,0,37.44,59.97,-9,-9,5,1,1,0,1,8,9,5,0,1109,2518.4414,17681.445,0,0,2413.146 -10538,12984,23373,-9,23378,23377,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.37201,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 -10538,12984,23374,-9,23378,23377,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-938.50421,-9,3,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 -10538,12984,23375,-9,23378,23377,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1030.7388,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 -10538,12984,23376,-9,23378,23377,1,1,16,0,4,0,3,3,-9,0,5,0,0,0,0,0,-968.56219,-9,3,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,6,2,0,1249.1666,0,0,0,0,3098.8223 -10538,12984,23377,23378,-9,-9,1,1,48,0,4,0,1,1,-9,0,4,7.2319102,7.1478419,0,19,10,-46.876854,0,3,3,2019,14,3,35,40,1,3,0,4.6865458,4.6865458,0,0,0,0,0,1,0,1,0,0,46.87,43.31,46.39,29.38,10,2,3,0,0,8,6,2,0,1249.1666,0,0,0,0,3098.8223 -10538,12984,23378,23377,-9,-9,1,0,38,0,4,0,3,3,-9,0,1,0,0,0,19,-10,24.984787,0,3,1,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,6.1703458,0,46.39,29.38,46.87,43.31,5,2,3,0,0,1,6,2,0,1249.1666,0,0,0,0,3098.8223 -10539,12985,23379,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2968321,8.124094,0,0,0,-929.46808,-9,1,1,2019,11,0,50,0,1,2,0,8.6249514,8.6249514,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,2,3,0,0,3,8,4,0,263,-217163.19,-16782.764,0,0,1581.3282 -10540,12986,23380,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.1981554,7.0824442,0,0,-939.32361,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.9199772,7.4484258,58.87,37.89,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,1436,78667.203,291219.69,160157.64,0,3332.7844 -10541,12987,23381,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.2310939,6.4281797,0,0,-954.34192,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1011462,6.6722202,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,561,490962.03,23022.207,263388.28,0,475.51617 -10542,12988,23382,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,9.3275366,9.3624449,0,0,0,-1019.8829,0,1,1,2019,10,2,63,57,1,2,0,21.984261,21.984261,0,0,0,0,0,0,0,0,5.8031783,0,45.71,60.6,-9,-9,6.666666666666667,2,3,0,0,11,8,5,0,1060,325196.63,7168.3086,0,0,4684.2529 -10543,12989,23383,-9,23384,23386,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.15,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 -10543,12989,23384,23386,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,8.4076653,8.7188501,0,10,3,-93.537498,0,-9,-9,2019,10,0,35,35,1,0,0,15.457294,15.457294,0,0,0,0,0,1,1,0,0,0,43.37,57.28,52,54.51,3.333333333333333,1,1,0,0,12,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 -10543,12989,23385,-9,23384,23386,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.81885,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 -10543,12989,23386,23384,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.479125,8.6524792,0,10,-3,60.10244,0,-9,-9,2019,11,0,47,50,1,0,0,11.348669,11.348669,0,0,0,0,0,1,1,0,0,0,52,54.51,43.37,57.28,8.333333333333334,1,1,0,0,11,2,5,1,807.25,296226.94,216570.36,110998.17,77546.172,3909.2522 -10544,12990,23387,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.5527287,8.5658636,0,0,0,-1213.5254,0,-9,-9,2019,10,0,50,50,1,0,0,8.4006939,8.4006939,0,0,0,0,0,1,1,0,0,0,66.37,38.36,-9,-9,8.333333333333334,1,1,0,0,6,1,4,0,568,-183490.97,30048.869,122512.2,131346.41,1019.2237 -10545,12991,23388,23389,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.2805614,9.1925955,0,12,0,101.55432,0,1,1,2019,11,0,50,50,1,0,0,22.627466,22.627466,0,0,0,0,0,0,0,0,2.7451463,0,49.44,56.93,19.52,68.09,6.666666666666667,1,1,0,0,6,6,5,1,504.5,385762.88,199572.09,724900.38,497718.88,5407.7578 -10545,12991,23389,23388,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.8390236,8.6841459,0,12,0,30.035332,0,2,2,2019,26,11,50,50,1,11,0,17.733591,17.733591,0,0,0,0,0,0,0,0,0,0,19.52,68.09,49.44,56.93,6.666666666666667,1,1,0,0,7,6,5,1,504.5,385762.88,199572.09,724900.38,497718.88,5407.7578 -10546,12992,23390,23393,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.2975378,8.2097807,0,9,2,23.170101,0,-9,-9,2019,4,0,70,50,1,0,0,5.9676266,5.9676266,0,0,0,0,2,1,1,0,0,0,48.71,61.53,43.38,62.58,6.666666666666667,1,1,0,0,10,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 -10546,12992,23391,-9,23393,23390,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5443,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 -10546,12992,23392,-9,23393,23390,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.12762,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 -10546,12992,23393,23390,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.2788706,8.211051,0,9,-2,102.15989,0,-9,-9,2019,12,0,31,33,1,0,0,18.915699,18.915699,0,0,0,0,0,1,1,0,0,0,43.38,62.58,48.71,61.53,8.333333333333334,1,1,0,0,10,12,4,1,325,680734.81,643541.38,173671.48,88592.203,3690.1472 -10547,12993,23394,23396,-9,-9,1,0,39,1,1,0,2,2,-9,0,5,7.5614281,7.4628806,0,14,2,-29.392839,0,2,3,2019,9,0,15,15,1,0,0,13.280247,13.280247,0,0,0,0,0,1,1,0,0,0,50.54,62.09,45.27,52.06,8.333333333333334,1,1,0,0,8,10,4,0,369.66666,127450.55,206820.02,199484.98,76085.82,2351.6379 -10547,12993,23395,-9,23394,23396,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.0563,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,369.66666,127450.55,206820.02,199484.98,76085.82,2351.6379 -10547,12993,23396,23394,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.3412971,8.2970915,0,7,-2,94.761993,0,-9,-9,2019,11,0,38,40,1,0,0,13.651172,13.651172,0,0,0,0,0,1,1,0,0,0,45.27,52.06,50.54,62.09,5,1,1,0,0,4,10,4,0,369.66666,127450.55,206820.02,199484.98,76085.82,2351.6379 -10548,12994,23397,-9,23400,23401,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1190.9618,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 -10548,12994,23398,-9,23400,23401,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.7023,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 -10548,12994,23399,-9,23400,23401,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.9172,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 -10548,12994,23400,23401,-9,-9,1,0,45,0,3,0,2,2,-9,0,3,7.9192238,7.9864302,0,7,0,-52.397717,0,2,2,2019,7,0,25,26,1,0,0,13.718609,13.718609,0,0,0,0,0,0,0,0,2.7056022,0,57.33,53.46,44.85,53.68,8.333333333333334,1,1,0,0,5,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 -10548,12994,23401,23400,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,9.5738878,9.4450436,0,27,0,61.710594,0,2,1,2019,6,0,38,40,1,0,0,38.238422,38.238422,0,0,0,0,0,0,0,0,1.4250152,0,44.85,53.68,57.33,53.46,6.666666666666667,1,1,0,0,8,7,5,1,598.20001,2760456.5,1587240,1197725.8,232263.88,5349.1182 -10549,12995,23402,23403,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.5055571,8.4561825,0,37,-1,29.979914,0,3,1,2019,16,4,47,57,1,4,0,11.479569,11.479569,0,0,0,0,0,0,0,0,0,0,25.94,65.38,59.29,37.6,6.666666666666667,4,2,0,0,10,7,5,1,663.5,1135228,313168.81,893008.88,93099.078,3583.5161 -10549,12995,23403,23402,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.1773529,8.4173565,0,37,1,-7.7645521,0,2,2,2019,11,2,40,37,1,2,0,12.313491,12.313491,0,0,0,0,0,0,0,0,5.7319026,0,59.29,37.6,25.94,65.38,8.333333333333334,1,1,0,0,10,7,5,1,663.5,1135228,313168.81,893008.88,93099.078,3583.5161 -10550,12996,23404,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,2,8.1496744,8.3609152,0,0,0,-1040.636,0,1,1,2019,16,4,37,35,1,4,0,7.1200523,7.1200523,0,0,0,0,0,0,0,0,0,0,36.61,57.73,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,464,-20832.697,-20064.988,0,0,1339.1769 -10551,12997,23405,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.056447,5.9142137,0,0,-1061.4978,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,3.6206095,5.7849088,45.37,28.07,-9,-9,3.333333333333333,1,1,0,0,0,10,2,0,969,465494.75,-50379.957,370056.09,0,1480.7566 -10552,12998,23406,23407,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,7.8889236,7.6213918,0,8,-1,-27.973156,0,-9,3,2019,11,0,30,30,1,0,0,7.2366447,7.2366447,0,0,0,0,0,1,1,0,0,0,39.16,36.57,51.62,47.75,8.333333333333334,1,1,0,1,9,7,4,1,316.5,778243.56,8473.2305,780911,0,3148.3027 -10552,12998,23407,23406,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.990901,8.0158501,0,8,1,77.811447,0,3,3,2019,6,0,40,55,1,0,0,9.2220774,9.2220774,0,0,0,0,0,1,1,0,0,0,51.62,47.75,39.16,36.57,6.666666666666667,1,1,0,1,9,7,4,1,316.5,778243.56,8473.2305,780911,0,3148.3027 -10552,12999,23408,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,3,7.5125003,7.3767824,0,0,0,-974.05225,-9,-9,-9,2019,12,1,36,0,1,1,0,5.4406719,5.4406719,0,0,0,0,0,1,1,0,0,0,50.74,38.9,-9,-9,8.333333333333334,1,1,0,1,3,7,3,1,2359,59546.762,0,0,0,1363.9039 -10553,13000,23409,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1083.4756,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.33,35.66,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,213,294082.56,0,0,0,1650.9155 -10554,13001,23410,-9,23411,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.9812,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,1,0,645,-175190.83,390.77408,55411.473,23620.891,1810.9368 -10554,13001,23411,-9,-9,-9,1,0,48,0,2,0,1,1,-9,1,3,0,0,0,0,0,-1107.9803,0,2,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,2,3,0,1,0,5,1,0,645,-175190.83,390.77408,55411.473,23620.891,1810.9368 -10554,13001,23412,-9,23411,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1125.8287,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,5,1,0,645,-175190.83,390.77408,55411.473,23620.891,1810.9368 -10555,13002,23413,23414,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,0,0,0,5,-3,0,0,-9,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.3,38.41,22.56,26.36,1.666666666666667,1,1,1,1,0,2,1,0,508.5,0,0,0,0,1004.1177 -10555,13002,23414,23413,-9,-9,1,0,47,0,0,0,2,2,-9,0,1,0,0,0,5,3,0,0,2,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.56,26.36,35.3,38.41,1.666666666666667,1,1,1,0,0,2,1,0,508.5,0,0,0,0,1004.1177 -10556,13003,23415,23416,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.390151,8.1555223,0,28,-1,63.214985,-9,-9,-9,2019,7,0,50,0,1,0,0,11.769171,11.769171,0,0,0,0,2,0,0,0,4.2787161,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,9,12,5,1,373,405579.53,303100.38,311508.78,21773.373,3669.0481 -10556,13003,23416,23415,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3003864,8.6400871,0,28,1,-92.566124,0,2,2,2019,6,0,40,40,1,0,0,12.055287,12.055287,0,0,0,0,0,0,0,0,4.7118721,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,9,12,5,1,373,405579.53,303100.38,311508.78,21773.373,3669.0481 -10556,13004,23417,-9,23416,23415,1,0,19,0,0,0,2,2,-9,0,4,7.6583095,7.3118968,0,0,0,-1064.4703,0,2,2,2019,12,2,40,35,1,2,1,5.4657431,5.4657431,0,0,0,0,0,0,0,0,.94727182,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,334,-37546.281,0,0,0,1208.2012 -10556,13005,23418,-9,23416,23415,1,1,21,0,0,0,2,2,-9,0,4,8.1634245,8.0357189,0,0,0,-931.8399,-9,2,2,2019,10,0,35,0,1,0,1,12.998502,12.998502,0,0,0,0,0,0,0,0,2.5281394,0,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,2,12,4,1,7346,80346.914,54703.691,38229.023,33667.207,1786.663 -10557,13006,23419,-9,23420,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-965.52936,-9,2,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.8,59.5,-9,-9,5,1,1,0,0,0,5,2,0,477,64219.527,77399.625,0,0,1187.7017 -10557,13006,23420,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,6.7657313,6.9548135,4.8844905,0,0,-960.95197,-9,2,2,2019,11,0,16,0,1,0,0,6.7048912,6.7048912,0,0,0,0,0,1,1,0,4.8561096,0,44.3,55.41,-9,-9,8.333333333333334,1,1,0,1,9,5,2,0,477,64219.527,77399.625,0,0,1187.7017 -10557,13006,23421,-9,23420,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-927.0766,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,2,0,477,64219.527,77399.625,0,0,1187.7017 -10558,13007,23422,-9,23423,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.08777,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,386.5,38986.469,0,0,0,872.13062 -10558,13007,23423,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1023.3328,0,2,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.93,25.11,-9,-9,5,3,4,0,0,0,8,1,0,386.5,38986.469,0,0,0,872.13062 -10559,13008,23424,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-856.21674,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,14.409998,0,129.62993,0,1,1,0,0,0,46.54,15.61,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,591,-1180.3787,0,81846.648,0,2713.6409 -10560,13009,23425,23426,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,6.5843539,6.9479346,0,25,3,-94.96154,0,-9,-9,2019,6,0,17,21,1,0,0,6.4625535,6.4625535,0,0,0,0,0,1,0,1,0,0,50.58,51.02,47.43,25.79,6.666666666666667,1,1,0,1,12,2,2,1,317,156304.92,5304.2432,204667.44,0,500.96155 -10560,13009,23426,23425,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,5.7687654,5.6094851,25,-3,-29.298931,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,5.6866322,0,47.43,25.79,50.58,51.02,3.333333333333333,1,1,1,1,10,2,2,1,317,156304.92,5304.2432,204667.44,0,500.96155 -10561,13010,23427,-9,23430,23428,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.7697,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 -10561,13010,23428,23430,-9,-9,1,1,25,0,2,0,2,2,-9,0,3,8.3807592,8.2631083,0,4,0,-19.846613,0,-9,-9,2019,6,0,44,45,1,0,0,10.690441,10.690441,0,0,0,0,0,1,1,0,0,0,60.29,52.11,54.2,57.49,6.666666666666667,1,1,0,0,6,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 -10561,13010,23429,-9,23430,23428,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.11462,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 -10561,13010,23430,23428,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,0,0,0,4,0,-10.266562,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,0,5,3,0,671.25,55435.082,-11206.727,0,0,1701.1431 -10562,13011,23431,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-991.67639,0,2,1,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,38.98,44.11,-9,-9,0,2,3,1,1,6,8,1,0,389,23836.145,0,0,0,0 -10563,13012,23432,23433,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.4703236,8.7944202,0,3,13,-7.2095947,0,-9,-9,2019,10,0,40,40,1,0,0,15.11516,15.11516,0,0,0,0,0,0,0,0,0,0,52.99,51.28,43,53,7,1,1,0,0,5,4,4,0,410.5,339901.94,3005.0381,149692.8,10963.313,3144.9014 -10563,13012,23433,23432,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,3,-13,-62.91618,0,-9,-9,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,53,52.99,51.28,5,1,1,0,0,3,4,4,0,410.5,339901.94,3005.0381,149692.8,10963.313,3144.9014 -10564,13013,23434,23435,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,7.2377243,7.3170981,0,43,0,-2.8831308,0,2,2,2019,11,1,21,21,1,1,0,6.7227011,6.7227011,0,0,0,0,2,1,1,0,0,0,62.69,30.79,57.91,46.31,8.333333333333334,1,1,0,0,11,10,3,1,1836,632339.75,349431.56,448650.75,238342.42,993.75342 -10564,13013,23435,23434,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.3363066,7.1325641,0,43,0,-124.1432,0,2,2,2019,8,0,35,51,1,0,0,4.0812826,4.0812826,0,0,0,0,0,1,1,0,0,0,57.91,46.31,62.69,30.79,6.666666666666667,1,1,0,1,11,10,3,1,1836,632339.75,349431.56,448650.75,238342.42,993.75342 -10565,13014,23436,23437,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,55,0,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,50.48,56.4,10,1,1,0,0,0,6,1,0,939,61213.563,0,0,0,1394.1868 -10565,13014,23437,23436,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,55,0,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,54.37,54.8,8.333333333333334,1,1,0,0,0,6,1,0,939,61213.563,0,0,0,1394.1868 -10566,13015,23438,23440,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.2472301,7.2509022,0,20,-11,109.65275,0,2,3,2019,7,0,15,30,1,0,0,9.563508,9.563508,0,0,0,0,0,1,1,0,7.2588644,0,54.71,40.73,55.88,43.28,8.333333333333334,1,1,0,0,10,9,5,1,362.33334,6398231,4445840,882702.81,0,12394.229 -10566,13015,23439,-9,23438,23440,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1098.3583,-9,1,1,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.2496977,0,49.7,58.29,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,362.33334,6398231,4445840,882702.81,0,12394.229 -10566,13015,23440,23438,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,9.732296,9.7608042,6.3077798,20,11,126.49003,0,3,2,2019,13,3,30,40,1,3,0,67.789368,67.789368,0,0,0,0,0,1,1,0,8.5520105,6.2936749,55.88,43.28,54.71,40.73,8.333333333333334,1,1,0,0,10,9,5,1,362.33334,6398231,4445840,882702.81,0,12394.229 -10567,13016,23441,23442,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,7,0,0,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,20.066082,0,0,1,1,0,0,0,33.98,32.09,33.15,33.58,6.666666666666667,1,1,0,0,0,8,1,0,431.5,-99277.336,0,150565.19,0,2052.8618 -10567,13016,23442,23441,23443,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,0,0,0,3,3,2019,20,9,0,0,4,9,0,0,0,1,0,1.1324782,0,74.5,1,1,0,0,0,33.15,33.58,33.98,32.09,3.333333333333333,1,1,0,0,0,8,1,0,431.5,-99277.336,0,150565.19,0,2052.8618 -10567,13017,23443,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-939.80316,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,8,1,0,372,-333440.78,0,0,0,883.87897 -10568,13018,23444,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-907.06769,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,20.388636,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,11,1,0,754,-252528.45,0,0,0,992.04327 -10569,13019,23445,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.4994669,6.6635442,0,0,-983.28448,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1085963,6.3302875,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,225,496015,0,305698.06,0,1687.4812 -10570,13020,23446,23447,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.1311679,7.4640608,6.8804698,42,7,22.407125,0,2,3,2019,7,0,50,50,1,0,0,3.3909843,3.3909843,0,0,0,0,0,1,1,0,7.8573146,6.8573008,59.46,46.99,54.77,55.87,8.333333333333334,1,1,0,0,12,10,3,1,815,998966.69,222353.25,248590.83,0,2869.041 -10570,13020,23447,23446,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,6.9568977,6.6457429,0,42,-7,57.901295,0,3,3,2019,9,0,15,20,1,0,0,7.3628974,7.3628974,0,0,0,0,0,1,1,0,0,0,54.77,55.87,59.46,46.99,8.333333333333334,1,1,0,0,11,10,3,1,815,998966.69,222353.25,248590.83,0,2869.041 -10571,13021,23448,23449,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,32,1,16.292681,0,2,3,2019,15,3,0,0,4,3,0,0,0,1,0,5.622848,0,0,1,1,0,0,0,44.24,30.9,57.16,56.15,6.666666666666667,1,1,0,0,0,9,3,1,264,1348061.8,781465,377541.38,0,3174.4072 -10571,13021,23449,23448,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.5650444,8.3606558,32,-1,67.220497,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,8.190136,57.16,56.15,44.24,30.9,8.333333333333334,1,1,0,0,0,9,3,1,264,1348061.8,781465,377541.38,0,3174.4072 -10572,13022,23450,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.2101593,8.2683153,0,0,-813.80255,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,6.3045979,8.4891138,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,842,829007.75,409377.38,268906.22,0,2572.7195 -10573,13023,23451,-9,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,8.2773256,8.2952423,0,0,0,-1057.1924,0,-9,-9,2019,13,3,38,38,1,3,0,10.5919,10.5919,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,6.666666666666667,1,1,0,0,3,13,4,0,522,323670.88,-7107.7593,232220.17,100981.38,1939.6794 -10573,13024,23452,-9,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.4471512,8.5662594,0,0,0,-925.32104,0,-9,-9,2019,14,1,25,38,1,1,0,22.229239,22.229239,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,705.5,78986.477,136521.38,0,0,1693.4839 -10573,13024,23453,-9,23452,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.3346,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,0,705.5,78986.477,136521.38,0,0,1693.4839 -10574,13025,23454,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,7.5989957,7.4985905,0,0,-952.15045,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5510006,8.0798569,55.92,50.07,-9,-9,8.333333333333334,1,1,0,0,8,8,3,0,1571,377708.75,202857.16,352373.41,0,-311.00336 -10575,13026,23455,23456,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.3699198,8.1531944,8,2,94.378128,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6404717,7.8909254,61.68,49.95,33.47,42.84,8.333333333333334,1,1,0,0,0,5,3,1,1203.5,1302452.9,554617.13,250395.56,0,2654.7964 -10575,13026,23456,23455,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,8,-2,-16.533482,0,3,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,.41459069,0,33.47,42.84,61.68,49.95,6.666666666666667,1,1,0,0,5,5,3,1,1203.5,1302452.9,554617.13,250395.56,0,2654.7964 -10576,13027,23457,23458,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,7.8096366,7.9478273,0,41,7,21.239073,0,3,3,2019,6,0,50,35,1,0,0,6.669518,6.669518,1,0,0,0,0,1,1,0,0,0,61.16,53.18,62.4,42.8,8.333333333333334,1,1,0,0,8,13,3,1,558,1436493,1113264.1,166970.09,0,1990.9854 -10576,13027,23458,23457,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,41,-7,4.1539559,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,3.5411251,0,62.4,42.8,61.16,53.18,8.333333333333334,1,1,0,0,2,13,3,1,558,1436493,1113264.1,166970.09,0,1990.9854 -10577,13028,23459,-9,23460,23461,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.9536,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1087.6666,-30533.098,-19537.887,0,0,3932.041 -10577,13028,23460,23461,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.3468771,8.232502,0,10,6,-70.31118,0,2,2,2019,6,0,27,27,1,0,0,16.668257,16.668257,0,0,0,0,0,1,1,0,0,0,57.76,54.51,54.2,57.49,6.666666666666667,1,1,0,0,12,7,5,1,1087.6666,-30533.098,-19537.887,0,0,3932.041 -10577,13028,23461,23460,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.9129114,8.973505,0,10,-6,-44.626698,0,-9,-9,2019,7,0,87,50,1,0,0,12.075021,12.075021,0,0,0,0,0,1,1,0,2.2809026,0,54.2,57.49,57.76,54.51,6.666666666666667,1,1,0,0,12,7,5,1,1087.6666,-30533.098,-19537.887,0,0,3932.041 -10578,13029,23462,-9,-9,-9,1,0,41,0,0,0,3,3,-9,0,3,8.0899048,8.1387835,0,0,0,-1194.9207,0,3,2,2019,4,0,42,28,1,0,0,9.9079723,9.9079723,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,8.333333333333334,3,4,0,0,9,8,4,0,493,-314093.31,0,0,0,912.1897 -10579,13030,23463,23464,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.1129541,8.4624958,0,7,-3,-109.54839,0,2,2,2019,3,0,39,36,1,0,0,12.728415,12.728415,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,430.33334,-7905.1968,0,0,0,2743.1287 -10579,13030,23464,23463,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.9006248,7.9846811,0,7,3,-35.97855,0,2,3,2019,7,0,36,40,1,0,0,9.0782814,9.0782814,0,0,0,0,2,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,6,2,4,1,430.33334,-7905.1968,0,0,0,2743.1287 -10579,13030,23465,-9,23464,23463,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.1926,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,430.33334,-7905.1968,0,0,0,2743.1287 -10579,13031,23466,-9,23464,23463,1,1,22,0,1,0,2,2,-9,0,4,7.7161975,7.7727227,0,0,0,-1064.569,0,2,3,2019,7,0,41,37,1,0,1,6.8722153,6.8722153,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,746,39423.949,0,102603.61,137922.77,205.02002 -10580,13032,23467,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,9.2203379,8.9071503,0,0,0,-1039.6096,0,2,1,2019,10,0,39,38,1,0,0,28.556597,28.556597,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,666,1784644,1498505.1,167633.56,0,3037.1602 -10580,13032,23468,-9,23467,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.001,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,666,1784644,1498505.1,167633.56,0,3037.1602 -10581,13033,23469,23473,-9,-9,1,1,40,0,4,0,2,2,-9,0,3,8.2096243,8.256093,0,7,8,-156.0903,0,2,2,2019,17,5,37,37,1,5,0,9.3603649,9.3603649,0,0,0,0,0,1,1,0,0,0,45.35,50.81,41.3,60.77,6.666666666666667,1,1,0,0,8,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 -10581,13033,23470,-9,23473,23469,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-979.25378,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 -10581,13033,23471,-9,23473,23469,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.3188,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 -10581,13033,23472,-9,23473,23469,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.08643,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 -10581,13033,23473,23469,-9,-9,1,0,32,0,4,0,1,1,-9,0,4,7.9668112,8.1823225,0,7,-8,89.625679,0,-9,-9,2019,13,1,33,33,1,1,0,9.7299213,9.7299213,0,0,0,0,0,1,1,0,2.9308667,0,41.3,60.77,45.35,50.81,6.666666666666667,1,1,0,0,8,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 -10581,13033,23474,-9,23473,23469,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.7391,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1575.8334,90122.086,67585.758,0,0,4384.9063 -10582,13034,23475,23476,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,31,0,-55.191708,0,-9,-9,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,9.1466179,0,48.92,44.91,48.71,42.66,6.666666666666667,2,3,0,0,0,6,2,0,970,496656.28,234236.94,313196.44,0,2851.989 -10582,13034,23476,23475,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,5.5675621,5.2650023,0,31,9,-21.011377,0,-9,-9,2019,25,11,45,50,1,11,0,.64061016,.64061016,0,0,0,0,0,1,1,0,0,0,48.71,42.66,48.92,44.91,6.666666666666667,2,3,0,0,7,6,2,0,970,496656.28,234236.94,313196.44,0,2851.989 -10582,13034,23477,-9,23475,23476,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-986.8988,-9,3,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,6,2,0,970,496656.28,234236.94,313196.44,0,2851.989 -10582,13035,23478,-9,23475,23476,1,1,24,0,0,0,2,2,1,0,3,0,0,0,0,0,-1080.8772,-9,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,38.26,60.7,-9,-9,1.666666666666667,2,3,1,0,1,6,1,0,1130,325789.34,0,0,0,0 -10582,13036,23479,-9,23475,23476,1,0,23,0,0,0,1,1,1,0,4,7.7823763,8.0204525,0,0,0,-1076.3896,-9,3,1,2019,10,3,37,0,1,3,1,7.2019315,7.2019315,0,0,0,0,0,1,1,0,0,0,43.79,58.33,-9,-9,6.666666666666667,2,3,0,0,2,6,3,0,1713,-26948.986,0,0,0,1128.697 -10583,13037,23480,23481,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.5980215,7.6514997,3,-5,-20.741566,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8211067,7.5874681,50.82,52.43,54.2,57.49,8.333333333333334,1,1,0,0,7,10,3,1,1913,1100992.8,523026.06,362484.78,0,2512.4917 -10583,13037,23481,23480,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,0,0,3,5,24.824959,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6442437,0,54.2,57.49,50.82,52.43,8.333333333333334,1,1,0,0,7,10,3,1,1913,1100992.8,523026.06,362484.78,0,2512.4917 -10584,13038,23482,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.3089919,7.2624173,0,0,-899.44128,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0868115,57.16,56.15,-9,-9,10,1,1,0,0,0,7,3,1,471,892369.63,389992.56,388675.09,0,1686.8376 -10585,13039,23483,-9,23487,23486,1,0,28,0,0,0,1,1,-9,0,4,9.7130117,9.672349,0,0,0,-1059.4897,0,3,3,2019,12,0,24,32,1,0,1,80.323494,80.323494,0,0,0,0,0,1,1,0,5.9545135,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,7,6,5,1,322,362817.47,68322.813,0,0,11268.554 -10585,13040,23484,-9,23487,23486,1,1,25,0,0,0,1,1,-9,0,4,8.3808088,8.7512751,0,0,0,-1121.535,0,2,2,2019,6,0,8,37,1,0,1,47.468765,47.468765,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,2,6,4,1,465,125901.72,74383.727,0,0,1634.0627 -10585,13041,23485,-9,23487,23486,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1022.6575,-9,3,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,829,101204.77,0,0,0,115.54385 -10585,13042,23486,23487,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,37,4,0,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.12,49.06,8.333333333333334,2,3,1,0,4,6,1,1,688,-99279.258,0,0,0,766.60876 -10585,13042,23487,23486,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,37,-4,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,49.06,57.33,53.46,8.333333333333334,2,3,0,0,0,6,1,1,688,-99279.258,0,0,0,766.60876 -10586,13043,23488,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.9224634,8.0239744,0,0,-894.4613,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,14.5,1,1,0,6.3671961,8.0146923,53.69,32.35,-9,-9,5,1,1,0,0,0,13,4,1,268,515590.81,305449.06,78694.273,0,1901.3687 -10586,13044,23489,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.9637256,7.1211681,0,0,-997.21124,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.957912,7.2173357,67.09999999999999,28.35,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,481,5670.7695,274581.53,130280.59,0,1319.7446 -10587,13045,23490,23491,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,7.4183002,7.5601964,51,-1,-110.7496,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,8.5105515,7.4114437,57.65,56.13,54.69,57.47,10,1,1,0,0,0,2,5,1,1105.5,2431334,686459.5,687804.88,0,6924.1816 -10587,13045,23491,23490,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.7677011,8.591814,51,1,119.55742,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3224006,8.7354755,54.69,57.47,57.65,56.13,8.333333333333334,1,1,0,0,0,2,5,1,1105.5,2431334,686459.5,687804.88,0,6924.1816 -10588,13046,23492,23493,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.8840885,8.7770815,0,10,-6,-57.24374,0,-9,-9,2019,12,2,50,53,1,2,0,14.399183,14.399183,0,0,0,0,0,0,0,0,5.9368458,0,46.31,51.53,59.63,41.44,8.333333333333334,1,1,0,0,13,5,5,1,761,-327900.81,430.14453,0,0,3601.2966 -10588,13046,23493,23492,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.3112159,7.3135734,0,25,6,114.04639,0,2,2,2019,11,0,26,24,1,0,0,6.8638859,6.8638859,0,0,0,0,5.48,0,0,0,6.2410746,0,59.63,41.44,46.31,51.53,6.666666666666667,1,1,0,0,13,5,5,1,761,-327900.81,430.14453,0,0,3601.2966 -10589,13047,23494,-9,23496,23495,1,1,16,0,1,0,2,2,-9,0,2,0,0,0,0,0,-916.35358,-9,2,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.62,38.08,-9,-9,6.666666666666667,1,1,1,0,0,4,4,0,403.33334,-102646.17,50435.281,63906.445,57596.559,3313.8108 -10589,13047,23495,23496,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.5139608,8.4797926,0,6,4,-19.745672,0,2,2,2019,9,0,56,56,1,1,0,9.4099007,9.4099007,0,0,0,0,7,1,1,0,0,0,52,55,41.87,55.21,8,1,1,0,0,4,4,4,0,403.33334,-102646.17,50435.281,63906.445,57596.559,3313.8108 -10589,13047,23496,23495,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7043042,7.5089955,0,6,-4,-158.40913,0,-9,-9,2019,11,2,25,20,1,2,0,8.1268673,8.1268673,0,0,0,2.8813426,27,1,1,0,0,0,41.87,55.21,52,55,3.333333333333333,1,1,0,0,3,4,4,0,403.33334,-102646.17,50435.281,63906.445,57596.559,3313.8108 -10589,13048,23497,-9,23496,23495,1,0,21,0,1,0,2,2,-9,0,5,7.2011838,6.8925967,0,0,0,-1088.5551,0,2,2,2019,8,0,24,33,1,0,1,7.9270091,7.9270091,0,0,0,0,0,1,1,0,0,0,34.91,54.68,-9,-9,5,1,1,0,0,4,4,3,0,855,63580.719,0,42429.582,100341.99,897.78723 -10589,13049,23498,-9,23496,23495,1,0,23,0,1,0,2,2,-9,0,4,7.3941216,7.4338541,0,0,0,-1086.8179,0,2,2,2019,7,1,31,31,1,1,1,5.1059566,5.1059566,0,0,0,0,0,1,1,0,2.9466894,0,41.17,59.31,-9,-9,5,1,1,0,0,6,4,3,0,560,275892.16,72126.727,0,0,943.00507 -10589,13050,23499,-9,23496,23495,1,1,19,0,1,0,2,2,-9,0,5,0,0,0,0,0,-964.06586,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,1,1,1,0,0,4,1,0,1070,0,0,0,0,524.32684 -10590,13051,23500,23501,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.4448471,8.3833237,0,2,-6,-114.01985,0,1,2,2019,14,4,43,41,1,4,0,10.386093,10.386093,0,0,0,0,0,0,0,0,0,0,37.16,48.1,46.08,57.2,3.333333333333333,1,1,0,0,5,8,5,0,334.5,189726.81,62273.172,270685.72,176805.22,2887.8838 -10590,13051,23501,23500,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.3158903,8.0419312,0,2,6,-64.869911,0,-9,-9,2019,6,0,48,50,1,0,0,8.4953871,8.4953871,0,0,0,0,0,0,0,0,.70241702,0,46.08,57.2,37.16,48.1,8.333333333333334,1,1,0,0,2,8,5,0,334.5,189726.81,62273.172,270685.72,176805.22,2887.8838 -10591,13052,23502,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1108.6195,0,3,3,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,39.98,36.02,-9,-9,6.666666666666667,2,3,1,1,4,8,2,0,283,-334047.69,-114418.5,0,0,1126.7023 -10592,13053,23503,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,2,6.9198837,7.2083783,6.0823607,0,0,-1024.7135,0,2,2,2019,15,3,29,29,1,3,0,3.6624184,3.6624184,0,0,0,0,0,1,1,0,5.7081976,0,38.1,35.5,-9,-9,1.666666666666667,1,1,0,1,11,7,2,0,848,775042.5,0,596244.94,0,1079.6563 -10592,13053,23504,-9,23503,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.17926,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,0,848,775042.5,0,596244.94,0,1079.6563 -10593,13054,23505,23506,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,4.8957233,5.2618036,8,4,64.614296,-9,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.86803007,4.7486439,45.53,47.41,57.16,56.15,3.333333333333333,1,1,0,0,0,4,2,1,544.5,270700.31,156793.16,130300.78,0,1235.5287 -10593,13054,23506,23505,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,8,-4,-58.53933,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7093213,0,57.16,56.15,45.53,47.41,10,1,1,0,0,0,4,2,1,544.5,270700.31,156793.16,130300.78,0,1235.5287 -10594,13055,23507,23508,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,6.9781446,7.1469355,0,2,6,11.18242,0,3,3,2019,10,0,50,60,1,0,0,2.9273157,2.9273157,0,0,0,0,0,0,0,0,0,0,52.82,53.97,52,54.51,6.666666666666667,1,1,0,0,7,13,2,1,501.5,270972.72,222172.27,190510.47,0,504.65753 -10594,13055,23508,23507,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,2,-6,-70.760742,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52.82,53.97,8.333333333333334,1,1,0,0,0,13,2,1,501.5,270972.72,222172.27,190510.47,0,504.65753 -10594,13056,23509,-9,23508,23507,1,0,29,0,0,0,1,1,-9,0,4,7.9338112,7.903687,0,0,0,-1013.0636,0,2,3,2019,11,0,37,60,1,2,1,9.3872108,9.3872108,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,1,1,0,0,1,13,4,1,313,-36554.645,0,0,0,1296.3159 -10594,13057,23510,-9,23508,23507,1,1,27,0,0,0,2,2,-9,0,4,7.566844,7.5356879,0,0,0,-1025.598,0,2,3,2019,10,0,50,70,1,1,1,4.9505854,4.9505854,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,205,51125.762,0,0,0,1371.7545 -10594,13058,23511,-9,23508,23507,1,1,25,0,0,0,3,3,-9,0,4,6.7509627,6.7779179,0,0,0,-1038.0638,0,2,3,2019,10,0,16,16,1,1,1,5.4494953,5.4494953,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,2,1,387,274006.94,0,0,0,1065.0972 -10595,13059,23512,23513,-9,-9,1,0,40,0,0,0,1,1,-9,1,2,0,0,0,14,2,107.15825,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.81,29.67,56.56,39.93,3.333333333333333,1,1,0,0,0,2,4,1,271.5,6148.4063,169224.83,0,0,2793.9863 -10595,13059,23513,23512,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.405098,8.5315142,0,14,-2,-8.5085926,0,3,3,2019,3,0,36,36,1,0,0,14.974317,14.974317,0,0,0,0,2,1,1,0,2.2031171,0,56.56,39.93,32.81,29.67,6.666666666666667,2,3,0,0,9,2,4,1,271.5,6148.4063,169224.83,0,0,2793.9863 -10596,13060,23514,23515,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,5.661243,5.5775127,0,1,0,104.67314,-9,-9,-9,2019,11,0,48,0,1,2,0,.54553318,.54553318,0,0,0,0,0,1,1,0,0,0,48,57,50.54,62.09,7,1,1,0,0,1,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 -10596,13060,23515,23514,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,9.7072773,9.8980846,0,1,0,-47.633995,0,1,1,2019,0,0,50,55,1,0,0,28.123695,28.123695,0,0,0,0,0,1,1,0,9.094943,0,50.54,62.09,48,57,10,1,1,0,0,11,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 -10596,13060,23516,-9,23514,23515,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.9422,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 -10596,13060,23517,-9,23514,23515,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1429,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1190.75,26257.131,-17016.232,257712.47,187532,40804.742 -10597,13061,23518,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,7.556047,7.5176883,0,0,-924.4848,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6852217,48.28,60.18,-9,-9,10,1,1,0,0,0,4,3,1,597,619473.5,291395.31,65045.594,0,1874.3184 -10598,13062,23519,-9,23521,23520,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-926.51642,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,164.66667,1348635.1,1182143,390185.59,143012.06,3390.2397 -10598,13062,23520,23521,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.5944929,8.456214,0,10,-7,38.576565,0,2,3,2019,7,0,42,42,1,0,0,13.46688,13.46688,0,0,0,0,0,1,1,0,4.876677,0,58.15,52.91,62.39,56.71,8.333333333333334,1,1,0,0,11,12,5,1,164.66667,1348635.1,1182143,390185.59,143012.06,3390.2397 -10598,13062,23521,23520,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.2063742,8.2405224,0,10,7,-18.843824,0,3,3,2019,6,0,35,35,1,0,0,10.026163,10.026163,0,0,0,1.4214332,0,1,1,0,0,0,62.39,56.71,58.15,52.91,8.333333333333334,1,1,0,0,11,12,5,1,164.66667,1348635.1,1182143,390185.59,143012.06,3390.2397 -10599,13063,23522,23523,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.8097134,8.774375,0,4,-4,134.25261,0,2,1,2019,6,0,40,37,1,0,0,16.587343,16.587343,0,0,0,0,0,0,0,0,3.8899758,0,59.7,53.75,52.8,53.98,8.333333333333334,1,1,0,0,9,8,5,0,936.5,298555.56,75352.266,0,0,5614.2197 -10599,13063,23523,23522,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,9.1569862,9.3516712,0,4,4,67.310577,0,-9,-9,2019,11,1,50,50,1,1,0,18.710512,18.710512,0,0,0,0,0,0,0,0,4.3320174,0,52.8,53.98,59.7,53.75,6.666666666666667,1,1,0,0,4,8,5,0,936.5,298555.56,75352.266,0,0,5614.2197 -10600,13064,23524,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.0983858,4.5723662,0,0,-961.5238,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2054579,5.0886669,50,47,-9,-9,6.666666666666667,1,1,0,0,1,2,2,1,130,534208.38,-141456.94,66501.938,-3116.9719,1108.4072 -10601,13065,23525,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,5.0242314,5.3084574,0,0,-993.68677,0,-9,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,4.8740444,29.9,47.64,-9,-9,3.333333333333333,3,4,0,1,5,6,2,1,825,463031.41,0,199891.72,0,1424.6429 -10602,13066,23526,-9,23528,23527,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1134.6927,-9,3,2,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,24.21,56.5,-9,-9,3.333333333333333,1,1,0,0,1,2,3,1,558.33331,876317.81,672956.63,127372.98,0,1758.3724 -10602,13066,23527,23528,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.2329025,8.1957769,0,24,-3,59.089306,0,3,3,2019,12,1,40,40,1,1,0,9.9740562,9.9740562,0,0,0,0,0,1,1,0,.715554,0,51.24,58.84,58.34,44.79,8.333333333333334,1,1,0,0,8,2,3,1,558.33331,876317.81,672956.63,127372.98,0,1758.3724 -10602,13066,23528,23527,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,0,0,0,24,3,-54.85762,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.34,44.79,51.24,58.84,8.333333333333334,1,1,0,0,0,2,3,1,558.33331,876317.81,672956.63,127372.98,0,1758.3724 -10603,13067,23529,23530,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.0966501,6.7868209,49,0,-125.13344,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9692669,51.81,57.22,28.45,58.42,6.666666666666667,1,1,0,0,4,9,3,1,717.5,856716.75,599991.88,156586.7,0,2608.8938 -10603,13067,23530,23529,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,7.4510622,7.3975563,0,49,0,-83.871498,0,3,-9,2019,15,3,15,15,1,3,0,11.508022,11.508022,0,3.0181127,1.3821378,0,0,1,1,0,1.1082823,0,28.45,58.42,51.81,57.22,5,1,1,0,0,8,9,3,1,717.5,856716.75,599991.88,156586.7,0,2608.8938 -10604,13068,23531,23532,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,10,3,0,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.05,54.02,40.61,47.77,8.333333333333334,1,1,1,1,0,4,1,0,1154,38366.863,0,0,0,947.18262 -10604,13068,23532,23531,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,10,-3,0,0,3,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,40.61,47.77,51.05,54.02,8.333333333333334,1,1,1,0,0,4,1,0,1154,38366.863,0,0,0,947.18262 -10604,13069,23533,-9,23532,23531,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.16089,0,3,3,2019,21,8,0,0,3,8,1,0,0,0,0,0,0,0,1,0,1,0,0,46.06,57.72,-9,-9,5,1,1,1,0,0,4,1,0,221,-300988.19,0,0,0,120.07087 -10604,13070,23534,-9,23532,23531,1,1,33,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1015.7827,-9,3,3,2019,22,8,0,0,3,8,1,0,0,0,0,0,0,0,1,0,1,0,0,52,59,-9,-9,8.333333333333334,1,1,1,1,0,4,1,0,284,295148.5,0,0,0,581.44537 -10605,13071,23535,23536,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,0,0,0,4,0,-76.170517,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,6.9428005,0,46.99,58.02,52,55,8.333333333333334,1,1,0,0,4,5,3,1,353.66666,814039.75,228194.27,296507.84,0,2349.6399 -10605,13071,23536,23535,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.5686455,8.2321978,0,4,0,-16.180946,0,-9,-9,2019,9,0,45,37,1,1,0,10.51706,10.51706,0,0,0,0,0,1,1,0,2.1229081,0,52,55,46.99,58.02,7,4,1,0,0,1,5,3,1,353.66666,814039.75,228194.27,296507.84,0,2349.6399 -10605,13071,23537,-9,23535,23536,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.7594,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,353.66666,814039.75,228194.27,296507.84,0,2349.6399 -10606,13072,23538,23539,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,7.5277605,8.4001722,7.4399786,50,5,180.31113,0,3,3,2019,7,0,10,40,1,0,0,28.890471,28.890471,0,0,0,0,0,1,1,0,7.6952224,7.8512363,54.63,47.84,58.32,50.22,1.666666666666667,1,1,0,0,11,8,4,1,307.5,1185916.9,801042.13,507211.38,0,2972.3013 -10606,13072,23539,23538,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,51,-5,-40.086884,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.63,47.84,1.666666666666667,1,1,0,0,4,8,4,1,307.5,1185916.9,801042.13,507211.38,0,2972.3013 -10607,13073,23540,23541,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.9492617,9.1784906,0,9,0,84.953354,0,-9,-9,2019,7,0,47,43,1,0,0,18.647144,18.647144,0,0,0,0,2,1,1,0,.2645013,0,36.1,63.29,41.06,62.04,8.333333333333334,1,1,0,0,6,10,5,1,704,244694.75,142489.83,97462.844,40613.656,4357.5947 -10607,13073,23541,23540,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0572038,7.1977634,0,9,0,-77.339989,0,2,2,2019,15,4,16,16,1,4,0,8.1650143,8.1650143,0,0,0,0,2,1,1,0,.47596666,0,41.06,62.04,36.1,63.29,8.333333333333334,1,1,0,0,11,10,5,1,704,244694.75,142489.83,97462.844,40613.656,4357.5947 -10608,13074,23542,23543,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,6.6658835,6.7616458,62,-1,13.225337,0,3,3,2019,20,6,0,0,4,6,0,0,0,1,0,.78599715,0,0,1,1,0,0,6.5963645,38.74,26.21,55.44,39.26,10,1,1,0,0,0,12,2,0,1325.5,244698.33,167555.91,209283.69,0,1544.1467 -10608,13074,23543,23542,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,2.9269779,3.0234408,62,1,-1.8122994,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.2078035,2.7563548,55.44,39.26,38.74,26.21,8.333333333333334,1,1,0,0,0,12,2,0,1325.5,244698.33,167555.91,209283.69,0,1544.1467 -10609,13075,23544,23545,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,8.7812128,8.8862257,6,1,-156.42462,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,0,2.0816731,0,0,1,1,0,4.7113948,8.8763819,55.76,28.7,52,47,6.666666666666667,1,1,0,0,0,11,5,1,4028,1651322.5,1286773.3,356537.19,0,6239.3389 -10609,13075,23545,23544,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.0908995,8.1911402,6,-1,73.242149,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5011702,8.0641346,52,47,55.76,28.7,7,1,1,0,0,0,11,5,1,4028,1651322.5,1286773.3,356537.19,0,6239.3389 -10610,13076,23546,23547,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.9590421,8.1106787,7,5,-2.9542058,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0909281,8.2917366,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,7,2,3,1,183.5,835131.44,473860.09,188465.03,0,3355.887 -10610,13076,23547,23546,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.9207983,6.0234866,7,-5,105.30341,0,2,1,2019,7,0,0,32,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8893075,6.1195025,51.73,58.82,57.16,56.15,10,1,1,0,0,7,2,3,1,183.5,835131.44,473860.09,188465.03,0,3355.887 -10611,13077,23548,23549,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,18,-8,22.788015,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.96,49.93,57.16,56.15,10,2,3,0,0,8,9,4,1,553,1176148.6,692875.75,282100.13,0,2359.7085 -10611,13077,23549,23548,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.4439459,8.2515745,17,8,82.136246,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.5321465,8.3649158,57.16,56.15,55.96,49.93,10,1,1,0,0,9,9,4,1,553,1176148.6,692875.75,282100.13,0,2359.7085 -10612,13078,23550,23552,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,0,0,0,7,-15,18.366524,0,-9,-9,2019,12,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,2.3068776,0,52.79,41.12,44.35,51.55,6.666666666666667,1,1,0,0,4,9,4,1,387,294765.25,98064.203,242967.06,0,2543.5623 -10612,13078,23551,-9,23550,23552,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0925,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,387,294765.25,98064.203,242967.06,0,2543.5623 -10612,13078,23552,23550,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,8.9096937,8.7372046,0,7,15,-30.320219,0,3,2,2019,9,0,46,48,1,0,0,13.097312,13.097312,0,0,0,0,0,1,1,0,0,0,44.35,51.55,52.79,41.12,8.333333333333334,1,1,0,0,8,9,4,1,387,294765.25,98064.203,242967.06,0,2543.5623 -10613,13079,23553,23554,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4788399,8.7439022,0,3,6,-81.352715,0,-9,-9,2019,8,0,37,45,1,0,0,19.967665,19.967665,0,0,0,0,0,0,0,0,0,0,57.7,55.88,60.12,54.8,8.333333333333334,1,1,0,0,3,9,5,1,762.5,63887.469,28382.361,0,0,3559.7705 -10613,13079,23554,23553,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.601521,8.075592,0,3,-6,-121.34436,0,-9,-9,2019,5,0,40,40,1,0,0,8.2682619,8.2682619,0,0,0,0,0,0,0,0,.10818304,0,60.12,54.8,57.7,55.88,10,1,1,0,0,7,9,5,1,762.5,63887.469,28382.361,0,0,3559.7705 -10614,13080,23555,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.0918732,8.5727797,0,0,0,-978.86139,0,3,3,2019,11,1,36,38,1,1,0,14.908566,14.908566,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,6,5,1,579,281817.72,322821.22,164617.7,45357.383,1630.8829 -10615,13081,23556,23557,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,9.0504751,8.8634176,0,15,4,-105.3055,0,3,3,2019,7,0,40,40,1,0,0,25.999929,25.999929,0,0,0,0,71.5,1,1,0,0,0,59.43,58.05,46.67,55.57,8.333333333333334,1,1,0,0,9,9,5,1,720.5,1304316.5,392903.19,839814.25,110903.04,4567.1797 -10615,13081,23557,23556,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.6364918,8.5451393,6.4805884,15,-4,-123.58018,0,3,3,2019,11,0,33,28,1,0,0,18.502176,18.502176,0,0,0,0,5.48,1,1,0,7.3662157,0,46.67,55.57,59.43,58.05,8.333333333333334,1,1,0,0,9,9,5,1,720.5,1304316.5,392903.19,839814.25,110903.04,4567.1797 -10616,13082,23558,23559,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,3,7,-15.461266,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.7,46.46,54.62,53.53,8.333333333333334,1,1,0,0,6,5,4,1,602.5,1580972,631948.38,423403.88,0,4176.7988 -10616,13082,23559,23558,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.5193567,8.6964703,3,-7,71.919662,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.5353909,8.5986977,54.62,53.53,58.7,46.46,8.333333333333334,1,1,0,0,0,5,4,1,602.5,1580972,631948.38,423403.88,0,4176.7988 -10617,13083,23560,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3395681,8.041996,0,0,0,-937.06848,0,2,2,2019,16,5,6,0,1,5,0,72.448158,72.448158,0,0,0,0,2,0,0,0,0,0,45.56,60.26,-9,-9,6.666666666666667,1,1,0,0,10,6,4,1,1235,290256.5,27061.387,62302.289,56890.758,1552.0907 -10618,13084,23561,23562,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,5.5903344,5.680748,6,-1,-23.968376,0,-9,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.3065505,5.8580737,36.03,35.07,51.77,58.57,8.333333333333334,1,1,0,0,0,7,2,1,376.5,127378,50497.77,281671.22,48573.828,1711.4717 -10618,13084,23562,23561,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,6,1,-2.8898628,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.439661,0,51.77,58.57,36.03,35.07,10,1,1,0,0,0,7,2,1,376.5,127378,50497.77,281671.22,48573.828,1711.4717 -10619,13085,23563,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.8896589,7.8374996,3.0724881,0,0,-841.34552,0,2,2,2019,13,1,39,39,1,1,0,7.7023602,7.7023602,0,0,0,0,0,1,1,0,2.5414684,3.5437651,50.43,29.76,-9,-9,5,1,1,0,0,11,4,3,1,2417,297054.16,224392.95,129215.66,0,1163.0569 -10620,13086,23564,23565,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.4214754,6.8565426,52,2,95.730026,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0925031,6.6329489,60.6,38.22,55.94,23.15,10,1,1,0,0,0,12,2,1,343.5,87977.594,-28728.328,0,0,1459.8191 -10620,13086,23565,23564,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,52,-2,81.388313,0,3,2,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,.99379545,0,55.94,23.15,60.6,38.22,5,1,1,0,0,0,12,2,1,343.5,87977.594,-28728.328,0,0,1459.8191 -10621,13087,23566,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.692203,7.6670055,0,0,-926.42883,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.0674295,7.7203698,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,298,744674.06,393078.69,384729.69,0,1131.3357 -10622,13088,23567,23568,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,52,-1,0,0,3,3,2019,16,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,24.06,34.09,38.64,6.666666666666667,1,1,0,0,0,12,1,1,337,-88936.383,-38915.801,132557.55,0,1661.6024 -10622,13088,23568,23567,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,52,1,0,0,3,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.09,38.64,43.6,24.06,8.333333333333334,1,1,0,0,0,12,1,1,337,-88936.383,-38915.801,132557.55,0,1661.6024 -10623,13089,23569,23570,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,0,0,7,0,0,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,28.55,50.85,52,56,5,1,1,0,0,0,11,1,0,540.33331,-128978.7,0,105118.9,31218.094,2193.3823 -10623,13089,23570,23569,-9,-9,1,1,44,0,1,0,2,2,-9,1,4,0,0,0,7,0,0,-9,2,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,28.55,50.85,8,1,1,0,0,0,11,1,0,540.33331,-128978.7,0,105118.9,31218.094,2193.3823 -10623,13089,23571,-9,23569,23570,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1073.4645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,11,1,0,540.33331,-128978.7,0,105118.9,31218.094,2193.3823 -10623,13090,23572,-9,23569,23570,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1078.4341,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.50002819,0,46,58,-9,-9,7,1,1,0,0,0,11,1,0,493,-6102.3042,0,0,0,-38.945007 -10624,13091,23573,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1162.7468,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,28.393454,0,249.37558,0,1,1,0,2.3794746,0,36.04,43.1,-9,-9,6.666666666666667,1,1,0,0,5,5,1,1,239,-128945.46,0,0,0,1389.1261 -10625,13092,23574,23576,-9,-9,1,0,32,1,3,0,2,2,-9,0,5,8.1181879,7.9374223,4.9371166,12,-4,136.17703,0,3,3,2019,11,1,37,37,1,1,0,9.616189,9.616189,0,0,0,0,0,1,1,0,5.4965668,0,40.48,62.56,19.13,33.59,5,1,1,0,0,8,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 -10625,13092,23575,-9,23574,23576,1,0,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1054.3508,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 -10625,13092,23576,23574,-9,-9,1,1,36,1,3,0,2,2,-9,1,1,0,0,0,12,4,193.88544,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,19.13,33.59,40.48,62.56,0,1,1,0,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 -10625,13092,23577,-9,23574,23576,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.8728,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 -10625,13092,23578,-9,23574,23576,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.8501,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,474,-36394.234,39521.25,0,0,2411.1519 -10626,13093,23579,-9,23581,23580,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.16577,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,572.66669,-160291.47,0,0,0,2890.6074 -10626,13093,23580,23581,-9,-9,1,1,39,0,1,0,2,2,-9,1,1,0,0,0,6,2,20.728573,0,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,20.38,28.87,57.33,53.46,1.666666666666667,1,1,0,0,3,12,3,0,572.66669,-160291.47,0,0,0,2890.6074 -10626,13093,23581,23580,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3087807,8.2366486,0,6,-2,22.318829,0,-9,-9,2019,6,0,38,40,1,0,0,12.901044,12.901044,0,0,0,0,71.5,1,1,0,0,0,57.33,53.46,20.38,28.87,8.333333333333334,1,1,0,0,7,12,3,0,572.66669,-160291.47,0,0,0,2890.6074 -10626,13094,23582,-9,23581,23580,1,0,19,0,1,0,2,2,-9,0,3,6.6911435,6.6613841,0,0,0,-1092.7963,0,2,2,2019,12,1,36,0,1,1,1,2.4744382,2.4744382,0,0,0,0,5.48,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,1,12,2,0,95,-125244.45,0,0,0,621.55261 -10627,13095,23583,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.1660056,6.3531876,0,0,-1082.0216,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1421595,60.53,43.74,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,479,-161219.38,73801.961,0,0,676.13202 -10628,13096,23584,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,5.8301864,5.9238949,0,0,-988.95386,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9217968,5.5824904,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1131,549549.25,-67166.172,478233.78,0,1040.381 -10629,13097,23585,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1861916,7.9980898,0,0,0,-914.90503,0,-9,-9,2019,6,0,42,49,1,0,0,6.3381424,6.3381424,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,652,65111.527,23960.053,115115.83,47778.625,1573.4951 -10630,13098,23586,23587,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.6151886,8.7442999,0,27,0,-170.84,0,3,3,2019,8,0,36,36,1,0,0,15.521255,15.521255,0,0,0,0,0,0,0,0,0,0,36.75,54.56,36.93,56.27,10,1,1,0,0,9,7,5,1,820,363998.41,203845.75,303397.41,128446.23,3647.8223 -10630,13098,23587,23586,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,7.8544211,7.9068284,0,27,0,-72.838463,0,3,3,2019,12,0,25,30,1,0,0,10.261068,10.261068,0,0,0,0,0,0,0,0,0,0,36.93,56.27,36.75,54.56,5,1,1,0,0,9,7,5,1,820,363998.41,203845.75,303397.41,128446.23,3647.8223 -10631,13099,23588,23589,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.1453342,5.9561448,49,1,61.746193,0,3,3,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,8.6125174,6.029809,49.33,27.69,51,46,1.666666666666667,1,1,0,0,5,5,2,1,1484,469465.97,250895.56,137568.22,0,2942.3533 -10631,13099,23589,23588,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-29.165632,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,49.33,27.69,7,1,1,0,0,0,5,2,1,1484,469465.97,250895.56,137568.22,0,2942.3533 -10632,13100,23590,23591,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8790846,7.8803501,0,41,-3,-37.732731,0,3,2,2019,14,0,60,60,1,3,0,3.7539339,3.7539339,0,0,0,0,66,1,1,0,0,0,51.79,19.48,57.16,56.15,8.333333333333334,1,1,0,0,8,9,4,1,882.5,2203623.5,342308.13,944577.25,201028.13,3761.8938 -10632,13100,23591,23590,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,7.6791582,7.8858762,41,3,72.426186,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5408597,7.9228873,57.16,56.15,51.79,19.48,8.333333333333334,1,1,0,0,4,9,4,1,882.5,2203623.5,342308.13,944577.25,201028.13,3761.8938 -10633,13101,23592,23593,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.9469805,8.4472866,0,1,-2,69.763649,-9,-9,-9,2019,10,0,40,0,1,1,0,9.3213902,9.3213902,0,0,0,0,0,1,1,0,0,0,51,56,43.35,50.18,7,4,1,0,0,1,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 -10633,13101,23593,23592,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.2906113,7.245378,0,1,2,6.8503008,-9,-9,-9,2019,11,1,20,0,1,1,0,13.029101,13.029101,0,0,0,0,0,1,1,0,0,0,43.35,50.18,51,56,8.333333333333334,1,1,0,0,2,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 -10633,13101,23594,-9,23593,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.74805,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 -10633,13101,23595,-9,23593,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1053.1626,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,10,1,1,0,0,0,12,3,0,1944.5,224656.97,76567.984,131091.97,128513.3,2675.0034 -10634,13102,23596,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1418676,8.081995,5.8085108,0,0,-989.37531,0,2,1,2019,10,0,50,60,1,0,0,6.7624302,6.7624302,0,0,0,0,0,1,1,0,0,5.700973,51.47,53.17,-9,-9,5,1,1,0,0,8,7,4,1,1207,-58713.672,60261.391,187992.27,20936.295,1883.0642 -10634,13102,23597,-9,23596,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1012.3599,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.9905587,0,48,59,-9,-9,7,1,1,0,0,0,7,4,1,1207,-58713.672,60261.391,187992.27,20936.295,1883.0642 -10635,13103,23598,-9,23601,23599,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-995.7691,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 -10635,13103,23599,23601,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,3.7551348,3.9177561,0,6,10,-107.97925,0,-9,-9,2019,3,0,45,68,1,0,0,.1651562,.1651562,0,0,0,0,0,1,1,0,.85361522,0,52.23,55.6,36.3,48.07,8.333333333333334,1,1,0,0,4,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 -10635,13103,23600,-9,23601,23599,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.48468,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 -10635,13103,23601,23599,-9,-9,1,0,30,1,3,0,2,2,-9,0,3,7.389884,7.2145038,0,6,-10,-73.886276,0,2,2,2019,27,12,28,32,1,12,0,6.5740776,6.5740776,0,0,0,0,0,1,1,0,0,0,36.3,48.07,52.23,55.6,1.666666666666667,1,1,0,0,8,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 -10635,13103,23602,-9,23601,23599,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.448,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,827.20001,1634961.5,378905.53,937369.5,0,922.35651 -10636,13104,23603,-9,-9,-9,1,0,45,1,2,0,3,3,-9,0,3,0,0,0,0,0,-1037.1558,0,-9,-9,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.85,50.34,-9,-9,3.333333333333333,1,1,0,1,3,4,1,0,838.66669,257340.22,0,0,0,668.82477 -10636,13104,23604,-9,23603,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.6388,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,1,0,838.66669,257340.22,0,0,0,668.82477 -10636,13104,23605,-9,23603,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-996.98523,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,838.66669,257340.22,0,0,0,668.82477 -10636,13105,23606,-9,23603,-9,1,1,20,1,2,0,2,2,-9,0,2,7.5534863,7.5856981,0,0,0,-1039.745,0,3,-9,2019,19,6,35,35,1,6,1,7.1854014,7.1854014,0,0,0,0,0,1,1,0,0,0,33.3,47.01,-9,-9,5,4,2,0,1,3,4,3,0,1330,-204013.2,-122948.96,0,0,934.58148 -10637,13106,23607,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,8.2681456,8.4173241,0,0,-928.11731,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7217889,8.2083759,48.77,50.89,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,597,40369.523,252729.92,135932.56,0,2855.874 -10638,13107,23608,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.39203,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.24,32.39,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,255,-197401.41,0,0,0,474.61426 -10638,13108,23609,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.4092011,6.3223062,0,0,-1081.043,-9,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,80.964775,0,0,1,1,0,6.2980094,6.5030828,50.51,15.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,1514,42733.199,237694.84,0,0,456.72385 -10639,13109,23610,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1038.2323,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,25.44,65.40000000000001,-9,-9,6.666666666666667,3,4,1,0,8,6,1,1,274,-352532.69,0,0,0,686.80737 -10639,13110,23611,-9,23610,-9,1,1,22,0,1,0,2,2,-9,0,3,7.2318339,7.2634501,0,0,0,-998.40253,0,1,2,2019,9,0,24,0,1,0,1,6.0031366,6.0031366,0,0,0,0,0,1,1,0,0,0,43.83,43.24,-9,-9,8.333333333333334,3,4,0,0,1,6,3,1,1769,-58813.66,25939.072,0,0,-88.404579 -10640,13111,23612,23613,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.6346731,9.1953497,0,5,-1,-72.534134,0,2,1,2019,6,0,35,30,1,0,0,53.027122,53.027122,0,0,0,0,0,1,1,0,8.5254135,0,46.21,58.07,57.06,57.76,8.333333333333334,1,1,0,0,8,5,5,1,2247,1058513.8,682704.13,517591.5,-4243.2813,15910.498 -10640,13111,23613,23612,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,8.0750208,7.9905815,0,5,1,66.82724,0,2,3,2019,6,0,12,16,1,0,0,30.193247,30.193247,0,0,0,0,0,1,1,0,8.970521,0,57.06,57.76,46.21,58.07,10,1,1,0,0,7,5,5,1,2247,1058513.8,682704.13,517591.5,-4243.2813,15910.498 -10641,13112,23614,23615,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.0859556,5.4831414,38,5,-30.031015,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5411973,5.1239095,54.2,57.49,54.96,53.17,10,1,1,0,0,0,6,3,1,332.5,1670468.6,1277102.5,359059.06,0,3386.748 -10641,13112,23615,23614,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2663059,8.2102365,39,-5,100.10989,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6052287,8.230979,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,5,6,3,1,332.5,1670468.6,1277102.5,359059.06,0,3386.748 -10642,13113,23616,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.1116257,8.5829372,0,0,0,-1045.575,0,-9,-9,2019,7,0,39,39,1,0,0,13.207449,13.207449,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,1229,114197.19,-99398.383,0,0,1895.8333 -10643,13114,23617,23618,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,57.92,51.82,10,3,4,0,0,0,2,1,1,851,116176.15,0,111557.45,0,-326.68011 -10643,13114,23618,23617,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,6,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.422848,0,57.92,51.82,51.25,52.08,0,1,1,0,0,0,2,1,1,851,116176.15,0,111557.45,0,-326.68011 -10644,13115,23619,-9,23620,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.19495,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,725.66669,0,0,0,0,1171.3479 -10644,13115,23620,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1041.1222,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,2,3,0,0,0,7,1,1,725.66669,0,0,0,0,1171.3479 -10644,13115,23621,-9,23620,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.54449,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,725.66669,0,0,0,0,1171.3479 -10645,13116,23622,23623,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.9823618,8.4891891,6.891161,41,-2,-49.178177,0,2,2,2019,7,0,18,30,1,0,0,19.833258,19.833258,0,0,0,0,0,0,0,0,4.6172781,7.2234249,61.01,53.18,54.53,41.24,8.333333333333334,1,1,0,0,12,9,5,1,342,3033436,1340906,377565.81,0,4137.0586 -10645,13116,23623,23622,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.3503914,8.1001205,41,2,-95.540932,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.868382,8.1986198,54.53,41.24,61.01,53.18,6.666666666666667,1,1,0,0,9,9,5,1,342,3033436,1340906,377565.81,0,4137.0586 -10646,13117,23624,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.7138615,8.7050762,0,0,0,-1114.547,0,2,-9,2019,7,0,48,35,1,0,0,11.894373,11.894373,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,5,0,1661,50967.305,0,0,0,2231.9294 -10647,13118,23625,23627,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7045169,7.8156042,0,28,1,-154.68695,0,2,2,2019,7,0,30,20,1,0,0,11.307056,11.307056,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,7,10,3,1,507.33334,1104665.5,299090.69,302873.25,0,1444.5941 -10647,13118,23626,-9,23625,23627,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1020.1021,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,507.33334,1104665.5,299090.69,302873.25,0,1444.5941 -10647,13118,23627,23625,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,0,0,0,26,-1,101.06363,0,2,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.7143092,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,11,10,3,1,507.33334,1104665.5,299090.69,302873.25,0,1444.5941 -10647,13119,23628,-9,23625,23627,1,1,20,0,0,0,2,2,-9,0,3,7.8338122,7.6605768,0,0,0,-1000.4177,0,2,2,2019,6,0,39,0,1,0,1,5.9494548,5.9494548,0,0,0,0,0,1,1,0,1.494468,0,53.78,48.41,-9,-9,10,1,1,0,0,1,10,3,1,2132,-48141.055,0,0,0,1005.02 -10648,13120,23629,23630,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7474689,8.9658623,0,1,2,79.28643,-9,-9,-9,2019,10,0,60,0,1,1,0,12.869874,12.869874,0,0,0,0,0,0,0,0,0,0,49,58,53.3,32.18,7,4,1,0,0,1,7,5,1,1004.5,523399.63,116890.33,0,0,4915.584 -10648,13120,23630,23629,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.879714,8.5666847,0,1,-2,58.102184,0,1,1,2019,20,8,45,20,1,8,0,15.087322,15.087322,0,0,0,0,0,0,0,0,4.0141649,0,53.3,32.18,49,58,3.333333333333333,1,1,0,0,7,7,5,1,1004.5,523399.63,116890.33,0,0,4915.584 -10649,13121,23631,-9,23633,23634,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.9832,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 -10649,13121,23632,-9,23633,23634,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.93652,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 -10649,13121,23633,23634,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,18,-4,5.2114353,0,-9,-9,2019,15,5,0,18,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,58.46,52,54.51,3.333333333333333,1,1,0,0,2,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 -10649,13121,23634,23633,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.0340214,8.9564953,0,19,4,-41.812428,0,-9,-9,2019,14,2,38,47,1,2,0,21.10564,21.10564,0,0,0,0,0,1,1,0,0,0,52,54.51,37.41,58.46,8.333333333333334,2,3,0,0,9,6,4,1,720.75,263685.94,247108.16,129118.84,81317.031,2274.98 -10650,13122,23635,23637,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,18,-2,-13.968534,0,-9,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.4,23.11,51.11,53.42,1.666666666666667,1,1,0,1,5,2,3,1,1078,-87612.977,-18065.443,179753.63,103476.95,1744.6372 -10650,13122,23636,-9,23635,23637,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-864.35291,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,1078,-87612.977,-18065.443,179753.63,103476.95,1744.6372 -10650,13122,23637,23635,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.1017656,7.6293831,0,19,2,-6.592134,0,2,2,2019,10,0,40,40,1,0,0,8.030652,8.030652,0,0,0,0,7,1,1,0,0,0,51.11,53.42,26.4,23.11,8.333333333333334,1,1,0,0,7,2,3,1,1078,-87612.977,-18065.443,179753.63,103476.95,1744.6372 -10650,13123,23638,-9,23635,23637,1,0,20,0,1,0,2,2,-9,0,3,5.5393476,5.461617,0,0,0,-991.68701,0,2,2,2019,8,0,16,16,1,0,1,2.1808283,2.1808283,0,0,0,0,2,1,1,0,0,0,50.11,55.32,-9,-9,5,1,1,0,0,2,2,2,1,287,-189743.78,0,0,0,920.9436 -10651,13124,23639,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.5203671,7.8271155,0,0,0,-1074.4371,0,2,2,2019,9,0,33,37,1,0,0,5.9621654,5.9621654,0,0,0,0,0,0,0,0,0,0,50.68,52.42,-9,-9,6.666666666666667,4,2,0,0,8,8,3,0,1820,23812.721,0,0,0,482.06812 -10652,13125,23640,23641,-9,-9,1,0,68,1,2,0,3,3,-9,0,2,0,0,0,51,-10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,37.204937,0,71.5,1,1,0,0,0,40.61,31.58,61.7,7.25,6.666666666666667,2,3,0,0,0,8,1,1,428.5,1506020,0,954292.5,0,733.92517 -10652,13125,23641,23640,-9,-9,1,1,78,1,2,0,2,2,-9,0,2,0,0,0,51,10,0,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,27.13961,0,0,1,1,0,0,0,61.7,7.25,40.61,31.58,8.333333333333334,2,3,0,0,0,8,1,1,428.5,1506020,0,954292.5,0,733.92517 -10652,13126,23642,-9,23643,23644,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.6449,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 -10652,13126,23643,23644,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,0,0,0,4,0,48.553284,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,43.03,53.23,54.2,57.49,5,2,3,1,0,0,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 -10652,13126,23644,23643,23640,23641,1,1,30,1,2,0,1,1,-9,0,4,8.7174587,8.9832764,0,4,0,-15.557882,0,3,2,2019,11,0,35,35,1,0,0,28.158577,28.158577,0,0,0,0,2,1,1,0,0,0,54.2,57.49,43.03,53.23,6.666666666666667,2,3,0,0,6,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 -10652,13126,23645,-9,23643,23644,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.99554,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,1046.5,-181087.63,35756.074,0,0,2795.6841 -10653,13127,23646,23647,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,3.8457382,3.5619161,8,6,3.4526169,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7001424,58.56,46.45,42.95,49.81,8.333333333333334,1,1,0,0,3,13,2,1,1505,11388.477,-25889.982,0,0,1755.58 -10653,13127,23647,23646,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,8,-6,-213.16176,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,49.81,58.56,46.45,8.333333333333334,1,1,0,0,0,13,2,1,1505,11388.477,-25889.982,0,0,1755.58 -10653,13128,23648,-9,23647,23646,1,1,38,0,0,0,3,3,-9,1,4,0,0,0,0,0,-966.56158,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.66,55.68,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1005,-239482.8,0,57935.59,0,695.84375 -10654,13129,23649,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-994.79993,0,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,10,1,1,1,1,0,11,1,0,779,-250098.59,23177.334,0,0,89.456253 -10654,13130,23650,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,0,0,0,0,0,-976.42444,0,-9,-9,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,28.89,42.61,-9,-9,5,1,1,1,1,2,11,1,0,1092,191777.61,0,0,0,481.70929 -10655,13131,23651,23652,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1970186,7.9917722,0,13,-10,-13.456589,0,3,3,2019,30,12,43,40,1,12,0,8.5831833,8.5831833,0,0,0,0,0,0,0,0,0,0,20.1,54.43,55.36,51.57,3.333333333333333,1,1,0,0,9,9,4,1,500.5,2471345.8,365357.19,950941.69,202614.47,2490.3291 -10655,13131,23652,23651,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.8007836,7.845634,0,13,10,-62.595177,0,3,3,2019,8,0,46,54,1,0,0,5.8659339,5.8659339,0,0,0,0,2,0,0,0,0,0,55.36,51.57,20.1,54.43,8.333333333333334,1,1,0,0,9,9,4,1,500.5,2471345.8,365357.19,950941.69,202614.47,2490.3291 -10656,13132,23653,-9,23654,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.3334,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,.83708704,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1129,-52654.031,0,0,0,1543.3655 -10656,13132,23654,-9,-9,-9,1,0,26,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1058.7849,0,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,23.39,51.81,-9,-9,5,1,1,0,0,0,4,2,0,1129,-52654.031,0,0,0,1543.3655 -10657,13133,23655,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,7.3789325,7.4935269,0,0,0,-953.88947,-9,3,2,2019,11,0,34,0,1,0,0,9.7009468,9.7009468,0,0,0,0,27,1,1,0,0,0,52.53,33.11,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,131,464949.59,-2887.0818,0,0,1522.6025 -10658,13134,23656,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,8.2535725,8.6272087,0,0,0,-1008.2238,0,3,2,2019,20,8,30,30,1,8,0,19.093241,19.093241,0,0,0,0,2,1,1,0,0,0,45.69,33.25,-9,-9,3.333333333333333,1,1,0,0,11,9,4,1,286,-313519.69,54059.012,0,0,1473.7697 -10659,13135,23657,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.0764432,7.2153478,0,0,-995.24927,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,5.117507,6.7962227,39.01,30.69,-9,-9,5,1,1,0,0,0,2,2,1,465,155673.78,108466.48,112298.02,0,1344.059 -10660,13136,23658,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.6421862,8.608223,0,0,0,-963.27338,0,3,2,2019,12,0,35,35,1,0,0,15.41718,15.41718,0,0,0,0,0,0,0,0,0,0,45.66,57.21,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,228,172743.13,0,0,0,2489.6267 -10660,13137,23659,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.2664185,9.1677313,0,0,0,-1003.8812,0,2,2,2019,7,0,45,38,1,0,0,23.100328,23.100328,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,348,612803.31,645.4256,353374.63,94014.75,2436.1946 -10661,13138,23660,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.6426749,6.873982,0,0,-1044.3059,-9,2,1,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4696627,7.2853403,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,635,1142056.1,151454.22,336780.56,0,675.74792 -10662,13139,23661,23662,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.671946,7.7956457,0,8,0,26.752972,0,3,2,2019,12,2,33,30,1,2,0,6.1781373,6.1781373,0,0,0,0,0,0,0,0,0,0,42.85,40.94,62.39,56.71,5,1,1,0,0,9,10,3,1,366.5,273439.44,0,178480.19,39125.508,1130.9531 -10662,13139,23662,23661,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,6.8144131,6.5134568,0,8,0,92.875946,0,-9,3,2019,6,0,26,26,1,0,0,3.7784946,3.7784946,0,0,0,0,0,0,0,0,0,0,62.39,56.71,42.85,40.94,10,1,1,0,0,9,10,3,1,366.5,273439.44,0,178480.19,39125.508,1130.9531 -10662,13140,23663,-9,23662,23661,1,0,21,0,0,0,2,2,-9,0,3,7.8365474,8.0732594,0,0,0,-889.6828,-9,2,3,2019,22,9,39,0,1,9,1,7.6686153,7.6686153,0,0,0,1.8557824,0,0,0,0,0,0,40.76,52.97,-9,-9,5,1,1,0,0,2,10,4,1,280,210070.05,24610.594,0,0,890.15356 -10662,13141,23664,-9,23662,23661,1,1,19,0,0,0,2,2,-9,0,4,7.719955,7.9267855,0,0,0,-948.02771,0,2,3,2019,13,2,47,40,1,2,1,6.4078884,6.4078884,0,0,0,0,0,0,0,0,.26830757,0,47.64,55.02,-9,-9,5,1,1,0,0,3,10,3,1,518,-189486.08,0,0,0,831.2254 -10663,13142,23665,23666,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.7772322,9.5539331,0,8,4,24.609634,0,1,2,2019,11,3,50,45,1,3,0,31.86915,31.86915,0,0,0,0,14.5,1,1,0,4.2176771,0,46.44,59.62,51.09,9.4,6.666666666666667,1,1,0,0,9,8,5,1,211,4388472,3396910,680603.38,0,5206.4438 -10663,13142,23666,23665,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,0,0,8,-4,-113.59221,0,1,1,2019,17,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,5.6684237,0,51.09,9.4,46.44,59.62,6.666666666666667,1,1,0,0,0,8,5,1,211,4388472,3396910,680603.38,0,5206.4438 -10664,13143,23667,23669,-9,-9,1,0,42,0,3,0,1,1,-9,1,4,6.6417599,6.4451346,0,19,-6,-79.684189,0,2,2,2019,20,8,15,15,1,8,0,5.9349751,5.9349751,0,0,0,0,14.5,1,1,0,0,0,31.12,63.98,53,54,8.333333333333334,1,1,0,0,4,9,4,1,477.66666,997734.75,848058.38,400740.53,-7043.0581,4224.7573 -10664,13143,23668,-9,23667,23669,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.4212,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,477.66666,997734.75,848058.38,400740.53,-7043.0581,4224.7573 -10664,13143,23669,23667,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,9.2802649,9.156827,0,6,6,-3.4811816,0,-9,-9,2019,9,0,50,35,1,1,0,25.4247,25.4247,0,0,0,0,0,1,1,0,0,0,53,54,31.12,63.98,8,1,1,0,0,1,9,4,1,477.66666,997734.75,848058.38,400740.53,-7043.0581,4224.7573 -10665,13144,23670,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9474659,7.8168654,5.3426676,0,0,-881.8161,0,3,3,2019,11,0,30,29,1,0,0,8.3606253,8.3606253,0,0,0,0,0,1,1,0,5.583539,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,531,1108.1621,143459.17,105510.08,85055.219,1488.2615 -10665,13144,23671,-9,23670,-9,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-908.53656,-9,2,-9,2019,17,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,69.3,-9,-9,5,1,1,1,0,0,5,3,1,531,1108.1621,143459.17,105510.08,85055.219,1488.2615 -10665,13145,23672,-9,23670,-9,1,0,19,0,1,0,2,2,-9,0,3,8.0914478,7.8463268,0,0,0,-994.21442,-9,2,-9,2019,6,1,50,0,1,1,1,4.7590322,4.7590322,0,0,0,0,0,1,1,0,1.7502599,0,56.94,49.53,-9,-9,10,1,1,0,0,1,5,3,1,226,-34607.297,-25803.475,0,0,1031.3983 -10666,13146,23673,23674,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.4905195,8.3882275,0,6,-1,42.173424,0,1,2,2019,7,1,40,41,1,1,0,10.975001,10.975001,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,6,12,5,1,760,160399.38,-75520.516,209665.25,150982.75,3630.3848 -10666,13146,23674,23673,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3633976,7.963829,0,6,1,-192.48969,0,-9,-9,2019,8,0,38,40,1,0,0,13.241147,13.241147,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,12,5,1,760,160399.38,-75520.516,209665.25,150982.75,3630.3848 -10667,13147,23675,-9,23676,23677,1,1,35,0,0,0,2,2,-9,0,4,7.9015136,7.3316579,0,0,0,-913.80927,0,2,2,2019,10,0,42,38,1,1,0,6.8989997,6.8989997,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,13,3,1,882,147398.16,-22947.518,0,0,896.86523 -10667,13148,23676,23677,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,-2,27.858421,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.24,34.35,60.12,54.8,0,1,1,0,0,2,13,4,1,690.5,1858460,862933.88,321418.69,0,2662.083 -10667,13148,23677,23676,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.4527025,8.2353563,0,7,2,-123.50443,0,3,3,2019,6,0,37,37,1,0,0,14.303804,14.303804,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.24,34.35,10,1,1,0,0,8,13,4,1,690.5,1858460,862933.88,321418.69,0,2662.083 -10668,13149,23678,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,5.6031256,5.1592093,0,0,-1102.3929,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.475563,5.4870853,58.23,48.98,-9,-9,5,1,1,0,0,8,12,2,1,898,167614.77,71212.844,82537.891,0,1243.9099 -10668,13150,23679,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,5,0,0,0,0,0,-990.27417,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,88,0,0,0,0,637.33221 -10669,13151,23680,-9,23681,23682,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.2264,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 -10669,13151,23681,23682,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.5656748,8.4598751,0,15,0,44.79818,0,2,2,2019,14,2,35,35,1,2,0,14.646183,14.646183,0,0,0,0,0,1,1,0,0,0,21.58,52.16,57.16,56.15,6.666666666666667,2,3,0,0,10,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 -10669,13151,23682,23681,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.8716469,8.915863,0,15,0,75.191948,0,3,1,2019,6,0,35,35,1,0,0,23.475632,23.475632,0,0,0,0,2,1,1,0,0,0,57.16,56.15,21.58,52.16,8.333333333333334,2,3,0,0,11,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 -10669,13151,23683,-9,23681,23682,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.4456,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,1060,820667.38,394096.44,598245.06,202772.14,5320.7944 -10670,13152,23684,23685,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.0301771,7.9437213,0,6,-4,-78.377571,0,2,3,2019,11,0,39,53,1,0,0,9.1583118,9.1583118,0,0,0,0,0,1,1,0,0,0,44.83,41.9,28.35,41.48,5,1,1,0,0,7,11,3,1,381.5,290308.5,71236.961,74697.102,57566.578,1406.9001 -10670,13152,23685,23684,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,6,4,66.051208,0,2,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,28.35,41.48,44.83,41.9,1.666666666666667,1,1,0,0,3,11,3,1,381.5,290308.5,71236.961,74697.102,57566.578,1406.9001 -10670,13153,23686,-9,23685,23684,1,1,20,0,0,0,2,2,-9,0,3,8.6051683,8.9063148,0,0,0,-1087.566,0,3,2,2019,9,1,55,60,1,1,1,12.677228,12.677228,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,0,1,1,0,0,3,11,5,1,106,-69553.156,0,0,0,2499.166 -10670,13154,23687,-9,23685,23684,1,1,18,0,0,0,2,2,-9,0,4,5.9687562,5.6279564,0,0,0,-1069.9171,0,3,2,2019,7,0,41,0,1,0,1,1.1985344,1.1985344,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,1,1,11,2,1,622,4328.563,-24340.682,0,0,302.83032 -10671,13155,23688,-9,23689,23690,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.5168,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,533,573397.56,520635.31,0,0,7560.6904 -10671,13155,23689,23690,-9,-9,1,0,57,0,1,0,1,1,-9,0,4,9.7364006,9.6161728,0,17,16,-73.44017,0,-9,-9,2019,8,0,35,35,1,0,0,43.695934,43.695934,0,0,0,0,0,1,1,0,1.4131625,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,533,573397.56,520635.31,0,0,7560.6904 -10671,13155,23690,23689,-9,-9,1,1,41,0,1,0,3,3,-9,0,4,8.0623064,7.9265113,0,20,-16,-4.4118214,0,3,3,2019,12,0,39,39,1,0,0,9.1416168,9.1416168,0,0,0,0,0,1,1,0,.88403404,0,51.24,58.84,48.87,58.55,6.666666666666667,1,1,0,0,12,9,5,1,533,573397.56,520635.31,0,0,7560.6904 -10672,13156,23691,23692,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,6.965414,7.2126222,52,-1,-193.80849,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,6.7697124,6.81037,59.24,24.3,43.15,32.98,8.333333333333334,1,1,0,0,5,7,3,1,820,1013463.8,197884.16,379177.97,0,2222.9568 -10672,13156,23692,23691,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,7.0523553,7.1923146,52,1,-96.173347,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.3769975,43.15,32.98,59.24,24.3,5,1,1,0,0,0,7,3,1,820,1013463.8,197884.16,379177.97,0,2222.9568 -10673,13157,23693,23695,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,8.44205,8.1895447,0,8,5,-9.9400835,0,2,2,2019,7,0,40,38,1,0,0,10.717978,10.717978,0,0,0,0,0,1,1,0,3.6346602,0,45.76,54.84,57.06,57.76,8.333333333333334,1,1,0,0,10,4,4,1,1151.3334,-29531.766,43090.105,89187.852,31803.672,2274.8523 -10673,13157,23694,-9,23695,23693,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.11652,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1151.3334,-29531.766,43090.105,89187.852,31803.672,2274.8523 -10673,13157,23695,23693,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,6.9099822,6.9762478,0,8,-5,87.646118,0,2,2,2019,3,0,17,13,1,0,0,7.3786712,7.3786712,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.76,54.84,10,1,1,0,0,10,4,4,1,1151.3334,-29531.766,43090.105,89187.852,31803.672,2274.8523 -10674,13158,23696,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.9900393,8.0717545,0,0,-1063.7462,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,6.2981343,8.0271215,46.51,46.1,-9,-9,1.666666666666667,1,1,0,0,5,13,4,1,480,324371.94,449697.56,190777.19,0,1863.9834 -10675,13159,23697,23699,-9,-9,1,1,57,0,1,0,2,2,-9,0,5,6.4628444,7.0706162,5.3878589,4,15,-15.204936,0,-9,-9,2019,7,0,20,24,1,0,0,4.8279157,4.8279157,0,0,0,0,0,1,1,0,6.7923341,5.5282865,57.06,57.76,32.17,54.65,6.666666666666667,1,1,0,0,9,9,3,1,1249.6666,564530.13,498481.78,196820.72,17120.648,2477.842 -10675,13159,23698,-9,23699,23697,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.0967,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1249.6666,564530.13,498481.78,196820.72,17120.648,2477.842 -10675,13159,23699,23697,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.9905901,8.0660572,0,4,-15,118.66695,0,3,2,2019,17,5,30,0,1,5,0,13.186309,13.186309,0,0,0,0,7,1,1,0,0,0,32.17,54.65,57.06,57.76,8.333333333333334,1,1,0,0,7,9,3,1,1249.6666,564530.13,498481.78,196820.72,17120.648,2477.842 -10675,13160,23700,-9,23699,23697,1,1,21,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1092.1565,1,2,2,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,9,1,1,1661,0,0,0,0,376.90192 -10675,13161,23701,-9,23699,23697,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-941.32935,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,705,0,0,0,0,0 -10676,13162,23702,-9,-9,-9,1,0,54,1,2,0,2,2,-9,0,2,7.5608172,7.5946002,0,0,0,-913.88574,0,-9,-9,2019,14,4,20,16,1,4,0,9.5928593,9.5928593,0,0,0,0,0,1,1,0,0,0,39.83,48.26,-9,-9,5,1,1,0,1,7,1,2,0,2459,113612.09,-56865.082,0,0,542.96436 -10676,13163,23703,-9,23702,-9,1,0,25,1,2,0,2,2,-9,0,5,7.242188,7.5952225,0,0,0,-1097.3698,-9,2,-9,2019,3,0,27,0,1,0,1,5.9484439,5.9484439,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,439.5,57978.176,0,0,0,572.03326 -10676,13163,23704,-9,23703,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.5083,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,4,6,-9,0,0,1,3,0,439.5,57978.176,0,0,0,572.03326 -10677,13164,23705,-9,23707,23708,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.66052,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 -10677,13164,23706,-9,23707,23708,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1027.5741,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 -10677,13164,23707,23708,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.9446554,8.8091393,0,21,-4,60.598045,0,1,1,2019,9,0,45,50,1,0,0,18.50732,18.50732,0,0,0,0,0,0,0,0,1.1932967,0,46.34,61.24,59.83,48.07,8.333333333333334,1,1,0,0,12,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 -10677,13164,23708,23707,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.1072559,9.0804272,0,21,4,105.33856,0,2,3,2019,6,0,75,75,1,0,0,13.522644,13.522644,0,0,0,0,0,0,0,0,0,0,59.83,48.07,46.34,61.24,8.333333333333334,1,1,0,0,9,6,5,1,390.5,1671350.8,1419203.4,482648.44,182309.44,6889.1689 -10678,13165,23709,23710,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,9,23,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,1,0,47.540756,0,0,1,1,0,0,0,45.07,52.43,21.27,58.03,5,1,1,0,0,0,9,2,0,1103,523155.31,0,329033.44,0,1651.3062 -10678,13165,23710,23709,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,21,-23,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,21.27,58.03,45.07,52.43,5,1,1,0,0,7,9,2,0,1103,523155.31,0,329033.44,0,1651.3062 -10679,13166,23711,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0466843,7.950079,0,0,-951.28821,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.8859982,8.0858345,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,226,33082.781,97977.344,183935.88,0,2525.2739 -10680,13167,23712,23713,-9,-9,1,0,34,0,0,0,1,1,-9,1,3,8.3999262,8.7986431,6.3328304,2,2,9.2739983,0,2,2,2019,19,8,38,38,1,8,0,15.450231,15.450231,0,0,0,0,0,1,1,0,5.8936872,0,53.1,33.54,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,417.5,255846.5,105934.05,192784.44,152995.03,5452.7852 -10680,13167,23713,23712,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.0596457,9.0853205,0,2,-2,-42.441814,-9,-9,-9,2019,7,0,37,0,1,0,0,33.419628,33.419628,0,0,0,0,0,1,1,0,6.7139268,0,57.16,56.15,53.1,33.54,8.333333333333334,1,1,0,0,2,2,5,1,417.5,255846.5,105934.05,192784.44,152995.03,5452.7852 -10681,13168,23714,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.1862421,9.1192675,0,0,0,-881.93213,0,3,2,2019,11,0,40,47,1,0,0,27.809162,27.809162,0,0,0,0,0,0,0,0,1.1435333,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,460,1992110.5,1115789.6,786583.63,0,3470.6936 -10682,13169,23715,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,5,8.0091028,7.9302406,0,0,0,-960.03015,-9,-9,-9,2019,10,0,35,0,1,0,0,8.4349279,8.4349279,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,1.666666666666667,1,1,0,0,5,11,4,0,490,4896.3604,78120.328,0,0,1303.5969 -10683,13170,23716,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.8062477,9.0331421,0,0,0,-950.94836,0,3,3,2019,9,0,44,48,1,0,0,19.517645,19.517645,0,0,0,0,0,1,1,0,0,0,50.44,43.31,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,1393,967038.38,26891.877,596154.44,0,2216.9194 -10684,13171,23717,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.3792243,5.61729,0,0,-972.49078,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4024272,5.1688852,41.34,56.62,-9,-9,10,1,1,0,0,0,2,2,1,561,197484.73,29244.744,185447.78,0,1159.5933 -10685,13172,23718,23719,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.6517544,6.3886771,9,-2,110.19636,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.7468297,6.5896258,48.81,59.91,48.87,58.55,8.333333333333334,1,1,0,0,7,12,2,1,1031,52313.844,114667.24,47900.094,0,1019.1918 -10685,13172,23719,23718,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,9,2,97.94268,0,2,2,2019,8,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0592551,0,48.87,58.55,48.81,59.91,8.333333333333334,1,1,0,0,9,12,2,1,1031,52313.844,114667.24,47900.094,0,1019.1918 -10686,13173,23720,23721,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.5330524,7.5628595,0,8,0,4.6424446,0,2,3,2019,3,0,28,28,1,0,0,7.6478353,7.6478353,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.14,39.38,10,1,1,0,0,8,4,3,1,689.66669,128447.42,-55323.117,108770.56,67032.258,2308.5081 -10686,13173,23721,23720,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,7.8126831,7.7726183,0,10,9,-58.842651,0,2,2,2019,8,0,40,40,1,0,0,8.4585142,8.4585142,0,0,0,0,0,1,1,0,0,0,55.14,39.38,57.16,56.15,8.333333333333334,1,1,0,0,6,4,3,1,689.66669,128447.42,-55323.117,108770.56,67032.258,2308.5081 -10686,13173,23722,-9,23720,23721,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.74573,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,689.66669,128447.42,-55323.117,108770.56,67032.258,2308.5081 -10687,13174,23723,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,0,0,-937.14691,-9,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,1,0,8,2,0,394,-120699.45,0,0,0,1095.7078 -10688,13175,23724,23725,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,8.3491545,8.3113632,10,6,-6.641758,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,7.9040141,8.5965776,44.49,47.34,39.23,28.06,3.333333333333333,1,1,0,0,11,2,4,1,929.5,-264172.5,-96872.914,138792.56,60231.406,2039.657 -10688,13175,23725,23724,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,0,7.6006446,7.2025967,10,-6,-24.014441,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6169629,39.23,28.06,44.49,47.34,6.666666666666667,1,1,0,0,6,2,4,1,929.5,-264172.5,-96872.914,138792.56,60231.406,2039.657 -10688,13176,23726,-9,23724,23725,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1091.1067,1,2,2,2019,15,3,0,40,2,3,0,0,0,0,0,0,0,0,1,1,0,.91219401,0,26.18,61.09,-9,-9,5,1,1,0,0,3,2,1,1,570,206162.86,0,0,0,573.10876 -10689,13177,23727,-9,23730,23729,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.4569,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 -10689,13177,23728,-9,23730,23729,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.49896,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 -10689,13177,23729,23730,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2727222,9.547226,0,25,3,47.77763,0,2,2,2019,7,0,40,40,1,0,0,28.294653,28.294653,0,0,0,0,0,1,1,0,3.6152654,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,9,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 -10689,13177,23730,23729,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.8199449,6.5969391,0,25,-3,5.009656,0,3,2,2019,8,0,20,20,1,0,0,5.5423927,5.5423927,0,0,0,0,0,1,1,0,2.6412706,0,60.12,54.8,57.16,56.15,6.666666666666667,1,1,0,0,7,9,5,1,843.25,1295834.8,616596.38,336386.03,269409.66,3963.9695 -10690,13178,23731,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,8.0174007,8.1167212,0,0,-1026.8976,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,15.223323,0,134.99413,7,1,1,0,0,7.8818078,53.83,39.94,-9,-9,10,1,1,0,0,0,13,4,1,1108,508462,595875.5,0,0,2189.0596 -10691,13179,23732,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.3026,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,1184,-370425.84,0,126105.21,0,338.06161 -10692,13180,23733,23734,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.4835844,8.5382624,0,35,0,-75.643478,0,-9,-9,2019,10,0,40,40,1,0,0,13.701422,13.701422,0,0,0,0,0,0,0,0,0,0,51.83,57.2,47.29,55.39,6.666666666666667,1,1,0,0,12,8,5,1,1251.5,1640086,296313.78,1057987.1,32204.533,11832.981 -10692,13180,23734,23733,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.6273241,9.5989943,5.1155376,35,0,-54.074657,0,-9,-9,2019,10,0,40,40,1,0,0,42.94471,42.94471,0,0,0,0,0,0,0,0,4.7378502,4.906013,47.29,55.39,51.83,57.2,3.333333333333333,4,2,0,0,12,8,5,1,1251.5,1640086,296313.78,1057987.1,32204.533,11832.981 -10692,13181,23735,-9,23733,23734,1,0,22,0,0,0,2,2,-9,0,4,7.6941128,7.5385647,0,0,0,-1094.1111,0,3,3,2019,18,5,24,0,1,5,1,9.1748886,9.1748886,0,0,0,0,0,0,0,0,0,0,31.92,55.57,-9,-9,6.666666666666667,4,2,0,0,2,8,3,1,235,88044.242,0,0,0,776.1875 -10693,13182,23736,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,3.9061661,3.9192607,0,0,-994.63831,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6159952,3.86221,51.6,45.59,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,615,127794.09,-14262.11,10102.411,0,376.64063 -10694,13183,23737,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.7115822,8.4477167,0,0,0,-1078.2388,0,-9,-9,2019,20,8,4,5,1,8,0,141.32581,141.32581,0,0,0,0,0,0,0,0,10.100774,0,51.9,43.68,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,331,-92703.352,164738.55,70398.711,58568.156,9582.5898 -10695,13184,23738,23739,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,0,0,0,3,-1,-112.75482,0,-9,-9,2019,13,2,0,60,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,34.9,46.21,40.21,61.33,5,1,1,1,0,4,2,4,0,651.5,532647.38,63903.875,149618.11,102111.67,1817.2949 -10695,13184,23739,23738,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4911833,8.0935898,0,3,1,126.88837,0,-9,-9,2019,19,7,40,18,1,7,0,11.349682,11.349682,0,0,0,0,0,0,0,0,0,0,40.21,61.33,34.9,46.21,6.666666666666667,1,1,0,0,6,2,4,0,651.5,532647.38,63903.875,149618.11,102111.67,1817.2949 -10696,13185,23740,23741,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3738804,8.560998,0,6,13,25.166626,0,3,2,2019,9,0,40,40,1,1,0,12.704481,12.704481,0,0,0,0,0,0,0,0,4.0120778,0,53,55,49,56,8,1,1,0,0,9,7,5,0,586,81291.844,-31594.738,224455.91,138548.81,3155.9917 -10696,13185,23741,23740,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.9188032,8.0864506,0,6,-13,-25.162825,0,2,2,2019,11,0,37,40,1,2,0,8.9124756,8.9124756,0,0,0,0,0,0,0,0,0,0,49,56,53,55,7,1,1,0,0,5,7,5,0,586,81291.844,-31594.738,224455.91,138548.81,3155.9917 -10697,13186,23742,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,6.8035803,6.9909897,0,0,-1013.4335,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,42.181,53.545734,0,0,1,1,0,0,7.1083341,39.53,17.55,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,383,567842,-29653.951,119824.38,0,2092.0723 -10698,13187,23743,23744,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.2569323,8.6587572,0,7,-11,53.134407,0,1,2,2019,4,0,47,52,1,0,0,13.505921,13.505921,0,0,0,0,0,0,0,0,0,0,62.49,55.09,35.79,44.37,10,1,1,0,0,9,4,4,1,302.5,42357.234,122632.63,0,0,1976.3123 -10698,13187,23744,23743,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.2096643,6.9718752,0,7,11,91.387451,0,3,3,2019,20,8,22,42,1,8,0,8.3711872,8.3711872,0,0,0,0,0,0,0,0,1.494903,0,35.79,44.37,62.49,55.09,3.333333333333333,1,1,0,0,9,4,4,1,302.5,42357.234,122632.63,0,0,1976.3123 -10699,13188,23745,-9,-9,-9,1,0,31,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1023.4421,0,2,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,32.26,23.4,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,1008,-96655.625,-3057.2676,0,0,2056.7031 -10699,13188,23746,-9,23745,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.93921,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,1008,-96655.625,-3057.2676,0,0,2056.7031 -10700,13189,23747,23748,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.5244246,8.6394138,38,2,-51.662746,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2555261,8.4983788,54.69,57.47,54.2,57.49,10,1,1,0,0,6,8,4,1,772.5,2083833,820138.13,482229.94,0,3900.5461 -10700,13189,23748,23747,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,38,-2,-92.040215,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4191813,0,54.2,57.49,54.69,57.47,8.333333333333334,1,1,0,0,10,8,4,1,772.5,2083833,820138.13,482229.94,0,3900.5461 -10701,13190,23749,-9,23750,23752,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.26086,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,863.75,82848.313,163618,0,0,4889.9946 -10701,13190,23750,23752,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.6989784,8.7556,0,3,-2,-24.367998,0,-9,-9,2019,6,0,36,38,1,0,0,18.467049,18.467049,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.58,55.59,8.333333333333334,1,1,0,0,11,12,5,1,863.75,82848.313,163618,0,0,4889.9946 -10701,13190,23751,-9,23750,23752,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.4753,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,863.75,82848.313,163618,0,0,4889.9946 -10701,13190,23752,23750,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,9.1523924,9.0825243,0,3,2,105.68872,0,1,1,2019,12,3,45,40,1,3,0,26.121506,26.121506,0,0,0,0,0,0,0,0,0,0,49.58,55.59,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,863.75,82848.313,163618,0,0,4889.9946 -10702,13191,23753,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.1280499,7.1029921,0,0,-987.09546,0,3,3,2019,22,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.3858743,7.2062545,31.47,50.45,-9,-9,5,1,1,0,0,0,7,2,1,512,133752.83,0,0,0,797.46564 -10703,13192,23754,-9,23756,23755,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-996.73297,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,1,1,4,5,1,794,587156.06,140583.7,162410.72,7671.4536,4721.5293 -10703,13192,23755,23756,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.982996,8.6045284,0,21,-1,-140.13428,0,3,2,2019,11,0,42,45,1,0,0,24.178249,24.178249,0,0,0,0,0,1,1,0,0,0,46.98,59.35,51.19,41.52,8.333333333333334,1,1,0,0,12,4,5,1,794,587156.06,140583.7,162410.72,7671.4536,4721.5293 -10703,13192,23756,23755,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.7947283,8.3153086,0,21,1,-32.415462,0,3,2,2019,13,2,48,43,1,2,0,11.581567,11.581567,0,0,0,0,0,1,1,0,0,0,51.19,41.52,46.98,59.35,8.333333333333334,1,1,0,0,12,4,5,1,794,587156.06,140583.7,162410.72,7671.4536,4721.5293 -10704,13193,23757,-9,23759,23758,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.0199,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 -10704,13193,23758,23759,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.759922,9.8768244,0,8,-4,-137.24765,0,-9,-9,2019,12,3,40,40,1,3,0,46.115047,46.115047,0,0,0,0,0,0,0,0,0,0,57.16,34.57,54.79,55.86,8.333333333333334,1,1,0,0,9,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 -10704,13193,23759,23758,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,0,0,0,17,4,-48.367699,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.5644512,0,54.79,55.86,57.16,34.57,8.333333333333334,1,1,0,0,7,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 -10704,13193,23760,-9,23759,23758,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.0295,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,680.75,56146.75,-2518.5605,0,0,6415.1914 -10705,13194,23761,23762,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,8.0285044,8.0192699,0,18,5,5.5011826,0,3,2,2019,11,0,24,24,1,0,0,10.542761,10.542761,0,0,0,0,0,1,1,0,0,0,43.37,57.28,29.54,34.21,8.333333333333334,2,3,0,0,13,2,2,1,778.66669,155020.78,-18016.379,0,0,2305.8936 -10705,13194,23762,23761,-9,-9,1,0,36,0,3,0,2,2,-9,1,1,0,0,0,18,-5,21.765491,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.54,34.21,43.37,57.28,6.666666666666667,2,3,0,0,4,2,2,1,778.66669,155020.78,-18016.379,0,0,2305.8936 -10705,13194,23763,-9,23762,23761,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,778.66669,155020.78,-18016.379,0,0,2305.8936 -10706,13195,23764,23765,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.5485859,8.8442745,0,3,3,-52.452919,0,-9,-9,2019,6,0,45,40,1,0,0,13.639638,13.639638,0,0,0,0,2,0,0,0,0,0,54.2,57.49,37.79,59.6,8.333333333333334,1,1,0,0,5,9,5,0,226.5,-39889.219,0,0,0,3409.603 -10706,13195,23765,23764,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.4385395,8.1720343,0,3,-3,99.281631,0,3,3,2019,20,8,82,37,1,8,0,5.8536334,5.8536334,0,0,0,0,7,0,0,0,3.4479043,0,37.79,59.6,54.2,57.49,6.666666666666667,1,1,0,0,8,9,5,0,226.5,-39889.219,0,0,0,3409.603 -10707,13196,23766,23767,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.1685462,6.8162675,0,4,-4,-185.31696,0,-9,-9,2019,6,0,24,22,1,0,0,5.8106203,5.8106203,0,0,0,0,0,1,1,0,6.9570332,0,63.24,42.39,61.12,51.57,10,1,1,0,0,9,7,3,0,324.5,-154368.75,0,0,0,1936.1255 -10707,13196,23767,23766,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,6.7664332,7.0063601,0,4,4,28.666119,0,1,1,2019,5,0,37,35,1,0,0,2.0054624,2.0054624,0,0,0,0,0,1,1,0,2.4089062,0,61.12,51.57,63.24,42.39,8.333333333333334,1,1,0,0,7,7,3,0,324.5,-154368.75,0,0,0,1936.1255 -10708,13197,23768,-9,23769,-9,1,1,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-870.26666,-9,1,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,0,1,0,0,32,33,-9,-9,3,1,1,-9,0,0,9,2,1,398.5,351293.19,83534.688,430237.31,107872.52,1156.444 -10708,13197,23769,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.6240344,7.4140267,0,0,0,-1110.3263,0,2,2,2019,11,1,28,33,1,1,0,9.7637796,9.7637796,0,0,0,0,0,1,0,1,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,1,11,9,2,1,398.5,351293.19,83534.688,430237.31,107872.52,1156.444 -10708,13198,23770,-9,23769,-9,1,0,19,0,1,0,2,2,1,0,4,7.2245688,7.0990777,0,0,0,-1011.4849,-9,1,-9,2019,26,11,24,0,1,11,1,5.5709052,5.5709052,0,0,0,0,0,1,0,1,0,0,25.2,66.67,-9,-9,3.333333333333333,1,1,0,0,2,9,3,1,711,-89872.109,52445.641,0,0,367.35214 -10709,13199,23771,23773,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.0567875,8.125617,0,11,7,-90.635536,0,3,3,2019,19,7,34,33,1,7,0,13.875772,13.875772,0,0,0,0,0,0,0,0,1.0913187,0,35.59,45.73,58.32,50.22,5,1,1,0,0,11,6,4,1,398,212710,-5247.1621,115178.29,97473.383,2053.5437 -10709,13199,23772,-9,23771,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1138.302,1,1,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,398,212710,-5247.1621,115178.29,97473.383,2053.5437 -10709,13199,23773,23771,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.5810261,7.6590567,0,11,-7,50.174335,0,-9,-9,2019,7,0,48,59,1,0,0,3.1714942,3.1714942,0,0,0,0,0,0,0,0,4.4077687,0,58.32,50.22,35.59,45.73,10,1,1,0,0,13,6,4,1,398,212710,-5247.1621,115178.29,97473.383,2053.5437 -10710,13200,23774,23775,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.6976709,8.8282127,0,1,1,18.710449,0,2,3,2019,9,0,90,90,1,0,0,9.4536581,9.4536581,0,0,0,0,0,0,0,0,0,0,54.69,57.47,23.48,57.66,1.666666666666667,1,1,0,0,9,4,5,1,1392.5,48065.598,62803.469,159971.5,60199.734,2727.9497 -10710,13200,23775,23774,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,0,0,0,1,-1,-94.928284,-9,-9,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,23.48,57.66,54.69,57.47,0,1,1,0,0,0,4,5,1,1392.5,48065.598,62803.469,159971.5,60199.734,2727.9497 -10711,13201,23776,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.9192009,8.0167055,0,0,0,-1060.0957,0,2,2,2019,6,0,39,39,1,0,0,9.4832783,9.4832783,0,0,0,0,0,0,0,0,1.4395427,0,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,11,5,4,1,190,5143.2153,0,0,0,1929.1873 -10711,13202,23777,-9,23776,-9,1,0,35,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1116.1694,1,2,3,2019,15,3,0,42,2,3,1,0,0,0,0,0,0,0,0,0,0,.22390941,0,31.34,44.32,-9,-9,5,1,1,0,0,10,5,1,1,177,-75751.289,24637.762,0,0,2205.3257 -10712,13203,23778,23779,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.2337341,8.0754433,0,7,5,-3.3839304,0,2,2,2019,10,1,40,44,1,1,0,11.176988,11.176988,0,0,0,0,0,0,0,0,0,0,60.28,46.44,60.46,33.02,8.333333333333334,1,1,0,0,7,10,4,0,753,82928.32,235835,0,0,2053.0239 -10712,13203,23779,23778,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8999891,7.2925091,0,36,-5,29.940004,0,2,3,2019,10,0,16,16,1,0,0,7.8348618,7.8348618,0,0,0,0,7,0,0,0,0,0,60.46,33.02,60.28,46.44,8.333333333333334,1,1,0,0,3,10,4,0,753,82928.32,235835,0,0,2053.0239 -10712,13204,23780,-9,23779,23778,1,0,27,0,0,0,2,2,-9,0,3,7.598341,8.2572594,0,0,0,-1030.4845,0,2,2,2019,11,0,36,30,1,0,1,8.0144844,8.0144844,0,0,0,0,0,0,0,0,0,0,55.92,33.7,-9,-9,8.333333333333334,1,1,0,0,5,10,3,0,576,538604.38,0,0,0,697.9704 -10713,13205,23781,23782,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,6,-6,25.283222,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,55.94,47.09,8,1,1,0,0,0,5,3,1,1458,515113.44,325886.47,197747.91,0,974.20868 -10713,13205,23782,23781,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.8004961,7.6681695,32,6,16.635252,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1848192,55.94,47.09,52,53,10,1,1,0,0,9,5,3,1,1458,515113.44,325886.47,197747.91,0,974.20868 -10713,13206,23783,-9,23781,23782,1,1,29,0,0,0,2,2,-9,0,4,7.8541064,8.3603344,0,0,0,-984.02289,-9,2,2,2019,10,0,38,0,1,1,1,9.9462938,9.9462938,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,5,4,1,648,-148713.25,139764.64,0,0,1956.0096 -10713,13207,23784,-9,23781,23782,1,1,22,0,0,0,2,2,-9,0,4,8.299593,7.926919,0,0,0,-984.50488,-9,2,2,2019,10,0,50,0,1,1,1,10.704516,10.704516,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,1,209,-43593.07,47826.52,0,0,1592.27 -10714,13208,23785,23786,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.9245768,7.9319229,0,6,1,52.959496,0,3,3,2019,17,5,32,32,1,5,0,13.522138,13.522138,0,0,0,0,2,0,0,0,0,0,48.92,37.32,58.15,52.91,5,1,1,0,0,7,11,4,0,519.5,454847.75,162980.81,303387.06,0,1808.9501 -10714,13208,23786,23785,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.8034806,7.5250568,0,6,-1,104.15031,0,2,2,2019,6,0,37,37,1,0,0,7.5016117,7.5016117,0,0,0,0,0,0,0,0,0,0,58.15,52.91,48.92,37.32,8.333333333333334,1,1,0,0,7,11,4,0,519.5,454847.75,162980.81,303387.06,0,1808.9501 -10715,13209,23787,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.0367036,7.0761929,0,0,0,-897.51776,0,1,1,2019,8,1,4,4,1,1,0,39.018841,39.018841,0,0,0,0,0,1,1,0,0,0,38.31,49.7,-9,-9,6.666666666666667,3,4,0,0,3,12,3,1,2779,-142265.42,-95501.555,0,0,898.93262 -10716,13210,23788,23790,-9,-9,1,1,50,1,1,0,2,2,-9,0,4,8.5525188,8.4624157,0,7,12,214.86108,0,1,2,2019,9,0,45,45,1,0,0,14.040725,14.040725,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.9,59.14,8.333333333333334,1,1,0,0,9,5,4,1,843,327884.94,249452.78,174875.88,0,2742.3154 -10716,13210,23789,-9,23790,23788,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.95026,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,843,327884.94,249452.78,174875.88,0,2742.3154 -10716,13210,23790,23788,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,6.9697814,7.2590632,0,7,-12,-54.720886,0,2,2,2019,11,2,18,0,1,2,0,6.5517116,6.5517116,0,0,0,0,0,1,1,0,0,0,41.9,59.14,58.15,52.91,6.666666666666667,1,1,0,0,9,5,4,1,843,327884.94,249452.78,174875.88,0,2742.3154 -10717,13211,23791,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.5510731,8.9913292,0,0,0,-952.89056,0,1,2,2019,7,0,46,43,1,0,0,16.545059,16.545059,0,0,0,0,0,0,0,0,0,0,59.14,52.5,-9,-9,10,1,1,0,0,8,1,5,1,197,170760.56,60866.492,515108.5,74327.125,2221.4089 -10717,13212,23792,-9,23791,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-980.97919,-9,1,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1.0459694,0,36.59,33.14,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,600,0,0,0,0,29.847256 -10718,13213,23793,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.8941336,7.1240048,0,0,-1103.5836,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.36805362,7.1537924,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,104,212838.3,38490.98,290729.75,242506.88,1539.2638 -10719,13214,23794,23796,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.6975594,8.2554388,4.9955826,10,5,40.517567,0,2,1,2019,7,0,39,39,1,0,0,15.434175,15.434175,0,0,0,0,0,1,1,0,5.3746157,0,55.36,54.24,38.06,61.12,8.333333333333334,1,1,0,0,10,10,5,1,555.33331,100566.99,-536.27344,637793.94,244388.34,3974.6929 -10719,13214,23795,-9,23796,23794,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.4459,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,555.33331,100566.99,-536.27344,637793.94,244388.34,3974.6929 -10719,13214,23796,23794,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.202322,8.7741852,0,10,-5,17.479807,0,-9,-9,2019,14,2,40,40,1,2,0,13.262092,13.262092,0,0,0,0,0,1,1,0,2.3797917,0,38.06,61.12,55.36,54.24,6.666666666666667,1,1,0,0,9,10,5,1,555.33331,100566.99,-536.27344,637793.94,244388.34,3974.6929 -10720,13215,23797,23798,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8467693,7.8784738,4.3980713,42,-5,4.9207134,0,3,3,2019,7,0,30,30,1,0,0,7.8958936,7.8958936,0,0,0,0,0,1,1,0,7.1802449,4.5559525,49.05,50.32,54.63,58.83,1.666666666666667,1,1,0,0,8,9,4,1,866,1063683.6,821977.88,342686.63,0,4553.7617 -10720,13215,23798,23797,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,7.3467097,8.0511665,6.5159397,42,5,17.369061,0,3,3,2019,6,0,45,45,1,0,0,4.6185999,4.6185999,0,0,0,0,0,1,1,0,7.673255,6.4072585,54.63,58.83,49.05,50.32,10,1,1,0,0,8,9,4,1,866,1063683.6,821977.88,342686.63,0,4553.7617 -10721,13216,23799,-9,-9,-9,1,1,38,0,0,0,2,2,-9,1,3,6.4369359,6.3188095,0,0,0,-959.4024,0,2,2,2019,9,0,38,38,1,0,0,1.6591654,1.6591654,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,1.666666666666667,1,1,0,0,7,2,2,0,2002,56741.348,66963.023,0,0,603.25024 -10722,13217,23800,23801,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.0731969,6.1345582,9,-3,-84.908394,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.3484626,6.0253801,55.14,42.08,55.77,55.6,8.333333333333334,1,1,0,0,5,2,4,0,377.5,1084554.6,539729.94,572124.44,0,3500.959 -10722,13217,23801,23800,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,8.1397982,7.9221592,0,9,3,14.46362,0,-9,-9,2019,7,0,50,40,1,0,0,7.516582,7.516582,0,0,0,0,2,1,1,0,6.5234823,0,55.77,55.6,55.14,42.08,8.333333333333334,1,1,0,0,10,2,4,0,377.5,1084554.6,539729.94,572124.44,0,3500.959 -10723,13218,23802,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.5350361,8.5390816,0,0,0,-958.29932,0,3,-9,2019,6,0,41,42,1,0,0,15.639835,15.639835,0,0,0,0,0,0,0,0,0,0,61.19,42.11,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1547,388376.78,322414.25,144331.94,0,1795.5839 -10724,13219,23803,23805,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,8.7806025,8.8554602,0,22,-7,18.933937,0,2,2,2019,7,0,33,60,1,0,0,25.771925,25.771925,0,0,0,0,0,1,1,0,0,0,64.39,39.29,57.06,57.76,8.333333333333334,2,3,0,0,8,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 -10724,13219,23804,-9,23805,23803,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.65485,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 -10724,13219,23805,23803,-9,-9,1,0,61,0,2,0,1,1,-9,0,5,8.4086151,8.3319092,0,22,7,-61.013828,0,1,1,2019,7,0,29,29,1,0,0,22.995674,22.995674,0,0,0,0,2,1,1,0,3.882947,0,57.06,57.76,64.39,39.29,8.333333333333334,1,1,0,0,9,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 -10724,13219,23806,-9,23805,23803,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.14008,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,596.75,1366853.1,655226.63,807636.81,18487.684,4971.9297 -10725,13220,23807,23808,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8152857,8.8303003,0,24,0,-28.025974,0,2,2,2019,9,0,80,70,1,0,0,11.279374,11.279374,0,0,0,0,7,0,0,0,0,0,57.33,53.46,57.74,33.09,8.333333333333334,1,1,0,0,10,11,5,1,506.5,177078.16,-15846.533,155657.52,0,3355.7764 -10725,13220,23808,23807,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.1298342,7.0861559,25,9,52.412731,0,2,2,2019,10,1,0,27,4,1,0,0,0,0,0,0,0,7,0,0,0,3.9833007,7.3116817,57.74,33.09,57.33,53.46,8.333333333333334,1,1,0,0,10,11,5,1,506.5,177078.16,-15846.533,155657.52,0,3355.7764 -10726,13221,23809,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-908.25067,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.78,32.7,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1269,347017.53,0,12299.15,0,641.26331 -10727,13222,23810,-9,23811,23812,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.72559,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 -10727,13222,23811,23812,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.6565337,6.3371758,0,1,8,-9.87076,-9,-9,-9,2019,11,0,30,0,1,0,0,2.482265,2.482265,0,0,0,0,42,0,0,0,0,0,52,54.51,46.9,56.66,8.333333333333334,1,1,0,0,2,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 -10727,13222,23812,23811,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.3962021,9.4932137,0,12,-8,-66.462059,-9,2,2,2019,11,0,55,0,1,0,0,24.862663,24.862663,0,0,0,0,0,0,0,0,0,0,46.9,56.66,52,54.51,6.666666666666667,1,1,0,1,9,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 -10727,13222,23813,-9,23811,23812,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1035.1444,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,559,628456.38,348933.63,350767.72,134013.55,3661.4543 -10728,13223,23814,23815,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.6715717,9.6904116,0,21,-4,-16.48391,0,3,3,2019,22,10,46,48,1,10,0,40.84148,40.84148,0,0,0,0,0,0,0,0,5.3543801,0,35.53,63.81,54.2,57.49,3.333333333333333,1,1,0,0,8,5,5,1,1138,770652.63,403257.34,264203.81,0,5674.231 -10728,13223,23815,23814,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6406236,7.6497297,0,21,4,-12.531374,0,-9,-9,2019,11,2,25,25,1,2,0,9.8579865,9.8579865,0,0,0,0,0,0,0,0,1.9788746,0,54.2,57.49,35.53,63.81,8.333333333333334,1,1,0,0,9,5,5,1,1138,770652.63,403257.34,264203.81,0,5674.231 -10728,13224,23816,-9,23815,23814,1,1,28,0,0,0,1,1,-9,0,4,8.2513828,8.3226528,0,0,0,-1120.7905,0,2,2,2019,10,0,38,37,1,1,1,13.127611,13.127611,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,1,1939,-109123.49,-5085.2305,0,0,1929.025 -10729,13225,23817,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.5744033,6.494832,0,0,-1025.786,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8110166,6.6316571,58.15,52.91,-9,-9,0,1,1,0,0,7,2,2,1,577,15641.532,106438.77,150699.63,0,360.18076 -10730,13226,23818,-9,23821,23820,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.50824,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,274.25,112721.63,0,0,0,2145.792 -10730,13226,23819,-9,23821,23820,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.6155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,274.25,112721.63,0,0,0,2145.792 -10730,13226,23820,23821,-9,-9,1,1,27,0,2,0,2,2,-9,0,5,7.6173081,7.6326981,0,5,-2,-92.763107,0,-9,-9,2019,7,0,45,44,1,0,0,5.9059172,5.9059172,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52.34,56.95,8.333333333333334,1,1,0,0,8,13,3,1,274.25,112721.63,0,0,0,2145.792 -10730,13226,23821,23820,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.3110065,7.5303922,0,5,2,-151.11961,0,-9,-9,2019,8,0,32,28,1,0,0,5.0147753,5.0147753,0,0,0,0,0,1,1,0,0,0,52.34,56.95,57.06,57.76,8.333333333333334,4,1,0,0,4,13,3,1,274.25,112721.63,0,0,0,2145.792 -10731,13227,23822,-9,-9,-9,1,0,73,1,2,0,3,3,-9,0,2,0,0,0,0,0,-899.18384,-9,-9,-9,2019,20,6,0,0,4,6,0,0,0,1,0,31.265932,0,0,1,1,0,0,0,40.21,27.65,-9,-9,5,2,3,0,1,0,6,1,1,256,74398.492,0,0,0,1561.1901 -10731,13228,23823,23826,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,0,0,0,1,-2,91.71035,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.32013148,0,47.09,58.02,52.45,45.09,6.666666666666667,2,3,0,0,0,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 -10731,13228,23824,-9,23823,23826,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.93091,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 -10731,13228,23825,-9,23823,23826,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.8161,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 -10731,13228,23826,23823,23822,-9,1,1,33,1,2,0,1,1,-9,0,2,9.0521727,8.9072132,0,1,2,26.004471,-9,3,2,2019,9,0,41,0,1,0,0,19.478313,19.478313,0,0,0,0,0,1,1,0,7.1354637,0,52.45,45.09,47.09,58.02,3.333333333333333,2,3,0,0,9,6,4,1,635,340250.97,85633.094,270616.09,0,2641.1553 -10731,13229,23827,-9,23822,-9,1,1,29,1,2,0,1,1,-9,0,3,0,0,0,0,0,-990.06555,-9,3,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,5,2,3,0,0,0,6,1,1,568,-31067.012,0,0,0,0 -10732,13230,23828,-9,23830,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.8729,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,12,2,0,570.33331,83564.023,-21539.084,0,0,2228.0425 -10732,13230,23829,-9,23830,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2241,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,5,-9,0,0,12,2,0,570.33331,83564.023,-21539.084,0,0,2228.0425 -10732,13230,23830,-9,-9,-9,1,0,49,0,2,0,3,3,-9,0,2,6.862596,7.2202134,0,0,0,-915.85046,0,3,3,2019,25,12,16,0,1,12,0,6.9196548,6.9196548,0,0,0,0,0,1,1,0,0,0,33.61,51.28,-9,-9,0,1,1,0,1,0,12,2,0,570.33331,83564.023,-21539.084,0,0,2228.0425 -10732,13231,23831,-9,23830,-9,1,0,19,0,2,0,2,2,1,0,4,6.600534,6.4120612,0,0,0,-975.74304,-9,3,3,2019,7,0,20,0,1,0,1,4.7854567,4.7854567,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,4,5,0,0,1,12,2,0,1069,120630.66,0,0,0,-180.38989 -10733,13232,23832,23833,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7633333,7.8736238,0,10,0,-18.60808,0,1,2,2019,10,0,40,46,1,0,0,8.0807323,8.0807323,0,0,0,0,0,0,0,0,6.6502895,0,55.34,54.26,51.14,60.45,6.666666666666667,1,1,0,0,10,12,4,1,509.5,1081375.6,692363.5,0,0,2210.6563 -10733,13232,23833,23832,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.2994599,7.1916995,0,10,0,-44.820126,0,2,2,2019,8,0,17,23,1,0,0,8.0368605,8.0368605,0,0,0,0,0,0,0,0,0,0,51.14,60.45,55.34,54.26,6.666666666666667,1,1,0,0,11,12,4,1,509.5,1081375.6,692363.5,0,0,2210.6563 -10734,13233,23834,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.8390279,6.5371852,0,0,-955.94135,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4730287,6.7628713,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,675,315677.41,157326.53,0,0,1323.6191 -10734,13234,23835,-9,-9,23834,1,1,45,0,0,0,2,2,-9,0,5,7.7303944,7.8491988,0,0,0,-990.66144,0,-9,3,2019,13,1,38,40,1,1,0,7.8168025,7.8168025,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,9,11,3,1,734,523831.34,61321.742,312952.16,116439.87,1276.7622 -10735,13235,23836,-9,-9,-9,1,0,58,0,1,0,1,1,-9,0,2,7.6650429,7.5990281,0,0,0,-1072.4955,0,1,1,2019,18,6,26,16,1,6,0,11.639768,11.639768,0,0,0,0,0,1,1,0,0,0,46.21,37.4,-9,-9,5,3,4,0,0,12,8,3,0,625,521139.06,59663.137,540000,0,1196.6564 -10736,13236,23837,23838,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,8.5032682,8.5827694,2,3,-143.75104,0,3,3,2019,5,0,24,27,1,0,0,.00079710258,.00079710258,0,0,0,0,0,0,0,0,7.5944195,8.0639992,58.2,54.53,65.63,24.26,10,1,1,0,0,8,10,4,1,1554,1869767.9,1350975.4,605215.06,0,5760.2021 -10736,13236,23838,23837,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.2495499,7.5259929,2,-3,-105.22812,0,-9,-9,2019,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,8.6086359,7.3203411,65.63,24.26,58.2,54.53,8.333333333333334,1,1,0,0,8,10,4,1,1554,1869767.9,1350975.4,605215.06,0,5760.2021 -10737,13237,23839,23841,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.401536,7.4163032,0,6,-4,68.735046,0,2,-9,2019,7,0,25,20,1,0,0,7.7738533,7.7738533,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.11,55.31,10,1,1,0,0,7,9,4,1,631.33331,53101.605,-29066.566,0,0,3314.0444 -10737,13237,23840,-9,23839,23841,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.2068,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,631.33331,53101.605,-29066.566,0,0,3314.0444 -10737,13237,23841,23839,-9,-9,1,1,35,0,1,0,3,3,-9,0,3,8.5706596,8.5009832,0,6,4,-64.785362,0,3,3,2019,8,1,56,60,1,1,0,14.101763,14.101763,0,0,0,0,0,1,1,0,0,0,44.11,55.31,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,631.33331,53101.605,-29066.566,0,0,3314.0444 -10738,13238,23842,-9,23846,23845,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.8682,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 -10738,13238,23843,-9,23846,23845,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.15186,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 -10738,13238,23844,-9,23846,23845,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.70184,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 -10738,13238,23845,23846,-9,-9,1,1,37,1,3,0,1,1,-9,0,4,9.1327734,9.0270605,0,13,1,32.103378,0,2,1,2019,15,5,62,60,1,5,0,13.909976,13.909976,0,0,0,0,0,1,1,0,0,0,43.09,54.67,49,56,8.333333333333334,2,3,0,0,9,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 -10738,13238,23846,23845,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,0,0,0,13,-1,128.45232,0,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,43.09,54.67,7,2,3,0,0,0,6,4,1,1174.4,735417.75,33902.934,646148.94,0,3097.4014 -10739,13239,23847,23848,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.9915199,6.7498035,0,20,-2,55.802078,0,2,2,2019,10,0,14,10,1,0,0,8.5682802,8.5682802,0,0,0,0,0,0,0,0,2.3107018,0,42.05,58.8,57.06,57.76,8.333333333333334,1,1,0,0,6,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 -10739,13239,23848,23847,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.4292631,9.095027,0,10,2,31.993881,0,-9,-9,2019,8,0,39,39,1,0,0,19.106956,19.106956,0,0,0,0,0,0,0,0,2.8446136,0,57.06,57.76,42.05,58.8,8.333333333333334,1,1,0,0,10,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 -10739,13239,23849,-9,23847,23848,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.60022,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 -10739,13239,23850,-9,23847,23848,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.2729,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,931.5,572850.88,291444.44,633453.31,196896.91,3904.2505 -10740,13240,23851,23852,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,9,-7,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.97,21.3,63.56,23.64,1.666666666666667,1,1,0,0,0,11,1,0,647.5,-121043.8,0,0,0,2550.1345 -10740,13240,23852,23851,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,9,7,0,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,63.56,23.64,21.97,21.3,5,1,1,0,0,4,11,1,0,647.5,-121043.8,0,0,0,2550.1345 -10741,13241,23853,23854,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.4885712,7.5068836,0,6,-6,-55.328041,0,2,2,2019,5,0,30,17,1,0,0,7.104187,7.104187,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,4,2,0,0,6,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 -10741,13241,23854,23853,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.4246006,9.4045982,0,6,6,43.205914,0,-9,-9,2019,6,1,37,39,1,1,0,35.720726,35.720726,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,6,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 -10741,13241,23855,-9,23853,23854,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.8094,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 -10741,13241,23856,-9,23853,23854,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-993.88574,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,0,5,5,1,682.25,2048991.3,1293869,993545.63,181940.88,5255.2129 -10741,13242,23857,-9,23853,23854,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-943.18152,-9,2,1,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,48.29,52.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1623,305992.81,0,0,0,0 -10742,13243,23858,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1120.8354,0,1,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.2818711,0,59.32,36.25,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,199,291471.5,-52947.344,269724.56,0,805.05627 -10743,13244,23859,23860,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,9.2344837,9.1746798,0,10,-2,27.008953,0,2,2,2019,5,0,76,36,1,0,0,15.134196,15.134196,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.98,46.02,8.333333333333334,1,1,0,0,11,12,5,1,715,525176.56,148035.92,156152.45,97696.531,4901.543 -10743,13244,23860,23859,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,8.0507507,8.1640472,0,10,2,-32.576206,0,3,2,2019,7,0,40,42,1,0,0,8.9768496,8.9768496,0,0,0,0,0,1,1,0,0,0,54.98,46.02,60.12,54.8,1.666666666666667,1,1,0,0,11,12,5,1,715,525176.56,148035.92,156152.45,97696.531,4901.543 -10744,13245,23861,23862,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,9,-1,-114.08118,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.93,52.62,8.333333333333334,1,1,0,0,0,11,4,1,662.5,1088075.3,692971.81,181458.56,0,3773.1406 -10744,13245,23862,23861,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.5136118,8.3573313,9,1,103.13555,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2549107,8.3312254,55.93,52.62,57.16,56.15,10,1,1,0,0,0,11,4,1,662.5,1088075.3,692971.81,181458.56,0,3773.1406 -10745,13246,23863,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.3414888,7.180203,0,0,-949.92938,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1136866,53.12,42.9,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,409,734543.56,135181.63,248074.67,0,2244.0349 -10746,13247,23864,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,8.0002661,8.2911596,0,0,-1037.3469,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,1.3385929,0,0,0,1,1,0,1.8041946,8.058917,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,203,900166,34068.652,602287.56,0,2788.2534 -10747,13248,23865,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,2.4291894,2.6258128,0,0,-1000.2153,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.4555444,2.7925932,45.83,30.64,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,373,238703.92,0,0,0,1492.9458 -10748,13249,23866,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1036.5233,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,-9,-9,0,1,1,0,1,0,13,1,0,617,272002.69,0,0,0,1114.1118 -10748,13250,23867,-9,-9,23866,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.5377,-9,-9,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,1,1,4,13,1,0,825,1067.901,0,0,0,63.901482 -10749,13251,23868,23869,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.6473913,7.1253519,8,2,-19.393145,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5875318,8.0530148,51.53,51.8,52.6,26.21,8.333333333333334,1,1,0,0,6,9,4,1,311.5,1683680.5,996807.5,581040.38,3399.9666,3530.7957 -10749,13251,23869,23868,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.5908031,8.2874136,8,-2,76.197662,0,2,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.1336236,8.6292477,52.6,26.21,51.53,51.8,6.666666666666667,1,1,0,0,8,9,4,1,311.5,1683680.5,996807.5,581040.38,3399.9666,3530.7957 -10750,13252,23870,23871,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.1308432,7.1144347,44,0,178.41658,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,.57155383,2,1,1,0,6.0223188,6.6054635,55.27,44.81,54.37,54.8,8.333333333333334,1,1,0,1,6,9,3,0,871,989349.5,663209.81,267240.31,0,3332.9937 -10750,13252,23871,23870,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.3320494,8.2308264,6.9709268,45,0,-40.108845,0,3,2,2019,13,1,12,13,1,1,0,14.845017,14.845017,0,0,0,0,2,1,1,0,5.8343539,7.0064912,54.37,54.8,55.27,44.81,8.333333333333334,1,1,0,0,6,9,3,0,871,989349.5,663209.81,267240.31,0,3332.9937 -10751,13253,23872,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.9012775,8.3677711,0,0,0,-1151.3462,0,2,-9,2019,7,0,50,50,1,0,0,14.957314,14.957314,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,422,357605,20597.736,182777.52,20229.986,2461.2139 -10752,13254,23873,23874,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,3,-6,-133.98718,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.6,29.82,55.2,49.4,5,1,1,0,0,8,1,4,0,1665,1410263.9,905773,204855.75,14742.28,2786.7935 -10752,13254,23874,23873,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.4826841,8.6668282,0,3,6,-15.826071,0,-9,2,2019,6,0,40,38,1,0,0,16.958364,16.958364,0,0,0,0,0,1,1,0,0,0,55.2,49.4,38.6,29.82,8.333333333333334,1,1,0,0,12,1,4,0,1665,1410263.9,905773,204855.75,14742.28,2786.7935 -10752,13255,23875,-9,23873,23874,1,0,21,0,0,0,2,2,-9,0,3,7.0306902,7.1965408,0,0,0,-1006.4745,0,1,3,2019,12,0,20,40,1,0,1,8.1131763,8.1131763,0,0,0,0,2,1,1,0,0,0,48.94,54.95,-9,-9,5,1,1,0,0,3,1,3,0,977,-58752.965,0,0,0,981.84259 -10753,13256,23876,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,8.0818605,8.0688629,0,0,0,-1086.2432,0,2,2,2019,11,2,37,37,1,2,0,12.199614,12.199614,0,0,0,0,0,1,1,0,2.3946838,0,54.11,31.66,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,354,356999.44,-153478.5,0,0,2114.5347 -10754,13257,23877,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,5,0,6.9562411,6.6655011,0,0,-808.90552,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.0043707,0,57.06,57.76,-9,-9,10,1,1,0,0,2,12,2,0,148,98433.773,0,0,0,521.82745 -10754,13258,23878,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,3,0,0,0,0,0,-980.28552,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,732,70488.117,0,0,0,0 -10754,13259,23879,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1071.8553,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,0,12,1,0,1206,-213768.83,0,0,0,300.45401 -10754,13260,23880,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-989.86584,-9,-9,-9,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42.94,55.94,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,490,-366371.13,0,0,0,0 -10755,13261,23881,-9,23882,23884,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.7135,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 -10755,13261,23882,23884,-9,-9,1,0,44,0,2,0,1,1,-9,0,1,9.4232368,9.4170475,0,27,-2,-157.33548,0,2,1,2019,35,12,41,35,1,12,0,35.963261,35.963261,0,0,0,0,0,1,1,0,5.3060999,0,18.09,44.97,58.05,54.52,3.333333333333333,1,1,0,0,9,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 -10755,13261,23883,-9,23882,23884,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.2436,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 -10755,13261,23884,23882,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.2765694,9.273447,0,27,2,-132.3035,0,3,1,2019,8,0,42,39,1,0,0,29.441311,29.441311,0,0,0,0,0,1,1,0,1.6076027,0,58.05,54.52,18.09,44.97,8.333333333333334,1,1,0,0,8,8,5,1,997.25,2963758.5,357625.66,1521118.9,0,8016.1509 -10756,13262,23885,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,2,0,0,0,0,0,-1054.0328,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,38.3,53.09,-9,-9,5,1,1,0,0,1,12,1,0,216,-150132.16,0,0,0,488.27869 -10757,13263,23886,23887,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.6954041,8.7110682,47,1,26.000065,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7490664,8.6316919,58.9,45.74,62.49,55.09,10,1,1,0,0,7,4,4,1,746.5,1170991.4,887084.13,265564.13,0,4028.4373 -10757,13263,23887,23886,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,47,-1,-28.552956,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.9,45.74,10,1,1,0,0,0,4,4,1,746.5,1170991.4,887084.13,265564.13,0,4028.4373 -10758,13264,23888,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.1317182,7.3453588,4.7391629,0,0,-1042.8176,0,3,-9,2019,15,4,28,30,1,4,0,8.1685743,8.1685743,0,0,0,0,0,0,0,0,0,4.9360156,33.04,55.28,-9,-9,0,1,1,0,0,8,11,3,1,918,-31677.398,11486.202,76446.664,47268.094,613.02802 -10758,13265,23889,-9,23888,-9,1,0,26,0,0,0,2,2,-9,0,2,6.7117743,6.3602309,0,0,0,-1145.6908,0,2,2,2019,14,2,12,20,1,2,1,7.220757,7.220757,0,0,0,0,0,0,0,0,0,0,50.86,44.52,-9,-9,5,1,1,0,1,5,11,2,1,441,-3871.2141,44046.172,0,0,306.19797 -10758,13266,23890,-9,23888,-9,1,0,21,0,0,0,2,2,-9,0,3,7.605794,7.256094,0,0,0,-920.48199,0,2,2,2019,8,0,48,48,1,0,1,4.7142067,4.7142067,0,0,0,0,0,0,0,0,0,0,52.63,44.54,-9,-9,6.666666666666667,1,1,0,0,2,11,3,1,1558,105592.59,0,0,0,1290.5444 -10759,13267,23891,23892,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.9290628,8.08391,50,2,26.881252,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7726121,7.834199,58.15,52.91,57.73,54.53,8.333333333333334,1,1,0,0,0,10,3,1,261,935256.75,496410.84,280761.44,0,3427.6836 -10759,13267,23892,23891,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.9979544,7.1662426,50,-2,-5.5300121,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,6.3095517,7.0295844,57.73,54.53,58.15,52.91,8.333333333333334,1,1,0,0,0,10,3,1,261,935256.75,496410.84,280761.44,0,3427.6836 -10760,13268,23893,23894,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5573158,8.4370584,4.6503811,7,-5,-165.36388,0,3,3,2019,8,0,69,60,1,0,0,7.2343998,7.2343998,0,0,0,0,0,0,0,0,0,5.130621,51.19,42.43,55.6,37.07,10,1,1,0,0,6,6,4,0,382.5,944467.81,423534.28,206280.72,0,2786.7334 -10760,13268,23894,23893,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.5019946,7.3372726,0,7,5,57.641495,0,3,3,2019,10,1,32,36,1,1,0,7.9788947,7.9788947,0,0,0,0,0,0,0,0,0,0,55.6,37.07,51.19,42.43,6.666666666666667,4,5,0,0,8,6,4,0,382.5,944467.81,423534.28,206280.72,0,2786.7334 -10761,13269,23895,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.3925977,6.7753453,0,0,-1145.8872,0,2,3,2019,11,3,0,0,4,3,0,0,0,1,0,0,0,2,1,1,0,1.3072201,6.75385,48.38,38.92,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,4046,334226.13,205591.02,0,0,453.49789 -10761,13270,23896,-9,23895,-9,1,0,45,0,0,0,2,2,-9,0,3,8.5153732,8.3655233,0,0,0,-1090.9399,0,3,-9,2019,7,0,41,38,1,0,0,12.940265,12.940265,0,0,0,0,0,1,1,0,4.7175183,0,61.85,47.26,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,156,381943.31,128029.65,243070.31,97111.984,2615.1736 -10762,13271,23897,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,4,0,7.7124033,7.5528703,0,0,-1078.8805,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.88901305,7.7769475,61.12,38.13,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,495,871137.94,237708.25,554561,0,2359.9644 -10762,13272,23898,-9,-9,23897,1,0,57,0,0,0,2,2,-9,0,1,0,0,0,0,0,-999.50012,-9,-9,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,24.22,25.77,-9,-9,3.333333333333333,1,1,1,0,0,7,1,1,455,88762.766,0,0,0,0 -10763,13273,23899,-9,23901,23900,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.6375,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,1,0,1114.6666,-307686.13,-15294.512,0,0,2624.5557 -10763,13273,23900,23901,-9,-9,1,1,31,0,1,0,2,2,-9,1,3,0,0,0,8,0,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.93,58.41,49.48,46.53,5,1,1,1,0,0,5,1,0,1114.6666,-307686.13,-15294.512,0,0,2624.5557 -10763,13273,23901,23900,-9,-9,1,0,31,0,1,0,3,3,-9,1,2,0,0,0,8,0,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.48,46.53,31.93,58.41,5,1,1,1,0,0,5,1,0,1114.6666,-307686.13,-15294.512,0,0,2624.5557 -10764,13274,23902,23903,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.8111863,5.6927476,9,0,-13.450179,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,74.5,1,1,0,0,5.6942282,51,45,53,46,8,1,1,0,0,0,10,2,1,494,144513.44,83834.305,152871,0,1247.1583 -10764,13274,23903,23902,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.4718165,4.3469229,9,0,56.011826,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,127.25148,101.50232,1175.2155,0,1,1,0,0,4.484705,53,46,51,45,7,1,1,0,0,0,10,2,1,494,144513.44,83834.305,152871,0,1247.1583 -10765,13275,23904,23905,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.1617489,8.4691172,0,7,-2,114.22334,0,-9,-9,2019,8,0,40,40,1,0,0,9.8258696,9.8258696,0,0,0,0,0,0,0,0,5.6533408,0,48.14,49.45,39.23,37.34,8.333333333333334,1,1,0,0,12,6,5,1,1838.5,565188.19,57600.516,430279.03,307147.72,3359.875 -10765,13275,23905,23904,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.8399868,8.6259813,0,7,2,119.85515,0,-9,-9,2019,12,4,38,38,1,4,0,14.66652,14.66652,0,0,0,0,0,0,0,0,0,0,39.23,37.34,48.14,49.45,6.666666666666667,1,1,0,0,7,6,5,1,1838.5,565188.19,57600.516,430279.03,307147.72,3359.875 -10766,13276,23906,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,7.2822518,7.1578116,0,0,0,-976.20007,0,1,1,2019,14,2,40,50,1,2,0,4.0004158,4.0004158,0,0,0,0,14.5,1,1,0,0,0,46.14,27.95,-9,-9,3.333333333333333,1,1,0,0,11,10,3,0,458,10616.896,72802.172,0,0,916.96222 -10766,13277,23907,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1019.1033,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,45.22,17.14,-9,-9,5,1,1,0,1,0,10,1,0,804,-131954.05,0,192066.17,0,279.89655 -10767,13278,23908,23909,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.0019274,5.7221045,9,17,-5.3914776,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7267981,6.4610443,47.55,55.06,62.25,48.33,8.333333333333334,1,1,0,0,2,5,3,1,223,799489.56,732568.56,214316.84,0,2264.9502 -10767,13278,23909,23908,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7982712,7.4642711,0,9,-17,31.40164,0,3,2,2019,8,0,20,35,1,0,0,14.613996,14.613996,0,0,0,0,0,1,1,0,0,0,62.25,48.33,47.55,55.06,8.333333333333334,1,1,0,0,10,5,3,1,223,799489.56,732568.56,214316.84,0,2264.9502 -10768,13279,23910,23911,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,3.8325734,4.3477378,34,-11,145.8869,0,3,2,2019,9,0,0,10,4,0,0,0,0,0,0,0,0,0,1,1,0,5.906486,3.7621193,54.2,57.49,59.07,43.05,8.333333333333334,1,1,0,0,10,9,3,1,405,916491.13,386708.06,369090.69,0,2705.3369 -10768,13279,23911,23910,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0395603,8.1502762,34,11,-33.737514,0,2,2,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.3945937,7.7126098,59.07,43.05,54.2,57.49,8.333333333333334,1,1,0,0,1,9,3,1,405,916491.13,386708.06,369090.69,0,2705.3369 -10768,13280,23912,-9,23910,23911,1,1,26,0,0,0,2,2,-9,0,4,7.8988934,7.7271471,0,0,0,-993.44006,0,2,2,2019,16,5,35,30,1,5,0,8.4691572,8.4691572,0,0,0,0,0,1,1,0,1.9800602,0,28.12,63.05,-9,-9,1.666666666666667,1,1,0,0,3,9,3,1,896,90771.375,0,0,0,1316.8354 -10769,13281,23913,-9,23914,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.81921,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,610,34478.781,0,0,0,1383.5474 -10769,13281,23914,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.4574809,7.4284711,5.1437607,0,0,-1099.8176,0,-9,-9,2019,5,0,23,23,1,0,0,10.632496,10.632496,0,0,0,0,0,1,0,1,4.9728918,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,13,3,0,610,34478.781,0,0,0,1383.5474 -10770,13282,23915,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,5.4201598,5.8125949,0,0,-890.2926,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,3.3136399,5.8501263,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,879,327900.47,86663.992,228831.66,0,-256.02106 -10771,13283,23916,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1141.6833,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,50.44,-9,-9,10,1,1,0,0,0,12,1,0,324,-174263.28,0,0,0,710.60205 -10772,13284,23917,23918,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,37.46,29.44,53.23,33.76,5,2,3,1,1,0,8,1,0,622,1104075.9,606041.88,473499.81,0,3457.6882 -10772,13284,23918,23917,-9,-9,1,1,64,0,0,0,1,1,-9,1,3,0,0,0,32,7,0,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,53.23,33.76,37.46,29.44,5,2,3,1,0,0,8,1,0,622,1104075.9,606041.88,473499.81,0,3457.6882 -10772,13285,23919,-9,23917,23918,1,0,35,0,0,0,1,1,-9,0,4,0,0,0,0,0,-965.97522,0,3,1,2019,7,1,0,0,3,1,1,0,0,0,0,0,0,27,1,1,0,0,0,63.95,40.77,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1685,-76129.031,0,0,0,0 -10772,13286,23920,-9,23917,23918,1,0,30,0,0,0,1,1,-9,0,5,8.6591597,8.3550663,0,0,0,-1093.8138,0,3,1,2019,6,0,92,20,1,0,1,8.4053411,8.4053411,0,0,0,0,14.5,1,1,0,0,0,62.64,47.2,-9,-9,10,2,3,0,0,2,8,5,0,1267,-40314.746,40956.477,0,0,1801.2076 -10772,13287,23921,-9,23917,23918,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-984.99518,1,3,1,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,2,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,367,-71409.672,0,0,0,0 -10773,13288,23922,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.5635905,7.3759189,0,0,0,-1011.5615,0,-9,2,2019,22,10,17,15,1,10,0,10.057555,10.057555,0,0,0,0,0,0,0,0,4.717546,0,42.84,55.93,-9,-9,6.666666666666667,1,1,0,0,12,2,3,1,187,-102198.92,0,214145.34,0,527.04193 -10774,13289,23923,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7126932,6.2287254,0,0,-837.27594,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.775939,39.72,27.69,-9,-9,3.333333333333333,1,1,0,0,2,5,2,1,491,-241558.53,116658.43,197712.02,0,606.08917 -10774,13290,23924,-9,23923,-9,1,0,43,0,0,0,2,2,-9,0,3,6.3983951,6.5961194,0,0,0,-976.62274,0,3,-9,2019,10,0,55,60,1,0,0,1.2798409,1.2798409,0,0,0,0,0,1,1,0,0,0,50.4,47.17,-9,-9,6.666666666666667,1,1,0,0,5,5,2,1,94,-19349.512,0,0,0,370.4361 -10775,13291,23925,23926,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,4.9583249,4.7559347,2,-7,-86.756775,0,2,2,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,4.6852326,37.02,37.37,48.66,40.38,6.666666666666667,2,3,0,0,0,6,2,1,865,843176.38,211139,575014.31,0,2028.4695 -10775,13291,23926,23925,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.2684612,7.4550962,2,7,-94.26622,0,3,1,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.6606832,7.1607051,48.66,40.38,37.02,37.37,8.333333333333334,2,3,0,0,0,6,2,1,865,843176.38,211139,575014.31,0,2028.4695 -10776,13292,23927,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.8487644,7.1652384,0,0,-895.1037,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8904417,7.1313601,55.53,51.55,-9,-9,10,1,1,0,0,0,4,2,1,1118,350723.66,131064.82,48199.402,0,1754.0543 -10777,13293,23928,23929,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.676198,8.9406929,0,23,-2,149.59087,0,2,1,2019,8,0,40,40,1,0,0,19.937941,19.937941,0,0,0,0,0,0,0,0,1.3366036,0,54.79,55.86,28.87,56.23,1.666666666666667,1,1,0,0,7,9,5,1,989,604264.69,543755.25,221378.72,125943.14,4528.916 -10777,13293,23929,23928,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.455308,8.2434959,0,22,2,-74.93972,0,2,2,2019,21,9,40,50,1,9,0,13.492327,13.492327,0,0,0,0,2,0,0,0,.8720665,0,28.87,56.23,54.79,55.86,6.666666666666667,1,1,0,0,6,9,5,1,989,604264.69,543755.25,221378.72,125943.14,4528.916 -10777,13294,23930,-9,23929,23928,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-966.58136,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.74965173,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,538,-41192.523,0,0,0,239.07942 -10778,13295,23931,23932,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0447321,8.2643356,0,31,-4,-35.762802,0,2,2,2019,9,1,48,45,1,1,0,8.5576429,8.5576429,0,0,0,0,0,0,0,0,6.7743001,0,55.69,40.48,62.39,56.71,5,1,1,0,0,10,5,5,1,1145,649614.44,679622.38,169837.86,31234.91,4623.0869 -10778,13295,23932,23931,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.9311123,8.8710346,6.4217749,31,4,40.388012,0,2,2,2019,7,0,41,41,1,0,0,14.757553,14.757553,0,0,0,0,7,0,0,0,0,7.0614824,62.39,56.71,55.69,40.48,6.666666666666667,1,1,0,0,8,5,5,1,1145,649614.44,679622.38,169837.86,31234.91,4623.0869 -10778,13296,23933,-9,23931,23932,1,0,26,0,0,0,2,2,-9,0,4,7.9493012,7.8833666,0,0,0,-975.40033,0,2,1,2019,7,0,37,39,1,0,1,8.1815319,8.1815319,0,0,0,0,0,0,0,0,3.5811808,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,1639,117997.37,1306.2563,0,0,134.52905 -10779,13297,23934,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,6.1551542,6.5157919,0,0,-913.6889,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3248715,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,0,1439,158417.05,186719.08,141148.16,0,1272.8267 -10780,13298,23935,23936,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.5005474,6.2914243,47,2,68.207825,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,6.4718418,61.86,30.99,56.26,45.84,8.333333333333334,1,1,0,0,0,4,3,1,487,989221.69,479262.28,166780.84,0,2644.9229 -10780,13298,23936,23935,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.8774271,7.8973675,47,-2,-17.878551,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.654506,8.0751429,56.26,45.84,61.86,30.99,8.333333333333334,1,1,0,0,1,4,3,1,487,989221.69,479262.28,166780.84,0,2644.9229 -10781,13299,23937,23938,23940,-9,1,1,35,0,0,0,1,1,-9,0,4,9.0147152,8.8200302,0,3,7,-35.296024,0,3,-9,2019,10,0,39,37,1,1,0,21.592968,21.592968,0,0,0,0,0,1,1,0,0,0,50,57,38.9,48.23,7,2,3,0,0,1,4,5,1,561,309633.28,362925.56,273707.25,150232.94,4047.9141 -10781,13299,23938,23937,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.9207897,8.3546743,0,3,-7,83.359421,0,-9,-9,2019,12,1,37,0,1,1,0,9.7499485,9.7499485,0,0,0,0,0,1,1,0,0,0,38.9,48.23,50,57,5,2,3,0,0,1,4,5,1,561,309633.28,362925.56,273707.25,150232.94,4047.9141 -10781,13300,23939,-9,23940,-9,1,0,39,0,0,0,2,2,-9,0,5,8.2688065,8.2095413,0,0,0,-1055.3226,0,3,-9,2019,0,0,31,45,1,0,0,14.903563,14.903563,0,0,0,0,0,1,1,0,0,0,32.12,67.44,-9,-9,8.333333333333334,2,3,0,0,11,4,4,1,183,-160382.94,-25330.305,0,0,1468.3503 -10781,13301,23940,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,2.0026917,2.2765803,0,0,-854.31903,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,114.25694,0,0,1,1,0,2.5992746,2.1339114,52,45,-9,-9,8,2,3,0,0,0,4,2,1,209,218377.39,-22388.543,55653.469,0,721.19159 -10782,13302,23941,23942,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,30,-4,-72.212807,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2559924,0,57.16,56.15,57.57,49.69,8.333333333333334,1,1,0,0,8,9,3,1,726.5,2304156,659240.13,777453.88,0,3056.0852 -10782,13302,23942,23941,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,7.8375216,7.8056617,3.740186,30,4,41.99754,0,-9,-9,2019,6,0,18,30,1,0,0,18.69335,18.69335,0,0,0,0,0,1,1,0,4.7697182,4.1236882,57.57,49.69,57.16,56.15,8.333333333333334,1,1,0,0,5,9,3,1,726.5,2304156,659240.13,777453.88,0,3056.0852 -10783,13303,23943,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.3086777,8.3997173,0,0,0,-944.12299,0,1,2,2019,7,0,38,20,1,0,0,13.484721,13.484721,0,0,0,0,0,0,0,0,4.6403317,0,53.37,52.37,-9,-9,8.333333333333334,1,1,0,0,8,5,4,0,797,36226.379,0,0,0,1439.4844 -10784,13304,23944,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.0405254,7.1938882,0,0,0,-937.68976,0,2,3,2019,25,9,17,17,1,9,0,8.7258348,8.7258348,0,0,0,0,27,1,1,0,0,0,31.25,34.53,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,114,282759.41,22356.598,0,0,1611.5297 -10785,13305,23945,-9,23946,23947,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.035,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,786.66669,801335.13,726237.06,319702.31,228110.44,5384.5723 -10785,13305,23946,23947,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.5304165,8.7641354,0,7,0,106.43877,0,2,3,2019,9,1,35,35,1,1,0,13.947349,13.947349,0,0,0,0,0,1,1,0,0,0,49.94,58.01,52,56,8.333333333333334,1,1,0,0,7,2,5,1,786.66669,801335.13,726237.06,319702.31,228110.44,5384.5723 -10785,13305,23947,23946,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.2410479,9.2195978,0,7,0,67.019539,-9,-9,-9,2019,9,0,40,0,1,1,0,33.690166,33.690166,0,0,0,0,0,1,1,0,.86897355,0,52,56,49.94,58.01,8,1,1,0,0,1,2,5,1,786.66669,801335.13,726237.06,319702.31,228110.44,5384.5723 -10786,13306,23948,-9,23951,23952,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.6625,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 -10786,13306,23949,-9,23951,23952,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.6362,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 -10786,13306,23950,-9,23951,23952,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.1483,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 -10786,13306,23951,23952,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.8541145,7.6634784,0,18,-1,-103.84673,0,2,3,2019,20,8,41,20,1,8,0,6.49577,6.49577,0,0,0,0,2,1,1,0,6.6511564,0,30.64,56.6,15.54,70.40000000000001,6.666666666666667,1,1,0,0,10,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 -10786,13306,23952,23951,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,9.0446329,8.714159,0,18,1,-113.68945,0,3,2,2019,29,9,38,62,1,9,0,17.214561,17.214561,0,0,0,0,7,1,1,0,5.0809069,0,15.54,70.40000000000001,30.64,56.6,6.666666666666667,1,1,0,0,10,13,4,1,1164.4,348365.72,90254.234,291845.09,164218.47,4308.5537 -10787,13307,23953,-9,23956,23954,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0149,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 -10787,13307,23954,23956,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.2994366,8.2601404,0,8,6,16.995121,0,2,2,2019,26,11,39,39,1,11,0,9.1483126,9.1483126,0,0,0,0,0,1,1,0,3.0823836,0,33.96,47.68,51.3,45.64,1.666666666666667,2,3,0,0,10,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 -10787,13307,23955,-9,23956,23954,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.1625,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 -10787,13307,23956,23954,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.5445404,7.4901514,0,18,-6,-120.05025,0,2,1,2019,7,1,28,27,1,1,0,6.5898266,6.5898266,0,0,0,0,0,1,1,0,0,0,51.3,45.64,33.96,47.68,6.666666666666667,2,3,0,1,3,4,3,1,1008,304857.88,159830.06,0,0,2814.0283 -10788,13308,23957,23958,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4114895,8.8754759,5.6363225,32,3,-41.5807,0,2,-9,2019,6,0,44,45,1,0,0,11.866849,11.866849,0,0,0,0,2,1,1,0,6.6549592,5.699894,57.33,53.46,44.2,41.74,8.333333333333334,1,1,0,0,9,6,4,1,591.5,499679.06,190777.16,238385.78,36014.055,3218.4526 -10788,13308,23958,23957,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.2446766,5.8016562,0,31,-3,-144.67311,0,3,2,2019,14,2,8,8,1,2,0,7.0947275,7.0947275,0,0,0,0,118,1,1,0,0,0,44.2,41.74,57.33,53.46,5,1,1,0,0,10,6,4,1,591.5,499679.06,190777.16,238385.78,36014.055,3218.4526 -10788,13309,23959,-9,23958,23957,1,1,22,0,0,0,2,2,-9,0,4,7.0537605,7.3121123,0,0,0,-964.90216,0,2,2,2019,13,1,44,0,1,1,1,3.0832367,3.0832367,0,0,0,0,0,1,1,0,0,0,46.14,54.22,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,791,-88712.063,0,0,0,547.58661 -10789,13310,23960,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.9408998,8.5196095,0,0,0,-975.49786,0,3,2,2019,11,0,48,40,1,0,0,12.941953,12.941953,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,309,293174,0,0,0,2512.3137 -10790,13311,23961,23962,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.792572,6.4778237,10,-11,47.36623,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.6102171,6.6665106,59.88,48.2,49.07,37.11,8.333333333333334,1,1,0,0,0,7,3,1,443.5,1119383.9,263221.56,661532.75,0,4093.3662 -10790,13311,23962,23961,-9,-9,1,1,85,0,0,0,1,1,-9,0,1,0,7.7614064,7.8895121,10,11,-81.821304,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,7.1191235,0,0,1,1,0,6.5610099,8.013236,49.07,37.11,59.88,48.2,5,1,1,0,0,0,7,3,1,443.5,1119383.9,263221.56,661532.75,0,4093.3662 -10791,13312,23963,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.6559906,7.4477129,0,0,-1111.4321,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9162436,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1569,1057858.3,378750.25,169317.03,0,957.15253 -10792,13313,23964,23965,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,6,3,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.3758869,0,53,47,49.28,52.09,7,1,1,0,0,0,13,1,1,470.5,-226499.63,-32961.566,0,0,1359.1794 -10792,13313,23965,23964,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,6,-3,0,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,53,47,6.666666666666667,1,1,0,0,2,13,1,1,470.5,-226499.63,-32961.566,0,0,1359.1794 -10792,13314,23966,-9,23965,23964,1,1,39,0,0,0,1,1,-9,0,4,8.6168795,8.7354145,0,0,0,-992.00195,-9,2,3,2019,9,0,40,0,1,1,0,13.802063,13.802063,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,1,13,5,1,1405,175501.7,47354.277,167972.45,73358.141,2045.0676 -10793,13315,23967,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,6.7076297,6.5690379,0,0,-945.5885,0,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6212873,54,43,-9,-9,8,1,1,0,0,0,11,2,1,340,210746.47,154430.83,152400.33,0,1429.7672 -10794,13316,23968,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.5335875,8.4412737,0,0,0,-1080.7933,0,3,3,2019,6,0,40,37,1,0,0,15.429554,15.429554,0,0,0,0,0,0,0,0,0,0,63.64,41.47,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,631,-46761.801,78161.672,155853.2,123541.69,1689.4586 -10795,13317,23969,-9,23970,23971,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-865.26111,-9,1,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,2.0934627,0,53.68,45.47,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,913.33331,688173.94,508238.22,308502.13,153687.64,3361.9932 -10795,13317,23970,23971,-9,-9,1,0,42,0,1,0,1,1,-9,1,2,0,0,0,22,-1,-4.2443619,0,2,2,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,1.8683892,0,56.83,13.81,46.08,57.2,8.333333333333334,1,1,0,0,0,10,4,1,913.33331,688173.94,508238.22,308502.13,153687.64,3361.9932 -10795,13317,23971,23970,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.0241585,9.2503862,0,10,1,-88.155678,0,-9,-9,2019,10,1,40,40,1,1,0,18.695471,18.695471,0,0,0,0,7,1,1,0,.77723819,0,46.08,57.2,56.83,13.81,6.666666666666667,1,1,0,0,12,10,4,1,913.33331,688173.94,508238.22,308502.13,153687.64,3361.9932 -10796,13318,23972,23973,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.422884,8.4638014,0,12,-1,-48.928036,0,2,2,2019,10,0,50,46,1,0,0,12.43737,12.43737,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,6.666666666666667,1,1,0,0,9,6,4,1,1449,83143.094,142179.75,214614.36,149326.66,2651.8926 -10796,13318,23973,23972,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.8706303,7.4927731,0,12,1,-29.683933,0,3,3,2019,7,0,28,28,1,0,0,7.4446979,7.4446979,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,10,6,4,1,1449,83143.094,142179.75,214614.36,149326.66,2651.8926 -10796,13319,23974,-9,23973,23972,1,0,25,0,0,0,1,1,-9,0,4,8.2608576,8.1792355,0,0,0,-1009.8158,0,2,2,2019,6,0,38,38,1,0,1,7.5002275,7.5002275,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,4,6,4,1,1645,-139700.73,-36962.707,0,0,1239.3252 -10797,13320,23975,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,2,7.582787,7.9561434,0,0,0,-895.05157,-9,-9,-9,2019,14,2,30,0,1,2,0,7.3220625,7.3220625,0,0,0,0,0,0,0,0,0,0,44.2,51.88,-9,-9,5,1,1,0,0,6,12,3,0,196,447334.94,-29547.01,0,0,1368.7767 -10798,13321,23976,23979,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,8.1708727,8.6016541,0,2,-2,32.434666,0,-9,-9,2019,22,9,42,52,1,9,0,14.697401,14.697401,0,0,0,0,0,1,1,0,7.208848,0,41.33,56.87,46.63,59.72,8.333333333333334,1,1,0,0,9,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 -10798,13321,23977,-9,23976,23979,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.0096,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 -10798,13321,23978,-9,23976,23979,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6683,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 -10798,13321,23979,23976,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.0519609,7.9389033,0,2,2,14.469437,-9,-9,-9,2019,10,0,38,0,1,0,0,8.7701702,8.7701702,0,0,0,0,0,1,1,0,1.1185433,0,46.63,59.72,41.33,56.87,8.333333333333334,1,1,0,0,10,10,4,0,407,187712.56,-3392.5869,218966.97,0,3336.0686 -10799,13322,23980,23981,-9,-9,1,0,84,0,0,0,1,1,-9,0,1,0,3.4767082,3.9212358,59,-2,-111.54906,0,2,2,2019,13,4,0,0,4,4,0,0,0,0,1.7818443,72.826149,0,0,1,1,0,0,3.4816191,54.36,12.12,53.32,38.14,5,1,1,0,0,0,8,3,1,1011,1014378,305586.09,480225.66,0,5174.0371 -10799,13322,23981,23980,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.7686329,8.1125498,59,2,-51.721985,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,28.999252,0,0,0,1,1,0,8.5681744,7.9286089,53.32,38.14,54.36,12.12,6.666666666666667,1,1,0,0,0,8,3,1,1011,1014378,305586.09,480225.66,0,5174.0371 -10800,13323,23982,23983,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.4250126,8.8307972,0,5,2,197.70226,0,-9,-9,2019,10,0,55,58,1,0,0,10.740663,10.740663,0,0,0,0,0,0,0,0,0,0,54.79,55.86,34.98,51.86,10,1,1,0,0,10,4,5,1,678.5,134071.19,0,0,0,3706.647 -10800,13323,23983,23982,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,7.918509,8.2488337,0,5,-2,47.979507,0,-9,-9,2019,15,3,40,40,1,3,0,13.660047,13.660047,0,0,0,0,0,0,0,0,0,0,34.98,51.86,54.79,55.86,5,1,1,0,0,8,4,5,1,678.5,134071.19,0,0,0,3706.647 -10801,13324,23984,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.0735111,7.8552699,0,0,0,-986.24292,0,2,2,2019,6,0,35,35,1,0,0,10.512723,10.512723,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,2,4,1,1634,-206925.89,-61123.438,0,0,1547.9005 -10802,13325,23985,23986,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,0,0,51,-1,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,33.88,37.17,45.07,8.333333333333334,1,1,0,0,1,2,1,0,281,225870.59,0,256560.7,0,1833.2434 -10802,13325,23986,23985,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,51,1,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.17,45.07,46.44,33.88,8.333333333333334,1,1,0,0,0,2,1,0,281,225870.59,0,256560.7,0,1833.2434 -10803,13326,23987,23988,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.8980527,8.1645699,1,0,19.039585,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,8.4960127,8.0450058,51.41,56.15,43.32,63.94,8.333333333333334,1,1,0,0,5,12,3,1,889,2533491.5,1808605,350590.06,0,3654.0461 -10803,13326,23988,23987,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.4672647,6.7933106,5.8298883,33,0,-102.88934,-9,2,2,2019,8,0,10,0,1,0,0,6.1373143,6.1373143,1,0,0,0,0,1,1,0,6.9549704,5.9403472,43.32,63.94,51.41,56.15,8.333333333333334,1,1,0,0,10,12,3,1,889,2533491.5,1808605,350590.06,0,3654.0461 -10804,13327,23989,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.9934826,9.3258181,0,2,6,-52.010834,0,3,3,2019,9,0,41,42,1,1,0,31.684238,31.684238,0,0,0,0,0,0,0,0,7.5320621,0,53,54,52,55,8,1,1,0,0,5,9,5,0,288,803609.5,411838.97,239001.61,184821.06,3664.7407 -10805,13328,23990,23991,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9071498,7.9036989,0,6,10,84.355064,0,3,3,2019,5,0,36,33,1,0,0,7.852725,7.852725,0,0,0,0,0,0,0,0,2.6762509,0,48.54,54.5,51.24,58.84,8.333333333333334,1,1,0,0,7,9,5,1,716.5,467726.44,172947.08,0,0,3892.9199 -10805,13328,23991,23990,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.8703003,8.9763021,0,6,-10,28.135994,0,2,2,2019,7,0,48,45,1,0,0,15.779522,15.779522,0,0,0,0,0,0,0,0,3.4990582,0,51.24,58.84,48.54,54.5,6.666666666666667,1,1,0,0,7,9,5,1,716.5,467726.44,172947.08,0,0,3892.9199 -10806,13329,23992,23993,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.2305884,7.3363347,5.8435254,9,-3,14.483846,0,-9,3,2019,11,0,16,16,1,0,0,6.7227764,6.7227764,0,0,0,0,0,1,1,0,6.1062822,5.4388485,57.33,53.46,55.96,28.67,8.333333333333334,1,1,0,0,11,4,2,1,798.5,175654.33,253549.38,175835.7,0,1939.3304 -10806,13329,23993,23992,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,4.0842638,3.9510572,45,3,164.57913,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.2900324,55.96,28.67,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,798.5,175654.33,253549.38,175835.7,0,1939.3304 -10807,13330,23994,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,7.1097698,7.0697913,5.1971035,0,0,-1008.8135,0,3,3,2019,11,0,10,10,1,1,0,11.038292,11.038292,0,0,0,0,0,1,1,0,0,5.4204383,52,46,-9,-9,7,1,1,0,1,8,5,2,1,576,-129436.72,281662.28,157242.84,0,824.78076 -10808,13331,23995,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.4291525,8.7514162,0,0,-971.62988,0,3,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2714343,8.4399672,57.16,56.15,-9,-9,10,1,1,0,0,12,9,5,1,816,1518437.9,495413.41,600841,0,3168.658 -10809,13332,23996,23999,-9,-9,1,0,41,1,2,0,1,1,-9,0,4,9.432807,9.6089973,0,14,0,-95.375168,0,3,3,2019,8,1,35,40,1,1,0,40.175999,40.175999,0,0,0,0,0,0,0,0,2.7766891,0,48.87,58.55,45.74,46.84,6.666666666666667,2,3,0,0,9,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 -10809,13332,23997,-9,23996,23999,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5723,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 -10809,13332,23998,-9,23996,23999,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.9259,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 -10809,13332,23999,23996,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,0,0,0,14,0,-73.344421,0,1,1,2019,12,2,0,38,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45.74,46.84,48.87,58.55,8.333333333333334,2,3,1,0,5,8,5,1,1775.5,717935.19,247543.11,550695,190000.92,3625.4058 -10810,13333,24000,-9,24002,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-867.71716,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,3,0,1625.6666,324411.5,64463.418,0,0,2320.8494 -10810,13333,24001,-9,24002,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-918.7865,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,0,1625.6666,324411.5,64463.418,0,0,2320.8494 -10810,13333,24002,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.9759617,8.056571,6.6134996,0,0,-975.61646,0,-9,-9,2019,12,0,33,73,1,0,0,8.3682671,8.3682671,0,0,0,0,0,1,1,0,7.6580477,0,44.85,44.19,-9,-9,8.333333333333334,1,1,0,1,7,7,3,0,1625.6666,324411.5,64463.418,0,0,2320.8494 -10811,13334,24003,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,5.6994009,5.5740576,0,0,0,-955.94287,0,2,2,2019,21,9,41,37,1,9,0,.8455013,.8455013,0,0,0,0,0,0,0,0,0,0,30.77,64.34,-9,-9,3.333333333333333,1,1,0,0,12,4,2,1,305,-69708.922,0,0,0,115.52302 -10812,13335,24004,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3906488,8.3693399,0,0,0,-1043.9532,0,3,3,2019,22,10,34,34,1,10,0,13.830043,13.830043,0,0,0,0,0,1,1,0,6.6514878,0,37.92,61.06,-9,-9,5,1,1,0,0,9,9,4,1,244,376833.63,-9875.2266,301561.97,58273.254,1951.3203 -10813,13336,24005,24007,24008,24009,1,1,52,0,1,0,1,1,-9,0,5,8.9236155,8.8213005,0,22,12,-40.593166,0,2,2,2019,6,0,37,37,1,0,0,21.543432,21.543432,0,0,0,0,0,1,1,0,2.4942129,0,57.06,57.76,39.11,56.52,8.333333333333334,2,3,0,0,13,5,4,1,405,1049674.8,491613.5,359255.59,0,3233.217 -10813,13336,24006,-9,24007,24005,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1028.5123,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,1.9901117,0,41.26,61.02,-9,-9,8.333333333333334,2,3,0,0,0,5,4,1,405,1049674.8,491613.5,359255.59,0,3233.217 -10813,13336,24007,24005,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.2027259,7.419312,0,22,-12,-57.245461,0,3,2,2019,12,0,30,30,1,0,0,8.1664629,8.1664629,0,0,0,0,0,1,1,0,0,0,39.11,56.52,57.06,57.76,5,2,3,0,0,9,5,4,1,405,1049674.8,491613.5,359255.59,0,3233.217 -10813,13337,24008,24009,-9,-9,1,0,77,0,1,0,2,2,-9,0,3,0,6.7884517,6.9048786,10,-8,5.3840694,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.4276218,6.8156123,51,46,54,45,7,2,3,0,0,0,5,2,1,1341.5,-35921.84,-22779.811,73776.102,0,2069.1067 -10813,13337,24009,24008,-9,-9,1,1,85,0,1,0,2,2,-9,0,3,0,0,0,61,8,-51.3325,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9761987,0,54,45,51,46,8,2,3,0,0,0,5,2,1,1341.5,-35921.84,-22779.811,73776.102,0,2069.1067 -10813,13338,24010,-9,24007,24005,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-952.08459,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,4.0515442,0,49.46,56.91,-9,-9,10,2,3,0,0,0,5,1,1,1110,-185329.92,0,0,0,-310.07663 -10814,13339,24011,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,4.7513604,4.8462558,0,0,-1183.2253,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4917088,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,577,-362466.47,-37662.289,0,0,425.25159 -10815,13340,24012,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6536078,7.8173714,0,0,0,-1036.0782,0,3,3,2019,7,0,45,38,1,0,0,5.7077851,5.7077851,0,0,0,0,0,1,1,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,812,427882.09,174268.44,284272.84,0,1898.3141 -10816,13341,24013,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.99487,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,43.68,-9,-9,6.666666666666667,1,1,0,0,6,4,1,0,719,-79516.727,0,0,0,1169.8177 -10817,13342,24014,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1060.5625,0,2,2,2019,7,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6847181,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,667,577561.63,0,273590.44,0,921.86182 -10818,13343,24015,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.2737455,8.2589245,0,0,-968.34149,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3040085,48.53,52.16,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1295,3283201,1897691.6,533937.38,0,3364.8945 -10819,13344,24016,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.5160069,7.6239233,0,0,-994.8139,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,2.5996373,0,22.190859,0,1,1,0,5.2469563,7.7380304,47.37,34.15,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,217,738929.56,-31941.229,216838.28,0,1798.9513 -10820,13345,24017,24018,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.6086864,7.4707685,0,6,-7,-47.003365,0,3,3,2019,6,0,35,35,1,0,0,8.4129524,8.4129524,0,0,0,0,0,0,0,0,0,0,50.82,57.78,55.36,51.57,1.666666666666667,1,1,0,0,4,7,4,1,698,928928.25,510583.25,371735.19,55997.078,2174.1519 -10820,13345,24018,24017,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0921431,7.839232,0,6,7,12.918514,0,-9,-9,2019,9,0,48,48,1,0,0,6.873003,6.873003,0,0,0,0,0,0,0,0,0,0,55.36,51.57,50.82,57.78,8.333333333333334,1,1,0,0,6,7,4,1,698,928928.25,510583.25,371735.19,55997.078,2174.1519 -10820,13346,24019,-9,24018,24017,1,1,25,0,0,0,3,3,-9,0,4,7.185338,7.4344358,0,0,0,-826.73456,-9,2,2,2019,6,0,40,0,1,0,1,4.5343533,4.5343533,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,369,-34319.035,0,0,0,842.74164 -10821,13347,24020,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,5.7802739,5.9937291,0,0,-1034.9183,0,3,3,2019,14,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.2359033,5.8117704,39.57,16.2,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,1168,174776.19,31690.006,255228.17,0,450.58582 -10821,13348,24021,-9,-9,24020,1,1,53,0,0,0,2,2,-9,0,4,7.8444533,7.872613,0,0,0,-1011.4071,0,-9,3,2019,10,1,47,39,1,1,0,7.4301114,7.4301114,0,0,0,0,7,1,1,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,1676,212183.3,60954.246,0,0,1094.5219 -10822,13349,24022,-9,24024,24023,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.8696,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,1,1418.75,52200.645,0,0,0,886.52734 -10822,13349,24023,24024,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,0,0,0,7,6,.86168575,0,-9,-9,2019,14,4,0,39,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,53.22,55.2,5,1,1,1,0,10,6,2,1,1418.75,52200.645,0,0,0,886.52734 -10822,13349,24024,24023,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,6.5946689,7.0362468,0,7,-6,-15.48662,0,1,2,2019,10,0,4,18,1,0,0,24.428825,24.428825,0,0,0,0,0,1,1,0,0,0,53.22,55.2,34.44,48.18,8.333333333333334,4,2,0,0,10,6,2,1,1418.75,52200.645,0,0,0,886.52734 -10822,13349,24025,-9,24024,24023,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.16406,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,1,1418.75,52200.645,0,0,0,886.52734 -10823,13350,24026,24027,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.1868563,7.8373923,0,44,2,-8.3991718,0,3,3,2019,7,0,35,37,1,0,0,12.741306,12.741306,0,0,0,0,0,1,1,0,0,0,60.12,54.8,64.23999999999999,34.3,8.333333333333334,1,1,0,0,10,10,3,0,702.5,1244761.9,472429.06,226820.28,39640.547,2800.1094 -10823,13350,24027,24026,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,44,-2,27.748375,0,3,2,2019,5,0,0,20,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,64.23999999999999,34.3,60.12,54.8,10,1,1,0,0,9,10,3,0,702.5,1244761.9,472429.06,226820.28,39640.547,2800.1094 -10824,13351,24028,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,8.3217983,8.2348804,0,0,0,-1090.0273,-9,2,3,2019,20,6,48,0,1,6,0,6.490912,6.490912,0,0,0,0,5.48,1,1,0,0,0,29.72,56.8,-9,-9,6.666666666666667,3,4,0,0,13,10,4,0,1328,-254004.77,-46418.648,0,0,1041.4181 -10825,13352,24029,-9,24031,24030,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.88214,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 -10825,13352,24030,24031,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,9.1409769,8.9230118,0,23,-1,34.273678,0,2,3,2019,9,0,45,47,1,0,0,23.248989,23.248989,0,0,0,0,0,1,1,0,1.7106555,0,57.22,49.4,58.15,52.91,8.333333333333334,1,1,0,0,9,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 -10825,13352,24031,24030,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.4573445,6.3446259,0,25,1,10.77054,0,2,2,2019,6,0,7,0,1,0,0,8.3880444,8.3880444,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.22,49.4,8.333333333333334,1,1,0,0,4,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 -10825,13352,24032,-9,24031,24030,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-887.05896,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.8403156,0,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1028,125274.86,-15267.267,191558.53,122167.45,3136.9558 -10826,13353,24033,-9,24034,24035,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.6492,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,5,1,1531.3334,-6748.3984,25447.426,210194.02,134289.45,5401.6553 -10826,13353,24034,24035,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.7209377,8.5950184,0,1,5,21.510422,-9,-9,-9,2019,12,1,41,0,1,1,0,15.089113,15.089113,0,0,0,0,0,0,0,0,0,0,46.01,46.14,54.1,59.11,3.333333333333333,1,1,0,0,7,1,5,1,1531.3334,-6748.3984,25447.426,210194.02,134289.45,5401.6553 -10826,13353,24035,24034,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,8.9101419,9.1915503,0,1,-5,-111.81004,-9,-9,-9,2019,9,0,20,0,1,0,0,42.440006,42.440006,0,0,0,0,0,0,0,0,0,0,54.1,59.11,46.01,46.14,6.666666666666667,1,1,0,0,11,1,5,1,1531.3334,-6748.3984,25447.426,210194.02,134289.45,5401.6553 -10827,13354,24036,-9,24038,24037,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.62518,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 -10827,13354,24037,24038,-9,-9,1,1,44,1,2,0,2,2,-9,0,1,8.6064157,8.8474779,0,4,6,76.355865,0,3,3,2019,21,7,60,53,1,7,0,12.69326,12.69326,0,0,0,0,0,1,1,0,6.2257075,0,31.37,53.4,55.34,54.26,3.333333333333333,1,1,0,0,6,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 -10827,13354,24038,24037,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,8.9476738,8.8878374,0,4,-6,16.01895,0,2,2,2019,7,0,30,24,1,0,0,28.253296,28.253296,0,0,0,0,0,1,1,0,6.7551789,0,55.34,54.26,31.37,53.4,8.333333333333334,1,1,0,0,6,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 -10827,13354,24039,-9,24038,24037,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6045,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,981.5,1450548.5,1005449.3,345814.22,0,5721.5396 -10828,13355,24040,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1008.1502,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.62,26.74,-9,-9,5,1,1,0,0,8,6,1,1,274,-230882.31,0,61220.055,0,1284.0504 -10829,13356,24041,24042,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.2545605,9.3004932,0,24,-12,-3.1654656,0,2,2,2019,7,0,44,48,1,0,0,27.266857,27.266857,0,0,0,0,0,0,0,0,0,0,52.4,55.58,52.99,51.28,8.333333333333334,1,1,0,0,8,12,5,1,1570,1422807.5,692302.69,316605.63,7291.2656,7122.9785 -10829,13356,24042,24041,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.1486073,9.3210421,0,24,12,137.8007,0,3,2,2019,8,0,43,43,1,0,0,32.951935,32.951935,0,0,0,0,0,0,0,0,5.7929845,0,52.99,51.28,52.4,55.58,8.333333333333334,1,1,0,0,8,12,5,1,1570,1422807.5,692302.69,316605.63,7291.2656,7122.9785 -10830,13357,24043,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4633527,7.78543,0,0,-957.81665,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5665748,7.6095943,61.28,46.17,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,587,815390.94,293324.13,196101.09,0,909.90149 -10831,13358,24044,24045,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.900527,7.3579092,29,6,27.870548,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9357138,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,4,2,4,1,466,1257692.6,1100741.1,298438.63,82408.063,3075.4482 -10831,13358,24045,24044,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.7520256,7.7511864,27,-6,-85.277962,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7345834,57.06,57.76,54.79,55.86,10,1,1,0,0,6,2,4,1,466,1257692.6,1100741.1,298438.63,82408.063,3075.4482 -10832,13359,24046,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-991.93396,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,4.8820143,0,48.016541,0,1,1,0,.051190145,0,63.93,15.38,-9,-9,10,1,1,0,0,0,4,1,1,660,44273.551,0,0,0,561.66504 -10833,13360,24047,24048,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.4613552,8.8127699,0,7,-6,-112.14288,0,3,2,2019,18,6,49,47,1,6,0,11.830314,11.830314,0,0,0,0,0,0,0,0,3.858701,0,43.12,58.55,54.37,54.8,5,1,1,0,0,8,2,5,1,1361,995713.75,144242.94,467746,0,5442.627 -10833,13360,24048,24047,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.1279907,9.0632095,0,7,6,-33.535973,0,2,2,2019,13,1,37,41,1,1,0,26.090492,26.090492,0,0,0,0,0,0,0,0,7.2328091,0,54.37,54.8,43.12,58.55,8.333333333333334,1,1,0,0,8,2,5,1,1361,995713.75,144242.94,467746,0,5442.627 -10834,13361,24049,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.1607709,7.1957498,0,0,0,-914.80731,0,2,-9,2019,13,1,25,25,1,1,0,6.3321137,6.3321137,0,0,0,0,0,1,1,0,0,0,45.51,53.59,-9,-9,3.333333333333333,1,1,0,0,5,7,2,0,652.5,57884.719,0,0,0,1599.8064 -10834,13361,24050,-9,24049,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-886.60846,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,0,652.5,57884.719,0,0,0,1599.8064 -10835,13362,24051,24052,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,7.7534118,8.0353003,0,5,3,11.187043,0,-9,-9,2019,6,0,40,0,1,0,0,6.3652186,6.3652186,0,0,0,0,0,1,1,0,0,0,54.2,57.49,32.78,54.18,6.666666666666667,1,1,0,0,4,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 -10835,13362,24052,24051,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.3758197,7.5776272,5.5057526,5,-3,2.9122844,0,2,2,2019,21,8,24,16,1,8,0,9.7503738,9.7503738,0,0,0,0,0,1,1,0,5.4919214,0,32.78,54.18,54.2,57.49,5,1,1,0,1,9,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 -10835,13362,24053,-9,24052,24051,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-859.62933,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 -10835,13362,24054,-9,24052,24051,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.94037,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,1624,34244.555,42931.527,124998.64,38094.254,2320.7563 -10836,13363,24055,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1035.12,-9,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.93,49.45,-9,-9,1.666666666666667,1,1,0,0,1,12,1,0,870,32792.469,0,0,0,645.66327 -10837,13364,24056,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1014.9941,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.46,36.07,-9,-9,1.666666666666667,1,1,0,1,0,9,1,1,681,354429.16,112593.1,0,0,811.15277 -10838,13365,24057,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.3201938,5.0646877,0,0,-1081.3862,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,9.6637602,0,0,1,1,0,0,5.3641238,52.44,37.79,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,538,317391.72,-17361.543,236759.59,0,1403.5746 -10839,13366,24058,24059,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.5433016,8.4299421,0,11,-2,-1.7241628,0,2,-9,2019,12,0,48,44,1,0,0,10.541632,10.541632,0,0,0,0,0,0,0,0,2.0525043,0,41.4,51.43,58.5,44.67,8.333333333333334,4,2,0,1,10,8,5,0,621.5,658614.19,202922.7,372082.44,54095.508,3859.6514 -10839,13366,24059,24058,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.2928162,8.4042645,5.4292383,11,2,149.88504,0,2,-9,2019,7,0,38,40,1,0,0,10.328221,10.328221,0,0,0,0,0,0,0,0,5.6828394,0,58.5,44.67,41.4,51.43,8.333333333333334,4,2,0,0,10,8,5,0,621.5,658614.19,202922.7,372082.44,54095.508,3859.6514 -10840,13367,24060,-9,24061,24063,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.6105,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 -10840,13367,24061,24063,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.2919683,8.3377647,0,14,-1,24.185209,0,1,2,2019,9,0,45,20,1,0,0,11.478672,11.478672,0,0,0,0,5.48,1,1,0,0,0,46.9,56.66,44.93,18.74,8.333333333333334,1,1,0,0,10,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 -10840,13367,24062,-9,24061,24063,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-917.01141,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 -10840,13367,24063,24061,-9,-9,1,1,48,0,2,0,1,1,-9,1,1,8.6342669,8.4126425,0,6,1,107.70369,0,-9,-9,2019,15,5,47,61,1,5,0,13.373487,13.373487,0,0,0,0,0,1,1,0,0,0,44.93,18.74,46.9,56.66,6.666666666666667,1,1,0,0,12,12,4,1,1698,687474.63,570345.56,222505.94,120201.7,3846.02 -10841,13368,24064,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.9656191,9.3730602,0,0,0,-985.01813,0,3,2,2019,10,0,50,50,1,0,0,23.07658,23.07658,0,0,0,0,0,0,0,0,4.1184211,0,40.83,54.15,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,716,2515864.3,1498550.5,690816.13,0,3541.7451 -10842,13369,24065,24066,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,7.3858285,7.3226113,0,8,5,-96.737602,0,2,2,2019,18,7,40,-9,1,7,0,4.4442806,4.4442806,0,0,0,0,7,0,0,0,0,0,37.87,48.86,40.71,62.41,0,1,1,0,0,4,13,3,0,618,1156811.4,582858.75,261310.72,-2016.6172,1789.1667 -10842,13369,24066,24065,-9,-9,1,0,46,0,0,0,1,1,1,0,4,7.663619,7.5541029,0,8,-5,-26.884684,-9,2,2,2019,12,1,6,0,1,1,0,34.587242,34.587242,0,0,0,0,0,0,0,0,0,0,40.71,62.41,37.87,48.86,3.333333333333333,1,1,0,1,10,13,3,0,618,1156811.4,582858.75,261310.72,-2016.6172,1789.1667 -10843,13370,24067,24068,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.5626574,7.8598266,8.1335974,42,3,118.23127,0,3,3,2019,9,0,13,13,1,0,0,6.3865008,6.3865008,0,0,0,0,113,1,1,0,0,8.2430573,60.29,52.11,45.47,23.9,8.333333333333334,1,1,0,0,9,5,4,1,348.5,927410.13,652397.38,307045.88,0,2607.9634 -10843,13370,24068,24067,24069,-9,1,0,56,0,0,0,2,2,-9,1,2,0,7.1330285,7.2071004,7,-3,-75.282089,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,6.8671927,45.47,23.9,60.29,52.11,3.333333333333333,1,1,1,0,8,5,4,1,348.5,927410.13,652397.38,307045.88,0,2607.9634 -10843,13371,24069,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,6.1309652,6.1362677,0,0,-1001.361,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,253.33374,0,0,1,1,0,7.3518362,5.9350672,61.64,13.84,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,995,120822.48,-22615.324,0,0,600.4046 -10843,13372,24070,-9,24068,24067,1,1,34,0,0,0,2,2,-9,0,3,8.5750008,8.510725,0,0,0,-944.39832,0,2,2,2019,13,1,50,45,1,1,1,12.409117,12.409117,0,0,0,0,0,1,1,0,0,0,53.14,45.74,-9,-9,6.666666666666667,1,1,0,0,9,5,5,1,368.5,-356889.75,-2800.7109,135500.44,113599.53,1530.0172 -10843,13372,24071,-9,-9,24070,1,1,16,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1021.9512,-9,-9,-9,2019,22,7,0,0,2,7,0,0,0,0,0,0,0,120,1,1,0,0,0,30.66,53.74,-9,-9,3.333333333333333,1,1,0,0,0,5,5,1,368.5,-356889.75,-2800.7109,135500.44,113599.53,1530.0172 -10844,13373,24072,24073,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.0423689,8.0684366,0,7,3,126.49531,0,-9,-9,2019,10,0,40,30,1,1,0,8.6282606,8.6282606,0,0,0,0,0,0,0,0,0,0,51,48,57.06,57.76,7,1,1,0,0,1,4,4,1,531.5,877716.63,1107094.3,169990.52,-3341.0474,2827.2878 -10844,13373,24073,24072,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,7.8987393,7.6135125,40,-3,81.962746,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.4251761,8.0496893,57.06,57.76,51,48,0,1,1,0,0,3,4,4,1,531.5,877716.63,1107094.3,169990.52,-3341.0474,2827.2878 -10845,13374,24074,24076,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,8.3042669,8.3661499,0,4,1,-25.207245,0,2,2,2019,9,0,42,8,1,0,0,10.921346,10.921346,0,0,0,0,2,1,1,0,1.2921572,0,54.1,59.11,37.31,50.35,8.333333333333334,1,1,0,0,11,12,4,1,751,1380454.4,1202984,387547.13,170885.25,4612.7554 -10845,13374,24075,-9,24076,24074,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.12408,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,751,1380454.4,1202984,387547.13,170885.25,4612.7554 -10845,13374,24076,24074,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.5392599,8.6513119,0,4,-1,-68.912796,0,2,-9,2019,16,4,38,1,1,4,0,20.022228,20.022228,0,0,0,0,0,1,1,0,7.8443012,0,37.31,50.35,54.1,59.11,5,1,1,0,0,11,12,4,1,751,1380454.4,1202984,387547.13,170885.25,4612.7554 -10845,13375,24077,-9,24076,24074,1,0,20,0,1,1,2,0,0,0,4,0,6.3879886,6.6486669,0,0,-1047.5002,-9,2,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,7.0890198,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,327,105223.09,-31434.895,0,0,-65.986992 -10845,13376,24078,-9,24076,24074,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1008.2375,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.6742709,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,527,-274769.16,0,0,0,66.290016 -10846,13377,24079,24080,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.6415362,7.6619387,18,-2,-4.8007097,0,-9,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.7474389,7.542017,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,0,10,3,1,1172.5,631171.94,569173.38,0,0,1942.0415 -10846,13377,24080,24079,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.7458773,6.6716881,18,2,152.04881,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5290675,6.3549848,51.24,58.84,57.06,57.76,8.333333333333334,4,2,0,0,3,10,3,1,1172.5,631171.94,569173.38,0,0,1942.0415 -10847,13378,24081,24082,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.4802499,6.2922134,7,3,14.488393,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,0,9.4517975,0,0,1,1,0,0,6.4514484,34.77,42.05,36.27,29.4,6.666666666666667,1,1,0,0,7,11,2,1,560,337138.72,180011.66,81355.492,28183.713,1663.8198 -10847,13378,24082,24081,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,46,-3,67.406326,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,36.27,29.4,34.77,42.05,6,1,1,0,0,0,11,2,1,560,337138.72,180011.66,81355.492,28183.713,1663.8198 -10848,13379,24083,24084,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,0,0,0,6,1,71.805801,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.05,45.35,50.18,52.62,6.666666666666667,1,1,1,0,3,13,2,1,1230,85231.469,239772.95,131760.59,0,1490.8169 -10848,13379,24084,24083,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.0023203,7.0441523,0,6,-1,-39.506584,0,3,3,2019,8,0,30,30,1,0,0,4.566113,4.566113,0,0,0,0,0,1,1,0,0,0,50.18,52.62,60.05,45.35,5,1,1,0,1,5,13,2,1,1230,85231.469,239772.95,131760.59,0,1490.8169 -10849,13380,24085,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.6390009,8.0749798,6.645721,0,0,-1116.1003,0,3,2,2019,10,0,35,35,1,0,0,7.3628535,7.3628535,0,0,0,0,0,1,1,0,2.7117171,6.3194485,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,786,247260.66,405051.28,294470.41,0,2013.889 -10850,13381,24086,24087,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.8515415,9.0578775,0,10,3,-15.342397,0,-9,-9,2019,4,0,49,51,1,0,0,20.413364,20.413364,0,0,0,0,2,0,0,0,5.271421,0,68.59,38.62,46.56,37.03,8.333333333333334,2,3,0,0,11,8,5,1,452.5,649972.69,259573.03,366934.06,0,3589.498 -10850,13381,24087,24086,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,6.9857244,6.6619687,0,36,-3,-63.586262,0,3,3,2019,15,3,17,17,1,3,0,7.8720798,7.8720798,0,0,0,0,0,0,0,0,3.8368573,0,46.56,37.03,68.59,38.62,6.666666666666667,2,3,0,0,11,8,5,1,452.5,649972.69,259573.03,366934.06,0,3589.498 -10850,13382,24088,-9,24087,24086,1,0,25,0,0,0,1,1,-9,0,3,8.5729008,9.0545683,0,0,0,-930.1427,0,2,2,2019,12,0,39,38,1,0,1,18.502703,18.502703,0,0,0,0,0,0,0,0,5.82865,0,51.41,56.15,-9,-9,8.333333333333334,2,3,0,0,4,8,5,1,453,0,0,0,0,3267.6843 -10850,13383,24089,-9,24087,24086,1,0,25,0,0,0,1,1,-9,0,4,9.0395794,8.8916883,0,0,0,-902.69873,0,2,2,2019,15,3,45,43,1,3,1,16.641525,16.641525,0,0,0,0,0,0,0,0,3.7839148,0,37.81,62.39,-9,-9,8.333333333333334,2,3,0,0,5,8,5,1,759,0,0,0,0,2675.6917 -10850,13384,24090,-9,24087,24086,1,0,20,0,0,0,2,2,0,0,2,0,0,0,0,0,-1024.8298,-9,2,2,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1.1675072,0,48.42,37.58,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,815,203033.41,0,0,0,130.22305 -10851,13385,24091,24092,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.0683451,7.8425856,0,43,3,98.64624,0,-9,-9,2019,6,0,37,37,1,0,0,8.8513298,8.8513298,0,0,0,0,0,0,0,0,0,0,54,53,59.43,58.05,10,1,1,0,0,8,1,4,0,512,805432.38,591453.75,95421,50062.031,1619.7141 -10851,13385,24092,24091,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,6.4845152,7.1636529,6.7273903,43,-3,114.95119,0,3,3,2019,11,1,6,6,1,1,0,8.8014812,8.8014812,0,0,0,0,0,0,0,0,0,6.5220127,59.43,58.05,54,53,10,1,1,0,0,6,1,4,0,512,805432.38,591453.75,95421,50062.031,1619.7141 -10852,13386,24093,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7881165,7.5746903,0,0,0,-901.36542,0,-9,-9,2019,8,1,40,0,1,1,0,7.527513,7.527513,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,4,2,0,0,2,5,3,0,1037,-167306.13,-127342.41,0,0,1083.7225 -10853,13387,24094,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.0983362,8.1353006,0,0,0,-958.77399,-9,2,2,2019,6,0,45,0,1,0,0,11.640856,11.640856,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,9,4,0,1250,32845.301,4770.1011,106655.66,106885.2,1438.9901 -10854,13388,24095,24096,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,9.428648,9.5256491,5.8593774,26,13,.59298331,0,-9,-9,2019,11,0,38,37,1,2,0,41.06435,41.06435,0,0,0,0,0,1,1,0,0,6.5806174,49,48,53.42,52.33,7,1,1,0,0,1,9,5,1,483.5,1239656.6,0,860967.38,0,13631.641 -10854,13388,24096,24095,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.7434692,9.6444874,0,2,-13,-57.020679,0,2,2,2019,9,0,53,47,1,0,0,40.735401,40.735401,0,0,0,0,0,1,1,0,4.2513504,0,53.42,52.33,49,48,8.333333333333334,1,1,0,0,9,9,5,1,483.5,1239656.6,0,860967.38,0,13631.641 -10855,13389,24097,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.2827315,7.4611063,0,0,-861.23199,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9500763,7.9524202,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,2046,665449.63,469680.88,209841.06,0,1771.1246 -10856,13390,24098,24101,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,8.789113,8.6805696,0,15,9,38.941204,0,2,1,2019,11,0,37,37,1,0,0,16.355562,16.355562,0,0,0,0,0,1,1,0,0,0,56.33,51.02,54.2,57.49,8.333333333333334,2,3,0,0,13,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 -10856,13390,24099,-9,24101,24098,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.1895,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 -10856,13390,24100,-9,24101,24098,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-949.48895,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 -10856,13390,24101,24098,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.808548,7.8089619,0,15,0,46.485569,-9,3,2,2019,12,1,24,0,1,1,0,13.718762,13.718762,0,0,0,0,0,1,1,0,2.5188553,0,54.2,57.49,56.33,51.02,8.333333333333334,2,3,0,0,9,8,4,0,355.25,1243881.1,290861.72,793387.75,0,3440.4785 -10857,13391,24102,24103,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.483798,8.6772461,0,29,3,7.7019229,0,-9,3,2019,12,0,45,40,1,0,0,19.533833,19.533833,0,0,0,0,0,0,0,0,0,0,42.3,57.54,59.29,49.68,6.666666666666667,1,1,0,0,12,7,5,1,406.5,909084.75,525685.13,178590.28,-654.67944,3062.6001 -10857,13391,24103,24102,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.0785728,6.6601033,0,29,-3,55.470913,0,-9,2,2019,9,0,16,13,1,0,0,7.0111718,7.0111718,0,0,0,0,0,0,0,0,0,0,59.29,49.68,42.3,57.54,6.666666666666667,1,1,0,0,11,7,5,1,406.5,909084.75,525685.13,178590.28,-654.67944,3062.6001 -10857,13392,24104,-9,24103,24102,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-983.69519,-9,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.14,52.08,-9,-9,10,1,1,0,0,1,7,1,1,574,-28522.063,0,0,0,-683.8335 -10857,13392,24105,-9,-9,24104,1,1,3,0,0,1,3,0,-9,0,4,0,0,0,0,0,-942.50421,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,1,1,574,-28522.063,0,0,0,-683.8335 -10858,13393,24106,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,7.1248746,7.3374906,0,0,-1005.7457,0,2,2,2019,28,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,5.8036237,7.6917176,31.33,34.39,-9,-9,3.333333333333333,1,1,0,0,0,13,3,1,2603,292387.63,247468.47,314061.22,0,2380.7485 -10859,13394,24107,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.5753436,5.6625085,0,0,-1081.876,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8283687,52.26,39.68,-9,-9,10,1,1,0,0,9,1,2,0,631,380338.16,194270.55,0,0,1209.8102 -10860,13395,24108,-9,24110,24109,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.77014,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1095,634838.31,368005.91,316778.16,113258.86,5539.8496 -10860,13395,24109,24110,-9,-9,1,1,42,0,1,0,2,2,-9,0,5,9.3166485,9.3418541,7.3353596,6,-2,-5.208643,0,-9,-9,2019,6,0,42,42,1,0,0,32.051479,32.051479,0,0,0,0,0,0,0,0,0,7.6968179,57.06,57.76,40.06,58.99,8.333333333333334,1,1,0,0,6,12,5,1,1095,634838.31,368005.91,316778.16,113258.86,5539.8496 -10860,13395,24110,24109,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.1966953,7.1523347,0,6,2,47.958862,0,3,3,2019,17,5,21,21,1,5,0,9.1056337,9.1056337,0,0,0,0,0,0,0,0,0,0,40.06,58.99,57.06,57.76,6.666666666666667,1,1,0,0,6,12,5,1,1095,634838.31,368005.91,316778.16,113258.86,5539.8496 -10861,13396,24111,24112,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.1598115,6.0960436,38,0,-28.91609,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.695281,6.0419049,55.84,20.66,50.57,20.48,6.666666666666667,1,1,0,0,0,6,2,0,480.5,351050.5,129388.15,0,0,2411.001 -10861,13396,24112,24111,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,38,9,-78.27523,0,3,-9,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,0,50.57,20.48,55.84,20.66,5,1,1,0,0,0,6,2,0,480.5,351050.5,129388.15,0,0,2411.001 -10862,13397,24113,-9,24115,24114,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.0425,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 -10862,13397,24114,24115,-9,-9,1,1,35,2,2,0,2,2,-9,0,3,8.3009424,8.1626768,0,10,-1,-15.65715,0,2,2,2019,11,1,37,60,1,1,0,11.966661,11.966661,0,0,0,0,0,1,1,0,0,0,52,54.51,52.16,46.15,8.333333333333334,1,1,0,0,12,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 -10862,13397,24115,24114,-9,-9,1,0,36,2,2,0,1,1,-9,0,3,8.4818783,8.4850397,0,10,1,-41.813557,0,2,3,2019,11,0,42,77,1,0,0,10.127321,10.127321,0,0,0,0,0,1,1,0,1.1255801,0,52.16,46.15,52,54.51,6.666666666666667,1,1,0,0,12,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 -10862,13397,24116,-9,24115,24114,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-954.40326,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,745.75,389627.53,88856.523,297966.09,180869.88,2753.5437 -10863,13398,24117,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.7536125,7.6229329,0,0,0,-968.96912,0,-9,-9,2019,12,1,32,22,1,1,0,9.6116362,9.6116362,0,0,0,0,0,1,1,0,0,0,40.72,55.32,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,901,-358525.06,-43665.895,0,0,1187.1544 -10863,13398,24118,-9,24117,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.31232,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,901,-358525.06,-43665.895,0,0,1187.1544 -10863,13398,24119,-9,24117,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.0386,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,901,-358525.06,-43665.895,0,0,1187.1544 -10864,13399,24120,-9,24123,24121,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.86725,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,369.25,40318.898,0,0,0,4348.6074 -10864,13399,24121,24123,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.9890156,8.8716307,0,12,2,-61.537346,-9,-9,-9,2019,9,0,38,0,1,1,0,28.613817,28.613817,0,0,0,0,0,1,1,0,0,0,52,55,54.37,54.8,8,1,1,0,0,1,9,5,1,369.25,40318.898,0,0,0,4348.6074 -10864,13399,24122,-9,24123,24121,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.4208,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,369.25,40318.898,0,0,0,4348.6074 -10864,13399,24123,24121,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.7164702,7.8915877,0,12,-2,-14.062647,0,2,2,2019,12,0,19,19,1,0,0,13.992246,13.992246,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52,55,1.666666666666667,1,1,0,0,8,9,5,1,369.25,40318.898,0,0,0,4348.6074 -10865,13400,24124,24125,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.8739343,4.9026608,58,-4,59.398815,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3955731,4.7595205,48.81,59.91,52.24,30.08,8.333333333333334,1,1,0,0,0,10,2,1,1091,790949.13,0,293865.84,0,2279.9739 -10865,13400,24125,24124,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.058579,5.2767687,58,4,-43.285591,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,4.7100763,4.9814763,52.24,30.08,48.81,59.91,8.333333333333334,1,1,0,0,0,10,2,1,1091,790949.13,0,293865.84,0,2279.9739 -10866,13401,24126,-9,24129,24128,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-831.95538,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 -10866,13401,24127,-9,24129,24128,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0325,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 -10866,13401,24128,24129,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.6491203,8.7897987,0,1,0,-79.145699,0,-9,-9,2019,25,10,60,45,1,10,0,8.9122248,8.9122248,0,0,0,0,0,1,1,0,0,0,38.39,45.65,36.33,59.23,6.666666666666667,1,1,0,0,7,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 -10866,13401,24129,24128,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.5585155,7.5460119,0,1,0,23.128948,-9,-9,-9,2019,10,0,30,0,1,0,0,8.0765419,8.0765419,0,0,0,1.1337721,71.5,1,1,0,0,0,36.33,59.23,38.39,45.65,8.333333333333334,1,1,0,0,8,9,4,0,385.5,20855.268,19453.494,198945.86,107069.41,4267.5713 -10867,13402,24130,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0329809,8.2926483,0,0,0,-939.02753,-9,2,1,2019,13,2,24,0,1,2,0,13.525846,13.525846,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,420,53513.492,153313.22,86696.789,0,1245.0049 -10868,13403,24131,24132,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,9.5097599,9.566371,0,23,3,24.780096,0,1,1,2019,6,0,30,50,1,0,0,64.285118,64.285118,0,0,0,0,0,0,0,0,6.8101168,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,12,9,5,1,247,147074.75,0,0,0,11296.105 -10868,13403,24132,24131,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,7.7521772,7.4996905,0,23,-3,-55.230759,0,2,2,2019,0,0,6,26,1,0,0,33.194096,33.194096,0,0,0,0,0,0,0,0,3.7114213,0,59.43,58.05,57.16,56.15,10,1,1,0,0,9,9,5,1,247,147074.75,0,0,0,11296.105 -10868,13404,24133,-9,24132,24131,1,1,18,0,2,0,3,3,1,0,5,7.3802338,7.2509394,0,0,0,-844.70447,-9,1,1,2019,14,3,80,0,1,3,1,2.1353211,2.1353211,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,5,1,1,0,0,1,9,3,1,471,-14655.445,106334.02,0,0,1051.4169 -10869,13405,24134,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,3.7013361,3.7744684,0,0,-1046.8562,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0038648,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,268,646324.38,15289.755,200652.23,0,889.02197 -10870,13406,24135,24136,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.5894394,8.473546,0,8,0,-61.38065,0,1,2,2019,18,6,37,38,1,6,0,16.13957,16.13957,0,0,0,0,0,0,0,0,0,0,42.53,52.15,44.43,57.98,8.333333333333334,1,1,0,0,9,11,5,1,81,1135496.5,1122531.1,0,0,6157.8813 -10870,13406,24136,24135,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.9857006,9.2198591,0,8,0,13.812557,0,2,2,2019,11,0,40,37,1,0,0,33.001129,33.001129,0,0,0,0,0,0,0,0,0,0,44.43,57.98,42.53,52.15,8.333333333333334,1,1,0,0,8,11,5,1,81,1135496.5,1122531.1,0,0,6157.8813 -10871,13407,24137,24138,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.2126832,7.3287973,38,8,-37.200745,0,-9,-9,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4606292,7.4221492,54.2,57.49,59.29,49.68,8.333333333333334,1,1,0,0,9,7,3,1,271,3294748.5,697775.75,2241376,0,2153.3486 -10871,13407,24138,24137,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.3913884,7.3736205,38,-8,127.61372,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8891008,7.393887,59.29,49.68,54.2,57.49,5,1,1,0,0,5,7,3,1,271,3294748.5,697775.75,2241376,0,2153.3486 -10872,13408,24139,24140,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,8.5651693,8.8911934,0,6,8,-70.103882,0,-9,-9,2019,9,0,40,40,1,1,0,16.441658,16.441658,0,0,0,0,0,1,1,0,0,0,51,56,43.37,57.28,8,1,1,0,0,1,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 -10872,13408,24140,24139,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.9595046,7.8851247,0,6,-8,-25.740719,0,2,1,2019,12,1,30,30,1,1,0,8.4826031,8.4826031,0,0,0,0,0,1,1,0,7.5557818,0,43.37,57.28,51,56,8.333333333333334,1,1,0,0,6,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 -10872,13408,24141,-9,24140,24139,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.3494,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 -10872,13408,24142,-9,24140,24139,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.3536,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,0,863.5,113517.98,168760.91,180644.66,86575.43,4119.9063 -10873,13409,24143,24144,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.4012475,6.1792536,50,-6,-9.0822935,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7743092,6.6610265,57.06,57.76,57.65,56.13,8.333333333333334,1,1,0,0,6,12,2,1,1378.5,562561,144582.22,265971.44,0,4213.8472 -10873,13409,24144,24143,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,5.3127785,5.4821386,50,6,249.00993,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8360176,5.7467952,57.65,56.13,57.06,57.76,10,1,1,0,0,4,12,2,1,1378.5,562561,144582.22,265971.44,0,4213.8472 -10874,13410,24145,24146,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.441576,8.482234,0,2,0,-70.467857,0,-9,-9,2019,6,0,32,32,1,0,0,11.107681,11.107681,0,0,0,0,0,0,0,0,0,0,49,58,48.87,58.55,8,1,1,0,0,3,2,5,0,467.5,390467.38,200692.03,233975.98,179878.59,3318.9106 -10874,13410,24146,24145,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.2776842,8.6236582,0,2,0,-32.326759,0,-9,-9,2019,14,4,38,42,1,4,0,17.307968,17.307968,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49,58,8.333333333333334,1,1,0,0,3,2,5,0,467.5,390467.38,200692.03,233975.98,179878.59,3318.9106 -10875,13411,24147,24148,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.9458251,8.3759117,0,12,-4,-87.847252,0,3,3,2019,13,2,45,45,1,2,0,6.5572138,6.5572138,0,0,0,0,0,0,0,0,0,0,41.89,50.7,55.96,49.93,6.666666666666667,1,1,0,0,9,10,4,0,337,350939.03,281778.69,0,0,1908.9429 -10875,13411,24148,24147,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8950329,7.9241886,0,12,4,-34.625278,0,2,3,2019,6,0,35,35,1,0,0,7.5910244,7.5910244,0,0,0,0,0,0,0,0,0,0,55.96,49.93,41.89,50.7,10,1,1,0,0,11,10,4,0,337,350939.03,281778.69,0,0,1908.9429 -10875,13412,24149,-9,24148,24147,1,1,28,0,0,0,2,2,-9,0,4,6.073277,6.3192134,0,0,0,-1101.0088,-9,2,2,2019,10,0,40,0,1,1,1,1.3648735,1.3648735,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,2,0,398,263787.09,-6266.1338,0,0,-103.36633 -10876,13413,24150,24151,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,3.5699861,3.2712939,52,-3,51.571766,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.3792574,67.45,34.18,56.77,52.22,8.333333333333334,1,1,0,0,8,11,2,1,547.5,407887.41,62915.406,231928.41,0,702.9032 -10876,13413,24151,24150,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,5.0109277,5.0169401,52,3,117.17795,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.530973,5.1815128,56.77,52.22,67.45,34.18,8.333333333333334,1,1,0,0,0,11,2,1,547.5,407887.41,62915.406,231928.41,0,702.9032 -10877,13414,24152,24153,-9,-9,1,1,62,0,1,0,1,1,-9,0,1,8.681489,8.7610703,4.0693784,2,10,-91.813263,0,2,-9,2019,14,2,40,30,1,2,0,14.948858,14.948858,0,0,0,0,0,1,1,0,6.4246001,4.4953132,54.04,16.08,43.94,58,3.333333333333333,1,1,0,1,11,2,4,1,339.33334,909137,275754.84,386831.06,385011.63,3511.8892 -10877,13414,24153,24152,-9,-9,1,0,52,0,1,0,2,2,-9,1,4,7.2561922,7.0484285,5.4769392,2,-10,134.24863,0,2,2,2019,11,0,12,20,1,0,0,12.784882,12.784882,0,0,0,0,14.5,1,1,0,0,5.4665399,43.94,58,54.04,16.08,8.333333333333334,1,1,0,0,8,2,4,1,339.33334,909137,275754.84,386831.06,385011.63,3511.8892 -10877,13414,24154,-9,24153,24152,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.81976,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,339.33334,909137,275754.84,386831.06,385011.63,3511.8892 -10878,13415,24155,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.0656085,7.1719522,0,0,0,-886.30878,0,1,1,2019,13,4,6,6,1,4,0,27.5812,27.5812,0,0,0,0,0,0,0,0,6.5482206,0,29.05,61.18,-9,-9,3.333333333333333,1,1,0,0,11,11,3,1,252,-91058.867,-31327.473,252784.97,44498.168,1572.9714 -10879,13416,24156,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1131.4152,0,3,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.89,31.37,-9,-9,3.333333333333333,1,1,0,1,0,5,1,0,160,-305226.63,0,0,0,1150.5702 -10880,13417,24157,24158,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,42,4,0,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,19.312332,0,42,1,1,0,0,0,39.39,37.66,29.86,20.5,1.666666666666667,1,1,0,0,0,12,1,0,1056,421785.72,0,0,0,2432.8689 -10880,13417,24158,24157,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,42,-4,0,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.86,20.5,39.39,37.66,5,1,1,0,0,0,12,1,0,1056,421785.72,0,0,0,2432.8689 -10880,13418,24159,-9,24158,24157,1,1,34,0,0,0,1,1,-9,0,4,8.1890011,7.8327599,0,0,0,-879.66486,0,2,2,2019,12,0,38,40,1,0,1,8.3527374,8.3527374,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,304,23182.18,-26462.83,0,0,1200.4453 -10881,13419,24160,-9,24161,24162,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.13458,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1311,348637.78,206938.25,218465.5,118703.97,2179.3723 -10881,13419,24161,24162,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,27,-5,-47.600365,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,51.83,57.2,8.333333333333334,1,1,0,0,0,9,4,1,1311,348637.78,206938.25,218465.5,118703.97,2179.3723 -10881,13419,24162,24161,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.7314119,8.5018244,0,27,5,8.4567575,0,2,3,2019,12,1,42,42,1,1,0,17.452484,17.452484,0,0,0,0,7,1,1,0,1.9075649,0,51.83,57.2,47.79,53.79,8.333333333333334,1,1,0,0,9,9,4,1,1311,348637.78,206938.25,218465.5,118703.97,2179.3723 -10881,13420,24163,-9,24161,24162,1,1,19,0,1,0,2,2,1,0,4,7.8630576,7.9246035,0,0,0,-1038.4712,-9,2,3,2019,5,0,35,0,1,0,1,11.029513,11.029513,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,278,-45023.438,0,0,0,948.02252 -10882,13421,24164,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.9547672,7.8132353,0,0,0,-1085.5894,-9,2,2,2019,7,0,46,0,1,0,0,6.6673265,6.6673265,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,35,250076.56,0,161554.19,0,738.78271 -10883,13422,24165,24166,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.7225337,8.0673218,0,9,1,2.8499777,0,3,3,2019,8,0,42,38,1,0,0,7.5011697,7.5011697,0,0,0,0,27,0,0,0,0,0,49.11,45,31.41,23.68,8.333333333333334,1,1,0,0,10,4,3,0,877,367743.84,177122.67,210122.72,0,1161.8419 -10883,13422,24166,24165,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,9,-1,4.5807829,0,-9,-9,2019,18,6,0,15,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,31.41,23.68,49.11,45,3.333333333333333,1,1,1,0,5,4,3,0,877,367743.84,177122.67,210122.72,0,1161.8419 -10884,13423,24167,-9,24168,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-930.32959,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,51.85,-9,-9,10,1,1,1,1,8,8,1,0,354,-41118.938,0,0,0,34.066162 -10884,13424,24168,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.0366,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,45.75,-9,-9,10,1,1,0,0,0,8,1,0,581,338787.16,0,0,0,1580.8193 -10885,13425,24169,24170,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,48,2,0,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,15.010183,13.455212,0,0,1,1,0,0,0,36.31,33.7,32.39,26.32,8.333333333333334,1,1,0,0,0,2,1,1,432,122348.44,60104.531,121548.18,0,936.10437 -10885,13425,24170,24169,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,48,-2,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,3.0743468,75.000214,0,2,1,1,0,0,0,32.39,26.32,36.31,33.7,5,1,1,0,0,0,2,1,1,432,122348.44,60104.531,121548.18,0,936.10437 -10886,13426,24171,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.4663296,8.7698097,0,0,0,-1026.8967,0,2,2,2019,2,0,113,97,1,0,0,5.2157927,5.2157927,0,0,0,0,13,1,1,0,0,0,60.51,40.9,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,419,562087.94,372475.5,131405.89,57860.645,2520.7378 -10887,13427,24172,24173,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,2,-4,8.0415182,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.82,53.97,55.83,51.72,8.333333333333334,1,1,0,0,0,11,2,1,612.5,196737.39,116750.1,189033.56,0,575.26404 -10887,13427,24173,24172,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.1658688,5.0924768,2,4,-116.65197,0,3,3,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7308211,5.0659089,55.83,51.72,52.82,53.97,8.333333333333334,1,1,0,0,7,11,2,1,612.5,196737.39,116750.1,189033.56,0,575.26404 -10888,13428,24174,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-917.21643,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,53.43,25.61,-9,-9,10,1,1,0,1,1,7,1,0,769,163295.22,155495.66,143030.09,74276.984,1468.5393 -10889,13429,24175,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1030.3138,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,120,1,1,0,0,0,31.62,48.16,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,297,0,0,0,0,3012.5781 -10889,13430,24176,-9,24175,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1029.5863,0,3,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,0,4,1,0,533,-127420.77,0,0,0,1657.6157 -10890,13431,24177,24178,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.8460083,6.7008605,0,4,4,124.25491,0,-9,-9,2019,12,0,60,40,1,0,0,1.472133,1.472133,0,0,0,0,0,0,0,0,6.7679224,0,57.16,56.15,57.33,53.46,5,1,1,0,0,6,6,3,1,985.5,695822.75,584052.38,89416.773,20101.922,1374.1013 -10890,13431,24178,24177,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,7.1791525,7.0662055,0,4,-4,-66.19175,0,3,2,2019,10,0,40,43,1,0,0,4.0879822,4.0879822,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,5,2,3,0,0,7,6,3,1,985.5,695822.75,584052.38,89416.773,20101.922,1374.1013 -10891,13432,24179,24180,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.4324446,7.5052462,6.2686725,7,-1,18.950647,0,2,3,2019,9,0,18,24,1,0,0,7.132422,7.132422,0,0,0,0,0,0,0,0,4.3644795,6.8017092,50.05,55.41,37.03,52.5,8.333333333333334,1,1,0,0,8,2,4,1,1064.5,299737.66,50195.754,158707.81,0,2944.5791 -10891,13432,24180,24179,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.0141697,8.1533556,7.1507702,7,1,-84.069183,0,2,3,2019,7,0,37,37,1,0,0,8.8395309,8.8395309,0,0,0,0,0,0,0,0,7.4262815,0,37.03,52.5,50.05,55.41,6.666666666666667,1,1,0,0,8,2,4,1,1064.5,299737.66,50195.754,158707.81,0,2944.5791 -10891,13433,24181,-9,24179,24180,1,1,24,0,0,0,1,1,-9,0,3,8.0740576,7.8675618,0,0,0,-1075.7585,0,2,2,2019,4,0,40,40,1,0,1,9.3671427,9.3671427,0,0,0,0,0,0,0,0,0,0,53.63,51.24,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,523,127330.55,-16808.42,0,0,1238.3401 -10892,13434,24182,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7080812,8.9451046,0,0,0,-1014.3322,0,1,1,2019,11,0,46,88,1,0,0,15.843165,15.843165,0,0,0,0,0,0,0,0,4.4743471,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,4,4,5,1,1025,361001.22,42486.852,0,0,2686.0317 -10893,13435,24183,24184,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6047277,8.5387335,6.173111,7,-5,86.163155,0,3,3,2019,7,0,40,40,1,0,0,23.434647,23.434647,0,0,0,0,0,1,1,0,5.9651351,6.6301599,57.16,56.15,51.24,38.85,8.333333333333334,1,1,0,0,8,1,4,1,1480.5,913801.13,657155.75,301616.31,0,2811.8459 -10893,13435,24184,24183,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,40,5,39.27457,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1462083,0,51.24,38.85,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1480.5,913801.13,657155.75,301616.31,0,2811.8459 -10894,13436,24185,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,8.4737892,8.248642,0,0,-980.08136,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,0,0,0,9.1080132,8.2378254,26.17,45.49,-9,-9,1.666666666666667,1,1,0,1,9,7,4,1,291,262875.41,35757.531,251545.23,0,2010.1189 -10895,13437,24186,24187,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.1422834,8.3744164,31,4,29.693542,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.9295373,0,2,1,1,0,5.4593067,8.5322952,54.02,40.03,56.93,41.15,6.666666666666667,1,1,0,0,10,5,4,1,744,1046195.3,590559.5,324959.38,0,3446.7939 -10895,13437,24187,24186,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.2520375,6.5165272,31,-4,21.853134,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.5085592,6.5135288,56.93,41.15,54.02,40.03,8.333333333333334,1,1,0,0,9,5,4,1,744,1046195.3,590559.5,324959.38,0,3446.7939 -10896,13438,24188,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.9343681,8.7803926,0,0,0,-1066.5696,0,1,1,2019,11,0,57,43,1,0,0,15.089858,15.089858,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,784,270548.38,0,0,0,2727.4263 -10897,13439,24189,24190,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.7356262,9.5945692,0,24,1,18.702772,0,2,2,2019,8,2,37,41,1,2,0,55.221035,55.221035,0,0,0,0,0,0,0,0,3.5223403,0,57.16,56.15,52.4,55.58,8.333333333333334,1,1,0,0,8,6,5,1,1634,451787.81,132502.14,651416.88,186256.55,9024.6836 -10897,13439,24190,24189,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.865099,8.703557,0,24,-1,-49.679039,0,2,2,2019,7,0,38,33,1,0,0,14.296178,14.296178,0,0,0,0,0,0,0,0,7.030735,0,52.4,55.58,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,1634,451787.81,132502.14,651416.88,186256.55,9024.6836 -10897,13439,24191,-9,24190,24189,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.0732,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1634,451787.81,132502.14,651416.88,186256.55,9024.6836 -10898,13440,24192,24193,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.5643358,8.5303326,45,3,11.324876,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5059175,57.03,34.83,57.23,27.62,6.666666666666667,1,1,0,0,9,11,5,1,141.5,1431148,859438.69,355579.25,0,4125.7905 -10898,13440,24193,24192,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.989162,7.9510822,10,-3,18.912849,0,2,1,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.3225412,57.23,27.62,57.03,34.83,5,1,1,0,0,8,11,5,1,141.5,1431148,859438.69,355579.25,0,4125.7905 -10899,13441,24194,-9,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,0,0,0,0,-955.49066,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,47.887108,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,1,0,8,1,1,105,419640,0,0,0,832.18066 -10899,13442,24195,-9,24194,-9,1,0,29,0,1,0,2,2,-9,0,1,0,0,0,0,0,-1059.3655,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.41,24.28,-9,-9,0,2,3,1,1,0,8,1,1,1113.5,3916.0391,0,0,0,470.95459 -10899,13442,24196,-9,24195,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.8782,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,1,1113.5,3916.0391,0,0,0,470.95459 -10900,13443,24197,24198,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.4457121,9.807416,7.0098953,27,9,-85.073906,0,2,2,2019,6,0,49,52,1,0,0,35.687271,35.687271,0,0,0,0,0,0,0,0,4.4926,7.3894196,54.37,54.8,55.68,54.24,8.333333333333334,1,1,0,0,10,10,5,1,754,5623947,3352344.5,712060.25,0,6024.4961 -10900,13443,24198,24197,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,0,0,0,29,0,110.67039,0,1,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.68,54.24,54.37,54.8,8.333333333333334,1,1,0,0,0,10,5,1,754,5623947,3352344.5,712060.25,0,6024.4961 -10900,13444,24199,-9,24198,24197,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-1000.6945,-9,1,1,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,373,354293.25,0,284189.34,0,0 -10901,13445,24200,24201,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.5967174,7.7237415,0,29,0,174.27881,0,2,1,2019,9,0,23,20,1,0,0,13.170918,13.170918,0,0,0,0,0,0,0,0,7.4244409,0,59.31,49.81,53,54,6.666666666666667,1,1,0,0,4,8,5,1,341.5,797548.56,509855.69,700940.81,381635.19,8366.5811 -10901,13445,24201,24200,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.3930912,9.8659239,7.8030977,6,0,32.729603,0,-9,-9,2019,9,0,37,40,1,1,0,52.91534,52.91534,0,0,0,0,0,0,0,0,0,8.3082476,53,54,59.31,49.81,8,1,1,0,0,1,8,5,1,341.5,797548.56,509855.69,700940.81,381635.19,8366.5811 -10902,13446,24202,24203,-9,-9,1,1,18,1,1,0,2,2,-9,0,3,0,0,0,1,0,-107.61663,-9,-9,-9,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,26.84,51.1,46,58,3.333333333333333,1,1,1,0,0,1,2,0,644.66669,-100208.73,0,0,0,2149.2815 -10902,13446,24203,24202,-9,-9,1,0,18,1,1,0,2,2,-9,0,4,6.5951681,6.6901388,0,1,0,62.12616,0,-9,-9,2019,12,0,24,0,1,2,0,4.7284827,4.7284827,0,0,0,0,0,1,1,0,0,0,46,58,26.84,51.1,7,1,1,0,0,0,1,2,0,644.66669,-100208.73,0,0,0,2149.2815 -10902,13446,24204,-9,24203,24202,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1136.0189,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,2,0,644.66669,-100208.73,0,0,0,2149.2815 -10903,13447,24205,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-935.65643,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.54,34.56,-9,-9,10,1,1,0,0,0,4,1,0,1652,-37283.152,0,0,0,1730.1245 -10904,13448,24206,24207,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.6573982,8.4148235,0,3,0,46.660168,0,-9,2,2019,6,0,44,43,1,0,0,10.841125,10.841125,0,0,0,0,0,0,0,0,1.7211527,0,54.96,53.17,51.24,58.84,8.333333333333334,1,1,0,0,8,4,5,1,358,59046.75,-2.7370605,119354.13,-385.375,3637.1553 -10904,13448,24207,24206,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4768715,8.4999485,0,3,0,181.77467,0,1,1,2019,9,0,33,32,1,0,0,17.247499,17.247499,0,0,0,0,0,0,0,0,7.3988638,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,0,8,4,5,1,358,59046.75,-2.7370605,119354.13,-385.375,3637.1553 -10905,13449,24208,-9,-9,-9,1,0,39,1,3,0,2,2,-9,0,4,7.0467453,7.0091143,0,0,0,-1029.5776,0,2,2,2019,8,0,20,0,1,0,0,5.2452717,5.2452717,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,2,0,748.33331,-12978.776,87844.086,0,0,1259.4634 -10905,13449,24209,-9,24208,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.09503,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,748.33331,-12978.776,87844.086,0,0,1259.4634 -10905,13449,24210,-9,24208,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.307,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,748.33331,-12978.776,87844.086,0,0,1259.4634 -10906,13450,24211,-9,24212,-9,1,1,50,0,0,0,2,2,-9,0,4,8.1217842,7.9280667,0,0,0,-1005.9546,0,3,3,2019,9,0,37,45,1,1,0,11.233989,11.233989,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,0,0,1,8,4,0,407,-10105.563,139971.64,0,0,1440.146 -10906,13451,24212,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-884.65228,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,.57994264,3.4621613,17.991638,0,1,1,0,0,0,58.64,20.39,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,539,307400.88,0,0,0,1439.9501 -10907,13452,24213,24214,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.5137186,8.3685188,0,20,1,23.394049,0,2,2,2019,11,1,45,43,1,1,0,12.31283,12.31283,0,0,0,0,0,0,0,0,0,0,22.89,58.38,47.55,49.86,5,1,1,0,0,9,9,4,0,420.33334,154609.05,91910.594,287220.03,67598.469,1802.1669 -10907,13452,24214,24213,-9,-9,1,0,39,1,1,0,3,3,-9,0,3,5.3459125,5.3983927,0,20,-1,-86.022926,0,2,2,2019,11,0,27,30,1,0,0,.78107691,.78107691,0,0,0,0,0,0,0,0,0,0,47.55,49.86,22.89,58.38,6.666666666666667,1,1,0,1,9,9,4,0,420.33334,154609.05,91910.594,287220.03,67598.469,1802.1669 -10907,13452,24215,-9,24214,24213,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-928.0177,-9,3,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,0,420.33334,154609.05,91910.594,287220.03,67598.469,1802.1669 -10908,13453,24216,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1020.1542,0,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.51,31.88,-9,-9,0,1,1,0,1,0,1,1,0,4330,385274.03,-11027.342,0,0,919.61536 -10909,13454,24217,24218,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6440678,8.5547991,0,8,7,-98.165863,0,3,1,2019,16,6,37,37,1,6,0,15.931354,15.931354,0,0,0,0,0,1,1,0,0,0,45.91,59.89,53.42,25.72,8.333333333333334,1,1,0,0,9,11,5,1,435,421537.41,52910.914,190334.73,112436.01,3020.1563 -10909,13454,24218,24217,-9,-9,1,1,46,0,0,0,2,2,-9,0,1,8.0719223,8.2355623,0,8,-7,2.8180854,0,2,1,2019,16,4,40,40,1,4,0,11.907201,11.907201,0,0,0,0,0,1,1,0,0,0,53.42,25.72,45.91,59.89,1.666666666666667,1,1,0,1,8,11,5,1,435,421537.41,52910.914,190334.73,112436.01,3020.1563 -10910,13455,24219,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.8487415,8.8033781,0,0,0,-1007.6127,0,2,2,2019,8,1,32,32,1,1,0,23.737806,23.737806,0,0,0,0,0,0,0,0,3.2044559,0,54.61,43.01,-9,-9,5,1,1,0,0,11,11,5,1,860,1539818.4,1525166.5,212438.2,122238.11,1902.5002 -10911,13456,24220,-9,24221,24222,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.6671,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 -10911,13456,24221,24222,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,7.7148175,7.9176407,0,14,-4,-65.954704,0,2,2,2019,7,0,23,23,1,0,0,11.389689,11.389689,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.13,49.27,8.333333333333334,1,1,0,0,6,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 -10911,13456,24222,24221,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.1586094,8.1615067,0,14,4,69.454643,0,2,3,2019,7,0,25,25,1,0,0,15.367007,15.367007,0,0,0,0,0,1,1,0,0,0,60.13,49.27,57.06,57.76,8.333333333333334,1,1,0,0,5,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 -10911,13456,24223,-9,24221,24222,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.99396,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,677.75,385435.34,468391.63,312096.91,183213.14,3238.229 -10912,13457,24224,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,5,0,7.1377339,6.8239422,0,0,-1038.0355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7260151,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,459,214511.97,125823,0,0,594.8241 -10913,13458,24225,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.3368988,8.5417919,0,0,0,-837.04437,0,2,2,2019,7,0,52,57,1,0,0,9.6771049,9.6771049,0,0,0,0,0,0,0,0,0,0,49.11,52.88,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,424,198704.64,4329.7075,147575.11,142103.13,1450.1191 -10914,13459,24226,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,7.0204043,6.6917887,0,0,-977.82721,1,1,1,2019,13,1,0,35,2,1,0,0,0,0,0,0,0,0,0,0,0,6.0195422,0,28.74,51.67,-9,-9,3.333333333333333,2,3,0,0,3,8,2,0,3036,-44953.008,5045.4487,0,0,458.28763 -10915,13460,24227,24228,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,7,6,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,37.25,33.95,33.41,6.666666666666667,1,1,0,0,3,13,1,1,396.5,6128.125,88371.352,50125.191,0,1502.9565 -10915,13460,24228,24227,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,7,-6,0,0,3,3,2019,25,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.95,33.41,51.64,37.25,5,1,1,0,0,0,13,1,1,396.5,6128.125,88371.352,50125.191,0,1502.9565 -10915,13461,24229,-9,24228,24227,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,0,0,-908.57904,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,13,1,1,556,0,0,0,0,648.78741 -10916,13462,24230,24232,-9,-9,1,1,55,0,1,0,1,1,-9,1,1,0,0,0,17,11,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.99,19.48,50,55,5,1,1,0,0,0,10,1,0,350.33334,973731.56,780584.63,156678.3,93960.656,1709.9264 -10916,13462,24231,-9,24232,24230,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-824.65839,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,10,1,0,350.33334,973731.56,780584.63,156678.3,93960.656,1709.9264 -10916,13462,24232,24230,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,1,-11,0,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,34.99,19.48,8,1,1,0,0,0,10,1,0,350.33334,973731.56,780584.63,156678.3,93960.656,1709.9264 -10916,13463,24233,-9,24232,24230,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1046.1648,1,2,1,2019,26,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,10.39,49.33,-9,-9,5,1,1,0,0,0,10,1,0,274,119305.88,0,0,0,0 -10917,13464,24234,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,4.4013243,4.5803752,0,0,-955.07092,0,2,2,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,2,0,0,0,5.2301579,4.6618834,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,484,1996167.1,855821.75,679153.44,0,47.864719 -10918,13465,24235,-9,24238,24237,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-845.9057,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 -10918,13465,24236,-9,24238,24237,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.54,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 -10918,13465,24237,24238,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.4337234,9.2927599,8.6713743,16,2,18.04847,0,2,2,2019,11,0,42,42,1,0,0,16.535933,16.535933,0,0,0,0,0,1,1,0,8.6270924,0,40.07,54.57,33.02,57.64,6.666666666666667,1,1,0,0,12,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 -10918,13465,24238,24237,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.0529127,8.0656185,5.6828971,16,-2,50.145607,0,2,2,2019,19,8,38,25,1,8,0,7.9221797,7.9221797,0,0,0,0,0,1,1,0,6.0347133,0,33.02,57.64,40.07,54.57,6.666666666666667,1,1,0,0,12,10,5,1,518.75,737294.31,232677.38,399862.06,126062.97,7226.3691 -10919,13466,24239,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0042639,7.5402608,0,0,0,-952.4986,0,3,2,2019,6,0,35,33,1,0,0,8.1926165,8.1926165,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,769,132454.86,0,0,0,1299.3555 -10920,13467,24240,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.0783434,8.0684366,0,0,0,-1032.8049,0,3,2,2019,1,0,35,35,1,0,0,11.438504,11.438504,0,0,0,0,7,0,0,0,3.5471911,0,47.62,56.48,-9,-9,3.333333333333333,1,1,0,0,6,11,4,1,709,20071.332,191258,-42309.93,-10468.767,389.58472 -10921,13468,24241,24242,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,55,4,-84.218941,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,0,0,55,45,53.02,15.44,8,1,1,0,0,0,2,2,1,927,304795.91,54848.719,409018.31,0,2329.4404 -10921,13468,24242,24241,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.1468425,6.0696731,6,-4,136.38867,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,5.3351932,6.3010554,53.02,15.44,55,45,10,1,1,0,0,0,2,2,1,927,304795.91,54848.719,409018.31,0,2329.4404 -10922,13469,24243,24244,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,2,1,-2.7204573,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,3.3033872,10.688297,22.471737,0,1,1,0,3.2681606,0,57.97,37.36,63.41,29.17,8.333333333333334,1,1,0,0,0,2,2,1,334,234264.33,232871.78,126716.24,0,1343.323 -10922,13469,24244,24243,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.1685772,6.2231598,2,-1,-30.495655,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0480113,6.2785654,63.41,29.17,57.97,37.36,8.333333333333334,1,1,0,0,3,2,2,1,334,234264.33,232871.78,126716.24,0,1343.323 -10923,13470,24245,-9,24247,24248,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.78949,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 -10923,13470,24246,-9,24247,24248,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1175.0498,-9,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 -10923,13470,24247,24248,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.8534374,7.7126493,0,22,-7,37.037491,0,2,2,2019,7,0,20,15,1,0,0,14.989323,14.989323,0,0,0,0,2,0,0,0,.40573186,0,57.06,57.76,42.61,49.31,8.333333333333334,1,1,0,0,5,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 -10923,13470,24248,24247,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.5450449,10.074114,0,23,7,-19.399586,0,2,2,2019,11,0,50,37,1,0,0,29.50568,29.50568,0,0,0,0,2,0,0,0,2.1850932,0,42.61,49.31,57.06,57.76,6.666666666666667,1,1,0,0,8,10,5,1,892.5,575225.13,166844.8,357803.5,218554.41,5783.8477 -10923,13471,24249,-9,24247,24248,1,0,19,0,1,0,2,2,1,0,5,7.877912,7.7110009,0,0,0,-1022.3641,-9,2,1,2019,9,0,57,0,1,0,1,4.489706,4.489706,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,439,51700.91,0,0,0,1531.3502 -10924,13472,24250,24251,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.0698271,8.0200796,0,1,1,2.8498366,0,2,2,2019,7,0,41,45,1,0,0,8.1114683,8.1114683,0,0,0,0,0,0,0,0,0,0,55.19,54.26,42.01,57.81,6.666666666666667,1,1,0,0,2,7,4,0,111,279864.06,13456.018,280578.78,133887.72,3510.2866 -10924,13472,24251,24250,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.7041655,7.6730657,0,1,-1,-79.356979,-9,-9,-9,2019,13,4,35,0,1,4,0,7.0018959,7.0018959,0,0,0,0,0,0,0,0,7.3745742,0,42.01,57.81,55.19,54.26,8.333333333333334,1,1,0,0,0,7,4,0,111,279864.06,13456.018,280578.78,133887.72,3510.2866 -10925,13473,24252,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.4532342,7.7322717,0,0,-1067.1373,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1079726,7.7172899,56.92,44.01,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,431,377504.25,9102.9697,249678.22,0,1361.6702 -10926,13474,24253,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.1412611,8.3144999,0,0,0,-970.65607,-9,-9,-9,2019,30,12,65,0,1,12,0,7.2062092,7.2062092,0,0,0,0,0,0,0,0,1.9189289,0,15.08,66.28,-9,-9,1.666666666666667,1,1,0,0,7,4,4,0,857,-36759.844,36419.336,0,0,1320.4668 -10927,13475,24254,24255,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6819644,7.6936879,32,-2,-57.337429,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.659996,55.54,46.02,57.16,56.15,8.333333333333334,1,1,0,0,0,2,4,1,741,1826365.8,911590.88,314894.31,0,3322.7085 -10927,13475,24255,24254,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.3591995,8.3899107,32,2,96.922844,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5046568,8.084445,57.16,56.15,55.54,46.02,8.333333333333334,1,1,0,0,1,2,4,1,741,1826365.8,911590.88,314894.31,0,3322.7085 -10928,13476,24256,-9,24257,-9,1,0,26,0,0,0,2,2,-9,0,3,7.8491435,7.881155,0,0,0,-921.68719,0,3,3,2019,6,0,39,32,1,0,1,10.326218,10.326218,0,0,0,0,27,1,1,0,0,0,64.64,48.76,-9,-9,8.333333333333334,2,3,0,0,6,4,3,1,777,78980.758,56481.398,0,0,1099.0826 -10928,13477,24257,-9,24258,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-888.43848,-9,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48,49,-9,-9,7,2,3,0,0,0,4,1,1,179,-198462.92,0,0,0,188.60104 -10928,13478,24258,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1054.3077,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,149.22945,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,0,4,1,1,595,301882.72,0,0,0,828.11591 -10929,13479,24259,24260,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.577528,8.0151949,0,7,2,-70.293991,0,-9,-9,2019,11,0,40,40,1,0,0,8.0276756,8.0276756,0,0,0,0,0,0,0,0,2.6222448,0,48.53,58.91,63.06,53.47,8.333333333333334,1,1,0,0,4,10,4,0,1606.5,414442.09,10485.041,184304.81,0,2527.4668 -10929,13479,24260,24259,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.8256121,8.1649275,0,7,-2,-35.787937,0,-9,-9,2019,7,0,42,40,1,0,0,8.54951,8.54951,0,0,0,0,0,0,0,0,1.2710456,0,63.06,53.47,48.53,58.91,6.666666666666667,1,1,0,0,7,10,4,0,1606.5,414442.09,10485.041,184304.81,0,2527.4668 -10930,13480,24261,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,6.8947206,6.5248203,0,0,-1102.6914,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,5.1198006,0,42,1,1,0,2.6428025,6.6923084,32.36,28.82,-9,-9,5,3,4,0,0,0,8,2,1,529,-97247.844,137887.16,0,0,1381.5065 -10930,13481,24262,-9,24261,-9,1,1,38,0,0,0,2,2,-9,0,3,8.2326756,7.9872298,0,0,0,-1012.0942,0,3,3,2019,11,0,38,46,1,2,0,8.8305235,8.8305235,0,0,0,0,27,1,1,0,0,0,47,52,-9,-9,8.333333333333334,3,4,0,0,8,8,4,1,342,-275814.69,0,0,0,2132.9622 -10931,13482,24263,24264,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.6305752,6.7185116,45,-6,43.06929,0,3,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,1.6874665,6.7993283,46.67,34.44,63.81,32.9,5,1,1,0,0,6,7,3,1,533,887793.13,216072.36,410262.69,0,1928.3876 -10931,13482,24264,24263,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.087091,7.0674424,45,6,69.416306,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3799403,6.9567037,63.81,32.9,46.67,34.44,6.666666666666667,1,1,0,0,0,7,3,1,533,887793.13,216072.36,410262.69,0,1928.3876 -10932,13483,24265,-9,24268,24267,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-865.62787,-9,1,1,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,.36133918,0,47.04,57.99,-9,-9,5,2,3,0,0,0,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 -10932,13483,24266,-9,24268,24267,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-865.58478,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 -10932,13483,24267,24268,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,9.7718477,9.4946547,0,5,1,-13.647984,0,3,3,2019,20,8,60,60,1,8,0,26.327635,26.327635,0,0,0,0,0,0,0,0,4.7281785,0,39.92,46.67,38.69,61.75,3.333333333333333,2,3,0,0,9,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 -10932,13483,24268,24267,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.0877647,8.3983746,0,5,-1,-139.16425,0,-9,-9,2019,13,3,40,31,1,3,0,9.6562815,9.6562815,0,0,0,0,0,0,0,0,3.482321,0,38.69,61.75,39.92,46.67,5,2,3,0,0,8,2,5,1,489.75,2795515.8,2303075,466747.94,0,6676.3623 -10933,13484,24269,-9,24272,24270,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.9462,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 -10933,13484,24270,24272,-9,-9,1,1,61,0,2,0,1,1,-9,0,4,6.8384299,6.8508158,5.8311248,13,10,68.146408,0,3,3,2019,11,2,3,0,1,2,0,33.458988,33.458988,0,0,0,0,0,1,1,0,4.1403141,5.7786093,36.51,61.56,54.69,57.47,6.666666666666667,1,1,0,0,3,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 -10933,13484,24271,-9,24272,24270,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.6098,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 -10933,13484,24272,24270,-9,-9,1,0,51,0,2,0,3,3,-9,0,5,8.818058,8.2680922,0,13,-10,132.15343,0,2,2,2019,10,1,28,28,1,1,0,17.724722,17.724722,0,0,0,0,0,1,1,0,4.9626946,0,54.69,57.47,36.51,61.56,6.666666666666667,1,1,0,0,9,7,4,1,491.25,838838,721330.5,192008.69,0,2736.21 -10934,13485,24273,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-957.91809,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,28.73,26.44,-9,-9,3.333333333333333,1,1,0,1,0,6,2,0,706,171280.38,0,0,0,823.18048 -10935,13486,24274,24275,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.5115423,8.714572,0,35,4,121.67441,0,3,3,2019,3,0,40,42,1,0,0,17.40621,17.40621,0,0,0,0,0,1,1,0,0,0,41.17,59.31,55.91,36.73,8.333333333333334,1,1,0,0,9,5,5,1,303,817609.44,139853.33,519900.13,0,3467.0771 -10935,13486,24275,24274,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.1628094,8.648592,0,35,-4,-19.255619,0,2,2,2019,7,1,37,37,1,1,0,9.7255173,9.7255173,0,0,0,0,0,1,1,0,.73418373,0,55.91,36.73,41.17,59.31,8.333333333333334,1,1,0,0,9,5,5,1,303,817609.44,139853.33,519900.13,0,3467.0771 -10935,13487,24276,-9,24275,24274,1,0,21,0,0,0,2,2,-9,0,3,8.1756992,7.8687248,0,0,0,-1000.0519,0,1,2,2019,17,5,74,39,1,5,1,4.9217243,4.9217243,0,0,0,0,0,1,1,0,2.6322017,0,36.89,57.17,-9,-9,6.666666666666667,1,1,0,0,6,5,4,1,944,135523.38,104031.85,0,0,1500.9797 -10936,13488,24277,24278,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.764461,6.852735,32,2,-46.505741,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0864949,6.721261,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,6,9,3,1,466,1263682,783170.38,306050.66,0,1510.3716 -10936,13488,24278,24277,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.8204079,7.7447271,8,-2,-40.307545,0,-9,-9,2019,7,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7581444,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,4,9,3,1,466,1263682,783170.38,306050.66,0,1510.3716 -10936,13489,24279,-9,24277,24278,1,1,25,0,0,0,1,1,-9,0,3,7.3784666,7.3229036,0,0,0,-940.81085,0,2,2,2019,5,0,21,20,1,0,0,6.0643458,6.0643458,0,0,0,0,0,0,0,0,0,0,33.96,58.94,-9,-9,5,1,1,0,0,2,9,3,1,630,-321953.41,0,0,0,641.78888 -10937,13490,24280,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1117.381,0,-9,2,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.05,42.96,-9,-9,8.333333333333334,1,1,0,1,2,5,1,0,2535,-232953.3,0,0,0,638.53082 -10938,13491,24281,24282,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,43,0,-7.8338094,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,7,1,1,0,2.3987625,0,41.06,62.04,28.63,60,8.333333333333334,1,1,0,0,4,2,2,1,323,454814.88,248665.59,181067.19,0,1577.4866 -10938,13491,24282,24281,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2487311,7.3016286,44,9,-13.454591,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,0,0,14.5,1,1,0,2.4671125,7.4748535,28.63,60,41.06,62.04,3.333333333333333,1,1,0,0,8,2,2,1,323,454814.88,248665.59,181067.19,0,1577.4866 -10938,13492,24283,-9,24281,24282,1,1,33,0,0,0,2,2,-9,0,4,7.9649711,7.7588754,0,0,0,-996.51294,-9,2,2,2019,8,0,55,0,1,0,0,6.3611217,6.3611217,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,1,2,4,1,793,-125620.48,123712.44,0,0,1208.8088 -10939,13493,24284,24285,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5940495,8.2542963,0,28,0,282.98621,0,-9,-9,2019,8,0,50,60,1,0,0,13.239111,13.239111,0,0,0,0,14.5,1,1,0,3.3257515,0,52.82,53.97,63.38,53.47,8.333333333333334,3,4,0,0,10,8,5,0,447,2029225.8,1644784.8,379960.94,55843.84,3709.749 -10939,13493,24285,24284,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.0613661,8.3525829,0,28,0,3.4160464,0,-9,-9,2019,6,0,50,40,1,0,0,10.84738,10.84738,0,0,0,0,2,1,1,0,0,0,63.38,53.47,52.82,53.97,8.333333333333334,3,4,0,0,5,8,5,0,447,2029225.8,1644784.8,379960.94,55843.84,3709.749 -10940,13494,24286,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.303175,7.0712953,6.9507408,0,0,-958.50232,0,3,3,2019,8,2,20,20,1,2,0,3.6361387,3.6361387,0,0,0,0,0,1,1,0,6.5128379,6.800673,62.26,37.6,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,319,296700.69,-37597.043,0,0,1228.184 -10941,13495,24287,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.055501,6.0827842,0,0,-1006.3254,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.7572823,6.1946964,49.69,52.99,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,472,102182.77,110284.55,0,0,1691.2808 -10942,13496,24288,24289,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,50,-3,43.494343,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4500264,0,62.39,56.71,54,46,10,1,1,0,0,0,4,3,1,478.5,1358118,333050.13,234263.03,0,2909.2256 -10942,13496,24289,24288,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.3061638,8.4854765,50,3,39.403507,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5075345,8.3593798,54,46,62.39,56.71,7,1,1,0,0,0,4,3,1,478.5,1358118,333050.13,234263.03,0,2909.2256 -10943,13497,24290,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1095.948,0,3,2,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.44,40.72,-9,-9,3.333333333333333,2,3,0,1,2,5,2,1,2294,132874.55,0,156041.03,0,813.47809 -10943,13497,24291,-9,24290,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-929.26794,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,2,1,2294,132874.55,0,156041.03,0,813.47809 -10943,13498,24292,-9,24290,-9,1,0,20,0,1,1,2,0,0,0,3,0,5.669023,5.7861848,0,0,-910.48663,-9,2,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,5.2217946,0,36.48,58.9,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,256,-5585.0479,0,0,0,633.62408 -10944,13499,24293,24294,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,0,0,46,-1,-108.33333,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,5,4,0,943,1393814.5,917283.5,305000.72,0,3370.676 -10944,13499,24294,24293,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,8.3500071,8.4493418,5.6854725,46,1,21.219152,0,3,2,2019,11,0,60,45,1,0,0,7.4925957,7.4925957,0,0,0,0,0,1,1,0,0,5.9706392,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,1,10,5,4,0,943,1393814.5,917283.5,305000.72,0,3370.676 -10945,13500,24295,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.9093399,8.0126991,0,0,0,-975.19934,-9,2,-9,2019,31,12,45,0,1,12,1,6.688025,6.688025,0,0,0,0,0,1,1,0,3.0021026,0,15.08,66.28,-9,-9,1.666666666666667,1,1,0,0,4,4,4,0,234,0,0,0,0,873.61371 -10946,13501,24296,24297,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,0,0,0,10,-7,49.201603,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,5.6073084,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,4,5,1,827.5,986906.38,909071.75,208250.7,144258.84,23947.441 -10946,13501,24297,24296,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,9.982482,9.9380207,26,7,-13.69888,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.6964989,8.7605476,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,827.5,986906.38,909071.75,208250.7,144258.84,23947.441 -10947,13502,24298,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,3.519901,3.6853385,0,0,0,-1016.4653,0,3,2,2019,10,0,6,35,1,1,0,.9275772,.9275772,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,8,3,4,0,0,11,8,2,0,334,-7083.1836,0,0,0,-130.98297 -10948,13503,24299,-9,24301,24303,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.35803,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 -10948,13503,24300,-9,24301,24303,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.18689,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 -10948,13503,24301,24303,-9,-9,1,0,31,0,3,0,2,2,-9,0,3,7.8024426,7.762188,3.9066834,10,-8,-54.493271,0,2,3,2019,15,3,28,23,1,3,0,9.2656393,9.2656393,0,0,0,0,0,1,1,0,3.5958724,0,29.12,59.76,41.47,56.81,6.666666666666667,1,1,0,0,6,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 -10948,13503,24302,-9,24301,24303,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.28271,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 -10948,13503,24303,24301,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.112546,8.198884,0,10,8,-53.095745,0,-9,-9,2019,11,0,38,38,1,0,0,11.327401,11.327401,0,0,0,0,0,1,1,0,1.6837132,0,41.47,56.81,29.12,59.76,8.333333333333334,1,1,0,0,13,10,3,0,476.60001,294053.75,-16833.637,250234.47,81318.617,3010.0981 -10949,13504,24304,24305,-9,-9,1,0,30,0,2,0,1,1,-9,0,5,6.4549575,6.8054328,0,7,0,-37.296951,0,1,2,2019,11,0,12,16,1,0,0,5.985323,5.985323,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,9,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 -10949,13504,24305,24304,-9,-9,1,1,30,0,2,0,2,2,-9,0,5,8.5225649,8.8501091,0,7,0,31.156233,0,2,1,2019,5,0,58,60,1,0,0,8.1521959,8.1521959,0,0,0,0,0,0,0,0,1.3859407,0,57.06,57.76,54.1,59.11,10,1,1,0,0,8,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 -10949,13504,24306,-9,24304,24305,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.6489,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 -10949,13504,24307,-9,24304,24305,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.77258,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,514,318851.78,194781.81,256403.69,117144.16,2252.3892 -10950,13505,24308,-9,24310,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.11963,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,2,0,683.25,0,0,0,0,2241.5081 -10950,13505,24309,-9,24310,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.93109,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,2,0,683.25,0,0,0,0,2241.5081 -10950,13505,24310,-9,-9,-9,1,0,29,0,3,0,2,2,-9,0,4,6.8274975,7.1904716,5.4768324,0,0,-1031.4189,0,-9,-9,2019,13,1,16,16,1,1,0,6.2918954,6.2918954,0,0,0,0,14.5,1,1,0,5.3261847,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,683.25,0,0,0,0,2241.5081 -10950,13505,24311,-9,24310,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.084,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,683.25,0,0,0,0,2241.5081 -10951,13506,24312,24313,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,6.6709728,7.2826948,58,7,-100.20639,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9872885,6.7700744,57,50,63.17,32.94,8.333333333333334,1,1,0,0,0,10,2,1,1483.5,608460.13,217558.81,289222.44,0,2303.8037 -10951,13506,24313,24312,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.9890733,5.8456726,58,-7,-111.43317,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6864333,63.17,32.94,57,50,3.333333333333333,1,1,0,0,0,10,2,1,1483.5,608460.13,217558.81,289222.44,0,2303.8037 -10952,13507,24314,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,6.7905049,6.7580652,0,0,0,-958.76135,0,2,3,2019,11,0,16,20,1,0,0,7.6066413,7.6066413,0,0,0,0,0,1,1,0,0,0,42.35,36.31,-9,-9,10,1,1,0,0,5,1,2,0,398,35521.734,0,0,0,871.78778 -10953,13508,24315,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,5.8527884,5.6162138,0,0,0,-1001.3536,0,3,3,2019,12,0,4,8,1,0,0,9.4917908,9.4917908,0,0,0,0,0,1,1,0,9.1047525,0,45.63,58.55,-9,-9,10,1,1,0,0,11,12,2,1,729,-454317.03,0,0,0,5538.4839 -10954,13509,24316,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,6.3498054,6.0128627,0,0,0,-1036.1462,0,-9,-9,2019,14,2,25,32,1,2,0,2.0506608,2.0506608,0,0,0,0,0,1,1,0,0,0,40.52,34.42,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,659,186213.17,95110.531,-9924.0488,0,1706.1395 -10955,13510,24317,24318,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0646348,7.253973,0,4,-3,-53.06934,0,3,3,2019,8,0,35,40,1,0,0,4.9469891,4.9469891,0,0,0,0,0,0,0,0,3.7322905,0,54.2,57.49,57.84,34,8.333333333333334,1,1,0,0,8,5,4,1,394,-20973.328,22212.545,184157.25,19838.203,2249.4636 -10955,13510,24318,24317,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1220398,8.0264511,0,4,3,31.222088,0,-9,-9,2019,11,0,50,50,1,0,0,6.3577213,6.3577213,0,0,0,0,0,0,0,0,0,0,57.84,34,54.2,57.49,8.333333333333334,1,1,0,0,8,5,4,1,394,-20973.328,22212.545,184157.25,19838.203,2249.4636 -10956,13511,24319,-9,24321,24320,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1054.9126,-9,2,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.15,57.8,-9,-9,8.333333333333334,1,1,0,1,1,10,4,1,603.66669,214019.16,42788.301,172278.69,7425.1563,2525.0913 -10956,13511,24320,24321,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.96527,8.1560326,0,36,7,-76.023376,0,1,1,2019,11,0,45,45,1,0,0,7.5455837,7.5455837,0,0,0,0,2,1,1,0,0,0,54.2,57.49,30.64,62.88,8.333333333333334,1,1,0,0,12,10,4,1,603.66669,214019.16,42788.301,172278.69,7425.1563,2525.0913 -10956,13511,24321,24320,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0818787,7.4929881,0,36,-7,-56.072102,0,2,2,2019,16,5,33,37,1,5,0,9.8513393,9.8513393,0,0,0,0,7,1,1,0,0,0,30.64,62.88,54.2,57.49,1.666666666666667,1,1,0,1,12,10,4,1,603.66669,214019.16,42788.301,172278.69,7425.1563,2525.0913 -10957,13512,24322,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3131313,7.0031571,0,0,-1070.2853,0,-9,-9,2019,8,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.1747022,7.0889897,56.13,43.36,-9,-9,10,1,1,0,0,0,2,3,1,535,473149.5,317971.94,0,0,1280.5077 -10958,13513,24323,24324,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.153141,8.4849548,0,31,1,-7.7723055,0,2,2,2019,11,0,24,26,1,0,0,15.617489,15.617489,0,0,0,0,0,0,0,0,3.7067463,0,51.83,57.2,24.92,57.58,6.666666666666667,1,1,0,0,11,6,5,1,755,750387.88,323880.06,414645.63,0,3511.0747 -10958,13513,24324,24323,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,8.0632744,8.3658524,31,-1,117.81413,0,2,2,2019,24,11,0,0,4,11,0,0,0,0,0,0,5.8444061,0,0,0,0,4.0172701,7.9936614,24.92,57.58,51.83,57.2,3.333333333333333,1,1,0,0,10,6,5,1,755,750387.88,323880.06,414645.63,0,3511.0747 -10958,13514,24325,-9,24323,24324,1,1,23,0,0,0,1,1,-9,0,3,8.1825857,7.9864311,0,0,0,-1061.387,0,1,2,2019,12,2,39,39,1,2,1,10.962344,10.962344,0,0,0,0,0,0,0,0,5.1818624,0,42.29,58.81,-9,-9,6.666666666666667,1,1,0,0,2,6,4,1,277,-151020.53,-19769.432,0,0,1965.7384 -10958,13515,24326,-9,24323,24324,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-996.36896,-9,1,2,2019,21,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,5.4182949,0,30.47,58.94,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,792,-128520.98,0,0,0,269.22446 -10959,13516,24327,24328,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.331264,5.957231,5,2,11.188923,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.9569983,6.2574892,51,46,53,47,7,1,1,0,0,0,11,4,1,522,280493.31,239343.38,211217.59,0,4036.6748 -10959,13516,24328,24327,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,8.840951,8.6115799,0,5,-2,-12.333407,0,-9,-9,2019,10,0,52,56,1,1,0,13.745163,13.745163,0,0,0,0,0,1,1,0,2.8925145,0,53,47,51,46,7,1,1,0,0,8,11,4,1,522,280493.31,239343.38,211217.59,0,4036.6748 -10960,13517,24329,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.5475793,7.1707401,0,0,-950.11469,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5523994,6.6796536,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1539,358686.59,9761.7061,14152.663,0,324.92532 -10961,13518,24330,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.4931011,8.4153929,0,0,0,-1048.828,0,3,3,2019,12,1,42,37,1,1,0,14.634616,14.634616,0,0,0,0,7,0,0,0,0,0,53.86,52.34,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,1679,-52479.688,73862.789,67348.453,0,1385.3953 -10962,13519,24331,24332,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.9503307,7.7013283,3,-3,-129.50369,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,8.017808,56.64,48.33,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,204.5,891956.25,573671.88,275010.63,0,2977.8154 -10962,13519,24332,24331,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.5275979,5.6581001,3,3,1.2531252,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.860992,6.1824789,60.12,54.8,56.64,48.33,10,1,1,0,0,6,4,3,1,204.5,891956.25,573671.88,275010.63,0,2977.8154 -10963,13520,24333,24334,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.1351881,9.2190599,0,1,12,108.13182,-9,2,3,2019,18,7,50,0,1,7,0,21.632515,21.632515,0,0,0,0,0,0,0,0,0,0,36.79,62.55,63.66,32.9,5,1,1,0,0,11,10,5,1,486,1266504.8,948282.31,387151.78,29263.199,5826.2114 -10963,13520,24334,24333,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.3177423,8.4776115,0,1,-12,52.169117,-9,2,2,2019,6,0,39,0,1,0,0,10.080782,10.080782,0,0,0,0,0,0,0,0,7.4103432,0,63.66,32.9,36.79,62.55,10,1,1,0,0,11,10,5,1,486,1266504.8,948282.31,387151.78,29263.199,5826.2114 -10964,13521,24335,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.6263881,7.6926956,0,1,-3,-24.193375,0,2,2,2019,7,0,39,39,1,0,0,7.3296533,7.3296533,0,0,0,0,0,0,0,0,0,0,50.8,33.25,35.29,40.33,8.333333333333334,1,1,0,0,7,4,4,1,417,-101826.34,-18725.104,0,0,916.3266 -10964,13522,24336,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.2018013,7.8664451,0,1,3,125.48244,-9,-9,-9,2019,15,5,39,0,1,5,0,11.631817,11.631817,0,0,0,0,0,0,0,0,0,0,35.29,40.33,50.8,33.25,8.333333333333334,1,1,0,0,7,4,4,1,949,-438417.53,-15696.241,0,0,890.18646 -10965,13523,24337,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1057.3522,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,13,1,1,182,55142.934,0,0,0,510.37988 -10965,13524,24338,-9,-9,24337,1,1,70,0,0,0,2,2,-9,0,3,0,7.6670957,7.8661203,0,0,-1004.5983,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.4605961,7.8409128,52.99,46.08,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,796,835550.25,285642.25,177724.69,0,2059.9253 -10966,13525,24339,24342,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4586763,8.1754217,0,13,-5,0,0,2,3,2019,8,0,42,52,1,0,0,14.585108,14.585108,0,0,0,0,7,1,1,0,3.892477,0,44.02,60.7,42.6,46.82,8.333333333333334,2,3,0,0,9,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 -10966,13525,24340,-9,24339,24342,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.91559,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 -10966,13525,24341,-9,24339,24342,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.91516,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 -10966,13525,24342,24339,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.7502251,8.3969173,0,13,5,0,0,2,2,2019,13,1,38,42,1,1,0,15.803113,15.803113,0,0,0,0,0,1,1,0,1.8455101,0,42.6,46.82,44.02,60.7,8.333333333333334,2,3,0,0,9,8,5,1,1646.75,751962.06,360240.38,352659.31,49584.789,3951.7776 -10967,13526,24343,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.5225,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.95,48.09,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,187,-427267.88,0,0,0,849.25134 -10968,13527,24344,24345,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,6.9744086,7.1373506,46,-1,2.1062174,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8855505,7.1915584,54.79,55.86,57.91,46.31,8.333333333333334,1,1,0,0,0,4,2,1,1092,540934.5,0,364244.88,0,6217.7109 -10968,13527,24345,24344,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,46,1,45.306202,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.9338617,0,57.91,46.31,54.79,55.86,8.333333333333334,1,1,0,0,0,4,2,1,1092,540934.5,0,364244.88,0,6217.7109 -10969,13528,24346,-9,-9,-9,1,0,43,0,0,0,3,3,-9,0,2,7.64783,7.6293302,0,0,0,-1068.0746,0,2,2,2019,35,12,30,26,1,12,0,8.8846111,8.8846111,0,0,0,0,0,1,1,0,0,0,11.77,65.48999999999999,-9,-9,1.666666666666667,1,1,0,1,7,12,3,1,230,568429.63,89368.742,237723.97,0,1190.1415 -10970,13529,24347,24348,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,7.9734712,7.7440906,23,-5,-30.55463,0,2,2,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,2,1,1,0,5.9568472,8.2192307,52.16,17.02,30.2,26.89,6.666666666666667,1,1,0,0,0,10,3,1,789.5,956055.75,884262.94,285717.59,0,4061.1523 -10970,13529,24348,24347,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.5125666,6.9891534,22,5,-117.51981,0,2,2,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,3.7045324,7.0249815,30.2,26.89,52.16,17.02,3.333333333333333,4,2,0,0,0,10,3,1,789.5,956055.75,884262.94,285717.59,0,4061.1523 -10971,13530,24349,24350,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.4253678,7.6163564,0,8,1,117.12241,0,3,2,2019,8,0,28,28,1,0,0,6.7953668,6.7953668,0,0,0,0,7,0,0,0,0,0,52,54.51,50,50,1.666666666666667,1,1,0,0,9,4,5,1,299,279083.56,54156.742,176792.88,80501.828,4699.3779 -10971,13530,24350,24349,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7477474,9.3408403,7.6843357,8,-1,-101.73337,0,-9,-9,2019,11,0,40,40,1,1,0,22.345652,22.345652,0,0,0,0,0,0,0,0,2.6484709,7.9371152,50,50,52,54.51,7,4,1,0,0,1,4,5,1,299,279083.56,54156.742,176792.88,80501.828,4699.3779 -10972,13531,24351,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,6.5154643,6.3124642,0,0,-1065.7445,0,2,-9,2019,10,0,0,0,4,1,0,0,0,1,0,18.057146,0,0,1,1,0,0,6.2465563,54,43,-9,-9,8,1,1,0,0,0,9,2,0,902,90857.82,-33274.855,108545.36,0,1479.5045 -10973,13532,24352,-9,24356,24355,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-995.93475,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 -10973,13532,24353,-9,24356,24355,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.06049,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 -10973,13532,24354,-9,24356,24355,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.19849,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 -10973,13532,24355,24356,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,9.0637493,9.0843935,0,8,0,-74.295624,0,3,3,2019,7,0,30,40,1,0,0,32.304787,32.304787,0,0,0,0,0,1,1,0,0,0,47.15,55.39,48.8,49.1,8.333333333333334,1,1,0,0,8,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 -10973,13532,24356,24355,-9,-9,1,0,36,1,3,0,2,2,-9,0,3,6.8291159,6.9924793,0,8,0,21.378792,0,-9,-9,2019,12,1,20,16,1,1,0,4.6413264,4.6413264,0,0,0,0,0,1,1,0,0,0,48.8,49.1,47.15,55.39,8.333333333333334,1,1,0,0,9,1,4,0,925,-12291.719,6891.0195,147297.64,77697.836,4420.0864 -10974,13533,24357,-9,24359,24360,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.96265,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 -10974,13533,24358,-9,24359,24360,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-884.90863,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 -10974,13533,24359,24360,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,8.5431128,8.7122688,0,6,-1,19.38184,0,-9,-9,2019,13,0,37,37,1,2,0,15.315788,15.315788,0,0,0,0,0,1,1,0,0,0,24.64,57.58,38.11,44.65,3.333333333333333,2,3,0,0,8,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 -10974,13533,24360,24359,-9,-9,1,1,38,1,2,0,1,1,-9,0,3,8.2171173,8.2630424,0,6,1,31.84123,0,3,3,2019,12,0,43,42,1,2,0,11.439413,11.439413,0,0,0,0,0,1,1,0,0,0,38.11,44.65,24.64,57.58,6.666666666666667,2,3,0,0,12,6,4,1,552.75,514935.88,510351.19,143210.55,135694.48,4219.417 -10975,13534,24361,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,5,0,0,0,0,0,-973.51349,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,2.7327869,0,0,1,1,0,0,0,43.63,35.45,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,159,-5598.5176,0,0,0,534.77454 -10976,13535,24362,24363,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,0,0,29,-8,12.920917,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3517628,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,449.5,1310534.4,769562.06,301008.38,0,9833.749 -10976,13535,24363,24362,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,8.2351151,9.5679541,8.8876972,10,8,35.707508,0,-9,-9,2019,6,0,8,8,1,0,0,65.101845,65.101845,0,0,0,0,0,1,1,0,8.8038902,8.7380867,57.16,56.15,62.39,56.71,10,1,1,0,0,12,10,5,1,449.5,1310534.4,769562.06,301008.38,0,9833.749 -10977,13536,24364,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.2202721,8.2253523,0,0,0,-1078.3313,0,3,3,2019,9,0,37,38,1,0,0,10.47048,10.47048,0,0,0,0,0,0,0,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,9,4,4,1,580,1058676,195655.42,651333.31,0,1492.6736 -10978,13537,24365,-9,24366,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.0825,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,1,262,100848.52,0,141061.06,17151.67,2013.4346 -10978,13537,24366,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1002.6943,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,3,4,1,0,0,8,1,1,262,100848.52,0,141061.06,17151.67,2013.4346 -10979,13538,24367,24369,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,7.9829535,8.0823298,0,1,2,-135.19427,-9,-9,-9,2019,28,12,30,0,1,12,0,11.69429,11.69429,0,0,0,0,0,1,1,0,1.928036,0,23.05,62.45,51.84,51.67,3.333333333333333,1,1,0,0,6,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 -10979,13538,24368,-9,24369,24367,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1070.1678,-9,2,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 -10979,13538,24369,24367,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,7.7665324,7.9477692,0,21,-2,50.022903,-9,2,1,2019,13,3,25,0,1,3,0,11.12145,11.12145,0,0,0,0,0,1,1,0,1.0861307,0,51.84,51.67,23.05,62.45,6.666666666666667,1,1,0,0,5,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 -10979,13538,24370,-9,24369,24367,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.5376,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,388.25,3101526,495349.16,1498968.3,0,2379.3232 -10980,13539,24371,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.4129677,8.4830351,0,0,0,-974.77307,0,3,-9,2019,19,7,37,37,1,7,0,16.830313,16.830313,0,0,0,0,0,0,0,0,.52429616,0,46.56,31.5,-9,-9,6.666666666666667,1,1,0,0,10,4,5,1,1154,500678.38,537877,289527.19,0,1432.7069 -10981,13540,24372,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1028.719,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,515,-230318.89,0,0,0,1097.1187 -10982,13541,24373,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,7.8321218,8.1160688,0,0,-984.69073,0,3,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,7.5882235,8.4593754,48.69,32.26,-9,-9,3.333333333333333,1,1,0,0,0,12,4,1,274,596592.88,8781.7217,286536.16,0,2651.2563 -10983,13542,24374,24375,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,7.875535,7.7612472,0,9,0,-3.7091782,0,3,3,2019,12,0,36,38,1,0,0,7.9130921,7.9130921,0,0,0,0,0,1,1,0,0,0,56.52,48.31,51.66,54.88,8.333333333333334,1,1,0,0,8,2,4,0,982.33331,26937.775,49748.012,204585.91,152365.42,3122.2222 -10983,13542,24375,24374,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.6043396,8.1981564,0,9,0,-94.830978,0,1,2,2019,12,0,92,37,1,0,0,5.9732943,5.9732943,0,0,0,0,0,1,1,0,0,0,51.66,54.88,56.52,48.31,5,1,1,0,1,8,2,4,0,982.33331,26937.775,49748.012,204585.91,152365.42,3122.2222 -10983,13542,24376,-9,24374,24375,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.82123,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,0,982.33331,26937.775,49748.012,204585.91,152365.42,3122.2222 -10983,13543,24377,-9,24374,24375,1,1,19,1,1,0,2,2,-9,0,4,0,0,0,0,0,-966.98364,0,2,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.85,54.62,-9,-9,8.333333333333334,1,1,1,0,1,2,1,0,896,0,0,0,0,-195.03592 -10984,13544,24378,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-965.76154,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,0,47.95,36.93,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,248,-178379.97,0,228954.56,0,875.14233 -10985,13545,24379,24380,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,0,0,0,3,-14,50.325481,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51.73,58.82,7,3,4,0,0,0,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 -10985,13545,24380,24379,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.5351543,8.6799488,0,3,14,-44.878727,0,-9,-9,2019,8,0,58,50,1,0,0,9.3411636,9.3411636,0,0,0,0,0,1,1,0,5.0453081,0,51.73,58.82,49,56,5,3,4,0,0,9,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 -10985,13545,24381,-9,24379,24380,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.4233,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 -10985,13545,24382,-9,24379,24380,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.7406,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1581,-43701.91,48826.645,0,0,3682.3362 -10986,13546,24383,-9,24384,24387,1,0,17,0,2,1,2,0,0,0,3,0,4.5860009,4.51618,0,0,-978.43695,-9,1,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.6944423,0,42.46,54.85,-9,-9,5,1,1,0,0,1,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 -10986,13546,24384,24387,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.8691492,8.7396421,0,24,-2,31.378803,0,2,3,2019,12,2,43,42,1,2,0,14.567829,14.567829,0,0,0,0,2,1,1,0,0,0,51.83,57.2,56.52,48.31,8.333333333333334,1,1,0,0,10,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 -10986,13546,24385,-9,24384,24387,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.63989,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 -10986,13546,24386,-9,24384,24387,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.64856,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 -10986,13546,24387,24384,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.0742712,8.0429239,0,24,2,82.084755,0,2,2,2019,8,0,42,40,1,0,0,11.902713,11.902713,0,0,0,0,0,1,1,0,0,0,56.52,48.31,51.83,57.2,8.333333333333334,1,1,0,0,10,6,4,1,479.79999,1645284.1,1489757.4,225600.08,66664.289,3811.064 -10987,13547,24388,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.3522387,6.7943025,0,0,-1042.5555,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.6702371,54.88,36.02,-9,-9,10,1,1,0,0,0,4,2,1,366,520742.22,207032.89,61737.297,0,666.90063 -10988,13548,24389,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.3765802,8.5439501,0,0,0,-960.83215,0,2,-9,2019,5,1,52,60,1,1,0,10.882646,10.882646,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,514,339213.31,56977.422,0,0,-556.84924 -10989,13549,24390,24391,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,9,8,-89.508469,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,8.3883476,0,0,1,1,0,0,0,48,35,41.58,52.86,6.666666666666667,1,1,0,0,0,2,2,1,890,-18430.703,0,0,0,1238.4722 -10989,13549,24391,24390,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,4.0459619,4.5836005,9,-8,66.894897,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2748532,4.2998672,41.58,52.86,48,35,10,1,1,0,0,4,2,2,1,890,-18430.703,0,0,0,1238.4722 -10990,13550,24392,-9,24394,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-930.30603,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,7,2,0,1905.3334,326348.75,93013.211,166247.23,29126.199,1635.0592 -10990,13550,24393,-9,24394,-9,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1033.8031,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,7,2,0,1905.3334,326348.75,93013.211,166247.23,29126.199,1635.0592 -10990,13550,24394,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.9190669,6.7923574,0,0,0,-925.37885,0,3,2,2019,11,3,16,16,1,3,0,7.3134236,7.3134236,0,0,0,0,0,1,1,0,0,0,43.48,54.27,-9,-9,8.333333333333334,3,4,0,0,4,7,2,0,1905.3334,326348.75,93013.211,166247.23,29126.199,1635.0592 -10991,13551,24395,24397,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,0,0,0,17,-7,87.648453,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,48,56,51,56,7,2,3,0,1,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 -10991,13551,24396,-9,24395,24397,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.9462,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 -10991,13551,24397,24395,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.5388536,8.2976103,0,17,7,-43.723183,0,-9,-9,2019,9,0,60,53,1,1,0,9.1612816,9.1612816,0,0,0,0,0,1,1,0,0,0,51,56,48,56,8,2,3,0,1,10,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 -10991,13551,24398,-9,24395,24397,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.492,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 -10991,13551,24399,-9,24395,24397,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.59753,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,1028.4,438394.56,0,292208.81,0,2267.541 -10992,13552,24400,24401,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.6108737,8.1884947,6.2275472,19,2,69.052162,0,3,3,2019,6,0,27,27,1,0,0,11.938396,11.938396,0,0,0,0,0,0,0,0,1.9362539,6.8297415,59.45,39.29,58.72,51.29,8.333333333333334,1,1,0,0,11,11,4,0,248,295038.75,161237.13,200617.78,77949.648,2016.6343 -10992,13552,24401,24400,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.4061093,7.4160156,0,12,-2,-71.588425,0,3,2,2019,8,0,24,24,1,0,0,8.5127296,8.5127296,0,0,0,0,0,0,0,0,0,0,58.72,51.29,59.45,39.29,10,1,1,0,0,11,11,4,0,248,295038.75,161237.13,200617.78,77949.648,2016.6343 -10993,13553,24402,-9,24404,24406,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.91559,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 -10993,13553,24403,-9,24404,24406,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.25531,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 -10993,13553,24404,24406,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,8.4181185,8.7521534,0,16,0,-186.05663,0,2,1,2019,10,0,20,15,1,1,0,30.338938,30.338938,0,0,0,0,0,0,0,0,.3571099,0,50,55,51.24,58.84,8,1,1,0,0,5,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 -10993,13553,24405,-9,24404,24406,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-934.55847,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 -10993,13553,24406,24404,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.8331404,9.7268629,0,6,0,79.813873,0,1,1,2019,11,0,46,55,1,0,0,45.536888,45.536888,0,0,0,0,0,0,0,0,0,0,51.24,58.84,50,55,8.333333333333334,1,1,0,0,8,8,5,1,471.20001,743697.75,133512,853415.81,423227.81,8651.6689 -10994,13554,24407,-9,24409,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.72485,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 -10994,13554,24408,-9,24409,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-968.71521,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 -10994,13554,24409,-9,-9,-9,1,0,27,1,3,0,2,2,1,0,4,7.520503,7.5595078,0,0,0,-1040.4875,-9,1,2,2019,16,3,40,0,1,3,0,6.4900532,6.4900532,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 -10994,13554,24410,-9,24409,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.57825,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,588.25,-5691.0742,17401.014,0,0,2507.2952 -10995,13555,24411,-9,-9,-9,1,0,45,1,1,0,2,2,-9,0,3,7.3443518,7.2520838,0,0,0,-1002.1365,0,-9,-9,2019,12,0,27,21,1,0,0,6.7360902,6.7360902,0,0,0,0,0,1,1,0,0,0,36.36,51.24,-9,-9,1.666666666666667,1,1,0,0,11,11,3,0,443,75278.938,-49053.813,0,0,876.28851 -10995,13556,24412,-9,24413,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.8191,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,3,0,2604.5,249370.25,45872.93,0,0,1409.1677 -10995,13556,24413,-9,24411,-9,1,0,21,1,1,0,2,2,-9,0,3,7.7494345,7.7989817,0,0,0,-922.60242,0,2,-9,2019,8,0,42,35,1,0,1,6.4081693,6.4081693,0,0,0,0,0,1,1,0,0,0,51.28,37.38,-9,-9,6.666666666666667,1,1,0,0,4,11,3,0,2604.5,249370.25,45872.93,0,0,1409.1677 -10996,13557,24414,-9,24415,-9,1,0,44,0,0,0,1,1,-9,1,2,7.7055645,7.6444697,0,0,0,-996.33215,0,1,1,2019,6,0,30,27,1,0,0,8.048419,8.048419,0,0,0,0,0,1,1,0,3.5917821,0,51.41,35.54,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1545,29573.855,96895.305,0,0,1028.7448 -10996,13558,24415,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.7596445,7.7436328,0,0,-1119.7068,0,3,2,2019,15,5,0,0,4,5,0,0,0,1,3.5803421,8.0492687,21.938072,7,1,1,0,3.7470074,7.5921016,46.24,48.84,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,164,1101333,158504.36,545183.19,0,2727.6196 -10997,13559,24416,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.41913,0,2,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,29.43,-9,-9,3.333333333333333,4,5,0,1,0,5,1,1,780,-76948.453,0,0,0,1066.1471 -10998,13560,24417,24418,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,4.4119835,5.4756689,5.4873896,13,-11,22.433912,0,-9,-9,2019,9,0,8,10,1,0,0,1.1796054,1.1796054,0,0,0,0,0,1,1,0,4.7802429,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,10,12,4,1,530.66669,-32987.398,93903.938,0,0,2484.9265 -10998,13560,24418,24417,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.5924673,8.8812723,0,2,11,124.50065,0,-9,-9,2019,10,0,45,45,1,0,0,12.160089,12.160089,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,4,12,4,1,530.66669,-32987.398,93903.938,0,0,2484.9265 -10998,13560,24419,-9,24417,24418,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.01099,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,530.66669,-32987.398,93903.938,0,0,2484.9265 -10999,13561,24420,24421,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.3653193,7.1840062,13,8,3.7846901,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2879033,7.3669238,56.55,23.13,62.39,56.71,8.333333333333334,1,1,0,0,0,2,3,1,297,1833116.4,1004794.5,318290.97,0,3106.6143 -10999,13561,24421,24420,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,7.72965,7.8898392,13,-8,-80.755859,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,6.0682502,8.033577,62.39,56.71,56.55,23.13,10,1,1,0,0,0,2,3,1,297,1833116.4,1004794.5,318290.97,0,3106.6143 -11000,13562,24422,24425,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,16,-5,-35.874062,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,48.5,49.74,46.87,8.333333333333334,2,3,0,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 -11000,13562,24423,-9,24422,24425,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.0297,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 -11000,13562,24424,-9,24422,24425,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.97565,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 -11000,13562,24425,24422,-9,-9,1,1,42,0,3,0,3,3,-9,0,5,9.5878592,9.5861769,0,16,5,24.90168,0,-9,-9,2019,19,5,40,20,1,5,0,48.103062,48.103062,0,0,0,0,0,1,1,0,7.7496805,0,49.74,46.87,39.16,48.5,5,1,1,0,0,6,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 -11000,13562,24426,-9,24422,24425,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1109.8599,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,1,897.40002,1176549.9,652779.56,545516.31,0,8803.4531 -11001,13563,24427,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,5,0,6.1497254,6.0404534,0,0,-1003.6702,-9,-9,-9,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,5.8164506,0,57.06,57.76,-9,-9,10,1,1,0,0,1,12,2,0,1208,246543.11,0,0,0,91.974945 -11002,13564,24428,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.2618065,7.7373033,0,9,-10,-10.08171,0,-9,2,2019,11,0,37,37,1,0,0,8.6225986,8.6225986,0,0,0,0,0,0,0,0,0,0,35.55,60.77,57.57,46.51,8.333333333333334,1,1,0,0,10,5,4,1,403,-53300.582,183079.33,0,0,886.65765 -11002,13565,24429,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.970788,7.9538908,0,9,10,-9.9796696,0,3,2,2019,10,0,45,41,1,0,0,8.2872858,8.2872858,0,0,0,0,0,0,0,0,0,0,57.57,46.51,35.55,60.77,6.666666666666667,1,1,0,0,10,5,4,1,233,228457.81,-83915.313,162477.47,131399.64,1098.9342 -11003,13566,24430,24432,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,0,7.9206734,8.4074287,9,-2,-142.7551,0,2,2,2019,13,2,0,42,4,2,0,0,0,0,0,0,0,0,1,1,0,2.2251022,7.992281,36.59,60.25,49.12,57.28,6.666666666666667,1,1,0,0,9,13,3,1,733.33331,-21852.795,98328.25,169337.94,5170.1035,1760.834 -11003,13566,24431,-9,24432,24430,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.9552,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,733.33331,-21852.795,98328.25,169337.94,5170.1035,1760.834 -11003,13566,24432,24430,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,0,6.3071957,6.4343772,9,2,-4.032042,0,3,3,2019,11,2,0,21,4,2,0,0,0,0,0,0,0,42,1,1,0,.99629349,6.683784,49.12,57.28,36.59,60.25,6.666666666666667,1,1,0,0,10,13,3,1,733.33331,-21852.795,98328.25,169337.94,5170.1035,1760.834 -11003,13567,24433,-9,24432,24430,1,1,21,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1052.7854,-9,1,2,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.87,57.63,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,891,193838.92,0,0,0,-193.69235 -11003,13568,24434,-9,24432,24430,1,0,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-947.27899,-9,1,2,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,13,1,1,685,-44315.004,0,0,0,0 -11004,13569,24435,24436,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.5146708,7.9353909,7.6588817,6,-3,57.345535,-9,-9,-9,2019,11,0,16,0,1,2,0,10.047616,10.047616,0,0,0,0,0,1,1,0,7.5039954,7.8908043,49,48,48.87,58.55,7,4,1,0,0,1,12,5,1,1292,511091.81,397253.25,372855.94,250834.75,6083.8486 -11004,13569,24436,24435,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.5536795,8.5499725,7.7965837,6,3,-71.409073,0,3,3,2019,12,0,30,25,1,0,0,7.2539849,7.2539849,0,0,0,0,0,1,1,0,2.8119316,8.0714998,48.87,58.55,49,48,8.333333333333334,1,1,0,0,9,12,5,1,1292,511091.81,397253.25,372855.94,250834.75,6083.8486 -11005,13570,24437,24438,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,0,0,13,6,-1.5122118,0,-9,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0431509,0,59.53,56.44,54.69,57.47,10,1,1,0,0,6,10,2,1,243.5,1013033.9,233796.91,430468.13,0,4426.4463 -11005,13570,24438,24437,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,5.0814281,5.9144135,28,-6,8.2919254,0,3,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1564474,5.3973246,54.69,57.47,59.53,56.44,10,1,1,0,0,0,10,2,1,243.5,1013033.9,233796.91,430468.13,0,4426.4463 -11006,13571,24439,-9,-9,-9,1,0,19,0,0,0,2,2,-9,1,5,0,0,0,0,0,-948.62988,-9,3,-9,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,42,1,1,0,0,0,41.07,39.71,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,1819,181222.72,0,0,0,364.30646 -11007,13572,24440,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.4838686,7.3588076,0,0,-996.63519,0,2,1,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,7.4874196,7.13623,57.06,57.76,-9,-9,10,1,1,0,0,10,5,3,1,401,302755.66,284245.34,163337.13,0,995.0177 -11008,13573,24441,24442,-9,-9,1,1,49,0,0,0,3,3,-9,0,5,8.5510349,8.4913702,0,27,-3,-104.20196,0,2,2,2019,7,0,34,34,1,0,0,14.011628,14.011628,0,0,0,0,0,0,0,0,2.8884683,0,57.06,57.76,64.13,35.25,10,1,1,0,0,11,8,5,1,3172.5,1159577.8,615211.94,402919.28,115569.66,3465.2175 -11008,13573,24442,24441,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3854017,7.9678411,0,27,3,139.78574,0,2,3,2019,5,0,34,35,1,0,0,13.267426,13.267426,0,0,0,0,0,0,0,0,4.619772,0,64.13,35.25,57.06,57.76,8.333333333333334,1,1,0,0,11,8,5,1,3172.5,1159577.8,615211.94,402919.28,115569.66,3465.2175 -11009,13574,24443,-9,24444,24446,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1034.5157,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 -11009,13574,24444,24446,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.3698931,8.5978022,0,8,6,13.122707,0,2,2,2019,11,0,49,48,1,0,0,13.214523,13.214523,0,0,0,0,77,1,1,0,0,0,51.19,52.11,41.34,56.62,5,1,1,0,0,9,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 -11009,13574,24445,-9,24444,24446,1,1,17,0,2,0,3,3,-9,0,3,0,0,0,0,0,-897.47321,0,1,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,4.0734115,0,49.41,41.82,-9,-9,10,1,1,0,0,1,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 -11009,13574,24446,24444,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.230423,8.0006571,0,8,-6,-128.29303,0,-9,-9,2019,12,0,38,48,1,0,0,11.458392,11.458392,0,0,0,0,42,1,1,0,0,0,41.34,56.62,51.19,52.11,5,1,1,0,0,9,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 -11009,13574,24447,-9,24444,24446,1,1,16,0,2,1,3,0,-9,1,1,0,0,0,0,0,-1068.3325,-9,1,2,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.86,51.84,-9,-9,3.333333333333333,1,1,0,1,0,9,4,0,734,-207717.45,-11683.032,0,0,5657.9805 -11010,13575,24448,-9,24451,24450,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.212,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 -11010,13575,24449,-9,24451,24450,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.875,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 -11010,13575,24450,24451,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,8.6844988,8.768136,0,5,-1,-55.809185,0,2,2,2019,9,0,60,55,1,0,0,12.190446,12.190446,0,0,0,0,0,1,1,0,0,0,57.06,57.76,43.71,56.91,8.333333333333334,1,1,0,0,8,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 -11010,13575,24451,24450,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5648403,7.1289945,0,5,1,148.80119,0,3,3,2019,10,0,16,16,1,0,0,10.957599,10.957599,0,0,0,0,0,1,1,0,0,0,43.71,56.91,57.06,57.76,6.666666666666667,1,1,0,0,8,6,4,1,400.25,260797.36,35865.68,303378.84,78775.125,3266.0923 -11011,13576,24452,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9308639,8.2844248,0,0,0,-1044.7593,0,3,3,2019,10,1,28,28,1,1,0,13.249778,13.249778,0,0,0,0,0,0,0,0,3.5928786,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,990,512454.81,142860.42,0,0,1502.0247 -11011,13577,24453,-9,24452,-9,1,0,27,0,0,0,2,2,-9,0,5,0,0,0,0,0,-972.40234,0,2,2,2019,22,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,30.67,65.95,-9,-9,3.333333333333333,1,1,1,1,7,5,1,1,137,29866.592,0,0,0,-132.7664 -11012,13578,24454,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.8439741,9.8968935,0,0,0,-1010.069,-9,2,1,2019,11,0,58,0,1,0,0,29.403837,29.403837,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,3.333333333333333,1,1,0,0,12,5,5,1,9895,1161605.6,599264.06,203261.97,0,6607.7954 -11012,13579,24455,-9,24454,-9,1,0,22,0,0,0,1,1,-9,0,4,7.6585712,7.7796497,5.5151649,0,0,-904.40936,0,1,-9,2019,7,0,30,30,1,0,1,8.7205648,8.7205648,0,0,0,0,0,0,0,0,5.5991669,0,54.2,49.26,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,187,60503.719,0,0,0,672.68994 -11013,13580,24456,24457,-9,-9,1,1,23,0,1,0,2,2,-9,0,4,7.9631438,8.1977129,0,5,-2,36.526508,0,-9,-9,2019,10,0,43,56,1,1,0,10.447917,10.447917,0,0,0,0,2,1,1,0,0,0,48,59,44.12,48.5,7,1,1,0,0,5,2,4,0,1629.3334,-38305.707,87600.125,66724.125,74072.609,2689.2632 -11013,13580,24457,24456,-9,-9,1,0,25,0,1,0,1,1,-9,0,4,7.5852647,7.9692717,0,5,2,-157.15849,0,2,2,2019,12,0,24,35,1,0,0,12.524508,12.524508,0,0,0,0,0,1,1,0,3.2468684,0,44.12,48.5,48,59,8.333333333333334,1,1,0,0,8,2,4,0,1629.3334,-38305.707,87600.125,66724.125,74072.609,2689.2632 -11013,13580,24458,-9,24457,24456,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.77728,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1629.3334,-38305.707,87600.125,66724.125,74072.609,2689.2632 -11014,13581,24459,24460,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.1661739,9.5534725,0,1,0,-15.746067,-9,2,2,2019,11,0,40,0,1,0,0,29.699373,29.699373,0,0,0,0,0,0,0,0,2.6448505,0,58.15,52.91,52.15,38.45,8.333333333333334,1,1,0,0,8,2,5,0,312,16224.407,244347.28,0,0,4785.9492 -11014,13581,24460,24459,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,0,0,1,9,40.548882,-9,1,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,2.8319812,0,52.15,38.45,58.15,52.91,5,1,1,1,0,3,2,5,0,312,16224.407,244347.28,0,0,4785.9492 -11015,13582,24461,24463,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.458868,8.5171671,0,9,3,-1.9287511,0,-9,-9,2019,12,0,43,44,1,0,0,11.766056,11.766056,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.19,58.01,8.333333333333334,1,1,0,0,12,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 -11015,13582,24462,-9,24463,24461,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.88751,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 -11015,13582,24463,24461,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.9123459,8.96488,0,9,-3,-29.315685,0,2,2,2019,12,4,35,40,1,4,0,20.435808,20.435808,0,0,0,0,0,1,1,0,0,0,44.19,58.01,57.16,56.15,6.666666666666667,1,1,0,0,12,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 -11015,13582,24464,-9,24463,24461,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.38617,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,433.5,342554.19,0,284526.03,12232.37,4136.73 -11016,13583,24465,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.0851722,6.6345558,0,0,-1014.5591,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8351765,51.68,38.14,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,5066,588962.94,154395.8,141260.95,0,905.14923 -11017,13584,24466,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.7788634,7.3971639,6.5856929,0,0,-1024.7279,-9,2,2,2019,11,0,26,0,1,1,0,5.0735164,5.0735164,0,0,0,0,0,1,1,0,6.5932961,0,49,55,-9,-9,7,1,1,0,0,10,4,2,1,495,106841.2,-18590.574,0,0,1191.5876 -11018,13585,24467,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1564455,5.9773121,0,0,-1076.4529,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1032767,63.1,37.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,101,-286021.84,125838.05,80408.992,0,1433.0253 -11019,13586,24468,24470,-9,-9,1,0,39,0,3,0,2,2,-9,0,2,0,0,0,9,3,-59.194866,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,40.31,42.56,52.14,3.333333333333333,1,1,0,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 -11019,13586,24469,-9,24468,-9,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.2709,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 -11019,13586,24470,24468,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.4360704,8.5340261,0,9,-3,39.897072,0,2,3,2019,12,0,40,48,1,0,0,14.288456,14.288456,0,0,0,0,0,1,1,0,0,0,42.56,52.14,33.66,40.31,6.666666666666667,1,1,0,0,13,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 -11019,13586,24471,-9,24468,24470,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.61945,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 -11019,13586,24472,-9,24468,24470,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.8729,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,573,-51291.621,-22304.162,0,0,2778.5249 -11019,13587,24473,-9,24468,-9,1,0,19,0,3,0,2,2,0,0,2,0,0,0,0,0,-891.58331,-9,2,-9,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,0,0,23.53,42.28,-9,-9,1.666666666666667,1,1,0,0,1,4,1,0,235,113127.27,0,0,0,0 -11020,13588,24474,24476,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.5701046,9.711791,0,23,3,114.59977,0,3,3,2019,11,0,50,50,1,0,0,37.814884,37.814884,0,0,0,0,0,0,0,0,5.6780457,0,55.53,46.14,57.16,56.15,6.666666666666667,1,1,0,0,10,8,5,1,3927.3333,640405.38,40776.23,797187,107009.41,12890.414 -11020,13588,24475,-9,24476,24474,1,1,17,0,0,1,2,0,0,0,4,0,2.6955895,2.749825,0,0,-1106.131,-9,2,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,3.8499482,0,57.57,46.51,-9,-9,1.666666666666667,1,1,0,0,0,8,5,1,3927.3333,640405.38,40776.23,797187,107009.41,12890.414 -11020,13588,24476,24474,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,23,-3,-57.468094,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,9.2751341,0,57.16,56.15,55.53,46.14,10,1,1,0,0,0,8,5,1,3927.3333,640405.38,40776.23,797187,107009.41,12890.414 -11020,13589,24477,-9,24476,24474,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-963.36499,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.585211,0,54.7,49.24,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,540,0,0,0,0,52.437798 -11021,13590,24478,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.7475424,5.8890467,0,0,-1050.9656,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,1.3624041,0,31.470377,0,1,1,0,0,5.707633,48.63,42.33,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,276,-237749.27,5982.4795,91367.586,36952.469,1109.1981 -11022,13591,24479,24480,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,7,26,-122.85025,0,-9,-9,2019,18,5,0,8,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.53,42.57,39.85,55.83,6.666666666666667,1,1,1,0,10,1,3,0,964.5,249768.73,187959.27,102901.63,0,1636.7261 -11022,13591,24480,24479,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.041029,7.7226601,0,7,-26,-44.535503,0,2,2,2019,12,1,35,40,1,1,0,10.857305,10.857305,0,0,0,0,2,1,1,0,0,0,39.85,55.83,38.53,42.57,8.333333333333334,1,1,0,0,8,1,3,0,964.5,249768.73,187959.27,102901.63,0,1636.7261 -11023,13592,24481,24482,-9,-9,1,0,74,0,0,0,1,1,-9,0,5,7.1775808,7.3680525,0,4,6,-60.125774,0,-9,-9,2019,12,0,4,10,1,0,0,36.953106,36.953106,0,0,0,0,0,1,1,0,4.5884337,0,51.14,60.45,53.33,53.71,5,1,1,0,0,8,8,5,1,472.5,2019310.5,1755584.9,283426.34,0,7271.8779 -11023,13592,24482,24481,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.4589329,9.0560694,8.5061274,38,-6,52.325001,0,-9,-9,2019,10,0,40,45,1,0,0,14.957111,14.957111,0,0,0,0,0,1,1,0,8.3406506,8.1366282,53.33,53.71,51.14,60.45,6.666666666666667,1,1,0,0,8,8,5,1,472.5,2019310.5,1755584.9,283426.34,0,7271.8779 -11024,13593,24483,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.2900624,7.352572,0,0,0,-1046.9994,-9,2,2,2019,18,6,45,0,1,6,0,4.3489246,4.3489246,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,5,1,1,0,0,8,6,3,0,187,1444.1344,2351.1997,0,0,909.87866 -11025,13594,24484,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.3754025,4.6902494,0,0,-1006.6042,0,3,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9042566,4.8700638,53,47,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,2171,172874.95,56004.336,361580.22,0,1148.6013 -11026,13595,24485,24486,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8345909,8.8944082,0,33,-1,31.010469,0,2,1,2019,14,3,50,50,1,3,0,14.901009,14.901009,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,50,49,8.333333333333334,1,1,0,0,11,8,5,1,319,2293054.5,963645.44,1444322.1,0,4510.3115 -11026,13595,24486,24485,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.0443993,8.8511963,0,10,1,48.460758,0,2,2,2019,10,0,40,40,1,1,0,20.219088,20.219088,0,0,0,0,0,1,1,0,0,0,50,49,35.61,65.82000000000001,7,1,1,0,0,1,8,5,1,319,2293054.5,963645.44,1444322.1,0,4510.3115 -11026,13596,24487,-9,24485,24486,1,0,27,0,0,0,2,2,-9,0,4,7.322587,7.453186,0,0,0,-993.22357,0,1,1,2019,11,0,35,40,1,2,1,3.5675445,3.5675445,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,8,3,1,494,0,0,0,0,620.85236 -11026,13597,24488,-9,24485,24486,1,1,25,0,0,0,1,1,-9,0,4,8.3125315,8.0410824,0,0,0,-912.94043,0,1,1,2019,14,4,35,35,1,4,1,10.846774,10.846774,0,0,0,0,0,1,1,0,0,0,34.93,58.4,-9,-9,3.333333333333333,1,1,0,0,3,8,4,1,846,-32630.26,-95956.016,0,0,1249.6567 -11026,13598,24489,-9,24485,24486,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.1001,-9,1,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,0,8,1,1,745,0,0,0,0,-396.05109 -11027,13599,24490,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1113.0564,0,-9,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.1,23.55,-9,-9,3.333333333333333,1,1,0,0,4,10,1,0,1294,87815.516,0,0,0,1110.326 -11027,13600,24491,-9,24490,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1124.3077,0,2,2,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,10,1,0,477,-306718.09,0,0,0,-263.22092 -11028,13601,24492,24493,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.2064013,6.85009,56,1,40.629139,0,-9,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4438946,7.0607657,56.94,49.53,57.33,53.46,6.666666666666667,1,1,0,0,0,10,2,1,480.5,422011.72,379204.09,269375.44,0,1116.2311 -11028,13601,24493,24492,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,56,-1,8.0860538,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1625915,0,57.33,53.46,56.94,49.53,8.333333333333334,1,1,0,0,8,10,2,1,480.5,422011.72,379204.09,269375.44,0,1116.2311 -11029,13602,24494,24495,-9,-9,1,1,42,1,1,0,2,2,-9,0,4,8.899663,8.9726439,0,5,2,30.05085,0,-9,-9,2019,12,0,80,65,1,0,0,10.065944,10.065944,0,0,0,0,0,1,1,0,0,0,59.53,56.44,38.51,59.43,8.333333333333334,1,1,0,0,7,5,4,0,1505.3334,744762.94,385064.44,283647.91,102819.88,3538.8091 -11029,13602,24495,24494,-9,-9,1,0,40,1,1,0,2,2,-9,0,3,7.1987643,7.1712794,0,5,-2,65.138931,0,-9,-9,2019,16,4,16,16,1,4,0,10.177297,10.177297,0,0,0,0,0,1,1,0,0,0,38.51,59.43,59.53,56.44,8.333333333333334,1,1,0,0,5,5,4,0,1505.3334,744762.94,385064.44,283647.91,102819.88,3538.8091 -11029,13602,24496,-9,24495,24494,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.32837,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,1505.3334,744762.94,385064.44,283647.91,102819.88,3538.8091 -11030,13603,24497,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.611165,8.6147261,6.2288866,0,0,-980.77948,0,3,3,2019,8,0,37,37,1,0,0,20.512989,20.512989,0,0,0,0,0,0,0,0,2.0780857,6.1595259,51.54,36.81,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,613,1410407.8,935497.31,448221.06,0,3138.3958 -11031,13604,24498,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.7729006,8.186779,7.5205712,0,0,-1009.5219,0,2,2,2019,5,0,18,18,1,0,0,13.426472,13.426472,0,0,0,0,0,1,1,0,0,7.7969651,38.06,46.33,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,568,853972.31,677394.5,256894.08,0,2847.7031 -11032,13605,24499,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.5787067,6.1864839,0,0,-1063.5494,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.4640498,6.5081391,37.8,46.7,-9,-9,8.333333333333334,2,3,0,0,4,9,2,0,879,548788.13,168875.97,206734.34,0,1415.3977 -11033,13606,24500,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,2.8212464,2.8984783,0,0,-1051.1273,0,3,2,2019,16,3,0,0,4,3,0,0,0,1,0,4.6269054,0,0,1,1,0,2.4446559,2.8773282,28.88,33.34,-9,-9,5,1,1,0,0,0,7,2,1,310,296182.28,0,243225.78,0,266.42194 -11034,13607,24501,24502,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.3763714,6.6518559,10,5,-122.46479,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,.95398843,0,1,1,0,5.9013872,6.4645905,61.14,38.35,54.1,49.39,10,1,1,0,0,0,12,2,1,225.5,264495.56,210473.16,191726.44,0,818.59692 -11034,13607,24502,24501,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,5.7231717,5.6443686,10,-5,-25.957415,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6018872,5.8055606,54.1,49.39,61.14,38.35,6.666666666666667,1,1,0,0,4,12,2,1,225.5,264495.56,210473.16,191726.44,0,818.59692 -11035,13608,24503,24504,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8044763,7.8226295,6.0982065,7,-1,-19.806982,0,-9,-9,2019,10,0,26,22,1,0,0,8.7846432,8.7846432,0,0,0,0,0,1,1,0,6.8049884,0,45.91,59.89,54.37,54.8,3.333333333333333,4,2,0,0,6,7,5,1,648.5,933209.63,549521.5,503894.19,4923.2373,4467.4727 -11035,13608,24504,24503,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0585737,9.1417999,0,7,1,68.394577,0,2,2,2019,9,0,38,38,1,0,0,28.155832,28.155832,0,0,0,0,0,1,1,0,4.0708485,0,54.37,54.8,45.91,59.89,8.333333333333334,1,1,0,0,12,7,5,1,648.5,933209.63,549521.5,503894.19,4923.2373,4467.4727 -11035,13609,24505,-9,24503,24504,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1034.0487,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,29.66,53.96,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,566,58134.934,0,0,0,0 -11036,13610,24506,-9,24510,24508,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-966.53735,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 -11036,13610,24507,-9,24510,24508,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.1307,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 -11036,13610,24508,24510,-9,-9,1,1,49,1,4,0,1,1,-9,0,4,8.1476593,7.952559,0,6,9,8.3253002,0,2,2,2019,6,0,30,30,1,0,0,13.283549,13.283549,0,0,0,0,0,1,1,0,0,0,62.49,55.09,45.68,58.52,6.666666666666667,2,3,0,0,6,8,2,1,961.59998,0,0,0,0,1707.2971 -11036,13610,24509,-9,24510,24508,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-965.60583,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 -11036,13610,24510,24508,-9,-9,1,0,40,1,4,0,1,1,-9,0,4,0,0,0,6,0,-13.427615,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.68,58.52,62.49,55.09,8.333333333333334,2,3,0,0,0,8,2,1,961.59998,0,0,0,0,1707.2971 -11037,13611,24511,24512,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.2761116,8.3937597,0,7,-5,-2.8645391,0,2,1,2019,7,0,40,42,1,0,0,15.039804,15.039804,0,0,0,0,0,0,0,0,0,0,52.27,58.55,44.19,56.73,8.333333333333334,4,2,0,0,9,2,5,1,671,754829.63,292916.06,296098.72,91977.344,4535.498 -11037,13611,24512,24511,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5183239,8.7278576,0,7,5,-33.340969,0,-9,-9,2019,11,0,47,47,1,0,0,12.594613,12.594613,0,0,0,0,0,0,0,0,0,0,44.19,56.73,52.27,58.55,6.666666666666667,1,1,0,0,5,2,5,1,671,754829.63,292916.06,296098.72,91977.344,4535.498 -11038,13612,24513,-9,24514,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.63196,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,1,926.66669,394109.47,34177.145,345378.19,14158.333,1003.9778 -11038,13612,24514,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,0,0,-919.9649,0,3,3,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.85,43.28,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,926.66669,394109.47,34177.145,345378.19,14158.333,1003.9778 -11038,13612,24515,-9,24514,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.034,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,1,1,926.66669,394109.47,34177.145,345378.19,14158.333,1003.9778 -11039,13613,24516,24517,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.9889174,7.9822435,0,1,1,-40.344948,-9,-9,-9,2019,12,1,52,0,1,1,0,7.1022496,7.1022496,0,0,0,0,0,0,0,0,4.1510277,0,46.1,59.99,54.1,59.11,8.333333333333334,1,1,0,0,2,2,4,1,733.5,-116870.95,130565.42,188311.23,127204.13,2713.019 -11039,13613,24517,24516,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.7585797,8.0809765,0,1,-1,-7.3886986,0,-9,-9,2019,8,0,37,40,1,0,0,7.365962,7.365962,0,0,0,0,0,0,0,0,2.0607934,0,54.1,59.11,46.1,59.99,8.333333333333334,1,1,0,0,3,2,4,1,733.5,-116870.95,130565.42,188311.23,127204.13,2713.019 -11040,13614,24518,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,7.2586622,7.557652,0,0,-1093.7533,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6868229,7.2293119,58.21,20.95,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,770,839613.81,188406.73,606817.94,0,2161.3123 -11041,13615,24519,-9,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1072.7417,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,26.26,56.78,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,1240.6666,141269.16,0,197236.75,114756.33,959.50958 -11041,13615,24520,-9,24519,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.90167,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1240.6666,141269.16,0,197236.75,114756.33,959.50958 -11041,13615,24521,-9,24519,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.0176,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1240.6666,141269.16,0,197236.75,114756.33,959.50958 -11042,13616,24522,24523,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,8.4103327,8.1308651,0,2,-6,-25.284296,0,3,3,2019,25,10,60,68,1,10,0,7.5695705,7.5695705,0,0,0,0,14.5,1,1,0,0,0,39.5,17.12,26.14,26.17,5,1,1,0,0,11,2,4,0,708,430307.19,131976.95,0,0,3738.8359 -11042,13616,24523,24522,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,5.9037285,5.803061,2,6,-95.933838,0,-9,-9,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,5.3668013,26.14,26.17,39.5,17.12,3.333333333333333,1,1,0,0,0,2,4,0,708,430307.19,131976.95,0,0,3738.8359 -11043,13617,24524,24525,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.5238037,8.4788828,0,21,-5,70.010796,0,-9,-9,2019,12,0,40,38,1,2,0,18.33197,18.33197,0,0,0,0,0,0,0,0,1.7476814,0,47,49,54.61,51.04,7,2,3,0,0,1,8,5,1,822.5,774893.75,419375.06,406440.31,93154.016,5652.4131 -11043,13617,24525,24524,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.838254,9.2947197,0,21,5,-9.3997011,0,3,3,2019,10,0,40,30,1,0,0,27.801849,27.801849,0,0,0,0,0,0,0,0,7.7516365,0,54.61,51.04,47,49,3.333333333333333,2,3,0,0,9,8,5,1,822.5,774893.75,419375.06,406440.31,93154.016,5652.4131 -11043,13618,24526,-9,24524,24525,1,1,25,0,0,0,1,1,-9,0,4,8.2268934,8.1605291,0,0,0,-1002.5439,0,2,1,2019,10,0,40,43,1,1,1,10.676081,10.676081,0,0,0,0,0,0,0,0,2.1507826,0,48,59,-9,-9,7,2,3,0,0,1,8,4,1,475,-52221.656,14679.603,0,0,1960.3901 -11043,13619,24527,-9,24524,24525,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1051.0577,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,3.3200564,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,539,0,0,0,0,-301.89047 -11043,13620,24528,-9,24524,24525,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1031.7079,-9,1,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,1,1317,0,0,0,0,0 -11043,13621,24529,-9,24524,24525,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1023.1633,-9,1,2,2019,11,0,0,0,3,2,1,0,0,0,0,0,1.137826,0,0,0,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,1,1,44,187162.75,0,0,0,0 -11044,13622,24530,24531,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.5321512,8.6676912,0,20,-8,59.124878,0,1,2,2019,10,1,49,47,1,1,0,13.868777,13.868777,0,0,0,0,0,0,0,0,0,0,53.81,48.39,57.16,56.15,8.333333333333334,1,1,0,0,6,10,5,1,436,21134.555,23446.555,156550.66,127700.96,4866.5508 -11044,13622,24531,24530,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.6113358,8.8361521,0,16,8,21.675325,0,1,1,2019,7,0,49,45,1,0,0,17.366175,17.366175,0,0,0,0,0,0,0,0,4.5281501,0,57.16,56.15,53.81,48.39,8.333333333333334,1,1,0,0,8,10,5,1,436,21134.555,23446.555,156550.66,127700.96,4866.5508 -11045,13623,24532,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.3515882,5.3945317,0,0,-966.56195,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6525478,5.2519431,53.64,46.82,-9,-9,10,1,1,0,0,0,7,2,1,648,841018.38,256892.36,693270.44,0,1914.5071 -11046,13624,24533,24534,24539,-9,1,0,32,2,4,0,2,2,-9,1,4,0,0,0,5,-7,-107.80616,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,.78590876,0,46.26,40.89,57.76,54.51,1.666666666666667,3,4,0,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 -11046,13624,24534,24533,-9,-9,1,1,39,2,4,0,2,2,-9,0,4,8.4620857,8.5169735,0,5,7,-70.585968,0,-9,-9,2019,6,0,65,70,1,0,0,9.9772263,9.9772263,0,0,0,0,2,1,1,0,0,0,57.76,54.51,46.26,40.89,10,4,2,0,0,8,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 -11046,13624,24535,-9,24533,24534,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-979.93048,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 -11046,13624,24536,-9,24533,24534,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-945.24744,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 -11046,13624,24537,-9,24533,24534,1,1,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.0641,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 -11046,13624,24538,-9,24533,24534,1,1,16,2,4,0,3,3,-9,0,5,0,0,0,0,0,-1023.7455,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,61,-9,-9,7,3,4,0,0,0,8,3,0,791.66669,-114394.62,-1295.5912,0,0,3563.8452 -11046,13625,24539,-9,-9,-9,1,0,60,2,4,0,2,2,-9,0,2,6.9446254,7.4110107,0,0,0,-977.98071,0,-9,-9,2019,6,0,18,15,1,0,0,6.2516313,6.2516313,0,0,0,0,14.5,1,1,0,.78477657,0,63.65,35.93,-9,-9,8.333333333333334,3,4,0,0,8,8,2,0,2145,395745.03,110013.4,223028.69,0,592.93408 -11047,13626,24540,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.0504732,7.1086259,0,0,-1023.3799,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.461154,7.1527786,55.94,47.09,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,290,416669.44,176515.66,140496.06,0,1624.6909 -11048,13627,24541,24542,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,0,0,0,10,2,0,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,35.64,33.84,7,2,3,1,0,0,4,2,1,331.33334,156819.13,0,0,0,2007.1864 -11048,13627,24542,24541,-9,-9,1,0,48,0,1,0,3,3,-9,1,2,0,0,0,32,-2,0,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,33.84,49,50,6.666666666666667,2,3,0,0,0,4,2,1,331.33334,156819.13,0,0,0,2007.1864 -11048,13627,24543,-9,24542,24541,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-955.01117,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,331.33334,156819.13,0,0,0,2007.1864 -11048,13628,24544,-9,24542,24541,1,1,20,0,1,0,2,2,-9,0,4,7.2265711,6.9645376,0,0,0,-1061.1556,0,3,2,2019,11,0,40,-9,1,2,1,3.0528946,3.0528946,0,0,0,0,0,1,1,0,.14696492,0,47,59,-9,-9,7,2,3,0,0,1,4,2,1,1746,-53447.723,0,0,0,484.92645 -11049,13629,24545,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.5098667,8.4499578,4.6468158,0,0,-1054.1575,-9,-9,-9,2019,0,0,28,0,1,0,0,17.782537,17.782537,0,0,0,0,0,1,1,0,3.6674457,4.7965331,54.2,57.49,-9,-9,10,1,1,0,0,9,5,5,1,410,514330.94,322570.63,0,0,1181.9766 -11050,13630,24546,24547,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.1566248,7.8005581,49,0,-16.996389,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7400436,7.887836,64.08,44.69,61.28,48.88,8.333333333333334,1,1,0,0,0,9,5,1,259,6044930.5,1275970.3,377660.22,0,5425.6836 -11050,13630,24547,24546,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.2419043,8.2745361,49,0,-34.24131,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.350142,8.6411009,61.28,48.88,64.08,44.69,8.333333333333334,1,1,0,0,0,9,5,1,259,6044930.5,1275970.3,377660.22,0,5425.6836 -11051,13631,24548,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9917283,7.7243676,0,0,0,-1157.6598,0,2,3,2019,2,0,40,40,1,0,0,6.1906629,6.1906629,0,0,0,0,0,0,0,0,0,0,61.52,42.41,-9,-9,8.333333333333334,1,1,0,0,8,2,4,0,476,508098.25,0,173971.95,0,1641.3912 -11052,13632,24549,24550,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,52,0,63.139423,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,40.82,53.24,30.15,8.333333333333334,1,1,0,0,0,12,3,1,1723,1062097.9,635993.06,174346.14,0,2324.188 -11052,13632,24550,24549,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,8.1437922,8.2715874,52,0,-16.641233,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0705881,53.24,30.15,41.11,40.82,3.333333333333333,1,1,0,0,0,12,3,1,1723,1062097.9,635993.06,174346.14,0,2324.188 -11053,13633,24551,-9,24552,24554,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-949.30829,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,2,1,668.75,99872.242,0,0,0,3291.1316 -11053,13633,24552,24554,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,30,-1,0,0,3,-9,2019,20,8,0,35,3,8,0,0,0,0,0,0,0,2,1,1,0,0,0,49.8,56.68,48.94,49.1,8.333333333333334,1,1,0,0,6,2,2,1,668.75,99872.242,0,0,0,3291.1316 -11053,13633,24553,-9,24552,24554,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-966.56958,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,2,1,668.75,99872.242,0,0,0,3291.1316 -11053,13633,24554,24552,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,0,0,0,29,1,0,0,-9,-9,2019,10,0,0,39,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.94,49.1,49.8,56.68,5,1,1,0,0,10,2,2,1,668.75,99872.242,0,0,0,3291.1316 -11053,13634,24555,-9,24552,24554,1,0,20,0,2,0,2,2,0,0,3,0,0,0,0,0,-1035.0491,-9,2,2,2019,18,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,27.32,61.81,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,223,-275642.13,0,0,0,0 -11054,13635,24556,24557,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,54,-5,-22.653793,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,3.2592072,0,54.96,53.17,45.57,26.86,8.333333333333334,1,1,0,0,0,12,3,1,278,144507.2,177187.94,102741.92,0,1951.291 -11054,13635,24557,24556,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,7.3639007,7.5742993,54,5,88.728317,0,2,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,1.0358626,7.3095288,45.57,26.86,54.96,53.17,3.333333333333333,1,1,0,0,0,12,3,1,278,144507.2,177187.94,102741.92,0,1951.291 -11055,13636,24558,24561,-9,-9,1,1,56,0,2,0,3,3,-9,0,5,7.9514928,8.0120506,0,16,10,103.24767,0,-9,-9,2019,6,0,37,39,1,0,0,8.5446548,8.5446548,0,0,0,0,27,1,1,0,0,0,55.11,59.93,24.78,62.75,10,1,1,0,0,9,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 -11055,13636,24559,-9,24561,24558,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.94263,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 -11055,13636,24560,-9,24561,24558,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.0219,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 -11055,13636,24561,24558,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,0,0,0,16,-10,13.857627,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,2.469914,0,24.78,62.75,55.11,59.93,8.333333333333334,1,1,0,0,0,9,3,1,550,-80628.742,33850.68,0,0,1832.8677 -11056,13637,24562,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.9796352,7.5354095,0,0,-884.67957,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3164148,7.7025056,61.85,34.03,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,663,326938,283086.47,126292,0,2755.9512 -11057,13638,24563,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,0,5.3356929,4.719583,0,0,-857.74109,0,3,2,2019,8,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,5.0444527,0,62.39,56.71,-9,-9,8.333333333333334,1,1,1,0,4,9,2,0,547,930495.44,818737.31,0,0,312.85999 -11058,13639,24564,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.1818628,7.0268803,0,0,0,-942.49725,0,3,3,2019,13,2,20,20,1,2,0,5.7626481,5.7626481,0,0,0,0,0,1,1,0,0,0,57.48,31.86,-9,-9,3.333333333333333,1,1,0,0,10,5,3,1,2318,-125912.22,0,0,0,1138.0031 -11059,13640,24565,-9,24566,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.6329,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,1126.5,123232.42,0,0,0,1274.4418 -11059,13640,24566,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1044.8839,0,3,3,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,27,1,1,0,0,0,28.4,37.78,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,1126.5,123232.42,0,0,0,1274.4418 -11059,13641,24567,-9,24566,-9,1,1,19,0,1,0,2,2,-9,0,4,4.4804997,4.5948763,0,0,0,-1000.4814,0,2,-9,2019,10,0,30,0,1,2,1,.28570339,.28570339,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,2,0,530,111643.59,0,0,0,235.16631 -11060,13642,24568,24569,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.8645024,7.0833821,43,3,-12.515111,0,1,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,6.6770444,31.92,55.57,39.26,57.46,6.666666666666667,1,1,0,0,0,10,3,1,1084,1347001.8,822025.75,245714.11,0,2825.0342 -11060,13642,24569,24568,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.4611588,7.7903543,43,-3,6.1438723,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,5.0408578,8.0345707,39.26,57.46,31.92,55.57,6.666666666666667,1,1,0,0,4,10,3,1,1084,1347001.8,822025.75,245714.11,0,2825.0342 -11061,13643,24570,24571,-9,-9,1,0,22,1,1,0,1,1,-9,0,4,0,0,0,1,-15,0,0,-9,-9,2019,1,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.51,49.96,50.92,33.35,8.333333333333334,1,1,0,1,6,2,2,0,785.66669,269006.47,0,0,0,1160.0887 -11061,13643,24571,24570,-9,-9,1,1,37,1,1,0,3,3,-9,1,3,0,0,0,1,15,0,-9,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.92,33.35,61.51,49.96,6.666666666666667,1,1,0,0,0,2,2,0,785.66669,269006.47,0,0,0,1160.0887 -11061,13643,24572,-9,24570,24571,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1151.8944,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,2,0,785.66669,269006.47,0,0,0,1160.0887 -11062,13644,24573,24574,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2599907,8.154212,0,3,0,8.9558754,0,-9,-9,2019,26,11,37,37,1,11,0,10.235232,10.235232,0,0,0,0,0,0,0,0,0,0,27.56,66.96000000000001,51.73,58.82,8.333333333333334,1,1,0,0,7,7,5,0,330,-19207.93,90541.438,295034.5,176278.09,3402.1973 -11062,13644,24574,24573,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.8586168,8.4286337,0,3,0,85.698624,0,-9,-9,2019,6,0,60,45,1,0,0,11.400094,11.400094,0,0,0,0,0,0,0,0,0,0,51.73,58.82,27.56,66.96000000000001,8.333333333333334,1,1,0,0,5,7,5,0,330,-19207.93,90541.438,295034.5,176278.09,3402.1973 -11063,13645,24575,24576,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.4292102,7.7832723,0,3,1,37.100021,0,-9,-9,2019,12,0,30,30,1,0,0,6.1241803,6.1241803,0,0,0,0,0,0,0,0,0,0,45.25,49.46,30.75,61.56,8.333333333333334,1,1,0,0,3,8,5,1,640.5,230786.59,2309.9844,0,0,4777.6729 -11063,13645,24576,24575,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.617034,9.6486893,0,3,-1,133.03299,0,1,1,2019,11,0,51,54,1,0,0,26.955999,26.955999,0,0,0,0,0,0,0,0,3.1955695,0,30.75,61.56,45.25,49.46,6.666666666666667,1,1,0,0,9,8,5,1,640.5,230786.59,2309.9844,0,0,4777.6729 -11064,13646,24577,24578,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.9635811,7.3105941,7,1,104.12216,0,2,3,2019,9,1,0,0,4,1,0,0,0,1,0,4.6294303,0,0,1,1,0,7.0257068,0,57.98,32.94,53.35,51.35,6.666666666666667,1,1,0,0,4,13,2,1,893,834411.38,503471.78,211193.25,0,1495.127 -11064,13646,24578,24577,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,7,-1,-42.90889,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,53.35,51.35,57.98,32.94,8.333333333333334,1,1,0,0,0,13,2,1,893,834411.38,503471.78,211193.25,0,1495.127 -11064,13647,24579,-9,24578,24577,1,1,32,0,0,0,2,2,-9,0,3,8.3565264,8.638278,0,0,0,-1070.1476,0,2,3,2019,17,5,60,80,1,5,0,7.0786314,7.0786314,0,0,0,0,0,1,1,0,0,0,50.91,46.91,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,2415,-217760,38520.543,0,0,1305.7902 -11064,13648,24580,-9,24578,24577,1,0,37,0,0,0,2,2,-9,0,3,7.8669658,7.9040475,0,0,0,-956.74951,0,2,2,2019,6,0,38,38,1,0,0,9.1124983,9.1124983,0,0,0,0,2,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1296,-25752.705,66446.461,0,0,1441.4656 -11065,13649,24581,-9,24582,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1043.7358,-9,1,-9,2019,32,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,24.67,49.57,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,651.66669,484873.38,138994.22,0,0,2453.7429 -11065,13649,24582,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.7032146,8.876174,0,0,0,-954.96332,0,3,1,2019,11,0,49,50,1,0,0,14.654248,14.654248,0,0,0,0,2,0,0,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,651.66669,484873.38,138994.22,0,0,2453.7429 -11065,13649,24583,-9,24582,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1069.8818,-9,1,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,0,2,4,1,651.66669,484873.38,138994.22,0,0,2453.7429 -11066,13650,24584,-9,24587,24586,1,1,20,0,1,0,2,2,-9,0,5,7.5750709,7.6011019,0,0,0,-1076.5077,0,2,2,2019,9,1,25,32,1,1,1,9.4925232,9.4925232,0,0,0,0,0,1,1,0,3.1926627,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,705,-58180.68,-84771.414,0,0,1428.6749 -11066,13651,24585,-9,24587,24586,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-962.65479,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,.52153134,0,47,59,-9,-9,7,1,1,0,0,0,7,4,1,521.33331,1210826.8,1118277.6,187508.78,0,3299.6484 -11066,13651,24586,24587,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.6659889,8.6204548,0,6,6,-49.428429,0,-9,-9,2019,9,0,50,40,1,1,0,13.337127,13.337127,0,0,0,0,0,1,1,0,0,0,53,55,44.58,52.79,8,4,1,0,0,1,7,4,1,521.33331,1210826.8,1118277.6,187508.78,0,3299.6484 -11066,13651,24587,24586,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,6.3031363,6.5783277,0,6,-6,-49.587688,0,2,2,2019,19,6,10,15,1,6,0,8.9978981,8.9978981,0,0,0,0,0,1,1,0,0,0,44.58,52.79,53,55,3.333333333333333,1,1,0,0,6,7,4,1,521.33331,1210826.8,1118277.6,187508.78,0,3299.6484 -11067,13652,24588,24590,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,0,0,0,22,-6,79.290054,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.39,40.89,52,55,8.333333333333334,2,3,0,0,0,8,2,0,579,43987.793,-23182.215,0,0,1381.8734 -11067,13652,24589,-9,24588,24590,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1042.764,-9,2,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.17,45.44,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,579,43987.793,-23182.215,0,0,1381.8734 -11067,13652,24590,24588,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,7.2601204,7.3976912,0,9,6,-79.455933,0,3,3,2019,9,0,24,45,1,1,0,7.089191,7.089191,0,0,0,0,0,1,1,0,0,0,52,55,38.39,40.89,8,2,3,0,1,7,8,2,0,579,43987.793,-23182.215,0,0,1381.8734 -11067,13653,24591,-9,24588,24590,1,1,19,0,1,0,2,2,0,0,5,0,0,0,0,0,-929.26605,-9,2,3,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.05,56.09,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,156,0,0,0,0,1223.5417 -11068,13654,24592,24595,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,8.050952,7.6354709,0,6,-4,-158.22104,0,2,2,2019,11,0,38,0,1,0,0,7.6660013,7.6660013,0,0,0,0,0,1,1,0,0,0,53.59,49.64,55.66,45.88,8.333333333333334,1,1,0,0,7,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 -11068,13654,24593,-9,24592,24595,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 -11068,13654,24594,-9,24592,24595,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.84241,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 -11068,13654,24595,24592,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.3344927,8.3052092,0,6,4,69.740784,0,-9,3,2019,11,3,35,35,1,3,0,14.16616,14.16616,0,0,0,0,0,1,1,0,0,0,55.66,45.88,53.59,49.64,8.333333333333334,1,1,0,0,7,12,4,1,895,862115.63,569962.75,205020.66,23191.879,2925.1636 -11069,13655,24596,24597,-9,-9,1,1,92,0,0,0,2,2,-9,0,2,0,7.1099768,7.1797261,10,8,24.90823,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,6.6307759,7.5234652,37.83,37.31,59.95,34.83,3.333333333333333,1,1,0,0,0,12,2,1,307.5,219714.94,89453.313,147010,0,2061.4341 -11069,13655,24597,24596,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,0,0,10,-8,46.307625,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.95,34.83,37.83,37.31,8.333333333333334,1,1,0,0,0,12,2,1,307.5,219714.94,89453.313,147010,0,2061.4341 -11070,13656,24598,24599,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,1,0,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,0,9.8268099,0,0,1,1,0,0,0,44.59,35.14,44.41,46.23,6.666666666666667,1,1,0,0,0,13,1,0,643,-142638.97,0,0,0,2550.4158 -11070,13656,24599,24598,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,48,-1,0,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,27,1,1,0,0,0,44.41,46.23,44.59,35.14,6.666666666666667,1,1,0,0,0,13,1,0,643,-142638.97,0,0,0,2550.4158 -11071,13657,24600,24601,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.5236082,8.5133801,0,6,1,83.235199,0,-9,-9,2019,16,6,40,35,1,6,0,14.944129,14.944129,0,0,0,0,0,0,0,0,0,0,41.47,58.08,52.4,52.91,8.333333333333334,1,1,0,0,6,6,4,1,334,-17973.734,80336.367,180513.44,152052.44,2427.2014 -11071,13657,24601,24600,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,0,0,0,6,-1,57.642513,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,41.47,58.08,3.333333333333333,1,1,1,1,9,6,4,1,334,-17973.734,80336.367,180513.44,152052.44,2427.2014 -11072,13658,24602,24604,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.8925958,8.2149401,0,6,-3,42.802692,0,-9,-9,2019,16,4,38,24,1,4,0,9.4802494,9.4802494,0,0,0,0,0,0,0,0,0,0,44.53,48.49,49.73,47.22,1.666666666666667,1,1,0,0,7,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 -11072,13658,24603,-9,24602,24604,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.0288,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 -11072,13658,24604,24602,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.0308762,9.2078056,0,6,3,-97.600189,0,1,2,2019,9,2,67,58,1,2,0,19.581823,19.581823,0,0,0,0,0,0,0,0,0,0,49.73,47.22,44.53,48.49,8.333333333333334,1,1,0,0,7,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 -11072,13658,24605,-9,24602,24604,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.57727,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,592.25,304766,133893.56,475856,286023.13,5226.8638 -11073,13659,24606,-9,24608,24607,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.2654,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,311,258149.14,-2186.1023,433124.88,114291.37,4791.792 -11073,13659,24607,24608,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.8256941,8.4760447,0,18,0,-15.925327,0,3,2,2019,9,0,48,51,1,0,0,11.342943,11.342943,0,0,0,0,0,1,1,0,0,0,49.13,48.92,54.79,55.86,8.333333333333334,1,1,0,0,9,12,5,1,311,258149.14,-2186.1023,433124.88,114291.37,4791.792 -11073,13659,24608,24607,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.5259981,8.9265451,0,18,0,-110.90009,0,2,2,2019,6,0,35,35,1,0,0,23.872072,23.872072,0,0,0,0,0,1,1,0,0,0,54.79,55.86,49.13,48.92,8.333333333333334,1,1,0,0,5,12,5,1,311,258149.14,-2186.1023,433124.88,114291.37,4791.792 -11074,13660,24609,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1048.979,-9,-9,-9,2019,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,.42369407,0,20.46,61.36,-9,-9,6.666666666666667,1,1,0,0,3,5,1,0,541,142115.45,0,0,0,-502.62454 -11075,13661,24610,24611,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9248357,7.8713975,0,10,-4,-34.16449,0,2,2,2019,11,0,32,31,1,0,0,11.137438,11.137438,0,0,0,0,0,1,1,0,0,0,45.43,53.5,55.72,48.6,6.666666666666667,1,1,0,0,10,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 -11075,13661,24611,24610,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,6.7809596,6.5720401,0,10,4,63.511395,0,2,2,2019,6,0,55,50,1,0,0,1.6089995,1.6089995,0,0,0,0,0,1,1,0,6.4298077,0,55.72,48.6,45.43,53.5,6.666666666666667,1,1,0,0,11,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 -11075,13661,24612,-9,24610,24611,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.7727,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 -11075,13661,24613,-9,24610,24611,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1034.8181,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,3,1,785.25,-133139.5,25982.973,0,0,2363.7031 -11076,13662,24614,24615,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,6.8138781,6.9309402,7,8,-29.167362,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.67264336,7.1875606,52,48,49.1,23.9,7,1,1,0,0,0,8,3,1,1095,5042746,1715515.8,2023988,0,2350.2327 -11076,13662,24615,24614,-9,-9,1,0,56,0,0,0,1,1,-9,1,1,0,7.3577881,7.6147385,7,-8,-140.24867,0,2,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.4931989,7.8316898,49.1,23.9,52,48,6.666666666666667,1,1,0,0,0,8,3,1,1095,5042746,1715515.8,2023988,0,2350.2327 -11077,13663,24616,24617,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,65,2,-92.672516,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6568844,0,52.04,28.74,61.12,51.57,8.333333333333334,1,1,0,0,0,4,2,1,344.5,210114.42,0,224725,0,1590.2288 -11077,13663,24617,24616,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,4.8459396,4.5686908,65,-2,-5.8254046,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5845699,4.515728,61.12,51.57,52.04,28.74,10,1,1,0,0,0,4,2,1,344.5,210114.42,0,224725,0,1590.2288 -11078,13664,24618,-9,24620,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.6791,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 -11078,13664,24619,-9,24620,-9,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1045.7465,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 -11078,13664,24620,-9,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,5.8593049,7.6223431,7.3897743,0,0,-980.03052,0,2,1,2019,22,10,33,38,1,10,0,1.1716942,1.1716942,0,0,0,0,2,1,1,0,7.3299942,0,30.41,51.39,-9,-9,3.333333333333333,1,1,0,0,9,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 -11078,13664,24621,-9,24620,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1013.6066,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,0,717.25,62570.348,48485.852,0,0,2163.1548 -11079,13665,24622,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,8.796174,8.8407335,0,0,0,-957.11145,-9,3,3,2019,6,0,50,0,1,0,0,13.117625,13.117625,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,310,-8911.3506,-45666.441,0,0,3330.2839 -11080,13666,24623,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.9252982,8.0571985,0,0,0,-951.4212,0,3,3,2019,22,10,45,50,1,10,0,7.8354053,7.8354053,0,0,0,0,2,0,0,0,0,0,38.4,35.36,-9,-9,5,1,1,0,0,5,2,4,0,1206,339874.06,153227.3,280884.56,0,331.81369 -11081,13667,24624,24625,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.5447035,4.6814942,46,0,-43.023148,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.8639545,4.8701029,57.16,56.15,55.86,43.17,8.333333333333334,1,1,0,0,0,5,4,1,924.5,1190476.3,1097714.1,222120.16,0,2727.1265 -11081,13667,24625,24624,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.8101807,8.7142639,6.8259783,36,0,-31.616781,0,-9,2,2019,8,0,37,37,1,0,0,13.872909,13.872909,0,0,0,0,0,0,0,0,6.2495193,7.0176196,55.86,43.17,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,924.5,1190476.3,1097714.1,222120.16,0,2727.1265 -11082,13668,24626,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1109.5171,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.5152805,0,44,53.95,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,656,276751.59,0,0,0,1713.465 -11083,13669,24627,-9,24628,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.15247,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,667.5,75196.109,0,0,0,2396.7405 -11083,13669,24628,-9,-9,-9,1,0,41,0,2,0,2,2,-9,1,1,0,0,0,0,0,-987.08368,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,19.44,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,667.5,75196.109,0,0,0,2396.7405 -11084,13670,24629,24630,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.7818341,6.6023893,0,36,-1,24.454962,0,3,2,2019,8,0,15,17,1,0,0,7.8223248,7.8223248,0,0,0,0,0,1,1,0,8.8186312,0,54.2,57.49,54,53,8.333333333333334,4,2,0,0,10,7,5,1,1562.5,420358.78,269478.44,173136.97,33049.691,5826.4712 -11084,13670,24630,24629,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.8467979,8.7662144,0,7,1,-14.600589,-9,-9,-9,2019,8,0,24,0,1,0,0,28.391264,28.391264,0,0,0,0,0,1,1,0,0,0,54,53,54.2,57.49,8,1,1,0,0,1,7,5,1,1562.5,420358.78,269478.44,173136.97,33049.691,5826.4712 -11085,13671,24631,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.5534067,7.2495527,0,0,-1105.0664,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8463655,7.0627356,62.43,13.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,430,465237.66,88135.328,158296.94,0,1687.1884 -11086,13672,24632,24634,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,24,-1,12.237493,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.64,57.24,10,1,1,0,0,0,13,4,1,546.66669,362416.94,367433.94,188523.33,135598.47,4142.1768 -11086,13672,24633,-9,24632,24634,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.7064,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,546.66669,362416.94,367433.94,188523.33,135598.47,4142.1768 -11086,13672,24634,24632,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,9.0347633,9.4379826,0,24,1,-33.042984,0,3,3,2019,6,0,25,40,1,0,0,41.777363,41.777363,0,0,0,0,0,1,1,0,0,0,51.64,57.24,57.06,57.76,10,1,1,0,0,8,13,4,1,546.66669,362416.94,367433.94,188523.33,135598.47,4142.1768 -11086,13673,24635,-9,24632,24634,1,0,20,0,2,1,2,0,0,0,5,0,0,0,0,0,-1052.5311,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,461,301543.25,0,0,0,-235.84589 -11086,13674,24636,-9,24632,24634,1,0,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-999.94696,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,1,1,2866,257293.83,0,0,0,23.270615 -11087,13675,24637,-9,24639,24640,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.8965,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 -11087,13675,24638,-9,24639,24640,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.49957,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 -11087,13675,24639,24640,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,0,0,0,7,-15,-25.988562,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,46.44,59.62,48.06,51.06,3.333333333333333,1,1,0,0,0,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 -11087,13675,24640,24639,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,6.8014874,6.3987522,0,7,15,-62.804535,0,3,3,2019,13,1,16,16,1,1,0,5.2662005,5.2662005,0,0,0,0,2,1,1,0,0,0,48.06,51.06,46.44,59.62,5,1,1,0,0,8,4,2,0,878.75,189093.39,229001.98,109466.1,47032.211,1496.7355 -11088,13676,24641,-9,24643,24642,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-936.53754,-9,2,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,1.7596383,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 -11088,13676,24642,24643,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,7.8519592,7.799376,0,27,3,-79.18718,0,3,3,2019,6,0,40,50,1,0,0,8.3056335,8.3056335,0,0,0,0,14.5,1,1,0,2.5325642,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,9,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 -11088,13676,24643,24642,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.2959876,7.2494683,0,27,-3,7.026125,0,2,2,2019,8,0,20,26,1,0,0,10.807522,10.807522,0,0,0,0,14.5,1,1,0,.97705728,0,52,54.51,52,54.51,6.666666666666667,1,1,0,0,9,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 -11088,13676,24644,-9,24643,24642,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1047.2407,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,1.9089282,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,558,500276.13,258577.14,140766.27,0,2090.5015 -11089,13677,24645,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.5277853,6.2461505,0,0,-987.43286,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.1620777,3.8547325,21.559341,0,1,1,0,0,6.5526218,57.08,33.34,-9,-9,10,1,1,0,0,0,12,2,1,830,232618.8,-44780.828,88926.992,0,904.5155 -11090,13678,24646,24647,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.4544802,8.3420258,0,29,-1,64.443352,0,1,3,2019,9,0,37,37,1,0,0,15.514662,15.514662,0,0,0,0,0,1,1,0,0,0,41.99,52.17,47.52,57.75,8.333333333333334,1,1,0,0,10,2,5,0,1271.5,332114,243470.31,158154.69,110200.33,3502.0818 -11090,13678,24647,24646,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.5741997,8.4866056,0,27,1,15.034992,0,3,3,2019,11,0,39,43,1,0,0,15.053475,15.053475,0,0,0,0,0,1,1,0,0,0,47.52,57.75,41.99,52.17,8.333333333333334,1,1,0,0,12,2,5,0,1271.5,332114,243470.31,158154.69,110200.33,3502.0818 -11090,13679,24648,-9,24646,24647,1,0,23,0,0,0,1,1,-9,0,4,7.8319125,8.1735229,0,0,0,-984.02179,0,2,1,2019,9,0,38,38,1,0,1,8.342452,8.342452,0,0,0,0,0,1,1,0,0,0,42.22,58.79,-9,-9,8.333333333333334,1,1,0,0,2,2,4,0,176,-200953.22,0,0,0,1167.0302 -11090,13680,24649,-9,24646,24647,1,0,21,0,0,0,1,1,1,0,4,7.336165,7.2794914,0,0,0,-1041.4899,-9,2,1,2019,17,5,28,0,1,5,1,6.30267,6.30267,0,0,0,0,0,1,1,0,0,0,17.19,62.49,-9,-9,6.666666666666667,1,1,0,0,1,2,3,0,557,-158296.69,20352.387,0,0,584.43243 -11090,13681,24650,-9,24646,24647,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-950.85651,-9,2,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,0,2,1,0,435,0,0,0,0,0 -11090,13682,24651,-9,24646,24647,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-918.24774,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.48960114,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,1,0,1317,-411636.72,0,0,0,274.29684 -11091,13683,24652,-9,24653,24654,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-905.24506,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 -11091,13683,24653,24654,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.7450085,8.7673435,0,19,-2,1.590306,0,2,3,2019,7,0,50,50,1,0,0,17.268909,17.268909,0,0,0,0,0,0,0,0,5.0110984,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 -11091,13683,24654,24653,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.8540707,9.6987858,0,10,2,18.061043,0,-9,-9,2019,9,0,45,45,1,0,0,38.223171,38.223171,0,0,0,0,0,0,0,0,4.8476176,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 -11091,13683,24655,-9,24653,24654,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.8407,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 -11091,13683,24656,-9,24653,24654,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.28638,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,377.60001,905319.75,539450.81,761638.75,213113,7286.5181 -11092,13684,24657,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.3747873,8.125205,6.6811595,0,0,-997.88757,0,2,2,2019,11,1,23,0,1,1,0,7.7969351,7.7969351,0,0,0,0,0,1,1,0,6.8881345,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,816,-162716.55,0,0,0,1923.5634 -11093,13685,24658,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.0783491,8.0646658,0,0,0,-1017.9348,0,2,1,2019,8,0,30,55,1,0,0,14.755928,14.755928,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1081,351999.63,91008.391,450932,0,1048.7042 -11094,13686,24659,24660,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,6.8457031,7.0165267,51,2,-11.417181,0,3,2,2019,20,9,0,0,4,9,0,0,0,0,14.956324,4.2528315,0,0,1,1,0,7.3944607,7.3316216,42.19,35.2,57.16,56.15,3.333333333333333,1,1,0,0,0,5,2,1,1122.5,578566.81,133779.38,179121.7,0,2127.7856 -11094,13686,24660,24659,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,51,-2,39.524143,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.19,35.2,8.333333333333334,1,1,0,0,0,5,2,1,1122.5,578566.81,133779.38,179121.7,0,2127.7856 -11095,13687,24661,-9,-9,-9,1,0,38,0,3,0,1,1,-9,0,4,9.052372,9.2459755,0,0,0,-922.36499,0,1,1,2019,25,11,38,34,1,11,0,38.407791,38.407791,0,0,0,0,0,1,1,0,3.933686,0,17.63,68.89,-9,-9,3.333333333333333,1,1,0,1,9,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 -11095,13687,24662,-9,24661,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.2892,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 -11095,13687,24663,-9,24661,-9,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.25122,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 -11095,13687,24664,-9,24661,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.53204,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,753.75,275548.09,17943.195,42847.586,62158.352,3361.1807 -11096,13688,24665,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,7.2998719,6.587914,0,0,-954.40039,0,-9,-9,2019,6,1,0,0,4,1,0,0,0,1,0,11.27485,0,0,1,1,0,2.6308014,7.2136331,47.51,44.08,-9,-9,8,1,1,0,0,0,5,2,1,254,254714.7,23787.016,159953.03,0,1420.9021 -11097,13689,24666,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5136976,8.3771782,0,0,0,-1055.3254,0,2,2,2019,9,1,41,40,1,1,0,16.464333,16.464333,0,0,0,0,0,0,0,0,1.2954862,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,188,338836.66,95863.391,46679.129,0,1656.1563 -11097,13690,24667,-9,24666,-9,1,1,24,0,0,0,2,2,-9,0,2,7.0021157,6.9860291,0,0,0,-1060.6577,0,2,-9,2019,12,0,20,18,1,0,1,6.1494365,6.1494365,0,0,0,0,0,0,0,0,0,0,44.94,49.91,-9,-9,3.333333333333333,1,1,0,1,5,12,2,1,699,-164343.52,-16819.787,0,0,840.0451 -11098,13691,24668,-9,24669,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-821.46045,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 -11098,13691,24669,24670,-9,-9,1,0,40,0,2,0,1,1,-9,1,2,8.1029272,8.0349102,0,9,3,32.984615,0,2,2,2019,12,1,39,37,1,1,0,10.416839,10.416839,0,0,0,0,0,1,1,0,0,0,52.29,23.64,40.15,42.79,8.333333333333334,1,1,0,0,7,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 -11098,13691,24670,24669,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.31077,8.5117779,0,9,-3,-149.5536,0,2,2,2019,12,1,55,55,1,1,0,9.7990761,9.7990761,0,0,0,0,0,1,1,0,0,0,40.15,42.79,52.29,23.64,6.666666666666667,1,1,0,0,9,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 -11098,13691,24671,-9,24669,24670,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.69409,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,1409,208619.19,4041.655,123881.54,31336.744,3931.9128 -11099,13692,24672,24673,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,8.3195276,8.3906641,50,2,89.518158,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.376236,8.3980446,36.83,56.69,55.79,52.62,6.666666666666667,1,1,0,0,4,6,4,1,380.5,1363665.8,765107.13,211433.91,0,3753.2368 -11099,13692,24673,24672,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.7461185,7.9842906,50,-2,160.57724,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.0938025,7.8555765,55.79,52.62,36.83,56.69,8.333333333333334,1,1,0,0,0,6,4,1,380.5,1363665.8,765107.13,211433.91,0,3753.2368 -11100,13693,24674,24675,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.7249289,5.5361261,51,-3,12.845984,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3939419,5.584404,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,11,2,1,217,397578.13,118395.09,122919.39,0,1858.2478 -11100,13693,24675,24674,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7908297,6.9690123,51,3,-144.70187,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2865229,6.8667984,60.12,54.8,57.16,56.15,10,1,1,0,0,0,11,2,1,217,397578.13,118395.09,122919.39,0,1858.2478 -11101,13694,24676,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.91681,5.9784894,0,0,-1022.2378,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.2994051,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,1003,43221.895,47811.441,134801.56,0,747.92609 -11102,13695,24677,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,2,8.2728701,8.1876173,0,0,0,-914.98199,0,2,2,2019,17,5,37,37,1,5,0,11.605194,11.605194,0,0,0,0,0,1,1,0,0,0,52.45,15.28,-9,-9,5,1,1,0,0,8,11,4,1,640,221323.25,27093.557,192461.38,0,1107.9536 -11102,13695,24678,-9,24677,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.6725,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,640,221323.25,27093.557,192461.38,0,1107.9536 -11103,13696,24679,24680,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.6928902,9.0147676,32,1,62.353611,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.595386,8.7722263,53.39,52.35,59.61,41.45,8.333333333333334,1,1,0,0,0,10,5,1,559.5,1630035.9,1395741,461437.38,0,5175.6875 -11103,13696,24680,24679,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.5891657,7.3808384,32,-1,-81.152618,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4361749,6.8846192,59.61,41.45,53.39,52.35,8.333333333333334,1,1,0,0,0,10,5,1,559.5,1630035.9,1395741,461437.38,0,5175.6875 -11104,13697,24681,-9,24683,24682,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-927.24146,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,578.66669,365907.59,93915.313,254415.14,134969.73,2853.5947 -11104,13697,24682,24683,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.9454594,8.3474493,0,8,1,-73.339363,0,3,3,2019,10,0,38,38,1,0,0,16.557257,16.557257,0,0,0,0,0,1,1,0,1.7873466,0,51.9,53.61,53.87,40.03,8.333333333333334,1,1,0,0,9,12,4,1,578.66669,365907.59,93915.313,254415.14,134969.73,2853.5947 -11104,13697,24683,24682,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,7.3483992,7.3542228,0,8,-1,-17.953129,0,3,3,2019,12,0,12,13,1,0,0,17.076418,17.076418,0,0,0,0,0,1,1,0,.67519188,0,53.87,40.03,51.9,53.61,8.333333333333334,1,1,0,0,9,12,4,1,578.66669,365907.59,93915.313,254415.14,134969.73,2853.5947 -11105,13698,24684,-9,-9,-9,1,0,42,2,2,0,2,2,-9,0,4,7.7295122,7.4907331,0,0,0,-951.74237,0,3,2,2019,12,0,45,40,1,0,0,4.7193089,4.7193089,0,0,0,0,14.5,1,0,1,0,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,1,7,9,2,0,307,266880.22,-31802.24,0,0,1747.754 -11105,13699,24685,-9,24687,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.8143,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,1,0,423,101578.55,0,0,0,717.39868 -11105,13699,24686,-9,24687,-9,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-920.16211,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,1,0,423,101578.55,0,0,0,717.39868 -11105,13699,24687,-9,24684,-9,1,0,24,2,2,0,2,2,-9,0,4,0,0,0,0,0,-984.21143,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,56.02,48.45,-9,-9,8.333333333333334,1,1,0,0,7,9,1,0,423,101578.55,0,0,0,717.39868 -11105,13700,24688,-9,24684,-9,1,0,18,2,2,0,2,2,-9,1,2,7.4896889,7.507443,0,0,0,-892.5127,-9,2,-9,2019,20,7,38,0,1,7,1,5.3087282,5.3087282,0,0,0,0,0,1,0,1,0,0,37.42,30.57,-9,-9,1.666666666666667,1,1,0,0,2,9,3,0,1200,217771.39,8722.6494,0,0,1160.1842 -11106,13701,24689,24690,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.3060207,8.1379709,0,8,-14,54.893833,0,-9,-9,2019,5,0,40,38,1,0,0,10.111988,10.111988,0,0,0,0,0,0,0,0,0,0,54.82,58.93,49.18,51.78,10,2,3,0,0,11,8,5,1,840,608174.25,231211.19,381522.06,0,3079.2642 -11106,13701,24690,24689,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.1869621,8.1637554,0,29,14,17.330847,0,3,3,2019,10,0,52,42,1,0,0,12.837619,12.837619,0,0,0,0,0,0,0,0,2.7314305,0,49.18,51.78,54.82,58.93,8.333333333333334,2,3,0,0,11,8,5,1,840,608174.25,231211.19,381522.06,0,3079.2642 -11106,13702,24691,-9,24689,24690,1,0,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-904.29388,-9,2,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,61.34,50.31,-9,-9,8.333333333333334,2,3,0,0,2,8,2,1,392,-289308,0,0,0,0 -11106,13703,24692,-9,24689,24690,1,1,23,0,0,1,1,0,0,0,4,0,0,0,0,0,-933.16809,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,710,-68590.523,0,0,0,0 -11107,13704,24693,24694,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.9566855,6.2070904,9,2,-20.231365,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,10.654874,0,0,1,1,0,.089825086,6.1860933,54,46,52,46,8,1,1,0,0,0,2,2,1,317.5,455523.34,113959.35,283279.91,0,985.9541 -11107,13704,24694,24693,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,-2,-72.987587,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,2,2,1,317.5,455523.34,113959.35,283279.91,0,985.9541 -11108,13705,24695,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-909.83508,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,12.412879,0,0,1,1,0,0,0,60.89,44.94,-9,-9,10,1,1,0,0,0,11,1,0,725,-141949.28,0,0,0,1021.843 -11109,13706,24696,24697,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,7.9131904,7.8602252,0,8,-10,-116.78194,0,2,2,2019,5,0,8,8,1,0,0,39.585087,39.585087,0,0,0,0,0,0,0,0,1.244427,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,8,5,5,1,1427.6666,689689.69,525106.81,315673.84,144957.34,4730.6733 -11109,13706,24697,24696,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,8.8551321,9.2699308,0,8,10,-15.676661,0,2,2,2019,6,0,38,38,1,0,0,34.712738,34.712738,0,0,0,0,0,0,0,0,6.9161897,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,10,5,5,1,1427.6666,689689.69,525106.81,315673.84,144957.34,4730.6733 -11109,13706,24698,-9,24696,24697,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.7839,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1427.6666,689689.69,525106.81,315673.84,144957.34,4730.6733 -11110,13707,24699,24701,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,8.0050564,8.2011023,0,18,1,8.0639467,0,2,2,2019,7,0,42,53,1,0,0,10.748901,10.748901,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.25,36.27,8.333333333333334,1,1,0,0,9,7,3,0,658,5756.6597,-36652.895,0,0,2733.1331 -11110,13707,24700,-9,24701,24699,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1088.4713,-9,2,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,658,5756.6597,-36652.895,0,0,2733.1331 -11110,13707,24701,24699,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,7.0002718,7.0826559,0,20,-1,-84.404938,0,2,2,2019,10,0,40,0,1,0,0,3.112577,3.112577,0,0,0,0,0,1,1,0,0,0,54.25,36.27,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,0,658,5756.6597,-36652.895,0,0,2733.1331 -11111,13708,24702,24703,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.2444501,7.2402039,0,6,1,-71.504814,0,3,3,2019,14,3,30,45,1,3,0,6.272223,6.272223,0,0,0,0,71.5,1,1,0,7.6982055,0,55.76,44.76,56.92,20.07,8.333333333333334,1,1,0,0,6,12,2,1,493.5,110314.51,10445.766,0,0,1873.7395 -11111,13708,24703,24702,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,0,0,6,-1,-130.06857,0,3,3,2019,18,0,0,0,3,6,0,0,0,0,0,0,0,5.48,1,1,0,4.0519061,0,56.92,20.07,55.76,44.76,3.333333333333333,1,1,0,0,0,12,2,1,493.5,110314.51,10445.766,0,0,1873.7395 -11111,13709,24704,-9,24703,24702,1,0,38,0,0,0,2,2,-9,0,4,7.8763623,7.9539514,0,0,0,-827.117,-9,2,2,2019,11,0,84,0,1,1,1,5.2515516,5.2515516,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,12,4,1,3024,411958,120470.14,0,0,1213.0343 -11111,13710,24705,-9,24704,-9,1,0,21,0,0,0,2,2,-9,0,3,7.1808124,7.1163883,0,0,0,-920.67792,0,2,-9,2019,7,0,35,30,1,0,1,3.8912787,3.8912787,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,10,1,1,0,0,5,12,3,1,238,-258787.19,0,0,0,1185.1534 -11111,13711,24706,-9,-9,-9,1,1,32,0,0,0,3,3,-9,1,4,0,0,0,0,0,-999.42963,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,4,6,0,0,0,12,1,1,400,-253380.09,0,0,0,1240.422 -11112,13712,24707,24708,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1204424,8.2940073,0,8,12,60.206982,0,3,-9,2019,8,0,38,40,1,0,0,9.1865292,9.1865292,0,0,0,0,0,1,1,0,0,0,63.26,45.23,48.55,45.7,8.333333333333334,1,1,0,1,10,4,3,1,695.5,1237727.5,863389.88,267118.16,0,1685.0624 -11112,13712,24708,24707,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,8,-12,97.596024,0,2,3,2019,8,1,0,36,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.55,45.7,63.26,45.23,5,1,1,1,1,7,4,3,1,695.5,1237727.5,863389.88,267118.16,0,1685.0624 -11113,13713,24709,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1016.5962,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,2.330893,0,23.448168,0,1,1,0,0,0,31.13,28.05,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,545,218612.72,0,0,0,1630.6061 -11114,13714,24710,24711,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.5819893,8.6971569,0,10,1,-81.347321,0,-9,-9,2019,9,0,40,0,1,0,0,14.176806,14.176806,0,0,0,0,0,0,0,0,0,0,57.45,49.27,32.52,53.72,8.333333333333334,1,1,0,0,11,5,5,1,641.5,468.17969,55531.082,177825.22,83394.594,3959.5554 -11114,13714,24711,24710,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.5949306,8.2947025,0,29,-1,23.801104,0,-9,-9,2019,13,1,40,38,1,1,0,11.919383,11.919383,0,0,0,0,0,0,0,0,0,0,32.52,53.72,57.45,49.27,3.333333333333333,1,1,0,1,12,5,5,1,641.5,468.17969,55531.082,177825.22,83394.594,3959.5554 -11115,13715,24712,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.9857283,7.926475,0,0,0,-1145.0465,0,3,3,2019,12,0,30,30,1,0,0,10.928655,10.928655,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,12,8,4,1,502,-65257.855,23127.346,0,0,1238.0724 -11115,13716,24713,-9,24712,-9,1,1,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-927.87732,0,1,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,0,0,0,8,1,1,1720,167887.86,0,0,0,495.24863 -11116,13717,24714,24715,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.9454489,7.9711089,58,0,46.502033,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8927379,7.6284037,55.07,27.93,49.06,58.64,10,1,1,0,0,0,12,3,1,507.5,1065768.1,236407.78,398441.59,0,2276.9365 -11116,13717,24715,24714,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,4.6192284,4.2909346,58,0,-96.117676,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.3039999,49.06,58.64,55.07,27.93,10,1,1,0,0,0,12,3,1,507.5,1065768.1,236407.78,398441.59,0,2276.9365 -11117,13718,24716,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.0090923,7.2620907,0,0,0,-1019.4809,-9,1,1,2019,10,2,28,0,1,2,0,5.916925,5.916925,0,0,0,0,0,1,0,1,0,0,32.95,36.65,-9,-9,3.333333333333333,1,1,0,0,10,2,3,0,204,111524.87,-80371.156,0,0,1180.01 -11118,13719,24717,24718,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.444663,8.884922,49,5,20.483377,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8850918,8.8054123,59.88,48.2,53.74,44.11,8.333333333333334,1,1,0,0,7,2,5,1,893.5,1734901.3,1116175,366024.69,0,6312.1826 -11118,13719,24718,24717,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.6443415,7.9447522,49,-5,92.903954,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.6081724,7.8659806,53.74,44.11,59.88,48.2,6.666666666666667,1,1,0,0,0,2,5,1,893.5,1734901.3,1116175,366024.69,0,6312.1826 -11119,13720,24719,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.2688,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,6.3240519,6.7747259,0,0,1,1,0,0,0,67.41,31.51,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,220,125460.56,0,189622.92,0,1341.3707 -11120,13721,24720,24721,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,6.4586954,6.4445977,39,-7,116.9713,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6356649,6.264977,55.36,54.24,61.26,51.57,10,1,1,0,0,0,6,3,1,417.5,428545.69,425722.38,186203.34,0,2728.1021 -11120,13721,24721,24720,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.5857844,7.6363211,39,7,-62.961624,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.5680628,7.623539,61.26,51.57,55.36,54.24,8.333333333333334,1,1,0,0,0,6,3,1,417.5,428545.69,425722.38,186203.34,0,2728.1021 -11121,13722,24722,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.2924118,7.203311,0,0,0,-926.71332,0,3,2,2019,4,0,16,16,1,0,0,9.138422,9.138422,0,0,0,0,0,1,1,0,0,0,41.05,58.43,-9,-9,8.333333333333334,1,1,0,1,6,12,2,1,476,387013.13,151961.88,0,0,1333.1196 -11121,13722,24723,-9,24722,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.01733,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,1,476,387013.13,151961.88,0,0,1333.1196 -11122,13723,24724,-9,-9,24725,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.97491,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,236,388470.19,-11754.586,450077.31,93251.016,1849.4056 -11122,13723,24725,-9,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,7.7845368,7.7965474,0,0,0,-993.31726,0,-9,-9,2019,9,0,36,36,1,0,0,6.1270571,6.1270571,0,0,0,0,0,1,1,0,0,0,60.06,39.82,-9,-9,6.666666666666667,1,1,0,1,10,10,3,0,236,388470.19,-11754.586,450077.31,93251.016,1849.4056 -11123,13724,24726,24727,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,5.9887128,5.5358877,7,7,-16.218214,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7541671,44.68,56.37,52.81,41.69,8.333333333333334,1,1,0,0,7,12,2,1,383,580016.75,142815.31,354119.78,0,1289.4083 -11123,13724,24727,24726,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-7,-104.81467,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.81,41.69,44.68,56.37,5,1,1,0,0,7,12,2,1,383,580016.75,142815.31,354119.78,0,1289.4083 -11124,13725,24728,-9,24729,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.62805,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,852,-128129.26,8459.6309,0,0,1888.9731 -11124,13725,24729,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.6732612,7.5160246,5.9531155,0,0,-1199.8148,0,3,2,2019,8,0,30,16,1,0,0,6.4421678,6.4421678,0,0,0,0,0,1,1,0,5.8638086,0,60.45,43.75,-9,-9,10,1,1,0,0,12,6,3,1,852,-128129.26,8459.6309,0,0,1888.9731 -11125,13726,24730,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.7969952,8.7602367,0,0,0,-1061.4076,0,2,3,2019,8,0,84,57,1,0,0,8.6634264,8.6634264,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,749,1416797.4,383922.5,738306.13,0,1850.356 -11126,13727,24731,24733,-9,-9,1,0,30,0,3,0,2,2,-9,0,4,6.5618777,6.5978785,0,7,0,-91.862434,0,3,2,2019,6,0,15,25,1,0,0,6.9197316,6.9197316,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,9,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 -11126,13727,24732,-9,24731,24733,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.632,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 -11126,13727,24733,24731,-9,-9,1,1,30,0,3,0,2,2,-9,0,5,8.9693079,9.1966925,0,7,0,4.1545177,0,3,-9,2019,5,0,64,40,1,0,0,16.899231,16.899231,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,9,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 -11126,13727,24734,-9,24731,24733,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.62305,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 -11126,13727,24735,-9,24731,24733,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.3644,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,748.40002,53987.926,-29832.988,79981.547,73243.82,3406.1414 -11127,13728,24736,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,8.12988,8.4503069,0,0,-1123.9152,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1705294,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,934,1639934.1,125838.32,1004533.1,0,1907.089 -11127,13729,24737,-9,24736,-9,1,0,58,0,0,0,1,1,-9,0,4,8.5662479,8.8686914,4.1001778,0,0,-993.60162,0,2,1,2019,7,0,55,58,1,0,0,16.434044,16.434044,0,0,0,0,0,1,1,0,0,4.1203876,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,6,7,5,1,869,1071415.1,863532.25,175227.78,53894.266,1472.1599 -11128,13730,24738,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.7327518,6.4744687,0,0,-995.30804,0,2,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5878587,51.28,9.49,-9,-9,10,1,1,0,0,0,12,2,0,395,314840.19,236163.2,113776.98,45678.477,2107.2339 -11129,13731,24739,24740,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.1294041,7.4268479,35,-2,-54.193214,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,7.1174664,56.26,38.87,51.83,57.2,8.333333333333334,2,3,0,0,8,8,5,1,411.5,3537469,3074027,559573.75,0,7985.1235 -11129,13731,24740,24739,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.4294767,9.5841141,8.4690323,35,2,-32.828449,0,1,1,2019,10,2,20,25,1,2,0,74.517799,74.517799,0,0,0,0,0,0,0,0,4.2822309,8.8293276,51.83,57.2,56.26,38.87,10,2,3,0,0,10,8,5,1,411.5,3537469,3074027,559573.75,0,7985.1235 -11130,13732,24741,24742,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,3.44241,3.4543855,3,6,-30.352966,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4919984,58.98,15.36,41.95,22.45,6.666666666666667,1,1,0,0,0,2,4,0,829,408815.06,295212.03,217467.34,0,3256.9873 -11130,13732,24742,24741,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,8.2471552,8.2649603,5.6490808,3,-6,-183.89902,0,3,3,2019,23,8,98,60,1,8,0,4.7383504,4.7383504,0,0,0,0,2,1,1,0,0,5.6548443,41.95,22.45,58.98,15.36,3.333333333333333,1,1,0,0,12,2,4,0,829,408815.06,295212.03,217467.34,0,3256.9873 -11131,13733,24743,24744,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,8.4546795,8.2361279,9,0,-17.804638,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5302753,61.12,51.57,54.79,55.86,10,1,1,0,0,0,12,4,1,350.5,1040188,474991.06,382213.19,0,3435.1108 -11131,13733,24744,24743,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,9,0,-131.71358,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.79,55.86,61.12,51.57,10,1,1,0,0,0,12,4,1,350.5,1040188,474991.06,382213.19,0,3435.1108 -11132,13734,24745,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,6.9046888,7.3682089,0,0,-1020.7974,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.3533995,7.4682922,62.39,56.71,-9,-9,10,1,1,0,0,10,8,3,1,321,1311290.6,137669.94,631339.75,0,844.38214 -11133,13735,24746,24748,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.645349,7.6834178,0,8,-2,32.572723,0,2,1,2019,19,7,30,30,1,7,0,6.9627352,6.9627352,0,0,0,0,0,1,1,0,0,0,52.97,51.29,36.78,43.04,5,2,3,0,1,9,4,5,1,669,341299.81,56380.172,177432.3,100415.69,4318.6377 -11133,13735,24747,-9,24746,24748,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-914.02716,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,4,5,1,669,341299.81,56380.172,177432.3,100415.69,4318.6377 -11133,13735,24748,24746,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,9.300375,8.9743271,0,8,2,-16.056252,0,2,2,2019,22,10,55,85,1,10,0,23.989971,23.989971,0,0,0,0,0,1,1,0,3.4386263,0,36.78,43.04,52.97,51.29,3.333333333333333,1,1,0,0,9,4,5,1,669,341299.81,56380.172,177432.3,100415.69,4318.6377 -11134,13736,24749,24750,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.3217845,4.4014668,25,1,-38.766933,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.6373374,4.4624691,41.26,55.04,57.18,45.76,8.333333333333334,1,1,1,0,1,6,5,1,494,2583242,2337529.8,255265.28,0,3994.2485 -11134,13736,24750,24749,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,9.2518072,9.1264,0,8,-1,43.1045,0,-9,-9,2019,7,0,40,40,1,0,0,33.737396,33.737396,0,0,0,0,0,1,1,0,0,0,57.18,45.76,41.26,55.04,5,1,1,0,0,3,6,5,1,494,2583242,2337529.8,255265.28,0,3994.2485 -11135,13737,24751,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.3069286,7.932725,0,0,0,-829.21582,0,-9,2,2019,12,0,50,50,1,0,0,7.1347275,7.1347275,0,0,0,0,0,0,0,0,0,0,39.29,41.42,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,338,-82682.633,56285.051,0,0,1427.833 -11135,13738,24752,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-905.16956,1,-9,-9,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48.58,46.62,-9,-9,5,1,1,0,0,3,11,1,1,2909,0,0,0,0,0 -11136,13739,24753,24754,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.558548,8.5533524,0,10,4,71.58461,0,2,2,2019,11,3,42,43,1,3,0,14.792682,14.792682,0,0,0,0,0,0,0,0,4.3833289,0,36.43,60.14,57.16,56.15,6.666666666666667,1,1,0,0,11,13,5,1,614.5,-42692.656,219118.03,165005.94,132149.73,4212.6885 -11136,13739,24754,24753,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.2521725,8.6860628,0,10,-4,108.42386,0,2,2,2019,6,0,33,26,1,0,0,17.115088,17.115088,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,36.43,60.14,8.333333333333334,1,1,0,0,10,13,5,1,614.5,-42692.656,219118.03,165005.94,132149.73,4212.6885 -11136,13740,24755,-9,24754,24753,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1095.2982,0,1,1,2019,13,3,0,30,3,3,1,0,0,0,0,0,0,0,0,0,0,4.5453472,0,49.07,53.11,-9,-9,8.333333333333334,1,1,0,0,4,13,2,1,303,0,0,0,0,299.06467 -11136,13741,24756,-9,24754,24753,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-997.50104,-9,1,1,2019,19,7,0,0,3,7,1,0,0,0,0,0,0,2,0,0,0,0,0,28.52,62.72,-9,-9,6.666666666666667,1,1,1,0,0,13,1,1,268,0,0,0,0,0 -11137,13742,24757,24758,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.6989603,6.4270797,9,12,-55.879074,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.5037804,6.2031698,34.57,50.44,31.49,43.99,8.333333333333334,1,1,0,0,8,6,3,1,1125,301172.41,40711.109,139104.42,0,2264.5544 -11137,13742,24758,24757,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.8567896,7.8512983,0,9,-12,-49.401661,0,-9,-9,2019,21,9,38,37,1,9,0,9.2349863,9.2349863,0,0,0,0,0,1,1,0,3.4771004,0,31.49,43.99,34.57,50.44,3.333333333333333,1,1,0,1,11,6,3,1,1125,301172.41,40711.109,139104.42,0,2264.5544 -11138,13743,24759,24762,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,7.3756557,7.8147922,0,16,-1,1.3851868,0,2,2,2019,8,1,47,46,1,1,0,4.1826591,4.1826591,0,0,0,0,0,0,0,0,6.1564388,0,47.07,53.97,44.5,54.04,8.333333333333334,1,1,0,0,11,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 -11138,13743,24760,-9,24762,24759,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5277,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 -11138,13743,24761,-9,24762,24759,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.05872,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 -11138,13743,24762,24759,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,6.8222361,6.834332,0,16,1,52.132534,0,2,3,2019,13,5,12,10,1,5,0,7.7273164,7.7273164,0,0,0,0,0,0,0,0,9.4468632,0,44.5,54.04,47.07,53.97,8.333333333333334,1,1,0,0,8,9,3,1,1745.75,-29641.23,0,0,0,8001.5859 -11139,13744,24763,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,4.6179471,4.5428762,0,0,-1105.947,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.0513477,55,43,-9,-9,8,1,1,0,0,0,9,2,1,2486,623732.63,95097.07,301115.22,0,1125.4882 -11140,13745,24764,-9,-9,-9,1,0,48,0,1,0,3,3,-9,1,4,0,0,0,0,0,-964.08783,-9,3,3,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,33.92,46.63,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,958,19242.867,0,146525.92,29086.84,1931.2031 -11140,13745,24765,-9,24764,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1070.0614,-9,3,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,55.67,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,958,19242.867,0,146525.92,29086.84,1931.2031 -11141,13746,24766,24767,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.4720745,8.254674,0,21,-5,13.541862,0,2,3,2019,11,0,40,36,1,0,0,10.263014,10.263014,0,0,0,0,71.5,0,0,0,0,0,43.61,56.01,34.05,44.25,5,1,1,0,0,11,11,4,1,1191.3334,471979.03,311176.91,87648.188,62840.285,2697.9741 -11141,13746,24767,24766,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,7.6083684,7.3398142,0,21,5,52.381187,0,3,3,2019,12,1,20,20,1,1,0,13.62344,13.62344,0,0,0,0,71.5,0,0,0,0,0,34.05,44.25,43.61,56.01,3.333333333333333,1,1,0,0,11,11,4,1,1191.3334,471979.03,311176.91,87648.188,62840.285,2697.9741 -11141,13746,24768,-9,24766,24767,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1003.9573,-9,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,11,4,1,1191.3334,471979.03,311176.91,87648.188,62840.285,2697.9741 -11141,13747,24769,-9,24766,24767,1,1,24,0,0,0,2,2,-9,0,4,8.0758972,7.799696,0,0,0,-933.02173,0,2,3,2019,11,0,48,108,1,0,1,9.9072285,9.9072285,0,0,0,0,0,0,0,0,1.6950476,0,49.46,56.91,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,426,-265607.25,-48036.781,0,0,1894.5981 -11142,13748,24770,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-982.55054,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.11,24.32,-9,-9,5,1,1,0,0,0,7,1,0,306,-37077.754,140784.11,123556.32,60569.781,686.02496 -11143,13749,24771,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.9367943,9.174799,0,0,0,-965.98889,0,2,2,2019,12,1,50,54,1,1,0,23.227272,23.227272,0,0,0,0,2,0,0,0,7.5317283,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,163,647833.81,1136361.4,208068.22,158627.73,3944.8542 -11144,13750,24772,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.3865585,8.270854,0,0,-950.91669,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8508849,8.4219866,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,1054,1031733.6,769800.13,160930.48,0,3071.9185 -11145,13751,24773,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,4.9247508,5.0735106,0,0,-961.32263,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,4.7768917,0,41.28,60.79,-9,-9,6.666666666666667,3,4,0,0,0,4,2,0,1125,173420.28,0,0,0,-345.54474 -11145,13752,24774,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,2,0,6.3342891,6.2310667,0,0,-963.37164,-9,-9,-9,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,6.1890306,0,32.77,36.55,-9,-9,6.666666666666667,3,4,0,0,0,4,2,0,130,-17111.805,-34766.371,0,0,658.81598 -11146,13753,24775,-9,24777,24776,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.1128,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,670,174401.25,103622.18,508105.41,281359.41,4932.9004 -11146,13753,24776,24777,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.7410707,8.6341734,0,19,0,-152.84387,0,3,2,2019,7,0,47,48,1,0,0,14.169001,14.169001,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,10,12,5,1,670,174401.25,103622.18,508105.41,281359.41,4932.9004 -11146,13753,24777,24776,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,9.1178818,8.8488884,0,19,0,-119.85371,0,2,2,2019,12,1,40,35,1,1,0,22.503698,22.503698,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,6,12,5,1,670,174401.25,103622.18,508105.41,281359.41,4932.9004 -11147,13754,24778,24779,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.9847155,7.4078803,37,0,24.31731,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,23.91675,0,0,1,1,0,6.2454128,7.2540164,55.84,41.92,55.59,47.45,8.333333333333334,1,1,0,0,1,9,3,1,914.5,872278.44,255801.31,439350.66,0,2308.8687 -11147,13754,24779,24778,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0814414,7.3220825,37,0,112.41939,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8819547,7.0367131,55.59,47.45,55.84,41.92,8.333333333333334,1,1,0,0,4,9,3,1,914.5,872278.44,255801.31,439350.66,0,2308.8687 -11148,13755,24780,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7218151,7.762351,0,0,0,-915.95557,0,1,1,2019,11,0,27,27,1,0,0,8.8092432,8.8092432,0,0,0,0,0,0,0,0,0,0,46.86,55.66,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,1205,161200.27,38910.598,122550.92,16179.418,1412.7721 -11148,13756,24781,-9,24780,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3529892,8.1654263,0,0,0,-1071.5798,0,2,1,2019,7,1,48,38,1,1,1,8.9536238,8.9536238,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,9,6,4,1,334,76110.266,-46779.941,0,0,1713.6337 -11149,13757,24782,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,0,0,-979.98718,0,2,2,2019,18,7,0,23,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,35.38,43.13,-9,-9,6.666666666666667,1,1,0,0,5,2,1,1,229,-40376.176,0,0,0,453.46808 -11150,13758,24783,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.9484544,7.8433571,0,0,0,-906.35309,0,3,3,2019,8,0,33,30,1,0,0,6.6048999,6.6048999,0,0,0,0,0,0,0,0,4.2697654,0,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,11,4,3,1,995,-312024.03,75115.141,0,0,721.26813 -11151,13759,24784,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.3896914,7.2739282,0,0,-903.07037,0,3,2,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,3.7257781,7.3634014,41.2,33.9,-9,-9,8.333333333333334,1,1,0,0,0,2,3,0,667,-58590.703,159128.61,97134.188,0,1558.1405 -11152,13760,24785,-9,24789,24787,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1143.9094,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 -11152,13760,24786,-9,24789,24787,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.16602,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 -11152,13760,24787,24789,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.7490406,9.520997,0,18,0,18.784784,0,2,2,2019,15,3,50,50,1,3,0,29.550377,29.550377,0,0,0,0,0,0,0,0,6.091918,0,53.96,50.73,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 -11152,13760,24788,-9,24789,24787,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.1511,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 -11152,13760,24789,24787,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.8536177,8.4913015,0,18,0,-110.22719,0,2,2,2019,6,0,48,62,1,0,0,16.285717,16.285717,0,0,0,0,0,0,0,0,3.6971288,0,57.06,57.76,53.96,50.73,8.333333333333334,1,1,0,0,7,9,5,1,738.40002,869698.25,278503.41,694367.13,174356.48,6636.728 -11153,13761,24790,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-912.51135,0,1,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.89,31.05,-9,-9,6.666666666666667,1,1,1,1,0,1,1,0,840,0,0,0,0,1578.1606 -11154,13762,24791,24792,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,5.1201601,5.0193796,63,6,-43.138699,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,120.15391,0,0,1,1,0,0,5.2079268,53,44,54,46,8,1,1,0,0,0,2,2,1,1406,488664.88,124501.25,142196.66,0,1632.2445 -11154,13762,24792,24791,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.6454434,6.7326779,63,-6,12.768466,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,29.736906,0,27,1,1,0,5.5198827,6.8630886,54,46,53,44,8,1,1,0,0,0,2,2,1,1406,488664.88,124501.25,142196.66,0,1632.2445 -11155,13763,24793,-9,24795,24796,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-949.13446,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 -11155,13763,24794,-9,24795,24796,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1093.5073,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 -11155,13763,24795,24796,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,7.7175369,7.4754391,0,21,-6,1.4640709,0,2,2,2019,5,0,35,20,1,0,0,9.5864096,9.5864096,0,0,0,0,0,0,0,0,0,0,49.02,58.89,57.73,54.53,8.333333333333334,1,1,0,0,4,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 -11155,13763,24796,24795,-9,-9,1,1,53,0,3,0,1,1,-9,0,4,9.3487349,9.5220261,0,20,6,7.8911915,0,2,2,2019,6,0,45,45,1,0,0,31.454067,31.454067,0,0,0,0,0,0,0,0,3.575407,0,57.73,54.53,49.02,58.89,8.333333333333334,1,1,0,0,8,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 -11155,13763,24797,-9,24795,24796,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1080.8179,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,5,1,623.20001,2127288.8,1167328,792633.56,48544.859,5228.6353 -11156,13764,24798,24799,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,12,-3,-30.134079,0,3,3,2019,10,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,58.56,46.45,0,1,1,0,0,10,12,4,1,1781.5,117494.88,24018.836,42570.703,0,1248.6455 -11156,13764,24799,24798,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.3796558,8.2143326,5.5530391,16,3,-115.59528,0,3,3,2019,7,0,55,67,1,0,0,8.7470455,8.7470455,0,0,0,0,0,0,0,0,.69651628,5.7864585,58.56,46.45,58.15,52.91,8.333333333333334,1,1,0,0,9,12,4,1,1781.5,117494.88,24018.836,42570.703,0,1248.6455 -11157,13765,24800,-9,-9,24801,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.49054,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,743.5,-22529.629,65968.031,52484.965,13913.1,2600.5266 -11157,13765,24801,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.7081013,8.973237,0,0,0,-950.64667,0,2,2,2019,3,0,48,37,1,0,0,13.475275,13.475275,0,0,0,0,0,0,0,0,0,0,56.72,49.75,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,743.5,-22529.629,65968.031,52484.965,13913.1,2600.5266 -11158,13766,24802,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.7293282,8.7000685,0,0,0,-1011.3869,-9,2,-9,2019,7,0,39,0,1,0,0,15.211701,15.211701,0,0,0,0,87,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,8,5,0,2687,-52833.91,90901.914,0,0,3104.5095 -11159,13767,24803,24804,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.120295,6.9799018,44,2,65.618752,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1416578,7.0734873,54.2,57.49,61.12,51.57,8.333333333333334,1,1,0,0,5,6,3,1,1579.5,211704.64,177761.31,146142.86,0,2760.0156 -11159,13767,24804,24803,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.655858,6.517488,44,-2,71.17569,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6165123,6.5587234,61.12,51.57,54.2,57.49,8.333333333333334,1,1,0,0,7,6,3,1,1579.5,211704.64,177761.31,146142.86,0,2760.0156 -11159,13768,24805,-9,24804,24803,1,1,35,0,0,0,2,2,-9,0,4,8.8434792,8.7070217,0,0,0,-1017.5429,0,3,1,2019,8,0,60,60,1,0,0,13.811652,13.811652,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,6,5,1,227,439892.34,31966.686,107474.88,77479.781,2654.7498 -11160,13769,24806,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,7.2014041,7.3853927,0,0,0,-1009.879,0,3,2,2019,13,2,41,40,1,2,0,3.1308055,3.1308055,0,0,0,0,0,0,0,0,2.3815596,0,45.3,54.5,-9,-9,6.666666666666667,2,3,0,0,8,6,3,1,424,-285964.69,-6008.5117,0,0,161.66792 -11161,13770,24807,-9,24808,24809,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.1427,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1956.6666,-74189.43,32978.289,193645.63,139512.63,3902.9492 -11161,13770,24808,24809,-9,-9,1,0,38,0,1,0,3,3,-9,0,3,7.9084792,7.829215,0,8,2,-24.449482,0,-9,-9,2019,12,0,32,35,1,0,0,12.90904,12.90904,0,0,0,0,0,1,1,0,0,0,41.48,52.55,52.01,48.98,5,1,1,0,0,9,12,5,1,1956.6666,-74189.43,32978.289,193645.63,139512.63,3902.9492 -11161,13770,24809,24808,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.7348137,8.7267504,0,8,-2,-94.867447,0,2,2,2019,6,0,43,62,1,0,0,13.58356,13.58356,0,0,0,0,0,1,1,0,0,0,52.01,48.98,41.48,52.55,6.666666666666667,1,1,0,0,9,12,5,1,1956.6666,-74189.43,32978.289,193645.63,139512.63,3902.9492 -11162,13771,24810,24811,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,7.6823554,8.0557394,0,9,1,175.39059,0,2,2,2019,12,0,6,20,1,0,0,49.484028,49.484028,0,0,0,0,0,1,1,0,4.8450999,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,9,4,1,1114,582771.63,150716.84,321463.19,78033.648,3853.0007 -11162,13771,24811,24810,-9,-9,1,1,55,0,1,0,2,2,-9,0,5,8.3976231,8.7772722,0,9,-1,50.680542,0,-9,-9,2019,12,0,45,50,1,0,0,15.592197,15.592197,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,1114,582771.63,150716.84,321463.19,78033.648,3853.0007 -11162,13771,24812,-9,24810,24811,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.809,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1114,582771.63,150716.84,321463.19,78033.648,3853.0007 -11163,13772,24813,24814,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4317703,8.1922522,0,10,-2,135.4277,0,2,2,2019,9,1,40,42,1,1,0,11.207005,11.207005,0,0,0,0,0,0,0,0,1.6422967,0,41.06,62.04,51.14,60.45,8.333333333333334,1,1,0,0,8,9,5,1,569,870019.31,61131.57,1045645,309117.56,3425.071 -11163,13772,24814,24813,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.6253557,8.6151981,0,10,2,11.033673,0,2,-9,2019,8,1,40,40,1,1,0,19.954115,19.954115,0,0,0,0,0,0,0,0,0,0,51.14,60.45,41.06,62.04,8.333333333333334,1,1,0,0,9,9,5,1,569,870019.31,61131.57,1045645,309117.56,3425.071 -11164,13773,24815,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,5.5921803,5.4655671,0,0,-971.59094,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,14.595577,14.615475,138.05153,0,1,1,0,0,5.2423444,56,44,-9,-9,8,1,1,0,0,0,10,2,1,151,289820.44,-20656.23,116068.36,0,1009.3895 -11165,13774,24816,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.861084,8.7142601,0,0,0,-1042.9573,0,3,3,2019,16,6,40,35,1,6,0,19.41465,19.41465,0,0,0,0,0,0,0,0,0,0,53.22,52.7,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,2068,1076613.1,880693.19,0,0,2007.4436 -11166,13775,24817,24818,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,4.078547,4.1573439,24,0,-23.588865,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,3.6457179,0,14.5,1,1,0,3.4065092,3.702373,29.86,32.93,46.39,17.79,6.666666666666667,1,1,0,0,0,5,2,0,586,612393.38,137068.67,256205.81,0,2727.7661 -11166,13775,24818,24817,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,4.9981365,5.2964277,24,0,54.585651,0,3,3,2019,30,10,0,0,4,10,0,0,0,1,0,15.168291,0,0,1,1,0,0,4.9062829,46.39,17.79,29.86,32.93,5,1,1,0,0,0,5,2,0,586,612393.38,137068.67,256205.81,0,2727.7661 -11167,13776,24819,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2951689,8.176198,0,0,0,-1031.098,-9,2,2,2019,8,0,55,0,1,0,0,6.5746965,6.5746965,0,0,0,0,0,0,0,0,0,0,60.85,42.12,-9,-9,5,3,4,0,1,7,8,4,0,320,64021.289,0,23022.209,35938.172,1157.1279 -11168,13777,24820,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1120.663,0,3,-9,2019,16,4,0,0,4,4,0,0,0,1,0,11.221532,0,0,1,1,0,0,0,55.18,12.85,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,182,71185.555,0,0,0,1452.7289 -11168,13778,24821,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,5,8.0183649,7.7535086,0,0,0,-939.68445,0,-9,-9,2019,11,0,42,48,1,0,0,7.6606498,7.6606498,0,0,0,0,7,1,1,0,0,0,57.7,37.05,-9,-9,8.333333333333334,1,1,0,0,1,4,4,0,611,47375.418,15166.403,0,0,1205.1439 -11169,13779,24822,24823,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,8.0213957,8.2250271,34,0,36.875332,0,1,3,2019,3,0,0,50,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0017767,8.0149708,59.43,58.05,50,49,10,1,1,0,0,9,2,5,1,176.5,2296607,1995384.9,275660.03,0,5767.3965 -11169,13779,24823,24822,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.0298643,9.3341999,0,9,0,-90.671646,0,-9,-9,2019,10,0,40,40,1,1,0,27.173384,27.173384,0,0,0,0,0,0,0,0,0,0,50,49,59.43,58.05,7,1,1,0,0,1,2,5,1,176.5,2296607,1995384.9,275660.03,0,5767.3965 -11170,13780,24824,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.0885053,6.1454773,0,0,-1010.6313,0,3,-9,2019,12,2,0,0,4,2,0,0,0,1,0,6.8784738,0,0,1,1,0,0,5.8026791,58.83,30.76,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,132,748456.56,-42333.266,291149.91,0,1180.2344 -11171,13781,24825,-9,24827,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.5305,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,214,-21665.428,21506.809,0,0,1563.6947 -11171,13781,24826,-9,24827,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.5327,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,214,-21665.428,21506.809,0,0,1563.6947 -11171,13781,24827,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,6.9899335,6.9982991,0,0,0,-1004.7917,0,2,2,2019,22,10,14,13,1,10,0,7.9126754,7.9126754,0,0,0,0,14.5,1,1,0,0,0,43.86,39.27,-9,-9,3.333333333333333,1,1,0,0,8,6,2,0,214,-21665.428,21506.809,0,0,1563.6947 -11172,13782,24828,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.3574839,5.2829208,0,0,-937.36694,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1886401,5.5096135,55.39,54.22,-9,-9,10,1,1,0,0,0,6,2,1,596,-249018.89,0,42809.063,0,868.7793 -11173,13783,24829,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,5.1446018,5.3973913,0,0,-946.69965,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0524106,5.2538881,62.98,28.45,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1944,817100.94,53450.887,431166.16,0,1357.653 -11174,13784,24830,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,5.9236603,5.8605876,0,0,-984.86279,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.0715715,5.7890763,59.15,42.12,-9,-9,10,1,1,0,0,6,7,2,1,1493,460445.75,94743.688,264595.72,0,421.22391 -11175,13785,24831,24832,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,3.3670936,3.5930276,9,-6,-16.467018,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,4.0195465,0,46.21323,71.5,1,1,0,0,3.0831811,61.04,26.18,39.23,20.18,8.333333333333334,1,1,0,0,0,11,2,1,578,669060,255418.72,216812.22,0,2095.0559 -11175,13785,24832,24831,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,7.6519012,7.4711952,9,6,-32.431396,0,2,3,2019,10,0,0,0,4,0,0,0,0,1,0,22.418116,0,5.48,1,1,0,0,7.2167163,39.23,20.18,61.04,26.18,8.333333333333334,1,1,0,0,0,11,2,1,578,669060,255418.72,216812.22,0,2095.0559 -11176,13786,24833,-9,-9,24834,1,0,34,0,0,0,2,2,-9,0,5,7.9385133,8.1025066,0,0,0,-1075.3436,0,1,1,2019,10,0,25,25,1,0,1,10.452374,10.452374,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,923,445867.53,-84126.656,0,0,1331.3438 -11176,13787,24834,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.3555517,8.3047676,4.1344013,0,0,-1067.9149,0,2,2,2019,8,0,15,25,1,0,0,27.303782,27.303782,0,0,0,0,2,0,0,0,3.4206114,4.924408,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,1220,1049776.3,411534.25,206311.3,0,1275.1254 -11177,13788,24835,24836,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.3920584,8.5203609,0,2,-6,115.58855,0,-9,-9,2019,9,0,40,0,1,0,0,15.961423,15.961423,0,0,0,0,0,0,0,0,0,0,55.59,43.19,50.7,27.01,8.333333333333334,1,1,0,1,1,8,4,1,2205,921475.31,376539.63,213037.61,0,2690.3633 -11177,13788,24836,24835,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,6.7911539,6.5745664,0,20,6,-124.51703,0,3,3,2019,11,0,60,38,1,0,0,1.7603266,1.7603266,0,0,0,0,0,0,0,0,0,0,50.7,27.01,55.59,43.19,5,2,3,0,1,11,8,4,1,2205,921475.31,376539.63,213037.61,0,2690.3633 -11177,13789,24837,-9,24835,24836,1,1,23,0,0,0,1,1,1,0,4,5.8556395,6.2567663,0,0,0,-862.5285,-9,1,1,2019,6,0,8,0,1,0,1,6.4810352,6.4810352,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,8.333333333333334,2,3,0,0,1,8,2,1,1679,-11830.577,0,0,0,342.09619 -11178,13790,24838,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.9835491,9.5752354,0,0,0,-947.82843,0,2,1,2019,4,0,10,50,1,0,0,155.19368,155.19368,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,632,222781.59,366513.63,279498.69,234262.8,7118.0962 -11179,13791,24839,-9,24840,24841,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.7238,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,1141.3334,1858481.1,1187031.8,370496.31,0,4038.7129 -11179,13791,24840,24841,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.361784,7.1011996,0,18,3,-23.142408,0,-9,2,2019,3,0,16,16,1,0,0,12.088395,12.088395,0,0,0,0,0,1,1,0,6.8330922,0,57.16,56.15,55.67,55.35,8.333333333333334,1,1,0,0,12,4,5,1,1141.3334,1858481.1,1187031.8,370496.31,0,4038.7129 -11179,13791,24841,24840,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,9.1030359,8.6726208,0,18,-3,-146.71683,0,-9,-9,2019,7,0,55,55,1,0,0,13.230894,13.230894,0,0,0,0,0,1,1,0,0,0,55.67,55.35,57.16,56.15,6.666666666666667,1,1,0,0,10,4,5,1,1141.3334,1858481.1,1187031.8,370496.31,0,4038.7129 -11180,13792,24842,24843,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.0772209,8.1144762,41,5,78.454231,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9940059,8.2041502,57.16,56.15,57.06,57.76,10,1,1,0,0,0,5,4,1,228.5,1844439.8,1304090.3,321235.53,0,3735.2549 -11180,13792,24843,24842,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,8.229105,8.1633415,41,-5,18.042921,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2324095,8.2061367,57.06,57.76,57.16,56.15,10,1,1,0,0,7,5,4,1,228.5,1844439.8,1304090.3,321235.53,0,3735.2549 -11181,13793,24844,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,2.1516023,2.092032,0,0,-1007.1877,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,2.0002251,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,9,1,2,1,507,410298.59,50756.793,138431.77,0,967.94684 -11182,13794,24845,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,7.1984544,7.0247049,0,0,-1022.0545,0,-9,-9,2019,29,10,0,0,4,10,0,0,0,1,0,6.9652529,0,0,1,1,0,0,6.7701283,16.04,23.99,-9,-9,0,1,1,0,1,0,9,2,1,1277,450524.22,11104.733,182987.47,0,2154.4346 -11183,13795,24846,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2891388,8.2066498,0,0,0,-936.24017,0,-9,-9,2019,10,0,43,43,1,0,0,10.041821,10.041821,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,4,0,2779,-73235.672,-44910.574,0,0,1668.6088 -11184,13796,24847,24848,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,8,-2,-184.39781,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,49.73,53.97,8.333333333333334,1,1,0,0,9,12,2,0,633,374897.44,198734.59,165177.75,0,1323.9792 -11184,13796,24848,24847,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,5.8939314,6.4104638,8,2,-100.20381,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7914834,49.73,53.97,57.16,56.15,8.333333333333334,1,1,0,0,3,12,2,0,633,374897.44,198734.59,165177.75,0,1323.9792 -11185,13797,24849,24850,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,9.1033287,9.179121,0,25,-11,20.345013,0,2,1,2019,9,0,60,65,1,0,0,23.865072,23.865072,0,0,0,0,0,0,0,0,0,0,63.38,53.47,41.4,58.06,10,1,1,0,0,11,7,5,1,371,1369015.5,619585.19,311037.72,94037.031,5102.8594 -11185,13797,24850,24849,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.1334386,7.1935172,0,24,11,109.00558,0,2,3,2019,9,2,8,8,1,2,0,16.900879,16.900879,0,0,0,0,0,0,0,0,7.4575472,0,41.4,58.06,63.38,53.47,1.666666666666667,1,1,0,0,7,7,5,1,371,1369015.5,619585.19,311037.72,94037.031,5102.8594 -11186,13798,24851,-9,24854,24853,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.62714,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 -11186,13798,24852,-9,24854,24853,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.1884,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 -11186,13798,24853,24854,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3073196,8.3941317,0,10,5,137.14488,0,2,2,2019,13,3,38,38,1,3,0,12.876721,12.876721,0,0,0,0,0,0,0,0,3.1191702,0,46.44,59.62,52.34,56.95,8.333333333333334,1,1,0,0,11,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 -11186,13798,24854,24853,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.8295527,8.8455038,0,10,-5,182.67572,0,2,2,2019,11,0,48,45,1,0,0,19.457853,19.457853,0,0,0,.26207319,0,0,0,0,0,0,52.34,56.95,46.44,59.62,6.666666666666667,1,1,0,0,11,4,5,1,302.75,313363.97,457259.44,298030.13,140903.22,4541.6748 -11187,13799,24855,24856,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.215414,5.0324483,31,-5,-22.532074,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,2.7179801,0,0,1,1,0,5.4536042,4.7798705,53.53,51,55.28,51.42,10,1,1,0,0,0,7,2,1,574,638299.38,-61756.809,445343.78,0,1624.9052 -11187,13799,24856,24855,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.9501734,5.9026051,6,5,32.937969,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.620182,55.28,51.42,53.53,51,8.333333333333334,1,1,0,0,3,7,2,1,574,638299.38,-61756.809,445343.78,0,1624.9052 -11188,13800,24857,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.1452274,7.2508135,0,0,-986.29382,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,0,0,14.5,1,1,0,0,7.226932,56.23,26.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,435,259005.2,229663.27,34894.57,55426.898,1496.458 -11189,13801,24858,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.7122469,8.2322769,7.2433252,0,0,-916.99933,0,-9,-9,2019,11,0,38,39,1,0,0,7.8480816,7.8480816,0,0,0,0,0,0,0,0,7.9593639,5.4656801,44.19,58.01,-9,-9,5,1,1,0,0,8,7,4,0,542,19185.354,98222.055,0,0,2017.6715 -11189,13802,24859,-9,24858,-9,1,0,31,0,0,0,2,2,-9,0,4,8.1254263,7.8554211,0,0,0,-1009.1955,0,3,-9,2019,11,0,35,35,1,2,1,9.2950716,9.2950716,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,1,1,0,0,1,7,4,0,916,-295304.41,-23530.846,0,0,1101.8036 -11189,13803,24860,-9,24858,-9,1,1,28,0,0,0,2,2,-9,0,4,8.0440798,7.7812419,0,0,0,-955.81433,0,3,-9,2019,10,0,38,35,1,1,1,7.9959536,7.9959536,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,4,0,637,95519.953,37916.574,0,0,941.6087 -11190,13804,24861,-9,24863,24862,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-949.49384,-9,3,2,2019,23,7,0,0,2,7,1,0,0,0,0,0,0,0,1,0,1,0,0,29.87,47.06,-9,-9,5,1,1,0,0,0,12,1,0,428,27510.828,0,0,0,0 -11190,13805,24862,24863,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.9925079,7.9279842,0,2,6,108.26409,0,-9,-9,2019,12,0,37,37,1,0,0,6.041975,6.041975,0,0,0,0,0,1,0,1,0,0,56.26,43.14,27.54,56.6,6.666666666666667,1,1,0,0,9,12,3,0,689.5,-49328.313,176629.7,0,0,1878.9783 -11190,13805,24863,24862,-9,-9,1,0,41,0,1,0,3,3,-9,1,3,0,0,0,2,-6,156.73253,0,2,2,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,27,1,0,1,0,0,27.54,56.6,56.26,43.14,6.666666666666667,1,1,0,0,3,12,3,0,689.5,-49328.313,176629.7,0,0,1878.9783 -11191,13806,24864,24865,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.8180227,7.8611946,65,1,-48.28236,0,2,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,7.8166857,37.91,45.93,57.06,57.76,6.666666666666667,1,1,0,0,0,10,3,1,293,698850.13,243507.59,414019.09,0,1737.3953 -11191,13806,24865,24864,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,0,0,65,-1,-48.354649,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.9075875,0,57.06,57.76,37.91,45.93,8.333333333333334,1,1,0,0,0,10,3,1,293,698850.13,243507.59,414019.09,0,1737.3953 -11192,13807,24866,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,5.6623974,6.0179992,0,0,-1007.2126,0,3,3,2019,23,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,5.7069707,37.43,18.27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,757,-145781.36,53506.066,0,0,2177.2649 -11193,13808,24867,-9,24870,24868,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7784,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 -11193,13808,24868,24870,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.7843542,8.0490608,0,7,-4,-75.449333,0,3,3,2019,14,2,35,35,1,2,0,7.8652287,7.8652287,0,0,0,0,0,1,1,0,0,0,42.22,56.11,56.48,45.49,8.333333333333334,1,1,0,0,9,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 -11193,13808,24869,-9,24870,24868,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.98126,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 -11193,13808,24870,24868,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6004419,8.3860111,0,7,4,153.18993,0,3,3,2019,12,2,49,50,1,2,0,8.7514191,8.7514191,0,0,0,0,0,1,1,0,0,0,56.48,45.49,42.22,56.11,8.333333333333334,1,1,0,0,9,5,4,1,349.5,87970.422,7096.5117,221311.8,130442.87,3152.1697 -11194,13809,24871,24872,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5489082,8.955019,0,3,-8,18.877605,0,-9,-9,2019,9,0,43,43,1,0,0,18.400724,18.400724,0,0,0,0,0,0,0,0,0,0,54.77,55.87,60.13,49.27,8.333333333333334,1,1,0,0,1,9,5,1,669.5,143633.59,64398.641,0,0,4793.8564 -11194,13809,24872,24871,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.7314939,8.6548185,0,3,8,71.806725,0,2,2,2019,7,0,50,50,1,0,0,12.57941,12.57941,0,0,0,0,0,0,0,0,0,0,60.13,49.27,54.77,55.87,8.333333333333334,1,1,0,0,8,9,5,1,669.5,143633.59,64398.641,0,0,4793.8564 -11195,13810,24873,24874,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,7.7188864,8.5543814,7.6001859,26,-6,53.950211,0,2,2,2019,11,2,15,20,1,2,0,15.65967,15.65967,0,0,0,0,2,1,1,0,1.7193457,7.5399528,55.24,55.87,54.2,57.49,8.333333333333334,1,1,0,0,12,7,4,1,911.5,1121038.8,725292,360658,0,4187.2539 -11195,13810,24874,24873,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,4.807641,4.8592358,27,6,-55.742661,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.046854,5.1914749,54.2,57.49,55.24,55.87,8.333333333333334,1,1,0,0,10,7,4,1,911.5,1121038.8,725292,360658,0,4187.2539 -11196,13811,24875,24876,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,6,1,-65.934502,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,2.7754543,0,0,1,1,0,0,0,58.32,36.99,60.46,33.02,6.666666666666667,1,1,0,1,0,12,2,1,269,775446.63,64286.055,480516.59,0,1395.9846 -11196,13811,24876,24875,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.336565,6.5637598,6,-1,91.526993,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.660027,6.4045148,60.46,33.02,58.32,36.99,8.333333333333334,1,1,0,1,3,12,2,1,269,775446.63,64286.055,480516.59,0,1395.9846 -11197,13812,24877,24878,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.3040762,8.4879866,0,3,0,30.598932,0,-9,-9,2019,19,7,47,42,1,7,0,11.926751,11.926751,0,0,0,0,0,0,0,0,.70314234,0,40.4,46.19,38.72,64.82000000000001,5,1,1,0,0,6,2,4,0,770,62134.93,11688.847,152547.03,138748.66,1521.1134 -11197,13812,24878,24877,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,3,0,67.918922,0,-9,-9,2019,18,7,0,32,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,38.72,64.82000000000001,40.4,46.19,3.333333333333333,1,1,1,0,3,2,4,0,770,62134.93,11688.847,152547.03,138748.66,1521.1134 -11198,13813,24879,24880,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.2710876,8.2585564,0,32,-7,96.286087,0,2,2,2019,7,0,30,40,1,0,0,11.961182,11.961182,0,0,0,0,0,0,0,0,7.8069491,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,559,1059678.1,645267.13,358937.13,4107.3823,6124.6787 -11198,13813,24880,24879,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.6409445,8.9822245,10,7,115.94469,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.224822,8.7580776,57.16,56.15,55.19,54.26,10,1,1,0,0,0,5,5,1,559,1059678.1,645267.13,358937.13,4107.3823,6124.6787 -11198,13814,24881,-9,24879,24880,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-969.92432,-9,1,1,2019,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,.29591718,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,1206,-69760.563,0,0,0,181.24734 -11198,13815,24882,-9,24879,24880,1,1,20,0,0,0,1,1,1,0,5,8.4865599,8.6412172,4.5322351,0,0,-979.42023,-9,1,1,2019,3,0,48,0,1,0,1,11.296588,11.296588,0,0,0,0,0,0,0,0,4.4338741,0,54.1,59.11,-9,-9,10,1,1,0,0,3,5,5,1,146,95835.023,11254.263,0,0,2320.6836 -11199,13816,24883,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.5596194,7.9804621,0,0,0,-899.86804,-9,2,2,2019,36,12,30,0,1,12,0,7.6939011,7.6939011,0,0,0,0,0,1,1,0,0,0,23.58,54.21,-9,-9,0,1,1,0,0,4,9,3,1,1243,-140910.17,0,62489.492,11963.913,741.44202 -11200,13817,24884,24885,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,48,-1,-3.4542348,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4776747,0,48.45,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,711.5,1114884.3,353465.59,499241.06,33.869629,2234.04 -11200,13817,24885,24884,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1355639,7.6770444,48,1,-139.46558,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8494792,7.5679731,57.16,56.15,48.45,57.49,8.333333333333334,1,1,0,0,6,9,3,1,711.5,1114884.3,353465.59,499241.06,33.869629,2234.04 -11201,13818,24886,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.1753616,8.2220907,6.2984042,0,0,-1006.4703,0,2,2,2019,12,1,37,36,1,1,0,7.8224349,7.8224349,0,0,0,0,0,1,1,0,0,6.403038,51.17,49.39,-9,-9,5,1,1,0,0,12,2,4,1,342,348130,44597.188,0,0,1638.4636 -11202,13819,24887,24888,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0445499,8.3446913,0,9,0,-60.821968,0,2,-9,2019,8,0,37,37,1,0,0,10.010525,10.010525,0,0,0,0,0,0,0,0,6.9400144,0,51.24,58.84,62.1,42.92,8.333333333333334,1,1,0,0,9,10,5,1,432,940987.5,83000.508,332318.84,74687.922,5413.397 -11202,13819,24888,24887,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8418522,9.2018452,0,9,0,-53.040894,0,-9,-9,2019,8,0,38,38,1,0,0,25.970558,25.970558,0,0,0,0,0,0,0,0,7.1938987,0,62.1,42.92,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,432,940987.5,83000.508,332318.84,74687.922,5413.397 -11203,13820,24889,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.38965,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,1.868356,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,11,2,1,756,222011.3,0,-31996.652,0,1912.0637 -11204,13821,24890,24891,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,44,-2,-139.02327,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9617822,0,57.48,47.92,59.43,58.05,10,1,1,0,0,0,11,3,1,987,482876.69,281832.75,174257.13,0,3212.374 -11204,13821,24891,24890,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,8.1232576,7.614337,44,2,41.647263,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0997314,7.8808951,59.43,58.05,57.48,47.92,10,1,1,0,0,0,11,3,1,987,482876.69,281832.75,174257.13,0,3212.374 -11205,13822,24892,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.0085516,6.9239793,0,0,-1000.0717,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1765051,6.7558084,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,305,-99515.938,5778.6055,0,0,1027.0463 -11206,13823,24893,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.010685,7.041647,0,0,-1008.7696,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,1.1974216,0,22.07411,0,1,1,0,0,6.8245425,53,44,-9,-9,8,1,1,0,0,0,11,2,1,417,580342,155351.34,120086.63,0,441.31345 -11207,13824,24894,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,4.597054,4.5401802,0,0,-1017.1693,0,3,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,3.9152009,4.4319086,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,826,-191860.91,-39311.262,0,0,725.12762 -11208,13825,24895,24896,-9,24899,1,1,47,0,1,0,2,2,-9,0,5,8.1622887,8.2264872,0,4,-1,-51.756413,0,-9,3,2019,7,0,40,40,1,0,0,8.7223177,8.7223177,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.09,47.91,10,1,1,0,0,1,2,3,1,527.66669,361841.69,107485.5,120831.52,53718.586,1351.2375 -11208,13825,24896,24895,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,0,0,0,4,1,31.409309,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.09,47.91,57.06,57.76,10,1,1,0,0,8,2,3,1,527.66669,361841.69,107485.5,120831.52,53718.586,1351.2375 -11208,13825,24897,-9,24896,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1039.9576,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,3,1,527.66669,361841.69,107485.5,120831.52,53718.586,1351.2375 -11208,13826,24898,-9,24896,-9,1,1,19,0,1,0,2,2,1,0,5,6.7596273,6.6990218,0,0,0,-862.27448,-9,2,-9,2019,6,0,16,0,1,0,1,4.7963896,4.7963896,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,274,-127800.3,0,0,0,503.73621 -11208,13827,24899,-9,-9,-9,1,1,83,0,1,0,3,3,-9,0,2,0,0,0,0,0,-896.22675,-9,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,38.23,36.83,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,515,24849.078,0,1638.0374,0,0 -11209,13828,24900,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.49613,8.4145956,0,0,0,-1157.0096,0,2,1,2019,9,0,60,55,1,0,0,9.6600437,9.6600437,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,233,238766.33,139092.28,102514.28,111350.23,2590.1001 -11210,13829,24901,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,5.8825774,5.8790812,0,0,-1020.2383,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,5.9840484,0,34.23,22.11,-9,-9,0,1,1,0,1,0,13,2,0,956,792771.06,145503.52,147504.13,23451.566,1362.7319 -11211,13830,24902,24903,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4713249,8.9865303,7.6983256,34,-2,-160.50427,0,2,2,2019,12,2,40,35,1,2,0,13.224277,13.224277,0,0,0,0,0,0,0,0,4.7339792,8.2956972,51.17,49.39,57.91,48.98,6.666666666666667,1,1,0,0,12,9,5,1,654.5,851486,374363.5,353812.09,0,4124.3945 -11211,13830,24903,24902,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,6.9983692,6.9208946,0,34,2,20.431643,0,2,2,2019,2,0,12,17,1,0,0,10.176348,10.176348,0,0,0,0,0,0,0,0,2.4804969,0,57.91,48.98,51.17,49.39,8.333333333333334,1,1,0,0,12,9,5,1,654.5,851486,374363.5,353812.09,0,4124.3945 -11211,13831,24904,-9,24903,24902,1,1,25,0,0,0,1,1,-9,0,4,8.1488066,8.2785892,0,0,0,-1013.3318,0,1,2,2019,11,0,36,35,1,0,1,11.767632,11.767632,0,0,0,0,0,0,0,0,.47325099,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,48,149185.33,29728.949,0,0,1631.0262 -11211,13832,24905,-9,24903,24902,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1016.8258,-9,1,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,1128,-271577.94,0,0,0,290.89056 -11212,13833,24906,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2106123,7.2305226,0,0,-929.50616,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.3479593,7.2064781,44.69,42.62,-9,-9,8.333333333333334,4,2,0,0,8,8,3,0,471,-92839.359,261307.89,0,0,1659.8802 -11213,13834,24907,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.0562115,8.3860569,0,0,0,-1059.5764,0,2,2,2019,9,1,27,25,1,1,0,14.855756,14.855756,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,10,4,0,625,36204.836,48538.715,0,0,1518.1884 -11214,13835,24908,-9,24910,24911,1,1,20,0,1,0,2,2,1,0,3,6.2092271,6.3674312,0,0,0,-990.62408,-9,2,3,2019,17,4,28,0,1,4,1,3.3336728,3.3336728,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,3.333333333333333,1,1,0,0,3,11,2,1,600,252223.33,0,0,0,102.00922 -11214,13836,24909,-9,24910,24911,1,1,18,0,1,1,2,0,0,1,5,0,0,0,0,0,-1092.2672,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,11,1,1,346,333677.47,0,0,0,535.12891 -11214,13837,24910,24911,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,9.6687727,9.9434338,0,5,-16,-96.141022,0,-9,-9,2019,7,0,55,40,1,0,0,36.296558,36.296558,0,0,0,0,0,1,1,0,0,0,63.56,36.87,55.19,54.26,8.333333333333334,1,1,0,0,4,11,5,1,397.33334,239681.2,126367.2,265600.5,0,23555.832 -11214,13837,24911,24910,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,0,8.0169668,8.1243258,5,16,89.048576,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3443165,8.1492271,55.19,54.26,63.56,36.87,6.666666666666667,1,1,0,0,5,11,5,1,397.33334,239681.2,126367.2,265600.5,0,23555.832 -11214,13837,24912,-9,24910,24911,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.3159,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,5,1,397.33334,239681.2,126367.2,265600.5,0,23555.832 -11215,13838,24913,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,8.333149,8.1881781,0,0,-1069.7717,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,8.1125927,8.2442112,54.45,56.22,-9,-9,10,1,1,0,0,0,9,4,1,1131,1232891.8,601766,599007.81,0,4377.0171 -11216,13839,24914,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.7160578,8.7860298,0,0,0,-1076.2845,0,3,3,2019,13,4,37,37,1,4,0,20.100796,20.100796,0,0,0,0,0,0,0,0,0,0,51.99,48.84,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,167,825310.25,345271.31,109810.27,110724.16,1972.6339 -11217,13840,24915,24918,24919,-9,1,1,46,0,2,0,2,2,-9,0,4,6.5799646,6.7222795,0,20,9,74.50528,0,3,3,2019,10,0,24,24,1,1,0,4.4161711,4.4161711,0,0,0,0,0,1,1,0,3.7240798,0,51,56,48,57,7,2,3,0,1,13,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 -11217,13840,24916,-9,24918,24915,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.7404,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 -11217,13840,24917,-9,24918,24915,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-913.70502,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,0,0,0,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 -11217,13840,24918,24915,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,11,0,104.28227,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,2,3,0,0,0,2,2,1,396.75,128192.43,127299.42,0,0,645.8222 -11217,13841,24919,-9,-9,-9,1,0,82,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1005.9233,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,2,2,1,321,21225.516,0,0,0,2070.0632 -11217,13842,24920,-9,24918,24915,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1158.7295,-9,3,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,0,2,1,1,162,308685.53,0,196146.05,0,-338.80798 -11218,13843,24921,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4538174,8.4158115,0,0,0,-890.10382,0,-9,-9,2019,11,0,47,50,1,0,0,14.350506,14.350506,0,0,0,0,0,1,1,0,3.7395644,0,49.35,59.64,-9,-9,6.666666666666667,1,1,0,0,4,8,5,0,1708,-216197.91,124008.45,312292.28,128068.93,1886.812 -11219,13844,24922,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.6842508,6.6620269,0,0,-1016.8912,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1672093,7.5169301,53.81,37.86,-9,-9,8.333333333333334,1,1,0,0,4,1,2,1,667,669616.75,648564.81,135162.34,0,1375.7325 -11220,13845,24923,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,5.1751451,7.556673,7.4952507,0,0,-956.70929,0,3,2,2019,20,8,40,45,1,8,0,.50407976,.50407976,0,0,0,0,0,1,1,0,0,7.4137378,44.13,47.36,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,256,-383945.44,-46683.992,0,0,1382.1204 -11221,13846,24924,24925,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,6.7347856,6.355567,57,-4,-103.95492,0,2,2,2019,12,1,0,24,4,1,0,0,0,1,0,0,0,0,1,1,0,.9512198,6.5796914,57.18,45.76,56.16,45.84,6.666666666666667,1,1,0,0,6,9,2,1,575.5,553933.88,90923.875,454969.5,0,-725.25739 -11221,13846,24925,24924,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,57,4,18.7311,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2053423,0,56.16,45.84,57.18,45.76,8.333333333333334,1,1,0,0,9,9,2,1,575.5,553933.88,90923.875,454969.5,0,-725.25739 -11222,13847,24926,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.0152,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,13,1,1,219,-149110.22,0,0,0,207.2739 -11223,13848,24927,24928,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.4424758,7.6124687,0,32,0,21.890041,0,-9,-9,2019,3,0,35,36,1,0,0,8.2379303,8.2379303,0,0,0,0,0,0,0,0,0,0,51,54,60.29,52.11,10,2,3,0,0,10,8,3,1,832,308552.25,72885.039,270920.13,0,816.39606 -11223,13848,24928,24927,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,0,0,0,32,0,-56.290428,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,51,54,10,2,3,1,1,7,8,3,1,832,308552.25,72885.039,270920.13,0,816.39606 -11224,13849,24929,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.0678024,9.1728601,0,0,0,-916.38721,0,3,3,2019,6,0,42,43,1,0,0,19.443663,19.443663,0,0,0,0,0,0,0,0,2.9201553,0,51.05,54.79,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,415,1948168.4,1775330.1,411204.31,212207.58,3077.7256 -11224,13850,24930,-9,24929,-9,1,0,22,0,0,0,2,2,1,0,4,7.8913612,7.9834366,0,0,0,-978.90277,-9,2,2,2019,11,0,22,0,1,2,1,15.128666,15.128666,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,3,1,729,107706.98,76916.063,0,0,1182.9066 -11224,13851,24931,-9,24929,-9,1,1,20,0,0,0,2,2,-9,0,4,7.8962851,7.5194545,0,0,0,-1031.2794,0,2,-9,2019,10,0,37,0,1,1,1,8.5433588,8.5433588,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,3,1,788,-101418.53,0,0,0,1120.4689 -11225,13852,24932,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.4213166,5.9304504,0,0,-898.54913,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2994523,5.6518221,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,789,177228.81,151243.81,0,0,1278.3816 -11226,13853,24933,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.6371469,6.3428173,0,0,-1110.2125,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4287744,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,524,730076.94,121388.82,262345.28,0,702.04333 -11227,13854,24934,24935,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,52,-1,16.106098,0,2,1,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,.76614517,0,50.57,37.79,57.42,49.34,5,1,1,0,0,2,10,2,1,703,569922.44,187676.81,321761.19,0,1860.3942 -11227,13854,24935,24934,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.9739828,7.1640511,52,1,44.083199,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5095932,6.908237,57.42,49.34,50.57,37.79,8.333333333333334,1,1,0,0,2,10,2,1,703,569922.44,187676.81,321761.19,0,1860.3942 -11228,13855,24936,24937,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.6769247,5.7749977,50,2,57.298157,0,2,3,2019,18,8,0,0,4,8,0,0,0,1,4.5742474,8.0445995,46.223545,0,1,1,0,0,5.828651,38.03,25.89,36.37,45.77,3.333333333333333,1,1,0,0,0,2,3,1,676,1127295.8,572503.75,716713.44,0,3482.833 -11228,13855,24937,24936,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.1982327,8.6197329,51,-2,-44.238968,0,3,3,2019,17,7,0,0,4,7,0,0,0,1,0,0,0,2,1,1,0,0,8.1893101,36.37,45.77,38.03,25.89,5,1,1,0,0,0,2,3,1,676,1127295.8,572503.75,716713.44,0,3482.833 -11229,13856,24938,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.9266691,6.4301195,0,0,-1037.0387,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.1855121,6.1008587,56.64,41.42,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,209,502631.44,108436.03,958297.19,0,-110.7742 -11230,13857,24939,24940,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,7.7006593,7.8549051,1,2,-49.54118,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.2566977,7.7034726,62.39,56.71,53.51,60.74,8.333333333333334,1,1,0,0,10,9,3,1,243.5,2733989.5,1873570.9,550115.13,0,1914.0574 -11230,13857,24940,24939,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,4.23102,4.2364435,12,-2,6.2223167,-9,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.5279312,0,53.51,60.74,62.39,56.71,8.333333333333334,1,1,0,0,7,9,3,1,243.5,2733989.5,1873570.9,550115.13,0,1914.0574 -11231,13858,24941,24942,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8024035,8.6565094,0,8,5,44.892685,0,-9,-9,2019,22,5,44,84,1,5,0,19.907101,19.907101,0,0,0,0,0,0,0,0,0,0,11.68,43.26,34.89,54.57,0,1,1,0,0,7,10,5,1,1279,-5526.832,-3054.9861,0,0,3243.9507 -11231,13858,24942,24941,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,7.8613901,7.7506456,0,8,-5,144.10788,0,1,1,2019,14,2,41,41,1,2,0,8.4637794,8.4637794,0,0,0,0,2,0,0,0,1.253877,0,34.89,54.57,11.68,43.26,6.666666666666667,1,1,0,0,8,10,5,1,1279,-5526.832,-3054.9861,0,0,3243.9507 -11232,13859,24943,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-971.21985,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.97,41.17,-9,-9,10,1,1,0,0,3,1,1,0,355,222474.11,0,0,0,1046.3461 -11233,13860,24944,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.4633636,8.6719313,0,0,0,-1073.7258,-9,-9,-9,2019,10,1,26,0,1,1,0,18.043734,18.043734,0,0,0,0,0,0,0,0,.62413049,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,13,12,5,0,183,291292.91,-59593.773,0,0,1348.816 -11234,13861,24945,24946,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.3743324,8.7508688,0,4,5,92.211891,0,-9,-9,2019,14,3,38,38,1,3,0,12.591976,12.591976,0,0,0,0,0,1,1,0,0,0,41.62,56.81,32.14,51.52,6.666666666666667,1,1,0,0,3,12,4,1,533.5,421438.72,107237.87,224492.47,53029.359,2371.2554 -11234,13861,24946,24945,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,6.9934154,6.8451624,0,4,-5,1.9065012,0,2,1,2019,29,11,8,8,1,11,0,14.774477,14.774477,0,0,0,0,0,1,1,0,0,0,32.14,51.52,41.62,56.81,3.333333333333333,2,3,0,0,5,12,4,1,533.5,421438.72,107237.87,224492.47,53029.359,2371.2554 -11235,13862,24947,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,8.5764656,8.6114483,0,0,-941.8468,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1965761,8.2454748,60.84,47.65,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,233,1152817.8,702043.88,161678.81,0,3155.1987 -11236,13863,24948,24949,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.9966536,4.8557749,47,-2,-112.69675,0,2,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0698986,5.0182905,57.09,46.7,60.52,53.2,8.333333333333334,1,1,0,0,0,4,2,1,323,868053.25,518193.88,211537.69,0,5302.0088 -11236,13863,24949,24948,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,4.6697049,5.1355481,7,2,47.037868,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.3198311,4.8090467,60.52,53.2,57.09,46.7,6.666666666666667,1,1,0,0,0,4,2,1,323,868053.25,518193.88,211537.69,0,5302.0088 -11237,13864,24950,-9,24951,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.35608,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,2,0,1389.5,-210843.88,0,0,0,1084.6516 -11237,13864,24951,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,2,0,0,0,0,0,-913.69727,0,3,3,2019,29,12,0,18,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,25.85,58.94,-9,-9,0,4,2,1,1,2,2,2,0,1389.5,-210843.88,0,0,0,1084.6516 -11238,13865,24952,-9,24953,24955,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.7019,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 -11238,13865,24953,24955,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.34304,7.5499225,0,7,-2,51.233101,0,2,2,2019,7,0,45,17,1,0,0,5.3941197,5.3941197,0,0,0,0,0,1,1,0,1.0620679,0,54.2,57.49,49.63,54.22,8.333333333333334,1,1,0,0,10,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 -11238,13865,24954,-9,24953,24955,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.2866,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 -11238,13865,24955,24953,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,7.8629127,7.9486156,0,7,2,-115.49429,0,-9,-9,2019,9,0,15,40,1,0,0,28.227791,28.227791,0,0,0,0,0,1,1,0,3.2814143,0,49.63,54.22,54.2,57.49,8.333333333333334,1,1,0,0,10,10,3,1,737.5,591681.13,609018.94,183551.38,64099.086,2729.0359 -11239,13866,24956,24957,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8892694,7.7227268,0,28,6,-71.437775,0,2,3,2019,19,7,25,25,1,7,0,11.041008,11.041008,0,0,0,0,0,0,0,0,0,0,36.13,54.74,24.73,33.42,3.333333333333333,1,1,0,1,9,1,3,1,1128,-36045.313,-12173.367,49914.531,0,1222.521 -11239,13866,24957,24956,-9,-9,1,1,47,0,0,0,2,2,-9,0,1,0,0,0,30,-6,63.985168,0,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,0,0,24.73,33.42,36.13,54.74,1.666666666666667,1,1,1,1,1,1,3,1,1128,-36045.313,-12173.367,49914.531,0,1222.521 -11240,13867,24958,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.1816053,8.1884308,6.5651889,0,0,-1105.6141,-9,3,3,2019,6,0,35,0,1,0,0,13.179953,13.179953,0,0,0,0,14.5,0,0,0,0,6.6871071,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,13,5,1,326,444558.22,195998.69,12463.644,41396.605,1849.9996 -11241,13868,24959,24962,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.6398678,8.5515814,0,19,-3,-40.601765,0,-9,-9,2019,7,0,44,44,1,0,0,14.258547,14.258547,0,0,0,0,0,1,1,0,.1499213,0,57.06,57.76,44.19,58.01,8.333333333333334,1,1,0,0,9,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 -11241,13868,24960,-9,24962,24959,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.36737,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 -11241,13868,24961,-9,24962,24959,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.8812,-9,3,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,.52970302,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 -11241,13868,24962,24959,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,6.9162235,6.8263807,0,19,3,-81.849648,0,-9,-9,2019,12,1,16,16,1,1,0,7.2901654,7.2901654,0,0,0,0,0,1,1,0,0,0,44.19,58.01,57.06,57.76,8.333333333333334,1,1,0,0,9,9,3,1,905.25,1063142.1,12392.309,518065.06,62625.219,2734.0674 -11242,13869,24963,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,9.5230579,9.2318821,0,0,0,-1045.2146,0,2,3,2019,12,1,35,38,1,1,0,49.887871,49.887871,0,0,0,0,0,0,0,0,0,0,37.85,48.75,-9,-9,3.333333333333333,2,3,0,0,11,8,5,0,437,-72683.891,19572.398,416770.53,311238.91,4364.1958 -11243,13870,24964,24967,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,6.2181187,5.9717917,0,11,3,-73.925438,0,2,2,2019,13,1,45,20,1,1,0,1.705233,1.705233,0,0,0,0,0,1,1,0,0,0,48.06,50.73,57.06,57.76,3.333333333333333,1,1,0,0,10,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 -11243,13870,24965,-9,24967,24964,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.45886,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 -11243,13870,24966,-9,24967,24964,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.6302,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 -11243,13870,24967,24964,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.886301,8.7191858,0,11,-3,89.152657,0,1,2,2019,6,0,37,37,1,0,0,19.93924,19.93924,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.06,50.73,10,1,1,0,0,12,4,4,1,985.75,253802.45,138947.44,260826.13,153501.45,2498.2007 -11244,13871,24968,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.3573403,7.4718976,0,0,-1076.8353,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,7.8834348,7.4858584,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,355,720917,500548.75,59664.945,0,1533.1829 -11245,13872,24969,24971,-9,-9,1,0,34,0,3,0,2,2,-9,0,5,7.551003,7.8531933,0,2,-5,4.3006749,0,-9,-9,2019,11,1,22,23,1,1,0,10.138153,10.138153,0,0,0,0,0,1,1,0,0,0,45.28,50.7,52.13,57.22,3.333333333333333,1,1,0,0,7,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 -11245,13872,24970,-9,24969,24971,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.6711,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 -11245,13872,24971,24969,-9,-9,1,1,39,0,3,0,2,2,-9,0,5,7.7435756,8.2012262,0,2,5,-86.105148,0,2,2,2019,9,0,39,40,1,0,0,7.9004545,7.9004545,0,0,0,0,0,1,1,0,0,0,52.13,57.22,45.28,50.7,6.666666666666667,1,1,0,0,10,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 -11245,13872,24972,-9,24969,24971,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.16925,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 -11245,13872,24973,-9,24969,24971,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.0905,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1081.2,-34263.719,-32368.379,0,0,2745.0652 -11246,13873,24974,24975,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.7685938,9.0688982,7.0890908,42,1,-12.002493,0,3,3,2019,10,0,45,-9,1,1,0,19.484589,19.484589,0,0,0,0,0,0,0,0,4.3374524,7.5938754,51,49,55.79,52.62,7,1,1,0,0,1,5,5,1,729,527651.06,395716.56,89241.125,0,3992.9148 -11246,13873,24975,24974,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.7327514,7.722024,0,42,-1,50.570148,0,3,3,2019,7,0,30,32,1,0,0,8.7166796,8.7166796,0,0,0,0,0,0,0,0,4.0616655,0,55.79,52.62,51,49,8.333333333333334,1,1,0,0,8,5,5,1,729,527651.06,395716.56,89241.125,0,3992.9148 -11247,13874,24976,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1524553,7.9651332,0,0,-1020.1286,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6389079,8.2287464,58.61,40.49,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,572,241476.83,33975.395,118838.28,0,1198.7844 -11248,13875,24977,24978,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.5786552,7.223495,56,-1,-103.26307,0,3,1,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5180882,7.3326488,57.16,56.15,47.92,22.81,8.333333333333334,1,1,0,0,0,5,2,1,484,256538.28,188023.89,201304.63,0,1703.6611 -11248,13875,24978,24977,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,56,1,-29.687851,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.5975339,0,47.92,22.81,57.16,56.15,8.333333333333334,1,1,0,0,0,5,2,1,484,256538.28,188023.89,201304.63,0,1703.6611 -11249,13876,24979,-9,24980,24982,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.81012,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 -11249,13876,24980,24982,-9,-9,1,0,37,0,2,0,3,3,-9,1,2,0,0,0,3,1,10.903411,0,3,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,27.69,33.51,50,57,3.333333333333333,1,1,0,1,0,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 -11249,13876,24981,-9,24980,24982,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1057.666,-9,3,3,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,10,4,2,0,0,0,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 -11249,13876,24982,24980,-9,-9,1,1,36,0,2,0,3,3,-9,0,4,7.3892612,6.9293966,0,3,-1,175.96722,0,-9,-9,2019,10,0,16,30,1,1,0,11.039336,11.039336,0,0,0,0,0,1,1,0,0,0,50,57,27.69,33.51,7,1,1,0,0,1,6,2,0,800.5,-3581.4141,33263.945,0,0,2672.8674 -11250,13877,24983,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,6.62748,7.5165958,7.326901,0,0,-972.79395,0,3,3,2019,19,7,12,0,1,7,0,7.6369867,7.6369867,0,0,0,0,0,1,1,0,6.4997187,7.505918,44.16,36.76,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,464,30078.74,-15808.578,298139.94,0,952.37024 -11250,13878,24984,-9,24983,-9,1,0,33,0,0,0,2,2,-9,0,4,6.1581883,6.3165946,0,0,0,-1094.8883,0,2,2,2019,14,2,30,30,1,2,1,2.3564882,2.3564882,0,0,0,0,0,1,1,0,0,0,41.59,61.77,-9,-9,5,1,1,0,0,10,7,2,1,457,-195900.75,0,0,0,596.38953 -11251,13879,24985,24986,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.9539118,8.9053593,0,30,-7,94.494514,0,3,-9,2019,9,0,52,18,1,0,0,19.6052,19.6052,0,0,0,0,0,1,1,0,0,0,56.57,57.78,51.62,40.5,6.666666666666667,1,1,0,0,9,11,5,1,1574,1133900.8,403164.94,282278.94,16222.736,4922.1367 -11251,13879,24986,24985,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.6721911,7.8845363,0,18,7,-92.701424,0,3,3,2019,6,0,37,37,1,0,0,9.1095505,9.1095505,0,0,0,0,0,1,1,0,0,0,51.62,40.5,56.57,57.78,8.333333333333334,1,1,0,0,8,11,5,1,1574,1133900.8,403164.94,282278.94,16222.736,4922.1367 -11252,13880,24987,-9,24988,24989,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.4335,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,754,-10166.198,-18493.73,232093.41,140600.67,4948.4507 -11252,13880,24988,24989,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.656312,8.6444092,0,9,-3,40.441143,0,2,2,2019,15,4,40,40,1,4,0,16.263783,16.263783,0,0,0,0,2,1,1,0,0,0,40.01,37.94,47.18,55.31,6.666666666666667,1,1,0,0,9,12,5,1,754,-10166.198,-18493.73,232093.41,140600.67,4948.4507 -11252,13880,24989,24988,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.5045147,8.6598682,0,9,3,-112.56915,-9,-9,-9,2019,10,0,44,0,1,0,0,15.092229,15.092229,0,0,0,0,0,1,1,0,0,0,47.18,55.31,40.01,37.94,8.333333333333334,1,1,0,0,9,12,5,1,754,-10166.198,-18493.73,232093.41,140600.67,4948.4507 -11253,13881,24990,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1064.0802,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,13.892575,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,2,1,0,3684,149770.39,-8765.7773,0,0,1625.3737 -11254,13882,24991,-9,24994,24993,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.6808,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 -11254,13882,24992,-9,24994,24993,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.53217,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 -11254,13882,24993,24994,-9,-9,1,1,30,1,2,0,1,1,-9,0,4,8.2652798,8.2183199,0,2,2,-138.13376,0,-9,-9,2019,4,1,68,45,1,1,0,6.6013646,6.6013646,0,0,0,0,0,1,1,0,0,0,45.64,50.19,39.84,56.29,8.333333333333334,2,3,0,0,6,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 -11254,13882,24994,24993,-9,-9,1,0,28,1,2,0,1,1,-9,0,3,0,0,0,2,-2,-65.489983,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.84,56.29,45.64,50.19,8.333333333333334,2,3,0,0,3,9,3,0,449.75,-157728.98,-67381.227,0,0,1652.3691 -11255,13883,24995,-9,24997,24996,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.28119,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,655,394438.84,433694.66,116152.21,0,1429.9231 -11255,13883,24996,24997,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2932644,7.9345717,0,13,6,65.384377,0,3,3,2019,20,9,40,40,1,9,0,8.8612051,8.8612051,0,0,0,0,7,1,1,0,3.9695919,0,29.96,59.35,51.73,58.82,3.333333333333333,2,3,0,0,7,6,3,1,655,394438.84,433694.66,116152.21,0,1429.9231 -11255,13883,24997,24996,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,0,0,0,13,-6,-53.74823,0,3,3,2019,9,1,0,36,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,29.96,59.35,3.333333333333333,2,3,0,0,9,6,3,1,655,394438.84,433694.66,116152.21,0,1429.9231 -11256,13884,24998,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2465763,8.3131266,0,0,0,-989.49036,-9,2,1,2019,12,1,60,0,1,1,0,9.642354,9.642354,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,442,-259220.67,-97505.547,0,0,1562.6289 -11257,13885,24999,-9,25000,-9,1,0,17,0,0,1,3,0,0,0,3,0,0,0,0,0,-977.21747,-9,3,-9,2019,12,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1252,292610.16,-8340.9609,0,0,1540.105 -11257,13885,25000,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,6.7171602,7.2054725,0,0,0,-871.75641,0,-9,-9,2019,10,1,16,16,1,1,0,6.3563337,6.3563337,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,5,1,2,0,1252,292610.16,-8340.9609,0,0,1540.105 -11258,13886,25001,25002,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.0877113,8.1114035,59,2,-47.754383,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,8.0033674,7.9530993,54.7,43.56,59.04,45.74,8.333333333333334,1,1,0,0,0,12,4,1,621,995374.25,418643.31,195449.75,0,3596.1602 -11258,13886,25002,25001,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,7.2655206,7.3732333,59,-2,105.7352,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4670005,7.6877813,59.04,45.74,54.7,43.56,8.333333333333334,1,1,0,0,0,12,4,1,621,995374.25,418643.31,195449.75,0,3596.1602 -11259,13887,25003,25004,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,35,-3,-59.246773,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7844946,0,60.12,54.8,60.12,54.8,8.333333333333334,1,1,0,0,8,7,2,1,2172,505191.38,110728.06,470268.13,0,690.45984 -11259,13887,25004,25003,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.5664639,6.3199611,35,3,-58.99358,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.216049,6.3378215,60.12,54.8,60.12,54.8,10,1,1,0,0,2,7,2,1,2172,505191.38,110728.06,470268.13,0,690.45984 -11260,13888,25005,25006,-9,-9,1,0,49,0,1,0,3,3,-9,0,3,7.2045188,7.3453755,0,32,1,-63.189438,0,3,3,2019,9,0,24,20,1,0,0,8.7741623,8.7741623,0,0,0,0,0,1,1,0,0,0,55.96,44.4,32.02,49.05,6.666666666666667,2,3,0,0,8,5,3,1,1278,145366.77,42244.473,96949.828,0,2092.8909 -11260,13888,25006,25005,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,7.3129387,7.1851244,0,32,-1,80.679909,0,3,3,2019,15,3,24,20,1,3,0,7.3778443,7.3778443,0,0,0,0,0,1,1,0,0,0,32.02,49.05,55.96,44.4,5,2,3,0,0,8,5,3,1,1278,145366.77,42244.473,96949.828,0,2092.8909 -11260,13888,25007,-9,25005,25006,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1033.0793,-9,3,1,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,65.90000000000001,45.38,-9,-9,5,2,3,0,0,0,5,3,1,1278,145366.77,42244.473,96949.828,0,2092.8909 -11260,13889,25008,-9,25005,25006,1,1,22,0,1,0,3,3,-9,0,4,6.8680687,6.9498668,0,0,0,-940.70593,0,3,1,2019,11,0,40,10,1,1,1,3.2631595,3.2631595,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,5,2,1,888,0,0,0,0,122.21362 -11261,13890,25009,25010,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5582457,8.3779402,0,8,0,-1.7631476,0,2,2,2019,8,0,25,12,1,0,0,26.455095,26.455095,0,0,0,0,0,0,0,0,4.6033673,0,48.53,58.91,50.4,55.04,1.666666666666667,1,1,0,0,9,1,4,1,989,824907.13,342050.75,542473.63,142126.13,2513.1411 -11261,13890,25010,25009,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6833286,7.4773989,0,8,0,-5.8215022,0,3,2,2019,10,0,8,10,1,0,0,25.044184,25.044184,0,0,0,0,0,0,0,0,.48244336,0,50.4,55.04,48.53,58.91,10,1,1,0,0,9,1,4,1,989,824907.13,342050.75,542473.63,142126.13,2513.1411 -11262,13891,25011,25012,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.7387714,7.314394,0,7,-3,111.38612,0,2,3,2019,8,0,38,38,1,0,0,8.0463257,8.0463257,0,0,0,0,0,0,0,0,0,0,56.19,41.56,41.34,56.62,8.333333333333334,1,1,0,0,7,5,3,1,700.5,357206.63,326005.94,0,0,2030.9497 -11262,13891,25012,25011,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.6786528,7.4757791,0,7,3,15.083755,0,3,3,2019,7,0,28,28,1,0,0,7.4403009,7.4403009,0,0,0,0,0,0,0,0,0,0,41.34,56.62,56.19,41.56,10,1,1,0,0,8,5,3,1,700.5,357206.63,326005.94,0,0,2030.9497 -11263,13892,25013,-9,25014,25016,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.5703,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 -11263,13892,25014,25016,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,7.8317595,7.9095845,0,17,0,-68.981064,0,2,3,2019,7,0,28,37,1,0,0,11.006137,11.006137,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.67,60.18,6.666666666666667,1,1,0,0,9,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 -11263,13892,25015,-9,25014,25016,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.2111,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 -11263,13892,25016,25014,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.8688898,9.1426258,0,7,0,-2.8670049,0,2,2,2019,9,0,45,45,1,0,0,22.22987,22.22987,0,0,0,0,0,1,1,0,4.8447762,0,51.67,60.18,54.1,59.11,8.333333333333334,1,1,0,0,9,2,5,1,596.25,106737.76,79274.734,169534.64,137444.61,3992.3357 -11264,13893,25017,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4348826,7.5824289,0,0,-1097.849,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.6715655,7.6192241,46.58,56.82,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,147,500628.38,139534.81,180138.05,0,2317.7832 -11265,13894,25018,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,6.8533773,6.7161455,0,0,-1098.5111,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,2.83305,49.023308,0,0,1,1,0,0,6.7988591,49.99,20.43,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,434,212648.81,243604.66,60019.586,0,1282.1295 -11266,13895,25019,-9,-9,25020,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1157.4247,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 -11266,13895,25020,-9,-9,-9,1,1,30,0,3,0,2,2,-9,0,4,8.6086283,8.3543406,0,0,0,-1051.6932,0,-9,-9,2019,6,0,48,44,1,0,0,11.478798,11.478798,0,0,0,0,0,1,1,0,.95726782,0,53.72,49.83,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 -11266,13895,25021,-9,-9,25020,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.1567,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 -11266,13895,25022,-9,-9,25020,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-885.90686,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,369.25,-137680.89,30324.146,0,0,3154.8557 -11267,13896,25023,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.6281161,7.6259089,0,0,-1050.7214,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6592612,61.27,40.86,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1055,976408.38,392333.75,298024.78,0,2198.4114 -11268,13897,25024,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.793932,8.8680029,0,0,0,-1086.0651,0,3,2,2019,10,0,65,40,1,0,0,8.9377127,8.9377127,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,529,-154052.13,103346.31,0,0,2087.1223 -11268,13898,25025,-9,25024,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4449282,8.6035061,0,0,0,-943.48859,0,2,-9,2019,2,0,32,22,1,0,1,16.26313,16.26313,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,10,3,4,0,0,7,8,5,1,251,0,0,0,0,1602.4395 -11268,13899,25026,-9,25024,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9576879,7.9277282,0,0,0,-866.97711,0,2,-9,2019,15,4,40,40,1,4,1,8.9978695,8.9978695,0,0,0,0,0,0,0,0,0,0,43.92,39.13,-9,-9,5,3,4,0,0,4,8,4,1,922,-395591.22,0,0,0,1447.4961 -11269,13900,25027,25028,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.0214806,7.8071742,0,34,-11,48.651077,0,3,3,2019,7,0,40,40,1,0,0,9.6248131,9.6248131,1,0,0,0,0,1,1,0,0,0,59.47,41.45,48.68,58.58,8.333333333333334,1,1,0,0,12,10,3,1,741.5,783640.63,598570.31,0,0,3005.5757 -11269,13900,25028,25027,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.6511874,6.594532,34,11,29.007265,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0980587,6.5556989,48.68,58.58,59.47,41.45,10,1,1,0,0,0,10,3,1,741.5,783640.63,598570.31,0,0,3005.5757 -11270,13901,25029,25032,-9,-9,1,0,49,0,4,0,2,2,-9,0,4,0,0,0,19,0,-31.233976,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.4200668,0,57.16,56.15,52.23,55.6,8.333333333333334,1,1,0,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 -11270,13901,25030,-9,25029,25032,1,1,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1062.6727,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 -11270,13901,25031,-9,25029,25032,1,1,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1119.4675,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 -11270,13901,25032,25029,-9,-9,1,1,49,0,4,0,1,1,-9,0,4,9.5996189,9.7341394,0,8,0,-118.6165,0,-9,-9,2019,8,0,65,40,1,0,0,23.71493,23.71493,0,0,0,0,0,0,0,0,6.2178168,0,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,5,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 -11270,13901,25033,-9,25029,25032,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1002.7914,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 -11270,13901,25034,-9,25029,25032,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-928.43823,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,847,2296963.3,1179260.3,426719.81,0,53211.117 -11271,13902,25035,25036,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.0317259,9.5639496,8.6995573,37,1,-42.380684,0,2,3,2019,6,0,35,12,1,0,0,26.382654,26.382654,0,0,0,0,2,0,0,0,2.8596141,9.0897617,58.15,52.91,53.81,53.56,8.333333333333334,1,1,0,0,8,12,5,1,1266,5066653,1751540.5,1379029.8,0,8793.4707 -11271,13902,25036,25035,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.1452341,8.5554628,7.4760566,37,-1,-101.65781,0,1,1,2019,8,0,8,8,1,0,0,48.946228,48.946228,0,0,0,0,14.5,0,0,0,1.9283566,7.3561316,53.81,53.56,58.15,52.91,8.333333333333334,1,1,0,0,8,12,5,1,1266,5066653,1751540.5,1379029.8,0,8793.4707 -11272,13903,25037,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.9660563,6.5698752,0,0,-931.97363,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,6.4340796,0,49.471706,0,1,1,0,0,6.8914948,53,44,-9,-9,8,1,1,0,0,0,8,2,1,671,548888.13,0,194766.56,0,615.47748 -11273,13904,25038,25040,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.2630825,8.5271807,0,10,-3,27.152067,0,-9,-9,2019,12,0,30,31,1,0,0,15.036423,15.036423,0,0,0,0,0,1,1,0,0,0,37.23,58.95,51.24,58.84,8.333333333333334,1,1,0,1,10,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 -11273,13904,25039,-9,25038,25040,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-913.32617,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 -11273,13904,25040,25038,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,9.5414066,9.3791857,0,10,3,-99.670891,0,-9,-9,2019,10,0,50,70,1,0,0,28.369022,28.369022,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.23,58.95,8.333333333333334,1,1,0,1,11,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 -11273,13904,25041,-9,25038,25040,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-912.71283,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,811.25,708697,388054.09,307333.31,157655.73,7976.8511 -11274,13905,25042,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.714716,7.6202974,0,0,-1080.0416,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.8631105,7.5948133,57.33,53.46,-9,-9,10,1,1,0,0,5,4,3,1,1831,861305.94,723634.19,77711.75,0,2477.292 -11275,13906,25043,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.6522827,7.7685742,0,0,0,-1058.4006,0,2,2,2019,9,0,18,43,1,0,0,13.837305,13.837305,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,5,1,1,0,0,6,4,3,0,179,-407167.53,-4936.729,75151.422,44861.086,1036.0469 -11276,13907,25044,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1064.1523,-9,1,1,2019,14,0,0,0,3,3,0,0,0,0,0,0,0,120,1,1,0,0,0,19.57,31.73,-9,-9,6.666666666666667,4,5,0,1,0,8,1,0,1088,251678.72,-57506.875,435572.97,0,1624.6738 -11276,13908,25045,-9,25044,-9,1,1,18,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.5414,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,5,0,1,0,8,1,0,306,0,0,0,0,-403.06256 -11277,13909,25046,25047,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8402829,8.1044044,0,26,-2,-34.892628,0,2,2,2019,9,0,35,36,1,0,0,9.7727327,9.7727327,0,0,0,0,0,0,0,0,0,0,53.54,52.35,49.04,55.86,1.666666666666667,1,1,0,0,12,12,5,1,759,1847674,1446258.4,364082.03,50901.57,2639.5986 -11277,13909,25047,25046,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4072351,8.2484961,0,26,2,-71.574669,0,-9,2,2019,12,0,35,35,1,0,0,14.074804,14.074804,0,0,0,0,0,0,0,0,0,0,49.04,55.86,53.54,52.35,6.666666666666667,1,1,0,0,9,12,5,1,759,1847674,1446258.4,364082.03,50901.57,2639.5986 -11277,13910,25048,-9,25046,25047,1,1,24,0,0,0,2,2,-9,0,3,7.9947581,7.8039813,0,0,0,-891.42737,0,2,2,2019,10,0,35,18,1,0,1,9.5959749,9.5959749,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,2007,-245429.83,72316.492,0,0,586.06091 -11278,13911,25049,25050,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,0,0,0,9,-16,0,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.55,31.73,39.39,37.66,6.666666666666667,1,1,0,1,0,7,1,0,436,61297.133,34977.852,109725,0,2007.1223 -11278,13911,25050,25049,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,9,16,0,0,-9,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,40.55,31.73,5,1,1,0,0,0,7,1,0,436,61297.133,34977.852,109725,0,2007.1223 -11279,13912,25051,25052,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,27,-3,0,0,2,2,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,40.31,40.07,44.65,16.42,5,1,1,0,0,0,7,1,0,298.5,149743.02,0,0,0,1578.6252 -11279,13912,25052,25051,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,27,3,0,0,-9,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,44.65,16.42,40.31,40.07,5,1,1,0,0,0,7,1,0,298.5,149743.02,0,0,0,1578.6252 -11279,13913,25053,-9,25051,25052,1,0,22,0,0,0,2,2,-9,1,3,7.3984199,7.1936326,0,0,0,-999.13275,0,2,2,2019,6,0,35,43,1,0,1,5.2480431,5.2480431,0,0,0,0,5.48,1,1,0,0,0,44.43,56.74,-9,-9,0,1,1,0,0,4,7,3,0,167,163362.66,-59397.402,0,0,873.6524 -11280,13914,25054,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.0086708,5.8741088,0,0,-1009.9339,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,.57671863,0,0,1,1,0,0,5.8809323,52.08,51.67,-9,-9,10,1,1,0,0,0,12,2,1,625,142091.22,-31600.314,0,0,954.65442 -11281,13915,25055,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-914.53418,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,50.66,21.39,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,899,311087.03,0,58223.461,0,1433.9839 -11282,13916,25056,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.3356147,7.5146456,0,0,-1104.803,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5203533,7.4734182,55.96,49.93,-9,-9,10,1,1,0,0,0,12,3,1,476,537245.69,333285.59,288302.97,0,2005.3124 -11283,13917,25057,25058,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.1928234,8.227706,0,34,9,-18.447113,0,1,-9,2019,6,0,20,20,1,0,0,22.16897,22.16897,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,6,4,1,449,532004.06,558636.94,182651.88,0,3759.4692 -11283,13917,25058,25057,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.0360007,6.9615927,0,34,0,-14.183393,0,3,-9,2019,7,0,10,10,1,0,0,9.8189306,9.8189306,0,0,0,0,0,1,1,0,6.6918454,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,6,4,1,449,532004.06,558636.94,182651.88,0,3759.4692 -11284,13918,25059,25060,-9,-9,1,0,44,1,2,0,3,3,-9,1,4,0,0,0,22,-5,14.325351,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,50,55,57.16,56.15,8,2,3,0,0,0,8,2,1,1263,105766.66,51780.484,0,0,1173.3997 -11284,13918,25060,25059,-9,-9,1,1,49,1,2,0,3,3,-9,0,4,7.0689726,7.4303617,0,22,5,27.754295,-9,3,3,2019,6,0,35,0,1,0,0,4.3467102,4.3467102,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,55,8.333333333333334,2,3,0,0,10,8,2,1,1263,105766.66,51780.484,0,0,1173.3997 -11284,13919,25061,25062,25059,25060,1,1,25,1,2,0,1,1,-9,0,3,7.6362271,7.2245789,0,1,0,1.5146554,-9,3,3,2019,11,0,33,0,1,0,0,7.9659786,7.9659786,0,0,0,0,0,1,1,0,0,0,44.01,54.41,38.34,62.12,8.333333333333334,2,3,0,0,5,8,3,1,2895.5,240156.64,-78586.727,506769.69,6720.4502,1506.8381 -11284,13919,25062,25061,-9,-9,1,0,25,1,2,0,1,1,-9,0,4,6.6244397,6.9695163,0,1,0,33.361889,-9,-9,-9,2019,11,0,12,0,1,0,0,10.887758,10.887758,0,0,0,0,0,1,1,0,0,0,38.34,62.12,44.01,54.41,6.666666666666667,2,3,0,0,3,8,3,1,2895.5,240156.64,-78586.727,506769.69,6720.4502,1506.8381 -11284,13920,25063,-9,25065,25064,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.588,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,1,325.33334,154156.69,0,0,0,1509.0583 -11284,13920,25064,25065,25059,25060,1,1,24,1,2,0,1,1,-9,0,5,5.5687757,5.7696099,0,1,1,146.08362,-9,3,3,2019,12,3,45,0,1,3,0,.74390721,.74390721,0,0,0,0,0,1,1,0,0,0,40.38,61.66,57.33,53.46,5,2,3,0,0,6,8,2,1,325.33334,154156.69,0,0,0,1509.0583 -11284,13920,25065,25064,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,6.7610197,6.8201566,0,1,-1,-19.547134,-9,-9,-9,2019,8,0,16,0,1,0,0,5.8869047,5.8869047,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.38,61.66,8.333333333333334,2,3,0,0,1,8,2,1,325.33334,154156.69,0,0,0,1509.0583 -11284,13921,25066,-9,25059,25060,1,0,21,1,2,1,2,0,-9,0,4,0,6.4654779,6.6681342,0,0,-994.82953,-9,3,3,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,7.0899734,0,41.23,54.12,-9,-9,0,2,3,0,0,2,8,2,1,506,-62996.969,0,0,0,316.90817 -11284,13922,25067,-9,25059,25060,1,1,22,1,2,0,1,1,-9,0,5,0,0,0,0,0,-1082.7009,-9,3,3,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,1,0,0,8,1,1,1424,183545.77,0,0,0,0 -11285,13923,25068,25069,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7721181,7.8891087,6.848063,7,5,-101.90521,0,3,3,2019,13,1,37,37,1,1,0,9.0335455,9.0335455,0,0,0,0,0,0,0,0,6.0806227,7.0481367,45.75,42.42,36.61,54.59,6.666666666666667,1,1,0,0,7,5,4,0,214.5,255274.2,21306.84,78057.508,0,2101.0015 -11285,13923,25069,25068,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.3777089,7.1015444,0,7,-5,.32216331,0,-9,3,2019,20,8,25,39,1,8,0,7.4271145,7.4271145,0,0,0,0,0,0,0,0,0,0,36.61,54.59,45.75,42.42,8.333333333333334,1,1,0,0,8,5,4,0,214.5,255274.2,21306.84,78057.508,0,2101.0015 -11286,13924,25070,25071,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,0,0,0,9,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,29.13,28.71,7,2,3,0,0,0,6,2,1,548,137752.03,159967.19,0,0,1204.6449 -11286,13924,25071,25070,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,29.13,28.71,50,49,5,2,3,0,0,0,6,2,1,548,137752.03,159967.19,0,0,1204.6449 -11286,13925,25072,-9,25071,25070,1,0,29,0,0,0,1,1,-9,0,4,0,0,0,0,0,-947.67645,0,3,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,5,2,3,1,1,2,6,2,1,293,67292.875,0,0,0,389.53094 -11286,13926,25073,-9,25071,25070,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-877.74695,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,1,0,6,1,1,139,0,0,0,0,0 -11286,13927,25074,-9,25071,25070,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.0641,-9,3,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,14.5,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,2,3,1,1,0,6,1,1,624,-235864.31,0,0,0,229.59265 -11287,13928,25075,25076,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.9616699,8.9603376,5.6391068,44,0,-16.489561,0,2,1,2019,7,0,37,37,1,0,0,24.614819,24.614819,0,0,0,0,0,0,0,0,6.6004667,0,57.57,49.69,44.29,39.68,6.666666666666667,1,1,0,0,9,10,5,1,895,532674.56,361983.5,353073.63,250723.88,2983.1597 -11287,13928,25076,25075,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.0198984,7.7761493,0,44,0,-112.48816,0,3,2,2019,15,5,28,35,1,5,0,13.405416,13.405416,0,0,0,0,0,0,0,0,2.9117348,0,44.29,39.68,57.57,49.69,6.666666666666667,1,1,0,0,7,10,5,1,895,532674.56,361983.5,353073.63,250723.88,2983.1597 -11288,13929,25077,25078,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.1418657,8.0543394,0,1,-3,91.392365,0,2,2,2019,7,0,88,54,1,0,0,4.4657269,4.4657269,0,0,0,0,0,0,0,0,0,0,62.66,52.4,50.54,62.09,8.333333333333334,1,1,0,0,12,5,4,0,257.5,542731.06,142619.2,84945.891,0,2227.8191 -11288,13929,25078,25077,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.9405422,7.8243918,0,1,3,19.177406,-9,-9,-9,2019,9,0,38,0,1,0,0,6.5450768,6.5450768,0,0,0,0,0,0,0,0,0,0,50.54,62.09,62.66,52.4,8.333333333333334,1,1,0,1,10,5,4,0,257.5,542731.06,142619.2,84945.891,0,2227.8191 -11289,13930,25079,25080,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.2458239,8.3248577,6,4,159.1622,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.711184,8.1573324,54.2,57.49,59.04,48.59,10,1,1,0,0,5,12,4,1,652,853498.5,709341.75,251760.97,0,3060.8105 -11289,13930,25080,25079,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,6.3420949,6.1406202,6,-4,21.447432,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2274415,6.7120895,59.04,48.59,54.2,57.49,0,1,1,0,0,5,12,4,1,652,853498.5,709341.75,251760.97,0,3060.8105 -11290,13931,25081,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-915.06622,0,3,3,2019,16,4,0,26,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,36.5,41.7,-9,-9,3.333333333333333,1,1,0,0,8,4,1,0,1244,-96441.57,0,0,0,1346.8107 -11290,13932,25082,-9,25081,-9,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-937.61853,-9,2,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.69,51.4,-9,-9,8.333333333333334,1,1,0,0,3,4,1,0,1178,330508.53,0,0,0,293.41626 -11290,13933,25083,-9,25081,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-898.86218,-9,2,-9,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,10,1,1,0,0,1,4,1,0,124,0,0,0,0,0 -11291,13934,25084,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1025.9761,0,3,3,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.87,42.58,-9,-9,6.666666666666667,1,1,1,0,0,13,2,0,472,-132073.67,-22224.463,0,0,855.22943 -11292,13935,25085,25086,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.9574518,8.0645084,9,0,-75.491905,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8905015,8.0741882,54.61,51.04,57.32,47.78,8.333333333333334,1,1,0,0,0,12,3,1,979.5,1344968.3,785967,365690.59,24557.646,3090.4104 -11292,13935,25086,25085,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,0,0,9,0,-74.854401,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5375776,0,57.32,47.78,54.61,51.04,8.333333333333334,1,1,0,0,0,12,3,1,979.5,1344968.3,785967,365690.59,24557.646,3090.4104 -11293,13936,25087,-9,-9,-9,1,1,54,0,0,0,1,1,1,0,3,0,7.383368,7.6429982,0,0,-904.02203,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,8.6166677,7.52844,57.93,46.29,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,345,1122513.5,653899.5,244841.94,-8632.4258,2037.8398 -11294,13937,25088,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.2214131,6.9669356,0,0,-1187.8151,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,24.838886,0,0,1,1,0,5.0640535,6.9414868,48.76,43.78,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,267,1168353.3,374176.91,270698.25,0,1201.2202 -11295,13938,25089,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8917599,7.8694196,0,0,0,-1025.7167,0,3,2,2019,10,0,43,40,1,0,0,5.3625655,5.3625655,0,0,0,0,0,0,0,0,.63545978,0,55.94,47.09,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,550,240463.16,0,0,0,1336.9176 -11295,13939,25090,-9,25089,-9,1,0,23,0,0,0,2,2,1,0,4,5.9148273,5.6098342,0,0,0,-907.78931,-9,2,2,2019,11,0,14,0,1,2,1,2.9919307,2.9919307,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,12,2,1,452,102294.61,0,0,0,75.284828 -11296,13940,25091,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,8.4670191,8.3414545,0,0,-1061.527,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2337751,8.5362825,39.13,41.31,-9,-9,5,1,1,0,0,7,8,5,1,472,2560047.8,1008061.4,1449442.4,0,2237.0703 -11297,13941,25092,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1001.6389,0,2,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,7.5284338,0,48.42,60.53,-9,-9,8.333333333333334,4,2,0,0,10,6,1,1,158,-41978.828,0,0,0,1151.6992 -11298,13942,25093,-9,-9,-9,1,1,45,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1109.9894,-9,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,33.62,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,1586,-46591.477,6295.9888,0,0,1411.6869 -11299,13943,25094,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.81421,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.3836656,0,0,1,1,0,1.1843175,0,52,45,-9,-9,8,1,1,0,0,0,5,1,0,261,-46620.391,0,0,0,1157.2759 -11300,13944,25095,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.6011243,7.5845461,0,0,-1164.6096,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8248527,7.302959,64.3,32.53,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,200,1031505.5,88206.453,691576.75,0,1778.3063 -11301,13945,25096,25099,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.5079813,9.7676439,0,11,-3,37.627193,0,2,1,2019,12,0,44,42,1,0,0,32.122372,32.122372,0,0,0,0,0,0,0,0,7.3170605,0,54.2,57.49,38.76,58.16,8.333333333333334,1,1,0,0,8,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 -11301,13945,25097,-9,25099,25096,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.4371,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 -11301,13945,25098,-9,25099,25096,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.76044,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 -11301,13945,25099,25096,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,9.5754061,9.6875172,0,10,3,29.707298,0,2,1,2019,20,6,45,48,1,6,0,35.166718,35.166718,0,0,0,0,0,0,0,0,3.6710825,0,38.76,58.16,54.2,57.49,8.333333333333334,2,3,0,0,9,8,5,1,773.75,221413.92,117913.76,369188.34,150069.97,8953.7266 -11302,13946,25100,25101,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,7,-16,-51.790733,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,58.53,55.62,10,1,1,1,0,4,11,3,1,867.5,129323.34,-35339.867,91947.945,0,1424.9716 -11302,13946,25101,25100,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.9336171,8.0833664,0,7,16,56.2911,0,-9,-9,2019,5,0,45,60,1,0,0,6.7482152,6.7482152,0,0,0,0,0,0,0,0,0,0,58.53,55.62,41.17,59.31,0,1,1,0,1,12,11,3,1,867.5,129323.34,-35339.867,91947.945,0,1424.9716 -11303,13947,25102,25103,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,49,0,-61.322617,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.3,52.91,56.28,47.53,8.333333333333334,1,1,0,0,0,11,2,1,764,236013.22,279295.47,85485.406,0,1689.2729 -11303,13947,25103,25102,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.080308,6.7773237,49,0,166.63861,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,11.573571,0,0,1,1,0,0,7.0504851,56.28,47.53,58.3,52.91,6.666666666666667,1,1,0,0,4,11,2,1,764,236013.22,279295.47,85485.406,0,1689.2729 -11304,13948,25104,25105,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.1750441,5.7268295,19,-3,114.04819,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,2.4567657,9.2580643,27.659601,0,1,1,0,1.036101,6.3165932,44.79,16.47,48.27,30.92,8.333333333333334,1,1,0,0,0,5,2,1,1019,258835.19,-5797.5381,117124.92,0,1125.1077 -11304,13948,25105,25104,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,17,3,42.689297,0,3,3,2019,12,0,0,0,4,2,0,0,0,1,0,10.56179,0,14.5,1,1,0,5.1859765,0,48.27,30.92,44.79,16.47,10,1,1,0,0,0,5,2,1,1019,258835.19,-5797.5381,117124.92,0,1125.1077 -11305,13949,25106,25107,-9,-9,1,1,34,0,2,0,1,1,-9,0,2,8.2911491,8.3956413,0,13,-6,-41.817738,0,2,3,2019,9,1,32,40,1,1,0,17.528404,17.528404,0,0,0,0,0,1,1,0,0,0,59.28,34.1,47.32,52.7,8.333333333333334,1,1,0,0,9,7,5,1,339.33334,-62631.078,124774.09,504627.94,523149.34,4641.5518 -11305,13949,25107,25106,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.6277208,8.4642401,0,13,6,218.22311,0,2,3,2019,8,0,41,32,1,0,0,14.329897,14.329897,0,0,0,0,2,1,1,0,0,0,47.32,52.7,59.28,34.1,8.333333333333334,1,1,0,0,9,7,5,1,339.33334,-62631.078,124774.09,504627.94,523149.34,4641.5518 -11305,13949,25108,-9,25107,25106,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.39386,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,339.33334,-62631.078,124774.09,504627.94,523149.34,4641.5518 -11306,13950,25109,-9,25111,25110,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-995.76025,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,453,529429.06,209975.14,215685.94,0,3596.8586 -11306,13950,25110,25111,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.0952806,8.2657671,0,7,3,-59.384441,0,2,2,2019,7,0,37,37,1,0,0,12.126458,12.126458,0,0,0,0,0,1,1,0,.38702756,0,55.79,52.62,40.47,55.65,8.333333333333334,1,1,0,0,8,11,4,1,453,529429.06,209975.14,215685.94,0,3596.8586 -11306,13950,25111,25110,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.5118628,8.7921505,0,7,-3,50.700626,0,2,2,2019,12,0,35,14,1,0,0,15.484242,15.484242,0,0,0,0,0,1,1,0,3.4609842,0,40.47,55.65,55.79,52.62,6.666666666666667,1,1,0,0,6,11,4,1,453,529429.06,209975.14,215685.94,0,3596.8586 -11307,13951,25112,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.7556291,5.9098697,0,0,-917.07678,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,10.777442,0,0,1,1,0,0,5.9436841,52,45,-9,-9,8,1,1,0,0,0,11,2,1,2898,156700.95,194013.13,0,0,462.30048 -11307,13952,25113,25114,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.9844737,8.2986088,5.5024514,8,3,-32.449093,0,3,3,2019,10,0,40,40,1,1,0,8.3717279,8.3717279,0,0,0,0,0,1,1,0,0,6.0682154,51,49,40.38,34.42,7,1,1,0,0,9,11,4,1,1288.5,-106812.91,0,226616.81,113263.27,2762.5854 -11307,13952,25114,25113,25112,-9,1,0,57,0,0,0,1,1,-9,0,2,8.3732529,8.2869606,0,8,-3,13.939353,0,2,3,2019,21,10,37,37,1,10,0,12.022561,12.022561,0,0,0,0,0,1,1,0,0,0,40.38,34.42,51,49,3.333333333333333,1,1,0,0,9,11,4,1,1288.5,-106812.91,0,226616.81,113263.27,2762.5854 -11308,13953,25115,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,6.7298026,6.6497412,0,0,0,-929.33295,-9,-9,-9,2019,16,4,16,0,1,4,0,5.0601511,5.0601511,0,0,0,0,0,0,0,0,0,0,50.74,44.43,-9,-9,8.333333333333334,1,1,0,0,4,7,2,1,114,-221242.13,0,0,0,-2.6181602 -11309,13954,25116,-9,25119,25118,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.95288,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 -11309,13954,25117,-9,25119,25118,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.2019,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 -11309,13954,25118,25119,-9,-9,1,1,63,0,2,0,2,2,-9,0,3,8.3223667,7.9627934,0,10,22,-14.608688,0,2,2,2019,7,0,38,37,1,0,0,8.4134836,8.4134836,0,0,0,0,0,1,1,0,0,0,48.14,44.28,32.68,55.45,6.666666666666667,3,4,0,0,9,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 -11309,13954,25119,25118,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,7.3735394,7.5485945,0,10,-22,-81.323898,0,3,3,2019,13,2,37,40,1,2,0,5.2058673,5.2058673,0,0,0,0,0,1,1,0,0,0,32.68,55.45,48.14,44.28,3.333333333333333,3,4,0,1,3,6,3,0,1339.75,162670.06,97472.32,0,0,2662.2708 -11310,13955,25120,-9,25122,25121,1,0,23,0,0,0,2,2,-9,0,3,7.8662567,7.7399449,0,0,0,-1115.0754,0,2,1,2019,18,6,60,54,1,6,1,4.6334362,4.6334362,0,0,0,0,0,0,0,0,0,0,12.5,65.91,-9,-9,1.666666666666667,4,2,0,0,6,8,3,1,482,-104054.3,0,0,0,134.785 -11310,13956,25121,25122,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,7.50775,7.2020159,0,35,5,-59.167927,0,-9,-9,2019,21,9,25,25,1,9,0,8.1903534,8.1903534,0,0,0,0,0,0,0,0,0,0,38.56,40.88,22.68,32.76,5,4,5,0,0,10,8,3,1,494,1148117.3,745464.25,448668.91,49430.594,1497.8425 -11310,13956,25122,25121,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.4514894,7.4370694,0,35,-5,98.980476,-9,-9,-9,2019,13,1,22,0,1,1,0,11.79311,11.79311,0,0,0,0,0,0,0,0,3.1602066,0,22.68,32.76,38.56,40.88,5,1,1,0,0,10,8,3,1,494,1148117.3,745464.25,448668.91,49430.594,1497.8425 -11311,13957,25123,-9,25125,-9,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1030.7396,-9,3,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,737.33331,-14182.539,-41056.332,0,0,2237.324 -11311,13957,25124,-9,25125,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.6592,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,737.33331,-14182.539,-41056.332,0,0,2237.324 -11311,13957,25125,-9,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,0,6.5512042,6.6206131,0,0,-1200.5033,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,6.7830501,0,54.02,55.17,-9,-9,6.666666666666667,1,1,0,0,4,12,2,0,737.33331,-14182.539,-41056.332,0,0,2237.324 -11312,13958,25126,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,6.6455512,6.7388234,0,0,-1043.2996,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,6.7913527,29.6,66.5,-9,-9,5,1,1,0,0,0,11,2,1,1570,-122602.4,-3092.7522,201978.33,0,1157.7198 -11313,13959,25127,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.7241254,6.4260445,0,0,-961.34985,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,5.4370141,6.3961949,31.88,34.26,-9,-9,5,1,1,0,0,0,12,2,0,1422,455272.53,198944.44,0,0,1672.2134 -11314,13960,25128,25129,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.7643795,7.5347605,33,-2,-17.749495,0,2,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,7,1,1,0,0,7.6569786,33.57,51.18,59.31,49.81,6.666666666666667,1,1,0,0,5,4,3,1,411.5,719962.75,535386.88,237152.25,0,2239.1125 -11314,13960,25129,25128,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,33,2,-40.002811,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,59.31,49.81,33.57,51.18,8.333333333333334,1,1,0,0,0,4,3,1,411.5,719962.75,535386.88,237152.25,0,2239.1125 -11315,13961,25130,25132,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.1784544,9.1405573,0,25,-3,-109.76362,0,3,3,2019,13,2,38,0,1,2,0,26.660952,26.660952,0,0,0,0,0,1,1,0,1.3172268,0,48.18,61.8,49.78,48.69,8.333333333333334,1,1,0,0,12,6,5,1,468,1529303,1240912.5,267840.41,64122.301,4151.2798 -11315,13961,25131,-9,25132,25130,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1127.4822,-9,1,1,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,468,1529303,1240912.5,267840.41,64122.301,4151.2798 -11315,13961,25132,25130,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,8.5456333,8.478159,0,25,3,17.98226,0,3,3,2019,5,0,35,0,1,0,0,16.128084,16.128084,0,0,0,0,7,1,1,0,0,0,49.78,48.69,48.18,61.8,5,1,1,0,0,11,6,5,1,468,1529303,1240912.5,267840.41,64122.301,4151.2798 -11315,13962,25133,-9,25132,25130,1,0,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1021.5322,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,4,6,1,1,578,0,0,0,0,149.4236 -11316,13963,25134,25135,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.2413483,5.409431,16,-4,40.299484,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3625698,5.5632057,56.34,46.17,63.83,40.76,8.333333333333334,1,1,0,0,0,9,3,1,2182.5,762477.75,439342.34,249846.45,0,2389.6919 -11316,13963,25135,25134,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.717391,7.4757991,16,4,122.43829,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8822925,7.5548596,63.83,40.76,56.34,46.17,10,1,1,0,0,4,9,3,1,2182.5,762477.75,439342.34,249846.45,0,2389.6919 -11317,13964,25136,25137,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.897789,8.7393322,6.843905,24,6,-90.71492,0,2,2,2019,9,0,42,42,1,0,0,15.592525,15.592525,0,0,0,0,0,1,1,0,2.2037573,7.5110483,50.65,60.47,54.1,59.11,10,1,1,0,0,10,6,5,1,553.33331,251321.14,265231.22,145172.2,0,4311.5728 -11317,13964,25137,25136,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.3957062,8.2038488,0,8,-6,-58.934956,0,-9,-9,2019,9,0,37,35,1,0,0,15.92339,15.92339,0,0,0,0,14.5,1,1,0,2.1836936,0,54.1,59.11,50.65,60.47,10,1,1,0,0,10,6,5,1,553.33331,251321.14,265231.22,145172.2,0,4311.5728 -11317,13964,25138,-9,25137,25136,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-923.17511,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,.76661634,0,46.4,59.87,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,553.33331,251321.14,265231.22,145172.2,0,4311.5728 -11317,13965,25139,-9,25137,25136,1,0,19,0,0,1,2,0,0,0,4,0,6.2652726,6.0002613,0,0,-1037.3993,-9,2,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,6.2075129,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,183,380730.5,0,0,0,167.91043 -11318,13966,25140,25141,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,9,0,-12.282513,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7295799,0,62.5,49.56,57.16,56.15,10,1,1,0,0,0,5,4,1,724,505747.09,480040.13,117795.22,0,4482.7568 -11318,13966,25141,25140,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,8.5335627,8.6348696,49,0,28.813894,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5053644,8.2854633,57.16,56.15,62.5,49.56,10,1,1,0,0,0,5,4,1,724,505747.09,480040.13,117795.22,0,4482.7568 -11319,13967,25142,-9,-9,-9,1,1,22,0,1,0,2,2,-9,0,3,8.2546177,8.3867846,0,0,0,-1076.2471,-9,1,1,2019,14,4,40,0,1,4,1,11.577262,11.577262,0,0,0,0,0,0,0,0,1.4766893,0,33.37,60.58,-9,-9,3.333333333333333,1,1,0,0,4,10,4,1,1268,-268003.5,3061.1746,0,0,1467.5931 -11320,13968,25143,25144,-9,-9,1,1,54,0,2,0,2,2,-9,0,1,8.9615602,8.7365875,0,6,5,30.879858,0,2,2,2019,33,12,44,44,1,12,0,17.54011,17.54011,0,0,0,0,0,1,1,0,2.2697737,0,6.59,54.26,55.82,49.82,1.666666666666667,1,1,0,1,7,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 -11320,13968,25144,25143,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,5.6972904,5.5671926,0,6,-5,57.791584,0,3,3,2019,10,1,5,0,1,1,0,9.5912428,9.5912428,0,0,0,0,0,1,1,0,.15483522,0,55.82,49.82,6.59,54.26,6.666666666666667,1,1,0,0,5,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 -11320,13968,25145,-9,25144,25143,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.0038,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 -11320,13968,25146,-9,25144,25143,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.2021,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,726.5,154436.81,-22266.006,260880.2,0,2460.6106 -11321,13969,25147,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.9145222,7.9726868,0,0,0,-1068.2932,0,2,2,2019,12,0,38,23,1,0,0,8.6183033,8.6183033,0,0,0,0,0,1,1,0,0,0,47.55,57.73,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,630,25320.063,93816.625,0,0,2118.4727 -11321,13969,25148,-9,25147,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.34,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,630,25320.063,93816.625,0,0,2118.4727 -11321,13970,25149,-9,25147,-9,1,1,19,0,1,0,3,3,-9,0,5,0,0,0,0,0,-943.85406,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,2,1,0,553,0,0,0,0,176.19984 -11322,13971,25150,-9,25153,25152,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.20447,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 -11322,13971,25151,-9,25153,25152,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.44867,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 -11322,13971,25152,25153,-9,-9,1,1,48,1,3,0,1,1,-9,0,3,8.4714184,8.6262054,0,9,16,-4.2810354,0,2,2,2019,7,0,36,36,1,0,0,20.959295,20.959295,0,0,0,0,0,1,1,0,0,0,37.73,53.59,43.2,59.97,8.333333333333334,1,1,0,1,11,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 -11322,13971,25153,25152,-9,-9,1,0,32,1,3,0,2,2,-9,1,4,0,0,0,9,-16,-108.59914,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,37.73,53.59,10,1,1,0,1,2,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 -11322,13971,25154,-9,25153,25152,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.92035,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,793.79999,340895.47,299212.5,337084.69,151168.19,2772.1184 -11323,13972,25155,25156,-9,25157,1,1,68,0,0,0,1,1,-9,0,2,6.0224371,6.3217468,0,5,21,41.034927,0,-9,3,2019,9,0,35,35,1,0,0,1.5067116,1.5067116,1,0,0,0,71.5,1,1,0,0,0,53.31,38.35,50,54,3.333333333333333,1,1,0,0,8,7,2,1,712,-167711.78,0,0,0,334.50763 -11323,13972,25156,25155,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,0,0,0,5,-21,-63.989548,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53.31,38.35,8,1,1,0,0,0,7,2,1,712,-167711.78,0,0,0,334.50763 -11323,13973,25157,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.3267,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,7,1,1,881,116537.62,0,365225.31,0,689.33588 -11324,13974,25158,-9,25160,25159,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-893.62921,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 -11324,13974,25159,25160,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.9306068,8.7939177,0,8,4,-21.935787,0,-9,2,2019,12,3,40,40,1,3,0,20.916739,20.916739,0,0,0,0,2,1,1,0,0,0,54.37,54.8,57.16,56.15,1.666666666666667,1,1,0,0,9,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 -11324,13974,25160,25159,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.8281035,6.9997993,0,8,-4,-178.69168,0,2,-9,2019,9,0,14,15,1,0,0,7.8143859,7.8143859,0,0,0,0,0,1,1,0,1.1275623,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 -11324,13974,25161,-9,25160,25159,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.41425,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,540,278538.84,68466.977,211538.47,0,3279.8892 -11325,13975,25162,25163,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.1830597,7.330431,0,32,-25,11.957746,0,-9,-9,2019,8,0,16,16,1,0,0,6.8702512,6.8702512,0,0,0,0,0,1,1,0,0,0,54.38,49.27,55.56,51.53,10,4,2,0,0,10,6,2,0,427,858037.44,497980.53,154411.3,0,1809.7803 -11325,13975,25163,25162,-9,-9,1,1,75,0,1,0,2,2,-9,0,3,0,0,0,32,25,-156.75331,0,-9,-9,2019,5,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,51.53,54.38,49.27,8.333333333333334,1,1,0,0,8,6,2,0,427,858037.44,497980.53,154411.3,0,1809.7803 -11325,13975,25164,-9,25162,25163,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1013.4164,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,2,0,427,858037.44,497980.53,154411.3,0,1809.7803 -11325,13976,25165,-9,-9,-9,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-883.57794,-9,-9,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.13,57.22,-9,-9,10,4,2,0,0,2,6,1,0,1179,-37163.609,0,0,0,0 -11326,13977,25166,25167,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,44,3,65.626434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3137722,0,52.4,50.21,59.53,56.44,8.333333333333334,2,3,0,0,1,6,2,1,167,30981.016,104483.15,138520.19,0,781.0191 -11326,13977,25167,25166,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,6.4819627,5.9028444,0,44,-3,182.81677,0,-9,-9,2019,8,0,20,26,1,0,0,2.8814936,2.8814936,0,0,0,0,0,1,1,0,0,0,59.53,56.44,52.4,50.21,8.333333333333334,2,3,0,0,11,6,2,1,167,30981.016,104483.15,138520.19,0,781.0191 -11327,13978,25168,25169,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.1892509,9.4673929,0,5,2,119.4576,-9,-9,-9,2019,8,0,50,0,1,0,0,21.768976,21.768976,0,0,0,0,0,0,0,0,0,0,54,54,48.87,58.55,8,1,1,0,0,1,8,5,1,286.5,1044275.7,473193.25,551125.38,69990.813,7027.8086 -11327,13978,25169,25168,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.6380825,8.6853809,0,5,-2,-36.391491,0,-9,-9,2019,10,0,45,45,1,0,0,13.13491,13.13491,0,0,0,0,0,0,0,0,7.5216331,0,48.87,58.55,54,54,8.333333333333334,1,1,0,0,8,8,5,1,286.5,1044275.7,473193.25,551125.38,69990.813,7027.8086 -11327,13979,25170,-9,25169,25168,1,0,24,0,0,0,1,1,-9,0,4,7.9467883,7.681828,0,0,0,-885.77106,-9,1,1,2019,11,0,45,0,1,2,1,6.1933908,6.1933908,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,8,3,1,545,-143547.75,0,0,0,1638.8356 -11328,13980,25171,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5671177,8.7951813,0,0,0,-1004.0062,0,3,3,2019,18,6,37,38,1,6,0,16.88991,16.88991,0,0,0,0,0,0,0,0,.2512176,0,40.58,60.95,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,73,81833.18,3922.4399,102368.56,24301.646,2405.6372 -11329,13981,25172,25173,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.7017865,7.9512448,0,35,0,-73.961868,0,2,2,2019,11,1,30,40,1,1,0,8.7510109,8.7510109,0,0,0,0,14.5,0,0,0,3.9220543,0,52.21,59.91,54,54,10,1,1,0,0,9,9,4,1,1333,603839,291916.41,382998.72,0,2768.3813 -11329,13981,25173,25172,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.8155622,7.8615141,0,6,0,-3.1531012,0,-9,-9,2019,9,0,38,38,1,1,0,11.246498,11.246498,0,0,0,0,0,0,0,0,0,0,54,54,52.21,59.91,8,1,1,0,0,1,9,4,1,1333,603839,291916.41,382998.72,0,2768.3813 -11329,13982,25174,-9,25172,25173,1,1,27,0,0,0,2,2,-9,0,3,8.4610033,8.016345,0,0,0,-1160.9736,0,2,2,2019,16,4,19,31,1,4,1,31.603966,31.603966,0,0,0,0,2,0,0,0,5.3016529,0,28.73,61.03,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,999,10435.753,12663.65,0,0,2066.8308 -11330,13983,25175,-9,25176,25177,1,0,45,0,0,0,2,2,-9,0,3,7.9235024,7.5530758,0,0,0,-910.07544,0,2,2,2019,11,1,45,38,1,1,0,7.609571,7.609571,0,0,0,0,0,1,1,0,6.7695775,0,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,304,-26310.537,-17981.34,188845.09,0,1178.9082 -11330,13984,25176,25177,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,4.8266745,4.3975863,6,0,-69.796913,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2293296,4.9352884,57.8,50.59,48.85,58.56,8.333333333333334,1,1,0,0,0,9,2,1,378,116274.7,136960.81,278388.88,0,2117.9712 -11330,13984,25177,25176,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.3060884,5.6126928,6,0,51.952496,0,3,-9,2019,2,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2329817,5.6275568,48.85,58.56,57.8,50.59,1.666666666666667,1,1,0,0,0,9,2,1,378,116274.7,136960.81,278388.88,0,2117.9712 -11331,13985,25178,25179,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,0,8.0161486,7.8979473,9,1,26.006845,0,1,2,2019,22,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,7.6627002,7.9607143,43.63,61.31,35.36,31.51,10,1,1,0,0,7,9,3,1,947,2301385.5,1430958.4,551795.63,0,1806.7072 -11331,13985,25179,25178,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,9,-1,8.5326586,0,3,2,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,2,0,0,0,7.6438437,0,35.36,31.51,43.63,61.31,6.666666666666667,1,1,0,0,7,9,3,1,947,2301385.5,1430958.4,551795.63,0,1806.7072 -11332,13986,25180,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-933.11029,-9,-9,-9,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,27.97,56.54,-9,-9,5,1,1,0,1,0,7,1,0,1159,-35613.969,0,0,0,170.18813 -11333,13987,25181,25182,-9,-9,1,1,52,0,0,0,3,3,-9,1,3,0,0,0,2,-2,0,0,3,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,0,0,49.04,55.86,40.31,14.24,5,1,1,0,0,0,13,1,0,1322,-37269.953,0,0,0,1451.1877 -11333,13987,25182,25181,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,2,2,0,0,3,3,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,40.31,14.24,49.04,55.86,3.333333333333333,1,1,0,0,0,13,1,0,1322,-37269.953,0,0,0,1451.1877 -11334,13988,25183,25184,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,6.4259748,6.7851119,0,9,-3,79.419403,0,2,2,2019,7,1,13,14,1,1,0,7.748383,7.748383,0,0,0,0,0,1,1,0,0,0,59.79,28.32,52.48,41.05,6.666666666666667,1,1,0,0,9,10,2,0,779.5,102870.09,28077.289,342123.19,194034.09,820.99365 -11334,13988,25184,25183,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,6.9309497,7.0125408,0,9,3,199.57486,0,2,2,2019,8,0,17,18,1,0,0,6.5640998,6.5640998,0,0,0,0,0,1,1,0,0,0,52.48,41.05,59.79,28.32,10,1,1,0,0,9,10,2,0,779.5,102870.09,28077.289,342123.19,194034.09,820.99365 -11335,13989,25185,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-944.94629,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,4.5093112,0,0,0,1,1,0,0,0,57.04,29.74,-9,-9,5,3,4,0,1,0,6,1,0,658,208506.94,0,0,0,815.81818 -11336,13990,25186,25187,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.9872131,7.8620229,0,6,0,25.31522,0,-9,-9,2019,4,0,40,40,1,0,0,7.4167008,7.4167008,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,6,5,0,796.5,199712.81,-45036.82,63972.406,62716.477,3166.8804 -11336,13990,25187,25186,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,8.7438192,8.6549797,0,6,0,57.170319,0,2,2,2019,10,0,45,40,1,0,0,11.301469,11.301469,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,0,796.5,199712.81,-45036.82,63972.406,62716.477,3166.8804 -11337,13991,25188,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.5383344,6.5223432,0,0,0,-966.28448,0,2,-9,2019,3,0,8,17,1,0,0,9.0195932,9.0195932,0,0,0,0,0,1,1,0,4.7364163,0,51.03,43.85,-9,-9,8.333333333333334,1,1,0,0,8,11,2,0,583.5,-27874.594,0,0,0,1186.0369 -11337,13991,25189,-9,25188,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.7126,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,11,2,0,583.5,-27874.594,0,0,0,1186.0369 -11337,13992,25190,-9,-9,-9,1,1,21,0,1,0,2,2,1,1,2,0,0,0,0,0,-1027.239,-9,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.89,35.07,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,204,-138896.97,0,0,0,118.43929 -11338,13993,25191,25192,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.338068,8.3993044,0,1,7,-51.471958,-9,-9,-9,2019,10,0,35,0,1,1,0,12.654392,12.654392,0,0,0,0,0,0,0,0,2.8207381,0,50,57,36.37,61.5,7,1,1,0,0,1,10,5,0,1173.5,948890,58648.02,320324.69,33123.879,3440.1187 -11338,13993,25192,25191,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.8837833,8.5558176,0,1,-7,-112.55003,0,2,2,2019,20,8,46,47,1,8,0,15.869769,15.869769,0,0,0,0,0,0,0,0,.65419722,0,36.37,61.5,50,57,6.666666666666667,1,1,0,0,11,10,5,0,1173.5,948890,58648.02,320324.69,33123.879,3440.1187 -11339,13994,25193,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.662118,5.5399404,0,0,-1010.2467,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.61836,55.54,46.02,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,176,76029.047,-111227.58,0,0,949.97827 -11340,13995,25194,25195,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5091753,8.413538,5.4296985,10,5,-45.51722,0,2,2,2019,14,2,50,50,1,2,0,13.02162,13.02162,0,0,0,0,7,0,0,0,3.7549965,5.6760736,44.02,60.7,44.02,60.7,8.333333333333334,1,1,0,0,11,6,5,1,1318,558668.63,129886.84,263157.5,0,4717.3691 -11340,13995,25195,25194,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.405859,8.4161263,0,10,-5,-61.537106,0,2,2,2019,10,0,40,40,1,0,0,14.502612,14.502612,0,0,0,0,2,0,0,0,6.6331415,0,44.02,60.7,44.02,60.7,6.666666666666667,1,1,0,0,11,6,5,1,1318,558668.63,129886.84,263157.5,0,4717.3691 -11341,13996,25196,25197,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.6404734,8.6847982,0,7,-3,-65.653938,0,2,2,2019,9,1,42,45,1,1,0,13.971821,13.971821,0,0,0,0,0,0,0,0,2.9344242,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,5,5,1,508,272541.31,107005.81,283207.94,200797.3,4220.4492 -11341,13996,25197,25196,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.7334185,8.8643408,0,7,3,3.4361186,0,2,2,2019,8,0,36,50,1,0,0,19.20586,19.20586,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,4,2,0,0,8,5,5,1,508,272541.31,107005.81,283207.94,200797.3,4220.4492 -11342,13997,25198,-9,25199,25201,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.39624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 -11342,13997,25199,25201,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,8.3625002,8.5844898,0,7,-6,117.1646,0,2,2,2019,25,11,47,46,1,11,0,9.1248713,9.1248713,0,0,0,0,0,1,1,0,0,0,51.02,52.22,49.04,55.86,3.333333333333333,1,1,0,0,6,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 -11342,13997,25200,-9,25199,25201,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.097,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 -11342,13997,25201,25199,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,0,0,0,7,6,27.126987,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,51.02,52.22,8.333333333333334,1,1,0,0,6,1,3,1,498.5,330872.19,65687.148,201892.16,121248.51,1671.6582 -11343,13998,25202,-9,25204,25203,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2227,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 -11343,13998,25203,25204,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.3448133,8.7327089,0,9,-1,-79.736237,0,2,2,2019,29,12,39,39,1,12,0,11.349013,11.349013,0,0,0,0,0,1,1,0,0,0,15.06,55.77,34.68,59.67,1.666666666666667,1,1,0,0,10,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 -11343,13998,25204,25203,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.8590212,8.7944584,0,9,1,-28.287365,0,1,1,2019,18,7,35,35,1,7,0,21.086859,21.086859,0,0,0,0,0,1,1,0,0,0,34.68,59.67,15.06,55.77,8.333333333333334,1,1,0,0,7,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 -11343,13998,25205,-9,25204,25203,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.0242,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1250.5,263923.34,0,227477.11,221177.88,4209.0684 -11344,13999,25206,25209,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.0214233,9.0705471,0,19,0,-55.15221,0,3,2,2019,4,0,43,42,1,0,0,24.210096,24.210096,0,0,0,0,0,0,0,0,5.2852387,0,57.16,56.15,49.84,59.62,8.333333333333334,1,1,0,0,13,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 -11344,13999,25207,-9,25209,25206,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.47931,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 -11344,13999,25208,-9,25209,25206,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.3536,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 -11344,13999,25209,25206,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.698534,8.5576963,0,21,0,-30.66721,0,3,3,2019,8,0,31,30,1,0,0,24.408449,24.408449,0,0,0,0,0,0,0,0,5.0764112,0,49.84,59.62,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,831.25,180924.59,34703.16,342249.13,154628.25,5832.916 -11345,14000,25210,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,2.8793197,2.684731,0,0,-1027.1626,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1590974,2.730588,54.42,20.79,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,3237,332430.97,2749.7617,79140.961,0,2353.4314 -11346,14001,25211,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.1782994,5.9421053,0,0,-1045.7002,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.7547727,4.5508385,54.77,30.04,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,875,-85900.633,179024.53,224537.25,0,568.73962 -11347,14002,25212,25213,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.3600492,7.247211,0,11,-5,-132.75398,0,2,1,2019,9,0,4,5,1,0,0,71.117897,71.117897,0,0,0,0,0,0,0,0,9.4126558,0,65.53,38.76,54.69,57.47,10,2,3,0,0,4,7,5,1,976.5,1213339.5,1436839.9,138659.81,27997.48,9198.4512 -11347,14002,25213,25212,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.775116,8.7551813,0,8,5,110.02364,0,-9,-9,2019,9,0,42,42,1,0,0,22.303072,22.303072,0,0,0,0,0,0,0,0,4.2574844,0,54.69,57.47,65.53,38.76,8.333333333333334,1,1,0,0,11,7,5,1,976.5,1213339.5,1436839.9,138659.81,27997.48,9198.4512 -11348,14003,25214,25215,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,0,0,43,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,47.87,20.38,10,1,1,0,0,0,6,1,1,886.5,222105.73,0,221897.59,0,1505.3787 -11348,14003,25215,25214,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,43,3,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,4.4527063,.89106178,23.93833,0,1,1,0,0,0,47.87,20.38,62.39,56.71,10,1,1,0,0,0,6,1,1,886.5,222105.73,0,221897.59,0,1505.3787 -11349,14004,25216,25217,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,5,-1,0,0,3,3,2019,32,11,0,0,4,11,0,0,0,1,0,99.510971,0,0,1,1,0,0,0,37.36,19.77,43.96,27.39,5,1,1,0,0,0,11,1,0,907.5,-179255.72,-29787.344,0,0,1895.2061 -11349,14004,25217,25216,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,5,1,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,43.96,27.39,37.36,19.77,3.333333333333333,1,1,0,0,0,11,1,0,907.5,-179255.72,-29787.344,0,0,1895.2061 -11350,14005,25218,-9,25219,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.41931,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1942.6666,106015.22,0,0,0,1888.0443 -11350,14005,25219,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,2,7.1231723,7.0842581,0,0,0,-920.74072,0,-9,-9,2019,26,12,24,24,1,12,0,8.3375292,8.3375292,0,0,0,0,0,1,1,0,0,0,25.08,40.26,-9,-9,5,1,1,0,1,2,2,2,0,1942.6666,106015.22,0,0,0,1888.0443 -11350,14005,25220,-9,25219,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.35339,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,1942.6666,106015.22,0,0,0,1888.0443 -11351,14006,25221,25222,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,30,-2,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,52.99,51.28,6.666666666666667,1,1,0,0,11,13,1,1,2824.5,133292.13,-4742.6787,264424.69,0,937.30902 -11351,14006,25222,25221,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,30,2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9125075,0,52.99,51.28,43.6,51.61,10,1,1,0,0,9,13,1,1,2824.5,133292.13,-4742.6787,264424.69,0,937.30902 -11352,14007,25223,-9,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.8963566,7.4735603,0,0,-948.71442,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.2090087,7.5781932,54,45,-9,-9,8,2,3,0,0,0,8,3,1,87,687558.06,72230.445,543109.94,0,1633.7864 -11353,14008,25224,25225,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,46,-7,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,50,46.91,51.8,8.333333333333334,1,1,0,0,0,12,1,1,501.5,274008.91,-59442.719,57049.086,0,381.93097 -11353,14008,25225,25224,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,0,0,46,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.91,51.8,55,50,6.666666666666667,1,1,0,0,0,12,1,1,501.5,274008.91,-59442.719,57049.086,0,381.93097 -11354,14009,25226,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.7406383,7.9929919,0,0,-949.91138,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1909027,7.7008719,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,79,435646.13,601734.88,150227.03,0,2317.8171 -11355,14010,25227,25228,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.0474315,7.1201916,0,1,-2,-54.472694,-9,3,3,2019,11,0,20,0,1,0,0,9.5043859,9.5043859,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52,54.51,8.333333333333334,1,1,0,0,11,4,5,1,527,574504.88,65053.996,313855.25,43592.203,3473.3699 -11355,14010,25228,25227,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.9989901,8.7468576,0,1,2,-139.14597,-9,3,2,2019,11,1,36,0,1,1,0,20.866402,20.866402,0,0,0,0,0,0,0,0,4.6129756,0,52,54.51,55.36,51.57,3.333333333333333,1,1,0,0,12,4,5,1,527,574504.88,65053.996,313855.25,43592.203,3473.3699 -11355,14011,25229,-9,25227,25228,1,0,20,0,0,0,2,2,-9,0,3,6.571312,6.4173121,0,0,0,-1023.1237,-9,3,2,2019,25,10,18,0,1,10,1,3.2966986,3.2966986,0,0,0,0,0,0,0,0,1.1575313,0,20.02,61.29,-9,-9,3.333333333333333,1,1,0,0,1,4,2,1,399,118893.82,0,0,0,468.30963 -11356,14012,25230,25231,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,46,-2,47.465767,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6809103,0,56.94,49.53,60.29,52.11,8.333333333333334,1,1,0,0,5,2,2,1,265.5,850170.63,278527.19,208015.69,0,1548.802 -11356,14012,25231,25230,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.1437321,7.2085114,46,2,-60.908852,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8026493,6.9903584,60.29,52.11,56.94,49.53,8.333333333333334,1,1,0,0,3,2,2,1,265.5,850170.63,278527.19,208015.69,0,1548.802 -11357,14013,25232,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.1381612,5.569675,0,0,-1137.8788,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,5.9976106,5.5331888,53,47,-9,-9,7,1,1,0,0,0,4,2,1,958,501541.06,144852.8,86266.734,0,676.65222 -11358,14014,25233,25234,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.1327639,6.8135948,0,6,-2,91.90271,0,3,3,2019,7,0,16,18,1,0,0,8.0809622,8.0809622,0,0,0,0,0,1,1,0,3.0973308,0,57.03,45.36,57.16,56.15,8.333333333333334,1,1,0,0,5,5,2,1,359.5,642417.25,196208.94,115505.83,0,1461.7345 -11358,14014,25234,25233,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.1818752,5.6613955,6,2,44.686188,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.8284271,5.7872725,57.16,56.15,57.03,45.36,8.333333333333334,1,1,0,0,3,5,2,1,359.5,642417.25,196208.94,115505.83,0,1461.7345 -11359,14015,25235,25236,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,8.1530504,8.1356506,37,-2,104.14568,0,2,2,2019,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,8.2780886,0,54.2,57.49,42.33,53.39,8.333333333333334,1,1,0,0,6,9,4,1,771.5,1445864.8,821050.13,368621.38,0,2684.5503 -11359,14015,25236,25235,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.0310011,7.2988997,3.9422092,37,2,23.89945,0,3,3,2019,8,1,56,56,1,1,0,3.134726,3.134726,0,0,0,0,0,0,0,0,4.5381122,3.6716797,42.33,53.39,54.2,57.49,10,1,1,0,0,6,9,4,1,771.5,1445864.8,821050.13,368621.38,0,2684.5503 -11360,14016,25237,25238,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.6795492,5.350451,6,2,42.763706,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2033839,5.5961261,58.32,50.22,61.27,46.03,8.333333333333334,1,1,0,0,5,4,3,1,561.5,2220520.3,773954.63,380844.72,0,3383.9443 -11360,14016,25238,25237,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.3225508,8.1741276,6,-2,21.570461,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.23597,7.6354499,61.27,46.03,58.32,50.22,8.333333333333334,1,1,0,0,4,4,3,1,561.5,2220520.3,773954.63,380844.72,0,3383.9443 -11361,14017,25239,25240,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,1.0678113,.72820204,0,32,5,-156.17897,0,2,2,2019,12,0,45,45,1,0,0,.0057545309,.0057545309,0,0,0,0,0,0,0,0,8.6472979,0,48.45,49.46,41.62,52.55,8.333333333333334,1,1,0,0,11,5,2,1,561,232002.75,80267.852,239384.64,82935.836,5512.5474 -11361,14017,25240,25239,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,6.9992261,6.6057887,0,32,-5,16.390129,0,2,2,2019,16,4,15,15,1,4,0,7.2474236,7.2474236,0,0,0,0,2,0,0,0,7.6041059,0,41.62,52.55,48.45,49.46,5,1,1,0,0,11,5,2,1,561,232002.75,80267.852,239384.64,82935.836,5512.5474 -11362,14018,25241,25242,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.7405329,8.5457506,0,32,-4,18.132126,0,3,3,2019,6,0,35,39,1,0,0,17.088593,17.088593,0,0,0,0,2,0,0,0,4.0350184,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,1,1108,854417.88,302792.69,244263.44,0,5031.7144 -11362,14018,25242,25241,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.6505394,8.985858,7.2260818,32,4,-202.32368,0,3,3,2019,6,0,40,35,1,0,0,11.206956,11.206956,0,0,0,0,2,0,0,0,7.761662,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,6,2,5,1,1108,854417.88,302792.69,244263.44,0,5031.7144 -11363,14019,25243,-9,-9,-9,1,0,44,0,0,0,1,1,-9,1,3,8.5888672,8.8791065,6.981401,15,0,-148.49626,0,2,2,2019,21,10,50,43,1,10,0,11.321841,11.321841,0,0,0,0,7,1,1,0,0,7.088944,39.96,41.03,48,49,8.333333333333334,1,1,0,0,11,6,4,1,300,487013.22,262174.28,145348.17,82202.711,2743.5386 -11364,14020,25244,25245,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.2278166,6.9020853,51,-1,-58.006912,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,1.5247524,0,0,1,1,0,4.0905685,6.4766245,23.52,42.61,44.77,33.33,8.333333333333334,1,1,0,0,0,9,3,1,728,829479,502428.94,299782.56,0,2763.2148 -11364,14020,25245,25244,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1180744,7.8999138,51,1,-48.559971,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.112361,7.7325788,44.77,33.33,23.52,42.61,8.333333333333334,1,1,0,0,0,9,3,1,728,829479,502428.94,299782.56,0,2763.2148 -11365,14021,25246,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.0297194,8.4945116,7.2926779,0,0,-920.6601,0,3,3,2019,12,1,39,39,1,1,0,8.8395977,8.8395977,0,0,0,0,0,1,1,0,6.1197405,7.020556,44.69,33.87,-9,-9,6.666666666666667,1,1,0,0,10,1,4,1,625,1058481.4,820990.31,200911.55,12707.634,2271.2073 -11366,14022,25247,25248,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.0660286,6.8993115,0,1,0,-138.60355,0,-9,-9,2019,9,0,21,0,1,0,0,4.9375486,4.9375486,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.34,48.82,10,1,1,0,0,12,10,4,0,1234.5,209865.31,265262.19,173502.13,126680.05,2220.6914 -11366,14022,25248,25247,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,8.2989483,8.5418491,0,1,0,-7.0047669,-9,-9,-9,2019,9,1,41,0,1,1,0,13.96032,13.96032,0,0,0,0,0,0,0,0,0,0,52.34,48.82,51.83,57.2,8.333333333333334,1,1,0,0,0,10,4,0,1234.5,209865.31,265262.19,173502.13,126680.05,2220.6914 -11367,14023,25249,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.5904593,6.9581599,0,0,-1044.6283,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9701872,6.4344077,59.49,41.43,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1064,377827.16,135280.52,168348.95,0,1769.3042 -11368,14024,25250,25251,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.7913184,7.4743428,57,4,25.319839,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,8.0772209,7.6216116,57.06,55.24,34.32,25.15,0,1,1,0,0,0,10,3,1,338.5,105225.52,171718.5,58574.086,0,2763.2051 -11368,14024,25251,25250,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,4.6209488,4.6429763,56,-4,-8.2627144,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,32.144176,0,0,1,1,0,4.7915163,4.6342139,34.32,25.15,57.06,55.24,6.666666666666667,1,1,0,0,0,10,3,1,338.5,105225.52,171718.5,58574.086,0,2763.2051 -11369,14025,25252,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.23981,-9,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,.94125873,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,3,7,2,0,431,0,0,0,0,278.50525 -11370,14026,25253,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6567087,8.2414484,0,0,0,-1021.1302,0,3,3,2019,9,0,35,37,1,0,0,17.258598,17.258598,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,681,10527.101,55004.945,204824.33,44018.316,1851.1244 -11371,14027,25254,-9,25259,25255,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.4604,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 -11371,14027,25255,25259,-9,-9,1,1,52,0,4,0,3,3,-9,0,2,0,0,0,7,8,25.384909,0,3,2,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.7,53.56,54.79,55.86,5,1,1,0,1,1,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 -11371,14027,25256,-9,25259,25255,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-914.05414,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 -11371,14027,25257,-9,25259,25255,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1136.6121,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 -11371,14027,25258,-9,25259,25255,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1054.5052,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 -11371,14027,25259,25255,-9,-9,1,0,44,0,4,0,1,1,-9,0,4,7.53899,7.5314527,0,7,-8,131.08533,0,2,3,2019,11,0,33,32,1,0,0,7.0509276,7.0509276,0,0,0,0,0,1,1,0,0,0,54.79,55.86,31.7,53.56,6.666666666666667,1,1,0,1,9,2,2,0,552.33331,121049.55,230946.22,164869.3,60630.809,2164.239 -11372,14028,25260,25262,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,8.609684,8.819541,0,11,11,-1.2505884,0,-9,2,2019,5,2,55,40,1,2,0,11.9187,11.9187,0,0,0,0,0,0,0,0,0,0,50.4,45.61,36.31,55.17,10,2,3,0,0,9,8,3,1,971,202215.73,-7244.1655,195908.66,126400.31,2209.4463 -11372,14028,25261,-9,25262,25260,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.52374,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,971,202215.73,-7244.1655,195908.66,126400.31,2209.4463 -11372,14028,25262,25260,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,0,0,0,11,-11,195.66731,-9,3,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36.31,55.17,50.4,45.61,6.666666666666667,2,3,0,0,5,8,3,1,971,202215.73,-7244.1655,195908.66,126400.31,2209.4463 -11373,14029,25263,25264,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,8.1651592,8.1962538,36,5,160.88483,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8108163,8.1464834,51.14,60.45,57.93,46.29,8.333333333333334,2,3,0,0,6,8,4,1,159,1275185,778913,659753.31,0,2705.2612 -11373,14029,25264,25263,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.8360634,7.0485892,0,34,-5,43.953857,0,2,2,2019,8,0,18,18,1,0,0,6.165813,6.165813,0,0,0,0,0,1,1,0,2.8352079,0,57.93,46.29,51.14,60.45,8.333333333333334,1,1,0,0,9,8,4,1,159,1275185,778913,659753.31,0,2705.2612 -11373,14030,25265,-9,25264,25263,1,1,28,0,0,0,1,1,-9,0,4,8.2052898,8.3730755,0,0,0,-997.77429,0,2,2,2019,10,0,36,36,1,1,1,11.568745,11.568745,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,1,281,-306955.34,0,0,0,1239.5691 -11374,14031,25266,25270,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,6.7613726,7.0803804,0,21,6,73.10041,0,3,3,2019,20,8,30,40,1,8,0,3.5968304,3.5968304,0,0,0,0,42,1,0,1,0,0,30.11,56.52,25.97,23.38,1.666666666666667,1,1,0,1,10,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 -11374,14031,25267,-9,25270,25266,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.8276,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 -11374,14031,25268,-9,25270,25266,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.63019,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 -11374,14031,25269,-9,25270,25266,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.98291,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 -11374,14031,25270,25266,-9,-9,1,0,46,0,3,0,2,2,-9,1,1,0,0,0,21,-6,-109.90137,0,-9,-9,2019,29,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,25.97,23.38,30.11,56.52,0,1,1,0,0,4,9,2,0,1283.6,-83109.977,41357.309,0,0,3427.2676 -11374,14032,25271,-9,25270,25266,1,1,19,0,3,0,2,2,0,0,4,0,7.5986967,7.70398,0,0,-933.7085,-9,2,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,7.5289946,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,9,3,0,556,614365.75,-61471.43,0,0,1524.0945 -11375,14033,25272,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,7.3778329,6.9173598,0,0,-1001.4891,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1112547,7.2456074,59.43,58.05,-9,-9,10,1,1,0,0,0,11,3,0,40,97863.398,306925.69,99776.617,0,1619.951 -11376,14034,25273,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,3.8891871,3.8397429,0,0,0,-1009.3024,0,2,2,2019,12,1,60,40,1,1,0,.090807207,.090807207,0,0,0,0,0,1,1,0,0,0,32.24,62.48,-9,-9,3.333333333333333,1,1,0,0,4,2,2,0,263,-73341.625,-733.09375,113735,116773.84,1449.4321 -11376,14034,25274,-9,25273,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-976.9397,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,263,-73341.625,-733.09375,113735,116773.84,1449.4321 -11376,14035,25275,-9,25273,-9,1,0,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-995.5528,-9,1,-9,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,0,2,1,0,289,29010.301,0,0,0,492.17111 -11377,14036,25276,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,5.4826789,5.532557,0,0,-984.33514,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,.8263436,2.0145161,19.721582,0,1,1,0,0,6.0243468,51.81,28.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,672,-56625.328,-15104.082,0,0,-223.08723 -11378,14037,25277,25278,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.3621273,8.4922237,0,3,0,-46.079994,0,-9,-9,2019,9,1,51,41,1,1,0,10.011854,10.011854,0,0,0,0,0,0,0,0,2.4787405,0,45.91,59.89,54.2,57.49,8.333333333333334,1,1,0,0,3,4,5,0,383,188808.59,-6495.2188,0,0,3664.8569 -11378,14037,25278,25277,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2990046,8.4572191,0,3,0,-72.09697,0,2,2,2019,9,0,40,50,1,0,0,10.748569,10.748569,0,0,0,0,0,0,0,0,1.6975636,0,54.2,57.49,45.91,59.89,8.333333333333334,1,1,0,0,9,4,5,0,383,188808.59,-6495.2188,0,0,3664.8569 -11379,14038,25279,-9,25280,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.79047,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,1741,433491.5,90470.625,65983.383,57526.68,1992.6411 -11379,14038,25280,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.0045609,7.1353526,5.9181447,0,0,-989.77112,0,2,3,2019,11,0,16,16,1,0,0,7.9653974,7.9653974,0,0,0,0,2,1,0,1,6.8126411,0,47.28,59.36,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,1741,433491.5,90470.625,65983.383,57526.68,1992.6411 -11379,14038,25281,-9,25280,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.46179,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,2,0,1741,433491.5,90470.625,65983.383,57526.68,1992.6411 -11380,14039,25282,25283,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1303267,7.1227283,0,35,-3,-24.482042,0,2,1,2019,9,0,23,23,1,0,0,6.7373309,6.7373309,0,0,0,0,0,0,0,0,.94743001,0,62.03,36.18,41.82,57.72,8.333333333333334,1,1,0,0,11,9,4,1,601.5,1578198.5,827748.13,669320.69,0,2701.2036 -11380,14039,25283,25282,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.3546486,8.2738228,0,35,3,-67.805695,0,3,3,2019,10,0,40,40,1,0,0,13.470168,13.470168,0,0,0,0,2,0,0,0,.85090917,0,41.82,57.72,62.03,36.18,5,1,1,0,0,11,9,4,1,601.5,1578198.5,827748.13,669320.69,0,2701.2036 -11380,14040,25284,-9,25282,25283,1,0,28,0,0,0,1,1,-9,0,4,7.9241366,7.9378171,0,0,0,-1041.5016,0,2,2,2019,13,2,39,39,1,2,1,8.5267153,8.5267153,0,0,0,0,0,0,0,0,.87512469,0,33.61,61.54,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,193,-53537.402,0,0,0,838.11383 -11381,14041,25285,-9,25287,25286,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7802,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,621.20001,81019.594,0,0,0,3114.231 -11381,14041,25286,25287,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.17626,8.1771765,0,5,1,69.429062,0,3,2,2019,9,0,39,39,1,0,0,10.03834,10.03834,0,0,0,0,0,1,1,0,0,0,49.02,47.84,63.41,39.7,1.666666666666667,1,1,0,0,8,13,3,1,621.20001,81019.594,0,0,0,3114.231 -11381,14041,25287,25286,-9,-9,1,0,45,0,3,0,2,2,-9,1,3,7.2848139,7.1390405,0,5,-1,58.729607,0,3,2,2019,8,0,25,22,1,0,0,6.4392495,6.4392495,0,0,0,0,0,1,1,0,0,0,63.41,39.7,49.02,47.84,6.666666666666667,1,1,0,0,8,13,3,1,621.20001,81019.594,0,0,0,3114.231 -11381,14041,25288,-9,25287,25286,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-854.30603,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,621.20001,81019.594,0,0,0,3114.231 -11381,14041,25289,-9,25287,25286,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.2687,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.63,58.79,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,621.20001,81019.594,0,0,0,3114.231 -11382,14042,25290,-9,25292,25295,1,1,13,0,6,1,3,0,-9,0,3,0,0,0,0,0,-996.12354,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 -11382,14042,25291,-9,25292,25295,1,1,7,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1000.7017,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 -11382,14042,25292,25295,-9,-9,1,0,40,0,6,0,2,2,-9,0,5,8.0414019,8.1350889,0,20,-12,-46.234921,0,-9,-9,2019,1,0,71,0,1,0,0,4.6580791,4.6580791,0,0,0,0,2,1,1,0,0,0,61.01,53.18,57.33,53.46,8.333333333333334,1,1,0,0,1,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 -11382,14042,25293,-9,25292,25295,1,0,9,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1040.3975,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 -11382,14042,25294,-9,25292,25295,1,0,12,0,6,1,3,0,-9,0,3,0,0,0,0,0,-910.97308,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 -11382,14042,25295,25292,-9,-9,1,1,52,0,6,0,1,1,-9,0,3,7.7877054,7.8475194,0,20,12,-43.32983,0,3,3,2019,7,0,30,35,1,0,0,9.8742781,9.8742781,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.01,53.18,8.333333333333334,4,2,0,0,9,8,3,0,767.33331,200752.95,0,259935.73,32702.979,5720.6597 -11382,14043,25296,-9,25292,25295,1,0,18,0,6,0,2,2,1,0,4,0,0,0,0,0,-1096.8855,-9,2,1,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,1.666666666666667,1,1,1,0,0,8,1,0,759,-171986.08,0,0,0,0 -11383,14044,25297,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.3972058,7.7457933,5.5170102,0,0,-1120.7283,0,3,2,2019,10,0,25,25,1,0,0,9.6674099,9.6674099,0,0,0,0,0,1,1,0,5.2491798,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,12,2,3,1,764,343477.56,-24436.027,0,0,1363.4983 -11383,14044,25298,-9,25297,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1032.1985,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,4,2,-9,0,0,2,3,1,764,343477.56,-24436.027,0,0,1363.4983 -11383,14045,25299,-9,25297,-9,1,0,28,0,1,0,1,1,-9,0,5,8.3042936,7.9751606,0,0,0,-983.96924,0,2,1,2019,5,0,41,41,1,0,1,10.725897,10.725897,0,0,0,0,0,1,1,0,0,0,59.19,48.59,-9,-9,8.333333333333334,4,2,0,0,7,2,4,1,1296,195575.53,-29928.916,0,0,1078.4796 -11383,14046,25300,-9,25297,-9,1,0,21,0,1,0,2,2,-9,0,3,7.5424032,7.5596719,0,0,0,-954.0498,0,2,-9,2019,12,0,40,40,1,0,1,5.1769023,5.1769023,0,0,0,0,0,1,1,0,0,0,31.67,59.57,-9,-9,5,4,2,0,0,4,2,3,1,1795,-132985.75,-98505.914,0,0,1394.5597 -11384,14047,25301,25302,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.1885219,5.1132879,7,-3,-35.448524,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.0152891,5.2894859,61.12,51.57,55.26,55.85,8.333333333333334,1,1,0,0,8,10,3,1,519,706371.88,249930.03,232160.75,0,2487.6816 -11384,14047,25302,25301,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,7.8954134,7.9193306,7,3,6.9190769,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8373857,55.26,55.85,61.12,51.57,8.333333333333334,1,1,0,0,0,10,3,1,519,706371.88,249930.03,232160.75,0,2487.6816 -11385,14048,25303,25306,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.2653236,8.8944435,0,9,-8,-38.415962,0,2,2,2019,10,0,42,40,1,0,0,22.897657,22.897657,0,0,0,0,0,1,1,0,0,0,62.49,55.09,40.1,53.23,8.333333333333334,1,1,0,0,12,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 -11385,14048,25304,-9,25303,25306,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.86194,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 -11385,14048,25305,-9,25303,25306,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.43329,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 -11385,14048,25306,25303,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.8341808,8.9759102,0,6,8,23.410543,0,2,2,2019,12,1,45,42,1,1,0,24.038725,24.038725,0,0,0,0,0,1,1,0,0,0,40.1,53.23,62.49,55.09,8.333333333333334,1,1,0,0,13,9,5,1,625,1405258.9,575967.38,1595895.9,674037.5,6004.6299 -11386,14049,25307,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4584446,7.956522,0,0,0,-915.78528,0,3,2,2019,8,0,42,43,1,0,0,12.076354,12.076354,0,0,0,0,0,1,1,0,2.493149,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,1215,349246.63,543.5387,260057.27,106488.47,1339.595 -11387,14050,25308,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.7115912,7.5429373,0,0,0,-1004.132,0,2,2,2019,15,4,40,40,1,4,0,8.0578442,8.0578442,0,0,0,0,0,1,1,0,1.8383315,0,37.69,58.7,-9,-9,3.333333333333333,1,1,0,0,5,12,4,0,238,-401258.56,0,0,0,1148.2954 -11388,14051,25309,25311,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,0,0,0,15,-3,66.06958,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,49.04,55.86,6.666666666666667,1,1,0,0,5,6,3,0,913,427.89331,42700.297,0,0,2461.1782 -11388,14051,25310,-9,25309,25311,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.39795,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,913,427.89331,42700.297,0,0,2461.1782 -11388,14051,25311,25309,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,7.9377041,7.806704,0,16,3,-6.9174399,0,2,2,2019,11,0,40,40,1,0,0,8.7810392,8.7810392,0,0,0,0,0,1,1,0,0,0,49.04,55.86,40.77,61.04,5,1,1,0,0,9,6,3,0,913,427.89331,42700.297,0,0,2461.1782 -11388,14051,25312,-9,25309,25311,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1316.8062,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,913,427.89331,42700.297,0,0,2461.1782 -11389,14052,25313,25314,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.960041,8.8454113,0,29,-8,-42.281113,0,3,3,2019,12,1,38,38,1,1,0,22.137154,22.137154,0,0,0,0,0,0,0,0,5.6103301,0,66.37,27.15,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,1154,1812492.9,1230630.3,335825.25,7143.4678,5164.5625 -11389,14052,25314,25313,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,8.1976328,9.0476885,7.2541738,29,8,-37.658051,0,3,2,2019,7,0,44,43,1,0,0,11.02472,11.02472,0,0,0,0,0,0,0,0,7.7882776,7.190618,57.06,57.76,66.37,27.15,8.333333333333334,1,1,0,0,10,13,5,1,1154,1812492.9,1230630.3,335825.25,7143.4678,5164.5625 -11389,14053,25315,-9,25313,25314,1,1,24,0,0,0,1,1,-9,0,4,8.5721216,8.8313885,0,0,0,-1203.001,0,2,3,2019,9,0,48,45,1,0,1,15.446617,15.446617,0,0,0,0,0,0,0,0,4.0059838,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,4,13,5,1,812,48162.934,117119.33,0,0,2683.8926 -11389,14054,25316,-9,25313,25314,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1078.4915,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,3,13,1,1,412,-13320.734,0,0,0,-139.16257 -11390,14055,25317,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.9691567,8.3209038,0,0,0,-1021.5208,0,3,3,2019,10,0,37,39,1,0,0,12.929613,12.929613,0,0,0,0,7,0,0,0,.28340161,0,53.53,51,-9,-9,6.666666666666667,1,1,0,0,13,7,4,1,1566,1257547.3,437858.38,282588.38,0,1970.9574 -11391,14056,25318,25319,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.0203114,7.6691895,0,3,8,15.344325,0,3,3,2019,6,0,38,38,1,0,0,10.283544,10.283544,0,0,0,0,0,0,0,0,0,0,62.28,45.64,30.24,64.61,8.333333333333334,1,1,0,0,9,6,4,1,344.5,619065.56,321586.81,94473.781,51515.438,2334.0352 -11391,14056,25319,25318,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.2509422,8.1681023,0,3,-8,-7.0008378,0,2,2,2019,19,9,40,37,1,9,0,9.309186,9.309186,0,0,0,0,0,0,0,0,.65429604,0,30.24,64.61,62.28,45.64,3.333333333333333,1,1,0,0,9,6,4,1,344.5,619065.56,321586.81,94473.781,51515.438,2334.0352 -11392,14057,25320,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.9709072,8.6240215,0,0,0,-964.07922,0,2,2,2019,9,0,28,34,1,0,0,22.725117,22.725117,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,10,7,5,1,632,119329.38,108762.26,279381.69,22717.787,1732.1903 -11393,14058,25321,-9,25322,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.00964,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,524,-9994.2031,0,0,0,1154.1614 -11393,14058,25322,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.2546902,7.3283658,0,0,0,-985.72125,0,-9,-9,2019,15,3,18,6,1,3,0,8.8695078,8.8695078,0,0,0,0,0,1,1,0,0,0,51.42,48.12,-9,-9,6.666666666666667,2,3,0,0,7,5,2,1,524,-9994.2031,0,0,0,1154.1614 -11393,14059,25323,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,2,8.5263176,8.5250626,0,0,0,-962.24878,0,-9,-9,2019,10,2,44,50,1,2,0,14.5751,14.5751,0,0,0,0,0,1,1,0,0,0,39.53,54.12,-9,-9,6.666666666666667,2,3,0,0,2,5,4,1,824,233822.25,11302.879,188215.47,168404.8,2029.9326 -11394,14060,25324,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.6240225,8.8695173,0,0,0,-1035.0957,0,2,2,2019,8,0,45,52,1,0,0,14.453951,14.453951,0,0,0,0,0,1,1,0,6.3166399,0,62.39,56.71,-9,-9,10,1,1,0,0,10,2,5,1,643,639340.56,528165.25,90757.742,80446.32,2428.4736 -11395,14061,25325,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-873.73627,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,15.92175,0,0,1,1,0,0,0,62.92,29.01,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,617,200034.36,0,0,0,621.52197 -11396,14062,25326,25327,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.4283094,7.5610657,37,3,-37.159584,0,2,3,2019,10,1,0,37,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.1195321,44.39,48.74,40.87,32.15,8.333333333333334,1,1,0,0,11,12,2,1,364.5,512830.75,148734.77,222084.5,0,2337.2649 -11396,14062,25327,25326,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,0,0,0,37,-3,-39.183598,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,8.1093473,0,40.87,32.15,44.39,48.74,6.666666666666667,1,1,0,0,11,12,2,1,364.5,512830.75,148734.77,222084.5,0,2337.2649 -11397,14063,25328,25329,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.3748083,8.2249069,50,-1,-60.820766,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.067481,8.5354443,64.40000000000001,42,57.16,56.15,5,1,1,0,0,0,5,4,1,829.5,1725371.3,1285996.3,209418.94,0,3140.3872 -11397,14063,25329,25328,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.6922665,4.5457716,50,1,8.0902176,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,5.3190241,4.745297,57.16,56.15,64.40000000000001,42,8.333333333333334,1,1,0,0,5,5,4,1,829.5,1725371.3,1285996.3,209418.94,0,3140.3872 -11398,14064,25330,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.7496705,7.5014415,0,0,0,-1063.4618,0,-9,2,2019,14,2,40,40,1,2,1,7.9278274,7.9278274,0,0,0,0,0,0,0,0,0,0,53.54,38.94,-9,-9,5,1,1,0,0,6,9,3,1,2082,456618.66,0,0,0,1350.6105 -11398,14065,25331,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,3,7.6116819,7.399796,0,0,0,-914.10333,0,-9,2,2019,6,0,37,40,1,0,1,6.5273685,6.5273685,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,6,9,3,1,969,213745.3,-63991.391,0,0,720.23059 -11399,14066,25332,25333,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8015413,8.0039148,0,6,-2,48.597286,0,3,2,2019,9,0,35,35,1,0,0,8.7558088,8.7558088,0,0,0,0,0,0,0,0,0,0,60.3,46.58,43.01,53.24,8.333333333333334,1,1,0,0,7,13,4,1,798,173267.58,-109394.39,0,0,2896.147 -11399,14066,25333,25332,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3328228,8.2293205,0,6,2,-58.479393,0,3,3,2019,18,6,58,58,1,6,0,6.2344861,6.2344861,0,0,0,0,0,0,0,0,0,0,43.01,53.24,60.3,46.58,6.666666666666667,1,1,0,0,7,13,4,1,798,173267.58,-109394.39,0,0,2896.147 -11399,14067,25334,-9,25332,25333,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.94086,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,45.65,58.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,604,24447.719,0,0,0,-739.263 -11400,14068,25335,25336,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,0,7.1548867,6.824996,11,-5,20.287851,0,-9,-9,2019,34,12,0,40,4,12,0,0,0,0,0,0,0,0,1,1,0,0,7.3026423,14.07,27.63,57.06,57.76,0,1,1,0,1,12,5,2,1,1140.5,686399.5,424502.88,93283.93,0,1506.9067 -11400,14068,25336,25335,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,6.2352719,6.2429285,11,5,31.340185,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8931923,6.4853911,57.06,57.76,14.07,27.63,8.333333333333334,1,1,0,1,8,5,2,1,1140.5,686399.5,424502.88,93283.93,0,1506.9067 -11401,14069,25337,25338,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,55,-6,34.897728,0,-9,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,33.86,57.16,56.15,10,1,1,0,0,0,9,4,1,2291.5,618940.88,265156.66,403343.13,0,3298.8384 -11401,14069,25338,25337,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.5051775,8.3985119,7,6,-52.818668,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6932768,8.3620567,57.16,56.15,54.9,33.86,8.333333333333334,1,1,0,0,0,9,4,1,2291.5,618940.88,265156.66,403343.13,0,3298.8384 -11401,14070,25339,-9,25337,25338,1,1,45,0,0,0,2,2,-9,0,4,7.5441003,8.1119957,0,0,0,-1079.9473,-9,2,1,2019,18,6,39,0,1,6,0,6.1289911,6.1289911,0,0,0,0,0,1,1,0,2.486032,0,39.73,57.61,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,430,107237.23,20051.926,0,0,611.80286 -11402,14071,25340,25343,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.8931808,7.8989949,6.3772254,2,-5,84.945328,0,-9,-9,2019,12,1,40,50,1,1,0,6.0797653,6.0797653,0,0,0,0,74.5,1,1,0,6.1262202,0,44.19,56.73,56.64,48.33,6.666666666666667,1,1,0,0,11,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 -11402,14071,25341,-9,25340,25343,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.00195,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 -11402,14071,25342,-9,25340,25343,1,1,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-956.00043,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,5,1,1,0,0,0,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 -11402,14071,25343,25340,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.2757578,8.6061153,0,2,5,-16.834343,0,2,2,2019,8,0,60,50,1,0,0,9.316411,9.316411,0,0,0,0,0,1,1,0,1.524217,0,56.64,48.33,44.19,56.73,8.333333333333334,1,1,0,0,8,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 -11402,14071,25344,-9,25340,25343,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.38977,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,637,25831.672,16379.043,264547.81,175374.31,3182.8562 -11403,14072,25345,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,6.9723063,7.1033425,0,0,0,-1028.0367,0,2,2,2019,22,10,30,40,1,10,0,5.7536011,5.7536011,0,0,0,0,0,0,0,0,0,0,46.36,27.66,-9,-9,5,2,3,0,1,8,2,2,0,754,89792.852,0,0,0,479.81375 -11404,14073,25346,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.5706549,6.5869889,0,0,-971.30908,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5928011,59.22,40.22,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1699,-193557.66,192040.39,0,0,1333.5977 -11405,14074,25347,-9,25348,-9,1,0,40,0,1,0,2,2,-9,0,4,8.5498314,8.4858942,0,0,0,-899.7818,-9,3,-9,2019,11,0,74,0,1,0,0,6.5395284,6.5395284,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,769,-381100.91,-61089.059,0,0,1638.7954 -11405,14075,25348,-9,-9,-9,1,0,77,0,1,0,3,3,-9,0,3,0,0,0,0,0,-994.88513,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,4.5471511,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,1130,0,0,0,0,1141.8268 -11405,14076,25349,-9,25348,-9,1,0,40,0,1,0,1,1,-9,0,4,8.7578363,8.6471071,0,0,0,-1070.8527,-9,2,2,2019,12,0,36,0,1,0,0,14.536375,14.536375,0,0,0,0,0,1,1,0,1.9238173,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,2332,343826.28,69909.633,331401.59,113759.25,2383.0947 -11405,14077,25350,-9,25349,-9,1,1,21,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1088.7998,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.6752484,0,62.39,56.71,-9,-9,10,1,1,0,0,0,8,2,1,648,0,0,0,0,-281.4512 -11405,14078,25351,-9,25349,-9,1,1,18,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1067.6913,-9,1,-9,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,8,1,1,653,0,0,0,0,0 -11406,14079,25352,25353,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.495626,5.3436093,50,-1,15.818531,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3077605,5.9159908,57.33,53.46,56.52,48.31,10,1,1,0,0,3,1,2,1,545,619949.88,373455.38,281281.63,0,1840.4336 -11406,14079,25353,25352,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4368486,7.1014481,50,1,99.570511,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9658062,7.2922249,56.52,48.31,57.33,53.46,8.333333333333334,1,1,0,0,0,1,2,1,545,619949.88,373455.38,281281.63,0,1840.4336 -11407,14080,25354,25355,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,6.9700251,6.7375879,47,-5,168.69258,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,7.3042426,6.6006765,53.23,18.97,54.79,55.86,3.333333333333333,1,1,0,0,1,10,2,1,460.5,293028.31,69961.883,251388.78,0,2699.4844 -11407,14080,25355,25354,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.9443574,6.7119946,47,5,87.04776,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8678217,7.0954247,54.79,55.86,53.23,18.97,8.333333333333334,1,1,0,0,6,10,2,1,460.5,293028.31,69961.883,251388.78,0,2699.4844 -11408,14081,25356,25357,-9,-9,1,0,40,0,3,0,3,3,-9,0,3,0,0,0,9,-7,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,56.95,46.69,41.5,42.25,8.333333333333334,2,3,0,1,0,8,1,0,2139,482368.66,294617.13,0,0,2349.3271 -11408,14081,25357,25356,-9,-9,1,1,47,0,3,0,3,3,-9,1,2,0,0,0,22,7,0,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.5,42.25,56.95,46.69,8.333333333333334,2,3,0,1,0,8,1,0,2139,482368.66,294617.13,0,0,2349.3271 -11408,14081,25358,-9,25356,25357,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-806.54175,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,2139,482368.66,294617.13,0,0,2349.3271 -11408,14082,25359,-9,25356,25357,1,0,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-1038.012,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,0,1227,-294332.81,0,0,0,0 -11409,14083,25360,25361,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5637083,8.6432381,0,9,9,33.378422,0,2,1,2019,25,11,37,37,1,11,0,17.583668,17.583668,0,0,0,0,0,0,0,0,0,0,18.05,64.93000000000001,19.48,53.33,6.666666666666667,1,1,0,0,10,5,4,1,238.5,389142.44,110069,234411.25,38253.309,2842.8379 -11409,14083,25361,25360,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.0923963,6.7056818,0,9,0,21.861393,0,2,2,2019,24,12,15,45,1,12,0,8.5343628,8.5343628,0,0,0,0,0,0,0,0,0,0,19.48,53.33,18.05,64.93000000000001,5,1,1,0,0,10,5,4,1,238.5,389142.44,110069,234411.25,38253.309,2842.8379 -11410,14084,25362,25363,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,11,4,0,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51.07,49.39,44,38,8.333333333333334,1,1,0,0,0,12,1,0,586.5,155239.14,23750.191,161210.41,0,2141.1685 -11410,14084,25363,25362,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,43,-4,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,38,51.07,49.39,8.333333333333334,1,1,0,0,0,12,1,0,586.5,155239.14,23750.191,161210.41,0,2141.1685 -11410,14085,25364,-9,25363,25362,1,1,34,0,0,0,2,2,-9,0,4,8.4548101,8.5727663,0,0,0,-1034.3121,0,2,3,2019,10,0,35,35,1,1,0,18.011286,18.011286,0,0,0,0,0,1,1,0,6.7744102,0,49,58,-9,-9,7,1,1,0,0,1,12,5,0,781,111507.01,218194.03,0,0,2156.9446 -11411,14086,25365,25366,-9,-9,1,0,53,0,0,0,1,1,-9,1,4,0,0,0,8,-17,40.947201,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.504886,0,23.55,66.2,52.57,50.18,8.333333333333334,1,1,0,0,0,4,2,1,424.5,555247.25,135939.64,159432.75,0,1076.9333 -11411,14086,25366,25365,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.4925251,6.58462,8,17,8.5356359,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5808368,6.7496524,52.57,50.18,23.55,66.2,8.333333333333334,1,1,0,0,7,4,2,1,424.5,555247.25,135939.64,159432.75,0,1076.9333 -11412,14087,25367,-9,25369,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.0195,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,496,-17039.186,0,0,0,1960.6039 -11412,14087,25368,-9,25369,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.245,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,496,-17039.186,0,0,0,1960.6039 -11412,14087,25369,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,6.9996552,7.2471104,6.0260634,0,0,-958.29022,0,2,3,2019,4,0,8,0,1,0,0,15.83043,15.83043,0,0,0,0,0,1,1,0,6.2776909,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,10,2,0,496,-17039.186,0,0,0,1960.6039 -11413,14088,25370,25371,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0488987,8.0683355,0,3,-5,-41.126209,0,-9,-9,2019,10,0,41,40,1,0,0,6.7155643,6.7155643,0,0,0,0,0,0,0,0,0,0,57.63,47.77,33.66,61.57,8.333333333333334,1,1,0,0,3,4,4,1,1121,211278.17,67439.711,0,0,2460.6509 -11413,14088,25371,25370,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.0821838,8.2600307,0,3,5,80.865753,0,-9,-9,2019,16,5,42,40,1,5,0,10.275126,10.275126,0,0,0,0,0,0,0,0,1.7535987,0,33.66,61.57,57.63,47.77,6.666666666666667,1,1,0,0,9,4,4,1,1121,211278.17,67439.711,0,0,2460.6509 -11414,14089,25372,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.0878181,7.9699082,0,0,0,-908.15582,0,2,2,2019,9,0,50,50,1,0,0,11.490523,11.490523,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,256,186714.33,-12117.848,229077.92,93424.875,1716.645 -11415,14090,25373,25374,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,7.6836457,7.8646655,0,6,2,77.186562,0,2,3,2019,12,0,37,37,1,0,0,7.3852615,7.3852615,0,0,0,0,0,1,1,0,0,0,36.86,56.46,49.28,50.19,3.333333333333333,1,1,0,0,6,2,5,1,974,273833.16,836.15802,264280.41,100491.64,4817.7197 -11415,14090,25374,25373,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,9.3118877,9.2288561,0,6,-2,57.638733,0,2,3,2019,6,0,60,68,1,0,0,16.499802,16.499802,0,0,0,0,0,1,1,0,0,0,49.28,50.19,36.86,56.46,8.333333333333334,1,1,0,0,7,2,5,1,974,273833.16,836.15802,264280.41,100491.64,4817.7197 -11415,14090,25375,-9,25373,25374,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-884.15076,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,974,273833.16,836.15802,264280.41,100491.64,4817.7197 -11416,14091,25376,25377,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.013114,5.0810828,7,-3,-27.429598,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4156308,4.9931755,57.16,56.15,62.66,52.4,8.333333333333334,1,1,0,0,3,12,2,1,389,448264.28,209312.72,321885.5,0,1218.5188 -11416,14091,25377,25376,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,3.7718909,3.7896218,7,3,-84.329651,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5504361,3.8124595,62.66,52.4,57.16,56.15,10,1,1,0,0,1,12,2,1,389,448264.28,209312.72,321885.5,0,1218.5188 -11417,14092,25378,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.1612759,8.2359533,7.7377286,0,0,-1008.1647,0,3,2,2019,14,2,12,12,1,2,0,5.3998485,5.3998485,0,0,0,0,14.5,1,1,0,7.7569013,0,51.77,58.57,-9,-9,1.666666666666667,1,1,0,0,9,9,4,1,791,983239.19,373521.97,293445.75,0,2672.0928 -11417,14093,25379,-9,25378,-9,1,0,27,0,0,0,2,2,-9,1,3,6.5336552,6.4206538,0,0,0,-1043.7131,0,2,-9,2019,6,0,6,11,1,0,0,12.894327,12.894327,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,1397,-113907.02,0,0,0,1056.7527 -11418,14094,25380,25381,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,59,-7,40.755711,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,1.6541715,15.19899,0,0,1,1,0,0,0,60.12,54.8,63.75,34.14,10,1,1,0,0,5,4,2,0,821,144879.05,-31344.389,107739.55,0,529.21289 -11418,14094,25381,25380,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.5988464,5.8176856,59,7,55.084049,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6186156,63.75,34.14,60.12,54.8,10,1,1,0,0,0,4,2,0,821,144879.05,-31344.389,107739.55,0,529.21289 -11419,14095,25382,25383,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.0499172,8.0355606,0,27,6,65.682167,0,2,2,2019,14,2,45,0,1,2,0,8.3310986,8.3310986,0,0,0,0,0,0,0,0,0,0,23.12,45.47,60.87,44.96,5,1,1,0,0,9,10,4,1,247.5,31692.121,-16032.915,126707.02,36411.383,1931.0038 -11419,14095,25383,25382,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,6.9921865,7.3936248,0,27,-6,-72.630379,0,3,3,2019,6,0,19,21,1,0,0,8.6762562,8.6762562,0,0,0,0,7,0,0,0,0,0,60.87,44.96,23.12,45.47,8.333333333333334,1,1,0,0,10,10,4,1,247.5,31692.121,-16032.915,126707.02,36411.383,1931.0038 -11420,14096,25384,25385,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.3983936,8.6134901,6.0339732,36,-7,11.748359,0,3,3,2019,6,0,35,38,1,0,0,18.857187,18.857187,0,0,0,0,0,1,1,0,0,6.2982521,58.3,52.91,60.11,44.43,8.333333333333334,1,1,0,0,11,4,4,1,388.5,1443082.5,1072879.5,286340.94,0,3045.5391 -11420,14096,25385,25384,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.1092148,6.9355302,36,7,15.774485,0,2,3,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3107553,6.9907832,60.11,44.43,58.3,52.91,1.666666666666667,1,1,0,0,10,4,4,1,388.5,1443082.5,1072879.5,286340.94,0,3045.5391 -11421,14097,25386,25387,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.9263659,8.5675583,0,2,0,76.034004,0,3,2,2019,8,0,45,45,1,0,0,14.569149,14.569149,0,0,0,0,0,1,1,0,0,0,55.79,52.62,51.83,57.2,8.333333333333334,1,1,0,0,7,10,4,1,575,105851.05,-4385.7349,213417.38,115023.73,3855.1824 -11421,14097,25387,25386,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7178946,7.6449957,0,2,0,76.48217,0,3,3,2019,11,0,40,40,1,0,0,5.8628378,5.8628378,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.79,52.62,6.666666666666667,1,1,0,0,7,10,4,1,575,105851.05,-4385.7349,213417.38,115023.73,3855.1824 -11421,14097,25388,-9,25387,25386,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.32568,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,575,105851.05,-4385.7349,213417.38,115023.73,3855.1824 -11422,14098,25389,-9,-9,-9,1,1,37,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1064.6624,0,2,2,2019,26,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.71,53.62,-9,-9,5,1,1,0,0,0,4,2,0,298,160748.09,0,0,0,1279.2551 -11423,14099,25390,25391,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.8175344,5.9255724,53,1,-38.369057,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.085053,6.0525808,58.3,47.38,43.84,37.11,8.333333333333334,1,1,0,0,0,8,2,1,453.5,819123.63,409129.5,395266.09,0,1444.1984 -11423,14099,25391,25390,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.6870723,7.0585585,53,-1,81.583008,0,2,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.852397,43.84,37.11,58.3,47.38,5,1,1,0,0,3,8,2,1,453.5,819123.63,409129.5,395266.09,0,1444.1984 -11424,14100,25392,-9,25393,25395,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.19403,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 -11424,14100,25393,25395,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.175993,7.2135262,0,29,-2,30.874891,0,-9,-9,2019,11,0,25,25,1,0,0,7.7293453,7.7293453,0,0,0,0,0,1,1,0,1.0186722,0,55.36,51.57,55.36,51.57,8.333333333333334,1,1,0,0,6,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 -11424,14100,25394,-9,25393,25395,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.53503,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 -11424,14100,25395,25393,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.6026363,8.285018,0,29,2,1.2824216,0,2,2,2019,10,0,97,10,1,0,0,3.9342282,3.9342282,0,0,0,0,0,1,1,0,0,0,55.36,51.57,55.36,51.57,6.666666666666667,1,1,0,0,8,10,3,1,652.25,163602.72,19303.32,193008.28,98510.141,2538.7019 -11425,14101,25396,25397,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,8.1778288,8.3775253,7,0,131.50327,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.7477894,8.1191854,42.52,41.5,65.78,29.46,5,1,1,0,0,0,8,3,1,550,1155856.8,443646.06,573983.38,0,2904.0903 -11425,14101,25397,25396,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,7,0,-112.0485,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6134756,0,65.78,29.46,42.52,41.5,8.333333333333334,1,1,0,0,0,8,3,1,550,1155856.8,443646.06,573983.38,0,2904.0903 -11426,14102,25398,25401,-9,-9,1,1,36,1,3,0,3,3,-9,0,2,8.5235424,8.4854136,0,9,-2,-13.080784,0,2,2,2019,24,12,43,43,1,12,0,13.322415,13.322415,0,0,0,0,0,1,1,0,0,0,30.11,58.43,47.72,43.07,3.333333333333333,1,1,0,1,11,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 -11426,14102,25399,-9,25401,25398,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-981.24597,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 -11426,14102,25400,-9,25401,25398,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.11969,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 -11426,14102,25401,25398,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,7.7404079,7.7332997,0,9,2,74.476524,0,-9,-9,2019,12,2,30,22,1,2,0,10.3671,10.3671,0,0,0,0,0,1,1,0,0,0,47.72,43.07,30.11,58.43,6.666666666666667,1,1,0,0,11,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 -11426,14102,25402,-9,25401,25398,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.59174,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,4,1,402,95643.156,50395.574,84184.023,89690.602,3548.2612 -11427,14103,25403,25405,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,0,0,0,4,-1,14.865127,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,52,54.51,10,1,1,0,0,9,13,2,0,779.66669,-93254.523,37393.059,0,0,1055.5757 -11427,14103,25404,-9,25403,25405,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.8624,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,779.66669,-93254.523,37393.059,0,0,1055.5757 -11427,14103,25405,25403,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.3112435,6.9828568,0,4,1,-86.613884,0,-9,-9,2019,11,0,26,0,1,0,0,6.7674875,6.7674875,0,0,0,0,0,1,1,0,0,0,52,54.51,62.66,52.4,8.333333333333334,1,1,0,0,2,13,2,0,779.66669,-93254.523,37393.059,0,0,1055.5757 -11428,14104,25406,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.8252149,7.8160214,0,0,-994.81586,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.9435163,7.7656889,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,598,478776.75,257768.75,36741.059,0,3045.5049 -11429,14105,25407,-9,25408,25409,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-856.93225,-9,1,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 -11429,14105,25408,25409,-9,-9,1,0,48,0,3,0,1,1,-9,0,5,0,0,0,15,-8,136.52313,0,3,3,2019,7,0,0,35,3,0,0,0,0,0,0,0,0,0,1,1,0,6.4275088,0,51.39,59.18,46.56,50.26,6.666666666666667,1,1,0,0,11,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 -11429,14105,25409,25408,-9,-9,1,1,56,0,3,0,3,3,-9,1,3,6.4082584,7.0613108,0,10,8,-29.360495,0,-9,-9,2019,24,12,49,49,1,12,0,2.0179195,2.0179195,0,0,0,0,0,1,1,0,6.3168225,0,46.56,50.26,51.39,59.18,1.666666666666667,1,1,0,1,12,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 -11429,14105,25410,-9,25408,25409,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.45514,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 -11429,14105,25411,-9,25408,25409,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.69183,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,1,590.20001,244571.64,208844.22,0,0,2924.8748 -11429,14106,25412,-9,25408,25409,1,0,20,0,3,0,2,2,0,0,4,0,5.8106513,5.7012258,0,0,-1051.927,-9,1,3,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.1166744,0,54.2,57.49,-9,-9,10,1,1,0,0,3,13,2,1,1204,-111428.65,0,0,0,1984.786 -11430,14107,25413,25414,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.2758484,8.4117756,0,8,2,-140.76447,0,1,2,2019,12,4,10,38,1,4,0,46.778767,46.778767,0,0,0,0,0,0,0,0,3.0929244,0,43.84,58.37,36.32,56.73,6.666666666666667,1,1,0,0,8,5,4,1,139.5,-146921.56,24251.078,0,0,2156.3604 -11430,14107,25414,25413,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,7.2228079,6.6803708,0,8,-2,86.906914,0,-9,-9,2019,5,0,20,43,1,0,0,6.1198969,6.1198969,0,0,0,0,0,0,0,0,1.9821595,0,36.32,56.73,43.84,58.37,6.666666666666667,1,1,0,0,7,5,4,1,139.5,-146921.56,24251.078,0,0,2156.3604 -11431,14108,25415,25416,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.1387067,6.7839084,7,-2,-96.800713,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6164579,7.3071475,61.04,39.41,56.16,47.11,8.333333333333334,1,1,0,0,8,4,4,1,1626.5,1661868.3,892705.25,395122.94,0,3388.1409 -11431,14108,25416,25415,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.5139303,8.0603142,7,2,9.7877674,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4404993,8.1138334,56.16,47.11,61.04,39.41,8.333333333333334,1,1,0,0,3,4,4,1,1626.5,1661868.3,892705.25,395122.94,0,3388.1409 -11432,14109,25417,-9,-9,-9,1,1,21,0,0,1,2,0,0,1,3,0,0,0,0,0,-1145.5986,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,37.19,58.61,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,102,74556.453,0,0,0,298.41815 -11433,14110,25418,25419,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.2302647,9.6551361,7.7603912,41,2,94.844162,0,2,2,2019,16,5,40,32,1,5,0,39.179176,39.179176,0,0,0,0,0,0,0,0,0,8.0630417,40.58,60.95,29.8,65.79000000000001,8.333333333333334,1,1,0,0,9,9,5,1,555,2035070.6,893194.94,857564.13,141396.78,8845.792 -11433,14110,25419,25418,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.2131567,8.2561197,0,6,-2,106.86655,0,2,1,2019,25,9,45,48,1,9,0,7.6283827,7.6283827,0,0,0,0,0,0,0,0,8.9444838,0,29.8,65.79000000000001,40.58,60.95,3.333333333333333,1,1,0,0,9,9,5,1,555,2035070.6,893194.94,857564.13,141396.78,8845.792 -11433,14111,25420,25421,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,3.9367876,3.794867,0,4,1,35.394363,0,1,-9,2019,10,0,35,35,1,0,0,.13321684,.13321684,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.45,54.09,8.333333333333334,1,1,0,0,1,9,3,1,613,-217170.28,0,0,0,241.44165 -11433,14111,25421,25420,25419,25418,1,0,22,0,0,0,2,2,-9,0,4,7.5688009,7.717206,0,4,-1,7.8943772,0,2,1,2019,8,0,37,41,1,0,0,7.5074873,7.5074873,0,0,0,0,0,0,0,0,0,0,46.45,54.09,51.77,58.57,8.333333333333334,1,1,0,0,6,9,3,1,613,-217170.28,0,0,0,241.44165 -11434,14112,25422,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,4.7731781,4.5190158,0,0,-953.27277,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6813169,4.5684643,52.73,53.06,-9,-9,0,1,1,0,0,0,6,2,1,1203,521958.84,0,158339.27,0,439.03751 -11434,14113,25423,25424,25422,-9,1,1,48,0,0,0,3,3,-9,0,4,6.9572072,7.2031698,0,9,-11,75.259163,0,2,2,2019,8,0,30,30,1,0,0,4.734189,4.734189,0,0,0,0,2,1,1,0,0,0,57.73,54.53,45.84,50.44,8.333333333333334,1,1,0,0,10,6,2,1,447,-32481.211,0,0,0,973.62207 -11434,14113,25424,25423,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,9,11,-48.652416,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.84,50.44,57.73,54.53,5,1,1,0,0,1,6,2,1,447,-32481.211,0,0,0,973.62207 -11435,14114,25425,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8325648,7.8686266,0,0,0,-1052.642,-9,-9,-9,2019,12,0,37,0,1,0,0,7.2141504,7.2141504,0,0,0,0,0,0,0,0,3.8629899,0,54.39,44.26,-9,-9,3.333333333333333,1,1,0,0,9,10,3,1,1326,444956.63,221507.39,230210.91,22962.766,1067.047 -11436,14115,25426,25428,-9,-9,1,0,26,1,2,0,3,3,-9,0,3,7.1494594,7.2529678,5.2872195,3,0,32.053997,0,-9,-9,2019,12,0,24,0,1,0,0,5.3315787,5.3315787,0,0,0,0,0,1,1,0,5.413311,0,52.65,51.64,34.98,49.96,8.333333333333334,1,1,0,0,1,7,2,0,454,-6468.6992,0,0,0,2123.2371 -11436,14115,25427,-9,25426,25428,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.2153,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,454,-6468.6992,0,0,0,2123.2371 -11436,14115,25428,25426,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,0,0,0,3,0,28.89809,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,34.98,49.96,52.65,51.64,8.333333333333334,1,1,1,0,2,7,2,0,454,-6468.6992,0,0,0,2123.2371 -11436,14115,25429,-9,25426,25428,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.866,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,454,-6468.6992,0,0,0,2123.2371 -11437,14116,25430,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,7.6322184,7.5801239,5.9313884,0,0,-942.15668,0,3,2,2019,10,0,26,26,1,0,0,9.2613945,9.2613945,0,0,0,0,0,1,1,0,5.4525194,6.1159163,62.39,56.71,-9,-9,10,1,1,0,0,7,2,3,1,1252,164627.7,51621.242,0,0,386.63406 -11438,14117,25431,25432,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.6985707,8.0077057,0,16,-3,75.321663,0,-9,-9,2019,6,0,37,37,1,0,0,7.7174664,7.7174664,0,0,0,0,0,1,1,0,3.4247615,0,57.33,53.46,57.57,49.69,1.666666666666667,1,1,0,0,11,9,5,1,888.5,219667.63,238440.63,0,0,3573.7786 -11438,14117,25432,25431,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.7666798,8.726264,0,16,3,25.790342,0,2,2,2019,10,0,52,60,1,0,0,18.594252,18.594252,0,0,0,0,0,1,1,0,0,0,57.57,49.69,57.33,53.46,5,1,1,0,0,12,9,5,1,888.5,219667.63,238440.63,0,0,3573.7786 -11439,14118,25433,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,5,7.851676,7.9254551,0,0,0,-1126.709,-9,-9,-9,2019,20,8,44,0,1,8,0,8.2791357,8.2791357,0,0,0,0,0,0,0,0,0,0,30.42,67.22,-9,-9,8.333333333333334,1,1,0,0,4,7,4,0,1791,-65202.598,94948.18,0,0,719.90308 -11440,14119,25434,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.191658,5.2442951,0,0,-943.41357,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9345336,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1456,-436311.84,0,0,0,31.531023 -11441,14120,25435,25436,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.7610087,6.8428049,0,8,-1,61.808273,0,-9,-9,2019,7,0,15,15,1,0,0,7.648087,7.648087,0,0,0,0,2,0,0,0,0,0,60.6,43.75,51.14,40,8.333333333333334,1,1,0,0,5,4,3,0,800,203976,18423.664,0,0,1573.3301 -11441,14120,25436,25435,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0385275,7.786828,0,8,1,-122.56786,0,3,3,2019,10,0,38,45,1,0,0,7.0059853,7.0059853,0,0,0,0,0,0,0,0,0,0,51.14,40,60.6,43.75,5,1,1,0,0,9,4,3,0,800,203976,18423.664,0,0,1573.3301 -11442,14121,25437,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.5541883,8.1840525,6.9849501,0,0,-954.65686,0,3,1,2019,7,0,22,24,1,0,0,9.2185822,9.2185822,0,0,0,0,2,1,1,0,7.2572756,6.6110411,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,278,-7739.2061,13900.022,0,0,1480.6575 -11443,14122,25438,25439,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.1023235,7.0582886,0,36,1,-100.14511,0,3,3,2019,36,12,15,15,1,12,0,7.2020631,7.2020631,0,0,0,0,2,1,1,0,0,0,38.56,45.76,42.86,49.95,3.333333333333333,1,1,0,1,2,10,2,0,437,256260.09,0,0,0,1115.3406 -11443,14122,25439,25438,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,36,-1,16.577473,0,-9,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,42.86,49.95,38.56,45.76,5,1,1,1,1,0,10,2,0,437,256260.09,0,0,0,1115.3406 -11443,14123,25440,-9,25439,25438,1,0,25,0,0,0,2,2,-9,0,4,7.86449,7.9866662,0,0,0,-980.56323,0,3,3,2019,7,1,35,0,1,1,1,9.1582203,9.1582203,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,1,10,3,0,644,64130.105,-33809.234,0,0,1144.6351 -11444,14124,25441,25442,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.3345728,7.9671912,0,4,1,33.198074,0,-9,-9,2019,6,0,37,-9,1,0,0,13.125127,13.125127,0,0,0,0,0,0,0,0,3.8656297,0,60.02,56.42,57.06,57.76,10,3,4,0,0,7,7,5,1,740.33331,36434.359,71641.656,0,0,4167.6274 -11444,14124,25442,25441,-9,-9,1,1,34,1,1,0,2,2,-9,0,5,8.5320301,8.9679165,0,4,-1,82.476372,0,2,2,2019,5,0,35,37,1,0,0,17.437561,17.437561,0,0,0,0,0,0,0,0,6.8272247,0,57.06,57.76,60.02,56.42,10,1,1,0,0,10,7,5,1,740.33331,36434.359,71641.656,0,0,4167.6274 -11444,14124,25443,-9,25441,25442,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-906.01282,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,740.33331,36434.359,71641.656,0,0,4167.6274 -11445,14125,25444,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,8.439373,8.8414106,0,0,0,-1057.3821,0,2,-9,2019,8,1,30,43,1,1,0,20.215635,20.215635,0,0,0,0,0,0,0,0,0,0,49.53,50.82,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,531,290350.13,267869.81,27340.553,61447.844,2311.0034 -11445,14125,25445,-9,25444,-9,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-976.75653,-9,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,1,0,0,4,5,1,531,290350.13,267869.81,27340.553,61447.844,2311.0034 -11445,14126,25446,-9,25444,-9,1,1,19,0,0,0,2,2,1,0,3,7.779017,7.865416,0,0,0,-990.70532,-9,2,-9,2019,6,0,37,0,1,0,1,8.995903,8.995903,0,0,0,0,0,0,0,0,0,0,62.84,44.02,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,254,295392.03,-96172.453,0,0,1636.318 -11446,14127,25447,25448,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.7092085,8.3078279,9,2,57.028416,0,2,2,2019,5,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,1.134825,8.6853065,57.16,56.15,45.4,58.69,8.333333333333334,1,1,0,0,9,9,5,1,984.5,1500031.3,575010.25,514907.25,0,4155.7754 -11446,14127,25448,25447,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.513546,8.515255,0,9,-2,31.843952,0,2,2,2019,12,0,15,0,1,0,0,32.745441,32.745441,0,0,0,0,0,0,0,0,5.0898571,0,45.4,58.69,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,984.5,1500031.3,575010.25,514907.25,0,4155.7754 -11447,14128,25449,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1209.1273,0,3,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.65,27.97,-9,-9,10,1,1,0,0,0,5,1,0,203,-39289.344,0,0,0,1164.7233 -11447,14129,25450,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-944.69196,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.94,31.87,-9,-9,10,1,1,0,0,0,5,1,0,339,-430002.22,0,33675.957,0,-125.49048 -11448,14130,25451,25452,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,0,0,0,6,3,-79.797737,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,46.56,50.26,1.666666666666667,3,4,1,1,0,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 -11448,14130,25452,25451,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.2218342,8.6664915,0,6,-3,56.523674,0,3,2,2019,11,0,36,35,1,0,0,13.947612,13.947612,0,0,0,.87573946,0,1,1,0,0,0,46.56,50.26,41.64,54.12,5,3,4,0,0,10,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 -11448,14130,25453,-9,25452,25451,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1096.5874,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 -11448,14130,25454,-9,25452,25451,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9297,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1432,347503.78,-102.86841,333997.41,0,2445.9224 -11449,14131,25455,25456,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,58,-2,8.0035543,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.6142004,0,0,1,1,0,0,0,52,45,54,45,8,1,1,0,0,0,12,2,1,349.5,186990.8,45288.398,88738.703,0,2629.2295 -11449,14131,25456,25455,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.1416154,6.9836907,58,2,-41.309692,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,3.2022641,7.4624143,54,45,52,45,8,1,1,0,0,0,12,2,1,349.5,186990.8,45288.398,88738.703,0,2629.2295 -11450,14132,25457,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.5016251,8.4506121,0,0,0,-891.56525,0,-9,-9,2019,9,0,37,37,1,0,0,11.525426,11.525426,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,1404,105404.47,20967.402,121742.13,0,855.6825 -11451,14133,25458,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,0,0,-998.72235,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,25.5,-9,-9,3.333333333333333,1,1,1,1,1,13,1,0,693,0,0,0,0,106.20773 -11451,14134,25459,-9,25458,-9,1,1,21,0,0,0,2,2,1,0,4,0,0,0,0,0,-918.86938,-9,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,1.610526,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,1,0,13,1,0,328,-89559.57,0,0,0,-148.41608 -11451,14135,25460,-9,25458,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1012.4471,-9,3,-9,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.41,59.45,-9,-9,8.333333333333334,1,1,0,1,2,13,1,0,625,-173701.31,0,0,0,0 -11452,14136,25461,25462,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.6748567,7.6952815,45,1,77.444992,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0123167,7.9594374,51.02,45.43,46.73,54.33,6.666666666666667,1,1,0,0,9,6,3,1,1637,1238365.3,447608.13,290789.19,0,2135.6223 -11452,14136,25462,25461,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,5.0364623,5.0774245,45,-1,-88.089073,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,42,1,1,0,4.6567121,0,46.73,54.33,51.02,45.43,6.666666666666667,1,1,0,0,11,6,3,1,1637,1238365.3,447608.13,290789.19,0,2135.6223 -11453,14137,25463,-9,25467,25465,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1040.5323,-9,2,3,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.65,65.37,-9,-9,3.333333333333333,2,3,0,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 -11453,14137,25464,-9,25467,25465,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.96521,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 -11453,14137,25465,25467,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,8.8344765,8.6356859,0,24,6,45.091389,0,3,3,2019,12,0,48,43,1,0,0,16.277243,16.277243,0,0,0,0,0,1,1,0,0,0,38.28,57.07,49,55,8.333333333333334,2,3,0,0,10,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 -11453,14137,25466,-9,25467,25465,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.19141,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 -11453,14137,25467,25465,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,7,-6,-46.164597,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,38.28,57.07,8,2,3,0,0,0,8,3,1,906.79999,546575.75,36226.977,474262.5,0,2703.2009 -11453,14138,25468,-9,25467,25465,1,0,20,0,2,0,1,1,1,0,4,7.7927809,7.9849901,0,0,0,-1058.9365,-9,2,3,2019,11,0,53,0,1,2,1,4.6008959,4.6008959,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,1,8,3,1,202,202318.02,79470.836,0,0,1530.6868 -11454,14139,25469,25470,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4073677,8.4306707,0,4,0,-232.21664,0,-9,-9,2019,12,1,38,43,1,1,0,14.701464,14.701464,0,0,0,0,0,0,0,0,.25126803,0,51.84,51.67,27.74,62.65,8.333333333333334,4,4,0,0,6,6,4,0,974.5,555300.25,41175.063,97318.453,115752.18,2358.2776 -11454,14139,25470,25469,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.6103673,7.5608096,0,4,0,38.383663,0,1,-9,2019,26,10,37,37,1,10,0,5.2492537,5.2492537,0,0,0,0,0,0,0,0,2.649905,0,27.74,62.65,51.84,51.67,1.666666666666667,3,4,0,1,5,6,4,0,974.5,555300.25,41175.063,97318.453,115752.18,2358.2776 -11455,14140,25471,-9,-9,25472,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-1086.4069,-9,-9,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,5,1,1,0,1,1,4,1,0,125,0,0,0,0,360.78647 -11455,14141,25472,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.7072554,7.7486019,0,0,0,-953.19806,0,-9,-9,2019,20,8,50,0,1,8,0,4.841053,4.841053,0,0,0,0,0,1,1,0,0,0,33.76,56.35,-9,-9,1.666666666666667,1,1,0,1,7,4,3,0,292,224452.39,47331.059,91135.664,0,1676.1516 -11456,14142,25473,25474,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.3316865,7.2081814,46,5,-21.111811,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.3932581,7.5981531,54.96,53.17,61.43,43.34,8.333333333333334,1,1,0,0,0,12,3,1,252.5,1164853.5,-62987.25,220547,0,1490.4199 -11456,14142,25474,25473,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,4.9573917,5.1460323,46,-5,92.588623,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1021271,61.43,43.34,54.96,53.17,6.666666666666667,1,1,0,0,4,12,3,1,252.5,1164853.5,-62987.25,220547,0,1490.4199 -11457,14143,25475,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.23318,8.6349754,0,0,0,-1038.0476,0,2,-9,2019,6,0,42,45,1,0,0,11.690298,11.690298,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,64,758131.44,879595.38,0,0,1594.5256 -11458,14144,25476,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.4945755,9.3919363,0,0,0,-991.52081,0,1,2,2019,19,7,47,45,1,7,0,41.935867,41.935867,0,0,0,0,0,0,0,0,4.6451864,0,38.51,59.43,-9,-9,5,1,1,0,0,9,8,5,1,518,806275.56,327179.72,768448.75,158545.92,5379.2607 -11459,14145,25477,25478,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,6.0554085,5.5718298,0,4,3,-121.62041,0,-9,-9,2019,14,4,10,30,1,4,0,3.2961276,3.2961276,0,0,0,0,0,0,0,0,.24594156,0,43.92,53.94,52.24,50.75,8.333333333333334,1,1,0,0,6,7,5,1,527,1075052.5,393500.31,157113.89,50911.219,3653.8489 -11459,14145,25478,25477,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,9.0520611,9.4590378,0,4,-3,-82.13488,0,-9,-9,2019,9,1,55,44,1,1,0,22.758554,22.758554,0,0,0,0,2,0,0,0,2.1495929,0,52.24,50.75,43.92,53.94,10,1,1,0,0,4,7,5,1,527,1075052.5,393500.31,157113.89,50911.219,3653.8489 -11460,14146,25479,25480,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.2723336,5.6703877,59,2,-51.605064,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,.63555777,5.5765257,37.94,21.98,60.2,23.76,1.666666666666667,1,1,0,0,0,6,2,1,740,-90178.047,158453.44,125879.8,0,1002.2053 -11460,14146,25480,25479,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.3679543,6.5466747,59,-2,25.769756,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8463321,6.6871195,60.2,23.76,37.94,21.98,8.333333333333334,1,1,0,0,6,6,2,1,740,-90178.047,158453.44,125879.8,0,1002.2053 -11461,14147,25481,-9,25482,25483,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.30853,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,397.66666,552220.88,453310.03,281505.81,21628.408,2657.1357 -11461,14147,25482,25483,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,6.5546322,6.9930434,5.8667097,6,0,-128.28784,0,2,2,2019,15,3,8,38,1,3,0,11.448133,11.448133,0,0,0,0,0,1,1,0,6.1735573,0,49.11,39.47,38.27,54.57,8.333333333333334,1,1,0,0,7,10,4,1,397.66666,552220.88,453310.03,281505.81,21628.408,2657.1357 -11461,14147,25483,25482,-9,-9,1,1,49,0,1,0,1,1,-9,0,2,8.4716997,8.6188612,0,6,9,42.986378,0,-9,-9,2019,18,8,40,37,1,8,0,17.400774,17.400774,0,0,0,0,0,1,1,0,1.2011009,0,38.27,54.57,49.11,39.47,3.333333333333333,4,1,0,0,6,10,4,1,397.66666,552220.88,453310.03,281505.81,21628.408,2657.1357 -11462,14148,25484,25485,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,7.7140832,7.7571139,0,8,0,50.350578,0,-9,-9,2019,8,0,30,30,1,0,0,10.247817,10.247817,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.65,34.96,8.333333333333334,1,1,0,0,4,9,2,0,967.33331,-65709.297,-44962.008,0,0,1709.5771 -11462,14148,25485,25484,-9,-9,1,0,49,0,1,0,3,3,-9,0,1,0,0,0,8,0,19.136843,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,42.65,34.96,51.83,57.2,3.333333333333333,1,1,0,0,0,9,2,0,967.33331,-65709.297,-44962.008,0,0,1709.5771 -11462,14148,25486,-9,25485,25484,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-921.3653,-9,3,3,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,34.39,40.86,-9,-9,5,1,1,0,0,0,9,2,0,967.33331,-65709.297,-44962.008,0,0,1709.5771 -11463,14149,25487,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.8106575,7.894774,0,0,0,-1081.59,0,2,3,2019,13,3,39,39,1,3,0,8.4163189,8.4163189,0,0,0,0,14.5,1,1,0,1.9791967,0,39.14,41.63,-9,-9,5,2,3,0,1,4,7,3,0,290,448785.5,58495.578,579232.19,177642.06,1477.3889 -11464,14150,25488,25489,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4898052,8.605834,0,10,-2,-53.00034,0,2,3,2019,11,0,55,58,1,0,0,15.31343,15.31343,0,0,0,0,0,0,0,0,0,0,48.45,49.46,26.5,60.74,6.666666666666667,1,1,0,0,12,7,5,0,2864.5,1098335,749748.75,494410.38,0,3942.0186 -11464,14150,25489,25488,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0854568,8.2901192,0,37,2,24.8365,0,3,3,2019,27,12,44,47,1,12,0,8.6004429,8.6004429,0,0,0,0,7,0,0,0,0,0,26.5,60.74,48.45,49.46,6.666666666666667,1,1,0,0,12,7,5,0,2864.5,1098335,749748.75,494410.38,0,3942.0186 -11465,14151,25490,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,8.3816366,8.22616,0,0,-1002.6763,0,2,2,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.6826839,8.2108345,46.42,52.88,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,3159,1462176.4,1478350.3,145944.89,0,2171.4421 -11465,14152,25491,-9,25490,-9,1,1,27,0,0,0,1,1,-9,0,4,6.005456,6.2859559,0,0,0,-1078.4657,0,2,1,2019,12,3,35,40,1,3,0,1.7895896,1.7895896,0,0,0,0,0,0,0,0,0,0,31.58,61.01,-9,-9,8.333333333333334,1,1,0,0,5,5,2,1,240,77197.688,0,0,0,98.728973 -11466,14153,25492,-9,25494,25493,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.80542,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 -11466,14153,25493,25494,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.3691349,8.188899,0,7,7,-120.83516,0,2,2,2019,9,0,43,43,1,0,0,13.389503,13.389503,0,0,0,0,0,1,1,0,2.9053893,0,55.96,49.93,51.62,45.05,8.333333333333334,1,1,0,0,9,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 -11466,14153,25494,25493,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.2281694,8.318903,0,7,-7,40.850269,0,2,1,2019,11,1,38,38,1,1,0,10.189387,10.189387,0,0,0,0,0,1,1,0,2.3049338,0,51.62,45.05,55.96,49.93,8.333333333333334,1,1,0,0,7,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 -11466,14153,25495,-9,25494,25493,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1156.7041,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,725,333454.31,226473.16,243567.47,124414.24,3446.0476 -11467,14154,25496,25497,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,8.2398958,8.2981081,0,7,1,33.096699,0,2,2,2019,30,12,38,37,1,12,0,11.943306,11.943306,0,0,0,0,0,1,1,0,0,0,30.24,40.68,38.93,47.28,5,1,1,0,0,8,1,5,1,290,691600.75,570815.81,75402.672,23050.699,3811.1353 -11467,14154,25497,25496,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.5939484,8.4864368,0,7,-1,40.682476,0,-9,-9,2019,12,1,49,48,1,1,0,13.881239,13.881239,0,0,0,0,2,1,1,0,0,0,38.93,47.28,30.24,40.68,3.333333333333333,1,1,0,0,10,1,5,1,290,691600.75,570815.81,75402.672,23050.699,3811.1353 -11468,14155,25498,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.203063,8.4155169,0,0,0,-1081.8108,0,3,3,2019,10,2,48,0,1,2,0,10.435435,10.435435,0,0,0,0,0,0,0,0,0,0,46.23,34.36,-9,-9,6.666666666666667,3,4,0,0,7,8,4,1,906,300062.88,79432.297,279086.25,0,1658.1697 -11468,14156,25499,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,8.1999903,8.5355043,0,0,0,-1005.8326,-9,-9,-9,2019,11,0,15,0,1,1,0,28.709684,28.709684,0,0,0,0,0,0,0,0,5.8239388,0,50,47,-9,-9,7,3,4,0,0,1,8,4,1,367,646640.06,0,453079.63,8328.0527,1524.3954 -11468,14157,25500,-9,25499,25498,1,1,31,0,0,0,2,2,-9,0,4,8.2751074,8.0602112,0,0,0,-1050.4399,-9,3,2,2019,10,0,40,0,1,1,1,7.1389031,7.1389031,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,4,1,819,234602.03,0,0,0,1419.0376 -11469,14158,25501,-9,-9,-9,1,1,23,0,0,0,2,2,1,0,3,6.7433958,6.6807456,0,0,0,-1057.694,-9,-9,-9,2019,11,1,17,0,1,1,0,6.1555405,6.1555405,0,0,0,0,0,0,0,0,0,0,33.66,61.57,-9,-9,6.666666666666667,1,1,0,1,3,4,2,0,425,141772.41,0,0,0,178.10335 -11470,14159,25502,25503,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,58,-1,-14.248847,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.696537,0,42.84,57.21,52.48,50.07,8.333333333333334,1,1,0,0,0,6,2,1,292,283592.44,44598.613,133493.16,40599.07,1327.7402 -11470,14159,25503,25502,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,4.403635,4.4463806,58,1,-113.19949,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6035066,4.8177857,52.48,50.07,42.84,57.21,8.333333333333334,1,1,0,0,5,6,2,1,292,283592.44,44598.613,133493.16,40599.07,1327.7402 -11471,14160,25504,25505,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.4706144,8.6562366,0,27,-1,24.561331,0,3,2,2019,9,0,49,37,1,0,0,20.651405,20.651405,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,10,13,5,1,380.66666,727361.31,815318.75,0,0,4569.8726 -11471,14160,25505,25504,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.6782885,8.8023367,0,27,1,85.081741,0,3,2,2019,6,0,42,42,1,0,0,17.037674,17.037674,0,0,0,0,0,1,1,0,0,0,60.02,56.42,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,380.66666,727361.31,815318.75,0,0,4569.8726 -11471,14160,25506,-9,25504,25505,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1030.8434,-9,2,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,13,5,1,380.66666,727361.31,815318.75,0,0,4569.8726 -11472,14161,25507,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1295166,7.7802753,0,0,0,-1181.0242,0,3,2,2019,1,0,35,35,1,0,0,9.5459805,9.5459805,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,584,238219.53,213833.8,39528.359,-8004.2954,1040.3735 -11473,14162,25508,25509,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,4.9901838,5.1900997,33,31,-156.63782,0,3,3,2019,27,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,4.8676291,28.87,27.66,57.16,56.15,5,1,1,0,0,0,10,2,1,905,564986.81,75630.047,0,0,1330.4487 -11473,14162,25509,25508,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,0,0,0,33,-31,-90.939339,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,28.87,27.66,8.333333333333334,1,1,0,0,0,10,2,1,905,564986.81,75630.047,0,0,1330.4487 -11474,14163,25510,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1046.3967,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.9,48.18,-9,-9,5,1,1,1,0,0,13,1,0,216,0,0,0,0,1227.7697 -11474,14164,25511,-9,-9,25510,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1084.1189,-9,3,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,270,80411.531,0,0,0,0 -11475,14165,25512,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,6.6677446,6.7890363,0,0,-905.52039,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.873589,52.73,9.859999999999999,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1890,382705.53,112030.38,0,0,2050.03 -11476,14166,25513,25514,-9,-9,1,1,50,0,0,0,3,3,-9,0,2,7.0780358,7.1816902,0,1,-13,25.647711,0,-9,3,2019,12,0,28,0,1,0,0,4.1088781,4.1088781,0,0,0,0,0,1,1,0,0,0,45.81,49.4,58.43,30.19,5,1,1,0,0,1,6,3,0,672,296652.84,42123.223,88242.719,38033.93,1578.3691 -11476,14166,25514,25513,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.4687319,7.6262083,0,1,13,36.656178,0,2,3,2019,12,0,29,19,1,0,0,6.1976347,6.1976347,0,0,0,0,0,1,1,0,0,0,58.43,30.19,45.81,49.4,8.333333333333334,1,1,0,0,11,6,3,0,672,296652.84,42123.223,88242.719,38033.93,1578.3691 -11477,14167,25515,25516,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,8.2584124,8.1125402,3,1,-71.802315,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.1378555,8.2130556,57.06,57.76,51.25,48.45,8.333333333333334,1,1,0,0,2,6,5,1,756.5,1516335.5,1265005.3,267739.91,0,4762.6377 -11477,14167,25516,25515,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.9197044,9.2406082,0,3,-1,103.90428,0,2,3,2019,11,0,43,50,1,0,0,25.034948,25.034948,0,0,0,0,0,0,0,0,0,0,51.25,48.45,57.06,57.76,5,4,2,0,0,6,6,5,1,756.5,1516335.5,1265005.3,267739.91,0,4762.6377 -11478,14168,25517,-9,25518,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.26031,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,370.5,-282319.91,57110.875,0,0,703.96851 -11478,14168,25518,-9,-9,-9,1,0,32,0,1,0,3,3,-9,0,4,0,5.9407001,6.047719,0,0,-1037.786,0,3,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,6.1735973,0,27.28,65.96000000000001,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,370.5,-282319.91,57110.875,0,0,703.96851 -11479,14169,25519,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-865.62866,-9,1,1,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1.5435698,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,1,1,1,0,213,-7777.4873,0,0,0,-177.44136 -11479,14170,25520,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1101.0442,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,1,1,1,0,281,124746.79,0,0,0,17.272652 -11479,14171,25521,-9,-9,-9,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1111.9458,-9,-9,-9,2019,11,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,0,1,1,0,809,0,0,0,0,-1979.1959 -11479,14172,25522,-9,-9,-9,1,1,23,0,0,1,1,0,-9,0,4,0,6.7529368,6.6621699,0,0,-1009.6625,-9,-9,-9,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,6.1496711,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,554,244072.06,0,0,0,514.1214 -11480,14173,25523,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,7.9755983,7.7125344,6.0159283,0,0,-996.55896,0,3,3,2019,8,0,27,23,1,0,0,8.7155533,8.7155533,0,0,0,0,0,1,0,1,0,6.346549,48.54,46.62,-9,-9,8.333333333333334,3,4,0,0,12,8,3,0,1843,-60926.582,-29808.146,0,0,1410.9199 -11480,14173,25524,-9,25523,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.7933,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,3,0,1843,-60926.582,-29808.146,0,0,1410.9199 -11480,14174,25525,-9,25523,-9,1,0,26,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1056.3922,0,2,2,2019,12,1,0,30,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,35.5,54.11,-9,-9,8.333333333333334,3,4,1,0,6,8,1,0,759,90434.281,0,0,0,1242.79 -11481,14175,25526,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.7579727,9.0600033,0,0,0,-1046.9386,0,1,2,2019,10,0,37,37,1,0,0,19.367434,19.367434,0,0,0,0,0,0,0,0,2.8921189,0,51.25,52.08,-9,-9,6.666666666666667,1,1,0,0,12,11,5,1,144,224595.69,150012.55,0,0,555.51801 -11482,14176,25527,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1041.1986,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,2,13,1,1,707,-41524.141,0,0,0,481.67612 -11483,14177,25528,25530,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,18,-1,-104.71371,0,3,3,2019,3,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,46.43,36.16,45.46,6.666666666666667,2,3,0,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 -11483,14177,25529,-9,25528,25530,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.99225,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 -11483,14177,25530,25528,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,7.5963798,7.4028211,0,18,1,-138.84607,0,3,2,2019,10,2,30,30,1,2,0,8.1162701,8.1162701,0,0,0,0,0,1,1,0,0,0,36.16,45.46,48.6,46.43,8.333333333333334,2,3,0,0,10,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 -11483,14177,25531,-9,25528,25530,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.19305,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 -11483,14177,25532,-9,25528,25530,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1104.5129,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,5,2,1,618.20001,113111.44,-39694.168,182058.97,105323.02,1771.9363 -11484,14178,25533,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4377184,8.8473196,0,0,0,-904.22479,0,2,2,2019,23,9,37,37,1,9,0,14.16466,14.16466,0,0,0,0,0,1,1,0,0,0,35.09,62.46,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,3558,-3999.9709,216927.81,0,0,1285.516 -11485,14179,25534,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.8858905,7.7804003,0,0,0,-1048.9918,0,3,2,2019,21,10,40,37,1,10,0,8.9431953,8.9431953,0,0,0,0,0,0,0,0,0,0,30.67,65.95,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,1061,324729.81,31540.162,0,0,1329.1788 -11486,14180,25535,25536,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.1408167,9.158637,0,19,2,-113.95441,0,2,1,2019,9,0,55,52,1,0,0,25.340128,25.340128,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.37,54.8,8.333333333333334,1,1,0,0,11,4,5,1,588,653012.69,296965.22,337562.47,129838.84,6167.0195 -11486,14180,25536,25535,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.6490259,8.5133543,0,20,-2,-48.780781,0,2,2,2019,10,0,40,40,1,0,0,20.783237,20.783237,0,0,0,0,0,0,0,0,3.1631215,0,54.37,54.8,54.69,57.47,8.333333333333334,1,1,0,0,11,4,5,1,588,653012.69,296965.22,337562.47,129838.84,6167.0195 -11486,14180,25537,-9,25535,25536,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-935.39557,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,5,1,588,653012.69,296965.22,337562.47,129838.84,6167.0195 -11487,14181,25538,25539,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,3.5671918,3.8828373,22,-11,-31.976122,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.0015173,3.6713829,62.92,12.95,48.36,28.21,10,1,1,0,0,0,5,2,0,1073.5,85865.719,-57648.52,91110.281,68636.859,1886.8008 -11487,14181,25539,25538,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.1163502,4.111908,21,11,-37.545227,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,4.2414627,48.36,28.21,62.92,12.95,3.333333333333333,1,1,0,0,0,5,2,0,1073.5,85865.719,-57648.52,91110.281,68636.859,1886.8008 -11488,14182,25540,-9,25542,25543,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.74603,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 -11488,14182,25541,-9,25542,25543,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.92493,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 -11488,14182,25542,25543,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.8042545,8.8005362,0,14,-3,-51.911533,0,2,1,2019,10,0,37,39,1,0,0,23.723215,23.723215,0,0,0,0,0,1,1,0,5.1860824,0,37.52,63.91,57.06,57.76,6.666666666666667,1,1,0,0,7,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 -11488,14182,25543,25542,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.1547079,9.1962328,0,12,3,-10.989561,0,2,1,2019,10,0,39,39,1,0,0,26.758888,26.758888,0,0,0,0,0,1,1,0,0,0,57.06,57.76,37.52,63.91,10,1,1,0,0,10,12,5,1,327.25,1153689.3,939670.19,385587.59,158239.63,6043.2583 -11489,14183,25544,25547,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,8.6903667,8.3644896,0,17,1,-78.731049,0,2,2,2019,9,0,38,39,1,0,0,15.813304,15.813304,0,0,0,0,2,0,0,0,0,0,50.18,52.62,34.77,50.33,5,1,1,0,0,11,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 -11489,14183,25545,-9,25547,25544,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.90814,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 -11489,14183,25546,-9,25547,25544,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1187.9611,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 -11489,14183,25547,25544,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,8.4526224,8.4963017,0,17,-1,220.41856,0,3,2,2019,16,4,76,44,1,4,0,5.8184929,5.8184929,0,0,0,0,0,0,0,0,0,0,34.77,50.33,50.18,52.62,3.333333333333333,1,1,0,0,11,5,4,1,668.25,112847.34,105563.3,157130.36,17752.559,3048.332 -11490,14184,25548,25551,-9,-9,1,0,33,0,2,0,3,3,-9,0,3,0,0,0,15,0,-6.6342177,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,43.99,50,57,3.333333333333333,2,3,0,0,0,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 -11490,14184,25549,-9,25548,25551,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.9761,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 -11490,14184,25550,-9,25548,25551,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.4238,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 -11490,14184,25551,25548,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,6.5472746,6.8849654,0,5,0,-51.962036,0,-9,-9,2019,10,0,24,40,1,1,0,3.44678,3.44678,0,0,0,0,0,1,1,0,0,0,50,57,56.94,43.99,7,2,3,0,0,1,2,2,1,414.75,38484.344,16955.039,0,0,1119.011 -11490,14185,25552,-9,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1110.5717,0,-9,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,4,6,1,0,0,2,1,1,1349,-415438.88,0,0,0,0 -11491,14186,25553,25554,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.5537252,8.4260178,0,40,2,14.259276,0,3,3,2019,11,0,24,32,1,0,0,19.372957,19.372957,0,0,0,0,0,0,0,0,7.0370803,0,53.87,53.44,33.07,55.18,8.333333333333334,1,1,0,0,11,10,4,1,647,1077738,956724.25,448708.31,27598.113,3087.29 -11491,14186,25554,25553,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.7394695,7.6775799,0,40,-2,-105.38151,0,3,3,2019,18,6,25,20,1,6,0,9.0687351,9.0687351,0,0,0,0,14.5,0,0,0,1.3125626,0,33.07,55.18,53.87,53.44,8.333333333333334,1,1,0,0,10,10,4,1,647,1077738,956724.25,448708.31,27598.113,3087.29 -11492,14187,25555,25558,-9,-9,1,0,36,0,2,0,3,3,-9,0,5,6.6130948,6.2655792,0,8,-1,58.581673,0,3,3,2019,11,0,10,12,1,0,0,11.458769,11.458769,0,0,0,0,0,1,1,0,0,0,43.92,56.78,46.17,46.33,8.333333333333334,1,1,0,0,5,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 -11492,14187,25556,-9,25555,25558,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.9003,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 -11492,14187,25557,-9,25555,25558,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.575,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 -11492,14187,25558,25555,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2837515,8.441843,0,8,1,33.673771,0,-9,-9,2019,12,0,50,50,1,0,0,14.452263,14.452263,0,0,0,0,0,1,1,0,0,0,46.17,46.33,43.92,56.78,5,1,1,0,0,9,11,4,1,1049,86543.07,74196.508,148562.17,95737.398,2372.1919 -11493,14188,25559,25560,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.4967766,8.3591156,0,6,-2,-39.796303,0,2,2,2019,17,5,41,37,1,5,0,9.1522741,9.1522741,0,0,0,0,0,0,0,0,2.4400694,0,24.43,57.95,39.93,57.19,3.333333333333333,1,1,0,0,8,4,5,1,576.5,151165.2,-256.36719,156597.25,74572.352,3055.3354 -11493,14188,25560,25559,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9433746,8.0088091,0,6,2,-49.002167,0,-9,-9,2019,13,2,38,37,1,2,0,9.2898893,9.2898893,0,0,0,0,0,0,0,0,1.9018368,0,39.93,57.19,24.43,57.95,8.333333333333334,1,1,0,0,10,4,5,1,576.5,151165.2,-256.36719,156597.25,74572.352,3055.3354 -11494,14189,25561,25562,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1568956,6.9710464,0,35,2,-44.783085,0,2,2,2019,11,0,3,20,1,0,0,53.43433,53.43433,0,0,0,0,0,0,0,0,0,0,50.43,45.82,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,216.5,981850.5,183503.5,600483.38,773.21582,3380.1392 -11494,14189,25562,25561,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.4065914,9.328331,0,36,-2,43.483852,0,2,2,2019,6,0,42,43,1,0,0,30.18194,30.18194,0,0,0,0,0,0,0,0,6.2169642,0,57.06,57.76,50.43,45.82,8.333333333333334,1,1,0,0,13,5,5,1,216.5,981850.5,183503.5,600483.38,773.21582,3380.1392 -11495,14190,25563,25564,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.9227896,8.3798065,0,18,-5,100.81944,0,3,2,2019,11,0,23,24,1,0,0,15.225932,15.225932,0,0,0,0,0,1,1,0,2.407263,0,45.91,59.89,51.39,59.18,5,1,1,0,1,12,10,5,1,457,522669,126945.3,296340.75,123956,3781.4175 -11495,14190,25564,25563,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.706953,8.7041893,5.9786701,11,5,-23.69519,0,-9,-9,2019,12,1,41,42,1,1,0,17.368275,17.368275,0,0,0,0,0,1,1,0,6.127943,0,51.39,59.18,45.91,59.89,8.333333333333334,1,1,0,0,12,10,5,1,457,522669,126945.3,296340.75,123956,3781.4175 -11496,14191,25565,25567,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.413096,7.502326,0,4,-10,17.049337,0,3,2,2019,6,0,16,18,1,0,0,12.733665,12.733665,0,0,0,0,2,0,0,0,0,0,54.2,57.49,36.97,58.59,8.333333333333334,1,1,0,0,6,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 -11496,14191,25566,-9,25565,25567,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.816,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 -11496,14191,25567,25565,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,9.1634169,9.3140182,0,4,10,-22.372561,0,-9,-9,2019,13,1,50,60,1,1,0,21.536596,21.536596,0,0,0,0,0,0,0,0,0,0,36.97,58.59,54.2,57.49,8.333333333333334,1,1,0,0,10,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 -11496,14191,25568,-9,25565,25567,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.9584,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,690,1745075.8,1226289.6,264454.69,59276.422,4458.0142 -11497,14192,25569,25570,-9,-9,1,0,50,0,2,0,3,3,-9,0,5,0,0,0,24,-1,-48.18576,0,3,1,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,49.33,43.75,6.666666666666667,2,3,0,1,0,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 -11497,14192,25570,25569,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,7.6194639,7.6817636,0,24,1,128.07726,0,3,1,2019,11,0,32,32,1,0,0,8.9273453,8.9273453,0,0,0,0,0,1,1,0,0,0,49.33,43.75,46.28,62.6,5,2,3,0,1,7,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 -11497,14192,25571,-9,25569,25570,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.4866,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 -11497,14192,25572,-9,25569,25570,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1055.6094,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,1,615.25,768711.94,399720.5,629753.31,149748.63,1891.3091 -11497,14193,25573,-9,25569,25570,1,0,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-964.07953,-9,3,1,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,5,2,3,0,1,1,8,1,1,844,-58056.863,0,0,0,0 -11497,14194,25574,-9,25569,25570,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1020.0352,-9,3,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55,44.83,-9,-9,1.666666666666667,2,3,0,0,0,8,1,1,465,0,0,0,0,0 -11498,14195,25575,-9,25577,25578,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-887.10803,-9,3,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 -11498,14195,25576,-9,25577,25578,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-907.74103,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 -11498,14195,25577,25578,-9,-9,1,0,49,0,3,0,3,3,-9,0,3,0,0,0,27,-10,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.66,47.77,51,49,3.333333333333333,2,3,0,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 -11498,14195,25578,25577,25580,-9,1,1,59,0,3,0,3,3,-9,0,3,0,0,0,27,10,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,54.66,47.77,7,2,3,1,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 -11498,14195,25579,-9,25577,25578,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1050.3569,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,437.20001,183063.8,49334.27,169745.55,18171.063,870.64349 -11498,14196,25580,-9,-9,-9,1,0,75,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1105.5857,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,42.227867,82.102547,391.75876,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,6,1,1,344,-91555.141,0,0,0,1135.4644 -11498,14197,25581,-9,25577,25578,1,0,21,0,3,0,2,2,-9,0,4,7.5882158,7.7609849,0,0,0,-943.15906,0,3,3,2019,9,0,35,40,1,0,1,7.0340767,7.0340767,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,2,6,3,1,375,0,0,0,0,578.51563 -11499,14198,25582,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.3996673,6.5965786,0,0,-978.17407,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.4807048,54,43,-9,-9,7,1,1,0,0,0,5,2,1,433,-49905.379,-15417.032,204054,0,13.147413 -11500,14199,25583,25584,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,9.8356438,9.7894564,0,9,3,-32.453625,0,2,3,2019,11,0,50,50,1,0,0,36.005291,36.005291,0,0,0,0,7,1,1,0,7.7607703,0,58.56,46.45,37.85,56.63,10,1,1,0,0,10,12,5,1,935,578931.75,313769.09,293147.06,109898.55,7469.3799 -11500,14199,25584,25583,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.6484594,7.9894104,0,9,-3,39.231873,0,2,2,2019,20,8,38,35,1,8,0,7.327498,7.327498,0,0,0,0,0,1,1,0,0,0,37.85,56.63,58.56,46.45,6.666666666666667,1,1,0,0,10,12,5,1,935,578931.75,313769.09,293147.06,109898.55,7469.3799 -11500,14199,25585,-9,25584,25583,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.5939,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,935,578931.75,313769.09,293147.06,109898.55,7469.3799 -11501,14200,25586,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.6764584,8.7016716,0,0,0,-986.7099,0,3,3,2019,7,0,40,40,1,0,0,12.036209,12.036209,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,400,30125.346,154005.63,209024.19,8082.7661,1779.9611 -11502,14201,25587,25588,-9,-9,1,0,28,1,2,0,2,2,-9,1,1,0,0,0,8,-12,0,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,6.97,50.17,61.37,31.03,0,1,1,0,0,3,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 -11502,14201,25588,25587,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,8,12,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.37,31.03,6.97,50.17,8.333333333333334,1,1,1,0,5,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 -11502,14201,25589,-9,25587,25588,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.6483,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 -11502,14201,25590,-9,25587,25588,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.26849,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,651.25,18762.195,47479.641,0,0,1825.2131 -11503,14202,25591,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,3.3052361,3.4433148,0,0,-1123.6445,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,37.328735,0,0,1,1,0,2.9086437,0,47.91,19.2,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1450,516340.72,12403.584,222089.05,0,821.88538 -11504,14203,25592,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.2356133,7.4605007,6.3082528,0,0,-1022.6345,0,3,1,2019,6,0,17,18,1,0,0,8.5992336,8.5992336,0,0,0,0,14.5,1,1,0,4.5888233,6.6578689,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,783,255425.13,0,156126.64,0,1977.4995 -11505,14204,25593,-9,25594,25597,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1052.6763,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 -11505,14204,25594,25597,-9,-9,1,0,29,1,6,0,1,1,-9,0,5,7.7725492,7.6572084,0,6,0,82.97007,0,-9,-9,2019,7,0,35,24,1,0,0,6.4226398,6.4226398,0,0,0,0,0,1,1,0,0,0,56.96,56.86,61.66,50.31,8.333333333333334,3,4,0,0,3,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 -11505,14204,25595,-9,25594,25597,1,0,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-865.97516,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 -11505,14204,25596,-9,25594,25597,1,1,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-924.45197,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 -11505,14204,25597,25594,-9,-9,1,1,38,1,6,0,3,3,-9,0,5,0,0,0,6,9,-144.32375,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.66,50.31,56.96,56.86,8.333333333333334,3,4,0,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 -11505,14204,25598,-9,25594,25597,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1003.2056,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,9,2,0,483.33334,104780.41,-21708.977,228185.22,99886.922,3083.2417 -11506,14205,25599,-9,25600,25601,1,1,27,0,1,0,2,2,-9,0,4,7.9937625,7.9825878,0,0,0,-1068.8401,-9,3,2,2019,22,10,40,0,1,10,1,7.7170744,7.7170744,0,0,0,0,0,1,1,0,0,0,38.09,56.81,-9,-9,1.666666666666667,2,3,0,0,2,8,4,0,649,-144045.88,0,0,0,1357.2019 -11506,14206,25600,25601,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,1,-3,-68.119659,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53,54,8,2,3,0,0,0,8,3,0,1649,340171.59,0,197259.06,0,3504.3486 -11506,14206,25601,25600,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.0742846,8.1936569,0,1,3,85.38131,-9,-9,-9,2019,9,0,40,0,1,1,0,9.2335196,9.2335196,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,2,3,0,0,1,8,3,0,1649,340171.59,0,197259.06,0,3504.3486 -11507,14207,25602,25603,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.6216135,8.5796757,0,21,6,19.093388,0,2,2,2019,11,1,50,48,1,1,0,12.203671,12.203671,0,0,0,0,0,1,1,0,0,0,35.49,62.14,54.21,49.46,6.666666666666667,1,1,0,0,10,2,5,1,439,1130782.5,370332.63,415352.81,11362.378,4252.2935 -11507,14207,25603,25602,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.4925833,8.2978172,0,21,-6,76.179817,0,-9,-9,2019,7,0,38,38,1,0,0,15.539225,15.539225,0,0,0,0,2,1,1,0,0,0,54.21,49.46,35.49,62.14,8.333333333333334,1,1,0,0,10,2,5,1,439,1130782.5,370332.63,415352.81,11362.378,4252.2935 -11507,14208,25604,-9,25603,25602,1,1,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1047.0217,1,1,2,2019,3,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.99,46.83,-9,-9,10,1,1,0,0,0,2,2,1,1288,251991.47,0,0,0,0 -11508,14209,25605,25607,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,9.0910473,8.8506336,0,6,8,-93.957115,0,-9,-9,2019,15,4,50,48,1,4,0,17.749338,17.749338,0,0,0,0,0,1,1,0,0,0,44.94,49.91,25.33,51.12,3.333333333333333,1,1,0,0,8,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 -11508,14209,25606,-9,25607,25605,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.0034,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 -11508,14209,25607,25605,-9,-9,1,0,37,0,2,0,1,1,-9,0,1,8.1608372,8.1018229,0,6,-8,96.768158,0,2,1,2019,17,7,36,30,1,7,0,12.329559,12.329559,0,0,0,0,0,1,1,0,0,0,25.33,51.12,44.94,49.91,3.333333333333333,1,1,0,0,8,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 -11508,14209,25608,-9,25607,25605,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5944,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,639,409589.91,93406.672,313086.97,123312.64,5175.5972 -11509,14210,25609,25610,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,8.0682545,8.2269163,0,5,-3,-128.32785,0,-9,-9,2019,11,0,30,21,1,0,0,12.613268,12.613268,0,0,0,0,14.5,1,1,0,0,0,49,59,45.43,45.17,6.666666666666667,1,1,0,0,8,12,4,1,473.33334,183174.47,-73703.344,396473.69,192392.41,3201.4631 -11509,14210,25610,25609,-9,-9,1,1,33,0,1,0,2,2,-9,0,5,8.0642881,8.3223352,0,5,3,92.958168,-9,3,3,2019,10,2,41,0,1,2,0,8.4023981,8.4023981,0,0,0,0,0,1,1,0,4.6099443,0,45.43,45.17,49,59,1.666666666666667,1,1,0,0,10,12,4,1,473.33334,183174.47,-73703.344,396473.69,192392.41,3201.4631 -11509,14210,25611,-9,25609,25610,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.01794,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,473.33334,183174.47,-73703.344,396473.69,192392.41,3201.4631 -11510,14211,25612,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.6365209,7.8626113,0,0,-938.05035,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3353562,7.3113537,56.92,49.39,-9,-9,10,1,1,0,0,0,10,3,1,360,492966.91,511767.75,0,0,1966.861 -11511,14212,25613,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5420618,9.5007992,0,0,0,-1032.9025,0,2,2,2019,7,0,42,42,1,0,0,37.373535,37.373535,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,4,6,5,1,415,480119.56,77625.922,190251.5,73398.313,5181.2935 -11512,14213,25614,25616,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.9624825,7.9638133,0,29,-11,100.2854,0,2,-9,2019,8,0,31,30,1,0,0,10.441958,10.441958,0,0,0,0,2,1,0,1,0,0,57.06,57.76,51,49,8.333333333333334,1,1,0,0,12,5,3,1,602.33331,507863,158402.97,290851.03,0,1761.1215 -11512,14213,25615,-9,25614,25616,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1066.7769,-9,1,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,4.7870626,0,56.59,49.89,-9,-9,10,1,1,0,1,1,5,3,1,602.33331,507863,158402.97,290851.03,0,1761.1215 -11512,14213,25616,25614,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.8002715,6.5135956,0,9,11,-41.054424,0,-9,-9,2019,10,0,30,30,1,1,0,3.1241863,3.1241863,0,0,0,0,0,1,0,1,3.5683305,0,51,49,57.06,57.76,7,1,1,0,0,1,5,3,1,602.33331,507863,158402.97,290851.03,0,1761.1215 -11512,14214,25617,-9,25614,25616,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1096.996,1,1,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,0,1,0,0,44.26,59.43,-9,-9,10,1,1,0,0,3,5,1,1,722,0,0,0,0,1203.5138 -11513,14215,25618,25620,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,9.0315456,9.0759611,0,23,-3,6.3560514,0,2,1,2019,7,0,37,40,1,0,0,30.263025,30.263025,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,12,12,5,0,1461.6666,1881433.4,45475.844,513482.75,319478.13,7228.835 -11513,14215,25619,-9,25620,25618,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-992.61737,-9,1,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,61.66,-9,-9,8.333333333333334,1,1,0,0,12,12,5,0,1461.6666,1881433.4,45475.844,513482.75,319478.13,7228.835 -11513,14215,25620,25618,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,9.2351589,9.0344639,0,23,3,118.52374,0,1,2,2019,7,0,37,43,1,0,0,25.539469,25.539469,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,8.333333333333334,1,1,0,0,11,12,5,0,1461.6666,1881433.4,45475.844,513482.75,319478.13,7228.835 -11514,14216,25621,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.0485063,7.3435674,5.8147578,0,0,-898.8233,0,3,2,2019,16,4,23,22,1,4,0,10.870483,10.870483,0,0,0,0,0,1,1,0,3.7786045,5.6459041,45.07,38.73,-9,-9,3.333333333333333,1,1,0,0,10,4,3,0,653,-297819.31,0,138519.61,0,982.05298 -11515,14217,25622,25623,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,34,3,0,-9,3,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,16.04,23.99,27.64,19.88,0,1,1,0,1,0,13,1,0,470,-13534.953,0,0,0,2013.2235 -11515,14217,25623,25622,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,34,-3,0,-9,3,3,2019,14,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,19.88,16.04,23.99,0,1,1,0,1,0,13,1,0,470,-13534.953,0,0,0,2013.2235 -11516,14218,25624,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7257614,8.6158028,0,0,0,-956.3233,0,-9,-9,2019,7,0,38,37,1,0,0,16.747564,16.747564,0,0,0,0,0,1,1,0,4.5338259,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,1743,-177098.13,111175.67,0,0,2061.2314 -11517,14219,25625,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,6.9956813,6.9527812,0,0,-986.94501,0,3,2,2019,3,0,0,13,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7363291,7.2854762,54.41,39.63,-9,-9,10,1,1,0,0,11,11,3,1,482,350542.16,420215.28,166220.92,0,1152.8448 -11518,14220,25626,25627,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,7.9667373,8.2758074,0,28,1,-16.096249,0,-9,-9,2019,9,0,45,45,1,1,0,11.143074,11.143074,0,0,0,0,0,1,1,0,3.930855,0,52,55,57.16,56.15,8,2,3,0,0,1,9,3,1,387.5,730495.75,116709.92,512165.44,64770.93,2212.8489 -11518,14220,25627,25626,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.7451897,6.8894563,0,28,-1,86.026794,0,3,3,2019,10,0,25,26,1,0,0,4.3621354,4.3621354,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,55,8.333333333333334,2,3,0,0,10,9,3,1,387.5,730495.75,116709.92,512165.44,64770.93,2212.8489 -11518,14221,25628,-9,25627,25626,1,0,23,0,2,0,1,1,1,0,4,8.1612911,8.2316971,0,0,0,-938.59589,-9,2,2,2019,21,9,41,0,1,9,1,12.673354,12.673354,0,0,0,0,0,1,1,0,0,0,33,58.77,-9,-9,5,2,3,0,0,3,9,4,1,160,-420047.09,3115.6243,0,0,789.35425 -11519,14222,25629,25630,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,8.086587,7.9418254,59,1,-92.12381,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,14.3354,5.8695989,0,0,1,1,0,4.740509,7.5334673,54.78,14.45,53,44,8.333333333333334,1,1,0,0,0,9,3,1,1069,614931.44,348038.81,461924.81,0,2871.4673 -11519,14222,25630,25629,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,4.8293767,5.1242003,59,-1,-71.264023,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.8850389,4.6683435,53,44,54.78,14.45,8,1,1,0,0,0,9,3,1,1069,614931.44,348038.81,461924.81,0,2871.4673 -11520,14223,25631,-9,25632,25633,1,1,22,0,0,0,2,2,-9,0,3,7.8637023,7.6143756,0,0,0,-1050.7443,0,2,2,2019,10,0,40,40,1,0,1,9.8631887,9.8631887,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,137,555536.38,54555.512,0,0,597.84912 -11520,14224,25632,25633,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1138039,8.0274067,0,7,-2,13.660961,0,3,3,2019,10,0,37,37,1,0,0,7.5870514,7.5870514,0,0,0,0,7,0,0,0,0,0,50.34,56.4,45.4,42.99,8.333333333333334,1,1,0,0,8,9,4,1,1096.5,2676447,1715846.5,341707.5,0,2498.8428 -11520,14224,25633,25632,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4291334,8.4158964,0,7,2,63.63068,0,2,2,2019,17,6,40,40,1,6,0,10.845608,10.845608,0,0,0,0,0,0,0,0,0,0,45.4,42.99,50.34,56.4,8.333333333333334,1,1,0,0,8,9,4,1,1096.5,2676447,1715846.5,341707.5,0,2498.8428 -11521,14225,25634,25635,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.7454424,7.8138285,0,1,2,14.908191,-9,3,3,2019,19,7,40,0,1,7,0,7.7205749,7.7205749,0,0,0,0,0,1,1,0,0,0,47.35,24.43,18.79,46.9,3.333333333333333,1,1,0,1,8,4,3,1,747,10174.729,182398.91,187508.28,161892.3,1881.554 -11521,14225,25635,25634,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,6.6815677,7.1718493,0,1,-2,32.480034,-9,3,3,2019,18,6,20,0,1,6,0,6.4983864,6.4983864,0,0,0,0,0,1,1,0,0,0,18.79,46.9,47.35,24.43,3.333333333333333,1,1,0,1,6,4,3,1,747,10174.729,182398.91,187508.28,161892.3,1881.554 -11522,14226,25636,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9684424,7.4368296,0,0,-1041.4991,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9346097,7.7996163,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,698,685878.75,139537.81,419910.16,0,1854.2971 -11523,14227,25637,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0594778,8.5400352,8.059761,0,0,-918.40118,0,2,2,2019,10,0,22,42,1,0,0,22.48756,22.48756,0,0,0,0,0,0,0,0,5.265893,8.3762512,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,255,758681.56,670012,141870.58,0,2786.2549 -11524,14228,25638,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.2098112,6.7097902,0,0,-917.42468,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,2.932822,6.7213044,41.96,32.38,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,1424,349684.84,246667,100793.75,0,1535.0253 -11525,14229,25639,25640,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,8.7072306,8.498436,46,10,131.51334,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1512523,8.9679756,63.83,43.62,57.16,56.15,8.333333333333334,1,1,0,0,1,7,5,1,101,2319324.5,228340.84,977007,0,4895.8564 -11525,14229,25640,25639,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.2060375,8.4443789,6.744915,43,-10,54.416912,0,3,3,2019,9,0,37,37,1,0,0,12.032701,12.032701,0,0,0,0,0,1,1,0,3.7252038,7.4830341,57.16,56.15,63.83,43.62,8.333333333333334,1,1,0,0,11,7,5,1,101,2319324.5,228340.84,977007,0,4895.8564 -11526,14230,25641,25643,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.1984501,8.0995035,0,6,5,30.0933,0,2,2,2019,6,0,40,40,1,0,0,9.4084692,9.4084692,0,0,0,0,0,0,0,0,2.5201738,0,45.81,58.99,50.14,53.97,8.333333333333334,1,1,0,0,9,11,4,1,803.66669,636780.56,162929.69,193158.81,65106.594,1671.4585 -11526,14230,25642,-9,25643,25641,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-935.67542,-9,2,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.42,47.2,-9,-9,5,1,1,0,0,1,11,4,1,803.66669,636780.56,162929.69,193158.81,65106.594,1671.4585 -11526,14230,25643,25641,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,6.7783709,6.6080842,0,6,-5,41.672184,0,-9,-9,2019,10,0,20,5,1,0,0,3.8110013,3.8110013,0,0,0,0,0,0,0,0,0,0,50.14,53.97,45.81,58.99,8.333333333333334,1,1,0,0,4,11,4,1,803.66669,636780.56,162929.69,193158.81,65106.594,1671.4585 -11527,14231,25644,25645,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.5812016,7.8412552,6.3764973,36,-21,-67.442825,0,-9,-9,2019,25,12,20,20,1,12,0,12.176291,12.176291,0,0,0,0,5.48,1,1,0,2.855315,6.4429502,27.12,30.96,40.58,43.59,3.333333333333333,1,1,0,0,10,9,3,1,335.5,740709.75,20278.822,695665.5,0,2152.4146 -11527,14231,25645,25644,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.7887802,6.9002066,36,21,80.527481,0,-9,-9,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,2,1,1,0,5.8675323,6.7202358,40.58,43.59,27.12,30.96,5,1,1,0,0,0,9,3,1,335.5,740709.75,20278.822,695665.5,0,2152.4146 -11528,14232,25646,-9,25648,25647,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.1934,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 -11528,14232,25647,25648,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.4128942,8.7163363,0,8,4,-83.905663,0,3,2,2019,9,0,40,45,1,0,0,16.710312,16.710312,0,0,0,0,0,1,1,0,0,0,57.16,56.15,66.2,38.34,1.666666666666667,1,1,0,0,8,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 -11528,14232,25648,25647,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.6194391,7.4313688,0,8,-4,-32.251629,0,-9,-9,2019,7,0,18,19,1,0,0,20.643534,20.643534,0,0,0,0,0,1,1,0,0,0,66.2,38.34,57.16,56.15,8.333333333333334,1,1,0,0,8,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 -11528,14232,25649,-9,25648,25647,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.698,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,522,399004.5,261694.28,351003.09,208087.67,3766.6873 -11529,14233,25650,25651,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,7.02595,6.4909592,0,6,4,-88.490616,0,1,3,2019,13,2,5,7,1,2,0,25.37546,25.37546,0,0,0,0,0,0,0,0,7.5812807,0,39.44,60.23,39.31,63.19,8.333333333333334,1,1,0,0,13,12,4,1,754.5,76569.695,76869.789,0,0,4076.6333 -11529,14233,25651,25650,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.8328285,8.7822056,0,6,-4,-120.03127,0,-9,-9,2019,8,1,34,33,1,1,0,20.434175,20.434175,0,0,0,0,0,0,0,0,.069380477,0,39.31,63.19,39.44,60.23,8.333333333333334,1,1,0,0,2,12,4,1,754.5,76569.695,76869.789,0,0,4076.6333 -11530,14234,25652,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1043.3363,0,2,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,7,1,0,1,0,0,25.43,29.19,-9,-9,1.666666666666667,1,1,0,1,0,9,1,1,681,-34618.336,0,0,0,358.85754 -11531,14235,25653,25654,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.8074579,6.6745052,42,-6,91.046555,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.6573359,6.9983497,54.52,49.27,53.71,46.8,5,1,1,0,0,6,7,3,1,1002.5,1082322.3,658070.81,238979,0,1606.2349 -11531,14235,25654,25653,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.4758587,7.395699,42,6,-68.15332,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9843776,7.414228,53.71,46.8,54.52,49.27,5,1,1,0,0,0,7,3,1,1002.5,1082322.3,658070.81,238979,0,1606.2349 -11532,14236,25655,25656,25658,25659,1,0,33,0,3,0,2,2,-9,0,4,8.0739603,7.9319034,0,16,-6,36.133171,0,2,3,2019,7,0,43,20,1,0,0,8.1768665,8.1768665,0,0,0,0,0,1,1,0,0,0,55.36,54.24,57.16,56.15,10,1,1,0,0,6,11,4,1,1088.3334,176025.39,-50668.754,0,0,3539.5647 -11532,14236,25656,25655,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.4042864,8.281559,0,10,6,20.016844,-9,-9,-9,2019,6,0,40,0,1,0,0,13.952234,13.952234,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.36,54.24,8.333333333333334,1,1,0,0,12,11,4,1,1088.3334,176025.39,-50668.754,0,0,3539.5647 -11532,14236,25657,-9,25655,25656,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-881.20581,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1088.3334,176025.39,-50668.754,0,0,3539.5647 -11532,14237,25658,25659,-9,-9,1,0,54,0,3,0,2,2,-9,0,5,8.188098,8.5089397,0,36,-4,-83.146385,0,2,2,2019,8,0,45,49,1,0,0,10.121274,10.121274,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,11,11,3,1,184.5,517420.03,154617.94,287293.94,0,1768.1816 -11532,14237,25659,25658,-9,-9,1,1,58,0,3,0,3,3,-9,0,3,0,6.4027786,6.1094112,36,4,11.204983,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.849072,6.3330936,52,54.51,57.06,57.76,10,1,1,0,0,6,11,3,1,184.5,517420.03,154617.94,287293.94,0,1768.1816 -11533,14238,25660,25662,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.3257332,8.3235846,0,8,-7,70.859741,0,2,1,2019,11,2,30,25,1,2,0,18.048746,18.048746,0,0,0,0,0,0,0,0,0,0,46.08,57.2,57.33,53.46,8.333333333333334,1,1,0,0,9,8,5,1,808.33331,824951,246258.3,601790.63,77876.719,5355.4902 -11533,14238,25661,-9,25660,25662,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-931.22931,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,808.33331,824951,246258.3,601790.63,77876.719,5355.4902 -11533,14238,25662,25660,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.4776192,9.3635387,0,8,7,-14.37567,0,-9,-9,2019,9,0,35,37,1,0,0,32.647774,32.647774,0,0,0,0,0,0,0,0,3.3696434,0,57.33,53.46,46.08,57.2,8.333333333333334,1,1,0,0,7,8,5,1,808.33331,824951,246258.3,601790.63,77876.719,5355.4902 -11534,14239,25663,25666,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,9.1341734,9.2895508,0,18,1,9.4390764,0,2,3,2019,11,0,35,35,1,0,0,27.472786,27.472786,0,0,0,0,0,0,0,0,0,0,48.93,50.55,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 -11534,14239,25664,-9,25666,25663,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.05933,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 -11534,14239,25665,-9,25666,25663,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1132.0408,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 -11534,14239,25666,25663,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.9316759,9.3554163,0,19,-1,-88.768814,0,2,2,2019,6,0,46,43,1,0,0,18.216969,18.216969,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.93,50.55,10,1,1,0,0,11,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 -11534,14239,25667,-9,25666,25663,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.7388,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,404.79999,1376455.1,1046155.6,328130.03,71898.727,5709.9087 -11535,14240,25668,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.4696159,7.6166134,0,0,0,-862.14886,0,3,3,2019,12,0,30,30,1,0,0,6.9555392,6.9555392,0,0,0,0,0,0,0,0,0,0,51.64,50.48,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,223,728159.31,612280.13,229677.33,0,1263.3971 -11536,14241,25669,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.7472014,8.2616491,0,0,-1005.2971,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8022571,8.0909348,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,374,1175706.1,640257.94,231968.03,0,2376.9753 -11537,14242,25670,25671,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,8.2470303,8.4813967,8,3,-110.85935,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,6.9282613,7.9216757,55.36,41.04,35.87,21.86,8.333333333333334,1,1,0,0,1,5,3,1,930.5,1200070.4,1010806.1,283669.19,0,3410.9463 -11537,14242,25671,25670,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,8,-3,-43.065666,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,34.149757,0,0,1,1,0,4.943295,0,35.87,21.86,55.36,41.04,5,1,1,0,0,0,5,3,1,930.5,1200070.4,1010806.1,283669.19,0,3410.9463 -11538,14243,25672,25673,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.6263962,9.9021244,0,42,-2,-54.189251,0,2,2,2019,10,0,40,40,1,1,0,45.575172,45.575172,0,0,0,0,0,0,0,0,0,0,51,48,57.16,56.15,7,1,1,0,0,1,5,5,1,177.5,1160850,620605.38,202649.3,39126.219,6033.3628 -11538,14243,25673,25672,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.6657481,7.9736395,0,42,2,-22.980537,0,2,2,2019,6,0,28,37,1,0,0,9.4151134,9.4151134,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,48,8.333333333333334,1,1,0,0,9,5,5,1,177.5,1160850,620605.38,202649.3,39126.219,6033.3628 -11539,14244,25674,-9,25676,-9,1,1,19,0,2,0,3,3,-9,0,4,8.1683578,8.0454035,0,0,0,-953.51184,0,2,-9,2019,10,0,40,35,1,2,1,11.557348,11.557348,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,4,0,309,-136343.31,10104.231,0,0,2460.2676 -11539,14245,25675,25676,-9,-9,1,1,32,0,2,0,1,1,-9,0,4,7.9148397,8.2472878,0,4,-3,-4.51967,0,1,1,2019,11,0,49,51,1,0,0,7.9895926,7.9895926,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.28,62.6,1.666666666666667,2,3,0,1,6,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 -11539,14245,25676,25675,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,6.453032,6.1479192,0,4,3,-34.062054,0,-9,-9,2019,14,3,16,16,1,3,0,4.2836061,4.2836061,0,0,0,0,0,1,1,0,0,0,46.28,62.6,45.91,59.89,8.333333333333334,1,1,0,1,8,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 -11539,14245,25677,-9,25676,25675,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.704,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 -11539,14245,25678,-9,25676,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1032.4403,-9,2,-9,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,3,0,1401.5,109143.12,16017.04,179120.2,99938.25,2612.0996 -11540,14246,25679,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.18501,8.6146469,0,0,0,-972.53802,0,2,2,2019,9,0,42,48,1,1,0,10.375003,10.375003,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,9,7,4,1,1244,-20995.471,0,0,0,1555.9102 -11541,14247,25680,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-940.54846,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,11,1,0,435,-28677.244,0,0,0,1498.9595 -11542,14248,25681,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.7479682,6.802949,0,0,-1083.7841,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5746331,6.7278323,60.12,54.8,-9,-9,10,1,1,0,0,7,7,2,1,1132,370015.41,288376.53,0,0,1269.2703 -11543,14249,25682,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2504711,8.0235214,0,0,0,-996.09241,0,3,2,2019,19,7,42,37,1,7,0,9.9362631,9.9362631,0,0,0,0,0,1,1,0,2.4680269,0,35.93,49.57,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,854,1291538.5,490393.97,0,0,1651.6531 -11544,14250,25683,25684,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.2630596,8.2240114,21,-4,87.466919,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0156393,8.4564714,57.06,57.76,52.51,54.26,8.333333333333334,1,1,0,0,8,5,4,1,295.5,4737791,3554476.5,543552.25,0,3332.1787 -11544,14250,25684,25683,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.6925735,7.5597897,17,4,-22.596943,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1901264,7.7926102,52.51,54.26,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,295.5,4737791,3554476.5,543552.25,0,3332.1787 -11545,14251,25685,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1072.5953,0,3,3,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,34.45,31.91,-9,-9,1.666666666666667,1,1,0,0,0,4,1,1,341,97367.695,0,0,0,819.26001 -11546,14252,25686,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.5813313,5.8942218,0,0,-835.27557,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8589215,46.77,49.78,-9,-9,10,1,1,0,0,0,13,2,1,426,168165.08,0,0,0,1073.7267 -11547,14253,25687,-9,25688,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.7858377,6.5402274,0,0,-997.67212,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1706309,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,2698,668137.75,151610,115450.96,0,403.88583 -11547,14254,25688,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.6458526,6.7321672,0,0,-1000.6553,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,1.9023707,11.483871,0,0,1,1,0,3.7374728,6.4492989,34.77,23.4,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,365,51674.621,54060.16,151833.53,0,902.13202 -11548,14255,25689,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,7.4468856,7.6287346,0,0,-1019.8534,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,2.1418376,0,0,1,1,0,5.0019317,7.745213,48.05,35.6,-9,-9,5,1,1,0,0,0,6,3,1,598,52524.332,18125.326,29015.977,0,1094.5201 -11549,14256,25690,-9,25692,25693,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.4575,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 -11549,14256,25691,-9,25692,25693,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.6491,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 -11549,14256,25692,25693,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.3477163,7.5921755,0,6,-1,96.373734,0,2,2,2019,20,8,30,16,1,8,0,8.3691473,8.3691473,0,0,0,0,0,1,1,0,0,0,39.73,57.61,51.83,57.2,8.333333333333334,1,1,0,0,7,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 -11549,14256,25693,25692,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,7.8137097,7.864635,0,6,1,.90851939,0,-9,-9,2019,14,3,42,37,1,3,0,7.3705454,7.3705454,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.73,57.61,8.333333333333334,1,1,0,0,7,11,3,1,615.25,-32954.762,-15140.617,0,0,2316.0596 -11550,14257,25694,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7864523,8.7688456,0,0,0,-1090.4108,0,1,1,2019,12,0,40,45,1,0,0,13.922063,13.922063,0,0,0,0,0,0,0,0,0,0,48.19,54.86,-9,-9,6.666666666666667,2,3,0,0,6,8,5,0,123,16910.025,0,0,0,2076.1526 -11551,14258,25695,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.605958,8.614397,0,0,0,-1051.8507,0,2,3,2019,11,3,41,40,1,3,0,17.476294,17.476294,0,0,0,0,0,1,1,0,2.2799003,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,448,12997.085,267802.38,105801.05,89488.797,2412.5366 -11552,14259,25696,25697,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.8769612,7.7886896,8,-1,-65.446587,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5036685,7.9420285,55.79,52.62,34.73,60.93,8.333333333333334,1,1,0,0,0,11,3,1,224.5,989852.06,1057611,272339.81,43283.984,3070.6423 -11552,14259,25697,25696,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.3038077,5.4890137,8,1,140.97966,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.7703938,5.5470333,34.73,60.93,55.79,52.62,6.666666666666667,1,1,0,0,0,11,3,1,224.5,989852.06,1057611,272339.81,43283.984,3070.6423 -11553,14260,25698,25699,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3678298,6.9660325,45,-3,-29.821629,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9224968,7.1582808,59.53,56.44,29.97,48.61,10,1,1,0,0,0,4,5,0,967,2039729.8,810919.06,389387.38,0,5305.3652 -11553,14260,25699,25698,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,8.6898937,8.8748465,45,3,11.857388,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,.78081816,8.7712803,29.97,48.61,59.53,56.44,1.666666666666667,1,1,0,0,1,4,5,0,967,2039729.8,810919.06,389387.38,0,5305.3652 -11554,14261,25700,25701,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.4240837,7.8063145,0,6,-2,89.704979,0,2,1,2019,11,0,40,40,1,2,0,13.234005,13.234005,0,0,0,0,0,0,0,0,0,0,48,56,23.63,58.32,7,4,5,0,0,1,8,4,1,897.5,54090.578,0,0,0,2740.5767 -11554,14261,25701,25700,-9,-9,1,1,33,0,0,0,1,1,-9,0,2,7.7509141,7.7690721,0,11,2,64.035522,0,-9,-9,2019,21,7,40,45,1,7,0,6.8228645,6.8228645,0,0,0,0,0,0,0,0,0,0,23.63,58.32,48,56,3.333333333333333,1,1,0,1,7,8,4,1,897.5,54090.578,0,0,0,2740.5767 -11555,14262,25702,25703,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.9940634,9.0075703,6.4668365,38,1,-73.2117,0,2,3,2019,6,0,2,30,1,0,0,365.10419,365.10419,0,0,0,0,0,0,0,0,6.7806444,6.8786025,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,9,5,5,1,1860,655952.88,500589.38,141320.13,54060.188,3777.1821 -11555,14262,25703,25702,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.2336607,7.197649,5.2783732,38,-1,-87.332489,0,3,2,2019,8,0,25,21,1,0,0,7.5667048,7.5667048,0,0,0,0,0,0,0,0,4.1975961,5.1643434,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,1860,655952.88,500589.38,141320.13,54060.188,3777.1821 -11556,14263,25704,25705,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,4.8972993,7.4129362,7.0863895,37,12,-73.965469,0,3,2,2019,13,3,30,38,1,3,0,.56937927,.56937927,0,0,0,0,0,1,1,0,1.7508045,6.8188248,43.72,47.42,46.05,33,3.333333333333333,1,1,0,0,13,2,4,1,565.5,-29527.531,0,214302.56,0,3677.125 -11556,14263,25705,25704,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.5530472,8.3950872,0,37,-12,67.394073,0,3,3,2019,13,4,45,9,1,4,0,10.952704,10.952704,0,0,0,0,2,1,1,0,0,0,46.05,33,43.72,47.42,8.333333333333334,1,1,0,0,13,2,4,1,565.5,-29527.531,0,214302.56,0,3677.125 -11557,14264,25706,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,7.2945414,7.226522,0,0,0,-956.68622,0,2,2,2019,12,2,20,20,1,2,0,8.3258505,8.3258505,0,0,0,0,71.5,1,1,0,0,0,46.56,26.33,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,2788,955973.69,555750.19,260301.47,113843.37,618.39551 -11558,14265,25707,25708,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.4654713,8.1705322,0,8,-2,84.168465,0,1,1,2019,6,0,36,36,1,0,0,12.23852,12.23852,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,9,9,5,1,1000,2620200,1838338.9,379243.25,14851.101,4858.0332 -11558,14265,25708,25707,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.227561,9.2040691,0,8,2,-51.80014,0,3,2,2019,8,0,53,63,1,0,0,25.729574,25.729574,0,0,0,0,0,0,0,0,4.2226033,0,52,54.51,57.06,57.76,6.666666666666667,1,1,0,0,9,9,5,1,1000,2620200,1838338.9,379243.25,14851.101,4858.0332 -11558,14266,25709,-9,25707,25708,1,1,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1145.53,-9,1,1,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,462,0,0,0,0,0 -11559,14267,25710,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,5.8790607,5.6057858,0,0,-966.2951,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,3.6656079,8.7327843,14.578437,0,1,1,0,2.4006822,5.8507056,53.24,26.04,-9,-9,5,1,1,0,0,0,6,2,1,772,437051.94,205900.48,0,0,533.42651 -11560,14268,25711,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.3076816,6.6742973,0,0,-1046.4272,0,2,1,2019,8,0,0,35,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2635193,6.5177903,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,11,1,2,1,456,533668.63,90714.211,40514.133,0,1005.3738 -11561,14269,25712,25713,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3810177,8.6645851,0,11,0,-44.013664,0,2,3,2019,11,0,33,33,1,0,0,25.195143,25.195143,0,0,0,0,0,1,1,0,4.8368196,0,44.19,58.01,52.8,43.61,6.666666666666667,1,1,0,0,13,4,5,1,212.5,1488546.4,1279587,206578.52,0,3180.4214 -11561,14269,25713,25712,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.6866722,7.7507863,11,0,-9.3169279,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.0469584,7.6311316,52.8,43.61,44.19,58.01,8.333333333333334,1,1,0,0,9,4,5,1,212.5,1488546.4,1279587,206578.52,0,3180.4214 -11561,14270,25714,-9,25712,25713,1,1,29,0,0,0,1,1,-9,1,4,0,3.5772421,4.1361613,0,0,-865.3913,0,1,1,2019,17,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,3.4606094,0,21.16,65.93000000000001,-9,-9,6.666666666666667,1,1,1,0,0,4,2,1,701,87924.633,0,0,0,139.28403 -11562,14271,25715,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.712739,5.6549883,0,0,-978.58051,0,3,2,2019,8,2,0,0,4,2,0,0,0,1,0,13.087996,0,0,1,1,0,6.3295107,5.6790929,65.12,26.79,-9,-9,10,1,1,0,0,0,12,2,0,274,80041.813,3060.8755,160735.89,0,906.25446 -11563,14272,25716,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,2,0,6.4067283,6.1841235,0,0,-1017.0903,-9,2,-9,2019,15,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,5.7594252,0,35.42,44.83,-9,-9,8.333333333333334,4,2,0,0,3,5,2,0,475,193282.66,0,0,0,132.50677 -11563,14273,25717,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,1,0,7.1524959,6.9441829,0,0,-963.52081,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,7.1925216,0,38.17,45,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,225,-89316.352,0,0,0,1071.1249 -11563,14274,25718,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,6.7910571,7.156817,0,0,-1014.7421,-9,-9,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.7742472,0,54.2,57.49,-9,-9,10,1,1,0,0,0,5,2,0,2294,130107.66,0,0,0,1634.0549 -11563,14275,25719,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,5,0,8.5759516,8.3610296,0,0,-887.81812,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,8.2869778,0,55.31,54.62,-9,-9,10,1,1,0,0,1,5,4,0,1388,-48474.43,17031.574,0,0,2165.4202 -11564,14276,25720,25723,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.0787163,7.9677629,0,8,-2,-20.559397,0,2,2,2019,11,0,18,13,1,1,0,24.006124,24.006124,0,0,0,0,0,1,1,0,0,0,49,56,49.87,50.46,7,1,1,0,0,1,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 -11564,14276,25721,-9,25720,25723,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.5858,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 -11564,14276,25722,-9,25720,25723,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-962.88623,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 -11564,14276,25723,25720,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,9.7258263,9.6464605,0,18,2,-6.0788326,0,2,1,2019,8,0,50,45,1,0,0,31.907467,31.907467,0,0,0,0,0,1,1,0,6.1333046,0,49.87,50.46,49,56,8.333333333333334,1,1,0,0,11,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 -11564,14276,25724,-9,25720,25723,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1010.8583,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,3345,1092965.4,823313.5,287114.63,203709.05,9730.8711 -11565,14277,25725,25726,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.2923341,6.0573168,55,-1,50.820965,0,3,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7123985,6.1032381,67.57000000000001,24.02,61.26,51.57,10,1,1,0,0,11,9,4,1,214,1411755,504434.06,173480.55,0,4438.7764 -11565,14277,25726,25725,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.3945532,8.3080711,55,1,56.292355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7245712,8.4274826,61.26,51.57,67.57000000000001,24.02,10,1,1,0,0,0,9,4,1,214,1411755,504434.06,173480.55,0,4438.7764 -11566,14278,25727,25728,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,5.8110628,5.5680261,0,10,-6,19.67592,0,-9,-9,2019,13,1,6,20,1,1,0,6.2672729,6.2672729,0,0,0,0,0,0,0,0,0,0,50.66,42.98,57.33,53.46,8.333333333333334,1,1,0,0,10,9,4,1,466,2228257.5,1542220.5,640668.19,0,2062.4097 -11566,14278,25728,25727,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4012852,8.4452171,0,10,6,-45.083981,0,3,3,2019,11,0,40,40,1,0,0,15.093107,15.093107,0,0,0,0,0,0,0,0,3.4654548,0,57.33,53.46,50.66,42.98,8.333333333333334,1,1,0,0,11,9,4,1,466,2228257.5,1542220.5,640668.19,0,2062.4097 -11567,14279,25729,25730,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.0450449,8.2102566,5.8571181,19,7,155.28683,0,3,3,2019,6,0,40,44,1,0,0,8.3793955,8.3793955,0,0,0,0,0,0,0,0,0,6.1747222,57.16,56.15,45.32,61.53,10,1,1,0,0,9,5,4,1,776.5,607918.63,552063.25,88510.555,21387.307,2375.1909 -11567,14279,25730,25729,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.1737823,7.5558805,5.6276689,24,-7,-38.810074,0,3,-9,2019,9,1,22,28,1,1,0,5.3792996,5.3792996,0,0,0,0,0,0,0,0,0,5.9966488,45.32,61.53,57.16,56.15,8.333333333333334,1,1,0,0,9,5,4,1,776.5,607918.63,552063.25,88510.555,21387.307,2375.1909 -11568,14280,25731,25733,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.5504594,7.6606374,0,19,-10,15.289639,0,2,2,2019,12,2,27,34,1,2,0,8.3554668,8.3554668,0,0,0,0,0,1,1,0,3.1595516,0,43.33,45.83,54.37,54.8,8.333333333333334,1,1,0,0,8,9,4,1,888.66669,439286.94,125386.34,306894,156546.61,2940.1191 -11568,14280,25732,-9,25731,25733,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.7217,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,-9,0,0,9,4,1,888.66669,439286.94,125386.34,306894,156546.61,2940.1191 -11568,14280,25733,25731,-9,25734,1,1,47,0,1,0,2,2,-9,0,3,8.519618,8.4257813,0,5,10,-51.169216,0,3,3,2019,7,0,40,40,1,0,0,13.84712,13.84712,0,0,0,0,14.5,1,1,0,2.7199121,0,54.37,54.8,43.33,45.83,8.333333333333334,1,1,0,0,8,9,4,1,888.66669,439286.94,125386.34,306894,156546.61,2940.1191 -11568,14281,25734,-9,-9,-9,1,1,82,0,1,0,3,3,-9,0,3,0,0,0,0,0,-885.58881,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,1.3018868,0,0,1,1,0,3.7089896,0,55,45,-9,-9,7,1,1,0,0,0,9,1,1,1013,241079.34,0,0,0,313.09024 -11568,14282,25735,-9,25731,25733,1,0,18,0,1,0,2,2,1,0,4,7.3026309,7.3278008,0,0,0,-1082.5044,-9,2,2,2019,6,0,50,0,1,0,1,3.1169891,3.1169891,0,0,0,0,0,1,1,0,1.0374267,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,717,-218879.14,0,0,0,189.96687 -11569,14283,25736,25737,-9,-9,1,1,59,0,2,0,2,2,-9,0,4,7.6779876,7.8822665,0,24,2,-17.076447,0,3,3,2019,11,0,54,-9,1,0,0,4.8288603,4.8288603,0,0,0,0,2,1,1,0,1.1425117,0,41.12,52.77,40.53,44.95,8.333333333333334,2,3,0,0,8,8,4,1,780.5,293692.56,230990.91,454663.13,183387.72,3458.7307 -11569,14283,25737,25736,-9,-9,1,0,57,0,2,0,2,2,-9,0,3,8.6429129,8.70576,0,24,-2,12.180003,0,2,2,2019,9,0,38,38,1,0,0,20.38345,20.38345,0,0,0,0,2,1,1,0,0,0,40.53,44.95,41.12,52.77,8.333333333333334,2,3,0,0,12,8,4,1,780.5,293692.56,230990.91,454663.13,183387.72,3458.7307 -11570,14284,25738,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,5.4570918,5.3190145,0,0,-987.55139,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.2394485,66.64,46.59,-9,-9,10,1,1,0,0,0,2,2,1,451,-113465.5,0,0,0,600.15649 -11571,14285,25739,25740,-9,-9,1,1,43,0,0,0,2,2,-9,0,1,0,0,0,20,-7,-81.735107,0,-9,-9,2019,35,12,0,38,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,25.18,21.31,18.99,38.56,0,1,1,1,1,5,4,3,0,499,275848,18749.506,0,0,1285.3462 -11571,14285,25740,25739,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.9514461,7.8617525,0,21,7,-20.699186,0,3,3,2019,32,12,38,43,1,12,0,6.9592643,6.9592643,0,0,0,0,0,0,0,0,0,0,18.99,38.56,25.18,21.31,0,1,1,0,1,3,4,3,0,499,275848,18749.506,0,0,1285.3462 -11572,14286,25741,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1132.6804,0,1,-9,2019,19,5,0,97,3,5,0,0,0,0,0,0,0,42,1,1,0,0,0,50.29,15.07,-9,-9,6.666666666666667,1,1,0,1,5,8,1,0,628,30344.453,0,0,0,932.98651 -11572,14287,25742,-9,25741,-9,1,1,22,0,0,0,2,2,-9,1,4,7.8919845,7.8666682,0,0,0,-979.56451,0,2,-9,2019,9,0,40,0,1,0,1,6.7554374,6.7554374,0,0,0,0,0,1,1,0,0,0,58.73,45.76,-9,-9,8.333333333333334,1,1,0,0,1,8,3,0,1466,-371999.63,8459.4287,0,0,1820.4946 -11573,14288,25743,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1065.3558,0,3,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,5,1,0,493,54432.133,-103905.73,0,0,1244.4138 -11574,14289,25744,-9,-9,25746,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-948.17163,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,2,4,1,292.66666,-159305.41,37652.262,0,0,5370.4741 -11574,14289,25745,25746,-9,-9,1,0,48,1,1,0,1,1,-9,0,3,8.6240015,8.8282433,0,25,-8,77.596138,0,2,2,2019,12,0,98,16,1,0,0,6.1311898,6.1311898,0,0,0,0,28,1,1,0,0,0,30.23,53.8,46.9,56.66,3.333333333333333,1,1,0,0,10,2,4,1,292.66666,-159305.41,37652.262,0,0,5370.4741 -11574,14289,25746,25745,-9,-9,1,1,56,1,1,0,2,2,-9,0,4,6.2348433,6.3142467,0,27,8,-4.5084877,-9,2,3,2019,19,7,16,0,1,7,0,3.9463902,3.9463902,0,0,0,0,0,1,1,0,0,0,46.9,56.66,30.23,53.8,3.333333333333333,1,1,0,0,12,2,4,1,292.66666,-159305.41,37652.262,0,0,5370.4741 -11574,14290,25747,-9,25745,25746,1,1,20,1,1,0,2,2,-9,0,2,0,0,0,0,0,-942.28247,1,1,2,2019,18,6,0,24,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,22.65,53.52,-9,-9,5,1,1,0,0,3,2,2,1,1270.5,335567.19,0,85726.063,0,0 -11574,14290,25748,-9,-9,25747,1,1,10,1,1,1,3,0,-9,0,3,0,0,0,0,0,-1015.0274,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,2,1,1270.5,335567.19,0,85726.063,0,0 -11575,14291,25749,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,6.7811003,6.4709005,0,0,0,-963.58917,-9,1,-9,2019,10,1,16,0,1,1,0,6.1931291,6.1931291,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,1,7,2,0,829,-12709.391,0,180044.69,0,1332.8198 -11575,14291,25750,-9,25749,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.3722,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,829,-12709.391,0,180044.69,0,1332.8198 -11576,14292,25751,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1423883,8.197505,0,0,0,-960.48114,0,2,2,2019,15,4,37,37,1,4,0,9.4910545,9.4910545,0,0,0,0,0,1,1,0,0,0,36.14,44,-9,-9,6.666666666666667,1,1,0,1,11,11,4,1,348,719005.25,285041.94,108084.02,0,1112.3604 -11576,14293,25752,-9,25751,-9,1,0,25,0,0,0,2,2,-9,0,3,6.885849,6.8065734,0,0,0,-963.44006,0,1,1,2019,20,7,60,40,1,7,1,1.7669452,1.7669452,0,0,0,0,0,1,1,0,0,0,20.17,58.46,-9,-9,5,1,1,0,1,9,11,2,1,152,98319.227,0,0,0,308.93088 -11576,14294,25753,-9,25751,-9,1,1,21,0,0,0,2,2,-9,0,4,0,5.2067432,5.3260818,0,0,-1070.4921,0,2,-9,2019,18,7,0,70,3,7,1,0,0,0,0,0,0,0,1,1,0,4.9755082,0,26.44,62.16,-9,-9,6.666666666666667,1,1,1,1,4,11,2,1,501,25881.303,0,0,0,649.68555 -11577,14295,25754,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,6.5303044,6.4169464,0,0,-995.37769,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,2.4034593,0,18.351942,0,1,1,0,.67505783,6.7758775,64.57000000000001,12.51,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1020,304957.88,108556.13,170566.19,0,1314.7292 -11578,14296,25755,25756,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.5754061,8.4837742,0,21,0,.19310293,0,3,3,2019,10,1,37,37,1,1,0,15.183316,15.183316,0,0,0,0,14.5,0,0,0,.975793,0,43.19,50.71,40.75,58.26,8.333333333333334,1,1,0,0,10,5,5,1,1050,2696800,1505946.3,537934.88,0,3041.8784 -11578,14296,25756,25755,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.9379816,8.1122961,0,21,0,78.580597,0,3,3,2019,15,6,38,38,1,6,0,8.7719603,8.7719603,0,0,0,0,0,0,0,0,1.3542057,0,40.75,58.26,43.19,50.71,6.666666666666667,1,1,0,0,11,5,5,1,1050,2696800,1505946.3,537934.88,0,3041.8784 -11579,14297,25757,25760,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,.27971822,0,0,3,2,119.70712,-9,1,1,2019,8,0,60,0,1,0,0,.00025446576,.00025446576,0,0,0,0,0,1,1,0,2.3932989,0,37.52,63.91,43.12,58.55,8.333333333333334,2,3,0,0,3,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 -11579,14297,25758,-9,25757,25760,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.271,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 -11579,14297,25759,-9,25757,25760,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.54376,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 -11579,14297,25760,25757,-9,-9,1,1,28,1,2,0,1,1,-9,0,3,8.8783302,8.7612162,0,3,-2,147.92111,-9,-9,-9,2019,12,3,51,0,1,3,0,19.080408,19.080408,0,0,0,0,0,1,1,0,6.6509285,0,43.12,58.55,37.52,63.91,6.666666666666667,1,1,0,0,4,7,4,1,507.5,16852.682,40341.945,163583.69,120707.83,3364.7161 -11580,14298,25761,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1008.8436,0,3,3,2019,21,8,0,0,4,8,0,0,0,1,0,.89362299,0,0,1,1,0,0,0,30.32,17.53,-9,-9,5,1,1,0,0,0,11,1,0,660,-440791.34,0,0,0,2175.2124 -11581,14299,25762,25763,-9,-9,1,1,60,0,1,0,3,3,-9,0,3,7.6299281,7.7872896,0,17,17,-1.6803268,0,2,2,2019,10,0,56,54,1,0,0,4.4055214,4.4055214,0,0,0,0,0,1,1,0,0,0,54.95,39.62,49.04,55.86,6.666666666666667,1,1,0,0,11,4,2,1,884.33331,-341981,11263.712,0,0,1789.532 -11581,14299,25763,25762,-9,-9,1,0,43,0,1,0,3,3,-9,0,3,0,0,0,18,-17,-86.20784,0,1,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.95,39.62,5,1,1,0,0,0,4,2,1,884.33331,-341981,11263.712,0,0,1789.532 -11581,14299,25764,-9,25763,25762,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1009.581,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,2,1,884.33331,-341981,11263.712,0,0,1789.532 -11581,14300,25765,-9,25763,25762,1,0,23,0,1,0,1,1,-9,0,4,7.7114105,7.8914046,0,0,0,-1072.3287,0,3,2,2019,10,0,38,32,1,0,1,7.6476235,7.6476235,0,0,0,0,0,1,1,0,0,0,35.15,61.1,-9,-9,6.666666666666667,1,1,0,0,6,4,3,1,2481,110008.41,23282.004,0,0,907.85175 -11581,14301,25766,-9,25763,25762,1,1,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-986.63202,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,372,0,0,0,0,0 -11582,14302,25767,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.205327,7.2112536,0,0,0,-940.59772,0,3,3,2019,10,1,5,2,1,1,0,36.537533,36.537533,0,0,0,0,0,0,0,0,.24496685,0,42.98,64.31,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,294,-219892.73,-13888.877,0,0,593.23199 -11583,14303,25768,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.9720368,7.1692176,0,0,-978.11353,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,6.0425072,6.9287395,58.89,51.28,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,882,87230.688,106653.65,0,0,1304.4368 -11584,14304,25769,25770,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.944169,8.1018162,0,18,-7,-42.665184,0,2,2,2019,14,2,38,40,1,2,0,7.2398658,7.2398658,0,0,0,0,0,0,0,0,0,0,47.45,51.3,60.12,30.87,8.333333333333334,1,1,0,0,8,10,5,1,645,538048.13,127296.78,0,0,3263.4517 -11584,14304,25770,25769,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.7427931,8.6733475,0,18,7,29.885754,0,-9,2,2019,8,0,46,44,1,0,0,12.497747,12.497747,0,0,0,0,0,0,0,0,0,0,60.12,30.87,47.45,51.3,6.666666666666667,1,1,0,0,8,10,5,1,645,538048.13,127296.78,0,0,3263.4517 -11585,14305,25771,-9,25773,25772,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1091.6293,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,4.7439122,0,49.86,52.97,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,419,2495889.3,2020341.9,325889.16,0,5110.0508 -11585,14305,25772,25773,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,7.7613115,7.6601124,0,30,1,-5.0850129,0,2,2,2019,7,0,20,30,1,0,0,13.422334,13.422334,0,0,0,0,0,1,1,0,7.608592,0,57.06,57.76,54.79,55.86,6.666666666666667,1,1,0,0,10,7,5,1,419,2495889.3,2020341.9,325889.16,0,5110.0508 -11585,14305,25773,25772,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,9.6539736,9.4380093,0,30,-1,112.6086,0,1,1,2019,8,1,42,43,1,1,0,32.442902,32.442902,0,0,0,0,0,1,1,0,6.8765469,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,10,7,5,1,419,2495889.3,2020341.9,325889.16,0,5110.0508 -11585,14306,25774,-9,25773,25772,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1057.4677,-9,1,1,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,4.8293996,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,409,-74867.031,0,0,0,253.5527 -11586,14307,25775,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,5.3750701,7.2835503,6.8870678,0,0,-1005.7864,0,3,2,2019,13,1,6,0,1,1,0,3.4495656,3.4495656,0,0,0,0,0,1,1,0,6.2306118,4.9917083,40.38,31.72,-9,-9,3.333333333333333,3,4,0,0,3,8,2,0,499,1118293.8,356874.94,506430.09,0,1348.7594 -11587,14308,25776,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-945.49329,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.47,41.64,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,202,221246.14,0,0,0,1024.7736 -11588,14309,25777,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.4187593,8.3031816,0,0,-986.12823,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.2766094,52.52,51.4,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,1057,1766868.4,440879.84,182810.64,0,2732.2107 -11589,14310,25778,25779,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,6,1,29.94421,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.3600006,0,43.34,33.08,36.85,50.58,3.333333333333333,1,1,0,0,0,11,2,1,236.5,1108800,584132.38,143988.27,0,3063.2244 -11589,14310,25779,25778,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4549947,7.4740605,6,-1,-112.11777,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.9405661,7.2804184,36.85,50.58,43.34,33.08,8.333333333333334,1,1,0,0,3,11,2,1,236.5,1108800,584132.38,143988.27,0,3063.2244 -11590,14311,25780,25781,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,7.4001336,7.2906666,0,29,-2,-55.143219,0,3,2,2019,7,0,50,50,1,0,0,3.3129125,3.3129125,0,0,0,0,0,1,0,1,3.4507899,0,57.06,57.76,57.33,53.46,6.666666666666667,1,1,0,0,8,10,2,1,787.33331,342344.56,4533.334,0,0,1023.3799 -11590,14311,25781,25780,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,29,2,196.3949,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,4.7596273,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,0,10,2,1,787.33331,342344.56,4533.334,0,0,1023.3799 -11590,14311,25782,-9,25781,25780,1,1,17,0,0,1,2,0,0,0,5,0,3.0229692,2.8249063,0,0,-1052.9979,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,2.6666813,0,52.66,56.94,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,787.33331,342344.56,4533.334,0,0,1023.3799 -11590,14312,25783,-9,25781,25780,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1078.1853,-9,1,1,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,0,1,0,0,49,58,-9,-9,7,1,1,0,0,0,10,1,1,802,-189877.58,0,0,0,0 -11591,14313,25784,25785,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.2468891,6.2260919,9,1,-67.136345,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7447767,6.1107373,55.43,45.88,63.09,47.92,8.333333333333334,1,1,0,0,0,8,2,1,934,439110.91,41490.961,367885.66,0,1397.942 -11591,14313,25785,25784,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.9817405,5.2156296,9,-1,-63.178856,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3302684,63.09,47.92,55.43,45.88,8.333333333333334,1,1,0,0,0,8,2,1,934,439110.91,41490.961,367885.66,0,1397.942 -11592,14314,25786,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-989.17761,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.87,31.31,-9,-9,10,1,1,0,0,0,4,1,1,954,120297.46,0,0,0,564.64618 -11593,14315,25787,25788,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,5.0557551,6.0380316,5.7721472,29,-4,8.1284714,0,1,2,2019,12,2,2,1,1,2,0,6.4617062,6.4617062,0,0,0,0,2,0,0,0,5.9376168,0,42.78,54.5,57.01,50.75,3.333333333333333,1,1,0,0,11,4,3,1,551,485755.5,180902.94,0,0,907.43091 -11593,14315,25788,25787,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.4810247,8.3110743,0,29,4,29.332811,0,2,2,2019,6,0,35,38,1,0,0,9.1645079,9.1645079,0,0,0,0,0,0,0,0,.64200598,0,57.01,50.75,42.78,54.5,8.333333333333334,1,1,0,0,11,4,3,1,551,485755.5,180902.94,0,0,907.43091 -11593,14316,25789,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.785605,7.9696321,0,0,0,-1071.0027,0,1,2,2019,7,0,42,42,1,0,0,8.2147303,8.2147303,0,0,0,0,7,0,0,0,4.2664762,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,911,260890.28,219374.97,0,0,375.07416 -11594,14317,25790,25791,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.7408571,8.8178005,0,7,-1,-48.220829,0,2,1,2019,10,1,37,37,1,1,0,12.670931,12.670931,0,0,0,0,0,1,1,0,4.6263313,0,48.81,59.91,55.36,54.24,8.333333333333334,1,1,0,0,8,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 -11594,14317,25791,25790,-9,-9,1,0,41,1,2,0,1,1,-9,0,4,8.821744,8.8795462,0,7,1,-131.26848,0,2,1,2019,4,0,35,35,1,0,0,20.726633,20.726633,0,0,0,0,0,1,1,0,2.2135425,0,55.36,54.24,48.81,59.91,8.333333333333334,1,1,0,0,7,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 -11594,14317,25792,-9,25791,25790,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.2298,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 -11594,14317,25793,-9,25791,25790,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-960.74139,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,280.75,529560,455193.25,301044.78,220687.31,4681.6211 -11595,14318,25794,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,7.8922839,7.6759105,0,0,0,-950.58765,0,-9,-9,2019,13,1,35,40,1,1,0,9.2979374,9.2979374,0,0,0,0,0,0,0,0,0,0,52.02,27.63,-9,-9,6.666666666666667,1,1,0,0,7,4,4,0,465,-85447.234,-151420.14,0,0,533.39178 -11596,14319,25795,25796,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.8426924,8.7930756,0,1,10,-45.611885,0,2,2,2019,12,0,43,43,1,0,0,15.485423,15.485423,0,0,0,0,0,1,1,0,0,0,48.19,30.93,50.03,52.62,6.666666666666667,1,1,0,0,9,2,5,0,620.5,462557.25,185569.42,148285.63,92084.516,4224.5967 -11596,14319,25796,25795,-9,-9,1,0,43,0,0,0,3,3,-9,0,3,8.2278633,8.3229303,0,1,-10,134.08803,-9,-9,-9,2019,10,0,47,0,1,0,0,9.3930807,9.3930807,0,0,0,0,0,1,1,0,6.2100554,0,50.03,52.62,48.19,30.93,6.666666666666667,1,1,0,0,3,2,5,0,620.5,462557.25,185569.42,148285.63,92084.516,4224.5967 -11597,14320,25797,25798,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5270815,8.657155,0,4,3,80.357376,-9,-9,-9,2019,10,0,50,0,1,1,0,11.162535,11.162535,0,0,0,0,0,0,0,0,1.2295601,0,49,58,62.39,56.71,7,1,1,0,0,1,4,5,1,485.5,-4515.2656,65578.906,305012.94,190386.33,3713.5957 -11597,14320,25798,25797,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.4870329,8.388835,0,4,-3,-14.463409,0,-9,-9,2019,6,0,40,36,1,0,0,10.760021,10.760021,0,0,0,0,0,0,0,0,1.4939812,0,62.39,56.71,49,58,10,1,1,0,0,5,4,5,1,485.5,-4515.2656,65578.906,305012.94,190386.33,3713.5957 -11598,14321,25799,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6558514,7.7685938,0,0,-962.55975,0,3,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0804372,7.6733713,66.36,32.68,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,516,1319544.8,327949.75,136823.11,0,2207.9668 -11599,14322,25800,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,6.7585645,6.7172022,0,0,-921.42041,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2182465,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,532,123199.52,136535.69,76788.25,0,1636.6122 -11600,14323,25801,25802,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,8,0,18.822178,0,2,2,2019,4,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,46.99,57.16,56.15,10,1,1,0,0,8,13,3,1,584,1257757.3,576429.38,286088.88,0,1744.7003 -11600,14323,25802,25801,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.1935434,8.1269035,8,0,48.2644,0,3,3,2019,4,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,5.8021336,7.9415932,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,9,13,3,1,584,1257757.3,576429.38,286088.88,0,1744.7003 -11601,14324,25803,25806,-9,-9,1,0,33,1,3,0,3,3,-9,0,3,7.3038154,7.0649796,0,2,-1,40.705048,0,3,3,2019,16,4,16,16,1,4,0,10.657426,10.657426,0,0,0,0,0,0,0,0,0,0,49.52,56.95,33.81,43.97,5,1,1,0,0,10,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 -11601,14324,25804,-9,25803,25806,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-955.33337,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 -11601,14324,25805,-9,25803,25806,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.2223,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 -11601,14324,25806,25803,-9,-9,1,1,34,1,3,0,3,3,-9,0,1,8.2490673,8.1660557,0,2,1,163.25256,0,-9,-9,2019,19,0,60,60,1,6,0,7.2732301,7.2732301,0,0,0,0,0,0,0,0,0,0,33.81,43.97,49.52,56.95,0,1,1,0,1,9,13,3,1,539.5,320620.28,408524.41,114175.83,79314.797,2324.8997 -11602,14325,25807,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.7452135,6.9267402,0,0,-1088.3146,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3792725,54.25,48.06,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,552,495908.47,87590.547,304180.81,0,1317.9386 -11603,14326,25808,-9,25809,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-999.01404,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,5,1,394,297389.75,134172.19,352756.19,134872.69,10074.24 -11603,14326,25809,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,9.6741123,9.6943293,6.6348548,0,0,-990.56506,0,-9,-9,2019,19,7,40,35,1,7,0,40.257721,40.257721,0,0,0,0,0,0,0,0,9.4619665,0,25.1,68.28,-9,-9,3.333333333333333,1,1,0,0,13,8,5,1,394,297389.75,134172.19,352756.19,134872.69,10074.24 -11604,14327,25810,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.4443493,7.3272295,0,0,0,-973.09302,0,3,2,2019,12,0,36,36,1,0,0,7.7487025,7.7487025,0,0,0,0,0,1,1,0,0,0,31.6,57.32,-9,-9,5,1,1,0,0,11,6,3,1,178,557902.06,-16402.637,333102.59,0,1573.22 -11605,14328,25811,25812,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.7668276,7.5652466,0,10,0,19.814831,-9,2,2,2019,6,0,40,0,1,0,0,6.312223,6.312223,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.91,47.1,8.333333333333334,1,1,0,0,12,2,4,1,2864,177020.19,111475.91,0,0,2278.6575 -11605,14328,25812,25811,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.0680723,7.7838907,0,10,0,.41045061,0,3,3,2019,12,0,40,50,1,0,0,5.3643627,5.3643627,0,0,0,0,0,0,0,0,0,0,41.91,47.1,54.2,57.49,5,1,1,0,0,12,2,4,1,2864,177020.19,111475.91,0,0,2278.6575 -11606,14329,25813,-9,25816,25815,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-888.19232,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 -11606,14329,25814,-9,25816,25815,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1091.698,-9,2,2,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.67,64.46000000000001,-9,-9,5,1,1,0,0,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 -11606,14329,25815,25816,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,7.1735053,7.0451922,0,7,6,-111.27267,0,-9,-9,2019,9,0,40,40,1,1,0,2.7407308,2.7407308,0,0,0,0,0,1,1,0,0,0,51,56,36.29,51.11,8,2,3,0,0,1,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 -11606,14329,25816,25815,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,0,0,0,18,-6,-71.769173,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,51.11,51,56,5,2,3,0,1,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 -11606,14329,25817,-9,25816,25815,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.1218,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,0,493.39999,-46325.332,-27766.523,0,0,2472.7771 -11607,14330,25818,25820,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.7828684,8.5764456,5.2060809,4,4,26.826204,0,2,2,2019,14,4,30,30,1,4,0,18.654682,18.654682,0,0,0,0,0,1,1,0,6.2228398,0,51.83,57.2,41.76,57.81,6.666666666666667,1,1,0,0,9,5,5,1,1072.3334,711481.63,518768.47,231555.7,113067.3,4675.4097 -11607,14330,25819,-9,25818,25820,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.62,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1072.3334,711481.63,518768.47,231555.7,113067.3,4675.4097 -11607,14330,25820,25818,-9,-9,1,1,32,0,1,0,1,1,-9,0,4,9.1180601,9.0649967,0,4,-4,121.09792,0,-9,-9,2019,11,0,50,45,1,0,0,16.102243,16.102243,0,0,0,0,0,1,1,0,0,0,41.76,57.81,51.83,57.2,8.333333333333334,1,1,0,0,10,5,5,1,1072.3334,711481.63,518768.47,231555.7,113067.3,4675.4097 -11608,14331,25821,25822,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.9664307,7.9126225,52,0,-58.787659,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2627611,8.0635004,55.51,51.57,59.73,50.87,8.333333333333334,1,1,0,0,9,11,3,1,1135.5,512172.28,462445.19,139187.56,0,2733.5723 -11608,14331,25822,25821,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.1088262,5.8490705,52,0,29.189289,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8472478,6.2161899,59.73,50.87,55.51,51.57,10,1,1,0,0,0,11,3,1,1135.5,512172.28,462445.19,139187.56,0,2733.5723 -11609,14332,25823,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,5,7.7606592,7.7423491,0,0,0,-973.22461,0,2,-9,2019,6,0,26,39,1,0,0,9.3495102,9.3495102,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,5,4,3,0,1033,-67499.07,141639.02,0,0,2266.8735 -11609,14332,25824,-9,25823,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-985.0202,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1033,-67499.07,141639.02,0,0,2266.8735 -11610,14333,25825,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-993.49548,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,5.6339512,0,0,1,1,0,0,0,63.76,18.07,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,275,119785.52,0,89055.859,0,1556.2942 -11611,14334,25826,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,6.3741903,6.4349279,0,0,-1003.175,0,2,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,6.5116911,21.09,35.04,-9,-9,1.666666666666667,1,1,0,0,0,8,2,1,193,382116.5,12357.838,357183.78,129875.83,1071.7036 -11611,14335,25827,-9,25826,-9,1,1,28,0,0,0,2,2,-9,0,4,7.8829055,7.8162374,0,0,0,-990.34161,0,2,-9,2019,10,0,48,40,1,1,1,6.0460668,6.0460668,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,8,3,1,1045,-130874.05,0,0,0,1527.9904 -11611,14336,25828,-9,25826,-9,1,1,27,0,0,0,2,2,-9,0,4,7.6013508,7.5539536,0,0,0,-1087.6256,0,2,-9,2019,10,0,30,45,1,1,1,8.9573383,8.9573383,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,8,3,1,478,-263137.31,0,0,0,1174.4308 -11612,14337,25829,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,4.6185374,4.9077721,0,0,-1159.4489,0,2,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.9834094,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,11,2,0,631,5421682.5,3997910.3,1573239.5,0,1374.382 -11613,14338,25830,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.4271321,5.8464103,0,0,-1136.2408,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.9084129,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,2814,124041.68,135793.25,223666.89,0,1245.5481 -11614,14339,25831,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.9098606,8.4167013,0,0,0,-930.04047,0,1,2,2019,8,0,37,42,1,0,0,17.55056,17.55056,0,0,0,0,0,0,0,0,1.7619193,0,54.91,49,-9,-9,8.333333333333334,1,1,0,0,9,4,5,0,626,-73794.82,-111696.05,35913.297,22197.229,1482.032 -11614,14340,25832,-9,25831,-9,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-960.91541,0,2,-9,2019,11,0,0,37,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,1,0,0,4,1,0,777,36104.008,0,0,0,575.97412 -11615,14341,25833,-9,25834,25836,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1078.6432,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.52,55.96,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 -11615,14341,25834,25836,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,8.2670078,8.4834032,0,7,-3,151.63644,0,3,-9,2019,8,0,52,54,1,0,0,9.4116774,9.4116774,0,0,0,0,0,1,1,0,0,0,54.79,55.86,58.15,52.91,5,1,1,0,0,9,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 -11615,14341,25835,-9,25834,25836,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.6486,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 -11615,14341,25836,25834,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.2935457,8.2554216,0,7,3,13.193769,0,-9,-9,2019,7,1,42,42,1,1,0,12.290012,12.290012,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,9,6,4,1,557.75,311508.47,135470.94,226823.47,50385.5,2800.4585 -11616,14342,25837,-9,25839,25840,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-996.74854,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.54730129,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 -11616,14342,25838,-9,25839,25840,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.24,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 -11616,14342,25839,25840,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.4158649,7.3322201,0,1,-3,22.234285,-9,2,2,2019,2,0,18,0,1,0,0,8.9638014,8.9638014,0,0,0,0,14.5,1,1,0,6.4411292,0,52,54.51,52.41,50.05,8.333333333333334,1,1,0,0,7,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 -11616,14342,25840,25839,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,7.0404897,7.2531166,0,1,3,-9.4022799,-9,1,2,2019,10,0,20,0,1,0,0,5.6995206,5.6995206,0,0,0,0,0,1,1,0,6.9624319,0,52.41,50.05,52,54.51,8.333333333333334,1,1,0,0,7,13,2,1,670.5,474505.97,367458.47,277820.53,163282.11,2628.3643 -11617,14343,25841,-9,25843,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.83942,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,559.66669,471202.44,324074.03,416843.19,251959.53,4463.1133 -11617,14343,25842,-9,25843,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.13544,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,5,1,559.66669,471202.44,324074.03,416843.19,251959.53,4463.1133 -11617,14343,25843,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,9.1876917,9.0548506,0,0,0,-960.40222,0,2,-9,2019,15,4,48,40,1,4,0,23.913668,23.913668,0,0,0,0,27,1,1,0,0,0,38.53,64.73,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,559.66669,471202.44,324074.03,416843.19,251959.53,4463.1133 -11618,14344,25844,-9,25846,25845,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6112,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 -11618,14344,25845,25846,-9,-9,1,1,31,1,2,0,2,2,-9,0,3,9.701396,9.3965893,0,6,-1,-78.863838,0,-9,-9,2019,5,1,50,50,1,1,0,28.082569,28.082569,0,0,0,0,0,1,1,0,6.4582386,0,55.35,46.17,43.45,54.44,1.666666666666667,1,1,0,0,8,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 -11618,14344,25846,25845,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,6.4190745,6.6612639,0,6,1,40.218231,0,2,2,2019,8,1,12,0,1,1,0,6.063684,6.063684,0,0,0,0,0,1,1,0,0,0,43.45,54.44,55.35,46.17,8.333333333333334,1,1,0,0,4,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 -11618,14344,25847,-9,25846,25845,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.08313,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,495.75,153719.3,113598.66,208303.75,168392.05,5337.5498 -11619,14345,25848,-9,25850,25849,1,1,32,0,0,0,1,1,-9,0,3,8.889801,8.9207878,0,0,0,-960.04126,0,2,1,2019,13,2,40,-9,1,2,0,21.983805,21.983805,0,0,0,0,0,1,1,0,0,0,43.62,50.48,-9,-9,5,2,3,0,0,9,7,5,1,326,474684.78,122077.88,306931.94,80651.406,3856.802 -11619,14346,25849,25850,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,0,0,9,-5,0,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,7.9671178,15.085096,65.04966,0,1,1,0,0,0,64.23999999999999,44.83,21.47,39.3,10,2,3,0,0,10,7,1,1,737,1029314.9,-20875.572,751588.25,0,643.23578 -11619,14346,25850,25849,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,9,5,0,0,-9,-9,2019,27,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.47,39.3,64.23999999999999,44.83,3.333333333333333,2,3,0,1,0,7,1,1,737,1029314.9,-20875.572,751588.25,0,643.23578 -11620,14347,25851,25852,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.5898485,8.0992928,0,33,-2,.97331095,0,2,1,2019,6,0,53,58,1,0,0,9.724103,9.724103,0,0,0,0,7,1,1,0,0,0,54.79,55.86,63.41,39.7,8.333333333333334,1,1,0,0,9,4,5,1,457,630884,568312.44,210332.03,11519.895,4515.7788 -11620,14347,25852,25851,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.524437,8.6957264,3.6559057,28,2,24.530445,0,3,2,2019,7,0,60,60,1,0,0,11.408741,11.408741,0,0,0,0,0,1,1,0,4.2290277,4.2454233,63.41,39.7,54.79,55.86,8.333333333333334,1,1,0,0,6,4,5,1,457,630884,568312.44,210332.03,11519.895,4515.7788 -11621,14348,25853,-9,25854,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.02173,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,305.66666,-115842.51,0,0,0,2246.0842 -11621,14348,25854,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,4,0,0,0,0,0,-917.32452,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,54.45,56.22,-9,-9,6.666666666666667,1,1,1,0,6,13,1,0,305.66666,-115842.51,0,0,0,2246.0842 -11621,14348,25855,-9,25854,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.1882,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,305.66666,-115842.51,0,0,0,2246.0842 -11622,14349,25856,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.6560678,7.6594472,0,0,0,-1040.3376,0,3,3,2019,9,1,40,40,1,1,0,6.0000043,6.0000043,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,3,4,0,0,13,2,3,0,300,405686.22,252329.97,99671.391,0,521.94745 -11623,14350,25857,25858,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.6089897,8.568387,0,2,-4,-45.572842,0,-9,-9,2019,11,1,38,37,1,1,0,16.208868,16.208868,0,0,0,0,0,0,0,0,7.8110561,0,57.16,56.15,56.33,51.02,6.666666666666667,1,1,0,0,10,4,4,1,1339.5,1061512.5,597112.88,456028.84,213745.58,3424.0393 -11623,14350,25858,25857,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.0449386,7.0174327,0,2,4,36.115536,0,2,3,2019,8,0,40,0,1,0,0,3.282763,3.282763,0,0,0,0,0,0,0,0,0,0,56.33,51.02,57.16,56.15,5,1,1,0,0,10,4,4,1,1339.5,1061512.5,597112.88,456028.84,213745.58,3424.0393 -11624,14351,25859,25860,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.6528044,5.8981433,45,1,-38.473141,0,3,2,2019,10,0,0,18,4,1,0,0,0,0,14.59657,3.6007378,0,0,1,1,0,0,6.187489,53,47,51,46,7,1,1,0,0,7,7,2,1,452,1032929.5,414697.63,278987.16,0,1128.4052 -11624,14351,25860,25859,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.2747879,7.3078346,3,-1,-155.60118,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1567078,51,46,53,47,7,1,1,0,0,0,7,2,1,452,1032929.5,414697.63,278987.16,0,1128.4052 -11625,14352,25861,25862,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,9,-7,-23.995073,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.26,59.43,36.61,17.55,3.333333333333333,1,1,0,0,0,11,2,0,334.5,-5541.5469,80971.688,117349.08,34586.168,2680.04 -11625,14352,25862,25861,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,5.1988091,5.0427465,9,7,-115.72482,0,2,1,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,2,1,1,0,4.0790567,5.3498001,36.61,17.55,44.26,59.43,1.666666666666667,1,1,0,0,0,11,2,0,334.5,-5541.5469,80971.688,117349.08,34586.168,2680.04 -11626,14353,25863,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,5.5051994,5.4876599,0,0,-1145.3176,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.4784827,32.33,21.69,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,509,-134373.38,-16848.588,173452.47,0,1225.139 -11627,14354,25864,25865,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.1459713,8.5374269,6.8784356,9,0,-47.832645,0,-9,-9,2019,12,0,55,56,1,0,0,8.0133762,8.0133762,0,0,0,0,0,1,1,0,0,7.6196017,44.74,48.37,34.21,51.94,5,1,1,0,0,7,5,4,1,638.5,957086,989233.63,0,0,2670.7969 -11627,14354,25865,25864,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.8751345,6.9742117,40,0,49.015945,0,3,-9,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,0,6.83217,34.21,51.94,44.74,48.37,6.666666666666667,1,1,0,0,6,5,4,1,638.5,957086,989233.63,0,0,2670.7969 -11628,14355,25866,25868,-9,-9,1,1,47,1,3,0,2,2,-9,0,4,9.5326433,9.5958672,6.8670874,9,10,-.31102401,0,3,2,2019,12,0,37,40,1,0,0,36.515266,36.515266,0,0,0,0,0,0,0,0,0,7.3547282,49.41,58.28,48,56,8.333333333333334,1,1,0,0,9,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 -11628,14355,25867,-9,25868,25866,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.4241,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 -11628,14355,25868,25866,-9,-9,1,0,37,1,3,0,2,2,-9,0,4,0,0,0,9,-10,-5.7743316,0,2,2,2019,11,0,0,16,3,2,0,0,0,0,0,0,0,2,0,0,0,0,0,48,56,49.41,58.28,7,1,1,0,0,7,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 -11628,14355,25869,-9,25868,25866,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.7892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 -11628,14355,25870,-9,25868,25866,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.209,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,795.59998,1696353,1482768.3,440152.66,153462.33,4043.2759 -11629,14356,25871,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.6071796,8.5076914,0,0,0,-970.10736,0,3,3,2019,8,0,37,38,1,0,0,23.518545,23.518545,0,0,0,0,14.5,1,1,0,4.4535427,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,446,874103.38,464832.75,224385.02,0,2853.8442 -11630,14357,25872,25873,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.251091,9.2448864,0,5,-1,-22.563755,0,-9,-9,2019,7,0,24,24,1,0,0,48.155102,48.155102,0,0,0,0,0,0,0,0,3.916312,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,5,4,5,1,905,286860.28,-22840.93,226974.13,179907.03,5977.2383 -11630,14357,25873,25872,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.0906858,9.1967354,0,5,1,47.220547,0,1,1,2019,11,0,54,58,1,0,0,20.230526,20.230526,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.79,55.86,1.666666666666667,1,1,0,0,5,4,5,1,905,286860.28,-22840.93,226974.13,179907.03,5977.2383 -11631,14358,25874,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,4,7.448236,8.0048742,6.4138379,0,0,-1007.2418,0,-9,-9,2019,21,9,20,20,1,9,0,8.6767139,8.6767139,0,0,0,0,0,1,0,1,6.3946061,0,36.68,57.59,-9,-9,6.666666666666667,1,1,0,0,7,9,3,1,468,260666.45,146323.97,0,0,1884.6943 -11631,14358,25875,-9,25874,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1066.3384,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,468,260666.45,146323.97,0,0,1884.6943 -11632,14359,25876,25878,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.2198534,7.3208551,0,6,-1,24.839258,0,-9,-9,2019,12,1,15,15,1,1,0,12.6363,12.6363,0,0,0,0,0,1,1,0,1.5731736,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,5,10,4,1,899.33331,78984.016,-25429.764,0,0,3191.6511 -11632,14359,25877,-9,25876,25878,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.1906,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,899.33331,78984.016,-25429.764,0,0,3191.6511 -11632,14359,25878,25876,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,8.3344431,8.5323896,0,6,1,-34.425037,-9,-9,-9,2019,8,0,37,0,1,0,0,15.160834,15.160834,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,6.666666666666667,1,1,0,0,5,10,4,1,899.33331,78984.016,-25429.764,0,0,3191.6511 -11633,14360,25879,25880,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,0,7.910058,8.1266155,35,-2,106.90798,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.7878013,8.3849792,62.39,56.71,62.39,56.71,10,1,1,0,0,10,9,3,1,1363.5,1553524.8,442896.97,396433.41,0,2086.1914 -11633,14360,25880,25879,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,6.2658834,6.2446761,9,2,3.6213229,0,2,-9,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.1216004,6.3543105,62.39,56.71,62.39,56.71,10,1,1,0,0,11,9,3,1,1363.5,1553524.8,442896.97,396433.41,0,2086.1914 -11634,14361,25881,-9,25885,25883,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.7609,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 -11634,14361,25882,-9,25885,25883,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.8301,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 -11634,14361,25883,25885,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,9.5628262,9.2491713,0,6,1,-75.158119,0,2,2,2019,7,1,49,50,1,1,0,30.534039,30.534039,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.92,62.31,1.666666666666667,1,1,0,0,10,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 -11634,14361,25884,-9,25885,25883,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.98969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 -11634,14361,25885,25883,-9,-9,1,0,41,0,3,0,2,2,-9,0,5,8.1146498,8.257247,0,6,-1,69.452812,0,-9,-9,2019,12,0,18,22,1,0,0,26.792728,26.792728,0,0,0,0,0,1,1,0,0,0,43.92,62.31,57.16,56.15,8.333333333333334,1,1,0,0,10,7,5,1,1118,835415.94,189811.28,1026115.1,293197.06,5273.6387 -11635,14362,25886,-9,25888,25887,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.03534,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,959,249857.48,167543.41,178946.97,0,3041.3767 -11635,14362,25887,25888,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.7344685,8.2214041,0,7,16,118.61263,0,-9,-9,2019,8,0,47,50,1,0,0,11.128062,11.128062,0,0,0,0,0,1,1,0,4.0721955,0,57.16,56.15,54.2,57.49,10,1,1,0,0,9,2,4,1,959,249857.48,167543.41,178946.97,0,3041.3767 -11635,14362,25888,25887,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,7.9582253,8.1091938,0,11,-16,-2.2117534,0,3,3,2019,8,0,36,30,1,0,0,9.5616455,9.5616455,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,959,249857.48,167543.41,178946.97,0,3041.3767 -11636,14363,25889,25890,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,0,0,0,2,-17,23.19043,0,-9,-9,2019,23,10,0,88,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,21.43,54.38,49.27,3.333333333333333,1,1,0,0,2,10,4,1,2083,1060889.1,541229.63,139112.91,0,1320.1648 -11636,14363,25890,25889,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2931004,8.6340504,0,2,17,-53.212143,0,3,3,2019,10,0,60,54,1,0,0,13.344143,13.344143,0,0,0,0,7,1,1,0,0,0,54.38,49.27,38.9,21.43,8.333333333333334,1,1,0,0,7,10,4,1,2083,1060889.1,541229.63,139112.91,0,1320.1648 -11636,14364,25891,-9,25889,-9,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1024.0685,0,2,-9,2019,28,11,0,0,3,11,1,0,0,0,0,0,0,14.5,1,1,0,0,0,30.72,36.24,-9,-9,0,1,1,1,0,0,10,1,1,636,-368750.88,0,0,0,689.42334 -11637,14365,25892,25893,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,6.6323252,6.7443156,0,33,2,49.822639,0,-9,-9,2019,13,1,30,30,1,1,0,2.9341562,2.9341562,0,0,0,0,0,1,1,0,0,0,43.48,41.11,34.22,38.82,6.666666666666667,2,3,0,0,9,6,2,1,1759.5,112162.27,132404.97,88634.828,0,402.39948 -11637,14365,25893,25892,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,33,-2,-93.758179,0,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,34.22,38.82,43.48,41.11,6.666666666666667,2,3,0,0,0,6,2,1,1759.5,112162.27,132404.97,88634.828,0,402.39948 -11637,14366,25894,-9,-9,25895,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-928.21326,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,1,1,830.5,-40359.77,0,0,0,424.93503 -11637,14366,25895,-9,25893,25892,1,1,23,0,0,0,3,3,-9,0,4,0,0,0,0,0,-865.56598,0,3,3,2019,10,0,0,37,3,1,1,0,0,0,0,0,0,0,1,1,0,.1242712,0,49,58,-9,-9,7,2,3,1,1,1,6,1,1,830.5,-40359.77,0,0,0,424.93503 -11637,14367,25896,-9,25893,25892,1,0,19,0,0,1,2,0,0,0,3,0,7.0546732,6.829401,0,0,-888.1073,-9,3,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.0557175,0,28.52,62.72,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,691,-28824.352,0,0,0,277.96149 -11638,14368,25897,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.8327117,6.9480519,0,0,-921.28918,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.0905995,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,5,2,0,1394,-21247.4,95957.07,0,0,159.10919 -11639,14369,25898,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.6189084,6.787209,0,0,-1076.8121,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4143424,53.28,31.01,-9,-9,5,1,1,0,0,0,1,2,1,934,295264.41,51636.18,113811.07,0,1988.5458 -11640,14370,25899,-9,25901,25900,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.35333,-9,3,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 -11640,14370,25900,25901,-9,-9,1,1,38,0,2,0,3,3,-9,0,4,8.3545818,8.329196,0,6,-11,27.71067,0,-9,-9,2019,12,1,38,50,1,1,0,10.511288,10.511288,0,0,0,0,0,1,1,0,0,0,42.88,54.46,44.81,57.83,8.333333333333334,2,3,0,0,9,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 -11640,14370,25901,25900,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,0,0,0,22,11,-24.07753,0,3,3,2019,12,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.81,57.83,42.88,54.46,8.333333333333334,2,3,0,0,3,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 -11640,14370,25902,-9,25901,25900,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-935.98297,-9,3,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,51.22,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,486.75,5256.5898,-65787.984,0,0,2732.1504 -11640,14371,25903,-9,25901,25900,1,0,18,0,2,1,3,0,0,0,5,0,0,0,0,0,-1082.2214,-9,3,3,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.79,46.84,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,460,38184.391,0,0,0,0 -11641,14372,25904,25905,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.2908912,5.2241449,8,-1,41.996403,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,2,1,1,0,3.0532088,5.2983899,42.06,41.97,52.63,42.04,8.333333333333334,1,1,0,0,5,12,2,0,1387,194869.81,136979.11,102993.02,0,1585.5857 -11641,14372,25905,25904,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,1,7.3404903,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,7.8824925,0,27,1,1,0,0,0,52.63,42.04,42.06,41.97,5,1,1,0,0,2,12,2,0,1387,194869.81,136979.11,102993.02,0,1585.5857 -11642,14373,25906,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.9515119,8.0339127,4.2514062,0,0,-995.39258,0,2,2,2019,6,0,40,40,1,0,0,9.0085278,9.0085278,0,0,0,0,0,0,0,0,0,4.8900757,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,13,5,4,1,966,-234655.06,-65480.363,0,0,1271.7094 -11643,14374,25907,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.53979,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,55.43,39.13,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,102,3906.1904,0,146078.19,0,737.19556 -11643,14375,25908,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7695003,6.7068553,0,0,-904.6861,0,3,3,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.9371319,6.7397246,72.21000000000001,17.84,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,117,127903.25,6528.5005,0,0,2037.4801 -11644,14376,25909,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.148325,8.1692696,0,0,0,-920.42261,0,3,3,2019,8,0,38,50,1,0,0,8.3238659,8.3238659,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,4,4,0,576,466403.41,392700.56,66305.133,27205.408,1465.2751 -11644,14377,25910,-9,25909,-9,1,1,32,0,0,0,2,2,-9,0,3,7.8342571,7.8988338,0,0,0,-935.04071,0,2,-9,2019,11,0,40,40,1,0,1,8.3383198,8.3383198,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,1637,-343472.06,15752.649,0,0,1271.7255 -11645,14378,25911,25912,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.4736352,6.5969501,0,10,-13,19.437258,0,2,3,2019,9,0,42,40,1,0,0,2.350971,2.350971,0,0,0,0,0,0,0,0,7.9636621,0,49.41,58.28,57.16,56.15,6.666666666666667,1,1,0,0,11,7,4,1,138.5,5340105,1312953.5,2919613,0,3544.0872 -11645,14378,25912,25911,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.3935747,8.082552,0,10,13,-115.60749,0,3,3,2019,7,0,40,35,1,0,0,10.037066,10.037066,0,0,0,0,0,0,0,0,1.2447548,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,0,0,11,7,4,1,138.5,5340105,1312953.5,2919613,0,3544.0872 -11646,14379,25913,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,4.5585203,5.1691871,0,0,-1062.1222,0,-9,3,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.3188987,17.44,35.53,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,761,722516.94,126925.01,0,0,808.23676 -11647,14380,25914,25915,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.5069771,8.7264643,0,5,-1,29.132309,0,-9,-9,2019,7,0,39,39,1,0,0,15.96738,15.96738,0,0,0,0,0,0,0,0,7.2390599,0,38.34,62.12,57.06,57.76,6.666666666666667,1,1,0,0,7,4,5,1,3279,41499.531,213054.86,178151.31,131716.03,4342.1128 -11647,14380,25915,25914,-9,-9,1,1,30,0,0,0,3,3,-9,0,5,8.1834984,8.2779703,0,5,1,70.001572,0,2,2,2019,2,0,40,44,1,0,0,13.611334,13.611334,0,0,0,0,0,0,0,0,6.7581577,0,57.06,57.76,38.34,62.12,10,1,1,0,0,11,4,5,1,3279,41499.531,213054.86,178151.31,131716.03,4342.1128 -11648,14381,25916,-9,25918,25917,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1010.8935,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 -11648,14381,25917,25918,-9,-9,1,1,54,0,1,0,2,2,-9,0,5,9.1573467,9.2954092,7.170692,23,10,11.005592,0,2,2,2019,12,0,55,57,1,0,0,19.025778,19.025778,0,0,0,0,0,1,1,0,7.0478921,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,8,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 -11648,14381,25918,25917,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9588099,8.4861116,6.6807113,23,-10,-28.305464,0,2,2,2019,10,0,42,42,1,0,0,8.613472,8.613472,0,0,0,0,0,1,1,0,6.8613329,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,1,10,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 -11648,14381,25919,-9,25918,25917,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-985.81812,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,1.2920742,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,1,0,2,5,1,489.25,1779367.3,1002045.3,537098.88,-1151.8669,5492.3735 -11649,14382,25920,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.1062279,8.3853951,0,0,0,-1032.333,-9,2,2,2019,11,0,50,0,1,0,0,8.5633011,8.5633011,0,0,0,0,0,0,0,0,0,0,47.58,44.31,-9,-9,6.666666666666667,1,1,0,0,6,12,4,0,286,59926.059,19409.967,0,0,1531.1237 -11650,14383,25921,25922,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,6.4682622,6.2852278,0,7,5,-32.336037,0,3,3,2019,9,0,48,38,1,0,0,1.5471579,1.5471579,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8.333333333333334,1,1,0,0,10,1,2,0,675.5,271491.72,45688.625,159405.94,0,1334.3379 -11650,14383,25922,25921,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,0,0,0,7,-5,224.04492,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,55,8,1,1,0,0,0,1,2,0,675.5,271491.72,45688.625,159405.94,0,1334.3379 -11651,14384,25923,25925,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.2953129,8.097064,0,6,0,-134.82365,0,2,2,2019,5,0,36,70,1,0,0,7.6330037,7.6330037,0,0,0,0,0,1,1,0,.44730628,0,55.79,52.62,55.3,55.6,10,1,1,0,0,11,2,3,1,486.66666,157549.42,34773.992,131051.64,95293.617,2651.8186 -11651,14384,25924,-9,25923,25925,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-932.83643,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,3,1,486.66666,157549.42,34773.992,131051.64,95293.617,2651.8186 -11651,14384,25925,25923,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.0052423,7.0823636,0,6,0,-44.424446,0,-9,-9,2019,6,0,20,15,1,0,0,7.5317659,7.5317659,0,0,0,0,0,1,1,0,0,0,55.3,55.6,55.79,52.62,6.666666666666667,1,1,0,0,11,2,3,1,486.66666,157549.42,34773.992,131051.64,95293.617,2651.8186 -11652,14385,25926,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.8015742,6.8044963,0,0,-1049.0519,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2069016,6.7014689,51.65,44.35,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,799,581692.13,-59845.27,321739.41,0,1260.8562 -11653,14386,25927,25929,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,7.5923047,7.8163819,0,3,3,13.832041,0,-9,-9,2019,9,0,22,37,1,1,0,12.699036,12.699036,0,0,0,0,0,1,1,0,0,0,53,55,59.43,58.05,8,4,1,0,0,1,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 -11653,14386,25928,-9,25929,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.37866,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 -11653,14386,25929,25927,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.9119616,8.3050404,5.4486022,3,-3,-91.302742,0,3,2,2019,0,0,40,36,1,0,0,8.566844,8.566844,0,0,0,0,0,1,1,0,5.3435163,0,59.43,58.05,53,55,10,1,1,0,0,6,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 -11653,14386,25930,-9,25929,-9,1,1,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-1089.9436,-9,1,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,28.6,48.03,-9,-9,1.666666666666667,1,1,0,1,0,6,3,0,473.5,647485.56,281726.38,196302.27,168941.06,3689.4478 -11654,14387,25931,25932,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,5.3449469,6.4977479,5.7066503,11,-3,57.245159,0,3,3,2019,14,3,2,5,1,3,0,10.920923,10.920923,0,0,0,0,0,1,1,0,5.3738995,5.6672339,54.07,36.17,57.16,56.15,5,1,1,0,0,13,5,4,1,1355,1328836.9,751409.63,469824.63,0,2946.7424 -11654,14387,25932,25931,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.1765556,8.252944,37,3,-44.529118,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1136332,57.16,56.15,54.07,36.17,8.333333333333334,1,1,0,0,0,5,4,1,1355,1328836.9,751409.63,469824.63,0,2946.7424 -11654,14388,25933,-9,25931,25932,1,0,26,0,0,0,2,2,-9,0,4,7.8969188,7.7715783,0,0,0,-1140.5371,0,1,1,2019,6,0,40,35,1,0,0,6.370019,6.370019,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,586,-63138.227,0,0,0,1054.8549 -11655,14389,25934,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.3755293,7.1213393,0,0,-1112.8636,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.67826426,7.1370883,46.06,35.5,-9,-9,10,4,2,0,0,0,10,3,1,144,566728.63,154507.92,252223.23,0,1720.009 -11656,14390,25935,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,7.7249632,7.8184247,0,0,-1005.824,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,0,0,0,3.8394966,8.0357571,58.97,32.53,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,936,2492634,451341.97,1335502.5,0,1771.9199 -11657,14391,25936,25939,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,8.2965231,8.3261337,0,6,4,23.797947,0,-9,-9,2019,12,0,37,42,1,0,0,13.961465,13.961465,0,0,0,0,0,1,1,0,0,0,49.02,56.38,32.65,62.31,8.333333333333334,2,3,0,0,9,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 -11657,14391,25937,-9,25939,25936,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.45801,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 -11657,14391,25938,-9,25939,25936,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-907.10565,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 -11657,14391,25939,25936,-9,-9,1,0,37,1,3,0,1,1,-9,0,5,0,0,0,6,-4,25.90563,0,2,1,2019,15,4,0,10,3,4,0,0,0,0,0,0,0,0,1,1,0,8.172719,0,32.65,62.31,49.02,56.38,3.333333333333333,2,3,0,0,2,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 -11657,14391,25940,-9,25939,25936,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.2147,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,1718.2,525140,25325.586,315023.16,104122.49,3807.25 -11658,14392,25941,25942,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.5858212,6.0987234,51,0,80.028419,0,3,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.1153181,6.1702862,62.1,51.16,57.83,39.53,10,1,1,0,0,0,1,2,1,376,517540,285222.56,200078.14,0,1694.4584 -11658,14392,25942,25941,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.0326257,6.2217703,51,0,-33.371006,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9208593,6.025959,57.83,39.53,62.1,51.16,8.333333333333334,1,1,0,0,0,1,2,1,376,517540,285222.56,200078.14,0,1694.4584 -11659,14393,25943,-9,25945,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.64185,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1218.5,52773.926,0,0,0,5227.542 -11659,14393,25944,-9,25945,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.32764,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,1218.5,52773.926,0,0,0,5227.542 -11659,14393,25945,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,5,5.8087759,7.1477222,6.6671982,0,0,-931.90454,0,2,2,2019,10,0,38,40,1,0,0,1.2069151,1.2069151,0,0,0,0,0,1,1,0,6.0500751,0,47.73,56.73,-9,-9,8.333333333333334,1,1,0,0,7,9,2,0,1218.5,52773.926,0,0,0,5227.542 -11659,14393,25946,-9,25945,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.3629,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,1218.5,52773.926,0,0,0,5227.542 -11660,14394,25947,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.8457341,7.8437696,5.6690254,0,0,-1158.9592,0,2,2,2019,6,0,38,38,1,0,0,8.1037302,8.1037302,0,0,0,0,0,0,0,0,6.1206369,5.9542499,56.71,35.18,-9,-9,6.666666666666667,3,4,0,1,9,8,4,1,666,1030114.3,150287.81,513645.69,0,1379.4045 -11661,14395,25948,25949,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.4207602,8.1997442,0,4,-2,177.75185,0,-9,-9,2019,11,0,37,37,1,2,0,13.171921,13.171921,0,0,0,0,0,0,0,0,0,0,47,57,47.23,56.75,7,1,1,0,0,1,6,5,1,514.5,184114.78,176854.44,88780.406,54080.75,4112.6606 -11661,14395,25949,25948,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.3454332,8.3946381,0,4,2,-127.86743,0,2,2,2019,9,0,3,30,1,0,0,201.03532,201.03532,0,0,0,0,0,0,0,0,7.3521628,0,47.23,56.75,47,57,8.333333333333334,1,1,0,0,6,6,5,1,514.5,184114.78,176854.44,88780.406,54080.75,4112.6606 -11662,14396,25950,25951,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.9919791,6.0413752,29,4,-23.202068,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.337204,6.1296053,51.02,44.19,49.92,23.35,8.333333333333334,1,1,0,0,0,6,3,1,1129.5,1248172.5,697592.25,190394.48,0,2133.8281 -11662,14396,25951,25950,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.7347999,7.6077299,29,-4,51.700138,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.8027391,49.92,23.35,51.02,44.19,6.666666666666667,1,1,0,0,7,6,3,1,1129.5,1248172.5,697592.25,190394.48,0,2133.8281 -11663,14397,25952,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3812318,7.3465962,0,0,-983.79193,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,2.5399332,0,24.825472,0,1,1,0,7.7310638,7.3723154,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1000,921325.69,307240.41,447084.69,0,1571.678 -11664,14398,25953,25954,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,7,2,0,0,3,2,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,21.56,40.39,52.14,33.38,3.333333333333333,1,1,0,0,0,6,1,0,315,29505.398,0,0,0,1912.4102 -11664,14398,25954,25953,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,0,0,0,7,-2,0,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,52.14,33.38,21.56,40.39,6.666666666666667,1,1,1,0,0,6,1,0,315,29505.398,0,0,0,1912.4102 -11664,14399,25955,-9,25953,25954,1,1,27,0,0,0,2,2,-9,0,3,7.2432151,7.4468079,0,0,0,-1007.5945,0,2,2,2019,7,0,21,0,1,0,1,9.9822159,9.9822159,0,0,0,0,0,1,0,1,0,0,52.9,50.37,-9,-9,6.666666666666667,1,1,0,0,1,6,3,0,234,39980.316,0,0,0,461.79645 -11664,14400,25956,-9,25953,25954,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1032.8346,0,2,2,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,-9,-9,10,1,1,1,0,0,6,1,0,598,263908.5,0,0,0,0 -11665,14401,25957,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4841084,5.3012166,0,0,-933.7901,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5959191,5.1899948,57.33,53.46,-9,-9,10,1,1,0,0,0,5,2,1,347,81197.68,0,0,0,608.23444 -11666,14402,25958,25959,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,31,-3,0,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,16.425531,0,74.5,1,1,0,1.0147611,0,50.34,19.4,52,46,3.333333333333333,1,1,0,0,0,12,1,0,629,-59720.313,0,0,0,2280.3882 -11666,14402,25959,25958,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,31,3,0,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,50.34,19.4,8,1,1,0,0,0,12,1,0,629,-59720.313,0,0,0,2280.3882 -11667,14403,25960,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.4230213,8.5581398,0,0,0,-1009.1637,0,2,2,2019,6,0,40,40,1,0,0,15.363054,15.363054,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,394,625815.56,697200.81,124835.48,84061.875,1523.9446 -11668,14404,25961,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,4.5472479,4.8934011,0,0,-990.94354,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.3966351,0,0,1,1,0,0,4.8597622,62.11,25.64,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,1164,166246.39,-18018.266,0,0,1309.38 -11669,14405,25962,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.3011451,7.4371824,7.0258222,0,0,-1111.01,0,-9,2,2019,8,0,20,16,1,0,0,8.4614105,8.4614105,0,0,0,0,0,0,0,0,5.1910758,7.2313251,46.61,56.93,-9,-9,5,1,1,0,0,6,7,3,1,286,1794.9066,138803.7,0,0,1375.7365 -11670,14406,25963,25964,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.6362023,7.2822604,34,-2,90.272934,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2714014,45.05,59.07,57.53,47.86,6.666666666666667,1,1,0,0,0,6,3,1,1326.5,1302776,807257,207651.48,0,1920.6226 -11670,14406,25964,25963,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.5009179,7.6026983,34,2,-59.795986,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9485192,57.53,47.86,45.05,59.07,8.333333333333334,1,1,0,0,0,6,3,1,1326.5,1302776,807257,207651.48,0,1920.6226 -11671,14407,25965,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8057632,8.9613686,0,0,0,-932.57501,0,2,1,2019,11,0,40,41,1,0,0,20.135849,20.135849,0,0,0,0,0,0,0,0,1.4189292,0,44.26,59.43,-9,-9,1.666666666666667,1,1,0,0,11,4,5,1,113,540797.81,11310.542,24843.572,50948.852,1623.6538 -11672,14408,25966,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,8.9807377,9.1189518,0,0,0,-989.62518,0,3,3,2019,17,5,40,43,1,5,0,22.350937,22.350937,0,0,0,0,7,0,0,0,0,0,38.88,51.26,-9,-9,3.333333333333333,1,1,0,1,11,13,5,1,841,152288.23,0,64099.68,0,861.79602 -11673,14409,25967,25968,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,9.0341234,8.9981871,0,3,-4,30.783604,0,-9,-9,2019,12,0,48,45,1,0,0,16.903576,16.903576,0,0,0,0,0,0,0,0,0,0,54.62,53.53,49.35,59.64,8.333333333333334,1,1,0,0,1,8,5,1,420,1486552.8,0,721159.13,0,5964.8496 -11673,14409,25968,25967,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.1872845,9.1587133,0,3,4,-116.61139,0,-9,-9,2019,11,0,49,43,1,0,0,21.807899,21.807899,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.62,53.53,6.666666666666667,1,1,0,0,10,8,5,1,420,1486552.8,0,721159.13,0,5964.8496 -11674,14410,25969,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.5613,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,179,-19523.092,0,0,0,1212.6299 -11675,14411,25970,-9,25971,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.49274,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1887.6666,-24845.33,0,0,0,2803.9766 -11675,14411,25971,-9,-9,-9,1,0,54,0,2,0,3,3,-9,1,4,0,3.7256589,3.6573615,0,0,-985.72046,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,3.3727279,52.38,50.07,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1887.6666,-24845.33,0,0,0,2803.9766 -11675,14411,25972,-9,25971,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.7209,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1887.6666,-24845.33,0,0,0,2803.9766 -11676,14412,25973,25976,-9,-9,1,1,26,0,2,0,2,2,-9,0,2,7.9717321,8.1217279,0,2,1,23.924967,0,-9,-9,2019,10,0,48,42,1,0,0,10.89546,10.89546,0,0,0,0,0,1,1,0,0,0,50.52,47.59,42.16,60.15,8.333333333333334,1,1,0,0,9,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 -11676,14412,25974,-9,25976,25973,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.18488,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 -11676,14412,25975,-9,25976,25973,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.0883,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 -11676,14412,25976,25973,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,7.5749364,7.8710527,0,2,-1,-72.779083,0,-9,-9,2019,13,3,30,28,1,3,0,9.3604879,9.3604879,0,0,0,0,0,1,1,0,0,0,42.16,60.15,50.52,47.59,8.333333333333334,1,1,0,0,3,4,4,1,517.75,194154.59,-6624.3037,0,0,2940.5527 -11677,14413,25977,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.179265,8.3866844,0,0,0,-848.48175,0,3,2,2019,11,0,39,42,1,0,0,12.2022,12.2022,0,0,0,0,0,0,0,0,0,0,52.37,56.93,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,913,272652.28,494312.16,123603.01,67398.711,1754.9402 -11678,14414,25978,25979,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8262701,8.8662453,0,6,5,19.770042,0,2,2,2019,7,0,44,44,1,0,0,18.411983,18.411983,0,0,0,0,0,0,0,0,0,0,51.77,58.57,54.37,54.8,8.333333333333334,1,1,0,0,7,6,5,1,981.5,332297.31,58320.125,151757.47,0,3466.0693 -11678,14414,25979,25978,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.7597055,8.2125778,0,6,-5,6.3721318,0,-9,-9,2019,9,0,31,31,1,0,0,10.513586,10.513586,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.77,58.57,8.333333333333334,1,1,0,0,7,6,5,1,981.5,332297.31,58320.125,151757.47,0,3466.0693 -11679,14415,25980,25981,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.8862343,7.9502811,47,1,-98.15271,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5666509,7.5285473,57.16,56.15,62.99,49.54,8.333333333333334,1,1,0,0,3,2,3,1,1183,2240013,313634.63,498022,0,2755.4121 -11679,14415,25981,25980,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.0422568,6.8367281,47,-1,-27.999125,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9764533,62.99,49.54,57.16,56.15,10,1,1,0,0,4,2,3,1,1183,2240013,313634.63,498022,0,2755.4121 -11680,14416,25982,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,4.8847399,4.619596,0,0,-1138.736,0,3,3,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,4.4830265,53.4,17.68,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,233,31214.773,113122.12,257242.98,0,1815.3071 -11681,14417,25983,-9,25984,25986,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-987.0285,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 -11681,14417,25984,25986,-9,-9,1,0,45,0,2,0,3,3,-9,1,5,8.2003851,8.6012096,0,7,0,-19.802265,0,3,2,2019,11,0,8,0,1,0,0,50.101517,50.101517,0,0,0,0,7,1,1,0,0,0,45.81,61.51,54.69,57.47,8.333333333333334,1,1,0,0,4,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 -11681,14417,25985,-9,25984,25986,1,0,16,0,2,0,3,3,-9,1,4,0,0,0,0,0,-985.21722,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.7104598,0,45,59,-9,-9,7,1,1,0,0,0,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 -11681,14417,25986,25984,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,9.0192032,8.8280344,0,7,0,-120.10019,0,3,3,2019,8,0,52,70,1,0,0,19.718769,19.718769,0,0,0,0,2,1,1,0,8.3377123,0,54.69,57.47,45.81,61.51,10,1,1,0,0,8,9,5,1,681.25,895798.63,329358.28,461531.81,97740.992,8219.2148 -11682,14418,25987,-9,25989,25988,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1088.4098,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,2,0,411.66666,210465.77,-37160.008,216733.66,100201.12,1697.8754 -11682,14418,25988,25989,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,0,0,0,4,8,-100.98655,0,-9,-9,2019,11,1,0,55,3,1,0,0,0,0,0,0,0,0,1,0,1,3.6545827,0,49.04,55.86,27.14,45.44,6.666666666666667,3,4,1,1,4,9,2,0,411.66666,210465.77,-37160.008,216733.66,100201.12,1697.8754 -11682,14418,25989,25988,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.1344571,7.2045369,0,4,-8,133.8013,0,-9,-9,2019,17,6,24,29,1,6,0,6.7768774,6.7768774,0,0,0,0,0,1,0,1,0,0,27.14,45.44,49.04,55.86,5,1,1,0,0,10,9,2,0,411.66666,210465.77,-37160.008,216733.66,100201.12,1697.8754 -11683,14419,25990,-9,25992,25993,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.568,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 -11683,14419,25991,-9,25992,25993,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.2479,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 -11683,14419,25992,25993,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,16,-3,-63.281124,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.96,61.14,54.69,57.47,6.666666666666667,1,1,0,0,5,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 -11683,14419,25993,25992,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,7.959085,8.0191355,0,17,3,13.806879,0,2,2,2019,10,0,40,40,1,0,0,9.8214216,9.8214216,0,0,0,0,0,1,1,0,0,0,54.69,57.47,40.96,61.14,6.666666666666667,1,1,0,0,10,6,3,0,658.75,65187.719,15018.424,0,0,2115.717 -11684,14420,25994,-9,25995,25997,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.6426,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 -11684,14420,25995,25997,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,8.4806156,8.4863386,0,7,4,-82.119072,0,1,2,2019,6,0,60,60,1,0,0,8.9018726,8.9018726,0,0,0,0,0,1,1,0,0,0,51.66,54.88,53.14,51.28,8.333333333333334,1,1,0,0,7,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 -11684,14420,25996,-9,25995,25997,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.7452,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 -11684,14420,25997,25995,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,7.9137435,7.9404531,0,7,-4,-24.72834,-9,-9,-9,2019,10,0,40,0,1,0,0,7.6955152,7.6955152,0,0,0,0,0,1,1,0,0,0,53.14,51.28,51.66,54.88,8.333333333333334,1,1,0,0,9,4,4,1,612.25,134813.5,0,135088.13,92883.133,3069.1387 -11685,14421,25998,25999,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.6869078,8.1921864,0,1,-15,-88.52932,0,2,2,2019,4,0,44,0,1,0,0,6.8247547,6.8247547,0,0,0,0,0,0,0,0,.24780878,0,54.79,55.86,15.48,64.67,10,1,1,0,0,2,6,4,0,1453,-145914,-59089.531,87326.961,94147.922,2418.115 -11685,14421,25999,25998,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,7.5177217,7.5824084,0,1,15,74.882324,-9,-9,-9,2019,20,7,32,0,1,7,0,7.9884787,7.9884787,0,0,0,0,7,0,0,0,0,0,15.48,64.67,54.79,55.86,8.333333333333334,1,1,0,0,7,6,4,0,1453,-145914,-59089.531,87326.961,94147.922,2418.115 -11686,14422,26000,-9,26001,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.74896,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,206.5,0,0,0,0,1161.8904 -11686,14422,26001,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,0,0,-795.43811,0,2,2,2019,25,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,17.72,61.45,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,206.5,0,0,0,0,1161.8904 -11687,14423,26002,26003,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.4782629,8.6052532,5,-1,-48.836292,0,2,2,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.0505574,8.4165888,55.96,49.93,60.47,41.03,0,1,1,0,0,5,4,4,1,402.5,1660675,1180647.3,488414.69,0,13334.708 -11687,14423,26003,26002,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.8388891,7.5740371,5,1,-78.142014,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,10.15399,7.1199894,60.47,41.03,55.96,49.93,8.333333333333334,1,1,0,0,6,4,4,1,402.5,1660675,1180647.3,488414.69,0,13334.708 -11688,14424,26004,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9184766,8.3756466,6.7007298,0,0,-1019.1365,0,-9,-9,2019,11,0,20,15,1,0,0,16.630154,16.630154,0,0,0,0,0,0,0,0,1.5965475,6.5631223,55.2,49.4,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,359,131802.73,0,0,0,1488.9397 -11689,14425,26005,26006,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.5991001,8.3617964,0,16,-3,58.611038,0,2,2,2019,10,0,37,37,1,0,0,13.885578,13.885578,0,0,0,0,2,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,5,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 -11689,14425,26006,26005,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6392593,8.5221024,0,16,3,102.11064,0,3,3,2019,6,0,42,40,1,0,0,14.459466,14.459466,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 -11689,14425,26007,-9,26005,26006,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.95514,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 -11689,14425,26008,-9,26005,26006,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.7931,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,1141.25,289056.69,163433.33,167477.27,139077.75,3741.4602 -11690,14426,26009,26010,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,4,-6.2901845,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,6.6655068,0,0,1,1,0,0,0,51,46,58.32,50.22,7,1,1,0,0,5,5,2,1,335.5,279163.19,208350.5,0,0,1313.7823 -11690,14426,26010,26009,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.1846275,4.9807968,6,-4,-62.920937,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7369132,4.9631257,58.32,50.22,51,46,1.666666666666667,1,1,0,0,5,5,2,1,335.5,279163.19,208350.5,0,0,1313.7823 -11691,14427,26011,-9,26015,26012,1,1,14,0,5,1,3,0,-9,0,5,0,0,0,0,0,-993.71094,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 -11691,14427,26012,26015,-9,-9,1,1,41,0,5,0,3,3,-9,1,4,0,0,0,1,4,0,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.28,60.18,28.61,45.47,6.666666666666667,2,3,1,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 -11691,14427,26013,-9,26015,26012,1,1,16,0,5,1,2,0,-9,0,5,0,0,0,0,0,-1030.0376,-9,2,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.73,46.02,-9,-9,10,2,3,0,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 -11691,14427,26014,-9,26015,26012,1,1,13,0,5,1,3,0,-9,0,3,0,0,0,0,0,-976.83099,-9,3,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 -11691,14427,26015,26012,-9,-9,1,0,37,0,5,0,2,2,-9,1,1,0,0,0,1,-4,0,-9,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,28.61,45.47,48.28,60.18,4,2,3,0,1,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 -11691,14427,26016,-9,26015,26012,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-904.31396,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 -11691,14427,26017,-9,26015,26012,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1004.8839,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,2,1,1,932.57141,-181350.06,-5329.5991,0,0,1783.1075 -11692,14428,26018,26019,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,34,-2,39.152515,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,52,47,7,1,1,0,0,0,11,2,0,552,202314.66,46155.293,0,0,2642.3452 -11692,14428,26019,26018,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.4827595,6.4506187,31,2,13.695358,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8665962,52,47,50,47,7,1,1,0,0,0,11,2,0,552,202314.66,46155.293,0,0,2642.3452 -11693,14429,26020,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.8947124,8.2233791,0,0,-1100.6838,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7898984,60.29,52.11,-9,-9,10,1,1,0,0,0,9,3,1,475,689864.63,161884.31,514820.44,0,2278.9248 -11694,14430,26021,26022,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,48,2,34.52393,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.08,55.94,50.93,52.07,6.666666666666667,1,1,0,0,0,2,2,1,439,48588.906,267422.66,130678.71,0,1439.6304 -11694,14430,26022,26021,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.1813259,7.2107134,48,-2,-74.628624,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,42.433632,0,0,1,1,0,0,7.4209876,50.93,52.07,43.08,55.94,6.666666666666667,1,1,0,0,0,2,2,1,439,48588.906,267422.66,130678.71,0,1439.6304 -11695,14431,26023,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.8560076,8.8077888,0,0,0,-1033.7323,0,1,1,2019,8,0,37,39,1,0,0,22.16292,22.16292,0,0,0,0,0,0,0,0,4.3191748,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,70,155509.44,128622.57,0,0,2656.9363 -11696,14432,26024,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.1505747,7.1519909,0,0,-953.81543,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2746472,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,580,960433.31,309971.25,87496.328,0,1213.5901 -11697,14433,26025,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.5985155,8.5845432,0,0,0,-1038.2281,0,2,2,2019,36,12,60,60,1,12,0,10.201101,10.201101,0,0,0,0,0,0,0,0,3.1966972,0,23.77,28.58,-9,-9,0,1,1,0,0,6,12,5,0,763,235117.27,-61293.773,0,0,1455.5925 -11698,14434,26026,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.2685299,9.0677824,0,0,0,-962.36102,0,1,2,2019,16,4,42,49,1,4,0,22.119469,22.119469,0,0,0,0,0,0,0,0,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,57,463419.13,281637.88,0,0,2481.7224 -11699,14435,26027,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1065.644,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.94,58.01,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,395,298475.28,0,89197.203,0,514.90833 -11700,14436,26028,26029,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.5803823,7.5073991,6,-2,-25.47286,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8395452,55.54,46.02,53,47,8.333333333333334,1,1,0,0,0,12,3,1,472,-68653.906,0,0,0,3438.3562 -11700,14436,26029,26028,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,6.0563564,6.1009903,0,6,2,-11.727357,0,2,2,2019,9,0,10,15,1,1,0,5.0112262,5.0112262,0,0,0,0,0,1,1,0,8.6308041,0,53,47,55.54,46.02,8,1,1,0,0,1,12,3,1,472,-68653.906,0,0,0,3438.3562 -11701,14437,26030,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.5757875,8.5069647,0,0,0,-950.76093,-9,-9,-9,2019,11,0,65,0,1,0,0,10.382771,10.382771,0,0,0,0,2,0,0,0,1.527994,0,51.24,58.84,-9,-9,1.666666666666667,1,1,0,0,12,10,5,1,470,101292.27,-22800.77,0,0,2174.2336 -11702,14438,26031,26034,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.6126032,8.5764828,0,4,-1,44.177021,0,3,3,2019,5,0,38,42,1,0,0,14.120991,14.120991,0,0,0,0,0,1,1,0,4.3672557,0,57.16,56.15,48.77,60.16,8.333333333333334,1,1,0,0,13,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 -11702,14438,26032,-9,26031,26034,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-891.1698,-9,1,1,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.16,58.63,-9,-9,6.666666666666667,1,1,0,0,0,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 -11702,14438,26033,-9,26031,26034,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.2033,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 -11702,14438,26034,26031,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,9.0228224,8.7070827,0,4,1,118.17435,0,2,2,2019,8,0,40,40,1,0,0,20.863058,20.863058,0,0,0,0,0,1,1,0,0,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,13,13,5,1,725.75,1328840.3,1028792.7,208779.11,91292.906,4406.1245 -11702,14439,26035,-9,26031,26034,1,0,19,0,2,0,2,2,-9,0,4,6.0797701,6.178463,0,0,0,-989.72217,0,1,1,2019,27,10,20,0,1,10,1,2.8754215,2.8754215,0,0,0,0,0,1,1,0,0,0,19.77,66.82000000000001,-9,-9,5,1,1,0,0,1,13,2,1,624,2088.4939,0,0,0,264.15823 -11703,14440,26036,26037,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.8540773,8.4849024,0,9,-3,4.3639832,0,3,3,2019,18,7,45,45,1,7,0,10.795845,10.795845,0,0,0,0,27,1,1,0,0,0,20.59,49.87,38.16,44.66,3.333333333333333,1,1,0,0,11,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 -11703,14440,26037,26036,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,0,0,0,9,3,-152.96135,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,20.59,49.87,6.666666666666667,1,1,0,0,0,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 -11703,14440,26038,-9,26036,26037,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.9751,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 -11703,14440,26039,-9,26036,26037,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.28638,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,0,513.25,234069.2,-61973.512,0,0,1874.2319 -11704,14441,26040,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.0236063,5.8830643,0,0,-938.45282,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,2.9297359,0,0,1,1,0,0,6.1896296,38.46,33.59,-9,-9,5,1,1,0,0,0,5,2,1,542,168795.47,18024.93,134181.95,0,1348.1133 -11705,14442,26041,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.6801023,8.7975817,0,0,0,-1017.0648,0,-9,-9,2019,13,2,57,40,1,2,0,11.836193,11.836193,0,0,0,0,0,0,0,0,.95245224,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,9,11,5,0,507,12289.688,-34086.922,76249.508,87476.57,1795.3058 -11706,14443,26042,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.7658739,8.5887079,0,0,0,-1014.0333,0,-9,-9,2019,8,1,41,41,1,1,0,21.248688,21.248688,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,6,9,5,1,130,-422780.22,0,0,0,2641.5234 -11707,14444,26043,26044,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.8992763,6.1585565,55,5,23.14683,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1593027,38.38,57.97,62.39,56.71,8.333333333333334,1,1,0,0,0,6,2,1,400,99625,43560.664,245999.38,0,2319.4888 -11707,14444,26044,26043,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,55,-5,-36.844364,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,38.38,57.97,10,1,1,0,0,0,6,2,1,400,99625,43560.664,245999.38,0,2319.4888 -11708,14445,26045,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.61542,0,2,-9,2019,19,7,0,0,4,7,0,0,0,1,0,4.2362609,0,0,1,1,0,0,0,30.05,36.63,-9,-9,5,1,1,0,0,0,2,1,0,557,-106980.24,71371.938,0,0,701.68359 -11708,14446,26046,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-904.1817,0,2,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.85,43.47,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,463,242938.3,0,123705.3,0,899.73267 -11709,14447,26047,26048,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.3322959,6.2446976,49,-2,-56.680824,0,2,2,2019,12,3,0,0,4,3,0,0,0,1,0,1.5110601,0,71.5,1,1,0,0,6.1955037,43.59,31.81,54,46,1.666666666666667,1,1,0,0,0,4,2,1,2571.5,811629.13,264393.94,133385.73,0,1973.7095 -11709,14447,26048,26047,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.0792346,7.0740299,49,2,21.049311,0,3,1,2019,9,0,0,0,4,1,0,0,0,1,2.7802548,120.81803,23.190903,0,1,1,0,3.7660601,7.0336552,54,46,43.59,31.81,8,2,3,0,0,0,4,2,1,2571.5,811629.13,264393.94,133385.73,0,1973.7095 -11710,14448,26049,26050,-9,-9,1,0,37,0,1,0,1,1,-9,1,4,7.7510705,7.9865303,0,19,-6,34.476536,0,3,3,2019,13,2,38,35,1,2,0,8.6748419,8.6748419,0,0,0,0,2,1,1,0,0,0,24.15,59.62,68.42,44.16,8.333333333333334,1,1,0,0,10,2,5,1,367.5,611145.06,389896.44,127164.42,47960.016,3575.8577 -11710,14448,26050,26049,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.5724182,8.7206478,0,19,6,33.329807,0,3,3,2019,6,0,50,43,1,0,0,18.193586,18.193586,0,0,0,0,0,1,1,0,0,0,68.42,44.16,24.15,59.62,8.333333333333334,1,1,0,0,10,2,5,1,367.5,611145.06,389896.44,127164.42,47960.016,3575.8577 -11711,14449,26051,-9,26052,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.0559,-9,2,-9,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,42,1,1,0,0,0,48.87,58.55,-9,-9,5,2,3,0,0,0,9,2,1,623,621737.88,64572.844,813805.5,334331.75,1712.2996 -11711,14449,26052,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,6.4014072,6.6868982,0,0,-1125.1626,0,3,2,2019,9,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,6.460371,0,45.78,22.64,-9,-9,8.333333333333334,2,3,0,0,5,9,2,1,623,621737.88,64572.844,813805.5,334331.75,1712.2996 -11711,14450,26053,-9,26052,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1049.0065,-9,2,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,7,1,1,0,0,0,54.25,31.66,-9,-9,8.333333333333334,2,3,0,0,1,9,1,1,381,-226498.41,0,0,0,0 -11712,14451,26054,26055,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.4195795,8.2044754,0,16,0,13.014943,0,3,3,2019,8,0,48,38,1,0,0,8.4452085,8.4452085,0,0,0,0,0,0,0,0,6.3307095,0,54.97,47.63,60.7,47.65,5,1,1,0,0,12,10,4,1,1813,140247.47,76138.672,0,0,2881.9146 -11712,14451,26055,26054,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.8164797,7.9563355,0,16,0,-21.103104,0,3,3,2019,8,1,34,36,1,1,0,8.3540144,8.3540144,0,0,0,0,7,0,0,0,0,0,60.7,47.65,54.97,47.63,5,1,1,0,0,10,10,4,1,1813,140247.47,76138.672,0,0,2881.9146 -11713,14452,26056,26057,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.4357009,7.4946585,0,32,-4,-101.25287,0,3,3,2019,25,10,43,48,1,10,0,4.4463682,4.4463682,0,0,0,0,0,0,0,0,0,0,28.77,34.67,54,54,6.666666666666667,1,1,0,0,9,4,5,1,429,452846.25,549681.56,100850.83,0,2807.9409 -11713,14452,26057,26056,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.4888391,8.5061378,0,32,4,108.27014,0,3,3,2019,9,0,55,55,1,1,0,12.145451,12.145451,0,0,0,0,0,0,0,0,4.394124,0,54,54,28.77,34.67,8,1,1,0,0,1,4,5,1,429,452846.25,549681.56,100850.83,0,2807.9409 -11713,14453,26058,-9,26056,26057,1,0,22,0,0,0,2,2,-9,0,4,7.6028824,7.7256398,0,0,0,-1059.7263,0,3,3,2019,11,0,35,35,1,2,1,8.4947729,8.4947729,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,4,3,1,1242,-181739.77,0,0,0,1491.7499 -11713,14454,26059,-9,26056,26057,1,1,22,0,0,0,2,2,-9,0,4,8.3511829,8.4904099,0,0,0,-1026.9008,0,3,3,2019,10,0,45,45,1,1,1,12.399857,12.399857,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,4,1,1344,-135240.02,-18274.316,0,0,1921.0646 -11714,14455,26060,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.5511146,7.8476782,0,0,0,-1085.8885,-9,-9,-9,2019,9,0,50,0,1,0,0,7.3148956,7.3148956,0,0,0,0,0,0,0,0,0,0,47.11,52.59,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,615,276817.81,14495.405,0,0,1087.1509 -11715,14456,26061,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.1516943,8.5231743,4.6307931,0,0,-962.75024,0,1,-9,2019,24,12,42,38,1,12,0,7.5868702,7.5868702,0,0,0,0,0,1,1,0,5.088769,0,17.8,58.17,-9,-9,3.333333333333333,1,1,0,0,4,11,4,0,268,127313.33,0,0,0,2000.3748 -11716,14457,26062,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.4183416,8.8987703,0,0,0,-1064.9786,0,3,3,2019,12,0,40,40,1,0,0,22.962353,22.962353,0,0,0,0,0,1,1,0,1.3464965,0,38,56.63,-9,-9,5,1,1,0,0,12,1,5,1,495,817933.31,762539.94,182315.02,46490.371,2033.9082 -11717,14458,26063,-9,26065,26064,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-981.45245,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,1,559,59026.234,-37345.602,0,0,1583.4734 -11717,14458,26064,26065,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,0,0,0,5,1,189.87083,0,2,2,2019,8,0,0,51,3,0,0,0,0,0,0,0,0,0,1,1,0,1.3107169,0,60.1,54.82,63.09,45.22,10,1,1,1,0,8,12,3,1,559,59026.234,-37345.602,0,0,1583.4734 -11717,14458,26065,26064,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,8.5001974,8.1074772,0,5,-1,22.198574,0,-9,-9,2019,7,0,54,54,1,0,0,8.5729284,8.5729284,0,0,0,0,0,1,1,0,0,0,63.09,45.22,60.1,54.82,8.333333333333334,1,1,0,0,5,12,3,1,559,59026.234,-37345.602,0,0,1583.4734 -11718,14459,26066,26067,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,47,-2,69.85334,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.2284279,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,9,9,3,1,614,1402260.8,492319.28,462658.75,0,2769.4448 -11718,14459,26067,26066,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,7.1230168,8.1720028,7.3622713,47,2,-107.79525,0,-9,-9,2019,8,0,26,28,1,0,0,6.0711236,6.0711236,1,0,0,0,2,1,1,0,5.1939974,7.5715547,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,10,9,3,1,614,1402260.8,492319.28,462658.75,0,2769.4448 -11719,14460,26068,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.6041975,7.9513268,0,0,-904.23621,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,13.250117,0,0,1,1,0,0,7.6335921,57.17,34.71,-9,-9,10,1,1,0,0,0,8,3,1,625,651923.5,359666.56,338703.16,0,2121.9106 -11720,14461,26069,26070,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2266312,8.3419046,0,7,-6,-83.91201,0,1,1,2019,6,0,35,35,1,0,0,12.519065,12.519065,0,0,0,0,0,0,0,0,3.8367727,0,54.96,53.17,38.91,47.09,8.333333333333334,1,1,0,0,10,1,3,1,1364,607999.75,214532.27,186293.33,18952.891,2175.6958 -11720,14461,26070,26069,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,5.7782574,5.5554814,7,6,-10.357004,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,6.1489143,5.8818636,38.91,47.09,54.96,53.17,6.666666666666667,1,1,0,1,0,1,3,1,1364,607999.75,214532.27,186293.33,18952.891,2175.6958 -11721,14462,26071,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,6.4159861,6.0528831,0,0,-863.95349,0,2,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.6959887,6.1057529,46.03,46.22,-9,-9,5,1,1,0,0,2,7,2,1,382,0,0,0,0,963.8598 -11722,14463,26072,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1055.0521,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.9093521,0,63.41,39.7,-9,-9,6.666666666666667,1,1,1,1,0,2,1,1,605,0,0,0,0,1288.7421 -11723,14464,26073,-9,26074,26075,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2452,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 -11723,14464,26074,26075,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.8054562,9.0463572,0,14,-1,34.146366,0,2,2,2019,9,0,42,50,1,0,0,22.4298,22.4298,0,0,0,0,5.48,1,1,0,3.4358518,0,60.12,54.8,39.73,20.27,8.333333333333334,2,3,0,0,9,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 -11723,14464,26075,26074,26078,26077,1,1,39,0,2,0,1,1,-9,0,1,8.4729681,8.3038158,0,14,1,49.148682,0,3,3,2019,12,0,37,37,1,0,0,17.139709,17.139709,0,0,0,0,0,1,1,0,4.1314983,0,39.73,20.27,60.12,54.8,6.666666666666667,2,3,0,0,9,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 -11723,14464,26076,-9,26074,26075,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.05786,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,5,1,632.75,29993.721,0,371920.75,306907.63,4951.604 -11723,14465,26077,26078,-9,-9,1,1,65,0,2,0,3,3,-9,0,4,0,0,0,44,5,154.16443,0,3,2,2019,9,0,0,45,4,0,0,0,0,0,0,0,0,0,1,1,0,5.722446,0,52.23,55.6,54.2,57.49,8.333333333333334,2,3,0,0,9,5,2,1,906.5,454413.34,249193.97,147698.53,0,1842.4747 -11723,14465,26078,26077,-9,-9,1,0,60,0,2,0,2,2,-9,0,4,7.6501274,8.0584059,0,44,-5,44.475483,0,3,3,2019,7,0,60,20,1,0,0,4.018126,4.018126,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52.23,55.6,10,2,3,0,0,9,5,2,1,906.5,454413.34,249193.97,147698.53,0,1842.4747 -11724,14466,26079,-9,26081,-9,1,1,16,0,2,1,2,0,-9,0,4,0,5.6936989,6.1484265,0,0,-1011.1213,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,5.8637309,0,59.14,52.5,-9,-9,10,1,1,0,0,0,12,2,1,1531,-28980.377,0,0,0,1560.9172 -11724,14466,26080,-9,26081,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.41589,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,1,1531,-28980.377,0,0,0,1560.9172 -11724,14466,26081,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3754048,7.1968346,0,0,0,-1057.9742,0,3,2,2019,11,0,25,0,1,2,0,7.2359996,7.2359996,0,0,0,0,14.5,1,1,0,0,0,50,55,-9,-9,7,1,1,0,0,1,12,2,1,1531,-28980.377,0,0,0,1560.9172 -11724,14467,26082,-9,26081,-9,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-948.02917,0,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,1306,236658.02,0,0,0,33.923573 -11725,14468,26083,-9,26086,26087,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-897.60138,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 -11725,14468,26084,-9,26086,26087,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4308,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 -11725,14468,26085,-9,26086,26087,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.3837,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 -11725,14468,26086,26087,-9,-9,1,0,28,1,3,0,2,2,-9,0,2,0,0,0,11,-6,16.975189,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,40.09,52.06,50.62,53.79,5,2,3,1,0,1,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 -11725,14468,26087,26086,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,9.1127186,9.2442846,0,11,6,-69.97229,0,3,3,2019,11,0,50,45,1,0,0,21.292189,21.292189,0,0,0,0,2,1,1,0,0,0,50.62,53.79,40.09,52.06,10,2,3,0,0,9,8,4,0,1399,173720.88,91775.797,255701.19,105346.25,5329.0591 -11726,14469,26088,26089,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.3450732,7.1439571,6,-4,123.40104,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4783058,7.5536823,46.97,58.25,51.77,58.57,1.666666666666667,1,1,0,0,6,10,3,1,434.5,784020.38,245931.03,522514.5,0,3361.03 -11726,14469,26089,26088,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.2940054,7.4538479,6,4,-9.6978836,0,-9,-9,2019,8,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2630444,7.2996869,51.77,58.57,46.97,58.25,8.333333333333334,1,1,0,0,8,10,3,1,434.5,784020.38,245931.03,522514.5,0,3361.03 -11726,14470,26090,-9,26088,26089,1,1,46,0,0,0,1,1,-9,0,5,7.9494457,8.18612,0,0,0,-867.07361,0,2,2,2019,6,0,43,43,1,0,0,8.3100729,8.3100729,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,223,257871.2,25197.385,587193,236483.42,1057.1929 -11727,14471,26091,-9,26092,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.27649,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,1,0,1357.3334,186089.2,0,163013.61,0,515.64532 -11727,14471,26092,26093,-9,-9,1,0,31,1,1,0,3,3,-9,0,3,0,0,0,1,7,0,0,2,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,0,1,0,0,25.48,54.68,48,59,5,1,1,0,1,5,12,1,0,1357.3334,186089.2,0,163013.61,0,515.64532 -11727,14471,26093,26092,-9,-9,1,1,24,1,1,0,3,3,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,25.48,54.68,7,1,1,1,0,0,12,1,0,1357.3334,186089.2,0,163013.61,0,515.64532 -11728,14472,26094,26095,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.022974,7.5460782,0,1,-1,-52.933941,-9,-9,-9,2019,11,0,40,0,1,2,0,8.260273,8.260273,0,0,0,0,0,0,0,0,0,0,46,58,57.16,56.15,7,4,1,0,0,1,7,5,1,1063.5,-9783.207,-5212.271,0,0,3242.2485 -11728,14472,26095,26094,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.6811886,8.6527061,0,1,1,47.639771,0,-9,-9,2019,12,0,35,35,1,0,0,17.72389,17.72389,0,0,0,0,0,0,0,0,3.3167152,0,57.16,56.15,46,58,8.333333333333334,1,1,0,0,7,7,5,1,1063.5,-9783.207,-5212.271,0,0,3242.2485 -11729,14473,26096,26097,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.1881914,8.0527048,0,6,5,-56.783451,0,-9,-9,2019,10,0,40,80,1,1,0,13.478356,13.478356,0,0,0,0,0,1,1,0,2.7902341,0,52,47,55.97,38.87,7,1,1,0,0,1,2,5,1,2263.5,634443.63,590527.44,92058.781,0,3147.6489 -11729,14473,26097,26096,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6461606,7.7505264,5.2498546,6,-5,58.956387,0,3,-9,2019,12,1,30,30,1,1,0,10.135116,10.135116,0,0,0,0,0,1,1,0,0,5.2767148,55.97,38.87,52,47,1.666666666666667,1,1,0,0,9,2,5,1,2263.5,634443.63,590527.44,92058.781,0,3147.6489 -11730,14474,26098,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,1,0,7.9243202,7.685432,0,0,-921.51819,0,-9,-9,2019,20,9,0,0,4,9,0,0,0,1,2.9661112,13.559713,44.570618,0,1,1,0,.93431079,7.6898961,45.75,18.48,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,906,846459.81,246009.31,155962.5,0,2320.4697 -11731,14475,26099,26100,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.3513584,7.1133823,5.3100123,7,1,33.01049,0,2,3,2019,3,0,18,18,1,0,0,7.6543093,7.6543093,0,0,0,0,0,0,0,0,3.6411276,5.207962,60.12,54.8,59.86,37.35,10,1,1,0,0,8,12,4,1,869,480447.38,220923.17,0,0,1857.9596 -11731,14475,26100,26099,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.1158047,8.1376314,0,7,-1,-109.144,0,3,3,2019,6,0,37,41,1,0,0,11.256282,11.256282,0,0,0,0,0,0,0,0,4.0391164,0,59.86,37.35,60.12,54.8,8.333333333333334,1,1,0,0,8,12,4,1,869,480447.38,220923.17,0,0,1857.9596 -11732,14476,26101,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.738018,8.6172848,0,0,0,-1037.5201,0,2,2,2019,8,0,40,42,1,0,0,16.782595,16.782595,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,206,-51608.648,0,0,0,2364.9941 -11732,14477,26102,-9,-9,26101,1,0,25,0,0,0,1,1,-9,0,4,8.6821175,8.595458,0,0,0,-901.52997,-9,-9,2,2019,12,1,70,0,1,1,1,8.6810179,8.6810179,0,0,0,0,0,0,0,0,4.6539059,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,73,191052.77,67292.875,135798.94,110906.99,1787.2106 -11733,14478,26103,-9,26105,26104,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-821.36237,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.388238,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 -11733,14478,26104,26105,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.9898357,8.8668489,0,29,-3,-147.12314,0,2,2,2019,7,0,43,38,1,0,0,20.662369,20.662369,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,4,2,0,0,9,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 -11733,14478,26105,26104,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.9496808,7.769352,0,29,3,-21.887514,0,2,1,2019,9,0,12,12,1,0,0,23.836298,23.836298,0,0,0,0,2,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,11,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 -11733,14478,26106,-9,26105,26104,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.4539,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,770.75,299570.06,103511.85,422110.44,244742.17,3569.0483 -11734,14479,26107,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-983.13196,0,2,3,2019,22,11,0,0,4,11,0,0,0,1,0,21.036924,0,0,1,1,0,0,0,27.99,30.67,-9,-9,5,1,1,0,0,0,9,1,1,3095,54031.922,0,0,0,1563.2322 -11735,14480,26108,26109,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.1801729,8.2942715,0,6,-5,-11.626578,0,-9,-9,2019,13,2,39,39,1,2,0,11.493543,11.493543,0,0,0,0,0,0,0,0,1.6304336,0,41.13,40.48,54.37,54.8,6.666666666666667,1,1,0,0,7,11,5,1,573.5,1114488.8,930256.25,165149.58,0,3252.1724 -11735,14480,26109,26108,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.1781445,8.4009142,0,6,5,88.169525,0,2,3,2019,9,0,50,38,1,0,0,6.9728389,6.9728389,0,0,0,0,0,0,0,0,0,0,54.37,54.8,41.13,40.48,6.666666666666667,1,1,0,0,7,11,5,1,573.5,1114488.8,930256.25,165149.58,0,3252.1724 -11736,14481,26110,-9,-9,-9,1,0,26,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1049.4761,-9,3,-9,2019,13,0,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,8.333333333333334,1,1,1,0,0,11,1,0,222,-167927.55,0,0,0,1183.3672 -11737,14482,26111,26112,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.398622,7.6759329,3,5,-13.76619,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.0085306,7.44873,54.21,49.46,59.29,49.68,10,1,1,0,0,1,12,3,1,349,1683855.8,1002370.8,531805.94,0,4667.3467 -11737,14482,26112,26111,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.0755215,7.2995334,3,-5,79.676468,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2854843,7.154305,59.29,49.68,54.21,49.46,8.333333333333334,1,1,0,0,11,12,3,1,349,1683855.8,1002370.8,531805.94,0,4667.3467 -11738,14483,26113,26114,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,7.7829576,7.9104533,55,1,138.81384,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.4461594,8.0324306,57.76,30.58,45.92,43.65,8.333333333333334,1,1,0,0,0,10,3,1,478,1458347.8,314727.19,690954.44,0,3329.8882 -11738,14483,26114,26113,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.2485962,6.2404599,55,-1,-70.238419,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.2673297,6.2749615,45.92,43.65,57.76,30.58,8.333333333333334,1,1,0,0,0,10,3,1,478,1458347.8,314727.19,690954.44,0,3329.8882 -11739,14484,26115,26116,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,0,0,0,25,-6,159.36127,0,2,1,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,36.1,65.8,54,54,5,4,5,0,0,0,7,5,1,860.33331,1527444.1,479586.5,815693.06,0,5278.4595 -11739,14484,26116,26115,-9,-9,1,1,57,0,1,0,1,1,-9,0,4,9.5166721,9.8589334,0,25,6,65.360054,0,1,1,2019,8,0,60,48,1,0,0,29.187239,29.187239,0,0,0,0,0,0,0,0,0,0,54,54,36.1,65.8,8,4,5,0,0,1,7,5,1,860.33331,1527444.1,479586.5,815693.06,0,5278.4595 -11739,14484,26117,-9,26115,26116,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1368,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,7,5,1,860.33331,1527444.1,479586.5,815693.06,0,5278.4595 -11739,14485,26118,-9,26115,26116,1,1,23,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1078.58,1,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,5,0,0,0,7,1,1,256,0,0,0,0,0 -11740,14486,26119,-9,26121,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.52997,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,996.66669,-117038.02,0,0,0,767.26093 -11740,14486,26120,-9,26121,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1448,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,1,0,996.66669,-117038.02,0,0,0,767.26093 -11740,14486,26121,-9,-9,-9,1,0,24,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1050.3839,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,4,2,0,0,0,7,1,0,996.66669,-117038.02,0,0,0,767.26093 -11741,14487,26122,26123,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.7797699,7.8232517,0,46,-2,-105.02427,0,3,3,2019,16,3,20,35,1,3,0,15.897948,15.897948,0,0,0,0,0,0,0,0,0,0,35.05,51.54,51,48,5,1,1,0,0,11,10,4,1,1423.5,803127.13,619544.25,242253.88,32357.953,2780.3518 -11741,14487,26123,26122,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1887236,8.2436991,0,9,2,-161.55287,0,-9,-9,2019,10,0,42,40,1,1,0,10.808743,10.808743,0,0,0,0,0,0,0,0,0,0,51,48,35.05,51.54,7,1,1,0,0,1,10,4,1,1423.5,803127.13,619544.25,242253.88,32357.953,2780.3518 -11742,14488,26124,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.6565118,5.9667912,0,0,-927.11798,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,1.5171095,0,0,0,1,1,0,0,5.9875441,48,35,-9,-9,5,1,1,0,0,0,10,2,0,124,49728.289,118478.06,189972.03,0,1210.9148 -11743,14489,26125,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.629374,7.6707859,0,0,-901.97943,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.207509,7.9873834,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,3,11,4,0,175,738021.31,658217.88,196772.86,33630.754,3366.7449 -11744,14490,26126,26127,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,4.5063791,4.7945447,8,0,31.278618,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.6899593,4.7841525,54.79,55.86,58.32,50.22,10,1,1,0,0,0,7,2,1,662.5,379761.59,220953.75,198642.53,0,1848.0618 -11744,14490,26127,26126,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.4707537,7.7010374,8,0,-20.068125,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.208828,7.7238469,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,0,7,2,1,662.5,379761.59,220953.75,198642.53,0,1848.0618 -11745,14491,26128,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2072239,8.4340219,0,0,0,-990.65985,0,2,3,2019,11,0,37,37,1,0,0,11.636443,11.636443,0,0,0,0,0,0,0,0,1.8162973,0,51.83,57.2,-9,-9,3.333333333333333,1,1,0,0,10,6,4,1,684,440142.94,663653,0,0,1834.9468 -11746,14492,26129,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1106.0487,0,3,3,2019,22,7,0,0,4,7,0,0,0,1,0,124.19487,0,0,1,1,0,0,0,24.23,36.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,377,-60015.27,0,0,0,1437.3899 -11747,14493,26130,26131,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,4.7060761,5.3180294,7,4,10.416995,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0053511,5.557436,54.77,42.47,65.48999999999999,10.53,8.333333333333334,1,1,0,0,0,9,2,1,1097.5,510290.38,164654.06,212469.69,0,1204.1919 -11747,14493,26131,26130,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,5.6668715,5.9932327,49,-4,98.069603,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,16.464054,0,0,1,1,0,0,6.0070744,65.48999999999999,10.53,54.77,42.47,3.333333333333333,1,1,0,0,4,9,2,1,1097.5,510290.38,164654.06,212469.69,0,1204.1919 -11748,14494,26132,26133,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,5.0700564,4.8252816,52,-1,3.5477548,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.44089803,4.5988855,49.58,39.53,45.18,57.44,5,1,1,0,0,7,6,2,1,1634,209355.55,147867.44,0,0,1759.1309 -11748,14494,26133,26132,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.4592352,5.5479054,52,1,-126.11278,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0417333,5.1867518,45.18,57.44,49.58,39.53,8.333333333333334,1,1,0,0,0,6,2,1,1634,209355.55,147867.44,0,0,1759.1309 -11749,14495,26134,26137,-9,-9,1,0,37,0,2,0,2,2,-9,0,1,7.6298594,7.6503153,0,4,-10,112.87708,0,-9,-9,2019,11,0,30,35,1,0,0,8.5813656,8.5813656,0,0,0,0,0,1,1,0,0,0,45.63,21.21,41,56.99,6.666666666666667,2,3,0,0,8,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 -11749,14495,26135,-9,26134,26137,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.44568,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 -11749,14495,26136,-9,26134,26137,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1120.9613,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 -11749,14495,26137,26134,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,0,0,0,4,10,128.6615,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,.32987374,0,1,1,0,0,0,41,56.99,45.63,21.21,8.333333333333334,2,3,0,0,0,6,2,1,425.75,271807.84,36645.898,169233.61,0,1481.4927 -11750,14496,26138,26140,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.1726294,8.0022593,0,1,2,-78.068054,-9,-9,-9,2019,12,2,55,0,1,2,0,7.7511487,7.7511487,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,11,2,4,1,325.33334,45565.477,-16408.781,107852.41,108565.17,3403.7085 -11750,14496,26139,-9,26140,26138,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.55481,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,325.33334,45565.477,-16408.781,107852.41,108565.17,3403.7085 -11750,14496,26140,26138,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.6727619,8.0043116,0,1,-2,31.20937,-9,-9,-9,2019,5,0,24,0,1,0,0,16.933626,16.933626,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,10,1,1,0,0,13,2,4,1,325.33334,45565.477,-16408.781,107852.41,108565.17,3403.7085 -11751,14497,26141,26142,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.4628119,7.3066192,0,3,-4,-73.011185,0,3,2,2019,8,0,43,45,1,0,0,3.440753,3.440753,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.69,57.47,8.333333333333334,2,3,0,0,6,9,5,1,996,866834.75,404020.91,729835.75,298438.75,5579.603 -11751,14497,26142,26141,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,9.7708912,9.7234516,7.0974154,3,4,66.110695,0,-9,-9,2019,10,0,40,60,1,0,0,37.572342,37.572342,0,0,0,0,0,0,0,0,7.790175,0,54.69,57.47,60.29,52.11,8.333333333333334,1,1,0,0,5,9,5,1,996,866834.75,404020.91,729835.75,298438.75,5579.603 -11752,14498,26143,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.2113447,8.3648911,0,0,0,-1019.029,0,2,2,2019,8,1,44,45,1,1,0,11.598307,11.598307,0,0,0,0,0,0,0,0,0,0,40.89,51.69,-9,-9,8.333333333333334,1,1,0,0,6,12,4,0,846,52275.496,0,0,0,1734.4419 -11753,14499,26144,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.0431099,8.0515537,0,0,0,-963.00446,0,-9,-9,2019,5,1,39,39,1,1,0,11.204148,11.204148,0,0,0,0,0,0,0,0,2.7740951,0,29.78,44.8,-9,-9,0,1,1,0,0,9,6,4,1,478,-124332.83,7214.4692,0,0,1336.171 -11754,14500,26145,26147,-9,-9,1,1,40,0,2,0,2,2,-9,1,2,0,0,0,9,5,17.198557,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,21.96,38.79,39.92,49.18,5,1,1,1,0,0,12,2,0,428.25,-163182.61,0,0,0,2081.0503 -11754,14500,26146,-9,26147,26145,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.37,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,428.25,-163182.61,0,0,0,2081.0503 -11754,14500,26147,26145,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,6.2100372,6.2777491,0,9,-5,44.369625,0,2,3,2019,12,0,16,16,1,0,0,3.478375,3.478375,0,0,0,0,2,1,1,0,0,0,39.92,49.18,21.96,38.79,6.666666666666667,1,1,0,0,8,12,2,0,428.25,-163182.61,0,0,0,2081.0503 -11754,14500,26148,-9,26147,26145,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-985.01813,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,428.25,-163182.61,0,0,0,2081.0503 -11755,14501,26149,26151,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0697403,7.743576,0,14,-2,-15.129748,0,2,2,2019,13,1,35,30,1,1,0,10.368402,10.368402,0,0,0,0,0,1,1,0,0,0,34.04,54.63,50.68,49.75,5,1,1,0,0,12,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 -11755,14501,26150,-9,26149,26151,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7014,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 -11755,14501,26151,26149,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.7197361,8.2482662,7.5297041,14,2,-3.3838882,0,3,2,2019,11,0,97,70,1,0,0,2.3778896,2.3778896,0,0,0,0,0,1,1,0,0,7.6886997,50.68,49.75,34.04,54.63,5,1,1,0,0,12,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 -11755,14501,26152,-9,26149,26151,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.50183,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,989,181453.42,34774.508,189223.95,129768.7,4009.885 -11756,14502,26153,-9,26155,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-913.72821,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 -11756,14502,26154,-9,26155,-9,1,0,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1055.3851,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 -11756,14502,26155,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-996.48621,-9,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,5,1,1,1,0,5,12,1,0,1029.8,42104.637,0,0,0,626.46039 -11756,14502,26156,-9,26155,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.43134,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 -11756,14502,26157,-9,26155,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1086.6862,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,1,0,1029.8,42104.637,0,0,0,626.46039 -11757,14503,26158,-9,26160,26159,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.393,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 -11757,14503,26159,26160,-9,-9,1,1,50,0,2,0,1,1,-9,0,2,7.7632184,7.8834386,5.0456114,19,5,-88.722763,0,3,3,2019,12,1,41,41,1,1,0,7.1083174,7.1083174,0,0,0,0,0,1,0,1,7.3673506,5.1844726,51.51,44.35,57.33,53.46,3.333333333333333,1,1,0,0,7,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 -11757,14503,26160,26159,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.5315928,7.3505983,0,19,-5,21.253405,0,2,2,2019,12,0,28,21,1,0,0,9.7390938,9.7390938,0,0,0,0,0,1,0,1,0,0,57.33,53.46,51.51,44.35,6.666666666666667,2,3,0,1,11,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 -11757,14503,26161,-9,26160,26159,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-894.57068,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,4,2,-9,0,0,10,3,1,309.5,1437296,988686.5,496329.56,0,2775.5354 -11758,14504,26162,26163,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.5628147,8.7382212,0,1,-1,68.44342,-9,-9,-9,2019,9,0,46,0,1,0,0,13.105377,13.105377,0,0,0,0,0,0,0,0,0,0,45.88,57.28,57.16,56.15,10,1,1,0,0,11,11,5,1,446,-155032.31,-63037.543,241874.97,89423.656,3780.8774 -11758,14504,26163,26162,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5735302,8.4686861,0,1,1,-90.629074,-9,-9,-9,2019,12,0,37,0,1,0,0,15.000923,15.000923,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.88,57.28,8.333333333333334,1,1,0,0,4,11,5,1,446,-155032.31,-63037.543,241874.97,89423.656,3780.8774 -11759,14505,26164,26165,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-5,18.860147,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,42.9,51.77,7,1,1,0,0,0,6,2,1,383.5,1817777.8,792647.88,142376.53,0,1874.9023 -11759,14505,26165,26164,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,6.1659012,6.7615833,48,5,-181.87994,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7798223,42.9,51.77,50,47,8.333333333333334,1,1,0,0,8,6,2,1,383.5,1817777.8,792647.88,142376.53,0,1874.9023 -11760,14506,26166,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-934.55286,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.45,24.97,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,472,-166910.66,71953.891,0,0,717.04742 -11761,14507,26167,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.0359097,7.5118256,0,0,0,-911.78809,0,-9,2,2019,12,0,40,40,1,0,0,6.6548452,6.6548452,0,0,0,0,0,0,0,0,0,0,54.21,51.96,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,211,-15472.828,-91432.078,0,0,944.14941 -11762,14508,26168,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,0,0,0,0,0,-918.41638,0,1,1,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,1,1,9,12,1,1,494,486167.53,0,0,0,0 -11763,14509,26169,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,7.0109024,7.5637875,0,0,-957.00995,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4573231,35.05,28.72,-9,-9,10,1,1,0,0,0,12,3,1,534,378799.53,222306.89,48209.316,0,1777.6582 -11764,14510,26170,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,9.3087873,9.4047108,0,0,0,-1046.3113,0,2,2,2019,4,0,50,40,1,0,0,30.231733,30.231733,0,0,0,0,0,0,0,0,6.8683267,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,2374,166507,141722.67,0,0,4191.252 -11765,14511,26171,26172,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.7150383,9.0430584,0,2,9,-119.05243,0,-9,-9,2019,8,0,37,37,1,0,0,17.862457,17.862457,0,0,0,0,0,0,0,0,2.9095159,0,57.16,56.15,52.24,58.56,8.333333333333334,1,1,0,0,10,13,5,0,467,87616.203,144947.09,335351.69,113636.13,4355.8496 -11765,14511,26172,26171,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2265549,8.1521463,0,2,0,72.483337,0,-9,-9,2019,10,1,38,37,1,1,0,9.3728933,9.3728933,0,0,0,0,0,0,0,0,3.7337344,0,52.24,58.56,57.16,56.15,10,1,1,0,0,7,13,5,0,467,87616.203,144947.09,335351.69,113636.13,4355.8496 -11766,14512,26173,-9,26176,26174,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9081,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 -11766,14512,26174,26176,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,9.3528099,9.161375,0,7,-1,67.627922,0,-9,-9,2019,8,0,46,50,1,0,0,22.14588,22.14588,0,0,0,0,0,1,1,0,6.1079783,0,41.91,55.01,12.12,67.62,0,1,1,0,0,9,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 -11766,14512,26175,-9,26176,26174,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.46918,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 -11766,14512,26176,26174,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.405251,6.6233368,0,7,1,31.615429,0,2,2,2019,22,9,12,12,1,9,0,6.9070411,6.9070411,0,0,0,0,0,1,1,0,0,0,12.12,67.62,41.91,55.01,8.333333333333334,1,1,0,0,5,10,5,0,1643,-2917.8652,-45238.305,250766.7,195104.98,4849.3198 -11767,14513,26177,26180,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.322217,7.5332842,5.9084282,2,-1,30.128469,0,1,1,2019,11,1,20,28,1,1,0,7.1358171,7.1358171,0,0,0,0,0,1,1,0,6.3329639,0,46.63,59.72,48.42,60.53,6.666666666666667,1,1,0,0,4,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 -11767,14513,26178,-9,26177,26180,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.58215,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 -11767,14513,26179,-9,26177,26180,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.61462,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 -11767,14513,26180,26177,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.1945782,8.0193949,0,2,1,-52.689873,0,-9,-9,2019,11,2,43,38,1,2,0,9.9224968,9.9224968,0,0,0,0,0,1,1,0,0,0,48.42,60.53,46.63,59.72,6.666666666666667,1,1,0,0,1,2,3,0,910.5,291770.84,4782.8257,0,0,2191.01 -11768,14514,26181,26182,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.0550623,8.1891794,0,3,-3,-14.794254,0,2,2,2019,9,0,45,43,1,0,0,8.5245056,8.5245056,0,0,0,0,0,0,0,0,0,0,55.09,55.87,57.33,53.46,8.333333333333334,1,1,0,0,6,4,4,0,499.5,-21800.75,-63477.156,162635.28,103594.26,2999.3032 -11768,14514,26182,26181,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.9880304,8.2760496,0,3,3,-14.526437,0,-9,-9,2019,7,0,40,40,1,0,0,7.836689,7.836689,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.09,55.87,8.333333333333334,1,1,0,0,7,4,4,0,499.5,-21800.75,-63477.156,162635.28,103594.26,2999.3032 -11769,14515,26183,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.0301733,8.4186392,0,0,0,-965.8078,0,2,1,2019,11,0,75,70,1,0,0,4.9608803,4.9608803,0,0,0,0,0,0,0,0,7.0148497,0,44.45,48.37,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,1588,302522.78,67504.273,141079.63,77358.961,1929.3706 -11770,14516,26184,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,1,8.7002954,8.4959497,0,0,0,-1069.6309,0,2,3,2019,30,10,45,40,1,10,0,12.392695,12.392695,0,0,0,0,0,0,0,0,0,0,23.37,43.7,-9,-9,0,1,1,0,1,7,9,5,0,797,535655.06,424106.31,254161.72,92771.383,1249.4839 -11770,14517,26185,-9,-9,26184,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1078.5544,-9,-9,3,2019,29,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,35.25,62,-9,-9,1.666666666666667,1,1,1,0,1,9,1,0,736,-303739.78,0,0,0,-491.02615 -11771,14518,26186,26188,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.4982371,7.406919,4.8748956,2,-2,12.225223,0,2,2,2019,8,0,32,25,1,0,0,5.7914271,5.7914271,0,0,0,0,0,1,1,0,5.4838862,0,43.79,58.33,54,52.35,5,1,1,0,0,3,5,3,0,461,953433.19,139867.33,190272.42,0,2299.2212 -11771,14518,26187,-9,26186,26188,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.05969,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,461,953433.19,139867.33,190272.42,0,2299.2212 -11771,14518,26188,26186,-9,-9,1,1,42,0,1,0,2,2,-9,0,5,7.4057112,7.3407078,0,2,2,123.29869,0,-9,-9,2019,12,4,57,57,1,4,0,3.5831835,3.5831835,0,0,0,0,0,1,1,0,0,0,54,52.35,43.79,58.33,3.333333333333333,1,1,0,0,5,5,3,0,461,953433.19,139867.33,190272.42,0,2299.2212 -11772,14519,26189,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,7.36198,7.3635006,0,0,-1035.4332,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0646449,7.2448211,49.17,56.72,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,268,450634.16,232575.41,264757.28,0,756.93896 -11773,14520,26190,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1032.7638,-9,-9,-9,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,39.08,57.81,-9,-9,3.333333333333333,1,1,1,0,8,9,1,0,62,-4128.4277,0,0,0,0 -11774,14521,26191,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.7704086,8.8980007,0,0,0,-1016.2213,0,3,2,2019,22,10,52,55,1,10,0,13.162377,13.162377,0,0,0,0,2,0,0,0,4.1757579,0,35.63,62.19,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,654,586164.63,367653.59,236609.17,0,3035.7229 -11774,14522,26192,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.333209,8.4494152,0,0,0,-1066.8138,0,-9,-9,2019,7,0,49,25,1,0,0,9.8018255,9.8018255,0,0,0,0,2,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,539,-277676.63,-47181.027,0,0,1519.0829 -11775,14523,26193,26194,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,7,-1,64.028679,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,0,26.64,28.65,38.92,49.8,3.333333333333333,1,1,0,0,0,12,2,1,335.5,143549.13,146484.91,132230.17,0,1719.1338 -11775,14523,26194,26193,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5299335,7.5462332,7,1,-67.234985,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.3478565,38.92,49.8,26.64,28.65,8.333333333333334,1,1,0,0,0,12,2,1,335.5,143549.13,146484.91,132230.17,0,1719.1338 -11776,14524,26195,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.0730848,7.2058659,0,0,-1098.9749,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.2201302,7.4539833,41.09,37.34,-9,-9,5,1,1,0,0,0,7,2,1,1229,-320056.09,36679.941,0,0,1305.8468 -11777,14525,26196,26197,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.3074617,8.2991524,0,2,0,-41.335934,0,-9,-9,2019,10,0,50,50,1,0,0,8.8153105,8.8153105,0,0,0,0,0,0,0,0,0,0,49.35,48.94,46.3,42.26,6.666666666666667,2,3,0,0,6,8,5,1,1437,1265256.3,720907.69,322636.69,77990.125,4983.8936 -11777,14525,26197,26196,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.8204584,9.0607853,0,12,0,-162.35516,0,1,1,2019,11,0,43,35,1,0,0,23.691799,23.691799,0,0,0,0,0,0,0,0,0,0,46.3,42.26,49.35,48.94,8.333333333333334,2,3,0,0,9,8,5,1,1437,1265256.3,720907.69,322636.69,77990.125,4983.8936 -11778,14526,26198,-9,26201,26199,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.3663,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 -11778,14526,26199,26201,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.3063745,8.2694197,0,8,6,-104.00868,0,3,3,2019,10,0,47,42,1,0,0,10.160565,10.160565,0,0,0,0,0,1,1,0,5.5585389,0,48.38,49.66,38.92,49.8,8.333333333333334,1,1,0,0,9,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 -11778,14526,26200,-9,26201,26199,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-977.47992,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.5793498,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 -11778,14526,26201,26199,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.665051,7.7882724,0,8,-6,50.605576,0,-9,-9,2019,17,5,29,29,1,5,0,6.3192596,6.3192596,0,0,0,0,0,1,1,0,6.0075712,0,38.92,49.8,48.38,49.66,6.666666666666667,1,1,0,0,9,2,4,1,492.25,54224.086,228213.59,126029.84,96539.773,2420.5337 -11779,14527,26202,26203,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,3,-5,7.6281409,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,57.16,56.15,44.08,35.1,8.333333333333334,1,1,1,0,3,13,3,1,2176,-41002.719,-58148.125,0,0,1018.1565 -11779,14527,26203,26202,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.0438786,8.1012383,0,3,5,-45.140442,0,3,2,2019,5,0,38,38,1,0,0,8.8140774,8.8140774,0,0,0,0,0,1,1,0,4.4775286,0,44.08,35.1,57.16,56.15,0,1,1,0,0,8,13,3,1,2176,-41002.719,-58148.125,0,0,1018.1565 -11780,14528,26204,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,6.9723086,6.9412065,0,0,0,-1134.954,0,2,2,2019,10,1,40,0,1,1,0,3.3539269,3.3539269,0,0,0,0,42,1,1,0,0,0,42.52,53.48,-9,-9,5,1,1,0,0,1,2,2,0,173,44168.035,-61348.723,0,0,1283.1277 -11781,14529,26205,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8807483,7.9838676,0,0,-1122.5664,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.1845059,8.1141472,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,2283,1029719.6,392160.31,409640.44,0,1480.6437 -11782,14530,26206,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.3612,0,3,3,2019,5,0,0,40,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.53,38.76,-9,-9,8.333333333333334,1,1,0,1,11,13,1,0,1053,148313.58,0,0,0,720.17181 -11783,14531,26207,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.332058,8.4907379,0,0,0,-814.83319,0,1,1,2019,14,4,61,60,1,4,0,8.2196808,8.2196808,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,1003,-75420.523,188749.31,93645.344,43628.027,1557.0875 -11784,14532,26208,26210,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.1684618,8.6077271,0,17,-3,32.828678,0,3,3,2019,7,0,38,47,1,0,0,16.486958,16.486958,0,0,0,0,0,1,1,0,0,0,42.63,45.19,32.39,47.19,1.666666666666667,2,3,0,1,10,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 -11784,14532,26209,-9,26208,26210,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1216.2839,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 -11784,14532,26210,26208,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,7.8748269,8.2484312,0,17,3,29.528284,0,3,3,2019,22,6,44,42,1,6,0,6.4865866,6.4865866,0,0,0,0,0,1,1,0,0,0,32.39,47.19,42.63,45.19,1.666666666666667,2,3,0,1,10,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 -11784,14532,26211,-9,26208,26210,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.24066,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,10,4,1,1326.5,466170.59,296891.19,264272.25,100644.56,3376.2773 -11785,14533,26212,26213,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,42,-1,68.171745,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.277741,0,55.9,31.06,58.15,52.91,10,1,1,0,0,7,2,3,1,541.5,1062012.4,1013352.8,0,0,3275.9849 -11785,14533,26213,26212,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.6120539,7.6676197,42,1,17.181353,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.063763395,7.9978065,58.15,52.91,55.9,31.06,10,1,1,0,0,6,2,3,1,541.5,1062012.4,1013352.8,0,0,3275.9849 -11786,14534,26214,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,5.9689379,5.8598003,0,0,-1006.5795,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.1823954,5.5048819,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,232,378301.88,136103.86,202303.05,0,125.89449 -11787,14535,26215,26216,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.9797716,7.3947735,57,4,-95.321953,0,3,2,2019,22,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,7.782515,7.2461343,27.46,30.93,40.59,58.72,3.333333333333333,1,1,0,0,0,10,2,1,236.5,527300.44,168580.89,237386.09,0,2990.8684 -11787,14535,26216,26215,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.3992939,5.7342386,57,-4,-73.666611,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,5.889688,5.4286413,40.59,58.72,27.46,30.93,8.333333333333334,1,1,0,0,0,10,2,1,236.5,527300.44,168580.89,237386.09,0,2990.8684 -11788,14536,26217,-9,-9,-9,1,0,24,0,0,0,1,1,0,0,4,0,6.8775296,6.7070236,0,0,-1042.576,-9,-9,-9,2019,21,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,6.8514161,0,12.83,69.67,-9,-9,3.333333333333333,1,1,0,1,4,10,2,0,496,-275669.88,-97370.141,0,0,1951.7642 -11789,14537,26218,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.2654328,4.4428663,0,0,-1024.3654,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.987103,58.16,48.06,-9,-9,10,1,1,0,0,2,9,2,0,959,338294.13,30535.174,0,0,800.92731 -11789,14538,26219,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-979.75806,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,52.4,-9,-9,8.333333333333334,1,1,1,0,3,9,1,0,209,-176552.67,0,0,0,701.36383 -11790,14539,26220,26221,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,44,-8,0,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,52,47,7,1,1,0,0,0,2,1,0,1553,254805.64,-70005.578,145268.22,0,1500.4189 -11790,14539,26221,26220,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,44,8,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,49,47,7,1,1,0,0,2,2,1,0,1553,254805.64,-70005.578,145268.22,0,1500.4189 -11791,14540,26222,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9588146,8.2360735,0,0,0,-1078.7593,0,2,2,2019,8,0,34,30,1,0,0,11.72613,11.72613,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,1120,75029.836,-11026.971,0,0,367.08884 -11791,14541,26223,-9,26222,-9,1,0,23,0,0,0,2,2,-9,0,3,8.6955099,8.7225208,0,0,0,-976.60468,0,2,-9,2019,11,0,56,40,1,0,1,11.987793,11.987793,0,0,0,0,0,0,0,0,0,0,31.87,44.64,-9,-9,6.666666666666667,1,1,0,0,4,5,5,1,602,-13705.403,102177.41,0,0,2074.2202 -11792,14542,26224,26225,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.8716092,7.8089304,0,6,26,-4.3608804,0,-9,-9,2019,12,0,8,60,1,0,0,41.081299,41.081299,0,0,0,0,0,0,0,0,0,0,44.49,44.77,50.34,56.4,1.666666666666667,1,1,0,0,9,1,4,0,456.5,669550.5,645599.25,136528.06,29574.012,2424.9004 -11792,14542,26225,26224,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,7.9226828,7.7010994,0,6,-26,27.421911,0,2,2,2019,22,10,40,40,1,10,0,7.2179799,7.2179799,0,0,0,0,0,0,0,0,0,0,50.34,56.4,44.49,44.77,6.666666666666667,1,1,0,0,7,1,4,0,456.5,669550.5,645599.25,136528.06,29574.012,2424.9004 -11793,14543,26226,-9,26227,26229,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.7692,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 -11793,14543,26227,26229,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.6062818,6.7023821,0,17,-4,73.970818,0,2,-9,2019,5,0,27,20,1,0,0,3.6677423,3.6677423,0,0,0,0,0,1,1,0,0,0,64.48,48.62,52.25,53.24,8.333333333333334,1,1,0,0,8,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 -11793,14543,26228,-9,26227,26229,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.7251,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 -11793,14543,26229,26227,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.6900339,8.7876034,0,8,4,-4.07266,0,2,2,2019,12,0,44,44,1,0,0,12.916028,12.916028,0,0,0,0,0,1,1,0,0,0,52.25,53.24,64.48,48.62,6.666666666666667,1,1,0,0,10,12,4,1,751.25,96183.508,158561.88,75666.109,50251.945,2891.6189 -11794,14544,26230,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.7878785,7.3632874,0,0,0,-964.37482,0,2,-9,2019,24,12,29,29,1,12,0,7.7715039,7.7715039,0,0,0,0,0,0,0,0,0,0,26.44,62.16,-9,-9,5,1,1,0,0,8,11,3,1,559,82921.469,-65070.613,0,0,425.1362 -11795,14545,26231,-9,26232,26238,1,0,17,1,6,1,2,0,0,0,4,0,0,0,0,0,-970.81262,-9,2,1,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26232,26238,-9,-9,1,0,30,1,6,0,2,2,-9,0,5,0,0,0,7,-12,-3.6974659,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,58.3,52.91,10,2,3,0,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26233,-9,26232,26238,1,0,3,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1027.1683,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26234,-9,26232,26238,1,0,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-956.53619,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26235,-9,26232,26238,1,0,15,1,6,1,3,0,-9,0,4,0,0,0,0,0,-993.74432,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26236,-9,26232,26238,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-954.56946,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26237,-9,26232,26238,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1111.6108,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26238,26232,-9,-9,1,1,42,1,6,0,1,1,-9,0,4,8.3458424,8.658782,0,10,12,5.1360035,0,2,3,2019,8,0,37,37,1,0,0,14.126817,14.126817,0,0,0,0,0,1,1,0,0,0,58.3,52.91,61.01,53.18,8.333333333333334,2,3,0,0,8,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11795,14545,26239,-9,26232,26238,1,1,11,1,6,1,3,0,-9,0,4,0,0,0,0,0,-975.02948,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,582.22223,130431.95,88438.664,140615.81,56339.188,3396.4338 -11796,14546,26240,26242,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,6.4149594,6.3628592,0,22,7,-175.13927,0,2,2,2019,5,0,10,7,1,0,0,5.923934,5.923934,0,0,0,0,0,1,1,0,0,0,53.61,59.13,46.9,32.72,6.666666666666667,1,1,0,0,10,4,4,1,992.33331,458067.84,298359.84,265983.53,26356.705,2747.3403 -11796,14546,26241,-9,26240,26242,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.7595,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,992.33331,458067.84,298359.84,265983.53,26356.705,2747.3403 -11796,14546,26242,26240,-9,-9,1,1,46,0,1,0,1,1,-9,0,2,8.9275608,8.5983667,0,22,-7,-32.847305,0,2,3,2019,10,0,36,35,1,0,0,23.046549,23.046549,0,0,0,0,0,1,1,0,4.8887672,0,46.9,32.72,53.61,59.13,6.666666666666667,1,1,0,0,10,4,4,1,992.33331,458067.84,298359.84,265983.53,26356.705,2747.3403 -11797,14547,26243,26244,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,9.491848,9.4216766,6.9025884,5,3,-.7347706,-9,-9,-9,2019,9,0,40,0,1,1,0,41.423916,41.423916,0,0,0,0,0,0,0,0,6.6370249,7.0855017,54,53,53.39,44.47,8,1,1,0,0,1,13,5,1,342.5,784879.75,807046.63,0,0,7226.124 -11797,14547,26244,26243,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6669989,8.7557335,0,5,-3,-186.91626,0,3,3,2019,8,0,37,34,1,0,0,15.895602,15.895602,0,0,0,0,7,0,0,0,0,0,53.39,44.47,54,53,8.333333333333334,1,1,0,0,8,13,5,1,342.5,784879.75,807046.63,0,0,7226.124 -11797,14548,26245,-9,26244,26243,1,1,23,0,0,0,2,2,-9,0,4,7.1324186,7.0494442,0,0,0,-837.9267,0,2,2,2019,10,0,40,40,1,1,1,3.045634,3.045634,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,2,1,415,-83057.375,0,0,0,173.04169 -11798,14549,26246,26249,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.7481604,8.7689075,0,6,6,-119.64761,0,3,2,2019,7,0,47,50,1,0,0,14.829003,14.829003,0,0,0,0,0,1,1,0,0,0,60.02,56.42,46.33,55.93,6.666666666666667,1,1,0,0,7,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 -11798,14549,26247,-9,26249,26246,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.46326,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 -11798,14549,26248,-9,26249,26246,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.50323,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 -11798,14549,26249,26246,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.0271521,8.0116291,0,6,-6,-36.83876,0,-9,2,2019,9,0,21,25,1,0,0,15.263234,15.263234,0,0,0,0,0,1,1,0,0,0,46.33,55.93,60.02,56.42,8.333333333333334,1,1,0,0,7,12,4,1,680,320039.75,187497.2,113531.88,63606.465,3397.7349 -11798,14550,26250,-9,26249,26246,1,0,18,0,2,0,2,2,-9,0,3,5.4896092,5.5432205,0,0,0,-989.88916,0,2,2,2019,6,0,11,0,1,0,1,2.634294,2.634294,0,0,0,0,0,1,1,0,0,0,52.25,53.24,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,276,-41734.152,0,0,0,787.19403 -11799,14551,26251,26252,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,6,-2,65.275208,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,589.5,383418.91,-77371.336,367002.81,0,1684.2266 -11799,14551,26252,26251,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.6563792,7.5876017,6,2,70.324318,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3268132,7.6278286,57.16,56.15,51.08,49.24,8.333333333333334,1,1,0,0,0,12,3,1,589.5,383418.91,-77371.336,367002.81,0,1684.2266 -11800,14552,26253,26254,-9,-9,1,0,47,0,1,0,3,3,-9,1,1,0,0,0,8,12,5.7906909,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,20.65,50,57,3.333333333333333,1,1,0,1,5,10,4,0,448,445651.13,100915.17,447339.81,272497.25,4683.4688 -11800,14552,26254,26253,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.8528566,8.881402,0,8,-12,-89.474533,0,-9,-9,2019,10,0,40,50,1,1,0,29.388798,29.388798,0,0,0,0,0,1,1,0,0,0,50,57,40.87,20.65,7,1,1,0,0,1,10,4,0,448,445651.13,100915.17,447339.81,272497.25,4683.4688 -11800,14552,26255,-9,26253,26254,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.98724,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,4,0,448,445651.13,100915.17,447339.81,272497.25,4683.4688 -11801,14553,26256,26257,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.0629811,6.8944106,0,7,-4,-112.04747,0,2,3,2019,8,0,20,20,1,0,0,8.9405813,8.9405813,0,0,0,0,0,1,1,0,0,0,47.32,52.7,34.47,39.61,6.666666666666667,1,1,0,0,6,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 -11801,14553,26257,26256,-9,-9,1,1,37,0,2,0,2,2,-9,1,3,0,0,0,7,4,-24.050226,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.47,39.61,47.32,52.7,3.333333333333333,1,1,1,0,0,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 -11801,14553,26258,-9,26256,26257,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-896.2713,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 -11801,14553,26259,-9,26256,26257,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1043.1328,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,863.25,-43490.898,-47147.652,0,0,2169.6294 -11802,14554,26260,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,7.5904264,7.704607,0,0,0,-925.34882,0,3,3,2019,8,0,21,23,1,0,0,12.453293,12.453293,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,4,3,1,904,87442.352,218580.13,80749.867,0,1517.6605 -11803,14555,26261,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.2903252,8.3012648,0,0,0,-1021.2794,0,2,3,2019,8,0,47,43,1,0,0,10.890344,10.890344,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,380,116446.84,117416.27,0,0,928.11005 -11804,14556,26262,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1028.4174,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,128.38165,0,0,1,1,0,0,0,36.66,19.93,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,541,-367281.88,0,0,0,1297.8259 -11804,14557,26263,-9,26262,-9,1,1,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-906.13232,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,35.55,32.88,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,161,384227.66,0,0,0,1256.3258 -11805,14558,26264,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.6597524,7.7501874,0,0,0,-1046.8301,0,3,3,2019,12,0,43,45,1,0,0,5.8565445,5.8565445,0,0,0,0,0,1,1,0,0,0,44.81,52.29,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1429,408117.88,500406.25,121858.04,0,839.5766 -11806,14559,26265,26266,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,6.891973,7.0458078,0,8,4,92.892853,0,-9,-9,2019,9,0,50,50,1,0,0,2.7620184,2.7620184,0,0,0,0,0,1,1,0,.90230072,0,38.64,60.6,44.02,60.7,6.666666666666667,1,1,0,0,8,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 -11806,14559,26266,26265,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.5271635,7.746232,0,8,-4,169.23357,0,-9,-9,2019,9,0,25,28,1,0,0,8.0920687,8.0920687,0,0,0,0,0,1,1,0,0,0,44.02,60.7,38.64,60.6,8.333333333333334,1,1,0,0,8,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 -11806,14559,26267,-9,26266,26265,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0374,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 -11806,14559,26268,-9,26266,26265,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.00836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,456.75,-202588.84,42780.121,0,0,1515.0913 -11807,14560,26269,26272,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.3363409,7.7876863,0,4,-1,36.853935,0,-9,-9,2019,18,7,30,30,1,7,0,15.94216,15.94216,0,0,0,.31532803,0,0,0,0,0,0,45.89,38.81,57.06,57.76,6.666666666666667,1,1,0,0,3,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 -11807,14560,26270,-9,26269,26272,1,1,17,0,2,1,2,0,0,0,5,0,4.1093869,3.8384941,0,0,-887.89691,-9,1,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.1315513,0,43.97,60.95,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 -11807,14560,26271,-9,26269,26272,1,1,16,0,2,1,3,0,-9,0,5,0,3.1489344,3.1073298,0,0,-954.54932,-9,1,1,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,2.8095651,0,49.3,59.89,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 -11807,14560,26272,26269,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.761838,8.954936,0,4,1,100.40834,0,1,1,2019,7,0,41,38,1,0,0,16.266535,16.266535,0,0,0,0,0,0,0,0,7.2647295,0,57.06,57.76,45.89,38.81,8.333333333333334,1,1,0,0,10,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 -11807,14560,26273,-9,26269,26272,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.52185,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,892.59998,1064764.6,855875.81,260891.98,111053.25,3823.6333 -11808,14561,26274,26276,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.4427567,8.3973246,0,5,0,118.40493,0,-9,-9,2019,19,7,37,39,1,7,0,17.317123,17.317123,0,0,0,0,0,1,1,0,0,0,32.6,54.09,48.84,34.06,6.666666666666667,1,1,0,1,4,11,4,1,360.33334,-304520.94,41938.738,33387.656,31548.715,2469.676 -11808,14561,26275,-9,26276,26274,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-941.80743,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,360.33334,-304520.94,41938.738,33387.656,31548.715,2469.676 -11808,14561,26276,26274,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.1098118,7.4044189,0,5,0,23.681658,0,-9,-9,2019,7,1,24,25,1,1,0,8.0833998,8.0833998,0,0,0,0,0,1,1,0,1.6700464,0,48.84,34.06,32.6,54.09,8.333333333333334,1,1,0,1,10,11,4,1,360.33334,-304520.94,41938.738,33387.656,31548.715,2469.676 -11809,14562,26277,26278,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.7700424,7.8008928,34,-14,-138.74847,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6125388,8.1723471,62.39,56.71,49.47,34.02,10,1,1,0,0,0,9,4,1,285,1222811.8,585416.25,295414.78,0,5929.9727 -11809,14562,26278,26277,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.9481907,7.8045425,33,14,-79.612991,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3499279,7.5359926,49.47,34.02,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,285,1222811.8,585416.25,295414.78,0,5929.9727 -11810,14563,26279,-9,26280,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-905.30444,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,0,789.5,-67269.063,37516.984,0,0,6485.1055 -11810,14563,26280,-9,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,9.5600643,9.4968681,6.4272332,0,0,-1018.0474,0,-9,-9,2019,25,12,65,-9,1,12,0,21.865461,21.865461,0,0,0,0,0,0,0,0,6.5567336,0,31.09,45.59,-9,-9,3.333333333333333,1,1,0,0,5,8,5,0,789.5,-67269.063,37516.984,0,0,6485.1055 -11811,14564,26281,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,2,6.9433966,7.079205,0,0,0,-1127.5187,0,2,2,2019,8,0,23,0,1,0,0,6.9356017,6.9356017,0,0,0,0,0,1,1,0,0,0,54.78,23.91,-9,-9,8.333333333333334,1,1,0,0,7,10,2,0,1099,140468.61,-43123.34,0,0,2193.3655 -11812,14565,26282,-9,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,7.394875,7.8574944,6.5728793,0,0,-1022.1936,0,-9,-9,2019,8,0,20,20,1,0,0,11.505255,11.505255,0,0,0,0,0,1,0,1,6.8649917,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,379,-97120.219,-9851.002,0,0,1709.5359 -11812,14565,26283,-9,26282,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.6235,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,379,-97120.219,-9851.002,0,0,1709.5359 -11813,14566,26284,26287,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,10.018226,9.4634485,0,7,7,-61.940189,0,2,2,2019,8,0,68,55,1,0,0,27.281656,27.281656,0,0,0,0,0,0,0,0,8.4741602,0,54.79,55.86,59.43,49.68,8.333333333333334,1,1,0,0,9,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 -11813,14566,26285,-9,26287,26284,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.03522,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 -11813,14566,26286,-9,26287,26284,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.334,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 -11813,14566,26287,26284,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.5151072,8.5984592,0,7,-7,-28.928694,0,2,3,2019,4,1,34,34,1,1,0,19.043505,19.043505,0,0,0,0,0,0,0,0,0,0,59.43,49.68,54.79,55.86,10,1,1,0,0,8,7,5,1,1107.25,2417985.3,3663.0122,1912283.6,0,10723.582 -11814,14567,26288,26289,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.9367447,8.7559175,0,3,-2,-31.856857,0,-9,-9,2019,9,0,36,32,1,0,0,28.350491,28.350491,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.02,54.54,8.333333333333334,1,1,0,0,9,6,5,1,636.5,1102201.6,780640.38,337751.75,0,8043.9785 -11814,14567,26289,26288,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.9748306,9.0448246,0,3,2,-20.393274,0,-9,-9,2019,15,3,48,50,1,3,0,20.374817,20.374817,0,0,0,0,0,0,0,0,0,0,31.02,54.54,45.91,59.89,5,1,1,0,0,11,6,5,1,636.5,1102201.6,780640.38,337751.75,0,8043.9785 -11815,14568,26290,26291,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.8598518,8.8603907,0,1,10,49.769707,-9,-9,-9,2019,9,0,50,0,1,1,0,14.694336,14.694336,0,0,0,0,0,0,0,0,0,0,51,56,55.09,55.87,8,4,1,0,0,1,1,5,1,1492,1747773.5,1195141.3,286512.56,112191.38,4362.8716 -11815,14568,26291,26290,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.5216599,8.4961758,0,1,-10,87.792381,0,1,2,2019,9,0,38,37,1,0,0,14.669245,14.669245,0,0,0,0,0,0,0,0,4.4507332,0,55.09,55.87,51,56,8.333333333333334,1,1,0,0,9,1,5,1,1492,1747773.5,1195141.3,286512.56,112191.38,4362.8716 -11816,14569,26292,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1089.6449,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,0,2,1,1,746,205104.53,0,0,0,1216.954 -11817,14570,26293,26294,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,7,-10,-11.960076,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8155499,0,53.23,42.9,57.23,33.47,8.333333333333334,2,3,0,0,0,2,5,1,707,934178.06,865975.06,337230.13,0,5765.4834 -11817,14570,26294,26293,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,8.9861431,9.286212,53,10,-72.484909,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.2219849,9.4316864,57.23,33.47,53.23,42.9,8.333333333333334,2,3,0,0,7,2,5,1,707,934178.06,865975.06,337230.13,0,5765.4834 -11818,14571,26295,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,6.5289464,6.4212289,0,0,-923.92529,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,6.6204624,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,341,214508.48,0,0,0,12.032084 -11819,14572,26296,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-950.56927,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,13.65966,0,125.34312,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,13,1,1,148,451542.28,0,0,0,755.58325 -11820,14573,26297,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-881.2782,0,-9,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,2,1,0,208,0,0,0,0,2084.2273 -11821,14574,26298,26299,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.3323088,8.1664286,0,7,2,-21.842461,0,2,2,2019,11,0,32,21,1,0,0,13.265295,13.265295,0,0,0,0,2,0,0,0,4.0064902,0,39.68,58.52,54,53,6.666666666666667,1,1,0,0,8,12,5,1,799.5,1562831.5,1272761.5,335154.25,-12190.883,3536.0869 -11821,14574,26299,26298,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.4742231,8.7754421,0,7,-2,-8.3281403,0,-9,-9,2019,8,0,38,40,1,0,0,15.017821,15.017821,0,0,0,0,0,0,0,0,0,0,54,53,39.68,58.52,8,4,1,0,0,1,12,5,1,799.5,1562831.5,1272761.5,335154.25,-12190.883,3536.0869 -11822,14575,26300,26301,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.325304,8.340765,0,8,3,-71.600021,0,2,2,2019,8,0,37,37,1,0,0,13.223591,13.223591,0,0,0,0,0,1,1,0,0,0,55.36,51.57,37.74,51.32,6.666666666666667,1,1,0,0,9,11,5,1,1341,993765.56,993812.5,144816.44,75308.805,3658.6475 -11822,14575,26301,26300,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.4366894,8.3913984,0,8,-3,49.260105,0,2,2,2019,12,0,35,35,1,0,0,16.509586,16.509586,0,0,0,0,0,1,1,0,0,0,37.74,51.32,55.36,51.57,6.666666666666667,1,1,0,0,7,11,5,1,1341,993765.56,993812.5,144816.44,75308.805,3658.6475 -11823,14576,26302,-9,26303,26305,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1070.6323,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 -11823,14576,26303,26305,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.5052748,7.4614353,0,9,-1,106.43107,0,2,2,2019,6,0,25,27,1,0,0,8.1346216,8.1346216,0,0,0,0,0,1,1,0,0,0,52.4,55.58,51.19,49.37,6.666666666666667,1,1,0,0,7,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 -11823,14576,26304,-9,26303,26305,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1022.1157,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 -11823,14576,26305,26303,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.9579496,8.7070866,0,9,1,-103.66895,0,2,1,2019,8,0,48,50,1,0,0,14.952333,14.952333,0,0,0,0,0,1,1,0,0,0,51.19,49.37,52.4,55.58,6.666666666666667,1,1,0,0,10,12,4,1,1259.75,552480.25,151389.11,222368.02,37646.57,2912.4746 -11824,14577,26306,26307,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7903957,8.4528885,0,29,-2,36.804329,0,2,2,2019,15,5,45,45,1,5,0,15.213555,15.213555,0,0,0,0,0,0,0,0,6.3816166,0,56.33,48.32,50.82,49.75,8.333333333333334,1,1,0,0,11,5,5,1,489.5,773632.44,619779.63,298555.63,228172.88,5788.5571 -11824,14577,26307,26306,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7559967,8.4021826,0,29,2,124.83334,0,2,2,2019,10,0,44,49,1,0,0,20.692595,20.692595,0,0,0,0,0,0,0,0,7.8202868,0,50.82,49.75,56.33,48.32,8.333333333333334,1,1,0,0,11,5,5,1,489.5,773632.44,619779.63,298555.63,228172.88,5788.5571 -11825,14578,26308,26310,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.7960434,7.7385421,0,6,-2,-70.208954,0,3,3,2019,14,2,24,24,1,2,0,11.850484,11.850484,0,0,0,0,0,1,1,0,0,0,41.44,42.97,58.3,47.38,5,1,1,0,0,7,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 -11825,14578,26309,-9,26308,26310,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-833.48413,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 -11825,14578,26310,26308,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,0,0,0,6,2,-49.017544,0,2,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,47.38,41.44,42.97,6.666666666666667,1,1,0,0,0,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 -11825,14578,26311,-9,26308,26310,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1040.1165,-9,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,876,303434.38,0,144329.66,81933.781,1672.9907 -11826,14579,26312,26313,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.1915617,9.4768429,4.8905463,17,0,-100.667,0,2,1,2019,20,7,46,46,1,7,0,29.429613,29.429613,0,0,0,0,2,0,0,0,4.7419486,0,39.48,39.81,40.77,61.04,1.666666666666667,3,4,0,1,7,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 -11826,14579,26313,26312,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.9068475,7.9896059,0,17,0,.57272828,0,2,2,2019,12,3,40,38,1,3,0,8.0493097,8.0493097,0,0,0,0,0,0,0,0,6.1885767,0,40.77,61.04,39.48,39.81,3.333333333333333,4,2,0,0,10,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 -11826,14579,26314,-9,26313,26312,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1051.6572,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 -11826,14579,26315,-9,26313,26312,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-992.56421,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,5,1,531.25,2876221,1192659.3,1503659.1,248775.44,5482.3071 -11827,14580,26316,26317,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.7275548,5.8477163,8,4,-66.14872,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,119.79342,0,0,1,1,0,0,6.0087905,52.43,55.57,47.55,43.39,8.333333333333334,1,1,0,0,3,7,2,1,308.5,326761.91,68601.445,426885.19,0,1565.9441 -11827,14580,26317,26316,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,0,0,33,-4,-6.1866789,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,47.55,43.39,52.43,55.57,8.333333333333334,1,1,0,0,0,7,2,1,308.5,326761.91,68601.445,426885.19,0,1565.9441 -11828,14581,26318,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7121606,7.5445771,0,0,0,-925.45966,0,2,-9,2019,11,0,25,20,1,0,0,9.1875038,9.1875038,0,0,0,0,2,1,1,0,6.7854247,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,1446,29070.541,-39822.32,0,0,1550.3125 -11829,14582,26319,26320,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.3193626,8.0873499,43,4,-127.61586,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0752654,8.0562277,60.43,46.44,57.16,56.15,10,1,1,0,0,2,5,4,1,2013,2084183.8,1325703.3,352338.19,0,3498.3835 -11829,14582,26320,26319,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.3883734,7.8460374,43,-4,65.295898,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.965343,7.1841154,57.16,56.15,60.43,46.44,8.333333333333334,1,1,0,0,4,5,4,1,2013,2084183.8,1325703.3,352338.19,0,3498.3835 -11830,14583,26321,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,8.414012,8.575161,0,0,0,-956.54907,0,3,3,2019,16,4,53,42,1,4,0,9.8926773,9.8926773,0,0,0,0,0,1,1,0,0,0,40.99,46.46,-9,-9,3.333333333333333,1,1,0,1,10,10,5,0,298,-14724.096,-30254.494,0,0,2276.8879 -11831,14584,26322,-9,26325,26324,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.96155,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,407.25,111096.5,0,0,0,2372.144 -11831,14584,26323,-9,26325,26324,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.1816,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,407.25,111096.5,0,0,0,2372.144 -11831,14584,26324,26325,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.1784973,8.4343891,0,3,5,-44.865997,0,-9,-9,2019,16,5,42,40,1,5,0,10.621573,10.621573,0,0,0,0,0,1,1,0,0,0,39.81,36.04,34.44,48.18,6.666666666666667,2,3,0,1,10,8,3,0,407.25,111096.5,0,0,0,2372.144 -11831,14584,26325,26324,-9,-9,1,0,31,0,2,0,2,2,-9,0,2,7.2156901,7.647512,0,3,-5,110.89075,0,2,2,2019,11,0,27,15,1,0,0,7.1722617,7.1722617,0,0,0,0,0,1,1,0,0,0,34.44,48.18,39.81,36.04,8.333333333333334,2,3,0,1,5,8,3,0,407.25,111096.5,0,0,0,2372.144 -11832,14585,26326,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.3338871,8.3662806,0,0,0,-914.25854,0,3,2,2019,12,1,43,43,1,1,0,13.343618,13.343618,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,1118,89500.078,188439.45,205505.83,114574.62,2007.3252 -11833,14586,26327,-9,26329,26328,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-951.41815,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,854.66669,67454.133,-30587.582,0,0,4839.103 -11833,14586,26328,26329,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.6800432,9.0041752,0,9,0,42.148636,0,-9,-9,2019,11,0,35,30,1,0,0,21.380209,21.380209,0,0,0,0,0,1,0,1,0,0,52,54.51,38.27,54.57,5,2,3,0,0,10,9,4,1,854.66669,67454.133,-30587.582,0,0,4839.103 -11833,14586,26329,26328,-9,-9,1,0,37,0,3,0,2,2,-9,1,2,6.8959446,6.9449797,0,20,0,117.09531,0,3,2,2019,12,0,20,20,1,0,0,6.0088873,6.0088873,0,0,0,0,27,1,0,1,.44667882,0,38.27,54.57,52,54.51,5,2,3,0,1,5,9,4,1,854.66669,67454.133,-30587.582,0,0,4839.103 -11834,14587,26330,26331,-9,-9,1,1,57,0,2,0,1,1,-9,0,2,7.8717265,7.8104796,0,9,14,-18.93582,-9,-9,-9,2019,14,4,50,0,1,4,0,6.0378842,6.0378842,0,0,0,0,0,1,1,0,0,0,55.36,38.34,42.03,42.92,5,1,1,0,0,10,12,4,0,826.33331,375946.41,115898.23,339376.53,50215.77,3065.103 -11834,14587,26331,26330,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.1914072,8.1461182,0,9,-14,24.432703,0,2,3,2019,9,0,40,40,1,0,0,9.847249,9.847249,0,0,0,0,0,1,1,0,0,0,42.03,42.92,55.36,38.34,8.333333333333334,1,1,0,0,12,12,4,0,826.33331,375946.41,115898.23,339376.53,50215.77,3065.103 -11834,14587,26332,-9,26331,26330,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.3058,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,826.33331,375946.41,115898.23,339376.53,50215.77,3065.103 -11835,14588,26333,26334,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.383153,7.444006,0,31,-5,17.684656,0,2,3,2019,11,0,25,30,1,0,0,5.5743055,5.5743055,0,0,0,0,0,0,0,0,0,0,47.61,56.37,60.53,48.35,6.666666666666667,1,1,0,0,13,13,3,1,774.5,249337.11,8062.4321,0,0,1362.2659 -11835,14588,26334,26333,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,6.9749265,6.903862,11,5,11.107413,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.564235,6.7849364,60.53,48.35,47.61,56.37,10,1,1,0,0,12,13,3,1,774.5,249337.11,8062.4321,0,0,1362.2659 -11835,14589,26335,-9,26333,26334,1,1,27,0,0,0,2,2,-9,0,3,8.7242689,8.6285419,0,0,0,-890.23828,0,2,2,2019,9,0,40,45,1,0,1,18.441582,18.441582,0,0,0,0,0,0,0,0,0,0,44.98,47.11,-9,-9,6.666666666666667,1,1,0,0,3,13,5,1,264,60404.473,0,0,0,2237.5273 -11835,14590,26336,-9,26333,26334,1,0,22,0,0,0,2,2,-9,0,4,7.9765544,7.7837024,0,0,0,-835.62836,0,2,2,2019,8,0,42,42,1,0,1,6.2769542,6.2769542,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,4,13,3,1,888,-267376.25,-57285.73,0,0,1266.7781 -11836,14591,26337,26338,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,10,4,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,0,1,.45972475,0,53,46,32.92,29.8,7,1,1,0,0,0,7,1,0,949.5,42191.918,0,0,0,2669.7976 -11836,14591,26338,26337,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,52,-4,0,0,2,-9,2019,21,7,0,0,4,7,0,0,0,1,0,7.697763,0,7,1,0,1,0,0,32.92,29.8,53,46,5,1,1,0,0,0,7,1,0,949.5,42191.918,0,0,0,2669.7976 -11837,14592,26339,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.9348297,7.1572518,0,0,-887.33099,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.565681,6.8161569,47.28,50.99,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,156,146933.33,76942.648,284271.13,0,1401.8879 -11838,14593,26340,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.698204,8.4185658,7.0231624,0,0,-1020.6838,0,2,2,2019,12,3,11,43,1,3,0,37.576809,37.576809,0,0,0,0,0,0,0,0,7.289072,0,49.25,50.21,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,1061,526234,164384.95,148506.02,0,1993.4076 -11839,14594,26341,26342,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,8.485033,8.7097607,0,6,-5,40.590763,0,2,2,2019,4,0,37,40,1,0,0,14.514948,14.514948,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,517,552978.88,284279.31,76557.328,0,3925.6648 -11839,14594,26342,26341,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.1408215,8.5882454,0,6,5,-127.62388,0,3,3,2019,9,0,48,40,1,0,0,12.597201,12.597201,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,6.666666666666667,1,1,0,0,4,5,5,1,517,552978.88,284279.31,76557.328,0,3925.6648 -11840,14595,26343,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1116.5659,0,2,3,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,0,0,10,1,0,289,0,0,0,0,1813.5968 -11841,14596,26344,26345,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,55,2,-50.456085,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.8968792,0,55.94,47.09,46.61,41.8,8.333333333333334,1,1,0,0,0,8,3,1,442.5,840432.38,263871.66,390957.31,0,3060.3296 -11841,14596,26345,26344,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.288312,8.1144257,55,-2,79.35202,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3934839,8.156847,46.61,41.8,55.94,47.09,8.333333333333334,1,1,0,0,0,8,3,1,442.5,840432.38,263871.66,390957.31,0,3060.3296 -11842,14597,26346,-9,26348,26347,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.7784,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 -11842,14597,26347,26348,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.5656223,8.7098379,0,9,-3,70.62159,0,-9,-9,2019,6,0,50,45,1,0,0,11.656711,11.656711,0,0,0,0,0,1,1,0,0,0,47.44,56.39,45.73,57.57,8.333333333333334,1,1,0,0,10,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 -11842,14597,26348,26347,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.5066605,8.48386,0,9,3,-35.732971,0,-9,-9,2019,11,0,35,36,1,0,0,14.60588,14.60588,0,0,0,0,0,1,1,0,0,0,45.73,57.57,47.44,56.39,8.333333333333334,1,1,0,0,11,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 -11842,14597,26349,-9,26348,26347,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.68451,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1019.75,247605.67,106340.66,134623.38,39968.734,4122.6519 -11843,14598,26350,-9,26351,26352,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.40668,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,464,154018.83,3188.3333,138551.06,81983.359,2768.5454 -11843,14598,26351,26352,-9,-9,1,0,39,0,1,0,1,1,-9,0,1,7.8498144,7.8380718,0,13,-2,-60.215965,0,2,2,2019,8,0,40,40,1,0,0,10.363119,10.363119,0,0,0,0,0,1,1,0,0,0,61.93,22.07,51,56,6.666666666666667,2,3,0,0,10,8,4,0,464,154018.83,3188.3333,138551.06,81983.359,2768.5454 -11843,14598,26352,26351,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.1784019,8.0965719,0,13,2,44.533386,0,-9,-9,2019,9,0,38,40,1,1,0,8.3988571,8.3988571,0,0,0,0,0,1,1,0,0,0,51,56,61.93,22.07,8,2,3,0,0,1,8,4,0,464,154018.83,3188.3333,138551.06,81983.359,2768.5454 -11844,14599,26353,26356,-9,-9,1,0,19,2,2,0,3,3,-9,1,4,0,0,0,3,-2,-.66255009,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,32.72,43.47,7,1,1,0,0,0,12,3,0,637.75,-84818.438,0,0,0,2078.4006 -11844,14599,26354,-9,26353,26356,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-951.68616,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,0,637.75,-84818.438,0,0,0,2078.4006 -11844,14599,26355,-9,26353,26356,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-962.95483,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,637.75,-84818.438,0,0,0,2078.4006 -11844,14599,26356,26353,-9,-9,1,1,21,2,2,0,1,1,-9,0,5,8.4946747,8.5874777,0,3,2,24.257891,0,-9,-9,2019,0,0,30,20,1,0,0,19.335913,19.335913,0,0,0,0,7,1,1,0,0,0,32.72,43.47,46,59,6.666666666666667,1,1,0,0,3,12,3,0,637.75,-84818.438,0,0,0,2078.4006 -11845,14600,26357,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.0934873,7.1334476,0,0,-985.00995,0,2,1,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,6.2541127,6.7456245,42.7,34.62,-9,-9,5,1,1,0,0,9,2,2,1,1278,472562.31,155793.63,120659.17,0,723.20905 -11846,14601,26358,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.5176201,8.2831116,0,0,0,-1074.0348,0,-9,-9,2019,9,0,38,40,1,0,0,13.83215,13.83215,0,0,0,0,0,1,1,0,2.434392,0,49.28,52.09,-9,-9,5,1,1,0,0,11,4,5,1,1139,-2952.0198,309819.25,0,0,2155.3113 -11847,14602,26359,26360,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.0456676,5.8136096,9,2,133.53764,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9721751,58.72,51.29,60.02,56.42,8.333333333333334,1,1,0,0,6,11,2,1,593,785370.25,529639.19,116547.86,0,2602.2773 -11847,14602,26360,26359,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.3930984,6.7633667,21,-2,-90.523911,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.02209,7.0748467,60.02,56.42,58.72,51.29,10,1,1,0,0,10,11,2,1,593,785370.25,529639.19,116547.86,0,2602.2773 -11848,14603,26361,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1017.7066,-9,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,-9,-9,0,1,1,0,0,0,13,1,0,889,-17235.369,0,0,0,580.66766 -11848,14604,26362,-9,26361,-9,1,0,25,0,0,0,1,1,-9,1,4,0,0,0,0,0,-917.37109,-9,2,1,2019,11,4,0,0,3,4,1,0,0,0,0,0,0,42,1,1,0,0,0,40.96,61.14,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,140,0,0,0,0,653.24951 -11848,14605,26363,-9,26361,-9,1,0,23,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1074.5101,-9,2,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,0,281,99599.922,0,0,0,451.45236 -11849,14606,26364,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9651651,8.2873802,7.4318681,0,0,-1045.3547,0,2,3,2019,19,7,26,19,1,7,0,12.030779,12.030779,0,0,0,0,0,1,1,0,0,8.1226606,45.82,53.46,-9,-9,5,1,1,0,0,10,12,4,1,585,479831.81,443631.09,36444.723,0,1754.9561 -11850,14607,26365,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1007.5964,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3454585,0,52.37,56.93,-9,-9,0,1,1,0,0,0,7,1,1,580,387797.41,0,0,0,694.14722 -11851,14608,26366,26367,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.9836111,7.8265996,0,8,-6,-52.409321,0,2,2,2019,11,2,37,39,1,2,0,9.2135191,9.2135191,0,0,0,0,7,0,0,0,0,0,47.98,48.03,50.86,41.37,8.333333333333334,1,1,0,0,9,11,4,1,1717.5,-431652.16,28759.637,94087.297,133914.67,2470.228 -11851,14608,26367,26366,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.1027069,8.135416,0,8,6,-90.524536,0,-9,-9,2019,13,1,45,42,1,1,0,8.6470194,8.6470194,0,0,0,0,0,0,0,0,0,0,50.86,41.37,47.98,48.03,8.333333333333334,1,1,0,0,10,11,4,1,1717.5,-431652.16,28759.637,94087.297,133914.67,2470.228 -11852,14609,26368,26369,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,0,0,0,20,-11,-30.071398,0,2,3,2019,4,0,0,20,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,60.29,52.11,43.92,33.18,8.333333333333334,1,1,1,0,5,10,2,0,525,281612.06,0,122802.2,0,901.95752 -11852,14609,26369,26368,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,4.6511011,4.3955922,19,11,-6.3011007,0,-9,3,2019,15,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,4.568697,4.4452734,43.92,33.18,60.29,52.11,3.333333333333333,1,1,0,1,3,10,2,0,525,281612.06,0,122802.2,0,901.95752 -11852,14610,26370,-9,26368,26369,1,1,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-842.94348,0,2,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.31,47.41,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,203,-5749.6025,0,0,0,897.5531 -11853,14611,26371,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2095604,7.9670687,0,0,0,-897.32813,0,2,2,2019,3,0,40,42,1,0,0,10.790563,10.790563,0,0,0,0,2,0,0,0,6.4917903,0,49.65,57.01,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,823,259603.08,28915.063,181783.95,0,1547.3104 -11854,14612,26372,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1076.1488,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.65,56.19,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,1254,275172,0,0,0,1207.9065 -11854,14613,26373,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,7.924901,7.927299,0,0,0,-981.87042,0,3,2,2019,9,0,40,40,1,0,0,7.9212089,7.9212089,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,13,3,0,329,-398518.59,-21095.309,0,0,661.64966 -11854,14614,26374,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,7.6223154,7.6871452,0,0,0,-1057.4392,0,-9,-9,2019,9,0,35,40,1,1,0,6.6431828,6.6431828,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,4,13,3,0,447,-108749.7,152492.34,311743.56,98695.648,968.01343 -11854,14615,26375,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.3565292,8.1432753,0,0,0,-1133.9344,0,-9,-9,2019,12,0,37,37,1,0,0,15.177677,15.177677,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,6.666666666666667,1,1,0,0,9,13,4,0,266,6370.0298,15415.135,0,0,2347.8384 -11855,14616,26376,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.529295,6.5582294,0,0,-939.02124,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.7465186,52.42,28.61,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,114,225468.13,208086.39,159421.47,0,874.64313 -11856,14617,26377,-9,26379,26378,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.9446,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,717.33331,711278.19,110150.84,294545.47,185067.77,5538.1538 -11856,14617,26378,26379,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,8.7056942,8.7986441,0,7,0,64.697876,0,2,2,2019,11,0,42,41,1,0,0,23.324402,23.324402,0,0,0,0,0,0,0,0,0,0,49.86,55.31,62.01,38.87,10,1,1,0,0,7,12,5,1,717.33331,711278.19,110150.84,294545.47,185067.77,5538.1538 -11856,14617,26379,26378,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,9.5599298,9.0465469,0,7,0,-27.995239,0,2,2,2019,8,1,35,35,1,1,0,36.407238,36.407238,0,0,0,0,0,0,0,0,4.6564302,0,62.01,38.87,49.86,55.31,10,1,1,0,0,9,12,5,1,717.33331,711278.19,110150.84,294545.47,185067.77,5538.1538 -11857,14618,26380,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-947.72192,0,2,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,2.2819951,0,39.09,56.19,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,354,1004566.5,-143106.47,597502.69,0,5.1044259 -11858,14619,26381,26382,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.4647579,8.8615437,0,5,0,9.3390942,0,-9,-9,2019,9,0,38,38,1,0,0,18.577333,18.577333,0,0,0,0,0,0,0,0,6.8936868,0,55.96,49.93,63.48,51.85,8.333333333333334,1,1,0,0,12,7,5,1,863.5,22083.152,0,0,0,5620.2363 -11858,14619,26382,26381,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.6036806,9.0141287,0,5,0,-41.172268,0,2,2,2019,6,0,35,35,1,0,0,24.598,24.598,0,0,0,0,0,0,0,0,7.1087995,0,63.48,51.85,55.96,49.93,10,1,1,0,0,12,7,5,1,863.5,22083.152,0,0,0,5620.2363 -11859,14620,26383,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.702528,8.9065533,0,0,0,-1061.6703,0,-9,-9,2019,8,0,38,44,1,0,0,15.753502,15.753502,0,0,0,0,2,0,0,0,0,0,55.29,42.09,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,385,459768.81,411068.78,0,0,1188.9517 -11859,14621,26384,-9,26383,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0247412,7.9850898,0,0,0,-1089.9824,0,2,-9,2019,12,0,40,45,1,0,1,8.0056114,8.0056114,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,5,12,4,0,1237,-80259.398,0,0,0,1279.0664 -11860,14622,26385,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-974.61108,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,34.34,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,336,95949.008,0,0,0,1269.8621 -11861,14623,26386,26387,-9,-9,1,1,47,1,1,0,2,2,-9,0,4,8.831666,9.150753,0,1,14,53.097454,-9,-9,-9,2019,20,5,60,0,1,5,0,15.690244,15.690244,0,0,0,0,0,1,1,0,0,0,48.03,53.29,50.46,48.95,8.333333333333334,1,1,0,0,1,9,5,0,262,589752,277183.75,411162.34,229437.48,3132.3345 -11861,14623,26387,26386,-9,-9,1,0,33,1,1,0,2,2,-9,0,2,0,0,0,1,-14,42.054024,-9,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,48.95,48.03,53.29,8.333333333333334,1,1,0,0,4,9,5,0,262,589752,277183.75,411162.34,229437.48,3132.3345 -11861,14623,26388,-9,26387,26386,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-865.67554,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,262,589752,277183.75,411162.34,229437.48,3132.3345 -11862,14624,26389,26390,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,9.0980387,8.9566135,0,8,-2,20.742168,0,3,2,2019,13,4,38,40,1,4,0,26.274103,26.274103,0,0,0,0,0,0,0,0,3.4094989,0,54.92,29.11,42.85,60.33,6.666666666666667,1,1,0,0,10,6,5,1,917,666644.5,540018.88,272357.03,96852.156,4571.5688 -11862,14624,26390,26389,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.3059416,8.5388441,0,33,2,-60.336575,0,3,3,2019,8,0,41,39,1,0,0,11.856178,11.856178,0,0,0,0,0,0,0,0,4.775867,0,42.85,60.33,54.92,29.11,6.666666666666667,1,1,0,0,10,6,5,1,917,666644.5,540018.88,272357.03,96852.156,4571.5688 -11862,14625,26391,-9,26390,26389,1,0,25,0,0,0,2,2,-9,0,5,8.4283476,8.147193,0,0,0,-1006.9091,0,2,2,2019,7,0,38,38,1,0,1,9.9665937,9.9665937,0,0,0,0,0,0,0,0,3.0165975,0,57.06,57.76,-9,-9,10,1,1,0,0,10,6,4,1,363,78872.172,-131696.23,0,0,751.74023 -11862,14626,26392,-9,26390,26389,1,0,23,0,0,0,1,1,-9,0,5,8.1645708,8.0741091,0,0,0,-1028.5773,0,2,2,2019,9,0,15,0,1,0,1,30.772221,30.772221,0,0,0,0,0,0,0,0,3.4111118,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,1726,184205.7,-95195.594,0,0,1061.9033 -11863,14627,26393,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,6.5746098,7.1097269,5.9353595,0,0,-944.50995,0,2,2,2019,6,0,12,16,1,0,0,8.1046152,8.1046152,0,0,0,0,2,1,1,0,5.9596033,5.6228819,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,852,291400.28,111701.34,186880.3,0,1242.0112 -11864,14628,26394,26395,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.6258898,8.2323751,0,31,-1,53.357758,0,2,-9,2019,11,1,42,48,1,1,0,11.617255,11.617255,0,0,0,0,0,0,0,0,0,0,46.92,46.27,54.62,48,5,1,1,0,0,10,9,5,1,401,1785728,1359564.6,397063.06,-4052.4492,3082.6494 -11864,14628,26395,26394,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2570248,8.4273872,0,31,1,168.10115,0,3,-9,2019,6,0,36,41,1,0,0,12.992671,12.992671,0,0,0,0,0,0,0,0,0,0,54.62,48,46.92,46.27,8.333333333333334,1,1,0,0,8,9,5,1,401,1785728,1359564.6,397063.06,-4052.4492,3082.6494 -11864,14629,26396,-9,26395,26394,1,1,24,0,0,0,1,1,-9,0,3,8.0589399,7.9028478,0,0,0,-1004.7607,0,2,2,2019,9,1,40,42,1,1,1,10.112788,10.112788,0,0,0,0,0,0,0,0,0,0,41.51,56.74,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,1337,-326680,26854.389,0,0,1678.5372 -11865,14630,26397,26398,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.9656787,8.2028399,0,28,-1,23.738525,0,2,3,2019,12,0,30,40,1,0,0,11.623949,11.623949,0,0,0,0,27,0,0,0,0,0,36.58,50.4,50.28,51.35,3.333333333333333,1,1,0,0,11,10,5,1,334.5,823499.56,366537.25,283750,68496.047,3122.7178 -11865,14630,26398,26397,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.644186,8.4572096,0,28,1,57.021282,0,2,3,2019,11,0,42,38,1,0,0,13.50889,13.50889,0,0,0,0,14.5,0,0,0,2.2690389,0,50.28,51.35,36.58,50.4,8.333333333333334,1,1,0,0,11,10,5,1,334.5,823499.56,366537.25,283750,68496.047,3122.7178 -11865,14631,26399,-9,26397,26398,1,0,22,0,0,0,1,1,-9,0,5,7.9267592,7.6871777,0,0,0,-870.30298,0,1,2,2019,8,0,40,40,1,0,1,8.1471596,8.1471596,0,0,0,0,2,0,0,0,1.1368743,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,464,515755.44,-38416.84,0,0,1554.5247 -11865,14632,26400,-9,26397,26398,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-1115.4438,-9,1,2,2019,17,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,0,0,27.45,63.27,-9,-9,5,1,1,0,0,2,10,1,1,1658,-363466.75,0,0,0,533.38849 -11866,14633,26401,26402,-9,-9,1,1,38,1,2,0,2,2,-9,0,4,0,0,0,1,1,-95.453842,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49,56,8.333333333333334,1,1,0,0,0,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 -11866,14633,26402,26401,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.9532881,9.0199556,0,1,-1,1.0574834,-9,-9,-9,2019,11,0,38,0,1,2,0,20.097298,20.097298,0,0,0,0,0,1,1,0,0,0,49,56,51.24,58.84,7,4,1,0,0,1,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 -11866,14633,26403,-9,26402,26401,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.64319,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 -11866,14633,26404,-9,26402,26401,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.306,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,0,728.5,18411.551,27935.324,212252.11,144888.3,2822.6833 -11867,14634,26405,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.4295931,6.7733173,0,0,-924.82758,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,6.4679747,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2573,674228.69,368739.22,178985.52,0,1214.5741 -11868,14635,26406,26407,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,9.1416092,9.1913624,0,7,2,-112.18113,0,2,3,2019,9,1,40,40,1,1,0,22.135834,22.135834,0,0,0,0,0,0,0,0,0,0,50,49,57.33,53.46,6.666666666666667,1,1,0,0,8,9,5,1,1271,1569955,1077411.4,526800.31,130572.5,4514.5029 -11868,14635,26407,26406,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.4366083,7.2906337,0,7,-2,13.342347,0,2,2,2019,10,1,40,18,1,1,0,6.7374988,6.7374988,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50,49,8.333333333333334,1,1,0,0,8,9,5,1,1271,1569955,1077411.4,526800.31,130572.5,4514.5029 -11868,14636,26408,-9,26407,26406,1,0,25,0,0,0,1,1,0,0,3,0,0,0,0,0,-997.58832,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,1,7,9,1,1,161,17894.469,0,0,0,1133.7904 -11869,14637,26409,-9,-9,-9,1,0,36,1,4,0,3,3,-9,0,5,0,0,0,0,0,-811.29364,-9,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.63,46.73,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 -11869,14637,26410,-9,26409,-9,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-830.30139,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 -11869,14637,26411,-9,26409,-9,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-863.64606,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 -11869,14637,26412,-9,26409,-9,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-977.09167,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,800.75,-94870.406,0,0,0,2020.2323 -11870,14638,26413,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.4666004,7.4960084,0,0,-1025.0497,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2666385,7.4319048,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,905,178114.69,224759.81,187448.17,0,2057.6487 -11871,14639,26414,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.4123855,7.384407,4.1080012,0,0,-952.75671,-9,2,2,2019,10,0,24,0,1,1,0,7.5647154,7.5647154,0,0,0,0,0,1,1,0,4.9614186,0,50,54,-9,-9,8,1,1,0,0,9,10,3,1,261.5,108587.75,-16658.594,0,0,1499.4738 -11871,14639,26415,-9,26414,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.08038,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,261.5,108587.75,-16658.594,0,0,1499.4738 -11872,14640,26416,26417,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,0,0,57,-1,-61.689968,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5225215,0,57.73,54.53,61.28,48.88,10,1,1,0,0,0,5,3,1,507.5,1116590.4,203723.38,410475.84,0,2125.4968 -11872,14640,26417,26416,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.918756,7.8097515,8,1,125.63179,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8444853,7.6408286,61.28,48.88,57.73,54.53,8.333333333333334,1,1,0,0,0,5,3,1,507.5,1116590.4,203723.38,410475.84,0,2125.4968 -11873,14641,26418,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.7332134,8.7772131,0,2,-6,27.934353,0,2,2,2019,7,0,48,40,1,0,0,13.636789,13.636789,0,0,0,0,0,0,0,0,0,0,63.25,32,50.35,46.02,8.333333333333334,1,1,0,0,11,9,5,1,360,271917.13,0,0,0,3062.7842 -11873,14642,26419,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.4405231,8.546525,0,2,6,-1.8553083,0,-9,-9,2019,6,0,45,45,1,0,0,15.541688,15.541688,0,0,0,0,0,0,0,0,.58621627,0,50.35,46.02,63.25,32,6.666666666666667,1,1,0,0,2,9,5,1,1361,-5452.0435,0,0,0,2484.9714 -11874,14643,26420,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1027.8031,0,2,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,0,1,0,0,48.68,13.54,-9,-9,1.666666666666667,1,1,0,1,0,11,2,1,711,149187.5,0,0,0,1220.5184 -11875,14644,26421,26423,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.540741,8.957036,0,8,-1,-21.155846,0,-9,-9,2019,10,0,38,38,1,0,0,21.065769,21.065769,0,0,0,0,0,1,1,0,0,0,50.68,39.02,54.79,55.86,8.333333333333334,2,3,0,0,10,5,5,1,654.66669,1745458,1668647.8,236223.73,6163.7588,4825.3232 -11875,14644,26422,-9,26421,26423,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1137.5725,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,5,5,1,654.66669,1745458,1668647.8,236223.73,6163.7588,4825.3232 -11875,14644,26423,26421,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.4824362,8.4455671,0,16,1,-3.8703346,0,2,2,2019,6,0,38,37,1,0,0,16.468332,16.468332,0,0,0,0,0,1,1,0,2.4476719,0,54.79,55.86,50.68,39.02,8.333333333333334,2,3,0,0,10,5,5,1,654.66669,1745458,1668647.8,236223.73,6163.7588,4825.3232 -11876,14645,26424,26425,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.6400685,6.9486508,49,-2,-186.92743,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0503983,7.1627698,59.14,46.97,67.91,30.66,8.333333333333334,1,1,0,0,6,5,2,1,614.5,114370.56,334492.25,170249.8,0,2209.8945 -11876,14645,26425,26424,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.1955528,6.1033487,49,2,-64.963821,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.154798,5.9361625,67.91,30.66,59.14,46.97,10,1,1,0,0,0,5,2,1,614.5,114370.56,334492.25,170249.8,0,2209.8945 -11876,14646,26426,-9,26424,26425,1,1,30,0,0,0,2,2,-9,0,4,7.2834964,6.8319664,0,0,0,-1005.5312,0,2,2,2019,10,0,15,15,1,1,0,8.3126526,8.3126526,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,6.666666666666667,3,4,0,0,3,5,2,1,590,529304,0,0,0,1045.0701 -11877,14647,26427,26428,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,6.2802463,8.6935959,8.7194805,4,2,3.7928386,0,2,2,2019,7,0,7,7,1,0,0,9.6004391,9.6004391,0,0,0,0,0,0,0,0,7.2068706,8.9205523,59.43,58.05,49.21,28.73,10,1,1,0,0,7,12,5,1,1073,723680.13,598502.5,182634.72,95892.219,3982.7573 -11877,14647,26428,26427,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.5149622,7.4619613,3.0368154,4,-2,103.1735,0,-9,-9,2019,7,0,14,19,1,0,0,15.709607,15.709607,0,0,0,0,0,0,0,0,3.207233,3.0093148,49.21,28.73,59.43,58.05,6.666666666666667,1,1,0,0,10,12,5,1,1073,723680.13,598502.5,182634.72,95892.219,3982.7573 -11877,14648,26429,-9,26428,26427,1,0,27,0,0,0,1,1,-9,0,4,8.4513874,8.2975674,0,0,0,-1018.9539,0,2,1,2019,9,0,37,37,1,0,1,13.493253,13.493253,0,0,0,0,0,0,0,0,3.6174653,0,47.72,53.77,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,175,-207737.11,47966.863,0,0,1962.2809 -11878,14649,26430,26431,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.3120174,9.6213465,0,10,2,3.7505989,0,3,2,2019,7,0,47,52,1,0,0,34.044079,34.044079,0,0,0,0,0,0,0,0,5.7170849,0,57.17,50.61,50,55,8.333333333333334,1,1,0,0,11,10,5,1,240.5,6869580,5471704,848462.25,0,5316.2949 -11878,14649,26431,26430,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.2005939,7.4857721,0,10,-2,148.9138,0,-9,-9,2019,10,0,20,25,1,1,0,8.0697451,8.0697451,0,0,0,0,0,0,0,0,0,0,50,55,57.17,50.61,8,4,1,0,0,1,10,5,1,240.5,6869580,5471704,848462.25,0,5316.2949 -11879,14650,26432,26433,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.6900563,7.8491197,0,41,-6,53.48008,0,3,-9,2019,7,0,38,40,1,0,0,6.2730637,6.2730637,0,0,0,0,0,0,0,0,0,0,57.33,53.46,52,54.51,8.333333333333334,1,1,0,0,9,4,3,1,415,480601.25,100875.75,275107.53,0,1569.6528 -11879,14650,26433,26432,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.1802697,7.2001114,4.8358788,41,6,-42.6926,0,3,3,2019,12,0,40,40,1,0,0,3.0930121,3.0930121,0,0,0,0,0,0,0,0,5.1841874,4.8862128,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,9,4,3,1,415,480601.25,100875.75,275107.53,0,1569.6528 -11879,14651,26434,-9,26432,26433,1,1,29,0,0,0,2,2,-9,0,3,9.0372858,9.4367228,0,0,0,-928.539,0,3,2,2019,7,0,47,35,1,0,1,23.69451,23.69451,0,0,0,0,0,0,0,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,6,4,5,1,982,124839.4,93566.375,0,0,3469.3301 -11880,14652,26435,26436,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0556488,8.0703526,0,2,-1,36.738129,-9,-9,-9,2019,7,0,25,0,1,0,0,16.494844,16.494844,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,11,9,5,1,609,357829.25,3363.6074,369821.94,0,3255.1299 -11880,14652,26436,26435,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.5858564,8.2552299,0,2,1,-21.226563,0,2,2,2019,8,1,66,62,1,1,0,8.4902115,8.4902115,0,0,0,0,0,0,0,0,1.972788,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,9,5,1,609,357829.25,3363.6074,369821.94,0,3255.1299 -11881,14653,26437,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.8401089,7.707139,0,0,0,-952.83417,0,3,3,2019,6,0,40,35,1,0,0,6.7910385,6.7910385,0,0,0,0,0,0,0,0,0,0,58.16,48.06,-9,-9,5,4,5,0,0,8,11,3,0,1765,756982.13,90299.25,272580.47,93704.648,1216.3285 -11882,14654,26438,26439,-9,-9,1,1,36,0,1,0,2,2,-9,0,2,7.5720892,7.5802565,0,7,3,67.321877,0,1,1,2019,7,0,50,40,1,0,0,3.8474252,3.8474252,0,0,0,0,7,1,1,0,0,0,41.05,49.17,44,52,5,2,3,0,0,8,8,3,1,397,833470.94,299325.59,316425.59,0,2117.8445 -11882,14654,26439,26438,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,7.8770366,7.7631907,0,7,-3,-100.80658,0,-9,-9,2019,31,10,32,35,1,10,0,7.3255024,7.3255024,0,0,0,0,0,1,1,0,0,0,44,52,41.05,49.17,1.666666666666667,2,3,0,1,2,8,3,1,397,833470.94,299325.59,316425.59,0,2117.8445 -11882,14654,26440,-9,26439,26438,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.17603,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,397,833470.94,299325.59,316425.59,0,2117.8445 -11882,14655,26441,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.5498543,8.4605694,0,0,0,-902.38977,0,1,2,2019,23,10,30,30,1,10,1,21.511969,21.511969,0,0,0,1.9234327,0,1,1,0,0,0,27.34,64.59,-9,-9,6.666666666666667,2,3,0,0,11,8,5,1,834,221010.94,79649.32,227605.05,84337.492,1713.8474 -11883,14656,26442,26443,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.0071411,7.8587737,0,29,5,-84.921997,0,-9,-9,2019,8,0,38,40,1,0,0,7.3094859,7.3094859,0,0,0,0,0,1,1,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,7,8,5,0,436,461740.44,215534.66,309204.66,0,3490.23 -11883,14656,26443,26442,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.4313641,8.3631725,0,9,-5,-28.191753,0,2,2,2019,9,0,40,42,1,0,0,14.543831,14.543831,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,11,8,5,0,436,461740.44,215534.66,309204.66,0,3490.23 -11883,14657,26444,-9,26443,26442,1,1,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-922.81708,-9,2,1,2019,11,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,4,2,0,0,6,8,1,0,469,-85053.305,0,0,0,0 -11883,14658,26445,-9,26443,26442,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1027.8363,-9,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,184,227005.86,0,0,0,0 -11884,14659,26446,26447,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.7143865,5.0696378,57,-4,4.3837738,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7846513,5.2216673,60.05,45.35,37.74,24.55,8.333333333333334,1,1,0,0,0,10,2,1,403,403587.81,78658.844,213921.34,0,1411.5283 -11884,14659,26447,26446,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.4189439,7.3737698,57,4,-68.112076,0,1,3,2019,10,1,0,0,4,1,0,0,0,1,0,1.2977418,0,0,1,1,0,.62289077,7.2667084,37.74,24.55,60.05,45.35,3.333333333333333,1,1,0,0,0,10,2,1,403,403587.81,78658.844,213921.34,0,1411.5283 -11885,14660,26448,26449,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,8,2,0,0,3,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,35.87,43.12,30.35,42.02,1.666666666666667,1,1,1,0,0,6,1,0,2447,-173534.84,0,0,0,381.41391 -11885,14660,26449,26448,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,0,1,0,0,30.35,42.02,35.87,43.12,5,1,1,1,0,0,6,1,0,2447,-173534.84,0,0,0,381.41391 -11885,14661,26450,-9,26448,26449,1,1,28,0,0,0,2,2,-9,0,3,8.540493,8.3315878,0,0,0,-954.30212,0,2,2,2019,7,0,56,21,1,0,1,10.324758,10.324758,0,0,0,0,0,1,0,1,0,0,44.57,46.8,-9,-9,5,1,1,0,0,3,6,4,0,417,58262.297,-65273.758,0,0,2392.1128 -11885,14662,26451,-9,26448,26449,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1043.6135,0,2,2,2019,6,1,0,0,3,1,1,0,0,0,0,0,0,42,1,0,1,0,0,38.86,51.72,-9,-9,10,1,1,1,0,0,6,1,0,1015,0,0,0,0,557.81201 -11886,14663,26452,26453,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.7199278,8.8376818,0,27,-8,-89.183205,0,3,3,2019,12,0,37,37,1,0,0,11.284676,11.284676,0,0,0,0,0,0,0,0,0,0,44.92,39.99,56.74,39.03,3.333333333333333,1,1,0,1,11,2,5,1,487.5,108412.45,-63154.668,0,0,2714.0728 -11886,14663,26453,26452,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,7.6971936,7.6927176,0,25,8,52.596596,0,3,3,2019,8,0,48,0,1,0,0,4.7711735,4.7711735,0,0,0,0,0,0,0,0,0,0,56.74,39.03,44.92,39.99,8.333333333333334,1,1,0,0,11,2,5,1,487.5,108412.45,-63154.668,0,0,2714.0728 -11886,14664,26454,-9,26452,26453,1,1,22,0,0,0,2,2,-9,0,3,8.2682695,8.1033745,0,0,0,-1095.9192,0,2,1,2019,23,8,35,36,1,8,1,11.59338,11.59338,0,0,0,0,0,0,0,0,0,0,22.59,65.42,-9,-9,5,1,1,0,0,4,2,4,1,270,285089.75,-7218.521,0,0,1318.6104 -11887,14665,26455,26456,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.9616566,9.2233343,0,4,-1,16.965397,0,2,2,2019,11,1,83,44,1,1,0,10.314193,10.314193,0,0,0,0,0,0,0,0,3.18608,0,36.54,57.54,59.43,49.68,6.666666666666667,1,1,0,0,9,11,5,1,1045,1173028.4,416783.5,387023,130465.93,5300.9448 -11887,14665,26456,26455,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7702036,8.94168,0,4,1,86.472763,-9,-9,-9,2019,8,0,80,0,1,0,0,11.074297,11.074297,0,0,0,0,0,0,0,0,6.7468014,0,59.43,49.68,36.54,57.54,8.333333333333334,1,1,0,0,6,11,5,1,1045,1173028.4,416783.5,387023,130465.93,5300.9448 -11888,14666,26457,26458,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,4.6184692,4.6369896,11,16,57.917538,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,7.1333871,49.672401,74.433556,2,1,1,0,5.2706194,5.0151048,42.19,20.52,50.25,17.03,5,1,1,0,0,9,13,2,1,1143,297810.47,0,147845.13,0,1115.3517 -11888,14666,26458,26457,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,47,-16,-156.5197,0,3,2,2019,10,2,0,0,4,2,0,0,0,1,2.5620372,7.0824976,21.802345,5.48,1,1,0,4.8422179,0,50.25,17.03,42.19,20.52,5,1,1,0,0,0,13,2,1,1143,297810.47,0,147845.13,0,1115.3517 -11889,14667,26459,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.4320707,7.5406289,0,0,0,-1113.0347,0,-9,-9,2019,11,2,30,27,1,2,0,8.4216518,8.4216518,0,0,0,0,0,1,0,1,0,0,42.18,55.06,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,826.5,25714.719,17091.316,0,0,1666.2896 -11889,14667,26460,-9,26459,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.0869,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,826.5,25714.719,17091.316,0,0,1666.2896 -11890,14668,26461,26463,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.9676862,7.9266372,0,8,-7,44.047859,0,2,2,2019,12,0,29,26,1,0,0,12.046017,12.046017,0,0,0,0,0,1,1,0,0,0,56.01,51.37,57.06,57.76,8.333333333333334,1,1,0,0,9,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 -11890,14668,26462,-9,26461,26463,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.30206,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 -11890,14668,26463,26461,-9,-9,1,1,53,0,2,0,1,1,-9,0,5,8.8710251,9.295682,0,8,7,-59.360931,0,2,1,2019,8,0,37,75,1,0,0,22.834963,22.834963,0,0,0,0,0,1,1,0,.87108207,0,57.06,57.76,56.01,51.37,8.333333333333334,1,1,0,0,9,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 -11890,14668,26464,-9,26461,26463,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.9963,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,723.5,999120.88,160256.61,322989.78,120580.94,3984.4226 -11891,14669,26465,26466,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,0,0,0,7,-1,-14.378768,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,19.42,57.93,22.16,53.89,5,1,1,0,1,0,5,3,1,398.33334,199384.94,0,0,0,1680.1825 -11891,14669,26466,26465,-9,-9,1,1,27,0,1,0,3,3,-9,0,2,8.1483078,7.9573126,0,7,1,-39.493034,0,-9,-9,2019,16,4,40,43,1,4,0,10.574263,10.574263,0,0,0,0,0,1,1,0,0,0,22.16,53.89,19.42,57.93,3.333333333333333,1,1,0,0,8,5,3,1,398.33334,199384.94,0,0,0,1680.1825 -11891,14669,26467,-9,26465,26466,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1200.6279,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,398.33334,199384.94,0,0,0,1680.1825 -11892,14670,26468,26469,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.0323372,8.40975,0,35,-6,-205.27104,0,3,3,2019,13,2,45,57,1,2,0,10.004062,10.004062,0,0,0,0,0,0,0,0,6.7880583,0,43.43,46.43,34.95,34.57,8.333333333333334,2,3,0,0,7,2,4,1,421.5,397273.03,185592.03,230121.83,4587.1509,2391.8379 -11892,14670,26469,26468,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.2156734,7.1121721,0,35,6,-164.36842,0,1,1,2019,20,7,38,30,1,7,0,3.7076039,3.7076039,0,0,0,0,0,0,0,0,0,0,34.95,34.57,43.43,46.43,5,2,3,0,0,5,2,4,1,421.5,397273.03,185592.03,230121.83,4587.1509,2391.8379 -11892,14671,26470,-9,26468,26469,1,0,26,0,0,0,1,1,-9,0,4,7.8961949,8.0051641,0,0,0,-1011.4072,0,1,2,2019,12,1,37,39,1,1,1,9.1022263,9.1022263,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,4,2,4,1,306,-137432.06,0,0,0,1060.0264 -11892,14672,26471,-9,26468,26469,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-912.64648,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,55.74,56.95,-9,-9,10,2,3,0,0,1,2,1,1,325,217212.17,0,0,0,-148.29427 -11892,14673,26472,-9,26468,26469,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1101.5354,-9,1,1,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,528,-305937.66,0,0,0,939.22498 -11893,14674,26473,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1000.6654,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,0,0,47.22,35.73,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,304,191604.2,0,0,0,966.33136 -11894,14675,26474,26475,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,65,-6,29.774748,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,44,34.68,35.89,8,1,1,0,0,0,12,3,1,779.5,901617.75,275103.88,72683.289,0,2320.6201 -11894,14675,26475,26474,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.971951,7.7835555,65,6,-57.22366,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,27.061071,13.92032,0,120,1,1,0,4.0421081,7.8156095,34.68,35.89,53,44,3.333333333333333,1,1,0,0,0,12,3,1,779.5,901617.75,275103.88,72683.289,0,2320.6201 -11895,14676,26476,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.8852239,8.5852127,7.7442679,0,0,-922.56976,0,2,2,2019,25,10,10,2,1,10,0,33.206482,33.206482,0,0,0,0,0,1,1,0,0,8.1533775,26.42,59.38,-9,-9,1.666666666666667,1,1,0,0,10,11,5,1,2870,1450316.8,897028.69,242804.97,0,2664.1917 -11896,14677,26477,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1029.057,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,1.1734411,0,0,1,1,0,5.8025188,0,55,43,-9,-9,8,1,1,0,0,0,4,1,0,551,224091.83,0,0,0,404.61411 -11897,14678,26478,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.2398205,9.222311,0,0,0,-986.08093,0,2,2,2019,11,0,58,53,1,0,0,28.815056,28.815056,0,0,0,0,7,0,0,0,6.3992472,0,44.44,55.46,-9,-9,6.666666666666667,1,1,0,0,8,9,5,1,149,536161.5,128013.16,0,0,4070.5698 -11898,14679,26479,-9,26482,26480,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.9734,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 -11898,14679,26480,26482,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,0,0,0,5,5,0,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,40.21,40.63,33.15,3.333333333333333,1,1,1,1,1,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 -11898,14679,26481,-9,26482,26480,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.1635,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 -11898,14679,26482,26480,-9,-9,1,0,46,0,2,0,3,3,-9,1,2,0,0,0,5,-5,0,0,-9,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,40.63,33.15,36.79,40.21,5,1,1,1,0,0,9,1,0,971.75,1090443.5,289157.44,350891.75,0,1847.8712 -11899,14680,26483,26485,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.359817,7.2332258,0,6,-2,12.319815,0,-9,-9,2019,7,0,20,20,1,0,0,10.073521,10.073521,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.98,50.87,8.333333333333334,1,1,0,0,4,6,4,0,869.33331,421592.31,382379.22,217998.83,45051.801,2804.3513 -11899,14680,26484,-9,26483,26485,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.41943,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,0,869.33331,421592.31,382379.22,217998.83,45051.801,2804.3513 -11899,14680,26485,26483,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.4232912,8.7418165,0,6,2,12.07475,0,2,2,2019,10,1,42,42,1,1,0,13.399335,13.399335,0,0,0,0,0,1,1,0,0,0,53.98,50.87,57.16,56.15,3.333333333333333,1,1,0,0,6,6,4,0,869.33331,421592.31,382379.22,217998.83,45051.801,2804.3513 -11900,14681,26486,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1122.3683,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.56689131,0,58.26,38.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,77,151279.11,0,0,0,262.00964 -11901,14682,26487,26489,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,8.4703627,8.4798708,0,10,9,-52.97678,0,2,2,2019,6,0,45,45,1,0,0,12.33955,12.33955,0,0,0,0,0,1,1,0,2.7194178,0,49.04,55.86,48.6,51.67,8.333333333333334,1,1,0,0,10,9,5,1,292,663475.56,43342.055,802318.88,0,4263.1987 -11901,14682,26488,-9,26489,26487,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-887.56604,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,292,663475.56,43342.055,802318.88,0,4263.1987 -11901,14682,26489,26487,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.2117405,9.3920469,5.210115,10,0,-16.580227,0,3,2,2019,9,0,32,35,1,0,0,27.042534,27.042534,0,0,0,0,0,1,1,0,5.7924976,0,48.6,51.67,49.04,55.86,8.333333333333334,1,1,0,0,12,9,5,1,292,663475.56,43342.055,802318.88,0,4263.1987 -11902,14683,26490,-9,26491,26492,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.84412,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 -11902,14683,26491,26492,-9,-9,1,0,36,1,2,0,2,2,0,0,3,0,0,0,6,-7,-96.645203,-9,2,2,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.12,61.85,58.32,52.89,8.333333333333334,1,1,0,0,7,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 -11902,14683,26492,26491,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.532486,8.7960949,0,6,7,9.1192436,0,-9,-9,2019,6,0,37,42,1,0,0,14.526711,14.526711,0,0,0,0,0,1,1,0,0,0,58.32,52.89,33.12,61.85,8.333333333333334,1,1,0,0,10,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 -11902,14683,26493,-9,26491,26492,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2334,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,3,1,457.75,329329.03,46975.945,165293.02,70872.188,2208.2534 -11903,14684,26494,26495,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.6263094,7.8372259,54,-1,-81.778534,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8411117,7.6627975,54.1,59.11,40.44,39.27,8.333333333333334,1,1,0,0,0,7,3,1,409,966525.38,722939.88,255813.03,0,3669.3193 -11903,14684,26495,26494,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.0763493,7.0753036,54,1,11.233829,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1001778,40.44,39.27,54.1,59.11,10,1,1,0,0,0,7,3,1,409,966525.38,722939.88,255813.03,0,3669.3193 -11904,14685,26496,26497,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.0167875,7.0360975,0,10,3,-45.698711,0,2,2,2019,5,0,27,17,1,0,0,5.2261834,5.2261834,0,0,0,0,0,1,0,1,0,0,50.65,60.47,42.8,49.41,10,1,1,0,0,10,10,3,0,586.5,624463.13,202314.23,234150.66,0,1114.6481 -11904,14685,26497,26496,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.9548979,7.216495,0,10,-3,39.52261,0,2,2,2019,8,1,21,13,1,1,0,6.2505546,6.2505546,0,0,0,0,0,1,0,1,0,0,42.8,49.41,50.65,60.47,8.333333333333334,1,1,0,0,10,10,3,0,586.5,624463.13,202314.23,234150.66,0,1114.6481 -11905,14686,26498,-9,26499,26501,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.20685,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 -11905,14686,26499,26501,-9,-9,1,0,44,0,2,0,2,2,-9,1,1,0,2.6411397,2.5211678,7,10,10.792803,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,2.8255477,0,43.04,18.56,50,57,3.333333333333333,1,1,0,0,4,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 -11905,14686,26500,-9,26499,26501,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.24518,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 -11905,14686,26501,26499,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,0,0,0,7,-10,49.922512,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,43.04,18.56,7,1,1,0,0,0,1,2,0,1175.5,-27972.266,-16673.785,0,0,1927.238 -11906,14687,26502,26503,-9,-9,1,0,58,1,3,0,2,2,-9,0,2,7.6835895,7.3497877,0,40,-1,9.6551361,0,2,2,2019,18,6,32,29,1,6,0,8.0975018,8.0975018,0,0,0,0,27,1,1,0,0,0,29.7,55.63,57.33,53.46,6.666666666666667,1,1,0,0,12,10,4,1,1372,1236656.3,903385.75,461769.72,132463.94,2878.3311 -11906,14687,26503,26502,-9,-9,1,1,59,1,3,0,2,2,-9,0,3,8.7981606,8.7908802,0,40,1,73.615097,0,2,2,2019,5,0,44,45,1,0,0,16.444069,16.444069,0,0,0,0,2,1,1,0,0,0,57.33,53.46,29.7,55.63,8.333333333333334,1,1,0,0,12,10,4,1,1372,1236656.3,903385.75,461769.72,132463.94,2878.3311 -11906,14688,26504,-9,26502,26503,1,1,35,1,3,0,2,2,-9,0,4,8.1296692,8.1670494,0,0,0,-957.73871,0,2,2,2019,7,0,43,42,1,0,1,8.2020016,8.2020016,0,0,0,0,0,1,1,0,0,0,38.47,57.72,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,365,151095.59,-153093.53,0,0,897.69232 -11906,14689,26505,-9,26502,26503,1,1,25,1,3,0,2,2,-9,0,3,7.9684768,8.1898699,0,0,0,-1152.2115,0,2,2,2019,13,2,45,50,1,2,1,11.325337,11.325337,0,0,0,0,0,1,1,0,0,0,44.93,52.43,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,916,0,0,0,0,1653.1138 -11906,14690,26506,-9,26507,-9,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.5765,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,700.5,230875.88,0,0,0,1895.3147 -11906,14690,26507,-9,26502,26503,1,0,33,1,3,0,2,2,-9,0,4,6.9482136,6.8316016,0,0,0,-974.1864,0,2,2,2019,16,4,20,24,1,4,1,5.6034622,5.6034622,0,0,0,0,7,1,1,0,0,0,35.91,63.19,-9,-9,3.333333333333333,1,1,0,1,12,10,2,1,700.5,230875.88,0,0,0,1895.3147 -11906,14690,26508,-9,26507,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.0602,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,2,1,700.5,230875.88,0,0,0,1895.3147 -11906,14690,26509,-9,26507,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.45837,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,2,1,700.5,230875.88,0,0,0,1895.3147 -11907,14691,26510,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,7.4337473,7.0574627,0,0,-1058.9688,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,.63533664,0,19.585112,0,1,1,0,2.7505927,7.4660177,64.02,24.5,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,79,773613.06,6730.2041,326237.78,0,1473.807 -11908,14692,26511,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,7.4569168,7.5976787,0,0,0,-967.54492,-9,3,3,2019,16,4,15,0,1,4,0,12.167084,12.167084,0,0,0,0,0,1,1,0,0,0,28.64,41.22,-9,-9,10,1,1,0,0,7,8,2,0,577,-161043.19,20284.008,0,0,2319.8931 -11908,14692,26512,-9,26511,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1158.4663,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,577,-161043.19,20284.008,0,0,2319.8931 -11908,14693,26513,-9,26511,-9,1,1,26,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1013.9836,0,2,-9,2019,5,1,0,0,3,1,1,0,0,0,0,0,0,2,1,1,0,0,0,37.79,50.42,-9,-9,6.666666666666667,4,2,1,0,0,8,1,0,517,0,0,0,0,309.64542 -11909,14694,26514,26515,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,8,4,97.181023,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,17.38,37.96,60.22,3.333333333333333,1,1,0,1,1,5,3,1,354,755260.13,104844.89,146250.2,0,1463.5061 -11909,14694,26515,26514,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7775593,7.7176051,0,8,-4,-127.36481,0,-9,-9,2019,9,0,12,41,1,0,0,25.23118,25.23118,0,0,0,0,27,0,0,0,0,0,37.96,60.22,57.57,17.38,8.333333333333334,2,3,0,1,10,5,3,1,354,755260.13,104844.89,146250.2,0,1463.5061 -11910,14695,26516,26517,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.191143,8.311142,0,10,-2,74.191933,0,3,2,2019,9,0,38,40,1,0,0,14.432883,14.432883,0,0,0,0,0,1,1,0,0,0,48.81,59.91,54.79,55.86,6.666666666666667,1,1,0,0,10,12,5,1,960.66669,327350.63,60081.004,270593.66,169580.33,4682.5293 -11910,14695,26517,26516,-9,-9,1,0,41,1,1,0,1,1,-9,0,4,9.1568298,9.2277966,0,10,2,49.226337,0,2,2,2019,11,1,28,28,1,1,0,28.928951,28.928951,0,0,0,0,0,1,1,0,5.9035597,0,54.79,55.86,48.81,59.91,6.666666666666667,1,1,0,0,12,12,5,1,960.66669,327350.63,60081.004,270593.66,169580.33,4682.5293 -11910,14695,26518,-9,26517,26516,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.42731,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,960.66669,327350.63,60081.004,270593.66,169580.33,4682.5293 -11911,14696,26519,26520,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.476624,6.0885873,7,0,57.241665,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6951108,52,48,50,47,7,1,1,0,0,0,6,2,1,1293,33939.691,141564.11,0,0,1648.6704 -11911,14696,26520,26519,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,42,0,-33.703548,0,3,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,52,48,7,4,2,0,0,5,6,2,1,1293,33939.691,141564.11,0,0,1648.6704 -11912,14697,26521,-9,26524,26522,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.0547,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 -11912,14697,26522,26524,-9,-9,1,1,45,1,2,0,2,2,-9,0,5,8.7528973,8.5454693,0,5,2,125.45538,0,1,1,2019,15,3,43,45,1,3,0,16.830217,16.830217,0,0,0,0,0,1,1,0,0,0,50.24,58.02,58.08,40.76,6.666666666666667,3,4,0,0,9,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 -11912,14697,26523,-9,26524,26522,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-894.14838,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 -11912,14697,26524,26522,-9,-9,1,0,43,1,2,0,1,1,-9,0,3,8.5398436,8.4429293,0,5,-2,-7.2542009,0,2,2,2019,10,1,38,38,1,1,0,14.325507,14.325507,0,0,0,0,0,1,1,0,0,0,58.08,40.76,50.24,58.02,8.333333333333334,1,1,0,0,10,8,5,0,570.75,457878.34,428493.5,401163.03,147239.77,4435.2178 -11913,14698,26525,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-909.23444,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.95,27.5,-9,-9,5,1,1,0,1,0,9,1,0,691,70988.008,0,0,0,1823.3525 -11914,14699,26526,26527,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6191702,8.5017853,0,26,6,41.568489,0,3,3,2019,8,0,44,45,1,0,0,14.904927,14.904927,0,0,0,0,0,0,0,0,4.3502793,0,56.52,48.31,55.19,54.26,8.333333333333334,1,1,0,0,11,9,5,1,680,1986344.3,899587.88,612268.31,18625.234,4932.627 -11914,14699,26527,26526,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,9.2835016,9.5343122,0,26,-6,-96.776466,0,2,3,2019,8,0,43,45,1,0,0,31.671875,31.671875,0,0,0,0,0,0,0,0,3.2985272,0,55.19,54.26,56.52,48.31,8.333333333333334,1,1,0,0,11,9,5,1,680,1986344.3,899587.88,612268.31,18625.234,4932.627 -11915,14700,26528,26529,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,7.9762211,7.9963417,0,7,2,162.94012,0,2,2,2019,23,10,22,24,1,10,0,17.100843,17.100843,0,0,0,0,0,0,0,0,3.4328482,0,29.19,53.62,41.87,35.22,8.333333333333334,1,1,0,0,8,9,5,1,420,957689,633597.25,441409.34,242281.72,4700.3682 -11915,14700,26529,26528,-9,-9,1,1,36,1,1,0,1,1,-9,0,2,9.2688255,9.2349396,0,7,-2,-77.482574,0,-9,-9,2019,18,7,40,37,1,7,0,36.722118,36.722118,0,0,0,0,0,0,0,0,4.5232673,0,41.87,35.22,29.19,53.62,6.666666666666667,1,1,0,0,11,9,5,1,420,957689,633597.25,441409.34,242281.72,4700.3682 -11915,14700,26530,-9,26528,26529,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1212.7965,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,420,957689,633597.25,441409.34,242281.72,4700.3682 -11916,14701,26531,26532,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,2.6871407,2.4307504,8,4,-12.630892,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0775566,2.5057936,50,47,52,48,7,1,1,0,0,0,4,2,1,717,545429.75,209513.13,401241.56,0,784.0437 -11916,14701,26532,26531,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.5186639,5.4058371,44,-4,-79.654724,0,3,3,2019,10,0,0,29,4,1,0,0,0,0,0,0,0,120,1,1,0,1.25047,5.2445645,52,48,50,47,7,1,1,0,0,9,4,2,1,717,545429.75,209513.13,401241.56,0,784.0437 -11917,14702,26533,26534,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2157202,8.2590065,4.9960327,8,9,-37.224281,0,-9,2,2019,15,4,36,36,1,4,0,14.776583,14.776583,0,0,0,0,7,0,0,0,5.689209,5.1296902,31.52,54.34,32.03,60.88,3.333333333333333,1,1,0,0,10,4,4,1,730,401965.28,9077.4102,196781.92,20174.203,3103.8315 -11917,14702,26534,26533,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6206889,7.3415952,0,29,0,-24.967133,0,3,3,2019,26,12,35,35,1,12,0,6.2280173,6.2280173,0,0,0,0,0,0,0,0,0,0,32.03,60.88,31.52,54.34,6.666666666666667,1,1,0,0,10,4,4,1,730,401965.28,9077.4102,196781.92,20174.203,3103.8315 -11917,14703,26535,-9,26534,26533,1,1,23,0,0,0,2,2,-9,0,4,7.7200608,7.5847831,0,0,0,-1050.2625,0,2,2,2019,10,1,32,42,1,1,1,6.0920386,6.0920386,0,0,0,0,2,0,0,0,0,0,45.81,58.99,-9,-9,6.666666666666667,1,1,0,0,9,4,3,1,1158,0,0,0,0,884.67236 -11918,14704,26536,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,1,0,7.1728153,7.4269247,0,0,-917.54041,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,10.251155,0,0,1,1,0,0,7.3374996,24.69,25.62,-9,-9,3.333333333333333,1,1,0,0,0,12,3,1,381,360918.16,242184.7,244663.25,0,1997.9097 -11919,14705,26537,26538,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.8361454,6.7164435,44,-6,-63.961514,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.8847103,35.25,34.11,62.18,20.12,3.333333333333333,1,1,0,0,6,7,3,1,769.5,592494.69,421417.53,251761.66,0,1994.0228 -11919,14705,26538,26537,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.1512833,6.7894807,44,6,42.965542,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,2,1,1,0,0,6.7440219,62.18,20.12,35.25,34.11,3.333333333333333,1,1,0,0,0,7,3,1,769.5,592494.69,421417.53,251761.66,0,1994.0228 -11920,14706,26539,26540,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.7859006,7.9681392,4.4074345,2,0,77.658051,0,-9,-9,2019,8,0,35,38,1,0,0,8.494257,8.494257,0,0,0,0,0,0,0,0,4.017015,0,57.06,57.76,54.91,51.67,8.333333333333334,1,1,0,0,8,1,4,1,504.5,30211.305,140939.81,183545.25,166924.78,2529.9868 -11920,14706,26540,26539,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.2890463,8.1928387,0,2,0,27.938137,0,-9,-9,2019,6,1,38,38,1,1,0,11.280313,11.280313,0,0,0,0,0,0,0,0,0,0,54.91,51.67,57.06,57.76,8.333333333333334,1,1,0,0,6,1,4,1,504.5,30211.305,140939.81,183545.25,166924.78,2529.9868 -11921,14707,26541,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.8058872,6.6470118,0,0,-923.58801,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9188671,6.5714278,51,46,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,463,830524.38,133267.36,233349.98,0,574.49573 -11921,14708,26542,-9,26541,-9,1,1,50,0,0,0,2,2,-9,0,3,7.4404759,7.8092017,4.5700336,0,0,-1056.2863,0,3,2,2019,13,2,32,32,1,2,0,6.5390053,6.5390053,0,0,0,0,0,1,1,0,0,4.582613,30.32,45.42,-9,-9,5,1,1,0,0,12,10,3,1,849,243262.53,6829.4575,372735.5,0,1096.9792 -11922,14709,26543,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.5683141,6.4480181,0,0,-1106.9559,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4223599,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,677,594465.56,180170.45,258164.59,0,1007.0657 -11923,14710,26544,26545,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,55,-3,0,0,3,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,39.55,60.77,38.2,6.666666666666667,2,3,0,0,0,8,1,1,1342,205295.64,60644.035,0,0,689.57391 -11923,14710,26545,26544,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,55,3,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.77,38.2,46.54,39.55,6.666666666666667,2,3,0,0,4,8,1,1,1342,205295.64,60644.035,0,0,689.57391 -11924,14711,26546,26548,-9,-9,1,0,30,1,1,0,2,2,-9,0,3,5.4537344,5.6363697,0,8,-6,-72.737518,0,3,3,2019,10,0,18,40,1,0,0,2.1510334,2.1510334,0,0,0,0,0,1,1,0,0,0,54.96,53.17,28.48,51.87,6.666666666666667,1,1,0,0,11,11,3,0,762.33331,160740,0,128522.22,84804.375,1292.8362 -11924,14711,26547,-9,26546,26548,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.41919,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,762.33331,160740,0,128522.22,84804.375,1292.8362 -11924,14711,26548,26546,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,7.5890827,7.7615533,0,8,6,51.344681,0,3,3,2019,16,5,55,50,1,5,0,5.1637616,5.1637616,0,0,0,0,0,1,1,0,0,0,28.48,51.87,54.96,53.17,3.333333333333333,1,1,0,0,6,11,3,0,762.33331,160740,0,128522.22,84804.375,1292.8362 -11925,14712,26549,26550,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.82516,8.8399582,0,6,6,39.770088,0,2,2,2019,10,0,39,37,1,0,0,17.471407,17.471407,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.98,57.55,8.333333333333334,1,1,0,0,8,2,5,1,442.5,41150.645,101640.07,0,0,3539.2661 -11925,14712,26550,26549,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.2363749,8.012289,0,6,-6,89.52433,0,-9,-9,2019,7,1,38,39,1,1,0,7.2043786,7.2043786,0,0,0,0,2,0,0,0,0,0,51.98,57.55,58.32,50.22,8.333333333333334,1,1,0,0,8,2,5,1,442.5,41150.645,101640.07,0,0,3539.2661 -11926,14713,26551,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.6414194,8.6106405,0,0,0,-967.07556,-9,2,-9,2019,11,0,47,0,1,0,0,14.645447,14.645447,0,0,0,0,0,0,0,0,1.5106159,0,54.2,57.49,-9,-9,5,1,1,0,0,8,8,5,1,598,1257659.1,1119162.5,274771.63,71714.273,2719.812 -11927,14714,26552,-9,26555,26556,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.5997,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 -11927,14714,26553,-9,26555,26556,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1063.8711,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.64606357,0,57.16,56.15,-9,-9,10,1,1,0,1,0,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 -11927,14714,26554,-9,26555,26556,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.38971,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 -11927,14714,26555,26556,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,8.1247282,8.2040176,0,6,0,-13.522225,0,2,2,2019,16,4,38,38,1,4,0,8.1373386,8.1373386,0,0,0,0,0,1,1,0,2.0044181,0,47.72,49.51,57.16,56.15,3.333333333333333,1,1,0,0,7,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 -11927,14714,26556,26555,-9,-9,1,1,52,0,3,0,2,2,-9,0,4,6.8514414,7.19771,0,6,9,-96.914146,0,2,2,2019,8,0,45,36,1,0,0,2.6990552,2.6990552,0,0,0,0,0,1,1,0,2.9070885,0,57.16,56.15,47.72,49.51,8.333333333333334,1,1,0,0,7,12,3,1,997,267375.41,98886.414,133335.5,30441.789,2467.3381 -11928,14715,26557,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-835.78668,0,2,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30.89,50.47,-9,-9,5,3,4,0,1,0,4,1,0,165,-202252.34,0,0,0,447.29068 -11929,14716,26558,-9,-9,-9,1,0,55,0,2,0,2,2,-9,1,3,0,6.6566033,6.6229782,0,0,-1060.7761,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,6.4434037,0,42.22,56.11,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,2124,-255206.59,0,0,0,1676.0759 -11930,14717,26559,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.2453451,8.4334736,0,0,-973.17938,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.3445191,8.0806007,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,411,299449.16,361250.22,101140.3,0,2067.8542 -11930,14718,26560,-9,26559,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-986.03729,-9,1,-9,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,1,0,0,2,1,1,514,170011.97,0,0,0,0 -11931,14719,26561,26562,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.7172413,7.7073851,0,8,-2,-179.13164,0,2,2,2019,8,0,30,30,1,0,0,8.0270119,8.0270119,0,0,0,0,0,1,1,0,0,0,49.69,52.99,28.13,45.03,8.333333333333334,1,1,0,0,9,4,4,1,925.5,344042.38,44849.898,0,0,1932.5518 -11931,14719,26562,26561,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.5509281,7.5665398,0,8,2,-99.940666,0,2,2,2019,24,12,30,30,1,12,0,6.7248292,6.7248292,0,0,0,0,0,1,1,0,0,0,28.13,45.03,49.69,52.99,5,1,1,0,0,9,4,4,1,925.5,344042.38,44849.898,0,0,1932.5518 -11931,14720,26563,-9,26561,26562,1,0,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-932.30042,-9,2,2,2019,17,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,0,4,4,1,1,301,0,0,0,0,0 -11931,14721,26564,-9,26561,26562,1,1,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-989.43451,-9,2,2,2019,19,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,.32195327,0,20.33,61.3,-9,-9,5,1,1,0,0,0,4,1,1,729,-111502.04,0,0,0,750.75311 -11932,14722,26565,26566,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.3128119,7.227437,48,-1,-93.744225,0,3,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,2.6701775,6.9518566,40.2,24.84,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,468.5,2315469.5,736219.38,165773.91,0,3966.4885 -11932,14722,26566,26565,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.1912317,8.1143436,48,1,36.025642,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.7899971,8.5437346,58.15,52.91,40.2,24.84,8.333333333333334,1,1,0,0,0,5,4,1,468.5,2315469.5,736219.38,165773.91,0,3966.4885 -11933,14723,26567,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.6495266,7.8513632,0,0,-933.29724,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7105088,66.37,38.36,-9,-9,10,1,1,0,0,0,13,3,1,403,369072.09,267497.47,222685.81,0,2477.4753 -11934,14724,26568,26569,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,19,-11,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.58,56.41,62.8,41.87,10,1,1,0,0,0,4,2,0,329,-138018.5,0,0,0,1425.8088 -11934,14724,26569,26568,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,19,11,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.8,41.87,50.58,56.41,10,1,1,0,0,10,4,2,0,329,-138018.5,0,0,0,1425.8088 -11935,14725,26570,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.341105,7.5353127,0,0,-944.44592,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,1.2663324,7.1578031,16.08,63.04,-9,-9,6.666666666666667,3,4,0,0,6,8,3,1,1074,395437.38,333578.97,453348.47,245439.23,1533.6566 -11936,14726,26571,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,4.42766,4.6120443,0,0,-1043.334,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5313091,53.78,56.44,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,1148,527299.25,0,150048.98,0,941.58563 -11937,14727,26572,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,6.7141833,7.0743084,0,0,-995.62408,0,2,2,2019,9,3,0,0,4,3,0,0,0,1,0,1.997341,0,0,1,1,0,0,6.6615534,55.94,7.25,-9,-9,10,1,1,0,0,0,12,2,0,981,305054.72,176477.14,0,0,1919.2476 -11938,14728,26573,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.0569878,8.2095118,0,0,-1064.8593,0,3,3,2019,15,5,0,0,4,5,0,0,0,1,0,5.5022216,0,2,1,1,0,4.1038561,8.2469711,40.84,44.66,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,3858,1619346.5,226987.33,767346.25,0,2786.5664 -11939,14729,26574,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,9.0091171,8.8580189,5.0245748,0,0,-986.12115,0,2,2,2019,13,3,43,42,1,3,0,23.824816,23.824816,0,0,0,0,0,1,1,0,5.3160081,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,478,1642348.9,1314348.8,73377.664,38925.121,3070.7969 -11939,14730,26575,-9,26574,-9,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1105.9885,-9,2,-9,2019,31,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,13.94,65.11,-9,-9,3.333333333333333,1,1,0,0,1,4,1,1,464,214612.58,0,0,0,0 -11940,14731,26576,26577,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,9.3029671,8.9741993,0,5,0,34.346924,0,-9,-9,2019,20,8,35,42,1,8,0,28.591101,28.591101,0,0,0,0,0,0,0,0,3.9697998,0,33.66,61.57,48.77,60.16,8.333333333333334,1,1,0,0,8,1,5,0,735.66669,826040.69,275202.84,365820.31,241809.03,4322.3145 -11940,14731,26577,26576,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.1872053,7.9713531,0,5,0,44.743084,0,-9,-9,2019,10,1,35,37,1,1,0,14.1002,14.1002,0,0,0,0,0,0,0,0,0,0,48.77,60.16,33.66,61.57,6.666666666666667,1,1,0,0,6,1,5,0,735.66669,826040.69,275202.84,365820.31,241809.03,4322.3145 -11940,14731,26578,-9,26577,26576,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.78467,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,5,0,735.66669,826040.69,275202.84,365820.31,241809.03,4322.3145 -11941,14732,26579,26580,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,5.5315652,5.2004128,58,3,-17.078514,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,126.06711,0,0,1,1,0,5.3848367,5.4290662,30.59,26.9,53.08,47.16,0,1,1,0,0,0,9,2,1,374.5,527613.94,118747.23,260892.16,0,2130.874 -11941,14732,26580,26579,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.524178,6.0060024,58,-3,6.8396592,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.7904177,5.8132348,53.08,47.16,30.59,26.9,6.666666666666667,1,1,0,0,0,9,2,1,374.5,527613.94,118747.23,260892.16,0,2130.874 -11942,14733,26581,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,6.432579,6.6842375,0,0,-1018.1512,-9,3,3,2019,11,2,0,0,3,2,0,0,0,1,0,4.6451769,0,74.5,1,1,0,0,6.3052444,45.09,28.34,-9,-9,3.333333333333333,2,3,0,0,0,8,2,0,657,21938.092,0,0,0,1525.2224 -11942,14734,26582,-9,26581,-9,1,0,30,0,0,0,3,3,-9,1,2,0,0,0,0,0,-997.80878,-9,1,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.48,25.87,-9,-9,3.333333333333333,2,3,0,0,0,8,2,0,269,-180056.19,0,0,0,969.04462 -11943,14735,26583,26584,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,8.6052542,8.5824366,0,6,10,-147.09076,0,-9,-9,2019,6,0,60,50,1,0,0,9.9617214,9.9617214,0,0,0,0,2,0,0,0,0,0,55.96,49.93,48.28,60.18,10,1,1,0,0,6,2,5,1,1003,38418.016,-10898.093,98501.188,81408.156,3320.6499 -11943,14735,26584,26583,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.4484582,7.5655122,0,6,-10,-5.1691461,0,-9,-9,2019,6,0,39,38,1,0,0,4.6978707,4.6978707,0,0,0,0,2,0,0,0,0,0,48.28,60.18,55.96,49.93,8.333333333333334,1,1,0,0,8,2,5,1,1003,38418.016,-10898.093,98501.188,81408.156,3320.6499 -11944,14736,26585,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.6980257,9.5580168,0,8,13,21.964457,0,2,2,2019,9,0,47,47,1,0,0,44.934971,44.934971,0,0,0,0,0,0,0,0,5.7226534,0,57.16,56.15,50.11,54.04,8.333333333333334,1,1,0,0,7,8,5,1,1733,4584612.5,101071.03,831759.31,0,6211.1836 -11944,14737,26586,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.8213801,8.0753326,0,8,-13,-76.004486,0,2,3,2019,11,0,37,0,1,0,0,8.0530005,8.0530005,0,0,0,0,0,0,0,0,3.2908823,0,50.11,54.04,57.16,56.15,8.333333333333334,1,1,0,0,4,8,5,1,570,369938.75,0,0,0,592.63086 -11945,14738,26587,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.5349159,8.3496523,0,0,0,-896.85852,0,2,3,2019,8,0,50,38,1,0,0,9.283699,9.283699,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,0,867,-177689.23,0,0,0,1502.9634 -11946,14739,26588,26590,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.1540918,9.0193453,0,3,-1,-37.60667,0,1,1,2019,12,0,80,50,1,0,0,12.552485,12.552485,0,0,0,0,0,0,0,0,6.0199037,0,44.66,52.09,52.12,54.24,8.333333333333334,1,1,0,0,11,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 -11946,14739,26589,-9,26590,26588,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6093,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 -11946,14739,26590,26588,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.8790874,8.7528362,0,3,1,-97.587891,0,2,2,2019,10,2,34,32,1,2,0,27.472565,27.472565,0,0,0,0,0,0,0,0,0,0,52.12,54.24,44.66,52.09,8.333333333333334,1,1,0,0,11,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 -11946,14739,26591,-9,26590,26588,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.3284,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,5,1,613,725175.63,275930.28,290822.78,19853.566,5671.8691 -11947,14740,26592,26593,-9,-9,1,1,23,0,3,0,2,2,-9,0,5,7.455471,7.5107794,0,1,-10,-38.696751,-9,-9,-9,2019,7,0,40,0,1,0,0,4.7469764,4.7469764,0,0,0,0,0,1,1,0,0,0,51.14,60.45,50.2,52.61,10,1,1,0,0,1,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 -11947,14740,26593,26592,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,8.4187241,8.4096203,6.00562,1,10,-6.1109476,0,2,2,2019,7,0,41,38,1,0,0,11.928912,11.928912,0,0,0,0,42,1,1,0,6.8628607,0,50.2,52.61,51.14,60.45,8.333333333333334,1,1,0,0,10,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 -11947,14740,26594,-9,26593,26592,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.79193,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 -11947,14740,26595,-9,26593,26592,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.45001,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 -11947,14740,26596,-9,26593,26592,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.80615,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,421.20001,259454.89,-6500.5615,529212.06,222340.44,3006.3926 -11948,14741,26597,26598,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.6863289,8.6213112,0,10,-2,-59.014336,0,3,3,2019,7,0,36,38,1,0,0,16.85038,16.85038,0,0,0,0,7,0,0,0,0,0,49.04,55.86,40.97,29.17,8.333333333333334,1,1,0,0,13,12,5,1,1312.5,1103689.9,472670.47,618590.44,261794.16,3172.9121 -11948,14741,26598,26597,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,7.467854,7.460948,0,10,2,29.317604,0,-9,-9,2019,20,8,22,25,1,8,0,10.655305,10.655305,0,0,0,0,0,0,0,0,4.1063709,0,40.97,29.17,49.04,55.86,6.666666666666667,1,1,0,0,1,12,5,1,1312.5,1103689.9,472670.47,618590.44,261794.16,3172.9121 -11949,14742,26599,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2331953,8.3954792,0,0,0,-982.95032,0,2,-9,2019,22,11,38,39,1,11,0,10.188805,10.188805,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,1.666666666666667,1,1,0,0,7,13,4,1,1635,136854,-36242.742,0,0,1013.1899 -11950,14743,26600,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,6.373322,6.4948649,0,0,0,-867.8855,0,2,2,2019,15,3,5,5,1,3,0,12.266693,12.266693,0,0,0,0,0,1,1,0,6.0171494,0,45.44,44.14,-9,-9,5,1,1,0,0,10,10,2,1,203,-135059.14,-57384.762,0,0,294.78699 -11951,14744,26601,-9,26603,26602,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.0697,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,830.66669,248524.94,90349.234,385157.91,149856.7,2355.6248 -11951,14744,26602,26603,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,8.456007,8.7419195,0,4,15,59.081081,0,-9,-9,2019,7,0,40,40,1,0,0,9.3736467,9.3736467,0,0,0,0,0,1,1,0,.81433451,0,44.98,57.48,44.78,56.37,8.333333333333334,1,1,0,0,13,9,4,1,830.66669,248524.94,90349.234,385157.91,149856.7,2355.6248 -11951,14744,26603,26602,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,7.1050749,7.1722846,4,-15,-41.231628,0,-9,-9,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,7.1038647,0,44.78,56.37,44.98,57.48,8.333333333333334,1,1,0,0,0,9,4,1,830.66669,248524.94,90349.234,385157.91,149856.7,2355.6248 -11952,14745,26604,26605,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,7.6493597,7.6772008,6,-1,-37.968506,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,5.5222816,7.6898894,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,4,4,4,1,384.5,1302925.5,848902.38,235477.64,0,2733.6223 -11952,14745,26605,26604,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.9712911,7.7173972,6,1,-71.976349,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,5.9995832,7.9152923,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,4,4,1,384.5,1302925.5,848902.38,235477.64,0,2733.6223 -11953,14746,26606,26608,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,8.8147497,9.1475983,0,4,-2,52.373405,0,-9,-9,2019,11,0,45,16,1,0,0,20.255333,20.255333,0,0,0,0,0,1,1,0,0,0,51.24,58.84,39.03,55.1,8.333333333333334,1,1,0,0,11,6,5,1,1880.6666,253525.3,140210.7,320347.13,225313.88,4549.9731 -11953,14746,26607,-9,26606,26608,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-912.73718,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,5,1,1880.6666,253525.3,140210.7,320347.13,225313.88,4549.9731 -11953,14746,26608,26606,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.864665,8.3455343,0,4,2,-27.982534,0,-9,-9,2019,17,7,42,42,1,7,0,15.328626,15.328626,0,0,0,0,0,1,1,0,0,0,39.03,55.1,51.24,58.84,6.666666666666667,1,1,0,0,11,6,5,1,1880.6666,253525.3,140210.7,320347.13,225313.88,4549.9731 -11954,14747,26609,26610,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.4331741,8.6699324,0,10,-11,-77.493698,0,3,3,2019,12,0,45,50,1,0,0,14.270252,14.270252,0,0,0,0,0,0,0,0,0,0,51.41,56.15,55.6,47.8,6.666666666666667,1,1,0,0,10,12,5,1,1721.5,1012269.8,712727.75,429871,64595.43,4367.1318 -11954,14747,26610,26609,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.8699856,8.9108524,0,10,11,25.223183,0,-9,-9,2019,9,1,63,63,1,1,0,12.232852,12.232852,0,0,0,0,0,0,0,0,0,0,55.6,47.8,51.41,56.15,3.333333333333333,1,1,0,0,12,12,5,1,1721.5,1012269.8,712727.75,429871,64595.43,4367.1318 -11955,14748,26611,26612,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.842782,7.9977016,37,-5,61.436447,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.0456244,7.7587247,38.62,36.84,38.13,29.95,5,1,1,0,0,5,13,3,1,452.5,937345.5,921518.63,57675.773,0,2255.3188 -11955,14748,26612,26611,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.1724997,5.1711054,37,5,6.5639606,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,.079770133,5.2674689,38.13,29.95,38.62,36.84,6.666666666666667,1,1,0,0,0,13,3,1,452.5,937345.5,921518.63,57675.773,0,2255.3188 -11956,14749,26613,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1056.2253,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,27.072977,0,0,1,1,0,0,0,42.85,30.62,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,217,213447.42,0,0,0,1019.832 -11957,14750,26614,26615,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,9,-3,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,45,54,46,8,1,1,0,0,0,13,1,1,1236,194075.67,-24902.609,154151.67,16482.211,1448.8081 -11957,14750,26615,26614,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,9,3,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,27.158558,8.6854458,251.78012,0,1,1,0,0,0,54,46,51,45,8,1,1,0,0,0,13,1,1,1236,194075.67,-24902.609,154151.67,16482.211,1448.8081 -11957,14751,26616,-9,26614,26615,1,0,48,0,0,0,2,2,-9,0,3,8.1461554,8.2868376,0,0,0,-966.87836,0,3,3,2019,24,12,38,36,1,12,0,12.022142,12.022142,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,5,1,1,0,0,10,13,4,1,1370,-796273.81,45508.617,102455.55,44173.863,1857.6041 -11957,14752,26617,-9,26616,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2475843,8.32339,0,0,0,-1028.0669,0,2,-9,2019,12,0,36,37,1,2,1,11.130891,11.130891,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,3,13,4,1,3778,-17179.576,0,0,0,2140.9485 -11957,14753,26618,-9,26616,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-969.85815,-9,2,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,2,1,958,0,0,0,0,0 -11958,14754,26619,26620,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.1590557,8.37043,0,21,1,-109.03458,0,2,2,2019,12,0,38,40,1,0,0,11.340552,11.340552,0,0,0,0,0,0,0,0,8.1488256,0,40.82,42.52,52.82,53.97,8.333333333333334,2,3,0,0,9,12,5,1,1532,417738.06,136011.28,371813.88,169229.44,5691.519 -11958,14754,26620,26619,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.0887432,8.9749212,0,21,-1,-38.315208,0,3,3,2019,11,2,38,39,1,2,0,29.016298,29.016298,0,0,0,0,0,0,0,0,7.4533591,0,52.82,53.97,40.82,42.52,8.333333333333334,2,3,0,0,10,12,5,1,1532,417738.06,136011.28,371813.88,169229.44,5691.519 -11959,14755,26621,26622,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.9050083,7.9943767,51,2,.30172202,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6945763,7.5972562,57.33,53.46,45.82,46.7,10,1,1,0,0,0,7,4,1,686,2081307.5,745364.88,601529.25,0,3182.2224 -11959,14755,26622,26621,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.3471737,7.165081,51,-2,-46.990017,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.0743842,7.5587583,45.82,46.7,57.33,53.46,10,1,1,0,0,0,7,4,1,686,2081307.5,745364.88,601529.25,0,3182.2224 -11960,14756,26623,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3854799,7.2448192,0,0,-944.38733,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3998685,7.3744979,58.56,41.85,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,390,442969.66,77189.195,323180.22,0,1626.5167 -11961,14757,26624,26625,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.92167,7.3997622,44,0,-55.147499,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,1.7485389,7.1642776,64.53,36.33,59.71,50.89,8.333333333333334,1,1,0,0,4,9,4,1,718.5,1233316.8,516749.81,409154.63,0,2832.5884 -11961,14757,26625,26624,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.0615282,8.4156208,6.4149647,44,0,-36.834778,0,3,3,2019,6,0,40,40,1,0,0,8.5555687,8.5555687,0,0,0,0,0,0,0,0,3.6896381,6.7431026,59.71,50.89,64.53,36.33,8.333333333333334,1,1,0,0,7,9,4,1,718.5,1233316.8,516749.81,409154.63,0,2832.5884 -11962,14758,26626,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,8.569109,9.0603342,5.6060576,0,0,-951.73334,-9,2,3,2019,12,0,56,0,1,0,0,13.937118,13.937118,0,0,0,0,0,1,1,0,0,5.550447,46.5,45.06,-9,-9,3.333333333333333,1,1,0,0,13,2,5,1,1326,432593.66,173942.45,165423.56,0,2750.155 -11963,14759,26627,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.6131277,8.6982517,6.5160999,0,0,-1079.7454,0,2,2,2019,6,0,36,36,1,0,0,13.616189,13.616189,0,0,0,0,0,0,0,0,2.9010057,7.375443,57.16,56.15,-9,-9,10,3,4,0,0,7,8,5,0,1155,476669.88,168936.88,349713.06,0,1793.6062 -11963,14760,26628,-9,26627,-9,1,0,30,0,0,0,1,1,-9,0,4,8.9374647,8.9878111,0,0,0,-901.53241,0,2,2,2019,8,0,37,40,1,0,1,20.475073,20.475073,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,0,0,8,8,5,0,521,1020899.1,236749.63,328383.09,39778.523,2701.78 -11964,14761,26629,26630,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.1882224,5.3269596,8,1,-3.2385437,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.6359754,39.39,48.18,57.16,56.15,6.666666666666667,1,1,0,0,0,2,2,1,2504.5,357758.66,326344.19,173365.55,0,1881.8534 -11964,14761,26630,26629,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.4947405,6.658721,8,-1,-118.84399,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4859693,6.6462307,57.16,56.15,39.39,48.18,8.333333333333334,1,1,0,0,1,2,2,1,2504.5,357758.66,326344.19,173365.55,0,1881.8534 -11965,14762,26631,-9,26634,26632,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.1125,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 -11965,14762,26632,26634,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.2335849,7.0120764,0,23,5,-13.542243,0,3,2,2019,9,0,40,40,1,1,0,4.0438356,4.0438356,0,0,0,0,2,1,1,0,0,0,52,55,47.94,35.03,8,2,3,0,0,11,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 -11965,14762,26633,-9,26634,26632,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1046.2584,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 -11965,14762,26634,26632,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,8.3678074,8.4270487,0,8,-5,-16.290371,0,2,2,2019,12,2,41,42,1,2,0,12.567991,12.567991,0,0,0,0,42,1,1,0,9.1809626,0,47.94,35.03,52,55,8.333333333333334,2,3,0,0,5,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 -11965,14762,26635,-9,26634,26632,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1109.0062,-9,2,2,2019,25,10,0,0,2,10,0,0,0,0,0,0,0,2,1,1,0,0,0,34.4,59.61,-9,-9,5,2,3,0,0,0,8,3,1,791.40002,115681.93,35916.281,0,0,4834.9336 -11965,14763,26636,-9,26634,26632,1,0,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-1049.6957,-9,2,2,2019,24,10,0,0,2,10,1,0,0,0,0,0,0,2,1,1,0,0,0,22.65,64.05,-9,-9,6.666666666666667,2,3,0,0,3,8,1,1,1339,122861.13,0,0,0,90.282906 -11966,14764,26637,26638,-9,-9,1,1,28,1,2,0,3,3,-9,1,4,0,0,0,4,6,0,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,34.79,49.19,8.333333333333334,1,1,1,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 -11966,14764,26638,26637,-9,-9,1,0,22,1,2,0,2,2,-9,0,3,0,0,0,4,-6,0,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,49.19,54.2,57.49,10,4,2,0,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 -11966,14764,26639,-9,26638,26637,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.3219,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 -11966,14764,26640,-9,26638,26637,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.8529,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,2,0,712.25,-70363.164,47522.371,0,0,1780.6853 -11967,14765,26641,26642,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.706131,7.8347096,0,23,-1,-13.998906,0,3,3,2019,17,6,20,34,1,6,0,14.901567,14.901567,0,0,0,0,2,0,0,0,0,0,45.04,33.51,50,49,8.333333333333334,1,1,0,0,10,4,4,1,479.5,965522.19,722591.88,209260.22,0,2290.5303 -11967,14765,26642,26641,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9413323,8.1306419,0,9,1,-83.098778,0,-9,-9,2019,10,0,48,40,1,1,0,7.3889742,7.3889742,0,0,0,0,0,0,0,0,0,0,50,49,45.04,33.51,7,1,1,0,0,1,4,4,1,479.5,965522.19,722591.88,209260.22,0,2290.5303 -11967,14766,26643,-9,26641,26642,1,1,21,0,0,0,2,2,-9,0,3,7.2453036,7.4535871,0,0,0,-1038.5679,0,3,2,2019,7,0,40,38,1,0,1,3.9724171,3.9724171,0,0,0,0,0,0,0,0,2.1030836,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,487,217657.8,0,0,0,848.55017 -11968,14767,26644,26645,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.3725338,9.2020082,0,23,1,-29.981853,0,1,2,2019,6,0,31,31,1,0,0,37.786732,37.786732,0,0,0,0,0,0,0,0,4.5081306,0,57.16,56.15,48.77,60.16,10,1,1,0,0,10,12,5,1,683.5,1023731.1,1239122.8,134789.13,91479.625,10603.309 -11968,14767,26645,26644,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.5727568,9.6349287,0,23,-1,-66.459915,0,2,2,2019,16,4,50,55,1,4,0,33.707165,33.707165,0,0,0,0,0,0,0,0,1.9508172,0,48.77,60.16,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,683.5,1023731.1,1239122.8,134789.13,91479.625,10603.309 -11968,14768,26646,-9,26644,26645,1,0,18,0,0,1,2,0,0,0,4,0,6.3711758,6.2959704,0,0,-1019.738,-9,1,1,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,5.7719684,0,44.13,56.51,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,715,130260.87,0,0,0,57.708298 -11969,14769,26647,26648,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.3794932,5.44909,64,-1,-96.46209,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9147079,5.6611037,56.65,41.3,53.78,56.44,6.666666666666667,1,1,0,0,0,4,2,1,584.5,605582.63,162727.81,423350.94,0,1686.6809 -11969,14769,26648,26647,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.4821982,6.7116346,64,1,29.15456,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0995957,6.8570547,53.78,56.44,56.65,41.3,10,1,1,0,0,0,4,2,1,584.5,605582.63,162727.81,423350.94,0,1686.6809 -11970,14770,26649,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1000.0222,0,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,39.71,23.9,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,463,100208.41,0,0,0,1512.0533 -11971,14771,26650,-9,26652,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.25787,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,283.33334,265271.34,-85260.82,0,0,1907.3246 -11971,14771,26651,-9,26652,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.95856,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,3,1,283.33334,265271.34,-85260.82,0,0,1907.3246 -11971,14771,26652,-9,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.1493998,7.8578191,0,0,0,-990.94739,0,3,3,2019,6,0,37,37,1,0,0,10.029558,10.029558,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,13,3,1,283.33334,265271.34,-85260.82,0,0,1907.3246 -11972,14772,26653,26654,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.2805281,7.8437047,34,-1,-22.400961,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7322216,8.039155,51.83,57.2,44.09,31.24,8.333333333333334,1,1,0,0,0,9,3,1,205,1262014.5,342867.25,457294.81,-15192.134,2803.3687 -11972,14772,26654,26653,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,34,1,-37.570526,0,2,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,44.09,31.24,51.83,57.2,5,1,1,0,0,0,9,3,1,205,1262014.5,342867.25,457294.81,-15192.134,2803.3687 -11973,14773,26655,26656,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,59,-8,-17.621618,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,5.48,1,1,0,0,0,51.19,38.44,56.27,10.51,10,1,1,0,0,0,5,2,1,410,235472.48,80752.828,108390.95,0,2023.2278 -11973,14773,26656,26655,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.5544295,7.4604254,59,8,-12.450456,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,7.4916482,56.27,10.51,51.19,38.44,8.333333333333334,1,1,0,0,0,5,2,1,410,235472.48,80752.828,108390.95,0,2023.2278 -11974,14774,26657,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.3594875,8.614049,0,0,0,-1044.3196,0,2,2,2019,32,12,37,37,1,12,0,14.648383,14.648383,0,0,0,0,0,1,1,0,0,0,27.72,58.93,-9,-9,3.333333333333333,1,1,0,0,10,10,5,1,1192,147856.27,10367.832,226879.05,21236.156,2535.8843 -11975,14775,26658,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1078.566,-9,2,1,2019,15,5,0,0,3,5,1,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,3.333333333333333,1,1,1,0,0,8,2,1,979,-80874.625,0,0,0,-576.51813 -11976,14776,26659,-9,26660,26661,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6161,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 -11976,14776,26660,26661,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.101727,7.4957466,0,6,2,43.163124,0,3,3,2019,8,0,16,14,1,0,0,8.8817282,8.8817282,0,0,0,0,0,1,1,0,0,0,41.02,59.77,45.56,49.1,6.666666666666667,1,1,0,0,10,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 -11976,14776,26661,26660,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.7043972,8.9778452,0,6,-2,83.736748,0,-9,-9,2019,12,0,45,40,1,0,0,14.804243,14.804243,0,0,0,0,0,1,1,0,0,0,45.56,49.1,41.02,59.77,8.333333333333334,1,1,0,0,9,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 -11976,14776,26662,-9,26660,26661,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.75439,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,0,1103,-19483.301,64220.578,226439.98,135815.59,3078.2283 -11977,14777,26663,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,5.2144675,5.1110654,0,0,-993.01312,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.7610464,29.56,41.31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1111,-58140.43,126740.57,0,0,1273.7141 -11978,14778,26664,26665,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.188251,4.7908545,66,3,99.270256,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,.65916348,5.2225699,51.5,50.48,63.33,19.69,8.333333333333334,1,1,0,0,0,2,2,1,1382,36456.586,99622.234,109801.31,0,1504.8611 -11978,14778,26665,26664,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,66,-3,52.431541,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.810215,0,63.33,19.69,51.5,50.48,6.666666666666667,1,1,0,0,0,2,2,1,1382,36456.586,99622.234,109801.31,0,1504.8611 -11979,14779,26666,-9,26667,26671,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.62537,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 -11979,14779,26667,26671,-9,-9,1,0,45,0,4,0,2,2,-9,0,3,7.3734665,7.7282839,0,24,-5,22.742619,0,3,2,2019,12,6,21,25,1,6,0,8.352622,8.352622,0,0,0,0,0,1,1,0,0,0,28.8,63.72,49.29,54.59,3.333333333333333,1,1,0,1,5,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 -11979,14779,26668,-9,26667,26671,1,0,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-1048.655,-9,2,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 -11979,14779,26669,-9,26667,26671,1,0,16,0,4,1,2,0,-9,0,3,0,0,0,0,0,-1015.6163,-9,2,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,-9,-9,6.666666666666667,1,1,0,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 -11979,14779,26670,-9,26667,26671,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-930.72131,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 -11979,14779,26671,26667,-9,-9,1,1,50,0,4,0,1,1,-9,0,3,8.7429094,9.1140785,0,24,5,-69.54142,0,2,-9,2019,12,1,43,37,1,1,0,25.649847,25.649847,0,0,0,0,0,1,1,0,3.1328397,0,49.29,54.59,28.8,63.72,3.333333333333333,1,1,0,0,12,5,4,1,848.33331,1303932.6,1061579.6,234832.72,0,4060.7483 -11980,14780,26672,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,6.4263453,6.557301,0,0,0,-1080.177,0,-9,-9,2019,12,0,14,0,1,2,0,4.7197757,4.7197757,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,2,3,0,0,1,2,2,0,851,393155.38,0,0,0,184.24431 -11981,14781,26673,26675,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.7203584,7.3786488,0,18,-1,-81.182152,0,1,1,2019,0,0,50,8,1,0,0,5.392283,5.392283,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.2,57.49,10,1,1,0,0,3,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 -11981,14781,26674,-9,26673,26675,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.7171,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 -11981,14781,26675,26673,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.4357748,9.4711828,0,8,1,-52.047932,0,-9,-9,2019,7,0,50,50,1,0,0,22.993296,22.993296,0,0,0,0,0,0,0,0,1.1743776,0,54.2,57.49,59.43,58.05,8.333333333333334,1,1,0,0,2,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 -11981,14781,26676,-9,26673,26675,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.13928,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,735.5,598832.81,339419.31,535330.75,108161.86,4872.9395 -11982,14782,26677,26678,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8408523,6.8294444,49,-7,-87.92791,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1943021,6.6075907,55.3,55.6,52,54.51,10,1,1,0,0,0,6,3,1,510,1196606.5,352199.25,373866.81,0,2213.7017 -11982,14782,26678,26677,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.9555516,7.5141287,49,7,-8.8251305,0,2,1,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.74827969,7.6547027,52,54.51,55.3,55.6,8.333333333333334,1,1,0,0,6,6,3,1,510,1196606.5,352199.25,373866.81,0,2213.7017 -11983,14783,26679,-9,26681,26680,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.6777,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,.45506912,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 -11983,14783,26680,26681,-9,-9,1,1,46,0,3,0,3,3,-9,0,3,7.7586818,8.1785879,0,1,5,86.131859,-9,-9,-9,2019,12,0,50,0,1,0,0,8.151001,8.151001,0,0,0,0,0,1,1,0,0,0,50.27,44.25,57.32,45.08,6.666666666666667,2,3,0,0,3,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 -11983,14783,26681,26680,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,16,-5,-112.8543,-9,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.32,45.08,50.27,44.25,8.333333333333334,2,3,0,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 -11983,14783,26682,-9,26681,26680,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-992.81531,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 -11983,14783,26683,-9,26681,26680,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-965.72552,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 -11983,14783,26684,-9,26681,26680,1,0,17,0,3,1,2,0,-9,0,3,0,0,0,0,0,-976.68896,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,5,2,3,0,0,0,8,2,0,404.66666,257293.08,0,258362.94,106506.19,2105.0144 -11984,14784,26685,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.8703976,6.9281712,0,0,0,-1020.2542,0,2,-9,2019,7,0,50,60,1,0,0,2.7203164,2.7203164,0,0,0,0,0,0,0,0,1.4667203,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,996,151786.66,131416.17,0,0,672.99854 -11985,14785,26686,-9,26688,26687,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.6276,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,981,1320209.9,1193558.4,247645.81,25743.332,4386.8911 -11985,14785,26687,26688,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,9.0690422,8.9824629,0,3,1,6.7037253,0,2,2,2019,8,0,35,35,1,0,0,26.476044,26.476044,0,0,0,0,0,1,1,0,5.8712325,0,58.32,50.22,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,981,1320209.9,1193558.4,247645.81,25743.332,4386.8911 -11985,14785,26688,26687,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.4625235,7.9505348,6.382493,3,-1,-17.778721,0,-9,-9,2019,12,2,22,28,1,2,0,8.5727797,8.5727797,0,0,0,0,0,1,1,0,6.5316305,0,51.83,57.2,58.32,50.22,8.333333333333334,4,2,0,0,2,7,5,1,981,1320209.9,1193558.4,247645.81,25743.332,4386.8911 -11985,14786,26689,-9,26688,26687,1,0,23,0,1,0,2,2,-9,0,4,8.0169458,8.3009825,0,0,0,-1013.6235,0,2,2,2019,9,0,40,50,1,0,1,8.3905029,8.3905029,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,216,146732.8,0,0,0,1658.7361 -11986,14787,26690,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,8.1003761,7.8360066,0,0,0,-1058.4967,0,3,3,2019,17,5,50,44,1,5,0,7.9649758,7.9649758,0,0,0,0,0,1,1,0,0,0,29.67,53.03,-9,-9,3.333333333333333,1,1,0,0,6,5,4,0,4936,513838.47,84933.664,0,0,1326.1864 -11987,14788,26691,26692,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.7434206,8.8526487,0,39,4,-30.210423,0,-9,-9,2019,11,0,35,50,1,0,0,16.504993,16.504993,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.91,59.89,6.666666666666667,1,1,0,0,13,10,5,1,737,-337698.63,101700.3,0,0,7094.9141 -11987,14788,26692,26691,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.3474407,7.2602253,0,39,-4,.98915356,0,2,-9,2019,11,0,20,20,1,0,0,6.8952203,6.8952203,0,0,0,0,0,0,0,0,9.5763655,0,45.91,59.89,54.37,54.8,6.666666666666667,1,1,0,0,13,10,5,1,737,-337698.63,101700.3,0,0,7094.9141 -11988,14789,26693,26694,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.2169561,8.3261909,0,10,1,-65.749725,0,2,2,2019,15,3,36,36,1,3,0,13.119251,13.119251,0,0,0,0,0,1,1,0,0,0,47.24,53.95,57.16,56.15,6.666666666666667,1,1,0,0,11,1,4,1,646,-93914.859,-105412.77,73867.164,29539.209,3009.6006 -11988,14789,26694,26693,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.5152431,7.7895041,0,10,-1,90.139694,0,2,2,2019,10,0,26,24,1,0,0,8.3948069,8.3948069,0,0,0,0,0,1,1,0,2.6152244,0,57.16,56.15,47.24,53.95,8.333333333333334,1,1,0,0,11,1,4,1,646,-93914.859,-105412.77,73867.164,29539.209,3009.6006 -11988,14789,26695,-9,26694,26693,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.4252,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,646,-93914.859,-105412.77,73867.164,29539.209,3009.6006 -11989,14790,26696,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.8236823,7.8917699,0,0,-1063.1935,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.88027233,7.6383095,42.46,41.62,-9,-9,3.333333333333333,1,1,0,0,6,5,3,1,625,308816.25,240575.75,156760.86,0,2154.6282 -11990,14791,26697,26699,-9,-9,1,1,25,0,1,0,2,2,-9,0,4,8.5841522,8.6485167,0,5,-3,-82.21994,0,-9,-9,2019,7,0,42,45,1,0,0,13.705679,13.705679,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.13,49.25,8.333333333333334,1,1,0,0,7,5,4,1,641,61269.082,25370.914,0,0,4320.3442 -11990,14791,26698,-9,26699,26697,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.79919,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,641,61269.082,25370.914,0,0,4320.3442 -11990,14791,26699,26697,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,8.1230764,7.5927343,0,5,3,5.8652411,0,-9,-9,2019,15,3,45,45,1,3,0,6.9456601,6.9456601,0,0,0,0,0,1,1,0,0,0,40.13,49.25,57.16,56.15,5,1,1,0,0,9,5,4,1,641,61269.082,25370.914,0,0,4320.3442 -11991,14792,26700,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,6.3165107,7.0610676,0,0,0,-947.07056,-9,1,2,2019,12,0,35,0,1,2,1,3.1014628,3.1014628,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,7,2,1,1009,-289209.53,0,0,0,674.27936 -11992,14793,26701,26702,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.035655,7.2088256,10,3,-5.0634804,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5008745,7.1108403,60.6,43.75,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,344.5,1746166.3,92733.375,327286.38,0,2112.3538 -11992,14793,26702,26701,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-3,-22.8127,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5521631,0,57.33,53.46,60.6,43.75,8.333333333333334,1,1,0,0,0,12,2,1,344.5,1746166.3,92733.375,327286.38,0,2112.3538 -11993,14794,26703,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.91931,0,3,3,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,16.58,-9,-9,0,1,1,1,0,0,12,1,0,376,-245235.06,0,0,0,294.272 -11994,14795,26704,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3428335,7.6853061,0,0,-963.94507,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.3029575,7.2254243,63.03,32.94,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,190,743565.44,86500.195,195854.03,0,1568.0333 -11995,14796,26705,26706,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,7.4984679,7.7311425,0,4,3,-41.701649,0,-9,-9,2019,3,1,35,40,1,1,0,7.1441617,7.1441617,0,0,0,0,0,0,0,0,0,0,43.69,40.44,46.04,53.14,5,2,3,0,0,8,9,3,1,534.5,425403.25,75764.094,410828.25,0,820.04181 -11995,14796,26706,26705,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,0,0,0,4,-3,6.3652682,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.04,53.14,43.69,40.44,10,2,3,1,0,0,9,3,1,534.5,425403.25,75764.094,410828.25,0,820.04181 -11996,14797,26707,26708,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,7.900085,7.8659029,0,4,2,19.441759,0,2,-9,2019,9,0,52,50,1,0,0,5.8456559,5.8456559,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.04,55.86,8.333333333333334,1,1,0,0,9,11,3,0,788.33331,43460.941,44300.492,0,0,1341.9623 -11996,14797,26708,26707,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,0,0,0,4,-2,-138.85704,1,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.16,56.15,8.333333333333334,1,1,0,0,2,11,3,0,788.33331,43460.941,44300.492,0,0,1341.9623 -11996,14797,26709,-9,26708,26707,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-977.04535,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,788.33331,43460.941,44300.492,0,0,1341.9623 -11997,14798,26710,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8067236,7.8359928,0,0,-1036.8033,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.451726,7.8930035,44.36,54.04,-9,-9,8.333333333333334,2,3,0,0,3,12,3,1,586,499269.03,377190.91,272722.88,18448.016,1727.3191 -11998,14799,26711,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,1,0,6.3999887,6.7584167,0,0,-978.07434,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5287461,6.6117377,54.54,25.65,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,72,-192514.56,63014.93,50737.598,0,1585.5137 -11999,14800,26712,26713,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.4635181,8.3280411,0,9,7,-62.264202,-9,2,2,2019,17,5,39,0,1,5,0,12.489464,12.489464,0,0,0,0,0,0,0,0,0,0,42.52,35.96,57.06,57.76,3.333333333333333,1,1,0,0,9,10,5,1,742,1266574.9,912378.75,321286.22,37164.688,4727.1836 -11999,14800,26713,26712,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,9.1402044,9.2486067,0,9,-7,88.213043,0,1,1,2019,7,0,50,43,1,0,0,19.239775,19.239775,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.52,35.96,8.333333333333334,1,1,0,0,9,10,5,1,742,1266574.9,912378.75,321286.22,37164.688,4727.1836 -12000,14801,26714,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.2458725,7.3857751,0,0,-1004.7791,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,4.1511197,0,25.838755,0,1,1,0,5.0894423,6.7860999,56.55,45.59,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,411,648906.06,92701.273,237544.55,0,1524.3558 -12001,14802,26715,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.7988386,8.6919212,0,0,0,-936.38153,0,2,1,2019,11,0,42,40,1,2,0,14.342786,14.342786,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,0,9,8,4,0,704,142139.55,50807.594,0,0,2398.77 -12001,14803,26716,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,0,0,0,0,0,-875.40228,0,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,3,4,0,0,3,8,1,0,572.5,0,0,0,0,570.75281 -12001,14803,26717,-9,26716,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.7236,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,572.5,0,0,0,0,570.75281 -12001,14804,26718,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.7564783,8.5008364,0,0,0,-892.03583,0,2,1,2019,11,0,41,45,1,2,0,19.154274,19.154274,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,0,0,6,8,5,0,1370,-11645.548,128063.73,0,0,2354.0017 -12001,14805,26719,-9,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.3512955,8.0897999,0,0,0,-1025.5846,0,-9,-9,2019,10,0,40,35,1,1,0,12.272628,12.272628,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,0,0,5,8,4,0,242,531083.13,0,207434.42,-1851.7334,1331.3647 -12002,14806,26720,26721,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.0632434,7.1067891,0,33,-13,-69.805641,0,3,2,2019,13,1,14,26,1,1,0,9.0983419,9.0983419,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52,54.51,8.333333333333334,1,1,0,0,11,6,4,1,1111,850127,420372,254389.47,0,3173.5574 -12002,14806,26721,26720,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.3976088,8.356431,33,13,-134.23701,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1251411,52,54.51,49.04,55.86,6.666666666666667,1,1,0,0,11,6,4,1,1111,850127,420372,254389.47,0,3173.5574 -12003,14807,26722,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,8.9517708,9.4102154,0,0,0,-920.05811,0,3,2,2019,11,0,55,50,1,0,0,16.312227,16.312227,0,0,0,0,0,1,1,0,3.8007269,0,41.47,47.55,-9,-9,5,1,1,0,0,12,10,5,1,402,197371.5,-3509.9277,118103.2,58405.633,3000.4963 -12004,14808,26723,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.4101253,7.118485,0,0,0,-1061.2258,0,-9,-9,2019,6,0,20,0,1,0,0,8.5269957,8.5269957,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,6,3,0,353,-118423.06,-37797.934,0,0,431.97345 -12005,14809,26724,26726,-9,-9,1,1,48,1,2,0,1,1,-9,0,4,0,0,0,6,14,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.9471831,0,61.27,46.03,57.06,57.76,10,1,1,0,0,1,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 -12005,14809,26725,-9,26726,26724,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-969.8233,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 -12005,14809,26726,26724,-9,-9,1,0,34,1,2,0,1,1,0,0,5,0,0,0,6,-14,0,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.9800091,0,57.06,57.76,61.27,46.03,10,1,1,0,0,2,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 -12005,14809,26727,-9,26726,26724,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.60236,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,1,1220.25,316698.5,307982.69,324141.47,45359.648,1562.8413 -12006,14810,26728,26729,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.9614635,7.9343286,10,4,-25.288759,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4224985,7.884551,54.2,57.49,56.18,51.02,8.333333333333334,1,1,0,0,5,13,3,1,548,678948.38,404847.84,278272.19,0,2480.2773 -12006,14810,26729,26728,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,10,-4,-12.44301,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,51.02,54.2,57.49,8.333333333333334,1,1,0,0,6,13,3,1,548,678948.38,404847.84,278272.19,0,2480.2773 -12007,14811,26730,26731,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,0,0,0,20,-12,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,48.83,46.29,10,1,1,0,0,0,4,1,0,1220.5,182561.03,0,176112.75,0,1122.2665 -12007,14811,26731,26730,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,20,12,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.53451937,0,48.83,46.29,60.02,56.42,10,1,1,0,0,10,4,1,0,1220.5,182561.03,0,176112.75,0,1122.2665 -12008,14812,26732,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1015.5507,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,140,102732.86,0,0,0,1025.0807 -12009,14813,26733,-9,26736,26734,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7151,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 -12009,14813,26734,26736,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,8.1646042,8.1306229,0,14,2,-58.205849,0,1,3,2019,10,1,30,30,1,1,0,12.696919,12.696919,0,0,0,0,0,1,1,0,.89950091,0,43.6,53.51,48.87,58.55,6.666666666666667,1,1,0,0,9,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 -12009,14813,26735,-9,26736,26734,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.84363,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 -12009,14813,26736,26734,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.1184072,7.890985,0,15,-2,47.977684,0,2,2,2019,7,0,38,38,1,0,0,9.6902275,9.6902275,0,0,0,0,0,1,1,0,1.9182323,0,48.87,58.55,43.6,53.51,6.666666666666667,1,1,0,1,7,9,4,0,483.75,120697.44,3439.0601,245438.13,181423.84,3121.2344 -12010,14814,26737,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.2324867,8.184041,0,0,0,-1021.3945,0,-9,-9,2019,8,0,43,105,1,0,0,12.264064,12.264064,0,0,0,0,0,0,0,0,2.2704377,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,539,-192178.77,-88396.414,0,0,1152.9506 -12011,14815,26738,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.6765652,7.7056031,0,0,-1075.8042,0,1,1,2019,19,8,0,0,4,8,0,0,0,1,0,0,0,2,1,1,0,2.6130681,7.6329007,35.02,49.06,-9,-9,3.333333333333333,1,1,0,1,7,4,3,1,400,818799.13,434703.53,155027.22,0,2097.137 -12011,14816,26739,-9,26738,-9,1,0,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-946.05481,0,1,-9,2019,35,12,0,20,3,12,0,0,0,0,0,0,0,0,1,1,0,7.2068367,0,24.84,31.03,-9,-9,0,1,1,0,1,6,4,1,1,154,349447.97,0,0,0,1349.9476 -12012,14817,26740,26741,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.9075184,8.428792,7.9204049,9,2,-101.08431,0,2,2,2019,9,2,38,38,1,2,0,7.1207609,7.1207609,0,0,0,0,0,0,0,0,0,7.7696872,47.73,39.43,26.22,51.71,8.333333333333334,1,1,0,0,9,13,5,1,857.33331,259251.19,271008.84,129501.23,9509.7598,4293.2666 -12012,14817,26741,26740,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.7193575,8.7513371,0,9,-2,-102.66869,0,2,2,2019,20,7,38,38,1,7,0,16.62929,16.62929,0,0,0,0,0,0,0,0,0,0,26.22,51.71,47.73,39.43,6.666666666666667,1,1,0,0,10,13,5,1,857.33331,259251.19,271008.84,129501.23,9509.7598,4293.2666 -12012,14817,26742,-9,26741,26740,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-953.32379,-9,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.49,48.68,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,857.33331,259251.19,271008.84,129501.23,9509.7598,4293.2666 -12012,14818,26743,-9,26741,26740,1,0,22,0,0,0,2,2,1,0,4,7.8150587,8.0645533,0,0,0,-1011.9979,-9,2,2,2019,7,0,40,0,1,0,1,6.8323259,6.8323259,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,8.333333333333334,1,1,0,1,1,13,4,1,1251,-254859.52,111658.21,0,0,933.16364 -12013,14819,26744,26745,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.7681141,7.5123949,0,32,0,33.860703,0,3,3,2019,24,11,35,35,1,11,0,7.3490968,7.3490968,0,0,0,0,0,0,0,0,2.3602657,0,29.82,63.56,33.77,48.45,6.666666666666667,1,1,0,0,13,4,4,1,575.5,283725.78,-10936.597,189530.13,36300.488,2620.0518 -12013,14819,26745,26744,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.1026726,8.1223068,5.1537132,11,9,56.030777,0,-9,2,2019,23,11,36,36,1,11,0,12.342583,12.342583,0,0,0,0,0,0,0,0,2.3097894,5.0673366,33.77,48.45,29.82,63.56,3.333333333333333,1,1,0,0,12,4,4,1,575.5,283725.78,-10936.597,189530.13,36300.488,2620.0518 -12013,14820,26746,-9,26744,26745,1,1,26,0,0,0,2,2,-9,0,4,8.8443489,8.4403687,0,0,0,-954.8858,0,2,2,2019,6,0,60,44,1,0,1,11.272097,11.272097,0,0,0,0,0,0,0,0,.42115238,0,52.4,55.58,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,826,32471.129,7598.0845,0,0,2105.0593 -12014,14821,26747,26748,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.6063857,7.1090999,48,-3,9.7580976,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3550792,7.1457343,54.2,57.49,47.16,47.3,8.333333333333334,1,1,0,0,0,12,3,1,432.5,1450129.6,296112.19,919778.06,0,2108.0159 -12014,14821,26748,26747,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.1420002,7.151248,48,3,-47.879738,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.699103,6.9993281,47.16,47.3,54.2,57.49,6.666666666666667,1,1,0,0,0,12,3,1,432.5,1450129.6,296112.19,919778.06,0,2108.0159 -12015,14822,26749,26750,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.0594831,6.0385447,37,9,-82.841469,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0163412,49.73,53.97,60.12,54.8,8.333333333333334,1,1,0,0,0,10,2,1,620.5,850693.75,83216.867,277018.56,0,1499.9313 -12015,14822,26750,26749,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.9783726,6.2136497,37,0,-39.652657,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8322873,60.12,54.8,49.73,53.97,10,1,1,0,0,4,10,2,1,620.5,850693.75,83216.867,277018.56,0,1499.9313 -12016,14823,26751,26752,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.4288645,6.4981914,0,7,-1,61.319462,0,3,3,2019,12,2,10,10,1,2,0,7.5961046,7.5961046,0,0,0,0,0,1,1,0,0,0,41.65,60.41,60.84,47.65,8.333333333333334,1,1,0,0,8,11,3,0,243.5,272665.78,30882.309,0,0,2440.4331 -12016,14823,26752,26751,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,7.631784,7.6540484,5.6915584,7,1,31.908226,0,3,2,2019,6,0,12,15,1,0,0,16.604628,16.604628,0,0,0,0,0,1,1,0,5.4493055,5.7314224,60.84,47.65,41.65,60.41,0,1,1,0,0,8,11,3,0,243.5,272665.78,30882.309,0,0,2440.4331 -12016,14824,26753,-9,26751,26752,1,1,39,0,0,0,3,3,-9,0,4,7.4363074,7.7289476,0,0,0,-999.7439,0,3,3,2019,9,0,17,21,1,0,0,11.685193,11.685193,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,7,11,3,0,438,-252769.23,4714.6338,0,0,897.00787 -12017,14825,26754,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-962.27942,0,2,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.88,12.01,-9,-9,1.666666666666667,1,1,0,1,0,11,2,0,613,-47559.918,-23225.586,0,0,963.42303 -12017,14826,26755,-9,26754,-9,1,0,23,0,0,0,2,2,-9,0,5,7.4268551,7.1239915,0,0,0,-923.57898,0,2,2,2019,7,0,30,17,1,0,1,6.2458973,6.2458973,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,3,0,249,196838.7,0,0,0,1096.4265 -12017,14827,26756,-9,26754,-9,1,0,20,0,0,0,1,1,-9,0,3,0,0,0,0,0,-840.9234,1,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,3,11,1,0,360,-41703.137,0,0,0,695.02185 -12018,14828,26757,-9,26758,26760,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1009.5469,-9,2,2,2019,16,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 -12018,14828,26758,26760,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,17,-4,59.429165,0,2,2,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,7.2677026,0,46.16,58.62,57.16,56.15,8.333333333333334,1,1,0,0,11,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 -12018,14828,26759,-9,26758,26760,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1110.8462,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 -12018,14828,26760,26758,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.6377754,8.412734,0,17,4,170.97906,0,2,2,2019,7,0,37,40,1,0,0,19.094597,19.094597,0,0,0,0,0,1,1,0,1.5007181,0,57.16,56.15,46.16,58.62,8.333333333333334,1,1,0,0,11,10,3,1,622,175543.17,49019.258,170463.02,43531.746,2084.0684 -12019,14829,26761,26762,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,19,6,-98.613914,-9,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19,19.03,54,54,5,1,1,0,0,6,2,3,0,478,1146872.4,793885.5,261144.27,0,1650.2129 -12019,14829,26762,26761,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.0754299,8.0738363,0,19,-6,92.717575,-9,3,3,2019,9,0,40,0,1,1,0,6.659133,6.659133,0,0,0,0,0,1,1,0,.91778803,0,54,54,47.19,19.03,8,1,1,0,0,1,2,3,0,478,1146872.4,793885.5,261144.27,0,1650.2129 -12020,14830,26763,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.2494898,8.2969904,5.3265605,0,0,-959.2757,0,2,2,2019,18,6,37,40,1,6,0,14.236413,14.236413,0,0,0,0,0,0,0,0,0,5.6013784,43.83,43.24,-9,-9,3.333333333333333,1,1,0,0,10,6,5,1,1559,1288403.4,664990.75,275944.25,0,1163.7218 -12021,14831,26764,26765,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.1624203,9.437685,0,10,-5,-44.654884,0,3,3,2019,6,0,41,43,1,0,0,22.448343,22.448343,0,0,0,0,0,0,0,0,7.7905278,0,51.64,55.4,49,48,10,1,1,0,0,12,4,5,1,496.5,802516.19,472465.75,163919.72,0,4578.3398 -12021,14831,26765,26764,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.4744277,4.8250089,27,5,-10.787116,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3342338,5.1582394,49,48,51.64,55.4,8.333333333333334,1,1,0,0,6,4,5,1,496.5,802516.19,472465.75,163919.72,0,4578.3398 -12022,14832,26766,26767,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.8134437,7.7907023,46,0,-14.480262,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.9383173,7.7267718,55.96,49.93,36.03,40.6,8.333333333333334,1,1,0,0,6,12,3,1,369.5,517287.06,432878.22,263420.25,0,3119.9316 -12022,14832,26767,26766,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,41,9,25.405781,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,36.03,40.6,55.96,49.93,10,1,1,0,0,0,12,3,1,369.5,517287.06,432878.22,263420.25,0,3119.9316 -12023,14833,26768,26769,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.8332319,7.8436685,3.7591588,1,2,-184.89894,-9,2,3,2019,17,5,85,0,1,5,0,3.8518729,3.8518729,0,0,0,0,0,0,0,0,6.0267792,3.739382,43.65,58.28,43.6,53.51,1.666666666666667,1,1,0,0,7,6,3,1,918,262820.44,410223.91,100673.53,5138.5303,2693.2178 -12023,14833,26769,26768,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.3351407,7.424407,4.4516692,1,-2,-31.542257,-9,3,3,2019,15,6,25,0,1,6,0,6.3444462,6.3444462,0,0,0,0,0,0,0,0,3.7562399,4.2645497,43.6,53.51,43.65,58.28,3.333333333333333,1,1,0,1,7,6,3,1,918,262820.44,410223.91,100673.53,5138.5303,2693.2178 -12024,14834,26770,26772,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,7.5489864,7.2444568,0,5,3,22.319395,0,3,2,2019,6,0,20,20,1,0,0,10.459586,10.459586,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51,56,8.333333333333334,2,3,0,1,4,5,4,0,606.33331,-182818.41,0,96983.547,74998.016,1878.4299 -12024,14834,26771,-9,26770,26772,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.7264,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,4,0,606.33331,-182818.41,0,96983.547,74998.016,1878.4299 -12024,14834,26772,26770,-9,-9,1,1,34,0,1,0,3,3,-9,0,4,8.0150728,8.3228712,0,5,-3,-77.871872,0,-9,-9,2019,10,0,35,35,1,1,0,11.695796,11.695796,0,0,0,0,0,0,0,0,0,0,51,56,54.1,59.11,7,2,3,0,0,1,5,4,0,606.33331,-182818.41,0,96983.547,74998.016,1878.4299 -12025,14835,26773,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.059392,5.1782207,0,0,-1109.5739,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,5.147253,41.86,20.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,311,-379165.5,0,0,0,1374.9275 -12026,14836,26774,26775,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.3807945,7.3985786,0,30,0,-25.241909,0,3,3,2019,24,12,30,35,1,12,0,7.1419578,7.1419578,0,0,0,0,0,0,0,0,1.8953598,0,26.4,51.81,39.69,47.81,3.333333333333333,1,1,0,0,10,4,4,1,357.5,445487.81,283227.53,187658.53,18099.773,2870.8386 -12026,14836,26775,26774,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.229331,8.2787619,4.960227,9,9,2.445236,0,-9,2,2019,23,11,36,36,1,11,0,15.577171,15.577171,0,0,0,0,2,0,0,0,0,4.8377385,39.69,47.81,26.4,51.81,3.333333333333333,1,1,0,0,10,4,4,1,357.5,445487.81,283227.53,187658.53,18099.773,2870.8386 -12026,14837,26776,-9,26774,26775,1,1,24,0,0,0,2,2,-9,0,3,7.6599813,7.8781066,0,0,0,-946.50262,0,2,2,2019,16,4,37,32,1,4,1,6.1205702,6.1205702,0,0,0,0,2,0,0,0,0,0,37.36,58.26,-9,-9,3.333333333333333,1,1,0,0,10,4,3,1,1086,142752.47,0,0,0,677.27954 -12027,14838,26777,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.6272192,7.2318053,0,0,-1017.9684,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.87869918,7.2609849,54.39,44.26,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,427,276582.5,208874.73,83577.594,0,2161.0042 -12028,14839,26778,26779,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,2.8727233,2.6862102,10,-2,42.834362,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.142745,2.806174,60.42,42.39,55.36,51.57,8.333333333333334,1,1,0,0,1,9,2,1,212,506337.94,13009.365,338149.19,0,1735.2378 -12028,14839,26779,26778,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.7520876,5.4886465,10,2,54.953968,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7890186,5.7635541,55.36,51.57,60.42,42.39,8.333333333333334,1,1,0,0,1,9,2,1,212,506337.94,13009.365,338149.19,0,1735.2378 -12029,14840,26780,26781,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.6866484,7.716805,0,36,0,36.084171,0,2,3,2019,12,4,30,30,1,4,0,7.5664163,7.5664163,0,0,0,0,0,0,0,0,.53123093,0,42.45,54.73,63.71,31.34,5,1,1,0,0,10,6,5,1,961,838998,500906.63,474507.88,173272.69,2839.0803 -12029,14840,26781,26780,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.7195311,8.3238277,0,36,0,.44572639,0,3,3,2019,10,1,35,35,1,1,0,21.048058,21.048058,0,0,0,0,0,0,0,0,3.9181962,0,63.71,31.34,42.45,54.73,8.333333333333334,1,1,0,0,10,6,5,1,961,838998,500906.63,474507.88,173272.69,2839.0803 -12030,14841,26782,26783,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.4684038,6.4960036,45,5,-86.315605,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0991149,6.7656479,58.05,54.52,63,32.96,8.333333333333334,1,1,0,0,0,10,2,1,499,88408.039,161285.13,175776.09,0,2841.7529 -12030,14841,26783,26782,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,3.9875619,4.1238413,45,-5,11.713598,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8508244,4.3455029,63,32.96,58.05,54.52,10,1,1,0,0,3,10,2,1,499,88408.039,161285.13,175776.09,0,2841.7529 -12031,14842,26784,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9505329,7.0233827,5.3830338,0,0,-972.64978,0,2,2,2019,10,0,20,20,1,0,0,4.6582193,4.6582193,0,0,0,0,27,1,1,0,3.2271786,5.3054385,44.55,36.49,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,887,-208376.84,113121.74,0,0,985.57471 -12032,14843,26785,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.5720577,8.5074062,0,0,0,-921.22845,0,-9,-9,2019,9,0,38,35,1,0,0,14.789691,14.789691,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,6,9,5,0,660,118518.51,58821.402,0,0,2536.3433 -12033,14844,26786,26787,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.7084684,8.8596449,0,4,2,-30.240442,0,2,3,2019,6,0,38,43,1,0,0,18.656252,18.656252,0,0,0,0,2,1,1,0,0,0,53.14,45.74,55.46,20.6,8.333333333333334,1,1,0,0,11,7,4,1,665,196274.81,1037.8145,143109.34,77392.328,2281.7351 -12033,14844,26787,26786,-9,-9,1,0,34,0,0,0,1,1,1,1,2,5.24124,5.1192279,0,4,-2,119.76844,-9,-9,-9,2019,13,1,1,0,1,1,0,20.036278,20.036278,0,0,0,0,0,1,1,0,0,0,55.46,20.6,53.14,45.74,6.666666666666667,1,1,0,0,2,7,4,1,665,196274.81,1037.8145,143109.34,77392.328,2281.7351 -12034,14845,26788,-9,26789,26790,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.70447,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,0,1092,-108012.07,-8263.9609,0,0,4997.6514 -12034,14845,26789,26790,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,0,0,0,29,0,-132.54477,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,8.6462765,0,50,54,43.14,43.4,8,2,3,0,0,0,6,3,0,1092,-108012.07,-8263.9609,0,0,4997.6514 -12034,14845,26790,26789,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,8.1270475,7.7485905,0,29,9,-52.700024,0,-9,-9,2019,27,12,40,40,1,12,0,8.956111,8.956111,0,0,0,0,0,1,1,0,0,0,43.14,43.4,50,54,8.333333333333334,2,3,0,0,5,6,3,0,1092,-108012.07,-8263.9609,0,0,4997.6514 -12034,14846,26791,-9,26789,26790,1,1,22,0,1,1,2,0,0,0,3,0,0,0,0,0,-1068.2224,-9,2,2,2019,18,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,31.32,59.94,-9,-9,1.666666666666667,2,3,0,0,1,6,1,0,651,106535.57,0,0,0,80.068802 -12034,14847,26792,-9,26789,26790,1,0,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-1000.4351,-9,3,1,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,2,3,0,0,1,6,1,0,328,-167388.83,0,0,0,406.14133 -12035,14848,26793,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.6901102,6.4598603,0,0,-978.66302,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2096696,6.1210561,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,1917,-18769.498,169720.97,77989.398,0,941.00916 -12036,14849,26794,26795,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,8.6795225,8.5557871,29,6,62.310581,0,2,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,0,0,0,6.0479507,8.7309303,42.93,54.5,19.7,59.27,6.666666666666667,1,1,0,0,0,2,4,1,575.5,1111497.5,750653.81,287524.84,0,3750.7668 -12036,14849,26795,26794,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,29,-6,-133.84491,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,0,0,0,6.9337983,0,19.7,59.27,42.93,54.5,3.333333333333333,1,1,0,0,0,2,4,1,575.5,1111497.5,750653.81,287524.84,0,3750.7668 -12037,14850,26796,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.5712805,5.5512133,0,0,-993.94135,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.4912677,60.12,54.8,-9,-9,10,1,1,0,0,0,4,2,0,3271,179935.34,185151.91,135710.22,0,732.64972 -12038,14851,26797,26798,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.5972404,8.7407875,0,7,3,39.54467,0,3,3,2019,7,0,38,38,1,0,0,18.078285,18.078285,0,0,0,0,2,1,1,0,2.8867929,0,60.12,54.8,52.88,32.74,10,1,1,0,0,8,12,4,1,1468.5,1341722.8,565409.63,172232.94,0,2106.6318 -12038,14851,26798,26797,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,7,-3,24.119532,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.88,32.74,60.12,54.8,8.333333333333334,1,1,1,0,2,12,4,1,1468.5,1341722.8,565409.63,172232.94,0,2106.6318 -12039,14852,26799,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,0,5.9556618,6.3144212,0,0,-1078.9701,0,3,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.194026,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,2,6,2,1,1843,125482.05,0,0,0,582.17432 -12039,14852,26800,-9,26799,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.3572,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,1843,125482.05,0,0,0,582.17432 -12040,14853,26801,26802,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.5704827,7.249485,0,1,-3,-93.771027,-9,2,2,2019,10,0,21,0,1,0,0,9.7676678,9.7676678,0,0,0,0,71.5,1,1,0,0,0,46.85,49.99,51.24,58.84,8.333333333333334,1,1,0,0,7,13,5,1,528.5,811347.13,500585.75,269677.66,196221.84,6338.0073 -12040,14853,26802,26801,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.1677008,9.4753008,0,1,3,-26.207298,-9,2,3,2019,11,2,45,0,1,2,0,31.135214,31.135214,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.85,49.99,8.333333333333334,1,1,0,0,7,13,5,1,528.5,811347.13,500585.75,269677.66,196221.84,6338.0073 -12041,14854,26803,26805,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,7.9691658,8.0205307,0,27,-6,118.96301,0,2,2,2019,4,0,30,44,1,0,0,14.59418,14.59418,0,0,0,0,0,1,1,0,0,0,52.77,58.29,55.36,51.57,8.333333333333334,1,1,0,0,13,9,3,1,1363,126652.38,105563.5,0,0,3038.8804 -12041,14854,26804,-9,26803,26805,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1029.7616,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,57.46,-9,-9,10,1,1,0,0,0,9,3,1,1363,126652.38,105563.5,0,0,3038.8804 -12041,14854,26805,26803,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,7.8562684,7.7093172,0,27,6,-73.907326,0,-9,-9,2019,11,0,45,40,1,0,0,4.8817682,4.8817682,0,0,0,0,0,1,1,0,0,0,55.36,51.57,52.77,58.29,6.666666666666667,1,1,0,0,13,9,3,1,1363,126652.38,105563.5,0,0,3038.8804 -12042,14855,26806,-9,26807,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1021.4836,-9,2,-9,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,0,8,2,0,1186.5,-23025.801,0,0,0,1929.7872 -12042,14855,26807,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.0996504,7.0322242,0,0,0,-964.80273,0,3,2,2019,13,1,16,16,1,1,0,8.9308281,8.9308281,0,0,0,0,0,1,1,0,0,0,47.38,39.14,-9,-9,6.666666666666667,3,4,0,0,6,8,2,0,1186.5,-23025.801,0,0,0,1929.7872 -12042,14856,26808,-9,26807,-9,1,0,24,0,1,0,1,1,-9,0,4,0,0,0,0,0,-881.513,1,2,1,2019,12,0,0,35,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49,60.01,-9,-9,8.333333333333334,3,4,0,0,5,8,1,0,297,-122928.09,0,0,0,0 -12042,14857,26809,-9,26807,-9,1,1,23,0,1,0,2,2,1,0,4,7.5943718,7.4269786,0,0,0,-1046.7399,-9,2,-9,2019,5,0,20,0,1,0,1,8.3571119,8.3571119,0,0,0,0,0,1,1,0,0,0,60.63,54.55,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,302,5201.1758,0,0,0,340.04105 -12042,14858,26810,-9,26807,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-924.34686,-9,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,884,0,0,0,0,0 -12043,14859,26811,26812,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6682091,7.8983126,0,26,0,38.894272,0,2,-9,2019,6,0,21,18,1,0,0,10.555967,10.555967,0,0,0,0,0,0,0,0,.31031123,0,54.2,57.49,27.53,58.27,6.666666666666667,1,1,0,0,12,4,5,1,595.5,400200.13,126996.04,152066.63,0,3654.5813 -12043,14859,26812,26811,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5890579,8.4637709,0,9,0,-11.163529,0,-9,-9,2019,11,0,41,8,1,0,0,13.426991,13.426991,0,0,0,0,0,0,0,0,6.5800605,0,27.53,58.27,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,1,595.5,400200.13,126996.04,152066.63,0,3654.5813 -12044,14860,26813,26814,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.0468264,8.6356688,0,4,-5,-11.08222,0,-9,-9,2019,11,0,43,40,1,0,0,19.394651,19.394651,0,0,0,0,0,0,0,0,0,0,47.01,58,58.89,48.6,8.333333333333334,1,1,0,0,8,11,5,1,1084.5,1259095.6,930031.5,323678.31,56353.984,3648.072 -12044,14860,26814,26813,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.9558206,8.5169001,0,4,5,-96.783768,0,-9,-9,2019,8,0,30,30,1,0,0,13.488187,13.488187,0,0,0,0,2,0,0,0,2.2741325,0,58.89,48.6,47.01,58,8.333333333333334,1,1,0,0,8,11,5,1,1084.5,1259095.6,930031.5,323678.31,56353.984,3648.072 -12045,14861,26815,26816,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.0965137,9.2164431,0,6,-7,-48.792179,0,2,2,2019,11,1,37,0,1,1,0,25.156954,25.156954,0,0,0,0,0,0,0,0,4.7875671,0,42.36,56.12,61.2,31.05,6.666666666666667,1,1,0,0,9,9,5,1,444.33334,484204.38,411519.63,264110.25,147603.02,3375.6707 -12045,14861,26816,26815,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,7.0090542,6.8603005,0,6,7,-85.631409,-9,-9,-9,2019,10,0,45,0,1,0,0,2.6204195,2.6204195,0,0,0,0,0,0,0,0,7.295783,0,61.2,31.05,42.36,56.12,6.666666666666667,1,1,0,0,10,9,5,1,444.33334,484204.38,411519.63,264110.25,147603.02,3375.6707 -12045,14861,26817,-9,26815,26816,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.17615,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,444.33334,484204.38,411519.63,264110.25,147603.02,3375.6707 -12046,14862,26818,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.2374368,6.9531493,0,0,-972.81842,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9424577,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,0,10,2,0,1654,814154.56,101547.97,0,0,248.20544 -12047,14863,26819,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.4720654,7.0073743,0,0,-909.58307,0,2,-9,2019,10,0,0,0,4,0,0,0,0,1,6.4021764,0,0,0,1,1,0,0,7.2609148,58.73,40.56,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,126,108358.34,322866.34,246865.81,0,1433.0555 -12048,14864,26820,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,7.0352888,6.8501534,0,0,-893.11304,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0069566,58.33,47.36,-9,-9,10,1,1,0,0,0,5,2,1,638,606273.56,93495.047,0,0,914.8587 -12049,14865,26821,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,5.7820497,5.3869715,0,0,-929.06586,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.6672511,5.8204403,45.86,50.87,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,432,49404.652,-64899.441,0,0,530.17236 -12050,14866,26822,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.4164867,8.3417864,0,0,0,-1080.4158,0,-9,3,2019,18,7,60,50,1,7,0,7.9904747,7.9904747,0,0,0,0,0,0,0,0,0,0,43.18,25.97,-9,-9,3.333333333333333,1,1,0,0,10,4,4,0,1388,244586.08,157487.86,0,0,2023.4928 -12051,14867,26823,26824,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.7645645,7.6067815,0,27,-3,-44.073475,0,3,3,2019,4,0,40,37,1,0,0,5.2166038,5.2166038,0,0,0,0,86,1,1,0,0,0,57.33,53.46,60.94,49.24,6.666666666666667,3,4,0,0,3,8,4,0,471,2817255.8,543403.31,405138.72,0,3395.1421 -12051,14867,26824,26823,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.4773016,8.3446198,0,27,3,78.096962,0,-9,3,2019,28,11,70,20,1,11,0,5.9398022,5.9398022,0,0,0,0,2,1,1,0,0,0,60.94,49.24,57.33,53.46,5,3,4,0,0,12,8,4,0,471,2817255.8,543403.31,405138.72,0,3395.1421 -12051,14867,26825,-9,26823,26824,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1010.5146,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,4,0,471,2817255.8,543403.31,405138.72,0,3395.1421 -12051,14868,26826,-9,26823,26824,1,1,24,0,1,0,2,2,-9,0,3,0,0,0,0,0,-859.27344,0,1,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,2,1,1,0,2.9110014,0,57.33,53.46,-9,-9,3.333333333333333,3,4,0,0,5,8,1,0,395,0,0,0,0,185.49794 -12051,14869,26827,-9,26823,26824,1,1,19,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1075.3184,1,1,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,8,1,0,1021,0,0,0,0,-205.38512 -12052,14870,26828,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,7.5202131,8.1261377,7.0101633,0,0,-1072.8641,0,3,3,2019,8,0,60,80,1,0,0,3.997678,3.997678,0,0,0,0,0,1,1,0,0,6.8937111,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,1298,545780.25,394891.59,287224.59,0,1936.5764 -12053,14871,26829,-9,-9,26830,1,1,55,0,0,0,2,2,-9,0,3,7.3670158,7.2787933,0,0,0,-1045.1647,0,2,2,2019,22,7,30,42,1,7,0,6.0038252,6.0038252,0,0,0,0,96,1,1,0,0,0,17.84,49.83,-9,-9,0,1,1,0,1,10,11,3,0,579,385457.38,202307.53,488635.41,0,1055.1487 -12053,14872,26830,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1092.0811,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,11,1,0,409,-118497.13,0,75389.258,0,375.83029 -12054,14873,26831,-9,26832,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0376263,8.0406485,0,0,0,-976.73602,0,3,3,2019,7,0,37,37,1,0,0,10.026746,10.026746,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,6,4,0,1389,-54588.691,140520.73,0,0,1219.8856 -12054,14874,26832,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.7655,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,1.0987246,0,28.317623,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,6,1,0,1125,0,0,0,0,1411.7886 -12055,14875,26833,26835,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,23,-7,38.173294,0,2,2,2019,9,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,41.32,42.95,8.333333333333334,1,1,1,0,5,10,5,1,1178.6666,1634763.1,25333.354,702849.63,196983.91,5587.8838 -12055,14875,26834,-9,26833,26835,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.3551,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1178.6666,1634763.1,25333.354,702849.63,196983.91,5587.8838 -12055,14875,26835,26833,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,10.011814,9.8075886,0,24,7,-87.283066,0,2,2,2019,12,1,35,50,1,1,0,65.26503,65.26503,0,0,0,0,0,0,0,0,.044716403,0,41.32,42.95,51.77,58.57,8.333333333333334,1,1,0,0,9,10,5,1,1178.6666,1634763.1,25333.354,702849.63,196983.91,5587.8838 -12055,14876,26836,-9,26833,26835,1,1,18,0,1,0,2,2,-9,0,2,7.6708431,7.2217226,0,0,0,-1006.498,0,2,1,2019,10,1,20,0,1,1,1,11.191165,11.191165,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,1102,133696.83,0,0,0,862.63214 -12055,14877,26837,-9,26833,26835,1,0,20,0,1,0,2,2,-9,0,4,7.8704085,7.8266368,0,0,0,-1017.8009,0,2,1,2019,6,0,52,57,1,0,1,4.6908207,4.6908207,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,8.333333333333334,1,1,0,0,5,10,3,1,4547,297345.25,0,0,0,743.98853 -12056,14878,26838,26839,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.121563,7.9886785,38,1,-111.04649,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.7514844,8.2183781,60.12,54.8,53.44,55.06,8.333333333333334,1,1,0,0,12,12,4,1,1963.5,2518345,1647660.3,353925.81,0,2147.74 -12056,14878,26839,26838,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.2873154,7.2253399,38,-1,-52.153038,0,2,1,2019,4,0,0,29,4,0,0,0,0,0,0,0,0,2,0,0,0,2.9239719,7.10847,53.44,55.06,60.12,54.8,8.333333333333334,1,1,0,0,10,12,4,1,1963.5,2518345,1647660.3,353925.81,0,2147.74 -12057,14879,26840,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.7458887,8.8734236,0,0,0,-1062.0701,0,1,2,2019,8,0,55,45,1,0,0,11.567956,11.567956,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,665,691324.88,-35369.434,464806.84,110088.23,1707.1663 -12058,14880,26841,26842,-9,-9,1,0,40,0,0,0,3,3,-9,0,4,0,0,0,11,-16,-85.501801,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,48.53,58.91,53.53,51,8.333333333333334,2,3,0,1,0,7,5,1,577,886981.13,467881.69,687427.13,94803.344,3344.8569 -12058,14880,26842,26841,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.2642488,9.40658,0,10,16,-190.61893,0,-9,-9,2019,12,0,47,47,1,0,0,24.815689,24.815689,0,0,0,0,0,0,0,0,0,0,53.53,51,48.53,58.91,8.333333333333334,1,1,0,0,9,7,5,1,577,886981.13,467881.69,687427.13,94803.344,3344.8569 -12059,14881,26843,26844,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1246681,8.1397963,6.2053337,23,-5,64.240524,0,3,2,2019,11,0,26,27,1,0,0,11.938478,11.938478,0,0,0,0,2,0,0,0,3.1881573,6.5109897,50.93,54.77,47.78,38.86,8.333333333333334,1,1,0,0,10,8,5,1,496.5,1900914.4,485297.84,903495.25,0,3895.4397 -12059,14881,26844,26843,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.5761118,8.8043404,6.7752028,22,5,130.4317,0,2,2,2019,11,1,40,40,1,1,0,12.610391,12.610391,0,0,0,0,0,0,0,0,0,6.9700737,47.78,38.86,50.93,54.77,5,1,1,0,0,10,8,5,1,496.5,1900914.4,485297.84,903495.25,0,3895.4397 -12059,14882,26845,-9,26843,26844,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-949.51617,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.5167226,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,344,10222.215,0,0,0,-352.52347 -12060,14883,26846,-9,26847,26848,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-907.4657,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 -12060,14883,26847,26848,-9,-9,1,0,35,2,2,0,1,1,-9,1,1,0,0,0,8,0,-15.740404,0,-9,-9,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,2,1,1,0,0,0,22.5,27.73,51.83,57.2,6.666666666666667,1,1,0,1,5,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 -12060,14883,26848,26847,-9,-9,1,1,35,2,2,0,1,1,-9,0,4,8.7217121,8.6789007,0,8,0,61.189804,0,2,2,2019,12,1,40,37,1,1,0,17.331142,17.331142,0,0,0,0,0,1,1,0,0,0,51.83,57.2,22.5,27.73,5,1,1,0,0,9,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 -12060,14883,26849,-9,26847,26848,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-979.4505,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1671,504500.88,175586.97,399272.88,143877.66,2758.4438 -12061,14884,26850,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-943.67572,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,34.66,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,659,421856.19,0,44091.211,0,1571.3105 -12062,14885,26851,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.2557869,8.467268,0,0,0,-945.90387,0,3,3,2019,9,1,37,34,1,1,0,11.978299,11.978299,0,0,0,0,0,0,0,0,7.1880593,0,59.3,39.29,-9,-9,3.333333333333333,1,1,0,0,10,9,4,1,754,41746.867,315220.88,133787.39,0,1553.5325 -12063,14886,26852,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.5541,0,3,3,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,.46196467,0,36.42,44.54,-9,-9,0,1,1,0,0,0,2,1,1,114,-94672.688,0,0,0,1054.0704 -12064,14887,26853,26855,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,0,0,0,4,-4,-27.284439,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,55.61,50.3,6.666666666666667,2,3,0,0,3,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 -12064,14887,26854,-9,26853,26855,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.2737,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 -12064,14887,26855,26853,-9,-9,1,1,32,1,3,0,3,3,-9,0,3,7.344233,7.4418616,0,4,4,123.5771,0,3,3,2019,12,0,20,20,1,0,0,9.6851234,9.6851234,0,0,0,0,0,1,1,0,0,0,55.61,50.3,47.32,52.7,5,2,3,0,0,3,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 -12064,14887,26856,-9,26853,26855,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.88531,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 -12064,14887,26857,-9,26853,26855,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.30524,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,2,0,1670.2,161235.97,24106.75,185349.19,90699.906,1819.2644 -12065,14888,26858,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.2780643,6.5364075,0,0,-916.27332,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6030531,6.3745627,57.33,53.46,-9,-9,10,1,1,0,0,0,12,2,1,416,336490.06,-31725.66,233958.47,0,1115.1249 -12066,14889,26859,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,6.9232488,7.606019,7.024229,0,0,-974.65344,0,1,2,2019,10,2,4,7,1,2,0,22.21994,22.21994,0,0,0,0,0,1,1,0,7.9463129,6.8843241,46.16,50.59,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,102,1146890.3,428624.06,273401.38,0,1841.0293 -12067,14890,26860,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.4211545,7.096209,0,0,-1069.5254,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.979949,50.9,28.51,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1581,109052.73,294428.09,229184.81,0,1240.6228 -12068,14891,26861,26862,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,8.2387667,8.2410107,38,0,73.313873,-9,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.3037281,71.85000000000001,15.71,50.23,30.13,10,1,1,0,0,0,13,4,1,466.5,898418,770252.38,130235.37,0,2727.2017 -12068,14891,26862,26861,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,6.9863329,6.9851065,1,0,-41.229343,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.9786596,50.23,30.13,71.85000000000001,15.71,5,1,1,0,0,0,13,4,1,466.5,898418,770252.38,130235.37,0,2727.2017 -12068,14892,26863,-9,26861,26862,1,1,26,0,0,0,2,2,-9,0,4,8.6750946,8.8234177,0,0,0,-925.39838,-9,2,2,2019,10,0,40,0,1,1,0,23.245886,23.245886,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,5,1,645,-75810.648,89602.742,0,0,2562.168 -12069,14893,26864,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.95734,0,2,2,2019,11,0,15,0,1,0,0,.0013119321,.0013119321,0,0,0,0,0,1,1,0,7.9303617,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,737,-67238.68,0,0,0,1376.1061 -12070,14894,26865,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.1445732,8.2467308,0,0,0,-1091.2302,0,1,1,2019,12,0,50,36,1,0,0,7.4256749,7.4256749,0,0,0,0,0,0,0,0,1.5711592,0,40.72,54.38,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,159,-128955.4,181137.14,157275.69,99671.891,1472.7164 -12071,14895,26866,26867,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.8379841,7.5892539,6.7061272,44,1,-37.328449,0,-9,-9,2019,7,0,15,15,1,0,0,6.5371394,6.5371394,0,0,0,0,0,0,0,0,3.1012163,6.5828629,55.36,51.57,56.94,49.53,8.333333333333334,1,1,0,0,12,7,3,1,774.5,595264.38,232955.09,327185.06,0,1755.0344 -12071,14895,26867,26866,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.1599712,7.4592776,6.513308,44,-1,-13.359254,0,-9,-9,2019,6,0,16,19,1,0,0,7.5722508,7.5722508,0,0,0,0,0,0,0,0,1.7193105,6.5104408,56.94,49.53,55.36,51.57,10,1,1,0,0,13,7,3,1,774.5,595264.38,232955.09,327185.06,0,1755.0344 -12072,14896,26868,26869,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,45,-2,-49.330318,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,46.41,33.08,8,1,1,0,0,0,6,2,1,580.5,750342.63,134641.45,155197.06,0,1577.0552 -12072,14896,26869,26868,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.285934,7.4286432,49,2,-2.3439507,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.6722075,7.5379143,46.41,33.08,52,46,5,1,1,0,0,0,6,2,1,580.5,750342.63,134641.45,155197.06,0,1577.0552 -12073,14897,26870,-9,26871,26872,1,1,31,0,0,0,1,1,-9,0,4,7.6828189,8.0789909,0,0,0,-1037.8009,0,3,3,2019,5,0,48,20,1,0,1,4.7689443,4.7689443,0,0,0,0,0,1,1,0,0,0,62.51,46.73,-9,-9,8.333333333333334,4,5,0,0,4,8,3,0,508,192717.88,70330.625,0,0,839.39825 -12073,14898,26871,26872,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,4,-19,45.799793,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,53,53,46,7,1,1,0,0,0,8,2,0,751,365687.81,205102.11,0,0,791.64307 -12073,14898,26872,26871,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.6500063,6.3150969,4,19,109.50659,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1186442,6.8278999,53,46,51,53,7,4,5,0,0,0,8,2,0,751,365687.81,205102.11,0,0,791.64307 -12074,14899,26873,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.8219023,7.5298367,0,0,0,-1056.0026,0,2,2,2019,15,4,60,50,1,4,0,4.2547679,4.2547679,0,0,0,0,0,0,0,0,0,0,31.18,57.88,-9,-9,3.333333333333333,1,1,0,0,9,5,3,0,3496,345018.25,0,98665.445,0,1036.8552 -12075,14900,26874,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.5763001,7.7693772,0,0,-1190.8297,0,3,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,5.9659629,7.6228209,63.33,22.52,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,209,275711.97,67091.703,0,0,2144.51 -12076,14901,26875,26876,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.1190023,8.7116241,7.8343225,28,2,-92.760132,0,2,2,2019,10,0,20,30,1,0,0,17.376438,17.376438,0,0,0,0,2,0,0,0,.075858429,8.1753292,50.72,46.82,37.9,18.09,6.666666666666667,1,1,0,0,10,9,5,1,608.5,2826897.5,2142418.8,524293.94,0,3345.7722 -12076,14901,26876,26875,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,5.7266021,6.7460661,6.1444788,28,-2,-9.2492905,0,-9,-9,2019,12,2,5,5,1,2,0,6.6524625,6.6524625,0,0,0,0,14.5,0,0,0,3.26524,6.3779922,37.9,18.09,50.72,46.82,8.333333333333334,1,1,0,0,3,9,5,1,608.5,2826897.5,2142418.8,524293.94,0,3345.7722 -12076,14902,26877,-9,26876,26875,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1059.7804,1,1,1,2019,11,1,0,17,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,323,-52663.359,0,0,0,0 -12077,14903,26878,26879,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.2256365,8.058259,0,22,-12,84.920433,0,2,-9,2019,9,0,42,42,1,0,0,9.0683784,9.0683784,0,0,0,0,2,1,1,0,1.790712,0,48.87,58.55,52.16,46.15,6.666666666666667,1,1,0,0,9,5,5,1,1064.6666,129426.79,108266.72,116988.48,127069.29,3704.6936 -12077,14903,26879,26878,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.6656914,8.2958994,0,22,12,-29.829952,0,-9,-9,2019,11,0,47,45,1,0,0,14.207357,14.207357,0,0,0,0,0,1,1,0,0,0,52.16,46.15,48.87,58.55,6.666666666666667,1,1,0,0,9,5,5,1,1064.6666,129426.79,108266.72,116988.48,127069.29,3704.6936 -12077,14903,26880,-9,26878,26879,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1037.4108,-9,2,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,.71938002,0,44.94,49.91,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,1064.6666,129426.79,108266.72,116988.48,127069.29,3704.6936 -12078,14904,26881,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.2507362,6.0900269,0,0,-1031.6573,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.3666196,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,262,353973.13,-72977.773,0,0,930.38287 -12079,14905,26882,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.4367571,8.6274261,5.9273753,0,0,-1019.4249,0,2,3,2019,7,0,34,34,1,0,0,14.83954,14.83954,0,0,0,0,0,1,1,0,6.1619248,0,58.87,51.29,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,290.66666,-99179.789,5935.9995,0,0,2427.074 -12079,14905,26883,-9,26882,-9,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-966.64948,-9,2,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,12,4,1,290.66666,-99179.789,5935.9995,0,0,2427.074 -12079,14905,26884,-9,26882,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.10864,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,290.66666,-99179.789,5935.9995,0,0,2427.074 -12080,14906,26885,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.1965351,7.4263959,0,0,-994.74689,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0271034,7.3625584,57.75,36.71,-9,-9,10,1,1,0,0,0,6,3,1,389,1211425.5,343530.19,368011.16,0,1037.8948 -12081,14907,26886,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.0054064,7.9829416,0,0,0,-927.67938,0,3,3,2019,12,0,37,37,1,0,0,6.9858055,6.9858055,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,3.333333333333333,1,1,0,0,11,5,3,1,577,60142.855,82630.789,0,0,1695.1238 -12082,14908,26887,26888,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,8.3161259,7.9993882,7,13,-79.710587,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1302891,8.0682611,61.13,33.74,55.99,46.53,10,1,1,0,0,0,4,3,1,584.5,794533.94,531841.88,212861.06,0,3543.8857 -12082,14908,26888,26887,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,3.3199368,3.4432762,7,-13,-109.21305,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,1.67533,0,23.152575,0,1,1,0,4.6703067,3.5497458,55.99,46.53,61.13,33.74,6.666666666666667,1,1,0,0,0,4,3,1,584.5,794533.94,531841.88,212861.06,0,3543.8857 -12083,14909,26889,-9,26890,-9,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1099.1862,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 -12083,14909,26890,-9,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.5770617,8.1237183,6.3773494,0,0,-1006.86,0,3,3,2019,13,2,21,21,1,2,0,7.7240543,7.7240543,0,0,0,0,0,1,1,0,5.8334522,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 -12083,14909,26891,-9,26890,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.05676,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 -12083,14909,26892,-9,26890,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.46857,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,2,1,273.5,64481.191,-1746.1553,0,0,2296.1089 -12084,14910,26893,26894,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,7,1,1,0,0,0,47.9,42.16,53,47,1.666666666666667,1,1,0,1,8,4,1,0,313.5,301674.88,57724.621,189946.78,0,854.84412 -12084,14910,26894,26893,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,47,1,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6372538,0,53,47,47.9,42.16,8,1,1,0,0,0,4,1,0,313.5,301674.88,57724.621,189946.78,0,854.84412 -12085,14911,26895,-9,26896,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1028.9583,-9,1,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,10,3,1,315,213979.55,28057.232,196685.19,85023.859,963.45972 -12085,14911,26896,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.9199624,7.6186266,0,0,0,-996.84515,0,2,2,2019,12,0,38,23,1,0,0,8.6780109,8.6780109,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,9,10,3,1,315,213979.55,28057.232,196685.19,85023.859,963.45972 -12086,14912,26897,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1082.7931,0,1,1,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,27.86,52.02,-9,-9,3.333333333333333,3,4,1,1,0,4,1,0,123,58240.133,0,0,0,972.57642 -12087,14913,26898,26901,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.2208157,8.3083649,0,9,1,-15.299708,0,2,2,2019,11,0,44,50,1,0,0,12.742858,12.742858,0,0,0,0,0,1,1,0,0,0,41.53,56.72,31.29,61.29,8.333333333333334,1,1,0,0,8,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 -12087,14913,26899,-9,26901,26898,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.8552,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 -12087,14913,26900,-9,26901,26898,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.731,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 -12087,14913,26901,26898,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.7837338,7.9664383,0,9,-1,117.24281,-9,1,1,2019,20,8,21,0,1,8,0,12.766544,12.766544,0,0,0,0,2,1,1,0,0,0,31.29,61.29,41.53,56.72,3.333333333333333,1,1,0,0,7,6,4,1,4204.5,140963,28195.328,54815.832,59464.629,2867.9504 -12088,14914,26902,-9,26904,26903,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.4526,-9,2,2,2019,26,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.26,56.77,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,761.66669,0,0,0,0,1177.6227 -12088,14914,26903,26904,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,1,0,0,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,5.48,1,1,0,0,0,42.18,41.73,21.13,24.2,5,1,1,1,1,0,1,1,1,761.66669,0,0,0,0,1177.6227 -12088,14914,26904,26903,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,1,0,0,0,3,3,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.13,24.2,42.18,41.73,0,1,1,0,1,3,1,1,1,761.66669,0,0,0,0,1177.6227 -12088,14915,26905,-9,26904,26903,1,1,20,0,1,0,2,2,-9,0,4,7.3829851,7.3605628,0,0,0,-1226.4047,-9,2,2,2019,9,0,37,0,1,0,1,5.0859432,5.0859432,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,1331,-348666.66,0,0,0,1193.3511 -12089,14916,26906,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.3996677,7.3213315,4.4023008,0,0,-989.41772,0,3,3,2019,28,11,38,35,1,11,0,4.9199047,4.9199047,0,0,0,0,0,1,1,0,4.6517844,0,42.78,32.12,-9,-9,3.333333333333333,1,1,0,0,9,7,3,1,364,163517.25,86952.805,0,0,1612.9041 -12089,14916,26907,-9,26906,-9,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-951.78876,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.87510788,0,49.97,53.99,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,364,163517.25,86952.805,0,0,1612.9041 -12090,14917,26908,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6496601,8.6227674,0,0,0,-1015.7049,0,2,2,2019,12,1,38,44,1,1,0,17.197447,17.197447,0,0,0,0,0,0,0,0,0,0,50.58,53.69,-9,-9,5,1,1,0,0,12,9,5,1,329,526831.06,321298.84,251534.98,0,1783.208 -12091,14918,26909,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.5533442,7.6729207,5.5988054,0,0,-1067.6897,-9,-9,-9,2019,19,7,25,0,1,7,0,8.0057697,8.0057697,0,0,0,0,0,1,1,0,6.410676,0,34.6,61.05,-9,-9,6.666666666666667,1,1,0,1,8,10,3,1,512,76844.078,0,0,0,284.18329 -12092,14919,26910,-9,26911,26913,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-980.64648,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.71,56.96,-9,-9,1.666666666666667,1,1,0,0,0,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 -12092,14919,26911,26913,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.9108615,7.926918,0,22,-3,206.53156,0,2,2,2019,8,0,35,35,1,0,0,8.1815748,8.1815748,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,6.666666666666667,1,1,0,0,8,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 -12092,14919,26912,-9,26911,26913,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.5697,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 -12092,14919,26913,26911,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.2776146,8.3406601,0,22,3,-77.001358,0,-9,-9,2019,7,0,47,45,1,0,0,8.0611401,8.0611401,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,4,3,0,700.75,130221.22,17369.762,95810.719,32761.334,2684.5896 -12093,14920,26914,-9,26916,26917,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-872.76654,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 -12093,14920,26915,-9,26916,26917,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.10052,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 -12093,14920,26916,26917,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.2107859,8.5871439,0,9,1,3.6899981,0,3,3,2019,10,2,39,32,1,2,0,12.961236,12.961236,0,0,0,0,0,1,1,0,2.9614987,0,52.43,55.57,44.85,44.59,8.333333333333334,1,1,0,0,11,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 -12093,14920,26917,26916,-9,-9,1,1,35,1,2,0,1,1,-9,0,2,8.9046602,8.6316862,0,9,-1,-7.6697035,0,2,3,2019,12,2,40,41,1,2,0,22.598104,22.598104,0,0,0,0,0,1,1,0,0,0,44.85,44.59,52.43,55.57,8.333333333333334,1,1,0,0,8,5,5,1,1593.25,486385.06,149130.97,287579.78,177253.58,3521.4082 -12094,14921,26918,26919,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.1889067,6.8275542,8,-3,-55.897713,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.8888788,33.07,55.18,60.12,54.8,5,1,1,0,0,2,1,4,1,685.5,1211436.6,804581,220074.53,0,3026.4915 -12094,14921,26919,26918,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.9322772,8.1160374,8,3,-87.538567,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.9740715,7.9953637,60.12,54.8,33.07,55.18,10,1,1,0,0,4,1,4,1,685.5,1211436.6,804581,220074.53,0,3026.4915 -12095,14922,26920,26921,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1348228,8.3336258,50,1,-28.230146,-9,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8340039,8.3305588,47.84,49.93,44.02,52.82,8.333333333333334,1,1,0,0,11,9,4,1,1182,1805035.8,942746.06,708624.88,0,3459.8052 -12095,14922,26921,26920,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.0674033,6.0858388,10,-1,32.939518,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7764492,6.03264,44.02,52.82,47.84,49.93,8.333333333333334,1,1,0,0,9,9,4,1,1182,1805035.8,942746.06,708624.88,0,3459.8052 -12096,14923,26922,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1000.4487,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,10,1,1,0,0,0,6,1,1,106,630370.94,0,215559.97,0,653.33563 -12097,14924,26923,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1111.2854,0,-9,-9,2019,22,9,0,0,4,9,0,0,0,1,0,10.85405,0,0,1,1,0,0,0,30.83,39.96,-9,-9,6.666666666666667,2,3,0,1,0,5,1,1,298,254515.64,0,152123.45,0,849.09924 -12098,14925,26924,26925,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.4648733,8.3935204,0,26,-12,-53.984512,0,2,-9,2019,8,0,34,42,1,0,0,16.308136,16.308136,0,0,0,0,2,1,1,0,.89837897,0,60.43,46.44,49.13,46.57,8.333333333333334,1,1,0,0,13,5,5,1,1145.5,463501.09,455333.31,210251.78,23201.457,3793.188 -12098,14925,26925,26924,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.0973978,8.3124504,0,26,12,-88.566933,0,-9,-9,2019,11,0,56,47,1,0,0,8.299262,8.299262,0,0,0,0,0,1,1,0,0,0,49.13,46.57,60.43,46.44,8.333333333333334,1,1,0,0,13,5,5,1,1145.5,463501.09,455333.31,210251.78,23201.457,3793.188 -12098,14926,26926,-9,26924,26925,1,0,21,0,0,0,2,2,-9,0,4,8.1598701,8.313014,0,0,0,-946.0575,0,2,3,2019,11,0,43,43,1,0,1,9.2282419,9.2282419,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,5,5,4,1,228,-330346.69,-66265.484,0,0,1305.5691 -12099,14927,26927,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.0853682,8.2453423,0,0,-991.92188,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,3.660301,0,0,1,1,0,8.3508339,8.4086657,62.91,42.54,-9,-9,10,1,1,0,0,0,9,4,1,175,968248.88,462779.34,353550.63,0,5266.5449 -12100,14928,26928,26930,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,8.8578205,8.8244982,0,5,2,27.76619,0,2,2,2019,6,0,35,35,1,0,0,26.763641,26.763641,0,0,0,0,0,1,1,0,5.670145,0,54.69,57.47,58.2,54.53,10,1,1,0,0,8,2,5,0,451,443734.31,44198.602,209630.22,46260.391,5292.3242 -12100,14928,26929,-9,26930,26928,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-868.84344,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,0,451,443734.31,44198.602,209630.22,46260.391,5292.3242 -12100,14928,26930,26928,-9,-9,1,0,37,1,1,0,1,1,-9,0,5,8.721467,9.1904221,0,5,-2,126.94229,0,-9,-9,2019,9,0,27,28,1,0,0,24.255594,24.255594,0,0,0,0,0,1,1,0,7.6789827,0,58.2,54.53,54.69,57.47,10,1,1,0,0,7,2,5,0,451,443734.31,44198.602,209630.22,46260.391,5292.3242 -12101,14929,26931,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1079.2695,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,47.3,23.79,-9,-9,10,1,1,0,0,0,8,1,0,1090,132661.78,0,0,0,1675.2458 -12102,14930,26932,26933,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.7197466,10.070726,0,9,2,-54.942875,0,2,2,2019,11,0,35,35,1,0,0,54.640942,54.640942,0,0,0,0,0,0,0,0,0,0,44.26,59.43,45.81,58.99,8.333333333333334,1,1,0,0,11,8,5,1,1026.5,230035.47,111981.16,476940.72,376923.81,11015.754 -12102,14930,26933,26932,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,9.5959892,9.6351433,0,9,-2,-107.92722,-9,2,2,2019,12,2,58,0,1,2,0,32.489655,32.489655,0,0,0,0,0,0,0,0,0,0,45.81,58.99,44.26,59.43,8.333333333333334,1,1,0,0,10,8,5,1,1026.5,230035.47,111981.16,476940.72,376923.81,11015.754 -12103,14931,26934,26935,-9,-9,1,0,51,1,1,0,1,1,-9,0,5,9.7417316,9.4952993,0,28,-4,72.109138,0,2,2,2019,10,0,50,47,1,0,0,34.230099,34.230099,0,0,0,0,0,1,1,0,0,0,54.1,59.11,44.72,37.39,8.333333333333334,1,1,0,0,9,2,5,1,458,1328695.4,577928.63,353684.31,31866.313,9985.8438 -12103,14931,26935,26934,-9,-9,1,1,55,1,1,0,2,2,-9,0,3,9.8799877,9.9308176,4.5502596,28,4,-24.292921,0,-9,-9,2019,13,1,50,37,1,1,0,35.588062,35.588062,0,0,0,0,0,1,1,0,4.7148447,4.7689691,44.72,37.39,54.1,59.11,8.333333333333334,1,1,0,0,9,2,5,1,458,1328695.4,577928.63,353684.31,31866.313,9985.8438 -12103,14932,26936,-9,26937,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-906.94647,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,206.5,224348.16,-71329.953,0,0,1508.4039 -12103,14932,26937,-9,26934,26935,1,0,30,1,1,0,1,1,-9,0,2,8.1858082,7.8944783,0,0,0,-987.07867,-9,1,2,2019,9,3,55,0,1,3,1,8.589818,8.589818,0,0,0,0,0,1,1,0,0,0,53.23,47.51,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,206.5,224348.16,-71329.953,0,0,1508.4039 -12104,14933,26938,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.1235638,7.8607898,0,0,0,-843.82178,0,3,3,2019,8,0,40,40,1,0,0,6.4736366,6.4736366,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,325,691676.69,389100.22,0,0,1462.1888 -12105,14934,26939,26941,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,8.4753275,8.9563723,0,12,-5,107.14001,0,2,2,2019,9,1,46,43,1,1,0,16.557419,16.557419,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,5,1,1,0,0,9,8,4,1,346.66666,228974.09,27668.373,272382.88,136840.36,3629.7483 -12105,14934,26940,-9,26941,26939,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.5002,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,346.66666,228974.09,27668.373,272382.88,136840.36,3629.7483 -12105,14934,26941,26939,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,8.043786,8.0405769,0,12,5,-52.877411,0,-9,2,2019,7,0,36,38,1,0,0,10.188214,10.188214,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,9,8,4,1,346.66666,228974.09,27668.373,272382.88,136840.36,3629.7483 -12105,14935,26942,-9,26941,26939,1,0,19,0,3,0,2,2,1,0,5,8.3219881,8.2109213,0,0,0,-1091.5626,-9,2,1,2019,7,0,48,0,1,0,1,8.2103872,8.2103872,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,4,2,0,0,2,8,4,1,261,-254207.16,0,0,0,1845.5828 -12106,14936,26943,26944,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.609499,8.2522907,6.6034412,7,-2,-28.058859,0,-9,-9,2019,10,0,42,42,1,1,0,5.7247725,5.7247725,0,0,0,0,0,0,0,0,0,6.6223645,52,48,50,47,7,4,1,0,0,1,13,3,1,542.5,669304.81,451178,128061.11,0,902.12213 -12106,14936,26944,26943,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,42,2,-106.99978,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,13.18553,0,0,0,0,0,0,0,50,47,52,48,7,1,1,0,0,0,13,3,1,542.5,669304.81,451178,128061.11,0,902.12213 -12107,14937,26945,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.0454254,7.8965178,0,0,-966.53809,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0965395,7.9439163,62.43,34.91,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,216,818640.88,388153.47,296077.78,0,2335.8342 -12108,14938,26946,26947,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6573935,7.6798,40,-2,56.833729,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2508655,7.5445843,57.16,56.15,57.51,47.91,10,1,1,0,0,0,10,4,1,600.5,1655281.3,727769.94,395049.06,0,3718.7947 -12108,14938,26947,26946,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.2708616,8.2905598,40,2,-15.743351,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.035439,8.2191162,57.51,47.91,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,600.5,1655281.3,727769.94,395049.06,0,3718.7947 -12109,14939,26948,26950,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.6777182,8.8634958,0,22,-3,-48.448559,0,3,3,2019,24,12,38,8,1,12,0,17.676174,17.676174,0,0,0,0,0,0,0,0,0,0,30.94,61.65,36.76,56.28,3.333333333333333,2,3,0,0,12,9,5,1,1082.3334,348026.38,126818.35,510925,184649.27,5118.8394 -12109,14939,26949,-9,26948,26950,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.85254,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1082.3334,348026.38,126818.35,510925,184649.27,5118.8394 -12109,14939,26950,26948,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.3159161,8.373867,0,22,3,114.69066,0,3,2,2019,21,9,40,40,1,9,0,13.389375,13.389375,0,0,0,0,0,0,0,0,6.9949074,0,36.76,56.28,30.94,61.65,3.333333333333333,2,3,0,0,11,9,5,1,1082.3334,348026.38,126818.35,510925,184649.27,5118.8394 -12110,14940,26951,-9,26954,26953,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.6715,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 -12110,14940,26952,-9,26954,26953,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1008.7551,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 -12110,14940,26953,26954,-9,-9,1,1,41,0,4,0,1,1,-9,0,4,9.2497759,9.1731567,0,23,1,43.782387,0,1,1,2019,11,1,48,45,1,1,0,24.047541,24.047541,0,0,0,0,0,0,0,0,5.3409004,0,54.79,55.86,49.31,54.36,8.333333333333334,1,1,0,0,11,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 -12110,14940,26954,26953,-9,-9,1,0,40,0,4,0,1,1,-9,0,5,7.5507631,7.4332643,0,23,-1,98.902351,0,1,1,2019,10,0,27,27,1,0,0,9.673686,9.673686,0,0,0,0,0,0,0,0,0,0,49.31,54.36,54.79,55.86,8.333333333333334,1,1,0,0,2,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 -12110,14940,26955,-9,26954,26953,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.4889,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 -12110,14940,26956,-9,26954,26953,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-858.99896,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,737.33331,329942.5,97493.836,615156.94,255585.05,3496.7556 -12111,14941,26957,26958,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.9862556,8.9446268,0,19,-13,27.469028,0,-9,-9,2019,7,0,40,35,1,0,0,21.439411,21.439411,0,0,0,0,0,1,1,0,3.359787,0,62.49,55.09,61.12,51.57,10,1,1,0,0,10,8,5,0,1354.5,439751.59,-21243.219,504786.44,160530.28,4845.7451 -12111,14941,26958,26957,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,8.2627153,8.1847258,0,19,13,10.350324,0,2,-9,2019,7,0,40,40,1,0,0,9.9869604,9.9869604,0,0,0,0,0,1,1,0,0,0,61.12,51.57,62.49,55.09,8.333333333333334,1,1,0,0,8,8,5,0,1354.5,439751.59,-21243.219,504786.44,160530.28,4845.7451 -12112,14942,26959,26960,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,8.3919153,8.3922215,0,10,-1,-24.720709,0,-9,-9,2019,14,3,41,35,1,3,0,12.308815,12.308815,0,0,0,0,0,1,1,0,0,0,46.17,22.4,28.55,50.85,6.666666666666667,1,1,0,0,8,4,4,0,501,-165296.09,74846.359,138263.31,59023.945,2199.3633 -12112,14942,26960,26959,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,6.1456547,6.193769,0,10,1,69.437569,0,2,3,2019,16,4,10,10,1,4,0,5.8519545,5.8519545,0,0,0,0,27,1,1,0,0,0,28.55,50.85,46.17,22.4,6.666666666666667,1,1,0,0,12,4,4,0,501,-165296.09,74846.359,138263.31,59023.945,2199.3633 -12112,14943,26961,-9,26959,26960,1,1,28,0,0,0,2,2,-9,0,3,7.8050976,7.9254169,0,0,0,-954.35413,0,2,2,2019,10,0,40,33,1,0,1,7.8320475,7.8320475,0,0,0,0,2,1,1,0,0,0,48.21,40,-9,-9,6.666666666666667,1,1,0,0,2,4,4,0,417,-69255.438,-63325.293,0,0,386.35574 -12113,14944,26962,26963,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.4716244,6.984725,50,-1,51.945965,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8177466,7.2611642,52,48,62.67,46.87,7,1,1,0,0,0,2,5,1,341.5,1691028.5,881929.69,249324.81,0,10683.161 -12113,14944,26963,26962,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,9.7939281,9.682972,5.6277328,50,1,63.285027,0,3,2,2019,8,1,25,25,1,1,0,74.452415,74.452415,0,0,0,0,7,1,1,0,5.8007154,5.8128982,62.67,46.87,52,48,10,1,1,0,0,9,2,5,1,341.5,1691028.5,881929.69,249324.81,0,10683.161 -12114,14945,26964,26965,-9,-9,1,0,67,1,1,0,3,3,-9,0,2,0,5.64821,5.3403502,38,2,48.861122,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,120,1,0,1,0,5.6178164,43.86,28.75,50.7,23.1,8.333333333333334,1,1,0,0,0,2,2,0,564,-87290.078,107554.88,0,0,2173.855 -12114,14945,26965,26964,-9,-9,1,1,65,1,1,0,2,2,-9,0,1,0,0,0,38,-2,-23.716763,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,120,1,0,1,0,0,50.7,23.1,43.86,28.75,5,1,1,0,0,10,2,2,0,564,-87290.078,107554.88,0,0,2173.855 -12114,14946,26966,-9,26967,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-889.9361,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,2,0,689,-25774.281,18397.844,0,0,882.84973 -12114,14946,26967,-9,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,0,5.6489182,5.4144316,0,0,-969.18939,0,-9,-9,2019,27,9,0,39,3,9,0,0,0,0,0,0,0,27,1,0,1,5.2043777,0,24.13,53.88,-9,-9,5,1,1,0,0,5,2,2,0,689,-25774.281,18397.844,0,0,882.84973 -12115,14947,26968,-9,26970,26969,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-879.95428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,454.66666,-34636.305,48630.082,0,0,2415.0452 -12115,14947,26969,26970,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,8.4015455,7.9615021,0,7,2,13.049839,0,-9,-9,2019,11,0,40,42,1,0,0,12.752818,12.752818,0,0,0,0,74.5,1,1,0,0,0,47.55,55.06,50.43,53.69,6.666666666666667,1,1,0,0,5,13,4,1,454.66666,-34636.305,48630.082,0,0,2415.0452 -12115,14947,26970,26969,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,7.5180082,7.7205296,0,7,-2,-60.874031,0,2,2,2019,12,0,29,40,1,0,0,6.5648756,6.5648756,0,0,0,0,42,1,1,0,0,0,50.43,53.69,47.55,55.06,6.666666666666667,1,1,0,0,12,13,4,1,454.66666,-34636.305,48630.082,0,0,2415.0452 -12116,14948,26971,-9,26972,-9,1,0,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-915.32159,1,2,2,2019,9,0,0,38,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,11,13,2,1,684,334336.13,0,0,0,-70.017052 -12116,14949,26972,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.0784874,5.2824626,0,0,-917.8316,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.0418277,28.73,50.3,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,603,-56038.594,65695.859,189976.2,0,1043.5901 -12117,14950,26973,26975,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,8.1863575,8.0406427,0,4,4,-13.932904,0,-9,-9,2019,7,0,45,45,1,0,0,7.9758172,7.9758172,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.21,48.32,6.666666666666667,1,1,0,0,3,13,3,0,636,194706.22,42717.547,185261.58,138842.48,3148.7998 -12117,14950,26974,-9,26975,26973,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-938.57324,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,636,194706.22,42717.547,185261.58,138842.48,3148.7998 -12117,14950,26975,26973,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.3126602,7.3446136,0,4,-4,-87.823921,0,2,-9,2019,11,0,21,21,1,0,0,9.2584915,9.2584915,0,0,0,0,0,1,1,0,0,0,50.21,48.32,57.06,57.76,6.666666666666667,1,1,0,0,8,13,3,0,636,194706.22,42717.547,185261.58,138842.48,3148.7998 -12118,14951,26976,26977,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.5962219,8.5627832,8,6,20.609047,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5568123,46.25,32.97,45.78,42.4,8.333333333333334,2,3,0,0,0,11,4,1,491,500464.13,427226.63,0,0,4594.0078 -12118,14951,26977,26976,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,8,-6,103.00558,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.442863,0,45.78,42.4,46.25,32.97,8.333333333333334,2,3,0,0,0,11,4,1,491,500464.13,427226.63,0,0,4594.0078 -12119,14952,26978,-9,26979,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.6769,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,1,0,1363.5,-53938.586,0,0,0,2815.2017 -12119,14952,26979,-9,-9,-9,1,0,37,0,1,0,2,2,0,0,4,0,0,0,0,0,-939.79279,-9,-9,2,2019,18,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,8.333333333333334,4,2,0,1,0,8,1,0,1363.5,-53938.586,0,0,0,2815.2017 -12120,14953,26980,-9,26982,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.401,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,477.66666,132021.17,0,0,0,1161.9336 -12120,14953,26981,-9,26982,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.18787,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,477.66666,132021.17,0,0,0,1161.9336 -12120,14953,26982,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,2,0,0,0,0,0,-970.51959,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.91,51.8,-9,-9,5,1,1,0,0,1,12,2,0,477.66666,132021.17,0,0,0,1161.9336 -12121,14954,26983,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.3033924,5.1726213,0,0,-1034.0544,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.9554973,51.24,50.96,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,360,1003568.3,-50728.887,289200.06,200436.25,1151.5084 -12122,14955,26984,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.3643484,8.4589701,0,0,0,-848.04761,0,1,1,2019,16,5,41,44,1,5,0,16.683662,16.683662,0,0,0,0,0,1,1,0,2.0125046,0,41.45,50.07,-9,-9,6.666666666666667,1,1,0,0,9,4,5,1,437,360579.78,17742.766,0,0,1929.2759 -12123,14956,26985,-9,26986,26988,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.61646,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 -12123,14956,26986,26988,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,18,0,-18.521637,0,2,2,2019,18,7,0,36,3,7,0,0,0,0,0,0,0,0,1,1,0,1.8231511,0,47.72,49.51,40.27,57.01,6.666666666666667,1,1,0,0,10,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 -12123,14956,26987,-9,26986,26988,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.7974,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 -12123,14956,26988,26986,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.4995675,7.5683002,0,18,0,22.684908,0,1,1,2019,20,8,19,20,1,8,0,12.459499,12.459499,0,0,0,0,0,1,1,0,1.3560135,0,40.27,57.01,47.72,49.51,8.333333333333334,1,1,0,0,10,1,2,1,753.25,259846.23,118319.52,188960.39,86832.891,-438.94144 -12124,14957,26989,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,0,0,0,0,0,-892.1062,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,43.36,42.15,-9,-9,3.333333333333333,1,1,1,0,0,12,1,0,667,-112433.95,0,0,0,275.28964 -12125,14958,26990,-9,26993,-9,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-914.99762,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 -12125,14958,26991,-9,26993,-9,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-865.59277,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 -12125,14958,26992,-9,26993,-9,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.9089,-9,1,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 -12125,14958,26993,-9,-9,-9,1,0,34,1,4,0,1,1,-9,0,4,8.3100605,8.3794699,0,0,0,-882.47803,0,1,3,2019,13,1,42,35,1,1,0,13.118711,13.118711,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,6.666666666666667,1,1,0,0,3,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 -12125,14958,26994,-9,26993,-9,1,0,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-976.33777,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,3,1,649.79999,27759.91,23520.371,0,0,2457.6289 -12126,14959,26995,26997,-9,-9,1,1,29,1,3,0,3,3,-9,0,3,7.3930764,7.2035975,0,12,1,166.64146,0,3,3,2019,10,0,32,30,1,0,0,5.2747064,5.2747064,0,0,0,0,0,1,1,0,0,0,42.25,40.08,57.33,53.46,5,2,3,0,0,7,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 -12126,14959,26996,-9,26997,26995,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.5083,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 -12126,14959,26997,26995,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,0,0,0,12,-1,27.636135,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,42.25,40.08,10,2,3,0,0,4,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 -12126,14959,26998,-9,26997,26995,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-883.23462,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 -12126,14959,26999,-9,26997,26995,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-824.70203,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,489.60001,83673.641,3167.4207,46588.098,43494.203,1904.4178 -12127,14960,27000,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1070.2979,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.19,27.06,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,566,68448.359,287534.66,22115.391,0,677.57172 -12128,14961,27001,27002,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.0055847,7.6342177,50,-2,51.660816,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1472368,7.8741856,57.16,56.15,56.92,49.39,8.333333333333334,1,1,0,0,0,4,4,1,531.5,2448411,619219.06,368728.69,0,3067.9358 -12128,14961,27002,27001,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.8844523,7.6929607,50,2,198.16977,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6041279,7.6685233,56.92,49.39,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,531.5,2448411,619219.06,368728.69,0,3067.9358 -12129,14962,27003,27004,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,7.3370948,7.7850766,5.7191868,35,3,89.713646,0,3,2,2019,7,0,24,25,1,0,0,9.9837227,9.9837227,0,0,0,0,0,0,0,0,0,5.7204332,59.43,58.05,41.11,60.68,8.333333333333334,1,1,0,0,9,2,4,1,403.5,897785.94,738947.56,197721.5,0,3072.3652 -12129,14962,27004,27003,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.200984,8.229434,6.1441588,35,-3,-11.887683,0,3,2,2019,6,0,30,40,1,0,0,16.593985,16.593985,0,0,0,0,0,0,0,0,6.4320273,6.0966239,41.11,60.68,59.43,58.05,8.333333333333334,1,1,0,0,9,2,4,1,403.5,897785.94,738947.56,197721.5,0,3072.3652 -12130,14963,27005,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.8439,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,34.86,18.02,-9,-9,1.666666666666667,3,4,0,1,0,2,1,0,815,-491075,0,0,0,135.31378 -12131,14964,27006,27008,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.4905176,8.2732,0,5,-3,65.121605,0,3,3,2019,19,7,37,0,1,7,0,12.884685,12.884685,0,0,0,0,0,1,1,0,0,0,40.48,60.05,46.1,59.99,6.666666666666667,1,1,0,0,2,4,5,0,814.66669,196202.22,-17835.332,268375.53,81248.078,3722.8318 -12131,14964,27007,-9,27006,27008,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.877,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,4,5,0,814.66669,196202.22,-17835.332,268375.53,81248.078,3722.8318 -12131,14964,27008,27006,-9,-9,1,1,31,0,1,0,1,1,-9,0,4,8.6375895,8.7500629,0,5,3,66.898598,0,3,3,2019,11,0,38,39,1,0,0,13.951702,13.951702,0,0,0,0,0,1,1,0,5.1916466,0,46.1,59.99,40.48,60.05,5,1,1,0,0,5,4,5,0,814.66669,196202.22,-17835.332,268375.53,81248.078,3722.8318 -12132,14965,27009,27010,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,54,4,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,7.070394,0,0,1,1,0,3.4112937,0,57.33,53.46,58.3,52.91,8.333333333333334,1,1,0,0,0,5,1,1,1632.5,41242.734,-89000.141,86871.953,0,590.57227 -12132,14965,27010,27009,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,54,-4,0,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3110526,0,58.3,52.91,57.33,53.46,8.333333333333334,1,1,0,0,10,5,1,1,1632.5,41242.734,-89000.141,86871.953,0,590.57227 -12133,14966,27011,27012,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0101929,8.0834999,0,35,0,-50.030674,0,3,2,2019,8,0,2,40,1,0,0,193.43539,193.43539,0,0,0,0,0,0,0,0,6.9635949,0,63.63,51.86,49.35,59.64,10,1,1,0,0,7,4,4,1,427.5,961445.25,806669.13,100719.76,0,3630.4912 -12133,14966,27012,27011,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.103651,7.7839088,6.2840853,35,0,-26.919701,0,2,2,2019,5,0,32,35,1,0,0,12.10216,12.10216,0,0,0,0,0,0,0,0,4.2382307,6.7587185,49.35,59.64,63.63,51.86,8.333333333333334,1,1,0,0,11,4,4,1,427.5,961445.25,806669.13,100719.76,0,3630.4912 -12134,14967,27013,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.3254747,7.2503171,0,0,0,-882.23547,0,2,3,2019,11,0,20,26,1,0,0,10.171905,10.171905,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,5,1,1,0,0,9,11,3,1,1783,765851.63,87651.805,476477.03,0,819.89081 -12135,14968,27014,27015,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.4708614,7.7551689,0,15,6,28.738934,0,2,2,2019,8,0,24,24,1,0,0,13.50179,13.50179,0,0,0,0,2,0,0,0,8.9986591,0,54.1,59.11,55.36,51.57,8.333333333333334,1,1,0,0,10,8,4,1,316,508013.75,579379.94,0,0,7373.1938 -12135,14968,27015,27014,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.2382035,7.8225121,6.8929296,15,-6,48.184322,0,2,2,2019,8,0,56,-9,1,0,0,3.0180209,3.0180209,0,0,0,0,7,0,0,0,9.1852684,0,55.36,51.57,54.1,59.11,6.666666666666667,1,1,0,0,5,8,4,1,316,508013.75,579379.94,0,0,7373.1938 -12136,14969,27016,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,7.800777,7.9862027,0,0,-949.67065,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9983373,7.7048354,60.67,53.2,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,835,604829.63,282684.94,130994.53,0,1776.8164 -12137,14970,27017,-9,27019,27020,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1070.9401,-9,2,1,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 -12137,14970,27018,-9,27019,27020,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1050.054,-9,2,1,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,10,2,3,0,0,1,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 -12137,14970,27019,27020,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,0,0,0,23,-4,-80.280487,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,.2950784,0,38.91,47.3,50.51,53.71,5,2,3,0,0,0,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 -12137,14970,27020,27019,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,8.5186548,8.6382084,0,23,4,-30.694757,0,3,3,2019,14,2,37,41,1,2,0,12.213298,12.213298,0,0,0,0,7,1,1,0,.098556317,0,50.51,53.71,38.91,47.3,3.333333333333333,2,3,0,0,12,4,3,1,1638.5,292203.84,118867.05,152744.72,91065.227,2184.907 -12137,14971,27021,-9,27019,27020,1,0,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1016.6944,-9,2,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,38.98,58.02,-9,-9,0,2,3,0,0,0,4,1,1,4852,140473.69,0,0,0,0 -12138,14972,27022,-9,27023,27024,1,1,17,0,0,1,3,0,0,1,2,0,0,0,0,0,-886.85535,-9,2,2,2019,29,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,3.8494687,0,18.69,51.57,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,947,-193677.59,1805.8173,0,0,2860.4963 -12138,14972,27023,27024,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,9,0,0,0,3,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,0,0,9.700000000000001,52.63,16.04,23.99,1.666666666666667,1,1,0,1,0,11,1,0,947,-193677.59,1805.8173,0,0,2860.4963 -12138,14972,27024,27023,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,9,0,0,0,2,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,9.700000000000001,52.63,3.333333333333333,1,1,0,0,0,11,1,0,947,-193677.59,1805.8173,0,0,2860.4963 -12138,14973,27025,-9,27023,27024,1,0,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-1006.4795,-9,2,2,2019,29,12,0,0,2,12,1,0,0,0,0,0,0,0,1,1,0,0,0,14.93,51.14,-9,-9,5,1,1,0,1,0,11,1,0,460,94163.164,0,0,0,0 -12139,14974,27026,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,5.1911349,4.779572,0,0,-1055.9951,0,3,3,2019,28,11,0,0,4,11,0,0,0,1,0,27.444086,0,0,1,1,0,0,4.9639945,21.97,21.3,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,1386,169526.06,0,0,0,969.64227 -12140,14975,27027,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.6722708,8.7493973,0,0,0,-963.42267,0,3,2,2019,12,0,39,39,1,0,0,18.892609,18.892609,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,3.333333333333333,1,1,0,0,11,12,5,1,1572,12968.273,51723.219,169984.13,26700.395,2014.3754 -12141,14976,27028,-9,-9,-9,1,1,42,0,1,0,2,2,-9,1,4,0,0,0,0,0,-983.40308,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1266.6666,-210411.89,0,0,0,2439.5352 -12141,14976,27029,-9,-9,27028,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-992.44855,-9,-9,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,0,1,1,0,0,0,10,1,0,1266.6666,-210411.89,0,0,0,2439.5352 -12141,14976,27030,-9,-9,27028,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.74158,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,1,0,1266.6666,-210411.89,0,0,0,2439.5352 -12142,14977,27031,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1016.1109,0,-9,-9,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,47.54,41.83,-9,-9,5,1,1,1,0,0,12,1,0,210,-109425.41,0,0,0,1099.6621 -12143,14978,27032,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.9979897,8.8259478,0,0,0,-919.78088,0,-9,-9,2019,8,0,50,35,1,0,0,18.476742,18.476742,0,0,0,0,0,0,0,0,7.4480324,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,7,8,5,1,869,307891.03,508.77011,360509.22,72386.047,3909.8728 -12144,14979,27033,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6443501,8.677165,0,0,0,-889.42029,0,2,3,2019,7,0,58,84,1,0,0,13.237012,13.237012,0,0,0,0,0,1,1,0,3.3719425,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,585,-206202.08,101640.85,147235.81,65137.012,1930.9696 -12145,14980,27034,27035,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.7086859,6.2073803,9,-3,97.894508,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.6472182,6.3704638,54.09,36.16,56.44,41.72,6.666666666666667,1,1,0,0,0,8,2,1,1228,1288249.8,977977.81,255336.75,0,1207.9773 -12145,14980,27035,27034,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.9074321,7.0182667,42,3,32.374779,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.8563442,56.44,41.72,54.09,36.16,10,1,1,0,0,0,8,2,1,1228,1288249.8,977977.81,255336.75,0,1207.9773 -12146,14981,27036,27037,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.9513717,4.7812767,51,0,40.764156,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.9723983,5.0724354,56.11,44.4,57.9,22.03,5,1,1,0,0,4,7,2,1,628,561802.69,147863.94,629897.38,0,2191.0627 -12146,14981,27037,27036,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.680439,5.4258184,52,0,91.685799,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,8.1641722,0,2,1,1,0,6.088582,5.7167616,57.9,22.03,56.11,44.4,6.666666666666667,1,1,0,0,5,7,2,1,628,561802.69,147863.94,629897.38,0,2191.0627 -12146,14982,27038,-9,27036,27037,1,1,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1032.7144,-9,2,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37,28,-9,-9,1.666666666666667,1,1,0,1,0,7,2,1,516,981102.31,25739.457,585631.44,0,797.73108 -12147,14983,27039,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.575892,7.2595158,0,0,-1058.4895,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,.36695871,0,1,1,0,8.3148909,7.5716958,48.3,41.76,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,500,878942,82935.031,454183.22,0,2125.8745 -12147,14984,27040,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.343596,7.5767045,0,0,-973.85815,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2634573,7.5437818,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,758,497354.91,135803.77,238932.75,0,1985.4192 -12148,14985,27041,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.672286,6.982244,0,0,-977.42285,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8273511,6.6656289,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,668,46795.668,154290.39,0,0,594.35468 -12149,14986,27042,27043,-9,-9,1,0,46,0,2,0,2,2,-9,0,2,6.1127787,6.2320719,0,3,12,-13.463615,0,-9,3,2019,11,1,10,15,1,1,0,5.1667099,5.1667099,0,0,0,0,0,1,1,0,0,0,51.25,48.45,50,56,6.666666666666667,1,1,0,0,3,5,3,1,745,55184.383,141233.89,0,0,2582.1064 -12149,14986,27043,27042,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.4653158,8.3388157,0,3,-12,113.50766,0,-9,-9,2019,10,0,38,38,1,1,0,13.457466,13.457466,0,0,0,0,0,1,1,0,0,0,50,56,51.25,48.45,7,4,1,0,0,1,5,3,1,745,55184.383,141233.89,0,0,2582.1064 -12150,14987,27044,27045,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,7.3721247,7.4485421,0,20,-7,41.533058,0,3,1,2019,6,0,38,44,1,0,0,6.7471981,6.7471981,0,0,0,0,0,1,1,0,7.0738735,0,62.66,52.4,53.95,50.89,10,2,3,0,0,6,8,5,1,439,2201783.8,1076470,631550.94,0,5164.0503 -12150,14987,27045,27044,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2246017,9.1555204,0,20,7,-26.037733,0,3,3,2019,11,1,39,39,1,1,0,24.016428,24.016428,0,0,0,0,0,1,1,0,0,0,53.95,50.89,62.66,52.4,6.666666666666667,2,3,0,0,9,8,5,1,439,2201783.8,1076470,631550.94,0,5164.0503 -12150,14987,27046,-9,27044,27045,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1022.3442,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.09,56.75,-9,-9,5,2,3,0,0,0,8,5,1,439,2201783.8,1076470,631550.94,0,5164.0503 -12150,14988,27047,-9,27044,27045,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-855.42712,-9,1,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,666,-418765.47,0,0,0,0 -12151,14989,27048,27050,-9,-9,1,1,42,1,1,0,2,2,-9,0,2,5.8700299,5.9353781,0,22,-2,0,0,-9,-9,2019,17,4,60,60,1,4,0,.62288815,.62288815,0,0,0,0,2,1,1,0,0,0,36.18,29.54,25.35,43.06,5,1,1,0,1,3,8,2,1,858.33331,213745.34,101577.97,0,0,1995.6505 -12151,14989,27049,-9,27050,27048,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-966.4129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,1,858.33331,213745.34,101577.97,0,0,1995.6505 -12151,14989,27050,27048,-9,-9,1,0,44,1,1,0,2,2,-9,0,2,5.8878913,5.9738135,0,22,2,0,0,2,2,2019,27,9,37,60,1,9,0,1.1326326,1.1326326,0,0,0,0,0,1,1,0,0,0,25.35,43.06,36.18,29.54,3.333333333333333,1,1,0,1,9,8,2,1,858.33331,213745.34,101577.97,0,0,1995.6505 -12152,14990,27051,27053,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.1093102,9.1343212,0,31,2,-98.0895,0,3,3,2019,9,0,38,43,1,0,0,28.039743,28.039743,0,0,0,0,14.5,1,1,0,0,0,43.28,61.68,51.13,50.73,5,1,1,0,0,13,2,5,1,2088.6667,1433641.8,1169811.5,213915.31,0,5106.3447 -12152,14990,27052,-9,27053,27051,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1027.4556,-9,2,1,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,2088.6667,1433641.8,1169811.5,213915.31,0,5106.3447 -12152,14990,27053,27051,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.4206057,8.2716274,0,31,-2,-38.897491,0,2,2,2019,9,0,32,33,1,0,0,14.206087,14.206087,0,0,0,0,14.5,1,1,0,0,0,51.13,50.73,43.28,61.68,8.333333333333334,1,1,0,0,13,2,5,1,2088.6667,1433641.8,1169811.5,213915.31,0,5106.3447 -12153,14991,27054,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,9.0097818,9.1280212,0,0,0,-1073.4426,0,3,3,2019,15,3,68,60,1,3,0,15.404437,15.404437,0,0,0,0,0,0,0,0,0,0,58.9,45.74,-9,-9,8.333333333333334,1,1,0,0,7,11,5,0,395,786572.19,245007.39,301164,0,3487.2493 -12154,14992,27055,-9,27057,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2246,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,597.66669,125.30209,-28018.236,0,0,1669.0908 -12154,14992,27056,-9,27057,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1216.0419,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,2,0,597.66669,125.30209,-28018.236,0,0,1669.0908 -12154,14992,27057,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,5.6926231,5.7968516,0,0,-998.29083,0,2,-9,2019,18,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,5.5863028,0,39.85,55.83,-9,-9,5,1,1,0,0,5,6,2,0,597.66669,125.30209,-28018.236,0,0,1669.0908 -12155,14993,27058,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1009.8535,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,2.4828413,0,23.824232,0,1,1,0,0,0,43.39,27.11,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,602,56118.063,0,33058.836,0,2351.3943 -12156,14994,27059,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,5.572659,5.8806419,0,0,-1010.3369,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2036757,5.8618336,56.5,45.63,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,484,203556.17,38584.148,167994.64,0,522.36316 -12157,14995,27060,27061,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.6092763,7.6653066,9,0,-10.106348,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.943727,7.7325397,46.07,42.07,53,44,10,1,1,0,0,0,13,3,1,307,614210.75,395864.84,174706.95,0,3020.8708 -12157,14995,27061,27060,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.9799843,6.6381502,9,0,-163.01726,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.6176848,53,44,46.07,42.07,8,1,1,0,0,0,13,3,1,307,614210.75,395864.84,174706.95,0,3020.8708 -12158,14996,27062,27063,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.0384736,7.2043729,0,3,-3,-59.555065,0,3,-9,2019,7,0,20,12,1,0,0,6.4131703,6.4131703,0,0,0,0,0,1,1,0,6.6012216,0,52.71,51.84,60.53,48.35,8.333333333333334,1,1,0,0,11,10,3,1,1574.5,705788.19,407516.19,261121.03,0,2687.9495 -12158,14996,27063,27062,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,6.6716194,6.7522912,0,3,3,26.702509,0,-9,-9,2019,7,0,20,60,1,0,0,6.0061221,6.0061221,0,0,0,0,0,1,1,0,0,0,60.53,48.35,52.71,51.84,10,1,1,0,0,12,10,3,1,1574.5,705788.19,407516.19,261121.03,0,2687.9495 -12159,14997,27064,27065,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.8519545,7.7090893,55,4,37.742004,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.881763,47.95,40.23,54.61,49.13,6.666666666666667,1,1,0,0,0,9,3,1,1012,806380.31,369095,270531.19,0,2037.2928 -12159,14997,27065,27064,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.3446097,4.3624244,55,-4,-2.9519041,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1886506,54.61,49.13,47.95,40.23,8.333333333333334,1,1,0,0,0,9,3,1,1012,806380.31,369095,270531.19,0,2037.2928 -12160,14998,27066,27067,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.9566956,7.9400568,0,15,1,-30.736506,0,3,3,2019,9,0,34,33,1,0,0,9.5650587,9.5650587,0,0,0,0,0,0,0,0,0,0,53,56,54.2,57.49,6.666666666666667,1,1,0,0,13,6,5,1,634,62009.359,59640.977,194067.34,109292.45,3231.9028 -12160,14998,27067,27066,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.5037861,8.4304581,0,15,-1,112.1073,0,2,2,2019,10,1,45,44,1,1,0,13.145997,13.145997,0,0,0,0,0,0,0,0,0,0,54.2,57.49,53,56,8.333333333333334,1,1,0,0,12,6,5,1,634,62009.359,59640.977,194067.34,109292.45,3231.9028 -12161,14999,27068,27069,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.271842,7.5378265,6,1,-204.14069,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.4205971,7.6516495,57.16,56.15,52.99,51.28,10,1,1,0,0,0,11,3,1,327.5,828051.75,790178.69,251889.31,63522.156,2434.938 -12161,14999,27069,27068,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.4950566,6.4560456,6,-1,126.63046,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.688499,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,1,11,3,1,327.5,828051.75,790178.69,251889.31,63522.156,2434.938 -12162,15000,27070,27071,-9,-9,1,1,85,0,0,0,1,1,-9,0,4,0,6.8705354,6.9893866,7,1,-95.896141,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,7.6650338,0,69.17868,0,1,1,0,7.460403,7.1747508,55.72,51.28,52.35,38.01,10,2,3,0,0,0,2,2,1,952.5,652094.31,182225.06,184573.09,0,2956.1538 -12162,15000,27071,27070,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.071578,6.0041866,7,-1,139.84875,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,4.7901816,10.950012,60.822891,0,1,1,0,5.9350591,5.9126291,52.35,38.01,55.72,51.28,10,4,5,0,0,0,2,2,1,952.5,652094.31,182225.06,184573.09,0,2956.1538 -12163,15001,27072,27073,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6861887,8.3994818,0,3,-1,2.1913235,0,-9,-9,2019,10,1,44,51,1,1,0,18.534756,18.534756,0,0,0,0,0,0,0,0,0,0,54.1,59.11,32.56,65.15000000000001,8.333333333333334,1,1,0,0,3,2,5,1,277,-381971.88,73161.188,0,0,3018.1589 -12163,15001,27073,27072,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,7.4583616,7.5896153,0,3,1,5.6301641,0,-9,-9,2019,20,8,30,30,1,8,0,6.6526403,6.6526403,0,0,0,0,0,0,0,0,0,0,32.56,65.15000000000001,54.1,59.11,8.333333333333334,1,1,0,0,8,2,5,1,277,-381971.88,73161.188,0,0,3018.1589 -12164,15002,27074,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.0098934,7.8035622,0,0,0,-1011.8093,-9,2,1,2019,13,1,40,0,1,1,0,8.9085035,8.9085035,0,0,0,0,0,0,0,0,1.5578799,0,39.33,58.88,-9,-9,8.333333333333334,1,1,0,0,3,1,4,0,908,-257157.33,29414.336,0,0,1092.3141 -12165,15003,27075,27076,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.542654,8.7247963,0,6,-5,64.631271,0,3,3,2019,8,0,37,37,1,0,0,17.458099,17.458099,0,0,0,0,0,1,1,0,0,0,38.39,40.89,34.3,58.7,8.333333333333334,1,1,0,0,7,4,4,1,605,1600495.9,1047686.6,163706.16,0,4114.4458 -12165,15003,27076,27075,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,6.4413285,6.3590779,6,5,36.74155,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2255344,6.4050264,34.3,58.7,38.39,40.89,8.333333333333334,2,3,0,0,0,4,4,1,605,1600495.9,1047686.6,163706.16,0,4114.4458 -12166,15004,27077,27078,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,8.3082428,8.3857994,44,0,32.825722,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2.7129986,7.9986396,36.32,49.16,30.94,51.12,6.666666666666667,1,1,0,0,0,11,3,1,576.5,437395.28,50894.008,265904.94,0,1784.5317 -12166,15004,27078,27077,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,3.7693529,3.9906089,44,0,87.60437,0,3,2,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,14.5,0,0,0,3.131475,4.2584038,30.94,51.12,36.32,49.16,3.333333333333333,1,1,0,0,0,11,3,1,576.5,437395.28,50894.008,265904.94,0,1784.5317 -12167,15005,27079,27080,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,6.942749,6.6163831,64,4,121.34435,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.163285,7.150454,57.11,36.04,52,45,8.333333333333334,1,1,0,0,0,2,2,1,1230.5,748476.5,266729.13,438053.44,0,2094.0269 -12167,15005,27080,27079,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,64,-4,-116.43412,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,7.2688055,0,0,1,1,0,1.0178245,0,52,45,57.11,36.04,8.333333333333334,1,1,0,0,0,2,2,1,1230.5,748476.5,266729.13,438053.44,0,2094.0269 -12168,15006,27081,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.2508001,8.7890606,0,0,0,-1005.5831,0,2,2,2019,21,9,43,44,1,9,0,12.909317,12.909317,0,0,0,0,0,0,0,0,0,0,32.48,59.49,-9,-9,6.666666666666667,1,1,0,0,12,8,5,0,862,44154.422,66215.289,0,0,1772.7919 -12169,15007,27082,27084,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.3428049,8.4995394,0,7,1,-145.7646,0,2,2,2019,9,0,40,40,1,0,0,11.923947,11.923947,0,0,0,0,71.5,1,1,0,0,0,47.36,53.68,19.01,22.64,6.666666666666667,1,1,0,0,9,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 -12169,15007,27083,-9,27084,27082,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.34662,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 -12169,15007,27084,27082,-9,-9,1,0,34,0,2,0,1,1,-9,0,1,6.4656439,6.3485541,0,7,-1,60.867798,0,2,2,2019,31,10,2,35,1,10,0,33.232929,33.232929,0,0,0,0,0,1,1,0,0,0,19.01,22.64,47.36,53.68,3.333333333333333,1,1,0,1,3,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 -12169,15007,27085,-9,27084,27082,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.94763,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,638,267437.75,0,198356.95,83555.5,2237.8457 -12170,15008,27086,27087,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.9624271,8.7869873,0,10,0,29.835562,0,2,2,2019,8,0,33,52,1,0,0,20.811169,20.811169,0,0,0,0,0,0,0,0,0,0,49.04,55.86,32.8,54.29,8.333333333333334,1,1,0,0,12,9,5,0,566,356787.19,82783.906,427082.75,134771.84,3803.0747 -12170,15008,27087,27086,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,7.4304152,7.3021364,0,10,0,-33.763062,0,2,2,2019,14,2,30,-9,1,2,0,4.8069544,4.8069544,0,0,0,0,0,0,0,0,7.7942028,0,32.8,54.29,49.04,55.86,5,1,1,0,0,12,9,5,0,566,356787.19,82783.906,427082.75,134771.84,3803.0747 -12171,15009,27088,27089,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.9935718,7.7634497,49,2,81.857925,0,3,-9,2019,10,2,0,0,4,2,0,0,0,1,0,.83098292,0,0,1,1,0,7.5027151,7.7065754,54.06,17.99,49.22,50.31,8.333333333333334,1,1,0,0,0,10,3,1,816,452474.38,199348.09,185765.75,0,3753.856 -12171,15009,27089,27088,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,49,-2,128.40233,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8915205,0,49.22,50.31,54.06,17.99,8.333333333333334,1,1,0,0,10,10,3,1,816,452474.38,199348.09,185765.75,0,3753.856 -12172,15010,27090,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.2680764,7.3875966,0,0,-1023.4346,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,2.7106476,11.549618,23.75453,0,1,1,0,5.522079,7.5205421,49.2,36.76,-9,-9,10,1,1,0,0,0,4,3,1,1333,-25671.527,-39070.805,0,0,1469.2015 -12173,15011,27091,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.11761,0,3,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.3,50.04,-9,-9,10,1,1,0,0,0,4,1,0,551,-191102.86,0,0,0,654.33783 -12174,15012,27092,27093,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,7.0674605,7.3430529,0,11,-2,145.95009,0,2,2,2019,12,4,24,40,1,4,0,6.1133265,6.1133265,0,0,0,0,0,0,0,0,3.5001211,0,54.25,31.66,55.36,51.57,8.333333333333334,2,3,0,0,10,8,4,0,236.5,147131.52,0,326017.88,180900.59,2378.6226 -12174,15012,27093,27092,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.1656246,7.5950346,0,3,2,54.064205,0,2,2,2019,6,0,40,40,1,0,0,7.6956658,7.6956658,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.25,31.66,8.333333333333334,2,3,0,0,10,8,4,0,236.5,147131.52,0,326017.88,180900.59,2378.6226 -12175,15013,27094,-9,27097,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.9863,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 -12175,15013,27095,-9,27097,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.69147,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 -12175,15013,27096,-9,27097,-9,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1051.9807,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 -12175,15013,27097,-9,-9,-9,1,0,33,0,3,0,1,1,-9,0,4,8.4563417,8.4592104,0,0,0,-900.20294,0,1,2,2019,15,4,40,37,1,4,0,11.136885,11.136885,0,0,0,0,0,1,1,0,0,0,52.32,44.53,-9,-9,6.666666666666667,3,4,0,1,8,8,3,0,642,-184364.97,0,114321.91,97521.219,2902.4424 -12176,15014,27098,27099,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.2660728,7.4843287,0,28,8,97.766777,0,2,2,2019,8,1,45,55,1,1,0,3.4596257,3.4596257,0,0,0,0,0,0,0,0,0,0,56.18,53.85,43.15,49.04,6.666666666666667,1,1,0,0,13,6,3,1,1590,435384.81,73946.086,204026.84,0,1893.8496 -12176,15014,27099,27098,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.6415091,7.6113787,5.3830748,28,-8,-9.2351618,0,3,3,2019,14,2,33,0,1,2,0,7.0713825,7.0713825,0,0,0,0,0,0,0,0,2.8842967,5.4166317,43.15,49.04,56.18,53.85,3.333333333333333,1,1,0,0,12,6,3,1,1590,435384.81,73946.086,204026.84,0,1893.8496 -12176,15015,27100,-9,27099,27098,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-897.18195,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,-9,-9,10,1,1,0,0,2,6,1,1,1723,43070.754,0,0,0,0 -12176,15016,27101,-9,27099,27098,1,1,33,0,0,0,2,2,-9,0,3,8.0499392,8.0965929,0,0,0,-1017.6015,0,2,3,2019,19,5,56,48,1,5,1,7.239778,7.239778,0,0,0,0,0,0,0,0,3.1556246,0,29.21,54.09,-9,-9,3.333333333333333,1,1,0,0,8,6,4,1,2728,159083.73,59351.148,0,0,1145.0548 -12177,15017,27102,27103,-9,-9,1,0,31,0,0,0,1,1,-9,0,2,9.0581427,9.1190739,0,2,3,88.972977,0,-9,-9,2019,18,5,49,49,1,5,0,20.911598,20.911598,0,0,0,0,0,1,1,0,0,0,48.16,44.38,52.58,47.36,8.333333333333334,1,1,0,0,3,8,5,1,883.5,217795.83,1789.0195,0,0,6701.8037 -12177,15017,27103,27102,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.956171,8.6667891,0,2,-3,-2.6115837,0,2,1,2019,11,2,60,51,1,2,0,12.126146,12.126146,0,0,0,0,0,1,1,0,0,0,52.58,47.36,48.16,44.38,8.333333333333334,4,2,0,0,4,8,5,1,883.5,217795.83,1789.0195,0,0,6701.8037 -12178,15018,27104,27105,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.2140207,7.997107,0,20,3,8.2327538,0,3,3,2019,7,0,29,28,1,0,0,14.622342,14.622342,0,0,0,0,0,1,1,0,1.124265,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 -12178,15018,27105,27104,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.6468935,8.6390877,0,20,-3,304.62766,0,2,3,2019,7,0,43,40,1,0,0,18.21587,18.21587,0,0,0,0,0,1,1,0,3.946028,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 -12178,15018,27106,-9,27104,27105,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.14886,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 -12178,15018,27107,-9,27104,27105,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.3732,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1303.75,1834876.4,884052.75,388390.78,0,4004.4377 -12179,15019,27108,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.5564961,7.2758789,0,0,-955.06677,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.2576344,7.8700566,52,45,-9,-9,8,1,1,0,0,0,11,3,1,443,254705.64,243911.86,189354.61,0,1755.9196 -12180,15020,27109,27110,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.8972578,7.6927495,0,3,1,67.43969,0,-9,-9,2019,10,0,42,40,1,0,0,6.1120868,6.1120868,0,0,0,0,0,0,0,0,.25967681,0,51.83,57.2,54.1,59.11,10,1,1,0,0,4,6,5,1,669,34016.172,106921.52,0,0,3295.7583 -12180,15020,27110,27109,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.4784079,8.3921232,0,3,-1,-77.704918,0,2,1,2019,8,0,50,50,1,0,0,11.238066,11.238066,0,0,0,0,0,0,0,0,.4079814,0,54.1,59.11,51.83,57.2,8.333333333333334,1,1,0,0,9,6,5,1,669,34016.172,106921.52,0,0,3295.7583 -12181,15021,27111,27112,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,22,11,-7.3644218,0,3,3,2019,9,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.12,54.8,8.333333333333334,1,1,1,0,8,12,5,1,282.5,-159570.53,-36824.57,114559.38,80696.18,4677.188 -12181,15021,27112,27111,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.1762199,9.561883,0,21,-11,10.615689,0,-9,-9,2019,6,0,49,47,1,0,0,28.115583,28.115583,0,0,0,0,0,0,0,0,1.2037716,0,60.12,54.8,60.29,52.11,8.333333333333334,1,1,0,0,9,12,5,1,282.5,-159570.53,-36824.57,114559.38,80696.18,4677.188 -12182,15022,27113,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.6241403,7.4190707,0,0,-919.07782,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,11.28213,0,0,1,1,0,0,7.1869059,53,44,-9,-9,8,1,1,0,0,0,13,3,1,1779,225626.78,235937.02,197662.84,0,3024.489 -12183,15023,27114,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.1468773,6.9757061,0,0,-1091.8397,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.7352772,45.35,40.28,-9,-9,5,1,1,0,0,6,1,2,1,196,456115.59,197604.64,116718.12,0,1834.4781 -12184,15024,27115,27116,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.855732,7.6915469,55,0,-93.738808,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0732188,7.7066555,53,47,54.37,54.8,6.666666666666667,1,1,0,0,0,9,3,1,1196.5,767858.63,315096.06,453335.88,16955.367,2753.8032 -12184,15024,27116,27115,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.843143,5.673419,55,0,106.2639,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.0303144,5.9334493,54.37,54.8,53,47,8.333333333333334,1,1,0,0,0,9,3,1,1196.5,767858.63,315096.06,453335.88,16955.367,2753.8032 -12185,15025,27117,-9,27120,27118,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.77386,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 -12185,15025,27118,27120,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.2554779,8.453721,0,10,4,82.495903,0,1,1,2019,6,0,39,42,1,0,0,10.582313,10.582313,0,0,0,0,0,1,1,0,6.9101052,0,59.53,56.44,57.16,56.15,10,1,1,0,0,11,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 -12185,15025,27119,-9,27120,27118,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.14984,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 -12185,15025,27120,27118,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.8154879,6.7614441,0,10,-4,38.80685,0,-9,-9,2019,6,0,16,12,1,0,0,6.5560803,6.5560803,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.53,56.44,10,2,3,0,0,6,10,3,1,757.75,784575.06,231204.11,650951.25,210522.36,2609.0962 -12186,15026,27121,27122,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,7.9016228,8.2536268,0,6,-2,-56.121979,0,2,1,2019,12,2,37,37,1,2,0,8.6585407,8.6585407,0,0,0,0,0,1,1,0,2.524904,0,47.94,53.79,23.88,57.05,8.333333333333334,2,3,0,0,7,4,5,1,1304.6666,109145.4,251744.59,154487.3,121120.89,5384.4639 -12186,15026,27122,27121,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,9.4529781,9.5182695,0,6,2,56.478596,0,2,2,2019,16,5,45,47,1,5,0,29.017225,29.017225,0,0,0,0,0,1,1,0,4.7778072,0,23.88,57.05,47.94,53.79,3.333333333333333,1,1,0,0,7,4,5,1,1304.6666,109145.4,251744.59,154487.3,121120.89,5384.4639 -12186,15026,27123,-9,27121,27122,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.91052,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,5,1,1304.6666,109145.4,251744.59,154487.3,121120.89,5384.4639 -12187,15027,27124,-9,27125,27127,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1058.7024,-9,2,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.5297422,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,1,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 -12187,15027,27125,27127,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.5552611,7.611681,0,6,-3,-29.1933,0,3,2,2019,11,0,25,16,1,0,0,8.7334852,8.7334852,0,0,0,0,0,1,1,0,1.6405244,0,51.24,58.84,34.6,58.25,8.333333333333334,1,1,0,0,7,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 -12187,15027,27126,-9,27125,27127,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1144.8282,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 -12187,15027,27127,27125,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,9.0376778,9.0985003,0,6,3,-85.794685,0,3,3,2019,17,6,44,42,1,6,0,21.338476,21.338476,0,0,0,0,0,1,1,0,2.853833,0,34.6,58.25,51.24,58.84,5,1,1,0,0,7,7,5,1,681.75,650641.5,629353.81,0,0,3856.6086 -12188,15028,27128,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.3496928,6.4916663,0,0,-970.75903,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,3.878346,4.9319572,26.657019,0,1,1,0,0,6.5693736,54.07,36.17,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,862,29321.016,67837.063,0,0,772.64789 -12189,15029,27129,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4033928,8.1556206,0,0,0,-909.57056,0,2,2,2019,10,0,40,45,1,0,0,13.465467,13.465467,0,0,0,0,0,0,0,0,0,0,52.48,54.33,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,849,201878.27,0,0,0,1566.3458 -12190,15030,27130,27131,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.7948227,9.3586807,0,6,3,-1.451525,0,2,2,2019,5,0,60,60,1,0,0,27.31451,27.31451,0,0,0,0,0,1,1,0,0,0,59.43,58.05,56.18,48.68,0,1,1,0,0,7,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 -12190,15030,27131,27130,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.3537712,8.2805729,0,6,-3,24.317816,0,2,3,2019,7,0,36,40,1,0,0,10.648263,10.648263,0,0,0,0,0,1,1,0,5.0154572,0,56.18,48.68,59.43,58.05,8.333333333333334,1,1,0,0,3,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 -12190,15030,27132,-9,27131,27130,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.69287,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 -12190,15030,27133,-9,27131,27130,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.26184,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,470,1052867.5,453785.53,301522.66,0,6524.3652 -12191,15031,27134,27135,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,2,-18,93.61911,0,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,53.39,39.15,26.9,21.84,5,1,1,0,0,0,2,2,1,928.5,475184.75,298165.66,0,0,1713.5831 -12191,15031,27135,27134,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.7141747,7.4119945,2,18,96.099792,0,3,3,2019,25,10,0,0,4,10,0,0,0,1,0,120.35892,0,0,1,1,0,0,7.0946703,26.9,21.84,53.39,39.15,6.666666666666667,1,1,0,0,0,2,2,1,928.5,475184.75,298165.66,0,0,1713.5831 -12192,15032,27136,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.5964,0,3,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,24.82,-9,-9,1.666666666666667,4,2,0,1,0,9,1,0,377,208342.58,210210.25,0,0,896.27216 -12193,15033,27137,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5834961,7.2624688,0,0,-1055.4355,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0360799,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,603,578672.06,395924.16,234488.52,0,763.00623 -12194,15034,27138,-9,27139,27141,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8351,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 -12194,15034,27139,27141,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8260016,7.3841505,0,18,0,84.546753,0,-9,-9,2019,7,0,24,25,1,0,0,12.139354,12.139354,0,0,0,0,0,0,0,0,0,0,52,54.51,59.05,37.51,1.666666666666667,1,1,0,0,7,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 -12194,15034,27140,-9,27139,27141,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.1843,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 -12194,15034,27141,27139,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.8994904,8.9555035,0,18,0,-65.618286,0,-9,-9,2019,6,0,45,55,1,0,0,15.888422,15.888422,0,0,0,0,0,0,0,0,0,0,59.05,37.51,52,54.51,8.333333333333334,1,1,0,0,9,7,4,1,554.75,500459.38,335798.5,201216.73,109568.05,3093.1951 -12195,15035,27142,27145,-9,-9,1,1,56,0,2,0,2,2,-9,0,3,8.411376,8.636363,7.9316883,9,5,34.380215,0,2,2,2019,10,0,21,21,1,0,0,27.425694,27.425694,0,0,0,0,0,1,1,0,3.9806187,8.1104631,50.97,40.02,51.83,57.2,1.666666666666667,1,1,0,0,10,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 -12195,15035,27143,-9,27145,27142,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-899.05341,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 -12195,15035,27144,-9,27145,27142,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-959.63971,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 -12195,15035,27145,27142,-9,-9,1,0,51,0,2,0,3,3,-9,0,4,5.8764973,5.951766,0,9,-5,-50.740829,0,2,3,2019,7,0,5,5,1,0,0,8.6929169,8.6929169,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50.97,40.02,10,1,1,0,0,6,13,4,1,1104,594020.25,258296.05,191336.66,0,2884.9829 -12196,15036,27146,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1055.2264,0,3,3,2019,28,10,0,0,4,10,0,0,0,0,15.622508,0,0,0,1,1,0,0,0,17.81,60.07,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,696,40732.887,0,0,0,1600.5585 -12197,15037,27147,-9,27148,27149,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.51147,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,3,1,683,268713.94,0,0,0,1607.5471 -12197,15037,27148,27149,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,6.7717195,6.7362514,0,7,-2,71.92836,0,-9,-9,2019,13,3,2,4,1,3,0,59.103119,59.103119,0,0,0,0,0,1,1,0,0,0,44.46,60.71,51.14,60.45,6.666666666666667,1,1,0,0,11,2,3,1,683,268713.94,0,0,0,1607.5471 -12197,15037,27149,27148,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,7.3417468,7.3543038,0,7,2,-.0332257,0,-9,-9,2019,8,0,50,50,1,0,0,3.753587,3.753587,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.46,60.71,8.333333333333334,1,1,0,0,9,2,3,1,683,268713.94,0,0,0,1607.5471 -12197,15037,27150,-9,27148,27149,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.2334,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,683,268713.94,0,0,0,1607.5471 -12198,15038,27151,27152,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.5849099,7.3427606,34,9,118.51672,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6738338,57.16,56.15,41.7,39.18,6.666666666666667,1,1,0,0,11,12,3,1,468.5,707710.88,404315.56,270391,0,2958.458 -12198,15038,27152,27151,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.4035025,7.2641973,39,0,76.50666,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,.23746818,0,0,1,1,0,0,7.5937018,41.7,39.18,57.16,56.15,5,1,1,0,0,9,12,3,1,468.5,707710.88,404315.56,270391,0,2958.458 -12199,15039,27153,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1114.3654,0,2,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.67,36.64,-9,-9,1.666666666666667,3,4,1,1,0,8,1,0,127,-401843.91,0,0,0,963.7298 -12200,15040,27154,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4759312,8.4795389,0,0,0,-1100.3152,0,3,3,2019,14,2,39,50,1,2,0,12.036695,12.036695,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,3,9,4,1,322,-247578.44,-44645.848,0,0,1852.1902 -12201,15041,27155,27156,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,9.7571163,10.104868,0,34,-1,16.288971,0,2,2,2019,10,1,50,50,1,1,0,45.76424,45.76424,0,0,0,0,0,0,0,0,7.9009638,0,54.7,45.37,38.14,62.83,8.333333333333334,1,1,0,0,9,7,5,1,823,2328497.5,1220583.8,773339.63,0,10160.317 -12201,15041,27156,27155,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.5663042,8.6368818,0,34,1,-132.68327,0,2,2,2019,21,9,30,16,1,9,0,23.423185,23.423185,0,0,0,0,0,0,0,0,7.1874247,0,38.14,62.83,54.7,45.37,8.333333333333334,1,1,0,0,8,7,5,1,823,2328497.5,1220583.8,773339.63,0,10160.317 -12201,15042,27157,-9,27156,27155,1,0,22,0,0,0,2,2,-9,0,4,7.8432002,7.5521045,0,0,0,-991.86499,0,2,2,2019,15,3,20,42,1,3,1,14.00922,14.00922,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,545,447609.72,0,0,0,1236.7419 -12202,15043,27158,27160,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.763402,8.929512,0,13,1,-70.123688,0,2,2,2019,7,0,47,38,1,0,0,17.923325,17.923325,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,6,4,1,404.33334,470420.34,164424.91,272722.84,91546.109,2603.6958 -12202,15043,27159,-9,27160,27158,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1002.0365,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,4,1,404.33334,470420.34,164424.91,272722.84,91546.109,2603.6958 -12202,15043,27160,27158,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,0,0,0,13,-1,-78.459763,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,6,4,1,404.33334,470420.34,164424.91,272722.84,91546.109,2603.6958 -12203,15044,27161,-9,-9,-9,1,0,19,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1022.8719,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.43,56.37,-9,-9,5,1,1,0,0,1,11,1,0,874.5,163167.31,0,0,0,65.804375 -12203,15044,27162,-9,27161,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.32806,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,874.5,163167.31,0,0,0,65.804375 -12204,15045,27163,-9,27164,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0369,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,2,0,1397.5,360455.88,49465.625,316398.75,51281.117,1401.7317 -12204,15045,27164,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,6.818769,7.3400793,5.9638038,0,0,-973.68292,0,2,2,2019,13,1,26,18,1,1,0,5.6845999,5.6845999,0,0,0,0,0,1,1,0,6.1342001,0,35.57,48.77,-9,-9,1.666666666666667,1,1,0,0,9,10,2,0,1397.5,360455.88,49465.625,316398.75,51281.117,1401.7317 -12205,15046,27165,27166,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.3854256,8.7037258,0,10,-6,1.9873536,-9,-9,-9,2019,12,0,40,0,1,0,0,15.099413,15.099413,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.96,53.17,10,1,1,0,0,11,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 -12205,15046,27166,27165,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.3402176,8.1017685,0,10,6,120.33477,0,-9,-9,2019,12,0,37,37,1,0,0,12.472886,12.472886,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,11,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 -12205,15046,27167,-9,27165,27166,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.815,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 -12205,15046,27168,-9,27165,27166,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1745,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,814,230809.98,108372.4,176628.52,92947.438,3909.2134 -12206,15047,27169,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,4,0,6.970397,7.6206646,0,0,-920.08459,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,4.6740208,0,0,1,1,0,0,7.3639431,48.92,42.05,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,529,682703.25,149841.31,158487.31,0,1711.6705 -12207,15048,27170,-9,27173,27174,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-871.01031,-9,1,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 -12207,15048,27171,-9,27173,27174,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.5094,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 -12207,15048,27172,-9,27173,27174,1,0,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.7212,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 -12207,15048,27173,27174,-9,-9,1,0,32,2,3,0,1,1,-9,1,3,5.0616288,5.559566,0,8,0,-41.535572,0,2,3,2019,4,0,2,2,1,0,0,11.221084,11.221084,0,0,0,0,14.5,1,1,0,0,0,59.88,48.2,51.73,43.66,6.666666666666667,1,1,0,0,8,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 -12207,15048,27174,27173,-9,-9,1,1,32,2,3,0,3,3,-9,1,4,7.3477592,7.08886,0,8,0,-19.114101,0,3,2,2019,10,1,37,38,1,1,0,5.0911417,5.0911417,0,0,0,0,0,1,1,0,0,0,51.73,43.66,59.88,48.2,6.666666666666667,1,1,0,0,9,13,2,0,469,77117.703,26431.254,107116.88,72307.773,2467.8987 -12208,15049,27175,27177,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.7129679,8.7564459,0,6,-2,-21.950865,0,2,3,2019,15,3,40,37,1,3,0,19.18742,19.18742,0,0,0,0,0,1,1,0,0,0,33.47,61.48,50,55,3.333333333333333,1,1,0,0,8,13,5,1,606.33331,449524.53,-7139.311,308584.84,111333.29,4667.7622 -12208,15049,27176,-9,27177,27175,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.47894,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,606.33331,449524.53,-7139.311,308584.84,111333.29,4667.7622 -12208,15049,27177,27175,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.297266,8.7007475,0,6,2,37.274017,0,-9,-9,2019,10,0,37,37,1,1,0,15.060896,15.060896,0,0,0,0,0,1,1,0,6.756659,0,50,55,33.47,61.48,8,1,1,0,0,1,13,5,1,606.33331,449524.53,-7139.311,308584.84,111333.29,4667.7622 -12209,15050,27178,27180,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,7.7897525,7.9920878,0,25,9,74.006721,0,-9,-9,2019,6,0,40,40,1,0,0,6.4886847,6.4886847,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.44,41.45,8.333333333333334,2,3,0,0,12,6,3,1,368.33334,228601.63,37909.469,0,0,2203.4307 -12209,15050,27179,-9,27180,27178,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.72424,-9,1,3,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.26,62.83,-9,-9,3.333333333333333,2,3,0,0,0,6,3,1,368.33334,228601.63,37909.469,0,0,2203.4307 -12209,15050,27180,27178,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.5787911,6.1505198,0,25,0,39.388233,0,2,2,2019,7,0,8,20,1,0,0,6.2849784,6.2849784,0,0,0,0,0,1,1,0,0,0,57.44,41.45,60.29,52.11,8.333333333333334,2,3,0,0,5,6,3,1,368.33334,228601.63,37909.469,0,0,2203.4307 -12209,15051,27181,-9,27180,27178,1,0,23,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1030.3324,-9,1,3,2019,25,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,46.39,44.88,-9,-9,3.333333333333333,2,3,0,0,4,6,1,1,571,0,0,0,0,788.47565 -12210,15052,27182,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.8586578,9.8446016,0,0,0,-856.49847,0,2,2,2019,6,0,45,45,1,0,0,40.255367,40.255367,0,0,0,0,0,0,0,0,3.1363792,0,57.16,56.15,-9,-9,10,1,1,0,0,7,7,5,1,207,687244.06,474904.72,223291.25,164918.64,5936.8057 -12211,15053,27183,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-826.99469,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,41.45,24.42,-9,-9,5,3,4,0,1,0,8,1,0,1870,-305496.91,0,0,0,1871.2877 -12212,15054,27184,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.0224762,7.9652624,0,0,-1018.9805,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5831265,7.5563574,54.38,51.94,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,771,1143365.4,462640.97,224702.58,0,1423.6913 -12213,15055,27185,-9,27186,27187,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.0918,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,726.66669,246081.86,-15746.377,339197.84,121376.2,3710.6218 -12213,15055,27186,27187,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,8.8278265,8.4050627,0,7,0,104.86839,0,-9,-9,2019,7,0,42,42,1,0,0,18.429556,18.429556,0,0,0,0,0,1,1,0,0,0,49.04,55.86,60.12,54.8,8.333333333333334,1,1,0,0,7,2,5,1,726.66669,246081.86,-15746.377,339197.84,121376.2,3710.6218 -12213,15055,27187,27186,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.1025352,8.3519688,0,7,0,-6.7732973,0,2,2,2019,6,0,30,37,1,0,0,13.970002,13.970002,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.04,55.86,8.333333333333334,1,1,0,0,8,2,5,1,726.66669,246081.86,-15746.377,339197.84,121376.2,3710.6218 -12214,15056,27188,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,6.6549592,6.7048402,0,0,-1077.6604,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6258812,6.2358289,46.85,60.98,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,758,566893.38,56990.313,0,0,2183.6941 -12215,15057,27189,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,2,0,0,0,0,0,-917.88678,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7337666,0,66.19,25.47,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,64,294787.31,0,0,0,859.51416 -12216,15058,27190,27191,-9,-9,1,0,53,0,1,0,3,3,-9,0,3,0,0,0,40,-2,102.92619,0,3,3,2019,17,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,.92898864,0,34.39,40.86,33.25,49.63,6.666666666666667,2,3,0,0,0,6,3,1,1548,88898.578,53794.383,132800.19,61525.711,2723.2363 -12216,15058,27191,27190,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,8.1580725,8.1791496,0,29,2,20.991592,-9,3,3,2019,12,1,30,0,1,1,0,12.516752,12.516752,0,0,0,0,0,1,1,0,0,0,33.25,49.63,34.39,40.86,6.666666666666667,2,3,0,0,12,6,3,1,1548,88898.578,53794.383,132800.19,61525.711,2723.2363 -12216,15059,27192,-9,27190,27191,1,1,26,0,1,0,2,2,-9,0,3,7.9170246,8.2309895,6.2167625,0,0,-1078.4324,-9,3,3,2019,9,0,36,0,1,0,1,9.1192884,9.1192884,0,0,0,0,0,1,1,0,6.1271076,0,43.47,50.15,-9,-9,6.666666666666667,2,3,0,0,2,6,4,1,746,-129514.39,123355.55,0,0,1389.0013 -12216,15060,27193,-9,27190,27191,1,1,19,0,1,0,2,2,-9,0,4,6.4386206,6.3952794,0,0,0,-922.22565,0,3,3,2019,9,0,42,0,1,0,1,1.7771176,1.7771176,0,0,0,0,0,1,1,0,.022286622,0,53.54,52.35,-9,-9,6.666666666666667,2,3,0,0,2,6,2,1,664,265784,43345.742,0,0,320.09729 -12216,15061,27194,-9,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1017.4414,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,51,-9,-9,7,2,3,1,0,11,6,1,1,696,0,0,0,0,231.71863 -12217,15062,27195,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1062.416,0,2,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.74,42.72,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,286,-97381.547,82972.891,0,0,1069.8784 -12218,15063,27196,27199,-9,-9,1,0,33,1,3,0,2,2,-9,1,3,8.1597481,8.0995827,0,6,-1,-97.062286,0,3,3,2019,25,11,26,29,1,11,0,14.265052,14.265052,0,0,0,0,7,1,1,0,0,0,16.85,54.53,43.14,61.33,6.666666666666667,1,1,0,0,7,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 -12218,15063,27197,-9,27196,27199,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.24634,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 -12218,15063,27198,-9,27196,27199,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.90302,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 -12218,15063,27199,27196,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.8216248,8.4313564,0,6,1,48.96468,0,-9,-9,2019,11,0,57,50,1,0,0,11.512084,11.512084,0,0,0,0,7,1,1,0,0,0,43.14,61.33,16.85,54.53,6.666666666666667,4,1,0,0,7,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 -12218,15063,27200,-9,27196,27199,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.11774,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1633.2,42984.078,86594.188,138683.98,106924.65,4115.8647 -12219,15064,27201,-9,-9,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-979.47882,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.16902028,0,34.36,54.29,-9,-9,8.333333333333334,1,1,0,0,6,9,2,0,828,-369630.56,0,0,0,474.48221 -12220,15065,27202,27203,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.1774063,7.098114,0,8,3,45.84454,0,3,3,2019,12,0,17,15,1,0,0,6.2906375,6.2906375,0,0,0,0,0,0,0,0,0,0,46.85,51.26,40.53,55.55,6.666666666666667,2,3,0,0,13,8,2,1,1328,44459.531,-82671.531,0,0,513.41461 -12220,15065,27203,27202,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,31,-3,-37.04351,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.53,55.55,46.85,51.26,5,2,3,1,0,10,8,2,1,1328,44459.531,-82671.531,0,0,513.41461 -12220,15066,27204,-9,27202,27203,1,1,30,0,0,0,1,1,-9,0,3,8.1677275,8.1513233,0,0,0,-1104.5559,0,3,3,2019,12,0,41,40,1,0,1,10.150096,10.150096,0,0,0,0,0,0,0,0,2.6656976,0,49.04,55.86,-9,-9,6.666666666666667,2,3,0,0,4,8,4,1,168,296096.94,0,0,0,1507.5359 -12221,15067,27205,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.7527328,7.9741039,0,0,0,-1042.8632,0,-9,-9,2019,11,0,43,38,1,0,0,7.1729088,7.1729088,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,6,2,4,1,346,-108895.17,0,0,0,1513.1194 -12222,15068,27206,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.9274654,9.2236853,0,0,0,-956.81232,0,2,-9,2019,10,0,59,63,1,1,0,13.171989,13.171989,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,3,4,0,0,11,8,4,1,541,543681.69,155276.3,625980.5,329883.28,3410.8838 -12222,15068,27207,-9,27206,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3464,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,541,543681.69,155276.3,625980.5,329883.28,3410.8838 -12222,15068,27208,-9,27206,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.3287,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,541,543681.69,155276.3,625980.5,329883.28,3410.8838 -12222,15069,27209,-9,-9,27210,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.5898,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,1,541.5,0,0,0,0,505.63501 -12222,15069,27210,-9,27206,-9,1,1,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-925.68585,-9,1,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,4,8,1,1,541.5,0,0,0,0,505.63501 -12222,15070,27211,-9,27206,-9,1,0,18,0,2,0,2,2,1,0,4,0,0,0,0,0,-952.46985,-9,1,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,0,1,3,8,1,1,331,128126.18,0,0,0,0 -12223,15071,27212,27213,-9,-9,1,0,47,0,0,0,3,3,-9,1,4,6.7908711,7.0702105,0,23,0,75.321175,0,-9,-9,2019,7,1,16,16,1,1,0,8.0155506,8.0155506,0,0,0,0,0,1,1,0,0,0,46.86,45.61,58.15,52.91,6.666666666666667,1,1,0,0,11,7,4,0,288.5,620778.56,341221.31,438802,72948.703,2593.6475 -12223,15071,27213,27212,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.5954971,8.3368406,0,23,9,120.28733,0,3,2,2019,7,0,41,45,1,0,0,11.611994,11.611994,0,0,0,0,0,1,1,0,0,0,58.15,52.91,46.86,45.61,8.333333333333334,1,1,0,0,11,7,4,0,288.5,620778.56,341221.31,438802,72948.703,2593.6475 -12224,15072,27214,27215,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,47,-2,17.230452,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,11.457606,0,0,1,1,0,.26896235,0,39.94,22.24,55.2,44.8,6.666666666666667,1,1,0,0,0,13,3,0,820.5,972734.81,809945.69,267230.09,0,2953.5464 -12224,15072,27215,27214,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.9464784,8.1556845,47,2,-179.59167,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.3511746,8.085906,55.2,44.8,39.94,22.24,8.333333333333334,1,1,0,0,0,13,3,0,820.5,972734.81,809945.69,267230.09,0,2953.5464 -12225,15073,27216,-9,27217,27218,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.66766,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,589,583959.25,267005.75,447678.81,352826.53,4796.1221 -12225,15073,27217,27218,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.1072941,8.2779903,0,8,-1,-113.4113,0,2,1,2019,9,0,23,22,1,0,0,17.574326,17.574326,0,0,0,0,0,1,1,0,5.144033,0,54.69,57.47,48.71,51.81,8.333333333333334,1,1,0,0,9,11,5,1,589,583959.25,267005.75,447678.81,352826.53,4796.1221 -12225,15073,27218,27217,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.2115965,9.1619759,0,8,1,38.069775,0,1,1,2019,14,4,36,36,1,4,0,31.895237,31.895237,0,0,0,0,0,1,1,0,4.926302,0,48.71,51.81,54.69,57.47,8.333333333333334,1,1,0,0,10,11,5,1,589,583959.25,267005.75,447678.81,352826.53,4796.1221 -12226,15074,27219,27220,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.1069355,8.1156673,0,8,1,-77.307335,0,-9,-9,2019,9,0,37,43,1,0,0,9.3722677,9.3722677,0,0,0,0,0,0,0,0,0,0,46.67,55.57,60.02,56.42,8.333333333333334,1,1,0,0,12,7,5,1,128,842635.5,673374.56,294127.13,47680.563,4930.6768 -12226,15074,27220,27219,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,0,8.377244,7.9636149,8,-1,-136.05981,0,3,2,2019,5,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,8.4835758,7.8895044,60.02,56.42,46.67,55.57,8.333333333333334,1,1,0,0,11,7,5,1,128,842635.5,673374.56,294127.13,47680.563,4930.6768 -12227,15075,27221,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-980.02026,0,3,3,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,19.34,26.7,-9,-9,0,1,1,0,0,0,12,1,0,528,31125.365,0,0,0,1830.0721 -12227,15076,27222,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.31561,0,-9,-9,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,120,1,0,1,0,0,37,29,-9,-9,4,1,1,0,0,0,12,1,0,341,-200773.89,0,0,0,940.43982 -12228,15077,27223,27224,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.5740452,8.6417265,0,8,-3,-14.879534,0,2,3,2019,7,0,38,37,1,0,0,21.674255,21.674255,0,0,0,0,0,0,0,0,7.3434467,0,52,54.51,17.8,66.2,8.333333333333334,1,1,0,0,11,5,5,1,403,406619.69,46911.43,572997.5,378716.56,5586.9316 -12228,15077,27224,27223,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,9.0397091,9.0797577,0,8,3,-26.047274,0,-9,-9,2019,17,5,67,59,1,5,0,15.674679,15.674679,0,0,0,0,0,0,0,0,7.3071179,0,17.8,66.2,52,54.51,3.333333333333333,1,1,0,0,10,5,5,1,403,406619.69,46911.43,572997.5,378716.56,5586.9316 -12229,15078,27225,-9,27226,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1029.8281,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,262.33334,110533.03,156802.97,116944.66,87347.25,3025.7507 -12229,15078,27226,-9,-9,-9,1,0,45,0,2,0,1,1,-9,1,2,8.3823977,8.8663521,6.6238804,0,0,-924.61768,0,-9,-9,2019,11,0,37,37,1,0,0,11.89564,11.89564,0,0,0,0,0,1,1,0,0,7.0934839,39.39,37.66,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,262.33334,110533.03,156802.97,116944.66,87347.25,3025.7507 -12229,15078,27227,-9,27226,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1051.2843,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,4,4,1,262.33334,110533.03,156802.97,116944.66,87347.25,3025.7507 -12230,15079,27228,27229,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.1855879,7.995255,0,3,0,-55.36314,0,3,3,2019,6,0,37,37,1,0,0,9.7213306,9.7213306,0,0,0,0,0,0,0,0,1.1486406,0,50.52,47.59,57.16,56.15,3.333333333333333,1,1,0,0,11,11,4,0,473,865199.25,465859.38,171272.19,0,2474.8433 -12230,15079,27229,27228,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,7.9187012,7.6032138,0,3,0,-159.75755,0,3,3,2019,6,0,40,40,1,0,0,7.6023407,7.6023407,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.52,47.59,8.333333333333334,1,1,0,0,11,11,4,0,473,865199.25,465859.38,171272.19,0,2474.8433 -12231,15080,27230,-9,27231,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.0242,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,0,1109.5,500089.88,-29200.873,445896.41,144919.33,1544.7284 -12231,15080,27231,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,0,0,-842.44464,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,7,1,1,0,0,0,42.69,57.21,-9,-9,6.666666666666667,2,3,0,1,0,8,1,0,1109.5,500089.88,-29200.873,445896.41,144919.33,1544.7284 -12232,15081,27232,27233,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1305285,8.1869249,0,7,-10,-7.8748755,0,2,2,2019,12,0,48,48,1,0,0,7.8395238,7.8395238,0,0,0,0,0,0,0,0,.93179655,0,46.08,57.2,43.36,54.78,6.666666666666667,1,1,0,0,7,2,4,1,1193.5,99700.195,174864.84,125888.91,125892.41,2245.7344 -12232,15081,27233,27232,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.2634706,7.9873214,0,7,10,-48.19199,0,3,-9,2019,12,0,37,37,1,0,0,10.490342,10.490342,0,0,0,0,0,0,0,0,3.452785,0,43.36,54.78,46.08,57.2,5,1,1,0,0,7,2,4,1,1193.5,99700.195,174864.84,125888.91,125892.41,2245.7344 -12233,15082,27234,27235,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,0,0,10,-14,107.95041,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.3674297,0,51.73,58.82,46.5,58.26,6.666666666666667,1,1,0,0,1,7,2,1,751,553899.94,132579.69,504570.41,110327.34,2183.9614 -12233,15082,27235,27234,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,7.1821933,6.8986731,0,10,14,72.205574,0,-9,-9,2019,11,0,50,40,1,0,0,3.8613882,3.8613882,0,0,0,0,0,1,1,0,7.4859138,0,46.5,58.26,51.73,58.82,6.666666666666667,1,1,0,0,13,7,2,1,751,553899.94,132579.69,504570.41,110327.34,2183.9614 -12233,15082,27236,-9,27234,27235,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-960.14056,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,10,1,1,0,0,1,7,2,1,751,553899.94,132579.69,504570.41,110327.34,2183.9614 -12233,15083,27237,-9,27234,27235,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-954.39935,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.32691282,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,7,1,1,925,-167618.84,0,0,0,-75.178627 -12234,15084,27238,-9,-9,-9,1,1,18,0,0,1,2,0,-9,0,5,0,4.3599277,3.9092147,0,0,-1025.2291,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.2213416,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,2,0,602,-75358.844,0,0,0,258.32971 -12235,15085,27239,27240,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,9.293622,9.2921019,0,1,-1,6.4604359,-9,-9,-9,2019,10,3,55,0,1,3,0,20.365919,20.365919,0,0,0,0,0,0,0,0,7.3409896,0,59.31,41.58,41.47,58.08,3.333333333333333,3,4,0,0,2,8,5,1,2145,145432.8,79917.898,620387.31,392600.56,7286.5381 -12235,15085,27240,27239,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.847435,8.6970453,0,1,1,126.55123,0,1,2,2019,20,8,42,43,1,8,0,23.323652,23.323652,0,0,0,0,0,0,0,0,0,0,41.47,58.08,59.31,41.58,8.333333333333334,4,2,0,0,7,8,5,1,2145,145432.8,79917.898,620387.31,392600.56,7286.5381 -12236,15086,27241,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.0459118,8.2447443,0,0,0,-1022.7363,0,-9,-9,2019,12,0,30,40,1,0,0,12.439615,12.439615,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,5,3,4,0,0,4,8,3,0,902,-98140.813,141727.14,200796.23,235851.17,2493.0442 -12237,15087,27242,27243,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,9,-11,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53.23,42.9,54.28,30.27,10,1,1,0,0,0,4,1,0,533.5,93774.523,116368.21,0,0,1477.0707 -12237,15087,27243,27242,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,28,11,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,86.667679,0,0,1,0,1,0,0,54.28,30.27,53.23,42.9,8.333333333333334,1,1,0,0,0,4,1,0,533.5,93774.523,116368.21,0,0,1477.0707 -12237,15088,27244,-9,27243,27242,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-896.58972,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,3.8667412,0,38.02,58.85,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,346,0,0,0,0,102.08067 -12238,15089,27245,27246,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.1082754,7.2907195,0,41,-5,-88.082382,-9,3,3,2019,21,8,17,0,1,8,0,7.0932879,7.0932879,0,0,0,0,0,1,1,0,0,0,34.05,45.83,55.36,46.37,5,1,1,0,0,9,2,3,1,912,1028419,701184.56,212005.86,0,2184.4983 -12238,15089,27246,27245,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.6591134,7.8432951,41,5,80.718987,-9,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,7.5345907,55.36,46.37,34.05,45.83,8.333333333333334,1,1,0,0,9,2,3,1,912,1028419,701184.56,212005.86,0,2184.4983 -12239,15090,27247,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.2069035,7.7492003,0,0,0,-960.23224,0,2,2,2019,8,0,40,40,1,0,0,9.7290869,9.7290869,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,1,4,1,1437,-6071.9302,121036.25,0,0,1383.7018 -12240,15091,27248,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-881.51343,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,5,3,4,0,1,0,8,1,0,605,0,0,0,0,1442.1882 -12241,15092,27249,27250,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8328953,8.5113201,0,43,0,-9.8485527,0,3,2,2019,8,0,36,36,1,0,0,15.494663,15.494663,0,0,0,0,0,0,0,0,0,0,59.21,43.05,47.63,44.65,8.333333333333334,1,1,0,0,12,8,4,1,617.5,2243145,1328155.3,759777.88,0,2374.3477 -12241,15092,27250,27249,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,43,0,69.51252,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,47.63,44.65,59.21,43.05,6.666666666666667,1,1,0,0,9,8,4,1,617.5,2243145,1328155.3,759777.88,0,2374.3477 -12241,15093,27251,-9,27250,27249,1,0,33,0,0,0,2,2,-9,0,2,8.2306252,8.4149961,0,0,0,-1086.0928,0,2,2,2019,8,0,65,52,1,0,1,7.6575747,7.6575747,0,0,0,0,7,0,0,0,0,0,62.39,28.22,-9,-9,6.666666666666667,1,1,0,1,11,8,4,1,190,108253.06,64616.789,214722.03,60810.445,1759.1309 -12241,15094,27252,-9,27250,27249,1,1,41,0,0,0,2,2,-9,0,2,9.3356323,9.0092897,0,0,0,-984.0874,0,2,2,2019,11,1,52,62,1,1,1,20.708086,20.708086,0,0,0,0,0,0,0,0,0,0,40.06,46.88,-9,-9,5,1,1,0,0,10,8,5,1,427,391598.16,80135.047,350096.72,15732.23,3421.0547 -12242,15095,27253,27254,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.91816,8.0330753,4.5947161,43,3,-73.220833,0,2,3,2019,5,0,35,40,1,0,0,7.576334,7.576334,0,0,0,0,0,1,1,0,7.834043,4.8270383,54.79,55.86,53.3,55.06,8.333333333333334,1,1,0,0,12,2,4,1,328,646747.63,353962.91,103779.3,0,3228.2124 -12242,15095,27254,27253,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.2122669,7.2999349,5.3311186,43,-3,35.370167,0,3,3,2019,12,0,9,9,1,0,0,15.536835,15.536835,0,0,0,0,2,1,1,0,3.0900793,5.3006287,53.3,55.06,54.79,55.86,8.333333333333334,1,1,0,0,12,2,4,1,328,646747.63,353962.91,103779.3,0,3228.2124 -12242,15096,27255,-9,27254,27253,1,1,36,0,0,0,2,2,-9,0,5,6.9857144,6.8310041,0,0,0,-1060.698,0,1,2,2019,8,0,20,19,1,0,1,5.5870438,5.5870438,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,2,2,1,1354,78274.648,-70353.617,0,0,727.28693 -12243,15097,27256,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.5140224,7.4754915,0,0,-954.39996,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.379499,50.99,44.07,-9,-9,10,1,1,0,0,0,10,3,1,137,331584.44,108315.73,183627.14,0,1100.1703 -12244,15098,27257,27258,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.7548089,8.0408239,0,4,1,59.54982,0,-9,-9,2019,8,0,37,37,1,0,0,7.5210924,7.5210924,0,0,0,0,0,0,0,0,2.5319364,0,44.25,56.64,49.25,61.25,8.333333333333334,1,1,0,0,5,1,5,1,565.5,760385.38,173984.78,103984.42,63051.457,3064.6177 -12244,15098,27258,27257,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.1164389,8.3867769,0,4,-1,-76.720917,0,2,-9,2019,12,3,40,44,1,3,0,12.722249,12.722249,0,0,0,0,0,0,0,0,.95130152,0,49.25,61.25,44.25,56.64,8.333333333333334,1,1,0,0,6,1,5,1,565.5,760385.38,173984.78,103984.42,63051.457,3064.6177 -12245,15099,27259,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.7366028,8.9467678,0,5,-7,-49.112476,0,-9,-9,2019,9,1,51,53,1,1,0,21.301746,21.301746,0,0,0,0,0,0,0,0,4.0972891,0,47.15,56.66,54.18,50.75,8.333333333333334,1,1,0,0,8,12,5,1,463,-69175.016,9910.4199,104994.35,88722.172,2123.0703 -12245,15100,27260,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.4177904,8.1985064,0,0,0,-927.93567,-9,-9,-9,2019,0,0,40,0,1,0,0,10.091333,10.091333,0,0,0,0,0,0,0,0,6.9829812,0,59.43,58.05,-9,-9,10,2,3,0,0,1,12,4,1,625,129654.78,68987.07,0,0,2068.582 -12245,15101,27261,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,9.1576328,9.0435209,0,5,7,103.00039,0,1,1,2019,7,0,58,55,1,0,0,19.707649,19.707649,0,0,0,0,0,0,0,0,7.0488029,0,54.18,50.75,47.15,56.66,8.333333333333334,1,1,0,0,8,12,5,1,177,981947.06,710759.94,355154.63,-9358.0947,3517.3403 -12246,15102,27262,27263,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.5631123,7.998373,7,5,-69.359978,0,2,2,2019,9,0,0,37,4,0,0,0,0,1,0,1.8714037,0,2,0,0,0,0,7.8824506,60.71,37.26,51.83,57.2,8.333333333333334,1,1,0,0,8,13,5,1,419.5,1870264.4,1340071.4,294620.66,0,3949.3735 -12246,15102,27263,27262,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.8480067,8.6943159,7.7913589,7,-5,-1.2621193,0,2,2,2019,14,4,20,37,1,4,0,15.125182,15.125182,0,0,0,0,74.5,0,0,0,8.0899057,7.8221011,51.83,57.2,60.71,37.26,8.333333333333334,1,1,0,0,8,13,5,1,419.5,1870264.4,1340071.4,294620.66,0,3949.3735 -12246,15103,27264,-9,27263,27262,1,1,25,0,0,0,1,1,-9,0,5,8.4021397,8.2362366,0,0,0,-1007.8249,0,2,2,2019,9,1,38,28,1,1,1,10.960502,10.960502,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1517,-142500.41,6883.2476,0,0,1722.0642 -12247,15104,27265,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,6.726716,6.988791,0,0,0,-1083.395,0,3,3,2019,11,0,16,18,1,0,0,6.5773621,6.5773621,0,0,0,0,0,1,1,0,0,0,38.61,55.1,-9,-9,3.333333333333333,1,1,0,0,4,4,2,0,305,-27694.406,0,0,0,1269.4648 -12247,15104,27266,-9,27265,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.87067,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,305,-27694.406,0,0,0,1269.4648 -12248,15105,27267,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-892.70691,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,4,2,0,0,0,8,1,0,1592,-219768.47,0,0,0,1484.9624 -12249,15106,27268,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,5.4041419,5.5093417,0,0,-1108.4261,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.3916926,61.04,42.11,-9,-9,10,1,1,0,0,0,12,2,0,701,332398.97,85080.359,100327.91,0,976.81836 -12250,15107,27269,27270,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,6,-6,73.290787,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0106146,0,51.66,54.88,53.3,36.66,8.333333333333334,1,1,0,0,0,2,2,1,358.5,162871.64,0,223446.31,0,1802.2577 -12250,15107,27270,27269,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,4.1627102,4.3046613,6,6,48.122055,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9434061,4.0993209,53.3,36.66,51.66,54.88,8.333333333333334,1,1,0,0,0,2,2,1,358.5,162871.64,0,223446.31,0,1802.2577 -12251,15108,27271,27272,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,6.9830756,7.0372319,0,31,-16,-131.53918,0,-9,-9,2019,20,8,15,15,1,8,0,8.6150513,8.6150513,0,0,0,0,14.5,1,1,0,0,0,48.45,36.23,47.59,17.43,5,1,1,0,0,12,7,2,0,121,682157.69,0,423303.34,0,1997.2939 -12251,15108,27272,27271,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,31,16,-164.01602,0,3,3,2019,13,5,0,0,4,5,0,0,0,1,0,36.31459,0,2,1,1,0,0,0,47.59,17.43,48.45,36.23,10,1,1,0,1,0,7,2,0,121,682157.69,0,423303.34,0,1997.2939 -12252,15109,27273,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.2822003,7.5332928,0,5,-6,-53.108425,0,2,2,2019,10,0,35,40,1,0,0,7.5491772,7.5491772,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.98,50.32,8.333333333333334,1,1,0,0,8,2,3,0,244,-69723.852,-23599.684,0,0,1101.869 -12252,15110,27274,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,0,0,5,6,58.35083,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,32.98,50.32,57.16,56.15,10,1,1,0,0,0,2,3,0,1096,33134.125,0,0,0,0 -12253,15111,27275,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.5141172,8.5800495,0,0,0,-966.40808,0,2,3,2019,7,0,60,70,1,0,0,11.351134,11.351134,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,305,48513.555,-53313.336,81691.242,131726.36,2475.8596 -12254,15112,27276,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,6.1995759,6.3655486,0,0,-884.1673,-9,-9,1,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.7806618,6.2444711,27.71,29.95,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,621,344169.66,75907.711,94760.172,0,688.34009 -12255,15113,27277,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,7.8637681,7.9902725,0,0,0,-1036.9354,0,-9,-9,2019,11,1,56,51,1,1,0,5.2169824,5.2169824,0,0,0,0,0,0,0,0,5.108882,0,51,60,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,1078,19195.154,-81918.914,0,0,1039.9713 -12256,15114,27278,-9,27280,27281,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.1354,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 -12256,15114,27279,-9,27280,27281,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1027.129,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 -12256,15114,27280,27281,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,5.8801003,6.133882,0,7,-10,-13.490849,0,3,2,2019,11,0,18,21,1,0,0,2.5300107,2.5300107,0,0,0,0,0,1,1,0,0,0,52.88,56.68,51.92,51.53,6.666666666666667,1,1,0,0,12,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 -12256,15114,27281,27280,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.1971245,8.2588253,0,7,10,76.495613,0,-9,-9,2019,12,0,54,55,1,0,0,6.1216254,6.1216254,0,0,0,0,0,1,1,0,0,0,51.92,51.53,52.88,56.68,8.333333333333334,1,1,0,0,13,9,3,1,714,282864.5,91390.578,260527.97,113261.33,1745.7729 -12257,15115,27282,-9,-9,-9,1,0,39,0,1,0,3,3,-9,1,2,0,0,0,0,0,-983.28418,0,-9,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.75,38.86,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,1042,0,0,0,0,1304.3478 -12258,15116,27283,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.3610029,4.8674707,0,0,-1008.5841,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,13.816424,0,0,1,1,0,0,4.0888686,65.17,10.88,-9,-9,5,1,1,0,0,0,12,2,1,824,316480.97,-13115.48,0,0,702.04767 -12259,15117,27284,-9,27285,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.46466,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,10,2,0,284,0,0,0,0,1398.3459 -12259,15117,27285,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,6.4754024,7.0342784,5.4501586,0,0,-1113.8658,0,2,-9,2019,13,1,12,16,1,1,0,6.8212795,6.8212795,0,0,0,0,0,1,1,0,5.5529151,0,35.47,57.79,-9,-9,5,1,1,0,1,1,10,2,0,284,0,0,0,0,1398.3459 -12260,15118,27286,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,5,0,6.1755104,5.7633882,0,0,-1004.6378,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.8518839,0,0,1,1,0,1.2591461,5.8252611,54.87,51.92,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,1154,109325.69,-103861.99,0,0,786.87299 -12261,15119,27287,27289,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.7688332,7.8746753,0,6,-3,30.054766,0,2,1,2019,13,4,23,23,1,4,0,11.820077,11.820077,0,0,0,0,0,1,1,0,1.9715494,0,49.61,54.24,43.42,62.33,8.333333333333334,1,1,0,0,7,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 -12261,15119,27288,-9,27287,27289,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.16522,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 -12261,15119,27289,27287,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6630888,8.8652334,0,6,3,-2.3649421,0,2,3,2019,21,9,42,49,1,9,0,12.931417,12.931417,0,0,0,0,0,1,1,0,4.3571849,0,43.42,62.33,49.61,54.24,6.666666666666667,1,1,0,0,7,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 -12261,15119,27290,-9,27287,27289,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.8593,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1086.75,250142,132485.7,267501,123757.41,3184.2925 -12262,15120,27291,-9,-9,27292,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1046.0697,-9,-9,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,23.02,60.94,-9,-9,10,1,1,0,0,0,4,1,0,682,176445,0,0,0,0 -12262,15121,27292,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1103.8904,0,-9,-9,2019,6,1,0,0,4,1,0,0,0,1,0,9.3121338,0,0,1,1,0,0,0,50.49,42.96,-9,-9,10,1,1,0,0,0,4,1,0,577,-153940.25,0,0,0,1535.0502 -12263,15122,27293,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3857789,7.3542762,5.5860639,0,0,-1052.7822,0,3,3,2019,10,0,20,28,1,1,0,7.9828391,7.9828391,0,0,0,0,0,0,0,0,0,5.6472025,52,52,-9,-9,8,1,1,0,0,6,12,3,1,345,-211736.55,1216.5465,0,0,717.9184 -12264,15123,27294,27295,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.2082915,7.4897308,59,5,18.135359,0,3,3,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.5743656,52.31,38.31,47.8,47.66,5,1,1,0,0,0,2,2,1,445,185056.58,58385.551,163336.61,0,2251.0396 -12264,15123,27295,27294,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,4.4093909,4.2244644,59,-5,-66.2201,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,7.2701225,0,42,1,1,0,0,4.2869039,47.8,47.66,52.31,38.31,8.333333333333334,1,1,0,0,0,2,2,1,445,185056.58,58385.551,163336.61,0,2251.0396 -12265,15124,27296,27297,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,1,-2,50.736584,-9,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.5748172,0,46.56,50.26,52.99,51.28,8.333333333333334,2,3,0,0,10,7,2,1,415,1103490.6,534790.75,406872.91,0,2359.5806 -12265,15124,27297,27296,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.1877546,7.1745024,31,2,136.34624,-9,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.0089493,7.4853177,52.99,51.28,46.56,50.26,8.333333333333334,2,3,0,0,11,7,2,1,415,1103490.6,534790.75,406872.91,0,2359.5806 -12265,15125,27298,-9,27296,27297,1,1,32,0,0,0,1,1,-9,0,3,8.9862585,8.9121284,0,0,0,-1044.1527,-9,2,1,2019,12,0,45,0,1,0,0,19.797508,19.797508,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,2,3,0,0,5,7,5,1,329,272004.69,-52803.359,0,0,2435.6594 -12266,15126,27299,-9,27301,27302,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.25977,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 -12266,15126,27300,-9,27301,27302,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1054.0482,-9,1,3,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 -12266,15126,27301,27302,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.8992939,7.9201035,0,26,1,1.1681117,0,3,2,2019,7,1,20,20,1,1,0,16.958195,16.958195,0,0,0,0,0,0,0,0,6.8683972,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 -12266,15126,27302,27301,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.1462078,9.1393919,0,6,-1,-17.981312,-9,-9,-9,2019,9,0,50,0,1,1,0,17.857199,17.857199,0,0,0,0,0,0,0,0,0,0,53,55,54.2,57.49,8,1,1,0,0,1,7,5,1,961.25,149015.31,117784.52,256604.66,102768.05,4718.166 -12266,15127,27303,-9,27301,27302,1,0,18,0,2,0,2,2,1,0,4,6.3909698,5.9125319,0,0,0,-920.65753,-9,2,2,2019,12,1,10,0,1,1,1,5.7812152,5.7812152,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,2453,-122370.89,-16551.105,0,0,378.13934 -12267,15128,27304,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1046.7698,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,2.7682357,0,0,1,1,0,0,0,49.29,49.06,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,287,592094.75,0,144509.7,0,685.1134 -12268,15129,27305,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-881.07172,0,-9,-9,2019,17,4,0,0,4,4,0,0,0,1,0,35.361012,0,0,1,1,0,1.0721129,0,56.19,5.98,-9,-9,10,1,1,0,0,0,5,1,0,1278,165000.58,0,69586.461,0,2001.4662 -12269,15130,27306,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,8.2118635,8.2127142,0,0,-873.22919,0,2,1,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,3.5646648,8.4952087,44.13,27.38,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,2293,1024100.7,256350.38,266121.28,0,2451.0388 -12270,15131,27307,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,7.3077846,7.4801674,0,0,0,-1052.0753,-9,1,2,2019,30,12,60,0,1,12,0,2.9514546,2.9514546,0,0,0,0,0,0,0,0,0,0,15.97,64.31,-9,-9,3.333333333333333,1,1,0,0,8,4,3,0,381,18812.254,0,0,0,1275.1459 -12271,15132,27308,27309,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.6265364,6.8457103,50,-1,-3.6844101,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4958243,6.6758685,55.11,47.63,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,203,2105246.5,566071.13,1003925.1,0,3690.4316 -12271,15132,27309,27308,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.95503,8.5676146,50,1,15.472006,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5128446,8.5762358,57.16,56.15,55.11,47.63,8.333333333333334,1,1,0,0,4,9,4,1,203,2105246.5,566071.13,1003925.1,0,3690.4316 -12272,15133,27310,27311,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.2914448,7.9791856,0,29,0,-147.43967,0,2,2,2019,6,0,38,40,1,0,0,9.4293184,9.4293184,0,0,0,0,2,1,1,0,2.6192374,0,51.77,58.57,58.15,52.91,8.333333333333334,1,1,0,0,11,2,5,1,2585.5,308743.78,153229.75,241506.41,132385.11,3336.8311 -12272,15133,27311,27310,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.6122618,9.0477571,0,29,0,75.989738,0,2,2,2019,8,1,46,48,1,1,0,16.540287,16.540287,0,0,0,0,2,1,1,0,2.0488477,0,58.15,52.91,51.77,58.57,8.333333333333334,1,1,0,0,11,2,5,1,2585.5,308743.78,153229.75,241506.41,132385.11,3336.8311 -12272,15134,27312,-9,27310,27311,1,1,23,0,0,0,1,1,-9,0,5,0,6.7134914,6.3351269,0,0,-1053.9943,0,1,1,2019,14,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,7.0118508,0,47.87,57.73,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,180,191273.38,0,0,0,280.40085 -12272,15135,27313,-9,27310,27311,1,0,18,0,0,1,2,0,0,0,4,0,4.9549851,5.2261386,0,0,-1081.4517,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.2319698,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,590,-181164.09,0,0,0,507.65817 -12273,15136,27314,27315,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.8927283,7.7693133,0,7,2,42.727901,0,3,3,2019,12,1,38,40,1,1,0,8.058507,8.058507,0,0,0,0,0,0,0,0,3.0655899,0,58.14,42.54,52,54.51,8.333333333333334,1,1,0,0,8,6,4,1,716.5,-117174.98,23004.16,119275.95,76192,2461.0044 -12273,15136,27315,27314,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.7424746,7.6497421,0,7,-2,71.132309,0,3,3,2019,8,0,20,20,1,0,0,11.189351,11.189351,0,0,0,0,0,0,0,0,0,0,52,54.51,58.14,42.54,5,1,1,0,0,8,6,4,1,716.5,-117174.98,23004.16,119275.95,76192,2461.0044 -12274,15137,27316,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.8696179,7.7960744,0,0,-921.40729,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2946072,7.7472649,57.06,57.76,-9,-9,10,1,1,0,0,11,10,3,1,4591,681831.25,311538.22,178809.56,0,1752.1646 -12275,15138,27317,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,6.2785115,6.2806649,0,0,-910.67407,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0589099,62.51,44.7,-9,-9,10,1,1,0,0,0,9,2,0,1047,287366.25,-82156.523,316149.38,0,1778.3011 -12276,15139,27318,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.4653392,7.7143965,0,0,-1145.8472,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,7.4778996,38.42,51.05,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1074,984024.19,601115.69,0,0,1407.484 -12277,15140,27319,-9,27320,27322,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7554,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 -12277,15140,27320,27322,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,9.0026293,9.3036537,0,6,-5,-77.209717,0,2,3,2019,12,2,50,50,1,2,0,20.331736,20.331736,0,0,0,0,0,1,1,0,0,0,47.66,52.33,57.16,56.15,8.333333333333334,1,1,0,0,8,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 -12277,15140,27321,-9,27320,27322,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.20123,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 -12277,15140,27322,27320,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,8.5834904,8.5768147,0,12,5,-26.911718,0,3,3,2019,10,0,40,40,1,0,0,14.722881,14.722881,0,0,0,0,0,1,1,0,7.3110428,0,57.16,56.15,47.66,52.33,1.666666666666667,1,1,0,0,8,7,5,1,1027,525022.88,415057.06,324362.38,192632,4814.5786 -12278,15141,27323,27324,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.5220718,8.4703903,0,8,-6,-1.0398146,0,-9,-9,2019,11,0,35,35,1,2,0,13.546607,13.546607,0,0,0,0,0,0,0,0,0,0,48,57,54.37,54.8,7,1,1,0,0,1,6,5,1,463,259174.97,59736.313,126900.15,82238.891,3243.0625 -12278,15141,27324,27323,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.4938231,8.8050661,0,10,6,-14.747429,0,2,1,2019,10,0,39,35,1,0,0,13.468392,13.468392,0,0,0,0,0,0,0,0,0,0,54.37,54.8,48,57,8.333333333333334,1,1,0,0,11,6,5,1,463,259174.97,59736.313,126900.15,82238.891,3243.0625 -12279,15142,27325,27326,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.2167692,8.4823179,0,7,-13,56.972439,0,-9,-9,2019,6,0,50,42,1,0,0,8.2533274,8.2533274,0,0,0,0,0,1,1,0,0,0,58.05,54.52,57.06,57.76,8.333333333333334,1,1,0,0,3,11,4,1,423.5,704864.19,715687.5,216956.38,70995.461,2851.4219 -12279,15142,27326,27325,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,7.7165098,7.6660199,6.4790173,7,13,-28.524981,0,3,3,2019,6,0,26,28,1,0,0,6.7136164,6.7136164,0,0,0,0,0,1,1,0,3.983129,6.3208237,57.06,57.76,58.05,54.52,8.333333333333334,1,1,0,0,8,11,4,1,423.5,704864.19,715687.5,216956.38,70995.461,2851.4219 -12280,15143,27327,-9,27333,27332,1,1,11,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1096.0594,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 -12280,15143,27328,-9,27333,27332,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1028.6963,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 -12280,15143,27329,-9,27333,27332,1,0,15,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1074.1371,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 -12280,15143,27330,-9,27333,27332,1,1,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-884.96503,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 -12280,15143,27331,-9,27333,27332,1,1,16,1,5,1,2,0,-9,0,4,0,0,0,0,0,-997.45313,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 -12280,15143,27332,27333,27334,-9,1,1,46,1,5,0,1,1,-9,0,4,8.6932325,8.6422329,0,25,5,38.702148,0,3,3,2019,13,1,35,40,1,1,0,16.289871,16.289871,0,0,0,0,7,1,1,0,0,0,36.01,50.99,49,55,8.333333333333334,2,3,0,0,9,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 -12280,15143,27333,27332,-9,-9,1,0,41,1,5,0,3,3,-9,0,4,0,0,0,25,-5,6.8097897,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,36.01,50.99,8,2,3,0,0,0,7,3,1,494.14285,942736.56,558924.44,459967.09,81213.055,2786.7324 -12280,15144,27334,-9,-9,-9,1,0,78,1,5,0,2,2,-9,0,3,0,0,0,0,0,-1073.2181,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,1,1,211,0,0,0,0,104.88135 -12280,15145,27335,-9,27333,27332,1,1,20,1,5,1,2,0,0,0,4,0,0,0,0,0,-958.55054,-9,3,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,7,1,1,124,-19845.002,0,0,0,0 -12280,15146,27336,-9,27333,27332,1,0,19,1,5,1,3,0,0,0,4,0,0,0,0,0,-1016.854,-9,3,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,1,417,-35984.668,0,0,0,0 -12281,15147,27337,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.3018398,7.3230786,0,0,-920.23206,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.6638556,7.4502659,43.24,49.48,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,513,589807.63,122341.34,361615.81,0,1120.0658 -12282,15148,27338,27339,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,6.8350983,7.623518,6.9924259,35,0,30.307196,0,3,3,2019,13,1,30,30,1,1,0,4.1743121,4.1743121,0,0,0,0,0,1,1,0,2.4324908,6.9860549,26.64,54.17,45.38,56.21,6.666666666666667,1,1,0,0,7,5,3,1,952.5,188071.53,153476.13,0,0,1569.6775 -12282,15148,27339,27338,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.5199914,6.4720178,0,35,0,-12.15572,0,3,2,2019,13,3,15,15,1,3,0,4.6791973,4.6791973,0,0,0,0,0,1,1,0,4.1653566,0,45.38,56.21,26.64,54.17,10,1,1,0,0,5,5,3,1,952.5,188071.53,153476.13,0,0,1569.6775 -12282,15149,27340,-9,27339,27338,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-924.3927,-9,2,3,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,18.2,67.27,-9,-9,3.333333333333333,1,1,0,0,0,5,1,1,184,-28204.221,0,0,0,0 -12283,15150,27341,27342,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.0814219,8.2072945,0,7,10,47.412991,0,2,2,2019,9,0,42,53,1,0,0,9.9429741,9.9429741,0,0,0,0,0,0,0,0,0,0,62.22,23.04,50.93,48.48,8.333333333333334,1,1,0,0,5,8,4,0,485,236395.5,187414.5,225941.3,63747.734,2287.0583 -12283,15150,27342,27341,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,7.9327512,8.3367033,0,7,-10,-21.5207,0,3,2,2019,13,2,36,36,1,2,0,7.8486767,7.8486767,0,0,0,0,0,0,0,0,0,0,50.93,48.48,62.22,23.04,6.666666666666667,3,4,0,0,6,8,4,0,485,236395.5,187414.5,225941.3,63747.734,2287.0583 -12284,15151,27343,27344,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,5.894434,6.0694437,0,47,-2,48.260735,0,3,3,2019,13,1,20,20,1,1,0,2.3856249,2.3856249,0,0,0,0,0,1,1,0,0,0,38.74,61.79,51,48,6.666666666666667,1,1,0,0,12,4,5,1,556.5,899887.88,242555.97,332275.13,0,3443.0632 -12284,15151,27344,27343,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.9581604,9.1036596,0,10,2,1.4515404,-9,3,2,2019,10,0,50,0,1,1,0,19.325741,19.325741,0,0,0,0,0,1,1,0,0,0,51,48,38.74,61.79,7,1,1,0,0,1,4,5,1,556.5,899887.88,242555.97,332275.13,0,3443.0632 -12285,15152,27345,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.6178288,7.4199572,0,0,0,-974.96399,0,2,2,2019,7,0,37,38,1,0,0,6.7998724,6.7998724,0,0,0,0,0,0,0,0,5.0966983,0,59.6,46.99,-9,-9,8.333333333333334,1,1,0,0,13,12,3,1,246,0,0,0,0,389.13794 -12286,15153,27346,27347,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.2874537,8.3312311,0,21,0,191.07132,0,2,2,2019,6,0,30,30,1,0,0,15.76716,15.76716,0,0,0,0,0,1,1,0,0,0,62.18,36.18,60.12,54.8,8.333333333333334,1,1,0,0,10,13,3,1,423.66666,586882.63,589973.38,177182,59985.891,1742.3177 -12286,15153,27347,27346,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,0,0,0,21,0,67.927872,0,3,2,2019,0,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,4.0568681,0,60.12,54.8,62.18,36.18,8.333333333333334,1,1,1,0,10,13,3,1,423.66666,586882.63,589973.38,177182,59985.891,1742.3177 -12286,15153,27348,-9,27346,27347,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-939.43311,-9,2,3,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,423.66666,586882.63,589973.38,177182,59985.891,1742.3177 -12287,15154,27349,27350,-9,-9,1,0,29,0,1,0,1,1,1,0,5,8.5978165,8.2163048,0,9,0,-30.468262,-9,-9,-9,2019,8,0,37,0,1,0,0,11.928975,11.928975,0,0,0,0,7,1,1,0,0,0,54.69,57.47,57.06,57.76,8.333333333333334,1,1,0,0,6,5,5,1,852,395373.81,137132.13,208680.27,121368.15,4038.2754 -12287,15154,27350,27349,-9,-9,1,1,38,0,1,0,2,2,-9,0,5,8.8791656,8.9580393,0,9,9,-21.260439,0,2,2,2019,6,0,43,45,1,0,0,13.998242,13.998242,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,10,5,5,1,852,395373.81,137132.13,208680.27,121368.15,4038.2754 -12287,15154,27351,-9,27349,27350,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.8708,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,852,395373.81,137132.13,208680.27,121368.15,4038.2754 -12288,15155,27352,27354,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.951582,9.1153927,4.4866381,15,1,-132.44453,0,2,1,2019,7,0,37,37,1,0,0,22.444559,22.444559,0,0,0,0,0,1,1,0,4.9233918,0,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,8,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 -12288,15155,27353,-9,27352,27354,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.57574,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 -12288,15155,27354,27352,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.9683008,8.8150406,0,15,-1,23.271025,0,1,2,2019,9,1,42,40,1,1,0,18.910933,18.910933,0,0,0,0,0,1,1,0,3.2074888,0,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,9,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 -12288,15155,27355,-9,27352,27354,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.9301,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,653.75,178660.06,160908.59,336253.88,240094.64,4365.3218 -12289,15156,27356,27357,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.0272455,8.1197815,6.2171321,2,0,36.470772,0,-9,-9,2019,22,10,35,42,1,10,0,10.719286,10.719286,0,0,0,0,27,1,1,0,8.029604,0,37.41,33.86,57.86,39.96,3.333333333333333,1,1,0,0,4,2,5,1,225.5,1901220.1,1068049.1,744091.75,0,4719.1553 -12289,15156,27357,27356,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,9.0654154,8.9702139,0,2,0,-146.03326,0,3,2,2019,8,1,48,44,1,1,0,24.985188,24.985188,0,0,0,0,0,1,1,0,0,0,57.86,39.96,37.41,33.86,6.666666666666667,1,1,0,0,10,2,5,1,225.5,1901220.1,1068049.1,744091.75,0,4719.1553 -12290,15157,27358,27360,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,8.041811,8.0274906,0,4,-14,-55.108852,0,2,2,2019,6,0,35,40,1,0,0,8.8669643,8.8669643,0,0,0,0,0,1,1,0,0,0,60.12,54.8,56.29,52.37,10,1,1,0,0,10,4,5,1,1253,480706.03,276912.38,338019.25,173874.39,3282.9326 -12290,15157,27359,-9,27358,27360,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.3024,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,1253,480706.03,276912.38,338019.25,173874.39,3282.9326 -12290,15157,27360,27358,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.4760962,8.5293112,0,4,14,.15862256,0,-9,-9,2019,8,0,52,62,1,0,0,13.71579,13.71579,0,0,0,0,0,1,1,0,3.5407569,0,56.29,52.37,60.12,54.8,6.666666666666667,1,1,0,0,10,4,5,1,1253,480706.03,276912.38,338019.25,173874.39,3282.9326 -12291,15158,27361,-9,27364,27362,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.29327,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 -12291,15158,27362,27364,-9,-9,1,1,30,1,2,0,2,2,-9,1,2,0,0,0,4,4,0,0,3,3,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,48.89,32.94,54.37,54.8,6.666666666666667,2,3,0,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 -12291,15158,27363,-9,27364,27362,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.83588,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 -12291,15158,27364,27362,-9,-9,1,0,26,1,2,0,2,2,-9,1,3,0,0,0,4,-4,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.37,54.8,48.89,32.94,8.333333333333334,2,3,0,0,0,2,1,0,1174.75,-201508.63,0,0,0,1568.9932 -12292,15159,27365,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8053079,7.387248,0,0,0,-1065.5479,0,2,2,2019,11,1,40,42,1,1,0,6.5599008,6.5599008,0,0,0,0,0,1,1,0,0,0,45.36,41.63,-9,-9,8.333333333333334,1,1,0,1,9,9,3,0,142,-45816.566,0,0,0,776.41461 -12292,15160,27366,-9,27365,-9,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1032.4368,-9,2,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.062820591,0,33.18,60.48,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,1074,149923.42,0,0,0,666.63696 -12293,15161,27367,-9,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,7.0384359,6.7800097,0,0,0,-1037.2743,0,-9,-9,2019,11,3,16,16,1,3,0,6.2057767,6.2057767,0,0,0,0,0,1,1,0,0,0,51.1,45.4,-9,-9,5,4,2,0,1,6,12,2,0,615,160291.88,0,94304.289,0,770.12494 -12293,15162,27368,-9,27367,-9,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-945.21796,-9,3,-9,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,35.61,55.45,-9,-9,6.666666666666667,4,2,1,1,0,12,1,0,176,110513.59,0,0,0,0 -12294,15163,27369,27370,-9,-9,1,1,63,1,1,0,1,1,-9,0,1,0,0,0,1,1,0,0,2,1,2019,17,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,38.94,36.58,46.95,41.56,3.333333333333333,2,3,0,0,5,7,1,1,460.5,509963.69,183392.66,575327.38,218003.23,922.58728 -12294,15163,27370,27369,-9,-9,1,0,62,1,1,0,1,1,-9,0,3,0,0,0,1,-1,0,-9,-9,-9,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,41.56,38.94,36.58,8.333333333333334,2,3,0,0,0,7,1,1,460.5,509963.69,183392.66,575327.38,218003.23,922.58728 -12295,15164,27371,27372,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.107338,7.8835154,0,9,0,30.150059,0,-9,-9,2019,6,0,42,40,1,0,0,6.8437753,6.8437753,0,0,0,0,14.5,0,0,0,2.5825794,0,61.58,37.81,48.15,36.56,8.333333333333334,1,1,0,0,10,4,5,1,503.5,1178231,596065.38,264533.69,133262.08,3923.3125 -12295,15164,27372,27371,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.8998318,8.9410276,5.5012012,9,0,-64.944267,0,2,2,2019,8,0,70,70,1,0,0,9.57127,9.57127,0,0,0,0,0,0,0,0,.74468917,6.0392346,48.15,36.56,61.58,37.81,8.333333333333334,1,1,0,0,10,4,5,1,503.5,1178231,596065.38,264533.69,133262.08,3923.3125 -12296,15165,27373,27375,-9,-9,1,1,37,1,3,0,1,1,-9,0,3,8.4971647,8.5403061,0,6,2,30.146185,0,2,2,2019,19,7,42,42,1,7,0,11.384056,11.384056,0,0,0,0,0,1,1,0,0,0,34.17,57.25,52.87,55.58,5,1,1,0,0,6,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 -12296,15165,27374,-9,27375,27373,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.4982,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 -12296,15165,27375,27373,-9,-9,1,0,35,1,3,0,1,1,-9,0,5,9.0194874,8.5210686,0,6,-2,-35.344036,0,-9,-9,2019,9,0,30,32,1,0,0,24.190514,24.190514,0,0,0,0,0,1,1,0,0,0,52.87,55.58,34.17,57.25,8.333333333333334,1,1,0,0,6,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 -12296,15165,27376,-9,27375,27373,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-910.25116,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 -12296,15165,27377,-9,27375,27373,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.8275,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,671.59998,382423.25,181607.48,293030,208329.17,3793.4973 -12297,15166,27378,27379,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7352204,5.6470118,34,-7,-32.874199,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,0,5.8207202,29.13,38.17,54,46,6.666666666666667,1,1,0,0,0,7,2,0,917,986801.06,49120.957,374650.19,0,1004.2474 -12297,15166,27379,27378,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.5141573,6.2062669,36,7,91.39991,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.5063477,54,46,29.13,38.17,7,1,1,0,0,0,7,2,0,917,986801.06,49120.957,374650.19,0,1004.2474 -12298,15167,27380,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.0006094,6.0573883,0,0,-922.60126,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0537963,53,44,-9,-9,8,3,4,0,0,0,8,2,0,1089,821795,146332.78,297741.19,0,384.29279 -12299,15168,27381,27383,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,7.1399264,7.41435,0,16,-1,-10.438572,0,2,2,2019,6,0,20,16,1,0,0,8.348959,8.348959,0,0,0,0,0,1,1,0,0,0,56.35,51.16,59.43,58.05,6.666666666666667,1,1,0,0,9,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 -12299,15168,27382,-9,27381,27383,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.23523,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 -12299,15168,27383,27381,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,8.258235,8.4932861,0,16,1,66.917343,0,2,2,2019,5,0,35,35,1,0,0,14.810616,14.810616,0,0,0,0,0,1,1,0,3.1655586,0,59.43,58.05,56.35,51.16,8.333333333333334,1,1,0,0,9,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 -12299,15168,27384,-9,27381,27383,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.67456,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,955.75,215452.48,321794.63,92330.633,35563.344,2385.9595 -12300,15169,27385,27386,-9,-9,1,1,27,0,1,0,2,2,-9,0,4,7.5201187,7.3562894,0,7,1,14.895061,0,-9,-9,2019,10,0,28,22,1,1,0,5.7643771,5.7643771,0,0,0,0,0,1,1,0,0,0,49,58,47.22,53.97,7,1,1,0,0,1,12,3,0,1176,82049.758,3150.0159,0,0,1274.9816 -12300,15169,27386,27385,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,6.8223228,7.0976343,0,7,-1,16.590662,0,2,2,2019,15,2,20,16,1,2,0,5.7725978,5.7725978,0,0,0,0,0,1,1,0,0,0,47.22,53.97,49,58,3.333333333333333,1,1,0,0,8,12,3,0,1176,82049.758,3150.0159,0,0,1274.9816 -12300,15169,27387,-9,27386,27385,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.7403,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,1176,82049.758,3150.0159,0,0,1274.9816 -12301,15170,27388,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.9890232,10.452311,10.372493,0,0,-969.89905,0,2,2,2019,8,0,20,21,1,0,0,19.677967,19.677967,0,0,0,0,0,0,0,0,3.233345,9.3623438,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,13,13,5,1,339,-92587.883,0,117220.05,23057.557,15188.617 -12302,15171,27389,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.1709213,8.0395336,0,0,0,-895.3844,0,1,1,2019,7,0,60,40,1,0,0,5.236949,5.236949,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,723,109526.59,5855.0776,0,0,1407.2166 -12303,15172,27390,27391,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3535328,7.4573307,0,33,-1,22.237694,0,3,-9,2019,9,0,20,20,1,0,0,7.5903134,7.5903134,0,0,0,0,42,1,1,0,4.7278552,0,46.31,51.53,43.61,56.01,6.666666666666667,1,1,0,0,10,5,4,0,125,220750.06,6752.4063,0,0,2409.1729 -12303,15172,27391,27390,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1318836,8.1548567,0,33,1,-17.985569,0,3,2,2019,12,0,45,45,1,0,0,8.3303699,8.3303699,0,0,0,0,14.5,1,1,0,3.9364243,0,43.61,56.01,46.31,51.53,5,1,1,0,0,10,5,4,0,125,220750.06,6752.4063,0,0,2409.1729 -12304,15173,27392,-9,27395,27393,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.08752,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 -12304,15173,27393,27395,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.7289162,8.5502367,0,15,1,-77.11039,0,2,-9,2019,14,3,42,45,1,3,0,13.727731,13.727731,0,0,0,0,0,1,1,0,0,0,38.51,59.43,53.77,47.24,6.666666666666667,1,1,0,0,11,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 -12304,15173,27394,-9,27395,27393,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.28815,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 -12304,15173,27395,27393,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.6527138,8.7242413,0,15,-1,54.861805,0,3,-9,2019,9,2,40,38,1,2,0,17.583332,17.583332,0,0,0,0,0,1,1,0,3.2686491,0,53.77,47.24,38.51,59.43,6.666666666666667,1,1,0,0,11,13,5,1,901,108514.84,204508.95,264311.66,143712.13,4880.0854 -12305,15174,27396,27399,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.8610554,9.8060265,0,6,-3,45.074322,0,1,1,2019,11,0,36,30,1,0,0,50.868061,50.868061,0,0,0,0,0,0,0,0,7.6555586,0,59.15,49.67,54.2,57.49,8.333333333333334,1,1,0,0,7,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 -12305,15174,27397,-9,27396,27399,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.39899,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 -12305,15174,27398,-9,27396,27399,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.77881,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 -12305,15174,27399,27396,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,9.5608606,9.1898413,0,6,3,-74.851303,0,-9,-9,2019,2,0,43,35,1,0,0,29.366539,29.366539,0,0,0,0,0,0,0,0,7.7379875,0,54.2,57.49,59.15,49.67,8.333333333333334,1,1,0,0,6,8,5,1,440.5,1081413.3,828614.94,428248.25,128130.03,11553.516 -12306,15175,27400,-9,27402,27403,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1021.902,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 -12306,15175,27401,-9,27402,27403,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1096.6196,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 -12306,15175,27402,27403,-9,-9,1,0,35,1,4,0,2,2,-9,0,4,0,0,0,2,-5,29.859434,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,37.76,55.72,50.51,53.71,5,2,3,0,1,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 -12306,15175,27403,27402,-9,-9,1,1,40,1,4,0,2,2,-9,0,3,8.0093975,8.1370401,0,10,5,68.907181,0,3,2,2019,9,0,19,10,1,0,0,21.51302,21.51302,0,0,0,0,0,1,1,0,.26513416,0,50.51,53.71,37.76,55.72,6.666666666666667,2,3,0,0,12,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 -12306,15175,27404,-9,27402,27403,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-745.0437,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 -12306,15175,27405,-9,27402,27403,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.056,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,547.5,180086.41,259708.63,0,0,3268.7651 -12307,15176,27406,27408,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.4082289,8.4123259,0,20,0,-24.345434,0,2,2,2019,9,0,39,41,1,0,0,14.113708,14.113708,0,0,0,0,0,1,1,0,3.7805142,0,53.41,53.98,55.19,54.26,8.333333333333334,1,1,0,0,11,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 -12307,15176,27407,-9,27408,27406,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-879.18103,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 -12307,15176,27408,27406,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.0785398,7.9390774,0,20,0,-68.728622,0,2,2,2019,10,0,19,19,1,0,0,20.284212,20.284212,0,0,0,0,0,1,1,0,3.6062167,0,55.19,54.26,53.41,53.98,8.333333333333334,1,1,0,0,11,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 -12307,15176,27409,-9,27408,27406,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1036,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,332.75,256884.25,160548.91,259765.95,28876.168,2908.3662 -12308,15177,27410,27411,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.529644,8.2060757,0,6,-6,-54.26849,0,3,3,2019,10,0,38,37,1,0,0,16.456291,16.456291,0,0,0,0,0,0,0,0,0,0,57.25,47.77,52.71,45.96,8.333333333333334,1,1,0,0,6,13,5,1,201,487119.75,242091.14,158159.06,26445.832,2687.3867 -12308,15177,27411,27410,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.1381502,8.113637,0,6,6,11.592333,0,3,3,2019,12,0,38,37,1,0,0,9.5946407,9.5946407,0,0,0,0,0,0,0,0,0,0,52.71,45.96,57.25,47.77,5,1,1,0,0,6,13,5,1,201,487119.75,242091.14,158159.06,26445.832,2687.3867 -12308,15178,27412,-9,27410,27411,1,1,18,0,0,0,2,2,-9,0,4,7.5041866,7.3926272,0,0,0,-981.3822,0,1,2,2019,4,0,43,0,1,0,1,4.6835098,4.6835098,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,1204,-333497.44,-81161.016,0,0,309.88028 -12309,15179,27413,27414,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.6216726,8.7347975,0,6,-4,-10.291411,0,-9,-9,2019,10,0,37,37,1,0,0,17.374338,17.374338,0,0,0,0,0,1,1,0,4.5171871,0,44.72,57.73,62.39,56.71,8.333333333333334,1,1,0,0,6,9,5,1,670,-11073.375,114588.7,0,0,5106.8613 -12309,15179,27414,27413,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.8326855,8.5482235,0,6,4,-11.150392,0,2,2,2019,6,0,37,37,1,0,0,15.903775,15.903775,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44.72,57.73,10,1,1,0,0,8,9,5,1,670,-11073.375,114588.7,0,0,5106.8613 -12310,15180,27415,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1061.1392,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.39,46.45,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,233,406992.44,0,0,0,748.92719 -12311,15181,27416,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.9960685,6.7547674,0,0,-1090.2435,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4595675,7.0458651,48.29,47.89,-9,-9,6.666666666666667,1,1,0,0,8,10,2,0,1051,461059.41,413081.25,193725.08,0,1527.7936 -12312,15182,27417,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1069.698,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,3.8125494,0,0,1,1,0,1.564032,0,68.09999999999999,17.42,-9,-9,10,1,1,0,0,0,6,1,0,891,243974.39,0,133446.88,0,3513.813 -12313,15183,27418,-9,27421,-9,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-975.86652,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,7,1,0,1228,0,0,0,0,0 -12313,15184,27419,-9,27421,27422,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.3456,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,389.25,240174.98,87951,0,0,2125.0496 -12313,15184,27420,-9,27421,27422,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-847.46844,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,389.25,240174.98,87951,0,0,2125.0496 -12313,15184,27421,27422,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,0,0,0,7,-1,-75.038696,-9,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,55.93,47.25,5,1,1,0,0,0,7,3,0,389.25,240174.98,87951,0,0,2125.0496 -12313,15184,27422,27421,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.6682377,8.5463629,0,7,1,-46.047619,0,-9,-9,2019,7,0,40,40,1,0,0,16.28159,16.28159,0,0,0,0,0,1,1,0,0,0,55.93,47.25,45.32,61.53,6.666666666666667,1,1,0,0,13,7,3,0,389.25,240174.98,87951,0,0,2125.0496 -12314,15185,27423,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.8322806,5.5316644,0,0,-1016.061,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.0839505,5.8236985,50.63,42.75,-9,-9,8.333333333333334,1,1,0,0,12,9,2,1,1221,524442.19,195180.48,0,0,1070.3268 -12315,15186,27424,27425,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.5640106,6.8413625,53,-3,-71.250778,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.54772,60.27,49.27,51.42,42.58,8.333333333333334,1,1,0,0,0,5,3,1,2077,441747.63,297086.38,198136.88,0,2249.332 -12315,15186,27425,27424,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2430286,7.3035645,53,3,-35.828541,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5422673,51.42,42.58,60.27,49.27,8.333333333333334,1,1,0,0,0,5,3,1,2077,441747.63,297086.38,198136.88,0,2249.332 -12316,15187,27426,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,2,0,7.284833,7.1278453,0,0,-910.66992,0,2,1,2019,9,1,0,0,4,1,0,0,0,1,2.233737,0,18.288069,0,1,1,0,0,6.9720774,63.07,10.78,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1432,-356944.38,187997.56,214071.81,0,1576.2341 -12317,15188,27427,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.460969,8.6329136,0,0,0,-1001.3474,0,-9,-9,2019,5,0,52,40,1,0,0,11.906588,11.906588,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,10,5,0,192,11307.776,-89640.195,247327.78,93599.859,1611.5015 -12318,15189,27428,27429,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.8847303,8.8184395,0,3,0,86.796257,0,3,3,2019,9,1,37,76,1,1,0,23.698154,23.698154,0,0,0,0,0,0,0,0,8.5312939,0,43.97,49.77,31.84,22.06,5,1,1,0,0,12,12,5,1,2060.5,1721829.8,1239472.8,304064.31,0,3873.6943 -12318,15189,27429,27428,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,7.5431733,7.2242007,0,3,0,-76.712036,0,-9,-9,2019,17,5,30,40,1,5,0,6.7176733,6.7176733,0,0,0,0,0,0,0,0,0,0,31.84,22.06,43.97,49.77,3.333333333333333,1,1,0,0,12,12,5,1,2060.5,1721829.8,1239472.8,304064.31,0,3873.6943 -12319,15190,27430,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5049334,7.8065314,5.8800635,0,0,-906.9483,0,2,2,2019,10,0,20,0,1,1,0,12.704208,12.704208,0,0,0,0,0,1,1,0,2.3152571,5.9655895,51,49,-9,-9,7,1,1,0,0,1,1,3,0,2926,274195.78,-2029.2301,149783.27,88407.461,1160.8988 -12319,15191,27431,-9,-9,27430,1,1,33,0,0,0,1,1,-9,0,2,7.7027612,7.9348831,0,0,0,-943.3667,0,1,2,2019,10,0,50,0,1,0,1,6.3959851,6.3959851,0,0,0,0,0,1,1,0,0,0,52.24,50.75,-9,-9,6.666666666666667,1,1,0,0,4,1,3,0,590,197197.63,-99196.633,21307.734,0,1083.6957 -12320,15192,27432,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.6658545,6.4539509,0,0,-952.48688,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8277464,49.76,34.42,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,1375,640229.81,116649.97,239257.55,0,1300.0238 -12321,15193,27433,-9,-9,-9,1,0,22,0,0,0,1,1,0,0,3,0,0,0,0,0,-1083.3628,-9,-9,-9,2019,22,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,27.95,49.34,-9,-9,1.666666666666667,1,1,0,0,5,12,1,0,682,-300929.34,0,0,0,77.310921 -12322,15194,27434,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-835.10498,0,-9,-9,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,10,1,0,606,124332.97,142752.88,0,0,1826.1278 -12323,15195,27435,-9,27438,27439,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1125.6798,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 -12323,15195,27436,-9,27438,27439,1,0,17,0,2,1,2,0,0,1,3,0,0,0,0,0,-916.06415,-9,1,3,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.7,41,-9,-9,6.666666666666667,1,1,0,0,0,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 -12323,15195,27437,-9,27438,27439,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.4053,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 -12323,15195,27438,27439,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.3506856,7.5928745,0,13,0,1.0696313,0,2,2,2019,7,1,27,28,1,1,0,6.4829879,6.4829879,0,0,0,0,0,1,1,0,0,0,57.13,31.88,45.12,52.03,3.333333333333333,1,1,0,0,8,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 -12323,15195,27439,27438,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.350153,8.3422365,0,13,0,-43.52972,0,2,2,2019,12,1,48,40,1,1,0,11.482523,11.482523,0,0,0,0,0,1,1,0,0,0,45.12,52.03,57.13,31.88,8.333333333333334,1,1,0,0,8,6,3,0,1326.4,244433.17,14385.895,226989.16,103959.6,2864.489 -12324,15196,27440,-9,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,0,0,0,0,0,-998.89362,0,3,3,2019,7,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,3,4,1,1,2,8,1,0,335,-63813.652,0,0,0,2438.0894 -12324,15196,27441,-9,27440,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1020.6738,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.09,49.08,-9,-9,7,3,4,0,0,0,8,1,0,335,-63813.652,0,0,0,2438.0894 -12324,15197,27442,-9,27440,-9,1,0,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-992.28925,-9,2,2,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,724,-163383.94,0,0,0,0 -12324,15198,27443,-9,27440,-9,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-986.20416,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,5,3,4,0,0,0,8,2,0,127,0,0,0,0,0 -12324,15199,27444,-9,27440,-9,1,0,18,0,2,0,2,2,1,0,4,6.9223652,6.8897367,0,0,0,-1068.6106,-9,3,-9,2019,13,3,16,0,1,3,1,5.3058987,5.3058987,0,0,0,0,0,1,1,0,0,0,49.37,56.01,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,492,21882.514,0,0,0,-61.444214 -12325,15200,27445,27446,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,7.9528403,7.7538452,0,7,-1,-122.15696,0,-9,-9,2019,19,7,30,30,1,7,0,14.543027,14.543027,0,0,0,0,0,0,0,0,7.2062278,0,47.01,55.33,55.2,57.22,6.666666666666667,1,1,0,0,6,9,5,1,913.33331,1230003.6,616907.75,473160.91,0,3853.0913 -12325,15200,27446,27445,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,8.9900064,8.5067225,0,7,1,9.8349419,0,1,1,2019,10,0,38,38,1,0,0,18.78437,18.78437,0,0,0,0,0,0,0,0,2.4758337,0,55.2,57.22,47.01,55.33,8.333333333333334,1,1,0,0,13,9,5,1,913.33331,1230003.6,616907.75,473160.91,0,3853.0913 -12325,15200,27447,-9,27445,27446,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.3252,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,5,1,913.33331,1230003.6,616907.75,473160.91,0,3853.0913 -12326,15201,27448,27449,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.6934733,7.2697501,9,9,-34.620697,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,7.6079292,46.61,56.93,47.46,42.77,8.333333333333334,1,1,0,0,0,1,2,1,504.5,-66666.531,56698.281,85659.375,0,2874.5508 -12326,15201,27449,27448,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.6477904,5.4288764,9,0,-80.299805,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,3.2943118,6.1339092,47.46,42.77,46.61,56.93,8.333333333333334,1,1,0,0,0,1,2,1,504.5,-66666.531,56698.281,85659.375,0,2874.5508 -12327,15202,27450,27451,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.9362011,8.8196926,0,9,1,73.193535,0,3,3,2019,5,0,42,42,1,0,0,17.22588,17.22588,0,0,0,0,0,1,1,0,4.3432794,0,57.16,56.15,45.18,54.77,8.333333333333334,1,1,0,0,10,1,5,1,580.33331,1435214.3,419587.16,577811.19,0,4656.7192 -12327,15202,27451,27450,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.7116919,8.7367067,0,9,-1,-12.06686,0,2,2,2019,16,4,49,36,1,4,0,15.264468,15.264468,0,0,0,0,0,1,1,0,4.9332352,0,45.18,54.77,57.16,56.15,8.333333333333334,1,1,0,0,10,1,5,1,580.33331,1435214.3,419587.16,577811.19,0,4656.7192 -12327,15202,27452,-9,27451,27450,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-942.57813,-9,1,1,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,43.43,51.6,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,580.33331,1435214.3,419587.16,577811.19,0,4656.7192 -12328,15203,27453,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.6370153,8.060523,0,0,0,-1103.0258,0,3,2,2019,27,12,30,37,1,12,0,9.3137474,9.3137474,0,0,0,0,0,0,0,0,0,0,27.2,46.57,-9,-9,3.333333333333333,1,1,0,0,8,6,3,0,448,344391.66,-35493.441,0,0,1008.293 -12328,15204,27454,-9,27453,-9,1,0,20,0,0,0,2,2,-9,0,3,7.2018189,7.3800159,0,0,0,-979.06476,0,2,-9,2019,20,8,26,30,1,8,1,5.1091843,5.1091843,0,0,0,0,0,0,0,0,0,0,30.02,57.99,-9,-9,5,1,1,0,0,2,6,3,0,1007,-20883.66,0,0,0,886.91095 -12329,15205,27455,27456,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3238897,8.5083532,0,5,8,-220.54744,0,2,3,2019,6,0,37,37,1,0,0,14.629805,14.629805,0,0,0,0,7,0,0,0,0,0,58.15,52.91,51.66,54.88,8.333333333333334,1,1,0,0,11,7,4,1,647.5,830634.5,64443.633,434751,0,2911.5313 -12329,15205,27456,27455,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9279361,7.888442,0,5,-8,-48.104214,0,-9,-9,2019,8,0,26,30,1,0,0,14.011675,14.011675,0,0,0,0,7,0,0,0,4.120563,0,51.66,54.88,58.15,52.91,8.333333333333334,1,1,0,0,11,7,4,1,647.5,830634.5,64443.633,434751,0,2911.5313 -12329,15206,27457,-9,27456,27455,1,1,21,0,0,0,2,2,-9,0,4,8.1166096,8.4149475,0,0,0,-1105.697,0,2,2,2019,11,1,48,52,1,1,1,9.7985106,9.7985106,0,0,0,0,0,0,0,0,2.6634982,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,4,7,4,1,395,227549,-9970.5654,0,0,1109.4263 -12330,15207,27458,27460,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.7033234,8.4370022,0,8,2,-158.69617,0,-9,-9,2019,12,1,60,60,1,1,0,10.078883,10.078883,0,0,0,0,0,1,1,0,0,0,51.94,55.88,48.77,60.16,8.333333333333334,1,1,0,0,5,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 -12330,15207,27459,-9,27460,27458,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.71198,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 -12330,15207,27460,27458,-9,-9,1,0,29,0,2,0,1,1,1,0,5,0,0,0,7,-2,17.813309,-9,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,51.94,55.88,8.333333333333334,1,1,0,0,6,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 -12330,15207,27461,-9,27460,27458,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.7594,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,857,204490.28,65688.594,50123.152,91680.703,1888.2192 -12331,15208,27462,27463,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.4444609,7.6169667,0,33,-3,3.2973096,0,3,-9,2019,9,0,37,0,1,0,0,6.8186264,6.8186264,0,0,0,0,0,0,0,0,.077472508,0,59.6,46.99,39.18,46.92,8.333333333333334,1,1,0,0,10,6,4,0,339.5,260885.52,-55273.242,86857.758,40310.148,2793.8469 -12331,15208,27463,27462,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.963994,8.052351,0,33,3,75.612259,0,3,3,2019,11,0,40,40,1,0,0,11.486455,11.486455,0,0,0,0,0,0,0,0,.61208403,0,39.18,46.92,59.6,46.99,5,1,1,0,0,11,6,4,0,339.5,260885.52,-55273.242,86857.758,40310.148,2793.8469 -12332,15209,27464,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.7394905,7.6588511,5.0957355,0,0,-1050.1461,-9,-9,-9,2019,10,0,20,0,1,0,0,10.348764,10.348764,0,0,0,0,0,0,0,0,5.3408771,0,44.36,54.04,-9,-9,3.333333333333333,1,1,0,0,3,7,3,0,1133,-427739.03,0,0,0,1308.7238 -12333,15210,27465,-9,27468,27467,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-945.92737,-9,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,1,1,1,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 -12333,15210,27466,-9,27468,27467,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1121.2736,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 -12333,15210,27467,27468,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.8360062,8.6089783,0,7,2,26.578466,0,3,3,2019,16,4,65,70,1,4,0,11.655149,11.655149,0,0,0,0,0,1,1,0,0,0,41.76,57.81,33.37,60.58,6.666666666666667,1,1,0,0,8,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 -12333,15210,27468,27467,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,5.6645365,6.2730031,7,-2,59.57972,0,3,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,5.6462822,0,33.37,60.58,41.76,57.81,5,1,1,1,0,4,4,4,1,1059,165257.52,25412.428,112246.36,77396.547,2667.5493 -12333,15211,27469,-9,27468,27467,1,1,18,0,1,0,2,2,1,0,2,6.4766107,6.5058589,0,0,0,-821.7395,-9,3,2,2019,12,1,16,0,1,1,1,4.923202,4.923202,0,0,0,0,0,1,1,0,0,0,52,41.28,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,1013,17925.9,0,0,0,193.10165 -12334,15212,27470,-9,27472,27471,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.35266,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,589.33331,535890.69,277704.28,227341.52,25542.244,4614.8955 -12334,15212,27471,27472,-9,-9,1,1,62,0,2,0,2,2,-9,0,3,9.0684853,8.827836,7.0671449,9,21,-68.971489,0,-9,-9,2019,9,1,41,37,1,1,0,23.084923,23.084923,0,0,0,0,0,1,1,0,0,7.7210612,60.87,44.96,51.77,58.57,8.333333333333334,1,1,0,0,10,11,5,1,589.33331,535890.69,277704.28,227341.52,25542.244,4614.8955 -12334,15212,27472,27471,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.7260866,8.3952465,0,18,-21,-24.50951,0,2,2,2019,12,2,56,38,1,2,0,12.292851,12.292851,0,0,0,0,0,1,1,0,0,0,51.77,58.57,60.87,44.96,8.333333333333334,1,1,0,0,10,11,5,1,589.33331,535890.69,277704.28,227341.52,25542.244,4614.8955 -12335,15213,27473,27474,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.5078492,7.9621487,45,-3,8.8198757,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5821548,8.1009245,62.49,55.09,60.02,56.42,10,1,1,0,0,8,8,3,1,1255,276609.28,93848.344,683727.44,462071.34,2363.8877 -12335,15213,27474,27473,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,0,0,44,3,61.561371,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.49,55.09,10,1,1,0,0,0,8,3,1,1255,276609.28,93848.344,683727.44,462071.34,2363.8877 -12336,15214,27475,27476,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,6.0530634,6.1363025,0,42,0,-174.05208,0,2,1,2019,6,0,10,6,1,0,0,5.661695,5.661695,0,0,0,0,0,1,1,0,0,0,56.35,51,59.43,49.68,8.333333333333334,1,1,0,0,10,12,3,1,1094.5,-20607.826,102276.77,0,0,3629.417 -12336,15214,27476,27475,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.863307,8.4358664,5.3135414,42,0,67.342499,0,-9,-9,2019,5,0,50,30,1,0,0,5.3223023,5.3223023,0,0,0,0,0,1,1,0,0,5.1832418,59.43,49.68,56.35,51,8.333333333333334,1,1,0,0,10,12,3,1,1094.5,-20607.826,102276.77,0,0,3629.417 -12337,15215,27477,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.1987505,7.1214676,0,0,-1058.4052,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.736207,6.673656,62.75,34.56,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,616,797414.31,96925.102,568401,0,1690.4863 -12338,15216,27478,27479,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,41,2,100.64764,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.83,36.54,57.64,39.56,8.333333333333334,1,1,0,0,7,8,2,1,1371,415612.38,33273.863,0,0,1429.6646 -12338,15216,27479,27478,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.1117258,7.4536805,0,41,-2,21.280035,0,3,3,2019,13,2,22,21,1,2,0,8.4058008,8.4058008,0,0,0,0,0,1,1,0,3.0317194,0,57.64,39.56,61.83,36.54,8.333333333333334,1,1,0,0,10,8,2,1,1371,415612.38,33273.863,0,0,1429.6646 -12338,15217,27480,-9,27479,27478,1,0,36,0,0,0,2,2,-9,0,1,7.3257494,7.6278009,0,0,0,-1068.7078,-9,3,2,2019,27,9,33,0,1,9,0,5.3557773,5.3557773,0,0,0,0,0,1,1,0,0,0,21.86,33.3,-9,-9,0,1,1,0,1,10,8,3,1,1788,293469.19,0,0,0,360.34491 -12339,15218,27481,-9,27482,-9,1,1,63,0,0,0,1,1,-9,0,3,8.3589468,8.5376663,0,0,0,-1047.2527,0,3,2,2019,7,0,24,22,1,0,0,20.807581,20.807581,0,0,0,0,0,1,1,0,7.9563327,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,124,377474.03,78128.32,316854.28,69546.898,4214.3452 -12339,15219,27482,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1066.1034,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,1,1.7714983,0,19.01211,0,1,1,0,2.7494256,0,60.93,32.51,-9,-9,9,1,1,0,0,0,10,1,1,344,115344.63,0,157997.97,0,663.09247 -12340,15220,27483,27484,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.0933409,6.6223221,10,3,-61.204971,0,2,1,2019,26,12,0,0,4,12,0,0,0,0,0,0,0,7,1,1,0,6.1980119,6.4814329,21.4,64.16,39,26,3.333333333333333,1,1,0,0,11,7,2,1,2347,712177.5,0,485425.66,59675.68,1619.3193 -12340,15220,27484,27483,-9,-9,1,1,65,0,0,0,2,2,-9,1,1,0,6.8895082,6.4437037,10,-3,33.837051,0,3,3,2019,12,1,0,51,3,1,0,0,0,0,0,0,0,7,1,1,0,7.6728621,6.5628605,39,26,21.4,64.16,5,1,1,0,0,11,7,2,1,2347,712177.5,0,485425.66,59675.68,1619.3193 -12341,15221,27485,27486,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.8376064,7.842309,8,2,79.355972,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1942196,7.6776185,56.27,44.38,50.91,44.05,8.333333333333334,1,1,0,0,0,10,3,1,604.5,1202972.5,628063.88,364540.72,0,2475.2339 -12341,15221,27486,27485,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,44,-2,-2.5769589,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.91,44.05,56.27,44.38,8.333333333333334,1,1,0,0,6,10,3,1,604.5,1202972.5,628063.88,364540.72,0,2475.2339 -12342,15222,27487,-9,27488,27489,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-947.4137,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,2190.3333,587224.25,167610.84,121525.88,0,2416.1128 -12342,15222,27488,27489,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,6.2596636,6.4339957,31,0,159.37189,0,1,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,74.5,1,1,0,6.1412807,0,34.8,23.67,32.38,20.46,0,2,3,0,0,0,12,2,0,2190.3333,587224.25,167610.84,121525.88,0,2416.1128 -12342,15222,27489,27488,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,31,9,29.211889,0,-9,-9,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,20.46,34.8,23.67,0,1,1,0,0,8,12,2,0,2190.3333,587224.25,167610.84,121525.88,0,2416.1128 -12343,15223,27490,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.4725828,6.9101067,0,0,-1095.1298,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.5647054,52.33,43.43,-9,-9,6.666666666666667,1,1,0,0,5,2,2,0,707,27749.967,144641.25,74893.563,0,1053.4863 -12344,15224,27491,27492,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,5.8145871,5.4147468,9,-2,-66.181847,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,3.8958118,0,5.48,1,1,0,5.3334327,5.3587217,40.79,41.17,38.19,39.76,8.333333333333334,1,1,0,0,0,11,2,1,428,795796.13,165744.77,233728.86,0,2259.616 -12344,15224,27492,27491,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.1014276,7.0848732,9,2,148.97626,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,27,1,1,0,6.2189536,7.2031455,38.19,39.76,40.79,41.17,6.666666666666667,1,1,0,0,0,11,2,1,428,795796.13,165744.77,233728.86,0,2259.616 -12345,15225,27493,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,7.105412,6.8942795,0,0,-908.65411,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.265718,7.2937269,57.06,57.76,-9,-9,10,1,1,0,0,0,11,2,1,2146,298705.09,150181.89,156833.16,0,1206.2987 -12346,15226,27494,27495,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.3075747,5.2069774,44,3,-81.549675,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.619493,4.9644976,41.82,57.72,57.16,56.15,5,1,1,0,0,8,4,3,1,1023,1247324,777153.81,279458.94,0,1966.2861 -12346,15226,27495,27494,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.1567802,8.1156816,6,-3,-116.78079,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.1518297,57.16,56.15,41.82,57.72,8.333333333333334,1,1,0,0,0,4,3,1,1023,1247324,777153.81,279458.94,0,1966.2861 -12347,15227,27496,27497,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.9876833,6.8590918,46,2,44.095852,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0325122,59.06,38.06,60.29,52.11,8.333333333333334,1,1,0,0,0,4,3,1,180,1015132.2,568294.06,297130.38,0,1991.8423 -12347,15227,27497,27496,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7478294,7.7992144,46,-2,-19.489857,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8084297,60.29,52.11,59.06,38.06,10,1,1,0,0,1,4,3,1,180,1015132.2,568294.06,297130.38,0,1991.8423 -12348,15228,27498,27499,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,5.2324309,5.1496611,6,4,-88.940132,0,2,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.8033409,5.2423429,55.98,9.52,50.2,35.09,10,1,1,0,0,0,11,2,1,404,-17401.164,0,0,0,1553.1353 -12348,15228,27499,27498,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,5.7663841,6.2820997,2.254009,40,-4,-9.4137707,0,-9,-9,2019,11,1,10,16,1,1,0,5.4832387,5.4832387,0,0,0,0,27,1,1,0,0,2.2454488,50.2,35.09,55.98,9.52,8.333333333333334,1,1,0,0,3,11,2,1,404,-17401.164,0,0,0,1553.1353 -12349,15229,27500,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1008.4656,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,61.28,46.17,-9,-9,8.333333333333334,1,1,1,0,1,12,1,0,216.33333,-268561.53,0,0,0,1475.0581 -12349,15229,27501,-9,27500,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-896.53577,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,216.33333,-268561.53,0,0,0,1475.0581 -12349,15229,27502,-9,27500,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.81818,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,216.33333,-268561.53,0,0,0,1475.0581 -12350,15230,27503,27504,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,2.3934767,2.57201,7,-3,8.73983,0,3,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,2.954968,2.2332954,67.14,17.97,39.91,26.57,10,1,1,0,0,0,5,2,0,342,-67573.102,0,0,0,2055.7515 -12350,15230,27504,27503,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,3.6327155,3.436785,7,3,-67.37265,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.2714005,3.5606499,39.91,26.57,67.14,17.97,8.333333333333334,1,1,0,0,0,5,2,0,342,-67573.102,0,0,0,2055.7515 -12351,15231,27505,27506,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.1124334,9.2457733,0,10,-2,-9.5506697,0,1,1,2019,7,1,55,56,1,1,0,25.566927,25.566927,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.98,59.35,8.333333333333334,1,1,0,0,8,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 -12351,15231,27506,27505,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.8576012,8.0164776,0,10,2,31.912598,0,2,2,2019,12,1,21,21,1,1,0,14.359312,14.359312,0,0,0,0,0,1,1,0,0,0,46.98,59.35,45.91,59.89,8.333333333333334,1,1,0,0,3,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 -12351,15231,27507,-9,27506,27505,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.57648,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 -12351,15231,27508,-9,27506,27505,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.48608,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,240.75,1594158.3,327314.41,773113.25,281634.19,4839.1528 -12352,15232,27509,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.4378643,8.312974,0,0,0,-988.6568,0,-9,-9,2019,16,4,42,36,1,4,0,8.6065722,8.6065722,0,0,0,0,0,0,0,0,0,0,32.26,60.74,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,2798,-333694.97,0,0,0,1829.8464 -12353,15233,27510,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.4480963,8.1865129,0,0,0,-868.63654,0,3,3,2019,9,1,7,7,1,1,0,101.93023,101.93023,0,0,0,0,7,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,647,410469.38,113680.33,213557.05,0,2001.6005 -12354,15234,27511,27513,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,9.1302862,9.1271677,0,14,1,180.49585,0,2,3,2019,26,12,36,36,1,12,0,31.273891,31.273891,0,0,0,0,0,1,1,0,0,0,37.79,59.6,29.27,50.02,5,1,1,0,0,10,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 -12354,15234,27512,-9,27513,27511,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.65057,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 -12354,15234,27513,27511,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,0,0,0,14,-1,68.344894,0,2,1,2019,21,9,0,40,3,9,0,0,0,0,0,0,0,2,1,1,0,0,0,29.27,50.02,37.79,59.6,6.666666666666667,1,1,0,0,8,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 -12354,15234,27514,-9,27513,27511,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.4224,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,421.25,-17887.094,38680.121,0,0,4184.4106 -12355,15235,27515,27516,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.7205009,6.163106,62,1,-12.367997,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4161205,6.5717797,48.17,52.08,56.07,55.46,8.333333333333334,1,1,0,0,0,9,2,1,477.5,241049.55,79565.078,276061.66,0,2030.1494 -12355,15235,27516,27515,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,5.6485043,5.6379018,62,-1,-52.953304,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.0100559,5.8467669,56.07,55.46,48.17,52.08,8.333333333333334,1,1,0,0,0,9,2,1,477.5,241049.55,79565.078,276061.66,0,2030.1494 -12356,15236,27517,27519,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.5912313,8.7589912,0,12,3,-134.43291,0,2,2,2019,10,0,56,62,1,0,0,9.30408,9.30408,0,0,0,0,0,1,1,0,0,0,54.37,54.8,62,41.73,8.333333333333334,1,1,0,0,8,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 -12356,15236,27518,-9,27519,27517,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.5513,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 -12356,15236,27519,27517,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,7.6381397,7.6085982,0,11,-3,-79.120819,0,2,2,2019,9,0,24,24,1,0,0,11.437621,11.437621,0,0,0,0,0,1,1,0,1.988247,0,62,41.73,54.37,54.8,8.333333333333334,1,1,0,0,6,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 -12356,15236,27520,-9,27519,27517,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.42688,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,316.25,-13324.398,72964.656,144659.53,98376.281,3051.9292 -12357,15237,27521,-9,-9,-9,1,0,49,1,3,0,2,2,-9,0,3,6.866972,6.9327021,0,0,0,-1059.6138,0,3,3,2019,11,1,16,16,1,1,0,8.2796364,8.2796364,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,5,1,1,0,0,7,2,2,0,258,-241879.8,0,0,0,2241.5022 -12357,15238,27522,-9,27523,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.5767,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,1,0,1616.6666,25025.381,0,0,0,818.42139 -12357,15238,27523,-9,27521,-9,1,0,20,1,3,0,2,2,-9,1,4,0,0,0,0,0,-1072.6024,-9,2,-9,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,1616.6666,25025.381,0,0,0,818.42139 -12357,15238,27524,-9,27523,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.3699,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,1,0,1616.6666,25025.381,0,0,0,818.42139 -12358,15239,27525,27526,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,0,7.3190856,7.4225798,29,0,55.281818,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.1598458,7.6677022,55.09,55.87,51.17,49.39,8.333333333333334,1,1,0,0,10,10,4,1,1515.5,2255438,1677013.8,429268.47,129448.48,3005.062 -12358,15239,27526,27525,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.5819111,8.2254848,29,0,-78.896889,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1812363,51.17,49.39,55.09,55.87,5,1,1,0,0,10,10,4,1,1515.5,2255438,1677013.8,429268.47,129448.48,3005.062 -12359,15240,27527,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1189.0322,0,3,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,7.3641372,0,41.08,20.85,-9,-9,8.333333333333334,2,3,0,1,0,6,1,1,2274,72846.664,0,0,0,847.7785 -12359,15241,27528,-9,27527,-9,1,1,30,0,0,0,2,2,-9,0,4,6.1232166,6.1061392,0,0,0,-840.61182,0,3,3,2019,20,8,40,40,1,8,1,1.3398472,1.3398472,0,0,0,0,0,1,1,0,6.9438071,0,32.9,57.87,-9,-9,3.333333333333333,2,3,0,0,5,6,2,1,173,296077.72,-114449.27,0,0,880.36096 -12360,15242,27529,27532,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,7.9152861,7.9778233,0,8,-1,-130.08818,0,2,2,2019,9,0,37,42,1,0,0,7.5930953,7.5930953,0,0,0,0,0,1,1,0,0,0,47.18,55.31,46.67,55.57,8.333333333333334,1,1,0,0,7,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 -12360,15242,27530,-9,27532,27529,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.1355,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 -12360,15242,27531,-9,27532,27529,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.87549,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 -12360,15242,27532,27529,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.1359806,8.183322,0,8,1,25.698624,0,2,2,2019,13,3,33,30,1,3,0,11.683105,11.683105,0,0,0,0,0,1,1,0,0,0,46.67,55.57,47.18,55.31,3.333333333333333,1,1,0,0,11,2,4,0,605,68246.297,0,71291.891,79009.172,2302.1675 -12361,15243,27533,27534,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.9381938,7.6862855,53,-1,59.950134,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6598964,8.0240402,53.79,37.67,46.67,55.57,8.333333333333334,1,1,0,0,0,1,3,1,1255,751983.19,693806.5,246869.11,0,2519.9807 -12361,15243,27534,27533,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.9954233,6.5637293,53,1,-23.460527,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.267596,6.8956461,46.67,55.57,53.79,37.67,10,1,1,0,0,9,1,3,1,1255,751983.19,693806.5,246869.11,0,2519.9807 -12362,15244,27535,27536,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,63,-2,14.904925,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,62.39,56.71,69.72,27.71,10,1,1,0,0,0,7,2,0,443,243538.75,-21031.633,208574.34,0,2062.4209 -12362,15244,27536,27535,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.7589908,6.1794772,63,2,-17.532631,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,27.179401,0,0,1,1,0,0,5.6546574,69.72,27.71,62.39,56.71,10,1,1,0,0,0,7,2,0,443,243538.75,-21031.633,208574.34,0,2062.4209 -12363,15245,27537,27538,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.9063873,8.6549234,0,18,-4,97.483452,0,2,2,2019,6,0,40,43,1,0,0,19.012827,19.012827,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,7,1,5,1,425,412022.25,279228,418757.69,258474.38,4597.4209 -12363,15245,27538,27537,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6412487,8.3184929,0,18,4,105.30286,0,3,3,2019,6,0,40,42,1,0,0,17.427238,17.427238,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,12,1,5,1,425,412022.25,279228,418757.69,258474.38,4597.4209 -12364,15246,27539,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.1099424,8.2024307,0,0,0,-984.17731,0,2,2,2019,9,2,40,35,1,2,0,10.28359,10.28359,0,0,0,0,0,0,0,0,6.1142635,0,51.94,55.88,-9,-9,6.666666666666667,1,1,0,0,4,10,4,0,917,271370.59,-8474.7617,0,0,1739.3851 -12365,15247,27540,27541,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.5130944,7.6960983,57,-6,-45.250626,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,4.4394708,7.6309748,62.35,30.63,50.27,8.67,6.666666666666667,1,1,0,0,0,6,3,1,511,538088.5,300420.06,128235.45,0,2871.418 -12365,15247,27541,27540,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,6.5584569,6.5520506,57,6,-65.455833,0,3,3,2019,17,4,0,0,4,4,0,0,0,1,0,21.981441,0,0,1,1,0,1.8027171,6.6471872,50.27,8.67,62.35,30.63,3.333333333333333,1,1,0,0,0,6,3,1,511,538088.5,300420.06,128235.45,0,2871.418 -12366,15248,27542,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,8.6845169,8.5048161,0,0,-969.28015,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.897172,8.6222506,63.81,40.77,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,218,14554.358,54046.586,0,0,3181.5549 -12367,15249,27543,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1037.5682,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,34.32,19.62,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,1245,308090.16,0,134955.36,0,1253.495 -12368,15250,27544,27545,-9,-9,1,0,30,0,2,0,2,2,-9,1,4,6.4313207,6.3666477,0,13,-13,25.644125,0,-9,-9,2019,12,0,20,10,1,0,0,3.9062405,3.9062405,0,0,0,0,2,1,1,0,2.9769599,0,35.65,58.56,38.73,19.11,5,1,1,0,0,6,2,2,0,781.5,569.2793,0,0,0,2766.5757 -12368,15250,27545,27544,-9,-9,1,1,43,0,2,0,2,2,-9,1,1,6.5413365,6.6332521,0,13,13,77.742767,0,-9,-9,2019,18,6,15,10,1,6,0,5.7414117,5.7414117,0,0,0,0,0,1,1,0,1.716892,0,38.73,19.11,35.65,58.56,5,1,1,0,0,8,2,2,0,781.5,569.2793,0,0,0,2766.5757 -12368,15250,27546,-9,27544,27545,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1008.2077,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.1,57.51,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,781.5,569.2793,0,0,0,2766.5757 -12368,15250,27547,-9,27544,27545,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-809.1676,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,781.5,569.2793,0,0,0,2766.5757 -12369,15251,27548,27549,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.9925842,6.7458735,0,39,-2,-17.89587,0,3,3,2019,12,0,20,0,1,0,0,8.1485777,8.1485777,0,0,0,0,0,0,0,0,0,0,38.27,52.67,57,55,8.333333333333334,1,1,0,0,4,13,3,1,389.5,78228.938,82418.461,0,0,893.17975 -12369,15251,27549,27548,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,6.7995453,7.0496469,0,39,2,-118.07327,0,3,3,2019,6,0,70,60,1,0,0,1.6395073,1.6395073,0,0,0,0,0,0,0,0,0,0,57,55,38.27,52.67,10,1,1,0,0,11,13,3,1,389.5,78228.938,82418.461,0,0,893.17975 -12370,15252,27550,-9,27551,27552,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.18695,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 -12370,15252,27551,27552,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,0,0,0,2,-3,6.0701056,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.42,59.09,47.85,59.13,6.666666666666667,1,1,0,0,0,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 -12370,15252,27552,27551,-9,-9,1,1,27,1,2,0,3,3,-9,0,3,7.6664839,7.6311169,0,2,3,97.393501,0,-9,-9,2019,11,3,56,60,1,3,0,4.4133501,4.4133501,0,0,0,0,0,1,1,0,0,0,47.85,59.13,44.42,59.09,5,1,1,0,0,3,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 -12370,15252,27553,-9,27551,27552,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.99371,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,178,-22815.52,-83968.25,0,0,1610.3528 -12371,15253,27554,27555,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.818584,8.0242338,10,2,12.723064,0,1,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.2896011,7.9364338,70.63,25.41,52.82,53.97,10,1,1,0,0,8,12,4,1,368,1330740.8,917832.38,288520.94,0,1777.3165 -12371,15253,27555,27554,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,7.3793712,7.5097532,10,-2,35.755848,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.7165132,7.421205,52.82,53.97,70.63,25.41,8.333333333333334,1,1,0,0,10,12,4,1,368,1330740.8,917832.38,288520.94,0,1777.3165 -12372,15254,27556,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1512299,8.1526089,0,0,0,-863.50836,0,3,3,2019,12,1,38,38,1,1,0,12.430087,12.430087,0,0,0,0,0,0,0,0,0,0,46.31,51.53,-9,-9,5,2,3,0,0,11,6,4,1,725,-230711.89,-5682.5254,0,0,1700.3688 -12373,15255,27557,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.1588106,8.0642185,0,0,0,-912.46094,0,3,3,2019,8,0,58,55,1,0,0,6.7345853,6.7345853,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,2,3,0,0,10,6,4,1,263,602130.5,199763.23,108955.38,0,1520.4452 -12374,15256,27558,-9,27561,27559,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.96863,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 -12374,15256,27559,27561,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.6783123,9.9146566,0,16,-8,156.86861,0,2,2,2019,5,1,80,50,1,1,0,24.120724,24.120724,0,0,0,0,0,0,0,0,0,0,54.32,57.85,49.25,61.25,8.333333333333334,2,3,0,0,12,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 -12374,15256,27560,-9,27561,27559,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-916.578,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 -12374,15256,27561,27559,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,16,8,-102.55248,0,2,-9,2019,15,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,6.9659371,0,49.25,61.25,54.32,57.85,8.333333333333334,1,1,0,0,0,7,5,1,633.25,41108.727,-28233.293,0,0,6953.6675 -12375,15257,27562,27563,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.5758781,8.1214714,5.999495,42,0,63.370796,0,2,2,2019,13,3,30,30,1,3,0,6.9792781,6.9792781,0,0,0,0,0,0,0,0,0,5.5991678,57.74,49,50,49,8.333333333333334,1,1,0,0,13,10,5,1,556,179303.61,64538.785,191859.88,18015.072,3478.5215 -12375,15257,27563,27562,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.6054926,8.5069361,0,11,0,-66.612251,0,-9,-9,2019,10,0,37,38,1,1,0,15.138058,15.138058,0,0,0,0,0,0,0,0,0,0,50,49,57.74,49,7,1,1,0,0,1,10,5,1,556,179303.61,64538.785,191859.88,18015.072,3478.5215 -12376,15258,27564,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.6665454,7.8175392,0,0,-1118.0148,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.5391898,7.7252746,36.14,59.14,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,977,832750.94,160593.78,205815.48,0,1753.2665 -12377,15259,27565,27566,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.5772657,7.6154308,5.0497322,7,0,-92.386787,0,3,2,2019,12,0,22,22,1,0,0,8.4818535,8.4818535,0,0,0,0,2,1,1,0,3.7371383,5.395463,54.1,59.11,44.65,16.42,8.333333333333334,1,1,0,0,8,12,3,1,444.5,417757.69,125892.89,121070.34,5524.7808,2079.0342 -12377,15259,27566,27565,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,6.3740015,6.5955882,7,0,-27.271656,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.2655644,44.65,16.42,54.1,59.11,5,1,1,0,0,0,12,3,1,444.5,417757.69,125892.89,121070.34,5524.7808,2079.0342 -12378,15260,27567,27568,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.4304338,7.4456096,59,6,-63.481888,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,8.3336449,0,0,1,1,0,.55247289,7.6620951,56.01,27.43,57.06,57.76,3.333333333333333,1,1,0,0,0,5,3,1,464,482805.88,251514.56,269652.06,0,2042.5696 -12378,15260,27568,27567,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,6.7558312,6.7267594,59,-6,5.6480579,0,-9,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8562608,6.5817389,57.06,57.76,56.01,27.43,10,1,1,0,0,0,5,3,1,464,482805.88,251514.56,269652.06,0,2042.5696 -12379,15261,27569,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,7.7881598,7.5390677,0,0,0,-1004.4565,0,2,2,2019,13,1,30,30,1,1,1,8.2436399,8.2436399,0,0,0,0,0,1,1,0,0,0,40.88,49.19,-9,-9,3.333333333333333,1,1,0,0,12,4,3,1,290,145910.31,-57355.496,0,0,1445.2355 -12380,15262,27570,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-937.31195,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0606976,0,57.33,53.46,-9,-9,10,1,1,0,0,0,13,1,1,343,-5817.9199,0,0,0,774.51123 -12381,15263,27571,27572,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.2097077,6.3675318,10,0,12.66535,-9,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3683758,58.74,35.37,48.45,57.49,6.666666666666667,1,1,0,0,12,13,2,1,1755.5,160493.25,81461.945,188954.56,0,462.43524 -12381,15263,27572,27571,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,53,0,36.803471,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.45,57.49,58.74,35.37,8.333333333333334,1,1,0,0,0,13,2,1,1755.5,160493.25,81461.945,188954.56,0,462.43524 -12382,15264,27573,-9,27574,27576,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-928.69495,-9,2,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.95,63.66,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 -12382,15264,27574,27576,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.1183362,7.9291873,5.7289534,12,2,111.05943,0,2,3,2019,6,0,39,30,1,0,0,5.068429,5.068429,0,0,0,0,0,1,1,0,6.7255855,0,51.24,58.84,52,54.51,8.333333333333334,1,1,0,0,12,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 -12382,15264,27575,-9,27574,27576,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.17926,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 -12382,15264,27576,27574,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.4218044,8.4147415,0,12,-2,-102.41414,0,2,2,2019,7,0,38,37,1,0,0,15.217357,15.217357,0,0,0,1.5393738,0,1,1,0,0,0,52,54.51,51.24,58.84,8.333333333333334,1,1,0,0,9,12,3,1,505.5,5920.9238,45293.078,127217.02,45687.66,3403.7886 -12383,15265,27577,27578,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,3,0,5.0084095,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3327594,0,57.16,56.15,59.31,49.81,10,1,1,0,0,6,8,4,1,757.5,3662526.5,667056.44,1795213.8,0,3503.5586 -12383,15265,27578,27577,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1777611,8.3533211,3,9,35.148567,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9602026,8.7194872,59.31,49.81,57.16,56.15,8.333333333333334,1,1,0,0,0,8,4,1,757.5,3662526.5,667056.44,1795213.8,0,3503.5586 -12384,15266,27579,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1178.2887,0,2,2,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.4467113,0,21.97,21.3,-9,-9,0,1,1,0,0,0,4,1,0,219,-169186.59,326764.69,0,0,1749.5309 -12385,15267,27580,-9,27581,27582,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.42944,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,1499.3334,-11446.974,0,0,0,603.06421 -12385,15267,27581,27582,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,6.5152392,6.773243,0,3,-4,-9.4678535,0,-9,-9,2019,16,4,11,20,1,4,0,7.2904062,7.2904062,0,0,0,0,0,1,1,0,0,0,49.26,54.61,38.57,58.06,6.666666666666667,1,1,0,0,4,2,2,1,1499.3334,-11446.974,0,0,0,603.06421 -12385,15267,27582,27581,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,5.3924375,5.1601992,0,3,4,113.40492,0,2,2,2019,13,2,42,42,1,2,0,.47776818,.47776818,0,0,0,0,0,1,1,0,0,0,38.57,58.06,49.26,54.61,6.666666666666667,1,1,0,0,7,2,2,1,1499.3334,-11446.974,0,0,0,603.06421 -12386,15268,27583,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2393045,8.5644817,0,0,0,-879.66046,0,3,2,2019,23,9,57,54,1,9,0,8.3954153,8.3954153,0,0,0,0,14.5,1,1,0,2.8054488,0,33.59,50.85,-9,-9,1.666666666666667,4,2,0,0,11,6,4,1,391,339616.38,507925.91,238256.06,0,2117.5491 -12387,15269,27584,27586,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,9.8329992,9.8027859,0,16,-8,69.129021,0,2,1,2019,17,6,49,52,1,6,0,43.748158,43.748158,0,0,0,0,0,0,0,0,3.5987384,0,46.42,59.64,43.92,62.31,8.333333333333334,1,1,0,0,10,8,5,1,524.33331,-181597.59,0,0,0,8620.4326 -12387,15269,27585,-9,27586,27584,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.65131,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,524.33331,-181597.59,0,0,0,8620.4326 -12387,15269,27586,27584,-9,-9,1,0,48,1,1,0,2,2,-9,0,5,8.9782686,8.8971806,0,8,8,33.103817,0,-9,-9,2019,15,3,35,34,1,3,0,20.709497,20.709497,0,0,0,0,0,0,0,0,0,0,43.92,62.31,46.42,59.64,8.333333333333334,1,1,0,0,7,8,5,1,524.33331,-181597.59,0,0,0,8620.4326 -12388,15270,27587,27589,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.8643322,7.6815171,0,28,0,79.960854,0,2,2,2019,11,0,32,30,1,0,0,8.9664431,8.9664431,0,0,0,0,0,1,1,0,0,0,55.11,47.63,53,54,8.333333333333334,1,1,0,0,8,5,4,1,1106.6666,744090.88,318430.78,245840.78,57466.73,3766.311 -12388,15270,27588,-9,27587,27589,1,1,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-1089.21,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,44.4,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,1106.6666,744090.88,318430.78,245840.78,57466.73,3766.311 -12388,15270,27589,27587,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5441294,8.3869085,0,6,0,-6.2329288,-9,-9,-9,2019,9,0,40,0,1,1,0,18.637665,18.637665,0,0,0,0,0,1,1,0,0,0,53,54,55.11,47.63,8,1,1,0,0,1,5,4,1,1106.6666,744090.88,318430.78,245840.78,57466.73,3766.311 -12389,15271,27590,27591,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,6,-1,-17.790129,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,42.49,14.43,43.2,59.97,3.333333333333333,1,1,0,1,0,4,2,0,980.5,-1806.1641,35242.715,74330.938,0,2121.5522 -12389,15271,27591,27590,-9,-9,1,0,53,0,0,0,3,3,-9,1,4,5.6203113,5.4648762,0,6,1,65.627686,0,3,3,2019,12,3,5,0,1,3,0,6.3981743,6.3981743,0,0,0,0,120,1,1,0,0,0,43.2,59.97,42.49,14.43,8.333333333333334,1,1,0,0,1,4,2,0,980.5,-1806.1641,35242.715,74330.938,0,2121.5522 -12390,15272,27592,27593,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.8578,7.4452567,0,23,8,15.80072,0,3,3,2019,4,0,58,60,1,0,0,5.6091461,5.6091461,0,0,0,0,0,0,0,0,0,0,60.3,46.58,54.06,17.65,6.666666666666667,1,1,0,0,5,4,4,0,1278,325590.06,243457.8,0,0,1871.5548 -12390,15272,27593,27592,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,7.8587413,7.3561959,0,23,-8,27.29365,0,3,3,2019,17,5,30,26,1,5,0,7.2006602,7.2006602,0,0,0,0,0,0,0,0,0,0,54.06,17.65,60.3,46.58,5,1,1,0,0,4,4,4,0,1278,325590.06,243457.8,0,0,1871.5548 -12391,15273,27594,27595,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,5.5293908,5.486311,52,3,-88.122353,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.987165,5.6419826,61.8,45.76,56.73,39.96,10,1,1,0,0,5,4,2,1,413,342608,157212.44,177246.72,0,1151.6021 -12391,15273,27595,27594,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.200141,5.2620559,52,-3,62.090385,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9877038,56.73,39.96,61.8,45.76,10,1,1,0,0,5,4,2,1,413,342608,157212.44,177246.72,0,1151.6021 -12392,15274,27596,27598,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,0,0,0,20,3,-82.478012,0,3,3,2019,31,12,0,39,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,37.26,44.13,42.85,38.11,1.666666666666667,2,3,1,0,7,8,4,1,439,992056,237758.75,699062.44,126539.57,3270.436 -12392,15274,27597,-9,27598,27596,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1005.1772,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,2,3,-9,0,0,8,4,1,439,992056,237758.75,699062.44,126539.57,3270.436 -12392,15274,27598,27596,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.9097967,9.0210142,0,20,-3,52.44228,0,2,1,2019,12,1,29,41,1,1,0,29.448473,29.448473,0,0,0,0,0,1,1,0,1.0737315,0,42.85,38.11,37.26,44.13,3.333333333333333,2,3,0,0,10,8,4,1,439,992056,237758.75,699062.44,126539.57,3270.436 -12392,15275,27599,-9,27598,27596,1,1,18,0,1,1,2,0,0,0,3,0,7.4262924,7.5085349,0,0,-883.7702,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,7.4942389,0,65.63,37.29,-9,-9,8.333333333333334,2,3,0,0,1,8,3,1,714,-161956.13,0,0,0,703.3999 -12393,15276,27600,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.5670748,8.7786407,0,0,0,-992.02527,0,-9,-9,2019,12,0,40,41,1,0,0,14.869788,14.869788,0,0,0,0,0,0,0,0,3.1727066,0,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,4,7,5,1,558,68989.867,-10007.803,0,0,2088.6387 -12394,15277,27601,27602,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.6283221,7.5757594,4.2909727,9,0,5.1745152,0,-9,-9,2019,14,2,36,40,1,2,0,6.3341303,6.3341303,0,0,0,0,0,1,1,0,0,4.0643868,51.28,37.38,44.33,27.14,5,1,1,0,0,11,8,3,1,546.5,1098061.3,182320.61,702344.75,0,1732.9132 -12394,15277,27602,27601,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,0,0,9,9,-93.531586,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.33,27.14,51.28,37.38,6.666666666666667,1,1,0,1,0,8,3,1,546.5,1098061.3,182320.61,702344.75,0,1732.9132 -12395,15278,27603,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.3832107,7.4964218,0,0,-1084.739,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0928583,7.0397158,60.23,39.8,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,979,853272.31,131996.31,157555.48,0,1914.2458 -12396,15279,27604,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-954.84753,-9,-9,-9,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.8,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,1043,0,0,0,0,681.1391 -12397,15280,27605,27606,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.9683423,7.0217857,7,2,77.174614,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.9097834,7.0929561,52.56,43.29,50.36,46.92,8.333333333333334,1,1,0,0,1,11,3,1,881.5,993036.38,744961.13,353864.56,0,3545.5747 -12397,15280,27606,27605,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7047629,7.8658805,7,-2,106.45193,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.281425,7.635951,50.36,46.92,52.56,43.29,10,1,1,0,0,0,11,3,1,881.5,993036.38,744961.13,353864.56,0,3545.5747 -12398,15281,27607,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.0468798,7.6666517,0,0,-1086.1475,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.819725,52.69,43.18,-9,-9,8.333333333333334,2,3,0,0,0,9,4,1,511,642601.69,366387.25,446350.5,0,1355.5474 -12399,15282,27608,27609,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,8.6020069,8.3559294,0,20,1,-113.81482,-9,3,3,2019,18,7,40,0,1,7,0,15.807593,15.807593,0,0,0,0,0,1,1,0,0,0,41.64,54.12,49.86,55.31,5,1,1,0,0,9,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 -12399,15282,27609,27608,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.9660697,7.8908014,0,20,-1,35.925026,-9,2,3,2019,11,0,38,0,1,0,0,8.3329859,8.3329859,0,0,0,0,0,1,1,0,0,0,49.86,55.31,41.64,54.12,6.666666666666667,1,1,0,0,9,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 -12399,15282,27610,-9,27609,27608,1,0,17,0,1,1,2,0,-9,0,3,0,4.7463131,4.6758728,0,0,-1075.4833,-9,2,3,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,4.8529015,0,40.65,57.36,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 -12399,15282,27611,-9,27609,27608,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.44299,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,375.5,141676.83,389.24805,161986.36,51410.176,3094.9399 -12400,15283,27612,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.2389793,8.2926788,0,0,0,-1066.2507,0,-9,-9,2019,8,0,48,56,1,0,0,8.3632593,8.3632593,0,0,0,0,0,0,0,0,1.9869429,0,43.05,51.77,-9,-9,6.666666666666667,1,1,0,0,13,9,4,1,1080,547470.69,212508.38,151093.61,0,1780.443 -12401,15284,27613,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1057.4845,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.58,28.22,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,73,0,0,0,0,759.24316 -12402,15285,27614,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1016.2679,0,-9,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,.7127167,0,32.63,57.01,-9,-9,5,1,1,0,0,5,12,1,1,1622,57857.125,0,0,0,1620.4702 -12403,15286,27615,27618,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.423748,7.185061,0,9,1,-43.50605,0,-9,-9,2019,6,0,50,50,1,0,0,3.9115136,3.9115136,0,0,0,0,0,0,0,0,8.4204922,0,50.28,51.35,27.81,65.69,8.333333333333334,1,1,0,0,3,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 -12403,15286,27616,-9,27618,27615,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.0903,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 -12403,15286,27617,-9,27618,27615,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.14624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 -12403,15286,27618,27615,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.5663939,8.6489658,0,19,-1,-2.2935572,0,1,1,2019,14,4,30,50,1,4,0,19.41608,19.41608,0,0,0,0,0,0,0,0,0,0,27.81,65.69,50.28,51.35,8.333333333333334,1,1,0,0,4,5,4,1,231.75,350476.84,246505.28,257013.84,188317.67,4784.6118 -12404,15287,27619,27620,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.9283624,8.2562256,7.4278612,20,18,-23.899115,0,3,2,2019,11,1,30,39,1,1,0,10.866898,10.866898,0,0,0,0,0,1,1,0,6.2563601,7.218461,49.76,47.65,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,318.5,509694.38,584204.5,0,0,5167.7578 -12404,15287,27620,27619,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.8022842,9.1938019,0,20,-18,21.411156,0,2,2,2019,7,0,43,45,1,0,0,21.625517,21.625517,0,0,0,0,0,1,1,0,2.7346258,0,57.06,57.76,49.76,47.65,8.333333333333334,1,1,0,0,9,10,5,1,318.5,509694.38,584204.5,0,0,5167.7578 -12405,15288,27621,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,3,8.3719416,8.3839655,0,0,0,-953.13983,0,3,3,2019,8,0,55,52,1,0,0,7.9929805,7.9929805,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,1763,-20940.672,0,0,0,1875.4716 -12406,15289,27622,27623,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.363658,8.5339804,0,5,-2,-68.436325,0,-9,-9,2019,9,0,40,37,1,1,0,10.56837,10.56837,0,0,0,0,0,0,0,0,0,0,54,54,57.06,57.76,7,1,1,0,0,1,9,4,1,937.5,275936.19,7296.3662,108681.59,12486.333,2905.2168 -12406,15289,27623,27622,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,7.5446453,7.7377448,29,2,-92.482201,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.2035995,7.4296241,57.06,57.76,54,54,6.666666666666667,1,1,0,0,4,9,4,1,937.5,275936.19,7296.3662,108681.59,12486.333,2905.2168 -12406,15290,27624,-9,27623,27622,1,1,22,0,0,0,2,2,-9,0,4,6.9419751,6.4522738,0,0,0,-897.89252,-9,2,2,2019,11,0,35,0,1,2,1,3.1573493,3.1573493,0,0,0,0,0,0,0,0,.9909507,0,49,58,-9,-9,7,1,1,0,0,1,9,2,1,531,-123663.01,0,0,0,152.41718 -12407,15291,27625,27628,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.9546962,6.76864,0,3,-16,-44.550892,0,-9,-9,2019,7,0,18,11,1,0,0,6.0085206,6.0085206,0,0,0,0,0,1,1,0,0,0,59.7,53.75,49.29,54.59,10,1,1,0,0,9,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 -12407,15291,27626,-9,27625,27628,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.80341,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 -12407,15291,27627,-9,27625,27628,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.0107,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 -12407,15291,27628,27625,-9,-9,1,1,49,0,2,0,3,3,-9,0,3,8.071167,8.1310663,0,3,16,102.47193,0,-9,-9,2019,6,0,50,24,1,0,0,9.0871429,9.0871429,0,0,0,0,0,1,1,0,0,0,49.29,54.59,59.7,53.75,8.333333333333334,1,1,0,0,4,1,3,1,2269,279843.44,109326.65,94927.703,14796.933,2849.4368 -12408,15292,27629,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,5.0807924,5.1588836,0,0,0,-1025.2526,0,3,2,2019,7,0,50,50,1,0,0,.38106942,.38106942,0,0,0,0,2,0,0,0,7.6692982,0,54.12,34.81,-9,-9,6.666666666666667,1,1,0,0,6,9,2,1,1303,723184.75,48736.645,764531.31,49506.609,924.22131 -12409,15293,27630,-9,-9,-9,1,1,22,0,0,0,2,2,0,0,5,0,5.0209007,5.6341753,0,0,-972.00043,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.408514,0,54.69,57.47,-9,-9,10,1,1,0,0,5,12,2,0,951,109928.44,0,0,0,95.73484 -12410,15294,27631,27632,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,7.9970503,7.9531608,0,5,-4,-132.19553,-9,-9,-9,2019,7,1,24,0,1,1,0,15.653067,15.653067,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.59,59.97,10,1,1,0,0,6,4,5,1,333,-149636.16,112825.74,0,0,3650.1494 -12410,15294,27632,27631,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.3185072,8.0584126,0,5,4,-14.649285,0,-9,-9,2019,10,0,14,0,1,0,0,26.279491,26.279491,0,0,0,0,0,1,1,0,4.0915098,0,46.59,59.97,57.16,56.15,8.333333333333334,1,1,0,0,2,4,5,1,333,-149636.16,112825.74,0,0,3650.1494 -12411,15295,27633,27634,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.9738202,8.1586981,35,2,23.371023,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.6684191,8.0091867,61.12,51.57,54.2,57.49,8.333333333333334,1,1,0,0,5,7,3,1,626,1978832.5,1101831,463764.56,0,1873.3141 -12411,15295,27634,27633,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.9494352,6.6496172,7,-2,14.213655,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,4.9178324,6.3044467,54.2,57.49,61.12,51.57,8.333333333333334,1,1,0,0,7,7,3,1,626,1978832.5,1101831,463764.56,0,1873.3141 -12412,15296,27635,-9,27638,27637,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-861.80817,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 -12412,15296,27636,-9,27638,27637,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1080.6897,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 -12412,15296,27637,27638,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4227133,9.8368168,0,21,2,78.861496,0,1,1,2019,9,0,53,55,1,0,0,40.49255,40.49255,0,0,0,0,0,0,0,0,8.4357691,0,55.19,54.26,51.24,58.84,8.333333333333334,1,1,0,0,13,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 -12412,15296,27638,27637,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,6.1107206,6.4404364,0,21,-2,78.498306,0,2,1,2019,12,2,25,35,1,2,0,2.2099738,2.2099738,0,0,0,0,0,0,0,0,9.1704855,0,51.24,58.84,55.19,54.26,8.333333333333334,2,3,0,0,12,8,5,1,2487.75,591411.75,463545.63,0,0,10333.443 -12413,15297,27639,-9,-9,-9,1,0,65,0,0,0,2,2,-9,1,2,7.0825949,7.0401936,3.8321626,0,0,-1111.377,0,2,2,2019,6,0,16,16,1,0,0,6.202455,6.202455,1,0,0,0,0,1,1,0,0,3.9062769,61.05,26.05,-9,-9,3.333333333333333,1,1,0,0,6,9,2,0,234,1509968.6,310607.69,1244504.3,0,1647.9384 -12414,15298,27640,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0386229,7.8360839,0,0,0,-1040.593,0,-9,-9,2019,5,0,45,50,1,0,0,9.0712261,9.0712261,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,1244,431897.31,0,0,0,1011.8839 -12415,15299,27641,27642,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,5,0,58.298935,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7643239,0,51,46,51.19,49.37,8.333333333333334,1,1,0,0,0,2,2,1,598,121917.13,60610.043,149175.34,0,1188.032 -12415,15299,27642,27641,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.4030976,6.4688406,5,0,-112.36792,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.7264829,51.19,49.37,51,46,10,1,1,0,0,6,2,2,1,598,121917.13,60610.043,149175.34,0,1188.032 -12416,15300,27643,27644,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3124237,8.466301,0,7,-1,56.416767,0,-9,-9,2019,7,0,41,41,1,0,0,16.145424,16.145424,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,2,7,5,1,766.5,1179996,432825.5,645455.5,92082.188,4079.2791 -12416,15300,27644,27643,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9601526,8.7825403,0,7,1,52.086437,0,3,2,2019,8,0,42,45,1,0,0,16.872595,16.872595,0,0,0,0,0,0,0,0,2.9880867,0,54.96,53.17,57.16,56.15,5,1,1,0,0,10,7,5,1,766.5,1179996,432825.5,645455.5,92082.188,4079.2791 -12417,15301,27645,27646,-9,-9,1,0,47,0,3,0,3,3,-9,0,4,0,0,0,16,1,114.95906,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,67.7,23.88,52,55,6.666666666666667,4,5,0,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 -12417,15301,27646,27645,-9,-9,1,1,46,0,3,0,3,3,-9,0,4,8.8616161,8.6368084,0,16,-1,-26.437723,0,3,3,2019,9,0,35,35,1,1,0,21.297318,21.297318,0,0,0,0,0,1,1,0,0,0,52,55,67.7,23.88,8,4,5,0,0,1,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 -12417,15301,27647,-9,27645,27646,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-825.66559,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 -12417,15301,27648,-9,27645,27646,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1097.0313,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 -12417,15301,27649,-9,27645,27646,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.41797,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,8,3,0,781.59998,198810.64,17249.295,489802.31,159256.33,3486.7197 -12418,15302,27650,27651,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,9.0507727,9.1311703,5.0399265,42,-4,76.949425,0,2,2,2019,10,0,2,-9,1,0,0,511.18353,511.18353,0,0,0,0,0,1,1,0,8.6744976,5.5300741,36.48,61.57,58.56,46.45,6.666666666666667,1,1,0,0,10,11,5,1,334,1857892.8,1592280.1,259542.88,0,12357.125 -12418,15302,27651,27650,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.4386506,6.7466841,42,4,15.044989,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.6297379,6.6471457,58.56,46.45,36.48,61.57,8.333333333333334,1,1,0,0,10,11,5,1,334,1857892.8,1592280.1,259542.88,0,12357.125 -12419,15303,27652,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.6073856,8.2460518,0,0,0,-1008.5289,0,3,3,2019,5,0,41,38,1,0,0,13.100166,13.100166,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,9,8,5,0,593,245873.95,58426.379,0,0,2025.7089 -12420,15304,27653,27654,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.6277227,8.4337025,0,11,-3,-140.33969,0,3,3,2019,7,0,44,44,1,0,0,14.999543,14.999543,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.18,54.77,6.666666666666667,1,1,0,0,12,4,4,1,362,1140531.4,852870.38,225332.28,0,3196.2222 -12420,15304,27654,27653,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.1447449,8.1070452,0,11,3,104.28132,0,-9,-9,2019,8,0,42,41,1,0,0,8.3371649,8.3371649,0,0,0,0,0,1,1,0,0,0,45.18,54.77,60.12,54.8,6.666666666666667,1,1,0,0,12,4,4,1,362,1140531.4,852870.38,225332.28,0,3196.2222 -12420,15305,27655,-9,27653,27654,1,1,23,0,1,0,2,2,1,0,4,7.3467565,7.1501594,0,0,0,-1039.7828,-9,2,2,2019,11,0,20,0,1,0,1,11.120792,11.120792,0,0,0,0,0,1,1,0,0,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,6,4,3,1,103,38149.516,0,0,0,384.76746 -12421,15306,27656,27657,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.2504864,8.3821201,0,6,-2,63.813164,0,2,2,2019,22,10,53,51,1,10,0,9.8605604,9.8605604,0,0,0,0,0,1,1,0,2.2913637,0,35.91,63.19,55.34,54.6,3.333333333333333,1,1,0,0,7,6,5,1,761,340822.66,43069.449,226375.38,47622.195,4071.48 -12421,15306,27657,27656,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.9412737,8.6191416,0,6,2,-173.14282,0,-9,-9,2019,9,1,40,40,1,1,0,21.922729,21.922729,0,0,0,0,0,1,1,0,3.3096752,0,55.34,54.6,35.91,63.19,8.333333333333334,1,1,0,0,7,6,5,1,761,340822.66,43069.449,226375.38,47622.195,4071.48 -12421,15307,27658,-9,27656,27657,1,1,18,0,0,0,2,2,1,0,5,5.5659795,5.3592587,0,0,0,-1010.331,-9,1,2,2019,8,0,6,0,1,0,1,5.086237,5.086237,0,0,0,0,0,1,1,0,1.0805805,0,57.06,57.76,-9,-9,10,1,1,0,0,1,6,2,1,589,82376.594,0,0,0,603.85358 -12422,15308,27659,27660,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,9.0929279,9.2816534,0,10,-13,-85.994186,0,3,3,2019,17,4,46,46,1,4,0,21.200661,21.200661,0,0,0,0,0,1,1,0,6.4596362,0,48.7,32.13,51.77,58.57,8.333333333333334,1,1,0,0,11,12,5,1,1390.5,1798803.8,729299.63,420887.31,0,4937.8647 -12422,15308,27660,27659,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9634924,8.0078087,10,13,-168.9091,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.4589877,8.0527477,51.77,58.57,48.7,32.13,8.333333333333334,1,1,0,0,2,12,5,1,1390.5,1798803.8,729299.63,420887.31,0,4937.8647 -12423,15309,27661,27662,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,9.3420744,8.8712034,0,24,-21,-9.967618,0,3,2,2019,12,0,30,20,1,0,0,42.44614,42.44614,0,0,0,0,0,0,0,0,7.7774391,0,41.75,46.65,52,47,1.666666666666667,1,1,0,0,8,4,5,1,319.33334,1807815.1,378927.19,785524.56,0,9582.71 -12423,15309,27662,27661,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,9.1419544,9.3210001,0,7,21,-53.768429,0,-9,-9,2019,10,0,50,50,1,1,0,25.60523,25.60523,0,0,0,0,0,0,0,0,7.057137,0,52,47,41.75,46.65,7,1,1,0,0,1,4,5,1,319.33334,1807815.1,378927.19,785524.56,0,9582.71 -12423,15309,27663,-9,27661,27662,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1093.0492,-9,1,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,.74658257,0,57.06,57.76,-9,-9,10,1,1,0,0,3,4,5,1,319.33334,1807815.1,378927.19,785524.56,0,9582.71 -12423,15310,27664,-9,27661,27662,1,1,19,0,1,0,2,2,-9,0,4,7.5938311,7.4279094,0,0,0,-1033.4362,0,1,2,2019,10,0,50,32,1,2,1,4.3778458,4.3778458,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,3,1,241,103386.89,0,0,0,811.76764 -12424,15311,27665,27666,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3658257,7.2797451,39,-1,-1.0060382,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.69839,7.6251674,54.96,53.17,50,47,8.333333333333334,1,1,0,0,0,2,3,1,1031,478733.75,498788.03,124146.83,0,2364.8225 -12424,15311,27666,27665,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8337603,6.1387138,39,1,-55.29377,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7818336,6.1932082,50,47,54.96,53.17,8.333333333333334,1,1,0,0,0,2,3,1,1031,478733.75,498788.03,124146.83,0,2364.8225 -12425,15312,27667,27668,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,22,10,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,3.634845,21.68553,23.374908,0,1,1,0,0,0,56,44,57.48,16.73,8,1,1,0,0,0,11,2,1,649,115429.47,0,117498.51,0,1600.8379 -12425,15312,27668,27667,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,8,-10,0,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,27.463873,0,0,1,1,0,0,0,57.48,16.73,56,44,5,1,1,0,0,0,11,2,1,649,115429.47,0,117498.51,0,1600.8379 -12426,15313,27669,27670,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,8,3,-42.486088,0,3,3,2019,11,1,0,30,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,46.22,34.6,57.57,49.69,8.333333333333334,1,1,0,1,8,11,2,1,667,727087.13,189368.58,132248.97,0,1243.7908 -12426,15313,27670,27669,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9238911,6.6670027,8,-3,-51.174809,0,3,3,2019,8,0,0,32,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0929413,57.57,49.69,46.22,34.6,1.666666666666667,1,1,0,0,8,11,2,1,667,727087.13,189368.58,132248.97,0,1243.7908 -12427,15314,27671,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.3233819,7.6151338,0,0,0,-928.72015,0,2,2,2019,35,12,50,50,1,12,0,4.8308482,4.8308482,0,0,0,0,0,0,0,0,0,0,38.04,64.75,-9,-9,0,1,1,0,1,10,7,3,1,118,-161631.05,5565.2368,0,0,985.47546 -12428,15315,27672,27673,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.4838371,7.6094708,58,5,-87.383713,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3871069,7.6421447,48.89,38.67,46.85,27.3,6.666666666666667,1,1,0,0,0,7,3,1,1470,1003128.8,56090.898,536134.63,0,3320.707 -12428,15315,27673,27672,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.6387362,6.8923302,58,-5,-80.861664,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,18.328604,0,0,1,1,0,4.35253,6.8112488,46.85,27.3,48.89,38.67,5,1,1,0,0,0,7,3,1,1470,1003128.8,56090.898,536134.63,0,3320.707 -12429,15316,27674,27675,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.0942144,7.6283245,0,2,-5,89.976921,0,-9,-9,2019,6,1,35,35,1,1,0,7.458694,7.458694,0,0,0,0,0,0,0,0,7.2236471,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,521.5,670594.13,306724.09,320342.56,123035.95,5408.6904 -12429,15316,27675,27674,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.9995375,9.1727514,0,2,5,-37.366524,0,2,2,2019,8,0,51,49,1,0,0,20.55077,20.55077,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,521.5,670594.13,306724.09,320342.56,123035.95,5408.6904 -12430,15317,27676,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.1627264,8.0276461,0,0,-1089.9329,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9005237,8.2868662,57.7,55.88,-9,-9,10,1,1,0,0,0,6,4,1,484,828031.75,319451.22,214619.06,0,1860.25 -12431,15318,27677,27678,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.4501801,8.0864973,0,2,-3,-84.240318,0,-9,-9,2019,5,0,45,53,1,0,0,10.008112,10.008112,0,0,0,0,0,0,0,0,0,0,54.79,55.86,53.98,50.87,8.333333333333334,1,1,0,0,9,9,5,1,281,188175.52,59739.586,257854.61,175742.63,3949.5874 -12431,15318,27678,27677,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.6968775,8.5286636,0,2,3,-27.625927,0,2,2,2019,8,0,38,38,1,0,0,19.398993,19.398993,0,0,0,0,0,0,0,0,0,0,53.98,50.87,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,281,188175.52,59739.586,257854.61,175742.63,3949.5874 -12432,15319,27679,27680,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,0,0,0,5,0,38.805668,0,-9,-9,2019,28,12,0,37,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,20.3,66.55,52.82,53.97,8.333333333333334,1,1,0,0,3,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 -12432,15319,27680,27679,-9,-9,1,0,41,1,3,0,1,1,-9,0,4,8.8725195,8.5321522,0,5,0,94.218704,0,1,1,2019,8,1,21,38,1,1,0,37.605705,37.605705,0,0,0,0,0,0,0,0,4.6830778,0,52.82,53.97,20.3,66.55,8.333333333333334,1,1,0,0,9,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 -12432,15319,27681,-9,27680,27679,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.2092,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 -12432,15319,27682,-9,27680,27679,1,0,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-886.94537,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 -12432,15319,27683,-9,27680,27679,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-949.58209,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,659,183876.45,100446.1,121811.21,64995.789,2335.6521 -12433,15320,27684,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3836899,8.350914,0,0,0,-1016.0024,0,3,3,2019,10,0,40,40,1,0,0,14.155876,14.155876,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,5,1,1,0,0,9,13,5,1,243,-114037.62,196115.84,0,0,1484.9933 -12433,15321,27685,-9,-9,27684,1,1,22,0,0,0,2,2,-9,0,4,8.0099115,8.122262,0,0,0,-1044.1527,0,-9,2,2019,2,0,38,0,1,0,1,11.22126,11.22126,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,158,-13077.024,135749.44,0,0,1453.3958 -12433,15322,27686,-9,-9,27684,1,1,19,0,0,0,2,2,-9,0,5,8.0866518,7.9370146,0,0,0,-1089.4464,0,-9,2,2019,7,0,30,0,1,0,1,13.863069,13.863069,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,4,1,1809,262747.25,87086.039,0,0,1212.8049 -12434,15323,27687,-9,27688,27690,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-903.44281,-9,3,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 -12434,15323,27688,27690,-9,-9,1,0,51,0,2,0,3,3,-9,0,3,8.0519495,8.2624931,0,22,0,-113.32008,0,2,3,2019,9,0,40,45,1,0,0,9.2199335,9.2199335,0,0,0,0,2,1,1,0,2.1404648,0,52.48,55.6,51.37,46.97,8.333333333333334,1,1,0,0,10,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 -12434,15323,27689,-9,27688,27690,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.3755,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 -12434,15323,27690,27688,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.0633059,7.9386539,0,8,0,86.377937,0,3,-9,2019,11,1,40,42,1,1,0,9.1756668,9.1756668,0,0,0,0,0,1,1,0,0,0,51.37,46.97,52.48,55.6,6.666666666666667,1,1,0,0,9,7,4,1,406.25,-171405.03,-45713.738,0,0,2782.2402 -12434,15324,27691,-9,27688,27690,1,0,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-928.11835,1,3,2,2019,10,0,0,7,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,35.35,58.05,-9,-9,6.666666666666667,1,1,0,0,3,7,1,1,308,-229609.61,0,0,0,0 -12435,15325,27692,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,5.1149225,4.986567,0,0,-1034.7051,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,13.349922,0,0,1,1,0,0,4.8373609,55.6,11.23,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,613,-289232.06,0,0,0,1680.5425 -12436,15326,27693,27694,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.6627254,8.5230484,0,1,0,-55.132465,-9,-9,-9,2019,10,0,42,0,1,0,0,18.79142,18.79142,0,0,0,0,0,1,1,0,0,0,51.1,50.81,46.33,55.93,5,1,1,0,0,10,8,5,0,511.33334,1633865.3,435147.44,401764.19,0,5747.6499 -12436,15326,27694,27693,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,9.2207241,8.9767342,0,1,0,-115.91207,-9,2,3,2019,15,3,35,0,1,3,0,30.55821,30.55821,0,0,0,0,0,1,1,0,0,0,46.33,55.93,51.1,50.81,5,1,1,0,0,7,8,5,0,511.33334,1633865.3,435147.44,401764.19,0,5747.6499 -12436,15326,27695,-9,27694,27693,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.0603,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,8,5,0,511.33334,1633865.3,435147.44,401764.19,0,5747.6499 -12436,15327,27696,-9,27694,-9,1,1,18,1,1,1,2,0,-9,0,4,0,0,0,0,0,-1092.8436,-9,1,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.39,51.79,-9,-9,5,1,1,0,1,0,8,1,0,733,0,0,0,0,0 -12437,15328,27697,27698,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,10,-1,9.0497818,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,37.17,50.6,57.06,57.76,6.666666666666667,1,1,0,0,8,11,3,1,654.5,2106762.5,1374587.4,397527.31,0,1988.2393 -12437,15328,27698,27697,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,7.954318,8.1528521,10,1,7.0821743,0,1,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.917376,8.0610867,57.06,57.76,37.17,50.6,10,1,1,0,0,9,11,3,1,654.5,2106762.5,1374587.4,397527.31,0,1988.2393 -12438,15329,27699,27700,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.8541093,8.0461893,10,8,-129.18565,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.7574239,7.6562657,41.47,58.08,49.06,58.64,5,1,1,0,0,8,9,4,1,803.5,2513688.5,1589963.5,568457.25,0,2331.1035 -12438,15329,27700,27699,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5319471,8.2331333,0,10,-8,-51.300404,0,3,3,2019,10,0,58,29,1,0,0,11.681068,11.681068,0,0,0,0,0,1,1,0,0,0,49.06,58.64,41.47,58.08,8.333333333333334,1,1,0,0,11,9,4,1,803.5,2513688.5,1589963.5,568457.25,0,2331.1035 -12438,15330,27701,-9,27700,27699,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1110.3297,0,1,2,2019,23,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.39,-9,-9,5,1,1,1,1,6,9,1,1,1469,-665449.44,-33150.313,0,0,-80.910255 -12439,15331,27702,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.0170765,7.1770678,0,0,0,-1060.2395,0,-9,-9,2019,8,0,36,22,1,0,0,3.8847344,3.8847344,0,0,0,0,0,0,0,0,2.3370519,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,265,157772.48,30231.623,156620.7,21446.076,918.89099 -12439,15332,27703,-9,27702,-9,1,0,18,0,0,0,2,2,1,0,3,7.3589301,7.3965187,0,0,0,-970.01978,-9,2,-9,2019,6,0,28,0,1,0,1,5.975821,5.975821,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,236,186544.64,0,0,0,923.4483 -12440,15333,27704,27705,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,2.0620077,2.094481,6,8,5.8866482,0,2,-9,2019,10,1,0,0,4,1,0,0,0,1,0,4.3208952,0,0,1,1,0,2.4050581,1.9923863,63.41,39.7,70.87,32.17,10,1,1,0,0,0,7,2,1,701.5,372731.63,378006.06,295295.59,0,2708.3755 -12440,15333,27705,27704,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.9511137,7.1771598,6,-8,-97.199234,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8448639,7.0456719,70.87,32.17,63.41,39.7,10,1,1,0,0,4,7,2,1,701.5,372731.63,378006.06,295295.59,0,2708.3755 -12441,15334,27706,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.6763554,8.6004362,0,0,0,-1062.491,0,2,2,2019,8,0,42,43,1,0,0,17.444834,17.444834,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,796,427849.84,487386.97,278193.53,148749.2,2799.99 -12442,15335,27707,27708,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4337225,8.4431725,0,6,-6,-169.59343,0,-9,-9,2019,8,0,37,37,1,0,0,16.456703,16.456703,0,0,0,0,0,0,0,0,0,0,58.27,48.72,45.96,38.67,8.333333333333334,2,3,0,0,5,8,5,0,469.5,24287.285,-1602.1318,0,0,6974.1846 -12442,15335,27708,27707,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,9.2862644,9.8383446,0,6,6,13.687821,0,3,2,2019,15,3,45,40,1,3,0,28.6299,28.6299,0,0,0,0,0,0,0,0,6.9292932,0,45.96,38.67,58.27,48.72,8.333333333333334,2,3,0,0,10,8,5,0,469.5,24287.285,-1602.1318,0,0,6974.1846 -12443,15336,27709,27710,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,17,-5,-61.017166,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,67.78,36.33,65.06,41.58,8.333333333333334,4,2,0,0,8,9,5,0,1787.5,1601175,697641.5,828991.13,0,3101.1563 -12443,15336,27710,27709,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.911602,8.7821875,0,11,5,31.789167,0,-9,-9,2019,6,0,51,50,1,0,0,16.330297,16.330297,0,0,0,0,0,0,0,0,0,0,65.06,41.58,67.78,36.33,6.666666666666667,1,1,0,0,7,9,5,0,1787.5,1601175,697641.5,828991.13,0,3101.1563 -12444,15337,27711,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,4.5831561,4.3687491,0,0,-1016.3605,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,4.0509944,0,47.58,56.73,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,578,95004.797,0,0,0,-134.5265 -12445,15338,27712,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.3631272,7.2786536,0,0,-1012.3951,0,3,3,2019,10,0,0,8,4,0,0,0,0,0,0,0,0,0,1,1,0,2.825886,7.2144513,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,572,1342341.9,267497.81,630082.13,0,1729.8475 -12446,15339,27713,27714,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.570704,7.7444129,47,5,125.89966,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.54984397,7.5178432,47.15,56.66,53.72,41.27,8.333333333333334,1,1,0,0,0,5,3,1,170.5,582636.38,55345.816,150324.28,0,2385.1296 -12446,15339,27714,27713,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.2236066,6.2688532,47,-5,5.9351163,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3610752,5.7799187,53.72,41.27,47.15,56.66,8.333333333333334,1,1,0,0,5,5,3,1,170.5,582636.38,55345.816,150324.28,0,2385.1296 -12447,15340,27715,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.3117065,8.1664886,5.2314219,0,0,-967.79883,0,3,2,2019,5,0,37,35,1,0,0,13.850422,13.850422,0,0,0,0,0,1,1,0,6.926353,0,48.92,57.99,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,297,96772.102,24825.691,0,0,2071.1711 -12447,15340,27716,-9,27715,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-875.54987,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,297,96772.102,24825.691,0,0,2071.1711 -12448,15341,27717,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.8108535,8.1077518,0,0,-1113.6824,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3124914,7.799408,57.16,56.15,-9,-9,10,1,1,0,0,0,10,3,1,559,373632,99394.406,547984.56,160601.23,1599.0466 -12449,15342,27718,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1129.7438,0,-9,-9,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.74,36.56,-9,-9,0,1,1,0,0,0,1,1,0,532,-327078.28,0,0,0,2622.8323 -12450,15343,27719,27720,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.0459833,7.2309895,0,33,-13,-111.1307,0,3,3,2019,6,0,60,60,1,0,0,2.8138151,2.8138151,0,0,0,0,0,0,0,0,0,0,47.35,62.06,53.13,35.09,8.333333333333334,1,1,0,0,12,5,3,1,1075.5,979183.44,680339,203081.31,0,1426.5674 -12450,15343,27720,27719,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,7.2397356,7.4697614,0,33,13,82.437263,0,3,3,2019,7,0,65,60,1,0,0,2.5149755,2.5149755,0,0,0,0,0,0,0,0,2.9404707,0,53.13,35.09,47.35,62.06,6.666666666666667,1,1,0,0,13,5,3,1,1075.5,979183.44,680339,203081.31,0,1426.5674 -12451,15344,27721,27722,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.6185408,8.9499636,0,18,4,-69.790398,0,2,-9,2019,13,2,38,38,1,2,0,19.904591,19.904591,0,0,0,0,0,1,1,0,6.5242524,0,51.84,51.67,63.14,38.49,3.333333333333333,1,1,0,0,9,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 -12451,15344,27722,27721,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.6336412,8.3927546,0,18,-4,-108.52786,-9,2,-9,2019,8,0,40,0,1,0,0,12.309296,12.309296,0,0,0,0,0,1,1,0,0,0,63.14,38.49,51.84,51.67,3.333333333333333,1,1,0,0,10,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 -12451,15344,27723,-9,27721,27722,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.55988,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 -12451,15344,27724,-9,27721,27722,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1053.6436,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,5,1,878.5,278044.44,299457.16,223428.88,151806.17,4258.0322 -12452,15345,27725,27726,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.228056,8.3253832,0,6,-2,-58.284367,0,2,2,2019,8,0,37,37,1,0,0,16.254921,16.254921,0,0,0,0,0,0,0,0,.82988483,0,51.73,58.82,54.2,57.49,10,1,1,0,0,6,2,5,1,1684.5,993434.94,1071680.6,216921.66,36256.336,3406.417 -12452,15345,27726,27725,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.3298368,8.1874352,0,6,2,-145.8568,0,3,2,2019,10,0,43,43,1,0,0,11.179588,11.179588,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,6,2,5,1,1684.5,993434.94,1071680.6,216921.66,36256.336,3406.417 -12452,15346,27727,-9,27726,27725,1,1,23,0,0,0,1,1,1,0,4,7.4014821,7.2061458,0,0,0,-979.74005,-9,1,1,2019,10,0,20,0,1,0,1,8.2101526,8.2101526,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,6,2,3,1,277,-32371.814,0,0,0,500.3779 -12453,15347,27728,-9,27729,27730,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.9243,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 -12453,15347,27729,27730,-9,-9,1,0,36,0,2,0,2,2,-9,1,2,7.3701897,7.2414994,0,10,-1,47.317142,0,-9,-9,2019,20,9,39,39,1,9,0,4.5390754,4.5390754,0,0,0,0,27,1,1,0,4.2389712,0,35.44,39.41,46.23,55.03,6.666666666666667,1,1,0,0,11,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 -12453,15347,27730,27729,-9,-9,1,1,37,0,2,0,2,2,-9,1,3,8.4382801,8.1586065,0,10,1,-91.598297,0,3,2,2019,12,0,43,43,1,0,0,10.560555,10.560555,0,0,0,0,0,1,1,0,0,0,46.23,55.03,35.44,39.41,6.666666666666667,1,1,0,0,11,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 -12453,15347,27731,-9,27729,27730,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.99597,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,670.5,614825.69,0,459192.84,108835.09,3414.9724 -12454,15348,27732,27733,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,1,0,132.05589,-9,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,6.8546114,0,0,1,1,0,5.1680851,0,63.24,23.99,56.52,48.31,3.333333333333333,1,1,0,0,0,7,2,1,1341.5,192480.89,52766.063,323521.94,0,1372.209 -12454,15348,27733,27732,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.2424536,6.2788343,1,0,-47.291691,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0416307,6.2515597,56.52,48.31,63.24,23.99,8.333333333333334,1,1,0,0,0,7,2,1,1341.5,192480.89,52766.063,323521.94,0,1372.209 -12454,15349,27734,-9,27732,27733,1,0,34,0,0,0,2,2,-9,0,5,8.6679344,8.6998777,0,0,0,-1033.3433,-9,3,2,2019,12,2,42,0,1,2,0,13.751906,13.751906,0,0,0,0,0,1,1,0,2.3257289,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,7,5,1,676,102630.77,78973.719,0,0,1848.8153 -12455,15350,27735,27737,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.5670671,8.6444674,0,3,0,-140.33289,0,-9,-9,2019,9,0,60,50,1,0,0,14.183244,14.183244,0,0,0,0,0,1,1,0,0,0,42.75,61.95,44.03,15.32,10,1,1,0,0,10,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 -12455,15350,27736,-9,27737,27735,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1214.9493,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 -12455,15350,27737,27735,-9,-9,1,0,31,1,2,0,2,2,-9,0,1,0,5.1143451,4.7650108,3,0,-60.83493,0,2,2,2019,16,4,0,45,3,4,0,0,0,0,0,0,0,0,1,1,0,5.8986936,0,44.03,15.32,42.75,61.95,8.333333333333334,1,1,0,0,2,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 -12455,15350,27738,-9,27737,27735,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2705,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,683.5,327086.25,0,205294.92,99157.055,2046.3062 -12456,15351,27739,27740,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.4351854,8.5253601,0,2,2,150.74596,0,-9,-9,2019,21,9,63,33,1,9,0,9.6508064,9.6508064,0,0,0,0,0,0,0,0,0,0,38.51,59.43,13.46,64.02,3.333333333333333,1,1,0,0,3,9,5,1,558.5,80940.555,1261.9517,0,0,2780.5054 -12456,15351,27740,27739,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.7891474,7.7359567,0,2,-2,-26.816368,0,2,-9,2019,24,12,35,33,1,12,0,8.1875257,8.1875257,0,0,0,0,0,0,0,0,0,0,13.46,64.02,38.51,59.43,5,4,2,0,1,8,9,5,1,558.5,80940.555,1261.9517,0,0,2780.5054 -12457,15352,27741,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,7.6841755,7.9815464,0,0,0,-1025.2147,0,2,2,2019,7,0,27,37,1,0,0,9.2423735,9.2423735,0,0,0,0,0,1,1,0,2.4928579,0,60.91,26.29,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,635,-141997.84,0,113977.51,115453.08,262.82166 -12458,15353,27742,-9,27743,27744,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.14111,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,1,843,-261307.81,77212.398,0,0,2310.387 -12458,15353,27743,27744,-9,-9,1,0,37,1,3,0,1,1,-9,0,4,0,0,0,4,3,-69.04007,0,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.78726125,0,51.31,46.4,49.04,55.86,6.666666666666667,1,1,1,0,0,2,3,1,843,-261307.81,77212.398,0,0,2310.387 -12458,15353,27744,27743,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,8.1550617,8.2691412,6.367063,4,-3,31.313192,0,2,2,2019,7,0,35,40,1,0,0,8.9129076,8.9129076,0,0,0,0,0,1,1,0,6.0230813,0,49.04,55.86,51.31,46.4,8.333333333333334,1,1,0,0,12,2,3,1,843,-261307.81,77212.398,0,0,2310.387 -12458,15353,27745,-9,27743,27744,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.1288,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,843,-261307.81,77212.398,0,0,2310.387 -12459,15354,27746,-9,-9,-9,1,1,70,0,1,0,1,1,-9,0,4,9.5211687,9.7844591,6.1377912,0,0,-964.34534,0,2,2,2019,7,0,20,10,1,0,0,93.104004,93.104004,0,0,0,0,0,1,1,0,6.432735,6.4476438,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,655.5,703122.88,353632.25,155729.25,0,5134.9248 -12459,15354,27747,-9,-9,27746,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.8271,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,5,1,655.5,703122.88,353632.25,155729.25,0,5134.9248 -12460,15355,27748,-9,27751,27750,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6792,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 -12460,15355,27749,-9,27751,27750,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-963.4292,-9,3,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 -12460,15355,27750,27751,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.8459568,8.9404354,0,8,-3,-20.547268,0,2,2,2019,11,0,41,41,1,0,0,16.73996,16.73996,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.93,46.29,8.333333333333334,1,1,0,0,8,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 -12460,15355,27751,27750,-9,-9,1,0,48,0,2,0,3,3,-9,0,3,0,0,0,8,3,-11.708449,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.93,46.29,57.16,56.15,8.333333333333334,1,1,0,0,0,11,4,1,690.5,26801.338,0,247437.66,163773.16,3014.6658 -12461,15356,27752,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.89607,7.973433,0,2,-3,-48.799328,0,3,3,2019,6,0,42,37,1,0,0,5.9485483,5.9485483,0,0,0,0,0,1,1,0,.73860604,0,54.63,58.83,13.11,64.38,8.333333333333334,1,1,0,0,9,2,3,0,436,156011.92,0,0,0,1358.4171 -12461,15357,27753,-9,-9,-9,1,0,30,0,0,0,1,1,0,1,3,0,0,0,2,3,-20.21085,-9,-9,-9,2019,24,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,13.11,64.38,54.63,58.83,3.333333333333333,1,1,0,0,0,2,3,0,2082,-77980.797,0,0,0,1888.9451 -12462,15358,27754,-9,27755,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1159.1539,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,617.66669,88356.234,-35602.746,0,0,1758.7177 -12462,15358,27755,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.097187,7.6446772,6.1556163,0,0,-949.03033,0,1,2,2019,9,0,10,0,1,0,0,13.291102,13.291102,0,0,0,0,0,1,1,0,5.712316,0,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,617.66669,88356.234,-35602.746,0,0,1758.7177 -12462,15358,27756,-9,27755,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.55383,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,617.66669,88356.234,-35602.746,0,0,1758.7177 -12463,15359,27757,27758,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.0564833,6.9915705,0,14,5,143.41086,0,2,2,2019,6,0,24,20,1,0,0,5.4163704,5.4163704,0,0,0,0,0,1,1,0,0,0,57.57,37.05,52,54.51,8.333333333333334,1,1,0,0,6,5,4,1,1120.6666,-154151.66,187949.09,162612.97,109036.2,3004.1794 -12463,15359,27758,27757,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.7973366,8.7130451,0,8,-5,17.980112,0,2,2,2019,6,0,43,44,1,0,0,22.374065,22.374065,0,0,0,0,0,1,1,0,0,0,52,54.51,57.57,37.05,5,1,1,0,0,8,5,4,1,1120.6666,-154151.66,187949.09,162612.97,109036.2,3004.1794 -12463,15359,27759,-9,27757,27758,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.2131,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,1120.6666,-154151.66,187949.09,162612.97,109036.2,3004.1794 -12464,15360,27760,27761,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,4,-2,-107.48613,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.842258,0,62.42,42.94,55.53,51.55,10,1,1,0,0,0,2,2,1,1025.5,348048.94,83620.758,142748.67,0,2400.876 -12464,15360,27761,27760,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.2522078,7.3144355,4,2,-7.2620964,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1302109,7.0152831,55.53,51.55,62.42,42.94,8.333333333333334,1,1,0,0,0,2,2,1,1025.5,348048.94,83620.758,142748.67,0,2400.876 -12465,15361,27762,27763,-9,-9,1,0,67,0,0,0,1,1,-9,0,1,0,0,0,45,-1,0,0,-9,-9,2019,18,5,0,0,4,5,0,0,0,1,0,1.5900308,0,2,1,1,0,0,0,43.27,12.89,52.99,38.05,3.333333333333333,1,1,0,1,3,7,1,0,924.5,129433.12,0,0,0,1329.0745 -12465,15361,27763,27762,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,45,1,0,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52.99,38.05,43.27,12.89,5,1,1,0,0,11,7,1,0,924.5,129433.12,0,0,0,1329.0745 -12465,15362,27764,-9,27762,27763,1,1,26,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1039.2799,0,-9,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,0,819,-79817.664,0,0,0,1120.3346 -12466,15363,27765,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1157.6991,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3957553,0,61.28,48.88,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,196,-531561.25,0,264721.59,32027.055,557.73798 -12467,15364,27766,27767,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,20,0,-91.154694,0,2,2,2019,10,2,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,56.3,51.83,57.2,8.333333333333334,1,1,0,0,12,7,4,1,859,252356.56,94321.789,202971.75,65895.641,2944.8218 -12467,15364,27767,27766,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.8438587,8.7632275,0,20,0,-56.263649,0,2,3,2019,11,0,45,40,1,0,0,19.976631,19.976631,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.73,56.3,10,1,1,0,0,11,7,4,1,859,252356.56,94321.789,202971.75,65895.641,2944.8218 -12468,15365,27768,-9,27770,27771,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.37598,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 -12468,15365,27769,-9,27770,27771,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.6063,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 -12468,15365,27770,27771,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,0,0,0,12,-17,8.8456059,0,2,2,2019,6,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.0862164,0,54.45,56.22,57.06,57.76,10,1,1,0,0,4,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 -12468,15365,27771,27770,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,9.3670988,9.281827,0,12,17,-64.615021,0,3,2,2019,6,0,47,50,1,0,0,32.035915,32.035915,0,0,0,0,0,1,1,0,7.3570795,0,57.06,57.76,54.45,56.22,8.333333333333334,1,1,0,0,8,4,5,0,712.75,344510.47,147765.31,177475.19,128076.45,5059.6865 -12468,15366,27772,-9,27770,27771,1,0,21,0,2,0,2,2,-9,0,4,8.0467749,8.0779524,0,0,0,-792.8891,0,1,2,2019,9,0,41,39,1,0,1,8.5180855,8.5180855,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,10,1,1,0,0,4,4,4,0,444,-275669.03,51160.656,0,0,893.17334 -12469,15367,27773,-9,27775,27774,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.6129,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,1,681.33331,323796.59,-16707.332,187874.36,-188.34065,1001.4745 -12469,15367,27774,27775,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,5.6546741,5.4204659,0,2,7,97.705414,0,3,2,2019,7,0,47,47,1,0,0,.62291181,.62291181,0,0,0,0,0,1,1,0,0,0,65.98,34.42,58.91,45.88,10,1,1,0,0,11,5,2,1,681.33331,323796.59,-16707.332,187874.36,-188.34065,1001.4745 -12469,15367,27775,27774,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,6.8392615,7.0105729,0,2,-7,36.143219,0,-9,-9,2019,10,3,16,40,1,3,0,7.5704961,7.5704961,0,0,0,0,0,1,1,0,3.2535303,0,58.91,45.88,65.98,34.42,10,4,2,0,0,1,5,2,1,681.33331,323796.59,-16707.332,187874.36,-188.34065,1001.4745 -12470,15368,27776,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.751091,5.5776606,0,0,-1040.4406,0,2,3,2019,14,2,0,0,4,2,0,0,0,1,5.9321327,0,0,0,1,1,0,0,5.6475039,37.67,38.57,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,341,298519.91,21408.287,323663.91,0,1689.3932 -12471,15369,27777,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,6.8436494,6.6911411,0,0,0,-974.09393,0,-9,-9,2019,15,3,16,16,1,3,0,7.1663661,7.1663661,0,0,0,0,0,1,1,0,0,0,43.43,55.57,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,596.5,-287668.06,0,0,0,1702.6741 -12471,15369,27778,-9,27777,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.20844,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,596.5,-287668.06,0,0,0,1702.6741 -12472,15370,27779,27780,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.6803823,7.7568669,0,6,12,7.0007911,0,-9,-9,2019,10,0,40,38,1,1,0,7.8435321,7.8435321,0,0,0,0,0,0,0,0,0,0,52,53,59.43,58.05,8,1,1,0,0,1,7,4,1,560,-63338.828,69764.688,0,0,3216.6675 -12472,15370,27780,27779,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.4303017,8.5897484,0,6,-12,87.188248,0,2,3,2019,0,0,70,55,1,0,0,7.9799981,7.9799981,0,0,0,0,2,0,0,0,0,0,59.43,58.05,52,53,10,1,1,0,0,7,7,4,1,560,-63338.828,69764.688,0,0,3216.6675 -12473,15371,27781,27784,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.2822866,8.0640097,0,13,0,-119.26574,0,2,2,2019,13,2,24,45,1,2,0,19.544174,19.544174,0,0,0,0,0,1,1,0,0,0,46.08,57.2,61.04,44.94,8.333333333333334,2,3,0,0,7,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 -12473,15371,27782,-9,27781,27784,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.5249,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 -12473,15371,27783,-9,27781,27784,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.2659,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 -12473,15371,27784,27781,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,9.8372669,9.3841305,0,8,0,82.67971,0,2,3,2019,6,0,50,50,1,0,0,38.332897,38.332897,0,0,0,0,0,1,1,0,6.5026979,0,61.04,44.94,46.08,57.2,1.666666666666667,2,3,0,0,10,2,5,1,964,287578.06,63964.102,468029.25,267271.06,8760.5996 -12474,15372,27785,27786,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.5170908,8.2308083,7,6,-27.2444,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.9478912,8.5454588,37.77,60.12,52,46,8.333333333333334,4,5,0,0,3,8,4,1,241,1343680.8,169482.25,771875,0,4673.0332 -12474,15372,27786,27785,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.7746329,6.9086852,56,-6,58.400112,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,2.5168231,1.8683256,0,0,1,1,0,0,6.4866376,52,46,37.77,60.12,8,4,5,0,0,0,8,4,1,241,1343680.8,169482.25,771875,0,4673.0332 -12475,15373,27787,27788,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.2582808,8.3106365,0,28,-2,92.830711,0,3,3,2019,10,0,39,39,1,0,0,10.585561,10.585561,0,0,0,0,0,1,1,0,0,0,49.35,59.64,52.82,46.09,8.333333333333334,1,1,0,0,10,13,4,1,236.5,950629.5,558267.25,322857.31,81504.641,2363.2476 -12475,15373,27788,27787,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,0,0,28,2,-41.973705,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,46.09,49.35,59.64,10,1,1,0,0,7,13,4,1,236.5,950629.5,558267.25,322857.31,81504.641,2363.2476 -12476,15374,27789,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.6060295,7.1002297,0,0,-1073.4149,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.9483581,7.3480148,50.27,48.86,-9,-9,5,1,1,0,0,0,10,3,1,1083,432162.66,416097.16,258247.22,58502.129,1752.5793 -12476,15375,27790,-9,27789,-9,1,1,35,0,0,0,1,1,-9,0,3,8.1484642,8.2128849,0,0,0,-1054.3571,0,2,2,2019,7,1,39,38,1,1,0,12.979527,12.979527,0,0,0,0,0,1,1,0,5.2382269,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,907,-137375.63,-12157.479,0,0,1849.91 -12477,15376,27791,-9,27792,27793,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.69,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 -12477,15376,27792,27793,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.1544437,8.2248764,0,8,-2,-59.565018,0,2,2,2019,9,0,30,28,1,0,0,13.556125,13.556125,0,0,0,0,0,1,1,0,3.8715827,0,54.2,57.49,44.7,53.68,5,1,1,0,0,9,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 -12477,15376,27793,27792,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.4284468,8.528161,0,8,2,-45.990608,0,2,2,2019,12,0,36,36,1,0,0,13.437225,13.437225,0,0,0,0,0,1,1,0,0,0,44.7,53.68,54.2,57.49,3.333333333333333,1,1,0,0,9,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 -12477,15376,27794,-9,27792,27793,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.79834,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,1136.25,574635.88,104201.88,246036.42,30805.314,3182.0566 -12478,15377,27795,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.184607,6.842195,0,0,-928.76331,0,3,3,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.9587264,6.9003859,30.51,44.19,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,499,1175758.6,276630.53,455487.19,0,1568.0898 -12479,15378,27796,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.3544912,6.2409215,0,0,-946.36835,0,2,3,2019,9,0,0,0,4,0,0,0,0,1,1.4095976,0,0,0,1,1,0,5.1028938,6.4545369,58.5,32.48,-9,-9,8.333333333333334,1,1,0,0,3,1,2,1,841,365057.25,156028.16,0,0,1639.7906 -12480,15379,27797,27798,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,8.5830956,8.565731,0,9,-3,139.909,0,2,2,2019,7,0,49,46,1,0,0,12.431575,12.431575,0,0,0,0,0,1,1,0,7.5801344,0,59.43,58.05,50.03,52.62,10,1,1,0,0,11,12,5,1,695,2376414.8,2325010,0,0,5122.8823 -12480,15379,27798,27797,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.0140705,7.453773,30,3,-39.466869,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8653383,7.7807899,50.03,52.62,59.43,58.05,8.333333333333334,1,1,0,0,9,12,5,1,695,2376414.8,2325010,0,0,5122.8823 -12481,15380,27799,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,7.5067286,7.7533236,0,0,0,-1006.2584,-9,3,2,2019,11,0,22,0,1,0,0,7.7987218,7.7987218,0,0,0,0,2,1,0,1,0,0,42.28,52.7,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,423,10052.605,-87739,62259.176,50733.445,1122.1396 -12481,15381,27800,-9,27799,-9,1,1,21,0,1,0,2,2,-9,0,2,0,0,0,0,0,-892.64545,-9,2,-9,2019,13,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,36.44,44.52,-9,-9,5,1,1,1,0,0,12,1,1,881,-81304.391,0,0,0,-64.846336 -12482,15382,27801,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.8910789,7.9661798,0,0,-971.63165,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0001459,8.0164127,52,45,-9,-9,8,1,1,0,0,4,9,3,1,1004,874681.75,387239.97,0,0,1803.7443 -12483,15383,27802,27803,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,9.3203678,9.3033781,0,2,7,35.536247,0,-9,-9,2019,7,0,68,35,1,0,0,13.62497,13.62497,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.49,61.79,10,1,1,0,0,0,10,5,0,402.5,371028.56,134402.77,326964.56,262682.44,4961.0146 -12483,15383,27803,27802,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6186943,8.7717619,0,2,-7,20.87439,0,2,2,2019,10,0,38,46,1,0,0,23.266235,23.266235,0,0,0,0,0,0,0,0,0,0,44.49,61.79,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,0,402.5,371028.56,134402.77,326964.56,262682.44,4961.0146 -12484,15384,27804,27805,-9,-9,1,1,44,1,2,0,2,2,-9,0,3,8.0867777,8.2123375,0,8,5,35.810093,0,2,2,2019,9,0,44,52,1,0,0,10.182119,10.182119,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.37,54.8,6.666666666666667,1,1,0,0,11,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 -12484,15384,27805,27804,-9,-9,1,0,39,1,2,0,2,2,-9,1,3,6.707005,6.6746826,0,8,-5,30.768051,0,2,2,2019,12,0,16,16,1,0,0,6.4890018,6.4890018,0,0,0,0,27,1,1,0,0,0,54.37,54.8,54.37,54.8,8.333333333333334,1,1,0,0,10,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 -12484,15384,27806,-9,27805,27804,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.168,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 -12484,15384,27807,-9,27805,27804,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.72473,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,1516.25,24875.555,37033.508,0,0,2430.1753 -12485,15385,27808,-9,-9,-9,1,0,36,0,0,0,1,1,0,0,3,0,0,0,0,0,-1025.3986,-9,1,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.1159666,0,54.49,42.59,-9,-9,8.333333333333334,3,4,0,0,5,8,1,0,1715,-107736.83,0,0,0,1231.7601 -12486,15386,27809,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.4788084,8.549325,0,0,0,-1094.8945,0,3,2,2019,12,0,40,40,1,0,0,13.59013,13.59013,0,0,0,0,0,0,0,0,0,0,49.91,50.15,-9,-9,5,1,1,0,0,12,2,5,1,1079,357271.81,144244.3,0,0,1699.3762 -12487,15387,27810,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.7408686,7.9984546,0,0,-1056.5548,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1984448,7.2099547,60.74,34.01,-9,-9,10,1,1,0,0,0,9,3,1,323,358775.34,308921.53,287780.03,0,3372.7375 -12488,15388,27811,27812,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.6221619,8.562602,0,38,-4,102.16177,0,2,2,2019,8,0,46,48,1,0,0,14.218547,14.218547,0,0,0,0,0,0,0,0,7.007926,0,57.06,57.76,62.49,55.09,8.333333333333334,1,1,0,0,9,9,5,1,202.5,535825.44,242915.55,438957.78,139590.34,7019.7495 -12488,15388,27812,27811,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.2937117,9.054162,0,38,4,-31.160355,0,3,3,2019,7,0,57,80,1,0,0,15.436954,15.436954,0,0,0,0,0,0,0,0,8.7255125,0,62.49,55.09,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,202.5,535825.44,242915.55,438957.78,139590.34,7019.7495 -12488,15389,27813,-9,27811,27812,1,1,23,0,0,0,2,2,0,0,1,0,6.9646492,6.9556417,0,0,-950.59808,-9,1,2,2019,32,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,7.0379672,0,16.63,51.05,-9,-9,0,1,1,0,0,2,9,2,1,868,404037.91,0,0,0,152.19423 -12488,15390,27814,-9,27811,27812,1,0,20,0,0,0,2,2,-9,0,3,7.9367876,7.7880902,0,0,0,-964.81403,0,1,2,2019,12,0,40,44,1,0,1,5.0376463,5.0376463,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,4,9,3,1,769,314620,-14491.675,0,0,1620.373 -12488,15391,27815,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,8.9748516,8.9924192,0,0,0,-987.47925,0,-9,-9,2019,16,5,60,60,1,5,0,12.634776,12.634776,0,0,0,0,0,0,0,0,0,0,53.53,39.15,-9,-9,1.666666666666667,1,1,0,0,4,9,5,1,272,-278859.03,118434.97,280680.91,134483.3,2524.613 -12489,15392,27816,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0726995,8.1230125,0,0,0,-982.28876,0,2,2,2019,8,0,46,9,1,0,0,7.9556785,7.9556785,0,0,0,0,0,0,0,0,2.9910307,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,333,283543.06,221530.83,114007.79,0,1297.0281 -12490,15393,27817,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7230821,7.7527556,0,0,0,-934.94073,0,2,-9,2019,12,1,60,40,1,1,0,5.0668001,5.0668001,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,2,5,3,0,673,-5588.6792,63332.891,0,0,1074.6997 -12491,15394,27818,27821,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.6081715,8.8555756,0,10,-1,66.446167,0,2,2,2019,24,9,38,34,1,9,0,13.7935,13.7935,0,0,0,0,14.5,1,1,0,2.2447367,0,14.91,68.97,54.2,57.49,8.333333333333334,1,1,0,1,8,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 -12491,15394,27819,-9,27818,27821,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.03314,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 -12491,15394,27820,-9,27818,27821,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.56061,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 -12491,15394,27821,27818,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.1824989,8.5394745,0,10,1,-5.1453772,0,2,2,2019,9,2,39,39,1,2,0,12.241044,12.241044,0,0,0,0,5.48,1,1,0,0,0,54.2,57.49,14.91,68.97,8.333333333333334,1,1,0,0,10,7,4,1,683.75,73504.641,16238.322,342139.47,102821,3466.3147 -12492,15395,27822,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.303103,6.9547405,0,0,-1092.729,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.491467,56.74,52.23,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,760,513829.19,487451.25,0,0,1197.1377 -12493,15396,27823,-9,27824,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.51,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,532,0,0,0,0,1005.729 -12493,15396,27824,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,2,0,5.1216435,5.3506894,0,0,-1109.0336,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,5.1049848,0,46.31,21,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,532,0,0,0,0,1005.729 -12494,15397,27825,-9,27826,-9,1,1,16,0,1,1,2,0,-9,0,5,0,5.5086632,5.6002722,0,0,-934.11499,-9,2,-9,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,2,1,1,0,5.4741292,0,54.1,59.11,-9,-9,10,1,1,0,0,2,12,3,0,912.5,-38634.188,-14101.691,0,0,1729.146 -12494,15397,27826,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.5495515,7.754199,0,0,0,-983.08264,-9,-9,-9,2019,13,1,32,0,1,1,0,7.7734904,7.7734904,0,0,0,0,14.5,1,1,0,0,0,35.79,46.27,-9,-9,6.666666666666667,1,1,0,0,8,12,3,0,912.5,-38634.188,-14101.691,0,0,1729.146 -12495,15398,27827,-9,-9,-9,1,0,55,1,1,0,2,2,-9,0,3,8.2158575,8.4243565,0,0,0,-1060.3413,0,2,1,2019,4,0,25,25,1,0,0,21.514421,21.514421,0,0,0,0,27,1,1,0,3.4212177,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,495,3689060.5,2316553.3,1209694.5,58854.07,1925.1449 -12495,15399,27828,-9,27827,-9,1,1,24,1,1,0,3,3,-9,0,4,8.3345585,7.7178216,0,0,0,-915.81207,0,2,-9,2019,6,0,42,40,1,0,1,8.0624819,8.0624819,0,0,0,0,2,1,1,0,2.2863286,0,39.4,56.84,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,931,330107.88,-56612.27,0,0,1191.4988 -12495,15400,27829,-9,27830,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.9008,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,1,394,-34849.531,0,0,0,667.23553 -12495,15400,27830,-9,27827,-9,1,0,21,1,1,0,2,2,-9,0,4,7.0579829,6.8999214,0,0,0,-842.83801,0,2,-9,2019,10,0,19,19,1,0,1,7.4042964,7.4042964,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,394,-34849.531,0,0,0,667.23553 -12496,15401,27831,27832,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.919456,6.8654213,10,3,9.2830515,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0410147,6.903379,41.34,56.62,54.37,54.8,8.333333333333334,1,1,0,0,2,8,2,1,612,527814.13,53027.344,326182.38,0,1676.733 -12496,15401,27832,27831,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,10,-3,91.179207,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3122256,0,54.37,54.8,41.34,56.62,8.333333333333334,1,1,0,0,0,8,2,1,612,527814.13,53027.344,326182.38,0,1676.733 -12497,15402,27833,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.5798144,7.633985,0,0,-906.22125,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4068379,7.2636528,64.23999999999999,44.83,-9,-9,10,1,1,0,0,0,9,3,1,2358,438232.06,80905.156,452822.13,0,1109.0468 -12498,15403,27834,-9,27835,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.4199,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,317,-166883.61,30678.322,137681.05,117990.66,1825.3855 -12498,15403,27835,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,2.2285545,2.3726964,0,0,0,-954.35004,0,2,2,2019,13,1,30,60,1,1,0,.033319291,.033319291,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,5,2,2,0,317,-166883.61,30678.322,137681.05,117990.66,1825.3855 -12498,15404,27836,-9,27835,-9,1,0,21,0,1,0,2,2,0,0,5,0,0,0,0,0,-1042.0492,-9,1,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,5,1,1,0,0,0,2,1,0,161,-192374.47,0,0,0,1247.1382 -12499,15405,27837,27838,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,6.9389243,7.5666757,9,-4,-14.09697,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3317895,6.9990726,58.3,52.91,57.73,54.53,8.333333333333334,1,1,0,0,9,7,3,1,593,1920600.5,605302.5,1021666.7,0,2456.2495 -12499,15405,27838,27837,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.7621498,7.4258847,9,4,-42.613247,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1256461,7.7899361,57.73,54.53,58.3,52.91,8.333333333333334,1,1,0,0,4,7,3,1,593,1920600.5,605302.5,1021666.7,0,2456.2495 -12500,15406,27839,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.1169128,7.9604445,0,0,0,-902.59375,0,3,3,2019,12,0,44,80,1,0,0,7.3156247,7.3156247,0,0,0,0,0,0,0,0,0,0,48.94,54.95,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,2223,-210005.2,90903.828,0,0,1226.5814 -12501,15407,27840,27841,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.1713114,8.0713072,0,9,-3,76.789322,0,2,-9,2019,7,0,55,66,1,0,0,8.2456646,8.2456646,0,0,0,0,0,1,1,0,.63079411,0,44.59,56.4,54.96,53.17,8.333333333333334,1,1,0,0,7,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 -12501,15407,27841,27840,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.104764,8.335372,0,9,3,-13.405192,0,2,2,2019,7,0,40,38,1,0,0,10.424071,10.424071,0,0,0,0,0,1,1,0,1.0397131,0,54.96,53.17,44.59,56.4,8.333333333333334,1,1,0,0,9,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 -12501,15407,27842,-9,27840,27841,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.189,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 -12501,15407,27843,-9,27840,27841,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.87732,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,687.75,159475.64,-37875.801,0,0,3567.7305 -12502,15408,27844,27845,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.5443039,8.4017134,0,23,-2,33.715206,0,2,2,2019,13,2,40,40,1,2,0,13.108833,13.108833,0,0,0,0,2,1,1,0,.17023081,0,35.8,59.5,45.56,60.26,8.333333333333334,1,1,0,0,12,4,5,1,1111.3334,630570.88,430049.25,306980.09,112137.11,3650.3394 -12502,15408,27845,27844,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.4455547,8.4523706,0,9,2,-75.550201,0,-9,-9,2019,14,4,37,37,1,4,0,13.394061,13.394061,0,0,0,0,2,1,1,0,.91982311,0,45.56,60.26,35.8,59.5,8.333333333333334,1,1,0,0,12,4,5,1,1111.3334,630570.88,430049.25,306980.09,112137.11,3650.3394 -12502,15408,27846,-9,27844,27845,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1031.6886,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,1111.3334,630570.88,430049.25,306980.09,112137.11,3650.3394 -12502,15409,27847,-9,27844,27845,1,0,19,0,1,0,2,2,-9,0,4,7.2584629,6.9765301,0,0,0,-1072.5796,0,1,2,2019,9,0,36,28,1,0,1,4.2953439,4.2953439,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,306,-162053.53,0,0,0,849.60864 -12503,15410,27848,27850,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,8.8269663,8.7592726,0,3,10,-43.389977,0,3,2,2019,20,9,43,37,1,9,0,23.986214,23.986214,0,0,0,0,0,0,0,0,7.2813611,0,29.09,57.03,51.35,40.98,6.666666666666667,1,1,0,0,11,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 -12503,15410,27849,-9,27850,27848,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.42224,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 -12503,15410,27850,27848,-9,-9,1,0,41,0,3,0,3,3,-9,0,4,9.1231709,9.3213406,0,3,-10,142.79738,0,-9,-9,2019,6,0,37,32,1,0,0,31.300476,31.300476,0,0,0,0,0,0,0,0,0,0,51.35,40.98,29.09,57.03,8.333333333333334,1,1,0,0,12,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 -12503,15410,27851,-9,27850,27848,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.66144,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,469.75,2406376.5,1768115.8,625953.13,101761.34,8133.6807 -12504,15411,27852,27853,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.583477,7.7910051,0,6,3,-95.322403,0,2,1,2019,17,6,34,34,1,6,0,8.1852369,8.1852369,0,0,0,0,2,1,1,0,3.6360962,0,30.28,66.88,59.19,51.29,6.666666666666667,1,1,0,0,7,7,4,1,542,865229.63,56955.008,809563,0,3297.9614 -12504,15411,27853,27852,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.2108622,8.2366867,6.6511722,6,-3,-15.184229,0,3,3,2019,9,0,49,49,1,0,0,6.6626205,6.6626205,0,0,0,0,0,1,1,0,7.0208664,7.1040606,59.19,51.29,30.28,66.88,6.666666666666667,1,1,0,0,7,7,4,1,542,865229.63,56955.008,809563,0,3297.9614 -12505,15412,27854,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.82831,8.5764561,0,0,0,-955.96033,0,1,2,2019,10,0,37,76,1,0,0,24.299404,24.299404,0,0,0,0,0,0,0,0,0,0,53.61,51.1,-9,-9,8.333333333333334,2,3,0,0,11,7,5,1,2310,173502.77,0,510491.75,76126.383,2192.7717 -12505,15413,27855,-9,27854,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1010.2871,-9,1,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.212234,0,46,59,-9,-9,7,2,3,0,0,0,7,1,1,1846,-3427.6472,0,0,0,228.45439 -12506,15414,27856,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.8633261,5.638186,0,0,-1042.6599,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.1348772,5.6250138,50.51,53.71,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,532,1037286.7,135598.11,605002.25,0,1825.4478 -12507,15415,27857,27858,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9996176,7.14498,43,0,47.300568,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0402012,6.8547468,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,10,7,3,1,551,2913278.5,1803656.8,971369.5,0,3442.2263 -12507,15415,27858,27857,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.9865956,7.68012,41,0,43.984383,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.1316972,7.6302676,62.39,56.71,57.16,56.15,10,1,1,0,0,10,7,3,1,551,2913278.5,1803656.8,971369.5,0,3442.2263 -12508,15416,27859,27860,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.1911097,6.2357941,0,21,5,123.41471,0,3,3,2019,9,0,5,6,1,0,0,8.863657,8.863657,0,0,0,0,2,0,0,0,3.2937155,0,52.43,55.57,60.02,56.42,1.666666666666667,1,1,0,0,6,10,4,1,869,192329.05,410811.75,0,0,2674.75 -12508,15416,27860,27859,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.7455626,8.7549744,0,21,-5,21.994926,0,3,3,2019,2,0,37,42,1,0,0,20.548845,20.548845,0,0,0,0,0,0,0,0,3.0978124,0,60.02,56.42,52.43,55.57,10,1,1,0,0,6,10,4,1,869,192329.05,410811.75,0,0,2674.75 -12508,15417,27861,-9,27859,27860,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1014.1669,1,2,1,2019,10,0,0,25,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,52.72,55.58,-9,-9,1.666666666666667,1,1,0,0,3,10,1,1,385,-98646.539,0,0,0,659.91766 -12509,15418,27862,27864,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,0,0,0,8,-3,-26.87166,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,43.98,58.57,48.95,8.333333333333334,2,3,0,0,0,8,2,1,391,376673.16,0,0,0,1413.3636 -12509,15418,27863,-9,27862,27864,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.6825,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,391,376673.16,0,0,0,1413.3636 -12509,15418,27864,27862,-9,-9,1,1,36,0,2,0,3,3,-9,0,3,7.41922,7.3254867,0,8,3,40.916203,0,3,3,2019,10,1,25,44,1,1,0,6.5971608,6.5971608,0,0,0,0,0,1,1,0,0,0,58.57,48.95,52.31,43.98,8.333333333333334,2,3,0,0,10,8,2,1,391,376673.16,0,0,0,1413.3636 -12510,15419,27865,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.1361284,8.3505039,0,0,0,-1019.9762,0,2,2,2019,6,0,35,37,1,0,0,12.596205,12.596205,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,265,-519063.31,25384.869,92036.5,93193.43,1523.5037 -12511,15420,27866,27867,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.2026205,7.3621936,8,8,-30.222713,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.2646466,7.0578055,62.84,46.85,54.37,54.8,8.333333333333334,1,1,0,0,0,7,5,1,1096,1564177.3,662043.13,350065.63,0,4983.7339 -12511,15420,27867,27866,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.8046522,8.7922392,8,-8,84.887642,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4890475,8.8372488,54.37,54.8,62.84,46.85,8.333333333333334,1,1,0,0,0,7,5,1,1096,1564177.3,662043.13,350065.63,0,4983.7339 -12512,15421,27868,27869,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.8465028,8.0404806,8,-8,-94.507187,0,1,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.8028421,7.5459037,62.9,42.76,57.09,46.7,8.333333333333334,1,1,0,0,7,2,4,1,1563.5,2173176.8,1454770,443555.41,0,3599.479 -12512,15421,27869,27868,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.7286701,8.1892223,9,8,113.40036,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.1015615,7.6106582,57.09,46.7,62.9,42.76,10,1,1,0,0,6,2,4,1,1563.5,2173176.8,1454770,443555.41,0,3599.479 -12513,15422,27870,27871,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.3399239,8.2589912,0,2,-1,-54.517086,0,3,3,2019,11,0,39,39,1,0,0,11.863626,11.863626,0,0,0,0,0,1,1,0,0,0,62.56,45.64,60.02,56.42,5,1,1,0,0,13,11,5,1,429.33334,136289.97,42440.734,172065.69,89986.828,3258.0242 -12513,15422,27871,27870,-9,-9,1,0,32,1,1,0,2,2,-9,0,5,8.349062,8.4442987,0,2,1,72.321381,0,-9,-9,2019,5,0,40,50,1,0,0,14.510162,14.510162,0,0,0,0,0,1,1,0,2.1340022,0,60.02,56.42,62.56,45.64,8.333333333333334,1,1,0,0,13,11,5,1,429.33334,136289.97,42440.734,172065.69,89986.828,3258.0242 -12513,15422,27872,-9,27871,27870,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.9458,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,5,1,429.33334,136289.97,42440.734,172065.69,89986.828,3258.0242 -12514,15423,27873,27874,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.7620678,9.7603893,0,6,-4,-208.06586,0,3,3,2019,8,0,55,50,1,0,0,34.451496,34.451496,0,0,0,0,0,1,1,0,7.8739767,0,55,52,46,36,8,1,1,0,0,1,7,5,1,342.5,2134580.5,495837.19,479146.72,0,10097.805 -12514,15423,27874,27873,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,7.0085402,6.7412601,39,4,-35.244518,0,3,3,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,27,1,1,0,3.3293827,7.2937593,46,36,55,52,5,1,1,0,0,2,7,5,1,342.5,2134580.5,495837.19,479146.72,0,10097.805 -12515,15424,27875,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,7.7106514,7.8351779,0,0,0,-965.08691,0,3,-9,2019,15,4,32,28,1,4,0,6.6652236,6.6652236,0,0,0,0,0,1,1,0,1.4741915,0,44.55,31.29,-9,-9,5,1,1,0,0,9,10,3,0,1098,242268.72,-53338.016,0,0,2118.0881 -12516,15425,27876,27877,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,0,0,3,2,2019,11,0,0,0,4,1,0,0,0,1,0,75.643364,0,0,1,1,0,4.0037708,0,50,47,51.24,58.84,7,1,1,0,0,0,4,1,1,256,-7065.4844,0,168340,0,1231.9857 -12516,15425,27877,27876,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,51,4,0,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,120,1,1,0,3.672514,0,51.24,58.84,50,47,5,1,1,0,0,0,4,1,1,256,-7065.4844,0,168340,0,1231.9857 -12517,15426,27878,27879,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.2112527,7.3651223,40,-6,-41.293583,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1430039,7.3775153,54.36,35,54.6,53.19,0,1,1,0,0,9,12,4,1,455.5,1665332.1,965357.56,503917.63,0,4120.1377 -12517,15426,27879,27878,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,8.6027575,8.744154,40,6,85.905434,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0599489,7.3692575,54.6,53.19,54.36,35,0,1,1,0,0,10,12,4,1,455.5,1665332.1,965357.56,503917.63,0,4120.1377 -12517,15427,27880,-9,27878,27879,1,1,36,0,0,0,2,2,-9,0,4,7.8559127,7.8936272,0,0,0,-988.16968,0,2,3,2019,15,4,38,38,1,4,0,8.7087278,8.7087278,0,0,0,0,0,1,1,0,0,0,42.51,54.84,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,120,221755.59,-14406.564,0,0,2017.0233 -12518,15428,27881,27882,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,0,0,44,1,-65.776917,0,2,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.5810432,0,39.26,57.46,62.43,40.11,6.666666666666667,1,1,0,0,9,10,4,1,821.5,1385746.8,884850.75,662925.88,206763.22,3385.1296 -12518,15428,27882,27881,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.632165,8.8698149,43,-1,14.449094,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7095804,8.5527573,62.43,40.11,39.26,57.46,8.333333333333334,1,1,0,0,2,10,4,1,821.5,1385746.8,884850.75,662925.88,206763.22,3385.1296 -12519,15429,27883,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7765956,7.7832294,0,0,0,-1088.4998,0,2,3,2019,12,0,38,40,1,0,0,7.4801803,7.4801803,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,7,1,3,1,1563,264088.97,140725.13,126853.72,38798.102,1355.0897 -12519,15430,27884,-9,27883,-9,1,0,20,0,0,0,2,2,-9,0,4,8.049304,7.4543543,0,0,0,-1008.9655,0,2,-9,2019,14,2,40,12,1,2,1,5.4795475,5.4795475,0,0,0,0,0,1,1,0,5.4159703,0,30.05,64.52,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,507,-268096,0,0,0,493.14377 -12520,15431,27885,27886,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,6.5168529,6.4284477,38,-3,53.494442,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2400305,6.4905696,51.49,42.78,51.24,58.84,6.666666666666667,1,1,0,0,4,12,3,1,897,473054.25,448236.28,110378.2,141416.06,1797.0911 -12520,15431,27886,27885,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.3776217,7.8410878,6.422658,38,3,-39.828709,0,-9,-9,2019,11,0,22,23,1,0,0,10.615556,10.615556,0,0,0,0,0,1,1,0,2.5023494,6.7763858,51.24,58.84,51.49,42.78,8.333333333333334,1,1,0,0,12,12,3,1,897,473054.25,448236.28,110378.2,141416.06,1797.0911 -12520,15432,27887,-9,27886,27885,1,1,27,0,0,0,2,2,-9,1,4,7.8238678,7.8222899,0,0,0,-1035.4773,0,3,2,2019,8,1,36,36,1,1,1,7.6575565,7.6575565,0,0,0,0,0,1,1,0,4.0820999,0,44.49,61.79,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,200,1531.6116,0,0,0,1424.6428 -12521,15433,27888,-9,27889,27890,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.6605,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,555.33331,1256684.5,811569.25,323214.88,0,2769.4773 -12521,15433,27889,27890,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5209198,8.5333519,0,7,-15,3.1077738,0,-9,-9,2019,11,1,38,38,1,1,0,18.175175,18.175175,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.91,59.89,6.666666666666667,1,1,0,0,4,8,4,0,555.33331,1256684.5,811569.25,323214.88,0,2769.4773 -12521,15433,27890,27889,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,7.2785206,7.4576359,0,7,15,-89.715225,0,3,3,2019,4,0,24,8,1,0,0,8.2983713,8.2983713,0,0,0,0,0,1,1,0,0,0,45.91,59.89,54.2,57.49,6.666666666666667,3,4,0,0,9,8,4,0,555.33331,1256684.5,811569.25,323214.88,0,2769.4773 -12522,15434,27891,27892,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,44,-4,-18.389269,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.64,50.48,55.51,51.57,8.333333333333334,1,1,0,0,0,12,2,1,248.5,604772.94,261766.78,215573.8,0,876.61304 -12522,15434,27892,27891,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,5.6425819,5.1809158,44,4,207.52734,0,-9,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7326665,55.51,51.57,51.64,50.48,8.333333333333334,1,1,0,0,0,12,2,1,248.5,604772.94,261766.78,215573.8,0,876.61304 -12523,15435,27893,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,1,0,7.2233953,7.0129929,0,0,-958.62451,0,3,2,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,5.5687022,7.0977836,35.71,29.72,-9,-9,3.333333333333333,1,1,0,0,4,6,3,1,643,0,0,0,0,1446.301 -12524,15436,27894,27895,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,7,7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,65.8,39.97,10,1,1,0,0,0,13,2,1,1318.5,215971.98,1363.7891,117595.42,0,0 -12524,15436,27895,27894,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,7,-7,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.8,39.97,60.12,54.8,10,1,1,0,0,0,13,2,1,1318.5,215971.98,1363.7891,117595.42,0,0 -12525,15437,27896,27897,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1049442,7.8982825,0,1,2,17.797621,0,-9,-9,2019,6,0,38,40,1,0,0,9.1166191,9.1166191,0,0,0,0,0,0,0,0,0,0,51.83,57.2,12.25,60.6,8.333333333333334,1,1,0,0,6,9,4,0,493,38602.121,-10146.59,0,0,2175.6721 -12525,15437,27897,27896,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.312644,7.5654483,0,1,-2,-.96673781,-9,-9,-9,2019,14,3,30,0,1,3,0,5.7038498,5.7038498,0,0,0,0,0,0,0,0,0,0,12.25,60.6,51.83,57.2,6.666666666666667,1,1,0,0,0,9,4,0,493,38602.121,-10146.59,0,0,2175.6721 -12526,15438,27898,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,8.3295107,8.0933027,0,0,0,-898.2049,0,2,2,2019,10,0,45,45,1,0,0,10.971281,10.971281,0,0,0,0,0,0,0,0,0,0,53.79,26.81,-9,-9,3.333333333333333,1,1,0,0,11,5,4,1,313,-212078.41,-60181.422,0,0,1697.0044 -12527,15439,27899,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.5838823,8.5199499,0,0,0,-905.862,0,1,2,2019,6,0,41,43,1,0,0,12.481269,12.481269,0,0,0,0,0,0,0,0,0,0,60.69,53.18,-9,-9,8.333333333333334,1,1,0,0,7,4,5,0,634,217357.8,150775.64,89775.758,85824.352,1427.3151 -12528,15440,27900,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,7.8573856,7.8837395,0,0,0,-1048.3351,0,-9,2,2019,12,0,48,47,1,0,0,6.8612237,6.8612237,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,5,1,1,0,0,9,11,3,1,1253,64911.066,-19557.992,130975.8,51482.367,615.43933 -12528,15441,27901,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,9.2246523,9.4542665,0,0,0,-1193.7324,0,-9,-9,2019,6,0,96,76,1,0,0,13.804275,13.804275,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,7,11,5,1,1181,319068.47,349277.69,0,0,4250.8569 -12528,15442,27902,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,8.1197519,7.7541938,0,0,0,-970.84686,0,-9,-9,2019,12,0,36,0,1,2,0,10.902406,10.902406,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,4,1,166,-99574.5,-149014.61,0,0,1501.2419 -12529,15443,27903,-9,-9,-9,1,0,37,2,3,0,2,2,-9,0,4,0,0,0,0,0,-1069.7778,0,2,2,2019,9,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,1,0,9,13,1,0,810.66669,111307.75,0,0,0,1497.5372 -12529,15443,27904,-9,27903,-9,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.8976,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,1,0,810.66669,111307.75,0,0,0,1497.5372 -12529,15443,27905,-9,27903,-9,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.4293,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,810.66669,111307.75,0,0,0,1497.5372 -12530,15444,27906,27907,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,43,-2,16.34041,-9,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,50,48,52.6,52.88,7,1,1,0,0,0,13,2,1,381,400317.81,382386.09,89782.656,0,1264.2281 -12530,15444,27907,27906,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.0852776,7.6667609,43,2,-98.190758,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3849077,52.6,52.88,50,48,8.333333333333334,1,1,0,0,8,13,2,1,381,400317.81,382386.09,89782.656,0,1264.2281 -12531,15445,27908,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-822.56885,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,29.146284,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,6,1,1,95,26288.98,0,0,0,-.13538462 -12532,15446,27909,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.471158,8.3944607,0,0,0,-1053.6626,0,3,3,2019,11,0,39,42,1,0,0,15.6154,15.6154,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,13,4,0,1277.5,2401.8438,78128.945,0,0,2807.7461 -12532,15446,27910,-9,27909,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.8094,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,1277.5,2401.8438,78128.945,0,0,2807.7461 -12533,15447,27911,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.5344,8.5073109,0,0,0,-814.08331,0,3,2,2019,8,0,50,0,1,0,0,14.021202,14.021202,0,0,0,0,0,0,0,0,0,0,49.51,37.28,-9,-9,5,1,1,0,0,7,4,5,0,1047,51779.945,168539.59,0,0,2003.4893 -12534,15448,27912,27913,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.8135824,5.8883057,47,0,54.037823,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.081934,5.727252,57.16,56.15,57.06,57.76,10,1,1,0,0,5,11,2,1,625.5,771093.69,373078.09,295412.47,0,1928.3589 -12534,15448,27913,27912,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.1943951,6.962513,47,0,-129.26959,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.020205,7.1443248,57.06,57.76,57.16,56.15,10,1,1,0,0,8,11,2,1,625.5,771093.69,373078.09,295412.47,0,1928.3589 -12535,15449,27914,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1090.8917,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1187925,0,53,44,-9,-9,8,1,1,0,0,0,12,1,1,250,-113086.77,0,117739.21,0,689.4093 -12535,15450,27915,-9,27914,-9,1,0,55,0,0,0,3,3,-9,0,3,7.5309148,7.2375574,0,0,0,-860.19147,0,3,3,2019,14,1,31,17,1,1,0,6.3049479,6.3049479,0,0,0,0,95,1,1,0,0,0,40.16,32.18,-9,-9,1.666666666666667,1,1,0,0,8,12,3,1,112,0,0,0,0,1294.7368 -12536,15451,27916,27917,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,6.9178967,7.3525939,0,7,0,81.451103,0,1,3,2019,16,5,35,40,1,5,0,4.2003717,4.2003717,0,0,0,0,0,0,0,0,1.239099,0,31.82,59.74,43.35,57.8,6.666666666666667,1,1,0,0,6,10,4,1,471.5,817576.88,395293.19,251331.16,104491.83,2518.6743 -12536,15451,27917,27916,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.2780409,8.34305,0,7,9,-135.90858,0,2,2,2019,11,0,27,16,1,0,0,21.449856,21.449856,0,0,0,0,0,0,0,0,2.3889923,0,43.35,57.8,31.82,59.74,8.333333333333334,1,1,0,0,9,10,4,1,471.5,817576.88,395293.19,251331.16,104491.83,2518.6743 -12537,15452,27918,-9,27920,27921,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1026.214,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 -12537,15452,27919,-9,27920,27921,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.0343,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 -12537,15452,27920,27921,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.4335318,8.610733,0,8,-3,-40.245251,-9,2,3,2019,6,0,26,0,1,0,0,20.878222,20.878222,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 -12537,15452,27921,27920,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.1781635,8.7782021,0,8,3,-32.901768,-9,2,2,2019,8,0,57,0,1,0,0,14.824397,14.824397,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 -12537,15452,27922,-9,27920,27921,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.8673,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1190.6,350203.97,494314.84,112549.55,88574.391,3753.2585 -12538,15453,27923,27924,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.4899492,9.1024618,0,4,5,-40.080048,0,-9,-9,2019,12,0,45,50,1,0,0,33.7164,33.7164,0,0,0,0,0,1,1,0,7.6819348,0,51.24,58.84,50.65,53.71,6.666666666666667,2,3,0,0,7,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 -12538,15453,27924,27923,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,7,-5,-34.430683,0,1,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,53.71,51.24,58.84,8,2,3,0,0,0,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 -12538,15453,27925,-9,27924,27923,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.5377,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 -12538,15453,27926,-9,27924,27923,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.64746,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,869.25,726047,199165.06,514978.88,135061.73,5175.3867 -12539,15454,27927,27928,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.534009,6.2952576,40,5,90.238129,0,3,3,2019,10,1,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,0,6.3749628,50.96,45.55,61.27,46.03,5,1,1,0,0,8,9,2,0,438.5,54596.508,114255.52,0,0,692.57739 -12539,15454,27928,27927,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.6822653,7.3189626,6.4812145,7,-5,52.476089,0,-9,-9,2019,9,0,4,10,1,0,0,19.306721,19.306721,0,0,0,0,0,0,0,0,0,6.3221717,61.27,46.03,50.96,45.55,8.333333333333334,1,1,0,0,5,9,2,0,438.5,54596.508,114255.52,0,0,692.57739 -12539,15455,27929,-9,27928,27927,1,0,34,0,0,0,2,2,-9,0,3,8.4258909,8.343029,0,0,0,-1106.5453,0,2,2,2019,9,0,38,35,1,0,1,11.421641,11.421641,0,0,0,0,0,0,0,0,0,0,58.91,45.88,-9,-9,5,1,1,0,0,4,9,4,0,292,-102271.19,-2583.0833,0,0,1409.1272 -12540,15456,27930,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.7860661,7.5628929,0,0,-1104.1829,0,1,2,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.1506119,7.8008342,38.47,57.72,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,983,887900.44,251309.72,396078.94,0,1764.6198 -12541,15457,27931,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,7.7636085,7.8416996,0,0,-1022.8506,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,7.936657,7.6738243,59.96,44.08,-9,-9,10,1,1,0,0,6,9,3,1,403,-34247.445,148789.05,0,0,1540.2498 -12542,15458,27932,27933,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,17,-5,-23.031948,0,-9,-9,2019,14,3,0,20,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.93,28.74,53.98,48.01,5,1,1,0,0,9,12,4,1,265,1027011,850294,336037.72,48398.691,2468.7192 -12542,15458,27933,27932,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.5741634,8.7216539,0,17,5,-8.8397779,0,2,2,2019,7,0,47,47,1,0,0,14.078251,14.078251,0,0,0,0,7,1,1,0,0,0,53.98,48.01,43.93,28.74,8.333333333333334,1,1,0,0,9,12,4,1,265,1027011,850294,336037.72,48398.691,2468.7192 -12543,15459,27934,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.2584,8.3958101,6.3003311,4,1,-1.9148782,0,2,1,2019,13,2,24,23,1,2,0,19.426189,19.426189,0,0,0,0,0,0,0,0,6.5859833,0,21.24,59.82,49,57,3.333333333333333,4,2,0,0,10,12,4,1,477,-223299.13,37655.648,121574.6,50778.488,1723.2083 -12544,15460,27935,27937,-9,-9,1,1,30,0,1,0,3,3,-9,1,2,0,0,0,8,-13,0,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,120,1,1,0,0,0,36.5,51.19,27.72,43.25,6.666666666666667,1,1,1,0,0,5,1,0,1271.3334,-14817.302,0,0,0,1362.6558 -12544,15460,27936,-9,27937,27935,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.91461,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1271.3334,-14817.302,0,0,0,1362.6558 -12544,15460,27937,27935,-9,-9,1,0,43,0,1,0,3,3,-9,0,1,0,0,0,4,13,0,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.72,43.25,36.5,51.19,6.666666666666667,1,1,1,0,0,5,1,0,1271.3334,-14817.302,0,0,0,1362.6558 -12545,15461,27938,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.0197859,6.8119192,0,0,-969.42737,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9591355,54,43,-9,-9,8,1,1,0,0,0,8,2,1,2093,826025.06,42130.762,612663.88,0,1183.3187 -12546,15462,27939,-9,27941,27940,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.9655,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 -12546,15462,27940,27941,-9,-9,1,1,33,1,3,0,1,1,-9,0,4,8.568553,8.4475222,0,7,2,-101.86942,0,-9,-9,2019,7,0,37,37,1,0,0,13.925704,13.925704,0,0,0,0,14.5,1,1,0,2.8644722,0,59.39,45.7,61.26,38.16,8.333333333333334,4,1,0,0,7,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 -12546,15462,27941,27940,-9,-9,1,0,31,1,3,0,1,1,-9,1,3,8.0602579,8.166976,0,7,-2,3.2096956,0,3,3,2019,7,0,37,37,1,0,0,11.455846,11.455846,0,0,0,0,14.5,1,1,0,0,0,61.26,38.16,59.39,45.7,8.333333333333334,1,1,0,0,7,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 -12546,15462,27942,-9,27941,27940,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.9,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 -12546,15462,27943,-9,27941,27940,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.4492,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,0,908.40002,159697.69,115200.53,209990.67,136238.38,3506.4214 -12547,15463,27944,27946,-9,-9,1,1,31,1,1,0,2,2,-9,0,2,8.0819921,7.9542203,0,4,0,16.538982,0,-9,-9,2019,15,3,44,40,1,3,0,6.4749408,6.4749408,0,0,0,0,0,1,1,0,0,0,29.65,48.96,47.62,57.75,6.666666666666667,1,1,0,0,8,5,3,0,344,117388.2,40145.105,0,0,2215.467 -12547,15463,27945,-9,27946,27944,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.5703,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,3,0,344,117388.2,40145.105,0,0,2215.467 -12547,15463,27946,27944,-9,-9,1,0,31,1,1,0,2,2,-9,1,3,6.2979965,6.02701,0,4,0,-11.410515,0,-9,-9,2019,7,0,10,0,1,0,0,4.7564726,4.7564726,0,0,0,0,42,1,1,0,0,0,47.62,57.75,29.65,48.96,8.333333333333334,1,1,0,0,2,5,3,0,344,117388.2,40145.105,0,0,2215.467 -12548,15464,27947,27948,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,6.2662816,6.1003213,41,1,-58.007908,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,6.2412004,27.68,40.45,50,47,3.333333333333333,1,1,0,0,0,8,2,0,315,117102.71,176395.16,0,0,1130.0828 -12548,15464,27948,27947,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,41,-1,40.478565,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,27.68,40.45,7,1,1,0,0,0,8,2,0,315,117102.71,176395.16,0,0,1130.0828 -12548,15465,27949,-9,27948,27947,1,1,28,0,0,0,2,2,-9,0,4,7.632369,7.3623672,0,0,0,-1093.5636,0,3,3,2019,10,0,40,40,1,1,0,5.5840707,5.5840707,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,8,3,0,1929,67285.938,0,0,0,484.35669 -12549,15466,27950,27951,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,46,4,0,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,0,0,38.69,28.33,27.89,18.61,3.333333333333333,1,1,0,0,0,12,1,0,384,280296.38,0,0,0,1873.8202 -12549,15466,27951,27950,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,46,-4,0,0,3,3,2019,30,11,0,0,4,11,0,0,0,1,0,88.391266,0,0,1,1,0,0,0,27.89,18.61,38.69,28.33,5,1,1,0,0,0,12,1,0,384,280296.38,0,0,0,1873.8202 -12549,15467,27952,-9,27951,27950,1,1,38,0,0,0,1,1,-9,0,4,7.0635815,7.0364113,0,0,0,-1041.6609,0,2,2,2019,10,0,45,45,1,0,0,3.1826403,3.1826403,0,0,0,0,0,1,1,0,.590958,0,51.77,58.57,-9,-9,5,1,1,0,0,13,12,3,0,337,125230.42,0,0,0,841.49158 -12550,15468,27953,-9,27954,27955,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.55316,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,433.33334,50791.938,0,143513.88,81611.727,1784.6494 -12550,15468,27954,27955,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,0,0,0,17,-8,-28.241974,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,59.13,48.77,57.64,8.333333333333334,1,1,1,0,2,8,2,0,433.33334,50791.938,0,143513.88,81611.727,1784.6494 -12550,15468,27955,27954,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,7.9161544,7.6905522,0,17,8,-76.907784,0,2,1,2019,9,0,40,35,1,0,0,7.6735573,7.6735573,0,0,0,0,0,1,1,0,0,0,48.77,57.64,47.85,59.13,8.333333333333334,1,1,0,0,8,8,2,0,433.33334,50791.938,0,143513.88,81611.727,1784.6494 -12551,15469,27956,27957,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,56,-3,-7.9745607,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,1.8246067,0,0,1,1,0,0,0,58.07,46.29,58.32,50.22,8.333333333333334,1,1,0,0,0,4,3,1,811,1266593,715379.88,262204.19,0,2195.0835 -12551,15469,27957,27956,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.8669138,7.8143163,56,3,94.698898,0,-9,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5579138,58.32,50.22,58.07,46.29,8.333333333333334,1,1,0,0,10,4,3,1,811,1266593,715379.88,262204.19,0,2195.0835 -12552,15470,27958,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-949.88153,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,8.1043491,0,0,1,1,0,0,0,43.1,23.61,-9,-9,5,1,1,0,0,0,2,1,0,303,0,0,0,0,1673.6984 -12553,15471,27959,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.3465118,7.7418118,6.6051335,0,0,-1047.0049,-9,2,2,2019,12,2,25,0,1,2,0,6.5968919,6.5968919,0,0,0,0,0,1,1,0,6.4981856,0,20.76,64.84999999999999,-9,-9,6.666666666666667,1,1,0,0,10,10,3,1,621,21336.502,0,161907.67,27145.281,1616.0563 -12554,15472,27960,27961,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,8.4636602,8.4624958,0,13,2,4.7753677,0,-9,-9,2019,17,4,45,47,1,4,0,15.791389,15.791389,0,0,0,0,0,0,0,0,0,0,27.42,46.06,12.72,65.98999999999999,6.666666666666667,1,1,0,0,9,8,5,1,1221,234070.45,-29167.221,227953.59,43080.063,3279.5103 -12554,15472,27961,27960,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,7.9649835,8.191144,0,8,-2,8.450408,0,2,1,2019,10,0,40,40,1,0,0,9.1212492,9.1212492,0,0,0,0,0,0,0,0,0,0,12.72,65.98999999999999,27.42,46.06,6.666666666666667,4,5,0,0,6,8,5,1,1221,234070.45,-29167.221,227953.59,43080.063,3279.5103 -12555,15473,27962,-9,-9,-9,1,0,42,0,4,0,2,2,-9,0,4,3.5783772,3.5253797,0,0,0,-976.24243,0,2,2,2019,18,5,20,20,1,5,0,.21028504,.21028504,0,0,0,0,27,1,1,0,0,0,20.89,61.68,-9,-9,5,1,1,0,0,11,2,2,1,345,38232.32,77974.516,0,0,484.19998 -12556,15474,27963,27964,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.6038971,9.6446629,0,37,-1,-46.760067,0,2,2,2019,8,0,46,50,1,0,0,46.196754,46.196754,0,0,0,0,0,0,0,0,3.4291632,0,57.06,57.76,58.02,31.59,8.333333333333334,1,1,0,0,10,7,5,1,1202.5,4521909,3370023.5,735231.5,0,9532.5771 -12556,15474,27964,27963,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,0,0,37,1,88.153976,0,2,3,2019,12,4,0,0,4,4,0,0,0,0,0,0,0,71.5,0,0,0,0,0,58.02,31.59,57.06,57.76,8.333333333333334,1,1,0,0,0,7,5,1,1202.5,4521909,3370023.5,735231.5,0,9532.5771 -12557,15475,27965,27966,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.2435961,8.2172737,0,35,4,-43.212639,0,3,3,2019,21,8,65,60,1,8,0,6.1673355,6.1673355,0,0,0,0,0,0,0,0,0,0,37.4,66.64,39.72,60.11,3.333333333333333,1,1,0,1,9,12,3,1,958.5,1287346.8,916312.88,528447.44,0,2059.8433 -12557,15475,27966,27965,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,3.6521924,3.397038,0,35,-4,-5.0385356,0,2,3,2019,16,5,24,4,1,5,0,.1791153,.1791153,0,0,0,0,2,0,0,0,0,0,39.72,60.11,37.4,66.64,6.666666666666667,1,1,0,0,9,12,3,1,958.5,1287346.8,916312.88,528447.44,0,2059.8433 -12558,15476,27967,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.9824271,7.8528447,0,0,0,-903.6983,0,1,1,2019,8,0,40,45,1,0,0,7.9796515,7.9796515,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1806,372714.28,0,0,0,1274.8403 -12559,15477,27968,27969,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.0005074,7.8853035,0,26,-2,11.62364,0,2,2,2019,22,11,39,42,1,11,0,9.1447268,9.1447268,0,0,0,0,0,0,0,0,.75003612,0,25.72,44.97,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,452.5,96124.063,111183.36,222267.25,106003.7,3175.0498 -12559,15477,27969,27968,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4954147,8.6287689,0,26,2,-147.42314,0,2,2,2019,10,1,44,49,1,1,0,10.59462,10.59462,0,0,0,0,0,0,0,0,2.4617476,0,51.83,57.2,25.72,44.97,8.333333333333334,1,1,0,0,12,9,5,1,452.5,96124.063,111183.36,222267.25,106003.7,3175.0498 -12559,15478,27970,-9,27968,27969,1,0,23,0,0,0,2,2,-9,0,5,7.1691937,7.3773346,0,0,0,-898.67755,0,2,2,2019,35,12,14,24,1,12,1,9.8320589,9.8320589,0,0,0,0,0,0,0,0,0,0,14.34,69.48999999999999,-9,-9,1.666666666666667,1,1,0,0,4,9,3,1,1878,-43153.488,0,0,0,963.00067 -12560,15479,27971,-9,27972,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.6304,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,1811,-49210.047,176521.94,0,0,2829.6633 -12560,15479,27972,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.7540488,7.7620583,7.2542582,0,0,-1066.4049,-9,-9,-9,2019,10,0,12,0,1,0,0,8.8241653,8.8241653,0,0,0,0,0,1,1,0,7.2395377,0,48.68,51.82,-9,-9,6.666666666666667,1,1,0,1,9,10,3,1,1811,-49210.047,176521.94,0,0,2829.6633 -12561,15480,27973,27974,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.3222947,7.7237077,5.7942562,4,-5,47.13604,0,-9,-9,2019,12,0,30,30,1,0,0,5.5814533,5.5814533,0,0,0,0,0,1,1,0,5.9730082,0,43.54,59.6,52,55,5,1,1,0,0,7,5,4,0,475.66666,-85716.109,52725.512,0,0,2692.2461 -12561,15480,27974,27973,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4531307,8.2172194,0,4,5,142.22319,-9,-9,-9,2019,9,0,35,0,1,1,0,11.483755,11.483755,0,0,0,0,0,1,1,0,3.7866175,0,52,55,43.54,59.6,8,4,1,0,0,1,5,4,0,475.66666,-85716.109,52725.512,0,0,2692.2461 -12561,15480,27975,-9,27973,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-982.50604,-9,2,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.26,55.27,-9,-9,6.666666666666667,1,1,0,0,1,5,4,0,475.66666,-85716.109,52725.512,0,0,2692.2461 -12562,15481,27976,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,4.6821928,4.4578667,0,0,0,-1091.4841,0,3,3,2019,6,0,30,30,1,0,0,.32100156,.32100156,0,0,0,0,0,0,0,0,1.2811463,0,60.3,46.58,-9,-9,10,1,1,0,0,10,7,2,1,394,134552.97,-28802.354,0,0,-58.037235 -12563,15482,27977,27978,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.2968059,7.179729,8,-2,-30.218451,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.949101,7.0321088,60.28,43.74,48.29,47.3,8.333333333333334,1,1,0,0,9,4,3,1,822,1490685.3,0,510373.56,0,1908.9248 -12563,15482,27978,27977,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,6.7033701,6.7535181,8,2,-16.061932,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1959243,6.5707955,48.29,47.3,60.28,43.74,8.333333333333334,1,1,0,0,3,4,3,1,822,1490685.3,0,510373.56,0,1908.9248 -12564,15483,27979,27981,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.2880635,6.602284,0,17,-1,21.821707,0,3,3,2019,6,0,10,10,1,0,0,5.3124943,5.3124943,0,0,0,0,0,1,1,0,7.490232,0,57.16,56.15,54.63,58.83,8.333333333333334,1,1,0,0,5,2,2,1,645.5,-131534,0,0,0,904.06396 -12564,15483,27980,-9,27979,27981,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.91119,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,2,1,645.5,-131534,0,0,0,904.06396 -12564,15483,27981,27979,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,1.6702399,1.8691711,0,17,1,-13.420845,0,2,2,2019,7,0,35,20,1,0,0,.015149629,.015149629,0,0,0,0,0,1,1,0,0,0,54.63,58.83,57.16,56.15,0,1,1,0,0,9,2,2,1,645.5,-131534,0,0,0,904.06396 -12564,15483,27982,-9,27979,27981,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.9099,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,645.5,-131534,0,0,0,904.06396 -12565,15484,27983,-9,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,9.092659,9.0824289,0,10,-3,71.031319,0,3,3,2019,10,0,38,38,1,0,0,30.829493,30.829493,0,0,0,0,0,1,1,0,0,0,46.44,59.62,55.19,54.26,8.333333333333334,1,1,0,0,10,8,5,1,2230.5,311914,18435.496,438112,93498.734,3169.4536 -12565,15484,27984,-9,-9,27983,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.34479,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,8,5,1,2230.5,311914,18435.496,438112,93498.734,3169.4536 -12565,15485,27985,-9,-9,-9,1,1,49,1,1,0,1,1,-9,0,4,8.4294615,8.6448526,0,10,3,-50.026619,0,2,2,2019,8,0,30,40,1,0,0,17.278971,17.278971,0,0,0,0,0,1,1,0,1.6511743,0,55.19,54.26,46.44,59.62,8.333333333333334,1,1,0,0,12,8,5,1,1266,238298.77,27741.932,0,0,2327.3806 -12566,15486,27986,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,5.919661,5.4383717,0,0,-1075.9314,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.389776,5.4326162,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,568,439326,162803.19,124373.93,0,567.52911 -12567,15487,27987,27988,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.8481493,8.8042526,5.9951043,36,-2,32.649548,0,2,3,2019,6,0,42,42,1,0,0,16.381647,16.381647,0,0,0,0,0,0,0,0,1.6266658,6.5388637,52.77,50.48,61.68,26.01,8.333333333333334,1,1,0,0,11,5,4,1,1347,962836.88,768624.38,187020.36,0,2171.8489 -12567,15487,27988,27987,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,3.4960239,3.3980472,0,36,2,62.487942,0,2,2,2019,8,1,20,20,1,1,0,.20064445,.20064445,0,0,0,0,0,0,0,0,0,0,61.68,26.01,52.77,50.48,8.333333333333334,1,1,0,0,12,5,4,1,1347,962836.88,768624.38,187020.36,0,2171.8489 -12567,15488,27989,-9,27987,27988,1,1,23,0,0,0,2,2,-9,0,4,8.0419798,8.289876,0,0,0,-923.6203,0,2,2,2019,6,0,36,48,1,0,1,9.9183674,9.9183674,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,6,5,4,1,2108,-82249.648,0,0,0,1837.3647 -12568,15489,27990,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.8188591,6.1205621,0,0,-995.29761,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8204856,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,357,404163.56,100918.26,196565.98,0,710.26636 -12569,15490,27991,-9,27993,27992,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1088.9261,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,5,1,453.66666,312738.03,106745.68,429872,349039.59,3689.6714 -12569,15490,27992,27993,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.8858013,9.0615387,0,5,1,131.09966,0,2,2,2019,16,4,40,35,1,4,0,26.419937,26.419937,0,0,0,0,0,1,1,0,0,0,33.39,54.83,44.55,48.28,6.666666666666667,1,1,0,0,6,1,5,1,453.66666,312738.03,106745.68,429872,349039.59,3689.6714 -12569,15490,27993,27992,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,7.8157849,8.0051746,0,5,-1,21.326908,0,-9,-9,2019,13,1,24,20,1,1,0,12.568828,12.568828,0,0,0,0,0,1,1,0,0,0,44.55,48.28,33.39,54.83,6.666666666666667,1,1,0,0,8,1,5,1,453.66666,312738.03,106745.68,429872,349039.59,3689.6714 -12570,15491,27994,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.39396,8.368186,0,0,0,-899.87903,0,1,2,2019,10,3,38,39,1,3,0,13.837318,13.837318,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,896,-20279.449,43930.945,0,0,1424.8547 -12571,15492,27995,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2589121,7.4674087,0,0,-1058.6671,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2811928,44.12,47.28,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,286,572662.69,98386.391,307439.59,0,1732.1118 -12571,15493,27996,-9,27995,-9,1,1,36,0,0,0,1,1,-9,0,4,8.2767782,8.5220442,0,0,0,-968.66565,0,2,2,2019,8,2,38,39,1,2,0,13.584043,13.584043,0,0,0,0,0,1,1,0,5.6578488,0,49.69,55.66,-9,-9,3.333333333333333,1,1,0,0,11,10,5,1,229,326548.81,196230.86,327489.56,134066.53,1466.0637 -12572,15494,27997,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1040.0227,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,194,-121231.79,0,49574.641,0,1182.5426 -12572,15495,27998,-9,27997,-9,1,0,46,0,0,0,3,3,-9,1,4,0,0,0,0,0,-983.7132,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,12,1,1,1580,16175.395,0,0,0,852.55536 -12573,15496,27999,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.3752279,8.422308,0,0,0,-1010.5989,0,2,3,2019,25,11,32,38,1,11,0,16.790844,16.790844,0,0,0,0,27,0,0,0,3.6094811,0,30.26,50.99,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,1310,340641.13,302925.34,142961.02,55387.508,1725.4584 -12573,15497,28000,-9,27999,-9,1,0,24,0,0,0,1,1,-9,0,3,0,6.0947976,5.9551749,0,0,-989.39282,1,1,-9,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,2,0,0,0,5.6456904,0,30.61,27.79,-9,-9,6.666666666666667,1,1,0,1,1,2,2,1,2681,13363.084,0,0,0,-574.58368 -12574,15498,28001,28002,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,11,9,-52.471588,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.2821877,0,51,46,57.27,54.82,7,1,1,0,0,0,10,2,1,903,491976.44,309203.34,235390.97,0,2376.7563 -12574,15498,28002,28001,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.2713304,7.5164213,11,0,-144.70157,0,1,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7013903,7.3616333,57.27,54.82,51,46,10,1,1,0,0,7,10,2,1,903,491976.44,309203.34,235390.97,0,2376.7563 -12575,15499,28003,-9,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,8.8675261,8.8710279,5.7659068,0,0,-973.06335,0,2,2,2019,15,3,30,31,1,3,0,23.033567,23.033567,0,0,0,0,0,1,1,0,8.0948963,0,40.1,53.28,-9,-9,6.666666666666667,1,1,0,0,8,5,5,1,353,381171.44,-10102.976,243025.16,27560.867,3259.8804 -12575,15499,28004,-9,28003,-9,1,0,13,0,1,1,3,0,-9,0,1,0,0,0,0,0,-981.9859,-9,1,-9,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,3,1,1,-9,0,0,5,5,1,353,381171.44,-10102.976,243025.16,27560.867,3259.8804 -12576,15500,28005,-9,28008,28007,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.3077,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 -12576,15500,28006,-9,28008,28007,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.72626,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 -12576,15500,28007,28008,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.5370426,8.5585518,0,20,5,-23.962053,0,1,2,2019,8,0,40,42,1,0,0,15.744404,15.744404,0,0,0,0,0,1,1,0,8.0270844,0,51.17,49.39,51.83,57.2,8.333333333333334,1,1,0,0,7,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 -12576,15500,28008,28007,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.5758533,8.574729,0,17,-5,-26.875761,-9,2,2,2019,11,0,40,0,1,0,0,11.948496,11.948496,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.17,49.39,6.666666666666667,1,1,0,0,10,7,5,0,429.75,533209,154555.25,483029.63,108627.91,5092.6836 -12577,15501,28009,28010,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,33,2,0,0,2,2,2019,14,5,0,3,4,5,0,0,0,0,0,0,0,7,1,1,0,1.4537625,0,29.61,61.74,48.28,60.18,5,1,1,0,0,12,9,1,1,1891,1543665,752908.5,463538.81,0,1597.9001 -12577,15501,28010,28009,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,0,0,33,-2,0,0,2,2,2019,11,2,0,2,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,29.61,61.74,1.666666666666667,1,1,0,0,10,9,1,1,1891,1543665,752908.5,463538.81,0,1597.9001 -12578,15502,28011,28012,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,6.8716836,7.2729378,0,24,4,30.441736,0,2,3,2019,12,0,35,40,1,0,0,5.3534288,5.3534288,0,0,0,0,2,0,0,0,8.6595116,0,51.64,50.48,55.36,51.57,8.333333333333334,1,1,0,0,10,9,3,1,742,52931.094,107178.34,314682.22,148958.19,7438.6733 -12578,15502,28012,28011,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.7987285,8.1132212,0,10,-4,-34.125767,-9,-9,-9,2019,7,0,20,0,1,0,0,19.466135,19.466135,0,0,0,0,0,0,0,0,8.6139669,0,55.36,51.57,51.64,50.48,8.333333333333334,1,1,0,0,7,9,3,1,742,52931.094,107178.34,314682.22,148958.19,7438.6733 -12579,15503,28013,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1026.145,0,2,2,2019,18,0,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,28.71,18.35,-9,-9,4,4,2,0,1,0,8,2,0,165,-113972.56,0,0,0,1086.5609 -12580,15504,28014,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.5067272,7.1890421,0,0,-1070.3184,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.1336985,48.41,39.63,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,730,700926.44,271996.56,0,0,2076.5908 -12581,15505,28015,28016,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.4676237,5.4749947,49,3,83.437439,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9329734,5.5127168,48.71,43.87,57.15,29.19,5,1,1,0,0,0,10,2,0,732,53842.668,46771.824,0,0,1079.9329 -12581,15505,28016,28015,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,3.5203505,3.455045,49,-3,-42.719021,0,3,3,2019,10,1,0,15,4,1,0,0,0,1,0,0,0,2,1,1,0,4.2686801,3.6090117,57.15,29.19,48.71,43.87,8.333333333333334,1,1,0,0,8,10,2,0,732,53842.668,46771.824,0,0,1079.9329 -12582,15506,28017,28018,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,7.965188,8.0705671,0,9,-2,32.933514,0,-9,-9,2019,10,0,38,38,1,0,0,8.8325644,8.8325644,0,0,0,0,2,1,1,0,0,0,47,51,54.1,59.11,6.666666666666667,4,2,0,0,9,6,3,1,637,28029.115,42482.586,91495.477,54423.758,2055.6763 -12582,15506,28018,28017,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.2709112,7.1362801,0,9,2,80.450325,0,2,2,2019,7,0,10,15,1,0,0,20.668695,20.668695,0,0,0,0,0,1,1,0,0,0,54.1,59.11,47,51,5,1,1,0,0,10,6,3,1,637,28029.115,42482.586,91495.477,54423.758,2055.6763 -12582,15506,28019,-9,28018,28017,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.1801,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,637,28029.115,42482.586,91495.477,54423.758,2055.6763 -12583,15507,28020,-9,28023,28022,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.5612,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 -12583,15507,28021,-9,28023,28022,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9971,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 -12583,15507,28022,28023,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.5100775,9.2325773,0,15,2,12.404201,0,3,3,2019,6,0,55,55,1,0,0,16.313627,16.313627,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.54,62.09,8.333333333333334,1,1,0,0,11,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 -12583,15507,28023,28022,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.5710526,8.5289793,0,15,-2,-11.399778,0,1,1,2019,1,0,38,38,1,0,0,14.583523,14.583523,0,0,0,0,0,1,1,0,0,0,50.54,62.09,57.16,56.15,10,1,1,0,0,11,4,5,1,850.5,1617765.6,410221.75,660867.88,369812.91,5525.4102 -12584,15508,28024,-9,28025,28026,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.8434,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,1386.6666,1170662.5,1046838.3,273252.28,99698.203,2458.6785 -12584,15508,28025,28026,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,6.7404728,6.7330966,0,8,1,40.447567,0,2,2,2019,16,4,10,14,1,4,0,13.561584,13.561584,0,0,0,0,0,1,1,0,0,0,44.22,56.66,25.88,59.65,8.333333333333334,1,1,0,0,9,10,4,1,1386.6666,1170662.5,1046838.3,273252.28,99698.203,2458.6785 -12584,15508,28026,28025,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.7608213,8.9010525,0,8,-1,-6.751183,-9,2,2,2019,19,7,40,0,1,7,0,14.306069,14.306069,0,0,0,0,0,1,1,0,0,0,25.88,59.65,44.22,56.66,3.333333333333333,1,1,0,0,9,10,4,1,1386.6666,1170662.5,1046838.3,273252.28,99698.203,2458.6785 -12585,15509,28027,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1087.9734,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,311,-164847.38,0,0,0,748.93274 -12585,15510,28028,-9,28027,-9,1,0,38,0,0,0,2,2,-9,0,4,6.7632747,6.8765497,0,0,0,-994.42133,0,3,-9,2019,11,0,12,0,1,0,0,7.1808262,7.1808262,0,0,0,0,0,1,1,0,0,0,47.97,56.11,-9,-9,6.666666666666667,1,1,0,1,3,7,2,0,461,-22565.277,0,0,0,247.71571 -12586,15511,28029,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9036951,6.9425125,0,0,-949.8678,0,2,1,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,3.8753395,6.6383944,47.81,52.33,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,192,363194.72,171028.48,222378.36,195577.91,814.8587 -12587,15512,28030,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.7860575,8.6407871,0,0,0,-1004.7152,-9,1,3,2019,1,0,21,0,1,0,0,38.74535,38.74535,0,0,0,0,2,0,0,0,0,0,58.39,41.27,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,388,283959.06,110272.73,0,0,1866.2603 -12588,15513,28031,28032,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,53,-4,-30.674423,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.5434861,0,59.88,48.04,57.09,46.7,10,1,1,0,0,0,2,4,1,215,1641797.5,1048066.3,519091.97,0,2816.7031 -12588,15513,28032,28031,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.4678125,8.7075653,53,4,-58.354721,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,.35589758,0,0,1,1,0,2.1305223,8.6458549,57.09,46.7,59.88,48.04,8.333333333333334,1,1,0,0,0,2,4,1,215,1641797.5,1048066.3,519091.97,0,2816.7031 -12589,15514,28033,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.69159,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.44,43.33,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,187,-169146.34,0,244192.05,0,676.07953 -12590,15515,28034,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1078.3821,0,-9,2,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.15,28.96,-9,-9,6.666666666666667,3,4,1,0,0,5,1,0,996,-107614.01,0,0,0,3129.7483 -12590,15516,28035,-9,28034,-9,1,1,18,0,0,0,2,2,1,0,3,7.3585734,7.5218606,0,0,0,-1065.4197,-9,3,-9,2019,9,0,25,0,1,0,1,7.3365645,7.3365645,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,10,3,4,0,0,0,5,3,0,349,219025.77,-76428.516,0,0,862.86029 -12591,15517,28036,28037,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.8593903,7.5604267,42,1,27.037062,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2219758,7.5772696,58.07,46.29,49.66,55.68,10,1,1,0,0,0,4,4,0,742.5,1160387.6,725954.31,236827.59,0,4288.1641 -12591,15517,28037,28036,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.5522594,7.3365593,42,-1,-94.929565,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1469169,7.6073518,49.66,55.68,58.07,46.29,8.333333333333334,1,1,0,0,0,4,4,0,742.5,1160387.6,725954.31,236827.59,0,4288.1641 -12592,15518,28038,28039,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.288949,7.7435203,0,10,-3,-5.9433017,-9,-9,-9,2019,12,0,38,0,1,2,0,3.8085978,3.8085978,0,0,0,0,88,1,1,0,0,0,47,49,50,49,7,1,1,0,1,9,4,2,0,1317.5,173724.78,76552.492,0,0,1177.183 -12592,15518,28039,28038,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,10,3,-69.839607,-9,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,50,49,47,49,7,1,1,0,1,0,4,2,0,1317.5,173724.78,76552.492,0,0,1177.183 -12592,15519,28040,-9,28038,28039,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1051.2998,-9,2,2,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,7.188333,0,47,59,-9,-9,7,1,1,0,0,0,4,1,0,332,-34997.027,0,0,0,1139.3815 -12592,15520,28041,-9,28038,28039,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-867.12604,0,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,22.04,60.35,-9,-9,6.666666666666667,1,1,1,0,1,4,1,0,271,337332.69,0,0,0,0 -12593,15521,28042,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.9080162,7.9882097,0,0,0,-1027.9395,0,2,2,2019,11,3,33,35,1,3,0,11.076,11.076,0,0,0,0,7,1,0,1,6.7659607,0,40.89,57.97,-9,-9,3.333333333333333,1,1,0,0,9,13,3,1,1596.6666,62630.676,-46351.371,0,0,2881.3396 -12593,15521,28043,-9,28042,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.99304,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,1596.6666,62630.676,-46351.371,0,0,2881.3396 -12593,15521,28044,-9,28042,-9,1,1,16,0,2,0,2,2,-9,0,4,0,5.6303244,5.3940544,0,0,-969.70972,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,5.7395339,0,60.52,53.2,-9,-9,10,1,1,1,0,0,13,3,1,1596.6666,62630.676,-46351.371,0,0,2881.3396 -12593,15522,28045,-9,28042,-9,1,1,19,0,2,0,2,2,-9,0,5,7.2956619,6.9932494,0,0,0,-965.35657,-9,2,-9,2019,6,0,12,0,1,0,1,10.833253,10.833253,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,499,0,0,0,0,-559.29968 -12594,15523,28046,-9,28048,28047,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.84869,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,853.66669,640972.31,205809.61,277990.09,53440.809,3222.4434 -12594,15523,28047,28048,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.2595434,8.2922459,0,7,0,-1.8111329,0,2,2,2019,7,0,42,43,1,0,0,12.257977,12.257977,0,0,0,0,2,1,1,0,4.2595687,0,57.16,56.15,44.25,55.03,8.333333333333334,1,1,0,0,7,13,4,1,853.66669,640972.31,205809.61,277990.09,53440.809,3222.4434 -12594,15523,28048,28047,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.6851945,7.8209448,0,7,0,34.814163,0,-9,-9,2019,11,0,30,32,1,0,0,7.8291893,7.8291893,0,0,0,0,0,1,1,0,.27889508,0,44.25,55.03,57.16,56.15,0,1,1,0,0,7,13,4,1,853.66669,640972.31,205809.61,277990.09,53440.809,3222.4434 -12595,15524,28049,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.836,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,48.3,-9,-9,5,1,1,0,0,0,8,1,0,282,115125.43,10418.663,0,0,884.5127 -12596,15525,28050,28051,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.8193197,8.5897989,5.5236063,27,5,114.96185,0,-9,-9,2019,8,0,35,35,1,0,0,20.667128,20.667128,0,0,0,0,0,0,0,0,1.2286891,5.5007291,54.2,57.49,46.31,38.3,8.333333333333334,1,1,0,0,9,2,5,1,535,854842.44,504776.38,212474.94,0,3714.4124 -12596,15525,28051,28050,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.4471216,7.5388756,0,27,-5,85.375427,0,3,2,2019,17,5,30,30,1,5,0,6.2198262,6.2198262,0,0,0,0,0,0,0,0,1.8435113,0,46.31,38.3,54.2,57.49,8.333333333333334,1,1,0,0,9,2,5,1,535,854842.44,504776.38,212474.94,0,3714.4124 -12596,15526,28052,-9,28051,28050,1,0,26,0,0,0,1,1,-9,0,4,7.9588337,7.7869997,0,0,0,-1066.4963,0,2,2,2019,15,3,37,25,1,3,1,8.3499918,8.3499918,0,0,0,0,0,0,0,0,1.5705481,0,46.39,52.95,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,1363,140235.14,13833.778,0,0,1320.1425 -12597,15527,28053,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.916564,8.099741,6.0541277,0,0,-1072.1078,0,2,2,2019,5,0,58,46,1,0,0,6.4098148,6.4098148,0,0,0,0,0,1,1,0,1.5552295,6.1120687,57.74,49,-9,-9,1.666666666666667,1,1,0,0,10,4,4,1,619,-186313.56,8422.5996,0,0,2461.9814 -12598,15528,28054,28055,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.7466421,9.0647745,11,1,41.582882,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.3527141,9.0368547,55.3,55.6,51.24,58.84,10,1,1,0,0,12,5,5,1,444,3054435,2358390.8,221886.69,0,4568.645 -12598,15528,28055,28054,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.352963,7.1673603,11,-1,83.07634,0,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,14.5,0,0,0,0,7.5162868,51.24,58.84,55.3,55.6,8.333333333333334,1,1,0,0,10,5,5,1,444,3054435,2358390.8,221886.69,0,4568.645 -12599,15529,28056,-9,28059,28057,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.4674,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 -12599,15529,28057,28059,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,8.8995876,9.1440268,0,8,1,4.2005243,0,2,2,2019,8,0,37,37,1,0,0,27.441994,27.441994,0,0,0,0,0,1,1,0,0,0,49.12,57.28,48.81,59.91,8.333333333333334,1,1,0,0,9,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 -12599,15529,28058,-9,28059,28057,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-967.87915,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 -12599,15529,28059,28057,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,5.9956517,6.1964374,0,8,-1,11.199805,0,2,2,2019,9,0,6,6,1,0,0,6.177206,6.177206,0,0,0,0,0,1,1,0,.11664974,0,48.81,59.91,49.12,57.28,8.333333333333334,1,1,0,0,4,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 -12599,15529,28060,-9,28059,28057,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.33557,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,884,1034245.8,1025096.3,131912.23,90647.203,3070.5923 -12600,15530,28061,28062,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.5016336,8.7603006,0,41,3,51.634254,0,2,2,2019,9,1,40,40,1,1,0,15.541166,15.541166,0,0,0,0,0,0,0,0,0,0,45.49,58.84,51.24,58.84,8.333333333333334,1,1,0,0,8,2,4,1,482.5,2112101,1731067.3,200370,0,3099.7007 -12600,15530,28062,28061,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.3969808,7.6692996,0,40,-3,62.344257,0,3,2,2019,9,0,28,29,1,0,0,8.5111713,8.5111713,0,0,0,0,2,0,0,0,0,0,51.24,58.84,45.49,58.84,8.333333333333334,1,1,0,0,8,2,4,1,482.5,2112101,1731067.3,200370,0,3099.7007 -12600,15531,28063,-9,28062,28061,1,1,34,0,0,0,2,2,-9,0,4,7.7985296,7.9472876,0,0,0,-1052.2274,0,2,1,2019,11,0,34,40,1,0,1,7.0993772,7.0993772,0,0,0,0,0,0,0,0,1.2152909,0,38.34,62.12,-9,-9,1.666666666666667,1,1,0,0,5,2,3,1,2625,452663.16,0,0,0,840.70929 -12601,15532,28064,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,4.0113711,3.8389289,0,0,-1040.1174,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.8960938,4.2175288,39.75,32.2,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,713,419471.91,-69637.344,75130.375,0,1042.8678 -12602,15533,28065,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,7.1590643,7.0224299,0,0,-890.22614,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5708671,7.0224576,39.45,34.71,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1532,325130.03,155535.19,194791.38,0,1967.7571 -12603,15534,28066,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.3101358,7.7168608,0,0,0,-1141.4301,0,3,3,2019,26,10,60,32,1,10,0,3.3897407,3.3897407,0,0,0,0,0,1,1,0,0,0,31.36,50.56,-9,-9,0,1,1,0,1,5,12,3,1,217,868622.69,156439.09,305069,0,1009.8768 -12604,15535,28067,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.7036285,8.7246828,0,0,0,-998.33643,-9,2,2,2019,12,0,80,0,1,0,0,8.3273849,8.3273849,0,0,0,0,0,0,0,0,0,0,3.17,63.82,-9,-9,5,1,1,0,0,12,2,5,0,4551,447857.13,25353.945,0,0,1893.6799 -12605,15536,28068,28069,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.2214742,7.4569039,7,1,-11.817784,0,3,-9,2019,16,5,0,0,4,5,0,0,0,1,6.5977855,4.8702636,62.119915,0,1,1,0,5.3847227,7.1493387,47.88,28.69,49.17,47.83,3.333333333333333,1,1,0,0,0,11,3,1,991.5,1499567.8,1049422.5,301881.69,0,3500.4487 -12605,15536,28069,28068,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,8.0671577,7.8396354,7,-1,-62.823608,0,3,2,2019,11,1,0,0,4,1,0,0,0,1,0,5.1794748,0,0,1,1,0,5.1772099,7.6018186,49.17,47.83,47.88,28.69,5,1,1,0,0,0,11,3,1,991.5,1499567.8,1049422.5,301881.69,0,3500.4487 -12606,15537,28070,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1015.2222,0,2,3,2019,36,12,0,0,4,12,0,0,0,1,0,29.13797,0,0,1,1,0,0,0,17.62,27.15,-9,-9,0,1,1,0,1,0,10,1,0,1049,148942.16,0,188563.25,0,1816.6262 -12606,15538,28071,-9,28070,-9,1,1,47,0,0,0,3,3,-9,0,4,7.6155515,7.699944,0,0,0,-1176.47,0,3,3,2019,17,5,54,49,1,5,0,4.1414309,4.1414309,0,0,0,0,27,1,1,0,.56011683,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,7,10,3,0,122,-157059.38,-121723.76,250504.98,0,816.07874 -12607,15539,28072,28075,-9,-9,1,0,38,2,2,0,1,1,-9,0,3,0,0,0,7,1,-1.5110245,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,32.93,61.75,43.53,44.6,8.333333333333334,1,1,0,0,7,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 -12607,15539,28073,-9,28072,28075,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-920.02283,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 -12607,15539,28074,-9,28072,28075,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.3268,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 -12607,15539,28075,28072,-9,-9,1,1,37,2,2,0,2,2,-9,1,4,8.0485458,7.9366674,0,7,-1,-28.323256,0,2,2,2019,25,11,40,40,1,11,0,7.5223136,7.5223136,0,0,0,0,0,1,1,0,0,0,43.53,44.6,32.93,61.75,3.333333333333333,1,1,0,1,9,9,3,0,502,92232.563,-13856.354,0,0,2488.1643 -12608,15540,28076,28077,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,5.8622527,5.7971539,50,3,27.306879,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0524259,5.6912413,49.88,43.25,50.74,49.6,1.666666666666667,1,1,0,0,0,12,2,1,553.5,160368.03,241608.72,219676.92,0,2207.1553 -12608,15540,28077,28076,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.0490656,6.3396959,50,-3,64.696358,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.9226656,5.9893789,50.74,49.6,49.88,43.25,8.333333333333334,1,1,0,0,0,12,2,1,553.5,160368.03,241608.72,219676.92,0,2207.1553 -12609,15541,28078,28079,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.3162079,9.2670288,0,15,8,70.136375,0,3,3,2019,13,2,41,41,1,2,0,27.928482,27.928482,0,0,0,0,0,0,0,0,0,0,30.66,60.65,55.9,52.64,5,1,1,0,0,12,9,5,0,1185.5,1609317.1,360181.44,927950.25,171596.22,3942.145 -12609,15541,28079,28078,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.5314903,7.4226961,0,16,-8,81.795029,0,3,3,2019,8,0,32,12,1,0,0,5.78477,5.78477,0,0,0,0,0,0,0,0,0,0,55.9,52.64,30.66,60.65,8.333333333333334,2,3,0,0,10,9,5,0,1185.5,1609317.1,360181.44,927950.25,171596.22,3942.145 -12610,15542,28080,-9,28082,28081,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.40948,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 -12610,15542,28081,28082,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,7.7276244,7.4096746,0,6,16,-108.00352,0,-9,-9,2019,6,0,27,24,1,0,0,7.297524,7.297524,0,0,0,0,0,1,1,0,0,0,53.2,42.64,61.41,48.88,10,1,1,0,0,7,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 -12610,15542,28082,28081,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.395298,7.2634354,0,6,-16,74.750954,0,-9,-9,2019,8,1,37,37,1,1,0,4.6937613,4.6937613,0,0,0,0,0,1,1,0,0,0,61.41,48.88,53.2,42.64,10,1,1,0,0,12,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 -12610,15542,28083,-9,28082,28081,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1035.4338,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,3,1,710.75,51180.461,45973.262,211039.17,14402.093,2196.9084 -12611,15543,28084,28085,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9003415,8.0010386,0,20,-6,18.609194,0,-9,2,2019,12,0,36,36,1,0,0,8.6524858,8.6524858,0,0,0,0,0,0,0,0,0,0,44.36,54.04,51.24,58.84,5,1,1,0,0,9,1,5,1,993.66669,499667.5,128599.84,228709.03,0,3117.3499 -12611,15543,28085,28084,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6641855,8.982069,0,20,6,-88.598778,0,-9,-9,2019,10,0,39,40,1,0,0,21.355011,21.355011,0,0,0,0,0,0,0,0,0,0,51.24,58.84,44.36,54.04,6.666666666666667,1,1,0,0,9,1,5,1,993.66669,499667.5,128599.84,228709.03,0,3117.3499 -12611,15543,28086,-9,28084,28085,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-995.14825,-9,2,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,1,0,0,1,5,1,993.66669,499667.5,128599.84,228709.03,0,3117.3499 -12611,15544,28087,-9,28084,28085,1,1,23,0,0,0,2,2,-9,0,5,8.2391491,8.2880707,0,0,0,-991.48273,0,2,2,2019,7,0,39,40,1,0,1,14.214327,14.214327,0,0,0,0,0,0,0,0,1.7825779,0,57,59.12,-9,-9,5,1,1,0,0,0,1,4,1,322,0,0,0,0,1536.6611 -12612,15545,28088,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.3759494,7.3217812,0,0,-1005.0354,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.981332,7.0360689,62.42,45.64,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,186,382854.34,220256.06,144775.13,0,1392.4365 -12613,15546,28089,28090,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,7.6815362,7.6526766,38,7,55.482651,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5517225,48.18,61.8,57.06,57.76,10,1,1,0,0,0,6,3,1,236.5,945676.13,524601,283751.22,0,3016.4614 -12613,15546,28090,28089,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,6.3797021,6.2035394,38,-7,29.878925,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3213959,57.06,57.76,48.18,61.8,8.333333333333334,1,1,0,0,0,6,3,1,236.5,945676.13,524601,283751.22,0,3016.4614 -12614,15547,28091,28092,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.5425062,8.5162582,0,2,0,26.667427,0,2,1,2019,9,1,35,35,1,1,0,14.817082,14.817082,0,0,0,0,0,0,0,0,2.7005506,0,51.14,60.45,24.9,27.84,8.333333333333334,1,1,0,0,7,9,5,1,983.5,-124338.69,120905.34,254198.75,174392.52,3634.7529 -12614,15547,28092,28091,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,8.5055103,8.3855143,0,2,0,20.169031,0,-9,-9,2019,32,12,41,37,1,12,0,12.636113,12.636113,0,0,0,0,0,0,0,0,0,0,24.9,27.84,51.14,60.45,3.333333333333333,1,1,0,0,2,9,5,1,983.5,-124338.69,120905.34,254198.75,174392.52,3634.7529 -12615,15548,28093,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.8904772,8.8221016,0,0,0,-1040.3177,0,3,3,2019,22,10,42,42,1,10,0,16.845963,16.845963,0,0,0,0,14.5,0,0,0,3.2046387,0,34.29,33.04,-9,-9,6.666666666666667,1,1,0,0,9,6,5,1,429,466213.28,252462.77,145980.66,74454.766,2183.7351 -12616,15549,28094,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-963.96838,0,-9,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,44.4,17.69,-9,-9,5,1,1,0,0,0,1,1,0,314,89178.781,0,0,0,1352.9474 -12616,15550,28095,-9,28094,-9,1,0,38,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1054.3246,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,0,1,1,0,1907,92801.742,0,0,0,865.81287 -12617,15551,28096,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,2.7780871,2.4893782,0,0,-1044.7184,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.8063881,2.6595218,66.76000000000001,29.06,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,658,370524.09,153180.45,253974.48,0,1034.2509 -12618,15552,28097,-9,28098,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.6204,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,828,62783.086,0,0,0,1389.3987 -12618,15552,28098,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,0,0,0,0,-992.46027,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.52,52.74,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,828,62783.086,0,0,0,1389.3987 -12619,15553,28099,28100,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.3384237,7.6203604,63,1,-17.366529,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,3.4194772,7.4574356,49.04,55.86,57.7,29.14,8.333333333333334,1,1,0,0,0,9,3,1,1475,532155.44,306698.75,488671.91,0,2504.2566 -12619,15553,28100,28099,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,6.768198,6.5095868,10,-1,-32.004539,0,-9,-9,2019,18,0,0,0,4,5,0,0,0,1,2.1517177,12.439738,27.158377,0,1,1,0,6.7408924,6.5831017,57.7,29.14,49.04,55.86,8.333333333333334,1,1,0,0,0,9,3,1,1475,532155.44,306698.75,488671.91,0,2504.2566 -12620,15554,28101,28102,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,7,-2,0,0,1,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.44,44.51,60.12,54.8,8.333333333333334,1,1,0,0,0,12,1,1,631,695224.25,389787.44,192731.41,0,1483.1366 -12620,15554,28102,28101,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,7,2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,43.44,44.51,8.333333333333334,1,1,0,0,0,12,1,1,631,695224.25,389787.44,192731.41,0,1483.1366 -12621,15555,28103,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.9396954,8.8041239,0,0,0,-1049.8013,0,1,2,2019,7,0,40,40,1,0,0,16.887543,16.887543,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,915,-51739.637,-35703.074,0,0,3513.1167 -12622,15556,28104,-9,-9,-9,1,0,62,0,1,0,2,2,-9,1,2,7.3816099,7.1110601,0,0,0,-1004.5314,0,3,3,2019,10,1,20,28,1,1,0,9.7208881,9.7208881,0,0,0,0,0,1,0,1,0,0,67.76000000000001,12.26,-9,-9,5,4,2,0,0,10,8,3,0,793,488306.84,334801.09,0,0,1663.9827 -12622,15557,28105,-9,28104,-9,1,0,26,0,1,0,2,2,-9,0,4,7.1990199,7.0581083,0,0,0,-1039.6101,0,2,-9,2019,9,0,16,16,1,0,1,5.6964383,5.6964383,0,0,0,0,0,1,0,1,0,0,41.17,59.31,-9,-9,3.333333333333333,2,3,0,0,6,8,2,0,854.5,54887.465,0,0,0,1667.4023 -12622,15557,28106,-9,28105,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.86865,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,854.5,54887.465,0,0,0,1667.4023 -12623,15558,28107,28108,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.3031259,6.5412712,31,-3,95.548103,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0900011,56.7,17.37,50.76,52.44,8.333333333333334,1,1,0,0,0,6,2,1,652.5,-53408.195,104893.97,0,0,1440.3564 -12623,15558,28108,28107,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.4987264,5.6940446,32,3,95.220619,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.367162,5.1468525,50.76,52.44,56.7,17.37,8.333333333333334,1,1,0,0,0,6,2,1,652.5,-53408.195,104893.97,0,0,1440.3564 -12624,15559,28109,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.3928013,9.5615406,0,0,0,-1092.1703,0,2,2,2019,17,5,40,41,1,5,0,39.066174,39.066174,0,0,0,0,0,1,1,0,0,0,39.4,57.46,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,463,-294032.91,144337,0,0,4656.7329 -12625,15560,28110,28111,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,7.9618878,7.6483097,5,0,-74.501282,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.9353559,8.2731094,61.01,53.18,60.12,54.8,10,1,1,0,0,12,2,3,1,627,97373.633,82966.578,0,0,1168.3833 -12625,15560,28111,28110,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,5,0,107.33005,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0887327,0,60.12,54.8,61.01,53.18,10,1,1,0,0,9,2,3,1,627,97373.633,82966.578,0,0,1168.3833 -12626,15561,28112,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.1034441,5.4098988,0,0,-1039.666,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.4078779,55.77,26,-9,-9,10,1,1,0,0,0,8,2,0,1519,872213.69,0,549572.5,0,1104.7601 -12627,15562,28113,28114,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,36,5,-77.718018,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,2.3677356,0,36.82,28,58.56,46.45,5,1,1,0,0,0,1,2,1,778.5,-319785.31,-26129.191,0,0,1199.1194 -12627,15562,28114,28113,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,6.9232626,6.7692819,36,-5,-1.2684571,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.004756,6.6029539,58.56,46.45,36.82,28,8.333333333333334,1,1,0,0,8,1,2,1,778.5,-319785.31,-26129.191,0,0,1199.1194 -12628,15563,28115,28116,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.7883797,7.8667588,0,26,3,210.99101,0,2,1,2019,9,0,31,31,1,0,0,9.252079,9.252079,0,0,0,0,7,0,0,0,1.2277538,0,46.16,54.36,48.28,60.18,8.333333333333334,1,1,0,0,12,7,4,1,337.33334,120269.69,91594.172,331361.78,84975.844,3534.9719 -12628,15563,28116,28115,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.9236383,8.5438614,0,10,-3,31.095646,0,1,-9,2019,12,0,46,50,1,0,0,13.605256,13.605256,0,0,0,0,0,0,0,0,2.1580932,0,48.28,60.18,46.16,54.36,8.333333333333334,1,1,0,0,10,7,4,1,337.33334,120269.69,91594.172,331361.78,84975.844,3534.9719 -12628,15563,28117,-9,28115,28116,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1110.3173,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.8002336,0,54.1,59.11,-9,-9,10,1,1,0,0,0,7,4,1,337.33334,120269.69,91594.172,331361.78,84975.844,3534.9719 -12628,15564,28118,-9,28115,28116,1,0,20,0,1,0,2,2,0,0,4,0,0,0,0,0,-933.67322,-9,1,1,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,28.06,64.42,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,1754,-293662.28,0,0,0,392.92154 -12629,15565,28119,28120,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,7,8,0,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.33,22.86,42.07,37.68,1.666666666666667,1,1,0,0,5,5,1,0,398.5,0,0,0,0,1857.5204 -12629,15565,28120,28119,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,0,0,0,7,-8,0,0,-9,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,42.07,37.68,33.33,22.86,3.333333333333333,1,1,0,0,1,5,1,0,398.5,0,0,0,0,1857.5204 -12630,15566,28121,28122,-9,-9,1,1,64,0,0,0,1,1,-9,0,1,0,8.207303,8.4790564,40,1,30.475378,0,3,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,42,1,1,0,3.69262,7.8706212,43.78,22.13,33.93,19.89,3.333333333333333,1,1,0,0,0,10,3,1,634.5,921130,491923.91,253399.5,0,3124.5269 -12630,15566,28122,28121,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,0,0,40,-1,81.454475,0,2,3,2019,18,0,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,0,33.93,19.89,43.78,22.13,10,1,1,0,0,0,10,3,1,634.5,921130,491923.91,253399.5,0,3124.5269 -12631,15567,28123,28124,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.8103046,7.0398216,0,8,3,-97.729828,0,3,3,2019,10,0,30,30,1,0,0,3.7018645,3.7018645,0,0,0,0,0,0,0,0,3.2733753,0,57.33,53.46,59.14,52.5,8.333333333333334,1,1,0,0,9,9,5,1,637.5,1182869,836850,218568,10180.678,6344.6074 -12631,15567,28124,28123,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,9.9283838,9.6071491,0,8,-3,66.017372,0,2,3,2019,9,0,50,50,1,0,0,40.737411,40.737411,0,0,0,0,0,0,0,0,3.0573339,0,59.14,52.5,57.33,53.46,8.333333333333334,1,1,0,0,9,9,5,1,637.5,1182869,836850,218568,10180.678,6344.6074 -12631,15568,28125,-9,28124,28123,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-939.95313,-9,2,2,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1.4022074,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,474,103639.73,0,0,0,-3.8887174 -12632,15569,28126,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.1031971,9.0154305,0,0,0,-1040.1261,0,2,2,2019,10,1,43,43,1,1,0,23.062202,23.062202,0,0,0,0,0,0,0,0,4.9400053,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,1167,904590.88,628609.56,84395.195,30765.734,2476.3657 -12633,15570,28127,28128,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,54,4,33.773949,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,4.4929862,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,0,12,2,1,534,338937.44,231801.45,199459,24239.123,1704.8027 -12633,15570,28128,28127,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.2577295,4.8622189,54,-4,11.456468,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.1293311,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,4,12,2,1,534,338937.44,231801.45,199459,24239.123,1704.8027 -12634,15571,28129,28130,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.3583493,7.5791178,8,-1,145.39738,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6070366,7.7772708,57.16,56.15,63.9,28.6,8.333333333333334,1,1,0,0,0,12,3,1,615,1268731.9,358890,215328.63,0,1954.6455 -12634,15571,28130,28129,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.3777633,5.935648,8,1,-6.7221146,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9612985,6.6566615,63.9,28.6,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,615,1268731.9,358890,215328.63,0,1954.6455 -12635,15572,28131,28132,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.1302023,8.084837,0,20,13,124.24496,0,2,-9,2019,10,0,9,40,1,0,0,32.847736,32.847736,0,0,0,0,0,1,1,0,0,0,60.2,39.82,61.97,47.28,0,1,1,0,0,9,8,4,0,407,789978.38,271732.06,691471.5,119563.09,3031.9578 -12635,15572,28132,28131,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.4403353,8.4657335,0,20,-13,8.9821472,0,-9,-9,2019,9,0,10,40,1,0,0,33.104267,33.104267,0,0,0,0,0,1,1,0,0,0,61.97,47.28,60.2,39.82,8.333333333333334,1,1,0,0,10,8,4,0,407,789978.38,271732.06,691471.5,119563.09,3031.9578 -12636,15573,28133,28134,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.3860674,6.1188231,7,6,-66.230186,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.3099508,6.1519442,56.5,51,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,1168.5,286161.5,364488.5,85452.789,0,2108.7207 -12636,15573,28134,28133,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.4986544,7.6508708,7,-6,7.9052811,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0151901,57.06,57.76,56.5,51,10,1,1,0,0,0,11,3,1,1168.5,286161.5,364488.5,85452.789,0,2108.7207 -12637,15574,28135,-9,28136,28137,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.39136,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,1794.6666,98163.57,0,162515.2,119837.11,2641.6062 -12637,15574,28136,28137,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.4522934,7.4625392,0,5,2,-54.847363,0,3,2,2019,10,0,25,30,1,0,0,5.8723292,5.8723292,0,0,0,0,0,1,1,0,0,0,54.44,41.09,62.11,45.63,6.666666666666667,1,1,0,0,6,9,4,0,1794.6666,98163.57,0,162515.2,119837.11,2641.6062 -12637,15574,28137,28136,-9,-9,1,1,36,0,1,0,3,3,-9,0,4,8.5822563,8.3211365,0,5,-2,-30.185163,0,-9,-9,2019,10,3,48,95,1,3,0,13.504302,13.504302,0,0,0,0,0,1,1,0,0,0,62.11,45.63,54.44,41.09,8.333333333333334,1,1,0,0,7,9,4,0,1794.6666,98163.57,0,162515.2,119837.11,2641.6062 -12638,15575,28138,28139,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.2482691,8.4620237,6.5511117,37,0,-19.661751,0,2,2,2019,7,0,37,40,1,0,0,17.444834,17.444834,0,0,0,0,0,0,0,0,4.236608,6.5461979,57.06,57.76,62.79,39.82,8.333333333333334,1,1,0,0,5,11,4,1,1449.5,932259.69,567062.75,175165.95,0,3378.6265 -12638,15575,28139,28138,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.3001413,7.3813729,37,9,-129.97668,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.6973853,7.5226207,62.79,39.82,57.06,57.76,0,1,1,0,0,7,11,4,1,1449.5,932259.69,567062.75,175165.95,0,3378.6265 -12639,15576,28140,28142,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.4746132,7.5542431,0,7,-3,73.173805,0,3,2,2019,16,5,19,19,1,5,0,11.407607,11.407607,0,0,0,0,0,1,1,0,.11470291,0,45.81,61.51,35.62,64.71000000000001,6.666666666666667,1,1,0,1,11,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 -12639,15576,28141,-9,28140,28142,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1050.6555,-9,1,3,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 -12639,15576,28142,28140,-9,-9,1,1,35,0,2,0,3,3,-9,0,5,8.2305059,8.3404818,0,7,3,22.628628,0,-9,-9,2019,15,4,77,80,1,4,0,7.4164305,7.4164305,0,0,0,0,0,1,1,0,0,0,35.62,64.71000000000001,45.81,61.51,3.333333333333333,1,1,0,0,9,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 -12639,15576,28143,-9,28140,28142,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.19934,-9,1,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,4,0,358.25,47055.445,70836.461,102542.83,37258.797,3094.5928 -12640,15577,28144,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3054228,6.1541672,0,0,-1011.3384,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.7613649,6.2561493,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,654,803187.38,90573.961,883692.19,0,395.98337 -12641,15578,28145,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,6.4629951,6.262074,0,0,-1039.803,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,4.2988882,0,0,1,1,0,2.9886758,6.4268737,42.9,17.56,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,638,959349.31,138803.67,102309.75,0,1466.217 -12642,15579,28146,-9,28147,28148,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1081.6029,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,3,0,828.66669,-143355.53,-586.09442,0,0,2775.5383 -12642,15579,28147,28148,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,10,0,.60709149,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,3.632417,0,44.39,39.12,38.54,54.12,5,1,1,1,0,0,1,3,0,828.66669,-143355.53,-586.09442,0,0,2775.5383 -12642,15579,28148,28147,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.3015823,8.2334471,0,10,0,84.543518,0,2,1,2019,12,1,40,45,1,1,0,9.6590052,9.6590052,0,0,0,0,0,1,1,0,0,0,38.54,54.12,44.39,39.12,5,1,1,0,0,11,1,3,0,828.66669,-143355.53,-586.09442,0,0,2775.5383 -12642,15580,28149,-9,28147,28148,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-887.36646,0,3,2,2019,8,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,590,-26662.979,0,0,0,-221.0833 -12643,15581,28150,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.6734953,8.4121599,0,0,0,-996.59216,0,-9,-9,2019,7,0,44,40,1,0,0,9.9746122,9.9746122,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,3,6,5,0,139,-217106.88,-65463.145,0,0,1971.6981 -12644,15582,28151,28153,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.97719,9.1424952,0,2,-2,-25.423031,0,1,1,2019,11,0,60,65,1,0,0,14.205908,14.205908,0,0,0,0,0,1,1,0,5.7222352,0,52,54.51,41.3,60.77,8.333333333333334,1,1,0,0,5,7,5,1,558,516216.09,234473.91,444946.66,215723.58,4753.6812 -12644,15582,28152,-9,28153,28151,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.7188,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,558,516216.09,234473.91,444946.66,215723.58,4753.6812 -12644,15582,28153,28151,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,8.3970747,8.5835009,0,2,2,-39.179699,-9,-9,-9,2019,11,0,24,0,1,0,0,19.275969,19.275969,0,0,0,0,0,1,1,0,3.4056344,0,41.3,60.77,52,54.51,6.666666666666667,1,1,0,0,8,7,5,1,558,516216.09,234473.91,444946.66,215723.58,4753.6812 -12645,15583,28154,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.3733983,7.3552241,0,0,-926.57996,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.6114097,40.87,44.58,-9,-9,5,1,1,0,0,4,13,3,1,924,454200.53,296512.06,149965.83,0,1429.105 -12646,15584,28155,28156,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,6.8357959,7.9013467,7.9305606,9,13,-119.27182,0,2,3,2019,7,0,20,20,1,0,0,4.9701757,4.9701757,1,0,0,0,0,1,1,0,6.737009,8.1805897,53.78,48.41,54.2,57.49,8.333333333333334,1,1,0,0,12,5,4,1,1074,1226554,1033761.3,223567.78,0,3013.6851 -12646,15584,28156,28155,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.2332258,7.3963323,0,9,-13,110.52659,0,-9,-9,2019,9,0,18,21,1,0,0,8.6116199,8.6116199,0,0,0,0,2,1,1,0,3.8494749,0,54.2,57.49,53.78,48.41,8.333333333333334,1,1,0,0,12,5,4,1,1074,1226554,1033761.3,223567.78,0,3013.6851 -12647,15585,28157,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.9777846,5.8924222,0,0,-842.08234,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2070203,5.7539024,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,1649,134312.33,105073.36,166472.16,0,619.44983 -12648,15586,28158,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.3999562,5.3368654,0,0,-1095.3203,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.439805,5.5042686,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,486,150092.08,-22655.209,288605.47,0,765.72174 -12649,15587,28159,28160,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,6,11,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0412517,0,55,45,47.46,52.7,8,1,1,0,0,0,12,1,1,449.5,441875.19,42835.277,289758.44,0,1567.1167 -12649,15587,28160,28159,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,-11,0,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.46,52.7,55,45,8.333333333333334,1,1,0,0,0,12,1,1,449.5,441875.19,42835.277,289758.44,0,1567.1167 -12650,15588,28161,28162,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.1176815,6.1730356,47,1,100.38605,0,3,3,2019,0,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9819469,5.7264452,60.12,54.8,54.1,59.11,10,1,1,0,0,9,7,2,1,1311.5,147207.5,82094.313,0,0,1063.207 -12650,15588,28162,28161,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,3.6156175,4.082396,47,-1,-65.796234,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2240472,54.1,59.11,60.12,54.8,8.333333333333334,1,1,0,0,9,7,2,1,1311.5,147207.5,82094.313,0,0,1063.207 -12651,15589,28163,-9,28164,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2502,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,2,0,981.66669,-182499.84,67288.445,0,0,1254.6213 -12651,15589,28164,-9,-9,-9,1,0,21,1,2,0,2,2,-9,0,3,5.760148,5.8357968,0,0,0,-1030.6003,0,-9,-9,2019,14,3,8,0,1,3,0,4.6006098,4.6006098,0,0,0,0,0,1,1,0,0,0,37.92,53.03,-9,-9,6.666666666666667,1,1,0,0,3,13,2,0,981.66669,-182499.84,67288.445,0,0,1254.6213 -12651,15589,28165,-9,28164,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1108,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,2,0,981.66669,-182499.84,67288.445,0,0,1254.6213 -12652,15590,28166,28167,-9,-9,1,0,71,0,1,0,3,3,-9,0,3,0,0,0,28,14,-15.617154,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,33.35,56.52,41.94,16.49,0,1,1,0,0,0,11,3,1,1235.5,0,0,0,0,3185.8213 -12652,15590,28167,28166,-9,-9,1,1,57,0,1,0,2,2,-9,1,1,7.9306693,7.6664333,0,28,-14,60.626823,0,2,2,2019,19,7,30,19,1,7,0,7.7557888,7.7557888,0,0,0,0,0,1,1,0,0,0,41.94,16.49,33.35,56.52,3.333333333333333,1,1,0,0,11,11,3,1,1235.5,0,0,0,0,3185.8213 -12653,15591,28168,28171,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,6.9435883,7.2455549,0,14,-7,32.201756,0,2,2,2019,12,1,18,30,1,1,0,8.0264187,8.0264187,0,0,0,0,0,1,1,0,0,0,47.67,58.09,46.06,60.24,8.333333333333334,1,1,0,1,9,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 -12653,15591,28169,-9,28168,28171,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.24414,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 -12653,15591,28170,-9,28168,28171,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.18011,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 -12653,15591,28171,28168,-9,-9,1,1,38,1,2,0,2,2,-9,0,5,8.0238152,8.1778688,0,14,7,134.78572,0,3,2,2019,11,0,35,38,1,0,0,10.123055,10.123055,0,0,0,0,0,1,1,0,0,0,46.06,60.24,47.67,58.09,6.666666666666667,1,1,0,0,7,13,3,1,196.25,-121599.39,42285.316,117380.88,105563.2,2523.5115 -12654,15592,28172,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.0842671,6.7248054,0,0,-979.75879,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8576145,57.16,56.15,-9,-9,10,1,1,0,0,9,4,2,0,416,499804.56,346963.78,93946.758,0,434.14307 -12655,15593,28173,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,5.4710989,8.2439651,8.4425488,0,0,-1050.2501,-9,2,2,2019,14,4,20,0,1,4,0,1.0015137,1.0015137,0,0,0,0,2,0,0,0,8.1512451,7.9441304,47,38,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,1194,26339.35,-28975.793,162426.17,6602.2969,4751.9858 -12656,15594,28174,-9,28175,28176,1,1,38,0,0,0,1,1,-9,0,5,8.2819614,9.1592941,8.7023697,0,0,-932.96674,0,1,1,2019,2,0,40,40,1,0,0,11.128628,11.128628,0,0,0,0,0,1,1,0,5.6689525,8.6974897,56.47,59.4,-9,-9,10,4,2,0,0,8,9,5,1,230,111275.49,-156556.31,198738.05,164241.77,4115.9746 -12656,15595,28175,28176,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,6,3,75.018532,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.1022749,0,59.97,30.23,54,46,0,1,1,0,0,0,9,2,1,1220,442446.5,86823.602,495565.06,0,1138.2439 -12656,15595,28176,28175,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,3.8941805,4.3035221,0,6,-3,-49.887886,-9,-9,-9,2019,9,0,10,0,1,1,0,.58364356,.58364356,0,0,0,0,0,1,1,0,0,0,54,46,59.97,30.23,7,4,5,0,0,1,9,2,1,1220,442446.5,86823.602,495565.06,0,1138.2439 -12657,15596,28177,28178,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,0,0,0,28,2,-27.139091,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.6214178,0,54.96,53.17,60.12,54.8,8.333333333333334,1,1,0,0,6,2,5,1,655,933586.63,6826.002,626987.56,0,3556.1355 -12657,15596,28178,28177,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.0375395,9.0717478,0,28,-2,69.209122,0,-9,-9,2019,7,0,38,38,1,0,0,36.480225,36.480225,0,0,0,0,0,0,0,0,5.6066613,0,60.12,54.8,54.96,53.17,8.333333333333334,1,1,0,0,8,2,5,1,655,933586.63,6826.002,626987.56,0,3556.1355 -12658,15597,28179,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.3979359,6.9190307,0,0,0,-967.49359,0,3,3,2019,11,0,16,0,1,0,0,8.2322702,8.2322702,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,2,2,0,295,-318396.44,83086.047,0,0,995.91296 -12659,15598,28180,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.08246,0,3,3,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,32.95,33.94,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,2233,-103656.71,0,0,0,1297.6309 -12660,15599,28181,-9,28184,28183,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.74219,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 -12660,15599,28182,-9,28184,28183,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.7531,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 -12660,15599,28183,28184,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.7003717,9.0132236,0,23,-1,-137.51097,0,2,2,2019,12,0,46,47,1,0,0,10.151943,10.151943,0,0,0,0,0,1,1,0,0,0,49.93,51.72,54.79,55.86,8.333333333333334,1,1,0,0,10,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 -12660,15599,28184,28183,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.4838009,8.6374788,0,23,1,-86.543938,0,2,2,2019,4,0,34,36,1,0,0,20.416542,20.416542,0,0,0,0,0,1,1,0,2.9369948,0,54.79,55.86,49.93,51.72,8.333333333333334,1,1,0,0,8,10,5,1,627,-64006.063,32493.063,184812.75,127602.01,4783.5493 -12661,15600,28185,28186,-9,-9,1,1,75,0,1,0,2,2,-9,0,4,0,7.7299457,7.7122717,24,8,-5.5725894,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.7628603,7.8226819,40.55,52.81,52.04,10.6,8.333333333333334,1,1,0,0,0,9,3,1,523,156732.47,0,0,0,3855.0454 -12661,15600,28186,28185,-9,-9,1,0,67,0,1,0,3,3,-9,0,1,0,6.8009067,7.0914731,24,-8,-33.022045,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,254.34595,0,0,1,1,0,0,6.9366517,52.04,10.6,40.55,52.81,6.666666666666667,1,1,0,0,6,9,3,1,523,156732.47,0,0,0,3855.0454 -12662,15601,28187,28189,-9,-9,1,0,52,0,2,0,1,1,-9,0,4,8.0786037,8.2823248,0,10,-2,112.10816,0,2,3,2019,12,0,29,16,1,0,0,12.612847,12.612847,0,0,0,0,0,1,1,0,0,0,49.44,56.93,38.59,60.85,8.333333333333334,1,1,0,0,11,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 -12662,15601,28188,-9,28187,28189,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1019.9003,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 -12662,15601,28189,28187,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.8593493,8.6504431,0,10,2,-43.161541,0,3,3,2019,15,5,45,45,1,5,0,14.522075,14.522075,0,0,0,0,0,1,1,0,0,0,38.59,60.85,49.44,56.93,8.333333333333334,1,1,0,0,11,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 -12662,15601,28190,-9,28187,28189,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1164.0365,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 -12662,15601,28191,-9,28187,28189,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1119.4569,-9,1,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,629.40002,292874.5,96731.594,322617.03,237126.16,3281.3157 -12663,15602,28192,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,4.4351554,4.2261009,0,0,-1070.5385,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,2.4207072,2.6079154,26.401863,0,1,1,0,0,4.4791021,57.73,30.59,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,958,-196797.06,-534.67242,0,0,927.64899 -12664,15603,28193,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.3310113,4.6062355,0,0,-1057.4883,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,2.196306,8.5484819,22.860447,0,1,1,0,5.4352169,5.0558391,35.02,22.13,-9,-9,5,2,3,0,0,0,7,2,1,332,264407.5,0,217003.89,0,1738.9843 -12665,15604,28194,28195,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.3892984,8.4954386,0,5,-1,87.72422,0,2,2,2019,17,5,52,44,1,5,0,8.8131065,8.8131065,0,0,0,0,0,1,1,0,0,0,38.03,55.84,12.29,51.23,3.333333333333333,1,1,0,0,7,7,4,0,630.5,-42770.742,1946.1602,0,0,1947.0217 -12665,15604,28195,28194,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.8940744,6.9695244,0,5,1,-38.2281,0,-9,-9,2019,26,9,13,25,1,9,0,6.8238015,6.8238015,0,0,0,0,0,1,1,0,0,0,12.29,51.23,38.03,55.84,1.666666666666667,1,1,0,0,3,7,4,0,630.5,-42770.742,1946.1602,0,0,1947.0217 -12666,15605,28196,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,3.7413044,3.520041,0,0,-989.51263,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7797863,3.0932131,60.48,43.73,-9,-9,10,1,1,0,0,0,2,2,0,1028,-159012.89,0,0,0,1103.589 -12667,15606,28197,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,7.2869301,7.0815263,0,0,-980.53522,0,3,-9,2019,10,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.7211385,6.7817764,47.18,23.22,-9,-9,10,1,1,0,0,0,5,2,1,1040,-207551.47,138263.56,0,0,1306.9633 -12668,15607,28198,28199,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,7.0662923,8.2055569,7.5743756,38,0,3.6903651,0,-9,2,2019,21,9,10,10,1,9,0,18.299587,18.299587,0,0,0,0,0,0,0,0,2.6874456,7.6597743,40.65,57.36,51.84,51.67,6.666666666666667,1,1,0,0,9,10,5,1,1307.5,337156.88,493016.75,0,0,3788.0435 -12668,15607,28199,28198,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.3915491,8.1873293,7.0296254,38,0,-67.552711,0,2,-9,2019,12,1,31,30,1,1,0,17.754938,17.754938,0,0,0,0,2,0,0,0,.58016211,7.1466632,51.84,51.67,40.65,57.36,8.333333333333334,1,1,0,0,9,10,5,1,1307.5,337156.88,493016.75,0,0,3788.0435 -12668,15608,28200,-9,28199,28198,1,1,30,0,0,0,2,2,-9,0,1,0,0,0,0,0,-849.84155,0,2,1,2019,26,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,0,0,4.43,63.66,-9,-9,0,1,1,1,1,0,10,1,1,564,454170.69,0,0,0,0 -12669,15609,28201,28202,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.5375748,8.6898012,0,23,7,31.886791,-9,3,3,2019,13,3,35,0,1,3,0,16.274151,16.274151,1,0,0,0,71.5,1,1,0,0,0,44.24,35.51,21.97,21.3,5,1,1,0,1,13,7,4,0,467.5,3514511.5,1350068.5,710032.38,0,4083.0425 -12669,15609,28202,28201,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,23,-7,6.264976,-9,3,3,2019,34,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,44.24,35.51,1.666666666666667,1,1,0,1,0,7,4,0,467.5,3514511.5,1350068.5,710032.38,0,4083.0425 -12669,15610,28203,-9,28202,28201,1,1,29,0,0,0,1,1,-9,0,2,8.3251686,8.2925501,0,0,0,-975.22119,-9,2,2,2019,18,6,45,0,1,6,0,12.211763,12.211763,0,0,0,0,0,1,1,0,0,0,31.57,41.15,-9,-9,3.333333333333333,1,1,0,0,7,7,4,0,300,246986.23,-44154.742,0,0,1263.588 -12670,15611,28204,28205,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,0,0,0,3,-4,-43.877449,0,2,2,2019,19,7,0,40,3,7,0,0,0,0,0,0,0,0,0,0,0,.63893044,0,24.62,64.67,44.26,59.43,3.333333333333333,1,1,1,0,11,11,3,1,730.5,-217357.45,0,115212.5,80812.172,1358.225 -12670,15611,28205,28204,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.0281353,8.0538797,0,3,4,-68.605789,0,-9,-9,2019,13,1,39,40,1,1,0,8.9513502,8.9513502,0,0,0,0,0,0,0,0,0,0,44.26,59.43,24.62,64.67,6.666666666666667,1,1,0,0,6,11,3,1,730.5,-217357.45,0,115212.5,80812.172,1358.225 -12671,15612,28206,28207,-9,-9,1,1,52,0,0,0,2,2,-9,1,3,6.1996517,7.2152638,6.9067783,28,-3,-39.756489,0,2,2,2019,9,0,14,22,1,0,0,4.893496,4.893496,0,0,0,0,0,1,1,0,2.8702226,6.5144382,58.32,50.22,49.53,43.39,10,1,1,0,0,9,2,3,1,591,-78961.648,48311.086,0,0,1798.4625 -12671,15612,28207,28206,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.1742768,7.6769886,6.5473742,28,3,6.4763174,0,3,3,2019,18,6,20,20,1,6,0,8.3324041,8.3324041,0,0,0,0,0,1,1,0,2.2120466,6.8802848,49.53,43.39,58.32,50.22,10,1,1,0,0,6,2,3,1,591,-78961.648,48311.086,0,0,1798.4625 -12672,15613,28208,28209,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.037776,6.2335935,52,1,-107.15021,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4856839,6.3022718,62.49,55.09,57.24,46.7,10,1,1,0,0,10,9,2,1,561.5,329731.13,58386.059,131814.63,0,1144.4291 -12672,15613,28209,28208,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,3.7020147,3.7944679,52,-1,29.774191,0,-9,-9,2019,12,0,0,12,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4589686,4.0367818,57.24,46.7,62.49,55.09,10,1,1,0,0,11,9,2,1,561.5,329731.13,58386.059,131814.63,0,1144.4291 -12672,15614,28210,-9,28209,28208,1,1,45,0,0,0,3,3,-9,0,4,7.8157105,7.4210296,0,0,0,-1087.4749,-9,3,2,2019,9,0,40,0,1,1,0,7.1840568,7.1840568,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,9,4,1,724,-218574.14,147535.83,0,0,1045.0956 -12673,15615,28211,28212,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.6874847,6.9270115,40,6,-109.90015,0,2,3,2019,4,0,0,44,4,0,0,0,0,1,0,0,0,0,1,1,0,2.0108991,6.3472466,37.41,41.3,60.2,39.82,6.666666666666667,1,1,0,0,10,7,3,1,507.5,283922.47,124043.97,287350,0,1992.5841 -12673,15615,28212,28211,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.0110669,7.0259423,0,42,-6,133.55904,0,3,3,2019,6,0,17,28,1,0,0,8.8114281,8.8114281,0,0,0,0,2,1,1,0,0,0,60.2,39.82,37.41,41.3,10,1,1,0,0,8,7,3,1,507.5,283922.47,124043.97,287350,0,1992.5841 -12674,15616,28213,-9,28216,28214,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.03448,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 -12674,15616,28214,28216,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,7.5252199,7.4776382,0,16,2,-65.118973,0,2,-9,2019,15,3,60,37,1,3,0,4.9551787,4.9551787,0,0,0,0,0,1,1,0,0,0,33.24,59.12,56.47,59.4,5,1,1,0,0,9,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 -12674,15616,28215,-9,28216,28214,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1030.4351,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.4276975,0,63.38,50.77,-9,-9,10,1,1,0,0,0,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 -12674,15616,28216,28214,-9,-9,1,0,38,0,3,0,2,2,-9,0,5,7.6897078,7.6538911,0,16,-2,62.30006,0,2,2,2019,9,0,35,25,1,0,0,7.8074136,7.8074136,0,0,0,0,7,1,1,0,0,0,56.47,59.4,33.24,59.12,10,1,1,0,0,3,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 -12674,15616,28217,-9,28216,28214,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.88818,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,674.79999,215100.8,126764.63,235487.42,73698.406,2187.8423 -12675,15617,28218,28219,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,59,-3,77.698372,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.29,52.11,49,36,0,1,1,0,0,0,10,2,1,916,211340.67,28795.637,0,0,1057.3888 -12675,15617,28219,28218,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,5.5086408,5.5500498,59,3,-4.2617908,0,-9,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1698661,5.96175,49,36,60.29,52.11,8.333333333333334,1,1,0,0,0,10,2,1,916,211340.67,28795.637,0,0,1057.3888 -12675,15618,28220,-9,28218,28219,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1032.1107,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.21641451,0,54.63,21.21,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,292,169952.08,25399.814,0,0,724.63922 -12676,15619,28221,28222,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.7186852,5.778923,50,3,42.213547,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.7605371,53,47,42.51,38.48,8,1,1,0,0,0,10,2,0,510.5,190073.48,133017.45,0,0,1687.1038 -12676,15619,28222,28221,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,2.0919323,2.4606826,50,-3,-13.020256,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,2.8621922,2.4969087,42.51,38.48,53,47,8.333333333333334,1,1,0,0,8,10,2,0,510.5,190073.48,133017.45,0,0,1687.1038 -12677,15620,28223,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.5777054,8.3667202,0,0,0,-1025.9644,0,-9,-9,2019,10,0,36,42,1,0,0,16.645267,16.645267,0,0,0,0,0,1,1,0,0,0,57.09,46.7,-9,-9,5,3,4,0,0,13,6,4,1,606,-10219.025,84641.25,0,0,1732.9779 -12678,15621,28224,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1093.501,0,3,2,2019,4,0,0,0,4,0,0,0,0,1,0,2.8561807,0,0,1,1,0,0,0,61.28,35.65,-9,-9,10,1,1,0,0,0,5,1,1,645,-206653.45,0,0,0,538.31177 -12679,15622,28225,28227,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.1811619,8.4229298,0,4,4,-19.149433,0,-9,-9,2019,13,1,39,39,1,1,0,14.327177,14.327177,0,0,0,0,0,1,1,0,0,0,52.82,53.97,48.87,58.55,5,1,1,0,0,2,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 -12679,15622,28226,-9,28227,28225,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.1863,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 -12679,15622,28227,28225,-9,-9,1,0,49,0,3,0,2,2,-9,0,4,0,0,0,4,-4,141.32758,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52.82,53.97,8.333333333333334,1,1,0,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 -12679,15622,28228,-9,28227,28225,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.3465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 -12679,15622,28229,-9,28227,28225,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.0183,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,699,215417.2,62187.902,93995.57,44158.496,2097.9241 -12679,15623,28230,-9,28227,28225,1,1,22,0,3,0,2,2,-9,0,4,7.6912365,7.523241,0,0,0,-1107.6178,0,2,2,2019,9,1,40,38,1,1,1,6.7264643,6.7264643,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,1,11,3,0,1018,108962.3,0,0,0,598.26202 -12680,15624,28231,28232,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,6.4290452,6.4086285,39,-7,-11.271892,0,2,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,3.6592531,6.6709175,36.35,53.49,47.31,50.2,6.666666666666667,1,1,0,0,8,2,4,1,468.5,1464615.3,990886.06,234836.78,0,2114.1975 -12680,15624,28232,28231,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.945621,8.0770845,38,7,81.702011,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,4.6818299,7.8029532,47.31,50.2,36.35,53.49,8.333333333333334,1,1,0,0,5,2,4,1,468.5,1464615.3,990886.06,234836.78,0,2114.1975 -12681,15625,28233,28234,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8079162,7.7371554,0,5,16,24.209404,0,-9,-9,2019,5,0,40,47,1,0,0,8.6555462,8.6555462,0,0,0,0,14.5,1,1,0,3.1100628,0,62.49,55.09,54.5,46.43,8.333333333333334,1,1,0,0,10,11,3,1,940.5,339046.06,-2453.7825,0,0,1363.616 -12681,15625,28234,28233,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,5,-16,-235.89079,0,-9,-9,2019,9,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,54.5,46.43,62.49,55.09,10,1,1,1,0,4,11,3,1,940.5,339046.06,-2453.7825,0,0,1363.616 -12682,15626,28235,-9,28237,28238,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.4622,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 -12682,15626,28236,-9,28237,28238,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.2813,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 -12682,15626,28237,28238,-9,-9,1,0,40,1,2,0,1,1,-9,0,2,8.1780825,8.2802382,0,19,0,-28.127472,0,-9,2,2019,14,5,42,38,1,5,0,8.704277,8.704277,0,0,0,0,7,1,1,0,0,0,41.06,40.72,25.67,61.34,8.333333333333334,1,1,0,0,9,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 -12682,15626,28238,28237,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,19,0,52.996784,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,25.67,61.34,41.06,40.72,8.333333333333334,1,1,0,0,5,4,3,0,746.5,32176.195,31042.256,127166.34,37387.082,1905.7488 -12683,15627,28239,-9,28242,28240,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7987,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 -12683,15627,28240,28242,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.8834839,8.4975119,0,18,1,-12.925973,0,2,2,2019,6,0,36,36,1,0,0,23.802151,23.802151,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.77,55.87,8.333333333333334,1,1,0,0,9,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 -12683,15627,28241,-9,28242,28240,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.9142,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 -12683,15627,28242,28240,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.8658123,8.4674845,0,18,-1,97.36869,0,2,2,2019,10,0,44,0,1,0,0,13.337906,13.337906,0,0,0,0,0,1,1,0,0,0,54.77,55.87,57.06,57.76,6.666666666666667,1,1,0,0,4,12,5,1,728,720882.5,522050.81,338419.78,177659.69,4680.1641 -12684,15628,28243,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-929.74097,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,10.985847,0,0,1,1,0,0,0,26.57,25.95,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,919,0,0,0,0,1850.433 -12685,15629,28244,28245,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,7,-4,-140.60774,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,.34922656,0,1,1,0,0,0,51,46,54,46,8,2,3,0,0,0,8,2,1,414.5,376690.75,112783.17,283339.81,0,1033.9834 -12685,15629,28245,28244,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.0155253,5.9861722,56,4,91.32029,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,0,.79816252,0,0,1,1,0,0,6.3388748,54,46,51,46,8,2,3,0,0,3,8,2,1,414.5,376690.75,112783.17,283339.81,0,1033.9834 -12686,15630,28246,-9,28247,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.7606,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,463,-258386.25,-28808.523,0,0,2567.7207 -12686,15630,28247,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5199604,8.8517532,7.034936,0,0,-1019.1381,0,1,1,2019,11,0,48,45,1,0,0,13.736207,13.736207,0,0,0,0,0,1,1,0,6.8118787,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,5,8,5,1,463,-258386.25,-28808.523,0,0,2567.7207 -12687,15631,28248,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.8299947,6.7255712,0,0,0,-924.01404,0,-9,-9,2019,2,0,20,20,1,0,0,4.8256044,4.8256044,0,0,0,0,0,0,0,0,1.6732062,0,56.29,52.37,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,1653,-259424.28,0,0,0,37.445839 -12687,15632,28249,-9,28248,-9,1,0,27,0,0,0,2,2,-9,0,5,7.841855,7.7359581,0,0,0,-1051.504,0,2,-9,2019,4,1,38,38,1,1,1,8.4068785,8.4068785,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,10,4,1,76,65069.574,0,0,0,366.94241 -12688,15633,28250,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1101.0784,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,54.57,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,512,352010.66,0,0,0,1579.3679 -12689,15634,28251,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.1796169,8.4394503,0,0,0,-973.81201,0,1,1,2019,12,0,39,37,1,0,0,14.04035,14.04035,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,1040,260227.45,-10076.363,0,0,1299.989 -12690,15635,28252,28253,-9,-9,1,0,43,0,1,0,3,3,-9,0,2,0,0,0,9,0,-15.248392,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.96,38.73,46.02,58.57,0,1,1,1,0,0,1,3,0,335,277790.06,108640.2,204761.5,0,1266.1959 -12690,15635,28253,28252,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.8325462,8.1399584,0,9,0,-37.592415,0,2,1,2019,12,0,45,45,1,0,0,8.7465553,8.7465553,0,0,0,0,0,1,1,0,0,0,46.02,58.57,36.96,38.73,1.666666666666667,1,1,0,1,10,1,3,0,335,277790.06,108640.2,204761.5,0,1266.1959 -12690,15636,28254,-9,28252,28253,1,0,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-1083.6306,-9,3,2,2019,12,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,27.15,60.54,-9,-9,6.666666666666667,1,1,1,0,0,1,1,0,222,0,0,0,0,0 -12691,15637,28255,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,7.9325829,8.0293846,0,0,0,-1008.1268,0,2,-9,2019,9,0,54,36,1,0,0,5.6799717,5.6799717,0,0,0,0,0,0,0,0,0,0,54.97,39.4,-9,-9,5,1,1,0,1,4,11,3,0,154,195334.53,97817.047,0,0,1448.5846 -12691,15638,28256,-9,28255,-9,1,1,22,0,0,0,2,2,-9,0,3,7.9546833,7.8296247,0,0,0,-997.58209,0,2,-9,2019,4,0,40,0,1,0,1,7.6296487,7.6296487,0,0,0,1.4985809,0,0,0,0,0,0,46.08,57.2,-9,-9,10,1,1,0,0,0,11,3,0,669,212516.36,-87043.063,0,0,1085.9332 -12691,15639,28257,-9,28255,-9,1,0,21,0,0,0,2,2,-9,0,5,7.8561177,7.9372153,0,0,0,-972.94885,0,3,-9,2019,9,0,50,36,1,0,1,6.1766062,6.1766062,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,5,11,3,0,960,197012.41,0,0,0,470.3154 -12692,15640,28258,28259,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,8.0014954,8.2635031,7.824132,41,5,10.89986,0,3,2,2019,10,0,21,22,1,0,0,16.401058,16.401058,0,0,0,0,0,1,1,0,4.1392455,7.7560196,46.55,44.62,43.55,57.37,3.333333333333333,1,1,0,0,7,10,5,0,948,1290441.5,826173.5,345991.47,0,4287.2446 -12692,15640,28259,28258,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.8356042,8.0410147,4.8602042,41,-5,93.434174,0,3,2,2019,9,0,45,45,1,0,0,7.1176534,7.1176534,0,0,0,0,0,1,1,0,5.0340748,4.527895,43.55,57.37,46.55,44.62,1.666666666666667,1,1,0,0,9,10,5,0,948,1290441.5,826173.5,345991.47,0,4287.2446 -12693,15641,28260,28262,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1006842,8.3886099,0,14,3,64.028748,0,3,3,2019,10,0,39,40,1,1,0,12.460667,12.460667,0,0,0,0,0,1,1,0,0,0,51,56,41.17,59.31,7,1,1,0,0,1,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 -12693,15641,28261,-9,28262,28260,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.1891,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 -12693,15641,28262,28260,-9,-9,1,0,34,0,2,0,1,1,1,0,4,8.5576429,8.2822514,0,14,-3,43.341431,-9,2,2,2019,12,0,37,0,1,0,0,13.024356,13.024356,0,0,0,0,0,1,1,0,0,0,41.17,59.31,51,56,8.333333333333334,1,1,0,0,3,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 -12693,15641,28263,-9,28262,28260,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-975.06763,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,1,4,1,1085.75,31557.975,44693.766,179849.34,117667.87,3985.3447 -12694,15642,28264,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.3379393,8.0780563,0,0,0,-969.51691,0,3,3,2019,6,0,48,95,1,0,0,8.9362192,8.9362192,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,12,4,0,3957,185388.03,14472.972,0,0,2538.3357 -12695,15643,28265,28266,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3334732,7.3168697,0,20,-5,-93.225677,0,-9,3,2019,7,0,22,23,1,0,0,8.1361847,8.1361847,0,0,0,0,0,1,1,0,0,0,52.93,55.31,51,56,8.333333333333334,1,1,0,0,11,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 -12695,15643,28266,28265,-9,-9,1,1,45,0,2,0,3,3,-9,0,4,7.2108545,7.3822665,0,10,5,-69.103569,0,-9,-9,2019,9,0,40,48,1,1,0,4.5673161,4.5673161,0,0,0,0,0,1,1,0,0,0,51,56,52.93,55.31,7,1,1,0,0,1,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 -12695,15643,28267,-9,28265,28266,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-900.56415,-9,2,3,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,-9,-9,3.333333333333333,1,1,0,0,1,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 -12695,15643,28268,-9,28265,28266,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.0095,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,3,1,1315.5,346709.44,0,396167.25,100835.66,1494.9437 -12696,15644,28269,28270,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.8838177,8.71175,0,31,-2,242.06647,0,2,1,2019,13,1,49,50,1,1,0,14.607398,14.607398,0,0,0,0,0,0,0,0,0,0,46.38,59.89,55.19,54.26,8.333333333333334,1,1,0,0,10,1,5,1,1372.5,141887.86,18204.658,313167.88,122342.25,5288.8682 -12696,15644,28270,28269,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.704627,9.1386194,0,31,2,-44.873924,0,2,2,2019,8,0,45,42,1,0,0,20.1439,20.1439,0,0,0,0,0,0,0,0,4.5899177,0,55.19,54.26,46.38,59.89,8.333333333333334,1,1,0,0,10,1,5,1,1372.5,141887.86,18204.658,313167.88,122342.25,5288.8682 -12697,15645,28271,28272,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,4,-1,0,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,14.5,1,1,0,0,0,37.91,50.53,39.88,26.59,0,1,1,0,1,0,6,1,0,391,-50964.789,121841.27,0,0,1433.7551 -12697,15645,28272,28271,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,4,1,0,0,3,2,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,27,1,1,0,0,0,39.88,26.59,37.91,50.53,5,4,2,0,0,0,6,1,0,391,-50964.789,121841.27,0,0,1433.7551 -12698,15646,28273,-9,28275,28274,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.80066,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,761,-13687.083,31138.34,0,0,2138.345 -12698,15646,28274,28275,-9,-9,1,1,31,1,2,0,1,1,-9,0,5,7.8479686,7.9242043,0,5,-12,114.17068,0,1,1,2019,4,0,40,40,1,0,0,6.6126118,6.6126118,0,0,0,0,0,1,1,0,0,0,54.1,59.11,50,55,8.333333333333334,1,1,0,0,6,7,3,0,761,-13687.083,31138.34,0,0,2138.345 -12698,15646,28275,28274,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,6.8493581,6.5889187,0,5,12,10.641128,0,-9,-9,2019,10,0,4,0,1,1,0,23.019976,23.019976,0,0,0,0,0,1,1,0,3.549257,0,50,55,54.1,59.11,8,1,1,0,0,1,7,3,0,761,-13687.083,31138.34,0,0,2138.345 -12698,15646,28276,-9,28275,28274,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.14081,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,761,-13687.083,31138.34,0,0,2138.345 -12699,15647,28277,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-976.54144,0,3,3,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,28.71,18.35,-9,-9,0,1,1,0,1,0,9,1,0,283,-45324.148,0,0,0,1924.5441 -12700,15648,28278,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,8.1136608,8.0835266,0,0,0,-1108.4614,0,3,3,2019,15,3,28,34,1,3,0,11.679982,11.679982,0,0,0,0,0,1,1,0,0,0,40.13,35.69,-9,-9,6.666666666666667,1,1,0,0,7,2,3,1,857,105680.28,-26660.578,0,0,1492.9011 -12700,15648,28279,-9,28278,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.5692,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,857,105680.28,-26660.578,0,0,1492.9011 -12701,15649,28280,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.4273276,5.8147573,0,0,-957.39252,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7953086,5.6379843,50.99,36.04,-9,-9,6.666666666666667,1,1,0,0,8,6,2,1,476,-61405.473,62699.801,0,0,142.69609 -12702,15650,28281,28282,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.7241516,9.6776924,0,26,-3,68.461571,0,2,2,2019,9,0,60,60,1,0,0,27.519516,27.519516,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.82,37.73,8.333333333333334,3,4,0,0,8,8,5,1,1149,814569.19,570487.75,402258.97,73685.875,8476.3145 -12702,15650,28282,28281,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,8.9422512,8.5203466,0,26,3,-95.781158,0,-9,-9,2019,10,2,24,15,1,2,0,36.965748,36.965748,0,0,0,0,27,0,0,0,0,0,36.82,37.73,57.16,56.15,10,1,1,0,0,8,8,5,1,1149,814569.19,570487.75,402258.97,73685.875,8476.3145 -12703,15651,28283,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.7319603,8.7554207,0,0,0,-1098.0509,0,2,3,2019,12,1,30,30,1,1,0,19.85063,19.85063,0,0,0,0,0,0,0,0,.62921023,0,48.56,50.81,-9,-9,5,2,3,0,0,4,8,5,0,1216,-10484.804,96183.641,132105.28,23374.623,1627.6844 -12704,15652,28284,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.7325597,4.6085105,0,0,-1113.1536,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,41.724216,0,0,1,1,0,0,4.5004845,54,46,-9,-9,8,1,1,0,0,0,13,2,0,370,155215.02,-18175.66,136180.59,0,1696.9493 -12705,15653,28285,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9168205,8.8042746,0,0,0,-920.10541,0,2,2,2019,24,11,45,42,1,11,0,14.798537,14.798537,0,0,0,0,2,0,0,0,0,0,30.49,63.34,-9,-9,0,1,1,0,1,8,10,5,1,1644,414997.47,0,228923.72,111361.81,2180.5789 -12706,15654,28286,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.1937885,7.1803117,0,0,-955.87952,0,3,3,2019,6,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.861361,7.3071809,53.39,30.9,-9,-9,10,2,3,0,0,0,8,3,1,574,-205312.02,326723.06,34592.02,0,1621.226 -12707,15655,28287,28288,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.9935055,7.818068,51,2,-82.574844,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0102787,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,7,1,3,1,454.5,843524.75,506921.09,175267.03,0,2003.9114 -12707,15655,28288,28287,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,51,-2,-13.796092,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,11,1,3,1,454.5,843524.75,506921.09,175267.03,0,2003.9114 -12708,15656,28289,28290,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.9150829,8.7504225,0,24,-3,67.550812,0,2,2,2019,6,0,47,49,1,0,0,18.706787,18.706787,0,0,0,0,0,1,1,0,4.5758533,0,58.15,52.91,49,55,8.333333333333334,1,1,0,0,10,13,5,1,1659.6666,450648.88,259065.63,179619.53,0,3945.2974 -12708,15656,28290,28289,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.6862822,8.630249,0,24,3,51.176003,0,3,-9,2019,11,0,40,39,1,1,0,15.271464,15.271464,0,0,0,0,2,1,1,0,0,0,49,55,58.15,52.91,8.333333333333334,1,1,0,0,12,13,5,1,1659.6666,450648.88,259065.63,179619.53,0,3945.2974 -12708,15656,28291,-9,28290,28289,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-796.66669,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1659.6666,450648.88,259065.63,179619.53,0,3945.2974 -12709,15657,28292,28293,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.3567929,7.5169311,0,9,-6,24.427917,0,1,2,2019,9,0,25,24,1,0,0,7.8834939,7.8834939,0,0,0,0,0,0,0,0,0,0,42.3,57.54,49.46,56.91,6.666666666666667,1,1,0,0,8,2,4,0,598,132928.72,6188.0737,89780.938,101756.52,2409.9775 -12709,15657,28293,28292,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2539721,7.7994838,0,9,6,-28.663914,0,-9,-9,2019,9,1,52,42,1,1,0,9.3199921,9.3199921,0,0,0,0,0,0,0,0,0,0,49.46,56.91,42.3,57.54,10,1,1,0,0,5,2,4,0,598,132928.72,6188.0737,89780.938,101756.52,2409.9775 -12710,15658,28294,28295,-9,-9,1,1,39,1,2,0,2,2,-9,0,2,8.4828901,8.5515757,0,7,9,-110.91039,0,-9,-9,2019,12,1,50,65,1,1,0,13.315232,13.315232,0,0,0,0,0,1,1,0,0,0,55.33,43.89,54.1,59.11,5,3,4,0,0,4,8,3,0,547.33331,152765.02,-21906.355,120612.79,37631.082,3114.623 -12710,15658,28295,28294,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,3.3464944,3.3491211,0,7,0,21.607664,0,2,-9,2019,5,0,40,0,1,0,0,.074259862,.074259862,0,0,0,0,0,1,1,0,0,0,54.1,59.11,55.33,43.89,5,3,4,0,1,8,8,3,0,547.33331,152765.02,-21906.355,120612.79,37631.082,3114.623 -12710,15658,28296,-9,28295,28294,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.74652,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,8,3,0,547.33331,152765.02,-21906.355,120612.79,37631.082,3114.623 -12711,15659,28297,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.3162827,6.5822611,0,0,-913.96521,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.9373384,6.9188566,64.78,28.5,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1715,194588.75,0,149965.83,0,2933.9941 -12712,15660,28298,28299,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,6.2467823,5.8902731,6,7,12.087127,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1213093,56,44,30.28,40.45,8,1,1,0,0,0,4,2,0,1200.5,474986.72,57279.336,117807.73,0,1250.1055 -12712,15660,28299,28298,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,6,-7,-25.550367,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,0,0,30.28,40.45,56,44,5,1,1,0,0,0,4,2,0,1200.5,474986.72,57279.336,117807.73,0,1250.1055 -12713,15661,28300,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.557045,8.774538,0,0,0,-979.41418,0,2,-9,2019,23,11,45,45,1,11,0,12.844924,12.844924,0,0,0,0,0,1,1,0,7.2725239,0,31.67,54.34,-9,-9,5,1,1,0,0,10,10,5,1,440,191880.3,109006.27,196270.22,174410.84,3346.853 -12713,15662,28301,-9,28300,-9,1,0,21,0,0,0,2,2,0,0,5,0,6.5010791,6.4038053,0,0,-1016.3224,-9,1,-9,2019,24,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,6.464231,0,25.59,65.73999999999999,-9,-9,3.333333333333333,1,1,0,0,4,10,2,1,270,46488.828,0,0,0,637.70575 -12714,15663,28302,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,6.4785223,6.4363704,0,0,-1068.2577,0,2,2,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.7905688,4.6636157,50.84,47.24,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,624,-103585.4,0,183561.67,0,1198.049 -12715,15664,28303,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.5936852,8.6069813,0,0,0,-988.88831,0,2,2,2019,10,0,35,37,1,0,0,15.849846,15.849846,0,0,0,0,2,1,1,0,1.3353611,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,316,-364302.09,109198.09,124367.18,51620.547,1942.1233 -12716,15665,28304,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,2.3677318,2.3598232,0,0,0,-1058.8124,-9,2,2,2019,25,11,40,0,1,11,0,.034491073,.034491073,1,0,0,0,7,0,0,0,8.1173239,0,33.81,63.92,-9,-9,5,1,1,0,0,11,6,2,1,315,134366.97,55656.324,0,0,1153.8804 -12717,15666,28305,-9,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,7.53897,7.4200191,0,0,0,-1052.8438,0,-9,-9,2019,29,11,16,16,1,11,0,11.088971,11.088971,0,0,0,0,0,1,1,0,0,0,19.1,61.68,-9,-9,5,1,1,0,1,11,5,2,1,1304.75,0,0,0,0,1674.3237 -12717,15666,28306,-9,28305,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-943.80762,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,1,1304.75,0,0,0,0,1674.3237 -12717,15666,28307,-9,28305,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.3693,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,2,1,1304.75,0,0,0,0,1674.3237 -12717,15666,28308,-9,28305,-9,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-875.33093,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,1304.75,0,0,0,0,1674.3237 -12718,15667,28309,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,9.4856644,9.4030285,0,8,0,-.44964755,0,1,1,2019,10,0,63,47,1,0,0,22.62042,22.62042,0,0,0,0,0,0,0,0,0,0,48.77,60.16,33.49,64.26000000000001,8.333333333333334,1,1,0,0,9,7,5,1,693,378956.25,39442.98,350075.31,140868.03,3504.7224 -12718,15668,28310,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.2289362,8.2130871,0,8,0,-11.291313,0,2,1,2019,19,8,36,36,1,8,0,13.893285,13.893285,0,0,0,0,0,0,0,0,5.9770865,0,33.49,64.26000000000001,48.77,60.16,3.333333333333333,1,1,0,0,8,7,5,1,359,14333.19,-10551.585,217058.17,0,1963.13 -12719,15669,28311,28312,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.3265572,7.4499621,0,43,-2,17.599207,0,3,2,2019,7,0,20,32,1,0,0,9.5774879,9.5774879,0,0,0,0,0,0,0,0,0,0,58.34,36.97,55,53,10,1,1,0,1,9,10,3,0,513.5,708914.38,204999.52,262007.91,0,1187.4004 -12719,15669,28312,28311,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,7.090137,6.7557468,0,43,2,-140.6884,0,3,3,2019,6,0,37,35,1,0,0,2.7928815,2.7928815,0,0,0,0,0,0,0,0,0,0,55,53,58.34,36.97,8.333333333333334,1,1,0,0,9,10,3,0,513.5,708914.38,204999.52,262007.91,0,1187.4004 -12720,15670,28313,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.8628502,8.0440302,0,0,0,-922.43555,0,1,-9,2019,4,1,35,59,1,1,1,10.265339,10.265339,0,0,0,0,0,0,0,0,0,0,56.88,50.89,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,745,-82026.391,0,0,0,1350.7194 -12721,15671,28314,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7744946,7.523839,0,0,0,-1023.7332,0,-9,-9,2019,12,0,30,25,1,0,0,7.5735435,7.5735435,0,0,0,0,0,0,0,0,0,0,36.27,60.6,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,572,323019.59,91939.383,0,0,932.62286 -12722,15672,28315,28316,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.7947264,8.7944794,0,3,2,-41.400249,0,2,2,2019,5,0,39,38,1,0,0,21.879364,21.879364,0,0,0,0,0,0,0,0,1.5130662,0,54.79,55.86,60.29,52.11,8.333333333333334,1,1,0,0,10,9,5,1,344.5,155124.53,228393.91,0,0,3668.3538 -12722,15672,28316,28315,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.4083967,8.3904438,0,3,-2,97.157951,0,-9,-9,2019,5,0,55,45,1,0,0,7.5154514,7.5154514,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.79,55.86,10,1,1,0,0,10,9,5,1,344.5,155124.53,228393.91,0,0,3668.3538 -12723,15673,28317,28318,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6642113,8.5268974,0,29,0,-7.3715711,0,2,2,2019,9,0,40,40,1,1,0,14.995045,14.995045,0,0,0,0,0,0,0,0,0,0,53,55,45.14,52.5,8,1,1,0,0,1,11,5,1,485.5,645801.69,435213.78,69427.563,35704.422,4169.4272 -12723,15673,28318,28317,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.2042561,8.2580938,0,29,0,166.99039,0,2,2,2019,11,1,37,37,1,1,0,13.145439,13.145439,0,0,0,0,2,0,0,0,7.2739587,0,45.14,52.5,53,55,5,1,1,0,0,10,11,5,1,485.5,645801.69,435213.78,69427.563,35704.422,4169.4272 -12724,15674,28319,28320,-9,-9,1,0,54,0,1,0,2,2,-9,0,1,0,6.0727677,5.7752142,19,-8,-15.747233,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,1.08591,5.9402218,23.69,24.46,39.25,53.85,3.333333333333333,1,1,0,0,0,4,2,0,106,573343.25,-78303.602,202220.19,31718.172,1964.1144 -12724,15674,28320,28319,-9,-9,1,1,62,0,1,0,3,3,-9,0,3,0,7.038909,6.7858028,19,8,-45.244057,0,2,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,5.1887279,7.4120278,39.25,53.85,23.69,24.46,3.333333333333333,1,1,0,0,5,4,2,0,106,573343.25,-78303.602,202220.19,31718.172,1964.1144 -12725,15675,28321,28322,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.4908075,8.6445322,43,-1,3.0797718,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8165555,8.4712162,58.15,52.91,39.33,58.88,8.333333333333334,1,1,0,0,8,2,5,1,252.5,4239678,1489417.3,1017842.5,0,10131.403 -12725,15675,28322,28321,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.3689938,9.3020716,43,1,157.31102,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,9.1026888,9.2898331,39.33,58.88,58.15,52.91,8.333333333333334,1,1,0,0,3,2,5,1,252.5,4239678,1489417.3,1017842.5,0,10131.403 -12726,15676,28323,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.7961226,6.928925,0,0,-898.83002,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4989688,6.8127694,63.17,32.94,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1118,545630.38,-31216.504,182735.31,0,1054.7496 -12727,15677,28324,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,5.3177509,5.6407299,0,0,-980.25696,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2243466,5.2711329,58.89,24.67,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,468,-535636.94,0,0,0,947.39685 -12728,15678,28325,-9,28326,28327,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.5476,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1174,1956794.9,1338192.3,446894.38,113019.23,3542.2134 -12728,15678,28326,28327,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.7647877,7.7614942,0,21,-2,-47.378319,0,2,2,2019,6,0,25,29,1,0,0,12.522841,12.522841,0,0,0,0,0,1,1,0,1.6416709,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1174,1956794.9,1338192.3,446894.38,113019.23,3542.2134 -12728,15678,28327,28326,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.8215818,8.8943634,0,21,2,11.597849,0,2,2,2019,11,1,26,36,1,1,0,29.77314,29.77314,0,0,0,0,0,1,1,0,.66098183,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1174,1956794.9,1338192.3,446894.38,113019.23,3542.2134 -12729,15679,28328,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,5.6429901,5.8132305,0,0,0,-1071.8307,0,3,2,2019,7,0,10,16,1,0,0,3.2921524,3.2921524,0,0,0,0,7,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,1,9,2,0,237,-56894.391,92782.32,0,0,-28.114069 -12730,15680,28329,28330,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.4399152,7.8309627,0,10,3,88.363319,0,3,3,2019,6,0,29,29,1,0,0,8.0311441,8.0311441,0,0,0,0,0,0,0,0,.52458125,0,41.34,56.62,56.2,35.43,10,1,1,0,0,11,5,4,1,517,146342.23,54805,204211.33,0,2168.6804 -12730,15680,28330,28329,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7415729,7.7686405,0,10,-3,33.470818,0,2,3,2019,6,0,35,36,1,0,0,6.730226,6.730226,0,0,0,0,0,0,0,0,0,0,56.2,35.43,41.34,56.62,8.333333333333334,1,1,0,0,10,5,4,1,517,146342.23,54805,204211.33,0,2168.6804 -12731,15681,28331,-9,28332,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.0455,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1092.5,-18101.441,-33713.289,88652.789,75708.461,1661.506 -12731,15681,28332,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,7.7123971,7.9879465,0,0,0,-912.32739,0,3,3,2019,11,0,40,38,1,0,0,7.8477111,7.8477111,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,8,13,3,0,1092.5,-18101.441,-33713.289,88652.789,75708.461,1661.506 -12732,15682,28333,28334,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.4830942,7.4979882,7,1,1.3264503,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.84457642,7.3323979,55,45,45.32,61.53,8,1,1,0,0,0,5,3,1,198.5,1059919.8,476903,203229.11,0,2548.4199 -12732,15682,28334,28333,-9,-9,1,0,84,0,0,0,1,1,-9,0,4,0,7.4555101,7.2095561,38,-1,-51.150482,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.875433,7.2289414,45.32,61.53,55,45,6.666666666666667,1,1,0,0,0,5,3,1,198.5,1059919.8,476903,203229.11,0,2548.4199 -12733,15683,28335,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,0,0,-971.93036,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2788529,0,60.02,56.42,-9,-9,0,1,1,0,0,0,10,1,1,772,108664.19,0,0,0,1404.8771 -12734,15684,28336,28337,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.250957,5.1649494,41,1,68.854279,-9,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5327039,5.1959352,58.15,52.91,57.16,56.15,10,1,1,0,0,0,6,3,1,854.5,1677607.1,364061.81,301801.84,0,3047.8643 -12734,15684,28337,28336,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.6136489,7.685216,10,-1,95.950569,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7994518,8.0116892,57.16,56.15,58.15,52.91,10,1,1,0,0,0,6,3,1,854.5,1677607.1,364061.81,301801.84,0,3047.8643 -12735,15685,28338,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.8671398,5.6008196,0,0,-870.19263,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.3454742,62.27,42.94,-9,-9,8.333333333333334,1,1,0,1,6,9,2,1,332,57038.078,152184.98,210596.27,104680.7,885.10608 -12736,15686,28339,28340,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.7372308,7.407548,19,0,-65.738708,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,7.0340571,7.5535421,34.2,49.24,43.24,44.87,6.666666666666667,1,1,0,0,6,5,4,1,1170.5,686652.94,391298.69,190780.13,0,5209.6729 -12736,15686,28340,28339,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.8882785,8.0128059,7.1369486,17,0,-23.782404,0,-9,-9,2019,19,7,30,30,1,7,0,10.480758,10.480758,0,0,0,0,0,1,1,0,6.5628786,6.920836,43.24,44.87,34.2,49.24,8.333333333333334,1,1,0,0,11,5,4,1,1170.5,686652.94,391298.69,190780.13,0,5209.6729 -12737,15687,28341,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6674843,8.8069601,4.6917033,0,0,-889.0119,0,3,3,2019,10,2,60,70,1,2,0,9.8844633,9.8844633,0,0,0,0,0,0,0,0,0,5.2934523,52.75,25.75,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,1658,280363.28,110519.88,66763.516,33026.055,1657.4059 -12738,15688,28342,28344,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.1449318,7.9159012,0,5,-10,72.721565,0,2,-9,2019,21,9,45,43,1,9,0,7.8619552,7.8619552,0,0,0,0,2,1,1,0,0,0,33.18,60.48,48.28,60.18,3.333333333333333,1,1,0,0,8,2,4,1,698.66669,84763.195,126352.34,204734.59,108961.36,2826.4915 -12738,15688,28343,-9,28344,28342,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.45935,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,698.66669,84763.195,126352.34,204734.59,108961.36,2826.4915 -12738,15688,28344,28342,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9894176,7.8043265,0,5,10,61.862366,0,-9,-9,2019,13,1,22,25,1,1,0,13.122652,13.122652,0,0,0,0,0,1,1,0,0,0,48.28,60.18,33.18,60.48,8.333333333333334,1,1,0,0,10,2,4,1,698.66669,84763.195,126352.34,204734.59,108961.36,2826.4915 -12739,15689,28345,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.7043791,8.4115658,0,0,0,-989.37714,0,2,2,2019,10,0,43,43,1,0,0,16.818268,16.818268,0,0,0,0,0,1,1,0,.26942328,0,52,54.51,-9,-9,5,1,1,0,0,12,4,5,0,587,-214280.17,23665.043,0,0,2554.2793 -12740,15690,28346,28347,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7574949,8.8101778,0,10,2,86.607742,0,2,2,2019,4,0,52,45,1,0,0,13.15593,13.15593,0,0,0,0,0,0,0,0,2.3717053,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,7,1,5,0,494,539946.75,591115.88,401732.19,275126.66,4237.2744 -12740,15690,28347,28346,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.5764465,8.948452,0,10,-2,148.2077,0,2,2,2019,13,1,38,39,1,1,0,18.377583,18.377583,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,9,1,5,0,494,539946.75,591115.88,401732.19,275126.66,4237.2744 -12741,15691,28348,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.0628777,8.2867489,0,0,0,-1198.8774,0,-9,-9,2019,21,8,45,0,1,8,0,8.4600735,8.4600735,0,0,0,0,0,0,0,0,0,0,34.65,47.81,-9,-9,3.333333333333333,3,4,0,0,5,8,4,0,800,310353.84,0,0,0,1432.4075 -12742,15692,28349,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6780577,8.7660303,4.3687873,0,0,-937.91174,-9,1,1,2019,11,0,37,0,1,0,0,22.815437,22.815437,0,0,0,0,2,0,0,0,4.5729895,0,32.34,56.69,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,168,789801.5,885997.31,175721.02,29370.615,2106.3159 -12743,15693,28350,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.4785175,8.500206,0,0,0,-968.26959,0,1,2,2019,11,0,48,52,1,0,0,10.852618,10.852618,0,0,0,0,0,0,0,0,2.6723776,0,43.04,62.95,-9,-9,6.666666666666667,1,1,0,0,2,8,4,0,1776,302698.47,2066.0259,246976.14,172616.86,2299.9736 -12744,15694,28351,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.5742254,8.5699415,0,0,0,-1042.7344,0,3,3,2019,16,4,37,40,1,4,0,12.514221,12.514221,0,0,0,0,0,0,0,0,0,0,23.88,51.85,-9,-9,3.333333333333333,1,1,0,0,9,2,4,0,376,-124424.95,275347.78,122893.63,0,1507.0227 -12745,15695,28352,-9,28353,-9,1,1,28,0,2,0,2,2,-9,0,3,7.3675923,7.185564,0,0,0,-945.48016,-9,3,3,2019,14,2,40,0,1,2,0,5.8411112,5.8411112,0,0,0,0,0,1,1,0,0,0,35.19,51.54,-9,-9,5,2,3,0,0,9,6,2,1,305,-87699.086,-2074.8909,0,0,438.26996 -12745,15696,28353,-9,-9,-9,1,0,58,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1069.0988,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,2,3,0,0,0,6,1,1,1526,-16171.308,112715.08,0,0,0 -12745,15697,28354,28357,28353,-9,1,1,33,0,2,0,2,2,-9,0,4,7.9768057,8.0052414,0,9,-5,92.408501,0,3,-9,2019,15,5,35,42,1,5,0,8.787549,8.787549,0,0,0,0,0,1,1,0,0,0,37.46,58.23,62.49,55.09,5,2,3,0,0,11,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 -12745,15697,28355,-9,28357,28354,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.7649,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 -12745,15697,28356,-9,28357,28354,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1001.4467,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 -12745,15697,28357,28354,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,0,0,0,9,5,38.072704,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,37.46,58.23,10,2,3,0,0,0,6,3,1,292.5,-13748.851,-26093.262,0,0,1792.7795 -12746,15698,28358,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3551435,8.3260155,0,0,0,-1097.6443,0,2,2,2019,4,0,47,49,1,0,0,10.083346,10.083346,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,10,3,4,0,0,10,8,4,0,1155,-144008.28,-32479.006,0,0,1771.7764 -12747,15699,28359,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,6.9626102,7.2458892,0,0,0,-937.76178,0,3,3,2019,5,0,16,20,1,0,0,7.5267339,7.5267339,0,0,0,0,0,1,1,0,0,0,41.86,58.04,-9,-9,8.333333333333334,1,1,0,0,8,8,2,0,1802,721640.63,150971.25,182566.52,0,559.43213 -12747,15700,28360,-9,28359,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6427031,8.4944696,0,0,0,-1059.9801,0,3,3,2019,7,0,42,50,1,0,0,16.867716,16.867716,0,0,0,0,0,1,1,0,.42041573,0,54.75,56.24,-9,-9,8.333333333333334,4,2,0,0,4,8,5,0,835,99330.648,189300.34,0,0,2554.1399 -12748,15701,28361,28362,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.6151333,6.7210307,8,-1,68.722755,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.7403479,7.1968279,54.78,23.91,55.73,53.98,8.333333333333334,1,1,0,0,4,13,2,1,826,703422.88,452617.81,64947.727,0,2228.8208 -12748,15701,28362,28361,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.1445847,6.0052552,8,1,3.2183888,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,9.9429398,0,0,1,1,0,2.6790485,6.0200038,55.73,53.98,54.78,23.91,8.333333333333334,1,1,0,0,5,13,2,1,826,703422.88,452617.81,64947.727,0,2228.8208 -12749,15702,28363,28364,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,5.8596349,6.3458276,0,1,-10,42.595627,-9,2,1,2019,8,0,2,0,1,0,0,33.217167,33.217167,0,0,0,0,71.5,1,1,0,0,0,46.56,57.02,46.96,37.93,8.333333333333334,4,2,0,1,9,8,2,1,2358.3333,-62694.012,0,0,0,1158.1755 -12749,15702,28364,28363,-9,28366,1,1,46,0,2,0,1,1,-9,0,3,6.7357478,6.6517525,0,8,10,-55.875919,-9,2,1,2019,12,1,45,0,1,1,0,2.2679613,2.2679613,0,0,0,0,14.5,1,1,0,2.2476151,0,46.96,37.93,46.56,57.02,5,2,3,0,0,9,8,2,1,2358.3333,-62694.012,0,0,0,1158.1755 -12749,15702,28365,-9,28363,28364,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.40295,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,1,2358.3333,-62694.012,0,0,0,1158.1755 -12749,15703,28366,-9,-9,-9,1,1,86,0,2,0,1,1,-9,0,2,0,0,0,0,0,-1060.9912,-9,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,6.3997674,0,0,1,1,0,0,0,48.33,32.26,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,2140,161958.2,0,0,0,-356.69052 -12750,15704,28367,28368,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.1651621,8.2468643,0,3,5,15.896588,0,-9,-9,2019,10,0,46,40,1,0,0,6.7396998,6.7396998,0,0,0,0,0,1,1,0,0,0,38.51,59.43,53.59,49.64,6.666666666666667,1,1,0,0,3,10,4,0,363.66666,137011.16,0,172178.06,89378.266,2369.7756 -12750,15704,28368,28367,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.4259205,7.4715567,0,3,-5,43.64109,0,2,-9,2019,4,0,24,24,1,0,0,7.6775575,7.6775575,0,0,0,0,0,1,1,0,0,0,53.59,49.64,38.51,59.43,10,1,1,0,0,6,10,4,0,363.66666,137011.16,0,172178.06,89378.266,2369.7756 -12750,15704,28369,-9,28368,28367,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.20367,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,363.66666,137011.16,0,172178.06,89378.266,2369.7756 -12751,15705,28370,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.1680155,8.9976101,0,0,0,-986.03223,0,1,1,2019,11,3,40,41,1,3,0,27.188833,27.188833,0,0,0,0,0,0,0,0,4.306035,0,51.39,59.18,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,283,1319940.3,654345.13,598882.31,0,3266.5352 -12752,15706,28371,28372,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,61,1,56.782738,0,2,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,57.09,24.97,49.97,43.12,10,1,1,0,0,0,6,2,1,284.5,92625.813,15639.824,129319.8,0,595.08093 -12752,15706,28372,28371,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,6.1872578,6.1179595,61,-1,62.810135,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,39.735497,0,0,1,1,0,3.9867733,6.2454171,49.97,43.12,57.09,24.97,10,1,1,0,0,0,6,2,1,284.5,92625.813,15639.824,129319.8,0,595.08093 -12753,15707,28373,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.7105861,6.8133903,0,0,-912.73126,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.8542447,6.5414262,56.35,51,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1984,333351.34,112218.92,0,0,1977.7743 -12754,15708,28374,28375,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.6464882,4.6030612,47,0,-86.667068,0,-9,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6354012,61.19,39.41,60.29,52.11,1.666666666666667,1,1,0,0,0,4,2,1,1146,448927.97,167450.25,323406,0,1386.8627 -12754,15708,28375,28374,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.1197858,6.5661659,47,0,82.461685,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0906382,6.4256058,60.29,52.11,61.19,39.41,6.666666666666667,1,1,0,0,7,4,2,1,1146,448927.97,167450.25,323406,0,1386.8627 -12755,15709,28376,-9,28379,28377,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7657,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 -12755,15709,28377,28379,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.3305416,8.388916,0,12,-1,2.8825154,0,1,2,2019,6,1,38,37,1,1,0,12.23359,12.23359,0,0,0,0,0,1,1,0,0,0,55.34,54.26,22.94,65.05,8.333333333333334,1,1,0,0,11,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 -12755,15709,28378,-9,28379,28377,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.9431,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 -12755,15709,28379,28377,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.0705671,7.1671553,0,12,1,-127.0744,0,2,2,2019,21,9,18,18,1,9,0,7.3673024,7.3673024,0,0,0,0,0,1,1,0,0,0,22.94,65.05,55.34,54.26,6.666666666666667,1,1,0,0,11,9,3,1,448.25,53816.395,94882.648,0,0,2770.5701 -12756,15710,28380,28381,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.7308273,7.7777419,5.937448,5,1,-42.63747,0,1,1,2019,9,0,20,20,1,0,0,14.253014,14.253014,0,0,0,0,0,0,0,0,6.6538353,5.9547005,53.73,36.41,55.96,49.93,8.333333333333334,1,1,0,0,12,11,4,1,668.5,76995.641,303769.41,216501.69,121123.28,2589.8054 -12756,15710,28381,28380,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.8363047,7.8209438,0,5,-1,107.60821,0,-9,-9,2019,6,0,35,35,1,0,0,9.4098063,9.4098063,0,0,0,0,0,0,0,0,1.5464689,0,55.96,49.93,53.73,36.41,6.666666666666667,1,1,0,0,12,11,4,1,668.5,76995.641,303769.41,216501.69,121123.28,2589.8054 -12757,15711,28382,28384,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,7.9146633,7.4774237,0,28,0,-22.490978,0,3,3,2019,9,0,24,35,1,1,0,10.99179,10.99179,0,0,0,0,0,1,1,0,0,0,51,56,50,55,7,2,3,0,1,11,8,2,0,1400.3334,42714.504,43106.898,173932.48,68643.867,2208.6101 -12757,15711,28383,-9,28384,28382,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-901.87579,-9,2,3,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,2,0,1400.3334,42714.504,43106.898,173932.48,68643.867,2208.6101 -12757,15711,28384,28382,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,28,0,33.619724,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,55,51,56,8,2,3,0,0,0,8,2,0,1400.3334,42714.504,43106.898,173932.48,68643.867,2208.6101 -12757,15712,28385,-9,28384,28382,1,0,23,0,1,0,2,2,-9,0,3,8.3256044,8.2556763,0,0,0,-1116.4512,0,2,3,2019,21,7,42,0,1,7,1,8.5813007,8.5813007,0,0,0,0,0,1,1,0,1.5101515,0,26.8,45.8,-9,-9,6.666666666666667,2,3,0,0,2,8,4,0,423,317996.09,-32673.893,0,0,887.14917 -12757,15713,28386,-9,28384,28382,1,0,18,0,1,0,2,2,1,0,4,6.7683887,7.0589352,0,0,0,-1080.2335,-9,2,3,2019,12,0,24,0,1,2,1,5.8341379,5.8341379,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,1,8,3,0,498,-215873.5,60966.16,0,0,1177.1807 -12758,15714,28387,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,9.0616865,8.6604643,0,0,0,-1028.9348,0,3,3,2019,6,0,50,37,1,0,1,16.851257,16.851257,0,0,0,0,0,1,1,0,.47129425,0,57.06,57.76,-9,-9,10,2,3,0,0,8,8,5,1,981,379863.25,25423.408,355288.19,229460.33,3062.1863 -12759,15715,28388,28389,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,7.9907579,7.7821994,0,7,-4,23.417677,0,3,3,2019,10,0,45,45,1,1,0,6.3791757,6.3791757,0,0,0,0,0,0,0,0,0,0,50,55,62.39,56.71,8,2,3,0,0,8,9,4,0,549,628383.75,176619.95,196512.47,0,2445.1479 -12759,15715,28389,28388,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.0628996,8.2255163,0,28,4,63.655392,0,-9,-9,2019,7,0,48,48,1,0,0,8.8162394,8.8162394,0,0,0,0,0,0,0,0,0,0,62.39,56.71,50,55,10,2,3,0,0,8,9,4,0,549,628383.75,176619.95,196512.47,0,2445.1479 -12759,15716,28390,-9,28388,28389,1,1,21,0,0,0,1,1,-9,0,4,0,0,0,0,0,-917.2226,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,1,0,0,9,1,0,707,7120.2393,0,0,0,0 -12759,15717,28391,-9,28388,28389,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1014.06,-9,3,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,68.03,40.23,-9,-9,8.333333333333334,2,3,0,0,1,9,1,0,1568,98421.32,0,0,0,0 -12760,15718,28392,-9,28394,28395,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.0165,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 -12760,15718,28393,-9,28394,28395,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.9493,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 -12760,15718,28394,28395,-9,-9,1,0,35,1,3,0,1,1,-9,0,4,8.1891069,8.6591034,6.585269,2,-14,13.550563,0,-9,-9,2019,17,5,37,45,1,5,0,11.093186,11.093186,0,0,0,0,0,1,1,0,6.884418,0,38.56,60.86,47.25,48.73,8.333333333333334,1,1,0,0,1,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 -12760,15718,28395,28394,-9,-9,1,1,49,1,3,0,2,2,-9,0,5,8.9392281,8.9551973,0,2,14,108.76288,0,2,3,2019,12,1,50,39,1,1,0,17.917006,17.917006,0,0,0,0,0,1,1,0,0,0,47.25,48.73,38.56,60.86,8.333333333333334,1,1,0,0,6,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 -12760,15718,28396,-9,28394,28395,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.7815,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,706,419719.13,70507.336,139775.91,0,5442.8447 -12761,15719,28397,28398,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.4157925,8.3795652,0,1,1,108.15169,-9,-9,-9,2019,10,0,41,0,1,0,0,13.684938,13.684938,0,0,0,0,0,0,0,0,0,0,54.38,46.77,49.63,54.22,8.333333333333334,1,1,0,0,1,9,5,0,980.5,142046.84,-24102.086,0,0,3768.9341 -12761,15719,28398,28397,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.7855997,8.4935389,0,1,-1,50.719112,-9,-9,1,2019,11,1,40,0,1,1,0,18.422787,18.422787,0,0,0,0,0,0,0,0,0,0,49.63,54.22,54.38,46.77,8.333333333333334,1,1,0,0,7,9,5,0,980.5,142046.84,-24102.086,0,0,3768.9341 -12762,15720,28399,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.6422925,6.8037038,0,0,-939.27075,0,3,3,2019,16,6,0,45,4,6,0,0,0,0,0,0,0,14.5,1,1,0,4.7776475,6.7002678,39.5,56.19,-9,-9,5,1,1,0,0,8,2,2,1,208,288968.13,30609.031,167494.66,0,1374.2169 -12762,15721,28400,-9,28399,-9,1,1,32,0,0,0,1,1,-9,0,3,7.4912434,7.617044,0,0,0,-917.91827,0,2,2,2019,10,1,22,22,1,1,0,10.217064,10.217064,0,0,0,0,0,1,1,0,0,0,41.47,58.08,-9,-9,3.333333333333333,1,1,0,0,7,2,3,1,1218,-242832.83,-369.16208,0,0,603.91119 -12763,15722,28401,28402,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.1870723,7.2484493,9,9,109.93596,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8546319,7.6095214,53,46,50,46,8,1,1,0,0,0,13,2,1,1057.5,64491.105,147998.02,114923.08,0,2354.5298 -12763,15722,28402,28401,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,9,0,24.814339,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,50,46,53,46,7,1,1,0,0,0,13,2,1,1057.5,64491.105,147998.02,114923.08,0,2354.5298 -12764,15723,28403,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,6.3930984,6.0318542,0,0,-1023.4401,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2840171,50.54,62.09,-9,-9,8.333333333333334,1,1,0,1,6,8,2,1,244,298764.75,150024.69,117672.76,0,813.35205 -12765,15724,28404,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.6069336,8.2104216,0,0,0,-999.52789,0,2,3,2019,24,12,43,38,1,12,0,14.923856,14.923856,0,0,0,0,0,0,0,0,0,0,38.16,49.27,-9,-9,3.333333333333333,1,1,0,1,8,10,5,0,948,183537.63,358278.31,155165.09,108270.62,2144.5564 -12765,15725,28405,-9,28404,-9,1,1,20,0,0,0,2,2,1,0,4,6.3184929,6.5782576,0,0,0,-990.13531,-9,2,-9,2019,10,0,12,0,1,2,1,4.3445988,4.3445988,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,2,0,981,56279.027,0,0,0,306.0943 -12766,15726,28406,28407,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,9.6927357,9.7750874,0,31,1,-144.54195,0,2,2,2019,12,0,52,45,1,0,0,36.634941,36.634941,0,0,0,0,0,0,0,0,4.1614442,0,51.2,41.78,51.83,57.2,6.666666666666667,1,1,0,0,10,9,5,1,850,2848347.5,1405657.4,1067853.8,0,16223.258 -12766,15726,28407,28406,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.8286705,9.6241903,0,31,-1,-7.9391603,0,2,2,2019,10,3,36,30,1,3,0,51.75864,51.75864,0,0,0,0,2,0,0,0,6.7052832,0,51.83,57.2,51.2,41.78,8.333333333333334,1,1,0,0,11,9,5,1,850,2848347.5,1405657.4,1067853.8,0,16223.258 -12766,15727,28408,-9,28407,28406,1,1,18,0,0,1,2,0,0,0,2,0,6.6475868,6.843668,0,0,-839.5105,-9,1,1,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,6.3035836,0,36.81,48.47,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,847,35425.676,72204.023,0,0,699.43976 -12767,15728,28409,-9,28411,28410,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.41058,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 -12767,15728,28410,28411,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.7780857,8.8545151,0,22,-1,-121.86491,0,1,1,2019,9,0,40,40,1,0,0,20.575411,20.575411,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 -12767,15728,28411,28410,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.9952488,8.475482,0,10,1,-30.925983,0,-9,-9,2019,6,0,50,52,1,0,0,12.123825,12.123825,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.06,57.76,10,1,1,0,0,12,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 -12767,15728,28412,-9,28411,28410,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1074.264,-9,1,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,754.5,714774.38,461915,350956.44,236885.78,4423.2505 -12768,15729,28413,28414,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,2,-3,7.4492912,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,43.77,34.42,34.82,22.17,5,1,1,0,0,4,6,3,1,415,1338908.8,562515.75,248905.5,0,1967.4509 -12768,15729,28414,28413,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,7.7845855,7.5707426,2,3,-77.240883,0,-9,-9,2019,10,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,7.6733971,34.82,22.17,43.77,34.42,0,1,1,0,0,0,6,3,1,415,1338908.8,562515.75,248905.5,0,1967.4509 -12769,15730,28415,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,6.9312048,6.8845735,0,0,-1090.0991,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,250.27014,0,2305.032,0,1,1,0,0,6.9855585,54.99,17.61,-9,-9,5,1,1,0,0,0,10,2,0,183,271060.84,197167,165734.42,0,335.04611 -12770,15731,28416,28417,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.9753838,8.9065962,0,11,-13,5.9340906,-9,2,2,2019,8,1,40,0,1,1,0,20.74139,20.74139,0,0,0,0,0,0,0,0,0,0,38.99,60.52,54.96,53.17,8.333333333333334,1,1,0,0,11,5,5,1,578.5,1148256.6,945829.06,101090.63,79364.375,3366.3032 -12770,15731,28417,28416,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1526566,7.8237371,0,11,13,-135.97568,-9,2,2,2019,7,0,38,0,1,0,0,8.1637745,8.1637745,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.99,60.52,8.333333333333334,1,1,0,0,9,5,5,1,578.5,1148256.6,945829.06,101090.63,79364.375,3366.3032 -12771,15732,28418,28419,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,8.766983,8.5356989,7.8804421,24,-6,-19.528566,0,3,2,2019,10,1,24,32,1,1,0,28.189228,28.189228,0,0,0,0,0,1,1,0,1.7925262,7.528152,52.35,14.25,64.55,36.47,8.333333333333334,1,1,0,1,12,2,4,1,489,117645.34,147356.98,0,0,2798.4124 -12771,15732,28419,28418,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,0,0,0,24,6,-29.966337,0,2,2,2019,5,0,0,42,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0653267,0,64.55,36.47,52.35,14.25,8.333333333333334,1,1,0,0,11,2,4,1,489,117645.34,147356.98,0,0,2798.4124 -12771,15732,28420,-9,28418,28419,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1012.4421,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,489,117645.34,147356.98,0,0,2798.4124 -12771,15733,28421,-9,28418,28419,1,1,19,0,1,0,2,2,1,0,5,0,0,0,0,0,-965.87262,-9,2,2,2019,10,3,0,0,3,3,1,0,0,0,0,0,0,2,1,1,0,0,0,49.36,58.53,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,425,0,0,0,0,0 -12772,15734,28422,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.9519,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3564177,0,48.45,57.49,-9,-9,10,1,1,0,0,0,12,1,1,3960,-324215.03,0,0,0,345.32208 -12773,15735,28423,28424,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,31,7,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,27.89,18.61,5,1,1,0,0,0,12,1,0,536.5,-158827.75,0,0,0,1195.988 -12773,15735,28424,28423,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,31,-7,0,0,3,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,27.89,18.61,33.32,18.46,1.666666666666667,1,1,0,0,0,12,1,0,536.5,-158827.75,0,0,0,1195.988 -12774,15736,28425,28426,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6393328,7.7264509,0,34,-3,-111.74442,0,2,2,2019,10,0,26,0,1,0,0,7.8438931,7.8438931,0,0,0,0,14.5,0,0,0,4.9829445,0,46.16,58.62,50.79,48.24,8.333333333333334,1,1,0,0,13,5,4,1,854,-122477.8,10139.823,38429.328,16436.795,1928.156 -12774,15736,28426,28425,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.7496219,7.9388547,0,34,3,-63.701824,0,3,3,2019,9,0,19,42,1,0,0,15.452062,15.452062,0,0,0,0,2,0,0,0,2.1026943,0,50.79,48.24,46.16,58.62,8.333333333333334,1,1,0,0,9,5,4,1,854,-122477.8,10139.823,38429.328,16436.795,1928.156 -12775,15737,28427,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.5307117,7.5577106,0,0,0,-929.02032,0,3,3,2019,25,12,31,25,1,12,0,7.9840684,7.9840684,0,0,0,0,0,1,1,0,0,0,37.52,61.39,-9,-9,5,1,1,0,1,6,13,3,0,1005,-78523.102,69311.219,0,0,1349.7625 -12775,15738,28428,-9,28427,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-910.49811,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.3054132,0,54.79,55.86,-9,-9,10,1,1,0,0,0,13,2,0,165,-98390.531,0,0,0,799.8396 -12776,15739,28429,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.9152431,9.2510471,0,0,0,-1019.2852,0,-9,-9,2019,12,1,40,42,1,1,0,19.820707,19.820707,0,0,0,0,0,0,0,0,0,0,36.08,60.5,-9,-9,5,1,1,0,0,9,7,5,1,888,52130.191,326623.69,0,0,2389.0413 -12776,15740,28430,-9,28429,-9,1,1,21,0,0,0,2,2,-9,0,4,8.5000076,8.6040163,0,0,0,-1076.5657,0,2,-9,2019,9,0,38,40,1,0,1,13.090619,13.090619,0,0,0,0,0,0,0,0,2.7091773,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,2,7,5,1,477,0,0,0,0,2190.6692 -12776,15741,28431,-9,28429,-9,1,0,20,0,0,0,2,2,-9,0,4,7.2854943,7.3382344,0,0,0,-1109.7386,0,2,-9,2019,11,0,40,40,1,0,1,3.6791468,3.6791468,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,4,7,3,1,459,76588.047,0,0,0,539.66058 -12776,15742,28432,-9,28429,-9,1,1,18,0,0,0,2,2,-9,0,5,7.1500406,7.2643805,0,0,0,-1007.6552,0,2,-9,2019,6,0,37,0,1,0,1,4.1891727,4.1891727,0,0,0,0,0,0,0,0,0,0,49.05,53.59,-9,-9,10,1,1,0,0,2,7,3,1,312,282582.47,70528.234,0,0,232.13113 -12777,15743,28433,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.6650066,6.5522418,0,0,-1063.8995,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5377958,6.8421483,51.83,57.2,-9,-9,10,1,1,0,0,0,1,2,1,144,1012560.4,64720.945,681038.75,0,869.96094 -12778,15744,28434,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1029.0881,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,14.338954,0,0,1,1,0,.21601371,0,64.59999999999999,14.84,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,197,-440822.25,0,0,0,774.91083 -12779,15745,28435,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,6.5878158,6.9231453,0,0,0,-1094.7024,-9,-9,-9,2019,19,8,10,0,1,8,0,9.8433924,9.8433924,0,0,0,0,0,0,0,0,2.0026889,0,45.8,54.59,-9,-9,5,1,1,0,0,3,4,2,0,830,130393.39,96942.375,0,0,647.0094 -12780,15746,28436,28437,-9,-9,1,1,69,1,1,0,2,2,-9,0,3,0,0,0,7,8,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,53.89,41.28,7,2,3,0,0,0,6,1,1,467,-292512.75,-8726.8184,0,0,675.37354 -12780,15746,28437,28436,-9,-9,1,0,61,1,1,0,2,2,-9,0,3,0,0,0,37,-8,0,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.2685488,0,53.89,41.28,53,47,6.666666666666667,2,3,0,1,0,6,1,1,467,-292512.75,-8726.8184,0,0,675.37354 -12780,15747,28438,-9,28437,28436,1,1,31,1,1,0,2,2,-9,0,3,7.9015603,8.0108824,0,0,0,-1174.0895,0,2,2,2019,26,9,45,35,1,9,1,7.6024261,7.6024261,0,0,0,0,0,1,1,0,0,0,37.7,45.14,-9,-9,0,2,3,0,1,9,6,4,1,134,-101679.15,0,131325.8,83847.664,505.0571 -12780,15748,28439,-9,28440,28441,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-839.49219,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,498,153877.84,62218.555,264768.5,220859.69,2256.3877 -12780,15748,28440,28441,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,0,0,0,4,1,37.696205,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,56.72,58.13,6.666666666666667,4,3,1,0,0,6,4,1,498,153877.84,62218.555,264768.5,220859.69,2256.3877 -12780,15748,28441,28440,28437,28436,1,1,34,1,1,0,1,1,-9,0,5,8.8578243,8.5095396,0,4,-1,-3.2168682,0,2,2,2019,20,8,48,41,1,8,0,17.961081,17.961081,0,0,0,0,0,1,1,0,5.2445736,0,56.72,58.13,47.32,52.7,3.333333333333333,2,3,0,0,3,6,4,1,498,153877.84,62218.555,264768.5,220859.69,2256.3877 -12781,15749,28442,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4280386,8.2590876,0,0,0,-1026.6727,-9,-9,-9,2019,14,4,52,0,1,4,0,9.1303596,9.1303596,0,0,0,0,0,0,0,0,0,0,44.04,57.07,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,1137,-3520.2356,0,0,0,1662.8894 -12782,15750,28443,28444,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.7666545,5.0204301,58,-2,-18.363802,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,4.7801557,52,46,53.16,21.45,8,1,1,0,0,0,9,4,1,805.5,1525697,812025.13,607318.25,0,4430.7759 -12782,15750,28444,28443,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.5368109,8.2676754,58,2,-24.502699,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.9334221,8.2976093,53.16,21.45,52,46,10,1,1,0,0,6,9,4,1,805.5,1525697,812025.13,607318.25,0,4430.7759 -12783,15751,28445,-9,28447,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.5903,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,1,0,597.66669,-170010.33,0,0,0,1098.0042 -12783,15751,28446,-9,28447,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.8158,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,1,0,597.66669,-170010.33,0,0,0,1098.0042 -12783,15751,28447,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1009.3057,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.6,46.82,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,597.66669,-170010.33,0,0,0,1098.0042 -12784,15752,28448,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0868301,8.1463079,0,0,0,-1052.1462,0,3,3,2019,7,0,37,37,1,0,0,12.401261,12.401261,0,0,0,0,2,0,0,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,11,7,4,1,125,-101601.54,-10169.457,0,0,1319.7186 -12785,15753,28449,28452,-9,-9,1,0,32,0,4,0,2,2,-9,0,4,8.128828,7.727694,0,14,-3,57.67041,0,2,2,2019,7,0,48,50,1,0,0,7.4950862,7.4950862,0,0,0,0,2,1,1,0,0,0,54.79,55.86,52.99,51.28,10,1,1,0,0,6,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 -12785,15753,28450,-9,28449,28452,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.8528,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 -12785,15753,28451,-9,28449,28452,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.0659,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 -12785,15753,28452,28449,-9,-9,1,1,35,0,4,0,2,2,-9,0,3,7.6469407,7.5572648,0,14,3,-24.867558,0,2,2,2019,9,0,33,0,1,0,0,7.632647,7.632647,0,0,0,0,0,1,1,0,0,0,52.99,51.28,54.79,55.86,8.333333333333334,1,1,0,0,5,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 -12785,15753,28453,-9,28449,28452,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-875.84924,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 -12785,15753,28454,-9,28449,28452,1,1,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1020.3912,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,-156139.88,30470.242,0,0,3175.2134 -12786,15754,28455,28456,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.2946596,8.223381,0,10,-7,-27.0522,0,2,2,2019,9,0,55,40,1,0,0,10.23181,10.23181,0,0,0,0,0,0,0,0,6.861989,0,58.3,52.91,47,49,8.333333333333334,1,1,0,0,11,7,4,1,819,210358,139956.53,368780.72,95439.641,2880.6563 -12786,15754,28456,28455,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.3432984,7.4006686,0,10,7,-11.438173,0,2,2,2019,12,0,10,10,1,2,0,14.568121,14.568121,0,0,0,0,0,0,0,0,1.6373527,0,47,49,58.3,52.91,7,1,1,0,0,1,7,4,1,819,210358,139956.53,368780.72,95439.641,2880.6563 -12786,15755,28457,-9,28456,28455,1,1,22,0,0,0,2,2,-9,0,4,7.7981119,7.8570223,0,0,0,-826.37079,0,2,2,2019,11,0,35,40,1,2,1,8.6794405,8.6794405,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,1,7,4,1,1975,279323.03,60328.586,0,0,687.80792 -12787,15756,28458,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.5359607,7.536984,0,0,-972.99194,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6397045,7.478766,52.19,54.61,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,276,-22572.936,308316.09,323878.03,0,850.95752 -12788,15757,28459,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.2755051,8.2162609,0,0,0,-991.80286,0,2,2,2019,11,0,40,40,1,0,0,10.939989,10.939989,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,482,696684.13,468703,-3823.572,10485.312,2531.1074 -12789,15758,28460,28461,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,6,2,-13.836775,0,2,3,2019,12,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,52.71,55.38,46.15,8.333333333333334,1,1,1,0,5,10,3,0,608,-38742.977,0,0,0,1154.4547 -12789,15758,28461,28460,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.6775541,7.7172351,0,6,-2,-94.410889,0,-9,-9,2019,8,0,21,51,1,0,0,18.532711,18.532711,0,0,0,0,0,0,0,0,0,0,55.38,46.15,51.81,52.71,5,1,1,0,0,4,10,3,0,608,-38742.977,0,0,0,1154.4547 -12790,15759,28462,28464,-9,-9,1,1,30,0,2,0,2,2,-9,0,5,7.8452477,8.1349249,0,7,2,-2.2253411,0,-9,-9,2019,9,0,60,56,1,0,0,6.3719163,6.3719163,0,0,0,0,0,1,1,0,0,0,59.43,58.05,43.58,50.04,10,1,1,0,0,8,11,3,1,671,343558.63,111532.27,0,0,2086.2734 -12790,15759,28463,-9,28464,28462,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0186,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,671,343558.63,111532.27,0,0,2086.2734 -12790,15759,28464,28462,-9,-9,1,0,28,0,2,0,3,3,-9,0,3,0,0,0,7,-2,77.108879,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.58,50.04,59.43,58.05,8.333333333333334,1,1,0,0,0,11,3,1,671,343558.63,111532.27,0,0,2086.2734 -12791,15760,28465,-9,28467,28466,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.614,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 -12791,15760,28466,28467,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.8607769,8.7057323,0,6,2,-97.564659,0,-9,-9,2019,9,0,37,40,1,1,0,25.087362,25.087362,0,0,0,0,0,0,0,0,6.5823441,0,51,56,54.2,57.49,8,1,1,0,0,1,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 -12791,15760,28467,28466,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,8.9112902,9.0287466,0,6,-2,45.954887,0,2,2,2019,6,0,41,40,1,0,0,22.80518,22.80518,0,0,0,0,0,0,0,0,2.7687109,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,5,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 -12791,15760,28468,-9,28467,28466,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.935,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 -12791,15760,28469,-9,28467,28466,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.73309,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,704.40002,223178.16,104513.53,254333.88,149340.73,5426.9819 -12792,15761,28470,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.4529638,8.1250038,0,0,0,-998.51624,0,2,2,2019,6,0,30,30,1,0,0,13.657291,13.657291,0,0,0,0,0,1,1,0,0,0,65.83,35.93,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,1014,1155748.3,116502.48,435981.53,0,1782.7957 -12793,15762,28471,28472,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.9186726,7.8521404,0,16,7,8.0534801,0,3,2,2019,11,0,40,40,1,0,0,7.2788391,7.2788391,0,0,0,0,0,0,0,0,0,0,51.25,46.55,53.23,42.9,8.333333333333334,1,1,0,0,12,4,4,0,267.5,164228.59,111049.41,55877.461,43268.195,2378.033 -12793,15762,28472,28471,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9718909,7.8783879,0,17,-7,74.822945,0,2,2,2019,9,0,42,40,1,0,0,6.6861711,6.6861711,0,0,0,0,7,0,0,0,0,0,53.23,42.9,51.25,46.55,3.333333333333333,1,1,0,0,10,4,4,0,267.5,164228.59,111049.41,55877.461,43268.195,2378.033 -12794,15763,28473,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7398949,8.9422092,0,0,0,-965.25977,0,2,2,2019,14,2,42,40,1,2,0,16.785139,16.785139,0,0,0,0,0,0,0,0,2.6903563,0,56.75,47.06,-9,-9,6.666666666666667,1,1,0,0,1,11,5,1,148,397184.38,118514.3,121209.32,45933.746,2823.2161 -12795,15764,28474,-9,28475,28476,1,1,34,0,0,0,2,2,-9,0,3,8.0377989,7.8759403,0,0,0,-1050.6622,0,2,2,2019,6,0,42,37,1,0,1,9.3579683,9.3579683,0,0,0,0,0,1,1,0,2.3810482,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,336,464210.53,0,0,0,1094.0585 -12795,15765,28475,28476,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9478836,7.4870234,0,5,-6,78.236153,0,-9,-9,2019,9,2,27,27,1,2,0,9.6646194,9.6646194,0,0,0,0,0,1,1,0,.64589614,0,44.11,47.15,56,52,10,1,1,0,0,8,12,3,1,1304.5,21002.914,82020.32,53140.484,0,1427.345 -12795,15765,28476,28475,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,5,6,130.52992,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,52,44.11,47.15,8,4,1,0,0,0,12,3,1,1304.5,21002.914,82020.32,53140.484,0,1427.345 -12796,15766,28477,28478,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.9312305,8.3410645,38,1,-2.7030814,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.1293476,8.3938255,57.16,56.15,57.07,49.39,8.333333333333334,3,4,0,0,10,8,4,1,542,2124986.8,1122171.3,627530.25,0,3723.7151 -12796,15766,28478,28477,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,38,-1,-70.44503,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.5809441,0,57.07,49.39,57.16,56.15,10,3,4,0,0,4,8,4,1,542,2124986.8,1122171.3,627530.25,0,3723.7151 -12797,15767,28479,28480,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.72295,7.7911253,5.9955721,9,3,40.857895,-9,-9,-9,2019,10,1,40,0,1,1,0,6.0646505,6.0646505,0,0,0,0,0,0,0,0,8.6833534,5.9333467,57.93,46.29,53.39,49.67,8.333333333333334,1,1,0,1,11,10,4,1,1081.5,508949,385414.69,194386.78,0,4907.52 -12797,15767,28480,28479,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.8381853,7.8004446,0,38,-3,-50.696136,0,3,3,2019,12,0,30,30,1,0,0,9.4335928,9.4335928,0,0,0,0,0,0,0,0,6.7816319,0,53.39,49.67,57.93,46.29,5,1,1,0,0,11,10,4,1,1081.5,508949,385414.69,194386.78,0,4907.52 -12798,15768,28481,28482,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.1915188,8.4341736,0,1,0,-114.50278,-9,-9,-9,2019,7,0,37,0,1,0,0,12.834369,12.834369,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,4,4,4,1,2060,-68820.164,100534.05,135719.14,55781,1165.3547 -12798,15768,28482,28481,-9,-9,1,1,31,0,0,0,2,2,0,0,5,0,0,0,1,0,-20.243649,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,4,4,4,1,2060,-68820.164,100534.05,135719.14,55781,1165.3547 -12799,15769,28483,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.9903579,7.5303283,0,0,-1022.8349,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3541946,55.02,50.34,-9,-9,6.666666666666667,1,1,0,0,8,7,3,1,303,729133.31,683251.56,0,0,697.04718 -12800,15770,28484,28485,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.6442528,8.6949091,0,12,-1,100.07348,-9,2,2,2019,19,6,38,0,1,6,0,19.110624,19.110624,0,0,0,0,0,1,1,0,0,0,28.08,62.63,63.59,31.32,3.333333333333333,1,1,0,1,8,2,4,0,384.66666,708470.5,386745.09,122313.35,61722.316,1832.0665 -12800,15770,28485,28484,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,0,0,0,12,1,100.60376,-9,2,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.59,31.32,28.08,62.63,8.333333333333334,1,1,0,1,0,2,4,0,384.66666,708470.5,386745.09,122313.35,61722.316,1832.0665 -12800,15770,28486,-9,28485,28484,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.45532,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,4,0,384.66666,708470.5,386745.09,122313.35,61722.316,1832.0665 -12801,15771,28487,28488,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.0436516,8.1529207,0,40,0,-71.505432,0,1,-9,2019,10,0,4,12,1,0,0,73.038765,73.038765,0,0,0,0,2,0,0,0,1.7368333,0,54.77,55.87,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,647,14892780,957566.94,697508.38,0,5077.1279 -12801,15771,28488,28487,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.4166269,9.4131298,7.3634543,42,0,-94.87957,0,2,1,2019,7,0,40,40,1,0,0,33.04332,33.04332,0,0,0,0,0,0,0,0,0,7.7697678,57.06,57.76,54.77,55.87,8.333333333333334,1,1,0,0,11,2,5,1,647,14892780,957566.94,697508.38,0,5077.1279 -12802,15772,28489,28490,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.1625776,8.2554417,54,1,86.207047,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7786767,8.2863808,59.71,50.89,58.05,54.52,8.333333333333334,1,1,0,0,0,10,3,1,330,1203052.8,675042.75,404585.41,0,2830.8999 -12802,15772,28490,28489,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,54,-1,11.691446,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2536087,0,58.05,54.52,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,330,1203052.8,675042.75,404585.41,0,2830.8999 -12803,15773,28491,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.4651594,7.7497773,5,11,163.52188,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4286366,48.83,51.82,47,49,8.333333333333334,1,1,0,0,7,6,5,1,934,1400588.9,115603.74,322293.78,0,932.62842 -12803,15774,28492,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.5104885,8.8893528,0,5,-11,40.184258,0,-9,-9,2019,11,1,37,43,1,1,0,18.53956,18.53956,0,0,0,0,0,0,0,0,3.8750873,0,47,49,48.83,51.82,6.666666666666667,1,1,0,0,11,6,5,1,310,619407.25,758356.56,0,0,2455.5217 -12804,15775,28493,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-947.33203,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,27.71,-9,-9,10,1,1,0,1,0,11,1,0,170,147060.95,0,0,0,900.21436 -12805,15776,28494,28495,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,38,4,122.61367,0,2,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4445074,0,41.19,40.68,55.53,51.55,6.666666666666667,1,1,0,0,11,10,2,1,319.5,128541.38,229711.44,139404.72,0,2533.0889 -12805,15776,28495,28494,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.1009769,6.2476435,38,-4,-62.086525,0,2,-9,2019,8,0,0,0,4,0,0,0,0,1,0,1.6858079,0,14.5,1,1,0,5.2016797,6.3685627,55.53,51.55,41.19,40.68,8.333333333333334,1,1,0,0,4,10,2,1,319.5,128541.38,229711.44,139404.72,0,2533.0889 -12806,15777,28496,-9,28497,28498,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.4688,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,920,-88918.914,58176.785,0,0,1700.6227 -12806,15777,28497,28498,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,6.5928774,6.3273778,0,4,-1,91.761299,0,-9,-9,2019,6,0,20,12,1,0,0,4.1144056,4.1144056,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.1,59.11,10,1,1,0,0,4,2,3,1,920,-88918.914,58176.785,0,0,1700.6227 -12806,15777,28498,28497,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,7.9871459,8.3918333,0,4,1,-71.375481,0,2,2,2019,8,0,53,50,1,0,0,6.2249932,6.2249932,0,0,0,0,2,1,1,0,0,0,54.1,59.11,54.2,57.49,10,1,1,0,0,7,2,3,1,920,-88918.914,58176.785,0,0,1700.6227 -12807,15778,28499,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6895409,7.5249033,0,0,0,-957.88275,0,2,2,2019,11,0,30,20,1,0,0,6.8537135,6.8537135,0,0,0,0,0,1,1,0,0,0,43.52,52.86,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,925,29314.758,-14153.701,155551.28,43688.895,1653.3992 -12807,15778,28500,-9,28499,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.57721,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,925,29314.758,-14153.701,155551.28,43688.895,1653.3992 -12808,15779,28501,-9,28502,28503,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-975.07452,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 -12808,15779,28502,28503,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,13,-4,-71.75309,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.18,44.59,51.73,58.82,5,2,3,0,1,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 -12808,15779,28503,28502,-9,-9,1,1,42,0,3,0,2,2,-9,0,5,8.0312538,7.5070405,0,9,4,13.382871,0,3,3,2019,8,0,40,48,1,0,0,8.0591812,8.0591812,0,0,0,0,0,1,1,0,0,0,51.73,58.82,50.18,44.59,5,2,3,0,0,11,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 -12808,15779,28504,-9,28502,28503,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.90692,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 -12808,15779,28505,-9,28502,28503,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.1229,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,0,415.60001,191284.89,14061.188,162113.17,33873.469,1402.9781 -12809,15780,28506,-9,-9,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-968.85291,0,2,2,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,7,1,1,0,0,0,19.72,49.57,-9,-9,5,3,4,1,0,3,8,1,0,787,66673.852,0,0,0,-113.60454 -12810,15781,28507,28508,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.8320398,6.4351153,7,-6,38.272697,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,3.6744633,6.6255579,52,45,52.27,58.55,8,1,1,0,0,0,2,2,0,663.5,561968.81,127594.8,253355.34,0,2591.3064 -12810,15781,28508,28507,-9,-9,1,1,87,0,0,0,3,3,-9,0,5,0,0,0,64,6,82.340034,0,3,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.7005785,0,52.27,58.55,52,45,10,1,1,0,0,6,2,2,0,663.5,561968.81,127594.8,253355.34,0,2591.3064 -12811,15782,28509,28510,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,8.0819988,8.2123566,0,3,-14,-45.1521,0,-9,-9,2019,9,0,40,50,1,0,0,12.896839,12.896839,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.49,57.57,8.333333333333334,2,3,0,0,4,9,5,1,514.33331,1004783.3,541038.31,360374.63,62998.758,8856.9492 -12811,15782,28510,28509,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.2267418,9.7449198,8.4901428,3,14,-60.66814,0,2,1,2019,6,0,51,52,1,0,0,22.962326,22.962326,0,0,0,0,0,0,0,0,9.17309,0,51.49,57.57,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,514.33331,1004783.3,541038.31,360374.63,62998.758,8856.9492 -12811,15782,28511,-9,28510,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.7102,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,514.33331,1004783.3,541038.31,360374.63,62998.758,8856.9492 -12812,15783,28512,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.8593206,5.7148848,0,0,-1045.4954,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,6.3471351,0,0,1,1,0,2.3788602,5.9364243,61.35,28.88,-9,-9,5,1,1,0,0,0,2,2,1,4304,152683.33,118556.01,303656.81,0,1015.4617 -12812,15784,28513,-9,28512,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1428928,7.9285479,0,0,0,-899.34277,0,3,-9,2019,11,0,40,39,1,0,0,8.3683853,8.3683853,0,0,0,0,2,1,1,0,2.9518368,0,53,54,-9,-9,5,1,1,0,0,4,2,4,1,470,75102.68,28760.957,0,0,1080.8975 -12813,15785,28514,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1807632,8.468442,0,0,0,-958.12537,0,3,3,2019,5,0,45,40,1,0,0,9.842906,9.842906,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,1,4,1,411,-103747.48,-67642.117,163419.69,6213.7769,2497.2888 -12813,15786,28515,-9,28514,-9,1,0,25,0,0,0,2,2,0,0,4,0,0,0,0,0,-1040.5497,-9,1,-9,2019,5,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,55.38,45.88,-9,-9,8.333333333333334,4,2,0,0,9,1,1,1,398,144138.67,0,0,0,0 -12814,15787,28516,28517,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8759079,7.8212323,38,-4,70.569328,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7147789,7.5815554,57.98,53.26,59.14,52.5,8.333333333333334,1,1,0,0,4,9,3,1,678,1071108.8,485869.38,368364.25,0,2613.7576 -12814,15787,28517,28516,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.5485268,5.376132,38,4,-49.694153,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5835695,5.6424346,59.14,52.5,57.98,53.26,8.333333333333334,1,1,0,0,3,9,3,1,678,1071108.8,485869.38,368364.25,0,2613.7576 -12815,15788,28518,28519,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.296052,7.8736238,0,10,-1,39.36171,0,1,1,2019,20,8,29,30,1,8,0,12.810749,12.810749,0,0,0,0,0,1,1,0,3.3024964,0,38.32,59.33,50.12,53.99,6.666666666666667,1,1,0,0,11,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 -12815,15788,28519,28518,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.5818858,7.7182503,0,10,1,38.272923,0,-9,-9,2019,13,1,36,30,1,1,0,5.9495001,5.9495001,0,0,0,0,0,1,1,0,3.1412754,0,50.12,53.99,38.32,59.33,6.666666666666667,1,1,0,0,11,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 -12815,15788,28520,-9,28518,28519,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.53833,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 -12815,15788,28521,-9,28518,28519,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.43921,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1120,-28965.193,53447.125,310838.47,75120.008,2760.5088 -12816,15789,28522,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.8147373,7.7737918,0,0,-996.94324,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.4366512,7.686748,53,45,-9,-9,8,1,1,0,0,0,12,3,1,2100,407507.31,243418.45,234514.81,0,2215.2231 -12817,15790,28523,28524,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,45,-2,-12.65346,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,3.8870935,0,0,1,1,0,2.1949522,0,50.45,23.08,55.37,40.83,8.333333333333334,1,1,0,0,0,13,3,0,1557.5,1409500.1,833867.25,185667.75,0,3330.8809 -12817,15790,28524,28523,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.2199326,7.7158751,45,2,165.73749,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.2136549,7.9238439,55.37,40.83,50.45,23.08,8.333333333333334,1,1,0,0,0,13,3,0,1557.5,1409500.1,833867.25,185667.75,0,3330.8809 -12818,15791,28525,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.0536118,7.3778787,0,0,0,-1087.7295,0,2,2,2019,12,0,16,15,1,0,0,9.0724869,9.0724869,0,0,0,0,0,1,1,0,0,0,43.66,50.25,-9,-9,5,1,1,0,1,10,13,2,1,747,806007.75,597210.19,0,0,518.53076 -12818,15792,28526,-9,28525,-9,1,0,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1012.6714,1,2,-9,2019,11,0,0,25,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,0,1,1,13,1,1,415,2771.0271,0,0,0,0 -12818,15793,28527,-9,28525,-9,1,1,19,0,1,0,2,2,1,0,5,0,0,0,0,0,-995.81458,-9,2,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.92,58.91,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,595,500528.75,0,0,0,0 -12819,15794,28528,28529,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,6.5441418,6.5437355,0,3,2,15.433373,0,-9,-9,2019,0,0,40,40,1,0,0,2.0942116,2.0942116,0,0,0,0,0,0,0,0,0,0,66.34,49.42,62.49,55.09,8.333333333333334,2,3,0,0,7,9,2,1,756,362066.41,81509.781,333189.78,0,723.53809 -12819,15794,28529,28528,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,0,0,0,3,-2,56.845623,0,-9,-9,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,66.34,49.42,10,2,3,1,0,0,9,2,1,756,362066.41,81509.781,333189.78,0,723.53809 -12820,15795,28530,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,9.0451202,8.8432665,0,0,0,-971.94861,0,2,-9,2019,6,0,45,48,1,0,0,21.530687,21.530687,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,6.666666666666667,3,4,0,0,8,8,5,0,424,-38379.754,0,0,0,2796.8328 -12821,15796,28531,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.0234776,5.5954738,0,0,-1080.5319,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2057495,34.15,27.84,-9,-9,10,1,1,0,0,4,12,2,1,274,44757.457,87649.344,0,0,220.02164 -12822,15797,28532,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.824748,5.021801,0,0,-1070.3206,0,3,3,2019,10,3,0,0,4,3,0,0,0,1,0,15.404013,0,0,1,1,0,.97839892,5.2040482,41.74,42.32,-9,-9,10,1,1,0,0,0,9,2,1,340,49289.422,135091.08,0,0,661.84943 -12823,15798,28533,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.5456538,6.809979,0,0,-912.61707,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,6.7740664,56.31,41.98,-9,-9,6.666666666666667,1,1,0,0,8,10,2,1,996,425841.56,127873.74,186319.38,0,1199.6846 -12823,15799,28534,-9,28533,-9,1,1,45,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1155.4374,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,0,10,1,1,895,242974.8,0,0,0,11.720161 -12824,15800,28535,28536,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.6204681,7.2080784,0,10,13,20.622196,0,2,3,2019,6,0,34,24,1,0,0,6.0206614,6.0206614,0,0,0,0,0,0,0,0,0,0,57.33,53.46,45.91,59.89,8.333333333333334,1,1,0,0,10,9,4,1,169,218922.98,170603.88,223263.84,0,2095.7012 -12824,15800,28536,28535,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2835426,8.1410618,0,19,-13,-52.77383,0,2,2,2019,14,3,40,40,1,3,0,7.0397458,7.0397458,0,0,0,0,0,0,0,0,0,0,45.91,59.89,57.33,53.46,6.666666666666667,1,1,0,0,10,9,4,1,169,218922.98,170603.88,223263.84,0,2095.7012 -12825,15801,28537,28538,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.1669946,7.2420883,34,0,8.6278019,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.4678006,6.9023013,37.76,55.72,53.98,50.87,6.666666666666667,1,1,0,0,0,10,2,1,302,412786.19,314719.94,194832.36,0,636.54144 -12825,15801,28538,28537,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,3,0,50.187298,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,4.8629031,0,53.98,50.87,37.76,55.72,3.333333333333333,1,1,0,0,8,10,2,1,302,412786.19,314719.94,194832.36,0,636.54144 -12826,15802,28539,28540,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.8154407,8.0795889,0,5,3,-81.22406,0,3,3,2019,10,0,33,33,1,0,0,10.541389,10.541389,0,0,0,0,0,1,1,0,0,0,50.18,52.62,42.29,55.19,6.666666666666667,1,1,0,0,6,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 -12826,15802,28540,28539,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.3024807,8.1845455,0,26,-3,95.447487,0,3,3,2019,11,0,34,33,1,0,0,14.191558,14.191558,0,0,0,0,0,1,1,0,0,0,42.29,55.19,50.18,52.62,1.666666666666667,1,1,0,0,8,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 -12826,15802,28541,-9,28540,28539,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.03741,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 -12826,15802,28542,-9,28540,28539,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1080.9128,-9,2,2,2019,2,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.7731218,0,61.01,50.48,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,846.5,443239.56,242026.75,190792.11,0,2461.054 -12827,15803,28543,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,5.5621538,5.3308907,0,0,-1038.2201,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,1.9456903,0,22.052437,0,1,1,0,0,5.5904398,58.3,15.57,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,1281,48317.84,112220.01,18027.082,2347.0083,1726.1527 -12828,15804,28544,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.889842,6.9651332,0,0,-1083.5719,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2525349,7.2827225,63.92,39.45,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,1064,792049.69,449865.78,0,0,1535.9854 -12829,15805,28545,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.7123957,7.0751958,0,0,-955.63049,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4766529,7.0952735,48.86,46.27,-9,-9,1.666666666666667,2,3,0,0,0,9,2,1,706,467682.56,95075.836,308412.88,0,801.91718 -12830,15806,28546,-9,28548,28549,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-990.17627,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,511.25,139409.41,0,0,0,2982.2012 -12830,15806,28547,-9,28548,28549,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4813,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,511.25,139409.41,0,0,0,2982.2012 -12830,15806,28548,28549,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.1666298,7.3466539,0,6,1,-55.862396,0,3,2,2019,10,1,20,25,1,1,0,5.5700879,5.5700879,0,0,0,0,0,1,1,0,0,0,46,57,53.85,48.6,8.333333333333334,1,1,0,0,10,2,3,1,511.25,139409.41,0,0,0,2982.2012 -12830,15806,28549,28548,-9,-9,1,1,27,1,2,0,2,2,-9,0,2,8.5269375,8.1356745,0,6,-1,-5.0118947,0,-9,-9,2019,6,0,55,65,1,0,0,8.3202248,8.3202248,0,0,0,0,0,1,1,0,0,0,53.85,48.6,46,57,8.333333333333334,1,1,0,0,8,2,3,1,511.25,139409.41,0,0,0,2982.2012 -12831,15807,28550,28551,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.479012,7.8299065,0,6,0,-19.424408,0,3,-9,2019,11,0,40,40,1,0,0,6.1932802,6.1932802,0,0,0,0,0,0,0,0,0,0,42.04,44.61,32.9,57.87,5,1,1,0,0,7,11,4,0,1619,-21883.219,0,233996.88,130090.21,2094.7427 -12831,15807,28551,28550,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.7974648,7.7787476,0,6,0,36.669876,0,3,-9,2019,12,0,48,40,1,0,0,4.8360443,4.8360443,0,0,0,0,0,0,0,0,0,0,32.9,57.87,42.04,44.61,6.666666666666667,1,1,0,0,7,11,4,0,1619,-21883.219,0,233996.88,130090.21,2094.7427 -12832,15808,28552,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,7.4001241,7.5400453,0,0,-1074.5046,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8287463,7.5610733,59.64,46.95,-9,-9,10,1,1,0,0,0,6,3,1,237,463074.56,296641.88,422547,0,1671.7944 -12833,15809,28553,28554,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2424622,8.3373652,0,1,-4,-48.62447,-9,-9,-9,2019,6,0,39,0,1,0,0,11.613786,11.613786,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,1,0,5,5,0,502.5,472449.75,206233.69,0,0,3408.3943 -12833,15809,28554,28553,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,7.9403739,7.9848809,0,1,4,20.926226,0,1,1,2019,9,2,35,55,1,2,0,9.809948,9.809948,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.16,56.15,6.666666666666667,1,1,0,0,5,5,5,0,502.5,472449.75,206233.69,0,0,3408.3943 -12834,15810,28555,28556,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,10,9,-108.26782,0,3,3,2019,27,12,0,0,4,12,0,0,0,1,25.035967,42.959232,259.29218,0,1,1,0,2.2674119,0,20.73,25.8,43.28,48.9,1.666666666666667,1,1,0,1,0,12,3,1,881.5,323102.69,94130.852,177181.94,0,2140.1128 -12834,15810,28556,28555,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,7.6506605,8.0177469,0,10,0,-150.66087,0,3,3,2019,9,0,44,35,1,0,0,6.755096,6.755096,0,0,0,0,42,1,1,0,2.2200937,0,43.28,48.9,20.73,25.8,6.666666666666667,2,3,0,1,11,12,3,1,881.5,323102.69,94130.852,177181.94,0,2140.1128 -12835,15811,28557,28558,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.6296639,7.6562653,16,8,67.874779,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9695666,7.7456136,54.79,55.86,25.61,49.48,8.333333333333334,1,1,0,0,5,7,3,0,447.5,1108888.3,447126.88,316915.44,0,1657.4299 -12835,15811,28558,28557,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,16,-8,-56.072868,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.61,49.48,54.79,55.86,3.333333333333333,1,1,0,0,0,7,3,0,447.5,1108888.3,447126.88,316915.44,0,1657.4299 -12836,15812,28559,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.4281464,6.7560849,0,0,-996.11365,-9,3,3,2019,10,0,0,0,4,1,0,0,0,1,13.039845,21.112293,132.47569,0,1,1,0,0,6.873786,53,47,-9,-9,7,1,1,0,0,0,13,2,1,1208,862255.06,423738.31,168224.16,0,1104.1492 -12837,15813,28560,28562,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.4277334,8.4907303,0,22,-8,43.480591,0,1,2,2019,6,0,50,47,1,0,0,15.204562,15.204562,0,0,0,0,0,1,1,0,7.7739987,0,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,1,576,172688.14,116624.73,63216.898,21583.266,5529.6001 -12837,15813,28561,-9,28560,28562,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.6605,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,576,172688.14,116624.73,63216.898,21583.266,5529.6001 -12837,15813,28562,28560,-9,-9,1,1,45,1,1,0,1,1,-9,0,4,8.9125814,8.4023666,0,18,8,64.108925,0,1,1,2019,7,0,45,48,1,0,0,18.482073,18.482073,0,0,0,0,0,1,1,0,4.155889,0,57.16,56.15,56.58,49.75,8.333333333333334,1,1,0,0,10,10,5,1,576,172688.14,116624.73,63216.898,21583.266,5529.6001 -12838,15814,28563,-9,28567,28564,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.38843,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 -12838,15814,28564,28567,-9,-9,1,1,33,0,3,0,2,2,-9,0,4,9.2139072,9.2304735,0,10,1,22.709612,0,2,2,2019,8,0,38,38,1,0,0,28.920229,28.920229,0,0,0,0,2,1,1,0,6.6105671,0,49.46,56.91,51.24,58.84,8.333333333333334,1,1,0,0,7,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 -12838,15814,28565,-9,28567,28564,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.74493,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 -12838,15814,28566,-9,28567,28564,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-830.75378,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 -12838,15814,28567,28564,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.5406051,7.6317925,0,13,-1,-97.418915,0,2,-9,2019,11,2,30,16,1,2,0,6.4971709,6.4971709,0,0,0,0,2,1,1,0,0,0,51.24,58.84,49.46,56.91,6.666666666666667,1,1,0,0,10,6,5,1,2329.3999,179749.69,99295.148,0,0,4819.0659 -12839,15815,28568,-9,28570,28569,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-920.72076,-9,3,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,5,1,305.66666,352927.25,174053.58,62132.305,58667.855,2131.0369 -12839,15815,28569,28570,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.8599091,8.8092718,0,35,5,91.90139,0,3,3,2019,6,0,50,50,1,0,0,14.84582,14.84582,0,0,0,0,0,1,1,0,0,0,51.7,49.11,53.44,55.06,8.333333333333334,2,3,0,0,11,4,5,1,305.66666,352927.25,174053.58,62132.305,58667.855,2131.0369 -12839,15815,28570,28569,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,0,0,0,35,-5,-132.27821,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,51.7,49.11,8.333333333333334,2,3,0,0,0,4,5,1,305.66666,352927.25,174053.58,62132.305,58667.855,2131.0369 -12839,15816,28571,-9,28570,28569,1,1,27,0,0,0,1,1,-9,0,4,8.2728624,8.3107004,0,0,0,-920.966,0,2,2,2019,5,0,37,38,1,0,1,13.478023,13.478023,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,860,-235497.38,78818.656,94047.313,34986.59,1708.4287 -12840,15817,28572,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1005.5612,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,0,4,1,0,290,537048.38,0,0,0,0 -12840,15818,28573,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.0505123,8.0079727,0,0,0,-945.44971,0,-9,-9,2019,6,0,46,39,1,0,0,7.0651221,7.0651221,0,0,0,0,0,0,0,0,0,0,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,5,4,4,0,1464,472285.41,115392.41,304318.84,0,1781.0929 -12841,15819,28574,28575,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.641571,8.3535099,0,32,-1,107.75985,0,2,2,2019,11,0,41,40,1,0,0,16.536501,16.536501,0,0,0,0,7,0,0,0,6.6557159,0,55.09,55.87,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,557,480045,212327.19,68627.57,62832.586,2737.0547 -12841,15819,28575,28574,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,6.8248949,6.7830091,0,32,1,.19849759,0,3,2,2019,6,0,2,10,1,0,0,53.989433,53.989433,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.09,55.87,1.666666666666667,1,1,0,0,4,4,4,1,557,480045,212327.19,68627.57,62832.586,2737.0547 -12841,15820,28576,-9,28574,28575,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-966.22382,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.27165458,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,394,240798.61,0,0,0,244.51039 -12842,15821,28577,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,9.3993359,9.3879185,0,7,3,72.202377,0,2,2,2019,11,1,37,41,1,1,0,33.99752,33.99752,0,0,0,0,0,0,0,0,0,0,59.11,34.12,48.65,62.89,6.666666666666667,2,3,0,0,10,8,5,1,1081,403022.19,145856.03,0,0,3457.7751 -12842,15822,28578,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,9.1546917,9.1738272,0,7,-3,-78.269844,0,-9,-9,2019,12,3,42,60,1,3,0,29.310118,29.310118,0,0,0,0,0,0,0,0,0,0,48.65,62.89,59.11,34.12,5,1,1,0,0,7,8,5,1,2082,128786.12,86442.641,600098.19,364020.06,2817.2158 -12843,15823,28579,28580,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.7243233,8.9775057,0,7,-14,-60.49625,0,2,2,2019,12,2,55,45,1,2,0,15.836924,15.836924,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,9,10,5,1,488.5,1047230.4,572885,377419.38,0,2561.6147 -12843,15823,28580,28579,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,5.8582945,5.6756449,0,7,14,17.748945,0,3,2,2019,8,0,45,50,1,0,0,.90371698,.90371698,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,1,7,10,5,1,488.5,1047230.4,572885,377419.38,0,2561.6147 -12844,15824,28581,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.2709761,7.4073009,0,0,-989.67285,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8033853,7.4958324,61.28,48.88,-9,-9,8.333333333333334,3,4,0,0,6,8,3,1,308,902209.81,162415.64,434658.41,0,1184.9152 -12845,15825,28582,28583,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,6.2124114,6.7789216,61,6,-34.268681,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.66071302,6.5940542,59.27,44.84,57.51,47.91,6.666666666666667,3,4,0,0,0,9,2,1,551,-155249.31,72795.563,72188.258,0,2035.6938 -12845,15825,28583,28582,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.1423917,4.2608333,60,-6,37.550079,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1153054,4.3686309,57.51,47.91,59.27,44.84,10,3,4,0,0,0,9,2,1,551,-155249.31,72795.563,72188.258,0,2035.6938 -12846,15826,28584,28585,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,3.9179535,4.4777675,10,13,23.012533,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6236105,4.2837815,60.12,54.8,60.52,53.2,10,1,1,0,0,2,7,3,1,1173.5,470628.44,107186.81,370434,0,2134.1008 -12846,15826,28585,28584,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.8737669,8.1393213,0,10,-13,-35.598003,0,2,3,2019,6,0,45,0,1,0,0,7.7382827,7.7382827,0,0,0,0,0,1,1,0,.20096052,0,60.52,53.2,60.12,54.8,8.333333333333334,1,1,0,0,11,7,3,1,1173.5,470628.44,107186.81,370434,0,2134.1008 -12847,15827,28586,28587,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.7560263,6.7597933,8,-4,68.644989,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,3.2972398,6.5144629,48.81,59.91,57.33,53.46,8.333333333333334,1,1,0,0,7,11,4,1,903.5,1274008.5,919234.5,318310.31,133685.66,2471.9082 -12847,15827,28587,28586,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.0611515,8.8832579,6.8648958,8,4,30.412361,0,3,3,2019,7,0,12,25,1,0,0,43.232044,43.232044,0,0,0,0,0,0,0,0,6.9472108,7.13099,57.33,53.46,48.81,59.91,1.666666666666667,1,1,0,0,9,11,4,1,903.5,1274008.5,919234.5,318310.31,133685.66,2471.9082 -12848,15828,28588,28589,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.583993,6.6758828,10,-18,-86.843796,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.4971385,54.96,53.17,33.07,19.72,8.333333333333334,1,1,0,0,11,8,3,0,795.5,1205304.1,463555.5,607504.5,0,1960.0402 -12848,15828,28589,28588,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.6082335,7.4390488,10,18,41.78001,0,3,-9,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.1450014,33.07,19.72,54.96,53.17,3.333333333333333,1,1,0,0,0,8,3,0,795.5,1205304.1,463555.5,607504.5,0,1960.0402 -12848,15829,28590,28591,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.5292892,8.1059914,0,5,-1,66.173271,0,-9,-9,2019,17,6,35,35,1,6,0,15.778028,15.778028,0,0,0,0,0,1,1,0,0,0,33.07,55.18,38.34,62.12,6.666666666666667,1,1,0,0,4,8,5,0,587,131534.16,3876.843,0,0,3055.0386 -12848,15829,28591,28590,28588,28589,1,0,27,0,0,0,1,1,1,0,4,7.8526936,7.6824193,0,5,1,56.03587,-9,2,3,2019,10,1,35,0,1,1,0,9.5799522,9.5799522,0,0,0,0,0,1,1,0,0,0,38.34,62.12,33.07,55.18,8.333333333333334,1,1,0,0,9,8,5,0,587,131534.16,3876.843,0,0,3055.0386 -12849,15830,28592,-9,28593,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.59076,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,0,313.66666,-252800.61,0,0,0,1626.2422 -12849,15830,28593,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,3,8.2304068,7.8464184,0,0,0,-986.93958,0,-9,-9,2019,19,7,70,40,1,7,0,5.3995419,5.3995419,0,0,0,0,0,1,1,0,0,0,36.46,55.18,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,313.66666,-252800.61,0,0,0,1626.2422 -12849,15830,28594,-9,28593,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.63019,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,313.66666,-252800.61,0,0,0,1626.2422 -12850,15831,28595,28597,-9,-9,1,0,32,0,2,0,3,3,-9,0,5,7.5649629,7.2938185,0,1,-2,5.7604747,-9,-9,-9,2019,8,0,26,0,1,0,0,8.1758242,8.1758242,0,0,0,0,0,1,1,0,0,0,63.38,50.77,62.39,56.71,10,4,2,0,0,9,7,3,1,918.66669,220639.84,0,205062.17,134734.42,2134.9487 -12850,15831,28596,-9,28595,28597,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6047,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,1,918.66669,220639.84,0,205062.17,134734.42,2134.9487 -12850,15831,28597,28595,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,7.9779086,8.0735779,0,1,2,87.610451,-9,-9,-9,2019,4,0,8,0,1,0,0,55.332424,55.332424,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.38,50.77,10,1,1,0,0,9,7,3,1,918.66669,220639.84,0,205062.17,134734.42,2134.9487 -12851,15832,28598,28599,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.4768553,7.4508634,0,24,3,23.89341,0,2,2,2019,11,0,16,30,1,0,0,13.464148,13.464148,0,0,0,0,2,0,0,0,1.829927,0,60.12,54.8,60.02,56.42,10,1,1,0,0,9,4,4,1,644,280247.31,108434.47,212340.02,4575.125,2905.4761 -12851,15832,28599,28598,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.3738279,8.2389126,0,24,-3,16.100658,0,2,-9,2019,8,0,39,47,1,0,0,8.4806099,8.4806099,0,0,0,0,0,0,0,0,0,0,60.02,56.42,60.12,54.8,6.666666666666667,1,1,0,0,9,4,4,1,644,280247.31,108434.47,212340.02,4575.125,2905.4761 -12851,15833,28600,-9,28598,28599,1,1,26,0,0,0,2,2,-9,0,4,7.724772,7.809175,0,0,0,-909.30206,0,2,2,2019,35,12,20,36,1,12,1,11.130082,11.130082,0,0,0,0,0,0,0,0,0,0,15.48,67.34999999999999,-9,-9,0,1,1,0,0,4,4,3,1,2256,-100756.05,24391.912,0,0,940.29797 -12852,15834,28601,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.8630457,5.9748349,0,0,-1045.312,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3264761,53.14,45.74,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,1213,568557.13,24691.338,645049.31,0,689.86334 -12853,15835,28602,28603,-9,-9,1,1,61,0,0,0,1,1,-9,1,1,0,0,0,22,4,0,0,3,3,2019,19,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,32.14,26.13,46.95,35.43,0,2,3,0,1,5,6,1,1,671.5,420499.94,380572.5,215844.56,42292.02,1969.0386 -12853,15835,28603,28602,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,23,-4,0,0,3,3,2019,24,7,0,0,3,7,0,0,0,0,0,0,0,7,1,1,0,0,0,46.95,35.43,32.14,26.13,3.333333333333333,2,3,1,1,0,6,1,1,671.5,420499.94,380572.5,215844.56,42292.02,1969.0386 -12854,15836,28604,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.0831161,5.0174823,0,0,-1012.2896,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6830411,4.8836756,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,921,88903.898,-98457.133,0,0,999.54572 -12855,15837,28605,28606,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9442506,8.1000004,6.9970589,6,1,-3.9615602,0,2,3,2019,9,0,37,37,1,0,0,9.0168219,9.0168219,0,0,0,0,0,0,0,0,6.3652472,7.2808971,37.66,49.9,51.83,57.2,8.333333333333334,1,1,0,0,7,2,4,1,1257,740195.13,643309.13,76444.672,0,3026.8569 -12855,15837,28606,28605,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.2549286,7.6525869,6.367641,6,-1,57.491753,0,2,3,2019,10,1,24,0,1,1,0,7.1040168,7.1040168,0,0,0,0,0,0,0,0,6.9141989,6.3696666,51.83,57.2,37.66,49.9,1.666666666666667,1,1,0,0,7,2,4,1,1257,740195.13,643309.13,76444.672,0,3026.8569 -12855,15838,28607,-9,28606,28605,1,1,23,0,0,0,1,1,1,0,3,8.1293917,7.82236,0,0,0,-1133.7952,-9,2,2,2019,7,2,40,0,1,2,1,9.1153955,9.1153955,0,0,0,0,0,0,0,0,1.87524,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,564,92038.258,0,0,0,1307.438 -12856,15839,28608,28609,-9,-9,1,1,63,0,2,0,1,1,-9,0,5,9.1658592,9.0381298,4.5843358,3,8,-5.3128228,0,2,3,2019,8,0,38,41,1,0,0,28.064959,28.064959,0,0,0,0,0,1,1,0,5.6834188,4.9769382,54.1,59.11,47.58,53.71,6.666666666666667,1,1,0,0,9,12,5,1,1164.6666,3371600.5,2717178.3,495334.75,0,5044.3354 -12856,15839,28609,28608,-9,-9,1,0,55,0,2,0,1,1,-9,0,3,8.4194431,8.8267946,0,3,-8,105.88085,0,2,2,2019,12,1,37,37,1,1,0,17.017117,17.017117,0,0,0,0,0,1,1,0,0,0,47.58,53.71,54.1,59.11,3.333333333333333,1,1,0,0,11,12,5,1,1164.6666,3371600.5,2717178.3,495334.75,0,5044.3354 -12856,15839,28610,-9,28609,28608,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-982.16199,-9,1,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,63.48,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,1164.6666,3371600.5,2717178.3,495334.75,0,5044.3354 -12857,15840,28611,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,8.096014,8.3294382,0,0,-983.12714,0,3,2,2019,16,4,0,0,4,4,0,0,0,1,8.1615229,4.5354581,71.979156,0,1,1,0,4.3896484,8.1278687,42.45,29.18,-9,-9,3.333333333333333,1,1,0,0,0,6,4,1,413,483061.66,312556.75,242319.41,0,3070.3999 -12858,15841,28612,28613,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.5408621,7.70222,0,43,4,-76.375092,0,-9,-9,2019,6,0,37,35,1,0,0,7.1358638,7.1358638,0,0,0,0,0,0,0,0,5.3270979,0,58.57,46.25,45.88,37.31,8.333333333333334,1,1,0,0,8,5,3,1,1368.5,285407.38,114229.02,59789.539,0,795.63135 -12858,15841,28613,28612,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,43,-4,-22.268209,0,-9,-9,2019,26,11,0,30,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,45.88,37.31,58.57,46.25,5,1,1,1,0,8,5,3,1,1368.5,285407.38,114229.02,59789.539,0,795.63135 -12859,15842,28614,28615,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.0586767,5.9834042,0,6,0,52.704205,0,1,1,2019,11,0,60,60,1,0,0,.74128562,.74128562,0,0,0,0,0,0,0,0,0,0,47.75,53.7,31.87,43.4,3.333333333333333,1,1,0,0,6,4,4,1,400,179303.56,112040.55,44021.469,0,2521.3843 -12859,15842,28615,28614,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.6163301,8.689785,0,6,9,-44.235729,0,2,2,2019,15,4,41,41,1,4,0,15.227242,15.227242,0,0,0,0,7,0,0,0,0,0,31.87,43.4,47.75,53.7,3.333333333333333,1,1,0,0,8,4,4,1,400,179303.56,112040.55,44021.469,0,2521.3843 -12860,15843,28616,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.7393537,7.539629,0,0,0,-987.55365,0,2,1,2019,19,5,35,30,1,5,0,8.1105242,8.1105242,0,0,0,0,0,1,1,0,0,0,49.51,36.28,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,796.5,199440.14,-12583.668,0,0,2047.649 -12860,15843,28617,-9,28616,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.0164,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,796.5,199440.14,-12583.668,0,0,2047.649 -12861,15844,28618,28619,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,5.3720655,5.3206429,0,9,-6,38.240158,0,2,2,2019,11,1,2,2,1,1,0,13.509544,13.509544,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.2,57.49,1.666666666666667,1,1,0,0,11,10,5,1,1728,25261.227,202635.25,478111.5,210470.36,5480.3564 -12861,15844,28619,28618,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.4514818,9.4538813,7.9708953,30,6,60.672489,0,2,1,2019,12,1,23,38,1,1,0,51.498081,51.498081,0,0,0,0,0,0,0,0,6.9278975,7.6793847,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,11,10,5,1,1728,25261.227,202635.25,478111.5,210470.36,5480.3564 -12862,15845,28620,-9,28621,28623,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.4399,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 -12862,15845,28621,28623,-9,-9,1,0,29,0,3,0,2,2,-9,0,3,0,0,0,7,-5,-75.45195,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,41.98,43.38,8.333333333333334,1,1,1,1,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 -12862,15845,28622,-9,28621,28623,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.2972,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 -12862,15845,28623,28621,-9,-9,1,1,34,0,3,0,2,2,-9,0,1,7.9321876,7.6890802,0,7,5,13.636334,0,2,2,2019,15,3,50,40,1,3,0,6.800807,6.800807,0,0,0,0,0,1,1,0,0,0,41.98,43.38,54.62,53.53,5,1,1,0,1,5,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 -12862,15845,28624,-9,28621,28623,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.07544,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,396.60001,-76084.102,-20125.672,0,0,1645.9626 -12863,15846,28625,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1047.0824,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,1.7606033,0,21.446167,0,1,1,0,5.0620484,0,52.8,30.18,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,811,495602.59,0,0,0,774.90118 -12864,15847,28626,28627,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.2072906,7.3292947,5,5,80.305588,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1665874,7.665803,59.43,58.05,57.06,57.76,10,1,1,0,0,6,10,3,1,822.5,1578608.5,296563,647405.5,0,6696.6455 -12864,15847,28627,28626,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.4123716,7.4626689,5,-5,6.3581491,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.2347288,7.4842706,57.06,57.76,59.43,58.05,10,1,1,0,0,0,10,3,1,822.5,1578608.5,296563,647405.5,0,6696.6455 -12865,15848,28628,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.9462852,8.9697323,0,0,0,-855.84442,0,1,1,2019,12,0,20,38,1,0,0,49.342373,49.342373,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,4,2,0,0,7,11,5,1,664,363934.5,250743.05,76094.313,58252.098,2558.8708 -12866,15849,28629,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.15045,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,39.81,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,255,-57819.625,0,0,0,444.5166 -12867,15850,28630,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.1654015,8.569602,6.660316,0,0,-967.73834,0,2,2,2019,18,6,43,45,1,6,0,9.5370111,9.5370111,0,0,0,0,0,1,1,0,6.4881449,0,29.49,59.38,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,2609,548374.63,-96758.047,429487.31,0,2337.9468 -12867,15850,28631,-9,28630,-9,1,1,16,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1015.5634,-9,2,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,.30969864,0,34.17,57.25,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,2609,548374.63,-96758.047,429487.31,0,2337.9468 -12867,15851,28632,-9,28630,-9,1,1,20,0,0,0,2,2,-9,0,4,7.5820074,7.5620275,0,0,0,-1072.0328,0,2,-9,2019,10,0,44,40,1,0,1,5.2661576,5.2661576,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,4,6,3,1,561,-56203.008,0,0,0,996.82214 -12868,15852,28633,28634,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.1768613,6.3621917,51,4,-11.507883,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,71.5,1,1,0,6.3544207,6.4523063,53,47,50,47,7,1,1,0,0,5,4,2,1,335.5,531915.13,95747.891,226168.63,0,1610.3325 -12868,15852,28634,28633,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,3.1642082,3.0506351,6,-4,-34.309818,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,6.5740466,3.1428878,50,47,53,47,7,1,1,0,0,0,4,2,1,335.5,531915.13,95747.891,226168.63,0,1610.3325 -12868,15853,28635,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.1906662,8.1852312,0,0,0,-967.32745,0,-9,-9,2019,12,0,37,38,1,0,0,11.145263,11.145263,0,0,0,0,0,1,1,0,4.1855359,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,4,4,4,1,396,-160807.05,190209.98,0,0,2280.1821 -12869,15854,28636,28637,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9698238,8.7833109,0,7,-1,41.788589,0,3,3,2019,5,0,37,43,1,0,0,23.997082,23.997082,0,0,0,0,0,0,0,0,6.6085143,0,58.32,50.22,48.18,61.8,8.333333333333334,1,1,0,0,8,13,5,1,1471,1013593.6,834202.75,277850.13,0,2816.0632 -12869,15854,28637,28636,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,7.0521965,6.9570236,7,1,75.279144,0,2,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,7,0,0,0,5.8099971,7.0048018,48.18,61.8,58.32,50.22,8.333333333333334,1,1,0,0,5,13,5,1,1471,1013593.6,834202.75,277850.13,0,2816.0632 -12870,15855,28638,-9,28639,28641,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.4176,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 -12870,15855,28639,28641,-9,-9,1,0,37,0,2,0,2,2,-9,1,4,0,0,0,14,-4,-170.29837,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.19,53.94,38.91,52.63,5,2,3,0,0,0,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 -12870,15855,28640,-9,28639,28641,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1148.827,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 -12870,15855,28641,28639,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.5444994,8.4895086,0,14,4,-20.791784,0,2,2,2019,14,2,36,36,1,2,0,14.996232,14.996232,0,0,0,0,7,1,1,0,0,0,38.91,52.63,45.19,53.94,3.333333333333333,2,3,0,0,10,7,4,1,1178.25,871117.38,367751.53,903086.5,467296.66,2669.4761 -12871,15856,28642,28643,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.1693258,7.7945848,0,26,-1,-11.010998,0,3,3,2019,12,0,40,45,1,0,0,8.7811546,8.7811546,0,0,0,0,0,0,0,0,0,0,41.7,59.17,55.19,54.26,3.333333333333333,1,1,0,0,6,12,4,1,1670.5,377653.31,238750.47,170404.06,70537.43,2646.7783 -12871,15856,28643,28642,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.8100529,7.8567362,0,26,1,1.5762638,0,2,3,2019,8,0,32,16,1,0,0,8.1097898,8.1097898,0,0,0,0,0,0,0,0,0,0,55.19,54.26,41.7,59.17,8.333333333333334,1,1,0,0,9,12,4,1,1670.5,377653.31,238750.47,170404.06,70537.43,2646.7783 -12871,15857,28644,-9,28643,28642,1,0,21,0,0,0,2,2,-9,0,5,7.8879399,7.7032156,0,0,0,-895.94952,0,2,3,2019,2,0,37,35,1,0,1,7.3221264,7.3221264,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,2017,44651.797,211045.69,0,0,1094.2637 -12871,15858,28645,-9,28643,28642,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.2341,-9,2,3,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,44.95,58.82,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,724,-380972.19,0,0,0,-248.78821 -12872,15859,28646,-9,28647,28648,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1032.7168,-9,2,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.85,54.62,-9,-9,5,3,4,0,0,0,8,3,0,1125.3334,1410644.6,26512.822,867093.63,0,1728.5632 -12872,15859,28647,28648,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0903969,8.000351,0,12,-19,118.68227,-9,3,2,2019,12,0,40,0,1,2,0,10.118746,10.118746,0,0,0,0,0,1,1,0,0,0,46,50,55.86,43.17,7,3,4,0,1,10,8,3,0,1125.3334,1410644.6,26512.822,867093.63,0,1728.5632 -12872,15859,28648,28647,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.0900383,5.8676376,13,19,106.32809,-9,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4211497,55.86,43.17,46,50,8.333333333333334,3,4,0,1,10,8,3,0,1125.3334,1410644.6,26512.822,867093.63,0,1728.5632 -12873,15860,28649,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.8417778,9.0529518,0,0,0,-862.58502,0,3,3,2019,12,1,55,50,1,1,0,12.62794,12.62794,0,0,0,0,0,0,0,0,5.0968423,0,41.87,59.15,-9,-9,6.666666666666667,1,1,0,0,7,7,5,1,578,545736.69,108650.19,0,0,1583.9811 -12873,15861,28650,-9,28649,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2344599,8.1227188,0,0,0,-957.1944,0,2,2,2019,20,8,45,48,1,8,1,10.365946,10.365946,0,0,0,0,0,0,0,0,0,0,27.77,65.94,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1379,15168.215,1522.8462,0,0,881.91223 -12873,15862,28651,-9,28649,-9,1,1,18,0,0,1,2,0,0,0,2,0,6.9922547,6.7118983,0,0,-1067.1068,-9,2,-9,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,7.183692,0,56.14,36.8,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,244,302.32425,0,0,0,768.99377 -12874,15863,28652,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,9.1807814,9.3146114,0,0,0,-1089.983,0,2,2,2019,15,3,62,57,1,3,0,19.971207,19.971207,0,0,0,0,0,1,1,0,2.3034837,0,44.21,60.79,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,132,125497.79,-14124.997,66040.094,81862,3442.575 -12875,15864,28653,28654,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.0936365,8.7710266,4.6351805,6,-5,-4.9440036,0,2,2,2019,8,0,40,42,1,0,0,18.856329,18.856329,0,0,0,0,0,1,1,0,4.1497378,4.6450081,54,53,53,52,8.333333333333334,1,1,0,0,8,9,5,1,412,1540426.5,1259738.5,461517.25,52843.953,3376.7261 -12875,15864,28654,28653,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,6.4819851,6.3187299,6,5,47.827679,0,3,3,2019,9,0,0,16,3,1,0,0,0,0,0,0,0,0,1,1,0,1.9403919,6.4287343,53,52,54,53,8,1,1,1,0,0,9,5,1,412,1540426.5,1259738.5,461517.25,52843.953,3376.7261 -12876,15865,28655,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.8662395,9.5046787,0,0,0,-1033.736,0,1,2,2019,13,3,40,55,1,3,0,50.671192,50.671192,0,0,0,0,0,0,0,0,6.1857567,0,33.49,64.26000000000001,-9,-9,3.333333333333333,1,1,0,0,13,11,5,0,163,-286612.16,6521.4697,0,0,13072.156 -12877,15866,28656,28658,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.5501232,7.8715301,7.5423288,4,8,-84.712936,0,3,3,2019,7,0,22,22,1,0,0,10.468074,10.468074,0,0,0,0,0,1,1,0,5.4204803,7.7373943,58.05,54.52,61.85,47.26,10,1,1,0,0,9,5,5,1,617,105062.01,69822.125,0,0,4079.3672 -12877,15866,28657,-9,28656,28658,1,1,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1051.3601,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,1.666666666666667,1,1,0,0,1,5,5,1,617,105062.01,69822.125,0,0,4079.3672 -12877,15866,28658,28656,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.250412,8.3138771,0,4,-8,-178.92169,0,-9,-9,2019,6,0,38,37,1,0,0,10.992243,10.992243,0,0,0,0,0,1,1,0,7.181139,0,61.85,47.26,58.05,54.52,10,1,1,0,0,7,5,5,1,617,105062.01,69822.125,0,0,4079.3672 -12877,15867,28659,-9,28656,28658,1,0,21,0,0,0,2,2,-9,0,4,7.6718512,7.6518178,0,0,0,-970.18286,0,2,2,2019,3,0,40,41,1,0,1,7.5083699,7.5083699,0,0,0,0,0,1,1,0,5.0683737,0,43.94,56.16,-9,-9,10,1,1,0,0,6,5,3,1,737,-220575.88,0,0,0,1264.603 -12877,15868,28660,-9,28656,28658,1,0,22,0,0,0,2,2,-9,0,4,7.5202208,7.4076419,0,0,0,-1108.2089,0,2,2,2019,12,0,52,40,1,0,1,5.2614942,5.2614942,0,0,0,0,0,1,1,0,0,0,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,4,5,3,1,146,-125226.35,0,0,0,1359.1281 -12878,15869,28661,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,4.7273154,4.3968339,0,0,0,-934.92139,0,3,3,2019,13,3,37,38,1,3,0,.29245263,.29245263,0,0,0,0,0,0,0,0,0,0,51.27,48.12,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,190,493634.44,-24641.414,95451.141,0,74.949074 -12879,15870,28662,28663,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,7.290031,7.2864285,0,49,1,-11.890545,0,3,3,2019,22,9,50,50,1,9,0,3.663321,3.663321,0,0,0,0,0,1,1,0,0,0,36.61,65.55,32.62,36.55,3.333333333333333,1,1,0,0,8,6,2,1,611,587521.31,154721.66,472420.69,0,2286.4104 -12879,15870,28663,28662,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,5.7450418,5.7481923,49,-1,7.8677139,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,5.974339,32.62,36.55,36.61,65.55,3.333333333333333,1,1,0,0,4,6,2,1,611,587521.31,154721.66,472420.69,0,2286.4104 -12880,15871,28664,28665,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,0,0,0,9,-6,34.970371,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,32.99,49.06,47.66,52.33,5,1,1,0,0,0,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 -12880,15871,28665,28664,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,7.6443658,7.7994895,0,9,6,33.714279,0,2,3,2019,11,0,31,30,1,0,0,7.8767395,7.8767395,0,0,0,0,0,1,1,0,0,0,47.66,52.33,32.99,49.06,5,1,1,0,0,12,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 -12880,15871,28666,-9,28664,28665,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0576,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 -12880,15871,28667,-9,28664,28665,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.2321,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1014.75,186690.31,125825.06,181025.03,156978.91,1529.4735 -12881,15872,28668,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7734718,8.6882401,0,0,0,-1015.186,0,-9,-9,2019,8,0,50,48,1,0,0,15.049937,15.049937,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,888,217289.91,-30980.346,237333.53,182776.45,2253.6233 -12882,15873,28669,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,5,7.9646735,7.7033949,0,0,0,-932.90637,-9,-9,-9,2019,8,1,60,0,1,1,0,5.4303055,5.4303055,0,0,0,0,0,0,0,0,2.9158216,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,1099,0,0,0,0,1658.1469 -12883,15874,28670,28671,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.1631999,5.935307,2,-6,-56.332542,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1873245,6.5846753,57.7,55.88,42.6,50.45,8.333333333333334,1,1,0,0,0,2,3,1,1998.5,968216.13,266492.88,333074.66,0,3079.0112 -12883,15874,28671,28670,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.7267776,7.8252525,2,6,-49.492008,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.5105379,7.8303595,42.6,50.45,57.7,55.88,8.333333333333334,1,1,0,0,0,2,3,1,1998.5,968216.13,266492.88,333074.66,0,3079.0112 -12884,15875,28672,28673,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,9.000783,9.1743832,0,6,1,26.24246,0,2,-9,2019,13,4,35,50,1,4,0,36.741962,36.741962,0,0,0,0,0,0,0,0,6.0890355,0,43.9,57.01,51.83,57.2,6.666666666666667,1,1,0,0,4,7,5,1,184,3162840.5,2749510.5,316619.13,0,6262.0625 -12884,15875,28673,28672,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2301168,8.9990797,0,30,-1,-25.625923,0,2,2,2019,12,0,40,40,1,0,0,29.326237,29.326237,0,0,0,0,0,0,0,0,0,0,51.83,57.2,43.9,57.01,3.333333333333333,1,1,0,0,8,7,5,1,184,3162840.5,2749510.5,316619.13,0,6262.0625 -12885,15876,28674,-9,28676,28675,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.57837,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 -12885,15876,28675,28676,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,0,6.7091722,7.2177043,6,-3,73.086693,0,2,-9,2019,12,0,0,50,3,0,0,0,0,0,0,0,0,0,1,1,0,6.5708046,0,48.87,58.55,50,55,6.666666666666667,1,1,1,0,3,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 -12885,15876,28676,28675,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,7.8588209,7.9520078,0,6,3,48.356155,0,2,2,2019,12,1,28,37,1,1,0,12.915582,12.915582,0,0,0,0,0,1,1,0,0,0,50,55,48.87,58.55,3.333333333333333,1,1,0,0,9,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 -12885,15876,28677,-9,28676,28675,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.14856,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,3,1,488,177733.8,222485.11,113319.5,25890.504,2200.7681 -12886,15877,28678,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-975.72467,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,49.81,-9,-9,10,1,1,0,0,3,7,1,1,557,-286922.84,0,0,0,71.984543 -12887,15878,28679,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.925993,8.9136209,7.3966146,0,0,-931.74365,0,1,2,2019,11,0,55,50,1,0,0,15.186422,15.186422,0,0,0,0,0,0,0,0,0,7.4275985,55.09,55.87,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,144,-89887.578,230205.94,0,0,3875.2073 -12888,15879,28680,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.265193,8.1771879,0,0,0,-962.07135,0,3,2,2019,5,0,48,46,1,0,0,10.840631,10.840631,0,0,0,0,0,0,0,0,0,0,61.12,51.57,-9,-9,10,3,4,0,1,10,8,4,0,1873,274309.94,78774.703,0,0,1834.2749 -12889,15880,28681,28682,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.725462,8.9088354,0,9,0,78.095398,0,2,2,2019,13,1,35,30,1,1,0,18.297178,18.297178,0,0,0,0,0,0,0,0,0,0,49.35,59.64,52.88,51.14,8.333333333333334,1,1,0,0,11,5,5,1,617,391300.59,330320.31,242131.09,99124.414,3878.8999 -12889,15880,28682,28681,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.3135872,8.4387236,0,9,0,25.902033,0,2,2,2019,9,1,40,38,1,1,0,10.639908,10.639908,0,0,0,0,0,0,0,0,.41495976,0,52.88,51.14,49.35,59.64,8.333333333333334,1,1,0,0,11,5,5,1,617,391300.59,330320.31,242131.09,99124.414,3878.8999 -12890,15881,28683,-9,28685,28684,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.8667,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,1467.6666,1100038.9,783208.06,354745.56,124637.16,3362.5481 -12890,15881,28684,28685,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4331665,8.3274193,0,7,17,-166.23024,0,-9,-9,2019,9,0,60,55,1,1,0,8.8334341,8.8334341,0,0,0,0,0,1,1,0,2.6171973,0,53,55,38.45,60.79,8,1,1,0,0,1,10,4,0,1467.6666,1100038.9,783208.06,354745.56,124637.16,3362.5481 -12890,15881,28685,28684,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,8.2870293,7.8829403,0,14,-17,-78.703117,0,2,2,2019,17,5,35,47,1,5,0,12.451324,12.451324,0,0,0,0,0,1,1,0,1.9587272,0,38.45,60.79,53,55,5,1,1,0,0,8,10,4,0,1467.6666,1100038.9,783208.06,354745.56,124637.16,3362.5481 -12891,15882,28686,28689,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.7477784,7.134799,0,18,-7,-21.099838,0,-9,1,2019,9,0,31,20,1,0,0,8.1942892,8.1942892,0,0,0,0,0,1,1,0,0,0,47.07,53.97,31.84,27.72,3.333333333333333,1,1,0,1,4,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 -12891,15882,28687,-9,28686,28689,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.8854,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 -12891,15882,28688,-9,28686,28689,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.88031,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 -12891,15882,28689,28686,-9,-9,1,1,46,0,2,0,2,2,-9,0,1,7.3812923,7.2848849,0,18,7,-79.509315,0,-9,2,2019,24,12,30,60,1,12,0,5.1992588,5.1992588,0,0,0,0,0,1,1,0,0,0,31.84,27.72,47.07,53.97,0,1,1,0,1,9,7,3,1,435.75,215453.89,88225.258,0,0,2554.9897 -12892,15883,28690,28691,-9,-9,1,1,61,0,0,0,2,2,-9,0,1,0,4.9732924,5.3199835,39,2,71.288422,0,2,2,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,0,1,5.6344728,5.6206961,34.64,15.66,48.87,58.55,3.333333333333333,1,1,0,0,1,9,2,1,305,352943.84,74590.203,0,0,1966.1323 -12892,15883,28691,28690,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.2483525,5.1244164,39,-2,24.941338,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,74.5,1,0,1,0,5.0083137,48.87,58.55,34.64,15.66,8.333333333333334,1,1,0,0,8,9,2,1,305,352943.84,74590.203,0,0,1966.1323 -12893,15884,28692,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-991.82672,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,2.2644076,0,13.876268,0,1,1,0,0,0,29.61,21.77,-9,-9,5,1,1,0,0,0,13,2,0,171,0,0,0,0,720.98309 -12894,15885,28693,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.4012299,8.3108912,0,0,-1141.3591,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,38.967445,0,0,1,1,0,.81996655,7.8598819,68.65000000000001,26.35,-9,-9,10,1,1,0,0,1,2,4,1,229,998639.13,458213.03,282942.41,0,2181.1792 -12895,15886,28694,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.7168,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.24,35.51,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,536,105460.23,0,0,0,886.02917 -12896,15887,28695,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,1,0,4.6280141,4.3730292,0,0,-999.66382,0,3,2,2019,12,3,0,0,4,3,0,0,0,1,3.510483,1.7611492,25.723856,0,1,1,0,4.7164741,4.9339695,54.2,17.99,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,1768,121129.89,-51149.18,0,0,951.56323 -12897,15888,28696,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3561363,8.3478003,0,0,0,-1081.2181,0,2,2,2019,11,3,30,30,1,3,0,16.242167,16.242167,0,0,0,0,0,0,0,0,0,0,47.68,55.12,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,783,328419.69,-53037.016,213994.44,94282.563,1952.361 -12897,15889,28697,-9,28696,-9,1,0,29,0,0,0,2,2,-9,0,4,7.3900414,7.1594067,0,0,0,-1077.0435,0,2,-9,2019,12,0,29,39,1,0,1,5.8507771,5.8507771,0,0,0,0,0,0,0,0,2.1324286,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,5281,124445.7,26458.686,0,0,1087.4823 -12897,15890,28698,-9,28696,-9,1,1,27,0,0,0,2,2,-9,0,3,7.5871415,7.4918022,0,0,0,-975.09198,0,2,-9,2019,12,0,35,35,1,2,1,5.1433606,5.1433606,0,0,0,0,0,0,0,0,7.4259,0,46.89,54.32,-9,-9,6.666666666666667,1,1,0,0,11,11,3,1,277,-119651.2,56077.113,0,0,2067.6895 -12898,15891,28699,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.4325266,8.40732,0,0,0,-987.58099,0,2,2,2019,10,0,46,45,1,0,0,11.834602,11.834602,0,0,0,0,14.5,1,1,0,0,0,47.21,55.3,-9,-9,6.666666666666667,1,1,0,0,5,2,4,0,177,18431.643,179756.02,182269.13,61229.566,1822.8678 -12899,15892,28700,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.704812,8.7880087,0,0,0,-1015.8388,0,-9,-9,2019,7,0,24,23,1,0,0,24.431406,24.431406,0,0,0,0,0,1,1,0,2.5144565,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,10,5,5,0,234,175940.81,-33755.652,12416.635,6207.9717,4536.4717 -12899,15893,28701,-9,28700,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3563356,8.0216341,0,0,0,-992.06439,0,2,2,2019,10,0,40,40,1,1,1,8.1482887,8.1482887,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,6.666666666666667,4,2,0,0,7,5,4,0,735,-126650.08,99363.07,0,0,1503.681 -12900,15894,28702,-9,28704,28703,1,1,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1098.7249,-9,2,3,2019,14,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,34.15,59.94,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,365,426472.84,0,0,0,646.93311 -12900,15895,28703,28704,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,2,5,0,-9,3,3,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,1.6942804,0,35.19,40.68,47.5,24.1,5,1,1,0,0,0,2,1,0,537.5,201019.38,0,172537.64,0,1253.7288 -12900,15895,28704,28703,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,2,-5,0,-9,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,3.125664,0,47.5,24.1,35.19,40.68,1.666666666666667,1,1,0,1,0,2,1,0,537.5,201019.38,0,172537.64,0,1253.7288 -12901,15896,28705,28707,-9,-9,1,0,28,1,3,0,2,2,-9,0,4,6.6558971,6.246799,0,4,1,-70.157059,0,-9,-9,2019,19,6,12,12,1,6,0,7.3397489,7.3397489,0,0,0,0,0,1,1,0,0,0,32.17,66.08,39.18,52.93,8.333333333333334,1,1,0,0,6,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 -12901,15896,28706,-9,28705,28707,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.13062,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 -12901,15896,28707,28705,-9,-9,1,1,27,1,3,0,2,2,-9,0,3,8.3692694,7.9138479,0,4,-1,57.532085,0,-9,-9,2019,8,0,42,37,1,0,0,12.621056,12.621056,0,0,0,0,0,1,1,0,0,0,39.18,52.93,32.17,66.08,8.333333333333334,1,1,0,0,5,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 -12901,15896,28708,-9,28705,28707,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.1091,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 -12901,15896,28709,-9,28705,28707,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.2533,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,0,394.60001,-338055.28,48082.074,0,0,2903.4409 -12902,15897,28710,-9,28712,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.4764,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,1,0,650.33331,53062.762,0,0,0,1398.7358 -12902,15897,28711,-9,28712,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.08594,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,1,0,650.33331,53062.762,0,0,0,1398.7358 -12902,15897,28712,-9,-9,-9,1,0,25,0,2,0,2,2,-9,1,2,0,0,0,0,0,-988.20477,0,3,-9,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,35.24,-9,-9,6.666666666666667,4,2,0,0,0,5,1,0,650.33331,53062.762,0,0,0,1398.7358 -12903,15898,28713,28714,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0362935,7.106689,0,7,-5,70.796204,0,3,3,2019,9,0,20,20,1,0,0,8.207716,8.207716,0,0,0,0,0,0,0,0,7.4351573,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,13,5,1,520,757742.13,583134.13,167420.97,28840.162,3984.8689 -12903,15898,28714,28713,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.6456022,8.6450005,0,7,5,6.794744,0,3,3,2019,8,0,40,40,1,0,0,17.821463,17.821463,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,8,13,5,1,520,757742.13,583134.13,167420.97,28840.162,3984.8689 -12903,15899,28715,-9,28713,28714,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-834.08557,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.22073235,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,98,342933.22,0,0,0,-17.168333 -12904,15900,28716,28717,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.0251179,8.9197779,0,8,1,-86.112206,0,2,2,2019,13,2,48,42,1,2,0,19.428469,19.428469,0,0,0,0,7,0,0,0,0,0,53.68,49.68,40.97,32.79,8.333333333333334,1,1,0,0,9,11,5,1,562,1473833.6,1041499.9,499979.63,70610.461,2935.7554 -12904,15900,28717,28716,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.8963389,7.6870728,0,8,-1,15.629979,0,3,2,2019,12,0,40,40,1,0,0,7.6601257,7.6601257,0,0,0,0,0,0,0,0,0,0,40.97,32.79,53.68,49.68,5,1,1,0,0,9,11,5,1,562,1473833.6,1041499.9,499979.63,70610.461,2935.7554 -12905,15901,28718,28719,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,2.3830225,2.8631675,8,-2,-19.619219,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8052137,2.7728348,55.08,48.98,54.2,57.49,8.333333333333334,1,1,0,0,1,9,2,1,921,818941.88,526857,267167.91,0,1796.7614 -12905,15901,28719,28718,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.2815032,6.1511273,8,2,-4.718503,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6502767,6.5827188,54.2,57.49,55.08,48.98,8.333333333333334,1,1,0,0,1,9,2,1,921,818941.88,526857,267167.91,0,1796.7614 -12906,15902,28720,28721,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.5777683,8.7041321,62,6,137.29124,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.7763567,8.7520809,53.3,42.91,46.8,57.03,8.333333333333334,1,1,0,0,0,4,5,1,1308.5,1318255,895146,372047.56,0,13054.373 -12906,15902,28721,28720,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.0113721,7.4979258,62,-6,26.945671,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,8.7448521,7.1723967,46.8,57.03,53.3,42.91,8.333333333333334,1,1,0,0,0,4,5,1,1308.5,1318255,895146,372047.56,0,13054.373 -12907,15903,28722,28723,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.5606194,8.6972685,0,33,0,36.684685,0,-9,-9,2019,19,8,45,45,1,8,0,16.334877,16.334877,0,0,0,0,14.5,0,0,0,4.0716944,0,40.75,53.94,48.45,57.49,8.333333333333334,1,1,0,0,12,13,5,1,917,626471.38,506823.72,290452.25,140960.09,3956.9766 -12907,15903,28723,28722,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5964317,8.7741356,5.7339344,3,0,-47.160873,0,-9,-9,2019,8,0,35,40,1,0,0,20.087448,20.087448,0,0,0,0,14.5,0,0,0,5.5760241,6.2140937,48.45,57.49,40.75,53.94,8.333333333333334,1,1,0,0,12,13,5,1,917,626471.38,506823.72,290452.25,140960.09,3956.9766 -12908,15904,28724,28725,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.2115574,5.7739067,6,-1,66.212952,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.3571122,5.6805391,44.7,52.22,52.1,34.28,8.333333333333334,1,1,0,0,0,11,3,1,471.5,715426.63,353294.81,244949.84,0,2604.9556 -12908,15904,28725,28724,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.5824661,7.7753782,6,1,96.006821,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,5.3807316,8.0825462,52.1,34.28,44.7,52.22,6.666666666666667,1,1,0,0,0,11,3,1,471.5,715426.63,353294.81,244949.84,0,2604.9556 -12909,15905,28726,28727,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.8179092,9.2061768,0,6,1,-38.295036,0,3,3,2019,6,0,35,45,1,0,0,24.187117,24.187117,0,0,0,0,2,0,0,0,5.8627863,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,9,11,5,1,819.5,1210922.1,666181.69,309435.75,0,3869.6399 -12909,15905,28727,28726,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,6.4785042,6.5055451,0,6,-1,-19.022839,0,3,2,2019,8,0,25,25,1,0,0,2.5183499,2.5183499,0,0,0,0,7,0,0,0,6.6878471,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,7,11,5,1,819.5,1210922.1,666181.69,309435.75,0,3869.6399 -12910,15906,28728,28729,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.806457,4.7962909,10,-2,-50.421486,0,3,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.5917261,5.1120987,45.94,42.51,48.79,51.9,8.333333333333334,1,1,0,0,8,11,2,1,572.5,424258.19,204388.84,100589.32,0,1750.8671 -12910,15906,28729,28728,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.9367156,6.6312737,10,2,17.818905,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.7204658,6.7390299,48.79,51.9,45.94,42.51,8.333333333333334,1,1,0,0,0,11,2,1,572.5,424258.19,204388.84,100589.32,0,1750.8671 -12911,15907,28730,-9,28733,28732,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.2002,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,4,3,1,315.25,-229693.81,0,0,0,1424.2419 -12911,15907,28731,-9,28733,28732,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.89075,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,315.25,-229693.81,0,0,0,1424.2419 -12911,15907,28732,28733,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.2841835,8.1488495,0,6,5,67.866516,0,2,2,2019,9,0,35,35,1,0,0,11.714684,11.714684,0,0,0,0,0,1,1,0,0,0,48.15,54.77,45.56,60.26,3.333333333333333,2,3,0,0,12,4,3,1,315.25,-229693.81,0,0,0,1424.2419 -12911,15907,28733,28732,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,6,-5,70.256065,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,48.15,54.77,8.333333333333334,2,3,0,0,5,4,3,1,315.25,-229693.81,0,0,0,1424.2419 -12912,15908,28734,28735,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,38,-8,-32.542828,0,2,2,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,12.09,60.87,44.96,8.333333333333334,1,1,0,0,0,4,2,1,239,239474.64,107617.89,0,0,1808.7616 -12912,15908,28735,28734,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.5060444,6.3051362,38,8,121.32655,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.7150302,6.2569771,60.87,44.96,51.17,12.09,8.333333333333334,1,1,0,0,0,4,2,1,239,239474.64,107617.89,0,0,1808.7616 -12913,15909,28736,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.0983524,8.0803165,0,0,0,-1184.5815,0,2,2,2019,29,10,34,35,1,10,0,7.2875605,7.2875605,0,0,0,0,0,0,0,0,0,0,35.05,62.72,-9,-9,0,1,1,0,0,11,2,4,1,509,189299.53,0,0,0,1105.4612 -12914,15910,28737,28738,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,25,7,-121.01632,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,52.99,51.28,57.33,53.46,8.333333333333334,1,1,0,0,8,8,5,1,1676.5,1593701.8,892151,580982.56,0,3909.7324 -12914,15910,28738,28737,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.1311684,9.3419065,0,25,-7,-13.825732,0,-9,-9,2019,7,0,45,45,1,0,0,28.372005,28.372005,0,0,0,0,7,0,0,0,0,0,57.33,53.46,52.99,51.28,8.333333333333334,1,1,0,0,9,8,5,1,1676.5,1593701.8,892151,580982.56,0,3909.7324 -12914,15911,28739,-9,28738,28737,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1020.9309,-9,1,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,27,0,0,0,0,0,45,54,-9,-9,8.333333333333334,1,1,0,0,3,8,1,1,1597,0,0,0,0,0 -12914,15912,28740,-9,28738,28737,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1041.8705,-9,1,2,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,5.3877053,0,60.42,54.81,-9,-9,8.333333333333334,4,2,0,1,3,8,1,1,779,124878.3,0,0,0,598.7395 -12915,15913,28741,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.0081983,7.0892291,0,0,-984.70105,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8970265,6.8857656,52.71,47.23,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,455,101160.6,0,129390.02,0,1325.9084 -12916,15914,28742,-9,28744,28743,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-937.68445,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,608.33331,-336418.06,31198.232,0,0,2791.6863 -12916,15914,28743,28744,-9,-9,1,1,37,0,1,0,3,3,-9,0,5,8.5115948,8.8227978,0,16,-2,-65.241608,0,2,2,2019,7,1,58,50,1,1,0,8.6819744,8.6819744,0,0,0,0,0,1,1,0,3.1317542,0,64.66,50.23,62.39,56.71,10,1,1,0,0,12,9,4,1,608.33331,-336418.06,31198.232,0,0,2791.6863 -12916,15914,28744,28743,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,7.771853,7.8311348,0,16,2,-32.382309,0,2,2,2019,8,0,40,40,1,0,0,9.4449625,9.4449625,0,0,0,0,0,1,1,0,2.7824264,0,62.39,56.71,64.66,50.23,10,1,1,0,0,8,9,4,1,608.33331,-336418.06,31198.232,0,0,2791.6863 -12917,15915,28745,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1066.5649,0,3,3,2019,17,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,25.47,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,810,276257.84,0,0,0,734.4295 -12918,15916,28746,-9,28748,28747,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.9904,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,546.66669,115287.94,-14447.607,144656.44,48680.582,2566.0042 -12918,15916,28747,28748,-9,-9,1,1,49,1,1,0,3,3,-9,0,2,7.6014314,7.4419751,0,7,6,-143.78488,0,3,2,2019,19,7,26,34,1,7,0,8.5931015,8.5931015,0,0,0,0,0,0,0,0,0,0,50.54,33.6,50,55,3.333333333333333,1,1,0,0,8,4,4,1,546.66669,115287.94,-14447.607,144656.44,48680.582,2566.0042 -12918,15916,28748,28747,-9,-9,1,0,43,1,1,0,1,1,-9,0,4,8.6348438,8.9364719,0,7,-6,-173.26947,-9,-9,-9,2019,10,0,40,0,1,1,0,14.727459,14.727459,0,0,0,0,0,0,0,0,0,0,50,55,50.54,33.6,8,1,1,0,0,1,4,4,1,546.66669,115287.94,-14447.607,144656.44,48680.582,2566.0042 -12919,15917,28749,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.6993093,8.5619221,0,0,0,-1028.7007,0,2,3,2019,8,0,52,47,1,0,0,14.639948,14.639948,0,0,0,0,0,1,1,0,5.2262998,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,251,-60821.297,0,359058.03,31190.27,1757.2976 -12920,15918,28750,28751,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.6075096,9.7257671,0,9,-12,-6.5060954,0,3,2,2019,1,0,25,25,1,0,0,71.535172,71.535172,0,0,0,.18654859,2,0,0,0,0,0,58.15,52.91,60.52,53.2,6.666666666666667,1,1,0,0,8,10,5,1,881,1785605,1222971.3,536339,0,8224.8447 -12920,15918,28751,28750,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5666637,8.7280331,0,9,12,-48.957558,0,2,2,2019,7,0,45,44,1,0,0,12.430018,12.430018,0,0,0,0,0,0,0,0,4.0908947,0,60.52,53.2,58.15,52.91,6.666666666666667,1,1,0,0,9,10,5,1,881,1785605,1222971.3,536339,0,8224.8447 -12921,15919,28752,28753,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,3.8541708,3.8392193,10,8,-76.216644,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1851492,3.6893256,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,2,5,1,1246.5,1417021.1,1105941.6,272902.81,0,6914.1284 -12921,15919,28753,28752,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,9.4417133,9.068244,10,-8,11.627275,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3175535,9.148777,57.16,56.15,57.16,56.15,10,1,1,0,0,0,2,5,1,1246.5,1417021.1,1105941.6,272902.81,0,6914.1284 -12922,15920,28754,28755,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7129555,6.6362066,44,2,35.9832,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.6510633,6.7566447,51.24,58.84,53.39,52.35,8.333333333333334,1,1,0,0,2,10,3,1,902,998527.13,619392.69,352310.69,0,2763.4014 -12922,15920,28755,28754,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.5256901,7.2521739,44,-2,74.387863,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7586629,7.4998055,53.39,52.35,51.24,58.84,8.333333333333334,1,1,0,0,2,10,3,1,902,998527.13,619392.69,352310.69,0,2763.4014 -12923,15921,28756,-9,28757,28759,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.72321,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 -12923,15921,28757,28759,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,6.6038823,6.5122061,0,3,-18,-16.948849,0,3,2,2019,9,0,14,14,1,0,0,5.6634784,5.6634784,0,0,0,0,0,1,0,1,0,0,52.65,51.64,39.15,41.42,6.666666666666667,2,3,0,0,6,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 -12923,15921,28758,-9,28757,28759,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1025.5187,-9,2,2,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,0,1,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 -12923,15921,28759,28757,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,0,0,0,3,18,-161.26505,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,52.65,51.64,6.666666666666667,1,1,1,0,0,8,2,0,910.75,-35101.617,51724.984,0,0,1546.3098 -12924,15922,28760,-9,28761,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.12036,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,0,1081.5,-16414.635,79891.867,118376.77,1511.104,3971.1963 -12924,15922,28761,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,9.0059633,8.974246,7.4733725,0,0,-1068.8768,0,-9,-9,2019,12,0,60,58,1,0,0,16.489891,16.489891,0,0,0,0,0,1,1,0,5.5976944,7.4850545,56.18,45.61,-9,-9,8.333333333333334,1,1,0,0,7,11,5,0,1081.5,-16414.635,79891.867,118376.77,1511.104,3971.1963 -12925,15923,28762,-9,28763,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.19177,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,1604.6666,-112268.15,0,0,0,2217.3806 -12925,15923,28763,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.6353211,7.4533057,0,0,0,-998.48395,0,1,2,2019,5,1,27,0,1,1,0,8.8395262,8.8395262,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,4,2,0,0,2,6,3,0,1604.6666,-112268.15,0,0,0,2217.3806 -12925,15923,28764,-9,28763,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.5318,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,1604.6666,-112268.15,0,0,0,2217.3806 -12926,15924,28765,28766,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.1271391,7.998436,0,42,-4,11.602283,0,3,3,2019,10,1,63,70,1,1,0,5.0015578,5.0015578,0,0,0,0,2,1,1,0,6.7404814,0,49.84,44.96,60.29,52.11,8.333333333333334,1,1,0,0,8,9,4,1,1158,413096,142591.72,322066.63,0,4845.2676 -12926,15924,28766,28765,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.4038324,8.0589314,0,42,4,103.74528,0,3,3,2019,8,0,20,20,1,0,0,18.742828,18.742828,0,0,0,0,2,1,1,0,6.0736046,0,60.29,52.11,49.84,44.96,6.666666666666667,1,1,0,0,8,9,4,1,1158,413096,142591.72,322066.63,0,4845.2676 -12927,15925,28767,-9,28768,-9,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-912.50739,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,11,5,0,1008,46881.691,59778.902,97975.359,80584.43,4738.3784 -12927,15925,28768,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,9.1511583,9.2047119,7.6901565,0,0,-980.20697,0,-9,-9,2019,7,0,80,70,1,0,0,12.254267,12.254267,0,0,0,0,0,1,1,0,7.1638923,7.4172297,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,5,11,5,0,1008,46881.691,59778.902,97975.359,80584.43,4738.3784 -12928,15926,28769,-9,28770,28772,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.46155,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,519.66669,233725.53,54609.555,121430.39,0,1610.5583 -12928,15926,28770,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,6.933001,6.5504842,0,0,0,-1021.2792,0,2,2,2019,17,5,25,35,1,5,0,5.5211492,5.5211492,0,0,0,0,0,1,1,0,0,0,39.65,56.19,-9,-9,5,1,1,0,0,9,12,2,0,519.66669,233725.53,54609.555,121430.39,0,1610.5583 -12928,15926,28771,-9,28770,28772,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.712,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,519.66669,233725.53,54609.555,121430.39,0,1610.5583 -12928,15927,28772,-9,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,7.7297769,7.53017,0,0,0,-1000.6109,0,1,1,2019,26,10,40,55,1,10,0,4.1885324,4.1885324,0,0,0,0,0,1,1,0,0,0,30.34,65.52,-9,-9,3.333333333333333,1,1,0,1,9,12,2,0,278,69154.664,146981.86,0,0,606.50842 -12929,15928,28773,28774,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,6.3903008,6.3024344,0,45,-4,-73.07518,-9,-9,3,2019,11,0,35,0,1,0,0,3.059212,3.059212,0,0,0,0,0,1,1,0,0,0,52.05,36.56,49.54,53.32,10,1,1,0,0,10,9,2,1,1443,1284607.9,309118.84,774923.81,0,866.82684 -12929,15928,28774,28773,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.7667093,5.7493463,46,4,-90.260178,-9,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.769465,49.54,53.32,52.05,36.56,8.333333333333334,1,1,0,0,8,9,2,1,1443,1284607.9,309118.84,774923.81,0,866.82684 -12930,15929,28775,28776,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,8.5573359,8.5735941,0,13,9,23.802448,0,2,1,2019,23,9,41,37,1,9,0,17.824888,17.824888,0,0,0,0,0,1,1,0,0,0,23.7,36.42,43.43,54.3,8.333333333333334,2,3,0,0,11,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 -12930,15929,28776,28775,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7746696,8.5157471,0,13,0,112.60052,0,3,2,2019,12,2,70,60,1,2,0,9.1879549,9.1879549,0,0,0,0,2,1,1,0,1.0340495,0,43.43,54.3,23.7,36.42,6.666666666666667,2,3,0,0,7,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 -12930,15929,28777,-9,28776,28775,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.6624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 -12930,15929,28778,-9,28776,28775,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.4537,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,8,5,0,809.75,1638641.5,618752.31,774943.44,26934.852,5057.854 -12931,15930,28779,28780,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.045414,8.7600193,0,6,0,-19.716204,0,-9,-9,2019,11,2,38,42,1,2,0,24.078245,24.078245,0,0,0,0,0,0,0,0,8.2771378,0,61.94,37.61,51.24,58.84,8.333333333333334,1,1,0,0,4,8,5,1,492,784313.38,82257.117,670180.38,64732.895,7133.7168 -12931,15930,28780,28779,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.1310186,9.1910505,0,6,9,62.734913,0,2,-9,2019,10,0,37,35,1,0,0,29.789087,29.789087,0,0,0,0,0,0,0,0,0,0,51.24,58.84,61.94,37.61,8.333333333333334,1,1,0,0,12,8,5,1,492,784313.38,82257.117,670180.38,64732.895,7133.7168 -12932,15931,28781,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,8.0741243,7.8410139,0,0,0,-1105.8314,0,1,1,2019,12,0,26,16,1,0,0,11.559233,11.559233,0,0,0,0,2,0,0,0,2.4725907,0,39.32,54.04,-9,-9,1.666666666666667,1,1,0,0,4,1,3,0,284,720582.44,557612.94,329467.72,0,1122.0408 -12933,15932,28782,28783,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,46,-4,-59.758583,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,860.5,1418404.4,835284.38,309452.22,0,4054.2686 -12933,15932,28783,28782,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.7375565,8.5172367,46,4,-47.406754,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3442078,8.9102249,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,860.5,1418404.4,835284.38,309452.22,0,4054.2686 -12934,15933,28784,28785,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.4552164,6.724853,6,5,19.523602,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5810285,6.7620659,64.05,50.24,54.26,30.74,10,1,1,0,0,0,7,2,1,293,560369.06,-2782.6836,401113.13,0,1649.8923 -12934,15933,28785,28784,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,4.0619645,4.2487969,6,-5,-13.390258,0,3,2,2019,12,2,0,10,4,2,0,0,0,1,0,0,0,0,1,1,0,3.979815,4.0855432,54.26,30.74,64.05,50.24,8.333333333333334,1,1,0,0,7,7,2,1,293,560369.06,-2782.6836,401113.13,0,1649.8923 -12935,15934,28786,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1035.2686,0,3,-9,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,27.38,38.97,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,977.5,135359.34,0,0,0,1472.9431 -12935,15934,28787,-9,28786,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-980.90332,0,2,-9,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,11,2,0,977.5,135359.34,0,0,0,1472.9431 -12936,15935,28788,28789,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.6007519,8.6357288,37,0,12.253776,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0497656,8.4871473,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,4,6,5,1,591,1495049,970442.38,332424,0,6970.6797 -12936,15935,28789,28788,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.9215517,9.0716543,7.7547011,37,0,-28.193853,0,2,1,2019,7,0,48,50,1,0,0,16.851751,16.851751,0,0,0,0,7,0,0,0,6.0933561,7.5504761,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,591,1495049,970442.38,332424,0,6970.6797 -12937,15936,28790,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.6424427,5.9969211,0,0,-885.89868,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1313128,50,47,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1849,-54297.297,24114.643,0,0,731.50977 -12938,15937,28791,28792,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.9288983,7.2609606,58,13,103.06819,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9264159,52.81,43.6,57.06,57.76,8.333333333333334,1,1,0,0,0,4,2,1,1271,416289.94,214416.78,183849.84,0,1648.9707 -12938,15937,28792,28791,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,3.3054557,3.6246369,58,-13,59.094444,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,3.3970017,57.06,57.76,52.81,43.6,8.333333333333334,1,1,0,0,0,4,2,1,1271,416289.94,214416.78,183849.84,0,1648.9707 -12939,15938,28793,-9,-9,-9,1,1,56,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1047.1471,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,3.333333333333333,3,4,0,1,1,9,1,0,179,-359821.72,79141.141,0,0,1160.0701 -12940,15939,28794,28795,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,65,-1,-102.26472,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,40.62,29.22,8.333333333333334,1,1,0,0,0,1,2,1,369.5,-126933.73,-92028.164,197754.05,0,1440.4954 -12940,15939,28795,28794,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,6.2670236,6.5128732,65,1,18.61054,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,3.7856188,16.889511,22.606289,0,1,1,0,0,6.3275437,40.62,29.22,56.77,52.22,6.666666666666667,1,1,0,0,0,1,2,1,369.5,-126933.73,-92028.164,197754.05,0,1440.4954 -12941,15940,28796,28797,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.2953806,8.9781227,8.4627657,39,0,-23.58984,0,2,2,2019,7,0,30,30,1,0,0,18.454548,18.454548,0,0,0,0,0,0,0,0,4.1970577,8.1300888,52.38,50.07,62.49,55.09,10,1,1,0,0,9,10,5,1,877,1832516,1204920.1,474834.22,0,4689.4512 -12941,15940,28797,28796,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.2672701,7.6459274,0,8,0,-39.074619,-9,-9,-9,2019,7,0,47,0,1,0,0,8.281868,8.281868,0,0,0,0,0,0,0,0,3.9743712,0,62.49,55.09,52.38,50.07,8.333333333333334,1,1,0,0,9,10,5,1,877,1832516,1204920.1,474834.22,0,4689.4512 -12942,15941,28798,-9,28800,28799,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6709,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 -12942,15941,28799,28800,-9,-9,1,1,23,1,2,0,2,2,-9,0,5,8.6041384,8.1603498,0,2,0,3.0625041,0,-9,-9,2019,9,0,41,50,1,0,0,14.28161,14.28161,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 -12942,15941,28800,28799,-9,-9,1,0,23,1,2,0,2,2,-9,0,4,0,0,0,2,0,-42.13496,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 -12942,15941,28801,-9,28800,28799,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.6663,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,553.25,-212771.38,13055.708,79144.086,86649.438,2000.5685 -12943,15942,28802,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.5149693,6.9750776,0,0,-1154.4291,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.7030439,53,47,-9,-9,7,1,1,0,0,0,13,2,1,750,195387.45,995.23547,138483.3,0,1490.2379 -12944,15943,28803,28804,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.6034217,6.2829223,7,-3,-96.776405,0,3,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,3.3886836,6.7605066,35.2,46,57.16,56.15,8.333333333333334,1,1,0,0,2,9,3,1,335.5,1078245.9,612943.56,393596.63,0,3559.9976 -12944,15943,28804,28803,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.7013626,7.7476954,7,3,-96.295273,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.8048134,7.6125131,57.16,56.15,35.2,46,8.333333333333334,1,1,0,0,4,9,3,1,335.5,1078245.9,612943.56,393596.63,0,3559.9976 -12945,15944,28805,28806,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.0622454,6.113246,50,-2,-219.60855,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.59605592,6.3999057,44.83,55.13,60.12,54.8,5,1,1,0,0,6,9,2,1,445,597773.5,211322.38,498378.78,0,2357.9963 -12945,15944,28806,28805,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.11306,6.3060546,50,2,-32.284897,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3438873,5.9661198,60.12,54.8,44.83,55.13,6.666666666666667,1,1,0,0,4,9,2,1,445,597773.5,211322.38,498378.78,0,2357.9963 -12946,15945,28807,28808,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9276886,8.160923,50,-4,1.076301,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.0268016,7.7007504,50,46,53,47,7,1,1,0,0,9,8,4,1,523.5,1024884.6,476068,599463.44,0,3940.0889 -12946,15945,28808,28807,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.1454754,8.0233479,10,4,74.318504,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.1722958,7.9813991,53,47,50,46,7,1,1,0,0,0,8,4,1,523.5,1024884.6,476068,599463.44,0,3940.0889 -12947,15946,28809,28810,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-5,-68.033005,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6155949,0,58.15,52.91,51.05,41.44,10,1,1,0,0,0,13,4,1,264,1220683.4,560927.88,255093.84,0,5134.2271 -12947,15946,28810,28809,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3816681,8.529767,47,5,50.937996,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.9540157,8.3125992,51.05,41.44,58.15,52.91,8.333333333333334,1,1,0,0,0,13,4,1,264,1220683.4,560927.88,255093.84,0,5134.2271 -12948,15947,28811,28812,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.0522952,7.5780444,0,31,-8,-17.354443,0,2,2,2019,11,0,33,30,1,0,0,5.441123,5.441123,0,0,0,0,0,0,0,0,0,0,49.04,55.86,50.83,38.69,8.333333333333334,1,1,0,0,9,2,4,0,751,401262.56,75817.734,190535.55,37855.223,2070.0942 -12948,15947,28812,28811,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1714888,7.9084373,0,31,8,-54.618084,0,-9,-9,2019,10,0,40,51,1,0,0,9.8924131,9.8924131,0,0,0,0,0,0,0,0,0,0,50.83,38.69,49.04,55.86,8.333333333333334,1,1,0,0,9,2,4,0,751,401262.56,75817.734,190535.55,37855.223,2070.0942 -12948,15948,28813,28814,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,0,0,0,2,9,-103.85547,0,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,30.42,67.22,55.76,52.64,8.333333333333334,1,1,1,1,0,2,2,0,970,129536.8,0,0,0,903.78229 -12948,15948,28814,28813,28811,28812,1,0,26,0,0,0,2,2,-9,0,4,7.2853546,7.2975979,0,2,0,30.571665,0,2,2,2019,9,2,40,25,1,2,0,3.5643115,3.5643115,0,0,0,0,0,0,0,0,0,0,55.76,52.64,30.42,67.22,6.666666666666667,1,1,0,0,6,2,2,0,970,129536.8,0,0,0,903.78229 -12949,15949,28815,-9,28816,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.45172,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,545.5,-202497.03,40252.234,0,0,1193.6064 -12949,15949,28816,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.2457528,5.976388,0,0,0,-977.76489,0,-9,-9,2019,7,0,16,0,1,0,0,3.3425105,3.3425105,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,2,3,0,0,6,2,2,0,545.5,-202497.03,40252.234,0,0,1193.6064 -12949,15950,28817,-9,28816,-9,1,0,24,0,1,0,1,1,-9,0,3,8.0753603,8.1297283,0,0,0,-1056.3595,0,2,-9,2019,6,0,35,50,1,0,1,10.406405,10.406405,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,3,2,4,0,709,109139.66,88080.602,0,0,1829.814 -12949,15951,28818,-9,28816,-9,1,1,20,0,1,0,2,2,-9,0,4,5.8329124,5.5355239,0,0,0,-914.17407,0,2,-9,2019,11,1,6,13,1,1,1,5.4261842,5.4261842,0,0,0,0,0,1,1,0,0,0,45.69,57.19,-9,-9,8.333333333333334,2,3,0,0,4,2,2,0,553,-241640.3,79522.578,0,0,412.9946 -12950,15952,28819,28820,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,38,0,-10.459092,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,9.4075699,0,2,1,1,0,0,0,43.21,22.28,51.5,26.51,8.333333333333334,1,1,0,0,0,10,2,1,300,397934.25,50611.656,280766.94,0,1107.5552 -12950,15952,28820,28819,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.7993803,6.0798116,38,0,-40.882427,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,7.3557734,8.1664782,69.829414,7,1,1,0,0,6.1601372,51.5,26.51,43.21,22.28,6.666666666666667,1,1,0,0,0,10,2,1,300,397934.25,50611.656,280766.94,0,1107.5552 -12951,15953,28821,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1032.8212,0,-9,-9,2019,26,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,0,0,28.94,26.24,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,385,-113920.72,0,0,0,607.18109 -12952,15954,28822,28824,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,10.007253,9.6094971,0,8,-3,30.396481,0,3,3,2019,8,0,40,42,1,0,0,43.269249,43.269249,0,0,0,0,0,0,0,0,6.956296,0,52.31,58.29,34.18,63.01,8.333333333333334,1,1,0,0,9,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 -12952,15954,28823,-9,28824,28822,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.91724,-9,1,2,2019,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,1,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 -12952,15954,28824,28822,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,7.111733,7.1684642,0,8,3,51.796116,0,2,1,2019,22,10,30,15,1,10,0,5.8495102,5.8495102,0,0,0,0,0,0,0,0,0,0,34.18,63.01,52.31,58.29,5,1,1,0,0,9,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 -12952,15954,28825,-9,28824,28822,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-913.28528,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 -12952,15954,28826,-9,28824,28822,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-849.84973,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,484.39999,463934.88,255077.63,266941.91,11175.371,10338.079 -12953,15955,28827,28828,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,26,-3,-44.400803,-9,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.56,46.4,67.57000000000001,13.49,5,1,1,0,0,4,7,2,1,323,295275.81,134435.8,200138.22,0,2101.1802 -12953,15955,28828,28827,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.995687,6.7256622,26,3,173.04768,-9,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,13.855323,0,0,1,1,0,6.6179757,6.9286647,67.57000000000001,13.49,45.56,46.4,6.666666666666667,1,1,0,0,0,7,2,1,323,295275.81,134435.8,200138.22,0,2101.1802 -12954,15956,28829,28830,-9,-9,1,0,58,0,0,0,1,1,-9,1,2,8.6380281,8.9568863,0,30,-3,48.665646,0,2,2,2019,8,0,58,35,1,0,0,11.127755,11.127755,0,0,0,0,27,1,1,0,2.5601711,0,63.41,29.17,57.16,56.15,6.666666666666667,1,1,0,0,10,7,5,1,1397.5,1593189.3,762605.31,588033.69,0,5120.3447 -12954,15956,28830,28829,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.8411283,8.7883892,30,3,-83.725746,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,4.4345293,8.3818445,57.16,56.15,63.41,29.17,10,1,1,0,0,8,7,5,1,1397.5,1593189.3,762605.31,588033.69,0,5120.3447 -12954,15957,28831,-9,28829,28830,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1047.3783,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,7,1,1,727,-286584.53,0,0,0,0 -12955,15958,28832,28833,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.8894925,8.100256,7.3670053,8,4,9.4116201,0,3,3,2019,7,0,10,10,1,0,0,10.558396,10.558396,0,0,0,0,0,0,0,0,4.0719509,7.5068521,61.19,39.41,50.57,52.35,10,1,1,0,0,10,8,4,1,429,654621.5,226484.16,422287.63,0,2083.2766 -12955,15958,28833,28832,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.7880211,7.4228373,3.6880269,8,-4,45.068176,0,-9,-9,2019,8,0,22,19,1,0,0,9.635191,9.635191,0,0,0,0,0,0,0,0,4.248446,3.7710497,50.57,52.35,61.19,39.41,0,1,1,0,0,10,8,4,1,429,654621.5,226484.16,422287.63,0,2083.2766 -12956,15959,28834,28835,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.6883044,6.3400817,9,-1,66.544044,0,3,1,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.2675433,5.8260355,51.83,57.2,62.49,55.09,8.333333333333334,1,1,0,0,0,11,3,1,814,1633853,828377.38,235070.83,0,3216.6729 -12956,15959,28835,28834,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.2071543,8.2451258,9,1,-162.62537,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4631884,7.8817139,62.49,55.09,51.83,57.2,8.333333333333334,1,1,0,0,1,11,3,1,814,1633853,828377.38,235070.83,0,3216.6729 -12957,15960,28836,-9,-9,28837,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8821,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,589,980847.88,682871,362863.69,0,1110.9938 -12957,15960,28837,-9,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,8.0292511,7.9030538,0,0,0,-963.25836,0,3,1,2019,6,0,36,40,1,0,0,10.228556,10.228556,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,8.333333333333334,3,4,0,0,11,8,3,0,589,980847.88,682871,362863.69,0,1110.9938 -12957,15961,28838,-9,-9,28837,1,1,26,0,1,0,1,1,-9,0,4,8.798377,8.5286694,0,0,0,-1143.813,0,-9,2,2019,11,1,41,37,1,1,1,12.368102,12.368102,0,0,0,0,0,0,0,0,0,0,47.44,56.39,-9,-9,8.333333333333334,3,4,0,0,3,8,5,0,2985,565986.38,-19103.91,0,0,1779.8384 -12958,15962,28839,28840,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-4,79.20385,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5275669,0,55.79,52.62,63.41,39.7,8.333333333333334,1,1,0,0,0,7,4,1,996.5,2105662.5,1312688.5,574309.38,0,4912.7183 -12958,15962,28840,28839,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.1602793,7.964716,56,4,-35.980663,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7229862,8.5925283,63.41,39.7,55.79,52.62,10,1,1,0,0,0,7,4,1,996.5,2105662.5,1312688.5,574309.38,0,4912.7183 -12959,15963,28841,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-902.90051,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,43.52,26.2,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,398,-244548.39,0,0,0,963.54602 -12960,15964,28842,28843,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.4096193,8.0724888,0,32,9,67.012459,0,1,-9,2019,6,0,20,20,1,0,0,21.37215,21.37215,0,0,0,0,0,0,0,0,5.2154374,0,60.87,44.96,57.06,57.76,8.333333333333334,1,1,0,0,10,6,4,1,285.5,1107196.9,369683.88,295764.97,0,2954.2622 -12960,15964,28843,28842,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.1275406,7.4078269,5.7391229,32,0,9.6218119,0,3,-9,2019,6,0,15,15,1,0,0,8.7161312,8.7161312,0,0,0,0,0,0,0,0,3.5761127,5.9842553,57.06,57.76,60.87,44.96,10,1,1,0,0,6,6,4,1,285.5,1107196.9,369683.88,295764.97,0,2954.2622 -12961,15965,28844,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2108774,8.4608049,0,0,0,-1022.0137,0,-9,-9,2019,12,0,36,0,1,0,0,14.87875,14.87875,0,0,0,0,0,0,0,0,0,0,59.88,48.2,-9,-9,5,1,1,0,0,7,9,4,0,371,46722.652,259688.89,198560.2,103341.02,1859.1659 -12961,15966,28845,-9,28844,-9,1,1,24,0,0,0,2,2,-9,0,3,7.5976543,7.5362678,0,0,0,-1087.8147,0,2,-9,2019,11,0,38,38,1,0,1,5.7564139,5.7564139,0,0,0,0,0,0,0,0,0,0,48.17,52.08,-9,-9,3.333333333333333,1,1,0,0,4,9,3,0,1891,-269160.63,0,0,0,656.33575 -12962,15967,28846,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.3032551,8.2776489,0,0,0,-959.57642,-9,3,3,2019,6,0,40,0,1,0,0,12.703251,12.703251,0,0,0,0,0,0,0,0,0,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,402,449493.72,489383.44,423508.69,78015.828,1668.7841 -12963,15968,28847,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,8.1683264,8.3489189,5.9011226,0,0,-998.40924,0,2,1,2019,2,0,35,4,1,0,0,12.864898,12.864898,0,0,0,0,0,1,1,0,7.3820672,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,7,10,4,1,268.66666,1133090.5,923792.81,214777.3,0,3619.1113 -12963,15968,28848,-9,28847,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.6201,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,268.66666,1133090.5,923792.81,214777.3,0,3619.1113 -12963,15968,28849,-9,28847,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.9198,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,268.66666,1133090.5,923792.81,214777.3,0,3619.1113 -12964,15969,28850,-9,28851,28852,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.54065,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 -12964,15969,28851,28852,-9,-9,1,0,36,0,2,0,3,3,-9,0,5,0,0,0,19,-5,55.857475,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,52,55,10,2,3,0,0,0,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 -12964,15969,28852,28851,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.820684,7.4898314,0,19,5,-27.565809,0,2,2,2019,9,0,40,60,1,1,0,7.1188149,7.1188149,0,0,0,0,0,1,1,0,0,0,52,55,62.39,56.71,7,2,3,0,0,5,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 -12964,15969,28853,-9,28851,28852,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.75732,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,-9,0,0,8,2,0,339.5,674030.94,357414.09,190213.97,20425.988,1723.3716 -12965,15970,28854,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.2255983,6.180831,0,0,-1042.0403,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3175037,6.0320067,44.64,55.04,-9,-9,10,1,1,0,0,0,6,2,1,750,552079.38,-63483.598,249956.48,0,1381.1951 -12966,15971,28855,28856,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.9380975,7.7640634,0,7,-2,2.1254725,0,3,3,2019,6,0,34,34,1,0,0,7.067493,7.067493,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.53,51.55,8.333333333333334,1,1,0,0,9,12,4,0,1456,172506.78,133034.98,0,0,2355.7759 -12966,15971,28856,28855,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.6579537,7.9654827,6.163959,7,2,27.119028,0,3,3,2019,6,0,30,32,1,0,0,7.1549697,7.1549697,0,0,0,0,0,0,0,0,0,6.3187242,55.53,51.55,57.33,53.46,8.333333333333334,1,1,0,0,5,12,4,0,1456,172506.78,133034.98,0,0,2355.7759 -12967,15972,28857,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7242537,7.8675432,0,0,-1030.974,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6328611,7.5484877,59.46,36.25,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,246,352809.72,330753.47,135028.78,0,1846.0741 -12968,15973,28858,28860,-9,-9,1,1,33,0,1,0,1,1,-9,1,2,0,0,0,9,0,0,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,38.15,42.16,27.64,19.88,6.666666666666667,1,1,1,0,3,6,1,0,767,188849.22,46944.246,0,0,2008.8751 -12968,15973,28859,-9,28860,28858,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.5979,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,0,767,188849.22,46944.246,0,0,2008.8751 -12968,15973,28860,28858,-9,-9,1,0,33,0,1,0,2,2,-9,1,1,0,0,0,9,0,0,0,2,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,19.88,38.15,42.16,6.666666666666667,1,1,0,0,0,6,1,0,767,188849.22,46944.246,0,0,2008.8751 -12969,15974,28861,28862,-9,-9,1,1,65,0,0,0,2,2,-9,1,2,0,0,0,45,4,-47.208496,0,2,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.62,27.41,58.32,50.22,5,1,1,0,0,0,12,3,0,968.5,282197.16,134611.94,0,0,1413.1068 -12969,15974,28862,28861,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.4768324,7.5024247,0,45,-4,-98.932831,0,3,3,2019,6,0,28,24,1,0,0,6.6261268,6.6261268,0,0,0,0,71.5,1,1,0,0,0,58.32,50.22,43.62,27.41,8.333333333333334,1,1,0,0,9,12,3,0,968.5,282197.16,134611.94,0,0,1413.1068 -12970,15975,28863,28864,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.7767048,7.6847639,7,-2,-37.531078,0,-9,-9,2019,10,0,0,45,4,1,0,0,0,0,0,0,0,0,1,1,0,2.8184083,7.8059793,52,48,51.01,41.69,7,1,1,0,0,0,9,3,1,734,2114624.5,746319.5,482481.31,0,2377.3799 -12970,15975,28864,28863,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,4.2069764,4.3554821,46,2,56.367729,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5407858,51.01,41.69,52,48,8.333333333333334,1,1,0,0,0,9,3,1,734,2114624.5,746319.5,482481.31,0,2377.3799 -12970,15976,28865,-9,28864,28863,1,0,34,0,0,0,1,1,-9,0,4,7.9091082,8.366251,0,0,0,-1011.0193,0,2,2,2019,11,0,38,40,1,2,0,8.9324083,8.9324083,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,9,4,1,219,-10573.356,-41922,0,0,1415.3669 -12971,15977,28866,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.2886076,6.2688446,0,0,-1039.7642,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,3.3163037,0,1,1,0,6.9980068,6.8171263,43.91,31.92,-9,-9,5,1,1,0,1,0,7,2,1,369,263169.19,191095.33,259170.42,0,1306.8434 -12971,15978,28867,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.8104191,7.6187382,0,0,-1031.1438,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.7825351,7.8172174,50.9,36.38,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,331,687772.44,122400.07,468252.72,0,1137.0172 -12972,15979,28868,28869,-9,-9,1,0,35,0,0,0,1,1,-9,0,2,8.5178375,8.8229752,0,2,-6,-18.28899,-9,-9,-9,2019,13,3,45,0,1,3,0,12.04624,12.04624,0,0,0,0,0,0,0,0,6.5425301,0,32.24,51.96,57.16,56.15,8.333333333333334,1,1,0,1,8,2,5,1,352,290175.81,528221.75,152357.45,22718.861,4435.1172 -12972,15979,28869,28868,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.6874895,8.6321697,0,2,6,-73.285278,0,-9,-9,2019,7,0,55,48,1,0,0,12.462155,12.462155,0,0,0,0,0,0,0,0,7.3105292,0,57.16,56.15,32.24,51.96,8.333333333333334,1,1,0,0,11,2,5,1,352,290175.81,528221.75,152357.45,22718.861,4435.1172 -12973,15980,28870,28871,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-2,0,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,0,0,52,45,54,46,8,1,1,0,0,0,6,2,1,2906,160850.17,-19461.934,94604.547,27480.82,3153.7915 -12973,15980,28871,28870,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,62,2,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,14.632761,32.124996,137.68474,0,1,1,0,0,0,54,46,52,45,8,1,1,0,0,0,6,2,1,2906,160850.17,-19461.934,94604.547,27480.82,3153.7915 -12974,15981,28872,28873,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.0213704,6.1321807,50,2,36.97654,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2430024,6.3332806,52.86,40.2,62.27,42.94,10,1,1,0,0,0,2,2,1,359.5,277128.94,124968.72,133503.08,4447.9097,1563.8135 -12974,15981,28873,28872,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,18,-2,83.989304,0,3,2,2019,6,0,0,47,4,0,0,0,0,0,0,0,0,0,1,1,0,3.824548,0,62.27,42.94,52.86,40.2,10,1,1,0,0,12,2,2,1,359.5,277128.94,124968.72,133503.08,4447.9097,1563.8135 -12975,15982,28874,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.0616693,7.1155777,0,0,-1165.5547,0,-9,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8823609,60.12,54.8,-9,-9,10,1,1,0,0,6,6,2,1,593,181501.7,290058,124272.49,0,758.49774 -12976,15983,28875,28876,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.0200357,7.7913518,0,2,-1,-89.34095,0,2,1,2019,12,0,50,60,1,0,0,8.3633871,8.3633871,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51.24,58.84,6.666666666666667,1,1,0,0,9,8,5,1,964,510870.16,103141.2,397448.91,249905.2,5036.3271 -12976,15983,28876,28875,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.9448442,8.8852396,0,2,1,-71.21843,0,-9,-9,2019,12,0,45,45,1,0,0,15.217676,15.217676,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.04,55.86,8.333333333333334,1,1,0,0,9,8,5,1,964,510870.16,103141.2,397448.91,249905.2,5036.3271 -12977,15984,28877,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-889.78723,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.3909278,0,51,46,-9,-9,7,1,1,0,0,0,6,1,1,1069,-1412.9695,0,0,0,388.38525 -12978,15985,28878,28880,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.913054,7.8985701,0,7,-4,31.756407,0,2,2,2019,11,0,28,29,1,0,0,10.413446,10.413446,0,0,0,0,0,1,1,0,4.629312,0,35.97,61.83,49.04,55.86,3.333333333333333,1,1,0,0,8,12,5,1,949.66669,234878.14,-39311.281,117803.09,0,3910.3813 -12978,15985,28879,-9,28878,28880,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-872.68512,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,949.66669,234878.14,-39311.281,117803.09,0,3910.3813 -12978,15985,28880,28878,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.9795494,8.7707586,0,7,4,10.561465,0,2,3,2019,9,0,40,45,1,0,0,21.812206,21.812206,0,0,0,0,0,1,1,0,.021738486,0,49.04,55.86,35.97,61.83,6.666666666666667,1,1,0,0,8,12,5,1,949.66669,234878.14,-39311.281,117803.09,0,3910.3813 -12979,15986,28881,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,1,0,7.6044726,7.4409013,0,0,-1065.707,-9,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,3.1461284,0,0,1,1,0,2.2026033,7.8220506,46,17,-9,-9,5,1,1,0,0,0,11,3,1,252,329804.38,338055.03,217375.84,0,1454.4302 -12980,15987,28882,28883,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,6.7035484,6.846333,5.807198,53,-7,-22.900179,0,3,3,2019,9,0,11,10,1,0,0,6.4950571,6.4950571,1,0,0,0,0,1,1,0,2.2887912,5.5292292,52.82,53.97,57.16,56.15,10,1,1,0,0,9,4,2,0,819.5,311310.06,0,99192.117,0,1885.6946 -12980,15987,28883,28882,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.7555799,6.6707368,53,7,100.70245,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.117764,6.622364,57.16,56.15,52.82,53.97,10,1,1,0,0,0,4,2,0,819.5,311310.06,0,99192.117,0,1885.6946 -12981,15988,28884,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.475255,5.5963855,0,0,-1030.1497,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.30211192,5.5309482,61.61,37.79,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,570,178711.39,64403.645,0,0,1631.0675 -12982,15989,28885,28886,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,6.2478781,8.0087357,7.7928023,7,15,12.359231,0,3,3,2019,6,0,12,25,1,0,0,5.7458968,5.7458968,0,0,0,0,7,1,1,0,7.6392794,7.7960877,59.04,54.12,51.8,53.16,10,1,1,0,0,8,10,3,1,3643.5,894774.25,398953.97,331970.5,0,2892.3379 -12982,15989,28886,28885,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,7,-15,-114.77542,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,7.1032715,0,51.8,53.16,59.04,54.12,8.333333333333334,1,1,0,0,6,10,3,1,3643.5,894774.25,398953.97,331970.5,0,2892.3379 -12983,15990,28887,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.6295719,8.8090944,0,0,-977.07031,0,3,2,2019,6,0,0,30,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4569969,8.6254072,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,545,844031.63,288233.44,314256.78,0,2800.2141 -12984,15991,28888,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.14188,8.3382349,0,6,-3,64.473572,0,1,1,2019,9,0,43,39,1,0,0,12.528644,12.528644,0,0,0,0,0,0,0,0,.13240692,0,54.1,59.11,59.29,49.68,8.333333333333334,2,3,0,0,5,10,5,1,174,-314761.16,49327.219,0,0,2065.0115 -12984,15992,28889,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.245779,8.2140484,0,6,3,-58.663742,0,-9,-9,2019,1,0,41,43,1,0,0,10.596072,10.596072,0,0,0,0,0,0,0,0,1.1117646,0,59.29,49.68,54.1,59.11,8.333333333333334,1,1,0,0,7,10,5,1,717,-8926.6934,66083.336,0,0,1387.127 -12985,15993,28890,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.3314304,9.2115993,0,0,0,-927.80524,-9,-9,-9,2019,6,0,85,0,1,0,0,9.9145985,9.9145985,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,2,5,0,231,-77797.758,18118.053,83861.711,61399.219,3597.3862 -12986,15994,28891,28892,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.84027,7.083674,4,1,-72.39698,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.881041,6.4072094,61.27,46.03,51.55,45.62,10,1,1,0,0,8,6,3,1,501.5,696174.38,337051.81,428329.38,0,3337.4121 -12986,15994,28892,28891,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.724854,8.222826,7,-1,-71.22023,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.1985946,7.8801928,51.55,45.62,61.27,46.03,8.333333333333334,1,1,0,0,8,6,3,1,501.5,696174.38,337051.81,428329.38,0,3337.4121 -12987,15995,28893,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7447557,9.1911764,0,0,0,-1121.9144,0,3,3,2019,8,0,40,37,1,0,0,19.452213,19.452213,0,0,0,0,0,0,0,0,4.0167379,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,4,7,5,1,541,-184909.05,70766.695,0,0,2625.9421 -12988,15996,28894,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.7377195,8.6746855,0,0,0,-941.39215,0,3,3,2019,9,0,38,38,1,0,0,15.716583,15.716583,0,0,0,0,0,1,1,0,4.3472104,0,38.86,59.06,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,520,271723.25,224447.45,15098.316,12812.16,2332.4348 -12989,15997,28895,28896,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.8473053,7.7753139,7,0,-121.10632,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.7069244,7.6126289,48.53,47.49,57.33,53.46,10,1,1,0,0,6,4,3,1,481.5,873739.88,665432.5,73178.086,23741.881,3100.8411 -12989,15997,28896,28895,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9869919,5.9814372,7,0,-18.721445,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.5879819,5.9432139,57.33,53.46,48.53,47.49,8.333333333333334,1,1,0,0,7,4,3,1,481.5,873739.88,665432.5,73178.086,23741.881,3100.8411 -12990,15998,28897,-9,28898,28900,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.2435,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 -12990,15998,28898,28900,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.1448936,8.1968451,0,19,-1,134.02357,0,3,3,2019,6,0,18,17,1,0,0,21.629488,21.629488,0,0,0,0,0,1,1,0,0,0,54.69,57.47,59.43,58.05,10,1,1,0,0,9,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 -12990,15998,28899,-9,28898,28900,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.8624,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 -12990,15998,28900,28898,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,9.2802811,9.1473532,0,17,1,56.69059,0,3,2,2019,4,0,43,44,1,0,0,26.919649,26.919649,0,0,0,0,0,1,1,0,3.1977882,0,59.43,58.05,54.69,57.47,10,1,1,0,0,11,12,5,1,448.5,811974.69,268686.63,465804.78,27182.264,5133.064 -12991,15999,28901,28902,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.7586641,6.1638594,9,2,-43.554268,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,16.857763,0,0,1,1,0,6.6550364,5.8797231,61.19,42.11,65.53,38.76,10,1,1,0,0,0,13,2,1,532.5,45703.625,202866.63,102036.08,0,1236.5732 -12991,15999,28902,28901,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.6534653,4.5844035,9,-2,-101.08323,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1545658,4.5673461,65.53,38.76,61.19,42.11,10,1,1,0,0,0,13,2,1,532.5,45703.625,202866.63,102036.08,0,1236.5732 -12992,16000,28903,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,4,7.9532371,8.1874905,0,0,0,-1020.071,-9,-9,-9,2019,14,3,59,0,1,3,0,5.9138775,5.9138775,0,0,0,0,0,0,0,0,0,0,42.85,60.33,-9,-9,5,4,2,0,1,5,2,4,0,346,165279.42,-23150.617,0,0,1205.6887 -12993,16001,28904,28905,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,5,-1,0,0,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48,49,42.22,21.45,7,1,1,1,1,0,6,2,0,643.5,155881.36,104181.42,0,0,1394.7043 -12993,16001,28905,28904,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,5,1,0,0,3,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,42.22,21.45,48,49,3.333333333333333,4,2,0,0,0,6,2,0,643.5,155881.36,104181.42,0,0,1394.7043 -12994,16002,28906,-9,28907,28908,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-912.25616,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,13,1,0,507,178684.17,20176.732,0,0,1521.4111 -12994,16002,28907,28908,-9,-9,1,0,26,0,1,0,3,3,-9,0,3,0,0,0,6,-2,0,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,38.63,56.7,48.35,56.59,6.666666666666667,4,1,1,0,0,13,1,0,507,178684.17,20176.732,0,0,1521.4111 -12994,16002,28908,28907,-9,-9,1,1,28,0,1,0,3,3,-9,0,3,0,0,0,6,2,0,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.35,56.59,38.63,56.7,8.333333333333334,1,1,1,0,0,13,1,0,507,178684.17,20176.732,0,0,1521.4111 -12995,16003,28909,28910,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.7597642,7.7126408,60,3,-27.794878,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,150.38278,0,0,1,1,0,1.5372843,7.9002461,54,46,51,46,8,1,1,0,0,0,4,3,1,688,2124840,486816.97,353664.91,0,3517.3398 -12995,16003,28910,28909,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.2559223,6.9860067,58,-3,69.457748,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,82.122978,0,120,1,1,0,2.1391864,7.3327942,51,46,54,46,7,1,1,0,0,0,4,3,1,688,2124840,486816.97,353664.91,0,3517.3398 -12995,16004,28911,-9,28910,28909,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-995.89246,0,1,1,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.92,51.82,-9,-9,3.333333333333333,1,1,0,0,0,4,1,1,291,-224122.64,0,0,0,908.41266 -12996,16005,28912,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2401781,8.2940969,0,0,0,-1041.2164,0,-9,3,2019,9,1,38,38,1,1,0,12.590218,12.590218,0,0,0,0,2,0,0,0,1.8138561,0,44.02,60.7,-9,-9,8.333333333333334,3,4,0,0,9,8,4,1,2899,1001780.8,150716.66,228674.06,0,1848.5432 -12997,16006,28913,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.9825683,7.6356378,0,0,-1078.9889,0,2,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,2.2876019,7.7066364,38.11,43.85,-9,-9,3.333333333333333,1,1,0,0,6,5,3,1,156,466958.75,304804.5,140594.88,16212.069,1583.2589 -12998,16007,28914,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.1369514,7.5096307,0,0,0,-1088.3318,0,-9,2,2019,11,0,16,21,1,0,0,15.648944,15.648944,0,0,0,0,14.5,1,0,1,0,0,38.27,52.67,-9,-9,5,1,1,0,0,12,12,3,0,218,-31829.965,28694.096,0,0,729.32281 -12999,16008,28915,28916,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.3728137,7.3779635,0,9,1,91.543358,0,3,3,2019,21,6,25,40,1,6,0,8.4083624,8.4083624,0,0,0,0,2,0,0,0,0,0,35.99,51.44,29.51,48.63,6.666666666666667,1,1,0,0,9,9,2,1,1405,590594.13,319268.09,232273.5,0,237.86993 -12999,16008,28916,28915,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,9,-1,40.273701,0,2,2,2019,27,10,0,50,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,29.51,48.63,35.99,51.44,5,1,1,0,0,9,9,2,1,1405,590594.13,319268.09,232273.5,0,237.86993 -13000,16009,28917,28918,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,4.515079,4.5262856,64,2,79.274857,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,3.2086279,0,2,1,1,0,1.7992994,4.8266306,43,23,48.38,44.46,8.333333333333334,1,1,0,0,0,6,2,1,447,84668.953,0,221088.03,0,1598.4032 -13000,16009,28918,28917,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,64,-2,-4.809339,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,2.5981593,0,48.38,44.46,43,23,5,1,1,0,0,0,6,2,1,447,84668.953,0,221088.03,0,1598.4032 -13001,16010,28919,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.607224,7.6903605,0,0,-1021.1445,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8933797,59.29,49.68,-9,-9,10,1,1,0,0,0,1,3,1,563,1133105.8,778447.31,428557.34,0,2002.2484 -13002,16011,28920,28921,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.433836,9.0958138,0,32,5,92.075607,0,-9,-9,2019,5,0,45,43,1,0,0,26.051729,26.051729,0,0,0,0,2,0,0,0,2.771276,0,54.2,57.49,23.69,33.92,8.333333333333334,1,1,0,0,12,7,5,1,848.5,2366747,174349.69,1046189.3,0,3321.9731 -13002,16011,28921,28920,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,32,-5,-55.445583,0,-9,-9,2019,27,10,0,0,4,10,0,0,0,0,0,0,0,2,0,0,0,2.6240685,0,23.69,33.92,54.2,57.49,3.333333333333333,1,1,0,0,6,7,5,1,848.5,2366747,174349.69,1046189.3,0,3321.9731 -13003,16012,28922,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.182601,8.0627584,0,0,0,-878.72705,0,1,-9,2019,12,0,40,40,1,0,0,11.129408,11.129408,0,0,0,0,2,1,1,0,0,0,45.73,57.57,-9,-9,3.333333333333333,4,5,0,0,8,8,4,0,531,-37915.531,122255.53,447536.88,81233.734,1099.5344 -13003,16013,28923,-9,28922,-9,1,1,27,0,0,0,1,1,-9,1,3,0,0,0,0,0,-984.93835,0,2,-9,2019,27,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,27.1,41.97,-9,-9,0,4,2,0,0,2,8,1,0,185,32162.93,0,0,0,1635.5607 -13004,16014,28924,28925,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,8.8345175,8.7521582,0,7,3,55.93766,0,2,3,2019,12,2,54,51,1,2,0,15.47837,15.47837,0,0,0,0,0,1,1,0,0,0,50.96,47.26,35.82,25.5,3.333333333333333,1,1,0,0,9,11,4,0,343.5,126410.19,45720.504,131044.33,22112.32,2283.5098 -13004,16014,28925,28924,-9,-9,1,0,45,0,0,0,2,2,-9,1,2,0,0,0,7,-3,-37.926323,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.82,25.5,50.96,47.26,3.333333333333333,1,1,1,0,0,11,4,0,343.5,126410.19,45720.504,131044.33,22112.32,2283.5098 -13004,16015,28926,-9,28925,28924,1,1,20,0,0,0,2,2,-9,0,3,8.3176594,7.8577757,0,0,0,-994.69238,0,2,3,2019,6,0,37,56,1,0,1,10.135642,10.135642,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,11,4,0,90,105184.55,-94599.039,0,0,1503.1066 -13004,16016,28927,-9,28925,28924,1,0,18,0,0,0,2,2,-9,0,2,0,4.4159646,4.2802901,0,0,-999.58667,1,2,3,2019,28,11,0,0,2,11,1,0,0,0,0,0,0,0,1,1,0,4.7109442,0,25.93,43.93,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,684,-202766.98,0,0,0,-90.442062 -13005,16017,28928,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.2981138,8.3539066,0,0,-1139.0098,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9762752,8.3860741,56.07,55.46,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,689,606718.88,461197.25,349837.78,0,2604.3865 -13006,16018,28929,28930,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.6747046,9.5421581,0,10,7,34.724236,0,2,1,2019,10,0,84,97,1,1,0,21.626028,21.626028,0,0,0,0,0,1,1,0,.99091846,0,51,48,60.7,47.65,7,1,1,0,0,1,10,5,1,1042,1061768.9,279139.81,479051.63,0,8879.0898 -13006,16018,28930,28929,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,9.0552454,8.8630266,0,35,-7,133.96465,0,1,2,2019,7,0,30,40,1,0,0,28.021238,28.021238,0,0,0,0,0,1,1,0,7.6565251,0,60.7,47.65,51,48,8.333333333333334,1,1,0,0,11,10,5,1,1042,1061768.9,279139.81,479051.63,0,8879.0898 -13006,16019,28931,-9,28930,28929,1,1,18,0,0,0,2,2,1,0,3,7.709229,7.7843904,0,0,0,-1043.1907,-9,2,1,2019,27,12,40,0,1,12,1,6.7094684,6.7094684,0,0,0,0,0,1,1,0,0,0,28.82,54.36,-9,-9,5,1,1,0,0,0,10,3,1,892,-120053.06,0,0,0,1088.0057 -13007,16020,28932,28933,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9170356,7.322113,7,0,-17.634535,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6344647,7.2780066,54.89,43.66,51.18,37.04,8.333333333333334,1,1,0,0,0,12,4,1,713,876582.19,447154.25,416527.56,0,4259.8389 -13007,16020,28933,28932,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.224843,8.6293831,7,0,64.427528,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,6.569932,8.3411522,51.18,37.04,54.89,43.66,3.333333333333333,1,1,0,0,0,12,4,1,713,876582.19,447154.25,416527.56,0,4259.8389 -13008,16021,28934,28936,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,6.4322977,6.31882,0,16,-13,-44.351223,0,2,3,2019,6,0,35,43,1,0,0,2.172056,2.172056,0,0,0,0,91,1,1,0,0,0,51.14,60.45,49.84,44.96,8.333333333333334,1,1,0,0,7,9,5,1,787,1754019.6,1845042.1,0,0,5927.8398 -13008,16021,28935,-9,28934,28936,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.07971,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,787,1754019.6,1845042.1,0,0,5927.8398 -13008,16021,28936,28934,28937,-9,1,1,63,0,1,0,2,2,-9,0,3,9.6594143,9.4569359,0,16,13,55.985275,0,3,2,2019,11,2,37,35,1,2,0,44.590904,44.590904,0,0,0,0,89,1,1,0,0,0,49.84,44.96,51.14,60.45,8.333333333333334,1,1,0,0,11,9,5,1,787,1754019.6,1845042.1,0,0,5927.8398 -13008,16022,28937,-9,-9,-9,1,0,85,0,1,0,3,3,-9,0,3,0,0,0,0,0,-857.1601,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,32.011372,19.791664,298.72388,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,1,473,604291.06,0,236807.33,0,649.05505 -13009,16023,28938,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.5751581,7.620141,0,0,-1017.883,0,2,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.3307662,56.44,15.08,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,372,223641.39,196364.94,45113.859,0,1455.5039 -13010,16024,28939,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,7.463469,7.3286266,0,0,-1015.5564,0,3,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.4592972,7.6503763,45.45,25.85,-9,-9,3.333333333333333,1,1,0,0,9,9,3,0,1519,422846.63,241651.72,231420.89,0,1056.2058 -13011,16025,28940,28941,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.6641207,8.6860008,0,3,-1,34.315784,0,-9,-9,2019,12,1,52,55,1,1,0,10.756415,10.756415,0,0,0,0,0,0,0,0,2.9051363,0,45.18,57.44,41.17,59.31,8.333333333333334,1,1,0,0,4,9,5,0,1087,-234011.63,-48131.625,0,0,3865.1919 -13011,16025,28941,28940,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7604942,8.5303736,0,3,1,-62.155453,-9,-9,-9,2019,11,1,50,0,1,1,0,14.928926,14.928926,0,0,0,0,0,0,0,0,2.341393,0,41.17,59.31,45.18,57.44,6.666666666666667,2,3,0,0,6,9,5,0,1087,-234011.63,-48131.625,0,0,3865.1919 -13012,16026,28942,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.5679121,8.2348566,0,0,0,-989.26526,0,2,3,2019,5,0,42,43,1,0,0,9.055521,9.055521,0,0,0,0,0,0,0,0,0,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,167,928308.19,330428.09,0,0,1394.2802 -13012,16027,28943,-9,28942,-9,1,1,25,0,0,0,2,2,-9,0,3,7.9138761,8.3749647,0,0,0,-994.61353,0,2,-9,2019,13,5,43,40,1,5,1,9.1036453,9.1036453,0,0,0,0,0,0,0,0,0,0,34.55,57.43,-9,-9,8.333333333333334,1,1,0,0,3,9,4,0,199,252745.89,108230.24,0,0,1577.8882 -13013,16028,28944,28946,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.4305077,6.6103768,0,16,2,-6.0930305,0,2,2,2019,5,1,56,56,1,1,0,1.2636172,1.2636172,0,0,0,0,2,1,1,0,0,0,61.52,37.8,48.13,47.75,8.333333333333334,1,1,0,0,13,1,3,1,425.33334,107184.79,0,83280.828,0,1144.1138 -13013,16028,28945,-9,28946,28944,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.5399,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,425.33334,107184.79,0,83280.828,0,1144.1138 -13013,16028,28946,28944,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.643856,7.651155,0,16,-2,-79.267822,0,2,3,2019,13,2,25,16,1,2,0,11.760529,11.760529,0,0,0,0,0,1,1,0,0,0,48.13,47.75,61.52,37.8,8.333333333333334,1,1,0,0,13,1,3,1,425.33334,107184.79,0,83280.828,0,1144.1138 -13014,16029,28947,28950,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,11,-4,41.037754,0,3,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.3342507,0,58.32,50.22,54.2,57.49,8.333333333333334,2,3,0,0,1,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 -13014,16029,28948,-9,28947,28950,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.37708,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 -13014,16029,28949,-9,28947,28950,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.42834,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 -13014,16029,28950,28947,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.4901428,9.2732048,0,11,4,-30.107109,0,2,1,2019,10,0,40,38,1,0,0,29.932772,29.932772,0,0,0,0,0,0,0,0,0,0,54.2,57.49,58.32,50.22,6.666666666666667,2,3,0,0,5,2,5,1,426,1025039.1,738575.63,263996.78,60162.961,2766.01 -13015,16030,28951,28952,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.3739285,7.3535433,33,-2,-31.965809,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8665633,7.5354509,51,48,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,658,1448407.8,418243.22,602105.25,0,2611.2964 -13015,16030,28952,28951,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.2312002,5.4370713,32,2,3.2489371,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5476146,57.16,56.15,51,48,0,1,1,0,0,6,9,3,1,658,1448407.8,418243.22,602105.25,0,2611.2964 -13016,16031,28953,28955,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,8.0625105,8.0545931,0,24,3,100.25149,0,2,2,2019,11,0,42,45,1,0,0,7.1450357,7.1450357,0,0,0,0,0,1,1,0,0,0,56.74,44.56,44.13,51.34,3.333333333333333,2,3,0,0,11,10,5,1,424.66666,716826.38,346613.22,324847.88,63027.551,3608.175 -13016,16031,28954,-9,28955,28953,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.0657,-9,1,1,2019,22,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,2.6765013,0,30.66,53.18,-9,-9,8.333333333333334,2,3,0,0,0,10,5,1,424.66666,716826.38,346613.22,324847.88,63027.551,3608.175 -13016,16031,28955,28953,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.5996923,8.4567137,0,24,-3,15.113516,0,1,1,2019,15,3,49,42,1,3,0,11.923575,11.923575,0,0,0,0,0,1,1,0,0,0,44.13,51.34,56.74,44.56,5,2,3,0,0,7,10,5,1,424.66666,716826.38,346613.22,324847.88,63027.551,3608.175 -13016,16032,28956,-9,28955,28953,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-1030.8088,-9,1,1,2019,22,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,32.2,51.4,-9,-9,3.333333333333333,2,3,1,0,0,10,1,1,611,-146865.34,0,0,0,0 -13017,16033,28957,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.1634154,7.4765387,0,0,-1001.9413,0,3,1,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,7.3367267,28.32,52.1,-9,-9,5,1,1,0,0,0,9,3,1,709,400758.16,283543.28,171649.97,0,1954.0267 -13018,16034,28958,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.1551685,6.8876557,0,0,-963.94519,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,1.2704403,0,21.739265,0,1,1,0,4.5622292,7.040556,54.86,33.1,-9,-9,5,1,1,0,0,0,2,2,1,587,181566.95,12090.386,184506.3,0,1573.3068 -13019,16035,28959,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1110.0057,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,29.29,20.34,-9,-9,3.333333333333333,1,1,0,1,0,1,2,0,218,37003.129,0,0,0,920.25433 -13020,16036,28960,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.5179167,7.4544797,0,0,-933.92688,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7744069,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,874,682350.38,403260.72,48340.156,0,2716.7598 -13021,16037,28961,-9,28963,-9,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-980.42822,-9,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,12,4,0,813,77515.063,-8126.1357,114526.77,71179.109,1886.161 -13021,16037,28962,-9,28963,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.53931,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,813,77515.063,-8126.1357,114526.77,71179.109,1886.161 -13021,16037,28963,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,8.0875406,8.2694063,0,0,0,-1128.4117,0,2,3,2019,13,1,59,59,1,1,0,6.1159329,6.1159329,0,0,0,0,0,1,1,0,0,0,36.43,39,-9,-9,5,1,1,0,0,7,12,4,0,813,77515.063,-8126.1357,114526.77,71179.109,1886.161 -13022,16038,28964,28965,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,41,-8,0,0,2,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,7.2610583,0,46.9,53.95,52,48,6.666666666666667,1,1,0,0,3,7,1,1,1032,734043.25,60007.766,512584.44,0,1548.2515 -13022,16038,28965,28964,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,9,8,0,0,-9,-9,2019,10,0,0,45,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,48,46.9,53.95,7,1,1,0,0,0,7,1,1,1032,734043.25,60007.766,512584.44,0,1548.2515 -13023,16039,28966,28967,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,1,-18,89.978775,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,54,46,7,1,1,0,0,0,2,2,1,477,79857.367,17285.867,0,0,1206.9155 -13023,16039,28967,28966,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.8108358,5.8035483,1,18,-25.353767,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8688359,54,46,49,48,7,1,1,0,0,0,2,2,1,477,79857.367,17285.867,0,0,1206.9155 -13024,16040,28968,-9,28970,28971,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.21094,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 -13024,16040,28969,-9,28970,28971,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1030.9919,-9,2,3,2019,14,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,54.85,50.36,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 -13024,16040,28970,28971,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,7.5079608,7.9267073,0,27,-2,-80.442665,0,3,3,2019,14,2,48,45,1,2,0,5.7958283,5.7958283,0,0,0,0,27,1,1,0,0,0,55.09,55.87,60.28,46.44,6.666666666666667,1,1,0,0,8,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 -13024,16040,28971,28970,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,7.7444715,8.0386457,0,27,2,55.587364,0,3,3,2019,12,0,42,42,1,0,0,7.058516,7.058516,0,0,0,0,14.5,1,1,0,0,0,60.28,46.44,55.09,55.87,6.666666666666667,1,1,0,0,8,13,3,1,1459,159656.27,50338.992,230306.28,65491.691,1973.2888 -13024,16041,28972,-9,28970,28971,1,1,23,0,1,0,2,2,-9,1,3,8.1672411,8.1501102,0,0,0,-1047.6272,0,2,3,2019,9,1,12,40,1,1,1,31.487989,31.487989,0,0,0,0,0,1,1,0,0,0,52.98,38.97,-9,-9,8.333333333333334,1,1,0,1,8,13,4,1,582,-157481.2,9251.5869,0,0,2333.3506 -13024,16042,28973,-9,28970,28971,1,1,21,0,1,0,2,2,-9,0,4,7.3125668,7.6499991,0,0,0,-982.5459,0,2,3,2019,6,0,47,39,1,0,1,4.1708374,4.1708374,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,548,130756.16,0,0,0,-125.7311 -13025,16043,28974,-9,-9,-9,1,0,21,0,0,0,1,1,0,0,4,0,0,0,0,0,-1143.5217,-9,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,1427,238108.77,0,0,0,903.38824 -13026,16044,28975,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,4,0,7.0649705,7.1908169,0,0,-998.5697,0,2,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.7793329,7.0355287,65.88,16.46,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,776,170969.22,241324.59,198349.42,0,1478.8722 -13027,16045,28976,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,6.990675,6.8609114,0,0,-991.1535,0,2,3,2019,23,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,5.0811987,6.8723831,37.79,21.98,-9,-9,3.333333333333333,1,1,0,0,6,13,2,1,2685,199119.02,233545.05,278419.56,0,453.35672 -13028,16046,28977,28978,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.0794754,7.9500771,14,11,-118.49812,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.93706715,8.2452192,58.3,52.91,61.12,51.57,8.333333333333334,1,1,0,0,0,6,4,1,1034,1314637,602927.63,191562.75,0,3129.436 -13028,16046,28978,28977,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.783824,7.6943526,14,-11,91.542648,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3598433,61.12,51.57,58.3,52.91,8.333333333333334,1,1,0,0,0,6,4,1,1034,1314637,602927.63,191562.75,0,3129.436 -13028,16047,28979,-9,28978,28977,1,0,33,0,0,0,1,1,-9,0,5,7.9584022,7.7669244,0,0,0,-1033.6204,0,2,2,2019,7,0,40,38,1,0,0,6.6620889,6.6620889,0,0,0,0,0,1,1,0,2.9909818,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,393,310488.41,-47202.918,0,0,1446.2733 -13029,16048,28980,28981,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,8.2066164,8.2540302,5.0926042,8,-2,285.86917,0,3,3,2019,16,3,37,38,1,3,0,13.978448,13.978448,0,0,0,0,0,1,1,0,4.7905192,5.2466793,52.9,34.31,51.02,49.39,8.333333333333334,1,1,0,1,9,5,3,1,967.5,839989,915913.69,227322.41,8164.4565,2598.9172 -13029,16048,28981,28980,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,8,2,24.081818,0,2,2,2019,18,6,0,38,3,6,0,0,0,0,0,0,0,0,1,1,0,6.7096658,0,51.02,49.39,52.9,34.31,3.333333333333333,1,1,1,0,8,5,3,1,967.5,839989,915913.69,227322.41,8164.4565,2598.9172 -13030,16049,28982,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.2082434,7.9557581,0,0,0,-918.78729,0,3,3,2019,16,4,41,41,1,4,0,9.6783648,9.6783648,0,0,0,0,0,0,0,0,0,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,732,-86508.313,343.12485,0,0,892.09796 -13031,16050,28983,28984,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,6.0643754,6.0634866,0,41,0,-98.104088,0,2,1,2019,7,0,6,4,1,0,0,7.1052961,7.1052961,0,0,0,0,0,1,1,0,3.8529034,0,53.53,51,60.12,54.8,8.333333333333334,1,1,0,0,9,12,3,1,398,245778.08,299317.31,0,0,3411.1672 -13031,16050,28984,28983,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,7.819613,7.7739248,5.5643024,41,0,-89.11483,0,-9,-9,2019,6,0,30,40,1,0,0,12.013572,12.013572,0,0,0,0,0,1,1,0,3.7106507,5.0906358,60.12,54.8,53.53,51,10,1,1,0,0,9,12,3,1,398,245778.08,299317.31,0,0,3411.1672 -13032,16051,28985,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,7.5184207,7.397696,0,0,0,-873.64893,0,2,-9,2019,11,0,40,43,1,0,0,5.7694836,5.7694836,0,0,0,0,0,1,1,0,0,0,40.27,52.15,-9,-9,5,1,1,0,0,5,11,3,0,1574,-147832.39,39808.918,0,0,709.44055 -13033,16052,28986,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.2447762,7.5636139,0,0,0,-996.76373,0,2,2,2019,12,1,30,30,1,1,0,6.220614,6.220614,0,0,0,0,0,1,1,0,0,0,46.91,51.8,-9,-9,6.666666666666667,2,3,0,0,9,8,3,0,2002,202006.33,-82254.289,0,0,885.72833 -13033,16053,28987,-9,28986,-9,1,1,27,0,0,0,1,1,1,0,5,6.8945222,6.7827568,0,0,0,-1094.5844,-9,1,1,2019,10,0,4,0,1,0,1,39.373314,39.373314,0,0,0,0,0,1,1,0,.64050645,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,9,8,2,0,3624,10995.716,0,0,0,845.84875 -13034,16054,28988,28989,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.8999634,9.2029943,0,10,-3,116.23643,0,3,3,2019,11,0,34,34,1,0,0,18.180071,18.180071,0,0,0,0,0,0,0,0,6.7224278,0,53.32,40.84,40.59,48.19,6.666666666666667,1,1,0,0,12,8,5,0,932.5,528034.06,59807.703,408581.13,77781.844,4055.3242 -13034,16054,28989,28988,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,7.8633771,7.6547098,0,10,3,-140.21942,0,-9,-9,2019,23,11,23,28,1,11,0,12.424479,12.424479,0,0,0,0,2,0,0,0,0,0,40.59,48.19,53.32,40.84,3.333333333333333,1,1,0,1,12,8,5,0,932.5,528034.06,59807.703,408581.13,77781.844,4055.3242 -13035,16055,28990,28992,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.0155849,9.3152742,0,15,7,138.28448,0,2,2,2019,6,0,40,60,1,0,0,25.945604,25.945604,0,0,0,0,0,1,1,0,9.9380093,0,60.27,52.13,60.02,56.42,10,1,1,0,0,7,4,5,1,339.33334,1380190.9,1135613.6,184105.53,0,9267.1484 -13035,16055,28991,-9,28992,28990,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-859.37781,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,339.33334,1380190.9,1135613.6,184105.53,0,9267.1484 -13035,16055,28992,28990,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,7.4688902,7.7280073,0,14,-7,-98.43689,0,2,2,2019,6,0,18,18,1,0,0,10.889996,10.889996,0,0,0,0,0,1,1,0,3.0328155,0,60.02,56.42,60.27,52.13,10,1,1,0,0,9,4,5,1,339.33334,1380190.9,1135613.6,184105.53,0,9267.1484 -13036,16056,28993,28994,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,9,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8598027,0,52,47,51.98,54.53,7,1,1,0,0,0,10,1,1,854.5,226008.44,0,221636.94,0,1473.5806 -13036,16056,28994,28993,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,-4,0,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1241021,0,51.98,54.53,52,47,8.333333333333334,1,1,0,0,11,10,1,1,854.5,226008.44,0,221636.94,0,1473.5806 -13036,16057,28995,-9,28994,28993,1,0,31,0,0,0,2,2,-9,0,4,7.7287054,7.4707026,0,0,0,-972.56635,0,3,2,2019,11,0,40,40,1,2,0,6.6096983,6.6096983,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,3,1,145,156709.77,22140.217,0,0,1030.6881 -13037,16058,28996,-9,-9,-9,1,1,94,0,0,0,1,1,-9,0,3,0,7.7249756,7.9419875,0,0,-974.95093,0,3,1,2019,9,1,0,0,4,1,0,0,0,1,1.4318254,0,18.3368,0,1,1,0,4.3470054,7.7230101,51.58,50.6,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,743,-100845.53,67267.055,0,0,2632.4961 -13038,16059,28997,-9,28998,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.3171,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,1,0,1149.5,320578,0,0,0,608.10303 -13038,16059,28998,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1184.5333,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,1,1,0,1149.5,320578,0,0,0,608.10303 -13039,16060,28999,29000,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,7.9294076,8.0058708,52,6,60.322918,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.8201385,7.7129464,52.47,45.08,59.46,38.75,8.333333333333334,1,1,0,0,0,5,3,1,1107.5,852334.94,509726.22,247339.95,0,3505.5012 -13039,16060,29000,28999,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,52,-6,-113.03525,0,3,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,8.0456209,0,59.46,38.75,52.47,45.08,8.333333333333334,1,1,0,0,0,5,3,1,1107.5,852334.94,509726.22,247339.95,0,3505.5012 -13040,16061,29001,29002,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.3235102,8.2361755,0,6,-1,-84.421196,0,3,2,2019,11,0,20,20,1,0,0,24.833197,24.833197,0,0,0,0,0,0,0,0,2.5551703,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,7,9,5,1,695,422050.63,153448.05,210236.03,0,3909.1382 -13040,16061,29002,29001,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.4626293,8.9592514,0,6,1,35.294994,0,3,3,2019,7,0,48,48,1,0,0,16.779173,16.779173,0,0,0,0,0,0,0,0,3.7929511,0,51.73,58.82,57.16,56.15,10,1,1,0,0,6,9,5,1,695,422050.63,153448.05,210236.03,0,3909.1382 -13041,16062,29003,29004,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3020153,8.0595503,0,8,3,58.245617,0,-9,-9,2019,19,7,32,34,1,7,0,17.837791,17.837791,0,0,0,0,7,0,0,0,0,0,39.65,56.19,30.55,49.69,8.333333333333334,1,1,0,0,9,4,5,1,1018.5,675591.81,304983.28,294056.88,0,3192.8545 -13041,16062,29004,29003,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.4237213,8.4474707,0,8,-3,-11.424134,0,3,2,2019,25,9,38,37,1,9,0,16.288473,16.288473,0,0,0,0,0,0,0,0,0,0,30.55,49.69,39.65,56.19,1.666666666666667,1,1,0,0,9,4,5,1,1018.5,675591.81,304983.28,294056.88,0,3192.8545 -13042,16063,29005,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.9147987,5.7563853,0,0,-960.89038,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.0192442,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,980,95639.063,-11396.507,84890.43,0,1591.1653 -13043,16064,29006,29007,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,8.2273455,7.9110904,0,13,0,141.77261,0,2,2,2019,10,0,8,30,1,0,0,42.093594,42.093594,0,0,0,0,0,1,1,0,4.5328913,0,45.91,59.89,43.86,52.62,6.666666666666667,1,1,0,0,12,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 -13043,16064,29007,29006,-9,-9,1,1,48,0,3,0,1,1,-9,0,3,6.9093666,6.8277903,0,13,0,-45.796043,0,3,3,2019,14,2,35,30,1,2,0,3.2176671,3.2176671,0,0,0,0,0,1,1,0,0,0,43.86,52.62,45.91,59.89,3.333333333333333,4,2,0,1,12,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 -13043,16064,29008,-9,29006,29007,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5951,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,4,5,-9,0,0,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 -13043,16064,29009,-9,29006,29007,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1086.6949,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 -13043,16064,29010,-9,29006,29007,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1146.8473,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,11,3,1,590.59998,293483.31,71443.914,288869.09,58899.707,2020.5891 -13044,16065,29011,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.2284498,8.4039974,0,0,0,-987.41211,0,2,-9,2019,9,0,84,38,1,0,0,7.5353975,7.5353975,0,0,0,0,27,0,0,0,0,0,53.63,22.75,-9,-9,6.666666666666667,1,1,0,0,9,1,4,1,1328,565858.75,-33163.805,60544.098,40697.531,1613.162 -13045,16066,29012,29013,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.1777987,6.055788,9,5,65.992424,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9385121,6.2578478,58.89,45.9,58.72,51.29,8.333333333333334,1,1,0,0,7,9,4,1,716.5,1745243.5,1107474.5,398483.56,0,3297.9614 -13045,16066,29013,29012,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5356092,8.6707106,5.179893,9,-5,-37.952656,0,2,2,2019,7,0,42,43,1,0,0,17.006693,17.006693,0,0,0,0,0,1,1,0,5.8423543,5.8826528,58.72,51.29,58.89,45.9,10,1,1,0,0,11,9,4,1,716.5,1745243.5,1107474.5,398483.56,0,3297.9614 -13046,16067,29014,29015,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.3236332,8.3296766,0,4,1,7.039268,0,-9,-9,2019,7,0,48,43,1,0,0,9.4033232,9.4033232,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,6,1,3,0,543,-245526.59,62116.563,0,0,1741.2166 -13046,16067,29015,29014,-9,-9,1,0,26,0,0,0,1,1,0,0,4,0,0,0,4,-1,38.254925,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,2,1,3,0,543,-245526.59,62116.563,0,0,1741.2166 -13047,16068,29016,-9,29017,29019,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.5235,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 -13047,16068,29017,29019,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,0,0,0,19,0,-25.051689,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1.5043502,0,57.04,37.33,61.13,43.2,8.333333333333334,1,1,0,0,0,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 -13047,16068,29018,-9,29017,29019,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3505,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 -13047,16068,29019,29017,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,9.5518599,9.4950361,0,19,0,73.535927,0,2,3,2019,6,0,60,51,1,0,0,28.315081,28.315081,0,0,0,0,0,0,0,0,5.8715568,0,61.13,43.2,57.04,37.33,3.333333333333333,1,1,0,0,8,9,5,1,1968,1774840.3,400081.13,944140.75,0,5870.8555 -13048,16069,29020,29021,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,7.7210302,7.690784,10,-4,-18.974836,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.8582878,7.9889379,55.18,17.58,59.08,33.88,3.333333333333333,1,1,0,0,0,9,3,1,124.5,758186.56,262122.73,467966.31,0,2008.2235 -13048,16069,29021,29020,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.805233,6.3947978,10,4,-74.109444,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9394479,6.6271029,59.08,33.88,55.18,17.58,8.333333333333334,1,1,0,0,0,9,3,1,124.5,758186.56,262122.73,467966.31,0,2008.2235 -13049,16070,29022,29024,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,6.0297956,6.4786754,5.2976251,27,-6,-15.931936,0,2,2,2019,8,0,13,6,1,0,0,5.3301473,5.3301473,0,0,0,0,0,1,1,0,1.8764235,5.4265537,54.69,57.47,62.39,56.71,10,1,1,0,0,7,6,4,1,995.66669,224027.69,339.21841,107302.66,45651.871,2840.3542 -13049,16070,29023,-9,29022,29024,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-888.02411,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,2.7699473,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,995.66669,224027.69,339.21841,107302.66,45651.871,2840.3542 -13049,16070,29024,29022,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.3663177,8.3813677,7.3961329,8,6,3.9522262,0,-9,-9,2019,6,0,40,40,1,0,0,9.118371,9.118371,0,0,0,0,0,1,1,0,4.0539408,7.1466308,62.39,56.71,54.69,57.47,8.333333333333334,1,1,0,0,10,6,4,1,995.66669,224027.69,339.21841,107302.66,45651.871,2840.3542 -13050,16071,29025,29026,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.5614133,5.7257299,46,-1,53.160267,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.0712028,5.1676431,56.33,51.02,60.29,52.11,8.333333333333334,1,1,0,0,0,9,3,1,427.5,1329217.5,932429.94,738776.75,0,1876.6091 -13050,16071,29026,29025,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.9204173,8.2511768,8,1,-38.800335,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.8878608,7.8395448,60.29,52.11,56.33,51.02,8.333333333333334,1,1,0,0,7,9,3,1,427.5,1329217.5,932429.94,738776.75,0,1876.6091 -13051,16072,29027,29028,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.9464636,8.8344917,7.6350918,6,-3,-169.44997,0,3,3,2019,16,4,37,39,1,4,0,19.607723,19.607723,0,0,0,0,0,1,1,0,2.5278029,7.7811823,49.04,55.86,45.32,29.43,6.666666666666667,1,1,0,0,9,2,5,1,262,1578321.5,1414333.5,167726.84,0,4002.0857 -13051,16072,29028,29027,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,5.0533981,5.3516936,2.099426,6,3,-148.90671,0,3,3,2019,12,0,2,0,1,0,0,8.0583878,8.0583878,0,0,0,0,2,1,1,0,1.9781462,1.9524876,45.32,29.43,49.04,55.86,8.333333333333334,1,1,0,0,1,2,5,1,262,1578321.5,1414333.5,167726.84,0,4002.0857 -13052,16073,29029,29030,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,7.7522769,7.7350712,0,27,3,-35.665977,0,3,3,2019,1,0,38,40,1,0,0,8.9084654,8.9084654,0,0,0,0,0,0,0,0,0,0,57.36,50.71,53.01,54.06,8.333333333333334,2,3,0,0,11,8,3,1,819.5,152273.91,56790.672,0,0,1624.6461 -13052,16073,29030,29029,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.3338394,7.3193593,0,27,-3,-22.17193,0,3,2,2019,3,0,15,21,1,0,0,11.067373,11.067373,0,0,0,0,0,0,0,0,0,0,53.01,54.06,57.36,50.71,10,2,3,0,0,11,8,3,1,819.5,152273.91,56790.672,0,0,1624.6461 -13052,16074,29031,-9,29030,29029,1,1,21,0,0,0,2,2,-9,0,4,7.424849,7.683948,0,0,0,-1072.5757,0,2,1,2019,3,0,32,0,1,0,1,5.87851,5.87851,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,6.666666666666667,2,3,0,1,1,8,3,1,2147,17976.348,85789.242,0,0,118.13492 -13053,16075,29032,29033,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,8.1029892,8.3593321,0,7,0,46.713203,0,3,3,2019,15,4,48,48,1,4,0,9.711916,9.711916,0,0,0,0,0,1,1,0,0,0,47.21,49.76,43.95,51.24,5,1,1,0,0,11,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 -13053,16075,29033,29032,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,6.9558649,6.8990264,0,7,0,-66.457047,0,-9,-9,2019,10,2,22,22,1,2,0,6.6448817,6.6448817,0,0,0,0,0,1,1,0,0,0,43.95,51.24,47.21,49.76,5,1,1,0,0,5,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 -13053,16075,29034,-9,29033,29032,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.6015,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 -13053,16075,29035,-9,29033,29032,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.92639,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,474,-73374.328,3379.3662,0,0,2226.3501 -13054,16076,29036,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.3917704,8.4392071,0,0,0,-962.76935,0,3,3,2019,11,0,45,45,1,0,0,12.492007,12.492007,0,0,0,0,0,1,1,0,2.5342131,0,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,582,-260236.59,-182445.42,0,0,1830.9174 -13055,16077,29037,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,0,0,0,0,-971.27179,0,-9,-9,2019,16,4,0,20,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,55.9,-9,-9,3.333333333333333,2,3,1,1,1,7,1,0,277,0,0,0,0,970.70819 -13056,16078,29038,29039,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.7282763,5.6697741,48,-7,122.24403,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6920438,0,60.13,49.27,57.16,56.15,8.333333333333334,1,1,0,0,8,6,2,1,1028,1958132.6,23231.41,258467.19,0,1798.6609 -13056,16078,29039,29038,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.0867801,6.039319,8,7,5.0327396,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2171302,57.16,56.15,60.13,49.27,10,1,1,0,0,4,6,2,1,1028,1958132.6,23231.41,258467.19,0,1798.6609 -13057,16079,29040,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,0,7.42272,7.2519636,0,0,-915.79968,1,-9,-9,2019,7,0,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,8.286438,7.6432848,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,400,336408.84,346175.78,0,0,2294.7112 -13057,16080,29041,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.7324677,7.5190492,0,0,0,-969.48077,0,-9,-9,2019,8,0,35,0,1,0,0,5.6815548,5.6815548,0,0,0,0,0,0,0,0,1.3094673,0,50.11,55.32,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1568,16566.328,4580.7656,0,0,598.18732 -13058,16081,29042,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.0898385,6.8933072,0,0,0,-1031.4768,0,-9,2,2019,10,1,18,22,1,1,0,7.2453785,7.2453785,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,9,7,2,1,526,1049316.4,162073.28,893433.13,0,676.20685 -13059,16082,29043,29044,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.8477545,8.3057137,9,-1,-71.806358,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8831294,8.0099535,59.55,17.35,60.3,46.58,6.666666666666667,1,1,0,0,1,1,3,1,427,1457548.6,542376.81,231891.78,0,1906.1248 -13059,16082,29044,29043,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,44,1,57.108395,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,59.55,17.35,10,1,1,0,0,2,1,3,1,427,1457548.6,542376.81,231891.78,0,1906.1248 -13060,16083,29045,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1071.4768,0,2,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,553,263451.84,0,68740.164,0,786.50208 -13061,16084,29046,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0062828,7.9590006,0,0,0,-876.78064,0,2,2,2019,20,6,38,38,1,6,0,8.8832111,8.8832111,0,0,0,0,0,0,0,0,.80663264,0,49.53,43.39,-9,-9,3.333333333333333,1,1,0,0,9,5,4,1,239,169615.45,104189.34,103942.52,0,1593.8868 -13062,16085,29047,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.6099114,6.3189664,0,0,0,-1061.7264,0,1,1,2019,11,0,30,25,1,0,0,2.5353684,2.5353684,0,0,0,0,0,1,1,0,0,0,53.31,33.62,-9,-9,10,4,2,0,0,11,10,2,0,1427,334151.88,0,0,0,1091.777 -13063,16086,29048,29050,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,0,0,0,19,4,-43.560493,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.21,36.99,8.333333333333334,1,1,0,0,8,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 -13063,16086,29049,-9,29048,29050,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-929.10339,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 -13063,16086,29050,29048,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,8.1161356,8.1847801,0,18,-4,-19.863653,0,3,2,2019,11,0,40,40,1,0,0,11.554793,11.554793,0,0,0,0,0,1,1,0,1.159898,0,60.21,36.99,54.96,53.17,6.666666666666667,1,1,0,0,12,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 -13063,16086,29051,-9,29048,29050,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.2858,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,800.25,230952.44,0,412476.66,102855.27,1377.3597 -13064,16087,29052,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.9020791,7.6414385,0,0,-1057.6383,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.835125,7.9375486,56.65,39.94,-9,-9,10,1,1,0,0,0,8,3,1,485,891200.44,590027.38,152700.38,0,2266.0222 -13065,16088,29053,29054,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-35.214027,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,1.6653184,0,0,0,1,1,0,5.9410486,0,50.86,23.98,41.12,43.31,8.333333333333334,1,1,0,0,0,9,3,1,1471.5,440926.19,253803.67,442673.16,0,2698.3782 -13065,16088,29054,29053,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.1458712,8.0089998,6,1,-14.629282,0,-9,2,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.4559665,7.9465423,41.12,43.31,50.86,23.98,6.666666666666667,1,1,0,0,0,9,3,1,1471.5,440926.19,253803.67,442673.16,0,2698.3782 -13066,16089,29055,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.9894238,9.1821098,0,0,0,-855.39966,0,2,1,2019,17,5,50,50,1,5,0,20.242857,20.242857,0,0,0,0,0,1,1,0,0,0,35.05,32.77,-9,-9,1.666666666666667,1,1,0,0,10,9,5,1,1814,847376.44,947309.69,228976.53,10352.151,4743.125 -13066,16090,29056,-9,-9,29055,1,0,25,0,0,0,2,2,-9,0,2,7.9804091,7.9514799,0,0,0,-942.80066,0,-9,2,2019,7,0,35,41,1,0,1,9.4911699,9.4911699,0,0,0,0,0,1,1,0,0,0,60.54,42.81,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,1093,183801.52,0,0,0,486.8833 -13066,16091,29057,-9,-9,29055,1,0,24,0,0,0,1,1,-9,0,2,7.5698113,7.3065739,0,0,0,-878.78772,0,-9,2,2019,10,0,37,-9,1,0,1,5.5881519,5.5881519,0,0,0,0,0,1,1,0,0,0,58.56,43.75,-9,-9,6.666666666666667,1,1,0,1,8,9,3,1,463,74082.484,-105761.69,0,0,392.75858 -13067,16092,29058,29059,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,3,-3,32.699051,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.7,18.23,59.79,19.84,8.333333333333334,1,1,0,0,0,7,2,1,1061.5,354379.81,-46202.387,127962.63,0,1614.645 -13067,16092,29059,29058,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,4.6834097,4.9684258,3,3,82.676643,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.41156214,4.2741184,59.79,19.84,45.7,18.23,8.333333333333334,1,1,0,0,0,7,2,1,1061.5,354379.81,-46202.387,127962.63,0,1614.645 -13068,16093,29060,29061,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.5433273,8.575366,0,38,-6,102.13698,0,3,3,2019,16,4,40,52,1,4,0,13.806931,13.806931,0,0,0,0,0,0,0,0,2.6603947,0,47.64,37.66,54.79,55.86,3.333333333333333,2,3,0,0,11,6,5,1,415,924137.5,64220.992,477366.34,51614.602,4667.2588 -13068,16093,29061,29060,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.932703,8.505827,6.9835567,9,6,-11.755337,0,-9,-9,2019,7,0,38,38,1,0,0,19.384092,19.384092,0,0,0,0,0,0,0,0,6.6610084,7.3449821,54.79,55.86,47.64,37.66,8.333333333333334,2,3,0,0,11,6,5,1,415,924137.5,64220.992,477366.34,51614.602,4667.2588 -13068,16094,29062,-9,29060,29061,1,1,29,0,0,0,1,1,-9,0,4,8.5356169,8.6251812,0,0,0,-1094.3915,0,3,2,2019,7,0,40,38,1,0,1,13.88537,13.88537,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,2,6,5,1,875,251526.53,124548.17,173818.16,132267.16,1345.6948 -13069,16095,29063,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.5614691,8.9646959,0,1,-5,21.744097,-9,2,2,2019,9,0,44,0,1,0,0,16.624683,16.624683,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49,56,6.666666666666667,1,1,0,0,8,2,4,1,812,197393.42,50083.578,58657.781,33310.195,1940.3429 -13070,16096,29064,29065,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0446444,8.1546135,0,9,20,-129.48053,0,2,2,2019,2,0,33,50,1,0,0,13.404016,13.404016,0,0,0,0,0,0,0,0,2.054275,0,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,10,10,4,1,419,-90890.453,44994.813,0,0,2294.3438 -13070,16096,29065,29064,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.9089422,7.5932627,0,9,-20,-25.922424,0,-9,-9,2019,7,0,39,36,1,0,0,7.6275296,7.6275296,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,4,1,419,-90890.453,44994.813,0,0,2294.3438 -13071,16097,29066,-9,29067,-9,1,0,35,0,0,0,2,2,-9,0,3,8.0122604,8.0933228,0,0,0,-1102.0015,0,2,2,2019,11,0,37,36,1,0,0,10.997353,10.997353,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,189,421889.38,-94956.391,0,0,1867.0968 -13071,16098,29067,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.4266076,5.4223609,0,0,-978.05292,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.319397,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,256,284677.69,52218.129,150293.17,0,313.53156 -13072,16099,29068,29069,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.6908526,7.7607841,3,-2,-28.146103,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8180535,7.7422652,48.45,57.49,49.04,55.86,8.333333333333334,1,1,0,0,0,13,5,1,627.5,2541106,1766593.8,645484.25,45741.086,5051.1348 -13072,16099,29069,29068,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.4167004,8.0573826,39,2,63.562992,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4916496,49.04,55.86,48.45,57.49,6.666666666666667,1,1,0,0,6,13,5,1,627.5,2541106,1766593.8,645484.25,45741.086,5051.1348 -13073,16100,29070,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9713054,8.1254797,0,0,-1061.0665,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6578007,7.8181086,48.53,52.16,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,787,433670.94,247177.64,137724.42,0,3107.564 -13074,16101,29071,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.0352,0,2,1,2019,6,0,0,0,4,0,0,0,0,1,0,5.0350156,0,0,1,1,0,6.8558559,0,61.87,31.31,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,903,-39501.098,0,0,0,1346.4 -13075,16102,29072,29073,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,0,0,6,-2,7.7690897,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8697124,0,54.79,55.86,50.13,47.52,8.333333333333334,1,1,0,0,0,6,2,1,1391,358093.75,177509.91,89722.844,0,1860.0779 -13075,16102,29073,29072,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.4713554,7.2090788,6,2,-50.376003,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.4830036,7.3691616,50.13,47.52,54.79,55.86,10,1,1,0,0,0,6,2,1,1391,358093.75,177509.91,89722.844,0,1860.0779 -13076,16103,29074,-9,29075,29076,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.2701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,940,337619.81,218545.27,394820.75,108435.52,2486.9807 -13076,16103,29075,29076,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,0,0,0,23,-1,61.26532,0,2,2,2019,10,0,0,17,3,0,0,0,0,0,0,0,0,0,1,1,0,.34391358,0,52,54.51,46.08,57.2,8.333333333333334,1,1,0,0,9,10,4,1,940,337619.81,218545.27,394820.75,108435.52,2486.9807 -13076,16103,29076,29075,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.7961321,8.5598984,0,11,1,86.232002,-9,-9,-9,2019,11,0,65,0,1,0,0,12.129495,12.129495,0,0,0,0,0,1,1,0,2.6861694,0,46.08,57.2,52,54.51,6.666666666666667,1,1,0,0,4,10,4,1,940,337619.81,218545.27,394820.75,108435.52,2486.9807 -13077,16104,29077,29079,-9,-9,1,0,45,0,2,0,1,1,-9,1,3,7.8939519,7.4598575,0,17,-1,61.590096,0,3,3,2019,23,9,24,22,1,9,0,12.626109,12.626109,0,0,0,0,74.5,1,1,0,0,0,22.65,64.05,33.18,60.48,3.333333333333333,1,1,0,0,10,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 -13077,16104,29078,-9,29077,29079,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.3146,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 -13077,16104,29079,29077,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.6521111,8.752656,0,17,1,1.731645,0,2,2,2019,20,8,40,40,1,8,0,14.44299,14.44299,0,0,0,0,0,1,1,0,2.4216783,0,33.18,60.48,22.65,64.05,3.333333333333333,1,1,0,1,11,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 -13077,16104,29080,-9,29077,29079,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.4816,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,4,1,901.5,251745.56,58827.141,299478.5,144911.19,4022.1982 -13078,16105,29081,-9,29083,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.52911,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1163.6666,76383.172,98786.984,0,0,2487.05 -13078,16105,29082,-9,29083,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-987.0376,-9,1,-9,2019,17,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,60.73,39.4,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1163.6666,76383.172,98786.984,0,0,2487.05 -13078,16105,29083,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,1,8.5605793,8.7181702,6.8532677,0,0,-891.75317,0,2,3,2019,23,11,38,37,1,11,0,20.100296,20.100296,0,0,0,0,0,1,1,0,7.4423141,0,32.09,30.06,-9,-9,1.666666666666667,1,1,0,0,9,13,4,1,1163.6666,76383.172,98786.984,0,0,2487.05 -13079,16106,29084,29085,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.5645323,7.3380156,5.9744682,12,-7,60.621765,0,2,2,2019,10,0,23,23,1,0,0,6.7119508,6.7119508,0,0,0,0,0,0,0,0,4.2108192,5.8293037,60.84,44.98,54.79,55.86,8.333333333333334,1,1,0,0,9,4,3,1,2995,679540,585175.19,128361.63,0,2264.2568 -13079,16106,29085,29084,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,7.3422194,7.3267117,12,7,80.917458,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.9154506,7.3368425,54.79,55.86,60.84,44.98,8.333333333333334,1,1,0,0,3,4,3,1,2995,679540,585175.19,128361.63,0,2264.2568 -13080,16107,29086,29087,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,26,3,0,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,36.72,31.87,55.25,3.333333333333333,1,1,0,0,0,7,1,0,1453,10188.078,0,0,0,1982.4084 -13080,16107,29087,29086,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,26,-3,0,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,31.87,55.25,26.95,36.72,5,1,1,0,0,0,7,1,0,1453,10188.078,0,0,0,1982.4084 -13080,16108,29088,-9,29087,29086,1,0,21,0,0,0,2,2,-9,0,5,7.6026764,7.9465299,0,0,0,-1101.5626,0,2,2,2019,6,0,43,40,1,0,1,5.2991757,5.2991757,0,0,0,0,7,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,7,3,0,769,37003.141,0,0,0,748.73407 -13081,16109,29089,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.2965341,6.2789888,0,0,-1087.931,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3452668,20.83,51.56,-9,-9,5,1,1,0,0,0,11,2,0,1189,446239.91,-35320.379,155149.2,0,1568.5579 -13082,16110,29090,29091,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.728013,8.7827692,0,10,-7,-15.164075,0,-9,-9,2019,7,0,43,43,1,0,0,16.096243,16.096243,0,0,0,0,7,1,1,0,0,0,49.64,48.69,27.97,34.66,6.666666666666667,1,1,0,0,13,9,4,1,628,2975.125,34343.059,195930.44,113356.27,2939.8613 -13082,16110,29091,29090,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,25,7,-24.050377,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,2.4655051,0,27.97,34.66,49.64,48.69,3.333333333333333,1,1,0,0,0,9,4,1,628,2975.125,34343.059,195930.44,113356.27,2939.8613 -13082,16111,29092,-9,29091,29090,1,0,21,0,0,0,2,2,-9,0,4,7.8690634,7.583179,0,0,0,-1029.1199,-9,2,2,2019,12,0,58,0,1,0,1,4.8880687,4.8880687,0,0,0,0,2,1,1,0,1.6333004,0,45.54,53.57,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,211,-438487.75,72938.797,0,0,1493.7618 -13083,16112,29093,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,7.0748367,7.4471283,6.1227894,0,0,-946.96765,0,3,2,2019,22,10,22,23,1,10,0,8.054038,8.054038,0,0,0,0,0,1,1,0,1.5232514,5.8285594,40.38,34.42,-9,-9,6.666666666666667,1,1,0,0,11,4,3,0,232,244903.78,0,0,0,1216.4637 -13084,16113,29094,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,5.645709,6.1867342,0,0,-998.53925,0,3,3,2019,21,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,5.3958111,5.9919062,38.57,37.4,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,566,7316.6875,0,0,0,604.61041 -13085,16114,29095,29096,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,8.1426888,8.0528078,7,4,-72.694069,0,2,3,2019,11,2,0,2,4,2,0,0,0,0,0,0,0,2,0,0,0,2.4626594,7.9720855,45.91,59.89,44.92,57.6,5,1,1,0,0,10,10,5,1,352.5,1633627.6,726783.13,1241859.3,374634.41,4615.0508 -13085,16114,29096,29095,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.3105793,9.684473,0,7,-4,52.567188,0,2,2,2019,12,0,37,40,1,0,0,34.670689,34.670689,0,0,0,0,2,0,0,0,1.9573225,0,44.92,57.6,45.91,59.89,8.333333333333334,1,1,0,0,10,10,5,1,352.5,1633627.6,726783.13,1241859.3,374634.41,4615.0508 -13086,16115,29097,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.6180086,7.6044717,0,0,0,-1094.8717,0,2,2,2019,6,0,30,30,1,0,0,10.730168,10.730168,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,838,232342.66,48737.398,0,0,915.29492 -13086,16116,29098,-9,29097,-9,1,0,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1014.9063,1,2,-9,2019,5,0,0,16,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,5,12,1,1,4587,207308.83,0,0,0,732.6557 -13086,16117,29099,-9,29097,-9,1,0,19,0,0,0,2,2,-9,0,3,7.7988415,7.5551119,0,0,0,-1008.9916,0,2,-9,2019,23,11,35,35,1,11,1,6.6052432,6.6052432,0,0,0,0,0,1,1,0,0,0,22.65,64.05,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,678,91225.852,90737.563,0,0,821.33667 -13086,16118,29100,-9,29097,-9,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-910.98914,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,36.61,49.7,-9,-9,5,1,1,0,0,1,12,1,1,1401,109450.29,0,0,0,158.879 -13087,16119,29101,-9,29104,29102,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-834.01355,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 -13087,16119,29102,29104,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.9135904,8.8082113,0,10,0,123.54769,0,1,1,2019,8,0,52,55,1,0,0,15.087552,15.087552,0,0,0,0,0,1,1,0,0,0,62.49,55.09,41.23,59.35,6.666666666666667,1,1,0,0,7,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 -13087,16119,29103,-9,29104,29102,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5852,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 -13087,16119,29104,29102,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.1927891,8.1389408,0,10,0,19.968004,0,2,2,2019,17,5,24,24,1,5,0,20.678593,20.678593,0,0,0,0,0,1,1,0,6.7962184,0,41.23,59.35,62.49,55.09,8.333333333333334,1,1,0,0,9,5,5,1,537.75,155098.95,172172.45,267184.75,0,3957.3279 -13088,16120,29105,29106,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.3904524,7.3860416,0,8,1,83.438103,0,1,2,2019,13,2,24,28,1,2,0,6.5367498,6.5367498,0,0,0,0,0,1,1,0,0,0,35.86,64.55,37.13,55.9,10,1,1,0,0,9,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 -13088,16120,29106,29105,-9,-9,1,1,38,0,3,0,2,2,-9,0,3,8.5108738,8.5517702,0,8,-1,-11.814062,0,2,2,2019,14,2,48,48,1,2,0,12.65226,12.65226,0,0,0,0,0,1,1,0,0,0,37.13,55.9,35.86,64.55,8.333333333333334,1,1,0,0,9,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 -13088,16120,29107,-9,29105,29106,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.2868,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 -13088,16120,29108,-9,29105,29106,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.90936,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 -13088,16120,29109,-9,29105,29106,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.63879,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,914.20001,276324,82846.148,198063.28,120180.67,2944.7405 -13089,16121,29110,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,4.0171442,3.6391947,0,0,-1001.5162,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1122437,3.6744506,51.37,35.92,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,331,28166.949,96952.031,0,0,465.26865 -13090,16122,29111,-9,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,6.7427983,6.7445326,0,0,0,-956.79785,0,3,3,2019,19,7,14,8,1,7,0,7.5410857,7.5410857,0,0,0,0,42,1,1,0,0,0,30.35,63.29,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,6848,-336798.41,0,0,0,2279.1589 -13091,16123,29112,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8653641,7.7608414,3.8062871,0,0,-1044.7444,0,3,3,2019,11,0,35,38,1,0,0,7.8042216,7.8042216,0,0,0,0,7,0,0,0,3.922143,3.8419609,57.94,40.76,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,472,185517.88,0,0,0,1060.1572 -13091,16124,29113,-9,29112,-9,1,1,35,0,0,0,2,2,-9,0,3,8.3287601,8.1802826,0,0,0,-1001.4181,0,3,-9,2019,13,1,37,37,1,1,1,14.719912,14.719912,0,0,0,0,0,0,0,0,0,0,43.9,57.01,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,817,160688.45,0,0,0,932.30695 -13092,16125,29114,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7854176,7.432034,0,0,-995.44342,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.8709674,7.8942389,55.96,49.93,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,1164,926812.94,494137.56,503480.66,0,2043.3757 -13093,16126,29115,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,1,9.0313911,9.1144266,0,0,0,-909.36005,0,-9,-9,2019,29,10,50,0,1,10,0,20.830036,20.830036,0,0,0,0,0,0,0,0,0,0,30.15,54.28,-9,-9,1.666666666666667,1,1,0,0,1,4,5,1,355,447878.53,234127.8,0,0,3082.6099 -13094,16127,29116,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,8.2212076,7.9648113,0,0,-875.62469,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,5.6991363,8.0639782,66.2,27.84,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,623,598230.5,469898.25,320580.19,0,1424.0442 -13095,16128,29117,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.2214112,7.0573549,0,0,-981.88214,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,14.5,1,1,0,0,7.1480756,59.47,38.95,-9,-9,10,1,1,0,0,0,9,3,1,187,160294.28,140020.41,227498.06,0,907.33221 -13096,16129,29118,-9,29121,29119,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-957.44006,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 -13096,16129,29119,29121,-9,-9,1,1,43,2,2,0,1,1,-9,0,5,7.3773413,7.714623,0,4,7,-192.36998,0,2,2,2019,6,0,28,27,1,0,0,5.299509,5.299509,0,0,0,0,2,1,1,0,0,0,47.76,55.38,46.53,61.33,8.333333333333334,1,1,0,0,10,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 -13096,16129,29120,-9,29121,29119,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-970.0174,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 -13096,16129,29121,29119,-9,-9,1,0,36,2,2,0,1,1,-9,0,5,8.0222597,8.6454554,0,4,-7,-17.082952,0,-9,-9,2019,9,0,30,30,1,0,0,10.873386,10.873386,0,0,0,0,2,1,1,0,1.3256091,0,46.53,61.33,47.76,55.38,8.333333333333334,1,1,0,0,9,12,3,1,1274.25,376620.91,-1611.8455,288438.25,86171.281,2840.3396 -13097,16130,29122,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1109.6909,0,1,2,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,31.04,41.42,-9,-9,3.333333333333333,1,1,0,1,5,1,1,0,337,290286.44,0,94842.32,0,1068.7916 -13098,16131,29123,29125,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.9183269,7.9789658,0,7,-3,-55.843998,0,-9,-9,2019,13,0,22,22,1,2,0,12.31934,12.31934,0,0,0,0,0,1,1,0,0,0,34.46,58.24,44.19,58.01,6.666666666666667,1,1,0,0,10,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 -13098,16131,29124,-9,29123,29125,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.8099,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 -13098,16131,29125,29123,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.7177448,8.9521065,0,7,3,27.554123,0,-9,-9,2019,15,4,35,38,1,4,0,17.040291,17.040291,0,0,0,0,0,1,1,0,0,0,44.19,58.01,34.46,58.24,8.333333333333334,3,4,0,0,10,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 -13098,16131,29126,-9,29123,29125,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.75372,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,451.5,333817.75,197449.05,419478.38,134992.61,3585.4099 -13099,16132,29127,-9,29128,29129,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-936.15759,-9,2,1,2019,13,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1515,97993.75,105261.51,165793.91,148875.81,4219.3779 -13099,16132,29128,29129,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.2771273,7.7302094,0,10,2,-148.2607,0,2,3,2019,20,8,39,39,1,8,0,7.8459039,7.8459039,0,0,0,0,0,1,1,0,0,0,42.76,49.72,53.11,47.09,3.333333333333333,1,1,0,0,10,2,5,1,1515,97993.75,105261.51,165793.91,148875.81,4219.3779 -13099,16132,29129,29128,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.9572344,8.6887522,0,10,-2,-33.86211,0,2,3,2019,11,0,50,-9,1,2,0,16.937223,16.937223,0,0,0,0,2,1,1,0,2.8612521,0,53.11,47.09,42.76,49.72,6.666666666666667,1,1,0,0,11,2,5,1,1515,97993.75,105261.51,165793.91,148875.81,4219.3779 -13100,16133,29130,-9,29131,29132,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6452,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,4,0,1171,442258.44,213927.38,339390.63,225135.22,3306.3833 -13100,16133,29131,29132,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,0,0,22,-4,27.310987,0,2,2,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.49,53.12,45.01,57.46,1.666666666666667,4,2,0,1,6,9,4,0,1171,442258.44,213927.38,339390.63,225135.22,3306.3833 -13100,16133,29132,29131,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.8912945,8.4758577,0,22,4,-72.550781,-9,2,2,2019,8,0,37,0,1,0,0,25.327896,25.327896,0,0,0,0,0,1,1,0,0,0,45.01,57.46,23.49,53.12,6.666666666666667,1,1,0,0,9,9,4,0,1171,442258.44,213927.38,339390.63,225135.22,3306.3833 -13101,16134,29133,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8186202,6.8946118,0,0,-1018.8463,0,-9,1,2019,11,1,0,15,4,1,0,0,0,0,0,0,0,0,1,1,0,6.7944298,5.8205953,43.59,44.51,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,670,24334.047,28219.406,352958.59,0,805.93866 -13102,16135,29134,-9,29136,29137,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.8496,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,2429.5,90119.25,0,0,0,1996.636 -13102,16135,29135,-9,29136,29137,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.79102,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,2429.5,90119.25,0,0,0,1996.636 -13102,16135,29136,29137,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,5,-14,6.8155646,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,43.13,43.44,52.07,6.666666666666667,1,1,0,0,7,8,3,0,2429.5,90119.25,0,0,0,1996.636 -13102,16135,29137,29136,-9,-9,1,1,48,1,3,0,2,2,-9,0,3,7.7810054,7.7479944,0,5,14,36.940109,0,-9,-9,2019,11,2,50,46,1,2,0,7.6112113,7.6112113,0,0,0,0,0,1,1,0,0,0,43.44,52.07,47.11,43.13,8.333333333333334,1,1,0,0,3,8,3,0,2429.5,90119.25,0,0,0,1996.636 -13103,16136,29138,-9,29139,29140,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.01471,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 -13103,16136,29139,29140,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.3480954,7.5994377,4.1945353,6,-8,90.3825,0,2,3,2019,15,3,26,30,1,3,0,7.3445802,7.3445802,0,0,0,0,0,1,1,0,4.4811044,0,43.44,43.57,50,57,5,1,1,0,0,2,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 -13103,16136,29140,29139,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.033452,7.8630767,0,6,8,-23.622343,0,-9,-9,2019,10,0,37,39,1,1,0,9.5110521,9.5110521,0,0,0,0,0,1,1,0,0,0,50,57,43.44,43.57,7,1,1,0,0,1,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 -13103,16136,29141,-9,29139,29140,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.00256,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,391.5,166362.73,-28404.289,97610.625,64961.055,2208.0012 -13104,16137,29142,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7474384,8.8026743,0,0,0,-947.51685,-9,1,1,2019,10,0,35,0,1,0,0,19.509132,19.509132,0,0,0,0,0,0,0,0,3.8387823,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,251,115516.87,28172.359,0,0,2402.6123 -13105,16138,29143,29145,-9,-9,1,1,44,0,3,0,1,1,-9,0,3,9.1800804,9.3693066,3.0805931,14,6,44.93829,0,3,2,2019,11,3,30,20,1,3,0,47.102795,47.102795,0,0,0,0,0,1,1,0,3.118319,0,52.52,46.23,44.29,47.27,8.333333333333334,2,3,0,0,6,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 -13105,16138,29144,-9,29145,29143,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-887.57214,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 -13105,16138,29145,29143,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,14,-6,-12.802258,0,3,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,44.29,47.27,52.52,46.23,5,2,3,0,1,3,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 -13105,16138,29146,-9,29145,29143,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.43347,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 -13105,16138,29147,-9,29145,29143,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.55927,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,4,1,701.20001,647418.06,442846.78,286027.44,108368.19,5274.7974 -13106,16139,29148,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,7.004405,7.0452399,0,0,-865.8692,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,43.544502,0,0,1,1,0,0,6.8222022,55.6,7.62,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,714,434072.34,226115.78,85200.164,0,1512.161 -13107,16140,29149,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,7.2429757,7.5789781,0,0,-918.13879,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.221138,59.04,54.12,-9,-9,10,1,1,0,0,0,6,3,1,167,782453.94,213144.89,280859.09,0,1214.5695 -13108,16141,29150,-9,29153,29152,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.5048,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 -13108,16141,29151,-9,29153,29152,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.841,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 -13108,16141,29152,29153,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,7.6445589,8.247777,0,7,-8,-65.362083,0,1,1,2019,8,0,22,25,1,0,0,14.06944,14.06944,0,0,0,0,0,1,1,0,0,0,58.56,46.45,43.92,40.73,6.666666666666667,1,1,0,0,7,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 -13108,16141,29153,29152,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,7.8779845,7.5771523,0,7,8,-196.39992,0,2,3,2019,10,0,27,10,1,0,0,10.418426,10.418426,0,0,0,0,0,1,1,0,5.8722429,0,43.92,40.73,58.56,46.45,5,1,1,0,0,8,10,3,1,411.25,1388066,880292,390649.03,38394.047,3781.9922 -13109,16142,29154,-9,29158,29155,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1070.3544,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 -13109,16142,29155,29158,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,9.3814955,9.5329113,0,9,2,99.860107,0,3,3,2019,23,11,45,55,1,11,0,28.402855,28.402855,0,0,0,0,0,1,1,0,0,0,30.48,57.61,47.44,56.39,3.333333333333333,1,1,0,0,10,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 -13109,16142,29156,-9,29158,29155,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8239,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 -13109,16142,29157,-9,29158,29155,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1014.762,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 -13109,16142,29158,29155,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,7.2418761,7.1660185,0,9,-2,57.128689,0,2,3,2019,12,1,16,30,1,1,0,7.9186864,7.9186864,0,0,0,0,0,1,1,0,.92721438,0,47.44,56.39,30.48,57.61,8.333333333333334,1,1,0,0,10,9,4,1,707.79999,2351038.8,1187764.8,1359671,400330.22,4023.9412 -13110,16143,29159,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.6760283,7.7993202,0,0,0,-1066.606,0,-9,2,2019,14,3,30,38,1,3,0,11.960158,11.960158,0,0,0,0,0,0,0,0,0,0,37.89,54.38,-9,-9,6.666666666666667,1,1,0,0,8,4,3,1,441,100188.19,0,0,0,837.87213 -13111,16144,29160,29162,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5330772,8.6707745,0,11,6,75.387253,0,-9,-9,2019,12,0,37,37,1,0,0,20.307503,20.307503,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.79,55.86,8.333333333333334,1,1,0,0,12,6,5,1,1704.3334,463109.03,120650.77,378260.75,263967.5,3951.251 -13111,16144,29161,-9,29162,29160,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.5177,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1704.3334,463109.03,120650.77,378260.75,263967.5,3951.251 -13111,16144,29162,29160,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.3393335,8.6038008,0,11,-6,-144.00075,0,-9,-9,2019,12,0,87,40,1,0,0,8.1357441,8.1357441,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.96,53.17,8.333333333333334,1,1,0,0,12,6,5,1,1704.3334,463109.03,120650.77,378260.75,263967.5,3951.251 -13112,16145,29163,29164,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.9424376,7.8329234,0,37,1,151.29837,0,2,2,2019,10,1,40,40,1,1,0,11.599827,11.599827,0,0,0,0,0,0,0,0,0,0,62.81,30.81,55.77,42.25,3.333333333333333,1,1,0,0,8,1,5,1,288.5,845250.81,584913.75,185209.28,0,3449.2063 -13112,16145,29164,29163,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.712122,8.8226366,4.5943327,37,-1,-86.038963,0,3,2,2019,8,0,40,29,1,0,0,13.071897,13.071897,0,0,0,0,7,0,0,0,0,4.7329235,55.77,42.25,62.81,30.81,8.333333333333334,1,1,0,0,6,1,5,1,288.5,845250.81,584913.75,185209.28,0,3449.2063 -13112,16146,29165,-9,29164,29163,1,1,30,0,0,0,2,2,-9,0,3,8.4903517,8.0842209,0,0,0,-951.58765,0,2,2,2019,8,0,37,41,1,0,1,13.263397,13.263397,0,0,0,0,0,0,0,0,4.8639183,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,5,1,4,1,1065,-222747.63,9119.6387,170441.28,86305.117,1655.6818 -13113,16147,29166,29167,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.355279,8.2793589,0,34,-6,-18.227833,0,2,1,2019,9,0,24,25,1,0,0,20.891251,20.891251,0,0,0,0,0,0,0,0,7.8071451,0,51.24,58.84,58.72,51.29,8.333333333333334,1,1,0,0,12,7,5,1,144,648214.44,239804.94,205795.63,92628.766,5644.1138 -13113,16147,29167,29166,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.8718767,8.9772253,0,35,6,74.110367,0,2,2,2019,5,0,66,32,1,0,0,12.875582,12.875582,0,0,0,0,0,0,0,0,0,0,58.72,51.29,51.24,58.84,8.333333333333334,1,1,0,0,12,7,5,1,144,648214.44,239804.94,205795.63,92628.766,5644.1138 -13114,16148,29168,29169,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.1275778,9.5326376,0,17,-5,-46.030708,0,2,2,2019,7,1,35,80,1,1,0,35.608925,35.608925,0,0,0,0,0,0,0,0,0,0,49.27,56.95,52.24,50.75,5,1,1,0,0,7,8,5,1,1133.5,1742186.8,1141439.9,526321.94,0,11732.544 -13114,16148,29169,29168,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,9.3405018,9.5977583,17,5,-213.24446,0,1,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,4.9144011,9.4533997,52.24,50.75,49.27,56.95,8.333333333333334,1,1,0,0,0,8,5,1,1133.5,1742186.8,1141439.9,526321.94,0,11732.544 -13115,16149,29170,29171,-9,-9,1,1,66,0,1,0,2,2,-9,0,3,7.3905954,7.2558336,0,16,15,46.455078,0,2,2,2019,7,0,25,25,1,0,0,5.3279324,5.3279324,0,0,0,0,0,1,1,0,0,0,52.48,55.6,49.46,56.91,8.333333333333334,3,4,0,0,11,10,4,1,636,648203.44,289977.22,210168.8,39044.539,3043.9482 -13115,16149,29171,29170,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.7656145,8.2429266,0,16,-15,57.722408,0,-9,-9,2019,7,0,47,35,1,0,0,10.734503,10.734503,0,0,0,0,0,1,1,0,0,0,49.46,56.91,52.48,55.6,8.333333333333334,1,1,0,0,10,10,4,1,636,648203.44,289977.22,210168.8,39044.539,3043.9482 -13115,16149,29172,-9,29171,29170,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.30737,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,10,4,1,636,648203.44,289977.22,210168.8,39044.539,3043.9482 -13116,16150,29173,29174,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.0663815,8.111064,7,-3,26.634239,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.483068,7.772707,57.16,56.15,40.88,31.02,8.333333333333334,1,1,0,0,7,12,3,1,392.5,928092,645603.38,302609.53,0,1620.6703 -13116,16150,29174,29173,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,4.9787869,5.1757326,7,3,30.957024,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,5.7089872,5.3412676,40.88,31.02,57.16,56.15,3.333333333333333,1,1,0,0,3,12,3,1,392.5,928092,645603.38,302609.53,0,1620.6703 -13117,16151,29175,-9,29176,29177,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.37238,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,582.66669,109598.78,88457.047,227949.77,142116.02,3676.677 -13117,16151,29176,29177,-9,-9,1,0,32,1,1,0,2,2,-9,0,5,8.0328388,7.3360085,0,7,-2,-39.766705,0,2,2,2019,9,0,22,22,1,0,0,12.751259,12.751259,0,0,0,0,0,1,1,0,.4095808,0,46.4,59.87,44.22,56.66,10,1,1,0,0,8,11,5,1,582.66669,109598.78,88457.047,227949.77,142116.02,3676.677 -13117,16151,29177,29176,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,9.0196381,9.0068312,3.4506414,7,2,-122.45539,0,-9,-9,2019,8,0,47,45,1,0,0,16.13578,16.13578,0,0,0,0,0,1,1,0,3.50652,0,44.22,56.66,46.4,59.87,6.666666666666667,1,1,0,0,8,11,5,1,582.66669,109598.78,88457.047,227949.77,142116.02,3676.677 -13118,16152,29178,-9,29179,-9,1,1,55,0,0,0,2,2,-9,0,5,7.6964788,7.7133441,0,0,0,-788.02905,0,3,2,2019,7,0,37,37,1,0,0,9.4661665,9.4661665,0,0,0,0,0,1,1,0,1.4374177,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,356,257901.59,38514.441,0,0,1540.4137 -13118,16153,29179,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.59503,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,6.6431937,0,0,1,1,0,1.0658505,0,55.31,42.07,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1333,71260.602,0,0,0,404.22961 -13119,16154,29180,29181,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,9.0459986,8.990818,0,16,-4,52.627598,0,2,2,2019,8,0,44,39,1,0,0,22.285398,22.285398,0,0,0,0,0,0,0,0,4.4173732,0,48.87,58.55,48.45,57.49,8.333333333333334,1,1,0,0,9,11,5,1,646.5,1395365.1,1035022.3,247434,29874.109,6720.8623 -13119,16154,29181,29180,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.7951307,9.153924,0,6,4,-3.8454602,0,-9,-9,2019,11,0,41,45,1,0,0,21.564501,21.564501,0,0,0,0,0,0,0,0,6.8408918,0,48.45,57.49,48.87,58.55,8.333333333333334,1,1,0,0,2,11,5,1,646.5,1395365.1,1035022.3,247434,29874.109,6720.8623 -13120,16155,29182,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.0821662,5.0780692,0,0,-897.9342,0,3,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.3342557,51,49.37,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,299,216784.75,-34827.297,126799.67,0,633.68842 -13121,16156,29183,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.8597221,7.9239926,6.794363,0,0,-934.56189,0,3,3,2019,12,3,16,25,1,3,0,10.508227,10.508227,0,0,0,0,0,1,1,0,5.6438479,7.2966638,52.7,55.6,-9,-9,1.666666666666667,1,1,0,0,10,2,3,1,578,116128.4,101154.64,0,0,1717.0778 -13122,16157,29184,29185,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.6711621,7.7109456,0,48,0,-85.576698,-9,-9,-9,2019,10,0,40,0,1,1,0,6.2855196,6.2855196,0,0,0,0,0,1,1,0,3.4934781,0,52,48,56.35,35.1,7,2,3,0,0,1,2,4,1,942,2792147,1358453.3,449293.41,0,2876.6836 -13122,16157,29185,29184,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,7.8305683,8.2235355,0,48,0,-91.729126,0,2,2,2019,11,0,25,20,1,0,0,12.634574,12.634574,0,0,0,0,0,1,1,0,3.3499329,0,56.35,35.1,52,48,8.333333333333334,1,1,0,0,10,2,4,1,942,2792147,1358453.3,449293.41,0,2876.6836 -13123,16158,29186,-9,-9,-9,1,0,91,0,0,0,1,1,-9,0,1,0,8.1811247,7.8697567,0,0,-999.63885,0,-9,-9,2019,21,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,1.9860785,8.0090904,23.94,23.19,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,563,360259.31,151690.25,0,0,2772.748 -13124,16159,29187,29188,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,0,0,69,1,0,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,67.27,28.36,48.18,61.8,8.333333333333334,1,1,0,0,0,7,1,1,747.5,123182.78,126860.42,127757.84,0,1022.4068 -13124,16159,29188,29187,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,0,0,69,-1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,67.27,28.36,8.333333333333334,1,1,0,0,0,7,1,1,747.5,123182.78,126860.42,127757.84,0,1022.4068 -13125,16160,29189,29191,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.6495686,9.5429478,0,25,1,48.485443,0,2,1,2019,11,0,37,41,1,0,0,49.379784,49.379784,0,0,0,0,0,0,0,0,0,0,58.86,49.95,48.77,60.16,8.333333333333334,1,1,0,0,13,8,5,1,146.33333,944971.69,466476.63,613479.81,405275.13,8336.4805 -13125,16160,29190,-9,29191,29189,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-950.55225,-9,1,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,1,8,5,1,146.33333,944971.69,466476.63,613479.81,405275.13,8336.4805 -13125,16160,29191,29189,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.8083782,9.0087214,0,25,-1,-26.915482,0,2,2,2019,11,0,33,26,1,0,0,29.267801,29.267801,0,0,0,0,0,0,0,0,0,0,48.77,60.16,58.86,49.95,8.333333333333334,1,1,0,0,12,8,5,1,146.33333,944971.69,466476.63,613479.81,405275.13,8336.4805 -13125,16161,29192,-9,29191,29189,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-989.94708,-9,1,1,2019,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,.26262239,0,32.94,52.26,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,2209,0,0,0,0,146.47281 -13126,16162,29193,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.132844,9.0099163,0,0,0,-896.90253,0,3,-9,2019,6,0,25,30,1,0,0,38.981182,38.981182,0,0,0,0,0,0,0,0,7.077857,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,317,640821.38,600207.19,0,0,4115.9258 -13127,16163,29194,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.1004562,8.7328224,0,0,0,-871.22296,0,1,1,2019,11,0,48,50,1,0,0,22.817417,22.817417,0,0,0,0,0,1,1,0,5.8620944,0,47.29,55.39,-9,-9,8.333333333333334,4,5,0,0,8,5,5,1,362,263759.75,158417.44,123643.05,43172.75,2996.1638 -13128,16164,29195,-9,29196,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.1073,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,608,168478.55,65543.594,401229.16,302520.81,4026.1172 -13128,16164,29196,-9,-9,-9,1,0,45,1,1,0,1,1,-9,0,4,9.1842031,9.187974,0,0,0,-949.8609,-9,2,3,2019,8,0,50,0,1,0,0,20.925394,20.925394,0,0,0,0,0,0,0,0,6.5419164,0,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,608,168478.55,65543.594,401229.16,302520.81,4026.1172 -13129,16165,29197,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4509525,8.4884415,0,0,0,-899.47614,-9,2,2,2019,5,1,40,0,1,1,0,14.049006,14.049006,0,0,0,0,0,0,0,0,1.8729399,0,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,1625,201397.97,187884.91,0,0,2006.8887 -13130,16166,29198,29199,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.1051893,8.349103,24,15,181.47884,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,5.4894781,8.3314924,64.38,41.86,57.06,57.76,10,1,1,0,0,6,6,4,1,1896,3103231.5,1629005.5,590471,0,2773.8936 -13130,16166,29199,29198,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,0,0,0,24,-15,-27.913279,0,2,2,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.5323739,0,57.06,57.76,64.38,41.86,10,1,1,0,0,7,6,4,1,1896,3103231.5,1629005.5,590471,0,2773.8936 -13131,16167,29200,29201,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.732234,8.7507153,0,11,0,-150.55048,-9,1,1,2019,12,0,35,0,1,0,0,17.675459,17.675459,0,0,0,0,0,0,0,0,0,0,40.83,59.68,52,55,8.333333333333334,2,3,0,0,8,8,5,1,1091.5,948762,512483,295523.44,92169.344,4616.4985 -13131,16167,29201,29200,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.8070936,8.2550697,0,1,0,-6.6602712,-9,-9,-9,2019,9,0,50,0,1,1,0,10.013005,10.013005,0,0,0,0,0,0,0,0,7.3880181,0,52,55,40.83,59.68,8,2,3,0,0,1,8,5,1,1091.5,948762,512483,295523.44,92169.344,4616.4985 -13132,16168,29202,29204,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.6800561,7.7297192,0,7,-2,-71.425354,0,3,3,2019,17,6,7,30,1,6,0,34.203384,34.203384,0,0,0,0,42,1,1,0,0,0,43.12,58.55,50.03,52.62,8.333333333333334,1,1,0,1,8,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 -13132,16168,29203,-9,29202,29204,1,1,17,0,1,1,3,0,0,0,2,0,0,0,0,0,-1030.5449,-9,2,3,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,45.91,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 -13132,16168,29204,29202,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.5120487,8.6598005,0,7,2,46.939217,0,3,3,2019,10,0,37,37,1,0,0,18.226206,18.226206,0,0,0,0,0,1,1,0,0,0,50.03,52.62,43.12,58.55,8.333333333333334,1,1,0,0,8,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 -13132,16168,29205,-9,29202,29204,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.4026,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,1070.25,22919.199,140227.59,0,0,3205.3225 -13132,16169,29206,-9,29202,29204,1,0,22,0,1,0,1,1,-9,0,5,6.2416492,6.3338122,0,0,0,-939.04657,0,2,2,2019,7,0,6,6,1,0,1,9.0294285,9.0294285,0,0,0,0,0,1,1,0,.18365286,0,57.06,57.76,-9,-9,10,1,1,0,0,5,8,2,1,2033,30712.27,93368.938,0,0,118.98709 -13132,16170,29207,-9,29202,29204,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-994.21747,0,2,3,2019,8,0,0,7,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,0,1,1,0,0,4,8,1,1,803,200530.78,0,0,0,0 -13133,16171,29208,29210,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.2452812,8.2087688,0,17,-1,62.697041,0,1,1,2019,12,3,37,37,1,3,0,10.847149,10.847149,0,0,0,0,0,1,1,0,1.8429626,0,35.67,64.46000000000001,42.07,50.91,6.666666666666667,1,1,0,0,9,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 -13133,16171,29209,-9,29208,29210,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.85303,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 -13133,16171,29210,29208,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,8.2982798,8.2538805,0,17,1,-10.238997,0,2,1,2019,12,0,42,40,1,0,0,11.521662,11.521662,0,0,0,0,0,1,1,0,1.0299466,0,42.07,50.91,35.67,64.46000000000001,6.666666666666667,1,1,0,0,10,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 -13133,16171,29211,-9,29208,29210,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.1488,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,573.25,151706.38,22303.795,252945.91,153335.66,2370.3799 -13134,16172,29212,29214,-9,-9,1,0,31,0,1,0,3,3,-9,1,2,0,0,0,9,-1,0,0,3,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,42.64,50.88,8.333333333333334,1,1,1,0,0,5,1,0,773.66669,69176.297,4704.4072,0,0,2201.249 -13134,16172,29213,-9,29212,29214,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.33972,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,773.66669,69176.297,4704.4072,0,0,2201.249 -13134,16172,29214,29212,-9,-9,1,1,32,0,1,0,2,2,-9,1,3,0,0,0,9,1,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.64,50.88,52.24,50.75,5,1,1,1,0,0,5,1,0,773.66669,69176.297,4704.4072,0,0,2201.249 -13135,16173,29215,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.681499,6.8828397,0,0,-916.45343,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4992976,6.9684663,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,5,10,2,1,238,130457.18,30725.59,0,0,731.42505 -13136,16174,29216,29217,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.810298,7.4912553,6,10,-90.369171,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,2,1,1,0,7.3183131,7.6401844,36.03,43.31,49.41,58.28,8.333333333333334,1,1,0,0,0,9,3,1,649.5,974359,701338.5,350133.25,32313.959,1930.1462 -13136,16174,29217,29216,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.8895512,6.8806901,36,-10,-121.55363,0,2,3,2019,4,0,0,24,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.0575416,7.4196668,49.41,58.28,36.03,43.31,8.333333333333334,1,1,0,0,8,9,3,1,649.5,974359,701338.5,350133.25,32313.959,1930.1462 -13136,16175,29218,-9,29217,29216,1,0,29,0,0,0,1,1,-9,0,3,7.6436672,7.5235848,0,0,0,-1068.3423,0,2,2,2019,12,3,36,25,1,3,0,6.1711106,6.1711106,0,0,0,0,0,1,1,0,0,0,23.19,63.78,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,514,88017.695,0,0,0,1205.8878 -13137,16176,29219,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.6626267,7.3325639,0,0,0,-978.61786,0,2,2,2019,7,1,23,17,1,1,0,9.7715836,9.7715836,0,0,0,0,2,1,1,0,1.863979,0,47.66,52.33,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,629.33331,-220466.36,-5622.6758,0,0,1605.0194 -13137,16176,29220,-9,29219,-9,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1106.0962,-9,2,3,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.64,62,-9,-9,6.666666666666667,1,1,0,0,0,7,3,0,629.33331,-220466.36,-5622.6758,0,0,1605.0194 -13137,16176,29221,-9,29219,-9,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1129.0172,-9,2,3,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,7,3,0,629.33331,-220466.36,-5622.6758,0,0,1605.0194 -13138,16177,29222,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.7335439,6.3619514,0,0,-1100.0006,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.5459752,54,46,-9,-9,8,1,1,0,0,0,11,2,1,707,110252.32,284748.78,76096.398,0,1358.3689 -13139,16178,29223,29224,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5731907,8.5468273,0,7,0,-21.144188,0,-9,-9,2019,12,1,58,16,1,1,0,12.244354,12.244354,0,0,0,0,0,0,0,0,0,0,52,54.51,57.73,54.53,1.666666666666667,1,1,0,0,10,4,4,1,429.5,255775.16,268709.66,97878.078,34391.258,2558.605 -13139,16178,29224,29223,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.8295498,6.9065909,0,24,0,-21.828503,0,2,-9,2019,6,0,16,8,1,0,0,8.1237679,8.1237679,0,0,0,0,0,0,0,0,0,0,57.73,54.53,52,54.51,6.666666666666667,1,1,0,0,10,4,4,1,429.5,255775.16,268709.66,97878.078,34391.258,2558.605 -13140,16179,29225,-9,29226,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.1058,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,342.5,136553.33,87266.633,235824.56,98888.906,3488.5137 -13140,16179,29226,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,3,7.9092431,8.1511307,0,0,0,-904.93933,0,3,3,2019,11,0,32,34,1,0,0,10.785035,10.785035,0,0,0,0,0,1,1,0,0,0,52.58,47.36,-9,-9,6.666666666666667,1,1,0,0,8,9,3,1,342.5,136553.33,87266.633,235824.56,98888.906,3488.5137 -13140,16180,29227,-9,29226,-9,1,0,25,0,1,0,2,2,-9,0,4,8.1978788,8.0944471,0,0,0,-1038.2312,0,2,2,2019,7,0,40,40,1,0,1,10.539677,10.539677,0,0,0,0,0,1,1,0,0,0,43.84,57.1,-9,-9,10,4,2,0,0,8,9,4,1,1179,121745.37,-12353.726,0,0,2793.7129 -13140,16181,29228,-9,29226,-9,1,1,18,0,1,0,2,2,-9,0,5,0,0,0,0,0,-972.67572,1,2,-9,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,4,2,0,0,5,9,1,1,423,0,0,0,0,-334.54977 -13141,16182,29229,29230,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.5380583,8.8564615,46,-3,-28.56072,0,-9,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.99838847,8.4610138,55.36,51.57,54.2,57.49,8.333333333333334,1,1,0,0,0,7,4,1,513,1602581,682098.5,396770.81,0,3632.8811 -13141,16182,29230,29229,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.4145403,5.4624295,46,3,170.84239,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3973455,54.2,57.49,55.36,51.57,6.666666666666667,1,1,0,0,3,7,4,1,513,1602581,682098.5,396770.81,0,3632.8811 -13142,16183,29231,29233,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.3894281,8.3870125,0,18,2,-18.39962,-9,2,2,2019,6,0,40,0,1,0,0,11.559222,11.559222,0,0,0,0,0,1,1,0,0,0,41.17,59.31,46.06,60.24,10,1,1,0,1,8,2,3,1,970.33331,-129051.71,-3438.4343,0,0,2889.7266 -13142,16183,29232,-9,29233,29231,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.06311,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,970.33331,-129051.71,-3438.4343,0,0,2889.7266 -13142,16183,29233,29231,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,6.8790216,6.7850184,0,1,-2,120.89914,-9,-9,-9,2019,7,0,16,0,1,0,0,6.4637861,6.4637861,0,0,0,0,0,1,1,0,0,0,46.06,60.24,41.17,59.31,8.333333333333334,1,1,0,0,10,2,3,1,970.33331,-129051.71,-3438.4343,0,0,2889.7266 -13143,16184,29234,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.6653504,6.5734916,0,0,-1000.5817,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8957872,60.49,33.32,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,145,154516.61,54893.195,278339.19,0,1270.2893 -13144,16185,29235,29236,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,7.6229987,7.4417157,0,8,4,82.332436,0,-9,-9,2019,3,0,60,60,1,0,0,3.6577263,3.6577263,0,0,0,0,0,1,1,0,7.3378549,0,62.39,56.71,54.79,55.86,10,1,1,0,0,9,9,3,0,445.66666,-30865.053,67468.742,0,0,2414.418 -13144,16185,29236,29235,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.1600704,7.0976601,0,15,-4,55.294304,0,2,2,2019,12,0,20,16,1,0,0,7.7631593,7.7631593,0,0,0,0,0,1,1,0,0,0,54.79,55.86,62.39,56.71,6.666666666666667,1,1,0,0,9,9,3,0,445.66666,-30865.053,67468.742,0,0,2414.418 -13144,16185,29237,-9,29236,29235,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.54114,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,445.66666,-30865.053,67468.742,0,0,2414.418 -13145,16186,29238,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.8291302,9.5807486,6.6933012,0,0,-1026.854,0,2,1,2019,18,6,70,44,1,6,0,23.638401,23.638401,0,0,0,0,0,0,0,0,6.9052291,0,36.2,64.19,-9,-9,5,1,1,0,0,8,6,5,0,534,-82929.563,74474.148,127153.83,129671.77,7681.3188 -13146,16187,29239,29240,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,9.3953848,9.5212851,48,0,79.061302,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1008644,9.3781061,53.61,51.1,49.52,55.68,8.333333333333334,1,1,0,0,0,8,5,1,1105,1240151.5,-11078.102,1534365,110379.96,8374.4277 -13146,16187,29240,29239,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.9966917,7.8102431,48,0,-55.894726,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7481308,7.9892206,49.52,55.68,53.61,51.1,10,1,1,0,0,5,8,5,1,1105,1240151.5,-11078.102,1534365,110379.96,8374.4277 -13147,16188,29241,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.0977097,7.5227504,4.8435082,0,0,-999.45471,0,-9,2,2019,12,0,21,21,1,0,0,7.5838952,7.5838952,0,0,0,0,2,1,1,0,5.2374425,0,43.5,44.85,-9,-9,5,1,1,0,0,10,12,2,0,718,764995.38,632219.38,0,0,1372.2249 -13147,16188,29242,-9,29241,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.05786,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,718,764995.38,632219.38,0,0,1372.2249 -13148,16189,29243,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.1115084,5.6425285,0,0,-870.85815,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,0,1.6502738,0,0,1,1,0,0,5.9391632,51.39,21.21,-9,-9,0,1,1,0,0,0,5,2,1,1073,16331.468,120321.48,0,0,661.6839 -13149,16190,29244,29245,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,21,-5,3.6257906,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.25,44.4,35.52,36.57,8.333333333333334,1,1,0,0,0,13,2,0,411.5,6053.4004,-16653.203,102689.69,0,1449.8218 -13149,16190,29245,29244,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.0439775,3.1745343,26,5,-147.11795,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,39.669285,0,2,1,1,0,3.5452096,3.1635716,35.52,36.57,56.25,44.4,6.666666666666667,1,1,0,0,0,13,2,0,411.5,6053.4004,-16653.203,102689.69,0,1449.8218 -13150,16191,29246,29247,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,53,-3,-26.569197,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3876581,0,51.24,58.84,44.59,53.54,8.333333333333334,1,1,0,0,7,10,2,1,994.5,701108.69,257038.77,246019.53,0,1962.403 -13150,16191,29247,29246,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.0369768,6.8410406,53,3,13.112696,0,1,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2916021,7.135746,44.59,53.54,51.24,58.84,8.333333333333334,1,1,0,0,0,10,2,1,994.5,701108.69,257038.77,246019.53,0,1962.403 -13151,16192,29248,29250,-9,-9,1,0,28,0,1,0,3,3,-9,0,3,0,0,0,7,-24,22.852976,-9,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,52.43,49,50,1.666666666666667,1,1,0,0,0,8,3,0,543.66669,493042.41,135718.41,374622.59,0,2320.332 -13151,16192,29249,-9,29248,29250,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.646,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,8,3,0,543.66669,493042.41,135718.41,374622.59,0,2320.332 -13151,16192,29250,29248,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.722353,8.5089254,0,7,24,-125.15829,0,3,3,2019,11,0,44,43,1,2,0,10.579508,10.579508,0,0,0,0,0,1,1,0,0,0,49,50,47.85,52.43,7,1,1,0,1,6,8,3,0,543.66669,493042.41,135718.41,374622.59,0,2320.332 -13152,16193,29251,29253,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,7.6057239,7.2440777,0,25,3,-53.160648,0,3,2,2019,9,0,30,35,1,0,0,8.1856956,8.1856956,0,0,0,0,0,1,1,0,0,0,49.44,56.93,54.79,55.86,8.333333333333334,2,3,0,0,10,12,4,1,1131.6666,991294.5,74686.742,216038.73,0,3016.5864 -13152,16193,29252,-9,29251,29253,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1131.8802,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,4,1,1131.6666,991294.5,74686.742,216038.73,0,3016.5864 -13152,16193,29253,29251,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.6415348,8.5610437,0,25,-3,29.498823,0,2,1,2019,1,0,38,35,1,0,0,16.375193,16.375193,0,0,0,0,0,1,1,0,0,0,54.79,55.86,49.44,56.93,8.333333333333334,1,1,0,0,10,12,4,1,1131.6666,991294.5,74686.742,216038.73,0,3016.5864 -13153,16194,29254,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.7191501,8.5768518,6.9314413,0,0,-1180.6638,0,2,2,2019,9,0,20,30,1,0,0,11.782529,11.782529,0,0,0,0,0,1,1,0,6.6569595,7.186749,61.68,49.95,-9,-9,10,1,1,0,0,10,9,4,0,395,328298,-382.08698,97486.828,14361.013,1584.4535 -13154,16195,29255,29256,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.6391072,7.4795609,0,2,-5,-51.18507,0,2,2,2019,7,1,37,37,1,1,0,7.3699903,7.3699903,0,0,0,0,0,0,0,0,0,0,50.28,51.35,51.56,53.97,8.333333333333334,1,1,0,0,7,2,4,1,469,-15020.141,52309.016,105923.03,123022.14,2438.6523 -13154,16195,29256,29255,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.3602028,8.2829428,0,2,5,-47.92976,0,-9,-9,2019,8,0,38,38,1,0,0,11.15753,11.15753,0,0,0,0,0,0,0,0,0,0,51.56,53.97,50.28,51.35,8.333333333333334,1,1,0,0,5,2,4,1,469,-15020.141,52309.016,105923.03,123022.14,2438.6523 -13155,16196,29257,29258,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,32,7,0,0,-9,-9,2019,25,11,0,0,4,11,0,0,0,1,42.495975,43.02103,380.44327,0,1,1,0,0,0,30.77,22.6,15.05,29.93,5,1,1,0,0,0,2,1,0,1400,149754.91,0,133416.38,0,1932.9495 -13155,16196,29258,29257,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,42,1,1,0,0,0,15.05,29.93,30.77,22.6,5,1,1,0,0,0,2,1,0,1400,149754.91,0,133416.38,0,1932.9495 -13156,16197,29259,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-883.00861,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,32.91,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,484,-120877.48,0,0,0,1757.8224 -13157,16198,29260,29261,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.7724652,7.9090877,4,-5,24.117998,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8274021,7.5517821,41.87,59.15,57.33,53.46,8.333333333333334,1,1,0,0,7,10,3,1,867.5,1819074.3,717573.38,310633.88,0,2410.5854 -13157,16198,29261,29260,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,4,5,29.007343,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.6812358,0,57.33,53.46,41.87,59.15,8.333333333333334,1,1,0,0,7,10,3,1,867.5,1819074.3,717573.38,310633.88,0,2410.5854 -13158,16199,29262,29264,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,8.2004614,8.217351,0,7,3,3.6139507,0,2,2,2019,7,0,70,60,1,0,0,6.5093884,6.5093884,0,0,0,0,0,1,1,0,3.4148636,0,59.43,58.05,57.16,56.15,0,1,1,0,0,8,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 -13158,16199,29263,-9,29264,29262,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-902.46368,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 -13158,16199,29264,29262,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.2523527,8.2082825,0,7,-3,16.509287,0,2,3,2019,8,0,30,36,1,0,0,14.82069,14.82069,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.43,58.05,10,1,1,0,0,4,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 -13158,16199,29265,-9,29264,29262,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1109.9744,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,918142.81,598087.38,208689.77,103034.71,3123.7664 -13159,16200,29266,29267,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.1230488,6.5245442,63,1,-111.98414,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2676487,6.5102239,56.1,49.93,58.42,31.02,6.666666666666667,1,1,0,0,0,12,2,1,1530,173435.91,26904.494,0,0,1433.8064 -13159,16200,29267,29266,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,0,0,7,-1,-5.6427898,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0868182,0,58.42,31.02,56.1,49.93,10,1,1,0,0,0,12,2,1,1530,173435.91,26904.494,0,0,1433.8064 -13159,16201,29268,-9,29267,29266,1,0,57,0,0,0,2,2,-9,0,4,7.5142899,7.634233,0,0,0,-1133.551,0,2,2,2019,11,0,20,18,1,0,0,10.5225,10.5225,0,0,0,0,0,1,1,0,1.3758922,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,255,-2991.1814,-33512.07,0,0,1140.4066 -13160,16202,29269,-9,29270,29271,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-990.65503,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,583.66669,1001949.8,481156.19,437698.31,165735.44,4562.4868 -13160,16202,29270,29271,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,7.7774348,8.2747574,7.7616525,8,-5,57.375622,0,1,2,2019,21,9,38,35,1,9,0,6.6689892,6.6689892,0,0,0,0,0,1,1,0,7.3085608,0,28.83,48.24,51.25,50.81,3.333333333333333,1,1,0,0,9,10,5,1,583.66669,1001949.8,481156.19,437698.31,165735.44,4562.4868 -13160,16202,29271,29270,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,9.1278753,8.9306183,0,8,5,-28.871229,0,-9,-9,2019,11,1,37,37,1,1,0,25.329357,25.329357,0,0,0,0,0,1,1,0,2.8824258,0,51.25,50.81,28.83,48.24,6.666666666666667,1,1,0,0,10,10,5,1,583.66669,1001949.8,481156.19,437698.31,165735.44,4562.4868 -13161,16203,29272,29273,-9,-9,1,1,84,0,0,0,1,1,-9,0,5,0,8.6371059,8.7659702,58,5,26.964973,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1184883,8.8307543,59.04,54.12,52,45,8.333333333333334,1,1,0,0,7,13,5,1,539,0,0,0,0,5503.3779 -13161,16203,29273,29272,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.706234,6.8729539,58,-5,37.09774,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.340066,52,45,59.04,54.12,8,1,1,0,0,0,13,5,1,539,0,0,0,0,5503.3779 -13162,16204,29274,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,1,0,5.2780852,5.429656,0,0,-1099.901,0,3,2,2019,11,2,0,0,4,2,0,0,0,1,16.825336,4.8726187,0,0,1,1,0,4.2838345,5.4887376,47.38,12.71,-9,-9,5,1,1,0,0,0,12,2,1,396,696231.19,23303.041,481153.94,0,1950.9629 -13163,16205,29275,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4163342,8.4234705,0,0,0,-1012.3731,0,-9,-9,2019,12,0,38,37,1,0,0,15.922115,15.922115,0,0,0,0,0,0,0,0,0,0,45.7,48.39,-9,-9,1.666666666666667,1,1,0,0,7,11,5,1,280,2096178.8,1803497.5,278172.72,0,1536.4408 -13164,16206,29276,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1046.3673,0,3,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,32.58,61.52,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,159,97437.445,0,0,0,2086.8135 -13165,16207,29277,29278,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,4.1650329,4.3282843,26,1,-72.930817,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.9568958,4.2006364,48.18,61.8,52.84,43.58,10,1,1,0,0,1,6,4,1,472,295935.47,-36191.289,308079.5,100292.34,2285.9819 -13165,16207,29278,29277,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.1623888,8.5949602,7.3243117,9,-1,-24.430473,0,-9,-9,2019,9,0,48,40,1,0,0,6.7348814,6.7348814,0,0,0,0,0,1,1,0,0,7.578321,52.84,43.58,48.18,61.8,5,1,1,0,0,3,6,4,1,472,295935.47,-36191.289,308079.5,100292.34,2285.9819 -13166,16208,29279,29280,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,8.827631,8.8054628,0,7,1,89.780685,0,2,1,2019,11,0,40,37,1,0,0,22.454922,22.454922,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.02,45.2,6.666666666666667,2,3,0,0,9,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 -13166,16208,29280,29279,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,6,-1,-13.99144,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40.02,45.2,57.16,56.15,8.333333333333334,2,3,0,0,0,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 -13166,16208,29281,-9,29280,29279,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9227,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 -13166,16208,29282,-9,29280,29279,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-914.47485,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,4,0,618.75,595461.44,73020.969,414787.75,0,2375.7402 -13167,16209,29283,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.25384,6.2451372,0,0,-985.68567,0,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,13.550991,0,0,1,1,0,0,6.6727915,49.6,21.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1554,250785.81,26900.443,50387.871,0,2013.7841 -13168,16210,29284,29285,-9,-9,1,1,29,1,1,0,1,1,-9,0,5,8.5550213,8.2881861,0,4,-4,-14.155674,0,-9,-9,2019,6,0,37,35,1,0,0,10.753556,10.753556,0,0,0,0,0,1,1,0,6.7126341,0,56.68,51,55.51,43.54,8.333333333333334,1,1,0,0,6,6,3,1,924.66669,-113180.3,20137.82,156984.16,124382.96,2735.4702 -13168,16210,29285,29284,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,0,0,0,4,4,-33.234577,0,1,2,2019,9,2,0,20,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.51,43.54,56.68,51,8.333333333333334,1,1,0,0,8,6,3,1,924.66669,-113180.3,20137.82,156984.16,124382.96,2735.4702 -13168,16210,29286,-9,29285,29284,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1137.5287,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,3,1,924.66669,-113180.3,20137.82,156984.16,124382.96,2735.4702 -13169,16211,29287,29288,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.7176352,8.3042431,0,9,1,40.542885,0,1,1,2019,9,2,30,35,1,2,0,17.322004,17.322004,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50,57,8.333333333333334,4,5,0,0,10,8,5,1,298.5,300680.47,57766.672,339471.88,0,4557.752 -13169,16211,29288,29287,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.6079884,8.538991,0,9,-1,84.152374,0,1,2,2019,10,0,38,38,1,1,0,16.995367,16.995367,0,0,0,0,0,0,0,0,0,0,50,57,54.2,57.49,7,4,5,0,0,8,8,5,1,298.5,300680.47,57766.672,339471.88,0,4557.752 -13170,16212,29289,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-941.63959,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1824,-157127.02,0,0,0,571.40466 -13171,16213,29290,29291,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.9522777,8.3147316,0,7,-12,55.015423,0,2,2,2019,7,0,40,48,1,0,0,9.7245255,9.7245255,0,0,0,1.5673156,0,0,0,0,0,0,55.79,52.62,57.33,53.46,8.333333333333334,1,1,0,0,9,9,4,1,243.5,-246012.28,46286.477,0,0,2848.2954 -13171,16213,29291,29290,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.0976906,7.8046083,0,7,12,19.201847,0,3,2,2019,7,0,26,30,1,0,0,14.306219,14.306219,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.79,52.62,1.666666666666667,1,1,0,0,9,9,4,1,243.5,-246012.28,46286.477,0,0,2848.2954 -13172,16214,29292,29293,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,6,-7,227.58264,0,3,2,2019,7,0,0,20,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52.37,51.4,56.19,46.16,8.333333333333334,1,1,1,0,7,6,2,1,432.5,-27436.797,59697.359,0,0,1757.8064 -13172,16214,29293,29292,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.9011288,6.4794474,6,7,-47.027538,0,-9,-9,2019,10,0,0,48,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5923595,0,56.19,46.16,52.37,51.4,8.333333333333334,1,1,0,0,6,6,2,1,432.5,-27436.797,59697.359,0,0,1757.8064 -13173,16215,29294,29295,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.5644484,8.2677517,0,6,11,19.76741,-9,-9,-9,2019,8,0,50,0,1,0,0,11.705376,11.705376,0,0,0,0,0,0,0,0,0,0,55,53,57.06,57.76,8,4,1,0,0,1,9,5,1,567,423908.88,134621.69,315553.03,0,4339.395 -13173,16215,29295,29294,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,9.2900963,9.095438,0,6,-11,47.26878,0,2,3,2019,1,0,37,37,1,0,0,30.096752,30.096752,0,0,0,0,0,0,0,0,2.8147902,0,57.06,57.76,55,53,8.333333333333334,1,1,0,0,6,9,5,1,567,423908.88,134621.69,315553.03,0,4339.395 -13174,16216,29296,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.7584124,8.9630337,0,0,0,-1018.3303,0,-9,-9,2019,8,0,38,38,1,0,0,17.676903,17.676903,0,0,0,0,0,0,0,0,2.7792735,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,9,5,0,399,-146488.64,6724.2944,0,0,1725.0092 -13175,16217,29297,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.2322741,6.8949065,0,0,-1054.8009,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5138247,7.0070486,41.82,57.72,-9,-9,1.666666666666667,1,1,0,0,0,2,3,1,528,487717.69,78806.602,263672.28,0,709.27008 -13176,16218,29298,29299,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,50,-2,-127.57639,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5552926,0,49.86,55.31,60.2,39.82,6.666666666666667,1,1,0,0,0,12,2,1,426,-176797.92,50452.461,142505.66,0,1561.5282 -13176,16218,29299,29298,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.0844302,5.8384113,50,2,-30.55892,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5378709,6.2001915,60.2,39.82,49.86,55.31,10,1,1,0,0,0,12,2,1,426,-176797.92,50452.461,142505.66,0,1561.5282 -13177,16219,29300,29301,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.3495088,6.4538488,54,-1,-86.240982,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,3.6041324,0,29.413795,7,1,1,0,1.9163232,5.9040923,47.51,36.73,58.89,48.6,6.666666666666667,1,1,0,0,1,6,3,1,1043,1065764.1,424990.31,290920,0,3195.4636 -13177,16219,29301,29300,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.820137,8.0120096,54,1,-14.453943,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,8.168499,7.4607897,58.89,48.6,47.51,36.73,6.666666666666667,1,1,0,0,0,6,3,1,1043,1065764.1,424990.31,290920,0,3195.4636 -13178,16220,29302,29303,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.3255115,6.1589303,7,2,-65.485291,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5010419,54.37,54.8,62.42,32.41,10,1,1,0,0,1,4,2,1,1420,500831.34,30960.404,230932.91,0,1132.5002 -13178,16220,29303,29302,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,7,-2,62.502392,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,32.41,54.37,54.8,8.333333333333334,1,1,0,0,2,4,2,1,1420,500831.34,30960.404,230932.91,0,1132.5002 -13179,16221,29304,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5216174,7.1965837,0,0,-979.31232,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,6.1366367,6.9985619,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,7,2,3,1,1607,1090372.5,941679.25,222204.81,0,1467.0289 -13180,16222,29305,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.1703701,8.5530348,8.1349096,0,0,-860.69873,0,2,2,2019,8,0,25,25,1,0,0,5.1561007,5.1561007,0,0,0,0,0,0,0,0,0,8.3616171,55.19,54.26,-9,-9,1.666666666666667,1,1,0,0,6,12,4,1,595,-10638.52,-12532.614,0,0,1999.0647 -13181,16223,29306,29307,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.4114323,9.4703159,0,34,2,-23.528652,0,-9,-9,2019,11,2,55,55,1,2,0,29.048763,29.048763,0,0,0,0,0,0,0,0,0,0,47.91,57.48,47.09,56.75,8.333333333333334,1,1,0,0,9,12,5,1,830,998676.75,216166.25,459413.28,62971.094,7365.9131 -13181,16223,29307,29306,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.455081,7.256011,0,34,-2,36.685513,0,2,2,2019,15,5,13,15,1,5,0,15.163911,15.163911,0,0,0,0,0,0,0,0,0,0,47.09,56.75,47.91,57.48,8.333333333333334,1,1,0,0,9,12,5,1,830,998676.75,216166.25,459413.28,62971.094,7365.9131 -13182,16224,29308,29309,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.9848223,9.1251116,0,14,3,-17.872068,0,2,2,2019,9,0,60,60,1,0,0,16.433472,16.433472,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.06,57.76,6.666666666666667,1,1,0,0,10,5,5,1,455.5,697042,252557.22,260243.66,119045.5,4173.2109 -13182,16224,29309,29308,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.2548819,8.5032377,0,14,-3,-27.947071,0,2,2,2019,12,0,40,40,1,0,0,12.812757,12.812757,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.04,55.86,10,1,1,0,0,8,5,5,1,455.5,697042,252557.22,260243.66,119045.5,4173.2109 -13183,16225,29310,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.3835058,8.0695696,5.1321487,0,0,-1012.6826,0,2,1,2019,4,0,54,39,1,0,0,8.2725983,8.2725983,0,0,0,0,0,1,1,0,5.7370911,0,53.42,47.6,-9,-9,8.333333333333334,3,4,0,0,12,7,4,0,423,88746.867,-7069.8291,0,0,2140.1431 -13184,16226,29311,29314,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,8.042408,8.4199629,0,26,2,-17.05579,0,2,2,2019,7,0,40,48,1,0,0,10.797449,10.797449,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 -13184,16226,29312,-9,29314,29311,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.61792,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 -13184,16226,29313,-9,29314,29311,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.81885,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 -13184,16226,29314,29311,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.4451227,8.4370689,0,26,-2,-88.374313,0,2,1,2019,6,0,27,27,1,0,0,23.592777,23.592777,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,9,12,4,1,669,7022467.5,6604765.5,362975.13,0,3575.8367 -13185,16227,29315,29316,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,0,0,0,7,-11,-97.86554,0,2,2,2019,2,0,0,50,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.09,55.87,55.94,44.26,10,1,1,0,0,11,5,4,1,217,1159256.8,943580.25,0,0,1194.6162 -13185,16227,29316,29315,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.1309996,8.4611568,0,7,11,31.604147,0,3,2,2019,9,0,37,38,1,0,0,15.765555,15.765555,0,0,0,0,0,0,0,0,1.5463884,0,55.94,44.26,55.09,55.87,6.666666666666667,1,1,0,0,11,5,4,1,217,1159256.8,943580.25,0,0,1194.6162 -13186,16228,29317,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.460609,7.3697276,0,0,0,-1129.8801,0,3,3,2019,12,0,40,0,1,0,1,5.0699062,5.0699062,0,0,0,0,0,1,1,0,0,0,48.36,52.17,-9,-9,6.666666666666667,2,3,0,0,0,7,3,0,349,-20375.641,-60267.734,0,0,834.61804 -13186,16229,29318,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,8.0314112,8.1192999,0,0,0,-978.83795,0,3,-9,2019,10,0,40,0,1,0,1,7.5279779,7.5279779,0,0,0,0,0,1,1,0,0,0,45.75,53.15,-9,-9,6.666666666666667,2,3,0,0,2,7,4,0,450,154594.66,0,0,0,1326.2599 -13187,16230,29319,29320,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9232383,8.1715708,0,35,-3,-9.9500456,0,-9,-9,2019,17,5,37,37,1,5,0,7.9668508,7.9668508,0,0,0,0,14.5,0,0,0,3.8745339,0,29.48,45.83,51.41,56.15,3.333333333333333,1,1,0,0,11,12,4,1,395,1225773.5,959021.25,182163.75,6754.915,2549.3555 -13187,16230,29320,29319,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,7.8516088,7.7144117,33,3,-84.311638,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,5.4290719,8.0690575,51.41,56.15,29.48,45.83,8.333333333333334,1,1,0,0,10,12,4,1,395,1225773.5,959021.25,182163.75,6754.915,2549.3555 -13188,16231,29321,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.0933127,7.2589412,0,0,-985.3501,0,3,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,3.9955997,6.7864709,53.75,19.6,-9,-9,10,1,1,0,0,0,12,2,1,662,604137.13,153934.92,341911.72,0,325.79572 -13189,16232,29322,-9,29323,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1414,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 -13189,16232,29323,-9,-9,-9,1,0,44,1,2,0,1,1,-9,0,3,9.0045853,9.1774321,6.6591768,0,0,-1090.2476,0,2,-9,2019,12,0,58,42,1,0,0,18.444384,18.444384,0,0,0,.34397352,0,1,1,0,6.1869888,0,49.04,55.86,-9,-9,3.333333333333333,3,4,0,1,9,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 -13189,16232,29324,-9,29323,-9,1,0,16,1,2,1,2,0,-9,0,2,0,0,0,0,0,-1044.8998,-9,1,-9,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36.74,49.92,-9,-9,3.333333333333333,3,4,0,0,1,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 -13189,16232,29325,-9,29323,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.74902,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,822.75,1267690.6,541225.06,602700.88,51926.957,4870.959 -13189,16233,29326,-9,-9,29327,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.91565,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,1,400,0,0,0,0,294.92517 -13189,16233,29327,-9,29323,-9,1,1,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-1001.6188,-9,1,-9,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,34.11,61.28,-9,-9,3.333333333333333,3,4,0,0,2,8,1,1,400,0,0,0,0,294.92517 -13190,16234,29328,29329,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.2647009,9.3942385,0,22,-3,71.810997,0,1,1,2019,8,0,40,40,1,0,0,34.343719,34.343719,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,9,9,5,1,808.33331,1757697.5,1130568.8,828363.19,406561.84,8771.3154 -13190,16234,29329,29328,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.3553476,9.4589863,0,8,3,-89.545197,0,-9,-9,2019,9,0,60,55,1,0,0,21.548651,21.548651,0,0,0,0,0,0,0,0,7.3140593,0,54.2,57.49,57.16,56.15,8.333333333333334,2,3,0,0,5,9,5,1,808.33331,1757697.5,1130568.8,828363.19,406561.84,8771.3154 -13190,16234,29330,-9,29328,29329,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-975.55389,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,2,3,0,0,0,9,5,1,808.33331,1757697.5,1130568.8,828363.19,406561.84,8771.3154 -13191,16235,29331,29333,-9,-9,1,0,36,1,1,0,2,2,-9,0,5,7.9029865,7.9058285,0,7,-14,-27.051306,0,-9,-9,2019,12,0,26,38,1,0,0,9.2239151,9.2239151,0,0,0,0,0,0,0,0,0,0,45.46,61.87,49.06,58.64,8.333333333333334,1,1,0,0,7,7,4,1,1030,2168143.3,2077656.9,0,0,2350.4939 -13191,16235,29332,-9,29331,29333,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.16644,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1030,2168143.3,2077656.9,0,0,2350.4939 -13191,16235,29333,29331,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,7.7627268,8.1296215,0,7,14,-55.942497,0,2,1,2019,9,0,45,50,1,0,0,6.9127135,6.9127135,0,0,0,0,0,0,0,0,0,0,49.06,58.64,45.46,61.87,8.333333333333334,1,1,0,0,8,7,4,1,1030,2168143.3,2077656.9,0,0,2350.4939 -13192,16236,29334,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.9404316,7.026504,0,0,-871.74628,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.2614899,7.2357707,54.25,43.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1066,347928.16,284946.22,0,0,1333.4495 -13193,16237,29335,29336,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,8.0108891,8.5096436,0,39,0,-5.2378941,0,-9,-9,2019,17,5,42,84,1,5,0,11.9395,11.9395,0,0,0,0,0,1,1,0,7.9031453,0,37.18,23.8,37.17,50.6,5,1,1,0,0,13,1,4,1,993.5,268383.16,37920.695,97382.297,0,3978.6211 -13193,16237,29336,29335,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,39,0,2.683692,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8762918,0,37.17,50.6,37.18,23.8,5,1,1,0,0,4,1,4,1,993.5,268383.16,37920.695,97382.297,0,3978.6211 -13194,16238,29337,-9,29338,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-922.78107,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,1,676,248323.44,-1035.0107,410074.78,0,1041.8207 -13194,16238,29338,-9,-9,-9,1,0,53,0,1,0,1,1,-9,1,1,0,0,0,0,0,-920.90503,0,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,38.97,28.57,-9,-9,0,3,4,0,1,2,8,1,1,676,248323.44,-1035.0107,410074.78,0,1041.8207 -13195,16239,29339,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.9584465,9.0494385,0,0,0,-897.87549,0,1,1,2019,10,1,42,42,1,1,0,22.264538,22.264538,0,0,0,0,0,0,0,0,7.8479533,0,34.52,62.64,-9,-9,8.333333333333334,4,2,0,0,11,8,5,1,1843,53673.098,24461.834,141899.34,75729.18,4268.0566 -13196,16240,29340,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.8927736,8.9215021,0,0,0,-1038.193,0,2,2,2019,9,2,48,50,1,2,0,18.375546,18.375546,0,0,0,0,0,0,0,0,0,0,31.3,55.16,-9,-9,3.333333333333333,1,1,0,0,12,5,5,1,538,160541.22,-12194.533,0,0,2294.4333 -13197,16241,29341,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.5704241,5.0070839,0,0,-1012.4413,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,0,4.930439,47,36,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,657,119259.7,40583.266,0,0,-43.80291 -13198,16242,29342,29343,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,54,-5,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,39.41,57.16,56.15,8.333333333333334,1,1,0,0,0,6,1,1,443,324142.94,-5212.4785,93964.969,30249.727,728.17438 -13198,16242,29343,29342,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,0,0,54,5,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0538683,0,57.16,56.15,61.04,39.41,10,1,1,0,0,0,6,1,1,443,324142.94,-5212.4785,93964.969,30249.727,728.17438 -13199,16243,29344,29345,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,62,1,-39.997524,0,3,2,2019,13,4,0,0,4,4,0,0,0,1,0,0,0,71.5,1,1,0,4.6306105,0,44.65,44.31,50.49,25.68,8.333333333333334,1,1,0,0,0,6,3,1,500,392363.81,76324.156,148408.48,0,1843.7209 -13199,16243,29345,29344,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,8.0048704,7.2698541,62,-1,-41.908638,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,138.53964,0,0,1,1,0,2.3842082,7.6978536,50.49,25.68,44.65,44.31,8.333333333333334,1,1,0,0,0,6,3,1,500,392363.81,76324.156,148408.48,0,1843.7209 -13200,16244,29346,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.6244326,8.6579838,0,0,0,-1012.1639,0,1,1,2019,11,2,47,50,1,2,0,13.679366,13.679366,0,0,0,0,0,0,0,0,0,0,53.61,59.13,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,319,-32246.104,-84218.758,0,0,2538.8015 -13200,16245,29347,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,5.9094372,5.8800287,0,0,0,-992.42316,0,-9,-9,2019,12,0,60,45,1,0,0,.64231664,.64231664,0,0,0,0,2,0,0,0,0,0,40.88,59.72,-9,-9,1.666666666666667,1,1,0,1,6,8,2,0,100,-365709.78,5748.7095,0,0,-293.28653 -13201,16246,29348,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1000.3317,-9,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,48.57,-9,-9,5,1,1,1,0,2,4,1,0,1603,0,0,0,0,309.6236 -13202,16247,29349,29350,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,8.4040136,8.4698124,0,17,5,-.086252883,0,2,2,2019,6,0,60,58,1,0,0,9.4478493,9.4478493,0,0,0,0,0,1,1,0,1.6721429,0,60.54,39.98,48.87,58.55,1.666666666666667,1,1,0,0,8,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 -13202,16247,29350,29349,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,17,-5,-92.991882,0,2,3,2019,9,0,0,6,3,0,0,0,0,0,0,0,0,0,1,1,0,3.2574794,0,48.87,58.55,60.54,39.98,10,1,1,0,0,7,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 -13202,16247,29351,-9,29350,29349,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.2507,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 -13202,16247,29352,-9,29350,29349,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-962.46478,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,794.5,277526.06,195136.84,343708.06,157656.66,2303.73 -13203,16248,29353,29354,-9,-9,1,0,59,0,0,0,1,1,-9,1,3,0,0,0,8,2,-14.286098,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,51,49,7,3,4,0,1,0,11,3,1,1674,249602.03,0,0,0,2630.8713 -13203,16248,29354,29353,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,7.5987659,7.7137146,30,-2,-74.317406,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.361661,7.605391,51,49,49,48,7,3,4,0,0,0,11,3,1,1674,249602.03,0,0,0,2630.8713 -13204,16249,29355,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.8206458,6.3238201,0,0,-983.15729,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8006358,6.0981712,48.73,27.95,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1572,107380.53,69054.258,0,0,1385.0251 -13205,16250,29356,29359,-9,-9,1,1,46,1,2,0,2,2,-9,0,2,9.2624674,9.3789482,0,9,5,-40.13723,0,-9,-9,2019,16,5,37,37,1,5,0,43.697151,43.697151,0,0,0,0,0,0,0,0,8.2540131,0,49.28,46.56,39.44,49.05,6.666666666666667,1,1,0,0,10,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 -13205,16250,29357,-9,29359,29356,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-927.71576,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 -13205,16250,29358,-9,29359,29356,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.12683,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 -13205,16250,29359,29356,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,8.3221264,7.9744358,0,9,-5,-5.4977288,0,2,3,2019,19,7,32,31,1,7,0,11.904691,11.904691,0,0,0,0,0,0,0,0,2.3464985,0,39.44,49.05,49.28,46.56,6.666666666666667,1,1,0,0,10,8,5,1,910.25,722323.19,101869.55,354469.56,63210.387,4365.7432 -13206,16251,29360,29361,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.2631969,7.0975671,0,19,0,9.4697647,0,2,2,2019,12,0,10,10,1,0,0,12.675708,12.675708,0,0,0,0,2,0,0,0,7.613265,0,46.39,39.75,48.04,46.66,6.666666666666667,1,1,0,0,9,4,5,1,318.5,264235.34,-63183.68,51364.688,48813.875,3855.4817 -13206,16251,29361,29360,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.9056959,8.4661598,0,21,0,84.339752,0,2,2,2019,12,0,60,52,1,0,0,13.417231,13.417231,0,0,0,0,0,0,0,0,7.355835,0,48.04,46.66,46.39,39.75,6.666666666666667,1,1,0,0,9,4,5,1,318.5,264235.34,-63183.68,51364.688,48813.875,3855.4817 -13207,16252,29362,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,9.3810282,9.4490204,0,0,0,-835.67322,0,3,3,2019,3,1,20,50,1,1,0,79.789558,79.789558,0,0,0,0,0,0,0,0,8.7991629,0,62.39,56.71,-9,-9,0,2,3,0,0,12,9,5,1,723,4752606.5,3693592.8,1143018.6,514111.25,6291.5386 -13208,16253,29363,29364,-9,-9,1,0,47,0,3,0,3,3,-9,0,3,0,0,0,29,-2,-103.49147,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.82,33.06,45.69,48.04,10,2,3,0,0,0,2,2,1,351.33334,1147212.5,705268.25,234055.2,24494.879,2049.3726 -13208,16253,29364,29363,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,7.4301038,7.5980773,0,8,2,-88.490906,0,3,3,2019,10,2,31,36,1,2,0,7.8768692,7.8768692,0,0,0,0,0,1,1,0,0,0,45.69,48.04,59.82,33.06,5,2,3,0,0,6,2,2,1,351.33334,1147212.5,705268.25,234055.2,24494.879,2049.3726 -13208,16253,29365,-9,29363,29364,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.14355,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,351.33334,1147212.5,705268.25,234055.2,24494.879,2049.3726 -13209,16254,29366,29367,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.9227829,8.5532379,0,2,1,44.049801,0,2,2,2019,18,6,43,40,1,6,0,12.289848,12.289848,0,0,0,0,0,1,1,0,0,0,27.45,63.27,39.82,34.58,3.333333333333333,1,1,0,0,3,1,5,1,1104.5,-333320.97,0,0,0,3379.771 -13209,16254,29367,29366,-9,-9,1,0,31,0,0,0,1,1,-9,1,2,8.5891724,8.4094772,0,2,-1,-129.93291,0,-9,-9,2019,18,6,20,38,1,6,0,22.268536,22.268536,0,0,0,0,0,1,1,0,6.7171912,0,39.82,34.58,27.45,63.27,5,1,1,0,0,5,1,5,1,1104.5,-333320.97,0,0,0,3379.771 -13210,16255,29368,-9,29369,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.15289,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,353.5,67622.258,39365.699,0,0,1657.4441 -13210,16255,29369,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,1,0,6.9351368,7.4219017,0,0,-1118.0891,0,2,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,6.7708197,0,17.99,32.62,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,353.5,67622.258,39365.699,0,0,1657.4441 -13211,16256,29370,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.8574915,9.5525827,0,0,0,-1059.7445,0,2,2,2019,20,8,87,50,1,8,0,24.432863,24.432863,0,0,0,0,0,0,0,0,6.4551454,0,36.25,59.21,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,1452,3450844.8,994323.5,390547.31,27298.953,6754.0786 -13212,16257,29371,-9,29373,29372,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.08484,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,-9,0,0,8,4,1,833.66669,189725.34,60545.766,316040.63,238727.7,3281.8186 -13212,16257,29372,29373,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.5401587,7.4867859,0,25,-4,61.739201,0,-9,-9,2019,8,0,30,40,1,0,0,7.6917405,7.6917405,0,0,0,0,0,1,1,0,0,0,41.43,56.37,51,54,8.333333333333334,1,1,0,0,8,8,4,1,833.66669,189725.34,60545.766,316040.63,238727.7,3281.8186 -13212,16257,29373,29372,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,8.2910519,8.0709972,0,6,4,-61.085682,0,-9,-9,2019,10,0,49,40,1,1,0,13.244431,13.244431,0,0,0,0,0,1,1,0,0,0,51,54,41.43,56.37,8,2,3,0,0,1,8,4,1,833.66669,189725.34,60545.766,316040.63,238727.7,3281.8186 -13213,16258,29374,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,1,0,6.9618983,7.2064857,0,0,-1021.8456,0,2,2,2019,32,12,0,0,4,12,0,0,0,1,2.9975889,0,28.352621,0,1,1,0,3.4741507,7.1506553,26.82,19.15,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,2387,585774.75,-17203.686,612227.88,0,1174.7053 -13214,16259,29375,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.3911357,5.6805043,0,0,-944.45093,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.4497929,5.7007895,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,883,101628.37,-85277.313,0,0,434.10287 -13215,16260,29376,29378,-9,-9,1,1,33,1,1,0,2,2,-9,0,3,9.5402155,9.5036926,0,5,0,65.9086,0,2,2,2019,11,2,7,12,1,2,0,299.48035,299.48035,0,0,0,0,0,1,1,0,5.707509,0,44.74,48.37,38.69,61.75,8.333333333333334,1,1,0,0,10,6,5,1,295.66666,154313.36,72231.039,476047.22,364764.22,8474.8301 -13215,16260,29377,-9,29378,29376,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-951.78937,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,295.66666,154313.36,72231.039,476047.22,364764.22,8474.8301 -13215,16260,29378,29376,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.2738361,7.336864,0,5,0,-46.440926,0,-9,-9,2019,14,3,24,21,1,3,0,6.1573367,6.1573367,0,0,0,0,0,1,1,0,0,0,38.69,61.75,44.74,48.37,8.333333333333334,1,1,0,0,5,6,5,1,295.66666,154313.36,72231.039,476047.22,364764.22,8474.8301 -13216,16261,29379,29380,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,12,-1,158.32874,0,2,1,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,52.89,45.61,60.12,54.8,8.333333333333334,1,1,0,0,6,13,3,1,544.5,1450135.8,862218,371290.75,0,2171.9507 -13216,16261,29380,29379,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.2437649,7.9384465,12,1,-30.603413,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.984333,60.12,54.8,52.89,45.61,10,1,1,0,0,6,13,3,1,544.5,1450135.8,862218,371290.75,0,2171.9507 -13217,16262,29381,29382,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3654213,8.2914753,0,38,-2,95.385399,0,3,3,2019,8,0,37,37,1,0,0,13.2621,13.2621,0,0,0,0,2,0,0,0,4.359499,0,57.16,56.15,63.5,41.47,1.666666666666667,1,1,0,0,9,6,5,1,637.5,113363.13,-22245.219,164967.28,11809.086,2893.3958 -13217,16262,29382,29381,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.1299734,8.4285126,0,37,2,17.136873,0,3,2,2019,7,0,30,35,1,0,0,14.396585,14.396585,0,0,0,0,0,0,0,0,3.8866339,0,63.5,41.47,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,637.5,113363.13,-22245.219,164967.28,11809.086,2893.3958 -13218,16263,29383,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.3757448,5.2203388,0,0,-921.11151,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,5.6867619,59.32,46.98,-9,-9,8.333333333333334,4,2,0,0,0,2,2,0,151,37912.238,57524.988,0,0,2129.9944 -13219,16264,29384,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.6967897,7.4925179,0,0,0,-850.06677,0,3,-9,2019,11,0,32,37,1,0,0,7.2133412,7.2133412,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,9,6,2,0,831,13231.456,24293.746,0,0,1837.7051 -13220,16265,29385,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1168.2024,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,13.356283,26.559458,134.45595,0,1,1,0,0,0,52,46,-9,-9,8,1,1,0,0,0,10,1,0,269,195777.03,0,0,0,744.63354 -13221,16266,29386,29387,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7657537,8.1871643,0,9,-7,-15.30858,0,3,3,2019,12,1,38,38,1,1,0,9.2995758,9.2995758,0,0,0,0,27,1,1,0,6.7093225,0,42.87,42.51,22.55,36.19,5,2,3,0,0,12,6,3,1,647,73399.914,297460.72,0,0,3016.9385 -13221,16266,29387,29386,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,0,5.5170159,5.4726257,35,7,-80.154457,0,3,3,2019,21,6,0,0,4,6,0,0,0,0,0,0,1.014345,0,1,1,0,0,5.4740477,22.55,36.19,42.87,42.51,3.333333333333333,2,3,0,0,0,6,3,1,647,73399.914,297460.72,0,0,3016.9385 -13221,16267,29388,-9,29386,29387,1,0,34,0,0,0,2,2,-9,0,4,8.1134682,8.2414351,0,0,0,-943.83575,0,2,2,2019,9,0,47,41,1,0,1,7.851819,7.851819,0,0,0,0,7,1,1,0,.47729722,0,48.02,49.68,-9,-9,5,2,3,0,0,10,6,4,1,102,-365187.69,57163.086,0,0,854.10266 -13221,16268,29389,-9,29386,29387,1,0,32,0,0,0,1,1,-9,0,4,7.9847918,7.9725113,0,0,0,-1003.4922,0,2,3,2019,10,3,38,20,1,3,1,9.9766102,9.9766102,0,0,0,0,7,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,2,3,0,0,5,6,4,1,314,-1015.6808,-3020.0601,73108.367,76879.039,1176.889 -13222,16269,29390,-9,29391,29393,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.06732,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 -13222,16269,29391,29393,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.5377359,8.6785231,0,6,-1,-77.689384,0,3,2,2019,7,0,25,15,1,0,0,27.056774,27.056774,0,0,0,0,0,0,0,0,.47001994,0,51.67,60.18,60.02,56.42,10,1,1,0,0,7,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 -13222,16269,29392,-9,29391,29393,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1188,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 -13222,16269,29393,29391,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,9.0000448,9.0497866,0,6,1,-88.7491,0,3,-9,2019,6,0,60,58,1,0,0,17.170696,17.170696,0,0,0,0,0,0,0,0,0,0,60.02,56.42,51.67,60.18,1.666666666666667,1,1,0,0,7,9,5,1,596.5,1315199.8,873214.75,404911.59,188532.09,5108.375 -13223,16270,29394,29395,-9,-9,1,1,44,1,3,0,3,3,-9,0,4,6.7509685,6.6919136,0,14,13,104.49873,0,3,2,2019,9,0,10,10,1,1,0,10.288225,10.288225,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,1,11,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 -13223,16270,29395,29394,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,0,0,0,9,-13,-9.6899633,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 -13223,16270,29396,-9,29395,29394,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.25897,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 -13223,16270,29397,-9,29395,29394,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.6238,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 -13223,16270,29398,-9,29395,29394,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-854.40448,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,5,-9,0,0,6,2,0,974,121369.63,0,108698.3,28954.979,1911.8141 -13224,16271,29399,-9,-9,-9,1,0,61,0,2,0,3,3,-9,1,4,7.7145548,7.5967679,0,0,0,-867.99689,0,3,3,2019,6,0,60,60,1,0,0,3.7473905,3.7473905,0,0,0,0,66,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,248,42521.633,115322.17,90199.289,50694.383,4215.8301 -13224,16272,29400,-9,29399,-9,1,1,37,0,2,0,2,2,-9,0,4,8.4485435,8.2392244,0,0,0,-1075.3436,0,3,-9,2019,10,0,16,0,1,1,1,36.834091,36.834091,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,2,4,1,1555,490172.72,91119.789,0,0,2680.2827 -13225,16273,29401,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.6135197,8.4664145,0,0,0,-1002.8261,0,2,2,2019,20,9,43,41,1,9,0,13.000039,13.000039,0,0,0,0,0,0,0,0,7.2770214,0,41.82,47.11,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,3207,187108.42,190258.28,0,0,2722.6047 -13226,16274,29402,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,6.9504023,7.4611025,0,0,0,-1106.5172,0,1,1,2019,21,6,27,37,1,6,0,5.2670183,5.2670183,0,0,0,0,0,1,1,0,8.3291874,0,40.07,54.57,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,175,0,0,0,0,3589.3105 -13227,16275,29403,29404,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.5224314,9.2994089,0,3,-2,-32.016842,0,-9,-9,2019,10,0,40,0,1,0,0,29.056131,29.056131,0,0,0,0,0,0,0,0,0,0,62.27,42.94,60.7,39.78,5,3,4,0,0,12,8,5,1,1530,1025310.4,229928.66,680220.69,0,5439.439 -13227,16275,29404,29403,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4300327,8.2869902,0,21,2,-33.730358,0,3,3,2019,10,0,40,40,1,0,0,10.83989,10.83989,0,0,0,0,0,0,0,0,0,0,60.7,39.78,62.27,42.94,5,2,3,0,0,12,8,5,1,1530,1025310.4,229928.66,680220.69,0,5439.439 -13227,16276,29405,-9,29403,29404,1,1,22,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1054.9429,1,1,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,5,4,2,0,1,1,8,1,1,278,259523.19,0,0,0,0 -13228,16277,29406,29407,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,1,0,-27.744982,-9,3,2,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,5.48,1,1,0,0,0,19.05,33.57,41.23,59.35,0,1,1,0,1,0,13,5,1,388.5,346841.09,212914.77,176705,33140.352,1831.4363 -13228,16277,29407,29406,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.8032513,8.717061,0,1,0,17.551519,-9,3,3,2019,11,2,44,0,1,2,0,18.499826,18.499826,0,0,0,0,0,1,1,0,0,0,41.23,59.35,19.05,33.57,8.333333333333334,1,1,0,0,7,13,5,1,388.5,346841.09,212914.77,176705,33140.352,1831.4363 -13228,16278,29408,-9,29406,29407,1,0,22,0,0,1,2,0,-9,0,5,0,0,0,0,0,-937.73639,-9,2,2,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,29.72,63.77,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,564,0,0,0,0,-193.51431 -13229,16279,29409,-9,29412,29411,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-960.0484,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 -13229,16279,29410,-9,29412,29411,1,0,13,2,3,1,3,0,-9,0,3,0,0,0,0,0,-997.34381,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 -13229,16279,29411,29412,-9,-9,1,1,38,2,3,0,1,1,-9,0,2,8.2910194,7.9842391,0,4,2,116.70792,0,-9,-9,2019,18,6,38,38,1,6,0,10.194661,10.194661,0,0,0,0,0,1,1,0,2.2008128,0,24.56,56.78,19.91,34.22,1.666666666666667,1,1,0,1,8,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 -13229,16279,29412,29411,-9,-9,1,0,36,2,3,0,1,1,-9,0,1,8.1394167,7.9573555,0,4,-2,-165.09889,0,1,1,2019,32,12,17,17,1,12,0,24.284115,24.284115,0,0,0,.25565755,0,1,1,0,0,0,19.91,34.22,24.56,56.78,3.333333333333333,1,1,0,1,8,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 -13229,16279,29413,-9,29412,29411,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-964.2948,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,0,1487.8,273082.91,73732.734,160856.55,96165.234,2828.4563 -13230,16280,29414,29415,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.0252566,7.0855951,56,-3,107.12402,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.688549,7.2198668,52,45,54,46,8,1,1,0,0,0,12,4,1,612.5,830752.94,413172,211910.52,0,3240.7349 -13230,16280,29415,29414,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.7811918,7.9274201,56,3,126.26189,0,3,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.0873005,7.729548,54,46,52,45,8,1,1,0,0,0,12,4,1,612.5,830752.94,413172,211910.52,0,3240.7349 -13231,16281,29416,29417,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.7688971,7.1258368,59,-2,-70.311462,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.3294168,46.73,57.01,53,46,6.666666666666667,1,1,0,0,0,9,3,1,1420.5,1261183.1,541761.31,399701.13,0,2596.9258 -13231,16281,29417,29416,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.8742805,7.8979206,59,2,-68.778404,0,3,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.1248732,53,46,46.73,57.01,7,1,1,0,0,0,9,3,1,1420.5,1261183.1,541761.31,399701.13,0,2596.9258 -13232,16282,29418,29419,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.0110941,8.532342,46,7,58.981239,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8767147,8.029088,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,5,6,4,1,618,1912509.8,611651.13,807386.13,0,3234.219 -13232,16282,29419,29418,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,46,-7,-27.275663,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,10,1,1,0,0,0,6,4,1,618,1912509.8,611651.13,807386.13,0,3234.219 -13233,16283,29420,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,8.0620022,8.0472727,0,0,-902.99359,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,1.4352174,0,0,1,1,0,0,7.8012819,45.41,41.2,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1026,634251.63,0,197320.33,0,1814.1394 -13234,16284,29421,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8132162,8.6502934,0,0,0,-1123.1002,0,1,1,2019,9,0,36,40,1,0,0,15.588718,15.588718,0,0,0,0,0,1,1,0,4.9780669,0,35.9,60.41,-9,-9,8.333333333333334,1,1,0,0,12,6,5,1,383,-83508.313,8493.792,0,0,1785.7968 -13234,16285,29422,-9,-9,29421,1,1,25,0,0,0,1,1,-9,0,4,8.1114998,7.8583145,0,0,0,-1044.3859,0,-9,2,2019,11,0,52,50,1,0,1,6.4545217,6.4545217,0,0,0,0,0,1,1,0,7.6485343,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,964,-297960.47,40715.449,0,0,1495.3434 -13235,16286,29423,29424,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.5758915,5.2532825,7,-1,-26.504204,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,7.5723829,0,0,1,1,0,.37140903,5.2482138,55.88,21.37,51.33,24.03,5,1,1,0,0,5,13,2,1,199,380988.22,11867.083,481708,0,1805.6167 -13235,16286,29424,29423,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.8257117,6.0288463,7,1,-51.347595,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.6834555,5.8902898,51.33,24.03,55.88,21.37,6.666666666666667,1,1,0,0,3,13,2,1,199,380988.22,11867.083,481708,0,1805.6167 -13236,16287,29425,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7181458,7.8932185,0,0,0,-945.54498,0,3,3,2019,6,0,48,38,1,0,0,5.8425584,5.8425584,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,11,3,0,160,359961.09,68723.359,0,0,1148.6339 -13237,16288,29426,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,7.5399566,7.5120554,0,0,-1008.1775,0,2,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,1.9367738,7.7955618,48.98,35.96,-9,-9,5,1,1,0,0,0,7,3,1,853,538682.69,222275.33,295384.69,0,1042.2473 -13238,16289,29427,-9,29428,29429,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.3152,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,396.33334,-281802.44,0,256493.48,129773.99,2836.6699 -13238,16289,29428,29429,-9,-9,1,0,34,0,2,0,3,3,-9,1,3,6.7858882,6.6429005,0,15,-6,-103.41412,0,2,2,2019,9,0,16,16,1,0,0,5.8232136,5.8232136,0,0,0,0,110,1,1,0,0,0,49.44,54.26,51,56,1.666666666666667,1,1,0,0,7,2,3,0,396.33334,-281802.44,0,256493.48,129773.99,2836.6699 -13238,16289,29429,29428,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,7.8147521,7.4261403,0,8,6,132.72871,0,-9,-9,2019,9,0,37,40,1,1,0,7.3197603,7.3197603,0,0,0,0,74.5,1,1,0,0,0,51,56,49.44,54.26,8,1,1,0,0,3,2,3,0,396.33334,-281802.44,0,256493.48,129773.99,2836.6699 -13239,16290,29430,29432,-9,-9,1,1,37,0,4,0,1,1,-9,0,4,7.996325,8.4414387,0,17,-3,-17.516876,0,2,2,2019,12,0,39,35,1,0,0,11.976517,11.976517,0,0,0,0,0,1,1,0,0,0,46.39,60.99,45.79,62.62,8.333333333333334,1,1,0,0,7,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 -13239,16290,29431,-9,29432,29430,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1081.22,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 -13239,16290,29432,29430,-9,-9,1,0,40,0,4,0,1,1,-9,0,4,0,0,0,17,3,-36.348858,0,1,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.79,62.62,46.39,60.99,8.333333333333334,1,1,0,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 -13239,16290,29433,-9,29432,29430,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1059.6891,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 -13239,16290,29434,-9,29432,29430,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1101.5122,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,643.79999,93037.523,7531.8086,142169.11,113241.94,2562.8506 -13240,16291,29435,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,1,0,0,0,0,0,-864.66718,0,3,3,2019,33,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,12.09,36.81,-9,-9,3.333333333333333,1,1,0,1,8,13,1,1,239,91784.516,0,170196.47,49758.375,-50.755859 -13241,16292,29436,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.0076847,7.8875537,0,0,0,-1114.3552,0,2,2,2019,13,1,33,32,1,1,0,10.976056,10.976056,0,0,0,0,0,1,1,0,0,0,44.36,55.26,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,662.33331,20700.07,-18894.912,0,0,1194.2404 -13241,16292,29437,-9,29436,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.9365,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,662.33331,20700.07,-18894.912,0,0,1194.2404 -13241,16292,29438,-9,29436,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.02863,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,662.33331,20700.07,-18894.912,0,0,1194.2404 -13242,16293,29439,29440,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,43,-8,31.013599,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,52,47,7,2,3,0,0,0,6,2,1,487.5,674855.88,317960.38,305010.09,0,1765.4143 -13242,16293,29440,29439,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,6.9597025,6.8667846,43,8,-112.53751,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2911835,52,47,49,47,7,2,3,0,0,4,6,2,1,487.5,674855.88,317960.38,305010.09,0,1765.4143 -13243,16294,29441,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,0,0,-880.15924,0,1,1,2019,22,9,0,5,3,9,0,0,0,0,0,0,0,0,0,0,0,1.1078352,0,27.4,56.6,-9,-9,3.333333333333333,1,1,0,0,5,1,1,0,253,170850.14,0,0,0,-14.174893 -13244,16295,29442,29445,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.3579216,8.5180311,0,16,4,66.124237,0,2,2,2019,11,0,36,38,1,0,0,13.71839,13.71839,0,0,0,0,7,1,1,0,0,0,53.46,53.93,40.78,27.62,6.666666666666667,3,4,0,0,13,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 -13244,16295,29443,-9,29445,29442,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2699,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,3,4,-9,0,0,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 -13244,16295,29444,-9,29445,29442,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.8663,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 -13244,16295,29445,29442,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,8.2407866,8.1219511,0,16,-4,81.645058,0,3,3,2019,13,1,40,40,1,1,0,12.36421,12.36421,0,0,0,0,0,1,1,0,3.2010338,0,40.78,27.62,53.46,53.93,6.666666666666667,3,4,0,0,13,8,4,0,892.75,369255.25,95745.531,449115.97,231369.8,3350.4873 -13245,16296,29446,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3565235,8.4737291,0,0,0,-878.16339,0,2,2,2019,19,6,45,55,1,6,0,9.830162,9.830162,0,0,0,0,0,0,0,0,0,0,39.56,57.63,-9,-9,5,3,4,0,1,8,8,4,0,2073,208159.23,0,0,0,1765.0415 -13246,16297,29447,29448,-9,-9,1,0,56,0,0,0,3,3,-9,0,5,0,0,0,38,0,-75.167152,0,3,-9,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.72,43.47,32.72,43.47,10,1,1,0,0,5,6,3,1,896,38437.02,40330.438,0,0,1589.5885 -13246,16297,29448,29447,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,8.1580372,8.1283159,0,8,0,93.164795,0,3,3,2019,0,0,40,44,1,0,0,9.0616093,9.0616093,0,0,0,0,0,0,0,0,0,0,32.72,43.47,32.72,43.47,10,1,1,0,0,11,6,3,1,896,38437.02,40330.438,0,0,1589.5885 -13246,16298,29449,-9,29447,29448,1,1,32,0,0,0,2,2,-9,0,5,6.9144816,7.1078486,0,0,0,-1026.9679,0,3,3,2019,0,0,30,21,1,0,1,2.9784031,2.9784031,0,0,0,0,0,0,0,0,0,0,24.82,58.04,-9,-9,10,1,1,0,0,3,6,2,1,1633,-105015.54,-98556.844,0,0,610.47314 -13247,16299,29450,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.5424213,6.8659568,0,0,-916.95911,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,6.4325814,49.59,19.3,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1224,413522.41,79594.242,167536.89,0,1384.5818 -13248,16300,29451,29454,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.2197838,9.0779066,0,3,-1,130.10789,0,-9,-9,2019,23,11,60,60,1,11,0,19.922071,19.922071,0,0,0,0,0,1,1,0,0,0,40.48,60.05,43.67,61.06,3.333333333333333,1,1,0,0,12,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 -13248,16300,29452,-9,29454,29451,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-982.50879,0,1,2,2019,11,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,.570916,0,53.11,51.29,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 -13248,16300,29453,-9,29454,29451,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.7876,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 -13248,16300,29454,29451,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.2284727,8.7825041,6.9314599,3,1,-81.526695,0,2,3,2019,13,3,30,30,1,3,0,16.62686,16.62686,0,0,0,0,0,1,1,0,6.7274213,0,43.67,61.06,40.48,60.05,8.333333333333334,1,1,0,0,12,4,5,1,1080.75,419585.22,179638.75,282080.84,185306.55,5303.5874 -13249,16301,29455,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.4714365,6.3882136,0,0,-1021.9182,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5649545,6.5783029,49.27,46.58,-9,-9,3.333333333333333,1,1,0,0,4,2,2,0,658,607209.25,319941.75,132138.67,0,797.09332 -13249,16302,29456,-9,-9,29455,1,1,25,0,0,0,2,2,-9,0,4,8.3619394,8.1934853,0,0,0,-995.93652,0,3,3,2019,10,1,34,0,1,1,0,14.030097,14.030097,0,0,0,0,0,1,1,0,0,0,49.86,55.31,-9,-9,10,1,1,0,0,5,2,4,0,453,108105.09,0,0,0,1297.0817 -13250,16303,29457,29461,-9,-9,1,1,44,0,3,0,1,1,-9,0,2,9.2342558,9.5522213,0,8,1,62.333733,0,1,2,2019,6,0,41,41,1,0,0,27.889191,27.889191,0,0,0,0,0,1,1,0,4.1002202,0,61.52,45.11,59.29,49.68,8.333333333333334,1,1,0,0,11,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 -13250,16303,29458,-9,29461,29457,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.47217,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 -13250,16303,29459,-9,29461,29457,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1162.2781,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 -13250,16303,29460,-9,29461,29457,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-867.04706,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 -13250,16303,29461,29457,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,0,0,0,8,-1,-19.847757,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.2814403,0,59.29,49.68,61.52,45.11,8.333333333333334,1,1,0,0,0,13,4,1,624.59998,1053431.8,86997.516,481302.69,-2237.24,3296.9404 -13251,16304,29462,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,2,0,5.1575828,4.7485971,0,0,-1044.1857,1,-9,-9,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,4.9716091,0,30.37,52.74,-9,-9,5,1,1,0,0,0,4,2,0,702,-113292.91,0,0,0,1108.6089 -13252,16305,29463,29464,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2626104,9.1690283,0,32,2,-23.901875,0,2,2,2019,10,0,63,63,1,0,0,14.226851,14.226851,0,0,0,0,0,0,0,0,4.6658683,0,53.9,52.09,40.93,53.95,8.333333333333334,1,1,0,0,13,11,5,1,526,696567.06,184921.2,333245.91,-2516.74,4713.5986 -13252,16305,29464,29463,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2125607,7.8477211,0,10,-2,-40.784817,0,-9,-9,2019,18,6,45,50,1,6,0,8.5483217,8.5483217,0,0,0,0,0,0,0,0,4.3868251,0,40.93,53.95,53.9,52.09,5,1,1,0,0,13,11,5,1,526,696567.06,184921.2,333245.91,-2516.74,4713.5986 -13253,16306,29465,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.2660933,8.3535166,0,0,0,-1078.6122,-9,-9,-9,2019,10,1,45,0,1,1,0,9.979351,9.979351,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1429,-87447.172,-71785.5,0,0,626.6308 -13254,16307,29466,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7287149,8.719492,0,0,0,-1032.3192,0,-9,-9,2019,14,2,60,48,1,2,0,11.53131,11.53131,0,0,0,0,0,0,0,0,0,0,43.49,52.94,-9,-9,5,1,1,0,0,10,6,5,1,332,26956.186,99350.422,124468.22,124706.63,752.72198 -13255,16308,29467,29468,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,7.4627972,8.0447788,7.0057149,9,8,19.60392,0,3,2,2019,9,0,12,12,1,0,0,13.476333,13.476333,0,0,0,0,0,1,1,0,3.3034375,7.398428,51.14,60.45,51.14,60.45,6.666666666666667,1,1,0,0,10,5,5,1,577.5,1025731.5,955305.63,280804.44,89263.172,4111.5938 -13255,16308,29468,29467,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.7478886,8.7291517,0,9,-8,14.480072,0,3,3,2019,8,1,43,42,1,1,0,14.54834,14.54834,0,0,0,0,0,1,1,0,3.3411431,0,51.14,60.45,51.14,60.45,8.333333333333334,1,1,0,0,10,5,5,1,577.5,1025731.5,955305.63,280804.44,89263.172,4111.5938 -13256,16309,29469,-9,-9,-9,1,0,38,0,1,0,3,3,-9,1,4,0,0,0,0,0,-876.31372,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,.15479232,0,1,1,0,0,0,50,55,-9,-9,7,1,1,0,1,0,8,1,0,135,0,0,0,0,942.70898 -13256,16310,29470,-9,29469,-9,1,1,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-997.28491,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,1254,249064.48,0,0,0,0 -13257,16311,29471,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1036.1044,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.95144027,0,48.19,15.79,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,414,-284183.44,0,0,0,2022.4922 -13258,16312,29472,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.9924545,7.9859557,0,0,0,-982.66882,0,1,1,2019,7,0,30,20,1,0,0,9.2112017,9.2112017,0,0,0,0,96,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,5,13,2,1,983.66669,158437.72,0,0,0,1815.6948 -13258,16312,29473,-9,29472,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-923.90948,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,13,2,1,983.66669,158437.72,0,0,0,1815.6948 -13258,16312,29474,-9,29472,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.92902,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,13,2,1,983.66669,158437.72,0,0,0,1815.6948 -13259,16313,29475,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.8287721,6.417686,0,0,-1176.2069,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6061077,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,629,271588.53,73062.203,208594.64,0,100.68869 -13260,16314,29476,29477,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.9598265,9.0996141,0,14,7,40.650421,0,2,1,2019,8,0,43,0,1,0,0,16.479616,16.479616,0,0,0,0,0,1,1,0,2.9075785,0,57.16,56.15,33.2,63.27,8.333333333333334,1,1,0,0,6,10,5,1,626.33331,470080.22,216005.2,514725.59,254458.72,4799.0718 -13260,16314,29477,29476,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.1485729,8.7379761,0,15,-7,-94.862564,0,2,2,2019,23,9,52,53,1,9,0,17.162577,17.162577,0,0,0,0,0,1,1,0,3.002605,0,33.2,63.27,57.16,56.15,5,1,1,0,0,8,10,5,1,626.33331,470080.22,216005.2,514725.59,254458.72,4799.0718 -13260,16314,29478,-9,29477,29476,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.5955,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,626.33331,470080.22,216005.2,514725.59,254458.72,4799.0718 -13261,16315,29479,29480,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.2273846,8.7893763,0,8,-10,-100.12296,0,2,2,2019,10,0,45,20,1,0,0,24.390247,24.390247,0,0,0,0,0,0,0,0,2.3555875,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,1,5,1,811.5,945945.5,524059.69,266820.78,88701.336,5282.1279 -13261,16315,29480,29479,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.462882,8.6790123,0,8,10,25.113161,0,3,3,2019,7,0,45,40,1,0,0,10.701049,10.701049,0,0,0,0,0,0,0,0,.67939377,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,1,5,1,811.5,945945.5,524059.69,266820.78,88701.336,5282.1279 -13262,16316,29481,-9,29482,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.30206,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,2,2,0,690.5,150645.56,0,0,0,827.50983 -13262,16316,29482,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,0,5.2549963,5.6219039,0,0,-993.67383,0,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,5.3105402,0,23.34,32.7,-9,-9,0,3,4,1,1,1,2,2,0,690.5,150645.56,0,0,0,827.50983 -13263,16317,29483,29484,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.7585058,8.7186394,0,1,3,55.298935,0,2,2,2019,9,0,45,45,1,0,0,15.071754,15.071754,0,0,0,0,0,0,0,0,.11294426,0,42.64,57.17,49,58,8.333333333333334,1,1,0,0,6,8,5,1,544,432167.56,8352.3555,243295.59,-16557.752,4318.7646 -13263,16317,29484,29483,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4909868,8.1702099,0,1,-3,-.11227692,-9,-9,-9,2019,10,0,40,0,1,1,0,14.748806,14.748806,0,0,0,0,0,0,0,0,0,0,49,58,42.64,57.17,7,4,1,0,0,1,8,5,1,544,432167.56,8352.3555,243295.59,-16557.752,4318.7646 -13264,16318,29485,29486,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,62,8,80.110046,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,5.5196619,0,0,1,1,0,0,0,64.69,16.2,57.04,37.33,8.333333333333334,1,1,0,0,0,10,2,0,516.5,530384.31,102913.51,344367.25,0,1545.6943 -13264,16318,29486,29485,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,5.9465632,6.2281046,62,-8,-151.2565,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9216986,57.04,37.33,64.69,16.2,8.333333333333334,1,1,0,0,0,10,2,0,516.5,530384.31,102913.51,344367.25,0,1545.6943 -13265,16319,29487,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,6.3841343,6.2869592,0,0,-915.80469,0,3,3,2019,11,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,6.4492397,55.73,26.09,-9,-9,5,1,1,0,0,8,2,2,1,1101,296969.72,305058.94,58345.641,0,863.32111 -13266,16320,29488,29489,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.5045853,8.6868067,0,8,4,-.27487832,0,3,3,2019,13,1,40,39,1,1,0,15.970993,15.970993,0,0,0,0,0,1,1,0,0,0,49.44,49.06,38.75,53.76,3.333333333333333,1,1,0,0,9,12,5,1,591.5,1236447,1268795.8,85920.781,36766.473,3586.7114 -13266,16320,29489,29488,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.2430639,7.6811686,0,8,-4,127.64396,0,3,2,2019,20,8,35,35,1,8,0,5.0582209,5.0582209,0,0,0,0,0,1,1,0,0,0,38.75,53.76,49.44,49.06,3.333333333333333,1,1,0,0,9,12,5,1,591.5,1236447,1268795.8,85920.781,36766.473,3586.7114 -13267,16321,29490,29491,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.5386086,8.7196302,24,15,-66.676575,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1421614,8.563467,57.91,48.98,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 -13267,16321,29491,29490,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.5426989,9.3038902,0,25,-15,35.943401,0,2,2,2019,6,0,50,40,1,0,0,27.982758,27.982758,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.91,48.98,8.333333333333334,1,1,0,0,9,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 -13267,16321,29492,-9,29491,29490,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-982.00525,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 -13267,16321,29493,-9,29491,29490,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1026.3107,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,5.1225963,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,570,3357761,2386914.8,460765.94,0,7372.7271 -13268,16322,29494,29497,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,7.324892,7.5867901,0,7,1,-6.9931693,0,-9,-9,2019,0,0,36,84,1,0,0,5.7673502,5.7673502,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,10,2,3,0,0,7,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 -13268,16322,29495,-9,29497,29494,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.5562,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 -13268,16322,29496,-9,29497,29494,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.74011,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 -13268,16322,29497,29494,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,9.3093605,9.2127686,0,8,-1,201.89874,0,2,3,2019,0,0,60,48,1,0,0,21.680347,21.680347,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,0,2,3,0,0,8,13,5,0,698.5,283864.75,128643.86,364560.59,145135,4731.2031 -13269,16323,29498,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.1611104,5.8368902,0,0,-997.56891,0,2,3,2019,24,10,0,0,4,10,0,0,0,0,0,0,0,74.5,1,1,0,0,5.9863067,30.86,34.54,-9,-9,8.333333333333334,1,1,0,1,3,7,2,1,550,1292098.4,137969.56,0,0,910.10736 -13270,16324,29499,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.1425428,9.3201342,0,0,0,-910.15833,0,2,2,2019,11,0,42,53,1,0,0,22.659019,22.659019,0,0,0,0,0,1,1,0,4.8642511,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,771,174921.78,264268,0,0,2800.1897 -13271,16325,29500,-9,29502,-9,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-996.33813,-9,3,-9,2019,18,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.61,54.5,-9,-9,1.666666666666667,1,1,0,1,0,12,2,0,724.33331,25672.461,19831.955,202139.19,0,2048.4316 -13271,16325,29501,-9,29502,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.7375,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,724.33331,25672.461,19831.955,202139.19,0,2048.4316 -13271,16325,29502,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,2,0,5.6666436,6.0800552,0,0,-891.92578,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,5.8852305,0,29.02,51.94,-9,-9,5,1,1,0,0,0,12,2,0,724.33331,25672.461,19831.955,202139.19,0,2048.4316 -13272,16326,29503,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.0577869,8.8074646,0,0,0,-825.41736,0,2,3,2019,7,0,48,42,1,0,0,17.940512,17.940512,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,460,414347.88,289692.75,46302.676,73022.383,2523.9243 -13273,16327,29504,29505,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,7,0,-8.1104469,-9,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,14.366508,17.393538,135.62788,0,1,1,0,0,0,38,25,47.91,57.48,8.333333333333334,3,4,0,1,0,8,3,1,573,884096.94,21531.643,640676.63,0,1707.9016 -13273,16327,29505,29504,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.7312684,7.6223207,7,0,77.271294,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1858664,47.91,57.48,38,25,0,4,2,0,0,8,8,3,1,573,884096.94,21531.643,640676.63,0,1707.9016 -13274,16328,29506,-9,29507,29509,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.019,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 -13274,16328,29507,29509,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,7.0186858,6.9144516,0,5,-10,156.50371,0,-9,-9,2019,12,0,21,22,1,0,0,6.6667781,6.6667781,0,0,0,0,0,1,1,0,0,0,52,54.51,55.44,52.99,8.333333333333334,1,1,0,0,3,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 -13274,16328,29508,-9,29507,29509,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-908.43164,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 -13274,16328,29509,29507,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.8519449,9.0876398,0,5,10,-6.1852918,0,3,2,2019,8,0,40,42,1,0,0,19.162893,19.162893,0,0,0,0,0,1,1,0,1.2958096,0,55.44,52.99,52,54.51,8.333333333333334,1,1,0,0,7,12,4,1,346.25,195430.05,105165.61,301068.28,151645.84,3349.2573 -13275,16329,29510,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.9680467,6.0507588,0,0,-957.68793,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,3.1595724,8.4332504,27.553972,0,1,1,0,0,6.338974,40.24,23.69,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,55,415979.5,147237.89,203669.98,0,1037.0405 -13276,16330,29511,29512,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7504086,6.917129,45,6,-206.23477,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5415692,6.821981,60.3,46.58,61.76,40.48,8.333333333333334,1,1,0,0,4,10,3,1,1239,258486.11,402560.63,194755.88,0,2117.9258 -13276,16330,29512,29511,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.4773169,7.4523768,45,-6,-34.147915,0,3,3,2019,7,1,0,17,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5499811,7.5215907,61.76,40.48,60.3,46.58,10,1,1,0,0,7,10,3,1,1239,258486.11,402560.63,194755.88,0,2117.9258 -13277,16331,29513,29514,-9,-9,1,0,54,0,0,0,2,2,-9,1,4,0,0,0,31,-3,.63362366,0,2,3,2019,10,0,0,41,3,1,0,0,0,0,0,0,0,0,0,0,0,1.8890134,0,52,53,54,53,8,1,1,0,0,8,13,3,1,2975.5,554711.56,403334.97,117497.2,12860.58,1017.1424 -13277,16331,29514,29513,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.2414627,8.4423752,0,6,3,-1.2152389,0,-9,-9,2019,9,0,40,38,1,0,0,12.127311,12.127311,0,0,0,0,0,0,0,0,3.8885245,0,54,53,52,53,8,4,1,0,0,1,13,3,1,2975.5,554711.56,403334.97,117497.2,12860.58,1017.1424 -13278,16332,29515,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.8816414,9.3565016,0,0,0,-978.57538,0,2,3,2019,8,1,40,40,1,1,0,32.823334,32.823334,0,0,0,0,2,0,0,0,6.5534716,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,11,6,5,1,354,754103.13,123344.97,0,0,2523.7351 -13279,16333,29516,-9,29519,29517,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.96539,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 -13279,16333,29517,29519,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.018096,8.837513,0,8,0,-42.074505,0,-9,-9,2019,11,0,45,49,1,0,0,19.593927,19.593927,0,0,0,0,7,1,1,0,.042423338,0,55.19,54.26,40.73,43.99,8.333333333333334,1,1,0,0,9,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 -13279,16333,29518,-9,29519,29517,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-925.50818,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 -13279,16333,29519,29517,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,22,0,-44.964222,0,2,2,2019,12,2,0,20,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,40.73,43.99,55.19,54.26,8.333333333333334,1,1,0,0,1,4,4,1,1429.25,454885.53,340201.28,192439.41,113325.98,3211.8918 -13280,16334,29520,29521,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,7.908536,8.1815243,7,1,-22.588093,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,5.4384294,8.1186247,36.03,37.77,28.31,49.08,6.666666666666667,1,1,0,0,1,11,3,1,2304.5,960920.38,736515.44,159946.25,0,1930.6259 -13280,16334,29521,29520,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,6.2928224,6.6293173,7,-1,118.46504,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,.31126472,7.0088539,28.31,49.08,36.03,37.77,5,1,1,0,0,5,11,3,1,2304.5,960920.38,736515.44,159946.25,0,1930.6259 -13280,16335,29522,-9,29521,29520,1,0,30,0,0,0,1,1,-9,0,3,8.129755,8.1849079,0,0,0,-964.41467,0,1,2,2019,10,0,38,37,1,0,0,10.410344,10.410344,0,0,0,0,0,0,0,0,0,0,43.52,50.25,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,669,235303.36,63709.094,0,0,1310.7207 -13281,16336,29523,29524,-9,-9,1,0,29,0,1,0,1,1,-9,0,4,8.3958654,8.0473385,5.4784188,1,-2,31.360886,-9,-9,-9,2019,5,0,30,0,1,0,0,16.456699,16.456699,0,0,0,0,0,1,1,0,5.7553892,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,1,1,5,5,1,836.33331,541868.94,183629.56,187204.61,112411.88,4102.4565 -13281,16336,29524,29523,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.8106785,8.7985964,0,1,2,158.93401,-9,2,1,2019,12,0,38,0,1,0,0,24.094009,24.094009,0,0,0,0,0,1,1,0,2.7895558,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,5,5,1,836.33331,541868.94,183629.56,187204.61,112411.88,4102.4565 -13281,16336,29525,-9,29523,29524,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.7532,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,1,836.33331,541868.94,183629.56,187204.61,112411.88,4102.4565 -13282,16337,29526,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.18748,7.2682419,0,0,0,-1021.2584,0,3,2,2019,15,4,20,16,1,4,0,8.1286268,8.1286268,0,0,0,0,0,1,1,0,0,0,52.41,44.88,-9,-9,6.666666666666667,3,4,0,0,5,7,2,0,663,84459.727,45958.016,0,0,1786.2273 -13282,16337,29527,-9,29526,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.84137,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,663,84459.727,45958.016,0,0,1786.2273 -13282,16337,29528,-9,29526,-9,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-944.08313,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,7,2,0,663,84459.727,45958.016,0,0,1786.2273 -13283,16338,29529,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,7.2202635,7.310318,0,0,-1085.8862,0,3,2,2019,9,2,0,0,4,2,0,0,0,0,14.799873,0,0,0,1,1,0,0,6.6574039,53.98,26.25,-9,-9,3.333333333333333,1,1,0,0,0,12,3,1,1175,312582.09,110066.02,189957.02,0,405.29129 -13284,16339,29530,29531,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.0706635,6.6883354,57,-3,-17.232819,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8580294,6.6035109,55.6,37.07,42.7,46.47,8.333333333333334,1,1,0,0,0,9,4,1,346,1597612,926571.75,456328.44,0,3988.4126 -13284,16339,29531,29530,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.4094076,8.0999012,57,3,-103.73264,0,2,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.3165927,8.4616108,42.7,46.47,55.6,37.07,8.333333333333334,1,1,0,0,4,9,4,1,346,1597612,926571.75,456328.44,0,3988.4126 -13284,16340,29532,-9,29530,29531,1,1,31,0,0,0,2,2,-9,0,4,7.4495993,7.7736373,0,0,0,-969.20813,0,2,1,2019,3,0,37,21,1,0,0,5.3961778,5.3961778,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,767,-28797.17,-49082.734,0,0,428.56192 -13285,16341,29533,29534,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.8188429,7.8226953,0,27,-4,-11.3412,0,2,2,2019,15,3,40,40,1,3,0,7.7629595,7.7629595,0,0,0,0,0,0,0,0,8.1782112,0,38,62.48,58.46,44.55,3.333333333333333,1,1,0,1,4,2,5,1,1062,1022866.4,769227.94,210226.69,0,7415.8481 -13285,16341,29534,29533,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.4333553,9.4524479,0,26,4,-68.235359,0,2,2,2019,8,0,50,40,1,0,0,39.572926,39.572926,0,0,0,0,0,0,0,0,0,0,58.46,44.55,38,62.48,8.333333333333334,1,1,0,0,8,2,5,1,1062,1022866.4,769227.94,210226.69,0,7415.8481 -13286,16342,29535,29536,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,6.6594534,6.740725,0,21,-1,56.595688,0,2,2,2019,8,0,14,40,1,0,0,6.21556,6.21556,0,0,0,0,2,1,1,0,0,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,8,4,4,1,334.5,-127605.75,-26283.475,133143.08,67978.219,2750.3735 -13286,16342,29536,29535,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3936014,8.385004,0,23,1,-112.90752,0,2,2,2019,7,0,40,38,1,0,0,11.745175,11.745175,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.16,56.15,10,1,1,0,0,10,4,4,1,334.5,-127605.75,-26283.475,133143.08,67978.219,2750.3735 -13287,16343,29537,29539,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.368638,9.5919743,0,2,-2,-126.01046,-9,-9,-9,2019,11,0,40,0,1,2,0,38.424297,38.424297,0,0,0,0,0,0,0,0,3.5392749,0,48,56,40.88,49.19,7,1,1,0,0,1,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 -13287,16343,29538,-9,29537,29539,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.13989,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 -13287,16343,29539,29537,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.8352404,8.9468241,0,7,2,46.266464,0,3,2,2019,16,4,35,35,1,4,0,21.211086,21.211086,0,0,0,0,0,0,0,0,0,0,40.88,49.19,48,56,3.333333333333333,1,1,0,0,9,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 -13287,16343,29540,-9,29537,29539,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.23022,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1022.75,1190217.1,357578.25,662996.69,0,6930.0674 -13288,16344,29541,-9,-9,-9,1,0,30,0,1,0,2,2,-9,1,1,0,0,0,0,0,-892.94458,0,2,2,2019,33,12,0,17,3,12,0,0,0,0,0,0,0,14.5,1,1,0,0,0,21.15,29.72,-9,-9,3.333333333333333,4,2,1,0,1,6,1,0,110,194219.64,0,0,0,1895.5928 -13289,16345,29542,-9,29544,29543,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-937.10376,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,433,58388.785,20014.152,131156.48,125541.73,1973.5585 -13289,16345,29543,29544,-9,-9,1,1,38,1,1,0,3,3,-9,0,5,6.7192211,6.6015377,0,1,9,.20239721,-9,2,2,2019,17,4,10,0,1,4,0,9.7494183,9.7494183,0,0,0,0,0,1,1,0,0,0,49.5,40.48,44.58,36.3,5,1,1,0,1,7,10,3,0,433,58388.785,20014.152,131156.48,125541.73,1973.5585 -13289,16345,29544,29543,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,7.7001343,8.3068476,0,1,0,27.923788,-9,-9,-9,2019,10,3,60,0,1,3,0,6.2271109,6.2271109,0,0,0,0,0,1,1,0,0,0,44.58,36.3,49.5,40.48,6.666666666666667,1,1,0,0,3,10,3,0,433,58388.785,20014.152,131156.48,125541.73,1973.5585 -13290,16346,29545,-9,29546,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.32416,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,2,3,-9,0,0,6,2,1,943,259652.16,130789.95,499558.28,85125.938,1517.015 -13290,16346,29546,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,7.2961478,7.36127,5.7569356,0,0,-1069.0814,0,3,3,2019,9,0,16,26,1,0,0,10.822214,10.822214,0,0,0,0,0,1,1,0,5.4646573,0,42.32,36.33,-9,-9,6.666666666666667,2,3,0,0,10,6,2,1,943,259652.16,130789.95,499558.28,85125.938,1517.015 -13290,16347,29547,-9,29546,-9,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1033.6791,-9,1,-9,2019,0,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.58,46.43,-9,-9,6.666666666666667,2,3,0,0,1,6,1,1,437,-51200.941,0,0,0,252.65083 -13291,16348,29548,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,0,0,-866.82379,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,55.58,-9,-9,5,1,1,0,0,0,10,1,1,155,438291.47,18161.813,183519.81,105498.51,115.65129 -13292,16349,29549,-9,29550,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.5924,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,1,291,-88861.531,38480.055,0,0,2189.6541 -13292,16349,29550,-9,-9,-9,1,0,31,1,3,0,2,2,-9,0,3,6.8661113,7.5914011,6.5552964,0,0,-982.32538,0,2,2,2019,10,0,18,18,1,0,0,6.9020591,6.9020591,0,0,0,0,0,1,1,0,5.5450583,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,291,-88861.531,38480.055,0,0,2189.6541 -13293,16350,29551,29554,-9,-9,1,1,32,1,3,0,2,2,-9,0,4,9.2374239,9.2895851,0,9,1,-25.912424,0,2,2,2019,15,4,38,40,1,4,0,32.104065,32.104065,0,0,0,0,2,1,1,0,6.7770405,0,45.85,61.26,51.24,58.84,10,1,1,0,0,6,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 -13293,16350,29552,-9,29554,29551,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-931.88788,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 -13293,16350,29553,-9,29554,29551,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.8451,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 -13293,16350,29554,29551,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,7.5672579,7.293819,0,12,-1,138.8707,0,2,-9,2019,10,0,16,16,1,0,0,11.684475,11.684475,0,0,0,0,2,1,1,0,0,0,51.24,58.84,45.85,61.26,8.333333333333334,1,1,0,0,9,6,5,1,424.5,65171.215,58695.434,221163.3,125380.65,5096.7749 -13294,16351,29555,-9,29556,29559,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.074,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 -13294,16351,29556,29559,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,20,-6,47.37072,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,56,39.32,22.67,8,2,3,0,1,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 -13294,16351,29557,-9,29556,29559,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1198.4823,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 -13294,16351,29558,-9,29556,29559,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.8562,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 -13294,16351,29559,29556,-9,-9,1,1,45,0,3,0,1,1,-9,0,1,8.4879379,8.3570557,0,20,6,65.812996,0,3,2,2019,19,7,37,37,1,7,0,17.707594,17.707594,0,0,0,0,7,1,1,0,0,0,39.32,22.67,49,56,3.333333333333333,2,3,0,1,9,6,3,1,1182.4,562789.56,542765.5,200147.44,69475.523,2891.9751 -13295,16352,29560,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.6988111,5.188592,0,0,-875.63892,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.92306989,4.9307332,57.24,38.46,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,646,288442.56,58282.453,4583.3013,0,651.33948 -13296,16353,29561,29562,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.3386989,7.1954541,2.8402812,13,-1,-104.04948,0,-9,-9,2019,9,0,18,18,1,0,0,8.5814257,8.5814257,0,0,0,0,0,0,0,0,2.9854107,2.5573134,47.53,45.46,54.89,46.52,8.333333333333334,1,1,0,0,12,5,4,1,824,14540.688,1147.4551,0,0,2379.1877 -13296,16353,29562,29561,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.9087267,8.3845863,6.8084407,13,1,62.4958,0,3,2,2019,10,0,32,32,1,0,0,10.528317,10.528317,0,0,0,0,0,0,0,0,.95925218,7.1386395,54.89,46.52,47.53,45.46,8.333333333333334,1,1,0,0,11,5,4,1,824,14540.688,1147.4551,0,0,2379.1877 -13297,16354,29563,29564,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.5408511,7.8061366,23,11,-117.36304,0,3,2,2019,10,0,0,3,4,1,0,0,0,1,0,0,0,0,1,1,0,8.5011797,7.9695063,51,48,48,49,7,1,1,0,0,12,9,3,1,353.5,1327718.8,602799.44,432821.63,0,3261.0239 -13297,16354,29564,29563,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,23,-11,-154.18613,0,2,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.3477526,0,48,49,51,48,7,1,1,0,0,10,9,3,1,353.5,1327718.8,602799.44,432821.63,0,3261.0239 -13298,16355,29565,29567,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.7590084,8.5377617,0,3,0,105.61121,0,2,2,2019,17,6,50,50,1,6,0,14.843474,14.843474,0,0,0,0,0,1,1,0,2.4690921,0,22.73,65.47,50,57,8.333333333333334,1,1,0,0,9,2,5,1,423.33334,196807.05,35044.797,239044.69,52786.41,5828.0278 -13298,16355,29566,-9,29565,29567,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.675,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,423.33334,196807.05,35044.797,239044.69,52786.41,5828.0278 -13298,16355,29567,29565,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.4703941,8.4982815,0,3,0,-33.484661,-9,-9,-9,2019,10,0,55,0,1,1,0,8.8678083,8.8678083,0,0,0,0,0,1,1,0,7.7931108,0,50,57,22.73,65.47,7,4,1,0,0,1,2,5,1,423.33334,196807.05,35044.797,239044.69,52786.41,5828.0278 -13299,16356,29568,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.7177477,8.7870398,0,0,0,-967.94183,0,3,3,2019,7,0,48,60,1,0,0,16.742266,16.742266,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,11,1,5,1,117,1046.3326,72719.039,0,0,1917.8716 -13300,16357,29569,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.3876047,6.0809641,0,0,-1078.3538,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3347058,54.37,54.8,-9,-9,10,1,1,0,0,0,12,2,1,146,346076.34,-39780.551,267727.97,0,812.9989 -13301,16358,29570,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,8.0026331,8.3707361,0,0,-1086.1505,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0331399,8.2140284,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,249,870201.06,576526.63,210084,0,2297.4409 -13302,16359,29571,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.489521,8.7375364,0,0,0,-876.78333,0,2,-9,2019,6,0,47,87,1,0,0,18.232063,18.232063,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,69,373150.56,139251.41,0,0,1593.8408 -13303,16360,29572,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.1084986,5.4313221,0,0,-1003.8721,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,0,10.004874,0,0,1,1,0,2.1946261,5.9132524,43.07,26.33,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,718,593111.63,-5489.3296,165011.41,0,1628.4197 -13303,16361,29573,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1000.3235,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.75,49.38,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,422,-237905.39,0,0,0,1127.5374 -13304,16362,29574,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5531397,8.134407,0,0,0,-1019.5916,0,2,2,2019,7,0,50,50,1,0,0,10.460015,10.460015,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,207,-113104.52,-5210.5386,0,0,2033.4083 -13305,16363,29575,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-847.01996,-9,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,18.84,25.33,-9,-9,1.666666666666667,1,1,0,0,0,13,2,0,383,0,0,0,0,2720.1936 -13306,16364,29576,29577,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,7.4865074,7.4116125,0,17,-4,-11.570801,0,3,2,2019,7,0,35,35,1,0,0,5.4906869,5.4906869,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,8,1,4,1,727,825312.88,430660.75,190724.28,0,2161.9636 -13306,16364,29577,29576,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.1352043,8.6553926,4.9807858,17,4,44.643715,0,-9,-9,2019,7,0,38,38,1,0,0,12.556395,12.556395,0,0,0,0,0,0,0,0,5.7320309,5.27035,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,11,1,4,1,727,825312.88,430660.75,190724.28,0,2161.9636 -13307,16365,29578,29579,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,2,2,2019,11,3,0,0,4,3,0,0,0,1,0,72.063316,0,0,1,1,0,0,0,52.47,11.65,49.56,19.32,8.333333333333334,1,1,0,0,0,7,1,1,738.5,388212.31,10549.24,373997,0,1865.3533 -13307,16365,29579,29578,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49.56,19.32,52.47,11.65,8.333333333333334,1,1,0,0,0,7,1,1,738.5,388212.31,10549.24,373997,0,1865.3533 -13308,16366,29580,29581,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7122936,8.5971794,0,6,-1,-92.00032,0,2,3,2019,6,0,45,45,1,0,0,15.752007,15.752007,0,0,0,0,0,0,0,0,0,0,54.74,57.22,64.39,28.77,8.333333333333334,1,1,0,0,9,1,4,1,1557,981170.63,951194.75,149525.89,0,2544.123 -13308,16366,29581,29580,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,6.4703851,7.0414181,16,1,53.269711,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5490565,64.39,28.77,54.74,57.22,8.333333333333334,1,1,0,0,0,1,4,1,1557,981170.63,951194.75,149525.89,0,2544.123 -13309,16367,29582,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.2675161,7.0555167,0,0,-985.02673,0,3,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,8.3310995,6.983614,56.39,29,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,243,275589.31,81553.328,0,0,2384.7156 -13310,16368,29583,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.1250181,8.0599508,3.0081849,0,0,-1154.4786,0,-9,-9,2019,6,0,37,40,1,0,0,12.176753,12.176753,0,0,0,0,0,0,0,0,0,3.0565512,54.96,53.17,-9,-9,10,1,1,0,0,9,9,4,1,346,368143.81,-54337.441,214105.3,0,1260.1505 -13311,16369,29584,29585,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.9329834,8.9588823,20,-7,82.341934,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,9.1830149,59.14,52.5,51.73,58.82,10,1,1,0,0,12,4,5,1,2101.5,3320527.5,1708275.8,274648.88,0,6668.2539 -13311,16369,29585,29584,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.7597952,7.6669469,20,7,-59.702312,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.8481755,7.4452071,51.73,58.82,59.14,52.5,0,1,1,0,0,6,4,5,1,2101.5,3320527.5,1708275.8,274648.88,0,6668.2539 -13312,16370,29586,29587,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.151309,7.7176285,45,-7,77.978035,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.7120728,7.8796983,38.44,49.92,57.33,53.46,8.333333333333334,1,1,0,0,8,6,3,1,377.5,1448245.4,443778.06,405155.5,0,2169.5515 -13312,16370,29587,29586,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,45,7,3.6995728,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.33,53.46,38.44,49.92,10,1,1,0,0,4,6,3,1,377.5,1448245.4,443778.06,405155.5,0,2169.5515 -13313,16371,29588,29589,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.6738625,8.5080137,0,2,2,-9.4690208,0,-9,-9,2019,14,3,44,41,1,3,0,14.437117,14.437117,0,0,0,0,0,0,0,0,0,0,44.43,56.74,58.15,52.91,8.333333333333334,1,1,0,0,2,8,5,0,466,46529.324,-10065.209,0,0,3529.6597 -13313,16371,29589,29588,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.7748985,8.7686415,0,2,-2,-10.505038,0,1,1,2019,4,0,50,55,1,0,0,14.214049,14.214049,0,0,0,0,0,0,0,0,4.9393663,0,58.15,52.91,44.43,56.74,10,1,1,0,0,4,8,5,0,466,46529.324,-10065.209,0,0,3529.6597 -13314,16372,29590,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,8.7703753,8.6948452,0,0,0,-1165.6056,0,2,1,2019,5,0,38,38,1,0,0,18.061539,18.061539,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,5,5,0,707,467708.94,135736.16,315194.06,122293.36,2319.3669 -13315,16373,29591,29592,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.772985,7.834096,0,10,-4,-22.138876,0,3,3,2019,11,1,39,39,1,1,0,8.2356901,8.2356901,0,0,0,0,0,1,1,0,0,0,40.75,58.26,49.91,40.22,6.666666666666667,1,1,0,0,12,2,4,1,988.5,212792.55,18461.109,165818.19,66783.797,2737.1921 -13315,16373,29592,29591,-9,-9,1,1,57,0,0,0,2,2,-9,1,3,7.8380804,8.1620293,0,10,4,93.440109,0,-9,-9,2019,10,0,45,44,1,0,0,6.6521811,6.6521811,0,0,0,0,0,1,1,0,4.499568,0,49.91,40.22,40.75,58.26,6.666666666666667,1,1,0,0,10,2,4,1,988.5,212792.55,18461.109,165818.19,66783.797,2737.1921 -13316,16374,29593,-9,-9,-9,1,0,49,0,2,0,3,3,-9,1,5,6.8395452,6.6300468,0,0,0,-991.77655,-9,3,3,2019,8,0,15,0,1,0,0,5.6149659,5.6149659,0,0,0,0,42,1,1,0,0,0,38.26,56.14,-9,-9,3.333333333333333,1,1,0,0,2,13,2,0,869,-262185.38,0,0,0,1504.1415 -13316,16375,29594,-9,29596,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.2393,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,467,41254.434,0,0,0,718.84186 -13316,16375,29595,-9,29596,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8478,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,467,41254.434,0,0,0,718.84186 -13316,16375,29596,-9,29593,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,0,0,-990.89117,-9,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,53.99,48.04,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,467,41254.434,0,0,0,718.84186 -13316,16376,29597,-9,29593,-9,1,0,27,0,2,0,1,1,-9,0,4,7.9441738,7.8467531,0,0,0,-936.59766,-9,3,-9,2019,6,0,42,0,1,0,1,8.8375158,8.8375158,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,324,221038.42,0,0,0,1533.7626 -13316,16377,29598,-9,29593,-9,1,1,25,0,2,0,2,2,-9,0,4,7.4686995,7.5124841,0,0,0,-912.18988,-9,3,-9,2019,6,0,25,0,1,0,1,6.9184456,6.9184456,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,13,3,0,516,402421,-135604.94,0,0,702.45264 -13316,16378,29599,-9,29593,-9,1,1,23,0,2,0,3,3,-9,0,3,0,0,0,0,0,-806.88928,-9,3,-9,2019,2,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,1,0,0,13,1,0,791,81641.719,0,0,0,462.57458 -13317,16379,29600,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,3.6265781,3.4481378,0,0,-1024.2885,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,3.3098655,3.0700161,49.66,18.67,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,964,-128736.51,-54833.992,0,0,1014.7006 -13317,16380,29601,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.1374636,8.0214024,0,0,-995.96521,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.4985442,8.0222454,55.08,48.98,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,4249,682713.75,738265.31,0,0,1808.3683 -13318,16381,29602,29604,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.445292,7.7864509,0,9,-3,-16.643841,0,2,2,2019,9,0,23,23,1,0,0,8.7234011,8.7234011,0,0,0,0,0,1,1,0,1.1693,0,53.24,50.01,54.74,57.22,8.333333333333334,1,1,0,0,10,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 -13318,16381,29603,-9,29602,29604,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.32404,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 -13318,16381,29604,29602,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.805974,9.1708126,0,9,3,19.244684,0,-9,-9,2019,8,0,39,39,1,0,0,26.808933,26.808933,0,0,0,0,0,1,1,0,1.6882915,0,54.74,57.22,53.24,50.01,8.333333333333334,1,1,0,0,10,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 -13318,16381,29605,-9,29602,29604,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.95953,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,607,606276,15372.721,466553.13,908.82434,3096.301 -13319,16382,29606,-9,29608,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.96179,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,2,0,485.33334,0,0,0,0,1165.9492 -13319,16382,29607,-9,29608,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.0327,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,4,2,-9,0,0,9,2,0,485.33334,0,0,0,0,1165.9492 -13319,16382,29608,-9,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1117.4972,-9,1,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,55,-9,-9,3.333333333333333,4,2,0,1,3,9,2,0,485.33334,0,0,0,0,1165.9492 -13319,16383,29609,-9,29610,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-781.77039,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,4,5,-9,0,0,9,4,0,586.5,303946.63,16499.816,0,0,1586.3232 -13319,16383,29610,-9,29608,-9,1,0,18,0,3,0,2,2,-9,0,3,7.9399304,8.1030951,0,0,0,-1076.1007,0,2,-9,2019,8,0,38,0,1,0,1,7.7511172,7.7511172,0,0,0,0,0,1,0,1,0,0,57.49,45.09,-9,-9,8.333333333333334,4,5,0,0,2,9,4,0,586.5,303946.63,16499.816,0,0,1586.3232 -13320,16384,29611,29613,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,6.8496423,6.8014822,0,17,0,1.9637728,0,2,-9,2019,9,0,20,0,1,0,0,5.3971014,5.3971014,0,0,0,0,0,1,1,0,0,0,60.13,49.27,58.15,52.91,8.333333333333334,1,1,0,0,0,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 -13320,16384,29612,-9,29611,29613,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4744,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 -13320,16384,29613,29611,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.7444458,7.7668896,0,17,9,12.707532,0,-9,-9,2019,6,0,40,40,1,0,0,7.7724171,7.7724171,0,0,0,0,0,1,1,0,4.1089849,0,58.15,52.91,60.13,49.27,8.333333333333334,1,1,0,0,9,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 -13320,16384,29614,-9,29611,29613,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.10327,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,1105.5,117442.02,0,106551.51,21963.854,3624.4858 -13321,16385,29615,29616,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.0340323,6.1951942,7,1,-71.233376,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,3.8795669,6.3393421,46.21,37.4,54.96,53.17,8.333333333333334,1,1,0,0,0,5,3,1,545,1553356.3,973668,313425.06,0,3385.4092 -13321,16385,29616,29615,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.2575436,8.3130474,7,-1,-78.13517,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5518925,8.1667233,54.96,53.17,46.21,37.4,8.333333333333334,1,1,0,0,0,5,3,1,545,1553356.3,973668,313425.06,0,3385.4092 -13322,16386,29617,-9,29619,29621,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.6053,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,313,-196825.39,0,0,0,2646.4922 -13322,16386,29618,-9,29619,29621,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.35645,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,313,-196825.39,0,0,0,2646.4922 -13322,16386,29619,29621,-9,-9,1,0,34,0,4,0,3,3,-9,0,3,0,0,0,21,-4,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,30.6,57.16,43.21,44.41,6.666666666666667,2,3,0,1,0,2,1,0,313,-196825.39,0,0,0,2646.4922 -13322,16386,29620,-9,29619,29621,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.5151,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,313,-196825.39,0,0,0,2646.4922 -13322,16386,29621,29619,-9,-9,1,1,38,0,4,0,3,3,-9,1,1,0,0,0,21,4,0,0,3,3,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,4.8423986,0,43.21,44.41,30.6,57.16,6.666666666666667,2,3,1,1,0,2,1,0,313,-196825.39,0,0,0,2646.4922 -13323,16387,29622,-9,29624,29623,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-987.21613,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,620,196106.75,0,0,0,1578.4292 -13323,16387,29623,29624,-9,-9,1,1,43,0,0,0,3,3,-9,0,2,7.5649281,7.5151539,0,28,0,46.10704,0,2,3,2019,10,0,30,25,1,0,0,6.9332919,6.9332919,0,0,0,0,0,1,1,0,0,0,52.66,24.85,40.86,42.09,6.666666666666667,1,1,0,0,10,7,3,0,620,196106.75,0,0,0,1578.4292 -13323,16387,29624,29623,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,6.9457202,7.0945539,0,28,0,82.050629,0,3,3,2019,12,1,45,30,1,1,0,2.2931054,2.2931054,0,0,0,0,2,1,1,0,0,0,40.86,42.09,52.66,24.85,8.333333333333334,1,1,0,0,10,7,3,0,620,196106.75,0,0,0,1578.4292 -13323,16388,29625,-9,29624,29623,1,1,20,0,0,0,2,2,-9,0,4,6.5182433,6.7870045,4.8415122,0,0,-1003.0278,0,2,3,2019,11,3,8,25,1,3,1,10.241313,10.241313,0,0,0,0,0,1,1,0,4.6668239,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,3,7,2,0,599,93925.859,-120350.66,0,0,968.4502 -13324,16389,29626,29627,-9,-9,1,0,32,1,4,0,1,1,-9,0,4,0,0,0,3,1,-20.881653,0,2,2,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,50,57,10,2,3,0,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 -13324,16389,29627,29626,-9,-9,1,1,31,1,4,0,2,2,-9,0,4,6.0649638,5.9726133,0,3,-1,-72.771233,0,-9,-9,2019,10,0,16,0,1,1,0,3.3637786,3.3637786,0,0,0,0,0,1,1,0,4.0490317,0,50,57,62.49,55.09,7,1,1,0,0,1,4,2,1,736,21236.152,0,0,0,1789.0367 -13324,16389,29628,-9,29626,29627,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.2141,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 -13324,16389,29629,-9,29626,29627,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.7003,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 -13324,16389,29630,-9,29626,29627,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1051.0627,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 -13324,16389,29631,-9,29626,29627,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1014.1376,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,2,1,736,21236.152,0,0,0,1789.0367 -13325,16390,29632,-9,29633,29634,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-878.72876,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,260.66666,97999.063,37782.613,166162.39,91687.898,3017.697 -13325,16390,29633,29634,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,0,0,0,15,-3,-108.97485,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,40.88,38.46,8.333333333333334,1,1,0,0,3,8,4,1,260.66666,97999.063,37782.613,166162.39,91687.898,3017.697 -13325,16390,29634,29633,-9,-9,1,1,46,0,3,0,1,1,-9,0,2,9.0147877,8.9753723,0,14,3,-63.461803,0,2,2,2019,12,2,48,45,1,2,0,24.925137,24.925137,0,0,0,0,0,1,1,0,2.5096266,0,40.88,38.46,57.06,57.76,6.666666666666667,1,1,0,0,11,8,4,1,260.66666,97999.063,37782.613,166162.39,91687.898,3017.697 -13326,16391,29635,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1111.4478,0,3,3,2019,19,8,0,45,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,45.06,27.09,-9,-9,1.666666666666667,1,1,0,1,4,7,1,0,290,119399.7,0,0,0,0 -13327,16392,29636,29637,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.0186787,8.0137157,0,25,-1,13.476712,0,3,2,2019,12,0,62,48,1,0,0,5.0038009,5.0038009,0,0,0,0,0,1,1,0,0,0,49.44,54.26,54.1,59.11,8.333333333333334,1,1,0,0,6,11,4,1,432.33334,537190.25,109920.07,273679.22,118821.7,2987.9741 -13327,16392,29637,29636,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,7.7231045,7.6236339,0,25,1,-97.881439,0,2,2,2019,13,2,35,39,1,2,0,7.6074595,7.6074595,0,0,0,0,2,1,1,0,0,0,54.1,59.11,49.44,54.26,8.333333333333334,1,1,0,0,9,11,4,1,432.33334,537190.25,109920.07,273679.22,118821.7,2987.9741 -13327,16392,29638,-9,29637,29636,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1113.9685,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,0,1,1,0,0,0,11,4,1,432.33334,537190.25,109920.07,273679.22,118821.7,2987.9741 -13327,16393,29639,-9,29637,29636,1,0,19,0,1,0,2,2,-9,0,5,7.5989146,7.8162208,0,0,0,-1025.0721,0,2,2,2019,11,3,37,18,1,3,1,7.0383153,7.0383153,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,137,46921.555,0,0,0,859.00909 -13328,16394,29640,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.9465351,8.3354015,0,0,0,-914.95575,0,2,3,2019,7,0,35,35,1,0,0,10.2064,10.2064,0,0,0,0,0,1,1,0,2.5847771,0,57.76,54.51,-9,-9,10,1,1,0,0,11,11,4,1,710,183394.13,-9721.4756,0,0,2082.3103 -13329,16395,29641,29642,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,7.937088,7.9207158,31,-10,172.34825,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8551579,8.2473278,56.47,59.4,58.44,55.75,8.333333333333334,1,1,0,0,0,7,4,1,901.5,0,0,0,0,4212.0435 -13329,16395,29642,29641,-9,-9,1,1,80,0,0,0,1,1,-9,0,5,0,8.2741375,8.0585852,27,10,-21.099125,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.6831965,8.6542149,58.44,55.75,56.47,59.4,8.333333333333334,1,1,0,0,0,7,4,1,901.5,0,0,0,0,4212.0435 -13330,16396,29643,-9,-9,-9,1,0,23,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1069.2434,0,-9,3,2019,29,11,0,0,3,11,1,0,0,0,0,0,0,0,1,1,0,0,0,19.48,45.3,-9,-9,0,1,1,0,0,0,12,1,0,807,404514.63,0,0,0,1395.4529 -13331,16397,29644,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.4407902,5.4093003,0,0,-910.28259,0,-9,2,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,5.054574,32.49,25.76,-9,-9,1.666666666666667,1,1,0,1,0,7,2,1,307,136216.27,4679.9248,0,0,242.97292 -13332,16398,29645,29646,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.1897511,6.2132282,61,1,-88.192459,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,5.9718056,53.46,21.12,28.46,32.03,5,1,1,0,0,0,2,2,1,838,548783.44,96705.328,304719.97,0,2074.0603 -13332,16398,29646,29645,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,61,-1,56.721748,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,28.46,32.03,53.46,21.12,10,1,1,0,0,0,2,2,1,838,548783.44,96705.328,304719.97,0,2074.0603 -13333,16399,29647,29648,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.0627031,8.1536016,7,-1,88.045319,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.4377909,54,45,58.06,43.45,8,1,1,0,0,0,4,4,1,927,1338117.1,643303.44,326673.5,0,3316.8491 -13333,16399,29648,29647,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,7.7294726,7.5763426,23,1,-116.39022,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.5276599,58.06,43.45,54,45,8.333333333333334,1,1,0,0,0,4,4,1,927,1338117.1,643303.44,326673.5,0,3316.8491 -13334,16400,29649,-9,29650,29651,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1066.1787,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 -13334,16400,29650,29651,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,0,0,0,14,-8,-3.2784185,0,2,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,23.1,68.18000000000001,53.62,48.74,5,1,1,0,0,1,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 -13334,16400,29651,29650,-9,-9,1,1,53,0,3,0,2,2,-9,0,2,6.7687488,7.1498504,6.4133439,12,8,63.653027,0,-9,2,2019,8,0,40,45,1,0,0,2.3387566,2.3387566,0,0,0,0,0,1,1,0,0,6.5019927,53.62,48.74,23.1,68.18000000000001,8.333333333333334,1,1,0,1,11,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 -13334,16400,29652,-9,29650,29651,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-958.82983,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,2,0,1417.25,112424.74,42028.301,0,0,1177.058 -13335,16401,29653,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-902.10895,0,-9,-9,2019,24,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,0,0,18.76,23.91,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,505,167588.77,0,0,0,1397.5101 -13336,16402,29654,-9,29656,29655,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6379,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,764.66669,128865.77,33260.941,235991.48,165765.39,2710.2263 -13336,16402,29655,29656,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.1881084,8.0249529,0,8,3,14.096311,0,-9,-9,2019,6,0,45,48,1,0,0,7.2519708,7.2519708,0,0,0,0,0,1,1,0,0,0,47,51,58.32,50.22,10,1,1,0,0,12,9,3,0,764.66669,128865.77,33260.941,235991.48,165765.39,2710.2263 -13336,16402,29656,29655,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.4181452,7.2947078,0,8,-3,108.07945,0,2,3,2019,8,0,28,28,1,0,0,6.531085,6.531085,0,0,0,0,0,1,1,0,0,0,58.32,50.22,47,51,10,1,1,0,0,10,9,3,0,764.66669,128865.77,33260.941,235991.48,165765.39,2710.2263 -13337,16403,29657,29658,-9,-9,1,1,63,0,0,0,2,2,-9,1,5,8.7029753,8.767477,0,6,3,145.45187,0,3,3,2019,11,0,38,37,1,0,0,28.929876,28.929876,0,0,0,0,5.48,1,1,0,3.8598678,0,51.67,60.18,38.88,37.91,8.333333333333334,1,1,0,0,7,12,4,1,365.5,1002488.8,645794.5,192713.94,0,2998.6465 -13337,16403,29658,29657,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,6,-3,-15.430718,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,38.88,37.91,51.67,60.18,6.666666666666667,1,1,1,0,2,12,4,1,365.5,1002488.8,645794.5,192713.94,0,2998.6465 -13337,16404,29659,-9,29658,29657,1,1,31,0,0,0,2,2,-9,0,4,5.9455585,6.0482979,0,0,0,-1140.2426,0,2,2,2019,10,0,18,15,1,1,1,2.6685798,2.6685798,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,2,1,1611,-649098.75,0,75345.18,92963.609,-233.4847 -13338,16405,29660,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3820219,8.6632261,0,0,0,-858.64417,0,2,2,2019,17,5,39,39,1,5,0,14.891522,14.891522,0,0,0,0,0,0,0,0,.78569227,0,33.49,64.26000000000001,-9,-9,3.333333333333333,1,1,0,0,7,8,4,0,413,159745.77,120907.03,0,0,1406.392 -13339,16406,29661,-9,29664,29662,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.93658,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 -13339,16406,29662,29664,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.1050882,8.0459146,0,6,-4,-114.51781,0,-9,-9,2019,6,0,35,40,1,0,0,12.41088,12.41088,0,0,0,0,0,1,1,0,3.9123313,0,48.28,60.18,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 -13339,16406,29663,-9,29664,29662,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.66998,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 -13339,16406,29664,29662,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.621953,8.1656637,0,6,4,-46.545574,0,1,1,2019,19,7,30,38,1,7,0,16.159639,16.159639,0,0,0,0,0,1,1,0,2.2437947,0,43.54,59.6,48.28,60.18,8.333333333333334,1,1,0,0,1,10,4,1,1495.25,43534.836,27277.156,280811.5,150100.05,3412.113 -13340,16407,29665,-9,-9,29666,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.7711,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,236.5,-197152.27,4474.5176,0,0,1002.7967 -13340,16407,29666,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,5.0804749,5.3390908,0,0,0,-1077.9349,0,2,-9,2019,11,0,7,0,1,0,0,3.2041988,3.2041988,0,0,0,0,0,1,1,0,0,0,33.97,57.61,-9,-9,5,1,1,0,0,1,2,2,0,236.5,-197152.27,4474.5176,0,0,1002.7967 -13341,16408,29667,29668,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.721241,6.4341316,60,5,-80.021187,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,13.474658,0,0,1,1,0,6.3694978,6.7752814,61.19,33.88,59.06,40.35,8.333333333333334,1,1,0,0,0,7,2,1,539.5,628910.88,45268.867,479951.44,0,1446.1941 -13341,16408,29668,29667,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.9223475,4.34483,60,-5,99.473122,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.1874981,4.1453805,59.06,40.35,61.19,33.88,8.333333333333334,1,1,0,0,0,7,2,1,539.5,628910.88,45268.867,479951.44,0,1446.1941 -13342,16409,29669,29670,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,7.4214988,7.8281522,0,49,4,-26.722811,0,3,3,2019,7,0,45,40,1,0,0,5.1143637,5.1143637,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.32,50.83,1.666666666666667,1,1,0,0,11,10,3,1,1675.5,544091.38,144519.78,220013.47,0,2971.9346 -13342,16409,29670,29669,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.2733588,7.4601641,6.4129829,49,-4,11.131697,0,3,3,2019,9,0,20,25,1,0,0,7.7413144,7.7413144,0,0,0,0,0,1,1,0,0,5.4183969,51.32,50.83,54.79,55.86,5,1,1,0,0,10,10,3,1,1675.5,544091.38,144519.78,220013.47,0,2971.9346 -13343,16410,29671,-9,29672,29673,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.61908,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 -13343,16410,29672,29673,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.3546934,8.1039038,0,4,-4,-110.05933,0,3,3,2019,10,0,39,37,1,0,0,14.019711,14.019711,0,0,0,0,0,1,1,0,0,0,46.27,57.3,57.91,35.57,8.333333333333334,1,1,0,0,9,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 -13343,16410,29673,29672,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,8.2976484,8.4991293,0,4,4,-161.94728,0,-9,-9,2019,9,0,50,46,1,0,0,8.2156115,8.2156115,0,0,0,0,0,1,1,0,0,0,57.91,35.57,46.27,57.3,8.333333333333334,1,1,0,0,10,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 -13343,16410,29674,-9,29672,29673,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.51599,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,4,1,1242.25,228205.64,123162.95,87887.695,37418.203,3819.4746 -13344,16411,29675,29677,-9,-9,1,1,32,1,6,0,2,2,-9,1,2,0,0,0,5,3,0,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,39.02,46.56,47.56,6.666666666666667,1,1,1,1,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 -13344,16411,29676,-9,29677,29675,1,0,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1064.8024,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 -13344,16411,29677,29675,-9,-9,1,0,29,1,6,0,2,2,-9,0,3,0,0,0,5,-3,0,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.56,47.56,45.64,39.02,3.333333333333333,1,1,0,1,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 -13344,16411,29678,-9,29677,29675,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1142.5132,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 -13344,16411,29679,-9,29677,29675,1,1,7,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1000.1074,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,1272.8,47855.523,0,0,0,3025.1138 -13345,16412,29680,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,2,0,6.5491114,6.1411576,0,0,-991.29553,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0095305,6.6086817,49.46,37.05,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,464,206651.59,28612.182,34124.313,0,1294.9193 -13346,16413,29681,29682,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.9278193,6.845356,43,2,-90.346428,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9507811,6.5257998,57.1,57.51,50,47,8.333333333333334,4,5,0,0,3,4,2,1,802.5,41383.375,111019.71,0,0,2193.072 -13346,16413,29682,29681,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,6,-2,63.017567,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9838867,0,50,47,57.1,57.51,7,1,1,0,0,0,4,2,1,802.5,41383.375,111019.71,0,0,2193.072 -13347,16414,29683,29684,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.4747977,7.5312109,10,5,31.470694,0,3,3,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,7,1,1,0,1.3684866,7.7306275,30.42,52.56,40.31,51.86,5,1,1,0,0,0,7,3,1,927,1627571,392711.34,836479.75,0,2659.8215 -13347,16414,29684,29683,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.8521042,5.0515022,10,-5,97.393013,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,5.6935887,4.9664426,40.31,51.86,30.42,52.56,5,1,1,0,0,4,7,3,1,927,1627571,392711.34,836479.75,0,2659.8215 -13348,16415,29685,-9,29687,29686,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-959.78644,-9,3,3,2019,9,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.79,43.39,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,254.33333,941205.5,375407.84,717912.56,124727.62,1336.4946 -13348,16415,29686,29687,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,7.5422201,7.2143888,0,7,0,-68.022911,0,3,3,2019,11,0,43,60,1,0,0,3.8344274,3.8344274,0,0,0,0,0,1,1,0,0,0,56.32,38.94,61.99,34.03,8.333333333333334,1,1,0,0,6,7,3,1,254.33333,941205.5,375407.84,717912.56,124727.62,1336.4946 -13348,16415,29687,29686,-9,-9,1,0,54,0,1,0,3,3,-9,0,2,7.0239434,6.9769611,0,22,0,90.383224,0,-9,-9,2019,8,0,20,11,1,0,0,7.5242381,7.5242381,0,0,0,0,0,1,1,0,0,0,61.99,34.03,56.32,38.94,10,1,1,0,0,10,7,3,1,254.33333,941205.5,375407.84,717912.56,124727.62,1336.4946 -13349,16416,29688,29689,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.5333948,8.648365,0,7,1,51.216679,0,-9,-9,2019,10,0,38,38,1,0,0,13.638946,13.638946,0,0,0,0,0,0,0,0,0,0,40.41,57.01,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,877,187300.8,203263.47,166952.53,112094.75,4416.2188 -13349,16416,29689,29688,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.7275982,8.7887907,0,7,-1,-58.08596,0,1,2,2019,8,0,40,40,1,0,0,19.786137,19.786137,0,0,0,0,0,0,0,0,0,0,57.06,57.76,40.41,57.01,10,1,1,0,0,7,12,5,1,877,187300.8,203263.47,166952.53,112094.75,4416.2188 -13350,16417,29690,-9,29692,29693,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.4702,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 -13350,16417,29691,-9,29692,29693,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-938.17822,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 -13350,16417,29692,29693,-9,-9,1,0,35,1,4,0,2,2,-9,1,4,0,5.1818829,5.1439896,1,0,25.507832,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.2634635,0,50.4,55.04,49.78,47.32,8.333333333333334,1,1,0,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 -13350,16417,29693,29692,-9,-9,1,1,44,1,4,0,2,2,-9,0,3,8.2785072,8.4864597,0,1,9,.60964912,0,2,2,2019,10,0,38,38,1,0,0,12.584746,12.584746,0,0,0,0,0,1,1,0,8.2408619,0,49.78,47.32,50.4,55.04,8.333333333333334,1,1,0,0,10,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 -13350,16417,29694,-9,29692,29693,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.3373,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 -13350,16417,29695,-9,29692,29693,1,1,16,1,4,0,2,2,-9,0,3,0,0,0,0,0,-1058.2391,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,42.9,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,1119,-65787.32,21647.588,67534.602,0,4102.2061 -13350,16418,29696,-9,29692,29693,1,1,19,1,4,0,2,2,-9,0,5,7.7157178,7.6229615,0,0,0,-1046.7126,0,2,2,2019,1,0,62,58,1,0,1,3.7489007,3.7489007,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,3,11,3,1,403,96375.383,-71183.492,0,0,918.83716 -13351,16419,29697,29698,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.0836849,8.065671,0,36,-3,73.859734,0,-9,-9,2019,6,0,38,40,1,0,0,8.1839237,8.1839237,0,0,0,0,0,0,0,0,.71636266,0,58.75,48.57,51.24,58.84,8.333333333333334,1,1,0,0,13,6,5,1,1624.5,256577.13,247351.36,71492.594,23381.383,2974.5796 -13351,16419,29698,29697,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6719666,8.7515993,0,37,3,-55.448879,-9,-9,-9,2019,10,0,50,0,1,0,0,13.691759,13.691759,0,0,0,0,0,0,0,0,0,0,51.24,58.84,58.75,48.57,8.333333333333334,3,4,0,0,11,6,5,1,1624.5,256577.13,247351.36,71492.594,23381.383,2974.5796 -13351,16420,29699,-9,29697,29698,1,1,21,0,0,0,3,3,-9,0,5,0,0,0,0,0,-961.56897,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,1,6,1,1,933,-129382.36,0,0,0,893.25372 -13352,16421,29700,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.0005684,7.0062404,0,0,-942.11053,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.5493319,0,0,1,1,0,5.0827322,6.8306336,68.73999999999999,38.65,-9,-9,10,1,1,0,0,0,12,3,1,172,362326.97,87256.18,164970.52,0,1071.2192 -13353,16422,29701,-9,29702,-9,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1009.6447,-9,1,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.8,44.26,-9,-9,8.333333333333334,4,5,0,0,0,2,1,1,201.5,76053.25,0,0,0,310.41779 -13353,16422,29702,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,0,0,0,0,0,-858.8866,0,3,1,2019,10,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,7,4,5,0,1,6,2,1,1,201.5,76053.25,0,0,0,310.41779 -13354,16423,29703,29704,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,9.0391254,8.9093294,2,-11,-52.066593,0,3,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5764494,9.0624809,54.7,40.89,54.2,57.49,6.666666666666667,1,1,0,0,7,7,5,1,609,3139654.8,1483802,814062.25,0,8181.3672 -13354,16423,29704,29703,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.7914066,8.952301,2,11,-142.2713,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,29.634743,0,0,1,1,0,5.6788216,9.1206026,54.2,57.49,54.7,40.89,10,1,1,0,0,0,7,5,1,609,3139654.8,1483802,814062.25,0,8181.3672 -13355,16424,29705,29707,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,0,0,0,4,7,-33.758503,0,-9,-9,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,2.2296095,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,1,2,0,487.33334,132968.98,10830.82,0,0,2250.7002 -13355,16424,29706,-9,29707,29705,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.10718,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,487.33334,132968.98,10830.82,0,0,2250.7002 -13355,16424,29707,29705,-9,-9,1,0,30,0,3,0,2,2,-9,0,4,7.8815913,7.6157727,0,4,-7,-21.589542,0,-9,-9,2019,12,0,37,0,1,0,0,7.4965448,7.4965448,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,1,2,0,487.33334,132968.98,10830.82,0,0,2250.7002 -13356,16425,29708,-9,29709,29712,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.2079,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 -13356,16425,29709,29712,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,0,0,0,7,-4,-80.440369,0,2,2,2019,6,0,0,18,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.07,49.39,50,57,5,1,1,0,0,8,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 -13356,16425,29710,-9,29709,29712,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-928.28442,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 -13356,16425,29711,-9,29709,29712,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-922.83282,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 -13356,16425,29712,29709,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,9.2866259,9.2420244,0,7,4,5.5997572,-9,-9,-9,2019,10,0,24,0,1,1,0,36.825821,36.825821,0,0,0,0,0,1,1,0,0,0,50,57,57.07,49.39,7,4,1,0,0,1,13,4,0,905.79999,114323.67,-672.74805,170638.75,153298.42,5697.2666 -13357,16426,29713,-9,-9,-9,1,1,23,0,2,0,1,1,-9,0,4,0,0,0,0,0,-1020.168,1,2,3,2019,9,0,0,37,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,1,3,7,1,0,1083,-408536.97,0,0,0,-238.94749 -13358,16427,29714,29715,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.2016201,8.3835497,37,6,-173.48599,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.2538996,8.3691034,57.16,56.15,41.71,48.44,1.666666666666667,1,1,0,0,0,6,4,1,626.5,109841.14,133423.64,255477.11,40797.922,3114.0999 -13358,16427,29715,29714,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.5305085,7.7628407,0,37,-6,57.682316,0,2,2,2019,12,0,24,28,1,0,0,9.7128534,9.7128534,0,0,0,0,0,0,0,0,0,0,41.71,48.44,57.16,56.15,3.333333333333333,1,1,0,0,9,6,4,1,626.5,109841.14,133423.64,255477.11,40797.922,3114.0999 -13359,16428,29716,29717,-9,-9,1,1,91,0,0,0,2,2,-9,0,1,0,5.866128,6.608304,36,11,-26.909792,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.1212373,34.63,21.19,42.69,34.39,5,1,1,0,0,0,5,2,1,356.5,527250.13,146653.92,0,0,1164.4877 -13359,16428,29717,29716,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4272671,5.1481953,36,-11,-82.505653,0,3,3,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,5.132659,42.69,34.39,34.63,21.19,6.666666666666667,1,1,0,0,0,5,2,1,356.5,527250.13,146653.92,0,0,1164.4877 -13360,16429,29718,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,0,0,0,0,0,-922.42236,0,2,3,2019,36,12,0,36,3,12,0,0,0,0,0,0,0,5.48,1,0,1,0,0,15.49,46.06,-9,-9,0,1,1,1,1,9,7,2,0,179,293009.16,0,0,0,888.66321 -13360,16430,29719,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1113.4219,0,-9,-9,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,5.1132774,0,29.61,28.53,-9,-9,5,1,1,0,1,0,7,1,0,2070,-315612.53,0,0,0,491.59512 -13361,16431,29720,29723,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.2417698,8.9234009,0,7,-2,2.4822001,0,-9,-9,2019,11,0,40,37,1,0,0,25.113962,25.113962,0,0,0,0,0,0,0,0,4.4937644,0,49.23,55.95,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 -13361,16431,29721,-9,29723,29720,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.07874,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 -13361,16431,29722,-9,29723,29720,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.5183,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 -13361,16431,29723,29720,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,19,2,64.624672,0,3,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.23,55.95,10,1,1,0,0,1,12,4,1,651,487562.75,82519.891,195784.19,0,3466.8455 -13362,16432,29724,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.2963309,7.1559782,0,0,-923.94232,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8067274,7.4159751,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,2,3,1,319,125789.09,244023.27,128839.39,0,1469.4611 -13363,16433,29725,-9,29729,29726,1,0,20,0,2,0,2,2,-9,0,5,8.1979589,8.0412645,0,0,0,-972.59436,0,3,2,2019,13,6,40,40,1,6,1,8.1013489,8.1013489,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,3.333333333333333,1,1,0,0,3,12,4,0,204,50889.773,-75186.531,0,0,1269.0298 -13363,16434,29726,29729,-9,-9,1,1,56,0,2,0,2,2,-9,0,5,8.736948,8.6563139,0,6,17,75.490761,0,3,2,2019,8,0,40,45,1,0,0,13.66866,13.66866,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44.43,56.74,8.333333333333334,1,1,0,0,7,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 -13363,16434,29727,-9,29729,29726,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.1398,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 -13363,16434,29728,-9,29729,29726,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.0892,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 -13363,16434,29729,29726,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,7.1666889,6.8247838,0,6,-17,-187.19725,0,2,2,2019,10,1,20,13,1,1,0,6.8766351,6.8766351,0,0,0,0,0,1,1,0,0,0,44.43,56.74,62.39,56.71,6.666666666666667,1,1,0,0,7,12,4,0,1070.25,470212.19,254071.19,217234.59,35509.633,2864.9275 -13364,16435,29730,29731,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,44,2,-48.622135,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.28,28.21,58.07,46.29,5,1,1,0,0,0,10,3,1,572.5,1222764.5,633805.38,407107.69,0,2226.1235 -13364,16435,29731,29730,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.8978291,8.1971807,10,-2,104.35762,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.62286,8.0347185,58.07,46.29,61.28,28.21,8.333333333333334,1,1,0,0,7,10,3,1,572.5,1222764.5,633805.38,407107.69,0,2226.1235 -13365,16436,29732,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.332572,8.1797123,0,0,0,-1197.3969,-9,2,-9,2019,9,0,37,0,1,0,1,9.7835169,9.7835169,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,3,4,0,0,2,8,4,1,556,200664.11,-44704.918,49075.711,47451.969,1049.2578 -13366,16437,29733,29734,-9,-9,1,1,59,0,0,0,3,3,-9,0,1,0,6.2961774,6.5489993,8,0,45.745289,0,3,2,2019,24,9,0,0,4,9,0,0,0,0,0,0,0,0,1,0,1,0,6.7286987,46.07,14.52,35.71,47.21,3.333333333333333,1,1,0,0,5,2,2,1,377.5,-4500.3359,129038.73,0,0,2259.6931 -13366,16437,29734,29733,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,6.5266185,6.7971606,0,8,0,78.469429,0,-9,-9,2019,11,0,12,35,1,0,0,6.6882372,6.6882372,0,0,0,0,71.5,1,0,1,0,0,35.71,47.21,46.07,14.52,6.666666666666667,1,1,0,0,10,2,2,1,377.5,-4500.3359,129038.73,0,0,2259.6931 -13367,16438,29735,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.9493318,8.1229744,0,0,0,-952.57166,0,2,-9,2019,27,12,35,39,1,12,0,6.8830295,6.8830295,0,0,0,0,0,0,0,0,1.0115499,0,21.47,47.18,-9,-9,3.333333333333333,1,1,0,0,11,9,4,1,593,376622.69,0,0,0,1299.037 -13368,16439,29736,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.3299465,7.3173537,0,0,0,-1068.6681,-9,3,2,2019,15,4,35,0,1,4,0,5.2410078,5.2410078,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,773,18356.988,-11962.517,179100.36,20905.982,374.20154 -13369,16440,29737,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,7.2316351,6.9062767,0,0,-978.34906,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.8069701,6.942853,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,1009,374238.75,163595.98,65974.359,0,1019.0015 -13370,16441,29738,29739,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,53,-3,-29.796276,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6006806,0,63.27,31.67,60.29,52.11,8.333333333333334,1,1,0,0,0,1,2,1,654.5,347334.59,125416.91,0,0,1371.7032 -13370,16441,29739,29738,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.690959,5.9199815,53,3,-21.664927,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0632496,5.6430397,60.29,52.11,63.27,31.67,10,1,1,0,0,0,1,2,1,654.5,347334.59,125416.91,0,0,1371.7032 -13371,16442,29740,29741,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.5637574,6.9660521,0,1,-5,81.95047,-9,2,2,2019,11,1,40,0,1,1,0,2.6388626,2.6388626,0,0,0,0,0,1,1,0,0,0,41.34,56.62,64.64,45.93,0,1,1,0,0,7,11,3,1,1664.5,592576.13,120561.94,228496.14,0,2860.2815 -13371,16442,29741,29740,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.716186,8.0627546,0,1,5,16.226316,-9,-9,-9,2019,7,2,40,0,1,2,0,9.8835487,9.8835487,0,0,0,0,0,1,1,0,0,0,64.64,45.93,41.34,56.62,8.333333333333334,1,1,0,0,0,11,3,1,1664.5,592576.13,120561.94,228496.14,0,2860.2815 -13372,16443,29742,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,5.8482375,5.9112272,0,0,0,-936.52386,0,2,2,2019,7,1,65,30,1,1,0,.58230716,.58230716,0,0,0,0,7,1,1,0,0,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,197,859083.5,498089.69,291047.81,0,24.297909 -13373,16444,29743,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.953517,8.8039913,0,0,0,-1098.8582,0,2,3,2019,8,0,45,52,1,0,0,20.778744,20.778744,0,0,0,0,0,0,0,0,7.0904579,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1220,125678.59,228896.84,0,0,2950.8906 -13374,16445,29744,29745,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,2.0479705,1.8581673,8,-8,-40.048573,0,3,3,2019,2,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.8685689,1.5221353,53,47,54.85,34.63,1.666666666666667,1,1,0,0,4,2,2,1,371.5,-60250.195,0,44323.367,0,1069.9973 -13374,16445,29745,29744,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,8,8,-72.538948,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,2.6078336,0,0,1,1,0,0,0,54.85,34.63,53,47,6.666666666666667,1,1,0,0,0,2,2,1,371.5,-60250.195,0,44323.367,0,1069.9973 -13375,16446,29746,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,4.9580007,5.1425581,0,0,-916.34338,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.0797982,4.9570761,65.53,20,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,446,100674.21,27484.73,245882.56,0,1282.4855 -13376,16447,29747,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,7.3072567,7.5075264,0,0,0,-1090.0892,0,3,3,2019,11,0,25,23,1,2,0,7.1753807,7.1753807,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,8,2,0,872,298394.81,0,0,0,2744.4407 -13376,16448,29748,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,6.8363504,6.657052,0,0,0,-958.83447,0,3,-9,2019,7,1,8,0,1,1,0,12.259676,12.259676,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,3,4,0,0,1,8,2,0,3023,241082.56,0,0,0,553.27521 -13376,16449,29749,-9,-9,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-926.46918,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,375,0,0,0,0,0 -13377,16450,29750,29751,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.033886,7.9676433,0,1,-14,90.256149,0,-9,2,2019,12,1,37,35,1,1,0,9.6032486,9.6032486,0,0,0,0,0,0,0,0,7.4358516,0,42.67,47.95,47.29,52.71,8.333333333333334,1,1,0,0,10,9,3,1,855,1314443.3,717885.13,661195.69,12491.517,2553.4478 -13377,16450,29751,29750,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.0887008,6.8348608,1,14,-14.775867,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.9170766,6.7713933,47.29,52.71,42.67,47.95,10,1,1,0,0,0,9,3,1,855,1314443.3,717885.13,661195.69,12491.517,2553.4478 -13378,16451,29752,29755,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.9086027,8.8336506,0,12,5,7.4548221,0,3,2,2019,6,0,35,35,1,0,0,22.107412,22.107412,0,0,0,0,0,1,1,0,0,0,52.25,53.24,44.19,58.01,8.333333333333334,1,1,0,0,11,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 -13378,16451,29753,-9,29755,29752,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.88525,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 -13378,16451,29754,-9,29755,29752,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.369,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 -13378,16451,29755,29752,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,8.0773525,7.9270391,0,12,-5,13.546103,0,2,2,2019,12,4,35,23,1,4,0,7.1648202,7.1648202,0,0,0,0,2,1,1,0,0,0,44.19,58.01,52.25,53.24,8.333333333333334,1,1,0,0,11,2,4,1,862,356108.34,48227.262,297629.66,37674.594,3668.2087 -13379,16452,29756,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6553965,8.657649,0,0,0,-1049.9497,0,-9,-9,2019,9,0,50,60,1,1,0,10.782091,10.782091,0,0,0,0,0,0,0,0,1.8720486,0,53,55,-9,-9,8,1,1,0,0,1,4,5,1,336,299697.13,0,183814.34,32628.859,1769.9171 -13379,16452,29757,-9,-9,29756,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-985.95038,-9,-9,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,3.684644,0,64.94,34.83,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,336,299697.13,0,183814.34,32628.859,1769.9171 -13380,16453,29758,29760,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.8280792,8.2940845,0,4,1,165.54025,-9,2,2,2019,5,0,40,0,1,0,0,13.853833,13.853833,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51,57,8.333333333333334,2,3,0,0,4,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 -13380,16453,29759,-9,29758,29760,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.9426,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 -13380,16453,29760,29758,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.0411873,9.1252308,0,4,-1,.2499321,-9,2,2,2019,10,0,45,0,1,1,0,20.658861,20.658861,0,0,0,0,0,1,1,0,0,0,51,57,57.06,57.76,7,2,3,0,0,1,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 -13380,16453,29761,-9,29758,29760,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.6902,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,5,1,1170,77840.141,201566.08,321144.19,227363.45,5283.6392 -13381,16454,29762,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1044.1406,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,22.51,31.96,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,586,-23495.387,0,0,0,1522.9991 -13382,16455,29763,29764,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,8.551136,8.8679533,8.3384962,8,8,-113.06084,0,-9,-9,2019,7,0,15,15,1,0,0,38.342567,38.342567,0,0,0,0,0,1,1,0,10.355196,6.5548682,57.06,57.76,59.43,58.05,10,1,1,0,0,10,10,5,1,1046.5,2369252.8,1019253.4,767332.75,0,89253.563 -13382,16455,29764,29763,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,0,0,27,-8,82.652824,0,1,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1810384,0,59.43,58.05,57.06,57.76,10,1,1,0,0,0,10,5,1,1046.5,2369252.8,1019253.4,767332.75,0,89253.563 -13383,16456,29765,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.6178508,7.027854,0,0,-871.10486,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1989183,6.9485278,50.34,36.42,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,1639,342921.16,290379.47,0,0,1229.2993 -13384,16457,29766,29767,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.4183903,6.372211,0,9,2,40.541512,0,3,3,2019,6,0,60,77,1,0,0,1.1907704,1.1907704,0,0,0,0,0,0,0,0,.46912166,0,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,10,11,3,1,170,482393.97,101601.91,283609.91,0,1438.7395 -13384,16457,29767,29766,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9688616,7.5374832,0,9,-2,-40.710606,0,3,3,2019,8,0,60,50,1,0,0,3.0107069,3.0107069,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,10,11,3,1,170,482393.97,101601.91,283609.91,0,1438.7395 -13384,16458,29768,-9,29767,29766,1,0,28,0,0,0,1,1,-9,0,4,8.5279179,8.4333754,0,0,0,-998.10785,0,2,2,2019,15,3,47,45,1,3,1,12.304381,12.304381,0,0,0,0,0,0,0,0,4.5179033,0,49.69,55.66,-9,-9,6.666666666666667,1,1,0,0,6,11,5,1,330,53356.945,138532.39,0,0,2304.5146 -13384,16459,29769,-9,29767,29766,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-983.67682,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,1,1,0,0,0,11,2,1,1264,-274814.34,0,0,0,0 -13385,16460,29770,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,0,0,0,0,0,-915.85889,-9,2,3,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.58,65.91,-9,-9,1.666666666666667,2,3,0,1,2,8,1,0,1001,48363.914,-52088.285,0,0,84.622932 -13386,16461,29771,29772,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,45,1,-24.228991,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6833472,0,57.16,56.15,57.16,56.15,10,1,1,0,0,3,10,3,1,306,987744.69,708355,415856.75,17097.693,3844.3904 -13386,16461,29772,29771,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.837265,8.1158333,45,-1,25.013805,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1233177,7.6709819,57.16,56.15,57.16,56.15,10,1,1,0,0,9,10,3,1,306,987744.69,708355,415856.75,17097.693,3844.3904 -13387,16462,29773,29774,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,6.1445799,6.3017969,51,2,61.644562,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.138659,6.6547127,51.19,46.67,54.9,54.53,5,1,1,0,0,0,10,2,1,250.5,1141852,251020.3,526083.44,0,1518.5515 -13387,16462,29774,29773,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,5.9832044,6.176168,51,-2,-45.385826,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8547029,6.2893438,54.9,54.53,51.19,46.67,8.333333333333334,1,1,0,0,0,10,2,1,250.5,1141852,251020.3,526083.44,0,1518.5515 -13388,16463,29775,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.6497202,8.872838,0,0,0,-1003.2265,0,3,2,2019,10,0,40,45,1,0,0,18.761866,18.761866,0,0,0,0,0,0,0,0,2.9095199,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,190,-122581.03,51888.863,89247.32,71227.148,2482.9482 -13389,16464,29776,29777,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.0028257,6.7063184,0,20,5,-14.476155,0,-9,-9,2019,8,1,15,15,1,1,0,11.194717,11.194717,0,0,0,0,0,0,0,0,0,0,61.76,43.29,55.07,43.44,0,1,1,0,0,13,4,4,1,690,117922.23,57327.988,119133.38,42455.414,2395.9038 -13389,16464,29777,29776,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.5613947,8.6640682,0,3,-5,-12.757397,0,-9,-9,2019,3,0,40,40,1,0,0,17.481112,17.481112,0,0,0,0,0,0,0,0,0,0,55.07,43.44,61.76,43.29,0,1,1,0,0,13,4,4,1,690,117922.23,57327.988,119133.38,42455.414,2395.9038 -13389,16465,29778,-9,29776,29777,1,1,23,0,0,0,2,2,-9,0,5,7.0544705,7.3092871,0,0,0,-1064.1746,0,2,2,2019,5,0,40,40,1,0,1,3.2524951,3.2524951,0,0,0,0,0,0,0,0,2.7854993,0,62.39,56.71,-9,-9,10,1,1,0,0,6,4,2,1,661,-104155.71,0,0,0,817.31757 -13390,16466,29779,29780,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-1,10.072119,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9508383,0,59.07,43.05,47.79,38.66,8.333333333333334,1,1,0,0,0,12,5,1,529.5,363082.31,0,224617.83,0,4461.6191 -13390,16466,29780,29779,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,8.4279537,8.8983068,8.411685,10,1,133.31029,0,3,2,2019,9,0,20,30,1,0,0,26.049587,26.049587,0,0,0,0,0,1,1,0,0,8.6208754,47.79,38.66,59.07,43.05,8.333333333333334,1,1,0,0,11,12,5,1,529.5,363082.31,0,224617.83,0,4461.6191 -13391,16467,29781,29782,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,2,-139.75119,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,52.35,47.2,34.16,8.333333333333334,1,1,0,0,0,6,3,1,799,281913.19,267149.31,210223.55,0,2447.9028 -13391,16467,29782,29781,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.5074267,7.4970241,57,-2,95.92218,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,7.6276245,47.2,34.16,50.01,52.35,8.333333333333334,1,1,0,0,0,6,3,1,799,281913.19,267149.31,210223.55,0,2447.9028 -13392,16468,29783,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-941.31531,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.56,59.44,-9,-9,6.666666666666667,3,4,0,0,2,8,1,0,1579,381671.63,0,0,0,657.198 -13393,16469,29784,29787,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,8.0901346,7.8416629,6.2467885,6,1,50.480103,0,2,1,2019,20,8,20,25,1,8,0,14.272886,14.272886,0,0,0,0,2,1,1,0,5.6402535,0,42.54,44.12,57.06,57.76,8.333333333333334,1,1,0,0,6,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 -13393,16469,29785,-9,29784,29787,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.6347,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 -13393,16469,29786,-9,29784,29787,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.65033,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 -13393,16469,29787,29784,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,9.1106701,9.0762672,0,6,-1,5.2128825,0,-9,-9,2019,8,0,50,50,1,0,0,16.557394,16.557394,0,0,0,0,2,1,1,0,7.1748934,0,57.06,57.76,42.54,44.12,10,1,1,0,0,8,7,4,1,564.5,19204.387,77114.375,0,0,4413.7749 -13394,16470,29788,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.9529119,7.4343367,0,0,0,-936.38049,0,3,3,2019,8,0,75,90,1,0,0,1.9374224,1.9374224,0,0,0,0,0,0,0,0,4.3755126,0,55,53,-9,-9,8,1,1,0,0,8,4,3,0,1060,-134608.25,46730.027,0,0,439.49826 -13395,16471,29789,-9,29791,29792,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1143.3036,-9,1,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.26,60.7,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 -13395,16471,29790,-9,29791,29792,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.4169,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 -13395,16471,29791,29792,-9,-9,1,0,59,0,2,0,1,1,-9,0,3,8.8962717,8.9068785,0,38,1,27.956797,0,2,1,2019,10,0,10,20,1,0,0,83.552376,83.552376,0,0,0,0,2,1,1,0,4.6413093,0,41.98,38.62,54.79,55.86,8.333333333333334,1,1,0,0,13,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 -13395,16471,29792,29791,-9,-9,1,1,58,0,2,0,1,1,-9,0,4,8.7753525,8.786005,0,18,-1,-39.701218,0,2,2,2019,12,0,30,36,1,0,0,28.488518,28.488518,0,0,0,0,2,1,1,0,5.0613661,0,54.79,55.86,41.98,38.62,8.333333333333334,1,1,0,0,13,6,5,1,699.5,903657.13,314807.91,405930.31,0,6215.4038 -13396,16472,29793,29794,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,8.6243172,8.6065292,0,6,2,0,0,2,2,2019,7,0,38,43,1,0,0,17.308592,17.308592,0,0,0,0,0,1,1,0,4.5329552,0,54.69,57.47,55.93,52.62,8.333333333333334,1,1,0,0,7,13,5,1,381.66666,54598.102,78410.453,282530.25,185093.33,3868.6611 -13396,16472,29794,29793,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.5860109,8.7894211,0,6,-2,0,0,-9,-9,2019,9,0,38,38,1,0,0,17.453701,17.453701,0,0,0,0,0,1,1,0,0,0,55.93,52.62,54.69,57.47,8.333333333333334,1,1,0,0,8,13,5,1,381.66666,54598.102,78410.453,282530.25,185093.33,3868.6611 -13396,16472,29795,-9,29794,29793,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.14398,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,381.66666,54598.102,78410.453,282530.25,185093.33,3868.6611 -13397,16473,29796,29797,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8796988,8.0170088,6,2,-100.76884,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8578529,48.28,60.18,49.06,52.91,8.333333333333334,1,1,0,0,4,12,3,1,359,1216400.8,601351,246870.73,55836.277,2477.6501 -13397,16473,29797,29796,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.3721595,5.2319932,6,-2,-80.316238,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.2997899,49.06,52.91,48.28,60.18,8.333333333333334,1,1,0,0,1,12,3,1,359,1216400.8,601351,246870.73,55836.277,2477.6501 -13398,16474,29798,-9,29801,29800,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1027.0983,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 -13398,16474,29799,-9,29801,29800,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.1931,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 -13398,16474,29800,29801,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,8.2697601,8.4011517,0,6,2,66.454796,0,-9,2,2019,10,0,60,50,1,0,0,8.489893,8.489893,0,0,0,0,0,1,1,0,0,0,49.82,48.59,45.01,57.46,8.333333333333334,1,1,0,0,9,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 -13398,16474,29801,29800,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.4648829,8.5111637,5.3068066,6,-2,20.375626,0,-9,-9,2019,12,0,43,40,1,0,0,13.352554,13.352554,0,0,0,0,0,1,1,0,6.379621,0,45.01,57.46,49.82,48.59,6.666666666666667,1,1,0,0,10,10,4,1,389.5,-10389.43,118093.63,229048.8,94834.914,3843.8879 -13399,16475,29802,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1023.5938,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,5.1003675,0,51.178165,0,1,1,0,1.986371,0,51,47,-9,-9,7,1,1,0,0,0,9,2,0,382,63329.125,0,0,0,1369.113 -13400,16476,29803,29804,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,25,-1,0,0,3,3,2019,31,12,0,0,4,12,0,0,0,1,0,125.47001,0,0,1,1,0,0,0,27.89,18.61,55.75,31.53,0,1,1,0,0,0,10,1,1,772.5,229250.02,0,202860.97,14116.229,1609.335 -13400,16476,29804,29803,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,25,1,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,2.4764166,0,55.75,31.53,27.89,18.61,6.666666666666667,1,1,0,0,0,10,1,1,772.5,229250.02,0,202860.97,14116.229,1609.335 -13401,16477,29805,29806,-9,-9,1,1,55,0,3,0,1,1,-9,0,4,9.3775826,9.7449589,0,24,10,63.476486,0,3,3,2019,6,0,50,50,1,0,0,27.411945,27.411945,0,0,0,0,0,1,1,0,0,0,53,54,48.53,58.91,8.333333333333334,3,4,0,0,10,9,5,1,981.33331,1969122.6,1353716.1,758550.25,237559.53,5449.2754 -13401,16477,29806,29805,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.1620922,7.9802604,0,26,-10,-123.20226,0,2,2,2019,10,0,25,31,1,0,0,16.851465,16.851465,0,0,0,0,0,1,1,0,0,0,48.53,58.91,53,54,8.333333333333334,3,4,0,0,9,9,5,1,981.33331,1969122.6,1353716.1,758550.25,237559.53,5449.2754 -13401,16477,29807,-9,29806,29805,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.96698,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,5,1,981.33331,1969122.6,1353716.1,758550.25,237559.53,5449.2754 -13401,16478,29808,-9,29806,29805,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-977.77148,-9,1,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.6976719,0,41.59,61.77,-9,-9,8.333333333333334,3,4,0,0,2,9,2,1,160,-105762.17,0,0,0,340.59488 -13402,16479,29809,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-954.23199,0,1,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,63.22,37.55,-9,-9,8.333333333333334,1,1,0,0,5,5,1,0,345,33060.23,0,0,0,2340.5171 -13403,16480,29810,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,4,7.523859,7.5111828,0,2,1,18.772411,-9,-9,-9,2019,13,1,32,0,1,1,0,7.7471118,7.7471118,0,0,0,0,0,0,0,0,0,0,40.77,61.04,47,58,6.666666666666667,1,1,0,0,5,2,3,1,707,14846.542,-9380.9385,0,0,838.41431 -13404,16481,29811,29812,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.3145037,8.3438349,0,3,2,98.248802,0,-9,-9,2019,6,0,8,46,1,0,0,59.204411,59.204411,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.79,55.86,8.333333333333334,1,1,0,0,2,11,4,1,582.66669,53590.77,-19783.242,0,0,2475.2036 -13404,16481,29812,29811,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,6.8092546,6.7670617,0,3,-2,43.878208,0,2,-9,2019,7,0,14,39,1,0,0,6.917635,6.917635,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.12,54.8,8.333333333333334,1,1,0,0,8,11,4,1,582.66669,53590.77,-19783.242,0,0,2475.2036 -13404,16481,29813,-9,29812,29811,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1184.1082,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,582.66669,53590.77,-19783.242,0,0,2475.2036 -13405,16482,29814,-9,29817,29816,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2791,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 -13405,16482,29815,-9,29817,29816,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.01617,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 -13405,16482,29816,29817,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.0336609,9.1357117,0,9,0,45.913738,0,2,2,2019,4,0,45,40,1,0,0,22.374035,22.374035,0,0,0,0,0,1,1,0,3.292027,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,10,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 -13405,16482,29817,29816,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,8.2319345,8.2532816,0,9,0,-63.572788,0,-9,-9,2019,10,0,32,28,1,0,0,11.058827,11.058827,0,0,0,0,0,1,1,0,1.9705354,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,1496.75,316526,63697.379,0,0,5581.3716 -13406,16483,29818,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.2074299,7.2983046,0,0,-941.82501,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,124.16541,0,0,0,1,1,0,0,7.2546015,56,35.8,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,373,747898.69,81893.789,44811.043,0,1680.0029 -13407,16484,29819,29820,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,57,-4,-44.776772,0,3,3,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,3.9545367,0,31.34,23.66,60.53,48.35,5,1,1,0,0,4,2,2,1,2276,107820.14,29027.887,158159.94,0,1852.8409 -13407,16484,29820,29819,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.6126456,5.5792494,8,4,24.74159,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2502642,6.0536427,60.53,48.35,31.34,23.66,10,1,1,0,0,10,2,2,1,2276,107820.14,29027.887,158159.94,0,1852.8409 -13408,16485,29821,29824,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.900156,8.8993921,0,4,10,-64.876984,0,3,1,2019,26,11,40,40,1,11,0,25.144829,25.144829,0,0,0,0,0,1,1,0,3.7458148,0,39.71,46.52,33.26,38.81,8.333333333333334,2,3,0,0,12,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 -13408,16485,29822,-9,29824,29821,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.51947,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 -13408,16485,29823,-9,29824,29821,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1015.4377,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 -13408,16485,29824,29821,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.1298547,7.3684602,0,4,-10,67.090355,-9,3,3,2019,4,0,33,0,1,0,0,4.3334651,4.3334651,0,0,0,0,0,1,1,0,3.2588592,0,33.26,38.81,39.71,46.52,5,2,3,0,0,7,8,4,1,1221.75,275137.31,-34702.82,276650.75,148781.52,5148.9097 -13409,16486,29825,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,6.6128011,6.4305282,0,0,-1055.1313,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,21.603745,0,0,1,1,0,1.8763171,6.5718374,54,43,-9,-9,8,1,1,0,0,0,10,2,1,1191,575551.06,137818.11,202098.45,0,733.84717 -13409,16487,29826,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,6.9272318,7.4521899,0,0,-1058.5804,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3524914,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,167,648654.13,335347.88,-22561.066,0,956.85272 -13409,16488,29827,-9,29825,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1085.0889,0,2,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,655,-18571.49,0,0,0,988.77167 -13409,16489,29828,-9,29827,-9,1,1,27,0,0,0,1,1,-9,1,4,6.9815974,6.8750858,0,0,0,-1058.7277,0,2,-9,2019,12,1,25,0,1,1,0,4.9569416,4.9569416,0,0,0,0,7,1,1,0,.12636144,0,41.3,60.77,-9,-9,5,1,1,0,0,1,10,2,1,425,371352.03,-12450.781,0,0,949.26178 -13410,16490,29829,29831,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,7.3650112,7.334909,0,20,6,41.529797,0,3,3,2019,9,0,5,30,1,1,0,39.473228,39.473228,0,0,0,0,0,1,1,0,0,0,53,55,36.91,52.08,8,2,3,0,0,1,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 -13410,16490,29830,-9,29831,29829,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.3777,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 -13410,16490,29831,29829,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,8.0981531,7.9456325,0,20,-6,8.7391262,0,3,3,2019,10,0,35,28,1,0,0,10.66682,10.66682,0,0,0,0,0,1,1,0,0,0,36.91,52.08,53,55,6.666666666666667,2,3,0,0,3,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 -13410,16490,29832,-9,29831,29829,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-908.05896,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 -13410,16490,29833,-9,29831,29829,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1148.0045,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1428.8,311610.56,46053,267649.81,147097.67,3219.4368 -13411,16491,29834,29835,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.1216612,6.7917919,10,2,-68.739937,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3783493,6.8517032,58.56,41.85,51.1,49.38,8.333333333333334,1,1,0,0,9,10,2,1,1016.5,508417.09,161374.09,390823.13,0,1741.9467 -13411,16491,29835,29834,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.4633217,4.7327423,10,-2,-19.481295,0,3,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8072634,4.7153935,51.1,49.38,58.56,41.85,10,1,1,0,0,6,10,2,1,1016.5,508417.09,161374.09,390823.13,0,1741.9467 -13412,16492,29836,29837,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.4842386,7.3573236,41,-1,-53.827469,0,1,1,2019,4,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0977569,58.15,52.91,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,800.5,3388751.8,1801762.8,1082193.5,0,4289.918 -13412,16492,29837,29836,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.1138601,9.264554,0,42,1,4.9570022,0,3,2,2019,6,0,52,50,1,0,0,26.486443,26.486443,0,0,0,0,0,1,1,0,0,0,55.79,52.62,58.15,52.91,8.333333333333334,1,1,0,0,10,9,5,1,800.5,3388751.8,1801762.8,1082193.5,0,4289.918 -13413,16493,29838,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-999.39081,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,5,1,1,315,-48366.605,0,0,0,675.3363 -13413,16494,29839,29840,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.8391705,7.6292472,0,2,12,-56.894413,-9,-9,-9,2019,6,0,41,0,1,0,0,9.5055094,9.5055094,0,0,0,0,0,1,1,0,0,0,51.25,52.08,57.16,56.15,10,1,1,0,0,1,5,4,1,374.5,391961.84,72858.023,368301.84,0,2481.7126 -13413,16494,29840,29839,29838,-9,1,0,35,0,0,0,2,2,-9,0,4,8.5674658,8.3747673,0,2,-12,18.22739,0,3,-9,2019,7,0,42,40,1,0,0,14.030516,14.030516,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.25,52.08,8.333333333333334,1,1,0,0,5,5,4,1,374.5,391961.84,72858.023,368301.84,0,2481.7126 -13414,16495,29841,29842,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.6226659,6.6048865,26,5,4.3849106,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6580691,46.76,55.32,62.49,55.09,10,1,1,0,0,0,7,2,1,687,468510.72,188426.78,194593.98,0,1635.6871 -13414,16495,29842,29841,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.4964385,4.8618159,26,-5,-61.859974,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.713985,5.1682959,62.49,55.09,46.76,55.32,0,1,1,0,0,0,7,2,1,687,468510.72,188426.78,194593.98,0,1635.6871 -13415,16496,29843,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,5.4691043,5.3192959,0,0,-1087.4353,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5174494,55,45,-9,-9,8,1,1,0,0,0,7,2,1,1267,125222.94,-59088.926,0,0,591.16455 -13416,16497,29844,29845,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.0741978,8.2448912,32,10,-30.142448,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.1821213,8.1767368,57.06,57.76,59.04,54.12,8.333333333333334,1,1,0,0,0,13,4,1,400.5,886598.88,457290.63,314322.63,0,3238.9678 -13416,16497,29845,29844,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,6.220417,5.7689047,32,-10,82.771713,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.445425,0,59.04,54.12,57.06,57.76,8.333333333333334,1,1,0,0,0,13,4,1,400.5,886598.88,457290.63,314322.63,0,3238.9678 -13417,16498,29846,29847,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.6170588,8.7936144,0,28,1,106.48272,0,2,-9,2019,13,1,50,50,1,1,0,15.15519,15.15519,0,0,0,0,0,0,0,0,0,0,43.1,44.28,37.08,57.26,1.666666666666667,1,1,0,0,12,2,5,1,421.5,1589266,1253026,291650.13,0,3280.02 -13417,16498,29847,29846,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9965558,7.9012246,0,27,-1,-79.114548,0,2,2,2019,13,2,30,30,1,2,0,12.247239,12.247239,0,0,0,0,0,0,0,0,0,0,37.08,57.26,43.1,44.28,6.666666666666667,1,1,0,0,12,2,5,1,421.5,1589266,1253026,291650.13,0,3280.02 -13417,16499,29848,-9,29847,29846,1,1,18,0,0,1,2,0,0,0,1,0,8.3566599,8.3916178,0,0,-919.0174,-9,2,1,2019,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,8.4203234,0,26.21,41.34,-9,-9,3.333333333333333,1,1,0,0,2,2,4,1,473,-144961.34,84526.555,0,0,1292.9275 -13418,16500,29849,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,1,8.2800579,8.0345173,0,0,0,-929.82202,-9,-9,-9,2019,24,11,37,0,1,11,0,13.289948,13.289948,0,0,0,0,0,1,1,0,.66578275,0,24.68,39.19,-9,-9,3.333333333333333,1,1,0,1,10,9,4,0,529,-127426.16,83528.492,0,0,1726.8358 -13419,16501,29850,29851,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,8.603117,8.2927494,6,3,-4.0246992,0,3,3,2019,9,3,0,55,4,3,0,0,0,0,0,0,0,2,0,0,0,0,8.0784426,57.06,57.76,59.31,49.81,8.333333333333334,1,1,0,0,7,7,3,1,178,1285204.1,653944,580791.38,0,1900.5789 -13419,16501,29851,29850,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,6,-3,-16.179045,0,3,3,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,59.31,49.81,57.06,57.76,10,1,1,0,0,7,7,3,1,178,1285204.1,653944,580791.38,0,1900.5789 -13420,16502,29852,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.1549492,8.1329336,0,0,0,-1034.4391,0,2,2,2019,11,1,7,32,1,1,0,66.439293,66.439293,0,0,0,0,7,0,0,0,7.1592336,0,50.24,37.82,-9,-9,5,1,1,0,0,9,12,4,1,350,305596.88,372779.34,0,0,2292.896 -13421,16503,29853,29854,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.0947733,7.6687694,39,-1,-118.21813,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9927807,7.9402289,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,6,5,4,1,382,1106694.9,818696,168775.09,0,3608.8037 -13421,16503,29854,29853,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.1757321,7.9265552,7.0764236,39,1,-34.064568,0,3,3,2019,7,0,23,24,1,0,0,6.0388947,6.0388947,0,0,0,0,0,0,0,0,3.7098706,7.2265768,57.33,53.46,57.16,56.15,10,1,1,0,0,7,5,4,1,382,1106694.9,818696,168775.09,0,3608.8037 -13422,16504,29855,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,7.5461926,7.9456458,0,0,-1017.7722,0,2,1,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1666732,7.5583119,56.28,37.39,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,839,575813.06,202644.13,411120.41,0,2677.5688 -13423,16505,29856,-9,-9,-9,1,0,36,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1024.057,-9,-9,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,6,1,0,760,-369439.94,0,0,0,120.67876 -13424,16506,29857,29858,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.8479528,5.6918306,58,-2,-114.55548,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,9.5544186,0,0,1,1,0,4.4463568,5.6012664,63.26,45.23,57.33,53.46,10,1,1,0,0,0,4,3,1,494,1502607,686389.13,321963.91,0,2850.8418 -13424,16506,29858,29857,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.8448558,7.7972794,58,2,-32.713734,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0341873,57.33,53.46,63.26,45.23,10,1,1,0,0,0,4,3,1,494,1502607,686389.13,321963.91,0,2850.8418 -13425,16507,29859,-9,29860,-9,1,0,17,1,2,0,2,2,1,1,1,0,0,0,0,0,-996.75647,-9,2,-9,2019,25,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,25.76,25.08,-9,-9,5,1,1,1,0,0,2,1,0,612.5,-92359.844,0,0,0,1465.3486 -13425,16507,29860,-9,-9,-9,1,0,46,1,2,0,2,2,-9,1,3,0,0,0,0,0,-1016.7558,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,1,0,3,2,1,0,612.5,-92359.844,0,0,0,1465.3486 -13426,16508,29861,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.0742006,8.069582,0,0,0,-1007.5553,0,3,3,2019,10,0,47,48,1,1,0,7.0658336,7.0658336,0,0,0,0,0,1,1,0,1.7617084,0,52,48,-9,-9,7,1,1,0,0,8,5,4,1,535,202834.75,-16669.227,0,0,2153.6057 -13427,16509,29862,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.9271832,9.0664349,0,9,-3,25.182659,0,3,3,2019,14,3,40,40,1,3,0,27.956829,27.956829,0,0,0,0,0,0,0,0,0,0,45.91,59.89,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,1072,1251547.6,689283.5,397354.09,0,4614.5923 -13427,16510,29863,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.7346106,8.7604256,0,9,3,-125.55682,0,2,2,2019,8,1,40,37,1,1,0,24.378927,24.378927,0,0,0,0,0,0,0,0,.97388273,0,54.2,57.49,45.91,59.89,8.333333333333334,1,1,0,0,11,8,5,1,1026,1314787,547003.19,446247.34,-10979.013,2190.812 -13428,16511,29864,29865,-9,-9,1,1,38,0,1,0,3,3,-9,0,2,7.4397826,7.2422576,0,21,0,114.14521,0,3,3,2019,12,0,40,40,1,0,0,4.4237609,4.4237609,0,0,0,0,0,1,1,0,0,0,47.42,46.01,49.04,55.86,5,1,1,0,0,7,9,2,0,268,-265904.47,-33532.535,0,0,2029.856 -13428,16511,29865,29864,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,0,0,0,24,0,48.158791,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,47.42,46.01,6.666666666666667,1,1,0,0,0,9,2,0,268,-265904.47,-33532.535,0,0,2029.856 -13428,16511,29866,-9,29865,29864,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.9683,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,268,-265904.47,-33532.535,0,0,2029.856 -13428,16512,29867,-9,29865,29864,1,0,18,0,1,0,2,2,0,0,4,0,0,0,0,0,-951.86859,-9,2,3,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,37.25,59.59,-9,-9,5,1,1,0,0,1,9,1,0,642,-124386.27,0,0,0,0 -13429,16513,29868,29869,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.0764036,6.8210363,44,2,-6.3413229,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.906179,7.0228839,54.37,54.8,52,54.51,8.333333333333334,1,1,0,0,6,2,3,1,1040.5,674122.88,184238.16,215973.33,0,1876.6904 -13429,16513,29869,29868,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.0354476,7.0672822,44,-2,10.514562,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7495885,6.9537139,52,54.51,54.37,54.8,8.333333333333334,1,1,0,0,0,2,3,1,1040.5,674122.88,184238.16,215973.33,0,1876.6904 -13430,16514,29870,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.6932011,7.9288597,0,0,-1052.9728,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,1.824632,0,18.758738,0,1,1,0,4.6753831,7.5993452,34.03,18.62,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,354,339295.66,0,220039.25,0,2697.2295 -13431,16515,29871,29872,-9,-9,1,1,64,0,1,0,3,3,-9,0,2,0,6.3944693,6.7382178,21,8,44.093079,0,2,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,27,1,1,0,5.7086978,6.7565098,43.29,31.87,31.68,17,1.666666666666667,1,1,0,0,7,4,2,0,922.5,419897.66,-13258.016,316414,26223.348,2240.2417 -13431,16515,29872,29871,-9,-9,1,0,56,0,1,0,2,2,-9,0,1,0,6.0685849,5.8992057,21,-8,-16.917486,0,2,2,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,5.7952442,31.68,17,43.29,31.87,0,1,1,0,1,0,4,2,0,922.5,419897.66,-13258.016,316414,26223.348,2240.2417 -13432,16516,29873,-9,29874,29876,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1020.6024,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 -13432,16516,29874,29876,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.8530035,9.0984392,0,10,-12,72.908607,0,1,1,2019,7,0,46,50,1,0,0,18.654566,18.654566,0,0,0,0,0,0,0,0,.33262777,0,41.59,61.77,42.5,53.5,8.333333333333334,1,1,0,0,10,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 -13432,16516,29875,-9,29874,29876,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.20715,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 -13432,16516,29876,29874,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,9.1740608,9.6006079,0,10,12,149.81296,0,3,3,2019,23,11,50,45,1,11,0,32.28804,32.28804,0,0,0,0,0,0,0,0,1.6740326,0,42.5,53.5,41.59,61.77,6.666666666666667,1,1,0,0,10,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 -13432,16516,29877,-9,29874,29876,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.439,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,575.40002,3297776.3,1324275.3,1233328.4,321483.41,6551.2729 -13433,16517,29878,29879,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,4.8936505,4.7052531,48,0,88.97683,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,10.967959,0,2,1,1,0,5.8077302,4.3862286,39.8,18.56,54.79,55.86,8.333333333333334,1,1,0,0,0,2,2,1,742,-135038.42,0,115579.25,0,1520.3433 -13433,16517,29879,29878,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,48,0,49.608074,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,5.2710395,0,54.79,55.86,39.8,18.56,10,1,1,0,0,0,2,2,1,742,-135038.42,0,115579.25,0,1520.3433 -13434,16518,29880,29881,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.4526978,7.3851819,0,6,3,-56.72646,-9,1,2,2019,12,1,60,0,1,1,0,2.5183425,2.5183425,0,0,0,0,0,1,1,0,4.1739259,0,48.76,53.24,35.28,47.77,8.333333333333334,1,1,0,0,8,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 -13434,16518,29881,29880,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,9.1685848,9.265296,0,6,-3,-53.772934,-9,1,1,2019,22,10,40,0,1,10,0,31.25267,31.25267,0,0,0,0,0,1,1,0,0,0,35.28,47.77,48.76,53.24,5,1,1,0,0,8,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 -13434,16518,29882,-9,29881,29880,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.12555,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 -13434,16518,29883,-9,29881,29880,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.79004,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,566.75,891283.69,319924.75,278405.84,175436.97,3643.8462 -13435,16519,29884,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.7980976,7.7595987,0,0,0,-1038.9901,0,3,2,2019,5,0,21,21,1,0,0,10.501779,10.501779,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,11,11,3,1,538,447262.53,44114.59,0,0,2140.7925 -13436,16520,29885,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1081.2085,-9,3,3,2019,24,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,20.5,56.06,-9,-9,5,1,1,0,1,0,13,2,0,505,0,0,0,0,173.68794 -13437,16521,29886,29887,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,5.8873792,6.1255798,7,-3,52.924896,0,3,2,2019,14,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.3253241,61.41,22.1,64.61,27.52,8.333333333333334,1,1,0,0,0,10,3,1,894.5,1075743.6,424915.25,463624.41,0,2290.1028 -13437,16521,29887,29886,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,8.3591127,7.8512378,7,3,25.057831,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0981398,8.2997713,64.61,27.52,61.41,22.1,6.666666666666667,1,1,0,0,0,10,3,1,894.5,1075743.6,424915.25,463624.41,0,2290.1028 -13438,16522,29888,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,2,6.8487377,7.1177421,0,0,0,-856.56915,0,2,2,2019,7,0,20,23,1,0,0,6.4471936,6.4471936,0,0,0,0,0,1,1,0,4.012486,0,56.92,25.45,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,544,300534.53,0,0,0,2361.2205 -13439,16523,29889,29890,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,17,-11,-45.455414,0,3,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,51,52,55,8.333333333333334,2,3,0,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 -13439,16523,29890,29889,-9,-9,1,1,48,0,3,0,3,3,-9,0,4,6.5473623,6.780189,0,16,11,-32.37109,0,3,2,2019,9,0,40,35,1,1,0,2.7817385,2.7817385,0,0,0,0,0,1,1,0,0,0,52,55,46,51,8,2,3,0,0,10,8,2,0,1033.8,43841.535,0,0,0,2356.8579 -13439,16523,29891,-9,29889,29890,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.9877,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 -13439,16523,29892,-9,29889,29890,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.4535,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 -13439,16523,29893,-9,29889,29890,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.0503,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,1033.8,43841.535,0,0,0,2356.8579 -13440,16524,29894,29895,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.7534504,7.419168,9,2,129.38718,0,2,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,4.7520332,7.317028,40.56,50.59,58.62,39.16,8.333333333333334,1,1,0,0,0,7,3,1,671.5,957824.88,647056.25,247086.06,0,3066.4753 -13440,16524,29895,29894,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5646996,7.6157136,9,-2,-48.86721,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2645264,58.62,39.16,40.56,50.59,5,1,1,0,0,0,7,3,1,671.5,957824.88,647056.25,247086.06,0,3066.4753 -13441,16525,29896,-9,29899,29898,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.42706,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 -13441,16525,29897,-9,29899,29898,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.71832,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 -13441,16525,29898,29899,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.5150633,9.604373,0,7,12,-94.03318,0,3,3,2019,11,1,45,46,1,1,0,29.003654,29.003654,0,0,0,0,0,0,0,0,1.0892833,0,47.01,58,22.45,54.89,6.666666666666667,1,1,0,0,8,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 -13441,16525,29899,29898,-9,-9,1,0,37,0,3,0,1,1,-9,0,2,8.8116779,8.9947453,0,7,-12,28.269958,0,1,1,2019,26,11,50,120,1,11,0,23.287701,23.287701,0,0,0,0,0,0,0,0,.64466882,0,22.45,54.89,47.01,58,5,1,1,0,0,8,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 -13441,16525,29900,-9,29899,29898,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-903.70294,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,963,1713426.8,1196973.9,448716.81,0,6940.374 -13442,16526,29901,29902,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,8,-2,-8.6058884,0,-9,-9,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,0,0,53.17,46.97,62.82,44.04,8.333333333333334,2,3,0,0,0,5,2,1,827,94797.852,110181.86,165837.63,0,1555.0579 -13442,16526,29902,29901,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.5573153,7.0006809,51,2,-36.975838,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,42,1,1,0,.87520796,6.8546491,62.82,44.04,53.17,46.97,8.333333333333334,2,3,0,0,0,5,2,1,827,94797.852,110181.86,165837.63,0,1555.0579 -13443,16527,29903,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-991.23706,-9,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,21.76,-9,-9,0,1,1,0,1,8,10,2,0,163,60512.98,0,0,0,725.72949 -13444,16528,29904,29905,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.4870358,8.2942066,41,-3,42.724464,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5958529,8.3453732,57.33,53.46,56.35,51,8.333333333333334,1,1,0,0,5,12,3,1,465.5,790851.13,706396.13,118955.56,0,2524.3486 -13444,16528,29905,29904,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9651837,6.1677513,41,3,6.8335667,0,1,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.1057754,5.9065089,56.35,51,57.33,53.46,8.333333333333334,1,1,0,0,6,12,3,1,465.5,790851.13,706396.13,118955.56,0,2524.3486 -13445,16529,29906,29907,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,50,-1,9.6252174,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48.69,41.09,60.38,24.06,6.666666666666667,1,1,0,0,0,2,2,1,928.5,302707.78,288964.31,218813.38,0,1650.5317 -13445,16529,29907,29906,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.4938226,7.2707405,50,1,126.7014,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.4939103,7.4127498,60.38,24.06,48.69,41.09,8.333333333333334,1,1,0,0,6,2,2,1,928.5,302707.78,288964.31,218813.38,0,1650.5317 -13446,16530,29908,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9552722,8.0973568,0,0,0,-1071.2843,-9,-9,-9,2019,9,0,43,0,1,0,0,8.1400919,8.1400919,0,0,0,0,0,0,0,0,0,0,39.73,57.61,-9,-9,5,2,3,0,0,11,6,4,1,764,519499.91,378733.16,0,0,1102.1788 -13446,16531,29909,-9,29908,-9,1,0,33,0,0,0,2,2,-9,0,5,6.902576,6.9931531,0,0,0,-1104.8152,0,2,-9,2019,5,0,12,14,1,0,1,7.613863,7.613863,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,11,6,2,1,1858,140549.83,76088.484,0,0,946.34442 -13447,16532,29910,29911,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.6519566,7.9945312,0,8,-1,86.662178,0,2,2,2019,7,1,43,45,1,1,0,8.3014841,8.3014841,0,0,0,0,0,0,0,0,0,0,61.84,41.58,47.57,51.43,10,1,1,0,0,9,11,4,0,526.5,566844.38,334315.44,117951.59,55039.133,2096.1782 -13447,16532,29911,29910,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0821619,7.860723,0,8,1,-13.162284,0,3,3,2019,12,0,2,32,1,0,0,196.64493,196.64493,0,0,0,0,7,0,0,0,0,0,47.57,51.43,61.84,41.58,8.333333333333334,1,1,0,0,9,11,4,0,526.5,566844.38,334315.44,117951.59,55039.133,2096.1782 -13448,16533,29912,29913,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.7959867,7.8664513,0,6,-2,-14.304583,0,3,-9,2019,6,0,38,38,1,0,0,10.156567,10.156567,0,0,0,0,0,0,0,0,3.2025788,0,63.83,38.08,55.36,51.57,8.333333333333334,1,1,0,0,7,1,5,1,688.5,363448.94,262805.38,98121.547,101998.15,2956.2666 -13448,16533,29913,29912,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.696002,8.3824978,0,6,2,-16.314598,0,2,2,2019,6,0,38,47,1,0,0,18.240704,18.240704,0,0,0,0,0,0,0,0,4.4946728,0,55.36,51.57,63.83,38.08,8.333333333333334,1,1,0,0,7,1,5,1,688.5,363448.94,262805.38,98121.547,101998.15,2956.2666 -13449,16534,29914,29915,-9,-9,1,1,53,0,3,0,2,2,-9,0,3,7.9229703,7.7497902,0,6,3,-35.105083,0,3,3,2019,10,0,48,42,1,0,0,7.1632981,7.1632981,0,0,0,0,0,1,1,0,0,0,52,54.51,51,54,5,1,1,0,0,7,13,3,1,668,418340.63,105085.27,181745.31,4170.1372,1830.4087 -13449,16534,29915,29914,-9,-9,1,0,50,0,3,0,3,3,-9,0,4,6.5295067,6.4969678,0,6,-3,50.858078,-9,3,3,2019,10,0,6,0,1,1,0,12.349353,12.349353,0,0,0,0,0,1,1,0,0,0,51,54,52,54.51,8,1,1,0,0,1,13,3,1,668,418340.63,105085.27,181745.31,4170.1372,1830.4087 -13450,16535,29916,29917,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0251484,8.4831419,6.7209053,35,-16,-90.144783,0,2,2,2019,7,0,20,21,1,0,0,13.948293,13.948293,0,0,0,0,0,1,1,0,0,7.1817913,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,969.5,316080.59,-16176.316,375129.56,0,2455.6177 -13450,16535,29917,29916,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.8424268,6.7578735,33,16,.60946673,0,1,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.84376305,6.8458076,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,969.5,316080.59,-16176.316,375129.56,0,2455.6177 -13451,16536,29918,29919,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,49,-2,0,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,39.41,51.35,41.78,10,1,1,0,0,0,13,1,0,751,228672.41,0,178725.89,0,2360.1389 -13451,16536,29919,29918,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,49,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.35,41.78,61.04,39.41,8.333333333333334,1,1,0,0,0,13,1,0,751,228672.41,0,178725.89,0,2360.1389 -13452,16537,29920,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.5590162,8.566926,0,0,0,-954.02728,0,-9,-9,2019,11,2,40,60,1,2,0,15.845719,15.845719,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,13,5,0,187,-19406.158,-44080.203,134345.92,78837.805,1792.6454 -13453,16538,29921,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.3115015,8.2978802,0,0,-976.87927,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5.4212794,8.3339663,45.37,54.86,-9,-9,6.666666666666667,1,1,0,0,3,7,4,1,2176,928818.94,120053.51,460414.78,2797.012,2278.9834 -13454,16539,29922,29923,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.9391661,8.8805294,0,23,-6,117.55195,0,-9,-9,2019,11,2,44,50,1,2,0,18.699251,18.699251,0,0,0,0,0,0,0,0,1.9319261,0,50.34,56.4,52.4,52.91,8.333333333333334,1,1,0,0,9,8,5,1,1105,1797934.3,1404451.8,353289.38,67528.875,4156.2715 -13454,16539,29923,29922,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6831007,8.5558176,0,21,6,125.60538,0,2,2,2019,6,0,37,40,1,0,0,12.862282,12.862282,0,0,0,0,0,0,0,0,3.7042696,0,52.4,52.91,50.34,56.4,8.333333333333334,3,4,0,0,9,8,5,1,1105,1797934.3,1404451.8,353289.38,67528.875,4156.2715 -13454,16540,29924,-9,29922,29923,1,0,19,0,0,0,2,2,-9,0,3,8.0134439,7.8637915,0,0,0,-968.08691,0,1,2,2019,23,10,35,0,1,10,1,7.1726832,7.1726832,0,0,0,0,0,0,0,0,0,0,17.26,66.47,-9,-9,6.666666666666667,4,2,0,0,1,8,3,1,2442,-92697.953,0,0,0,1208.381 -13454,16541,29925,-9,29922,29923,1,0,19,0,0,0,2,2,1,0,5,7.5560632,7.6926708,0,0,0,-866.25446,-9,1,2,2019,6,0,30,0,1,0,1,8.284502,8.284502,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,4,2,0,0,2,8,3,1,910,-86595.016,0,0,0,477.59323 -13455,16542,29926,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.9858,0,2,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,37.81,36.55,-9,-9,0,1,1,1,0,4,4,1,0,3180,0,0,0,0,808.54877 -13455,16543,29927,-9,29926,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-825.42505,-9,2,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,119,-231790.47,0,0,0,0 -13456,16544,29928,29929,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.3630881,7.0221467,10,10,60.324501,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,4.9404011,7.1220145,50.34,45.67,24.41,35.2,8.333333333333334,1,1,0,0,6,10,3,1,211,1896096.5,1120438.4,379953.81,0,3060.5444 -13456,16544,29929,29928,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,7.7507529,8.006011,30,-10,65.535416,0,2,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,1.7652558,7.8101573,24.41,35.2,50.34,45.67,1.666666666666667,1,1,0,0,0,10,3,1,211,1896096.5,1120438.4,379953.81,0,3060.5444 -13457,16545,29930,29931,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.8353853,6.7056613,37,16,75.141708,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.128336,57.16,56.15,53.92,34.27,8.333333333333334,1,1,0,0,1,5,2,1,567.5,376541.06,148430.22,166480.88,0,1136.7183 -13457,16545,29931,29930,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,37,-16,-70.610588,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,0,0,53.92,34.27,57.16,56.15,5,1,1,0,0,0,5,2,1,567.5,376541.06,148430.22,166480.88,0,1136.7183 -13458,16546,29932,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2973757,8.5204687,7.2998924,0,0,-892.2475,0,3,3,2019,8,0,24,24,1,0,0,15.432961,15.432961,0,0,0,0,2,0,0,0,7.0103664,7.5408845,57.16,56.15,-9,-9,10,1,1,0,0,12,6,5,1,257,68076.391,-12003.176,0,0,1693.8538 -13459,16547,29933,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,3,7.832788,7.786984,0,0,0,-1045.3083,0,2,-9,2019,20,8,35,20,1,8,1,8.1709795,8.1709795,0,0,0,0,2,1,1,0,0,0,40.02,51.86,-9,-9,6.666666666666667,3,4,0,0,7,6,3,0,87,-208638.64,-15359.896,0,0,1170.1481 -13460,16548,29934,-9,29935,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4233,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,5,1,1046.6666,397261.53,162687.7,658198.69,315948.69,3915.2732 -13460,16548,29935,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.9369459,8.726059,0,0,0,-1101.8409,0,1,1,2019,8,0,70,70,1,0,0,11.798777,11.798777,0,0,0,0,0,0,0,0,8.5825291,0,50.95,45.41,-9,-9,3.333333333333333,4,2,0,0,11,8,5,1,1046.6666,397261.53,162687.7,658198.69,315948.69,3915.2732 -13460,16548,29936,-9,29935,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.9788,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,1046.6666,397261.53,162687.7,658198.69,315948.69,3915.2732 -13461,16549,29937,-9,29938,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.54773,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,994.33331,0,0,0,0,1621.6001 -13461,16549,29938,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-875.06616,-9,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,1,3,8,1,0,994.33331,0,0,0,0,1621.6001 -13461,16549,29939,-9,29938,-9,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.3718,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,1,0,994.33331,0,0,0,0,1621.6001 -13462,16550,29940,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.1626062,8.5974665,6.8690596,0,0,-832.51062,0,3,3,2019,6,0,46,51,1,0,0,9.3425245,9.3425245,0,0,0,0,14.5,1,1,0,5.1412749,6.8006434,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,802,-227214.27,75744.266,0,0,2997.7019 -13463,16551,29941,29942,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.6292086,8.3690453,0,29,-4,42.688877,-9,3,3,2019,9,0,40,0,1,0,0,12.518154,12.518154,0,0,0,0,0,0,0,0,0,0,42.85,62.85,51.25,52.08,8.333333333333334,1,1,0,0,9,13,4,1,703,1095174.4,1206626.5,164215.83,0,2595.4658 -13463,16551,29942,29941,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.0526667,7.3060598,0,29,4,11.800033,-9,3,3,2019,9,0,60,0,1,0,0,2.5529258,2.5529258,0,0,0,0,0,0,0,0,0,0,51.25,52.08,42.85,62.85,8.333333333333334,1,1,0,0,9,13,4,1,703,1095174.4,1206626.5,164215.83,0,2595.4658 -13463,16552,29943,-9,29941,29942,1,0,27,0,0,0,2,2,-9,0,5,7.8316936,7.4667344,0,0,0,-1114.1139,-9,2,3,2019,6,0,35,0,1,0,1,9.3337612,9.3337612,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,13,3,1,1819,-181108.34,-132461.67,0,0,894.61847 -13464,16553,29944,29945,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.7426949,9.0639906,0,9,-3,-154.46754,0,3,2,2019,11,0,50,45,1,0,0,15.145498,15.145498,0,0,0,0,0,0,0,0,5.123127,0,48.81,59.91,60.53,48.35,6.666666666666667,1,1,0,0,12,8,5,1,746.5,4198319,1731976.8,1478506.3,13985.181,4495.8862 -13464,16553,29945,29944,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.3054686,8.7287388,0,9,3,37.10424,0,3,2,2019,6,0,30,30,1,0,0,13.647097,13.647097,0,0,0,0,0,0,0,0,3.1571684,0,60.53,48.35,48.81,59.91,8.333333333333334,1,1,0,0,12,8,5,1,746.5,4198319,1731976.8,1478506.3,13985.181,4495.8862 -13465,16554,29946,29947,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,49,-3,-51.799458,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,32.71,24.51,8.333333333333334,1,1,0,0,4,7,2,1,632.5,178274.47,158753.56,174174.41,0,1720.1353 -13465,16554,29947,29946,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.7106552,6.5404582,49,3,46.470909,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,124.80136,0,0,1,1,0,0,6.7501411,32.71,24.51,49,48,6.666666666666667,1,1,0,0,6,7,2,1,632.5,178274.47,158753.56,174174.41,0,1720.1353 -13466,16555,29948,-9,29949,29950,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.3916,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,746.66669,429033.03,445917.47,133010.27,95892.234,2709.6282 -13466,16555,29949,29950,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.7710328,7.9171844,0,28,-2,66.441971,0,3,3,2019,10,0,24,24,1,0,0,12.376385,12.376385,0,0,0,0,0,1,1,0,0,0,49.58,55.59,57.59,43.82,6.666666666666667,1,1,0,0,11,2,4,1,746.66669,429033.03,445917.47,133010.27,95892.234,2709.6282 -13466,16555,29950,29949,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.3958359,8.1538477,0,28,2,-41.067509,0,3,3,2019,6,0,45,42,1,0,0,11.871744,11.871744,0,0,0,0,0,1,1,0,0,0,57.59,43.82,49.58,55.59,8.333333333333334,1,1,0,0,11,2,4,1,746.66669,429033.03,445917.47,133010.27,95892.234,2709.6282 -13467,16556,29951,29952,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,42,-1,128.21458,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,5.8091359,0,46.44,59.62,57.06,57.76,8.333333333333334,1,1,0,0,1,2,2,1,730,1013397.1,467051.19,248018.25,0,1995.8805 -13467,16556,29952,29951,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,0,7.0055404,7.1651645,42,1,-59.264561,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.0684228,7.0755281,57.06,57.76,46.44,59.62,8.333333333333334,1,1,0,0,5,2,2,1,730,1013397.1,467051.19,248018.25,0,1995.8805 -13468,16557,29953,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1036.9752,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,358,394490.53,150614.75,0,0,0 -13469,16558,29954,29955,-9,-9,1,0,45,0,5,0,3,3,-9,0,3,0,0,0,13,-5,39.859356,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,48.01,46.27,34.58,6.666666666666667,2,3,0,0,1,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 -13469,16558,29955,29954,-9,-9,1,1,50,0,5,0,3,3,-9,0,2,7.7216268,7.4088812,0,6,5,71.686203,0,-9,-9,2019,12,0,86,40,1,0,0,2.1344826,2.1344826,0,0,0,0,0,1,1,0,0,0,46.27,34.58,43.57,48.01,6.666666666666667,2,3,0,0,11,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 -13469,16558,29956,-9,29954,29955,1,1,10,0,5,1,3,0,-9,0,3,0,0,0,0,0,-963.91193,-9,3,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 -13469,16558,29957,-9,29954,29955,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-874.83435,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 -13469,16558,29958,-9,29954,29955,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-972.13763,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 -13469,16558,29959,-9,29954,29955,1,0,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-965.41766,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 -13469,16558,29960,-9,29954,29955,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-905.63092,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,495,90312.063,-294.62402,124846.06,60867.973,1510.6302 -13470,16559,29961,29962,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.5357175,7.2608061,0,7,-4,47.663513,0,2,-9,2019,12,0,28,25,1,0,0,6.0485454,6.0485454,0,0,0,0,0,1,1,0,.43903217,0,46.08,57.2,46.8,57.03,6.666666666666667,1,1,0,0,8,9,4,1,292,241809.77,105531.26,280800.03,199037.34,1756.114 -13470,16559,29962,29961,-9,-9,1,1,36,0,1,0,3,3,-9,0,3,8.6754742,8.5876369,0,7,4,-15.693685,0,3,3,2019,4,0,46,56,1,0,0,10.331677,10.331677,0,0,0,0,0,1,1,0,1.5375856,0,46.8,57.03,46.08,57.2,6.666666666666667,1,1,0,0,8,9,4,1,292,241809.77,105531.26,280800.03,199037.34,1756.114 -13470,16559,29963,-9,29961,29962,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.10217,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,292,241809.77,105531.26,280800.03,199037.34,1756.114 -13471,16560,29964,-9,29966,-9,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1138.49,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,652,262281.34,0,0,0,885.31934 -13471,16560,29965,-9,29966,-9,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1003.0794,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,652,262281.34,0,0,0,885.31934 -13471,16560,29966,-9,-9,-9,1,0,30,1,4,0,2,2,-9,0,4,0,0,0,0,0,-1021.6151,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,0,1,1,0,0,0,13,1,0,652,262281.34,0,0,0,885.31934 -13471,16560,29967,-9,29966,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.28174,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,652,262281.34,0,0,0,885.31934 -13472,16561,29968,29969,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,58,-1,-31.199465,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,5.4481168,.394793,2,1,1,0,0,0,57.66,45.08,59.46,46.99,10,1,1,0,0,0,11,5,1,250.5,1412800.5,1219350.6,334627.38,0,4815.4478 -13472,16561,29969,29968,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.8420153,9.0333595,58,1,-107.26141,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,9.0807123,59.46,46.99,57.66,45.08,8.333333333333334,1,1,0,0,0,11,5,1,250.5,1412800.5,1219350.6,334627.38,0,4815.4478 -13473,16562,29970,29971,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,6.701983,6.749032,35,8,-122.89702,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,9.0842772,6.8401742,54.21,25.53,46.75,48.9,8.333333333333334,1,1,0,0,0,9,2,1,468.5,349582.5,261962.23,223597.61,0,4054.2183 -13473,16562,29971,29970,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,6.1131616,6.070148,35,-8,-74.629883,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4138622,5.96766,46.75,48.9,54.21,25.53,8.333333333333334,1,1,0,0,6,9,2,1,468.5,349582.5,261962.23,223597.61,0,4054.2183 -13474,16563,29972,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.6093388,6.8618226,0,0,-994.81506,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,126.70955,1.9435514,1164.278,0,1,1,0,2.6197314,6.3520303,54,44,-9,-9,8,1,1,0,0,0,5,2,0,1648,615117.44,149414.92,119964.04,0,1155.4143 -13475,16564,29973,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,3.8212087,3.7512774,0,0,-932.66565,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7602632,54.2,57.49,-9,-9,10,1,1,0,0,2,4,2,0,800,662603,73171.672,188673.77,0,862.11163 -13476,16565,29974,29975,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,6.5593739,6.7611814,9,-6,66.988754,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.792093,6.5986452,53.81,53.56,50.07,39.58,8.333333333333334,1,1,0,0,6,9,3,1,901.5,821583.38,239311.16,596167.25,0,3353.1958 -13476,16565,29975,29974,-9,-9,1,1,89,0,0,0,2,2,-9,0,4,0,8.1617661,7.5904155,9,6,5.4794784,0,3,2,2019,7,1,0,0,4,1,0,0,0,1,0,2.9732492,0,0,1,1,0,7.2961192,7.8051748,50.07,39.58,53.81,53.56,8.333333333333334,1,1,0,0,0,9,3,1,901.5,821583.38,239311.16,596167.25,0,3353.1958 -13477,16566,29976,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,7.1088018,6.6027846,0,0,-1018.5018,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.764925,60.02,56.42,-9,-9,10,1,1,0,0,7,1,2,0,781,-187451.77,-16761.35,98494.977,29646.881,1277.8038 -13478,16567,29977,29978,-9,-9,1,0,51,0,3,0,1,1,-9,0,5,7.3309155,7.4411225,0,19,-1,23.591772,0,3,3,2019,6,0,22,25,1,0,0,11.310796,11.310796,0,0,0,0,0,1,1,0,0,0,54.69,57.47,51.67,60.18,8.333333333333334,1,1,0,0,9,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 -13478,16567,29978,29977,-9,-9,1,1,52,0,3,0,1,1,-9,0,5,8.6468458,8.7678137,0,19,1,2.7913876,0,2,2,2019,10,0,48,42,1,0,0,14.511097,14.511097,0,0,0,0,0,1,1,0,0,0,51.67,60.18,54.69,57.47,8.333333333333334,1,1,0,0,9,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 -13478,16567,29979,-9,29977,29978,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.80493,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 -13478,16567,29980,-9,29977,29978,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1002.1491,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 -13478,16567,29981,-9,29977,29978,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.93927,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,1059,528136.94,542802.13,218184.19,111464.9,3087.5142 -13479,16568,29982,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.894371,7.6529541,0,0,0,-999.74017,0,-9,-9,2019,17,5,40,38,1,5,0,6.9987655,6.9987655,0,0,0,0,0,0,0,0,0,0,54.57,34.33,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,270,19801.236,135167.17,0,0,750.16479 -13479,16569,29983,29984,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.3988914,8.5399952,0,8,3,8.6173534,0,-9,-9,2019,12,2,65,72,1,2,0,7.261445,7.261445,0,0,0,0,0,0,0,0,1.2636446,0,48.87,58.55,55.2,49.4,6.666666666666667,1,1,0,0,7,6,5,1,546.5,465091.44,174742.84,98403.469,81093.891,4068.4658 -13479,16569,29984,29983,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,8.5531101,8.5876522,0,8,-3,-109.64573,0,1,2,2019,10,0,68,63,1,0,0,8.6445885,8.6445885,0,0,0,0,0,0,0,0,6.9024224,0,55.2,49.4,48.87,58.55,6.666666666666667,1,1,0,0,9,6,5,1,546.5,465091.44,174742.84,98403.469,81093.891,4068.4658 -13480,16570,29985,29986,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4493933,8.6987209,0,21,-1,-59.738815,0,1,1,2019,11,0,37,37,1,0,0,13.476272,13.476272,0,0,0,0,0,0,0,0,7.22192,0,61.28,46.17,57.16,56.15,5,1,1,0,0,11,4,4,1,782.5,714379.63,482892.31,183849.31,0,3168.9104 -13480,16570,29986,29985,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.5016146,7.4282398,0,22,1,-66.466507,-9,3,2,2019,9,0,50,0,1,0,0,3.3668206,3.3668206,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.28,46.17,8.333333333333334,1,1,0,0,11,4,4,1,782.5,714379.63,482892.31,183849.31,0,3168.9104 -13481,16571,29987,-9,29988,29989,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-944.94012,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,5,1,221.66667,2033242.4,1644151.1,311375.75,61189.762,4282.8247 -13481,16571,29988,29989,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.8778877,7.7911954,0,24,-10,57.394432,0,2,1,2019,12,2,33,35,1,2,0,7.6783795,7.6783795,0,0,0,0,0,1,1,0,0,0,38.38,52.55,54,54,3.333333333333333,2,3,0,1,4,8,5,1,221.66667,2033242.4,1644151.1,311375.75,61189.762,4282.8247 -13481,16571,29989,29988,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.1670341,8.9271994,0,24,10,112.71488,0,2,2,2019,8,0,45,50,1,0,0,21.812237,21.812237,0,0,0,0,0,1,1,0,0,0,54,54,38.38,52.55,8,2,3,0,0,1,8,5,1,221.66667,2033242.4,1644151.1,311375.75,61189.762,4282.8247 -13481,16572,29990,-9,29988,29989,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1096.7257,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,591,-406990.31,0,0,0,0 -13482,16573,29991,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.8229485,8.5572462,0,0,0,-986.95801,0,2,1,2019,12,0,62,61,1,0,0,10.523745,10.523745,0,0,0,0,0,0,0,0,0,0,51.64,50.48,-9,-9,8.333333333333334,1,1,0,0,5,10,5,0,622,214424.98,167332.77,238699.95,62061.699,1200.1678 -13483,16574,29992,-9,-9,-9,1,0,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-908.09912,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.71,43.37,-9,-9,1.666666666666667,3,4,0,0,3,2,1,0,1202,-175251.67,0,0,0,1738.6406 -13484,16575,29993,29994,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.6752405,8.4637613,0,38,-2,-72.97422,0,3,2,2019,7,1,42,51,1,1,0,17.664066,17.664066,0,0,0,0,2,1,1,0,0,0,46.22,53,51.67,60.18,6.666666666666667,2,3,0,0,10,2,5,1,1049.5,1273190.3,656210.25,280550.19,0,5469.3799 -13484,16575,29994,29993,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,8.6179314,8.8494062,7.4192033,21,2,61.29575,0,2,-9,2019,14,3,37,36,1,3,0,12.387668,12.387668,0,0,0,0,2,1,1,0,0,8.3699903,51.67,60.18,46.22,53,6.666666666666667,1,1,0,0,8,2,5,1,1049.5,1273190.3,656210.25,280550.19,0,5469.3799 -13484,16576,29995,-9,29993,29994,1,1,33,0,0,0,1,1,-9,0,4,8.3437595,8.1999893,0,0,0,-1008.9803,0,2,1,2019,13,1,25,22,1,1,0,21.958248,21.958248,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,3.333333333333333,4,2,0,1,7,2,4,1,1434,-133833.52,0,0,0,1645.116 -13485,16577,29996,29997,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,31,-3,17.687313,0,3,1,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,2,0,0,0,0,0,44.16,58.02,51.49,57.57,5,1,1,0,0,11,12,3,1,468,1021570.5,616402,283305.59,0,1593.0569 -13485,16577,29997,29996,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.2413521,7.9139872,0,31,3,87.267555,0,-9,3,2019,11,0,15,10,1,0,0,34.17297,34.17297,0,0,0,0,0,0,0,0,4.1499863,0,51.49,57.57,44.16,58.02,8.333333333333334,1,1,0,0,11,12,3,1,468,1021570.5,616402,283305.59,0,1593.0569 -13486,16578,29998,29999,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,7.5374551,7.1990714,0,12,3,-57.756977,0,2,1,2019,8,0,44,50,1,0,0,5.2419,5.2419,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.63,56.14,8.333333333333334,2,3,0,0,10,2,3,1,690,35338.488,63564.852,189241.83,105592.24,1467.7035 -13486,16578,29999,29998,-9,-9,1,0,36,0,1,0,1,1,-9,0,5,7.3688512,7.3486753,0,12,-3,-3.33338,0,1,1,2019,4,1,40,50,1,1,0,5.5753784,5.5753784,0,0,0,0,0,1,1,0,0,0,57.63,56.14,57.33,53.46,8.333333333333334,2,3,0,0,9,2,3,1,690,35338.488,63564.852,189241.83,105592.24,1467.7035 -13486,16578,30000,-9,29999,29998,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.8353,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,3,1,690,35338.488,63564.852,189241.83,105592.24,1467.7035 -13487,16579,30001,30004,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.1551313,9.0117664,0,16,6,-49.068714,0,-9,-9,2019,10,1,55,55,1,1,0,20.787758,20.787758,0,0,0,0,0,0,0,0,3.3943858,0,45.75,53.15,45.53,43.92,6.666666666666667,1,1,0,0,11,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 -13487,16579,30002,-9,30004,30001,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.3954,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 -13487,16579,30003,-9,30004,30001,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-994.42786,-9,1,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 -13487,16579,30004,30001,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.3376856,8.5195036,0,14,-6,44.821014,0,2,2,2019,17,7,38,39,1,7,0,14.086921,14.086921,0,0,0,0,0,0,0,0,3.4998803,0,45.53,43.92,45.75,53.15,3.333333333333333,3,4,0,0,6,7,5,1,410.5,955667.81,261031.08,800228.06,291289.09,5544.9771 -13488,16580,30005,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.0307608,7.9816194,0,0,0,-950.3175,0,-9,-9,2019,20,8,37,37,1,8,0,9.1269207,9.1269207,0,0,0,0,0,1,0,1,0,0,30.77,64.34,-9,-9,1.666666666666667,1,1,0,1,4,11,4,0,749,103414.22,0,0,0,1786.4216 -13489,16581,30006,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.2440987,9.1662197,0,0,0,-1173.0861,0,2,2,2019,14,3,60,60,1,3,0,19.005423,19.005423,0,0,0,0,0,0,0,0,4.7324085,0,32.56,65.15000000000001,-9,-9,6.666666666666667,1,1,0,0,5,9,5,1,1126,231705.03,449506.41,229440.5,125326.47,4092.2654 -13489,16582,30007,-9,30006,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.39435,-9,1,2,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,46.25,52.95,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,217,123097.1,0,0,0,0 -13490,16583,30008,30009,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.9971857,6.1610928,11,3,64.482964,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4594555,62.49,55.09,56.11,44.4,10,1,1,0,0,8,6,3,1,981.5,988318.31,707420.13,242229.5,0,1793.6626 -13490,16583,30009,30008,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.2425432,8.0658312,7.5104561,16,-3,162.00674,0,2,2,2019,9,0,15,17,1,0,0,11.03767,11.03767,0,0,0,0,0,1,1,0,5.5431919,7.6109457,56.11,44.4,62.49,55.09,8.333333333333334,1,1,0,0,13,6,3,1,981.5,988318.31,707420.13,242229.5,0,1793.6626 -13491,16584,30010,30011,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.6144295,7.7595005,6.1841302,9,3,3.0448608,-9,3,3,2019,11,0,60,0,1,0,0,4.5533552,4.5533552,0,0,0,0,0,0,0,0,0,6.083415,50.44,43.31,52.33,50.78,5,1,1,0,0,10,11,4,1,1646.5,54592.469,181527.78,153083.98,-10469.609,2170.7769 -13491,16584,30011,30010,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.8644853,7.5456252,0,9,-3,98.281517,-9,2,2,2019,6,0,22,0,1,0,0,12.758974,12.758974,0,0,0,0,0,0,0,0,0,0,52.33,50.78,50.44,43.31,8.333333333333334,1,1,0,0,10,11,4,1,1646.5,54592.469,181527.78,153083.98,-10469.609,2170.7769 -13492,16585,30012,-9,30014,30013,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-906.57324,-9,2,3,2019,16,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,2.9063778,0,18.32,59.82,-9,-9,3.333333333333333,1,1,0,0,0,4,5,1,1059.3334,1642815.6,1360080,231653.13,-6102.9102,3358.2158 -13492,16585,30013,30014,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.3261003,7.8843207,0,9,0,-96.548172,0,2,2,2019,8,0,45,15,1,0,0,6.7588606,6.7588606,0,0,0,0,0,1,1,0,0,0,46.08,57.2,39.05,59.16,6.666666666666667,1,1,0,0,9,4,5,1,1059.3334,1642815.6,1360080,231653.13,-6102.9102,3358.2158 -13492,16585,30014,30013,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.404563,8.3341351,0,9,0,-161.04718,0,2,2,2019,12,0,30,30,1,0,0,17.167656,17.167656,0,0,0,0,14.5,1,1,0,0,0,39.05,59.16,46.08,57.2,5,1,1,0,0,10,4,5,1,1059.3334,1642815.6,1360080,231653.13,-6102.9102,3358.2158 -13493,16586,30015,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.7899,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,15.600656,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,0,451,-27266.373,0,0,0,629.06073 -13494,16587,30016,30017,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.8119287,8.7967367,0,9,4,-82.954613,0,2,3,2019,6,0,40,40,1,0,0,27.334349,27.334349,0,0,0,0,0,0,0,0,4.3696866,0,56.94,49.53,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,1,1069.5,818402,114725.1,599565,62857.727,4469.5234 -13494,16587,30017,30016,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.7712173,8.9646454,0,37,-4,152.43279,0,3,3,2019,6,0,38,39,1,0,0,15.549242,15.549242,0,0,0,0,0,0,0,0,3.7726121,0,57.16,56.15,56.94,49.53,8.333333333333334,1,1,0,0,11,12,5,1,1069.5,818402,114725.1,599565,62857.727,4469.5234 -13495,16588,30018,30019,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8346419,7.9818864,0,33,-5,53.284225,0,3,3,2019,11,0,33,43,1,0,0,8.2991371,8.2991371,0,0,0,0,0,0,0,0,0,0,53.46,44.67,55.51,46.03,8.333333333333334,1,1,0,0,10,4,5,1,910,272194.91,191593.25,142014.78,55987.617,4888.9131 -13495,16588,30019,30018,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.9750395,9.0175924,8.0430555,33,5,-6.0245738,0,3,3,2019,7,0,45,45,1,0,0,12.601191,12.601191,0,0,0,0,0,0,0,0,0,8.3105268,55.51,46.03,53.46,44.67,8.333333333333334,1,1,0,0,10,4,5,1,910,272194.91,191593.25,142014.78,55987.617,4888.9131 -13495,16589,30020,-9,30018,30019,1,0,23,0,0,0,2,2,-9,0,4,7.8061852,7.5866194,0,0,0,-985.3197,0,3,3,2019,5,0,42,42,1,0,1,7.0257235,7.0257235,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,311,144397.17,0,0,0,1603.4301 -13495,16590,30021,-9,30018,30019,1,1,23,0,0,0,2,2,-9,0,4,7.9831848,7.7501345,0,0,0,-1061.6744,0,3,3,2019,10,0,44,44,1,1,1,6.3376975,6.3376975,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,7,4,3,1,681,350603.59,0,0,0,948.49988 -13496,16591,30022,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.6295476,7.7125359,0,0,-1052.4325,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.4994049,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,406,924231.13,167010.73,333635.19,0,2062.9158 -13497,16592,30023,30024,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,3,3,-124.0759,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,2.2690187,0,0,1,1,0,3.7661855,0,58.09,32.73,65,34.83,8.333333333333334,1,1,0,0,0,4,2,1,378,444881.94,132937.14,58136.641,0,2311.6128 -13497,16592,30024,30023,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.6990318,6.912467,3,-3,24.924858,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.3469257,6.850913,65,34.83,58.09,32.73,8.333333333333334,1,1,0,0,0,4,2,1,378,444881.94,132937.14,58136.641,0,2311.6128 -13498,16593,30025,-9,30026,-9,1,1,5,1,7,1,3,0,-9,0,4,0,0,0,0,0,-945.51074,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16593,30026,-9,-9,-9,1,0,41,1,7,0,3,3,-9,0,3,0,0,0,0,0,-975.87897,0,3,3,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,3.333333333333333,1,1,0,1,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16593,30027,-9,30026,-9,1,1,12,1,7,1,3,0,-9,0,5,0,0,0,0,0,-1022.6348,-9,3,-9,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16593,30028,-9,30026,-9,1,0,14,1,7,1,3,0,-9,0,3,0,0,0,0,0,-904.62421,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,5,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16593,30029,-9,30026,-9,1,0,16,1,7,1,2,0,-9,0,4,0,0,0,0,0,-1066.28,-9,3,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,8.333333333333334,4,5,0,0,13,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16593,30030,-9,30026,-9,1,1,10,1,7,1,3,0,-9,0,3,0,0,0,0,0,-998.64764,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16593,30031,-9,30026,-9,1,0,2,1,7,1,3,0,-9,0,4,0,0,0,0,0,-988.69501,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16593,30032,-9,30026,-9,1,1,6,1,7,1,3,0,-9,0,4,0,0,0,0,0,-944.06085,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,712.25,44390.574,0,0,0,1399.7456 -13498,16594,30033,-9,30026,-9,1,0,23,1,7,0,2,2,-9,0,5,0,0,0,0,0,-1048.3553,0,3,-9,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,-9,-9,8.333333333333334,4,5,1,1,0,8,1,0,596,-88262.914,0,0,0,0 -13498,16594,30034,-9,30033,-9,1,1,5,1,7,1,3,0,-9,0,4,0,0,0,0,0,-1146.1735,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,1,0,596,-88262.914,0,0,0,0 -13498,16595,30035,-9,30026,-9,1,1,21,1,7,0,2,2,-9,0,5,0,0,0,0,0,-1023.833,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,4,5,1,1,0,8,1,0,391,0,0,0,0,0 -13498,16596,30036,-9,30026,-9,1,1,19,1,7,0,2,2,-9,0,5,7.6750073,7.4469805,0,0,0,-940.00214,0,3,-9,2019,6,0,40,0,1,0,1,4.9511294,4.9511294,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,6.666666666666667,4,5,0,1,1,8,3,0,323,-109670.3,0,0,0,757.77747 -13498,16597,30037,-9,30026,-9,1,1,18,1,7,0,3,3,-9,0,5,4.7877436,4.9658918,0,0,0,-1021.9513,0,3,-9,2019,8,0,40,0,1,0,1,.35408825,.35408825,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,5,4,5,0,0,1,8,2,0,1105,-39302.68,0,0,0,131.74422 -13499,16598,30038,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.2369595,8.51443,0,0,0,-828.85229,0,3,2,2019,21,9,39,39,1,9,0,13.885152,13.885152,0,0,0,0,0,0,0,0,0,0,21.04,51.71,-9,-9,1.666666666666667,1,1,0,0,9,7,4,0,169,381439.81,54649.16,0,0,1113.1123 -13500,16599,30039,-9,30040,30041,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.1529,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 -13500,16599,30040,30041,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.0432358,7.1591992,0,22,4,77.881981,0,2,2,2019,23,9,16,15,1,9,0,10.239069,10.239069,0,0,0,0,0,1,1,0,0,0,36.79,56.27,54.2,57.49,3.333333333333333,1,1,0,0,13,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 -13500,16599,30041,30040,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.8830681,8.690012,0,22,-4,-24.639071,0,2,2,2019,11,0,35,35,1,0,0,17.413942,17.413942,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.79,56.27,8.333333333333334,1,1,0,0,13,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 -13500,16599,30042,-9,30040,30041,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.8324,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1488.25,510003.31,277217.75,314829.88,127240.27,2692.9648 -13501,16600,30043,30044,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.9059944,7.7818747,0,15,0,45.848362,0,3,3,2019,7,0,36,37,1,0,0,10.266851,10.266851,0,0,0,0,14.5,0,0,0,.3149814,0,61.01,53.18,55.79,52.62,6.666666666666667,1,1,0,0,9,10,4,1,1672.5,752515.5,6316.9531,162612.72,-1015.8995,2517.519 -13501,16600,30044,30043,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.2653732,8.1214752,0,15,0,-39.70808,0,3,3,2019,6,0,38,38,1,0,0,9.8091669,9.8091669,0,0,0,0,0,0,0,0,7.2463245,0,55.79,52.62,61.01,53.18,5,1,1,0,1,11,10,4,1,1672.5,752515.5,6316.9531,162612.72,-1015.8995,2517.519 -13502,16601,30045,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,6.135335,5.8232903,0,0,-1155.2516,0,-9,-9,2019,16,5,0,0,4,5,0,0,0,1,0,0,0,2,1,1,0,0,5.7989774,37.89,64.09999999999999,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,994,258903.84,25288.422,133547.47,0,1318.8672 -13503,16602,30046,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1035.3173,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,7,1,1,0,0,0,2,1,1,2946,-206210.67,0,0,0,1032.704 -13504,16603,30047,30048,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.3094177,8.0999146,0,8,-4,-16.008984,0,2,2,2019,6,0,50,50,1,0,0,6.6121058,6.6121058,0,0,0,0,0,0,0,0,0,0,63.06,53.47,49.35,59.64,8.333333333333334,1,1,0,0,8,4,4,1,2790.5,371849.06,101942.66,202090.63,130131.88,2896.9443 -13504,16603,30048,30047,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.0465221,7.9105086,0,8,4,-43.006851,0,2,2,2019,11,0,43,45,1,0,0,10.161421,10.161421,0,0,0,0,0,0,0,0,0,0,49.35,59.64,63.06,53.47,8.333333333333334,1,1,0,0,9,4,4,1,2790.5,371849.06,101942.66,202090.63,130131.88,2896.9443 -13505,16604,30049,30052,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.7838473,7.5364552,0,9,2,41.646019,0,-9,2,2019,17,5,14,17,1,5,0,17.660168,17.660168,0,0,0,0,0,1,1,0,0,0,30.59,46.88,43.73,59.7,6.666666666666667,1,1,0,0,10,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 -13505,16604,30050,-9,30049,30052,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.03827,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 -13505,16604,30051,-9,30049,30052,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.88501,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 -13505,16604,30052,30049,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,8.6256132,8.7207489,0,9,-2,-46.512207,0,-9,-9,2019,10,0,45,35,1,0,0,15.526322,15.526322,0,0,0,0,0,1,1,0,5.8770294,0,43.73,59.7,30.59,46.88,8.333333333333334,1,1,0,0,8,12,4,1,697.25,190749.69,12252.371,0,0,3508.5417 -13506,16605,30053,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.6095929,4.437192,0,0,-996.93414,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4998136,4.8847551,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,261,118967.84,46597.758,89745.641,0,845.34778 -13507,16606,30054,-9,-9,-9,1,0,22,0,2,0,2,2,-9,0,4,7.6715345,7.5848274,0,0,0,-889.30573,0,1,2,2019,8,0,40,40,1,0,1,5.4011054,5.4011054,0,0,0,0,0,1,1,0,2.1219962,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,451,442805.72,0,0,0,788.96442 -13508,16607,30055,30056,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.6027474,7.6854296,0,47,-5,-87.947563,0,3,3,2019,11,0,35,36,1,2,0,4.988543,4.988543,0,0,0,0,0,1,1,0,4.9639149,0,50,47,62.66,52.4,7,2,3,0,0,1,5,3,1,1108.5,444412.94,72682.656,155397.41,0,1399.7457 -13508,16607,30056,30055,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.979558,5.9792814,47,5,-42.935722,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5069389,5.7939467,62.66,52.4,50,47,10,2,3,0,0,6,5,3,1,1108.5,444412.94,72682.656,155397.41,0,1399.7457 -13509,16608,30057,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.0488491,8.0090103,0,0,0,-1084.1721,0,2,2,2019,10,0,38,37,1,1,1,8.1196918,8.1196918,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,4,1,2204,228801.52,20815.73,0,0,1301.1456 -13510,16609,30058,-9,30059,30060,1,0,16,0,1,1,2,0,0,0,4,0,0,0,0,0,-1031.3031,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,410.33334,205227.38,12224.353,145409.61,0,2207.5046 -13510,16609,30059,30060,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.7050223,8.011199,0,9,-2,21.436188,0,2,2,2019,20,9,40,40,1,9,0,7.0612259,7.0612259,0,0,0,0,0,1,1,0,0,0,33.12,61.85,57.16,56.15,6.666666666666667,1,1,0,0,10,12,4,1,410.33334,205227.38,12224.353,145409.61,0,2207.5046 -13510,16609,30060,30059,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.04564,8.1799574,0,9,2,60.781593,0,2,3,2019,6,0,35,35,1,0,0,10.307634,10.307634,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.12,61.85,8.333333333333334,1,1,0,0,10,12,4,1,410.33334,205227.38,12224.353,145409.61,0,2207.5046 -13510,16610,30061,-9,30059,30060,1,1,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-887.25824,-9,2,2,2019,19,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,31.77,61.1,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,1916,262352.47,0,0,0,0 -13510,16611,30062,-9,30059,30060,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1032.2388,-9,2,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,26.72,59.49,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,178,213828.42,0,0,0,0 -13511,16612,30063,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1095.7144,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8739491,0,55.92,36.72,-9,-9,5,1,1,0,0,4,7,1,1,336,748942.75,0,604796.94,0,882.39612 -13512,16613,30064,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,7.5047097,7.4460144,0,0,-957.71265,-9,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,24.612865,0,0,1,1,0,2.9127445,7.3402543,60.7,19.46,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,3344,232605.92,-25081.354,0,0,2367.0242 -13512,16614,30065,-9,30064,-9,1,1,43,0,0,0,3,3,-9,0,3,8.0841246,8.1681976,0,0,0,-952.76587,-9,2,3,2019,12,0,40,0,1,0,0,10.846842,10.846842,0,0,0,0,27,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,11,10,4,1,321,66691.609,146028.19,154615.66,353504.56,1404.1787 -13513,16615,30066,30067,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,6.7851295,6.3721128,0,8,7,-32.009834,0,3,3,2019,12,0,42,1,1,0,0,1.768648,1.768648,0,0,0,0,7,0,0,0,0,0,48.18,61.8,54.26,50.74,8.333333333333334,1,1,0,0,9,11,5,1,1298.5,2491587.5,2127885,489192.31,293145.81,5685.8652 -13513,16615,30067,30066,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,9.6350279,9.5510941,0,8,-7,-37.751526,0,1,1,2019,12,3,40,60,1,3,0,47.105549,47.105549,0,0,0,0,0,0,0,0,0,0,54.26,50.74,48.18,61.8,8.333333333333334,1,1,0,0,9,11,5,1,1298.5,2491587.5,2127885,489192.31,293145.81,5685.8652 -13514,16616,30068,30070,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.9316092,8.8697901,0,8,3,-9.914691,0,2,3,2019,11,0,43,43,1,0,0,16.478415,16.478415,0,0,0,0,0,1,1,0,2.5539629,0,46.71,50.27,54.97,47.63,8.333333333333334,1,1,0,0,9,9,5,1,1039.6666,454445.91,-20348.141,616328.69,29762.469,3816.2905 -13514,16616,30069,-9,30070,30068,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1075.2283,-9,2,2,2019,26,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,2.6534753,0,23.98,60.58,-9,-9,1.666666666666667,1,1,0,0,0,9,5,1,1039.6666,454445.91,-20348.141,616328.69,29762.469,3816.2905 -13514,16616,30070,30068,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8231039,7.8534665,0,8,-3,30.801172,0,2,2,2019,11,0,25,25,1,0,0,6.5948968,6.5948968,0,0,0,0,0,1,1,0,2.7593143,0,54.97,47.63,46.71,50.27,6.666666666666667,1,1,0,0,9,9,5,1,1039.6666,454445.91,-20348.141,616328.69,29762.469,3816.2905 -13515,16617,30071,30073,-9,-9,1,0,46,0,2,0,3,3,-9,0,2,6.7021999,7.0227818,6.8021822,6,0,6.6101594,0,1,1,2019,11,0,8,6,1,0,0,13.271327,13.271327,0,0,0,0,0,1,1,0,6.9633074,0,52.64,49.14,40.32,53.3,6.666666666666667,1,1,0,0,2,10,3,1,373.66666,58869.566,182631.25,0,0,2754.1326 -13515,16617,30072,-9,30071,30073,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.593,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,373.66666,58869.566,182631.25,0,0,2754.1326 -13515,16617,30073,30071,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.3175783,8.4301472,0,6,9,-52.062866,0,2,2,2019,16,4,37,40,1,4,0,9.9832964,9.9832964,0,0,0,0,0,1,1,0,0,0,40.32,53.3,52.64,49.14,8.333333333333334,1,1,0,0,7,10,3,1,373.66666,58869.566,182631.25,0,0,2754.1326 -13516,16618,30074,30075,-9,-9,1,1,60,0,0,0,1,1,-9,0,1,0,0,0,1,5,0,-9,-9,-9,2019,24,11,0,0,4,11,0,0,0,0,0,0,0,5.48,1,1,0,0,0,35.53,19.08,38.71,28.47,8.333333333333334,1,1,0,0,0,6,1,0,2628.5,682607.25,359316.75,121549.89,0,1401.9492 -13516,16618,30075,30074,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,25,-5,0,-9,3,3,2019,22,11,0,0,3,11,0,0,0,0,0,0,0,5.48,1,1,0,0,0,38.71,28.47,35.53,19.08,6.666666666666667,1,1,1,0,0,6,1,0,2628.5,682607.25,359316.75,121549.89,0,1401.9492 -13517,16619,30076,-9,30079,30078,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.07349,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 -13517,16619,30077,-9,30079,30078,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.81824,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 -13517,16619,30078,30079,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.8507948,9.2062092,0,10,1,-115.22227,0,2,2,2019,10,0,62,57,1,0,0,12.073636,12.073636,0,0,0,1.1271981,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 -13517,16619,30079,30078,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.9873443,7.992053,0,10,-1,-102.67638,0,2,2,2019,6,0,41,30,1,0,0,8.1211262,8.1211262,0,0,0,0,0,1,1,0,2.5770788,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,0,758.5,456544.88,138024.27,570179.31,247573.5,3458.0654 -13518,16620,30080,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,4.7675667,4.5771046,0,0,-806.05896,0,-9,-9,2019,24,11,0,15,4,11,0,0,0,0,0,0,0,0,1,1,0,1.7721515,4.465488,33.07,36.42,-9,-9,0,1,1,0,1,9,7,2,0,281,223250.13,27520.74,0,0,111.49667 -13519,16621,30081,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2387056,8.1088772,0,0,0,-1043.0723,0,-9,-9,2019,10,0,42,45,1,0,0,8.6530495,8.6530495,0,0,0,0,0,0,0,0,3.0404649,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,11,4,0,78,-2205.7366,57253.441,0,0,1628.5875 -13520,16622,30082,-9,30085,30084,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.6297,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 -13520,16622,30083,-9,30085,30084,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.3522,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 -13520,16622,30084,30085,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.9583502,9.2507067,0,7,3,65.376907,0,-9,-9,2019,2,0,40,45,1,0,0,23.579826,23.579826,0,0,0,0,0,1,1,0,8.0038452,0,60.12,54.8,53.39,38.46,8.333333333333334,1,1,0,0,8,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 -13520,16622,30085,30084,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,7.0037265,6.9393239,0,7,-3,-138.83846,0,-9,-9,2019,6,0,15,35,1,0,0,9.6931648,9.6931648,0,0,0,0,0,1,1,0,2.9949021,0,53.39,38.46,60.12,54.8,8.333333333333334,1,1,0,0,4,9,4,1,778.25,348857.81,99163.391,734943.38,379000.34,4478.8867 -13521,16623,30086,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1012.6915,0,1,1,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.66,48.98,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,323,78973.633,0,0,0,1492.1074 -13521,16624,30087,-9,30086,-9,1,0,30,0,0,0,1,1,-9,0,3,7.3505864,7.3431911,0,0,0,-1056.8761,0,1,1,2019,4,0,24,8,1,0,0,8.6088648,8.6088648,0,0,0,0,0,1,1,0,0,0,34.4,51.91,-9,-9,10,1,1,0,0,2,8,3,1,769,295575.66,0,0,0,479.08496 -13522,16625,30088,30089,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,7.2791009,7.4768586,0,18,-10,-115.99136,0,3,3,2019,7,0,12,12,1,0,0,19.393902,19.393902,0,0,0,0,0,1,1,0,5.4099493,0,55.19,54.26,56.82,51,8.333333333333334,1,1,0,0,9,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 -13522,16625,30089,30088,-9,-9,1,1,58,0,3,0,1,1,-9,0,5,5.9132118,6.0311375,0,12,10,56.279869,0,2,3,2019,9,0,20,20,1,0,0,2.3721387,2.3721387,0,0,0,0,0,1,1,0,0,0,56.82,51,55.19,54.26,8.333333333333334,1,1,0,0,9,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 -13522,16625,30090,-9,30088,30089,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.77911,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 -13522,16625,30091,-9,30088,30089,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.0605,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 -13522,16625,30092,-9,30088,30089,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.2977,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,381.20001,546702.56,93810.93,406398.88,163658.95,1274.0819 -13523,16626,30093,-9,30095,30094,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5905,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,434,391234.44,347833.09,380974.78,100728.59,3420.9895 -13523,16626,30094,30095,-9,-9,1,1,43,0,1,0,3,3,-9,0,3,8.7359762,8.7651997,0,8,6,155.5025,0,2,2,2019,9,0,51,55,1,0,0,12.893467,12.893467,0,0,0,0,0,1,1,0,0,0,52,54.51,42.24,52.48,8.333333333333334,1,1,0,0,10,10,4,1,434,391234.44,347833.09,380974.78,100728.59,3420.9895 -13523,16626,30095,30094,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.0815802,8.110631,0,8,-6,142.11255,0,2,2,2019,17,4,45,30,1,4,0,7.9107041,7.9107041,0,0,0,0,0,1,1,0,0,0,42.24,52.48,52,54.51,3.333333333333333,1,1,0,0,7,10,4,1,434,391234.44,347833.09,380974.78,100728.59,3420.9895 -13524,16627,30096,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,4.2231045,4.3068137,0,0,-966.30005,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,8.9834909,0,0,1,1,0,0,4.0832372,71.21000000000001,10.55,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,365,-282731.72,36528.797,0,0,818.10779 -13525,16628,30097,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1005.5504,0,3,2,2019,6,0,0,33,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.86,30.99,-9,-9,8.333333333333334,1,1,1,0,3,7,1,0,211,-201063.61,0,75844.531,0,124.99453 -13526,16629,30098,-9,30102,30103,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-927.72406,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 -13526,16629,30099,-9,30102,30103,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1115.5729,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 -13526,16629,30100,-9,30102,30103,1,1,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-1034.1594,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,3,4,0,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 -13526,16629,30101,-9,30102,30103,1,1,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-904.34021,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 -13526,16629,30102,30103,-9,-9,1,0,42,0,4,0,2,2,-9,0,4,0,0,0,8,-5,45.494156,0,3,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,52,55,8,3,4,0,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 -13526,16629,30103,30102,-9,-9,1,1,47,0,4,0,3,3,-9,0,4,9.7122355,9.6969976,0,8,5,30.03018,0,2,2,2019,9,0,25,26,1,1,0,60.76791,60.76791,0,0,0,0,7,1,1,0,0,0,52,55,49,55,8,3,4,0,1,10,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 -13526,16629,30104,-9,30102,30103,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.4506,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,0,563.71429,1804386.3,678312.69,701096,0,6233.4585 -13526,16630,30105,-9,30102,30103,1,0,19,0,4,1,2,0,0,0,4,0,0,0,0,0,-1098.6329,-9,2,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,0,8,1,0,187,91199.906,0,0,0,0 -13527,16631,30106,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1040.0591,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,28.45,37.1,-9,-9,1.666666666666667,2,3,1,0,0,8,2,0,816,285852.84,24544.449,0,0,1286.6604 -13528,16632,30107,30108,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.7620273,7.906281,0,3,-7,-60.320332,0,-9,-9,2019,8,0,42,44,1,0,0,7.6164284,7.6164284,0,0,0,0,0,1,1,0,.16557918,0,42.04,56.46,52.4,52.91,6.666666666666667,1,1,0,0,5,9,4,0,1657.3334,276963.25,149056.55,501418.16,209175.81,1994.5386 -13528,16632,30108,30107,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.0376492,7.9410329,0,3,7,-22.710423,0,-9,-9,2019,7,0,39,39,1,0,0,10.01631,10.01631,0,0,0,0,0,1,1,0,.97806817,0,52.4,52.91,42.04,56.46,5,1,1,0,0,1,9,4,0,1657.3334,276963.25,149056.55,501418.16,209175.81,1994.5386 -13528,16632,30109,-9,30107,30108,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.5657,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,1657.3334,276963.25,149056.55,501418.16,209175.81,1994.5386 -13529,16633,30110,30111,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.6467781,7.0023551,58,-2,-13.308911,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7343497,57.16,56.15,66.47,43.77,10,1,1,0,0,0,6,2,1,678,313589.88,100388.29,189756.91,0,1557.4746 -13529,16633,30111,30110,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,58,2,57.810764,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4474807,0,66.47,43.77,57.16,56.15,6.666666666666667,1,1,0,0,0,6,2,1,678,313589.88,100388.29,189756.91,0,1557.4746 -13530,16634,30112,30114,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.3963513,7.8036056,0,7,-5,-2.9708405,0,2,-9,2019,8,0,27,31,1,0,0,10.273298,10.273298,0,0,0,0,0,1,1,0,0,0,54.2,57.49,36.19,56.96,10,1,1,0,0,6,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 -13530,16634,30113,-9,30112,30114,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.6035,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 -13530,16634,30114,30112,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.6238604,8.6302395,0,7,5,9.1000166,0,3,-9,2019,21,8,40,40,1,8,0,17.349871,17.349871,0,0,0,0,0,1,1,0,0,0,36.19,56.96,54.2,57.49,3.333333333333333,1,1,0,0,8,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 -13530,16634,30115,-9,30112,30114,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.0554,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,583.75,405914.28,106003.03,213328,194824.03,3347.1516 -13531,16635,30116,30118,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,8.218257,8.6376257,0,3,6,-127.69864,0,-9,-9,2019,12,0,45,60,1,0,0,9.7468128,9.7468128,0,0,0,0,7,1,1,0,0,0,55.6,47.8,25.32,41.25,8.333333333333334,1,1,0,0,11,10,4,1,399,-43956,19071.371,0,0,2543.9116 -13531,16635,30117,-9,30118,30116,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.91595,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,4,1,399,-43956,19071.371,0,0,2543.9116 -13531,16635,30118,30116,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,7.7559128,7.6357293,0,19,-6,46.645088,0,2,2,2019,23,11,26,26,1,11,0,7.9230466,7.9230466,0,0,0,0,7,1,1,0,0,0,25.32,41.25,55.6,47.8,3.333333333333333,1,1,0,0,11,10,4,1,399,-43956,19071.371,0,0,2543.9116 -13531,16636,30119,-9,30118,30116,1,1,19,0,1,0,2,2,-9,0,4,6.9209132,6.8927169,0,0,0,-1003.0877,0,2,2,2019,6,1,21,0,1,1,1,5.8432693,5.8432693,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,612,469863.84,-78540.695,0,0,242.13632 -13531,16637,30120,-9,30118,30116,1,1,18,0,1,0,2,2,1,0,4,6.9308681,6.816659,0,0,0,-1081.0812,-9,2,2,2019,13,1,16,0,1,1,1,6.6985683,6.6985683,0,0,0,0,0,1,1,0,2.1886158,0,47.62,56.48,-9,-9,5,1,1,0,0,1,10,2,1,512,255239.98,42288.449,0,0,416.00119 -13532,16638,30121,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,8.4717913,8.4432459,0,0,-1021.652,0,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.1920233,8.3720675,46.1,40.59,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,854,1315679.9,577075.06,335895.38,0,2540.1587 -13533,16639,30122,30123,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.6835055,7.5917802,44,-2,-97.711723,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.9428549,7.5678668,53.81,53.56,63.56,36.87,8.333333333333334,1,1,0,0,8,9,4,1,1108,1203914.8,754677.63,504906.63,0,4134.5947 -13533,16639,30123,30122,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.920362,8.4312115,44,2,-36.210888,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,7.584394,7.9455867,63.56,36.87,53.81,53.56,10,1,1,0,0,8,9,4,1,1108,1203914.8,754677.63,504906.63,0,4134.5947 -13534,16640,30124,-9,30126,30125,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.51135,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,6,4,1,1017,469596.66,77515.211,251978.31,92255.711,5272.4331 -13534,16640,30125,30126,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.0469618,8.3131704,0,17,5,33.954552,0,3,3,2019,18,7,60,55,1,7,0,5.3205509,5.3205509,0,0,0,0,7,1,1,0,8.3368196,0,31.21,48.06,28.88,53,3.333333333333333,2,3,0,0,11,6,4,1,1017,469596.66,77515.211,251978.31,92255.711,5272.4331 -13534,16640,30126,30125,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.2784262,8.5492344,0,17,-5,-153.33739,0,3,3,2019,22,8,38,38,1,8,0,14.735193,14.735193,0,0,0,0,0,1,1,0,0,0,28.88,53,31.21,48.06,5,2,3,0,0,13,6,4,1,1017,469596.66,77515.211,251978.31,92255.711,5272.4331 -13535,16641,30127,30128,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,41,-3,-100.31081,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,47.63,45.75,45.75,29.22,8.333333333333334,1,1,0,0,6,12,2,1,652,314739.19,116824.88,0,0,1232.9542 -13535,16641,30128,30127,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,5.6676507,5.9022789,30,3,70.817436,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6784618,5.6367106,45.75,29.22,47.63,45.75,5,1,1,0,0,7,12,2,1,652,314739.19,116824.88,0,0,1232.9542 -13536,16642,30129,30132,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.0614948,7.782917,0,7,-3,6.0562038,0,-9,-9,2019,17,5,35,35,1,5,0,9.3365011,9.3365011,0,0,0,0,0,1,1,0,0,0,32.87,45.28,25.63,50.7,1.666666666666667,1,1,0,0,7,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 -13536,16642,30130,-9,30132,30129,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.5016,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 -13536,16642,30131,-9,30132,30129,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.4741,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 -13536,16642,30132,30129,30133,-9,1,0,32,0,2,0,2,2,-9,0,2,6.6299901,6.9854565,0,7,3,13.418064,0,2,-9,2019,23,10,17,17,1,10,0,7.5458374,7.5458374,0,0,0,0,0,1,1,0,0,0,25.63,50.7,32.87,45.28,5,1,1,0,0,7,7,3,1,1692.25,-59098.625,-28897.311,0,0,1960.5338 -13536,16643,30133,-9,-9,-9,1,0,60,0,2,0,2,2,-9,0,2,8.3266068,7.9640431,0,0,0,-1041.5154,0,2,2,2019,5,0,37,37,1,0,0,9.9524231,9.9524231,0,0,0,0,0,1,1,0,0,0,58.74,40.91,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,603,2029767,1882251.1,391048.84,13220.27,754.97552 -13537,16644,30134,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.3610373,8.5215912,0,0,0,-1134.8138,0,-9,-9,2019,9,0,49,45,1,0,0,11.476176,11.476176,0,0,0,0,0,0,0,0,3.4170086,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,182,356411.34,303341.75,239488.77,38850.773,2435.1353 -13538,16645,30135,30136,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.2363262,8.1326904,0,8,-5,134.3549,0,2,2,2019,8,1,42,40,1,1,0,9.2856464,9.2856464,0,0,0,0,0,0,0,0,6.2972775,0,57.33,37.4,56.75,28.3,5,1,1,0,0,9,10,4,1,769,1549347,1259762.1,260140.47,31963.082,2379.8442 -13538,16645,30136,30135,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.4223785,7.571599,0,8,5,30.209019,0,-9,-9,2019,12,1,26,25,1,1,0,8.2674265,8.2674265,0,0,0,0,0,0,0,0,2.586128,0,56.75,28.3,57.33,37.4,8.333333333333334,1,1,0,0,9,10,4,1,769,1549347,1259762.1,260140.47,31963.082,2379.8442 -13539,16646,30137,30138,-9,-9,1,0,43,0,0,0,2,2,-9,1,4,0,0,0,23,-12,-71.907944,0,2,-9,2019,17,6,0,42,3,6,0,0,0,0,0,0,0,2,1,1,0,1.267481,0,51.65,38.47,47.9,46.66,6.666666666666667,1,1,0,0,10,5,4,1,225,797860.63,312332.28,74925.359,0,1729.496 -13539,16646,30138,30137,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.4991522,8.4497404,0,23,12,-111.51112,0,-9,-9,2019,12,0,40,47,1,0,0,17.141684,17.141684,0,0,0,0,2,1,1,0,.77366424,0,47.9,46.66,51.65,38.47,6.666666666666667,1,1,0,0,10,5,4,1,225,797860.63,312332.28,74925.359,0,1729.496 -13539,16647,30139,-9,30137,30138,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1005.3289,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,.1161129,0,54.61,51.04,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,1508,-196738.27,0,0,0,-335.87292 -13540,16648,30140,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,1,8.0764217,8.1106558,0,0,0,-1155.2322,0,2,-9,2019,23,11,32,37,1,11,0,10.956938,10.956938,0,0,0,0,0,0,0,0,0,0,30.96,34.8,-9,-9,3.333333333333333,1,1,0,0,6,9,4,1,1335,439577.19,0,0,0,1279.5393 -13540,16649,30141,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,8.0649538,8.1645432,0,0,-1012.0651,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,0,0,0,1.6663696,8.1239109,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1439,1161074.9,579639.88,142174.42,0,976.51697 -13541,16650,30142,-9,30144,-9,1,1,10,1,2,1,3,0,-9,0,3,0,0,0,0,0,-1016.6284,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,2,0,382,-82519.813,0,0,0,1760.8785 -13541,16650,30143,-9,30144,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.4302,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,0,382,-82519.813,0,0,0,1760.8785 -13541,16650,30144,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,2,0,6.1431222,6.4529462,0,0,-1001.9185,0,3,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,6.1836472,0,43.95,34.51,-9,-9,3.333333333333333,1,1,0,0,6,7,2,0,382,-82519.813,0,0,0,1760.8785 -13542,16651,30145,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8868594,6.71908,0,0,-998.79108,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6685643,7.3357716,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,1922,389756.41,24869.934,189271.3,0,902.15234 -13543,16652,30146,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5581036,7.4586587,0,0,-1026.5172,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2356124,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,133,170051.69,215117.33,390331.81,0,1150.4413 -13544,16653,30147,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-974.88593,0,-9,-9,2019,11,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,5,4,2,1,0,5,8,1,0,2382,196904.44,0,0,0,403.61667 -13545,16654,30148,-9,30149,30150,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.3123,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 -13545,16654,30149,30150,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,21,0,-19.072552,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,53.14,51.28,1.666666666666667,1,1,0,0,0,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 -13545,16654,30150,30149,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.7302856,9.6653194,0,21,0,-76.756783,0,2,3,2019,10,0,45,45,1,0,0,39.853157,39.853157,0,0,0,0,0,0,0,0,0,0,53.14,51.28,58.15,52.91,3.333333333333333,1,1,0,0,10,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 -13545,16654,30151,-9,30149,30150,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-972.77393,-9,2,1,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37.65,65.37,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,1240,960485.63,536637.44,343094.31,36162.699,5891.2349 -13546,16655,30152,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.51263,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,32.33,27.68,-9,-9,3.333333333333333,1,1,1,1,2,9,1,0,851,101202.68,143134.08,0,0,237.37602 -13547,16656,30153,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.4805775,6.9717021,0,0,-1056.3715,-9,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7332182,53.18,54.04,-9,-9,10,3,4,0,0,8,2,2,0,828,324414.19,593674.69,45720.27,0,1654.0428 -13548,16657,30154,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,6.602253,6.8845091,0,0,0,-992.35242,0,3,3,2019,8,0,13,0,1,0,0,7.3719192,7.3719192,0,0,0,0,0,0,0,0,0,0,56.2,35.43,-9,-9,10,1,1,0,0,1,2,2,0,359,-113616.93,-7509.9639,0,0,-224.30325 -13548,16658,30155,-9,-9,30154,1,1,26,0,0,0,2,2,-9,0,3,7.0519652,7.3184671,0,0,0,-1034.0789,0,1,3,2019,13,1,37,28,1,1,1,4.0596919,4.0596919,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,6.666666666666667,1,1,0,0,3,2,3,0,1389,-376506.59,0,0,0,266.75754 -13549,16659,30156,30158,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.3344908,8.3096142,0,7,-3,-73.687294,0,-9,-9,2019,12,0,45,40,1,0,0,12.488723,12.488723,0,0,0,0,0,1,1,0,0,0,57.73,54.53,32.65,59.14,8.333333333333334,1,1,0,0,7,12,5,1,1003.6667,-146456.48,60283.297,228621.94,157729.94,3907.3616 -13549,16659,30157,-9,30156,30158,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.32471,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1003.6667,-146456.48,60283.297,228621.94,157729.94,3907.3616 -13549,16659,30158,30156,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.8293972,8.7193031,0,7,3,-22.988754,0,2,2,2019,11,0,42,38,1,0,0,19.123098,19.123098,0,0,0,0,0,1,1,0,6.2269573,0,32.65,59.14,57.73,54.53,8.333333333333334,1,1,0,0,8,12,5,1,1003.6667,-146456.48,60283.297,228621.94,157729.94,3907.3616 -13550,16660,30159,30161,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.34869,9.0966148,0,5,-2,52.758789,0,-9,-9,2019,16,5,38,40,1,5,0,33.369251,33.369251,0,0,0,0,0,0,0,0,.13641518,0,36.83,58.53,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,851,474006.38,381412.72,0,0,4897.6504 -13550,16660,30160,-9,30161,30159,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2602,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,851,474006.38,381412.72,0,0,4897.6504 -13550,16660,30161,30159,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.5969744,8.653141,0,5,2,-78.822083,0,2,2,2019,8,1,39,39,1,1,0,17.24964,17.24964,0,0,0,0,0,0,0,0,.25550699,0,54.79,55.86,36.83,58.53,10,1,1,0,0,6,9,5,1,851,474006.38,381412.72,0,0,4897.6504 -13551,16661,30162,-9,30164,30165,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.702,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 -13551,16661,30163,-9,30164,30165,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.81519,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 -13551,16661,30164,30165,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,8.5972214,8.0727272,0,4,-7,127.55239,0,2,2,2019,10,0,40,39,1,0,0,12.585023,12.585023,0,0,0,0,0,1,1,0,0,0,39.23,60.49,45.05,59.07,8.333333333333334,1,1,0,0,5,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 -13551,16661,30165,30164,-9,-9,1,1,40,1,2,0,2,2,-9,0,5,9.0739927,8.6308661,0,4,7,-149.34232,0,-9,-9,2019,8,0,45,40,1,0,0,17.422323,17.422323,0,0,0,0,0,1,1,0,0,0,45.05,59.07,39.23,60.49,8.333333333333334,1,1,0,0,9,11,5,1,1043,344570.69,306476.88,211989,142585.81,4222.0547 -13552,16662,30166,-9,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.1604967,8.0593052,0,0,0,-928.68799,-9,2,1,2019,11,0,40,0,1,2,1,11.476103,11.476103,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,2,8,4,0,1314,-60021.785,0,0,0,2552.1826 -13553,16663,30167,30168,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.7598462,7.4862809,44,3,5.0931363,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.8490949,0,0,1,1,0,3.4807627,7.9029999,56.51,32.06,57.16,56.15,8.333333333333334,1,1,0,0,8,5,3,1,509,617061.31,102175.18,157976.81,0,1394.6195 -13553,16663,30168,30167,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,44,-3,108.25953,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,3.256202,0,57.16,56.15,56.51,32.06,8.333333333333334,1,1,0,0,11,5,3,1,509,617061.31,102175.18,157976.81,0,1394.6195 -13553,16664,30169,-9,30168,30167,1,1,34,0,0,0,2,2,-9,0,4,7.2788582,7.3958592,0,0,0,-987.71429,0,2,2,2019,6,0,25,22,1,0,0,7.9677567,7.9677567,0,0,0,0,0,1,1,0,2.623553,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,244,91747.109,37972.602,0,0,926.78021 -13554,16665,30170,30171,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,5.4227524,5.5775414,0,38,-1,46.538052,0,2,2,2019,12,1,10,10,1,1,0,2.672235,2.672235,0,0,0,0,0,0,0,0,3.7484159,0,50.72,50.74,53.36,39.94,8.333333333333334,1,1,0,0,13,9,3,1,1121,313123.13,14188.976,363264.94,95140.984,1805.3374 -13554,16665,30171,30170,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.02952,7.8846626,0,38,1,-3.7649803,0,3,2,2019,11,0,40,40,1,0,0,12.06555,12.06555,0,0,0,0,0,0,0,0,5.6302328,0,53.36,39.94,50.72,50.74,8.333333333333334,1,1,0,0,13,9,3,1,1121,313123.13,14188.976,363264.94,95140.984,1805.3374 -13555,16666,30172,-9,30176,30175,1,1,18,0,2,0,2,2,1,0,4,5.9737067,5.9351606,0,0,0,-1063.4282,-9,1,2,2019,8,2,60,0,1,2,1,.82149506,.82149506,0,0,0,0,0,1,1,0,2.6428759,0,58.15,52.91,-9,-9,1.666666666666667,1,1,0,0,11,7,2,1,216,152856.41,0,0,0,459.90244 -13555,16667,30173,-9,30176,30175,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.22626,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 -13555,16667,30174,-9,30176,30175,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-989.84564,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 -13555,16667,30175,30176,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,6.995019,6.9200845,0,9,0,48.467525,0,-9,-9,2019,15,4,16,16,1,4,0,9.7091007,9.7091007,0,0,0,0,0,1,1,0,3.9409471,0,45.18,54.77,54.2,57.49,8.333333333333334,1,1,0,0,11,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 -13555,16667,30176,30175,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.8086185,8.7308693,0,27,0,52.122349,0,2,1,2019,9,1,26,27,1,1,0,29.026131,29.026131,0,0,0,0,2,1,1,0,0,0,54.2,57.49,45.18,54.77,8.333333333333334,1,1,0,0,9,7,4,1,1579.5,-26014.611,47397.117,0,0,2774.4155 -13556,16668,30177,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8309879,7.7690277,7.4046602,0,0,-1079.4874,0,2,1,2019,12,0,32,33,1,0,0,6.6819606,6.6819606,0,0,0,0,0,1,1,0,7.1296754,0,43.02,57.64,-9,-9,8.333333333333334,1,1,0,0,7,13,3,0,464.66666,97247.68,28128.16,73203.313,76050.359,2593.0659 -13556,16668,30178,-9,30177,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5972,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,0,464.66666,97247.68,28128.16,73203.313,76050.359,2593.0659 -13556,16668,30179,-9,30177,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.9117,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,0,464.66666,97247.68,28128.16,73203.313,76050.359,2593.0659 -13557,16669,30180,30181,-9,-9,1,1,51,1,1,0,2,2,-9,0,4,8.36304,8.2102013,0,22,0,-109.69106,0,2,2,2019,9,0,40,46,1,1,0,11.301294,11.301294,0,0,0,0,0,1,1,0,0,0,53,55,52.64,38.41,8,1,1,0,0,1,7,3,1,558,166187.03,0,286807.88,0,1644.9387 -13557,16669,30181,30180,-9,-9,1,0,51,1,1,0,2,2,-9,0,2,7.2493329,7.4786115,0,22,0,61.823807,0,2,2,2019,12,0,52,24,1,0,0,3.217,3.217,0,0,0,0,0,1,1,0,0,0,52.64,38.41,53,55,3.333333333333333,1,1,0,0,9,7,3,1,558,166187.03,0,286807.88,0,1644.9387 -13557,16670,30182,-9,30181,30180,1,1,26,1,1,0,1,1,1,0,4,7.576354,7.9699612,0,0,0,-1074.842,-9,3,1,2019,11,0,45,0,1,0,1,6.2315688,6.2315688,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,2364,275383.44,94023.273,0,0,926.78662 -13557,16671,30183,-9,30184,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.4412,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,549.5,-64791.664,0,0,0,1198.5317 -13557,16671,30184,-9,30181,30180,1,0,24,1,1,0,2,2,-9,0,3,6.7960453,6.6078968,0,0,0,-981.0708,0,2,1,2019,13,1,16,37,1,1,1,5.8744888,5.8744888,0,0,0,0,0,1,1,0,0,0,42.56,52.14,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,549.5,-64791.664,0,0,0,1198.5317 -13557,16672,30185,-9,30181,30180,1,0,18,1,1,0,2,2,1,0,4,0,0,0,0,0,-1064.3003,-9,2,2,2019,22,8,0,0,3,8,1,0,0,0,0,0,0,0,1,1,0,0,0,19.61,62.42,-9,-9,5,1,1,1,0,0,7,1,1,1298,-322285.34,0,0,0,0 -13558,16673,30186,30187,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,6.7638702,6.3024163,8,-1,58.326424,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,11.622332,0,7,1,1,0,2.4266837,6.4633031,44.39,25.77,42.86,31.98,6.666666666666667,1,1,0,0,0,6,2,0,645,535864.38,267191.97,164114.94,0,2612.5396 -13558,16673,30187,30186,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.9860158,6.3356371,8,1,-9.6436186,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,2.3375196,6.5024228,42.86,31.98,44.39,25.77,6.666666666666667,1,1,0,0,0,6,2,0,645,535864.38,267191.97,164114.94,0,2612.5396 -13559,16674,30188,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-951.59418,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1308,219571.95,0,0,0,0 -13560,16675,30189,30190,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.487668,9.556263,0,32,1,22.631048,0,3,3,2019,9,0,57,52,1,0,0,18.578915,18.578915,0,0,0,0,2,0,0,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,9,12,5,1,593.5,1089073.1,555948.31,268649.06,0,3921.207 -13560,16675,30190,30189,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.5106683,7.4382234,0,32,-1,2.1842191,0,2,2,2019,2,0,25,14,1,0,0,6.6903067,6.6903067,0,0,0,0,2,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,7,12,5,1,593.5,1089073.1,555948.31,268649.06,0,3921.207 -13560,16676,30191,-9,30190,30189,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-963.92816,1,2,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,956,312623.5,0,0,0,0 -13560,16677,30192,-9,30190,30189,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1038.5471,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,.21933591,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,4082,-286095,0,0,0,287.60172 -13561,16678,30193,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.4666233,8.2943993,0,0,0,-984.99329,0,-9,-9,2019,11,0,41,43,1,0,0,14.241319,14.241319,0,0,0,0,0,0,0,0,0,0,39.58,57.61,-9,-9,6.666666666666667,1,1,0,0,11,7,5,0,3312,-96489.453,127706.88,0,0,1665.6405 -13562,16679,30194,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8292623,7.8091569,0,0,0,-889.83411,0,2,2,2019,8,0,27,23,1,0,0,11.67771,11.67771,0,0,0,0,2,1,1,0,0,0,56.19,46.16,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,200,987726,91602.883,628273.06,0,2304.717 -13563,16680,30195,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1056.6315,0,3,3,2019,11,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,35.75,66.17,-9,-9,6.666666666666667,1,1,1,1,2,1,1,0,1765,-1844.4308,0,112018.37,0,-74.183441 -13564,16681,30196,-9,30197,-9,1,0,10,0,0,1,3,0,-9,0,5,0,0,0,0,0,-963.5014,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,3,4,-9,0,0,8,2,0,538,132945.06,0,0,0,1955.1265 -13564,16681,30197,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.7596,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,11.527201,0,0,1,1,0,0,0,55.97,23.46,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,538,132945.06,0,0,0,1955.1265 -13565,16682,30198,30199,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,55,-1,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0726206,0,65.95,34.44,42.9,43.87,10,1,1,0,0,0,4,1,1,502.5,328742.34,260954.22,49864.289,0,596.60962 -13565,16682,30199,30198,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,0,0,55,1,0,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,.66983533,0,42.9,43.87,65.95,34.44,8.333333333333334,1,1,0,0,5,4,1,1,502.5,328742.34,260954.22,49864.289,0,596.60962 -13566,16683,30200,-9,30201,30202,1,1,22,0,0,0,3,3,-9,1,1,0,0,0,0,0,-999.66547,0,1,2,2019,10,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47.97,24.31,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,346,-77839.781,0,0,0,1342.8933 -13566,16684,30201,30202,-9,-9,1,0,58,0,0,0,1,1,-9,1,5,7.183773,7.1779809,0,7,-7,-4.5138836,0,3,3,2019,7,0,30,0,1,0,0,4.8057466,4.8057466,0,0,0,0,71.5,1,1,0,0,0,49.36,58.53,52,48,8.333333333333334,1,1,0,0,3,12,3,1,341.5,413074.06,309628.63,93383.297,0,3102.6172 -13566,16684,30202,30201,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8529058,7.7086225,7,7,-14.176037,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9035099,7.5787358,52,48,49.36,58.53,7,1,1,0,0,0,12,3,1,341.5,413074.06,309628.63,93383.297,0,3102.6172 -13567,16685,30203,30204,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.7381277,8.6619339,0,25,2,-67.581749,0,-9,-9,2019,6,0,37,-9,1,0,0,16.473846,16.473846,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,2,3,0,0,10,8,4,1,771.5,1663109,1115828.6,422543,0,1573.2336 -13567,16685,30204,30203,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,2,-2,-35.280682,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,2,3,0,0,0,8,4,1,771.5,1663109,1115828.6,422543,0,1573.2336 -13567,16686,30205,-9,30204,30203,1,1,26,0,0,0,2,2,-9,0,4,7.5255046,7.7960238,0,0,0,-1073.9891,0,3,3,2019,3,0,47,0,1,0,1,3.561837,3.561837,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,1,8,3,1,406,55146.398,69788.289,0,0,1056.9689 -13568,16687,30206,30207,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,52,0,104.11272,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2582459,0,62.28,45.64,59.29,49.68,10,1,1,0,0,0,10,3,1,224.5,654528.69,444935.31,310626.38,0,2571.2012 -13568,16687,30207,30206,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.0137119,8.266716,52,0,-41.896187,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.6195835,8.0976887,59.29,49.68,62.28,45.64,10,1,1,0,0,0,10,3,1,224.5,654528.69,444935.31,310626.38,0,2571.2012 -13569,16688,30208,-9,-9,-9,1,0,29,0,0,0,1,1,1,0,4,8.4831381,8.3776541,0,0,0,-993.51453,-9,2,-9,2019,9,0,40,0,1,0,1,14.739557,14.739557,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,3,8,5,1,799,-491822.44,89076.258,0,0,1709.1486 -13570,16689,30209,30210,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,6,3,-70.306297,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.8037186,0,52,47,43.54,59.6,7,1,1,0,0,0,13,2,1,1098,-109353.09,5798.2207,0,0,2438.0293 -13570,16689,30210,30209,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.2393312,7.0710979,0,6,-3,122.23315,0,3,3,2019,6,0,14,14,1,0,0,10.833193,10.833193,0,0,0,0,2,1,1,0,0,0,43.54,59.6,52,47,8.333333333333334,1,1,0,0,7,13,2,1,1098,-109353.09,5798.2207,0,0,2438.0293 -13571,16690,30211,-9,-9,-9,1,0,29,0,0,0,2,2,-9,1,3,7.3592224,7.4810696,0,0,0,-927.98303,0,3,1,2019,14,4,39,37,1,4,0,6.6184993,6.6184993,0,0,0,0,0,1,1,0,0,0,34.81,44.78,-9,-9,5,1,1,0,0,8,5,3,0,264,268900.69,0,0,0,1796.6997 -13572,16691,30212,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.3031259,7.310936,0,0,-1072.9863,0,3,-9,2019,19,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,7.4804797,56.35,24.37,-9,-9,1.666666666666667,1,1,0,0,0,4,3,1,414,484319.5,417079.09,12949.028,0,1530.2991 -13573,16692,30213,30214,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,7,-1,-84.011772,0,-9,-9,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,6.1220856,0,63.41,29.17,57.33,53.46,10,1,1,0,0,2,5,2,1,899,308647.22,283715.19,0,0,843.97559 -13573,16692,30214,30213,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,6.7451119,6.7025161,7,1,29.702812,0,3,2,2019,10,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,7.5043159,7.023262,57.33,53.46,63.41,29.17,6.666666666666667,1,1,0,0,8,5,2,1,899,308647.22,283715.19,0,0,843.97559 -13574,16693,30215,30216,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.6860371,8.5406027,0,9,0,79.006104,0,3,3,2019,5,0,39,47,1,0,0,16.07151,16.07151,0,0,0,0,0,1,1,0,0,0,59.48,33.77,38.32,41.37,1.666666666666667,1,1,0,0,10,7,4,1,359.66666,940809.94,62517.973,428391.31,60090.438,2088.312 -13574,16693,30216,30215,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,6.824142,7.4126005,0,9,0,-50.405617,0,3,3,2019,16,4,18,18,1,4,0,7.1523919,7.1523919,0,0,0,0,0,1,1,0,0,0,38.32,41.37,59.48,33.77,3.333333333333333,1,1,0,0,10,7,4,1,359.66666,940809.94,62517.973,428391.31,60090.438,2088.312 -13574,16693,30217,-9,30216,30215,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-993.72821,-9,3,2,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.89,65.90000000000001,-9,-9,3.333333333333333,1,1,0,0,1,7,4,1,359.66666,940809.94,62517.973,428391.31,60090.438,2088.312 -13574,16694,30218,-9,30216,30215,1,1,21,0,0,0,2,2,-9,0,2,8.0178328,7.7214122,0,0,0,-1050.4871,0,3,2,2019,19,7,25,20,1,7,1,11.220078,11.220078,0,0,0,0,0,1,1,0,0,0,26.38,58.67,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,142,-321019.16,-46833.734,0,0,1292.0481 -13575,16695,30219,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,2.0948212,1.7332098,0,0,0,-1126.3557,0,2,2,2019,21,9,30,-9,1,9,0,.030069653,.030069653,0,0,0,0,14.5,0,0,0,8.3739138,0,36.08,60.5,-9,-9,5,1,1,0,0,9,6,2,1,185,873771.19,0,426992.22,0,835.54077 -13576,16696,30220,-9,30221,30222,1,1,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1005.5034,-9,3,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,70.8,34.07,-9,-9,10,2,3,0,0,0,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 -13576,16696,30221,30222,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,0,0,0,25,0,104.45692,0,3,-9,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.39,40.52,61.28,32.94,0,2,3,0,0,0,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 -13576,16696,30222,30221,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,2.9819643,2.9123049,0,25,9,-149.80011,0,-9,-9,2019,8,2,50,60,1,2,0,.049644571,.049644571,0,0,0,0,0,1,1,0,0,0,61.28,32.94,70.39,40.52,8.333333333333334,2,3,0,0,11,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 -13576,16696,30223,-9,30221,30222,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.13831,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,653.75,294774.72,60140.246,163486.48,21063.5,569.44 -13576,16697,30224,-9,30221,30222,1,1,24,0,1,0,2,2,-9,0,4,7.1434503,7.1173229,0,0,0,-993.61523,0,3,2,2019,10,0,40,40,1,1,1,3.3370197,3.3370197,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,4,2,1,829,178312.58,0,0,0,731.85632 -13576,16698,30225,-9,30221,30222,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1056.6965,0,3,2,2019,14,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,51.51,41.44,-9,-9,8.333333333333334,2,3,1,0,2,4,1,1,1578,333369.63,0,0,0,0 -13576,16699,30226,-9,30221,30222,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-960.22577,-9,3,2,2019,6,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,964,-56909.941,0,0,0,0 -13577,16700,30227,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,7.9601235,7.94731,0,0,-1007.3047,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,113.31816,0,0,1,1,0,0,8.1213064,48.53,26.29,-9,-9,10,1,1,0,0,0,13,4,1,1111,592134.88,350011.06,176604.89,0,2865.5798 -13577,16701,30228,-9,30227,-9,1,0,58,0,0,0,1,1,-9,0,3,0,7.7098422,7.5821295,0,0,-1020.5441,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,8.1031799,7.8616147,49.84,47.45,-9,-9,6.666666666666667,1,1,0,0,7,13,3,1,432,545960.69,746151.75,181874.64,65896.07,1401.6643 -13577,16702,30229,-9,30227,-9,1,1,55,0,0,0,3,3,-9,0,3,8.7999773,8.7939301,0,0,0,-1077.2195,0,3,3,2019,10,1,40,40,1,1,0,19.571522,19.571522,0,0,0,0,0,1,1,0,6.8365164,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,640,-169937.13,0,0,0,2747.5879 -13578,16703,30230,-9,30231,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.0137,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,405,176256.13,0,0,0,2380.6921 -13578,16703,30231,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,8.607687,8.35888,0,0,0,-1150.9906,0,-9,-9,2019,25,10,45,39,1,10,0,14.9669,14.9669,0,0,0,0,0,1,1,0,0,0,28.85,64.06,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,405,176256.13,0,0,0,2380.6921 -13578,16703,30232,-9,30231,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.59662,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,405,176256.13,0,0,0,2380.6921 -13579,16704,30233,30234,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.4429536,6.3589673,46,7,29.676828,0,3,-9,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.6844602,6.6709452,44.81,43.04,51.83,57.2,3.333333333333333,1,1,0,0,4,7,3,1,846,1059827.8,920608.75,369241.06,0,2275.4968 -13579,16704,30234,30233,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.6559715,7.816792,0,46,-7,103.63287,0,3,3,2019,9,0,37,37,1,0,0,6.514545,6.514545,0,0,0,0,0,1,1,0,5.1068659,0,51.83,57.2,44.81,43.04,8.333333333333334,1,1,0,0,10,7,3,1,846,1059827.8,920608.75,369241.06,0,2275.4968 -13580,16705,30235,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.944602,9.2663126,0,6,1,81.000076,0,1,1,2019,8,0,55,60,1,0,0,12.865149,12.865149,0,0,0,0,0,0,0,0,0,0,55.36,51.57,51,57,8.333333333333334,1,1,0,0,10,11,5,0,3617,232205.03,87140.992,0,0,3183.2773 -13581,16706,30236,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.4833999,7.7455239,5.6794195,0,0,-1013.9139,0,3,3,2019,15,3,26,25,1,3,0,7.7883329,7.7883329,0,0,0,0,2,0,0,0,6.1975155,5.1531768,28.17,41.17,-9,-9,5,1,1,0,0,11,4,3,1,450,7279.5386,29272.648,0,0,1310.5198 -13582,16707,30237,30238,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.4425411,5.0420284,50,7,45.209675,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.4469919,5.4455848,57.91,43.45,55.93,52.62,10,1,1,0,0,0,5,2,1,811,201266.67,115599.28,139501.88,0,1380.8672 -13582,16707,30238,30237,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,50,-7,-129.04019,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5783867,0,55.93,52.62,57.91,43.45,10,1,1,0,0,0,5,2,1,811,201266.67,115599.28,139501.88,0,1380.8672 -13583,16708,30239,30241,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.4149446,7.5104361,0,10,-11,46.598347,-9,3,2,2019,22,10,60,0,1,10,0,3.7177875,3.7177875,0,0,0,0,0,1,1,0,6.8500972,0,23.44,54.28,54.79,55.86,1.666666666666667,1,1,0,1,9,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 -13583,16708,30240,-9,30239,30241,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-903.39343,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 -13583,16708,30241,30239,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,8.3540049,8.2159395,0,10,11,34.942272,-9,-9,-9,2019,5,0,37,0,1,0,0,12.523128,12.523128,0,0,0,0,0,1,1,0,0,0,54.79,55.86,23.44,54.28,6.666666666666667,2,3,0,0,12,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 -13583,16708,30242,-9,30239,30241,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-792.18298,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,4,1,358.5,354141.53,13358.838,140554.64,85055.242,3753.2158 -13584,16709,30243,30244,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.2567205,8.5692949,0,8,-6,14.646544,0,3,3,2019,7,0,38,38,1,0,0,14.059025,14.059025,0,0,0,0,0,1,1,0,3.2779648,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,7,5,5,1,1389.5,-30115.984,64328.547,187846.44,96197.289,3916.8101 -13584,16709,30244,30243,30245,-9,1,0,38,0,0,0,2,2,-9,0,4,8.4256153,8.9044762,0,8,6,-123.17485,0,3,2,2019,12,0,38,37,1,0,0,21.753078,21.753078,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,11,5,5,1,1389.5,-30115.984,64328.547,187846.44,96197.289,3916.8101 -13584,16710,30245,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.6644878,6.6258578,0,0,-852.36707,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,2.1299717,0,0,1,1,0,0,6.3614273,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,182,178456.75,125396.48,0,0,2223.0447 -13585,16711,30246,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.5339489,7.5059104,0,0,-1044.2742,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.2843618,7.3797522,60.78,32.51,-9,-9,10,1,1,0,0,0,4,3,1,398,474744.94,128716.69,219017.86,0,1347.8398 -13586,16712,30247,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,9.0649996,9.310256,6.5877066,0,0,-1110.1708,0,2,3,2019,22,10,35,40,1,10,0,35.957497,35.957497,0,0,0,0,0,0,0,0,6.7262726,0,32.17,55.71,-9,-9,5,1,1,0,0,11,12,5,1,180.5,289626.28,253609.34,219229.97,57739.813,3957.363 -13586,16712,30248,-9,30247,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.23547,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,180.5,289626.28,253609.34,219229.97,57739.813,3957.363 -13587,16713,30249,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,0,0,-965.1311,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.28,20.7,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,924,-167168.72,0,0,0,210.94753 -13588,16714,30250,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.5570397,5.4914451,0,0,-1062.3756,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0421939,58.9,39.43,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,864,-50665.813,162000.8,153495.22,0,1523.8456 -13589,16715,30251,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1411066,8.2676134,0,0,0,-942.47577,0,2,-9,2019,11,0,38,38,1,0,0,10.799632,10.799632,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,626,280917.59,-505.069,148292.19,78838.313,1763.9808 -13589,16716,30252,-9,30251,-9,1,1,22,0,0,0,2,2,-9,0,3,0,4.5799236,4.7376757,0,0,-985.86475,0,2,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,4.2730045,0,60.29,52.11,-9,-9,5,1,1,1,0,0,9,2,1,3530,127134.59,0,0,0,358.09464 -13590,16717,30253,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.1252589,7.398365,0,0,-1011.1896,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.6464653,7.1077986,61.14,29.71,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,671,807810.31,111253.62,120169.2,0,1535.0614 -13591,16718,30254,30255,-9,-9,1,0,49,1,1,0,2,2,-9,0,3,8.1912508,8.1595783,0,18,-12,-59.630859,0,3,3,2019,12,0,25,20,1,0,0,17.025167,17.025167,0,0,0,0,0,1,1,0,0,0,47.83,52.44,61.29,22.08,8.333333333333334,1,1,0,0,9,6,4,1,1142.5,313236.44,234797.59,127679.5,74028.641,1273.0743 -13591,16718,30255,30254,-9,-9,1,1,61,1,1,0,2,2,-9,0,2,0,7.2626171,7.4213724,17,12,-89.660622,0,3,3,2019,12,1,0,50,3,1,0,0,0,0,0,0,0,2,1,1,0,2.3673089,7.716692,61.29,22.08,47.83,52.44,5,1,1,0,0,11,6,4,1,1142.5,313236.44,234797.59,127679.5,74028.641,1273.0743 -13591,16719,30256,-9,30257,30258,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-965.32611,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,602.66669,-127750.63,38769.828,0,0,3642.1643 -13591,16719,30257,30258,30254,30255,1,0,19,1,1,0,2,2,-9,0,4,7.9406686,8.0593348,0,2,-2,-40.604729,0,2,2,2019,7,0,35,35,1,0,0,7.9516449,7.9516449,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,2,6,4,1,602.66669,-127750.63,38769.828,0,0,3642.1643 -13591,16719,30258,30257,-9,-9,1,1,21,1,1,0,2,2,-9,0,3,8.3345337,8.1160669,0,2,2,-83.726418,-9,-9,-9,2019,7,0,45,0,1,0,0,6.9338951,6.9338951,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,5,6,4,1,602.66669,-127750.63,38769.828,0,0,3642.1643 -13592,16720,30259,-9,-9,-9,1,1,24,0,0,0,3,3,-9,0,2,8.0321102,7.7823138,0,0,0,-1041.7522,0,2,3,2019,16,5,39,0,1,5,0,10.68593,10.68593,0,0,0,0,2,0,0,0,0,0,36.47,51.2,-9,-9,6.666666666666667,1,1,0,0,0,10,4,0,215,108213.27,0,0,0,1227.4238 -13593,16721,30260,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,0,0,0,0,0,-984.48639,-9,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,.71060234,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,6,1,1,1209,218633.73,0,0,0,-184.12778 -13594,16722,30261,-9,30265,30266,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.39856,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 -13594,16722,30262,-9,30265,30266,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-980.76996,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 -13594,16722,30263,-9,30265,30266,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.2648,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 -13594,16722,30264,-9,30265,30266,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-973.57471,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 -13594,16722,30265,30266,-9,-9,1,0,42,0,4,0,1,1,-9,0,4,0,0,0,19,4,38.933094,0,3,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.51,40.26,10,2,3,0,0,0,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 -13594,16722,30266,30265,-9,-9,1,1,38,0,4,0,1,1,-9,0,5,8.6988878,8.2215557,0,19,-4,40.910236,0,3,3,2019,10,0,50,40,1,0,0,17.160004,17.160004,0,0,0,0,0,1,1,0,0,0,47.51,40.26,57.16,56.15,8.333333333333334,2,3,0,0,10,2,3,1,431.5,364648.69,6161.5415,254881.19,152657.28,2392.6838 -13594,16723,30267,-9,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,7.7780347,7.9477062,0,0,0,-941.51813,0,3,2,2019,16,5,60,60,1,5,0,5.6365099,5.6365099,0,0,0,0,0,1,1,0,0,0,37.42,51.67,-9,-9,8.333333333333334,2,3,0,0,7,2,3,1,892,4673.1245,126088.9,179545.94,70723.906,1337.1654 -13595,16724,30268,-9,30270,30271,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1138.1467,-9,2,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,0,1,0,0,39,45,-9,-9,5,2,3,-9,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 -13595,16724,30269,-9,30270,30271,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.31158,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 -13595,16724,30270,30271,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,18,-5,81.790001,0,3,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.03,52.62,53.23,47.51,8.333333333333334,2,3,0,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 -13595,16724,30271,30270,-9,-9,1,1,43,0,3,0,1,1,-9,0,2,7.1681914,7.0647659,0,18,5,74.050484,0,3,2,2019,7,0,20,24,1,0,0,7.8043408,7.8043408,0,0,0,0,0,1,0,1,0,0,53.23,47.51,50.03,52.62,8.333333333333334,2,3,0,0,12,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 -13595,16724,30272,-9,30270,30271,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1015.2647,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,1123.4,213121.27,291693,0,0,1281.7747 -13596,16725,30273,30274,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.0461578,7.4019361,10,-1,-23.550529,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9403212,7.6703219,40.23,48.88,54.44,51.82,8.333333333333334,1,1,0,0,1,2,3,1,1456,1054413.5,526050.88,340825,0,2980.0793 -13596,16725,30274,30273,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.5233436,7.6745014,10,1,160.71648,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.716495,54.44,51.82,40.23,48.88,8.333333333333334,1,1,0,0,0,2,3,1,1456,1054413.5,526050.88,340825,0,2980.0793 -13597,16726,30275,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.2269993,6.9857526,0,0,0,-901.02161,0,2,3,2019,8,0,20,20,1,0,0,6.2229619,6.2229619,0,0,0,0,7,1,1,0,0,0,51.07,45.78,-9,-9,5,2,3,0,1,6,8,2,0,2394,49893.898,0,0,0,2212.1753 -13597,16726,30276,-9,30275,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1002.19,-9,2,-9,2019,19,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,1.5131719,0,37.96,44.87,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,2394,49893.898,0,0,0,2212.1753 -13598,16727,30277,30278,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.1401992,7.5533714,0,8,3,139.92293,0,3,3,2019,6,0,28,28,1,0,0,5.8089142,5.8089142,0,0,0,0,0,0,0,0,.3215408,0,41.58,52.86,56.99,32.56,10,1,1,0,0,8,5,3,1,1730,474447.31,204444.91,84022.914,0,1170.719 -13598,16727,30278,30277,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.5765123,7.6661754,0,8,-3,47.903362,0,2,3,2019,10,0,31,38,1,0,0,6.7471757,6.7471757,0,0,0,0,0,0,0,0,0,0,56.99,32.56,41.58,52.86,5,1,1,0,0,8,5,3,1,1730,474447.31,204444.91,84022.914,0,1170.719 -13599,16728,30279,30280,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,56,-5,-73.184547,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,4,2,1,905,100608.01,185804.72,111633.13,0,1003.8414 -13599,16728,30280,30279,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.3299494,4.8493371,56,5,37.586422,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.2266474,5.0688586,55,45,52,45,8,1,1,0,0,0,4,2,1,905,100608.01,185804.72,111633.13,0,1003.8414 -13600,16729,30281,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-937.55719,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,1,1,10,7,1,0,475,0,0,0,0,0 -13601,16730,30282,-9,30285,30287,1,0,16,1,4,1,3,0,-9,1,3,0,0,0,0,0,-969.88373,-9,2,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,0,1,0,0,49.29,54.59,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 -13601,16730,30283,-9,30285,30287,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.17407,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 -13601,16730,30284,-9,30285,30287,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.7399,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 -13601,16730,30285,30287,-9,-9,1,0,33,1,4,0,2,2,-9,0,4,6.6596327,7.0589414,5.2898688,8,-13,-38.916901,0,2,2,2019,7,0,18,16,1,0,0,6.5016131,6.5016131,0,0,0,0,0,1,0,1,5.5435777,0,51.83,57.2,36.14,57.86,8.333333333333334,1,1,0,0,10,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 -13601,16730,30286,-9,30285,30287,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-994.63165,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 -13601,16730,30287,30285,-9,-9,1,1,46,1,4,0,2,2,-9,0,4,7.7810221,7.6855245,0,8,13,-130.2074,0,2,-9,2019,20,7,37,38,1,7,0,7.7171092,7.7171092,0,0,0,0,0,1,0,1,0,0,36.14,57.86,51.83,57.2,6.666666666666667,1,1,0,0,9,6,3,1,971.5,388750.69,299841.81,177230.94,40046.648,3216.2175 -13602,16731,30288,-9,30289,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.88293,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,1,594.66669,33428.707,0,0,0,677.75128 -13602,16731,30289,-9,-9,-9,1,0,38,0,2,0,3,3,-9,0,2,0,0,0,0,0,-1120.8438,0,3,3,2019,26,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,0,31.49,38.46,-9,-9,3.333333333333333,2,3,1,0,0,7,1,1,594.66669,33428.707,0,0,0,677.75128 -13602,16731,30290,-9,30289,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2747,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,2,3,-9,0,0,7,1,1,594.66669,33428.707,0,0,0,677.75128 -13603,16732,30291,-9,30292,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.76965,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,2,0,519.66669,-82907.617,0,0,0,1666.788 -13603,16732,30292,-9,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.9531255,6.6918235,0,0,0,-1028.0376,0,2,2,2019,17,5,16,16,1,5,0,8.4208822,8.4208822,0,0,0,0,0,1,1,0,0,0,41.74,51.07,-9,-9,5,1,1,0,0,12,2,2,0,519.66669,-82907.617,0,0,0,1666.788 -13603,16732,30293,-9,30292,-9,1,0,11,1,2,1,3,0,-9,0,2,0,0,0,0,0,-900.21167,-9,2,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,2,2,0,519.66669,-82907.617,0,0,0,1666.788 -13604,16733,30294,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,5.6442585,5.7866468,0,0,0,-902.69989,0,3,3,2019,14,3,8,15,1,3,0,4.7738452,4.7738452,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,4,13,2,0,1502,254800.83,-11301.176,0,0,461.23468 -13605,16734,30295,30296,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.090065,7.5235648,36,8,-100.55687,0,-9,-9,2019,9,0,0,12,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1067076,7.1704335,57.33,53.46,55.36,51.57,8.333333333333334,1,1,0,0,9,7,3,1,502,1484121.4,710305.88,948944.88,0,2033.5157 -13605,16734,30296,30295,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.5831194,7.0934772,36,-8,86.786507,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4539971,7.1219578,55.36,51.57,57.33,53.46,8.333333333333334,1,1,0,0,5,7,3,1,502,1484121.4,710305.88,948944.88,0,2033.5157 -13606,16735,30297,30298,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,19,-5,8.4659157,0,-9,-9,2019,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,1,0,10,2,4,1,350,357390.03,60448.066,180764.16,0,871.43036 -13606,16735,30298,30297,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.5268602,8.2825642,0,19,5,-5.8700686,0,2,2,2019,10,1,42,37,1,1,0,12.715527,12.715527,0,0,0,0,0,0,0,0,5.4319057,0,51.24,58.84,54.2,57.49,6.666666666666667,1,1,0,0,10,2,4,1,350,357390.03,60448.066,180764.16,0,871.43036 -13607,16736,30299,30300,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.6710272,6.8952022,0,26,-2,-117.09846,0,3,3,2019,5,0,36,30,1,0,0,2.7839401,2.7839401,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.79,55.86,5,1,1,0,0,11,6,4,1,1468,107556,61953.777,130418.55,62986.355,2145.8557 -13607,16736,30300,30299,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6628103,8.3036184,0,3,2,82.255173,0,-9,-9,2019,8,0,45,45,1,0,0,11.35267,11.35267,0,0,0,0,0,0,0,0,1.2995884,0,54.79,55.86,57.16,56.15,10,1,1,0,0,11,6,4,1,1468,107556,61953.777,130418.55,62986.355,2145.8557 -13608,16737,30301,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.815,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.95,41.69,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,846,120207,0,301101.03,0,984.94598 -13609,16738,30302,30303,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.4763184,8.5595798,0,8,3,-4.9963293,0,-9,-9,2019,15,4,39,38,1,4,0,14.379272,14.379272,0,0,0,0,0,1,1,0,.88422471,0,44.08,59.33,33.3,64.17,6.666666666666667,1,1,0,0,9,12,5,1,1041,432895.56,193936.02,215327.94,36179.98,3398.136 -13609,16738,30303,30302,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.1079693,8.2396774,0,8,-3,54.354824,0,-9,-9,2019,10,1,30,40,1,1,0,16.511503,16.511503,0,0,0,0,0,1,1,0,0,0,33.3,64.17,44.08,59.33,8.333333333333334,1,1,0,0,11,12,5,1,1041,432895.56,193936.02,215327.94,36179.98,3398.136 -13609,16738,30304,-9,30303,30302,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.6074,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1041,432895.56,193936.02,215327.94,36179.98,3398.136 -13610,16739,30305,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.3231473,6.1163173,0,11,-13,105.06609,0,-9,3,2019,15,5,40,46,1,5,0,2.0023437,2.0023437,0,0,0,0,0,0,0,0,0,0,36.79,56.27,50.27,48.86,5,1,1,0,0,5,1,2,0,719,-158237.61,-67163.703,0,0,620.99811 -13610,16740,30306,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,11,13,7.0191841,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,48.86,36.79,56.27,5,1,1,1,0,5,1,2,0,277,-280773.06,0,0,0,0 -13611,16741,30307,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.80756,4.8209863,0,0,-936.83453,0,-9,-9,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,4.9146528,54.18,45.3,-9,-9,10,1,1,0,0,0,6,2,0,212,57770.902,0,0,0,765.57782 -13612,16742,30308,-9,30310,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.0327,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,4,4,1,528.33331,-48491.723,-30301.51,0,0,1278.3385 -13612,16742,30309,-9,30310,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.66901,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,528.33331,-48491.723,-30301.51,0,0,1278.3385 -13612,16742,30310,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,7.9874325,7.9976468,0,11,-1,-120.20499,0,2,2,2019,11,1,25,0,1,1,0,14.665261,14.665261,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51,54,8.333333333333334,1,1,0,1,8,4,4,1,528.33331,-48491.723,-30301.51,0,0,1278.3385 -13612,16743,30311,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.7413502,8.5418568,0,11,1,10.677843,0,3,3,2019,10,0,37,45,1,1,0,19.686634,19.686634,0,0,0,0,0,1,1,0,3.2671766,0,51,54,51.73,58.82,8,1,1,0,0,1,4,4,1,3756,249963.78,135081.72,108979.43,46861.273,2656.9761 -13613,16744,30312,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,0,0,0,0,0,-981.86816,0,2,1,2019,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,26.63,51.67,-9,-9,5,4,2,1,1,11,8,1,1,169,-178643.7,0,0,0,0 -13614,16745,30313,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.1407232,5.8818011,0,0,-1115.604,0,3,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.1584125,6.1946106,41,56.99,-9,-9,6.666666666666667,1,1,0,1,0,4,2,0,612,-91206.266,54944.98,49299.293,0,350.16528 -13615,16746,30314,-9,30316,30315,1,0,50,0,0,0,2,2,-9,0,3,8.6948776,9.1926899,0,0,0,-1029.382,0,2,3,2019,12,1,37,0,1,1,0,18.001328,18.001328,0,0,0,0,0,1,1,0,6.7777338,0,41.04,46.15,-9,-9,3.333333333333333,1,1,0,0,11,8,5,1,311,596108.56,346761.78,0,0,3035.3701 -13615,16747,30315,30316,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,4,7,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,38.98,49.99,48.68,21.42,5,1,1,0,0,0,8,1,1,617,721837.75,0,651181.25,0,859.69434 -13615,16747,30316,30315,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,4,-7,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.62341416,0,48.68,21.42,38.98,49.99,3.333333333333333,1,1,0,0,0,8,1,1,617,721837.75,0,651181.25,0,859.69434 -13616,16748,30317,30318,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.3013935,8.2701073,0,8,2,-66.068939,0,2,3,2019,22,10,34,35,1,10,0,13.986166,13.986166,0,0,0,0,0,0,0,0,4.9590335,0,29.47,53.86,55.27,44.81,5,3,4,0,0,8,2,5,1,902.5,771937.38,249592.69,295872.66,120257.38,3489.916 -13616,16748,30318,30317,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.9849472,8.7851667,0,8,-2,44.680855,0,2,3,2019,12,3,48,37,1,3,0,16.952009,16.952009,0,0,0,0,0,0,0,0,6.3232808,0,55.27,44.81,29.47,53.86,3.333333333333333,1,1,0,0,10,2,5,1,902.5,771937.38,249592.69,295872.66,120257.38,3489.916 -13617,16749,30319,30320,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,41,-1,.8220067,-9,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,55.96,49.93,53,47,10,1,1,0,0,0,9,3,1,478.5,992045.25,839528.38,151285.89,0,2946.3447 -13617,16749,30320,30319,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.2399149,8.0908318,5.3534775,1,1,-6.881742,-9,-9,-9,2019,9,0,15,0,1,1,0,30.38702,30.38702,0,0,0,0,0,1,1,0,4.9954877,5.1197753,53,47,55.96,49.93,7,1,1,0,0,1,9,3,1,478.5,992045.25,839528.38,151285.89,0,2946.3447 -13618,16750,30321,30322,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.5884161,7.589921,25,3,-49.555557,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.3367324,7.6435914,49.52,55.68,60.29,52.11,8.333333333333334,1,1,0,0,2,10,3,1,879.5,1331981.8,763580.75,289871.19,0,1459.3492 -13618,16750,30322,30321,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,6.800468,6.2289414,25,-3,-66.729416,0,3,3,2019,5,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,4.0179443,6.4375253,60.29,52.11,49.52,55.68,8.333333333333334,1,1,0,0,8,10,3,1,879.5,1331981.8,763580.75,289871.19,0,1459.3492 -13619,16751,30323,30324,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.0746965,7.901103,0,38,-5,39.361984,0,3,3,2019,6,0,40,40,1,0,0,8.2509804,8.2509804,0,0,0,0,0,1,1,0,0,0,49.59,58.37,54.9,54.53,8.333333333333334,2,3,0,0,9,8,5,0,460.5,1058069.5,676575.44,405669.06,77836.648,3481.2249 -13619,16751,30324,30323,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4444656,8.4594126,0,8,5,5.7378955,0,-9,-9,2019,12,2,40,40,1,2,0,12.312666,12.312666,0,0,0,0,0,1,1,0,0,0,54.9,54.53,49.59,58.37,8.333333333333334,2,3,0,0,6,8,5,0,460.5,1058069.5,676575.44,405669.06,77836.648,3481.2249 -13619,16752,30325,-9,30324,30323,1,1,24,0,0,0,2,2,1,0,5,7.4836025,7.3782244,0,0,0,-1073.7632,-9,2,2,2019,1,0,21,0,1,0,1,9.0543203,9.0543203,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,6,8,3,0,1189,153319.41,0,0,0,530.4267 -13619,16753,30326,-9,30324,30323,1,0,23,0,0,0,2,2,-9,0,5,7.5837903,7.4658647,0,0,0,-1039.5538,0,1,3,2019,6,0,45,28,1,0,1,5.3410482,5.3410482,0,0,0,0,0,1,1,0,0,0,57.61,48.13,-9,-9,8.333333333333334,2,3,0,0,3,8,3,0,150,429923.47,-14855.598,0,0,513.3941 -13619,16754,30327,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1029.8367,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,2,3,0,0,8,8,1,0,1670,103971.27,-76049.719,0,0,624.49011 -13620,16755,30328,30329,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.6898279,7.7481236,37,12,-4.1613793,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.5938058,7.5446854,61.05,33.88,44.19,58.01,8.333333333333334,1,1,0,0,1,5,5,1,1758.5,642647.25,504524.5,119854.92,65636.711,3976.7295 -13620,16755,30329,30328,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4561777,8.6591234,4.2507739,37,-12,175.70329,0,2,3,2019,11,1,25,24,1,1,0,22.464731,22.464731,0,0,0,0,0,1,1,0,7.0552926,0,44.19,58.01,61.05,33.88,8.333333333333334,1,1,0,0,9,5,5,1,1758.5,642647.25,504524.5,119854.92,65636.711,3976.7295 -13621,16756,30330,-9,30331,30333,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.35046,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 -13621,16756,30331,30333,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.3334064,7.0856762,0,8,0,81.932892,0,-9,-9,2019,6,0,30,22,1,0,0,6.1127954,6.1127954,0,0,0,0,0,1,1,0,0,0,55.9,52.64,46.57,46.63,8.333333333333334,1,1,0,0,6,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 -13621,16756,30332,-9,30331,30333,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.80219,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 -13621,16756,30333,30331,-9,-9,1,1,30,1,2,0,2,2,-9,0,2,8.160717,7.9425926,0,8,0,21.285105,0,3,3,2019,18,7,43,48,1,7,0,10.320893,10.320893,0,0,0,0,0,1,1,0,0,0,46.57,46.63,55.9,52.64,6.666666666666667,1,1,0,0,12,2,4,0,765,249809.91,11335.326,186409.97,63316.969,2730.4419 -13622,16757,30334,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.8175707,6.6903157,0,0,-892.34454,0,-9,-9,2019,10,0,0,20,4,1,0,0,0,1,0,0,0,14.5,1,1,0,6.7058496,6.635108,53,47,-9,-9,7,1,1,0,0,8,7,2,1,1418,-283241.53,97722.578,0,0,1197.1323 -13623,16758,30335,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.7593188,7.5090923,0,0,-916.61548,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6148314,62.49,55.09,-9,-9,10,1,1,0,0,0,9,3,1,1290,526554.69,146423.73,406070.06,0,1982.163 -13624,16759,30336,-9,-9,-9,1,1,42,1,1,0,1,1,-9,0,4,9.3078146,9.2107468,0,0,0,-996.69708,0,1,3,2019,12,1,84,84,1,1,0,17.63962,17.63962,0,0,0,0,0,0,0,0,0,0,44.19,56.73,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,350,247973.47,268299.94,120321.11,81029.016,3834.7891 -13624,16760,30337,-9,30338,30336,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.9099,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,394,69963.727,118322.88,90715.305,102623.82,2857.106 -13624,16760,30338,-9,-9,-9,1,0,46,1,1,0,1,1,-9,0,4,9.2008886,9.3520803,0,0,0,-1154.0125,-9,-9,-9,2019,15,6,42,0,1,6,0,24.289396,24.289396,0,0,0,0,0,0,0,0,0,0,41.65,60.41,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,394,69963.727,118322.88,90715.305,102623.82,2857.106 -13625,16761,30339,30340,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.9901891,8.099576,0,9,-8,-15.728642,0,3,3,2019,6,0,37,37,1,0,0,13.115561,13.115561,0,0,0,0,0,0,0,0,0,0,61.28,46.17,58.08,40.76,6.666666666666667,1,1,0,0,11,8,5,1,369.5,-299848.38,-21483.732,0,0,3359.1948 -13625,16761,30340,30339,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5620813,8.4530468,0,9,8,-100.22379,0,3,3,2019,7,1,36,39,1,1,0,16.978544,16.978544,0,0,0,0,0,0,0,0,1.2263192,0,58.08,40.76,61.28,46.17,8.333333333333334,1,1,0,0,11,8,5,1,369.5,-299848.38,-21483.732,0,0,3359.1948 -13625,16762,30341,-9,30339,30340,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.9343,1,1,2,2019,9,0,0,22,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,8,1,1,182,227356.83,0,0,0,0 -13625,16763,30342,-9,30339,30340,1,0,20,0,0,0,2,2,-9,0,3,7.0363612,7.3550711,5.4141283,0,0,-929.88849,0,1,2,2019,12,2,33,33,1,2,1,5.8643937,5.8643937,0,0,0,0,0,0,0,0,5.7704635,0,31.84,51.65,-9,-9,6.666666666666667,1,1,0,0,4,8,3,1,461,5025.2715,0,0,0,1215.5 -13626,16764,30343,30345,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.3175993,9.1237526,0,7,-5,90.257622,0,-9,-9,2019,22,10,45,45,1,10,0,24.308914,24.308914,0,0,0,0,0,1,1,0,0,0,36.32,61.46,37.93,56.64,1.666666666666667,2,3,0,0,7,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 -13626,16764,30344,-9,30345,30343,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.2006,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 -13626,16764,30345,30343,-9,-9,1,0,40,1,2,0,2,2,-9,0,3,0,0,0,7,5,21.68437,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,2.2796698,0,37.93,56.64,36.32,61.46,6.666666666666667,2,3,0,0,4,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 -13626,16764,30346,-9,30345,30343,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.69354,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,8,4,1,1031.5,134244.13,76953.328,0,0,3561.6965 -13627,16765,30347,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,3,9.091774,9.0921078,0,0,0,-1065.059,-9,-9,-9,2019,25,9,65,0,1,9,0,11.237297,11.237297,0,0,0,0,0,0,0,0,0,0,23.22,62.43,-9,-9,3.333333333333333,2,3,0,0,1,8,5,0,465,-235434.84,-33106.809,0,0,2950.4653 -13628,16766,30348,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,9.0537415,9.1079407,0,0,0,-1096.5591,-9,1,1,2019,7,0,40,0,1,0,0,23.592794,23.592794,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,8.333333333333334,2,3,0,0,4,8,5,1,365,-252603.61,60377.656,0,0,2967.5967 -13629,16767,30349,30350,-9,-9,1,0,43,0,0,0,2,2,-9,1,3,0,0,0,28,-4,-36.760891,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,.79587126,0,1,1,0,8.3305416,0,39.15,41.42,38.16,44.66,5,2,3,1,0,0,8,2,1,476.5,-84269.75,997.73877,0,0,2740.9536 -13629,16767,30350,30349,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.6040196,6.6173606,0,28,4,-41.339764,0,3,2,2019,14,1,45,80,1,1,0,1.9213382,1.9213382,0,0,0,0,0,1,1,0,0,0,38.16,44.66,39.15,41.42,6.666666666666667,2,3,0,0,7,8,2,1,476.5,-84269.75,997.73877,0,0,2740.9536 -13629,16768,30351,-9,30349,30350,1,0,24,0,0,0,1,1,-9,0,5,7.3667912,7.7194848,0,0,0,-1143.712,0,2,2,2019,4,0,40,38,1,0,1,5.4260778,5.4260778,0,0,0,0,0,1,1,0,4.7837,0,52.21,59.91,-9,-9,10,2,3,0,0,8,8,3,1,1213,-148779.5,0,0,0,680.06909 -13629,16769,30352,-9,30349,30350,1,1,20,0,0,0,2,2,1,0,3,8.1109781,8.0424757,0,0,0,-953.74884,-9,2,2,2019,6,0,40,0,1,0,1,8.5101147,8.5101147,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,2,3,0,0,4,8,4,1,169,75383.711,-47027.582,0,0,1649.8068 -13630,16770,30353,30354,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.8757668,7.2650337,32,11,133.64615,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2060347,6.844636,60.59,54.8,52.25,45.21,8.333333333333334,1,1,0,0,0,7,2,1,1149.5,126661.21,218870.44,218409.31,0,1896.5784 -13630,16770,30354,30353,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,5.271594,5.2809739,32,-11,-105.17336,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6752563,5.2428927,52.25,45.21,60.59,54.8,0,1,1,0,0,7,7,2,1,1149.5,126661.21,218870.44,218409.31,0,1896.5784 -13631,16771,30355,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-822.15619,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,35.3,34.21,-9,-9,3.333333333333333,1,1,1,1,0,6,1,0,260,414446.41,0,0,0,207.87823 -13632,16772,30356,-9,-9,-9,1,0,91,0,0,0,1,1,-9,0,3,0,5.0857487,4.9235597,0,0,-951.46472,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,41.624729,0,0,0,1,1,0,5.3587389,4.8949037,54,43,-9,-9,8,1,1,0,0,0,8,2,0,364,602871.88,2964.3999,211481.86,0,1441.6201 -13632,16773,30357,-9,-9,-9,1,0,19,0,0,0,1,1,-9,0,4,7.6739335,7.6190782,0,0,0,-924.03278,-9,-9,-9,2019,10,0,39,0,1,0,0,5.6547332,5.6547332,0,0,0,0,42,1,1,0,0,0,61.12,51.57,-9,-9,8.333333333333334,2,3,0,0,0,8,3,0,803,0,0,0,0,994.72235 -13633,16774,30358,-9,-9,30359,1,1,35,0,0,0,1,1,-9,0,3,9.0272245,8.6651726,0,0,0,-966.70197,0,2,2,2019,11,0,48,45,1,0,0,17.927431,17.927431,0,0,0,0,2,0,0,0,7.8230824,0,51.94,55.88,-9,-9,8.333333333333334,2,3,0,0,8,4,5,1,780,51441.438,137752.38,144474.88,88539.133,2311.4236 -13633,16775,30359,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1169.0255,0,3,2,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,1.666666666666667,2,3,0,0,8,4,1,1,1340,66646.688,83064.883,0,0,0 -13634,16776,30360,-9,30363,30361,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.595,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 -13634,16776,30361,30363,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,9.8782091,9.875124,0,13,4,63.174641,0,2,3,2019,9,0,9,50,1,0,0,187.34309,187.34309,0,0,0,0,7,1,1,0,.084968597,0,47.38,57.75,48.77,60.16,8.333333333333334,1,1,0,0,10,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 -13634,16776,30362,-9,30363,30361,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.56561,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 -13634,16776,30363,30361,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,6.5471258,6.8987055,0,14,-4,27.668873,0,2,2,2019,12,0,20,10,1,0,0,4.9104276,4.9104276,0,0,0,0,7,1,1,0,.62078017,0,48.77,60.16,47.38,57.75,8.333333333333334,1,1,0,0,7,10,5,1,444.75,189346.81,15072.784,271581.5,167318,35293.352 -13635,16777,30364,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.3415194,8.3397169,0,0,0,-998.30084,0,1,2,2019,7,0,60,60,1,0,1,10.772404,10.772404,0,0,0,0,0,0,0,0,2.1502934,0,57.06,57.76,-9,-9,10,4,2,0,0,4,8,4,0,603,-23734.393,7991.8315,0,0,1607.0741 -13636,16778,30365,30366,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.3524351,6.2453475,49,4,50.83865,0,-9,2,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,5.7056131,6.1748281,48.28,34.66,57.16,56.15,3.333333333333333,1,1,0,0,0,2,2,0,863.5,723510.88,167127.72,206385.09,0,1700.674 -13636,16778,30366,30365,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.4413247,5.3901491,49,-4,-55.166313,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.568119,0,57.16,56.15,48.28,34.66,8.333333333333334,1,1,0,0,0,2,2,0,863.5,723510.88,167127.72,206385.09,0,1700.674 -13637,16779,30367,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.0941663,6.2682743,0,0,-968.78094,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,5.2253227,12.782422,66.653015,0,1,1,0,6.5617137,6.1662621,56.93,23.19,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,3016,-157245.75,-65357.766,0,0,958.3764 -13637,16780,30368,-9,-9,30367,1,1,53,0,0,0,2,2,-9,0,3,8.3607063,8.2519341,0,0,0,-897.93555,0,-9,3,2019,15,4,40,40,1,4,0,13.40936,13.40936,0,0,0,0,0,1,1,0,0,0,53.14,45.74,-9,-9,3.333333333333333,1,1,0,0,11,9,5,0,457,467901.38,0,412146.69,214616.72,1966.6433 -13638,16781,30369,30370,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.664711,8.7082539,0,33,-6,-30.856678,0,3,3,2019,7,0,37,38,1,0,0,19.706474,19.706474,0,0,0,0,0,0,0,0,6.9369783,0,60.12,54.8,62.39,56.71,10,1,1,0,0,9,5,5,1,1634.5,971738.56,748173.69,222670.97,36807.664,7205.2295 -13638,16781,30370,30369,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.542099,9.4963999,0,32,6,11.722892,0,2,2,2019,6,0,35,36,1,0,0,41.886105,41.886105,0,0,0,0,0,0,0,0,7.1510258,0,62.39,56.71,60.12,54.8,10,1,1,0,0,9,5,5,1,1634.5,971738.56,748173.69,222670.97,36807.664,7205.2295 -13639,16782,30371,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.924819,8.3565502,0,1,1,12.954515,-9,2,1,2019,13,2,41,0,1,2,0,19.238224,19.238224,0,0,0,0,0,0,0,0,6.9596844,0,23.08,60.85,50,57,3.333333333333333,4,2,0,0,8,12,4,1,645,212889.66,-31508.479,177117.7,97210.43,3428.2795 -13640,16783,30372,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,2,7.4635911,7.3317213,5.4634767,0,0,-967.78162,0,-9,-9,2019,20,8,28,28,1,8,0,5.9545221,5.9545221,0,0,0,0,0,1,1,0,5.2643991,0,33.44,37.62,-9,-9,6.666666666666667,1,1,0,0,3,5,3,0,669.5,-18485.168,0,0,0,1070.5066 -13640,16783,30373,-9,30372,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.8207,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,669.5,-18485.168,0,0,0,1070.5066 -13641,16784,30374,-9,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,7.781045,7.6522655,0,0,0,-1010.265,0,2,-9,2019,14,2,37,32,1,2,0,6.8243995,6.8243995,0,0,0,0,0,1,1,0,0,0,46.56,50.26,-9,-9,5,1,1,0,0,2,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 -13641,16784,30375,-9,30374,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.66095,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 -13641,16784,30376,-9,30374,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.47943,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 -13641,16784,30377,-9,30374,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.47156,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,628.75,389988.63,59330.617,197485.5,95929.539,2550.7117 -13642,16785,30378,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.9070668,8.0277901,6.1389961,0,0,-999.05438,0,1,3,2019,6,0,25,25,1,0,0,10.955799,10.955799,0,0,0,0,0,1,1,0,0,6.3078928,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,13,4,1,3731,-19137.922,-71188.414,0,0,1316.8468 -13643,16786,30379,30380,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6697292,7.7063746,0,9,-5,86.937721,0,2,2,2019,9,0,33,33,1,0,0,7.6202936,7.6202936,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,10,11,4,1,1324,91338.125,185623.66,0,0,1500.9021 -13643,16786,30380,30379,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.8061953,7.5916448,0,9,5,37.156738,0,2,2,2019,9,1,37,33,1,1,0,8.5689154,8.5689154,0,0,0,0,14.5,0,0,0,.42890862,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,10,11,4,1,1324,91338.125,185623.66,0,0,1500.9021 -13644,16787,30381,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,8.1828232,8.1797161,5.0905237,0,0,-1157.7236,0,3,3,2019,11,0,34,34,1,0,0,12.85375,12.85375,0,0,0,0,0,1,1,0,5.2546558,5.4647679,54.77,31.94,-9,-9,6.666666666666667,1,1,0,0,9,11,4,0,111,330065.5,48194.953,293502.16,0,1922.7292 -13645,16788,30382,30385,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,8.5751801,8.6585608,0,6,0,-53.106037,0,-9,-9,2019,4,0,24,20,1,0,0,19.251852,19.251852,0,0,0,0,0,1,1,0,6.6081471,0,51.68,58.85,57.16,56.15,10,1,1,0,0,9,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 -13645,16788,30383,-9,30385,30382,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.7972,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 -13645,16788,30384,-9,30385,30382,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.4551,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 -13645,16788,30385,30382,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.4935513,7.6824584,0,6,0,-110.73917,0,-9,-9,2019,5,0,9,7,1,0,0,25.835987,25.835987,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.68,58.85,10,1,1,0,0,10,9,4,1,624.5,199569.61,171583.22,263781,206607.78,4212.0688 -13646,16789,30386,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,2,0,0,0,0,0,-988.22607,0,-9,2,2019,31,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,18.74,41.74,-9,-9,10,1,1,0,0,0,12,1,0,757,260356.13,0,0,0,907.10785 -13647,16790,30387,30389,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,7.6484485,7.5277882,0,32,-7,137.78062,0,2,2,2019,8,0,45,55,1,0,0,4.6316476,4.6316476,0,0,0,0,0,1,1,0,2.9087567,0,54.1,59.11,56.13,47.53,6.666666666666667,1,1,0,0,10,5,4,1,354.66666,498018.59,179595.45,320809.75,71777.492,3444.0652 -13647,16790,30388,-9,30389,30387,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1016.4397,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,44.69,-9,-9,10,1,1,0,0,0,5,4,1,354.66666,498018.59,179595.45,320809.75,71777.492,3444.0652 -13647,16790,30389,30387,-9,-9,1,0,58,0,1,0,2,2,-9,0,2,8.7058649,8.8417196,0,8,7,48.934998,0,-9,-9,2019,13,2,20,68,1,2,0,30.690042,30.690042,0,0,0,0,0,1,1,0,6.5762391,0,56.13,47.53,54.1,59.11,8.333333333333334,1,1,0,0,10,5,4,1,354.66666,498018.59,179595.45,320809.75,71777.492,3444.0652 -13647,16791,30390,-9,30389,30387,1,0,22,0,1,0,2,2,0,0,5,0,0,0,0,0,-963.77051,-9,2,2,2019,11,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,864,-107797.47,0,0,0,310.93222 -13648,16792,30391,30392,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.395391,7.5972824,9,6,146.85204,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.7086506,7.2518406,53.78,53.58,45.53,52.35,8.333333333333334,1,1,0,0,0,10,4,1,336,1042664.1,225567,226672.16,0,4564.5771 -13648,16792,30392,30391,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.8190126,8.3367043,9,-6,-27.455626,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.6948771,7.8527875,45.53,52.35,53.78,53.58,8.333333333333334,1,1,0,0,0,10,4,1,336,1042664.1,225567,226672.16,0,4564.5771 -13649,16793,30393,30394,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,23,-2,-16.889948,-9,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.71,16.04,52.99,51.28,5,1,1,0,0,0,10,4,1,448,816523.38,923779.44,110689.19,0,2319.9609 -13649,16793,30394,30393,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.2886343,8.120451,0,23,2,-46.833553,-9,-9,-9,2019,11,0,44,0,1,0,0,9.9556293,9.9556293,0,0,0,0,2,1,1,0,0,0,52.99,51.28,38.71,16.04,8.333333333333334,1,1,0,0,11,10,4,1,448,816523.38,923779.44,110689.19,0,2319.9609 -13650,16794,30395,30397,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.2772608,8.5050421,0,7,0,19.20653,0,-9,-9,2019,9,0,37,38,1,0,0,9.249567,9.249567,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,1,5,1,1011.6667,112275.23,21385.922,260803.33,139725.89,4373.2373 -13650,16794,30396,-9,30397,30395,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.2574,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,1011.6667,112275.23,21385.922,260803.33,139725.89,4373.2373 -13650,16794,30397,30395,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.8115635,8.9581261,0,7,0,-15.98372,0,2,2,2019,5,0,40,30,1,0,0,22.356619,22.356619,0,0,0,0,0,1,1,0,.70205063,0,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,9,1,5,1,1011.6667,112275.23,21385.922,260803.33,139725.89,4373.2373 -13651,16795,30398,-9,30400,30403,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.5481,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 -13651,16795,30399,-9,30400,30403,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1124.77,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 -13651,16795,30400,30403,-9,-9,1,0,32,1,4,0,3,3,-9,0,5,0,0,0,12,-5,-150.29735,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,45.02,53.64,50.52,33.49,0,2,3,0,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 -13651,16795,30401,-9,30400,30403,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1036.2653,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 -13651,16795,30402,-9,30400,30403,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-983.19128,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 -13651,16795,30403,30400,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,7.611227,7.6908059,0,12,5,56.574318,0,3,3,2019,10,0,40,50,1,0,0,9.1191683,9.1191683,0,0,0,0,0,1,1,0,0,0,50.52,33.49,45.02,53.64,3.333333333333333,2,3,0,0,11,6,2,1,578.83331,-211632.86,17623.943,0,0,2036.8378 -13652,16796,30404,30405,-9,-9,1,1,44,0,1,0,3,3,-9,0,2,0,0,0,2,-1,-95.996086,0,3,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,38.72,31.6,54.79,55.86,1.666666666666667,1,1,1,0,8,5,3,1,372.5,125024.7,-35703.82,118681.36,0,1020.4821 -13652,16796,30405,30404,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.6707268,8.1629772,0,2,1,65.592361,0,3,2,2019,7,0,46,42,1,0,0,4.9794745,4.9794745,0,0,0,0,0,1,0,1,0,0,54.79,55.86,38.72,31.6,8.333333333333334,1,1,0,1,3,5,3,1,372.5,125024.7,-35703.82,118681.36,0,1020.4821 -13652,16797,30406,-9,30405,30404,1,0,21,0,1,0,1,1,1,0,4,7.35111,7.2613349,0,0,0,-1051.6061,-9,2,3,2019,10,0,34,0,1,0,1,5.430171,5.430171,0,0,0,0,0,1,0,1,3.4654307,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,351,79866.172,0,0,0,955.90137 -13653,16798,30407,30408,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.5371084,4.8937778,44,0,-16.875336,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6668234,4.8428726,60.12,54.8,57.16,56.15,10,1,1,0,0,0,6,5,1,450,2460124.5,1508054.8,463924.69,20119.334,4701.4941 -13653,16798,30408,30407,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.8231287,8.3235502,44,0,-30.729427,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2310662,8.7978659,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,6,5,1,450,2460124.5,1508054.8,463924.69,20119.334,4701.4941 -13654,16799,30409,-9,30412,30410,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.62506,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 -13654,16799,30410,30412,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2283392,8.9965801,0,6,3,35.109768,0,2,2,2019,11,1,37,39,1,1,0,31.175846,31.175846,0,0,0,0,0,1,1,0,2.6675148,0,44.02,60.7,42.95,61.24,8.333333333333334,1,1,0,0,7,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 -13654,16799,30411,-9,30412,30410,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.44232,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 -13654,16799,30412,30410,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.947011,8.8677597,0,6,-3,-12.567349,0,2,2,2019,19,6,50,32,1,6,0,15.472256,15.472256,0,0,0,0,0,1,1,0,1.0035359,0,42.95,61.24,44.02,60.7,6.666666666666667,1,1,0,0,7,2,5,1,621,872827.81,477571.22,401705.31,117811.18,5636.7886 -13655,16800,30413,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,9.0860729,9.102232,5.3484645,0,0,-954.36176,0,2,2,2019,18,6,55,55,1,6,0,18.117697,18.117697,0,0,0,0,0,1,1,0,5.7313228,0,28.06,60.16,-9,-9,1.666666666666667,1,1,0,0,12,7,5,1,653,363151.66,-29302.09,427182.31,121425.5,3970.4854 -13656,16801,30414,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.3531671,6.2003689,0,0,-1058.8419,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9030497,6.5279365,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1527,-34666.488,167026.42,0,0,1068.8932 -13657,16802,30415,30419,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.3378248,9.5620251,7.0630422,22,1,13.786851,0,2,1,2019,6,0,40,20,1,0,0,32.188725,32.188725,0,0,0,0,0,1,1,0,7.9798551,0,55.19,54.26,52.99,51.28,8.333333333333334,1,1,0,0,12,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 -13657,16802,30416,-9,30419,30415,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1023.9971,-9,1,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.2339883,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 -13657,16802,30417,-9,30419,30415,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.39191,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 -13657,16802,30418,-9,30419,30415,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.11292,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 -13657,16802,30419,30415,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.1421633,7.9701858,0,22,-1,174.79732,0,3,2,2019,10,1,37,35,1,1,0,8.3370342,8.3370342,0,0,0,0,0,1,1,0,0,0,52.99,51.28,55.19,54.26,8.333333333333334,1,1,0,0,1,9,5,1,1046,1043373.3,266412.84,797830.5,55746.969,5636.8589 -13658,16803,30420,30421,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.1046419,6.1774497,57,-3,51.399998,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.546917,6.0355148,51.39,56.66,38.49,24.49,8.333333333333334,1,1,0,0,0,6,2,1,1181,511731.06,134918,142419.59,0,1894.7141 -13658,16803,30421,30420,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.0082664,6.9310818,57,3,58.951275,0,2,2,2019,22,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.8838663,7.2346053,38.49,24.49,51.39,56.66,5,1,1,0,0,0,6,2,1,1181,511731.06,134918,142419.59,0,1894.7141 -13659,16804,30422,30423,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.5902696,8.1788425,7.1297317,7,-7,20.595491,0,-9,-9,2019,8,0,30,35,1,0,0,5.3743482,5.3743482,0,0,0,0,0,1,1,0,2.1020582,7.2783165,54.96,53.17,48.7,56.22,6.666666666666667,1,1,0,0,10,6,3,1,153,-246266.94,131949.91,167875.5,0,2447.7007 -13659,16804,30423,30422,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,4.2169437,4.3761759,7,7,-43.797352,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6144443,4.2878966,48.7,56.22,54.96,53.17,8.333333333333334,1,1,0,0,0,6,3,1,153,-246266.94,131949.91,167875.5,0,2447.7007 -13660,16805,30424,30425,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.5988111,8.8702984,0,1,1,1.5891614,-9,-9,-9,2019,6,0,36,0,1,0,0,20.221338,20.221338,0,0,0,0,0,0,0,0,0,0,52.93,52.64,51.14,60.45,8.333333333333334,1,1,0,0,8,13,5,1,575.5,843551.44,232197.3,153149.59,98171.75,3094.5044 -13660,16805,30425,30424,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.6018229,8.4326839,0,1,-1,2.2007229,0,2,2,2019,9,0,40,38,1,0,0,14.793697,14.793697,0,0,0,0,0,0,0,0,0,0,51.14,60.45,52.93,52.64,8.333333333333334,1,1,0,0,7,13,5,1,575.5,843551.44,232197.3,153149.59,98171.75,3094.5044 -13661,16806,30426,30427,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,8.0150909,7.9635949,0,7,8,13.370517,0,3,3,2019,10,0,40,40,1,1,0,9.5886841,9.5886841,0,0,0,0,0,1,1,0,8.5216093,0,52,47,50.03,52.62,7,1,1,0,0,1,8,4,1,571,538556.25,268709.81,250496.06,0,4709.1045 -13661,16806,30427,30426,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3098884,7.3357434,0,7,-8,-121.1997,0,3,3,2019,20,9,28,36,1,9,0,7.8728061,7.8728061,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52,47,8.333333333333334,1,1,0,0,8,8,4,1,571,538556.25,268709.81,250496.06,0,4709.1045 -13662,16807,30428,30429,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.6731243,9.4810228,0,11,1,70.546432,0,2,2,2019,7,0,55,50,1,0,0,33.376614,33.376614,0,0,0,0,0,0,0,0,7.1942763,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,8,5,1,889.5,2209087.3,-6290.4648,1506626,0,9009.748 -13662,16807,30429,30428,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.2632437,8.0719042,0,11,-1,43.624416,0,2,2,2019,6,0,30,24,1,0,0,13.807243,13.807243,0,0,0,0,2,0,0,0,8.1938019,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,889.5,2209087.3,-6290.4648,1506626,0,9009.748 -13663,16808,30430,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.8367577,8.5348425,0,0,0,-1063.0035,0,2,3,2019,12,1,30,44,1,1,0,13.153675,13.153675,0,0,0,0,7,1,1,0,5.5952983,0,42.84,55.93,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,302,154724.3,56805.973,137250.11,109471.05,1171.6133 -13664,16809,30431,30432,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,7.615068,7.5766387,0,3,1,-62.916637,0,2,2,2019,11,0,76,27,1,0,0,3.2324471,3.2324471,0,0,0,0,0,1,1,0,0,0,51.17,49.39,38.76,52.62,5,1,1,0,0,2,1,3,1,478,268223.59,285339.22,158945.28,30917.711,1902.3906 -13664,16809,30432,30431,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.6086941,7.6315465,0,3,-1,50.337208,0,2,2,2019,23,8,45,40,1,8,0,5.129046,5.129046,0,0,0,0,2,1,1,0,0,0,38.76,52.62,51.17,49.39,8.333333333333334,1,1,0,1,9,1,3,1,478,268223.59,285339.22,158945.28,30917.711,1902.3906 -13664,16809,30433,-9,30432,30431,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.76892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,1,478,268223.59,285339.22,158945.28,30917.711,1902.3906 -13664,16810,30434,-9,30432,30431,1,1,19,0,1,1,2,0,0,0,2,0,0,0,0,0,-1016.0507,-9,2,2,2019,7,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49.87,50.46,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,782,216185.67,0,0,0,0 -13664,16811,30435,-9,30432,30431,1,1,18,0,1,0,2,2,-9,0,2,8.0101633,7.8844142,0,0,0,-938.80609,0,2,2,2019,19,6,32,0,1,6,1,12.107492,12.107492,0,0,0,0,0,1,1,0,0,0,37.51,54.63,-9,-9,3.333333333333333,1,1,0,0,0,1,4,1,292,36917.359,30141.012,0,0,1000.3263 -13665,16812,30436,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1011.9806,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.91,53.54,-9,-9,5,2,3,0,0,1,8,1,0,658,0,0,0,0,0 -13666,16813,30437,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,2.7317014,3.2917006,0,0,-954.66223,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,2.927238,63.55,39.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,910,222574.31,7885.2817,165612.39,0,524.09839 -13667,16814,30438,30439,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,53,-3,59.047001,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,68.03,40.23,32.54,31.14,8.333333333333334,1,1,0,0,0,12,2,0,1250.5,71338.438,0,0,0,1843.4143 -13667,16814,30439,30438,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,4.0799313,4.1389508,53,3,43.732597,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,10.596704,0,0,1,1,0,4.4018645,3.9376249,32.54,31.14,68.03,40.23,10,1,1,0,0,0,12,2,0,1250.5,71338.438,0,0,0,1843.4143 -13668,16815,30440,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.2884507,7.4608674,0,0,0,-1058.6792,0,-9,-9,2019,23,9,38,38,1,9,0,4.4650321,4.4650321,0,0,0,0,0,0,0,0,0,0,44.8,44.5,-9,-9,0,1,1,0,0,2,4,3,0,814,-88934.578,83260.102,0,0,848.94897 -13669,16816,30441,-9,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.3513222,8.1015615,0,0,0,-1064.4275,0,2,-9,2019,6,0,38,38,1,0,0,9.1824007,9.1824007,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,326,148028.53,-4318.4775,0,0,1778.2542 -13670,16817,30442,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-893.6795,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,5.9044871,0,0,1,1,0,4.8594465,0,54,44,-9,-9,8,1,1,0,0,0,9,1,1,559,337953.59,0,244679.02,0,-96.47229 -13670,16818,30443,-9,30442,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6224551,7.6909585,0,0,0,-869.98853,0,3,-9,2019,11,0,25,25,1,2,0,10.338214,10.338214,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,1,9,3,1,286,-166474.31,-76807.906,246891.38,70722.141,1206.0979 -13670,16819,30444,-9,30443,-9,1,1,34,0,0,0,2,2,-9,0,4,8.4806595,8.3000898,0,0,0,-1114.3418,-9,2,-9,2019,10,0,37,0,1,1,1,13.871853,13.871853,0,0,0,.59222728,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,9,4,1,962,-243923.33,0,0,0,743.04004 -13670,16820,30445,-9,30443,-9,1,1,24,0,0,0,2,2,-9,0,4,8.0165329,8.183835,0,0,0,-982.54077,-9,2,-9,2019,10,0,38,0,1,1,1,9.9574833,9.9574833,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,4,1,717,-120158.95,0,0,0,1734.3555 -13671,16821,30446,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.861794,8.0424986,0,0,0,-934.19348,0,2,-9,2019,12,0,40,42,1,0,0,8.918519,8.918519,0,0,0,0,0,0,0,0,3.5783918,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,11,4,1,571,381160.47,5973.5796,0,0,1411.2384 -13672,16822,30447,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.2783127,7.6887031,0,0,-828.34113,0,1,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0723271,7.2171011,59.53,56.44,-9,-9,10,1,1,0,0,0,9,3,1,1900,683223.94,229238.59,476198.63,0,1089.6559 -13673,16823,30448,30449,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.8544421,7.8529572,48,3,-57.062576,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3421783,7.8585324,61.86,12.59,49.98,51.13,10,1,1,0,0,0,5,3,0,1039.5,885586.25,791701.5,192759.13,0,3155.9116 -13673,16823,30449,30448,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,48,-3,65.847916,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,0,0,49.98,51.13,61.86,12.59,8.333333333333334,1,1,0,0,0,5,3,0,1039.5,885586.25,791701.5,192759.13,0,3155.9116 -13674,16824,30450,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.9969587,8.2826929,0,0,0,-1006.0069,-9,2,2,2019,12,0,41,0,1,0,0,10.569424,10.569424,0,0,0,0,0,0,0,0,0,0,32.72,43.47,-9,-9,1.666666666666667,1,1,0,0,10,10,4,0,289,253068.55,30639.785,0,0,1524.4779 -13674,16825,30451,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.8201418,7.5330915,0,0,0,-944.73889,-9,-9,-9,2019,31,11,35,0,1,11,0,9.4853268,9.4853268,0,0,0,0,0,0,0,0,0,0,12.2,69.04000000000001,-9,-9,3.333333333333333,1,1,0,1,1,10,3,0,842,-72539.664,0,0,0,1434.8235 -13675,16826,30452,30453,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.6299868,6.5441227,51,-2,111.69238,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7704501,6.448101,57.66,45.08,34.23,49.22,6.666666666666667,1,1,0,1,0,7,2,1,1647,91554.391,250791.22,0,0,1728.9482 -13675,16826,30453,30452,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.7335124,4.5848017,51,2,-97.694077,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,4.5059562,34.23,49.22,57.66,45.08,3.333333333333333,1,1,0,0,0,7,2,1,1647,91554.391,250791.22,0,0,1728.9482 -13676,16827,30454,-9,-9,-9,1,1,39,0,4,0,1,1,-9,0,4,8.9034586,9.0261221,0,19,-4,-25.137638,0,2,2,2019,14,4,78,50,1,4,0,13.463473,13.463473,0,0,0,0,0,1,1,0,.80596679,0,35.95,61.84,23.65,59.54,6.666666666666667,1,1,0,0,11,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 -13676,16827,30455,-9,-9,30454,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.9824,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 -13676,16827,30456,-9,-9,30454,1,1,10,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1016.9689,-9,-9,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 -13676,16827,30457,-9,-9,30454,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1071.604,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 -13676,16827,30458,-9,-9,30454,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.7709,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,761.79999,214593.83,25894.805,130650.18,97891.82,3767.304 -13676,16828,30459,-9,-9,-9,1,1,43,0,4,0,1,1,-9,0,4,0,0,0,18,4,-179.38028,0,3,3,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,23.65,59.54,35.95,61.84,6.666666666666667,1,1,0,0,8,4,4,1,921,351738,0,0,0,517.77399 -13677,16829,30460,30461,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.351428,8.0311327,0,2,-2,-26.60429,0,-9,-9,2019,7,0,40,38,1,0,0,14.73903,14.73903,0,0,0,0,0,0,0,0,0,0,55.53,51.55,54.79,55.86,8.333333333333334,1,1,0,0,6,12,5,0,424,-78194.141,87559.922,219305.58,205194.84,3957.6318 -13677,16829,30461,30460,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.5158625,8.3207159,0,2,2,14.521706,0,-9,-9,2019,6,0,49,39,1,0,0,10.452768,10.452768,0,0,0,0,0,0,0,0,0,0,54.79,55.86,55.53,51.55,8.333333333333334,1,1,0,0,3,12,5,0,424,-78194.141,87559.922,219305.58,205194.84,3957.6318 -13678,16830,30462,30463,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.2088175,9.1004705,0,27,-1,-25.375029,0,2,2,2019,14,4,35,40,1,4,0,42.278801,42.278801,0,0,0,0,0,0,0,0,0,0,44.15,55.74,51.94,55.88,8.333333333333334,3,4,0,0,6,8,5,1,528.5,868802.63,498440.56,719755,101559.67,4374.0889 -13678,16830,30463,30462,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9621634,7.5786943,0,29,1,-114.30164,0,3,3,2019,14,3,30,35,1,3,0,8.9062586,8.9062586,0,0,0,0,0,0,0,0,0,0,51.94,55.88,44.15,55.74,3.333333333333333,4,2,0,0,8,8,5,1,528.5,868802.63,498440.56,719755,101559.67,4374.0889 -13678,16831,30464,-9,30463,30462,1,1,25,0,0,0,2,2,-9,0,3,7.9613709,8.1075573,0,0,0,-1149.2528,0,2,2,2019,14,2,38,37,1,2,1,9.6171541,9.6171541,0,0,0,0,0,0,0,0,0,0,36.93,56.27,-9,-9,3.333333333333333,3,4,0,0,4,8,4,1,296,10399.846,0,0,0,764.84357 -13679,16832,30465,-9,30469,30467,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.3255,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 -13679,16832,30466,-9,30469,30467,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.8273,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 -13679,16832,30467,30469,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,8.7234879,8.4655552,0,7,11,-124.06585,0,-9,-9,2019,9,0,40,49,1,1,0,13.800967,13.800967,0,0,0,0,0,0,0,0,0,0,51,56,54.1,59.11,8,1,1,0,0,1,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 -13679,16832,30468,-9,30469,30467,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.5095,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 -13679,16832,30469,30467,-9,-9,1,0,30,0,3,0,1,1,-9,0,5,7.4914665,7.5511408,0,7,-11,-50.330429,0,2,1,2019,11,0,22,20,1,0,0,8.0821543,8.0821543,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51,56,8.333333333333334,1,1,0,0,5,4,4,1,772.59998,772691.69,491615.31,151814.92,0,2747.0828 -13680,16833,30470,30471,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,7.96767,7.7450762,0,23,10,-105.22264,0,3,3,2019,8,0,45,45,1,0,0,6.4154358,6.4154358,0,0,0,0,0,1,1,0,6.3187318,0,56.58,25.82,51,56,8.333333333333334,1,1,0,0,10,1,5,1,679.5,152311.09,23903.191,189886.97,76225.406,4916.2134 -13680,16833,30471,30470,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,9.0334711,8.960927,0,8,-10,-6.4230695,0,-9,-9,2019,9,0,60,60,1,1,0,14.72753,14.72753,0,0,0,0,0,1,1,0,0,0,51,56,56.58,25.82,8,1,1,0,0,1,1,5,1,679.5,152311.09,23903.191,189886.97,76225.406,4916.2134 -13680,16834,30472,-9,30470,30471,1,1,20,0,0,0,2,2,-9,0,4,8.4667797,8.4710159,0,0,0,-1032.7397,0,2,2,2019,10,0,50,60,1,0,1,13.20714,13.20714,0,0,0,0,0,1,1,0,0,0,36.01,50.99,-9,-9,8.333333333333334,1,1,0,0,3,1,5,1,940,-128717.13,-23395.416,0,0,1955.3743 -13681,16835,30473,30474,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,6.9538927,6.8727198,3,6,18.942657,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1688838,6.7085872,60.69,29.25,54.2,57.49,8.333333333333334,1,1,0,0,0,5,4,1,471.5,1101713.3,1015662.5,262586.75,0,2686.8247 -13681,16835,30474,30473,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,8.143672,8.0958843,0,3,-6,-5.4570451,0,-9,-9,2019,6,0,30,37,1,0,0,14.106057,14.106057,0,0,0,0,0,1,1,0,2.9185395,0,54.2,57.49,60.69,29.25,8.333333333333334,1,1,0,0,10,5,4,1,471.5,1101713.3,1015662.5,262586.75,0,2686.8247 -13682,16836,30475,30477,-9,-9,1,1,43,0,1,0,3,3,-9,0,2,5.6699309,5.9584947,0,6,3,-164.16502,-9,3,3,2019,11,1,45,0,1,1,0,.7890178,.7890178,0,0,0,0,0,1,1,0,0,0,39.99,37.4,28.95,62.45,5,1,1,0,0,13,7,3,1,795.33331,446296.38,0,459627.63,190696.17,1829.5934 -13682,16836,30476,-9,30477,30475,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.14801,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,795.33331,446296.38,0,459627.63,190696.17,1829.5934 -13682,16836,30477,30475,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.0816298,7.8500457,0,6,-3,-136.87917,-9,1,2,2019,16,4,40,0,1,4,0,9.0288639,9.0288639,0,0,0,0,0,1,1,0,.012993142,0,28.95,62.45,39.99,37.4,3.333333333333333,1,1,0,0,11,7,3,1,795.33331,446296.38,0,459627.63,190696.17,1829.5934 -13683,16837,30478,30479,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6966877,8.7572346,0,5,2,-59.299881,0,2,2,2019,6,0,40,40,1,0,0,18.053411,18.053411,0,0,0,0,0,0,0,0,7.2017331,0,50.06,55.28,48.81,59.91,0,1,1,0,0,6,11,5,1,761,546764.63,432537.75,97483.336,26573.346,4313.6162 -13683,16837,30479,30478,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9331822,8.0260038,0,5,-2,-54.404552,0,3,3,2019,7,0,43,47,1,0,0,6.2941632,6.2941632,0,0,0,0,2,0,0,0,6.5904517,0,48.81,59.91,50.06,55.28,8.333333333333334,1,1,0,0,6,11,5,1,761,546764.63,432537.75,97483.336,26573.346,4313.6162 -13684,16838,30480,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4527926,6.9884744,3.4997971,0,0,-980.27069,0,-9,-9,2019,6,0,30,39,1,0,0,6.2012205,6.2012205,0,0,0,0,7,0,0,0,3.3462279,0,54.53,46.44,-9,-9,10,3,4,0,1,5,8,3,0,871,244082.73,364972.16,0,0,1019.9579 -13684,16839,30481,-9,30480,-9,1,1,22,0,0,0,3,3,1,0,4,6.4007959,6.2662129,0,0,0,-898.62091,-9,2,-9,2019,5,0,7,0,1,0,1,10.089529,10.089529,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,842,-119107.98,168705.7,0,0,-49.243568 -13685,16840,30482,30483,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.7448559,7.8001709,7,-7,-19.932875,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5883384,7.6551352,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,3,12,3,1,580.5,750145.94,611757.13,111370,0,5134.46 -13685,16840,30483,30482,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,5.0005832,5.0800238,7,7,114.33147,0,3,3,2019,10,0,0,10,4,0,0,0,0,0,0,0,1.1671965,0,1,1,0,8.6313391,5.0682139,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,8,12,3,1,580.5,750145.94,611757.13,111370,0,5134.46 -13686,16841,30484,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.4693108,8.4721241,0,0,0,-1002.8508,0,3,3,2019,15,3,47,44,1,3,0,9.4827948,9.4827948,0,0,0,0,0,0,0,0,0,0,40.99,54.49,-9,-9,1.666666666666667,1,1,0,1,7,8,5,0,975,263446.06,0,0,0,1416.4061 -13687,16842,30485,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,8.4495201,8.1854544,0,3,-3,-17.051329,0,-9,-9,2019,21,9,35,28,1,9,0,13.136666,13.136666,0,0,0,0,0,0,0,0,0,0,23.83,60.91,52.22,53.26,3.333333333333333,1,1,0,0,6,7,4,0,1696,136952.28,181189.88,0,0,1680.6005 -13687,16843,30486,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,7.5105147,7.4385934,0,3,3,-55.563061,0,-9,-9,2019,7,0,20,24,1,0,0,10.056352,10.056352,0,0,0,0,0,0,0,0,0,0,52.22,53.26,23.83,60.91,8.333333333333334,1,1,0,0,3,7,4,0,2633,450203.66,0,0,0,891.45801 -13688,16844,30487,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.5726624,7.3781848,0,0,0,-945.90607,0,-9,-9,2019,10,0,20,20,1,0,0,12.25138,12.25138,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,7,3,1,332.5,349535.41,151864.98,234897.31,0,2852.2505 -13688,16844,30488,-9,30487,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.2986,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,332.5,349535.41,151864.98,234897.31,0,2852.2505 -13688,16845,30489,-9,30487,-9,1,1,18,0,1,0,2,2,-9,0,5,6.802875,6.8333898,0,0,0,-1001.6026,0,2,-9,2019,8,0,8,0,1,0,1,11.447898,11.447898,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,7,2,1,1381,-5207.6655,-26266.096,0,0,136.83588 -13689,16846,30490,30491,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.9890556,8.5527411,0,6,10,1.0944812,0,2,3,2019,6,0,70,65,1,0,0,13.565721,13.565721,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.11,55.32,8.333333333333334,1,1,0,0,12,9,5,1,597.5,2608863,1942016.3,396661.94,0,4451.729 -13689,16846,30491,30490,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1599379,8.0800295,0,6,-10,36.164131,0,2,2,2019,7,0,45,48,1,0,0,7.757257,7.757257,0,0,0,0,0,0,0,0,0,0,50.11,55.32,57.33,53.46,8.333333333333334,1,1,0,0,10,9,5,1,597.5,2608863,1942016.3,396661.94,0,4451.729 -13690,16847,30492,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.76221,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,62.03,41.71,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,239,-263127.34,0,131414.22,0,1062.5842 -13691,16848,30493,-9,30494,30495,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.56976,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 -13691,16848,30494,30495,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,14,-7,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.8820782,0,58.15,52.91,49.98,51.13,8.333333333333334,1,1,0,0,10,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 -13691,16848,30495,30494,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,0,0,0,14,7,0,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.94543844,0,49.98,51.13,58.15,52.91,6.666666666666667,1,1,1,0,7,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 -13691,16848,30496,-9,30494,30495,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-863.41968,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,1,1,631.75,64856.473,-39220.348,0,0,1257.7791 -13692,16849,30497,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5644236,7.7298193,0,0,-964.7243,0,2,3,2019,6,1,0,38,4,1,0,0,0,0,0,0,0,0,1,1,0,2.9051218,7.5398793,54.53,49.11,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,197,961652.06,242127.84,393488.84,0,441.15302 -13693,16850,30498,30499,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.522934,8.1219683,7.1811323,6,5,184.46541,0,3,3,2019,8,1,30,30,1,1,0,6.1742144,6.1742144,0,0,0,0,0,1,1,0,0,6.8836713,50.53,32.12,58.15,52.91,8.333333333333334,1,1,0,0,7,2,5,1,1205.5,488748.03,78901.422,337743.69,20050.301,3878.1389 -13693,16850,30499,30498,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8399992,8.6623545,0,6,-5,123.41702,0,2,2,2019,5,0,48,47,1,0,0,19.511192,19.511192,0,0,0,0,0,1,1,0,0,0,58.15,52.91,50.53,32.12,8.333333333333334,1,1,0,0,6,2,5,1,1205.5,488748.03,78901.422,337743.69,20050.301,3878.1389 -13694,16851,30500,-9,30503,30502,1,1,17,0,1,1,2,0,0,0,4,0,4.3906288,4.4295115,0,0,-1044.6425,-9,1,1,2019,10,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.1132236,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 -13694,16851,30501,-9,30503,30502,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-932.37671,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 -13694,16851,30502,30503,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.9925022,9.0327826,0,24,1,-35.221748,0,1,2,2019,8,0,42,43,1,0,0,15.630635,15.630635,0,0,0,0,0,1,1,0,3.620939,0,52.43,55.57,29.46,66.15000000000001,8.333333333333334,1,1,0,0,9,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 -13694,16851,30503,30502,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,7.184885,7.2481194,0,22,-1,125.63925,0,2,2,2019,12,0,24,23,1,0,0,6.0900764,6.0900764,0,0,0,0,0,1,1,0,4.5538816,0,29.46,66.15000000000001,52.43,55.57,5,1,1,0,0,6,5,4,1,700.75,299777.06,92539.555,323315.03,87715.414,3487.646 -13695,16852,30504,30505,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6071353,7.7458401,0,39,-3,-71.563492,0,3,3,2019,12,0,25,25,1,0,0,9.1407318,9.1407318,0,0,0,0,0,0,0,0,.10724953,0,51.24,58.84,57.16,56.15,6.666666666666667,1,1,0,0,11,9,5,1,266,634639.13,75328.305,603188,33977.801,3151.6182 -13695,16852,30505,30504,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6410999,8.9120493,0,10,3,87.891457,0,-9,-9,2019,9,0,52,53,1,0,0,12.58273,12.58273,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,11,9,5,1,266,634639.13,75328.305,603188,33977.801,3151.6182 -13695,16853,30506,-9,30504,30505,1,0,29,0,0,0,2,2,-9,0,3,7.5588584,7.5531731,0,0,0,-984.29303,0,2,2,2019,11,0,40,40,1,0,1,6.8075814,6.8075814,0,0,0,0,0,0,0,0,.39071009,0,44.01,54.41,-9,-9,3.333333333333333,1,1,0,0,11,9,3,1,287,98787.789,38277.695,0,0,1152.9481 -13696,16854,30507,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1101.9338,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,9.0607719,5.4742846,89.802887,0,1,1,0,0,0,53.21,20.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,346,-198495.66,0,0,0,1224.46 -13697,16855,30508,30509,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,44,-2,0,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.12,20.9,56.85,37.23,3.333333333333333,1,1,0,0,3,7,1,0,284.5,445118.47,0,276259.13,0,1783.9624 -13697,16855,30509,30508,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,44,2,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.85,37.23,46.12,20.9,6.666666666666667,1,1,0,0,11,7,1,0,284.5,445118.47,0,276259.13,0,1783.9624 -13697,16856,30510,-9,30508,30509,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-997.28967,0,-9,2,2019,10,0,0,15,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,0,1719,99841.367,0,0,0,577.80865 -13698,16857,30511,30512,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.5418749,8.3585329,0,10,-1,-64.025436,0,-9,-9,2019,4,0,30,30,1,0,0,20.307865,20.307865,0,0,0,0,0,1,1,0,5.4495506,0,54.2,57.49,40.58,60.95,10,1,1,0,0,11,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 -13698,16857,30512,30511,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.4477205,8.0124826,0,10,1,-44.551895,0,-9,-9,2019,14,3,39,37,1,3,0,10.504648,10.504648,0,0,0,0,0,1,1,0,5.1591411,0,40.58,60.95,54.2,57.49,6.666666666666667,1,1,0,0,9,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 -13698,16857,30513,-9,30511,30512,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.9541,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 -13698,16857,30514,-9,30511,30512,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5266,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,759,306885.97,229324.16,81422.609,58232.527,3585.0996 -13699,16858,30515,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.468195,8.3011847,0,1,5,-55.555042,0,2,-9,2019,11,1,42,47,1,1,0,12.065939,12.065939,0,0,0,0,0,1,1,0,.93643999,0,42.91,47.45,33.19,27.06,10,1,1,0,0,9,2,5,1,1003,210058.55,119437.52,0,0,1999.2611 -13699,16859,30516,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,1,8.2016344,8.1501503,0,1,-5,32.172985,-9,-9,-9,2019,22,8,41,0,1,8,0,11.118115,11.118115,0,0,0,0,0,1,1,0,0,0,33.19,27.06,42.91,47.45,6.666666666666667,1,1,0,0,2,2,5,1,175,-15871.539,0,0,0,1412.1758 -13700,16860,30517,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1065.5907,0,-9,-9,2019,11,4,0,0,4,4,0,0,0,1,2.5325267,0,22.179062,0,1,1,0,.58813202,0,49.94,58.01,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,717,-23431.52,0,0,0,903.0863 -13701,16861,30518,-9,30521,30520,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.5518,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,862.5,0,0,0,0,1685.4806 -13701,16861,30519,-9,30521,30520,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.81964,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,862.5,0,0,0,0,1685.4806 -13701,16861,30520,30521,-9,-9,1,1,36,1,2,0,2,2,-9,1,1,0,0,0,5,1,4.6169481,0,-9,-9,2019,18,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.77,25.85,52.69,31.65,1.666666666666667,1,1,0,0,5,6,2,1,862.5,0,0,0,0,1685.4806 -13701,16861,30521,30520,-9,-9,1,0,35,1,2,0,2,2,-9,0,2,4.4744959,4.2789469,0,5,-1,119.56384,0,-9,-9,2019,17,5,10,51,1,5,0,1.010851,1.010851,0,0,0,0,0,1,1,0,0,0,52.69,31.65,32.77,25.85,3.333333333333333,1,1,0,0,5,6,2,1,862.5,0,0,0,0,1685.4806 -13702,16862,30522,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1041.6633,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.29,49.04,-9,-9,5,1,1,0,0,0,7,1,0,92,0,0,0,0,988.67053 -13703,16863,30523,30525,-9,-9,1,0,23,1,1,0,1,1,-9,0,4,0,0,0,1,-2,20.513393,0,2,2,2019,13,2,0,37,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49.48,48.55,49,58,8.333333333333334,1,1,0,0,3,13,3,1,463.33334,115982.71,-6104.9927,139620.97,101788.35,1875.8446 -13703,16863,30524,-9,30523,30525,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.402,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,463.33334,115982.71,-6104.9927,139620.97,101788.35,1875.8446 -13703,16863,30525,30523,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.0206566,8.1636744,0,1,2,10.957472,-9,-9,-9,2019,10,0,38,0,1,1,0,9.4808865,9.4808865,0,0,0,0,0,1,1,0,0,0,49,58,49.48,48.55,7,1,1,0,0,1,13,3,1,463.33334,115982.71,-6104.9927,139620.97,101788.35,1875.8446 -13704,16864,30526,30527,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,6.3300653,6.1496539,0,41,1,53.150162,0,3,3,2019,0,0,60,50,1,0,0,1.554687,1.554687,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,0,1,1,0,0,12,2,3,1,419,433187.19,314165.25,113601.38,0,952.59082 -13704,16864,30527,30526,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.0863295,7.466568,0,10,-1,143.19978,0,-9,-9,2019,6,0,8,12,1,0,0,22.596563,22.596563,0,0,0,0,7,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,2,3,1,419,433187.19,314165.25,113601.38,0,952.59082 -13705,16865,30528,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.8423729,7.9857025,0,0,-1082.9945,0,3,3,2019,25,12,0,0,4,12,0,0,0,1,0,0,0,0,1,1,0,.18114568,7.7330856,30.29,34.91,-9,-9,5,1,1,0,0,0,6,4,1,1042,750247.81,0,435854.22,0,1869.2343 -13706,16866,30529,30530,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,7.0628943,8.0891266,7.1369724,40,-16,129.00787,0,3,2,2019,10,0,15,14,1,0,0,8.5654411,8.5654411,0,0,0,0,0,1,1,0,4.864615,7.6581264,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,2,4,1,338.5,624638.06,285148.97,193737.52,0,3181.3481 -13706,16866,30530,30529,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.5905704,7.473845,37,16,94.697983,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9565787,7.6279936,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,2,4,1,338.5,624638.06,285148.97,193737.52,0,3181.3481 -13706,16867,30531,-9,30529,30530,1,1,23,0,0,0,1,1,1,0,5,7.7275805,7.8399472,0,0,0,-936.91425,-9,2,3,2019,11,0,40,0,1,0,1,6.20573,6.20573,0,0,0,0,0,1,1,0,3.9290526,0,40.36,58.59,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,1728,-6374.1582,0,0,0,1289.277 -13707,16868,30532,-9,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-973.10034,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.08,27.83,-9,-9,5,1,1,0,0,0,9,1,0,798,-19652.145,0,0,0,1665.542 -13708,16869,30533,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.5473118,8.5118361,0,0,0,-1059.7377,0,2,1,2019,10,0,40,40,1,0,0,15.110307,15.110307,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,8.333333333333334,1,1,0,1,10,1,5,1,1865,570705.56,229127.75,99952.188,84866.398,1809.2952 -13709,16870,30534,30535,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.0551658,7.2449241,10,3,-.83305168,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4374738,6.9123273,57.06,57.76,57.16,56.15,10,1,1,0,0,0,2,2,1,281,523743.06,331474.19,218929.42,0,1622.8347 -13709,16870,30535,30534,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,52,-3,70.709969,0,3,3,2019,5,0,0,0,4,0,0,0,0,1,1.9681082,0,26.27253,7,1,1,0,3.3994386,0,57.16,56.15,57.06,57.76,10,1,1,0,0,3,2,2,1,281,523743.06,331474.19,218929.42,0,1622.8347 -13710,16871,30536,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,6.9070582,6.7591338,0,0,-1106.8016,-9,-9,-9,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,7.001112,0,38.91,57.83,-9,-9,1.666666666666667,1,1,0,0,3,4,2,0,4551,0,0,0,0,-8.7534876 -13711,16872,30537,30538,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,8.3382139,8.1212807,7,1,-129.33049,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1958151,8.2415543,60.05,45.35,40.88,59.72,8.333333333333334,1,1,0,0,0,5,5,1,343.33334,1424829.9,1228855.6,182628.48,0,3642.2578 -13711,16872,30538,30537,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.5097408,8.3664627,0,38,-1,65.290855,0,3,2,2019,14,5,43,28,1,5,0,9.5890636,9.5890636,0,0,0,0,0,1,1,0,4.6636744,0,40.88,59.72,60.05,45.35,8.333333333333334,1,1,0,0,8,5,5,1,343.33334,1424829.9,1228855.6,182628.48,0,3642.2578 -13711,16872,30539,-9,30538,30537,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1018.2748,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,343.33334,1424829.9,1228855.6,182628.48,0,3642.2578 -13712,16873,30540,30541,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,50,2,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.3655646,0,71.5,1,1,0,0,0,52,46,53,47,8,1,1,0,0,0,4,1,0,529.5,94531.891,64986.145,0,0,1863.1189 -13712,16873,30541,30540,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,50,-2,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.236609,0,53,47,52,46,7,1,1,0,0,0,4,1,0,529.5,94531.891,64986.145,0,0,1863.1189 -13713,16874,30542,-9,30543,30545,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-867.16235,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 -13713,16874,30543,30545,-9,-9,1,0,32,2,2,0,1,1,-9,0,5,7.1453199,6.900311,0,3,1,-24.262287,0,-9,-9,2019,14,3,28,35,1,3,0,3.9557874,3.9557874,0,0,0,0,0,1,1,0,.62792462,0,40.95,63.66,50,57,10,1,1,0,0,8,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 -13713,16874,30544,-9,30543,30545,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-907.76074,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 -13713,16874,30545,30543,-9,-9,1,1,31,2,2,0,2,2,-9,0,4,8.4967413,8.7709818,0,3,-1,-136.92986,0,2,2,2019,10,0,37,50,1,1,0,14.986525,14.986525,0,0,0,0,0,1,1,0,0,0,50,57,40.95,63.66,7,1,1,0,0,1,4,3,1,461.5,287847.59,149623.06,263860.25,76997.867,2860.7568 -13714,16875,30546,30547,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2759199,7.8644838,0,6,-3,102.19668,0,3,3,2019,10,0,50,55,1,1,0,9.8076982,9.8076982,0,0,0,0,0,1,1,0,0,0,51,48,50,47,7,1,1,0,0,1,8,4,1,534,-110997.63,0,0,0,3067.1055 -13714,16875,30547,30546,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.7617478,7.8673649,5.6383133,6,3,15.596632,0,3,3,2019,11,0,27,27,1,2,0,8.1675615,8.1675615,0,0,0,0,0,1,1,0,0,6.028863,50,47,51,48,7,1,1,0,0,7,8,4,1,534,-110997.63,0,0,0,3067.1055 -13714,16876,30548,-9,30547,30546,1,0,31,0,0,0,1,1,-9,0,4,8.4380484,8.4049759,0,0,0,-1063.6963,0,2,2,2019,11,0,40,35,1,2,1,11.836078,11.836078,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,8,4,1,339,-410490.81,17263.645,0,0,1164.7874 -13715,16877,30549,30550,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,6.9255581,6.9278393,0,10,19,-79.194649,0,1,2,2019,9,1,40,40,1,1,0,2.7688928,2.7688928,0,0,0,0,0,0,0,0,0,0,50.24,58.02,55.19,54.26,8.333333333333334,1,1,0,0,8,10,3,1,964.5,1673683.9,0,965331.25,0,12774.969 -13715,16877,30550,30549,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.2636266,7.4852457,0,10,-19,-52.676163,0,3,1,2019,10,0,52,47,1,0,0,3.6573637,3.6573637,0,0,0,0,0,0,0,0,9.7639904,0,55.19,54.26,50.24,58.02,8.333333333333334,1,1,0,0,8,10,3,1,964.5,1673683.9,0,965331.25,0,12774.969 -13716,16878,30551,30552,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,9.9402637,9.7819395,0,10,4,-80.986092,0,2,3,2019,6,1,55,55,1,1,0,35.803345,35.803345,0,0,0,0,0,1,1,0,4.2918911,0,57.06,57.76,57.73,54.53,10,1,1,0,0,12,8,5,1,944.33331,965362.38,297079.88,976091.06,472794.72,11071.188 -13716,16878,30552,30551,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,9.7991505,9.7269764,0,10,-4,12.946075,0,1,1,2019,7,1,45,50,1,1,0,41.01215,41.01215,0,0,0,0,0,1,1,0,3.5188673,0,57.73,54.53,57.06,57.76,8.333333333333334,1,1,0,0,11,8,5,1,944.33331,965362.38,297079.88,976091.06,472794.72,11071.188 -13716,16878,30553,-9,30552,30551,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-874.97577,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,1,944.33331,965362.38,297079.88,976091.06,472794.72,11071.188 -13717,16879,30554,30555,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.555882,7.528388,48,0,37.165703,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5711532,7.3003521,57.16,56.15,52,54.51,10,1,1,0,0,0,5,3,1,1057.5,416914.22,-35797.195,137849.06,0,2895.895 -13717,16879,30555,30554,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.4270864,6.6312208,48,0,-20.878763,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5064588,6.7946849,52,54.51,57.16,56.15,10,1,1,0,0,0,5,3,1,1057.5,416914.22,-35797.195,137849.06,0,2895.895 -13718,16880,30556,30557,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,7.4622397,7.3282471,9,4,-42.211422,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5231414,55,45,35.37,48.33,8,1,1,0,0,0,6,4,1,1065,528401.69,665185.88,265189.38,0,3659.1846 -13718,16880,30557,30556,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.7370749,8.2127256,39,-4,-3.4575162,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,8.0476904,35.37,48.33,55,45,8.333333333333334,1,1,0,0,0,6,4,1,1065,528401.69,665185.88,265189.38,0,3659.1846 -13719,16881,30558,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.5776,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,3,4,1,0,0,8,1,0,1070,233346.17,0,0,0,945.75946 -13720,16882,30559,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.4871454,6.8128438,0,0,-850.15106,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2735744,6.8262653,53.26,44.26,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,715,542344.69,145293.45,0,0,663.53107 -13721,16883,30560,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1082621,8.3466425,0,0,0,-1020.3307,0,1,1,2019,3,0,37,38,1,0,0,12.366277,12.366277,0,0,0,0,2,0,0,0,3.85677,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,236,-8533.21,141902.72,110442.59,13152.623,1971.0651 -13722,16884,30561,30562,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0446215,7.1304531,56,0,-23.542124,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4943464,6.7286286,56.1,49.93,59.6,46.99,8.333333333333334,1,1,0,0,11,4,2,1,368,516816.72,156422.47,118030.5,0,1684.4716 -13722,16884,30562,30561,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,56,9,-65.533173,-9,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.4366009,0,59.6,46.99,56.1,49.93,6.666666666666667,1,1,0,0,0,4,2,1,368,516816.72,156422.47,118030.5,0,1684.4716 -13722,16885,30563,-9,30561,30562,1,1,50,0,0,0,3,3,-9,0,2,8.6601591,8.7379475,0,0,0,-932.97369,-9,2,3,2019,12,0,40,0,1,0,0,19.895555,19.895555,0,0,0,0,0,1,1,0,0,0,44.94,49.91,-9,-9,5,1,1,0,0,11,4,5,1,789,101272.05,64608.332,119222.55,88446.508,2676.7834 -13723,16886,30564,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,7.356636,7.4315724,0,0,-897.75916,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,5.541111,7.3637953,41.54,28.49,-9,-9,5,1,1,0,0,7,12,3,1,106,457439,189426.67,96302.313,0,1078.3247 -13724,16887,30565,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,7.0227461,7.3955002,0,0,-1061.0509,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4510307,56.13,44.38,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,468,306524.69,35529.473,300856.13,0,1261.8469 -13725,16888,30566,30567,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.820013,8.1314707,8,1,44.680767,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6155496,8.5422516,60.89,31.71,48.28,60.18,8.333333333333334,1,1,0,0,6,5,4,1,820.5,1336846.4,641522.56,258065.06,0,3572.3535 -13725,16888,30567,30566,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,3.6298938,6.5851965,6.5934219,8,-1,19.55024,0,3,3,2019,15,3,1,26,1,3,0,4.3132195,4.3132195,0,0,0,0,0,1,1,0,0,6.8361125,48.28,60.18,60.89,31.71,8.333333333333334,1,1,0,0,9,5,4,1,820.5,1336846.4,641522.56,258065.06,0,3572.3535 -13726,16889,30568,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-957.31354,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,-9,-9,3.333333333333333,1,1,0,0,11,1,1,1,1706,-322152.81,0,0,0,151.15924 -13727,16890,30569,30570,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.9483776,7.9929595,0,6,0,31.72031,0,3,3,2019,9,0,38,37,1,0,0,11.207356,11.207356,0,0,0,0,0,1,1,0,0,0,44.24,40.71,42.97,35.83,8.333333333333334,1,1,0,1,4,11,4,0,876.5,-8127.7813,32667.93,0,0,2552.1831 -13727,16890,30570,30569,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,7.1428485,7.0865946,0,29,0,2.7752082,0,-9,1,2019,19,6,5,37,1,6,0,29.489496,29.489496,0,0,0,0,0,1,1,0,0,0,42.97,35.83,44.24,40.71,3.333333333333333,1,1,0,1,2,11,4,0,876.5,-8127.7813,32667.93,0,0,2552.1831 -13727,16891,30571,-9,30570,30569,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-965.42743,-9,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.84,50.51,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,534,-174420.22,0,0,0,335.72162 -13728,16892,30572,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.361104,7.8412881,7.5638351,0,0,-942.89667,0,2,-9,2019,9,1,20,26,1,1,0,7.6108375,7.6108375,0,0,0,0,0,1,1,0,5.9396801,7.0885911,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,2009,495500.75,171931.89,176988.81,0,1134.1008 -13729,16893,30573,-9,30576,30574,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.33807,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 -13729,16893,30574,30576,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,9.7311192,9.7217693,0,1,11,-56.668594,0,3,1,2019,11,0,42,47,1,0,0,48.682053,48.682053,0,0,0,0,0,0,0,0,0,0,43.44,61.22,57.06,57.76,3.333333333333333,1,1,0,0,7,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 -13729,16893,30575,-9,30576,30574,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.37219,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 -13729,16893,30576,30574,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.6398749,7.327764,0,1,-11,15.806355,0,2,3,2019,9,0,29,30,1,0,0,7.9991283,7.9991283,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.44,61.22,8.333333333333334,1,1,0,0,5,9,5,1,724,662373,185319.92,669299,168528.52,5668.8486 -13730,16894,30577,30578,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,10,-2,2.3645606,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6617389,0,49,47,51,48,7,1,1,0,0,3,6,3,1,1611,311470.94,182137.88,0,0,3203.9487 -13730,16894,30578,30577,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,7.8064876,7.9220638,6.833478,10,2,-45.929638,0,3,3,2019,10,0,44,44,1,1,0,6.2073979,6.2073979,0,0,0,0,0,1,1,0,3.3262227,6.3056378,51,48,49,47,7,1,1,0,0,8,6,3,1,1611,311470.94,182137.88,0,0,3203.9487 -13731,16895,30579,30580,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.9183273,8.7121735,0,1,15,-17.480391,-9,-9,-9,2019,13,3,47,0,1,3,0,18.186575,18.186575,0,0,0,0,0,0,0,0,6.9440932,0,38.34,62.12,54.2,57.49,8.333333333333334,1,1,0,0,2,2,5,1,228.5,321311.09,20761.855,0,0,3539.8779 -13731,16895,30580,30579,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.768826,7.4382439,0,1,-15,128.54192,0,-9,-9,2019,10,0,38,38,1,0,0,6.7536602,6.7536602,0,0,0,0,0,0,0,0,0,0,54.2,57.49,38.34,62.12,8.333333333333334,1,1,0,0,2,2,5,1,228.5,321311.09,20761.855,0,0,3539.8779 -13732,16896,30581,30582,-9,-9,1,0,48,0,0,0,1,1,-9,1,2,0,0,0,27,-3,0,0,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.4,32.86,46.5,58.26,3.333333333333333,2,3,0,0,0,2,1,0,286,1877354.4,1129695.8,537828.5,0,110.96363 -13732,16896,30582,30581,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,27,3,0,0,3,2,2019,8,2,0,30,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,38.4,32.86,6.666666666666667,2,3,1,0,3,2,1,0,286,1877354.4,1129695.8,537828.5,0,110.96363 -13732,16897,30583,-9,30581,30582,1,1,23,0,0,0,2,2,-9,0,4,8.0858631,7.7651033,0,0,0,-1053.0168,0,1,1,2019,19,6,37,10,1,6,1,7.0350866,7.0350866,0,0,0,0,0,1,1,0,0,0,33.55,44.27,-9,-9,5,2,3,0,0,4,2,3,0,2111,121337.15,16495.279,0,0,784.93146 -13732,16898,30584,-9,30581,30582,1,1,20,0,0,0,2,2,-9,0,5,7.1147871,7.1149726,0,0,0,-1062.969,0,1,1,2019,0,0,30,31,1,0,1,5.0843487,5.0843487,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,2,3,0,0,2,2,2,0,385,84644.352,0,0,0,817.88904 -13733,16899,30585,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.8670697,5.1318436,0,0,-1056.8256,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2508187,62.49,55.09,-9,-9,10,1,1,0,0,0,12,2,1,609,-255834.05,89903.969,76827.555,0,304.43625 -13734,16900,30586,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1075.5828,-9,-9,-9,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32.72,20.09,-9,-9,6.666666666666667,1,1,1,0,7,2,1,0,328,-783.75397,0,0,0,1863.1177 -13734,16901,30587,30588,-9,-9,1,1,30,0,0,0,3,3,-9,1,3,0,0,0,1,2,0,-9,-9,-9,2019,13,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,28.56,47.81,34.3,42.98,5,1,1,1,0,0,2,1,0,694.5,247221.33,0,0,0,939.85938 -13734,16901,30588,30587,30586,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,1,-2,0,-9,3,-9,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,34.3,42.98,28.56,47.81,0,1,1,1,0,0,2,1,0,694.5,247221.33,0,0,0,939.85938 -13735,16902,30589,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-907.75732,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,42.01,-9,-9,5,1,1,0,0,0,2,1,0,330,-62038.391,0,0,0,1545.0433 -13736,16903,30590,30591,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.212678,6.9548726,22,17,-100.52206,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1382728,59.21,43.05,53.82,45.88,8.333333333333334,1,1,0,0,9,5,3,1,314.5,391657.25,404840.59,0,0,2189.3706 -13736,16903,30591,30590,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.0113311,7.0338812,8,-17,-3.6299102,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7371373,53.82,45.88,59.21,43.05,8.333333333333334,1,1,0,0,0,5,3,1,314.5,391657.25,404840.59,0,0,2189.3706 -13737,16904,30592,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-898.54193,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,38.46,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,389,178628.8,0,227289.52,57475.234,1431.3905 -13738,16905,30593,30594,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8331003,8.5495558,0,11,1,-28.270845,0,-9,-9,2019,10,0,55,67,1,0,0,16.570568,16.570568,0,0,0,0,0,0,0,0,3.1652508,0,47.58,56.39,57.16,56.15,6.666666666666667,1,1,0,0,9,5,5,1,1657,1043823.8,666178.81,225029.72,0,3787.335 -13738,16905,30594,30593,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.5455904,8.8204985,0,32,-1,-19.205944,0,2,2,2019,8,0,54,89,1,0,0,13.948536,13.948536,0,0,0,0,0,0,0,0,2.9037211,0,57.16,56.15,47.58,56.39,8.333333333333334,1,1,0,0,12,5,5,1,1657,1043823.8,666178.81,225029.72,0,3787.335 -13738,16906,30595,-9,30593,30594,1,0,22,0,0,0,1,1,-9,0,4,7.7834558,8.0729628,0,0,0,-896.01831,0,1,1,2019,13,1,45,0,1,1,1,6.843997,6.843997,0,0,0,0,0,0,0,0,4.5158219,0,37.02,61.3,-9,-9,6.666666666666667,1,1,0,0,2,5,4,1,651,64789.758,-103693.07,152905.73,109145.41,1460.6233 -13739,16907,30596,30597,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,9.5466061,9.2838144,0,15,-3,1.60027,0,2,2,2019,12,2,34,30,1,2,0,30.64311,30.64311,0,0,0,0,0,1,1,0,6.8978605,0,47.24,53.95,36.38,53.47,6.666666666666667,1,1,0,0,11,9,5,1,642.66669,2129615.8,860389.88,1250561.4,274498.31,9055.9395 -13739,16907,30597,30596,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.2958231,9.4228716,0,16,3,-31.192537,0,2,2,2019,13,2,40,45,1,2,0,33.854156,33.854156,0,0,0,0,0,1,1,0,4.2290816,0,36.38,53.47,47.24,53.95,5,1,1,0,0,11,9,5,1,642.66669,2129615.8,860389.88,1250561.4,274498.31,9055.9395 -13739,16907,30598,-9,30596,30597,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.51434,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,642.66669,2129615.8,860389.88,1250561.4,274498.31,9055.9395 -13740,16908,30599,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,6.123096,6.7171254,5.6875954,0,0,-931.54913,0,2,2,2019,12,0,25,35,1,0,0,2.3737636,2.3737636,0,0,0,0,7,1,1,0,5.2471881,0,42.52,53.48,-9,-9,5,1,1,0,0,10,5,2,0,1445,-77092.898,21177.246,0,0,427.09296 -13740,16908,30600,-9,30599,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.86743,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1445,-77092.898,21177.246,0,0,427.09296 -13741,16909,30601,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-920.29004,0,-9,-9,2019,36,12,0,44,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,16.68,31.82,-9,-9,1.666666666666667,1,1,0,1,6,6,1,0,526,67196.203,0,0,0,416.63007 -13741,16910,30602,-9,30601,-9,1,1,28,0,0,0,2,2,-9,0,1,6.7851057,7.0470963,0,0,0,-1013.0943,0,3,-9,2019,15,3,30,30,1,3,1,3.7947803,3.7947803,0,0,0,0,0,1,1,0,0,0,37.34,23.61,-9,-9,5,1,1,0,1,3,6,2,0,170,-825268.94,0,0,0,1228.1777 -13742,16911,30603,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,8.758255,8.8542147,0,0,0,-1141.7655,0,3,1,2019,10,0,43,41,1,0,0,13.711888,13.711888,0,0,0,0,0,1,1,0,2.2990379,0,44.09,35.84,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,3083,-118849.84,153714.38,138017.19,70328.633,2054.5383 -13743,16912,30604,-9,30605,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.479,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,309,344048,71973.828,159367.5,62280.336,1323.8853 -13743,16912,30605,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.877943,7.5055318,0,0,0,-886.30994,0,-9,-9,2019,16,4,30,30,1,4,0,7.005733,7.005733,0,0,0,0,0,1,1,0,0,0,41.78,49.92,-9,-9,3.333333333333333,1,1,0,1,9,12,3,0,309,344048,71973.828,159367.5,62280.336,1323.8853 -13744,16913,30606,-9,30608,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1076.1401,-9,1,-9,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,2,1,740.33331,-157565.73,2308.667,0,0,1344.7953 -13744,16913,30607,-9,30608,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1102.0228,-9,1,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,.8436659,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,740.33331,-157565.73,2308.667,0,0,1344.7953 -13744,16913,30608,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,5.7504406,7.3208108,7.0956435,0,0,-1188.1368,0,1,2,2019,5,0,20,30,1,0,0,1.8527124,1.8527124,0,0,0,0,0,1,1,0,6.9704862,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,11,4,2,1,740.33331,-157565.73,2308.667,0,0,1344.7953 -13745,16914,30609,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.1456881,7.9698524,0,0,0,-1034.3943,0,-9,2,2019,8,0,60,60,1,0,0,5.5595474,5.5595474,0,0,0,0,2,0,0,0,0,0,49.44,54.26,-9,-9,5,1,1,0,0,7,5,4,0,615,-56867.305,17205.869,153970.34,69485.414,1377.0682 -13746,16915,30610,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,9.2270794,9.5527067,0,0,0,-1026.9026,0,-9,-9,2019,20,8,65,65,1,8,0,22.481062,22.481062,0,0,0,0,0,0,0,0,2.1276357,0,46.35,46.22,-9,-9,5,1,1,0,0,4,8,5,0,881,-120541.02,0,408572.56,296322.69,3501.3926 -13747,16916,30611,30612,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,7.7314472,7.7306948,0,25,4,-30.15122,0,1,1,2019,12,0,17,17,1,0,0,16.788425,16.788425,0,0,0,0,71.5,1,1,0,0,0,33.83,57.61,54.14,58.86,6.666666666666667,1,1,0,0,9,4,4,1,888,174179.05,152141.06,0,0,3590.9326 -13747,16916,30612,30611,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.0072346,8.7215633,0,25,-4,81.055397,0,2,2,2019,6,1,24,55,1,1,0,30.169666,30.169666,0,0,0,0,71.5,1,1,0,0,0,54.14,58.86,33.83,57.61,8.333333333333334,1,1,0,0,10,4,4,1,888,174179.05,152141.06,0,0,3590.9326 -13747,16916,30613,-9,30611,30612,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.85522,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,888,174179.05,152141.06,0,0,3590.9326 -13747,16916,30614,-9,30611,30612,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.36755,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,888,174179.05,152141.06,0,0,3590.9326 -13748,16917,30615,30616,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.840909,8.6093569,0,4,0,29.805882,0,-9,-9,2019,10,2,50,45,1,2,0,12.642613,12.642613,0,0,0,0,0,0,0,0,1.3796887,0,59.88,48.2,54.79,55.86,8.333333333333334,1,1,0,0,8,5,5,1,415.5,2473841.5,1941739,248301.67,0,3072.8894 -13748,16917,30616,30615,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.8720803,7.6458788,4,9,47.235691,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.3087163,8.0778303,54.79,55.86,59.88,48.2,8.333333333333334,1,1,0,0,1,5,5,1,415.5,2473841.5,1941739,248301.67,0,3072.8894 -13749,16918,30617,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.6316962,7.8881583,0,0,0,-1049.2424,0,2,2,2019,10,0,40,40,1,0,0,6.8766475,6.8766475,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,6.666666666666667,1,1,0,0,4,12,3,0,376,-255715.34,5395.604,0,0,1504.158 -13750,16919,30618,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2283649,7.1533418,0,0,-1093.5298,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6469913,7.0306668,57.62,35.49,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,125,1305565,249816.08,441890.59,0,1185.6517 -13751,16920,30619,30621,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.8513975,8.1903391,0,10,3,-134.71704,0,-9,-9,2019,4,0,8,45,1,0,0,41.662895,41.662895,0,0,0,0,0,1,1,0,1.9032289,0,56.52,48.31,44.42,52.34,10,2,3,0,0,11,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 -13751,16920,30620,-9,30621,30619,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.0302,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 -13751,16920,30621,30619,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,8.3791571,8.377718,0,10,-3,76.466553,0,-9,-9,2019,11,0,38,42,1,0,0,14.70534,14.70534,0,0,0,0,0,1,1,0,7.5157967,0,44.42,52.34,56.52,48.31,8.333333333333334,2,3,0,0,12,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 -13751,16920,30622,-9,30621,30619,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.543,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,617.75,336696.63,22843.357,349828.5,126625.95,3511.5037 -13752,16921,30623,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,6.6882396,6.739924,0,0,0,-1116.6492,0,-9,-9,2019,8,0,30,30,1,0,0,2.6996834,2.6996834,0,0,0,0,0,1,1,0,0,0,57.37,31.85,-9,-9,8.333333333333334,1,1,0,0,9,5,2,1,1060,347845.09,106234.57,157293.44,0,555.89471 -13752,16922,30624,-9,30623,-9,1,1,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1077.2872,0,2,-9,2019,25,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,3.2272985,0,24.62,47.51,-9,-9,1.666666666666667,1,1,0,0,0,5,1,1,121,187562.5,0,0,0,31.774624 -13753,16923,30625,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.2495599,6.3269348,0,0,-918.58728,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,0,11.383671,0,0,1,1,0,0,6.6660438,45.95,23.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,253,446225.16,79393.508,-16514.834,0,757.94366 -13754,16924,30626,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.1315546,8.0845604,0,0,0,-1106.3241,0,-9,-9,2019,7,1,39,39,1,1,0,10.763562,10.763562,0,0,0,0,2,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,1,4,1,662,-439247.03,58561.961,0,0,1075.833 -13755,16925,30627,30628,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.2097912,9.3851023,0,15,6,-71.447166,0,3,2,2019,32,11,56,65,1,11,0,21.157124,21.157124,0,0,0,0,0,0,0,0,6.5042529,0,26.75,58.2,60.02,56.42,1.666666666666667,1,1,0,0,10,6,5,1,498.5,130563.6,141045.81,313824.81,252980.06,6564.9717 -13755,16925,30628,30627,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.6384306,8.6375351,0,15,-6,36.308727,0,1,2,2019,7,0,42,45,1,0,0,17.677265,17.677265,0,0,0,0,0,0,0,0,7.0606565,0,60.02,56.42,26.75,58.2,8.333333333333334,1,1,0,0,8,6,5,1,498.5,130563.6,141045.81,313824.81,252980.06,6564.9717 -13756,16926,30629,30631,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,8.2126951,8.2262001,0,3,-1,-32.460075,0,-9,-9,2019,11,1,48,40,1,1,0,11.859464,11.859464,0,0,0,0,0,1,1,0,2.5071414,0,48.93,50.55,36.16,61.92,10,1,1,0,0,2,9,4,1,456.66666,436271.56,130812.65,347436.13,218389.14,3348.7053 -13756,16926,30630,-9,30629,30631,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.0815,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,456.66666,436271.56,130812.65,347436.13,218389.14,3348.7053 -13756,16926,30631,30629,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,8.2338123,8.2599192,0,3,1,-168.69862,0,2,2,2019,13,1,44,43,1,1,0,11.889507,11.889507,0,0,0,0,0,1,1,0,0,0,36.16,61.92,48.93,50.55,6.666666666666667,1,1,0,0,7,9,4,1,456.66666,436271.56,130812.65,347436.13,218389.14,3348.7053 -13757,16927,30632,-9,30633,30634,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.1321,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 -13757,16927,30633,30634,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,6.7933311,7.2394285,0,7,-1,63.342869,0,-9,-9,2019,12,0,23,23,1,0,0,4.6306133,4.6306133,0,0,0,0,0,1,1,0,0,0,45.59,39.01,48.56,48.19,5,1,1,0,0,10,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 -13757,16927,30634,30633,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.0360966,8.2948561,0,7,1,28.687542,0,-9,-9,2019,9,1,40,40,1,1,0,9.5389709,9.5389709,0,0,0,0,0,1,1,0,0,0,48.56,48.19,45.59,39.01,1.666666666666667,1,1,0,1,9,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 -13757,16927,30635,-9,30633,30634,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.73846,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,965.25,216636.5,150777.78,156613.63,123420.41,2360.3354 -13758,16928,30636,30637,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,3.8563967,3.8790219,0,10,-1,-66.003464,0,2,2,2019,6,0,18,20,1,0,0,.2961103,.2961103,0,0,0,0,0,0,0,0,0,0,47.15,56.66,47.72,51.1,10,1,1,0,0,11,9,3,1,1487,1034635.9,764181.13,370507.78,0,1568.5586 -13758,16928,30637,30636,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.1495571,7.737206,0,10,1,-23.043858,0,2,3,2019,7,0,40,40,1,0,0,9.3990707,9.3990707,0,0,0,0,0,0,0,0,1.8042465,0,47.72,51.1,47.15,56.66,8.333333333333334,1,1,0,0,11,9,3,1,1487,1034635.9,764181.13,370507.78,0,1568.5586 -13759,16929,30638,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1954832,7.9839721,0,0,0,-964.30255,0,-9,-9,2019,12,0,42,42,1,0,0,7.1151767,7.1151767,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,1639,-307143.66,-119894.03,0,0,1433.731 -13760,16930,30639,30640,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,6.438838,6.7283869,0,10,-5,-180.56914,0,3,3,2019,12,1,70,70,1,1,0,1.4594636,1.4594636,1,0,0,0,56,1,1,0,7.3450098,0,44,39.28,40.43,17.92,6.666666666666667,1,1,0,0,12,10,2,1,364,1409524,489004.94,236556.69,0,2255.9456 -13760,16930,30640,30639,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.1492238,6.1556926,10,5,50.020107,0,-9,-9,2019,25,11,0,0,4,11,0,0,0,1,0,32.266613,0,0,1,1,0,6.4525151,6.2382026,40.43,17.92,44,39.28,3.333333333333333,1,1,0,0,4,10,2,1,364,1409524,489004.94,236556.69,0,2255.9456 -13761,16931,30641,30642,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.9529514,7.8662539,10,0,45.30489,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.261498,7.7433271,54.2,57.49,49.46,56.91,8.333333333333334,1,1,0,0,9,6,3,1,1086.5,778330.63,233988.72,81636.234,0,3015.2363 -13761,16931,30642,30641,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,10,0,-37.864971,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3951004,0,49.46,56.91,54.2,57.49,8.333333333333334,1,1,0,0,0,6,3,1,1086.5,778330.63,233988.72,81636.234,0,3015.2363 -13762,16932,30643,-9,-9,-9,1,0,53,0,1,0,3,3,-9,0,2,6.9452076,7.2033167,0,0,0,-1101.9771,0,3,2,2019,11,0,20,16,1,0,0,5.8491135,5.8491135,0,0,0,0,0,1,1,0,0,0,49.57,29.01,-9,-9,3.333333333333333,1,1,0,0,2,11,2,0,1105,405024.06,-975.15228,0,0,1327.6365 -13763,16933,30644,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.3917828,8.1015587,0,0,0,-989.35889,-9,2,-9,2019,29,12,43,0,1,12,0,8.4596863,8.4596863,0,0,0,0,14.5,0,0,0,0,0,28.28,37.2,-9,-9,1.666666666666667,1,1,0,1,9,9,4,1,867,-157129.94,25199.941,0,0,1079.0763 -13764,16934,30645,-9,30646,30647,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-932.07617,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,4,1,438.33334,41969.23,1117.5966,0,0,2004.572 -13764,16934,30646,30647,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,14,-4,27.148745,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.3287005,0,54.2,57.49,42.46,54.85,8.333333333333334,1,1,0,0,2,4,4,1,438.33334,41969.23,1117.5966,0,0,2004.572 -13764,16934,30647,30646,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7125206,8.6520576,0,14,4,152.40904,0,2,2,2019,10,0,42,42,1,0,0,14.907899,14.907899,0,0,0,0,0,1,1,0,0,0,42.46,54.85,54.2,57.49,6.666666666666667,1,1,0,0,9,4,4,1,438.33334,41969.23,1117.5966,0,0,2004.572 -13765,16935,30648,-9,-9,-9,1,1,95,0,0,0,3,3,-9,0,3,0,6.7494826,6.2582541,0,0,-1099.38,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,14.048042,22.054016,137.25479,0,1,1,0,0,6.3429351,56,44,-9,-9,8,1,1,0,0,0,10,2,1,379,271280.44,117555.04,294722.06,0,813.8429 -13766,16936,30649,30650,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.6175785,8.4589882,0,7,2,-39.701672,0,2,2,2019,11,0,37,37,1,0,0,17.04034,17.04034,0,0,0,0,0,1,1,0,0,0,42.05,58.8,57.16,56.15,8.333333333333334,1,1,0,0,10,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 -13766,16936,30650,30649,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,8.121911,8.5381756,0,11,-2,61.005611,0,2,2,2019,5,0,38,40,1,0,0,10.63794,10.63794,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.05,58.8,8.333333333333334,1,1,0,0,4,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 -13766,16936,30651,-9,30650,30649,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.29938,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 -13766,16936,30652,-9,30650,30649,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6852,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,450.75,360434.41,139460.5,383756.16,145650.42,4029.2263 -13767,16937,30653,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.8610806,7.7067757,0,0,-1063.3915,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.2725389,7.9083385,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,1,7,3,0,502,1342160.3,576843.88,265376.31,0,1793.2957 -13768,16938,30654,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.8465939,7.7419567,0,0,0,-1203.4338,0,3,3,2019,8,0,39,39,1,0,0,7.3313599,7.3313599,0,0,0,0,0,0,0,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,329,568977.06,466305.97,128796.16,74416.414,745.81189 -13769,16939,30655,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.666297,7.4848423,0,0,0,-929.98785,0,1,3,2019,6,1,30,30,1,1,0,5.6947989,5.6947989,0,0,0,0,0,1,1,0,0,0,57.18,47.78,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,454,-109998.02,-36592.461,55114.789,25776.174,1159.8942 -13770,16940,30656,-9,30658,30657,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1004.8281,-9,2,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,10,5,0,2308.6667,2091594.4,1345209.8,397516.34,113322.06,3887.0596 -13770,16940,30657,30658,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.3842983,9.5348577,0,6,-2,31.470274,0,2,2,2019,6,0,28,56,1,0,0,48.564083,48.564083,0,0,0,0,0,0,0,0,0,0,52.81,41.69,44.17,26.06,8.333333333333334,4,2,0,0,7,10,5,0,2308.6667,2091594.4,1345209.8,397516.34,113322.06,3887.0596 -13770,16940,30658,30657,-9,-9,1,0,53,0,1,0,2,2,-9,0,1,0,0,0,6,2,31.342962,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44.17,26.06,52.81,41.69,8.333333333333334,4,5,0,0,0,10,5,0,2308.6667,2091594.4,1345209.8,397516.34,113322.06,3887.0596 -13771,16941,30659,30660,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,4.5874333,4.3622737,10,-4,-16.742842,0,1,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.0899229,4.4467373,57.16,56.15,61.23,47.38,10,1,1,0,0,6,8,2,1,1159,1836089.3,357451.69,815796,0,6797.1284 -13771,16941,30660,30659,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,0,0,10,4,-33.410851,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,5.2891545,0,46.22295,0,1,1,0,5.9500227,0,61.23,47.38,57.16,56.15,10,1,1,0,0,6,8,2,1,1159,1836089.3,357451.69,815796,0,6797.1284 -13772,16942,30661,-9,30664,30663,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.0629,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 -13772,16942,30662,-9,30664,30663,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.677,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 -13772,16942,30663,30664,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.1434755,9.1397686,0,9,5,74.527328,0,1,1,2019,10,0,53,43,1,0,0,24.604486,24.604486,0,0,0,0,0,0,0,0,2.8474529,0,52.51,54.26,53.9,52.09,6.666666666666667,2,3,0,0,7,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 -13772,16942,30664,30663,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.5151372,7.9260235,0,9,-5,-175.57301,0,2,3,2019,11,0,26,27,1,0,0,9.2382736,9.2382736,0,0,0,0,0,0,0,0,2.7794831,0,53.9,52.09,52.51,54.26,8.333333333333334,2,3,0,0,5,6,5,1,763.5,508746.97,123452.45,502868.56,0,4118.6523 -13773,16943,30665,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,0,0,0,0,0,-979.58221,0,2,2,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,2,1,1,0,0,0,36.14,38,-9,-9,3.333333333333333,1,1,1,1,3,7,1,0,2988,21780.355,0,0,0,1098.61 -13774,16944,30666,30667,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.4997406,7.4907508,0,1,-6,-36.951897,-9,-9,-9,2019,7,0,40,0,1,0,0,4.0501323,4.0501323,0,0,0,0,0,0,0,0,0,0,60.65,38.31,54.79,55.86,8.333333333333334,2,3,0,0,5,8,2,0,1472,677092.75,0,359744.72,0,738.34875 -13774,16944,30667,30666,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,0,0,0,1,6,-105.12119,0,-9,-9,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,60.65,38.31,10,2,3,0,0,8,8,2,0,1472,677092.75,0,359744.72,0,738.34875 -13775,16945,30668,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.969388,7.5730338,0,0,0,-1079.5973,0,2,2,2019,8,0,36,16,1,0,0,8.3800335,8.3800335,0,0,0,0,0,0,0,0,0,0,58.77,29.82,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,174,468643.44,-61385.105,0,0,649.68555 -13775,16946,30669,-9,30668,-9,1,0,20,0,0,0,2,2,-9,0,4,7.0599775,7.2787209,0,0,0,-1009.2907,0,2,-9,2019,11,0,8,14,1,2,1,19.505625,19.505625,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,3,1,509,-69007.32,0,0,0,1407.2534 -13776,16947,30670,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.686882,8.8234024,0,0,0,-946.23004,0,2,2,2019,21,9,36,36,1,9,0,20.280716,20.280716,0,0,0,0,0,1,1,0,3.4360662,0,20.17,66.48999999999999,-9,-9,3.333333333333333,1,1,0,0,10,8,5,1,530,149137.56,68295.367,0,0,2442.832 -13777,16948,30671,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.2379475,8.183547,0,0,0,-983.60095,-9,2,2,2019,8,0,37,0,1,0,0,9.700491,9.700491,0,0,0,0,0,0,0,0,0,0,58.08,43.46,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,97,186393.75,49219.945,0,0,633.15338 -13777,16949,30672,-9,30671,-9,1,1,22,0,0,1,1,0,-9,0,4,0,4.9049911,4.3995805,0,0,-913.56085,-9,2,-9,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,4.8328667,0,28.86,61.09,-9,-9,6.666666666666667,1,1,0,0,2,11,2,1,1119,355973.19,-67824.57,0,0,4205.0967 -13778,16950,30673,-9,30676,30675,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.33331,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 -13778,16950,30674,-9,30676,30675,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9994,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 -13778,16950,30675,30676,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.5608492,8.2974825,0,8,5,28.494158,0,2,2,2019,9,0,38,38,1,0,0,14.703483,14.703483,0,0,0,0,0,1,1,0,3.6972709,0,54.79,55.86,23.13,65.14,8.333333333333334,1,1,0,0,9,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 -13778,16950,30676,30675,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,9.1060476,9.5314674,0,8,-5,88.942909,0,2,2,2019,21,9,50,48,1,9,0,21.852318,21.852318,0,0,0,0,0,1,1,0,0,0,23.13,65.14,54.79,55.86,6.666666666666667,1,1,0,0,9,4,5,1,620.5,536170.81,237551.83,344294.03,167671.75,5049.8696 -13779,16951,30677,30678,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.1635327,6.82862,56,-3,116.23306,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0150466,7.172482,60.3,46.58,57.16,56.15,10,1,1,0,0,0,7,3,1,310,589539.13,434575.88,174508.44,0,5043.3975 -13779,16951,30678,30677,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.5316906,7.3412371,56,3,-19.12184,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.32617,7.4784522,57.16,56.15,60.3,46.58,10,1,1,0,0,0,7,3,1,310,589539.13,434575.88,174508.44,0,5043.3975 -13780,16952,30679,30680,-9,-9,1,0,48,0,1,0,3,3,-9,1,1,0,0,0,10,-13,110.44258,0,3,3,2019,33,12,0,25,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,22.01,28.09,46.32,50.26,0,1,1,0,0,10,13,3,1,722,-40378.371,-30857.951,112751.42,0,2786.3984 -13780,16952,30680,30679,-9,-9,1,1,61,0,1,0,3,3,-9,0,4,8.35987,8.2287846,0,10,13,168.54028,0,2,2,2019,15,2,45,40,1,2,0,12.776672,12.776672,0,0,0,0,0,1,1,0,0,0,46.32,50.26,22.01,28.09,3.333333333333333,1,1,0,0,11,13,3,1,722,-40378.371,-30857.951,112751.42,0,2786.3984 -13780,16952,30681,-9,30679,30680,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1043.0107,-9,3,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,722,-40378.371,-30857.951,112751.42,0,2786.3984 -13780,16953,30682,-9,30679,30680,1,1,19,0,1,0,3,3,-9,0,5,7.8869629,7.9616928,0,0,0,-969.79761,0,3,3,2019,8,0,37,36,1,0,1,8.056819,8.056819,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,4,1,828,232612.52,-47296.094,0,0,1427.8823 -13781,16954,30683,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,3.4416032,3.6467268,0,0,-1015.9253,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,3.6348367,60.29,52.11,-9,-9,10,1,1,0,0,0,1,2,1,406,-256435.52,119125.98,85062.852,-11085.271,692.61432 -13782,16955,30684,-9,-9,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-988.90417,-9,2,2,2019,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,5,1,0,59,-206382.98,0,0,0,1152.6051 -13783,16956,30685,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-933.68433,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,-9,-9,5,1,1,0,1,0,13,1,0,215,334189.41,0,0,0,990.01733 -13783,16957,30686,-9,30685,-9,1,0,33,0,0,0,2,2,-9,0,3,7.9308763,8.4129047,0,0,0,-1036.0117,0,3,3,2019,13,1,40,38,1,1,0,8.7890596,8.7890596,0,0,0,0,0,1,1,0,0,0,36.93,56.27,-9,-9,5,1,1,0,0,7,13,4,0,371,-229275.31,0,139924.38,66689.367,863.20123 -13784,16958,30687,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7224741,8.3979368,0,0,0,-980.17389,0,3,3,2019,7,0,42,38,1,0,0,14.502972,14.502972,0,0,0,0,0,0,0,0,2.7136662,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,356,420062.13,171786.73,457138.25,52614.781,1738.5288 -13785,16959,30688,30689,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,6.3369889,6.3478913,35,5,-57.360554,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,6.4083033,27.3,20.24,47.31,50.2,1.666666666666667,1,1,0,1,11,10,4,1,282.5,168048.03,41833.176,135578.81,23036.766,2342.2583 -13785,16959,30689,30688,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.4679632,8.1739683,0,35,-5,48.519066,0,2,2,2019,14,2,39,38,1,2,0,12.038878,12.038878,0,0,0,0,14.5,1,1,0,0,0,47.31,50.2,27.3,20.24,5,1,1,0,0,13,10,4,1,282.5,168048.03,41833.176,135578.81,23036.766,2342.2583 -13786,16960,30690,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,3.2279873,3.408751,0,0,-1002.0381,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,15.542004,41.618584,0,0,1,1,0,3.4802756,0,34.37,38.44,-9,-9,5,1,1,0,0,0,11,2,1,1282,507.16788,0,0,0,1361.5883 -13786,16961,30691,-9,30690,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1045.9675,0,2,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,7,1,1,0,0,0,35.16,28.62,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,923,172696.25,0,0,0,796.01361 -13787,16962,30692,30693,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.7673497,7.1638484,57,4,142.24867,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6613398,48.45,57.49,58.15,52.91,8.333333333333334,1,1,0,0,0,1,2,1,1177.5,120645.02,-79401.016,85546.234,0,1723.157 -13787,16962,30693,30692,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,2.8596649,3.134629,57,-4,-210.83925,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.2560334,58.15,52.91,48.45,57.49,8.333333333333334,1,1,0,0,0,1,2,1,1177.5,120645.02,-79401.016,85546.234,0,1723.157 -13788,16963,30694,30695,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,40,0,45.150215,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.1,47.17,34.81,45.01,0,1,1,0,0,5,6,4,1,580,526860.44,526854.88,94667.375,0,1338.3689 -13788,16963,30695,30694,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,8.464282,8.5733986,0,10,0,-23.510202,0,3,3,2019,12,0,50,40,1,0,0,9.547925,9.547925,0,0,0,0,27,0,0,0,0,0,34.81,45.01,33.1,47.17,10,1,1,0,0,13,6,4,1,580,526860.44,526854.88,94667.375,0,1338.3689 -13788,16964,30696,-9,30694,30695,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1003.8138,0,3,3,2019,0,0,0,11,3,0,1,0,0,0,0,0,0,120,0,0,0,0,0,30.39,47.25,-9,-9,10,1,1,1,0,4,6,1,1,776,0,0,0,0,0 -13789,16965,30697,30698,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.311882,8.27176,0,6,-2,6.4899116,0,1,1,2019,15,3,42,37,1,3,0,12.580981,12.580981,0,0,0,0,0,1,1,0,.62523651,0,46.44,59.62,51,56,8.333333333333334,1,1,0,0,7,7,5,1,616.5,-75424.492,-59636.25,0,0,3216.3872 -13789,16965,30698,30697,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2465277,8.1754303,0,6,2,-77.973969,0,-9,-9,2019,10,0,37,40,1,1,0,11.433708,11.433708,0,0,0,0,0,1,1,0,0,0,51,56,46.44,59.62,7,1,1,0,0,1,7,5,1,616.5,-75424.492,-59636.25,0,0,3216.3872 -13790,16966,30699,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.7523723,7.9230847,0,0,0,-1017.9695,0,2,2,2019,11,1,33,18,1,1,0,9.8279428,9.8279428,0,0,0,0,0,0,0,0,2.2147992,0,49.95,56.68,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,1608,-148085.06,-16699.773,0,0,1288.7585 -13791,16967,30700,30701,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.4792233,8.0601692,0,6,0,36.432343,0,2,2,2019,8,1,43,43,1,1,0,11.875099,11.875099,0,0,0,0,2,1,1,0,4.3544173,0,56.44,52.37,49.04,55.86,8.333333333333334,1,1,0,0,6,13,4,1,1240.3334,8348.2891,19873.424,55497.863,43577.719,2871.7104 -13791,16967,30701,30700,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.9146013,7.4165969,0,6,0,36.141094,0,-9,-9,2019,14,2,32,32,1,2,0,8.5691805,8.5691805,0,0,0,0,0,1,1,0,2.3776484,0,49.04,55.86,56.44,52.37,8.333333333333334,1,1,0,0,6,13,4,1,1240.3334,8348.2891,19873.424,55497.863,43577.719,2871.7104 -13791,16967,30702,-9,30701,30700,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.28693,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1240.3334,8348.2891,19873.424,55497.863,43577.719,2871.7104 -13792,16968,30703,30705,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,7.2088828,7.3572421,0,2,-2,-55.577606,0,1,1,2019,9,2,60,60,1,2,0,3.0582647,3.0582647,0,0,0,0,0,1,1,0,7.1658435,0,50.84,45.33,39.49,46.59,8.333333333333334,1,1,0,0,7,12,4,1,334.33334,-5369.2524,46495.895,294351.06,147800.55,3706.9963 -13792,16968,30704,-9,30705,30703,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.16,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,334.33334,-5369.2524,46495.895,294351.06,147800.55,3706.9963 -13792,16968,30705,30703,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.3751984,8.3941422,0,2,2,-24.580753,0,-9,-9,2019,21,9,37,42,1,9,0,19.344776,19.344776,0,0,0,0,0,1,1,0,0,0,39.49,46.59,50.84,45.33,6.666666666666667,1,1,0,0,2,12,4,1,334.33334,-5369.2524,46495.895,294351.06,147800.55,3706.9963 -13793,16969,30706,30707,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.1947908,9.3431063,0,8,-11,-113.44057,0,2,3,2019,5,2,42,90,1,2,0,27.205759,27.205759,0,0,0,0,14.5,0,0,0,0,0,50.79,60.82,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,325,9675.9648,551.5625,133332.97,27717.395,3876.6001 -13793,16969,30707,30706,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,6.6330857,6.7259974,0,8,11,-172.13242,0,-9,-9,2019,6,0,15,16,1,0,0,7.277483,7.277483,0,0,0,0,27,0,0,0,.20145787,0,57.16,56.15,50.79,60.82,10,1,1,0,0,10,7,5,1,325,9675.9648,551.5625,133332.97,27717.395,3876.6001 -13794,16970,30708,-9,30711,30710,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.8403,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 -13794,16970,30709,-9,30711,30710,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.79504,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 -13794,16970,30710,30711,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.7080822,8.7138205,0,8,7,-53.615627,0,-9,-9,2019,9,0,40,50,1,1,0,15.445929,15.445929,0,0,0,0,0,1,1,0,0,0,52,55,33.49,64.26000000000001,8,1,1,0,0,1,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 -13794,16970,30711,30710,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7538433,7.5890388,0,22,-7,45.818871,0,2,2,2019,8,0,27,24,1,0,0,7.8171196,7.8171196,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,52,55,8.333333333333334,1,1,0,0,9,9,4,1,602,780516.94,121922.95,518382.19,0,3419.1016 -13795,16971,30712,-9,30714,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-824.56097,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 -13795,16971,30713,-9,30714,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.93488,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 -13795,16971,30714,-9,-9,-9,1,0,28,0,3,0,2,2,-9,0,3,6.7529907,7.4450278,6.2400789,0,0,-860.72516,0,2,2,2019,13,1,16,0,1,1,0,8.0750608,8.0750608,0,0,0,0,0,1,1,0,6.4012799,0,36.14,59.14,-9,-9,6.666666666666667,1,1,0,0,1,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 -13795,16971,30715,-9,30714,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-901.64502,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,2,0,1721.5,-53858.113,0,0,0,2958.3198 -13796,16972,30716,30717,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.3029919,6.5429773,7,12,-26.994118,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7872279,6.4793372,56.9,41.53,32.47,43.58,8.333333333333334,1,1,0,0,8,6,3,1,1055.5,215894.83,0,114069.11,36821.734,2622.0386 -13796,16972,30717,30716,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,7.9885263,8.1273298,0,7,-12,7.1929784,0,-9,-9,2019,21,9,38,38,1,9,0,8.9735136,8.9735136,0,0,0,0,0,1,1,0,0,0,32.47,43.58,56.9,41.53,1.666666666666667,1,1,0,0,9,6,3,1,1055.5,215894.83,0,114069.11,36821.734,2622.0386 -13797,16973,30718,30719,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.1934071,8.041316,0,9,5,25.746109,0,-9,-9,2019,9,2,38,40,1,2,0,11.658612,11.658612,0,0,0,0,0,0,0,0,3.0852578,0,51.83,57.2,43.48,60.97,8.333333333333334,1,1,0,0,11,7,5,1,299,560686.38,74120.805,353283.31,234435.56,4077.0322 -13797,16973,30719,30718,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.4385004,8.645133,0,9,-5,-1.6982106,0,1,1,2019,12,1,42,47,1,1,0,15.502116,15.502116,0,0,0,0,0,0,0,0,3.5360115,0,43.48,60.97,51.83,57.2,6.666666666666667,1,1,0,0,10,7,5,1,299,560686.38,74120.805,353283.31,234435.56,4077.0322 -13798,16974,30720,-9,30723,30721,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.73352,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 -13798,16974,30721,30723,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.0990429,7.9680839,0,9,0,-8.6617393,0,-9,-9,2019,15,2,40,38,1,2,0,11.691346,11.691346,0,0,0,0,0,1,1,0,0,0,41.49,52.34,43.65,58.28,3.333333333333333,1,1,0,0,10,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 -13798,16974,30722,-9,30723,30721,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.4165,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 -13798,16974,30723,30721,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,8.4888124,8.4568748,0,9,0,-118.80806,0,2,2,2019,11,1,43,39,1,1,0,14.910838,14.910838,0,0,0,0,0,1,1,0,2.8829513,0,43.65,58.28,41.49,52.34,8.333333333333334,1,1,0,0,10,9,4,1,639.75,366443.81,98232.203,239339.81,114623.73,3336.4092 -13799,16975,30724,30725,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,0,0,0,22,-1,-28.225939,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,10,2,3,0,0,0,8,4,1,669,515490.97,146596.44,369884.34,0,3496.1445 -13799,16975,30725,30724,-9,-9,1,1,45,0,0,0,3,3,-9,0,5,8.3688221,8.3382215,0,22,1,200.78911,0,3,3,2019,3,1,30,40,1,1,0,18.004559,18.004559,0,0,0,.26228228,0,1,1,0,0,0,62.39,56.71,62.49,55.09,0,2,3,0,0,9,8,4,1,669,515490.97,146596.44,369884.34,0,3496.1445 -13799,16975,30726,-9,30724,30725,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-951.00146,-9,3,3,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,10,2,3,0,0,0,8,4,1,669,515490.97,146596.44,369884.34,0,3496.1445 -13799,16976,30727,-9,30724,30725,1,0,23,0,0,0,2,2,-9,0,3,8.266634,7.9366264,0,0,0,-867.36304,0,3,3,2019,12,0,40,40,1,0,1,9.2245378,9.2245378,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,5,2,3,0,0,2,8,4,1,569,204519.83,-31148.32,0,0,1052.4507 -13799,16977,30728,-9,30724,30725,1,0,21,0,0,0,2,2,-9,0,4,8.41679,8.234664,0,0,0,-1016.4355,0,3,3,2019,11,1,42,35,1,1,1,8.169487,8.169487,0,0,0,0,0,1,1,0,0,0,31.83,54.21,-9,-9,8.333333333333334,2,3,0,0,4,8,4,1,599,4957.5405,58288.516,0,0,1532.9783 -13800,16978,30729,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.5364342,7.3014574,0,0,0,-990.59442,0,3,2,2019,10,2,27,28,1,2,0,8.5506802,8.5506802,0,0,0,0,0,1,1,0,0,0,49.7,28.69,-9,-9,5,2,3,0,0,8,4,3,1,833,-176679.67,58454.27,0,0,1014.2881 -13801,16979,30730,30731,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.3080707,7.2723689,44,-2,40.119465,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,7.2915592,0,0,1,1,0,0,7.2960196,40.95,24.93,47.2,58.1,3.333333333333333,1,1,0,0,4,1,4,1,216.5,3135797.3,1069063,310590.75,0,3237.6021 -13801,16979,30731,30730,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5549788,7.6562304,44,2,-43.834106,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7652955,47.2,58.1,40.95,24.93,8.333333333333334,1,1,0,0,7,1,4,1,216.5,3135797.3,1069063,310590.75,0,3237.6021 -13802,16980,30732,30733,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7139153,7.7629728,16,3,-80.138794,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4109378,7.7875891,58.89,48.6,52.94,41.91,8.333333333333334,1,1,0,0,0,10,3,1,414.5,1245696.5,773807.13,380524.81,0,2473.5569 -13802,16980,30733,30732,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.2543912,7.2065287,23,-3,33.562328,0,1,1,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,2,1,1,0,6.307879,7.2108588,52.94,41.91,58.89,48.6,8.333333333333334,1,1,0,0,6,10,3,1,414.5,1245696.5,773807.13,380524.81,0,2473.5569 -13803,16981,30734,-9,-9,-9,1,0,42,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1099.9833,0,3,2,2019,36,12,0,40,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,21.72,22.57,-9,-9,1.666666666666667,1,1,0,0,8,10,1,1,1313,-115548.29,0,0,0,375.70496 -13804,16982,30735,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.373003,8.4447279,0,0,0,-994.1452,0,1,1,2019,11,0,35,35,1,0,0,14.74104,14.74104,0,0,0,0,0,1,1,0,6.0111537,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,445,174482.77,-73728.773,0,0,1485.001 -13805,16983,30736,-9,30739,30737,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-929.43817,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 -13805,16983,30737,30739,-9,-9,1,1,50,0,2,0,2,2,-9,0,5,8.33745,8.0854721,0,23,5,-19.993681,0,3,3,2019,10,1,40,39,1,1,0,11.455977,11.455977,0,0,0,0,0,1,1,0,6.6390705,0,49.25,61.25,46.92,60.71,8.333333333333334,1,1,0,0,12,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 -13805,16983,30738,-9,30739,30737,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1164.0745,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 -13805,16983,30739,30737,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.0777717,7.1732025,0,10,-5,126.34225,0,-9,-9,2019,9,0,23,20,1,0,0,6.9802866,6.9802866,0,0,0,0,0,1,1,0,1.6232049,0,46.92,60.71,49.25,61.25,8.333333333333334,1,1,0,0,12,4,3,1,1131.5,117488.78,60578.668,0,0,2942.8215 -13806,16984,30740,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,6.379581,6.2559085,4.2995548,0,0,-1021.7533,0,2,1,2019,8,0,40,40,1,0,0,1.9711596,1.9711596,0,0,0,0,0,1,1,0,3.9618919,4.2155676,52.77,55.33,-9,-9,6.666666666666667,1,1,0,0,9,7,2,1,785,414967.97,177347.63,177979.13,0,337.27261 -13807,16985,30741,-9,30743,-9,1,0,16,0,1,1,3,0,-9,0,4,0,4.12218,4.2051029,0,0,-963.98663,-9,2,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,4.5296674,0,38.34,62.12,-9,-9,5,1,1,0,0,0,2,3,0,894.33331,394842.47,81703.469,311917.94,88034.977,2547.6963 -13807,16985,30742,30743,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,7.9346647,8.0458136,0,3,0,-29.815092,0,-9,-9,2019,10,0,35,37,1,0,0,10.459444,10.459444,0,0,0,0,0,1,1,0,0,0,48.87,58.55,40.86,55.37,5,1,1,0,0,2,2,3,0,894.33331,394842.47,81703.469,311917.94,88034.977,2547.6963 -13807,16985,30743,30742,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8213167,7.5798926,0,3,9,-21.116934,0,3,3,2019,15,3,23,33,1,3,0,14.126672,14.126672,0,0,0,0,7,1,1,0,0,0,40.86,55.37,48.87,58.55,1.666666666666667,1,1,0,0,12,2,3,0,894.33331,394842.47,81703.469,311917.94,88034.977,2547.6963 -13808,16986,30744,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,6.8389497,6.9436002,0,0,-1062.2677,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,2.7663,0,15.780542,0,1,1,0,0,7.0111203,46.79,34.69,-9,-9,5,1,1,0,0,0,2,2,1,123,361149.44,127065.7,154499.86,0,1409.438 -13809,16987,30745,30746,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.6764808,7.7023764,0,2,-1,-109.80576,0,3,3,2019,7,0,40,40,1,0,0,6.8299718,6.8299718,0,0,0,0,0,1,1,0,0,0,50.43,51.02,42.1,51.14,8.333333333333334,1,1,0,0,9,12,4,1,2308,855674.44,633218.25,204742.17,0,3069.4487 -13809,16987,30746,30745,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,7.9915094,7.866642,0,2,1,63.128864,-9,-9,-9,2019,9,2,21,0,1,2,0,12.688833,12.688833,0,0,0,0,0,1,1,0,0,0,42.1,51.14,50.43,51.02,10,1,1,0,0,10,12,4,1,2308,855674.44,633218.25,204742.17,0,3069.4487 -13810,16988,30747,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,5,0,0,0,0,0,-999.04895,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,40.61,64.02,-9,-9,5,2,3,0,0,6,2,2,1,737,-385260.97,44454.598,0,0,368.62363 -13810,16989,30748,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1016.9955,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,2,3,1,0,0,2,1,1,472,94913.477,-37840.582,0,0,1154.0872 -13810,16990,30749,-9,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1201.1896,0,-9,-9,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,2,3,1,0,0,2,2,1,412,24555.295,0,0,0,1075.314 -13811,16991,30750,30751,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.3492355,8.3592634,0,8,-6,-40.47839,0,1,1,2019,11,0,50,50,1,2,0,8.7572222,8.7572222,0,0,0,0,0,1,1,0,2.2454829,0,48,57,54.1,59.11,7,1,1,0,0,1,8,5,1,910,611016.94,-10148.606,822943.13,309095.47,6377.9858 -13811,16991,30751,30750,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,8.9640303,8.9111633,0,8,6,34.737247,0,1,1,2019,10,0,60,70,1,0,0,16.146988,16.146988,0,0,0,0,0,1,1,0,8.5499077,0,54.1,59.11,48,57,8.333333333333334,1,1,0,0,10,8,5,1,910,611016.94,-10148.606,822943.13,309095.47,6377.9858 -13811,16991,30752,-9,30750,30751,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.7393,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,910,611016.94,-10148.606,822943.13,309095.47,6377.9858 -13812,16992,30753,30754,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.396461,7.2951622,7,2,-85.773628,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5342541,7.2633872,54.79,55.86,68.32000000000001,8.300000000000001,10,1,1,0,0,0,5,2,1,525.5,906115.44,342760.75,148294.94,0,2439.2329 -13812,16992,30754,30753,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,7,-2,-14.619646,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8753457,0,68.32000000000001,8.300000000000001,54.79,55.86,6.666666666666667,1,1,0,0,0,5,2,1,525.5,906115.44,342760.75,148294.94,0,2439.2329 -13813,16993,30755,30756,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.3289919,7.1620836,0,9,-1,-154.17619,0,3,3,2019,26,11,26,30,1,11,0,7.8958859,7.8958859,0,0,0,0,0,0,0,0,0,0,33.46,40.35,65.06,41.58,0,1,1,0,1,11,6,4,1,608,486471.56,215182.27,148150.91,68202.242,2254.7395 -13813,16993,30756,30755,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.247879,8.259717,6.3490624,9,1,-30.963278,0,3,3,2019,8,0,44,44,1,0,0,7.9123378,7.9123378,0,0,0,0,0,0,0,0,0,6.5404148,65.06,41.58,33.46,40.35,6.666666666666667,1,1,0,0,11,6,4,1,608,486471.56,215182.27,148150.91,68202.242,2254.7395 -13814,16994,30757,30760,-9,-9,1,0,31,0,2,0,1,1,-9,0,5,7.1115332,7.1252561,0,7,-3,-119.095,0,2,2,2019,8,0,24,27,1,0,0,4.9878893,4.9878893,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,57,10,1,1,0,0,6,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 -13814,16994,30758,-9,30757,30760,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.8408,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 -13814,16994,30759,-9,30757,30760,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.24799,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 -13814,16994,30760,30757,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.6226673,8.5089989,0,7,3,48.823162,0,-9,-9,2019,10,0,45,40,1,1,0,10.756408,10.756408,0,0,0,0,0,1,1,0,7.389082,0,50,57,57.06,57.76,7,1,1,0,0,1,4,4,1,558.25,131919.75,4725.0581,184401.08,106852.95,3542.0859 -13815,16995,30761,30763,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.7351871,7.629416,0,18,-5,-27.444769,0,2,3,2019,12,0,30,36,1,0,0,11.909023,11.909023,0,0,0,0,0,1,1,0,.56321353,0,42.93,54.5,52,55,8.333333333333334,1,1,0,0,10,5,5,1,441.66666,497061.13,361981.5,263901.13,169628.02,4347.062 -13815,16995,30762,-9,30761,30763,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.4109,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,441.66666,497061.13,361981.5,263901.13,169628.02,4347.062 -13815,16995,30763,30761,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.1149778,9.273159,0,8,5,12.551593,0,-9,-9,2019,9,0,60,60,1,1,0,15.673142,15.673142,0,0,0,0,0,1,1,0,.50851136,0,52,55,42.93,54.5,8,1,1,0,0,1,5,5,1,441.66666,497061.13,361981.5,263901.13,169628.02,4347.062 -13816,16996,30764,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.0038238,6.7654476,0,0,-1006.5014,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6485763,49.62,29.81,-9,-9,8.333333333333334,1,1,0,0,5,9,2,0,779,-176035.69,57319.594,101725.48,0,401.40128 -13817,16997,30765,30766,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8805876,7.4672546,44,0,-7.9329753,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7309346,7.7345552,51.77,58.57,51,46,8.333333333333334,1,1,0,0,6,8,4,1,255.5,2937400,1051807.3,1489424.1,0,4349.0166 -13817,16997,30766,30765,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.8523278,7.4535594,6,0,-41.884926,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7151256,51,46,51.77,58.57,7,1,1,0,0,0,8,4,1,255.5,2937400,1051807.3,1489424.1,0,4349.0166 -13818,16998,30767,30768,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.5883403,7.4779773,0,3,3,-95.391312,0,-9,-9,2019,10,1,40,45,1,1,0,6.0375962,6.0375962,0,0,0,0,0,0,0,0,0,0,42.27,46.82,57.16,56.15,6.666666666666667,2,3,0,0,2,4,4,0,465,5260171,2794528.5,1956665.1,495030.88,1780.8663 -13818,16998,30768,30767,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,7.5786452,7.5712705,0,3,-3,25.885132,0,2,2,2019,9,0,22,23,1,0,0,10.14974,10.14974,0,0,0,0,0,0,0,0,4.293365,0,57.16,56.15,42.27,46.82,6.666666666666667,1,1,0,0,8,4,4,0,465,5260171,2794528.5,1956665.1,495030.88,1780.8663 -13819,16999,30769,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2590723,8.0725183,0,0,0,-1075.5781,0,1,1,2019,10,0,50,50,1,0,1,9.249465,9.249465,0,0,0,0,0,1,1,0,2.1234674,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,334,243362.27,25234.262,0,0,1784.0803 -13820,17000,30770,30771,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.5366278,8.1745739,0,8,-15,-80.643005,0,2,2,2019,11,1,60,50,1,1,0,6.8641162,6.8641162,0,0,0,0,0,0,0,0,1.3100821,0,54.21,51.96,61.01,44.96,8.333333333333334,1,1,0,0,9,6,5,1,446.5,194753.11,150443.66,131836.31,288910.59,5557.2881 -13820,17000,30771,30770,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0858021,9.0233288,0,8,15,28.081509,0,2,1,2019,9,0,50,45,1,0,0,18.540892,18.540892,0,0,0,0,0,0,0,0,0,0,61.01,44.96,54.21,51.96,1.666666666666667,1,1,0,0,9,6,5,1,446.5,194753.11,150443.66,131836.31,288910.59,5557.2881 -13821,17001,30772,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,5,7.653235,7.8265171,5.5696511,0,0,-1028.5193,0,2,2,2019,11,0,30,20,1,0,0,8.7815018,8.7815018,0,0,0,0,0,1,1,0,5.5052981,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,5,1,3,0,432.5,111879.58,5213.3398,0,0,1461.5734 -13821,17001,30773,-9,30772,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.1415,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,432.5,111879.58,5213.3398,0,0,1461.5734 -13822,17002,30774,30775,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,55,-3,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4637747,0,53.04,50.37,59.21,43.05,10,1,1,0,0,0,9,1,0,595.5,341029.56,0,285326.5,0,752.65887 -13822,17002,30775,30774,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,55,3,0,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6251098,0,59.21,43.05,53.04,50.37,8.333333333333334,1,1,0,0,13,9,1,0,595.5,341029.56,0,285326.5,0,752.65887 -13823,17003,30776,-9,-9,-9,1,0,51,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1040.5026,0,2,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,36.42,44.54,-9,-9,3.333333333333333,1,1,1,1,0,2,2,0,1049,-466412.31,0,0,0,611.61475 -13823,17004,30777,-9,30778,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.17841,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,1,0,772.5,104908.44,0,0,0,722.70441 -13823,17004,30778,-9,30776,-9,1,0,19,1,2,0,3,3,-9,0,4,0,0,0,0,0,-1014.3527,0,2,-9,2019,8,0,0,24,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,1,0,2,2,1,0,772.5,104908.44,0,0,0,722.70441 -13824,17005,30779,30780,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.6723957,8.993227,0,8,4,57.13192,0,2,1,2019,6,0,40,40,1,0,0,19.482178,19.482178,0,0,0,0,2,0,0,0,0,0,57.06,57.76,41.45,60.44,8.333333333333334,1,1,0,0,10,1,5,1,390,228660.25,247083.77,224180.16,121891.55,3819.5547 -13824,17005,30780,30779,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.3205948,8.1217337,0,8,-4,-3.6333482,0,-9,-9,2019,13,1,95,35,1,1,0,3.3022335,3.3022335,0,0,0,0,0,0,0,0,0,0,41.45,60.44,57.06,57.76,3.333333333333333,1,1,0,0,8,1,5,1,390,228660.25,247083.77,224180.16,121891.55,3819.5547 -13825,17006,30781,30782,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.123579,9.1864424,0,36,1,53.122402,0,3,1,2019,8,0,60,75,1,0,0,17.103603,17.103603,0,0,0,0,0,1,1,0,0,0,58.15,52.91,60.87,44.96,8.333333333333334,1,1,0,0,12,13,5,1,443.5,2750445,2290839.5,292868.94,35149.516,5679.0615 -13825,17006,30782,30781,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.6509008,8.6123466,0,36,-1,-27.161747,0,2,2,2019,7,0,38,40,1,0,0,17.575014,17.575014,0,0,0,0,0,1,1,0,3.4022062,0,60.87,44.96,58.15,52.91,8.333333333333334,1,1,0,0,12,13,5,1,443.5,2750445,2290839.5,292868.94,35149.516,5679.0615 -13825,17007,30783,-9,30782,30781,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-944.67957,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,52.8,53.98,-9,-9,8.333333333333334,1,1,0,0,8,13,1,1,1018,-252917.45,0,0,0,866.94812 -13825,17008,30784,-9,30782,30781,1,1,23,0,0,0,2,2,0,0,5,0,0,0,0,0,-1152.7482,-9,1,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,5,13,1,1,271,0,0,0,0,0 -13825,17009,30785,-9,30782,30781,1,1,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-989.27747,-9,1,1,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,.097333193,0,48.53,58.91,-9,-9,10,1,1,0,0,1,13,2,1,539,290714.84,0,0,0,-11.193666 -13826,17010,30786,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.8813982,9.0993595,7.073164,0,0,-1076.6282,0,2,2,2019,8,0,28,30,1,0,0,32.346607,32.346607,0,0,0,0,0,1,1,0,5.7519689,7.1905537,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,396,381588.56,0,145126.78,13636.938,3718.282 -13827,17011,30787,-9,30790,30788,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5787,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 -13827,17011,30788,30790,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.711565,8.7437973,0,9,-1,78.411423,0,-9,-9,2019,7,0,47,43,1,0,0,15.466034,15.466034,0,0,0,0,0,1,1,0,2.5067437,0,61.28,48.88,49.35,59.64,8.333333333333334,1,1,0,0,10,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 -13827,17011,30789,-9,30790,30788,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.1332,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 -13827,17011,30790,30788,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.8290939,7.6363263,0,18,1,116.19996,0,3,3,2019,10,0,25,29,1,0,0,9.8259048,9.8259048,0,0,0,0,0,1,1,0,0,0,49.35,59.64,61.28,48.88,6.666666666666667,1,1,0,0,11,8,4,1,435.5,391415.38,113395.78,430740.06,251896.33,3282.0996 -13828,17012,30791,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,4,7.9856253,7.9322691,0,0,0,-988.79718,-9,2,-9,2019,12,0,8,0,1,2,1,47.672428,47.672428,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,5,4,0,1943,-34860.328,0,0,0,1452.8875 -13829,17013,30792,30793,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.5676479,6.3531137,0,25,7,94.792244,0,2,2,2019,6,0,10,10,1,0,0,6.8356705,6.8356705,0,0,0,0,0,1,1,0,0,0,56.74,55.09,55.54,46.02,8.333333333333334,1,1,0,0,13,4,5,1,294,234150.08,198106.09,195009.55,65866.266,3786.5869 -13829,17013,30793,30792,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.7270374,8.6224699,0,25,-7,31.956831,0,2,3,2019,8,0,36,37,1,0,0,22.649784,22.649784,0,0,0,0,0,1,1,0,3.8081462,0,55.54,46.02,56.74,55.09,8.333333333333334,1,1,0,0,13,4,5,1,294,234150.08,198106.09,195009.55,65866.266,3786.5869 -13830,17014,30794,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.0435705,7.4830027,6.1064024,0,0,-1071.7247,0,3,3,2019,15,3,22,25,1,3,0,5.467958,5.467958,0,0,0,0,7,0,0,0,1.1348155,6.1607189,49.44,54.26,-9,-9,5,1,1,0,0,7,2,3,0,186,175770.08,192594.84,118083.8,21653.234,873.39899 -13831,17015,30795,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.3661361,6.4194593,0,0,-943.51178,0,3,-9,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.5003777,38.69,61.75,-9,-9,10,1,1,0,0,0,6,2,1,337,323085.88,2583.2722,130572.37,0,1360.7916 -13832,17016,30796,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3699694,7.3420281,0,0,-958.04572,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8597207,7.2826619,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,303,-142151.64,255851.95,177181.94,0,1320.0991 -13833,17017,30797,30798,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,4.7908726,5.0316181,7,-4,-73.74379,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2371979,4.8753762,52.23,52.9,56.34,37.93,8.333333333333334,1,1,0,0,5,5,2,1,1308.5,218100.27,259548.09,14664.477,0,740.2677 -13833,17017,30798,30797,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,7,4,-17.58457,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,2.5263202,0,0,1,1,0,2.1042938,0,56.34,37.93,52.23,52.9,8.333333333333334,1,1,0,0,5,5,2,1,1308.5,218100.27,259548.09,14664.477,0,740.2677 -13834,17018,30799,30800,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.9227591,6.4311318,8,8,-29.547585,0,2,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,27,1,1,0,0,6.1776452,43.01,42.51,35.48,23.07,3.333333333333333,1,1,0,1,2,9,3,1,2239,1423660.9,883285.63,205844.55,0,2569.4536 -13834,17018,30800,30799,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.6421456,7.6642585,8,-8,-54.79668,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,0,7.4054236,35.48,23.07,43.01,42.51,1.666666666666667,1,1,0,0,0,9,3,1,2239,1423660.9,883285.63,205844.55,0,2569.4536 -13835,17019,30801,30803,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,9.5625143,9.4206858,0,14,-1,-54.660465,0,2,3,2019,13,2,84,84,1,2,0,16.819126,16.819126,0,0,0,0,0,1,1,0,0,0,47.86,53.77,35.33,56.8,6.666666666666667,1,1,0,0,11,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 -13835,17019,30802,-9,30801,30803,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.4186,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 -13835,17019,30803,30801,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.611474,8.7214661,0,10,1,101.43572,-9,-9,-9,2019,11,1,43,0,1,1,0,16.912544,16.912544,0,0,0,0,0,1,1,0,1.9395783,0,35.33,56.8,47.86,53.77,6.666666666666667,1,1,0,0,1,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 -13835,17019,30804,-9,30801,30803,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.7651,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,807.75,321046.75,313740.06,0,0,9483.5469 -13836,17020,30805,30806,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.5818119,6.4812074,46,0,-120.07851,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.4882827,55.76,52.64,29.78,17.81,8.333333333333334,1,1,0,0,6,2,2,0,1725.5,510886.91,-6734.375,130465.07,0,1896.5043 -13836,17020,30806,30805,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,46,0,4.8159671,0,3,3,2019,20,8,0,0,4,8,0,0,0,1,0,117.90034,0,0,1,1,0,0,0,29.78,17.81,55.76,52.64,5,1,1,0,0,0,2,2,0,1725.5,510886.91,-6734.375,130465.07,0,1896.5043 -13837,17021,30807,-9,30809,30808,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.56207,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 -13837,17021,30808,30809,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.895299,8.9023314,0,17,0,39.346169,0,2,1,2019,8,1,37,40,1,1,0,29.283171,29.283171,0,0,0,0,0,1,1,0,2.7643051,0,55.19,54.26,51.73,58.82,8.333333333333334,1,1,0,0,10,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 -13837,17021,30809,30808,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.6054926,8.5143032,0,16,0,4.3686152,0,2,2,2019,9,0,40,0,1,0,0,16.904362,16.904362,0,0,0,0,0,1,1,0,0,0,51.73,58.82,55.19,54.26,8.333333333333334,1,1,0,0,6,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 -13837,17021,30810,-9,30809,30808,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.13983,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,1324.75,642720.31,557804.56,380168.94,218952.05,4729.8169 -13838,17022,30811,30812,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.078516,7.7836833,0,25,4,-89.176132,0,2,-9,2019,12,0,47,47,1,0,0,8.1093912,8.1093912,0,0,0,0,0,0,0,0,0,0,49,48,49.05,50.32,8.333333333333334,1,1,0,0,11,2,4,1,1668.5,61184.266,-86333.906,0,0,2131.397 -13838,17022,30812,30811,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2012739,8.3044825,0,23,-4,114.59251,0,3,2,2019,11,0,40,40,1,0,0,10.875399,10.875399,0,0,0,0,0,0,0,0,0,0,49.05,50.32,49,48,6.666666666666667,1,1,0,0,6,2,4,1,1668.5,61184.266,-86333.906,0,0,2131.397 -13838,17023,30813,-9,30811,30812,1,0,29,0,0,0,2,2,-9,0,3,8.1951561,7.8521171,0,0,0,-1052.2732,0,2,2,2019,13,1,40,39,1,1,1,10.011589,10.011589,0,0,0,0,7,0,0,0,0,0,44.7,53.68,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,403,645438.19,16833.037,0,0,264.44159 -13839,17024,30814,30816,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.4209504,7.1349826,0,26,-1,148.52599,0,2,3,2019,16,5,24,24,1,5,0,8.7036943,8.7036943,0,0,0,0,0,1,1,0,0,0,32.67,63.54,53,54,5,1,1,0,1,8,7,2,1,554.66669,137219.69,48165.996,201031.27,92359.016,914.68658 -13839,17024,30815,-9,30814,30816,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-931.55969,-9,3,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.87,53.44,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,554.66669,137219.69,48165.996,201031.27,92359.016,914.68658 -13839,17024,30816,30814,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,0,0,0,26,1,111.73598,0,3,3,2019,9,0,0,18,3,1,0,0,0,0,0,0,0,0,1,1,0,3.2047892,0,53,54,32.67,63.54,8,1,1,1,0,0,7,2,1,554.66669,137219.69,48165.996,201031.27,92359.016,914.68658 -13839,17025,30817,-9,30814,30816,1,1,22,0,1,0,2,2,-9,0,3,7.5862651,8.1949949,0,0,0,-899.18298,0,2,2,2019,6,0,40,8,1,0,1,6.1600871,6.1600871,0,0,0,0,0,1,1,0,0,0,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,1923,-100079.85,-11265.822,0,0,835.87372 -13839,17026,30818,-9,30814,30816,1,1,21,0,1,0,3,3,-9,0,4,7.7475772,7.9308434,0,0,0,-1040.2615,0,2,2,2019,10,0,40,46,1,1,1,6.2776809,6.2776809,0,0,0,0,0,1,1,0,3.7884984,0,49,58,-9,-9,7,1,1,0,0,1,7,3,1,587,-34226.02,0,0,0,1267.4011 -13840,17027,30819,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,6.3287902,6.238287,0,0,0,-1023.1701,-9,2,2,2019,14,2,8,0,1,2,0,9.3727751,9.3727751,0,0,0,0,71.5,1,1,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,2,9,2,0,490,320786.22,0,0,0,1566.8323 -13841,17028,30820,30821,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.4647245,8.1716108,0,38,-4,108.26,0,2,3,2019,12,0,30,34,1,0,0,12.431631,12.431631,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,12,13,5,1,481,801492.75,564819.44,237052.11,36654.43,5630.4775 -13841,17028,30821,30820,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.4024382,9.3654842,8.837286,37,4,-75.325333,0,3,3,2019,10,0,22,22,1,0,0,15.612534,15.612534,0,0,0,0,0,0,0,0,1.9085613,8.6988478,49.04,55.86,54.2,57.49,6.666666666666667,1,1,0,0,12,13,5,1,481,801492.75,564819.44,237052.11,36654.43,5630.4775 -13841,17029,30822,-9,30820,30821,1,0,28,0,0,0,1,1,-9,0,4,8.2876692,8.2574654,0,0,0,-909.72211,0,2,2,2019,12,0,37,42,1,0,1,17.126961,17.126961,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,759,211067.05,131952.56,0,0,1060.4622 -13841,17030,30823,-9,30820,30821,1,0,27,0,0,0,2,2,-9,0,4,7.9979682,8.2810974,0,0,0,-1022.0616,0,2,2,2019,13,1,38,38,1,1,1,12.017004,12.017004,0,0,0,0,0,0,0,0,0,0,38.78,44.48,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,737,40536.984,33269.023,0,0,1306.8792 -13842,17031,30824,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.4463558,8.45471,0,0,-848.68579,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,4.0095153,8.6741476,46.06,54.71,-9,-9,5,1,1,0,0,11,9,4,1,243,1685190.1,79575.945,724134.19,0,2826.6875 -13843,17032,30825,-9,30826,30827,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.6659,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,510.66666,466029.13,356376.03,54078.246,74325.203,3385.0911 -13843,17032,30826,30827,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.8681483,8.0064678,0,9,-3,46.674553,0,3,3,2019,11,0,20,20,1,0,0,11.542189,11.542189,0,0,0,0,0,1,1,0,0,0,52,54.51,62.39,56.71,6.666666666666667,1,1,0,0,12,5,4,1,510.66666,466029.13,356376.03,54078.246,74325.203,3385.0911 -13843,17032,30827,30826,-9,-9,1,1,49,0,1,0,3,3,-9,0,5,8.1992722,8.3656092,0,9,3,64.51548,0,-9,-9,2019,8,0,43,40,1,0,0,13.790827,13.790827,0,0,0,0,0,1,1,0,0,0,62.39,56.71,52,54.51,10,1,1,0,0,12,5,4,1,510.66666,466029.13,356376.03,54078.246,74325.203,3385.0911 -13844,17033,30828,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9826694,7.9283805,0,10,11,75.057251,0,2,-9,2019,11,3,35,35,1,3,0,14.871632,14.871632,0,0,0,0,0,0,0,0,0,0,49.94,25.13,46.89,30.04,8.333333333333334,1,1,0,0,9,2,5,0,2171,492085.38,75148.867,337880.59,0,1238.3934 -13844,17034,30829,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.4323502,8.4260206,0,10,-11,-64.872917,0,2,2,2019,15,5,35,41,1,5,0,14.266701,14.266701,0,0,0,0,0,0,0,0,0,0,46.89,30.04,49.94,25.13,8.333333333333334,1,1,0,0,9,2,5,0,210,394351.84,53705.504,0,0,1382.0775 -13845,17035,30830,30831,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.3872347,8.2720098,0,2,3,77.023682,0,2,3,2019,10,1,55,55,1,1,0,7.6240244,7.6240244,0,0,0,0,0,0,0,0,0,0,54.2,57.49,28.16,31.9,8.333333333333334,1,1,0,0,8,9,4,0,728.5,176669.69,0,0,0,2347.449 -13845,17035,30831,30830,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,7.5173349,7.6177754,0,2,-3,98.565193,0,-9,-9,2019,15,2,32,30,1,2,0,7.4340115,7.4340115,0,0,0,0,0,0,0,0,0,0,28.16,31.9,54.2,57.49,5,1,1,0,0,1,9,4,0,728.5,176669.69,0,0,0,2347.449 -13846,17036,30832,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2910757,8.7351599,0,0,0,-1078.218,0,3,3,2019,6,0,46,42,1,0,0,11.080787,11.080787,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,526,781435,503885.5,144552.66,37186.328,1831.344 -13847,17037,30833,30834,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.9974346,9.0403233,0,43,-2,-25.077019,0,3,3,2019,6,0,40,70,1,0,0,19.921415,19.921415,0,0,0,0,0,1,1,0,0,0,52.08,55.93,57.16,56.15,10,1,1,0,0,9,13,5,1,345,517635.13,254755.25,188995.55,0,4541.2949 -13847,17037,30834,30833,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,43,2,-29.17396,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,1.1630272,0,57.16,56.15,52.08,55.93,8.333333333333334,1,1,0,0,0,13,5,1,345,517635.13,254755.25,188995.55,0,4541.2949 -13847,17038,30835,-9,30834,30833,1,1,36,0,0,0,2,2,-9,0,3,8.0330315,7.5254226,0,0,0,-831.21954,0,2,2,2019,15,3,38,40,1,3,1,8.6882811,8.6882811,0,0,0,0,0,1,1,0,0,0,41.85,56.37,-9,-9,3.333333333333333,1,1,0,0,7,13,3,1,532,-268952.66,19667.014,0,0,716.13489 -13847,17039,30836,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.1166682,7.3233671,0,0,0,-994.12152,0,3,-9,2019,8,0,23,30,1,0,0,7.151783,7.151783,0,0,0,0,0,1,1,0,0,0,55.47,52.91,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,775,259443.94,0,0,0,1044.9197 -13848,17040,30837,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.1241789,6.1132154,0,0,-950.3028,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1273623,6.3478646,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,594,405913.13,-21568.16,113137.23,0,1523.2917 -13849,17041,30838,30839,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,8.3971567,8.6636629,6.8175597,28,11,37.070454,0,2,1,2019,9,0,22,20,1,0,0,25.128414,25.128414,0,0,0,0,2,0,0,0,3.8035398,6.5815935,54.2,57.49,29.09,45.05,8.333333333333334,1,1,0,0,9,9,4,1,1153.5,2109077.8,1315447.5,420822.44,0,2243.479 -13849,17041,30839,30838,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,29,-11,85.778992,0,2,2,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,29.09,45.05,54.2,57.49,3.333333333333333,1,1,0,0,9,9,4,1,1153.5,2109077.8,1315447.5,420822.44,0,2243.479 -13849,17042,30840,-9,30839,30838,1,0,24,0,0,0,1,1,-9,0,4,7.7578359,7.7385526,0,0,0,-1100.1227,0,2,1,2019,11,0,35,37,1,2,1,9.1057987,9.1057987,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,9,3,1,638,-23905.873,85489.711,0,0,1883.309 -13849,17043,30841,-9,30839,30838,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1007.3178,1,2,1,2019,16,7,0,27,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,38.18,65.09,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,371,0,0,0,0,-9.6465836 -13850,17044,30842,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.6334667,5.8129892,0,0,-1045.9324,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7849164,5.6418052,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,747,-30203.072,117435.04,0,0,340.27936 -13851,17045,30843,30844,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,-2,77.722069,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,49.53,53.8,32.82,8.333333333333334,1,1,0,0,0,11,2,1,1140.5,589601.31,20443.5,230619.3,0,1527.5066 -13851,17045,30844,30843,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,6.8398852,6.6267071,9,2,-108.91456,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,0,31.666439,0,0,1,1,0,0,6.6892266,53.8,32.82,56.94,49.53,6.666666666666667,1,1,0,0,0,11,2,1,1140.5,589601.31,20443.5,230619.3,0,1527.5066 -13852,17046,30845,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.1812687,8.4155588,0,0,0,-1012.3353,-9,-9,-9,2019,15,4,38,0,1,4,0,10.823827,10.823827,0,0,0,0,0,0,0,0,0,0,54.51,50.6,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,405,421809.88,80320.984,212482.59,0,2054.9888 -13853,17047,30846,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,0,0,-969.96301,0,2,1,2019,17,5,0,26,3,5,0,0,0,0,0,0,0,2,1,1,0,5.6093321,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,1,8,8,1,1,169,-23482.811,0,0,0,399.51547 -13854,17048,30847,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,6.0339537,6.0961876,0,0,-985.41101,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.9139123,5.8342514,47.7,44.73,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,345,189495.19,56876.98,87765.016,0,1196.5438 -13855,17049,30848,-9,30849,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0352974,7.8399005,0,0,0,-988.58417,0,3,3,2019,10,0,37,37,1,0,0,8.5518446,8.5518446,0,0,0,0,71.5,1,1,0,1.8104178,0,59.04,48.6,-9,-9,1.666666666666667,1,1,0,0,9,6,4,0,561,146452.27,102255.6,0,0,1956.0305 -13855,17050,30849,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1063.5692,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,55,42,-9,-9,8,1,1,0,0,0,6,1,0,325,-210604.27,0,0,0,1181.7036 -13856,17051,30850,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,7.4852071,7.3086262,0,0,-960.52008,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3307762,7.2484808,62.39,56.71,-9,-9,10,1,1,0,0,12,12,3,1,1083,70905.727,227154.72,134373.66,0,2155.4058 -13857,17052,30851,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1078.2073,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,6.6913748,0,44.66,57.83,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1126,63879.77,0,0,0,68.069016 -13858,17053,30852,-9,30854,30853,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.9719,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,493,153732.89,83680.516,224336.89,51171.219,4324.8574 -13858,17053,30853,30854,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.2579679,8.1600351,0,16,4,-9.9152727,0,3,2,2019,7,0,46,60,1,0,0,11.554011,11.554011,0,0,0,0,0,1,1,0,6.5257668,0,47.81,54.79,57.06,57.76,6.666666666666667,1,1,0,0,10,6,5,1,493,153732.89,83680.516,224336.89,51171.219,4324.8574 -13858,17053,30854,30853,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,8.4672098,8.7762651,0,16,-4,-14.453194,0,2,3,2019,5,0,37,37,1,0,0,13.247835,13.247835,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.81,54.79,10,1,1,0,0,10,6,5,1,493,153732.89,83680.516,224336.89,51171.219,4324.8574 -13859,17054,30855,30858,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.8685994,8.2788982,6.722096,4,7,86.57061,0,-9,3,2019,11,1,35,0,1,1,0,8.6871338,8.6871338,0,0,0,0,0,1,1,0,7.1273866,0,44.83,33.87,39.31,52.14,8.333333333333334,1,1,0,0,4,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 -13859,17054,30856,-9,30855,30858,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-895.81079,-9,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.93,58.52,-9,-9,5,1,1,1,0,0,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 -13859,17054,30857,-9,30855,30858,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.2477,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 -13859,17054,30858,30855,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,0,0,0,4,-7,14.41414,0,-9,-9,2019,12,0,0,42,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.31,52.14,44.83,33.87,1.666666666666667,1,1,1,1,4,7,3,0,703.25,-259419.2,89829.969,0,0,1833.319 -13860,17055,30859,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-994.9538,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.27211887,0,60.23,53.47,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,1038,428253.56,0,0,0,1090.1641 -13861,17056,30860,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.6193404,7.5456557,0,0,-823.2724,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.6922834,7.7733841,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,217,562770.5,64172.844,165148.58,0,2020.2864 -13862,17057,30861,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.8007936,8.9978619,0,3,-6,16.717901,0,3,2,2019,14,2,38,38,1,2,0,21.629881,21.629881,0,0,0,0,0,0,0,0,0,0,45.91,59.89,52.63,50.07,6.666666666666667,1,1,0,0,10,5,5,1,544,1661180.5,1234227,265475.5,0,2538.158 -13862,17058,30862,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.8796968,8.873373,0,3,6,-40.265102,0,3,2,2019,10,0,43,42,1,0,0,24.811081,24.811081,0,0,0,0,0,0,0,0,3.222877,0,52.63,50.07,45.91,59.89,8.333333333333334,1,1,0,0,10,5,5,1,1233,1308242.1,1064430.4,263609,0,3514.7065 -13863,17059,30863,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,6.2841635,6.1469374,0,0,-1070.8307,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9776082,51.85,43.98,-9,-9,6.666666666666667,1,1,0,0,4,2,2,0,448,-94107.977,0,0,0,500.75308 -13864,17060,30864,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1001.08,0,3,2,2019,27,12,0,0,4,12,0,0,0,1,0,25.734581,0,0,1,1,0,0,0,32.8,23.13,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,412,21384.73,0,0,0,1016.1492 -13865,17061,30865,30866,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.1472502,9.0785685,0,1,0,-64.759651,-9,3,3,2019,6,0,50,0,1,0,0,22.070778,22.070778,0,0,0,0,0,0,0,0,9.173605,0,57.06,57.76,38.72,64.82000000000001,10,1,1,0,0,7,13,5,1,741.5,1632437.8,1372207.8,174041.31,0,6696.2461 -13865,17061,30866,30865,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,1,0,-12.296016,-9,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,38.72,64.82000000000001,57.06,57.76,10,1,1,0,0,0,13,5,1,741.5,1632437.8,1372207.8,174041.31,0,6696.2461 -13866,17062,30867,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,0,0,-981.97626,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,869,-283514.25,0,0,0,1015.3554 -13867,17063,30868,30869,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.1006827,7.2678728,5,-7,56.817749,0,-9,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,0,7.4952621,54.21,21.27,31.61,19.7,3.333333333333333,1,1,0,0,0,1,2,1,428,564497.69,299579.5,117053.46,0,2820.1826 -13867,17063,30869,30868,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,5,7,-29.633251,0,3,3,2019,27,10,0,0,4,10,0,0,0,1,7.1411304,0,66.298386,0,1,1,0,.88730448,0,31.61,19.7,54.21,21.27,3.333333333333333,1,1,0,0,0,1,2,1,428,564497.69,299579.5,117053.46,0,2820.1826 -13868,17064,30870,30871,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7827225,8.3674755,0,5,2,169.88815,0,3,-9,2019,8,0,42,53,1,0,0,15.594197,15.594197,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,728,282805.53,170170.09,166804.47,99049.586,3989.1807 -13868,17064,30871,30870,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4782839,8.4583549,0,5,-2,95.87249,0,-9,-9,2019,10,0,37,38,1,0,0,18.699381,18.699381,0,0,0,0,0,0,0,0,4.6966844,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,5,1,728,282805.53,170170.09,166804.47,99049.586,3989.1807 -13869,17065,30872,30873,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,6.7330985,7.0944157,5.9594111,40,-4,-146.68028,0,3,3,2019,11,1,18,18,1,1,0,6.9644394,6.9644394,0,0,0,0,0,1,1,0,0,6.4459195,62.6,18.5,52.01,48.98,8.333333333333334,1,1,0,0,11,1,3,0,556,384837.97,156426.66,0,0,1968.5027 -13869,17065,30873,30872,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.0301204,6.2304573,9,4,-58.08746,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,0,5.9920926,52.01,48.98,62.6,18.5,8.333333333333334,1,1,0,0,0,1,3,0,556,384837.97,156426.66,0,0,1968.5027 -13870,17066,30874,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,6.3991971,6.9746366,5.9528642,0,0,-1067.8688,0,3,3,2019,5,0,10,10,1,0,0,5.9451489,5.9451489,0,0,0,0,0,1,1,0,0,6.0626245,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,4710,786053.25,-49743.871,287499.75,0,1168.4362 -13871,17067,30875,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.0807714,9.2441406,0,0,0,-1064.5178,0,3,3,2019,10,1,39,41,1,1,0,26.880468,26.880468,0,0,0,0,0,0,0,0,5.8077712,0,52.99,51.28,-9,-9,8.333333333333334,4,2,0,0,11,8,5,0,109,363246.03,-31985.67,0,0,2565.9141 -13872,17068,30876,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,7.9437137,7.9042649,0,2,15,-42.338249,0,3,3,2019,9,1,54,59,1,1,0,7.5253434,7.5253434,0,0,0,0,0,0,0,0,1.5854539,0,64.38,39.16,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,694,-34863.723,-23091.668,0,0,1002.9489 -13872,17069,30877,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.1375036,8.4697628,0,2,-15,5.9234643,0,3,2,2019,9,1,43,23,1,1,0,9.3181009,9.3181009,0,0,0,0,0,0,0,0,0,0,57.06,57.76,64.38,39.16,8.333333333333334,1,1,0,0,6,12,5,1,206,-198635.23,48774.039,0,0,1557.8992 -13873,17070,30878,30879,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0045938,8.1932211,7.250948,8,0,-13.743886,0,-9,-9,2019,9,0,50,70,1,1,0,7.5983853,7.5983853,0,0,0,0,0,0,0,0,0,7.1861782,53,54,51.24,58.84,8,1,1,0,0,1,5,4,1,3166,411860.44,259703.34,113507.69,48239.961,2286.8179 -13873,17070,30879,30878,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.6551337,7.5887384,0,29,0,-55.84095,0,3,3,2019,17,5,16,15,1,5,0,11.948304,11.948304,0,0,0,0,0,0,0,0,0,0,51.24,58.84,53,54,6.666666666666667,1,1,0,0,8,5,4,1,3166,411860.44,259703.34,113507.69,48239.961,2286.8179 -13874,17071,30880,30881,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.1525669,8.087326,6.0076227,10,4,-126.038,0,-9,-9,2019,7,0,40,45,1,0,0,9.7712879,9.7712879,0,0,0,0,0,0,0,0,6.5203094,5.8129926,52.23,55.6,49.58,55.59,6.666666666666667,1,1,0,0,11,5,5,1,1461,592799.63,92921.25,287379.47,27836.238,3242.3682 -13874,17071,30881,30880,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.3320408,7.8959041,0,10,-4,35.867336,0,-9,-9,2019,11,1,50,54,1,1,0,9.6484299,9.6484299,0,0,0,0,0,0,0,0,0,0,49.58,55.59,52.23,55.6,10,1,1,0,0,11,5,5,1,1461,592799.63,92921.25,287379.47,27836.238,3242.3682 -13875,17072,30882,30883,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.1807909,7.4945345,54,0,-16.926439,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.3368373,7.2481103,51.92,39.36,46.54,44.72,5,1,1,0,0,0,5,2,1,411,536394.94,129599.03,497942.44,0,1212.4476 -13875,17072,30883,30882,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,3.1598358,3.3370106,9,0,70.052505,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.8450809,3.0538578,46.54,44.72,51.92,39.36,6.666666666666667,1,1,0,0,0,5,2,1,411,536394.94,129599.03,497942.44,0,1212.4476 -13876,17073,30884,-9,30885,30886,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-889.33411,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,1589,-124631.49,0,0,0,1259.5803 -13876,17073,30885,30886,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,0,0,0,1,-1,-43.826595,-9,-9,-9,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,39.49,52.43,55.57,5,1,1,0,1,0,4,2,0,1589,-124631.49,0,0,0,1259.5803 -13876,17073,30886,30885,-9,-9,1,1,23,1,1,0,2,2,-9,0,4,7.0682898,6.9591956,0,1,1,48.42923,-9,-9,-9,2019,8,1,16,0,1,1,0,6.369195,6.369195,0,0,0,0,0,1,1,0,0,0,52.43,55.57,58.33,39.49,10,1,1,0,0,6,4,2,0,1589,-124631.49,0,0,0,1259.5803 -13877,17074,30887,30888,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.2062712,8.0193291,0,5,-7,-.9415468,0,-9,-9,2019,10,0,37,37,1,0,0,9.6027651,9.6027651,0,0,0,0,42,1,1,0,0,0,46.08,57.2,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,761.5,443652.41,193991.59,224008.34,0,3301.1362 -13877,17074,30888,30887,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.3766613,8.6768827,7.305068,5,7,-39.700726,0,3,2,2019,17,6,37,42,1,6,0,11.491394,11.491394,0,0,0,0,14.5,1,1,0,0,8.0050888,51.24,58.84,46.08,57.2,5,1,1,0,0,8,9,5,1,761.5,443652.41,193991.59,224008.34,0,3301.1362 -13878,17075,30889,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.1604338,8.6981478,7.2305975,0,0,-1034.041,0,2,2,2019,8,0,39,37,1,0,0,10.310827,10.310827,0,0,0,0,0,1,1,0,7.2631884,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,1284.5,30131.523,177144.48,235349.22,192530.95,3491.6018 -13878,17075,30890,-9,30889,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.49054,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,1284.5,30131.523,177144.48,235349.22,192530.95,3491.6018 -13879,17076,30891,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,4.2657919,4.3665109,0,0,-1100.7677,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.7079406,4.4831033,54,46,-9,-9,7,1,1,0,0,0,8,2,1,716,45933.227,-45796.773,782384.44,0,564.03326 -13880,17077,30892,-9,30893,30895,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.731,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 -13880,17077,30893,30895,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.4530883,7.3284473,0,7,-3,.58181661,0,-9,-9,2019,11,1,20,25,1,1,0,9.6899462,9.6899462,0,0,0,0,0,1,1,0,7.3835945,0,49.04,55.86,32.56,65.15000000000001,8.333333333333334,1,1,0,0,8,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 -13880,17077,30894,-9,30893,30895,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-909.50714,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 -13880,17077,30895,30893,-9,-9,1,1,33,1,2,0,2,2,-9,0,5,8.7905331,8.7264204,0,7,3,49.180752,0,2,2,2019,13,2,37,37,1,2,0,19.684246,19.684246,0,0,0,0,0,1,1,0,0,0,32.56,65.15000000000001,49.04,55.86,6.666666666666667,1,1,0,0,8,11,4,0,413.75,62407.266,54757.656,111599.52,102523.41,4233.0498 -13881,17078,30896,30897,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,10,-4,-130.2952,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,46.45,30.58,8.333333333333334,1,1,0,0,0,11,2,1,2251.5,506768.69,74383.984,290382.13,0,528.90863 -13881,17078,30897,30896,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.8008628,4.8302493,10,4,-48.315163,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.3422503,5.1967902,46.45,30.58,54.37,54.8,6.666666666666667,1,1,0,0,0,11,2,1,2251.5,506768.69,74383.984,290382.13,0,528.90863 -13882,17079,30898,30899,-9,-9,1,1,62,0,1,0,1,1,-9,0,5,0,8.480691,8.3457537,6,20,129.82115,0,3,3,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,0,1,1,0,2.5001013,8.1022243,57.06,57.76,57.06,57.76,0,1,1,0,0,6,8,3,1,313.33334,1248040.1,120760.99,723661.25,0,2319.7119 -13882,17079,30899,30898,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,0,0,0,6,-20,138.45866,0,-9,-9,2019,4,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,6,8,3,1,313.33334,1248040.1,120760.99,723661.25,0,2319.7119 -13882,17079,30900,-9,30899,30898,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.20496,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,313.33334,1248040.1,120760.99,723661.25,0,2319.7119 -13883,17080,30901,-9,30904,30905,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-852.54028,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 -13883,17080,30902,-9,30904,30905,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.18439,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 -13883,17080,30903,-9,30904,30905,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.17535,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 -13883,17080,30904,30905,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,8.2210836,8.578392,0,21,-1,77.257385,0,3,3,2019,12,2,30,21,1,2,0,15.205468,15.205468,0,0,0,0,0,1,1,0,7.4644294,0,45.02,40.23,51.24,58.84,1.666666666666667,1,1,0,0,9,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 -13883,17080,30905,30904,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.0869875,8.8678093,0,21,1,15.492742,0,2,1,2019,12,1,53,55,1,1,0,20.168203,20.168203,0,0,0,0,0,1,1,0,6.1364546,0,51.24,58.84,45.02,40.23,6.666666666666667,1,1,0,0,6,6,5,1,505.79999,189069.17,277250.56,87676.453,55809.563,5092.0752 -13884,17081,30906,30907,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.3943315,7.2585545,62,0,-33.541714,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,7.4189,67.08,23.51,30.87,34.65,8.333333333333334,1,1,0,0,0,12,4,0,558,425332,168440.28,269424,0,3154.0332 -13884,17081,30907,30906,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.8381839,7.623508,9,0,50.921967,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,9.5680237,228.51811,85.646896,0,1,1,0,0,7.537982,30.87,34.65,67.08,23.51,5,1,1,0,0,0,12,4,0,558,425332,168440.28,269424,0,3154.0332 -13885,17082,30908,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,7.7480512,7.7521024,0,0,0,-962.96057,0,2,2,2019,9,0,40,40,1,0,0,6.9580355,6.9580355,0,0,0,0,0,0,0,0,1.7246234,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,13,13,3,1,488,-195115.77,8650.2314,0,0,1108.7673 -13886,17083,30909,30910,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5218096,8.730299,6.2320533,44,1,134.56866,0,3,3,2019,6,0,37,35,1,0,0,18.115282,18.115282,0,0,0,0,0,0,0,0,8.8535604,6.0473566,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,458.5,5999440,986363.75,3480140,0,4410.8525 -13886,17083,30910,30909,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.2637239,8.4377365,7.280232,10,-1,56.249565,0,-9,-9,2019,6,0,11,10,1,0,0,16.482018,16.482018,0,0,0,0,0,0,0,0,1.3999422,7.805438,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,458.5,5999440,986363.75,3480140,0,4410.8525 -13887,17084,30911,-9,30913,30912,1,0,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1100.3811,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,1561,655609.06,398134.09,182768.67,64807.535,3565.9744 -13887,17084,30912,30913,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.0358591,9.0468407,0,22,-3,22.201578,0,2,3,2019,9,0,43,42,1,0,0,15.784906,15.784906,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,1561,655609.06,398134.09,182768.67,64807.535,3565.9744 -13887,17084,30913,30912,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.9138155,7.6523728,23,3,22.96447,0,2,3,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.2748232,7.7787666,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,12,2,5,1,1561,655609.06,398134.09,182768.67,64807.535,3565.9744 -13887,17085,30914,-9,30913,30912,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-949.35901,-9,2,2,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,40.13,62.93,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,492,0,0,0,0,0 -13888,17086,30915,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,5.4414325,5.8434558,0,0,-1077.7871,0,3,3,2019,23,10,0,0,4,10,0,0,0,1,0,14.102503,0,0,1,1,0,5.1105247,6.0121703,37.28,18.27,-9,-9,5,1,1,0,0,0,6,2,1,1218,168970.75,27923.205,0,0,672.72534 -13889,17087,30916,-9,30918,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.9045,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,359.66666,98166.664,-19662.316,0,0,1907.7256 -13889,17087,30917,-9,30918,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.4703,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,3,0,359.66666,98166.664,-19662.316,0,0,1907.7256 -13889,17087,30918,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.0795956,8.1166573,6.1892719,0,0,-988.06207,-9,2,2,2019,12,0,35,0,1,0,0,9.6916437,9.6916437,0,0,0,0,0,1,1,0,6.5355182,0,44.49,61.79,-9,-9,5,1,1,0,0,3,6,3,0,359.66666,98166.664,-19662.316,0,0,1907.7256 -13890,17088,30919,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.4800086,4.4308085,0,0,-1111.5704,0,3,3,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,1.7434921,4.8447094,51,47,-9,-9,5,1,1,0,0,0,4,2,1,192,-142736.98,0,47426.309,0,861.86652 -13891,17089,30920,30921,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.9670696,7.7926526,0,1,6,-113.72437,-9,2,2,2019,18,6,40,0,1,6,0,10.078727,10.078727,0,0,0,0,0,0,0,0,0,0,38.53,64.73,19.92,66.48999999999999,6.666666666666667,1,1,0,0,5,2,4,0,1433.5,-30249.281,-94271.953,74817.219,93277.734,1890.4558 -13891,17089,30921,30920,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.8843403,7.8621411,0,1,-6,-87.677826,-9,-9,-9,2019,30,11,48,0,1,11,0,8.0361881,8.0361881,0,0,0,0,0,0,0,0,0,0,19.92,66.48999999999999,38.53,64.73,8.333333333333334,1,1,0,0,0,2,4,0,1433.5,-30249.281,-94271.953,74817.219,93277.734,1890.4558 -13892,17090,30922,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1181.3024,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.37,34.25,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,131,177460.84,0,0,0,1070.9141 -13893,17091,30923,30924,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,1,10,27.735247,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,2,0,0,0,2.394383,0,22.07,40.14,42.31,56.55,1.666666666666667,2,3,1,0,1,8,5,1,268.5,775936.5,507502.06,367189.19,264876.16,7683.0654 -13893,17091,30924,30923,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.3867655,9.4413729,0,1,-10,126.10526,-9,-9,-9,2019,19,7,46,0,1,7,0,28.653097,28.653097,0,0,0,0,2,0,0,0,7.4619417,0,42.31,56.55,22.07,40.14,6.666666666666667,1,1,0,0,6,8,5,1,268.5,775936.5,507502.06,367189.19,264876.16,7683.0654 -13893,17092,30925,-9,30923,-9,1,0,29,0,0,0,1,1,-9,0,4,7.9110322,7.8137088,0,0,0,-997.58307,-9,1,-9,2019,11,0,50,0,1,2,1,6.1785297,6.1785297,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,3,1,1973,-219472.39,-39697.852,0,0,931.87396 -13893,17093,30926,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.5533409,7.6185079,0,0,0,-1086.4111,-9,-9,-9,2019,11,0,50,0,1,2,0,4.3234339,4.3234339,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,4,6,0,0,1,8,3,1,163,94234.555,0,0,0,1023.7596 -13894,17094,30927,30928,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.6795502,7.7791114,2,2,-55.069454,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,27,1,1,0,1.0486405,7.7830815,38.51,59.43,57.82,28.48,3.333333333333333,1,1,0,0,0,13,3,1,1155.5,222347.36,241105.59,106168.44,0,3065.7522 -13894,17094,30928,30927,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,2,-2,149.64421,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,19.101334,0,0,1,1,0,0,0,57.82,28.48,38.51,59.43,6.666666666666667,1,1,0,0,0,13,3,1,1155.5,222347.36,241105.59,106168.44,0,3065.7522 -13895,17095,30929,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.901123,8.9690456,0,0,0,-1024.3741,0,2,3,2019,11,0,42,44,1,0,0,23.798996,23.798996,0,0,0,0,0,0,0,0,8.0236235,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,444,468312.47,-32470.309,0,0,4663.7891 -13896,17096,30930,30931,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.0522795,8.0616627,0,6,-1,-62.165226,0,2,3,2019,19,8,40,24,1,8,0,7.4635787,7.4635787,0,0,0,0,0,0,0,0,0,0,35.88,60.92,39.06,61.94,6.666666666666667,1,1,0,0,7,13,5,1,1432,1751290.8,711461.44,325312.38,0,4089.2041 -13896,17096,30931,30930,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.8614349,9.041398,0,6,1,-103.56257,0,2,2,2019,11,0,48,48,1,0,0,19.369665,19.369665,0,0,0,0,2,0,0,0,0,0,39.06,61.94,35.88,60.92,8.333333333333334,1,1,0,0,7,13,5,1,1432,1751290.8,711461.44,325312.38,0,4089.2041 -13896,17097,30932,-9,30930,30931,1,0,26,0,0,0,1,1,-9,0,4,7.9823914,8.2885599,0,0,0,-982.0285,0,2,2,2019,7,0,75,37,1,0,1,6.5604801,6.5604801,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,245,392257.09,-21026.607,0,0,1093.6294 -13897,17098,30933,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-934.24762,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,7,1,1,0,0,0,2,1,1,434,171293.36,0,0,0,997.19604 -13898,17099,30934,-9,30935,-9,1,0,28,0,0,0,2,2,-9,0,4,8.091466,8.16362,0,0,0,-932.43005,0,3,3,2019,6,0,32,33,1,0,0,13.758032,13.758032,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,127,-251204.97,-92258.422,0,0,1059.1907 -13898,17100,30935,-9,30936,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1020.6816,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,1.8524603,0,61.83,36.54,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,63,162910.75,61702.059,0,0,996.48608 -13898,17101,30936,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.80408,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,1,4,1,1,778,22758.373,0,0,0,806.01752 -13899,17102,30937,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1109.3225,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,14.5,0,0,0,7.0336585,0,47.62,56.48,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,509,-479703.78,0,0,0,575.25006 -13900,17103,30938,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,5.7337561,5.7279015,0,0,-947.26086,0,3,3,2019,15,2,0,0,4,2,0,0,0,1,0,10.693657,0,0,1,1,0,5.5493975,5.6427689,32.74,16.46,-9,-9,5,1,1,0,0,0,6,2,1,239,207531.2,96797.125,0,0,1377.776 -13901,17104,30939,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.3062449,8.4819403,0,0,0,-1044.5168,0,2,3,2019,6,0,45,40,1,0,0,11.98418,11.98418,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,8,4,1,430,-67392.344,82632.508,0,0,1674.649 -13902,17105,30940,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3410234,7.3232136,0,0,-1032.4303,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.8682933,7.4145098,40.32,58.47,-9,-9,5,1,1,0,0,0,9,3,1,204,439408.31,153089.88,304314.72,0,1976.9484 -13903,17106,30941,30942,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,7.1648321,8.0255461,6.8896747,39,0,-33.12867,0,3,3,2019,13,1,34,30,1,1,0,4.4246964,4.4246964,0,0,0,0,0,0,0,0,0,7.1541281,33.31,51.41,42.02,53.62,5,1,1,0,0,11,5,3,1,754.5,105824.08,124490.53,202449,75112.891,1899.1202 -13903,17106,30942,30941,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.8069038,6.5739837,0,39,0,167.70784,0,3,2,2019,21,10,17,18,1,10,0,5.2531319,5.2531319,0,0,0,0,2,0,0,0,5.0783796,0,42.02,53.62,33.31,51.41,10,1,1,0,0,9,5,3,1,754.5,105824.08,124490.53,202449,75112.891,1899.1202 -13903,17107,30943,30944,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.1016331,7.1985135,0,1,0,13.618812,-9,-9,-9,2019,17,7,25,0,1,7,0,7.0396886,7.0396886,0,0,0,0,0,0,0,0,0,0,32.89,65.90000000000001,32.89,59.48,3.333333333333333,1,1,0,0,0,5,3,1,250,-67435.898,-30875.531,0,0,1497.3538 -13903,17107,30944,30943,30942,30941,1,1,22,0,0,0,1,1,-9,0,3,7.7810245,7.7056723,0,1,0,-52.272346,-9,2,3,2019,21,7,42,0,1,7,0,5.4221978,5.4221978,0,0,0,0,0,0,0,0,0,0,32.89,59.48,32.89,65.90000000000001,0,1,1,0,0,4,5,3,1,250,-67435.898,-30875.531,0,0,1497.3538 -13904,17108,30945,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1040.0375,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,21.43,-9,-9,1.666666666666667,2,3,0,1,4,8,1,1,793,-7154.9717,0,0,0,745.6087 -13904,17109,30946,-9,-9,30945,1,0,30,0,0,0,1,1,1,0,4,8.2954311,8.6205978,0,0,0,-1066.9048,-9,-9,2,2019,11,0,40,0,1,2,1,12.869325,12.869325,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,8,4,1,599,-187363.97,0,224229.42,106982.31,1455.8064 -13904,17110,30947,-9,-9,30945,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-978.41638,0,-9,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,1,0,0,8,1,1,1106,0,0,0,0,0 -13904,17111,30948,-9,-9,30945,1,1,23,0,0,0,2,2,-9,0,4,8.4096279,8.1010666,0,0,0,-1050.2417,0,-9,2,2019,10,0,40,0,1,2,1,11.205526,11.205526,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,4,1,65,231187.56,88481.742,0,0,1204.9203 -13905,17112,30949,30950,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,0,0,8,6,113.47888,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6023822,0,60.02,56.42,55.51,35.51,0,1,1,0,0,0,5,2,1,410,271417.91,206253.27,109790.49,30588.973,1484.2328 -13905,17112,30950,30949,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.6016216,6.5636272,8,-6,23.837727,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9371095,6.2058716,55.51,35.51,60.02,56.42,10,1,1,0,0,0,5,2,1,410,271417.91,206253.27,109790.49,30588.973,1484.2328 -13906,17113,30951,30952,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.045228,7.895081,0,6,-2,64.732971,0,-9,-9,2019,8,0,35,35,1,0,0,8.3375387,8.3375387,0,0,0,0,0,0,0,0,0,0,57.06,57.76,39.32,54.04,8.333333333333334,1,1,0,0,12,9,5,0,429,174673.31,64013.516,0,0,3277.2214 -13906,17113,30952,30951,-9,-9,1,0,37,0,0,0,2,2,-9,0,2,8.6036358,8.3735142,0,6,2,30.008766,0,2,2,2019,12,0,37,30,1,0,0,18.552061,18.552061,0,0,0,0,0,0,0,0,0,0,39.32,54.04,57.06,57.76,6.666666666666667,4,2,0,0,12,9,5,0,429,174673.31,64013.516,0,0,3277.2214 -13907,17114,30953,30954,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.4790926,8.7544022,0,3,1,8.0430088,0,-9,-9,2019,8,0,47,49,1,0,0,9.9257975,9.9257975,0,0,0,0,0,0,0,0,2.5925415,0,54.96,53.17,54.96,53.17,6.666666666666667,1,1,0,0,4,12,5,1,417.5,-29698.984,-124441.47,226811.66,194725.38,3567.1846 -13907,17114,30954,30953,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.5395336,8.2095079,0,3,-1,-60.671436,0,-9,-9,2019,11,0,38,40,1,0,0,16.100595,16.100595,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,7,12,5,1,417.5,-29698.984,-124441.47,226811.66,194725.38,3567.1846 -13908,17115,30955,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.2848291,8.5251799,8.3367891,0,0,-955.84381,0,2,2,2019,7,0,25,25,1,0,0,6.7668209,6.7668209,0,0,0,0,0,0,0,0,0,8.5210609,45.17,51.16,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,642,193453.38,125469.4,257954.89,0,3097.9939 -13909,17116,30956,30958,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.972981,7.9981294,0,31,0,38.863705,0,2,2,2019,7,0,20,25,1,0,0,12.832598,12.832598,0,0,0,0,2,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,6,10,4,1,341.33334,432445.09,263518.44,270052.81,189188.94,2987.9573 -13909,17116,30957,-9,30956,30958,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-857.01556,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,341.33334,432445.09,263518.44,270052.81,189188.94,2987.9573 -13909,17116,30958,30956,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.4426155,7.943305,0,31,0,29.694433,0,2,1,2019,8,0,52,52,1,0,0,8.9233789,8.9233789,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,5,1,1,0,0,10,10,4,1,341.33334,432445.09,263518.44,270052.81,189188.94,2987.9573 -13910,17117,30959,30960,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.7666759,6.0940266,8,4,81.990173,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.9732232,54,46,39.24,15.77,8,1,1,0,0,0,7,2,0,683,281915.38,141038.36,194123.63,0,2466.5735 -13910,17117,30960,30959,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,50,-4,149.26399,0,2,-9,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,0,0,39.24,15.77,54,46,3.333333333333333,1,1,0,0,0,7,2,0,683,281915.38,141038.36,194123.63,0,2466.5735 -13911,17118,30961,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,8.3497429,8.1534624,5.9001007,0,0,-1062.5988,0,2,2,2019,8,0,38,39,1,0,0,11.06395,11.06395,0,0,0,0,0,1,1,0,5.5622439,6.0833864,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,2496,-134749.48,116528.84,0,0,2736.7346 -13912,17119,30962,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,8.5185633,8.8685188,0,0,-931.17712,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8132229,8.3428888,52.48,52.75,-9,-9,10,1,1,0,0,0,11,5,1,371,941356.13,839935.13,117263.24,0,3796.1052 -13913,17120,30963,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.5912519,6.7270665,0,0,-929.69489,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,.46951932,0,0,1,1,0,0,6.4520268,65.32000000000001,13.22,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,430,89802.352,38854.07,0,0,726.93744 -13914,17121,30964,30966,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.2068653,8.4000835,0,8,-1,62.906353,0,2,2,2019,9,0,22,37,1,0,0,21.699379,21.699379,0,0,0,0,0,1,1,0,.76513976,0,54.2,57.49,51.41,56.15,1.666666666666667,1,1,0,0,8,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 -13914,17121,30965,-9,30964,30966,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.32135,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 -13914,17121,30966,30964,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,7.2281227,7.6045074,5.3303008,8,1,-45.854267,0,2,3,2019,6,0,35,30,1,0,0,6.7817845,6.7817845,0,0,0,0,0,1,1,0,5.244668,0,51.41,56.15,54.2,57.49,8.333333333333334,2,3,0,0,8,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 -13914,17121,30967,-9,30964,30966,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.8475,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,858.5,148720.06,62394.906,162163.05,50894.645,2766.938 -13915,17122,30968,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.4813075,7.5085688,0,0,-993.4032,0,1,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4935918,5.6161771,41.35,47.13,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,383,211098.25,70049.891,0,0,2397.4783 -13916,17123,30969,30970,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.0348883,6.852869,11,-4,-2.0816195,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8306165,6.7284608,50.64,45.34,59.31,49.81,8.333333333333334,1,1,0,0,0,9,3,1,1181,944067,366757.25,314899.97,0,3113.2341 -13916,17123,30970,30969,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.2550764,7.2994909,11,4,-38.0312,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5371542,7.5203881,59.31,49.81,50.64,45.34,8.333333333333334,1,1,0,0,0,9,3,1,1181,944067,366757.25,314899.97,0,3113.2341 -13917,17124,30971,30972,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.2788706,8.0294962,46,-3,74.59211,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6885335,8.2913837,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,5,4,4,1,600,2823268,1424749.3,481111.31,0,3150.8081 -13917,17124,30972,30971,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.656826,6.215291,46,3,129.97568,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7265627,6.1884341,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,600,2823268,1424749.3,481111.31,0,3150.8081 -13918,17125,30973,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2215538,8.1276045,0,0,0,-1025.624,0,2,2,2019,8,0,40,40,1,0,0,11.085225,11.085225,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,598,-533186.56,0,82715.352,133420.92,1265.8574 -13919,17126,30974,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.67068,7.5102773,0,0,0,-1097.8923,0,1,-9,2019,22,9,40,0,1,9,1,5.9478507,5.9478507,0,0,0,0,0,1,1,0,1.0583009,0,28.95,49.04,-9,-9,6.666666666666667,1,1,0,0,2,12,3,0,191,86390.539,21494.41,0,0,1501.9854 -13920,17127,30975,30977,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.5225363,8.3317375,0,18,0,-128.58673,0,2,2,2019,17,5,37,37,1,5,0,14.620421,14.620421,0,0,0,0,0,1,1,0,0,0,46.55,58.3,29.54,58.14,6.666666666666667,1,1,0,0,10,4,4,1,830.66669,293253.06,46678.719,224407.52,107636.25,2288.4905 -13920,17127,30976,-9,30977,30975,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.97479,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,830.66669,293253.06,46678.719,224407.52,107636.25,2288.4905 -13920,17127,30977,30975,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.1388474,7.0081043,0,18,0,187.88237,0,2,2,2019,20,9,21,24,1,9,0,7.6999311,7.6999311,0,0,0,0,0,1,1,0,0,0,29.54,58.14,46.55,58.3,3.333333333333333,1,1,0,0,8,4,4,1,830.66669,293253.06,46678.719,224407.52,107636.25,2288.4905 -13921,17128,30978,30979,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.0344172,8.1332636,0,2,5,-71.029434,0,2,3,2019,8,1,37,37,1,1,0,10.330724,10.330724,0,0,0,0,0,0,0,0,0,0,51.83,57.2,41.28,30.1,8.333333333333334,1,1,0,0,11,13,4,1,824.5,111996.95,122269.52,153087.63,73860.625,2839.0896 -13921,17128,30979,30978,-9,-9,1,1,33,0,0,0,1,1,-9,0,1,8.0872993,7.614265,0,2,-5,-35.517876,0,-9,-9,2019,20,9,37,37,1,9,0,8.3045015,8.3045015,0,0,0,0,0,0,0,0,0,0,41.28,30.1,51.83,57.2,6.666666666666667,1,1,0,0,9,13,4,1,824.5,111996.95,122269.52,153087.63,73860.625,2839.0896 -13922,17129,30980,-9,-9,-9,1,0,31,0,1,0,2,2,-9,1,3,7.8385463,8.2318268,0,0,0,-1105.7386,0,2,2,2019,9,0,44,12,1,0,0,6.3485932,6.3485932,0,0,0,0,0,1,1,0,0,0,56.16,35.13,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,873,160582.06,-150035.55,0,0,2333.1868 -13923,17130,30981,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.8590918,9.7048874,0,0,0,-964.05511,0,2,3,2019,4,0,70,65,1,0,0,24.790018,24.790018,0,0,0,0,0,0,0,0,6.5696688,0,53.22,52.37,-9,-9,10,1,1,0,0,8,2,5,1,403,158078.38,108243.65,109872.79,93586.805,6252.8589 -13924,17131,30982,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.2408848,7.9732141,0,0,0,-1036.7058,-9,-9,-9,2019,8,0,50,0,1,0,0,8.1647654,8.1647654,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,746,-123995.19,59634.566,0,0,1847.9601 -13925,17132,30983,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.001194,7.0675821,0,0,-1054.3174,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2139192,7.0927057,59.26,37.61,-9,-9,10,1,1,0,0,3,12,2,1,1036,673349,183133.25,102568.53,0,508.97522 -13926,17133,30984,30985,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.1285963,8.0720863,0,4,5,-55.743538,0,-9,-9,2019,6,0,66,68,1,0,0,4.9734044,4.9734044,0,0,0,0,14.5,1,1,0,0,0,51.49,42.78,42.35,36.31,8.333333333333334,1,1,0,0,7,12,4,1,1364,82641.305,484100.06,127503.23,26452.361,1973.3688 -13926,17133,30985,30984,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7247624,7.3261194,0,4,-5,-165.99794,0,2,2,2019,21,9,35,35,1,9,0,8.2347221,8.2347221,0,0,0,0,27,1,1,0,0,0,42.35,36.31,51.49,42.78,5,1,1,0,0,7,12,4,1,1364,82641.305,484100.06,127503.23,26452.361,1973.3688 -13926,17134,30986,-9,30985,30984,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-963.94702,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,74.5,1,1,0,0,0,51.83,57.2,-9,-9,3.333333333333333,1,1,1,1,0,12,1,1,229,-67973.961,0,0,0,549.17957 -13927,17135,30987,30988,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.647388,7.0338717,32,3,174.99785,0,3,2,2019,22,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,4.0723829,6.3396897,46.16,21,59.29,49.68,6.666666666666667,1,1,0,0,6,2,5,1,1086.5,238988.67,166718.56,233730.56,8402.6602,4598.4219 -13927,17135,30988,30987,-9,-9,1,1,65,0,0,0,2,2,-9,1,4,8.4520493,9.0329084,7.8509736,32,-3,-45.894192,0,3,2,2019,5,0,43,37,1,0,0,11.838928,11.838928,0,0,0,0,14.5,1,1,0,6.3494015,7.9099145,59.29,49.68,46.16,21,10,1,1,0,0,8,2,5,1,1086.5,238988.67,166718.56,233730.56,8402.6602,4598.4219 -13928,17136,30989,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.1762733,7.8921847,0,0,0,-1093.511,0,2,2,2019,11,0,37,37,1,0,0,9.075243,9.075243,0,0,0,0,0,0,0,0,4.7131009,0,48.12,47.31,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,300,82338.977,36864.742,60057.531,14516.825,896.35162 -13929,17137,30990,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,4,0,6.7203321,6.7399549,0,0,-845.87946,-9,2,2,2019,21,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,6.1244688,0,46.56,48.99,-9,-9,6.666666666666667,1,1,0,0,2,12,2,1,145,-72285.273,58975.641,188187.56,144649.64,519.47113 -13930,17138,30991,30992,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.3757515,8.3492928,0,7,4,111.9596,0,-9,-9,2019,12,0,38,37,1,0,0,15.346167,15.346167,0,0,0,0,0,1,1,0,0,0,37.31,53.5,38.09,63.39,6.666666666666667,1,1,0,0,7,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 -13930,17138,30992,30991,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.292933,7.6570821,0,7,-4,19.940638,0,2,2,2019,15,3,19,16,1,3,0,9.3784838,9.3784838,0,0,0,0,0,1,1,0,1.0723873,0,38.09,63.39,37.31,53.5,6.666666666666667,1,1,0,0,8,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 -13930,17138,30993,-9,30992,30991,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.71716,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 -13930,17138,30994,-9,30992,30991,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.177,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,554,32959.719,5506.5156,114934.66,141746.34,2522.1733 -13931,17139,30995,30996,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,9.7658148,9.6507511,0,6,6,24.818325,0,2,3,2019,9,1,56,52,1,1,0,31.956551,31.956551,0,0,0,0,0,1,1,0,6.3425875,0,67.03,30.27,61.68,49.95,8.333333333333334,1,1,0,0,7,9,5,1,708.66669,2299644,1837259.9,538618,75588.383,13628.043 -13931,17139,30996,30995,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.3503647,9.3603725,0,6,-6,-66.832283,0,2,2,2019,6,0,39,39,1,0,0,33.240894,33.240894,0,0,0,0,0,1,1,0,0,0,61.68,49.95,67.03,30.27,8.333333333333334,1,1,0,0,7,9,5,1,708.66669,2299644,1837259.9,538618,75588.383,13628.043 -13931,17139,30997,-9,30995,30996,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-987.2359,-9,3,1,2019,16,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,708.66669,2299644,1837259.9,538618,75588.383,13628.043 -13932,17140,30998,30999,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.5268974,8.5962133,0,28,0,-88.255753,0,2,2,2019,7,0,39,38,1,0,0,11.176036,11.176036,0,0,0,0,0,0,0,0,3.3424649,0,51.01,47.22,39.24,49.76,5,1,1,0,0,9,5,4,1,934.5,40197.031,81416.516,177516.27,82805.023,2513.4702 -13932,17140,30999,30998,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7760344,7.8272843,0,28,0,94.755974,0,2,3,2019,22,10,29,27,1,10,0,8.7566748,8.7566748,0,0,0,0,0,0,0,0,2.5447958,0,39.24,49.76,51.01,47.22,6.666666666666667,1,1,0,0,7,5,4,1,934.5,40197.031,81416.516,177516.27,82805.023,2513.4702 -13933,17141,31000,31001,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3951111,8.7701015,0,12,0,56.112011,0,2,2,2019,5,0,38,38,1,0,0,20.683849,20.683849,0,0,0,0,7,0,0,0,0,0,53.1,52.62,47.55,49.86,8.333333333333334,1,1,0,0,7,6,5,1,526.5,-52818.527,18119.699,169367.89,152009.38,3815.3486 -13933,17141,31001,31000,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2643461,8.6034384,0,12,0,-101.77401,0,2,2,2019,14,2,38,38,1,2,0,14.028378,14.028378,0,0,0,0,2,0,0,0,4.563375,0,47.55,49.86,53.1,52.62,8.333333333333334,1,1,0,0,9,6,5,1,526.5,-52818.527,18119.699,169367.89,152009.38,3815.3486 -13934,17142,31002,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.286602,8.2385101,0,0,0,-974.30896,0,3,3,2019,16,4,52,35,1,4,0,7.812417,7.812417,0,0,0,0,0,0,0,0,1.8672762,0,28.91,62.7,-9,-9,8.333333333333334,1,1,0,0,5,7,4,0,2818,591769.56,399349.03,133621.58,62377.059,1426.9354 -13935,17143,31003,31004,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,36,5,0,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,62.49,55.09,46.51,35.57,10,1,1,0,0,0,7,1,1,1483.5,14102.766,-15794.606,0,0,633.75714 -13935,17143,31004,31003,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,36,-5,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,35.57,62.49,55.09,8.333333333333334,1,1,0,0,0,7,1,1,1483.5,14102.766,-15794.606,0,0,633.75714 -13936,17144,31005,31006,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,3.1332188,3.057709,0,32,0,19.879982,0,-9,-9,2019,9,0,40,40,1,0,0,.070591904,.070591904,0,0,0,0,0,0,0,0,0,0,49.46,56.91,51,49,8.333333333333334,1,1,0,0,9,8,5,1,752.5,922731.81,456891.75,439259.88,0,3039.5962 -13936,17144,31006,31005,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.0496426,9.0193281,0,32,0,-44.685883,0,-9,-9,2019,10,0,60,40,1,1,0,14.593328,14.593328,0,0,0,0,0,0,0,0,0,0,51,49,49.46,56.91,7,4,2,0,0,1,8,5,1,752.5,922731.81,456891.75,439259.88,0,3039.5962 -13936,17145,31007,-9,31005,31006,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1050.6862,-9,3,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,2,1,0,0,8,1,1,491,-28817.412,0,0,0,415.98969 -13937,17146,31008,31009,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,8,11,0,0,-9,-9,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,55.57,30.98,59.21,43.05,8.333333333333334,1,1,0,1,0,12,1,0,457,173744.84,84891.188,107651.62,0,634.36523 -13937,17146,31009,31008,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,8,-11,0,0,3,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.21,43.05,55.57,30.98,8.333333333333334,1,1,0,0,2,12,1,0,457,173744.84,84891.188,107651.62,0,634.36523 -13938,17147,31010,-9,31012,31011,1,1,41,0,0,0,1,1,-9,0,5,8.9453249,8.8787041,0,0,0,-1081.1338,0,3,3,2019,12,0,50,50,1,0,1,15.386833,15.386833,0,0,0,0,0,1,1,0,3.2102265,0,43.24,59.41,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,353,434474.16,73237.156,123222.88,28359.689,2032.9772 -13938,17148,31011,31012,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.7553606,8.1131191,0,2,-1,3.1472473,0,-9,-9,2019,6,0,41,39,1,0,0,8.4200172,8.4200172,0,0,0,0,0,1,1,0,1.5273569,0,58.32,50.22,44.83,53.86,8.333333333333334,1,1,0,0,9,2,3,1,423.5,754001.44,449790.56,109567.56,0,886.17981 -13938,17148,31012,31011,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,2,1,81.964806,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.0034983375,0,44.83,53.86,58.32,50.22,8.333333333333334,1,1,0,0,0,2,3,1,423.5,754001.44,449790.56,109567.56,0,886.17981 -13939,17149,31013,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.5638208,8.6288958,0,0,0,-1056.5449,0,-9,-9,2019,13,2,38,60,1,2,0,16.089487,16.089487,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,1,9,9,5,0,464,82378.305,134493.98,521248.31,168215.61,631.56561 -13940,17150,31014,31015,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.5917482,8.8090878,47,2,21.972294,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.0004978,49.52,56.95,61.23,51.58,8.333333333333334,1,1,0,0,6,1,5,1,604,2360434,1769590.3,177081.09,0,4698.4756 -13940,17150,31015,31014,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.6195345,6.7189374,47,-2,-72.19957,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7884831,61.23,51.58,49.52,56.95,8.333333333333334,1,1,0,0,5,1,5,1,604,2360434,1769590.3,177081.09,0,4698.4756 -13941,17151,31016,31017,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.7665391,7.6750693,9,-2,-42.468273,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.6371002,51,46,53,46,7,3,4,0,0,0,7,3,1,320.5,1186745,530002.13,438573.75,0,3737.2876 -13941,17151,31017,31016,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.2347684,7.8730717,49,2,-155.85173,-9,2,2,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.211134,7.0692286,53,46,51,46,7,3,4,0,0,0,7,3,1,320.5,1186745,530002.13,438573.75,0,3737.2876 -13942,17152,31018,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1070.844,0,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,2,4,1,0,523,-168828.58,0,0,0,1161.1619 -13942,17153,31019,-9,-9,31021,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1001.8639,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 -13942,17153,31020,-9,-9,31021,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1016.065,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 -13942,17153,31021,-9,31018,-9,1,1,24,0,0,0,3,3,-9,0,4,0,0,0,0,0,-962.10071,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,1,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 -13942,17153,31022,-9,-9,31021,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-984.03076,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,755.75,-2449.1211,0,0,0,443.76318 -13943,17154,31023,-9,31024,-9,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-897.25824,-9,1,-9,2019,25,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,22.36,52.53,-9,-9,3.333333333333333,1,1,0,0,0,10,5,1,1155.5,311984.81,149177.98,323849.38,0,2716.342 -13943,17154,31024,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.1950226,8.9226189,6.8498735,0,0,-1065.418,0,2,2,2019,25,8,37,37,1,8,0,9.8324804,9.8324804,0,0,0,0,0,1,1,0,7.8344131,0,23.55,55.96,-9,-9,1.666666666666667,1,1,0,0,8,10,5,1,1155.5,311984.81,149177.98,323849.38,0,2716.342 -13943,17155,31025,-9,31024,-9,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-998.60486,-9,1,-9,2019,30,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,15.49,56.76,-9,-9,6.666666666666667,1,1,0,0,1,10,1,1,450,357665.28,0,0,0,0 -13944,17156,31026,31027,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8251867,7.7009649,0,39,-7,114.75188,0,2,3,2019,7,0,40,37,1,0,0,6.9967136,6.9967136,0,0,0,0,0,1,1,0,0,0,54.96,53.17,52.03,39.57,5,1,1,0,0,11,1,3,1,1049.5,173428.38,-18093.635,217137.41,0,2390.3535 -13944,17156,31027,31026,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,38,7,-21.657806,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,9.2019901,0,2,1,1,0,1.0318513,0,52.03,39.57,54.96,53.17,6.666666666666667,1,1,0,0,11,1,3,1,1049.5,173428.38,-18093.635,217137.41,0,2390.3535 -13945,17157,31028,31029,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.0774136,9.2161121,0,8,0,73.755692,0,3,2,2019,8,0,53,63,1,0,0,13.000678,13.000678,0,0,0,0,0,0,0,0,0,0,60.27,49.27,46.88,49.92,6.666666666666667,1,1,0,0,12,9,5,1,1581.5,2869278,2212776.3,912156.13,218939.94,6112.9551 -13945,17157,31029,31028,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.9889927,9.5853949,0,8,0,-70.68602,0,-9,-9,2019,11,0,88,48,1,0,0,12.077679,12.077679,0,0,0,0,0,0,0,0,.87141442,0,46.88,49.92,60.27,49.27,8.333333333333334,1,1,0,0,12,9,5,1,1581.5,2869278,2212776.3,912156.13,218939.94,6112.9551 -13946,17158,31030,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.7719111,7.9408669,0,0,0,-1122.5306,0,3,2,2019,12,0,31,30,1,0,0,6.4260998,6.4260998,0,0,0,0,0,1,1,0,0,0,52.56,39.66,-9,-9,5,1,1,0,0,10,11,3,0,571,192434.27,28951.645,191921.84,16789.199,496.29666 -13946,17159,31031,-9,31030,-9,1,1,21,0,0,0,2,2,-9,0,2,7.549562,7.7814975,0,0,0,-956.77069,0,2,-9,2019,27,10,33,34,1,10,1,7.0692735,7.0692735,0,0,0,0,0,1,1,0,0,0,23.65,54.69,-9,-9,0,1,1,0,0,3,11,3,0,222,-621989.81,-76467.555,0,0,841.17188 -13947,17160,31032,-9,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1097.5145,-9,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,31.95,44.74,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,1251.5,0,0,0,0,0 -13947,17160,31033,-9,31034,31032,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.99359,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,1251.5,0,0,0,0,0 -13947,17161,31034,-9,-9,-9,1,0,30,0,2,0,3,3,-9,1,2,0,0,0,0,0,-1058.5952,0,3,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,0,1,0,0,50,25.72,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,263.5,90558.125,0,0,0,2028.6597 -13947,17161,31035,-9,31034,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3789,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,1,0,263.5,90558.125,0,0,0,2028.6597 -13947,17162,31036,-9,-9,-9,1,1,21,0,2,0,3,3,-9,1,3,0,0,0,0,0,-1061.99,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,31.94,41.95,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,231,-11933.719,0,0,0,1412.3018 -13948,17163,31037,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4726553,8.3920832,0,0,0,-1030.6731,0,2,2,2019,16,4,44,44,1,4,0,11.108751,11.108751,0,0,0,0,0,0,0,0,0,0,39.26,60.13,-9,-9,3.333333333333333,1,1,0,0,11,4,5,1,533,1247625.3,1383182.1,142372.41,108629.73,1241.4293 -13949,17164,31038,31039,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,4.4618325,4.3286157,67,1,28.520212,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,3.5129318,4.5169148,41.81,37.91,51.16,38.86,6.666666666666667,1,1,0,0,0,5,2,0,385,151786.95,0,99261.273,0,1134.1462 -13949,17164,31039,31038,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,67,-1,-1.0380816,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,13.144288,0,0,1,1,0,0,0,51.16,38.86,41.81,37.91,8.333333333333334,1,1,0,0,0,5,2,0,385,151786.95,0,99261.273,0,1134.1462 -13950,17165,31040,31041,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.892395,8.8669586,0,14,-7,19.771484,0,2,2,2019,24,11,53,47,1,11,0,18.29669,18.29669,0,0,0,0,0,1,1,0,3.0403163,0,30.94,61.65,58.15,52.91,5,1,1,0,0,7,10,4,1,734.33331,1566652.4,204410.08,320848.47,0,2768.9668 -13950,17165,31041,31040,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,0,0,0,13,7,87.656967,0,2,1,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.75775284,0,58.15,52.91,30.94,61.65,8.333333333333334,1,1,0,0,5,10,4,1,734.33331,1566652.4,204410.08,320848.47,0,2768.9668 -13950,17165,31042,-9,31040,31041,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.5065,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,734.33331,1566652.4,204410.08,320848.47,0,2768.9668 -13951,17166,31043,-9,31046,31044,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.0813,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 -13951,17166,31044,31046,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.7669153,8.8782701,0,20,0,20.344213,0,2,2,2019,7,0,35,35,1,0,0,19.679552,19.679552,0,0,0,0,0,1,1,0,5.1300621,0,57.06,57.76,19.77,62.56,3.333333333333333,1,1,0,0,8,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 -13951,17166,31045,-9,31046,31044,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.5498,-9,1,2,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 -13951,17166,31046,31044,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.4835215,8.8067894,0,21,0,-179.94646,0,2,2,2019,21,9,45,55,1,9,0,12.995205,12.995205,0,0,0,0,0,1,1,0,.3384698,0,19.77,62.56,57.06,57.76,1.666666666666667,1,1,0,0,8,7,5,1,529.5,610151.81,252879.06,339238.66,135438.39,4347.3076 -13952,17167,31047,31048,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.621974,7.5183148,0,40,-8,28.483768,0,2,2,2019,15,3,28,26,1,3,0,6.5302849,6.5302849,0,0,0,0,0,1,1,0,3.0781517,0,45.85,61.26,57.16,56.15,8.333333333333334,1,1,0,0,9,11,3,1,589.5,1364987,796135.25,536037.56,0,2218.7708 -13952,17167,31048,31047,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.5356855,7.7193017,40,8,-24.189367,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4749641,7.4509692,57.16,56.15,45.85,61.26,8.333333333333334,1,1,0,0,7,11,3,1,589.5,1364987,796135.25,536037.56,0,2218.7708 -13953,17168,31049,31050,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,7,-7,-30.216787,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,58.17,21.86,64.23999999999999,34.3,6.666666666666667,1,1,0,0,0,6,2,1,592,767131.94,310820.63,455418.69,0,1561.1372 -13953,17168,31050,31049,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.3811164,6.9460635,45,7,.67392641,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0687122,64.23999999999999,34.3,58.17,21.86,8.333333333333334,1,1,0,0,7,6,2,1,592,767131.94,310820.63,455418.69,0,1561.1372 -13954,17169,31051,-9,31052,31053,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.25751,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 -13954,17169,31052,31053,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.4675283,7.2365298,0,15,0,41.06683,0,3,3,2019,14,2,37,35,1,2,0,4.3907475,4.3907475,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.12,54.8,6.666666666666667,1,1,0,0,6,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 -13954,17169,31053,31052,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.0444431,8.0847759,0,15,9,-17.379173,0,2,2,2019,7,0,40,55,1,0,0,9.5506477,9.5506477,0,0,0,0,0,1,1,0,7.4907928,0,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,7,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 -13954,17169,31054,-9,31052,31053,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.0876,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1074.5,215751.52,74272.734,0,0,3866.7695 -13955,17170,31055,31056,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,34,1,-40.26326,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4742951,0,61.12,51.57,36.27,59.32,8.333333333333334,1,1,0,0,8,4,4,1,209,399799.44,178210.31,154813.08,50870.094,1421.1174 -13955,17170,31056,31055,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5922694,8.1913939,7.8572779,8,-1,-63.103725,0,-9,-9,2019,19,5,24,32,1,5,0,11.488441,11.488441,0,0,0,0,2,0,0,0,0,7.7741838,36.27,59.32,61.12,51.57,1.666666666666667,1,1,0,0,9,4,4,1,209,399799.44,178210.31,154813.08,50870.094,1421.1174 -13956,17171,31057,31058,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.3496418,5.2578573,48,-2,76.703224,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2177048,5.1375327,57.09,46.7,60.3,46.58,8.333333333333334,1,1,0,0,0,4,2,1,185,582968.31,625635.81,132724.56,0,3216.0156 -13956,17171,31058,31057,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,5.0421324,4.9831944,8,2,-39.116001,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8189049,5.1348639,60.3,46.58,57.09,46.7,10,1,1,0,0,0,4,2,1,185,582968.31,625635.81,132724.56,0,3216.0156 -13957,17172,31059,31060,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,0,0,0,37,4,-30.901819,0,1,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,41.37,31.18,44.64,51.08,3.333333333333333,1,1,0,1,3,11,5,0,644.5,454132.06,411834.34,150146.25,0,2451.1672 -13957,17172,31060,31059,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.0972633,9.1262474,0,35,-4,82.577988,0,2,2,2019,3,0,40,27,1,0,0,18.326778,18.326778,0,0,0,0,14.5,1,0,1,2.1314411,0,44.64,51.08,41.37,31.18,6.666666666666667,1,1,0,0,10,11,5,0,644.5,454132.06,411834.34,150146.25,0,2451.1672 -13957,17173,31061,-9,31060,31059,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1101.1139,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,673,118894,0,0,0,0 -13957,17174,31062,-9,31060,31059,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.13934,0,2,2,2019,20,7,0,0,3,7,1,0,0,0,0,0,0,0,1,0,1,0,0,38.64,55.03,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,689,0,0,0,0,-433.28146 -13958,17175,31063,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.8098822,7.6740923,0,0,0,-937.27716,0,2,2,2019,8,0,40,40,1,0,0,7.1304197,7.1304197,0,0,0,0,0,0,0,0,3.9090223,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,107,233839.47,179605.06,163779.55,153180.78,619.77258 -13958,17176,31064,-9,31063,-9,1,0,24,0,0,0,1,1,-9,0,3,7.4875412,7.3580441,0,0,0,-1017.7783,0,2,-9,2019,11,3,35,35,1,3,1,7.4590464,7.4590464,0,0,0,0,0,0,0,0,1.6702251,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,166,-37013,0,0,0,548.02362 -13959,17177,31065,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.3425522,6.5914135,0,0,-949.86786,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.568141,6.3148165,58.75,51.28,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,1360,367061.94,127493.13,291842.28,0,1229.9352 -13960,17178,31066,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1069.072,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.12,38.08,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,685,-346767.69,0,0,0,1389.6764 -13961,17179,31067,31068,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.1573534,5.9032531,50,1,67.972771,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4176564,5.9016418,40.66,58.11,50,47,8.333333333333334,1,1,0,0,6,6,2,1,393.5,42024.438,135742.61,119336.81,0,4045.259 -13961,17179,31068,31067,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,9,-1,38.173904,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,40.66,58.11,7,1,1,0,0,0,6,2,1,393.5,42024.438,135742.61,119336.81,0,4045.259 -13962,17180,31069,-9,31072,31070,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.5178,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 -13962,17180,31070,31072,-9,-9,1,1,34,2,2,0,2,2,-9,0,4,8.2804556,8.2103558,0,3,-2,-10.397284,0,-9,-9,2019,7,0,45,42,1,0,0,8.1450138,8.1450138,0,0,0,0,0,1,1,0,4.1228795,0,49.41,58.28,51.73,58.82,6.666666666666667,1,1,0,0,2,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 -13962,17180,31071,-9,31072,31070,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-972.20294,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 -13962,17180,31072,31070,-9,-9,1,0,36,2,2,0,1,1,-9,0,5,8.2497616,8.1539536,0,3,2,-15.323213,0,3,3,2019,16,6,31,31,1,6,0,10.646795,10.646795,0,0,0,0,0,1,1,0,4.3051853,0,51.73,58.82,49.41,58.28,10,1,1,0,0,6,4,4,1,608.5,375992.56,45666.879,260054.59,84031.75,2911.3088 -13963,17181,31073,31074,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2779474,8.2988091,0,1,-5,10.694659,0,2,3,2019,9,0,37,38,1,0,0,10.533632,10.533632,0,0,0,0,0,0,0,0,.39038828,0,52.24,58.56,50,57,8.333333333333334,1,1,0,0,6,1,5,1,380.5,302869.06,342672.09,101171.13,63546.031,5643.7256 -13963,17181,31074,31073,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.9133034,9.229166,0,1,5,-43.648167,-9,-9,-9,2019,10,0,45,0,1,1,0,33.141445,33.141445,0,0,0,0,0,0,0,0,6.8677206,0,50,57,52.24,58.56,7,1,1,0,0,1,1,5,1,380.5,302869.06,342672.09,101171.13,63546.031,5643.7256 -13964,17182,31075,31076,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.9596982,6.849319,58,0,64.70015,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,3.0389054,0,0,1,1,0,0,6.7911253,60.59,26.32,58.15,52.91,8.333333333333334,1,1,0,0,0,6,2,1,756.5,752804.38,81423.734,132010.81,0,1742.4573 -13964,17182,31076,31075,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,58,0,-.85765409,0,2,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,58.15,52.91,60.59,26.32,8.333333333333334,1,1,0,0,0,6,2,1,756.5,752804.38,81423.734,132010.81,0,1742.4573 -13965,17183,31077,31080,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.5287924,8.3853502,0,7,1,99.997261,0,2,2,2019,5,0,40,48,1,0,0,13.006248,13.006248,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,12,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 -13965,17183,31078,-9,31080,31077,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.4227,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 -13965,17183,31079,-9,31080,31077,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-881.86292,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 -13965,17183,31080,31077,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,0,0,0,7,-1,39.023609,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,1427.75,81118.875,-36906.348,0,0,2461.4075 -13966,17184,31081,31082,-9,-9,1,0,62,0,2,0,3,3,-9,0,3,0,0,0,8,-4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,52,48,7,2,3,0,0,0,4,1,1,683,-153688,-18458.574,0,0,1282.8544 -13966,17184,31082,31081,-9,-9,1,1,66,0,2,0,3,3,-9,0,3,0,0,0,46,4,0,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,49,48,7,2,3,0,0,0,4,1,1,683,-153688,-18458.574,0,0,1282.8544 -13966,17185,31083,31086,31081,31082,1,1,38,0,2,0,2,2,-9,0,4,8.1574898,8.2826252,0,5,2,-50.506165,0,3,3,2019,10,0,40,40,1,1,0,9.7721453,9.7721453,0,0,0,0,0,1,1,0,0,0,51,56,49.82,37.85,7,2,3,0,0,1,4,3,1,752.25,59482.203,0,0,0,2080.9285 -13966,17185,31084,-9,31086,31083,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.87677,-9,3,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,2,3,-9,0,0,4,3,1,752.25,59482.203,0,0,0,2080.9285 -13966,17185,31085,-9,31086,31083,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-840.84998,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,3,1,752.25,59482.203,0,0,0,2080.9285 -13966,17185,31086,31083,-9,-9,1,0,36,0,2,0,3,3,-9,0,3,0,0,0,5,-2,-47.984604,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.82,37.85,51,56,8.333333333333334,2,3,0,0,0,4,3,1,752.25,59482.203,0,0,0,2080.9285 -13967,17186,31087,-9,31089,31090,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.90015,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 -13967,17186,31088,-9,31089,31090,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.41254,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 -13967,17186,31089,31090,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.7196341,8.3653116,0,16,-4,-66.595978,0,1,1,2019,10,2,40,42,1,2,0,14.894391,14.894391,0,0,0,0,0,1,1,0,0,0,55.24,55.87,58.89,48.6,8.333333333333334,1,1,0,0,9,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 -13967,17186,31090,31089,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.3915434,8.4859867,0,14,4,-55.710812,0,2,2,2019,6,0,43,42,1,0,0,16.231371,16.231371,0,0,0,0,0,1,1,0,0,0,58.89,48.6,55.24,55.87,8.333333333333334,1,1,0,0,9,2,5,1,593.25,9912.582,91542.32,192764.16,141317.55,3777.3704 -13968,17187,31091,31092,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.5168524,6.476368,8,-6,-94.734764,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,13.104592,0,0,1,1,0,0,6.4031663,60.7,47.65,59.07,43.05,8.333333333333334,1,1,0,0,0,5,2,1,1318,209440.53,155732.34,147797.34,0,1605.8184 -13968,17187,31092,31091,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.9117999,6.7274699,60,6,-73.015221,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,5.5027304,0,0,1,1,0,0,7.0280418,59.07,43.05,60.7,47.65,8.333333333333334,1,1,0,0,0,5,2,1,1318,209440.53,155732.34,147797.34,0,1605.8184 -13969,17188,31093,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-900.93573,-9,3,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,1,2,1,0,3820,-107548.22,0,0,0,0 -13969,17189,31094,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.4518137,7.512548,0,0,0,-903.08917,0,3,3,2019,9,0,26,38,1,0,1,6.7457805,6.7457805,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,3,2,3,0,691,269627.94,-28849.068,0,0,888.1535 -13970,17190,31095,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1080.9989,0,3,-9,2019,8,0,0,50,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,7,1,1,120,-428831.47,0,0,0,322.58124 -13970,17191,31096,-9,31095,-9,1,1,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-816.36249,-9,3,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,24.3,59.38,-9,-9,5,1,1,1,0,0,7,2,1,1330,-220580.03,0,0,0,949.48267 -13971,17192,31097,31099,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.8860474,8.7388887,0,19,0,-5.8873148,0,2,1,2019,11,1,40,37,1,1,0,19.079029,19.079029,0,0,0,0,0,1,1,0,3.0599506,0,58.05,54.52,48.87,58.55,8.333333333333334,1,1,0,0,12,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 -13971,17192,31098,-9,31099,31097,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1072.9895,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 -13971,17192,31099,31097,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.705925,8.5122223,0,18,0,79.602715,0,2,2,2019,10,0,39,38,1,0,0,18.573826,18.573826,0,0,0,0,0,1,1,0,0,0,48.87,58.55,58.05,54.52,8.333333333333334,1,1,0,0,8,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 -13971,17192,31100,-9,31099,31097,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.1136,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,737.5,605936.25,527865.88,494426.25,383935.16,4419.3296 -13972,17193,31101,-9,-9,-9,1,0,31,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1031.6056,0,-9,-9,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,.21990585,0,35.61,34.79,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,214,0,0,0,0,2548.3606 -13972,17193,31102,-9,31101,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.8266,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,7,1,0,214,0,0,0,0,2548.3606 -13972,17193,31103,-9,31101,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-923.79712,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,1,0,214,0,0,0,0,2548.3606 -13973,17194,31104,31105,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.4013085,6.1396608,8,-5,30.201326,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.4841857,6.1348324,56.6,47.06,51.42,21.32,0,1,1,0,0,0,5,3,1,1237,955920.75,625372.25,289332,14895.947,2654.0095 -13973,17194,31105,31104,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.0508375,6.8783269,39,5,12.359402,0,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.5534039,7.4389644,51.42,21.32,56.6,47.06,5,1,1,0,0,1,5,3,1,1237,955920.75,625372.25,289332,14895.947,2654.0095 -13974,17195,31106,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,8.5101938,8.5478973,0,0,0,-1097.0105,0,2,2,2019,7,0,30,30,1,0,0,20.406513,20.406513,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 -13974,17195,31107,-9,31106,-9,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-955.82379,-9,2,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,44.63,-9,-9,8.333333333333334,1,1,0,1,0,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 -13974,17195,31108,-9,31106,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.0311,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 -13974,17195,31109,-9,31106,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.25739,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1279.5,42711.008,-47455.41,0,0,3617.9016 -13975,17196,31110,31111,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.297864,8.4277802,0,25,-5,94.152283,0,3,2,2019,9,0,30,27,1,0,0,13.246079,13.246079,0,0,0,0,0,1,1,0,5.0623822,0,59.75,37.25,60.14,44.41,8.333333333333334,1,1,0,0,10,2,4,1,823.5,706604.25,493758.88,0,0,2565.2578 -13975,17196,31111,31110,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,7.0803447,7.2732248,0,8,5,-11.84215,0,-9,-9,2019,9,0,35,40,1,0,0,3.7262549,3.7262549,0,0,0,0,0,1,1,0,2.9847877,0,60.14,44.41,59.75,37.25,6.666666666666667,1,1,0,0,10,2,4,1,823.5,706604.25,493758.88,0,0,2565.2578 -13976,17197,31112,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,5.6643724,5.9700928,0,0,-911.82037,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,10.443895,0,0,1,1,0,0,5.864265,52.88,42.68,-9,-9,10,3,4,0,0,0,8,2,1,182,220283.45,26061.701,61347.863,0,1572.5295 -13977,17198,31113,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.9239197,5.2655387,0,0,-914.60931,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7769547,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,707,192471.52,-9214.9854,0,0,411.0336 -13978,17199,31114,31115,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.5445695,7.7058301,30,-2,9.2518358,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7129154,7.5798798,57.16,56.15,57.06,57.76,10,1,1,0,0,0,7,3,1,513.5,407502.19,211486.36,219556.13,0,2017.7711 -13978,17199,31115,31114,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,34,2,48.785881,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.7843249,0,57.06,57.76,57.16,56.15,10,1,1,0,0,0,7,3,1,513.5,407502.19,211486.36,219556.13,0,2017.7711 -13979,17200,31116,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.2437053,5.9550786,0,0,-934.00079,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0841942,6.2538905,52.6,34.11,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,275,426970.41,107786.85,121176.29,0,320.69427 -13980,17201,31117,31118,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.5172324,7.5640888,47,3,-49.866592,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6496921,7.4137955,53.87,53.44,59.14,52.5,8.333333333333334,1,1,0,0,4,11,3,1,989,878548.63,364488.75,279125,0,2283.0454 -13980,17201,31118,31117,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.7823362,6.4553881,47,-3,-68.966179,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4412308,6.266304,59.14,52.5,53.87,53.44,8.333333333333334,1,1,0,0,0,11,3,1,989,878548.63,364488.75,279125,0,2283.0454 -13981,17202,31119,31121,-9,-9,1,1,48,0,2,0,3,3,-9,1,1,0,0,0,13,7,61.177673,-9,3,3,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.97,21.24,26.15,62.44,5,1,1,0,0,4,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 -13981,17202,31120,-9,31121,31119,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1080.3547,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 -13981,17202,31121,31119,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.6553612,7.5248747,0,16,-7,4.132411,-9,2,2,2019,28,10,26,0,1,10,0,12.685183,12.685183,0,0,0,0,42,1,1,0,0,0,26.15,62.44,30.97,21.24,5,1,1,0,1,10,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 -13981,17202,31122,-9,31121,31119,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.18896,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,658.5,270765.41,0,140911.75,96306.031,2390.2427 -13982,17203,31123,-9,31124,-9,1,1,16,0,4,1,2,0,-9,0,4,0,0,0,0,0,-834.01031,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.09,39.69,-9,-9,5,1,1,0,0,0,2,2,1,640,95825.906,0,0,0,1451.4553 -13982,17203,31124,-9,-9,-9,1,0,43,0,4,0,2,2,-9,0,3,7.0449629,6.8666468,0,0,0,-1041.6256,0,2,2,2019,19,8,15,20,1,8,0,8.6435251,8.6435251,0,0,0,0,0,1,1,0,0,0,54.13,48.04,-9,-9,1.666666666666667,1,1,0,0,12,2,2,1,640,95825.906,0,0,0,1451.4553 -13983,17204,31125,31127,-9,-9,1,1,55,0,1,0,1,1,-9,0,2,8.6571054,8.5077028,0,9,5,4.7048893,0,2,3,2019,6,0,60,63,1,0,0,9.4724178,9.4724178,0,0,0,0,0,0,0,0,6.1566095,0,54.61,51.04,56.33,51.02,6.666666666666667,1,1,0,0,4,9,5,1,1004,648841.56,278797.13,482265.47,149155.64,6858.501 -13983,17204,31126,-9,31127,31125,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-905.03296,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,5,1,1004,648841.56,278797.13,482265.47,149155.64,6858.501 -13983,17204,31127,31125,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.8662634,9.7608671,0,2,-5,59.527607,0,1,2,2019,7,0,40,45,1,0,0,48.571751,48.571751,0,0,0,0,0,0,0,0,4.6888413,0,56.33,51.02,54.61,51.04,6.666666666666667,1,1,0,0,6,9,5,1,1004,648841.56,278797.13,482265.47,149155.64,6858.501 -13984,17205,31128,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.5895247,7.9788299,0,0,0,-988.98492,0,3,-9,2019,10,0,30,60,1,0,0,7.6992245,7.6992245,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,3369,73356.5,0,80177.438,6259.4214,1380.3521 -13985,17206,31129,31130,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.870779,9.4560289,0,30,0,-159.5159,0,3,3,2019,18,7,43,85,1,7,0,51.223454,51.223454,0,0,0,0,0,0,0,0,0,0,34.16,49.23,43.85,34.28,8.333333333333334,1,1,0,0,13,6,5,1,1068.5,674589.38,481772,80755.844,35852.555,5822.3545 -13985,17206,31130,31129,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,30,0,73.559242,0,3,2,2019,12,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,.89862132,0,43.85,34.28,34.16,49.23,8.333333333333334,1,1,0,0,12,6,5,1,1068.5,674589.38,481772,80755.844,35852.555,5822.3545 -13985,17207,31131,-9,31130,31129,1,1,29,0,0,0,2,2,-9,0,4,8.837678,8.8394289,0,0,0,-964.85034,0,1,1,2019,12,0,20,48,1,0,1,30.819323,30.819323,0,0,0,0,27,0,0,0,0,0,43.44,58.7,-9,-9,8.333333333333334,1,1,0,0,5,6,5,1,596,223283.91,101588.52,155903.52,108281.28,1332.9762 -13985,17208,31132,-9,31130,31129,1,1,23,0,0,0,1,1,1,0,5,8.0475178,7.8108401,0,0,0,-969.76288,-9,2,1,2019,12,0,40,0,1,0,1,6.8989186,6.8989186,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,1387,-378123,0,0,0,1379.0258 -13985,17209,31133,-9,31130,31129,1,1,21,0,0,0,2,2,-9,0,5,7.8662157,7.9136291,0,0,0,-1031.8083,0,2,1,2019,12,0,35,0,1,0,1,9.5694132,9.5694132,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,1083,419058.31,0,0,0,1267.3303 -13985,17210,31134,-9,31130,31129,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.1852,-9,2,1,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,395,210082.7,0,0,0,0 -13986,17211,31135,31136,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.0665846,9.0686693,0,1,4,74.772873,-9,-9,-9,2019,29,10,41,0,1,10,0,22.439711,22.439711,0,0,0,0,0,0,0,0,5.7376547,0,31.19,49.52,45.91,59.89,1.666666666666667,1,1,0,0,5,11,5,1,390.5,351158.69,427967.94,85421.813,57917.875,6186.9717 -13986,17211,31136,31135,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.0035448,8.9733591,0,11,-4,149.93083,-9,2,2,2019,13,1,41,0,1,1,0,22.627596,22.627596,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.19,49.52,8.333333333333334,1,1,0,0,12,11,5,1,390.5,351158.69,427967.94,85421.813,57917.875,6186.9717 -13987,17212,31137,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1139.0739,0,2,-9,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,.31212553,0,35.03,24.76,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,582.66669,61853.316,0,0,0,1251.7769 -13987,17212,31138,-9,31137,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.43787,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,582.66669,61853.316,0,0,0,1251.7769 -13987,17212,31139,-9,31137,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.1427,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,582.66669,61853.316,0,0,0,1251.7769 -13988,17213,31140,31141,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.6136684,8.4699869,0,7,-3,-59.92028,0,2,3,2019,9,0,37,53,1,0,0,20.686354,20.686354,0,0,0,0,0,0,0,0,7.391088,0,54.13,48.04,48.28,60.18,8.333333333333334,1,1,0,0,10,5,5,1,473,374725.91,141328.03,552236.44,354965.5,5697.5635 -13988,17213,31141,31140,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.924037,8.8867588,0,7,3,50.488701,0,-9,-9,2019,13,1,59,80,1,1,0,17.548367,17.548367,0,0,0,0,0,0,0,0,7.336544,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,5,5,1,473,374725.91,141328.03,552236.44,354965.5,5697.5635 -13989,17214,31142,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,7.6763744,7.6996965,0,0,-1057.2007,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0224609,7.9966092,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,325,428854.22,49697.789,104445.75,0,2685.5103 -13990,17215,31143,-9,31145,31144,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1004.1559,-9,2,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 -13990,17215,31144,31145,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.9432335,8.7323008,0,7,-1,55.179031,-9,2,3,2019,12,0,40,0,1,0,0,20.261843,20.261843,0,0,0,0,0,1,1,0,5.2125406,0,57.16,56.15,56.18,53.85,8.333333333333334,1,1,0,0,8,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 -13990,17215,31145,31144,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,6.0515985,6.2153196,0,7,1,30.041225,0,2,2,2019,8,0,9,0,1,0,0,6.4932284,6.4932284,0,0,0,0,0,1,1,0,0,0,56.18,53.85,57.16,56.15,8.333333333333334,1,1,0,0,5,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 -13990,17215,31146,-9,31145,31144,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.50787,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,994,327506.13,318932.47,189669.64,50457.664,2726.9756 -13991,17216,31147,-9,31151,31149,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1155.3738,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 -13991,17216,31148,-9,31151,31149,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1122.9608,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 -13991,17216,31149,31151,-9,-9,1,1,30,1,4,0,3,3,-9,0,2,6.795248,6.742775,0,1,-2,-40.382339,-9,-9,-9,2019,14,3,25,0,1,3,0,3.5910294,3.5910294,0,0,0,0,0,1,1,0,0,0,54.87,41.4,48,57,6.666666666666667,2,3,0,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 -13991,17216,31150,-9,31151,31149,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.172,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 -13991,17216,31151,31149,-9,-9,1,0,32,1,4,0,2,2,-9,0,4,0,0,0,1,2,91.52565,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,54.87,41.4,7,3,4,0,0,0,8,2,0,401,154062.39,0,0,0,2884.7129 -13992,17217,31152,31153,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.0361538,9.3471251,0,8,-1,-25.213129,0,2,2,2019,10,0,65,53,1,1,0,16.624607,16.624607,0,0,0,0,0,0,0,0,0,0,50,57,48,56,7,1,1,0,0,11,12,5,1,383,234407.72,62422.66,221960.25,186261.94,5128.1836 -13992,17217,31153,31152,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.7345943,8.316596,0,8,1,49.828697,0,2,2,2019,11,0,35,40,1,2,0,17.603601,17.603601,0,0,0,0,14.5,0,0,0,0,0,48,56,50,57,7,1,1,0,0,11,12,5,1,383,234407.72,62422.66,221960.25,186261.94,5128.1836 -13993,17218,31154,31155,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,0,7.4839692,7.3903456,9,6,22.258575,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4956236,8.1038008,63.38,53.47,57.16,56.15,10,1,1,0,0,9,11,3,1,1542,1443577.5,802026.38,371434.63,0,548.81781 -13993,17218,31155,31154,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,5.2673049,5.6682825,9,-6,4.3060827,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.6155531,5.6064878,57.16,56.15,63.38,53.47,8.333333333333334,1,1,0,0,9,11,3,1,1542,1443577.5,802026.38,371434.63,0,548.81781 -13994,17219,31156,31157,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.0186253,5.1716704,32,10,-82.176704,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4152541,4.9876823,57.33,53.46,58.32,50.22,10,1,1,0,0,7,5,2,1,571.5,146918.42,115269.41,71691.742,0,798.19592 -13994,17219,31157,31156,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,5.4674191,5.7373528,3.4011469,32,-10,59.116474,0,3,3,2019,7,0,4,10,1,0,0,7.9026265,7.9026265,0,0,0,0,0,1,1,0,2.5718081,3.3662648,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,11,5,2,1,571.5,146918.42,115269.41,71691.742,0,798.19592 -13995,17220,31158,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.5143018,7.5488605,0,0,0,-1153.5967,0,3,2,2019,11,0,35,30,1,0,0,6.00772,6.00772,0,0,0,0,7,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,640,-412237.91,-41452.184,0,0,943.9743 -13995,17221,31159,-9,31158,-9,1,1,21,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1000.066,1,2,-9,2019,11,0,0,45,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,324,142492.8,0,0,0,900.59314 -13996,17222,31160,-9,31162,31161,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-859.5965,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1210,-75984.289,36361.922,0,0,3700.3706 -13996,17222,31161,31162,-9,-9,1,1,61,1,1,0,2,2,-9,0,4,8.9279165,8.5456467,0,7,34,-47.131466,0,-9,-9,2019,6,0,60,60,1,0,0,10.038129,10.038129,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,2,4,0,1210,-75984.289,36361.922,0,0,3700.3706 -13996,17222,31162,31161,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.7007585,7.9188375,0,7,-34,-22.504709,0,2,2,2019,9,0,36,38,1,0,0,7.8888111,7.8888111,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,0,1210,-75984.289,36361.922,0,0,3700.3706 -13997,17223,31163,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,1,0,0,0,0,0,-927.70325,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.2,31.96,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1248,-71736.992,0,0,0,319.04669 -13998,17224,31164,-9,31165,-9,1,0,16,0,2,1,2,0,-9,1,2,0,0,0,0,0,-947.11377,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.53,55.61,-9,-9,0,1,1,0,0,0,10,2,1,870.5,-333929.5,0,82726.156,152811.72,1597.3914 -13998,17224,31165,-9,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,0,6.2523766,6.3234119,0,0,-1020.7799,-9,1,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.7621398,0,33.83,63.9,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,870.5,-333929.5,0,82726.156,152811.72,1597.3914 -13999,17225,31166,31167,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,7.7310753,7.844594,0,10,0,84.763466,0,1,1,2019,6,1,28,32,1,1,0,9.9450626,9.9450626,0,0,0,0,0,1,1,0,0,0,52.21,59.91,50.71,52.35,10,1,1,0,0,11,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 -13999,17225,31167,31166,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,5.8429542,5.9272604,0,10,0,-22.961683,0,-9,-9,2019,7,0,32,30,1,0,0,1.0449939,1.0449939,0,0,0,0,0,1,1,0,0,0,50.71,52.35,52.21,59.91,8.333333333333334,2,3,0,0,12,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 -13999,17225,31168,-9,31167,31166,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.5956,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 -13999,17225,31169,-9,31167,31166,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.764,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,3,1,379.75,216956.53,7113.9063,116930.02,20154.879,1224.4362 -14000,17226,31170,31171,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0716095,8.3360405,0,30,-12,-114.03488,0,3,3,2019,10,0,24,24,1,0,0,12.907972,12.907972,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,10,7,4,1,804,335195.44,9260.502,517701.25,0,2997.5239 -14000,17226,31171,31170,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7397051,7.4492826,27,12,59.525673,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.709938,57.73,54.53,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,804,335195.44,9260.502,517701.25,0,2997.5239 -14001,17227,31172,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,0,6.4523196,6.5242534,0,0,-1090.5376,0,-9,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,6.7300072,40.55,21,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,788,105417.09,289263.91,201339.94,0,1067.2035 -14001,17228,31173,-9,31172,-9,1,1,34,0,0,0,2,2,-9,1,1,0,0,0,0,0,-920.12482,0,2,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,36.2,-9,-9,1.666666666666667,1,1,0,1,0,11,2,0,165,-96835.25,0,0,0,1069.2271 -14002,17229,31174,31175,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.3111305,6.5694594,11,1,-81.596237,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9266138,6.4043598,56.62,38.58,37.24,45.6,8.333333333333334,1,1,0,0,0,12,2,1,110,350688.47,199565.94,145024.48,37534.711,1648.9155 -14002,17229,31175,31174,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,21,-1,-88.67569,0,2,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,4.2965746,0,37.24,45.6,56.62,38.58,3.333333333333333,1,1,0,0,0,12,2,1,110,350688.47,199565.94,145024.48,37534.711,1648.9155 -14003,17230,31176,31177,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.3282099,7.1392922,45,-4,20.673727,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7877481,6.9589505,57.16,56.15,63.66,46.31,10,1,1,0,0,0,10,5,1,598,1632282.8,798974.5,282607.19,0,4041.9275 -14003,17230,31177,31176,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.9267159,8.4547596,45,4,-126.60149,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.6930695,63.66,46.31,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,598,1632282.8,798974.5,282607.19,0,4041.9275 -14004,17231,31178,-9,-9,-9,1,1,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-992.91833,0,2,2,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,.55216092,0,51,56,-9,-9,7,4,5,1,0,0,8,1,0,666,0,0,0,0,643.53668 -14005,17232,31179,31180,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.759737,8.4365129,0,14,1,-18.177795,0,2,3,2019,11,0,60,39,1,0,0,11.123765,11.123765,0,0,0,0,0,1,1,0,0,0,42.17,56.08,48.8,49.1,8.333333333333334,1,1,0,0,7,9,5,1,397.33334,417072.38,370240.41,209860.72,62467.477,3225.0027 -14005,17232,31180,31179,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,8.3609438,7.8609962,0,11,-1,14.017383,0,2,2,2019,4,0,24,24,1,0,0,20.641861,20.641861,0,0,0,0,2,1,1,0,0,0,48.8,49.1,42.17,56.08,10,1,1,0,0,9,9,5,1,397.33334,417072.38,370240.41,209860.72,62467.477,3225.0027 -14005,17232,31181,-9,31180,31179,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.54034,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,397.33334,417072.38,370240.41,209860.72,62467.477,3225.0027 -14005,17233,31182,-9,31180,31179,1,1,24,0,1,0,3,3,-9,0,4,7.6545253,7.7375746,0,0,0,-1062.085,-9,2,2,2019,10,0,18,0,1,1,1,18.14212,18.14212,0,0,0,0,0,1,1,0,1.5660722,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,480,-119956.95,0,0,0,1779.8405 -14006,17234,31183,31184,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5475473,8.6589556,0,18,-5,-42.726189,0,3,2,2019,7,0,77,39,1,0,0,7.2934947,7.2934947,0,0,0,0,0,1,1,0,0,0,50.11,55.32,57.16,56.15,8.333333333333334,1,1,0,1,9,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 -14006,17234,31184,31183,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,7.8765888,8.4873171,0,18,5,-61.285854,0,2,1,2019,6,0,27,29,1,0,0,14.851747,14.851747,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.11,55.32,8.333333333333334,1,1,0,0,9,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 -14006,17234,31185,-9,31184,31183,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.6053,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 -14006,17234,31186,-9,31184,31183,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.20313,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,482.5,163665.83,146866.81,179483.31,102665.19,2519.7339 -14007,17235,31187,31188,-9,-9,1,1,28,0,0,0,3,3,-9,0,4,8.1494303,7.9504414,0,1,2,-29.941477,-9,-9,-9,2019,10,0,37,0,1,1,0,12.15273,12.15273,0,0,0,0,0,0,0,0,0,0,48,59,46.48,53.76,7,1,1,0,0,10,13,5,1,671,560429.25,235323.98,167042.98,131672.75,3310.2495 -14007,17235,31188,31187,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.4689198,8.4022808,0,1,-2,174.91753,0,2,2,2019,5,0,42,70,1,0,0,11.521384,11.521384,0,0,0,0,0,0,0,0,0,0,46.48,53.76,48,59,8.333333333333334,1,1,0,0,11,13,5,1,671,560429.25,235323.98,167042.98,131672.75,3310.2495 -14008,17236,31189,31190,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.4862165,7.9360685,6,5,114.25656,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.5137239,8.2824774,56.1,49.93,51,46,10,1,1,0,0,1,11,3,1,666.5,1419910,923891,101981.24,0,2778.311 -14008,17236,31190,31189,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,6,-5,-22.406334,0,1,1,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4466753,0,51,46,56.1,49.93,7,1,1,0,0,0,11,3,1,666.5,1419910,923891,101981.24,0,2778.311 -14009,17237,31191,31192,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,6.9663591,7.3624926,0,14,2,-141.10741,0,2,2,2019,9,0,98,60,1,0,0,1.4747374,1.4747374,0,0,0,0,0,1,1,0,0,0,55.66,43.2,48.81,59.91,8.333333333333334,1,1,0,0,6,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 -14009,17237,31192,31191,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,0,0,0,14,-2,3.4340804,0,2,2,2019,13,2,0,47,3,2,0,0,0,0,0,0,0,0,1,1,0,8.6136036,0,48.81,59.91,55.66,43.2,6.666666666666667,1,1,0,0,7,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 -14009,17237,31193,-9,31192,31191,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.7172,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 -14009,17237,31194,-9,31192,31191,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.61511,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 -14009,17237,31195,-9,31192,31191,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.7501,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,385.39999,157499.05,0,344464.19,196019.47,3002.6304 -14010,17238,31196,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,2,0,8.5385857,8.3552971,0,0,-1066.9152,0,1,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.419014,8.0108185,64.57000000000001,23.22,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,228,774522.56,214645.19,415772.38,0,2311.9956 -14011,17239,31197,31198,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.3528013,8.578393,0,4,-1,14.880317,0,2,2,2019,11,0,52,40,1,0,0,7.8109789,7.8109789,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,9,4,5,1,564.5,507218.19,454029.19,192847.97,0,3334.209 -14011,17239,31198,31197,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.311615,8.20753,0,4,1,116.01445,0,-9,-9,2019,7,0,37,40,1,0,0,12.926632,12.926632,0,0,0,0,0,0,0,0,3.1797349,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,564.5,507218.19,454029.19,192847.97,0,3334.209 -14011,17240,31199,-9,31198,31197,1,0,20,0,0,0,2,2,-9,0,4,8.1546679,8.1000109,0,0,0,-1026.6299,0,2,2,2019,6,0,37,37,1,0,1,11.577809,11.577809,0,0,0,0,0,0,0,0,1.9616721,0,60.43,46.44,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,215,-114925.52,-69440.484,0,0,1585.2692 -14012,17241,31200,-9,31203,31201,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1050.332,1,1,1,2019,4,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,1517,-115858.8,0,0,0,0 -14012,17242,31201,31203,-9,-9,1,1,55,0,1,0,1,1,-9,0,5,8.4635067,8.3619604,0,3,2,7.1009007,0,-9,-9,2019,6,0,38,40,1,0,0,13.22553,13.22553,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,2,9,4,1,1540.3334,519103.03,372587.72,355218.09,73359.523,3111.7971 -14012,17242,31202,-9,31203,31201,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.5126,-9,1,1,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1540.3334,519103.03,372587.72,355218.09,73359.523,3111.7971 -14012,17242,31203,31201,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,7.5671449,7.8048034,6.4844899,3,-2,-90.136688,0,2,2,2019,12,0,23,23,1,0,0,8.3207645,8.3207645,0,0,0,0,0,1,1,0,6.9580479,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,9,9,4,1,1540.3334,519103.03,372587.72,355218.09,73359.523,3111.7971 -14013,17243,31204,31205,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.9544768,7.6643186,0,11,0,139.49684,0,2,2,2019,12,1,55,37,1,1,0,6.468452,6.468452,0,0,0,0,0,0,0,0,1.6308471,0,46.98,53.82,49.35,59.64,8.333333333333334,1,1,0,0,13,5,3,1,992.5,-1993.7969,52003.016,0,0,1335.2303 -14013,17243,31205,31204,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,5.3223424,5.3920403,0,11,0,-1.173182,0,2,2,2019,11,0,30,30,1,0,0,.84432274,.84432274,0,0,0,0,0,0,0,0,0,0,49.35,59.64,46.98,53.82,8.333333333333334,1,1,0,0,13,5,3,1,992.5,-1993.7969,52003.016,0,0,1335.2303 -14014,17244,31206,-9,31207,31209,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1063.2184,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 -14014,17244,31207,31209,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.2038479,8.5471449,0,18,-3,47.051785,0,3,3,2019,10,0,43,37,1,0,0,6.4355745,6.4355745,0,0,0,0,0,1,1,0,0,0,58.3,52.91,27.14,59.2,8.333333333333334,2,3,0,0,10,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 -14014,17244,31208,-9,31207,31209,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.19727,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 -14014,17244,31209,31207,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3665571,8.0567799,0,18,3,68.111702,0,3,3,2019,27,12,58,37,1,12,0,7.8588743,7.8588743,0,0,0,0,0,1,1,0,0,0,27.14,59.2,58.3,52.91,3.333333333333333,2,3,0,0,11,4,4,1,453.75,98288.125,33027.035,71999.953,67533.438,3080.9482 -14014,17245,31210,-9,31207,31209,1,1,19,0,2,0,2,2,-9,0,5,7.5061316,7.6138988,0,0,0,-996.40369,0,2,2,2019,12,0,53,42,1,0,1,4.4448252,4.4448252,0,0,0,0,0,1,1,0,5.3734808,0,40.13,62.93,-9,-9,5,2,3,0,0,3,4,3,1,600,148961.23,29656.434,0,0,1355.4999 -14015,17246,31211,31212,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.1900125,5.8560295,16,6,-217.33311,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,120,1,1,0,0,5.9912066,57.57,22.39,19.39,34.81,8.333333333333334,1,1,0,0,0,5,2,0,784,724439.81,138539.58,157670.88,0,3128.4028 -14015,17246,31212,31211,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,16,-6,24.917582,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,2.6874444,130.27141,0,0,1,1,0,0,0,19.39,34.81,57.57,22.39,5,1,1,0,0,0,5,2,0,784,724439.81,138539.58,157670.88,0,3128.4028 -14016,17247,31213,31214,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.9039922,7.9761348,1,8,-135.83717,-9,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.5821786,7.9673085,35.8,59.5,42.44,57.54,8.333333333333334,1,1,0,0,0,1,5,1,1373.5,1490398,1298988,206714.58,0,4211.5332 -14016,17247,31214,31213,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.565321,8.3557186,7.9231911,1,-8,127.69467,-9,-9,-9,2019,5,1,14,0,1,1,0,17.398737,17.398737,0,0,0,0,0,0,0,0,3.2858515,7.9111247,42.44,57.54,35.8,59.5,8.333333333333334,1,1,0,0,1,1,5,1,1373.5,1490398,1298988,206714.58,0,4211.5332 -14017,17248,31215,31216,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,48,1,-109.54626,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4233756,0,49.35,59.64,44.03,48.4,8.333333333333334,1,1,0,0,0,2,3,1,1741,808126.75,471854.06,360700.94,161754.31,2798.5676 -14017,17248,31216,31215,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.1729097,8.0908203,48,-1,-32.736889,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5701795,7.9737506,44.03,48.4,49.35,59.64,8.333333333333334,1,1,0,0,0,2,3,1,1741,808126.75,471854.06,360700.94,161754.31,2798.5676 -14018,17249,31217,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.3047895,5.483489,0,0,-1094.7179,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.1207358,5.4995127,52,45,-9,-9,8,1,1,0,0,0,10,2,0,297,-361888.09,-7919.7295,0,0,1635.3314 -14019,17250,31218,31219,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.0837383,7.1051092,47,-5,-40.087582,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.9128211,7.2394977,58.32,50.22,53,47,8.333333333333334,1,1,0,0,7,1,2,1,763.5,379330.06,391034.38,150041.27,0,1696.7334 -14019,17250,31219,31218,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,7,5,.5043053,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2156587,0,53,47,58.32,50.22,7,1,1,0,0,0,1,2,1,763.5,379330.06,391034.38,150041.27,0,1696.7334 -14020,17251,31220,31222,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.6150446,7.4974036,0,1,0,11.563106,-9,2,2,2019,6,0,12,0,1,0,0,21.17248,21.17248,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,6,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 -14020,17251,31221,-9,31220,31222,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4456,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 -14020,17251,31222,31220,-9,-9,1,1,27,1,2,0,2,2,-9,0,4,7.7274313,7.3903708,0,1,0,-223.35025,-9,3,3,2019,10,0,45,0,1,0,0,4.4984164,4.4984164,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.79,55.86,10,1,1,0,0,7,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 -14020,17251,31223,-9,31220,31222,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.89966,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,520.25,38664.684,-2910.896,97178.836,77490.016,2034.9226 -14021,17252,31224,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9951582,7.561708,0,0,-972.38812,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4223213,7.7031722,61.04,39.41,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,231,866248,240326.73,160825.11,0,1714.455 -14021,17253,31225,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.4062715,6.3796349,0,0,-946.65887,0,3,3,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7297349,62.56,45.64,-9,-9,9,1,1,0,0,5,12,2,1,550,-87019.758,-65123.148,0,0,440.44162 -14022,17254,31226,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.0432634,9.0333176,0,0,0,-1036.037,0,2,2,2019,11,3,48,48,1,3,0,24.894201,24.894201,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,466,1832777.5,1124573.3,291180.13,0,3298.1853 -14023,17255,31227,-9,31228,31229,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-852.55261,-9,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,10,1,1,0,0,0,4,5,1,1438.6666,2212253.8,1684102.1,511575.84,0,5732.127 -14023,17255,31228,31229,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,30,1,-42.395897,0,1,3,2019,7,0,0,41,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.26,29.17,54.94,53.18,8.333333333333334,1,1,0,0,8,4,5,1,1438.6666,2212253.8,1684102.1,511575.84,0,5732.127 -14023,17255,31229,31228,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.7295752,9.5940247,0,31,-1,-3.0133381,0,3,3,2019,10,0,58,62,1,0,0,34.666992,34.666992,0,0,0,0,0,0,0,0,0,0,54.94,53.18,63.26,29.17,8.333333333333334,1,1,0,0,9,4,5,1,1438.6666,2212253.8,1684102.1,511575.84,0,5732.127 -14024,17256,31230,-9,31234,31233,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1028.4008,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 -14024,17256,31231,-9,31234,31233,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.7344,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 -14024,17256,31232,-9,31234,31233,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1040.1752,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 -14024,17256,31233,31234,-9,-9,1,1,54,0,3,0,1,1,-9,0,4,9.1119442,9.0266876,0,32,2,140.39085,0,2,3,2019,9,1,48,47,1,1,0,29.247328,29.247328,0,0,0,0,0,0,0,0,0,0,54.2,57.49,35.61,59.41,8.333333333333334,1,1,0,0,10,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 -14024,17256,31234,31233,-9,-9,1,0,52,0,3,0,1,1,-9,0,3,7.6826787,7.5485578,0,32,-2,-41.740318,0,2,3,2019,15,3,24,24,1,3,0,10.664426,10.664426,0,0,0,0,0,0,0,0,4.2349052,0,35.61,59.41,54.2,57.49,6.666666666666667,1,1,0,0,7,9,4,1,500.79999,685319.63,82377.055,526359.5,188947.14,3763.9199 -14025,17257,31235,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-961.39923,0,3,3,2019,29,12,0,0,4,12,0,0,0,1,4.2483678,7.0696082,25.135736,0,1,1,0,0,0,34.12,19.99,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,424,18093.406,0,0,0,718.43378 -14026,17258,31236,-9,-9,-9,1,0,33,1,4,0,2,2,-9,0,2,0,0,0,0,0,-1073.0955,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.53,49.55,-9,-9,1.666666666666667,2,3,0,1,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 -14026,17258,31237,-9,31236,-9,1,1,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-839.96185,-9,2,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 -14026,17258,31238,-9,31236,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1082.4641,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 -14026,17258,31239,-9,31236,-9,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1086.1605,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,1116.75,114966.41,0,0,0,2006.9929 -14027,17259,31240,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.0961781,6.9415793,0,0,-966.06335,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,2.2516291,6.878684,57.32,45.08,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,192,571607.94,80482.945,522469.59,0,-27.831821 -14028,17260,31241,31242,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,6.8594384,6.9112325,58,4,-55.563381,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,130.90767,0,0,1,1,0,4.1695766,7.3690176,68.41,17.57,55.36,51.57,6.666666666666667,1,1,0,0,0,1,2,1,1027.5,518515.44,176064.56,266197.09,0,2526.6267 -14028,17260,31242,31241,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-4,-38.229755,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,4.9585814,0,55.36,51.57,68.41,17.57,8.333333333333334,1,1,0,0,0,1,2,1,1027.5,518515.44,176064.56,266197.09,0,2526.6267 -14029,17261,31243,31244,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.3655968,7.2561917,40,0,-69.216385,0,-9,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2638001,41.3,60.77,53.54,49.68,8.333333333333334,1,1,0,0,10,10,3,1,285,1460521.5,661273.5,382015.13,0,1550.2639 -14029,17261,31244,31243,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.5434041,7.5757079,40,0,-37.278526,0,2,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,2,1,1,0,1.3630649,7.6388855,53.54,49.68,41.3,60.77,1.666666666666667,1,1,0,0,10,10,3,1,285,1460521.5,661273.5,382015.13,0,1550.2639 -14029,17262,31245,-9,31244,31243,1,1,32,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1174.4501,0,2,1,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,1.61,60.8,-9,-9,0,1,1,1,1,0,10,1,1,356,-255366.09,-68848.945,0,0,0 -14030,17263,31246,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,8.0515776,7.7747941,4.3832798,0,0,-1037.2844,-9,-9,-9,2019,3,0,47,0,1,0,0,8.8279572,8.8279572,0,0,0,0,0,0,0,0,4.5318871,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,2,10,4,0,513,28414.514,-50198.547,0,0,1564.8368 -14031,17264,31247,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,9.1402359,8.9377861,0,0,0,-1086.0487,0,2,2,2019,12,1,57,62,1,1,0,23.111258,23.111258,0,0,0,0,0,1,1,0,4.4607716,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,434,420843.63,179298.63,0,0,3114.3125 -14032,17265,31248,31249,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,8.6429844,9.0506029,0,19,1,-89.728203,0,1,1,2019,11,0,53,48,1,0,0,21.025316,21.025316,0,0,0,0,0,0,0,0,0,0,54.1,59.11,62.39,56.71,8.333333333333334,1,1,0,0,10,2,5,1,853,100115.32,309261.41,395256.34,271272.81,6062.5806 -14032,17265,31249,31248,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,9.0183878,8.7665987,0,19,-1,100.45186,0,2,2,2019,6,0,63,68,1,0,0,16.926704,16.926704,0,0,0,0,0,0,0,0,0,0,62.39,56.71,54.1,59.11,10,1,1,0,0,10,2,5,1,853,100115.32,309261.41,395256.34,271272.81,6062.5806 -14033,17266,31250,31251,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.6461802,8.0856915,10,0,-36.680969,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,2.0356483,13.95852,22.949923,0,1,1,0,0,8.3601637,58.55,28.62,50.03,52.62,8.333333333333334,1,1,0,0,0,12,4,1,975.5,1965705.4,968515.75,491176.22,0,3994.3708 -14033,17266,31251,31250,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.4283857,7.393405,10,0,31.783741,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8852658,7.4503307,50.03,52.62,58.55,28.62,8.333333333333334,1,1,0,0,0,12,4,1,975.5,1965705.4,968515.75,491176.22,0,3994.3708 -14034,17267,31252,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,1.6657255,1.8416542,0,0,-1034.949,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,3.5104392,0,22.654306,0,1,1,0,0,1.992003,54.29,14.81,-9,-9,5,3,4,0,0,0,8,2,0,478,609436.25,0,418700.47,0,1041.8041 -14035,17268,31253,31254,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,9,-1,126.38798,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,12.964729,0,0,1,1,0,0,0,46.96,24.7,46.22,26.67,5,1,1,0,0,0,12,2,1,1568,508428.75,188002.77,256363.81,0,1517.67 -14035,17268,31254,31253,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.0893159,6.4230862,9,1,2.6339457,0,3,3,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,.36237818,6.3508925,46.22,26.67,46.96,24.7,3.333333333333333,1,1,0,0,0,12,2,1,1568,508428.75,188002.77,256363.81,0,1517.67 -14036,17269,31255,31257,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.1403599,8.104598,0,11,-8,8.8191547,0,2,3,2019,11,1,30,22,1,1,0,14.792971,14.792971,0,0,0,0,0,0,0,0,0,0,46.44,59.62,58.62,44.69,8.333333333333334,1,1,0,0,12,2,5,1,684,1011210.9,484627.19,482523.56,0,14147.315 -14036,17269,31256,-9,31255,31257,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.66071,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,684,1011210.9,484627.19,482523.56,0,14147.315 -14036,17269,31257,31255,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,9.6035099,9.4989109,0,11,8,78.674606,0,2,2,2019,10,0,50,55,1,0,0,34.973469,34.973469,0,0,0,0,0,0,0,0,1.2403017,0,58.62,44.69,46.44,59.62,8.333333333333334,1,1,0,0,12,2,5,1,684,1011210.9,484627.19,482523.56,0,14147.315 -14037,17270,31258,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,0,0,-963.21942,0,2,2,2019,17,5,0,60,4,5,0,0,0,0,0,0,0,0,1,1,0,6.4137454,0,47.36,44.23,-9,-9,5,1,1,0,0,10,9,1,1,408,-217911.22,24209.945,0,0,610.87512 -14038,17271,31259,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.2245493,7.2948337,0,0,-1037.2819,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4733438,7.2073359,45.57,53.5,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,1661,950054.44,102510.36,306691.72,0,1223.0701 -14039,17272,31260,31261,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,5.9729443,6.2607923,0,2,-2,-.094907805,-9,-9,-9,2019,13,3,15,0,1,3,0,3.9468453,3.9468453,0,0,0,0,2,0,0,0,0,0,46.8,55.75,54.96,53.17,8.333333333333334,1,1,0,0,1,10,3,0,1187.5,-108597.69,-36403.512,0,0,1640.8396 -14039,17272,31261,31260,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.9567127,8.3473101,0,2,2,140.65889,0,2,2,2019,12,2,50,50,1,2,0,8.0459538,8.0459538,0,0,0,0,0,0,0,0,0,0,54.96,53.17,46.8,55.75,8.333333333333334,1,1,0,0,4,10,3,0,1187.5,-108597.69,-36403.512,0,0,1640.8396 -14040,17273,31262,31263,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.6411242,7.8177018,0,1,-12,-44.871056,-9,-9,-9,2019,18,4,50,0,1,4,0,5.9632697,5.9632697,0,0,0,0,0,0,0,0,0,0,36.33,53.5,48.26,38.5,0,1,1,0,0,0,9,5,1,692.5,-280176.34,-61899.367,0,0,3002.3926 -14040,17273,31263,31262,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3230419,8.6050453,0,1,12,71.171501,0,2,2,2019,14,2,97,113,1,2,0,6.6750436,6.6750436,0,0,0,0,29,0,0,0,0,0,48.26,38.5,36.33,53.5,8.333333333333334,1,1,0,0,12,9,5,1,692.5,-280176.34,-61899.367,0,0,3002.3926 -14040,17274,31264,-9,-9,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1079.8407,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,131,209162.64,0,0,0,0 -14041,17275,31265,-9,31266,31269,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.18646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 -14041,17275,31266,31269,-9,-9,1,0,36,0,3,0,2,2,-9,1,4,7.4729218,7.5875492,0,11,0,49.548851,0,2,-9,2019,12,0,25,27,1,0,0,6.5534649,6.5534649,0,0,0,0,0,1,1,0,0,0,39.71,57.17,48.21,50.73,3.333333333333333,1,1,0,0,12,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 -14041,17275,31267,-9,31266,31269,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.5564,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 -14041,17275,31268,-9,31266,31269,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1038.9789,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 -14041,17275,31269,31266,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.8149776,8.0128956,0,11,0,48.535084,0,2,2,2019,12,0,45,45,1,0,0,10.146399,10.146399,0,0,0,0,0,1,1,0,0,0,48.21,50.73,39.71,57.17,5,1,1,0,0,13,5,3,0,1106.4,70534.266,54456.797,156319.58,92445.93,3615.2146 -14042,17276,31270,31271,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9682059,7.7677627,0,34,5,-49.584743,0,3,3,2019,13,2,28,29,1,2,0,12.246065,12.246065,0,0,0,0,7,0,0,0,0,0,46.67,58.37,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,212,444846.16,52307.918,296946.63,15227.729,2672.627 -14042,17276,31271,31270,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.609149,8.7128267,0,32,-5,100.1022,0,2,2,2019,5,0,16,30,1,0,0,33.095615,33.095615,0,0,0,0,2,0,0,0,6.2553797,0,57.16,56.15,46.67,58.37,8.333333333333334,1,1,0,0,10,8,5,1,212,444846.16,52307.918,296946.63,15227.729,2672.627 -14042,17277,31272,-9,31270,31271,1,0,27,0,0,0,1,1,-9,0,3,8.1165247,7.9823146,0,0,0,-938.78748,0,2,2,2019,7,0,40,40,1,0,1,10.850266,10.850266,0,0,0,0,0,0,0,0,3.1886654,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,8,4,1,1219,-212393,0,0,0,1397.9644 -14043,17278,31273,31274,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.2939162,7.1002865,43,-6,-76.402092,0,3,3,2019,7,0,0,46,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1311069,51.83,57.2,58.32,50.22,8.333333333333334,1,1,0,0,11,2,4,1,961,1367284.5,556110.13,273343.81,0,3884.4819 -14043,17278,31274,31273,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.1337261,8.3424082,43,6,36.16935,0,2,-9,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1946597,7.9274168,58.32,50.22,51.83,57.2,8.333333333333334,1,1,0,0,0,2,4,1,961,1367284.5,556110.13,273343.81,0,3884.4819 -14044,17279,31275,-9,31277,31276,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.6724,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,4,1,1048.3334,531802.5,322266.28,129044.44,0,2762.6082 -14044,17279,31276,31277,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.8529768,8.4567699,0,9,5,8.1562529,-9,-9,-9,2019,8,0,42,0,1,0,0,17.7899,17.7899,0,0,0,0,0,1,1,0,0,0,52.54,54.24,37.02,37.37,3.333333333333333,1,1,0,0,12,12,4,1,1048.3334,531802.5,322266.28,129044.44,0,2762.6082 -14044,17279,31277,31276,-9,-9,1,0,32,1,1,0,2,2,-9,0,2,7.6325412,7.462482,0,9,-5,-63.131378,0,2,2,2019,22,10,23,23,1,10,0,11.479983,11.479983,0,0,0,0,0,1,1,0,0,0,37.02,37.37,52.54,54.24,5,1,1,0,0,10,12,4,1,1048.3334,531802.5,322266.28,129044.44,0,2762.6082 -14045,17280,31278,-9,31279,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.8687,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,1668,136498.95,0,0,0,1812.0334 -14045,17280,31279,-9,-9,-9,1,0,19,1,1,0,3,3,-9,0,2,0,0,0,0,0,-1004.9252,-9,3,-9,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.8,42.23,-9,-9,8.333333333333334,1,1,1,0,0,12,1,0,1668,136498.95,0,0,0,1812.0334 -14046,17281,31280,-9,-9,-9,1,1,21,0,0,0,1,1,-9,0,4,6.0390234,6.0159688,0,0,0,-1116.1724,-9,-9,-9,2019,4,0,25,0,1,0,0,1.4122162,1.4122162,0,0,0,0,0,0,0,0,0,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,1,11,2,0,350,290778.56,0,0,0,376.24393 -14046,17282,31281,-9,-9,-9,1,1,21,0,0,0,1,1,-9,0,4,7.4049363,7.4058046,0,0,0,-1121.585,-9,-9,-9,2019,21,6,26,0,1,6,0,6.7732596,6.7732596,0,0,0,0,0,0,0,0,.6942997,0,30.81,62.99,-9,-9,1.666666666666667,1,1,0,0,1,11,3,0,502,-380970.56,0,0,0,1152.2133 -14046,17283,31282,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,5.6771951,5.6626983,0,0,0,-927.89331,-9,-9,-9,2019,5,0,22,0,1,0,0,1.1037712,1.1037712,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,11,2,0,486,-13063.399,0,0,0,-126.23486 -14046,17284,31283,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,4,6.9588776,7.2692614,0,0,0,-1063.8981,-9,2,1,2019,10,1,16,0,1,1,0,9.3103647,9.3103647,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,6.666666666666667,1,1,0,0,1,11,2,0,292,-107966.41,0,0,0,607.72559 -14047,17285,31284,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.116787,9.2194672,0,0,0,-1036.8528,0,3,3,2019,10,0,40,40,1,0,0,23.788818,23.788818,0,0,0,0,0,0,0,0,2.783088,0,56.47,59.4,-9,-9,3.333333333333333,1,1,0,0,9,4,5,1,1594,1282139.5,728769.81,146674.27,117882.34,3094.4329 -14047,17286,31285,-9,-9,31284,1,0,24,0,0,0,2,2,-9,0,3,7.8565021,8.1102047,0,0,0,-990.38733,0,2,2,2019,9,0,41,47,1,0,1,8.906764,8.906764,0,0,0,0,0,0,0,0,2.0094693,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,397,-84594.688,-30999.029,0,0,1714.8917 -14048,17287,31286,-9,31287,31288,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-849.0567,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,230.33333,1485779.8,1052057.5,288685.31,5381.6006,2787.677 -14048,17287,31287,31288,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.5692468,7.6782331,0,10,1,94.721146,0,2,-9,2019,21,8,20,16,1,8,0,9.7263966,9.7263966,0,0,0,0,0,1,1,0,0,0,39.39,37.66,43.36,54.78,3.333333333333333,1,1,0,0,11,13,4,1,230.33333,1485779.8,1052057.5,288685.31,5381.6006,2787.677 -14048,17287,31288,31287,-9,-9,1,1,44,0,1,0,3,3,-9,0,2,8.612093,8.4910526,0,10,-1,-8.6638851,0,2,2,2019,14,2,48,64,1,2,0,14.972017,14.972017,0,0,0,0,0,1,1,0,0,0,43.36,54.78,39.39,37.66,5,1,1,0,0,11,13,4,1,230.33333,1485779.8,1052057.5,288685.31,5381.6006,2787.677 -14049,17288,31289,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,8.4307613,8.2751789,0,0,-924.85657,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4011164,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,302,247957.25,50812.07,112364.59,0,2219.3364 -14049,17289,31290,-9,31289,-9,1,1,27,0,0,0,2,2,-9,0,2,8.4272289,8.0857944,0,0,0,-969.09363,0,1,-9,2019,13,2,45,0,1,2,0,9.1952848,9.1952848,0,0,0,0,0,0,0,0,1.8928076,0,40.56,50.45,-9,-9,3.333333333333333,1,1,0,0,1,2,4,1,165,-365594.59,0,0,0,2206.1614 -14050,17290,31291,31292,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.8917007,5.3951817,1,1,-6.1544929,-9,-9,-9,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,6.916019,5.3457098,40.9,50.55,39.2,53.62,6.666666666666667,1,1,0,0,6,5,2,1,483.5,597976.56,178608.92,160562,0,1343.2034 -14050,17290,31292,31291,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,43,-1,20.777262,-9,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.2,53.62,40.9,50.55,8.333333333333334,1,1,0,0,6,5,2,1,483.5,597976.56,178608.92,160562,0,1343.2034 -14051,17291,31293,31294,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,10,0,64.933846,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1920915,0,58.26,38.35,41.68,39.2,8.333333333333334,1,1,0,0,0,8,3,1,884,1596024.6,641436.75,663829,0,2666.0063 -14051,17291,31294,31293,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,8.4620972,8.0348158,10,0,-95.287872,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,4.7460556,8.1899757,41.68,39.2,58.26,38.35,3.333333333333333,1,1,0,0,0,8,3,1,884,1596024.6,641436.75,663829,0,2666.0063 -14052,17292,31295,31296,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,42,-1,8.2736864,-9,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.67,35.36,51.7,35.88,8.333333333333334,1,1,0,0,0,7,2,1,575,353530.34,19732.404,321819.53,0,1713.0227 -14052,17292,31296,31295,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.6074533,6.4662271,1,1,-94.604813,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,29.815948,0,0,1,1,0,0,6.5641537,51.7,35.88,49.67,35.36,10,1,1,0,0,0,7,2,1,575,353530.34,19732.404,321819.53,0,1713.0227 -14053,17293,31297,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,0,0,0,0,0,-962.93799,0,3,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,26.31,52.74,-9,-9,5,1,1,0,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 -14053,17293,31298,-9,31297,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.09503,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 -14053,17293,31299,-9,31297,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.9064,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 -14053,17293,31300,-9,31297,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1011.0176,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 -14053,17293,31301,-9,31297,-9,1,1,17,0,3,0,2,2,-9,0,3,0,0,0,0,0,-931.08246,1,2,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,496.20001,-125822.77,0,0,0,1834.5883 -14054,17294,31302,-9,-9,-9,1,1,52,0,0,0,2,2,-9,1,3,7.706388,7.2714067,0,0,0,-866.12299,0,2,-9,2019,8,1,16,0,1,1,0,12.258132,12.258132,0,0,0,0,7,1,1,0,0,0,52.31,31.21,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,1175,-122394.09,0,0,0,836.32623 -14055,17295,31303,-9,31304,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.8458,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,556.5,-9803.6621,-51254.59,0,0,1205.4244 -14055,17295,31304,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,5.4893064,5.08215,0,0,0,-1010.6789,0,-9,-9,2019,8,1,4,0,1,1,0,5.3600011,5.3600011,0,0,0,0,0,1,0,1,0,0,52.88,54,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,556.5,-9803.6621,-51254.59,0,0,1205.4244 -14056,17296,31305,-9,31306,31308,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.68207,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 -14056,17296,31306,31308,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,8.4203186,8.3399935,0,7,-2,-25.587439,0,2,2,2019,11,0,12,16,1,0,0,37.611534,37.611534,0,0,0,0,0,1,1,0,0,0,41.77,53.55,25.57,47.8,8.333333333333334,1,1,0,0,11,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 -14056,17296,31307,-9,31306,31308,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.89752,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 -14056,17296,31308,31306,-9,-9,1,1,32,0,2,0,2,2,-9,0,2,8.4318504,8.5648155,0,7,2,-60.940514,0,-9,-9,2019,24,8,38,38,1,8,0,17.025963,17.025963,0,0,0,0,0,1,1,0,0,0,25.57,47.8,41.77,53.55,6.666666666666667,1,1,0,0,11,12,5,1,952.75,143352.98,75039.516,140302.69,108124.7,4217.2397 -14057,17297,31309,-9,31311,31310,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.81415,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,604.66669,185487.56,-18251.309,232765.22,167369.34,2432.502 -14057,17297,31310,31311,-9,-9,1,1,39,0,1,0,3,3,-9,0,5,6.7145085,6.4544535,0,2,9,6.2097836,0,2,2,2019,11,1,10,10,1,1,0,10.710379,10.710379,0,0,0,0,0,1,1,0,0,0,48.42,60.53,58.45,47.52,3.333333333333333,1,1,0,0,9,10,3,0,604.66669,185487.56,-18251.309,232765.22,167369.34,2432.502 -14057,17297,31311,31310,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,7.9105992,7.8621516,0,2,0,-27.419701,0,-9,-9,2019,10,0,60,60,1,0,0,6.0019989,6.0019989,0,0,0,0,0,1,1,0,1.0699557,0,58.45,47.52,48.42,60.53,5,1,1,0,0,5,10,3,0,604.66669,185487.56,-18251.309,232765.22,167369.34,2432.502 -14058,17298,31312,31313,-9,-9,1,0,84,0,0,0,1,1,-9,0,4,0,8.422224,8.2637663,24,2,-50.262768,0,2,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,120,1,1,0,6.0596008,8.0216093,45.56,45.13,49.61,44.75,6.666666666666667,1,1,0,0,0,4,4,1,843,1298150.8,698480.63,284592.59,0,4570.2007 -14058,17298,31313,31312,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.3724947,7.9574633,8,-2,-128.80626,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0431471,8.0219164,49.61,44.75,45.56,45.13,6.666666666666667,1,1,0,0,0,4,4,1,843,1298150.8,698480.63,284592.59,0,4570.2007 -14059,17299,31314,31315,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.6888914,8.8914623,0,34,2,115.53753,0,2,1,2019,6,0,45,48,1,0,0,18.341234,18.341234,0,0,0,0,7,0,0,0,2.9787068,0,55.6,42.6,50.06,48.29,8.333333333333334,2,3,0,0,9,8,5,1,788,168423.86,44470.336,0,0,3177.7852 -14059,17299,31315,31314,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5303984,8.5062532,0,7,-2,18.899694,0,1,1,2019,10,0,7,7,1,0,0,92.576088,92.576088,0,0,0,0,0,0,0,0,0,0,50.06,48.29,55.6,42.6,8.333333333333334,2,3,0,0,9,8,5,1,788,168423.86,44470.336,0,0,3177.7852 -14059,17300,31316,-9,31315,31314,1,1,25,0,0,1,2,0,0,0,5,0,0,0,0,0,-940.7218,-9,1,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,47.1,59.71,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,1620,63375.371,0,0,0,0 -14060,17301,31317,31318,-9,-9,1,0,76,0,0,0,2,2,-9,0,5,0,5.276401,5.3917317,10,1,-85.152695,0,2,3,2019,8,1,0,0,4,1,0,0,0,1,2.4287148,0,22.517719,120,1,1,0,0,5.1573019,56.96,51,42.57,28.27,8.333333333333334,1,1,0,0,0,11,2,1,710.5,220505.63,118501.31,107865.38,0,2197.5369 -14060,17301,31318,31317,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,0,0,10,-1,57.516956,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,118.44151,0,0,1,1,0,0,0,42.57,28.27,56.96,51,8.333333333333334,1,1,0,0,0,11,2,1,710.5,220505.63,118501.31,107865.38,0,2197.5369 -14061,17302,31319,31320,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.977879,7.9156108,0,42,-1,87.695869,0,-9,-9,2019,10,1,40,40,1,1,0,8.4294014,8.4294014,0,0,0,0,0,0,0,0,4.3207898,0,57.16,56.15,57.33,53.46,10,1,1,0,0,10,2,4,1,699,1278166,1089345,198027.75,0,1914.6425 -14061,17302,31320,31319,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4854894,7.6979647,0,41,1,131.64394,0,-9,-9,2019,6,0,18,18,1,0,0,10.866568,10.866568,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,11,2,4,1,699,1278166,1089345,198027.75,0,1914.6425 -14062,17303,31321,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-949.42249,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,15.510507,38.041073,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,8,1,1,2708,-26068.646,0,0,0,433.84729 -14063,17304,31322,31325,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.6036911,8.7156563,0,4,1,-122.60834,0,-9,-9,2019,7,0,35,35,1,0,0,14.31935,14.31935,0,0,0,0,0,1,1,0,0,0,60.02,56.42,53.81,53.56,8.333333333333334,1,1,0,0,10,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 -14063,17304,31323,-9,31325,31322,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.2996,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 -14063,17304,31324,-9,31325,31322,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.2948,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 -14063,17304,31325,31322,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.5649424,8.5382805,0,12,-1,47.955254,0,1,2,2019,7,0,28,28,1,0,0,16.997427,16.997427,0,0,0,0,0,1,1,0,0,0,53.81,53.56,60.02,56.42,8.333333333333334,1,1,0,0,8,12,4,1,674,531241,-31029.996,471515.94,15676.961,3772.4561 -14064,17305,31326,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1052.7017,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,477,0,0,0,0,514.85602 -14064,17306,31327,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1148.2365,0,3,3,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,35.35,38.97,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,429,0,0,0,0,817.19684 -14065,17307,31328,-9,31329,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.7341,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,564,513678.25,-18761.547,277311.84,10393.612,1396.9211 -14065,17307,31329,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.0016527,7.7018561,0,0,0,-1037.6713,0,2,2,2019,1,0,30,34,1,0,0,10.431835,10.431835,0,0,0,0,0,1,1,0,0,0,67.97,41.6,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,564,513678.25,-18761.547,277311.84,10393.612,1396.9211 -14066,17308,31330,31331,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.6259723,7.6383638,32,6,54.271732,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,.53907144,0,1,1,0,1.5238301,7.7091336,56.1,49.93,44.35,38.91,8.333333333333334,1,1,0,0,4,2,4,1,376,1084537.9,415910.09,398229.81,0,2474.9644 -14066,17308,31331,31330,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.6585426,7.9022884,30,-6,40.188751,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.012332,7.5800929,44.35,38.91,56.1,49.93,6.666666666666667,1,1,0,0,6,2,4,1,376,1084537.9,415910.09,398229.81,0,2474.9644 -14067,17309,31332,31333,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.6779041,9.0038538,0,9,-1,31.773134,0,3,3,2019,10,0,65,55,1,0,0,12.128584,12.128584,0,0,0,0,14.5,1,1,0,0,0,45.04,52.16,29.15,38.15,6.666666666666667,1,1,0,0,9,5,4,0,800.5,729393.38,195696,232199.94,0,2274.5269 -14067,17309,31333,31332,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,9,1,-36.680706,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,29.15,38.15,45.04,52.16,3.333333333333333,1,1,1,0,2,5,4,0,800.5,729393.38,195696,232199.94,0,2274.5269 -14067,17310,31334,-9,31333,31332,1,1,36,0,0,0,2,2,-9,0,2,8.2111311,8.0609589,0,0,0,-931.97223,0,3,3,2019,10,0,40,45,1,0,1,11.1271,11.1271,0,0,0,0,5.48,1,1,0,0,0,46.75,31.6,-9,-9,3.333333333333333,1,1,0,1,8,5,4,0,886,-123172.75,-96490.227,0,0,1329.6251 -14067,17311,31335,-9,31333,31332,1,1,27,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1160.0918,0,3,3,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,42.35,36.31,-9,-9,3.333333333333333,1,1,1,1,1,5,1,0,3790,-88498.906,0,0,0,600.10931 -14067,17312,31336,-9,31333,31332,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.2548,0,3,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,41.46,53.68,-9,-9,3.333333333333333,1,1,1,1,0,5,2,0,384,-383587.56,0,0,0,195.71451 -14068,17313,31337,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.8504272,7.9645643,4.8148637,0,0,-938.74371,0,2,2,2019,6,0,23,23,1,0,0,12.093348,12.093348,0,0,0,0,0,1,1,0,4.6133261,5.6926804,60.29,52.11,-9,-9,10,1,1,0,0,10,13,3,1,1247,-82850.008,34654.797,0,0,1206.0566 -14069,17314,31338,31339,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,8.3486376,8.2925844,34,3,-10.153142,0,2,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,5.4423127,7.8085432,33.13,53.82,49.86,55.31,6.666666666666667,1,1,0,0,8,10,3,1,555.5,22486.797,18418.154,184663.16,212062,2318.8081 -14069,17314,31339,31338,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.3198342,6.346209,0,34,-3,152.98293,0,2,2,2019,9,0,16,0,1,0,0,3.4438446,3.4438446,0,0,0,1.0690901,0,0,0,0,.30509767,0,49.86,55.31,33.13,53.82,8.333333333333334,1,1,0,0,9,10,3,1,555.5,22486.797,18418.154,184663.16,212062,2318.8081 -14070,17315,31340,31341,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.1256924,8.146822,0,6,1,58.444954,0,3,3,2019,10,0,36,0,1,0,0,8.2604046,8.2604046,0,0,0,0,0,1,1,0,0,0,58.72,51.29,48.28,60.18,8.333333333333334,1,1,0,0,5,13,5,1,585,589862.63,296696.5,82255.273,3768.8179,5906.4053 -14070,17315,31341,31340,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,9.4421892,9.3065624,0,6,-1,7.2434902,0,3,3,2019,13,3,32,29,1,3,0,35.278633,35.278633,0,0,0,0,7,1,1,0,0,0,48.28,60.18,58.72,51.29,8.333333333333334,1,1,0,0,3,13,5,1,585,589862.63,296696.5,82255.273,3768.8179,5906.4053 -14070,17316,31342,-9,31341,31340,1,1,30,0,0,0,2,2,-9,0,4,7.2206697,7.5674868,0,0,0,-1039.0535,0,3,3,2019,10,0,40,50,1,1,1,4.0646658,4.0646658,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,7,13,3,1,491.33334,28442.438,60333.184,101537.3,69555.953,724.8335 -14070,17316,31343,-9,-9,31342,1,0,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-982.95691,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,0,13,3,1,491.33334,28442.438,60333.184,101537.3,69555.953,724.8335 -14070,17316,31344,-9,-9,31342,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-943.54749,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,491.33334,28442.438,60333.184,101537.3,69555.953,724.8335 -14070,17317,31345,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6147909,7.5059986,0,0,0,-1064.9951,0,-9,-9,2019,11,0,40,40,1,2,0,6.0989246,6.0989246,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,5,13,3,1,142,-242422.3,65636.188,0,0,715.86774 -14071,17318,31346,31347,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,9.1123161,9.1031466,0,6,-7,-20.000132,0,-9,-9,2019,11,1,37,37,1,1,0,31.503,31.503,0,0,0,0,0,0,0,0,0,0,45.56,60.26,47.33,58,8.333333333333334,1,1,0,0,7,8,5,1,888.5,759635,143035.28,865768.13,588987.38,5347.6406 -14071,17318,31347,31346,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.6880236,8.8994265,0,6,7,62.353134,0,2,3,2019,12,2,37,38,1,2,0,16.250982,16.250982,0,0,0,0,0,0,0,0,2.507653,0,47.33,58,45.56,60.26,8.333333333333334,1,1,0,0,7,8,5,1,888.5,759635,143035.28,865768.13,588987.38,5347.6406 -14072,17319,31348,31349,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.0100865,5.3097668,46,-6,-90.60466,0,3,2,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,5.0984282,45.9,47.62,46.61,56.93,3.333333333333333,1,1,0,0,1,7,3,1,561,2745724,1788088.6,898880.13,0,3007.1133 -14072,17319,31349,31348,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1445723,7.9916372,46,6,-113.48676,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,8.195056,46.61,56.93,45.9,47.62,8.333333333333334,1,1,0,0,8,7,3,1,561,2745724,1788088.6,898880.13,0,3007.1133 -14072,17320,31350,-9,31348,31349,1,1,36,0,0,0,1,1,-9,0,3,8.6796045,9.2447748,8.0748549,0,0,-993.51294,-9,2,1,2019,11,1,60,0,1,1,0,12.279105,12.279105,0,0,0,0,0,1,1,0,0,8.101922,48.11,53.44,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,318,263123.94,84193.656,202049.78,163182.28,5222.814 -14073,17321,31351,31352,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,7.8006706,7.7404895,15,0,-53.930527,0,2,2,2019,8,0,0,40,4,0,0,0,0,0,0,0,0,7,1,1,0,5.9240265,7.9319391,61.06,18.26,60.02,56.42,8.333333333333334,1,1,0,0,8,2,5,1,804,1994014.9,1526433,407733.75,0,5151.6602 -14073,17321,31352,31351,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,8.2349739,8.3429604,7.7156649,13,9,-54.070789,0,3,2,2019,6,0,40,35,1,0,0,8.6171074,8.6171074,0,0,0,0,27,1,1,0,7.5366254,7.5528994,60.02,56.42,61.06,18.26,8.333333333333334,1,1,0,0,6,2,5,1,804,1994014.9,1526433,407733.75,0,5151.6602 -14074,17322,31353,-9,-9,-9,1,1,26,0,0,0,2,2,0,0,5,0,0,0,0,0,-997.59686,-9,-9,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,12,1,1,36,-332395.38,0,0,0,-982.45825 -14075,17323,31354,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.964344,7.06568,0,0,-962.39172,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1030607,6.7819109,56.78,46.68,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,337,738236.69,32103.02,182643.06,0,1104.9877 -14076,17324,31355,31356,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.7819061,7.0047407,51,9,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3770537,51.32,37.6,57.06,57.76,8.333333333333334,1,1,0,0,0,6,2,1,651,751314.88,287085.81,206911.7,0,1777.3096 -14076,17324,31356,31355,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.7205195,6.7077889,26,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4226179,7.1754146,57.06,57.76,51.32,37.6,8.333333333333334,1,1,0,0,0,6,2,1,651,751314.88,287085.81,206911.7,0,1777.3096 -14077,17325,31357,-9,31362,31360,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1142.8682,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 -14077,17325,31358,-9,31362,31360,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.183,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 -14077,17325,31359,-9,31362,31360,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-973.80774,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,.48025656,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 -14077,17325,31360,31362,-9,-9,1,1,35,0,4,0,1,1,-9,0,3,8.1722832,8.1879721,0,10,-6,112.68583,0,1,2,2019,10,0,38,37,1,0,0,9.2869396,9.2869396,0,0,0,0,0,1,1,0,0,0,46.67,55.57,49.44,54.26,5,1,1,0,1,9,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 -14077,17325,31361,-9,31362,31360,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1132.4563,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 -14077,17325,31362,31360,-9,-9,1,0,41,0,4,0,2,2,-9,0,3,8.3171396,8.3735991,0,10,6,-66.056053,0,2,2,2019,11,0,37,39,1,0,0,12.466554,12.466554,0,0,0,0,0,1,1,0,3.2688324,0,49.44,54.26,46.67,55.57,5,1,1,0,0,7,6,3,1,1605.1666,305098.91,95220.156,218799.84,166207.63,2700.9175 -14078,17326,31363,31364,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,8,-2,96.540436,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,54.1,59.11,7,1,1,0,0,0,10,3,1,775.5,1790092.5,1254782.6,422235.47,0,1094.5198 -14078,17326,31364,31363,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,0,7.9157829,7.8681145,36,2,29.163984,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3333817,54.1,59.11,48,48,10,1,1,0,0,0,10,3,1,775.5,1790092.5,1254782.6,422235.47,0,1094.5198 -14079,17327,31365,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.5807018,8.7766094,0,0,0,-956.52856,0,2,2,2019,14,3,50,45,1,3,0,14.269718,14.269718,0,0,0,0,0,0,0,0,0,0,46.46,47.33,-9,-9,6.666666666666667,1,1,0,0,8,9,5,0,519,186677.48,165638.17,0,0,3114.5327 -14080,17328,31366,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.9717965,8.2129011,4.1813207,0,0,-966.26904,0,3,2,2019,18,5,36,30,1,5,0,9.3777285,9.3777285,0,0,0,0,0,0,0,0,0,4.6638899,35.41,52.74,-9,-9,5,2,3,0,0,12,9,4,1,989,-254342.16,145305.39,0,0,1601.3987 -14080,17329,31367,-9,31366,-9,1,1,28,0,0,0,1,1,-9,0,4,7.9973874,7.8924704,0,0,0,-975.24457,0,2,2,2019,10,1,45,40,1,1,1,7.3136015,7.3136015,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,2,3,0,0,12,9,4,1,268,91042.203,-48039.113,0,0,1437.0001 -14081,17330,31368,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.1881399,8.0446301,0,0,0,-974.41998,0,2,2,2019,9,0,35,35,1,0,0,12.221949,12.221949,0,0,0,0,14.5,0,0,0,1.3393234,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,2520,473024.66,269437.5,224844.86,0,964.45807 -14082,17331,31369,31370,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,8,-1,0,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,0,44.43,56.74,54.2,57.49,8.333333333333334,1,1,0,0,8,11,2,1,389.5,91421.508,-33596.887,175302.38,55969.297,310.56659 -14082,17331,31370,31369,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,0,0,8,1,0,0,1,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.3274889,0,54.2,57.49,44.43,56.74,8.333333333333334,1,1,0,0,8,11,2,1,389.5,91421.508,-33596.887,175302.38,55969.297,310.56659 -14083,17332,31371,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.9589133,4.7429619,0,0,-936.71893,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1444354,4.888001,44.88,38.64,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1970,-2985.3284,-110108.65,0,0,620.41272 -14084,17333,31372,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.8796206,7.8351345,0,0,-1066.4277,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8508067,7.8645587,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,100,382407.75,213065.23,406269.19,0,2268.9668 -14085,17334,31373,31374,-9,-9,1,0,46,0,1,0,1,1,-9,1,3,8.4262228,8.1717844,0,18,-5,60.040031,0,3,3,2019,4,0,60,34,1,0,0,7.3860021,7.3860021,0,0,0,0,0,1,1,0,.7699759,0,51.94,55.88,28.73,50.3,8.333333333333334,1,1,0,0,9,10,5,1,1149.3334,1203413.5,441393.94,642372.88,67698.75,6032.7686 -14085,17334,31374,31373,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.0916548,9.0571928,0,19,5,60.415314,-9,1,1,2019,35,12,39,0,1,12,0,32.732258,32.732258,0,0,0,0,0,1,1,0,0,0,28.73,50.3,51.94,55.88,3.333333333333333,1,1,0,0,11,10,5,1,1149.3334,1203413.5,441393.94,642372.88,67698.75,6032.7686 -14085,17334,31375,-9,31373,31374,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-996.09692,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,5,1,1149.3334,1203413.5,441393.94,642372.88,67698.75,6032.7686 -14085,17335,31376,-9,31373,31374,1,1,19,0,1,0,2,2,-9,0,4,6.3960271,6.8926983,0,0,0,-1006.9398,0,1,1,2019,11,3,12,0,1,3,1,7.042655,7.042655,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,363,-93722.172,-47578.52,0,0,359.44354 -14086,17336,31377,-9,-9,-9,1,0,24,0,0,1,1,0,0,0,4,0,6.6175728,6.9826589,0,0,-941.88995,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,6.314261,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,582,229075.98,0,0,0,460.55594 -14086,17337,31378,-9,-9,-9,1,0,25,0,0,1,1,0,0,0,5,0,5.3899026,5.3448544,0,0,-905.5658,-9,-9,-9,2019,17,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,5.4292693,0,35.53,63.81,-9,-9,6.666666666666667,4,2,0,1,1,2,2,0,115,251367.56,0,0,0,586.59711 -14087,17338,31379,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.3635097,7.5796165,0,0,-946.65399,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.1022241,6.8244843,60.29,52.11,-9,-9,10,1,1,0,0,0,10,2,0,1307,76297.742,-34746.398,22068.596,0,2194.5659 -14088,17339,31380,31381,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.0362682,7.4835725,46,-4,-55.911797,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.089478,7.7590747,53.67,51.01,40.88,49.19,8.333333333333334,1,1,0,0,10,9,4,1,280,1772479.5,1142260.8,485965.69,0,3411.7673 -14088,17339,31381,31380,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.2777195,8.1952734,46,4,-16.417721,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8240011,8.0187998,40.88,49.19,53.67,51.01,6.666666666666667,1,1,0,0,8,9,4,1,280,1772479.5,1142260.8,485965.69,0,3411.7673 -14089,17340,31382,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,4.966454,5.0475769,0,0,-1130.4592,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6725798,53.89,21.62,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,814,274444.34,-133368.67,0,0,1924.6783 -14090,17341,31383,31384,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,11,-1,132.85345,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.72,46.41,8.333333333333334,1,1,0,0,9,13,3,1,779.5,1080200.3,884116,142458.59,0,1810.3259 -14090,17341,31384,31383,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.1823463,8.2173538,20,1,132.30537,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.0028648,54.72,46.41,57.16,56.15,8.333333333333334,1,1,0,0,10,13,3,1,779.5,1080200.3,884116,142458.59,0,1810.3259 -14091,17342,31385,31386,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,5,-2,-91.178505,0,-9,-9,2019,17,4,0,53,4,4,0,0,0,0,0,0,0,0,0,0,0,6.0035443,0,47.53,52.22,58.21,35.45,1.666666666666667,2,3,0,0,12,6,3,1,901,1355395,868787.5,347372.81,0,1497.1544 -14091,17342,31386,31385,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,8.0273705,7.7787728,39,2,108.45309,-9,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.5589881,7.876802,58.21,35.45,47.53,52.22,8.333333333333334,2,3,0,0,8,6,3,1,901,1355395,868787.5,347372.81,0,1497.1544 -14091,17343,31387,-9,31385,31386,1,0,36,0,0,0,1,1,-9,0,4,8.6953411,8.6394558,0,0,0,-1005.7091,0,2,2,2019,12,0,30,30,1,0,0,24.206079,24.206079,0,0,0,0,0,0,0,0,5.9210219,0,27.81,65.69,-9,-9,0,2,3,0,0,11,6,5,1,551,266385.16,19972.49,0,0,2360.8164 -14092,17344,31388,31389,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.8897076,8.0699205,8,1,15.199735,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,0,0,0,4.6866469,7.5154228,41.95,57.9,52.38,55.6,8.333333333333334,1,1,0,0,5,4,4,1,2039,1587339.5,1601613.3,0,0,2825.2207 -14092,17344,31389,31388,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.7839298,7.5887771,8,-1,10.457939,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,27,0,0,0,6.5949483,7.542798,52.38,55.6,41.95,57.9,6.666666666666667,1,1,0,0,4,4,4,1,2039,1587339.5,1601613.3,0,0,2825.2207 -14093,17345,31390,31391,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.3306751,8.4420586,0,9,1,-2.5747476,0,1,1,2019,19,8,37,37,1,8,0,16.771467,16.771467,0,0,0,0,0,0,0,0,0,0,32.26,58.07,32.8,55.28,8.333333333333334,1,1,0,0,9,10,5,1,616.5,110024.36,67807.961,472097.66,255662.06,3069.2939 -14093,17345,31391,31390,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.6024618,8.8012896,0,9,-1,-13.102243,0,1,1,2019,12,0,35,47,1,0,0,19.738342,19.738342,0,0,0,0,0,0,0,0,0,0,32.8,55.28,32.26,58.07,5,1,1,0,0,10,10,5,1,616.5,110024.36,67807.961,472097.66,255662.06,3069.2939 -14094,17346,31392,-9,-9,31395,1,1,15,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.8813,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 -14094,17346,31393,-9,31394,31395,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.1362,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 -14094,17346,31394,31395,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,8.0195103,8.0246725,0,1,-18,77.476112,-9,-9,-9,2019,6,0,27,0,1,0,0,10.996319,10.996319,0,0,0,0,0,1,1,0,6.8824191,0,54.69,57.47,57.06,57.76,8.333333333333334,1,1,0,0,5,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 -14094,17346,31395,31394,-9,-9,1,1,49,1,2,0,2,2,-9,0,5,8.2555246,8.4441061,0,1,18,-9.205142,-9,2,1,2019,9,0,50,0,1,0,0,10.078362,10.078362,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,2,4,0,569.25,511168.63,263795.19,282164.91,129202.91,3511.9536 -14095,17347,31396,31397,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,9,1,-74.043228,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,3.2310903,3.6202924,22.084915,0,1,1,0,0,0,44.18,41.6,62,37.52,6.666666666666667,1,1,0,0,0,12,3,1,681,210639.22,341755.5,123013.02,0,2055.9409 -14095,17347,31397,31396,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.6240544,7.2319741,9,-1,-43.359669,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,3.7975295,0,0,1,1,0,0,7.3676887,62,37.52,44.18,41.6,6.666666666666667,1,1,0,0,1,12,3,1,681,210639.22,341755.5,123013.02,0,2055.9409 -14096,17348,31398,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,2,0,7.7079988,7.57759,0,0,-940.60303,0,2,2,2019,14,3,0,0,4,3,0,0,0,1,0,4.235312,0,0,1,1,0,0,7.7158966,36.92,30.61,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,745,400288.41,247531.03,82492.93,0,2503.7964 -14097,17349,31399,-9,31401,31402,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.03668,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 -14097,17349,31400,-9,31401,31402,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.16968,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 -14097,17349,31401,31402,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.202384,7.2155576,0,9,0,-64.236465,0,-9,-9,2019,21,8,35,40,1,8,0,5.6420403,5.6420403,0,0,0,0,0,1,1,0,6.9197545,0,33.02,58.91,42.21,45.59,8.333333333333334,1,1,0,0,13,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 -14097,17349,31402,31401,-9,-9,1,1,35,0,2,0,1,1,-9,0,2,8.5549183,8.470376,0,9,0,-7.5851445,0,1,2,2019,13,2,38,40,1,2,0,16.944115,16.944115,0,0,0,0,0,1,1,0,0,0,42.21,45.59,33.02,58.91,8.333333333333334,1,1,0,0,11,11,4,1,377.5,5807.5732,140739.03,167271.75,153101.66,3039.7148 -14098,17350,31403,31404,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.8868823,7.6294622,0,10,0,-52.651165,0,3,3,2019,11,2,30,30,1,2,0,10.051605,10.051605,0,0,0,0,0,0,0,0,0,0,42.62,43.19,55.05,38.47,5,1,1,0,0,11,12,4,0,931.5,129834.27,62252.59,0,0,2564.3018 -14098,17350,31404,31403,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.2108345,8.3631086,4.6672955,10,0,-69.797729,0,3,3,2019,10,1,40,40,1,1,0,12.008057,12.008057,0,0,0,0,0,0,0,0,.52091384,4.8016582,55.05,38.47,42.62,43.19,5,1,1,0,0,11,12,4,0,931.5,129834.27,62252.59,0,0,2564.3018 -14099,17351,31405,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.1131525,7.6849265,0,0,0,-1199.1565,-9,2,2,2019,10,1,40,0,1,1,0,7.4191856,7.4191856,0,0,0,0,0,0,0,0,3.0325882,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,255,507217.78,0,0,0,1326.8175 -14100,17352,31406,31409,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.6463032,8.4382906,0,9,-1,137.54707,0,-9,-9,2019,11,0,35,39,1,0,0,18.984766,18.984766,0,0,0,0,0,1,1,0,0,0,55.28,55.62,43.88,39.38,6.666666666666667,1,1,0,0,11,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 -14100,17352,31407,-9,31409,31406,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.7299,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 -14100,17352,31408,-9,31409,31406,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-854.83533,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 -14100,17352,31409,31406,-9,-9,1,0,46,0,3,0,1,1,-9,0,2,7.9178629,7.9668307,0,9,1,-2.9148371,0,2,3,2019,15,3,25,25,1,3,0,12.237887,12.237887,0,0,0,0,0,1,1,0,0,0,43.88,39.38,55.28,55.62,6.666666666666667,1,1,0,0,10,13,4,1,815,260600.84,267168.84,275145.03,116987.15,3346.9038 -14101,17353,31410,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,2,0,0,0,0,0,-969.47253,0,3,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,23.52,47.81,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,167,96920.367,0,0,0,1824.651 -14102,17354,31411,-9,-9,-9,1,1,36,0,0,0,2,2,-9,1,3,0,4.8374128,4.6771874,0,0,-1160.2319,0,2,1,2019,22,9,0,25,3,9,0,0,0,0,0,0,0,0,1,1,0,4.9601102,0,35.81,55.09,-9,-9,1.666666666666667,1,1,1,0,9,10,2,1,654,47098.203,0,0,0,124.82935 -14103,17355,31412,-9,31414,31413,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1032.2426,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,4,1,1631,516557.69,307988.88,325918.53,96970.281,4174.3584 -14103,17355,31413,31414,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.7536583,8.60396,0,18,-2,-8.0721931,0,2,2,2019,12,0,35,35,1,0,0,12.691049,12.691049,0,0,0,0,0,1,1,0,2.1708238,0,56.5,51,54.79,55.86,8.333333333333334,2,3,0,0,13,8,4,1,1631,516557.69,307988.88,325918.53,96970.281,4174.3584 -14103,17355,31414,31413,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.3237276,8.4424744,0,18,2,-45.207844,0,2,2,2019,3,0,25,30,1,0,0,21.297129,21.297129,0,0,0,0,0,1,1,0,0,0,54.79,55.86,56.5,51,6.666666666666667,2,3,0,0,9,8,4,1,1631,516557.69,307988.88,325918.53,96970.281,4174.3584 -14104,17356,31415,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3688107,8.4729919,0,0,0,-948.16724,0,2,2,2019,7,0,60,60,1,0,0,9.4105043,9.4105043,0,0,0,0,0,1,1,0,.56700879,0,54.74,57.22,-9,-9,10,1,1,0,0,6,7,4,1,266,-98217.281,0,0,0,1384.673 -14105,17357,31416,31418,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.0882473,9.052043,0,10,2,16.313482,0,-9,-9,2019,12,0,40,42,1,0,0,23.839361,23.839361,0,0,0,0,0,0,0,0,7.7277832,0,34.36,57.34,26.58,59.49,6.666666666666667,1,1,0,0,12,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 -14105,17357,31417,-9,31418,31416,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.421,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 -14105,17357,31418,31416,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.4824905,8.7945948,0,10,-2,118.59802,0,3,3,2019,27,12,11,39,1,12,0,55.431217,55.431217,0,0,0,0,0,0,0,0,0,0,26.58,59.49,34.36,57.34,5,2,3,0,0,6,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 -14105,17357,31419,-9,31418,31416,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.61542,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,9,5,1,553,14796674,1614160.1,6018589.5,265662.47,5856.8252 -14106,17358,31420,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0500002,8.112031,0,0,0,-844.8476,0,2,-9,2019,11,0,34,35,1,1,0,9.1189556,9.1189556,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,1,1,0,0,10,9,4,1,413,-405177.44,53066.258,0,0,1019.8815 -14106,17359,31421,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,8.1303349,7.8746939,0,0,-998.37439,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,27,1,1,0,0,8.2754316,49,47,-9,-9,7,1,1,0,0,0,9,4,1,2496,687417.25,579214.88,492769.91,0,1367.8551 -14107,17360,31422,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-879.40771,0,2,2,2019,9,2,0,0,4,2,0,0,0,1,0,8.5415554,0,0,1,1,0,0,0,53.36,50.02,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,711,201020.77,0,0,0,1849.3391 -14108,17361,31423,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.2170162,7.9761086,0,0,0,-1069.8466,0,-9,3,2019,11,0,44,24,1,0,0,7.6933856,7.6933856,0,0,0,0,0,0,0,0,0,0,52.57,42.37,-9,-9,5,1,1,0,1,12,10,4,0,1787,324684.84,48843.879,130552.05,0,906.50281 -14108,17362,31424,-9,31423,-9,1,1,20,0,0,0,2,2,1,0,4,7.349124,7.292407,0,0,0,-821.95215,-9,2,-9,2019,10,0,39,0,1,0,1,3.6012924,3.6012924,0,0,0,0,0,0,0,0,.37919569,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,10,3,0,586,42766.074,77275.367,0,0,1501.3647 -14109,17363,31425,31426,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,7,6,17.92625,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,7.383244,0,0,1,1,0,6.4583187,0,45.32,16.49,59.69,18.94,3.333333333333333,1,1,0,0,0,4,2,1,2034,342542.44,41998.688,87486.461,0,1807.1646 -14109,17363,31426,31425,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,6.6992469,6.6257215,7,-6,14.328175,0,2,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,4.5439763,6.8536968,59.69,18.94,45.32,16.49,5,1,1,0,0,0,4,2,1,2034,342542.44,41998.688,87486.461,0,1807.1646 -14110,17364,31427,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.8392506,8.5754881,0,0,0,-1038.144,0,2,2,2019,11,0,35,40,1,0,0,18.517601,18.517601,0,0,0,0,0,0,0,0,0,0,42.61,54.85,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,2236,77040.828,-37271.359,0,0,2448.0508 -14111,17365,31428,31430,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.4006362,7.3735366,0,6,-6,38.830006,0,-9,-9,2019,11,0,24,34,1,2,0,5.7808843,5.7808843,0,0,0,0,0,1,1,0,0,0,46,58,49,58,7,1,1,0,0,4,4,4,1,916.66669,281113.53,65483.492,180932.61,133191.02,1937.8546 -14111,17365,31429,-9,31428,31430,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-866.00256,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,916.66669,281113.53,65483.492,180932.61,133191.02,1937.8546 -14111,17365,31430,31428,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.0623941,8.0116529,0,6,6,28.549507,0,3,3,2019,10,0,48,50,1,1,0,7.8492603,7.8492603,0,0,0,0,0,1,1,0,0,0,49,58,46,58,7,1,1,0,0,8,4,4,1,916.66669,281113.53,65483.492,180932.61,133191.02,1937.8546 -14112,17366,31431,31432,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,6.5133767,6.9998856,0,3,3,130.86882,0,2,1,2019,5,0,24,24,1,0,0,3.66276,3.66276,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.65,61.9,8.333333333333334,1,1,0,0,4,9,3,0,529,-91064.266,-24482.391,191334.97,108021.91,1463.4486 -14112,17366,31432,31431,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.6063752,7.414279,0,3,-3,-162.67032,0,-9,-9,2019,18,6,34,34,1,6,0,7.0492125,7.0492125,0,0,0,0,0,0,0,0,0,0,36.65,61.9,57.16,56.15,6.666666666666667,1,1,0,0,2,9,3,0,529,-91064.266,-24482.391,191334.97,108021.91,1463.4486 -14113,17367,31433,31434,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.6556625,8.7403698,0,14,7,-55.705345,0,2,1,2019,14,3,60,50,1,3,0,13.680113,13.680113,0,0,0,0,0,0,0,0,.71861213,0,55.19,54.26,48.77,60.16,8.333333333333334,1,1,0,0,6,10,5,1,702,615306.81,530819.06,251513,135836.34,5045.5708 -14113,17367,31434,31433,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.7904749,8.808363,0,14,-7,-30.438133,0,2,1,2019,4,0,55,50,1,0,0,15.122301,15.122301,0,0,0,0,0,0,0,0,0,0,48.77,60.16,55.19,54.26,8.333333333333334,1,1,0,0,8,10,5,1,702,615306.81,530819.06,251513,135836.34,5045.5708 -14114,17368,31435,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.8636842,8.2088232,0,0,-1098.4819,0,3,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,5.6759129,8.0236187,52.63,46.3,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,1901,205429.33,356503.25,128939.3,0,2418.217 -14115,17369,31436,-9,31437,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.2051,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1026,-118324.66,62449.773,0,0,1893.4502 -14115,17369,31437,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.3487339,7.625134,6.7019777,0,0,-848.81281,0,2,2,2019,6,0,21,24,1,0,0,6.3815603,6.3815603,0,0,0,0,0,1,0,1,6.3486724,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,13,2,3,0,1026,-118324.66,62449.773,0,0,1893.4502 -14116,17370,31438,-9,31440,31441,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.7274,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 -14116,17370,31439,-9,31440,31441,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4665,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 -14116,17370,31440,31441,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.7976584,7.7983346,0,7,-4,-61.757763,0,2,2,2019,12,2,60,50,1,2,0,5.1708388,5.1708388,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.61,59.06,8.333333333333334,1,1,0,0,10,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 -14116,17370,31441,31440,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,4.8800735,5.0964909,0,7,4,47.057922,0,2,1,2019,7,0,50,50,1,0,0,.36273086,.36273086,0,0,0,0,0,1,1,0,0,0,44.61,59.06,48.87,58.55,8.333333333333334,1,1,0,0,7,7,2,1,669.25,-88935.398,41753.922,0,0,1242.4991 -14117,17371,31442,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.1258183,8.463439,0,0,0,-1055.3074,0,2,3,2019,14,2,40,44,1,2,0,9.8020573,9.8020573,0,0,0,0,0,0,0,0,0,0,45.12,62.24,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,4268,467482.59,43723.816,546769.5,142672,1639.2689 -14118,17372,31443,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,7.6749539,7.5330706,0,0,-886.6355,0,3,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.3439665,7.6386743,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1454,249982.73,85503.141,114225.67,0,1782.3824 -14119,17373,31444,31445,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.9661999,7.8909273,30,0,11.760061,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4766464,7.8120942,53.87,53.44,57.63,56.14,8.333333333333334,1,1,0,0,0,1,4,1,146.5,1565725.8,745652.31,379057.13,0,4656.5317 -14119,17373,31445,31444,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.2458897,8.4006872,30,0,-109.12784,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4087791,57.63,56.14,53.87,53.44,8.333333333333334,1,1,0,0,6,1,4,1,146.5,1565725.8,745652.31,379057.13,0,4656.5317 -14120,17374,31446,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.6262684,8.5745201,4.6803188,0,0,-962.57837,0,-9,2,2019,7,0,38,38,1,0,0,14.20138,14.20138,0,0,0,0,0,0,0,0,3.6636701,5.0566263,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1887,619815.75,467366.88,0,0,1966.2162 -14120,17375,31447,-9,-9,31446,1,1,22,0,0,0,2,2,-9,0,4,8.0588236,7.9770737,0,0,0,-1051.0114,0,-9,2,2019,19,7,40,36,1,7,1,10.045523,10.045523,0,0,0,0,0,0,0,0,0,0,29.15,62.08,-9,-9,5,1,1,0,0,4,9,4,1,438,166877.31,-15146.389,0,0,1476.9418 -14120,17376,31448,-9,-9,31446,1,0,20,0,0,0,2,2,-9,0,3,7.2491093,6.7452822,0,0,0,-1018.3009,0,-9,2,2019,19,7,25,26,1,7,1,6.1945891,6.1945891,0,0,0,0,0,0,0,0,0,0,37.69,58.7,-9,-9,3.333333333333333,1,1,0,1,4,9,3,1,526,-216264.45,0,0,0,269.38196 -14121,17377,31449,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,9.0657253,9.188076,0,2,-1,-112.10984,0,2,1,2019,11,0,57,54,1,0,0,18.222881,18.222881,0,0,0,0,2,0,0,0,0,0,52.94,41.91,42.9,54.57,6.666666666666667,4,2,0,0,4,8,5,0,722,-93158.125,0,0,0,2742.3452 -14121,17378,31450,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.8059196,7.7615156,0,2,1,-14.803658,0,-9,-9,2019,13,2,37,45,1,2,0,7.7833209,7.7833209,0,0,0,0,0,0,0,0,0,0,42.9,54.57,52.94,41.91,6.666666666666667,1,1,0,0,4,8,5,0,845,-210763.28,31745.707,0,0,1071.8905 -14122,17379,31451,-9,-9,-9,1,1,41,0,0,0,3,3,-9,1,3,0,0,0,0,0,-962.09326,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.2,34.35,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,4301,-66836.719,0,0,0,1079.8428 -14123,17380,31452,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-972.422,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.7,8.42,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,498,-108863.92,0,0,0,1314.4861 -14124,17381,31453,31454,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.2313251,7.1278429,7,1,-28.814432,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0069623,57.17,50.61,50.6,44.34,8.333333333333334,1,1,0,0,3,9,4,1,649.5,1243341,662919.38,412173.63,0,4086.7515 -14124,17381,31454,31453,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,8.2884579,8.3904543,0,7,-1,.82268745,0,3,3,2019,11,1,40,40,1,1,0,14.556778,14.556778,0,0,0,0,7,1,1,0,0,0,50.6,44.34,57.17,50.61,8.333333333333334,1,1,0,0,9,9,4,1,649.5,1243341,662919.38,412173.63,0,4086.7515 -14125,17382,31455,31456,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,44,-6,3.6950393,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5314317,0,55.44,52.99,60.28,43.74,10,1,1,0,0,0,13,4,1,1181,1915470.3,709644.25,210259.28,0,4379.7407 -14125,17382,31456,31455,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.2201529,8.2500219,44,6,-1.9447235,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.9418335,8.0139017,60.28,43.74,55.44,52.99,8.333333333333334,1,1,0,0,0,13,4,1,1181,1915470.3,709644.25,210259.28,0,4379.7407 -14126,17383,31457,-9,31458,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.5228,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,1069.6666,507264.28,236026.02,239737.33,153310.3,1683.7765 -14126,17383,31458,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.5589552,8.4316273,0,13,2,-52.270401,0,2,1,2019,10,0,41,43,1,0,0,12.748906,12.748906,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,12,2,4,1,1069.6666,507264.28,236026.02,239737.33,153310.3,1683.7765 -14126,17383,31459,-9,31458,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.4219,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1069.6666,507264.28,236026.02,239737.33,153310.3,1683.7765 -14126,17384,31460,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.960217,7.8397961,0,13,-2,77.78862,0,3,3,2019,7,0,30,20,1,0,0,11.142341,11.142341,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,6,2,4,1,466,-303616.41,18238.256,0,0,691.41467 -14127,17385,31461,31462,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,7,-10,71.825378,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9580865,0,54.45,41.44,55.6,39.42,10,1,1,0,0,0,4,2,1,634,768865.56,230376.44,242956.45,0,2255.2915 -14127,17385,31462,31461,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.6718459,7.095911,7,10,-101.23227,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2021937,7.7003474,55.6,39.42,54.45,41.44,8.333333333333334,1,1,0,0,0,4,2,1,634,768865.56,230376.44,242956.45,0,2255.2915 -14128,17386,31463,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.1987085,6.6778016,0,0,-911.29175,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.7913203,7.0601239,47.07,55.18,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1901,271388,0,288505.44,0,1116.5577 -14129,17387,31464,31465,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,7.3613334,7.5408225,0,30,-2,-55.071201,0,2,2,2019,7,0,20,40,1,0,0,12.747307,12.747307,0,0,0,0,0,1,1,0,2.7099521,0,57.06,57.76,46.86,52.61,8.333333333333334,1,1,0,0,7,9,3,1,481.5,494725.34,177350.86,440243.34,0,1779.0476 -14129,17387,31465,31464,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.392241,7.1728768,0,30,2,-100.8271,0,2,2,2019,8,0,17,17,1,0,0,10.454142,10.454142,0,0,0,0,0,1,1,0,3.4161837,0,46.86,52.61,57.06,57.76,5,1,1,0,0,10,9,3,1,481.5,494725.34,177350.86,440243.34,0,1779.0476 -14130,17388,31466,31467,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,4.6958494,4.6924214,49,2,46.542881,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.3890109,4.4547801,53.14,51.28,58.47,50.22,8.333333333333334,1,1,0,0,0,9,2,1,707,707069.25,152785.72,580855.81,0,1616.6077 -14130,17388,31467,31466,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8239636,5.1643848,49,-2,40.40266,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8303959,5.9826279,58.47,50.22,53.14,51.28,10,1,1,0,0,0,9,2,1,707,707069.25,152785.72,580855.81,0,1616.6077 -14131,17389,31468,31471,-9,-9,1,0,36,1,2,0,1,1,-9,0,5,0,0,0,7,1,.59121323,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.273315,0,57.06,57.76,52.88,56.68,10,1,1,0,0,4,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 -14131,17389,31469,-9,31468,31471,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.0419,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 -14131,17389,31470,-9,31468,31471,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0303,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 -14131,17389,31471,31468,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,7.9590559,7.8777108,0,7,-1,103.30515,0,1,1,2019,5,0,36,36,1,0,0,10.920234,10.920234,0,0,0,0,0,1,1,0,0,0,52.88,56.68,57.06,57.76,8.333333333333334,1,1,0,0,8,12,3,1,1116.5,-199852.92,-12444.288,0,0,2581.8916 -14132,17390,31472,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,7.7298265,7.4150376,0,0,-1033.9727,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0918173,7.5751567,43.23,58.28,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,167,188097.22,244738.47,170148.97,0,1784.9739 -14133,17391,31473,31474,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,7.6658115,8.0779047,0,9,-1,-153.37613,0,2,2,2019,10,1,30,32,1,1,0,9.4420872,9.4420872,0,0,0,0,0,1,1,0,0,0,38.51,59.43,48.21,50.73,8.333333333333334,1,1,0,0,9,7,5,1,820,959021.56,413188.88,338258.47,45258.793,5279.7983 -14133,17391,31474,31473,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,9.3577852,9.3420219,0,3,1,61.311195,0,-9,-9,2019,11,3,60,60,1,3,0,24.155817,24.155817,0,0,0,0,0,1,1,0,0,0,48.21,50.73,38.51,59.43,5,1,1,0,0,9,7,5,1,820,959021.56,413188.88,338258.47,45258.793,5279.7983 -14133,17391,31475,-9,31473,31474,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-886.89014,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,820,959021.56,413188.88,338258.47,45258.793,5279.7983 -14134,17392,31476,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,7.4458785,7.5332189,0,0,-1080.5149,0,3,3,2019,13,4,0,0,4,4,0,0,0,1,8.30439,10.57432,0,0,1,1,0,0,7.5746536,62.46,25.63,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,290,628903.38,93759.07,0,0,2462.8127 -14135,17393,31477,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.3036833,8.3203239,0,0,0,-997.82257,0,-9,-9,2019,20,8,39,38,1,8,0,13.513307,13.513307,0,0,0,0,0,1,1,0,2.6495788,0,40.86,62.75,-9,-9,10,1,1,0,0,9,2,4,1,189,-250145.2,-65330.605,0,0,2012.1233 -14136,17394,31478,31479,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.229063,8.3108635,26,-4,-41.267643,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.9024405,0,23.996916,0,1,1,0,8.6468134,8.1392136,61.43,43.34,60.64,27.78,10,1,1,0,0,0,9,5,1,1131,2236941.5,858779.25,981196.75,0,4946.2515 -14136,17394,31479,31478,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,8.6031284,8.4727201,26,4,.25791746,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.9636152,8.3932714,60.64,27.78,61.43,43.34,8.333333333333334,1,1,0,0,0,9,5,1,1131,2236941.5,858779.25,981196.75,0,4946.2515 -14137,17395,31480,31481,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.5768185,8.1846638,0,17,0,73.74482,0,2,2,2019,12,0,44,48,1,0,0,9.816328,9.816328,0,0,0,0,0,1,1,0,2.1378095,0,43.6,51.61,58.15,52.91,8.333333333333334,1,1,0,0,9,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 -14137,17395,31481,31480,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.5937042,7.38483,0,18,0,14.601398,0,2,1,2019,16,5,24,22,1,5,0,10.992448,10.992448,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.6,51.61,8.333333333333334,1,1,0,0,9,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 -14137,17395,31482,-9,31481,31480,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.06085,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 -14137,17395,31483,-9,31481,31480,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.7135,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,450.75,29982.033,-28973.852,0,0,2369.9988 -14138,17396,31484,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,4.6126132,4.6508269,0,0,-1016.2452,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.290926,4.844718,48.7,56.22,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,317,608976.75,70776.25,326634.69,0,1158.5179 -14139,17397,31485,31486,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,48,-1,30.039749,0,3,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.25,33.21,28.58,24.58,8.333333333333334,1,1,0,0,0,9,2,0,266.5,139910.98,191377.63,178978.2,0,1609.3608 -14139,17397,31486,31485,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,6.225348,6.2450352,48,1,-19.940729,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,6.251101,28.58,24.58,43.25,33.21,3.333333333333333,1,1,0,0,0,9,2,0,266.5,139910.98,191377.63,178978.2,0,1609.3608 -14140,17398,31487,31488,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.1734753,9.2568779,0,30,5,-56.456638,0,-9,-9,2019,15,3,40,40,1,3,0,24.494555,24.494555,0,0,0,0,0,0,0,0,5.4534883,0,50.18,44.59,44.09,49.97,6.666666666666667,1,1,0,0,9,8,5,1,480,556833.38,342799.34,111318.32,49753.063,3244.9985 -14140,17398,31488,31487,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,6.9535999,6.838594,0,30,-5,38.540565,0,2,-9,2019,9,0,24,18,1,0,0,5.0043292,5.0043292,0,0,0,0,0,0,0,0,0,0,44.09,49.97,50.18,44.59,8.333333333333334,1,1,0,0,9,8,5,1,480,556833.38,342799.34,111318.32,49753.063,3244.9985 -14140,17399,31489,-9,31488,31487,1,1,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-1134.6499,-9,2,2,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,43.96,62.06,-9,-9,8.333333333333334,1,1,1,0,0,8,1,1,1814,72487.828,0,0,0,0 -14140,17400,31490,-9,31488,31487,1,0,19,0,0,0,2,2,-9,0,4,8.3671875,8.6314316,0,0,0,-974.17169,0,2,2,2019,12,3,40,8,1,3,1,11.293068,11.293068,0,0,0,0,0,0,0,0,0,0,41.36,59.41,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,107,-211506.31,0,0,0,1331.1383 -14141,17401,31491,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-998.03375,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,15.359258,0,0,1,1,0,.37717572,0,54,45,-9,-9,8,1,1,0,0,0,13,1,0,204,35882.813,0,55578.258,0,400.37357 -14142,17402,31492,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.517169,8.7477598,0,0,0,-1091.1744,0,1,2,2019,16,4,29,30,1,4,0,22.058405,22.058405,0,0,0,0,0,1,1,0,0,0,40.38,57.11,-9,-9,3.333333333333333,1,1,0,1,9,10,4,0,709.33331,1308096.1,618468.56,591358.38,27907.125,1872.52 -14142,17402,31493,-9,31492,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.1182,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,709.33331,1308096.1,618468.56,591358.38,27907.125,1872.52 -14142,17402,31494,-9,31492,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.6388,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,709.33331,1308096.1,618468.56,591358.38,27907.125,1872.52 -14143,17403,31495,31496,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.1012363,8.0393009,6,1,-125.06602,0,2,1,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1176066,7.9059563,46.29,54.22,56.92,49.39,8.333333333333334,1,1,0,0,0,13,4,1,1034.5,1090890.5,718073.81,239038.97,0,3847.6477 -14143,17403,31496,31495,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.6654987,7.6394114,6,-1,85.697975,0,2,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.7078357,7.344285,56.92,49.39,46.29,54.22,10,1,1,0,0,0,13,4,1,1034.5,1090890.5,718073.81,239038.97,0,3847.6477 -14144,17404,31497,31498,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.3604002,9.1997643,0,2,6,13.055971,0,-9,-9,2019,11,0,47,46,1,0,0,36.865608,36.865608,0,0,0,0,0,0,0,0,2.4774456,0,60.02,56.42,52.81,52.74,8.333333333333334,1,1,0,0,11,12,5,1,381.5,386276.56,286936.03,0,0,3801.4712 -14144,17404,31498,31497,-9,-9,1,0,31,0,0,0,2,2,0,0,5,0,0,0,2,-6,-156.78223,-9,-9,-9,2019,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,52.81,52.74,60.02,56.42,10,1,1,0,0,3,12,5,1,381.5,386276.56,286936.03,0,0,3801.4712 -14145,17405,31499,31500,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.7256408,7.7073531,0,32,7,100.18647,0,3,3,2019,8,1,40,16,1,1,0,6.1665606,6.1665606,0,0,0,0,0,1,1,0,0,0,37.36,50.33,48,49,6.666666666666667,2,3,0,0,10,4,3,1,863.5,157467.77,29609.139,188035.28,0,571.64917 -14145,17405,31500,31499,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,32,-7,71.369629,0,-9,-9,2019,11,0,0,35,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,37.36,50.33,7,2,3,0,0,0,4,3,1,863.5,157467.77,29609.139,188035.28,0,571.64917 -14146,17406,31501,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.1337109,6.5997682,0,0,-984.09302,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8960018,7.0873027,42.24,48.17,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,340,-180473.63,187401.7,81925.898,0,1774.2288 -14147,17407,31502,31503,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,1,-2,1.5938587,-9,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,48.29,47.89,42.28,54.75,1.666666666666667,1,1,1,0,0,11,3,0,835,700704,31428.572,357928.59,51068.531,761.77014 -14147,17407,31503,31502,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.6614299,7.8299441,0,1,2,19.091988,-9,3,2,2019,12,0,35,0,1,0,0,6.1308331,6.1308331,0,0,0,0,0,0,0,0,0,0,42.28,54.75,48.29,47.89,3.333333333333333,1,1,0,0,7,11,3,0,835,700704,31428.572,357928.59,51068.531,761.77014 -14147,17408,31504,-9,31502,31503,1,0,21,0,0,0,2,2,-9,0,5,6.4567909,6.8172445,0,0,0,-1038.4414,-9,2,2,2019,12,0,35,0,1,0,1,2.3004012,2.3004012,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,11,2,0,239,-316219.84,0,0,0,39.626324 -14147,17409,31505,-9,31502,31503,1,0,19,0,0,0,2,2,-9,0,3,7.1277499,7.2668233,0,0,0,-968.23938,-9,2,2,2019,15,3,40,0,1,3,1,3.4312224,3.4312224,0,0,0,0,0,0,0,0,0,0,46.59,46.3,-9,-9,6.666666666666667,1,1,0,0,2,11,3,0,1071,-117739.28,0,0,0,826.3288 -14148,17410,31506,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1096.4941,-9,3,2,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,28.21,31.46,-9,-9,5,1,1,0,0,0,12,1,1,2554,-59863.047,0,0,0,781.06366 -14149,17411,31507,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.3230124,7.459918,0,0,0,-1057.2944,0,-9,-9,2019,6,0,24,41,1,0,0,7.5466347,7.5466347,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,6.666666666666667,1,1,0,1,2,13,3,1,471,79937.242,11585.991,0,0,617.89978 -14150,17412,31508,-9,31510,31509,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.9253,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.4279733,0,57.06,57.76,-9,-9,10,1,1,0,0,0,13,5,1,715.33331,1324865.1,1200973.1,203452.64,0,4490.9902 -14150,17412,31509,31510,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.2315292,9.1702156,0,10,3,84.839485,0,-9,-9,2019,12,0,47,47,1,0,0,25.91116,25.91116,0,0,0,0,0,1,1,0,0,0,52,54.51,62.66,52.4,6.666666666666667,1,1,0,0,8,13,5,1,715.33331,1324865.1,1200973.1,203452.64,0,4490.9902 -14150,17412,31510,31509,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.0740895,7.2227001,0,24,-3,-40.403698,0,3,3,2019,6,0,22,21,1,0,0,6.9551539,6.9551539,0,0,0,0,2,1,1,0,0,0,62.66,52.4,52,54.51,10,1,1,0,0,10,13,5,1,715.33331,1324865.1,1200973.1,203452.64,0,4490.9902 -14150,17413,31511,-9,31510,31509,1,1,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-1107.3965,-9,2,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,1.2465478,0,33.47,61.48,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,289,221178.89,0,0,0,-334.86395 -14151,17414,31512,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,4,0,7.0711951,6.2724166,0,0,-994.07434,0,2,2,2019,12,1,0,0,4,1,0,0,0,1,2.6094162,0,27.641127,0,1,1,0,5.2223015,6.6969666,49.37,50.15,-9,-9,5,1,1,0,0,0,4,2,1,703,235845.3,0,317053,0,988.07501 -14152,17415,31513,-9,-9,-9,1,0,21,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1031.4069,0,2,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,22.95,52.29,-9,-9,0,1,1,0,1,2,12,1,0,639,0,0,0,0,876.45618 -14153,17416,31514,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.106616,7.9871469,0,2,3,-27.171835,0,3,3,2019,8,0,48,42,1,0,0,7.5702181,7.5702181,0,0,0,0,0,0,0,0,0,0,48.77,60.16,56.44,40.67,8.333333333333334,1,1,0,0,10,5,4,1,791,-6954.1982,22831.391,82161.375,82502.953,2119.1204 -14153,17417,31515,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.9186382,8.0680656,0,2,-3,125.67809,0,-9,-9,2019,9,1,39,37,1,1,0,7.553709,7.553709,0,0,0,0,0,0,0,0,2.4224901,0,56.44,40.67,48.77,60.16,6.666666666666667,1,1,0,0,3,5,4,1,327,34739.402,-92304.102,0,0,857.03107 -14154,17418,31516,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.9742799,6.174314,0,0,-964.26642,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3085947,56.11,41.54,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,212,456439.38,163692.17,209731.84,0,751.16608 -14155,17419,31517,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1028.96,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,2.9922974,8.1331682,0,0,1,1,0,0,0,57.14,37.56,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1277,109101.6,0,161667.7,0,1065.8254 -14156,17420,31518,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1064.2036,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,36.18,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,822,667564.94,68428.844,370078.41,47320.574,1382.8978 -14157,17421,31519,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,2,0,7.6758809,8.0223827,0,0,-1027.595,0,3,3,2019,29,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.8968978,7.3832455,29.83,37.88,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,743,358356.88,56936.988,0,0,1922.9246 -14158,17422,31520,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.0818033,9.1927977,0,0,0,-1094.3593,-9,-9,-9,2019,7,0,45,0,1,0,0,22.825579,22.825579,0,0,0,0,14.5,0,0,0,7.0720282,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,329,411462.38,281506.81,179988.13,79370.867,4153.7852 -14159,17423,31521,31522,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.9446616,7.9446802,48,4,-27.171745,0,3,2,2019,7,0,0,16,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4646149,8.3721237,55.19,54.26,50.75,56.52,10,1,1,0,0,5,9,5,1,1013,3482112,2428256,394087.94,0,20302.41 -14159,17423,31522,31521,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,10.441044,10.623231,48,-4,-22.838028,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.9992952,10.102065,50.75,56.52,55.19,54.26,8.333333333333334,1,1,0,0,2,9,5,1,1013,3482112,2428256,394087.94,0,20302.41 -14160,17424,31523,31524,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.8115964,6.8399901,8,0,133.02034,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.3325424,6.6119285,34.39,38.81,30.76,28.13,3.333333333333333,2,3,0,0,0,6,2,1,235.5,746343.5,297254.84,315403.63,0,582.30261 -14160,17424,31524,31523,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,6.5260649,6.5489373,8,0,-24.228577,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,3.6041975,6.6695709,30.76,28.13,34.39,38.81,3.333333333333333,2,3,0,0,10,6,2,1,235.5,746343.5,297254.84,315403.63,0,582.30261 -14161,17425,31525,31526,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.9061112,7.7969809,0,37,3,-20.863092,0,-9,-9,2019,16,4,40,40,1,4,0,6.1027985,6.1027985,0,0,0,0,0,1,1,0,0,0,56.62,33.41,27.88,37.37,8.333333333333334,2,3,0,0,7,8,3,1,511,176870.31,174325.22,0,0,1695.0398 -14161,17425,31526,31525,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,7,-3,114.45807,0,3,-9,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,27.88,37.37,56.62,33.41,1.666666666666667,2,3,0,0,0,8,3,1,511,176870.31,174325.22,0,0,1695.0398 -14161,17426,31527,-9,31526,31525,1,1,23,0,0,0,1,1,-9,0,4,8.6402617,8.8006611,0,0,0,-1118.5248,0,3,2,2019,10,0,37,0,1,1,1,19.986292,19.986292,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,5,1,2181,259047.02,0,0,0,2116.3 -14161,17427,31528,-9,31526,31525,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1097.09,-9,3,2,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,1,1104,0,0,0,0,-76.439339 -14162,17428,31529,31530,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,8.3894825,8.4978247,51,0,139.4463,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.886095,8.2663126,56.29,52.37,42.43,39.73,8.333333333333334,1,1,0,0,0,8,5,1,515,1995239.8,1362749.4,481631.69,0,7145.2734 -14162,17428,31530,31529,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.7543116,8.7050571,51,0,112.13367,0,3,1,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5857592,9.3080072,42.43,39.73,56.29,52.37,5,4,5,0,0,0,8,5,1,515,1995239.8,1362749.4,481631.69,0,7145.2734 -14163,17429,31531,-9,31532,31533,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1004.7824,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 -14163,17429,31532,31533,-9,-9,1,0,22,1,4,0,2,2,-9,0,4,8.1499043,7.9598341,0,3,-8,-.58416736,0,-9,-9,2019,11,3,43,0,1,3,0,9.0190535,9.0190535,0,0,0,0,0,1,1,0,0,0,51.49,57.57,46,53,8.333333333333334,1,1,0,0,2,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 -14163,17429,31533,31532,-9,-9,1,1,30,1,4,0,2,2,-9,0,3,0,0,0,3,8,35.963894,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.1383014,0,46,53,51.49,57.57,7,1,1,1,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 -14163,17429,31534,-9,31532,31533,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-904.48212,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 -14163,17429,31535,-9,31532,31533,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.5914,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,2,0,1201.6,-161364.55,0,0,0,2707.7585 -14164,17430,31536,31538,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.0418739,8.5062389,0,2,-4,-76.870689,0,2,2,2019,12,0,40,39,1,0,0,11.171576,11.171576,0,0,0,0,0,1,1,0,0,0,30.46,48.13,30.7,62.92,5,1,1,0,0,9,4,5,1,610.33331,332212.44,523188.94,160795.98,46358.352,3423.1023 -14164,17430,31537,-9,31536,31538,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-993.2597,-9,2,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.67,60.18,-9,-9,3.333333333333333,1,1,0,0,1,4,5,1,610.33331,332212.44,523188.94,160795.98,46358.352,3423.1023 -14164,17430,31538,31536,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.3988066,8.4715891,0,2,4,-56.396614,0,-9,-9,2019,24,11,42,38,1,11,0,12.420273,12.420273,0,0,0,0,0,1,1,0,0,0,30.7,62.92,30.46,48.13,1.666666666666667,1,1,0,0,11,4,5,1,610.33331,332212.44,523188.94,160795.98,46358.352,3423.1023 -14165,17431,31539,-9,31541,31540,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1147.0199,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,890,-71599.938,-9691.1543,176849.66,124542.75,2432.3425 -14165,17431,31540,31541,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.5485001,8.1794252,0,6,6,117.36535,0,2,2,2019,11,0,40,40,1,0,0,12.811715,12.811715,0,0,0,0,0,1,1,0,0,0,52.22,53.26,54.79,55.86,6.666666666666667,1,1,0,0,9,10,4,0,890,-71599.938,-9691.1543,176849.66,124542.75,2432.3425 -14165,17431,31541,31540,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,6.7818718,6.6449442,0,6,-6,40.828663,0,2,-9,2019,11,0,15,23,1,0,0,8.8556108,8.8556108,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.22,53.26,8.333333333333334,1,1,0,0,6,10,4,0,890,-71599.938,-9691.1543,176849.66,124542.75,2432.3425 -14166,17432,31542,31543,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,7.8780279,8.2801294,0,6,1,-38.514908,0,-9,-9,2019,7,1,48,0,1,1,0,7.1887755,7.1887755,0,0,0,0,7,1,1,0,0,0,55.95,47.23,51.44,53.27,5,1,1,0,0,0,5,3,0,1416.6666,33678.66,-28732.201,136369.41,107523.83,2738.4636 -14166,17432,31543,31542,-9,-9,1,0,28,0,1,0,3,3,-9,1,4,0,0,0,6,-1,26.657469,0,3,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.44,53.27,55.95,47.23,6.666666666666667,1,1,0,1,0,5,3,0,1416.6666,33678.66,-28732.201,136369.41,107523.83,2738.4636 -14166,17432,31544,-9,31543,31542,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.6034,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,1416.6666,33678.66,-28732.201,136369.41,107523.83,2738.4636 -14167,17433,31545,31546,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.2385325,7.2846599,6,-4,76.436111,0,2,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9355536,7.3465071,49,48,52,48,7,1,1,0,0,4,4,3,1,1132,859389.75,542592.38,243179.45,0,2061.4873 -14167,17433,31546,31545,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.4503126,6.688838,6,4,62.392345,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.8793187,6.6696863,52,48,49,48,7,1,1,0,0,0,4,3,1,1132,859389.75,542592.38,243179.45,0,2061.4873 -14168,17434,31547,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1273.2771,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,31.08,35.66,-9,-9,5,1,1,0,0,0,12,1,0,884,300136.53,49976.531,292272.84,0,1710.6968 -14169,17435,31548,31549,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.299624,7.6193314,46,5,-17.352957,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4709878,7.1146178,45.91,59.89,52,54.51,6.666666666666667,1,1,0,0,5,10,4,1,662,1311439.9,917474.38,288433.06,0,3657.0327 -14169,17435,31549,31548,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.9785991,8.2123518,46,-5,-10.525835,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3822803,6.9267569,52,54.51,45.91,59.89,6.666666666666667,1,1,0,0,5,10,4,1,662,1311439.9,917474.38,288433.06,0,3657.0327 -14170,17436,31550,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.9575,0,2,3,2019,17,4,0,0,4,4,0,0,0,1,0,18.883202,0,0,1,1,0,0,0,42.03,24.15,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,891,97241.141,0,0,0,984.91089 -14171,17437,31551,-9,-9,-9,1,0,23,1,2,0,1,1,-9,0,4,0,0,0,0,0,-912.48712,0,-9,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.06,55.28,-9,-9,8.333333333333334,1,1,1,0,7,13,1,0,504,81397.398,0,0,0,831.4118 -14171,17437,31552,-9,31551,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.37292,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,504,81397.398,0,0,0,831.4118 -14171,17437,31553,-9,31551,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.4935,-9,-9,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,504,81397.398,0,0,0,831.4118 -14172,17438,31554,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9238081,7.7148428,0,0,0,-966.97461,0,2,2,2019,10,0,40,46,1,0,0,5.2766767,5.2766767,0,0,0,0,0,0,0,0,2.5385942,0,45.1,50.79,-9,-9,6.666666666666667,4,2,0,0,10,8,3,1,1132,-6088.8608,0,0,0,850.81189 -14173,17439,31555,-9,31558,31557,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3409,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 -14173,17439,31556,-9,31558,31557,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.7749,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 -14173,17439,31557,31558,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,8.5765543,8.3021946,0,13,1,-13.242593,0,2,2,2019,12,1,60,55,1,1,0,9.3815765,9.3815765,0,0,0,0,0,0,0,0,6.2277441,0,57.06,57.76,49,56,8.333333333333334,1,1,0,0,7,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 -14173,17439,31558,31557,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,0,0,0,5,-1,62.261761,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,57.06,57.76,8,1,1,0,0,0,12,3,1,397.5,183070.25,74940.203,262815.5,169660.52,5385.2759 -14174,17440,31559,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.2575607,8.3663292,0,0,0,-1049.6704,0,2,2,2019,12,0,50,50,1,0,0,9.6604633,9.6604633,0,0,0,0,0,1,1,0,0,0,47.39,56.64,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,251,-74036.172,0,0,0,1536.5424 -14175,17441,31560,31561,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,8.1941519,8.5526409,7.0385494,38,3,-20.673229,0,2,2,2019,10,1,35,40,1,1,0,13.976189,13.976189,0,0,0,0,0,1,1,0,2.7231252,7.1624322,54.2,57.49,45.85,61.26,8.333333333333334,1,1,0,0,13,7,5,1,221,2366991.3,1398058.4,592073.94,0,4587.2158 -14175,17441,31561,31560,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,8.0996265,8.0128717,3.4874432,38,-3,-229.793,0,3,2,2019,9,0,40,40,1,0,0,9.8247614,9.8247614,0,0,0,0,0,1,1,0,.13605684,3.4556592,45.85,61.26,54.2,57.49,10,1,1,0,0,13,7,5,1,221,2366991.3,1398058.4,592073.94,0,4587.2158 -14176,17442,31562,31563,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,6.6830506,6.4095712,7,5,82.672882,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8064752,62.96,55.09,57.16,56.15,1.666666666666667,1,1,0,0,5,11,3,1,416,489987.5,217046.16,167655.72,0,2123.9375 -14176,17442,31563,31562,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8707151,6.8596025,7,-5,77.110825,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3256741,57.16,56.15,62.96,55.09,8.333333333333334,1,1,0,0,4,11,3,1,416,489987.5,217046.16,167655.72,0,2123.9375 -14177,17443,31564,31565,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,7,15,13.781057,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,57.33,53.46,8,1,1,0,0,0,2,5,1,287,472609.69,104592.3,280859.53,146333.84,3874.0576 -14177,17443,31565,31564,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.449832,9.2946205,0,38,-15,-44.984577,0,3,3,2019,8,1,50,48,1,1,0,24.636894,24.636894,0,0,0,0,0,1,1,0,2.2619145,0,57.33,53.46,51,46,8.333333333333334,1,1,0,0,9,2,5,1,287,472609.69,104592.3,280859.53,146333.84,3874.0576 -14178,17444,31566,31567,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1201677,7.001173,31,-11,-153.00604,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.1668882,6.9829307,53.75,54.92,62.25,48.33,10,1,1,0,0,7,7,3,1,258.5,1061645.3,278041.16,454337.09,0,2346.7356 -14178,17444,31567,31566,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.5996666,7.3859987,31,11,-35.950447,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.1419487,7.5895534,62.25,48.33,53.75,54.92,10,1,1,0,0,0,7,3,1,258.5,1061645.3,278041.16,454337.09,0,2346.7356 -14179,17445,31568,-9,31570,31571,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-900.50977,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 -14179,17445,31569,-9,31570,31571,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-879.15393,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 -14179,17445,31570,31571,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,7.2974248,6.8244591,0,18,0,87.991058,0,-9,-9,2019,23,11,2,2,1,11,0,66.845978,66.845978,0,0,0,0,74.5,1,1,0,0,0,18.05,64.93000000000001,50.28,51.35,8.333333333333334,1,1,0,0,10,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 -14179,17445,31571,31570,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.7129278,8.942255,0,18,9,29.842628,0,2,2,2019,10,0,41,40,1,0,0,17.540047,17.540047,0,0,0,0,42,1,1,0,2.5332661,0,50.28,51.35,18.05,64.93000000000001,6.666666666666667,1,1,0,0,10,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 -14179,17445,31572,-9,31570,31571,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.6821,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,1242.2,331505.72,35339.738,230488.3,45303.805,3491.2883 -14180,17446,31573,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,9.025034,8.7117863,0,0,-1065.8478,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7347107,8.7903624,64.37,44.69,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,375,1188032.9,476233.56,381873.38,0,5641.604 -14181,17447,31574,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,8.3916664,7.9664774,0,0,0,-1122.5165,0,2,2,2019,14,2,38,35,1,2,0,12.789177,12.789177,0,0,0,0,0,0,0,0,0,0,44.41,46.23,-9,-9,6.666666666666667,1,1,0,1,11,6,4,1,727,459096.59,0,163022.72,0,924.80511 -14182,17448,31575,31576,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.0151081,8.1681471,44,7,15.515882,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6193838,7.8911519,54.66,47.77,59.29,49.68,6.666666666666667,1,1,0,0,0,4,3,1,617,857344.63,525364.25,86922.469,0,3049.1606 -14182,17448,31576,31575,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.9928122,5.8807545,44,-7,77.537758,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6999335,6.1098585,59.29,49.68,54.66,47.77,8.333333333333334,1,1,0,0,8,4,3,1,617,857344.63,525364.25,86922.469,0,3049.1606 -14183,17449,31577,31578,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,5.5300446,5.4760284,0,32,2,-25.886499,0,2,2,2019,3,0,3,8,1,0,0,9.8517313,9.8517313,0,0,0,0,2,1,1,0,.73662335,0,46.39,60.99,48.28,60.18,3.333333333333333,1,1,0,0,12,9,2,1,498.5,1032652.6,296943.59,641035.13,0,1813.0444 -14183,17449,31578,31577,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,6.8620262,7.2117305,0,32,-2,23.060345,0,2,2,2019,13,4,2,15,1,4,0,51.73954,51.73954,0,0,0,0,0,1,1,0,0,0,48.28,60.18,46.39,60.99,3.333333333333333,1,1,0,0,9,9,2,1,498.5,1032652.6,296943.59,641035.13,0,1813.0444 -14184,17450,31579,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.385499,8.4242144,0,0,0,-1116.9623,0,3,2,2019,5,0,40,38,1,0,0,11.896899,11.896899,0,0,0,0,0,1,1,0,7.5270972,0,53.98,49.25,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,946,523798.25,432051.75,89174.078,4461.5996,1642.4586 -14185,17451,31580,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,5.8928847,5.8199625,0,0,-1111.2273,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9718909,50.45,46.95,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,472,444105.72,116646.19,60612.07,0,1167.7518 -14186,17452,31581,-9,31582,31583,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-898.94006,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,4,1,866.66669,420948.03,203127.28,0,0,3161.7368 -14186,17452,31582,31583,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.2507362,8.2251234,0,31,-2,-159.60912,0,2,-9,2019,10,0,37,37,1,0,0,10.08874,10.08874,0,0,0,0,0,1,1,0,0,0,58.05,54.52,53,54,6.666666666666667,1,1,0,0,9,4,4,1,866.66669,420948.03,203127.28,0,0,3161.7368 -14186,17452,31583,31582,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.6740026,8.6864662,0,6,2,-46.676727,0,-9,-9,2019,9,0,37,37,1,1,0,20.331129,20.331129,0,0,0,0,0,1,1,0,0,0,53,54,58.05,54.52,8,1,1,0,0,1,4,4,1,866.66669,420948.03,203127.28,0,0,3161.7368 -14187,17453,31584,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,5.0194111,5.1061587,0,0,-1010.6893,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4176779,5.0669203,35.42,44.62,-9,-9,10,1,1,0,0,0,8,2,0,1702,274152.13,30434.709,0,0,1238.859 -14188,17454,31585,-9,31588,31586,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.54987,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 -14188,17454,31586,31588,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.1166964,9.2901373,0,7,6,38.898781,0,2,2,2019,7,0,42,35,1,0,0,21.825003,21.825003,0,0,0,0,0,1,1,0,0,0,45.19,47.9,48.87,58.55,8.333333333333334,1,1,0,0,9,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 -14188,17454,31587,-9,31588,31586,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.55878,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 -14188,17454,31588,31586,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.5726137,8.3512964,0,17,-6,45.931614,0,2,3,2019,11,0,30,25,1,0,0,20.644764,20.644764,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.19,47.9,1.666666666666667,1,1,0,0,9,1,5,1,794.5,771136.69,691879.75,131759.63,33141.852,4721.3882 -14189,17455,31589,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-975.91058,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.65,30.8,-9,-9,10,1,1,0,0,0,12,1,1,151,-133914.55,0,0,0,1723.1155 -14190,17456,31590,31591,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.0148163,7.192307,0,19,-3,10.068083,0,3,3,2019,10,0,22,22,1,0,0,7.5891409,7.5891409,0,0,0,0,2,1,1,0,0,0,49.52,56.95,48.87,58.55,6.666666666666667,1,1,0,0,11,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 -14190,17456,31591,31590,-9,-9,1,1,44,0,1,0,3,3,-9,0,4,8.194479,8.3407679,0,22,3,-175.64934,0,3,3,2019,7,0,50,40,1,0,0,8.2282295,8.2282295,0,0,0,0,0,1,1,0,0,0,48.87,58.55,49.52,56.95,8.333333333333334,1,1,0,0,10,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 -14190,17456,31592,-9,31590,31591,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1036.8141,-9,2,3,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.31,56.45,-9,-9,6.666666666666667,1,1,0,0,1,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 -14190,17456,31593,-9,31590,31591,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-993.54126,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,848.75,126742.23,106758.37,186409.5,42774.082,2914.814 -14191,17457,31594,31595,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,7.2442775,6.9614277,0,7,13,113.73144,0,3,3,2019,28,10,25,29,1,10,0,6.2188892,6.2188892,0,0,0,0,0,1,1,0,0,0,32.74,16.46,42.19,29.21,3.333333333333333,1,1,0,1,7,6,3,0,1324,103308.75,0,161049.91,0,816.39148 -14191,17457,31595,31594,-9,-9,1,1,43,0,0,0,3,3,-9,0,2,6.7990561,6.7085705,0,6,-13,40.907314,0,3,3,2019,18,6,15,32,1,6,0,5.815999,5.815999,0,0,0,0,0,1,1,0,0,0,42.19,29.21,32.74,16.46,1.666666666666667,3,4,0,1,8,6,3,0,1324,103308.75,0,161049.91,0,816.39148 -14192,17458,31596,31597,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,7.8966765,7.9374642,0,6,-3,-.92855126,0,-9,-9,2019,12,0,38,37,1,0,0,7.2250271,7.2250271,0,0,0,0,0,0,0,0,0,0,49.44,56.93,58.32,50.22,8.333333333333334,1,1,0,0,10,9,4,1,241.5,69098.563,-5895.0703,263436,91664.242,2791.509 -14192,17458,31597,31596,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.2636309,8.5550528,0,6,3,15.828013,0,2,2,2019,6,0,38,41,1,0,0,10.912691,10.912691,0,0,0,0,0,0,0,0,2.3239307,0,58.32,50.22,49.44,56.93,8.333333333333334,1,1,0,0,8,9,4,1,241.5,69098.563,-5895.0703,263436,91664.242,2791.509 -14193,17459,31598,31599,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.8482313,8.9316807,0,6,2,17.462688,0,2,2,2019,7,0,36,35,1,0,0,29.111044,29.111044,0,0,0,0,0,0,0,0,0,0,58.47,50.22,57.16,56.15,1.666666666666667,1,1,0,0,6,10,5,1,2561,1151673.6,672688.06,283155.81,56381.391,15447.049 -14193,17459,31599,31598,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9974942,8.1232462,0,6,-2,-61.901676,0,2,2,2019,6,0,23,22,1,0,0,10.73673,10.73673,0,0,0,0,0,0,0,0,10.626014,0,57.16,56.15,58.47,50.22,8.333333333333334,1,1,0,0,6,10,5,1,2561,1151673.6,672688.06,283155.81,56381.391,15447.049 -14194,17460,31600,-9,31601,31602,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.8734,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,1,744,152916.7,0,0,0,1598.043 -14194,17460,31601,31602,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.3188558,7.3637061,0,7,-3,70.943893,0,-9,-9,2019,7,0,30,30,1,0,0,7.2097759,7.2097759,0,0,0,0,0,1,1,0,0,0,61.88,41.68,37.88,15.31,8.333333333333334,1,1,0,0,9,1,2,1,744,152916.7,0,0,0,1598.043 -14194,17460,31602,31601,-9,-9,1,1,56,0,1,0,2,2,-9,0,1,0,0,0,30,3,-183.94878,0,2,2,2019,26,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,15.31,61.88,41.68,5,1,1,0,0,0,1,2,1,744,152916.7,0,0,0,1598.043 -14194,17461,31603,-9,31601,31602,1,1,27,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1055.6387,0,2,2,2019,3,0,0,0,3,0,1,0,0,0,0,0,0,120,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,1,2,1,1,1,3953,147879.3,0,0,0,500.90103 -14194,17462,31604,-9,31601,31602,1,0,23,0,1,0,2,2,-9,0,3,8.0692387,7.7976689,0,0,0,-1070.7135,0,2,2,2019,17,5,47,52,1,5,1,6.0666265,6.0666265,0,0,0,0,0,1,1,0,0,0,41.48,52.55,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,512,222688.61,32532.084,0,0,898.81219 -14195,17463,31605,31606,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.6376348,7.9057255,0,24,0,33.983887,0,3,2,2019,11,2,37,37,1,2,0,6.7280817,6.7280817,0,0,0,0,0,0,0,0,0,0,50.78,45.45,58.32,50.22,8.333333333333334,1,1,0,0,10,10,5,1,1351.5,429288.38,17363.797,389194.5,23610.063,3412.9036 -14195,17463,31606,31605,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.3145781,8.787137,7.0692515,24,0,36.566864,0,2,2,2019,7,0,37,38,1,0,0,14.308999,14.308999,0,0,0,0,0,0,0,0,1.990784,7.3962073,58.32,50.22,50.78,45.45,8.333333333333334,1,1,0,0,10,10,5,1,1351.5,429288.38,17363.797,389194.5,23610.063,3412.9036 -14195,17464,31607,-9,31605,31606,1,0,22,0,0,0,2,2,-9,0,4,7.985208,8.1644506,0,0,0,-983.06464,0,2,3,2019,14,2,50,27,1,2,1,6.362072,6.362072,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,354,-114961.38,0,0,0,404.5788 -14195,17465,31608,-9,31605,31606,1,0,19,0,0,0,2,2,1,0,3,7.5608602,7.3682504,0,0,0,-939.32391,-9,2,2,2019,16,4,28,0,1,4,1,9.876173,9.876173,0,0,0,0,0,0,0,0,0,0,36.92,51.87,-9,-9,5,1,1,0,0,3,10,3,1,645,-105504.52,-36165.844,0,0,925.21417 -14196,17466,31609,31610,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.1003556,6.7548027,7,0,47.981262,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8395834,7.0280352,54.79,55.86,50.9,35.27,10,1,1,0,0,0,2,2,1,298.5,706786.13,441127.81,282567.53,0,1895.5459 -14196,17466,31610,31609,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.7839127,5.3189268,57,0,-121.62026,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.8165326,5.2948756,50.9,35.27,54.79,55.86,10,1,1,0,0,0,2,2,1,298.5,706786.13,441127.81,282567.53,0,1895.5459 -14197,17467,31611,31612,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.946701,9.0079737,8.0142107,2,7,11.586255,0,3,3,2019,13,2,20,20,1,2,0,41.95892,41.95892,0,0,0,0,0,0,0,0,8.5398817,8.0178461,41.62,45.32,57.16,56.15,6.666666666666667,1,1,0,0,8,11,5,1,546.5,1371832,158344.14,203382.09,0,6201.0239 -14197,17467,31612,31611,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6528311,7.607348,0,2,-7,53.451012,0,3,2,2019,10,0,30,30,1,0,0,9.9289455,9.9289455,0,0,0,0,0,0,0,0,3.5761099,0,57.16,56.15,41.62,45.32,6.666666666666667,1,1,0,0,8,11,5,1,546.5,1371832,158344.14,203382.09,0,6201.0239 -14198,17468,31613,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-808.28461,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,13.598343,0,0,1,1,0,0,0,38.41,27.82,-9,-9,0,1,1,0,0,0,1,1,0,387,-193323.89,0,0,0,1378.3956 -14199,17469,31614,31615,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.5720687,7.6589642,0,34,-1,-164.70288,0,2,-9,2019,6,0,40,40,1,0,0,4.9188046,4.9188046,0,0,0,0,0,0,0,0,8.4633007,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,13,9,4,1,1393,543598.13,142254.84,0,0,4833.4023 -14199,17469,31615,31614,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.6919479,7.7781115,0,34,1,-32.789818,0,2,2,2019,7,0,23,22,1,0,0,10.312096,10.312096,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,13,9,4,1,1393,543598.13,142254.84,0,0,4833.4023 -14199,17470,31616,-9,31615,31614,1,0,25,0,0,0,1,1,-9,0,4,8.061635,8.2114229,0,0,0,-1036.452,0,2,1,2019,13,2,42,39,1,2,1,8.8512163,8.8512163,0,0,0,0,0,0,0,0,0,0,39.09,60.15,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,672,247211.72,43736.16,272423.13,131663.41,1261.2147 -14200,17471,31617,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,11,-22,8.6019468,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,53.37,17.7,43.46,46.41,5,1,1,0,0,0,5,2,1,1476,-187334.17,0,0,0,178.51875 -14200,17472,31618,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.7891097,6.691473,11,22,-28.430704,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.1134877,6.4140406,43.46,46.41,53.37,17.7,8.333333333333334,1,1,0,0,0,5,2,1,337,384071.25,13724.074,150725.09,0,1320.7688 -14201,17473,31619,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,6.7970929,7.0670133,3.8655982,0,0,-944.36957,0,2,2,2019,14,3,16,16,1,3,0,6.1451292,6.1451292,0,0,0,0,0,1,1,0,0,3.9387467,53.23,10.94,-9,-9,5,1,1,0,0,4,9,2,0,467,475146,41926.207,213041.92,0,579.66113 -14202,17474,31620,31621,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,8.0139542,7.9241982,8,7,-23.761028,0,2,2,2019,10,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,6.8013968,8.1860943,55.36,51.57,46.57,54.66,8.333333333333334,1,1,0,0,9,10,5,1,690,1068783.4,354695.97,485143.25,0,6014.5244 -14202,17474,31621,31620,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,9.3625832,9.692234,0,8,-7,-94.220856,0,3,2,2019,10,0,45,0,1,0,0,26.635887,26.635887,0,0,0,0,0,0,0,0,1.4234648,0,46.57,54.66,55.36,51.57,8.333333333333334,1,1,0,0,7,10,5,1,690,1068783.4,354695.97,485143.25,0,6014.5244 -14203,17475,31622,31623,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.5442948,7.7618942,39,-2,92.475456,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.3550081,42.36,46.68,52,48,6.666666666666667,1,1,0,0,8,13,4,1,295,1390398,715618.38,138023.27,0,2706.9241 -14203,17475,31623,31622,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.13729,8.5871077,7.0157199,7,2,-35.458447,-9,-9,-9,2019,10,0,42,0,1,1,0,9.9997454,9.9997454,0,0,0,0,0,0,0,0,1.6984037,7.190434,52,48,42.36,46.68,7,1,1,0,0,1,13,4,1,295,1390398,715618.38,138023.27,0,2706.9241 -14204,17476,31624,31627,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,8.1432753,7.9379683,0,25,-7,130.67903,0,3,2,2019,6,0,38,22,1,0,0,7.9241781,7.9241781,0,0,0,0,0,1,1,0,0,0,49.41,58.28,43.9,46.48,8.333333333333334,2,3,0,0,13,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 -14204,17476,31625,-9,31624,31627,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-896.12537,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 -14204,17476,31626,-9,31624,31627,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.95831,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 -14204,17476,31627,31624,-9,-9,1,1,51,0,3,0,2,2,-9,0,2,7.0299325,6.9745035,0,10,7,-80.465828,0,-9,-9,2019,9,0,60,54,1,0,0,2.9687369,2.9687369,0,0,0,0,0,1,1,0,0,0,43.9,46.48,49.41,58.28,5,2,3,0,0,13,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 -14204,17476,31628,-9,31624,31627,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-932.34277,-9,2,2,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,1.4367476,0,52.82,51.63,-9,-9,5,2,3,0,0,0,9,3,1,727.20001,70793.375,7602.1626,0,0,2701.3667 -14205,17477,31629,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.4987831,9.6737814,0,0,0,-1086.8552,0,3,2,2019,9,2,47,45,1,2,0,37.726158,37.726158,0,0,0,0,0,0,0,0,.88008422,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,1612,992130.19,331211.63,312004.44,22461.311,3545.6731 -14206,17478,31630,31631,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,50,8,-112.48732,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,54.2,57.49,8.333333333333334,1,1,0,0,10,7,2,1,1701,1337164.1,0,932934.25,0,991.04236 -14206,17478,31631,31630,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.3079734,5.7669344,48,-8,-85.020012,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8270109,5.6597691,54.2,57.49,52,47,5,1,1,0,0,11,7,2,1,1701,1337164.1,0,932934.25,0,991.04236 -14207,17479,31632,31633,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.1430378,8.1018143,0,6,-11,-85.928589,0,-9,-9,2019,9,2,37,37,1,2,0,12.893337,12.893337,0,0,0,0,0,0,0,0,1.4286598,0,48.77,60.16,55.76,52.64,10,1,1,0,0,9,6,5,1,587,265716.72,430539.38,138692.06,80231.805,4072.1169 -14207,17479,31633,31632,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.0867233,9.1574011,0,6,11,-7.1968074,0,3,2,2019,8,0,37,37,1,0,0,26.185701,26.185701,0,0,0,0,0,0,0,0,4.9256649,0,55.76,52.64,48.77,60.16,8.333333333333334,1,1,0,0,9,6,5,1,587,265716.72,430539.38,138692.06,80231.805,4072.1169 -14208,17480,31634,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8150063,8.5614376,0,0,0,-1009.9084,0,-9,-9,2019,15,4,19,50,1,4,0,35.731441,35.731441,0,0,0,0,0,1,1,0,4.4324222,0,42.86,55.92,-9,-9,6.666666666666667,2,3,0,0,8,2,5,1,168,-245912.98,-56258.078,0,0,2026.5825 -14209,17481,31635,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1192.7367,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.75,55.83,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,6160,214914.44,0,52174.328,0,526.5105 -14210,17482,31636,-9,31638,31637,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1006.4863,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 -14210,17482,31637,31638,-9,-9,1,1,48,0,1,0,1,1,-9,0,2,9.3324289,9.1946449,0,9,0,37.566944,0,2,2,2019,24,12,36,37,1,12,0,35.314331,35.314331,0,0,0,0,0,1,1,0,0,0,25.47,45.65,54.1,59.11,3.333333333333333,1,1,0,0,10,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 -14210,17482,31638,31637,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,9,0,21.486816,0,3,2,2019,2,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,8.825757,0,54.1,59.11,25.47,45.65,8.333333333333334,1,1,0,0,6,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 -14210,17482,31639,-9,31638,31637,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1056.2504,-9,2,1,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.43,53.42,-9,-9,10,1,1,0,0,0,12,4,1,1569.25,539037.13,53746.277,479552.44,143247.22,5834.4941 -14211,17483,31640,31641,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3356743,8.090066,0,31,-1,-195.88008,0,2,2,2019,11,0,37,37,1,0,0,13.386081,13.386081,0,0,0,0,7,1,1,0,0,0,43.9,57.01,20.9,21.84,8.333333333333334,1,1,0,0,9,12,4,1,682,395543.69,100252.76,119031.95,0,2316.731 -14211,17483,31641,31640,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,0,6.2173748,6.5950589,31,1,58.650528,0,3,3,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.6262934,6.790297,20.9,21.84,43.9,57.01,1.666666666666667,1,1,0,0,0,12,4,1,682,395543.69,100252.76,119031.95,0,2316.731 -14212,17484,31642,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1079.7081,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.06,61.94,-9,-9,6.666666666666667,1,1,1,0,6,4,2,0,746,-104207,0,126918.88,12108.747,1007.771 -14212,17484,31643,-9,31642,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1166.4066,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,746,-104207,0,126918.88,12108.747,1007.771 -14213,17485,31644,31645,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,0,0,0,6,-2,-6.8777657,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.49,55.44,57.33,53.46,8.333333333333334,1,1,0,0,10,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 -14213,17485,31645,31644,-9,-9,1,1,31,1,2,0,1,1,-9,0,3,8.6731291,8.509551,0,6,2,31.424101,0,-9,-9,2019,6,0,55,60,1,0,0,11.32824,11.32824,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.49,55.44,8.333333333333334,1,1,0,0,5,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 -14213,17485,31646,-9,31644,31645,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-887.36633,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 -14213,17485,31647,-9,31644,31645,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.97369,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,648.25,211989.66,92772.305,181651.94,89679.961,2498.6833 -14214,17486,31648,31649,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8365202,8.9290733,0,9,0,-1.5225776,0,-9,-9,2019,4,0,80,45,1,0,0,11.817067,11.817067,0,0,0,0,0,0,0,0,6.5356941,0,60.29,52.11,55.36,51.57,8.333333333333334,1,1,0,0,11,13,5,1,192.5,588347,413674.69,255534.09,122683.72,4731.4878 -14214,17486,31649,31648,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.9002776,7.9954515,0,9,0,70.401901,0,2,2,2019,8,0,33,33,1,0,0,8.8268566,8.8268566,0,0,0,0,5.48,0,0,0,7.8253331,0,55.36,51.57,60.29,52.11,1.666666666666667,1,1,0,0,9,13,5,1,192.5,588347,413674.69,255534.09,122683.72,4731.4878 -14215,17487,31650,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1078.5889,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,5.48,1,1,0,0,0,36.18,16.21,-9,-9,0,3,4,0,0,0,8,1,0,523,72890.523,0,0,0,1742.1737 -14215,17487,31651,-9,31650,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.85968,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,1,0,523,72890.523,0,0,0,1742.1737 -14215,17488,31652,-9,31650,-9,1,0,22,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1010.8484,0,2,2,2019,15,6,0,15,3,6,1,0,0,0,0,0,0,2,1,1,0,0,0,26.13,54.42,-9,-9,6.666666666666667,3,4,1,0,1,8,1,0,597,216612.58,0,0,0,778.74762 -14215,17489,31653,-9,31650,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1096.5546,0,2,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,-9,-9,1.666666666666667,1,1,1,0,0,8,1,0,262,0,0,0,0,0 -14216,17490,31654,-9,31655,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-943.45978,-9,1,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,3,0,369.66666,680675,115965.51,623027.13,111636.08,1879.1276 -14216,17490,31655,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.4050379,8.2740784,0,0,0,-1022.8238,-9,3,3,2019,15,6,38,0,1,6,0,11.131072,11.131072,0,0,0,0,0,1,1,0,0,0,44.56,49.36,-9,-9,8.333333333333334,3,4,0,0,10,8,3,0,369.66666,680675,115965.51,623027.13,111636.08,1879.1276 -14216,17490,31656,-9,31655,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1075.839,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,3,4,-9,0,0,8,3,0,369.66666,680675,115965.51,623027.13,111636.08,1879.1276 -14217,17491,31657,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.9438744,7.0058088,0,0,-959.75836,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6502304,6.9310589,50.75,39.21,-9,-9,5,1,1,0,0,5,12,2,0,1593,-47848.75,130427.27,0,0,1624.205 -14218,17492,31658,-9,31660,31659,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-951.38684,-9,1,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.29,54.84,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,356,1970326.5,564813.75,784369.94,55658.152,3226.8474 -14218,17492,31659,31660,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.6140366,8.6104927,0,26,1,-52.695168,0,2,3,2019,9,0,40,37,1,0,0,10.551833,10.551833,0,0,0,0,0,1,1,0,2.2578964,0,57.33,53.46,51.77,58.57,8.333333333333334,1,1,0,0,9,10,4,1,356,1970326.5,564813.75,784369.94,55658.152,3226.8474 -14218,17492,31660,31659,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.421854,8.2075768,0,26,-1,92.757744,0,2,3,2019,11,0,30,30,1,0,0,15.674036,15.674036,0,0,0,0,2,1,1,0,2.8966303,0,51.77,58.57,57.33,53.46,5,1,1,0,0,9,10,4,1,356,1970326.5,564813.75,784369.94,55658.152,3226.8474 -14218,17493,31661,-9,31660,31659,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1052.306,1,1,2,2019,6,0,0,35,2,0,1,0,0,0,0,0,0,0,1,1,0,1.9859878,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,328,202435.53,0,0,0,-345.81644 -14219,17494,31662,31663,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,8.0635586,8.2409563,0,19,-3,134.99059,0,2,2,2019,11,0,40,40,1,2,0,9.7950678,9.7950678,0,0,0,0,0,1,1,0,0,0,37.74,51.32,52.56,40.92,8.333333333333334,1,1,0,0,10,13,4,1,487,633429,40090.508,299476.66,819.52271,3729.2871 -14219,17494,31663,31662,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.366787,8.5515833,0,19,3,30.604013,0,2,2,2019,12,0,50,40,1,0,0,10.437045,10.437045,0,0,0,0,0,1,1,0,0,0,52.56,40.92,37.74,51.32,5,1,1,0,0,12,13,4,1,487,633429,40090.508,299476.66,819.52271,3729.2871 -14220,17495,31664,31665,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.5399919,6.4375553,48,1,-51.184895,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,2.452225,11.224139,0,0,1,1,0,0,6.5230908,55.02,34.28,51.71,18.06,8.333333333333334,1,1,0,0,0,7,2,1,812.5,4761641,1752106.5,2025255.3,0,1906.2993 -14220,17495,31665,31664,-9,-9,1,1,68,0,0,0,1,1,-9,0,1,0,7.016139,7.0751138,48,-1,-8.6540384,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,7.2577095,6.7372036,51.71,18.06,55.02,34.28,5,1,1,0,0,5,7,2,1,812.5,4761641,1752106.5,2025255.3,0,1906.2993 -14221,17496,31666,31667,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,8.4983902,8.6763515,0,9,-2,144.23946,0,3,-9,2019,11,0,40,40,1,0,0,15.640808,15.640808,0,0,0,0,0,1,1,0,0,0,48.6,50.46,39.46,51.89,6.666666666666667,1,1,0,0,10,2,5,1,1257,1631318.4,1038168,248937.47,90358.148,4862.1538 -14221,17496,31667,31666,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4643164,8.609499,6.1737885,9,2,-10.742349,0,2,2,2019,14,3,38,38,1,3,0,12.349114,12.349114,0,0,0,0,0,1,1,0,1.2282926,6.7840724,39.46,51.89,48.6,50.46,8.333333333333334,1,1,0,0,10,2,5,1,1257,1631318.4,1038168,248937.47,90358.148,4862.1538 -14221,17497,31668,-9,31667,31666,1,1,24,0,0,0,1,1,-9,0,4,8.650507,8.6030483,0,0,0,-942.3949,0,2,3,2019,14,2,40,38,1,2,1,15.017309,15.017309,0,0,0,0,0,1,1,0,0,0,41.02,59.77,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,201,305032.25,91740.078,0,0,1410.2054 -14221,17498,31669,-9,31667,31666,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-893.71747,-9,2,3,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,116,145242.36,0,0,0,0 -14222,17499,31670,31671,-9,-9,1,0,50,0,0,0,1,1,-9,1,4,6.1886458,6.3021708,0,6,-4,-66.043396,0,-9,-9,2019,17,6,30,30,1,6,0,1.949044,1.949044,0,0,0,0,0,1,1,0,1.4211044,0,31.41,60.03,43.2,59.97,8.333333333333334,1,1,0,0,7,2,2,1,698,359462.56,274566.06,65818.156,0,4290.4941 -14222,17499,31671,31670,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,6.1622152,6.0488539,0,28,4,54.811916,0,-9,-9,2019,10,2,10,10,1,2,0,5.0310884,5.0310884,0,0,0,0,0,1,1,0,.59528023,0,43.2,59.97,31.41,60.03,6.666666666666667,1,1,0,0,8,2,2,1,698,359462.56,274566.06,65818.156,0,4290.4941 -14222,17500,31672,-9,31670,31671,1,1,19,0,0,0,2,2,1,0,4,7.5921726,7.4941206,0,0,0,-980.37933,-9,1,3,2019,11,0,30,0,1,2,1,7.0208197,7.0208197,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,2,2,3,1,706.66669,-134479.42,0,0,0,470.78256 -14222,17500,31673,-9,-9,31672,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-905.53882,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,706.66669,-134479.42,0,0,0,470.78256 -14222,17500,31674,-9,-9,31672,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1001.4939,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,2,3,1,706.66669,-134479.42,0,0,0,470.78256 -14223,17501,31675,-9,31676,31677,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.7717,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,375,168708.73,52421.449,321208.22,156272.92,3399.9622 -14223,17501,31676,31677,-9,-9,1,0,47,1,1,0,1,1,-9,0,4,8.107439,8.1770782,0,7,3,-53.309978,0,2,2,2019,15,4,15,11,1,4,0,23.163332,23.163332,0,0,0,0,0,1,1,0,0,0,35.81,53.81,49.04,55.86,6.666666666666667,1,1,0,1,6,8,4,1,375,168708.73,52421.449,321208.22,156272.92,3399.9622 -14223,17501,31677,31676,-9,-9,1,1,44,1,1,0,1,1,-9,0,3,7.5567393,7.8120356,6.8803272,7,-3,-45.01408,0,3,3,2019,10,0,25,20,1,0,0,7.4918828,7.4918828,0,0,0,0,0,1,1,0,8.0819607,0,49.04,55.86,35.81,53.81,5,1,1,0,0,8,8,4,1,375,168708.73,52421.449,321208.22,156272.92,3399.9622 -14224,17502,31678,31679,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.0241194,7.9791446,0,1,-10,-8.612854,-9,-9,-9,2019,10,0,40,0,1,0,0,7.9201059,7.9201059,0,0,0,0,0,0,0,0,5.6095986,0,60.68,42.81,57.33,53.46,5,1,1,0,0,2,9,4,0,1047.5,198587.8,157568.06,182114.48,41839.125,2412.8865 -14224,17502,31679,31678,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.509634,7.3815827,0,1,10,122.88996,0,2,2,2019,4,0,21,37,1,0,0,7.7572684,7.7572684,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,60.68,42.81,10,1,1,0,0,11,9,4,0,1047.5,198587.8,157568.06,182114.48,41839.125,2412.8865 -14225,17503,31680,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,6.1507263,6.1010737,0,0,-1097.3297,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.955862,65.82000000000001,31.58,-9,-9,10,1,1,0,0,0,5,2,1,2066,218780.13,0,290581.25,0,931.29272 -14226,17504,31681,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,8.1250353,8.0618429,6.9397168,0,0,-1066.067,0,3,3,2019,21,9,27,25,1,9,0,9.8895473,9.8895473,1,0,0,0,0,1,1,0,6.5107231,7.1721773,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1095,379893.72,137950.16,154188.08,0,1609.7426 -14227,17505,31682,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.1378164,8.2503891,0,0,0,-1009.316,0,3,3,2019,7,0,25,30,1,0,0,18.270599,18.270599,0,0,0,0,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,333,323344.03,-68154.859,0,0,1775.0176 -14227,17506,31683,-9,31682,-9,1,1,27,0,0,0,1,1,-9,1,2,0,0,0,0,0,-979.66461,0,1,1,2019,18,7,0,41,3,7,1,0,0,0,0,0,0,0,1,1,0,2.2755768,0,27.27,53.09,-9,-9,3.333333333333333,1,1,0,0,4,13,1,1,1174,-138061.94,0,0,0,937.42462 -14227,17507,31684,-9,31682,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4849033,8.5766249,0,0,0,-1027.6506,0,1,1,2019,6,0,42,37,1,0,1,12.372089,12.372089,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,248,239570.11,19948.93,214927.73,149189.42,1378.0942 -14227,17508,31685,-9,31682,-9,1,1,24,0,0,0,2,2,-9,0,4,7.5972795,7.7440314,0,0,0,-1062.0507,0,1,-9,2019,6,0,37,37,1,0,1,6.5137267,6.5137267,0,0,0,0,7,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,292,210924.22,45261.336,0,0,851.42035 -14227,17509,31686,-9,31682,-9,1,1,22,0,0,0,2,2,1,0,5,7.4330225,7.2823486,0,0,0,-1112.6454,-9,1,-9,2019,6,0,37,0,1,0,1,7.534379,7.534379,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,878,-7279.7393,131245.08,0,0,885.49957 -14228,17510,31687,31688,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,35,-10,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.15,41.42,36.07,25.51,5,1,1,0,0,0,9,1,0,935,129212.06,-61887.508,0,0,2207.6628 -14228,17510,31688,31687,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,35,10,0,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.07,25.51,39.15,41.42,5,1,1,0,0,0,9,1,0,935,129212.06,-61887.508,0,0,2207.6628 -14228,17511,31689,-9,31687,31688,1,0,24,0,0,0,1,1,-9,1,1,0,0,0,0,0,-918.36816,0,2,3,2019,20,0,0,0,3,7,1,0,0,0,0,0,0,120,1,1,0,0,0,33.63,29.25,-9,-9,5,1,1,0,0,1,9,1,0,142,75682.18,0,0,0,1217.4181 -14228,17512,31690,-9,31687,31688,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1134.5463,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.29900065,0,38.88,45.73,-9,-9,5,1,1,0,0,0,9,1,0,561,-214521.67,0,0,0,7.1063952 -14229,17513,31691,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1849337,7.8938885,3.7588263,0,0,-1014.8707,0,-9,-9,2019,13,2,37,38,1,2,0,9.7540407,9.7540407,0,0,0,0,0,1,1,0,4.5115638,4.2866921,35.6,45.52,-9,-9,6.666666666666667,1,1,0,0,9,1,4,1,339,-23707.473,129701.78,95388.156,0,821.5592 -14230,17514,31692,31693,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.479084,8.763732,0,24,-3,-118.71559,0,3,3,2019,7,0,45,40,1,0,0,12.099981,12.099981,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,6,5,1,431,1693930.1,1102800.5,238407.97,0,4209.2861 -14230,17514,31693,31692,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.5490303,8.7837687,0,24,3,-88.389687,0,3,2,2019,6,0,39,39,1,0,0,18.310612,18.310612,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.06,57.76,10,1,1,0,0,9,6,5,1,431,1693930.1,1102800.5,238407.97,0,4209.2861 -14231,17515,31694,31696,-9,-9,1,0,38,1,1,0,1,1,-9,0,5,8.6391354,8.8301048,0,10,1,83.554016,0,-9,-9,2019,10,0,30,45,1,0,0,20.667896,20.667896,0,0,0,0,0,0,0,0,7.09446,0,54.1,59.11,31.91,61.11,8.333333333333334,1,1,0,0,10,12,5,1,756,92954.547,209824.53,206281.3,125858.84,5647.7988 -14231,17515,31695,-9,31694,31696,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.1689,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,756,92954.547,209824.53,206281.3,125858.84,5647.7988 -14231,17515,31696,31694,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,9.1601,9.2558718,0,10,-1,23.637123,0,1,1,2019,12,1,50,55,1,1,0,20.443756,20.443756,0,0,0,0,0,0,0,0,4.8403292,0,31.91,61.11,54.1,59.11,8.333333333333334,1,1,0,0,10,12,5,1,756,92954.547,209824.53,206281.3,125858.84,5647.7988 -14232,17516,31697,-9,-9,31700,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-861.92902,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 -14232,17516,31698,-9,-9,31700,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.2783,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 -14232,17516,31699,-9,-9,31700,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.1826,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 -14232,17516,31700,-9,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,8.6144667,8.5704002,0,16,-4,-72.166718,0,2,2,2019,6,1,47,49,1,1,0,17.640192,17.640192,0,0,0,0,0,1,1,0,0,0,44.26,59.43,27.28,65.96000000000001,6.666666666666667,1,1,0,0,8,4,3,1,834.5,252347.38,-2054.6929,90401.82,76529.406,2202.9048 -14232,17517,31701,-9,-9,-9,1,1,40,1,3,0,1,1,-9,0,4,0,0,0,15,4,21.88142,0,3,3,2019,10,2,0,60,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,27.28,65.96000000000001,44.26,59.43,1.666666666666667,1,1,0,1,5,4,3,1,1193,419816.31,433136.13,0,0,1191.3915 -14233,17518,31702,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.0214906,6.258059,0,0,0,-1094.5198,0,3,3,2019,31,12,16,16,1,12,0,3.3913498,3.3913498,0,0,0,0,2,1,1,0,0,0,20.93,44.83,-9,-9,0,1,1,0,1,7,7,2,0,327,489095,69837.688,0,0,624.52905 -14233,17519,31703,-9,31702,-9,1,0,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1037.897,0,3,-9,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,32.73,30.02,-9,-9,3.333333333333333,4,2,0,1,0,7,1,0,1334,275410.63,0,0,0,232.00954 -14233,17520,31704,-9,31702,-9,1,1,19,0,0,0,2,2,1,0,4,7.9962759,8.1102629,0,0,0,-949.99243,-9,3,-9,2019,10,0,37,0,1,2,1,9.8702717,9.8702717,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,1,7,4,0,572,136083.06,82047.469,0,0,1348.5212 -14234,17521,31705,31706,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0534878,9.2820206,0,25,6,138.25145,0,2,2,2019,10,0,55,55,1,0,0,18.185928,18.185928,0,0,0,0,0,0,0,0,7.9262209,0,54.88,36.58,41.95,31.7,6.666666666666667,2,3,0,0,8,8,5,1,763.5,361828.06,48473.57,457371.5,47915.676,5663.0098 -14234,17521,31706,31705,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.073432,8.0394812,0,25,-6,-72.16288,0,2,3,2019,25,9,34,34,1,9,0,10.13063,10.13063,0,0,0,0,0,0,0,0,1.1780053,0,41.95,31.7,54.88,36.58,5,2,3,0,0,8,8,5,1,763.5,361828.06,48473.57,457371.5,47915.676,5663.0098 -14235,17522,31707,31708,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,9,-5,-45.83604,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,0,15.804235,0,0,1,1,0,0,0,34.69,21.98,58.1,28.75,3.333333333333333,1,1,0,1,0,2,2,1,820.5,61011.828,93230.977,127977.64,0,1485.7793 -14235,17522,31708,31707,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.4493637,6.4785814,9,5,120.02433,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.7171545,6.492424,58.1,28.75,34.69,21.98,8.333333333333334,1,1,0,0,0,2,2,1,820.5,61011.828,93230.977,127977.64,0,1485.7793 -14236,17523,31709,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.0928535,9.1517296,0,0,0,-1045.231,0,1,1,2019,12,2,40,40,1,2,0,24.056843,24.056843,0,0,0,0,0,1,1,0,2.8923461,0,38.69,61.75,-9,-9,6.666666666666667,1,1,0,0,7,12,5,0,779,0,0,0,0,3009.0022 -14237,17524,31710,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,4,7.6488814,7.5744934,0,0,0,-997.22394,0,3,2,2019,14,2,39,39,1,2,0,6.429203,6.429203,0,0,0,0,0,1,1,0,0,0,41.4,52.53,-9,-9,1.666666666666667,1,1,0,0,9,4,3,0,2184,-31779.992,157207.63,210033.02,0,730.6156 -14237,17525,31711,-9,31710,-9,1,0,31,0,1,0,2,2,-9,0,3,7.2802463,6.8986592,0,0,0,-993.42023,0,2,-9,2019,20,8,24,30,1,8,1,5.4974732,5.4974732,0,0,0,0,0,1,1,0,0,0,25.31,57.31,-9,-9,5,1,1,0,0,5,4,3,0,733.5,124196.54,-26323.57,0,0,1357.1284 -14237,17525,31712,-9,31711,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-884.01184,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,733.5,124196.54,-26323.57,0,0,1357.1284 -14238,17526,31713,31715,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.2984343,8.8673105,0,6,-7,-23.784939,0,-9,-9,2019,2,0,39,38,1,0,0,15.451767,15.451767,0,0,0,0,0,1,1,0,1.370616,0,58.15,52.91,52,54.51,8.333333333333334,1,1,0,0,10,11,5,1,1049,680103,344036.97,268932.81,99573.633,4306.7642 -14238,17526,31714,-9,31713,31715,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-841.08807,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1049,680103,344036.97,268932.81,99573.633,4306.7642 -14238,17526,31715,31713,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.7199574,8.9200163,0,6,7,110.75163,0,2,2,2019,10,0,37,39,1,0,0,15.832298,15.832298,0,0,0,0,0,1,1,0,.73351002,0,52,54.51,58.15,52.91,5,1,1,0,0,10,11,5,1,1049,680103,344036.97,268932.81,99573.633,4306.7642 -14239,17527,31716,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.1985002,6.0547361,0,0,-914.89758,0,3,1,2019,14,2,0,0,4,2,0,0,0,0,0,17.480272,0,0,1,1,0,0,5.8894925,53.48,31.05,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,279,-13415.246,116617.88,0,0,1405.7472 -14240,17528,31717,-9,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.5385036,8.5883865,0,0,0,-992.27466,0,2,3,2019,19,8,50,45,1,8,0,13.50634,13.50634,0,0,0,0,0,1,1,0,.95579094,0,21.33,63.24,-9,-9,5,3,4,0,0,10,8,4,0,699,433445.31,0,80702.953,111391.08,2062.7756 -14240,17528,31718,-9,31717,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.953,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,0,699,433445.31,0,80702.953,111391.08,2062.7756 -14241,17529,31719,31720,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.8459272,8.7015247,0,19,1,-112.18079,0,2,1,2019,10,0,45,45,1,0,0,20.436256,20.436256,0,0,0,0,0,0,0,0,0,0,40.77,61.04,38.83,62.1,8.333333333333334,1,1,0,0,9,6,5,0,406,442727.56,104433.99,139757.47,84044.531,2545.8782 -14241,17529,31720,31719,-9,-9,1,0,38,0,0,0,1,1,-9,0,5,4.8413949,5.0661035,0,19,-1,-96.837624,0,1,1,2019,12,3,30,12,1,3,0,.56975973,.56975973,0,0,0,0,0,0,0,0,0,0,38.83,62.1,40.77,61.04,6.666666666666667,1,1,0,0,5,6,5,0,406,442727.56,104433.99,139757.47,84044.531,2545.8782 -14242,17530,31721,-9,31723,31724,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.60779,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 -14242,17530,31722,-9,31723,31724,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.18896,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 -14242,17530,31723,31724,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,9.6700687,9.8253326,0,8,-1,176.16116,0,2,1,2019,9,0,12,8,1,0,0,171.12839,171.12839,0,0,0,0,0,0,0,0,8.3503971,0,57.06,57.76,46.5,58.26,8.333333333333334,1,1,0,0,9,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 -14242,17530,31724,31723,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.8114595,9.7915535,0,8,1,37.530651,0,2,2,2019,11,0,35,30,1,0,0,54.758759,54.758759,0,0,0,0,0,0,0,0,3.4991801,0,46.5,58.26,57.06,57.76,8.333333333333334,1,1,0,0,9,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 -14242,17530,31725,-9,31723,31724,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-871.92438,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,806.20001,185215.91,63982.703,331969.91,334976.19,16938.99 -14243,17531,31726,31727,-9,-9,1,0,25,1,1,0,2,2,-9,0,1,0,0,0,4,1,28.162024,0,-9,-9,2019,7,0,0,16,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.17,36.37,22.48,66.73999999999999,8.333333333333334,1,1,0,0,3,4,4,0,848,508216.88,32491.947,262839.63,203993.89,2626.2048 -14243,17531,31727,31726,-9,-9,1,1,24,1,1,0,1,1,-9,0,4,8.3786898,8.802083,0,4,-1,-1.0751863,0,1,1,2019,22,9,55,51,1,9,0,9.2057047,9.2057047,0,0,0,0,0,1,1,0,0,0,22.48,66.73999999999999,45.17,36.37,6.666666666666667,1,1,0,0,10,4,4,0,848,508216.88,32491.947,262839.63,203993.89,2626.2048 -14243,17531,31728,-9,31726,31727,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.8621,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,4,0,848,508216.88,32491.947,262839.63,203993.89,2626.2048 -14244,17532,31729,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,3,8.9548845,9.0087662,0,0,0,-910.17554,0,3,3,2019,12,1,50,42,1,1,0,19.416845,19.416845,0,0,0,0,0,1,1,0,0,0,41,56.99,-9,-9,3.333333333333333,4,2,0,0,12,7,5,1,925,439560.31,0,240430.95,56680.281,3306.9182 -14245,17533,31730,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.4004507,7.8078365,6.2845125,0,0,-960.37018,0,-9,-9,2019,9,0,25,35,1,0,0,8.162344,8.162344,0,0,0,.55166012,0,1,1,0,6.2320771,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,0,305,187486.09,37090.188,0,0,1376.6584 -14245,17534,31731,-9,31730,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-847.97467,0,2,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,3.1100788,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,3,5,1,0,569,0,0,0,0,319.08167 -14246,17535,31732,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.8544879,8.0011883,0,0,0,-938.22272,0,1,2,2019,16,4,49,35,1,4,1,4.2555165,4.2555165,0,0,0,0,0,0,0,0,0,0,4.39,72.53,-9,-9,1.666666666666667,1,1,0,1,8,12,3,1,692,-269078.59,0,0,0,1003.0472 -14246,17536,31733,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,7.9908223,8.3372345,0,0,0,-1054.5308,0,1,2,2019,8,0,40,37,1,0,1,8.1137075,8.1137075,0,0,0,0,0,0,0,0,3.3771882,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,399,-348215.44,-24698.193,0,0,1526.6276 -14247,17537,31734,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,7.2492375,7.1749573,0,0,-1071.3641,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8253565,53.96,50.73,-9,-9,10,1,1,0,0,0,9,3,1,284,57726.727,68749.125,0,0,466.72266 -14247,17538,31735,31736,31734,-9,1,1,53,0,0,0,3,3,-9,0,4,8.6609468,8.4479027,0,5,0,52.944206,0,3,-9,2019,12,2,44,37,1,2,0,17.419981,17.419981,0,0,0,0,0,1,1,0,0,0,38.69,61.75,55.8,54.25,8.333333333333334,1,1,0,0,11,9,5,1,674,2946776.3,1936125.8,694056.5,0,4415.3906 -14247,17538,31736,31735,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.8477745,8.635046,0,5,0,-50.070587,0,-9,-9,2019,11,0,40,40,1,0,0,18.005142,18.005142,0,0,0,0,2,1,1,0,4.348794,0,55.8,54.25,38.69,61.75,6.666666666666667,1,1,0,0,11,9,5,1,674,2946776.3,1936125.8,694056.5,0,4415.3906 -14248,17539,31737,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1038.9681,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.55,29.48,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,1094,-145622.8,0,0,0,1922.2417 -14248,17540,31738,-9,31737,-9,1,1,23,0,0,0,2,2,-9,0,4,7.487792,7.2424917,0,0,0,-1015.6475,0,3,-9,2019,11,0,40,45,1,1,1,5.3063202,5.3063202,0,0,0,0,0,1,1,0,2.9495685,0,48,59,-9,-9,7,1,1,0,0,1,2,3,0,754,168494.08,0,0,0,1496.6842 -14248,17541,31739,-9,31737,-9,1,1,20,0,0,0,3,3,0,0,5,0,0,0,0,0,-996.30609,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,2,1,0,408,0,0,0,0,422.80563 -14248,17542,31740,-9,31737,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-918.7923,-9,3,-9,2019,11,1,0,0,2,1,1,0,0,0,0,0,0,2,1,1,0,0,0,57.51,42.37,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,207,0,0,0,0,20.040522 -14249,17543,31741,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-970.8205,0,2,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,21.65,38.02,-9,-9,0,1,1,1,1,0,9,1,0,498,442101.25,0,0,0,827.39972 -14250,17544,31742,31743,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.8786836,6.8136482,49,-16,66.348526,0,3,3,2019,25,9,0,0,4,9,0,0,0,0,0,0,0,71.5,1,1,0,3.6685162,6.8584213,22.01,53.49,49.16,46.14,8.333333333333334,1,1,0,0,0,4,3,1,281,746468.31,405592.41,316628.56,0,3109.9324 -14250,17544,31743,31742,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,7.4577599,7.2983003,51,16,81.512543,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,12.571842,0,0,1,1,0,0,7.3955045,49.16,46.14,22.01,53.49,8.333333333333334,1,1,0,0,0,4,3,1,281,746468.31,405592.41,316628.56,0,3109.9324 -14251,17545,31744,31745,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.9777517,7.8536525,0,27,1,-62.254696,0,3,2,2019,10,2,45,40,1,2,0,8.1349764,8.1349764,0,0,0,0,0,0,0,0,5.4969177,0,54.2,57.49,38.91,60.5,10,1,1,0,0,8,2,5,1,2000.5,2462636,2029716.3,495978.31,12244.03,4968.8467 -14251,17545,31745,31744,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2963104,9.3577766,0,26,-1,15.489666,0,2,2,2019,24,10,50,50,1,10,0,31.846849,31.846849,0,0,0,0,0,0,0,0,5.4963818,0,38.91,60.5,54.2,57.49,3.333333333333333,1,1,0,1,11,2,5,1,2000.5,2462636,2029716.3,495978.31,12244.03,4968.8467 -14252,17546,31746,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.2287369,8.1633825,0,0,0,-952.24445,0,-9,-9,2019,10,0,40,42,1,1,0,8.4542265,8.4542265,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,11,1,4,0,1070,-115945.48,10168.31,0,0,1364.6188 -14253,17547,31747,-9,31749,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.3004,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1293.3334,-172767.39,15025.103,113305.14,83283.75,1895.6232 -14253,17547,31748,-9,31749,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.7745,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,1293.3334,-172767.39,15025.103,113305.14,83283.75,1895.6232 -14253,17547,31749,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.8298483,7.820642,6.0037761,0,0,-1040.0284,-9,1,1,2019,12,2,37,0,1,2,0,7.6564813,7.6564813,0,0,0,0,0,1,1,0,6.1748257,0,40.87,44.58,-9,-9,5,1,1,0,0,10,6,3,0,1293.3334,-172767.39,15025.103,113305.14,83283.75,1895.6232 -14254,17548,31750,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.463995,8.6762486,0,6,-18,-26.585972,0,2,3,2019,18,7,47,0,1,7,0,11.665961,11.665961,0,0,0,0,0,0,0,0,4.4694982,0,32.6,54.09,59.53,56.44,5,2,3,0,0,12,10,5,1,979,157461.36,175507.75,0,0,2097.8347 -14254,17549,31751,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.8108082,9.6029549,0,6,18,187.5659,0,-9,-9,2019,2,0,60,50,1,0,0,41.594421,41.594421,0,0,0,0,0,0,0,0,6.6874337,0,59.53,56.44,32.6,54.09,8.333333333333334,1,1,0,0,9,10,5,1,594,354904.03,40049.324,0,0,7243.8403 -14255,17550,31752,31753,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,6,-3,0,0,2,2,2019,6,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,7.6366048,0,57.16,56.15,21.47,62.18,8.333333333333334,1,1,0,0,4,6,2,1,209,-7392.3516,0,0,0,-91.334251 -14255,17550,31753,31752,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,6,3,0,0,2,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,120,0,0,0,5.1729312,0,21.47,62.18,57.16,56.15,3.333333333333333,1,1,0,0,4,6,2,1,209,-7392.3516,0,0,0,-91.334251 -14256,17551,31754,-9,31756,31755,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.891,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,2171,515314.19,325490.88,175589.25,33859.461,1778.9275 -14256,17551,31755,-9,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.8217154,8.6696415,0,0,0,-1075.2095,0,3,2,2019,12,0,40,37,1,0,0,18.641939,18.641939,0,0,0,0,0,1,1,0,0,0,39.48,58.88,-9,-9,5,1,1,0,0,9,2,4,1,2171,515314.19,325490.88,175589.25,33859.461,1778.9275 -14256,17552,31756,-9,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,8.5518656,8.8267126,6.338973,0,0,-1102.8696,0,-9,-9,2019,8,0,45,50,1,0,0,11.462376,11.462376,0,0,0,0,0,1,1,0,7.0429401,0,57.33,53.46,-9,-9,10,1,1,0,0,10,2,4,1,339,90676.891,-9291.627,113512.29,98752.766,2029.4397 -14257,17553,31757,31758,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,9,-5,-94.141045,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.71,29.71,36.82,57.59,8.333333333333334,1,1,0,0,0,13,3,0,1298.5,392552.75,282941.94,135010.31,20201.85,1344.2567 -14257,17553,31758,31757,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.9364161,7.7367969,0,9,5,70.608299,0,3,3,2019,5,0,45,0,1,0,0,6.1955256,6.1955256,0,0,0,0,0,1,1,0,0,0,36.82,57.59,47.71,29.71,8.333333333333334,1,1,0,0,0,13,3,0,1298.5,392552.75,282941.94,135010.31,20201.85,1344.2567 -14257,17554,31759,-9,31757,31758,1,0,23,0,0,0,3,3,-9,0,4,7.602633,7.404757,0,0,0,-973.01166,0,3,3,2019,6,0,38,38,1,0,1,6.5510373,6.5510373,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,476,-58169.582,0,0,0,961.36346 -14257,17555,31760,-9,31757,31758,1,1,19,0,0,0,3,3,1,0,4,7.2657814,7.288507,0,0,0,-1071.3798,-9,3,3,2019,4,0,39,0,1,0,1,4.6256876,4.6256876,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,35,-217921.78,0,0,0,521.95392 -14257,17556,31761,-9,31757,31758,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.8085,-9,3,3,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,13,1,0,208,0,0,0,0,550.58136 -14258,17557,31762,-9,31763,31764,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.218,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,294.33334,163313.88,222622.92,168631.38,50496.652,3348.9365 -14258,17557,31763,31764,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.9531794,8.0687609,0,6,-4,-115.76241,0,1,2,2019,13,2,43,43,1,2,0,8.7846956,8.7846956,0,0,0,0,0,1,1,0,0,0,38.86,59.06,57.33,53.46,6.666666666666667,1,1,0,0,7,4,4,1,294.33334,163313.88,222622.92,168631.38,50496.652,3348.9365 -14258,17557,31764,31763,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.7179098,8.9419575,0,6,4,-55.142586,0,2,1,2019,6,0,42,42,1,0,0,13.77618,13.77618,0,0,0,0,0,1,1,0,0,0,57.33,53.46,38.86,59.06,8.333333333333334,1,1,0,0,7,4,4,1,294.33334,163313.88,222622.92,168631.38,50496.652,3348.9365 -14259,17558,31765,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.4435644,8.4274387,0,0,0,-994.29169,0,2,2,2019,25,11,48,42,1,11,0,11.085791,11.085791,0,0,0,0,0,1,1,0,0,0,27.53,64.69,-9,-9,0,1,1,0,0,8,7,4,1,663,-53638.375,0,0,0,1353.7185 -14260,17559,31766,31768,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.569376,8.6371193,0,7,-12,-30.835672,0,2,2,2019,10,0,40,40,1,0,0,16.653154,16.653154,0,0,0,0,0,1,1,0,0,0,43.65,58.28,35.96,51.14,8.333333333333334,1,1,0,0,7,11,4,1,684.66669,97855.602,23100.592,121572.41,54284.965,2893.158 -14260,17559,31767,-9,31768,31766,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-884.82983,-9,3,2,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,45.42,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,684.66669,97855.602,23100.592,121572.41,54284.965,2893.158 -14260,17559,31768,31766,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.4588332,6.6275396,0,7,12,6.9422398,0,2,2,2019,16,4,15,15,1,4,0,4.3179841,4.3179841,0,0,0,0,0,1,1,0,0,0,35.96,51.14,43.65,58.28,8.333333333333334,1,1,0,0,5,11,4,1,684.66669,97855.602,23100.592,121572.41,54284.965,2893.158 -14261,17560,31769,31770,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.8527703,7.8949461,0,1,11,90.109314,-9,-9,-9,2019,10,0,40,0,1,1,0,6.9505777,6.9505777,0,0,0,0,0,0,0,0,3.402061,0,51,49,51.88,56.64,7,1,1,0,0,1,4,4,1,476,171298.06,233731.06,147911.88,0,2409.978 -14261,17560,31770,31769,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.1032391,8.0340672,0,1,-11,8.0278273,0,2,2,2019,6,0,38,38,1,0,0,12.709947,12.709947,0,0,0,0,0,0,0,0,4.296989,0,51.88,56.64,51,49,10,1,1,0,0,9,4,4,1,476,171298.06,233731.06,147911.88,0,2409.978 -14262,17561,31771,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.0568342,6.3279428,0,0,-906.22205,0,-9,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,5.8510957,38.9,45.4,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,906,759760.06,99420.93,240012.09,0,1841.059 -14262,17562,31772,-9,31771,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8910203,7.7162147,0,0,0,-1057.147,0,3,-9,2019,7,0,40,47,1,0,0,6.1772652,6.1772652,0,0,0,0,0,1,1,0,2.7628131,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,6,3,1,418,552547.13,473458.53,48937.035,51512.555,1302.5552 -14263,17563,31773,31774,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,58,1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,77.629997,0,0,1,1,0,0,0,16.04,23.99,61.58,37.81,0,1,1,0,0,0,6,1,1,1318,244658.97,0,0,0,2864.1746 -14263,17563,31774,31773,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,58,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,61.58,37.81,16.04,23.99,3.333333333333333,1,1,0,0,0,6,1,1,1318,244658.97,0,0,0,2864.1746 -14264,17564,31775,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.5401373,8.8176765,0,0,0,-1066.7238,0,-9,-9,2019,8,0,51,65,1,0,0,12.461707,12.461707,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,12,5,0,237,22331.313,473698.06,209687.14,33372.637,1282.8605 -14265,17565,31776,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,6.4238567,6.3147659,0,0,-985.92328,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.4954882,6.2685623,42.28,16.13,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,923,-264486.03,193429.39,0,0,1052.979 -14266,17566,31777,31779,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.6816778,8.5107555,0,16,2,-24.7589,0,2,2,2019,7,0,37,42,1,0,0,16.993118,16.993118,0,0,0,0,0,1,1,0,0,0,46.16,58.62,31.06,65.34,8.333333333333334,1,1,0,0,13,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 -14266,17566,31778,-9,31779,31777,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.3938,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 -14266,17566,31779,31777,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.9209604,8.4195232,0,16,-2,61.57436,0,2,1,2019,15,4,52,48,1,4,0,14.16946,14.16946,0,0,0,0,0,1,1,0,0,0,31.06,65.34,46.16,58.62,8.333333333333334,1,1,0,0,11,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 -14266,17566,31780,-9,31779,31777,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.5733,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,5,1,475.25,-37494.828,6589.8281,238798.02,140515.58,3904.187 -14267,17567,31781,31782,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.294302,7.9908791,0,9,6,-41.555447,0,3,2,2019,9,1,38,54,1,1,0,12.354303,12.354303,0,0,0,0,0,1,1,0,0,0,51.98,54.53,39.48,21.25,6.666666666666667,2,3,0,0,2,8,4,0,1732,734261.63,22007.688,351445.69,0,1669.4758 -14267,17567,31782,31781,-9,-9,1,0,42,0,0,0,3,3,-9,1,2,0,0,0,25,-6,20.20224,0,3,3,2019,28,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,39.48,21.25,51.98,54.53,3.333333333333333,2,3,1,1,0,8,4,0,1732,734261.63,22007.688,351445.69,0,1669.4758 -14268,17568,31783,31784,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.1696291,7.9965749,0,2,1,58.785053,0,2,2,2019,7,0,40,41,1,0,0,9.8273363,9.8273363,0,0,0,0,0,0,0,0,2.9570363,0,52.19,51.55,42.86,53.58,8.333333333333334,1,1,0,0,3,7,4,0,900,210548.72,0,541370.44,181160.48,2821.3689 -14268,17568,31784,31783,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.2500038,8.1666889,0,2,-1,-19.119932,0,-9,-9,2019,9,0,77,35,1,0,0,4.0696044,4.0696044,0,0,0,0,0,0,0,0,2.0148721,0,42.86,53.58,52.19,51.55,0,1,1,0,0,1,7,4,0,900,210548.72,0,541370.44,181160.48,2821.3689 -14269,17569,31785,31786,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.4519081,6.3988919,39,-1,-41.176544,0,3,3,2019,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0546751,53.54,49.68,57.33,53.46,6.666666666666667,1,1,0,0,9,2,4,1,453.5,1402365.5,1237692.6,493923,0,2799.0332 -14269,17569,31786,31785,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8375225,8.4219456,0,39,1,-135.31551,0,3,3,2019,7,0,43,42,1,0,0,16.236099,16.236099,0,0,0,0,0,0,0,0,7.3392196,0,57.33,53.46,53.54,49.68,8.333333333333334,1,1,0,0,8,2,4,1,453.5,1402365.5,1237692.6,493923,0,2799.0332 -14270,17570,31787,31788,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5668335,9.0325422,7.7443876,10,2,-63.720451,0,3,2,2019,9,0,35,35,1,0,0,12.764849,12.764849,0,0,0,0,0,1,1,0,7.9070582,7.9845972,59.05,40.24,59.43,58.05,1.666666666666667,1,1,0,0,12,13,5,1,433,193443.81,91142.914,190613.47,80952.211,3559.9048 -14270,17570,31788,31787,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.2216535,7.4062781,0,10,-2,81.491257,0,3,3,2019,8,0,30,30,1,0,0,7.7435222,7.7435222,0,0,0,0,0,1,1,0,.85198951,0,59.43,58.05,59.05,40.24,8.333333333333334,1,1,0,0,12,13,5,1,433,193443.81,91142.914,190613.47,80952.211,3559.9048 -14271,17571,31789,31790,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.4181595,8.491148,0,14,-6,-72.318657,0,2,2,2019,11,0,50,42,1,0,0,11.960047,11.960047,0,0,0,0,0,1,1,0,0,0,54.74,57.22,43.96,55.64,5,1,1,0,0,10,7,4,1,1193,35980.32,37651.59,0,0,3311.5076 -14271,17571,31790,31789,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9492903,8.3441029,0,14,6,3.1335232,0,3,3,2019,19,7,38,38,1,7,0,8.6214638,8.6214638,0,0,0,0,0,1,1,0,0,0,43.96,55.64,54.74,57.22,6.666666666666667,3,4,0,0,12,7,4,1,1193,35980.32,37651.59,0,0,3311.5076 -14271,17571,31791,-9,31790,31789,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-867.58917,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,1,1193,35980.32,37651.59,0,0,3311.5076 -14272,17572,31792,31793,-9,-9,1,1,45,0,1,0,2,2,-9,0,1,8.2089224,8.3567028,0,8,0,-18.176262,0,2,2,2019,13,2,38,36,1,2,0,12.769686,12.769686,0,0,0,0,0,1,1,0,0,0,44.35,29.98,16.12,33.44,6.666666666666667,1,1,0,0,11,13,3,1,1036.5,796850.88,363036.53,275686.34,13031.719,2174.675 -14272,17572,31793,31792,-9,-9,1,0,45,0,1,0,3,3,-9,0,2,6.6677642,7.1414447,0,8,0,100.85847,0,2,2,2019,35,12,16,16,1,12,0,6.2344732,6.2344732,0,0,0,0,0,1,1,0,0,0,16.12,33.44,44.35,29.98,0,1,1,0,0,11,13,3,1,1036.5,796850.88,363036.53,275686.34,13031.719,2174.675 -14272,17573,31794,-9,31793,31792,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-839.76379,-9,3,2,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.66,57.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,604,-228703.19,0,0,0,0 -14273,17574,31795,31796,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.7513328,7.9029427,0,7,-3,-151.5629,0,2,2,2019,14,2,25,25,1,2,0,9.7804661,9.7804661,0,0,0,0,0,1,1,0,0,0,51.02,52.22,43.16,45.21,6.666666666666667,1,1,0,0,8,9,4,1,651.33331,1448572,893851.25,497156.72,40854.328,3219.2532 -14273,17574,31796,31795,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.5699654,8.5368938,0,7,3,99.071747,0,2,3,2019,16,4,43,41,1,4,0,15.055291,15.055291,0,0,0,0,0,1,1,0,3.3561223,0,43.16,45.21,51.02,52.22,8.333333333333334,1,1,0,0,8,9,4,1,651.33331,1448572,893851.25,497156.72,40854.328,3219.2532 -14273,17574,31797,-9,31795,31796,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-942.40881,-9,2,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,.43515456,0,25.92,66.48999999999999,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,651.33331,1448572,893851.25,497156.72,40854.328,3219.2532 -14274,17575,31798,-9,31800,31799,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.5143,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1242.6666,290655.5,202126.36,0,0,4659.3428 -14274,17575,31799,31800,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,9.2707911,8.9869957,0,6,7,-148.72498,0,-9,-9,2019,11,0,58,54,1,0,0,14.593988,14.593988,0,0,0,0,0,1,1,0,0,0,45.91,59.89,35.9,59.13,6.666666666666667,1,1,0,0,7,6,5,1,1242.6666,290655.5,202126.36,0,0,4659.3428 -14274,17575,31800,31799,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.6367321,8.4073048,0,6,-7,101.3269,0,3,2,2019,20,8,29,30,1,8,0,23.232407,23.232407,0,0,0,0,0,1,1,0,0,0,35.9,59.13,45.91,59.89,3.333333333333333,1,1,0,0,7,6,5,1,1242.6666,290655.5,202126.36,0,0,4659.3428 -14275,17576,31801,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4802446,8.3862734,0,0,0,-1050.7791,0,3,3,2019,9,0,38,46,1,0,0,15.377467,15.377467,0,0,0,0,0,0,0,0,7.60111,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,10,8,5,0,238,310379.38,164010.2,0,0,3066.2742 -14276,17577,31802,-9,31804,31805,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.41449,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 -14276,17577,31803,-9,31804,31805,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1022.1511,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 -14276,17577,31804,31805,-9,-9,1,0,34,0,3,0,3,3,-9,0,5,0,0,0,8,0,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,58.47,50.22,10,1,1,1,1,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 -14276,17577,31805,31804,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,0,0,0,8,0,0,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,57.06,57.76,5,1,1,1,1,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 -14276,17577,31806,-9,31804,31805,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1140.5134,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,669.20001,-5665.8154,0,0,0,1644.152 -14277,17578,31807,31808,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.9204931,6.1051688,9,-4,.59708977,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.80931121,5.9896455,54.38,46.77,58.07,46.29,8.333333333333334,1,1,0,0,0,9,3,1,981.5,1493431,428767.44,688967.63,0,2484.8784 -14277,17578,31808,31807,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.3358092,7.5800838,9,4,106.21832,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4800897,7.8045321,58.07,46.29,54.38,46.77,10,1,1,0,0,4,9,3,1,981.5,1493431,428767.44,688967.63,0,2484.8784 -14277,17579,31809,-9,31807,31808,1,1,37,0,0,0,2,2,-9,0,3,8.2485905,8.0171156,0,0,0,-988.89056,0,2,2,2019,7,0,44,40,1,0,0,7.9778614,7.9778614,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,1,10,9,4,1,147,105343.83,-37404.043,0,0,1159.8036 -14278,17580,31810,31811,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.028842,9.0999012,0,7,2,3.0493336,0,3,3,2019,11,0,44,45,1,0,0,20.149319,20.149319,0,0,0,0,0,1,1,0,2.7093358,0,38.51,59.43,51.64,50.48,8.333333333333334,1,1,0,0,8,6,5,1,732,341378.03,222750.7,102177.97,33256.48,3102.7029 -14278,17580,31811,31810,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.9397125,7.0474081,0,7,-2,68.234703,0,3,3,2019,12,0,15,15,1,0,0,7.0433989,7.0433989,0,0,0,0,7,1,1,0,0,0,51.64,50.48,38.51,59.43,8.333333333333334,1,1,0,0,8,6,5,1,732,341378.03,222750.7,102177.97,33256.48,3102.7029 -14278,17580,31812,-9,31811,31810,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1045.813,-9,2,2,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,732,341378.03,222750.7,102177.97,33256.48,3102.7029 -14278,17581,31813,-9,31811,31810,1,0,20,0,0,0,2,2,0,0,4,0,5.3172493,5.6134048,0,0,-970.75714,-9,2,2,2019,13,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.0686607,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,942,189317.41,0,0,0,291.93384 -14279,17582,31814,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,4.0186906,3.7107835,0,0,-927.84985,0,3,2,2019,13,1,0,0,4,1,0,0,0,1,0,9.43536,0,0,1,1,0,4.0238237,3.6909244,45.49,50.81,-9,-9,5,1,1,0,0,0,11,2,1,659,192672.11,124147.37,132899.16,0,1620.4614 -14280,17583,31815,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1118.4438,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.36,34.01,-9,-9,5,1,1,0,0,0,13,1,0,291,344597.88,0,0,0,582.77692 -14280,17584,31816,-9,31815,-9,1,1,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-933.18225,0,3,-9,2019,14,2,0,7,3,2,1,0,0,0,0,0,0,42,1,0,1,0,0,40.54,53.95,-9,-9,0,1,1,0,0,2,13,1,0,208,-22839.652,0,0,0,387.33511 -14280,17585,31817,-9,31815,-9,1,1,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-970.83655,0,3,-9,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,49.28,52.09,-9,-9,5,1,1,1,0,0,13,1,0,297,-28759.516,0,0,0,516.3454 -14281,17586,31818,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,3.7701757,3.5837843,0,0,-1025.7413,-9,-9,-9,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,2.9839873,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,72,-71781.055,0,0,0,234.30377 -14282,17587,31819,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,8.2444601,8.0807257,5.4487109,0,0,-1026.105,0,3,2,2019,24,12,30,30,1,12,0,13.822292,13.822292,0,0,0,0,0,0,0,0,8.9025259,5.4037657,44.5,34.18,-9,-9,3.333333333333333,1,1,0,0,7,4,4,0,300,508675.5,323117.56,125589.05,0,3044.7073 -14283,17588,31820,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.027184,7.4135509,0,0,-951.22467,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.806005,7.4017878,42.84,30.41,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,1151,378416.28,152302.02,0,0,851.80841 -14284,17589,31821,31822,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,0,0,0,9,-19,6.3262529,0,2,-9,2019,7,0,0,38,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.96,44.69,40.9,35.41,10,2,3,1,0,6,6,3,1,2001.3334,385494.25,323931.78,0,0,2487.1326 -14284,17589,31822,31821,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2980194,8.1054525,0,9,19,77.237343,0,2,1,2019,22,10,48,48,1,10,0,9.3678551,9.3678551,0,0,0,0,0,1,1,0,0,0,40.9,35.41,52.96,44.69,10,2,3,0,0,6,6,3,1,2001.3334,385494.25,323931.78,0,0,2487.1326 -14284,17589,31823,-9,31821,31822,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.58978,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,2001.3334,385494.25,323931.78,0,0,2487.1326 -14285,17590,31824,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5866756,8.070015,0,0,0,-957.61597,0,3,2,2019,3,0,37,37,1,0,0,14.48502,14.48502,0,0,0,0,0,0,0,0,0,0,39.69,62.39,-9,-9,10,3,4,0,0,8,6,5,0,1170,171013.11,234471.16,0,0,1648.0476 -14286,17591,31825,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.7737184,8.6510639,6.9429455,0,0,-1081.2405,0,1,1,2019,6,0,60,60,1,0,0,4.747015,4.747015,0,0,0,0,0,1,1,0,7.3645205,7.3453479,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,84,938719.31,590576.5,84928.109,0,2603.4927 -14287,17592,31826,31827,-9,-9,1,1,29,0,0,0,1,1,-9,0,2,8.8007336,8.7268295,0,2,-1,8.8563614,0,3,2,2019,9,0,45,40,1,0,0,14.575785,14.575785,0,0,0,0,2,1,1,0,7.3757381,0,58.15,31.81,52.34,43.6,3.333333333333333,2,3,0,0,6,6,5,1,1778,-198756.47,29301.109,102342.68,101828.95,4162.5205 -14287,17592,31827,31826,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4103613,8.3149567,0,2,1,39.547131,-9,2,3,2019,10,0,38,0,1,0,0,12.692791,12.692791,0,0,0,0,0,1,1,0,0,0,52.34,43.6,58.15,31.81,8.333333333333334,2,3,0,0,5,6,5,1,1778,-198756.47,29301.109,102342.68,101828.95,4162.5205 -14288,17593,31828,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.3444457,7.3363624,0,0,-989.59906,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8432012,8.1396284,56.26,41.57,-9,-9,10,1,1,0,0,0,10,3,1,311,267772.81,125907.27,332859.75,0,1953.2469 -14289,17594,31829,31830,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.0433111,7.0666366,0,1,0,-64.062302,0,-9,2,2019,8,1,26,10,1,1,0,5.2068043,5.2068043,0,0,0,0,0,1,1,0,0,0,48.87,58.55,49,58,6.666666666666667,1,1,0,1,4,10,3,1,510,-156247.53,-28739.525,0,0,2622.1333 -14289,17594,31830,31829,-9,-9,1,1,25,0,1,0,2,2,-9,0,4,7.9789176,7.7609921,0,1,0,-7.6513181,-9,-9,-9,2019,10,0,37,0,1,1,0,8.3052578,8.3052578,0,0,0,0,0,1,1,0,0,0,49,58,48.87,58.55,7,1,1,0,0,2,10,3,1,510,-156247.53,-28739.525,0,0,2622.1333 -14289,17594,31831,-9,31829,31830,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.57855,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,510,-156247.53,-28739.525,0,0,2622.1333 -14290,17595,31832,31833,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,5.2681623,5.0661411,6,1,-15.841291,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3357096,60.42,52.11,51.83,57.2,1.666666666666667,1,1,0,0,0,11,3,1,270.5,673624.25,533817.38,93756.563,0,2174.0747 -14290,17595,31833,31832,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.7961688,7.6246314,6,-1,89.475151,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1121483,51.83,57.2,60.42,52.11,8.333333333333334,1,1,0,0,0,11,3,1,270.5,673624.25,533817.38,93756.563,0,2174.0747 -14291,17596,31834,-9,31836,31835,1,1,28,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1089.5591,1,3,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,2.2005529,0,31.23,50.79,-9,-9,5,2,3,0,1,2,8,1,1,100,116509.8,0,0,0,-137.91736 -14291,17597,31835,31836,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.1726718,6.0061994,0,8,8,10.948493,0,-9,-9,2019,22,10,40,39,1,10,0,1.1869383,1.1869383,0,0,0,0,0,0,0,0,2.8708217,0,39.29,41.42,38.16,44.66,5,1,1,0,0,10,8,2,1,679.5,436331.94,219376.86,377524.81,0,534.98932 -14291,17597,31836,31835,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.6585364,6.6334,0,37,-8,51.035034,0,3,3,2019,12,0,10,10,1,0,0,9.2950363,9.2950363,0,0,0,0,0,0,0,0,2.8457139,0,38.16,44.66,39.29,41.42,5,1,1,0,0,10,8,2,1,679.5,436331.94,219376.86,377524.81,0,534.98932 -14292,17598,31837,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.8258,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.47,24.58,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,186,350787.16,0,0,0,1529.0455 -14293,17599,31838,31839,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,3,0,-3.1200974,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,4.2576566,0,0,1,1,0,4.3664155,0,53.78,29.64,60.3,46.58,5,1,1,0,0,0,7,2,1,769,235975.75,58740.035,26474.91,-10138.986,1266.489 -14293,17599,31839,31838,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.0538836,6.1899958,3,0,60.137653,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0031734,6.4412422,60.3,46.58,53.78,29.64,8.333333333333334,1,1,0,0,0,7,2,1,769,235975.75,58740.035,26474.91,-10138.986,1266.489 -14294,17600,31840,-9,31843,31841,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.49469,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 -14294,17600,31841,31843,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.0202827,7.8196034,0,7,1,39.560364,0,2,2,2019,7,0,39,39,1,0,0,11.80546,11.80546,0,0,0,0,0,1,1,0,0,0,52,54.51,52,54.51,1.666666666666667,1,1,0,0,6,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 -14294,17600,31842,-9,31843,31841,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7048,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 -14294,17600,31843,31841,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,7,-1,-46.971905,0,2,2,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52,54.51,52,54.51,5,1,1,0,0,3,9,3,0,313.5,-119051.91,-16814.586,47660.574,52686.555,1932.574 -14295,17601,31844,31845,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.6978378,8.5451126,0,28,-4,-154.98859,0,2,3,2019,7,0,42,55,1,0,0,16.703535,16.703535,0,0,0,0,7,1,1,0,0,0,57.16,56.15,58.25,22.01,8.333333333333334,1,1,0,0,9,7,4,1,149,1567164.3,1241692,383439,0,2022.1296 -14295,17601,31845,31844,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,6,4,32.652878,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,1.0249248,0,58.25,22.01,57.16,56.15,5,1,1,1,0,7,7,4,1,149,1567164.3,1241692,383439,0,2022.1296 -14295,17602,31846,-9,31844,31845,1,1,24,0,0,0,2,2,-9,0,4,7.5435333,7.5896635,0,0,0,-931.76038,0,2,2,2019,6,0,43,37,1,0,1,6.5351877,6.5351877,0,0,0,0,0,1,1,0,3.4416523,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,138,-223204.3,132289.98,0,0,375.5043 -14296,17603,31847,31848,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.3055739,7.509562,0,6,-8,33.270943,0,3,-9,2019,7,0,23,25,1,0,0,11.15044,11.15044,0,0,0,0,0,0,0,0,0,0,56.33,51.02,55.19,54.26,8.333333333333334,1,1,0,0,10,12,4,1,462.5,460567.81,213653.14,180696.47,0,2843.7783 -14296,17603,31848,31847,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0420837,8.3690958,7.0571003,6,8,61.004841,0,-9,-9,2019,9,0,37,41,1,0,0,11.010743,11.010743,0,0,0,0,0,0,0,0,0,6.644197,55.19,54.26,56.33,51.02,10,1,1,0,0,7,12,4,1,462.5,460567.81,213653.14,180696.47,0,2843.7783 -14297,17604,31849,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.3064423,8.6199694,0,0,0,-995.0592,0,-9,2,2019,15,4,38,41,1,4,0,13.107955,13.107955,0,0,0,0,0,0,0,0,0,0,37.49,47.95,-9,-9,5,1,1,0,0,13,4,4,1,1018,164496.33,137298.89,58123.449,0,2057.4038 -14298,17605,31850,-9,31851,31852,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.44946,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 -14298,17605,31851,31852,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.8554597,7.6372838,0,8,0,-185.44908,0,2,2,2019,23,11,22,20,1,11,0,11.450423,11.450423,0,0,0,0,0,1,1,0,0,0,41.23,59.35,52,55,8.333333333333334,1,1,0,0,9,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 -14298,17605,31852,31851,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4898653,9.8210964,0,8,0,-81.765999,0,1,1,2019,9,0,40,40,1,1,0,41.798267,41.798267,0,0,0,0,0,1,1,0,1.8825568,0,52,55,41.23,59.35,8,1,1,0,0,1,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 -14298,17605,31853,-9,31851,31852,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.7336,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1841.5,1872270.5,312235.56,1731609,344158.66,5433.7969 -14299,17606,31854,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.6566024,5.2827792,0,0,-926.76453,0,3,3,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.4458561,5.220746,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,1173,330081.84,0,0,0,770.88934 -14299,17607,31855,31856,31854,-9,1,1,47,0,0,0,3,3,-9,0,3,6.8713217,6.9671745,0,8,-11,25.573238,0,2,2,2019,8,0,30,30,1,0,0,3.8501899,3.8501899,0,0,0,0,0,1,1,0,0,0,54.96,53.17,45.64,51.8,8.333333333333334,1,1,0,0,9,6,2,1,541.5,-160446.5,0,0,0,725.84595 -14299,17607,31856,31855,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,8,11,-7.0071564,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,51.8,54.96,53.17,6.666666666666667,1,1,0,0,1,6,2,1,541.5,-160446.5,0,0,0,725.84595 -14300,17608,31857,31858,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,43,0,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.8154492,0,60.13,49.27,57.06,57.76,10,1,1,0,0,6,4,1,1,515,207655.5,87767.547,0,0,311.13702 -14300,17608,31858,31857,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,0,0,43,0,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.7436919,0,57.06,57.76,60.13,49.27,8.333333333333334,1,1,0,0,6,4,1,1,515,207655.5,87767.547,0,0,311.13702 -14301,17609,31859,31861,-9,-9,1,1,55,1,3,0,3,3,-9,0,4,0,0,0,3,15,45.100128,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,43.51,53.96,8,2,3,1,0,0,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 -14301,17609,31860,-9,31861,31859,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.94458,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 -14301,17609,31861,31859,-9,-9,1,0,40,1,3,0,2,2,-9,0,4,7.0641394,7.0706773,0,3,-15,-78.648094,0,2,1,2019,12,2,24,24,1,2,0,5.8770137,5.8770137,0,0,0,0,0,1,1,0,0,0,43.51,53.96,54,53,6.666666666666667,2,3,0,1,3,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 -14301,17609,31862,-9,31861,31859,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.7135,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,2,0,657.5,38383.852,0,325418,161171.88,3227.5142 -14302,17610,31863,31865,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.5208597,9.7694387,0,18,-4,-43.517578,0,2,1,2019,8,0,55,55,1,0,0,37.28281,37.28281,0,0,0,0,0,0,0,0,3.8471999,0,52.23,55.6,50.11,54.04,6.666666666666667,4,2,0,0,8,8,5,1,879,402055.28,0,0,0,8155.9512 -14302,17610,31864,-9,31865,31863,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.6213,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,5,1,879,402055.28,0,0,0,8155.9512 -14302,17610,31865,31863,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.7315235,8.6743612,0,16,4,116.36489,0,2,2,2019,11,2,31,26,1,2,0,22.668007,22.668007,0,0,0,0,0,0,0,0,0,0,50.11,54.04,52.23,55.6,8.333333333333334,1,1,0,0,8,8,5,1,879,402055.28,0,0,0,8155.9512 -14302,17610,31866,-9,31865,31863,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.1824,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,879,402055.28,0,0,0,8155.9512 -14303,17611,31867,31869,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,8.1324148,8.1429482,0,7,1,65.740685,0,2,2,2019,10,0,42,40,1,0,0,9.0467701,9.0467701,0,0,0,0,14.5,1,1,0,0,0,54.18,31.08,38.63,63.11,8.333333333333334,1,1,0,0,5,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 -14303,17611,31868,-9,31867,31869,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.671,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 -14303,17611,31869,31867,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.6218214,8.694891,0,7,-1,-10.351068,0,3,2,2019,12,0,43,39,1,0,0,16.372335,16.372335,0,0,0,0,0,1,1,0,0,0,38.63,63.11,54.18,31.08,6.666666666666667,1,1,0,0,9,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 -14303,17611,31870,-9,31867,31869,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.72467,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,497.25,-246199.31,21622.867,0,0,2875.6433 -14304,17612,31871,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1027.0853,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,19.31,56.58,-9,-9,1.666666666666667,1,1,0,1,0,9,1,0,704,171492.91,20407.678,0,0,1155.4554 -14305,17613,31872,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.2620497,7.2834582,0,0,0,-1135.4739,0,-9,-9,2019,7,2,36,40,1,2,0,3.8030038,3.8030038,0,0,0,0,0,0,0,0,3.0942106,0,50,57,-9,-9,10,1,1,0,0,12,6,3,1,483,167019.95,24147.164,0,0,680.7345 -14306,17614,31873,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.795661,8.6127262,0,0,0,-875.11768,0,1,2,2019,20,6,49,45,1,6,0,13.365375,13.365375,0,0,0,0,0,0,0,0,0,0,32.84,59.58,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1560,97189.383,0,237000.5,114656.83,2564.001 -14307,17615,31874,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-957.92407,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,73,514728.72,297801.53,0,0,0 -14308,17616,31875,31877,-9,-9,1,1,30,0,2,0,1,1,-9,0,3,8.7540646,8.5055647,0,13,-2,75.800919,0,2,2,2019,8,0,48,54,1,0,0,14.101975,14.101975,0,0,0,0,0,1,1,0,.82430059,0,64.55,36.47,51.24,58.84,6.666666666666667,1,1,0,0,8,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 -14308,17616,31876,-9,31877,31875,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9713,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 -14308,17616,31877,31875,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.2124643,7.2108498,0,12,2,45.612656,0,2,2,2019,10,0,20,18,1,0,0,7.0320187,7.0320187,0,0,0,0,0,1,1,0,0,0,51.24,58.84,64.55,36.47,8.333333333333334,1,1,0,0,1,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 -14308,17616,31878,-9,31877,31875,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.52789,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,698,-60161.895,113412.72,282357.91,214664.94,3370.4038 -14309,17617,31879,31882,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,8,-22,-69.054199,-9,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.9,51.55,46.39,60.99,8.333333333333334,4,2,0,1,0,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 -14309,17617,31880,-9,31879,31882,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.48065,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 -14309,17617,31881,-9,31879,31882,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1092.5243,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,55,-9,-9,6,4,2,-9,0,0,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 -14309,17617,31882,31879,-9,-9,1,1,63,0,2,0,2,2,-9,0,4,8.5533924,8.3590155,6.4743109,9,22,57.757477,-9,1,1,2019,8,0,37,0,1,0,0,13.222493,13.222493,0,0,0,0,7,1,0,1,0,6.7817373,46.39,60.99,51.9,51.55,3.333333333333333,2,3,0,1,8,8,3,0,373.75,752705.5,615618.88,256447,0,1928.3306 -14309,17618,31883,-9,31879,31882,1,1,23,0,2,0,2,2,-9,0,4,0,0,0,0,0,-951.33875,-9,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,4,2,1,0,0,8,1,0,829,0,0,0,0,0 -14310,17619,31884,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.05847,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,30.472454,0,0,1,1,0,0,0,38.8,23.14,-9,-9,5,1,1,0,1,0,7,1,0,640,0,0,0,0,1580.4463 -14310,17620,31885,-9,31884,-9,1,1,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-869.14398,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.82,39.78,-9,-9,5,1,1,1,1,0,7,1,0,561,463586.28,91269.391,363576.84,52603.281,1397.0155 -14310,17621,31886,-9,31884,-9,1,0,46,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1134.0065,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,42.5,51.45,-9,-9,5,1,1,1,1,1,7,1,0,4095,-88419.094,164056.88,0,0,196.06731 -14310,17622,31887,-9,31886,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1057.7864,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,7,1,0,311,0,0,0,0,1013.345 -14311,17623,31888,31889,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.3963737,7.6021061,0,3,3,-7.5130491,0,3,2,2019,12,0,28,28,1,0,0,9.3767891,9.3767891,0,0,0,0,7,0,0,0,2.6843107,0,48.13,54.98,30.58,38.97,6.666666666666667,1,1,0,0,8,12,5,1,705.5,656909.94,440836.53,270686.06,0,5216.9063 -14311,17623,31889,31888,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,9.9106302,10.013487,0,3,-3,-38.049259,-9,2,1,2019,12,0,47,0,1,0,0,44.417942,44.417942,0,0,0,0,0,0,0,0,0,0,30.58,38.97,48.13,54.98,8.333333333333334,1,1,0,0,8,12,5,1,705.5,656909.94,440836.53,270686.06,0,5216.9063 -14311,17624,31890,-9,31888,31889,1,1,21,0,0,0,1,1,1,0,2,7.8389349,8.1652012,0,0,0,-1048.5294,-9,2,2,2019,8,0,40,0,1,0,1,7.096529,7.096529,0,0,0,0,2,0,0,0,1.613243,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,204,-123511.01,0,0,0,1228.5178 -14312,17625,31891,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1008.8793,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.29,30.28,-9,-9,5,2,3,0,1,0,8,1,0,297,255933.39,0,0,0,1141.3503 -14312,17626,31892,-9,31891,-9,1,0,20,0,0,0,2,2,-9,0,4,7.2458849,7.1972671,0,0,0,-1023.944,-9,3,-9,2019,29,10,22,0,1,10,0,6.8195825,6.8195825,0,0,0,0,0,1,1,0,0,0,19.72,51.92,-9,-9,3.333333333333333,2,3,0,0,0,8,3,0,541,27490.318,0,0,0,738.1925 -14313,17627,31893,31894,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.1095791,8.0611448,47,1,-30.947227,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5876641,8.0163269,55.36,51.57,60.7,47.65,8.333333333333334,1,1,0,0,0,4,3,1,511,2135676.5,880799.5,307466.09,0,3342.249 -14313,17627,31894,31893,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,6.8035941,6.6952753,47,-1,-50.860027,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8223097,6.8800035,60.7,47.65,55.36,51.57,8.333333333333334,1,1,0,0,0,4,3,1,511,2135676.5,880799.5,307466.09,0,3342.249 -14314,17628,31895,31898,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.4884167,9.3767586,0,33,0,8.1728764,0,2,2,2019,11,0,20,25,1,0,0,59.404934,59.404934,0,0,0,0,0,0,0,0,4.1474299,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,10,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 -14314,17628,31896,-9,31898,31895,1,1,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1018.5107,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 -14314,17628,31897,-9,31898,31895,1,1,11,0,0,1,3,0,-9,0,5,0,0,0,0,0,-970.83466,-9,-9,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 -14314,17628,31898,31895,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,9.2842026,9.4944468,0,33,0,23.486593,0,2,2,2019,11,0,10,8,1,0,0,116.38189,116.38189,0,0,0,0,0,0,0,0,3.6472564,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,10,4,5,1,1255.25,1481086.5,561983.38,585897.5,0,8354.9199 -14315,17629,31899,31901,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.3565397,8.2214317,0,21,-1,-82.767921,0,3,2,2019,6,0,30,32,1,0,0,14.746787,14.746787,0,0,0,0,0,0,0,0,0,0,58.05,54.52,48.23,53.52,8.333333333333334,1,1,0,0,9,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 -14315,17629,31900,-9,31899,31901,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.60938,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 -14315,17629,31901,31899,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.3879738,9.112443,0,14,1,-63.10051,0,3,2,2019,12,1,49,60,1,1,0,17.940853,17.940853,0,0,0,0,2,0,0,0,0,0,48.23,53.52,58.05,54.52,1.666666666666667,1,1,0,0,5,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 -14315,17629,31902,-9,31899,31901,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1154.8553,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,1,5,1,1726.25,617535.44,258423.41,341912.72,0,4891.2856 -14316,17630,31903,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.6119857,6.4588041,0,0,0,-1175.2909,0,2,2,2019,9,1,15,20,1,1,0,5.9187026,5.9187026,0,0,0,0,0,1,1,0,7.1070189,0,59.7,37.69,-9,-9,6.666666666666667,1,1,0,0,10,8,2,1,901,1898539.9,222859.11,1589621,0,880.32123 -14317,17631,31904,31905,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.720561,8.7569714,0,28,0,-51.562519,0,2,1,2019,12,0,40,39,1,0,0,13.946877,13.946877,0,0,0,0,7,1,1,0,0,0,48.53,58.91,45.01,29.57,5,1,1,0,0,7,10,4,1,986,482601.69,207076.81,284869.75,9235.6943,2541.2144 -14317,17631,31905,31904,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,27,0,-4.4159613,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,29.57,48.53,58.91,3.333333333333333,1,1,0,0,0,10,4,1,986,482601.69,207076.81,284869.75,9235.6943,2541.2144 -14317,17632,31906,-9,31904,31905,1,1,24,0,0,0,2,2,-9,0,4,8.0007105,7.9392829,0,0,0,-994.98785,0,1,2,2019,7,1,51,41,1,1,1,5.8367081,5.8367081,0,0,0,0,0,1,1,0,0,0,63.48,51.85,-9,-9,10,1,1,0,0,7,10,3,1,961,7738.2373,0,0,0,1894.3638 -14317,17633,31907,-9,31904,31905,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.95233,1,1,2,2019,6,0,0,30,2,0,1,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,1104,0,0,0,0,-75.172485 -14318,17634,31908,31909,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.153121,8.5524588,0,4,5,-112.92722,0,2,2,2019,12,0,40,42,1,0,0,10.809622,10.809622,0,0,0,0,0,0,0,0,0,0,46.53,61.33,52,54.51,6.666666666666667,1,1,0,0,7,9,4,1,1312,64679.699,58273.238,218736.16,102136.27,2775.5127 -14318,17634,31909,31908,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.038125,7.9518805,0,4,-5,148.228,0,-9,-9,2019,6,0,47,38,1,0,0,6.3553286,6.3553286,0,0,0,0,0,0,0,0,0,0,52,54.51,46.53,61.33,6.666666666666667,1,1,0,0,8,9,4,1,1312,64679.699,58273.238,218736.16,102136.27,2775.5127 -14319,17635,31910,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1460848,7.9963188,0,0,0,-1078.8406,0,3,2,2019,10,1,12,34,1,1,0,28.292042,28.292042,0,0,0,0,14.5,0,0,0,.78034544,0,47.62,31.29,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,1688,340902.25,0,0,0,464.23788 -14320,17636,31911,31912,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,5.1048093,5.3964763,34,5,93.774605,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3602037,5.1584978,54.1,59.11,54.79,55.86,8.333333333333334,1,1,0,0,0,6,3,1,1182.5,1216732.5,941484.94,207273.19,0,2540.0747 -14320,17636,31912,31911,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.1328487,8.2148962,35,-5,-51.639122,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1158834,8.2893705,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,4,6,3,1,1182.5,1216732.5,941484.94,207273.19,0,2540.0747 -14321,17637,31913,31914,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,8.0255527,7.5669546,6.49581,10,1,-204.22577,0,3,3,2019,10,0,37,38,1,0,0,9.5220547,9.5220547,0,0,0,0,7,1,1,0,4.3601208,6.5181079,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,13,13,4,1,1027,1112546.6,728313,251650.81,3627.4592,2884.3489 -14321,17637,31914,31913,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,10,-1,-113.80492,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.0393496,0,54.2,57.49,54.1,59.11,0,1,1,0,0,0,13,4,1,1027,1112546.6,728313,251650.81,3627.4592,2884.3489 -14322,17638,31915,-9,-9,-9,1,0,42,1,2,0,3,3,-9,0,2,0,0,0,0,0,-1084.2838,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,53.51,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,509,-117098.55,0,0,0,1483.7935 -14322,17638,31916,-9,31915,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.35901,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,509,-117098.55,0,0,0,1483.7935 -14322,17638,31917,-9,31915,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.99445,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,1,0,509,-117098.55,0,0,0,1483.7935 -14322,17639,31918,-9,31915,-9,1,1,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-987.39246,-9,3,-9,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,473,-27701.648,0,0,0,0 -14323,17640,31919,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.4269309,6.606503,0,0,-948.12164,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2560053,6.6247969,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,450,372928.5,2613.9854,0,0,866.37848 -14324,17641,31920,31922,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.2187386,8.1638403,0,21,0,-11.282434,0,2,3,2019,9,0,38,40,1,0,0,11.882159,11.882159,0,0,0,0,0,1,1,0,0,0,45.75,53.15,55.36,51.57,6.666666666666667,1,1,0,0,11,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 -14324,17641,31921,-9,31920,31922,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.86603,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 -14324,17641,31922,31920,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.657546,8.7135439,0,21,0,-51.412796,0,2,2,2019,5,0,37,37,1,0,0,19.015825,19.015825,0,0,0,0,0,1,1,0,2.1122351,0,55.36,51.57,45.75,53.15,8.333333333333334,1,1,0,0,11,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 -14324,17641,31923,-9,31920,31922,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5068,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,993,409394.59,338995.09,123494.63,43917.633,4008.4946 -14325,17642,31924,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.9164066,9.2904024,8.3245029,0,0,-1079.4443,0,3,2,2019,11,0,38,39,1,0,0,20.579248,20.579248,0,0,0,0,0,0,0,0,9.0747347,8.8031521,35.05,62.72,-9,-9,1.666666666666667,4,5,0,0,6,8,5,1,818,529781.25,71299.789,531372,358963.13,4770.8418 -14326,17643,31925,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.9015732,8.9168787,0,0,0,-1064.1836,0,2,2,2019,6,0,39,46,1,0,0,25.374226,25.374226,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,11,9,5,0,1233,599971.69,592382.13,361557.56,80543.914,3089.8357 -14327,17644,31926,31929,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.3217068,9.2606602,0,15,2,59.983047,-9,2,2,2019,22,11,43,0,1,11,0,36.511112,36.511112,0,0,0,0,0,0,0,0,0,0,34.21,51.94,56.78,49.38,6.666666666666667,1,1,0,0,8,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 -14327,17644,31927,-9,31929,31926,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.3775,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 -14327,17644,31928,-9,31929,31926,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.51208,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 -14327,17644,31929,31926,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.9970999,8.7087383,0,6,-2,.64599752,-9,3,3,2019,3,0,35,0,1,0,0,24.546316,24.546316,0,0,0,0,0,0,0,0,.30122244,0,56.78,49.38,34.21,51.94,8.333333333333334,1,1,0,0,7,6,5,1,1015.5,966240.63,344053.16,599740.88,379282.56,6112.73 -14328,17645,31930,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,2,0,7.8716722,7.6377072,0,0,-942.47809,0,3,2,2019,13,4,0,0,4,4,0,0,0,1,2.0087993,7.2722206,26.206306,0,1,1,0,0,7.6745234,50.08,27.76,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1046,605371.19,61767.223,147829.77,0,1868.4335 -14329,17646,31931,31933,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,9.2271233,9.3189735,7.3762217,37,-1,-58.823723,0,2,2,2019,11,0,40,45,1,1,0,23.790453,23.790453,0,0,0,0,0,1,1,0,0,8.1552286,49,50,54.2,57.49,7,1,1,0,0,1,8,4,1,798,292282.75,353477.28,401852.53,408458.16,4912.9478 -14329,17646,31932,-9,31933,31931,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-973.39453,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,8,4,1,798,292282.75,353477.28,401852.53,408458.16,4912.9478 -14329,17646,31933,31931,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,37,1,39.264538,0,2,1,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49,50,8.333333333333334,1,1,0,1,0,8,4,1,798,292282.75,353477.28,401852.53,408458.16,4912.9478 -14329,17647,31934,-9,31933,31931,1,0,23,0,1,0,3,3,-9,0,4,7.9601684,7.7296319,0,0,0,-980.7038,0,2,2,2019,7,0,16,20,1,0,1,20.996758,20.996758,0,0,0,0,0,1,1,0,0,0,53.3,55.06,-9,-9,10,1,1,0,0,5,8,3,1,167,-181236.08,-75459.258,0,0,1988.0649 -14329,17648,31935,-9,31933,31931,1,1,20,0,1,1,3,0,0,0,4,0,0,0,0,0,-946.9306,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,4.1841173,0,47,60,-9,-9,7,1,1,0,0,0,8,1,1,1128,0,0,0,0,307.82504 -14329,17649,31936,-9,31933,31931,1,0,18,0,1,0,2,2,1,0,5,0,0,0,0,0,-1006.9766,-9,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,0,8,1,1,581,49722.156,0,0,0,0 -14329,17650,31937,-9,31933,31931,1,1,24,0,1,1,3,0,0,0,5,0,0,0,0,0,-973.6524,-9,2,2,2019,10,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,106,0,0,0,0,0 -14330,17651,31938,31939,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,2,1,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,30.13,39.33,7,4,1,0,0,0,12,1,0,1269.5,-34570.637,0,0,0,2675.3394 -14330,17651,31939,31938,-9,-9,1,1,32,0,0,0,3,3,-9,1,2,0,0,0,2,-1,0,0,2,2,2019,29,12,0,0,3,12,0,0,0,0,0,0,0,71.5,1,1,0,0,0,30.13,39.33,48,57,3.333333333333333,1,1,1,0,0,12,1,0,1269.5,-34570.637,0,0,0,2675.3394 -14331,17652,31940,-9,31942,31941,1,1,22,0,0,0,2,2,-9,0,5,7.5773816,7.3255596,0,0,0,-1116.1354,0,2,2,2019,10,0,37,40,1,0,1,5.2027259,5.2027259,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,2,9,3,1,1076,95442.141,139138.88,0,0,810.96246 -14331,17653,31941,31942,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4093351,8.101449,0,4,2,39.902229,0,-9,-9,2019,7,0,42,37,1,0,0,15.117781,15.117781,0,0,0,0,2,0,0,0,0,0,54.96,53.17,55.54,46.02,8.333333333333334,1,1,0,0,10,9,4,1,741.5,680816.38,236876.33,364615.81,0,2452.4045 -14331,17653,31942,31941,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.1419754,8.1839809,0,4,-2,-26.764101,0,2,2,2019,10,0,37,34,1,0,0,9.046814,9.046814,0,0,0,0,2,0,0,0,0,0,55.54,46.02,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,741.5,680816.38,236876.33,364615.81,0,2452.4045 -14332,17654,31943,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,7.8203053,7.8308067,0,0,0,-990.18304,0,3,3,2019,25,10,40,40,1,10,0,6.953825,6.953825,0,0,0,0,2,1,1,0,0,0,38.16,20.72,-9,-9,1.666666666666667,1,1,0,1,12,2,3,0,1155,-10315.711,91430.633,65686.273,0,1173.3368 -14333,17655,31944,-9,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,8.3660364,8.3599262,0,0,-922.4671,0,3,3,2019,19,6,0,0,4,6,0,0,0,0,0,0,0,14.5,1,1,0,5.2358546,8.4408112,40.88,38.46,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,500,989407.31,144801.8,281153.5,0,2544.8054 -14334,17656,31945,31947,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,9.8373156,9.7238207,0,7,1,4.7731767,-9,3,2,2019,22,7,50,0,1,7,0,39.246639,39.246639,0,0,0,0,0,0,0,0,4.0804801,0,25.02,64.34,36.79,62.55,3.333333333333333,1,1,0,0,9,11,5,1,547.33331,901494.5,744340,202737.59,79688.484,6932.2007 -14334,17656,31946,-9,31945,31947,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.1998,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,547.33331,901494.5,744340,202737.59,79688.484,6932.2007 -14334,17656,31947,31945,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.1178246,8.8002405,0,9,-1,82.0383,0,1,1,2019,12,1,37,43,1,1,0,21.506641,21.506641,0,0,0,0,0,0,0,0,0,0,36.79,62.55,25.02,64.34,8.333333333333334,1,1,0,0,9,11,5,1,547.33331,901494.5,744340,202737.59,79688.484,6932.2007 -14335,17657,31948,31949,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.2322016,9.5167627,0,13,4,-52.691078,0,2,1,2019,10,0,45,50,1,0,0,42.848072,42.848072,0,0,0,0,0,0,0,0,0,0,58.15,52.91,46.87,54.33,8.333333333333334,1,1,0,0,8,12,5,1,623.33331,1647573.5,997416.38,345161.09,0,4475.7134 -14335,17657,31949,31948,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,6.1225238,6.3349156,0,13,-4,13.570022,0,2,1,2019,9,1,10,20,1,1,0,4.9013405,4.9013405,0,0,0,0,0,0,0,0,0,0,46.87,54.33,58.15,52.91,8.333333333333334,1,1,0,0,7,12,5,1,623.33331,1647573.5,997416.38,345161.09,0,4475.7134 -14335,17657,31950,-9,31949,31948,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.87671,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,623.33331,1647573.5,997416.38,345161.09,0,4475.7134 -14336,17658,31951,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.9910841,8.0957489,0,0,0,-942.66852,0,-9,-9,2019,6,0,37,38,1,0,0,9.5542984,9.5542984,0,0,0,0,0,0,0,0,2.8466849,0,46.16,58.62,-9,-9,10,1,1,0,0,6,5,4,1,521,-220153.69,16916.656,0,0,1466.6807 -14337,17659,31952,-9,31953,31954,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.4366,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 -14337,17659,31953,31954,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,9.4337921,9.6205492,0,10,-2,171.81512,0,3,2,2019,11,0,35,30,1,0,0,37.813309,37.813309,0,0,0,0,0,1,1,0,0,0,53.23,47.51,59.29,49.68,8.333333333333334,1,1,0,0,10,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 -14337,17659,31954,31953,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.0788183,8.3261013,0,10,2,1.7145456,0,2,2,2019,12,0,45,43,1,0,0,11.434625,11.434625,0,0,0,0,0,1,1,0,8.1988659,0,59.29,49.68,53.23,47.51,8.333333333333334,1,1,0,0,11,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 -14337,17659,31955,-9,31953,31954,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7397,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,855.5,250648.52,-4036.655,258050.44,99425.586,7479.541 -14338,17660,31956,31957,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.9474688,8.3936586,54,3,-81.91024,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5362406,7.899292,56.5,48.33,55.48,47.38,8.333333333333334,1,1,0,0,4,9,4,1,484,1135132.1,581114.63,367931,0,3201.9731 -14338,17660,31957,31956,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.5649891,7.1293554,54,-3,101.14902,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.85785776,6.7429509,55.48,47.38,56.5,48.33,8.333333333333334,1,1,0,0,0,9,4,1,484,1135132.1,581114.63,367931,0,3201.9731 -14339,17661,31958,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,9.3858919,9.3012218,4.9944496,30,2,-34.243275,0,3,3,2019,8,0,35,40,1,0,0,43.556847,43.556847,0,0,0,0,0,1,1,0,5.7328739,4.8582988,54.9,54.53,59.29,49.68,8.333333333333334,1,1,0,0,9,9,5,1,800,1570588.3,502804.34,675395.31,0,6812.0693 -14339,17662,31959,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.9464703,7.8240218,30,-2,-11.204237,0,2,2,2019,7,0,0,5,4,0,0,0,0,0,0,0,0,5.48,1,1,0,8.2026663,7.4662399,59.29,49.68,54.9,54.53,8.333333333333334,1,1,0,0,8,9,5,1,414,938824.63,377063.06,491001.13,0,3434.2068 -14340,17663,31960,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.9606996,6.8015308,0,0,0,-1013.676,0,3,3,2019,11,0,35,37,1,2,1,2.9871061,2.9871061,0,0,0,0,27,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,5,8,2,0,1477,110558.66,0,0,0,454.39505 -14340,17664,31961,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,7.4408374,7.6626658,0,0,0,-995.45111,0,3,3,2019,10,0,37,37,1,1,1,6.1310511,6.1310511,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,1,8,3,0,924,439297.66,-59875.094,669533.94,511606,1235.1982 -14341,17665,31962,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.6929383,7.6167059,0,0,-898.13702,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.399508,7.5047288,64.97,37.52,-9,-9,10,1,1,0,0,0,12,3,1,418,632589.25,405213.63,111187.08,0,1825.8617 -14342,17666,31963,-9,-9,-9,1,0,102,0,0,0,3,3,-9,0,2,0,0,0,0,0,-980.78491,0,-9,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.6183865,0,51.97,27.61,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,447,412576.97,0,0,0,1657.9176 -14343,17667,31964,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.9284458,9.0252123,0,0,-965.19794,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5055847,8.7003317,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1925,2497897.5,1159785,356851.72,0,6024.604 -14344,17668,31965,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,4.4328279,4.4441538,0,0,-990.50079,0,2,-9,2019,15,4,0,0,4,4,0,0,0,1,0,6.5573597,0,0,1,1,0,2.4019835,4.909524,43,40.01,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,152,427830.47,160914.89,0,0,955.82153 -14344,17669,31966,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.0399818,7.2044659,0,0,-879.88928,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.9551353,52.77,44.6,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,384,504840.88,337317.72,162012.67,0,898.46649 -14345,17670,31967,31968,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.9576473,8.9415789,0,27,-1,-39.755344,0,3,3,2019,3,0,45,50,1,0,0,18.633213,18.633213,0,0,0,0,0,0,0,0,4.9488025,0,55.81,55.35,60.12,54.8,10,1,1,0,0,12,13,5,1,839.5,716966.19,447463.5,198481.63,81766.734,3405.0908 -14345,17670,31968,31967,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.4099126,7.2463689,0,10,1,65.684196,0,-9,-9,2019,5,1,21,22,1,1,0,8.9471197,8.9471197,0,0,0,0,0,0,0,0,3.252687,0,60.12,54.8,55.81,55.35,8.333333333333334,1,1,0,0,10,13,5,1,839.5,716966.19,447463.5,198481.63,81766.734,3405.0908 -14345,17671,31969,-9,31968,31967,1,1,23,0,0,0,2,2,-9,0,5,7.9839902,7.9696798,0,0,0,-1000.8184,0,1,1,2019,11,3,52,56,1,3,1,6.7547164,6.7547164,0,0,0,0,0,0,0,0,0,0,46.45,58.64,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,207,486156.28,-18536.484,0,0,925.79669 -14346,17672,31970,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.9748621,9.0255003,0,0,0,-1001.9655,0,-9,-9,2019,6,0,50,45,1,0,0,17.787003,17.787003,0,0,0,0,0,1,1,0,0,0,57.91,48.98,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,969,325123.69,-78651.281,0,0,2680.0884 -14346,17672,31971,-9,31970,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1136.2356,-9,2,-9,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,53.91,-9,-9,5,1,1,0,0,0,7,5,1,969,325123.69,-78651.281,0,0,2680.0884 -14347,17673,31972,31973,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,30,-6,-18.132841,0,-9,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7487073,0,59.45,33.75,54.79,55.86,8.333333333333334,1,1,0,0,0,1,2,1,473.5,442584.72,44414.578,259739.78,0,998.33032 -14347,17673,31973,31972,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.8522778,6.7650661,30,6,.45443523,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4858513,6.8402977,54.79,55.86,59.45,33.75,8.333333333333334,1,1,0,0,0,1,2,1,473.5,442584.72,44414.578,259739.78,0,998.33032 -14347,17674,31974,-9,31972,31973,1,0,23,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1014.7028,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,1,0,0,1,1,1,567,-225037.09,0,0,0,0 -14347,17675,31975,-9,31972,31973,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-996.08112,-9,2,2,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,58.83,-9,-9,10,1,1,0,0,0,1,1,1,113,-153216.06,0,0,0,357.21658 -14348,17676,31976,31977,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,6.4208565,6.1135798,0,6,-11,-140.82495,0,3,3,2019,15,3,24,11,1,3,0,3.1242201,3.1242201,0,0,0,0,7,0,0,0,5.9236484,0,43.1,36.84,56.98,43.29,5,1,1,0,0,2,6,3,1,548,217321.42,-19279.287,0,0,1739.8914 -14348,17676,31977,31976,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.2255039,7.9162354,0,6,11,45.096653,0,3,3,2019,9,0,60,60,1,0,0,5.6518993,5.6518993,0,0,0,0,7,0,0,0,.010271639,0,56.98,43.29,43.1,36.84,3.333333333333333,1,1,0,0,9,6,3,1,548,217321.42,-19279.287,0,0,1739.8914 -14349,17677,31978,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.1092434,9.2613382,0,0,0,-958.30084,-9,-9,-9,2019,15,3,40,0,1,3,0,25.737471,25.737471,0,0,0,0,0,0,0,0,0,0,43.04,62.95,-9,-9,6.666666666666667,1,1,0,0,5,2,5,1,613,-286430.06,116307.29,0,0,3628.7737 -14350,17678,31979,31980,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.328959,7.3324723,0,6,-2,19.285007,0,3,3,2019,12,0,23,23,1,0,0,9.0507288,9.0507288,0,0,0,0,7,0,0,0,0,0,57.16,56.15,53,54,8.333333333333334,1,1,0,0,7,13,4,1,600.5,1319267.8,910920.81,153784.67,0,2369.2859 -14350,17678,31980,31979,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5304022,8.6390028,0,6,2,-69.363541,-9,3,3,2019,9,0,25,0,1,1,0,17.441025,17.441025,0,0,0,0,0,0,0,0,0,0,53,54,57.16,56.15,8,1,1,0,0,1,13,4,1,600.5,1319267.8,910920.81,153784.67,0,2369.2859 -14351,17679,31981,31982,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,8.0721531,8.1684065,0,9,-5,86.525856,0,3,3,2019,10,0,68,38,1,0,0,6.4216466,6.4216466,0,0,0,0,0,0,0,0,0,0,53.22,31.26,50.17,40.52,10,1,1,0,0,11,6,5,0,320.5,206647.81,124066.83,195881.69,201699.56,2294.8652 -14351,17679,31982,31981,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.2622328,8.4571142,0,9,5,-117.80211,0,-9,-9,2019,12,0,60,35,1,0,0,7.2918019,7.2918019,0,0,0,0,0,0,0,0,0,0,50.17,40.52,53.22,31.26,6.666666666666667,1,1,0,0,12,6,5,0,320.5,206647.81,124066.83,195881.69,201699.56,2294.8652 -14352,17680,31983,-9,31984,31985,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-947.71088,-9,1,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,4,0,256.33334,52994.586,58673.211,0,0,3470.4431 -14352,17680,31984,31985,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.1547642,8.2415466,0,11,-2,237.65114,0,2,2,2019,16,4,42,40,1,4,0,12.868032,12.868032,0,0,0,0,2,1,1,0,6.3233151,0,41.78,52.4,38.89,52.49,8.333333333333334,1,1,0,0,12,6,4,0,256.33334,52994.586,58673.211,0,0,3470.4431 -14352,17680,31985,31984,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.4492006,8.6216583,0,11,2,87.088562,0,2,2,2019,15,3,40,40,1,3,0,13.44853,13.44853,0,0,0,0,0,1,1,0,3.9058967,0,38.89,52.49,41.78,52.4,8.333333333333334,1,1,0,0,12,6,4,0,256.33334,52994.586,58673.211,0,0,3470.4431 -14353,17681,31986,31987,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.6212988,8.6602077,4.3603072,27,4,102.32368,0,3,3,2019,7,0,52,50,1,0,0,15.030677,15.030677,0,0,0,0,0,0,0,0,4.9782405,4.477562,60.89,44.94,63.65,49.16,6.666666666666667,1,1,0,0,12,9,5,1,443.5,2538267,1582349.6,621878,0,3360.5759 -14353,17681,31987,31986,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.2641191,7.7824636,6.1413951,9,-4,79.925789,0,-9,-9,2019,7,0,20,25,1,0,0,11.455021,11.455021,0,0,0,0,0,0,0,0,2.2994151,6.5414214,63.65,49.16,60.89,44.94,6.666666666666667,1,1,0,0,12,9,5,1,443.5,2538267,1582349.6,621878,0,3360.5759 -14354,17682,31988,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,7.7199068,7.6529288,0,0,0,-959.48273,0,1,-9,2019,31,12,34,38,1,12,0,9.8905897,9.8905897,0,0,0,0,0,1,1,0,0,0,23.16,42.54,-9,-9,1.666666666666667,1,1,0,1,1,11,3,0,547,-124668.79,0,60489.977,73737.75,620.24725 -14355,17683,31989,-9,-9,-9,1,0,35,0,1,0,3,3,-9,1,2,0,5.982636,6.066484,0,0,-1042.1688,0,-9,-9,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,5.9189706,0,34.06,38.71,-9,-9,3.333333333333333,1,1,0,0,2,4,2,0,902,-23654.998,-49166.289,0,0,2136.1533 -14355,17683,31990,-9,31989,-9,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-826.80762,-9,3,-9,2019,16,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,2,0,902,-23654.998,-49166.289,0,0,2136.1533 -14356,17684,31991,31992,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,4.5368934,6.2786021,6.20927,22,4,26.031233,0,3,3,2019,10,0,24,32,1,0,0,.44055039,.44055039,0,0,0,0,2,1,1,0,8.771184,6.2915931,43.42,62.33,49.06,58.64,8.333333333333334,1,1,0,0,10,9,5,1,856.5,1476036.8,1071824,415224.31,-4367.0996,6850.8872 -14356,17684,31992,31991,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.1301756,9.1881075,0,22,-4,113.74742,0,1,1,2019,17,5,38,40,1,5,0,24.615364,24.615364,0,0,0,0,7,1,1,0,8.549592,0,49.06,58.64,43.42,62.33,8.333333333333334,1,1,0,0,10,9,5,1,856.5,1476036.8,1071824,415224.31,-4367.0996,6850.8872 -14357,17685,31993,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.7404,0,3,3,2019,15,7,0,0,4,7,0,0,0,1,0,8.5820351,0,0,1,1,0,0,0,59.55,17.35,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,1667,15554.258,0,0,0,1425.4163 -14358,17686,31994,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1095.6649,0,-9,-9,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,31.38,30.45,-9,-9,8.333333333333334,3,4,1,0,7,8,1,0,296,-218857.16,219294,0,0,1852.8347 -14359,17687,31995,31996,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,47,-2,98.851532,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1774082,0,55.71,40.47,27.86,34.73,10,1,1,0,0,0,10,2,1,507,256549.23,43490.699,281092.88,0,2446.9507 -14359,17687,31996,31995,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.8119965,6.854866,47,2,65.817009,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,7.5472856,6.7726183,27.86,34.73,55.71,40.47,6.666666666666667,1,1,0,0,9,10,2,1,507,256549.23,43490.699,281092.88,0,2446.9507 -14360,17688,31997,31998,-9,-9,1,1,37,2,3,0,2,2,-9,0,4,7.7100763,7.9641476,0,3,4,-20.119658,0,-9,-9,2019,10,0,40,40,1,1,0,7.022882,7.022882,0,0,0,0,0,1,1,0,0,0,51,57,56.62,51.37,7,4,2,0,0,1,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 -14360,17688,31998,31997,-9,-9,1,0,33,2,3,0,1,1,-9,0,5,0,0,0,3,-4,-41.757351,0,2,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,2.6945205,0,56.62,51.37,51,57,10,4,2,0,0,1,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 -14360,17688,31999,-9,31998,31997,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.2469,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 -14360,17688,32000,-9,31998,31997,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.3907,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,5,2,0,389.75,295226.91,175645.63,0,0,1285.2539 -14361,17689,32001,32002,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.8612771,7.0280128,53,0,42.295189,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,16.409803,0,0,1,1,0,0,7.1690722,65.54000000000001,33.23,58.68,36.29,8.333333333333334,1,1,0,0,4,6,4,1,312.5,1067488,600331.13,341836.88,0,3537.4875 -14361,17689,32002,32001,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.4959669,8.0006714,53,0,57.472946,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2443333,58.68,36.29,65.54000000000001,33.23,10,1,1,0,0,0,6,4,1,312.5,1067488,600331.13,341836.88,0,3537.4875 -14362,17690,32003,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4748278,8.3999109,0,0,0,-926.40729,0,2,2,2019,8,0,60,60,1,0,0,8.2133026,8.2133026,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,693,-253769.52,-23677.666,133444.98,5630.9146,1727.7791 -14363,17691,32004,32005,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.0009561,6.1496105,11,-3,-146.67537,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5715899,6.026854,57.33,42.93,52,48,8.333333333333334,1,1,0,0,0,5,3,0,658.5,587439.25,64880.98,380841.56,0,3054.9351 -14363,17691,32005,32004,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.4638658,7.1416039,0,11,3,-135.54965,0,-9,-9,2019,10,0,80,80,1,1,0,3.3798392,3.3798392,0,0,0,0,0,1,1,0,7.2902508,0,52,48,57.33,42.93,7,1,1,0,0,1,5,3,0,658.5,587439.25,64880.98,380841.56,0,3054.9351 -14364,17692,32006,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.8281436,7.5238924,0,0,-940.90881,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6662788,51.65,44.35,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,3561,1322830.1,538204.63,326626.31,0,1732.6251 -14365,17693,32007,32008,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,8,13,0,0,3,2,2019,35,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,14.65,34.03,46.26,51.62,0,1,1,0,1,0,9,1,0,1204.5,85033.734,-30006.068,0,0,2035.9932 -14365,17693,32008,32007,-9,-9,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,8,-13,0,0,3,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,46.26,51.62,14.65,34.03,1.666666666666667,1,1,0,1,0,9,1,0,1204.5,85033.734,-30006.068,0,0,2035.9932 -14366,17694,32009,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.1031065,7.8052254,0,0,0,-1068.2544,0,2,2,2019,16,4,30,29,1,4,0,5.91785,5.91785,0,0,0,0,0,1,1,0,.73023653,0,46.16,58.62,-9,-9,3.333333333333333,1,1,0,0,9,6,3,1,2030,-105565.03,0,144498.36,0,906.83258 -14367,17695,32010,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-990.36646,-9,-9,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,.88662016,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,864,501518.75,0,0,0,-348.71204 -14368,17696,32011,32012,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.1210775,8.8798618,0,8,-2,-20.516024,0,-9,-9,2019,10,0,40,60,1,1,0,21.027573,21.027573,0,0,0,0,0,0,0,0,0,0,50,55,54.1,59.11,8,1,1,0,0,1,9,5,1,468.5,1238790.3,716179.75,345438.31,-10871.898,6623.1055 -14368,17696,32012,32011,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.4982529,9.7358341,0,16,2,35.990887,0,3,3,2019,9,0,65,60,1,0,0,32.426407,32.426407,0,0,0,0,0,0,0,0,4.0497642,0,54.1,59.11,50,55,10,1,1,0,0,8,9,5,1,468.5,1238790.3,716179.75,345438.31,-10871.898,6623.1055 -14369,17697,32013,32015,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6143389,8.154561,0,7,-1,-58.672134,0,-9,-9,2019,10,0,40,38,1,1,0,20.581623,20.581623,0,0,0,0,0,1,1,0,0,0,50,55,36.89,55.12,8,1,1,0,0,1,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 -14369,17697,32014,-9,32013,32015,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.44647,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 -14369,17697,32015,32013,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.4440336,8.3333035,0,7,1,8.1303444,0,3,3,2019,13,1,40,40,1,1,0,15.472692,15.472692,0,0,0,0,0,1,1,0,0,0,36.89,55.12,50,55,5,1,1,0,0,8,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 -14369,17697,32016,-9,32013,32015,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.84454,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,5,1,687,174412.64,164687.73,339653.94,107154.35,4886.8608 -14370,17698,32017,32018,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,5.2317877,4.872982,38,1,11.257075,0,-9,-9,2019,16,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.52703,5.2677927,37.9,19.37,58.56,46.45,6.666666666666667,1,1,0,0,0,2,2,1,330.5,330989,119473.2,205229.92,0,1796.8242 -14370,17698,32018,32017,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,4.446311,4.5836248,8,-1,-128.61162,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,4.6045427,4.4747567,58.56,46.45,37.9,19.37,6.666666666666667,1,1,0,0,0,2,2,1,330.5,330989,119473.2,205229.92,0,1796.8242 -14371,17699,32019,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.04533,7.2010059,0,0,0,-1014.589,0,-9,-9,2019,5,0,24,20,1,0,0,4.9995503,4.9995503,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,6,3,0,1111,61251.055,0,116865.36,20098.436,1348.1711 -14372,17700,32020,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.3571701,6.3071895,0,0,-931.14441,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.5781016,37.5,33.98,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,1286,570552.94,110633.6,345055.97,0,1194.1067 -14373,17701,32021,32022,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,60,8,99.96386,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,64,27.54,58.89,51.28,8.333333333333334,1,1,0,0,0,10,2,0,564.5,29043.172,-128930.23,184623.19,0,1361.8585 -14373,17701,32022,32021,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.3858371,6.1895728,60,-8,-42.651382,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,5.48,1,1,0,1.5110902,5.978775,58.89,51.28,64,27.54,8.333333333333334,1,1,0,0,0,10,2,0,564.5,29043.172,-128930.23,184623.19,0,1361.8585 -14374,17702,32023,32024,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.2475977,8.0976286,0,2,7,119.64112,0,2,2,2019,8,0,48,48,1,0,0,9.784359,9.784359,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.24,41.16,6.666666666666667,1,1,0,0,7,4,4,1,311.5,-87460.344,142720.59,181327.53,141734.39,2914.2627 -14374,17702,32024,32023,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8165708,8.0693398,0,2,-7,-48.34354,0,-9,-9,2019,10,3,38,38,1,3,0,9.5217276,9.5217276,0,0,0,0,0,0,0,0,0,0,57.24,41.16,51.24,58.84,8.333333333333334,1,1,0,0,3,4,4,1,311.5,-87460.344,142720.59,181327.53,141734.39,2914.2627 -14375,17703,32025,32026,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,17,-6,38.71553,0,1,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1412358,0,51.25,50.81,61.27,46.03,8.333333333333334,1,1,0,0,9,7,3,1,290,2139459.5,155549.78,905111.5,0,2537.2188 -14375,17703,32026,32025,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.390542,7.4431672,17,6,90.558548,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.4695601,61.27,46.03,51.25,50.81,8.333333333333334,1,1,0,0,8,7,3,1,290,2139459.5,155549.78,905111.5,0,2537.2188 -14376,17704,32027,32028,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.1444635,8.1816101,0,1,-4,-33.284618,-9,2,2,2019,24,7,39,0,1,7,0,11.025419,11.025419,0,0,0,0,0,1,1,0,0,0,32.08,58.42,45.91,59.89,5,1,1,0,0,8,4,4,1,1561.6666,-28975.236,18165.281,151672.38,46754.016,3554.8789 -14376,17704,32028,32027,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.5575829,8.3085222,0,1,4,36.751133,-9,-9,-9,2019,20,8,38,0,1,8,0,15.233449,15.233449,0,0,0,0,0,1,1,0,0,0,45.91,59.89,32.08,58.42,3.333333333333333,1,1,0,0,10,4,4,1,1561.6666,-28975.236,18165.281,151672.38,46754.016,3554.8789 -14376,17704,32029,-9,32027,32028,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1043.5067,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.37,60.58,-9,-9,5,1,1,0,0,0,4,4,1,1561.6666,-28975.236,18165.281,151672.38,46754.016,3554.8789 -14377,17705,32030,32031,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.6523104,7.2659707,0,12,6,-97.000816,0,3,3,2019,13,1,32,30,1,1,0,6.4658222,6.4658222,0,0,0,0,7,0,0,0,0,0,50.68,49.75,61.12,51.57,6.666666666666667,1,1,0,0,12,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 -14377,17705,32031,32030,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,9.421545,9.768445,0,10,-6,-132.88826,0,2,2,2019,6,0,122,82,1,0,0,12.31111,12.31111,0,0,0,0,0,0,0,0,0,0,61.12,51.57,50.68,49.75,8.333333333333334,1,1,0,0,12,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 -14377,17705,32032,-9,32030,32031,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-868.48914,-9,2,2,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,28.28,54.63,-9,-9,6.666666666666667,1,1,0,0,0,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 -14377,17705,32033,-9,32030,32031,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-995.14447,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,0,1504,600863.81,387759.59,362501.25,144861,4682.5234 -14378,17706,32034,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.6470494,8.1147556,0,0,0,-945.9632,0,3,3,2019,10,0,33,36,1,1,0,9.2948275,9.2948275,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,1,9,4,4,1,338,97163.508,-42964.688,222889.97,0,1846.7853 -14379,17707,32035,32036,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,46,-4,38.872345,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,41.69,25.64,7,1,1,0,0,0,9,3,1,381.5,1010923.5,308142.47,336841.31,0,2319.9104 -14379,17707,32036,32035,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.5982094,7.5210519,45,4,110.02859,0,3,2,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.1079245,7.6969128,41.69,25.64,50,47,3.333333333333333,1,1,0,0,0,9,3,1,381.5,1010923.5,308142.47,336841.31,0,2319.9104 -14380,17708,32037,32038,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.493979,6.2176189,9,1,48.051929,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7725711,6.4344468,57.16,56.15,41.17,59.31,8.333333333333334,1,1,0,0,5,11,2,1,773.5,273509.75,180467.44,139140.81,0,1693.9092 -14380,17708,32038,32037,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,9,-1,-82.703857,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,57.16,56.15,8.333333333333334,1,1,0,0,5,11,2,1,773.5,273509.75,180467.44,139140.81,0,1693.9092 -14381,17709,32039,32041,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.0977831,7.8017468,0,8,3,68.917557,0,-9,-9,2019,9,0,50,40,1,0,0,7.7438025,7.7438025,0,0,0,0,14.5,1,1,0,0,0,57.31,50.61,51.81,30.79,8.333333333333334,1,1,0,0,2,7,3,0,588,14261.26,39161.719,0,0,2700.8794 -14381,17709,32040,-9,32041,32039,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.3585,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,588,14261.26,39161.719,0,0,2700.8794 -14381,17709,32041,32039,-9,-9,1,0,35,0,2,0,2,2,-9,1,2,0,0,0,8,-3,-15.628261,0,-9,-9,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.81,30.79,57.31,50.61,8.333333333333334,1,1,0,0,0,7,3,0,588,14261.26,39161.719,0,0,2700.8794 -14381,17709,32042,-9,32041,32039,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.7859,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,588,14261.26,39161.719,0,0,2700.8794 -14382,17710,32043,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,9.0473986,8.8863802,0,0,0,-922.45361,0,2,2,2019,9,2,10,10,1,2,0,98.884186,98.884186,0,0,0,0,0,1,1,0,0,0,50.12,53.99,-9,-9,3.333333333333333,1,1,0,0,13,7,5,1,254,1924693,485547.84,1488522.9,0,3572.7537 -14383,17711,32044,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,2,0,0,0,0,0,-956.15723,-9,2,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.3301103,0,56.7,43.21,-9,-9,6.666666666666667,1,1,1,0,1,7,1,0,342,-1421.0386,0,0,0,890.18079 -14383,17712,32045,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,6.5504532,6.7466884,0,0,-994.22375,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,3.925051,6.893096,35.21,38.32,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,68,246384.2,170894.95,0,0,190.52219 -14383,17713,32046,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1139.1888,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,1,0,0,7,1,0,1121,-35295.801,0,0,0,564.90112 -14384,17714,32047,32048,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.0308881,7.2339878,0,9,12,24.339289,0,2,2,2019,11,0,10,0,1,0,0,13.38221,13.38221,0,0,0,0,0,0,0,0,0,0,46.26,52.9,52.51,54.26,10,1,1,0,0,7,11,4,1,611.5,16078.023,67152.141,0,0,1632.1501 -14384,17714,32048,32047,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1956539,8.2405005,0,9,-12,3.3187151,0,2,2,2019,9,0,50,40,1,0,0,8.5660172,8.5660172,0,0,0,0,0,0,0,0,0,0,52.51,54.26,46.26,52.9,8.333333333333334,1,1,0,0,9,11,4,1,611.5,16078.023,67152.141,0,0,1632.1501 -14384,17715,32049,-9,32047,32048,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-958.08447,-9,3,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,35.14,53.66,-9,-9,6.666666666666667,1,1,0,0,3,11,1,1,1747,79977.398,0,0,0,1641.953 -14385,17716,32050,32051,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.1635895,9.1700516,0,10,-2,-27.976563,0,-9,-9,2019,11,0,40,39,1,0,0,33.780617,33.780617,0,0,0,0,2,0,0,0,5.2307453,0,61.68,23.31,50.32,49.66,5,1,1,0,0,11,10,5,1,923,631953.75,192797.22,473296.47,243547.16,5378.5947 -14385,17716,32051,32050,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,7.7578225,8.3151159,10,2,-97.941292,0,2,2,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.6790743,8.0842094,50.32,49.66,61.68,23.31,8.333333333333334,1,1,0,0,5,10,5,1,923,631953.75,192797.22,473296.47,243547.16,5378.5947 -14386,17717,32052,32053,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,0,0,0,7,1,-21.119314,0,-9,-9,2019,10,0,0,40,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,37.37,48.96,7,1,1,0,0,0,2,2,1,952.5,395073.34,113957.91,158805.16,0,1854.5347 -14386,17717,32053,32052,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.0600376,5.6268644,37,-1,99.257729,0,-9,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4423151,6.0654078,37.37,48.96,52,48,8.333333333333334,1,1,0,0,0,2,2,1,952.5,395073.34,113957.91,158805.16,0,1854.5347 -14386,17718,32054,-9,32053,32052,1,1,28,0,0,0,2,2,-9,0,4,7.6284752,7.6845379,0,0,0,-971.9043,0,3,2,2019,10,0,38,40,1,1,1,7.593843,7.593843,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,1009,-535311.94,0,0,0,1168.5304 -14387,17719,32055,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,6.6274214,6.4814281,0,0,-993.21594,0,2,-9,2019,8,0,0,20,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4571629,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,1742,865342.06,255111.14,637951.56,0,1183.9591 -14388,17720,32056,32057,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.3618417,6.5785933,54,-3,38.654495,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,.36624825,6.35251,56.49,35.1,62.18,36.18,8.333333333333334,1,1,0,0,0,9,4,1,1110,969418.19,451524.03,332322.41,0,3170.3833 -14388,17720,32057,32056,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1877575,8.33113,54,3,9.0715027,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.7172241,8.0767517,62.18,36.18,56.49,35.1,6.666666666666667,1,1,0,0,4,9,4,1,1110,969418.19,451524.03,332322.41,0,3170.3833 -14388,17721,32058,-9,32056,32057,1,1,28,0,0,0,2,2,-9,0,4,7.5521555,7.6590638,0,0,0,-898.86633,0,2,1,2019,11,0,29,21,1,0,0,7.9354277,7.9354277,0,0,0,0,0,1,1,0,2.4557152,0,46.39,60.99,-9,-9,3.333333333333333,1,1,0,0,8,9,3,1,722,-80443.898,0,0,0,1612.0291 -14389,17722,32059,32060,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1762495,8.3034563,0,9,-5,-78.38942,0,2,2,2019,16,4,42,42,1,4,0,12.845058,12.845058,0,0,0,0,0,0,0,0,0,0,45.95,46.56,28.96,52.06,6.666666666666667,1,1,0,0,9,11,5,1,677.5,42342.023,108761.22,0,0,2986.5442 -14389,17722,32060,32059,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.4453011,8.2074766,0,9,5,28.06605,0,2,-9,2019,22,10,37,38,1,10,0,11.058377,11.058377,0,0,0,0,0,0,0,0,0,0,28.96,52.06,45.95,46.56,8.333333333333334,1,1,0,1,9,11,5,1,677.5,42342.023,108761.22,0,0,2986.5442 -14389,17723,32061,-9,32059,32060,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1124.2113,0,2,2,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,323,197470.19,0,0,0,0 -14390,17724,32062,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1107006,8.0028601,0,0,0,-979.37531,0,2,-9,2019,12,0,35,35,1,0,0,10.878655,10.878655,0,0,0,0,0,0,0,0,0,0,54.21,47.1,-9,-9,5,1,1,0,1,11,7,4,0,524,-151672.09,68332.195,0,0,1536.0819 -14391,17725,32063,32064,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.8983917,7.6637669,58,0,111.09377,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.5031881,8.0363159,62.49,55.09,62.26,35.24,10,1,1,0,0,0,10,3,1,1402.5,203675.44,0,140446.83,0,3470.6028 -14391,17725,32064,32063,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.5257187,6.0628443,58,0,-115.94664,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,0,3.4149921,0,2,1,1,0,0,6.3560333,62.26,35.24,62.49,55.09,10,1,1,0,0,0,10,3,1,1402.5,203675.44,0,140446.83,0,3470.6028 -14392,17726,32065,32068,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.5260563,8.4064283,0,10,0,18.943108,0,1,1,2019,8,0,43,0,1,0,0,11.73591,11.73591,0,0,0,0,0,0,0,0,0,0,58.72,43.42,48.28,60.18,8.333333333333334,2,3,0,0,6,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 -14392,17726,32066,-9,32068,32065,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.66833,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 -14392,17726,32067,-9,32068,32065,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.1284,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 -14392,17726,32068,32065,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.2329693,9.4855976,0,10,0,-89.938095,0,3,3,2019,15,4,42,37,1,4,0,33.254124,33.254124,0,0,0,0,0,0,0,0,0,0,48.28,60.18,58.72,43.42,6.666666666666667,2,3,0,0,12,8,5,1,538,2341054.8,25536.301,1702077,232970.88,4775.5371 -14393,17727,32069,32070,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,51,-7,-33.317173,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2023525,0,59.14,52.5,47.7,49.53,8.333333333333334,1,1,0,0,8,6,2,1,536.5,317952.84,161343.17,172010.22,0,1816.9836 -14393,17727,32070,32069,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.7854424,6.1973538,11,7,18.354971,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8227534,47.7,49.53,59.14,52.5,8.333333333333334,1,1,0,0,4,6,2,1,536.5,317952.84,161343.17,172010.22,0,1816.9836 -14394,17728,32071,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,7.5881319,7.4857378,0,0,-1089.8433,0,2,2,2019,3,0,0,46,4,0,0,0,0,0,0,0,0,2,1,1,0,7.8509221,7.7298355,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,11,10,3,1,174,748462.94,188293,0,0,742.01636 -14395,17729,32072,32073,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.8716459,8.798996,0,4,1,-29.685118,0,3,-9,2019,13,1,39,38,1,1,0,16.367968,16.367968,0,0,0,0,0,0,0,0,0,0,47.36,43.44,27.73,46.3,6.666666666666667,1,1,0,0,10,9,5,1,289.5,654828.88,0,983322,561363.63,4412.02 -14395,17729,32073,32072,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.6865854,8.5421801,0,4,-1,17.881865,0,2,-9,2019,26,11,70,60,1,11,0,10.703399,10.703399,0,0,0,.096865438,0,0,0,0,.90987194,0,27.73,46.3,47.36,43.44,3.333333333333333,1,1,0,0,10,9,5,1,289.5,654828.88,0,983322,561363.63,4412.02 -14396,17730,32074,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.7369165,7.6815333,0,0,-962.23541,-9,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.0264883,7.6395383,65.47,45.38,-9,-9,10,1,1,0,0,0,13,3,1,340,624080.38,235601.11,160246.17,0,1513.1906 -14397,17731,32075,32076,-9,-9,1,1,69,0,0,0,3,3,-9,1,1,6.7681522,8.0590076,7.1648402,48,2,43.738914,0,3,3,2019,11,1,16,16,1,1,0,6.1897645,6.1897645,1,0,4.282187,0,0,1,1,0,4.5777631,6.7669563,57.65,29.17,54.79,55.86,10,1,1,0,0,9,5,3,1,779,719927.38,566652.38,261353.34,0,2104.6177 -14397,17731,32076,32075,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,48,-2,-101.76437,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,.40678191,0,54.79,55.86,57.65,29.17,8.333333333333334,1,1,0,0,6,5,3,1,779,719927.38,566652.38,261353.34,0,2104.6177 -14398,17732,32077,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.0842953,6.0780835,0,0,-959.57031,0,3,3,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,5.9351678,34.87,45.32,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,513,237713.56,241.93896,230956.98,0,1922.7268 -14399,17733,32078,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1123.7201,0,3,3,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,36.28,44.53,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,400,-9231.7139,0,0,0,250.90973 -14400,17734,32079,32080,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.4635763,7.2370844,35,0,99.283112,0,2,2,2019,8,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,0,2.6501305,7.2819171,59.29,49.68,48.87,58.55,8.333333333333334,1,1,0,0,9,2,3,1,429.5,837287.75,667730,155206.66,0,2012.4233 -14400,17734,32080,32079,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.8339877,7.980742,0,35,0,-28.472763,0,3,3,2019,8,0,37,35,1,0,0,9.0458927,9.0458927,0,0,0,0,0,0,0,0,.99388939,0,48.87,58.55,59.29,49.68,6.666666666666667,1,1,0,0,10,2,3,1,429.5,837287.75,667730,155206.66,0,2012.4233 -14401,17735,32081,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.4512496,7.4989486,0,0,0,-996.8457,-9,2,2,2019,4,0,30,0,1,0,0,5.7770934,5.7770934,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,696,-361241.72,-17630.578,0,0,960.50684 -14402,17736,32082,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.307622,8.072422,0,0,-931.75049,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8891439,7.8920116,64.06,37.15,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,539,1250989.5,1146498.8,0,0,2537.1121 -14403,17737,32083,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,8.0431385,8.0001545,0,0,-847.38727,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,5.48,0,0,0,4.6231389,7.8528485,55.92,36.72,-9,-9,5,1,1,0,0,2,7,4,1,173,609430.81,254048.63,159111.58,0,1362.6069 -14404,17738,32084,32085,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.0260935,9.1412096,0,23,9,73.46122,0,2,2,2019,9,0,50,50,1,1,0,25.096382,25.096382,0,0,0,0,0,1,1,0,0,0,54,53,40.64,54.86,8,2,3,0,0,9,8,5,1,952.33331,2585706.3,2133942.3,319544.81,0,4694.4014 -14404,17738,32085,32084,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,7.6716022,8.0076323,0,23,0,76.01963,0,2,1,2019,13,2,35,25,1,2,0,9.0347643,9.0347643,0,0,0,0,0,1,1,0,0,0,40.64,54.86,54,53,5,2,3,0,0,3,8,5,1,952.33331,2585706.3,2133942.3,319544.81,0,4694.4014 -14404,17738,32086,-9,32085,32084,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1013.9189,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,5,1,952.33331,2585706.3,2133942.3,319544.81,0,4694.4014 -14404,17739,32087,-9,32085,32084,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1102.6771,-9,1,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,1,1,563,37499.766,0,0,0,0 -14405,17740,32088,32090,-9,-9,1,0,25,2,2,0,2,2,-9,1,3,0,0,0,3,-4,0,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,58.3,52.91,8.333333333333334,2,3,0,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 -14405,17740,32089,-9,32088,32090,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-990.8576,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 -14405,17740,32090,32088,-9,-9,1,1,29,2,2,0,2,2,-9,1,4,0,0,0,3,4,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,57.33,53.46,8.333333333333334,2,3,0,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 -14405,17740,32091,-9,32088,32090,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.9104,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,1,0,901,-78061.883,0,0,0,1681.9409 -14406,17741,32092,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.8845282,6.9078007,0,0,-1014.865,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.8493304,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,0,2594,267589.03,66093.156,141288.27,0,971.29596 -14407,17742,32093,32094,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.7375097,8.8016939,0,17,-1,31.460886,0,2,2,2019,11,0,40,48,1,0,0,27.7498,27.7498,0,0,0,0,0,1,1,0,3.9140635,0,44.68,56.37,45.01,57.46,8.333333333333334,1,1,0,0,13,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 -14407,17742,32094,32093,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,9.0139151,8.6942148,0,17,1,-96.514206,0,2,1,2019,9,1,50,55,1,1,0,14.623445,14.623445,0,0,0,0,0,1,1,0,3.7439198,0,45.01,57.46,44.68,56.37,8.333333333333334,1,1,0,0,13,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 -14407,17742,32095,-9,32093,32094,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.30469,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 -14407,17742,32096,-9,32093,32094,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2836,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,5,1,787.75,413150.91,66122.922,374860.34,179396.67,5456.9004 -14408,17743,32097,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.5560055,6.6148658,0,0,-962.56775,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,7.5033574,0,0,1,1,0,0,6.5207858,58.08,30.23,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,535,85614.688,1339.6553,0,0,902.5033 -14409,17744,32098,32099,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.246274,8.8581409,0,21,-21,122.7132,0,2,2,2019,12,1,40,43,1,1,0,26.412083,26.412083,0,0,0,0,0,1,1,0,4.2999182,0,46.61,56.93,57.33,53.46,6.666666666666667,1,1,0,0,11,9,5,1,284.5,2295855,450890.5,747653.88,0,5521.5156 -14409,17744,32099,32098,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.7277999,7.621223,21,21,35.644176,0,3,2,2019,6,0,0,24,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8121014,7.6453218,57.33,53.46,46.61,56.93,10,1,1,0,0,10,9,5,1,284.5,2295855,450890.5,747653.88,0,5521.5156 -14410,17745,32100,32101,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.5525236,6.1380997,7,-2,-22.201288,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,71.944923,0,0,1,1,0,1.9000872,6.2704811,53,45,55,45,8,1,1,0,0,0,11,2,1,1921,-116785.38,79659.75,0,0,3061.8271 -14410,17745,32101,32100,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,6.0494537,6.0134654,7,2,4.9185205,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,1.7842472,6.1528111,55,45,53,45,8,1,1,0,0,0,11,2,1,1921,-116785.38,79659.75,0,0,3061.8271 -14411,17746,32102,32103,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.1335473,7.2657366,57,1,-170.35356,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.972446,7.3746085,54.67,57.49,52,47,8.333333333333334,1,1,0,0,0,9,3,1,945.5,1224019,588902.25,366794.63,0,2758.9661 -14411,17746,32103,32102,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.3532681,7.3089113,10,-1,-33.061104,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.549212,7.4810758,52,47,54.67,57.49,7,1,1,0,0,0,9,3,1,945.5,1224019,588902.25,366794.63,0,2758.9661 -14412,17747,32104,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.243063,6.5683908,0,0,-1009.3535,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.3763452,6.4151378,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,525,60446.703,133563.73,150383.64,0,673.39532 -14413,17748,32105,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,7.479919,7.6640148,0,0,0,-949.24579,-9,2,-9,2019,8,1,30,0,1,1,0,6.0318532,6.0318532,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,7,4,2,1,517.66669,-35555.996,66310.68,0,0,912.28833 -14413,17748,32106,-9,32105,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.89026,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,2,1,517.66669,-35555.996,66310.68,0,0,912.28833 -14413,17748,32107,-9,32105,-9,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.92914,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,1,517.66669,-35555.996,66310.68,0,0,912.28833 -14414,17749,32108,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3787203,8.8779736,0,0,0,-935.56818,0,-9,-9,2019,7,0,45,60,1,0,0,10.757133,10.757133,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,599,69428.07,53599.496,0,0,2231.1206 -14415,17750,32109,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1066.8662,0,-9,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.26,25.5,-9,-9,10,1,1,0,0,0,9,1,1,208,27823.551,0,0,0,1189.45 -14416,17751,32110,-9,32111,32112,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.4832,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 -14416,17751,32111,32112,-9,-9,1,0,27,1,2,0,1,1,-9,0,5,0,0,0,7,-5,-40.68848,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.8,44.53,55.14,47.62,8.333333333333334,4,5,0,0,0,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 -14416,17751,32112,32111,-9,-9,1,1,32,1,2,0,1,1,-9,0,3,8.94063,8.7104416,0,7,5,-35.394394,0,2,2,2019,7,0,42,44,1,0,0,19.107649,19.107649,0,0,0,0,0,1,1,0,0,0,55.14,47.62,58.8,44.53,8.333333333333334,4,5,0,0,8,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 -14416,17751,32113,-9,32111,32112,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.139,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,5,4,1,984.75,18773.311,-26839.211,0,0,2276.6228 -14417,17752,32114,32117,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.5209236,8.6801958,0,3,-4,-17.82823,0,-9,-9,2019,10,0,42,42,1,1,0,12.235302,12.235302,0,0,0,0,0,1,1,0,0,0,51,57,54.2,57.49,7,1,1,0,0,1,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 -14417,17752,32115,-9,32117,32114,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.87396,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 -14417,17752,32116,-9,32117,32114,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-889.78491,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 -14417,17752,32117,32114,-9,-9,1,0,40,0,3,0,3,3,-9,0,4,7.6562467,7.7095647,0,15,4,-50.114002,0,2,2,2019,11,0,31,29,1,0,0,10.730133,10.730133,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51,57,8.333333333333334,1,1,0,0,10,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 -14417,17752,32118,-9,32117,32114,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.66791,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,938.20001,79665.781,-24331.363,83453.492,33502.824,3618.6736 -14418,17753,32119,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1150.0969,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,0,1,0,0,42,39,-9,-9,5,2,3,0,1,4,5,1,1,2504,52019.332,0,0,0,432.47455 -14418,17754,32120,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1096.2383,0,3,3,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43.57,24.7,-9,-9,1.666666666666667,2,3,0,0,0,5,2,1,678.5,-294430.28,0,0,0,588.31921 -14418,17754,32121,-9,-9,32120,1,0,13,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1229.723,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,2,3,-9,0,0,5,2,1,678.5,-294430.28,0,0,0,588.31921 -14418,17755,32122,-9,-9,-9,1,1,21,0,0,1,2,0,0,1,1,0,0,0,0,0,-1072.0939,-9,-9,-9,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58.63,16.99,-9,-9,6.666666666666667,2,3,0,0,0,5,1,1,331,44499.875,0,0,0,1313.0984 -14419,17756,32123,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.5680804,7.3745899,0,0,0,-1042.5576,0,3,3,2019,8,0,36,35,1,0,0,5.5652022,5.5652022,0,0,0,0,27,1,1,0,0,0,59.36,40.22,-9,-9,3.333333333333333,3,4,0,1,11,8,3,0,389,537144.31,150166.95,509258.53,52299.578,1765.9548 -14420,17757,32124,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,6.3394694,6.7166686,0,0,0,-1217.4403,0,3,3,2019,8,0,30,24,1,0,0,1.5563951,1.5563951,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,7,7,2,1,134,477491.91,26015.686,151320.53,0,1469.7683 -14421,17758,32125,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.5855856,9.4831181,0,0,0,-872.00671,0,2,2,2019,14,1,52,58,1,1,0,30.578457,30.578457,0,0,0,0,2,1,1,0,6.891727,0,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,691,957312.81,847250.69,274918.31,106419.02,5040.459 -14422,17759,32126,32127,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.2169452,6.1739483,6,-2,-20.101709,0,3,3,2019,9,2,0,0,4,2,0,0,0,1,0,2.0911901,0,7,1,1,0,3.9869511,6.1206312,57.75,22.36,54,45,10,1,1,0,0,0,12,2,1,506.5,289604.44,103048.72,116855.19,0,1903.0205 -14422,17759,32127,32126,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.0862579,7.2456036,6,2,25.567249,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,9.3946819,0,0,1,1,0,1.7415093,7.0800924,54,45,57.75,22.36,8,1,1,0,0,0,12,2,1,506.5,289604.44,103048.72,116855.19,0,1903.0205 -14423,17760,32128,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.7359028,7.5354819,5.4652724,0,0,-1054.22,0,3,2,2019,16,5,32,33,1,5,0,8.5545368,8.5545368,0,0,0,0,0,1,1,0,5.953733,0,53.22,21.77,-9,-9,5,1,1,0,0,7,1,3,0,1455.5,193045.84,89532.172,0,0,1260.8149 -14423,17760,32129,-9,32128,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1051.926,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,1,3,0,1455.5,193045.84,89532.172,0,0,1260.8149 -14424,17761,32130,32131,-9,-9,1,0,45,0,2,0,1,1,-9,0,1,0,0,0,18,3,-18.773394,0,3,3,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,32.52,28.45,50.87,43.99,1.666666666666667,1,1,0,1,6,9,2,1,289,143582.22,0,0,0,1546.627 -14424,17761,32131,32130,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,6.9726243,7.6681142,7.0175986,18,-3,7.2906098,0,1,1,2019,13,1,35,30,1,1,0,3.8879082,3.8879082,0,0,0,0,0,1,1,0,7.342257,0,50.87,43.99,32.52,28.45,6.666666666666667,1,1,0,0,10,9,2,1,289,143582.22,0,0,0,1546.627 -14425,17762,32132,32133,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,1,2,0,-9,-9,-9,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,44.2,10.95,60,6.666666666666667,1,1,0,0,0,1,2,0,352,-77912.922,0,0,0,569.60217 -14425,17762,32133,32132,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,1,-2,0,-9,-9,-9,2019,28,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,.5239867,0,10.95,60,50.85,44.2,3.333333333333333,1,1,0,1,0,1,2,0,352,-77912.922,0,0,0,569.60217 -14426,17763,32134,32135,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,8.4051704,8.1746378,48,16,-32.272636,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,7.102139,0,5.48,1,1,0,0,8.14849,55,45,58.3,52.91,8,1,1,0,0,0,12,4,1,1010.5,516092.59,119317.83,192611.27,0,3680.6118 -14426,17763,32135,32134,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.8716521,5.9958138,48,-16,137.49416,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,2.5366824,6.0558186,58.3,52.91,55,45,10,1,1,0,0,5,12,4,1,1010.5,516092.59,119317.83,192611.27,0,3680.6118 -14427,17764,32136,-9,32137,32138,1,0,36,0,0,0,1,1,-9,0,4,8.3309698,8.0876541,0,0,0,-976.42212,0,1,1,2019,11,0,38,40,1,2,0,11.306765,11.306765,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,2,3,0,0,9,8,4,1,239,257504.08,0,178075.94,93460.758,1597.415 -14427,17765,32137,32138,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.3093653,7.5623522,51,0,103.34479,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,27,1,1,0,0,7.3869658,51,46,54,46,7,2,3,0,0,0,8,3,1,2116,1004882,676423.63,541552.25,0,2468.4998 -14427,17765,32138,32137,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.1337514,7.2318139,51,9,-162.56285,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,7.4118795,54,46,51,46,8,2,3,0,0,0,8,3,1,2116,1004882,676423.63,541552.25,0,2468.4998 -14427,17766,32139,-9,32137,32138,1,0,46,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1012.3995,0,1,1,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,2,3,0,0,0,8,1,1,214,298299.06,0,0,0,-7.5551643 -14428,17767,32140,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,2.1473713,2.1889102,0,0,-933.38104,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,0,1,0,2.094341,37.17,45.07,-9,-9,5,1,1,0,0,0,9,2,0,668,166497.94,0,0,0,1016.7753 -14428,17768,32141,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-999.14935,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.52,34.42,-9,-9,5,1,1,0,0,0,9,2,0,1420,32303.414,0,0,0,2239.6333 -14429,17769,32142,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-968.32385,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,14.77976,0,0,1,1,0,0,0,58.56,46.45,-9,-9,10,1,1,0,0,0,8,1,0,256,-170818.22,0,0,0,1696.5253 -14430,17770,32143,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.8851156,8.0177126,0,0,-941.44147,0,-9,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0034704,56.11,44.4,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,1247,698942.88,548252.88,430588.09,0,2268.0503 -14431,17771,32144,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.3497,8.4804106,0,2,-2,95.381012,0,2,2,2019,3,0,38,36,1,0,0,15.406516,15.406516,0,0,0,0,0,0,0,0,2.4884522,0,57.33,53.46,29.9,51.44,8.333333333333334,1,1,0,0,5,9,5,0,355,-79481.609,0,0,0,1140.6365 -14431,17772,32145,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.659235,8.9198208,0,2,2,147.56956,0,-9,-9,2019,14,2,48,37,1,2,0,13.841186,13.841186,0,0,0,0,0,0,0,0,2.206542,0,29.9,51.44,57.33,53.46,3.333333333333333,1,1,0,0,1,9,5,0,669,-25527.5,5153.5112,0,0,1921.5227 -14432,17773,32146,-9,32147,32148,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.27179,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,197.33333,267441.09,402791.84,0,0,2280.3423 -14432,17773,32147,32148,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.7540793,7.4153118,0,1,-7,-5.2468348,-9,-9,-9,2019,8,1,28,0,1,1,0,7.0761824,7.0761824,0,0,0,0,0,1,1,0,0,0,54.96,53.17,39.42,53.83,8.333333333333334,1,1,0,0,7,10,4,0,197.33333,267441.09,402791.84,0,0,2280.3423 -14432,17773,32148,32147,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.108983,8.1959267,0,1,7,68.575821,-9,-9,-9,2019,10,1,37,0,1,1,0,11.389032,11.389032,0,0,0,0,0,1,1,0,2.0837145,0,39.42,53.83,54.96,53.17,6.666666666666667,1,1,0,0,8,10,4,0,197.33333,267441.09,402791.84,0,0,2280.3423 -14433,17774,32149,32150,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.3650799,7.3953943,0,5,1,-74.934959,0,-9,-9,2019,15,3,35,45,1,3,0,6.6215334,6.6215334,0,0,0,0,0,0,0,0,0,0,42.04,52.52,49.12,41.17,3.333333333333333,1,1,0,0,4,11,4,1,597,117130.66,346851.75,145209.97,0,2302.3672 -14433,17774,32150,32149,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.4336205,8.6625328,0,5,-1,41.849121,0,3,2,2019,15,5,48,45,1,5,0,12.385855,12.385855,0,0,0,0,0,0,0,0,0,0,49.12,41.17,42.04,52.52,8.333333333333334,1,1,0,0,6,11,4,1,597,117130.66,346851.75,145209.97,0,2302.3672 -14434,17775,32151,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.3644056,7.4534812,0,0,-953.258,0,3,3,2019,25,10,0,0,4,10,0,0,0,0,0,0,0,7,1,1,0,0,6.9913006,29.83,35.21,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,389,499012.22,82553.664,65692.781,0,1342.3198 -14435,17776,32152,32153,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1625433,9.2422371,0,16,-3,22.838022,0,2,2,2019,20,9,43,47,1,9,0,27.611366,27.611366,0,0,0,0,0,0,0,0,0,0,36.78,41.13,56.72,58.13,8.333333333333334,1,1,0,0,10,6,5,1,747.5,1011144.1,617502.63,337006.72,131134,6138.0005 -14435,17776,32153,32152,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,9.0329075,8.7041416,0,16,3,51.257137,0,2,2,2019,7,0,45,46,1,0,0,20.116438,20.116438,0,0,0,0,7,0,0,0,0,0,56.72,58.13,36.78,41.13,10,1,1,0,0,11,6,5,1,747.5,1011144.1,617502.63,337006.72,131134,6138.0005 -14435,17777,32154,-9,32152,32153,1,0,25,0,0,0,3,3,-9,0,3,6.8362689,6.8388238,0,0,0,-1048.5941,0,2,2,2019,20,8,13,30,1,8,1,11.170176,11.170176,0,0,0,0,0,0,0,0,1.3085065,0,15.08,66.28,-9,-9,6.666666666666667,1,1,0,0,8,6,2,1,250,89371.438,0,0,0,924.68542 -14436,17778,32155,-9,32156,32159,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-929.7066,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 -14436,17778,32156,32159,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.6113057,7.5441751,0,19,-11,66.236763,0,2,2,2019,7,0,45,43,1,0,0,5.6126909,5.6126909,0,0,0,0,0,1,1,0,0,0,58.32,50.22,32.32,54.65,8.333333333333334,1,1,0,0,3,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 -14436,17778,32157,-9,32156,32159,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.2638,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 -14436,17778,32158,-9,32156,32159,1,0,17,0,2,0,2,2,1,0,2,0,0,0,0,0,-996.28552,-9,2,1,2019,26,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,9.540000000000001,52.77,-9,-9,1.666666666666667,1,1,0,0,0,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 -14436,17778,32159,32156,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.0936451,8.2780714,0,18,11,-.22055739,0,1,1,2019,12,0,37,37,1,0,0,10.853961,10.853961,0,0,0,0,0,1,1,0,0,0,32.32,54.65,58.32,50.22,6.666666666666667,1,1,0,0,8,1,3,0,701,360057.81,191176.73,164134.13,69804.188,2832.9954 -14437,17779,32160,32161,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.9521723,8.6950598,0,1,0,-42.649929,-9,-9,-9,2019,10,0,48,0,1,1,0,15.068844,15.068844,0,0,0,0,0,1,1,0,0,0,51,56,46.89,20.45,7,1,1,0,0,1,4,5,1,945.5,118243.27,216434.72,117997.23,33931.57,3215.7314 -14437,17779,32161,32160,-9,-9,1,0,43,0,0,0,2,2,-9,1,1,0,0,0,16,0,-121.71136,-9,2,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,120,1,1,0,5.9222713,0,46.89,20.45,51,56,10,1,1,0,0,2,4,5,1,945.5,118243.27,216434.72,117997.23,33931.57,3215.7314 -14437,17780,32162,-9,32161,32160,1,0,21,0,0,0,2,2,-9,0,4,8.1042805,8.0708904,0,0,0,-1153.3108,-9,2,2,2019,12,0,35,0,1,2,1,9.8858681,9.8858681,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,1,4,4,1,3017,309044.44,-54631.781,0,0,1921.2413 -14437,17781,32163,-9,32161,32160,1,0,18,0,0,1,3,0,-9,0,4,0,0,0,0,0,-972.90253,-9,2,2,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,4,1,1,193,-255980.02,0,0,0,-21.142561 -14438,17782,32164,32165,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.8636947,7.2811928,51,0,-68.835503,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.8103719,7.2361336,39.5,41.06,30.34,48.15,6.666666666666667,1,1,0,0,0,5,2,1,623.5,1342282.3,0,787218.75,0,1966.2432 -14438,17782,32165,32164,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,2.6007359,2.7920904,51,0,-6.6127853,0,3,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,2.5639062,30.34,48.15,39.5,41.06,10,1,1,0,0,0,5,2,1,623.5,1342282.3,0,787218.75,0,1966.2432 -14439,17783,32166,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.5597124,8.7207184,0,0,0,-1054.0884,0,2,2,2019,11,0,47,47,1,0,0,15.469309,15.469309,0,0,0,0,0,0,0,0,0,0,54.22,39.07,-9,-9,3.333333333333333,1,1,0,0,7,12,5,1,756,690503.69,135772.55,341109.28,71106.516,1907.3844 -14440,17784,32167,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,4.9173946,4.7314429,0,0,-985.50421,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,4.821969,31.97,33.13,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,422,-97087.18,-35934.602,0,0,1255.7651 -14441,17785,32168,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1133.9434,0,3,1,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,33.84,-9,-9,5,1,1,0,0,0,11,1,1,937,-471302.22,0,0,0,1060.0994 -14442,17786,32169,32172,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,8.4251537,8.409358,0,1,-3,23.738518,-9,2,2,2019,13,1,29,0,1,1,0,19.766989,19.766989,0,0,0,0,0,1,1,0,.92173094,0,34,57.6,51.83,57.2,8.333333333333334,1,1,0,0,9,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 -14442,17786,32170,-9,32169,32172,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1583,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 -14442,17786,32171,-9,32169,32172,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1171.0206,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 -14442,17786,32172,32169,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.8179016,8.6787901,0,1,3,-12.360113,-9,-9,-9,2019,11,1,40,0,1,1,0,14.418586,14.418586,0,0,0,0,0,1,1,0,0,0,51.83,57.2,34,57.6,8.333333333333334,1,1,0,0,8,12,5,1,902.75,412236.25,133406.19,284545.63,172003.19,4853.1592 -14443,17787,32173,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,3.2863288,3.3903706,0,0,-880.52844,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4354773,3.3872886,63.33,22.55,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,993,735892.44,-10109.663,443977.72,0,1616.527 -14444,17788,32174,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.7747164,8.7767019,0,0,-1098.0568,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3194342,8.6800728,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,205,2125374.5,1173263.9,923718.19,0,4392.1665 -14445,17789,32175,32176,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1165171,8.3319664,0,6,-3,-140.705,0,2,2,2019,7,0,43,40,1,0,0,11.638761,11.638761,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,5,4,1,363.5,-364459.94,-37186.324,0,0,2439.5962 -14445,17789,32176,32175,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.2264118,7.9905567,0,6,3,68.51387,0,-9,-9,2019,7,0,50,47,1,0,0,6.9698148,6.9698148,0,0,0,0,0,0,0,0,.64240813,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,363.5,-364459.94,-37186.324,0,0,2439.5962 -14446,17790,32177,32178,-9,-9,1,1,59,0,0,0,2,2,-9,1,2,0,0,0,8,2,0,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.81,24.75,51.26,19.75,3.333333333333333,1,1,0,0,0,12,1,0,913.5,-188287.38,0,0,0,1317.8185 -14446,17790,32178,32177,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,8,-2,0,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.26,19.75,31.81,24.75,5,1,1,0,0,0,12,1,0,913.5,-188287.38,0,0,0,1317.8185 -14447,17791,32179,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.8193846,8.1558733,6.675807,0,0,-991.59875,0,2,2,2019,9,0,37,28,1,0,0,8.4982548,8.4982548,0,0,0,0,2,1,1,0,2.8612127,6.2993741,56.25,31.04,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1830,-332826.22,-49934.926,95111.094,0,1062.7653 -14448,17792,32180,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.4336052,6.7889581,0,0,-896.81647,0,3,3,2019,19,6,0,0,4,6,0,0,0,1,8.2593012,0,65.819443,0,1,1,0,3.4897566,6.5382199,48.54,19.83,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,943,-219434.81,-87501.75,159156.03,0,1147.3538 -14449,17793,32181,32182,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.2084789,8.1684675,0,29,5,77.780136,0,3,3,2019,6,0,44,37,1,0,0,9.4433136,9.4433136,0,0,0,0,14.5,1,1,0,0,0,47.95,56.13,49,48,10,1,1,0,0,9,1,4,0,826,1330320.3,741519,344766.31,-3075.0366,1265.0859 -14449,17793,32182,32181,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,7,-5,-85.254646,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,47.95,56.13,7,1,1,0,0,0,1,4,0,826,1330320.3,741519,344766.31,-3075.0366,1265.0859 -14450,17794,32183,32184,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.9880757,7.1597304,56,3,-14.970506,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,73.039223,0,0,1,1,0,4.6001282,7.0406303,47.35,26.73,48.42,38.82,6.666666666666667,1,1,0,0,0,6,2,1,1607.5,801753.38,555485.63,188636.22,0,2168.9902 -14450,17794,32184,32183,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.0441689,4.6253219,56,-3,48.167793,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,3.3450425,4.1519012,48.42,38.82,47.35,26.73,6.666666666666667,1,1,0,0,0,6,2,1,1607.5,801753.38,555485.63,188636.22,0,2168.9902 -14451,17795,32185,32186,-9,-9,1,0,51,1,2,0,3,3,-9,1,3,0,0,0,33,-7,0,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,7,1,0,1,0,0,47,49,50,49,7,2,3,0,0,0,6,1,1,1423.5,1059308.6,622575.5,537782.13,98993.867,892.24243 -14451,17795,32186,32185,-9,-9,1,1,58,1,2,0,3,3,-9,1,3,0,0,0,10,7,0,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,49,47,49,7,2,3,0,0,0,6,1,1,1423.5,1059308.6,622575.5,537782.13,98993.867,892.24243 -14451,17796,32187,-9,32185,32186,1,0,30,1,2,0,1,1,-9,0,3,7.4870524,7.6382241,0,0,0,-1053.3875,0,3,2,2019,11,2,25,0,1,2,1,10.055411,10.055411,0,0,0,0,0,1,0,1,0,0,37.94,57.43,-9,-9,6,2,3,0,0,2,6,3,1,616,-173407.03,-90717.539,0,0,785.22766 -14451,17797,32188,-9,32185,32186,1,1,26,1,2,0,2,2,-9,0,4,0,0,0,0,0,-971.8996,0,3,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,48,58,-9,-9,7,2,3,1,0,0,6,1,1,1095,66156.461,0,0,0,0 -14451,17798,32189,-9,32191,-9,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.1078,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,390.66666,-29757.404,-27277.311,0,0,1397.2751 -14451,17798,32190,-9,32191,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.3429,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,3,1,390.66666,-29757.404,-27277.311,0,0,1397.2751 -14451,17798,32191,-9,32185,32186,1,0,28,1,2,0,2,2,-9,0,4,7.4095588,7.3887668,0,0,0,-1046.3193,0,3,2,2019,11,0,20,0,1,2,1,8.64538,8.64538,0,0,0,0,0,1,0,1,0,0,46,57,-9,-9,7,2,3,0,1,1,6,3,1,390.66666,-29757.404,-27277.311,0,0,1397.2751 -14452,17799,32192,32193,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3263712,7.5080209,6.6377659,42,-7,-33.014397,0,2,2,2019,8,0,16,16,1,0,0,11.147516,11.147516,0,0,0,0,0,1,1,0,3.7967763,6.3215113,57.33,53.46,58.9,45.74,8.333333333333334,1,1,0,0,10,8,4,1,874,1496685.6,752648.38,424911.81,0,2816.5002 -14452,17799,32193,32192,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.6834087,7.491653,41,7,-47.167645,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6416841,7.346591,58.9,45.74,57.33,53.46,8.333333333333334,1,1,0,0,0,8,4,1,874,1496685.6,752648.38,424911.81,0,2816.5002 -14453,17800,32194,32195,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.664135,8.5230274,0,8,-1,58.847878,0,2,-9,2019,10,0,40,46,1,0,0,17.975315,17.975315,0,0,0,0,2,1,1,0,2.6579504,0,43.71,56.91,51.25,50.81,6.666666666666667,4,2,0,0,8,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 -14453,17800,32195,32194,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.9347782,9.058917,0,8,1,53.260918,0,-9,-9,2019,8,0,50,60,1,0,0,21.339275,21.339275,0,0,0,0,0,1,1,0,2.3728678,0,51.25,50.81,43.71,56.91,8.333333333333334,1,1,0,0,9,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 -14453,17800,32196,-9,32194,32195,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.43219,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 -14453,17800,32197,-9,32194,32195,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-810.14148,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,729.5,2978620,842334.69,1365366.8,0,5668.7744 -14454,17801,32198,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.885416,5.6124845,0,0,-925.7229,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,3.7822452,5.517127,35.8,41.54,-9,-9,5,1,1,0,0,0,2,2,1,1102,410065.09,0,182484.34,0,1192.871 -14455,17802,32199,32200,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,6.6833782,6.9787574,0,20,-3,55.356201,0,3,3,2019,3,0,60,55,1,0,0,1.848217,1.848217,0,0,0,0,0,0,0,0,9.5724154,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,9,10,5,1,849.5,89560.258,172114.59,0,0,20512.057 -14455,17802,32200,32199,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.0140114,8.9528179,0,5,3,13.082007,0,-9,-9,2019,10,0,50,47,1,0,0,13.957757,13.957757,0,0,0,0,2,0,0,0,7.0042434,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,849.5,89560.258,172114.59,0,0,20512.057 -14456,17803,32201,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,6.4012098,7.1250858,0,0,-880.36133,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.6928589,6.6904149,58.98,15.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,4162,88615.203,178426.41,0,0,1100.9215 -14457,17804,32202,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.566215,7.5570803,0,0,-870.63043,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,2,0,0,0,0,7.640336,42.85,51.08,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,943,542397.06,601502.13,0,0,995.01563 -14458,17805,32203,32204,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.6054788,7.0305066,0,17,4,-44.989162,0,3,2,2019,9,1,24,22,1,1,0,7.8504229,7.8504229,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.28,41.55,6.666666666666667,1,1,0,0,9,7,4,0,1014,432518.47,26889.215,0,0,2606.6438 -14458,17805,32204,32203,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,7.8305593,8.4120302,0,17,-4,-44.761303,0,2,3,2019,11,0,54,55,1,0,0,6.5304732,6.5304732,0,0,0,0,0,1,1,0,2.8808644,0,56.28,41.55,58.15,52.91,5,1,1,0,0,11,7,4,0,1014,432518.47,26889.215,0,0,2606.6438 -14458,17805,32205,-9,32203,32204,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.00854,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,1014,432518.47,26889.215,0,0,2606.6438 -14459,17806,32206,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,8.1715488,8.3515158,0,0,0,-921.12634,0,-9,-9,2019,6,0,90,50,1,0,0,3.4733794,3.4733794,0,0,0,0,7,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,305,-168808.92,126116.98,147274.78,119215.55,1419.8093 -14460,17807,32207,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.605732,8.9884624,0,0,0,-1048.9034,0,-9,-9,2019,11,1,37,37,1,1,0,19.896767,19.896767,0,0,0,0,0,0,0,0,2.6681318,0,51.83,57.2,-9,-9,5,1,1,0,0,7,12,5,1,578,495613.03,191019.58,0,0,1496.627 -14461,17808,32208,32210,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.9045153,9.4082365,0,6,-1,-5.8222442,0,3,2,2019,7,0,35,40,1,0,0,59.12846,59.12846,0,0,0,0,0,0,0,0,6.875155,0,57.33,53.46,49.18,54.46,8.333333333333334,2,3,0,0,6,8,5,1,399.66666,781036.5,443397.63,582598.38,106155.65,6520.5693 -14461,17808,32209,-9,32210,32208,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.73456,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,399.66666,781036.5,443397.63,582598.38,106155.65,6520.5693 -14461,17808,32210,32208,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,0,0,0,6,1,-52.750229,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.1303186,0,49.18,54.46,57.33,53.46,8.333333333333334,2,3,0,0,4,8,5,1,399.66666,781036.5,443397.63,582598.38,106155.65,6520.5693 -14462,17809,32211,-9,-9,-9,1,0,96,0,0,0,2,2,-9,0,4,0,8.4904833,8.606142,0,0,-982.36835,0,3,2,2019,13,3,0,0,4,3,0,0,0,1,0,12.027842,0,0,1,1,0,0,8.6870594,48,38.92,-9,-9,10,1,1,0,0,0,9,5,1,222,1450285.6,573047.25,607779.06,0,3149.52 -14463,17810,32212,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.3975177,6.4549885,0,0,-973.44183,0,-9,2,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,0,1,1,0,4.0897789,6.3165784,27.15,57.87,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,452,164020.48,93714.547,201015.2,0,1404.0319 -14464,17811,32213,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.3588724,8.0080729,0,0,0,-905.08551,0,2,-9,2019,11,0,40,45,1,0,0,11.253727,11.253727,0,0,0,0,0,0,0,0,0,0,43.6,51.61,-9,-9,5,1,1,0,0,8,8,4,1,285,267473.28,0,239699.22,-8190.082,1334.358 -14465,17812,32214,32216,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,2,1,0,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53,47,50,47,7,1,1,0,0,0,11,1,0,2322.3333,395796.41,0,346367.34,0,1994.2139 -14465,17812,32215,-9,32216,32214,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-990.67523,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,0,2322.3333,395796.41,0,346367.34,0,1994.2139 -14465,17812,32216,32214,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,2,-1,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,13.736683,0,0,1,1,0,0,0,50,47,53,47,7,1,1,0,0,0,11,1,0,2322.3333,395796.41,0,346367.34,0,1994.2139 -14466,17813,32217,32218,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.0039654,8.1057196,0,6,-1,40.507076,0,3,3,2019,7,0,37,36,1,0,0,11.88061,11.88061,0,0,0,0,0,0,0,0,0,0,52.97,53.97,50,55,6.666666666666667,1,1,0,0,7,13,4,1,937.5,-100745.05,-35262.297,0,0,2496.481 -14466,17813,32218,32217,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.0827475,8.2120533,0,6,1,-99.672134,-9,-9,-9,2019,10,0,36,0,1,1,0,8.4803715,8.4803715,0,0,0,0,0,0,0,0,0,0,50,55,52.97,53.97,8,4,1,0,0,1,13,4,1,937.5,-100745.05,-35262.297,0,0,2496.481 -14467,17814,32219,32220,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,-1,72.044815,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7920663,0,52.35,51.42,60.12,54.8,8.333333333333334,1,1,0,0,0,12,3,1,1362,822697.06,457652.25,234587.16,0,2761.7764 -14467,17814,32220,32219,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.6454844,8.2839098,7,1,-40.163269,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.864079,8.1652193,60.12,54.8,52.35,51.42,10,1,1,0,0,0,12,3,1,1362,822697.06,457652.25,234587.16,0,2761.7764 -14468,17815,32221,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.4572158,6.6931648,0,0,-1027.5096,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6327877,6.7092681,42.61,54.85,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,506,749155.44,119973.16,727193.69,0,1441.5803 -14469,17816,32222,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.0849752,8.332407,0,0,0,-1112.5892,0,2,3,2019,10,0,35,35,1,0,0,10.27226,10.27226,0,0,0,0,14.5,0,0,0,4.5940862,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,11,9,4,0,5008,614794.25,252454.34,389840.81,0,1531.5826 -14470,17817,32223,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,8.3167572,8.4002361,0,0,-1057.6803,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,4.4610767,0,36.938148,74.5,1,1,0,4.4086027,8.5101871,56.79,41.3,-9,-9,5,1,1,0,0,0,5,5,1,341,1011504.4,629149,109110.93,0,3523.3682 -14470,17818,32224,-9,32223,-9,1,0,50,0,0,0,3,3,-9,0,4,7.7438474,7.3691015,0,0,0,-1084.8076,0,1,2,2019,10,0,16,16,1,1,0,16.482037,16.482037,0,0,0,0,0,1,1,0,1.5008731,0,51,54,-9,-9,8,1,1,0,0,1,5,3,1,1194,-124052.83,-131326.25,0,0,753.46185 -14471,17819,32225,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-871.73303,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.27,10.51,-9,-9,5,1,1,0,0,0,7,1,0,245,26637.605,0,0,0,845.60999 -14472,17820,32226,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.2029791,6.3839941,0,0,0,-1061.3695,0,-9,2,2019,13,1,40,-9,1,1,0,1.4766585,1.4766585,0,0,0,0,0,0,0,0,0,0,33.92,50.95,-9,-9,5,1,1,0,0,13,12,2,1,300,316013.94,54547.207,516165.28,52703.91,-57.805119 -14473,17821,32227,32228,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,0,0,0,9,-1,-5.6033292,0,1,1,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,56.14,54.45,56.22,10,2,3,0,0,3,8,5,1,799,930710.69,0,626127.31,98718.109,2827.0164 -14473,17821,32228,32227,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,9.4866619,9.159811,0,10,1,-46.477539,0,1,1,2019,6,0,37,35,1,0,0,29.36726,29.36726,0,0,0,0,0,0,0,0,0,0,54.45,56.22,57.63,56.14,8.333333333333334,2,3,0,0,12,8,5,1,799,930710.69,0,626127.31,98718.109,2827.0164 -14473,17821,32229,-9,32227,32228,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.20386,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,799,930710.69,0,626127.31,98718.109,2827.0164 -14474,17822,32230,-9,32232,32231,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.23114,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,644.66669,243753.55,200279.92,132597.14,80496.57,3645.5332 -14474,17822,32231,32232,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.6739082,8.911459,0,10,-3,-5.5378265,0,3,2,2019,10,0,43,44,1,0,0,17.011215,17.011215,0,0,0,0,0,1,1,0,0,0,58.32,50.22,33.18,60.48,8.333333333333334,1,1,0,0,12,2,4,1,644.66669,243753.55,200279.92,132597.14,80496.57,3645.5332 -14474,17822,32232,32231,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.8545847,7.5498462,0,10,3,-26.948221,0,2,3,2019,14,2,37,35,1,2,0,8.1003265,8.1003265,0,0,0,0,0,1,1,0,0,0,33.18,60.48,58.32,50.22,5,1,1,0,0,12,2,4,1,644.66669,243753.55,200279.92,132597.14,80496.57,3645.5332 -14475,17823,32233,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.6603189,7.4140196,0,0,0,-997.93164,0,2,3,2019,8,0,50,55,1,0,0,4.3806787,4.3806787,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,180,273910.69,198090.22,0,0,1298.6421 -14476,17824,32234,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.9039392,8.9588785,0,13,-2,62.782047,-9,2,1,2019,12,0,38,0,1,0,0,18.25614,18.25614,0,0,0,0,0,0,0,0,5.1550651,0,50.95,46.41,49.41,58.28,8.333333333333334,1,1,0,0,2,8,5,1,1167,145576.88,6240.7407,0,0,4117.7222 -14476,17825,32235,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.5709734,9.7018805,0,1,2,110.84003,-9,-9,-9,2019,8,0,55,0,1,0,0,33.974724,33.974724,0,0,0,0,0,0,0,0,4.5886836,0,49.41,58.28,50.95,46.41,8.333333333333334,1,1,0,0,1,8,5,1,367,186049.27,0,513236.03,204098.94,6274.6313 -14477,17826,32236,32237,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.9522114,9.1414099,0,8,4,8.7292547,0,-9,-9,2019,9,0,43,38,1,0,0,27.875849,27.875849,0,0,0,0,0,0,0,0,0,0,57.17,50.61,51.73,58.82,8.333333333333334,1,1,0,0,9,12,5,1,1330,800682.13,355999.06,272687.25,0,4102.3496 -14477,17826,32237,32236,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.1308966,8.1830225,0,8,-4,53.139744,0,-9,-9,2019,12,1,40,40,1,1,0,11.605429,11.605429,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.17,50.61,8.333333333333334,1,1,0,0,9,12,5,1,1330,800682.13,355999.06,272687.25,0,4102.3496 -14478,17827,32238,-9,32241,32240,1,1,17,1,3,1,2,0,0,0,4,0,0,0,0,0,-1062.2953,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 -14478,17827,32239,-9,32241,32240,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.65259,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 -14478,17827,32240,32241,-9,-9,1,1,46,1,3,0,1,1,-9,0,2,7.8645911,7.5079989,0,7,5,99.906136,0,-9,-9,2019,12,0,40,40,1,0,0,6.7303567,6.7303567,0,0,0,0,0,1,1,0,0,0,41.98,51.26,33.54,43.04,3.333333333333333,2,3,0,0,9,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 -14478,17827,32241,32240,-9,-9,1,0,41,1,3,0,2,2,-9,0,2,0,0,0,21,-5,-149.71399,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.54,43.04,41.98,51.26,5,2,3,0,0,7,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 -14478,17827,32242,-9,32241,32240,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.7251,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 -14478,17827,32243,-9,32241,32240,1,0,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.9735,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,527,310585.38,0,357794.53,12059.508,1753.0037 -14479,17828,32244,32246,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5076427,8.5740604,0,19,-6,-9.9741907,0,-9,-9,2019,12,0,40,28,1,0,0,15.939424,15.939424,0,0,0,0,0,1,1,0,0,0,43.37,57.28,66.94,34.04,8.333333333333334,1,1,0,0,10,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 -14479,17828,32245,-9,32244,32246,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.599,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 -14479,17828,32246,32244,-9,-9,1,1,47,0,2,0,1,1,1,0,3,8.6760921,9.0049515,0,19,6,-52.280922,-9,-9,1,2019,6,0,1,0,1,0,0,748.32111,748.32111,0,0,0,0,0,1,1,0,0,0,66.94,34.04,43.37,57.28,10,1,1,0,0,10,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 -14479,17828,32247,-9,32244,32246,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.7428,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,513,689007.56,622178.13,212445.66,102086.23,5197.625 -14480,17829,32248,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,7.3426461,7.7170229,0,0,-900.62097,0,2,2,2019,13,3,0,0,4,3,0,0,0,1,0,0,.23923509,0,1,1,0,7.0063319,7.9276814,48.99,38.46,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,194,885439.44,87921.188,344993.25,0,1668.9884 -14481,17830,32249,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-945.68158,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.33,33.94,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,2593,168196.36,0,34415.078,0,1785.0334 -14482,17831,32250,32251,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,0,0,50,-1,-37.935387,-9,2,1,2019,14,2,0,0,4,2,0,0,0,1,0,4.9178972,0,0,1,1,0,5.2165847,0,32.96,36.55,53.36,53.7,5,1,1,0,0,0,8,2,1,1092,586358.06,292834.19,145763.5,0,1827.2063 -14482,17831,32251,32250,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.0699105,7.4158101,50,1,65.546898,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,5.3149147,7.4399266,53.36,53.7,32.96,36.55,8.333333333333334,1,1,0,0,0,8,2,1,1092,586358.06,292834.19,145763.5,0,1827.2063 -14483,17832,32252,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,5,0,7.3676753,7.266818,0,0,-978.01202,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9558249,7.2905097,60.02,56.42,-9,-9,10,1,1,0,0,0,5,3,1,439,627132.31,4030.2087,54725.297,0,1486.0078 -14484,17833,32253,32254,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,4.0207248,3.8809988,51,-6,44.061417,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,26.68713,0,0,1,1,0,0,4.2119617,52.24,30.08,58.88,40.91,8.333333333333334,1,1,0,0,0,7,2,1,213,155710.83,53019.055,207346.47,0,2056.644 -14484,17833,32254,32253,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.8337855,6.9873576,61,6,49.813133,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,1.5531932,0,5.48,1,1,0,5.0011516,6.7854362,58.88,40.91,52.24,30.08,8.333333333333334,1,1,0,0,0,7,2,1,213,155710.83,53019.055,207346.47,0,2056.644 -14485,17834,32255,-9,32258,32256,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.46466,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 -14485,17834,32256,32258,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.688571,8.4710665,0,1,1,16.198526,-9,-9,-9,2019,12,1,45,0,1,1,0,17.803486,17.803486,0,0,0,0,0,0,0,0,0,0,48.87,58.55,27.06,25.91,6.666666666666667,1,1,0,0,9,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 -14485,17834,32257,-9,32258,32256,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.7731,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 -14485,17834,32258,32256,-9,-9,1,0,41,0,2,0,1,1,-9,0,1,9.0249691,9.1403522,0,7,-1,-123.11576,-9,-9,-9,2019,29,12,37,0,1,12,0,31.212891,31.212891,0,0,0,0,0,0,0,0,0,0,27.06,25.91,48.87,58.55,3.333333333333333,1,1,0,0,8,4,5,1,884.5,1681830.1,967612.44,526623.81,244992,5166.2617 -14486,17835,32259,32260,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.4985142,8.147212,58,5,-95.08522,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3875523,60.54,42.25,55.9,51.29,10,1,1,0,0,0,1,4,1,905.5,1722030.8,560379.13,577289.75,0,3278.1331 -14486,17835,32260,32259,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,58,-5,-117.18769,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.8510249,0,55.9,51.29,60.54,42.25,10,1,1,0,0,11,1,4,1,905.5,1722030.8,560379.13,577289.75,0,3278.1331 -14487,17836,32261,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,8.0321569,8.0270433,0,0,0,-962.71454,0,2,2,2019,15,3,72,36,1,3,0,4.166832,4.166832,0,0,0,0,0,0,0,0,2.3928971,0,47.94,37.73,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,1212,-104825.29,0,0,0,1161.7905 -14488,17837,32262,32263,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,9,-3,158.79282,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,93.275116,0,0,1,1,0,0,0,46.8,36.36,62.39,56.71,6.666666666666667,1,1,0,0,0,11,2,0,1192.5,46858.285,87837.719,154476.83,20498.387,946.49213 -14488,17837,32263,32262,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,6.1391912,5.8021259,9,3,-.032451391,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.2444277,5.9856548,62.39,56.71,46.8,36.36,10,1,1,0,0,0,11,2,0,1192.5,46858.285,87837.719,154476.83,20498.387,946.49213 -14489,17838,32264,32266,-9,-9,1,1,59,0,2,0,1,1,-9,0,3,9.0374784,8.981369,0,10,9,75.274971,0,3,3,2019,8,0,45,41,1,0,0,20.789551,20.789551,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,1.666666666666667,1,1,0,0,11,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 -14489,17838,32265,-9,32266,32264,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-902.87476,-9,1,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,1.666666666666667,1,1,0,1,0,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 -14489,17838,32266,32264,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,0,0,0,10,0,25.707582,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,58.32,50.22,6.666666666666667,1,1,0,0,3,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 -14489,17838,32267,-9,32266,32264,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-884.9021,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,4,1,751,2146117,1489275.8,310537.72,0,3107.1765 -14490,17839,32268,32269,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,5.7244201,6.195271,62,1,-52.479862,0,3,3,2019,31,12,0,0,4,12,0,0,0,1,0,7.0843096,0,0,1,1,0,0,6.4982061,27.55,25.55,47.62,26.56,8.333333333333334,1,1,0,0,0,2,2,1,412,374563.22,49067.348,0,0,1645.6042 -14490,17839,32269,32268,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,62,-1,-57.474308,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,7,1,1,0,0,0,47.62,26.56,27.55,25.55,6.666666666666667,1,1,0,0,0,2,2,1,412,374563.22,49067.348,0,0,1645.6042 -14491,17840,32270,-9,-9,-9,1,0,21,0,0,0,1,1,-9,0,4,8.2866383,8.1884184,4.9131498,0,0,-1120.625,-9,-9,-9,2019,16,5,38,0,1,5,0,8.6432247,8.6432247,0,0,0,0,0,0,0,0,5.3005228,0,21.05,64.58,-9,-9,3.333333333333333,1,1,0,0,0,12,4,0,632,213569.03,0,0,0,1676.8668 -14492,17841,32271,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.5914774,8.1873169,0,0,0,-943.9718,0,2,2,2019,19,7,29,28,1,7,0,17.552166,17.552166,0,0,0,0,2,0,0,0,0,0,36.97,58.59,-9,-9,5,4,2,0,0,9,9,4,1,814,306001.38,228774.02,210501.23,0,1163.3856 -14493,17842,32272,32273,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,8.0620184,8.3677063,6.9468498,6,0,-15.567525,0,3,2,2019,6,0,48,0,1,0,0,8.4489088,8.4489088,0,0,0,0,0,1,1,0,0,6.6618376,55.36,51.57,48.45,57.49,6.666666666666667,1,1,0,0,5,2,4,1,310.5,267957.63,151430.33,102574.44,0,3605.5088 -14493,17842,32273,32272,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.1543765,7.6568131,0,6,0,55.311886,0,-9,-9,2019,11,0,40,40,1,0,0,4.3532476,4.3532476,0,0,0,0,0,1,1,0,2.5232017,0,48.45,57.49,55.36,51.57,8.333333333333334,1,1,0,0,8,2,4,1,310.5,267957.63,151430.33,102574.44,0,3605.5088 -14494,17843,32274,32275,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,52,-1,84.883537,0,1,1,2019,12,2,0,0,4,2,0,0,0,1,0,19.468611,0,7,1,1,0,0,0,55.84,49.96,51.66,28.08,6.666666666666667,1,1,0,0,5,1,3,1,1004.5,782964.25,318272.44,241685.09,0,2034.9379 -14494,17843,32275,32274,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.0260725,7.7902551,50,1,49.220142,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,7.5356016,51.66,28.08,55.84,49.96,6.666666666666667,1,1,0,0,0,1,3,1,1004.5,782964.25,318272.44,241685.09,0,2034.9379 -14495,17844,32276,32277,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.2547145,6.8079257,10,1,-48.820435,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3736939,6.2781115,56.94,41.29,39.78,49.49,8.333333333333334,1,1,0,0,0,12,2,1,2248.5,413144.44,111381.7,228232.56,0,1429.3597 -14495,17844,32277,32276,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,20,-1,-48.942692,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.5715127,0,39.78,49.49,56.94,41.29,8.333333333333334,1,1,0,0,0,12,2,1,2248.5,413144.44,111381.7,228232.56,0,1429.3597 -14496,17845,32278,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.5799837,8.8267126,0,0,0,-1079.5161,0,2,2,2019,9,0,40,40,1,0,0,15.693619,15.693619,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,10,4,5,0,512,500687.44,166960.52,210357.03,114781.14,2894.449 -14497,17846,32279,32280,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.9574375,9.0745773,0,25,-1,-17.327562,0,3,3,2019,7,0,53,39,1,0,0,15.7688,15.7688,0,0,0,0,0,0,0,0,4.281826,0,62.49,55.09,57.16,56.15,10,1,1,0,0,10,13,5,1,419.5,278660.09,247416,211628.94,89781.406,3342.4189 -14497,17846,32280,32279,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.3597188,7.3000975,0,8,1,45.997829,0,-9,-9,2019,10,0,21,21,1,0,0,8.7710438,8.7710438,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.49,55.09,10,1,1,0,0,8,13,5,1,419.5,278660.09,247416,211628.94,89781.406,3342.4189 -14497,17847,32281,-9,32280,32279,1,1,21,0,0,0,2,2,-9,0,5,7.9294066,8.0222263,0,0,0,-800.45319,0,1,1,2019,0,0,48,48,1,0,1,8.1992855,8.1992855,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,13,4,1,996,-62339.297,-57572.293,0,0,1597.8419 -14497,17848,32282,-9,32280,32279,1,1,19,0,0,0,2,2,-9,0,5,7.6620173,7.6337957,0,0,0,-832.7204,0,1,1,2019,7,0,40,42,1,0,1,5.0142126,5.0142126,0,0,0,0,0,0,0,0,3.9142628,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,165,189700.7,0,0,0,1240.4963 -14498,17849,32283,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0263968,7.625164,0,0,0,-1108.4646,0,2,2,2019,11,0,30,30,1,0,0,11.224351,11.224351,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,8,2,3,1,753,215767.63,-115987.29,0,0,1440.9244 -14499,17850,32284,32285,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9658141,7.9321866,0,1,0,67.530426,-9,2,2,2019,8,0,30,0,1,0,0,9.2630396,9.2630396,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.48,55.86,8.333333333333334,1,1,0,0,8,11,4,1,1996.5,300865.13,283876.88,0,0,2556.1611 -14499,17850,32285,32284,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.7931685,7.9189558,0,1,0,104.774,-9,2,2,2019,9,0,50,0,1,0,0,5.5530586,5.5530586,0,0,0,0,0,0,0,0,0,0,48.48,55.86,54.2,57.49,6.666666666666667,1,1,0,0,10,11,4,1,1996.5,300865.13,283876.88,0,0,2556.1611 -14499,17851,32286,-9,32284,32285,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-749.95856,-9,1,2,2019,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,1,0,0,11,1,1,366,0,0,0,0,-195.4077 -14500,17852,32287,-9,32288,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-869.92328,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,1089.5,176232.38,0,0,0,1710.1674 -14500,17852,32288,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3134527,7.8465247,6.377882,0,0,-1143.4371,0,1,1,2019,5,0,20,20,1,0,0,6.5836358,6.5836358,0,0,0,0,0,1,1,0,6.6957121,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,1089.5,176232.38,0,0,0,1710.1674 -14501,17853,32289,-9,32290,32292,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.0123,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 -14501,17853,32290,32292,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.175077,7.1681862,0,17,-6,-4.5598249,0,-9,2,2019,16,6,20,20,1,6,0,7.1138201,7.1138201,0,0,0,0,0,0,0,0,0,0,29.7,52.45,52.82,53.97,8.333333333333334,1,1,0,0,8,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 -14501,17853,32291,-9,32290,32292,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.55,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 -14501,17853,32292,32290,-9,-9,1,1,46,1,2,0,2,2,-9,0,4,9.1442127,8.9932117,0,17,6,-65.660561,0,2,2,2019,10,0,45,43,1,0,0,26.021759,26.021759,0,0,0,0,0,0,0,0,0,0,52.82,53.97,29.7,52.45,8.333333333333334,1,1,0,0,8,2,5,1,441.25,-17881.207,-8705.4736,220851.88,155083.98,3447.0073 -14502,17854,32293,32294,-9,-9,1,0,35,0,0,0,1,1,-9,1,1,0,0,0,5,-2,63.389645,1,-9,-9,2019,15,3,0,1,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,29.01,36.88,53.56,8.333333333333334,1,1,0,0,3,7,4,1,522.5,214140.61,54800.609,377099.13,173222.98,3033.0967 -14502,17854,32294,32293,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.8668041,8.4781723,0,5,2,82.50032,0,2,3,2019,16,4,38,38,1,4,0,18.786072,18.786072,0,0,0,0,0,1,1,0,0,0,36.88,53.56,40.57,29.01,5,1,1,0,0,12,7,4,1,522.5,214140.61,54800.609,377099.13,173222.98,3033.0967 -14503,17855,32295,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.0423479,7.8282056,0,0,0,-983.14734,0,2,2,2019,24,12,40,35,1,12,0,7.5033698,7.5033698,0,0,0,0,0,1,1,0,0,0,26.12,51.92,-9,-9,5,1,1,0,1,11,1,3,0,187,-208507.69,-31373.859,0,0,1463.2054 -14504,17856,32296,32297,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,24,7,0,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,50,54,7,1,1,0,0,9,4,1,1,857,55872.188,108314.73,80215.172,71365.484,-616.26575 -14504,17856,32297,32296,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,8,-7,0,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1.8288426,0,50,54,50,49,8,1,1,0,0,0,4,1,1,857,55872.188,108314.73,80215.172,71365.484,-616.26575 -14505,17857,32298,-9,32301,32299,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.2192,-9,2,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 -14505,17857,32299,32301,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.7324638,9.5779676,0,21,-4,-46.842163,0,2,2,2019,20,8,40,40,1,8,0,35.888363,35.888363,0,0,0,0,0,0,0,0,0,0,33.18,60.48,57.06,57.76,6.666666666666667,1,1,0,0,9,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 -14505,17857,32300,-9,32301,32299,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1033.1119,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 -14505,17857,32301,32299,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,7.733263,7.6704645,0,21,4,-130.67696,0,2,2,2019,6,0,20,20,1,0,0,13.017939,13.017939,0,0,0,0,0,0,0,0,6.7949476,0,57.06,57.76,33.18,60.48,8.333333333333334,1,1,0,0,3,9,5,1,489,442194.09,114020.31,555902.88,276804.41,4691.1865 -14506,17858,32302,32303,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,49,-4,96.96946,0,2,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,120,1,1,0,0,0,35.17,15.39,54,46,5,1,1,0,1,0,7,2,0,799.5,224976.45,129526.8,265445.44,0,2381.689 -14506,17858,32303,32302,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8572292,5.9934998,7,4,102.15755,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.1302598,5.6631212,54,46,35.17,15.39,8,1,1,0,0,0,7,2,0,799.5,224976.45,129526.8,265445.44,0,2381.689 -14507,17859,32304,32305,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.2692451,8.3626156,0,6,0,-1.337947,0,-9,-9,2019,26,12,43,45,1,12,0,10.994584,10.994584,0,0,0,0,0,0,0,0,0,0,18.2,67.27,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,305,78521.609,159713.47,115262.08,73554.375,3677.0122 -14507,17859,32305,32304,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.2052422,9.257864,0,6,0,51.979027,0,2,2,2019,8,0,65,60,1,0,0,18.199944,18.199944,0,0,0,0,0,0,0,0,.15453626,0,57.16,56.15,18.2,67.27,6.666666666666667,1,1,0,0,9,2,5,1,305,78521.609,159713.47,115262.08,73554.375,3677.0122 -14508,17860,32306,-9,32307,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.6168,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,1095.5,-176939.14,0,0,0,1082.3394 -14508,17860,32307,-9,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.8149567,7.6904159,0,0,0,-1084.2662,0,2,2,2019,10,0,20,37,1,0,0,14.859266,14.859266,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,1095.5,-176939.14,0,0,0,1082.3394 -14509,17861,32308,32309,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.6067262,6.5535455,8,0,-59.497421,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.2542787,57.19,42.72,51,47,8.333333333333334,1,1,0,0,0,13,2,1,832.5,113934.98,210591.84,109647.77,0,1898.4136 -14509,17861,32309,32308,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,8,0,137.69327,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,9.7883234,0,0,1,1,0,0,0,51,47,57.19,42.72,7,1,1,0,0,9,13,2,1,832.5,113934.98,210591.84,109647.77,0,1898.4136 -14510,17862,32310,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,9.518569,8.9699392,0,2,8,92.280525,0,2,3,2019,12,0,41,39,1,0,0,27.885015,27.885015,0,0,0,0,0,0,0,0,3.201952,0,44.36,54.04,49,56,8.333333333333334,1,1,0,0,8,8,5,1,133,186337.69,303831.59,165603.48,153108.45,3478.5742 -14511,17863,32311,-9,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.7964725,8.8227043,0,10,-2,-79.856133,0,2,2,2019,8,0,36,36,1,0,0,22.268715,22.268715,0,0,0,0,0,0,0,0,9.2925501,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,11,12,4,1,763.33331,106046.23,97961.359,0,0,5696.124 -14511,17863,32312,-9,-9,32311,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.6778,-9,-9,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,12,4,1,763.33331,106046.23,97961.359,0,0,5696.124 -14511,17863,32313,-9,-9,32311,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.0975,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,763.33331,106046.23,97961.359,0,0,5696.124 -14512,17864,32314,32315,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,5.8503771,7.0692906,6.675827,43,2,76.343002,0,3,-9,2019,6,0,45,50,1,0,0,.95954895,.95954895,0,0,0,0,0,1,1,0,0,6.6222968,62.66,52.4,43.99,60.71,10,1,1,0,0,8,7,2,1,552.5,701614.69,316481.72,250089.44,8953.0391,1168.9449 -14512,17864,32315,32314,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,5.9800825,6.0090861,3.8818107,43,-2,-80.637512,0,3,3,2019,25,10,10,5,1,10,0,5.0170617,5.0170617,0,0,0,0,42,1,1,0,1.7509706,4.0860209,43.99,60.71,62.66,52.4,5,1,1,0,0,6,7,2,1,552.5,701614.69,316481.72,250089.44,8953.0391,1168.9449 -14513,17865,32316,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1041.0691,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,666,424975.28,0,429638.47,0,482.31461 -14513,17866,32317,-9,32316,-9,1,0,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1010.2089,0,3,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,1,1,0,0,0,4,1,0,1647,-447460.59,0,0,0,504.50986 -14514,17867,32318,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,4,0,0,0,0,0,-824.71448,0,2,2,2019,12,0,0,30,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,62.48,-9,-9,3.333333333333333,1,1,1,1,8,12,1,1,658,-75984.117,0,0,0,499.16351 -14515,17868,32319,-9,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,8.0505228,8.0285892,2.0537851,0,0,-864.59003,0,3,2,2019,5,0,50,39,1,0,0,5.3168426,5.3168426,0,0,0,0,0,1,1,0,2.36691,2.9146943,67.01000000000001,35.69,-9,-9,0,1,1,0,0,8,12,2,1,1067.3334,-35040.641,-21056.373,0,0,2230.0449 -14515,17868,32320,-9,-9,32319,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-1014.0315,-9,-9,1,2019,11,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.77,52.03,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1067.3334,-35040.641,-21056.373,0,0,2230.0449 -14515,17868,32321,-9,-9,32319,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.06561,-9,-9,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,1,1067.3334,-35040.641,-21056.373,0,0,2230.0449 -14516,17869,32322,-9,32325,32324,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.58368,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 -14516,17869,32323,-9,32325,32324,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.78497,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 -14516,17869,32324,32325,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,7.0499821,6.8194585,0,6,-1,62.434193,0,2,2,2019,7,0,30,30,1,0,0,4.0210485,4.0210485,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,7,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 -14516,17869,32325,32324,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,7.0014081,7.0756421,0,6,1,49.385796,0,2,2,2019,6,0,35,35,1,0,0,3.3760896,3.3760896,0,0,0,0,0,1,1,0,4.4983559,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,7,2,2,1,1344.75,170088.8,-30828.719,138008.7,105966.83,1459.7189 -14517,17870,32326,32327,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.4986115,8.8893909,10,9,88.479393,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.5475206,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,6,5,5,1,150,3380822.3,2302900,259445.81,0,5175.8701 -14517,17870,32327,32326,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.8904166,8.2998142,10,0,-10.135708,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1598692,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,10,5,5,1,150,3380822.3,2302900,259445.81,0,5175.8701 -14518,17871,32328,-9,32330,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.02448,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1451,4297.9141,-178.33594,0,0,2265.3916 -14518,17871,32329,-9,32330,-9,1,0,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.1732,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,1451,4297.9141,-178.33594,0,0,2265.3916 -14518,17871,32330,-9,-9,-9,1,0,29,1,2,0,1,1,-9,0,4,7.6365814,7.8957596,0,0,0,-1151.7494,0,1,2,2019,9,0,40,40,1,0,0,8.1798697,8.1798697,0,0,0,0,0,1,1,0,0,0,48.16,56.21,-9,-9,8.333333333333334,1,1,0,0,5,10,3,0,1451,4297.9141,-178.33594,0,0,2265.3916 -14519,17872,32331,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,4.6593823,5.0116067,0,0,-961.52356,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.5904045,5.2301717,53,44,-9,-9,8,1,1,0,0,0,9,2,0,419,-59520.313,0,0,0,543.54456 -14520,17873,32332,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,5.3863063,5.6601982,0,0,0,-1074.9841,0,2,2,2019,10,0,45,45,1,0,0,.54934096,.54934096,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,11,2,1,1403,110673.93,0,0,0,-221.33461 -14521,17874,32333,-9,32334,32335,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1009.3199,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,437,318197.78,101972.39,452600.28,308205.88,5102.4834 -14521,17874,32334,32335,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.7202883,8.7208204,0,1,-3,3.5644958,-9,-9,-9,2019,11,0,35,0,1,2,0,19.426226,19.426226,0,0,0,0,0,1,1,0,0,0,47,57,49,57,7,2,3,0,0,8,8,5,1,437,318197.78,101972.39,452600.28,308205.88,5102.4834 -14521,17874,32335,32334,32336,-9,1,1,33,0,1,0,1,1,-9,0,4,8.8243942,8.8333893,0,1,3,-57.420189,-9,3,-9,2019,10,0,35,0,1,1,0,25.836885,25.836885,0,0,0,0,2,1,1,0,0,0,49,57,47,57,7,2,3,0,0,11,8,5,1,437,318197.78,101972.39,452600.28,308205.88,5102.4834 -14521,17875,32336,-9,-9,-9,1,0,55,0,1,0,3,3,-9,0,3,0,3.4118471,3.3237026,0,0,-1145.8489,-9,3,3,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,2.9565544,47,49,-9,-9,7,2,3,0,0,0,8,2,1,272,314753.13,-97630.438,231981.84,0,1626.3613 -14522,17876,32337,32338,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.8920226,7.9607477,41,1,26.176329,0,3,3,2019,9,0,0,10,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9047332,49.76,56.93,54.2,57.49,8.333333333333334,1,1,0,0,11,12,4,1,978,1648271,1323705.3,294238.22,0,3580.5967 -14522,17876,32338,32337,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.7894511,7.8981924,41,-1,108.97679,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7378354,54.2,57.49,49.76,56.93,8.333333333333334,1,1,0,0,6,12,4,1,978,1648271,1323705.3,294238.22,0,3580.5967 -14523,17877,32339,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-968.20313,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,0,0,0,4.8313732,0,54,44,-9,-9,8,1,1,0,0,0,6,1,1,291,143569.66,0,0,0,65.600548 -14524,17878,32340,-9,32343,32341,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.4525,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 -14524,17878,32341,32343,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.6297312,9.5766201,0,16,13,90.698502,0,3,2,2019,7,0,50,60,1,0,0,37.722309,37.722309,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,10,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 -14524,17878,32342,-9,32343,32341,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.238,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 -14524,17878,32343,32341,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.8556213,7.7928319,0,16,-13,-18.293291,0,1,1,2019,9,0,26,55,1,0,0,12.655926,12.655926,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,784.75,1765208.4,784210.88,532705.44,0,7769.5645 -14525,17879,32344,32345,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.1085997,8.162549,0,13,3,41.249554,0,2,2,2019,8,0,44,47,1,0,0,8.5746641,8.5746641,0,0,0,0,0,1,1,0,0,0,50.38,44.32,57.16,56.15,8.333333333333334,3,4,0,0,10,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 -14525,17879,32345,32344,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.0741663,7.7743816,0,13,-3,51.305634,0,1,1,2019,9,0,30,30,1,0,0,12.877765,12.877765,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.38,44.32,8.333333333333334,3,4,0,0,10,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 -14525,17879,32346,-9,32345,32344,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.4821,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 -14525,17879,32347,-9,32345,32344,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.1404,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,1.7380239,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,1155.25,669445.13,84153.781,813367,297273.31,3202.3577 -14526,17880,32348,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.9707522,6.5800085,0,0,-1062.2914,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,7.1980519,0,0,1,1,0,2.07095,6.7044854,42.16,36.22,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1083,343091.91,124481.25,232152.66,0,1067.0404 -14527,17881,32349,-9,32351,32350,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.57996,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,627.33331,711275.06,383885.03,531043.31,153167.67,5195.105 -14527,17881,32350,32351,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.88521,8.9562225,0,14,-2,33.934254,0,-9,-9,2019,6,0,38,40,1,0,0,24.520292,24.520292,0,0,0,0,0,1,1,0,5.3728218,0,51.83,57.2,42.34,48.1,6.666666666666667,1,1,0,0,10,7,5,1,627.33331,711275.06,383885.03,531043.31,153167.67,5195.105 -14527,17881,32351,32350,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.702857,8.6721735,0,14,2,-140.5038,0,2,1,2019,22,10,40,37,1,10,0,19.584629,19.584629,0,0,0,0,0,1,1,0,4.4268904,0,42.34,48.1,51.83,57.2,8.333333333333334,1,1,0,0,10,7,5,1,627.33331,711275.06,383885.03,531043.31,153167.67,5195.105 -14528,17882,32352,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-983.01855,0,2,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,41.82,31.05,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,2442,-275805.69,96807.969,0,0,1408.0862 -14529,17883,32353,32355,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.3585291,6.9796462,0,17,3,4.0236292,0,-9,2,2019,2,0,16,16,1,0,0,11.229522,11.229522,0,0,0,0,0,1,1,0,6.2184567,0,54.79,55.86,43.35,57.8,8.333333333333334,1,1,0,0,11,4,4,1,469.66666,278406.34,-19631.455,260344.83,0,3301.8381 -14529,17883,32354,-9,32353,32355,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.76404,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,469.66666,278406.34,-19631.455,260344.83,0,3301.8381 -14529,17883,32355,32353,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.5681162,8.6626711,0,17,-3,85.435966,0,-9,-9,2019,9,0,55,55,1,0,0,13.264925,13.264925,0,0,0,0,0,1,1,0,0,0,43.35,57.8,54.79,55.86,8.333333333333334,1,1,0,0,10,4,4,1,469.66666,278406.34,-19631.455,260344.83,0,3301.8381 -14530,17884,32356,32357,-9,-9,1,0,51,0,1,0,3,3,-9,0,2,7.7028518,7.9649196,0,9,-1,-44.711685,0,-9,-9,2019,9,0,37,30,1,0,0,6.895618,6.895618,0,0,0,0,0,1,1,0,0,0,36.69,33.45,39.2,61.5,1.666666666666667,1,1,0,0,12,2,4,1,247,15595.625,70641.344,164922,30189.586,2810.4653 -14530,17884,32357,32356,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,7.8583698,7.9848409,0,25,1,143.48935,0,2,2,2019,11,0,40,40,1,0,0,8.6452932,8.6452932,0,0,0,0,2,1,1,0,0,0,39.2,61.5,36.69,33.45,8.333333333333334,1,1,0,0,12,2,4,1,247,15595.625,70641.344,164922,30189.586,2810.4653 -14531,17885,32358,-9,32359,32360,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.61285,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,1679.3334,39511.566,30218.668,0,0,1303.8955 -14531,17885,32359,32360,-9,-9,1,0,23,1,1,0,2,2,-9,0,5,6.2978568,5.9930263,0,2,-4,-44.670929,0,2,-9,2019,6,0,8,8,1,0,0,6.2154784,6.2154784,0,0,0,0,0,1,1,0,0,0,57.65,56.13,52.24,50.75,8.333333333333334,1,1,0,0,3,13,2,0,1679.3334,39511.566,30218.668,0,0,1303.8955 -14531,17885,32360,32359,-9,-9,1,1,27,1,1,0,3,3,-9,0,2,6.7656984,7.1407299,0,2,4,20.037378,0,-9,-9,2019,7,1,16,16,1,1,0,6.8959298,6.8959298,0,0,0,0,0,1,1,0,0,0,52.24,50.75,57.65,56.13,8.333333333333334,1,1,0,0,7,13,2,0,1679.3334,39511.566,30218.668,0,0,1303.8955 -14532,17886,32361,-9,32363,32362,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1000.4482,-9,2,2,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,674,379556.84,260550.64,103212.53,66354.969,3078.6272 -14532,17886,32362,32363,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.4625554,7.9427319,6.4879594,33,4,125.14436,0,-9,-9,2019,7,0,55,40,1,0,0,2.7740395,2.7740395,0,0,0,0,0,1,1,0,3.9910014,6.2772417,60.38,27.68,62.51,39.17,8.333333333333334,1,1,0,0,10,5,3,1,674,379556.84,260550.64,103212.53,66354.969,3078.6272 -14532,17886,32363,32362,32364,-9,1,0,51,0,0,0,2,2,-9,0,2,7.2400584,7.1667418,0,33,-4,28.179344,0,2,2,2019,12,0,22,25,1,0,0,6.8053389,6.8053389,0,0,0,0,0,1,1,0,0,0,62.51,39.17,60.38,27.68,5,1,1,0,0,13,5,3,1,674,379556.84,260550.64,103212.53,66354.969,3078.6272 -14532,17887,32364,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.4264545,6.5476832,0,0,-883.35901,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7884059,44.42,52.34,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2971,639446.75,450175.03,137482.66,0,592.8783 -14533,17888,32365,32366,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,4.2475686,4.5252862,10,13,29.873341,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,9.4119091,3.9886944,33.37,50.05,50.6,49.54,6.666666666666667,2,3,0,0,0,6,2,1,205.5,291373.63,114688.88,161607.91,0,5026.897 -14533,17888,32366,32365,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,10,-13,91.894241,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.6,49.54,33.37,50.05,3.333333333333333,2,3,0,1,6,6,2,1,205.5,291373.63,114688.88,161607.91,0,5026.897 -14533,17889,32367,-9,32366,32365,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-971.30042,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,5.0256104,0,47,60,-9,-9,7,2,3,0,0,0,6,1,1,2552,493660.5,0,0,0,783.32733 -14534,17890,32368,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,2,0,0,0,0,0,-999.0448,0,3,-9,2019,22,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,41.6,19.2,-9,-9,1.666666666666667,1,1,0,1,3,6,1,0,789,-189748.17,0,0,0,-57.170746 -14535,17891,32369,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,6.092896,6.0285635,0,0,-1003.3109,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7252417,57.75,22.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1088,123927.58,31554.098,193248.28,0,878.37897 -14536,17892,32370,-9,32373,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.95654,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,821,80101.719,0,0,0,1267.5093 -14536,17892,32371,-9,32373,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-951.58423,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,821,80101.719,0,0,0,1267.5093 -14536,17892,32372,-9,32373,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1146.9222,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,821,80101.719,0,0,0,1267.5093 -14536,17892,32373,-9,-9,-9,1,0,29,1,3,0,2,2,0,0,4,0,4.757884,4.8809767,0,0,-948.3371,-9,1,2,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,5.3753185,0,43.55,46.04,-9,-9,5,1,1,0,1,0,6,2,0,821,80101.719,0,0,0,1267.5093 -14537,17893,32374,32375,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,57,-2,16.342705,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1528921,0,55.37,32.8,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,283,909713.13,592074.94,425680.63,0,3451.1934 -14537,17893,32375,32374,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.5307379,8.1970081,57,2,-57.919868,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7895145,8.5671835,57.16,56.15,55.37,32.8,8.333333333333334,1,1,0,0,0,5,4,1,283,909713.13,592074.94,425680.63,0,3451.1934 -14538,17894,32376,32377,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.6309571,4.4250464,10,1,28.791136,0,3,-9,2019,9,0,0,0,4,0,0,0,0,1,0,2.7514753,0,0,1,1,0,0,4.6884284,53.23,42.9,55.2,49.4,10,1,1,0,0,5,2,2,1,663.5,432601.75,1321.2822,186415.69,0,2079.5986 -14538,17894,32377,32376,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.0096331,5.8466177,10,-1,49.458603,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0881524,5.6358852,55.2,49.4,53.23,42.9,1.666666666666667,1,1,0,0,8,2,2,1,663.5,432601.75,1321.2822,186415.69,0,2079.5986 -14539,17895,32378,32379,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,44,-11,59.961395,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1421814,0,51,46,50.51,24.58,8,1,1,0,0,0,9,2,1,473.5,405794.56,128550.1,276307.66,0,1716.5857 -14539,17895,32379,32378,-9,-9,1,1,90,0,0,0,3,3,-9,0,1,0,7.4763322,7.1826391,44,11,114.27812,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,4.2159343,0,25.572481,120,1,1,0,0,7.085093,50.51,24.58,51,46,8.333333333333334,1,1,0,0,0,9,2,1,473.5,405794.56,128550.1,276307.66,0,1716.5857 -14540,17896,32380,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.2273226,7.5960231,5.782342,0,0,-1049.0005,0,3,3,2019,6,0,22,22,1,0,0,8.588397,8.588397,0,0,0,0,0,0,0,0,0,5.7279658,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,12,13,3,0,994,-110019.02,43073.984,0,0,540.35919 -14541,17897,32381,32383,-9,-9,1,0,43,0,0,0,2,2,-9,0,1,0,0,0,9,-2,-59.803455,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,18.02,50.75,30.44,50.05,0,1,1,0,1,8,11,4,1,435.33334,910264.63,945218.06,0,0,1820.4858 -14541,17897,32382,-9,32381,32383,1,0,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1072.5427,-9,2,3,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,0,1,1,0,0,1,11,4,1,435.33334,910264.63,945218.06,0,0,1820.4858 -14541,17897,32383,32381,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,8.0203695,8.282485,0,9,2,46.413395,-9,3,3,2019,18,6,41,0,1,6,0,12.05019,12.05019,0,0,0,0,7,1,1,0,0,0,30.44,50.05,18.02,50.75,3.333333333333333,1,1,0,1,10,11,4,1,435.33334,910264.63,945218.06,0,0,1820.4858 -14541,17898,32384,-9,32381,32383,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-951.27692,0,2,3,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,1799,200468.88,0,0,0,253.70378 -14542,17899,32385,-9,-9,-9,1,0,18,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1036.1235,-9,-9,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,.51431596,0,1,1,0,0,0,48.56,56.13,-9,-9,8.333333333333334,1,1,0,1,0,11,1,0,928,-41183.277,0,0,0,0 -14543,17900,32386,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.025825,6.5300446,0,0,-1002.4459,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,1.8336171,6.9272575,60.14,44.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,835,373844.53,181862.06,80383.711,0,922.75922 -14544,17901,32387,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.75877,9.4744301,0,0,0,-1094.6573,0,2,1,2019,6,0,40,70,1,0,0,56.141266,56.141266,0,0,0,0,0,1,1,0,10.287775,0,58.15,52.91,-9,-9,1.666666666666667,1,1,0,0,9,9,5,0,684,318087.63,40421.391,235616.98,25072.188,30412.891 -14545,17902,32388,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.2915258,8.9295292,0,0,0,-1076.9409,0,1,2,2019,14,4,52,42,1,4,0,20.760124,20.760124,0,0,0,0,0,0,0,0,4.1035528,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,7,9,5,0,919,1029212.9,308729.38,152329.59,0,3444.7444 -14546,17903,32389,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,4,6.7974753,7.086782,0,0,0,-892.28375,0,2,2,2019,8,0,16,0,1,0,0,7.6413212,7.6413212,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,691.75,24905.461,0,0,0,1464.5569 -14546,17903,32390,-9,32389,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.064,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,691.75,24905.461,0,0,0,1464.5569 -14546,17903,32391,-9,32389,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.765,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,691.75,24905.461,0,0,0,1464.5569 -14546,17903,32392,-9,32389,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-892.4696,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,691.75,24905.461,0,0,0,1464.5569 -14547,17904,32393,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,5,9.8311157,9.7265806,0,0,0,-1038.3772,0,2,2,2019,7,0,46,50,1,0,0,44.335892,44.335892,0,0,0,0,0,0,0,0,3.1838126,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,375,691040.81,211933.47,0,0,4791.3008 -14548,17905,32394,-9,-9,-9,1,0,54,1,1,0,2,2,-9,1,1,0,0,0,0,0,-896.80121,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.17,15.39,-9,-9,1.666666666666667,1,1,0,0,5,2,1,0,184,-25134.951,-35705.863,0,0,1234.8339 -14548,17906,32395,-9,32394,-9,1,0,19,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1021.9361,1,2,-9,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,2,1,1,0,0,0,25.16,59.67,-9,-9,5,1,1,0,0,0,2,1,0,598.5,-21559.484,0,0,0,247.24281 -14548,17906,32396,-9,32395,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.4362,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,598.5,-21559.484,0,0,0,247.24281 -14549,17907,32397,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8066664,8.6813917,0,1,1,93.310837,-9,1,1,2019,9,0,35,0,1,0,0,21.954069,21.954069,0,0,0,0,7,1,1,0,0,0,47.46,52.7,26,27.57,8.333333333333334,1,1,0,0,9,1,4,1,1429,124964.79,4674.4907,153814.7,154761.11,2556.8145 -14549,17908,32398,-9,-9,-9,1,1,35,0,0,0,2,2,-9,1,1,0,0,0,1,-1,-44.716415,-9,2,2,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,5.9090996,0,26,27.57,47.46,52.7,1.666666666666667,1,1,0,1,0,1,4,1,1398,133096.3,0,0,0,959.53192 -14549,17909,32399,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.6419969,7.9029131,0,0,0,-956.33484,-9,-9,-9,2019,10,1,40,0,1,1,0,7.0975552,7.0975552,0,0,0,0,0,1,1,0,0,0,40.91,49.9,-9,-9,3.333333333333333,1,1,0,0,0,1,3,1,801,275703.78,-77120.734,126680.59,0,1059.5579 -14550,17910,32400,-9,32402,32401,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.7367,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 -14550,17910,32401,32402,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.6352386,9.3764,0,10,1,5.8804221,0,2,1,2019,9,0,85,50,1,0,0,23.407257,23.407257,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.65,60.47,8.333333333333334,2,3,0,0,7,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 -14550,17910,32402,32401,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,10,-1,-80.837639,0,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,7.3319216,0,50.65,60.47,54.2,57.49,8.333333333333334,2,3,0,0,2,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 -14550,17910,32403,-9,32402,32401,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.1406,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,408.25,566287.63,262215.09,615333.44,374481.28,4672 -14551,17911,32404,-9,32407,32405,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.3525,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 -14551,17911,32405,32407,-9,-9,1,1,51,1,2,0,2,2,-9,0,5,7.8947005,8.0662823,0,3,18,76.170143,0,2,1,2019,12,0,50,40,1,0,0,7.2807727,7.2807727,0,0,0,0,0,1,1,0,0,0,41.6,60.78,51.83,57.2,8.333333333333334,1,1,0,0,11,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 -14551,17911,32406,-9,32407,32405,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.5319,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 -14551,17911,32407,32405,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.9767685,7.8144097,0,3,-18,-60.157898,0,-9,-9,2019,12,0,24,24,1,0,0,12.385046,12.385046,0,0,0,0,0,1,1,0,6.3533263,0,51.83,57.2,41.6,60.78,8.333333333333334,1,1,0,0,6,2,3,0,740,351612.91,33391.391,169073.92,38496.023,2958.4753 -14552,17912,32408,-9,32410,32409,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-970.50311,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 -14552,17912,32409,32410,-9,-9,1,1,39,0,4,0,2,2,-9,0,1,0,0,0,8,0,75.418068,-9,2,3,2019,19,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,3.4792542,0,30.26,18.9,54.1,59.11,1.666666666666667,1,1,1,0,5,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 -14552,17912,32410,32409,-9,-9,1,0,39,0,4,0,1,1,-9,0,5,7.9067063,7.9844351,0,8,0,31.391743,-9,2,1,2019,12,0,30,0,1,0,0,8.4830017,8.4830017,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,30.26,18.9,6.666666666666667,1,1,0,0,9,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 -14552,17912,32411,-9,32410,32409,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-895.79095,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,1,824.25,-29403.152,-11881.776,0,0,2386.5181 -14553,17913,32412,32413,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,8.1055164,7.9333653,0,25,6,217.45248,-9,3,3,2019,10,0,24,0,1,1,0,15.502301,15.502301,0,0,0,0,0,0,0,0,3.1977177,0,50,49,47,49,7,2,3,0,0,13,4,3,1,1271,497298.5,158608.25,186245.75,0,1044.2148 -14553,17913,32413,32412,-9,-9,1,0,54,0,1,0,3,3,-9,0,3,0,0,0,25,-6,11.139894,-9,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,49,50,49,7,2,3,0,0,0,4,3,1,1271,497298.5,158608.25,186245.75,0,1044.2148 -14553,17914,32414,-9,32413,32412,1,1,31,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1020.1874,-9,3,1,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,1,0,6,4,1,1,379,0,0,0,0,0 -14553,17915,32415,-9,32413,32412,1,1,27,0,1,0,1,1,-9,0,4,8.4881105,8.9823322,0,0,0,-877.35675,-9,3,1,2019,10,0,30,0,1,1,1,17.065233,17.065233,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,2,3,0,0,7,4,5,1,1603,312831.44,62877.543,0,0,1606.4828 -14553,17916,32416,-9,32413,32412,1,1,23,0,1,0,2,2,-9,0,4,7.9787626,8.0447893,0,0,0,-934.62726,-9,3,1,2019,11,0,39,0,1,1,1,7.5112524,7.5112524,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,4,4,1,1110,215970.63,0,0,0,1367.6331 -14553,17917,32417,-9,32413,32412,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-935.19952,-9,3,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,2,3,0,0,0,4,1,1,176,-31725.773,0,0,0,0 -14553,17918,32418,-9,32413,32412,1,1,25,0,1,0,3,3,-9,0,4,0,0,0,0,0,-918.94574,-9,3,1,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,1,0,2,4,2,1,194,0,0,0,0,0 -14553,17919,32419,-9,32413,32412,1,1,24,0,1,0,3,3,-9,0,4,7.7865,8.0205898,0,0,0,-960.94934,-9,3,1,2019,10,0,47,0,1,1,1,7.7595749,7.7595749,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,4,4,3,1,473,-106950.38,-78210.523,0,0,1569.2994 -14554,17920,32420,32421,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.5643563,8.1168251,9,-1,6.6798668,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1385083,7.51545,61.85,44.55,58.15,52.91,8.333333333333334,1,1,0,0,6,1,3,0,667.5,1892759.8,596384.25,423319.91,0,2356.0139 -14554,17920,32421,32420,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.1230397,4.1099944,9,1,13.157364,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4477978,58.15,52.91,61.85,44.55,8.333333333333334,1,1,0,0,6,1,3,0,667.5,1892759.8,596384.25,423319.91,0,2356.0139 -14555,17921,32422,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.484365,6.6185436,0,0,-997.55688,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.192205,61.53,28.84,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,805,95355.469,-67323.492,-6151.0591,0,1436.3134 -14556,17922,32423,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,4.318408,4.5363779,0,0,-1096.1715,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2960911,53.54,49.68,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,458,1104232.1,0,213311.48,0,553.67938 -14556,17923,32424,-9,32425,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.83698,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1322.5,324325.41,66040.906,0,0,2064.895 -14556,17923,32425,-9,32423,-9,1,0,42,0,2,0,2,2,-9,1,2,0,4.6927834,4.8296638,0,0,-1079.7576,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,4.8126884,0,35.56,33.98,-9,-9,5,1,1,0,0,0,10,2,1,1322.5,324325.41,66040.906,0,0,2064.895 -14557,17924,32426,32427,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.1240644,8.9375563,0,23,2,75.675545,-9,2,2,2019,11,0,45,0,1,0,0,19.978159,19.978159,0,0,0,0,7,1,1,0,0,0,44.63,47.03,57.06,57.76,5,4,2,0,0,11,6,5,0,272.5,4089119,39647.125,340467.56,0,6096.7012 -14557,17924,32427,32426,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.2539024,8.9486399,0,30,-2,-61.655766,-9,2,-9,2019,0,0,37,0,1,0,0,23.540833,23.540833,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.63,47.03,8.333333333333334,4,2,0,0,12,6,5,0,272.5,4089119,39647.125,340467.56,0,6096.7012 -14558,17925,32428,-9,32429,32430,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1051.7878,-9,1,1,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,0,2,4,0,1520,2202612.8,121730.94,232442.94,45438.781,3034.2722 -14558,17925,32429,32430,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,7.4495668,7.5098796,0,14,1,-117.32149,0,2,1,2019,8,0,35,25,1,0,0,5.6337976,5.6337976,0,0,0,0,0,1,1,0,0,0,57.81,47.76,47.66,52.33,8.333333333333334,1,1,0,0,1,2,4,0,1520,2202612.8,121730.94,232442.94,45438.781,3034.2722 -14558,17925,32430,32429,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.6140022,8.5564137,0,14,-1,7.0248308,0,2,2,2019,10,0,39,38,1,0,0,13.268378,13.268378,0,0,0,0,0,1,1,0,0,0,47.66,52.33,57.81,47.76,6.666666666666667,1,1,0,0,10,2,4,0,1520,2202612.8,121730.94,232442.94,45438.781,3034.2722 -14559,17926,32431,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6741877,7.9643264,5.9563818,0,0,-901.62354,0,3,3,2019,11,1,37,37,1,1,0,8.6025944,8.6025944,0,0,0,0,0,0,0,0,0,6.3465333,45.51,48.29,-9,-9,3.333333333333333,1,1,0,1,5,1,4,1,1884,169318.45,57137.234,0,0,1528.9961 -14559,17927,32432,-9,32431,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1045.4982,-9,2,3,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.12,53.02,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,342,62432.527,0,0,0,581.64606 -14559,17928,32433,-9,32431,-9,1,1,26,0,0,0,2,2,0,0,2,0,0,0,0,0,-990.20874,-9,2,3,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,33.16,54.24,-9,-9,3.333333333333333,1,1,0,1,1,1,1,1,264,-210857.16,0,0,0,0 -14560,17929,32434,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.4080291,7.8180642,4.83075,0,0,-1009.2733,0,3,3,2019,13,3,27,27,1,3,0,7.2707853,7.2707853,0,0,0,0,0,0,0,0,6.1047516,0,50.89,39.81,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,642,421695.78,0,226317.2,0,668.89203 -14560,17930,32435,-9,32434,-9,1,1,25,0,0,0,2,2,-9,0,3,8.0256157,8.5353308,0,0,0,-1061.5834,0,3,-9,2019,14,2,43,40,1,2,1,8.4855328,8.4855328,0,0,0,0,0,0,0,0,0,0,25.06,66.61,-9,-9,3.333333333333333,1,1,0,0,5,9,4,1,1065,171953.92,-36371.656,0,0,1273.9764 -14560,17931,32436,-9,32434,-9,1,1,21,0,0,0,2,2,-9,0,4,8.4641342,8.2726736,0,0,0,-943.85443,0,3,-9,2019,7,0,40,42,1,0,1,10.501954,10.501954,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,412,436944.81,0,0,0,2651.1011 -14561,17932,32437,32438,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.353106,6.8354726,0,41,2,-26.077621,0,2,2,2019,12,0,25,24,1,0,0,5.6256375,5.6256375,0,0,0,0,2,0,0,0,0,0,52.65,48.94,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,844,1609201.5,833206.25,590432,0,3005.0981 -14561,17932,32438,32437,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5464497,8.2441959,5.2717834,41,-2,-198.33202,0,3,2,2019,10,0,55,60,1,0,0,9.2474852,9.2474852,0,0,0,0,0,0,0,0,5.6628375,5.126009,58.32,50.22,52.65,48.94,6.666666666666667,1,1,0,0,11,9,5,1,844,1609201.5,833206.25,590432,0,3005.0981 -14562,17933,32439,32440,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,44,-8,-.56338888,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,2,1,1,0,.078728989,0,35.73,47.19,59.29,49.68,8.333333333333334,1,1,0,0,3,4,2,1,402.5,179236.66,145691.66,103833.83,0,983.73413 -14562,17933,32440,32439,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.1712298,5.540442,44,8,11.924947,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1590214,5.3607898,59.29,49.68,35.73,47.19,8.333333333333334,1,1,0,0,6,4,2,1,402.5,179236.66,145691.66,103833.83,0,983.73413 -14563,17934,32441,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,0,6.2244196,5.8201723,0,0,-1021.7457,0,2,2,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,5.8022718,45.01,48.3,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,706,755087,57099.613,420303.41,0,2030.484 -14564,17935,32442,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.6505928,8.8253679,0,0,0,-1055.4559,0,3,3,2019,9,1,46,40,1,1,0,12.036603,12.036603,0,0,0,0,0,0,0,0,4.8139229,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,375,574597.81,436326.72,244561.39,0,2186.0374 -14565,17936,32443,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.0719237,5.0396824,0,0,-992.59723,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4083874,5.2828145,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1824,378910.88,30610.785,127477.29,0,1107.1008 -14566,17937,32444,32447,-9,-9,1,1,55,0,2,0,2,2,-9,1,1,7.4585099,7.385088,0,3,12,-5.0901909,0,-9,-9,2019,10,0,30,0,1,0,0,6.6191988,6.6191988,0,0,0,0,0,1,1,0,0,0,64.23,12.88,49.58,55.59,3.333333333333333,1,1,0,0,1,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 -14566,17937,32445,-9,32447,32444,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1042.8528,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 -14566,17937,32446,-9,32447,32444,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-939.13922,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 -14566,17937,32447,32444,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.9718723,7.9502325,6.3427281,3,-12,22.337769,0,2,2,2019,11,1,35,38,1,1,0,10.44311,10.44311,0,0,0,0,0,1,1,0,6.4200578,0,49.58,55.59,64.23,12.88,8.333333333333334,1,1,0,0,9,10,3,1,596.25,1965603.9,628758.75,802891.38,49262.648,3385.2163 -14567,17938,32448,32449,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.9526577,8.8369274,0,15,1,89.742966,0,2,2,2019,18,6,27,30,1,6,0,44.15007,44.15007,0,0,0,0,0,0,0,0,8.9769459,0,35.38,63.46,49.41,58.28,3.333333333333333,1,1,0,0,7,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 -14567,17938,32449,32448,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.4986629,9.9301929,0,15,-1,92.227982,0,-9,-9,2019,5,0,37,45,1,0,0,42.95332,42.95332,0,0,0,0,0,0,0,0,0,0,49.41,58.28,35.38,63.46,6.666666666666667,1,1,0,0,10,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 -14567,17938,32450,-9,32448,32449,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.37817,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 -14567,17938,32451,-9,32448,32449,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.9779,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,980.5,1790890.5,1434976.1,735737.5,324512.31,11269.086 -14568,17939,32452,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.934412,6.9333472,0,0,-1024.4579,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.8868928,42.16,49.45,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,552,661569.13,490807,325589.56,0,1598.4994 -14569,17940,32453,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1069.277,1,2,3,2019,10,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,50.27,38.12,-9,-9,6.666666666666667,1,1,0,0,7,7,1,0,333,116394.13,0,0,0,-702.96783 -14570,17941,32454,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,5.9388862,6.0818338,0,0,-859.81464,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.364758,6.0016026,52.84,45.88,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,439,373656.47,112121.15,186913.86,0,428.91287 -14571,17942,32455,32456,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.2148314,8.2075176,0,27,5,-45.136677,0,3,3,2019,12,0,39,43,1,0,0,10.705078,10.705078,0,0,0,0,0,1,1,0,0,0,51.66,54.88,59.48,44.27,7,1,1,0,0,10,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 -14571,17942,32456,32455,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.2606764,7.292871,0,10,-5,85.831955,0,-9,-9,2019,10,0,18,10,1,0,0,6.5477748,6.5477748,0,0,0,0,0,1,1,0,0,0,59.48,44.27,51.66,54.88,8.333333333333334,1,1,0,0,4,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 -14571,17942,32457,-9,32456,32455,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1014.1435,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 -14571,17942,32458,-9,32456,32455,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.32391,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,940.75,357203.47,546522.19,96086.531,7463.231,2132.8279 -14572,17943,32459,32461,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.7062879,7.9684601,0,19,1,74.116219,0,3,3,2019,7,0,26,25,1,0,0,11.958784,11.958784,0,0,0,0,0,1,1,0,0,0,49.81,59.64,55.36,54.24,6.666666666666667,1,1,0,0,12,8,4,1,287,346126.63,56351.074,441480.66,250459.45,3736.7825 -14572,17943,32460,-9,32459,32461,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.08508,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,1,287,346126.63,56351.074,441480.66,250459.45,3736.7825 -14572,17943,32461,32459,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,9.0437613,9.3890371,0,10,-1,-65.885818,0,-9,-9,2019,9,0,45,47,1,0,0,16.970438,16.970438,0,0,0,0,0,1,1,0,0,0,55.36,54.24,49.81,59.64,8.333333333333334,1,1,0,0,11,8,4,1,287,346126.63,56351.074,441480.66,250459.45,3736.7825 -14573,17944,32462,32463,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.9209719,7.7200737,49,1,-10.890056,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5985389,7.9267025,60.13,49.27,55.19,54.26,10,1,1,0,0,0,10,3,1,570,842379.69,368100.56,275194.59,0,2569.0388 -14573,17944,32463,32462,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,3.8651633,3.8181984,49,-1,-35.35743,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.6131983,4.2268014,55.19,54.26,60.13,49.27,8.333333333333334,1,1,0,0,0,10,3,1,570,842379.69,368100.56,275194.59,0,2569.0388 -14574,17945,32464,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.7283616,7.8795719,0,0,0,-1065.4519,0,2,2,2019,11,0,40,50,1,0,0,8.5187073,8.5187073,0,0,0,0,0,0,0,0,2.1641476,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,418,-141603.94,-20514.621,0,0,1582.6108 -14575,17946,32465,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-863.29352,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,-9,-9,3.333333333333333,3,4,1,0,6,6,1,0,202,537653.06,0,0,0,601.04993 -14576,17947,32466,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,4.308753,4.1918039,0,0,-1064.0668,0,2,2,2019,15,4,0,0,4,4,0,0,0,1,0,11.137861,0,0,1,1,0,4.1836658,4.0506992,27.3,20.24,-9,-9,1.666666666666667,1,1,0,0,1,12,2,1,755,171551.94,-59511.781,144481.92,0,956.15118 -14577,17948,32467,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,9.173008,8.8623114,0,0,0,-963.16827,0,-9,-9,2019,12,0,37,42,1,0,0,20.146801,20.146801,0,0,0,0,0,0,0,0,3.1577308,0,46.91,51.8,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,1418,162063.8,237854.7,206314.13,0,3348.1528 -14577,17949,32468,-9,-9,32467,1,1,26,0,0,0,1,1,-9,0,2,7.2296109,7.5947623,0,0,0,-909.16602,0,-9,2,2019,10,2,25,24,1,2,1,5.9212646,5.9212646,0,0,0,0,27,0,0,0,0,0,46.79,54.53,-9,-9,6.666666666666667,1,1,0,0,4,4,3,1,1174,66974.383,-4542.9014,0,0,365.61517 -14577,17950,32469,-9,-9,32467,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-991.17798,-9,-9,2,2019,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,.94962132,0,58.49,50.2,-9,-9,10,1,1,0,0,0,4,2,1,438,0,0,0,0,490.21704 -14578,17951,32470,32471,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5746603,8.6888933,0,2,-1,82.838089,0,-9,-9,2019,4,0,40,47,1,0,0,14.489089,14.489089,0,0,0,0,0,0,0,0,5.4778147,0,51.81,57.22,49.25,61.25,8.333333333333334,1,1,0,0,3,10,5,0,672,-71718.141,52740.297,0,0,5092.6621 -14578,17951,32471,32470,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6379595,8.5400152,0,2,1,-31.286131,0,-9,-9,2019,7,0,40,40,1,0,0,17.882984,17.882984,0,0,0,0,0,0,0,0,2.5896173,0,49.25,61.25,51.81,57.22,6.666666666666667,1,1,0,0,5,10,5,0,672,-71718.141,52740.297,0,0,5092.6621 -14579,17952,32472,32473,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.2401018,8.2010994,0,3,3,-94.195557,0,3,3,2019,6,0,38,37,1,0,0,14.17833,14.17833,0,0,0,0,0,0,0,0,0,0,49.27,55.11,57.06,57.76,0,1,1,0,0,7,13,4,1,622.5,834766.69,484335.81,91857.516,33628.133,2566.0664 -14579,17952,32473,32472,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.9479885,7.5737062,0,3,-3,-148.3087,0,2,2,2019,11,0,37,50,1,0,0,8.4639549,8.4639549,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.27,55.11,6.666666666666667,1,1,0,0,7,13,4,1,622.5,834766.69,484335.81,91857.516,33628.133,2566.0664 -14579,17953,32474,-9,32473,32472,1,1,19,0,0,0,2,2,-9,0,4,7.9476433,7.9239502,0,0,0,-958.96057,0,2,2,2019,6,0,38,40,1,0,1,6.5638323,6.5638323,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,2793,-272819.75,-55703.535,0,0,1187.3678 -14580,17954,32475,32476,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.4514446,8.4043598,0,36,3,-26.590616,0,3,3,2019,26,10,85,75,1,10,0,5.7834077,5.7834077,0,0,0,0,0,0,0,0,7.5207963,0,21.58,40.37,44.15,55.74,8.333333333333334,1,1,0,0,8,10,4,1,586.5,1461577.5,995262.25,380714.63,0,3287.9668 -14580,17954,32476,32475,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.6498771,7.5835366,0,36,-3,92.375114,0,3,3,2019,22,9,33,33,1,9,0,5.6237478,5.6237478,0,0,0,0,7,0,0,0,2.108237,0,44.15,55.74,21.58,40.37,6.666666666666667,1,1,0,0,8,10,4,1,586.5,1461577.5,995262.25,380714.63,0,3287.9668 -14581,17955,32477,32478,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,32,5,33.554501,0,2,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,2.2755136,0,24.15,39.3,61.52,45.11,3.333333333333333,1,1,0,0,8,13,3,1,466.5,235740.95,286549.44,0,0,2211.6929 -14581,17955,32478,32477,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.3732281,8.125309,0,33,-5,40.849327,0,3,3,2019,8,0,29,27,1,0,0,15.520367,15.520367,0,0,0,0,0,1,1,0,6.4658313,0,61.52,45.11,24.15,39.3,1.666666666666667,1,1,0,0,9,13,3,1,466.5,235740.95,286549.44,0,0,2211.6929 -14582,17956,32479,-9,32480,32482,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.9833,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 -14582,17956,32480,32482,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,6.7586818,6.603837,0,7,-4,83.786674,0,2,2,2019,10,0,18,6,1,0,0,5.6562672,5.6562672,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,1,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 -14582,17956,32481,-9,32480,32482,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.53296,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 -14582,17956,32482,32480,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,8.5730648,8.5654888,0,7,4,-61.558128,0,3,3,2019,8,0,60,50,1,0,0,11.219668,11.219668,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,5,1,1,0,0,8,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 -14582,17956,32483,-9,32480,32482,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.92645,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,751.79999,659187.94,144450.38,426044.19,13736.597,3436.1804 -14583,17957,32484,32486,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,46,2,-101.80849,0,3,1,2019,15,4,0,0,4,4,0,0,0,1,0,150.85034,0,0,1,1,0,0,0,22.6,36.15,50,47,3.333333333333333,2,3,0,0,0,2,2,1,1933.6666,1182228.4,149941.19,1109111.1,100354.16,1875.7583 -14583,17957,32485,-9,32486,32484,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-977.38641,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,1933.6666,1182228.4,149941.19,1109111.1,100354.16,1875.7583 -14583,17957,32486,32484,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,5.2749262,5.0900211,7,-2,37.670334,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.23579024,5.0347786,50,47,22.6,36.15,7,2,3,0,0,0,2,2,1,1933.6666,1182228.4,149941.19,1109111.1,100354.16,1875.7583 -14584,17958,32487,32488,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,9.5378485,9.3876905,0,40,-3,103.97591,0,-9,2,2019,34,12,65,65,1,12,0,25.928709,25.928709,0,0,0,0,0,1,1,0,3.3212359,0,25.71,57.61,54.2,57.49,1.666666666666667,1,1,0,0,11,5,5,1,476.5,3248294,2087368.8,377450.22,0,6796.0605 -14584,17958,32488,32487,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.6360593,7.766108,9,3,7.1201138,0,2,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.8272614,54.2,57.49,25.71,57.61,8.333333333333334,1,1,0,0,9,5,5,1,476.5,3248294,2087368.8,377450.22,0,6796.0605 -14585,17959,32489,32490,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,8.0553856,8.0794077,0,20,9,85.142113,0,3,2,2019,8,0,44,44,1,0,0,10.238774,10.238774,0,0,0,0,0,1,1,0,0,0,58.05,54.52,43,60.68,10,1,1,0,0,8,7,4,0,713,853384.44,594562.38,216322.88,0,2997.969 -14585,17959,32490,32489,-9,-9,1,0,44,0,0,0,3,3,-9,1,5,7.6929107,7.5827432,0,20,0,-42.190868,0,-9,-9,2019,12,1,35,13,1,1,0,7.2296357,7.2296357,0,0,0,0,0,1,1,0,0,0,43,60.68,58.05,54.52,10,1,1,0,0,8,7,4,0,713,853384.44,594562.38,216322.88,0,2997.969 -14586,17960,32491,32492,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.687932,8.9002914,8.4591188,41,3,55.285442,0,2,2,2019,9,0,63,50,1,0,0,3.8398304,3.8398304,0,0,0,0,0,1,1,0,7.9142566,5.048604,57.18,45.76,53.62,40.36,8.333333333333334,1,1,0,0,9,9,5,1,1093.5,2370015.5,1772821.5,665896.94,80938.578,4395.1123 -14586,17960,32492,32491,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.8938384,7.763896,4.8209057,41,-3,-31.002037,0,2,2,2019,9,0,8,28,1,0,0,38.217213,38.217213,0,0,0,0,0,1,1,0,.025268184,5.5934563,53.62,40.36,57.18,45.76,8.333333333333334,1,1,0,0,9,9,5,1,1093.5,2370015.5,1772821.5,665896.94,80938.578,4395.1123 -14587,17961,32493,32495,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.2616925,6.6886115,0,20,-4,-97.885414,0,-9,-9,2019,10,0,13,13,1,0,0,10.68256,10.68256,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.91,50.53,8.333333333333334,1,1,0,1,10,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 -14587,17961,32494,-9,32493,32495,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.0108,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 -14587,17961,32495,32493,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.2781239,8.4817848,0,20,4,-80.912849,0,3,3,2019,15,3,54,52,1,3,0,9.4356871,9.4356871,0,0,0,0,0,1,1,0,0,0,37.91,50.53,57.33,53.46,5,1,1,0,0,10,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 -14587,17961,32496,-9,32493,32495,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.2095,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,647.5,632027.25,129824.13,665139.13,121344.01,2625.9792 -14588,17962,32497,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,0,0,-919.27264,0,2,3,2019,16,5,0,0,4,5,0,0,0,1,2.095566,0,0,0,1,1,0,0,0,37.6,14.31,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,306,209046.81,0,183934.59,0,1887.5444 -14589,17963,32498,32499,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.7817659,8.9663858,0,9,4,7.589416,0,2,2,2019,11,0,35,35,1,0,0,21.083853,21.083853,0,0,0,0,0,0,0,0,6.6371708,0,58.05,54.52,53,55,10,1,1,0,0,12,7,5,1,689.5,2123568,899749.63,763608.56,47046.938,4864.936 -14589,17963,32499,32498,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6283083,9.0387669,0,9,-4,-119.68035,0,-9,-9,2019,9,0,40,40,1,1,0,21.185072,21.185072,0,0,0,0,0,0,0,0,3.3552344,0,53,55,58.05,54.52,8,1,1,0,0,1,7,5,1,689.5,2123568,899749.63,763608.56,47046.938,4864.936 -14590,17964,32500,32501,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,6.3324351,6.5163817,18,4,-43.960552,0,-9,-9,2019,8,1,0,38,4,1,0,0,0,0,0,0,0,7,0,0,0,3.5713692,6.2042313,57.06,57.76,50.34,56.4,8.333333333333334,1,1,0,0,11,1,2,1,238,-1478.2881,108271.32,175630.94,86454.703,647.21686 -14590,17964,32501,32500,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,6.587234,6.9001441,3.3047886,18,-4,1.5165008,0,3,2,2019,11,1,35,35,1,1,0,2.9019907,2.9019907,0,0,0,0,2,0,0,0,0,3.824847,50.34,56.4,57.06,57.76,8.333333333333334,1,1,0,0,9,1,2,1,238,-1478.2881,108271.32,175630.94,86454.703,647.21686 -14591,17965,32502,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.7853103,8.0086937,0,0,-1041.2748,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.47606826,8.1068869,52.4,55.58,-9,-9,10,1,1,0,0,4,11,4,1,457,376921.06,493529.78,166691.41,0,1919.0951 -14592,17966,32503,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.0477328,6.2390113,0,0,-983.30518,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0430999,5.9435525,60.12,54.8,-9,-9,10,1,1,0,0,0,12,2,1,636,73779.523,-21909.826,115483.01,0,24.363871 -14593,17967,32504,32505,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.5657682,9.2350559,0,15,-3,39.585823,0,-9,-9,2019,9,0,40,40,1,0,0,36.357388,36.357388,0,0,0,0,0,0,0,0,5.583075,0,48.29,52.15,39.88,52.43,6.666666666666667,1,1,0,0,11,2,5,1,511,1891703.5,1418316.8,247050.25,161973.11,5687.4463 -14593,17967,32505,32504,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.431963,8.5403395,0,15,3,-79.2575,0,-9,-9,2019,11,0,40,40,1,0,0,14.185604,14.185604,0,0,0,0,0,0,0,0,5.6750493,0,39.88,52.43,48.29,52.15,8.333333333333334,1,1,0,0,10,2,5,1,511,1891703.5,1418316.8,247050.25,161973.11,5687.4463 -14594,17968,32506,32507,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,37,0,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,37.56,19.73,32.57,20.42,5,1,1,0,0,0,1,2,0,672,90409.617,0,0,0,3779.1396 -14594,17968,32507,32506,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,37,0,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,32.57,20.42,37.56,19.73,5,1,1,0,0,0,1,2,0,672,90409.617,0,0,0,3779.1396 -14595,17969,32508,-9,32509,32510,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.2711,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,5,1,363,1197124.1,410551.03,465024,101716.31,4431.9258 -14595,17969,32509,32510,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.5932941,8.0389538,0,15,-4,62.718506,0,3,1,2019,7,0,38,0,1,0,0,8.7906103,8.7906103,0,0,0,0,0,0,0,0,3.443413,0,54.64,47.79,54.79,55.86,8.333333333333334,2,3,0,0,2,2,5,1,363,1197124.1,410551.03,465024,101716.31,4431.9258 -14595,17969,32510,32509,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.0859375,9.3881912,0,15,4,72.809647,0,2,1,2019,8,0,38,38,1,0,0,33.599667,33.599667,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.64,47.79,6.666666666666667,2,3,0,0,9,2,5,1,363,1197124.1,410551.03,465024,101716.31,4431.9258 -14596,17970,32511,-9,32513,32512,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-893.25555,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,3,0,707.66669,305028.56,-3230.5017,400921.91,0,1802.7638 -14596,17970,32512,32513,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,6.4838037,6.2546082,0,22,13,184.25578,0,2,-9,2019,8,0,43,40,1,0,0,1.859026,1.859026,0,0,0,0,0,1,1,0,0,0,61.28,48.88,60.29,52.11,5,1,1,0,0,11,8,3,0,707.66669,305028.56,-3230.5017,400921.91,0,1802.7638 -14596,17970,32513,32512,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.2579536,8.4525681,0,22,-13,-122.37576,0,-9,-9,2019,9,0,45,11,1,0,0,8.0684061,8.0684061,0,0,0,0,0,1,1,0,0,0,60.29,52.11,61.28,48.88,8.333333333333334,1,1,0,0,12,8,3,0,707.66669,305028.56,-3230.5017,400921.91,0,1802.7638 -14596,17971,32514,-9,32513,32512,1,1,19,0,1,0,2,2,1,0,4,7.9933147,8.3833094,0,0,0,-1092.8271,-9,2,3,2019,7,1,35,0,1,1,1,7.6484241,7.6484241,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,1482,-421884.06,22616.209,0,0,1181.4631 -14597,17972,32515,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.5752916,8.8836088,0,0,0,-1166.9565,0,2,2,2019,8,0,36,36,1,0,0,17.307262,17.307262,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,473,1100827.6,670680.19,232343.75,0,1716.9666 -14598,17973,32516,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.6756811,7.4951401,0,0,0,-1073.3439,0,2,1,2019,12,0,35,35,1,0,0,6.2611375,6.2611375,0,0,0,0,0,0,0,0,2.0795267,0,56.1,49.93,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,88,96576.719,-7071.3281,0,0,663.56696 -14599,17974,32517,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,9.649684,9.8814592,0,0,0,-1093.7646,0,3,3,2019,3,0,48,40,1,0,0,38.619324,38.619324,0,0,0,0,2,0,0,0,0,0,69.18000000000001,41.33,-9,-9,0,2,3,0,0,9,8,5,0,319,499764.34,0,316291.72,3392.3564,9570.0605 -14600,17975,32518,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,0,0,0,0,0,-975.49701,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,2,0,0,0,0,0,46.62,58.62,-9,-9,6.666666666666667,2,3,1,0,8,8,1,1,959,0,0,0,0,0 -14601,17976,32519,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1027.4535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,1019,-178854.66,-27764.313,0,0,1713.3785 -14602,17977,32520,32521,-9,-9,1,0,58,0,0,0,1,1,-9,1,3,6.518939,6.3753157,0,37,-6,22.712952,0,3,2,2019,27,12,11,29,1,12,0,6.1688018,6.1688018,0,0,0,0,74.5,1,1,0,3.08395,0,26.65,51,42.46,24.25,1.666666666666667,1,1,0,0,10,9,2,0,808.5,1154574,549725.38,739959.25,90508.688,2251.3337 -14602,17977,32521,32520,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,6.1619024,6.5158029,37,6,20.275295,0,3,2,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,6.5100832,42.46,24.25,26.65,51,5,1,1,0,0,3,9,2,0,808.5,1154574,549725.38,739959.25,90508.688,2251.3337 -14603,17978,32522,32523,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.4699974,8.5858021,0,3,0,56.376972,0,-9,-9,2019,9,0,37,37,1,0,0,14.322317,14.322317,0,0,0,0,0,0,0,0,2.4701624,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,7,2,5,1,4562.5,127330.24,-46850.676,210432.66,205569.13,3464.4578 -14603,17978,32523,32522,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3212786,8.5596638,0,3,0,13.355188,0,1,1,2019,16,5,35,35,1,5,0,17.077257,17.077257,0,0,0,0,0,0,0,0,1.8611547,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,9,2,5,1,4562.5,127330.24,-46850.676,210432.66,205569.13,3464.4578 -14604,17979,32524,32525,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.4883013,6.47298,53,9,17.705353,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.1300645,6.4152164,51.49,24.48,52.99,51.28,5,1,1,0,0,9,2,2,1,680.5,116174.34,96780.195,184161.75,0,2028.0916 -14604,17979,32525,32524,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,6.9222975,6.8627396,2.864671,53,0,-35.283241,0,3,3,2019,12,1,40,40,1,1,0,3.4214332,3.4214332,0,0,0,0,14.5,1,1,0,3.3422227,3.1319392,52.99,51.28,51.49,24.48,6.666666666666667,1,1,0,0,10,2,2,1,680.5,116174.34,96780.195,184161.75,0,2028.0916 -14605,17980,32526,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.0327158,5.9324841,0,0,-1065.7804,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,9.43507,6.1214089,55.61,50.3,-9,-9,8.333333333333334,4,2,0,0,9,8,2,1,560,-16260.637,116526.62,0,0,5959.3638 -14606,17981,32527,32528,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,10,-1,-78.007561,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,8,2,0,1175,1123981,58598.215,1009580.2,0,2493.647 -14606,17981,32528,32527,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.2481618,6.3173165,10,1,-12.792079,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.7402315,6.6962585,53,47,51,46,7,1,1,0,0,0,8,2,0,1175,1123981,58598.215,1009580.2,0,2493.647 -14607,17982,32529,32530,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.7122068,7.6099653,0,2,-11,24.090652,0,-9,-9,2019,8,0,37,37,1,0,0,6.9557981,6.9557981,0,0,0,0,0,1,0,1,0,0,61.94,37.61,56.19,46.16,8.333333333333334,1,1,0,0,1,13,3,0,245.5,382824,245634.25,152710.81,40703.203,1738.7058 -14607,17982,32530,32529,-9,-9,1,1,50,0,0,0,3,3,-9,0,2,7.1582851,6.8638659,0,2,11,52.947605,0,3,3,2019,8,0,20,20,1,0,0,7.2685008,7.2685008,0,0,0,0,0,1,0,1,0,0,56.19,46.16,61.94,37.61,8.333333333333334,1,1,0,0,9,13,3,0,245.5,382824,245634.25,152710.81,40703.203,1738.7058 -14608,17983,32531,32532,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,10,2,-38.063595,-9,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.99,32.56,60.29,38.88,6.666666666666667,1,1,1,0,0,1,3,1,1070.5,412410.13,39294.656,101111.19,0,1674.6582 -14608,17983,32532,32531,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9615951,7.4989996,0,10,-2,91.535759,-9,3,2,2019,9,0,16,0,1,0,0,15.976249,15.976249,0,0,0,0,0,1,1,0,0,0,60.29,38.88,56.99,32.56,8.333333333333334,1,1,0,0,10,1,3,1,1070.5,412410.13,39294.656,101111.19,0,1674.6582 -14609,17984,32533,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,0,0,-963.59851,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.27925012,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,351,380178.53,0,153270.59,0,418.42358 -14610,17985,32534,32536,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,8.990365,9.158021,0,27,1,78.951797,0,2,1,2019,10,0,42,42,1,0,0,28.628296,28.628296,0,0,0,0,0,1,1,0,0,0,53.48,53.71,48.74,60.18,8.333333333333334,1,1,0,0,10,2,5,1,456.33334,1402911.9,719724.5,379762.44,11793.355,4745.335 -14610,17985,32535,-9,32536,32534,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-863.44855,-9,1,1,2019,24,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,15.66,67,-9,-9,1.666666666666667,1,1,0,0,1,2,5,1,456.33334,1402911.9,719724.5,379762.44,11793.355,4745.335 -14610,17985,32536,32534,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.2610168,8.3811035,0,31,-1,-9.7703381,0,2,1,2019,9,1,41,40,1,1,0,10.915878,10.915878,0,0,0,0,0,1,1,0,6.6128068,0,48.74,60.18,53.48,53.71,8.333333333333334,1,1,0,0,9,2,5,1,456.33334,1402911.9,719724.5,379762.44,11793.355,4745.335 -14610,17986,32537,-9,32536,32534,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-891.44452,1,1,1,2019,10,1,0,47,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,1608,-42550.91,0,0,0,0 -14611,17987,32538,32539,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,9,-2,40.711266,0,2,1,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41,40,35.44,44.74,5,2,3,0,0,0,2,3,1,390,166639.8,26988.572,81489.969,18792.885,1813.4551 -14611,17987,32539,32538,-9,-9,1,1,44,0,1,0,3,3,-9,0,3,8.6040964,8.3599844,0,9,2,17.115067,0,2,2,2019,13,1,60,50,1,1,0,8.6092815,8.6092815,0,0,0,0,14.5,1,1,0,0,0,35.44,44.74,41,40,3.333333333333333,2,3,0,0,10,2,3,1,390,166639.8,26988.572,81489.969,18792.885,1813.4551 -14611,17987,32540,-9,32538,32539,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1045.5667,-9,3,3,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,7,1,1,0,0,0,26.07,59.74,-9,-9,3.333333333333333,2,3,0,0,0,2,3,1,390,166639.8,26988.572,81489.969,18792.885,1813.4551 -14611,17988,32541,-9,32538,32539,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-895.87103,-9,3,3,2019,9,0,0,0,2,1,1,0,0,0,0,0,0,27,1,1,0,0,0,45.12,62.24,-9,-9,8.333333333333334,2,3,0,0,2,2,1,1,1185,0,0,0,0,0 -14612,17989,32542,32543,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.7562742,8.9350986,0,10,6,11.28732,0,2,2,2019,11,1,40,39,1,1,0,22.940487,22.940487,0,0,0,0,0,1,1,0,0,0,52,54.51,36.97,48.01,3.333333333333333,1,1,0,0,13,2,5,1,604.5,99898.078,58657.906,458567.94,211288.09,4406.5571 -14612,17989,32543,32542,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.2662506,8.4220247,0,10,-6,-8.9309111,0,-9,-9,2019,19,7,28,28,1,7,0,17.175745,17.175745,0,0,0,0,0,1,1,0,0,0,36.97,48.01,52,54.51,3.333333333333333,1,1,0,0,7,2,5,1,604.5,99898.078,58657.906,458567.94,211288.09,4406.5571 -14613,17990,32544,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.4243383,8.0418873,0,0,0,-999.90179,-9,-9,-9,2019,12,0,40,0,1,0,0,12.48271,12.48271,0,0,0,0,0,0,0,0,3.7275057,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,301,62198.949,62515.465,0,0,1954.8159 -14614,17991,32545,-9,32547,32546,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.5566,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,1389.3334,241961.05,106165.52,144111.84,0,1816.3805 -14614,17991,32546,32547,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,7.1159487,7.2740922,0,26,1,78.616806,-9,3,3,2019,17,5,24,0,1,5,0,4.7434216,4.7434216,0,0,0,0,0,1,1,0,0,0,36.43,39,54.96,53.17,3.333333333333333,2,3,0,0,6,6,2,1,1389.3334,241961.05,106165.52,144111.84,0,1816.3805 -14614,17991,32547,32546,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,0,0,0,36,-1,86.717537,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,36.43,39,8.333333333333334,2,3,0,0,0,6,2,1,1389.3334,241961.05,106165.52,144111.84,0,1816.3805 -14614,17992,32548,-9,32547,32546,1,0,20,0,2,0,2,2,-9,0,3,7.4593582,7.5291696,0,0,0,-896.37207,0,3,2,2019,12,1,60,60,1,1,1,3.4010096,3.4010096,0,0,0,0,0,1,1,0,1.3402934,0,53.14,51.28,-9,-9,1.666666666666667,2,3,0,0,1,6,3,1,353,366761.75,30073.361,0,0,928.37201 -14614,17993,32549,-9,32547,32546,1,0,19,0,2,0,2,2,-9,0,2,5.9793234,6.2508297,0,0,0,-989.70123,-9,3,2,2019,6,0,24,0,1,0,1,2.0559745,2.0559745,0,0,0,0,0,1,1,0,0,0,60.3,36.05,-9,-9,8.333333333333334,2,3,0,0,1,6,2,1,729,-131137.91,0,0,0,818.06134 -14615,17994,32550,-9,-9,-9,1,0,48,0,0,0,1,1,-9,1,5,0,0,0,0,0,-943.90314,0,1,1,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,1.1609449,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,11,6,1,0,1572,306677.13,-44256.383,0,0,357.57547 -14616,17995,32551,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.9169884,7.6370201,0,0,-911.55676,0,2,-9,2019,14,2,0,0,4,2,0,0,0,1,0,12.390663,0,0,1,1,0,7.7184138,7.5457416,42.81,33.35,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,727,663785.94,124017.34,141297.64,0,2221.7346 -14616,17996,32552,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.9464188,7.0102811,0,0,-946.38245,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0370021,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1937,321261.34,211518.73,157518.3,0,1389.5269 -14617,17997,32553,32554,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,5.970778,6.0795107,43,7,5.8182635,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,2.1836131,0,0,1,1,0,1.2523021,5.9456139,39.87,30.72,56.72,58.13,10,1,1,0,0,0,7,2,1,225.5,699560,430287.5,280156.13,0,2144.7957 -14617,17997,32554,32553,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.248364,6.6774139,43,-7,-52.445583,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.5118718,56.72,58.13,39.87,30.72,10,1,1,0,0,0,7,2,1,225.5,699560,430287.5,280156.13,0,2144.7957 -14618,17998,32555,32556,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.9843845,9.9276028,44,1,77.891518,0,2,1,2019,8,0,0,2,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8179553,9.6427298,60.87,42.1,64.78,32.7,1.666666666666667,1,1,0,0,10,12,5,1,615.5,1726868.1,1167812.3,374620,79473.922,7689.7358 -14618,17998,32556,32555,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,44,-1,-74.053719,0,2,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.6577189,0,64.78,32.7,60.87,42.1,8.333333333333334,1,1,0,0,0,12,5,1,615.5,1726868.1,1167812.3,374620,79473.922,7689.7358 -14619,17999,32557,32558,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,39,-5,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.04,38.31,53.04,40.76,8.333333333333334,1,1,0,0,0,13,2,0,545.5,109218.81,67546.188,0,0,2405.6917 -14619,17999,32558,32557,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,53.04,40.76,35.04,38.31,8.333333333333334,1,1,0,0,0,13,2,0,545.5,109218.81,67546.188,0,0,2405.6917 -14620,18000,32559,32560,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.6234884,8.6561756,0,34,-2,1.7559797,0,3,3,2019,7,0,42,50,1,0,0,14.473166,14.473166,0,0,0,0,0,0,0,0,0,0,58.87,51.29,62.41,37.26,8.333333333333334,1,1,0,0,9,9,5,1,491,-3871.5664,-5138.8359,175171.72,66161.18,2725.7131 -14620,18000,32560,32559,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.0778723,7.5690994,5.9936152,35,2,-149.00645,0,3,1,2019,10,0,18,18,1,0,0,7.2283173,7.2283173,0,0,0,0,5.48,0,0,0,6.3830686,6.1840143,62.41,37.26,58.87,51.29,8.333333333333334,1,1,0,0,9,9,5,1,491,-3871.5664,-5138.8359,175171.72,66161.18,2725.7131 -14620,18001,32561,-9,32560,32559,1,1,23,0,0,0,2,2,-9,0,3,8.8399162,9.1133738,0,0,0,-1001.0604,0,1,2,2019,22,8,34,44,1,8,1,29.604626,29.604626,0,0,0,0,0,0,0,0,0,0,9.98,69.69,-9,-9,5,1,1,0,0,7,9,5,1,959,-47311.395,-28590.605,0,0,2341.6838 -14620,18002,32562,-9,32560,32559,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1054.9496,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,59.71,48.06,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,431,67015.523,0,0,0,348.54996 -14621,18003,32563,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,9.3302155,9.4294825,0,0,0,-1006.6706,0,2,2,2019,8,0,55,50,1,0,0,24.952066,24.952066,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,337,538249.25,240430.56,0,0,4904.4414 -14622,18004,32564,32565,-9,-9,1,0,42,1,2,0,2,2,-9,0,4,8.4862976,8.3193731,0,25,-4,-129.97409,0,2,3,2019,8,0,39,37,1,0,0,14.516038,14.516038,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.21,50.72,8.333333333333334,1,1,0,0,12,5,5,1,827,1705285.1,1295368,213585.27,55607.66,4922.8784 -14622,18004,32565,32564,-9,-9,1,1,46,1,2,0,2,2,-9,0,3,9.2927704,9.1733475,0,25,4,-36.151432,0,2,2,2019,23,11,53,48,1,11,0,18.504648,18.504648,0,0,0,0,0,1,1,0,2.1516879,0,42.21,50.72,54.79,55.86,3.333333333333333,1,1,0,0,12,5,5,1,827,1705285.1,1295368,213585.27,55607.66,4922.8784 -14622,18004,32566,-9,32564,32565,1,1,15,1,2,1,3,0,-9,0,3,0,0,0,0,0,-931.83459,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,5,5,1,827,1705285.1,1295368,213585.27,55607.66,4922.8784 -14622,18005,32567,-9,32564,32565,1,0,20,1,2,0,2,2,-9,0,2,0,0,0,0,0,-929.86487,0,2,2,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,30.25,54.22,-9,-9,6.666666666666667,1,1,0,0,1,5,2,1,599.5,-164921.13,0,0,0,687.50452 -14622,18005,32568,-9,32567,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0398,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,2,1,599.5,-164921.13,0,0,0,687.50452 -14622,18006,32569,-9,32564,32565,1,0,19,1,2,0,2,2,1,0,4,7.694551,7.6962652,0,0,0,-945.69543,-9,2,2,2019,13,2,35,0,1,2,1,7.3910966,7.3910966,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,714,10813.29,0,0,0,1416.9634 -14623,18007,32570,32571,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.4585667,8.4831457,38,0,37.219624,0,3,3,2019,13,1,0,42,4,1,0,0,0,0,0,0,0,0,0,0,0,1.5769767,8.4610224,40.37,49.44,36.03,40.6,6.666666666666667,1,1,0,0,9,9,5,1,536,4226975,1540991,1173962.9,0,4246.2261 -14623,18007,32571,32570,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.6903439,7.7656126,40,0,102.02659,0,3,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,8.0106134,36.03,40.6,40.37,49.44,5,1,1,0,0,7,9,5,1,536,4226975,1540991,1173962.9,0,4246.2261 -14623,18008,32572,-9,32571,32570,1,0,29,0,0,0,1,1,-9,0,3,8.1878185,8.5011349,0,0,0,-1137.7344,-9,1,1,2019,11,0,44,0,1,0,0,11.65199,11.65199,0,0,0,0,0,0,0,0,1.2664052,0,44,52,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,273,-150146.97,48859.652,0,0,1472.2711 -14624,18009,32573,32574,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.2999287,9.6522541,0,25,3,-42.883095,0,2,2,2019,6,0,54,87,1,0,0,22.256008,22.256008,0,0,0,0,0,0,0,0,4.2967763,0,53.93,52.08,47,49,8.333333333333334,1,1,0,0,7,1,5,1,1171.5,453058.06,211564.64,149068.67,61974.164,5443.2637 -14624,18009,32574,32573,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.1678343,7.9721026,0,2,-3,-14.853718,0,2,2,2019,12,0,32,30,1,2,0,11.181495,11.181495,0,0,0,0,0,0,0,0,0,0,47,49,53.93,52.08,7,1,1,0,0,1,1,5,1,1171.5,453058.06,211564.64,149068.67,61974.164,5443.2637 -14625,18010,32575,32576,-9,-9,1,0,35,0,1,0,3,3,-9,0,1,0,0,0,10,-5,-23.502314,-9,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,0,0,38.17,42.51,50.08,34.67,6.666666666666667,1,1,0,0,0,2,4,0,649.66669,1466674.1,1189336.8,129885.88,0,2357.575 -14625,18010,32576,32575,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.6043434,8.4894648,0,10,5,124.6768,0,2,2,2019,12,1,60,44,1,1,0,9.9525652,9.9525652,0,0,0,0,0,1,1,0,0,0,50.08,34.67,38.17,42.51,5,1,1,0,0,10,2,4,0,649.66669,1466674.1,1189336.8,129885.88,0,2357.575 -14625,18010,32577,-9,32575,32576,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.84308,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,649.66669,1466674.1,1189336.8,129885.88,0,2357.575 -14626,18011,32578,32579,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1597023,8.4644651,0,8,-4,-6.8312058,0,2,1,2019,1,0,5,8,1,0,0,87.343834,87.343834,0,0,0,0,0,1,1,0,4.6139021,0,45.01,57.46,64.48,48.62,10,1,1,0,0,3,9,4,1,485.66666,151483.73,187525.7,320570.5,151637.77,2799.3042 -14626,18011,32579,32578,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.1311216,8.2226944,0,8,4,-44.718166,0,-9,-9,2019,6,0,30,25,1,0,0,11.367167,11.367167,0,0,0,0,0,1,1,0,0,0,64.48,48.62,45.01,57.46,5,1,1,0,0,9,9,4,1,485.66666,151483.73,187525.7,320570.5,151637.77,2799.3042 -14626,18011,32580,-9,32578,32579,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.2874,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,485.66666,151483.73,187525.7,320570.5,151637.77,2799.3042 -14626,18012,32581,-9,32578,32579,1,0,19,0,1,0,2,2,-9,0,4,7.1401529,7.0575342,0,0,0,-995.04437,0,2,2,2019,15,3,10,10,1,3,1,14.185699,14.185699,0,0,0,0,0,1,1,0,.19309519,0,40.71,62.41,-9,-9,10,1,1,0,0,3,9,3,1,413,175601.14,-123873.59,0,0,493.07745 -14627,18013,32582,32583,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,56,-6,-148.46744,0,-9,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6852789,0,43.21,46.06,60.81,49,10,1,1,0,0,0,9,3,1,1551.5,1579812,291491,565386.5,0,2793.5818 -14627,18013,32583,32582,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.0620527,7.9731698,8,6,49.599903,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5939059,7.9789848,60.81,49,43.21,46.06,8.333333333333334,1,1,0,0,0,9,3,1,1551.5,1579812,291491,565386.5,0,2793.5818 -14627,18014,32584,-9,32582,32583,1,1,46,0,0,0,2,2,-9,0,3,7.8331127,7.5880346,0,0,0,-1086.9717,0,2,1,2019,13,2,38,39,1,2,0,6.557373,6.557373,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,742,104701.12,42585.57,0,0,1553.8765 -14628,18015,32585,32586,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.6659307,8.5765581,0,30,1,103.27571,0,1,2,2019,14,4,42,40,1,4,0,19.106802,19.106802,0,0,0,0,0,0,0,0,6.455225,0,55.24,55.87,51.94,55.88,8.333333333333334,1,1,0,0,11,4,5,1,833,868155.13,665724.75,191333.75,34619.266,4073.8538 -14628,18015,32586,32585,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6327953,8.8492146,0,30,-1,76.537643,0,2,1,2019,9,0,20,20,1,0,0,32.673252,32.673252,0,0,0,0,0,0,0,0,5.9462824,0,51.94,55.88,55.24,55.87,8.333333333333334,1,1,0,0,11,4,5,1,833,868155.13,665724.75,191333.75,34619.266,4073.8538 -14629,18016,32587,32588,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,11,-3,0,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,10.510566,0,0,1,1,0,.2918793,0,42.32,18.39,45.66,29.07,3.333333333333333,1,1,0,0,0,13,1,1,134,438637.25,4168.0034,208671.69,0,1848.7019 -14629,18016,32588,32587,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,11,3,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,71.5,1,1,0,1.1135504,0,45.66,29.07,42.32,18.39,6.666666666666667,1,1,0,0,0,13,1,1,134,438637.25,4168.0034,208671.69,0,1848.7019 -14630,18017,32589,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,9.0163584,9.2611113,0,0,0,-1128.6002,-9,2,3,2019,14,3,44,0,1,3,0,20.405321,20.405321,0,0,0,0,0,0,0,0,.89526713,0,45.12,34.87,-9,-9,3.333333333333333,1,1,0,0,9,9,5,1,1480,-40944.398,112024.7,149663.95,132409.22,3562.4397 -14631,18018,32590,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,3,6.5675907,6.675456,0,0,0,-928.55878,-9,-9,-9,2019,7,0,20,0,1,0,0,4.2023635,4.2023635,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,5,5,2,0,340,-43234.242,0,0,0,876.13116 -14632,18019,32591,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,4.9245901,5.1164412,0,0,-925.83752,0,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,5.2828636,56.37,32.74,-9,-9,5,1,1,0,1,0,2,2,0,476,118150.16,8441.8379,0,0,1048.3558 -14633,18020,32592,-9,32593,32595,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.4838,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 -14633,18020,32593,32595,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.4031386,7.0765052,0,1,0,120.4597,-9,-9,-9,2019,16,4,24,0,1,4,0,7.603724,7.603724,0,0,0,0,0,1,1,0,0,0,37.41,50.23,45.91,59.89,5,1,1,0,0,6,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 -14633,18020,32594,-9,32593,32595,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.26892,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 -14633,18020,32595,32593,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.9319372,8.7690449,0,1,9,-29.977505,-9,2,2,2019,12,0,10,0,1,0,0,80.160072,80.160072,0,0,0,0,0,1,1,0,0,0,45.91,59.89,37.41,50.23,8.333333333333334,1,1,0,0,8,12,4,1,420.75,338412.41,264583.09,276511.13,260948.98,4755.748 -14634,18021,32596,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1097.4812,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.52,42.03,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,407,334728.53,0,0,0,1334.4863 -14635,18022,32597,32598,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,0,0,0,1,-6,218.70976,-9,2,2,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,2.7211697,0,38.36,61,45.04,47.98,10,2,3,0,0,2,2,2,0,846.5,1130781.1,-41385.379,497407.44,50310.715,379.22681 -14635,18022,32598,32597,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.3594437,7.4441843,0,13,6,131.57962,-9,3,3,2019,18,5,70,0,1,5,0,2.6489129,2.6489129,0,0,0,0,0,0,0,0,2.4572332,0,45.04,47.98,38.36,61,10,2,3,0,0,7,2,2,0,846.5,1130781.1,-41385.379,497407.44,50310.715,379.22681 -14636,18023,32599,32600,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.2778339,6.293602,7,2,-102.1291,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3256402,61.12,51.57,62.49,55.09,10,1,1,0,0,3,12,2,0,451,314687.19,54451.781,133087.47,0,1157.2004 -14636,18023,32600,32599,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,7,-2,24.93923,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.9615648,0,62.49,55.09,61.12,51.57,8.333333333333334,1,1,0,0,8,12,2,0,451,314687.19,54451.781,133087.47,0,1157.2004 -14637,18024,32601,32602,-9,-9,1,1,96,0,0,0,2,2,-9,0,3,0,7.0049915,7.4538598,8,4,-90.330261,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,128.60753,0,0,1,1,0,0,7.0605907,62.32,36.18,56.67,48.31,10,1,1,0,0,0,9,3,1,607,1047348.1,384542.06,277391.19,0,2748.2058 -14637,18024,32602,32601,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.4941978,6.4209609,8,-4,48.53257,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,4.5149536,6.6786871,56.67,48.31,62.32,36.18,8.333333333333334,1,1,0,0,0,9,3,1,607,1047348.1,384542.06,277391.19,0,2748.2058 -14638,18025,32603,32604,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,9.1393099,9.1158504,0,17,-1,76.492271,0,2,2,2019,3,0,36,50,1,0,0,30.2045,30.2045,0,0,0,0,2,0,0,0,3.8073864,0,57.16,56.15,35.97,61.83,10,1,1,0,0,12,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 -14638,18025,32604,32603,-9,-9,1,0,58,0,2,0,1,1,-9,0,4,9.1930933,9.4666405,0,37,1,-75.351578,0,2,1,2019,19,6,20,15,1,6,0,51.781464,51.781464,0,0,0,0,2,0,0,0,0,0,35.97,61.83,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 -14638,18025,32605,-9,32604,32603,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.7927,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 -14638,18025,32606,-9,32604,32603,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.12915,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,479.25,1507046.3,590426,944415.38,342952.75,5503.0186 -14639,18026,32607,32608,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7892389,8.3224735,0,29,0,29.888044,0,3,3,2019,12,0,80,37,1,0,0,8.3084974,8.3084974,0,0,0,0,0,0,0,0,0,0,48.06,50.73,42.22,56.11,6.666666666666667,1,1,0,0,11,7,5,1,566,643581.38,111397.55,620960.38,76793.352,3859.3081 -14639,18026,32608,32607,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,8.0457497,8.0488949,0,29,0,.25458565,0,3,3,2019,14,2,25,20,1,2,0,16.749964,16.749964,0,0,0,0,0,0,0,0,0,0,42.22,56.11,48.06,50.73,6.666666666666667,1,1,0,0,11,7,5,1,566,643581.38,111397.55,620960.38,76793.352,3859.3081 -14640,18027,32609,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.7718353,8.5965004,0,0,0,-893.42346,0,2,1,2019,10,0,43,27,1,0,0,14.834074,14.834074,0,0,0,0,0,1,1,0,0,0,42.92,53.1,-9,-9,5,1,1,0,0,9,8,5,1,372,140079.77,0,0,0,2487.21 -14641,18028,32610,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5585399,5.7083769,0,0,-983.67407,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.5924397,52,45,-9,-9,8,1,1,0,0,0,10,2,0,387,-40813.836,-16708.168,0,0,815.36841 -14642,18029,32611,32613,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,8.4940662,8.9433937,0,7,1,-62.455364,0,3,2,2019,11,2,37,37,1,2,0,19.292379,19.292379,0,0,0,0,0,1,1,0,.042993251,0,48.45,49.46,59.24,37.5,8.333333333333334,1,1,0,0,12,10,5,1,1414.6666,72710.219,-21625.105,246718.2,178085.7,3918.3137 -14642,18029,32612,-9,32613,32611,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.88593,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1414.6666,72710.219,-21625.105,246718.2,178085.7,3918.3137 -14642,18029,32613,32611,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,8.2049589,8.2863998,0,7,-1,74.056793,0,-9,-9,2019,6,0,40,40,1,0,0,14.889598,14.889598,0,0,0,0,0,1,1,0,3.8016081,0,59.24,37.5,48.45,49.46,0,1,1,0,0,7,10,5,1,1414.6666,72710.219,-21625.105,246718.2,178085.7,3918.3137 -14643,18030,32614,32615,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.5762453,7.9057245,0,6,9,-14.96875,0,-9,-9,2019,6,0,37,37,1,0,0,7.687674,7.687674,0,0,0,0,0,0,0,0,0,0,57.73,54.53,59.51,38.72,6.666666666666667,1,1,0,0,7,10,3,1,239.5,1194807.5,-30840.398,930039,0,1405.7319 -14643,18030,32615,32614,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,6.6270761,6.9805446,0,6,0,29.808208,0,2,1,2019,7,0,12,14,1,0,0,8.3935785,8.3935785,0,0,0,0,0,0,0,0,0,0,59.51,38.72,57.73,54.53,5,1,1,0,0,7,10,3,1,239.5,1194807.5,-30840.398,930039,0,1405.7319 -14644,18031,32616,-9,32618,32617,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1002.9977,-9,3,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.1,59.71,-9,-9,10,1,1,0,0,1,8,3,1,1003.3333,597271.13,102088.48,325893.34,0,3567.8416 -14644,18031,32617,32618,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,7.8110814,7.5685496,0,29,5,-22.435835,0,1,1,2019,6,1,42,48,1,1,0,4.4845123,4.4845123,0,0,0,0,0,1,1,0,6.7303705,0,57.06,57.76,41.95,46.64,8.333333333333334,4,2,0,0,12,8,3,1,1003.3333,597271.13,102088.48,325893.34,0,3567.8416 -14644,18031,32618,32617,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,7.3573689,7.5873327,0,29,-5,-148.58733,0,2,3,2019,9,1,16,15,1,1,0,10.604263,10.604263,0,0,0,0,0,1,1,0,3.7172964,0,41.95,46.64,57.06,57.76,10,1,1,0,0,10,8,3,1,1003.3333,597271.13,102088.48,325893.34,0,3567.8416 -14645,18032,32619,32620,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,6.7757454,6.5483084,0,1,7,104.4967,0,3,3,2019,1,0,56,70,1,0,0,1.7027389,1.7027389,0,0,0,0,0,0,0,0,0,0,52,55,49,56,0,1,1,0,0,11,13,3,1,1741.5,302154.5,19542.879,221179,0,1236.0714 -14645,18032,32620,32619,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.3622236,7.3601489,0,1,-7,-24.50186,-9,-9,-9,2019,11,0,17,0,1,2,0,10.898796,10.898796,0,0,0,0,0,0,0,0,0,0,49,56,52,55,7,4,1,0,0,1,13,3,1,1741.5,302154.5,19542.879,221179,0,1236.0714 -14646,18033,32621,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.5373483,7.8015318,0,0,0,-1104.4525,0,2,2,2019,13,0,78,43,1,3,1,3.6661069,3.6661069,0,0,0,0,0,0,0,0,0,0,44,52,-9,-9,6,1,1,0,0,5,4,3,0,283,163707.72,-33018.043,0,0,854.39917 -14646,18034,32622,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.831367,7.8079529,0,0,0,-1018.139,0,3,2,2019,11,0,40,47,1,0,1,7.2925096,7.2925096,0,0,0,0,0,0,0,0,0,0,55.8,44.26,-9,-9,5,1,1,0,0,6,4,3,0,806,-53486.457,0,0,0,894.78168 -14647,18035,32623,32625,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.8001451,8.5217657,0,15,2,-85.420044,0,2,1,2019,12,0,44,40,1,0,0,17.079206,17.079206,0,0,0,0,0,1,1,0,5.2072883,0,43.83,43.24,51.83,57.2,6.666666666666667,1,1,0,0,11,7,5,1,1148,833603.56,237037.53,595594.44,67684.492,5523.9751 -14647,18035,32624,-9,32623,32625,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-869.41669,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,1148,833603.56,237037.53,595594.44,67684.492,5523.9751 -14647,18035,32625,32623,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.1092176,9.2832842,0,15,-2,23.823366,0,-9,-9,2019,6,0,38,38,1,0,0,27.42651,27.42651,0,0,0,0,0,1,1,0,6.1140838,0,51.83,57.2,43.83,43.24,8.333333333333334,1,1,0,0,11,7,5,1,1148,833603.56,237037.53,595594.44,67684.492,5523.9751 -14648,18036,32626,32627,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.0161428,6.9478021,7,13,18.958267,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2156405,57.16,56.15,50.65,60.47,1.666666666666667,1,1,0,0,7,12,4,1,1779.5,24283.797,-32862.133,0,0,1697.5426 -14648,18036,32627,32626,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3393087,7.9442296,0,7,-13,-85.065704,0,3,3,2019,9,1,40,43,1,1,0,8.7085724,8.7085724,0,0,0,0,0,0,0,0,1.444891,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,1779.5,24283.797,-32862.133,0,0,1697.5426 -14649,18037,32628,32629,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.8350363,7.2430468,51,-1,-119.44205,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7758179,56.32,48.68,47.84,33.44,8.333333333333334,1,1,0,0,4,11,2,1,483.5,220932.97,358272.16,135143.52,0,846.99841 -14649,18037,32629,32628,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,51,1,-36.358364,0,2,2,2019,11,3,0,0,4,3,0,0,0,1,0,3.514648,0,0,1,1,0,0,0,47.84,33.44,56.32,48.68,6.666666666666667,1,1,0,0,0,11,2,1,483.5,220932.97,358272.16,135143.52,0,846.99841 -14650,18038,32630,32631,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.3039813,7.3302302,7,3,-82.154533,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,120,1,1,0,0,7.5170679,57.16,56.15,53.88,33.91,6.666666666666667,1,1,0,0,0,11,4,1,554.5,1245415,441170.88,260278.75,0,3362.8589 -14650,18038,32631,32630,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.8021135,8.5057335,7,-3,-66.084251,0,2,3,2019,6,0,0,0,4,0,0,0,0,1,0,9.2332783,0,120,1,1,0,.43923745,8.310833,53.88,33.91,57.16,56.15,10,1,1,0,0,0,11,4,1,554.5,1245415,441170.88,260278.75,0,3362.8589 -14651,18039,32632,32633,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.8081374,7.880785,0,33,0,-22.199551,0,3,3,2019,15,5,35,35,1,5,0,8.9759912,8.9759912,0,0,0,0,0,0,0,0,0,0,56.1,33.87,54.2,57.49,5,1,1,0,0,12,8,4,1,369.5,613287.25,633158.25,0,0,2139.908 -14651,18039,32633,32632,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,8.013607,7.8398771,0,33,0,-123.36613,0,3,3,2019,12,0,35,30,1,0,0,11.041587,11.041587,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.1,33.87,6.666666666666667,1,1,0,0,6,8,4,1,369.5,613287.25,633158.25,0,0,2139.908 -14652,18040,32634,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5544519,8.261343,0,0,0,-976.2149,0,3,-9,2019,10,0,40,42,1,0,0,11.572888,11.572888,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,190,358653.53,358734.66,23561.758,0,1232.9987 -14653,18041,32635,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.7431021,8.8515673,0,0,0,-925.74805,-9,2,2,2019,11,0,47,0,1,2,0,14.453049,14.453049,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,10,9,4,1,320,104658.18,-69656.305,348674.75,205011.22,2611.8718 -14654,18042,32636,32639,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,7.9416361,8.6234312,7.6614699,6,0,14.665189,0,-9,-9,2019,21,9,40,37,1,9,0,7.7354808,7.7354808,0,0,0,0,0,1,1,0,7.0810704,0,25.05,50.56,54.56,44.37,3.333333333333333,1,1,0,0,5,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 -14654,18042,32637,-9,32639,32636,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.8713,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 -14654,18042,32638,-9,32639,32636,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7729,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 -14654,18042,32639,32636,-9,-9,1,0,30,1,2,0,2,2,-9,0,2,7.3580551,7.304698,0,6,0,-64.328323,0,-9,-9,2019,8,0,16,24,1,0,0,10.579845,10.579845,0,0,0,0,0,1,1,0,0,0,54.56,44.37,25.05,50.56,10,1,1,0,1,11,11,4,1,733.5,154216.05,33284.309,60236.078,59749.594,3550.2188 -14655,18043,32640,32641,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,9.630455,9.4093475,50,2,102.35002,0,2,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.2371254,9.3516102,57.06,57.76,57.06,57.76,10,1,1,0,0,4,7,5,1,425,966861.13,409713.88,243500.75,0,6608.5796 -14655,18043,32641,32640,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,6,-2,-140.30739,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5085745,0,57.06,57.76,57.06,57.76,10,1,1,0,0,0,7,5,1,425,966861.13,409713.88,243500.75,0,6608.5796 -14656,18044,32642,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.5693,-9,2,2,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,32.2,62.1,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,4226,221027.72,0,0,0,407.46524 -14657,18045,32643,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.0553341,9.3563137,0,0,0,-928.67712,0,2,2,2019,9,0,7,48,1,0,0,185.71091,185.71091,0,0,0,0,0,0,0,0,0,0,46.21,55.82,-9,-9,6.666666666666667,1,1,0,0,6,8,5,0,125,1203956.5,603683.94,610257.25,0,3002.7871 -14658,18046,32644,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7161002,7.7497087,0,0,0,-1192.6748,0,-9,-9,2019,10,0,40,43,1,1,0,6.406074,6.406074,0,0,0,0,0,1,1,0,.36952758,0,49,58,-9,-9,7,1,1,0,0,1,2,3,0,235,-264179.5,0,0,0,648.57642 -14659,18047,32645,32646,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,59,-1,0,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,2.5663757,0,43.18,55.57,11.1,37.21,3.333333333333333,1,1,0,0,0,6,1,1,700.5,79960.641,0,0,0,1070.8596 -14659,18047,32646,32645,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,0,0,59,1,0,0,3,3,2019,30,10,0,0,4,10,0,0,0,1,0,75.353188,0,0,1,1,0,0,0,11.1,37.21,43.18,55.57,1.666666666666667,1,1,0,0,0,6,1,1,700.5,79960.641,0,0,0,1070.8596 -14660,18048,32647,-9,32650,32648,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.6858,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 -14660,18048,32648,32650,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.9780083,9.1910477,0,6,7,92.310257,0,2,1,2019,8,0,30,47,1,0,0,34.135757,34.135757,0,0,0,0,0,1,1,0,5.951478,0,55.36,51.57,57.06,57.76,8.333333333333334,1,1,0,0,7,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 -14660,18048,32649,-9,32650,32648,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.2312,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 -14660,18048,32650,32648,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.7793608,8.6270027,0,6,-7,37.630936,0,2,3,2019,6,0,22,20,1,0,0,31.37092,31.37092,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.36,51.57,10,1,1,0,0,7,10,5,1,656.75,846639.13,695652.13,282899.84,104645.94,6059.3057 -14661,18049,32651,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,7.734272,7.9949045,0,0,-910.38251,0,-9,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.77107209,7.9708118,61.68,47.24,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,524,946317.38,503414.97,442239.19,0,2088.2969 -14662,18050,32652,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.04626,0,3,2,2019,11,0,0,39,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.58,28.51,-9,-9,8.333333333333334,1,1,1,1,2,5,1,0,479,0,0,0,0,972.50391 -14663,18051,32653,32654,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.5033703,8.2138643,0,8,-11,-54.382893,0,2,2,2019,5,0,40,0,1,0,0,13.994308,13.994308,0,0,0,0,0,0,0,0,0,0,40.71,62.41,55.96,49.93,10,1,1,0,0,12,5,5,1,2053.5,299224.88,8710.5293,0,0,3288.8555 -14663,18051,32654,32653,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.1760235,8.2798004,0,8,11,-55.464176,0,3,2,2019,7,0,32,37,1,0,0,10.06305,10.06305,0,0,0,0,0,0,0,0,0,0,55.96,49.93,40.71,62.41,8.333333333333334,1,1,0,0,12,5,5,1,2053.5,299224.88,8710.5293,0,0,3288.8555 -14664,18052,32655,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1071.1031,0,3,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,3,4,0,0,0,8,1,0,215,146991.09,0,0,0,1163.5941 -14665,18053,32656,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,5.476347,6.96842,6.5950041,0,0,-1029.5675,0,2,1,2019,26,11,4,0,1,11,0,6.9225307,6.9225307,0,0,0,0,27,0,0,0,6.9844079,0,33.9,49.78,-9,-9,1.666666666666667,1,1,0,1,12,10,2,1,269,262569.38,1542.8247,0,0,101.61356 -14666,18054,32657,32658,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.2087846,8.5169125,7.5784121,21,-7,-19.771263,-9,-9,3,2019,12,0,25,0,1,2,0,5.2789378,5.2789378,0,0,0,0,0,0,0,0,5.9766679,7.8121853,47,49,60.43,46.44,7,1,1,0,0,1,5,5,1,727,4623344,2526250.5,771385.56,0,7506.9053 -14666,18054,32658,32657,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.3707552,9.2879057,0,20,7,21.509481,-9,2,2,2019,8,0,50,0,1,0,0,39.130859,39.130859,0,0,0,0,0,0,0,0,4.1186852,0,60.43,46.44,47,49,8.333333333333334,1,1,0,0,12,5,5,1,727,4623344,2526250.5,771385.56,0,7506.9053 -14666,18055,32659,-9,32657,32658,1,0,22,0,0,0,2,2,-9,0,4,7.7763786,7.6502595,0,0,0,-933.63745,-9,2,1,2019,12,0,30,0,1,2,1,10.845742,10.845742,0,0,0,0,0,0,0,0,.84645587,0,45,58,-9,-9,7,1,1,0,0,1,5,3,1,964,-344997.03,33779.602,0,0,575.61359 -14667,18056,32660,32661,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.7224808,9.6108246,0,32,-1,27.566107,0,2,1,2019,11,1,55,50,1,1,0,24.440844,24.440844,0,0,0,0,2,0,0,0,3.1927373,0,52.23,55.6,54.2,57.49,8.333333333333334,1,1,0,0,9,9,5,1,556.5,3321524,0,1316260,0,6759.1211 -14667,18056,32661,32660,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.9145517,8.3343868,0,32,1,39.438866,0,1,2,2019,12,1,26,26,1,1,0,14.746182,14.746182,0,0,0,0,7,0,0,0,0,0,54.2,57.49,52.23,55.6,8.333333333333334,1,1,0,0,9,9,5,1,556.5,3321524,0,1316260,0,6759.1211 -14667,18057,32662,-9,32661,32660,1,1,23,0,0,0,1,1,1,0,4,7.7506566,7.4764624,0,0,0,-858.65723,-9,2,1,2019,11,1,45,0,1,1,1,6.0924649,6.0924649,0,0,0,0,7,0,0,0,0,0,45.4,56.19,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,413,-129792.63,0,0,0,1040.3506 -14668,18058,32663,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.2694602,6.1397991,0,0,-1050.5376,0,3,3,2019,24,8,0,0,4,8,0,0,0,1,2.9699965,1.2293217,23.043154,0,1,1,0,3.6952477,6.4608607,36.57,29.27,-9,-9,10,1,1,0,0,0,10,2,0,86,313133.91,60096.887,89998.516,0,2506.9773 -14669,18059,32664,32665,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4952192,8.6429539,0,28,0,-93.347267,0,-9,-9,2019,14,3,41,45,1,3,0,15.036011,15.036011,0,0,0,0,2,0,0,0,0,0,38.09,63.39,52.54,54.24,8.333333333333334,1,1,0,0,10,2,5,1,1161,-20830.813,46838.332,83532.359,6165.8516,3646.6924 -14669,18059,32665,32664,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.5467787,8.4574871,0,28,0,90.117615,0,-9,-9,2019,6,0,40,40,1,0,0,11.480632,11.480632,0,0,0,0,0,0,0,0,0,0,52.54,54.24,38.09,63.39,8.333333333333334,1,1,0,0,10,2,5,1,1161,-20830.813,46838.332,83532.359,6165.8516,3646.6924 -14670,18060,32666,32667,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,6.6702356,6.7018008,56,4,60.305885,0,2,2,2019,15,5,0,0,4,5,0,0,0,1,7.2706847,29.503689,59.858921,0,1,1,0,0,6.9017539,36.61,17.55,42.07,24.58,8.333333333333334,1,1,0,0,0,10,2,1,792,485299.16,67259.25,149100.5,0,2128.8345 -14670,18060,32667,32666,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,56,-4,-46.886955,0,3,2,2019,10,1,0,0,4,1,0,0,0,1,2.6702161,13.310992,23.799685,27,1,1,0,0,0,42.07,24.58,36.61,17.55,3.333333333333333,1,1,0,0,0,10,2,1,792,485299.16,67259.25,149100.5,0,2128.8345 -14671,18061,32668,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.2710829,8.2331972,0,0,-1053.847,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.6915083,7.989593,52.64,43.94,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,797,545152.5,739415.19,0,0,1584.2452 -14672,18062,32669,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,6.0586452,5.8893976,0,0,-1058.672,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8841701,56,44,-9,-9,8,1,1,0,0,0,2,2,1,1117,138169.13,130038.58,157010.56,0,1125.6752 -14673,18063,32670,32671,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2419538,7.3318782,24,-3,.12206368,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9421604,6.909174,56.92,49.39,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,416,1147974.9,500831.56,0,0,2335.8037 -14673,18063,32671,32670,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0358458,6.9026332,24,3,-37.61763,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5506735,6.941092,57.16,56.15,56.92,49.39,8.333333333333334,1,1,0,0,0,10,3,1,416,1147974.9,500831.56,0,0,2335.8037 -14674,18064,32672,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.69379,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,-9,-9,10,1,1,1,1,0,13,1,0,4142,422222.06,0,0,0,694.78552 -14675,18065,32673,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-954.56555,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7330866,0,56.04,51.3,-9,-9,5,1,1,0,0,0,5,2,1,350,-395747.47,0,0,0,1931.089 -14676,18066,32674,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.0127463,7.0230498,0,0,0,-1005.8934,0,-9,-9,2019,10,0,35,35,1,0,0,3.7989259,3.7989259,0,0,0,0,14.5,1,1,0,0,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,236,95733.594,-55761.555,0,0,1656.6122 -14677,18067,32675,32676,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.0834789,8.0158014,61,0,71.621063,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2292209,7.800683,55,45,53,45,8,1,1,0,0,0,9,4,1,514,1353172.3,650615.56,315373.25,0,3822.3599 -14677,18067,32676,32675,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.3639331,7.3486066,61,0,37.961819,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.6160717,7.3632932,53,45,55,45,8,1,1,0,0,0,9,4,1,514,1353172.3,650615.56,315373.25,0,3822.3599 -14678,18068,32677,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,5.2324128,5.4210596,0,0,-994.95801,0,3,3,2019,23,9,0,0,4,9,0,0,0,1,0,14.841591,0,0,1,1,0,.11829407,5.0391378,27.41,25.55,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,428,487343.22,137866.66,133493.45,0,1136.3937 -14679,18069,32678,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.0646963,5.6176338,0,0,-1018.4107,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,9.1309385,0,0,1,1,0,0,6.1172233,68.94,17.02,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,945,241954.64,191323.63,0,0,1348.4485 -14680,18070,32679,32680,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1406288,8.0919027,0,35,0,-25.819456,0,3,-9,2019,7,0,38,38,1,0,0,9.0379848,9.0379848,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.64,48.41,10,1,1,0,0,9,12,5,1,977.5,1358972.3,1095225,303715.59,44244.813,2445.071 -14680,18070,32680,32679,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5528593,8.5523701,0,35,0,48.813412,0,3,3,2019,10,0,43,43,1,0,0,11.899362,11.899362,0,0,0,0,0,0,0,0,0,0,53.64,48.41,57.16,56.15,6.666666666666667,1,1,0,0,9,12,5,1,977.5,1358972.3,1095225,303715.59,44244.813,2445.071 -14680,18071,32681,-9,32679,32680,1,0,22,0,0,0,2,2,-9,0,4,7.5880976,7.4242573,0,0,0,-997.02289,0,2,2,2019,23,11,40,20,1,11,1,6.1643434,6.1643434,0,0,0,0,0,0,0,0,0,0,16.3,64.13,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,2633,-83437.281,0,0,0,1469.7144 -14681,18072,32682,-9,32683,32684,1,0,20,0,0,0,2,2,1,1,2,0,0,0,0,0,-855.5614,-9,2,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,42,1,0,1,0,0,28.77,49.6,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,313,329160.97,0,0,0,561.50922 -14681,18073,32683,32684,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.882585,7.5680151,0,39,-1,-2.2647116,0,-9,-9,2019,14,1,80,40,1,1,0,3.5591094,3.5591094,0,0,0,0,0,1,0,1,0,0,55.52,20.23,21.97,21.3,3.333333333333333,1,1,0,0,11,12,3,0,912,1193154.8,760703,182662.8,0,2504.0703 -14681,18073,32684,32683,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,3,1,-150.65388,0,-9,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,0,1,0,0,21.97,21.3,55.52,20.23,0,1,1,0,0,0,12,3,0,912,1193154.8,760703,182662.8,0,2504.0703 -14682,18074,32685,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,6.669013,7.0094557,0,0,-854.29419,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,2.1419458,0,0,1,1,0,0,6.7731166,52.83,19.3,-9,-9,5,1,1,0,0,0,4,2,1,402,-153357.64,20967.314,28765.49,0,1659.4749 -14683,18075,32686,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.3849497,7.7454515,0,0,-1102.3267,-9,2,1,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,7.7169027,42.75,50.64,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1290,656425.13,85791.328,57930.133,0,1424.7797 -14684,18076,32687,32688,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.1125879,8.2127352,33,6,14.346788,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.896826,7.8902583,63.38,53.47,57.7,50.34,8.333333333333334,1,1,0,0,4,9,5,1,362.5,1465205,22595.266,998327.25,0,5001.6338 -14684,18076,32688,32687,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.5600615,9.0073481,0,33,-6,40.03233,0,2,3,2019,8,0,52,50,1,0,0,12.728256,12.728256,0,0,0,0,0,1,1,0,0,0,57.7,50.34,63.38,53.47,8.333333333333334,1,1,0,0,12,9,5,1,362.5,1465205,22595.266,998327.25,0,5001.6338 -14685,18077,32689,32690,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0821114,8.2466307,0,2,3,44.176094,-9,-9,-9,2019,10,0,38,0,1,1,0,12.216266,12.216266,0,0,0,0,0,0,0,0,2.0801475,0,50,57,52.8,53.98,7,4,1,0,0,1,5,4,0,1092,199085.14,40036.953,122925.34,82935.984,3208.6851 -14685,18077,32690,32689,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1643524,7.9772034,5.0838513,2,-3,129.8941,0,1,1,2019,8,1,50,40,1,1,0,6.9540138,6.9540138,0,0,0,0,0,0,0,0,5.6317053,0,52.8,53.98,50,57,8.333333333333334,1,1,0,0,2,5,4,0,1092,199085.14,40036.953,122925.34,82935.984,3208.6851 -14686,18078,32691,32692,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.9067931,6.7709355,54,6,-61.5093,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,4.20397,1.169952,0,1,1,0,0,6.3519373,43.17,39.74,66.93000000000001,43.76,5,1,1,0,0,0,6,2,0,268,420372.22,70402.703,139171.13,0,937.86072 -14686,18078,32692,32691,-9,-9,1,0,74,0,0,0,3,3,-9,0,5,0,0,0,54,-6,6.8133779,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,66.93000000000001,43.76,43.17,39.74,10,1,1,0,0,3,6,2,0,268,420372.22,70402.703,139171.13,0,937.86072 -14687,18079,32693,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,6.9015598,6.8955417,0,0,-1106.7263,0,3,1,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,6.7964606,40.48,45.26,-9,-9,3.333333333333333,1,1,0,1,7,7,2,1,526,2054453.1,0,1763610.1,0,157.10994 -14688,18080,32694,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-899.26294,0,3,3,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48,35,-9,-9,10,1,1,0,0,0,8,1,1,211,454846.28,0,306302.31,0,229.22501 -14689,18081,32695,32696,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,7.2974911,7.384378,0,16,-17,-87.346535,0,2,2,2019,8,0,30,29,1,0,0,7.3277059,7.3277059,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,7,10,4,1,1067.5,517153.38,90528.961,279718.53,16924.469,3279.9102 -14689,18081,32696,32695,-9,-9,1,1,58,0,3,0,2,2,-9,0,4,8.9457407,8.8136568,0,15,17,186.6115,0,2,2,2019,11,0,40,40,1,0,0,16.608738,16.608738,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,10,4,1,1067.5,517153.38,90528.961,279718.53,16924.469,3279.9102 -14690,18082,32697,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,7.9244118,7.6127973,0,0,0,-1013.6971,-9,-9,-9,2019,11,0,37,0,1,0,0,8.2000017,8.2000017,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,3.333333333333333,3,4,0,0,1,8,4,1,1017,118270.34,7871.0615,0,0,961.70825 -14691,18083,32698,32699,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.3212562,6.1611557,40,-1,84.047867,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.5130315,57.16,56.15,50.5,38.58,8.333333333333334,1,1,0,0,0,4,2,0,1170,103015.03,92669.961,82054.484,0,979.54877 -14691,18083,32699,32698,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.2716031,5.4908819,40,1,59.140762,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,6.1878514,0,0,1,1,0,0,5.3434973,50.5,38.58,57.16,56.15,6.666666666666667,1,1,0,1,0,4,2,0,1170,103015.03,92669.961,82054.484,0,979.54877 -14692,18084,32700,32704,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,8.3768959,8.6057358,0,8,7,21.699459,0,3,2,2019,6,0,37,37,1,0,0,12.108838,12.108838,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,53.4,41.64,8.333333333333334,1,1,0,0,9,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 -14692,18084,32701,-9,32704,32700,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-990.15271,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 -14692,18084,32702,-9,32704,32700,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.73755,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 -14692,18084,32703,-9,32704,32700,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1000.887,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 -14692,18084,32704,32700,-9,-9,1,0,29,0,4,0,2,2,-9,1,3,0,0,0,8,-7,-27.645042,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.4,41.64,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,0,888.40002,-15112.138,1781.1344,0,0,3835.5376 -14693,18085,32705,32706,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.0000916,7.704958,50,0,-15.795031,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0209007,7.8074498,57.34,47.92,39.82,40.71,8.333333333333334,1,1,0,0,0,8,5,1,742,3139337,763614.13,1698633.5,0,4571.5811 -14693,18085,32706,32705,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.4497604,8.3282022,50,0,7.9224133,0,3,1,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.5783839,8.6519413,39.82,40.71,57.34,47.92,5,4,5,0,0,0,8,5,1,742,3139337,763614.13,1698633.5,0,4571.5811 -14694,18086,32707,-9,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,7.7045813,7.7329926,0,0,0,-960.25323,0,-9,-9,2019,11,0,20,30,1,0,0,19.530018,19.530018,0,0,0,0,0,1,1,0,0,0,40.72,55.65,-9,-9,5,3,4,0,0,5,5,3,0,790,-236502.38,0,0,0,1817.709 -14695,18087,32708,32709,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.9028788,9.0752335,0,4,-2,64.540543,0,2,2,2019,7,0,40,45,1,0,0,28.975559,28.975559,0,0,0,0,0,0,0,0,7.0060153,0,51.08,54.77,51,56,8.333333333333334,1,1,0,0,7,9,5,1,609.66669,635150.38,131476.67,403910.16,67287.172,6803.1587 -14695,18087,32709,32708,-9,-9,1,1,38,1,1,0,1,1,-9,0,4,8.9449062,8.8194494,0,4,2,-32.657921,0,-9,-9,2019,9,0,35,37,1,1,0,31.406685,31.406685,0,0,0,1.064504,0,0,0,0,6.8300762,0,51,56,51.08,54.77,8,4,1,0,0,1,9,5,1,609.66669,635150.38,131476.67,403910.16,67287.172,6803.1587 -14695,18087,32710,-9,32708,32709,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-881.98901,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,609.66669,635150.38,131476.67,403910.16,67287.172,6803.1587 -14696,18088,32711,32712,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,5.936779,6.2445259,37,0,-127.75747,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.0648932,6.3339987,59.43,58.05,47.61,32.09,10,1,1,0,0,0,2,2,1,675.5,589893.25,108713.72,197889.5,0,2516.0127 -14696,18088,32712,32711,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.8316269,6.9674439,37,0,19.42313,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,9.8508301,0,0,1,1,0,1.6178309,6.6836176,47.61,32.09,59.43,58.05,6.666666666666667,1,1,0,0,0,2,2,1,675.5,589893.25,108713.72,197889.5,0,2516.0127 -14697,18089,32713,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.1831961,8.9602623,0,0,0,-1049.7493,0,2,2,2019,7,0,30,22,1,0,0,32.709324,32.709324,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,2,3,0,0,10,8,5,0,1832,-292983.47,36619.59,0,0,4006.6431 -14698,18090,32714,32715,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,7.1352134,7.4426966,6.8564339,36,0,-32.127281,0,3,3,2019,31,12,36,30,1,12,0,3.3606079,3.3606079,0,0,0,0,0,0,0,0,2.9881568,6.8236647,27.39,46.07,43.26,49.12,3.333333333333333,1,1,0,1,8,5,3,1,1952,589915.31,93829.773,311434.13,0,1300.5286 -14698,18090,32715,32714,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,6.4412045,6.8859582,0,36,0,44.361504,0,3,2,2019,12,1,18,15,1,1,0,3.924814,3.924814,0,0,0,0,0,0,0,0,3.1228764,0,43.26,49.12,27.39,46.07,10,1,1,0,1,6,5,3,1,1952,589915.31,93829.773,311434.13,0,1300.5286 -14698,18091,32716,-9,32715,32714,1,1,19,0,0,0,2,2,1,0,3,6.0421181,6.4800758,0,0,0,-903.71912,-9,2,3,2019,12,0,9,0,1,2,1,5.3277659,5.3277659,0,0,0,0,0,0,0,0,0,0,24.77,65.61,-9,-9,5,1,1,0,0,1,5,2,1,753,65683.398,0,0,0,121.27105 -14699,18092,32717,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.2775,0,2,-9,2019,19,8,0,30,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,61.42,41.5,-9,-9,1.666666666666667,1,1,1,1,6,8,1,0,904,9384.4102,0,0,0,0 -14700,18093,32718,32719,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.2039013,9.1588306,0,7,1,-12.09927,0,-9,-9,2019,13,3,37,42,1,3,0,35.747681,35.747681,0,0,0,0,2,1,1,0,0,0,45.32,53.65,53.08,47.11,6.666666666666667,1,1,0,0,8,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 -14700,18093,32719,32718,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,5.0277314,4.8833685,0,24,-1,22.265987,0,2,2,2019,12,3,5,10,1,3,0,4.8591809,4.8591809,0,0,0,0,71.5,1,1,0,0,0,53.08,47.11,45.32,53.65,8.333333333333334,1,1,0,0,9,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 -14700,18093,32720,-9,32719,32718,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7167,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 -14700,18093,32721,-9,32719,32718,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.2875,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,560.5,595098.13,143872.31,119048.46,0,3197.437 -14700,18094,32722,-9,32719,32718,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-996.82416,0,2,1,2019,27,9,0,40,3,9,1,0,0,0,0,0,0,27,1,1,0,0,0,7.3,71.22,-9,-9,0,1,1,1,0,1,4,1,1,503,0,0,0,0,654.81323 -14701,18095,32723,32724,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,0,0,13,-4,143.57101,0,3,3,2019,7,0,0,21,4,0,0,0,0,0,0,0,0,2,1,1,0,4.760303,0,54.1,59.11,52.75,47.35,8.333333333333334,1,1,0,0,7,7,2,1,1062,1410936.9,442021,801180.75,0,1715.2517 -14701,18095,32724,32723,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.5911875,7.5206952,13,4,72.816109,0,3,3,2019,8,0,0,54,4,0,0,0,0,1,0,0,0,2,1,1,0,5.07339,7.0561423,52.75,47.35,54.1,59.11,8.333333333333334,1,1,0,0,8,7,2,1,1062,1410936.9,442021,801180.75,0,1715.2517 -14702,18096,32725,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,6.5383492,6.4792275,0,0,-934.56384,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,6.3693018,6.8078184,34.89,43.84,-9,-9,5,1,1,0,1,8,5,2,1,1278,-10026.429,345603.81,0,0,392.9368 -14703,18097,32726,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4058399,8.4140482,0,0,0,-1021.599,0,3,3,2019,10,1,37,52,1,1,0,13.926378,13.926378,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,0,1,1,0,0,6,7,4,0,834,1552355.4,637733.31,380539.22,0,1366.6927 -14704,18098,32727,-9,32730,32729,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-965.49609,-9,2,2,2019,15,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,36.28,59.19,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 -14704,18098,32728,-9,32730,32729,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-920.53552,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 -14704,18098,32729,32730,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,0,0,0,22,4,31.131914,0,1,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,59.87,35,6.666666666666667,1,1,1,0,11,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 -14704,18098,32730,32729,-9,-9,1,0,44,0,1,0,2,2,-9,0,1,8.1017456,8.0724945,0,23,-4,-25.307528,0,2,2,2019,12,0,35,35,1,0,0,10.439481,10.439481,0,0,0,0,0,1,1,0,0,0,59.87,35,54.37,54.8,5,1,1,0,0,12,10,3,1,623,1066928,178.41895,792164.38,0,668.34125 -14704,18099,32731,-9,32730,32729,1,1,18,0,1,0,2,2,1,0,5,8.2472439,7.4330978,0,0,0,-1024.1364,-9,2,2,2019,12,2,42,0,1,2,1,5.5899196,5.5899196,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,2,10,3,1,813,-17466.453,10124.978,0,0,898.09326 -14705,18100,32732,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.1184454,7.1872168,0,0,-976.25104,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2854476,7.2063446,51.34,46.65,-9,-9,10,1,1,0,0,5,2,3,0,576,284257.19,398858.66,165150.14,0,1597.7034 -14706,18101,32733,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.0729685,6.2459712,0,0,-1060.9215,0,2,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.331172,5.7894931,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,1601,1313501.3,0,545455.38,0,1160.7808 -14707,18102,32734,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7758141,6.535274,0,0,-1054.9011,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3464885,6.6509304,48.24,35.69,-9,-9,5,1,1,0,0,0,2,2,1,329,320091.41,16120.912,116910.44,0,475.5491 -14708,18103,32735,32736,-9,-9,1,1,56,0,4,0,3,3,-9,0,3,7.7413936,7.5944929,0,15,13,-15.934769,-9,-9,-9,2019,14,2,34,0,1,2,0,8.6008024,8.6008024,0,0,0,0,0,1,1,0,0,0,46.66,40.56,36.95,46.32,6.666666666666667,2,3,0,0,8,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 -14708,18103,32736,32735,-9,-9,1,0,43,0,4,0,3,3,-9,0,3,0,0,0,15,-13,44.644627,0,3,3,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,36.95,46.32,46.66,40.56,6.666666666666667,2,3,0,0,0,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 -14708,18103,32737,-9,32736,32735,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1029.3124,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 -14708,18103,32738,-9,32736,32735,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-951.79028,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,950.75,579872.31,160431.47,257874.78,0,1268.9619 -14709,18104,32739,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1075.4592,0,3,3,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,26.98,27.16,-9,-9,5,1,1,0,1,0,13,1,0,1851,-120115.66,0,0,0,611.30804 -14709,18105,32740,-9,32739,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-963.4574,0,2,-9,2019,13,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,-9,-9,3.333333333333333,1,1,1,1,1,13,1,0,249,-150568.47,0,0,0,0 -14710,18106,32741,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1044.9338,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,55.02,30.67,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,531,87620.789,0,0,0,723.82196 -14711,18107,32742,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.2694864,8.2407064,0,0,0,-1044.0011,0,2,2,2019,11,1,39,38,1,1,0,14.03954,14.03954,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,6.666666666666667,2,3,0,0,5,2,4,0,806,354063.75,72199.945,0,0,2415.5898 -14712,18108,32743,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,5,0,6.7715669,6.8767738,0,0,-940.73761,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6130648,6.5271068,57.06,57.76,-9,-9,10,1,1,0,0,0,12,2,1,513,-75109.828,42766.383,316454.88,0,878.13733 -14713,18109,32744,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1000.5441,0,2,2,2019,17,6,0,0,4,6,0,0,0,1,3.7670438,0,23.217352,0,1,1,0,0,0,35.19,19.44,-9,-9,6.666666666666667,1,1,0,1,6,8,2,0,505,-10403.886,85501.945,0,0,1244.708 -14714,18110,32745,32746,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.1413221,8.3293362,0,3,-4,18.577482,0,-9,-9,2019,9,0,47,48,1,0,0,7.2699323,7.2699323,0,0,0,0,0,0,0,0,4.2807941,0,48.77,60.16,48.77,60.16,8.333333333333334,1,1,0,0,1,8,5,0,700,101991.69,-21997.512,337549.06,192273.52,3859.981 -14714,18110,32746,32745,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.6101189,8.2574921,0,3,4,-35.411564,0,1,1,2019,10,3,44,40,1,3,0,14.578072,14.578072,0,0,0,0,0,0,0,0,2.123925,0,48.77,60.16,48.77,60.16,8.333333333333334,1,1,0,0,7,8,5,0,700,101991.69,-21997.512,337549.06,192273.52,3859.981 -14715,18111,32747,32748,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7797661,8.1202164,5.6254892,46,-8,33.792587,0,3,3,2019,16,6,26,0,1,6,0,15.60037,15.60037,0,0,0,0,0,1,1,0,2.1230872,6.2476125,49.35,59.64,53,47,8.333333333333334,1,1,0,0,10,7,3,1,265,1012922.8,216560.84,356644.75,0,1907.4637 -14715,18111,32748,32747,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,48,8,-27.912409,0,3,2,2019,11,1,0,10,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,49.35,59.64,8.333333333333334,1,1,0,0,10,7,3,1,265,1012922.8,216560.84,356644.75,0,1907.4637 -14716,18112,32749,-9,32751,32750,1,1,45,0,0,0,1,1,-9,0,3,8.0535574,8.1427402,0,0,0,-1165.0096,0,1,3,2019,10,0,38,38,1,0,0,7.0592752,7.0592752,0,0,0,0,0,1,1,0,0,0,31.4,58.69,-9,-9,3.333333333333333,1,1,0,0,11,5,4,1,1942,17094.385,31614.82,0,0,1379.5979 -14716,18113,32750,32751,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,9,5,0,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,6,5,1,1,1444,-93506.422,0,50073.363,0,1921.0669 -14716,18113,32751,32750,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,0,0,9,-5,0,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,10,5,1,1,1444,-93506.422,0,50073.363,0,1921.0669 -14717,18114,32752,32753,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9664068,8.9342794,0,1,1,-166.24576,-9,2,2,2019,6,0,50,0,1,0,0,21.75947,21.75947,0,0,0,0,7,0,0,0,5.7182331,0,57.16,56.15,49.3,59.89,8.333333333333334,1,1,0,0,11,12,5,1,878.5,693361.69,225319.69,197010.84,0,5044.2588 -14717,18114,32753,32752,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,7.4259915,7.4190612,1,-1,178.27898,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.8393197,7.5051475,49.3,59.89,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,878.5,693361.69,225319.69,197010.84,0,5044.2588 -14718,18115,32754,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.546422,9.1453152,0,0,0,-873.32361,0,-9,-9,2019,21,9,48,50,1,9,0,27.507215,27.507215,0,0,0,0,0,0,0,0,0,0,30.53,65.61,-9,-9,6.666666666666667,4,2,0,0,9,8,5,1,288,463628.59,9843.1563,0,0,3194.0393 -14719,18116,32755,32756,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.6136265,8.7632446,0,6,0,-111.63239,0,2,1,2019,5,0,36,36,1,0,0,21.720383,21.720383,0,0,0,0,0,0,0,0,5.0297613,0,50.65,60.47,57.06,57.76,8.333333333333334,1,1,0,0,7,1,5,1,335.66666,1106077.8,744696.88,371872.56,0,7496.6353 -14719,18116,32756,32755,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.4933815,9.8403072,0,6,0,10.604692,0,2,3,2019,5,0,40,40,1,0,0,36.578812,36.578812,0,0,0,0,0,0,0,0,4.0871234,0,57.06,57.76,50.65,60.47,8.333333333333334,1,1,0,0,7,1,5,1,335.66666,1106077.8,744696.88,371872.56,0,7496.6353 -14719,18116,32757,-9,32755,32756,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.63043,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,335.66666,1106077.8,744696.88,371872.56,0,7496.6353 -14720,18117,32758,32759,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.6255455,7.0559063,6,-4,21.192757,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,28.231455,0,0,1,1,0,0,6.4608393,42.6,35.04,47.39,38.99,6.666666666666667,1,1,0,0,0,8,2,1,391,1301495.3,145315.47,882325.75,0,1417.1738 -14720,18117,32759,32758,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,5.7677073,5.6660848,6,4,13.112131,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,28.775829,0,0,1,1,0,0,6.1529756,47.39,38.99,42.6,35.04,0,1,1,0,0,0,8,2,1,391,1301495.3,145315.47,882325.75,0,1417.1738 -14720,18118,32760,-9,32758,32759,1,0,50,0,0,0,2,2,-9,0,3,8.3809662,8.7326412,0,0,0,-1107.2389,0,2,2,2019,8,0,35,50,1,0,0,14.447306,14.447306,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,1044,622418.63,377209.91,0,0,1978.7839 -14721,18119,32761,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,6.9018912,6.9852467,0,0,-998.99536,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1107104,6.9470143,53.35,41.65,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2410,392041.75,77557.664,147106.67,0,1091.2455 -14722,18120,32762,32763,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9860063,7.1672277,20,-16,53.170723,0,3,3,2019,15,3,0,23,4,3,0,0,0,0,0,0,0,27,1,1,0,5.5777168,6.9833779,48.68,51.82,54,46,8.333333333333334,1,1,0,0,8,12,2,1,3539,401154.59,270251.19,156638.92,0,2841.9526 -14722,18120,32763,32762,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.1085811,5.9296632,8,16,-106.22061,-9,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,32.264366,0,0,1,1,0,.8260631,6.1963019,54,46,48.68,51.82,8,1,1,0,0,0,12,2,1,3539,401154.59,270251.19,156638.92,0,2841.9526 -14723,18121,32764,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.5807347,7.5066042,0,0,-1009.9974,0,1,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.924253,7.6329517,51.24,58.84,-9,-9,8.333333333333334,3,4,0,0,0,6,3,1,232,-257746.22,-27024.768,398731.97,0,2024.1819 -14724,18122,32765,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-943.35858,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.47730759,0,54.73,38.17,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,299,-266123.13,0,0,0,245.83173 -14725,18123,32766,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,3,8.0382366,8.3817978,0,0,0,-885.20331,0,3,3,2019,7,0,50,60,1,0,0,7.3877826,7.3877826,0,0,0,0,0,1,1,0,3.4808419,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,773,305589.34,15305.687,0,0,2178.8264 -14726,18124,32767,32768,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.1286373,8.2223225,0,6,3,171.30182,0,2,2,2019,6,0,37,37,1,0,0,10.802627,10.802627,0,0,0,0,0,1,1,0,0,0,51.83,57.2,44.02,60.7,8.333333333333334,1,1,0,0,7,11,4,1,666.5,511279.94,60487.051,178394.25,91403.781,3531.2109 -14726,18124,32768,32767,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.6402044,8.5045948,0,6,-3,-170.62891,0,2,2,2019,11,0,14,35,1,0,0,29.771692,29.771692,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.83,57.2,6.666666666666667,1,1,0,0,5,11,4,1,666.5,511279.94,60487.051,178394.25,91403.781,3531.2109 -14727,18125,32769,32773,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,9.4588461,9.5967512,0,5,1,-90.634407,0,2,2,2019,9,0,50,37,1,0,0,29.215324,29.215324,0,0,0,0,0,1,1,0,0,0,60.29,52.11,46.63,59.72,1.666666666666667,1,1,0,0,9,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 -14727,18125,32770,-9,32773,32769,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.1559,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 -14727,18125,32771,-9,32773,32769,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.61072,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 -14727,18125,32772,-9,32773,32769,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.5847,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 -14727,18125,32773,32769,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,8.42834,8.2626276,0,5,-1,-207.94017,0,-9,-9,2019,11,0,22,23,1,0,0,18.002945,18.002945,0,0,0,0,0,1,1,0,0,0,46.63,59.72,60.29,52.11,8.333333333333334,1,1,0,0,9,7,5,1,1514.6,799589.5,51507.414,980635.06,316320.91,5303.8813 -14728,18126,32774,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.6397014,7.4775419,0,0,-1073.4979,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.672361,7.5116868,45.86,22.63,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,605,397419.97,0,311245.16,0,1324.6378 -14729,18127,32775,-9,32777,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-782.38312,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,682.33331,-15975.672,41735.578,0,0,1656.6404 -14729,18127,32776,-9,32777,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1008.6129,-9,2,-9,2019,21,9,0,0,2,9,0,0,0,0,0,0,0,0,1,0,1,0,0,13.46,64.02,-9,-9,5,1,1,0,0,0,1,3,1,682.33331,-15975.672,41735.578,0,0,1656.6404 -14729,18127,32777,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.196002,8.0760813,0,0,0,-910.88617,0,3,3,2019,16,5,38,37,1,5,0,8.9104872,8.9104872,0,0,0,0,0,1,0,1,0,0,39.33,58.88,-9,-9,6.666666666666667,1,1,0,1,10,1,3,1,682.33331,-15975.672,41735.578,0,0,1656.6404 -14729,18128,32778,-9,32777,-9,1,1,21,0,2,0,2,2,-9,0,4,8.0084867,7.7581944,0,0,0,-1070.7822,0,2,-9,2019,6,0,40,40,1,0,1,7.9539332,7.9539332,0,0,0,0,0,1,0,1,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,7,1,3,1,1756,-154668.38,-28122.338,0,0,909.14496 -14729,18129,32779,-9,32777,-9,1,1,20,0,2,0,2,2,-9,0,5,7.3373237,7.6576824,0,0,0,-1068.0034,0,2,-9,2019,10,2,35,35,1,2,1,6.349987,6.349987,0,0,0,0,0,1,0,1,0,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,3,1,3,1,365,-325249.09,0,0,0,1023.6289 -14729,18130,32780,-9,32777,-9,1,1,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-948.914,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,48.28,60.18,-9,-9,6.666666666666667,1,1,1,0,2,1,1,1,705,-53631.461,0,0,0,447.0354 -14730,18131,32781,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.0403543,7.2222919,0,0,-1096.9595,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7037194,7.1224322,48.68,58.58,-9,-9,10,1,1,0,0,0,11,3,0,552,551394.13,348275.13,312290.16,0,1661.6926 -14731,18132,32782,-9,32783,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.4299,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,713,-172345.27,0,0,0,1549.1211 -14731,18132,32783,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,7.8790359,7.6020408,0,0,0,-853.25409,0,2,-9,2019,17,5,30,30,1,5,0,9.2507668,9.2507668,0,0,0,0,0,1,1,0,0,0,42.44,57.54,-9,-9,5,1,1,0,0,7,4,3,0,713,-172345.27,0,0,0,1549.1211 -14732,18133,32784,32785,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.4088526,8.1391926,0,1,2,54.504768,-9,2,2,2019,13,3,45,0,1,3,0,10.934125,10.934125,0,0,0,0,0,0,0,0,0,0,55.01,36.8,53.82,37.32,6.666666666666667,1,1,0,0,12,5,5,0,765.5,-64068.211,15256.779,146049.91,81993.844,3629.3857 -14732,18133,32785,32784,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.5101366,8.5768538,0,1,-2,-19.722151,-9,-9,-9,2019,13,1,45,0,1,1,0,14.150369,14.150369,0,0,0,0,0,0,0,0,0,0,53.82,37.32,55.01,36.8,8.333333333333334,1,1,0,0,4,5,5,0,765.5,-64068.211,15256.779,146049.91,81993.844,3629.3857 -14732,18134,32786,-9,32785,32784,1,1,21,0,0,0,2,2,-9,0,4,7.5857801,7.9551082,0,0,0,-1132.2118,-9,2,2,2019,11,0,40,0,1,2,1,4.5637813,4.5637813,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,3,0,393,-87866.82,0,0,0,1014.697 -14733,18135,32787,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.3552151,7.1743116,0,0,-1024.4182,0,2,3,2019,7,0,0,0,4,0,0,0,0,1,42.632305,0,0,0,1,1,0,1.5863823,6.8931251,60.85,26.21,-9,-9,10,1,1,0,0,0,5,2,1,117,47335.164,103431.02,311523.91,0,1527.6224 -14734,18136,32788,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,9.9198513,9.8686762,0,0,-979.90833,-9,2,2,2019,10,0,0,0,4,0,0,0,0,1,125.3338,0,1170.0094,0,1,1,0,9.5660887,9.759944,47.98,45.38,-9,-9,6.666666666666667,1,1,0,0,0,9,5,0,1471,3206599.3,1278503.4,1152267.1,0,11918.804 -14735,18137,32789,32790,-9,-9,1,1,40,0,1,0,2,2,-9,1,4,0,0,0,7,2,1.0025684,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,57.33,53.46,8,1,1,0,0,3,12,4,0,426.5,518094.63,461516.38,224249.19,48308.898,2735.3804 -14735,18137,32790,32789,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.775794,8.7723198,0,7,-2,-77.583542,0,-9,-9,2019,8,0,37,38,1,0,0,18.103785,18.103785,0,0,0,0,42,1,1,0,0,0,57.33,53.46,51,56,8.333333333333334,1,1,0,0,8,12,4,0,426.5,518094.63,461516.38,224249.19,48308.898,2735.3804 -14735,18138,32791,-9,32790,32789,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1018.8866,1,2,2,2019,12,0,0,36,2,2,1,0,0,0,0,0,0,14.5,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,12,1,0,142,-30395.07,0,0,0,0 -14736,18139,32792,-9,-9,-9,1,0,79,0,1,0,3,3,-9,0,3,0,6.1391382,5.8631845,0,0,-1003.047,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,252.43959,0,0,1,1,0,0,6.0216928,52,46,-9,-9,8,1,1,0,0,0,2,2,1,808,-24343.789,85819.234,107384.17,0,1404.5714 -14736,18140,32793,-9,32794,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-977.29083,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,905.5,180423.72,5258.2891,192313.55,0,1027.5063 -14736,18140,32794,-9,32792,-9,1,0,51,0,1,0,2,2,-9,0,2,8.0986919,8.2555017,0,0,0,-1014.2803,0,3,3,2019,12,0,40,40,1,0,0,10.005643,10.005643,0,0,0,0,0,1,1,0,0,0,55.2,49.4,-9,-9,5,1,1,0,0,10,2,3,1,905.5,180423.72,5258.2891,192313.55,0,1027.5063 -14737,18141,32795,32796,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,0,0,8,2,-72.745438,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,0,53.44,55.06,31.92,27.68,10,1,1,0,0,0,12,4,1,1066.5,575846.69,431644.63,0,0,3862.979 -14737,18141,32796,32795,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,8.5294428,8.4728737,8,-2,59.287205,0,2,2,2019,14,2,0,0,4,2,0,0,0,1,0,12.034468,0,0,1,1,0,3.2517817,8.4772568,31.92,27.68,53.44,55.06,6.666666666666667,1,1,0,0,0,12,4,1,1066.5,575846.69,431644.63,0,0,3862.979 -14738,18142,32797,32798,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6446571,9.1958838,0,8,0,-48.601669,0,1,-9,2019,7,0,50,50,1,0,0,15.097052,15.097052,0,0,0,0,0,0,0,0,1.9360172,0,57.9,51.84,60.03,45.37,8.333333333333334,1,1,0,0,10,2,5,1,481,526896.94,173376.88,117378.93,0,3599.1069 -14738,18142,32798,32797,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8663092,7.7799745,0,8,0,-50.029163,0,1,2,2019,8,0,41,39,1,0,0,6.7549825,6.7549825,0,0,0,0,0,0,0,0,0,0,60.03,45.37,57.9,51.84,8.333333333333334,1,1,0,0,7,2,5,1,481,526896.94,173376.88,117378.93,0,3599.1069 -14738,18143,32799,-9,32798,32797,1,1,18,0,0,0,2,2,-9,0,3,7.0655241,7.1315742,0,0,0,-1050.582,0,2,2,2019,11,2,37,0,1,2,1,3.7406006,3.7406006,0,0,0,0,0,0,0,0,0,0,45.98,56.3,-9,-9,3.333333333333333,1,1,0,1,1,2,3,1,2133,330493.44,0,0,0,585.96313 -14739,18144,32800,-9,32803,32802,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.47247,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,2,0,865.75,144613.61,0,0,0,900.79346 -14739,18144,32801,-9,32803,32802,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.379,-9,3,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,865.75,144613.61,0,0,0,900.79346 -14739,18144,32802,32803,-9,-9,1,1,55,1,2,0,1,1,-9,0,3,5.2746296,5.2213378,0,10,20,-85.773766,0,3,2,2019,10,1,38,38,1,1,0,.54197127,.54197127,0,0,0,0,0,1,1,0,1.6092448,0,40.9,56.09,49,56,8.333333333333334,3,4,0,0,6,9,2,0,865.75,144613.61,0,0,0,900.79346 -14739,18144,32803,32802,-9,-9,1,0,35,1,2,0,3,3,-9,0,4,6.9015722,7.0680671,0,6,-20,4.5851512,0,3,2,2019,11,0,14,1,1,2,0,7.4066358,7.4066358,0,0,0,0,0,1,1,0,0,0,49,56,40.9,56.09,7,3,4,0,0,2,9,2,0,865.75,144613.61,0,0,0,900.79346 -14740,18145,32804,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,9.4585304,9.3203144,0,0,-971.02795,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,9.2419529,62.39,56.71,-9,-9,10,1,1,0,0,2,12,5,1,772,1794796.4,706320,622709.81,0,5750.6089 -14741,18146,32805,32806,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,9,-6,77.687126,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,43.01,61.52,45.11,10,1,1,0,0,0,13,2,1,895.5,680422.13,239578.03,288568.81,0,2490.1289 -14741,18146,32806,32805,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.9337335,6.60425,9,6,-63.846336,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1597481,61.52,45.11,59.7,43.01,8.333333333333334,1,1,0,0,3,13,2,1,895.5,680422.13,239578.03,288568.81,0,2490.1289 -14741,18147,32807,-9,32805,32806,1,1,39,0,0,0,3,3,-9,1,4,0,0,0,0,0,-934.71704,0,2,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,13,1,1,239,0,0,0,0,403.48096 -14742,18148,32808,-9,32809,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-946.95825,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,42.62,43.19,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,1161,-477005.69,0,0,0,879.74786 -14742,18149,32809,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1057.0415,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,2,2,1,272,63009.203,0,0,0,1037.7295 -14743,18150,32810,32811,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.0139518,6.3155775,9,2,-18.438515,0,3,2,2019,14,2,0,0,4,2,0,0,0,1,0,11.463098,0,0,1,1,0,5.3821726,6.3753018,36.61,17.55,46.93,26.05,6.666666666666667,1,1,0,0,0,11,2,1,330,331386.56,12382.123,105559.27,0,2670.2446 -14743,18150,32811,32810,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,9,-2,35.342972,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,71.5,1,1,0,0,0,46.93,26.05,36.61,17.55,8.333333333333334,1,1,0,0,0,11,2,1,330,331386.56,12382.123,105559.27,0,2670.2446 -14744,18151,32812,-9,32814,32813,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.52271,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 -14744,18151,32813,32814,-9,-9,1,1,50,0,2,0,2,2,-9,1,3,8.4325943,8.6658649,0,18,10,12.438645,0,2,2,2019,5,0,48,48,1,0,0,9.4087811,9.4087811,0,0,0,0,42,1,1,0,0,0,58.89,48.6,27.18,32.65,8.333333333333334,1,1,0,0,12,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 -14744,18151,32814,32813,-9,-9,1,0,40,0,2,0,2,2,-9,1,2,6.8732786,6.8721905,0,19,-10,-26.108538,0,3,-9,2019,15,3,8,8,1,3,0,14.906178,14.906178,0,0,0,0,42,1,1,0,0,0,27.18,32.65,58.89,48.6,8.333333333333334,1,1,0,0,12,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 -14744,18151,32815,-9,32814,32813,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3496,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,498.25,123188.41,-37276.762,0,0,3646.4744 -14745,18152,32816,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.1865282,9.2648697,0,0,0,-1088.817,-9,1,1,2019,11,0,45,0,1,0,0,34.047291,34.047291,0,0,0,0,7,0,0,0,7.0159936,0,44.26,59.43,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,459,-289525.38,105133.46,0,0,4660.4385 -14746,18153,32817,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.2051201,8.5137377,6.8473091,0,0,-968.32544,0,2,2,2019,30,11,34,32,1,11,0,10.491413,10.491413,0,0,0,0,0,1,1,0,6.4609294,0,6.43,67.32000000000001,-9,-9,1.666666666666667,1,1,0,0,12,5,4,1,160,1078752,933982.88,73958.953,27626.014,1835.1223 -14746,18153,32818,-9,32817,-9,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1032.7834,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,4,1,160,1078752,933982.88,73958.953,27626.014,1835.1223 -14746,18154,32819,-9,32817,-9,1,1,21,0,1,1,2,0,0,0,2,0,7.6382298,7.3205466,0,0,-830.45483,-9,2,-9,2019,18,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,7.5411882,0,43.29,41.01,-9,-9,3.333333333333333,1,1,0,0,4,5,3,1,691,135835.03,29822.018,0,0,1566.9521 -14747,18155,32820,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3798065,7.5208158,0,0,0,-964.76135,0,2,2,2019,21,8,26,-9,1,8,0,7.9754195,7.9754195,0,0,0,0,0,0,0,0,0,0,22.04,60.35,-9,-9,0,1,1,0,0,12,7,3,1,1090,615604.25,366888.72,0,0,402.85776 -14748,18156,32821,32822,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2702351,8.2318325,5.3634524,6,5,-28.505461,0,3,3,2019,7,0,50,45,1,0,0,8.5346947,8.5346947,0,0,0,0,2,0,0,0,5.9762487,5.8725557,58.72,51.29,58.15,52.91,8.333333333333334,1,1,0,0,8,7,4,0,1239.5,1169727,537429.5,432490,0,3147.7297 -14748,18156,32822,32821,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.017415,7.8490725,0,6,-5,-4.4917507,0,2,2,2019,8,0,35,35,1,0,0,8.1573658,8.1573658,0,0,0,0,0,0,0,0,.46214724,0,58.15,52.91,58.72,51.29,8.333333333333334,1,1,0,0,6,7,4,0,1239.5,1169727,537429.5,432490,0,3147.7297 -14749,18157,32823,32824,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,9,0,-10.041924,0,3,2,2019,23,10,0,0,3,10,0,0,0,0,0,0,0,120,1,1,0,5.7060418,0,31.68,20.62,60.28,38.54,5,1,1,0,0,0,9,4,1,417.5,977337.19,641172.63,388849.13,0,4281.2139 -14749,18157,32824,32823,-9,-9,1,1,65,0,0,0,2,2,-9,1,4,8.5471773,8.3369942,0,9,9,68.800804,0,3,3,2019,6,0,30,38,1,0,0,18.770174,18.770174,1,1.3459749,0,24.520399,7,1,1,0,0,0,60.28,38.54,31.68,20.62,8.333333333333334,1,1,0,0,10,9,4,1,417.5,977337.19,641172.63,388849.13,0,4281.2139 -14750,18158,32825,32826,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,9.6531248,9.6122217,0,1,-4,9.7350702,-9,2,-9,2019,11,1,57,0,1,1,0,33.804642,33.804642,0,0,0,0,0,0,0,0,6.6724253,0,60.02,56.42,58.48,41.86,10,1,1,0,0,10,10,5,1,528,849528.56,118685.19,340170.38,102009.78,6525.8594 -14750,18158,32826,32825,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.4585581,6.3251505,0,1,4,-38.741222,-9,2,3,2019,7,1,2,0,1,1,0,30.050076,30.050076,0,0,0,0,0,0,0,0,8.3722572,0,58.48,41.86,60.02,56.42,8.333333333333334,1,1,0,0,10,10,5,1,528,849528.56,118685.19,340170.38,102009.78,6525.8594 -14750,18159,32827,-9,32825,32826,1,1,20,0,0,0,2,2,-9,0,3,7.5385871,7.2370772,0,0,0,-1110.2484,-9,2,2,2019,24,10,23,0,1,10,1,7.8721004,7.8721004,0,0,0,0,0,0,0,0,0,0,27.75,60.63,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,715,-235189.09,0,0,0,1441.5892 -14751,18160,32828,32830,-9,-9,1,0,37,0,3,0,2,2,-9,0,2,6.9171147,7.0902681,0,17,-4,37.840206,0,-9,-9,2019,12,0,16,32,1,0,0,7.8532343,7.8532343,0,0,0,0,0,0,0,0,0,0,40.02,48.03,58.72,51.29,6.666666666666667,2,3,0,0,6,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 -14751,18160,32829,-9,32828,32830,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1020.7756,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 -14751,18160,32830,32828,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.1528015,9.6205225,0,17,4,8.468935,0,-9,-9,2019,8,0,125,68,1,0,0,10.070358,10.070358,0,0,0,0,0,0,0,0,0,0,58.72,51.29,40.02,48.03,8.333333333333334,2,3,0,0,8,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 -14751,18160,32831,-9,32828,32830,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.10522,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 -14751,18160,32832,-9,32828,32830,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-916.26617,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,4,5,1,230.39999,721425.19,296492.31,365751.53,76209.297,3970.5623 -14752,18161,32833,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,7.8404517,7.9598179,0,0,0,-905.53638,-9,1,1,2019,13,4,53,0,1,4,1,5.27562,5.27562,0,0,0,0,0,1,1,0,0,0,38.98,45.39,-9,-9,8.333333333333334,2,3,0,0,3,7,3,1,95,-77495.094,0,0,0,1409.8848 -14753,18162,32834,32835,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,6.8199968,6.6227908,0,27,-5,-117.44001,0,3,3,2019,13,1,22,20,1,1,0,5.6147585,5.6147585,0,0,0,0,0,1,1,0,0,0,36.95,43.05,37.44,33.41,3.333333333333333,1,1,0,0,12,1,4,0,490.5,559784.31,-49473.91,214180.94,-31.45166,3551.7993 -14753,18162,32835,32834,-9,-9,1,1,66,0,0,0,2,2,-9,1,1,8.6821747,8.5135517,6.499331,30,5,31.680874,0,3,3,2019,24,12,55,55,1,12,0,10.377504,10.377504,1,0,0,0,0,1,1,0,6.0604944,6.6633897,37.44,33.41,36.95,43.05,3.333333333333333,1,1,0,0,11,1,4,0,490.5,559784.31,-49473.91,214180.94,-31.45166,3551.7993 -14754,18163,32836,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.5547342,7.1357713,0,4,15,89.992752,0,3,3,2019,21,9,35,44,1,9,0,6.0098696,6.0098696,0,0,0,0,0,0,0,0,0,0,52.66,27.15,39.33,58.88,3.333333333333333,1,1,0,0,10,12,4,1,276,56511.582,65404.914,0,0,365.88138 -14754,18164,32837,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.571393,8.5380926,0,4,-15,63.761951,0,3,2,2019,12,0,42,42,1,0,0,13.062859,13.062859,0,0,0,0,0,0,0,0,0,0,39.33,58.88,52.66,27.15,8.333333333333334,1,1,0,1,8,12,4,1,543,470482.13,49868.48,187509.55,107515,1220.7135 -14755,18165,32838,-9,-9,-9,1,0,39,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1100.8573,0,3,-9,2019,21,6,0,16,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,34.76,54.46,-9,-9,10,1,1,0,0,11,1,1,0,543,-194422.78,0,0,0,-149.96712 -14756,18166,32839,32840,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,6.6274819,6.4416928,61,2,-94.63459,0,3,3,2019,12,3,0,0,4,3,0,0,0,1,0,70.502045,0,0,1,1,0,0,6.2759924,44.76,21.72,53.48,32.81,3.333333333333333,1,1,0,0,0,2,2,1,724.5,146868.36,110311.73,83505.938,0,2545.4595 -14756,18166,32840,32839,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,5.2696385,5.3199959,61,-2,-47.821579,0,-9,-9,2019,12,3,0,0,4,3,0,0,0,1,0,5.2663312,0,74.5,1,1,0,0,5.5626645,53.48,32.81,44.76,21.72,6.666666666666667,1,1,0,0,0,2,2,1,724.5,146868.36,110311.73,83505.938,0,2545.4595 -14756,18167,32841,-9,32840,32839,1,1,49,0,0,0,2,2,-9,0,5,3.7367766,3.5743499,0,0,0,-1020.3351,0,2,2,2019,6,0,40,40,1,0,0,.090993181,.090993181,0,0,0,0,14.5,1,1,0,0,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,6,2,2,1,292,72463.672,0,0,0,-464.71133 -14757,18168,32842,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-951.66174,0,3,-9,2019,36,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.32,31.26,-9,-9,0,1,1,0,1,0,1,1,0,590,0,0,0,0,943.81732 -14758,18169,32843,-9,32845,32844,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-834.20386,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 -14758,18169,32844,32845,-9,-9,1,1,43,0,4,0,3,3,-9,0,4,5.7390342,5.6611271,0,6,9,-147.97527,0,3,3,2019,9,0,48,60,1,1,0,.99086314,.99086314,0,0,0,0,0,1,1,0,0,0,52,56,54.2,57.49,8,1,1,0,0,1,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 -14758,18169,32845,32844,-9,-9,1,0,34,0,4,0,2,2,-9,1,4,0,0,0,6,0,34.300907,0,2,3,2019,10,0,0,40,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.2,57.49,52,56,8.333333333333334,1,1,1,0,2,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 -14758,18169,32846,-9,32845,32844,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.6781,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 -14758,18169,32847,-9,32845,32844,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.8741,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,2399,-69764.867,0,57822.008,46010.965,3065.0383 -14759,18170,32848,32849,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.3361669,7.1990819,0,5,-18,5.1247644,0,2,2,2019,17,5,18,15,1,5,0,10.348517,10.348517,0,0,0,0,27,1,1,0,0,0,43.15,32.98,41.92,25.86,5,1,1,0,0,11,2,2,0,741,211237.81,31667.582,0,0,2649.8984 -14759,18170,32849,32848,-9,-9,1,1,60,0,1,0,3,3,-9,1,1,0,0,0,5,18,-45.846943,0,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.92,25.86,43.15,32.98,5,1,1,0,0,0,2,2,0,741,211237.81,31667.582,0,0,2649.8984 -14760,18171,32850,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.0746779,7.3062162,0,0,-979.39758,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,5.48,1,1,0,3.0005164,7.3111186,35.4,49.25,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,347,117471.32,196687.11,127656.97,0,893.67267 -14761,18172,32851,32852,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,8.2060795,8.102191,0,47,-2,28.106153,0,-9,-9,2019,9,0,30,30,1,0,0,16.159149,16.159149,0,0,0,0,0,1,1,0,0,0,54.1,59.11,61.43,43.34,10,1,1,0,0,12,7,5,1,107,46915.848,13492.336,0,0,4643.0352 -14761,18172,32852,32851,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.721467,8.287549,8.0537586,47,2,-82.630684,0,-9,-9,2019,9,0,24,30,1,0,0,3.2414751,3.2414751,0,0,0,0,0,1,1,0,1.2739158,7.7934723,61.43,43.34,54.1,59.11,8.333333333333334,1,1,0,0,12,7,5,1,107,46915.848,13492.336,0,0,4643.0352 -14762,18173,32853,-9,32856,32854,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1083.4922,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 -14762,18173,32854,32856,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.1883316,9.3686714,0,20,2,65.718445,0,3,2,2019,19,7,40,40,1,7,0,22.677038,22.677038,0,0,0,0,0,0,0,0,0,0,42.18,53.85,54.2,57.49,1.666666666666667,1,1,0,0,8,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 -14762,18173,32855,-9,32856,32854,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-965.59674,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 -14762,18173,32856,32854,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.8739252,8.9270687,0,22,-2,51.892776,0,3,2,2019,11,0,40,40,1,0,0,23.351215,23.351215,0,0,0,0,0,0,0,0,7.7939272,0,54.2,57.49,42.18,53.85,8.333333333333334,1,1,0,0,8,7,5,1,554.5,3569098.3,2267412.5,1414564.5,184394.7,5700.2129 -14763,18174,32857,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-999.29468,0,-9,-9,2019,20,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,1.6533027,0,45.98,31.58,-9,-9,5,1,1,0,0,2,7,1,0,340,-185504.3,0,0,0,1641.0219 -14764,18175,32858,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.3273449,9.1197891,0,0,0,-950.2915,0,2,-9,2019,16,5,51,49,1,5,0,17.240465,17.240465,0,0,0,0,0,0,0,0,2.9314783,0,44.19,56.73,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,2430,347557.81,16147.296,270434.75,64422.105,3378.9729 -14765,18176,32859,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.6891632,9.1501503,0,0,0,-1053.429,0,3,3,2019,7,0,37,37,1,0,0,18.299639,18.299639,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,1996,1020995.4,724053.94,309251.09,0,2740.7654 -14766,18177,32860,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,9.2238073,8.8174276,0,0,0,-1015.0341,0,3,3,2019,5,0,60,20,1,0,0,22.73704,22.73704,0,0,0,0,0,0,0,0,6.9926524,0,62.39,56.71,-9,-9,10,2,3,0,0,13,9,5,1,226,133078.89,47404.988,291939.81,22940.992,3877.8687 -14767,18178,32861,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-897.7735,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,342,-14061.399,0,0,0,1246.7183 -14768,18179,32862,-9,32864,32863,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.325,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,688,94355.438,5037.3428,0,0,3253.7544 -14768,18179,32863,32864,-9,-9,1,1,40,0,1,0,2,2,-9,0,5,8.4635029,8.5372782,0,1,7,24.253723,0,3,2,2019,4,0,47,45,1,0,0,13.738817,13.738817,0,0,0,0,0,1,1,0,0,0,62.18,44.39,49.66,51.47,10,1,1,0,0,10,5,4,1,688,94355.438,5037.3428,0,0,3253.7544 -14768,18179,32864,32863,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,7.5899324,8.121314,0,1,-7,1.8335867,-9,-9,-9,2019,10,0,40,0,1,0,0,7.1150303,7.1150303,0,0,0,0,0,1,1,0,0,0,49.66,51.47,62.18,44.39,8.333333333333334,4,2,0,0,0,5,4,1,688,94355.438,5037.3428,0,0,3253.7544 -14769,18180,32865,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-923.84235,0,3,3,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,24.41,-9,-9,6.666666666666667,1,1,0,0,6,8,1,0,808,-129764.77,0,0,0,531.43958 -14770,18181,32866,32867,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,25,-4,0,0,-9,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.3,24.75,32.27,27.58,5,1,1,0,1,0,12,1,0,806.5,-27441.25,0,0,0,646.22565 -14770,18181,32867,32866,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,25,4,0,0,3,3,2019,34,12,0,0,3,12,0,0,0,0,0,0,2.6203399,0,1,1,0,0,0,32.27,27.58,35.3,24.75,0,1,1,0,1,0,12,1,0,806.5,-27441.25,0,0,0,646.22565 -14771,18182,32868,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,.6834774,.89660764,0,0,-932.47272,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,.96132278,.95600516,56.18,53.85,-9,-9,8.333333333333334,4,5,1,1,2,10,2,1,556,617908.88,136675.53,0,0,-112.84243 -14772,18183,32869,32870,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,1,-4,41.597042,-9,-9,-9,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,1.666666666666667,4,2,0,0,1,9,5,0,342,668140.19,20164.195,316247.75,0,3505.0498 -14772,18183,32870,32869,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.7659159,8.9550486,0,1,4,-13.421375,0,2,2,2019,6,0,39,39,1,0,0,21.109987,21.109987,0,0,0,0,0,1,1,0,3.7367699,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,9,5,0,342,668140.19,20164.195,316247.75,0,3505.0498 -14773,18184,32871,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.7535582,7.7555289,0,0,0,-1004.395,0,2,1,2019,6,0,45,40,1,0,0,6.3096471,6.3096471,0,0,0,0,0,0,0,0,3.6244445,0,43.66,34.84,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,195,236337.28,29715.994,242626.75,0,876.92914 -14774,18185,32872,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1154.6375,-9,2,2,2019,8,2,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47.76,47.23,-9,-9,5,1,1,1,1,10,1,2,0,287,-50945.941,0,0,0,8.9032526 -14775,18186,32873,-9,32875,-9,1,0,48,0,1,0,2,2,-9,1,4,7.5097685,8.0598507,7.2117848,0,0,-1076.7593,0,3,2,2019,5,0,26,28,1,0,0,7.6297541,7.6297541,0,0,0,0,2,1,1,0,7.9447289,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,5,10,3,1,408.5,-175898.61,0,0,0,2640.1499 -14775,18186,32874,-9,32873,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1059.3601,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,1,408.5,-175898.61,0,0,0,2640.1499 -14775,18187,32875,-9,-9,-9,1,0,87,0,1,0,3,3,-9,0,2,0,0,0,0,0,-974.28613,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,2.9012916,0,0,0,1,1,0,.69194669,0,50,33,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,901,-172936.25,0,0,0,1086.5211 -14776,18188,32876,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.9340692,7.9221396,0,0,0,-1087.7855,0,-9,-9,2019,10,0,70,50,1,1,0,3.5432839,3.5432839,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,3,1,415,90849.078,0,0,0,709.90485 -14776,18189,32877,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.0809364,6.7423472,0,0,-933.45526,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2895837,6.7165461,60.69,50.51,-9,-9,10,1,1,0,0,0,7,2,1,283,686940.56,-23488.955,381191.97,0,1103.9641 -14777,18190,32878,32879,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.9931755,8.0401707,0,1,2,-121.19845,-9,-9,-9,2019,9,0,50,0,1,0,0,7.4176912,7.4176912,0,0,0,0,0,0,0,0,.82949686,0,42.33,57.46,52.23,55.6,8.333333333333334,1,1,0,0,2,5,4,1,1064.5,512378.47,-37572.313,0,0,2640.9707 -14777,18190,32879,32878,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.9461617,8.0584269,0,1,-2,-12.937969,-9,2,2,2019,16,4,45,0,1,4,0,7.3824816,7.3824816,0,0,0,0,0,0,0,0,0,0,52.23,55.6,42.33,57.46,5,1,1,0,0,6,5,4,1,1064.5,512378.47,-37572.313,0,0,2640.9707 -14778,18191,32880,32881,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.2923241,8.5090065,0,7,6,-21.836287,-9,-9,-9,2019,8,0,40,0,1,0,0,14.896729,14.896729,0,0,0,0,0,0,0,0,0,0,54,54,52.37,56.93,8,3,4,0,0,1,8,4,1,613,409379.63,138389.5,350321.31,0,2728.4829 -14778,18191,32881,32880,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.0794587,7.1227293,0,7,-6,9.4641848,0,3,2,2019,6,0,15,20,1,0,0,10.623929,10.623929,0,0,0,0,0,0,0,0,0,0,52.37,56.93,54,54,8.333333333333334,4,2,0,0,9,8,4,1,613,409379.63,138389.5,350321.31,0,2728.4829 -14779,18192,32882,-9,32883,32884,1,1,23,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1000.8445,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,.66413713,0,49,58,-9,-9,7,2,3,1,0,0,6,2,1,707,-80319.359,0,0,0,-324.25476 -14779,18193,32883,32884,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,32,4,0,0,3,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,0,1,0,0,50,47,40.28,27.66,7,2,3,0,0,0,6,1,1,1059.5,130377.27,0,0,0,1202.3684 -14779,18193,32884,32883,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,32,-4,0,0,3,3,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,40.28,27.66,50,47,3.333333333333333,2,3,1,1,0,6,1,1,1059.5,130377.27,0,0,0,1202.3684 -14779,18194,32885,-9,32883,32884,1,1,25,0,0,0,2,2,-9,0,4,8.0996523,7.9603548,0,0,0,-997.70386,0,3,3,2019,10,0,40,40,1,1,1,7.302609,7.302609,0,0,0,0,0,1,0,1,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,3645,-162561.28,0,0,0,1856.2988 -14779,18195,32886,-9,32883,32884,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1037.1309,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,0,1,0,0,63.38,53.47,-9,-9,6.666666666666667,2,3,1,0,0,6,1,1,1093,-221261.23,0,0,0,103.69255 -14780,18196,32887,32888,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,6.8871675,6.5507922,0,8,-1,140.15376,0,2,2,2019,8,1,30,0,1,1,0,3.8677094,3.8677094,0,0,0,0,7,0,0,0,5.5709071,0,55.79,52.62,54.37,54.8,6.666666666666667,1,1,0,0,10,10,5,1,720,1855687,1445619,288051.25,85661.203,4651.7998 -14780,18196,32888,32887,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.254446,9.4183998,0,8,1,19.394745,0,3,2,2019,11,0,50,50,1,0,0,23.551229,23.551229,0,0,0,0,2,0,0,0,2.9876225,0,54.37,54.8,55.79,52.62,8.333333333333334,1,1,0,0,8,10,5,1,720,1855687,1445619,288051.25,85661.203,4651.7998 -14781,18197,32889,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.1961212,7.9428825,0,0,0,-937.34021,0,2,2,2019,12,0,37,38,1,0,0,9.4762449,9.4762449,0,0,0,0,0,0,0,0,0,0,40.4,58.34,-9,-9,6.666666666666667,1,1,0,0,10,5,4,1,358,-168225.41,-73246.586,0,0,745.13965 -14782,18198,32890,-9,32893,32894,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.97797,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 -14782,18198,32891,-9,32893,32894,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.1685,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 -14782,18198,32892,-9,32893,32894,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.25031,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 -14782,18198,32893,32894,-9,-9,1,0,34,0,3,0,3,3,-9,0,5,6.6991682,6.2435336,0,5,-7,10.667848,0,-9,-9,2019,6,0,18,18,1,0,0,4.3523984,4.3523984,0,0,0,0,0,1,1,0,0,0,41.07,60.93,45.68,47.6,5,1,1,0,0,8,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 -14782,18198,32894,32893,-9,-9,1,1,41,0,3,0,2,2,-9,0,4,7.7918606,7.4484525,0,5,7,-39.769814,0,-9,-9,2019,6,0,32,33,1,0,0,10.449272,10.449272,0,0,0,0,0,1,1,0,5.7135105,0,45.68,47.6,41.07,60.93,10,1,1,0,0,8,11,2,1,616.79999,-12837.561,97150.07,0,0,2261.7913 -14783,18199,32895,-9,32896,32897,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.5226,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,521.33331,-35534.258,0,0,0,1088.8046 -14783,18199,32896,32897,-9,-9,1,0,31,0,1,0,2,2,-9,0,5,0,0,0,2,-1,-79.889893,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,23.66,60.92,47.12,56.68,1.666666666666667,1,1,0,0,1,7,2,0,521.33331,-35534.258,0,0,0,1088.8046 -14783,18199,32897,32896,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,7.7950449,7.6037102,0,2,1,-6.0603914,0,2,1,2019,12,2,45,45,1,2,0,4.4627709,4.4627709,0,0,0,0,7,1,1,0,0,0,47.12,56.68,23.66,60.92,6.666666666666667,1,1,0,0,6,7,2,0,521.33331,-35534.258,0,0,0,1088.8046 -14784,18200,32898,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1085.5341,0,2,2,2019,10,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,51.46,40.89,-9,-9,8.333333333333334,3,4,0,0,5,8,1,1,472,236439.67,0,256233.03,0,763.84448 -14785,18201,32899,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.27281,8.4636469,0,0,0,-1077.5079,0,3,-9,2019,7,0,42,43,1,0,0,14.024746,14.024746,0,0,0,0,0,1,1,0,0,0,39.73,53.35,-9,-9,8.333333333333334,4,2,0,0,10,2,4,1,630,339061.38,154009.84,188389.58,0,2042.0251 -14786,18202,32900,32901,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.7546401,6.5993166,54,3,-31.090141,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6093636,6.4116879,43.84,42.31,58.15,52.91,8.333333333333334,1,1,0,0,0,10,2,1,741,350764.81,59789.727,114583.1,0,1848.2856 -14786,18202,32901,32900,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,54,-3,39.482399,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3017311,0,58.15,52.91,43.84,42.31,10,1,1,0,0,0,10,2,1,741,350764.81,59789.727,114583.1,0,1848.2856 -14787,18203,32902,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.9290457,8.2182722,0,0,-998.46912,0,2,2,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.8815527,7.9632668,59.71,29.66,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,289,904124.63,598572.94,278059.69,68115.633,3233.9434 -14788,18204,32903,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,0,0,0,0,-922.26208,0,3,1,2019,10,0,0,0,4,0,0,0,0,0,6.5590305,0,0,0,1,1,0,0,0,56.79,39,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1081,280082.34,-106040.19,150181.05,0,1562.0618 -14789,18205,32904,32905,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.7526431,5.5192285,1,12,43.896309,-9,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.7659392,6.0474272,50.76,41.71,60.12,54.8,8.333333333333334,1,1,0,0,6,10,2,1,620,148138.81,0,0,0,1734.0061 -14789,18205,32905,32904,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4216833,7.353992,0,1,-12,22.520693,-9,3,3,2019,6,0,21,0,1,0,0,6.8821378,6.8821378,0,0,0,0,0,0,0,0,0,0,60.12,54.8,50.76,41.71,8.333333333333334,1,1,0,0,10,10,2,1,620,148138.81,0,0,0,1734.0061 -14790,18206,32906,-9,32908,32907,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.5648,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 -14790,18206,32907,32908,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,9.0654221,9.152173,0,18,3,139.55327,0,-9,-9,2019,7,0,56,52,1,0,0,14.832758,14.832758,0,0,0,0,0,1,1,0,0,0,59.32,46.98,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 -14790,18206,32908,32907,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,9.6567602,9.4155617,0,19,-3,7.5781584,0,2,3,2019,5,0,40,36,1,0,0,45.277077,45.277077,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.32,46.98,6.666666666666667,2,3,0,0,9,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 -14790,18206,32909,-9,32908,32907,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.24011,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,555.5,1033827.8,845907.38,433888.22,138333.33,9123.6309 -14791,18207,32910,32912,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.5641747,8.7010403,0,20,2,-23.515528,0,-9,-9,2019,6,0,50,45,1,0,0,12.285219,12.285219,0,0,0,0,0,1,1,0,3.1517162,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 -14791,18207,32911,-9,32912,32910,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.5323,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 -14791,18207,32912,32910,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.8501019,7.6224828,0,20,-2,-44.819809,0,-9,-9,2019,11,0,32,0,1,0,0,9.1784725,9.1784725,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,1,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 -14791,18207,32913,-9,32912,32910,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.1261,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,537,153733.2,16644.055,415898.59,200873.55,3424.2324 -14792,18208,32914,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,8.5413027,8.2667742,0,0,0,-1046.6333,0,-9,-9,2019,25,10,16,0,1,10,0,33.755741,33.755741,0,0,0,0,0,1,1,0,0,0,31.36,20.96,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,121,1006179.6,687879.69,126880.24,68732.969,1653.9166 -14792,18209,32915,-9,32914,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-965.0658,1,2,-9,2019,20,8,0,14,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,34.17,57.25,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,796,0,0,0,0,0 -14792,18210,32916,-9,32914,-9,1,1,27,0,0,0,2,2,-9,0,4,5.3762231,5.446569,0,0,0,-894.32336,0,2,-9,2019,10,0,50,50,1,1,1,.41705373,.41705373,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,2,1,725,-1366.6396,0,0,0,532.22107 -14793,18211,32917,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.4015169,7.4453311,0,0,0,-989.40283,0,3,3,2019,13,3,28,23,1,3,0,5.8553214,5.8553214,0,0,0,0,0,0,0,0,0,0,49.29,49.06,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1716,194780.52,0,0,0,625.20691 -14794,18212,32918,32919,-9,-9,1,1,90,0,0,0,1,1,-9,0,4,0,7.8154645,8.2268648,37,21,-96.513145,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9680085,63.57,34.01,57.16,56.15,0,1,1,0,0,0,7,4,1,366.5,1312312.4,303422.5,998377.5,0,3027.6177 -14794,18212,32919,32918,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.7411566,7.5991869,37,-21,-34.14679,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4562836,7.29388,57.16,56.15,63.57,34.01,8.333333333333334,1,1,0,0,0,7,4,1,366.5,1312312.4,303422.5,998377.5,0,3027.6177 -14795,18213,32920,32921,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,10,6,-61.690788,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1207647,0,51,48,44,38,7,1,1,0,0,0,6,4,1,851.5,223215.94,9160.8047,270421,112507.56,2723.886 -14795,18213,32921,32920,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,8.3471565,8.6646948,0,29,-6,8.4737339,0,3,3,2019,15,3,35,35,1,3,0,19.577864,19.577864,0,0,0,0,14.5,1,1,0,0,0,44,38,51,48,5,1,1,0,0,12,6,4,1,851.5,223215.94,9160.8047,270421,112507.56,2723.886 -14795,18214,32922,-9,32921,32920,1,0,32,0,0,0,1,1,-9,0,4,7.6897659,7.5644765,0,0,0,-992.92664,0,3,3,2019,11,0,20,20,1,2,1,17.428434,17.428434,0,0,0,0,0,1,1,0,2.2193027,0,47,57,-9,-9,7,1,1,0,0,1,6,3,1,769,-11363.146,-10055.137,0,0,600.31403 -14796,18215,32923,32924,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0020695,8.0092764,0,9,-10,23.041006,0,3,3,2019,7,0,38,38,1,0,0,12.489458,12.489458,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,6.666666666666667,1,1,0,0,9,13,5,1,816.5,1587014,1217430.4,144068.11,0,4384.5635 -14796,18215,32924,32923,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.2468901,8.1390028,6.7636323,9,10,135.9792,0,3,3,2019,6,0,40,40,1,0,0,11.936448,11.936448,1,0,30.567728,0,0,1,1,0,6.6253624,6.5530314,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,9,13,5,1,816.5,1587014,1217430.4,144068.11,0,4384.5635 -14797,18216,32925,32926,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,6.9205141,7.3051381,0,2,-6,75.884964,-9,-9,-9,2019,8,0,29,0,1,0,0,5.8644657,5.8644657,0,0,0,0,0,0,0,0,0,0,45.81,58.99,54.2,57.49,6.666666666666667,1,1,0,0,1,10,4,0,619,79497.039,-21527.238,173446.13,133254.28,2115.8474 -14797,18216,32926,32925,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.2079477,7.9248009,0,2,6,49.211494,-9,-9,-9,2019,9,0,40,0,1,0,0,7.276927,7.276927,0,0,0,0,0,0,0,0,2.3486831,0,54.2,57.49,45.81,58.99,5,1,1,0,0,5,10,4,0,619,79497.039,-21527.238,173446.13,133254.28,2115.8474 -14798,18217,32927,32928,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4226637,8.0611935,0,2,0,-43.566101,0,-9,-9,2019,11,0,45,40,1,2,0,11.684745,11.684745,0,0,0,0,0,0,0,0,1.9352611,0,47,58,57.06,57.76,7,1,1,0,0,2,8,5,1,490.5,226119.39,35685.914,349336.47,227887.16,4237.7373 -14798,18217,32928,32927,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.9038849,9.0711145,0,2,0,-72.963432,0,2,2,2019,7,0,45,40,1,0,0,22.616545,22.616545,0,0,0,0,0,0,0,0,2.8587413,0,57.06,57.76,47,58,8.333333333333334,1,1,0,0,3,8,5,1,490.5,226119.39,35685.914,349336.47,227887.16,4237.7373 -14799,18218,32929,32930,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.7313704,8.0702505,0,1,0,100.87426,-9,-9,-9,2019,16,4,42,0,1,4,0,6.3789759,6.3789759,0,0,0,0,0,0,0,0,7.4819484,0,41.86,41.35,60.87,44.96,3.333333333333333,1,1,0,0,3,2,5,1,376,168282.23,18269.205,168516.8,123095.48,4452.083 -14799,18218,32930,32929,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.0097885,9.2281494,0,1,0,17.367369,-9,3,2,2019,6,0,44,0,1,0,0,17.342222,17.342222,0,0,0,0,0,0,0,0,0,0,60.87,44.96,41.86,41.35,5,1,1,0,0,9,2,5,1,376,168282.23,18269.205,168516.8,123095.48,4452.083 -14800,18219,32931,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.4777389,7.0959091,0,0,0,-1035.7913,0,3,3,2019,13,3,25,25,1,3,0,6.8150792,6.8150792,0,0,0,0,0,1,1,0,0,0,50.67,52.58,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,916,118089.3,132934.16,82089.711,0,1849.9667 -14801,18220,32932,32933,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,0,0,0,23,7,75.185532,-9,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,53.8,47.57,45.67,8.333333333333334,2,3,0,0,11,9,4,1,272.5,715165.25,436864.66,364083.63,0,1893.2969 -14801,18220,32933,32932,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.4922562,8.2199326,0,23,-7,48.295498,-9,2,2,2019,9,1,46,0,1,1,0,11.502196,11.502196,0,0,0,0,0,0,0,0,0,0,47.57,45.67,41.76,53.8,8.333333333333334,2,3,0,0,12,9,4,1,272.5,715165.25,436864.66,364083.63,0,1893.2969 -14801,18221,32934,32935,-9,-9,1,0,25,0,0,0,2,2,-9,0,1,8.2131281,7.9585271,0,1,-3,35.718449,-9,-9,-9,2019,29,11,47,0,1,11,0,7.3018961,7.3018961,0,0,0,0,0,0,0,0,.43957311,0,20.43,41.07,46.3,45.42,3.333333333333333,2,3,0,0,3,9,4,1,853,323090.28,32276.951,416739.19,370551.03,3041.082 -14801,18221,32935,32934,32933,32932,1,1,28,0,0,0,1,1,-9,0,2,8.3238449,8.4815102,0,1,3,114.26185,-9,3,3,2019,17,5,40,0,1,5,0,11.615854,11.615854,0,0,0,0,0,0,0,0,4.5390129,0,46.3,45.42,20.43,41.07,5,2,3,0,0,3,9,4,1,853,323090.28,32276.951,416739.19,370551.03,3041.082 -14802,18222,32936,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.0406437,7.830174,0,0,-850.36743,0,2,2,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,7.1873503,7.8397412,49.76,40.55,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1604,816704.31,577211.19,422181.84,0,2206.7708 -14803,18223,32937,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.4916387,8.0056887,0,0,0,-1089.5114,0,2,2,2019,12,0,36,36,1,0,0,7.2932339,7.2932339,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,6.666666666666667,3,4,0,1,12,8,3,0,462,132004.75,52867.227,360641,0,1062.7048 -14804,18224,32938,32939,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8716755,7.6305861,49,3,239.27014,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,2.8207183,8.2119074,52.54,52.91,63.65,35.93,8.333333333333334,1,1,0,0,0,5,3,1,1084,1679029.5,793463.38,503767.5,0,2562.5073 -14804,18224,32939,32938,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.1032724,6.4690886,49,-3,-6.4833865,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4930365,6.8928614,63.65,35.93,52.54,52.91,10,4,2,0,0,0,5,3,1,1084,1679029.5,793463.38,503767.5,0,2562.5073 -14805,18225,32940,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1058.9401,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,7.1210432,0,0,1,1,0,1.2900649,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,741,407689.44,0,215076.47,0,963.59473 -14806,18226,32941,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.2195086,7.9648881,7.8822384,0,0,-962.65112,0,2,-9,2019,8,0,20,20,1,0,0,8.6270218,8.6270218,0,0,0,0,0,0,0,0,6.6856337,7.6976047,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,933,353712.97,310566.69,0,0,1621.111 -14807,18227,32942,-9,-9,-9,1,1,41,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1075.2457,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,0,1,0,0,50,56,-9,-9,7,2,3,0,0,0,6,1,0,545,-291746.06,101744.39,0,0,360.27484 -14807,18228,32943,32946,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,8.0393934,7.868371,0,5,6,41.244965,0,-9,-9,2019,6,0,47,40,1,0,0,7.5259247,7.5259247,0,0,0,0,14.5,1,0,1,0,0,52.38,55.95,47,57,8.333333333333334,2,3,0,0,12,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 -14807,18228,32944,-9,-9,32943,1,1,16,0,1,0,2,2,-9,1,4,0,0,0,0,0,-946.78955,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,1,0,0,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 -14807,18228,32945,-9,32946,32943,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.0951,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 -14807,18228,32946,32943,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,0,0,0,5,-6,-181.46161,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,5.48,1,0,1,0,0,47,57,52.38,55.95,7,2,3,0,0,0,6,3,0,1148.25,-96432.969,51248.215,0,0,2623.1067 -14808,18229,32947,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2236643,8.6603422,0,0,0,-960.48309,0,2,2,2019,9,0,50,47,1,0,0,11.211293,11.211293,0,0,0,0,0,0,0,0,0,0,49.46,56.91,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,3064,-33542.699,0,0,0,1752.87 -14809,18230,32948,32951,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,9.3705654,9.4870567,5.6775393,23,11,60.491261,0,2,2,2019,6,0,40,50,1,0,0,34.761845,34.761845,0,0,0,0,0,0,0,0,5.7818866,5.8485284,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 -14809,18230,32949,-9,32951,32948,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-980.05774,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 -14809,18230,32950,-9,32951,32948,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1081.4916,-9,2,1,2019,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1.8226178,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 -14809,18230,32951,32948,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.8203764,7.1037769,0,22,-11,117.33428,0,2,1,2019,8,0,20,20,1,0,0,5.9437652,5.9437652,0,0,0,0,0,0,0,0,7.5592232,0,54.1,59.11,57.16,56.15,10,1,1,0,0,7,4,5,1,696,1738908.8,608579.75,1228972,445498.59,6470.7192 -14810,18231,32952,32953,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5132895,8.2645216,0,32,-1,119.96761,0,2,1,2019,8,0,20,20,1,0,0,29.021978,29.021978,0,0,0,0,0,0,0,0,4.3650804,0,57.66,45.08,51.24,58.84,8.333333333333334,1,1,0,0,13,4,5,1,1082.5,1652315.8,1187390.8,247652.02,0,3623.624 -14810,18231,32953,32952,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5901823,8.5522127,0,32,1,15.484009,0,1,2,2019,12,2,42,41,1,2,0,16.499104,16.499104,0,0,0,0,0,0,0,0,4.3634419,0,51.24,58.84,57.66,45.08,8.333333333333334,1,1,0,0,13,4,5,1,1082.5,1652315.8,1187390.8,247652.02,0,3623.624 -14811,18232,32954,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.8194442,4.6564441,0,0,-973.52783,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.8314505,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,984,311480.78,0,104571.86,0,328.67175 -14812,18233,32955,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6045747,6.625628,0,0,-1013.0902,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3019152,6.3897777,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,480,188907.78,0,66277.438,0,953.76587 -14813,18234,32956,32957,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,6,2,-89.229721,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,59.39,36.45,8.333333333333334,1,1,0,0,0,13,2,1,1696,184371.53,178253.5,126217.44,0,1901.4457 -14813,18234,32957,32956,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.3854733,7.2700291,6,-2,-39.470268,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1191349,59.39,36.45,60.53,48.35,8.333333333333334,1,1,0,0,0,13,2,1,1696,184371.53,178253.5,126217.44,0,1901.4457 -14814,18235,32958,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,7.2453995,6.7553163,0,0,-913.26324,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5917482,40.7,47.27,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,406,187061.14,180160.02,133123.38,0,1774.6877 -14815,18236,32959,32960,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,9,-1,-37.193069,1,3,3,2019,13,2,0,35,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,28.78,45.18,8.333333333333334,1,1,0,0,9,11,4,1,949.5,244742.78,37603.711,211545.47,0,3650.8477 -14815,18236,32960,32959,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.3443069,8.5846357,6.6143479,9,1,-2.2797072,0,3,3,2019,18,6,35,35,1,6,0,13.599397,13.599397,0,0,0,0,0,0,0,0,0,7.0306115,28.78,45.18,46.63,59.72,3.333333333333333,1,1,0,0,10,11,4,1,949.5,244742.78,37603.711,211545.47,0,3650.8477 -14816,18237,32961,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.3907766,6.8168478,0,0,-1039.825,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6642671,7.3764482,56.25,40.2,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,974,366317.47,17918.387,216309.36,0,2088.7695 -14817,18238,32962,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6447124,8.0201015,6.4350333,0,0,-1007.9661,0,-9,-9,2019,9,0,20,20,1,0,0,12.767982,12.767982,0,0,0,0,0,1,1,0,0,6.1609378,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,418,-210428.52,0,103707.79,50088.891,1625.9135 -14818,18239,32963,32964,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,0,0,60,4,-11.938367,0,3,2,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,55.03,11.91,48.35,45.07,3.333333333333333,1,1,0,0,0,13,3,1,2494,279160.31,31036.498,145922.44,0,2672.1804 -14818,18239,32964,32963,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.1222677,7.9707847,60,-4,3.8685541,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.7634263,48.35,45.07,55.03,11.91,8.333333333333334,1,1,0,0,0,13,3,1,2494,279160.31,31036.498,145922.44,0,2672.1804 -14818,18240,32965,-9,32963,32964,1,1,56,0,0,0,1,1,-9,0,2,0,7.2120357,7.5735784,0,0,-930.02661,0,2,1,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,14.5,1,1,0,3.4196963,7.1861825,22.1,55.25,-9,-9,3.333333333333333,1,1,1,0,0,13,3,1,183,325834.69,29078.344,342303.06,0,309.10504 -14819,18241,32966,32967,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,48,-3,-108.31125,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.55,46.83,49.67,51.42,8.333333333333334,1,1,0,0,2,11,2,1,323,680477.81,533741.25,356453.59,0,1154.7584 -14819,18241,32967,32966,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3165951,7.550261,48,3,6.3411298,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.8123116,7.5474181,49.67,51.42,50.55,46.83,8.333333333333334,1,1,0,0,10,11,2,1,323,680477.81,533741.25,356453.59,0,1154.7584 -14820,18242,32968,-9,32969,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.1072,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,422,-12991.68,0,0,0,1313.0935 -14820,18242,32969,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.1934791,6.9560809,0,0,0,-907.58612,0,-9,-9,2019,14,2,23,16,1,2,0,4.6564593,4.6564593,0,0,0,0,2,1,1,0,0,0,41.47,56.81,-9,-9,6.666666666666667,1,1,0,0,1,4,2,0,422,-12991.68,0,0,0,1313.0935 -14821,18243,32970,32971,-9,-9,1,0,57,0,0,0,3,3,-9,0,1,0,0,0,27,-5,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.4,17.69,31.43,18.27,1.666666666666667,1,1,0,1,0,6,1,0,557.5,582953.5,306797.44,264087.72,23299.609,1566.0271 -14821,18243,32971,32970,-9,-9,1,1,62,0,0,0,1,1,-9,0,1,0,0,0,3,5,0,0,-9,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,31.43,18.27,44.4,17.69,3.333333333333333,1,1,0,1,0,6,1,0,557.5,582953.5,306797.44,264087.72,23299.609,1566.0271 -14821,18244,32972,-9,32970,32971,1,0,28,0,0,0,2,2,-9,0,2,6.8169832,7.0460706,4.5639849,0,0,-1027.9939,0,3,3,2019,20,6,16,16,1,6,0,7.1795979,7.1795979,0,0,0,0,71.5,1,1,0,3.1088812,4.6156416,42.27,39.15,-9,-9,5,1,1,0,1,7,6,2,0,613,-381977.91,35723.77,0,0,1448.5555 -14822,18245,32973,32976,-9,-9,1,1,55,0,2,0,2,2,-9,0,1,9.0848112,9.270627,0,7,4,-102.1628,0,3,3,2019,22,11,60,84,1,11,0,18.142864,18.142864,0,0,0,0,0,1,1,0,2.5190804,0,34.62,34.75,62.39,56.71,8.333333333333334,1,1,0,0,9,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 -14822,18245,32974,-9,32976,32973,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1019.6135,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 -14822,18245,32975,-9,32976,32973,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.38629,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 -14822,18245,32976,32973,-9,-9,1,0,51,0,2,0,2,2,-9,0,5,0,0,0,7,-4,-57.521667,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,7.5320868,0,62.39,56.71,34.62,34.75,10,1,1,0,0,0,12,4,1,1029,205031.23,106442.05,224737.94,0,4673.8208 -14822,18246,32977,-9,32976,32973,1,1,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-815.80524,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,12,2,1,201,-249956.08,0,0,0,0 -14823,18247,32978,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,6.9079485,7.8111773,7.0835748,0,0,-955.24152,0,3,3,2019,6,0,13,13,1,0,0,9.5701542,9.5701542,0,0,0,0,0,1,1,0,1.7646538,7.4248366,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,736,849229.88,317090.97,230033.38,0,1524.9727 -14824,18248,32979,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4684944,8.3083057,0,0,0,-957.84692,0,-9,-9,2019,12,1,38,37,1,1,0,15.790579,15.790579,0,0,0,0,7,0,0,0,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,0,0,10,8,5,0,320,743221.06,414874,0,0,1967.3005 -14825,18249,32980,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-914.77234,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.495792,0,58.31,42.52,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,174,605685,-36503.574,171628.69,0,345.9668 -14826,18250,32981,-9,32984,32983,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-952.81006,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 -14826,18250,32982,-9,32984,32983,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.2038,-9,-9,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 -14826,18250,32983,32984,-9,-9,1,1,72,0,2,0,3,3,-9,0,4,7.8312216,8.2064514,6.4138126,1,37,-32.630081,0,3,3,2019,7,0,40,30,1,0,0,7.3912477,7.3912477,0,0,0,0,0,1,1,0,7.0219727,6.5506134,55,52,50,58,0,1,1,0,0,11,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 -14826,18250,32984,32983,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,0,0,0,1,-37,55.504566,-9,-9,-9,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,58,55,52,10,2,3,0,0,0,2,3,1,873.75,338028.19,207935.94,64515.242,66539.719,2012.4166 -14827,18251,32985,-9,-9,-9,1,1,68,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1015.1603,0,-9,-9,2019,1,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9877172,0,54.2,57.49,-9,-9,10,1,1,0,0,8,12,1,1,444,-131599.05,0,0,0,163.45792 -14828,18252,32986,32987,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.3838887,5.5088086,36,-4,62.708847,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.406981,54.96,53.17,57.76,54.51,1.666666666666667,1,1,0,0,8,6,2,1,567,456679.25,184635.53,130686.92,0,1775.3999 -14828,18252,32987,32986,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,5.5452452,6.1595349,36,4,-19.276537,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2704644,5.3508482,57.76,54.51,54.96,53.17,10,1,1,0,0,6,6,2,1,567,456679.25,184635.53,130686.92,0,1775.3999 -14828,18253,32988,-9,32986,32987,1,1,32,0,0,0,2,2,-9,0,3,7.6086626,7.6361403,0,0,0,-965.88892,0,3,1,2019,8,0,38,39,1,0,0,6.8120489,6.8120489,0,0,0,0,0,1,1,0,0,0,46,53,-9,-9,5,1,1,0,0,6,6,3,1,536,-197547,-10575.037,118783.02,35308.438,1204.3871 -14829,18254,32989,32990,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,3.9969852,3.8265867,7,5,-13.259179,0,2,-9,2019,14,4,0,0,4,4,0,0,0,1,26.252838,24.933577,250.24944,0,1,1,0,0,3.8016636,29.52,27.44,43.5,42.55,5,1,1,0,0,0,9,2,0,546.5,994021.44,26383.141,669027.25,0,2423.3835 -14829,18254,32990,32989,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,5.1558909,5.0606003,61,-5,31.862656,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,74.5,1,1,0,0,5.605587,43.5,42.55,29.52,27.44,5,1,1,0,0,0,9,2,0,546.5,994021.44,26383.141,669027.25,0,2423.3835 -14830,18255,32991,32992,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.1698551,8.0306063,0,9,2,35.491791,0,1,2,2019,12,1,38,10,1,1,0,10.327502,10.327502,0,0,0,0,0,0,0,0,.78827971,0,41.3,60.77,26.14,59.94,3.333333333333333,1,1,0,0,9,5,5,1,1438.5,258347,89493.875,127421.22,101585.82,3266.0479 -14830,18255,32992,32991,-9,-9,1,1,33,0,0,0,1,1,-9,0,2,8.370738,8.2125654,0,9,-2,36.055378,0,-9,-9,2019,15,5,24,20,1,5,0,22.855099,22.855099,0,0,0,0,0,0,0,0,2.8468482,0,26.14,59.94,41.3,60.77,5,1,1,0,0,8,5,5,1,1438.5,258347,89493.875,127421.22,101585.82,3266.0479 -14831,18256,32993,32994,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,0,0,56,10,0,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,0,0,52.75,26.41,49.77,34.09,8.333333333333334,1,1,0,0,0,13,1,1,239,311641.06,0,81883.641,0,1593.8137 -14831,18256,32994,32993,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,56,-10,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,49.77,34.09,52.75,26.41,6.666666666666667,1,1,0,0,0,13,1,1,239,311641.06,0,81883.641,0,1593.8137 -14832,18257,32995,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,9.2098017,9.2672873,0,0,0,-1011.1323,-9,2,1,2019,11,2,60,0,1,2,0,15.213867,15.213867,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,368,-167731.95,-22726.572,127900.39,97369.031,2836.531 -14833,18258,32996,-9,32997,32998,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1122.1932,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,38,46,-9,-9,5,3,4,-9,0,0,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 -14833,18258,32997,32998,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,8.1228809,8.6050262,0,9,1,-5.3094425,-9,-9,-9,2019,14,3,40,0,1,3,0,12.63816,12.63816,0,0,0,0,0,0,0,0,0,0,38.01,52.09,38.35,57.86,6.666666666666667,3,4,0,0,13,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 -14833,18258,32998,32997,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.9078264,8.6790504,0,9,-1,-26.932322,-9,2,2,2019,13,1,46,0,1,1,0,12.838559,12.838559,0,0,0,0,0,0,0,0,0,0,38.35,57.86,38.01,52.09,3.333333333333333,3,4,0,0,13,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 -14833,18258,32999,-9,32997,32998,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.4743,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,8,5,1,955,797402,356737.53,423144.31,124104.99,4232.0347 -14834,18259,33000,-9,33001,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1031.3167,-9,-9,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,312.5,711074.5,552857.38,166581.13,0,1764.5415 -14834,18259,33001,-9,-9,-9,1,0,57,0,0,0,1,1,-9,1,2,7.7797709,7.6903558,0,0,0,-1035.1135,0,3,3,2019,24,10,18,0,1,10,0,16.159046,16.159046,0,0,0,0,0,1,1,0,0,0,31.68,29.15,-9,-9,6.666666666666667,4,2,0,0,9,6,3,0,312.5,711074.5,552857.38,166581.13,0,1764.5415 -14835,18260,33002,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.086132,8.9430361,0,0,0,-1141.9906,0,1,3,2019,6,0,38,40,1,0,0,25.181414,25.181414,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,7,2,5,1,529,-59476.648,0,0,0,3237.5513 -14836,18261,33003,-9,33004,33005,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.558,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,5,1,627,498371.47,170331.27,408286.66,165165.33,6296.5435 -14836,18261,33004,33005,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.7562189,9.0693169,6.6357837,5,0,-29.984617,0,1,1,2019,8,2,43,47,1,2,0,16.687454,16.687454,0,0,0,3.6972022,0,0,0,0,7.6418867,0,53.32,53.95,55.34,48.72,8.333333333333334,1,1,0,0,13,8,5,1,627,498371.47,170331.27,408286.66,165165.33,6296.5435 -14836,18261,33005,33004,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,9.2518911,8.9064054,0,5,0,-74.762108,0,-9,-9,2019,6,2,95,70,1,2,0,10.702952,10.702952,0,0,0,0,0,0,0,0,0,0,55.34,48.72,53.32,53.95,8.333333333333334,4,2,0,0,3,8,5,1,627,498371.47,170331.27,408286.66,165165.33,6296.5435 -14837,18262,33006,-9,33009,33008,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6429,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 -14837,18262,33007,-9,33009,33008,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0435,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 -14837,18262,33008,33009,-9,-9,1,1,47,1,2,0,2,2,-9,0,3,8.6489353,8.9392529,0,9,13,-39.052517,0,-9,-9,2019,9,0,50,50,1,0,0,14.75036,14.75036,0,0,0,0,0,1,1,0,0,0,54.96,53.17,38.68,55.46,6.666666666666667,1,1,0,0,11,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 -14837,18262,33009,33008,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.2122021,7.2865729,0,9,-13,115.10075,0,2,-9,2019,9,0,19,24,1,0,0,7.56112,7.56112,0,0,0,0,0,1,1,0,0,0,38.68,55.46,54.96,53.17,5,1,1,0,0,10,5,4,0,643.75,438856.41,403219.59,174104.89,158677.08,3971.5916 -14838,18263,33010,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,7.124506,7.0609746,0,0,-963.87183,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.1758871,0,17.549835,0,1,1,0,2.6755662,7.3523049,64.15000000000001,38.07,-9,-9,10,1,1,0,0,0,1,2,1,396,474935.19,12286.335,176216.34,0,365.263 -14839,18264,33011,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,7.9780407,8.2279549,0,0,0,-1004.932,0,2,2,2019,12,0,60,50,1,0,0,6.0127058,6.0127058,0,0,0,0,0,1,1,0,0,0,45.23,32.27,-9,-9,5,1,1,0,0,4,11,4,0,283,94301.445,15589.283,0,0,1176.7289 -14840,18265,33012,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.2223368,8.060133,0,0,-919.22546,0,-9,-9,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.7876654,8.1626062,44.05,55.39,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,319,1049977.1,378115.44,243071.48,0,1385.9678 -14841,18266,33013,33014,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4800482,8.5925579,0,7,-2,52.45472,0,-9,-9,2019,9,0,40,40,1,1,0,14.44238,14.44238,0,0,0,0,0,1,1,0,0,0,51,56,37.3,65.73,8,1,1,0,0,1,2,4,1,527,284045.59,37014.16,228803.97,54312.656,2400.7634 -14841,18266,33014,33013,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.4147458,7.2024875,0,22,2,-178.0742,0,3,2,2019,22,10,20,28,1,10,0,11.099919,11.099919,0,0,0,0,14.5,1,1,0,0,0,37.3,65.73,51,56,8.333333333333334,1,1,0,0,9,2,4,1,527,284045.59,37014.16,228803.97,54312.656,2400.7634 -14842,18267,33015,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.3812857,8.2204199,0,0,0,-946.54218,0,2,2,2019,9,0,37,38,1,0,0,11.353536,11.353536,0,0,0,0,0,0,0,0,8.1795712,0,60.12,38.42,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,322,-310782.38,18081.484,0,0,2613.4219 -14843,18268,33016,33017,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2806768,7.160048,30,0,72.19072,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1145926,7.5461278,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,5,4,3,1,397,725198.5,551426.81,262065.28,0,3269.6707 -14843,18268,33017,33016,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.785512,6.9088469,31,0,-12.659781,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5243149,6.7456341,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,7,4,3,1,397,725198.5,551426.81,262065.28,0,3269.6707 -14843,18269,33018,-9,33017,33016,1,1,32,0,0,0,2,2,-9,0,4,9.0652695,9.2984552,0,0,0,-1065.3408,0,2,2,2019,10,0,40,40,1,0,0,24.447325,24.447325,0,0,0,0,0,1,1,0,2.2649715,0,39.33,53.14,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,2522,-175541.56,44588.055,0,0,3232.6416 -14844,18270,33019,33020,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,7.9080648,8.329215,42,6,-136.03502,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.4939141,7.7679939,62.39,56.71,62.39,56.71,10,1,1,0,0,6,11,4,1,1225.5,1165420.8,867568.25,271788.16,0,4139.8276 -14844,18270,33020,33019,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.6165547,7.7646394,46,-6,-13.443197,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4850135,7.504293,62.39,56.71,62.39,56.71,10,1,1,0,0,6,11,4,1,1225.5,1165420.8,867568.25,271788.16,0,4139.8276 -14845,18271,33021,33022,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.9729991,7.6267858,0,30,0,14.184079,0,3,3,2019,11,0,40,38,1,0,0,8.184515,8.184515,0,0,0,0,2,0,0,0,0,0,39.48,44.09,51.4,41.42,8.333333333333334,1,1,0,0,12,7,4,0,715,599538.69,-49993.133,394591.75,96821.938,2029.1443 -14845,18271,33022,33021,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.8733292,7.8836031,0,30,0,56.376453,0,2,3,2019,8,0,40,40,1,0,0,9.4866972,9.4866972,0,0,0,0,0,0,0,0,0,0,51.4,41.42,39.48,44.09,6.666666666666667,1,1,0,0,12,7,4,0,715,599538.69,-49993.133,394591.75,96821.938,2029.1443 -14845,18272,33023,-9,33021,33022,1,1,22,0,0,0,2,2,0,0,3,0,4.2561707,4.8066163,0,0,-905.48303,-9,2,3,2019,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,5.1123953,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,5,7,2,0,489,176553.22,0,0,0,-147.754 -14845,18273,33024,-9,33021,33022,1,0,19,0,0,0,2,2,1,0,1,6.8381662,6.7535491,4.5455909,0,0,-997.08319,-9,2,3,2019,13,3,30,0,1,3,1,3.3538549,3.3538549,0,0,0,0,0,0,0,0,4.2661767,0,45.67,29.56,-9,-9,5,1,1,0,0,2,7,2,0,255,204628.5,0,0,0,507.17368 -14846,18274,33025,-9,-9,-9,1,0,37,0,1,0,2,2,-9,1,1,0,0,0,0,0,-895.17596,0,2,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,24.14,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,905,59790.539,0,0,0,2467.541 -14846,18274,33026,-9,33025,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.4077,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,905,59790.539,0,0,0,2467.541 -14847,18275,33027,33028,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.2925882,6.3754296,8,1,1.3400413,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0837507,5.9932642,43.04,35.58,55.96,49.93,8.333333333333334,1,1,0,0,0,13,2,1,811.5,-117019.48,82450.047,0,0,1689.0249 -14847,18275,33028,33027,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,8,-1,30.406158,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.1374512,0,55.96,49.93,43.04,35.58,8.333333333333334,1,1,0,0,0,13,2,1,811.5,-117019.48,82450.047,0,0,1689.0249 -14848,18276,33029,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.5097218,8.7052488,0,0,0,-984.68121,0,3,1,2019,13,2,57,52,1,2,0,11.344568,11.344568,0,0,0,0,0,0,0,0,6.7385559,0,41.41,43.04,-9,-9,6.666666666666667,2,3,0,0,9,8,5,1,460,100838.21,50637.227,0,0,1935.1647 -14849,18277,33030,33031,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8135543,7.7522192,19,-2,-16.490419,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7907095,7.524477,56.86,50.75,38.9,48.23,8.333333333333334,1,1,0,0,0,2,4,1,240,1423233.6,938368.44,125491.89,0,4828.3237 -14849,18277,33031,33030,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.4993229,8.2274656,19,2,-69.530518,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,6.3782721,0,0,1,1,0,4.3959665,8.2249022,38.9,48.23,56.86,50.75,8.333333333333334,1,1,0,0,0,2,4,1,240,1423233.6,938368.44,125491.89,0,4828.3237 -14850,18278,33032,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.7270575,8.1457281,0,0,0,-1122.8029,0,3,-9,2019,8,0,44,43,1,0,0,5.9612927,5.9612927,0,0,0,0,7,0,0,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,2,4,3,0,683,-536209.5,6378.2529,0,0,1012.4043 -14850,18279,33033,-9,33032,-9,1,1,24,0,0,0,2,2,-9,0,4,6.885159,7.2311163,0,0,0,-1033.1348,0,3,-9,2019,0,0,41,30,1,0,1,3.5513923,3.5513923,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,3,4,3,0,353,295544.47,-76767.828,0,0,272.55173 -14851,18280,33034,-9,33037,33035,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.7539,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 -14851,18280,33035,33037,-9,-9,1,1,37,2,3,0,2,2,-9,0,3,8.0279932,8.2785473,0,4,-1,10.409292,0,-9,-9,2019,11,1,38,38,1,1,0,9.8736868,9.8736868,0,0,0,0,0,1,1,0,0,0,42.28,54.75,29.17,58.45,8.333333333333334,1,1,0,0,2,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 -14851,18280,33036,-9,33037,33035,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-968.99493,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 -14851,18280,33037,33035,-9,-9,1,0,38,2,3,0,2,2,-9,0,4,7.4675817,7.8579049,5.6210499,4,1,-163.03368,0,2,2,2019,14,2,24,0,1,2,0,7.6884675,7.6884675,0,0,0,0,0,1,1,0,5.9107599,0,29.17,58.45,42.28,54.75,6.666666666666667,1,1,0,0,8,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 -14851,18280,33038,-9,33037,33035,1,0,10,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.707,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,3,0,524.40002,210829.42,279507.09,170825.33,103123.23,4247.9521 -14852,18281,33039,-9,33040,33041,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.36804,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,665.33331,232349.73,137268.72,192059.09,37723.836,2820.1606 -14852,18281,33040,33041,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.0114059,8.1362267,0,8,1,-30.569098,0,-9,-9,2019,13,5,48,53,1,5,0,6.4983191,6.4983191,0,0,0,0,0,1,1,0,0,0,47.71,51.43,45.41,50.66,6.666666666666667,1,1,0,0,9,5,4,1,665.33331,232349.73,137268.72,192059.09,37723.836,2820.1606 -14852,18281,33041,33040,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.3401089,8.2333241,0,8,-1,-14.007101,0,2,2,2019,11,0,47,44,1,0,0,8.8155479,8.8155479,0,0,0,0,0,1,1,0,0,0,45.41,50.66,47.71,51.43,3.333333333333333,1,1,0,0,9,5,4,1,665.33331,232349.73,137268.72,192059.09,37723.836,2820.1606 -14853,18282,33042,33043,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,10,-6,31.50738,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,39.79,60.7,42.48,8.333333333333334,1,1,0,0,0,13,2,1,189.5,992828.13,393439,283915.94,0,2420.093 -14853,18282,33043,33042,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.0757861,6.8959804,10,6,-15.751653,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7585711,60.7,42.48,39.74,39.79,8.333333333333334,1,1,0,0,3,13,2,1,189.5,992828.13,393439,283915.94,0,2420.093 -14853,18283,33044,-9,33042,33043,1,1,40,0,0,0,3,3,-9,1,3,0,0,0,0,0,-949.87372,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,1,0,0,13,1,1,1322,117764.79,0,0,0,895.46906 -14854,18284,33045,33047,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,7.9264755,8.114439,0,25,-2,-133.24214,0,2,1,2019,7,0,21,22,1,0,0,13.17662,13.17662,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,7,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 -14854,18284,33046,-9,33045,33047,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1107.8063,-9,2,1,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 -14854,18284,33047,33045,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.7407541,9.620018,0,25,2,-105.86423,0,1,1,2019,12,1,56,55,1,1,0,36.045582,36.045582,0,0,0,0,0,0,0,0,3.2675178,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 -14854,18284,33048,-9,33045,33047,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1079.2476,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,1013.75,260798.94,-19243.754,477768.78,349299.72,7851.4077 -14854,18285,33049,-9,33045,33047,1,1,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-996.6499,-9,2,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,10,1,1,0,0,0,2,1,1,827,0,0,0,0,0 -14855,18286,33050,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.9146328,8.2357273,0,0,0,-1034.8682,0,2,2,2019,6,0,48,38,1,0,0,7.4551969,7.4551969,0,0,0,0,0,1,1,0,3.1942,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,355,290230.63,70579.047,272716.56,0,1757.0614 -14856,18287,33051,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.8024073,7.7013607,0,0,-971.34595,0,3,2,2019,15,5,0,0,4,5,0,0,0,1,0,1.7949698,0,7,1,1,0,1.653739,7.9369645,52.13,40.97,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,299,982013.88,326603.75,680131.75,0,2170.9966 -14856,18288,33052,-9,33051,-9,1,1,38,0,0,0,2,2,-9,1,3,8.5154181,8.5213833,0,0,0,-808.61615,0,3,3,2019,6,0,46,50,1,0,0,15.546347,15.546347,0,0,0,0,27,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,3684,235820.02,123384.17,176274.78,123470.27,2945.2991 -14856,18289,33053,-9,33051,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1194.0605,0,2,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,3,4,0,0,0,8,1,1,2353,300532.66,0,0,0,626.76318 -14857,18290,33054,33055,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,7.8843217,7.7240105,0,3,1,56.654617,0,2,2,2019,8,0,32,40,1,0,0,13.083174,13.083174,0,0,0,0,0,0,0,0,0,0,52.33,54.66,62.49,55.09,10,1,1,0,0,7,9,4,0,404.5,165475.13,-40783.773,239008.81,167659.13,2617.3694 -14857,18290,33055,33054,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.3781948,8.2262077,0,3,-1,-50.723042,0,-9,-9,2019,6,0,38,37,1,0,0,9.1474571,9.1474571,0,0,0,0,0,0,0,0,0,0,62.49,55.09,52.33,54.66,8.333333333333334,1,1,0,0,3,9,4,0,404.5,165475.13,-40783.773,239008.81,167659.13,2617.3694 -14858,18291,33056,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.1747847,6.3118796,0,30,-5,-5.5850811,0,-9,-9,2019,35,12,15,15,1,12,0,3.8719378,3.8719378,0,0,0,0,0,1,1,0,0,0,17.88,57.04,57.16,56.15,1.666666666666667,1,1,0,0,7,10,2,0,377,580470.75,0,0,0,837.2641 -14858,18292,33057,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,4.5277309,4.8431935,0,30,5,65.113838,0,2,2,2019,13,4,35,35,1,4,0,.2699061,.2699061,0,0,0,0,0,1,1,0,0,0,57.16,56.15,17.88,57.04,8.333333333333334,1,1,0,0,5,10,2,0,177,-188187.02,0,248845.75,10332.262,260.21198 -14859,18293,33058,33059,-9,-9,1,1,41,0,1,0,3,3,-9,0,2,8.757926,8.7052097,0,7,-1,-92.658707,0,2,2,2019,10,0,48,52,1,0,0,18.428783,18.428783,0,0,0,0,0,1,1,0,0,0,52.24,50.75,31.97,47.58,5,1,1,0,0,8,13,4,1,1919,-18292.156,56123.969,98022.734,38251.297,3241.4111 -14859,18293,33059,33058,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.5238504,7.0795321,0,7,1,-101.88372,0,2,-9,2019,22,11,24,20,1,11,0,10.89397,10.89397,0,0,0,0,0,1,1,0,0,0,31.97,47.58,52.24,50.75,6.666666666666667,1,1,0,0,8,13,4,1,1919,-18292.156,56123.969,98022.734,38251.297,3241.4111 -14859,18293,33060,-9,33059,33058,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.8138,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1919,-18292.156,56123.969,98022.734,38251.297,3241.4111 -14860,18294,33061,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.8880577,8.1762638,0,4,3,-11.532783,0,-9,-9,2019,8,0,36,37,1,0,0,9.3828564,9.3828564,0,0,0,0,0,0,0,0,0,0,46.67,55.57,62.49,55.09,5,1,1,0,1,10,4,3,1,1329,-120858.79,-47435.59,0,0,1798.9053 -14860,18295,33062,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,4,-3,-8.6401987,0,-9,-9,2019,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.67,55.57,6.666666666666667,1,1,1,1,2,4,3,1,286,73290.102,0,0,0,0 -14861,18296,33063,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-936.48285,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,36.19,36.11,-9,-9,6.666666666666667,1,1,1,0,0,11,1,0,329,0,0,0,0,484.57745 -14862,18297,33064,33065,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,8.7112827,9.0204325,0,11,-2,-36.565735,0,2,2,2019,18,6,37,26,1,6,0,19.898331,19.898331,0,0,0,0,0,1,1,0,0,0,36.97,58.59,57.33,53.46,6.666666666666667,1,1,0,0,10,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 -14862,18297,33065,33064,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,7.6022243,6.9666042,0,11,2,16.262819,0,2,-9,2019,7,0,40,38,1,0,0,4.9882865,4.9882865,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.97,58.59,8.333333333333334,1,1,0,0,10,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 -14862,18297,33066,-9,33064,33065,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.1956,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 -14862,18297,33067,-9,33064,33065,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.37994,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,965.75,275223.28,218537.61,62802.766,49929.961,3522.7639 -14863,18298,33068,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1040.3903,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1526,-190629.73,0,0,0,931.56702 -14864,18299,33069,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.1985893,8.635005,0,0,0,-926.97241,0,-9,-9,2019,23,9,39,26,1,9,0,14.901847,14.901847,0,0,0,0,0,0,0,0,0,0,16.08,63.04,-9,-9,1.666666666666667,1,1,0,0,3,11,4,0,1885,37720.215,0,0,0,1738.6473 -14865,18300,33070,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.4244623,8.445117,0,0,0,-797.65784,0,2,2,2019,12,0,37,37,1,0,0,12.101689,12.101689,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,3832,266447.34,38741.008,0,0,1651.8752 -14866,18301,33071,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,7.8728251,8.2132502,0,0,-893.55634,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,9.1778202,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,108,26032.537,6986.4937,0,0,7695.5552 -14867,18302,33072,33073,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,3.8457792,3.6519134,41,-3,-22.830357,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4770708,4.1983728,46.32,53.44,55.36,51.57,10,1,1,0,0,4,7,5,1,950,2278233,1670149,319803.94,0,4704.0674 -14867,18302,33073,33072,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,9.1790199,9.4942112,43,3,-84.36071,0,3,3,2019,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,8.3759413,9.0159435,55.36,51.57,46.32,53.44,10,1,1,0,0,8,7,5,1,950,2278233,1670149,319803.94,0,4704.0674 -14868,18303,33074,33075,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,32,5,62.256668,0,1,3,2019,8,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.53,42.78,57.16,56.15,8.333333333333334,1,1,0,0,12,5,2,1,531.5,521868.75,414654.81,121429.78,0,775.12915 -14868,18303,33075,33074,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,7.3096457,7.5215111,10,-5,-70.095695,0,2,2,2019,3,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0924978,57.16,56.15,56.53,42.78,10,1,1,0,0,12,5,2,1,531.5,521868.75,414654.81,121429.78,0,775.12915 -14869,18304,33076,33077,-9,-9,1,1,56,0,0,0,3,3,-9,0,1,7.9716496,8.1875296,0,9,-5,-1.8712044,0,2,2,2019,11,1,42,42,1,1,0,8.8092489,8.8092489,0,0,0,0,0,0,0,0,0,0,60.26,29.52,60.45,30.52,5,1,1,0,0,10,10,4,1,764,219577,300106.19,0,0,2197.1248 -14869,18304,33077,33076,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.1093845,7.093183,0,9,5,8.1284065,0,-9,-9,2019,10,0,26,26,1,0,0,6.9656701,6.9656701,0,0,0,0,0,0,0,0,4.2537999,0,60.45,30.52,60.26,29.52,8.333333333333334,1,1,0,0,10,10,4,1,764,219577,300106.19,0,0,2197.1248 -14870,18305,33078,33079,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,4,7,0,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,2,1,1,0,0,0,38.42,19.59,35.79,31.17,1.666666666666667,1,1,1,1,0,10,1,0,726.5,-117427.51,0,0,0,1477.0125 -14870,18305,33079,33078,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,4,-7,0,0,-9,2,2019,24,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,35.79,31.17,38.42,19.59,3.333333333333333,1,1,1,1,6,10,1,0,726.5,-117427.51,0,0,0,1477.0125 -14871,18306,33080,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4250097,8.3639135,0,0,0,-1108.6345,0,3,3,2019,10,0,37,39,1,0,0,15.465868,15.465868,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,821,-26478.395,144525.39,223669.63,15881.088,2215.6555 -14872,18307,33081,33082,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,2.8189197,2.8468039,35,-4,-49.816246,0,3,3,2019,18,7,0,0,4,7,0,0,0,1,0,5.2765622,0,27,1,1,0,0,3.0723593,38.42,36.93,54.62,26.74,3.333333333333333,1,1,0,0,8,10,2,1,220.5,433952.69,257599.41,219085.31,0,1862.7822 -14872,18307,33082,33081,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.6209435,7.3079076,7,4,-70.418991,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,2.638325,7.5733109,54.62,26.74,38.42,36.93,8.333333333333334,1,1,0,0,0,10,2,1,220.5,433952.69,257599.41,219085.31,0,1862.7822 -14873,18308,33083,33086,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.8280573,9.2374773,0,10,3,32.111782,0,-9,-9,2019,10,0,42,42,1,0,0,20.278337,20.278337,0,0,0,0,0,1,1,0,4.7991977,0,44.02,60.7,40.48,60.05,5,1,1,0,0,12,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 -14873,18308,33084,-9,33086,33083,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.16406,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 -14873,18308,33085,-9,33086,33083,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1080.8644,-9,1,1,2019,17,0,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 -14873,18308,33086,33083,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.268342,7.0196157,0,10,-3,-46.637596,0,2,1,2019,14,2,15,16,1,2,0,10.107582,10.107582,0,0,0,0,0,1,1,0,0,0,40.48,60.05,44.02,60.7,6.666666666666667,1,1,0,0,5,2,4,1,655.75,630551.44,448978.75,171317.61,16384.998,3734.4563 -14874,18309,33087,33088,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7295055,8.3914852,0,24,-3,87.69632,0,2,-9,2019,11,0,48,48,1,0,0,12.668128,12.668128,0,0,0,0,0,0,0,0,0,0,52.57,52.89,54.79,55.86,6.666666666666667,1,1,0,0,9,7,5,1,609,112468.31,103394.31,0,0,2365.9971 -14874,18309,33088,33087,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.0747843,6.8760977,0,24,3,-15.13853,0,3,3,2019,8,0,23,13,1,0,0,5.3939552,5.3939552,0,0,0,0,0,0,0,0,0,0,54.79,55.86,52.57,52.89,8.333333333333334,1,1,0,0,9,7,5,1,609,112468.31,103394.31,0,0,2365.9971 -14875,18310,33089,33090,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,0,7.7401609,7.6876459,6,0,-41.276005,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,.63830435,7.8482494,48.26,38.97,46.08,57.2,5,1,1,0,0,11,13,5,1,798.66669,1588468.3,145939.59,476120.16,0,3176.1218 -14875,18310,33090,33089,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.8465519,8.7553005,0,6,0,95.666191,0,3,1,2019,15,3,33,33,1,3,0,25.701162,25.701162,0,0,0,0,0,1,1,0,0,0,46.08,57.2,48.26,38.97,3.333333333333333,1,1,0,0,11,13,5,1,798.66669,1588468.3,145939.59,476120.16,0,3176.1218 -14875,18310,33091,-9,33090,33089,1,1,16,0,0,0,3,3,-9,0,5,0,3.4771974,3.2018757,0,0,-1009.2272,-9,1,1,2019,10,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,3.2120481,0,46.34,61.24,-9,-9,10,1,1,0,0,13,13,5,1,798.66669,1588468.3,145939.59,476120.16,0,3176.1218 -14875,18311,33092,-9,33090,33089,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-948.76166,-9,1,1,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,472,-42708.195,0,0,0,-230.95071 -14876,18312,33093,33094,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.2318964,5.6479201,53,-5,25.304638,0,3,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2259924,5.5249424,57.16,56.15,48.92,44.91,10,4,5,0,0,0,5,3,1,956.5,442079.22,385597.94,123319.76,0,3189.5779 -14876,18312,33094,33093,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.0835314,8.0377874,53,5,29.371351,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0810938,48.92,44.91,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,956.5,442079.22,385597.94,123319.76,0,3189.5779 -14877,18313,33095,33096,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,6.0441713,8.0579834,7.9434423,2,2,-142.64273,0,3,2,2019,10,0,55,40,1,1,0,.73031437,.73031437,0,0,0,0,0,1,1,0,7.1843991,7.8131022,50,57,51.73,58.82,7,1,1,0,0,10,13,4,1,756.33331,82472.828,-45238.648,0,0,3314.1626 -14877,18313,33096,33095,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.2849035,8.4297056,0,2,-2,-98.42408,0,-9,-9,2019,8,0,38,35,1,0,0,13.831734,13.831734,0,0,0,0,0,1,1,0,6.7100434,0,51.73,58.82,50,57,8.333333333333334,1,1,0,0,4,13,4,1,756.33331,82472.828,-45238.648,0,0,3314.1626 -14877,18313,33097,-9,33096,33095,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.6528,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,4,1,756.33331,82472.828,-45238.648,0,0,3314.1626 -14878,18314,33098,33099,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,13,-10,23.981249,-9,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,49.96,45.84,8.333333333333334,1,1,0,0,1,10,2,1,857.5,285718.69,0,291860.75,20905.16,2219.8501 -14878,18314,33099,33098,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.0647745,4.7646623,19,10,-30.177622,-9,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8213663,4.8138504,49.96,45.84,57.09,46.7,8.333333333333334,1,1,0,0,2,10,2,1,857.5,285718.69,0,291860.75,20905.16,2219.8501 -14879,18315,33100,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.0641,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,3.9524841,0,0,1,1,0,1.6051451,0,52,45,-9,-9,8,3,4,0,0,0,6,1,1,821,-328006.59,0,0,0,1027.7882 -14880,18316,33101,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.41479,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,4,1,0,614,57060.898,0,0,0,1879.9985 -14881,18317,33102,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.2968016,6.2006626,0,0,-928.07727,0,3,2,2019,9,2,0,0,4,2,0,0,0,1,0,11.230683,0,0,1,1,0,.78097159,6.4250302,56.43,31.35,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,342.5,962009.5,231917.56,0,0,2535.5859 -14881,18317,33103,-9,33102,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-913.78033,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,342.5,962009.5,231917.56,0,0,2535.5859 -14882,18318,33104,33106,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.2554655,8.3531895,0,8,1,20.787958,0,2,1,2019,6,1,39,21,1,1,0,13.632746,13.632746,0,0,0,0,0,1,1,0,0,0,54.49,50.46,42.22,56.11,8.333333333333334,1,1,0,0,10,10,5,1,408.66666,181082.63,21263.609,351448.78,138642.34,3866.1724 -14882,18318,33105,-9,33104,33106,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.0202,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,408.66666,181082.63,21263.609,351448.78,138642.34,3866.1724 -14882,18318,33106,33104,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.8151026,8.7678232,0,8,-1,-37.699577,0,3,2,2019,13,1,35,55,1,1,0,22.416552,22.416552,0,0,0,0,0,1,1,0,0,0,42.22,56.11,54.49,50.46,8.333333333333334,1,1,0,0,10,10,5,1,408.66666,181082.63,21263.609,351448.78,138642.34,3866.1724 -14883,18319,33107,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1058.5903,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,8,1,0,904,236557.05,0,0,0,864.52588 -14884,18320,33108,-9,33109,33110,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.0371,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 -14884,18320,33109,33110,-9,-9,1,0,28,1,3,0,2,2,-9,0,3,0,0,0,3,0,0,0,-9,-9,2019,22,10,0,26,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,28.97,59.76,39.39,57.52,5,1,1,1,0,1,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 -14884,18320,33110,33109,-9,-9,1,1,28,1,3,0,2,2,-9,0,4,0,0,0,3,0,0,0,2,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,57.52,28.97,59.76,5,1,1,0,0,1,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 -14884,18320,33111,-9,33109,33110,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.8362,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 -14884,18320,33112,-9,33109,33110,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-922.34241,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,964.40002,-19099.393,0,0,0,2045.5121 -14885,18321,33113,33114,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.3717041,8.3372335,0,8,1,-145.43756,0,3,3,2019,9,1,30,0,1,1,0,16.220747,16.220747,0,0,0,0,7,1,1,0,0,0,57.16,56.15,43.61,56.01,8.333333333333334,1,1,0,0,9,12,5,1,1554,1457601.8,1223408.6,371709.94,172554.44,3885.3271 -14885,18321,33114,33113,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.5954723,8.5000553,0,8,-1,-14.852593,0,2,2,2019,10,0,44,44,1,0,0,13.991562,13.991562,0,0,0,0,0,1,1,0,0,0,43.61,56.01,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,1554,1457601.8,1223408.6,371709.94,172554.44,3885.3271 -14886,18322,33115,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.0366077,8.6787262,0,0,0,-967.86652,0,2,2,2019,18,6,42,40,1,6,0,19.280828,19.280828,0,0,0,0,0,1,1,0,4.1609983,0,43.92,47.65,-9,-9,6.666666666666667,1,1,0,0,1,11,5,1,824,1167128.3,510641.75,131432.31,-1529.6097,2922.425 -14887,18323,33116,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.8036685,6.7735891,0,0,-1083.7194,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,6.6680965,0,0,1,1,0,0,6.9325256,51,46,-9,-9,8,1,1,0,0,0,11,2,0,2567,156694,255696.81,193543.33,0,1023.5234 -14888,18324,33117,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.0197272,6.9664412,0,0,-1017.0543,0,3,-9,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.341228,7.2098503,56.36,25.48,-9,-9,10,1,1,0,0,0,5,2,1,1502,1031202.6,293744.69,198212.58,0,1249.0793 -14889,18325,33118,33119,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.4576244,6.9182048,55,-10,-48.742401,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.277823,47.07,53.97,48.1,47.33,8.333333333333334,1,1,0,0,0,9,3,0,806,1098263.5,250181.63,618096,0,2500.6177 -14889,18325,33119,33118,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,6.9050612,7.3600302,55,10,-16.028868,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.1803913,48.1,47.33,47.07,53.97,8.333333333333334,1,1,0,0,0,9,3,0,806,1098263.5,250181.63,618096,0,2500.6177 -14890,18326,33120,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.3256745,4.2531195,0,0,-905.47992,0,3,2,2019,35,12,0,0,4,12,0,0,0,0,0,0,0,14.5,1,1,0,0,4.2037091,12.76,39.09,-9,-9,1.666666666666667,1,1,0,1,0,10,2,0,1363,-246412.84,-29426.279,0,0,779.77393 -14891,18327,33121,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,5.6648355,5.8123341,0,0,-975.78125,0,3,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,5.3512306,41.26,16.42,-9,-9,5,1,1,0,1,1,8,2,1,183,310053.41,34194.602,0,0,1105.9155 -14892,18328,33122,-9,-9,-9,1,1,25,0,0,0,1,1,1,0,5,8.193119,8.222312,0,0,0,-989.35797,-9,-9,-9,2019,4,0,39,0,1,0,0,12.241153,12.241153,0,0,0,0,0,0,0,0,4.7467175,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,1023,251241.69,-25479.6,0,0,976.98804 -14893,18329,33123,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.1337223,7.8138385,0,0,0,-1067.7383,0,1,1,2019,6,0,43,40,1,0,0,9.5455761,9.5455761,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,620,192980.14,-32701.189,0,0,1389.484 -14894,18330,33124,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,4.9505749,5.0568771,0,0,-929.79388,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,1.7025597,0,1,1,0,5.0623283,5.478075,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2476,154269,177895.95,93240.289,0,1016.806 -14895,18331,33125,-9,33128,33129,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.9613,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 -14895,18331,33126,-9,33128,33129,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.9445,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 -14895,18331,33127,-9,33128,33129,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.27374,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 -14895,18331,33128,33129,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,6.469605,7.1065202,6.223268,11,-3,31.848894,0,2,2,2019,11,1,18,15,1,1,0,3.5202181,3.5202181,0,0,0,0,0,1,0,1,6.0815096,0,39.56,56.04,32.42,58.05,6.666666666666667,1,1,0,0,2,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 -14895,18331,33129,33128,-9,-9,1,1,34,0,3,0,1,1,-9,0,3,8.2405996,8.4573698,0,11,3,20.763197,0,2,2,2019,14,3,40,40,1,3,0,12.239544,12.239544,0,0,0,0,0,1,0,1,0,0,32.42,58.05,39.56,56.04,3.333333333333333,1,1,0,0,9,2,3,1,409.20001,37465.156,-13266.765,0,0,2922.4854 -14896,18332,33130,33131,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7346549,7.8100157,6.1478286,42,-6,-51.754795,0,2,2,2019,7,0,24,24,1,0,0,9.1467314,9.1467314,0,0,0,0,0,1,1,0,6.121366,6.095614,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,12,6,3,1,2297.5,458968.81,29274.553,228030.77,10430.149,2584.4956 -14896,18332,33131,33130,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,6.6359158,7.3321843,5.072021,42,6,-.82877129,0,2,3,2019,7,0,15,15,1,0,0,10.697085,10.697085,0,0,0,0,2,1,1,0,5.4454646,5.1737185,58.15,52.91,60.12,54.8,8.333333333333334,1,1,0,0,12,6,3,1,2297.5,458968.81,29274.553,228030.77,10430.149,2584.4956 -14897,18333,33132,33133,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,7.2773981,6.8723073,40,-2,65.138397,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4408855,6.9556208,57.33,53.46,60.05,45.35,8.333333333333334,1,1,0,0,12,13,5,1,631.5,481440.69,227378.94,191412.88,0,3065.0452 -14897,18333,33133,33132,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.7896633,8.8065796,0,11,2,45.501617,0,3,3,2019,7,0,36,36,1,0,0,20.287128,20.287128,0,0,0,0,0,0,0,0,6.3681235,0,60.05,45.35,57.33,53.46,8.333333333333334,1,1,0,0,13,13,5,1,631.5,481440.69,227378.94,191412.88,0,3065.0452 -14898,18334,33134,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.6956186,8.4419508,0,0,0,-805.94781,0,-9,-9,2019,7,0,44,45,1,0,0,14.111819,14.111819,0,0,0,0,0,0,0,0,7.5122657,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,1355,-259010.89,26098.121,0,0,2421.8342 -14899,18335,33135,33136,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.765398,5.59589,34,4,86.49987,0,2,2,2019,8,2,0,0,4,2,0,0,0,1,124.92543,122.04324,1151.3674,0,1,1,0,0,5.716928,66.36,30.66,42.5,63.22,8.333333333333334,1,1,0,0,0,7,2,1,489.5,902397.38,210208.47,481844.34,0,831.59503 -14899,18335,33136,33135,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,34,-4,-5.7894316,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,42.5,63.22,66.36,30.66,10,1,1,0,0,0,7,2,1,489.5,902397.38,210208.47,481844.34,0,831.59503 -14900,18336,33137,-9,33138,-9,1,1,15,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1016.2596,-9,1,-9,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,33,32,-9,-9,4,2,3,-9,0,0,7,5,1,1277.5,70482.07,153640.75,0,0,3444.3494 -14900,18336,33138,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.180131,9.3996811,0,0,0,-1119.6732,0,2,2,2019,21,9,50,45,1,9,0,23.918018,23.918018,0,0,0,0,0,0,0,0,0,0,33.42,54.81,-9,-9,3.333333333333333,2,3,0,0,11,7,5,1,1277.5,70482.07,153640.75,0,0,3444.3494 -14900,18337,33139,-9,33138,-9,1,0,18,0,1,0,2,2,1,0,5,7.5828886,7.7148237,2.3821187,0,0,-1028.0701,-9,1,-9,2019,4,0,37,0,1,0,1,7.0348682,7.0348682,0,0,0,0,0,0,0,0,3.5043318,0,48.26,58.96,-9,-9,8.333333333333334,2,3,0,0,0,7,3,1,317,-102301.8,22312.26,0,0,775.99677 -14901,18338,33140,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.8913717,8.2481203,5.8465238,0,0,-987.58075,-9,1,2,2019,10,0,30,0,1,0,0,13.889771,13.889771,0,0,0,0,0,0,0,0,6.330018,0,38.09,63.39,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,925,-18685.559,104044.85,0,0,1857.855 -14902,18339,33141,33142,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.3942895,7.6513886,48,-3,-20.811007,0,3,3,2019,15,2,0,0,4,2,0,0,0,1,0,14.993231,0,2,1,1,0,3.5097117,7.7095957,34.77,23.75,49.2,48.15,6.666666666666667,1,1,0,0,0,9,2,1,729,996718.13,403139.38,502646.75,0,2484.3003 -14902,18339,33142,33141,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,48,3,-33.712132,0,3,-9,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,71.5,1,1,0,4.1717553,0,49.2,48.15,34.77,23.75,8.333333333333334,1,1,0,0,8,9,2,1,729,996718.13,403139.38,502646.75,0,2484.3003 -14903,18340,33143,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,8.5185366,8.6699705,7.3891816,0,0,-968.13745,0,2,2,2019,10,0,40,37,1,0,0,9.1350479,9.1350479,0,0,0,0,0,1,1,0,0,7.4669375,48.22,51.17,-9,-9,5,1,1,0,0,12,5,5,1,1121,836009.25,679802.88,215763.55,0,2619.4207 -14904,18341,33144,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.5957012,8.6278629,7.9850783,0,0,-979.23572,0,2,2,2019,9,0,40,30,1,0,0,11.945291,11.945291,0,0,0,0,0,1,1,0,5.0095525,7.9063792,55.34,54.6,-9,-9,6.666666666666667,1,1,0,0,10,2,5,1,492,346623.56,267595.41,161377.17,25220.682,3635.7498 -14905,18342,33145,-9,33147,33146,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.8917,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,5,4,1,743.66669,326736.69,178869.33,332536.97,186686.78,2944.821 -14905,18342,33146,33147,-9,-9,1,1,33,1,1,0,1,1,-9,0,2,9.1303034,8.9125614,0,5,4,9.5466175,0,3,1,2019,10,1,40,37,1,1,0,26.586926,26.586926,0,0,0,0,0,1,1,0,0,0,47.31,39.47,47.49,52.68,6.666666666666667,4,2,0,0,8,5,4,1,743.66669,326736.69,178869.33,332536.97,186686.78,2944.821 -14905,18342,33147,33146,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,0,0,0,5,-4,69.236969,0,-9,-9,2019,12,0,0,27,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,52.68,47.31,39.47,8.333333333333334,1,1,0,0,4,5,4,1,743.66669,326736.69,178869.33,332536.97,186686.78,2944.821 -14906,18343,33148,-9,-9,-9,1,0,55,0,2,0,2,2,-9,0,3,8.2184153,8.365469,6.5671196,0,0,-1005.5264,0,2,2,2019,19,7,32,34,1,7,0,14.840406,14.840406,0,0,0,0,0,1,1,0,6.5823107,0,44.84,26.44,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,1155,147561.77,44991.18,64788.535,103929.7,2607.5452 -14906,18344,33149,-9,33148,-9,1,0,21,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1114.6311,1,2,1,2019,10,0,0,24,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,4,5,0,0,5,2,1,1,1913,-315561.13,0,0,0,0 -14907,18345,33150,33151,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.7506909,7.7298484,0,6,5,-152.68011,0,-9,-9,2019,10,0,50,50,1,0,0,5.4769168,5.4769168,0,0,0,0,0,1,1,0,0,0,49.27,56.95,57.16,56.15,8.333333333333334,1,1,0,0,7,5,3,1,397,153938.09,288853.97,116182.52,41182.563,2206.0801 -14907,18345,33151,33150,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.1124692,6.9892612,0,6,-5,-21.731625,0,3,3,2019,11,1,16,0,1,1,0,8.3166389,8.3166389,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.27,56.95,5,1,1,0,1,7,5,3,1,397,153938.09,288853.97,116182.52,41182.563,2206.0801 -14907,18346,33152,-9,33151,33150,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-875.64471,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,5,1,1,1493,0,0,0,0,0 -14908,18347,33153,33154,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,5.5083699,5.4220405,10,14,-24.537014,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6294131,62.27,42.94,64.64,32.7,8.333333333333334,1,1,0,0,0,4,2,1,629.5,110269.26,55916.215,81457.063,0,1706.543 -14908,18347,33154,33153,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,5.2224989,4.9073915,10,-14,-78.541801,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,8.7912083,0,0,1,1,0,.1503804,5.0700178,64.64,32.7,62.27,42.94,8.333333333333334,1,1,0,0,0,4,2,1,629.5,110269.26,55916.215,81457.063,0,1706.543 -14909,18348,33155,33156,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,11,3,63.744236,0,3,2,2019,24,11,0,0,4,11,0,0,0,1,2.0681541,5.5807652,21.402422,0,1,1,0,0,0,33.06,52.68,46.26,52.9,8.333333333333334,1,1,0,0,0,9,2,1,704.5,226308.3,88499.328,272516.06,0,1067.3452 -14909,18348,33156,33155,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.2727771,5.3013401,11,-3,124.668,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,5.599864,46.26,52.9,33.06,52.68,8.333333333333334,1,1,0,0,0,9,2,1,704.5,226308.3,88499.328,272516.06,0,1067.3452 -14910,18349,33157,-9,33158,33159,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1028.5079,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 -14910,18349,33158,33159,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,36,1,-53.833122,0,2,1,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,61.31,47.65,6.666666666666667,1,1,0,1,0,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 -14910,18349,33159,33158,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,9.2640791,9.3001165,0,36,-1,-17.4077,0,2,2,2019,11,0,45,40,1,0,0,31.094976,31.094976,0,0,0,0,0,1,1,0,0,0,61.31,47.65,59.14,52.5,10,1,1,0,0,12,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 -14910,18349,33160,-9,33158,33159,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1031.8356,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,747.75,3445495,2506190.5,724952.13,0,5313.4863 -14910,18350,33161,-9,33158,33159,1,0,22,0,1,0,3,3,-9,0,4,7.4723997,7.7224441,0,0,0,-1060.8268,0,2,2,2019,6,0,20,16,1,0,1,10.324448,10.324448,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,10,1,1,0,0,4,8,3,1,527,-65406.215,-38037.176,0,0,1217.8092 -14910,18351,33162,-9,33158,33159,1,1,19,0,1,1,3,0,0,0,4,0,0,0,0,0,-1003.6316,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,260,0,0,0,0,0 -14910,18352,33163,-9,33158,33159,1,1,23,0,1,1,3,0,0,0,4,0,0,0,0,0,-965.71967,-9,2,2,2019,11,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,1.9547887,0,48,59,-9,-9,7,1,1,0,0,0,8,2,1,1209,0,0,0,0,-385.49091 -14911,18353,33164,-9,-9,33165,1,0,14,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1027.7872,-9,-9,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,3,1,778.5,368415.28,205588.61,166767.53,0,1827.0496 -14911,18353,33165,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,7.2511883,7.2751312,0,0,-941.51727,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.9786057,6.3301821,48.3,39.27,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,778.5,368415.28,205588.61,166767.53,0,1827.0496 -14912,18354,33166,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.0647306,8.0076523,0,0,0,-1047.4236,0,1,2,2019,3,0,40,40,1,0,0,9.6757088,9.6757088,0,0,0,0,0,0,0,0,0,0,51.92,58.91,-9,-9,10,1,1,0,0,10,5,4,0,378,-5693.3857,0,0,0,1509.1207 -14913,18355,33167,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,6.0191488,5.8173809,0,0,-1058.5929,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,3.2740505,11.685254,17.894899,0,1,1,0,0,5.5521669,64.48,41.06,-9,-9,10,1,1,0,0,0,4,2,0,261,57745.973,26526.961,0,0,1210.7195 -14914,18356,33168,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1025.3972,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,1,0,0,6,1,0,3381,238541.52,86188.969,208407.73,0,-3.03758 -14915,18357,33169,33170,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.2133894,7.2636428,36,0,72.782379,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,0,7.6493483,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,0,6,5,1,392,722293.81,735117.5,131164.56,38942.5,3318.1423 -14915,18357,33170,33169,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6553802,8.380064,7.738029,9,0,40.78529,0,-9,-9,2019,9,0,26,28,1,0,0,14.510674,14.510674,0,0,0,0,7,0,0,0,0,7.7948551,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,7,6,5,1,392,722293.81,735117.5,131164.56,38942.5,3318.1423 -14916,18358,33171,33172,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,8.6106739,8.444272,0,23,3,-27.577316,0,2,2,2019,13,1,46,45,1,1,0,8.9104147,8.9104147,0,0,0,0,0,1,1,0,0,0,47.38,57.75,55.79,52.62,6.666666666666667,1,1,0,0,6,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 -14916,18358,33172,33171,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,7.3810759,7.3895869,0,23,-3,-82.047096,0,2,2,2019,10,0,28,29,1,0,0,6.427577,6.427577,0,0,0,0,0,1,1,0,0,0,55.79,52.62,47.38,57.75,5,1,1,0,0,7,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 -14916,18358,33173,-9,33172,33171,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.486,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 -14916,18358,33174,-9,33172,33171,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.449,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,1262,1962323.1,700199.63,789759.25,52120.863,2605.4546 -14917,18359,33175,33176,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,50,1,135.72195,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,1.7458496,0,49.12,57.28,36.01,18.9,6.666666666666667,1,1,0,0,0,1,2,1,867,296504.47,288597.25,144795.06,0,1929.7351 -14917,18359,33176,33175,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.9159417,6.7066545,50,-1,56.8638,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,.53874844,130.88948,24.295637,0,1,1,0,0,7.0307007,36.01,18.9,49.12,57.28,5,1,1,0,0,0,1,2,1,867,296504.47,288597.25,144795.06,0,1929.7351 -14917,18360,33177,33178,33175,33176,1,0,48,0,0,0,2,2,-9,0,2,7.9622507,8.1973429,0,6,0,-64.888489,0,3,2,2019,13,1,36,30,1,1,0,10.360718,10.360718,0,0,0,0,0,1,1,0,0,0,45.58,41.84,48,50,6.666666666666667,1,1,0,0,13,1,5,1,2692.5,496300.5,350832.59,253894.31,74633.102,3581.7368 -14917,18360,33178,33177,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.6014729,8.3409729,0,6,0,-210.29822,0,-9,-9,2019,11,0,50,50,1,2,0,15.461677,15.461677,0,0,0,0,0,1,1,0,0,0,48,50,45.58,41.84,7,1,1,0,0,13,1,5,1,2692.5,496300.5,350832.59,253894.31,74633.102,3581.7368 -14918,18361,33179,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-999.59882,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,1,0,13,1,1,67,3631.1233,-22626.582,0,0,146.2368 -14919,18362,33180,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,6.7904935,7.0173912,0,0,0,-976.14191,0,2,2,2019,20,7,8,12,1,7,0,12.756625,12.756625,0,0,0,0,0,0,0,0,0,0,22.22,53.68,-9,-9,5,1,1,0,1,2,7,2,0,647,-72993.492,0,0,0,29.454798 -14920,18363,33181,33182,-9,-9,1,1,41,1,2,0,1,1,-9,0,5,0,0,0,11,2,0,0,1,2,2019,11,0,0,12,3,0,0,0,0,0,0,0,0,0,1,1,0,8.5979767,0,38.59,63.37,54.96,53.17,6.666666666666667,1,1,0,0,10,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 -14920,18363,33182,33181,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,13,-2,0,0,1,1,2019,7,1,0,26,3,1,0,0,0,0,0,0,0,0,1,1,0,3.7801645,0,54.96,53.17,38.59,63.37,6.666666666666667,1,1,0,0,11,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 -14920,18363,33183,-9,33182,33181,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.8209,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 -14920,18363,33184,-9,33182,33181,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.8571,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,1,352.75,564968.06,112167.7,0,0,2899.0481 -14921,18364,33185,33186,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.4140749,8.6680317,7.4390235,8,3,61.43951,-9,-9,-9,2019,10,0,39,0,1,1,0,12.761186,12.761186,0,0,0,0,0,0,0,0,1.2020762,6.9989314,51,48,43.73,59.7,7,1,1,0,0,1,6,5,1,1381,1362492.9,683486.38,449707.97,0,3413.4854 -14921,18364,33186,33185,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3829012,6.7248163,0,29,-3,-90.884094,0,3,3,2019,13,1,17,15,1,1,0,8.8415689,8.8415689,0,0,0,0,14.5,0,0,0,2.5272164,0,43.73,59.7,51,48,8.333333333333334,1,1,0,0,11,6,5,1,1381,1362492.9,683486.38,449707.97,0,3413.4854 -14921,18365,33187,-9,33186,33185,1,0,23,0,0,0,1,1,-9,0,4,8.3396387,8.6683998,0,0,0,-856.82916,-9,2,-9,2019,11,0,38,0,1,2,1,14.051237,14.051237,0,0,0,0,0,0,0,0,1.6107701,0,46,58,-9,-9,7,1,1,0,0,1,6,5,1,727,-309374.47,4291.542,0,0,2247.8743 -14922,18366,33188,33189,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.9528847,8.3425703,0,4,0,-163.89632,0,2,2,2019,5,0,35,35,1,0,0,19.67923,19.67923,0,0,0,0,0,0,0,0,7.5358238,0,57.06,57.76,58.5,44.67,8.333333333333334,1,1,0,0,11,7,5,1,637.5,348276,264736.88,442762.28,176792.3,5135.4287 -14922,18366,33189,33188,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.4820395,8.3108711,0,4,0,35.99107,0,-9,-9,2019,6,0,38,40,1,0,0,14.165724,14.165724,0,0,0,0,0,0,0,0,7.0819402,0,58.5,44.67,57.06,57.76,8.333333333333334,1,1,0,0,12,7,5,1,637.5,348276,264736.88,442762.28,176792.3,5135.4287 -14923,18367,33190,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,7.5930686,6.9167452,0,0,-1042.1969,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,5.4771624,0,49.848221,0,1,1,0,0,7.8512683,62.7,27.53,-9,-9,10,1,1,0,0,0,10,3,1,285,179131.83,84534.891,0,0,1160.0522 -14924,18368,33191,-9,33193,33192,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.52222,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1356,300709.56,200990.27,353337.97,155111.06,2164.0024 -14924,18368,33192,33193,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,5.7401414,5.855741,0,6,-5,10.350962,0,3,3,2019,9,1,30,50,1,1,0,1.431658,1.431658,0,0,0,0,71.5,1,1,0,0,0,51.42,43.8,38.59,63.37,0,1,1,0,0,6,10,2,1,1356,300709.56,200990.27,353337.97,155111.06,2164.0024 -14924,18368,33193,33192,-9,-9,1,0,45,0,2,0,2,2,-9,1,5,0,0,0,6,5,-144.26729,0,2,2,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,38.59,63.37,51.42,43.8,8.333333333333334,1,1,0,0,0,10,2,1,1356,300709.56,200990.27,353337.97,155111.06,2164.0024 -14924,18369,33194,-9,33193,-9,1,1,23,0,2,0,2,2,-9,0,4,7.3304453,7.1024542,0,0,0,-900.32928,0,2,-9,2019,9,0,24,39,1,0,1,5.8871398,5.8871398,0,0,0,0,0,1,1,0,0,0,55.2,43.52,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,859,117925.14,95644.055,0,0,810.08661 -14925,18370,33195,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,6.871078,6.8780193,6.0899968,0,0,-956.59961,0,3,2,2019,12,0,17,17,1,0,1,4.9068203,4.9068203,0,0,0,0,0,1,1,0,6.4755917,0,30.45,64.19,-9,-9,6.666666666666667,1,1,0,0,7,6,3,0,884.33331,-2265.6094,-68898.266,0,0,1126.5371 -14925,18370,33196,-9,33195,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.09131,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,884.33331,-2265.6094,-68898.266,0,0,1126.5371 -14925,18370,33197,-9,33195,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.7472,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,0,884.33331,-2265.6094,-68898.266,0,0,1126.5371 -14926,18371,33198,33199,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.2157297,7.7040238,0,33,1,21.810055,0,3,3,2019,8,0,30,40,1,0,0,6.4015746,6.4015746,0,0,0,0,0,0,0,0,1.2951107,0,55.22,46.37,57.06,57.76,8.333333333333334,1,1,0,0,10,4,5,1,771.5,506091.75,98930.266,259425.06,112926.11,6136.4277 -14926,18371,33199,33198,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.9722166,8.9726915,0,33,-1,-84.66301,0,2,1,2019,6,0,48,16,1,0,0,22.864588,22.864588,0,0,0,0,0,0,0,0,8.4046049,0,57.06,57.76,55.22,46.37,8.333333333333334,4,2,0,0,8,4,5,1,771.5,506091.75,98930.266,259425.06,112926.11,6136.4277 -14926,18372,33200,-9,33198,33199,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-976.28931,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,3.0926139,0,43.82,61.41,-9,-9,8.333333333333334,4,2,0,0,2,4,1,1,317,-262655.75,0,0,0,393.85889 -14927,18373,33201,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,0,0,0,0,-980.99915,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5779748,0,66.95,28.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,977,0,0,0,0,287.11304 -14928,18374,33202,33204,-9,-9,1,1,37,0,1,0,1,1,-9,0,3,8.3092957,8.6062078,0,3,0,-9.9431725,0,2,2,2019,12,0,37,37,1,0,0,10.000482,10.000482,0,0,0,0,14.5,1,1,0,0,0,35.36,56.72,55.23,46.15,8.333333333333334,1,1,0,0,11,11,3,1,669.66669,84708.352,16588.191,0,0,2483.4771 -14928,18374,33203,-9,33204,33202,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1036.4591,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,669.66669,84708.352,16588.191,0,0,2483.4771 -14928,18374,33204,33202,-9,-9,1,0,37,0,1,0,3,3,-9,1,3,0,0,0,3,0,-1.0723823,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.23,46.15,35.36,56.72,8.333333333333334,1,1,0,0,3,11,3,1,669.66669,84708.352,16588.191,0,0,2483.4771 -14929,18375,33205,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.5569453,5.5942149,0,0,-921.92151,0,3,3,2019,7,1,0,0,4,1,0,0,0,1,6.9110413,0,63.183884,0,1,1,0,0,5.7360039,47.28,41.03,-9,-9,10,1,1,0,0,0,5,2,1,702,368827.03,238805.78,0,0,1878.2964 -14930,18376,33206,33209,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.3946543,8.4256124,0,7,-3,14.367951,0,2,2,2019,12,1,23,25,1,1,0,20.597517,20.597517,0,0,0,0,0,1,1,0,7.3377228,0,48.76,53.24,42.75,61.95,8.333333333333334,1,1,0,0,8,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 -14930,18376,33207,-9,33206,33209,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1266,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 -14930,18376,33208,-9,33206,33209,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.978,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 -14930,18376,33209,33206,-9,-9,1,1,43,1,2,0,2,2,-9,0,5,8.3103514,8.2343998,0,7,3,-78.914871,0,-9,-9,2019,12,0,37,39,1,0,0,13.221056,13.221056,0,0,0,0,0,1,1,0,1.7707239,0,42.75,61.95,48.76,53.24,6.666666666666667,1,1,0,0,8,5,4,1,512.25,380830.22,208805.64,259207.33,233623.44,3784.791 -14931,18377,33210,33212,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.4012833,8.1216784,0,3,-1,16.334305,0,-9,-9,2019,6,0,35,36,1,0,0,13.749647,13.749647,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,9,7,4,1,659,105695.23,-28744,150791.14,102977.52,2481.8972 -14931,18377,33211,-9,33212,33210,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-890.27802,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,659,105695.23,-28744,150791.14,102977.52,2481.8972 -14931,18377,33212,33210,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,6.827517,6.7797232,0,3,1,11.627473,0,2,2,2019,6,0,12,40,1,0,0,7.4256945,7.4256945,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,7,7,4,1,659,105695.23,-28744,150791.14,102977.52,2481.8972 -14932,18378,33213,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.3313589,8.2138357,0,0,0,-1084.5394,0,2,2,2019,11,1,53,48,1,1,0,7.2020979,7.2020979,0,0,0,0,0,0,0,0,0,0,38.61,47.23,-9,-9,5,1,1,0,0,8,2,4,1,587,281743.69,78556.75,0,0,1714.2395 -14933,18379,33214,33215,-9,-9,1,1,83,0,0,0,2,2,-9,0,1,0,8.3024015,8.7801027,61,1,-31.917456,0,2,3,2019,19,5,0,0,4,5,0,0,0,0,0,0,0,7,1,1,0,5.8070664,8.5675659,47.27,15.44,34.18,50.43,5,1,1,0,0,0,9,4,1,1550,1098522.4,174986.23,426319.94,0,4638.4346 -14933,18379,33215,33214,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,61,-1,-111.05499,0,3,2,2019,18,8,0,0,4,8,0,0,0,0,0,0,0,120,1,1,0,0,0,34.18,50.43,47.27,15.44,8.333333333333334,1,1,0,0,0,9,4,1,1550,1098522.4,174986.23,426319.94,0,4638.4346 -14934,18380,33216,-9,33217,33218,1,1,20,0,0,0,2,2,-9,0,4,7.7735219,7.7061691,0,0,0,-1031.0273,0,2,2,2019,8,0,37,40,1,0,1,9.1671524,9.1671524,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,395,-156550.59,0,0,0,1224.98 -14934,18381,33217,33218,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.8441744,7.278851,0,8,-7,-105.5515,0,2,2,2019,7,0,28,28,1,0,0,9.543685,9.543685,0,0,0,0,0,0,0,0,0,0,58.15,52.91,47.07,53.97,6.666666666666667,1,1,0,0,9,11,4,1,545,-114882,13751.651,0,0,2898.4497 -14934,18381,33218,33217,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.4597654,8.56429,0,8,7,-45.075184,0,-9,-9,2019,10,0,55,52,1,0,0,7.8403821,7.8403821,0,0,0,0,0,0,0,0,0,0,47.07,53.97,58.15,52.91,6.666666666666667,1,1,0,0,9,11,4,1,545,-114882,13751.651,0,0,2898.4497 -14935,18382,33219,33220,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.5349369,8.5990829,0,35,2,167.83929,0,3,2,2019,8,0,45,43,1,0,0,15.863606,15.863606,0,0,0,0,0,0,0,0,0,0,57.16,56.15,39.54,30.57,6.666666666666667,1,1,0,0,12,9,4,1,358.5,2556165.3,1986537.8,504859.38,0,2813.1101 -14935,18382,33220,33219,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,0,0,0,34,-2,10.837892,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,7.2274976,0,39.54,30.57,57.16,56.15,6.666666666666667,1,1,0,0,10,9,4,1,358.5,2556165.3,1986537.8,504859.38,0,2813.1101 -14935,18383,33221,-9,33220,33219,1,1,18,0,0,0,2,2,-9,0,4,7.8026633,7.2187948,0,0,0,-920.22729,0,2,3,2019,6,0,62,20,1,0,1,3.909462,3.909462,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,313,78743.75,0,0,0,945.92725 -14936,18384,33222,33224,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,8.4884815,8.6844893,0,1,-1,-5.62637,-9,1,1,2019,12,0,40,0,1,0,0,16.751282,16.751282,0,0,0,0,0,0,0,0,2.8084841,0,57.06,57.76,60.02,56.42,8.333333333333334,2,3,0,0,6,6,4,0,537.33331,30006.797,-9598.916,0,0,1854.5552 -14936,18384,33223,-9,33224,33222,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.537,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,0,537.33331,30006.797,-9598.916,0,0,1854.5552 -14936,18384,33224,33222,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,0,0,0,3,1,142.86455,-9,1,1,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.06,57.76,10,2,3,1,0,0,6,4,0,537.33331,30006.797,-9598.916,0,0,1854.5552 -14937,18385,33225,33226,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,8.3640804,8.5497713,0,1,2,-180.49675,-9,2,2,2019,10,0,38,0,1,0,0,13.037612,13.037612,0,0,0,0,2,1,1,0,0,0,40.03,62.02,39.05,59.16,8.333333333333334,1,1,0,0,12,9,5,1,945.5,2271688,1141516.5,766003.44,0,4314.5391 -14937,18385,33226,33225,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,8.6664648,8.7021284,0,1,-2,-127.21552,-9,2,1,2019,16,5,40,0,1,5,0,23.857233,23.857233,0,0,0,0,0,1,1,0,0,0,39.05,59.16,40.03,62.02,3.333333333333333,1,1,0,0,12,9,5,1,945.5,2271688,1141516.5,766003.44,0,4314.5391 -14938,18386,33227,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.710835,7.483974,0,0,0,-845.85883,0,3,3,2019,16,5,90,75,1,5,0,2.473213,2.473213,0,0,0,0,0,0,0,0,10.290573,0,43.04,50.37,-9,-9,1.666666666666667,1,1,0,0,9,13,3,1,781,-91080.633,-144176.52,0,0,17645.045 -14939,18387,33228,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.9439631,6.8165751,0,0,-972.4234,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,7.1616244,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1116,243957.75,160291.23,0,0,949.11749 -14940,18388,33229,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.9481974,8.9072943,0,0,0,-910.10706,0,3,2,2019,12,0,104,55,1,0,0,8.4837236,8.4837236,0,0,0,0,2,0,0,0,2.7278399,0,51.98,51.67,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,68,1391000.4,-25917.98,270622.69,0,2430.9568 -14941,18389,33230,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.4055891,8.0513391,0,0,-1047.5441,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8118916,8.0006409,58.87,51.29,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,937,1327766.4,578407.31,474958.97,0,2153.6396 -14942,18390,33231,33232,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.4521646,6.3119912,6,1,143.02315,0,3,3,2019,24,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,6.4154344,43.59,38.38,43.01,24.99,8.333333333333334,1,1,0,0,0,2,2,1,552.5,809963.25,340059.19,148868.19,0,1527.9539 -14942,18390,33232,33231,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,6,-1,-15.657762,0,3,3,2019,22,10,0,0,4,10,0,0,0,1,0,.92187589,0,0,1,1,0,0,0,43.01,24.99,43.59,38.38,6.666666666666667,1,1,0,0,0,2,2,1,552.5,809963.25,340059.19,148868.19,0,1527.9539 -14943,18391,33233,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.0994053,8.2807627,0,0,0,-931.04535,0,2,2,2019,9,0,50,45,1,1,0,5.6519108,5.6519108,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,1,1,0,0,1,11,4,0,218,-112844.31,210082.75,147040.42,23283.559,1413.264 -14943,18392,33234,-9,-9,33233,1,1,19,0,0,0,2,2,-9,0,5,8.0680447,8.0303354,0,0,0,-1073.7087,0,-9,2,2019,6,0,50,0,1,0,1,6.7019305,6.7019305,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,2,11,4,0,1255,214495.97,0,0,0,1120.7291 -14944,18393,33235,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.4271336,9.3750458,0,0,0,-993.19568,0,2,2,2019,12,0,53,45,1,0,0,36.627815,36.627815,0,0,0,0,0,0,0,0,3.6196139,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,633,232900.69,106364.52,181624.61,0,6241.1831 -14945,18394,33236,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.7845869,8.3160534,0,0,0,-1026.9918,0,3,3,2019,8,0,35,39,1,0,0,18.653934,18.653934,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,3,4,0,0,8,8,5,0,203,142887.48,-41835.223,0,0,2183.1885 -14946,18395,33237,33238,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,6.8405056,7.0013237,0,40,0,8.9274998,0,3,3,2019,12,0,20,15,1,0,0,5.6119385,5.6119385,0,0,0,0,7,1,1,0,0,0,45.07,30.7,44.66,37.84,6.666666666666667,1,1,0,0,9,1,2,1,570,-179773.7,-27202.402,0,0,1689.4982 -14946,18395,33238,33237,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.5112338,6.5306916,40,9,128.86542,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4311361,44.66,37.84,45.07,30.7,3.333333333333333,1,1,0,0,0,1,2,1,570,-179773.7,-27202.402,0,0,1689.4982 -14946,18396,33239,-9,33237,33238,1,1,38,0,0,0,2,2,-9,1,1,7.8369179,7.6701899,0,0,0,-1061.0764,0,2,3,2019,18,7,37,38,1,7,1,8.1067743,8.1067743,0,0,0,0,0,1,1,0,0,0,39.73,34.95,-9,-9,3.333333333333333,1,1,0,0,9,1,3,1,394,28912.541,0,0,0,1130.3976 -14946,18397,33240,-9,33237,33238,1,1,26,0,0,0,1,1,-9,0,2,8.179965,8.2785463,0,0,0,-943.11774,0,3,3,2019,12,0,36,40,1,0,1,10.292102,10.292102,0,0,0,0,0,1,1,0,2.1393692,0,24.7,57.78,-9,-9,3.333333333333333,1,1,0,0,3,1,4,1,248,-52273.953,-57678.184,0,0,573.99799 -14947,18398,33241,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.40973,-9,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,396,55135.414,0,0,0,517.64227 -14948,18399,33242,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.2740021,8.0092077,0,0,0,-1017.08,0,1,-9,2019,14,2,38,38,1,2,0,8.5873938,8.5873938,0,0,0,0,0,0,0,0,4.4329476,0,50.42,51.35,-9,-9,6.666666666666667,1,1,0,1,6,8,4,0,2278,56475.836,0,0,0,1118.1309 -14949,18400,33243,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.7838535,7.9781704,0,0,0,-951.13885,0,3,3,2019,6,0,36,36,1,0,0,8.3981962,8.3981962,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,11,13,3,1,222,294500.06,381775.44,0,0,953.92871 -14950,18401,33244,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-930.63336,0,2,2,2019,16,4,0,40,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,37,50.61,-9,-9,5,1,1,0,0,9,2,2,1,853,117502.22,45694.469,0,0,-449.13501 -14951,18402,33245,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,6.9248247,6.8621278,0,0,-927.87311,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8153954,6.9190788,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,800,181884.22,318535.53,142900.03,0,716.91022 -14952,18403,33246,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,3.4428651,3.4104218,0,0,-981.07031,0,-9,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,3.01683,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,295,543387,0,370965.34,0,377.45667 -14953,18404,33247,33248,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.256753,8.7307577,0,33,-5,-66.904236,0,2,2,2019,6,0,52,40,1,0,0,10.760437,10.760437,0,0,0,0,0,0,0,0,0,0,52.4,55.58,51.34,52.37,8.333333333333334,1,1,0,0,12,8,4,1,529,190775.64,106731.53,106529.19,61352.746,2587.1768 -14953,18404,33248,33247,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7834768,7.9526892,0,33,5,-103.54701,0,-9,-9,2019,12,0,38,36,1,0,0,6.5254731,6.5254731,0,0,0,0,0,0,0,0,0,0,51.34,52.37,52.4,55.58,8.333333333333334,1,1,0,0,12,8,4,1,529,190775.64,106731.53,106529.19,61352.746,2587.1768 -14954,18405,33249,-9,33251,33250,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.94836,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 -14954,18405,33250,33251,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.3579931,8.2186146,0,12,-2,78.14006,0,2,2,2019,21,8,49,39,1,8,0,11.995192,11.995192,0,0,0,0,0,1,1,0,0,0,40.32,56.92,43.15,56.92,3.333333333333333,1,1,0,1,5,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 -14954,18405,33251,33250,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,0,0,0,12,2,22.009394,1,2,1,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,56.92,40.32,56.92,6.666666666666667,1,1,0,1,2,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 -14954,18405,33252,-9,33251,33250,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.64111,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,511,230351.17,-33907.504,0,0,3071.0327 -14955,18406,33253,-9,33254,33256,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-828.17047,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 -14955,18406,33254,33256,-9,-9,1,0,27,0,2,0,2,2,-9,1,4,6.6602392,6.7924023,0,7,-3,-53.994797,0,2,2,2019,8,0,16,18,1,0,0,7.0646214,7.0646214,0,0,0,0,27,1,1,0,0,0,46.98,59.35,33.75,52.61,8.333333333333334,1,1,0,0,6,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 -14955,18406,33255,-9,33254,33256,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.30023,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 -14955,18406,33256,33254,-9,-9,1,1,30,0,2,0,2,2,-9,0,2,8.8567715,8.6328983,0,7,3,21.36462,0,-9,-9,2019,17,5,51,48,1,5,0,12.999426,12.999426,0,0,0,0,7,1,1,0,0,0,33.75,52.61,46.98,59.35,3.333333333333333,1,1,0,0,11,6,4,1,1300.25,21112.742,-2325.6685,110632.55,67234.93,3343.417 -14956,18407,33257,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4106855,8.850791,5.8797512,0,0,-903.03528,0,3,3,2019,9,1,38,42,1,1,0,13.466777,13.466777,0,0,0,0,0,0,0,0,6.3539867,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,908,2121728.8,1156988.9,643671.63,0,2013.5398 -14957,18408,33258,33260,-9,-9,1,0,39,0,2,0,2,2,-9,1,2,6.6123767,6.5178933,0,11,-4,105.00243,0,3,3,2019,18,6,23,17,1,6,0,3.3594611,3.3594611,0,0,0,0,0,1,1,0,0,0,45.28,38.94,52,54.51,5,1,1,0,1,12,11,3,1,436,518333.47,484552.13,142261.53,16203.825,2208.7305 -14957,18408,33259,-9,33258,33260,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.11023,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,436,518333.47,484552.13,142261.53,16203.825,2208.7305 -14957,18408,33260,33258,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.0625868,8.0364523,0,11,4,114.43887,0,3,3,2019,11,0,37,37,1,0,0,9.3074856,9.3074856,0,0,0,0,0,1,1,0,0,0,52,54.51,45.28,38.94,5,1,1,0,0,12,11,3,1,436,518333.47,484552.13,142261.53,16203.825,2208.7305 -14958,18409,33261,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1316032,8.1736155,0,0,0,-946.83893,0,2,2,2019,34,12,37,37,1,12,0,12.395057,12.395057,0,0,0,0,7,1,1,0,0,0,21.96,55.03,-9,-9,1.666666666666667,1,1,0,0,9,10,4,1,114,75505.422,-81053.852,0,0,1464.2985 -14959,18410,33262,-9,33265,33263,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.8231,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 -14959,18410,33263,33265,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.8519058,8.5063639,0,10,3,-1.1100132,0,-9,-9,2019,17,6,44,44,1,6,0,14.050694,14.050694,0,0,0,0,0,1,1,0,0,0,35.83,58.16,29.72,47.06,8.333333333333334,1,1,0,0,10,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 -14959,18410,33264,-9,33265,33263,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.88184,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 -14959,18410,33265,33263,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,8.5620108,8.4866095,0,10,-3,-22.556618,0,2,2,2019,19,6,45,40,1,6,0,19.146685,19.146685,0,0,0,0,2,1,1,0,0,0,29.72,47.06,35.83,58.16,5,1,1,0,0,10,12,5,1,752.25,342183.59,71749.984,178910.53,5221.5479,3810.7373 -14960,18411,33266,33269,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,7.6519117,7.6769795,0,6,10,-28.807806,0,2,-9,2019,10,0,51,40,1,0,0,4.409739,4.409739,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,7,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 -14960,18411,33267,-9,33269,33266,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.07178,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 -14960,18411,33268,-9,33269,33266,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.9809,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 -14960,18411,33269,33266,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.3601317,7.5231886,0,6,-10,-14.433599,0,-9,-9,2019,8,0,30,30,1,0,0,6.4288583,6.4288583,0,0,0,0,2,1,1,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,7,11,3,0,718.25,458575.41,188812.55,142218.08,39461.605,2449.2695 -14961,18412,33270,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,8.3894758,8.364604,0,0,0,-1122.5173,0,2,3,2019,12,2,39,37,1,2,0,11.245938,11.245938,0,0,0,0,0,1,1,0,0,0,13.24,63.22,-9,-9,5,1,1,0,0,9,6,4,1,152,-81789.164,-24113.117,102618.59,98047.164,2635.2173 -14962,18413,33271,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.4893408,8.4256983,0,0,0,-1079.5791,0,2,2,2019,13,1,43,39,1,1,0,12.75613,12.75613,0,0,0,0,7,0,0,0,0,0,46.05,44.79,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,1046,279860.25,0,318116.84,0,2048.5581 -14963,18414,33272,33273,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.7424102,7.5385842,0,47,-7,66.287865,0,3,3,2019,10,0,38,37,1,0,0,6.7569604,6.7569604,0,0,0,0,0,1,1,0,0,0,42.35,57.44,51.33,33.18,8.333333333333334,1,1,0,0,11,7,3,1,338.5,721728.31,318551.5,400287.94,0,2072.4595 -14963,18414,33273,33272,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,6.3088436,6.6353893,47,7,-45.533676,0,3,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.7443471,6.4864478,51.33,33.18,42.35,57.44,3.333333333333333,1,1,0,0,5,7,3,1,338.5,721728.31,318551.5,400287.94,0,2072.4595 -14964,18415,33274,-9,33276,33275,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.5127,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,521.33331,380026.56,110929.02,177556.59,0,3570.9539 -14964,18415,33275,33276,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,8.2962236,8.2213211,0,34,4,106.4511,0,2,2,2019,9,0,42,37,1,0,0,11.532663,11.532663,0,0,0,0,0,1,1,0,0,0,55.36,51.57,44.42,52.34,8.333333333333334,1,1,0,0,11,12,4,1,521.33331,380026.56,110929.02,177556.59,0,3570.9539 -14964,18415,33276,33275,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.328229,8.5154295,0,34,-4,-18.279551,0,3,3,2019,12,0,40,40,1,0,0,12.248115,12.248115,0,0,0,0,0,1,1,0,0,0,44.42,52.34,55.36,51.57,5,1,1,0,0,11,12,4,1,521.33331,380026.56,110929.02,177556.59,0,3570.9539 -14965,18416,33277,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,9.0646753,8.9478579,0,0,-826.56134,0,3,3,2019,11,3,0,0,4,3,0,0,0,1,0,9.5552464,0,0,1,1,0,0,8.7534666,51.25,22.92,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,600,1687095,1118559.8,581400.75,27914.186,4876.5547 -14966,18417,33278,-9,33280,33279,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.0679,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,757.66669,-121100.79,-9235.0918,0,0,2520.7256 -14966,18417,33279,33280,-9,-9,1,1,33,0,1,0,3,3,-9,0,4,8.1177826,8.1822014,0,1,2,-107.05489,-9,-9,-9,2019,10,0,40,0,1,1,0,10.320613,10.320613,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,4,3,0,757.66669,-121100.79,-9235.0918,0,0,2520.7256 -14966,18417,33280,33279,-9,-9,1,0,31,0,1,0,2,2,-9,1,4,0,0,0,1,-2,-53.933533,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,1,0,6,4,3,0,757.66669,-121100.79,-9235.0918,0,0,2520.7256 -14967,18418,33281,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1108.8762,0,3,3,2019,14,4,0,0,4,4,0,0,0,1,15.213374,0,136.43552,0,1,1,0,0,0,62.13,12.78,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,669,-11528.355,0,33342.32,0,1332.6346 -14968,18419,33282,33283,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,5.4755154,5.3551173,0,25,-2,25.753073,0,2,2,2019,22,10,8,8,1,10,0,3.0436118,3.0436118,0,0,0,0,42,1,1,0,0,0,24.61,42.78,57.73,54.53,6.666666666666667,1,1,0,0,4,13,4,1,970.5,179022,162729.81,95837.086,0,2082.2588 -14968,18419,33283,33282,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3104334,8.4914541,0,25,2,56.14056,-9,3,3,2019,7,0,40,0,1,0,0,15.700295,15.700295,0,0,0,0,0,1,1,0,0,0,57.73,54.53,24.61,42.78,8.333333333333334,1,1,0,0,11,13,4,1,970.5,179022,162729.81,95837.086,0,2082.2588 -14968,18420,33284,-9,33282,33283,1,0,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-856.21002,-9,1,2,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,1,1,13,1,1,1512,0,0,0,0,-239.60831 -14968,18421,33285,-9,33282,33283,1,0,18,0,0,0,2,2,1,0,4,5.0915141,4.7955875,0,0,0,-928.64453,-9,1,2,2019,6,0,15,0,1,0,1,1.2855493,1.2855493,0,0,0,0,0,1,1,0,0,0,58.75,48.57,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,611,-327140.94,0,0,0,-370.43201 -14969,18422,33286,33287,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,7.9145064,8.0062132,0,2,0,-21.856838,0,2,2,2019,7,0,31,27,1,0,0,12.674397,12.674397,0,0,0,0,2,1,1,0,0,0,57.06,57.76,51,56,0,1,1,0,0,7,7,5,1,975.5,-126466.93,122142.09,0,0,3865.7266 -14969,18422,33287,33286,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.7515125,8.4480629,0,2,9,-4.6266704,0,-9,-9,2019,10,0,45,45,1,1,0,14.310688,14.310688,0,0,0,0,0,1,1,0,0,0,51,56,57.06,57.76,7,1,1,0,0,1,7,5,1,975.5,-126466.93,122142.09,0,0,3865.7266 -14970,18423,33288,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1037.0416,0,-9,-9,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,.42583346,0,58.91,35.36,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,812,313106.56,0,0,0,350.67581 -14971,18424,33289,-9,33290,-9,1,0,34,0,0,0,3,3,-9,0,4,8.4445009,8.6738701,0,0,0,-993.42017,0,3,-9,2019,7,2,40,40,1,2,0,17.058416,17.058416,0,0,0,0,2,1,1,0,5.3342924,0,42.31,47.25,-9,-9,10,3,4,0,0,7,8,5,0,676,-78498.797,40398.754,223315.61,162533.63,1625.96 -14971,18425,33290,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1110.0439,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,42.05,44.11,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,331,354851.59,0,0,0,103.90537 -14972,18426,33291,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-868.66144,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.96,24.76,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,667,46601.77,0,0,0,1519.2379 -14973,18427,33292,33293,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2228646,7.155046,0,6,-8,56.012772,0,2,2,2019,16,4,21,25,1,4,0,7.3319736,7.3319736,0,0,0,0,2,1,1,0,0,0,37.28,55.9,52.41,42.18,6.666666666666667,1,1,0,0,11,6,3,1,1117.5,653553.13,19773.895,273804.28,0,1837.1626 -14973,18427,33293,33292,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.8371253,6.5849471,6,8,-14.678679,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8398218,52.41,42.18,37.28,55.9,6.666666666666667,2,3,0,0,11,6,3,1,1117.5,653553.13,19773.895,273804.28,0,1837.1626 -14974,18428,33294,33296,-9,-9,1,1,55,1,2,0,2,2,-9,0,3,7.8722548,8.4663143,7.7355661,7,19,-120.4092,0,2,3,2019,8,0,48,48,1,0,0,9.1351671,9.1351671,0,0,0,0,0,1,1,0,0,7.3788285,40.02,45.2,45.24,53.41,3.333333333333333,1,1,0,0,7,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 -14974,18428,33295,-9,33296,33294,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.92578,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 -14974,18428,33296,33294,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,7.8407269,8.0313549,0,7,-19,-10.325326,0,2,2,2019,11,1,27,26,1,1,0,11.656678,11.656678,0,0,0,0,0,1,1,0,1.2971973,0,45.24,53.41,40.02,45.2,6.666666666666667,1,1,0,0,7,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 -14974,18428,33297,-9,33296,33294,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9462,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,763.25,1170516.1,728036,140231.53,0,3630.7363 -14975,18429,33298,33299,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,7.9033618,8.2832289,0,7,0,14.048419,0,-9,-9,2019,8,0,37,37,1,0,0,8.7872572,8.7872572,0,0,0,0,0,1,1,0,3.6183844,0,57.33,53.46,26.74,56.97,8.333333333333334,1,1,0,0,8,7,3,0,439.5,88814.359,-4977.1914,0,0,1771.3267 -14975,18429,33299,33298,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,7,0,-85.331711,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,3.3327801,0,26.74,56.97,57.33,53.46,5,1,1,0,0,0,7,3,0,439.5,88814.359,-4977.1914,0,0,1771.3267 -14976,18430,33300,33301,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.9254856,8.0039167,7,-5,-79.928482,0,2,2,2019,16,6,0,0,4,6,0,0,0,0,0,0,0,2,1,1,0,4.0575953,7.8023353,45.85,61.26,52,46,6.666666666666667,1,1,0,0,0,9,3,1,1506.5,865844.06,240004.31,384873.06,0,2398.2134 -14976,18430,33301,33300,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,7,5,-100.52425,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.8038193,0,52,46,45.85,61.26,8,1,1,0,0,0,9,3,1,1506.5,865844.06,240004.31,384873.06,0,2398.2134 -14977,18431,33302,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9546013,8.0013199,0,0,-1005.9822,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7297416,54,46,-9,-9,8,3,4,0,0,0,8,3,0,1312,609461.19,339985.91,148857.97,0,1520.4315 -14978,18432,33303,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1156.9949,0,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,34,31,-9,-9,1.666666666666667,1,1,1,1,0,2,1,0,1424,0,0,0,0,1968.8832 -14979,18433,33304,-9,33306,33305,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.14624,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 -14979,18433,33305,33306,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.9513588,9.1773787,0,7,8,-57.358734,0,2,2,2019,17,7,38,39,1,7,0,25.804338,25.804338,0,0,0,0,0,1,1,0,0,0,24.07,47.67,33.58,61.56,8.333333333333334,1,1,0,0,8,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 -14979,18433,33306,33305,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,0,0,0,8,-8,133.23816,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.58,61.56,24.07,47.67,6.666666666666667,1,1,0,0,5,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 -14979,18433,33307,-9,33306,33305,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.82385,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,489.5,206384.33,104431.66,314176.75,173584.36,3039.0488 -14980,18434,33308,33311,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,4.3161731,4.3116841,0,6,0,-43.762363,0,-9,-9,2019,7,0,16,20,1,0,0,.48805991,.48805991,0,0,0,0,0,1,1,0,3.4562666,0,55.36,54.24,62.66,52.4,10,1,1,0,0,12,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 -14980,18434,33309,-9,33308,33311,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.20947,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 -14980,18434,33310,-9,33308,33311,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6481,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 -14980,18434,33311,33308,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,7.7961855,7.5242701,0,6,0,179.46689,0,-9,-9,2019,6,0,35,30,1,0,0,7.3163834,7.3163834,0,0,0,0,0,1,1,0,0,0,62.66,52.4,55.36,54.24,10,1,1,0,0,12,9,2,1,1300.25,-118684.93,-1862.9675,0,0,1931.7473 -14981,18435,33312,33313,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,7.4265924,7.315177,5,-3,65.510994,-9,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.2302275,7.7115917,60.48,17.09,57.91,48.98,8.333333333333334,1,1,0,0,8,10,4,1,684.5,1426123.8,669306.81,305104.5,0,5430.3926 -14981,18435,33313,33312,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.7576151,8.3793011,5,3,-44.474442,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,6.6530352,8.8578024,57.91,48.98,60.48,17.09,10,1,1,0,0,9,10,4,1,684.5,1426123.8,669306.81,305104.5,0,5430.3926 -14982,18436,33314,33315,-9,-9,1,0,59,0,1,0,3,3,-9,0,3,6.6184244,6.4322629,0,6,-3,-40.70649,0,3,2,2019,9,0,30,44,1,0,0,3.0394242,3.0394242,0,0,0,0,0,1,1,0,4.0045085,0,47.16,55.33,51,48,8.333333333333334,1,1,0,0,5,13,2,1,459.5,511120.88,362698.06,150776.63,0,1236.7957 -14982,18436,33315,33314,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,6.8398075,6.4408884,0,6,3,62.824757,0,3,3,2019,10,0,20,40,1,1,0,5.1474051,5.1474051,0,0,0,0,0,1,1,0,0,0,51,48,47.16,55.33,7,1,1,0,0,1,13,2,1,459.5,511120.88,362698.06,150776.63,0,1236.7957 -14983,18437,33316,-9,33319,33318,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.835,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 -14983,18437,33317,-9,33319,33318,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.04675,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 -14983,18437,33318,33319,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.4074717,8.6089783,0,14,7,-9.6953316,0,2,2,2019,9,0,37,40,1,1,0,17.018499,17.018499,0,0,0,0,0,1,1,0,4.1056457,0,53,55,34.17,57.25,8,1,1,0,0,1,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 -14983,18437,33319,33318,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.9743848,8.116293,0,14,-7,-4.2121401,0,2,2,2019,16,4,35,30,1,4,0,7.8715057,7.8715057,0,0,0,0,2,1,1,0,0,0,34.17,57.25,53,55,6.666666666666667,1,1,0,0,9,8,4,1,1294.5,190761.81,46813.551,339837.13,253687.88,3587.7944 -14984,18438,33320,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.378171,8.5570784,0,0,0,-1017.7153,0,2,3,2019,7,0,40,35,1,0,0,12.694698,12.694698,0,0,0,0,0,1,1,0,1.7800554,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,12,9,4,1,289,824117.13,199880.16,240755.16,56525.625,2010.9761 -14985,18439,33321,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,3.744642,4.0523124,0,0,-974.07648,0,2,-9,2019,32,11,0,0,4,11,0,0,0,1,2.061342,0,26.751247,0,1,1,0,4.9264598,4.0733819,47,35,-9,-9,4,1,1,0,0,6,10,2,0,949,99811.258,1080.8756,240010.06,0,432.32367 -14986,18440,33322,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,4,8.3266888,8.5808258,0,0,0,-890.41553,-9,-9,-9,2019,11,0,54,0,1,2,0,8.808672,8.808672,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,4,10,4,0,590,-241338.61,0,0,0,1214.1064 -14987,18441,33323,33324,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,9.4621067,9.3641539,0,6,1,82.283943,0,-9,-9,2019,10,0,44,40,1,0,0,33.147766,33.147766,0,0,0,0,0,0,0,0,9.2689543,0,53.86,49.64,31.35,66.34,6.666666666666667,1,1,0,0,6,8,5,1,975.33331,1129032.5,696720.25,761490.19,290172.63,11447.389 -14987,18441,33324,33323,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.984128,9.0494061,0,6,-1,35.464737,0,-9,-9,2019,15,4,30,40,1,4,0,36.634148,36.634148,0,0,0,0,0,0,0,0,2.7755928,0,31.35,66.34,53.86,49.64,8.333333333333334,1,1,0,0,6,8,5,1,975.33331,1129032.5,696720.25,761490.19,290172.63,11447.389 -14987,18441,33325,-9,33323,33324,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.6356,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,975.33331,1129032.5,696720.25,761490.19,290172.63,11447.389 -14988,18442,33326,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.5700436,8.3587332,0,0,0,-934.03113,0,3,3,2019,7,0,37,37,1,0,0,15.727386,15.727386,0,0,0,0,0,0,0,0,5.1959486,0,54.1,48.06,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,665,1479302,1525959.4,103562.39,0,1786.635 -14988,18443,33327,-9,-9,33326,1,1,22,0,0,0,1,1,1,0,3,6.7364693,6.7724595,0,0,0,-1006.2316,-9,3,2,2019,10,3,30,0,1,3,1,3.0986047,3.0986047,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,338,0,0,0,0,-174.97681 -14989,18444,33328,33329,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,9.2345057,9.2837629,0,14,2,36.396534,0,2,1,2019,8,0,44,42,1,0,0,25.214895,25.214895,0,0,0,0,0,1,1,0,3.1903186,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,5,5,1,458.33334,1325487,621089.13,376507.44,0,4936.0879 -14989,18444,33329,33328,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.1411924,7.9628377,0,14,-2,-50.651718,0,2,2,2019,9,0,26,26,1,0,0,14.072245,14.072245,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,458.33334,1325487,621089.13,376507.44,0,4936.0879 -14989,18444,33330,-9,33329,33328,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.8231,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,458.33334,1325487,621089.13,376507.44,0,4936.0879 -14990,18445,33331,33332,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.779038,6.6871824,36,12,59.753956,0,2,3,2019,11,0,0,0,4,0,0,0,0,1,27.743618,28.602482,255.34399,0,1,1,0,0,6.784534,56.74,20.76,32.93,35.42,5,1,1,0,0,0,9,2,0,194.5,-124815.67,65672.891,0,0,1033.0231 -14990,18445,33332,33331,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,36,-12,-131.19724,0,2,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.93,35.42,56.74,20.76,5,1,1,0,0,8,9,2,0,194.5,-124815.67,65672.891,0,0,1033.0231 -14991,18446,33333,33335,-9,-9,1,0,42,0,2,0,3,3,-9,0,1,0,0,0,4,-4,-42.123257,0,3,-9,2019,20,0,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,43.76,20.56,52,55,6.666666666666667,2,3,0,1,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 -14991,18446,33334,-9,33333,33335,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.7746,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 -14991,18446,33335,33333,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.339922,8.3653097,0,4,4,27.943518,-9,-9,-9,2019,9,0,35,0,1,1,0,12.715247,12.715247,0,0,0,0,0,1,1,0,0,0,52,55,43.76,20.56,7,4,3,0,0,1,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 -14991,18446,33336,-9,33333,33335,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-969.10309,-9,3,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 -14991,18446,33337,-9,33333,33335,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.22949,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,7,3,1,738.79999,244845,131583.59,158360.39,7693.0356,2877.8745 -14991,18447,33338,-9,33333,33335,1,1,23,0,2,0,2,2,-9,0,3,0,0,0,0,0,-953.26141,0,3,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,0,7,1,1,261,0,0,0,0,547.59912 -14991,18448,33339,-9,33333,33335,1,1,21,0,2,1,2,0,-9,0,4,0,0,0,0,0,-891.19141,-9,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,0,0,0,7,1,1,1050,0,0,0,0,0 -14992,18449,33340,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.467761,8.5304661,0,0,0,-933.07837,0,2,2,2019,25,12,41,37,1,12,0,14.750543,14.750543,0,0,0,0,0,1,1,0,0,0,38,62.48,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,260,109909.48,-69097.391,0,0,1555.827 -14993,18450,33341,33342,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,52,4,115.7887,0,-9,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,0,12,2,1,371,248670.25,1651.293,0,0,1302.5219 -14993,18450,33342,33341,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.0646868,4.9950008,52,-4,69.893433,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,4.8935499,57.33,53.46,57.33,53.46,6.666666666666667,1,1,0,0,4,12,2,1,371,248670.25,1651.293,0,0,1302.5219 -14994,18451,33343,-9,33345,33346,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.00916,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,841.25,0,0,0,0,1740.4725 -14994,18451,33344,-9,33345,33346,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1007.8302,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,-9,-9,10,1,1,0,0,0,5,1,0,841.25,0,0,0,0,1740.4725 -14994,18451,33345,33346,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,0,0,0,25,0,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.45,60.44,8.333333333333334,1,1,0,0,0,5,1,0,841.25,0,0,0,0,1740.4725 -14994,18451,33346,33345,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,0,0,0,24,9,0,0,2,2,2019,9,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.45,60.44,58.15,52.91,5,1,1,1,0,4,5,1,0,841.25,0,0,0,0,1740.4725 -14995,18452,33347,33348,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.1977777,7.9202046,17,-1,71.241501,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0779343,46.61,56.93,56.33,51.02,8.333333333333334,1,1,0,0,8,7,4,0,260,2238927.8,1295286,656212.38,0,4007.6147 -14995,18452,33348,33347,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.0320616,8.0950708,17,1,-2.1250131,0,2,2,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,7.9552422,56.33,51.02,46.61,56.93,10,1,1,0,0,9,7,4,0,260,2238927.8,1295286,656212.38,0,4007.6147 -14996,18453,33349,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,0,0,-915.34363,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,43.31,51.83,-9,-9,5,4,5,0,0,0,7,1,0,926,20828.285,0,0,0,1279.7247 -14997,18454,33350,33351,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,37,-8,-19.972052,0,2,2,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,4.01,54.19,57.16,56.15,6.666666666666667,1,1,1,0,5,6,5,1,201.5,1382535.5,1288669.8,223056.81,0,3854.5522 -14997,18454,33351,33350,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.8370152,8.6345749,36,8,88.713219,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9234903,9.021697,57.16,56.15,4.01,54.19,5,1,1,0,0,7,6,5,1,201.5,1382535.5,1288669.8,223056.81,0,3854.5522 -14997,18455,33352,-9,33350,33351,1,0,24,0,0,0,1,1,0,0,5,0,0,0,0,0,-1104.6118,-9,2,2,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,5,6,1,1,5065,135339.39,0,0,0,-344.9776 -14998,18456,33353,33354,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.1662774,6.4162812,60,1,67.246292,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.5529994,6.1299753,55,45,53,45,8,1,1,0,0,0,4,2,1,382,547396.06,64284.797,170218.42,0,851.5675 -14998,18456,33354,33353,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-1,24.474522,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,55,45,8,1,1,0,0,0,4,2,1,382,547396.06,64284.797,170218.42,0,851.5675 -14999,18457,33355,33357,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,0,0,0,9,-6,121.42121,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.4627452,0,62.49,55.09,49.53,48.59,10,2,3,0,0,0,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 -14999,18457,33356,-9,33355,33357,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-829.31091,-9,1,2,2019,8,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.24,52.21,-9,-9,8.333333333333334,2,3,0,0,0,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 -14999,18457,33357,33355,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,7.7447042,8.0402803,0,24,6,26.635927,0,3,3,2019,11,1,38,48,1,1,0,8.6534681,8.6534681,0,0,0,0,0,1,1,0,0,0,49.53,48.59,62.49,55.09,5,2,3,0,0,11,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 -14999,18457,33358,-9,33355,33357,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6697,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,472.75,189328.53,0,89590.578,57386.465,1955.2119 -14999,18458,33359,-9,33355,33357,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-911.51514,-9,1,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,1260,0,0,0,0,-109.42113 -15000,18459,33360,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,2.205065,2.1132526,0,0,0,-1068.7717,0,2,3,2019,3,0,40,40,1,0,0,.022238147,.022238147,0,0,0,0,0,1,1,0,0,0,35.57,63.56,-9,-9,6.666666666666667,2,3,0,1,4,8,2,0,401,40421.52,0,0,0,-137.83044 -15001,18460,33361,33362,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.9865708,8.0507832,0,2,4,56.449261,0,2,3,2019,8,0,50,43,1,0,0,6.4180055,6.4180055,0,0,0,0,0,1,1,0,0,0,47.37,55.41,39.28,53.83,8.333333333333334,1,1,0,0,7,6,4,1,284,67182.188,50911.922,169458.25,102242.97,2847.1738 -15001,18460,33362,33361,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.1349993,8.3224726,0,2,-4,35.630596,0,2,2,2019,14,2,50,59,1,2,0,7.5554996,7.5554996,0,0,0,0,2,1,1,0,0,0,39.28,53.83,47.37,55.41,8.333333333333334,1,1,0,0,9,6,4,1,284,67182.188,50911.922,169458.25,102242.97,2847.1738 -15002,18461,33363,33364,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,7.5078096,7.7346153,42,0,-21.761436,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0021667,0,56.47,59.4,52.72,55.58,10,1,1,0,0,6,4,3,1,445,1723253.5,986139,204187.91,0,8588.5576 -15002,18461,33364,33363,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.8079128,7.2216034,42,0,93.128586,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,9.0059919,0,52.72,55.58,56.47,59.4,8.333333333333334,1,1,0,0,6,4,3,1,445,1723253.5,986139,204187.91,0,8588.5576 -15003,18462,33365,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.6359591,7.6043706,0,0,0,-872.69318,0,2,2,2019,27,10,36,41,1,10,0,6.5559731,6.5559731,0,0,0,0,0,0,0,0,.11015187,0,1.83,67.42,-9,-9,1.666666666666667,1,1,0,0,7,11,3,0,398,-251160.52,-100605.31,0,0,525.44897 -15003,18463,33366,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4934731,8.8610229,0,0,0,-919.85242,0,-9,-9,2019,6,0,70,54,1,0,0,13.020677,13.020677,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,9,11,5,0,812,-144325.72,0,0,0,2414.3433 -15004,18464,33367,33370,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,9.0060616,8.7892342,0,22,2,61.094578,-9,3,2,2019,7,0,50,0,1,0,0,16.573576,16.573576,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,55,8.333333333333334,1,1,0,0,11,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 -15004,18464,33368,-9,33367,33370,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1048.0038,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 -15004,18464,33369,-9,33367,33370,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1103.6835,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 -15004,18464,33370,33367,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.041256,8.8778191,0,24,-2,86.075111,-9,-9,-9,2019,9,0,40,0,1,1,0,21.749687,21.749687,0,0,0,0,0,1,1,0,2.188355,0,53,55,57.06,57.76,8,3,4,0,0,1,8,5,0,1037.75,753118.5,292877.91,580672.38,18667.996,5278.54 -15005,18465,33371,33372,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.0012493,9.2890158,0,4,-5,111.58663,0,1,1,2019,5,0,40,60,1,0,0,25.512905,25.512905,0,0,0,0,0,0,0,0,6.7234545,0,46.69,58.35,42.25,64.48999999999999,8.333333333333334,1,1,0,0,7,9,5,1,753.5,1353753,1253195.8,313539.88,205374.69,5622.2344 -15005,18465,33372,33371,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.2729998,8.3655157,0,4,5,28.318209,0,-9,-9,2019,15,3,36,40,1,3,0,17.031923,17.031923,0,0,0,0,0,0,0,0,7.7510505,0,42.25,64.48999999999999,46.69,58.35,8.333333333333334,1,1,0,0,8,9,5,1,753.5,1353753,1253195.8,313539.88,205374.69,5622.2344 -15006,18466,33373,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-971.98016,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.11,20.42,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,522,34127.469,51598.402,0,0,1536.2178 -15006,18467,33374,-9,33373,-9,1,0,24,0,0,0,2,2,-9,0,4,7.9137754,7.7023001,0,0,0,-889.01324,0,2,-9,2019,12,0,40,35,1,2,1,7.6655245,7.6655245,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,611,97062.172,-150540.28,0,0,1690.6587 -15006,18468,33375,-9,33373,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5939493,7.7288566,0,0,0,-1101.3566,0,2,-9,2019,12,0,40,35,1,2,1,6.7239194,6.7239194,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,378,-365439.09,0,0,0,1171.2477 -15007,18469,33376,33377,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.2421908,5.2727137,37,4,-83.091492,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2812166,5.3150573,59.07,43.05,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,1025.5,846089.56,318756.84,326643.94,0,1196.114 -15007,18469,33377,33376,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.498384,7.5038452,37,-4,-60.110939,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7506843,57.16,56.15,59.07,43.05,10,1,1,0,0,0,2,3,1,1025.5,846089.56,318756.84,326643.94,0,1196.114 -15008,18470,33378,33379,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.1448803,8.2244501,0,8,1,36.536755,0,2,2,2019,8,0,37,37,1,0,0,13.545874,13.545874,0,0,0,0,0,0,0,0,7.3471885,0,57.73,54.53,54.2,57.49,10,1,1,0,0,9,12,5,1,1009,1692789.8,1431497.5,485882.38,91393.789,3492.6992 -15008,18470,33379,33378,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.3766479,8.2124033,0,8,-1,-13.488242,0,2,2,2019,13,4,20,18,1,4,0,24.83016,24.83016,0,0,0,0,0,0,0,0,3.0441206,0,54.2,57.49,57.73,54.53,8.333333333333334,1,1,0,0,9,12,5,1,1009,1692789.8,1431497.5,485882.38,91393.789,3492.6992 -15009,18471,33380,33381,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2836375,7.2419786,0,40,-1,-34.973434,0,-9,-9,2019,7,0,20,26,1,0,0,6.3217983,6.3217983,0,0,0,0,0,0,0,0,0,0,58.15,52.91,52,54.51,8.333333333333334,1,1,0,0,9,7,3,1,242,182429.3,255851.06,211588.63,38043.906,1263.9496 -15009,18471,33381,33380,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.4537582,7.1144519,0,40,1,-19.50453,0,-9,-9,2019,6,0,25,20,1,0,0,5.9467707,5.9467707,0,0,0,0,0,0,0,0,0,0,52,54.51,58.15,52.91,6.666666666666667,1,1,0,0,8,7,3,1,242,182429.3,255851.06,211588.63,38043.906,1263.9496 -15010,18472,33382,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1073.4484,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,30.68,49.37,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,3028,322651.75,38227.887,155163.8,19520.35,900.35468 -15011,18473,33383,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.4366741,8.34554,0,0,0,-938.2475,0,3,3,2019,6,0,37,42,1,0,0,17.444555,17.444555,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,10,2,5,1,1383,171211.89,-19489.646,155599.39,22974.551,1339.2881 -15012,18474,33384,-9,33386,33385,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.8694,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,828.66669,619584.13,58746.852,321457.41,127976.42,3804.4377 -15012,18474,33385,33386,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.7366018,8.9193106,0,20,0,65.49334,0,2,2,2019,13,2,50,40,1,2,0,14.03937,14.03937,0,0,0,0,0,1,1,0,0,0,51.1,36.02,57.33,53.46,8.333333333333334,1,1,0,0,10,12,5,1,828.66669,619584.13,58746.852,321457.41,127976.42,3804.4377 -15012,18474,33386,33385,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,8.585289,8.5404224,0,20,0,55.593842,0,2,2,2019,10,0,36,40,1,0,0,14.726459,14.726459,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.1,36.02,10,1,1,0,0,10,12,5,1,828.66669,619584.13,58746.852,321457.41,127976.42,3804.4377 -15013,18475,33387,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.7417278,8.9105167,0,0,0,-985.77899,-9,2,2,2019,13,1,58,0,1,1,0,14.739097,14.739097,0,0,0,0,14.5,0,0,0,2.2549775,0,44.5,54.04,-9,-9,5,1,1,0,0,11,10,5,1,602,430804.16,420805.94,457325.69,99107.367,2572.1804 -15014,18476,33388,33389,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,7.10145,7.3793082,6,1,15.547512,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.4711504,0,50.57,24.1,52.21,59.91,5,1,1,0,0,2,7,5,0,366,877382.13,109452.39,609427.13,77023.297,5658.978 -15014,18476,33389,33388,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,9.3912897,9.100049,0,6,-1,25.497372,0,2,2,2019,8,0,40,45,1,0,0,41.733738,41.733738,0,0,0,0,0,1,1,0,0,0,52.21,59.91,50.57,24.1,8.333333333333334,1,1,0,0,11,7,5,0,366,877382.13,109452.39,609427.13,77023.297,5658.978 -15015,18477,33390,33391,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,0,0,0,4,-3,-10.550319,0,-9,-9,2019,13,4,0,40,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,60.68,38.18,65.09,8.333333333333334,1,1,0,0,4,2,4,1,252,-34385.703,84520.539,84243.094,101987.84,2129.0532 -15015,18477,33391,33390,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.5484838,8.5498905,0,4,3,21.550928,0,2,2,2019,10,1,40,39,1,1,0,18.162931,18.162931,0,0,0,0,0,0,0,0,0,0,38.18,65.09,41.11,60.68,6.666666666666667,1,1,0,0,8,2,4,1,252,-34385.703,84520.539,84243.094,101987.84,2129.0532 -15016,18478,33392,33393,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,6.8484001,6.7658868,0,2,0,-11.106681,-9,2,1,2019,16,5,16,0,1,5,0,6.8842516,6.8842516,0,0,0,0,0,1,1,0,0,0,41.47,35.85,31.79,47.48,0,1,1,0,0,9,7,3,0,810.66669,64858.508,0,0,0,1728.4757 -15016,18478,33393,33392,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.1468239,8.1607094,0,2,0,-2.9991999,-9,-9,-9,2019,30,12,42,0,1,12,0,9.2776203,9.2776203,0,0,0,0,0,1,1,0,0,0,31.79,47.48,41.47,35.85,1.666666666666667,1,1,0,0,1,7,3,0,810.66669,64858.508,0,0,0,1728.4757 -15016,18478,33394,-9,33392,33393,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.9204,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,810.66669,64858.508,0,0,0,1728.4757 -15017,18479,33395,33396,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.4695044,8.4080238,0,7,-3,-40.854923,0,-9,-9,2019,7,0,38,38,1,0,0,14.514982,14.514982,0,0,0,0,0,0,0,0,0,0,54.37,44.27,52.23,55.6,6.666666666666667,1,1,0,0,8,12,5,1,210,423191.38,244648.13,153768.16,166910.42,3398.4529 -15017,18479,33396,33395,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.2623529,8.2163897,0,7,3,72.418114,0,-9,-9,2019,7,0,50,50,1,0,0,7.3880563,7.3880563,0,0,0,0,0,0,0,0,0,0,52.23,55.6,54.37,44.27,8.333333333333334,1,1,0,0,8,12,5,1,210,423191.38,244648.13,153768.16,166910.42,3398.4529 -15018,18480,33397,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,0,0,0,0,0,-982.26801,0,2,2,2019,22,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,44.07,39.47,-9,-9,1.666666666666667,1,1,1,1,2,5,1,0,365,-134224.41,0,0,0,865.50684 -15019,18481,33398,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-904.40436,0,-9,-9,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1939,-83645.594,0,0,0,161.28543 -15020,18482,33399,33401,-9,-9,1,0,56,0,1,0,2,2,-9,0,2,7.4107251,7.5764408,0,20,0,54.189877,0,2,-9,2019,7,0,36,30,1,0,0,5.9947262,5.9947262,0,0,0,0,0,1,1,0,.56859523,0,67.59,34.18,53.18,51.37,10,3,4,0,0,10,8,4,1,595,688366.81,428952.44,181860.75,0,3775.3862 -15020,18482,33400,-9,33399,33401,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1014.9524,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,595,688366.81,428952.44,181860.75,0,3775.3862 -15020,18482,33401,33399,-9,-9,1,1,65,0,1,0,3,3,-9,0,3,8.3720484,8.8217964,8.0731888,7,9,92.310272,0,-9,-9,2019,4,0,37,37,1,0,0,7.9495444,7.9495444,0,0,0,0,0,1,1,0,7.7390437,7.978056,53.18,51.37,67.59,34.18,10,3,4,0,0,10,8,4,1,595,688366.81,428952.44,181860.75,0,3775.3862 -15020,18483,33402,-9,33399,33401,1,1,30,0,1,0,1,1,-9,0,4,8.1038189,7.9156027,0,0,0,-1075.0815,0,2,3,2019,10,0,35,35,1,1,1,10.063206,10.063206,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,1,210,144853.55,33804.961,0,0,541.18396 -15020,18484,33403,-9,33399,33401,1,1,25,0,1,0,2,2,-9,0,4,7.4357867,7.2355199,0,0,0,-1036.501,0,2,3,2019,10,0,40,35,1,1,1,4.2084694,4.2084694,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,1,8,3,1,170,-19882.334,0,0,0,81.382637 -15021,18485,33404,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,0,0,-975.02307,0,-9,-9,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,69.07000000000001,6.33,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,932,-38939.285,0,0,0,657.1012 -15022,18486,33405,-9,33406,33407,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.4395,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,1473.6666,94517.734,0,0,0,1718.5707 -15022,18486,33406,33407,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.4600306,7.3611774,0,2,-1,-63.606339,0,-9,-9,2019,10,0,10,20,1,1,0,19.618778,19.618778,0,0,0,0,0,1,1,0,0,0,50,55,55.96,49.93,8,4,1,0,0,1,5,3,0,1473.6666,94517.734,0,0,0,1718.5707 -15022,18486,33407,33406,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,6.9750466,7.2075744,0,2,1,48.522644,0,2,2,2019,6,0,35,35,1,0,0,4.3206472,4.3206472,0,0,0,0,0,1,1,0,0,0,55.96,49.93,50,55,6.666666666666667,1,1,0,0,10,5,3,0,1473.6666,94517.734,0,0,0,1718.5707 -15023,18487,33408,33409,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,8.6031647,8.7789993,0,1,1,-68.139839,-9,3,3,2019,11,0,15,0,1,0,0,38.710663,38.710663,0,0,0,0,42,1,1,0,0,0,59.46,46.99,60.12,54.8,1.666666666666667,1,1,0,0,4,4,5,0,1233.5,18161.738,9740.6797,0,0,4360.1006 -15023,18487,33409,33408,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.991818,8.2228155,0,1,-1,10.969838,-9,-9,-9,2019,6,0,48,0,1,0,0,9.2786932,9.2786932,0,0,0,0,2,1,1,0,0,0,60.12,54.8,59.46,46.99,8.333333333333334,1,1,0,0,7,4,5,0,1233.5,18161.738,9740.6797,0,0,4360.1006 -15023,18488,33410,-9,33408,33409,1,0,22,0,0,0,2,2,-9,0,3,7.509675,7.4646502,0,0,0,-901.19598,-9,3,2,2019,11,0,35,0,1,0,1,4.3691306,4.3691306,0,0,0,0,0,1,1,0,0,0,45.58,47.97,-9,-9,6.666666666666667,1,1,0,0,4,4,3,0,430,130809.35,-59891.082,0,0,1032.1948 -15024,18489,33411,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.5818348,8.7799673,0,9,6,1.7901775,0,3,2,2019,11,0,30,35,1,0,0,15.71797,15.71797,0,0,0,0,0,0,0,0,.48136115,0,54.2,57.49,43.38,44.93,6.666666666666667,1,1,0,0,11,2,5,1,577,344550.31,24191.639,154498.42,53792.629,2614.7944 -15024,18490,33412,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.3725424,8.2161932,0,9,-6,9.0579834,0,2,3,2019,21,9,32,32,1,9,0,16.889786,16.889786,0,0,0,0,0,0,0,0,7.2772503,0,43.38,44.93,54.2,57.49,8.333333333333334,1,1,0,0,11,2,5,1,1609,-155903.17,132818.86,35042.34,17787.32,1964.8861 -15025,18491,33413,33414,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.4091501,8.4969101,0,28,5,167.17068,0,1,1,2019,2,0,41,40,1,0,0,13.480844,13.480844,0,0,0,0,0,0,0,0,0,0,54,55,60.12,54.8,8.333333333333334,3,4,0,0,9,8,5,0,218,725701.25,176911.8,550273.38,39613.016,3387.5093 -15025,18491,33414,33413,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.2725868,8.8065243,0,7,-5,56.070057,0,-9,-9,2019,6,0,40,40,1,0,0,14.303287,14.303287,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54,55,10,3,4,0,0,9,8,5,0,218,725701.25,176911.8,550273.38,39613.016,3387.5093 -15025,18492,33415,-9,33413,33414,1,0,24,0,0,0,2,2,-9,0,4,8.0863314,7.6403565,0,0,0,-998.96338,0,2,1,2019,14,2,35,19,1,2,1,6.8471537,6.8471537,0,0,0,0,0,0,0,0,0,0,29.95,63.61,-9,-9,3.333333333333333,3,4,0,0,5,8,3,0,1380,-134648.67,0,0,0,1237.5658 -15026,18493,33416,33417,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,8.9795313,8.8563471,0,45,0,35.269951,0,3,2,2019,6,0,37,40,1,0,0,28.901762,28.901762,0,0,0,0,0,0,0,0,3.5280399,0,48.77,60.16,44.19,58.01,8.333333333333334,1,1,0,0,8,10,5,1,373.5,2046970.3,1476101.5,362734.69,0,3262.0708 -15026,18493,33417,33416,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,45,0,16.384771,0,3,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,5.0417628,0,44.19,58.01,48.77,60.16,8.333333333333334,1,1,0,0,5,10,5,1,373.5,2046970.3,1476101.5,362734.69,0,3262.0708 -15027,18494,33418,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-946.25891,-9,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,57.96,49.02,-9,-9,10,1,1,0,0,1,11,1,0,1088,66227.305,0,95713.492,0,588.9212 -15028,18495,33419,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1104.5809,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,48.88,-9,-9,5,2,3,0,0,0,8,1,0,1459,-226625.84,0,0,0,889.53217 -15029,18496,33420,33421,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,40,0,-27.538,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.6352749,0,50,50,51.83,57.2,7,1,1,0,0,5,5,3,1,886,1826188.5,518458,649257,0,1139.1554 -15029,18496,33421,33420,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.3406248,8.3523054,0,40,0,-184.55672,0,3,3,2019,8,0,47,42,1,0,0,7.3807817,7.3807817,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50,50,8.333333333333334,1,1,0,0,12,5,3,1,886,1826188.5,518458,649257,0,1139.1554 -15030,18497,33422,33423,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.9629545,8.5356197,0,31,3,4.082727,-9,-9,-9,2019,6,0,38,0,1,0,0,10.554115,10.554115,0,0,0,0,0,0,0,0,0,0,52,54.51,51.7,49.11,6.666666666666667,2,3,0,0,12,9,4,0,891.5,-49857.715,43630.168,225152.19,0,2419.5679 -15030,18497,33423,33422,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.4860005,7.9278264,0,10,-3,-19.952255,-9,3,3,2019,3,0,55,0,1,0,0,4.1060452,4.1060452,0,0,0,0,0,0,0,0,0,0,51.7,49.11,52,54.51,6.666666666666667,2,3,0,0,11,9,4,0,891.5,-49857.715,43630.168,225152.19,0,2419.5679 -15030,18498,33424,-9,33423,33422,1,1,25,0,0,0,1,1,-9,0,4,7.9582825,7.8773079,0,0,0,-999.88934,-9,3,2,2019,6,0,55,0,1,0,1,5.5442395,5.5442395,0,0,0,0,0,0,0,0,0,0,50.06,55.28,-9,-9,10,2,3,0,0,6,9,4,0,151,126821.54,0,0,0,961.79315 -15030,18499,33425,-9,33423,33422,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-995.33386,-9,3,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,41.46,53.68,-9,-9,6.666666666666667,2,3,0,0,3,9,1,0,935,-212573.92,0,0,0,575.17755 -15031,18500,33426,33427,-9,-9,1,1,56,0,1,0,1,1,0,0,4,0,0,0,24,5,-69.716431,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.1,59.11,8.333333333333334,3,4,0,0,8,8,3,1,936.5,533349.63,68642.68,697750.25,159639.69,2561.9812 -15031,18500,33427,33426,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.4750681,8.4955177,0,24,-5,16.097898,0,1,1,2019,7,0,48,49,1,0,0,11.386757,11.386757,0,0,0,0,0,1,1,0,3.2056842,0,54.1,59.11,60.12,54.8,10,3,4,0,0,10,8,3,1,936.5,533349.63,68642.68,697750.25,159639.69,2561.9812 -15032,18501,33428,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,7.7495909,7.7355847,0,0,0,-945.27496,0,3,3,2019,13,3,28,16,1,3,0,6.5949488,6.5949488,0,0,0,0,0,1,1,0,0,0,24.55,61.63,-9,-9,6.666666666666667,1,1,0,0,11,13,3,0,477,-310114.91,0,125540.66,101507.13,748.04858 -15032,18502,33429,-9,33428,-9,1,1,19,0,0,0,2,2,1,0,3,7.0464182,7.2425079,0,0,0,-987.32086,-9,3,-9,2019,17,5,25,0,1,5,1,5.5841846,5.5841846,0,0,0,0,0,1,1,0,0,0,34.12,47.88,-9,-9,6.666666666666667,1,1,0,0,2,13,3,0,1493,-98721.922,-170572.3,0,0,670.22479 -15033,18503,33430,33431,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.1556444,8.5468454,42,15,101.64873,-9,3,2,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.3377738,8.1398039,41.34,59.43,35.38,63.46,3.333333333333333,1,1,0,0,0,11,4,1,497.5,1500824.5,625790,278996.47,0,2709.1777 -15033,18503,33431,33430,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,42,-15,-28.840811,-9,3,3,2019,21,9,0,0,4,9,0,0,0,0,0,0,0,42,1,1,0,0,0,35.38,63.46,41.34,59.43,8.333333333333334,1,1,0,0,6,11,4,1,497.5,1500824.5,625790,278996.47,0,2709.1777 -15034,18504,33432,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.084528,5.8526316,0,0,-1059.0286,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,5.8572097,48.82,47.62,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,993,371163.19,0,292880,0,1720.4874 -15035,18505,33433,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,9.0129681,8.9429293,6.1963634,0,0,-974.09106,0,2,3,2019,11,0,46,20,1,0,0,16.537462,16.537462,0,0,0,0,0,1,1,0,6.3228664,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,463.33334,163050.69,89641.625,4472.502,28666.859,3573.2651 -15035,18505,33434,-9,33433,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.9305,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,463.33334,163050.69,89641.625,4472.502,28666.859,3573.2651 -15035,18505,33435,-9,33433,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.72632,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,463.33334,163050.69,89641.625,4472.502,28666.859,3573.2651 -15036,18506,33436,33438,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.0448914,8.0926123,0,11,-3,-92.209198,0,2,2,2019,16,4,32,53,1,4,0,13.597201,13.597201,0,0,0,0,0,0,0,0,.37864098,0,39.99,51.16,41.76,59.08,6.666666666666667,1,1,0,0,11,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 -15036,18506,33437,-9,33436,33438,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.499,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 -15036,18506,33438,33436,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.2487144,9.1114349,0,11,3,135.63083,0,-9,-9,2019,13,2,48,62,1,2,0,21.346312,21.346312,0,0,0,0,0,0,0,0,4.3950458,0,41.76,59.08,39.99,51.16,8.333333333333334,1,1,0,0,11,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 -15036,18506,33439,-9,33436,33438,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.68707,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,601.25,364792.06,-3629.4233,457057.5,157374.44,5168.3281 -15037,18507,33440,-9,33441,33443,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.8967,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,614.75,-60423.836,0,0,0,2556.5735 -15037,18507,33441,33443,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.8213911,7.5739069,0,21,-1,-37.107841,0,3,3,2019,14,3,30,30,1,3,0,7.8795028,7.8795028,0,0,0,0,0,1,1,0,2.4761357,0,46.09,47.59,51.89,49.21,8.333333333333334,1,1,0,0,10,13,4,1,614.75,-60423.836,0,0,0,2556.5735 -15037,18507,33442,-9,33441,33443,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1051.7579,-9,1,2,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,13,4,1,614.75,-60423.836,0,0,0,2556.5735 -15037,18507,33443,33441,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.3263378,8.3611202,0,21,1,24.523603,0,2,2,2019,9,1,38,40,1,1,0,13.480819,13.480819,0,0,0,0,0,1,1,0,0,0,51.89,49.21,46.09,47.59,6.666666666666667,1,1,0,0,11,13,4,1,614.75,-60423.836,0,0,0,2556.5735 -15038,18508,33444,33446,-9,-9,1,0,41,0,4,0,2,2,-9,0,3,0,0,0,4,4,59.928391,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.08,57.81,49.61,54.24,3.333333333333333,4,2,0,0,5,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 -15038,18508,33445,-9,33444,33446,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-914.22791,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 -15038,18508,33446,33444,-9,-9,1,1,37,0,4,0,2,2,-9,0,3,8.428895,8.6903143,0,4,-4,-69.68502,-9,-9,-9,2019,10,0,46,0,1,0,0,9.9382534,9.9382534,0,0,0,0,0,1,1,0,0,0,49.61,54.24,39.08,57.81,8.333333333333334,1,1,0,0,1,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 -15038,18508,33447,-9,33444,33446,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-917.00409,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,643.75,156560.66,62549.656,198943.05,106112.79,2754.9141 -15038,18509,33448,-9,33444,33446,1,1,18,0,4,0,2,2,-9,0,2,7.2048049,7.2122655,0,0,0,-1004.8813,-9,2,2,2019,12,0,32,0,1,0,1,5.096982,5.096982,0,0,0,0,0,1,1,0,0,0,37.76,50.87,-9,-9,5,4,2,0,0,11,9,3,0,2097,198548.95,0,0,0,784.30219 -15039,18510,33449,33450,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.8327732,8.7215729,0,29,-7,103.09196,0,2,2,2019,13,1,40,40,1,1,0,23.280413,23.280413,0,0,0,0,0,0,0,0,0,0,49.46,56.91,56.07,55.46,8.333333333333334,1,1,0,0,8,11,5,1,654,2477895.5,1762580.6,390600.69,0,4449.4668 -15039,18510,33450,33449,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.4668875,8.1170807,0,28,7,58.999004,0,3,2,2019,11,0,47,37,1,0,0,10.613256,10.613256,0,0,0,0,2,0,0,0,0,0,56.07,55.46,49.46,56.91,10,1,1,0,0,8,11,5,1,654,2477895.5,1762580.6,390600.69,0,4449.4668 -15039,18511,33451,-9,33449,33450,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1094.882,-9,1,1,2019,9,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,2.5465584,0,55.39,36.65,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,209,518572.13,0,0,0,426.7688 -15040,18512,33452,33453,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1788368,7.9590755,0,16,3,-47.234039,0,-9,-9,2019,10,0,45,50,1,1,0,8.5855389,8.5855389,0,0,0,0,0,0,0,0,0,0,51,54,61.12,51.57,8,1,1,0,0,1,10,4,1,433,-73056.234,22390.33,162452.19,94156.703,2715.9233 -15040,18512,33453,33452,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.8193955,8.0633097,0,7,-3,-37.316406,0,-9,2,2019,7,0,50,40,1,0,0,5.0594206,5.0594206,0,0,0,0,14.5,0,0,0,5.364409,0,61.12,51.57,51,54,8.333333333333334,1,1,0,0,7,10,4,1,433,-73056.234,22390.33,162452.19,94156.703,2715.9233 -15040,18513,33454,-9,33452,33453,1,0,23,0,0,0,2,2,-9,0,4,8.1781549,8.3964014,0,0,0,-1203.2603,0,2,2,2019,11,0,40,38,1,2,1,14.639054,14.639054,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,10,4,1,332,325534.09,0,0,0,1436.4462 -15041,18514,33455,33458,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,6.8125849,6.8117938,0,23,0,20.988832,0,2,2,2019,12,0,13,10,1,0,0,5.851244,5.851244,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.71,46.7,8.333333333333334,1,1,0,0,4,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 -15041,18514,33456,-9,33455,33458,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.07489,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 -15041,18514,33457,-9,33455,33458,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.3273,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 -15041,18514,33458,33455,-9,-9,1,1,53,0,2,0,3,3,-9,0,2,8.214468,8.4403658,0,23,9,62.473251,0,2,-9,2019,15,4,42,54,1,4,0,9.4700518,9.4700518,0,0,0,0,0,1,1,0,0,0,37.71,46.7,51.24,58.84,5,1,1,0,0,7,6,3,0,703.25,717214.13,256683.97,309329.41,0,1812.4908 -15042,18515,33459,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-996.78143,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,57.28,46.43,-9,-9,10,1,1,0,0,0,9,1,1,396,-195382.52,0,0,0,598.02454 -15043,18516,33460,33461,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,49,1,63.597797,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,1.3078114,0,0,1,1,0,0,0,44.67,32.3,61.85,47.26,6.666666666666667,1,1,0,0,3,1,2,1,765.5,644785.19,4583.2773,693811.56,0,1419.574 -15043,18516,33461,33460,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2382698,7.1507263,49,-1,54.526352,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1057119,6.8723569,61.85,47.26,44.67,32.3,10,1,1,0,0,6,1,2,1,765.5,644785.19,4583.2773,693811.56,0,1419.574 -15044,18517,33462,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2538195,8.3227358,0,0,0,-970.13147,0,2,2,2019,7,0,37,42,1,0,0,12.492501,12.492501,0,0,0,0,0,1,1,0,2.3591321,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,82,275040.44,35376.816,7913.7896,-3639.5881,1480.5541 -15045,18518,33463,33464,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.1336422,8.0013676,0,16,-1,40.521263,0,2,3,2019,12,1,38,37,1,1,0,12.29146,12.29146,0,0,0,0,0,1,1,0,0,0,45.18,54.77,45.46,52.15,6.666666666666667,1,1,0,0,9,6,5,1,2271.5,496232.38,186789.38,311469.13,23587.41,4637.6504 -15045,18518,33464,33463,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.6562128,8.7735271,0,16,1,23.734316,0,1,1,2019,7,0,58,50,1,0,0,12.908332,12.908332,0,0,0,0,0,1,1,0,2.4929397,0,45.46,52.15,45.18,54.77,6.666666666666667,1,1,0,0,9,6,5,1,2271.5,496232.38,186789.38,311469.13,23587.41,4637.6504 -15046,18519,33465,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1085.4121,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,0,1,1,1,224,-73453.539,0,0,0,314.43051 -15046,18520,33466,-9,33465,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1075.126,0,3,-9,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,26.42,28.78,-9,-9,0,1,1,0,1,0,1,1,1,287,209067.31,108968.84,0,0,1059.1057 -15047,18521,33467,33468,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,11,12,0,0,-9,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.69,40.5,39.61,50.97,8.333333333333334,1,1,0,0,9,10,1,0,392,-20540.094,0,0,0,709.81207 -15047,18521,33468,33467,-9,-9,1,0,40,0,0,0,3,3,-9,1,2,0,0,0,11,-12,0,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.61,50.97,48.69,40.5,6.666666666666667,1,1,0,0,0,10,1,0,392,-20540.094,0,0,0,709.81207 -15048,18522,33469,33471,-9,-9,1,0,27,1,2,0,2,2,-9,0,2,7.7949181,7.6206841,0,1,-2,16.276653,-9,-9,-9,2019,25,11,40,0,1,11,0,8.2613287,8.2613287,0,0,0,0,0,1,1,0,0,0,31,52.26,40.79,46.83,5,4,2,0,0,9,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 -15048,18522,33470,-9,33469,33471,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.72906,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 -15048,18522,33471,33469,-9,-9,1,1,29,1,2,0,1,1,-9,0,2,8.0321293,7.9883752,0,1,2,102.01086,-9,-9,-9,2019,15,5,38,0,1,5,0,8.5037622,8.5037622,0,0,0,0,0,1,1,0,0,0,40.79,46.83,31,52.26,0,1,1,0,0,5,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 -15048,18522,33472,-9,33469,33471,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1209.6047,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,6,4,0,593.75,154147.77,68341.047,107303.85,110648.18,2971.6973 -15049,18523,33473,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.8327742,9.0176744,7.9539833,0,0,-956.7785,0,3,3,2019,18,6,38,48,1,6,0,19.785372,19.785372,0,0,0,0,0,1,1,0,6.2368441,8.2258987,30.51,62.83,-9,-9,3.333333333333333,1,1,0,0,9,4,5,0,834,842077.88,337021.47,214250.08,0,4078.832 -15050,18524,33474,-9,33475,33476,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-825.36804,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,59.33,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,474,-73609.719,20120.602,194165.02,76024.5,2155.1104 -15050,18524,33475,33476,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,6.050241,6.2903476,0,24,0,-24.74238,0,3,1,2019,8,0,15,0,1,0,0,2.8308113,2.8308113,0,0,0,0,111,1,1,0,0,0,54.2,57.49,54,53,8.333333333333334,1,1,0,0,2,11,4,1,474,-73609.719,20120.602,194165.02,76024.5,2155.1104 -15050,18524,33476,33475,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3828392,8.1082468,0,25,0,-69.093109,0,3,2,2019,9,0,48,54,1,1,0,8.9292746,8.9292746,0,0,0,0,0,1,1,0,0,0,54,53,54.2,57.49,8,1,1,0,0,7,11,4,1,474,-73609.719,20120.602,194165.02,76024.5,2155.1104 -15050,18525,33477,-9,33475,33476,1,0,21,0,0,0,2,2,-9,1,5,6.2112904,6.0687284,0,0,0,-946.68927,0,2,2,2019,7,0,8,0,1,0,1,4.5963111,4.5963111,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,1,11,2,1,78,124466.77,0,0,0,709.65533 -15050,18526,33478,-9,33475,33476,1,0,19,0,0,0,2,2,1,0,4,6.3401775,6.8071151,0,0,0,-1049.7076,-9,2,2,2019,8,1,18,0,1,1,1,4.8879042,4.8879042,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,3,11,2,1,426,-149073,0,0,0,235.26172 -15051,18527,33479,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,6.9295278,7.2475533,0,0,0,-1025.4546,0,2,-9,2019,7,0,20,20,1,0,0,7.0172753,7.0172753,0,0,0,0,0,1,1,0,0,0,52.6,45.29,-9,-9,0,1,1,0,0,6,13,2,0,987.5,92524.57,57526.102,0,0,1442.5909 -15051,18527,33480,-9,33479,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.34723,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,987.5,92524.57,57526.102,0,0,1442.5909 -15052,18528,33481,-9,33482,33484,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-979.63684,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 -15052,18528,33482,33484,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.7218761,7.8664436,0,22,-4,-62.235466,0,-9,-9,2019,7,0,13,13,1,0,0,17.045931,17.045931,0,0,0,0,0,1,1,0,0,0,54.96,53.17,38.21,54.03,8.333333333333334,1,1,0,0,12,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 -15052,18528,33483,-9,33482,33484,1,1,17,0,1,1,3,0,0,0,5,0,0,0,0,0,-1073.2723,-9,2,2,2019,9,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.99,58.24,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 -15052,18528,33484,33482,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.7084761,8.4806995,0,22,4,-25.692936,0,3,3,2019,13,1,48,48,1,1,0,14.580637,14.580637,0,0,0,0,0,1,1,0,0,0,38.21,54.03,54.96,53.17,3.333333333333333,1,1,0,0,12,7,4,1,1275,80718.914,-4132.9922,509220.06,44238.512,3441.9504 -15053,18529,33485,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9101462,8.0784998,0,0,0,-888.32678,0,-9,2,2019,7,0,38,36,1,0,0,6.1119304,6.1119304,0,0,0,0,0,0,0,0,4.0176158,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,160,198015.23,46209.164,0,0,467.36093 -15054,18530,33486,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.8472142,8.379673,0,0,0,-951.79071,0,3,3,2019,27,11,21,21,1,11,0,15.275335,15.275335,0,0,0,0,0,0,0,0,0,0,37.38,48.9,-9,-9,5,1,1,0,0,8,12,4,0,505,286526.53,158804.53,0,0,1298.6713 -15055,18531,33487,-9,33488,33489,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.06506,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,2109.6667,137991.89,20774.467,0,0,2852.3472 -15055,18531,33488,33489,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,17,-4,-29.073906,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,56,8,2,3,0,0,0,8,2,0,2109.6667,137991.89,20774.467,0,0,2852.3472 -15055,18531,33489,33488,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.7809305,6.7076316,0,17,4,106.09447,0,-9,-9,2019,9,0,24,24,1,1,0,6.1451535,6.1451535,0,0,0,0,0,1,1,0,0,0,52,56,49,56,8,2,3,0,0,9,8,2,0,2109.6667,137991.89,20774.467,0,0,2852.3472 -15056,18532,33490,-9,33493,33491,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.7902,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 -15056,18532,33491,33493,-9,-9,1,1,47,0,2,0,1,1,-9,0,2,8.9801941,8.7033224,0,9,7,-80.578102,0,2,3,2019,13,1,53,53,1,1,0,14.657788,14.657788,0,0,0,0,0,1,1,0,5.2255712,0,25.47,52.18,51.03,47.33,6.666666666666667,1,1,0,0,10,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 -15056,18532,33492,-9,33493,33491,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4146,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 -15056,18532,33493,33491,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,9,-7,-67.722954,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,6.3608422,0,51.03,47.33,25.47,52.18,8.333333333333334,1,1,0,0,2,11,4,1,1155.5,363373.34,361734.41,112689.84,72142.938,3614.5681 -15057,18533,33494,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7352514,8.6846256,0,0,0,-921.2666,0,2,2,2019,16,4,39,38,1,4,0,21.048759,21.048759,0,0,0,0,0,1,1,0,.40843204,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,8,10,5,1,490,-167936.06,-824.81781,0,0,2011.7297 -15058,18534,33495,33497,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,9.172308,9.2275486,0,19,4,-46.204838,0,2,-9,2019,10,1,38,38,1,1,0,25.516293,25.516293,0,0,0,0,0,1,1,0,6.5265784,0,52.54,54.24,57.33,53.46,6.666666666666667,1,1,0,0,10,13,5,1,1274,810470.88,924410,110434.84,9370.7158,5619.4761 -15058,18534,33496,-9,33495,33497,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.43512,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1274,810470.88,924410,110434.84,9370.7158,5619.4761 -15058,18534,33497,33495,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.8853168,8.7933369,0,19,-4,57.288002,0,2,-9,2019,6,0,50,40,1,0,0,18.59149,18.59149,0,0,0,0,0,1,1,0,1.2594417,0,57.33,53.46,52.54,54.24,5,1,1,0,0,11,13,5,1,1274,810470.88,924410,110434.84,9370.7158,5619.4761 -15059,18535,33498,33500,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,8.9250526,8.8107729,0,6,3,-55.722603,0,3,3,2019,11,0,35,0,1,0,0,19.308319,19.308319,0,0,0,0,0,1,1,0,0,0,58.75,32.14,43.45,38.38,6.666666666666667,1,1,0,0,6,4,3,1,1807.3334,299084.31,304325.53,69900.805,39727.063,4239.813 -15059,18535,33499,-9,33500,33498,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.8728,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1807.3334,299084.31,304325.53,69900.805,39727.063,4239.813 -15059,18535,33500,33498,-9,-9,1,0,32,0,3,0,2,2,-9,1,2,6.4109755,6.1337342,0,6,-3,-127.66164,0,1,2,2019,14,3,19,12,1,3,0,3.0905073,3.0905073,0,0,0,0,107,1,1,0,0,0,43.45,38.38,58.75,32.14,8.333333333333334,1,1,0,0,5,4,3,1,1807.3334,299084.31,304325.53,69900.805,39727.063,4239.813 -15060,18536,33501,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-994.0473,-9,-9,-9,2019,30,12,0,0,2,12,0,0,0,0,0,0,0,0,1,1,0,0,0,17.8,66.2,-9,-9,3.333333333333333,1,1,0,0,3,12,1,0,279,-207039.11,0,0,0,345.09116 -15061,18537,33502,33503,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.3312006,8.0893183,0,3,-8,34.4119,0,2,2,2019,18,7,49,50,1,7,0,8.8156052,8.8156052,0,0,0,0,0,0,0,0,0,0,38.59,60.85,52.23,55.6,8.333333333333334,1,1,0,0,8,7,5,1,1222.5,165820.47,-1876.8828,0,0,3197.9761 -15061,18537,33503,33502,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5771904,8.542841,0,3,8,-85.200974,-9,-9,-9,2019,10,2,50,0,1,2,0,10.395541,10.395541,0,0,0,0,0,0,0,0,0,0,52.23,55.6,38.59,60.85,8.333333333333334,1,1,0,0,1,7,5,1,1222.5,165820.47,-1876.8828,0,0,3197.9761 -15062,18538,33504,33505,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.3627243,7.0160913,40,-2,-10.988097,0,-9,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.3820436,7.1556711,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,0,4,3,1,378,914712.88,602574.94,156365.92,0,3147.0596 -15062,18538,33505,33504,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8043799,7.7843757,41,2,15.464537,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2542453,7.7127404,57.33,53.46,54.2,57.49,10,1,1,0,0,0,4,3,1,378,914712.88,602574.94,156365.92,0,3147.0596 -15063,18539,33506,33507,-9,-9,1,1,45,0,0,0,1,1,-9,0,5,6.6535873,6.7475815,0,15,14,-61.066689,0,2,2,2019,8,1,8,65,1,1,0,11.65044,11.65044,0,0,0,0,0,0,0,0,7.249135,0,52.32,57.31,48,57,8.333333333333334,1,1,0,0,9,7,3,0,643,1555839,366798.13,850084.38,-11075.027,2015.1335 -15063,18539,33507,33506,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.8847876,7.5123038,0,7,-14,-106.47385,0,-9,-9,2019,11,0,37,45,1,2,0,7.494009,7.494009,0,0,0,0,0,0,0,0,0,0,48,57,52.32,57.31,7,3,4,0,0,1,7,3,0,643,1555839,366798.13,850084.38,-11075.027,2015.1335 -15064,18540,33508,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.4982977,6.1311474,0,0,-1083.2615,0,3,3,2019,9,0,0,37,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0727034,5.9901767,49.08,47.45,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,220,272246,223039.05,109467.34,0,1562.7073 -15065,18541,33509,-9,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,7.7710814,7.4768505,0,0,0,-934.93536,-9,-9,-9,2019,8,0,35,0,1,0,0,8.052968,8.052968,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,2,3,0,669,89504.039,10190.365,0,0,2382.2456 -15065,18541,33510,-9,33509,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.6622,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,669,89504.039,10190.365,0,0,2382.2456 -15066,18542,33511,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1171.0599,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.7,43.72,-9,-9,5,1,1,0,0,0,10,1,0,1321,11354.988,0,0,0,1307.8569 -15066,18543,33512,-9,33511,-9,1,0,28,0,0,0,2,2,-9,0,4,7.141181,7.60045,0,0,0,-985.06647,0,2,3,2019,11,0,48,50,1,2,1,3.7035482,3.7035482,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,0,1616,7091.4053,0,0,0,686.97076 -15066,18544,33513,-9,33511,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.26019,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,0,0,10,2,0,342,11687.803,0,0,0,0 -15066,18545,33514,-9,33511,-9,1,0,25,0,0,0,2,2,-9,0,4,8.1932993,7.9208241,0,0,0,-1015.442,0,3,-9,2019,11,0,37,20,1,2,1,8.5232821,8.5232821,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,4,0,941,141314.06,0,0,0,1788.6799 -15066,18546,33515,-9,33511,-9,1,1,23,0,0,0,2,2,-9,0,4,8.0082111,7.9068179,0,0,0,-1062.5752,0,2,3,2019,7,0,45,48,1,0,1,6.5577693,6.5577693,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,10,4,0,192,362927.03,0,0,0,1832.3413 -15067,18547,33516,33517,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.4239092,5.4233894,46,-1,12.012197,0,3,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.1910758,49.59,22.92,42.73,34.6,8.333333333333334,1,1,0,0,0,1,2,1,1637,216135.31,19561.395,0,0,956.20569 -15067,18547,33517,33516,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,3.6500235,3.7548978,46,1,-2.8142531,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,0,11.791232,0,0,1,1,0,1.1564302,3.658602,42.73,34.6,49.59,22.92,1.666666666666667,1,1,0,0,2,1,2,1,1637,216135.31,19561.395,0,0,956.20569 -15068,18548,33518,33520,-9,-9,1,0,54,0,1,0,2,2,-9,0,2,8.0461845,7.9051261,0,11,-1,-50.778164,0,-9,-9,2019,12,2,45,40,1,2,0,7.9666796,7.9666796,0,0,0,0,0,1,1,0,0,0,54.61,51.04,56.46,49.68,8.333333333333334,3,4,0,0,11,4,4,0,213.33333,217203.41,261429.81,224711.31,108768.53,3156.8843 -15068,18548,33519,-9,33518,33520,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-970.28748,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,4,4,0,213.33333,217203.41,261429.81,224711.31,108768.53,3156.8843 -15068,18548,33520,33518,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.4030695,8.3483286,0,11,1,-65.915916,0,2,2,2019,6,0,49,49,1,0,0,10.991682,10.991682,0,0,0,0,0,1,1,0,0,0,56.46,49.68,54.61,51.04,8.333333333333334,3,4,0,0,9,4,4,0,213.33333,217203.41,261429.81,224711.31,108768.53,3156.8843 -15068,18549,33521,-9,33518,33520,1,1,19,0,1,0,2,2,1,0,3,6.8423767,6.5783668,0,0,0,-908.86621,-9,2,2,2019,7,0,12,0,1,0,1,6.3858805,6.3858805,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,10,3,4,0,0,2,4,2,0,163,-584832.75,0,0,0,-210.6499 -15069,18550,33522,-9,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.0459919,7.1480255,0,0,0,-1005.5805,0,2,-9,2019,7,0,16,16,1,0,0,9.3038292,9.3038292,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,4,5,2,0,4043,18992.984,0,0,0,2771.7725 -15069,18550,33523,-9,33522,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.71472,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,5,2,0,4043,18992.984,0,0,0,2771.7725 -15070,18551,33524,33525,-9,-9,1,1,83,0,0,0,2,2,-9,0,1,0,6.8310156,6.6929345,6,-3,85.186218,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3831611,6.7034411,48.43,15.8,48.08,33.53,8.333333333333334,1,1,0,0,0,4,2,1,492,141087.53,97227.367,185956.44,0,1503.199 -15070,18551,33525,33524,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,6,3,-157.83066,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,10.267168,0,0,1,1,0,0,0,48.08,33.53,48.43,15.8,10,1,1,0,0,0,4,2,1,492,141087.53,97227.367,185956.44,0,1503.199 -15071,18552,33526,33527,-9,-9,1,0,45,0,0,0,3,3,-9,1,2,7.8251734,7.9386811,0,7,1,97.84803,0,3,3,2019,13,1,34,30,1,1,0,7.6227994,7.6227994,0,0,0,0,0,1,1,0,0,0,47.33,54.26,52,55,6.666666666666667,1,1,0,0,6,5,5,0,584.5,126932.16,-56232.395,0,0,3750.3433 -15071,18552,33527,33526,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.5008602,8.5097399,0,7,-1,13.998523,0,-9,-9,2019,9,0,70,60,1,1,0,7.1260414,7.1260414,0,0,0,0,0,1,1,0,0,0,52,55,47.33,54.26,8,1,1,0,0,1,5,5,0,584.5,126932.16,-56232.395,0,0,3750.3433 -15071,18553,33528,-9,33526,33527,1,1,22,0,0,0,2,2,-9,0,4,5.8680525,5.7122493,0,0,0,-1027.5703,0,3,2,2019,10,0,32,28,1,1,1,1.1663506,1.1663506,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,2,0,638,-298356.22,0,0,0,312.79474 -15071,18554,33529,-9,33526,33527,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1149.9608,-9,3,2,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,0,1146,491114.22,0,0,0,281.89926 -15072,18555,33530,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4536796,7.9993949,0,0,-916.15802,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.552932,7.5332546,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1700,884527.69,431412.13,8650.4902,0,2323.9219 -15073,18556,33531,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.4918461,8.4263487,0,0,0,-929.82257,0,2,1,2019,9,0,37,37,1,0,0,15.015158,15.015158,0,0,0,0,0,0,0,0,0,0,48.37,45.05,-9,-9,6.666666666666667,3,4,0,0,13,2,5,1,253,-142668.5,-141596.39,0,0,931.54071 -15074,18557,33532,-9,33534,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.87372,-9,2,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,6,3,0,651.66669,67193.719,13637.614,0,0,2207.0728 -15074,18557,33533,-9,33534,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.2209,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,6,3,0,651.66669,67193.719,13637.614,0,0,2207.0728 -15074,18557,33534,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.3109188,8.3109121,0,0,0,-871.96631,-9,2,-9,2019,17,6,37,0,1,6,0,9.14604,9.14604,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,3.333333333333333,1,1,0,0,1,6,3,0,651.66669,67193.719,13637.614,0,0,2207.0728 -15075,18558,33535,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,0,0,0,0,0,-848.2619,0,3,3,2019,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40.26,64.39,-9,-9,3.333333333333333,2,3,1,0,1,6,1,1,717,-147458.8,0,0,0,0 -15076,18559,33536,-9,33537,33538,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.0679,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,607.33331,153390.45,67306.508,173032.47,96957.938,2975.2209 -15076,18559,33537,33538,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.3727326,7.5415421,0,19,0,24.021585,0,2,2,2019,22,10,25,21,1,10,0,6.2270279,6.2270279,0,0,0,0,0,1,1,0,0,0,25.03,56.31,52.48,54.33,3.333333333333333,1,1,0,0,9,4,4,1,607.33331,153390.45,67306.508,173032.47,96957.938,2975.2209 -15076,18559,33538,33537,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.3390427,8.6413918,0,19,0,38.913074,0,2,2,2019,14,4,37,37,1,4,0,16.190588,16.190588,0,0,0,0,0,1,1,0,0,0,52.48,54.33,25.03,56.31,6.666666666666667,1,1,0,0,11,4,4,1,607.33331,153390.45,67306.508,173032.47,96957.938,2975.2209 -15077,18560,33539,33540,-9,-9,1,1,29,1,3,0,2,2,-9,0,4,0,0,0,4,0,0,0,2,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,47,57,7,1,1,1,0,1,1,1,0,1236,0,0,0,0,2329.0701 -15077,18560,33540,33539,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,0,0,0,4,0,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,49,58,7,1,1,1,0,1,1,1,0,1236,0,0,0,0,2329.0701 -15077,18560,33541,-9,33540,33539,1,1,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1064.2499,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,1,0,1236,0,0,0,0,2329.0701 -15077,18560,33542,-9,33540,33539,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-922.13879,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,1236,0,0,0,0,2329.0701 -15077,18560,33543,-9,33540,33539,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-916.61395,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,1236,0,0,0,0,2329.0701 -15078,18561,33544,33546,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,6.7557235,6.7132154,0,23,0,-33.524529,0,3,3,2019,6,0,12,12,1,0,0,9.3166857,9.3166857,0,0,0,0,0,0,0,0,2.3464117,0,60.13,49.27,45.82,54.73,8.333333333333334,1,1,0,0,11,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 -15078,18561,33545,-9,33544,33546,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.3612,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 -15078,18561,33546,33544,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,9.55128,9.458827,0,25,0,-56.570156,0,2,1,2019,11,0,50,46,1,0,0,30.679274,30.679274,0,0,0,0,0,0,0,0,4.1533742,0,45.82,54.73,60.13,49.27,6.666666666666667,1,1,0,0,10,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 -15078,18561,33547,-9,33544,33546,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.03961,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 -15078,18561,33548,-9,33544,33546,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.9109,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,733.59998,2433487.8,717277.38,1775993.8,809024.25,5267.1841 -15079,18562,33549,33550,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3138342,8.2549963,0,7,5,-82.691368,0,-9,-9,2019,9,0,40,40,1,1,0,14.072671,14.072671,0,0,0,0,0,1,1,0,3.2512038,0,54,54,43.18,14.61,8,2,3,0,0,1,8,4,1,2550,1780126,1092973.3,444737.13,0,2373.5364 -15079,18562,33550,33549,-9,-9,1,0,50,0,0,0,3,3,-9,1,1,0,0,0,32,-5,41.800114,0,3,3,2019,17,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,.70578802,0,43.18,14.61,54,54,3.333333333333333,2,3,0,0,0,8,4,1,2550,1780126,1092973.3,444737.13,0,2373.5364 -15079,18563,33551,33552,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.9613981,8.1128817,0,2,0,21.732468,0,-9,-9,2019,11,0,35,35,1,2,0,7.1641464,7.1641464,0,0,0,0,0,1,1,0,0,0,47,57,49,58,7,4,2,0,0,1,8,4,1,530.5,135973.7,0,0,0,2211.7446 -15079,18563,33552,33551,33550,33549,1,1,27,0,0,0,2,2,-9,0,4,7.4299068,7.4779878,0,2,0,22.992329,0,3,2,2019,10,0,40,37,1,1,0,4.6100245,4.6100245,0,0,0,0,0,1,1,0,0,0,49,58,47,57,7,2,3,0,0,1,8,4,1,530.5,135973.7,0,0,0,2211.7446 -15079,18564,33553,-9,33550,33549,1,1,25,0,0,0,2,2,-9,0,4,7.5312333,7.5693412,0,0,0,-908.66046,0,3,2,2019,10,0,40,35,1,1,1,5.3520174,5.3520174,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,3,1,1090,377068.53,45787.859,0,0,653.9292 -15079,18565,33554,-9,33550,33549,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-863.61823,-9,3,2,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,1,5026,-13635.171,0,0,0,0 -15080,18566,33555,-9,33556,33557,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.72479,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,5,1,1146.6666,63885.652,-20314.297,159894.23,119977.29,5723.144 -15080,18566,33556,33557,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,8.9560089,9.0236931,0,3,-6,-7.8228064,0,-9,-9,2019,12,3,20,40,1,3,0,44.879807,44.879807,0,0,0,0,0,1,1,0,0,0,55.54,46.02,46.33,55.93,10,1,1,0,0,12,4,5,1,1146.6666,63885.652,-20314.297,159894.23,119977.29,5723.144 -15080,18566,33557,33556,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,8.9117651,8.5433674,0,3,6,-79.236191,0,-9,-9,2019,12,1,50,55,1,1,0,14.221998,14.221998,0,0,0,0,0,1,1,0,2.9000709,0,46.33,55.93,55.54,46.02,8.333333333333334,1,1,0,0,3,4,5,1,1146.6666,63885.652,-20314.297,159894.23,119977.29,5723.144 -15081,18567,33558,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.5843239,9.0243082,6.0374599,0,0,-940.06647,0,2,3,2019,8,0,50,43,1,0,0,12.313124,12.313124,0,0,0,0,0,0,0,0,6.4975872,0,49,55,-9,-9,5,1,1,0,0,8,7,4,0,1064.3334,213824.31,8362.5586,264330.81,11489.013,2494.7766 -15081,18567,33559,-9,33558,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.548,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,1064.3334,213824.31,8362.5586,264330.81,11489.013,2494.7766 -15081,18567,33560,-9,33558,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1082.7983,-9,2,-9,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,1064.3334,213824.31,8362.5586,264330.81,11489.013,2494.7766 -15082,18568,33561,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,8.2048273,7.6538119,0,0,-1002.2474,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.0028452,8.1885166,57.16,56.15,-9,-9,10,1,1,0,0,3,2,4,1,3466,572472.56,516653.69,150146.05,0,2697.2751 -15083,18569,33562,33565,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.770843,7.6281047,0,8,-7,10.47431,0,-9,-9,2019,9,0,31,33,1,0,0,8.2346983,8.2346983,0,0,0,0,0,1,1,0,3.2509379,0,59.43,58.05,57.33,53.46,10,1,1,0,0,9,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 -15083,18569,33563,-9,33562,33565,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-892.9502,-9,2,2,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.2354102,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 -15083,18569,33564,-9,33562,33565,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.541,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 -15083,18569,33565,33562,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.668982,6.7050118,0,8,7,26.164057,0,2,-9,2019,12,0,30,32,1,0,0,3.1525896,3.1525896,0,0,0,0,0,1,1,0,5.442668,0,57.33,53.46,59.43,58.05,8.333333333333334,1,1,0,0,10,4,3,1,767.75,491147.06,140523.84,74027.281,17350.641,1583.2079 -15084,18570,33566,33568,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.1400452,7.1428623,0,18,-1,105.10478,-9,2,2,2019,9,1,2,0,1,1,0,76.15461,76.15461,0,0,0,0,0,1,1,0,0,0,55.36,51.57,46.33,55.93,8.333333333333334,1,1,0,0,10,4,5,1,491.66666,380450.66,351011.66,224751.11,144493.48,3774.4785 -15084,18570,33567,-9,33566,33568,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-929.88824,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,1,4,5,1,491.66666,380450.66,351011.66,224751.11,144493.48,3774.4785 -15084,18570,33568,33566,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.2034664,9.322298,0,1,1,-75.043556,-9,-9,-9,2019,8,0,40,0,1,0,0,28.011347,28.011347,0,0,0,0,0,1,1,0,0,0,46.33,55.93,55.36,51.57,6.666666666666667,1,1,0,0,10,4,5,1,491.66666,380450.66,351011.66,224751.11,144493.48,3774.4785 -15085,18571,33569,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,7.1684461,7.2340088,5.3788562,0,0,-1047.5343,0,1,1,2019,6,0,5,5,1,0,0,31.42317,31.42317,0,0,0,0,0,1,1,0,7.3825822,5.1415091,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,560,507326.34,223772.77,0,0,2121.4939 -15086,18572,33570,33571,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.9885211,7.8534122,0,8,2,81.737663,0,3,3,2019,15,3,38,38,1,3,0,10.007095,10.007095,0,0,0,0,0,0,0,0,3.8929744,0,47.93,45.76,52,54.51,3.333333333333333,1,1,0,0,9,6,4,1,329,680856.56,94248.172,212038.94,0,2407.6221 -15086,18572,33571,33570,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.8448319,7.7493138,0,8,-2,-50.173248,0,3,3,2019,8,0,25,20,1,0,0,12.157927,12.157927,0,0,0,0,0,0,0,0,0,0,52,54.51,47.93,45.76,8.333333333333334,1,1,0,0,9,6,4,1,329,680856.56,94248.172,212038.94,0,2407.6221 -15087,18573,33572,33573,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3248892,8.9640207,7.7137017,9,2,28.994038,0,-9,-9,2019,9,0,40,20,1,1,0,13.735929,13.735929,0,0,0,0,0,0,0,0,0,7.6803579,53,54,53.23,55.33,8,1,1,0,0,1,10,5,1,1993,3082033,1723479.1,717765.13,0,3869.0757 -15087,18573,33573,33572,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,0,0,0,36,-2,-234.55321,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,0,0,0,7.4859095,0,53.23,55.33,53,54,8.333333333333334,1,1,0,0,0,10,5,1,1993,3082033,1723479.1,717765.13,0,3869.0757 -15088,18574,33574,-9,33576,33575,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-973.94788,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 -15088,18574,33575,33576,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6783485,8.770133,0,17,0,-12.514304,0,3,3,2019,7,0,47,47,1,0,0,11.031641,11.031641,0,0,0,0,0,1,1,0,0,0,58.72,51.29,41.47,58.08,8.333333333333334,1,1,0,0,9,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 -15088,18574,33576,33575,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.6782837,8.5152884,0,17,0,-83.117844,0,2,3,2019,15,2,48,40,1,2,0,15.387373,15.387373,0,0,0,0,0,1,1,0,0,0,41.47,58.08,58.72,51.29,3.333333333333333,1,1,0,0,13,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 -15088,18574,33577,-9,33576,33575,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1067.3875,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,6,-9,0,0,11,5,1,836,1025382.7,753851.56,174647.3,117357.03,4437.6357 -15089,18575,33578,33580,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,7.7533336,7.8015389,0,13,5,-62.004322,0,-9,3,2019,24,10,36,39,1,10,0,7.1208096,7.1208096,0,0,0,0,0,1,1,0,0,0,27.95,52.49,44.08,52.7,3.333333333333333,1,1,0,0,11,12,3,0,431,14526.023,27465.5,0,0,2309.6675 -15089,18575,33579,-9,33580,33578,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1144.156,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,3,0,431,14526.023,27465.5,0,0,2309.6675 -15089,18575,33580,33578,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.8568306,8.0567122,0,13,-5,21.404003,0,3,2,2019,12,0,39,42,1,0,0,8.8500748,8.8500748,0,0,0,0,0,1,1,0,0,0,44.08,52.7,27.95,52.49,6.666666666666667,1,1,0,0,3,12,3,0,431,14526.023,27465.5,0,0,2309.6675 -15089,18576,33581,-9,33580,33578,1,1,19,0,1,0,2,2,1,0,2,7.1507154,6.9450135,0,0,0,-960.64722,-9,2,2,2019,12,0,16,0,1,0,1,8.8104277,8.8104277,0,0,0,0,0,1,1,0,0,0,46.04,41.36,-9,-9,5,1,1,0,0,1,12,3,0,352,79899.164,56253.465,0,0,784.49292 -15090,18577,33582,33583,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0185976,8.336216,0,8,-8,-45.81234,0,3,3,2019,12,1,37,37,1,1,0,11.671486,11.671486,0,0,0,0,7,0,0,0,2.6566606,0,47.43,48.51,52,54.51,8.333333333333334,1,1,0,0,9,1,4,1,358.5,407740.31,255319.95,171486.16,0,2426.2993 -15090,18577,33583,33582,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.6721821,8.0633354,8,8,-42.028595,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.1977735,7.3860455,52,54.51,47.43,48.51,1.666666666666667,1,1,0,0,9,1,4,1,358.5,407740.31,255319.95,171486.16,0,2426.2993 -15091,18578,33584,33585,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.2232256,8.2892456,0,7,5,63.582306,0,2,2,2019,6,0,40,-9,1,0,0,11.253276,11.253276,0,0,0,0,0,0,0,0,2.737421,0,62.39,56.71,58.48,28.63,8.333333333333334,1,1,0,0,8,12,5,1,1324,756496.44,618139.13,213235.59,63888.734,3830.02 -15091,18578,33585,33584,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.7812304,7.7898641,0,7,-5,53.882473,0,3,3,2019,10,2,30,30,1,2,0,10.190294,10.190294,0,0,0,0,0,0,0,0,0,0,58.48,28.63,62.39,56.71,8.333333333333334,1,1,0,0,7,12,5,1,1324,756496.44,618139.13,213235.59,63888.734,3830.02 -15092,18579,33586,33587,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,4.7219529,4.5693293,6,-1,76.66478,0,3,3,2019,4,0,0,18,4,0,0,0,0,0,0,0,0,2,0,0,0,5.1684875,4.6039381,61.68,49.95,59.54,48.41,10,1,1,0,0,7,12,3,1,275.5,233251.5,185553.44,72945.984,69424.914,2062.4717 -15092,18579,33587,33586,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.1849356,8.0916624,6,1,46.983276,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,6.2079897,8.115551,59.54,48.41,61.68,49.95,10,1,1,0,0,4,12,3,1,275.5,233251.5,185553.44,72945.984,69424.914,2062.4717 -15092,18580,33588,-9,33586,33587,1,1,25,0,0,0,1,1,-9,0,4,8.4195595,8.5003891,0,0,0,-1017.8624,0,3,1,2019,10,0,40,36,1,1,0,15.862744,15.862744,0,0,0,0,0,0,0,0,1.4719299,0,49,58,-9,-9,7,1,1,0,0,1,12,5,1,429,-86130.039,0,0,0,1684.4553 -15093,18581,33589,33590,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,6,-4,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.68,25.79,8.333333333333334,1,1,0,0,0,2,1,0,139.5,450717.31,-22024.133,264183.91,0,1040.1028 -15093,18581,33590,33589,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,6,4,0,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.5385837,0,50.68,25.79,54.79,55.86,8.333333333333334,1,1,0,0,0,2,1,0,139.5,450717.31,-22024.133,264183.91,0,1040.1028 -15094,18582,33591,33592,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6437697,7.6294279,0,28,1,63.06546,0,2,3,2019,13,2,24,24,1,2,0,8.889658,8.889658,0,0,0,0,0,0,0,0,0,0,44.66,57.83,55.36,51.57,8.333333333333334,1,1,0,0,11,12,4,1,1810.5,253571.63,121346.82,177172.38,86495.953,2729.9287 -15094,18582,33592,33591,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.0292416,8.145606,0,28,-1,37.022377,0,3,3,2019,8,1,54,54,1,1,0,6.934473,6.934473,0,0,0,0,0,0,0,0,0,0,55.36,51.57,44.66,57.83,8.333333333333334,1,1,0,0,8,12,4,1,1810.5,253571.63,121346.82,177172.38,86495.953,2729.9287 -15094,18583,33593,-9,33591,33592,1,0,23,0,0,0,2,2,-9,0,4,7.6486988,7.568213,0,0,0,-1082.2426,0,2,3,2019,9,2,35,40,1,2,1,6.8131704,6.8131704,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,1143,38490.199,0,0,0,782.3299 -15094,18584,33594,-9,33591,33592,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-972.03076,-9,2,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,220,-432094.28,0,0,0,281.87305 -15095,18585,33595,33596,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.2662215,6.2145329,51,5,-4.4364543,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1472812,56.99,32.56,60.29,52.11,6.666666666666667,1,1,0,0,0,2,2,1,478,280050.44,46064.348,63827.457,0,1371.069 -15095,18585,33596,33595,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-5,-37.623104,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,56.99,32.56,8.333333333333334,1,1,0,0,3,2,2,1,478,280050.44,46064.348,63827.457,0,1371.069 -15096,18586,33597,33598,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,5.4475226,5.3527842,6,2,-165.45505,0,3,2,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.2358754,5.3228593,59.84,49.54,53,45,8.333333333333334,1,1,0,0,0,12,2,1,535,322603.53,14613.671,278155.69,0,1902.816 -15096,18586,33598,33597,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,6,-2,176.29251,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,5.1464062,0,0,1,1,0,1.8438513,0,53,45,59.84,49.54,8,1,1,0,0,2,12,2,1,535,322603.53,14613.671,278155.69,0,1902.816 -15097,18587,33599,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,8.0414906,7.898056,0,0,-1054.9053,1,2,2,2019,6,0,0,56,2,0,0,0,0,0,0,0,0,0,0,0,0,7.7847929,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,8,10,3,0,174,535626.63,562600.75,161081.8,50299.055,1762.7576 -15098,18588,33600,33601,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.0634046,5.9117546,8,-8,5.7255139,0,2,2,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,6.2957454,6.065558,31.92,55.57,54.28,36.25,6.666666666666667,1,1,0,0,0,4,3,1,924.5,703330,675453.13,89428.242,26473.742,2783.7229 -15098,18588,33601,33600,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.8841186,7.9659667,8,8,-30.7248,0,2,2,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,8.0331049,54.28,36.25,31.92,55.57,8.333333333333334,1,1,0,0,0,4,3,1,924.5,703330,675453.13,89428.242,26473.742,2783.7229 -15099,18589,33602,33603,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.9251738,9.1213627,0,24,7,76.302216,0,3,2,2019,12,1,48,50,1,1,0,18.923155,18.923155,0,0,0,0,0,0,0,0,0,0,42.34,41.84,53.53,51,6.666666666666667,1,1,0,0,8,2,5,1,647.5,70982.133,0,0,0,3773.7444 -15099,18589,33603,33602,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0476122,7.7960854,0,23,-7,-9.8796587,0,3,3,2019,7,0,36,37,1,0,0,12.219589,12.219589,0,0,0,0,0,0,0,0,0,0,53.53,51,42.34,41.84,8.333333333333334,1,1,0,0,8,2,5,1,647.5,70982.133,0,0,0,3773.7444 -15100,18590,33604,33605,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.2995596,7.6706505,0,9,-1,36.012253,0,-9,-9,2019,11,1,24,28,1,1,0,12.38343,12.38343,0,0,0,0,2,0,0,0,8.3470459,0,51.73,58.82,57.06,57.76,8.333333333333334,1,1,0,0,8,10,5,1,338.5,1173912.1,863511.13,382988.44,232559.44,13602.185 -15100,18590,33605,33604,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.5891581,9.6416149,0,29,1,-25.419954,0,2,2,2019,4,0,54,40,1,0,0,33.655853,33.655853,0,0,0,0,2,0,0,0,10.448181,0,57.06,57.76,51.73,58.82,8.333333333333334,1,1,0,0,10,10,5,1,338.5,1173912.1,863511.13,382988.44,232559.44,13602.185 -15101,18591,33606,33607,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.8702025,7.1385355,55,0,62.304752,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,2.0559897,0,2,1,1,0,0,7.2397995,57.51,47.91,59.53,56.44,10,1,1,0,0,0,10,3,1,868,1052639.3,559689,191521.03,0,2494.3936 -15101,18591,33607,33606,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.7933898,8.2168837,55,0,-22.461937,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.3607309,7.6744781,59.53,56.44,57.51,47.91,10,1,1,0,0,0,10,3,1,868,1052639.3,559689,191521.03,0,2494.3936 -15102,18592,33608,33609,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.1858921,8.7594528,0,7,-1,-19.354662,0,2,1,2019,11,0,42,42,1,0,0,20.406475,20.406475,0,0,0,0,0,0,0,0,7.9609499,0,45.85,61.26,33.18,60.48,3.333333333333333,1,1,0,0,10,9,5,0,632,1498052.8,617417.25,415852.56,0,4635.7046 -15102,18592,33609,33608,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.4537511,7.363028,0,7,1,-8.3028383,0,-9,3,2019,15,4,27,22,1,4,0,8.8183985,8.8183985,0,0,0,0,0,0,0,0,3.1968963,0,33.18,60.48,45.85,61.26,1.666666666666667,1,1,0,0,10,9,5,0,632,1498052.8,617417.25,415852.56,0,4635.7046 -15103,18593,33610,33611,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.7315245,7.7559323,0,39,-1,-48.807392,0,2,2,2019,13,1,42,42,1,1,0,7.3537765,7.3537765,0,0,0,0,7,0,0,0,3.9772482,0,43.24,49.48,57.75,41.31,8.333333333333334,1,1,0,0,7,2,5,1,643,1293316.3,1124421.8,216736.34,50155.016,3316.8628 -15103,18593,33611,33610,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.5734034,8.9042435,0,39,1,-112.59054,0,2,3,2019,9,1,50,49,1,1,0,14.296232,14.296232,0,0,0,0,0,0,0,0,4.2836542,0,57.75,41.31,43.24,49.48,6.666666666666667,1,1,0,0,9,2,5,1,643,1293316.3,1124421.8,216736.34,50155.016,3316.8628 -15104,18594,33612,33613,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,46,-2,-16.704758,0,3,-9,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,1.3618965,0,43.84,37.7,55.12,39.6,5,1,1,0,0,0,5,3,1,393,700764.88,386250.56,-27837.152,0,2564.4028 -15104,18594,33613,33612,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.754488,7.7708383,46,2,37.704327,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.1123827,7.9793739,55.12,39.6,43.84,37.7,6.666666666666667,1,1,0,0,4,5,3,1,393,700764.88,386250.56,-27837.152,0,2564.4028 -15105,18595,33614,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,0,0,0,0,0,-983.76636,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.63,43.4,-9,-9,8.333333333333334,1,1,1,0,1,7,1,0,823,-594682.5,0,0,0,489.58081 -15105,18596,33615,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,6.9220805,7.1441031,0,0,-983.07629,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.0656476,36.55,51.41,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,1151,57801.992,134578.28,0,0,800.78278 -15105,18597,33616,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,0,0,-884.76788,-9,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.9,39.46,-9,-9,3.333333333333333,1,1,1,0,0,7,1,0,650,-115015.09,0,0,0,1232.4464 -15105,18598,33617,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.9808578,8.0589943,0,0,0,-991.18561,0,-9,-9,2019,3,0,60,0,1,0,0,5.8550515,5.8550515,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,7,4,0,273,163331.73,99812.305,0,0,788.24347 -15106,18599,33618,33619,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.7041025,7.2395272,50,7,34.035297,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.1039066,6.9177814,55.53,51.55,54.26,30.29,8.333333333333334,1,1,0,0,0,7,2,1,590.5,958435,199409.55,832298.75,0,1869.6163 -15106,18599,33619,33618,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,5.643404,5.4842043,50,-7,-77.084435,0,1,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1385617,6.0247116,54.26,30.29,55.53,51.55,8.333333333333334,1,1,0,0,4,7,2,1,590.5,958435,199409.55,832298.75,0,1869.6163 -15106,18600,33620,-9,33619,33618,1,1,36,0,0,0,2,2,-9,0,3,8.0622025,8.0524483,0,0,0,-929.44781,0,1,2,2019,11,0,37,37,1,0,0,11.192619,11.192619,0,0,0,0,0,1,1,0,0,0,56.07,49.95,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,567,171173.92,93136.586,0,0,1248.1085 -15107,18601,33621,33622,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,8.0147934,9.2082386,8.7837877,4,2,-100.47086,0,3,2,2019,8,0,28,29,1,0,0,11.232181,11.232181,0,0,0,0,0,1,1,0,7.1962199,8.6672564,60.02,56.42,60.3,46.58,8.333333333333334,1,1,0,0,6,10,5,1,800.5,1832401.3,1315815,362064.41,0,4354.875 -15107,18601,33622,33621,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.7358017,5.0455804,4,-2,-20.925993,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.1482563,5.3683,60.3,46.58,60.02,56.42,6.666666666666667,1,1,0,0,3,10,5,1,800.5,1832401.3,1315815,362064.41,0,4354.875 -15107,18602,33623,-9,33622,33621,1,0,19,0,0,0,2,2,-9,0,5,7.1724725,7.191606,0,0,0,-996.25519,0,2,2,2019,11,2,38,40,1,2,0,4.1270614,4.1270614,0,0,0,0,0,1,1,0,0,0,31.3,62.97,-9,-9,6.666666666666667,1,1,0,0,3,10,3,1,244,393760.84,0,0,0,1657.4232 -15108,18603,33624,33625,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.8641281,8.9650812,0,40,-1,-211.73874,0,-9,2,2019,8,0,45,40,1,0,0,16.778702,16.778702,0,0,0,0,0,0,0,0,.79248613,0,62.39,56.71,45.85,61.26,8.333333333333334,1,1,0,0,12,9,5,1,634,2428417.5,1453804.9,675225.5,0,2554.3467 -15108,18603,33625,33624,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,40,1,-36.095772,0,2,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,2,0,0,0,1.8622864,0,45.85,61.26,62.39,56.71,6.666666666666667,1,1,0,0,10,9,5,1,634,2428417.5,1453804.9,675225.5,0,2554.3467 -15109,18604,33626,-9,33627,33628,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-914.65057,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,927.66669,140298.88,62796.23,139092.8,71818.625,3197.895 -15109,18604,33627,33628,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.4904432,8.5191784,0,12,-1,-73.877563,0,2,1,2019,10,0,36,57,1,0,0,11.966147,11.966147,0,0,0,0,0,1,1,0,0,0,49.41,58.28,34.65,58.34,8.333333333333334,1,1,0,0,9,7,4,1,927.66669,140298.88,62796.23,139092.8,71818.625,3197.895 -15109,18604,33628,33627,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,8.0140553,8.1823444,0,12,1,-108.58408,0,2,3,2019,11,0,42,45,1,0,0,10.343259,10.343259,0,0,0,0,0,1,1,0,0,0,34.65,58.34,49.41,58.28,8.333333333333334,1,1,0,0,8,7,4,1,927.66669,140298.88,62796.23,139092.8,71818.625,3197.895 -15110,18605,33629,33630,33631,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.1307549,7.3246317,40,1,-49.754105,0,2,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4335575,7.1010027,58.32,50.22,57.92,51.82,8.333333333333334,2,3,0,0,1,5,4,1,1044,1064206.1,506656.38,656328.38,253157.36,2734.0505 -15110,18605,33630,33629,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5376949,8.5565138,0,40,-1,-51.175476,0,-9,-9,2019,11,0,25,40,1,0,0,29.137388,29.137388,0,0,0,0,2,1,1,0,0,0,57.92,51.82,58.32,50.22,8.333333333333334,2,3,0,0,10,5,4,1,1044,1064206.1,506656.38,656328.38,253157.36,2734.0505 -15110,18606,33631,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1050.3724,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,4,6,0,0,0,5,1,1,637,87481.742,0,0,0,897.80322 -15111,18607,33632,-9,33634,33633,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.19427,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,503.66666,266875.53,0,206022.38,27731.475,2816.771 -15111,18607,33633,33634,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.8005619,8.5941715,0,9,4,4.3438964,0,-9,-9,2019,8,0,41,39,1,0,0,14.993479,14.993479,0,0,0,0,0,1,1,0,5.6906338,0,57.03,48.06,48.48,55.86,8.333333333333334,1,1,0,0,10,10,4,1,503.66666,266875.53,0,206022.38,27731.475,2816.771 -15111,18607,33634,33633,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.8197088,7.1930394,0,9,-4,5.8542089,0,2,2,2019,11,0,37,20,1,0,0,4.5143251,4.5143251,0,0,0,0,0,1,1,0,0,0,48.48,55.86,57.03,48.06,6.666666666666667,1,1,0,0,10,10,4,1,503.66666,266875.53,0,206022.38,27731.475,2816.771 -15112,18608,33635,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.179388,9.0001402,0,0,0,-990.60657,0,2,3,2019,19,6,39,38,1,6,0,24.166082,24.166082,0,0,0,0,0,0,0,0,9.2581682,0,41.65,54.87,-9,-9,6.666666666666667,1,1,0,0,9,4,5,1,123,1181192.9,988057.56,386286.16,0,6024.188 -15113,18609,33636,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.7564583,7.4907107,0,0,-1015.4548,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.8750273,7.6030078,59.14,52.5,-9,-9,10,1,1,0,0,6,8,3,0,796,871221.38,218214.98,463710.13,0,1821.5844 -15114,18610,33637,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-964.39514,0,2,-9,2019,30,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,31.52,30.57,-9,-9,3.333333333333333,1,1,0,0,7,4,1,0,314,-218868.5,0,0,0,1054.5157 -15115,18611,33638,33639,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,3,2,0,0,3,3,2019,21,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,46.17,13.25,49.29,54.59,6.666666666666667,1,1,0,0,0,13,1,0,1009.5,337474.63,0,0,0,1624.4209 -15115,18611,33639,33638,-9,-9,1,1,53,0,0,0,3,3,-9,1,3,0,0,0,3,-2,0,0,3,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,49.29,54.59,46.17,13.25,6.666666666666667,1,1,0,0,0,13,1,0,1009.5,337474.63,0,0,0,1624.4209 -15116,18612,33640,33641,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,7,8,30.72897,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,1,0,0,0,0,0,0,0,.030329842,0,49,48,40.64,52.96,8.333333333333334,2,3,0,0,11,6,3,1,446.5,840884.88,26241.551,248790.97,0,706.82886 -15116,18612,33641,33640,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.7492356,7.558238,0,7,-8,-23.402147,0,2,2,2019,12,0,35,21,1,0,0,7.9498572,7.9498572,0,0,0,0,0,0,0,0,.19114684,0,40.64,52.96,49,48,8.333333333333334,1,1,0,0,12,6,3,1,446.5,840884.88,26241.551,248790.97,0,706.82886 -15117,18613,33642,33643,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.7785554,5.5744367,11,0,18.08032,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,2.5604436,5.5704012,48.54,41.09,53.63,38.81,3.333333333333333,1,1,0,0,0,1,2,1,566.5,1040228.8,289634.31,248583.28,0,2635.5051 -15117,18613,33643,33642,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.3235736,7.1909375,11,9,50.293892,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5269523,7.6361799,53.63,38.81,48.54,41.09,8.333333333333334,1,1,0,0,0,1,2,1,566.5,1040228.8,289634.31,248583.28,0,2635.5051 -15118,18614,33644,33645,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,42,3,19.614176,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,43.34,55.12,47.86,10,1,1,0,0,8,4,3,0,1835.5,613393.13,446245.56,209577.73,0,2110.9272 -15118,18614,33645,33644,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.251791,8.2650175,5.770628,43,-3,177.59076,0,3,3,2019,6,0,44,44,1,0,0,9.2722559,9.2722559,0,0,0,0,0,1,1,0,0,5.9913855,55.12,47.86,61.43,43.34,0,1,1,0,0,10,4,3,0,1835.5,613393.13,446245.56,209577.73,0,2110.9272 -15119,18615,33646,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.7996988,8.1158714,5.6593761,0,0,-1007.7339,-9,3,3,2019,15,3,21,0,1,3,0,11.316204,11.316204,0,0,0,0,0,1,1,0,0,5.9856339,37.52,46.6,-9,-9,5,1,1,0,0,9,4,3,1,437,313405.44,118353.36,265627.28,0,880.13617 -15119,18616,33647,-9,33646,-9,1,0,24,0,0,0,1,1,-9,0,4,0,4.5084853,4.7990813,0,0,-896.70404,-9,3,-9,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,4.8776798,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,1,0,4,2,1,393,161615.8,0,0,0,830.22449 -15120,18617,33648,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,1,7.5494027,7.5757461,0,0,0,-913.57721,0,2,3,2019,22,7,35,28,1,7,0,5.6064248,5.6064248,0,0,0,0,0,0,0,0,0,0,25.49,48.49,-9,-9,1.666666666666667,1,1,0,0,5,5,3,0,1044,244431.56,62787.895,0,0,1369.4661 -15120,18618,33649,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.2130771,6.9714513,0,0,0,-994.72601,0,-9,-9,2019,6,0,30,25,1,0,0,4.6161098,4.6161098,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,3,5,3,0,415,355155.56,0,0,0,598.92438 -15120,18619,33650,-9,-9,-9,1,1,18,0,0,0,2,2,-9,0,1,6.3647199,6.4149489,0,0,0,-999.17499,0,-9,-9,2019,27,11,30,0,1,11,0,2.4817169,2.4817169,0,0,0,0,0,0,0,0,0,0,23.39,37.02,-9,-9,0,1,1,0,0,1,5,2,0,486,-106369.88,0,0,0,300.79831 -15121,18620,33651,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1145.3339,0,3,3,2019,20,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,32.71,37.94,-9,-9,0,1,1,0,0,0,10,1,0,633,167821.95,184751.95,0,0,1924.9243 -15122,18621,33652,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1015.6611,0,-9,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,29.12,34.24,-9,-9,5,1,1,0,0,0,4,1,0,575,-155914.84,-58406.844,0,0,788.52142 -15123,18622,33653,33654,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7396183,9.3034763,0,3,5,-32.434986,0,1,2,2019,9,1,32,43,1,1,0,18.16139,18.16139,0,0,0,0,14.5,0,0,0,7.6052604,0,54.1,59.11,52.2,32.02,8.333333333333334,1,1,0,0,7,9,5,0,773,213349.16,56054.43,232505.98,174554.88,5045.6416 -15123,18622,33654,33653,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,8.4851065,8.5412178,0,3,-5,-5.670239,0,-9,-9,2019,13,2,49,60,1,2,0,13.147394,13.147394,0,0,0,0,0,0,0,0,0,0,52.2,32.02,54.1,59.11,8.333333333333334,1,1,0,0,3,9,5,0,773,213349.16,56054.43,232505.98,174554.88,5045.6416 -15124,18623,33655,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.189889,7.7206969,0,0,0,-986.89606,0,-9,-9,2019,12,0,43,41,1,0,0,8.6653128,8.6653128,0,0,0,0,0,0,0,0,7.3732095,0,41,56.99,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,54,-275360.72,-56856.379,0,0,1593.2549 -15125,18624,33656,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.41077,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,9.5911436,1.8229284,84.412308,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,0,116,215019.61,49037.082,0,0,1398.7717 -15126,18625,33657,-9,33658,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.7749,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,0,1378,-108014.15,0,0,0,2273.7368 -15126,18625,33658,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,2,5.2787561,5.2337317,0,0,0,-880.82098,0,3,2,2019,24,9,2,0,1,9,0,12.955718,12.955718,0,0,0,0,0,1,1,0,0,0,20.1,33.05,-9,-9,1.666666666666667,1,1,0,0,1,7,2,0,1378,-108014.15,0,0,0,2273.7368 -15127,18626,33659,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.7638712,8.9423618,0,0,0,-942.64355,0,2,3,2019,20,7,55,55,1,7,0,17.207388,17.207388,0,0,0,0,7,0,0,0,0,0,31.15,45.61,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,629,705853.31,385328.66,194150.84,0,3155.4282 -15127,18627,33660,-9,33659,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9892364,8.2066851,0,0,0,-1017.7682,0,1,-9,2019,15,3,40,8,1,3,1,9.8685846,9.8685846,0,0,0,0,2,0,0,0,0,0,45.26,50.66,-9,-9,1.666666666666667,1,1,0,0,7,11,4,1,276,-25202.326,-108814.95,0,0,1600.5603 -15128,18628,33661,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.1791863,7.2955046,0,0,0,-880.76355,-9,2,2,2019,23,10,20,0,1,10,0,7.0309882,7.0309882,0,0,0,0,0,1,1,0,0,0,25.43,35.95,-9,-9,0,1,1,0,1,7,6,2,0,2048,-99290.617,0,0,0,979.15051 -15129,18629,33662,-9,33665,33663,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.4249,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 -15129,18629,33663,33665,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,7.7995472,8.0765047,0,5,3,51.571976,0,-9,-9,2019,9,0,45,0,1,0,0,6.2361641,6.2361641,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.11,31,5,1,1,0,1,4,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 -15129,18629,33664,-9,33665,33663,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.48639,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 -15129,18629,33665,33663,-9,-9,1,0,45,0,3,0,3,3,-9,0,1,0,0,0,5,-3,2.7549443,0,-9,-9,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,31,57.16,56.15,3.333333333333333,1,1,0,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 -15129,18629,33666,-9,33665,33663,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.839,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,450,351859.59,0,322893.31,-9328.3252,2649.717 -15130,18630,33667,33668,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.0986247,6.272553,53,-1,90.789314,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.4209199,6.2225704,46.39,60.99,41.75,33.34,8.333333333333334,1,1,0,0,0,8,2,1,408,469191.88,0,356031.19,0,2447.7864 -15130,18630,33668,33667,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.5852761,5.5334754,7,1,79.403122,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.111948,5.8230796,41.75,33.34,46.39,60.99,8.333333333333334,1,1,0,0,5,8,2,1,408,469191.88,0,356031.19,0,2447.7864 -15131,18631,33669,33671,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.7412758,8.5579844,0,12,1,.60417944,0,2,2,2019,14,3,37,37,1,3,0,19.006945,19.006945,0,0,0,0,0,1,1,0,.35837525,0,33.76,54.45,38.3,52.65,8.333333333333334,1,1,0,0,12,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 -15131,18631,33670,-9,33671,33669,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.2593,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 -15131,18631,33671,33669,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.1466484,7.9083705,0,12,-1,-25.770472,0,2,2,2019,12,1,29,29,1,1,0,9.2344551,9.2344551,0,0,0,0,0,1,1,0,0,0,38.3,52.65,33.76,54.45,6.666666666666667,1,1,0,0,12,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 -15131,18631,33672,-9,33671,33669,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.4561,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,599.75,238631.7,183423.8,305460.09,140107.34,3785.8872 -15132,18632,33673,33674,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.6956639,5.9772515,7,2,-40.672108,0,-9,-9,2019,7,0,0,38,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1092234,54.96,53.17,59.47,35.92,8.333333333333334,1,1,0,0,9,1,2,1,591.5,195203.88,163317.39,87815.992,0,244.46765 -15132,18632,33674,33673,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,1.600262,1.5955409,49,-2,4.2482543,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,6.7180696,0,0,1,1,0,0,1.6023835,59.47,35.92,54.96,53.17,8.333333333333334,1,1,0,0,0,1,2,1,591.5,195203.88,163317.39,87815.992,0,244.46765 -15133,18633,33675,-9,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.5606308,8.6031361,0,0,0,-988.82593,0,2,2,2019,14,3,37,37,1,3,0,14.765448,14.765448,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,729,39614.316,11317.477,179375.66,0,1893.9817 -15133,18633,33676,-9,33675,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.136,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,0,729,39614.316,11317.477,179375.66,0,1893.9817 -15134,18634,33677,33678,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.0093994,7.3903494,7,5,-138.46298,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5133328,7.4723678,54.79,55.86,45.46,57.33,8.333333333333334,1,1,0,0,0,10,2,1,551,976608.88,472271.78,545019.38,392450.47,1660.0775 -15134,18634,33678,33677,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,7,-5,29.831118,0,2,1,2019,14,2,0,45,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,57.33,54.79,55.86,8.333333333333334,1,1,1,0,8,10,2,1,551,976608.88,472271.78,545019.38,392450.47,1660.0775 -15135,18635,33679,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,6.735292,6.9988766,0,0,0,-991.75452,0,3,3,2019,28,12,14,0,1,12,0,6.0554538,6.0554538,0,0,0,0,0,1,1,0,0,0,26.44,62.16,-9,-9,6.666666666666667,1,1,0,0,1,13,2,0,466,84665.359,0,0,0,898.35138 -15135,18635,33680,-9,33679,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.61694,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,466,84665.359,0,0,0,898.35138 -15136,18636,33681,33682,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.2707071,8.2600012,49,3,-26.571928,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8711448,7.8326278,56.33,51.02,59.43,58.05,10,1,1,0,0,4,10,4,1,358,2419835.5,870631.25,515309.38,0,5302.0864 -15136,18636,33682,33681,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.604372,7.357645,49,-3,15.123672,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.2178588,7.6858439,59.43,58.05,56.33,51.02,10,1,1,0,0,4,10,4,1,358,2419835.5,870631.25,515309.38,0,5302.0864 -15137,18637,33683,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-973.42719,-9,-9,-9,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,1,5,1,0,887,418644.66,0,0,0,448.85873 -15137,18638,33684,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,7.4751511,7.5573559,0,0,0,-1014.9608,-9,-9,-9,2019,13,2,35,0,1,2,0,4.5825181,4.5825181,0,0,0,0,0,0,0,0,0,0,47.28,59.36,-9,-9,8.333333333333334,1,1,0,1,0,5,3,0,311,146362.88,-23341.436,0,0,848.44757 -15138,18639,33685,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.9597759,5.0316472,0,0,-1039.9131,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6293063,43.01,42.51,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,748,-238683.25,0,0,0,455.70764 -15139,18640,33686,33687,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.431529,8.4432917,0,2,0,-69.47081,0,-9,-9,2019,11,0,40,45,1,0,0,13.461682,13.461682,0,0,0,0,0,0,0,0,0,0,51.83,57.2,29.15,62.08,8.333333333333334,1,1,0,0,1,9,3,1,862,221967.83,25554.352,193931.02,112861.41,1651.3206 -15139,18640,33687,33686,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,4.6849456,4.8145819,0,2,0,43.158005,0,2,2,2019,13,3,50,28,1,3,0,.19229464,.19229464,0,0,0,0,0,0,0,0,0,0,29.15,62.08,51.83,57.2,5,1,1,0,0,8,9,3,1,862,221967.83,25554.352,193931.02,112861.41,1651.3206 -15140,18641,33688,33691,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,0,0,9,-5,-57.12476,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.1,49.93,55.47,52.91,6.666666666666667,1,1,0,0,1,4,2,1,543.5,-48840.805,0,0,0,1282.7363 -15140,18641,33689,-9,33688,33691,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.83582,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,1,543.5,-48840.805,0,0,0,1282.7363 -15140,18641,33690,-9,33688,33691,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.59216,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,543.5,-48840.805,0,0,0,1282.7363 -15140,18641,33691,33688,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,7.5883346,7.5291915,0,9,5,31.189205,0,2,2,2019,11,0,43,45,1,0,0,4.0029445,4.0029445,0,0,0,0,0,1,1,0,6.2183003,0,55.47,52.91,56.1,49.93,1.666666666666667,1,1,0,0,10,4,2,1,543.5,-48840.805,0,0,0,1282.7363 -15140,18642,33692,-9,33688,33691,1,1,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-836.50769,-9,2,1,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.81,58.71,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,170,156997.75,0,130433.96,0,0 -15141,18643,33693,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.8816967,5.0043669,0,0,-1001.7081,-9,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,19.959862,0,0,1,1,0,0,5.1563406,46.03,27.5,-9,-9,10,1,1,0,0,0,11,2,1,965,-326832.81,0,0,0,732.07806 -15142,18644,33694,33695,-9,-9,1,1,56,0,0,0,3,3,-9,1,4,0,0,0,40,4,0,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,48,49,8,2,3,0,0,0,8,1,0,666.5,436216.97,110316.28,203614.56,0,1416.7278 -15142,18644,33695,33694,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,39,-4,0,0,3,2,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,27,1,1,0,0,0,48,49,54,54,7,2,3,0,0,0,8,1,0,666.5,436216.97,110316.28,203614.56,0,1416.7278 -15142,18645,33696,33697,33695,33694,1,1,30,0,0,0,1,1,-9,0,4,0,0,0,1,7,0,0,3,3,2019,8,0,0,37,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,54.38,46,58,8.333333333333334,2,3,1,0,2,8,2,0,1996.5,125763.54,-8969.0703,0,0,0 -15142,18645,33697,33696,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,40.72,54.38,7,2,3,0,0,0,8,2,0,1996.5,125763.54,-8969.0703,0,0,0 -15142,18646,33698,-9,33695,33694,1,1,27,0,0,0,1,1,-9,0,4,7.1672263,7.1906223,0,0,0,-1045.1522,0,3,3,2019,10,0,14,35,1,1,1,11.809542,11.809542,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,6,8,3,0,668,-53580.289,-52988.602,0,0,926.44354 -15142,18647,33699,-9,33695,33694,1,1,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-976.54828,-9,3,3,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,321,0,0,0,0,405.63342 -15142,18648,33700,-9,33695,33694,1,1,22,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1034.4645,0,3,3,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,594,-29122.854,0,0,0,0 -15142,18649,33701,-9,33695,33694,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.1474,-9,3,3,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.91,55.39,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,318,106277.3,0,0,0,679.33643 -15143,18650,33702,-9,33704,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.2189,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,867,39764.809,26656.428,0,0,2426.0449 -15143,18650,33703,-9,33704,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.58655,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,867,39764.809,26656.428,0,0,2426.0449 -15143,18650,33704,-9,-9,-9,1,0,31,0,2,0,1,1,1,0,2,8.3111639,8.2606535,0,0,0,-934.32513,-9,3,2,2019,24,12,40,0,1,12,0,12.89771,12.89771,0,0,0,0,0,1,1,0,0,0,28.81,57.6,-9,-9,3.333333333333333,1,1,0,0,6,13,3,0,867,39764.809,26656.428,0,0,2426.0449 -15144,18651,33705,33706,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.6214318,7.6205478,0,22,-1,-59.980125,0,3,3,2019,9,1,34,20,1,1,0,7.1917515,7.1917515,0,0,0,0,0,0,0,0,0,0,53.92,44,50,49,8.333333333333334,1,1,0,0,9,4,4,1,774.5,472985.88,576042.44,85878.953,82776.063,2759.896 -15144,18651,33706,33705,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.1365089,8.7878704,0,8,1,-26.994257,0,-9,-9,2019,10,0,40,44,1,1,0,11.078538,11.078538,0,0,0,0,0,0,0,0,0,0,50,49,53.92,44,7,1,1,0,0,10,4,4,1,774.5,472985.88,576042.44,85878.953,82776.063,2759.896 -15144,18652,33707,-9,33705,33706,1,1,19,0,0,0,2,2,-9,0,4,7.4062829,7.3887353,0,0,0,-1051.3997,0,3,2,2019,11,0,38,40,1,2,1,5.4164181,5.4164181,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,6,4,3,1,1930,-368150.13,0,0,0,994.6972 -15145,18653,33708,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.7034378,8.0063314,0,0,-1007.6791,0,2,2,2019,9,1,0,44,4,1,0,0,0,0,0,0,0,2,0,0,0,0,7.5254188,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,207,-210243.92,0,0,0,1337.5859 -15146,18654,33709,-9,-9,-9,1,0,52,0,0,0,3,3,0,0,4,0,0,0,0,0,-1075.6278,-9,3,-9,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.76,53.24,-9,-9,5,1,1,0,0,1,8,1,0,647,-149690.94,0,0,0,0 -15146,18655,33710,-9,33709,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2173815,8.0192327,0,0,0,-980.62183,0,2,-9,2019,6,1,43,58,1,1,1,8.8123159,8.8123159,0,0,0,0,0,0,0,0,0,0,64.22,41.99,-9,-9,6.666666666666667,4,2,0,0,9,8,4,0,367,-41419.664,6632.002,0,0,1258.7363 -15147,18656,33711,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.3998785,8.3903313,0,0,0,-942.26581,0,3,2,2019,13,2,27,36,1,2,0,16.750446,16.750446,0,0,0,0,0,0,0,0,0,0,29.72,52,-9,-9,3.333333333333333,3,4,0,0,9,8,4,1,1532,348369.09,150942.16,86071.438,59240.844,1723.1627 -15148,18657,33712,33713,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.9269776,7.8744774,0,5,-3,-17.087164,0,-9,-9,2019,10,0,44,44,1,1,0,5.3428564,5.3428564,0,0,0,0,0,0,0,0,0,0,53.34,42.64,40.71,46.29,6.666666666666667,3,4,0,0,4,7,5,1,1254.5,701067.38,347056.41,387816.56,89590.359,3117.5642 -15148,18657,33713,33712,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.6438141,8.6464357,0,5,3,-48.640194,0,-9,-9,2019,16,4,57,60,1,4,0,8.4452553,8.4452553,0,0,0,0,0,0,0,0,3.8546405,0,40.71,46.29,53.34,42.64,5,1,1,0,0,6,7,5,1,1254.5,701067.38,347056.41,387816.56,89590.359,3117.5642 -15149,18658,33714,33715,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.0143499,7.9754725,7,5,3.5256777,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.698936,7.8081026,46.63,59.72,59.15,38.94,8.333333333333334,1,1,0,0,0,7,3,1,828.5,739809.25,366231.63,498362.5,0,2866.5583 -15149,18658,33715,33714,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,-5,-37.130981,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4608893,0,59.15,38.94,46.63,59.72,10,1,1,0,0,0,7,3,1,828.5,739809.25,366231.63,498362.5,0,2866.5583 -15150,18659,33716,-9,33717,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.0851,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,367.66666,-187717.48,0,0,0,995.0553 -15150,18659,33717,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.0489421,7.3336358,5.4354877,0,0,-1061.6442,-9,2,2,2019,5,0,18,0,1,0,0,9.2001448,9.2001448,0,0,0,0,0,1,0,1,5.9413686,0,51.83,57.2,-9,-9,8.333333333333334,4,2,0,0,10,5,2,0,367.66666,-187717.48,0,0,0,995.0553 -15150,18659,33718,-9,33717,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.54156,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,2,0,367.66666,-187717.48,0,0,0,995.0553 -15151,18660,33719,33720,-9,-9,1,0,39,0,1,0,2,2,-9,0,5,8.1824656,8.0043697,0,8,3,-9.0059671,0,2,3,2019,7,0,36,36,1,0,0,9.4409971,9.4409971,0,0,0,0,2,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,6,2,4,1,375.5,-138335.86,41754.129,112278.31,58164.93,2904.1646 -15151,18660,33720,33719,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,8.4243364,8.7591038,0,8,-3,32.175014,0,2,2,2019,8,0,45,39,1,0,0,11.162127,11.162127,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,10,2,4,1,375.5,-138335.86,41754.129,112278.31,58164.93,2904.1646 -15151,18661,33721,-9,33719,33720,1,1,23,0,1,0,2,2,-9,0,4,8.10256,8.320962,0,0,0,-1138.5479,0,2,3,2019,8,0,40,41,1,0,1,10.438222,10.438222,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,85,-1430.3495,21715.883,0,0,1274.0789 -15152,18662,33722,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,4.7187648,4.8299599,0,0,-996.49597,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,14.311148,0,0,1,1,0,0,4.666182,29.35,30.13,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,408,148897.58,90842.898,91606.953,0,1642.5128 -15153,18663,33723,-9,33725,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.4762,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 -15153,18663,33724,-9,33725,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.1265,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 -15153,18663,33725,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,0,0,-794.88141,0,3,3,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,65.15000000000001,23.76,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 -15153,18663,33726,-9,33725,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1107.2062,-9,2,-9,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,43.11,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,730.75,-10640.96,0,0,0,1382.1979 -15154,18664,33727,-9,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.4739809,8.5943918,0,0,0,-962.0871,0,2,3,2019,19,8,40,40,1,8,0,14.960114,14.960114,0,0,0,0,0,0,0,0,2.5049651,0,28.16,65.32000000000001,-9,-9,3.333333333333333,1,1,0,0,9,13,4,1,536,413285.16,438578.78,164216.17,49324.738,2525.8135 -15154,18665,33728,-9,33729,33727,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.8358,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,917,359019.66,306081.84,126037.02,52319.719,2167.5796 -15154,18665,33729,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.7746744,8.9941435,0,0,0,-904.19415,0,-9,-9,2019,21,9,35,37,1,9,0,21.998905,21.998905,0,0,0,0,0,0,0,0,4.5454812,0,37.6,55.55,-9,-9,3.333333333333333,1,1,0,0,1,13,4,1,917,359019.66,306081.84,126037.02,52319.719,2167.5796 -15155,18666,33730,-9,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1075.9991,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,53.05,-9,-9,6.666666666666667,1,1,0,0,2,13,1,0,668,-80081.766,0,151416.06,0,628.32361 -15156,18667,33731,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1025.5658,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,50,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,2556,-326029.88,0,0,0,617.71954 -15157,18668,33732,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.96088,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.5,26.97,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,465,-357378.16,0,0,0,856.03381 -15158,18669,33733,33734,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5081463,7.4217901,0,6,0,8.4770203,0,2,1,2019,12,1,34,29,1,1,0,3.8116515,3.8116515,0,0,0,0,0,0,0,0,3.3514009,0,41.87,56.48,53,54,8.333333333333334,1,1,0,0,6,4,5,1,795.5,3030474.3,132657.61,725097.88,0,3851.439 -15158,18669,33734,33733,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7912045,8.9501467,7.7466784,6,0,-6.7189679,0,2,2,2019,9,0,40,35,1,1,0,17.436415,17.436415,0,0,0,0,0,0,0,0,3.2291157,7.4504099,53,54,41.87,56.48,8,1,1,0,0,1,4,5,1,795.5,3030474.3,132657.61,725097.88,0,3851.439 -15159,18670,33735,-9,33738,33737,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-998.49591,-9,2,3,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,1.5981382,0,30.72,59.29,-9,-9,1.666666666666667,1,1,0,0,0,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 -15159,18670,33736,-9,33738,33737,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.9379,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 -15159,18670,33737,33738,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,8.0729103,8.1862593,0,9,9,75.438019,0,-9,-9,2019,6,0,37,38,1,0,0,9.8883686,9.8883686,0,0,0,0,0,1,1,0,0,0,52.41,42.18,37.36,58.26,5,1,1,0,1,11,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 -15159,18670,33738,33737,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.3566327,7.7534103,0,9,0,46.564102,0,-9,-9,2019,15,4,22,23,1,4,0,6.5732269,6.5732269,0,0,0,0,2,1,1,0,0,0,37.36,58.26,52.41,42.18,5,1,1,0,0,10,9,3,0,503.25,95630.242,13669.641,250622.83,0,2658.4436 -15160,18671,33739,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.7604294,7.090363,0,0,-939.52417,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.635704,7.8235455,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,556,548835.06,394492.78,0,0,2044.4991 -15161,18672,33740,-9,33742,33741,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1031.9893,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,2,1,899.66669,137886.52,-29807.207,134239.48,39725.77,1098.1219 -15161,18672,33741,33742,-9,-9,1,1,59,0,1,0,3,3,-9,0,3,7.3466353,7.240314,0,30,4,-158.96933,0,3,3,2019,7,0,24,0,1,0,0,6.9212661,6.9212661,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.59,58.37,8.333333333333334,2,3,0,0,5,6,2,1,899.66669,137886.52,-29807.207,134239.48,39725.77,1098.1219 -15161,18672,33742,33741,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,30,-4,-64.261719,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.59,58.37,57.33,53.46,8.333333333333334,2,3,0,0,0,6,2,1,899.66669,137886.52,-29807.207,134239.48,39725.77,1098.1219 -15161,18673,33743,-9,33742,33741,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-933.59406,-9,2,3,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,881,0,0,0,0,0 -15161,18674,33744,-9,33742,33741,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.13354,-9,2,3,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,504,0,0,0,0,0 -15162,18675,33745,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.34023,7.3501759,0,0,-954.37592,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,7.3198709,7.2381921,40.39,42.09,-9,-9,3.333333333333333,1,1,0,0,8,8,3,1,1343,440776.63,343085.19,423580.78,0,1690.972 -15163,18676,33746,-9,33749,33747,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.2451,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 -15163,18676,33747,33749,-9,-9,1,1,73,0,2,0,3,3,-9,0,3,8.226862,8.1138601,6.6389341,2,37,143.08493,0,3,3,2019,7,0,40,40,1,0,0,11.660767,11.660767,0,0,0,0,0,1,1,0,6.8183241,6.7891755,59.27,42.93,43.38,62.58,1.666666666666667,1,1,0,0,12,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 -15163,18676,33748,-9,33749,33747,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1147,-9,-9,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 -15163,18676,33749,33747,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,0,0,0,2,-37,29.790577,0,-9,-9,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,43.38,62.58,59.27,42.93,10,2,3,0,0,0,2,3,1,890.25,133234.98,223634.53,83641.969,63883.805,2452.3569 -15164,18677,33750,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,9.2237186,9.1600075,0,0,-1012.3138,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8530874,8.7141981,52.64,36.51,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,309,1037817.9,-1009.7869,473120.38,0,6363.1909 -15165,18678,33751,33753,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.8821898,8.6100159,0,15,0,-24.569105,0,2,2,2019,9,0,40,44,1,0,0,19.92835,19.92835,0,0,0,0,0,1,1,0,0,0,46.5,58.26,38.5,44.5,6.666666666666667,1,1,0,0,7,13,5,1,423.66666,806597.44,506781.09,286069.41,114786.28,5451.354 -15165,18678,33752,-9,33753,33751,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.9357,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,423.66666,806597.44,506781.09,286069.41,114786.28,5451.354 -15165,18678,33753,33751,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,9.1671953,9.0883589,0,15,0,-18.928034,0,2,2,2019,19,8,38,37,1,8,0,28.373365,28.373365,0,0,0,.41005024,0,1,1,0,0,0,38.5,44.5,46.5,58.26,3.333333333333333,1,1,0,0,9,13,5,1,423.66666,806597.44,506781.09,286069.41,114786.28,5451.354 -15166,18679,33754,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.4259386,8.1802311,7.1149249,0,0,-940.89917,0,3,2,2019,7,0,23,23,1,0,0,19.127476,19.127476,0,0,0,0,0,1,1,0,2.138042,7.3025756,55.37,48.71,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,171,736986.75,252105.69,171977.63,0,2292.9109 -15167,18680,33755,33756,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.8325167,8.462863,0,1,3,109.9887,-9,2,2,2019,13,1,37,0,1,1,0,14.245305,14.245305,0,0,0,0,0,0,0,0,3.4143925,0,40.75,58.26,41.59,47.32,6.666666666666667,1,1,0,0,7,9,5,1,502.5,-56571.039,37649.891,0,0,3803.3953 -15167,18680,33756,33755,-9,-9,1,0,21,0,0,0,2,2,-9,0,2,7.99968,8.0362883,0,1,-3,-40.043217,-9,-9,-9,2019,15,3,40,0,1,3,0,9.0859728,9.0859728,0,0,0,0,0,0,0,0,4.0893564,0,41.59,47.32,40.75,58.26,8.333333333333334,1,1,0,0,1,9,5,1,502.5,-56571.039,37649.891,0,0,3803.3953 -15168,18681,33757,-9,33759,33758,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.72455,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,1388.3334,89828.523,105435.09,133028.17,68439.07,3630.2664 -15168,18681,33758,33759,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.2881269,8.2840214,0,3,0,-30.590059,0,2,3,2019,7,0,47,40,1,0,0,8.3956175,8.3956175,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,11,5,4,1,1388.3334,89828.523,105435.09,133028.17,68439.07,3630.2664 -15168,18681,33759,33758,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.0765476,7.7793088,0,3,0,27.100544,0,-9,-9,2019,9,0,30,45,1,0,0,12.236527,12.236527,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,7,5,4,1,1388.3334,89828.523,105435.09,133028.17,68439.07,3630.2664 -15169,18682,33760,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.6401424,8.3499231,0,0,0,-980.07135,0,3,3,2019,9,1,42,37,1,1,0,15.122965,15.122965,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,412,70958.297,-33397.008,0,0,1918.1566 -15170,18683,33761,33762,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.062953,8.0313721,0,7,-7,-38.188,0,2,2,2019,6,0,38,38,1,0,0,9.4307032,9.4307032,0,0,0,0,7,0,0,0,3.4697316,0,57.16,56.15,51.65,49.21,8.333333333333334,1,1,0,0,8,4,4,1,824,500646.56,532811.19,107288.98,0,2767.4028 -15170,18683,33762,33761,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3129129,8.1996155,0,7,7,-113.16661,0,3,3,2019,8,0,38,38,1,0,0,11.311297,11.311297,0,0,0,0,7,0,0,0,3.7476194,0,51.65,49.21,57.16,56.15,6.666666666666667,1,1,0,0,8,4,4,1,824,500646.56,532811.19,107288.98,0,2767.4028 -15171,18684,33763,33764,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,9.1217756,8.8944931,0,28,3,-54.759541,0,3,3,2019,10,0,45,51,1,0,0,21.43619,21.43619,0,0,0,0,0,1,1,0,0,0,57.34,39.89,43.94,58,8.333333333333334,3,4,0,0,11,8,4,1,1628.5,147930.72,57150.855,251976.13,155694.48,2509.1882 -15171,18684,33764,33763,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,0,0,0,28,-3,78.972809,0,2,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,3.4773042,0,43.94,58,57.34,39.89,3.333333333333333,3,4,1,0,9,8,4,1,1628.5,147930.72,57150.855,251976.13,155694.48,2509.1882 -15172,18685,33765,-9,33766,-9,1,1,26,0,2,0,2,2,-9,0,3,7.4734278,7.1608419,0,0,0,-1131.3021,0,3,3,2019,14,2,45,35,1,2,0,3.840277,3.840277,0,0,0,0,2,1,1,0,0,0,48.94,54.95,-9,-9,6.666666666666667,2,3,0,0,7,6,2,1,58,129943.73,69945.781,0,0,214.7226 -15172,18686,33766,-9,-9,-9,1,0,56,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1035.4756,0,-9,-9,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,2,3,0,0,0,6,1,1,284,86781.875,0,0,0,0 -15172,18687,33767,-9,33768,33769,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-960.85663,-9,3,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 -15172,18687,33768,33769,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,7,5,16.509857,0,-9,-9,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,38.27,59.42,41.07,60.93,5,2,3,0,0,0,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 -15172,18687,33769,33768,33766,-9,1,1,31,0,2,0,2,2,-9,0,5,7.9865355,7.8670692,0,7,-5,-48.517414,0,3,-9,2019,9,3,38,28,1,3,0,12.007456,12.007456,0,0,0,0,0,1,1,0,0,0,41.07,60.93,38.27,59.42,5,2,3,0,0,9,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 -15172,18687,33770,-9,33768,33769,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.7299,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,733.25,5573.3418,27094.234,0,0,1507.2321 -15173,18688,33771,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1021.8664,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,38.83,41.89,-9,-9,5,1,1,0,1,6,11,1,1,778,340006.16,192671.31,64216.801,0,867.43091 -15174,18689,33772,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,7.1376004,6.9253097,0,0,-1061.8588,0,2,2,2019,24,8,0,0,4,8,0,0,0,1,3.2018206,0,24.085726,0,1,1,0,4.1057792,7.0220771,43.25,16.52,-9,-9,3.333333333333333,1,1,0,0,0,5,3,0,395,370756.5,226032.45,0,0,1857.7952 -15175,18690,33773,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.9022303,6.8203425,0,0,-846.92102,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0443702,6.8509264,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,8,9,3,0,255,2081390.9,393214.31,469053.78,0,832.39496 -15176,18691,33774,-9,33776,33777,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.96082,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 -15176,18691,33775,-9,33776,33777,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.473,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 -15176,18691,33776,33777,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,7.8523679,7.9841847,0,8,-3,173.93555,0,3,3,2019,8,1,37,23,1,1,0,8.9462337,8.9462337,0,0,0,0,0,1,1,0,7.5534921,0,48.15,48.01,58.51,37.08,6.666666666666667,2,3,0,1,10,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 -15176,18691,33777,33776,-9,-9,1,1,44,0,3,0,2,2,-9,0,2,8.8612871,8.6999397,0,8,3,-73.288605,0,3,3,2019,12,1,41,38,1,1,0,14.386812,14.386812,0,0,0,0,0,1,1,0,0,0,58.51,37.08,48.15,48.01,3.333333333333333,2,3,0,1,10,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 -15176,18691,33778,-9,33776,33777,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-991.07324,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,6,4,1,546.40002,309151.72,230255.31,260200.36,102968.6,4049.417 -15177,18692,33779,33780,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.3981085,9.3468275,0,19,1,-13.516198,0,2,2,2019,19,8,40,78,1,8,0,35.348976,35.348976,0,0,0,0,0,0,0,0,5.0767837,0,33.49,64.26000000000001,54.1,59.11,3.333333333333333,1,1,0,0,10,8,5,1,812.5,995902.13,241978.78,582149.88,67229.891,5602.3867 -15177,18692,33780,33779,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.1059885,8.2332611,0,19,-1,8.2477112,0,2,2,2019,8,0,23,21,1,0,0,13.94155,13.94155,0,0,0,0,0,0,0,0,0,0,54.1,59.11,33.49,64.26000000000001,8.333333333333334,1,1,0,0,11,8,5,1,812.5,995902.13,241978.78,582149.88,67229.891,5602.3867 -15178,18693,33781,-9,33784,33782,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.4035,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 -15178,18693,33782,33784,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,7.4647498,7.351994,0,14,0,-8.1479502,0,2,-9,2019,16,2,60,60,1,2,0,3.6257911,3.6257911,0,0,0,0,0,1,1,0,0,0,43.86,49.01,51.24,58.84,8.333333333333334,1,1,0,0,9,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 -15178,18693,33783,-9,33784,33782,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-961.12567,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 -15178,18693,33784,33782,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.8399186,7.5895972,0,14,0,66.989212,0,-9,-9,2019,12,1,30,32,1,1,0,6.6985087,6.6985087,0,0,0,0,0,1,1,0,0,0,51.24,58.84,43.86,49.01,8.333333333333334,1,1,0,0,7,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 -15178,18693,33785,-9,33784,33782,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1039.224,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,2,3,1,1471,75388.93,24351.834,0,0,1926.4447 -15179,18694,33786,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.532268,7.3380299,0,0,-1043.9902,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.6083198,7.5993247,60.2,37.12,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,822,532455.63,207104.81,240795.28,52553.813,1172.3544 -15180,18695,33787,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1157.485,0,2,3,2019,10,0,0,33,3,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.15,44.79,-9,-9,3.333333333333333,3,4,0,1,12,8,1,1,534,-213483.59,-121668.48,0,0,-266.61981 -15180,18696,33788,-9,33787,-9,1,0,22,0,0,0,2,2,-9,0,4,8.8244362,8.4860611,0,0,0,-1132.7931,-9,2,-9,2019,12,4,46,0,1,4,1,11.769055,11.769055,0,0,0,0,0,0,0,0,0,0,42.62,56.51,-9,-9,8.333333333333334,3,4,0,0,5,8,5,1,393,6915.4053,-42194.813,0,0,1150.0892 -15180,18697,33789,-9,33787,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1049.988,0,2,-9,2019,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,.41988504,0,36.46,49.64,-9,-9,3.333333333333333,3,4,0,0,4,8,1,1,160,148632.13,0,0,0,150.98375 -15181,18698,33790,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.6935892,7.6998262,0,0,-1035.973,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4771895,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,728,393700.22,214111.61,238426.41,0,1526.6447 -15182,18699,33791,33792,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.5456338,7.8376193,48,5,4.2905884,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,1,0,2.2486322,0,2,1,1,0,8.523366,7.6028986,42.73,36.65,49,48,3.333333333333333,1,1,0,0,5,6,4,1,558,253229.67,-28733.93,228327.88,112026.16,6148.4248 -15182,18699,33792,33791,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.2073898,7.8070083,0,48,-5,62.649651,0,2,2,2019,10,0,16,18,1,0,0,17.283436,17.283436,0,0,0,0,0,1,1,0,1.8529602,0,49,48,42.73,36.65,8.333333333333334,1,1,0,0,12,6,4,1,558,253229.67,-28733.93,228327.88,112026.16,6148.4248 -15183,18700,33793,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9923325,7.8507209,0,0,0,-970.85986,0,3,3,2019,12,1,36,36,1,1,0,10.381389,10.381389,0,0,0,0,2,1,1,0,4.1252012,0,40.81,55.44,-9,-9,5,1,1,0,0,10,6,4,1,999,85388.578,-8270.249,0,0,1285.7699 -15184,18701,33794,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,8.3633223,8.2314386,0,0,-920.56866,0,3,2,2019,5,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.9974203,8.4251099,62.41,39.97,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,380,1695851,1299675.5,337827.78,0,3365.9604 -15185,18702,33795,33796,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.8632679,8.1364393,35,3,87.227859,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.1817808,7.8649144,57.33,53.46,29.91,57.76,8.333333333333334,1,1,0,0,10,12,4,1,705,76338.141,39773.828,0,0,2746.7373 -15185,18702,33796,33795,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8439145,8.1863108,0,37,-3,31.873617,0,-9,-9,2019,13,2,37,37,1,2,0,8.193531,8.193531,0,0,0,0,7,0,0,0,4.2666163,0,29.91,57.76,57.33,53.46,1.666666666666667,1,1,0,0,13,12,4,1,705,76338.141,39773.828,0,0,2746.7373 -15186,18703,33797,33798,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7788978,7.6860104,0,42,-2,29.26329,0,3,2,2019,9,0,21,21,1,0,0,15.450466,15.450466,0,0,0,0,0,0,0,0,4.3828344,0,56.75,49.4,60.12,54.8,8.333333333333334,1,1,0,0,7,4,5,1,846,1160822.9,747825.5,158084.69,0,4545.6899 -15186,18703,33798,33797,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.0348339,9.3867569,7.1293564,42,2,-104.26767,0,-9,3,2019,6,0,15,38,1,0,0,56.774746,56.774746,0,0,0,0,0,0,0,0,5.2109561,7.4203486,60.12,54.8,56.75,49.4,8.333333333333334,1,1,0,0,8,4,5,1,846,1160822.9,747825.5,158084.69,0,4545.6899 -15187,18704,33799,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-962.76593,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,2813,-193001.81,0,0,0,263.46439 -15188,18705,33800,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,8.0112867,7.9516306,0,0,0,-955.38513,0,-9,3,2019,10,0,44,46,1,0,0,7.1226306,7.1226306,0,0,0,0,0,1,1,0,0,0,48.3,41.76,-9,-9,5,1,1,0,0,2,2,3,0,540,-149939.89,163996.97,0,0,615.62408 -15189,18706,33801,-9,33806,33802,1,0,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-993.85736,-9,2,2,2019,4,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,50.93,42.58,-9,-9,10,2,3,0,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 -15189,18706,33802,33806,-9,-9,1,1,59,0,5,0,2,2,-9,0,3,7.6061444,7.7596955,0,2,20,41.492939,0,2,2,2019,7,0,31,24,1,0,0,8.3253622,8.3253622,0,0,0,0,0,1,1,0,0,0,60.44,46.58,60.2,39.82,6.666666666666667,2,3,0,0,9,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 -15189,18706,33803,-9,33806,33802,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-996.65668,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 -15189,18706,33804,-9,33806,33802,1,0,14,0,5,1,3,0,-9,0,5,0,0,0,0,0,-926.24817,-9,2,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 -15189,18706,33805,-9,33806,33802,1,1,10,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1128.5713,-9,3,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 -15189,18706,33806,33802,-9,-9,1,0,39,0,5,0,2,2,-9,0,3,0,0,0,2,-20,89.021866,0,-9,-9,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,60.2,39.82,60.44,46.58,8.333333333333334,2,3,0,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 -15189,18706,33807,-9,33806,33802,1,0,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-977.3634,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,8,2,0,566,74276.578,0,199617.92,152388.64,2333.5835 -15189,18707,33808,-9,33806,33802,1,0,20,0,5,1,3,0,0,0,5,0,0,0,0,0,-996.0437,-9,2,2,2019,5,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,37.59,51.47,-9,-9,1.666666666666667,2,3,0,0,0,8,1,0,662,-20094.84,0,0,0,-73.994446 -15190,18708,33809,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1090.8015,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,1522,157644.31,0,0,0,532.42316 -15190,18709,33810,-9,33809,-9,1,1,33,0,0,0,3,3,-9,0,4,8.6181936,8.5854998,0,0,0,-887.12897,-9,2,2,2019,1,0,57,0,1,0,0,10.486744,10.486744,0,0,0,0,0,1,1,0,3.4168916,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,728,-156647.77,96728.141,0,0,1787.8524 -15191,18710,33811,33813,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8713098,7.9898539,0,4,10,35.382065,0,-9,-9,2019,8,0,25,29,1,0,0,10.437532,10.437532,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,9,2,4,1,631.66669,173761.41,39995.133,114407.73,21877.502,2542.8413 -15191,18710,33812,-9,33811,33813,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.9559,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,631.66669,173761.41,39995.133,114407.73,21877.502,2542.8413 -15191,18710,33813,33811,-9,-9,1,1,33,0,1,0,2,2,-9,0,4,7.9344549,7.7159286,0,4,-10,-49.579269,0,2,-9,2019,9,0,43,44,1,0,0,9.7265053,9.7265053,0,0,0,0,2,1,1,0,0,0,51.83,57.2,57.16,56.15,6.666666666666667,1,1,0,0,7,2,4,1,631.66669,173761.41,39995.133,114407.73,21877.502,2542.8413 -15192,18711,33814,33815,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.5073934,6.5148549,10,-7,-111.45414,0,3,3,2019,14,2,0,0,4,2,0,0,0,1,0,29.106575,0,0,1,1,0,0,6.4005713,49.91,17.74,62.99,38.46,3.333333333333333,1,1,0,0,8,10,3,1,448,1459719.3,747884.5,565891.63,0,3256.7036 -15192,18711,33815,33814,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.00247,7.9752769,10,7,46.667122,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,.72042722,8.3542738,62.99,38.46,49.91,17.74,5,1,1,0,0,3,10,3,1,448,1459719.3,747884.5,565891.63,0,3256.7036 -15193,18712,33816,33817,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.8312039,7.9917092,9,1,-81.237114,0,3,2,2019,12,0,0,0,4,0,0,0,0,1,0,10.256319,0,0,1,1,0,1.9358761,7.9538341,36.03,40.6,45.9,47.62,6.666666666666667,1,1,0,0,0,2,3,1,1129.5,512203.78,264558.97,223990,139536.39,2464.8223 -15193,18712,33817,33816,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,4.0186319,4.046876,9,-1,100.67937,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,3.3939433,4.4479299,45.9,47.62,36.03,40.6,6.666666666666667,1,1,0,0,0,2,3,1,1129.5,512203.78,264558.97,223990,139536.39,2464.8223 -15194,18713,33818,33819,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,0,8.0981636,8.1138,38,5,-98.134232,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.4100471,8.5820322,52.13,57.22,47.46,52.7,8.333333333333334,2,3,0,0,7,8,5,1,303,799188.88,250445,566945.75,91144.938,4124.3452 -15194,18713,33819,33818,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2486563,8.5268822,0,36,-5,-2.0080414,0,2,2,2019,12,1,17,20,1,1,0,25.60774,25.60774,0,0,0,0,0,0,0,0,1.5283003,0,47.46,52.7,52.13,57.22,8.333333333333334,1,1,0,0,10,8,5,1,303,799188.88,250445,566945.75,91144.938,4124.3452 -15195,18714,33820,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.877316,7.9519286,0,0,0,-920.99982,0,3,3,2019,11,0,19,29,1,0,0,16.433657,16.433657,0,0,0,0,0,1,1,0,7.4237051,0,46.42,59.64,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,198,106187.41,0,205295.55,0,1338.3943 -15196,18715,33821,33822,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,9,-8,64.742348,0,2,2,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.4265151,0,32.43,52.52,45.81,44.2,5,1,1,0,0,1,12,4,1,329,1225183.3,841854,369175.94,73283.055,2736.3621 -15196,18715,33822,33821,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.7212591,8.2868376,9,8,115.5251,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.71697,7.928956,45.81,44.2,32.43,52.52,8.333333333333334,1,1,0,0,0,12,4,1,329,1225183.3,841854,369175.94,73283.055,2736.3621 -15197,18716,33823,33824,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.3211694,6.9572678,54,3,58.958145,0,1,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8592041,7.2752357,59.53,56.44,58.3,42.18,10,1,1,0,0,0,10,2,1,688,811702.75,236407.64,346708.06,0,1418.3768 -15197,18716,33824,33823,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,54,-3,3.4198718,0,2,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0954938,0,58.3,42.18,59.53,56.44,6.666666666666667,1,1,0,0,7,10,2,1,688,811702.75,236407.64,346708.06,0,1418.3768 -15198,18717,33825,33826,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.1117587,6.3483448,10,8,-71.740257,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.756424,6.0439563,54.33,42.47,47.61,55.04,8.333333333333334,1,1,0,0,9,13,3,1,654.5,1708541.8,889605.38,701007.38,0,2851.1606 -15198,18717,33826,33825,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.0342913,8.0310431,10,-8,111.65735,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.3012695,7.8308997,47.61,55.04,54.33,42.47,8.333333333333334,1,1,0,0,8,13,3,1,654.5,1708541.8,889605.38,701007.38,0,2851.1606 -15199,18718,33827,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.260725,7.7078233,0,0,-1037.7767,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.982017,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,12,4,1,1201,894533.19,452548.47,251452.11,0,1965.6973 -15200,18719,33828,33829,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.0566607,7.943121,0,21,3,-68.36087,0,3,3,2019,6,0,35,38,1,0,0,13.475381,13.475381,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.6,49.52,6.666666666666667,2,3,0,0,13,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 -15200,18719,33829,33828,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,21,-3,-147.38135,0,3,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.6,49.52,57.16,56.15,8.333333333333334,2,3,0,1,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 -15200,18719,33830,-9,33829,33828,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.6779,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 -15200,18719,33831,-9,33829,33828,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-996.383,1,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.68,58.58,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 -15200,18719,33832,-9,33829,33828,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1045.1685,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,3,1,652.40002,113603.37,121252.12,190140.86,96580.578,2972.5996 -15200,18720,33833,-9,33829,33828,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1004.415,-9,2,2,2019,2,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,10,2,3,0,0,1,6,1,1,794,-213670.88,0,0,0,-87.156754 -15201,18721,33834,33835,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,8.2208252,8.4405413,0,26,-2,22.761873,0,2,2,2019,11,0,37,37,1,0,0,17.18005,17.18005,0,0,0,0,0,1,1,0,0,0,44.76,31.18,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,2741.5,-17898.051,28977.813,0,0,3715.9771 -15201,18721,33835,33834,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.0258179,7.9614873,0,26,2,98.483391,0,2,1,2019,6,0,40,40,1,0,0,8.8056736,8.8056736,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.76,31.18,8.333333333333334,1,1,0,0,12,9,5,1,2741.5,-17898.051,28977.813,0,0,3715.9771 -15201,18722,33836,-9,33834,33835,1,1,20,0,0,0,2,2,-9,0,3,7.9229741,7.894278,0,0,0,-1128.0259,0,2,2,2019,12,0,43,43,1,0,1,8.0275269,8.0275269,0,0,0,0,0,1,1,0,0,0,43.12,58.55,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,809,-223783.88,0,0,0,1385.7679 -15202,18723,33837,33841,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,0,0,0,6,-3,-60.313026,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,50.18,52.62,52.23,55.6,5,1,1,0,0,0,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 -15202,18723,33838,-9,33837,33841,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.88171,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 -15202,18723,33839,-9,33837,33841,1,0,17,0,2,0,2,2,1,0,2,0,0,0,0,0,-957.19043,-9,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,1.1380903,0,0,0,0,0,0,38.45,50.26,-9,-9,3.333333333333333,1,1,0,0,1,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 -15202,18723,33840,-9,33837,33841,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.87836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 -15202,18723,33841,33837,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.698802,9.9884424,0,6,3,-64.44487,0,2,2,2019,9,0,43,40,1,0,0,47.820129,47.820129,0,0,0,0,0,0,0,0,3.9406085,0,52.23,55.6,50.18,52.62,8.333333333333334,1,1,0,0,9,9,5,1,623.40002,2918566.8,2326430.3,515203.38,20072.053,4670.1904 -15202,18724,33842,-9,33837,33841,1,0,19,0,2,0,2,2,-9,0,3,6.8527865,6.839313,0,0,0,-951.77301,0,2,2,2019,16,4,12,22,1,4,1,8.9789982,8.9789982,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,5,1,1,0,0,5,9,2,1,389,-140255.7,0,0,0,359.45972 -15203,18725,33843,33844,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.7105961,8.5457716,0,8,-1,-103.92883,0,3,3,2019,7,0,42,60,1,0,0,13.105517,13.105517,0,0,0,0,84,1,1,0,0,0,51.36,49.48,49,48,8.333333333333334,1,1,0,0,8,12,4,0,558,85590.227,5380.1563,0,0,2852.1619 -15203,18725,33844,33843,-9,-9,1,0,62,0,0,0,2,2,-9,1,3,0,0,0,8,1,-40.837158,0,3,2,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51.36,49.48,7,1,1,0,0,0,12,4,0,558,85590.227,5380.1563,0,0,2852.1619 -15204,18726,33845,33847,-9,-9,1,0,30,1,2,0,1,1,-9,0,2,0,0,0,10,-7,1.9894457,0,2,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.88,40.36,46.16,58.62,10,2,3,0,0,2,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 -15204,18726,33846,-9,33845,33847,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.15106,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 -15204,18726,33847,33845,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.090889,9.0632582,0,9,7,17.060726,0,2,1,2019,11,1,38,41,1,1,0,29.224047,29.224047,0,0,0,0,0,1,1,0,0,0,46.16,58.62,56.88,40.36,5,2,3,0,0,8,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 -15204,18726,33848,-9,33845,33847,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2026,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,4,1,713,294089,-18248.82,272682,60552.273,3837.04 -15205,18727,33849,33850,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,59,-4,-69.913712,0,3,3,2019,24,11,0,0,4,11,0,0,0,1,.1347205,26.274136,26.032766,0,1,1,0,0,0,29.66,49.31,55.83,54.24,1.666666666666667,1,1,0,0,0,12,3,1,614,503660.13,406057.63,379840.25,0,3745.6875 -15205,18727,33850,33849,-9,-9,1,1,83,0,0,0,1,1,-9,0,5,0,7.9750023,8.089798,59,4,-91.737335,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,2.0105994,8.2145996,55.83,54.24,29.66,49.31,6.666666666666667,1,1,0,0,0,12,3,1,614,503660.13,406057.63,379840.25,0,3745.6875 -15206,18728,33851,33852,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,3.0622013,3.4696729,6,0,19.146076,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.5148263,2.6057522,58.63,31.13,51.72,36,8.333333333333334,1,1,0,0,0,12,2,1,423,802042.25,252316.13,226815.13,0,2703.2666 -15206,18728,33852,33851,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.1769776,7.6753044,6,0,-40.378952,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.0250883,7.3832746,51.72,36,58.63,31.13,5,1,1,0,1,0,12,2,1,423,802042.25,252316.13,226815.13,0,2703.2666 -15207,18729,33853,33854,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.0487714,7.2767048,22,2,-64.764816,-9,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.3035378,7.5809608,57.03,48.06,59.43,58.05,8.333333333333334,1,1,0,0,11,12,4,1,1873.5,1776486,842566.81,182408.69,0,4964.2705 -15207,18729,33854,33853,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,8.4912071,8.2929897,0,1,-2,13.329038,-9,2,2,2019,9,0,45,0,1,0,0,10.049544,10.049544,0,0,0,0,0,1,1,0,7.4063802,0,59.43,58.05,57.03,48.06,10,1,1,0,0,12,12,4,1,1873.5,1776486,842566.81,182408.69,0,4964.2705 -15208,18730,33855,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.5854135,7.3687286,0,0,-1048.1407,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1720495,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,178,856200.94,504672,213675.94,12582.222,851.08832 -15209,18731,33856,33857,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,9.4201183,9.5017738,0,4,0,97.690392,0,1,1,2019,9,0,40,45,1,0,0,37.688858,37.688858,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,4,2,0,0,10,10,5,0,1080.3334,590533.25,146355.41,522172.03,267853.97,6307.4634 -15209,18731,33857,33856,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.8018599,8.6176558,0,4,0,-49.933334,0,-9,-9,2019,7,0,38,35,1,0,0,20.659807,20.659807,0,0,0,0,0,0,0,0,2.8053405,0,57.06,57.76,54.2,57.49,10,1,1,0,0,7,10,5,0,1080.3334,590533.25,146355.41,522172.03,267853.97,6307.4634 -15209,18731,33858,-9,33857,33856,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.6685,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,10,5,0,1080.3334,590533.25,146355.41,522172.03,267853.97,6307.4634 -15210,18732,33859,33860,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,0,0,0,28,1,-4.6545758,0,2,2,2019,11,0,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,7.2512546,0,51.24,58.84,49.9,50.01,8.333333333333334,1,1,1,0,11,2,5,1,598,2310700,1818639,341478.44,0,-1348.1553 -15210,18732,33860,33859,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3883743,9.6630211,0,29,-1,171.192,0,2,3,2019,10,0,38,39,1,0,0,40.864601,40.864601,0,0,0,0,0,0,0,0,6.0850606,0,49.9,50.01,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,598,2310700,1818639,341478.44,0,-1348.1553 -15210,18733,33861,-9,33860,33859,1,1,23,0,0,0,2,2,-9,0,4,8.0378637,8.2296562,0,0,0,-1120.3761,0,1,1,2019,7,0,42,39,1,0,1,8.3160639,8.3160639,0,0,0,0,0,0,0,0,3.2276685,0,49.66,55.68,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,172,-304826.88,-67337.789,0,0,2061.5483 -15210,18734,33862,-9,33860,33859,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.45734,0,1,1,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.87,58.61,-9,-9,8.333333333333334,1,1,1,0,3,2,1,1,233,-160682.11,0,0,0,0 -15211,18735,33863,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.2976699,7.4113617,0,0,0,-1043.7317,0,-9,-9,2019,12,0,37,37,1,0,0,5.2955465,5.2955465,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,0,1,1,0,0,4,7,3,0,360,35924.656,2526.7046,0,0,906.86926 -15212,18736,33864,33865,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,5.0601802,5.0025516,33,17,56.121307,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,19.228035,0,0,1,1,0,0,5.1752958,54.52,33.21,49.76,56.93,6.666666666666667,1,1,0,0,8,11,4,0,1841.5,404532.31,178154.09,245666.84,100672.91,3134.9473 -15212,18736,33865,33864,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.8007488,8.8800173,0,33,-17,10.252799,0,3,3,2019,8,0,43,30,1,0,0,14.677266,14.677266,0,0,0,0,0,1,1,0,0,0,49.76,56.93,54.52,33.21,8.333333333333334,1,1,0,0,11,11,4,0,1841.5,404532.31,178154.09,245666.84,100672.91,3134.9473 -15213,18737,33866,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.6353073,8.9023724,0,0,0,-1048.6653,0,2,1,2019,12,1,40,0,1,1,0,19.221256,19.221256,0,0,0,0,0,0,0,0,0,0,52.76,52.99,-9,-9,8.333333333333334,4,2,0,1,11,8,5,1,441,952538.19,350078.38,457783.56,0,3361.2964 -15214,18738,33867,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,7.0998931,7.698544,7.2421279,0,0,-1057.835,0,2,2,2019,6,0,20,20,1,0,0,6.1877537,6.1877537,0,0,0,0,0,1,1,0,0,6.9260964,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,470,137939.52,404874.06,284192.44,0,1743.7212 -15215,18739,33868,33869,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,6.7799973,6.6569881,6,0,57.464474,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.8772817,42.51,17.22,48.18,61.8,5,1,1,0,0,0,12,3,1,461.5,-131074.45,0,36888.023,62769.27,2326.4475 -15215,18739,33869,33868,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,7.7979512,8.2634678,5.4926305,6,0,75.389687,0,3,2,2019,12,0,22,22,1,0,0,16.159304,16.159304,0,0,0,0,0,1,1,0,0,5.5608845,48.18,61.8,42.51,17.22,10,1,1,0,0,7,12,3,1,461.5,-131074.45,0,36888.023,62769.27,2326.4475 -15216,18740,33870,33871,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,7.426147,7.692358,0,32,-2,-192.69794,0,-9,-9,2019,17,3,40,40,1,3,0,4.4961882,4.4961882,0,0,0,0,0,0,0,0,0,0,37.15,56.13,50,47,6.666666666666667,1,1,0,0,9,11,3,1,769,431960.16,83853.68,203252.14,47917.418,1452.7042 -15216,18740,33871,33870,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.9902511,6.76512,32,2,94.015381,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0693684,50,47,37.15,56.13,8.333333333333334,1,1,0,0,8,11,3,1,769,431960.16,83853.68,203252.14,47917.418,1452.7042 -15217,18741,33872,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.9334583,7.2721424,0,0,-1006.2833,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.1374414,6.8493609,47.46,55.2,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,86,495765.44,70505.125,134004.72,0,1223.203 -15218,18742,33873,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.0636683,8.0833759,0,0,0,-1010.6751,0,2,2,2019,9,0,28,37,1,0,0,13.069232,13.069232,0,0,0,0,14.5,0,0,0,.77337068,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,1389,148257.11,379311.09,118710.04,29786.504,1467.2222 -15218,18743,33874,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.8018656,7.9080482,0,0,0,-991.18274,0,2,2,2019,10,0,25,25,1,0,0,12.837095,12.837095,0,0,0,0,0,0,0,0,5.0162587,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,111,721023.19,315087.97,139178.72,36755.434,852.82703 -15219,18744,33875,33876,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,7.8846035,7.6247568,0,6,-4,125.58754,0,2,2,2019,7,1,37,37,1,1,0,7.8902292,7.8902292,0,0,0,0,0,0,0,0,0,0,46.5,58.26,47.09,52.49,6.666666666666667,1,1,0,0,11,1,5,0,1604.5,28733.922,106762.39,122758.84,76611.25,3042.8047 -15219,18744,33876,33875,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.3874083,8.5253,0,6,4,-2.3947544,0,-9,-9,2019,7,0,46,14,1,0,0,12.813859,12.813859,0,0,0,0,0,0,0,0,0,0,47.09,52.49,46.5,58.26,8.333333333333334,1,1,0,0,4,1,5,0,1604.5,28733.922,106762.39,122758.84,76611.25,3042.8047 -15220,18745,33877,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,1,0,7.2245593,7.1498547,0,0,-883.2569,0,2,2,2019,23,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,6.6119242,6.9941149,40.22,30.64,-9,-9,5,1,1,0,0,8,1,3,1,502,-481575.78,-16191.383,0,0,1633.2621 -15220,18746,33878,-9,33877,-9,1,0,32,0,0,0,1,1,-9,0,3,8.3143368,8.3455839,0,0,0,-945.34674,0,1,1,2019,11,0,77,37,1,0,0,4.0130682,4.0130682,0,0,0,0,0,1,1,0,3.0030351,0,47.72,45.9,-9,-9,6.666666666666667,1,1,0,0,8,1,4,1,216,-307921.63,-7508.3862,27155.668,90941.414,1514.285 -15221,18747,33879,33881,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.0563488,9.0825291,0,20,-1,106.28479,0,2,1,2019,9,1,34,34,1,1,0,30.366646,30.366646,0,0,0,0,0,1,1,0,4.5552239,0,41.06,62.04,59.15,49.67,6.666666666666667,1,1,0,0,12,1,5,1,342.33334,459095.25,227467.2,265306.34,108837.06,3346.7771 -15221,18747,33880,-9,33881,33879,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.9768,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,342.33334,459095.25,227467.2,265306.34,108837.06,3346.7771 -15221,18747,33881,33879,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,0,0,0,20,1,-114.49818,0,3,3,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.15,49.67,41.06,62.04,6.666666666666667,1,1,0,0,0,1,5,1,342.33334,459095.25,227467.2,265306.34,108837.06,3346.7771 -15222,18748,33882,33883,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.509398,6.2050738,0,35,2,-52.292191,0,2,1,2019,8,0,68,60,1,0,0,.92027211,.92027211,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.77,55.87,6.666666666666667,1,1,0,0,10,4,2,1,271.5,276877.5,-15244.453,138007.33,-2634.6096,336.92856 -15222,18748,33883,33882,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.3516464,6.3484125,0,35,-2,-53.80925,0,-9,-9,2019,9,0,70,60,1,0,0,.93330508,.93330508,0,0,0,0,0,0,0,0,0,0,54.77,55.87,54.79,55.86,8.333333333333334,1,1,0,0,13,4,2,1,271.5,276877.5,-15244.453,138007.33,-2634.6096,336.92856 -15223,18749,33884,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,5,8.3542414,8.058713,0,0,0,-1039.9854,-9,-9,-9,2019,7,0,39,0,1,0,0,11.585944,11.585944,0,0,0,0,0,0,0,0,.67086291,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,5,12,4,0,875,5882.0254,10160.185,0,0,1662.394 -15224,18750,33885,-9,33886,33887,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.66888,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 -15224,18750,33886,33887,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,1,2,0,-9,2,-9,2019,34,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,20.34,39.36,47,52,5,1,1,0,0,0,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 -15224,18750,33887,33886,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,0,0,0,1,-2,0,-9,-9,-9,2019,31,12,0,0,3,12,0,0,0,0,0,0,0,120,1,1,0,0,0,47,52,20.34,39.36,6.666666666666667,1,1,0,1,2,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 -15224,18750,33888,-9,33886,33887,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.4075,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,1,1,406,58754.711,20034.098,136848,98048.344,374.24039 -15225,18751,33889,-9,33890,33891,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-964.59094,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 -15225,18751,33890,33891,-9,-9,1,0,30,2,2,0,2,2,-9,0,4,0,0,0,4,-2,-27.551676,0,2,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,3,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 -15225,18751,33891,33890,-9,-9,1,1,32,2,2,0,1,1,-9,0,4,8.5261688,8.5037012,0,4,2,-54.795273,0,-9,-9,2019,6,0,37,37,1,0,0,22.633396,22.633396,0,0,0,0,0,1,1,0,8.4152508,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,5,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 -15225,18751,33892,-9,33890,33891,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.37,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,1065,437891.81,98299.828,319075.88,190424.98,4111.8057 -15226,18752,33893,-9,33894,33895,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1039.6826,-9,1,2,2019,12,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,29.96,56.86,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 -15226,18752,33894,33895,-9,-9,1,0,33,0,2,0,1,1,-9,1,1,0,6.0437293,6.2897663,2,-1,-49.297344,0,2,2,2019,19,7,0,34,3,7,0,0,0,0,0,0,0,0,1,1,0,6.0747094,0,40.31,14.24,52.99,51.28,5,1,1,0,1,3,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 -15226,18752,33895,33894,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,7.6874056,7.4216466,0,2,1,-119.48592,0,-9,-9,2019,9,1,20,15,1,1,0,12.521321,12.521321,0,0,0,0,0,1,1,0,0,0,52.99,51.28,40.31,14.24,6.666666666666667,1,1,0,1,5,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 -15226,18752,33896,-9,33894,33895,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-845.573,-9,1,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,0,1745.25,51465.797,3019.6006,0,0,1562.1783 -15227,18753,33897,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,0,0,0,0,0,-993.83051,0,1,1,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,3.333333333333333,1,1,1,0,5,4,1,0,487,-2731.0676,0,0,0,-199.70009 -15228,18754,33898,-9,33901,33899,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.965,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 -15228,18754,33899,33901,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.9494133,8.7439566,0,8,1,-17.416264,0,3,3,2019,6,0,70,40,1,0,0,11.835824,11.835824,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 -15228,18754,33900,-9,33901,33899,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.29279,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 -15228,18754,33901,33899,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,8.2383232,8.2687016,0,8,-1,113.30762,0,2,3,2019,5,0,36,37,1,0,0,11.49525,11.49525,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,3442.25,561768.69,392095.97,241328.98,125403.41,4528.9629 -15229,18755,33902,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.6491776,8.7507191,0,0,0,-1159.9382,0,2,3,2019,26,10,42,39,1,10,0,15.558595,15.558595,0,0,0,0,14.5,0,0,0,4.3645248,0,15.08,51.14,-9,-9,1.666666666666667,1,1,0,0,7,2,5,1,1443,153929.89,101331.01,138973.66,45846.676,2144.7566 -15229,18756,33903,-9,33902,-9,1,1,24,0,0,0,1,1,-9,0,3,8.5323334,8.4957724,0,0,0,-1043.3936,-9,1,-9,2019,9,0,45,0,1,0,1,14.031041,14.031041,0,0,0,0,0,0,0,0,2.2765286,0,49.5,48.94,-9,-9,6.666666666666667,1,1,0,0,2,2,5,1,218,127816.96,125889.55,150077.84,109661.77,1800.3511 -15229,18757,33904,-9,33902,-9,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.8996,1,1,-9,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48.41,46.41,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,624,108417.44,0,0,0,0 -15230,18758,33905,33906,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.8274984,9.0275307,7.2102027,12,-1,160.6629,0,2,2,2019,6,0,42,38,1,0,0,18.600912,18.600912,0,0,0,0,0,1,1,0,2.4912121,7.6188745,57.16,56.15,54.57,28.57,8.333333333333334,1,1,0,0,11,10,5,1,1574.5,397126.94,257619.56,456277.38,205802.66,5067.4326 -15230,18758,33906,33905,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.6401606,7.4906216,0,13,1,-187.38383,0,3,3,2019,10,0,3,3,1,0,0,91.994911,91.994911,0,0,0,0,2,1,1,0,0,0,54.57,28.57,57.16,56.15,5,1,1,0,0,7,10,5,1,1574.5,397126.94,257619.56,456277.38,205802.66,5067.4326 -15231,18759,33907,33908,-9,-9,1,1,29,0,0,0,1,1,0,0,3,0,0,0,2,-1,123.92239,-9,-9,-9,2019,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,51.33,35.82,46.16,58.62,5,1,1,0,0,6,1,3,0,1199.5,-245182.53,-19934.678,0,0,1436.4727 -15231,18759,33908,33907,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.9014902,7.9381647,0,2,1,31.87499,0,-9,-9,2019,12,0,38,38,1,0,0,10.173714,10.173714,0,0,0,0,0,0,0,0,0,0,46.16,58.62,51.33,35.82,8.333333333333334,1,1,0,0,9,1,3,0,1199.5,-245182.53,-19934.678,0,0,1436.4727 -15232,18760,33909,33910,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,44,-5,-33.415699,0,2,3,2019,20,8,0,14,4,8,0,0,0,1,0,0,0,0,1,1,0,0,0,42.65,36.18,48.87,58.55,3.333333333333333,1,1,0,0,8,2,2,1,1058,653887.81,316889.88,104561.33,0,1545.3719 -15232,18760,33910,33909,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.0514841,7.1733313,43,5,19.587173,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.151969,48.87,58.55,42.65,36.18,8.333333333333334,1,1,0,0,0,2,2,1,1058,653887.81,316889.88,104561.33,0,1545.3719 -15233,18761,33911,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1031.0426,0,2,-9,2019,9,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,4.3907127,0,58.05,54.52,-9,-9,8.333333333333334,1,1,1,0,11,5,1,1,1281,-246494.42,0,0,0,-185.11877 -15234,18762,33912,-9,-9,33914,1,0,64,0,0,0,2,2,-9,0,2,0,7.5400615,7.5974913,4,11,27.557322,0,2,2,2019,33,11,0,0,4,11,0,0,0,0,0,0,0,120,1,1,0,0,7.4100413,14.85,61.42,35.1,40.24,0,1,1,0,0,7,6,5,1,743,415884.44,271346.97,0,0,726.20404 -15234,18763,33913,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.8297501,8.7218246,0,4,-11,-145.71048,0,-9,-9,2019,16,5,43,42,1,5,0,16.374649,16.374649,0,0,0,0,14.5,1,1,0,0,0,35.1,40.24,14.85,61.42,3.333333333333333,1,1,0,0,10,6,5,1,55,136883.2,-50200.633,0,0,2324.541 -15234,18764,33914,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,0,0,0,0,-924.17194,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4821224,0,55,45,-9,-9,8,4,6,0,0,0,6,1,1,370,-75952.297,0,169190.81,0,1787.5767 -15235,18765,33915,33917,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,9.2835941,8.8221998,0,9,2,12.251246,0,2,2,2019,13,1,45,55,1,1,0,24.546772,24.546772,0,0,0,0,0,1,1,0,3.8156207,0,48.74,50.46,40.57,46.62,6.666666666666667,1,1,0,0,10,4,5,1,765.66669,427608.66,101165.74,223532.53,176462.09,5157.6069 -15235,18765,33916,-9,33917,33915,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-932.03217,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,4,5,1,765.66669,427608.66,101165.74,223532.53,176462.09,5157.6069 -15235,18765,33917,33915,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,7.8321948,7.6087489,0,9,-2,-2.4504037,0,2,1,2019,11,0,30,30,1,0,0,8.4637308,8.4637308,0,0,0,0,0,1,1,0,0,0,40.57,46.62,48.74,50.46,3.333333333333333,2,3,0,0,10,4,5,1,765.66669,427608.66,101165.74,223532.53,176462.09,5157.6069 -15236,18766,33918,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.4981651,9.6510782,5.4529271,0,0,-1002.1977,0,2,2,2019,9,0,45,43,1,0,0,35.454906,35.454906,0,0,0,0,0,0,0,0,5.5588603,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,210,2363866,1263544.5,546274,133575,3610.4915 -15237,18767,33919,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.22223,8.685504,0,0,0,-1003.8945,0,2,1,2019,19,7,52,50,1,7,0,18.831579,18.831579,0,0,0,0,0,0,0,0,0,0,33.37,60.58,-9,-9,3.333333333333333,1,1,0,0,12,8,5,1,788,513644.38,173917.72,195596.33,28636.93,2674.1155 -15238,18768,33920,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.9484568,6.052125,0,0,-1082.9318,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0734172,5.5784292,52.29,44.78,-9,-9,10,1,1,0,0,0,4,2,0,154,241515.39,-60507.746,168804.77,0,70.796829 -15239,18769,33921,33922,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.4011393,8.4764738,35,11,58.124874,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5884651,7.8831592,55.96,49.93,54.2,57.49,8.333333333333334,1,1,0,0,1,9,3,1,831.5,1453757.5,701569.25,489580.13,0,2504.2104 -15239,18769,33922,33921,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,4.0520992,3.9439099,35,-11,10.821835,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7576571,3.9689887,54.2,57.49,55.96,49.93,8.333333333333334,1,1,0,0,11,9,3,1,831.5,1453757.5,701569.25,489580.13,0,2504.2104 -15239,18770,33923,-9,33922,33921,1,1,27,0,0,0,2,2,-9,0,4,7.9789481,7.9325252,0,0,0,-1049.7897,0,2,2,2019,17,6,35,35,1,6,0,9.4943771,9.4943771,0,0,0,0,0,1,1,0,4.726603,0,32.91,62.27,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,374,-434102.78,0,0,0,880.53711 -15240,18771,33924,33927,-9,-9,1,0,28,1,3,0,2,2,-9,0,4,0,0,0,6,-5,-126.28532,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,56.19,46.16,8.333333333333334,1,1,0,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 -15240,18771,33925,-9,33924,33927,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1018.4568,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 -15240,18771,33926,-9,33924,33927,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.33502,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 -15240,18771,33927,33924,-9,-9,1,1,33,1,3,0,2,2,-9,0,2,7.9714079,8.2673626,0,6,5,16.023397,0,2,2,2019,8,0,40,38,1,0,0,6.8144822,6.8144822,0,0,0,0,0,1,1,0,0,0,56.19,46.16,41.3,60.77,6.666666666666667,1,1,0,1,4,6,2,0,1870.8,45359.109,0,0,0,1618.6785 -15240,18771,33928,-9,33924,33927,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.4167,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,1870.8,45359.109,0,0,0,1618.6785 -15241,18772,33929,33930,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.7292624,8.3229218,33,-1,-122.56995,0,-9,-9,2019,6,0,0,36,4,0,0,0,0,0,0,0,0,71.5,0,0,0,0,8.0724154,48.89,50.46,60.86,37.29,6.666666666666667,1,1,0,0,10,9,3,1,1543,706791,266568.78,240663.91,0,1733.0098 -15241,18772,33930,33929,-9,-9,1,1,60,0,0,0,1,1,-9,0,1,0,0,0,37,1,31.312078,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.7432704,0,60.86,37.29,48.89,50.46,5,1,1,0,0,5,9,3,1,1543,706791,266568.78,240663.91,0,1733.0098 -15241,18773,33931,-9,33929,33930,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-801.75977,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,388,-290831.94,0,0,0,0 -15242,18774,33932,33933,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.7752452,4.512054,56,-5,-55.087181,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,1.8708591,0,0,71.5,1,1,0,4.9561105,4.2183275,51.73,56.3,39.23,22.52,8.333333333333334,1,1,0,0,0,4,3,1,174,1007216.5,464498.94,294259.13,0,2516.8579 -15242,18774,33933,33932,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,8.0383787,8.0403576,56,5,-99.035286,0,3,3,2019,16,4,0,0,4,4,0,0,0,1,0,17.042048,0,0,1,1,0,0,7.6966362,39.23,22.52,51.73,56.3,6.666666666666667,1,1,0,0,0,4,3,1,174,1007216.5,464498.94,294259.13,0,2516.8579 -15243,18775,33934,-9,33935,33936,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.4661,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1024.3334,1370335.1,263711.75,752054.5,0,4023.1658 -15243,18775,33935,33936,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.6071992,7.420682,0,6,-6,71.619408,0,2,1,2019,33,12,37,30,1,12,0,6.2946796,6.2946796,0,0,0,0,0,1,1,0,2.3916004,0,18.04,62.43,34.82,54.38,6.666666666666667,1,1,0,0,7,10,5,1,1024.3334,1370335.1,263711.75,752054.5,0,4023.1658 -15243,18775,33936,33935,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.018198,9.0663567,0,6,6,-28.305769,0,2,2,2019,23,8,63,73,1,8,0,14.157992,14.157992,0,0,0,0,0,1,1,0,2.521631,0,34.82,54.38,18.04,62.43,3.333333333333333,1,1,0,0,7,10,5,1,1024.3334,1370335.1,263711.75,752054.5,0,4023.1658 -15243,18776,33937,-9,33935,33936,1,0,18,0,1,0,2,2,1,0,5,7.3387456,7.3937173,0,0,0,-1090.7766,-9,2,2,2019,9,0,12,0,1,0,1,19.08852,19.08852,0,0,0,0,0,1,1,0,3.3844066,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,1,10,3,1,874,-234163.58,0,0,0,626.55164 -15244,18777,33938,-9,33941,33940,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.26221,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 -15244,18777,33939,-9,33941,33940,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-930.73053,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 -15244,18777,33940,33941,-9,-9,1,1,39,1,4,0,2,2,-9,0,2,8.6220474,8.4602499,0,19,5,-53.642498,0,2,1,2019,11,1,38,38,1,1,0,14.764328,14.764328,0,0,0,0,0,1,1,0,0,0,41.58,52.86,57.06,57.76,5,1,1,0,0,8,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 -15244,18777,33941,33940,-9,-9,1,0,34,1,4,0,2,2,-9,0,5,7.0676341,7.2279654,0,19,-5,-51.590408,0,2,2,2019,7,0,24,24,1,0,0,7.223959,7.223959,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.58,52.86,10,1,1,0,0,8,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 -15244,18777,33942,-9,33941,33940,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-954.76764,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 -15244,18777,33943,-9,33941,33940,1,0,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-925.57202,-9,2,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.1,57.51,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,386.16666,138357.81,31797.268,0,0,3371.4973 -15245,18778,33944,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,9.2451153,9.0701046,4.2950902,0,0,-1098.132,0,2,2,2019,10,0,46,40,1,0,0,21.402527,21.402527,0,0,0,0,0,0,0,0,4.732533,4.421289,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,178,794656.25,235345.7,175341.7,130039,3283.6643 -15246,18779,33945,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.589808,7.6666436,0,0,0,-992.63861,-9,2,2,2019,17,5,40,0,1,5,0,5.5007319,5.5007319,0,0,0,0,0,1,1,0,1.9308734,0,38.68,55.46,-9,-9,1.666666666666667,1,1,0,0,4,12,3,0,340,-277070.69,14648.339,0,0,391.11734 -15247,18780,33946,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,9.6067305,9.7159777,0,0,-893.93073,0,2,3,2019,15,3,0,25,3,3,0,0,0,0,0,0,0,7,0,0,0,8.4880762,8.5444775,41.06,56.51,-9,-9,6.666666666666667,1,1,1,0,10,4,5,1,145,1156886.1,575390.88,126054.54,0,7344.1582 -15248,18781,33947,-9,33948,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-892.20844,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,2,0,426,-44317.117,0,0,0,753.78711 -15248,18781,33948,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.0913892,7.203506,0,0,0,-971.04388,0,-9,-9,2019,12,1,20,20,1,1,0,7.1163015,7.1163015,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,10,2,2,0,426,-44317.117,0,0,0,753.78711 -15249,18782,33949,-9,33951,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.43756,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,347,141040.09,-77875.484,70933.336,73626.359,1519.9198 -15249,18782,33950,-9,33951,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.40527,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,347,141040.09,-77875.484,70933.336,73626.359,1519.9198 -15249,18782,33951,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1265478,8.3539534,0,0,0,-864.14349,0,2,2,2019,18,6,35,36,1,6,0,8.6404839,8.6404839,0,0,0,0,0,1,1,0,0,0,34.92,61.04,-9,-9,3.333333333333333,1,1,0,0,12,2,3,0,347,141040.09,-77875.484,70933.336,73626.359,1519.9198 -15250,18783,33952,-9,33955,33953,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-914.14612,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 -15250,18783,33953,33955,-9,-9,1,1,28,2,2,0,2,2,-9,0,3,0,0,0,6,5,90.804062,0,-9,-9,2019,11,0,0,60,3,0,0,0,0,0,0,0,0,0,1,1,0,4.1579471,0,53.47,41.64,31.42,63.99,8.333333333333334,1,1,1,0,10,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 -15250,18783,33954,-9,33955,33953,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-960.39398,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 -15250,18783,33955,33953,-9,-9,1,0,23,2,2,0,2,2,-9,0,5,7.4141755,7.3017001,0,6,-5,63.889244,0,-9,-9,2019,14,2,20,0,1,2,0,10.283801,10.283801,0,0,0,0,0,1,1,0,0,0,31.42,63.99,53.47,41.64,8.333333333333334,1,1,0,0,5,6,2,1,1000,104806.83,56509.109,97377.789,0,925.76367 -15251,18784,33956,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,6.3182011,6.7101655,0,0,-1097.5499,0,3,-9,2019,21,9,0,0,4,9,0,0,0,1,0,3.8704138,0,0,1,1,0,2.0404208,6.2884054,27.16,26.82,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,274,213372.23,133886.78,111518.48,0,1532.1659 -15252,18785,33957,33958,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1882954,7.9488211,0,2,1,-2.257365,0,-9,-9,2019,1,0,65,57,1,0,0,7.0626192,7.0626192,0,0,0,0,0,0,0,0,.99281508,0,49.04,55.86,46.33,55.93,6.666666666666667,1,1,0,0,4,9,4,1,685.5,125781.16,-36588.172,0,0,1970.0342 -15252,18785,33958,33957,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.3202457,7.5319104,0,2,-1,-71.938026,0,2,1,2019,11,1,28,38,1,1,0,6.0864863,6.0864863,0,0,0,0,0,0,0,0,2.4274194,0,46.33,55.93,49.04,55.86,6.666666666666667,1,1,0,0,4,9,4,1,685.5,125781.16,-36588.172,0,0,1970.0342 -15253,18786,33959,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.9003906,6.9489994,0,0,-864.43951,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6766715,7.4194674,53.06,45.59,-9,-9,5,1,1,0,0,5,11,2,1,1761,408543.91,139049.89,0,0,2398.3853 -15254,18787,33960,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.1908417,7.0534744,0,0,-963.20697,0,2,3,2019,11,1,0,0,4,1,0,0,0,1,0,20.478321,0,0,1,1,0,6.304379,7.3500705,50.27,36.22,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1386,543635,170934.64,235166.45,0,1732.7052 -15255,18788,33961,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.278193,6.6543794,0,0,-1052.8099,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0827374,6.4273548,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,796,339965.81,66278.289,0,0,1263.7295 -15256,18789,33962,33963,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.6160722,7.2805448,0,2,0,85.105789,0,3,-9,2019,7,0,25,30,1,0,0,8.0119715,8.0119715,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.54,33.62,8.333333333333334,1,1,0,0,10,5,3,1,400,-194926.63,212392.03,122632.09,31658.09,1605.6608 -15256,18789,33963,33962,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.4451308,7.2185712,0,2,0,54.628452,0,3,3,2019,12,1,26,25,1,1,0,9.4438314,9.4438314,0,0,0,0,0,0,0,0,0,0,53.54,33.62,57.16,56.15,10,4,2,0,0,8,5,3,1,400,-194926.63,212392.03,122632.09,31658.09,1605.6608 -15257,18790,33964,33965,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9841242,8.2890787,0,7,-7,77.757423,0,3,2,2019,5,0,36,0,1,0,0,9.7503691,9.7503691,0,0,0,0,0,1,1,0,0,0,57.49,39.89,56.37,40.62,8.333333333333334,1,1,0,0,8,6,4,1,763,25980.547,50204.074,116472.44,62688.598,3213.2473 -15257,18790,33965,33964,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.8966985,6.6710706,7,7,-127.4925,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5087738,0,56.37,40.62,57.49,39.89,8.333333333333334,1,1,0,0,6,6,4,1,763,25980.547,50204.074,116472.44,62688.598,3213.2473 -15258,18791,33966,33967,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1364565,8.2696133,9,6,-56.390705,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,4.5718212,7.6556649,37.62,41.38,36.4,32.32,3.333333333333333,3,4,0,0,1,6,3,1,766.5,1132993.4,743875,437806.13,0,2190.2397 -15258,18791,33967,33966,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,0,0,9,-6,10.976408,0,3,1,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,36.4,32.32,37.62,41.38,3.333333333333333,2,3,0,0,6,6,3,1,766.5,1132993.4,743875,437806.13,0,2190.2397 -15259,18792,33968,-9,33969,33970,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.0605,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,0,872.33331,183989.2,75873.547,206038.61,124219.6,5264.9146 -15259,18792,33969,33970,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,8.6384201,8.5502758,0,5,-6,-22.159666,0,1,2,2019,9,1,38,37,1,1,0,13.666689,13.666689,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.77,57.64,10,1,1,0,0,5,2,5,0,872.33331,183989.2,75873.547,206038.61,124219.6,5264.9146 -15259,18792,33970,33969,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,9.0911741,9.1519518,0,5,6,13.324712,0,-9,-9,2019,7,0,50,43,1,0,0,20.420555,20.420555,0,0,0,0,0,1,1,0,0,0,48.77,57.64,57.06,57.76,8.333333333333334,1,1,0,0,5,2,5,0,872.33331,183989.2,75873.547,206038.61,124219.6,5264.9146 -15260,18793,33971,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,4.6608472,4.8364692,0,0,-949.72089,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,2.4356947,0,0,1,1,0,2.9150465,4.7738981,47.63,23.4,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,522,52540.02,0,0,0,1717.7622 -15261,18794,33972,33973,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.1052637,8.866724,0,7,-1,-40.190475,0,1,2,2019,19,7,48,42,1,7,0,23.919962,23.919962,0,0,0,0,0,1,1,0,1.4772668,0,35.81,64.81,41.08,58.41,8.333333333333334,1,1,0,0,10,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 -15261,18794,33973,33972,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,9.0517921,9.1824179,0,7,1,-86.748337,0,2,2,2019,7,0,77,42,1,0,0,14.038248,14.038248,0,0,0,0,0,1,1,0,3.0746362,0,41.08,58.41,35.81,64.81,8.333333333333334,1,1,0,0,11,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 -15261,18794,33974,-9,33972,33973,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.6946,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 -15261,18794,33975,-9,33972,33973,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.2514,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,574.5,183884.97,-97683.141,254564.47,84871.344,6005.8955 -15262,18795,33976,33977,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,9.3690386,9.3506441,0,40,3,-26.429995,0,1,2,2019,6,0,50,47,1,0,0,28.076075,28.076075,0,0,0,0,2,0,0,0,0,0,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,10,9,5,1,784.5,1503693,722738.13,593883.38,0,5246.8721 -15262,18795,33977,33976,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.4450197,8.5554228,0,40,-3,-18.874269,0,2,2,2019,5,0,44,44,1,0,0,13.188261,13.188261,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.06,57.76,6.666666666666667,1,1,0,0,8,9,5,1,784.5,1503693,722738.13,593883.38,0,5246.8721 -15263,18796,33978,33979,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.771183,6.6652513,0,41,-6,-81.338554,0,3,2,2019,11,0,16,16,1,2,0,7.2342849,7.2342849,0,0,0,0,0,1,1,0,0,0,49,48,52,47,7,2,3,0,0,8,6,2,1,396.5,464935.5,-38364.148,217617.94,0,823.87097 -15263,18796,33979,33978,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,5.9585505,5.73807,41,6,29.651251,0,3,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.9738579,52,47,49,48,7,2,3,0,0,0,6,2,1,396.5,464935.5,-38364.148,217617.94,0,823.87097 -15264,18797,33980,33981,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,2,29.835321,0,2,3,2019,14,4,0,0,4,4,0,0,0,0,0,0,0,14.5,1,1,0,1.8853257,0,47.18,51.36,51.42,48.12,8.333333333333334,1,1,0,0,0,6,3,1,1444,1275067.3,354261.5,263839.13,0,2057.4937 -15264,18797,33981,33980,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.6065397,7.2680645,54,-2,-141.91223,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.4375706,7.375103,51.42,48.12,47.18,51.36,10,1,1,0,0,0,6,3,1,1444,1275067.3,354261.5,263839.13,0,2057.4937 -15265,18798,33982,-9,33983,-9,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2301,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1045.6666,85307.281,0,203466.38,104478.36,2996.0781 -15265,18798,33983,-9,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,8.087121,8.4530401,6.1541657,0,0,-1009.9226,0,3,2,2019,12,3,16,22,1,3,0,18.551582,18.551582,0,0,0,0,0,1,1,0,6.0906405,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,7,3,0,1045.6666,85307.281,0,203466.38,104478.36,2996.0781 -15265,18798,33984,-9,33983,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.6273,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,1045.6666,85307.281,0,203466.38,104478.36,2996.0781 -15266,18799,33985,33986,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,4.7882309,4.8584266,0,37,1,151.22997,0,2,3,2019,13,1,4,4,1,1,0,3.8270652,3.8270652,0,0,0,0,2,0,0,0,4.327682,0,48.87,58.55,54.1,59.11,3.333333333333333,1,1,0,0,7,9,2,1,280,32703.027,0,0,0,404.10196 -15266,18799,33986,33985,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,0,0,37,-1,-34.418987,0,-9,2,2019,8,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,.40468967,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,1,0,9,9,2,1,280,32703.027,0,0,0,404.10196 -15266,18800,33987,-9,33985,33986,1,1,22,0,0,0,2,2,-9,0,4,8.3843527,8.5484924,0,0,0,-933.3053,0,2,2,2019,6,0,43,42,1,0,1,14.531055,14.531055,0,0,0,0,0,0,0,0,2.2186019,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,783,305811.47,0,0,0,2027.9255 -15266,18801,33988,-9,33985,33986,1,1,22,0,0,0,2,2,-9,0,3,7.8375907,7.4567566,0,0,0,-889.3064,0,2,2,2019,7,0,44,47,1,0,1,7.6828585,7.6828585,0,0,0,0,0,0,0,0,1.6072763,0,48.26,50.7,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,924,-282232.66,-27096.459,0,0,1226.4918 -15267,18802,33989,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.8849516,8.7588854,6.6033649,0,0,-976.09991,0,1,2,2019,12,0,48,42,1,0,0,19.430182,19.430182,0,0,0,0,0,1,1,0,4.3779745,6.9161382,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,1015,505664.94,403583.78,391688.44,144886.06,2887.7952 -15267,18803,33990,-9,33989,-9,1,0,20,0,0,0,2,2,-9,0,4,0,6.4539957,6.7542577,0,0,-950.47272,1,1,-9,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,6.2150798,0,55.34,54.26,-9,-9,6.666666666666667,1,1,0,0,4,10,2,1,1401,30435.287,0,0,0,306.59421 -15268,18804,33991,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-978.24841,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9378393,0,56.22,45.75,-9,-9,10,1,1,0,0,0,5,1,0,800,30626.986,0,0,0,711.63025 -15269,18805,33992,33993,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.1092596,8.322052,0,4,-2,39.710194,-9,-9,-9,2019,6,0,35,0,1,0,0,12.352901,12.352901,0,0,0,0,2,0,0,0,3.5087948,0,61.27,46.03,58.15,52.91,0,1,1,0,0,12,11,5,1,2582,518277.38,83745.852,64551.414,65301.648,5452.9419 -15269,18805,33993,33992,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9453802,9.5200758,0,4,2,-22.92617,0,2,3,2019,7,0,35,40,1,0,0,39.399075,39.399075,0,0,0,0,2,0,0,0,6.3990316,0,58.15,52.91,61.27,46.03,8.333333333333334,1,1,0,0,12,11,5,1,2582,518277.38,83745.852,64551.414,65301.648,5452.9419 -15270,18806,33994,-9,33996,33995,1,0,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-992.27655,-9,1,1,2019,21,0,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,4,1,1,-9,0,0,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 -15270,18806,33995,33996,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.4289608,8.4239445,0,10,2,8.4241438,0,2,2,2019,12,0,38,38,1,0,0,13.943761,13.943761,0,0,0,0,0,1,1,0,0,0,58.15,52.91,45.73,57.57,6.666666666666667,1,1,0,0,10,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 -15270,18806,33996,33995,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.0792799,7.9529061,0,10,-2,116.39662,0,3,3,2019,13,1,50,45,1,1,0,8.2637339,8.2637339,0,0,0,0,0,1,1,0,3.543004,0,45.73,57.57,58.15,52.91,5,1,1,0,0,7,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 -15270,18806,33997,-9,33996,33995,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1087.1498,-9,1,1,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,2,4,1,1339.5,244577.88,80513.398,140794.95,42075.977,3624.1445 -15271,18807,33998,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.4686508,8.4730549,0,0,0,-905.52362,0,2,2,2019,13,2,48,51,1,2,0,10.854488,10.854488,0,0,0,0,0,0,0,0,.40582845,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,1593,669168.81,167446.67,408791.63,222123.3,1563.5338 -15272,18808,33999,-9,-9,-9,1,0,98,0,0,0,3,3,-9,0,3,0,0,0,0,0,-936.08521,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.7098768,0,55,43,-9,-9,8,3,4,0,0,0,8,1,0,1100,278015.44,0,0,0,526.01355 -15273,18809,34000,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-866.52087,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,27,1,1,0,0,0,56.01,27.43,-9,-9,6.666666666666667,1,1,0,0,3,10,1,1,937,394150.31,0,0,0,1082.3718 -15274,18810,34001,-9,34004,34002,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.21149,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 -15274,18810,34002,34004,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.5168123,8.4950838,0,19,2,-11.627484,0,2,3,2019,8,0,40,40,1,0,0,13.835501,13.835501,0,0,0,0,0,1,1,0,0,0,49.87,50.46,40.95,24.93,6.666666666666667,1,1,0,0,10,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 -15274,18810,34003,-9,34004,34002,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.66235,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 -15274,18810,34004,34002,-9,-9,1,0,39,0,3,0,2,2,-9,0,1,0,0,0,19,-2,59.452923,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.95,24.93,49.87,50.46,5,1,1,0,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 -15274,18810,34005,-9,34004,34002,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-964.27728,-9,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.54,43.28,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 -15274,18810,34006,-9,34004,34002,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.0625,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 -15274,18810,34007,-9,34004,34002,1,1,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1017.2392,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,10,3,1,783.85712,156729.03,27047.789,0,0,2726.4932 -15275,18811,34008,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.2276735,7.1802859,0,0,-995.04578,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,7.1290641,36.72,22.64,-9,-9,5,1,1,0,0,0,12,2,0,765,236299.63,190191,0,0,689.91797 -15275,18812,34009,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1055.8047,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,22.674257,0,0,1,1,0,0,0,53.24,26.04,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,579,-178820.02,0,0,0,1576.5057 -15275,18813,34010,-9,-9,34009,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1031.4551,0,-9,3,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,42,1,1,0,0,0,49.63,54.22,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,256,406942.75,-41378.184,199050.28,0,737.38831 -15276,18814,34011,34012,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.1607132,9.3172588,0,17,3,-86.901817,0,2,1,2019,13,3,48,0,1,3,0,23.240822,23.240822,0,0,0,0,0,1,1,0,0,0,46.83,42.54,51.1,52.08,3.333333333333333,1,1,0,0,10,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 -15276,18814,34012,34011,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.4139957,8.2494469,0,17,-3,-54.306404,0,2,2,2019,10,1,28,28,1,1,0,19.670626,19.670626,0,0,0,0,0,1,1,0,.80465347,0,51.1,52.08,46.83,42.54,8.333333333333334,1,1,0,0,12,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 -15276,18814,34013,-9,34012,34011,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.2704,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 -15276,18814,34014,-9,34012,34011,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-910.12634,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,5,0,452.25,1852856.9,1876554.3,209444.98,78824.484,5709.127 -15277,18815,34015,-9,34016,34017,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.015,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 -15277,18815,34016,34017,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,6.8980246,7.1695771,0,7,1,-67.523735,0,2,2,2019,7,0,15,23,1,0,0,7.2295122,7.2295122,0,0,0,0,0,1,1,0,.89626306,0,52,54.51,52.13,57.22,8.333333333333334,1,1,0,0,8,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 -15277,18815,34017,34016,-9,-9,1,1,29,1,2,0,2,2,-9,0,5,7.6137166,7.9815927,6.2442136,7,-1,-71.734314,0,1,2,2019,9,0,37,37,1,0,0,7.9548912,7.9548912,0,0,0,0,0,1,1,0,6.6229391,0,52.13,57.22,52,54.51,8.333333333333334,1,1,0,0,10,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 -15277,18815,34018,-9,34016,34017,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.935,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1095,324247.66,-8150.5366,128706.63,85898.141,2884.1184 -15278,18816,34019,34020,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.4025841,6.1169796,10,-1,46.69862,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,29.144444,0,0,1,1,0,0,6.227591,49.12,37.89,51.33,33.18,8.333333333333334,1,1,0,0,0,11,4,1,1591,941383,495186.44,0,0,4199.6875 -15278,18816,34020,34019,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,8.3929443,8.2789707,10,1,-53.467354,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,5.9705873,0,0,1,1,0,5.8384013,8.8116207,51.33,33.18,49.12,37.89,10,1,1,0,0,0,11,4,1,1591,941383,495186.44,0,0,4199.6875 -15279,18817,34021,34022,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.3845458,7.8942375,0,40,-6,-32.495781,0,3,2,2019,8,0,23,23,1,0,0,9.055748,9.055748,0,0,0,0,0,0,0,0,6.090395,0,63.24,42.39,57.12,48.15,8.333333333333334,1,1,0,0,9,4,4,1,342,2194280,1553379.8,296231.19,0,2162.6006 -15279,18817,34022,34021,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.1119003,7.5460463,40,6,104.5042,0,2,2,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,6.171937,8.2737036,57.12,48.15,63.24,42.39,8.333333333333334,1,1,0,0,6,4,4,1,342,2194280,1553379.8,296231.19,0,2162.6006 -15280,18818,34023,34024,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,4,-113.15217,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,25.17,50.41,53.71,8.333333333333334,1,1,0,0,0,6,2,1,516,292026.72,153120.41,71941.688,14906.777,1493.682 -15280,18818,34024,34023,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,5.1914072,5.2032928,6,-4,90.583946,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,71.5,1,1,0,.37154436,5.1906214,50.41,53.71,48.15,25.17,8.333333333333334,1,1,0,0,4,6,2,1,516,292026.72,153120.41,71941.688,14906.777,1493.682 -15281,18819,34025,34026,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.9026704,7.7107916,0,2,-14,34.733669,0,-9,-9,2019,12,0,35,47,1,0,0,11.903584,11.903584,0,0,0,0,0,0,0,0,5.0079832,0,47.15,55.39,48.77,60.16,3.333333333333333,2,3,0,0,2,9,5,1,202.5,1617867.8,526829.5,631813.31,5537.0088,8001.3457 -15281,18819,34026,34025,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,9.7817059,9.7438526,0,2,14,-33.366566,0,1,1,2019,13,3,43,40,1,3,0,46.854355,46.854355,0,0,0,0,0,0,0,0,2.5084743,0,48.77,60.16,47.15,55.39,6.666666666666667,1,1,0,0,8,9,5,1,202.5,1617867.8,526829.5,631813.31,5537.0088,8001.3457 -15282,18820,34027,34028,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,7.9485006,7.7756987,0,3,0,-126.17278,0,-9,-9,2019,9,0,38,36,1,0,0,9.3279343,9.3279343,0,0,0,0,0,0,0,0,0,0,49.25,61.25,59.14,52.5,10,1,1,0,0,2,8,5,0,222,-33.410156,50229.172,0,0,3298.6973 -15282,18820,34028,34027,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.2406855,7.8973341,0,3,0,-8.0017347,0,-9,-9,2019,3,1,45,36,1,1,0,10.849239,10.849239,0,0,0,0,0,0,0,0,1.1755451,0,59.14,52.5,49.25,61.25,10,1,1,0,0,3,8,5,0,222,-33.410156,50229.172,0,0,3298.6973 -15283,18821,34029,34030,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.8439407,7.7122312,55,-2,27.695498,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.2868438,7.8700767,59.07,43.05,31.44,45.02,6.666666666666667,1,1,0,0,0,7,3,1,727.5,890806.75,359666.94,295167.56,0,2591.4048 -15283,18821,34030,34029,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,4.667892,4.3495955,55,2,6.7694201,0,3,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,.54776603,4.4585361,31.44,45.02,59.07,43.05,5,1,1,0,0,0,7,3,1,727.5,890806.75,359666.94,295167.56,0,2591.4048 -15284,18822,34031,34032,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.3296132,6.2419639,52,-3,55.88242,0,-9,2,2019,18,6,0,0,4,6,0,0,0,1,26.263021,61.96096,246.45186,7,1,1,0,1.5422662,6.5238972,39.44,21.16,58.32,50.22,5,1,1,0,0,0,2,3,1,1134.5,652670.63,501158,159080.91,0,2311.0195 -15284,18822,34032,34031,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.1711321,6.9170241,51,3,-39.843681,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.8343134,7.112473,58.32,50.22,39.44,21.16,5,1,1,0,0,3,2,3,1,1134.5,652670.63,501158,159080.91,0,2311.0195 -15285,18823,34033,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-945.99841,-9,2,2,2019,22,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,36.07,45.58,-9,-9,10,1,1,0,1,0,8,2,0,200,-88858.359,-23153.631,0,0,1134.2676 -15286,18824,34034,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2242918,7.9317951,0,0,0,-882.75757,0,-9,-9,2019,14,3,40,40,1,3,0,11.027588,11.027588,0,0,0,0,0,1,1,0,0,0,48.82,44.01,-9,-9,5,2,3,0,0,5,8,4,0,610,61623.207,-74951.938,0,0,1634.053 -15287,18825,34035,34036,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.9569464,8.8051653,0,39,3,5.7953115,-9,-9,-9,2019,10,0,40,0,1,1,0,14.087723,14.087723,0,0,0,0,0,0,0,0,0,0,51,49,49.29,54.59,7,1,1,0,0,1,7,5,1,223.5,5932643,986299,3527844,0,3352.1445 -15287,18825,34036,34035,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1081533,8.1644564,0,39,-3,23.913437,0,3,3,2019,12,0,35,35,1,0,0,10.895231,10.895231,0,0,0,0,0,0,0,0,0,0,49.29,54.59,51,49,5,1,1,0,0,10,7,5,1,223.5,5932643,986299,3527844,0,3352.1445 -15288,18826,34037,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.7587652,9.0085917,0,0,0,-929.48834,0,1,2,2019,8,0,42,39,1,0,0,19.119438,19.119438,0,0,0,0,0,0,0,0,8.5152788,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,367,267270,-57154.656,363204.31,146724.45,3067.2847 -15289,18827,34038,34040,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7674198,8.5821924,0,26,0,.47984865,0,2,2,2019,7,0,39,38,1,0,0,18.337343,18.337343,0,0,0,0,0,1,1,0,0,0,59.14,52.5,49.46,56.91,8.333333333333334,1,1,0,0,9,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 -15289,18827,34039,-9,34038,34040,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1007.52,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 -15289,18827,34040,34038,-9,-9,1,1,53,0,2,0,3,3,-9,0,4,0,0,0,36,9,97.838097,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,59.14,52.5,6.666666666666667,1,1,0,0,0,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 -15289,18827,34041,-9,34038,34040,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.99963,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,1,3,1,677.75,1605168.1,1324599.4,319632.63,267035.63,2149.584 -15290,18828,34042,34043,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.5090446,8.7342157,0,3,-3,17.574671,0,1,1,2019,10,0,42,40,1,0,0,11.733888,11.733888,0,0,0,0,2,0,0,0,1.2466251,0,46.44,59.62,47.29,55.39,8.333333333333334,1,1,0,0,9,9,5,1,230,385149.34,43150.609,440437.5,335666.19,5087.249 -15290,18828,34043,34042,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,9.1901016,9.0660191,0,3,3,95.13546,0,-9,-9,2019,12,1,45,45,1,1,0,26.499214,26.499214,0,0,0,0,0,0,0,0,3.7960703,0,47.29,55.39,46.44,59.62,8.333333333333334,1,1,0,0,3,9,5,1,230,385149.34,43150.609,440437.5,335666.19,5087.249 -15291,18829,34044,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1168.1252,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,41.36,34.01,-9,-9,5,1,1,1,0,0,13,1,0,628,-40319.375,0,0,0,848.94 -15291,18830,34045,-9,34044,-9,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1020.3677,0,3,-9,2019,6,0,0,20,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,6.666666666666667,1,1,1,0,3,13,1,0,418,-144515.16,0,0,0,215.01234 -15292,18831,34046,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.5261784,7.3697543,0,0,-1022.1497,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,3.5094657,0,0,1,1,0,3.8607345,7.0688815,53.63,29.98,-9,-9,6.666666666666667,1,1,0,0,0,10,3,0,243,665830.25,200438.69,229738.14,0,2009.1313 -15293,18832,34047,34048,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.4191885,9.466877,0,25,12,7.8961878,0,3,2,2019,8,0,44,43,1,0,0,26.060036,26.060036,0,0,0,0,0,0,0,0,6.8788924,0,51.83,57.2,35.26,59.77,8.333333333333334,1,1,0,0,9,12,5,1,734.5,952848.13,737947.25,474123.69,217687.28,7899.1313 -15293,18832,34048,34047,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.1625843,9.1858702,0,25,-12,-76.97789,0,2,2,2019,12,1,45,44,1,1,0,24.729074,24.729074,0,0,0,0,0,0,0,0,0,0,35.26,59.77,51.83,57.2,6.666666666666667,1,1,0,0,9,12,5,1,734.5,952848.13,737947.25,474123.69,217687.28,7899.1313 -15294,18833,34049,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,7.7163534,7.9158535,0,0,0,-954.9502,0,1,2,2019,13,3,40,37,1,3,0,5.4365067,5.4365067,0,0,0,0,0,1,1,0,0,0,55.66,54.25,-9,-9,10,1,1,0,0,10,7,3,1,573,161376.11,17312.832,0,0,255.20029 -15294,18834,34050,-9,34049,-9,1,0,18,0,0,0,2,2,-9,0,3,7.1334753,7.1386499,0,0,0,-1010.6704,0,2,-9,2019,14,3,50,0,1,3,1,2.8088236,2.8088236,0,0,0,0,0,1,1,0,0,0,38.01,44.66,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,888,-14987.33,0,0,0,577.62286 -15295,18835,34051,-9,34052,34053,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.8606,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,0,544,264318.66,-20800.014,213076.59,209732.41,1723.8588 -15295,18835,34052,34053,-9,-9,1,0,22,1,1,0,2,2,1,0,3,0,0,0,1,-5,10.706899,-9,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.94,48.01,52.24,50.75,8.333333333333334,1,1,0,0,0,12,3,0,544,264318.66,-20800.014,213076.59,209732.41,1723.8588 -15295,18835,34053,34052,-9,-9,1,1,27,1,1,0,1,1,-9,0,2,8.2927551,8.4843283,0,1,5,-34.457371,0,2,2,2019,5,0,40,40,1,0,0,9.2776423,9.2776423,0,0,0,0,0,1,1,0,0,0,52.24,50.75,44.94,48.01,8.333333333333334,1,1,0,0,11,12,3,0,544,264318.66,-20800.014,213076.59,209732.41,1723.8588 -15296,18836,34054,34055,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,23,3,-5.433465,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.9358168,0,51.24,58.84,22.54,63.92,8.333333333333334,1,1,0,0,2,10,4,1,1553.5,2282396,1790102.9,197145.78,0,5613.3633 -15296,18836,34055,34054,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.3673801,8.0846777,0,23,-3,-10.225108,0,3,3,2019,30,12,50,40,1,12,0,11.71627,11.71627,0,0,0,0,0,0,0,0,6.1450534,0,22.54,63.92,51.24,58.84,5,1,1,0,0,6,10,4,1,1553.5,2282396,1790102.9,197145.78,0,5613.3633 -15297,18837,34056,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1082.7611,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.64,23.5,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,222,-318557.97,0,0,0,699.01727 -15298,18838,34057,34058,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.8218923,5.5641608,27,4,70.083893,0,2,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.3425484,5.3710017,50.28,51.35,58.56,31.12,6.666666666666667,1,1,0,0,0,11,3,1,543,579693.75,366888.31,166684.77,0,2162.6328 -15298,18838,34058,34057,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.149579,7.0678806,27,-4,-22.788986,0,-9,-9,2019,14,2,0,41,4,2,0,0,0,0,0,0,0,0,1,1,0,7.3009577,7.3651032,58.56,31.12,50.28,51.35,6.666666666666667,1,1,0,0,9,11,3,1,543,579693.75,366888.31,166684.77,0,2162.6328 -15299,18839,34059,34060,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.9800458,8.2601805,0,10,-6,-39.143738,0,3,3,2019,11,0,57,68,1,1,0,8.0489311,8.0489311,0,0,0,0,2,0,0,0,0,0,48,56,51,55,7,1,1,0,0,12,6,5,0,628.5,402712.56,59272.84,131266.2,100538.65,2991.6338 -15299,18839,34060,34059,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1167459,8.1856842,0,10,6,-39.851582,0,-9,-9,2019,9,0,60,60,1,1,0,7.636857,7.636857,0,0,0,0,2,0,0,0,0,0,51,55,48,56,8,1,1,0,0,13,6,5,0,628.5,402712.56,59272.84,131266.2,100538.65,2991.6338 -15300,18840,34061,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-973.44598,0,-9,-9,2019,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.03,30.51,-9,-9,5,1,1,0,0,2,7,2,0,2563,-443419.09,0,0,0,1413.8837 -15301,18841,34062,34063,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,13,4,-19.353905,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4384875,0,44.19,58.01,58.3,52.91,3.333333333333333,1,1,0,0,4,10,2,1,1355.5,791427.5,417134.88,171494.34,0,2101.0261 -15301,18841,34063,34062,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5927057,7.4918804,13,-4,27.665827,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4969997,6.9384727,58.3,52.91,44.19,58.01,8.333333333333334,1,1,0,0,4,10,2,1,1355.5,791427.5,417134.88,171494.34,0,2101.0261 -15302,18842,34064,34065,-9,-9,1,1,46,0,2,0,3,3,-9,0,5,8.7301712,8.7418327,0,24,2,-31.106565,0,2,2,2019,6,0,45,45,1,0,0,17.331749,17.331749,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.29,52.11,8.333333333333334,1,1,0,0,10,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 -15302,18842,34065,34064,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.3564172,7.4079065,0,24,-2,-28.171074,0,2,2,2019,7,0,24,25,1,0,0,8.1265898,8.1265898,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.06,57.76,8.333333333333334,1,1,0,0,7,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 -15302,18842,34066,-9,34065,34064,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1084.9198,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 -15302,18842,34067,-9,34065,34064,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.5637,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,656.5,130698.8,130940.23,248374.41,95241.602,3208.2354 -15303,18843,34068,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.4534473,5.5889659,0,0,-957.77148,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,5.6673465,38.28,63.48,-9,-9,3.333333333333333,1,1,0,0,9,9,2,1,192,227301.81,-46991.941,0,0,1758.7972 -15304,18844,34069,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,0,0,-912.95544,0,-9,-9,2019,13,3,0,0,3,3,0,0,0,0,0,0,0,7,1,1,0,0,0,41.2,41.4,-9,-9,8.333333333333334,1,1,1,0,1,5,1,0,162,-158353.97,0,0,0,-197.68513 -15305,18845,34070,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1100.865,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.59,43.02,-9,-9,5,1,1,1,0,0,13,1,0,162,0,0,0,0,1163.4667 -15305,18846,34071,-9,34070,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-929.19269,-9,2,-9,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,1,1,0,0,0,47.91,51.06,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,1288,-16042.291,0,0,0,724.49084 -15306,18847,34072,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.0770721,5.2721052,0,0,-965.1756,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2052321,49.45,35.49,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,527,637230.75,67376.617,322399.38,0,1617.9462 -15307,18848,34073,-9,-9,34074,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.04736,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,837.5,150535.09,131066,100894.19,46838.234,4047.8298 -15307,18848,34074,-9,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,9.465538,9.7032881,0,0,0,-982.90967,0,1,1,2019,30,11,40,40,1,11,0,37.322006,37.322006,0,0,0,0,0,0,0,0,5.2995911,0,26.74,56.97,-9,-9,3.333333333333333,2,3,0,0,10,9,5,1,837.5,150535.09,131066,100894.19,46838.234,4047.8298 -15308,18849,34075,34076,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.7787385,7.6417108,38,2,76.365547,0,1,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.0343308,7.8395123,54.2,57.49,51.42,48.12,8.333333333333334,1,1,0,0,6,10,3,1,339.5,2470353.5,161564.67,552469.63,0,3442.7002 -15308,18849,34076,34075,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,6.0017309,5.9478765,0,8,-2,129.58385,0,-9,-9,2019,7,0,5,15,1,0,0,9.1100264,9.1100264,0,0,0,0,0,0,0,0,8.179493,0,51.42,48.12,54.2,57.49,10,1,1,0,0,9,10,3,1,339.5,2470353.5,161564.67,552469.63,0,3442.7002 -15309,18850,34077,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.4646254,7.540834,0,0,-980.14178,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6980424,7.1516495,51.08,54.77,-9,-9,8.333333333333334,1,1,0,0,3,6,3,1,316,547326.94,364786.16,592798.44,0,1663.2451 -15310,18851,34078,34079,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.7541542,8.7948513,25,5,21.030693,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7101412,54.2,57.49,72.04000000000001,17.85,10,1,1,0,0,0,4,5,1,314.5,3149540.8,1828071.3,692715.75,0,4689.1816 -15310,18851,34079,34078,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9602523,7.0232544,23,-5,-62.314125,0,-9,-9,2019,9,1,0,0,4,1,0,0,0,1,0,3.8741953,0,0,1,1,0,3.9565868,7.0903172,72.04000000000001,17.85,54.2,57.49,8.333333333333334,1,1,0,0,4,4,5,1,314.5,3149540.8,1828071.3,692715.75,0,4689.1816 -15311,18852,34080,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.9939251,8.8547821,7.7062826,0,0,-911.92572,0,3,2,2019,18,7,37,40,1,7,0,15.103996,15.103996,0,0,0,0,2,1,1,0,6.3970909,6.9808102,51.99,36.76,-9,-9,5,1,1,0,1,6,6,5,1,1099,678144.19,481448.34,243459.2,0,2591.2405 -15312,18853,34081,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.563077,8.6649389,0,0,0,-973.43903,0,3,3,2019,10,1,47,47,1,1,0,12.078058,12.078058,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,0,10,4,5,1,813,-196176.95,83070.844,0,0,2733.1262 -15313,18854,34082,34084,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,9.1810904,8.8811779,0,24,-8,-139.25607,0,3,3,2019,33,11,36,50,1,11,0,37.759964,37.759964,0,0,0,0,0,0,0,0,0,0,3.77,57.96,51.5,39.74,5,1,1,0,0,11,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 -15313,18854,34083,-9,34082,34084,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-928.82568,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 -15313,18854,34084,34082,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,9.0604458,9.0209007,0,24,8,-66.627823,0,3,3,2019,12,1,36,36,1,1,0,29.679014,29.679014,0,0,0,0,0,0,0,0,0,0,51.5,39.74,3.77,57.96,6.666666666666667,1,1,0,0,11,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 -15313,18854,34085,-9,34082,34084,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.97058,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,648.25,956964.69,95149.367,750393.63,0,6418.8052 -15313,18855,34086,-9,34082,34084,1,0,21,0,2,1,2,0,0,0,3,0,0,0,0,0,-1042.2837,-9,2,2,2019,24,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,23.19,63.78,-9,-9,5,1,1,0,1,3,7,1,1,788,-151747.45,0,0,0,-141.44832 -15313,18856,34087,-9,34082,34084,1,1,19,0,2,0,2,2,-9,0,5,8.5715771,9.0589437,0,0,0,-963.51221,0,2,2,2019,5,0,53,0,1,0,1,16.124193,16.124193,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,3,7,5,1,1410,24197.828,0,0,0,2168.0383 -15313,18857,34088,-9,34082,34084,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1059.3505,-9,2,2,2019,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,35.97,61.83,-9,-9,5,1,1,0,0,0,7,1,1,626,0,0,0,0,0 -15313,18858,34089,-9,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,9.1339512,9.027914,0,0,0,-805.1438,0,-9,-9,2019,7,0,36,36,1,0,0,33.840965,33.840965,0,0,0,0,2,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,242,1631866,1532101.8,729044.75,0,3095.6716 -15314,18859,34090,34092,-9,-9,1,1,40,0,4,0,2,2,-9,0,3,8.3230085,8.2903681,0,8,2,3.3453419,0,2,-9,2019,7,0,42,36,1,0,0,11.790339,11.790339,0,0,0,0,0,1,0,1,0,0,56.1,49.93,46.33,47.9,8.333333333333334,1,1,0,0,10,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 -15314,18859,34091,-9,34092,34090,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.8826,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 -15314,18859,34092,34090,-9,-9,1,0,38,0,4,0,2,2,-9,1,3,7.8482943,8.1315479,0,8,-2,38.17767,0,2,3,2019,11,1,36,30,1,1,0,6.946259,6.946259,0,0,0,0,7,1,0,1,0,0,46.33,47.9,56.1,49.93,6.666666666666667,1,1,0,0,10,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 -15314,18859,34093,-9,34092,34090,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-910.58032,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 -15314,18859,34094,-9,34092,34090,1,0,15,0,4,1,3,0,-9,0,3,0,0,0,0,0,-965.02545,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 -15314,18859,34095,-9,34092,34090,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-973.99023,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,917.83331,492832.38,311269.81,371210.56,214620,4929.646 -15315,18860,34096,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,7.7934365,7.7225027,0,0,0,-859.90955,0,2,2,2019,8,0,38,38,1,0,0,6.9146957,6.9146957,0,0,0,0,0,0,0,0,4.7663183,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,442,740157.88,72449.305,329347.69,0,1280.6797 -15316,18861,34097,34098,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,7.1926413,7.2875543,24,7,-77.262848,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,7.3244276,43.03,14.16,58.15,52.91,1.666666666666667,1,1,0,0,0,9,5,1,264.5,1320860.1,1157634.8,307953.25,209761.02,4874.4536 -15316,18861,34098,34097,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.8321285,8.9634027,0,24,-7,-60.523052,0,2,2,2019,9,0,51,50,1,0,0,18.699697,18.699697,0,0,0,0,27,1,1,0,0,0,58.15,52.91,43.03,14.16,8.333333333333334,1,1,0,0,8,9,5,1,264.5,1320860.1,1157634.8,307953.25,209761.02,4874.4536 -15316,18862,34099,-9,34097,34098,1,1,19,0,0,0,2,2,-9,0,4,8.0493956,8.1213541,0,0,0,-1014.2699,0,2,2,2019,10,1,40,25,1,1,1,8.9253368,8.9253368,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,10,1,1,0,0,3,9,4,1,256,65932.305,38980.504,0,0,750.01544 -15317,18863,34100,-9,34104,34101,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.9843,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 -15317,18863,34101,34104,-9,-9,1,1,32,0,3,0,2,2,-9,0,5,7.6715965,7.7527795,0,6,1,29.316511,0,-9,-9,2019,10,2,38,40,1,2,0,4.4613972,4.4613972,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,6,5,2,0,530,92443.641,0,0,0,1643.1791 -15317,18863,34102,-9,34104,34101,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.00848,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 -15317,18863,34103,-9,34104,34101,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.52014,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 -15317,18863,34104,34101,-9,-9,1,0,31,0,3,0,1,1,-9,0,5,0,0,0,6,-1,1.9871472,0,3,3,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,0,5,2,0,530,92443.641,0,0,0,1643.1791 -15318,18864,34105,34106,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,47,1,-38.225895,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8499961,0,57.06,57.76,52.81,56.94,10,1,1,0,0,3,10,3,1,702.5,1399081.5,917242.88,232751.78,0,3150.5125 -15318,18864,34106,34105,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,8.0897808,8.0930634,47,-1,5.4378004,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8693323,7.8289213,52.81,56.94,57.06,57.76,10,1,1,0,0,11,10,3,1,702.5,1399081.5,917242.88,232751.78,0,3150.5125 -15319,18865,34107,-9,34109,34108,1,0,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1056.1012,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,8,4,1,545,1848202.5,694606.19,665907.13,0,3567.7063 -15319,18865,34108,34109,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7843466,8.5478497,0,7,1,-68.631264,0,-9,-9,2019,9,0,36,32,1,1,0,16.828865,16.828865,0,0,0,0,0,1,1,0,3.5448089,0,53,54,57.06,57.76,8,1,1,0,0,1,8,4,1,545,1848202.5,694606.19,665907.13,0,3567.7063 -15319,18865,34109,34108,-9,-9,1,0,52,0,0,0,1,1,-9,1,5,6.94909,6.7280035,0,31,-1,-126.85901,0,2,1,2019,7,0,24,16,1,0,0,4.1098495,4.1098495,0,0,0,0,42,1,1,0,0,0,57.06,57.76,53,54,8.333333333333334,1,1,0,0,2,8,4,1,545,1848202.5,694606.19,665907.13,0,3567.7063 -15320,18866,34110,34111,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.4904938,8.0542698,0,14,1,-25.909485,0,2,-9,2019,26,11,50,35,1,11,0,9.8497353,9.8497353,0,0,0,0,7,1,1,0,0,0,33.94,38.29,46.02,58.57,6.666666666666667,1,1,0,0,12,11,5,1,965.33331,325741.56,62049.098,323169.38,26734.545,3884.2278 -15320,18866,34111,34110,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.4927797,8.4842205,0,14,-1,93.516861,0,2,2,2019,13,3,45,40,1,3,0,11.215456,11.215456,0,0,0,0,2,1,1,0,4.9509678,0,46.02,58.57,33.94,38.29,6.666666666666667,1,1,0,0,10,11,5,1,965.33331,325741.56,62049.098,323169.38,26734.545,3884.2278 -15320,18866,34112,-9,34110,34111,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.326,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,965.33331,325741.56,62049.098,323169.38,26734.545,3884.2278 -15321,18867,34113,-9,34114,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.4385,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 -15321,18867,34114,-9,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,0,0,0,0,-981.76416,0,2,-9,2019,15,2,0,0,3,2,0,0,0,0,0,0,0,120,1,1,0,0,0,37.48,17.04,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 -15321,18867,34115,-9,34114,-9,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-972.73517,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 -15321,18867,34116,-9,34114,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6711,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,693.5,2145.7952,0,0,0,1826.3464 -15322,18868,34117,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.9970312,9.1182957,0,0,0,-1046.9944,0,-9,-9,2019,21,9,55,55,1,9,0,16.915081,16.915081,0,0,0,0,0,0,0,0,3.6178572,0,38.27,59.42,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,268,-423932,0,0,0,1968.3939 -15323,18869,34118,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.755393,7.2407928,0,0,-984.8147,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.0012805,6.7981372,52.63,34.01,-9,-9,8.333333333333334,4,2,0,0,8,2,2,1,581,628330.5,546173.38,177781.7,0,1629.106 -15324,18870,34119,-9,34120,34121,1,0,24,0,0,0,2,2,-9,0,4,8.2590818,8.3452921,0,0,0,-1078.8361,0,2,2,2019,11,0,36,0,1,2,1,12.20632,12.20632,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,4,0,351,74276.375,13128.724,0,0,1249.2267 -15324,18871,34120,34121,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.792325,8.7522106,0,7,-4,44.95882,0,3,3,2019,9,0,36,38,1,0,0,21.489639,21.489639,0,0,0,0,0,0,0,0,.12713037,0,51.83,57.2,54.69,57.47,1.666666666666667,1,1,0,0,9,9,5,0,384.5,1432005,602612.63,572143.13,78703.516,4259.8105 -15324,18871,34121,34120,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.8594923,8.9714327,0,7,4,-62.598522,0,-9,-9,2019,10,0,45,43,1,0,0,18.879492,18.879492,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51.83,57.2,6.666666666666667,1,1,0,0,8,9,5,0,384.5,1432005,602612.63,572143.13,78703.516,4259.8105 -15325,18872,34122,-9,34125,34124,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.567,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 -15325,18872,34123,-9,34125,34124,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.72296,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 -15325,18872,34124,34125,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,8.4181509,8.7818718,0,5,1,17.370035,0,-9,-9,2019,7,0,61,35,1,0,0,8.7532625,8.7532625,0,0,0,0,0,1,1,0,0,0,60.02,56.42,59.14,46.97,10,1,1,0,0,11,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 -15325,18872,34125,34124,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1060867,8.18332,0,13,-1,16.752069,0,1,2,2019,9,0,20,28,1,0,0,24.402828,24.402828,0,0,0,0,0,1,1,0,0,0,59.14,46.97,60.02,56.42,8.333333333333334,1,1,0,0,9,12,4,1,1024.75,939756.19,50030.578,474743.25,7234.5625,3498.9905 -15326,18873,34126,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.8217,0,-9,-9,2019,27,12,0,0,3,12,0,0,0,1,0,0,0,0,1,0,1,0,0,25.5,44.17,-9,-9,3.333333333333333,1,1,1,1,0,9,1,0,1748,291956.03,0,0,0,0 -15327,18874,34127,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.7192349,7.7693467,5.1850843,0,0,-966.20947,0,3,3,2019,2,0,55,55,1,0,0,5.5534916,5.5534916,0,0,0,0,0,0,0,0,5.5886989,5.2370701,59.14,52.5,-9,-9,10,1,1,0,0,8,10,3,1,358,-21751.773,271949.72,121367.23,0,1095.2303 -15328,18875,34128,-9,34131,34130,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-843.27051,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 -15328,18875,34129,-9,34131,34130,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5985,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 -15328,18875,34130,34131,-9,-9,1,1,51,1,2,0,2,2,-9,0,3,8.2156782,8.3810215,0,9,6,-59.793106,0,-9,-9,2019,11,0,37,37,1,0,0,12.865256,12.865256,0,0,0,0,0,1,1,0,3.7907166,0,41.19,49.77,51.24,58.84,5,1,1,0,0,10,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 -15328,18875,34131,34130,-9,-9,1,0,45,1,2,0,2,2,-9,0,4,0,0,0,9,-6,2.9184918,0,-9,-9,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,7,1,1,0,1.9359719,0,51.24,58.84,41.19,49.77,6.666666666666667,1,1,0,0,8,11,3,1,500.25,111670.06,90732.625,0,0,1969.5171 -15329,18876,34132,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,6.1116905,5.8320875,0,0,-977.13263,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.1271544,41.29,24.56,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,341,256511.41,113695,154952.03,0,1850.436 -15330,18877,34133,34136,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,7.0160146,6.9812341,0,11,-7,2.341229,0,3,3,2019,10,1,30,24,1,1,0,4.7295127,4.7295127,0,0,0,0,0,1,1,0,0,0,55.3,52.93,52.21,59.91,5,2,3,0,0,10,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 -15330,18877,34134,-9,34136,34133,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.10107,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 -15330,18877,34135,-9,34136,34133,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.0853,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 -15330,18877,34136,34133,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,0,0,0,11,7,6.6741109,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,55.3,52.93,10,2,3,0,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 -15330,18877,34137,-9,34136,34133,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.9055,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,1,977.79999,-19132.17,0,201931.19,273483.91,1243.369 -15331,18878,34138,34140,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.8883066,8.682107,0,7,3,51.948914,0,3,-9,2019,10,0,40,48,1,0,0,21.051064,21.051064,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49.46,56.91,8.333333333333334,1,1,0,0,8,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 -15331,18878,34139,-9,34140,34138,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.28131,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 -15331,18878,34140,34138,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.4853268,8.4666166,0,7,-3,81.066582,0,2,3,2019,14,2,40,40,1,2,0,14.820298,14.820298,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.24,58.84,8.333333333333334,1,1,0,0,5,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 -15331,18878,34141,-9,34140,34138,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.08783,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,996.5,492211.69,42171.555,702683.56,387961.78,4948.7842 -15332,18879,34142,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,8.4228315,8.6055307,7.5552092,0,0,-1111.0278,0,3,2,2019,33,12,40,38,1,12,0,13.220341,13.220341,0,0,0,0,0,1,1,0,7.4974003,0,20.46,61.36,-9,-9,1.666666666666667,1,1,0,1,12,8,5,0,796,182548.53,45296.551,354642.91,93843.766,3098.2134 -15333,18880,34143,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.6558547,7.6952066,0,0,0,-1012.6891,0,3,3,2019,11,0,35,40,1,0,0,7.7432489,7.7432489,0,0,0,0,0,0,0,0,0,0,37.2,49.25,-9,-9,5,3,4,0,0,3,8,3,0,627,-181095.02,116426.61,0,0,692.46429 -15334,18881,34144,34146,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.8940115,8.8552189,0,23,2,12.028512,0,3,3,2019,12,0,45,45,1,0,0,15.773124,15.773124,0,0,0,0,0,1,1,0,0,0,46.16,58.62,49,56,8.333333333333334,2,3,0,0,10,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 -15334,18881,34145,-9,34146,34144,1,1,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.64465,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 -15334,18881,34146,34144,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,0,0,0,23,-2,2.6882732,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,46.16,58.62,7,2,3,0,0,0,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 -15334,18881,34147,-9,34146,34144,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-963.78833,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,4,1,471,119900.01,-24564.855,256987.47,158612.13,3074.9275 -15334,18882,34148,-9,34146,34144,1,0,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-1043.4595,-9,2,2,2019,14,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46.28,44.95,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,492,324042.69,0,0,0,0 -15335,18883,34149,34150,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.504981,5.6239123,8,-1,13.17142,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,7.0308871,0,0,1,1,0,0,5.56004,47.94,48.26,53.13,25.94,8.333333333333334,1,1,0,0,5,13,2,1,1473.5,520114.69,97217.5,159335.63,0,1869.9419 -15335,18883,34150,34149,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7347603,6.8759189,8,1,14.384291,0,3,-9,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,6.5113173,6.8596058,53.13,25.94,47.94,48.26,6.666666666666667,1,1,0,0,3,13,2,1,1473.5,520114.69,97217.5,159335.63,0,1869.9419 -15336,18884,34151,34152,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.0932465,8.1875658,0,9,8,57.075726,0,2,2,2019,7,0,41,50,1,0,0,12.51968,12.51968,0,0,0,0,2,0,0,0,0,0,58.15,52.91,51.94,55.88,8.333333333333334,1,1,0,0,10,12,5,1,261.5,673394.19,406643.06,167839.78,60881.477,3131.1846 -15336,18884,34152,34151,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.1893148,8.4539137,0,9,-8,-200.89439,0,3,3,2019,10,0,40,40,1,0,0,10.687803,10.687803,0,0,0,0,0,0,0,0,0,0,51.94,55.88,58.15,52.91,6.666666666666667,1,1,0,0,10,12,5,1,261.5,673394.19,406643.06,167839.78,60881.477,3131.1846 -15337,18885,34153,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.8382092,8.8766212,0,0,0,-1028.0205,0,2,2,2019,8,0,37,37,1,0,0,19.465286,19.465286,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,10,1,5,1,571,869547.56,668566.38,298091.78,80728.125,1915.2024 -15338,18886,34154,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6520147,8.5372591,0,0,0,-894.77533,0,2,2,2019,10,1,40,40,1,1,0,15.757792,15.757792,0,0,0,0,2,1,1,0,0,0,49.86,47.44,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,1201,226836.88,0,0,0,1025.9104 -15339,18887,34155,34156,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.9570971,6.1769872,6,3,96.838638,0,3,2,2019,9,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.022861,54,46,52,46,8,1,1,0,0,0,13,2,1,1142,142628.44,170076.69,193190.03,0,1215.6873 -15339,18887,34156,34155,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,-3,213.30765,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,13,2,1,1142,142628.44,170076.69,193190.03,0,1215.6873 -15340,18888,34157,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.1616354,8.0179501,0,0,-1120.4908,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,40.807346,0,0,1,1,0,5.3738027,8.2869616,55,45,-9,-9,8,1,1,0,0,0,9,4,1,2054,503544.19,413429.63,382780.09,0,2575.5176 -15341,18889,34158,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.2819204,7.4057899,0,0,0,-1012.3017,0,-9,1,2019,14,3,24,0,1,3,0,5.5858297,5.5858297,0,0,0,0,0,0,0,0,0,0,39.2,56.55,-9,-9,5,2,3,0,0,2,5,2,1,948,-161404.03,0,0,0,1488.2898 -15341,18890,34159,-9,34158,-9,1,1,19,0,0,1,3,0,0,0,4,0,0,0,0,0,-1017.8925,-9,3,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,0,5,1,1,415,30045.779,0,0,0,-631.57764 -15342,18891,34160,34161,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,0,0,0,7,1,-134.19518,0,-9,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,.27988851,0,1,1,0,1.9528064,0,57.06,57.76,31.69,59.68,10,1,1,0,0,8,6,3,1,1887.6666,410592.06,-25137.844,148775.55,137028.88,1680.4281 -15342,18891,34161,34160,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.7162218,8.5622473,0,7,-1,-15.703789,0,-9,-9,2019,24,10,42,42,1,10,0,11.879106,11.879106,0,0,0,0,0,1,1,0,3.3713346,0,31.69,59.68,57.06,57.76,8.333333333333334,1,1,0,0,7,6,3,1,1887.6666,410592.06,-25137.844,148775.55,137028.88,1680.4281 -15342,18891,34162,-9,34160,34161,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-953.59351,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,3,1,1887.6666,410592.06,-25137.844,148775.55,137028.88,1680.4281 -15343,18892,34163,34164,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.4962716,6.180644,34,12,63.431015,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.5740638,6.4042649,53.05,18.05,57.16,56.15,5,1,1,0,0,4,9,3,1,629,1039044,323087.22,471967.84,0,2621.0474 -15343,18892,34164,34163,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.9375124,7.7440338,0,35,-12,-21.489828,0,3,2,2019,6,0,20,20,1,0,0,12.826736,12.826736,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.05,18.05,8.333333333333334,1,1,0,0,11,9,3,1,629,1039044,323087.22,471967.84,0,2621.0474 -15343,18893,34165,-9,34164,34163,1,0,27,0,0,0,1,1,-9,0,3,8.5465422,8.5504761,0,0,0,-1032.8967,0,2,2,2019,10,0,35,0,1,0,1,14.423169,14.423169,0,0,0,0,0,1,1,0,0,0,43.9,57.01,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,1682,256778.94,68114.617,0,0,1853.0306 -15343,18894,34166,-9,34164,34163,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1136.1359,0,2,2,2019,19,7,0,40,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,3.333333333333333,1,1,1,0,10,9,1,1,554,-103855.8,0,0,0,0 -15343,18895,34167,-9,34164,34163,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1054.0137,1,2,2,2019,12,0,0,25,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,9,1,1,1499,0,0,0,0,79.978134 -15344,18896,34168,-9,34169,34170,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.47351,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 -15344,18896,34169,34170,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,8.5465746,8.3935623,0,7,0,-167.82121,0,2,2,2019,11,1,37,39,1,1,0,15.622949,15.622949,0,0,0,0,0,1,1,0,0,0,50.42,51.35,55.96,49.93,8.333333333333334,1,1,0,0,7,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 -15344,18896,34170,34169,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,7.9900422,9.3494587,8.8517189,7,0,32.129101,0,2,3,2019,6,0,30,50,1,0,0,11.512216,11.512216,0,0,0,0,0,1,1,0,8.5018291,0,55.96,49.93,50.42,51.35,8.333333333333334,2,3,0,0,7,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 -15344,18896,34171,-9,34169,34170,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.00897,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,622.25,759780.25,535458.75,323008.94,110172.09,6909.8628 -15345,18897,34172,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.9044361,9.9344168,8.5016251,0,0,-991.92737,-9,2,2,2019,8,0,27,0,1,0,0,69.350403,69.350403,0,0,0,0,0,0,0,0,5.9242353,8.723609,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,9,10,5,1,444,1726519.6,1123957.3,385270.03,0,6305.959 -15346,18898,34173,-9,34176,34175,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-943.31372,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 -15346,18898,34174,-9,34176,34175,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-922.62427,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 -15346,18898,34175,34176,-9,-9,1,1,35,2,2,0,2,2,-9,0,4,8.7397385,8.8112984,0,8,1,-99.557823,0,3,2,2019,6,0,37,37,1,0,0,18.747374,18.747374,0,0,0,0,0,1,1,0,.23494504,0,49.94,58.01,48.28,53.42,8.333333333333334,1,1,0,0,13,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 -15346,18898,34176,34175,-9,-9,1,0,34,2,2,0,2,2,-9,0,3,8.0927839,8.4301138,0,8,-1,28.605825,0,-9,-9,2019,9,3,40,40,1,3,0,10.372816,10.372816,0,0,0,0,0,1,1,0,.84197313,0,48.28,53.42,49.94,58.01,10,1,1,0,0,8,10,5,1,692.75,30335.148,10256.901,295258.84,255586.16,4058.8997 -15347,18899,34177,34179,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.6814637,7.7578039,0,28,1,-43.007351,0,1,3,2019,14,3,26,39,1,3,0,8.8500242,8.8500242,0,0,0,0,0,1,1,0,0,0,49.09,57.3,41.17,59.31,8.333333333333334,1,1,0,0,8,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 -15347,18899,34178,-9,34177,34179,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.37885,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 -15347,18899,34179,34177,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.6853275,9.229785,0,26,-1,78.113197,0,3,3,2019,21,9,60,55,1,9,0,25.006237,25.006237,0,0,0,0,0,1,1,0,0,0,41.17,59.31,49.09,57.3,6.666666666666667,1,1,0,0,9,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 -15347,18899,34180,-9,34177,34179,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-956.58276,1,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.6880674,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,5,1,476.25,628302.38,466614.88,408243.63,237639.08,4964.4731 -15348,18900,34181,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.9023294,8.8937311,0,1,-1,80.011116,0,2,1,2019,11,1,54,46,1,1,0,14.139836,14.139836,0,0,0,0,2,0,0,0,0,0,47.68,52.41,39.76,61.21,8.333333333333334,4,2,0,0,4,8,5,0,415,223829.39,-7806.5239,0,0,2271.021 -15348,18901,34182,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9824533,7.929893,0,1,1,-43.692017,-9,-9,-9,2019,14,3,45,0,1,3,0,9.1003361,9.1003361,0,0,0,0,0,0,0,0,.75128382,0,39.76,61.21,47.68,52.41,6.666666666666667,1,1,0,0,3,8,5,0,207,58065.195,-84162.141,0,0,887.55713 -15349,18902,34183,34184,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,9,1,4.2926388,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.94,31.3,43.18,55.57,3.333333333333333,1,1,0,1,0,12,2,1,259,234424.69,23860.088,219997.5,0,403.22986 -15349,18902,34184,34183,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.4212017,6.4456182,9,-1,-127.09354,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.7327118,6.2224636,43.18,55.57,55.94,31.3,8.333333333333334,1,1,0,0,3,12,2,1,259,234424.69,23860.088,219997.5,0,403.22986 -15350,18903,34185,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1119.8108,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,-9,-9,7,1,1,0,0,0,13,1,1,1290,307856.5,0,0,0,1352.2999 -15351,18904,34186,34187,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,4.0168848,3.7137344,54,-3,23.606409,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0937562,3.7985239,42.12,47.05,50.52,47.59,5,1,1,0,0,0,4,2,1,296.5,1046094.9,211566.16,124506.16,0,2016.9795 -15351,18904,34187,34186,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.4788475,7.3849831,54,3,282.45251,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4453874,50.52,47.59,42.12,47.05,8.333333333333334,1,1,0,0,2,4,2,1,296.5,1046094.9,211566.16,124506.16,0,2016.9795 -15351,18905,34188,-9,34186,34187,1,1,49,0,0,0,2,2,-9,0,3,7.9392438,8.2134018,0,0,0,-913.89941,0,2,3,2019,11,0,40,40,1,0,0,10.684435,10.684435,0,0,0,0,0,1,1,0,0,0,53.98,45.34,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,737,317713.44,74160.938,62693.281,0,1293.8882 -15352,18906,34189,34190,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.8728781,8.7710371,0,10,2,-8.2867002,0,3,3,2019,6,0,38,37,1,0,0,18.998442,18.998442,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,371,407964.94,358903.19,104781.32,171453.83,3092.29 -15352,18906,34190,34189,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.5049515,7.5682774,0,10,-2,-105.72537,0,3,3,2019,7,0,20,30,1,0,0,10.305627,10.305627,0,0,0,0,0,0,0,0,1.8626773,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,371,407964.94,358903.19,104781.32,171453.83,3092.29 -15353,18907,34191,34193,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.9906197,7.8869653,0,15,-6,-56.510101,0,2,2,2019,7,0,19,20,1,0,0,12.858253,12.858253,0,0,0,0,0,1,1,0,.923787,0,63.17,32.94,40.33,55.64,6.666666666666667,1,1,0,0,13,9,5,1,1222.3334,428755,445366.44,173288.22,75601.016,2505.9248 -15353,18907,34192,-9,34191,34193,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.4532,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1222.3334,428755,445366.44,173288.22,75601.016,2505.9248 -15353,18907,34193,34191,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.7823448,8.5902843,0,15,6,23.969658,0,2,1,2019,12,1,37,37,1,1,0,16.439365,16.439365,0,0,0,0,0,1,1,0,.3162742,0,40.33,55.64,63.17,32.94,8.333333333333334,1,1,0,0,13,9,5,1,1222.3334,428755,445366.44,173288.22,75601.016,2505.9248 -15354,18908,34194,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.0758209,7.9354048,0,0,0,-1025.9902,0,3,3,2019,19,8,36,30,1,8,0,9.5526037,9.5526037,0,0,0,0,0,1,1,0,0,0,25.18,63.88,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,1031,156801.5,464616.03,232001.34,-13240.829,998.92908 -15355,18909,34195,34197,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.4509954,8.4675236,0,6,2,84.890427,0,3,3,2019,11,0,40,38,1,0,0,14.217658,14.217658,0,0,0,0,0,1,1,0,4.277246,0,47.16,55.33,35.91,63.19,8.333333333333334,1,1,0,0,6,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 -15355,18909,34196,-9,34197,34195,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.3043,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.28575307,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 -15355,18909,34197,34195,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,7.9510765,7.9985399,0,6,-2,-9.5738249,0,3,3,2019,10,0,24,24,1,0,0,13.871668,13.871668,0,0,0,0,0,1,1,0,0,0,35.91,63.19,47.16,55.33,8.333333333333334,1,1,0,0,6,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 -15355,18909,34198,-9,34197,34195,1,1,16,0,2,1,2,0,-9,0,4,0,3.8607428,3.6486382,0,0,-964.82819,-9,3,2,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,3.0644338,0,42.84,55.93,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,2366,217359.86,258350.11,97275.703,47936.43,3259.4255 -15356,18910,34199,-9,34200,-9,1,1,51,0,0,0,1,1,-9,0,5,8.4687901,8.1062136,0,0,0,-963.9007,0,2,-9,2019,7,0,37,0,1,0,0,15.392179,15.392179,0,0,0,0,0,1,1,0,.77923477,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,1980,911578.56,430231.91,0,0,1746.4982 -15356,18911,34200,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.8976364,6.2063637,0,0,-1014.7098,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6055031,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,328,273263.31,81996.039,33861.672,0,477.19836 -15357,18912,34201,-9,34204,34203,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-942.16071,-9,-9,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,8,3,1,294,515687.5,374495.56,0,0,3929.1245 -15357,18912,34202,-9,34204,34203,1,1,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1011.2228,-9,-9,1,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,1.7043197,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,0,8,3,1,294,515687.5,374495.56,0,0,3929.1245 -15357,18912,34203,34204,-9,-9,1,1,64,0,1,0,1,1,-9,0,4,0,8.4396582,8.1790428,9,20,88.794502,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.5638399,8.2604818,44.19,56.73,44.3,58.08,6.666666666666667,1,1,0,0,8,8,3,1,294,515687.5,374495.56,0,0,3929.1245 -15357,18912,34204,34203,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,0,0,0,9,-20,-160.54707,0,3,3,2019,12,0,0,15,3,0,0,0,0,0,0,0,0,0,1,1,0,3.3282502,0,44.3,58.08,44.19,56.73,6.666666666666667,2,3,0,0,0,8,3,1,294,515687.5,374495.56,0,0,3929.1245 -15358,18913,34205,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.2207947,8.3852139,0,7,-17,36.334526,0,2,3,2019,18,6,10,47,1,6,0,53.984531,53.984531,0,0,0,0,0,0,0,0,4.2829585,0,30.7,62.92,54.2,57.49,3.333333333333333,2,3,0,0,12,10,5,1,665,180605.48,40600.207,46116.801,29753.797,2193.1558 -15358,18914,34206,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.6420536,9.6274538,0,7,17,-19.643461,0,-9,-9,2019,9,0,40,60,1,0,0,37.901672,37.901672,0,0,0,0,0,0,0,0,6.58918,0,54.2,57.49,30.7,62.92,8.333333333333334,1,1,0,0,10,10,5,1,146,1260463,824266.13,534968.81,65270.68,6500.3057 -15359,18915,34207,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,0,0,0,0,0,-920.97888,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,7,1,0,1,0,0,50,57,-9,-9,7,1,1,1,0,0,6,1,1,1799,0,0,0,0,103.72916 -15360,18916,34208,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-971.83112,0,2,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,7,1,1,0,0,0,24.79,24.16,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,265,138987.89,0,0,0,1218.9391 -15361,18917,34209,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,7.8421021,7.7774405,0,0,-969.88873,0,-9,-9,2019,21,8,0,0,4,8,0,0,0,1,0,12.485277,0,2,1,1,0,0,8.1114855,43.27,30.85,-9,-9,5,1,1,0,0,0,8,3,1,1500,682555.63,151082.56,351285.84,0,1898.3958 -15362,18918,34210,34213,-9,-9,1,1,57,0,3,0,2,2,-9,0,4,8.8863926,8.8079472,0,14,17,-147.24182,0,2,2,2019,11,0,40,39,1,0,0,19.79319,19.79319,0,0,0,0,0,1,1,0,0,0,43.54,59.6,57.16,56.15,8.333333333333334,1,1,0,0,10,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 -15362,18918,34211,-9,34213,34210,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.4288,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 -15362,18918,34212,-9,34213,34210,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-950.65845,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 -15362,18918,34213,34210,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.4065642,7.3266201,0,15,-17,31.292826,0,2,2,2019,8,0,29,23,1,0,0,6.7718792,6.7718792,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 -15362,18918,34214,-9,34213,34210,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-975.67407,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,458.60001,1249427.3,214069.77,697594.19,0,3418.6118 -15363,18919,34215,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.65814,0,-9,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,42.31,49.45,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,464,0,0,0,0,564.78381 -15364,18920,34216,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.1638632,8.1242361,0,0,0,-957.00372,0,2,2,2019,6,0,39,37,1,0,0,12.438551,12.438551,0,0,0,0,14.5,1,1,0,1.4309028,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,3168,623026.19,686245.06,293987.44,0,1713.5995 -15365,18921,34217,34218,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.0153275,7.8447256,0,30,1,27.572054,0,-9,-9,2019,11,0,50,0,1,1,0,7.9189825,7.9189825,0,0,0,0,0,1,1,0,0,0,32.28,58.05,57.16,56.15,5,2,3,0,0,10,7,4,1,1698.5,416595.19,87018.172,364565.34,106313.1,2597.061 -15365,18921,34218,34217,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,7.8245935,7.6885118,0,8,-1,22.106907,0,-9,-9,2019,6,0,50,32,1,0,0,6.3493023,6.3493023,0,0,0,0,0,1,1,0,0,0,57.16,56.15,32.28,58.05,5,2,3,0,1,10,7,4,1,1698.5,416595.19,87018.172,364565.34,106313.1,2597.061 -15365,18922,34219,-9,34218,34217,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.3838,0,3,3,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,1.666666666666667,2,3,1,1,2,7,1,1,479,205962.44,0,0,0,0 -15366,18923,34220,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-986.18939,0,3,2,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.25,37.28,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,241,-156992.23,0,0,0,736.00793 -15367,18924,34221,34222,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.6338444,8.4753628,52,0,-32.168697,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,8.9687357,8.3100595,46.07,42.07,49.29,54.59,5,1,1,0,0,0,8,4,1,501.5,2145247,927206.88,643145.25,0,6455.772 -15367,18924,34222,34221,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4558659,6.5893679,52,0,-57.208721,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.6786766,6.6886835,49.29,54.59,46.07,42.07,8.333333333333334,1,1,0,0,0,8,4,1,501.5,2145247,927206.88,643145.25,0,6455.772 -15368,18925,34223,34224,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.5113578,7.8606267,55,5,19.939533,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.5172124,7.3009334,57.16,56.15,51,46,8.333333333333334,1,1,0,0,2,9,3,1,553.5,1005318.6,502043.34,598043.69,0,2269.3586 -15368,18925,34224,34223,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.3121481,7.3714538,55,-5,-46.947617,0,2,2,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.6058111,7.5644817,51,46,57.16,56.15,7,1,1,0,0,0,9,3,1,553.5,1005318.6,502043.34,598043.69,0,2269.3586 -15369,18926,34225,34226,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,6.9297199,6.5850258,9,0,-54.783978,0,3,3,2019,17,6,0,24,3,6,0,0,0,0,0,0,0,0,1,1,0,5.962923,7.3168287,25.72,30.19,56.41,48.18,5,1,1,0,0,10,5,3,1,433,1013822.3,926232.63,68034.969,0,1619.262 -15369,18926,34226,34225,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.8745756,7.0025835,9,0,-13.147347,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,7.016871,7.0273042,56.41,48.18,25.72,30.19,10,1,1,0,0,8,5,3,1,433,1013822.3,926232.63,68034.969,0,1619.262 -15370,18927,34227,-9,-9,-9,1,1,29,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1059.5621,0,-9,2,2019,15,5,0,0,3,5,0,0,0,0,0,0,0,42,1,1,0,0,0,36.65,36.16,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,89,139028.61,0,0,0,651.66229 -15370,18928,34228,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.6825643,7.9256911,0,0,0,-915.72522,0,3,3,2019,14,2,32,30,1,2,0,5.1697946,5.1697946,0,0,0,0,7,1,1,0,2.9972155,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,1738,260102.69,79703.844,0,0,1165.6337 -15371,18929,34229,34230,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.4912806,8.5985794,0,10,10,181.56013,0,2,1,2019,6,0,35,35,1,0,0,19.194521,19.194521,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,12,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 -15371,18929,34230,34229,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,8.4305754,8.1259699,0,10,-10,-.18866271,0,-9,-9,2019,4,0,37,39,1,0,0,11.549871,11.549871,0,0,0,0,0,1,1,0,8.035058,0,59.53,56.44,57.06,57.76,10,3,4,0,0,8,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 -15371,18929,34231,-9,34230,34229,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.29712,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 -15371,18929,34232,-9,34230,34229,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.03485,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,6,4,1,608.5,97847.867,51297.813,279343.28,0,4292.7607 -15372,18930,34233,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.8348541,7.7739215,0,0,-848.43878,0,3,-9,2019,11,3,0,16,4,3,0,0,0,0,0,0,0,42,1,1,0,6.9402518,7.4906697,40.74,48.98,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,722,725364.25,905870.19,0,0,1920.426 -15372,18930,34234,-9,34233,-9,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-852.32416,-9,2,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,2.8281829,0,47,59,-9,-9,7,1,1,0,0,0,11,3,1,722,725364.25,905870.19,0,0,1920.426 -15372,18931,34235,-9,34233,-9,1,0,23,0,0,0,1,1,-9,0,2,7.5129762,7.6043153,0,0,0,-971.10242,-9,2,3,2019,29,12,36,0,1,12,0,8.2136545,8.2136545,0,0,0,0,0,1,1,0,0,0,8.94,54.41,-9,-9,3.333333333333333,1,1,0,0,7,11,3,1,1011,465123.28,0,0,0,1103.7814 -15373,18932,34236,34237,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,9,-1,0,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.37,27.83,62.49,55.09,8.333333333333334,1,1,1,1,0,13,1,0,1330.5,329831.13,84205.109,0,0,1190.7814 -15373,18932,34237,34236,-9,-9,1,1,56,0,0,0,3,3,-9,1,4,0,0,0,9,1,0,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,66.37,27.83,10,1,1,1,1,0,13,1,0,1330.5,329831.13,84205.109,0,0,1190.7814 -15373,18933,34238,-9,34236,34237,1,0,28,0,0,0,3,3,-9,0,3,0,0,0,0,0,-924.96497,0,2,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,1,0,0,13,1,0,385,-273652.38,0,0,0,1060.407 -15374,18934,34239,34241,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.6892767,8.4708614,0,6,6,37.320538,0,-9,-9,2019,9,0,40,50,1,1,0,20.284019,20.284019,0,0,0,0,0,1,1,0,.40388647,0,54,54,54.9,54.53,8,1,1,0,0,1,2,4,1,1888,269143,42467.223,258386.63,44243.078,2236.2275 -15374,18934,34240,-9,34241,34239,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-919.38452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,4,1,1888,269143,42467.223,258386.63,44243.078,2236.2275 -15374,18934,34241,34239,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,26,-6,62.892239,0,3,2,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,54.53,54,54,6.666666666666667,1,1,0,1,0,2,4,1,1888,269143,42467.223,258386.63,44243.078,2236.2275 -15374,18935,34242,-9,34241,34239,1,0,22,0,1,0,2,2,-9,0,5,8.3497391,7.9950824,0,0,0,-883.63965,0,1,2,2019,18,6,38,38,1,6,1,11.574994,11.574994,0,0,0,0,0,1,1,0,0,0,41.81,44.4,-9,-9,3.333333333333333,1,1,0,0,5,2,4,1,289,516129.5,0,0,0,1278.538 -15374,18936,34243,-9,34241,34239,1,0,20,0,1,0,2,2,-9,0,4,6.6254497,6.7256904,0,0,0,-876.2652,0,2,2,2019,11,0,38,40,1,2,1,3.1160161,3.1160161,0,0,0,0,0,1,1,0,3.7747931,0,47,58,-9,-9,7,1,1,0,0,1,2,2,1,545,-318280.44,0,0,0,577.35754 -15375,18937,34244,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,8.0671148,8.0344706,0,0,-889.35754,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.71577,7.9089007,60.12,54.8,-9,-9,10,1,1,0,0,10,2,3,1,193,486503.81,145146.02,131195.83,0,1696.5574 -15376,18938,34245,34246,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.0100145,7.1313033,38,0,-14.978519,0,2,2,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.9171176,6.7562356,57.16,56.15,62.39,56.71,0,1,1,0,0,7,7,4,1,199,3196807,0,3455694,90962.328,2640.2642 -15376,18938,34246,34245,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,8.1923428,8.0752344,0,40,0,-25.31955,0,2,2,2019,7,0,20,39,1,0,0,25.2013,25.2013,0,0,0,0,0,0,0,0,2.9938829,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,9,7,4,1,199,3196807,0,3455694,90962.328,2640.2642 -15377,18939,34247,-9,34249,34250,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-897.41882,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 -15377,18939,34248,-9,34249,34250,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.486,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 -15377,18939,34249,34250,-9,-9,1,0,38,1,3,0,1,1,-9,0,4,7.5220661,7.8276138,0,16,-4,-34.403873,0,2,2,2019,7,0,22,23,1,0,0,11.167609,11.167609,0,0,0,0,0,1,1,0,4.4827356,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 -15377,18939,34250,34249,-9,-9,1,1,42,1,3,0,2,2,-9,0,4,7.4940972,7.2541585,0,16,4,-55.447342,0,3,2,2019,7,0,50,40,1,0,0,3.5342889,3.5342889,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 -15377,18939,34251,-9,34249,34250,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-961.19452,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1568.6,-69317.164,-27412.004,96508.586,73041.227,2612.6992 -15378,18940,34252,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1107.3705,0,3,3,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,2.6815636,0,52.6,42.14,-9,-9,6.666666666666667,1,1,0,0,2,9,1,0,1479,-87633.055,0,0,0,527.3609 -15379,18941,34253,34254,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.4979763,7.5586925,0,16,0,17.693821,-9,2,2,2019,9,1,27,0,1,1,0,7.9434061,7.9434061,0,0,0,0,0,1,1,0,.73466861,0,61.01,53.18,50,56,1.666666666666667,2,3,0,0,9,4,3,1,268.5,238116.09,26817.313,137079.45,51625.508,2844.7583 -15379,18941,34254,34253,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.1876316,8.0524931,0,16,0,110.77694,0,2,2,2019,10,0,37,40,1,1,0,9.9372883,9.9372883,0,0,0,0,0,1,1,0,4.514235,0,50,56,61.01,53.18,7,2,3,0,0,12,4,3,1,268.5,238116.09,26817.313,137079.45,51625.508,2844.7583 -15380,18942,34255,34256,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,0,0,0,8,0,-67.309738,0,2,2,2019,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,8.5840378,0,57.06,57.76,59.43,58.05,10,1,1,0,0,9,9,5,0,872,1986220.9,1583897.1,379391.38,80070.609,5668.8638 -15380,18942,34256,34255,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.1431913,9.0792809,0,8,0,-8.7607508,0,-9,-9,2019,8,0,70,45,1,0,0,13.800454,13.800454,0,0,0,0,0,0,0,0,8.3530254,0,59.43,58.05,57.06,57.76,10,1,1,0,0,9,9,5,0,872,1986220.9,1583897.1,379391.38,80070.609,5668.8638 -15380,18942,34257,-9,34255,34256,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6155,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,872,1986220.9,1583897.1,379391.38,80070.609,5668.8638 -15381,18943,34258,34259,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.3846264,6.3945713,10,4,-52.588741,0,3,3,2019,8,0,0,16,4,0,0,0,0,1,0,.24817601,0,0,1,1,0,6.315949,6.3784966,54.74,57.22,63.16,35.77,8.333333333333334,1,1,0,0,11,12,2,1,1009,436516.53,34276.578,234076.81,0,1606.3265 -15381,18943,34259,34258,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,10,-4,45.662144,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7571003,0,63.16,35.77,54.74,57.22,8.333333333333334,1,1,0,0,7,12,2,1,1009,436516.53,34276.578,234076.81,0,1606.3265 -15382,18944,34260,34261,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.9590387,8.8279562,0,6,0,-94.935196,0,-9,-9,2019,10,1,42,43,1,1,0,24.18891,24.18891,0,0,0,0,0,1,1,0,2.4494898,0,39.83,63.04,39.52,61.49,6.666666666666667,1,1,0,0,7,10,5,1,1099.5,358405.03,451487.31,344979.03,284324.38,5563.6782 -15382,18944,34261,34260,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,9.0765648,8.9177551,0,6,0,-96.540871,0,1,1,2019,8,0,60,48,1,0,0,14.926432,14.926432,0,0,0,0,0,1,1,0,2.6284463,0,39.52,61.49,39.83,63.04,6.666666666666667,1,1,0,0,7,10,5,1,1099.5,358405.03,451487.31,344979.03,284324.38,5563.6782 -15383,18945,34262,34263,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,7.9057956,8.8235979,7.5227294,45,-3,13.030777,0,2,2,2019,7,0,15,18,1,0,0,22.087234,22.087234,0,0,0,0,0,1,1,0,5.1074705,7.5144553,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,10,4,1,342.5,291848.59,86153.344,496556.44,257173.47,5329.75 -15383,18945,34263,34262,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.9976211,7.9866548,45,3,49.498959,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9859297,8.1367588,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,342.5,291848.59,86153.344,496556.44,257173.47,5329.75 -15384,18946,34264,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.0083,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.68219489,0,55.65,41.83,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,232,80230.141,0,0,0,775.63098 -15385,18947,34265,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,6.8589859,7.0701675,0,0,0,-1043.9994,-9,2,2,2019,11,0,60,0,1,1,0,2.3406687,2.3406687,0,0,0,0,0,0,0,0,7.8223047,0,49,50,-9,-9,7,1,1,0,0,1,6,2,1,1703,132451.5,145718.84,0,0,1602.3875 -15386,18948,34266,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.4018431,6.3242245,0,0,-914.44232,0,2,1,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.641686,6.533267,57.33,53.46,-9,-9,10,1,1,0,0,0,12,2,1,617,72441.141,132421.09,0,0,1098.5441 -15387,18949,34267,34268,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9494691,7.7408352,0,42,-5,30.482687,0,2,2,2019,8,0,35,35,1,0,0,7.7249274,7.7249274,0,0,0,0,0,0,0,0,0,0,63.23,34.72,46.33,55.93,8.333333333333334,1,1,0,0,12,5,4,1,336.5,-27444.508,59466.551,0,0,2791.8296 -15387,18949,34268,34267,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.6812673,8.0204697,6.8705764,42,5,88.625938,0,3,3,2019,11,1,38,38,1,1,0,6.9131708,6.9131708,0,0,0,0,14.5,0,0,0,5.7453194,6.5576119,46.33,55.93,63.23,34.72,8.333333333333334,1,1,0,0,12,5,4,1,336.5,-27444.508,59466.551,0,0,2791.8296 -15388,18950,34269,34270,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,7.797442,7.7012649,11,-1,-50.14851,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.4178524,7.6303964,44.23,46.58,60.85,42.12,6.666666666666667,1,1,0,0,0,5,3,1,378,1181902.4,110602.23,308287.34,0,2627.416 -15388,18950,34270,34269,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.2823668,6.9607449,58,1,51.729507,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.6403041,60.85,42.12,44.23,46.58,8.333333333333334,1,1,0,0,0,5,3,1,378,1181902.4,110602.23,308287.34,0,2627.416 -15389,18951,34271,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,4,7.7402611,7.7378011,5.8929386,0,0,-1051.6626,0,-9,3,2019,11,1,30,30,1,1,0,8.3669491,8.3669491,0,0,0,.076254249,74.5,1,1,0,0,6.1081877,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,10,6,3,0,1361,433273.53,241743.89,166048.17,129402.92,1279.3398 -15389,18952,34272,-9,34271,-9,1,0,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-889.41693,0,3,3,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,0,6,1,0,252,-108223.55,0,0,0,-373.51413 -15390,18953,34273,-9,-9,-9,1,1,53,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1103.2716,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,2.2283833,0,33,32.47,-9,-9,5,1,1,0,0,0,8,1,0,256,168045.84,0,220977.92,97712.031,1923.9308 -15391,18954,34274,34276,-9,-9,1,1,44,0,1,0,3,3,-9,0,5,8.0282145,8.0979557,0,19,-1,15.953631,0,2,2,2019,9,2,45,30,1,2,0,7.6760583,7.6760583,0,0,0,0,0,0,0,0,0,0,55.26,40.63,49,55,10,2,3,0,0,10,13,4,0,501,401782.25,93361.555,336533.03,26825.184,3499.252 -15391,18954,34275,-9,34276,34274,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-814.34375,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,13,4,0,501,401782.25,93361.555,336533.03,26825.184,3499.252 -15391,18954,34276,34274,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.6887169,8.7902603,0,19,1,-80.829102,0,3,3,2019,10,0,38,38,1,1,0,16.57799,16.57799,0,0,0,0,0,0,0,0,0,0,49,55,55.26,40.63,8,2,3,0,0,12,13,4,0,501,401782.25,93361.555,336533.03,26825.184,3499.252 -15391,18955,34277,-9,34276,34274,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-957.77844,-9,2,3,2019,13,4,0,0,2,4,1,0,0,0,0,0,0,71.5,0,0,0,0,0,38.54,56.37,-9,-9,5,2,3,0,0,0,13,1,0,1214,-166567.08,0,0,0,0 -15392,18956,34278,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,0,0,-960.18024,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,0,1,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,1,0,2,8,1,0,231,9713.1436,0,0,0,620.17194 -15393,18957,34279,34280,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,56,0,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,56.64,28.07,54,46,6.666666666666667,1,1,0,0,3,5,1,1,557,468334,0,420163.88,0,1845.7073 -15393,18957,34280,34279,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,56,9,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,119.01071,0,0,1,1,0,3.3703086,0,54,46,56.64,28.07,8,1,1,0,0,0,5,1,1,557,468334,0,420163.88,0,1845.7073 -15394,18958,34281,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.2930245,7.9413786,0,0,-1096.1937,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.3481107,7.8058987,61.52,45.11,-9,-9,10,1,1,0,0,0,2,3,1,985,210370.31,189402.17,304437.44,0,2029.1735 -15395,18959,34282,34283,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.6444774,7.3942189,11,1,20.755529,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8535514,7.5049348,57.51,47.91,46.27,36.04,8.333333333333334,1,1,0,0,9,1,3,1,148.5,563998.44,205608.19,181312.55,0,3521.4409 -15395,18959,34283,34282,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-1,11.086785,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,18.088696,0,0,1,1,0,8.1700773,0,46.27,36.04,57.51,47.91,8.333333333333334,1,1,0,0,0,1,3,1,148.5,563998.44,205608.19,181312.55,0,3521.4409 -15396,18960,34284,34285,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,0,0,52,-3,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.36,39.55,8.333333333333334,1,1,0,0,0,12,1,1,534,212610.56,113546.11,0,0,1120.1976 -15396,18960,34285,34284,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,52,3,0,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.36,39.55,57.16,56.15,8.333333333333334,1,1,0,0,0,12,1,1,534,212610.56,113546.11,0,0,1120.1976 -15397,18961,34286,-9,34288,34287,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.70801,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,2,4,1,381.33334,423661.44,13321.973,266651.75,0,3924.4629 -15397,18961,34287,34288,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,7.9595385,8.0315514,0,6,1,-31.616568,0,-9,-9,2019,9,0,42,45,1,0,0,8.8841476,8.8841476,0,0,0,0,0,1,1,0,0,0,61.44,40.51,54.69,57.47,8.333333333333334,1,1,0,0,5,2,4,1,381.33334,423661.44,13321.973,266651.75,0,3924.4629 -15397,18961,34288,34287,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,7.9954462,8.1724777,0,6,-1,-55.87682,0,3,1,2019,6,0,44,-9,1,0,0,9.8469505,9.8469505,0,0,0,0,2,1,1,0,7.4653807,0,54.69,57.47,61.44,40.51,8.333333333333334,1,1,0,0,4,2,4,1,381.33334,423661.44,13321.973,266651.75,0,3924.4629 -15398,18962,34289,34290,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.3994608,8.2868595,0,2,-5,-115.00783,0,-9,-9,2019,14,3,43,48,1,3,0,9.9656963,9.9656963,0,0,0,0,0,0,0,0,2.6980901,0,48.87,58.55,50.14,53.97,8.333333333333334,1,1,0,0,7,11,4,1,954,172215.41,-86286.867,147432.66,80678.492,2571.0171 -15398,18962,34290,34289,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.567307,7.4246774,0,2,5,35.050304,0,-9,-9,2019,8,0,50,60,1,0,0,4.2467227,4.2467227,0,0,0,0,0,0,0,0,0,0,50.14,53.97,48.87,58.55,8.333333333333334,1,1,0,0,8,11,4,1,954,172215.41,-86286.867,147432.66,80678.492,2571.0171 -15399,18963,34291,-9,34292,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-985.86523,-9,2,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,979.5,-118258.25,128288.92,147835.55,24064.195,2063.4102 -15399,18963,34292,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,8.5016117,8.618412,5.3220825,0,0,-880.73224,0,3,2,2019,24,12,29,27,1,12,0,16.128807,16.128807,0,0,0,0,0,1,1,0,6.1399231,0,40.04,38.86,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,979.5,-118258.25,128288.92,147835.55,24064.195,2063.4102 -15400,18964,34293,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,4.976059,5.4278183,0,0,-1029.8339,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.0595751,51.57,37.05,-9,-9,5,1,1,0,0,4,12,2,0,463,375672.72,51319.57,128924.74,2445.342,1262.5378 -15401,18965,34294,34295,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,7.6734853,7.7926726,0,2,5,6.3854089,0,3,2,2019,6,0,60,32,1,0,0,5.384387,5.384387,0,0,0,0,0,0,0,0,8.400918,0,59.43,58.05,60.42,54.81,8.333333333333334,1,1,0,0,5,13,4,1,622.5,53483.402,212472.86,224611.22,93534.203,5711.2021 -15401,18965,34295,34294,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.1138716,8.2593317,0,2,-5,71.361404,0,3,3,2019,6,0,40,34,1,0,0,10.403047,10.403047,0,0,0,0,0,0,0,0,7.860539,0,60.42,54.81,59.43,58.05,10,1,1,0,0,9,13,4,1,622.5,53483.402,212472.86,224611.22,93534.203,5711.2021 -15402,18966,34296,34297,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.6586556,6.6977196,50,1,23.848993,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,1.3672915,0,0,1,1,0,3.8652835,6.4426236,64.40000000000001,25.94,53.68,21.54,8.333333333333334,1,1,0,0,0,7,2,1,1053,897586.63,77018.531,626410.38,0,2339.145 -15402,18966,34297,34296,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,6.9134684,7.2417955,50,-1,188.90355,0,3,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,4.1794772,6.8138638,53.68,21.54,64.40000000000001,25.94,6.666666666666667,1,1,0,0,5,7,2,1,1053,897586.63,77018.531,626410.38,0,2339.145 -15403,18967,34298,34299,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.4155483,7.5583487,39,-7,50.668156,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3199635,7.2998857,51.77,58.57,61.27,46.03,10,1,1,0,0,7,2,3,1,1210,1251213.5,692129.31,331284.19,0,3922.333 -15403,18967,34299,34298,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.8942108,7.5066733,39,7,-35.46896,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5550241,7.0009398,61.27,46.03,51.77,58.57,10,1,1,0,0,3,2,3,1,1210,1251213.5,692129.31,331284.19,0,3922.333 -15404,18968,34300,-9,34302,34303,1,0,20,0,1,1,2,0,-9,0,4,0,0,0,0,0,-882.50513,-9,2,2,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,44.49,61.79,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,282,-151532.09,0,0,0,0 -15404,18969,34301,-9,34302,34303,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.17999,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1214.6666,132938.19,164451.19,0,0,3028.9036 -15404,18969,34302,34303,-9,-9,1,0,44,0,1,0,2,2,-9,1,1,0,0,0,6,-5,-58.093372,-9,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,41.88,22.93,53,55,6.666666666666667,1,1,0,0,0,12,3,1,1214.6666,132938.19,164451.19,0,0,3028.9036 -15404,18969,34303,34302,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5025787,8.3198681,0,6,5,-3.0142267,-9,2,2,2019,9,0,40,0,1,1,0,14.465759,14.465759,0,0,0,0,0,1,1,0,6.4866157,0,53,55,41.88,22.93,8,1,1,0,0,1,12,3,1,1214.6666,132938.19,164451.19,0,0,3028.9036 -15405,18970,34304,-9,34305,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.1688,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,363,-293239.5,68385.961,0,0,1578.9966 -15405,18970,34305,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.082984,8.2428246,5.0638924,0,0,-981.83496,0,3,3,2019,8,0,30,40,1,0,0,10.789314,10.789314,0,0,0,0,0,1,1,0,5.4853506,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,363,-293239.5,68385.961,0,0,1578.9966 -15406,18971,34306,34307,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3829122,7.329875,58,-2,41.325527,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0640635,50.77,50.99,54,33.92,1.666666666666667,1,1,0,0,0,9,3,1,606.5,1167188.5,536018.94,488889.91,0,2680.8972 -15406,18971,34307,34306,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,7.3887057,7.4294677,58,2,-14.392166,0,3,-9,2019,12,0,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,7.4177999,54,33.92,50.77,50.99,6.666666666666667,1,1,0,0,0,9,3,1,606.5,1167188.5,536018.94,488889.91,0,2680.8972 -15407,18972,34308,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.6410117,5.7591319,0,0,-1055.6511,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0404572,49.63,54.22,-9,-9,10,1,1,0,0,0,6,2,1,256,561904.56,105787.9,183497.48,0,667.31537 -15408,18973,34309,34310,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.6154327,9.5422831,0,18,-1,-40.17086,0,2,1,2019,10,0,52,50,1,0,0,33.843391,33.843391,0,0,0,0,0,0,0,0,0,0,45.91,59.89,54.2,57.49,5,1,1,0,0,10,6,5,1,1150.5,802145.69,456513.75,281113.84,182307.88,10266.113 -15408,18973,34310,34309,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.7215815,9.8913879,7.3292332,18,1,115.77374,0,3,2,2019,8,0,40,10,1,0,0,42.15123,42.15123,0,0,0,0,0,0,0,0,7.0477748,7.8089948,54.2,57.49,45.91,59.89,8.333333333333334,1,1,0,0,9,6,5,1,1150.5,802145.69,456513.75,281113.84,182307.88,10266.113 -15409,18974,34311,34312,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,0,0,0,4,1,-4.4339218,0,1,1,2019,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.96000000000001,37.68,51.83,57.2,8.333333333333334,2,3,0,0,0,6,4,0,637,83038.305,-27963.227,133780.75,129600.27,2804.5364 -15409,18974,34312,34311,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.8180408,8.8505297,0,2,-1,-220.21953,0,1,1,2019,8,0,40,40,1,0,0,18.992825,18.992825,0,0,0,0,0,0,0,0,0,0,51.83,57.2,64.96000000000001,37.68,6.666666666666667,2,3,0,0,7,6,4,0,637,83038.305,-27963.227,133780.75,129600.27,2804.5364 -15409,18974,34313,-9,34311,34312,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.43372,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,0,637,83038.305,-27963.227,133780.75,129600.27,2804.5364 -15410,18975,34314,34315,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.2315817,8.2701702,0,5,-6,-20.610367,0,-9,-9,2019,8,0,35,0,1,0,0,13.957781,13.957781,0,0,0,0,0,0,0,0,3.8622024,0,44.91,45.97,57.06,57.76,6.666666666666667,1,1,0,0,6,2,5,1,502,1561688.3,866578.63,514333.06,145969.75,5410.3467 -15410,18975,34315,34314,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.3457432,9.2838459,0,5,6,-64.592957,0,2,2,2019,5,0,45,58,1,0,0,24.521852,24.521852,0,0,0,0,7,0,0,0,7.085084,0,57.06,57.76,44.91,45.97,8.333333333333334,2,3,0,0,11,2,5,1,502,1561688.3,866578.63,514333.06,145969.75,5410.3467 -15411,18976,34316,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.7073722,6.5726948,0,0,-993.64868,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,3.3238807,6.6833286,52.91,33.45,-9,-9,8.333333333333334,1,1,0,0,13,6,2,1,619,296227.94,149753.22,70442.883,0,1477.5627 -15411,18977,34317,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-892.58435,0,3,3,2019,8,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.3,30.5,-9,-9,10,1,1,0,0,3,6,1,1,460,-96280.039,0,0,0,818.45392 -15412,18978,34318,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.3521242,7.6127348,0,0,-1062.0748,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.3240438,7.1367054,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,1068,187756.86,80834.398,0,0,572.97595 -15413,18979,34319,34320,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.9807973,8.1301613,0,7,1,-6.5942101,0,-9,-9,2019,7,0,43,39,1,0,0,7.8402438,7.8402438,0,0,0,0,0,0,0,0,0,0,48.77,60.16,57.06,57.76,6.666666666666667,1,1,0,0,6,4,4,0,577.5,-122153.23,-5334.5273,223670.47,199995.11,2273.1924 -15413,18979,34320,34319,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.8792973,7.6126552,0,7,-1,109.80266,0,2,2,2019,4,0,40,30,1,0,0,8.071167,8.071167,0,0,0,0,0,0,0,0,0,0,57.06,57.76,48.77,60.16,8.333333333333334,1,1,0,0,8,4,4,0,577.5,-122153.23,-5334.5273,223670.47,199995.11,2273.1924 -15414,18980,34321,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.6935635,8.5471249,0,0,0,-1058.7706,0,2,2,2019,9,0,36,38,1,0,0,20.624609,20.624609,0,0,0,0,0,0,0,0,5.1009216,0,49.64,48.69,-9,-9,3.333333333333333,2,3,0,0,10,8,5,1,1489,1574408.8,214329.67,463724.22,0,2239.2583 -15415,18981,34322,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,6.706789,6.6475043,0,0,0,-1170.9425,0,1,2,2019,17,5,15,15,1,5,0,6.3620868,6.3620868,0,0,0,0,0,1,1,0,.86233181,0,27.68,57.6,-9,-9,6.666666666666667,1,1,0,0,5,1,2,0,224,-306992.38,0,0,0,321.74597 -15416,18982,34323,34324,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,10,-3,0,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.32,50.22,30.76,28.13,8.333333333333334,1,1,0,0,0,13,1,0,1190.5,156125.48,0,0,0,2308.1851 -15416,18982,34324,34323,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,10,3,0,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,30.76,28.13,58.32,50.22,5,1,1,0,0,0,13,1,0,1190.5,156125.48,0,0,0,2308.1851 -15416,18983,34325,-9,34323,34324,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1082.432,-9,3,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,1,1,2,13,1,0,471,0,0,0,0,420.46671 -15417,18984,34326,34327,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.0501404,7.9064322,0,31,0,-56.321392,0,2,3,2019,21,9,39,28,1,9,0,9.0337029,9.0337029,0,0,0,0,0,0,0,0,0,0,25.61,62.71,48.87,58.55,5,1,1,0,0,9,13,5,1,590,1073896.4,680953,259625.97,15479.685,4763.2813 -15417,18984,34327,34326,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.9280481,9.3286276,0,31,0,-26.134007,0,3,3,2019,9,1,44,42,1,1,0,23.116184,23.116184,0,0,0,0,0,0,0,0,2.0030618,0,48.87,58.55,25.61,62.71,5,1,1,0,0,9,13,5,1,590,1073896.4,680953,259625.97,15479.685,4763.2813 -15417,18985,34328,-9,34326,34327,1,1,25,0,0,0,1,1,-9,0,3,8.3858128,8.2954664,0,0,0,-1139.8907,0,2,2,2019,13,1,40,42,1,1,1,11.647985,11.647985,0,0,0,0,0,0,0,0,0,0,27.2,55.13,-9,-9,5,1,1,0,0,7,13,4,1,1944,-134342.63,-141814.17,126703.16,114040,1871.9135 -15417,18986,34329,-9,34326,34327,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1017.9835,-9,2,2,2019,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.47,44.16,-9,-9,8.333333333333334,1,1,0,0,6,13,1,1,1603,0,0,0,0,0 -15418,18987,34330,34331,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.555892,7.2015882,0,30,1,31.807665,0,3,3,2019,15,4,12,50,1,4,0,13.429081,13.429081,0,0,0,0,0,0,0,0,0,0,55.02,30.67,60.6,43.75,5,1,1,0,0,9,7,3,1,1055,694357.56,80538.398,520982.81,0,1123.3164 -15418,18987,34331,34330,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,7.0581813,7.039125,0,31,-1,100.63819,0,2,2,2019,9,0,45,45,1,0,0,3.2740192,3.2740192,0,0,0,0,0,0,0,0,0,0,60.6,43.75,55.02,30.67,8.333333333333334,1,1,0,0,9,7,3,1,1055,694357.56,80538.398,520982.81,0,1123.3164 -15418,18988,34332,-9,34330,34331,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-959.63251,1,1,1,2019,20,8,0,37,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,35.52,48.67,-9,-9,6.666666666666667,1,1,0,0,9,7,1,1,1106,0,0,0,0,-166.84151 -15418,18989,34333,-9,34330,34331,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1006.304,-9,1,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.4786892,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,883,-136502.81,0,0,0,-328.79205 -15419,18990,34334,34335,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,6.9533172,6.8654838,0,19,-4,-104.76817,0,2,2,2019,9,0,30,20,1,0,0,3.699228,3.699228,0,0,0,0,0,0,0,0,0,0,54,53,57.06,57.76,8,1,1,0,0,1,9,3,1,734,741977.25,187602.63,407099.91,0,926.23596 -15419,18990,34335,34334,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.3727183,7.2343693,19,4,112.41982,0,2,-9,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.0427175,7.4953232,57.06,57.76,54,53,10,1,1,0,0,0,9,3,1,734,741977.25,187602.63,407099.91,0,926.23596 -15420,18991,34336,34337,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.8112073,6.5484939,46,-3,14.69055,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6266131,6.7631855,46.64,55.46,58.72,51.29,8.333333333333334,1,1,0,0,4,6,3,1,252,620130.38,559598.88,372632.88,0,2479.5413 -15420,18991,34337,34336,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.3374863,7.6959205,46,3,-62.97863,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.4875889,7.6030626,58.72,51.29,46.64,55.46,8.333333333333334,1,1,0,0,8,6,3,1,252,620130.38,559598.88,372632.88,0,2479.5413 -15420,18992,34338,-9,34336,34337,1,0,36,0,0,0,1,1,1,0,3,7.5980539,7.5179276,0,0,0,-1013.6284,-9,3,2,2019,12,0,60,0,1,0,0,4.4588008,4.4588008,0,0,0,0,0,1,1,0,0,0,44.74,48.37,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,699,249804.53,152140.98,0,0,491.33621 -15421,18993,34339,34341,-9,-9,1,1,36,1,1,0,2,2,-9,0,2,9.5280962,9.5523901,0,9,1,-126.69565,0,2,1,2019,17,6,72,60,1,6,0,17.385679,17.385679,0,0,0,0,0,1,1,0,4.219377,0,28.81,57.6,54.79,55.86,6.666666666666667,1,1,0,0,10,5,5,1,773.33331,183810.55,94300.547,214799.75,151432.61,4790.3364 -15421,18993,34340,-9,34341,34339,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.24896,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,773.33331,183810.55,94300.547,214799.75,151432.61,4790.3364 -15421,18993,34341,34339,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,7.6782312,8.030591,6.1955719,9,-1,31.225618,0,2,2,2019,7,0,24,45,1,0,0,10.279634,10.279634,0,0,0,0,0,1,1,0,7.0405302,0,54.79,55.86,28.81,57.6,8.333333333333334,1,1,0,0,11,5,5,1,773.33331,183810.55,94300.547,214799.75,151432.61,4790.3364 -15422,18994,34342,34343,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,5.9596186,6.5222049,46,-4,48.782948,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4091406,6.3430495,54.2,57.49,53.07,49.99,10,1,1,0,0,4,11,5,1,497.5,756141.31,387262.44,129362.56,0,6098.4463 -15422,18994,34343,34342,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,9.0333357,9.1195078,46,4,62.03273,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8835657,9.2603502,53.07,49.99,54.2,57.49,8.333333333333334,1,1,0,0,5,11,5,1,497.5,756141.31,387262.44,129362.56,0,6098.4463 -15423,18995,34344,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.7767224,6.6968989,0,0,-976.50244,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0239773,6.7593336,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,604,27268.219,113166.83,0,0,1028.441 -15424,18996,34345,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.6654911,6.6542315,0,0,-1028.8199,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5946431,6.6717811,56.74,52.23,-9,-9,8.333333333333334,1,1,0,0,10,8,2,1,902,336459.34,0,644077.25,0,633.77838 -15425,18997,34346,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.9238973,7.7827659,0,0,0,-995.02264,0,1,1,2019,6,0,37,0,1,0,0,9.6488762,9.6488762,0,0,0,0,0,0,0,0,0,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,5,12,3,0,705,124106.35,0,0,0,839.73395 -15426,18998,34347,34349,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.1422701,9.0996475,0,9,-1,19.608051,0,2,2,2019,1,0,44,44,1,0,0,26.724127,26.724127,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,277.66666,1066912.5,818940.56,231130.77,82201.953,4842.3789 -15426,18998,34348,-9,34349,34347,1,1,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-917.93732,-9,1,1,2019,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,5.2627068,0,62.39,56.71,-9,-9,10,1,1,1,0,0,12,5,1,277.66666,1066912.5,818940.56,231130.77,82201.953,4842.3789 -15426,18998,34349,34347,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.2471504,8.6564989,0,9,1,-37.065498,0,1,2,2019,7,0,37,35,1,0,0,16.278555,16.278555,0,0,0,0,0,0,0,0,1.9859371,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,12,5,1,277.66666,1066912.5,818940.56,231130.77,82201.953,4842.3789 -15427,18999,34350,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.8240919,7.5015278,0,0,-1015.606,0,-9,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,8.3608274,7.5108051,51.64,49.54,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1186,476158.88,133468.77,310721.94,0,3689.5667 -15428,19000,34351,34353,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.2304964,8.146884,0,7,5,63.579643,0,-9,-9,2019,7,0,36,37,1,0,0,15.743706,15.743706,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.22,58.79,10,1,1,0,1,9,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 -15428,19000,34352,-9,34353,34351,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.23358,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 -15428,19000,34353,34351,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.5593119,8.4087992,0,7,-5,99.988464,0,2,2,2019,18,6,50,52,1,6,0,15.579103,15.579103,0,0,0,0,0,1,1,0,0,0,42.22,58.79,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 -15428,19000,34354,-9,34353,34351,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.4884,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,839.25,449676.56,154311.58,271837.16,83660.734,3609.0923 -15429,19001,34355,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.1186104,7.1629057,0,0,0,-1042.6663,0,2,2,2019,7,0,28,61,1,0,0,5.4430251,5.4430251,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,5,4,3,0,929,-205185.06,-4591.9175,0,0,1483.8119 -15430,19002,34356,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1816645,8.1056442,0,0,0,-966.62244,0,2,2,2019,8,0,38,37,1,0,0,7.8856688,7.8856688,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,6,12,4,0,156,397365.09,0,0,0,1283.2183 -15430,19003,34357,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.1527309,8.2794018,0,0,0,-1034.002,-9,-9,-9,2019,9,0,37,0,1,0,0,9.9255209,9.9255209,0,0,0,0,0,0,0,0,0,0,55.96,44.4,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,2215,-291063.09,51821.031,0,0,2187.6416 -15431,19004,34358,34359,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.7504654,9.1016798,5.5787339,20,-8,104.83623,0,2,2,2019,7,0,83,47,1,0,0,8.8108053,8.8108053,0,0,0,0,0,0,0,0,5.0668116,0,47.49,55.02,49,50,8.333333333333334,1,1,0,0,10,2,5,1,1746.5,573853.88,521513.75,239012.22,143076.22,5212.335 -15431,19004,34359,34358,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.5818195,9.1369905,0,20,8,32.67498,0,2,2,2019,12,0,37,35,1,0,0,18.948301,18.948301,0,0,0,0,0,0,0,0,2.2298763,0,49,50,47.49,55.02,5,1,1,0,0,12,2,5,1,1746.5,573853.88,521513.75,239012.22,143076.22,5212.335 -15432,19005,34360,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.7528286,6.5302033,0,0,-1050.5841,0,3,3,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.4420071,7.0339036,59.46,30.92,-9,-9,6.666666666666667,1,1,0,0,3,11,2,0,375,-23193.021,91300.703,110788.06,0,1775.9452 -15433,19006,34361,34362,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7246342,7.494709,0,9,-5,-15.012358,0,2,2,2019,6,0,30,32,1,0,0,7.4693322,7.4693322,0,0,0,0,0,0,0,0,3.2343528,0,54.2,57.49,46.92,46.27,8.333333333333334,1,1,0,0,10,12,5,1,1183.5,1742585.4,1256321,268275.22,0,3349.7405 -15433,19006,34362,34361,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.1529741,8.5709829,7.4112072,9,5,-16.001589,0,3,3,2019,8,0,46,47,1,0,0,10.935345,10.935345,0,0,0,0,0,0,0,0,0,7.4341035,46.92,46.27,54.2,57.49,6.666666666666667,1,1,0,0,10,12,5,1,1183.5,1742585.4,1256321,268275.22,0,3349.7405 -15433,19007,34363,-9,34361,34362,1,0,27,0,0,0,1,1,-9,0,5,0,0,0,0,0,-829.55237,1,1,2,2019,10,0,0,28,2,0,1,0,0,0,0,0,0,7,0,0,0,.45788333,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,12,1,1,264,0,0,0,0,-755.76526 -15434,19008,34364,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.2036114,6.5050159,0,0,-1071.5797,0,2,3,2019,9,3,0,0,4,3,0,0,0,0,0,0,0,5.48,1,1,0,0,6.5107284,52.25,39.54,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,416,190995.2,0,268962.22,0,868.67157 -15435,19009,34365,-9,34368,34366,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.00653,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 -15435,19009,34366,34368,-9,-9,1,1,46,1,2,0,2,2,-9,0,3,8.486495,8.2741194,0,10,5,-17.579334,0,2,2,2019,12,0,48,48,1,0,0,9.0647879,9.0647879,0,0,0,0,0,1,1,0,0,0,47.72,55.04,48.28,53.42,8.333333333333334,1,1,0,0,13,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 -15435,19009,34367,-9,34368,34366,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.353,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 -15435,19009,34368,34366,-9,-9,1,0,41,1,2,0,2,2,-9,0,3,6.834691,6.7979217,0,10,-5,-25.138739,0,2,2,2019,11,0,16,16,1,0,0,9.073904,9.073904,0,0,0,0,27,1,1,0,0,0,48.28,53.42,47.72,55.04,8.333333333333334,1,1,0,0,12,10,3,1,507,254160.27,146051.73,167335.88,59273.141,2762.1204 -15436,19010,34369,34370,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,0,0,10,0,-4.1574841,0,-9,2,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,55.19,54.26,5,1,1,0,1,0,13,5,1,497,3967775,2714328.5,547462.75,0,4569.1133 -15436,19010,34370,34369,-9,-9,1,1,50,0,0,0,1,1,-9,1,4,9.4184113,9.3148794,0,10,0,16.446758,0,3,2,2019,11,3,55,40,1,3,0,19.594835,19.594835,0,0,0,0,14.5,1,1,0,0,0,55.19,54.26,32.5,17.73,6.666666666666667,1,1,0,1,11,13,5,1,497,3967775,2714328.5,547462.75,0,4569.1133 -15436,19011,34371,-9,34369,34370,1,0,20,0,0,0,2,2,1,0,4,5.3356028,5.3353405,0,0,0,-969.89044,-9,1,1,2019,22,8,12,0,1,8,1,2.7004125,2.7004125,0,0,0,0,2,1,1,0,.20219699,0,48.38,45.48,-9,-9,3.333333333333333,1,1,0,0,2,13,2,1,751,0,0,0,0,311.69159 -15437,19012,34372,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.1385975,7.9853053,7.3330054,0,0,-968.70184,0,3,3,2019,9,0,15,20,1,0,0,7.2245626,7.2245626,0,0,0,0,0,1,1,0,4.260839,7.7837968,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,1173,227199.11,118251,0,0,2583.761 -15438,19013,34373,34374,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,8.3158894,8.1820145,59,3,-31.497381,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1042042,41.38,53.82,51,52.08,8.333333333333334,1,1,0,0,0,5,3,1,694,1257278.5,177546.22,435986.75,0,3023.3481 -15438,19013,34374,34373,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.9048791,5.2401123,59,-3,16.279444,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,4.5898495,0,0,1,1,0,4.163969,5.2465391,51,52.08,41.38,53.82,8.333333333333334,1,1,0,0,0,5,3,1,694,1257278.5,177546.22,435986.75,0,3023.3481 -15439,19014,34375,-9,34378,34377,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-969.34851,-9,2,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 -15439,19014,34376,-9,34378,34377,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.0966,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 -15439,19014,34377,34378,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.7615051,8.4445524,0,3,-8,53.439316,0,3,3,2019,10,0,56,0,1,1,0,12.541304,12.541304,0,0,0,0,0,1,1,0,0,0,51,56,45.04,53.77,7,1,1,0,0,1,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 -15439,19014,34378,34377,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,6.6158957,6.5192304,0,3,8,7.2382474,0,3,2,2019,14,2,32,16,1,2,0,3.2143257,3.2143257,0,0,0,0,0,1,1,0,0,0,45.04,53.77,51,56,5,1,1,0,0,5,5,3,0,831.75,-45030.387,-63471.148,0,0,3773.1331 -15439,19015,34379,-9,34378,34377,1,0,23,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1022.4247,1,3,3,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,5,2,0,216,187881.2,0,0,0,872.94965 -15440,19016,34380,34381,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,8.5128078,8.2404175,4,-2,6.2068558,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.1046801,7.9852967,57.78,46.41,63.48,32.92,8.333333333333334,1,1,0,0,0,10,5,1,935,3241007.5,337967.91,1022893.5,0,9432.6523 -15440,19016,34381,34380,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,8.4768934,8.1564798,4,2,21.357206,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.8289728,8.2618532,63.48,32.92,57.78,46.41,0,1,1,0,0,0,10,5,1,935,3241007.5,337967.91,1022893.5,0,9432.6523 -15441,19017,34382,34383,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.0388737,7.9433398,0,1,0,-74.98423,-9,-9,-9,2019,7,0,45,0,1,0,0,7.0612454,7.0612454,0,0,0,0,0,0,0,0,0,0,64.72,41.94,40.23,61.31,10,1,1,0,0,2,6,4,0,1120.5,161758.27,0,0,0,2073.8281 -15441,19017,34383,34382,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.6726537,7.5412626,0,1,0,41.700016,0,2,2,2019,20,7,40,55,1,7,0,6.6896639,6.6896639,0,0,0,0,2,0,0,0,1.5827703,0,40.23,61.31,64.72,41.94,5,1,1,0,0,6,6,4,0,1120.5,161758.27,0,0,0,2073.8281 -15442,19018,34384,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.7531862,8.5278311,0,0,-1051.3541,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.040091,8.3532038,55.83,54.24,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,485,2087131.1,1123934,361542.94,0,4138.8169 -15443,19019,34385,34386,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8591595,8.0391417,0,8,0,-23.572966,0,-9,-9,2019,10,0,40,35,1,0,0,7.7009039,7.7009039,0,0,0,0,0,0,0,0,0,0,50.84,47.24,48.08,43.86,8.333333333333334,1,1,0,0,9,12,4,0,1230.5,379412.66,506369.56,90315.672,0,3265.54 -15443,19019,34386,34385,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0572929,8.1641054,0,8,0,73.825317,0,3,3,2019,13,1,51,38,1,1,0,7.2945523,7.2945523,0,0,0,0,0,0,0,0,0,0,48.08,43.86,50.84,47.24,6.666666666666667,1,1,0,0,8,12,4,0,1230.5,379412.66,506369.56,90315.672,0,3265.54 -15443,19020,34387,-9,34385,34386,1,1,25,0,0,0,2,2,-9,0,3,7.4874368,7.2865701,0,0,0,-959.05121,0,2,3,2019,9,0,30,35,1,0,1,7.5793056,7.5793056,0,0,0,0,2,0,0,0,0,0,44.38,58.1,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,1491,-37974.25,68769.773,0,0,1043.9684 -15444,19021,34388,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.3500862,7.824543,6.3620286,0,0,-1066.5109,0,2,2,2019,12,0,20,20,1,0,0,8.1033249,8.1033249,0,0,0,0,0,1,1,0,6.1260729,0,35.97,61.83,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,1441.5,-54676.586,-22603.984,128707.97,66473.25,1550.5157 -15444,19021,34389,-9,34388,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.5296,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1441.5,-54676.586,-22603.984,128707.97,66473.25,1550.5157 -15445,19022,34390,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.8538809,8.7173433,0,0,0,-925.34412,0,2,3,2019,29,11,80,65,1,11,0,8.9571619,8.9571619,0,0,0,0,0,0,0,0,4.7278724,0,37.79,59.6,-9,-9,1.666666666666667,1,1,0,0,7,2,5,1,839,692382.5,185974.42,299791.69,91406.18,2326.209 -15446,19023,34391,34392,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.3777041,7.1038084,0,4,8,-8.0911856,0,-9,-9,2019,14,3,26,10,1,3,0,5.8998766,5.8998766,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.69,41.13,8.333333333333334,1,1,0,0,5,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 -15446,19023,34392,34391,-9,-9,1,1,42,0,2,0,1,1,-9,0,2,9.5746641,9.1803484,0,15,-8,15.040379,0,2,2,2019,23,10,50,60,1,10,0,19.91791,19.91791,0,0,0,0,0,0,0,0,0,0,31.69,41.13,45.91,59.89,3.333333333333333,1,1,0,0,12,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 -15446,19023,34393,-9,34391,34392,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.6193,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 -15446,19023,34394,-9,34391,34392,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1029.9191,-9,2,1,2019,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1.7733537,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,1,12,5,1,426.75,115883.43,14921.123,159294.56,0,3778.0742 -15447,19024,34395,-9,-9,-9,1,1,22,0,0,0,2,2,1,0,4,7.4745178,7.2849708,0,0,0,-818.78119,-9,2,2,2019,9,0,30,0,1,0,1,5.8863249,5.8863249,0,0,0,0,2,0,0,0,0,0,43.8,49.97,-9,-9,0,1,1,0,0,6,4,3,1,4371,126662.45,0,0,0,1428.1128 -15448,19025,34396,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-957.03204,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,8.4012814,0,0,1,1,0,0,0,61.45,8.52,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,458,-4380.0298,0,0,0,1920.9011 -15449,19026,34397,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,7.7407823,7.9721456,0,0,-940.64996,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,1.4679302,0,27.004539,0,1,1,0,6.183548,7.7987981,58.3,42.18,-9,-9,8.333333333333334,1,1,0,0,10,8,3,0,472,932532.31,505264.47,303449.31,0,1834.9503 -15450,19027,34398,34399,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.7984524,7.9687018,8,7,125.66702,0,-9,-9,2019,20,8,0,0,4,8,0,0,0,1,0,0,0,14.5,1,1,0,0,8.0608196,36.44,23.85,42.86,34.81,3.333333333333333,1,1,0,0,0,2,4,1,455.5,1040330.2,397671.44,183145.59,0,3168.9761 -15450,19027,34399,34398,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.3019838,7.3543835,58,-7,12.88791,0,3,3,2019,20,9,0,0,4,9,0,0,0,0,0,0,0,27,1,1,0,2.5559042,6.9233394,42.86,34.81,36.44,23.85,6.666666666666667,1,1,0,0,0,2,4,1,455.5,1040330.2,397671.44,183145.59,0,3168.9761 -15451,19028,34400,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,1,0,4.4472589,4.3713088,0,0,-1233.8708,0,3,3,2019,19,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,4.9034395,4.4475403,30.32,17.53,-9,-9,0,1,1,0,1,0,4,2,1,423,90430.242,8494.125,0,0,1491.719 -15451,19029,34401,-9,34400,-9,1,0,21,0,0,0,2,2,-9,0,5,0,3.6709836,3.7409716,0,0,-1079.9033,1,3,-9,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,27,1,1,0,4.3416028,0,57.06,57.76,-9,-9,5,1,1,0,0,0,4,2,1,166,175754.81,0,0,0,96.58567 -15452,19030,34402,-9,34404,34403,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-922.60834,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 -15452,19030,34403,34404,-9,-9,1,1,26,0,2,0,2,2,-9,0,5,7.3548131,7.0347376,0,2,-22,-32.687119,0,-9,-9,2019,10,2,20,0,1,2,0,8.6748629,8.6748629,0,0,0,0,0,1,1,0,0,0,41.07,60.93,46.32,20.19,8.333333333333334,2,3,0,0,1,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 -15452,19030,34404,34403,-9,-9,1,0,48,0,2,0,2,2,-9,1,2,7.1096654,7.1815467,0,2,22,-15.73524,0,3,3,2019,10,1,16,18,1,1,0,7.7881937,7.7881937,0,0,0,0,0,1,1,0,0,0,46.32,20.19,41.07,60.93,5,2,3,0,0,2,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 -15452,19030,34405,-9,34404,34403,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.6057,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,623.75,-49338.844,-36694.141,49594.195,44333.543,2736.6079 -15453,19031,34406,34407,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.8702192,9.1348124,0,3,-1,18.175341,0,1,1,2019,11,4,41,43,1,4,0,22.804316,22.804316,0,0,0,0,0,0,0,0,5.8563652,0,51.14,60.45,50,57,8.333333333333334,2,3,0,0,6,9,5,0,807.5,561089.13,202059.77,623196.75,222301.09,5869.9541 -15453,19031,34407,34406,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.9368153,9.6550169,0,3,1,-61.573635,0,-9,-9,2019,10,0,38,38,1,1,0,21.458828,21.458828,0,0,0,0,0,0,0,0,0,0,50,57,51.14,60.45,7,2,3,0,0,1,9,5,0,807.5,561089.13,202059.77,623196.75,222301.09,5869.9541 -15454,19032,34408,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,0,0,0,0,-919.07178,0,2,1,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.11634,0,49.66,50.04,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1545,54371.496,0,0,0,1267.6332 -15455,19033,34409,34410,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.6915994,7.9324498,40,6,-58.827744,0,2,-9,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2474017,7.9268079,60.12,41.6,50,48,8.333333333333334,1,1,0,0,0,2,5,1,534.5,524981.69,271539.09,216798.06,128282.85,4938.8359 -15455,19033,34410,34409,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.660758,8.5333138,0,40,-6,-107.97784,0,3,3,2019,11,0,37,37,1,2,0,18.333723,18.333723,0,0,0,0,0,1,1,0,0,0,50,48,60.12,41.6,7,1,1,0,0,1,2,5,1,534.5,524981.69,271539.09,216798.06,128282.85,4938.8359 -15455,19034,34411,-9,34410,34409,1,1,36,0,0,0,1,1,-9,0,3,8.3822813,8.3036203,0,0,0,-1040.2778,0,2,2,2019,6,0,36,36,1,0,0,14.656356,14.656356,0,0,0,0,0,1,1,0,4.0957675,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,771,38029.563,21324.127,133200.78,78760.258,811.83301 -15456,19035,34412,34413,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,8.3500128,8.0148764,0,9,7,7.8035798,0,3,3,2019,6,0,40,50,1,0,0,9.1895733,9.1895733,1,0,0,0,0,1,1,0,3.0881631,0,60.12,54.8,49.84,47.3,6.666666666666667,1,1,0,0,10,9,4,1,671,427583.41,141328.33,292413.31,0,4026.4678 -15456,19035,34413,34412,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.2315197,8.374033,0,9,-7,6.4231462,0,-9,-9,2019,10,0,50,50,1,0,0,9.2954969,9.2954969,0,0,0,0,0,1,1,0,2.7445514,0,49.84,47.3,60.12,54.8,1.666666666666667,1,1,0,0,10,9,4,1,671,427583.41,141328.33,292413.31,0,4026.4678 -15457,19036,34414,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,5.7380962,5.7182865,0,0,-1057.3245,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.9212445,0,0,0,1,1,0,.82212526,6.0912576,52.58,50.04,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1865,443841.97,100027.68,160202.17,0,954.27625 -15458,19037,34415,34417,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.8360205,8.9817724,0,7,4,.20461737,0,2,1,2019,9,0,38,40,1,0,0,26.971577,26.971577,0,0,0,0,0,0,0,0,7.2168775,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,8,12,5,1,508.33334,1536895,924689.94,376091.59,0,5076.7266 -15458,19037,34416,-9,34417,34415,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.6271,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,508.33334,1536895,924689.94,376091.59,0,5076.7266 -15458,19037,34417,34415,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.6280012,8.5509186,0,7,-4,-110.32273,0,2,2,2019,7,0,40,37,1,0,0,18.805956,18.805956,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,8,12,5,1,508.33334,1536895,924689.94,376091.59,0,5076.7266 -15459,19038,34418,34419,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0750766,6.9151645,9,2,-148.36601,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.246007,7.3071032,51.9,43.68,34.96,27.45,8.333333333333334,1,1,0,0,0,1,3,1,139,703744.13,526701.13,232179.75,0,2904.7129 -15459,19038,34419,34418,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.3563509,6.3772798,23,-2,-85.297958,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.2222633,34.96,27.45,51.9,43.68,6.666666666666667,1,1,0,0,10,1,3,1,139,703744.13,526701.13,232179.75,0,2904.7129 -15460,19039,34420,34421,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,-6,-74.463768,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.3080263,0,59.84,33.48,60.12,54.8,8.333333333333334,1,1,0,0,0,13,4,1,1117,669528.94,495011.03,0,0,4810.3506 -15460,19039,34421,34420,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.9800816,8.6007357,10,6,38.031849,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0957313,8.8394203,60.12,54.8,59.84,33.48,8.333333333333334,1,1,0,0,3,13,4,1,1117,669528.94,495011.03,0,0,4810.3506 -15461,19040,34422,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.075974,5.0463829,0,0,-1075.5559,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.2488084,64.75,30.9,-9,-9,10,1,1,0,0,0,11,2,0,575,-37260.906,0,153468.63,0,1108.3551 -15462,19041,34423,34424,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.5228672,7.9421048,4,2,13.814327,0,3,3,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,14.5,1,1,0,1.5284857,7.588695,35.8,59.5,51,46,8.333333333333334,1,1,0,0,0,13,3,1,466.5,941053.5,319738.22,247296.34,0,2597.6301 -15462,19041,34424,34423,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,4,-2,-4.4274125,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,2.8752115,0,2,1,1,0,.86116427,0,51,46,35.8,59.5,7,1,1,0,0,0,13,3,1,466.5,941053.5,319738.22,247296.34,0,2597.6301 -15463,19042,34425,34426,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,7,3,0,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,0,0,51.31,45.18,49.11,21.07,6.666666666666667,1,1,0,0,0,13,1,1,488,-92963.117,0,0,0,1212.4037 -15463,19042,34426,34425,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,7,-3,0,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,21.07,51.31,45.18,3.333333333333333,1,1,0,0,0,13,1,1,488,-92963.117,0,0,0,1212.4037 -15464,19043,34427,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.4836979,8.2572975,0,0,0,-1017.017,0,-9,-9,2019,9,0,44,38,1,0,0,11.851176,11.851176,0,0,0,0,0,0,0,0,3.2148912,0,62.39,56.71,-9,-9,5,1,1,0,0,5,9,4,0,443,-74421.5,-23415.719,0,0,900.51105 -15465,19044,34428,-9,34430,34429,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-887.82831,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,5,1,322.33334,216984.05,235638.61,176901.58,44418.563,4139.2139 -15465,19044,34429,34430,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,8.4982882,8.6969614,0,3,0,-48.250156,0,-9,-9,2019,9,0,42,40,1,0,0,15.035985,15.035985,0,0,0,0,0,1,1,0,3.011745,0,51.39,50.6,57.16,56.15,8.333333333333334,1,1,0,0,6,13,5,1,322.33334,216984.05,235638.61,176901.58,44418.563,4139.2139 -15465,19044,34430,34429,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.7250662,8.5697384,0,3,0,-121.57641,0,3,3,2019,7,0,32,38,1,0,0,20.510881,20.510881,0,0,0,0,0,1,1,0,2.0754473,0,57.16,56.15,51.39,50.6,10,1,1,0,0,7,13,5,1,322.33334,216984.05,235638.61,176901.58,44418.563,4139.2139 -15466,19045,34431,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.6846943,7.5124207,0,0,0,-1082.3049,-9,-9,-9,2019,14,3,3,0,1,3,0,71.176857,71.176857,0,0,0,0,0,1,1,0,6.5770793,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,10,6,3,1,1709,-288938.75,88612.914,0,0,1091.7684 -15467,19046,34432,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,7.1899176,7.454453,0,0,-971.26678,0,-9,-9,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,7.2047973,34.3,23.58,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,1536,404439.88,57854.871,95218.023,0,1750.6014 -15468,19047,34433,34434,-9,-9,1,1,47,0,1,0,3,3,-9,1,1,0,0,0,24,-3,-115.39958,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.38,30.14,54.79,55.86,3.333333333333333,1,1,0,0,5,6,3,1,2796,37283.703,55145.992,138941.69,57276.766,2085.6025 -15468,19047,34434,34433,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.8310471,7.8145533,0,24,3,79.032257,0,2,2,2019,11,0,35,45,1,0,0,8.0473137,8.0473137,0,0,0,0,91,1,1,0,2.9744754,0,54.79,55.86,29.38,30.14,6.666666666666667,1,1,0,0,12,6,3,1,2796,37283.703,55145.992,138941.69,57276.766,2085.6025 -15469,19048,34435,34436,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,8.092392,7.9735298,0,10,-7,-13.543785,0,2,3,2019,33,12,38,37,1,12,0,7.7934208,7.7934208,0,0,0,0,0,1,1,0,0,0,26.98,37.9,35.55,46.08,1.666666666666667,1,1,0,1,12,9,3,1,863,362269.81,338809.59,289885.31,0,1686.9084 -15469,19048,34436,34435,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.2329316,6.1991019,10,7,-123.80814,0,-9,2,2019,10,1,0,12,4,1,0,0,0,0,0,0,0,14.5,1,1,0,5.2037687,6.1073089,35.55,46.08,26.98,37.9,6.666666666666667,1,1,0,0,9,9,3,1,863,362269.81,338809.59,289885.31,0,1686.9084 -15469,19049,34437,-9,34435,34436,1,1,30,0,0,0,2,2,-9,0,2,7.268611,7.1569657,0,0,0,-871.96399,0,2,2,2019,12,0,21,30,1,0,1,7.3265557,7.3265557,0,0,0,0,0,1,1,0,0,0,42.41,50.08,-9,-9,3.333333333333333,1,1,0,0,9,9,3,1,367,108175.72,0,329208.5,0,624.36633 -15470,19050,34438,34439,-9,-9,1,1,49,0,3,0,1,1,-9,0,5,9.252284,9.1545515,0,17,-3,58.53973,0,3,2,2019,8,0,40,38,1,0,0,24.480448,24.480448,0,0,0,0,0,1,1,0,9.0536566,0,57.06,57.76,50.5,38.58,8.333333333333334,2,3,0,0,13,9,4,1,683.5,1380976,456452.69,141912.22,21668.629,4920.3369 -15470,19050,34439,34438,-9,-9,1,0,52,0,3,0,2,2,-9,0,3,0,0,0,17,3,-97.265961,0,1,1,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,7.0632286,0,50.5,38.58,57.06,57.76,8.333333333333334,2,3,0,0,3,9,4,1,683.5,1380976,456452.69,141912.22,21668.629,4920.3369 -15471,19051,34440,34441,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,6,-3,91.701279,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.06,38.34,60.2,39.82,8.333333333333334,1,1,0,0,3,11,2,1,827,46391.141,189503.06,78833.25,0,1756.3948 -15471,19051,34441,34440,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.4741158,6.5545764,6,3,72.180748,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,6.3852963,60.2,39.82,66.06,38.34,8.333333333333334,1,1,0,0,0,11,2,1,827,46391.141,189503.06,78833.25,0,1756.3948 -15472,19052,34442,34444,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,7.0234404,6.9528394,0,9,12,2.1454813,0,-9,-9,2019,12,0,13,7,1,0,0,10.625456,10.625456,0,0,0,0,0,1,1,0,2.7560844,0,44.3,48.41,54.1,59.11,6.666666666666667,1,1,0,0,10,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 -15472,19052,34443,-9,34442,34444,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.79572,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 -15472,19052,34444,34442,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,5.2398858,5.344048,0,9,-12,84.3927,0,1,1,2019,12,1,40,40,1,1,0,.75447547,.75447547,0,0,0,0,0,1,1,0,0,0,54.1,59.11,44.3,48.41,6.666666666666667,1,1,0,0,10,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 -15472,19052,34445,-9,34442,34444,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.69885,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,2,1,309,214479.98,-43212.801,0,0,2069.9331 -15473,19053,34446,34447,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,8.0921278,7.9330955,0,22,-7,-106.07014,0,3,1,2019,5,0,40,31,1,0,0,7.7305598,7.7305598,0,0,0,0,0,1,1,0,7.6033616,0,62.87,41.3,51.65,52.38,8.333333333333334,2,3,0,0,8,8,5,1,291.5,1407117.8,698356.25,881329.38,86686.234,5138.2002 -15473,19053,34447,34446,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,9.2430248,9.4414616,0,22,7,10.392619,0,3,3,2019,16,5,39,39,1,5,0,30.95167,30.95167,0,0,0,0,0,1,1,0,4.4145727,0,51.65,52.38,62.87,41.3,3.333333333333333,2,3,0,0,11,8,5,1,291.5,1407117.8,698356.25,881329.38,86686.234,5138.2002 -15473,19054,34448,-9,34446,34447,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1023.0191,-9,1,1,2019,15,4,0,0,2,4,1,0,0,0,0,0,0,0,1,1,0,0,0,49.49,56.97,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,1021,-63348.82,0,0,0,0 -15474,19055,34449,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7295666,7.5564089,0,0,0,-872.45447,0,2,2,2019,9,0,36,0,1,0,0,7.4887204,7.4887204,0,0,0,0,0,0,0,0,0,0,52.22,53.26,-9,-9,6.666666666666667,3,4,0,0,5,8,3,0,147,94702.305,-49194.105,0,0,1327.9513 -15475,19056,34450,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8195639,8.114563,0,0,0,-995.67126,0,2,-9,2019,12,0,35,40,1,0,0,8.4882154,8.4882154,0,0,0,0,0,1,0,1,0,0,36.03,55.74,-9,-9,1.666666666666667,1,1,0,0,12,4,4,0,1444,605140.63,404784.06,0,0,3230.2334 -15476,19057,34451,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-915.69952,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,16.025141,0,0,1,1,0,0,0,37.3,27.76,-9,-9,1.666666666666667,3,4,0,0,0,2,1,0,175,265418.63,0,83003.984,0,1690.1101 -15477,19058,34452,34453,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.0894337,7.7585692,0,6,-8,-23.435225,-9,2,2,2019,7,0,40,0,1,0,0,8.2614584,8.2614584,0,0,0,0,0,0,0,0,0,0,48.77,60.16,58.15,52.91,8.333333333333334,1,1,0,0,10,11,4,0,1036.5,219917.09,35673.289,0,0,2332.3066 -15477,19058,34453,34452,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.9495764,8.193512,0,6,8,67.992584,0,-9,-9,2019,7,0,40,32,1,0,0,8.8900118,8.8900118,0,0,0,0,0,0,0,0,0,0,58.15,52.91,48.77,60.16,10,1,1,0,0,12,11,4,0,1036.5,219917.09,35673.289,0,0,2332.3066 -15478,19059,34454,34456,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.9184036,6.7847309,0,10,1,75.463425,0,2,1,2019,9,0,40,40,1,0,0,3.1506255,3.1506255,0,0,0,0,0,0,0,0,8.907423,0,50.65,53.71,35.36,56.72,8.333333333333334,1,1,0,0,11,5,5,1,658.33331,803786,507336.28,134898.83,0,8773.5781 -15478,19059,34455,-9,34456,34454,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1025.1848,-9,1,2,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.63,55.6,-9,-9,10,1,1,0,0,0,5,5,1,658.33331,803786,507336.28,134898.83,0,8773.5781 -15478,19059,34456,34454,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.3923397,9.9926834,0,10,-1,10.669379,-9,-9,-9,2019,26,9,42,0,1,9,0,40.765881,40.765881,0,0,0,0,0,0,0,0,0,0,35.36,56.72,50.65,53.71,3.333333333333333,1,1,0,0,11,5,5,1,658.33331,803786,507336.28,134898.83,0,8773.5781 -15479,19060,34457,34458,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.6064577,9.6316614,0,14,-1,112.92003,0,-9,-9,2019,9,0,45,60,1,1,0,47.733105,47.733105,0,0,0,0,0,0,0,0,5.9622898,0,53,55,51,54,8,1,1,0,0,8,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 -15479,19060,34458,34457,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,9.071991,9.1406527,0,14,1,-86.99054,0,2,2,2019,10,0,30,50,1,1,0,33.11512,33.11512,0,0,0,0,0,0,0,0,8.7325916,0,51,54,53,55,8,1,1,0,0,6,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 -15479,19060,34459,-9,34458,34457,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.6142,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 -15479,19060,34460,-9,34458,34457,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1067.6954,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,5,1,428.25,2035703.3,165555.78,1355476.8,194935.5,9394.9385 -15480,19061,34461,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.4386334,7.2211947,0,0,-891.80023,0,2,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9732414,7.7000828,59.29,41.8,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,362,777236.25,203004.33,404863.84,0,1634.2678 -15481,19062,34462,-9,34463,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.29358,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 -15481,19062,34463,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,0,0,-952.29602,-9,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 -15481,19062,34464,-9,34463,-9,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-982.27509,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 -15481,19062,34465,-9,34463,-9,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-962.65253,-9,2,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,7,1,0,1515,16522.438,0,0,0,2214.9736 -15482,19063,34466,-9,34467,34468,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-971.92834,-9,2,1,2019,19,8,0,0,2,8,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,61.83,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,686,280904.25,-15320.449,179957.11,0,2430.0154 -15482,19063,34467,34468,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,9,-24,-135.78612,0,2,2,2019,9,0,0,7,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,2,6,2,1,686,280904.25,-15320.449,179957.11,0,2430.0154 -15482,19063,34468,34467,-9,-9,1,1,68,0,2,0,1,1,-9,0,4,8.1219187,7.6732144,0,9,24,-32.660389,0,-9,-9,2019,10,0,60,45,1,0,0,6.3740616,6.3740616,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,11,6,2,1,686,280904.25,-15320.449,179957.11,0,2430.0154 -15483,19064,34469,34470,-9,-9,1,0,30,2,2,0,2,2,-9,0,4,8.597826,8.3941927,0,5,1,-49.839809,0,-9,-9,2019,11,0,23,23,1,0,0,19.088533,19.088533,0,0,0,0,0,1,1,0,4.7330713,0,48.87,58.55,33.04,66.23999999999999,8.333333333333334,1,1,0,0,7,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 -15483,19064,34470,34469,-9,-9,1,1,29,2,2,0,2,2,-9,0,5,8.483367,8.1263046,0,5,-1,-19.28895,0,-9,-9,2019,12,1,46,46,1,1,0,12.042691,12.042691,0,0,0,0,0,1,1,0,4.1431518,0,33.04,66.23999999999999,48.87,58.55,8.333333333333334,1,1,0,0,11,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 -15483,19064,34471,-9,34469,34470,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4533,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 -15483,19064,34472,-9,34469,34470,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.9838,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,343.75,-117495.11,10804.234,0,0,4323.8081 -15484,19065,34473,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1001.158,1,-9,-9,2019,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,.376019,0,33,42.97,-9,-9,6.666666666666667,1,1,0,0,1,2,1,0,455,136756.45,0,0,0,9.1868525 -15485,19066,34474,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,0,0,0,0,-989.20941,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,8.09,-9,-9,5,1,1,0,0,0,9,1,0,193,-303620.38,0,0,0,2179.303 -15486,19067,34475,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.8051376,8.9613934,0,0,0,-1007.0294,0,2,2,2019,7,0,54,59,1,0,0,15.847857,15.847857,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,7,12,5,0,200,-413950.69,333463.69,189374.36,30397.672,2411.0735 -15487,19068,34476,34477,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.0394983,9.0658646,0,6,-2,95.021065,0,-9,-9,2019,9,0,45,50,1,1,0,21.361393,21.361393,0,0,0,0,0,0,0,0,6.5077033,0,53,54,59.71,45.35,8,1,1,0,0,1,2,5,1,382,167797.89,378355.06,233764.77,111332.22,4596.6396 -15487,19068,34477,34476,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6250372,7.6704988,0,10,2,208.38063,0,2,2,2019,6,0,35,30,1,0,0,6.5936337,6.5936337,0,0,0,0,0,0,0,0,0,0,59.71,45.35,53,54,8.333333333333334,1,1,0,0,8,2,5,1,382,167797.89,378355.06,233764.77,111332.22,4596.6396 -15488,19069,34478,34479,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,52,-1,-49.601154,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.69,31.4,60.29,52.11,6.666666666666667,1,1,0,0,3,10,2,1,1513,112245.66,-8976.334,115305.5,0,1450.1277 -15488,19069,34479,34478,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.9018779,7.0536304,52,1,45.059074,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7531853,7.1341214,60.29,52.11,55.69,31.4,5,1,1,0,0,7,10,2,1,1513,112245.66,-8976.334,115305.5,0,1450.1277 -15489,19070,34480,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,.26179993,0,0,0,0,-923.48779,0,2,2,2019,9,0,30,38,1,0,0,.00054143195,.00054143195,0,0,0,0,0,1,1,0,.44067192,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,2520,-171158.22,0,0,0,-58.730839 -15490,19071,34481,34482,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.6977458,7.6705503,43,-2,80.209076,0,1,1,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,6.753612,7.2854486,40.15,19.42,52,48,10,1,1,0,0,4,13,4,1,1865,1985153.8,1454425,281319.91,0,4520.9946 -15490,19071,34482,34481,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.8153105,7.8562698,43,2,-20.765764,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.2418165,8.048625,52,48,40.15,19.42,7,1,1,0,0,0,13,4,1,1865,1985153.8,1454425,281319.91,0,4520.9946 -15491,19072,34483,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1006.5151,0,2,2,2019,23,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,36.83,19.91,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,481,-285176.16,0,0,0,1636.5392 -15492,19073,34484,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,5.1794615,5.5751133,0,0,-792.16083,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,3.2114487,2.6260831,0,0,1,1,0,0,5.4535999,62.44,32.39,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,411,473511.09,81240.375,110869.52,0,1271.8326 -15493,19074,34485,34486,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,43,-5,42.718952,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,36.6,63.08,18.62,5,1,1,0,0,3,2,3,1,541,977708.88,476401.25,211463.98,0,2144.7637 -15493,19074,34486,34485,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,7.9070277,7.9836822,43,5,37.932873,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6426892,63.08,18.62,48.1,36.6,8.333333333333334,1,1,0,0,5,2,3,1,541,977708.88,476401.25,211463.98,0,2144.7637 -15494,19075,34487,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.8844991,7.7170963,0,0,0,-986.78638,0,2,2,2019,4,0,35,35,1,0,0,8.7209597,8.7209597,0,0,0,0,2,1,1,0,0,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,904,47072.496,268959.38,0,0,856.68597 -15495,19076,34488,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-951.71582,0,3,3,2019,6,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,126,450900.41,0,135988.27,0,464.59479 -15496,19077,34489,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.5500183,6.6189961,0,0,-972.05676,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,25.962736,0,0,0,1,1,0,0,6.8240595,42.67,25.23,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,639,319457.5,-71815.945,223841.31,0,1218.2238 -15497,19078,34490,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,0,0,0,0,-953.51093,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,59.22,22.06,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1960,157005.61,420732.63,110897.85,88965.836,1026.3375 -15497,19079,34491,-9,34490,-9,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1004.1643,0,2,2,2019,21,6,0,34,3,6,0,0,0,0,0,0,0,0,1,1,0,0,0,49.67,10.31,-9,-9,0,1,1,0,0,4,12,2,0,212,0,0,0,0,679.07092 -15498,19080,34492,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1170.9368,0,2,2,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,1,0,1,0,0,34,28,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,1230,-323508.25,-34990.23,0,0,493.20428 -15498,19081,34493,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.80505,-9,-9,-9,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,7,1,0,1,0,0,40.22,42.78,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,682,215147.05,0,0,0,302.67471 -15499,19082,34494,34495,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.4947481,8.5177011,6.7784705,25,0,165.64392,0,2,2,2019,7,0,39,37,1,0,0,12.309376,12.309376,0,0,0,0,0,0,0,0,0,7.2492681,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,11,10,5,1,2523.5,941080.88,1092415.8,213022.2,148784.2,3727.4282 -15499,19082,34495,34494,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.1250906,7.7579217,0,25,0,-86.726616,0,3,2,2019,14,3,38,37,1,3,0,10.629353,10.629353,0,0,0,0,0,0,0,0,0,0,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,11,10,5,1,2523.5,941080.88,1092415.8,213022.2,148784.2,3727.4282 -15499,19083,34496,-9,34495,34494,1,0,20,0,0,0,2,2,-9,0,2,7.2872257,7.2623873,0,0,0,-1080.575,0,2,2,2019,15,3,19,28,1,3,1,8.0451937,8.0451937,0,0,0,0,0,0,0,0,0,0,28.21,46.8,-9,-9,3.333333333333333,1,1,0,0,4,10,3,1,121,279563.59,41257.93,0,0,179.636 -15500,19084,34497,34498,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.4232388,8.6931229,0,4,-5,101.75771,0,3,3,2019,9,0,32,32,1,0,0,18.894064,18.894064,0,0,0,0,0,0,0,0,2.0504749,0,52.4,52.91,54.2,57.49,6.666666666666667,1,1,0,0,9,4,5,1,402.5,268518.41,185027.75,0,0,4041.2251 -15500,19084,34498,34497,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3791714,9.07617,0,4,5,75.891945,0,-9,-9,2019,10,0,42,42,1,0,0,15.510032,15.510032,0,0,0,0,0,0,0,0,6.7599192,0,54.2,57.49,52.4,52.91,8.333333333333334,1,1,0,0,9,4,5,1,402.5,268518.41,185027.75,0,0,4041.2251 -15501,19085,34499,34500,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,-3,58.132542,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,47.38,57.75,7,1,1,0,0,0,11,4,1,411,1137165.3,942661.13,257477.48,18277.924,3252.9185 -15501,19085,34500,34499,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,8.5425453,8.2706099,7.0215993,44,3,-46.156994,0,2,-9,2019,10,1,4,16,1,1,0,125.44761,125.44761,1,0,0,0,74.5,1,1,0,7.0646772,6.6674285,47.38,57.75,50,47,6.666666666666667,1,1,0,0,10,11,4,1,411,1137165.3,942661.13,257477.48,18277.924,3252.9185 -15502,19086,34501,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,0,0,0,0,0,-956.60779,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,1.7305024,0,49.29,54.59,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,720,201663.3,89197.852,352549.84,60321.68,1124.9634 -15503,19087,34502,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.8499718,7.9821196,3.1637816,0,0,-1018.7452,0,-9,-9,2019,11,0,45,45,1,0,0,6.3207622,6.3207622,0,0,0,0,0,1,1,0,3.175745,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,3,2,3,0,1421,206229.53,51938.641,0,0,974.55524 -15504,19088,34503,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.3327618,7.8518648,0,0,0,-1057.3943,0,2,2,2019,7,0,46,46,1,0,0,10.303325,10.303325,0,0,0,0,0,0,0,0,0,0,61.1,41.19,-9,-9,10,1,1,0,0,8,12,4,0,372,-42357.324,57447.184,245998.5,0,863.15912 -15504,19089,34504,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.0687943,8.2036953,0,0,0,-951.45593,0,2,2,2019,11,0,55,70,1,0,0,5.1459603,5.1459603,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,5,1,1,0,0,9,12,4,0,686,619698,160011.58,90606.617,4765.1392,1128.6379 -15505,19090,34505,34506,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,6.895493,6.6891785,0,20,-8,3.3001328,0,2,2,2019,10,0,17,16,1,0,0,7.0277719,7.0277719,0,0,0,0,0,1,1,0,0,0,51.41,56.15,41.69,56.83,5,1,1,0,0,11,2,3,1,546,190514.56,171700.95,77218.047,9700.3574,1754.9487 -15505,19090,34506,34505,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.192811,8.0328388,0,20,8,100.75411,0,2,2,2019,15,3,44,46,1,3,0,7.3510575,7.3510575,0,0,0,0,7,1,1,0,2.0751488,0,41.69,56.83,51.41,56.15,5,1,1,0,0,11,2,3,1,546,190514.56,171700.95,77218.047,9700.3574,1754.9487 -15506,19091,34507,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.5150008,6.8493934,0,0,-947.55371,0,1,1,2019,13,0,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,6.2650256,6.6132331,56.32,40.65,-9,-9,6.666666666666667,2,3,0,0,8,8,2,1,1119,512815.19,365822.06,382830.56,0,1539.0377 -15507,19092,34508,34509,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.9757462,7.951787,6.0525064,32,-1,50.557922,0,1,1,2019,8,0,15,12,1,0,0,24.779383,24.779383,0,0,0,0,0,0,0,0,5.1530113,5.8634887,57.16,56.15,52.97,53.97,8.333333333333334,1,1,0,0,8,11,4,1,1169,422359.69,462750.44,81911.047,79003.313,3964.1831 -15507,19092,34509,34508,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.9735575,7.8301892,5,1,35.535931,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,2,0,0,0,6.0506063,7.9863272,52.97,53.97,57.16,56.15,8.333333333333334,1,1,0,0,1,11,4,1,1169,422359.69,462750.44,81911.047,79003.313,3964.1831 -15508,19093,34510,34511,-9,-9,1,1,83,0,2,0,2,2,-9,0,3,0,0,0,7,18,0,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,1,0,6.8086686,0,0,1,1,0,0,0,55,45,50,47,8,2,3,0,0,0,5,1,1,380,-53183.23,98951.656,0,0,394.84329 -15508,19093,34511,34510,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,0,0,7,-18,0,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,3.7729189,0,0,1,1,0,0,0,50,47,55,45,7,2,3,0,0,0,5,1,1,380,-53183.23,98951.656,0,0,394.84329 -15508,19094,34512,34514,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,7.2950664,6.9860392,0,7,2,21.427816,0,-9,-9,2019,10,0,12,0,1,1,0,9.8518848,9.8518848,0,0,0,0,0,1,1,0,0,0,50,54,52,55,8,2,3,0,0,2,5,3,1,301.66666,-58172.566,17022.639,77659.875,23877.209,3553.4463 -15508,19094,34513,-9,34512,34514,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.22046,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,3,1,301.66666,-58172.566,17022.639,77659.875,23877.209,3553.4463 -15508,19094,34514,34512,34511,34510,1,1,45,0,2,0,2,2,-9,0,4,8.2970839,8.1223574,0,25,-2,-76.441933,0,2,2,2019,9,0,24,20,1,1,0,18.184866,18.184866,0,0,0,0,0,1,1,0,6.5067635,0,52,55,50,54,8,2,3,0,0,8,5,3,1,301.66666,-58172.566,17022.639,77659.875,23877.209,3553.4463 -15508,19095,34515,34517,-9,-9,1,0,35,0,2,0,3,3,-9,0,3,0,0,0,7,0,-137.30916,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.33,47.35,58.47,50.22,8.333333333333334,2,3,0,0,0,5,3,1,935.66669,323688.66,151361.98,148601.38,80179.125,1810.4985 -15508,19095,34516,-9,34515,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.8196,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,935.66669,323688.66,151361.98,148601.38,80179.125,1810.4985 -15508,19095,34517,34515,34511,34510,1,1,35,0,2,0,2,2,-9,0,3,8.2023363,8.1858406,0,7,0,33.398445,0,3,2,2019,7,0,45,36,1,0,0,9.0791912,9.0791912,0,0,0,0,0,1,1,0,0,0,58.47,50.22,41.33,47.35,8.333333333333334,2,3,0,0,8,5,3,1,935.66669,323688.66,151361.98,148601.38,80179.125,1810.4985 -15508,19096,34518,-9,34512,34514,1,0,19,0,2,1,2,0,0,0,2,0,0,0,0,0,-1119.5188,-9,1,2,2019,24,10,0,0,2,10,1,0,0,0,0,0,0,0,1,1,0,0,0,18.88,58.2,-9,-9,1.666666666666667,2,3,0,0,0,5,1,1,907,-243601.78,0,0,0,0 -15509,19097,34519,-9,34521,34520,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-956.53906,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,41,54,-9,-9,6,2,3,-9,0,0,8,3,0,1136,77523.633,0,0,0,2428.386 -15509,19097,34520,34521,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,7.9140248,7.8688946,0,17,4,2.636497,-9,3,3,2019,11,0,43,0,1,2,0,6.8317137,6.8317137,0,0,0,0,0,1,0,1,0,0,38.19,43.31,38.86,49.91,6.666666666666667,4,5,0,0,10,8,3,0,1136,77523.633,0,0,0,2428.386 -15509,19097,34521,34520,-9,-9,1,0,44,0,1,0,2,2,-9,1,3,0,0,0,17,-4,-6.1308146,-9,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,0,0,38.86,49.91,38.19,43.31,6.666666666666667,2,3,0,0,2,8,3,0,1136,77523.633,0,0,0,2428.386 -15509,19098,34522,-9,34521,34520,1,1,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1015.261,-9,2,3,2019,11,0,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,0,0,47,59,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,310,0,0,0,0,-8.6132498 -15509,19099,34523,-9,34521,34520,1,1,19,0,1,0,2,2,-9,0,1,0,0,0,0,0,-910.93872,-9,2,3,2019,23,11,0,0,3,11,1,0,0,0,0,0,0,0,1,0,1,0,0,39.71,32.14,-9,-9,1.666666666666667,2,3,1,1,1,8,1,0,177,0,0,0,0,21.325201 -15510,19100,34524,34528,-9,-9,1,1,52,0,3,0,2,2,-9,0,4,8.4987345,8.471776,0,7,9,-35.097973,0,2,2,2019,7,0,78,60,1,0,0,6.688406,6.688406,0,0,0,0,0,1,1,0,0,0,60.12,54.8,33.61,61.54,8.333333333333334,1,1,0,0,8,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 -15510,19100,34525,-9,34528,34524,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-787.38287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 -15510,19100,34526,-9,34528,34524,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1201.8356,-9,2,2,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,1,0,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 -15510,19100,34527,-9,34528,34524,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.119,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 -15510,19100,34528,34524,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,6.3449063,6.4246659,0,7,0,-129.33615,0,2,2,2019,14,2,16,16,1,2,0,5.3391819,5.3391819,0,0,0,0,0,1,1,0,0,0,33.61,61.54,60.12,54.8,5,1,1,0,0,4,10,3,1,799.79999,2011210.6,586273.94,813224,48611.34,2744.3354 -15511,19101,34529,34530,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,0,0,44,-3,-53.654575,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.49,55.09,5,1,1,0,0,0,9,5,1,800.5,2108018.3,1457411,847100.69,0,3616.604 -15511,19101,34530,34529,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.8597374,9.0185547,44,3,-17.097576,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.7643681,8.6521254,62.49,55.09,57.06,57.76,1.666666666666667,1,1,0,0,12,9,5,1,800.5,2108018.3,1457411,847100.69,0,3616.604 -15512,19102,34531,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.2379746,6.6189508,0,0,-1022.1071,0,2,2,2019,13,3,0,0,4,3,0,0,0,0,0,0,0,7,1,1,0,0,6.6921496,39.21,56.41,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,519,243357.36,-46565.039,108591.43,0,966.92822 -15513,19103,34532,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.3772469,7.2659583,0,0,0,-999.9184,0,2,2,2019,15,4,39,37,1,4,0,6.0458832,6.0458832,0,0,0,0,0,1,1,0,1.0633502,0,46.44,59.62,-9,-9,3.333333333333333,1,1,0,0,8,4,3,1,1187,710677.38,213045.3,141588.2,0,1195.8223 -15514,19104,34533,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.5343614,7.2373738,0,0,-976.79523,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,3.6903384,0,45.059746,0,1,1,0,.38750821,7.5951715,48.37,28.99,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,268,711943.38,333110.16,162849.23,8012.4458,2327.5625 -15515,19105,34534,34536,-9,-9,1,1,65,0,2,0,2,2,-9,0,3,7.8194661,8.1301441,4.474575,19,22,-34.09763,0,3,2,2019,7,0,39,39,1,0,0,11.637589,11.637589,0,0,0,0,0,1,1,0,0,4.8078122,60.3,46.58,57.16,56.15,6.666666666666667,1,1,0,0,11,7,4,0,459,73297.164,310588.5,0,0,3032.7283 -15515,19105,34535,-9,34536,34534,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-848.37903,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,459,73297.164,310588.5,0,0,3032.7283 -15515,19105,34536,34534,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,7.9489064,7.3449793,0,19,-22,70.281891,0,3,3,2019,8,0,46,40,1,0,0,6.8061481,6.8061481,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.3,46.58,8.333333333333334,2,3,0,0,5,7,4,0,459,73297.164,310588.5,0,0,3032.7283 -15515,19105,34537,-9,34536,34534,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7234,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,4,0,459,73297.164,310588.5,0,0,3032.7283 -15516,19106,34538,34539,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.7209454,8.8800411,0,6,-6,56.786263,0,3,3,2019,11,0,58,54,1,0,0,12.013672,12.013672,0,0,0,0,0,0,0,0,0,0,54.34,44.29,48.28,53.42,8.333333333333334,1,1,0,0,5,2,5,1,788,12278.477,123432.91,139416.03,114205.69,4040.3154 -15516,19106,34539,34538,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.6207027,8.7348804,0,6,6,-32.858082,0,3,3,2019,10,0,24,20,1,0,0,24.18576,24.18576,0,0,0,0,0,0,0,0,0,0,48.28,53.42,54.34,44.29,8.333333333333334,1,1,0,0,5,2,5,1,788,12278.477,123432.91,139416.03,114205.69,4040.3154 -15517,19107,34540,-9,34541,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0584,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,5,1,463.33334,846482.19,218705.69,625756.81,0,5682.2749 -15517,19107,34541,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,9.6979094,9.6962852,6.9674597,0,0,-995.47418,0,-9,-9,2019,15,5,48,36,1,5,0,33.564701,33.564701,0,0,0,0,0,0,0,0,7.3262048,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,463.33334,846482.19,218705.69,625756.81,0,5682.2749 -15517,19107,34542,-9,34541,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.2054,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,463.33334,846482.19,218705.69,625756.81,0,5682.2749 -15518,19108,34543,34544,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,8.9309006,8.6044807,56,3,-25.325232,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8986177,9.2039843,48.77,48.39,56.42,37.79,8.333333333333334,1,1,0,0,0,10,4,1,457.5,1864385,846793.44,657283.63,0,4891.3643 -15518,19108,34544,34543,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,0,0,56,-3,27.911221,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.1041417,0,56.42,37.79,48.77,48.39,8.333333333333334,1,1,0,0,0,10,4,1,457.5,1864385,846793.44,657283.63,0,4891.3643 -15519,19109,34545,-9,34546,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.6349,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,4,0,2133,187831,0,254832.83,0,1762.6731 -15519,19109,34546,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.5408144,8.6564312,0,0,0,-987.88092,0,3,3,2019,6,0,37,37,1,0,0,17.863424,17.863424,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,7,4,0,2133,187831,0,254832.83,0,1762.6731 -15519,19110,34547,-9,34546,-9,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1109.014,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,5,3,4,0,0,1,7,1,0,570,0,0,0,0,0 -15520,19111,34548,34549,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.2128019,7.6115923,4.7627053,42,-1,-29.939442,0,2,2,2019,8,0,17,18,1,0,0,7.888783,7.888783,0,0,0,0,7,0,0,0,0,4.9917545,55.96,49.93,60.92,31.61,10,1,1,0,0,11,1,4,0,543.5,1031738.6,678064.81,160253.77,0,2152.9253 -15520,19111,34549,34548,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.1371298,8.0810385,0,42,1,33.796959,0,3,3,2019,8,0,40,37,1,0,0,9.6046381,9.6046381,0,0,0,0,0,0,0,0,0,0,60.92,31.61,55.96,49.93,10,1,1,0,0,9,1,4,0,543.5,1031738.6,678064.81,160253.77,0,2152.9253 -15521,19112,34550,34551,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.5260954,8.5359163,0,1,8,-73.34024,-9,2,2,2019,7,0,67,0,1,0,0,10.140242,10.140242,0,0,0,0,0,0,0,0,3.4287138,0,57.33,53.46,52,54.51,6.666666666666667,1,1,0,0,9,4,4,1,1961.5,440231.22,98807.906,250271.89,0,2993.5806 -15521,19112,34551,34550,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.147779,7.0151224,0,1,-8,-36.238506,-9,-9,-9,2019,6,0,16,0,1,0,0,7.4064131,7.4064131,0,0,0,0,7,0,0,0,6.9099469,0,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,7,4,4,1,1961.5,440231.22,98807.906,250271.89,0,2993.5806 -15522,19113,34552,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-922.11737,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,2.3708396,1.1083145,0,0,1,1,0,0,0,32.32,42.01,-9,-9,6.666666666666667,1,1,0,0,2,13,1,1,245,-116701.52,0,148089.69,0,1800.5638 -15523,19114,34553,34554,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,51,-1,0,0,3,3,2019,14,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,0,0,38.58,21.78,38.28,35.59,8.333333333333334,1,1,0,0,0,12,1,1,566,530835.63,0,386897.63,0,1824.308 -15523,19114,34554,34553,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,51,1,0,0,3,-9,2019,15,5,0,0,4,5,0,0,0,0,0,0,0,5.48,1,1,0,0,0,38.28,35.59,38.58,21.78,6.666666666666667,1,1,0,0,0,12,1,1,566,530835.63,0,386897.63,0,1824.308 -15524,19115,34555,34556,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,70,-1,27.88682,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6432776,0,56.5,37.6,47.25,48.42,8.333333333333334,1,1,0,0,0,1,2,1,678,572737.69,22935.154,46611.574,0,2076.3208 -15524,19115,34556,34555,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.1208682,7.0378008,70,1,-108.76048,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.0226746,6.7732038,47.25,48.42,56.5,37.6,8.333333333333334,1,1,0,0,0,1,2,1,678,572737.69,22935.154,46611.574,0,2076.3208 -15525,19116,34557,34558,-9,-9,1,1,60,0,0,0,2,2,-9,1,4,0,0,0,8,1,7.7735615,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,43.21,42.15,8,1,1,0,0,0,12,3,1,455.5,624843.31,514027.66,272943.25,0,1580.6016 -15525,19116,34558,34557,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2139072,8.3062496,0,41,-1,80.376526,0,3,3,2019,15,3,44,42,1,3,0,9.4272995,9.4272995,0,0,0,0,42,1,1,0,2.2665684,0,43.21,42.15,54,53,3.333333333333333,1,1,0,0,10,12,3,1,455.5,624843.31,514027.66,272943.25,0,1580.6016 -15526,19117,34559,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-945.52759,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,31.22,47.86,-9,-9,5,1,1,0,1,0,11,1,0,464,279472.66,-12699.493,192868.36,0,345.60605 -15526,19118,34560,-9,34559,-9,1,0,26,0,0,0,3,3,-9,1,2,0,0,0,0,0,-907.39081,0,2,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.12,19.98,-9,-9,5,1,1,0,0,0,11,2,0,344,60221.727,0,0,0,2264.1741 -15526,19119,34561,-9,34559,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1109.7909,0,2,-9,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,28.35,42.72,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,165,220821.14,0,0,0,0 -15527,19120,34562,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,2.7072408,2.6785908,0,0,-1094.123,0,3,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,2.5793245,32.42,36.67,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,64,64496.688,0,361041.25,0,1174.6569 -15528,19121,34563,34565,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,9.0672131,9.1885309,0,15,1,44.382645,0,2,3,2019,10,0,35,42,1,0,0,28.053177,28.053177,0,0,0,0,0,0,0,0,3.6152866,0,53.61,51.1,60.02,56.42,8.333333333333334,1,1,0,0,8,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 -15528,19121,34564,-9,34565,34563,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.501,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 -15528,19121,34565,34563,-9,-9,1,0,36,0,3,0,1,1,-9,0,5,8.3973427,8.8666096,0,16,-1,28.753389,0,2,2,2019,9,1,38,22,1,1,0,15.324554,15.324554,0,0,0,0,0,0,0,0,0,0,60.02,56.42,53.61,51.1,10,1,1,0,0,8,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 -15528,19121,34566,-9,34565,34563,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.206,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 -15528,19121,34567,-9,34565,34563,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.89801,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,1297.8,241642.42,160582.55,217826.39,73026.203,4696.9351 -15529,19122,34568,-9,34571,34570,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.35571,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 -15529,19122,34569,-9,34571,34570,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.9922,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 -15529,19122,34570,34571,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.6412382,8.3656454,0,7,2,50.67379,0,3,3,2019,6,0,38,38,1,0,0,18.407543,18.407543,0,0,0,0,0,1,1,0,6.7162685,0,51.22,49.35,13.55,59.26,8.333333333333334,1,1,0,0,9,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 -15529,19122,34571,34570,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,8.3727617,8.7752285,0,7,-2,-26.445707,0,2,2,2019,16,4,32,30,1,4,0,22.361214,22.361214,0,0,0,0,0,1,1,0,0,0,13.55,59.26,51.22,49.35,3.333333333333333,1,1,0,0,9,2,5,1,338.5,1231349.1,651111.25,413037.34,61053.836,4861.3193 -15530,19123,34572,34573,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,8.1420202,8.2376785,0,28,3,197.36034,0,-9,-9,2019,10,0,40,45,1,0,0,10.459462,10.459462,0,0,0,0,27,1,1,0,0,0,58.78,30.79,33.5,18.89,8.333333333333334,1,1,0,1,8,5,4,1,505,245699.64,227702.59,147953.72,63758.43,2637.4937 -15530,19123,34573,34572,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,7.725173,7.6814537,0,28,-3,16.839645,0,-9,-9,2019,17,6,31,38,1,6,0,10.864791,10.864791,0,0,0,0,0,1,1,0,0,0,33.5,18.89,58.78,30.79,0,1,1,0,1,9,5,4,1,505,245699.64,227702.59,147953.72,63758.43,2637.4937 -15531,19124,34574,34575,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.4721022,7.1900969,0,2,0,.39490417,0,-9,-9,2019,6,0,25,30,1,0,0,10.155168,10.155168,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,10,1,1,0,0,8,9,3,1,1013,135053.77,-48040.504,0,0,1911.771 -15531,19124,34575,34574,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.3287835,7.4584732,0,2,0,24.949274,0,-9,-9,2019,6,0,33,40,1,0,0,4.9269891,4.9269891,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,10,1,1,0,0,8,9,3,1,1013,135053.77,-48040.504,0,0,1911.771 -15532,19125,34576,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.0199423,5.9656649,0,0,-1033.204,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,2.3390062,0,0,1,1,0,0,5.7200441,52,45,-9,-9,8,1,1,0,0,0,11,2,1,287,170523.73,48155.527,0,0,860.26337 -15533,19126,34577,34578,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.8795385,8.6325588,0,4,6,-2.8761866,0,2,2,2019,7,0,42,45,1,0,0,19.593147,19.593147,0,0,0,0,0,0,0,0,0,0,52.99,51.28,50.08,55.33,6.666666666666667,1,1,0,0,11,9,5,1,987.5,1276461.5,693826.5,426489,0,5146.2314 -15533,19126,34578,34577,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.7416258,9.1044807,0,4,-6,-8.7165928,0,2,2,2019,10,0,40,42,1,0,0,16.389605,16.389605,0,0,0,0,0,0,0,0,0,0,50.08,55.33,52.99,51.28,8.333333333333334,1,1,0,0,11,9,5,1,987.5,1276461.5,693826.5,426489,0,5146.2314 -15534,19127,34579,-9,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.40204,0,3,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,33.28,-9,-9,5,1,1,0,0,1,6,1,0,458,-156724.56,0,0,0,966.02606 -15535,19128,34580,34581,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.0821524,8.4376707,7.7138901,46,1,-27.56757,0,3,3,2019,7,0,45,45,1,0,0,11.233756,11.233756,0,0,0,0,0,1,1,0,6.4302101,7.215486,56.94,49.53,58.15,52.91,8.333333333333334,1,1,0,0,11,9,4,1,358.5,1902991.4,765012.69,610365.13,0,3901.9375 -15535,19128,34581,34580,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.3409162,6.247798,46,-1,99.933929,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,2.4929564,0,1,1,0,2.3686049,5.9895453,58.15,52.91,56.94,49.53,8.333333333333334,1,1,0,0,9,9,4,1,358.5,1902991.4,765012.69,610365.13,0,3901.9375 -15536,19129,34582,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.8703628,6.6881685,0,0,-1077.5396,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,6.7019873,55.71,40.47,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,1602,658324.25,64875.711,371108.06,0,1134.7854 -15537,19130,34583,34584,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.914464,7.8060074,0,5,-4,32.020691,0,-9,-9,2019,12,0,18,18,1,0,0,20.722927,20.722927,0,0,0,0,0,0,0,0,2.189204,0,50.12,49.78,48.43,49.48,10,1,1,0,0,11,10,5,1,771,836329.25,511012.69,260573.7,102194.98,3696.1692 -15537,19130,34584,34583,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.3023634,8.6801081,0,5,4,14.770215,0,2,2,2019,10,0,40,40,1,0,0,14.516066,14.516066,0,0,0,0,0,0,0,0,0,0,48.43,49.48,50.12,49.78,8.333333333333334,1,1,0,0,11,10,5,1,771,836329.25,511012.69,260573.7,102194.98,3696.1692 -15538,19131,34585,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.3501453,6.2726245,0,0,-1146.7091,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.4442667,6.116046,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,291,270225.22,35493.457,39590.684,10461.64,840.1424 -15539,19132,34586,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.2480268,6.0382652,0,0,-1028.356,-9,2,3,2019,9,0,0,0,4,1,0,0,0,0,0,25.190517,0,0,1,1,0,6.0912528,5.840436,55,45,-9,-9,8,1,1,0,0,2,11,2,1,749,502205.97,-35670.703,0,0,1708.7716 -15540,19133,34587,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.349287,8.4336643,0,0,0,-1132.4624,-9,2,2,2019,11,0,24,0,1,2,0,20.733074,20.733074,0,0,0,0,0,1,1,0,5.99891,0,47,52,-9,-9,7,1,1,0,0,13,4,4,1,372,51394.348,-11095.167,0,0,2035.6235 -15541,19134,34588,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8121815,6.4528694,0,0,-995.9469,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6123497,6.9125195,63.09,47.92,-9,-9,10,1,1,0,0,8,10,2,1,521,476772.53,0,261160.17,0,1032.0365 -15542,19135,34589,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.024579,8.1380816,0,0,0,-861.50543,0,3,3,2019,9,0,35,35,1,0,0,12.190754,12.190754,0,0,0,0,0,1,1,0,0,0,40.01,58.61,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,186,256455.94,-46628.211,0,0,1995.8665 -15542,19136,34590,-9,34589,-9,1,0,24,0,0,0,2,2,-9,0,4,8.4220066,8.4622917,0,0,0,-1134.2991,0,2,2,2019,3,0,40,40,1,0,1,12.35813,12.35813,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,664,-682.87891,-170946.84,0,0,2296.917 -15542,19137,34591,-9,34589,-9,1,1,20,0,0,0,2,2,-9,0,3,7.9241066,8.2453995,0,0,0,-908.26685,0,3,-9,2019,8,0,48,22,1,0,1,6.3689003,6.3689003,0,0,0,0,0,1,1,0,0,0,61.28,46.17,-9,-9,0,1,1,0,0,4,8,4,0,252,524555.94,132399.44,0,0,1036.3634 -15542,19138,34592,-9,34589,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1022.0394,-9,3,-9,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,27.88,59.04,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,1125,-18827.176,0,0,0,0 -15543,19139,34593,-9,34594,-9,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-983.08313,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 -15543,19139,34594,-9,-9,-9,1,0,35,0,4,0,2,2,-9,0,4,0,0,0,0,0,-908.03186,0,2,1,2019,11,0,0,17,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,3,4,0,1,3,8,1,0,706.20001,12902.029,0,0,0,2070.0403 -15543,19139,34595,-9,34594,-9,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-972.74695,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 -15543,19139,34596,-9,34594,-9,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-950.00928,-9,2,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 -15543,19139,34597,-9,34594,-9,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1078.0845,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,706.20001,12902.029,0,0,0,2070.0403 -15544,19140,34598,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.9734526,7.8260531,0,0,-1040.9598,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8516378,7.9325356,59.43,58.05,-9,-9,0,1,1,0,0,6,13,3,1,473,370013,542187.69,215042.53,30316.887,1786.1666 -15545,19141,34599,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,9.2543716,9.19909,0,0,0,-1036.2793,0,-9,-9,2019,10,0,37,37,1,0,0,23.424816,23.424816,0,0,0,0,0,1,1,0,3.3036797,0,48.45,49.46,-9,-9,3.333333333333333,1,1,0,0,10,6,5,0,509,-48894.703,63503.824,111360.24,2667.4131,3513.325 -15546,19142,34600,34602,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.0218191,8.936491,0,6,2,-3.4794025,0,2,2,2019,11,0,38,38,1,0,0,18.130108,18.130108,0,0,0,0,0,1,1,0,0,0,49.25,61.25,51.77,58.57,8.333333333333334,1,1,0,0,6,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 -15546,19142,34601,-9,34602,34600,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.09949,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 -15546,19142,34602,34600,-9,-9,1,0,39,0,2,0,1,1,1,0,4,7.0743346,6.9599442,0,6,-2,-59.484108,-9,3,3,2019,9,0,10,0,1,0,0,11.758922,11.758922,0,0,0,0,0,1,1,0,0,0,51.77,58.57,49.25,61.25,8.333333333333334,1,1,0,0,3,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 -15546,19142,34603,-9,34602,34600,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.924,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,662,698531.38,363733.53,426959.69,127166.52,2467.365 -15547,19143,34604,34605,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.9595375,8.8836594,0,1,0,53.233589,0,2,2,2019,16,4,41,43,1,4,0,17.522961,17.522961,0,0,0,0,0,0,0,0,3.5657089,0,35.22,56.72,50,57,8.333333333333334,1,1,0,0,7,11,5,1,1554.5,1787327.3,1570939,254989.34,221779.41,4405.6768 -15547,19143,34605,34604,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,8.6771002,8.9329576,0,1,0,90.564163,-9,-9,-9,2019,10,0,48,0,1,1,0,13.631621,13.631621,0,0,0,0,0,0,0,0,0,0,50,57,35.22,56.72,7,1,1,0,0,1,11,5,1,1554.5,1787327.3,1570939,254989.34,221779.41,4405.6768 -15548,19144,34606,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,7.7838774,7.4922833,0,0,0,-965.10199,0,-9,2,2019,12,0,41,30,1,0,0,6.9303303,6.9303303,0,0,0,0,0,0,0,0,0,0,34.8,52.21,-9,-9,5,1,1,0,1,2,2,3,1,260,375228.97,50707.711,117261.05,0,1203.391 -15549,19145,34607,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,7.4930706,7.6324868,0,0,-1046.1893,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.0659676,7.8474932,48.29,31.05,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,696,609038.81,171328.53,133424.64,0,1881.9764 -15550,19146,34608,34609,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,2,-3,0,0,-9,-9,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,9.16,68.97,40.56,23.34,1.666666666666667,1,1,1,0,0,6,1,0,1112.5,0,0,0,0,1806.2953 -15550,19146,34609,34608,-9,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,2,3,0,0,2,1,2019,20,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,23.34,9.16,68.97,6.666666666666667,1,1,0,0,5,6,1,0,1112.5,0,0,0,0,1806.2953 -15551,19147,34610,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,7.509409,6.9746523,0,0,-945.00696,0,3,1,2019,7,1,0,0,4,1,0,0,0,1,0,77.62281,0,0,1,1,0,0,7.6645555,54.77,19.3,-9,-9,10,1,1,0,0,0,8,3,0,480,707861.19,221258.64,0,0,1564.3259 -15552,19148,34611,34612,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.1095209,8.9237299,0,7,2,-52.911549,0,2,2,2019,7,0,42,50,1,0,0,19.789515,19.789515,0,0,0,0,2,0,0,0,7.1864328,0,53.96,50.73,48,49,8.333333333333334,1,1,0,0,8,7,5,1,225.5,3263113,2850932.3,271559.69,0,7026.7227 -15552,19148,34612,34611,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.7929153,8.7594595,0,7,-2,-33.762409,-9,2,2,2019,12,0,37,0,1,2,0,22.144506,22.144506,0,0,0,0,0,0,0,0,6.5072255,0,48,49,53.96,50.73,7,1,1,0,0,1,7,5,1,225.5,3263113,2850932.3,271559.69,0,7026.7227 -15553,19149,34613,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1120.9491,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,37.13,55.9,-9,-9,5,1,1,1,0,5,9,1,0,789,185247.44,0,0,0,0 -15554,19150,34614,34615,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8738527,8.9902,0,31,-3,50.609749,0,2,3,2019,17,5,38,38,1,5,0,25.152588,25.152588,0,0,0,0,0,0,0,0,5.4064231,0,42.15,56.54,21.6,50.09,8.333333333333334,1,1,0,0,12,13,5,1,436.5,6010814,4633275,473497.13,0,4129.2397 -15554,19150,34615,34614,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.6066656,8.7936373,0,32,3,51.660038,0,2,-9,2019,35,12,38,38,1,12,0,20.112804,20.112804,0,0,0,0,0,0,0,0,5.7569962,0,21.6,50.09,42.15,56.54,3.333333333333333,1,1,0,0,12,13,5,1,436.5,6010814,4633275,473497.13,0,4129.2397 -15554,19151,34616,-9,34614,34615,1,0,22,0,0,1,2,0,0,0,3,0,0,0,0,0,-1023.2592,-9,1,1,2019,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,24.07,61.81,-9,-9,5,1,1,0,0,2,13,1,1,170,194518.44,0,0,0,-467.14215 -15554,19152,34617,-9,34614,34615,1,1,19,0,0,0,3,3,-9,0,4,0,0,0,0,0,-908.16504,0,1,1,2019,7,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,0,1,13,1,1,1149,161508.11,0,0,0,350.97098 -15555,19153,34618,34619,-9,-9,1,1,58,0,0,0,3,3,-9,0,1,0,7.5542545,7.3987994,1,13,-22.94211,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2145047,38.02,18.23,50,55,8.333333333333334,2,3,0,0,0,6,3,1,1352.5,158440.19,0,106658.16,68072.188,2188.325 -15555,19153,34619,34618,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,7.6554637,7.7578473,0,1,-13,15.765451,-9,-9,-9,2019,10,0,70,0,1,1,0,4.2156596,4.2156596,0,0,0,0,0,1,1,0,0,0,50,55,38.02,18.23,8,4,3,0,0,1,6,3,1,1352.5,158440.19,0,106658.16,68072.188,2188.325 -15556,19154,34620,34621,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,53,1,0,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,0,0,62.58,37.25,34.88,41.49,10,1,1,0,0,5,4,1,1,558.5,245884.3,34421.887,90274.313,0,1103.3514 -15556,19154,34621,34620,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,0,0,53,-1,0,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,0,3.2061641,0,0,1,1,0,0,0,34.88,41.49,62.58,37.25,8.333333333333334,1,1,0,0,0,4,1,1,558.5,245884.3,34421.887,90274.313,0,1103.3514 -15556,19155,34622,-9,34620,34621,1,1,47,0,0,0,2,2,-9,0,3,8.5458727,8.3156776,0,0,0,-994.87213,-9,3,3,2019,8,0,35,0,1,0,0,17.502493,17.502493,0,0,0,0,2,1,1,0,0,0,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,2102,312547.44,57240.66,49158.254,62150.816,2074.1116 -15557,19156,34623,34624,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.2221136,6.619513,6,2,-18.283113,0,-9,-9,2019,10,0,0,35,4,1,0,0,0,1,0,0,0,0,1,1,0,6.9061065,6.5720248,53,47,43.9,57.01,7,1,1,0,0,0,1,2,1,320.5,593689.81,292719.34,207389.47,0,2949.2183 -15557,19156,34624,34623,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.3757772,6.5443411,43,-2,9.2853193,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,7.6026101,6.1081605,43.9,57.01,53,47,8.333333333333334,1,1,0,0,1,1,2,1,320.5,593689.81,292719.34,207389.47,0,2949.2183 -15558,19157,34625,34626,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.6938643,7.4979272,14,8,34.873871,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,8.3759556,0,0,1,1,0,6.0017338,7.4625554,63.52,21.84,60.02,56.42,8.333333333333334,1,1,0,0,0,2,4,1,476,1547329.1,933254.5,281148.09,0,2739.7905 -15558,19157,34626,34625,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.7312698,7.8143415,14,-8,-18.62784,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9263577,8.3073225,60.02,56.42,63.52,21.84,10,1,1,0,0,0,2,4,1,476,1547329.1,933254.5,281148.09,0,2739.7905 -15559,19158,34627,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-972.85748,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,25.55562,0,0,1,1,0,0,0,35.22,22.05,-9,-9,5,1,1,0,0,0,12,1,0,567,649938.56,0,42299.449,0,1730.1361 -15560,19159,34628,34629,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.635623,8.5530863,0,6,0,14.709835,0,3,3,2019,10,0,40,24,1,1,0,13.000656,13.000656,0,0,0,0,0,0,0,0,3.0697932,0,51,48,56.1,49.93,7,1,1,0,0,6,5,5,1,736.5,1353417,1257681.5,69034.328,36398.34,3607.9297 -15560,19159,34629,34628,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.1317453,7.5928583,0,6,0,-103.14445,0,2,3,2019,10,0,40,40,1,0,0,8.9308262,8.9308262,0,0,0,0,0,0,0,0,2.5709641,0,56.1,49.93,51,48,6.666666666666667,1,1,0,0,6,5,5,1,736.5,1353417,1257681.5,69034.328,36398.34,3607.9297 -15561,19160,34630,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.2318201,8.1138783,0,3,-4,-82.424721,0,-9,-9,2019,12,2,20,20,1,2,0,24.00696,24.00696,0,0,0,0,0,1,1,0,0,0,37.59,46.28,59.29,49.68,8.333333333333334,1,1,0,0,10,11,4,1,781,-65362.777,129637.9,0,0,2464.5205 -15561,19161,34631,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,7.5579429,7.2612247,0,3,4,69.799316,0,-9,-9,2019,8,0,36,40,1,0,0,5.013669,5.013669,0,0,0,0,0,1,1,0,5.4523668,0,59.29,49.68,37.59,46.28,8.333333333333334,1,1,0,0,10,11,4,1,388,307542.91,48745.473,77381.359,70823.57,1219.9763 -15562,19162,34632,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.5695634,5.5537615,0,0,-816.85535,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5055599,56.94,43.99,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,943,748158.38,11063.331,142297,0,1297.2959 -15563,19163,34633,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,4.2754178,4.2826886,0,0,-981.81598,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,3.3446844,0,0,1,1,0,0,4.3035917,51.61,27.86,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,430,218825.67,13797.909,240863.09,0,1115.6146 -15564,19164,34634,-9,34635,-9,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1032.354,1,2,-9,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,38.53,62.21,-9,-9,8.333333333333334,3,4,0,0,0,8,3,0,1997,311284.84,47597.668,0,0,1952.3679 -15564,19164,34635,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8220906,7.9045925,0,0,0,-909.91449,0,3,3,2019,14,2,35,37,1,2,0,7.3260436,7.3260436,0,0,0,0,0,1,1,0,0,0,34.21,54.28,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,1997,311284.84,47597.668,0,0,1952.3679 -15565,19165,34636,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,5.4033623,5.7136922,0,0,-975.11102,0,1,1,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,5.1501155,0,42.33,14.89,-9,-9,6.666666666666667,1,1,0,1,0,10,2,0,488,24557.475,0,64121.004,88197.141,862.55847 -15565,19166,34637,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1003.5391,-9,-9,-9,2019,16,3,0,0,3,3,0,0,0,0,0,0,0,74.5,1,1,0,0,0,40.7,50.13,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,545,504798.69,0,147816.28,0,745.37256 -15566,19167,34638,-9,34640,34642,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.7239,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 -15566,19167,34639,-9,34640,-9,1,1,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-932.05646,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 -15566,19167,34640,34642,-9,-9,1,0,29,2,3,0,2,2,-9,0,5,7.1702566,7.615788,0,3,0,61.153973,0,-9,-9,2019,14,2,30,30,1,2,0,5.5017571,5.5017571,0,0,0,0,0,1,1,0,0,0,40.38,61.66,48.28,60.18,10,1,1,0,0,2,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 -15566,19167,34641,-9,34640,34642,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-893.35913,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 -15566,19167,34642,34640,-9,-9,1,1,29,2,3,0,2,2,-9,0,4,7.7847023,8.1496077,0,3,0,90.153267,0,2,2,2019,12,2,43,50,1,2,0,11.468097,11.468097,0,0,0,0,0,1,1,0,0,0,48.28,60.18,40.38,61.66,8.333333333333334,1,1,0,0,8,2,3,0,804.40002,181676.7,113557.13,0,0,2666.7195 -15567,19168,34643,-9,34645,34644,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.4512,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,0,955.66669,21205.861,142391.7,77481.641,98758.531,2947.3455 -15567,19168,34644,34645,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.9318924,9.0636921,0,9,-14,60.735458,0,2,2,2019,7,0,45,44,1,0,0,18.018717,18.018717,0,0,0,0,0,1,1,0,6.2245355,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,9,2,5,0,955.66669,21205.861,142391.7,77481.641,98758.531,2947.3455 -15567,19168,34645,34644,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.0169044,7.1428089,0,9,14,47.377686,0,2,3,2019,6,0,21,22,1,0,0,5.8121033,5.8121033,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,0,955.66669,21205.861,142391.7,77481.641,98758.531,2947.3455 -15568,19169,34646,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-863.1532,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,255,465681.94,0,114636.79,0,1500.2155 -15569,19170,34647,-9,34650,34649,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.7938,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 -15569,19170,34648,-9,34650,34649,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.3994,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 -15569,19170,34649,34650,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.4438505,8.2693005,0,9,2,-14.274031,0,-9,-9,2019,5,0,46,45,1,0,0,10.096166,10.096166,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 -15569,19170,34650,34649,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.1957293,8.2003279,0,9,-2,-2.7798991,0,2,2,2019,9,0,36,38,1,0,0,12.211635,12.211635,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,10,1,4,1,894.25,-35451.988,577.95984,270140.31,159043.19,3136.979 -15570,19171,34651,-9,34653,34652,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-954.18921,0,3,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.35,51.77,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,1631,58637.98,30204.883,0,0,2055.814 -15570,19171,34652,34653,-9,-9,1,1,39,0,1,0,2,2,-9,1,3,0,6.4805422,6.9331412,7,3,3.517683,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,6.7588124,0,41.23,51.32,45.88,50.54,6.666666666666667,1,1,0,0,0,7,2,0,1631,58637.98,30204.883,0,0,2055.814 -15570,19171,34653,34652,-9,-9,1,0,36,0,1,0,3,3,-9,0,3,0,0,0,7,-3,-186.19711,0,2,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,2,1,1,0,0,0,45.88,50.54,41.23,51.32,8.333333333333334,1,1,0,0,0,7,2,0,1631,58637.98,30204.883,0,0,2055.814 -15570,19171,34654,-9,34653,34652,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.17816,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,1631,58637.98,30204.883,0,0,2055.814 -15571,19172,34655,34656,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.1437159,8.2351475,0,20,-3,25.027958,0,2,2,2019,20,8,43,37,1,8,0,7.9517264,7.9517264,0,0,0,0,0,1,1,0,0,0,42.91,42.28,54.2,57.49,6.666666666666667,1,1,0,0,12,10,4,1,824.5,569239.56,138914.94,266713.69,36855.563,3841.2681 -15571,19172,34656,34655,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.599658,8.7759075,0,20,3,38.238907,0,-9,-9,2019,9,0,53,37,1,0,0,9.5894403,9.5894403,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.91,42.28,5,1,1,0,0,12,10,4,1,824.5,569239.56,138914.94,266713.69,36855.563,3841.2681 -15571,19173,34657,-9,34655,34656,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-962.62976,0,2,2,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,1073,0,0,0,0,0 -15572,19174,34658,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.735508,7.9494185,0,0,-1038.3429,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,7.3521299,7.7010159,49.35,59.64,-9,-9,5,1,1,0,0,0,8,3,1,519,564105.88,485416.84,211139.28,0,2342.7769 -15573,19175,34659,34660,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.5536585,7.6045656,0,6,4,10.296893,0,3,3,2019,10,0,60,25,1,0,0,4.0577927,4.0577927,0,0,0,0,2,0,0,0,1.09323,0,42.35,39.93,42.47,38.78,1.666666666666667,1,1,0,0,8,9,5,1,428.5,1342270.6,660984,702783.88,0,3474.3083 -15573,19175,34660,34659,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.7981224,8.6800814,0,6,-4,-82.344627,0,1,2,2019,12,0,37,39,1,0,0,24.229042,24.229042,0,0,0,0,7,0,0,0,3.140326,0,42.47,38.78,42.35,39.93,6.666666666666667,1,1,0,0,5,9,5,1,428.5,1342270.6,660984,702783.88,0,3474.3083 -15574,19176,34661,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.5912685,7.4398775,0,0,-1111.0879,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8505821,7.4256139,50.3,42.9,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,229,514185.81,308371.63,167156.5,0,1556.0232 -15575,19177,34662,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.1160078,8.2906694,0,0,0,-960.48657,-9,2,2,2019,8,0,84,0,1,0,0,5.6414309,5.6414309,0,0,0,0,0,0,0,0,0,0,44.62,57.73,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,476,269566.69,24505.5,0,0,1481.5167 -15576,19178,34663,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.9516296,5.6820145,0,0,-924.30432,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.469512,53.92,52.23,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1644,311568.22,89466.969,189408.13,0,721.58923 -15577,19179,34664,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1132.0731,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,6,1,0,228,398403.78,0,230084.34,0,266.7435 -15578,19180,34665,34667,-9,-9,1,1,26,0,2,0,2,2,-9,0,4,7.9775562,8.0728369,0,6,0,-22.023329,0,2,2,2019,17,5,40,42,1,5,0,8.5799341,8.5799341,0,0,0,0,0,1,1,0,0,0,42.05,58.8,60.39,31.73,8.333333333333334,1,1,0,0,2,7,2,0,593.75,-42406.531,0,0,0,1113.4247 -15578,19180,34666,-9,34667,34665,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.2081,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,0,593.75,-42406.531,0,0,0,1113.4247 -15578,19180,34667,34665,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,0,0,0,6,0,-69.943901,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.39,31.73,42.05,58.8,8.333333333333334,1,1,0,0,0,7,2,0,593.75,-42406.531,0,0,0,1113.4247 -15578,19180,34668,-9,34667,34665,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.89429,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,593.75,-42406.531,0,0,0,1113.4247 -15579,19181,34669,-9,34671,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-954.59741,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,2,1,820,-77894.453,48819.313,0,0,1521.8284 -15579,19181,34670,-9,34671,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4063,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,1,820,-77894.453,48819.313,0,0,1521.8284 -15579,19181,34671,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.3577571,7.3705502,0,0,0,-1031.3921,0,2,2,2019,11,2,30,34,1,2,0,6.6565876,6.6565876,0,0,0,0,0,1,0,1,0,0,43.83,51.11,-9,-9,8.333333333333334,1,1,0,1,12,7,2,1,820,-77894.453,48819.313,0,0,1521.8284 -15580,19182,34672,34673,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6079292,8.8771524,0,8,3,167.47118,-9,-9,-9,2019,9,0,40,0,1,1,0,19.557095,19.557095,0,0,0,0,0,0,0,0,0,0,53,55,50.03,52.62,8,1,1,0,0,1,10,5,1,1141.5,1123467,108555.43,314458.78,0,3219.1416 -15580,19182,34673,34672,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.8389111,7.679523,0,30,-3,144.34033,0,2,2,2019,16,4,34,33,1,4,0,8.4248352,8.4248352,0,0,0,0,0,0,0,0,0,0,50.03,52.62,53,55,6.666666666666667,1,1,0,0,8,10,5,1,1141.5,1123467,108555.43,314458.78,0,3219.1416 -15580,19183,34674,-9,34673,34672,1,1,19,0,0,0,3,3,-9,0,5,7.8304195,7.2938271,0,0,0,-943.51166,0,2,2,2019,12,2,45,48,1,2,1,6.1321402,6.1321402,0,0,0,0,0,0,0,0,0,0,41.72,58.06,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,1804,224812.67,0,0,0,1113.3942 -15581,19184,34675,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.9659247,8.0074158,0,0,0,-1041.3177,0,2,1,2019,2,0,48,50,1,0,0,7.9844666,7.9844666,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,323,-236611.78,0,0,0,1924.5613 -15582,19185,34676,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-985.70178,-9,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,1.666666666666667,1,1,1,0,0,6,1,0,420,0,0,0,0,1703.8363 -15583,19186,34677,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.2569985,6.9794455,0,0,-908.9657,0,2,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,5.2522445,7.2034802,46.06,38.33,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,223,604792.56,2459.4871,211853.84,0,974.00208 -15584,19187,34678,34679,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8760176,8.1622,0,6,-2,63.184799,0,-9,-9,2019,7,0,48,48,1,0,0,6.0192928,6.0192928,0,0,0,0,0,0,0,0,0,0,61.43,43.34,53.46,39.14,10,1,1,0,0,7,4,5,0,1341.5,315970.94,39489.992,230240.2,94842.156,2933.3208 -15584,19187,34679,34678,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.6739407,8.7426138,0,6,2,167.07835,0,3,3,2019,10,0,53,55,1,0,0,11.088043,11.088043,0,0,0,0,0,0,0,0,3.1043372,0,53.46,39.14,61.43,43.34,8.333333333333334,1,1,0,0,11,4,5,0,1341.5,315970.94,39489.992,230240.2,94842.156,2933.3208 -15585,19188,34680,-9,34682,34681,1,1,33,0,0,0,2,2,-9,0,2,6.8391619,6.4349961,0,0,0,-1055.5485,0,1,1,2019,22,10,70,60,1,10,0,1.1542332,1.1542332,0,0,0,0,0,1,1,0,0,0,44.84,49.01,-9,-9,5,1,1,0,1,10,7,2,1,1339,89959.078,52697.57,0,0,619.8985 -15585,19189,34681,34682,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.4498205,8.9108715,41,3,-18.34234,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.4665649,8.5437021,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,7,5,1,309.5,3307737.3,1613308.5,989954.69,0,5762.3047 -15585,19189,34682,34681,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.2367764,8.3813963,37,-3,-12.521593,0,2,-9,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,3.9209037,8.2256393,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,309.5,3307737.3,1613308.5,989954.69,0,5762.3047 -15586,19190,34683,34685,-9,-9,1,1,33,0,2,0,1,1,-9,0,2,9.4099226,9.551136,0,15,2,-23.151291,0,3,2,2019,14,2,43,46,1,2,0,28.178852,28.178852,0,0,0,0,0,1,1,0,0,0,44.2,51.88,53.96,50.73,6.666666666666667,1,1,0,0,10,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 -15586,19190,34684,-9,34685,34683,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1561,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 -15586,19190,34685,34683,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.4288564,7.5713763,0,14,-2,37.684036,0,2,2,2019,7,1,35,35,1,1,0,5.9169426,5.9169426,0,0,0,0,0,1,1,0,6.8593225,0,53.96,50.73,44.2,51.88,10,1,1,0,0,7,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 -15586,19190,34686,-9,34685,34683,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.56549,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,2387,320342.97,76082.203,463828.88,273645.81,6136.8208 -15587,19191,34687,34689,-9,-9,1,1,41,1,1,0,2,2,-9,0,5,7.2683473,7.4135594,0,9,2,-92.746513,-9,2,2,2019,10,1,22,0,1,1,0,11.583797,11.583797,0,0,0,0,0,1,1,0,0,0,41.07,60.93,59.26,34.91,1.666666666666667,1,1,0,0,11,2,3,1,1217,256304.36,66740.281,83972.453,18544.221,2807.2939 -15587,19191,34688,-9,34689,34687,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.8738,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,1,1217,256304.36,66740.281,83972.453,18544.221,2807.2939 -15587,19191,34689,34687,-9,-9,1,0,39,1,1,0,2,2,-9,0,3,7.543354,7.408072,0,9,-2,110.6606,-9,2,2,2019,10,0,25,0,1,0,0,9.4396038,9.4396038,0,0,0,0,0,1,1,0,0,0,59.26,34.91,41.07,60.93,8.333333333333334,1,1,0,0,8,2,3,1,1217,256304.36,66740.281,83972.453,18544.221,2807.2939 -15588,19192,34690,34691,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.880332,8.9475441,0,34,1,71.390511,0,-9,2,2019,7,0,42,42,1,0,0,19.932091,19.932091,0,0,0,0,0,1,1,0,0,0,53.78,48.41,57.33,53.46,8.333333333333334,1,1,0,0,8,6,4,1,855.5,1069770.8,1015514.9,114413.8,0,2418.7061 -15588,19192,34691,34690,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,34,-1,-124.49976,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,53.78,48.41,8.333333333333334,1,1,0,0,6,6,4,1,855.5,1069770.8,1015514.9,114413.8,0,2418.7061 -15588,19193,34692,-9,34691,34690,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-996.65338,-9,2,2,2019,22,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,26.01,61.11,-9,-9,3.333333333333333,1,1,0,0,3,6,1,1,1473,15972.275,0,0,0,0 -15589,19194,34693,34694,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5555592,8.6607418,0,1,2,12.087001,-9,-9,-9,2019,11,1,38,0,1,1,0,14.614696,14.614696,0,0,0,0,0,1,1,0,0,0,48.53,58.91,44.02,60.7,8.333333333333334,1,1,0,0,9,7,3,1,1952,183297.38,-29298.99,0,0,2410.6963 -15589,19194,34694,34693,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,0,0,0,1,-2,91.091095,1,2,1,2019,14,2,0,25,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,48.53,58.91,8.333333333333334,1,1,0,0,9,7,3,1,1952,183297.38,-29298.99,0,0,2410.6963 -15590,19195,34695,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.8858156,8.8477974,0,0,0,-1018.0634,0,2,1,2019,20,7,41,50,1,7,0,27.145689,27.145689,0,0,0,0,0,1,1,0,2.8444393,0,43.44,61.22,-9,-9,5,1,1,0,0,5,8,5,1,366,178917.25,22900.453,0,0,2254.4414 -15591,19196,34696,34697,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.8674173,8.7813587,5,0,-38.377548,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9065199,44.24,59.44,51.24,58.84,8.333333333333334,1,1,0,0,3,12,5,1,201.5,1147962.1,811493.75,120042.36,14455.572,4345.0337 -15591,19196,34697,34696,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,5.7861195,6.1303358,5,0,16.295387,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.231916,5.9187183,51.24,58.84,44.24,59.44,8.333333333333334,1,1,0,0,0,12,5,1,201.5,1147962.1,811493.75,120042.36,14455.572,4345.0337 -15591,19197,34698,-9,34697,34696,1,0,28,0,0,0,1,1,-9,0,4,8.5597429,8.4344864,0,0,0,-954.93091,0,2,1,2019,12,0,46,43,1,0,0,13.830089,13.830089,0,0,0,0,0,0,0,0,2.6770911,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,4474,387614.44,12473.291,0,0,2032.74 -15591,19198,34699,-9,34697,34696,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1016.8912,-9,2,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,12,1,1,294,77515.742,0,0,0,0 -15592,19199,34700,-9,-9,-9,1,0,50,0,0,0,2,2,1,0,3,7.4305878,7.5150461,0,0,0,-909.90375,-9,2,1,2019,7,1,20,0,1,1,0,10.690173,10.690173,0,0,0,0,0,0,0,0,0,0,52.15,48.98,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,771,287274.75,-20315.367,273126.97,0,904.5675 -15592,19200,34701,-9,34700,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-970.76831,-9,2,-9,2019,7,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,702,-80787.914,0,0,0,-162.4032 -15593,19201,34702,34703,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.0804386,7.0114102,64,1,90.145096,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.8471627,6.9685993,56.95,35.96,54,44,8.333333333333334,1,1,0,0,0,4,2,0,509,343558,203384.22,204140.61,0,1816.5493 -15593,19201,34703,34702,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,6,-1,166.3118,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,7.8156705,0,0,1,1,0,0,0,54,44,56.95,35.96,8,1,1,0,0,0,4,2,0,509,343558,203384.22,204140.61,0,1816.5493 -15594,19202,34704,34705,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.6567717,9.4968662,11,-8,-69.44931,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.7931795,9.5480032,57.16,56.15,58.71,35.72,8.333333333333334,1,1,0,0,0,6,5,1,536.5,2607609,775786.5,510737.81,0,8239.5039 -15594,19202,34705,34704,-9,-9,1,0,75,0,0,0,1,1,-9,0,2,0,0,0,39,8,114.0306,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,58.71,35.72,57.16,56.15,8.333333333333334,1,1,0,0,0,6,5,1,536.5,2607609,775786.5,510737.81,0,8239.5039 -15595,19203,34706,34707,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.4438562,9.0594606,0,23,4,-46.118782,0,3,2,2019,15,4,45,46,1,4,0,21.554869,21.554869,0,0,0,0,2,0,0,0,0,0,57.13,40.12,51.4,41.01,6.666666666666667,1,1,0,0,12,6,4,1,491.5,121028.02,64569.762,129714.75,0,3703.394 -15595,19203,34707,34706,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.005157,6.7883177,0,9,-4,-50.68338,0,2,1,2019,8,0,16,22,1,0,0,7.5437312,7.5437312,0,0,0,0,2,0,0,0,0,0,51.4,41.01,57.13,40.12,8.333333333333334,1,1,0,0,10,6,4,1,491.5,121028.02,64569.762,129714.75,0,3703.394 -15596,19204,34708,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.0204611,9.1227627,0,0,0,-1100.3989,0,2,2,2019,7,0,35,40,1,0,0,39.352398,39.352398,0,0,0,0,2,1,1,0,4.9473948,0,57.06,57.76,-9,-9,10,1,1,0,0,8,2,5,1,672,-76763.086,-23520.881,0,0,3403.8052 -15597,19205,34709,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,4.8995624,5.225584,0,0,-938.09979,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.28085881,5.1340699,53,40.54,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,1254,220333.05,-11101.684,0,0,1054.7948 -15598,19206,34710,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-934.36658,0,2,2,2019,21,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,45.45,13.09,-9,-9,3.333333333333333,1,1,0,0,1,2,1,1,515,-82930.531,0,0,0,1276.3878 -15599,19207,34711,-9,34712,34714,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-986.80701,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 -15599,19207,34712,34714,-9,-9,1,0,30,0,4,0,2,2,-9,1,3,0,0,0,9,-7,-64.587723,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.77,42.47,60.02,56.42,6.666666666666667,1,1,0,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 -15599,19207,34713,-9,34712,34714,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.1606,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 -15599,19207,34714,34712,-9,-9,1,1,37,0,4,0,2,2,-9,0,5,8.3538218,8.353178,0,9,7,-31.929853,0,3,2,2019,6,0,40,37,1,0,0,13.689323,13.689323,0,0,0,0,71.5,1,1,0,0,0,60.02,56.42,54.77,42.47,8.333333333333334,1,1,0,0,10,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 -15599,19207,34715,-9,34712,34714,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1083.1956,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1417,90408.508,69975.367,0,0,3313.4932 -15600,19208,34716,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-764.09973,0,3,2,2019,21,9,0,0,4,9,0,0,0,1,0,7.3503203,0,0,1,1,0,0,0,29.82,42.3,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,817,-102184.77,0,0,0,1495.161 -15601,19209,34717,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.1669846,8.3450489,0,0,0,-986.03882,0,3,3,2019,6,0,20,36,1,0,0,19.479288,19.479288,0,0,0,0,0,1,1,0,7.3951249,0,42.58,46.7,-9,-9,8.333333333333334,1,1,0,0,10,12,4,0,663,-169689.92,9125.3203,0,0,2361.3494 -15602,19210,34718,34719,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.6311884,8.5558128,0,2,4,-41.755146,-9,-9,-9,2019,16,5,48,0,1,5,0,14.232211,14.232211,0,0,0,0,0,0,0,0,6.6116476,0,45.49,58.84,38.09,63.39,8.333333333333334,1,1,0,0,7,4,5,1,966.5,-112792.17,6571.3198,148685.55,100170.41,3529.3596 -15602,19210,34719,34718,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.201148,8.2593441,0,2,-4,-60.564854,0,-9,-9,2019,10,0,53,62,1,0,0,8.6802082,8.6802082,0,0,0,0,0,0,0,0,0,0,38.09,63.39,45.49,58.84,5,1,1,0,0,3,4,5,1,966.5,-112792.17,6571.3198,148685.55,100170.41,3529.3596 -15603,19211,34720,34721,-9,-9,1,1,45,0,2,0,3,3,-9,0,5,8.5193186,8.6998186,0,23,2,-38.675053,0,2,2,2019,6,0,45,40,1,0,0,11.851329,11.851329,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,10,1,1,0,0,9,9,3,1,741.5,63424.328,50817.77,223570.39,98230.094,2827.8318 -15603,19211,34721,34720,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.8010659,7.4297843,0,23,-2,57.806274,0,2,2,2019,11,1,25,8,1,1,0,7.5111952,7.5111952,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,7,9,3,1,741.5,63424.328,50817.77,223570.39,98230.094,2827.8318 -15604,19212,34722,34723,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.2602291,8.3230762,0,3,2,53.475639,0,-9,-9,2019,12,1,45,40,1,1,0,12.37383,12.37383,0,0,0,0,0,0,0,0,0,0,55.92,25.67,35.69,46.04,8.333333333333334,1,1,0,0,9,9,5,1,359.5,545835.19,212310.5,250903.39,36196.715,3238.9297 -15604,19212,34723,34722,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1959133,8.1288118,0,3,-2,33.441586,0,2,2,2019,16,5,39,42,1,5,0,10.954438,10.954438,0,0,0,0,0,0,0,0,0,0,35.69,46.04,55.92,25.67,3.333333333333333,1,1,0,1,9,9,5,1,359.5,545835.19,212310.5,250903.39,36196.715,3238.9297 -15605,19213,34724,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1209745,8.4593506,0,0,0,-1023.8286,0,-9,-9,2019,4,0,40,40,1,0,0,11.000255,11.000255,0,0,0,0,0,0,0,0,0,0,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,7,2,4,0,183,-160377.78,31848.08,0,0,1336.3762 -15606,19214,34725,-9,34727,34728,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.5925,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 -15606,19214,34726,-9,34727,34728,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.12799,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 -15606,19214,34727,34728,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,0,0,0,23,-8,21.628332,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,53,55,8,2,3,0,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 -15606,19214,34728,34727,-9,-9,1,1,50,0,3,0,3,3,-9,0,4,7.2233682,7.3981314,0,23,8,-52.884872,0,3,3,2019,9,0,24,24,1,1,0,6.255681,6.255681,0,0,0,0,0,1,1,0,0,0,53,55,49,55,8,2,3,0,0,10,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 -15606,19214,34729,-9,34727,34728,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1068.1682,-9,2,3,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,2,0,538.59998,-58384.281,0,243095.8,179509.86,2564.2815 -15607,19215,34730,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.6029539,8.7521896,0,0,0,-1215.8091,0,-9,-9,2019,4,0,37,90,1,0,0,16.485813,16.485813,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,400,-272262.25,0,0,0,1913.9108 -15608,19216,34731,34734,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.2573147,8.0298529,0,9,0,64.346741,0,2,2,2019,13,1,43,50,1,1,0,11.648946,11.648946,0,0,0,0,0,0,0,0,3.2423689,0,48.45,57.49,45.91,59.89,8.333333333333334,1,1,0,0,11,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 -15608,19216,34732,-9,34731,34734,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.82672,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 -15608,19216,34733,-9,34731,34734,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.0261,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 -15608,19216,34734,34731,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.1624889,9.3239603,0,9,0,-34.120213,0,1,1,2019,10,0,48,50,1,0,0,25.015564,25.015564,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.45,57.49,8.333333333333334,1,1,0,0,9,2,5,1,794.25,435025.66,285255.28,228713.78,147507.39,5104.6655 -15609,19217,34735,-9,34736,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.41,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,1686,8318.9492,0,0,0,1875.8417 -15609,19217,34736,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,0,6.195025,5.959269,0,0,-957.20605,0,3,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.9302306,0,39.58,57.61,-9,-9,5,3,4,0,0,0,8,2,0,1686,8318.9492,0,0,0,1875.8417 -15609,19217,34737,-9,34736,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.05463,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,2,0,1686,8318.9492,0,0,0,1875.8417 -15609,19218,34738,-9,34736,-9,1,1,18,0,2,1,2,0,0,0,4,0,4.6603103,4.5341415,0,0,-961.75763,-9,3,-9,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,4.5796556,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,1300,49553.305,0,0,0,426.36197 -15610,19219,34739,-9,34742,34740,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9592,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,3,0,749,65044.422,0,0,0,2847.6523 -15610,19219,34740,34742,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,7.8145838,7.6344953,0,12,-3,-177.05281,0,-9,-9,2019,11,1,72,60,1,1,0,4.489707,4.489707,0,0,0,0,0,1,1,0,0,0,48.09,53.39,57.16,56.15,8.333333333333334,1,1,0,0,7,7,3,0,749,65044.422,0,0,0,2847.6523 -15610,19219,34741,-9,34742,34740,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.95032,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,3,0,749,65044.422,0,0,0,2847.6523 -15610,19219,34742,34740,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.0877137,7.0875378,0,18,3,55.275921,0,3,-9,2019,9,1,30,52,1,1,0,5.6908698,5.6908698,0,0,0,0,7,1,1,0,0,0,57.16,56.15,48.09,53.39,10,3,4,0,0,9,7,3,0,749,65044.422,0,0,0,2847.6523 -15611,19220,34743,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.0335126,6.1783624,0,0,-1071.8618,0,2,2,2019,22,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,2.921602,6.3221588,37.72,43.87,-9,-9,5,1,1,0,0,2,9,2,0,298,152351,22710.508,223240.02,0,1402.1027 -15612,19221,34744,-9,34745,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.95215,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,430.5,156154.02,0,0,0,2542.8848 -15612,19221,34745,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.999413,6.9763703,0,0,0,-1056.3313,0,3,2,2019,12,0,17,15,1,2,0,6.9384809,6.9384809,0,0,0,0,0,1,1,0,0,0,50.28,48.65,-9,-9,3.333333333333333,2,3,0,1,6,8,2,0,430.5,156154.02,0,0,0,2542.8848 -15612,19222,34746,-9,34745,-9,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1014.0422,-9,1,-9,2019,10,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,39.08,57.81,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,980,295762.78,0,0,0,-198.52612 -15613,19223,34747,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1043.2668,0,2,2,2019,10,0,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,5,1,1,0,0,8,1,1,1,921,-234074.33,0,0,0,0 -15614,19224,34748,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.5220375,8.4873056,0,10,5,78.997147,0,2,3,2019,14,2,37,40,1,2,0,11.261135,11.261135,0,0,0,0,0,0,0,0,0,0,38.51,59.43,51.73,58.82,8.333333333333334,1,1,0,0,9,7,5,1,113,459463.28,-47119.895,0,0,1215.8351 -15614,19225,34749,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,5,9.3243103,9.7431726,0,10,-5,-93.917656,0,2,2,2019,12,0,61,103,1,0,0,21.213684,21.213684,0,0,0,0,0,0,0,0,0,0,51.73,58.82,38.51,59.43,10,1,1,0,0,10,7,5,1,2639,-195518.28,0,0,0,4882.6538 -15615,19226,34750,34751,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.8009043,8.7094049,45,0,-140.59785,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.8823118,9.1889715,60.12,54.8,60.02,56.42,10,1,1,0,0,4,6,4,1,792,1474253.5,1025933.9,231891.77,0,4404.3447 -15615,19226,34751,34750,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,0,5.1602497,5.2380552,45,0,27.584011,0,3,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1432505,5.4788294,60.02,56.42,60.12,54.8,10,1,1,0,0,0,6,4,1,792,1474253.5,1025933.9,231891.77,0,4404.3447 -15616,19227,34752,34753,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,6.8507562,7.1013079,0,2,3,-42.610531,0,-9,-9,2019,11,0,30,30,1,2,0,6.3194246,6.3194246,0,0,0,0,0,0,0,0,0,0,49,56,50,57,7,1,1,0,0,7,1,5,1,1697,-198660.08,205603.31,120752.87,89366.969,2855.2681 -15616,19227,34753,34752,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.7749014,8.5238228,0,2,-3,123.96732,0,-9,-9,2019,10,0,35,40,1,1,0,14.51692,14.51692,0,0,0,0,0,0,0,0,4.7545867,0,50,57,49,56,7,1,1,0,0,1,1,5,1,1697,-198660.08,205603.31,120752.87,89366.969,2855.2681 -15617,19228,34754,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,6.9332495,7.6262393,7.3483367,0,0,-936.78937,-9,2,2,2019,11,1,8,0,1,1,0,13.955102,13.955102,0,0,0,0,0,1,1,0,7.14079,0,41.63,49.72,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,632,134382.13,44614.25,242280.66,0,1001.944 -15618,19229,34755,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.9097672,7.847796,0,0,-983.10797,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7159476,7.7892542,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,723,655680.44,169362.7,280518.75,0,2887.1543 -15619,19230,34756,34757,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.4951611,7.7021341,0,7,0,62.967712,0,-9,-9,2019,9,0,45,35,1,1,0,4.6390867,4.6390867,0,0,0,0,0,0,0,0,6.4017482,0,53,55,43.37,57.28,8,1,1,0,0,1,6,2,1,1170,-253824.28,74278.766,123791.16,97262.016,1197.4899 -15619,19230,34757,34756,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,0,0,0,35,0,-37.186863,0,3,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,53,55,6.666666666666667,1,1,0,0,1,6,2,1,1170,-253824.28,74278.766,123791.16,97262.016,1197.4899 -15619,19231,34758,-9,34757,34756,1,0,29,0,0,0,2,2,-9,0,4,7.6248717,7.5234985,0,0,0,-921.23474,0,3,3,2019,16,4,37,22,1,4,1,7.1073203,7.1073203,0,0,0,0,0,0,0,0,0,0,36,48.18,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,1891,62401.441,-22693.002,0,0,657.07983 -15620,19232,34759,34760,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.659061,7.5452309,0,41,-3,79.004639,0,3,2,2019,10,0,29,28,1,0,0,6.0479965,6.0479965,0,0,0,0,0,0,0,0,0,0,49.86,55.31,47.66,52.33,6.666666666666667,1,1,0,0,10,2,4,1,544,1649548.6,1086415.5,253781.78,102117.02,2249.6299 -15620,19232,34760,34759,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.5451717,7.9334016,6.8853955,42,3,-55.768581,0,2,2,2019,9,1,40,40,1,1,0,6.1914339,6.1914339,0,0,0,0,0,0,0,0,1.9299861,6.8780551,47.66,52.33,49.86,55.31,6.666666666666667,1,1,0,0,10,2,4,1,544,1649548.6,1086415.5,253781.78,102117.02,2249.6299 -15620,19233,34761,-9,34759,34760,1,1,35,0,0,0,2,2,-9,0,4,5.1391768,5.2908282,0,0,0,-1026.4478,0,2,1,2019,10,1,15,34,1,1,1,1.4058551,1.4058551,0,0,0,0,0,0,0,0,2.1672244,0,36.2,64.19,-9,-9,3.333333333333333,1,1,0,0,6,2,2,1,659,-208442.17,0,0,0,-79.337891 -15621,19234,34762,34763,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.9768705,8.9508677,0,28,8,53.762032,0,3,3,2019,8,0,30,35,1,0,0,27.037975,27.037975,0,0,0,0,14.5,0,0,0,0,0,54.2,57.49,52,53,6.666666666666667,1,1,0,0,9,7,4,1,401.5,722196.56,411851.81,261636.53,0,2379.6299 -15621,19234,34763,34762,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,28,-8,114.96914,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2.1093161,0,52,53,54.2,57.49,8,1,1,0,0,0,7,4,1,401.5,722196.56,411851.81,261636.53,0,2379.6299 -15622,19235,34764,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.312993,9.6015558,0,0,0,-1040.7177,0,-9,-9,2019,11,0,50,45,1,0,0,27.947853,27.947853,0,0,0,0,0,1,1,0,4.4669466,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,488,-170869.81,17899.666,0,0,3373.2683 -15623,19236,34765,34766,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.7927055,7.8638544,0,6,-3,-63.360039,0,2,-9,2019,10,0,28,28,1,0,0,8.3815575,8.3815575,0,0,0,0,0,1,1,0,0,0,45.09,52.41,53,55,8.333333333333334,1,1,0,0,7,11,5,0,395,557141,308411.22,239572.38,4862.0327,4124.3335 -15623,19236,34766,34765,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.7962408,8.7704124,0,6,3,-.35479075,-9,2,3,2019,9,0,40,0,1,1,0,25.686296,25.686296,0,0,0,0,0,1,1,0,0,0,53,55,45.09,52.41,8,1,1,0,0,1,11,5,0,395,557141,308411.22,239572.38,4862.0327,4124.3335 -15623,19237,34767,-9,34765,34766,1,1,22,0,0,0,2,2,-9,0,3,7.517437,7.4333048,0,0,0,-1053.4229,0,2,2,2019,17,5,50,50,1,5,1,5.4923491,5.4923491,0,0,0,0,0,1,1,0,0,0,35.5,54.11,-9,-9,3.333333333333333,1,1,0,0,2,11,3,0,501,108822.61,0,0,0,1769.8461 -15624,19238,34768,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8402119,9.0179024,0,0,0,-936.60333,0,2,2,2019,7,0,41,41,1,0,0,22.850348,22.850348,0,0,0,0,0,0,0,0,2.9909635,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1358,390935.09,38985.766,135810,57897.504,1783.4399 -15625,19239,34769,34770,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.2897091,7.4575057,0,20,-6,-59.13699,0,2,2,2019,17,5,27,26,1,5,0,8.7868032,8.7868032,0,0,0,0,7,1,1,0,0,0,34.76,38.42,52.99,51.28,5,1,1,0,0,12,10,4,1,781.66669,235711.64,141522.2,300144.09,84529.609,2556.5161 -15625,19239,34770,34769,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.4720182,8.3522673,0,4,6,3.6453714,0,-9,-9,2019,10,0,50,45,1,0,0,9.8969822,9.8969822,0,0,0,0,7,1,1,0,0,0,52.99,51.28,34.76,38.42,8.333333333333334,1,1,0,0,12,10,4,1,781.66669,235711.64,141522.2,300144.09,84529.609,2556.5161 -15625,19239,34771,-9,34769,34770,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1034.9771,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,781.66669,235711.64,141522.2,300144.09,84529.609,2556.5161 -15625,19240,34772,-9,34769,34770,1,1,20,0,1,0,2,2,-9,0,2,7.4468355,7.4083223,0,0,0,-962.39069,0,2,2,2019,18,6,45,21,1,6,1,4.9189391,4.9189391,0,0,0,0,2,1,1,0,0,0,14.6,62.69,-9,-9,3.333333333333333,1,1,0,0,2,10,3,1,1325,191730.28,0,0,0,824.34753 -15625,19241,34773,-9,34769,34770,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-840.09668,0,2,2,2019,6,0,0,16,3,0,1,0,0,0,0,0,0,2,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,879,219049.8,0,0,0,0 -15626,19242,34774,-9,-9,-9,1,0,86,0,1,0,3,3,-9,0,3,0,4.905962,5.2930603,0,0,-1025.675,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,0,29.681761,0,0,1,1,0,5.1984305,5.1855884,53,44,-9,-9,8,1,1,0,0,0,12,2,0,1403,64412.438,-169961.97,0,0,611.10791 -15626,19243,34775,-9,34774,-9,1,1,49,0,1,0,1,1,-9,0,4,7.1795096,7.5083222,0,0,0,-908.50061,-9,3,-9,2019,6,0,50,0,1,0,0,3.4803181,3.4803181,0,0,0,0,27,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,1325.5,181600.48,0,0,0,2101.9917 -15626,19243,34776,-9,-9,34775,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6872,-9,-9,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,1325.5,181600.48,0,0,0,2101.9917 -15627,19244,34777,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.7834935,7.7146282,0,0,-882.28607,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,1,2.8147397,9.1986322,0,0,1,1,0,.72853053,7.9549069,50.66,28.63,-9,-9,5,1,1,0,0,0,13,3,1,139,715563.81,240272.19,331610.19,0,1037.7828 -15628,19245,34778,-9,-9,-9,1,0,56,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1000.361,0,-9,-9,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.54,14.46,-9,-9,5,1,1,0,0,0,10,1,0,2980,-687985.06,0,0,0,1907.4054 -15628,19246,34779,-9,-9,34782,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.6801,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 -15628,19246,34780,-9,-9,34782,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.0583,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 -15628,19246,34781,-9,-9,34782,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.89496,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 -15628,19246,34782,-9,34778,-9,1,1,34,0,2,0,2,2,-9,0,4,8.5031424,8.4155703,0,0,0,-992.62103,0,2,-9,2019,10,0,97,97,1,1,1,6.5120044,6.5120044,0,0,0,0,0,1,1,0,.9974643,0,50,57,-9,-9,7,1,1,0,0,1,10,5,0,587,28607.635,32784.309,168033.88,101195.3,2177.8926 -15629,19247,34783,-9,34785,34788,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1114.3202,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 -15629,19247,34784,-9,34785,34788,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.3018,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 -15629,19247,34785,34788,-9,-9,1,0,39,0,4,0,3,3,-9,1,4,0,0,0,20,-1,8.0537243,0,-9,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,.40202767,0,54.79,55.86,51,56,6.666666666666667,1,1,0,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 -15629,19247,34786,-9,34785,34788,1,0,12,0,4,1,3,0,-9,0,5,0,0,0,0,0,-976.22852,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 -15629,19247,34787,-9,34785,34788,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.0315,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 -15629,19247,34788,34785,-9,-9,1,1,40,0,4,0,2,2,-9,0,4,9.9173412,9.6978607,0,20,1,-59.847008,0,-9,-9,2019,10,0,37,37,1,1,0,61.416916,61.416916,0,0,0,0,0,1,1,0,0,0,51,56,54.79,55.86,7,1,1,0,0,11,13,5,1,933.5,1029376.8,957761.94,140729.66,16135.175,10844.183 -15630,19248,34789,34790,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,40,-6,44.381042,0,2,3,2019,14,0,0,0,4,3,0,0,0,1,0,7.4392495,0,7,1,1,0,0,0,45.4,32.26,34.21,51.94,5,1,1,0,0,0,9,3,1,313,885469.63,415964.41,401587.34,0,2854.1025 -15630,19248,34790,34789,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.475831,8.0279427,8,6,155.99432,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,2.2354832,8.2493267,34.21,51.94,45.4,32.26,8.333333333333334,1,1,0,0,0,9,3,1,313,885469.63,415964.41,401587.34,0,2854.1025 -15631,19249,34791,34792,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,48,-3,105.78737,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,3.0316293,0,0,1,1,0,0,0,62.27,48.47,57.7,55.88,8.333333333333334,1,1,0,0,7,12,2,0,236.5,568143.63,364891.69,153138.09,0,1788.4421 -15631,19249,34792,34791,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.9274912,6.9185739,50,3,-100.96383,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9866686,57.7,55.88,62.27,48.47,10,1,1,0,0,7,12,2,0,236.5,568143.63,364891.69,153138.09,0,1788.4421 -15632,19250,34793,34794,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,56,-3,2.5953925,0,3,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.0306945,0,56.65,33.37,55.17,47.52,8.333333333333334,1,1,0,0,5,8,2,1,426,515231.13,392895.63,257013.86,0,1927.7927 -15632,19250,34794,34793,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.5844212,6.9585438,56,3,43.287399,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2751398,7.3841763,55.17,47.52,56.65,33.37,8.333333333333334,1,1,0,0,0,8,2,1,426,515231.13,392895.63,257013.86,0,1927.7927 -15633,19251,34795,34796,-9,-9,1,0,32,0,0,0,1,1,1,0,3,5.7566881,5.6133246,0,5,-13,-13.898528,-9,-9,-9,2019,18,5,16,0,1,5,0,1.9077919,1.9077919,0,0,0,0,0,0,0,0,5.7423124,0,35.63,51.49,56.34,40.63,3.333333333333333,1,1,0,0,6,2,3,0,656,271076.63,108853.94,164976.27,48653.625,1343.0181 -15633,19251,34796,34795,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.5072217,7.5701447,0,5,13,101.09644,0,-9,-9,2019,7,0,36,30,1,0,0,5.8149886,5.8149886,0,0,0,0,0,0,0,0,0,0,56.34,40.63,35.63,51.49,6.666666666666667,1,1,0,0,11,2,3,0,656,271076.63,108853.94,164976.27,48653.625,1343.0181 -15634,19252,34797,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.6610069,8.2148685,6.8254256,0,0,-1096.958,0,3,3,2019,5,0,20,38,1,0,0,12.783305,12.783305,0,0,0,0,14.5,1,1,0,4.4453397,7.0302744,59.04,54.12,-9,-9,10,1,1,0,0,9,1,4,1,1216,1110163.3,569274.81,126564.69,0,1790.2109 -15635,19253,34798,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,3,0,0,0,0,0,-991.93469,0,2,2,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,37.86,39.26,-9,-9,1.666666666666667,1,1,0,1,0,12,1,0,1206,45030.223,0,0,0,577.26617 -15636,19254,34799,34800,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.1761322,9.3750467,0,21,-1,-46.66827,0,1,1,2019,6,0,55,56,1,0,0,19.413235,19.413235,0,0,0,0,0,1,1,0,0,0,57.63,56.14,41,56.99,8.333333333333334,2,3,0,0,11,8,5,1,1245,649509.38,287425.97,248051.97,23391.914,3681.6084 -15636,19254,34800,34799,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.2542605,7.5784893,0,21,1,-92.568336,0,2,3,2019,12,1,10,30,1,1,0,11.760531,11.760531,0,0,0,0,0,1,1,0,0,0,41,56.99,57.63,56.14,8.333333333333334,2,3,0,0,10,8,5,1,1245,649509.38,287425.97,248051.97,23391.914,3681.6084 -15637,19255,34801,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.5927296,7.9555035,6.3933601,0,0,-1136.0432,0,3,2,2019,14,2,22,23,1,2,0,12.801123,12.801123,0,0,0,0,0,1,1,0,6.5506377,0,46.68,47.98,-9,-9,8.333333333333334,1,1,0,1,8,6,3,1,622,-115309.48,-11877.503,104188.88,71648.406,1542.1638 -15637,19255,34802,-9,34801,-9,1,0,16,0,2,1,2,0,-9,0,3,0,3.8559821,3.4051716,0,0,-996.11798,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,3.9081128,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,622,-115309.48,-11877.503,104188.88,71648.406,1542.1638 -15637,19255,34803,-9,34801,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1018.8406,-9,2,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,6,3,1,622,-115309.48,-11877.503,104188.88,71648.406,1542.1638 -15637,19256,34804,-9,34801,-9,1,1,20,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1125.4165,1,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,-9,-9,6.666666666666667,1,1,0,1,0,6,1,1,442,0,0,0,0,0 -15638,19257,34805,34806,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.5429354,8.793479,7.9086714,36,-3,155.9769,0,-9,-9,2019,12,0,25,30,1,0,0,9.4561157,9.4561157,0,0,0,0,0,1,1,0,3.0708957,8.1340837,49.52,56.95,48.45,30.77,8.333333333333334,1,1,0,0,10,8,4,1,1398,1650486.4,988386.63,435566.03,0,3814.561 -15638,19257,34806,34805,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,6.8433895,6.9609232,36,3,42.845913,0,1,1,2019,5,0,0,0,4,0,0,0,0,1,0,5.0987558,0,0,1,1,0,0,6.9782743,48.45,30.77,49.52,56.95,5,1,1,0,0,0,8,4,1,1398,1650486.4,988386.63,435566.03,0,3814.561 -15638,19258,34807,-9,34806,34805,1,0,26,0,0,0,2,2,-9,0,4,8.258112,8.0941696,0,0,0,-1025.3108,0,1,1,2019,7,0,40,46,1,0,0,13.110643,13.110643,0,0,0,.72334331,0,1,1,0,0,0,50.01,45.82,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,251,-403770,5573.2036,0,0,1459.6669 -15639,19259,34808,34809,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8861985,8.1151438,10,-2,1.1996646,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.074789,8.1224375,51,48,50,47,7,1,1,0,0,4,10,3,1,316.5,1129836,721581.38,357919.19,0,3022.8914 -15639,19259,34809,34808,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.5791349,5.8484101,10,2,91.952698,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.1970448,5.8551221,50,47,51,48,7,1,1,0,0,3,10,3,1,316.5,1129836,721581.38,357919.19,0,3022.8914 -15640,19260,34810,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.9339299,7.1746488,0,0,-1037.3024,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,3.3680503,0,19.456963,0,1,1,0,5.6653252,6.8236856,54.72,46.41,-9,-9,10,1,1,0,0,0,9,3,1,201,71428.5,93118.641,185274.31,0,1258.2784 -15641,19261,34811,34812,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.984746,9.9149475,8.2668495,8,1,-39.405731,0,-9,-9,2019,13,4,28,24,1,4,0,31.489866,31.489866,0,0,0,0,2,0,0,0,3.3019309,8.2208328,51.3,53.52,48.81,59.91,8.333333333333334,1,1,0,0,10,7,5,1,1302.5,1392262,279031.56,2006784.9,323242.47,10296.07 -15641,19261,34812,34811,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.5825205,9.0709419,8.769824,34,-1,-27.189497,0,3,3,2019,10,0,16,8,1,0,0,31.059561,31.059561,0,0,0,0,2,0,0,0,8.5427103,8.5950089,48.81,59.91,51.3,53.52,8.333333333333334,1,1,0,0,10,7,5,1,1302.5,1392262,279031.56,2006784.9,323242.47,10296.07 -15642,19262,34813,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.5047264,8.273222,0,0,-806.41913,0,1,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.684454,8.301507,49.97,56.66,-9,-9,10,1,1,0,0,0,4,4,1,915,1562038.6,938150.88,520069.63,0,3116.0283 -15643,19263,34814,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.2423944,8.233923,0,0,0,-1003.9485,0,2,2,2019,9,0,40,50,1,0,0,9.9200602,9.9200602,0,0,0,2.2971506,7,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,1174,-251387.31,0,0,0,1615.3821 -15644,19264,34815,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1073.4824,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,1.3293364,3.5140295,24.426891,0,1,1,0,.011348044,0,55,43,-9,-9,8,1,1,0,0,0,11,1,0,159,50064.254,0,0,0,1127.2926 -15645,19265,34816,34818,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,0,0,0,30,5,0,-9,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,35.04,33.14,8,1,1,1,0,0,10,1,0,272.33334,0,0,0,0,2453.0481 -15645,19265,34817,-9,34818,34816,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6412,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,1,0,272.33334,0,0,0,0,2453.0481 -15645,19265,34818,34816,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,30,-5,0,0,3,3,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,35.04,33.14,54,54,3.333333333333333,1,1,1,0,0,10,1,0,272.33334,0,0,0,0,2453.0481 -15646,19266,34819,34820,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.8551817,7.8786173,0,7,-7,89.230545,0,2,2,2019,7,0,40,40,1,0,0,7.9042754,7.9042754,0,0,0,0,2,1,1,0,0,0,57.34,47.92,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,649.5,353575.59,132796.88,187047.11,0,2787.5085 -15646,19266,34820,34819,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,6.7644973,8.3283243,8.0844002,7,7,43.232235,-9,3,3,2019,8,0,60,0,1,0,0,.99864995,.99864995,0,0,0,0,0,1,1,0,0,8.2400875,54.2,57.49,57.34,47.92,8.333333333333334,1,1,0,0,8,11,4,1,649.5,353575.59,132796.88,187047.11,0,2787.5085 -15647,19267,34821,34822,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.6513228,7.7300072,0,10,-10,25.085064,0,2,2,2019,21,8,74,37,1,8,0,3.1931283,3.1931283,0,0,0,0,0,0,0,0,0,0,41,41,34.74,55.63,5,1,1,0,0,11,2,5,1,281.5,171015.88,134231.52,214185.59,138734.28,3845.6943 -15647,19267,34822,34821,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.8011703,9.0145187,0,10,10,58.847744,0,3,2,2019,16,5,38,37,1,5,0,22.298962,22.298962,0,0,0,0,0,0,0,0,4.8414669,0,34.74,55.63,41,41,5,4,2,0,0,11,2,5,1,281.5,171015.88,134231.52,214185.59,138734.28,3845.6943 -15648,19268,34823,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,4.0697117,4.3375239,0,0,-1004.0987,0,2,1,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,4.071075,4.3767481,52,44,-9,-9,8,1,1,0,0,0,6,2,1,633,148249.5,-37670.945,200762.94,0,1067.5173 -15649,19269,34824,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.6189003,9.0309391,0,0,-1097.2644,0,2,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,2.7443602,8.4226732,46.44,59.62,-9,-9,6.666666666666667,1,1,0,0,0,4,5,1,936,132881.84,0,94963.727,0,2492.0369 -15650,19270,34825,34826,-9,-9,1,0,47,0,0,0,1,1,-9,1,1,0,0,0,2,-4,0,0,2,3,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,27,1,1,0,0,0,14.96,60.09,38.09,63.39,1.666666666666667,1,1,0,1,4,10,1,0,554,75987.289,98940.297,0,0,-235.59824 -15650,19270,34826,34825,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,2,4,0,1,2,2,2019,18,5,0,38,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,38.09,63.39,14.96,60.09,6.666666666666667,1,1,0,0,7,10,1,0,554,75987.289,98940.297,0,0,-235.59824 -15651,19271,34827,34828,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,8.0403938,7.6520934,7,7,-39.220127,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.9365654,52,45,45.96,44.2,8,1,1,0,0,0,2,4,1,552,974607.13,755848.75,317622.31,0,3307.6484 -15651,19271,34828,34827,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,8.0231161,7.9024029,17,-7,-97.378166,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7071457,45.96,44.2,52,45,6.666666666666667,1,1,0,0,0,2,4,1,552,974607.13,755848.75,317622.31,0,3307.6484 -15652,19272,34829,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.5982809,5.4337654,0,0,-1133.5842,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0873995,50.48,56.4,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,1507,678777.5,0,340313.66,0,933.8512 -15653,19273,34830,34831,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.2506161,6.901598,0,32,-1,-16.13032,0,2,2,2019,9,0,30,30,1,1,0,4.1901402,4.1901402,0,0,0,0,0,0,0,0,0,0,53,55,46.48,53.76,8,1,1,0,0,1,6,4,1,982.5,157215.64,0,108008.09,23346.125,1925.1464 -15653,19273,34831,34830,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.916975,8.8595276,0,32,1,-45.731457,0,-9,-9,2019,9,0,42,35,1,0,0,15.500805,15.500805,0,0,0,0,2,0,0,0,3.8912096,0,46.48,53.76,53,55,1.666666666666667,1,1,0,0,9,6,4,1,982.5,157215.64,0,108008.09,23346.125,1925.1464 -15654,19274,34832,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.8130164,7.7976942,0,0,0,-1002.3955,0,2,1,2019,9,0,50,55,1,0,0,5.5875254,5.5875254,0,0,0,0,0,1,1,0,0,0,50.05,55.41,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,212,66490.742,-22132.66,0,0,1503.7621 -15655,19275,34833,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.9987721,8.2635298,0,0,0,-838.73767,0,2,2,2019,8,0,38,38,1,0,0,10.030753,10.030753,0,0,0,0,2,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,143,-90981.352,0,0,0,1720.5382 -15656,19276,34834,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.5824928,8.7760286,0,0,0,-918.54144,0,-9,-9,2019,13,4,58,56,1,4,0,10.045429,10.045429,0,0,0,0,0,0,0,0,.97053981,0,51.47,41.02,-9,-9,3.333333333333333,4,2,0,0,8,10,5,1,633,201922.59,166096.45,147574.09,122176.88,2162.4609 -15657,19277,34835,34836,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,8.0993786,8.3270855,0,41,-3,-38.006306,0,3,3,2019,7,0,38,38,1,0,0,9.3864565,9.3864565,0,0,0,0,0,1,1,0,1.4411361,0,57.06,57.76,58.47,28.49,8.333333333333334,1,1,0,0,10,12,5,1,776.5,1489062.5,62841.699,95806.781,27030.568,4098.5518 -15657,19277,34836,34835,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.9440918,9.2212782,0,41,3,-4.0973134,0,3,3,2019,12,4,38,56,1,4,0,26.986288,26.986288,0,0,0,0,0,1,1,0,1.9541107,0,58.47,28.49,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,776.5,1489062.5,62841.699,95806.781,27030.568,4098.5518 -15657,19278,34837,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-968.22266,0,3,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,53.11,54.31,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,162,-34153.496,0,0,0,393.96512 -15658,19279,34838,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.4158783,8.5896091,0,0,-1021.8375,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5699987,8.5141325,47.1,21.74,-9,-9,8.333333333333334,1,1,0,0,6,6,5,1,239,1879572.8,1683231.6,114801.88,0,2832.6467 -15659,19280,34839,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-929.24377,-9,-9,-9,2019,14,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,0,0,35.44,34.21,-9,-9,5,4,2,0,0,0,8,1,0,1078,93247.68,0,0,0,1181.5757 -15659,19281,34840,-9,34839,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1047.442,-9,2,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,4,2,1,0,0,8,1,0,90,0,0,0,0,503.36044 -15660,19282,34841,-9,34843,34842,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.907,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 -15660,19282,34842,34843,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.7072468,8.8369684,0,18,5,-69.869728,0,3,3,2019,13,1,40,46,1,1,0,16.045555,16.045555,0,0,0,0,2,1,1,0,1.86423,0,49.34,47.5,30.81,60.19,6.666666666666667,1,1,0,0,10,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 -15660,19282,34843,34842,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.7277403,8.8698273,0,18,-5,51.701054,0,2,2,2019,23,11,30,38,1,11,0,25.715511,25.715511,0,0,0,0,0,1,1,0,0,0,30.81,60.19,49.34,47.5,3.333333333333333,1,1,0,0,11,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 -15660,19282,34844,-9,34843,34842,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.16064,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,560.75,974441.25,161357.63,547065.56,0,4551.1235 -15661,19283,34845,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1072.0369,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,6.6124878,0,34.88,38.31,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,597,2955.1135,0,0,0,847.01239 -15662,19284,34846,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6212864,8.1075096,0,0,0,-919.01013,0,2,3,2019,8,0,45,-9,1,0,0,11.606727,11.606727,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,611,783022.56,552879.44,65812.289,0,1622.6599 -15663,19285,34847,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7173648,7.9581413,0,0,0,-890.73541,0,2,2,2019,12,0,43,43,1,0,0,6.8437157,6.8437157,0,0,0,0,0,1,1,0,0,0,22.27,62.71,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,592,86216.422,50248.848,0,0,1695.0521 -15664,19286,34848,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6907635,8.9709053,0,0,0,-962.91937,0,2,2,2019,16,5,40,84,1,5,0,21.629606,21.629606,0,0,0,0,0,0,0,0,1.4105471,0,43.62,48.66,-9,-9,5,1,1,0,1,8,12,5,0,1077,-167.13266,0,67888.875,49498.605,2562.4507 -15664,19287,34849,-9,-9,34848,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1071.2476,-9,-9,2,2019,20,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,.13378629,0,31.04,48.85,-9,-9,3.333333333333333,1,1,0,0,8,12,1,0,285,-516887.5,0,0,0,-657.57568 -15665,19288,34850,-9,34852,34851,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.0354,-9,2,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,1,1357,272010.84,0,92852.477,75507.133,1969.1184 -15665,19288,34851,34852,-9,-9,1,1,44,0,3,0,3,3,-9,0,3,7.2374625,7.1890569,0,21,5,87.381248,0,3,3,2019,15,5,40,55,1,5,0,5.1407771,5.1407771,0,0,0,0,0,1,1,0,0,0,48,51,54.63,45.17,5,1,1,0,0,9,6,2,1,1357,272010.84,0,92852.477,75507.133,1969.1184 -15665,19288,34852,34851,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,10,-5,-94.016785,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.63,45.17,48,51,8.333333333333334,4,5,0,0,0,6,2,1,1357,272010.84,0,92852.477,75507.133,1969.1184 -15666,19289,34853,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.4093437,8.1927843,0,0,0,-1097.177,0,2,2,2019,15,3,42,40,1,3,0,11.103861,11.103861,0,0,0,0,0,0,0,0,0,0,49.69,52.99,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,4445,-214840.14,-55571.035,0,0,1388.984 -15667,19290,34854,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6617727,8.4177837,0,0,0,-1014.5513,0,3,3,2019,12,2,40,40,1,2,0,12.565049,12.565049,0,0,0,0,0,0,0,0,0,0,43.07,54.56,-9,-9,5,1,1,0,0,12,13,4,1,1127,1240829.5,1079173,247234.39,91513.93,1810.8914 -15668,19291,34855,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.7883282,7.8791685,0,0,0,-1013.4539,0,-9,-9,2019,10,0,38,42,1,0,0,7.5830059,7.5830059,0,0,0,0,0,0,0,0,0,0,60.7,39.78,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,763,595089.19,-110837.91,406739.19,56739.711,1160.9958 -15668,19292,34856,-9,34855,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4234514,7.9596243,0,0,0,-900.97302,0,1,-9,2019,10,0,38,37,1,1,1,9.7898073,9.7898073,0,0,0,0,0,0,0,0,1.4474245,0,49,58,-9,-9,7,4,2,0,0,1,6,4,1,249,-64477.547,27116.365,0,0,1518.7789 -15669,19293,34857,34858,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,8.8557911,8.9664917,60,0,-24.246773,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,55.685543,0,42,1,1,0,8.3729401,9.0342712,44.17,39.26,24.59,44.57,8.333333333333334,1,1,0,0,0,6,5,1,790.5,1742532.5,976296.38,598110.94,0,6139.3564 -15669,19293,34858,34857,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,0,0,60,0,112.70098,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,7.2147441,3.6764452,56.471207,0,1,1,0,5.4195237,0,24.59,44.57,44.17,39.26,6.666666666666667,1,1,0,0,0,6,5,1,790.5,1742532.5,976296.38,598110.94,0,6139.3564 -15670,19294,34859,34860,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,0,0,54,0,0,0,3,1,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,71.5,1,1,0,0,0,54.05,49.74,53.69,27.18,5,1,1,0,0,0,11,1,0,566.5,271526.47,0,250019.59,122502.08,1636.625 -15670,19294,34860,34859,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,54,0,0,0,3,-9,2019,10,0,0,0,4,0,0,0,0,1,0,5.6084571,0,0,1,1,0,0,0,53.69,27.18,54.05,49.74,8.333333333333334,1,1,0,1,0,11,1,0,566.5,271526.47,0,250019.59,122502.08,1636.625 -15671,19295,34861,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-956.78455,-9,2,2,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1.6500173,0,20.91,67.2,-9,-9,5,1,1,0,0,7,7,1,0,93,183938.67,56517.754,0,0,497.81406 -15672,19296,34862,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.7820506,7.9873133,0,0,0,-1027.6431,0,2,2,2019,25,10,60,60,1,10,0,5.0853291,5.0853291,0,0,0,0,0,1,1,0,0,0,20.23,65.13,-9,-9,1.666666666666667,1,1,0,1,7,9,3,0,3098,-61392.77,-32491.482,0,0,1122.0841 -15673,19297,34863,34866,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.3330107,8.3155804,0,1,-2,17.22924,-9,1,1,2019,21,9,30,0,1,9,0,18.158298,18.158298,0,0,0,0,0,1,1,0,3.0717702,0,33.49,64.26000000000001,54.2,57.49,6.666666666666667,1,1,0,0,11,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 -15673,19297,34864,-9,34863,34866,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.64587,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 -15673,19297,34865,-9,34863,34866,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.13849,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 -15673,19297,34866,34863,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.5792313,8.7704802,0,1,2,20.363956,-9,2,3,2019,9,0,40,0,1,0,0,15.259734,15.259734,0,0,0,0,0,1,1,0,2.4561791,0,54.2,57.49,33.49,64.26000000000001,6.666666666666667,1,1,0,0,11,7,5,1,889.75,633705.13,204071.78,596932.88,204426.2,4796.2378 -15674,19298,34867,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,8.2357874,8.3899899,6.197041,0,0,-1108.7808,0,3,3,2019,9,0,38,39,1,0,0,10.54441,10.54441,0,0,0,0,0,1,1,0,1.1942111,6.2974453,57.31,50.61,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,752,460973.19,499440.31,231854.52,27560.826,3093.1206 -15675,19299,34868,34869,-9,-9,1,0,49,2,4,0,3,3,-9,0,5,6.6349463,6.8001022,0,7,-7,52.809628,0,3,3,2019,14,2,10,10,1,2,0,6.6001458,6.6001458,0,0,0,0,0,1,1,0,0,0,39.61,50.88,40.92,47.35,8.333333333333334,2,3,0,0,5,4,2,1,1479.5,200546.69,24864.336,219960.86,95257.297,1815.4138 -15675,19299,34869,34868,-9,-9,1,1,56,2,4,0,3,3,-9,0,4,8.0942163,7.8559341,0,33,7,-120.87376,0,3,3,2019,15,3,30,30,1,3,0,10.295511,10.295511,0,0,0,0,0,1,1,0,0,0,40.92,47.35,39.61,50.88,10,2,3,0,0,10,4,2,1,1479.5,200546.69,24864.336,219960.86,95257.297,1815.4138 -15675,19300,34870,-9,34873,34874,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1106.7848,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 -15675,19300,34871,-9,34873,34874,1,0,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.6306,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 -15675,19300,34872,-9,34873,34874,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-969.25659,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 -15675,19300,34873,34874,-9,-9,1,0,31,2,4,0,1,1,-9,0,4,0,0,0,7,0,42.455475,0,3,3,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,3.9388626,0,42.42,39.79,48.14,48.19,8.333333333333334,2,3,0,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 -15675,19300,34874,34873,34868,34869,1,1,31,2,4,0,1,1,-9,0,4,8.6765871,8.8514652,0,7,0,43.601036,0,3,3,2019,11,0,41,41,1,0,0,14.877174,14.877174,0,0,0,0,0,1,1,0,0,0,48.14,48.19,42.42,39.79,10,2,3,0,0,8,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 -15675,19300,34875,-9,34873,34874,1,0,5,2,4,1,3,0,-9,0,4,0,0,0,0,0,-857.84161,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,238.16667,51852.695,-17322.248,0,0,2851.064 -15675,19301,34876,-9,34868,34869,1,1,27,2,4,0,1,1,-9,0,5,7.8867192,7.8428936,0,0,0,-996.80847,-9,3,3,2019,11,1,37,0,1,1,1,7.2821746,7.2821746,0,0,0,0,0,1,1,0,0,0,38.76,55.45,-9,-9,10,2,3,0,0,6,4,3,1,702,15541.168,8807.0459,0,0,1581.0198 -15675,19302,34877,-9,34868,34869,1,1,25,2,4,0,2,2,-9,0,5,7.5194974,7.182116,0,0,0,-1233.3988,0,3,3,2019,9,0,20,20,1,0,1,9.7932205,9.7932205,0,0,0,0,0,1,1,0,4.5613613,0,48.96,56.3,-9,-9,10,2,3,0,0,2,4,3,1,495,660919.56,9520.1387,0,0,548.75726 -15676,19303,34878,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.9823,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.91,35.36,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,351,29055.393,0,0,0,458.71115 -15677,19304,34879,34880,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.0037799,6.9580359,0,7,4,-103.97248,0,3,3,2019,6,0,40,35,1,0,0,4.1613898,4.1613898,0,0,0,0,0,0,0,0,0,0,54.96,53.17,47.66,52.33,10,1,1,0,0,8,1,5,1,953.5,702244.38,242205.56,284942.22,70408.359,3931.991 -15677,19304,34880,34879,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,9.2034655,9.0758743,0,7,-4,7.3511405,0,3,2,2019,15,4,50,46,1,4,0,22.440401,22.440401,0,0,0,0,0,0,0,0,0,0,47.66,52.33,54.96,53.17,6.666666666666667,1,1,0,0,8,1,5,1,953.5,702244.38,242205.56,284942.22,70408.359,3931.991 -15678,19305,34881,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1029.4337,0,-9,-9,2019,16,5,0,37,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,1.666666666666667,1,1,1,0,9,11,1,1,1164,736998.69,9061.0605,223911.09,0,640.6311 -15679,19306,34882,34883,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,5.7238669,5.7933388,7,2,.047423523,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.462811,51.41,34.89,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,1,688,58961.332,56586.75,130988.08,0,1485.9738 -15679,19306,34883,34882,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.4994712,5.5667615,7,-2,149.64441,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5949631,5.6553869,54.2,57.49,51.41,34.89,1.666666666666667,1,1,0,0,0,2,2,1,688,58961.332,56586.75,130988.08,0,1485.9738 -15680,19307,34884,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,7.0054569,6.9392223,0,0,-929.43579,0,3,3,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,1.967419,7.3507972,40.35,21.36,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,571,282153.59,116261.48,155216.2,0,1305.5861 -15681,19308,34885,34886,-9,-9,1,0,20,1,1,0,2,2,-9,0,4,7.2847977,7.0689654,0,1,-1,-72.641518,0,-9,-9,2019,9,0,19,0,1,0,0,7.9003077,7.9003077,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.11,54.04,8.333333333333334,1,1,0,0,3,2,3,0,755.33331,102346.73,0,0,0,1811.8911 -15681,19308,34886,34885,-9,-9,1,1,21,1,1,0,2,2,-9,0,4,7.3988152,7.6775503,0,1,1,49.644794,0,-9,-9,2019,19,7,48,44,1,7,0,4.3581486,4.3581486,0,0,0,0,0,1,1,0,0,0,50.11,54.04,57.16,56.15,1.666666666666667,1,1,0,0,6,2,3,0,755.33331,102346.73,0,0,0,1811.8911 -15681,19308,34887,-9,34885,34886,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.8907,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,755.33331,102346.73,0,0,0,1811.8911 -15682,19309,34888,-9,34891,34889,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-894.25391,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 -15682,19309,34889,34891,-9,-9,1,1,43,0,3,0,2,2,-9,0,2,7.8745108,7.8396163,0,10,7,-5.7992997,0,3,3,2019,11,1,38,38,1,1,0,7.7928576,7.7928576,0,0,0,0,0,1,1,0,0,0,43.79,47.75,45.18,54.77,5,1,1,0,0,9,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 -15682,19309,34890,-9,34891,34889,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.87189,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 -15682,19309,34891,34889,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,0,4.7646403,4.4120035,10,-7,-78.558777,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,4.8730769,0,45.18,54.77,43.79,47.75,8.333333333333334,1,1,0,0,4,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 -15682,19309,34892,-9,34891,34889,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0854,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,2,1,811.20001,67965.711,99256.461,93078.953,59459.953,1935.9493 -15683,19310,34893,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.3133426,7.2777963,0,0,0,-976.48376,0,-9,-9,2019,21,7,22,22,1,7,0,6.553565,6.553565,0,0,0,0,0,1,0,1,0,0,37.13,55.9,-9,-9,8.333333333333334,1,1,0,0,7,12,2,0,778.66669,228568.94,61883.211,0,0,1713.3938 -15683,19310,34894,-9,34893,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.9391,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,778.66669,228568.94,61883.211,0,0,1713.3938 -15683,19310,34895,-9,34893,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-903.12158,-9,2,-9,2019,20,8,0,0,2,8,0,0,0,0,0,0,0,0,1,0,1,0,0,23.13,65.14,-9,-9,5,1,1,0,0,0,12,2,0,778.66669,228568.94,61883.211,0,0,1713.3938 -15684,19311,34896,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,9.0560799,9.0105896,0,0,0,-887.18579,0,3,-9,2019,10,0,40,43,1,0,0,21.884956,21.884956,0,0,0,0,0,0,0,0,0,0,55.21,43.87,-9,-9,8.333333333333334,1,1,0,1,9,9,5,1,361,1164646.8,803074.38,200666.08,17241.605,2632.636 -15685,19312,34897,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1052.4517,0,-9,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.94,58.01,-9,-9,6.666666666666667,1,1,1,1,3,1,1,0,26,-31267.383,0,0,0,462.41104 -15686,19313,34898,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.4465017,6.2561049,0,0,-1098.4415,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.6284683,6.3307276,57.33,53.46,-9,-9,10,1,1,0,0,5,10,2,1,558,158746.23,-9307.0391,140009.97,0,1316.5852 -15687,19314,34899,-9,34901,-9,1,0,19,0,0,0,2,2,-9,0,3,8.0101414,7.6526742,0,0,0,-1069.0721,0,1,-9,2019,12,0,40,0,1,0,1,9.447629,9.447629,0,0,0,0,0,0,0,0,0,0,28.14,58.58,-9,-9,3.333333333333333,1,1,0,0,11,7,4,1,1072,0,0,0,0,1315.8928 -15687,19315,34900,34901,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.8885031,7.8180699,0,3,2,51.220421,0,-9,-9,2019,10,0,35,35,1,0,0,7.0838079,7.0838079,0,0,0,0,0,0,0,0,8.1386232,0,54.2,57.49,62.27,48.47,8.333333333333334,1,1,0,0,13,7,5,1,1606,1406836.8,1124618.5,577305.88,0,4845.2021 -15687,19315,34901,34900,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.1039724,8.8291321,0,3,-2,-5.0799484,0,2,2,2019,4,0,24,12,1,0,0,46.852291,46.852291,0,0,0,0,0,0,0,0,0,0,62.27,48.47,54.2,57.49,10,1,1,0,0,12,7,5,1,1606,1406836.8,1124618.5,577305.88,0,4845.2021 -15688,19316,34902,34903,-9,-9,1,1,50,0,0,0,3,3,-9,1,3,7.8693271,7.818459,0,26,0,137.37958,-9,3,-9,2019,10,1,70,0,1,1,0,3.3141742,3.3141742,0,0,0,0,0,1,1,0,0,0,44.79,55.04,34.4,28.99,3.333333333333333,1,1,0,0,11,11,3,1,1027,973300.25,641398.88,156138.09,0,863.10864 -15688,19316,34903,34902,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,26,9,80.18708,0,-9,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,34.4,28.99,44.79,55.04,1.666666666666667,1,1,0,1,7,11,3,1,1027,973300.25,641398.88,156138.09,0,863.10864 -15689,19317,34904,-9,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-926.94733,0,3,3,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,42,1,1,0,0,0,33.73,21.25,-9,-9,5,1,1,0,0,0,5,1,0,401,272182.28,0,0,0,2883.1265 -15690,19318,34905,34906,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.8499079,5.8893852,7,-1,85.611893,0,3,2,2019,8,0,0,35,4,0,0,0,0,0,0,0,0,7,1,1,0,3.2181823,6.1573887,54.2,57.49,39.96,49.24,1.666666666666667,1,1,0,0,8,2,2,1,825,-81371.539,109137.47,0,0,1462.7581 -15690,19318,34906,34905,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.2049637,4.6164637,7,1,-60.2854,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6288509,39.96,49.24,54.2,57.49,8.333333333333334,1,1,0,0,5,2,2,1,825,-81371.539,109137.47,0,0,1462.7581 -15691,19319,34907,34908,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.5100751,8.082036,4,-3,-98.446686,0,-9,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.3644495,8.0429773,51.83,57.2,52,45,8.333333333333334,1,1,0,0,0,9,3,1,362.5,799056.63,511065.66,473481.19,0,2359.7012 -15691,19319,34908,34907,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,24,3,-40.535084,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,51.83,57.2,8,1,1,0,0,0,9,3,1,362.5,799056.63,511065.66,473481.19,0,2359.7012 -15692,19320,34909,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,8.131896,8.05268,0,0,0,-919.77722,0,2,2,2019,24,11,38,0,1,11,0,11.145908,11.145908,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,0,8,5,4,0,212,-242807.58,0,0,0,965.72406 -15693,19321,34910,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.3763332,5.3924732,0,0,-994.58362,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,8.8334322,0,0,1,1,0,0,5.9355354,39.32,35.87,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,2323,23212.006,61856,170079.66,0,771.68408 -15694,19322,34911,34912,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.7663374,7.7415128,0,21,-2,29.021873,0,-9,-9,2019,11,0,8,32,1,0,0,31.556929,31.556929,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,2,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 -15694,19322,34912,34911,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.502511,8.4348679,0,21,2,48.822624,0,-9,-9,2019,6,0,49,50,1,0,0,11.384412,11.384412,0,0,0,0,0,1,1,0,4.1932688,0,57.16,56.15,54.79,55.86,10,1,1,0,0,9,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 -15694,19322,34913,-9,34911,34912,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.5576,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 -15694,19322,34914,-9,34911,34912,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.82465,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,707.5,109835.16,-504.05518,0,0,3282.187 -15695,19323,34915,34916,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,3.6964087,3.529047,23,5,30.335016,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.4636769,3.5149848,56.94,49.53,65.07000000000001,41.45,10,1,1,0,0,0,9,3,1,1297,636580.13,883.20801,0,0,2780.2432 -15695,19323,34916,34915,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.0878611,8.4770765,23,-5,-53.924915,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0428891,8.3187923,65.07000000000001,41.45,56.94,49.53,10,1,1,0,0,0,9,3,1,1297,636580.13,883.20801,0,0,2780.2432 -15696,19324,34917,34918,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,8,0,-69.082512,0,-9,-9,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,120,1,0,1,0,0,33.85,33.66,56.07,49.95,1.666666666666667,1,1,0,1,2,9,2,1,1012.5,318085,324978.19,282941.5,0,1455.5488 -15696,19324,34918,34917,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.5990844,7.7031527,8,0,1.9340873,0,3,2,2019,16,6,0,0,4,6,0,0,0,1,123.42908,128.29875,1175.3906,0,1,0,1,5.5797892,7.5104985,56.07,49.95,33.85,33.66,1.666666666666667,1,1,0,0,7,9,2,1,1012.5,318085,324978.19,282941.5,0,1455.5488 -15697,19325,34919,34920,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-1,0,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.5566845,0,57.16,56.15,57.33,53.46,10,1,1,0,0,5,13,1,1,312,362688.75,0,298058,0,1369.6792 -15697,19325,34920,34919,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,9,1,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.0568209,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,10,13,1,1,312,362688.75,0,298058,0,1369.6792 -15698,19326,34921,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.4627571,8.6848278,0,0,0,-988.1947,0,3,3,2019,13,1,37,43,1,1,0,13.31348,13.31348,0,0,0,0,0,1,1,0,4.2261734,0,58.34,36.97,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,442,620856.81,31280.645,231996.5,0,1851.0421 -15699,19327,34922,34923,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.5600672,10.08178,7.0595689,19,1,-89.911011,0,3,2,2019,7,0,30,40,1,0,0,50.434669,50.434669,0,0,0,0,0,0,0,0,7.5524697,7.233839,54.79,55.86,46.5,58.26,8.333333333333334,1,1,0,0,10,6,5,1,970,524484.25,435075.59,283494.31,0,10598.59 -15699,19327,34923,34922,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,9.4858036,9.532649,0,19,-1,27.936169,0,2,1,2019,9,0,50,52,1,0,0,37.183346,37.183346,0,0,0,0,0,0,0,0,0,0,46.5,58.26,54.79,55.86,5,1,1,0,0,11,6,5,1,970,524484.25,435075.59,283494.31,0,10598.59 -15700,19328,34924,-9,34925,34926,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.0584,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,5,1,804.66669,475308.53,463576.91,119257.05,86598.664,5511.9526 -15700,19328,34925,34926,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.9483757,9.2404566,0,11,-6,40.79842,0,2,2,2019,11,1,37,48,1,1,0,23.079248,23.079248,0,0,0,0,0,1,1,0,.18589061,0,44.02,60.7,51,56,8.333333333333334,1,1,0,0,9,4,5,1,804.66669,475308.53,463576.91,119257.05,86598.664,5511.9526 -15700,19328,34926,34925,-9,-9,1,1,42,1,1,0,2,2,-9,0,4,8.9679756,8.9574862,0,11,6,6.3695335,0,2,3,2019,9,0,37,42,1,1,0,14.413602,14.413602,0,0,0,0,0,1,1,0,0,0,51,56,44.02,60.7,8,1,1,0,0,7,4,5,1,804.66669,475308.53,463576.91,119257.05,86598.664,5511.9526 -15701,19329,34927,-9,-9,-9,1,0,22,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.0202,0,-9,-9,2019,18,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,18.57,40.53,-9,-9,1.666666666666667,1,1,0,0,1,6,1,0,511,62899.707,0,0,0,1781.3262 -15702,19330,34928,34929,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.4198351,7.3495474,17,7,-17.874113,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8040786,7.2292609,54.1,59.11,59.12,44.49,10,1,1,0,0,6,4,5,1,712.5,2730415.8,1932502,623054.63,348506.53,8642.8877 -15702,19330,34929,34928,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.840539,9.6029882,8.7554455,17,-7,164.10623,0,-9,-9,2019,6,0,20,37,1,0,0,49.105682,49.105682,0,0,0,0,2,1,1,0,0,9.1527519,59.12,44.49,54.1,59.11,10,1,1,0,0,9,4,5,1,712.5,2730415.8,1932502,623054.63,348506.53,8642.8877 -15703,19331,34930,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.8195152,7.90521,0,0,-1017.7716,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,19.394384,0,0,1,1,0,0,8.0126362,59.16,11.86,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,797,627864.5,163043.39,228033.59,0,1537.2076 -15704,19332,34931,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,9.2609787,9.1455479,0,0,0,-972.54712,0,2,2,2019,12,1,55,50,1,1,0,21.999855,21.999855,0,0,0,0,0,0,0,0,3.332346,0,43.03,53.23,-9,-9,6.666666666666667,3,4,0,0,10,8,5,0,371,415957.06,-31514.975,0,0,2905.5098 -15705,19333,34932,34933,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.7975063,8.5212154,41,4,-61.762402,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9765081,62.25,48.33,61.26,51.57,10,1,1,0,0,0,10,5,1,960,1455240.3,730131,234792.23,0,3542.5093 -15705,19333,34933,34932,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.2505207,7.3083868,41,-4,-86.27401,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,3.7883129,7.3779497,61.26,51.57,62.25,48.33,10,1,1,0,0,0,10,5,1,960,1455240.3,730131,234792.23,0,3542.5093 -15706,19334,34934,34935,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9142895,8.9334145,0,31,6,-75.79303,0,-9,2,2019,15,4,45,48,1,4,0,18.886803,18.886803,0,0,0,0,0,0,0,0,0,0,46.9,56.66,45.91,59.89,8.333333333333334,1,1,0,0,12,4,5,1,308.5,1890696.9,626829.88,537177.88,0,4039.5637 -15706,19334,34935,34934,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6441708,8.5048265,0,32,-6,16.225256,-9,2,2,2019,18,6,37,0,1,6,0,16.313553,16.313553,0,0,0,0,27,0,0,0,0,0,45.91,59.89,46.9,56.66,5,1,1,0,0,12,4,5,1,308.5,1890696.9,626829.88,537177.88,0,4039.5637 -15706,19335,34936,-9,34935,34934,1,1,26,0,0,0,1,1,-9,0,5,8.1431761,8.2627354,0,0,0,-899.23022,-9,1,2,2019,8,0,40,0,1,0,1,7.4209142,7.4209142,0,0,0,0,0,0,0,0,0,0,55.68,54.24,-9,-9,5,1,1,0,0,4,4,4,1,602,-114129.66,0,0,0,935.77533 -15706,19336,34937,-9,34935,34934,1,0,18,0,0,1,1,0,-9,0,4,0,0,0,0,0,-981.16577,-9,1,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,36.51,61.56,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,610,-32121.879,0,0,0,0 -15707,19337,34938,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.3305836,9.7989883,0,0,0,-896.297,0,2,2,2019,8,0,38,40,1,0,0,38.560783,38.560783,0,0,0,0,0,1,1,0,1.8679988,0,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,918,1065213.8,983573.69,149875.83,115193.73,4002.8147 -15708,19338,34939,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.4018717,6.2113633,0,0,-967.38019,-9,2,3,2019,10,1,0,0,4,1,0,0,0,1,0,9.4167013,0,7,1,1,0,.88083583,6.2839441,64,27.54,-9,-9,10,1,1,0,0,0,11,2,0,384,644477.69,8466.2568,0,0,2218.3599 -15709,19339,34940,34941,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.0607386,8.0406342,35,12,-132.66631,0,3,3,2019,17,5,0,0,4,5,0,0,0,1,0,0,0,0,1,1,0,0,8.2083569,39.59,26.56,40.77,61.04,5,1,1,0,0,6,4,4,1,232.5,649307.5,437015.47,128358.78,0,2797.9893 -15709,19339,34941,34940,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7791033,7.7848406,0,35,-12,-26.458696,0,2,1,2019,15,4,28,26,1,4,0,9.158659,9.158659,0,0,0,0,71.5,1,1,0,3.5203264,0,40.77,61.04,39.59,26.56,3.333333333333333,1,1,0,0,13,4,4,1,232.5,649307.5,437015.47,128358.78,0,2797.9893 -15710,19340,34942,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1924467,8.1283827,0,0,0,-935.3056,0,2,2,2019,13,2,40,44,1,2,0,8.7206898,8.7206898,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,144,309865.16,92337.453,0,0,1312.8328 -15711,19341,34943,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.5921469,8.588871,0,0,0,-1021.7723,0,2,3,2019,11,0,31,96,1,0,0,21.099567,21.099567,0,0,0,0,7,1,1,0,6.9369946,0,19.92,66.48999999999999,-9,-9,0,1,1,0,0,9,12,5,1,749,573794.88,351244,238027.59,0,3159.4053 -15712,19342,34944,34945,-9,-9,1,0,36,0,1,0,1,1,-9,0,5,8.4259357,8.7194004,0,4,0,-44.311489,0,-9,-9,2019,10,0,37,37,1,0,0,15.584764,15.584764,0,0,0,0,0,1,1,0,0,0,57.63,56.14,54.1,59.11,10,1,1,0,0,6,2,5,1,650.66669,51704.117,78037.242,0,0,3728.8765 -15712,19342,34945,34944,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,8.1158237,8.1618977,0,4,0,-28.708836,0,2,2,2019,7,0,37,37,1,0,0,12.388575,12.388575,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.63,56.14,8.333333333333334,1,1,0,0,9,2,5,1,650.66669,51704.117,78037.242,0,0,3728.8765 -15712,19342,34946,-9,34944,34945,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1019.3008,-9,1,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,5,1,650.66669,51704.117,78037.242,0,0,3728.8765 -15713,19343,34947,34948,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4853516,8.9296761,8.1277504,32,0,138.2825,0,2,3,2019,7,0,19,12,1,0,0,26.419035,26.419035,0,0,0,0,2,0,0,0,2.6271975,7.6889734,58.15,52.91,51.95,53.02,8.333333333333334,1,1,0,0,12,5,5,0,188.5,626364.38,253201.97,485212.5,27659.68,5243.3184 -15713,19343,34948,34947,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.4044266,8.2691298,0,32,0,108.84356,0,2,2,2019,8,1,50,0,1,1,0,8.4058809,8.4058809,0,0,0,0,0,0,0,0,7.4525166,0,51.95,53.02,58.15,52.91,8.333333333333334,1,1,0,0,9,5,5,0,188.5,626364.38,253201.97,485212.5,27659.68,5243.3184 -15713,19344,34949,-9,34948,34947,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1040.6775,1,1,1,2019,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,39.77,47.12,-9,-9,6.666666666666667,1,1,0,0,3,5,1,0,1633,0,0,0,0,0 -15714,19345,34950,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.4895391,8.687418,0,0,0,-935.18457,0,2,-9,2019,11,1,38,45,1,1,0,13.806039,13.806039,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,3,4,0,1,9,8,5,0,219,245480.44,0,0,0,1752.3188 -15715,19346,34951,34952,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,8.0547152,7.6887345,31,10,-76.625565,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.3635988,7.9172153,42.61,54.85,43.43,54.3,8.333333333333334,1,1,0,0,8,9,3,1,328.5,1483801.9,642033.5,439648.5,0,2567.1416 -15715,19346,34952,34951,-9,-9,1,1,60,0,0,0,2,2,-9,1,4,5.6261649,5.5520978,0,31,-10,18.56822,0,-9,-9,2019,12,0,12,12,1,0,0,2.6401908,2.6401908,0,0,0,0,42,1,1,0,1.1597425,0,43.43,54.3,42.61,54.85,8.333333333333334,1,1,0,0,10,9,3,1,328.5,1483801.9,642033.5,439648.5,0,2567.1416 -15715,19347,34953,-9,34951,34952,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-887.55713,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,9,1,1,190,0,0,0,0,0 -15715,19348,34954,-9,34951,34952,1,1,29,0,0,0,3,3,-9,0,4,0,0,0,0,0,-977.68329,0,1,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,3.8743541,0,49,58,-9,-9,7,1,1,1,0,0,9,1,1,577,-415853.66,0,0,0,348.26331 -15716,19349,34955,34956,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7282882,7.8262162,0,48,-6,-45.906548,0,3,3,2019,11,0,30,35,1,2,0,9.762372,9.762372,0,0,0,0,0,1,1,0,0,0,50,47,48.21,40,7,2,3,0,0,1,5,3,1,1088.5,371747.22,410931.34,104300.84,19298.457,2827.2046 -15716,19349,34956,34955,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.0061202,6.0554886,48,6,-22.644749,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3125815,5.7557292,48.21,40,50,47,8.333333333333334,2,3,0,0,6,5,3,1,1088.5,371747.22,410931.34,104300.84,19298.457,2827.2046 -15717,19350,34957,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1030.8848,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,.73409516,4.9078579,28.116938,0,1,1,0,4.3605914,0,39.58,37.65,-9,-9,3.333333333333333,1,1,0,0,0,6,1,1,739,135157.78,0,0,0,1145.5721 -15718,19351,34958,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,9.1409149,8.7862883,0,0,0,-955.77991,0,-9,-9,2019,10,2,35,35,1,2,0,23.293238,23.293238,0,0,0,0,0,0,0,0,.49943376,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,794,702906.06,97285,249648.13,120673.57,3334.3076 -15719,19352,34959,-9,-9,-9,1,0,47,1,0,0,1,1,-9,0,3,8.1421127,8.2368755,0,0,0,-955.31714,0,3,-9,2019,5,0,49,36,1,0,0,9.7637453,9.7637453,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,8,11,4,0,482,66788.367,-40857.836,319078.5,111037.84,2090.7583 -15720,19353,34960,34961,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,48,-2,3.3089938,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,0,0,40.98,52.59,37.1,16.85,1.666666666666667,1,1,0,0,0,10,2,1,1622.5,143493.39,36050.914,0,0,939.47723 -15720,19353,34961,34960,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.7923641,6.2486205,48,2,90.706009,0,3,3,2019,20,7,0,0,4,7,0,0,0,1,0,37.801125,0,0,1,1,0,7.4423132,6.4433393,37.1,16.85,40.98,52.59,5,1,1,0,0,9,10,2,1,1622.5,143493.39,36050.914,0,0,939.47723 -15721,19354,34962,34963,-9,-9,1,1,57,0,0,0,1,1,1,0,5,6.7460003,6.7444286,0,34,-5,14.093644,-9,-9,1,2019,6,0,10,0,1,0,0,9.0705662,9.0705662,0,0,0,0,0,1,1,0,0,0,57.65,56.13,46.53,47.58,10,1,1,0,0,2,8,3,0,491.5,1670983.4,434500.44,557469.13,0,1310.1055 -15721,19354,34963,34962,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.3366494,7.4162602,0,34,5,-70.80883,0,2,2,2019,6,0,30,7,1,0,0,6.8540044,6.8540044,0,0,0,.46102312,0,1,1,0,0,0,46.53,47.58,57.65,56.13,6.666666666666667,2,3,0,0,6,8,3,0,491.5,1670983.4,434500.44,557469.13,0,1310.1055 -15721,19355,34964,-9,34963,34962,1,1,28,0,0,0,1,1,-9,0,3,7.9816942,7.9527321,0,0,0,-1048.0164,0,2,1,2019,18,7,38,35,1,7,1,7.9907508,7.9907508,0,0,0,0,0,1,1,0,0,0,37.32,56,-9,-9,6.666666666666667,4,2,0,0,6,8,3,0,447,270290.09,-102582.84,0,0,1141.6516 -15722,19356,34965,-9,34967,34968,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1039.6011,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 -15722,19356,34966,-9,34967,34968,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1110.7683,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 -15722,19356,34967,34968,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,7.0261488,6.5936766,0,20,-3,115.66747,0,2,3,2019,6,0,40,40,1,0,0,3.4486206,3.4486206,0,0,0,0,0,1,1,0,0,0,54.63,58.83,56.68,51,8.333333333333334,2,3,0,0,10,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 -15722,19356,34968,34967,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.9406137,8.5600166,0,19,3,33.839481,0,-9,-9,2019,5,0,84,56,1,0,0,9.9133339,9.9133339,0,0,0,0,0,1,1,0,1.6805924,0,56.68,51,54.63,58.83,8.333333333333334,1,1,0,0,10,8,4,1,1384.75,338005.81,122240.16,241699.81,143617.73,3318.5364 -15723,19357,34969,34971,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.0379057,9.0289783,0,7,-4,45.607208,0,-9,-9,2019,9,1,40,50,1,1,0,19.170835,19.170835,0,0,0,0,0,0,0,0,2.1348436,0,50.5,52.77,55.19,54.26,6.666666666666667,1,1,0,0,10,5,5,0,896,519035.13,382500.28,284661.81,110209.01,3975.2644 -15723,19357,34970,-9,34971,34969,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1018.7968,-9,2,2,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,1.666666666666667,1,1,0,0,0,5,5,0,896,519035.13,382500.28,284661.81,110209.01,3975.2644 -15723,19357,34971,34969,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.409256,7.6440887,0,20,4,62.863098,0,2,2,2019,5,0,30,30,1,0,0,6.4560499,6.4560499,0,0,0,0,0,0,0,0,0,0,55.19,54.26,50.5,52.77,10,1,1,0,0,10,5,5,0,896,519035.13,382500.28,284661.81,110209.01,3975.2644 -15724,19358,34972,34973,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,8.6420527,8.7800703,0,1,2,13.440005,0,3,3,2019,10,2,37,38,1,2,0,16.741926,16.741926,0,0,0,0,0,0,0,0,7.200151,0,39.09,55.3,54.79,55.86,3.333333333333333,1,1,0,1,5,5,5,1,1142,124319.6,30120.375,231594.31,240986.81,3422.1309 -15724,19358,34973,34972,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3711643,8.1714125,0,1,-2,55.713818,-9,-9,-9,2019,10,1,41,0,1,1,0,9.0437984,9.0437984,0,0,0,0,0,0,0,0,0,0,54.79,55.86,39.09,55.3,8.333333333333334,1,1,0,0,2,5,5,1,1142,124319.6,30120.375,231594.31,240986.81,3422.1309 -15725,19359,34974,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,7.576582,7.5664215,5.5067482,0,0,-1039.2806,0,3,3,2019,13,2,25,25,1,2,0,7.2106509,7.2106509,0,0,0,0,0,1,1,0,0,5.4724441,44.74,24.44,-9,-9,6.666666666666667,1,1,0,1,8,6,3,0,379,47219.672,0,127164.53,0,1469.427 -15726,19360,34975,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,8.5138464,8.63976,4.6402712,0,0,-928.05646,0,3,2,2019,7,0,40,50,1,0,0,14.533998,14.533998,0,0,0,0,2,1,1,0,7.2560964,0,50.59,16.2,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,269,644427.13,641933,265193.97,103724.38,3162.436 -15726,19360,34976,-9,34975,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.95331,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,269,644427.13,641933,265193.97,103724.38,3162.436 -15726,19361,34977,-9,34975,-9,1,0,23,0,1,0,1,1,-9,0,4,8.1044369,8.0906248,0,0,0,-1039.507,0,1,2,2019,9,0,45,40,1,0,1,7.9912901,7.9912901,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,633,153683.44,639.43176,0,0,1001.5186 -15727,19362,34978,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,7.091135,7.3064952,0,0,-1091.6896,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.6760979,7.2818637,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,876,0,0,0,0,295.82367 -15728,19363,34979,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,8.498127,8.6286545,0,0,-1043.5814,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6887603,8.345993,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,1007,604782,753559.19,80611.117,0,3073.2375 -15729,19364,34980,34981,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4863853,8.4605341,0,1,1,77.912193,0,-9,-9,2019,10,1,45,45,1,1,0,10.142196,10.142196,0,0,0,0,0,0,0,0,0,0,47.49,52.68,44.26,59.43,8.333333333333334,1,1,0,0,6,8,5,0,234.5,-218353.63,14804.519,200730,169360.78,3861.6387 -15729,19364,34981,34980,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3858995,8.9112072,0,1,-1,-7.6417036,-9,-9,-9,2019,10,1,45,0,1,1,0,17.604147,17.604147,0,0,0,0,7,0,0,0,0,0,44.26,59.43,47.49,52.68,8.333333333333334,1,1,0,0,0,8,5,0,234.5,-218353.63,14804.519,200730,169360.78,3861.6387 -15730,19365,34982,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.9184442,6.9038372,0,0,-798.45593,-9,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.1428127,6.8632679,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,641,196820.83,54962.66,193063.23,0,1184.3934 -15731,19366,34983,34985,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.2328835,8.2750273,0,29,-1,127.15132,0,3,3,2019,8,0,30,30,1,0,0,12.716687,12.716687,0,0,0,0,0,1,1,0,4.1322384,0,54.2,57.49,51.71,59.93,8.333333333333334,1,1,0,0,12,13,3,1,599.33331,671763.75,323459.63,138177.84,0,1342.6902 -15731,19366,34984,-9,34985,34983,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.6833,-9,2,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.3,55.6,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,599.33331,671763.75,323459.63,138177.84,0,1342.6902 -15731,19366,34985,34983,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,29,1,-147.439,0,2,3,2019,4,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.71,59.93,54.2,57.49,8.333333333333334,1,1,0,0,8,13,3,1,599.33331,671763.75,323459.63,138177.84,0,1342.6902 -15731,19367,34986,-9,34985,34983,1,1,25,0,0,0,1,1,0,0,4,0,0,0,0,0,-1103.3265,-9,1,1,2019,10,0,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,735,-401175.09,0,0,0,333.20651 -15731,19368,34987,-9,34985,34983,1,0,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-921.69214,-9,2,1,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,2,1,5207,-194907.44,0,0,0,0 -15732,19369,34988,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1115.8448,0,-9,-9,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,7,1,1,0,0,0,28.37,22.33,-9,-9,0,1,1,0,1,6,6,1,0,209,315322.63,0,0,0,620.32831 -15732,19370,34989,-9,34988,-9,1,1,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1071.7031,0,3,-9,2019,21,9,0,0,3,9,1,0,0,0,0,0,0,7,1,1,0,0,0,42.79,19.61,-9,-9,1.666666666666667,1,1,0,1,4,6,1,0,818,-63367.938,0,0,0,310.65381 -15733,19371,34990,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.1535559,5.9097729,0,0,-980.35101,0,3,3,2019,10,0,0,0,4,1,0,0,0,1,5.9900494,4.7566996,66.615143,0,1,1,0,0,5.6188278,52,45,-9,-9,8,1,1,0,0,0,6,2,1,237,127557.52,197637.47,123112.88,0,1562.8207 -15734,19372,34991,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.8825436,5.7844172,0,0,-933.26062,-9,2,2,2019,10,0,0,0,4,1,0,0,0,1,28.505243,2.2917812,253.14061,0,1,1,0,.86934245,6.0950747,52,44,-9,-9,8,1,1,0,0,0,9,2,0,1257,547404.19,3985.0286,275267.97,0,297.52951 -15735,19373,34992,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.3384819,5.5490379,0,0,-1075.8401,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,5.7175031,5.7561483,38.32,55.43,-9,-9,3.333333333333333,1,1,0,1,9,12,2,1,659,211399.55,-43851.195,46111.305,0,1498.8102 -15735,19374,34993,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,6.8004279,6.7282763,0,0,0,-820.29559,0,-9,-9,2019,6,0,11,11,1,0,0,10.407123,10.407123,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,1282,432524.44,62620.34,496861.63,43660.125,-706.91736 -15736,19375,34994,34995,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.5177832,9.5573301,0,27,0,40.368176,0,2,3,2019,5,0,50,43,1,0,0,28.872355,28.872355,0,0,0,0,71.5,1,1,0,2.9353783,0,59.29,49.68,28.9,27.59,8.333333333333334,1,1,0,0,9,9,5,1,1354,3939846,2094308.3,1033041.5,0,4869.0317 -15736,19375,34995,34994,-9,-9,1,0,51,0,0,0,1,1,-9,1,1,0,5.4804139,5.7668653,27,0,-41.664536,0,3,3,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,1.5201929,5.4695678,28.9,27.59,59.29,49.68,3.333333333333333,1,1,0,0,0,9,5,1,1354,3939846,2094308.3,1033041.5,0,4869.0317 -15737,19376,34996,-9,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.3711643,7.4528151,0,0,0,-1043.4452,0,3,3,2019,9,0,60,50,1,0,0,2.5843997,2.5843997,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,4,2,1,1120,375650.47,-30046.021,255498.73,0,881.27271 -15737,19376,34997,-9,-9,34996,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.8063,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1120,375650.47,-30046.021,255498.73,0,881.27271 -15738,19377,34998,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.3716545,7.1064901,0,0,0,-1142.556,0,3,2,2019,12,1,16,16,1,1,0,7.2706995,7.2706995,0,0,0,0,0,1,1,0,0,0,37.61,56.99,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,536,89231.617,0,0,0,1531.924 -15738,19378,34999,-9,34998,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-823.50647,-9,3,-9,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,2,8,1,0,857,0,0,0,0,0 -15738,19379,35000,-9,34998,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1032.3297,-9,3,-9,2019,10,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,1,1,8,1,0,256,-335406.38,0,0,0,0 -15739,19380,35001,35002,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.584178,8.8520603,0,2,1,.024938587,0,2,2,2019,13,1,39,39,1,1,0,18.900015,18.900015,0,0,0,0,0,1,1,0,0,0,44.25,56.64,46.16,58.62,6.666666666666667,1,1,0,0,8,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 -15739,19380,35002,35001,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,5.7478914,6.6402736,5.6890731,2,-1,-7.286592,0,-9,-9,2019,11,0,5,5,1,0,0,8.5866318,8.5866318,0,0,0,0,0,1,1,0,5.9558291,0,46.16,58.62,44.25,56.64,8.333333333333334,1,1,0,0,8,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 -15739,19380,35003,-9,35002,35001,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.30792,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 -15739,19380,35004,-9,35002,35001,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.4287,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 -15739,19380,35005,-9,35002,35001,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-971.86615,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1567.2,495240.41,388332.41,87872.219,75522.07,3035.2505 -15740,19381,35006,35007,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.8240309,8.8580494,0,7,-5,57.252262,0,1,1,2019,8,0,40,41,1,0,0,16.163187,16.163187,0,0,0,0,0,0,0,0,0,0,57.33,53.46,26.16,61.11,8.333333333333334,1,1,0,0,10,12,5,1,1135,1238058.9,1378834.3,122436.69,0,3192.1079 -15740,19381,35007,35006,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.851491,8.0877829,0,7,5,50.882053,0,3,2,2019,19,7,26,29,1,7,0,10.267405,10.267405,0,0,0,0,7,0,0,0,4.4665499,0,26.16,61.11,57.33,53.46,5,1,1,0,0,8,12,5,1,1135,1238058.9,1378834.3,122436.69,0,3192.1079 -15741,19382,35008,-9,35009,35010,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-976.54657,-9,1,1,2019,10,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,53.52,-9,-9,8.333333333333334,2,3,0,0,0,7,5,1,1426,1969862.9,1140698.3,690225.06,36437.742,5488.8091 -15741,19382,35009,35010,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0799723,7.8679409,0,27,-4,1.3711356,0,3,1,2019,10,0,20,20,1,0,0,15.714612,15.714612,0,0,0,0,0,1,1,0,8.2086668,0,41.17,59.31,54,53,8.333333333333334,2,3,0,0,9,7,5,1,1426,1969862.9,1140698.3,690225.06,36437.742,5488.8091 -15741,19382,35010,35009,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.9916573,9.0254593,0,27,4,53.484291,0,3,1,2019,9,0,60,60,1,0,0,17.129469,17.129469,0,0,0,0,0,1,1,0,0,0,54,53,41.17,59.31,8,2,3,0,0,1,7,5,1,1426,1969862.9,1140698.3,690225.06,36437.742,5488.8091 -15742,19383,35011,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,5,0,0,0,0,0,-953.69098,-9,1,2,2019,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,43.04,62.95,-9,-9,8.333333333333334,1,1,1,0,4,2,1,1,62,385175.72,0,0,0,0 -15743,19384,35012,35013,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.7985239,8.4054632,0,10,2,-102.92051,0,2,2,2019,7,0,37,37,1,0,0,18.985992,18.985992,0,0,0,0,0,1,1,0,0,0,46.9,56.66,54.79,55.86,8.333333333333334,1,1,0,0,13,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 -15743,19384,35013,35012,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.4917574,8.287756,0,14,-2,-7.7708359,0,2,2,2019,4,0,40,37,1,0,0,15.134323,15.134323,0,0,0,0,0,1,1,0,0,0,54.79,55.86,46.9,56.66,8.333333333333334,1,1,0,0,7,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 -15743,19384,35014,-9,35013,35012,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.70331,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 -15743,19384,35015,-9,35013,35012,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-905.32794,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,1239,36014.258,50560.695,370794.38,229912.25,3770.3198 -15744,19385,35016,35017,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.7497525,8.2291279,0,8,1,-61.542904,0,2,2,2019,6,0,25,20,1,0,0,11.699809,11.699809,1,0,0,0,0,1,1,0,0,0,63.43,26.45,64.16,29.7,8.333333333333334,1,1,0,0,9,9,3,1,409.5,1183782,559762.88,416113.34,0,2637.1924 -15744,19385,35017,35016,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,8,-1,-92.63665,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,64.16,29.7,63.43,26.45,6.666666666666667,1,1,0,0,0,9,3,1,409.5,1183782,559762.88,416113.34,0,2637.1924 -15745,19386,35018,35019,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.0884705,7.1491966,0,6,-1,3.9762459,0,-9,-9,2019,20,8,20,20,1,8,0,7.4060793,7.4060793,0,0,0,0,0,0,0,0,0,0,37.92,53.03,57.16,56.15,5,1,1,0,0,3,11,4,1,419.5,495336.19,217031.52,207378.53,30220.068,2360.3323 -15745,19386,35019,35018,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.7443552,8.8111744,0,6,1,9.4970055,0,3,3,2019,10,0,60,72,1,0,0,8.9730043,8.9730043,0,0,0,0,0,0,0,0,0,0,57.16,56.15,37.92,53.03,8.333333333333334,1,1,0,0,7,11,4,1,419.5,495336.19,217031.52,207378.53,30220.068,2360.3323 -15745,19387,35020,-9,35018,-9,1,0,19,0,0,0,2,2,-9,0,5,7.0136976,7.0736856,0,0,0,-885.39276,-9,2,-9,2019,11,2,11,0,1,2,1,12.97424,12.97424,0,0,0,0,0,0,0,0,2.7924185,0,46.06,60.24,-9,-9,5,1,1,0,0,3,11,2,1,1928,-310455.22,0,0,0,447.79904 -15746,19388,35021,35022,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.3085141,6.349154,65,-2,22.379204,0,3,-9,2019,10,1,0,0,4,1,0,0,0,1,0,3.09782,0,0,1,1,0,0,6.2720222,58.68,20.49,58.49,25.92,6.666666666666667,1,1,0,0,0,6,3,1,159,752191.25,411934.06,191526.08,0,2197.0605 -15746,19388,35022,35021,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.6350622,7.5051632,65,2,-84.290901,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.5612931,58.49,25.92,58.68,20.49,6.666666666666667,1,1,0,0,0,6,3,1,159,752191.25,411934.06,191526.08,0,2197.0605 -15747,19389,35023,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.7744994,7.0414033,0,0,-1004.9952,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7506866,50.8,22.72,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,418,310220.81,47975.789,0,0,1284.7339 -15748,19390,35024,35025,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,0,0,0,17,-10,-93.514816,0,3,3,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,27,1,1,0,.9660477,0,32.7,53.97,70.29000000000001,42.14,10,1,1,0,0,0,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 -15748,19390,35025,35024,-9,-9,1,1,57,0,2,0,3,3,-9,0,5,8.1067533,8.0188932,0,17,10,-58.037163,0,-9,-9,2019,6,0,36,37,1,0,0,10.538925,10.538925,0,0,0,0,2,1,1,0,3.4369862,0,70.29000000000001,42.14,32.7,53.97,10,1,1,0,0,10,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 -15748,19390,35026,-9,35024,35025,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.66943,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 -15748,19390,35027,-9,35024,35025,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5567,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,814.5,690040.06,590673.63,193190.8,96993.977,1884.0493 -15749,19391,35028,-9,35030,35029,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1167.9076,0,2,3,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,-9,-9,5,1,1,1,0,0,2,1,0,225,-411119.78,0,0,0,256.46426 -15749,19392,35029,35030,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,3,5,-78.845894,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,46.19,41.03,27.89,18.61,5,1,1,0,0,0,2,2,0,1033,276075.13,-39918.102,125149.77,0,1406.6367 -15749,19392,35030,35029,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,6.4988589,6.6823072,0,3,-5,-14.824438,0,-9,-9,2019,30,11,10,0,1,11,0,9.8997622,9.8997622,0,0,0,0,5.48,1,1,0,0,0,27.89,18.61,46.19,41.03,0,1,1,0,0,1,2,2,0,1033,276075.13,-39918.102,125149.77,0,1406.6367 -15750,19393,35031,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.8269272,7.0419974,0,0,0,-973.95343,0,2,2,2019,12,0,12,18,1,0,0,9.8409138,9.8409138,0,0,0,0,0,0,0,0,3.9105139,0,57.56,54.55,-9,-9,5,1,1,0,0,7,9,2,0,548,149617.05,163969.89,0,0,430.82623 -15751,19394,35032,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.89996,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,5.1226482,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,287,92964.617,0,0,0,1354.7653 -15752,19395,35033,35034,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.9095802,8.5223055,0,7,2,-10.979971,0,3,3,2019,9,0,36,36,1,0,0,21.605728,21.605728,0,0,0,0,7,0,0,0,6.442472,0,55.2,43.52,54.37,54.8,6.666666666666667,1,1,0,0,9,13,5,1,1040,201983.47,75111.891,190857,61234.113,3315.0698 -15752,19395,35034,35033,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.6388273,7.624794,0,36,-2,170.31386,0,3,3,2019,11,0,20,20,1,0,0,12.804743,12.804743,0,0,0,0,14.5,0,0,0,0,0,54.37,54.8,55.2,43.52,8.333333333333334,1,1,0,0,9,13,5,1,1040,201983.47,75111.891,190857,61234.113,3315.0698 -15752,19396,35035,-9,35034,35033,1,0,27,0,0,0,2,2,-9,0,5,8.0824347,7.9625182,0,0,0,-992.22955,0,2,2,2019,12,0,35,35,1,0,1,9.2848148,9.2848148,0,0,0,0,0,0,0,0,0,0,41.42,61.13,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,205,81055.063,0,16409.295,23895.105,1438.6736 -15752,19397,35036,-9,35034,35033,1,0,22,0,0,0,1,1,1,0,5,6.3211699,6.7328873,0,0,0,-862.70538,-9,2,2,2019,20,8,12,0,1,8,1,7.9474826,7.9474826,0,0,0,0,0,0,0,0,0,0,40.9,65.02,-9,-9,8.333333333333334,1,1,0,0,7,13,2,1,349,-168091.38,0,0,0,-283.95422 -15753,19398,35037,-9,35044,35041,1,0,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-989.78625,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15753,19398,35038,-9,35044,35041,1,0,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-988.31561,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15753,19398,35039,-9,35044,35041,1,0,11,1,6,1,3,0,-9,0,5,0,0,0,0,0,-1036.645,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15753,19398,35040,-9,35044,35041,1,0,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-892.55286,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.16453175,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15753,19398,35041,35044,-9,-9,1,1,45,1,6,0,2,2,-9,0,3,7.2739434,7.4736075,0,7,15,31.61941,0,-9,-9,2019,7,0,24,35,1,0,0,7.9400945,7.9400945,0,0,0,0,0,1,1,0,0,0,48.35,56.59,44.08,52.57,8.333333333333334,3,4,0,0,6,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15753,19398,35042,-9,35044,35041,1,0,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1012.7203,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15753,19398,35043,-9,35044,35041,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-926.72424,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15753,19398,35044,35041,-9,-9,1,0,30,1,6,0,3,3,-9,0,3,0,0,0,7,-15,-114.31239,0,3,3,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,52.57,48.35,56.59,10,3,4,0,0,0,7,2,0,713.75,17665.703,0,0,0,2152.4915 -15754,19399,35045,35046,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.9202404,8.4162169,10,11,75.782578,0,3,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0472174,51.23,27.67,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,848.5,1797851.3,802701.13,833160.38,0,3553.6074 -15754,19399,35046,35045,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6802964,7.3281169,10,-11,81.791069,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,42,1,1,0,7.5206137,7.4781637,57.16,56.15,51.23,27.67,8.333333333333334,1,1,0,0,0,9,4,1,848.5,1797851.3,802701.13,833160.38,0,3553.6074 -15755,19400,35047,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,6.623826,6.5443006,0,0,-1035.8317,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,6.3791075,0,0,1,1,0,.079310134,6.7609706,57.86,18.07,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,115,392364.97,37054.73,200074.02,0,1485.9377 -15756,19401,35048,35049,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,8.1425676,8.3283606,0,9,2,-18.020535,0,2,2,2019,10,0,24,24,1,0,0,15.256264,15.256264,0,0,0,0,0,0,0,0,3.8613935,0,54.69,57.47,58.15,52.91,8.333333333333334,1,1,0,0,11,10,3,1,488.5,447792.25,180384.3,209154.88,0,1806.6072 -15756,19401,35049,35048,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,5.8859177,5.637948,0,9,-2,76.305061,0,2,3,2019,8,0,35,40,1,0,0,.91768587,.91768587,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.69,57.47,8.333333333333334,1,1,0,0,11,10,3,1,488.5,447792.25,180384.3,209154.88,0,1806.6072 -15757,19402,35050,35051,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,4.9029889,4.983592,53,-2,105.94379,0,3,3,2019,15,3,0,0,4,3,0,0,0,1,0,0,0,7,1,1,0,1.5495448,5.1848102,41.37,25.98,51.01,39.19,8.333333333333334,1,1,0,0,0,1,2,1,737.5,853375.13,381734.13,524613.75,0,1646.5027 -15757,19402,35051,35050,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.1829796,7.2519903,53,2,-152.6868,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.0652204,7.2460966,51.01,39.19,41.37,25.98,6.666666666666667,1,1,0,0,0,1,2,1,737.5,853375.13,381734.13,524613.75,0,1646.5027 -15758,19403,35052,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.2880812,8.1295071,0,0,0,-1015.0583,0,2,1,2019,11,0,32,33,1,0,0,13.299172,13.299172,0,0,0,0,0,1,1,0,1.392344,0,49.44,56.93,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,831.66669,120120.55,116472.48,99000.516,103638.71,2209.2039 -15758,19403,35053,-9,35052,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1055.7468,-9,1,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,4,3,1,831.66669,120120.55,116472.48,99000.516,103638.71,2209.2039 -15758,19403,35054,-9,35052,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.3816,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,6,-9,0,0,4,3,1,831.66669,120120.55,116472.48,99000.516,103638.71,2209.2039 -15759,19404,35055,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.8208513,6.0106058,0,0,-1061.3961,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.653172,50.49,44.11,-9,-9,10,1,1,0,0,0,2,2,1,800,-8868.8154,-25364.711,0,0,797.95563 -15760,19405,35056,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,7.6103792,7.8744287,0,0,-916.44434,0,3,3,2019,18,5,0,0,4,5,0,0,0,1,7.071506,22.334993,69.70697,0,1,1,0,3.5326598,7.5043807,25.43,29.19,-9,-9,1.666666666666667,1,1,0,0,3,4,3,1,432,908898.75,138660.94,303179.38,0,2203.5039 -15761,19406,35057,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.6696081,8.6646986,0,2,1,-46.314411,0,1,1,2019,12,0,35,35,1,0,0,15.986464,15.986464,0,0,0,0,2,1,1,0,3.3179448,0,35.78,55.1,36.44,26.71,8.333333333333334,1,1,0,0,10,1,4,1,1322,-482880.31,-36528.539,168675.5,164379.06,3014.4434 -15761,19407,35058,-9,-9,-9,1,1,36,0,0,0,2,2,-9,1,1,0,3.6375561,3.4385791,2,-1,58.138687,0,2,2,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,7,1,1,0,2.8668199,0,36.44,26.71,35.78,55.1,3.333333333333333,1,1,0,0,0,1,4,1,1136,146669.17,0,0,0,225.59042 -15762,19408,35059,35060,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,7.8789964,8.1947632,10,2,-18.834837,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,4.6477723,8.0299511,57.48,37.4,39.1,57.79,10,1,1,0,0,4,9,4,1,254,583079.13,317958.44,165681.16,23396.977,2521.2534 -15762,19408,35060,35059,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.2138891,7.0587249,37,-2,-33.232639,0,2,2,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,.93720919,7.0984545,39.1,57.79,57.48,37.4,8.333333333333334,1,1,0,0,11,9,4,1,254,583079.13,317958.44,165681.16,23396.977,2521.2534 -15763,19409,35061,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1022.8717,0,2,-9,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.32,53.95,-9,-9,10,1,1,0,0,5,5,1,0,4372,-192705.39,-3467.6909,0,0,467.88498 -15763,19410,35062,-9,35061,-9,1,0,32,0,0,0,3,3,-9,1,4,0,0,0,0,0,-884.32806,0,3,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,5,1,0,234,-36383.715,0,0,0,360.33447 -15764,19411,35063,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.1023169,4.907536,0,0,-894.73511,0,3,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0748076,54.73,42.12,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,595,218769.69,125313.49,208640.11,0,1431.4846 -15765,19412,35064,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,6.4033523,6.8748674,0,0,-1073.5789,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,6.6096959,6.5454717,48.53,58.91,-9,-9,6.666666666666667,3,4,1,0,6,6,2,0,817,308345.44,364144.44,58874.652,0,-21.890238 -15766,19413,35065,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.0467954,6.572515,0,0,-1032.1678,0,3,3,2019,6,0,0,14,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5445042,61.28,48.88,-9,-9,6.666666666666667,1,1,0,0,9,12,2,1,606,-60357.422,75401.094,170604.36,0,510.52707 -15767,19414,35066,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,9.0728827,8.4714298,5.5664997,0,0,-1157.0002,0,2,-9,2019,10,0,37,0,1,0,0,19.738422,19.738422,0,0,0,0,42,1,1,0,5.6596546,0,44.17,49.99,-9,-9,6.666666666666667,1,1,0,0,1,6,5,0,523,-207884.08,153709.66,47443.082,65042.242,5720.5181 -15768,19415,35067,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9823017,7.8809996,0,0,0,-1019.9415,0,2,2,2019,11,0,36,30,1,0,0,8.7262068,8.7262068,0,0,0,0,0,1,1,0,1.074585,0,57.16,56.15,-9,-9,5,1,1,0,0,9,12,4,1,1696,-236018.59,0,0,0,591.53955 -15768,19416,35068,-9,35067,-9,1,0,20,0,0,0,2,2,-9,0,3,7.5766654,7.6940742,0,0,0,-934.96619,0,2,-9,2019,22,9,36,35,1,9,1,7.0747848,7.0747848,0,0,0,0,0,1,1,0,0,0,22.41,57.29,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,1380,-175151.45,0,0,0,858.10217 -15768,19417,35069,-9,35067,-9,1,0,20,0,0,1,2,0,0,0,2,0,0,0,0,0,-937.16376,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,0,0,18.7,58.11,-9,-9,5,1,1,0,0,2,12,2,1,280,0,0,0,0,-93.695015 -15769,19418,35070,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.8577533,8.0768375,0,0,-1109.3129,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.4780982,8.0235777,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,1954,550227.38,504565.53,133298.42,0,1607.843 -15770,19419,35071,35072,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.4971638,5.5112963,7,1,89.954803,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0230007,5.8928213,62.27,48.47,62.39,56.71,8.333333333333334,1,1,0,0,0,8,3,1,583.5,1804305.9,331650.31,861583.63,0,2892.3298 -15770,19419,35072,35071,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,8.385046,8.1824274,51,-1,29.818861,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1596708,8.2972212,62.39,56.71,62.27,48.47,10,1,1,0,0,5,8,3,1,583.5,1804305.9,331650.31,861583.63,0,2892.3298 -15771,19420,35073,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,0,0,0,0,-913.29327,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,16.48625,0,0,1,0,1,0,0,57.23,22.73,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,397,283494.13,0,0,0,1248.6462 -15772,19421,35074,-9,35075,35077,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.2715,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 -15772,19421,35075,35077,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.1328592,9.3281412,6.9422092,6,-2,85.15638,0,2,3,2019,9,0,38,37,1,0,0,27.845036,27.845036,0,0,0,0,0,1,1,0,7.4312167,0,49.52,56.95,52,55,8.333333333333334,1,1,0,0,11,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 -15772,19421,35076,-9,35075,35077,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1012.2266,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 -15772,19421,35077,35075,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,8.6797619,8.4476728,0,6,2,7.626296,-9,-9,-9,2019,9,0,50,0,1,1,0,15.534557,15.534557,0,0,0,0,0,1,1,0,0,0,52,55,49.52,56.95,8,1,1,0,0,1,2,5,1,732,468784.81,241469.97,145437.7,9896.7285,5465.1831 -15773,19422,35078,35079,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.6181927,8.6592512,10,3,-41.841713,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.6549201,8.6765738,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,11,4,1,662.5,1746606,1099955.9,413034.81,0,3612.8657 -15773,19422,35079,35078,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.4120097,6.6975479,10,-3,10.310611,0,3,3,2019,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.983161,6.1266994,57.16,56.15,57.16,56.15,10,1,1,0,0,10,11,4,1,662.5,1746606,1099955.9,413034.81,0,3612.8657 -15774,19423,35080,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,4.5478358,3.9860368,0,0,-939.0777,0,3,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2001457,4.1252766,51.65,52.38,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,1864,-211077.77,141899.56,163382.59,0,458.14749 -15775,19424,35081,35082,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7015162,8.5863943,0,2,5,141.80502,0,-9,-9,2019,9,0,40,50,1,1,0,11.180775,11.180775,0,0,0,0,0,1,1,0,7.5324593,0,52,55,42.69,55.93,8,1,1,0,0,1,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 -15775,19424,35082,35081,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7939181,8.1166468,0,2,-5,-90.795517,0,2,2,2019,12,1,38,40,1,1,0,8.6180439,8.6180439,0,0,0,0,0,1,1,0,0,0,42.69,55.93,52,55,6.666666666666667,1,1,0,0,8,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 -15775,19424,35083,-9,35082,35081,1,1,13,0,2,1,3,0,-9,0,1,0,0,0,0,0,-1004.2728,-9,2,2,2019,20,0,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 -15775,19424,35084,-9,35082,35081,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.29443,-9,2,2,2019,13,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,.46984518,0,44.26,59.43,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,744.5,406940.44,22929.436,480870.81,0,4038.3845 -15776,19425,35085,35086,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.8919201,7.5989976,0,6,1,36.468414,0,3,3,2019,17,5,37,54,1,5,0,7.6872377,7.6872377,0,0,0,0,0,0,0,0,0,0,56.57,57.78,58.3,47.38,3.333333333333333,1,1,0,1,6,13,4,1,461.5,413126.44,465167.28,89207.109,90960.422,3263.5078 -15776,19425,35086,35085,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.8962526,8.33848,0,6,-1,-18.374496,0,2,2,2019,10,0,37,36,1,0,0,13.983965,13.983965,0,0,0,0,0,0,0,0,0,0,58.3,47.38,56.57,57.78,8.333333333333334,1,1,0,0,7,13,4,1,461.5,413126.44,465167.28,89207.109,90960.422,3263.5078 -15776,19426,35087,-9,35086,35085,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-949.47809,-9,1,2,2019,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,1141,75131.172,0,0,0,0 -15777,19427,35088,-9,35089,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.78943,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,1209.5,233759.41,64274.508,120233.06,60236.203,4955.8896 -15777,19427,35089,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,2,8.2444391,8.5891666,6.8332562,0,0,-1060.5685,0,1,1,2019,23,11,37,17,1,11,0,13.803205,13.803205,0,0,0,0,89,1,1,0,7.1423383,0,32.09,55.9,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,1209.5,233759.41,64274.508,120233.06,60236.203,4955.8896 -15778,19428,35090,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-872.60266,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5604858,0,55.79,52.62,-9,-9,0,1,1,0,0,0,6,2,1,1271,-177428.08,0,0,0,834.79773 -15779,19429,35091,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1173.5515,0,3,3,2019,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,16.04,23.99,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,422,-81044.602,0,0,0,0 -15780,19430,35092,35093,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.3819084,7.1130261,0,8,-1,101.85172,0,2,1,2019,13,2,20,20,1,2,0,6.6524181,6.6524181,0,0,0,0,71.5,0,0,0,0,0,47.62,56.48,47.13,48.65,8.333333333333334,1,1,0,0,9,12,4,1,952,1529366.9,1036244.6,345620.31,29466.496,2746.5908 -15780,19430,35093,35092,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.2502899,8.4921303,8,1,-130.69632,0,2,1,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,4.0854177,8.186861,47.13,48.65,47.62,56.48,8.333333333333334,1,1,0,0,7,12,4,1,952,1529366.9,1036244.6,345620.31,29466.496,2746.5908 -15781,19431,35094,-9,35099,35097,1,1,17,1,4,0,2,2,-9,0,4,0,0,0,0,0,-1016.2057,0,2,1,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 -15781,19431,35095,-9,35099,35097,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.47607,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 -15781,19431,35096,-9,35099,35097,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.2325,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 -15781,19431,35097,35099,-9,-9,1,1,48,1,4,0,1,1,-9,0,4,7.2663112,7.0889635,0,17,6,-15.452861,0,3,3,2019,17,5,36,40,1,5,0,5.4008346,5.4008346,0,0,0,0,0,1,1,0,0,0,50.91,54.79,37.43,40.17,3.333333333333333,1,1,0,0,6,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 -15781,19431,35098,-9,35099,35097,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.24048,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 -15781,19431,35099,35097,-9,-9,1,0,42,1,4,0,2,2,-9,1,2,0,0,0,17,-6,-184.93457,0,-9,-9,2019,26,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,40.17,50.91,54.79,6.666666666666667,1,1,0,0,4,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 -15781,19431,35100,-9,35099,35097,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.9546,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,712.42859,116371.48,-15181.547,161965.64,80643.75,2956.4355 -15782,19432,35101,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.0428562,7.5849524,0,0,0,-1085.8207,0,2,3,2019,10,0,44,42,1,0,0,8.8636866,8.8636866,0,0,0,0,0,1,1,0,0,0,39.69,62.39,-9,-9,0,1,1,0,0,8,5,4,1,2052,302250.69,235868.7,202283.52,74790.953,1779.1965 -15783,19433,35102,35103,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.1837397,5.3630018,42,4,-104.80797,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0810709,5.2813225,60.02,56.42,59.31,36.46,8.333333333333334,1,1,0,0,0,13,2,1,547.5,548359.19,127865.27,232513.58,0,1292.5394 -15783,19433,35103,35102,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,42,-4,1.6677345,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,1.3103148,0,2,1,1,0,0,0,59.31,36.46,60.02,56.42,6.666666666666667,1,1,0,0,0,13,2,1,547.5,548359.19,127865.27,232513.58,0,1292.5394 -15784,19434,35104,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,9.2470608,10.045785,0,0,-924.66888,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,9.8509932,9.0097198,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,0,12,5,1,211,2591423.8,955693.06,547936.13,0,23139 -15784,19435,35105,-9,35104,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-982.37024,-9,2,-9,2019,21,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,39.49,13.51,-9,-9,0,1,1,0,0,0,12,1,1,208,-119466.97,-102225.77,0,0,730.92493 -15784,19436,35106,-9,35104,-9,1,1,28,0,0,0,1,1,-9,0,5,8.4393682,8.3437843,0,0,0,-940.91705,0,2,1,2019,7,0,36,36,1,0,0,12.716388,12.716388,0,0,0,0,2,1,1,0,3.3156748,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,2152,25472.168,-61937.434,0,0,1956.7159 -15785,19437,35107,35108,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5716743,7.5062208,0,41,-11,25.783897,-9,3,3,2019,12,0,30,0,1,0,0,5.9643922,5.9643922,0,0,0,0,2,1,1,0,0,0,45.91,59.89,48.94,48.04,6.666666666666667,1,1,0,0,12,10,2,1,596.5,170149.2,66798.922,121069.81,0,1997.6597 -15785,19437,35108,35107,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,1.5449021,1.9780078,41,11,-15.892171,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.2559018,1.980868,48.94,48.04,45.91,59.89,8.333333333333334,1,1,0,0,9,10,2,1,596.5,170149.2,66798.922,121069.81,0,1997.6597 -15786,19438,35109,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,6.8256993,7.0353608,0,0,-990.48932,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3682227,6.8193593,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,538,468365.78,16248.717,0,0,1361.7045 -15787,19439,35110,35111,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.7935328,7.922667,0,10,3,-6.0455279,0,2,1,2019,12,0,36,0,1,0,0,7.6330075,7.6330075,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.23,55.6,8.333333333333334,1,1,0,0,11,10,4,1,715,2008691.9,794754.56,661837.75,0,1923.7849 -15787,19439,35111,35110,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,7.7540851,7.9426904,0,10,-3,1.9002795,0,2,1,2019,8,0,38,37,1,0,0,10.821556,10.821556,0,0,0,0,0,0,0,0,1.959872,0,52.23,55.6,51.83,57.2,8.333333333333334,1,1,0,0,11,10,4,1,715,2008691.9,794754.56,661837.75,0,1923.7849 -15788,19440,35112,35113,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.6790094,7.6341138,9,1,-90.679543,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.216835,7.6237288,65,34.83,58.32,50.22,8.333333333333334,1,1,0,0,0,5,3,1,1119.5,206212,290288.06,0,0,2439.5347 -15788,19440,35113,35112,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,58,-1,-137.52014,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2950859,0,58.32,50.22,65,34.83,8.333333333333334,1,1,0,0,0,5,3,1,1119.5,206212,290288.06,0,0,2439.5347 -15789,19441,35114,35115,-9,35116,1,0,50,0,0,0,2,2,-9,0,5,6.3940587,6.2936316,0,3,-6,52.83828,0,2,2,2019,7,0,5,10,1,0,0,13.032099,13.032099,0,0,0,0,27,1,1,0,0,0,54.04,60.47,57.73,54.53,8.333333333333334,1,1,0,0,9,11,5,1,1496,609354.75,174984.67,112840.89,66648.477,3970.4365 -15789,19441,35115,35114,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8183289,8.5439444,0,3,6,-18.564407,0,-9,-9,2019,6,0,44,45,1,0,0,19.701443,19.701443,0,0,0,0,0,1,1,0,6.4068179,0,57.73,54.53,54.04,60.47,8.333333333333334,1,1,0,0,4,11,5,1,1496,609354.75,174984.67,112840.89,66648.477,3970.4365 -15789,19442,35116,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1082.5999,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,11,1,1,446,-127480.32,0,8103.7026,0,991.9989 -15790,19443,35117,35119,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6952925,8.7029266,0,9,1,106.3862,0,2,3,2019,7,0,42,41,1,0,0,19.749155,19.749155,0,0,0,0,0,0,0,0,2.6444213,0,53.05,51.13,54.1,59.11,8.333333333333334,1,1,0,0,10,1,5,1,353.66666,1270402.3,746166.94,313698.38,148440.11,6657.1265 -15790,19443,35118,-9,35119,35117,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1059.1487,-9,1,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,353.66666,1270402.3,746166.94,313698.38,148440.11,6657.1265 -15790,19443,35119,35117,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.6258326,9.5653467,0,9,-1,17.333796,0,3,3,2019,12,1,78,53,1,1,0,21.044729,21.044729,0,0,0,0,0,0,0,0,0,0,54.1,59.11,53.05,51.13,8.333333333333334,1,1,0,0,10,1,5,1,353.66666,1270402.3,746166.94,313698.38,148440.11,6657.1265 -15791,19444,35120,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,6.8042493,7.4463353,6.9877181,0,0,-781.263,0,2,1,2019,6,0,12,12,1,0,0,10.378613,10.378613,0,0,0,0,7,1,1,0,6.9606342,7.2403998,54.1,59.11,-9,-9,10,1,1,0,0,10,5,3,1,919,657158.88,405735.72,205465.27,0,1393.1582 -15792,19445,35121,-9,-9,-9,1,0,52,1,1,0,3,3,-9,1,4,0,0,0,0,0,-1044.5463,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,33.09,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,3109,42906.156,0,0,0,410.03348 -15792,19446,35122,-9,35121,-9,1,1,24,1,1,0,2,2,-9,0,3,8.1212006,8.2548256,0,0,0,-1072.9193,0,3,-9,2019,12,1,40,42,1,1,1,8.2990942,8.2990942,0,0,0,0,0,1,1,0,0,0,40.58,43.59,-9,-9,8.333333333333334,2,3,0,0,6,6,4,1,342,-158471.42,-2982.054,0,0,1061.7102 -15792,19447,35123,-9,35121,-9,1,0,22,1,1,0,2,2,-9,0,5,7.8870587,8.3767862,0,0,0,-794.98608,-9,3,-9,2019,3,1,48,0,1,1,1,6.3062534,6.3062534,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,4,6,4,1,330,-115468.68,-14846.989,0,0,1692.2135 -15792,19448,35124,35126,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,8.0442286,7.8106494,0,1,2,-50.460724,-9,-9,-9,2019,12,1,42,0,1,1,0,8.952179,8.952179,0,0,0,0,0,1,1,0,0,0,52.13,57.22,49,58,6.666666666666667,2,3,0,0,2,6,4,1,483.33334,-167850.97,1421.3828,52976.438,97979.906,2591.8538 -15792,19448,35125,-9,35124,35126,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-882.12671,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,483.33334,-167850.97,1421.3828,52976.438,97979.906,2591.8538 -15792,19448,35126,35124,35121,-9,1,1,28,1,1,0,3,3,-9,0,4,8.1924706,8.1675348,0,1,-2,2.9161973,0,3,-9,2019,10,0,40,60,1,1,0,8.5729284,8.5729284,0,0,0,0,0,1,1,0,1.0978922,0,49,58,52.13,57.22,7,2,3,0,0,1,6,4,1,483.33334,-167850.97,1421.3828,52976.438,97979.906,2591.8538 -15793,19449,35127,35130,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,6.6609764,7.0148945,0,19,-5,3.6483541,0,1,2,2019,3,0,21,21,1,0,0,7.5836873,7.5836873,0,0,0,0,0,1,1,0,0,0,52.82,53.97,31.6,43.43,8.333333333333334,1,1,0,0,4,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 -15793,19449,35128,-9,35127,35130,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.2888,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 -15793,19449,35129,-9,35127,35130,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.79,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 -15793,19449,35130,35127,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.6571455,8.5643034,0,19,5,-45.417568,0,2,2,2019,12,0,56,40,1,0,0,9.9437189,9.9437189,0,0,0,0,0,1,1,0,0,0,31.6,43.43,52.82,53.97,5,1,1,0,0,10,9,4,1,379.75,586031.25,192354.69,257811.53,66483.859,3322.5911 -15794,19450,35131,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-895.763,0,3,1,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,0,48.93,26.59,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,1682,-106636.51,0,126104.19,0,1065.9065 -15795,19451,35132,35133,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0567665,7.5555234,0,26,3,57.53928,0,1,1,2019,12,0,30,45,1,0,0,10.121677,10.121677,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 -15795,19451,35133,35132,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.7060556,8.6471214,0,26,-3,-22.04442,0,2,2,2019,10,0,50,46,1,0,0,13.238676,13.238676,0,0,0,0,0,1,1,0,3.1496592,0,51.83,57.2,57.33,53.46,10,1,1,0,0,9,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 -15795,19451,35134,-9,35133,35132,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.78198,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 -15795,19451,35135,-9,35133,35132,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.08063,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,1,511.75,582929.13,173864.61,514830.78,0,3395.5112 -15796,19452,35136,35137,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,6,-1,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,53,47,10,1,1,0,0,0,13,1,1,1652.5,-78055.703,-57767.742,0,0,1135.3127 -15796,19452,35137,35136,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,6,1,0,0,3,3,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,51.83,57.2,8,1,1,0,0,0,13,1,1,1652.5,-78055.703,-57767.742,0,0,1135.3127 -15797,19453,35138,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.5378609,8.6875792,0,0,0,-1041.0548,0,2,2,2019,13,1,44,38,1,1,0,13.625386,13.625386,0,0,0,0,0,0,0,0,0,0,23.17,59.72,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,1033,265968.19,-73092.914,99006.414,67631.25,2017.2069 -15798,19454,35139,35140,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.5403619,6.4350462,0,42,1,81.497055,0,-9,-9,2019,11,0,15,16,1,0,0,4.263649,4.263649,0,0,0,0,0,0,0,0,4.1355257,0,54.07,49.4,57.33,53.46,8.333333333333334,1,1,0,0,13,10,2,1,567,228150.91,139564.3,230637.5,0,684.69391 -15798,19454,35140,35139,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,42,-1,74.122421,0,3,3,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,4.4804659,0,57.33,53.46,54.07,49.4,8.333333333333334,1,1,0,0,7,10,2,1,567,228150.91,139564.3,230637.5,0,684.69391 -15799,19455,35141,-9,35142,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-858.91199,-9,1,3,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,4,3,0,448.66666,79466.492,-29491.455,129733.49,86301.484,2252.6252 -15799,19455,35142,-9,-9,-9,1,0,30,0,2,0,1,1,-9,0,4,7.8878627,8.0706005,5.4181623,0,0,-1115.2905,0,-9,-9,2019,12,1,41,39,1,1,0,6.0675983,6.0675983,0,0,0,0,0,1,1,0,5.7768321,0,51.83,57.2,-9,-9,6.666666666666667,4,2,0,0,4,4,3,0,448.66666,79466.492,-29491.455,129733.49,86301.484,2252.6252 -15799,19455,35143,-9,35142,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.782,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,3,0,448.66666,79466.492,-29491.455,129733.49,86301.484,2252.6252 -15800,19456,35144,35145,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.18153,7.336462,0,1,-3,53.868137,-9,2,2,2019,10,0,24,0,1,0,0,6.8725638,6.8725638,0,0,0,0,2,1,1,0,0,0,49.05,47.83,51.83,57.2,8.333333333333334,1,1,0,0,9,13,5,1,638.66669,787981.38,631098,313907.78,88367.766,4404.6987 -15800,19456,35145,35144,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.2521276,9.4273634,0,1,3,-8.6673918,-9,2,3,2019,9,0,45,0,1,0,0,23.166552,23.166552,0,0,0,0,0,1,1,0,0,0,51.83,57.2,49.05,47.83,8.333333333333334,1,1,0,0,9,13,5,1,638.66669,787981.38,631098,313907.78,88367.766,4404.6987 -15800,19456,35146,-9,35144,35145,1,0,17,0,0,0,2,2,-9,0,5,0,0,0,0,0,-989.93378,-9,2,1,2019,14,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,47.31,58.02,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,638.66669,787981.38,631098,313907.78,88367.766,4404.6987 -15801,19457,35147,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,8.99928,8.9741697,0,0,0,-910.65521,0,3,2,2019,11,0,38,37,1,0,0,25.09716,25.09716,0,0,0,0,0,0,0,0,0,0,51.08,61.81,-9,-9,6.666666666666667,1,1,0,0,13,1,5,1,1094,618446.56,83514.547,137250.61,0,3138.7109 -15801,19458,35148,-9,-9,35147,1,0,18,0,0,0,2,2,-9,0,3,6.6298695,6.6161079,0,0,0,-1032.9434,0,-9,3,2019,14,4,14,0,1,4,1,4.565948,4.565948,0,0,0,0,0,0,0,0,0,0,38.12,55.5,-9,-9,8.333333333333334,1,1,0,0,2,1,2,1,900,-43044.332,0,0,0,258.92944 -15802,19459,35149,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.3469915,8.8281775,0,0,0,-974.64594,0,2,2,2019,10,1,38,37,1,1,0,14.14908,14.14908,0,0,0,0,0,0,0,0,0,0,52.54,48.71,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,5011,823558.25,403401.28,-17859.02,-6958.0151,1255.9082 -15803,19460,35150,35151,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.5162468,9.2468786,0,2,3,78.419876,0,-9,-9,2019,12,2,60,38,1,2,0,19.808231,19.808231,0,0,0,0,0,0,0,0,5.9836302,0,41.3,60.77,37.98,59.7,6.666666666666667,1,1,0,0,7,10,5,1,472,310058.84,105880.06,417618.13,255334.73,6136.0635 -15803,19460,35151,35150,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.9507551,8.7225599,0,2,-3,7.6258206,0,3,2,2019,18,6,50,51,1,6,0,16.980705,16.980705,0,0,0,0,0,0,0,0,6.1212354,0,37.98,59.7,41.3,60.77,6.666666666666667,1,1,0,0,8,10,5,1,472,310058.84,105880.06,417618.13,255334.73,6136.0635 -15804,19461,35152,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,7.494554,8.5008841,7.928792,0,0,-1004.1585,0,3,3,2019,12,1,20,16,1,1,0,8.6550817,8.6550817,0,0,0,0,0,1,1,0,6.5655293,8.3125324,40.6,41.07,-9,-9,5,1,1,0,0,10,13,5,1,1971,104879.88,0,114659.39,0,2718.9841 -15805,19462,35153,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.4713893,7.562952,0,0,-972.10077,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7967138,7.3088002,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,247,300312.03,24979.754,352913.31,0,1355.3529 -15806,19463,35154,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,8.0423117,8.1870775,0,0,0,-1169.1323,0,2,-9,2019,7,1,37,37,1,1,0,8.5058346,8.5058346,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,1198,-297239.19,0,0,0,1998.6348 -15806,19463,35155,-9,35154,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1086.8787,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,1,1198,-297239.19,0,0,0,1998.6348 -15806,19464,35156,-9,35154,-9,1,1,19,0,1,0,2,2,1,0,5,7.4361567,7.4961524,0,0,0,-997.65332,-9,2,-9,2019,7,0,36,0,1,0,1,5.6409564,5.6409564,0,0,0,0,0,1,1,0,.69147795,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,571,36386.379,0,0,0,1218.1063 -15807,19465,35157,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,3,8.3399086,8.7622957,0,0,0,-1011.9385,0,-9,-9,2019,10,0,40,40,1,0,0,9.2390957,9.2390957,0,0,0,0,0,0,0,0,0,0,56.94,49.53,-9,-9,6.666666666666667,1,1,0,0,11,1,4,1,436,419780.81,186295.86,28820.072,62683.043,1946.542 -15808,19466,35158,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,3,8.1657324,8.0752649,0,0,0,-917.43726,-9,2,2,2019,26,10,56,0,1,10,0,6.5714979,6.5714979,0,0,0,0,0,0,0,0,0,0,23.73,62.18,-9,-9,1.666666666666667,1,1,0,0,1,9,4,1,2235,-117369.23,-61253.508,0,0,1598.4713 -15809,19467,35159,35160,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,5.3924699,5.4349742,42,0,-46.728397,0,-9,-9,2019,24,12,0,0,4,12,0,0,0,1,0,3.5543454,0,14.5,1,1,0,5.0956035,5.4945407,37.08,22.6,24.39,48.92,1.666666666666667,1,1,0,0,4,6,3,1,791.5,1194770.6,1047205.5,241174.06,0,3740.2205 -15809,19467,35160,35159,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,8.1698189,8.0720453,44,0,88.707664,0,3,-9,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,5.48,1,1,0,5.1555705,7.9850559,24.39,48.92,37.08,22.6,3.333333333333333,1,1,0,0,0,6,3,1,791.5,1194770.6,1047205.5,241174.06,0,3740.2205 -15810,19468,35161,35162,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.0830851,8.017045,0,28,0,127.17223,0,1,1,2019,15,3,25,25,1,3,0,13.501623,13.501623,0,0,0,0,0,0,0,0,3.9587088,0,59.11,34.12,57.16,56.15,6.666666666666667,1,1,0,0,12,12,5,1,1421.5,852730.13,153879.31,362190.72,0,5176.876 -15810,19468,35162,35161,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2250986,9.1156263,0,28,0,-60.434029,0,1,1,2019,6,0,40,40,1,0,0,35.7043,35.7043,0,0,0,0,0,0,0,0,4.0337605,0,57.16,56.15,59.11,34.12,8.333333333333334,1,1,0,0,11,12,5,1,1421.5,852730.13,153879.31,362190.72,0,5176.876 -15811,19469,35163,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.3851948,7.9275184,0,0,0,-986.83209,0,2,3,2019,11,0,33,18,1,0,0,7.560945,7.560945,0,0,0,0,0,0,0,0,0,0,48.85,51.81,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,933,254199.27,21504.057,0,0,1541.4247 -15812,19470,35164,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,4,0,8.3063154,8.168107,0,0,-912.14185,0,3,2,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,7.6430283,8.3818846,48.93,44.08,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,286,488059.47,-60768.625,0,0,4277.5645 -15813,19471,35165,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,8.5366364,8.7435389,0,0,-900.82642,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.6268494,8.6975861,57.75,49.13,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,459,501466.53,163744.25,349312.94,0,2938.0474 -15814,19472,35166,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.31976,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,3.8379164,0,21.242161,0,1,1,0,0,0,22.47,38.77,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,238,-143158.88,0,0,0,819.25342 -15815,19473,35167,35168,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.2520776,8.2903013,8.150773,7,0,78.631363,0,3,3,2019,7,0,30,25,1,0,0,3.799612,3.799612,0,0,0,0,0,1,1,0,0,8.0770187,52,54.51,55.59,48.73,8.333333333333334,1,1,0,0,10,12,4,1,580.5,362202.72,142457.25,142915.42,0,2301.5916 -15815,19473,35168,35167,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,7,0,-11.151363,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,48.73,52,54.51,8.333333333333334,1,1,0,0,4,12,4,1,580.5,362202.72,142457.25,142915.42,0,2301.5916 -15816,19474,35169,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.6830292,8.7452478,0,0,0,-1025.4167,-9,-9,-9,2019,12,0,55,0,1,0,0,13.521893,13.521893,0,0,0,0,0,0,0,0,0,0,31.51,57.32,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,2301,69622.805,160768.98,0,0,2811.3809 -15817,19475,35170,35171,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9759378,8.0754786,0,4,0,-174.2487,0,2,2,2019,11,0,35,35,1,2,0,8.254837,8.254837,0,0,0,0,0,0,0,0,0,0,48,48,50,49,7,1,1,0,0,8,10,5,0,306.5,1790168.9,1286629.8,395840.19,0,3474.0693 -15817,19475,35171,35170,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.579484,8.5004997,0,4,0,-21.623663,0,-9,-9,2019,10,0,50,29,1,1,0,10.047858,10.047858,0,0,0,0,0,0,0,0,7.4586082,0,50,49,48,48,7,1,1,0,0,3,10,5,0,306.5,1790168.9,1286629.8,395840.19,0,3474.0693 -15818,19476,35172,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,0,0,0,0,-974.69275,0,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,2,3,0,1,3,8,1,0,275,-138959.67,0,0,0,567.9646 -15819,19477,35173,35176,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.9769382,9.1359396,0,20,-1,16.412094,0,3,3,2019,13,1,39,38,1,1,0,21.392487,21.392487,0,0,0,0,0,1,1,0,0,0,41.06,62.04,43.12,58.55,5,1,1,0,0,10,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 -15819,19477,35174,-9,35176,35173,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.7164,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 -15819,19477,35175,-9,35176,35173,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1159.1343,1,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,.41627619,0,54.6,55.89,-9,-9,8.333333333333334,1,1,0,0,3,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 -15819,19477,35176,35173,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,7.6879668,9.0631905,7.8956385,20,1,55.356724,0,1,1,2019,15,4,12,9,1,4,0,22.457973,22.457973,0,0,0,0,14.5,1,1,0,7.9261909,0,43.12,58.55,41.06,62.04,5,1,1,0,0,9,12,5,1,483.25,620850.81,324718.66,255457.5,0,5721.106 -15820,19478,35177,35178,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,9.4879789,9.2809315,0,7,-2,-8.9112759,0,2,2,2019,17,6,50,47,1,6,0,37.905891,37.905891,0,0,0,0,0,0,0,0,3.2738526,0,46.06,60.24,52,54.51,8.333333333333334,1,1,0,0,8,5,5,1,297.66666,2057202.9,976060.81,613582.56,198384.84,6925.8174 -15820,19478,35178,35177,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.8729324,9.0174475,0,7,2,52.409832,0,2,2,2019,7,0,39,40,1,0,0,14.623974,14.623974,0,0,0,0,0,0,0,0,2.6462271,0,52,54.51,46.06,60.24,8.333333333333334,1,1,0,0,8,5,5,1,297.66666,2057202.9,976060.81,613582.56,198384.84,6925.8174 -15820,19478,35179,-9,35178,35177,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1053.0173,-9,1,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,5,5,1,297.66666,2057202.9,976060.81,613582.56,198384.84,6925.8174 -15821,19479,35180,35181,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,36,4,70.482719,0,1,1,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,3.4595749,0,41.99,36.23,31.28,42.21,3.333333333333333,1,1,1,1,3,11,4,0,200.5,1015765.4,809955.88,416339.25,0,2385.3628 -15821,19479,35181,35180,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6024532,8.47509,0,34,-4,74.837936,0,2,2,2019,20,9,27,26,1,9,0,24.315453,24.315453,0,0,0,0,2,0,0,0,3.2956393,0,31.28,42.21,41.99,36.23,3.333333333333333,1,1,0,0,9,11,4,0,200.5,1015765.4,809955.88,416339.25,0,2385.3628 -15821,19480,35182,-9,35181,35180,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-848.03052,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,364,0,0,0,0,0 -15821,19481,35183,-9,35181,35180,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-971.15271,0,2,2,2019,18,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,40.61,50.23,-9,-9,5,1,1,1,1,0,11,1,0,185,260468.92,0,0,0,0 -15822,19482,35184,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,9.0052938,8.9782505,0,0,0,-975.508,0,1,2,2019,9,0,52,52,1,0,0,11.592565,11.592565,0,0,0,0,0,1,1,0,4.3653755,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,114,339932.59,51835.434,196209.39,116787.39,2985.4414 -15823,19483,35185,35186,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,6.9334769,8.583745,8.1868706,9,8,-143.46664,0,2,2,2019,20,9,37,45,1,9,0,4.3825159,4.3825159,0,0,0,0,0,0,0,0,3.5316875,8.2333565,36.08,60.5,47,49,6.666666666666667,1,1,0,1,11,7,4,1,346,935299.13,126929.89,324591.81,0,2854.8643 -15823,19483,35186,35185,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.3480783,6.826005,0,9,-8,58.644501,0,3,2,2019,12,0,18,18,1,2,0,5.2813077,5.2813077,0,0,0,0,0,0,0,0,0,0,47,49,36.08,60.5,7,1,1,0,0,1,7,4,1,346,935299.13,126929.89,324591.81,0,2854.8643 -15824,19484,35187,35188,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.8592868,7.5958886,0,29,-1,-80.738625,0,3,3,2019,20,6,35,22,1,6,0,7.5387006,7.5387006,0,0,0,0,42,1,1,0,0,0,26.56,28.51,40.53,24.96,6.666666666666667,1,1,0,0,10,2,3,0,906,325378.16,162903.44,126742.61,13865.089,2041.8113 -15824,19484,35188,35187,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,0,6.880743,6.4157495,29,1,52.209908,0,3,3,2019,26,10,0,0,4,10,0,0,0,0,0,0,0,0,1,1,0,0,6.5485067,40.53,24.96,26.56,28.51,0,1,1,0,0,9,2,3,0,906,325378.16,162903.44,126742.61,13865.089,2041.8113 -15825,19485,35189,35191,-9,-9,1,1,44,0,2,0,3,3,-9,0,3,7.9646549,7.7078519,0,7,2,10.040695,0,3,2,2019,8,0,40,40,1,0,0,7.6564794,7.6564794,0,0,0,0,0,1,1,0,0,0,58.57,46.25,54.37,54.8,5,1,1,0,0,8,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 -15825,19485,35190,-9,35191,35189,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.213,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 -15825,19485,35191,35189,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,0,0,0,7,-2,-23.557667,0,-9,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,58.57,46.25,5,1,1,0,0,0,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 -15825,19485,35192,-9,35191,35189,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.26941,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,564.75,29430.941,30518.141,70723.398,53043.598,1804.97 -15826,19486,35193,-9,-9,35194,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1018.2625,-9,-9,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,5,1,719,95322.273,-13549.233,47575.828,28170.561,3179.2605 -15826,19486,35194,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.2583075,9.2353821,0,0,0,-1052.3645,0,3,3,2019,7,0,40,40,1,0,0,27.448399,27.448399,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,719,95322.273,-13549.233,47575.828,28170.561,3179.2605 -15826,19486,35195,-9,-9,35194,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-946.77252,0,-9,2,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,2.7314107,0,43.96,62.06,-9,-9,8.333333333333334,1,1,1,0,0,7,5,1,719,95322.273,-13549.233,47575.828,28170.561,3179.2605 -15827,19487,35196,35197,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.3307714,8.890769,0,7,0,-107.93914,0,1,1,2019,7,0,41,42,1,0,0,26.266043,26.266043,0,0,0,0,0,0,0,0,3.7862186,0,49.65,57.01,37.4,22.25,8.333333333333334,1,1,0,0,8,7,5,1,252,308060.28,43051.621,506071.19,269818.41,4338.1611 -15827,19487,35197,35196,-9,-9,1,0,32,0,0,0,1,1,-9,0,1,7.0761156,7.6893468,7.7118754,7,0,33.824776,0,1,1,2019,26,11,6,2,1,11,0,22.505613,22.505613,0,0,0,0,0,0,0,0,7.8488564,0,37.4,22.25,49.65,57.01,5,4,2,0,0,4,7,5,1,252,308060.28,43051.621,506071.19,269818.41,4338.1611 -15828,19488,35198,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-952.95691,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.7,34.63,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,211,-82684.891,0,0,0,748.97607 -15829,19489,35199,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-915.86981,-9,-9,-9,2019,23,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,23.44,61.18,-9,-9,6.666666666666667,1,1,0,0,2,4,1,0,301,0,0,0,0,351.39474 -15830,19490,35200,35201,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,5.2137904,5.2067738,0,8,2,56.764393,0,-9,-9,2019,8,1,50,50,1,1,0,.43163434,.43163434,0,0,0,0,0,0,0,0,0,0,43.37,57.28,46.44,51.75,6.666666666666667,1,1,0,0,7,9,4,0,256,-45647.047,44078.711,0,0,1813.4049 -15830,19490,35201,35200,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.6544247,8.4341984,0,8,-2,237.87347,0,2,3,2019,17,5,37,37,1,5,0,15.379336,15.379336,0,0,0,0,0,0,0,0,0,0,46.44,51.75,43.37,57.28,6.666666666666667,1,1,0,0,9,9,4,0,256,-45647.047,44078.711,0,0,1813.4049 -15831,19491,35202,35203,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5224972,7.9879127,0,7,4,134.91833,0,3,3,2019,9,0,32,24,1,0,0,9.4669161,9.4669161,0,0,0,0,0,0,0,0,0,0,60.13,49.27,49.17,58.56,10,1,1,0,0,8,4,4,1,1052,632909.63,93003.508,210244.55,12286.146,3023.4082 -15831,19491,35203,35202,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.3921614,8.4285765,0,7,-4,223.50754,0,2,2,2019,11,0,60,55,1,0,0,8.2450085,8.2450085,0,0,0,0,0,0,0,0,3.6587718,0,49.17,58.56,60.13,49.27,8.333333333333334,1,1,0,0,8,4,4,1,1052,632909.63,93003.508,210244.55,12286.146,3023.4082 -15831,19492,35204,-9,35202,35203,1,0,24,0,0,0,2,2,-9,0,4,8.6422577,8.4715996,0,0,0,-996.89319,0,2,2,2019,13,1,38,38,1,1,1,11.820494,11.820494,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,379,-56123.828,141347.28,0,0,2157.5759 -15832,19493,35205,35206,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,48,2,-66.81797,0,2,2,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6970563,0,53,47,30.65,29.46,7,1,1,0,0,0,9,2,1,477.5,607427.94,122099.95,264747.97,0,1658.459 -15832,19493,35206,35205,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,5.6731791,5.6234994,48,-2,-69.524002,0,1,3,2019,24,7,0,0,4,7,0,0,0,0,0,13.470662,0,120,1,1,0,5.1050196,5.3753529,30.65,29.46,53,47,1.666666666666667,1,1,0,0,0,9,2,1,477.5,607427.94,122099.95,264747.97,0,1658.459 -15832,19494,35207,-9,35206,35205,1,0,39,0,0,0,1,1,-9,0,3,0,0,0,0,0,-900.57416,0,1,1,2019,19,6,0,30,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,38.98,42.9,-9,-9,6.666666666666667,1,1,0,0,5,9,1,1,1425,-547511.69,0,0,0,0 -15833,19495,35208,35210,-9,-9,1,0,20,1,1,0,3,3,-9,0,3,0,0,0,1,-5,-47.272274,-9,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,.026360193,0,1,1,0,0,0,54.96,53.17,50.1,49.64,8.333333333333334,1,1,0,0,0,4,3,1,967.66669,37972.594,35108.543,194034.36,150847.83,1714.3048 -15833,19495,35209,-9,35208,35210,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-923.28284,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,967.66669,37972.594,35108.543,194034.36,150847.83,1714.3048 -15833,19495,35210,35208,-9,-9,1,1,25,1,1,0,1,1,-9,0,4,8.1956043,7.8758836,0,1,5,-12.476344,0,3,2,2019,12,1,38,37,1,1,0,14.165883,14.165883,0,0,0,0,0,1,1,0,0,0,50.1,49.64,54.96,53.17,8.333333333333334,1,1,0,0,5,4,3,1,967.66669,37972.594,35108.543,194034.36,150847.83,1714.3048 -15834,19496,35211,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-864.89545,-9,2,2,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,11,1,0,589,-308753.31,0,0,0,244.90834 -15835,19497,35212,-9,35213,35214,1,1,23,0,0,0,3,3,-9,1,2,0,0,0,0,0,-962.07227,0,1,2,2019,18,7,0,0,3,7,1,0,0,0,0,0,0,0,1,1,0,0,0,32.62,36.55,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,1103,0,0,0,0,648.7171 -15835,19498,35213,35214,-9,-9,1,0,59,0,0,0,1,1,-9,1,4,0,0,0,8,-7,36.559193,0,3,3,2019,22,9,0,30,3,9,0,0,0,0,0,0,0,120,1,1,0,0,0,34.63,53,52,48,8.333333333333334,1,1,1,0,4,12,3,1,193,1184593,475122.38,292606.34,0,2561.6079 -15835,19498,35214,35213,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.6260328,7.7052646,8,7,71.273155,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.4902539,7.6651654,52,48,34.63,53,7,1,1,0,0,0,12,3,1,193,1184593,475122.38,292606.34,0,2561.6079 -15836,19499,35215,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.7868099,7.9518585,0,0,-1052.1663,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,14.254558,119.29299,134.82062,0,1,1,0,4.9864478,7.674994,44.85,25.64,-9,-9,10,1,1,0,0,0,7,4,1,273,711231.5,144975.81,661047.81,0,2377.1614 -15837,19500,35216,35217,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,6.9096332,7.6004076,6.9152522,30,-7,-61.244534,0,-9,-9,2019,18,6,24,24,1,6,0,5.4629264,5.4629264,0,0,0,0,0,0,0,0,3.4711397,7.1432033,58.85,23.37,49.46,56.91,8.333333333333334,1,1,0,0,4,7,3,0,832,1035086.1,194547.91,563558.69,0,1196.9078 -15837,19500,35217,35216,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,6.8752041,7.1766782,30,7,8.5770493,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,7.0173512,49.46,56.91,58.85,23.37,5,1,1,0,0,4,7,3,0,832,1035086.1,194547.91,563558.69,0,1196.9078 -15837,19501,35218,-9,35216,35217,1,1,26,0,0,0,2,2,-9,0,4,8.3612366,8.4843225,0,0,0,-932.09149,0,2,2,2019,16,6,49,0,1,6,1,11.899087,11.899087,0,0,0,0,0,0,0,0,0,0,41.7,59.17,-9,-9,8.333333333333334,1,1,0,0,1,7,5,0,426,197336.27,92196.047,0,0,1312.7472 -15838,19502,35219,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.1468334,6.3129444,0,0,-1010.8519,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,.6412735,0,0,1,1,0,0,6.3487659,50.63,22.73,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1172,97195.664,7630.9014,255960.3,0,476.53738 -15839,19503,35220,35221,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,0,0,52,2,0,0,1,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4457922,0,60.06,39.82,38.04,47.34,8.333333333333334,1,1,0,0,1,9,1,1,1574,454265.19,0,345099.31,0,1938.1541 -15839,19503,35221,35220,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,52,-2,0,0,2,2,2019,19,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,6.9786234,0,38.04,47.34,60.06,39.82,8.333333333333334,1,1,0,0,4,9,1,1,1574,454265.19,0,345099.31,0,1938.1541 -15840,19504,35222,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.3766098,7.5569134,0,0,-1041.3975,0,2,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,6.5292392,7.4532099,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1119,286473.69,71108.492,283141.13,0,2062.2178 -15841,19505,35223,35224,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.684515,8.6914101,0,2,11,-84.030777,0,2,2,2019,9,0,41,43,1,0,0,15.603502,15.603502,0,0,0,0,0,0,0,0,3.9518321,0,57.16,56.15,59.46,46.99,8.333333333333334,1,1,0,0,8,4,5,1,377,1534282.9,1351696,230654.39,0,2465.6228 -15841,19505,35224,35223,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,7.7113948,8.019618,0,2,-11,84.304359,0,-9,-9,2019,7,0,39,44,1,0,0,7.7808461,7.7808461,0,0,0,0,0,0,0,0,0,0,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,3,4,5,1,377,1534282.9,1351696,230654.39,0,2465.6228 -15842,19506,35225,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.6579599,8.9664259,0,0,0,-861.28979,0,3,3,2019,6,0,44,45,1,0,0,15.387556,15.387556,0,0,0,.0084548509,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,8,5,0,1118,724772.13,185842.92,468740.97,0,3094.9727 -15843,19507,35226,35227,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.6329441,7.7916079,0,9,3,17.491186,0,-9,-9,2019,11,1,38,38,1,1,0,6.6024256,6.6024256,0,0,0,0,0,1,1,0,0,0,54.62,53.53,56.99,36.18,6.666666666666667,1,1,0,0,10,8,4,0,199.5,476976.06,78521.188,365341.38,158463.44,2534.9133 -15843,19507,35227,35226,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.7837286,8.0220671,0,9,-3,-37.078411,0,-9,3,2019,9,0,40,46,1,0,0,8.2196417,8.2196417,0,0,0,0,0,1,1,0,0,0,56.99,36.18,54.62,53.53,6.666666666666667,1,1,0,0,9,8,4,0,199.5,476976.06,78521.188,365341.38,158463.44,2534.9133 -15843,19508,35228,-9,35226,35227,1,1,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1021.8486,0,2,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,1,0,0,8,1,0,470,0,0,0,0,988.46472 -15844,19509,35229,35230,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.1887894,8.0335665,6,6,-27.154293,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2122231,8.0240126,41.82,56.44,56.5,37.6,8.333333333333334,3,4,0,0,1,6,4,1,892.5,1823215.4,1276539.8,471934.22,164985.72,3587.1445 -15844,19509,35230,35229,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.8115568,7.6929641,6,-6,-158.88318,0,3,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,1.5727192,7.6027999,56.5,37.6,41.82,56.44,6.666666666666667,2,3,0,0,6,6,4,1,892.5,1823215.4,1276539.8,471934.22,164985.72,3587.1445 -15845,19510,35231,35232,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.6443033,7.6523614,0,5,-6,-79.864304,0,-9,-9,2019,5,0,40,38,1,0,0,5.8636346,5.8636346,0,0,0,0,0,0,0,0,0,0,45.43,53.5,54.69,57.47,8.333333333333334,1,1,0,0,8,7,4,0,186.5,120029.23,4091.0625,0,0,3023.854 -15845,19510,35232,35231,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.5199013,8.4122705,0,5,6,64.942566,0,-9,-9,2019,1,0,41,65,1,0,0,15.138939,15.138939,0,0,0,0,0,0,0,0,0,0,54.69,57.47,45.43,53.5,10,1,1,0,0,4,7,4,0,186.5,120029.23,4091.0625,0,0,3023.854 -15846,19511,35233,35234,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.8664765,7.5184646,9,6,-37.837559,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7081752,50,47,43.2,59.97,6.666666666666667,1,1,0,0,4,4,4,1,664,569281.19,503994.72,228397.44,20437.242,4196.1357 -15846,19511,35234,35233,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,5.50986,7.5397234,7.3559074,30,-6,102.30477,0,3,3,2019,14,3,5,5,1,3,0,6.4494958,6.4494958,0,0,0,0,0,1,1,0,8.5002613,7.2097259,43.2,59.97,50,47,8.333333333333334,1,1,0,0,9,4,4,1,664,569281.19,503994.72,228397.44,20437.242,4196.1357 -15847,19512,35235,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.0627241,7.9771733,0,0,0,-1071.6382,0,-9,-9,2019,8,0,37,37,1,0,0,10.103544,10.103544,0,0,0,0,0,0,0,0,3.8589292,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,13,6,4,1,748,726971.88,-35739.988,0,0,1258.7606 -15848,19513,35236,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1067.8595,0,3,2,2019,9,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.234365,0,63.25,34.36,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,453,563657.94,0,529032.88,0,779.30066 -15849,19514,35237,35238,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,33,5,0,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.41,39.7,61.27,46.03,8.333333333333334,1,1,0,0,0,5,1,1,3624,295657.31,0,365595,0,1082.9536 -15849,19514,35238,35237,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,33,-5,0,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,63.41,39.7,8.333333333333334,1,1,0,0,0,5,1,1,3624,295657.31,0,365595,0,1082.9536 -15850,19515,35239,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.7029142,8.9702377,8.628952,0,0,-919.39996,-9,2,2,2019,11,0,52,0,1,2,0,11.396507,11.396507,0,0,0,0,0,1,1,0,8.0554457,8.6381817,48,48,-9,-9,7,1,1,0,0,6,9,5,0,333,391174.94,0,138870.25,0,3873.4146 -15851,19516,35240,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.9921994,6.7639599,0,0,-942.45013,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.74774551,7.1931667,47.81,46.8,-9,-9,5,1,1,0,0,0,11,2,1,1154,591354,195109.48,220631.09,0,1302.3701 -15852,19517,35241,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.7596,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,351,85027.563,0,125596.49,0,1652.324 -15853,19518,35242,35243,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9456916,7.4802732,52,2,56.266529,0,3,3,2019,15,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,7.439055,7.6063161,44.13,51.34,53.61,53.59,8.333333333333334,1,1,0,0,0,5,3,1,774.5,900295.88,295459.88,508893.69,0,2794.3623 -15853,19518,35243,35242,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.2009406,4.8931694,52,-2,42.130569,0,2,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9527459,5.1104198,53.61,53.59,44.13,51.34,10,1,1,0,0,0,5,3,1,774.5,900295.88,295459.88,508893.69,0,2794.3623 -15854,19519,35244,35245,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,7.9680681,8.1285601,0,24,0,-76.696007,0,2,3,2019,11,0,40,43,1,0,0,10.884633,10.884633,0,0,0,0,0,1,1,0,0,0,47.01,58,57.51,47.91,8.333333333333334,1,1,0,0,12,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 -15854,19519,35245,35244,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.3296967,8.4264059,0,10,0,43.864838,0,3,-9,2019,8,0,40,40,1,0,0,10.771487,10.771487,0,0,0,0,0,1,1,0,0,0,57.51,47.91,47.01,58,6.666666666666667,1,1,0,0,11,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 -15854,19519,35246,-9,35244,35245,1,0,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-854.86841,-9,3,2,2019,17,4,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,40.54,-9,-9,3.333333333333333,1,1,0,0,1,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 -15854,19519,35247,-9,35244,35245,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-985.14301,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,526.75,188079.88,24798.963,479645.5,44169.172,2882.2891 -15855,19520,35248,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-913.89532,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,7.9274468,7.7346601,0,0,0,0,0,0,0,53,45,-9,-9,8,1,1,0,0,0,12,1,0,1321,452257.63,0,357604.84,0,0 -15856,19521,35249,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2720346,8.2540321,0,0,-1042.0662,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9863729,8.3500443,59.53,56.44,-9,-9,10,1,1,0,0,6,9,4,1,1060,2213103,912510.13,613551.88,0,2758.8345 -15857,19522,35250,-9,35252,35251,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-981.05286,-9,2,2,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.95,57.28,-9,-9,8.333333333333334,1,1,0,1,0,10,4,1,444,18007.334,28295.605,165255.05,104662.66,2392.3042 -15857,19522,35251,35252,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,8.3139267,8.0575171,0,8,6,-91.038857,0,-9,-9,2019,9,0,44,39,1,0,0,7.9417586,7.9417586,0,0,0,0,0,1,1,0,0,0,56.19,46.16,57.06,57.76,6.666666666666667,1,1,0,0,11,10,4,1,444,18007.334,28295.605,165255.05,104662.66,2392.3042 -15857,19522,35252,35251,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.4177055,7.5668793,0,8,-6,-21.046997,0,2,2,2019,6,0,6,16,1,0,0,30.054811,30.054811,0,0,0,0,2,1,1,0,0,0,57.06,57.76,56.19,46.16,8.333333333333334,1,1,0,0,11,10,4,1,444,18007.334,28295.605,165255.05,104662.66,2392.3042 -15858,19523,35253,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.6507921,8.835144,0,0,0,-990.59906,0,2,3,2019,7,0,38,38,1,0,0,18.104221,18.104221,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,220,633520.56,161491.61,43417.285,34253.199,2083.3521 -15859,19524,35254,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7533336,7.9807081,0,0,0,-1024.4882,0,-9,-9,2019,10,0,57,37,1,1,0,6.0778046,6.0778046,0,0,0,0,0,0,0,0,4.0426507,0,49,58,-9,-9,7,1,1,0,0,7,7,3,0,914,-45524,0,0,0,1204.7441 -15860,19525,35255,35256,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.5937338,8.4321089,0,4,-6,-52.1483,0,2,3,2019,11,0,84,60,1,0,0,5.4456315,5.4456315,0,0,0,0,0,0,0,0,5.0293241,0,45.32,61.53,46.95,53.4,10,1,1,0,0,7,4,5,1,1300.5,1503618.3,1279276.1,149711.64,0,3058.834 -15860,19525,35256,35255,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,7.9266062,8.1527147,0,4,6,105.31297,0,3,2,2019,5,0,75,70,1,0,0,6.2510242,6.2510242,0,0,0,0,0,0,0,0,0,0,46.95,53.4,45.32,61.53,10,1,1,0,0,7,4,5,1,1300.5,1503618.3,1279276.1,149711.64,0,3058.834 -15861,19526,35257,35258,-9,-9,1,0,25,0,0,1,1,0,0,0,4,0,6.9816165,7.2787304,4,-2,22.40037,-9,-9,-9,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,7.0131841,0,55.34,54.26,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,0,920,200872.7,106653.53,135684.28,0,2115.3677 -15861,19526,35258,35257,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.5211878,8.108202,6.6461563,4,2,-32.863026,0,-9,-9,2019,8,0,37,44,1,0,0,6.3408966,6.3408966,0,0,0,0,0,1,1,0,6.2946482,0,57.16,56.15,55.34,54.26,1.666666666666667,1,1,0,0,2,10,3,0,920,200872.7,106653.53,135684.28,0,2115.3677 -15862,19527,35259,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.8167076,8.9878626,0,0,0,-910.44861,0,-9,-9,2019,0,0,38,38,1,0,0,19.746254,19.746254,0,0,0,0,0,0,0,0,3.0705316,0,60.12,54.8,-9,-9,10,4,2,0,0,7,6,5,1,518,321592.03,164672.7,0,0,2330.3711 -15863,19528,35260,-9,35261,35262,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-827.67108,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,582,21186.805,-13068.207,148809.89,-3538.2576,10438.563 -15863,19528,35261,35262,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,0,0,0,5,-7,89.763504,0,-9,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,9.4305124,0,52.77,55.33,68.88,38.65,10,1,1,0,0,0,5,5,1,582,21186.805,-13068.207,148809.89,-3538.2576,10438.563 -15863,19528,35262,35261,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.2266111,9.186841,0,5,7,-24.517099,0,3,2,2019,6,0,80,70,1,0,0,13.194526,13.194526,0,0,0,0,2,1,1,0,3.634331,0,68.88,38.65,52.77,55.33,8.333333333333334,1,1,0,0,7,5,5,1,582,21186.805,-13068.207,148809.89,-3538.2576,10438.563 -15863,19529,35263,-9,35261,35262,1,1,20,0,1,0,2,2,-9,0,5,7.4554801,7.3728886,0,0,0,-951.96326,0,2,2,2019,11,0,37,40,1,0,1,4.8239784,4.8239784,0,0,0,0,0,1,1,0,0,0,60.56,54.81,-9,-9,10,1,1,0,0,5,5,3,1,200,0,0,0,0,1432.7269 -15863,19530,35264,-9,35261,35262,1,1,18,0,1,0,2,2,-9,0,5,6.3849463,6.4173169,0,0,0,-1012.1836,0,2,2,2019,8,0,8,0,1,0,1,7.9590459,7.9590459,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,5,2,1,304,0,0,0,0,-17.453007 -15864,19531,35265,-9,35267,35269,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.507,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 -15864,19531,35266,-9,35267,35269,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1117.9452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 -15864,19531,35267,35269,-9,-9,1,0,29,0,4,0,2,2,-9,0,4,0,0,0,7,-1,4.3699756,0,2,2,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,34.63,53,43.95,53.15,5,1,1,0,0,1,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 -15864,19531,35268,-9,35267,35269,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.41992,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 -15864,19531,35269,35267,-9,-9,1,1,30,0,4,0,2,2,-9,0,2,8.1931734,8.3261156,0,7,1,-44.279423,0,-9,-9,2019,18,6,47,50,1,6,0,7.3058252,7.3058252,0,0,0,0,0,1,1,0,0,0,43.95,53.15,34.63,53,3.333333333333333,1,1,0,0,3,9,2,0,281.20001,33195.305,28375.609,0,0,2258.2603 -15865,19532,35270,35271,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.2612782,8.2404299,0,28,-7,109.36125,0,3,2,2019,7,0,38,38,1,0,0,14.052068,14.052068,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.28,62.6,10,1,1,0,0,9,8,5,1,546.5,523896.09,120442.55,418110,103650.88,5725.4072 -15865,19532,35271,35270,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.0761852,9.1809788,0,28,7,181.62329,0,2,2,2019,16,6,38,38,1,6,0,33.378738,33.378738,0,0,0,0,0,0,0,0,0,0,46.28,62.6,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,546.5,523896.09,120442.55,418110,103650.88,5725.4072 -15865,19533,35272,-9,35270,35271,1,1,24,0,0,0,2,2,-9,0,3,8.5950899,8.2310753,0,0,0,-880.80334,0,2,2,2019,9,0,48,42,1,0,1,10.107317,10.107317,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,1414,-302244.72,116903.98,0,0,1387.394 -15865,19534,35273,-9,35270,35271,1,0,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-902.83704,0,2,2,2019,27,11,0,9,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,23.14,59.02,-9,-9,3.333333333333333,1,1,1,0,1,8,1,1,407,200297.58,0,0,0,0 -15866,19535,35274,-9,35275,-9,1,0,34,0,0,0,2,2,-9,0,3,7.3134732,7.0527143,0,0,0,-1021.206,0,3,-9,2019,19,7,21,28,1,7,0,7.1223655,7.1223655,0,0,0,0,0,1,1,0,0,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,8,9,3,0,198,-3551.0947,0,0,0,347.92987 -15866,19536,35275,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1089.8582,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,50.82,39.22,-9,-9,6.666666666666667,4,6,0,1,1,9,1,0,443,-439861.09,0,0,0,588.88989 -15867,19537,35276,35277,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.3725233,9.0256929,0,25,1,30.990053,0,1,2,2019,9,1,32,31,1,1,0,31.238129,31.238129,0,0,0,0,5.48,0,0,0,3.509136,0,54.74,57.22,50.58,54.04,10,1,1,0,0,12,12,5,1,1609,2118847,1597976.3,230593.69,0,10287.521 -15867,19537,35277,35276,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.8079824,9.4192619,0,25,-1,55.557987,0,2,2,2019,7,0,85,50,1,0,0,20.105732,20.105732,0,0,0,0,0,0,0,0,3.8146908,0,50.58,54.04,54.74,57.22,8.333333333333334,1,1,0,0,12,12,5,1,1609,2118847,1597976.3,230593.69,0,10287.521 -15868,19538,35278,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.98566,0,3,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,55.43,16.78,-9,-9,5,1,1,1,0,1,4,1,0,909,-239307.38,0,0,0,997.65112 -15869,19539,35279,35280,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,53,-1,-.420674,0,3,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.834393,0,60.84,43.45,53,47,0,1,1,0,0,9,12,4,1,272,936750.38,438614.94,542158.75,0,3474.249 -15869,19539,35280,35279,-9,-9,1,1,73,0,0,0,2,2,-9,1,3,8.3274612,8.3218479,0,7,1,-118.1004,0,-9,-9,2019,9,0,20,-9,1,1,0,27.290388,27.290388,0,0,0,0,0,1,1,0,4.043695,0,53,47,60.84,43.45,8,1,1,0,0,9,12,4,1,272,936750.38,438614.94,542158.75,0,3474.249 -15870,19540,35281,35282,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.8029227,7.2601681,48,-1,-29.928154,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,5.48,1,1,0,6.1169014,7.0500164,57.5,37.38,53,47,6.666666666666667,1,1,0,0,4,2,3,1,653.5,756377.88,486178.16,184089.66,0,2716.1614 -15870,19540,35282,35281,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.9713531,7.5177479,9,1,39.63343,-9,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1856747,7.0791259,53,47,57.5,37.38,7,1,1,0,0,0,2,3,1,653.5,756377.88,486178.16,184089.66,0,2716.1614 -15871,19541,35283,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.3900099,8.8378096,7.4594202,0,0,-918.1026,0,-9,-9,2019,5,1,37,38,1,1,0,12.644519,12.644519,0,0,0,0,0,1,1,0,8.1607695,0,57.63,56.14,-9,-9,8.333333333333334,2,3,0,0,8,9,4,1,658,777911.31,483206.34,370722.72,192124.67,2709.6804 -15871,19541,35284,-9,35283,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.93311,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,658,777911.31,483206.34,370722.72,192124.67,2709.6804 -15871,19541,35285,-9,35283,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.36597,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,4,1,658,777911.31,483206.34,370722.72,192124.67,2709.6804 -15872,19542,35286,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.9629493,6.3118577,0,0,-1114.8409,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4256597,46.16,54.36,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,580,-110310.73,93195.789,0,0,863.00275 -15873,19543,35287,-9,35288,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-995.1394,-9,3,-9,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1387.5,-167695.63,32802.453,0,0,1070.4523 -15873,19543,35288,-9,-9,-9,1,0,39,1,1,0,3,3,-9,0,4,8.2693176,7.943295,0,0,0,-988.58978,0,-9,-9,2019,10,0,40,36,1,0,0,9.6803837,9.6803837,0,0,0,0,0,1,1,0,0,0,50.26,53.71,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1387.5,-167695.63,32802.453,0,0,1070.4523 -15874,19544,35289,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.1440411,5.4097357,0,0,-1009.9321,0,2,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.3850422,44.59,45.67,-9,-9,6.666666666666667,1,1,0,0,5,13,2,1,3529,88421.742,28307.652,31276.746,0,636.08954 -15874,19545,35290,-9,35289,-9,1,1,32,0,0,0,2,2,-9,0,5,7.8311806,7.9085846,0,0,0,-963.24994,0,1,2,2019,6,0,38,30,1,0,0,8.8529301,8.8529301,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,341,-204985.11,0,0,0,1046.9529 -15875,19546,35291,35292,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,0,0,45,0,-47.691196,0,3,3,2019,16,4,0,0,4,4,0,0,0,0,0,48.619221,0,0,1,1,0,4.6127801,0,48.04,13.58,54.77,55.87,8.333333333333334,1,1,0,0,0,2,2,0,1127.5,527338.25,13955.48,94431.328,0,2121.4045 -15875,19546,35292,35291,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.7259488,6.7307234,45,0,-6.0482478,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,74.5,1,1,0,4.8236437,6.732657,54.77,55.87,48.04,13.58,6.666666666666667,1,1,0,0,6,2,2,0,1127.5,527338.25,13955.48,94431.328,0,2121.4045 -15876,19547,35293,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.5038462,8.2970161,0,0,0,-1040.626,0,2,2,2019,1,0,37,35,1,0,0,13.739836,13.739836,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,108,478709.16,0,0,0,2682.0476 -15877,19548,35294,35295,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.4314299,9.75735,0,18,2,-3.8260224,0,1,1,2019,9,0,55,50,1,1,0,34.224495,34.224495,0,0,0,0,0,0,0,0,7.4990168,0,52,55,50,55,8,1,1,0,0,9,8,5,1,662,181376,177819,667993.69,469298.78,13144.059 -15877,19548,35295,35294,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.398881,9.2062464,0,7,-2,69.610405,-9,-9,-9,2019,10,0,43,0,1,1,0,27.544348,27.544348,0,0,0,0,0,0,0,0,5.2194042,0,50,55,52,55,8,1,1,0,0,9,8,5,1,662,181376,177819,667993.69,469298.78,13144.059 -15877,19548,35296,-9,35295,35294,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.63269,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,662,181376,177819,667993.69,469298.78,13144.059 -15878,19549,35297,35299,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,0,0,0,14,-5,28.812,-9,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.37,39.35,57.33,53.46,5,1,1,0,0,0,11,4,1,1409,375084.25,131781.11,457948.28,250615.48,2287.6423 -15878,19549,35298,-9,35297,35299,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.29669,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,4,1,1409,375084.25,131781.11,457948.28,250615.48,2287.6423 -15878,19549,35299,35297,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.6882811,8.5564213,0,14,5,98.492912,-9,2,2,2019,9,0,40,0,1,0,0,17.071415,17.071415,0,0,0,0,0,1,1,0,1.6441329,0,57.33,53.46,47.37,39.35,8.333333333333334,1,1,0,0,10,11,4,1,1409,375084.25,131781.11,457948.28,250615.48,2287.6423 -15879,19550,35300,35301,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.0725007,6.8480916,49,4,58.441479,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8787398,6.945519,63.48,51.85,51,46,10,1,1,0,0,0,11,3,1,647,1527505.3,299052.22,901032.69,0,2510.2661 -15879,19550,35301,35300,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.8615875,7.4634023,52,-4,2.4613724,0,3,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.5776749,7.5500965,51,46,63.48,51.85,7,1,1,0,0,0,11,3,1,647,1527505.3,299052.22,901032.69,0,2510.2661 -15880,19551,35302,-9,35303,35304,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1016.2247,-9,2,2,2019,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45.26,56.13,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,336.66666,1362828.5,367062.75,303351.59,0,5047.4526 -15880,19551,35303,35304,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.9177756,8.1388979,0,10,-1,102.87851,0,2,2,2019,11,2,37,37,1,2,0,9.1960478,9.1960478,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.63,56.14,1.666666666666667,1,1,0,0,11,5,5,1,336.66666,1362828.5,367062.75,303351.59,0,5047.4526 -15880,19551,35304,35303,-9,-9,1,1,50,0,1,0,2,2,-9,0,5,9.307476,9.2606983,0,10,1,-40.130501,0,2,2,2019,8,0,42,53,1,0,0,35.345448,35.345448,0,0,0,0,0,0,0,0,5.1419654,0,57.63,56.14,49.04,55.86,8.333333333333334,1,1,0,0,11,5,5,1,336.66666,1362828.5,367062.75,303351.59,0,5047.4526 -15880,19552,35305,-9,35303,35304,1,0,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-910.56146,-9,2,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,3,5,1,1,1245,52456.023,0,0,0,0 -15881,19553,35306,35307,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,8.2506657,8.0507545,0,9,1,-61.78281,0,3,3,2019,10,0,40,40,1,1,0,8.0313187,8.0313187,0,0,0,0,7,1,1,0,0,0,52,48,38,25,7,1,1,0,1,11,7,4,1,297,824617.69,198545.89,316281,0,3638.5435 -15881,19553,35307,35306,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,7.1710811,7.4863091,0,9,-1,71.877747,0,-9,3,2019,16,4,30,30,1,4,0,7.4702158,7.4702158,1,0,37.253414,0,0,1,1,0,0,0,38,25,52,48,5,1,1,0,1,11,7,4,1,297,824617.69,198545.89,316281,0,3638.5435 -15881,19554,35308,-9,35309,-9,1,0,17,0,0,1,3,0,-9,0,3,0,0,0,0,0,-859.47559,-9,-9,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.36,54.33,-9,-9,3.333333333333333,1,1,0,1,0,7,3,1,457,0,0,0,0,1108.2092 -15881,19554,35309,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,7.2025347,7.257019,0,0,0,-1108.8663,0,-9,-9,2019,16,6,33,36,1,6,0,5.1333923,5.1333923,0,0,0,0,7,1,1,0,0,0,44.03,39.26,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,457,0,0,0,0,1108.2092 -15882,19555,35310,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.1781859,5.1529346,0,0,-896.15582,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,1.3973588,3.6780565,22.493006,0,1,1,0,5.743216,5.3414431,53.81,48.03,-9,-9,5,1,1,0,0,0,11,2,1,416,577560.94,-73266.25,146673.42,0,1108.7616 -15883,19556,35311,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.1633902,7.7071805,0,0,0,-1056.2799,0,3,3,2019,12,0,60,54,1,0,0,7.8264923,7.8264923,0,0,0,0,0,0,0,0,0,0,51.25,52.08,-9,-9,6.666666666666667,1,1,0,0,10,13,4,1,789,143538.3,0,53243.664,0,1312.7871 -15884,19557,35312,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-982.76379,-9,2,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,64.66,50.23,-9,-9,3.333333333333333,3,4,0,0,0,9,1,0,218,548.82288,0,0,0,0 -15885,19558,35313,-9,-9,-9,1,1,54,0,0,0,1,1,-9,1,3,0,5.0654659,5.1764288,0,0,-1022.1676,0,3,2,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,5.2379351,0,32.99,53.81,-9,-9,1.666666666666667,3,4,0,1,1,9,2,0,2719,390393.09,27938.572,321345.03,0,1314.4604 -15886,19559,35314,-9,35315,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.7465,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,3,0,870.33331,121042.4,-3243.0386,0,0,1560.7662 -15886,19559,35315,-9,-9,-9,1,0,44,1,2,0,2,2,-9,0,4,7.6708179,7.8250337,0,0,0,-1044.1564,0,3,3,2019,11,0,16,16,1,1,0,18.898199,18.898199,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,3,4,0,1,10,8,3,0,870.33331,121042.4,-3243.0386,0,0,1560.7662 -15886,19559,35316,-9,35315,-9,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.1372,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,3,4,-9,0,0,8,3,0,870.33331,121042.4,-3243.0386,0,0,1560.7662 -15886,19560,35317,-9,35315,-9,1,0,20,1,2,0,2,2,-9,0,4,0,0,0,0,0,-946.50287,1,2,-9,2019,12,0,0,16,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,0,1,3,8,1,0,375,-306120.38,0,0,0,-302.9808 -15887,19561,35318,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-865.58356,1,-9,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,30.49,59.08,-9,-9,5,1,1,0,0,0,5,1,0,767,0,0,0,0,1053.3883 -15888,19562,35319,35320,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,3,2,-89.780701,0,-9,-9,2019,25,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,11.01,49.65,23.98,44.85,0,1,1,0,1,6,2,3,0,203,204400.75,235065.34,0,0,2535.5854 -15888,19562,35320,35319,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.5871677,7.4519334,0,3,-2,53.902054,0,3,2,2019,24,11,26,25,1,11,0,7.3167434,7.3167434,0,0,0,0,42,1,1,0,0,0,23.98,44.85,11.01,49.65,5,1,1,0,0,10,2,3,0,203,204400.75,235065.34,0,0,2535.5854 -15889,19563,35321,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,7.6134853,7.9450297,5.6682091,0,0,-1071.9181,0,-9,-9,2019,3,0,16,16,1,0,0,15.418778,15.418778,0,0,0,0,0,1,1,0,5.7140765,0,54.65,27.97,-9,-9,10,1,1,0,0,9,9,3,1,757,23942.523,-11671.668,0,0,1492.9398 -15889,19563,35322,-9,35321,-9,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-843.88593,1,2,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,1,1,0,0,1,9,3,1,757,23942.523,-11671.668,0,0,1492.9398 -15889,19564,35323,-9,35321,-9,1,0,22,0,0,0,1,1,-9,0,3,7.4000101,7.4131336,0,0,0,-1109.3583,0,2,-9,2019,26,10,25,29,1,10,1,6.334868,6.334868,0,0,0,0,5.48,1,1,0,0,0,42.91,54.71,-9,-9,3.333333333333333,1,1,0,0,5,9,3,1,375,-157301.42,70809.117,0,0,407.34302 -15890,19565,35324,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4624395,8.5433683,0,0,0,-1138.7772,0,3,3,2019,6,0,37,37,1,0,0,19.646151,19.646151,0,0,0,0,0,0,0,0,3.0523448,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,499,-589788.81,29208.605,17573.313,0,604.26251 -15891,19566,35325,35326,-9,-9,1,0,54,0,0,0,3,3,-9,1,3,8.1535587,8.0968142,0,10,-8,-111.49265,0,-9,2,2019,12,0,35,0,1,0,0,8.7385283,8.7385283,0,0,0,0,42,1,1,0,0,0,48.15,37.16,27.89,18.61,5,1,1,0,0,2,5,3,0,2927.5,1325362.4,830841.31,251173.3,0,2542.4954 -15891,19566,35326,35325,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,10,8,-35.386097,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,48.15,37.16,3.333333333333333,1,1,0,0,5,5,3,0,2927.5,1325362.4,830841.31,251173.3,0,2542.4954 -15892,19567,35327,35328,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,0,0,39,8,0,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,1,0,15.388294,0,0,1,1,0,1.6498218,0,50.68,19.03,62.49,55.09,5,2,3,0,0,7,4,1,1,241.5,132312.58,0,0,0,1135.6136 -15892,19567,35328,35327,-9,-9,1,0,58,0,0,0,3,3,-9,1,4,0,0,0,40,-8,0,0,-9,-9,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,50.68,19.03,5,1,1,0,0,0,4,1,1,241.5,132312.58,0,0,0,1135.6136 -15892,19568,35329,-9,35328,35327,1,1,24,0,0,0,1,1,-9,0,5,8.316637,8.1486368,0,0,0,-984.11249,-9,3,2,2019,15,3,43,0,1,3,1,8.9206753,8.9206753,0,0,0,0,0,1,1,0,0,0,27.71,67.3,-9,-9,6.666666666666667,4,2,0,0,1,4,4,1,103,-77114.914,-58392.93,0,0,1988.353 -15893,19569,35330,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,3.6590943,3.842591,0,0,-1093.624,-9,3,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2728605,44.24,35.51,-9,-9,5,1,1,0,0,0,12,2,1,615,190971.7,-61303.203,211837.7,0,-117.14529 -15894,19570,35331,-9,35332,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.5397,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,966.5,-293869.78,99858.563,0,0,1370.3267 -15894,19570,35332,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,6.2981334,6.2864819,0,0,0,-953.86902,0,2,2,2019,7,0,27,27,1,0,0,2.4734819,2.4734819,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,966.5,-293869.78,99858.563,0,0,1370.3267 -15895,19571,35333,35334,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.8982568,7.0773964,47,-1,86.84333,0,3,3,2019,10,2,0,0,4,2,0,0,0,1,0,143.61989,0,0,1,1,0,0,6.7963042,59.15,4.64,53.61,59.13,10,1,1,0,0,0,1,2,1,419,959381.38,272237.25,522077.38,0,2371.6543 -15895,19571,35334,35333,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,47,1,-124.12168,0,2,2,2019,12,3,0,0,4,3,0,0,0,1,0,0,0,120,1,1,0,0,0,53.61,59.13,59.15,4.64,5,1,1,0,0,0,1,2,1,419,959381.38,272237.25,522077.38,0,2371.6543 -15895,19572,35335,35336,35334,35333,1,0,45,0,0,0,2,2,-9,0,3,7.4456382,7.7528405,0,3,0,-3.5666149,0,3,2,2019,7,0,32,24,1,0,0,7.4668717,7.4668717,0,0,0,0,27,1,1,0,0,0,51.02,44.19,49.86,55.31,8.333333333333334,1,1,0,0,10,1,4,1,1024.5,796364.63,681504.63,117603.81,35074.246,2875.4187 -15895,19572,35336,35335,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.341341,8.1526108,6.5555515,3,0,41.902733,0,-9,-9,2019,9,0,40,40,1,0,0,11.574105,11.574105,0,0,0,0,0,1,1,0,6.2706928,0,49.86,55.31,51.02,44.19,8.333333333333334,1,1,0,0,10,1,4,1,1024.5,796364.63,681504.63,117603.81,35074.246,2875.4187 -15896,19573,35337,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.8381085,7.775166,0,0,0,-1032.634,0,3,2,2019,2,0,30,30,1,0,0,8.7098846,8.7098846,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,2902,150080.53,0,0,0,1253.9628 -15897,19574,35338,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.0922737,8.0832052,0,0,0,-1186.4457,0,-9,-9,2019,12,0,41,37,1,0,0,10.441792,10.441792,0,0,0,0,0,0,0,0,0,0,48.11,56.11,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,243,421928.56,37575.246,0,0,1351.1812 -15898,19575,35339,35340,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.0747728,4.9343276,52,3,111.94982,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,5.3680162,5.4501152,53,46,51,46,8,1,1,0,0,4,10,2,1,2606.5,473291.41,139880.03,177432.42,0,2134.1016 -15898,19575,35340,35339,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0857687,6.3915205,52,-3,6.488687,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,15.832842,23.739128,134.35568,0,1,1,0,6.0007877,6.151083,51,46,53,46,7,1,1,0,0,3,10,2,1,2606.5,473291.41,139880.03,177432.42,0,2134.1016 -15899,19576,35341,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.3318901,7.7272658,10,19,-59.504776,0,3,3,2019,6,0,0,40,4,0,0,0,0,0,0,0,0,2,0,0,0,7.0333834,7.3486962,57.06,57.76,51,55,8.333333333333334,1,1,0,0,12,11,2,1,286,460602.19,376443.16,0,0,428.14835 -15900,19577,35342,35343,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,6.8720431,7.158237,0,5,10,-100.25214,0,2,2,2019,6,0,30,40,1,0,0,3.7731774,3.7731774,0,0,0,0,0,1,1,0,0,0,43.79,58.33,56.18,53.85,6.666666666666667,2,3,0,0,11,8,3,1,936.5,323300.88,239390.53,184113.63,15958.441,1704.5571 -15900,19577,35343,35342,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,7.5400243,7.7901778,0,9,-10,-31.808893,0,-9,2,2019,7,0,36,30,1,0,0,6.0310078,6.0310078,0,0,0,0,0,1,1,0,0,0,56.18,53.85,43.79,58.33,8.333333333333334,2,3,0,1,8,8,3,1,936.5,323300.88,239390.53,184113.63,15958.441,1704.5571 -15901,19578,35344,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,5.7407146,5.4253759,0,0,-966.9577,0,2,1,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.157269,5.5353789,53,45,-9,-9,8,1,1,0,0,0,6,2,1,1508,379351.5,-26961.031,326100.22,0,299.86066 -15902,19579,35345,35346,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.5417633,8.5603838,47,1,108.73935,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8281794,8.5551176,59.43,58.05,49.41,58.28,10,1,1,0,0,5,13,4,1,252,994831.38,701006,298557.56,0,3905.1152 -15902,19579,35346,35345,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,47,-1,125.66136,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.2246218,0,49.41,58.28,59.43,58.05,8.333333333333334,1,1,0,0,0,13,4,1,252,994831.38,701006,298557.56,0,3905.1152 -15903,19580,35347,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,0,5.4232306,5.2360206,0,0,-980.67017,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2736583,60.12,54.8,-9,-9,10,1,1,0,0,0,13,2,1,1449,8854.5322,31409.318,217621.03,0,980.77142 -15903,19581,35348,-9,35347,-9,1,1,29,0,0,0,1,1,-9,0,4,7.3547773,7.4281483,0,0,0,-868.80249,0,3,2,2019,10,0,25,30,1,0,0,8.5309486,8.5309486,0,0,0,0,0,1,1,0,0,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,531,259761.33,0,0,0,1026.2352 -15903,19582,35349,-9,35347,-9,1,1,31,0,0,0,2,2,-9,0,4,8.0257463,7.8090382,0,0,0,-944.20093,0,3,2,2019,6,0,40,8,1,0,0,6.4499049,6.4499049,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,9,13,3,1,247,291456.16,-26355.309,0,0,613.9809 -15904,19583,35350,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.596241,8.3663092,0,0,0,-880.24762,-9,2,2,2019,11,0,43,0,1,0,0,14.225698,14.225698,0,0,0,0,0,1,1,0,3.4308987,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,742,210559.19,118401.88,0,0,824.54578 -15905,19584,35351,35352,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,8.0382357,7.8394542,47,-1,-98.938004,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.4069099,7.9851947,57.06,57.76,54.2,57.49,10,1,1,0,0,3,2,4,1,215,2475576,1417064.1,472845.41,0,3691.2205 -15905,19584,35352,35351,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.7727923,7.4889002,9,1,-84.42746,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1754875,7.5623326,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,4,2,4,1,215,2475576,1417064.1,472845.41,0,3691.2205 -15906,19585,35353,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.9232168,9.0470009,0,0,0,-1018.4539,0,-9,-9,2019,6,0,49,48,1,0,0,13.839988,13.839988,0,0,0,0,0,0,0,0,4.1710677,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,2388,445845.34,429017.59,77212.055,78197.594,2964.7612 -15906,19586,35354,-9,-9,35353,1,1,25,0,0,0,2,2,1,0,5,7.2423496,7.0381551,0,0,0,-948.30151,-9,-9,2,2019,5,1,37,0,1,1,1,3.7830155,3.7830155,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,1113,-13563.015,0,0,0,797.93494 -15907,19587,35355,35356,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,4.7654123,5.504416,8,-5,-1.7341121,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,5.48,1,1,0,4.3558302,5.2927108,30.6,56.16,38.33,49.84,5,1,1,0,0,4,7,3,1,1490.5,858044.75,378273.88,275881.03,0,2342.9058 -15907,19587,35356,35355,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.4859982,8.1152744,8,5,-88.65406,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,3.7709999,7.7589321,38.33,49.84,30.6,56.16,5,1,1,0,0,0,7,3,1,1490.5,858044.75,378273.88,275881.03,0,2342.9058 -15908,19588,35357,35358,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.7651238,7.672049,0,9,-2,-102.35497,0,2,2,2019,8,0,30,30,1,0,0,6.6025791,6.6025791,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.53,52.21,8.333333333333334,1,1,0,0,10,4,3,1,769,203454.69,4621.1094,203274.38,0,976.46545 -15908,19588,35358,35357,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,5.6771383,5.5552464,9,2,-21.296026,0,2,2,2019,21,9,0,30,3,9,0,0,0,0,0,0,0,0,0,0,0,4.7679911,5.4975958,33.53,52.21,54.79,55.86,3.333333333333333,1,1,1,0,10,4,3,1,769,203454.69,4621.1094,203274.38,0,976.46545 -15908,19589,35359,-9,35357,35358,1,1,19,0,0,0,2,2,1,0,1,6.2314625,6.0595117,0,0,0,-953.15198,-9,2,2,2019,6,1,16,0,1,1,1,3.7782419,3.7782419,0,0,0,0,0,0,0,0,2.1058462,0,49.43,39.8,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,1034,-433082.94,28829.188,0,0,52.607204 -15909,19590,35360,35361,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.6403975,6.5715103,30,-3,71.724991,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,0,6.7081261,56.84,17.43,24.4,43.23,8.333333333333334,1,1,0,0,0,6,2,1,876.5,167234.56,355268.63,124214.84,0,811.08374 -15909,19590,35361,35360,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.035202,5.8144131,31,3,-17.223076,0,-9,-9,2019,26,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,4.4698772,5.817781,24.4,43.23,56.84,17.43,3.333333333333333,1,1,0,0,0,6,2,1,876.5,167234.56,355268.63,124214.84,0,811.08374 -15910,19591,35362,35363,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,-1,48.596577,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,3.0991476,0,48.02,31.03,55.96,23.14,8.333333333333334,1,1,0,0,0,2,2,0,614,936455.63,373304.75,153672.41,0,1610.9025 -15910,19591,35363,35362,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.330152,7.3193312,9,1,71.596764,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,11.065557,0,0,1,1,0,5.6221151,7.0699086,55.96,23.14,48.02,31.03,8.333333333333334,1,1,0,0,9,2,2,0,614,936455.63,373304.75,153672.41,0,1610.9025 -15911,19592,35364,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.0186462,7.4291954,0,0,0,-1030.0806,0,-9,-9,2019,9,1,40,48,1,1,0,9.0938921,9.0938921,0,0,0,0,0,0,0,0,0,0,48.26,47.91,-9,-9,6.666666666666667,1,1,0,1,7,1,4,0,1128,-20125.877,0,0,0,705.26001 -15912,19593,35365,35366,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.173604,7.2115798,0,6,1,-15.861483,0,3,3,2019,12,1,24,24,1,1,0,4.9325633,4.9325633,0,0,0,0,0,1,1,0,0,0,48.51,50.31,55.19,54.26,8.333333333333334,1,1,0,0,7,13,3,1,696,98658.172,52098.59,234227.09,194891.16,1616.8738 -15912,19593,35366,35365,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,7.6876616,7.8262782,0,6,-1,-21.437262,0,3,3,2019,9,0,35,35,1,0,0,7.6032653,7.6032653,0,0,0,0,0,1,1,0,0,0,55.19,54.26,48.51,50.31,8.333333333333334,1,1,0,0,7,13,3,1,696,98658.172,52098.59,234227.09,194891.16,1616.8738 -15913,19594,35367,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,6.4613819,6.2587938,0,4,-7,35.341602,0,3,-9,2019,10,3,20,0,1,3,0,3.7405391,3.7405391,0,0,0,0,0,1,1,0,0,0,43.15,50.5,41.23,34.14,3.333333333333333,1,1,0,1,1,8,2,0,349,119973.27,0,0,0,531.69574 -15913,19595,35368,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,0,0,0,4,7,31.585186,0,-9,-9,2019,20,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,34.14,43.15,50.5,0,1,1,1,1,0,8,2,0,641,232561.45,0,0,0,294.19278 -15914,19596,35369,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.1892376,8.328743,5.6144447,0,0,-923.12158,0,3,3,2019,0,0,60,55,1,0,0,7.6093369,7.6093369,0,0,0,0,2,0,0,0,6.0639281,5.6186495,57.16,56.15,-9,-9,10,1,1,0,0,9,10,4,1,227,445915.34,593568.69,230315.8,0,2283.3645 -15915,19597,35370,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-885.1983,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5973778,0,65.14,34.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,663,312950.22,106963.76,175573.53,0,683.9126 -15916,19598,35371,35372,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.7165012,8.9754171,0,10,-4,-95.655823,0,3,3,2019,7,0,15,40,1,0,0,62.430485,62.430485,0,0,0,0,0,1,1,0,0,0,51.14,60.45,59.48,46.97,8.333333333333334,1,1,0,0,11,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 -15916,19598,35372,35371,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.1631079,7.8348732,0,10,4,-70.43338,0,3,3,2019,6,0,45,40,1,0,0,8.2072477,8.2072477,0,0,0,0,0,1,1,0,0,0,59.48,46.97,51.14,60.45,8.333333333333334,4,2,0,0,11,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 -15916,19598,35373,-9,35371,35372,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.85522,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 -15916,19598,35374,-9,35371,35372,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1065.3029,-9,1,2,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,561.5,294760.88,0,260531.13,14206.35,4156.2383 -15917,19599,35375,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.7725487,7.5431662,0,0,0,-923.38873,0,-9,-9,2019,12,0,5,35,1,0,0,52.361389,52.361389,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,3.333333333333333,1,1,0,0,11,1,3,0,650,-66626.563,197268.09,0,0,1441.3474 -15918,19600,35376,35377,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.7210226,8.758811,47,0,-157.52362,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1094089,8.3673229,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,4,6,4,1,877,1353338.3,955252,360818.38,0,4477.3672 -15918,19600,35377,35376,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,5.3465838,5.0039783,47,0,76.576469,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1316323,5.4388328,57.06,57.76,60.12,54.8,10,1,1,0,0,0,6,4,1,877,1353338.3,955252,360818.38,0,4477.3672 -15919,19601,35378,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.6598425,7.9238992,0,0,0,-1200.8385,0,-9,2,2019,25,10,43,38,1,10,0,7.4165859,7.4165859,0,0,0,0,14.5,0,0,0,0,0,27.39,44.17,-9,-9,8.333333333333334,1,1,0,0,10,7,3,0,4850,247662.19,0,114995.15,-2237.2119,685.26459 -15920,19602,35379,35380,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,19,-7,0,0,2,2,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,71.5,1,1,0,0,0,47.59,17.43,53,47,6.666666666666667,1,1,0,0,0,1,1,0,431.5,581384.13,159182.09,215668.36,0,3619.0747 -15920,19602,35380,35379,-9,-9,1,1,65,0,0,0,2,2,-9,1,3,0,0,0,6,7,0,-9,-9,-9,2019,10,0,0,0,3,1,0,0,0,1,0,0,0,0,1,1,0,5.4197769,0,53,47,47.59,17.43,7,1,1,0,0,0,1,1,0,431.5,581384.13,159182.09,215668.36,0,3619.0747 -15921,19603,35381,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.7155566,6.4752717,0,0,-880.52472,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,4.4457617,0,51.194237,0,1,1,0,0,6.213017,55.47,29.04,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1197,453103,-67677.734,0,0,1873.5162 -15922,19604,35382,35383,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4868255,7.3955436,39,1,119.89884,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1137261,7.5931582,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,1447,590136.06,335681.63,274502.25,0,3001.4241 -15922,19604,35383,35382,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.0242491,7.1040611,39,-1,-131.99763,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1069846,7.3829651,57.16,56.15,54.2,57.49,1.666666666666667,1,1,0,0,0,1,3,1,1447,590136.06,335681.63,274502.25,0,3001.4241 -15923,19605,35384,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,6.9222913,6.6546612,0,0,0,-894.11243,-9,2,2,2019,9,0,27,0,1,0,0,3.807909,3.807909,0,0,0,0,0,1,0,1,0,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,9,10,2,0,339,112397.83,0,0,0,1358.5996 -15923,19605,35385,-9,35384,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-873.78076,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,2,0,339,112397.83,0,0,0,1358.5996 -15924,19606,35386,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,8.290576,8.3320065,0,0,-1064.3727,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.1623383,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,400,921030.69,337708.91,347993.06,0,2171.4609 -15925,19607,35387,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.0267,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,39.21,-9,-9,6.666666666666667,1,1,0,0,7,2,1,1,760,1941.4371,0,0,0,662.53705 -15926,19608,35388,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,2,7.9832182,8.0147581,0,0,0,-1103.1471,0,-9,-9,2019,8,1,48,48,1,1,0,6.4049029,6.4049029,0,0,0,0,0,1,1,0,0,0,51.2,46.98,-9,-9,6.666666666666667,1,1,0,0,2,1,3,0,610,791672.25,420017.53,0,0,2863.4211 -15927,19609,35389,35390,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,.16529489,.0070053954,0,34,-2,8.1663961,0,-9,-9,2019,7,0,20,0,1,0,0,.0011118212,.0011118212,0,0,0,0,71.5,1,1,0,0,0,56.86,50.75,53.07,30.04,8.333333333333334,1,1,0,0,8,2,2,0,234.5,205471.47,0,103987.28,0,575.95325 -15927,19609,35390,35389,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,3.968724,3.8924241,34,2,-14.122945,0,-9,-9,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.1145458,53.07,30.04,56.86,50.75,8.333333333333334,1,1,0,0,0,2,2,0,234.5,205471.47,0,103987.28,0,575.95325 -15927,19610,35391,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.30687,7.4736886,0,0,0,-1090.1791,0,-9,-9,2019,9,0,32,0,1,0,0,6.3884192,6.3884192,0,0,0,0,2,1,1,0,0,0,49.23,55.95,-9,-9,8.333333333333334,1,1,0,0,2,2,3,0,1575,81656.563,0,0,0,1245.225 -15928,19611,35392,35393,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,8,-3,-12.394567,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,3.4805298,0,55.07,43.31,58.72,16.96,8.333333333333334,1,1,0,0,0,7,2,1,731.5,529085.75,47540.203,163159.66,0,1206.5063 -15928,19611,35393,35392,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,5.9369316,5.7690315,8,3,93.528404,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,8.8153858,0,0,1,1,0,2.7404206,6.185925,58.72,16.96,55.07,43.31,8.333333333333334,1,1,0,0,0,7,2,1,731.5,529085.75,47540.203,163159.66,0,1206.5063 -15929,19612,35394,-9,35395,35396,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-970.27008,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,833.66669,7563855.5,1343844.5,1781127,0,6940.8335 -15929,19612,35395,35396,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,8.4371414,8.2429523,26,-12,57.011925,0,2,1,2019,8,0,0,20,4,0,0,0,0,0,0,0,0,2,1,1,0,7.6940751,8.1908131,49.86,55.31,61.01,53.18,8.333333333333334,1,1,0,0,12,9,5,1,833.66669,7563855.5,1343844.5,1781127,0,6940.8335 -15929,19612,35396,35395,-9,-9,1,1,62,0,1,0,1,1,-9,0,5,9.0314617,9.1173706,0,10,12,80.956192,0,-9,-9,2019,5,0,40,10,1,0,0,22.715773,22.715773,0,0,0,0,0,1,1,0,3.091043,0,61.01,53.18,49.86,55.31,8.333333333333334,1,1,0,0,9,9,5,1,833.66669,7563855.5,1343844.5,1781127,0,6940.8335 -15930,19613,35397,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,6.2954936,6.447825,0,0,-1008.2217,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3258212,6.3955064,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,349,508.12476,211596.02,0,0,699.2193 -15931,19614,35398,35399,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.0156822,8.1449337,0,40,6,1.0374799,0,3,2,2019,12,1,40,42,1,1,0,9.3528357,9.3528357,0,0,0,0,27,1,1,0,0,0,54.84,39.49,33.47,27.71,10,2,3,0,0,10,8,3,1,1329.5,804547,599129.88,98409.078,0,2351.5247 -15931,19614,35399,35398,-9,-9,1,0,57,0,0,0,3,3,-9,1,3,0,0,0,40,-6,-64.380768,0,3,2,2019,27,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,33.47,27.71,54.84,39.49,8.333333333333334,2,3,0,0,0,8,3,1,1329.5,804547,599129.88,98409.078,0,2351.5247 -15931,19615,35400,-9,35399,35398,1,0,27,0,0,0,2,2,-9,0,4,8.4457617,9.1377974,0,0,0,-1002.9783,0,2,2,2019,7,0,50,40,1,0,1,11.225169,11.225169,0,0,0,0,7,1,1,0,0,0,52.42,55.7,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,460,-2358.9434,26967.066,0,0,2355.3748 -15931,19616,35401,-9,35399,35398,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.47894,0,2,2,2019,7,0,0,30,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,56.82,56.51,-9,-9,8.333333333333334,2,3,0,0,5,8,1,1,562,-21718.73,0,0,0,-411.53751 -15932,19617,35402,35405,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.9253745,7.9562654,0,7,5,-8.0941324,0,2,2,2019,8,0,42,39,1,0,0,8.1073618,8.1073618,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 -15932,19617,35403,-9,35405,35402,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.63312,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 -15932,19617,35404,-9,35405,35402,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.4649,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 -15932,19617,35405,35402,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.0555592,8.1152401,0,7,-5,-51.57896,0,-9,-9,2019,5,0,30,21,1,0,0,13.300003,13.300003,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,8,7,4,1,570.5,-14429.972,62440.672,0,0,2369.0735 -15933,19618,35406,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,6.4803371,6.7290654,0,0,0,-970.50128,0,2,2,2019,22,9,19,20,1,9,0,5.2563272,5.2563272,0,0,0,0,0,1,1,0,0,0,32.9,57.87,-9,-9,5,1,1,0,0,4,2,2,0,682.66669,-80951.891,0,0,0,1581.7771 -15933,19618,35407,-9,35406,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.3358,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,682.66669,-80951.891,0,0,0,1581.7771 -15933,19618,35408,-9,35406,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1045.582,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,2,2,0,682.66669,-80951.891,0,0,0,1581.7771 -15934,19619,35409,35410,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,8.68153,8.9507532,7.2435808,11,2,-156.04704,0,-9,-9,2019,6,0,43,45,1,0,0,16.825462,16.825462,0,0,0,0,7,1,1,0,4.4570866,7.2902241,54.93,39.95,28.73,39.77,6.666666666666667,1,1,0,0,10,10,5,1,613,831036.25,564015.88,182738.66,0,3830.415 -15934,19619,35410,35409,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.4988165,7.654933,44,-2,-104.06995,0,2,2,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,7.6067109,28.73,39.77,54.93,39.95,1.666666666666667,1,1,0,0,10,10,5,1,613,831036.25,564015.88,182738.66,0,3830.415 -15935,19620,35411,35412,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4400458,7.5791206,9,-2,-42.625896,0,3,3,2019,14,5,0,0,4,5,0,0,0,1,0,0,0,120,1,1,0,2.4463391,7.5758419,45.01,30.04,53,46,3.333333333333333,1,1,0,0,0,2,3,1,592.5,398581.34,305127.81,137047.84,0,2750.6768 -15935,19620,35412,35411,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.3841109,7.3426089,9,2,-23.116304,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,80.89682,0,0,1,1,0,3.4489012,7.6600904,53,46,45.01,30.04,7,1,1,0,0,0,2,3,1,592.5,398581.34,305127.81,137047.84,0,2750.6768 -15936,19621,35413,35414,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.1630392,8.2726707,0,39,4,-74.654373,0,3,3,2019,6,0,30,30,1,0,0,12.729054,12.729054,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.19,58.01,1.666666666666667,1,1,0,0,10,1,5,1,1051,1397802.8,1191172.5,117883.34,0,3123.4126 -15936,19621,35414,35413,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.5034962,8.3468285,0,39,-4,-52.550003,0,3,2,2019,11,1,38,30,1,1,0,11.526171,11.526171,0,0,0,0,0,0,0,0,4.2312388,0,44.19,58.01,57.06,57.76,5,1,1,0,0,10,1,5,1,1051,1397802.8,1191172.5,117883.34,0,3123.4126 -15937,19622,35415,35416,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.1366196,8.0116844,50,-1,-8.0336008,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,8.3880491,61.26,51.57,50.54,62.09,10,1,1,0,0,4,11,4,1,651,1188539.8,943539.63,195460.56,0,3807.6912 -15937,19622,35416,35415,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,7.3953242,7.3045025,50,1,-45.778011,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,2.7472179,7.3048296,50.54,62.09,61.26,51.57,10,1,1,0,0,4,11,4,1,651,1188539.8,943539.63,195460.56,0,3807.6912 -15937,19623,35417,-9,35416,35415,1,1,42,0,0,0,2,2,-9,1,3,7.6113634,7.4345212,0,0,0,-1001.2943,0,1,1,2019,3,1,37,37,1,1,0,7.9388828,7.9388828,0,0,0,0,0,1,1,0,0,0,65.95,34.44,-9,-9,5,1,1,0,0,9,11,3,1,465,575538.19,170173.44,269217.06,77381.188,1397.0302 -15938,19624,35418,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,8.7961216,8.3576927,0,0,-1034.7777,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2392583,8.1437016,52.25,53.24,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,543,585424.75,347109.03,0,0,3245.0786 -15939,19625,35419,-9,35421,35422,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.6454,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 -15939,19625,35420,-9,35421,35422,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.5021,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 -15939,19625,35421,35422,-9,-9,1,0,42,0,2,0,1,1,-9,0,1,5.9868402,6.1544566,0,8,0,28.721056,0,2,2,2019,17,5,18,15,1,5,0,2.6064067,2.6064067,0,0,0,0,0,1,1,0,0,0,32.9,36.79,41.3,60.77,3.333333333333333,1,1,0,1,6,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 -15939,19625,35422,35421,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.7807322,8.975893,0,8,0,-53.024693,0,2,-9,2019,12,1,85,45,1,1,0,9.478672,9.478672,0,0,0,0,0,1,1,0,0,0,41.3,60.77,32.9,36.79,1.666666666666667,1,1,0,0,9,10,4,1,636.75,559442.13,233482.44,230501.66,156357.59,3108.1423 -15940,19626,35423,35424,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,29,11,0,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,6.992938,12.459358,69.060295,0,1,1,0,0,0,47.5,42.86,53.39,49.67,8.333333333333334,1,1,0,0,0,4,2,0,2459.5,287153.91,0,191887.59,0,1362.8057 -15940,19626,35424,35423,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,0,0,0,10,-11,0,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.39,49.67,47.5,42.86,10,1,1,0,0,0,4,2,0,2459.5,287153.91,0,191887.59,0,1362.8057 -15940,19627,35425,-9,35423,35424,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1077.2267,0,3,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,913,73959.633,0,0,0,680.7337 -15941,19628,35426,35427,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.1064148,8.8465185,0,26,0,-100.3292,0,2,2,2019,10,0,37,36,1,0,0,17.862755,17.862755,0,0,0,0,0,0,0,0,2.2253418,0,54.79,55.86,50,55,6.666666666666667,2,3,0,0,11,6,5,1,622,-127586.84,203815.34,61709.258,23057.256,3341.2314 -15941,19628,35427,35426,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.8816695,7.8618979,0,26,0,19.11924,0,-9,-9,2019,10,0,27,27,1,1,0,11.428863,11.428863,0,0,0,0,0,0,0,0,0,0,50,55,54.79,55.86,8,2,3,0,0,1,6,5,1,622,-127586.84,203815.34,61709.258,23057.256,3341.2314 -15941,19629,35428,-9,35427,35426,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1008.9608,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,717,89489.531,0,0,0,0 -15942,19630,35429,-9,35430,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.0033,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,3,1,667.5,100826.98,36235.602,0,0,1633.5233 -15942,19630,35430,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.5140204,7.633235,0,0,0,-1098.4152,0,-9,-9,2019,12,1,30,40,1,1,0,7.6802635,7.6802635,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,667.5,100826.98,36235.602,0,0,1633.5233 -15943,19631,35431,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-982.11627,0,2,2,2019,32,11,0,0,3,11,0,0,0,0,0,0,1.760855,0,1,1,0,0,0,21.97,21.3,-9,-9,0,1,1,0,0,0,7,1,0,430,-34994.539,0,0,0,1338.818 -15944,19632,35432,-9,-9,35433,1,1,23,0,0,0,2,2,1,1,4,0,0,0,0,0,-1042.436,-9,-9,3,2019,12,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,35.27,47.43,-9,-9,5,1,1,1,0,0,4,1,0,98,91467.82,0,0,0,397.12109 -15944,19633,35433,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1057.83,0,2,2,2019,14,2,0,38,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,39.97,18.22,-9,-9,3.333333333333333,1,1,0,0,4,4,1,0,447,281318.34,0,0,0,1741.0115 -15945,19634,35434,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.318059,8.3534012,0,0,0,-915.8728,-9,-9,-9,2019,12,0,35,0,1,0,0,15.407942,15.407942,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,1162,-56269.234,0,285298.69,228976.19,2320.2461 -15945,19634,35435,-9,35434,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.4304,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,1162,-56269.234,0,285298.69,228976.19,2320.2461 -15946,19635,35436,35437,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,37,-4,0,-9,3,2,2019,9,1,0,0,4,1,0,0,0,1,0,23.908539,0,120,1,1,0,0,0,55.43,11.58,51,46,8.333333333333334,2,3,0,1,0,8,1,0,592,718137.56,276446.5,378867,0,2363.8545 -15946,19635,35437,35436,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,37,4,0,-9,-9,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,55.43,11.58,7,2,3,0,0,0,8,1,0,592,718137.56,276446.5,378867,0,2363.8545 -15946,19636,35438,-9,35437,35436,1,0,42,0,0,0,1,1,-9,0,3,7.6846924,7.6809797,0,0,0,-1070.3938,-9,2,2,2019,10,1,38,0,1,1,0,7.9834442,7.9834442,0,0,0,0,88,1,1,0,0,0,45.43,53.5,-9,-9,6.666666666666667,2,3,0,1,9,8,3,0,476,595995.5,0,406597.28,0,1159.8639 -15947,19637,35439,-9,35442,35441,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.56378,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 -15947,19637,35440,-9,35442,35441,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.2243,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 -15947,19637,35441,35442,-9,-9,1,1,29,0,2,0,2,2,-9,0,3,8.0174704,8.0023327,0,2,4,-.026896812,0,2,-9,2019,11,0,42,42,1,0,0,5.2798409,5.2798409,0,0,0,0,27,1,1,0,0,0,48.8,49.1,49.05,22.43,6.666666666666667,1,1,0,0,12,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 -15947,19637,35442,35441,-9,-9,1,0,25,0,2,0,2,2,-9,0,1,6.711946,6.4131107,0,2,-4,31.512405,0,-9,-9,2019,22,9,16,16,1,9,0,5.9214702,5.9214702,0,0,0,0,42,1,1,0,0,0,49.05,22.43,48.8,49.1,6.666666666666667,1,1,0,0,1,10,3,0,877.5,143150.33,-20802.398,0,0,1862.2905 -15948,19638,35443,-9,35445,35444,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.2977,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,610,547906.88,201513.31,208741.09,125642.1,3922.7488 -15948,19638,35444,35445,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,9.109705,8.876029,0,7,4,-42.653999,0,-9,-9,2019,4,0,38,32,1,0,0,27.548065,27.548065,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,5,12,5,1,610,547906.88,201513.31,208741.09,125642.1,3922.7488 -15948,19638,35445,35444,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,7.265296,6.8815308,0,7,-4,144.32153,0,2,2,2019,6,0,6,6,1,0,0,25.292866,25.292866,0,0,0,0,0,1,1,0,0,0,54.37,54.8,57.16,56.15,10,1,1,0,0,7,12,5,1,610,547906.88,201513.31,208741.09,125642.1,3922.7488 -15949,19639,35446,-9,35449,-9,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1025.1222,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 -15949,19639,35447,-9,35449,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.8341,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 -15949,19639,35448,-9,35449,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1100.8607,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 -15949,19639,35449,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,7.908154,8.1427641,6.2867684,0,0,-1085.6174,0,3,2,2019,8,0,24,27,1,0,0,14.877778,14.877778,0,0,0,0,0,1,1,0,6.9085422,0,40.89,46.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,1231.25,244749.09,19483.619,0,0,2526.7234 -15950,19640,35450,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.8348222,7.9817677,4.3011227,0,0,-993.67352,0,3,3,2019,12,0,37,37,1,0,0,9.5260162,9.5260162,0,0,0,0,0,0,0,0,0,4.5149965,50.93,39.92,-9,-9,5,1,1,0,0,9,9,4,1,1040,-100217.59,154920,201281.33,9150.3311,1263.41 -15950,19641,35451,-9,35450,-9,1,0,32,0,0,0,1,1,-9,0,4,7.9015059,7.8099194,0,0,0,-1000.1537,0,2,-9,2019,16,4,38,37,1,4,0,9.3428364,9.3428364,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,249,-138227.88,124791.62,0,0,265.45935 -15951,19642,35452,35453,-9,-9,1,1,33,1,1,0,1,1,-9,0,5,8.7217607,8.6802711,0,6,3,71.055527,0,-9,-9,2019,8,0,46,39,1,0,0,14.727158,14.727158,0,0,0,0,0,1,1,0,6.3529911,0,51.73,58.82,44.9,41.42,8.333333333333334,1,1,0,0,5,1,5,1,744.33331,357682.31,26550.773,241385.47,211979.77,4268.2549 -15951,19642,35453,35452,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.0067806,7.980082,0,6,-3,-1.0784137,0,3,2,2019,14,2,22,35,1,2,0,11.508078,11.508078,0,0,0,0,0,1,1,0,0,0,44.9,41.42,51.73,58.82,5,1,1,0,0,8,1,5,1,744.33331,357682.31,26550.773,241385.47,211979.77,4268.2549 -15951,19642,35454,-9,35453,35452,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-904.83276,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,744.33331,357682.31,26550.773,241385.47,211979.77,4268.2549 -15952,19643,35455,-9,35457,35456,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.62903,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,2,0,818,229679.98,0,0,0,1594.6989 -15952,19643,35456,35457,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,6.6310539,6.3716488,0,6,6,6.1458173,0,-9,-9,2019,8,0,24,27,1,0,0,3.3010511,3.3010511,0,0,0,0,0,1,1,0,0,0,63.63,51.86,32.91,45.58,6.666666666666667,1,1,0,0,7,2,2,0,818,229679.98,0,0,0,1594.6989 -15952,19643,35457,35456,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,6,-6,-63.92844,0,3,3,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,32.91,45.58,63.63,51.86,5,1,1,0,0,0,2,2,0,818,229679.98,0,0,0,1594.6989 -15953,19644,35458,-9,35459,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.7683,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,6,1,0,723,-253683,135002.92,0,0,1163.3683 -15953,19644,35459,-9,-9,-9,1,0,34,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1042.5881,0,3,3,2019,19,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,42.71,-9,-9,3.333333333333333,2,3,1,0,0,6,1,0,723,-253683,135002.92,0,0,1163.3683 -15954,19645,35460,35461,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.0596476,7.8135238,0,10,-5,-94.825378,0,-9,3,2019,11,1,43,38,1,1,0,6.7943254,6.7943254,0,0,0,0,0,0,0,0,0,0,47.07,53.97,45.56,53.56,5,1,1,0,0,10,5,4,0,2258.5,509204.88,278625.81,119811.69,42023.219,2687.877 -15954,19645,35461,35460,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0291328,8.2472639,6.826025,10,5,61.009071,0,3,3,2019,9,1,40,48,1,1,0,7.5480399,7.5480399,0,0,0,0,0,0,0,0,6.0617557,6.337111,45.56,53.56,47.07,53.97,10,1,1,0,0,9,5,4,0,2258.5,509204.88,278625.81,119811.69,42023.219,2687.877 -15955,19646,35462,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0193739,8.1896544,0,0,0,-1084.9613,0,3,2,2019,11,0,45,41,1,2,0,8.7909431,8.7909431,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,4,2,0,0,6,6,4,0,1230,-535714.06,-81314.93,136953.3,88181.703,1701.4442 -15955,19647,35463,-9,35462,-9,1,0,20,0,0,0,1,1,1,0,4,0,0,0,0,0,-967.13434,-9,2,-9,2019,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,3,4,1,0,2,6,1,0,384,0,0,0,0,0 -15956,19648,35464,35465,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.8182402,8.9695816,0,9,-5,-22.193947,0,-9,-9,2019,10,0,45,46,1,0,0,21.966112,21.966112,0,0,0,0,7,0,0,0,7.3645539,0,54.97,47.63,53.39,44.47,6.666666666666667,1,1,0,0,9,2,5,1,1470.5,1229227.8,877430.81,259097.28,37009.645,6284.7217 -15956,19648,35465,35464,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.5585928,8.4423046,0,9,5,21.649216,0,3,2,2019,10,0,40,40,1,1,0,21.226526,21.226526,0,0,0,0,0,0,0,0,0,0,53.39,44.47,54.97,47.63,5,1,1,0,0,12,2,5,1,1470.5,1229227.8,877430.81,259097.28,37009.645,6284.7217 -15956,19649,35466,-9,35464,35465,1,1,29,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.64801,0,1,2,2019,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,29.69,58.14,-9,-9,3.333333333333333,1,1,1,1,6,2,1,1,672,228763.75,0,0,0,0 -15957,19650,35467,-9,35472,-9,1,1,22,0,3,0,2,2,-9,0,3,7.4786363,7.5034018,0,0,0,-853.66272,-9,2,-9,2019,12,0,45,0,1,0,1,4.9075522,4.9075522,0,0,0,0,0,1,1,0,0,0,34.4,55.99,-9,-9,3.333333333333333,1,1,0,0,5,7,3,1,955,20444.443,43089.246,0,0,684.93097 -15957,19651,35468,-9,35472,35471,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.0978,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 -15957,19651,35469,-9,35472,35471,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-856.50079,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 -15957,19651,35470,-9,35472,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.9336,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 -15957,19651,35471,35472,-9,-9,1,1,47,0,3,0,2,2,-9,1,3,7.857964,7.8230128,0,8,6,-1.227559,-9,-9,-9,2019,12,0,36,0,1,0,0,7.7563844,7.7563844,0,0,0,0,2,1,1,0,0,0,36.78,41.13,36.25,31.14,6.666666666666667,1,1,0,0,12,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 -15957,19651,35472,35471,-9,-9,1,0,41,0,3,0,2,2,-9,0,1,0,0,0,8,-6,107.19637,-9,-9,-9,2019,25,12,0,0,3,12,0,0,0,0,0,0,0,42,1,1,0,0,0,36.25,31.14,36.78,41.13,1.666666666666667,1,1,0,0,0,7,2,1,348.60001,105374.07,-21255.742,0,0,3127.4402 -15958,19652,35473,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.41751,8.2208567,0,0,0,-953.99139,0,-9,-9,2019,12,1,38,40,1,1,0,12.390037,12.390037,0,0,0,0,0,0,0,0,0,0,41.08,54.15,-9,-9,6.666666666666667,1,1,0,0,12,11,5,0,72,387800.94,85888.727,0,0,1834.6193 -15959,19653,35474,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8017368,7.8184438,0,0,0,-1067.5173,0,2,2,2019,7,0,8,72,1,0,0,40.525166,40.525166,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,4,9,3,0,2008.5,-109585.85,0,0,0,2106.3052 -15959,19653,35475,-9,35474,-9,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1110.4386,-9,2,-9,2019,17,5,0,0,2,5,0,0,0,0,0,0,0,2,1,1,0,0,0,30.46,56.16,-9,-9,1.666666666666667,1,1,0,0,0,9,3,0,2008.5,-109585.85,0,0,0,2106.3052 -15960,19654,35476,-9,35477,35478,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1056.162,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 -15960,19654,35477,35478,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.5434303,8.9586945,0,19,-6,118.15096,0,2,2,2019,10,1,45,37,1,1,0,14.59322,14.59322,0,0,0,0,0,1,1,0,7.0471225,0,57.06,57.76,57.33,53.46,6.666666666666667,1,1,0,0,9,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 -15960,19654,35478,35477,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.7876096,7.9289403,0,18,6,73.11203,0,1,2,2019,12,2,45,40,1,2,0,6.5572701,6.5572701,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 -15960,19654,35479,-9,35477,35478,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.1828,-9,1,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,4,1,465,388437.34,272820.66,198564.38,24232.559,3723.8853 -15961,19655,35480,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,7.8509169,7.7868505,0,0,0,-1025.3873,0,2,2,2019,12,2,40,36,1,2,1,8.3046513,8.3046513,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,8,4,3,1,323,10164.234,0,0,0,1402.9003 -15962,19656,35481,35482,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8600078,7.7602363,2,16,-5.7387104,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4809322,7.4895301,59.88,48.2,30.37,56.3,8.333333333333334,1,1,0,0,4,9,5,1,1327,1363822,903276.94,428980.25,0,5480.938 -15962,19656,35482,35481,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.5044813,8.7315216,0,2,-16,-12.326984,0,-9,-9,2019,21,9,38,37,1,9,0,21.470711,21.470711,0,0,0,0,0,1,1,0,7.8722548,0,30.37,56.3,59.88,48.2,3.333333333333333,1,1,0,0,2,9,5,1,1327,1363822,903276.94,428980.25,0,5480.938 -15963,19657,35483,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.8284254,7.9772005,0,0,0,-1075.1138,0,3,-9,2019,8,0,38,18,1,0,0,10.048514,10.048514,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,7,4,3,0,195,152987.33,25023.557,0,0,1608.7167 -15963,19658,35484,-9,35483,-9,1,1,24,0,0,0,2,2,-9,0,4,7.7545724,7.8972135,0,0,0,-1031.8644,0,1,1,2019,6,0,48,42,1,0,1,5.051857,5.051857,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6.666666666666667,3,4,0,0,4,4,3,0,734,79769.164,99106.742,0,0,617.68042 -15964,19659,35485,35487,-9,-9,1,1,41,0,2,0,2,2,-9,0,1,0,0,0,9,3,8.5211706,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,8.1539049,0,56.35,28.34,48.87,58.55,3.333333333333333,1,1,0,0,0,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 -15964,19659,35486,-9,35487,35485,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8165,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 -15964,19659,35487,35485,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.8828363,8.9081869,0,9,-3,13.663513,0,1,1,2019,5,0,52,49,1,0,0,17.454012,17.454012,0,0,0,0,0,1,1,0,4.5753999,0,48.87,58.55,56.35,28.34,8.333333333333334,1,1,0,0,6,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 -15964,19659,35488,-9,35487,35485,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.7563,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,520.5,29833.66,-5528.7603,369580.31,142060.27,4012.3132 -15965,19660,35489,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.4970922,6.5211787,0,0,-944.79419,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,14.180945,0,135.59818,0,1,1,0,3.4937334,6.7305017,37.39,24.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,397,293628.59,71883.656,97956.266,0,1796.0846 -15966,19661,35490,35491,-9,-9,1,1,31,0,0,0,3,3,-9,1,2,0,0,0,1,-1,0,0,2,2,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,71.5,1,1,0,0,0,37.48,34.4,48,57,3.333333333333333,1,1,1,1,0,12,1,0,188,180594.34,0,0,0,4950.627 -15966,19661,35491,35490,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,0,0,0,1,1,0,-9,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,37.48,34.4,7,4,1,1,0,0,12,1,0,188,180594.34,0,0,0,4950.627 -15967,19662,35492,35495,-9,-9,1,1,24,0,2,0,2,2,-9,0,3,7.4214931,7.4533949,0,2,1,19.562284,0,2,3,2019,5,0,50,0,1,0,0,3.0523684,3.0523684,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,4,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 -15967,19662,35493,-9,35495,35492,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.8777,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 -15967,19662,35494,-9,35495,35492,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.8341,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 -15967,19662,35495,35492,-9,-9,1,0,23,0,2,1,2,0,0,0,4,0,0,0,2,-1,54.253464,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,1,10,2,0,685.5,-17537.834,-6375.3066,0,0,1983.2158 -15968,19663,35496,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1084.1628,0,3,3,2019,12,0,0,0,4,2,0,0,0,1,0,21.45644,0,0,1,1,0,0,0,51,35,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,354,-211722.17,0,0,0,1498.0436 -15969,19664,35497,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.532867,7.4032598,0,0,0,-970.2912,-9,2,2,2019,10,0,26,0,1,0,0,9.6108456,9.6108456,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,10,7,3,1,389,-55100.336,0,0,0,909.39368 -15970,19665,35498,35499,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.18262,8.0936689,0,29,1,-35.35078,0,2,2,2019,10,1,42,40,1,1,0,9.2964373,9.2964373,0,0,0,0,0,0,0,0,0,0,48.57,53.15,47.38,57.75,8.333333333333334,1,1,0,0,12,7,4,0,803,79126.211,46487.996,113939.16,48749.445,2442.4409 -15970,19665,35499,35498,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.8202386,7.6354609,0,29,-1,-73.718185,0,2,2,2019,10,0,44,40,1,0,0,7.4726472,7.4726472,0,0,0,0,0,0,0,0,0,0,47.38,57.75,48.57,53.15,8.333333333333334,1,1,0,0,12,7,4,0,803,79126.211,46487.996,113939.16,48749.445,2442.4409 -15971,19666,35500,35501,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,6.5212636,6.1276798,0,1,0,80.645752,-9,-9,-9,2019,6,0,10,0,1,0,0,7.485095,7.485095,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.79,55.86,8.333333333333334,1,1,0,0,0,4,2,0,1120,363621.44,0,0,0,1430.5801 -15971,19666,35501,35500,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.1799941,7.278625,0,1,0,-52.18808,0,-9,-9,2019,7,0,20,33,1,0,0,6.6284699,6.6284699,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.96,53.17,6.666666666666667,1,1,0,1,5,4,2,0,1120,363621.44,0,0,0,1430.5801 -15972,19667,35502,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,5.5364561,5.615581,0,0,0,-905.40228,0,2,2,2019,14,4,36,36,1,4,0,.819507,.819507,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,12,5,2,0,1603,354344.63,0,0,0,189.89449 -15973,19668,35503,-9,35506,35504,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.7081,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 -15973,19668,35504,35506,-9,-9,1,1,33,0,2,0,1,1,-9,0,2,8.5862894,8.8450928,0,14,0,-193.31387,0,2,2,2019,16,4,43,12,1,4,0,20.848524,20.848524,0,0,0,0,0,1,1,0,0,0,26.38,58.67,57.16,56.15,5,1,1,0,0,9,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 -15973,19668,35505,-9,35506,35504,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.90442,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 -15973,19668,35506,35504,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.0704117,7.8578029,0,14,0,48.145393,0,2,2,2019,7,0,38,45,1,0,0,8.2225351,8.2225351,0,0,0,0,0,1,1,0,0,0,57.16,56.15,26.38,58.67,8.333333333333334,1,1,0,0,8,7,4,0,821.75,169550.81,129688.58,114849.95,110613.32,3409.5886 -15974,19669,35507,35508,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,9,7,198.41881,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,35.28,27.1,52.45,34.36,5,1,1,0,0,0,6,3,1,389.5,-39524.012,0,0,0,1687.9374 -15974,19669,35508,35507,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.7395525,7.7411819,0,9,-7,-45.635998,-9,2,3,2019,12,0,13,0,1,0,0,25.964626,25.964626,0,0,0,0,0,1,1,0,0,0,52.45,34.36,35.28,27.1,5,1,1,0,1,6,6,3,1,389.5,-39524.012,0,0,0,1687.9374 -15974,19670,35509,-9,35507,-9,1,0,36,0,0,0,1,1,-9,0,5,8.3904982,7.9161706,0,0,0,-986.90051,0,2,2,2019,10,0,35,35,1,0,0,13.262208,13.262208,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,9,6,4,1,637,-106052.22,-19168.705,0,0,1620.6985 -15975,19671,35510,-9,-9,-9,1,1,39,0,0,0,2,2,-9,1,2,0,0,0,0,0,-959.07953,0,-9,2,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.96,38.11,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,661,226173.92,0,0,0,1098.7354 -15976,19672,35511,35512,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3360176,8.2831554,0,2,1,92.523376,0,-9,-9,2019,11,0,38,43,1,0,0,13.174694,13.174694,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,5,4,5,1,540,-129194.12,11720.318,134027.22,118274.44,3045.1138 -15976,19672,35512,35511,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.254756,8.009881,0,2,-1,115.28356,-9,-9,-9,2019,12,0,38,0,1,0,0,8.6809702,8.6809702,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,5,4,5,1,540,-129194.12,11720.318,134027.22,118274.44,3045.1138 -15977,19673,35513,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,6.3055902,6.1215916,0,0,0,-1070.9152,-9,2,2,2019,11,0,13,0,1,0,0,4.9055667,4.9055667,0,0,0,0,2,0,0,0,6.8670273,0,52.22,53.26,-9,-9,8.333333333333334,1,1,0,1,10,12,2,1,523,253472.5,0,0,0,458.74323 -15978,19674,35514,35515,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.7405229,8.1110773,53,-6,47.79834,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0513544,7.795054,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,6,12,3,1,464,1075662.5,789794.63,244063.97,0,3112.1243 -15978,19674,35515,35514,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,6.172914,5.8930931,53,6,39.921627,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0955052,6.2697687,60.02,56.42,54.1,59.11,10,1,1,0,0,4,12,3,1,464,1075662.5,789794.63,244063.97,0,3112.1243 -15979,19675,35516,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.400094,7.1705685,0,0,-1008.8033,0,1,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4941397,7.0248008,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,567,144811.86,178871.42,75784.594,0,2240.2932 -15980,19676,35517,35519,-9,-9,1,0,39,1,1,0,2,2,-9,0,2,8.312727,8.1358242,0,3,2,-70.188133,0,-9,-9,2019,20,9,24,24,1,9,0,20.956589,20.956589,0,0,0,0,0,1,1,0,2.6007929,0,23.15,50.65,54.82,37.11,8.333333333333334,1,1,0,0,9,7,5,1,210,247060.11,241588.25,172526.3,101918.82,4743.4063 -15980,19676,35518,-9,35517,35519,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.8171,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,210,247060.11,241588.25,172526.3,101918.82,4743.4063 -15980,19676,35519,35517,-9,-9,1,1,37,1,1,0,2,2,-9,0,2,8.9297714,9.412281,0,3,-2,38.221405,0,1,1,2019,12,1,60,60,1,1,0,16.495552,16.495552,0,0,0,0,0,1,1,0,0,0,54.82,37.11,23.15,50.65,6.666666666666667,1,1,0,0,6,7,5,1,210,247060.11,241588.25,172526.3,101918.82,4743.4063 -15981,19677,35520,35521,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.0890894,7.4031439,0,12,-16,-127.81145,0,-9,-9,2019,10,1,20,22,1,1,0,6.4526305,6.4526305,0,0,0,0,14.5,1,1,0,0,0,54.47,37.6,64.59999999999999,13.97,10,1,1,0,0,10,12,2,1,1281,1009833,356490.09,93918.289,0,2104.7004 -15981,19677,35521,35520,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,4.2735133,4.5375991,12,16,-86.449333,0,-9,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,14.5,1,1,0,3.9136534,4.7123222,64.59999999999999,13.97,54.47,37.6,8.333333333333334,1,1,0,0,4,12,2,1,1281,1009833,356490.09,93918.289,0,2104.7004 -15982,19678,35522,35523,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.2429981,8.1666727,0,10,3,59.498142,0,-9,-9,2019,6,0,42,42,1,0,0,9.4838324,9.4838324,0,0,0,0,0,0,0,0,0,0,60.12,54.8,51,42.7,8.333333333333334,1,1,0,0,12,12,4,0,1140.5,205092.63,73855.516,122460.02,46917.91,3058.8389 -15982,19678,35523,35522,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.9171515,8.2505207,0,10,-3,41.835136,0,-9,3,2019,7,0,30,30,1,0,0,10.279208,10.279208,0,0,0,0,0,0,0,0,0,0,51,42.7,60.12,54.8,0,1,1,0,0,7,12,4,0,1140.5,205092.63,73855.516,122460.02,46917.91,3058.8389 -15983,19679,35524,-9,-9,35525,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1059.9314,-9,-9,3,2019,5,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,1,0,319,0,0,0,0,2072.8918 -15983,19679,35525,-9,-9,-9,1,1,52,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1022.6842,-9,3,3,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,1,0,0,13,1,0,319,0,0,0,0,2072.8918 -15984,19680,35526,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.5493174,8.4638691,0,0,0,-913.80731,0,2,2,2019,14,2,50,40,1,2,0,9.9142466,9.9142466,0,0,0,0,0,1,1,0,0,0,44.85,41.57,-9,-9,5,1,1,0,0,1,2,5,0,716,488454.91,-4255.6011,0,0,2674.2285 -15985,19681,35527,35528,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.3867645,4.2124019,48,-4,-97.175293,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,4.8112102,55.96,49.93,53.3,55.06,8.333333333333334,1,1,0,0,0,11,2,1,413,523888.59,137321.44,301830.78,0,1696.9885 -15985,19681,35528,35527,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,5.3287106,5.0600243,48,4,52.995777,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0721436,5.2931972,53.3,55.06,55.96,49.93,6.666666666666667,1,1,0,0,6,11,2,1,413,523888.59,137321.44,301830.78,0,1696.9885 -15986,19682,35529,35530,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.6932774,7.9018598,0,8,0,-3.6838055,0,2,2,2019,12,1,33,32,1,1,0,9.6770124,9.6770124,0,0,0,0,14.5,0,0,0,5.2889919,0,54.37,54.8,40.06,38.53,3.333333333333333,1,1,0,0,8,13,5,1,1097,652425.38,868638.13,171598.94,111763.95,3639.0483 -15986,19682,35530,35529,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7519798,8.577507,0,8,0,47.452259,0,-9,-9,2019,11,2,45,36,1,2,0,13.570217,13.570217,0,0,0,0,0,0,0,0,3.5755641,0,40.06,38.53,54.37,54.8,8.333333333333334,1,1,0,0,10,13,5,1,1097,652425.38,868638.13,171598.94,111763.95,3639.0483 -15987,19683,35531,35532,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,7.8820643,7.9200039,0,5,0,-4.3575935,0,2,1,2019,11,1,30,32,1,1,0,9.6408577,9.6408577,0,0,0,0,0,1,1,0,0,0,43.17,50.73,47.74,55.03,6.666666666666667,1,1,0,0,7,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 -15987,19683,35532,35531,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.799552,8.7269802,0,5,9,-76.72036,0,-9,-9,2019,10,0,48,50,1,0,0,17.337044,17.337044,0,0,0,0,0,1,1,0,0,0,47.74,55.03,43.17,50.73,6.666666666666667,1,1,0,0,7,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 -15987,19683,35533,-9,35531,35532,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.02112,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 -15987,19683,35534,-9,35531,35532,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.23138,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,399,653829.63,412658.09,231002.61,70991.695,4669.0972 -15988,19684,35535,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.5255327,8.4225025,0,0,0,-1113.7677,0,2,3,2019,4,0,28,28,1,0,0,21.662527,21.662527,0,0,0,0,0,0,0,0,0,0,48.46,47.88,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,652,446971.25,203610.92,182541.72,0,1680.3721 -15989,19685,35536,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7344747,7.9033022,5.2777553,0,0,-921.62872,0,3,-9,2019,17,5,35,40,1,5,0,8.97017,8.97017,0,0,0,0,7,1,1,0,5.3816066,0,36.51,56.02,-9,-9,3.333333333333333,4,2,0,1,9,4,4,0,252,-49998.191,59385.297,0,0,2011.943 -15990,19686,35537,35538,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.8192682,8.444521,43,7,184.91518,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.157547,8.4719009,45.27,48.1,59.46,46.99,8.333333333333334,1,1,0,0,0,4,4,1,561,1511089.5,616895.69,220240.53,0,4414.7559 -15990,19686,35538,35537,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.9234653,6.3481488,43,-7,-92.915688,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4386141,6.6069231,59.46,46.99,45.27,48.1,8.333333333333334,1,1,0,0,8,4,4,1,561,1511089.5,616895.69,220240.53,0,4414.7559 -15991,19687,35539,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.7629766,8.6595745,0,0,0,-929.61487,0,2,2,2019,18,7,39,39,1,7,0,15.173531,15.173531,0,0,0,0,0,0,0,0,4.8307295,0,20.61,51.87,-9,-9,6.666666666666667,1,1,0,0,13,2,5,1,227,-245521.05,52344.68,138699.63,86604.359,1844.9281 -15992,19688,35540,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.8084874,7.7439551,0,0,0,-1005.9259,0,2,2,2019,30,12,30,20,1,12,0,9.5411043,9.5411043,0,0,0,0,0,0,0,0,1.0800638,0,30.1,43.29,-9,-9,1.666666666666667,1,1,0,0,11,9,4,1,261,22558.295,0,0,0,1485.3944 -15993,19689,35541,35542,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.497345,7.2819757,0,35,-3,-130.8788,-9,3,3,2019,10,0,30,0,1,0,0,7.4424014,7.4424014,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.57,49.69,5,1,1,0,1,8,1,3,0,773.5,691311.63,413996.63,167367.16,0,1366.9648 -15993,19689,35542,35541,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,6.3464751,6.3700991,0,33,3,141.88675,0,3,-9,2019,6,0,12,10,1,0,0,6.7983379,6.7983379,0,0,0,0,0,0,0,0,0,0,57.57,49.69,57.33,53.46,6.666666666666667,1,1,0,1,7,1,3,0,773.5,691311.63,413996.63,167367.16,0,1366.9648 -15994,19690,35543,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1086.9076,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.99,50.29,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,761,435283.5,0,275165.25,0,825.6145 -15994,19691,35544,-9,35543,-9,1,1,41,0,0,0,2,2,-9,0,4,8.8868074,8.7996893,0,0,0,-1057.8307,0,2,2,2019,9,0,40,40,1,1,0,15.60113,15.60113,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,1,10,5,1,451,-74314.781,-25310.129,31479.15,73261.367,2936.8767 -15995,19692,35545,35546,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,8,0,69.989082,0,3,3,2019,9,1,0,0,4,1,0,0,0,1,2.5635946,0,19.808134,0,1,1,0,0,0,40,24,60.29,52.11,8.333333333333334,1,1,0,0,0,11,3,1,318.5,1533680.3,362169.94,210511.09,0,2463.5522 -15995,19692,35546,35545,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9761033,8.0257492,8,0,-39.320709,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8892155,60.29,52.11,40,24,8.333333333333334,1,1,0,0,0,11,3,1,318.5,1533680.3,362169.94,210511.09,0,2463.5522 -15996,19693,35547,35549,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.9786787,8.1689491,0,23,4,-119.98369,0,3,3,2019,9,0,30,30,1,0,0,10.010339,10.010339,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.57,57.78,10,1,1,0,0,9,5,5,0,748.66669,701878,112390.48,223315.06,104422.33,4420.29 -15996,19693,35548,-9,35547,35549,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-992.41095,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43.15,49.04,-9,-9,8.333333333333334,1,1,0,0,1,5,5,0,748.66669,701878,112390.48,223315.06,104422.33,4420.29 -15996,19693,35549,35547,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.2465067,9.1310654,0,23,-4,-22.608505,0,3,-9,2019,8,0,60,45,1,0,0,17.615957,17.615957,0,0,0,0,0,0,0,0,0,0,56.57,57.78,57.06,57.76,8.333333333333334,1,1,0,0,7,5,5,0,748.66669,701878,112390.48,223315.06,104422.33,4420.29 -15997,19694,35550,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.8588738,4.8153906,0,0,-1179.7252,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.0656791,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,629,179722.75,0,341575,0,686.21185 -15998,19695,35551,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.8506546,8.277422,0,0,-951.99329,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3876724,7.9718342,51.14,60.45,-9,-9,1.666666666666667,2,3,0,0,5,8,5,1,1595,1025085.6,468393.5,602741.88,0,5234.271 -15999,19696,35552,-9,35556,35555,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.13324,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 -15999,19696,35553,-9,35556,35555,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.88196,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 -15999,19696,35554,-9,35556,35555,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.1481,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 -15999,19696,35555,35556,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.6102591,9.8191786,0,9,2,214.269,0,-9,-9,2019,8,0,45,45,1,0,0,50.157261,50.157261,0,0,0,0,0,0,0,0,7.0827432,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,7,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 -15999,19696,35556,35555,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,8.8833895,8.9383831,0,18,-2,81.337685,0,2,3,2019,10,1,50,49,1,1,0,18.11812,18.11812,0,0,0,0,0,0,0,0,5.9319239,0,48.87,58.55,57.16,56.15,10,1,1,0,0,10,7,5,1,822.79999,563411.88,102691.3,448318.09,62157.93,7316.917 -16000,19697,35557,35559,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,9.1287174,9.1417379,0,10,-1,204.92319,0,2,1,2019,18,7,57,46,1,7,0,18.056118,18.056118,0,0,0,0,0,1,1,0,1.0607609,0,34.8,52.21,41.23,59.35,5,1,1,0,0,9,10,5,1,1782.3334,1874064.8,1595816.1,233607.55,65947.367,4238.1353 -16000,19697,35558,-9,35557,35559,1,1,17,0,0,1,2,0,-9,0,4,0,.90164298,.9815383,0,0,-974.05524,-9,1,1,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,1.4975339,0,32.67,63.54,-9,-9,6.666666666666667,1,1,0,0,0,10,5,1,1782.3334,1874064.8,1595816.1,233607.55,65947.367,4238.1353 -16000,19697,35559,35557,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.0853996,8.359807,0,30,1,14.905275,0,2,2,2019,12,2,39,38,1,2,0,11.69192,11.69192,0,0,0,0,0,1,1,0,1.8565383,0,41.23,59.35,34.8,52.21,6.666666666666667,1,1,0,0,10,10,5,1,1782.3334,1874064.8,1595816.1,233607.55,65947.367,4238.1353 -16001,19698,35560,35561,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,45,1,0,0,3,1,2019,11,0,0,0,4,0,0,0,0,0,0,2.2101073,0,0,1,1,0,7.6938415,0,45.34,40.41,41.45,60.44,6.666666666666667,1,1,0,0,0,6,1,1,910.5,707302.63,566953,61786.172,0,3580.8738 -16001,19698,35561,35560,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-1,0,0,2,1,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1042757,0,41.45,60.44,45.34,40.41,6.666666666666667,1,1,0,0,1,6,1,1,910.5,707302.63,566953,61786.172,0,3580.8738 -16002,19699,35562,-9,35564,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-994.36041,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,593.66669,1556478.1,908482.63,669804.75,111351.15,2316.4612 -16002,19699,35563,-9,35564,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.6123,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,593.66669,1556478.1,908482.63,669804.75,111351.15,2316.4612 -16002,19699,35564,-9,-9,-9,1,0,41,0,2,0,1,1,-9,1,4,8.4897928,8.6877213,7.0678916,0,0,-1131.8796,0,1,1,2019,16,5,26,23,1,5,0,23.058832,23.058832,0,0,0,0,0,1,1,0,6.4623747,0,43.48,60.97,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,593.66669,1556478.1,908482.63,669804.75,111351.15,2316.4612 -16003,19700,35565,-9,35567,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.60834,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 -16003,19700,35566,-9,35567,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.4672,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 -16003,19700,35567,35568,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.717257,7.8475504,0,1,-6,23.277847,0,2,2,2019,9,0,16,17,1,0,0,19.023108,19.023108,0,0,0,0,0,0,0,0,8.277504,0,52.72,55.58,53,54,8.333333333333334,1,1,0,0,8,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 -16003,19700,35568,35567,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.1778898,9.0581408,0,1,6,74.622009,-9,-9,-9,2019,9,0,40,0,1,1,0,26.442017,26.442017,0,0,0,0,0,0,0,0,0,0,53,54,52.72,55.58,8,4,1,0,0,1,7,5,1,652.25,490282.53,418753.5,337674.31,186192.36,4793.374 -16004,19701,35569,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1017.7441,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4837642,0,57.16,56.15,-9,-9,10,1,1,0,0,5,12,1,1,589,104968.57,258938.77,0,0,-426.72406 -16005,19702,35570,35572,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,7.1492963,7.621172,0,10,-2,115.5159,0,2,2,2019,6,0,20,0,1,0,0,6.9994807,6.9994807,0,0,0,0,0,1,1,0,0,0,59.53,56.44,62.49,55.09,5,2,3,0,1,1,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 -16005,19702,35571,-9,35570,35572,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.01733,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 -16005,19702,35572,35570,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.9291949,8.3052235,0,10,2,-18.474936,0,2,2,2019,6,0,40,60,1,0,0,11.496307,11.496307,0,0,0,0,0,1,1,0,0,0,62.49,55.09,59.53,56.44,6.666666666666667,2,3,0,1,7,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 -16005,19702,35573,-9,35570,35572,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.05615,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,748.25,106379.7,96512.578,0,0,2081.8721 -16006,19703,35574,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,6.9544334,6.6048498,0,0,0,-965.63745,0,3,3,2019,7,0,20,20,1,0,0,5.3340015,5.3340015,0,0,0,0,0,1,1,0,0,0,58.45,43.18,-9,-9,6.666666666666667,1,1,0,0,9,13,2,0,1011,142767.36,0,0,0,855.99493 -16006,19704,35575,-9,35574,-9,1,1,25,0,0,0,2,2,-9,0,4,8.3312864,8.535903,0,0,0,-1138.7996,0,3,2,2019,10,0,50,0,1,1,0,11.597247,11.597247,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,4,0,1416,12942.889,0,0,0,1495.3491 -16007,19705,35576,-9,35577,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.0671711,8.20401,0,0,-880.62518,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,6.7106028,7.8565717,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,643,1429189.1,463257.13,379018.03,0,2292.6052 -16007,19706,35577,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,6.0760651,6.2374215,0,0,-965.12714,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.3000689,55,43,-9,-9,8,1,1,0,0,0,12,2,1,869,198702.36,-71.856003,0,0,678.19403 -16008,19707,35578,35579,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.6086874,8.5827808,35,3,51.394112,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6115923,55.34,54.26,54.87,51.92,10,1,1,0,0,0,5,4,1,1080,2148188.3,873148.38,697211.88,0,4288.4395 -16008,19707,35579,35578,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.4178638,5.9813156,18,-3,-76.571953,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8372467,6.1053987,54.87,51.92,55.34,54.26,10,1,1,0,0,0,5,4,1,1080,2148188.3,873148.38,697211.88,0,4288.4395 -16009,19708,35580,-9,35583,35582,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.51056,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 -16009,19708,35581,-9,35583,35582,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.82452,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 -16009,19708,35582,35583,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.1384964,7.062932,0,27,1,-63.961411,0,-9,-9,2019,9,0,45,50,1,1,0,3.9919615,3.9919615,0,0,0,0,27,1,1,0,2.1700509,0,52,55,46.76,49.9,8,1,1,0,1,7,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 -16009,19708,35583,35582,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,0,0,0,27,-1,-7.1727724,0,2,-9,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,120,1,1,0,4.5781679,0,46.76,49.9,52,55,5,1,1,0,1,3,13,2,1,793.75,10879.105,107222.27,0,0,2060.468 -16009,19709,35584,-9,35583,35582,1,1,25,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1037.025,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,13,2,1,288,-344565.94,0,0,0,1117.5354 -16010,19710,35585,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-996.97943,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9850678,0,54.37,36.24,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,394,301695.28,0,0,0,1024.8715 -16011,19711,35586,35587,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.6280966,7.5064087,57,1,18.258064,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.5314865,7.6653528,62.28,40.08,54.96,53.17,8.333333333333334,1,1,0,0,0,6,3,1,592,808744.13,552440.69,251274.28,0,2710.3008 -16011,19711,35587,35586,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.6472468,6.810854,9,-1,7.795362,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.9966636,6.5857821,54.96,53.17,62.28,40.08,8.333333333333334,1,1,0,0,0,6,3,1,592,808744.13,552440.69,251274.28,0,2710.3008 -16012,19712,35588,35589,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,7,-1,0,0,3,-9,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,62.89,52.58,36.63,3.333333333333333,1,1,0,0,0,7,1,0,374.5,-224843.94,0,0,0,1535.6223 -16012,19712,35589,35588,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,7,1,0,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.58,36.63,45.26,62.89,6.666666666666667,1,1,0,0,0,7,1,0,374.5,-224843.94,0,0,0,1535.6223 -16013,19713,35590,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,8.7758026,8.268918,0,0,0,-948.77533,0,1,1,2019,4,0,41,42,1,0,0,14.205139,14.205139,0,0,0,0,0,0,0,0,0,0,64.78,32.7,-9,-9,6.666666666666667,3,4,0,0,7,8,5,1,553,0,0,0,0,2210.9004 -16014,19714,35591,35592,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,45,-4,-96.038559,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.3,43.7,45.05,47.9,8.333333333333334,1,1,0,0,8,5,2,1,863.5,364406.06,103406.94,226023.36,0,1402.8477 -16014,19714,35592,35591,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,6.9624448,6.8158998,0,11,4,-123.83506,0,-9,-9,2019,9,0,55,70,1,0,0,2.5397184,2.5397184,1,0,0,0,0,1,1,0,0,0,45.05,47.9,40.3,43.7,8.333333333333334,1,1,0,0,13,5,2,1,863.5,364406.06,103406.94,226023.36,0,1402.8477 -16015,19715,35593,35594,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,0,0,53,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,1.5323786,0,52.75,47.35,52.97,53.97,8.333333333333334,1,1,0,0,0,4,1,0,528,685365,489205.59,173100.17,0,1044.1555 -16015,19715,35594,35593,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,0,0,53,-2,0,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.77953726,0,52.97,53.97,52.75,47.35,8.333333333333334,1,1,0,0,0,4,1,0,528,685365,489205.59,173100.17,0,1044.1555 -16016,19716,35595,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.869895,6.9186425,0,0,-974.82208,0,2,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,.94432968,6.7567019,53,44,-9,-9,8,1,1,0,0,0,12,2,1,188,241503,180676.58,77005.664,0,796.13965 -16017,19717,35596,35598,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,8.8592043,8.6611471,0,8,5,7.4032373,-9,-9,-9,2019,12,0,40,0,1,0,0,18.92532,18.92532,0,0,0,0,0,1,1,0,0,0,48,46.89,51.83,57.2,6.666666666666667,1,1,0,0,12,11,5,1,1352.3334,174968.25,125973.17,416248.69,134068.14,4325.2603 -16017,19717,35597,-9,35598,35596,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.31482,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1352.3334,174968.25,125973.17,416248.69,134068.14,4325.2603 -16017,19717,35598,35596,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.2237949,8.5285063,0,8,-5,-10.805857,0,-9,-9,2019,9,0,40,40,1,0,0,13.076067,13.076067,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48,46.89,6.666666666666667,1,1,0,0,10,11,5,1,1352.3334,174968.25,125973.17,416248.69,134068.14,4325.2603 -16018,19718,35599,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,6.8331118,7.2350779,0,8,8,-107.45411,-9,3,-9,2019,10,0,70,0,1,0,0,1.7765579,1.7765579,0,0,0,0,0,0,0,0,0,0,59.7,53.75,52,55,8.333333333333334,1,1,0,0,10,6,3,1,989,-232903.36,-72554.953,0,0,224.42245 -16018,19719,35600,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.3678155,7.8354988,0,8,-8,-42.783279,0,3,3,2019,9,0,40,40,1,1,0,4.665441,4.665441,0,0,0,0,0,0,0,0,0,0,52,55,59.7,53.75,8,4,5,0,0,1,6,3,1,446,-52078.344,0,0,0,1040.4061 -16019,19720,35601,35602,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.6567936,8.5657835,10,-3,-42.12458,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.6298466,6.5667558,49.41,58.28,35.38,43.47,8.333333333333334,1,1,0,0,3,11,4,1,525.5,2812432,1752313.4,444847.69,0,4864.8809 -16019,19720,35602,35601,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.6229339,7.360497,10,3,-110.71978,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.9970702,7.3355985,35.38,43.47,49.41,58.28,8.333333333333334,1,1,0,0,5,11,4,1,525.5,2812432,1752313.4,444847.69,0,4864.8809 -16020,19721,35603,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.4460459,8.988718,0,0,0,-969.13617,0,-9,-9,2019,12,0,55,45,1,0,0,13.014932,13.014932,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,5,5,0,929,-279496.41,169195.38,88179.109,110879.9,1723.2291 -16021,19722,35604,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,4.8448353,5.2201843,0,0,-936.34778,0,-9,-9,2019,8,0,0,20,3,0,0,0,0,0,0,0,0,0,1,0,1,5.3488054,0,49.23,55.95,-9,-9,6.666666666666667,1,1,1,1,9,12,2,0,1203,158967.66,0,0,0,1009.9564 -16021,19722,35605,-9,35604,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.29169,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1203,158967.66,0,0,0,1009.9564 -16022,19723,35606,35609,-9,-9,1,1,40,0,2,0,1,1,-9,0,2,9.6255941,9.6148767,0,6,4,-87.952972,0,2,2,2019,13,2,52,60,1,2,0,35.377148,35.377148,0,0,0,0,0,0,0,0,0,0,49.85,44.94,61.43,43.34,6.666666666666667,1,1,0,0,7,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 -16022,19723,35607,-9,35609,35606,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.28687,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 -16022,19723,35608,-9,35609,35606,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9257,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 -16022,19723,35609,35606,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.435657,7.1338301,0,6,-4,-23.949636,0,2,3,2019,6,0,18,22,1,0,0,11.196658,11.196658,0,0,0,0,0,0,0,0,7.5907612,0,61.43,43.34,49.85,44.94,8.333333333333334,1,1,0,0,7,5,5,1,1141.25,808925.31,689669.94,197210.89,84713.516,7150.312 -16023,19724,35610,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-988.10474,0,3,-9,2019,12,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,34.01,27.79,-9,-9,10,1,1,0,0,0,7,2,0,846.5,-73485.445,0,0,0,1195.6609 -16023,19724,35611,-9,35610,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1014.2422,-9,3,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,46.76,63.69,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,846.5,-73485.445,0,0,0,1195.6609 -16023,19725,35612,-9,35610,-9,1,1,19,0,0,0,3,3,-9,0,4,6.9741688,7.0123019,0,0,0,-919.81293,0,3,-9,2019,10,0,34,35,1,2,1,4.1127067,4.1127067,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,2,0,320,-242426.83,0,0,0,484.2818 -16024,19726,35613,35614,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.4108424,7.6134033,54,3,20.638937,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2776494,54.71,42.55,29.52,35.31,10,1,1,0,0,0,5,2,1,969.5,436248.38,239404.19,218442.28,0,1760.0134 -16024,19726,35614,35613,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.476326,5.4338951,54,-3,-1.3205223,0,-9,2,2019,26,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,2.8349588,5.4205885,29.52,35.31,54.71,42.55,3.333333333333333,1,1,0,0,0,5,2,1,969.5,436248.38,239404.19,218442.28,0,1760.0134 -16025,19727,35615,35616,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.2163029,7.1518898,0,35,-1,-10.796649,0,-9,-9,2019,11,0,17,24,1,0,0,9.9486151,9.9486151,0,0,0,0,14.5,0,0,0,0,0,58.15,52.91,56.33,51.02,8.333333333333334,1,1,0,0,13,9,5,1,557,2645467.8,1055308.1,640087.63,262753.66,3207.4341 -16025,19727,35616,35615,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.6905298,8.6162577,0,38,1,-8.3142014,0,2,3,2019,10,0,45,45,1,0,0,13.895852,13.895852,0,0,0,0,0,0,0,0,0,0,56.33,51.02,58.15,52.91,1.666666666666667,1,1,0,0,13,9,5,1,557,2645467.8,1055308.1,640087.63,262753.66,3207.4341 -16026,19728,35617,35618,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,7.3355961,7.2984738,0,23,10,-76.725372,0,2,3,2019,8,0,25,25,1,0,0,7.8495412,7.8495412,0,0,0,0,0,1,1,0,.11329798,0,43.54,59.6,27,60.54,6.666666666666667,1,1,0,0,10,10,4,1,435,115633.57,119213.84,0,0,1934.1427 -16026,19728,35618,35617,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.47474,8.5044127,0,23,-10,6.9829631,0,2,2,2019,14,2,37,37,1,2,0,18.321358,18.321358,0,0,0,.22664084,0,1,1,0,0,0,27,60.54,43.54,59.6,6.666666666666667,1,1,0,0,10,10,4,1,435,115633.57,119213.84,0,0,1934.1427 -16026,19728,35619,-9,35618,35617,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.8598,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,435,115633.57,119213.84,0,0,1934.1427 -16026,19729,35620,-9,35618,35617,1,1,19,0,1,0,2,2,-9,0,4,8.231905,7.9926419,0,0,0,-1041.2953,0,2,2,2019,4,1,37,36,1,1,1,13.193139,13.193139,0,0,0,0,0,1,1,0,1.4841679,0,45.91,59.89,-9,-9,0,1,1,0,0,2,10,4,1,2234,29524.113,56519.426,0,0,1856.7795 -16027,19730,35621,35622,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.1032248,7.0078983,0,10,4,-76.652084,0,2,1,2019,10,1,20,20,1,1,0,8.3921356,8.3921356,0,0,0,0,0,0,0,0,0,0,51.91,46.14,48.79,49.56,6.666666666666667,1,1,0,0,12,9,3,1,2184.5,1294501.3,854415.5,301178.09,0,1736.8246 -16027,19730,35622,35621,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.8652444,7.8025112,0,27,-4,-81.649948,0,3,2,2019,11,1,25,25,1,1,0,11.550364,11.550364,0,0,0,0,14.5,0,0,0,0,0,48.79,49.56,51.91,46.14,1.666666666666667,1,1,0,0,12,9,3,1,2184.5,1294501.3,854415.5,301178.09,0,1736.8246 -16028,19731,35623,35624,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.3527513,6.0812964,53,5,-54.770531,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.218524,44.59,24.41,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,1,991.5,208859.22,76135.367,51817.348,0,1368.5522 -16028,19731,35624,35623,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.2324653,5.4255171,53,-5,43.386139,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,1.3567339,5.4011731,57.33,53.46,44.59,24.41,8.333333333333334,1,1,0,0,3,2,2,1,991.5,208859.22,76135.367,51817.348,0,1368.5522 -16029,19732,35625,-9,-9,-9,1,0,43,0,2,0,1,1,-9,1,4,9.5953779,9.8122826,7.0237284,0,0,-910.43414,0,2,1,2019,15,4,36,40,1,4,0,50.516541,50.516541,0,0,0,0,90,1,1,0,7.7773628,0,43.43,54.3,-9,-9,6.666666666666667,1,1,0,0,12,8,5,1,194,236028.81,57188.52,394569.94,137506.31,7809.6084 -16030,19733,35626,-9,35627,35628,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.2019,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 -16030,19733,35627,35628,-9,-9,1,0,44,0,3,0,1,1,-9,0,5,7.1051273,6.9368439,0,21,-1,-47.301258,0,3,3,2019,8,1,12,10,1,1,0,10.862753,10.862753,0,0,0,0,0,0,0,0,2.1513827,0,54.87,51.92,47.44,51.53,8.333333333333334,1,1,0,0,9,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 -16030,19733,35628,35627,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,9.6621275,9.6972313,0,23,1,-44.24556,0,2,1,2019,15,5,45,52,1,5,0,39.002583,39.002583,0,0,0,0,0,0,0,0,3.6027539,0,47.44,51.53,54.87,51.92,10,1,1,0,0,8,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 -16030,19733,35629,-9,35627,35628,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.1271,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 -16030,19733,35630,-9,35627,35628,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.9031,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,602,550766.44,413427.13,270773.56,178057.13,4616.7061 -16031,19734,35631,35632,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,8.1903677,8.3570881,0,4,5,58.941719,0,-9,-9,2019,10,1,37,37,1,1,0,12.60862,12.60862,0,0,0,0,0,1,1,0,0,0,46.48,51.52,57.06,57.76,8.333333333333334,1,1,0,0,2,8,4,0,589,729275.44,126068.72,363378.25,0,3523.4761 -16031,19734,35632,35631,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,8.1556988,8.2019386,0,4,-5,-56.863544,0,-9,-9,2019,7,0,70,30,1,0,0,5.3523741,5.3523741,0,0,0,0,56,1,1,0,0,0,57.06,57.76,46.48,51.52,6.666666666666667,4,2,0,0,8,8,4,0,589,729275.44,126068.72,363378.25,0,3523.4761 -16031,19734,35633,-9,35631,35632,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-938.06744,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,8,4,0,589,729275.44,126068.72,363378.25,0,3523.4761 -16032,19735,35634,35635,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.1018248,7.9572244,7,7,21.113811,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.6919427,7.8070984,57.33,53.46,60.3,46.58,8.333333333333334,1,1,0,0,0,12,5,0,508,2258052.5,2343801,0,0,4075.24 -16032,19735,35635,35634,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4015493,8.3009825,0,7,-7,2.7670665,0,2,3,2019,6,0,40,43,1,0,0,10.546026,10.546026,0,0,0,0,0,1,1,0,0,0,60.3,46.58,57.33,53.46,8.333333333333334,1,1,0,0,8,12,5,0,508,2258052.5,2343801,0,0,4075.24 -16033,19736,35636,35637,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,6.9139876,6.7403116,19,-4,65.569656,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,3.7997484,7.0751252,36.34,53.7,47.54,39.33,1.666666666666667,1,1,0,0,11,7,3,1,752,794546.81,41830.703,426909.81,-4576.5654,1687.1792 -16033,19736,35637,35636,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,7.9949541,7.7415776,19,4,-27.703791,0,3,2,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,2.7952859,7.9793572,47.54,39.33,36.34,53.7,8.333333333333334,1,1,0,0,9,7,3,1,752,794546.81,41830.703,426909.81,-4576.5654,1687.1792 -16034,19737,35638,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.2995105,7.0586476,0,0,-1081.2462,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,3.3583241,0,28.898527,0,1,1,0,2.6256196,7.3729491,58.04,31.58,-9,-9,5,1,1,0,0,0,6,3,1,297,290958.34,109864.65,160372.42,0,1918.9917 -16035,19738,35639,35640,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,56,1,102.7009,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8198066,0,50.48,56.4,55.19,54.26,6.666666666666667,1,1,0,0,0,9,2,1,325,1140021.9,134220.2,683836.13,0,1197.0613 -16035,19738,35640,35639,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.9114747,6.5744438,56,-1,70.805313,0,2,2,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.7703257,6.7490635,55.19,54.26,50.48,56.4,8.333333333333334,1,1,0,0,4,9,2,1,325,1140021.9,134220.2,683836.13,0,1197.0613 -16036,19739,35641,35642,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.9391403,9.2210894,0,15,4,-21.717825,0,2,2,2019,7,0,38,39,1,0,0,26.101772,26.101772,0,0,0,0,0,0,0,0,0,0,52.34,56.95,57.16,56.15,1.666666666666667,1,1,0,0,11,7,5,1,962,579780.69,216540.03,678449.94,274244.66,6712.9111 -16036,19739,35642,35641,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.0396767,9.1147947,0,15,-4,-162.01314,0,2,2,2019,7,0,41,35,1,0,0,20.847019,20.847019,0,0,0,0,0,0,0,0,6.6811838,0,57.16,56.15,52.34,56.95,8.333333333333334,1,1,0,0,11,7,5,1,962,579780.69,216540.03,678449.94,274244.66,6712.9111 -16037,19740,35643,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,7.7343392,7.875917,0,0,0,-977.00739,0,3,3,2019,14,3,37,0,1,3,0,8.013504,8.013504,0,0,0,0,0,1,1,0,0,0,48.66,26.38,-9,-9,3.333333333333333,1,1,0,1,9,2,3,0,567,222477.86,-51947.133,134014.09,0,962.41888 -16038,19741,35644,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,8.0171185,7.7055464,0,0,0,-1025.7064,0,2,1,2019,11,1,28,28,1,1,0,10.779465,10.779465,0,0,0,0,0,1,1,0,0,0,61.64,35.39,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,764,1332994.1,490499.16,503934.44,0,1279.4464 -16039,19742,35645,-9,35646,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1135.4294,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,1,0,1210,289438.16,-74090.484,331498.88,-331.09766,997.24561 -16039,19742,35646,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,0,0,0,0,0,-980.48645,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,1,0,0,8,1,0,1210,289438.16,-74090.484,331498.88,-331.09766,997.24561 -16040,19743,35647,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,6.6672578,6.8362727,0,0,0,-1021.3833,0,-9,-9,2019,7,1,16,16,1,1,0,7.93433,7.93433,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,5,2,2,0,549,-73883.727,118375.58,0,0,931.24353 -16041,19744,35648,35649,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.0833311,7.8176522,47,4,63.702026,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.8514194,7.8294697,59.14,44.63,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,614,888771.94,481230.81,425062.13,0,2460.7869 -16041,19744,35649,35648,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,1.7951726,2.0449209,0,46,-4,-55.655437,0,-9,3,2019,6,0,30,35,1,0,0,.024600249,.024600249,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.14,44.63,8.333333333333334,1,1,0,0,11,9,3,1,614,888771.94,481230.81,425062.13,0,2460.7869 -16042,19745,35650,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.2318449,8.2115192,6.1338511,0,0,-959.77606,-9,3,3,2019,6,0,40,0,1,0,0,9.4998474,9.4998474,0,0,0,0,0,0,0,0,0,6.2497044,66.52,32.82,-9,-9,10,1,1,0,0,10,4,5,1,103,1110962.4,637578.19,259216.44,0,1963.9608 -16043,19746,35651,-9,35653,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.834,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,1,386.66666,436762.19,64878.313,346906.53,23030.191,1484.3824 -16043,19746,35652,-9,35653,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.76263,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,1,386.66666,436762.19,64878.313,346906.53,23030.191,1484.3824 -16043,19746,35653,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1071.2767,0,3,3,2019,5,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,386.66666,436762.19,64878.313,346906.53,23030.191,1484.3824 -16044,19747,35654,35658,-9,-9,1,1,46,2,5,0,2,2,-9,0,4,8.0074186,7.6699882,0,3,7,-90.375443,-9,-9,-9,2019,9,0,40,0,1,1,0,7.8825974,7.8825974,0,0,0,0,0,1,0,1,5.1760736,0,53,55,54.79,55.86,8,1,1,0,0,1,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 -16044,19747,35655,-9,35658,-9,1,0,5,2,5,1,3,0,-9,0,4,0,0,0,0,0,-962.14758,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 -16044,19747,35656,-9,35658,-9,1,0,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-873.0553,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 -16044,19747,35657,-9,35658,35654,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1022.7529,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 -16044,19747,35658,35654,-9,-9,1,0,39,2,5,0,2,2,-9,0,4,0,6.2007618,6.1792912,3,-7,-11.024632,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,6.6637201,0,54.79,55.86,53,55,6.666666666666667,1,1,0,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 -16044,19747,35659,-9,35658,35654,1,0,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1035.0081,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 -16044,19747,35660,-9,35658,-9,1,0,9,2,5,1,3,0,-9,0,4,0,0,0,0,0,-918.82666,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,0,642.57141,302759.41,87679.836,101454.88,86456.273,3232.0918 -16045,19748,35661,35663,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.5731821,7.4911561,0,4,-1,-53.782661,0,-9,-9,2019,10,2,48,48,1,2,0,4.9262929,4.9262929,0,0,0,0,0,1,1,0,0,0,43,54.57,25.6,35.96,6.666666666666667,1,1,0,0,12,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 -16045,19748,35662,-9,35663,35661,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.619,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 -16045,19748,35663,35661,-9,-9,1,0,31,0,2,0,2,2,-9,0,1,0,0,0,4,1,120.7147,0,2,2,2019,30,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,25.6,35.96,43,54.57,5,1,1,0,1,0,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 -16045,19748,35664,-9,35663,35661,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9161,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,341.75,163817.3,114017.05,0,0,2390.0706 -16046,19749,35665,35667,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,0,0,0,8,2,23.658722,0,-9,-9,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,47.98,39.44,50.22,39.49,5,1,1,1,0,4,6,2,0,709.66669,174652.33,16178.007,62397.859,0,1253.4148 -16046,19749,35666,-9,35667,35665,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1023.8924,-9,2,2,2019,21,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,0,0,29.88,56.07,-9,-9,1.666666666666667,1,1,0,1,0,6,2,0,709.66669,174652.33,16178.007,62397.859,0,1253.4148 -16046,19749,35667,35665,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.1805682,6.9091673,0,8,-2,17.748089,0,2,2,2019,13,1,25,19,1,1,0,6.068584,6.068584,0,0,0,0,0,1,1,0,0,0,50.22,39.49,47.98,39.44,5,1,1,0,0,11,6,2,0,709.66669,174652.33,16178.007,62397.859,0,1253.4148 -16046,19750,35668,-9,35667,35665,1,0,21,0,0,0,2,2,-9,0,4,7.3959045,7.2701535,0,0,0,-949.99835,0,2,2,2019,3,0,24,17,1,0,1,9.7790136,9.7790136,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,6,3,0,202,-60223.449,0,0,0,756.83649 -16047,19751,35669,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.647563,8.6623735,0,0,0,-1009.213,0,1,2,2019,7,1,37,37,1,1,0,17.978346,17.978346,0,0,0,0,0,1,1,0,0,0,55.4,39.48,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,380,-71329.914,24089.639,0,0,2459.2961 -16047,19752,35670,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6134696,7.6393828,0,0,0,-1015.6402,0,-9,-9,2019,11,0,25,30,1,2,0,10.132647,10.132647,0,0,0,0,0,1,1,0,2.5362148,0,47,58,-9,-9,7,2,3,0,0,1,8,3,0,860,236641.27,0,0,0,1215.9183 -16047,19753,35671,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.4153605,8.9528561,0,0,0,-1116.5355,0,-9,-9,2019,10,0,40,40,1,1,0,18.356455,18.356455,0,0,0,0,0,1,1,0,5.7060227,0,49,58,-9,-9,7,4,6,0,0,1,8,5,0,874,199630.38,54888.832,0,0,2656.564 -16048,19754,35672,-9,-9,-9,1,0,57,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1010.9769,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.19,58.01,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,247,209884.58,0,0,0,1717.6504 -16048,19754,35673,-9,35672,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-889.89825,-9,2,-9,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,247,209884.58,0,0,0,1717.6504 -16048,19755,35674,-9,35672,-9,1,1,18,0,1,0,3,3,-9,1,4,0,0,0,0,0,-975.03577,-9,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,6,1,0,533,23457.762,0,0,0,1116.8563 -16049,19756,35675,35676,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.3920083,7.6564498,27,0,98.572617,-9,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.3928585,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,5,4,3,1,610,1108000,793407.31,266073.19,0,1848.1511 -16049,19756,35676,35675,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.0091705,6.6888213,28,0,38.433407,-9,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,.88187903,7.059113,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,7,4,3,1,610,1108000,793407.31,266073.19,0,1848.1511 -16049,19757,35677,-9,35676,35675,1,1,29,0,0,0,2,2,-9,0,4,9.0671701,9.069747,0,0,0,-1010.1049,-9,2,2,2019,9,0,52,0,1,0,0,19.562603,19.562603,0,0,0,0,0,1,1,0,1.0685867,0,52.15,52.9,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,843,-156431.27,14752.497,0,0,4325.0938 -16050,19758,35678,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-973.65802,0,2,3,2019,6,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.77,47.24,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,366,-91243.117,112030.45,0,0,-39.743141 -16051,19759,35679,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.5630441,7.8886075,0,0,0,-998.11371,0,2,3,2019,22,10,24,24,1,10,0,9.2995672,9.2995672,0,0,0,0,0,1,0,1,0,0,33.83,63.9,-9,-9,1.666666666666667,1,1,0,0,13,4,3,0,1432.5,-143328,-1435.9668,0,0,1667.1489 -16051,19759,35680,-9,35679,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.03198,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1432.5,-143328,-1435.9668,0,0,1667.1489 -16052,19760,35681,-9,35682,-9,1,1,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1080.3524,0,3,-9,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,625,215539.75,0,0,0,468.10474 -16052,19761,35682,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1019.727,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,2,3,0,0,0,8,1,0,1247,54620.332,0,0,0,938.052 -16052,19762,35683,-9,35682,-9,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-989.8736,-9,3,-9,2019,10,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,8,1,0,664,254474.41,0,0,0,530.36072 -16052,19763,35684,-9,35682,-9,1,0,28,0,0,0,1,1,-9,0,5,8.9217215,9.0641928,0,0,0,-1069.5334,0,3,-9,2019,6,0,40,35,1,0,1,25.47765,25.47765,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,2,3,0,0,2,8,5,0,266,187393.83,125669.92,349861.25,350968.78,3406.4651 -16053,19764,35685,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.5546451,6.7237535,0,0,-946.60895,0,2,2,2019,6,0,0,20,4,0,0,0,0,0,0,0,0,7,1,1,0,7.1982017,6.5951757,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,1450,-149840.17,-55026.969,0,0,1919.1027 -16054,19765,35686,-9,35687,35688,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.88586,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,532.66669,711583.13,54171.516,355185.94,0,3860.6851 -16054,19765,35687,35688,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,6.9522228,6.9345369,0,2,-3,48.61866,0,2,2,2019,10,2,38,39,1,2,0,3.9425485,3.9425485,0,0,0,0,0,1,1,0,3.1862071,0,48.87,58.55,54.1,59.11,10,1,1,0,0,10,10,4,1,532.66669,711583.13,54171.516,355185.94,0,3860.6851 -16054,19765,35688,35687,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.6348848,9.1039019,0,2,3,-73.279121,0,-9,-9,2019,8,0,38,37,1,0,0,18.536068,18.536068,0,0,0,0,0,1,1,0,4.9191418,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,9,10,4,1,532.66669,711583.13,54171.516,355185.94,0,3860.6851 -16055,19766,35689,35690,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.0837793,8.1065464,0,10,-15,112.05804,0,-9,-9,2019,10,1,37,38,1,1,0,9.1828451,9.1828451,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.23,55.6,8.333333333333334,3,4,0,0,3,7,5,0,1039.5,1044758.6,551585.13,220215.73,49734.594,2876.5767 -16055,19766,35690,35689,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.7429829,8.326438,0,18,15,10.374022,0,2,2,2019,12,0,65,50,1,0,0,6.6726193,6.6726193,0,0,0,0,0,0,0,0,2.8938208,0,52.23,55.6,57.16,56.15,6.666666666666667,1,1,0,0,12,7,5,0,1039.5,1044758.6,551585.13,220215.73,49734.594,2876.5767 -16056,19767,35691,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.5738,0,3,2,2019,14,3,0,35,3,3,0,0,0,0,0,0,0,0,0,0,0,2.1317394,0,33.72,60.21,-9,-9,6.666666666666667,1,1,0,0,10,9,1,1,956,0,0,0,0,-116.66019 -16057,19768,35692,-9,-9,-9,1,1,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1032.6642,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.06,42.3,-9,-9,1.666666666666667,1,1,0,1,2,6,1,0,428,224341.33,-61858.719,0,0,1075.8873 -16058,19769,35693,35694,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.688921,7.835711,0,9,0,169.81082,0,-9,-9,2019,9,0,30,30,1,0,0,6.9062066,6.9062066,0,0,0,0,0,1,1,0,0,0,52.83,49.11,49.06,58.64,1.666666666666667,1,1,0,0,9,13,4,1,651.66669,336204.03,435144.44,191834.06,92517.266,2889.3975 -16058,19769,35694,35693,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.5462046,8.516573,0,9,0,-51.901226,0,2,2,2019,9,1,45,44,1,1,0,14.26563,14.26563,0,0,0,0,7,1,1,0,3.3088267,0,49.06,58.64,52.83,49.11,6.666666666666667,1,1,0,0,9,13,4,1,651.66669,336204.03,435144.44,191834.06,92517.266,2889.3975 -16058,19769,35695,-9,35693,35694,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.90686,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,651.66669,336204.03,435144.44,191834.06,92517.266,2889.3975 -16059,19770,35696,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,5.6477318,5.7954993,0,0,-912.14941,0,2,2,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.6771035,54.27,48.04,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,335,117428.32,-27031.113,0,0,1118.1216 -16060,19771,35697,-9,-9,35698,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1028.8397,-9,-9,1,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,5,1,1099.5,1126986.8,117232.33,851086.38,0,6201.1299 -16060,19771,35698,-9,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.3122625,9.1767101,0,0,0,-1023.8145,0,3,2,2019,10,1,38,30,1,1,0,36.410709,36.410709,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,1099.5,1126986.8,117232.33,851086.38,0,6201.1299 -16061,19772,35699,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.7436357,7.5959496,0,0,0,-975.21497,0,-9,-9,2019,12,0,56,56,1,0,0,4.9991784,4.9991784,0,0,0,0,0,0,0,0,0,0,37.79,59.6,-9,-9,5,1,1,0,0,9,7,3,0,154,-161907.95,-118806.3,0,0,744.68628 -16062,19773,35700,35701,-9,-9,1,0,64,0,0,0,3,3,-9,0,5,0,6.0506597,6.0709138,38,-1,-30.917681,0,-9,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,7.8937516,6.3188314,51.39,59.18,52,48,8.333333333333334,1,1,0,0,0,2,2,1,512,82313.836,276384.19,0,0,2483.3027 -16062,19773,35701,35700,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.2514892,6.4154735,8,1,71.441238,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,2.6406922,6.8492866,52,48,51.39,59.18,7,1,1,0,0,0,2,2,1,512,82313.836,276384.19,0,0,2483.3027 -16062,19774,35702,-9,35700,35701,1,1,29,0,0,0,2,2,-9,0,4,7.6425567,7.8555365,0,0,0,-901.93091,0,3,2,2019,10,0,37,38,1,1,0,8.5916023,8.5916023,0,0,0,0,0,1,1,0,3.5463521,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,2563,-168480.34,0,0,0,817.46344 -16063,19775,35703,35704,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.5744686,6.6403966,33,0,31.075851,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.4395537,6.8991752,60.47,41.03,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,750,1093379.5,633477.44,324373.25,0,1732.3351 -16063,19775,35704,35703,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.9162879,7.6705871,33,0,133.72716,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.0668206,7.860815,57.33,53.46,60.47,41.03,8.333333333333334,1,1,0,0,11,10,3,1,750,1093379.5,633477.44,324373.25,0,1732.3351 -16064,19776,35705,35706,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,8.682972,8.7387362,51,8,-78.660995,0,1,2,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,8.7389278,57,50,55.82,39.08,8.333333333333334,1,1,0,0,0,10,4,1,470.5,1318221.1,546248.5,377694.47,0,3766.811 -16064,19776,35706,35705,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,51,-8,-101.98537,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,4.0834675,5.7627053,18.557085,0,1,1,0,2.9552877,0,55.82,39.08,57,50,8.333333333333334,1,1,0,0,0,10,4,1,470.5,1318221.1,546248.5,377694.47,0,3766.811 -16065,19777,35707,-9,-9,-9,1,0,24,0,1,0,2,2,0,0,4,0,6.3697939,6.0288262,0,0,-1094.5986,-9,2,2,2019,16,6,0,0,2,6,0,0,0,0,0,0,0,0,1,1,0,6.0623732,0,30.87,65.23999999999999,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,494,154777.25,0,0,0,1129.8409 -16065,19777,35708,-9,35707,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.9892,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,494,154777.25,0,0,0,1129.8409 -16066,19778,35709,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.8250375,7.1114864,0,0,0,-1001.0939,0,3,-9,2019,12,0,21,16,1,0,0,7.2287369,7.2287369,0,0,0,0,2,1,1,0,0,0,48.18,53.42,-9,-9,6.666666666666667,4,2,0,1,4,9,2,0,369,179050.06,0,0,0,1036.9546 -16067,19779,35710,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.8132925,8.6739016,0,0,0,-994.85468,-9,1,1,2019,11,0,45,0,1,0,0,17.643944,17.643944,0,0,0,0,0,0,0,0,3.6207705,0,57.16,56.15,-9,-9,10,1,1,0,0,6,8,5,1,1130,-89074.383,0,0,0,1987.9384 -16068,19780,35711,35712,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.625658,8.6694365,5.3340521,9,3,-71.595314,0,3,2,2019,8,0,35,36,1,0,0,22.678677,22.678677,0,0,0,0,2,0,0,0,5.9039059,0,48.29,47.89,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,1011,190221.72,-70019.266,341022.25,242826.91,5087.4688 -16068,19780,35712,35711,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.6825895,8.3757067,0,9,-3,-53.78492,0,3,2,2019,7,0,77,37,1,0,0,7.6705027,7.6705027,0,0,0,0,2,0,0,0,1.7958378,0,57.33,53.46,48.29,47.89,8.333333333333334,1,1,0,0,9,10,5,1,1011,190221.72,-70019.266,341022.25,242826.91,5087.4688 -16069,19781,35713,35714,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,0,0,70,2,0,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,0,10.726398,0,0,1,1,0,0,0,60.61,33.36,63.09,47.92,8.333333333333334,1,1,0,0,0,9,1,1,830,613796.63,0,756352.63,0,1299.5894 -16069,19781,35714,35713,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,0,0,70,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.09,47.92,60.61,33.36,10,1,1,0,0,0,9,1,1,830,613796.63,0,756352.63,0,1299.5894 -16070,19782,35715,35716,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.9638309,8.1883678,0,2,0,-62.172871,-9,-9,-9,2019,11,0,45,0,1,0,0,8.6397257,8.6397257,0,0,0,0,0,0,0,0,2.143935,0,43.2,59.97,51.94,55.88,6.666666666666667,1,1,0,1,7,9,3,1,516.5,323635.75,146853.95,184059.56,89407.586,1703.0691 -16070,19782,35716,35715,-9,-9,1,0,27,0,0,0,2,2,0,0,3,0,0,0,2,0,85.501907,-9,2,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,43.2,59.97,8.333333333333334,1,1,0,0,6,9,3,1,516.5,323635.75,146853.95,184059.56,89407.586,1703.0691 -16071,19783,35717,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9308596,7.139164,0,0,-966.04413,0,2,1,2019,23,9,0,0,4,9,0,0,0,0,0,0,0,74.5,1,1,0,3.931242,7.633574,41.65,43.39,-9,-9,3.333333333333333,1,1,0,1,9,10,3,1,538,516552.75,451133.5,0,0,1205.5323 -16072,19784,35718,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-950.19354,0,-9,-9,2019,10,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,41.16,27.02,-9,-9,5,1,1,0,0,0,2,1,0,1021,0,0,0,0,1272.7979 -16073,19785,35719,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.2179575,6.5810294,0,0,-854.26019,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1541739,6.0537109,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,1,2058,286170.38,60821.316,238143.09,0,1455.4065 -16074,19786,35720,35721,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.0272369,8.8437386,0,28,-4,78.346649,0,2,1,2019,11,0,37,37,1,0,0,25.627424,25.627424,0,0,0,0,0,0,0,0,2.0599318,0,53.68,45.47,52,54.51,8.333333333333334,1,1,0,0,12,11,5,1,184.5,518554.44,484436.56,332405.91,117145.27,4784.3857 -16074,19786,35721,35720,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.2846193,8.4967909,0,28,4,23.677996,0,2,2,2019,12,2,37,37,1,2,0,11.741648,11.741648,0,0,0,0,0,0,0,0,2.6022427,0,52,54.51,53.68,45.47,8.333333333333334,1,1,0,0,12,11,5,1,184.5,518554.44,484436.56,332405.91,117145.27,4784.3857 -16075,19787,35722,35723,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.0708122,7.5112014,6,0,51.075394,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3256826,57.16,56.15,45,44.59,10,1,1,0,0,0,12,4,1,388.5,1481454.5,934234.06,397710.56,0,4175.1172 -16075,19787,35723,35722,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,8.2284737,8.4819689,6,0,-162.40648,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1734571,8.3881865,45,44.59,57.16,56.15,5,1,1,0,0,0,12,4,1,388.5,1481454.5,934234.06,397710.56,0,4175.1172 -16076,19788,35724,35725,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,17,6,3.7549651,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,0,12,2,0,207.5,105457.22,248176.41,97504.172,0,1017.2866 -16076,19788,35725,35724,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.5082474,5.8145838,12,-6,-25.065849,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0284758,5.6843181,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,7,12,2,0,207.5,105457.22,248176.41,97504.172,0,1017.2866 -16077,19789,35726,35727,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5447416,8.4414005,0,8,-2,109.91787,0,3,3,2019,6,0,44,39,1,0,0,13.541062,13.541062,0,0,0,0,0,1,1,0,1.2361064,0,56.52,48.31,54.96,53.17,8.333333333333334,1,1,0,0,8,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 -16077,19789,35727,35726,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.4480486,8.3501663,0,8,2,-4.6750588,0,3,3,2019,4,0,35,35,1,0,0,19.381685,19.381685,0,0,0,0,0,1,1,0,1.4792658,0,54.96,53.17,56.52,48.31,8.333333333333334,1,1,0,0,8,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 -16077,19789,35728,-9,35727,35726,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1057.5341,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 -16077,19789,35729,-9,35727,35726,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.40363,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,626.5,603807.19,457022.88,136290.91,103026.78,3481.804 -16078,19790,35730,-9,35733,35732,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.6266,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 -16078,19790,35731,-9,35733,35732,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6251,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 -16078,19790,35732,35733,-9,-9,1,1,33,1,2,0,1,1,-9,0,2,8.4466658,8.3077288,0,8,3,-75.67453,0,3,2,2019,15,4,40,40,1,4,0,14.016824,14.016824,0,0,0,0,0,1,1,0,0,0,42.63,40.36,46.4,59.87,6.666666666666667,1,1,0,0,9,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 -16078,19790,35733,35732,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,7.7211728,7.4441948,0,8,-3,-26.804773,0,-9,-9,2019,12,1,24,24,1,1,0,11.191195,11.191195,0,0,0,0,0,1,1,0,0,0,46.4,59.87,42.63,40.36,5,1,1,0,0,9,11,4,1,549,246100,15108.42,266793.59,166002.8,2980.7329 -16079,19791,35734,35736,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.6263347,7.7883573,5.1645541,6,-7,127.32885,0,2,2,2019,10,0,39,39,1,0,0,7.8407145,7.8407145,0,0,0,0,2,1,1,0,5.1702023,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 -16079,19791,35735,-9,35734,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-974.06836,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 -16079,19791,35736,35734,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,7.3162689,7.25951,0,6,7,19.096048,0,-9,-9,2019,7,0,27,28,1,0,0,5.294579,5.294579,0,0,0,0,2,1,1,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,4,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 -16079,19791,35737,-9,35734,-9,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1159.0995,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 -16079,19791,35738,-9,35734,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-979.41217,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,648.79999,-98745.469,0,296517,294926.41,2414.5376 -16080,19792,35739,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8078742,7.7152081,0,0,0,-963.06702,0,-9,-9,2019,6,0,40,33,1,0,0,7.6452994,7.6452994,0,0,0,0,0,0,0,0,0,0,64.31,26.84,-9,-9,10,1,1,0,0,4,11,3,1,293,-404662.88,26902.633,0,0,828.19855 -16081,19793,35740,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1037.1049,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,50.21,10.03,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,89,11293.037,0,0,0,1385.2849 -16082,19794,35741,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.6168,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.45,25.59,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,156,565482.25,0,270090.81,0,916.63843 -16083,19795,35742,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1043.3518,0,3,2,2019,29,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.04,23.38,-9,-9,0,1,1,0,0,0,11,1,0,832,160087.55,0,0,0,1347.7322 -16084,19796,35743,35744,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.8527813,8.6317825,0,6,1,22.302624,0,-9,-9,2019,8,0,37,28,1,0,0,16.687996,16.687996,0,0,0,0,0,0,0,0,1.6537403,0,49.49,59.98,54.79,55.86,10,1,1,0,0,8,4,5,1,428,169947.03,229101.59,254241.86,84099.078,5691.8809 -16084,19796,35744,35743,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.2521887,9.2163858,0,32,-1,51.384312,0,2,2,2019,8,0,50,37,1,0,0,24.077211,24.077211,0,0,0,0,0,0,0,0,2.7772603,0,54.79,55.86,49.49,59.98,8.333333333333334,1,1,0,0,6,4,5,1,428,169947.03,229101.59,254241.86,84099.078,5691.8809 -16085,19797,35745,35746,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.2446623,8.2901859,41,0,-68.507591,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,5.7826991,8.6775513,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,7,10,4,1,1066,2169804.8,1314458.8,256089.94,0,2881.3374 -16085,19797,35746,35745,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.9180794,7.3469415,39,0,-49.275696,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,2.9392369,7.1853123,57.16,56.15,52,54.51,10,1,1,0,0,6,10,4,1,1066,2169804.8,1314458.8,256089.94,0,2881.3374 -16086,19798,35747,35748,-9,-9,1,1,57,0,1,0,1,1,-9,0,4,8.8931704,8.95959,0,5,0,80.758118,0,2,2,2019,6,0,42,43,1,0,0,17.028589,17.028589,0,0,0,0,0,1,1,0,2.715302,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,285.5,1645559.5,1092046.3,487132.06,0,3515.9102 -16086,19798,35748,35747,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,7.6320381,7.5739822,5,0,-97.276955,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7061067,54.2,57.49,54.79,55.86,10,1,1,0,0,4,9,4,1,285.5,1645559.5,1092046.3,487132.06,0,3515.9102 -16087,19799,35749,-9,35750,-9,1,1,35,0,0,0,3,3,-9,0,3,0,0,0,0,0,-731.02606,0,3,-9,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,38.98,36.7,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,1119,0,0,0,0,967.75732 -16087,19800,35750,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-960.6781,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.9,39.41,-9,-9,6.666666666666667,4,5,0,0,0,4,1,0,415,-11104.635,0,0,0,724.76575 -16087,19801,35751,-9,35750,-9,1,1,27,0,0,0,3,3,-9,0,5,0,0,0,0,0,-979.45422,0,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,5,1,0,0,4,1,0,1073,277637.78,0,0,0,604.16925 -16088,19802,35752,35753,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,8.4194994,8.5975523,0,9,0,13.471547,0,2,3,2019,9,0,46,30,1,0,0,12.272926,12.272926,0,0,0,0,0,1,1,0,3.5182045,0,51.94,55.88,48.02,44.38,1.666666666666667,1,1,0,0,9,7,4,1,564.66669,518490.56,144358.22,359123.91,103931.46,2960.0034 -16088,19802,35753,35752,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,8.1764612,8.3544216,0,9,0,-30.834892,-9,1,1,2019,11,2,40,0,1,2,0,11.025506,11.025506,0,0,0,0,0,1,1,0,0,0,48.02,44.38,51.94,55.88,5,1,1,0,0,10,7,4,1,564.66669,518490.56,144358.22,359123.91,103931.46,2960.0034 -16088,19802,35754,-9,35752,35753,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1075.5715,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,4,1,564.66669,518490.56,144358.22,359123.91,103931.46,2960.0034 -16088,19803,35755,-9,35752,35753,1,0,20,0,1,1,2,0,-9,0,3,0,0,0,0,0,-916.64459,-9,2,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,1.3286277,0,30.94,61.65,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,1858,63328.793,0,0,0,957.45929 -16088,19804,35756,-9,35752,35753,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-917.25244,-9,2,2,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,1.4195193,0,29.8,54.36,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,266,-83318.875,0,0,0,-105.4968 -16089,19805,35757,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1191912,8.2520666,0,0,0,-941.95288,0,-9,2,2019,3,1,45,40,1,1,0,7.7115331,7.7115331,0,0,0,0,0,0,0,0,0,0,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,7,4,4,0,883,339496.59,75636.477,0,0,1608.4825 -16089,19806,35758,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,6.4152241,6.3682137,0,0,0,-962.68317,0,-9,-9,2019,7,0,40,45,1,0,0,1.6363562,1.6363562,0,0,0,0,0,0,0,0,0,0,55.3,55.6,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,624,63383.934,0,0,0,652.27142 -16090,19807,35759,35760,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.2049818,7.9262967,7.3934379,10,-7,-13.140191,0,2,2,2019,5,0,16,38,1,0,0,7.0761175,7.0761175,0,0,0,0,14.5,1,1,0,.82045227,7.0820866,51,54,42.14,51.58,8.333333333333334,1,1,0,0,11,4,3,1,194,172295.23,-20148.82,69400.414,15015.133,2723.9705 -16090,19807,35760,35759,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.3408256,7.0997992,10,7,59.599354,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,7.4817829,7.2932177,42.14,51.58,51,54,8.333333333333334,1,1,0,0,8,4,3,1,194,172295.23,-20148.82,69400.414,15015.133,2723.9705 -16091,19808,35761,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.1748753,8.3403339,0,0,0,-996.48059,0,2,2,2019,12,0,20,0,1,2,0,18.163572,18.163572,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,0,0,8,4,0,602,333753.06,402033.81,455103.06,131156.17,1534.9844 -16091,19809,35762,-9,35761,-9,1,1,26,0,0,0,1,1,-9,0,4,8.093173,8.1317263,0,0,0,-906.60883,-9,2,-9,2019,10,0,36,0,1,1,1,12.995778,12.995778,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,0,582,-148294.2,98554.188,0,0,1466.4396 -16092,19810,35763,-9,35764,35765,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-948.97137,-9,2,2,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,7,1,1,0,0,0,51.63,57.91,-9,-9,8.333333333333334,1,1,0,0,0,10,4,0,812.66669,428839.31,38533.652,221010.25,33217.883,3013.4731 -16092,19810,35764,35765,-9,-9,1,0,37,0,1,0,2,2,-9,1,4,0,0,0,11,0,-43.934971,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,0,10,4,0,812.66669,428839.31,38533.652,221010.25,33217.883,3013.4731 -16092,19810,35765,35764,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,8.7161283,8.491786,0,11,0,-94.199333,0,2,2,2019,7,0,50,52,1,0,0,12.967647,12.967647,0,0,0,0,7,1,1,0,0,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,13,10,4,0,812.66669,428839.31,38533.652,221010.25,33217.883,3013.4731 -16093,19811,35766,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1090.6525,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.55,45.59,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,186,-175599.92,0,0,0,1297.1154 -16094,19812,35767,35768,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6157312,8.5986805,0,4,9,23.362574,0,-9,-9,2019,9,1,35,35,1,1,0,20.831388,20.831388,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,3,4,0,0,8,8,5,0,600,447912.75,-9771.1084,456364.94,86856.125,5246.9175 -16094,19812,35768,35767,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.8682413,9.092248,0,4,0,6.118917,0,2,2,2019,10,0,35,35,1,0,0,24.259972,24.259972,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,6.666666666666667,3,4,0,0,12,8,5,0,600,447912.75,-9771.1084,456364.94,86856.125,5246.9175 -16094,19813,35769,-9,35768,35767,1,1,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-1164.9528,-9,1,2,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.6435113,0,54.69,57.47,-9,-9,5,3,4,0,0,0,8,1,0,277,120662.73,0,0,0,-275.02521 -16094,19814,35770,-9,35768,35767,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1064.5968,-9,1,2,2019,8,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,.74180001,0,60.1,54.82,-9,-9,8.333333333333334,3,4,1,0,0,8,1,0,639,401675.19,0,0,0,-489.89972 -16095,19815,35771,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.0359039,8.2224855,0,0,0,-925.71057,0,2,-9,2019,8,2,37,37,1,2,0,8.3417339,8.3417339,0,0,0,0,0,1,1,0,0,0,52.82,51.63,-9,-9,6.666666666666667,1,1,0,0,11,10,3,1,849,1256526.3,965420.5,240955.94,0,1353.1301 -16095,19815,35772,-9,35771,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-904.69885,-9,2,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,2.1517868,0,65.19,41.47,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,849,1256526.3,965420.5,240955.94,0,1353.1301 -16095,19816,35773,-9,35771,-9,1,1,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1010.6227,1,2,-9,2019,10,0,0,36,2,0,1,0,0,0,0,0,0,0,1,1,0,2.7762578,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,2245,0,0,0,0,-350.80112 -16096,19817,35774,35775,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.114543,8.5863543,8.3491516,10,2,55.630844,0,2,2,2019,15,3,33,24,1,3,0,13.541631,13.541631,0,0,0,0,0,0,0,0,0,8.5565567,38.9,45.4,54.69,57.47,6.666666666666667,1,1,0,0,11,13,5,1,1127.5,1213355.3,918243.63,212698.25,-5728.7241,3252.0151 -16096,19817,35775,35774,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,4.7009625,4.7438698,0,10,-2,-15.44888,0,2,2,2019,10,0,3,6,1,0,0,5.6195126,5.6195126,0,0,0,0,0,0,0,0,7.5790668,0,54.69,57.47,38.9,45.4,10,1,1,0,0,10,13,5,1,1127.5,1213355.3,918243.63,212698.25,-5728.7241,3252.0151 -16097,19818,35776,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1026.5601,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,0,1,1,0,3.9765339,0,45.76,31.35,-9,-9,6.666666666666667,1,1,0,1,0,5,1,1,409,-66477.477,0,0,0,1078.5537 -16098,19819,35777,-9,35778,-9,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-858.47601,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 -16098,19819,35778,-9,-9,-9,1,0,41,1,3,0,3,3,-9,0,4,7.2614517,7.4230247,0,0,0,-942.11023,0,3,3,2019,11,0,31,31,1,1,0,7.9796629,7.9796629,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,0,1,2,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 -16098,19819,35779,-9,35778,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-941.51471,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 -16098,19819,35780,-9,35778,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.8225,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,3,4,-9,0,0,5,2,0,839.75,152620.67,34121.832,122390.84,-2870.2095,2035.7815 -16099,19820,35781,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.440608,8.6088905,0,0,0,-985.35321,0,3,2,2019,11,1,37,37,1,1,0,14.791938,14.791938,0,0,0,0,0,1,1,0,4.6696,0,49.03,39.45,-9,-9,3.333333333333333,1,1,0,0,6,2,5,1,117,62646.766,174226.13,161706.08,16800.418,1689.3322 -16100,19821,35782,35783,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.5787077,8.6834593,0,11,-1,-4.7944226,0,-9,-9,2019,11,0,38,38,1,0,0,13.423316,13.423316,0,0,0,0,0,1,1,0,0,0,47.64,52.35,50.06,55.28,5,1,1,0,0,8,10,4,0,341.66666,55917.766,-51091.043,210037.69,36073.766,2208.8491 -16100,19821,35783,35782,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,5.6260376,5.9842525,0,18,1,61.141266,0,2,3,2019,11,0,22,31,1,0,0,1.6747532,1.6747532,0,0,0,0,0,1,1,0,0,0,50.06,55.28,47.64,52.35,8.333333333333334,1,1,0,0,12,10,4,0,341.66666,55917.766,-51091.043,210037.69,36073.766,2208.8491 -16100,19821,35784,-9,35783,35782,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1151.1499,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,341.66666,55917.766,-51091.043,210037.69,36073.766,2208.8491 -16101,19822,35785,35786,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.7495666,7.878509,51,-3,-37.256649,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,1,0,.75907302,0,2,1,1,0,0,7.9387512,61.68,28.84,60.12,54.8,6.666666666666667,1,1,0,0,0,9,3,1,315,941479.5,539277.69,642528,0,2819.3262 -16101,19822,35786,35785,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.3237014,4.2546592,51,3,-127.73256,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,4.0173006,3.8861508,60.12,54.8,61.68,28.84,10,1,1,0,0,3,9,3,1,315,941479.5,539277.69,642528,0,2819.3262 -16101,19823,35787,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.752151,7.8838692,0,0,-1078.7186,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.49775,7.570014,43.55,26.18,-9,-9,5,1,1,0,0,0,9,3,1,108,512750.94,431921.81,213548.14,0,1271.6295 -16101,19824,35788,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.543222,7.7858582,5.4906063,0,0,-983.92169,0,-9,-9,2019,9,1,25,30,1,1,0,7.9260035,7.9260035,0,0,0,0,2,1,1,0,0,5.625566,59.46,44.28,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,328,-265077.63,0,0,0,942.20569 -16102,19825,35789,35790,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.9141884,8.9402409,0,4,0,-19.567272,0,1,1,2019,16,4,35,40,1,4,0,22.555914,22.555914,0,0,0,0,0,0,0,0,0,0,31.6,47.39,47.89,53.75,6.666666666666667,1,1,0,0,6,8,5,1,480,131900.47,38081.516,0,0,5654.5703 -16102,19825,35790,35789,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7247992,9.0572796,0,4,0,9.531146,0,-9,-9,2019,10,1,42,40,1,1,0,20.54981,20.54981,0,0,0,0,0,0,0,0,0,0,47.89,53.75,31.6,47.39,8.333333333333334,1,1,0,0,3,8,5,1,480,131900.47,38081.516,0,0,5654.5703 -16103,19826,35791,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.1411872,7.4166899,0,0,0,-1007.3766,0,1,-9,2019,10,0,20,0,1,0,0,8.2638006,8.2638006,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,2525,313673,49059.371,177457.44,0,787.02325 -16104,19827,35792,-9,35794,35793,1,0,18,0,0,0,2,2,-9,0,3,7.9239697,8.0404396,0,0,0,-943.43359,0,2,2,2019,14,2,37,0,1,2,1,9.1779909,9.1779909,0,0,0,0,0,0,0,0,2.8474641,0,40.57,55.65,-9,-9,6.666666666666667,1,1,0,0,1,5,4,1,314,-49191.664,-8207.502,0,0,1049.4175 -16104,19828,35793,35794,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.2656002,8.2594519,0,3,2,115.25063,0,-9,-9,2019,18,7,60,55,1,7,0,8.3292713,8.3292713,0,0,0,0,0,0,0,0,0,0,29.51,59.49,51.83,57.2,8.333333333333334,1,1,0,0,10,5,5,1,493.5,153651.75,92452.578,92672.938,94200.984,3149.8472 -16104,19828,35794,35793,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.1769485,8.3235397,0,3,-2,-16.179949,0,2,-9,2019,6,0,38,38,1,0,0,9.9353962,9.9353962,0,0,0,0,0,0,0,0,0,0,51.83,57.2,29.51,59.49,8.333333333333334,1,1,0,0,10,5,5,1,493.5,153651.75,92452.578,92672.938,94200.984,3149.8472 -16105,19829,35795,35796,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.0565972,6.9710965,8,1,131.27272,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.1673379,6.7034345,54.11,42.52,37.24,38.17,8.333333333333334,1,1,0,0,0,2,2,1,1141,411995.59,39659.453,110327.38,0,1391.9908 -16105,19829,35796,35795,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,57,-1,-25.099018,0,3,3,2019,12,4,0,0,4,4,0,0,0,1,0,0,0,71.5,1,1,0,0,0,37.24,38.17,54.11,42.52,10,1,1,0,0,0,2,2,1,1141,411995.59,39659.453,110327.38,0,1391.9908 -16106,19830,35797,35798,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.4480047,9.0266552,7.1067896,36,1,51.09927,0,3,3,2019,20,8,40,40,1,8,0,11.20546,11.20546,0,0,0,0,0,1,1,0,0,7.6858783,38.34,62.12,41.06,62.04,5,1,1,0,0,9,5,5,1,283.5,1461466.9,1136688.5,194602.23,40672.086,3879.0547 -16106,19830,35798,35797,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.5571651,7.4011035,5.9342237,36,-1,-26.670353,0,2,2,2019,11,1,27,22,1,1,0,8.016139,8.016139,0,0,0,0,0,1,1,0,0,6.0275979,41.06,62.04,38.34,62.12,6.666666666666667,1,1,0,0,9,5,5,1,283.5,1461466.9,1136688.5,194602.23,40672.086,3879.0547 -16106,19831,35799,-9,35798,35797,1,0,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-984.34137,-9,2,2,2019,18,6,0,0,3,6,1,0,0,0,0,0,0,0,1,1,0,0,0,35.57,63.56,-9,-9,5,1,1,1,0,0,5,1,1,371,-53653.5,0,0,0,0 -16106,19832,35800,-9,35798,35797,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1028.9677,-9,2,1,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,1,0,0,5,1,1,737,212576.94,0,0,0,0 -16107,19833,35801,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.1263747,6.8960614,0,0,-997.4613,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2717414,48.51,51.81,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,651,119293.03,238293.48,159882.72,0,1105.6805 -16108,19834,35802,35803,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,3.9533911,4.0892944,48,-6,-48.049477,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,14.5,1,1,0,3.3392582,4.4601445,60.52,53.2,57.63,45.09,8.333333333333334,1,1,0,0,11,10,2,1,200,463870.06,222342.38,319109.56,0,1623.4155 -16108,19834,35803,35802,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.0940709,6.6228485,48,6,161.74901,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2944436,6.2763443,57.63,45.09,60.52,53.2,8.333333333333334,1,1,0,0,9,10,2,1,200,463870.06,222342.38,319109.56,0,1623.4155 -16109,19835,35804,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1047.3842,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,0,38.4,43.6,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,545,-257379.58,0,0,0,1966.0691 -16110,19836,35805,35807,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.1765814,7.3758173,0,6,-2,-28.334436,0,3,3,2019,11,1,27,20,1,1,0,6.4359918,6.4359918,0,0,0,0,0,1,1,0,0,0,41.44,44.42,57.66,50.59,5,1,1,0,0,9,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 -16110,19836,35806,-9,35805,35807,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.1123,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 -16110,19836,35807,35805,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.9656668,9.0040808,0,6,2,-23.249414,0,2,2,2019,8,0,35,39,1,0,0,28.541307,28.541307,0,0,0,0,0,1,1,0,0,0,57.66,50.59,41.44,44.42,8.333333333333334,1,1,0,0,9,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 -16110,19836,35808,-9,35805,35807,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1015.5827,-9,2,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 -16110,19836,35809,-9,35805,35807,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-991.18634,-9,2,2,2019,16,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,1,953,778092.5,143149.02,438819.28,117478.43,3099.6709 -16111,19837,35810,-9,35811,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.026,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,1,766.5,216839.23,0,0,0,6683.3701 -16111,19837,35811,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,0,6.6058874,6.7816782,0,0,-1137.9855,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,9.1794825,0,62.39,56.71,-9,-9,8.333333333333334,1,1,1,0,6,8,2,1,766.5,216839.23,0,0,0,6683.3701 -16112,19838,35812,35813,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.5795517,6.3736911,7,7,79.423683,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.4010143,6.2985358,52,48,57.16,56.15,7,1,1,0,0,0,6,3,0,368,72851.055,-8053.6914,148913.11,0,2808.1621 -16112,19838,35813,35812,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0319414,8.019371,0,30,-7,-135.18106,0,-9,-9,2019,5,0,32,34,1,0,0,12.260348,12.260348,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,48,8.333333333333334,1,1,0,0,9,6,3,0,368,72851.055,-8053.6914,148913.11,0,2808.1621 -16113,19839,35814,35815,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,62,-3,18.035131,0,-9,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.657793,0,48.28,60.18,50,35,8.333333333333334,1,1,0,0,0,9,4,1,725,1058909.6,170205.31,457811.34,0,3807.5947 -16113,19839,35815,35814,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,8.7286358,8.5361977,62,3,-20.674644,0,-9,-9,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.566143,5.7619829,50,35,48.28,60.18,5,1,1,0,0,0,9,4,1,725,1058909.6,170205.31,457811.34,0,3807.5947 -16114,19840,35816,-9,35818,35817,1,0,37,0,0,0,2,2,-9,1,3,0,0,0,0,0,-950.98071,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,25.01,51.91,-9,-9,1.666666666666667,1,1,0,0,5,8,1,0,902,144429.34,0,0,0,463.76102 -16114,19841,35817,35818,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,2,3,0,0,-9,-9,2019,12,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,56.6,33.83,53.23,44.81,8.333333333333334,1,1,0,0,0,8,1,0,672.5,-282487.13,0,0,0,909.2384 -16114,19841,35818,35817,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,2,-3,0,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,25.104927,0,0,1,1,0,0,0,53.23,44.81,56.6,33.83,8.333333333333334,2,3,0,0,0,8,1,0,672.5,-282487.13,0,0,0,909.2384 -16115,19842,35819,-9,35820,-9,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1128.6122,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,8,2,0,349,326182.75,-2727.2227,377454.66,0,1753.9353 -16115,19842,35820,-9,-9,-9,1,0,53,0,2,0,1,1,-9,1,2,0,0,0,0,0,-1022.6117,0,1,1,2019,20,6,0,0,3,6,0,0,0,0,0,0,0,120,1,1,0,0,0,38.32,26.68,-9,-9,8.333333333333334,4,5,0,1,0,8,2,0,349,326182.75,-2727.2227,377454.66,0,1753.9353 -16116,19843,35821,35822,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.8253903,6.6367474,51,-6,-.004093803,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,2.1478038,6.5051966,58.5,44.67,63.66,46.31,8.333333333333334,1,1,0,0,0,2,2,1,320,227429.3,118750.59,92936.016,0,2187.9521 -16116,19843,35822,35821,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,5.6758609,5.3449159,51,6,.60061765,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.8916631,5.4633007,63.66,46.31,58.5,44.67,8.333333333333334,1,1,0,0,0,2,2,1,320,227429.3,118750.59,92936.016,0,2187.9521 -16117,19844,35823,-9,35824,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.8033,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,765.5,46707.129,32447.453,101968.33,54441.48,1623.5499 -16117,19844,35824,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,8.4004049,8.4866381,0,0,0,-1075.736,0,2,2,2019,17,6,29,36,1,6,0,17.517004,17.517004,0,0,0,0,0,1,1,0,3.6601408,0,28.62,52.43,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,765.5,46707.129,32447.453,101968.33,54441.48,1623.5499 -16118,19845,35825,35826,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,59,-8,-24.708349,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,8,3,1,427,1142858.8,59525.219,263263.47,0,1988.4688 -16118,19845,35826,35825,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.4820724,7.6911831,59,8,58.086441,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,46.013309,0,0,1,1,0,0,7.6923862,55,45,52,45,8,2,3,0,0,0,8,3,1,427,1142858.8,59525.219,263263.47,0,1988.4688 -16118,19846,35827,-9,35825,35826,1,1,57,0,0,0,2,2,-9,0,4,8.3287554,7.8675413,0,0,0,-989.71692,0,3,3,2019,9,0,38,37,1,0,0,13.573583,13.573583,0,0,0,0,14.5,1,1,0,8.2130985,0,51.24,58.84,-9,-9,6.666666666666667,2,3,0,0,5,8,4,1,894,-2490.5972,8813.0547,470095.19,0,1840.4944 -16119,19847,35828,35829,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.8456511,7.7511492,7,2,56.231285,-9,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.2771604,7.8586755,53,46,52.5,36.51,8,1,1,0,0,0,2,4,1,398.5,986399.25,588794.13,351242.94,0,3726.7275 -16119,19847,35829,35828,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.3903065,7.5782037,54,-2,-58.860401,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8629942,7.6807961,52.5,36.51,53,46,8.333333333333334,1,1,0,0,0,2,4,1,398.5,986399.25,588794.13,351242.94,0,3726.7275 -16120,19848,35830,35831,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.8407698,8.8451452,0,4,-4,-7.7835031,0,2,2,2019,12,0,55,50,1,0,0,12.513163,12.513163,0,0,0,0,0,0,0,0,1.8276755,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,10,5,5,1,267.5,557775.56,359544.63,258285.03,0,4340.3857 -16120,19848,35831,35830,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.8789597,9.0806112,0,4,4,-76.633316,0,-9,-9,2019,7,0,45,45,1,0,0,18.665556,18.665556,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,11,5,5,1,267.5,557775.56,359544.63,258285.03,0,4340.3857 -16121,19849,35832,35833,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.000308,8.0931778,0,32,-5,-70.974174,0,1,1,2019,8,0,40,50,1,0,0,11.207499,11.207499,0,0,0,0,0,0,0,0,2.5451581,0,54.79,55.86,40.99,54.49,8.333333333333334,1,1,0,0,11,10,5,1,964.5,2906771.3,1728459.5,300144.44,0,2370.2349 -16121,19849,35833,35832,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2675066,8.1627111,0,32,5,19.965809,0,3,2,2019,14,2,39,44,1,2,0,11.807447,11.807447,0,0,0,0,0,0,0,0,2.7629216,0,40.99,54.49,54.79,55.86,3.333333333333333,1,1,0,0,12,10,5,1,964.5,2906771.3,1728459.5,300144.44,0,2370.2349 -16122,19850,35834,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1586018,8.3462992,5.9001555,0,0,-1119.6769,0,3,3,2019,10,0,40,40,1,0,0,11.289891,11.289891,0,0,0,0,0,0,0,0,5.5987239,6.3759432,43.44,58.7,-9,-9,3.333333333333333,1,1,0,0,11,7,4,1,958,680217,522959.13,0,0,1702.7789 -16122,19851,35835,-9,35834,-9,1,0,24,0,0,0,1,1,-9,0,3,8.1321354,8.3919334,0,0,0,-1022.865,0,2,2,2019,12,1,37,38,1,1,1,11.393684,11.393684,0,0,0,0,0,0,0,0,0,0,35.63,57.93,-9,-9,8.333333333333334,4,2,0,0,4,7,4,1,436,150273.02,158833.45,0,0,1716.7476 -16123,19852,35836,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.0102367,5.7466793,0,0,-942.50458,0,3,2,2019,8,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.5241194,5.6571207,57.48,37.4,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,1290,393620.59,189404.86,106034.76,0,789.80304 -16124,19853,35837,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.9766316,7.843431,0,0,-905.9314,0,3,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3107486,7.6749473,57.27,30.41,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,614,1183785,901308.56,0,0,1571.2925 -16125,19854,35838,35839,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,6.858994,7.0458965,58,2,25.632919,0,2,2,2019,5,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0083447,51.24,58.84,64.93000000000001,45.93,10,1,1,0,0,0,7,2,1,382,583266.25,53416.18,512607.25,0,1514.5369 -16125,19854,35839,35838,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,58,-2,-24.529062,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,13.025079,1.0021187,135.28137,0,1,1,0,0,0,64.93000000000001,45.93,51.24,58.84,8.333333333333334,1,1,0,0,12,7,2,1,382,583266.25,53416.18,512607.25,0,1514.5369 -16126,19855,35840,-9,35842,35844,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-966.91638,-9,2,3,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 -16126,19855,35841,-9,35842,35844,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.51196,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 -16126,19855,35842,35844,-9,-9,1,0,46,0,3,0,2,2,-9,1,1,0,0,0,23,0,-11.170781,-9,3,3,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,27,1,1,0,0,0,23.25,37.02,42.99,37.39,1.666666666666667,2,3,0,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 -16126,19855,35843,-9,35842,35844,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1102.0977,-9,2,3,2019,8,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.84,29.12,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 -16126,19855,35844,35842,-9,-9,1,1,46,0,3,0,3,3,-9,0,2,7.9100204,7.6724935,0,23,0,25.228352,-9,3,3,2019,8,0,40,0,1,0,0,6.1892381,6.1892381,0,0,0,0,2,1,1,0,0,0,42.99,37.39,23.25,37.02,6.666666666666667,2,3,0,0,9,6,2,1,685.20001,1120.3844,0,80113.063,57540.367,2556.0703 -16127,19856,35845,35846,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.8394666,5.6957817,54,-7,-2.344954,0,2,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9065843,63.41,29.17,57.64,36.86,6.666666666666667,1,1,0,0,0,10,2,1,390,567881.44,3250.2021,348600.75,0,1977.8063 -16127,19856,35846,35845,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.8648705,6.8710008,54,7,-86.790031,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.75704,57.64,36.86,63.41,29.17,8.333333333333334,1,1,0,0,0,10,2,1,390,567881.44,3250.2021,348600.75,0,1977.8063 -16128,19857,35847,35848,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.7836061,7.9574046,0,7,0,5.091743,0,3,-9,2019,17,4,39,48,1,4,0,6.8207908,6.8207908,0,0,0,0,0,0,0,0,0,0,41.35,44.4,50.47,43.21,3.333333333333333,1,1,0,0,8,11,4,0,412.5,451895.06,244637.08,0,0,2052.1174 -16128,19857,35848,35847,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.8534579,8.197608,0,7,0,34.047199,0,3,-9,2019,13,1,40,40,1,1,0,7.5171466,7.5171466,0,0,0,0,0,0,0,0,0,0,50.47,43.21,41.35,44.4,6.666666666666667,1,1,0,0,8,11,4,0,412.5,451895.06,244637.08,0,0,2052.1174 -16129,19858,35849,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.575942,8.5013943,0,0,0,-921.9494,0,-9,-9,2019,12,2,48,43,1,2,0,13.065029,13.065029,0,0,0,0,0,1,1,0,0,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,857,154554.5,23790.176,0,0,2184.3313 -16130,19859,35850,35852,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9105453,7.8094845,0,9,1,30.271648,0,3,1,2019,6,0,40,40,1,0,0,8.758811,8.758811,0,0,0,0,0,1,1,0,2.7568843,0,57.16,56.15,20.23,65.13,8.333333333333334,1,1,0,0,8,12,5,1,649,39343.59,23294.924,44779.633,16234.354,4138.3003 -16130,19859,35851,-9,35850,35852,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-843.24261,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,649,39343.59,23294.924,44779.633,16234.354,4138.3003 -16130,19859,35852,35850,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.0294933,9.1908226,0,9,-1,-58.037037,0,-9,-9,2019,35,12,48,43,1,12,0,23.684361,23.684361,0,0,0,0,0,1,1,0,4.1325874,0,20.23,65.13,57.16,56.15,3.333333333333333,1,1,0,0,10,12,5,1,649,39343.59,23294.924,44779.633,16234.354,4138.3003 -16131,19860,35853,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1892099,8.4820576,0,0,-1092.259,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.725975,8.2778864,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,320,1148389.3,502851.5,132609.58,0,2946.7883 -16132,19861,35854,35855,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.200223,9.2066479,0,9,0,-112.95048,0,-9,-9,2019,9,0,50,50,1,0,0,25.56151,25.56151,0,0,0,0,0,0,0,0,6.2281957,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,12,7,5,1,189.5,1322795,508525.84,619267.31,163025.81,4919.3823 -16132,19861,35855,35854,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6456971,7.6705227,5.994627,38,0,-131.46198,0,3,3,2019,8,0,27,27,1,0,0,9.8524666,9.8524666,0,0,0,0,0,0,0,0,0,5.8960047,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,12,7,5,1,189.5,1322795,508525.84,619267.31,163025.81,4919.3823 -16133,19862,35856,35857,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.402699,6.499867,7,4,-30.997013,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.8633189,6.506741,52,48,55.71,46,7,1,1,0,0,0,5,2,1,615,252613.47,67067.641,156553.94,0,483.09256 -16133,19862,35857,35856,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,30,-4,-35.931332,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7057395,0,55.71,46,52,48,8.333333333333334,1,1,0,0,6,5,2,1,615,252613.47,67067.641,156553.94,0,483.09256 -16134,19863,35858,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.6642618,7.8926635,0,0,-1034.2267,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.7407017,7.8911214,54.4,51.93,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,453,281542.38,206689.22,346461.69,0,3497.1392 -16135,19864,35859,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,7.6299415,7.5304127,0,0,-1011.102,0,3,-9,2019,10,0,0,0,4,1,0,0,0,1,1.2778006,0,23.103149,0,1,1,0,2.8028803,7.558208,53,44,-9,-9,8,1,1,0,0,0,7,3,1,459,22299.734,55882.426,238311.41,0,1571.923 -16136,19865,35860,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,6.8383927,6.5868773,0,0,-1099.1298,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6286654,56.38,48.28,-9,-9,10,1,1,0,0,0,7,2,0,847,72027.461,9461.7871,0,0,657.5058 -16137,19866,35861,35862,-9,-9,1,1,38,0,2,0,1,1,-9,0,2,9.806159,10.104353,7.6579204,15,2,49.481838,0,-9,-9,2019,15,3,45,45,1,3,0,35.585949,35.585949,0,0,0,0,0,0,0,0,7.8354206,0,39.93,46.66,50.62,48.28,3.333333333333333,1,1,0,0,10,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 -16137,19866,35862,35861,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,9.3623781,9.061842,6.062767,15,-2,15.29193,0,1,1,2019,13,2,45,37,1,2,0,28.424017,28.424017,0,0,0,0,0,0,0,0,7.047132,0,50.62,48.28,39.93,46.66,3.333333333333333,3,4,0,0,9,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 -16137,19866,35863,-9,35862,35861,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.3452,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 -16137,19866,35864,-9,35862,35861,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.4624,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,5,1,315.75,613346.88,292331.91,314731.88,189342.14,9303.7432 -16138,19867,35865,35866,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2557211,8.0719175,0,4,0,-130.11949,0,-9,-9,2019,12,0,44,38,1,2,0,10.777413,10.777413,0,0,0,0,0,1,1,0,2.9847403,0,46.09,51.67,52.71,51.84,10,1,1,0,0,2,2,4,1,625.5,742901.75,45924.063,136032.09,0,2190.7061 -16138,19867,35866,35865,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,6.7585402,6.6231809,4,9,-127.7795,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.4550781,6.954596,52.71,51.84,46.09,51.67,8.333333333333334,1,1,0,0,8,2,4,1,625.5,742901.75,45924.063,136032.09,0,2190.7061 -16138,19868,35867,-9,35865,35866,1,1,22,0,0,1,2,0,0,0,2,0,7.3817582,7.2441435,0,0,-1077.0419,-9,2,2,2019,18,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,6.7560234,0,35.21,43.49,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,2162,170577.31,54100.094,0,0,842.68073 -16139,19869,35868,35870,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.8342156,7.5785065,0,4,0,46.858742,0,2,2,2019,22,10,24,43,1,10,0,13.028427,13.028427,0,0,0,0,102,1,1,0,1.2408829,0,28.87,50.3,48,59,6.666666666666667,1,1,0,0,9,6,4,0,1743.6666,-96547.078,-13233.973,248174.95,156695.25,2359.0803 -16139,19869,35869,-9,35868,35870,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.3383,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,0,1743.6666,-96547.078,-13233.973,248174.95,156695.25,2359.0803 -16139,19869,35870,35868,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.4002295,8.2777224,0,4,0,6.5334353,0,-9,-9,2019,10,0,46,44,1,1,0,9.294179,9.294179,0,0,0,0,0,1,1,0,.3728458,0,48,59,28.87,50.3,7,1,1,0,0,5,6,4,0,1743.6666,-96547.078,-13233.973,248174.95,156695.25,2359.0803 -16140,19870,35871,-9,35873,35872,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6814,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 -16140,19870,35872,35873,-9,-9,1,1,31,1,2,0,1,1,-9,0,2,8.6388073,8.8816862,0,6,3,-45.533394,0,-9,-9,2019,14,2,45,45,1,2,0,15.376209,15.376209,0,0,0,0,0,1,1,0,0,0,32.95,46.13,52.03,38.03,6.666666666666667,1,1,0,0,6,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 -16140,19870,35873,35872,-9,-9,1,0,28,1,2,0,1,1,-9,0,3,8.791666,8.3699789,0,6,-3,-51.60004,0,1,1,2019,11,0,28,35,1,0,0,25.806185,25.806185,0,0,0,0,0,1,1,0,1.9864664,0,52.03,38.03,32.95,46.13,6.666666666666667,1,1,0,0,6,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 -16140,19870,35874,-9,35873,35872,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.6808,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,769,248889.94,127277.07,197757.09,182886.34,4332.6621 -16141,19871,35875,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.193347,7.3010621,0,0,-1120.2947,0,3,3,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1002302,7.2078352,44.4,51.11,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,858,727228.5,116210.01,265829.38,0,1376.3982 -16142,19872,35876,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.2572408,7.2312317,0,0,-1002.3925,0,3,3,2019,16,5,0,0,4,5,0,0,0,1,1.5997764,0,22.366035,0,1,1,0,0,7.4756389,39.38,43.19,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,871,349400,67000.391,241977.05,0,1450.8643 -16143,19873,35877,35878,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,7.2800002,8.0881996,6.9536104,39,3,11.380749,0,3,3,2019,6,0,10,30,1,0,0,26.888256,26.888256,0,0,0,0,0,1,1,0,5.6919041,7.2625985,57.16,56.15,43.2,34.13,8.333333333333334,1,1,0,1,10,10,4,1,851,56610.695,183960.66,160716.8,44563.469,2995.6985 -16143,19873,35878,35877,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.205555,7.1357512,39,-3,58.968727,0,3,3,2019,26,12,0,30,4,12,0,0,0,0,0,0,0,0,1,1,0,7.2523255,0,43.2,34.13,57.16,56.15,3.333333333333333,1,1,0,1,9,10,4,1,851,56610.695,183960.66,160716.8,44563.469,2995.6985 -16144,19874,35879,35880,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.0409927,7.7099648,0,1,-2,-141.34599,-9,3,2,2019,21,9,29,0,1,9,0,7.8291368,7.8291368,0,0,0,0,27,1,1,0,3.6435831,0,22,51.32,22.94,31.96,5,1,1,0,0,9,2,3,0,888,321244.38,183678.14,0,0,1908.1096 -16144,19874,35880,35879,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,1,2,-286.61569,-9,-9,-9,2019,28,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,22.94,31.96,22,51.32,0,1,1,0,1,6,2,3,0,888,321244.38,183678.14,0,0,1908.1096 -16145,19875,35881,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.3876,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7969596,0,55.45,48.13,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,171,-229170.77,0,0,0,410.99942 -16145,19876,35882,-9,35881,-9,1,0,50,0,0,0,3,3,-9,0,4,7.4202089,7.5393119,0,0,0,-992.81244,0,3,3,2019,9,0,22,23,1,0,0,6.8374038,6.8374038,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,298,-78697.18,-129073.4,0,0,962.12579 -16146,19877,35883,35884,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,0,0,45,-1,27.78578,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6116247,0,57.06,57.76,58.72,51.29,8.333333333333334,1,1,0,0,0,9,5,1,1159,1418316.1,570775,577123.81,0,12171.469 -16146,19877,35884,35883,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,10.138957,9.9771938,19,1,-100.23697,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.5827087,9.5696812,58.72,51.29,57.06,57.76,10,1,1,0,0,0,9,5,1,1159,1418316.1,570775,577123.81,0,12171.469 -16147,19878,35885,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.2866049,7.5233946,0,0,-1027.0824,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.645052,48.91,43.45,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,868,428351.75,189788.13,248844.67,0,906.27997 -16148,19879,35886,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1063.9977,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,12.386921,0,0,1,1,0,0,0,58.92,48.59,-9,-9,10,1,1,0,0,0,1,1,1,1890,186971.13,0,170329.19,0,1944.139 -16149,19880,35887,-9,35888,35889,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.70593,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 -16149,19880,35888,35889,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.9272757,8.0554743,0,22,-15,-12.171587,0,2,1,2019,15,3,12,12,1,3,0,17.456829,17.456829,0,0,0,0,0,0,0,0,3.3266723,0,41.29,56.37,57.33,53.46,6.666666666666667,1,1,0,0,10,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 -16149,19880,35889,35888,-9,-9,1,1,57,0,2,0,1,1,-9,0,3,9.770566,9.6525002,0,10,15,-69.911659,0,-9,-9,2019,9,0,45,40,1,0,0,38.415493,38.415493,0,0,0,0,0,0,0,0,7.0846267,0,57.33,53.46,41.29,56.37,8.333333333333334,1,1,0,0,11,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 -16149,19880,35890,-9,35888,35889,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.1734,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,632.25,1099618.4,398270.94,650514.25,18289.758,7499.1567 -16150,19881,35891,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-923.46729,0,2,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,46.68,-9,-9,6.666666666666667,1,1,1,0,0,10,1,0,454,-35032.855,0,0,0,1194.1174 -16151,19882,35892,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1038.3191,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.98,29.33,-9,-9,5,1,1,0,0,0,13,2,0,197,-264482.06,0,0,0,836.75354 -16152,19883,35893,35894,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.016211,6.4746284,40,-7,42.85471,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3635383,57.33,53.46,59.46,46.99,8.333333333333334,1,1,0,0,8,4,3,1,1220,1585073.5,394998.03,207651.72,0,3135.4038 -16152,19883,35894,35893,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8294067,7.8205786,40,7,33.306248,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4273796,8.1450396,59.46,46.99,57.33,53.46,8.333333333333334,1,1,0,0,0,4,3,1,1220,1585073.5,394998.03,207651.72,0,3135.4038 -16153,19884,35895,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.7500467,8.6416054,0,0,0,-936.41833,0,1,1,2019,8,0,45,40,1,0,0,13.912145,13.912145,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,327,191067.3,0,0,0,1912.2371 -16153,19885,35896,-9,35895,-9,1,0,27,0,0,0,2,2,-9,0,5,8.3278265,8.5570507,0,0,0,-874.93018,0,1,-9,2019,9,0,48,45,1,0,1,9.8368979,9.8368979,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,86,-244025.42,76667.125,0,0,1520.5018 -16153,19886,35897,-9,35895,-9,1,0,21,0,0,0,2,2,-9,0,5,8.1501951,8.2745571,0,0,0,-1007.283,0,1,-9,2019,9,1,45,45,1,1,1,8.4318581,8.4318581,0,0,0,0,0,0,0,0,.54344028,0,57.06,57.76,-9,-9,10,1,1,0,0,11,7,4,1,111,-215245.78,0,0,0,949.34326 -16154,19887,35898,35900,-9,-9,1,0,32,2,3,0,2,2,-9,0,3,7.9399943,7.8549724,0,5,1,-30.004286,0,-9,-9,2019,9,0,30,19,1,0,0,11.339046,11.339046,0,0,0,0,0,1,1,0,0,0,50.18,52.62,49.44,54.26,8.333333333333334,1,1,0,0,4,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 -16154,19887,35899,-9,35898,35900,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-942.99036,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 -16154,19887,35900,35898,-9,-9,1,1,31,2,3,0,2,2,-9,0,3,8.0108767,8.1554899,0,5,-1,13.007194,0,2,2,2019,13,3,40,47,1,3,0,6.12889,6.12889,0,0,0,0,0,1,1,0,0,0,49.44,54.26,50.18,52.62,8.333333333333334,1,1,0,0,10,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 -16154,19887,35901,-9,35898,35900,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-986.96759,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 -16154,19887,35902,-9,35898,-9,1,1,7,2,3,1,3,0,-9,0,4,0,0,0,0,0,-892.99957,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,836.59998,188126.67,2683.6921,219652.48,169332.58,2890.9089 -16155,19888,35903,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1021.0659,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,38.33,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,640,-353876.59,0,0,0,904.25183 -16156,19889,35904,35906,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.0256348,9.4078245,0,3,-5,29.443871,0,-9,-9,2019,9,0,90,70,1,1,0,10.695358,10.695358,0,0,0,0,0,1,1,0,0,0,52,55,54.2,57.49,8,4,1,0,0,1,4,5,1,874,966226.75,677025.81,273139.41,98073.531,4934.6543 -16156,19889,35905,-9,35906,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-959.55548,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,5,1,874,966226.75,677025.81,273139.41,98073.531,4934.6543 -16156,19889,35906,35904,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,7.6626277,7.5108557,0,3,5,21.914762,0,3,3,2019,6,0,28,60,1,0,0,9.8718138,9.8718138,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52,55,8.333333333333334,1,1,0,0,8,4,5,1,874,966226.75,677025.81,273139.41,98073.531,4934.6543 -16157,19890,35907,35908,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,0,0,5,5,-31.874512,-9,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.44,35.14,44.33,30.9,3.333333333333333,2,3,0,0,0,8,2,1,595,628083.81,112004.48,517715,305828.56,1866.3258 -16157,19890,35908,35907,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5114989,7.3893852,0,5,-5,-106.63894,0,-9,-9,2019,13,1,11,0,1,1,0,14.009574,14.009574,0,0,0,0,0,1,1,0,0,0,44.33,30.9,44.44,35.14,8.333333333333334,2,3,0,0,0,8,2,1,595,628083.81,112004.48,517715,305828.56,1866.3258 -16158,19891,35909,35910,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.4466043,7.3046145,7,3,21.902119,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.8898511,7.3680143,54.2,57.49,60.13,49.27,8.333333333333334,1,1,0,0,7,7,3,1,576.5,1114571.8,161081.41,363370.19,0,835.96136 -16158,19891,35910,35909,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.3979306,6.3414764,7,-3,-44.453121,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,0,6.5448871,60.13,49.27,54.2,57.49,10,1,1,0,0,7,7,3,1,576.5,1114571.8,161081.41,363370.19,0,835.96136 -16159,19892,35911,35912,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,5.2737451,5.3071876,0,32,-1,86.409935,-9,3,3,2019,10,0,3,0,1,0,0,8.7664843,8.7664843,0,0,0,0,0,0,0,0,4.5318203,0,57.06,57.76,54.67,57.49,10,1,1,0,0,9,6,4,1,2190,594175.38,389204.53,243261.5,129069.3,2628.5039 -16159,19892,35912,35911,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.7193937,8.8813133,0,32,1,102.15852,-9,2,1,2019,2,0,43,0,1,0,0,20.811531,20.811531,0,0,0,0,0,0,0,0,0,0,54.67,57.49,57.06,57.76,8.333333333333334,1,1,0,0,10,6,4,1,2190,594175.38,389204.53,243261.5,129069.3,2628.5039 -16160,19893,35913,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.6896172,8.986475,0,0,0,-895.14612,0,-9,-9,2019,12,0,52,50,1,0,0,11.670448,11.670448,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,7,5,5,1,300,-414993.94,0,0,0,2723.6868 -16161,19894,35914,35917,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.388114,9.2023182,0,8,0,-50.636841,0,2,1,2019,11,1,60,62,1,1,0,19.242863,19.242863,0,0,0,0,0,0,0,0,0,0,57.73,54.53,52.21,59.91,8.333333333333334,1,1,0,0,8,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 -16161,19894,35915,-9,35917,35914,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.18494,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 -16161,19894,35916,-9,35917,35914,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-907.16888,-9,2,1,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 -16161,19894,35917,35914,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,8,0,1.8655012,0,2,2,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,10.20143,0,52.21,59.91,57.73,54.53,8.333333333333334,1,1,0,0,0,13,5,1,822.75,635814.44,313854.03,253758.25,0,17113.805 -16161,19895,35918,-9,35917,35914,1,0,20,0,1,1,2,0,0,0,4,0,4.456883,4.562242,0,0,-1057.6147,-9,2,1,2019,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,4.440793,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1545,188282.45,0,0,0,243.7822 -16162,19896,35919,35920,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,7,3,34.861221,0,2,2,2019,8,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,2.4640088,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,8,10,3,1,525.5,283924.94,95089.961,0,0,1361.512 -16162,19896,35920,35919,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.1229744,8.0286398,0,7,-3,59.310921,0,-9,-9,2019,8,0,40,39,1,0,0,10.627647,10.627647,0,0,0,0,0,0,0,0,2.2634604,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,8,10,3,1,525.5,283924.94,95089.961,0,0,1361.512 -16163,19897,35921,35922,-9,-9,1,0,21,0,0,0,2,2,1,0,1,7.3874483,7.4193697,6.0415211,3,-3,64.306114,-9,-9,-9,2019,19,7,23,0,1,7,0,5.9886384,5.9886384,0,0,0,0,0,0,0,0,6.1351495,0,26.83,37.9,35.87,53.72,6.666666666666667,1,1,0,0,2,5,4,0,461,-20418.088,23057.676,0,0,2206.2021 -16163,19897,35922,35921,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8516345,7.7543244,0,3,3,-61.606266,0,-9,-9,2019,16,4,40,48,1,4,0,7.6886363,7.6886363,0,0,0,0,0,0,0,0,0,0,35.87,53.72,26.83,37.9,5,1,1,0,0,6,5,4,0,461,-20418.088,23057.676,0,0,2206.2021 -16164,19898,35923,35924,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.3682652,5.408576,27,-1,84.725761,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.0634799,5.5482373,54.96,53.17,52.33,44.67,8.333333333333334,1,1,0,0,8,7,4,1,164.5,827473,226315.63,0,0,4087.709 -16164,19898,35924,35923,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.4316788,8.5932608,27,1,-24.485643,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.6109543,8.1619434,52.33,44.67,54.96,53.17,8.333333333333334,1,1,0,0,6,7,4,1,164.5,827473,226315.63,0,0,4087.709 -16165,19899,35925,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3879628,6.2504301,0,0,-1061.468,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.77173221,7.0207844,62.66,52.4,-9,-9,10,1,1,0,0,0,13,2,1,215,384995.78,42362.141,300567.56,0,568.19189 -16166,19900,35926,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2861767,8.4193478,0,0,0,-881.52631,0,2,2,2019,5,0,39,40,1,0,0,13.787517,13.787517,0,0,0,0,0,0,0,0,.28033733,0,49.94,58.01,-9,-9,10,1,1,0,0,8,2,4,1,154,365872.94,-25853.061,124516.44,138953.27,1811.9814 -16167,19901,35927,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.2065372,9.0019493,0,0,0,-975.25256,0,3,3,2019,8,0,50,50,1,0,0,25.94149,25.94149,0,0,0,0,0,0,0,0,6.6172032,0,60.12,54.8,-9,-9,10,2,3,0,0,8,9,5,1,257,-332900,68309.266,0,0,3853.0435 -16168,19902,35928,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1048.8611,0,2,1,2019,10,0,0,27,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.48,39.16,-9,-9,8.333333333333334,1,1,0,0,12,9,1,1,2246,-171845.53,0,0,0,79.958641 -16169,19903,35929,35930,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8433933,9.089673,7.8765001,35,-2,-19.922861,0,2,2,2019,10,0,41,40,1,0,0,17.109812,17.109812,0,0,0,0,0,0,0,0,4.6582432,8.2081928,50.27,46.95,53.96,50.73,8.333333333333334,1,1,0,0,12,9,5,1,380.5,703186,127899.23,0,0,3667.5493 -16169,19903,35930,35929,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,6.5172143,6.7616048,0,35,2,-12.398187,0,2,2,2019,8,0,13,12,1,0,0,7.0305314,7.0305314,0,0,0,0,0,0,0,0,4.0636477,0,53.96,50.73,50.27,46.95,6.666666666666667,1,1,0,0,12,9,5,1,380.5,703186,127899.23,0,0,3667.5493 -16169,19904,35931,-9,35930,35929,1,0,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-1080.261,-9,1,2,2019,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,33.26,61.9,-9,-9,6.666666666666667,1,1,0,0,1,9,1,1,1629,137859.94,0,0,0,374.14026 -16170,19905,35932,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.7615108,7.8305917,6.3066888,0,0,-1035.457,0,3,3,2019,6,0,22,21,1,0,0,13.143675,13.143675,0,0,0,0,0,1,1,0,.32854465,7.1886535,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,332,449043.69,-9927.1855,385638.69,0,2011.2305 -16171,19906,35933,-9,35936,35935,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1150.0566,-9,3,1,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 -16171,19906,35934,-9,35936,35935,1,1,16,0,2,1,2,0,-9,1,1,0,0,0,0,0,-969.21826,-9,3,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,22.07,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 -16171,19906,35935,35936,-9,-9,1,1,42,0,2,0,1,1,1,0,1,7.5393801,7.9355297,0,16,4,-71.070511,-9,2,-9,2019,35,12,16,0,1,12,0,18.755388,18.755388,0,0,0,0,110,1,1,0,0,0,18.76,23.91,41.13,34.95,0,2,3,0,1,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 -16171,19906,35936,35935,-9,-9,1,0,38,0,2,0,3,3,-9,1,3,0,0,0,16,-4,-91.09568,0,2,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,41.13,34.95,18.76,23.91,6.666666666666667,2,3,0,0,0,2,2,1,547.25,141891.69,61041.039,108436.9,40193.258,2877.0771 -16171,19907,35937,-9,35936,35935,1,1,18,0,2,1,2,0,0,0,2,0,0,0,0,0,-927.51062,-9,3,1,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,5.48,1,1,0,0,0,57.57,49.69,-9,-9,5,2,3,0,0,0,2,2,1,677,0,0,0,0,0 -16172,19908,35938,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.0701823,6.4199772,0,0,-833.38525,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2517161,6.4566555,49.35,48.91,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1165,276981.59,33195.723,20793.697,0,1043.8815 -16173,19909,35939,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.2764239,6.5216784,0,0,-1051.7078,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,4.7527671,17.707825,51.547585,0,1,1,0,1.5163932,6.2209411,46.4,19.56,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,350,213676.86,314512.88,0,0,1940.8365 -16174,19910,35940,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,3,0,7.7880559,7.3063149,0,0,-1062.0398,0,2,1,2019,9,0,0,0,4,0,0,0,0,1,2.3249271,0,32.231697,0,1,1,0,3.5639389,7.7957067,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1596,322266.69,9337.3438,204502.13,0,1638.7517 -16175,19911,35941,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.9678502,5.8488097,0,0,-1007.4474,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8784697,6.1384125,49.67,43.39,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,443,62381.859,90394.211,221561.06,0,1238.0742 -16176,19912,35942,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.3858943,7.3213687,0,0,-971.28302,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4561334,7.4711404,60.12,54.8,-9,-9,10,1,1,0,0,3,2,3,1,218,179887.69,229507.61,0,0,1376.8447 -16177,19913,35943,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,2.2550037,2.5970697,0,0,-999.3692,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.5067534,2.4648414,67.12,15.13,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,539,663394.13,0,447987.75,0,1575.3226 -16178,19914,35944,-9,35945,35946,1,0,19,0,0,0,2,2,-9,0,5,6.8994136,6.9655328,0,0,0,-937.12231,0,2,2,2019,3,0,20,25,1,0,1,6.5622549,6.5622549,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,658,-220757.25,29449.682,0,0,465.97107 -16178,19915,35945,35946,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,8.4313259,8.3500338,0,5,-5,-129.86067,0,2,3,2019,6,0,44,37,1,0,0,12.08426,12.08426,0,0,0,0,7,1,1,0,0,0,56.72,58.13,46.39,60.99,10,1,1,0,0,11,4,5,1,597.5,6655545,308296.94,1221981.5,0,4801.5986 -16178,19915,35946,35945,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.0654249,9.2088938,6.4343023,5,5,-43.16531,0,-9,-9,2019,12,1,49,49,1,1,0,16.596657,16.596657,0,0,0,0,0,1,1,0,6.5663075,0,46.39,60.99,56.72,58.13,6.666666666666667,1,1,0,0,11,4,5,1,597.5,6655545,308296.94,1221981.5,0,4801.5986 -16179,19916,35947,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,7.5317559,7.7621269,6.5070305,0,0,-1080.8226,0,3,-9,2019,15,5,24,21,1,5,0,9.720438,9.720438,0,0,0,0,27,1,1,0,6.0769148,0,43.46,30.35,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,132,380272.94,42532.711,0,0,1569.7961 -16180,19917,35948,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.2728004,8.2774734,0,0,0,-924.39429,0,2,2,2019,9,0,56,55,1,0,0,7.9168816,7.9168816,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,3,4,0,0,11,8,4,0,1141,825434.94,819448.13,0,0,827.38129 -16181,19918,35949,35950,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.339119,8.1837626,0,42,0,-47.721348,0,3,1,2019,14,2,65,62,1,2,0,7.5500574,7.5500574,0,0,0,0,0,1,1,0,0,0,39.52,53.27,48.67,54.71,5,1,1,0,0,13,6,3,0,372.5,550585.69,498157.09,135090.41,54681.742,3015.2207 -16181,19918,35950,35949,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,42,0,-51.566639,0,2,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1697407,0,48.67,54.71,39.52,53.27,8.333333333333334,1,1,0,0,5,6,3,0,372.5,550585.69,498157.09,135090.41,54681.742,3015.2207 -16182,19919,35951,35952,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.5378351,8.6496906,0,9,1,-1.0385163,0,-9,3,2019,12,0,65,60,1,0,0,8.2193422,8.2193422,0,0,0,0,0,0,0,0,2.3435924,0,44.66,57.83,54.37,54.8,6.666666666666667,1,1,0,0,10,10,5,1,828.5,817491.56,397750.94,526453,186642.97,4601.8662 -16182,19919,35952,35951,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6403837,8.5661449,0,16,-1,-128.752,0,2,3,2019,10,0,38,37,1,0,0,22.27973,22.27973,0,0,0,0,0,0,0,0,.42163125,0,54.37,54.8,44.66,57.83,8.333333333333334,1,1,0,0,11,10,5,1,828.5,817491.56,397750.94,526453,186642.97,4601.8662 -16183,19920,35953,-9,35954,35959,1,1,1,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1049.0023,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16183,19920,35954,35959,-9,-9,1,0,30,1,6,0,1,1,-9,0,4,7.5146322,7.4333091,0,7,0,-45.00499,0,-9,-9,2019,10,0,28,35,1,0,0,8.9003506,8.9003506,0,0,0,0,0,1,1,0,0,0,56.47,34.63,55.19,54.26,6.666666666666667,3,4,0,0,4,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16183,19920,35955,-9,35954,35959,1,0,12,1,6,1,3,0,-9,0,4,0,0,0,0,0,-817.25208,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16183,19920,35956,-9,35954,35959,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1057.0748,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16183,19920,35957,-9,35954,35959,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1085.9121,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16183,19920,35958,-9,35954,35959,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1039.8597,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16183,19920,35959,35954,-9,-9,1,1,39,1,6,0,3,3,-9,0,4,0,0,0,7,9,-22.086967,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,56.47,34.63,5,3,4,1,1,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16183,19920,35960,-9,35954,35959,1,0,11,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1046.9635,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,9,2,0,617.375,7969.4507,-20594.713,0,0,2986.4458 -16184,19921,35961,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,0,0,0,0,-988.21759,0,3,2,2019,28,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,0,0,31.75,24.9,-9,-9,3.333333333333333,4,5,0,0,0,8,1,0,1276,17489.068,28377.598,64779.484,120831.55,860.68201 -16185,19922,35962,-9,35964,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.0578,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,777,-215222.59,0,0,0,1783.402 -16185,19922,35963,-9,35964,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-936.47913,-9,3,-9,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,1,0,777,-215222.59,0,0,0,1783.402 -16185,19922,35964,-9,-9,-9,1,0,31,0,2,0,3,3,-9,1,3,0,0,0,0,0,-989.63293,0,2,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,36.92,51.87,-9,-9,5,1,1,0,0,0,2,1,0,777,-215222.59,0,0,0,1783.402 -16186,19923,35965,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.5633631,8.4235878,0,0,0,-861.10004,0,1,2,2019,10,0,46,45,1,0,0,9.8419981,9.8419981,0,0,0,0,0,0,0,0,2.7369721,0,51.24,58.84,-9,-9,8.333333333333334,4,2,0,0,10,2,5,1,503,373851.72,65718.117,169909.92,107378.51,1555.1665 -16187,19924,35966,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.6819329,7.7500825,0,0,0,-989.26965,0,-9,-9,2019,6,0,24,24,1,0,0,11.363306,11.363306,0,0,0,0,0,0,0,0,0,0,51.67,47.76,-9,-9,10,1,1,0,0,4,4,3,1,883,-77790.391,0,0,0,1517.1661 -16188,19925,35967,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8426113,7.6314344,0,0,0,-1074.7452,0,3,3,2019,20,8,45,42,1,8,0,5.6925893,5.6925893,0,0,0,0,14.5,1,1,0,0,0,38.92,31.03,-9,-9,5,1,1,0,0,4,11,3,0,1853,79844.469,8457.4121,0,0,714.6651 -16189,19926,35968,-9,35969,35971,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.1486,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 -16189,19926,35969,35971,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,17,-14,0,0,3,2,2019,7,1,0,14,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,37.43,38.58,10,2,3,0,0,2,7,1,0,786.79999,13700.008,0,0,0,2396.9282 -16189,19926,35970,-9,35969,35971,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-940.51636,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 -16189,19926,35971,35969,-9,-9,1,1,47,0,3,0,3,3,-9,1,2,0,0,0,16,14,0,0,3,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,38.58,52.23,55.6,5,2,3,0,1,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 -16189,19926,35972,-9,35969,35971,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.4975,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,1,0,786.79999,13700.008,0,0,0,2396.9282 -16190,19927,35973,-9,35977,-9,1,0,54,0,0,0,1,1,-9,0,2,8.7887449,8.4337988,0,0,0,-1036.0409,0,3,3,2019,10,2,43,48,1,2,0,18.967791,18.967791,0,0,0,0,2,1,1,0,2.4303124,0,59.96,30.88,-9,-9,8.333333333333334,4,2,0,0,9,8,5,1,1829,1200268.3,69181.336,603148,0,1960.8246 -16190,19928,35974,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6656179,8.6168709,0,0,0,-976.28821,0,3,2,2019,17,6,38,46,1,6,0,14.704587,14.704587,0,0,0,0,0,1,1,0,0,0,37.71,49.97,-9,-9,6.666666666666667,4,2,0,0,9,8,5,1,491,2207718.5,1796283.5,448741.88,221986.16,1563.855 -16190,19929,35975,-9,35974,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.82477,-9,2,1,2019,9,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,-9,-9,6.666666666666667,4,5,0,0,1,8,1,1,684,90167.367,0,0,0,393.86697 -16190,19930,35976,-9,35974,-9,1,0,24,0,0,0,2,2,1,0,3,7.7349267,7.9564347,0,0,0,-1157.4185,-9,2,2,2019,17,6,29,0,1,6,1,6.5225949,6.5225949,0,0,0,0,2,1,1,0,0,0,49.23,55.95,-9,-9,6.666666666666667,3,4,0,0,4,8,3,1,833,-29253.699,24524.533,0,0,959.27167 -16190,19931,35977,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0776186,6.2548413,0,0,-1061.3512,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7942982,59.41,32.08,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,885,-217977.94,-65034.527,0,0,234.18475 -16191,19932,35978,35979,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.933156,6.7985549,0,6,-26,-63.919392,0,3,2,2019,10,0,7,0,1,1,0,12.695911,12.695911,0,0,0,0,0,1,1,0,5.4013543,0,52,53,62.26,10.99,8,1,1,0,0,1,9,2,1,1575,547012.38,81911.07,218457.61,0,2130.9209 -16191,19932,35979,35978,-9,-9,1,1,80,0,0,0,2,2,-9,0,1,0,6.4343095,6.1566281,34,26,196.74442,0,3,1,2019,11,0,0,0,4,0,0,0,0,1,0,5.5706558,0,0,1,1,0,6.1067057,5.9433556,62.26,10.99,52,53,10,1,1,0,0,0,9,2,1,1575,547012.38,81911.07,218457.61,0,2130.9209 -16191,19933,35980,-9,35978,35979,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1046.7605,-9,3,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,.019504346,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,660,0,0,0,0,528.52185 -16191,19934,35981,-9,35978,35979,1,0,19,0,0,0,2,2,1,0,4,6.7392635,8.258007,8.2927179,0,0,-863.25775,-9,3,2,2019,9,0,33,0,1,0,1,2.788415,2.788415,0,0,0,0,2,1,1,0,7.6762981,0,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,383,-420004.66,23975.863,0,0,2318.9202 -16192,19935,35982,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,7.7732987,7.7481027,0,0,-1021.8641,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2146883,8.0118723,60.02,56.42,-9,-9,10,1,1,0,0,9,2,3,1,1893,790042.94,495912.25,137392.02,0,1550.88 -16193,19936,35983,35984,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.175642,8.536171,37,6,202.92722,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,7.9865799,8.3036022,54.96,53.17,40.61,64.02,8.333333333333334,1,1,0,0,3,9,3,1,611,2373879,1652413.4,501077.97,66493.711,2704.9692 -16193,19936,35984,35983,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,5,-6,-33.930519,0,-9,-9,2019,20,8,0,20,4,8,0,0,0,0,0,0,0,0,0,0,0,5.8525815,0,40.61,64.02,54.96,53.17,5,1,1,0,0,6,9,3,1,611,2373879,1652413.4,501077.97,66493.711,2704.9692 -16194,19937,35985,-9,-9,-9,1,0,37,0,0,0,3,3,-9,0,3,7.876091,8.3250113,0,0,0,-874.27466,0,2,-9,2019,9,0,45,47,1,0,0,9.8591261,9.8591261,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,12,8,4,0,2407,79009.953,34002.645,0,0,1304.6759 -16195,19938,35986,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.6137524,6.6096668,0,0,0,-1186.1821,-9,2,-9,2019,12,1,25,0,1,1,0,3.939585,3.939585,0,0,0,0,0,1,0,1,0,0,41.23,59.35,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,157,132432.52,49477.805,0,0,1682.2063 -16195,19938,35987,-9,35986,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.4902,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,2,0,157,132432.52,49477.805,0,0,1682.2063 -16196,19939,35988,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.9538565,7.1182609,0,0,-1096.7935,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8940148,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,490,295279.22,342863.53,0,0,1460.4854 -16197,19940,35989,35990,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.7682009,9.2963142,0,7,-3,49.219105,0,2,2,2019,8,0,50,52,1,0,0,18.45282,18.45282,0,0,0,0,0,0,0,0,3.6989281,0,57.16,56.15,53,54,8.333333333333334,1,1,0,0,8,13,5,1,435,1334791.8,1112466,262888.97,38585.336,4083.8271 -16197,19940,35990,35989,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.8430438,7.822629,0,7,3,35.325676,0,3,2,2019,9,0,37,36,1,1,0,9.6461296,9.6461296,0,0,0,0,0,0,0,0,1.2314951,0,53,54,57.16,56.15,8,1,1,0,0,8,13,5,1,435,1334791.8,1112466,262888.97,38585.336,4083.8271 -16198,19941,35991,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.5747519,7.7109151,0,0,-960.56177,0,2,1,2019,30,11,0,0,4,11,0,0,0,1,.96644974,0,20.49975,0,1,1,0,4.7044268,7.4118376,26.4,28.64,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,913,569655.25,169394.66,272186.09,0,1835.451 -16199,19942,35992,35993,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,48,6,-114.17658,0,-9,2,2019,9,1,0,0,4,1,0,0,0,1,2.4548001,43.264935,23.071339,120,1,1,0,0,0,48,34,50,35,8.333333333333334,1,1,0,0,0,11,2,1,852,291087.97,0,146959.66,0,1905.8143 -16199,19942,35993,35992,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,4.0939932,4.1893587,48,-6,-29.305067,0,3,3,2019,13,3,0,0,4,3,0,0,0,1,0,0,0,0,1,1,0,4.377892,3.9516366,50,35,48,34,6.666666666666667,1,1,0,0,0,11,2,1,852,291087.97,0,146959.66,0,1905.8143 -16200,19943,35994,35995,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.3682642,9.4375353,0,29,-4,69.615112,0,3,2,2019,7,1,60,45,1,1,0,24.6842,24.6842,0,0,0,0,2,1,1,0,5.5341439,0,57.06,57.76,47.31,10.02,10,1,1,0,0,9,1,5,1,492,1657155.8,1054635.8,430020,10449.768,4601.0996 -16200,19943,35995,35994,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,4.8786445,4.8589778,29,4,-153.60054,0,3,3,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.1587558,4.7160139,47.31,10.02,57.06,57.76,6.666666666666667,1,1,0,0,0,1,5,1,492,1657155.8,1054635.8,430020,10449.768,4601.0996 -16201,19944,35996,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.1010518,6.4243917,0,0,-1033.9363,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,3.1778195,0,0,1,1,0,0,6.1710095,60.29,52.11,-9,-9,10,1,1,0,0,0,2,2,1,473,-31162.537,-39696.461,0,0,1165.5248 -16202,19945,35997,35998,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,7.0618749,7.4236703,0,10,-1,-43.107796,0,3,3,2019,12,0,12,12,1,0,0,12.115367,12.115367,0,0,0,0,0,0,0,0,.20140959,0,40.47,55.65,54.1,50.73,8.333333333333334,1,1,0,0,11,12,4,1,691,109336.67,146160.02,170457.06,-3760.2627,2518.8181 -16202,19945,35998,35997,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4606838,8.8913078,0,10,1,218.90446,0,3,3,2019,10,0,38,48,1,0,0,13.687787,13.687787,0,0,0,0,0,0,0,0,.69101971,0,54.1,50.73,40.47,55.65,8.333333333333334,1,1,0,0,11,12,4,1,691,109336.67,146160.02,170457.06,-3760.2627,2518.8181 -16203,19946,35999,36000,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6957521,8.5520296,0,3,-16,-122.24182,0,2,2,2019,9,0,48,45,1,1,0,11.88123,11.88123,0,0,0,0,0,1,1,0,0,0,52,55,37.75,35.42,8,1,1,0,0,1,4,4,1,1044.5,561652.25,475179.19,125594.19,27236.641,2781.3696 -16203,19946,36000,35999,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,3,16,-72.842857,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,2.7450016,0,37.75,35.42,52,55,10,1,1,0,0,3,4,4,1,1044.5,561652.25,475179.19,125594.19,27236.641,2781.3696 -16204,19947,36001,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1085.6104,0,2,2,2019,12,2,0,0,3,2,0,0,0,0,0,0,0,42,1,1,0,0,0,30.3,37.86,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,1509,-76965.117,0,0,0,1363.9032 -16205,19948,36002,-9,36005,-9,1,0,20,0,1,0,2,2,1,0,3,7.7332821,7.8435483,0,0,0,-915.05035,-9,2,1,2019,12,0,44,0,1,0,1,5.07935,5.07935,0,0,0,0,0,1,1,0,0,0,43.68,53.97,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,1625,-60013.023,0,0,0,1465.8636 -16205,19949,36003,36005,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.9865952,9.1943855,0,1,2,131.18327,-9,-9,-9,2019,16,4,37,0,1,4,0,29.479746,29.479746,0,0,0,0,0,1,1,0,2.4424236,0,48.81,59.91,57.06,57.76,6.666666666666667,1,1,0,1,8,12,5,1,1294.6666,1478147,724198.75,287698.34,0,5202.7007 -16205,19949,36004,-9,36005,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1032.4822,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,12,5,1,1294.6666,1478147,724198.75,287698.34,0,5202.7007 -16205,19949,36005,36003,-9,-9,1,0,53,0,1,0,2,2,-9,0,5,8.3020163,8.6492682,6.9007697,1,-2,59.767406,0,2,2,2019,7,0,36,37,1,0,0,12.936659,12.936659,0,0,0,0,0,1,1,0,6.9100118,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,8,12,5,1,1294.6666,1478147,724198.75,287698.34,0,5202.7007 -16206,19950,36006,-9,36007,36009,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4296,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 -16206,19950,36007,36009,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.9197922,8.8503227,0,11,-5,-77.755692,0,2,2,2019,11,0,52,55,1,0,0,12.757468,12.757468,0,0,0,0,0,1,1,0,2.011616,0,46.91,59.62,58.15,52.91,8.333333333333334,1,1,0,0,10,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 -16206,19950,36008,-9,36007,36009,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.91797,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 -16206,19950,36009,36007,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.6883993,8.4906311,0,15,5,-78.164085,0,2,2,2019,4,0,38,37,1,0,0,13.009617,13.009617,0,0,0,0,0,1,1,0,4.4264073,0,58.15,52.91,46.91,59.62,8.333333333333334,1,1,0,0,9,4,5,1,356,218922.88,253330.11,224342.13,132428.81,3923.019 -16207,19951,36010,-9,-9,-9,1,1,20,0,0,0,2,2,1,0,2,6.7031975,6.3124847,0,0,0,-1080.4629,-9,-9,-9,2019,18,6,10,0,1,6,0,7.9556231,7.9556231,0,0,0,0,0,0,0,0,1.8917335,0,40,44,-9,-9,6.666666666666667,1,1,0,0,4,8,2,0,864,81462.727,0,0,0,28.052643 -16208,19952,36011,36012,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.2919054,7.1482558,0,27,-3,87.559509,0,3,1,2019,4,0,16,24,1,0,0,9.8629894,9.8629894,0,0,0,0,0,1,1,0,0,0,50.06,46.52,33.58,39.99,8.333333333333334,2,3,0,0,6,2,2,1,311,-68942.234,-26366.66,114854.08,79560.734,1004.17 -16208,19952,36012,36011,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,0,0,0,27,3,-95.298241,0,3,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.58,39.99,50.06,46.52,1.666666666666667,4,2,1,1,3,2,2,1,311,-68942.234,-26366.66,114854.08,79560.734,1004.17 -16208,19953,36013,-9,36011,36012,1,1,24,0,1,0,1,1,-9,0,3,8.0724354,8.2711458,0,0,0,-1040.2035,0,2,2,2019,21,8,50,15,1,8,1,8.0368891,8.0368891,0,0,0,0,7,1,1,0,0,0,35.86,48.65,-9,-9,5,2,3,0,0,8,2,4,1,360,17228.938,-54304.594,0,0,1553.5638 -16209,19954,36014,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,5.6111655,5.8314724,0,0,0,-1074.6832,0,2,2,2019,10,1,30,30,1,1,0,1.3631337,1.3631337,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,3.333333333333333,1,1,0,1,9,12,2,0,703,268236.13,65060.055,481119.69,14244.616,133.24019 -16210,19955,36015,-9,36017,36016,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.8245,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 -16210,19955,36016,36017,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,0,0,0,39,9,2.1116025,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,55.79,52.62,6.666666666666667,1,1,0,0,0,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 -16210,19955,36017,36016,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.9101057,8.850071,0,29,0,9.9216108,0,2,2,2019,5,0,43,40,1,0,0,18.910261,18.910261,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.96,49.93,6.666666666666667,1,1,0,0,12,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 -16210,19955,36018,-9,36017,36016,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-970.59521,-9,1,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,656.5,318942.63,-6337.5747,209332.45,59547.383,2658.2349 -16211,19956,36019,-9,-9,-9,1,0,66,0,1,0,3,3,-9,0,3,0,.42054886,.27538922,0,0,-922.20422,0,3,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,.51798755,42.79,43.76,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,806,81266.172,0,109280.7,0,847.64166 -16211,19957,36020,-9,36019,-9,1,1,45,0,1,0,2,2,-9,0,4,8.5493402,8.3949738,0,0,0,-1027.1384,-9,3,-9,2019,9,0,37,0,1,1,0,17.459469,17.459469,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,12,4,1,2302,137100.58,-6741.3984,81484.109,17030.326,1871.5256 -16211,19957,36021,-9,-9,36020,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1008.6551,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,2.5989182,0,47,60,-9,-9,7,1,1,0,0,0,12,4,1,2302,137100.58,-6741.3984,81484.109,17030.326,1871.5256 -16212,19958,36022,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1015.1687,0,2,1,2019,29,11,0,0,4,11,0,0,0,0,0,0,0,2,1,1,0,0,0,33.25,25.7,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,402,812195.69,131392.09,575379.31,21102.264,1768.0991 -16213,19959,36023,36025,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.8334131,9.9103575,0,10,9,10.378954,0,-9,-9,2019,10,0,38,43,1,0,0,48.56221,48.56221,0,0,0,0,0,0,0,0,4.947753,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,725.33331,245275.81,141428.78,121205.48,0,5505.4727 -16213,19959,36024,-9,36025,36023,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1107.0894,-9,1,2,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1.1815408,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,725.33331,245275.81,141428.78,121205.48,0,5505.4727 -16213,19959,36025,36023,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.0796156,7.7725177,0,24,0,-23.859426,0,2,2,2019,7,0,27,25,1,0,0,10.401591,10.401591,0,0,0,0,0,0,0,0,4.1077352,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,10,5,5,1,725.33331,245275.81,141428.78,121205.48,0,5505.4727 -16214,19960,36026,36028,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,6.4434309,6.6661696,0,15,-6,145.38533,0,3,3,2019,7,0,16,0,1,0,0,5.4834719,5.4834719,0,0,0,0,0,1,1,0,0,0,43.58,54.3,54.37,54.8,6.666666666666667,2,3,0,0,2,8,2,0,376.33334,357676.94,8080.686,0,0,1849.5554 -16214,19960,36027,-9,36026,36028,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.29047,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,376.33334,357676.94,8080.686,0,0,1849.5554 -16214,19960,36028,36026,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,6.5538898,6.40837,0,15,6,24.855501,0,3,3,2019,8,0,40,40,1,0,0,2.0526507,2.0526507,0,0,0,0,2,1,1,0,0,0,54.37,54.8,43.58,54.3,8.333333333333334,2,3,0,0,13,8,2,0,376.33334,357676.94,8080.686,0,0,1849.5554 -16215,19961,36029,36030,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3364491,7.3993979,54,0,21.815163,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,5.3979974,7.3963933,48.87,58.55,57.06,57.76,10,1,1,0,0,0,7,3,1,540.5,1228726.1,481506.38,362325.63,0,2459.0242 -16215,19961,36030,36029,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,6.9596577,7.1837254,54,0,88.062088,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,0,7.422843,57.06,57.76,48.87,58.55,10,1,1,0,0,3,7,3,1,540.5,1228726.1,481506.38,362325.63,0,2459.0242 -16216,19962,36031,-9,36035,36033,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.6677,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 -16216,19962,36032,-9,36035,36033,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-915.0907,-9,2,2,2019,14,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,39.41,-9,-9,10,3,4,0,0,0,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 -16216,19962,36033,36035,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.476572,8.7956896,0,19,1,-29.98628,0,-9,-9,2019,2,0,40,59,1,0,0,15.941993,15.941993,0,0,0,0,0,1,1,0,0,0,60.02,56.42,48.43,43.94,10,3,4,0,0,7,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 -16216,19962,36034,-9,36035,36033,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.423,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 -16216,19962,36035,36033,-9,-9,1,0,40,0,3,0,2,2,-9,0,5,7.6740246,7.7604766,0,19,-1,134.76932,0,3,-9,2019,8,1,28,28,1,1,0,7.5879269,7.5879269,0,0,0,0,0,1,1,0,0,0,48.43,43.94,60.02,56.42,8.333333333333334,3,4,0,0,6,8,3,0,681.79999,1018320.5,208205.67,361828.03,215846.88,3449.5276 -16217,19963,36036,-9,-9,-9,1,0,28,1,3,0,3,3,-9,1,2,0,3.7487025,4.1592436,0,0,-903.1344,0,2,2,2019,22,7,0,0,3,7,0,0,0,0,0,0,0,120,1,1,0,4.0434074,0,54.18,25.54,-9,-9,0,1,1,0,1,0,9,2,0,433,106703.16,0,0,0,1913.7955 -16217,19964,36037,-9,36036,36040,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.3672,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 -16217,19964,36038,-9,36036,36040,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.0967,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 -16217,19964,36039,-9,36036,36040,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.82684,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 -16217,19964,36040,-9,-9,-9,1,1,30,1,3,0,2,2,-9,0,3,8.0832729,8.0894995,0,0,0,-1173.7852,0,2,2,2019,7,0,51,40,1,0,0,7.1757054,7.1757054,0,0,0,0,42,1,1,0,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,4,9,3,0,628.5,210010.86,93819.75,0,0,1310.5784 -16218,19965,36041,36043,-9,-9,1,0,42,1,2,0,2,2,-9,1,5,8.0272417,8.0509987,0,22,-4,53.986366,0,2,2,2019,8,0,23,21,1,0,0,16.202457,16.202457,0,0,0,0,74.5,1,1,0,0,0,57.06,57.76,58.05,54.52,8.333333333333334,1,1,0,0,9,5,4,1,808.66669,877233.38,334944.5,308038.31,110276.04,4957.5273 -16218,19965,36042,-9,36041,36043,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.8767,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808.66669,877233.38,334944.5,308038.31,110276.04,4957.5273 -16218,19965,36043,36041,-9,-9,1,1,46,1,2,0,2,2,-9,0,5,8.5331345,8.7052069,0,22,4,79.315773,0,2,2,2019,3,0,43,51,1,0,0,17.376007,17.376007,0,0,0,0,27,1,1,0,0,0,58.05,54.52,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,808.66669,877233.38,334944.5,308038.31,110276.04,4957.5273 -16219,19966,36044,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.2824569,5.2599635,0,0,-919.67578,0,3,2,2019,13,1,0,0,4,1,0,0,0,0,0,2.6486127,0,0,1,1,0,0,5.4635687,43.49,43.6,-9,-9,6.666666666666667,1,1,0,1,0,2,2,0,101,-59980.547,-26889.9,0,0,1649.9778 -16220,19967,36045,36046,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,8.4587908,8.3591919,28,6,36.681454,0,3,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7538047,8.272954,54.2,57.49,59.43,49.68,8.333333333333334,4,2,0,0,8,4,5,1,724.5,2860368.8,1535394.3,635259.75,0,5667.7627 -16220,19967,36046,36045,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3691778,8.564208,29,-6,-32.809238,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.6169496,8.6050291,59.43,49.68,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,724.5,2860368.8,1535394.3,635259.75,0,5667.7627 -16221,19968,36047,36048,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2329607,7.9544101,0,10,11,143.86365,0,-9,-9,2019,9,0,24,24,1,0,0,14.691292,14.691292,0,0,0,0,0,0,0,0,1.26314,0,57.33,53.46,35.49,40.88,6.666666666666667,1,1,0,0,11,12,4,1,309,279431.13,296858.56,159898.81,59341.574,3099.3486 -16221,19968,36048,36047,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.9038591,7.8152313,0,10,-11,99.525841,0,2,2,2019,19,7,40,40,1,7,0,9.3054285,9.3054285,0,0,0,0,0,0,0,0,5.1750383,0,35.49,40.88,57.33,53.46,3.333333333333333,1,1,0,0,11,12,4,1,309,279431.13,296858.56,159898.81,59341.574,3099.3486 -16222,19969,36049,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.0967593,4.926599,0,0,-1038.746,0,3,3,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.9715929,5.1806216,50.27,44.25,-9,-9,6.666666666666667,1,1,0,0,5,2,2,1,4710,-45719.48,74664,0,0,815.46533 -16223,19970,36050,36051,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.049046,6.7873883,43,1,-46.906368,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,13.370037,0,0,1,1,0,5.4726186,6.8362441,64.25,28.77,62.99,41.32,1.666666666666667,1,1,0,0,0,5,2,1,1032,476872.59,0,279245.16,0,2220.6956 -16223,19970,36051,36050,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.1743083,6.3995905,43,-1,-97.030197,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,5.9286132,6.1952786,62.99,41.32,64.25,28.77,10,1,1,0,0,0,5,2,1,1032,476872.59,0,279245.16,0,2220.6956 -16224,19971,36052,36053,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.8277807,7.7584138,3.9628499,1,-1,-77.143509,-9,-9,-9,2019,6,0,38,0,1,0,0,7.5200167,7.5200167,0,0,0,0,0,0,0,0,4.2887821,0,57.06,57.76,60.51,34.45,8.333333333333334,1,1,0,0,7,1,4,1,244.5,-70033.922,39572.328,121618.37,64408.102,2267.0239 -16224,19971,36053,36052,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.1972895,8.0628672,0,1,1,26.385494,-9,-9,-9,2019,10,1,38,0,1,1,0,10.089498,10.089498,0,0,0,0,0,0,0,0,0,0,60.51,34.45,57.06,57.76,8.333333333333334,1,1,0,0,6,1,4,1,244.5,-70033.922,39572.328,121618.37,64408.102,2267.0239 -16225,19972,36054,36055,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0739059,8.320137,0,42,-1,-70.926704,0,3,3,2019,15,4,38,37,1,4,0,8.4501028,8.4501028,0,0,0,0,2,0,0,0,0,0,41.23,59.35,54.2,57.49,6.666666666666667,1,1,0,0,9,7,4,1,842.5,751996.88,202788.73,127222.61,143979.08,2847.5464 -16225,19972,36055,36054,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.37146,8.1971302,0,42,1,-21.088154,0,3,3,2019,10,0,40,40,1,0,0,8.8755007,8.8755007,0,0,0,0,0,0,0,0,1.2556055,0,54.2,57.49,41.23,59.35,6.666666666666667,1,1,0,0,11,7,4,1,842.5,751996.88,202788.73,127222.61,143979.08,2847.5464 -16226,19973,36056,-9,36059,36057,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1059.6066,-9,1,1,2019,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 -16226,19973,36057,36059,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,9.9384718,9.7393999,0,26,8,55.866005,0,2,2,2019,11,1,46,60,1,1,0,47.36739,47.36739,0,0,0,0,0,0,0,0,5.0017438,0,51.24,58.84,54.7,46.42,8.333333333333334,2,3,0,0,9,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 -16226,19973,36058,-9,36059,36057,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.88361,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 -16226,19973,36059,36057,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4457331,8.1834087,0,6,-8,83.874969,0,3,-9,2019,8,0,40,37,1,0,0,10.561597,10.561597,0,0,0,0,0,0,0,0,7.9679995,0,54.7,46.42,51.24,58.84,8.333333333333334,4,2,0,0,5,9,5,1,275.5,1633295.8,359361.56,885818.94,0,10840.202 -16226,19974,36060,-9,36059,36057,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-874.22412,-9,1,1,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,8.333333333333334,2,3,0,0,1,9,1,1,1166,430923.78,0,0,0,76.300179 -16227,19975,36061,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.0781088,6.3620915,0,0,-959.21973,0,3,2,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9375772,6.0073333,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,740,409437.19,123825.98,0,0,850.54681 -16228,19976,36062,-9,36063,36065,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-891.94647,-9,2,3,2019,5,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 -16228,19976,36063,36065,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,6.308064,6.3944783,0,6,-4,-40.403416,0,3,2,2019,3,0,8,32,1,0,0,7.3491511,7.3491511,0,0,0,.0054275505,0,1,1,0,7.5606599,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,7,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 -16228,19976,36064,-9,36063,36065,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.84265,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 -16228,19976,36065,36063,-9,-9,1,1,45,0,2,0,3,3,-9,0,5,8.6813946,9.0081644,7.7712407,6,4,-190.31352,0,3,3,2019,9,1,84,32,1,1,0,10.39014,10.39014,0,0,0,0,0,1,1,0,7.1817088,8.0482855,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,7,9,4,1,674.5,506594.53,192713.67,318327.06,142027.31,5110.3403 -16229,19977,36066,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1055.7325,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.67,37.13,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,1367,168849.52,0,0,0,1201.9447 -16230,19978,36067,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.7674236,6.1270537,0,0,-1007.0865,0,3,2,2019,18,6,0,0,4,6,0,0,0,1,0,0,0,0,1,1,0,0,5.8437934,19.42,31.73,-9,-9,3.333333333333333,1,1,0,1,0,4,2,0,168,255786.52,257071.97,59690.73,0,1144.9635 -16231,19979,36068,36071,-9,-9,1,0,41,0,2,0,3,3,-9,1,2,0,0,0,5,-5,0,0,3,3,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,24.12,50.38,35.92,60.42,3.333333333333333,1,1,0,0,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 -16231,19979,36069,-9,36068,36071,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3245,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 -16231,19979,36070,-9,36068,36071,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.5045,-9,3,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 -16231,19979,36071,36068,-9,-9,1,1,46,0,2,0,3,3,-9,0,5,0,0,0,5,5,0,0,3,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,42,1,1,0,0,0,35.92,60.42,24.12,50.38,3.333333333333333,1,1,1,1,0,12,1,0,416,82604.703,0,58049.301,31915.219,1340.1852 -16232,19980,36072,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,6.7815585,6.7577252,0,0,0,-1018.2607,0,2,3,2019,6,0,50,60,1,0,0,2.3359272,2.3359272,0,0,0,0,7,0,0,0,6.6575203,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,493,806141.06,31468.064,107398.03,56873.496,793.56567 -16233,19981,36073,36074,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.9387779,4.9510565,51,1,58.336498,0,3,3,2019,4,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.724205,4.5781813,62.49,55.09,56.19,46.16,10,1,1,0,0,7,9,2,1,214,424562.66,51094.5,155249.45,0,1899.9753 -16233,19981,36074,36073,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.8349924,6.0163074,7,-1,86.405281,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3050241,5.9509664,56.19,46.16,62.49,55.09,8.333333333333334,1,1,0,0,3,9,2,1,214,424562.66,51094.5,155249.45,0,1899.9753 -16234,19982,36075,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.7402997,7.3643465,0,0,0,-1003.1001,0,3,2,2019,6,0,30,30,1,0,0,9.1068296,9.1068296,0,0,0,0,7,0,0,0,0,0,65.36,25.55,-9,-9,5,1,1,0,0,12,7,3,1,2252,-105641.28,-62201.43,0,0,1359.2133 -16234,19983,36076,-9,36075,-9,1,1,23,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1114.2811,0,2,-9,2019,17,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,33.99,51.15,-9,-9,0,1,1,0,1,1,7,1,1,319,262256.91,0,0,0,0 -16235,19984,36077,36078,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.5484133,6.3339992,8,-3,-19.743404,0,2,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,7.1953125,6.3294725,54.13,48.04,56.47,59.4,8.333333333333334,1,1,0,0,7,12,5,1,881.5,2023923,1133682.3,405170.41,83633.719,5317.3311 -16235,19984,36078,36077,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.5554161,9.8201704,0,8,3,27.239754,0,3,3,2019,7,0,38,47,1,0,0,45.698242,45.698242,0,0,0,0,0,0,0,0,5.9481192,0,56.47,59.4,54.13,48.04,10,1,1,0,0,9,12,5,1,881.5,2023923,1133682.3,405170.41,83633.719,5317.3311 -16236,19985,36079,36080,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,42,-6,23.275669,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.2,46.23,62.11,45.63,8.333333333333334,1,1,0,0,4,11,3,1,543,383867.56,287087.38,110808.07,0,2155.5813 -16236,19985,36080,36079,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.449615,7.2695222,42,6,-68.815842,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,6.972086,7.4677658,62.11,45.63,55.2,46.23,10,1,1,0,0,7,11,3,1,543,383867.56,287087.38,110808.07,0,2155.5813 -16237,19986,36081,36082,-9,-9,1,1,85,0,0,0,1,1,-9,0,1,0,7.9948945,8.3238363,40,5,5.7988682,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,0,5.1666231,0,0,1,1,0,6.3961773,8.0877867,59.23,21.93,52.64,38.41,6.666666666666667,1,1,0,0,0,10,3,1,290,1526786,386572.06,667500.94,0,3888.7593 -16237,19986,36082,36081,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.8332801,6.597558,40,-5,-193.88643,0,2,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,14.5,1,1,0,6.577096,6.8554235,52.64,38.41,59.23,21.93,3.333333333333333,1,1,0,0,0,10,3,1,290,1526786,386572.06,667500.94,0,3888.7593 -16238,19987,36083,36084,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.7250552,5.8105512,7,1,-137.6571,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6161103,60.87,44.96,55.79,52.62,8.333333333333334,1,1,0,0,1,7,3,1,234.5,1656740.5,660655.63,990967.44,0,2730.3345 -16238,19987,36084,36083,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5171056,8.0048876,7,-1,60.063488,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0081682,7.5021605,55.79,52.62,60.87,44.96,8.333333333333334,1,1,0,0,4,7,3,1,234.5,1656740.5,660655.63,990967.44,0,2730.3345 -16239,19988,36085,36086,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,8,-14,48.166187,0,-9,-9,2019,12,1,0,21,4,1,0,0,0,0,0,0,0,27,1,1,0,3.2715802,0,57.16,56.15,53,46,8.333333333333334,1,1,0,0,8,7,2,1,2248.5,656281.63,59952.582,313017.41,0,2218.7354 -16239,19988,36086,36085,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.2679729,7.3376732,42,14,-135.97951,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.152642,6.9921489,53,46,57.16,56.15,8.333333333333334,1,1,0,0,7,7,2,1,2248.5,656281.63,59952.582,313017.41,0,2218.7354 -16240,19989,36087,-9,36091,-9,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1066.9125,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 -16240,19989,36088,-9,36091,-9,1,1,16,0,4,1,2,0,0,0,4,0,0,0,0,0,-1034.4891,-9,3,-9,2019,10,0,0,0,2,0,0,0,0,0,0,0,0,2,1,1,0,0,0,28.46,62.69,-9,-9,5,1,1,0,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 -16240,19989,36089,-9,36091,-9,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.5223,-9,3,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 -16240,19989,36090,-9,36091,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1048.0402,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 -16240,19989,36091,-9,-9,-9,1,0,36,0,4,0,3,3,-9,1,2,0,0,0,0,0,-932.94269,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,38.48,20.09,-9,-9,10,1,1,0,0,0,5,1,0,583.40002,-150041.86,0,0,0,2636.3181 -16241,19990,36092,36093,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.425591,7.6657891,0,6,-8,-166.34645,0,3,3,2019,20,7,36,28,1,7,0,6.6548858,6.6548858,0,0,0,0,0,1,1,0,0,0,34.15,60.28,52,47,5,1,1,0,0,7,8,4,1,1200.5,232456.78,0,0,0,2880.2275 -16241,19990,36093,36092,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.9115491,7.885963,0,6,8,-44.015217,0,3,3,2019,10,0,40,35,1,1,0,8.0747662,8.0747662,0,0,0,0,0,1,1,0,0,0,52,47,34.15,60.28,7,1,1,0,0,1,8,4,1,1200.5,232456.78,0,0,0,2880.2275 -16242,19991,36094,-9,36095,36096,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.5229,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,555.33331,45807.695,91859.367,217672.09,211619.63,2763.1895 -16242,19991,36095,36096,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,7.6826158,7.7179389,0,3,-3,172.58507,0,-9,-9,2019,16,4,21,38,1,4,0,11.03896,11.03896,0,0,0,0,14.5,1,1,0,3.5267944,0,37.17,64.27,38.26,40.59,6.666666666666667,1,1,0,0,6,12,4,1,555.33331,45807.695,91859.367,217672.09,211619.63,2763.1895 -16242,19991,36096,36095,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,8.5097418,8.5343647,0,3,3,-63.322021,0,3,3,2019,10,1,37,38,1,1,0,12.873569,12.873569,0,0,0,0,0,1,1,0,3.1893311,0,38.26,40.59,37.17,64.27,10,1,1,0,0,8,12,4,1,555.33331,45807.695,91859.367,217672.09,211619.63,2763.1895 -16243,19992,36097,36098,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,9.5126648,9.3137388,0,16,-8,-57.219769,0,2,1,2019,9,0,41,42,1,0,0,39.50732,39.50732,0,0,0,0,0,0,0,0,2.9717128,0,49.04,55.86,44.95,52.41,6.666666666666667,1,1,0,0,12,10,5,1,1184.5,783764.75,183850.22,488745.56,128243.27,5967.9551 -16243,19992,36098,36097,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.8509903,8.5469341,0,16,8,78.70182,0,2,2,2019,11,0,38,37,1,0,0,20.396702,20.396702,0,0,0,0,0,0,0,0,3.5504098,0,44.95,52.41,49.04,55.86,8.333333333333334,1,1,0,0,12,10,5,1,1184.5,783764.75,183850.22,488745.56,128243.27,5967.9551 -16244,19993,36099,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.729804,9.040554,0,0,0,-1019.4692,-9,-9,-9,2019,10,0,37,0,1,1,0,21.690771,21.690771,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,1,8,5,0,425,-207100.17,102163.99,0,0,2720.0588 -16244,19994,36100,36101,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,9.0493546,9.1151037,0,1,0,-174.09995,-9,-9,-9,2019,12,0,37,0,1,2,0,26.801207,26.801207,0,0,0,0,0,0,0,0,1.3261402,0,46,58,49.46,56.91,7,1,1,0,0,1,8,5,0,484,639972.81,41264.691,236519,0,4575.5352 -16244,19994,36101,36100,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.216197,8.5109711,0,1,0,-143.09612,-9,-9,-9,2019,12,1,41,0,1,1,0,11.843352,11.843352,0,0,0,0,0,0,0,0,1.8948342,0,49.46,56.91,46,58,6.666666666666667,1,1,0,0,2,8,5,0,484,639972.81,41264.691,236519,0,4575.5352 -16245,19995,36102,36103,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,0,6.244916,6.53336,10,-2,-59.343742,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5827246,62.39,56.71,58.05,54.52,10,1,1,0,0,9,2,5,1,293,283523.09,184548.64,201447,0,4728.96 -16245,19995,36103,36102,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.0784512,9.4932051,8.3648109,10,2,-20.651794,0,-9,2,2019,10,0,30,30,1,0,0,33.24556,33.24556,0,0,0,0,0,0,0,0,0,8.1653652,58.05,54.52,62.39,56.71,8.333333333333334,1,1,0,0,11,2,5,1,293,283523.09,184548.64,201447,0,4728.96 -16246,19996,36104,36106,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,0,0,0,6,2,8.0666809,0,2,3,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.07,52.7,54.96,41.96,1.666666666666667,1,1,0,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 -16246,19996,36105,-9,36104,36106,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1141.6929,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 -16246,19996,36106,36104,-9,-9,1,1,34,1,4,0,3,3,-9,0,4,7.9110861,8.3133755,0,6,-2,1.8951308,0,-9,-9,2019,9,2,36,36,1,2,0,11.88159,11.88159,0,0,0,0,0,1,1,0,0,0,54.96,41.96,53.07,52.7,6.666666666666667,1,1,0,0,7,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 -16246,19996,36107,-9,36104,36106,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.9851,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 -16246,19996,36108,-9,36104,36106,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-970.50397,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 -16246,19996,36109,-9,36104,36106,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1018.3176,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,389.33334,25756.742,-18261.939,0,0,2522.5647 -16247,19997,36110,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-998.30627,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,0,18.290398,0,0,1,0,1,5.5605659,0,36.89,24.96,-9,-9,5,1,1,0,0,0,7,1,1,412,-213126.94,0,0,0,1804.1765 -16247,19998,36111,-9,36113,36110,1,0,27,0,0,0,2,2,-9,0,3,6.8869095,6.8682933,0,0,0,-1111.817,0,3,3,2019,14,2,24,0,1,2,1,4.3788013,4.3788013,0,0,0,0,14.5,1,0,1,0,0,36.96,50.72,-9,-9,5,1,1,0,1,1,7,2,1,355,-133429.95,0,0,0,621.86719 -16247,19999,36112,-9,36113,36110,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1128.8683,0,3,3,2019,13,2,0,21,3,2,1,0,0,0,0,0,0,2,1,0,1,0,0,38.54,58.08,-9,-9,6.666666666666667,1,1,1,1,3,7,1,1,5560,322898.38,0,0,0,444.80612 -16247,20000,36113,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-942.57642,0,-9,-9,2019,25,10,0,0,3,10,0,0,0,0,0,0,0,0,1,0,1,0,0,23.85,26.03,-9,-9,1.666666666666667,1,1,0,0,0,7,1,1,888,0,0,0,0,112.81075 -16248,20001,36114,-9,36116,36115,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.3396,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 -16248,20001,36115,36116,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.2297516,8.3774185,0,7,0,-31.654112,0,-9,-9,2019,9,0,37,37,1,1,0,15.491405,15.491405,0,0,0,0,0,1,1,0,0,0,52,55,58.33,47.36,8,1,1,0,0,1,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 -16248,20001,36116,36115,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.0121536,8.1185026,0,22,0,58.695602,0,2,2,2019,9,0,26,20,1,0,0,16.785223,16.785223,0,0,0,0,2,1,1,0,.52109098,0,58.33,47.36,52,55,8.333333333333334,1,1,0,0,9,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 -16248,20001,36117,-9,36116,36115,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.9993,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,890,346525.38,17507.963,507629.28,209735.64,3035.2542 -16249,20002,36118,36119,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,0,0,47,-5,-8.0731297,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,0,58.05,54.52,52,46,8.333333333333334,1,1,0,0,6,12,2,1,334.5,595111.69,147793.41,280950.94,0,1718.2935 -16249,20002,36119,36118,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.5734997,7.0365624,47,5,-15.219386,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,1.3103961,7.3686299,52,46,58.05,54.52,7,1,1,0,0,0,12,2,1,334.5,595111.69,147793.41,280950.94,0,1718.2935 -16250,20003,36120,-9,36121,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1078.238,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,7,5,1,337,410214.88,126040.05,0,0,2457.5889 -16250,20003,36121,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.7987099,8.8096361,0,0,0,-978.27405,0,1,1,2019,7,0,38,41,1,0,0,24.486292,24.486292,0,0,0,0,88,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,1,10,7,5,1,337,410214.88,126040.05,0,0,2457.5889 -16251,20004,36122,-9,36125,36124,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.5057,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 -16251,20004,36123,-9,36125,36124,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4031,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 -16251,20004,36124,36125,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,7.912292,8.1651421,5.6009722,3,6,133.60745,0,2,1,2019,22,9,35,35,1,9,0,11.181748,11.181748,0,0,0,0,0,1,0,1,8.5698214,0,36.95,50.58,44.59,45.67,6.666666666666667,2,3,0,1,8,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 -16251,20004,36125,36124,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,7.5296907,8.0262623,7.0204158,3,-6,-107.23273,0,-9,-9,2019,12,0,21,21,1,0,0,10.780989,10.780989,0,0,0,0,0,1,0,1,7.1705294,0,44.59,45.67,36.95,50.58,6.666666666666667,2,3,0,0,5,6,4,1,855.25,28459.141,29748.238,114957.39,111251.77,3524.948 -16252,20005,36126,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-881.74481,0,-9,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.1533519,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,1096,21105.971,0,0,0,783.0614 -16253,20006,36127,36128,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.5759706,8.3765173,30,2,-219.22421,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.2882376,8.2443619,60.12,54.8,54.69,57.47,8.333333333333334,1,1,0,0,0,12,4,1,370.5,2655546.5,2385254.5,380146.56,0,4861.6831 -16253,20006,36128,36127,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,7.7291336,7.4394913,30,-2,46.427872,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.344974,7.7390337,54.69,57.47,60.12,54.8,10,1,1,0,0,0,12,4,1,370.5,2655546.5,2385254.5,380146.56,0,4861.6831 -16254,20007,36129,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.1717739,8.7443914,5.9777083,0,0,-1085.8553,0,3,3,2019,10,0,38,38,1,0,0,10.954504,10.954504,0,0,0,0,0,1,1,0,6.4184589,0,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,615,-299385.66,-18127.723,120832.05,35340.883,1285.2847 -16255,20008,36130,36131,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.3861265,7.0837359,0,4,4,-36.368214,0,2,2,2019,12,0,40,35,1,0,0,4.1543102,4.1543102,0,0,0,0,0,1,1,0,0,0,38.69,61.75,47.88,35.95,6.666666666666667,1,1,0,0,10,4,3,1,519,163915.66,51730.375,308419.06,62106.703,1583.6599 -16255,20008,36131,36130,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,6.8499207,7.0687881,0,4,-4,1.1208166,0,-9,-9,2019,11,0,18,15,1,0,0,6.3020678,6.3020678,0,0,0,0,0,1,1,0,1.2820009,0,47.88,35.95,38.69,61.75,8.333333333333334,1,1,0,0,6,4,3,1,519,163915.66,51730.375,308419.06,62106.703,1583.6599 -16256,20009,36132,36133,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.7071519,6.6326036,58,1,102.7294,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,14.5,1,1,0,6.2613826,6.904211,38.61,43.02,47.49,30.96,3.333333333333333,1,1,0,0,0,11,2,1,1270,688923.25,176716.73,257382.81,0,3211.9829 -16256,20009,36133,36132,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.6052241,6.2551074,58,-1,117.61973,0,3,-9,2019,18,5,0,0,4,5,0,0,0,1,0,2.3781314,0,0,1,1,0,0,6.7318716,47.49,30.96,38.61,43.02,5,1,1,0,0,0,11,2,1,1270,688923.25,176716.73,257382.81,0,3211.9829 -16257,20010,36134,-9,36136,36135,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-987.62262,-9,2,2,2019,23,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,31.56,46.34,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,581.66669,824842.56,237425.52,320966.78,85024.414,4574.6392 -16257,20010,36135,36136,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1998291,9.473093,8.1680984,42,2,-31.241253,0,3,3,2019,14,3,22,18,1,3,0,23.893858,23.893858,0,0,0,0,0,1,1,0,0,8.2469416,49.19,48.82,50.03,52.62,8.333333333333334,1,1,0,0,7,1,5,1,581.66669,824842.56,237425.52,320966.78,85024.414,4574.6392 -16257,20010,36136,36135,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.2801809,8.3603477,0,7,-2,-43.929157,0,-9,-9,2019,12,0,38,37,1,0,0,15.523938,15.523938,0,0,0,0,0,1,1,0,6.1009173,0,50.03,52.62,49.19,48.82,8.333333333333334,1,1,0,0,8,1,5,1,581.66669,824842.56,237425.52,320966.78,85024.414,4574.6392 -16258,20011,36137,-9,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,8.1853228,8.375597,0,0,0,-1006.5962,0,2,2,2019,14,3,22,22,1,3,0,16.422794,16.422794,0,0,0,0,2,0,0,0,7.2767611,0,47.3,45.59,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,3300,195278.08,88598.164,223883.38,0,1462.9224 -16259,20012,36138,36139,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,8.8350763,8.652956,9,-8,17.520376,0,3,3,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.6258936,8.6811724,57.06,57.76,52.99,51.28,10,1,1,0,0,0,2,5,1,1770.5,1162706.3,1053812.8,262852.47,0,6957.8535 -16259,20012,36139,36138,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.1712284,8.4367962,9,8,-221.3466,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.5233586,7.9960365,52.99,51.28,57.06,57.76,8.333333333333334,1,1,0,0,0,2,5,1,1770.5,1162706.3,1053812.8,262852.47,0,6957.8535 -16260,20013,36140,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,3.9883895,3.7891188,0,0,-862.75592,0,3,2,2019,12,1,0,0,4,1,0,0,0,1,0,23.242752,0,0,1,1,0,0,3.9350448,46.87,20.99,-9,-9,5,1,1,0,0,0,4,2,1,319,-20272.74,-31333.889,0,0,510.42386 -16261,20014,36141,-9,36142,-9,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-950.40906,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,3,4,-9,0,0,8,3,0,293.33334,-65924.133,0,0,0,1065.3845 -16261,20014,36142,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.0189829,7.477304,0,0,0,-1060.6234,0,2,1,2019,7,0,39,36,1,0,0,6.837275,6.837275,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,8,8,3,0,293.33334,-65924.133,0,0,0,1065.3845 -16261,20014,36143,-9,36142,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1044.2516,-9,1,-9,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,3,0,293.33334,-65924.133,0,0,0,1065.3845 -16262,20015,36144,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.3205128,9.6577005,0,0,0,-1174.6182,0,1,1,2019,7,0,50,44,1,0,0,28.786814,28.786814,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,860,513630.13,127415.42,509030.59,346115.88,6268.5 -16263,20016,36145,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-962.18152,0,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,27,1,1,0,0,0,40.84,22,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,580,36910.336,0,0,0,1349.3562 -16263,20017,36146,-9,36145,-9,1,0,27,0,0,0,2,2,-9,0,5,7.841023,7.8290467,0,0,0,-1010.8137,0,3,3,2019,9,0,30,48,1,0,1,9.8460398,9.8460398,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,7,12,4,0,192,176193.72,0,0,0,1324.7572 -16264,20018,36147,-9,36150,36148,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-958.5675,-9,2,2,2019,31,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,12.15,55.75,-9,-9,3.333333333333333,1,1,0,1,0,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 -16264,20018,36148,36150,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.9425545,8.1020155,0,11,8,-65.848793,0,2,3,2019,12,0,47,45,1,0,0,8.0278482,8.0278482,0,0,0,0,0,1,1,0,0,0,49.35,59.64,28.62,62.36,8.333333333333334,1,1,0,0,12,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 -16264,20018,36149,-9,36150,36148,1,0,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-999.49615,-9,2,2,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.67,54.18,-9,-9,3.333333333333333,1,1,0,1,0,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 -16264,20018,36150,36148,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1538525,8.2090406,0,11,-8,-37.181141,0,2,3,2019,18,6,38,38,1,6,0,9.0663137,9.0663137,0,0,0,0,0,1,1,0,0,0,28.62,62.36,49.35,59.64,3.333333333333333,1,1,0,0,11,5,4,1,886.5,154046.23,117861.38,181823.56,-3150.0757,2904.929 -16264,20019,36151,-9,36150,36148,1,1,25,0,0,0,2,2,-9,0,4,8.1284485,7.8536406,0,0,0,-1071.3354,0,2,2,2019,9,0,38,38,1,0,1,7.2503381,7.2503381,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,947,-175582.48,126305.59,0,0,802.60815 -16265,20020,36152,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.7966957,8.4617805,0,0,0,-1003.4236,0,2,2,2019,15,5,40,39,1,5,0,15.412557,15.412557,0,0,0,0,0,0,0,0,2.1576326,0,43.97,60.95,-9,-9,6.666666666666667,1,1,0,0,10,4,5,1,293,1307527.1,1386908.1,0,0,2108.0925 -16266,20021,36153,-9,-9,-9,1,0,18,0,1,0,2,2,-9,0,4,8.0159864,8.1644793,0,0,0,-940.22803,-9,1,-9,2019,9,3,40,0,1,3,1,8.4764919,8.4764919,0,0,0,0,0,0,0,0,0,0,63.11,35.52,-9,-9,10,1,1,0,0,2,2,4,1,836,258452.52,-9183.832,0,0,870.55634 -16267,20022,36154,36155,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.3693242,7.5419369,8,0,-61.57478,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,3.4102428,7.7815371,57.06,57.76,48.81,46.83,8.333333333333334,1,1,0,0,0,12,3,1,996,1189834.5,857980.75,266026.5,0,2475.6909 -16267,20022,36155,36154,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.2138057,7.1510644,8,0,-3.5529137,0,3,3,2019,12,3,0,0,4,3,0,0,0,0,0,0,0,2,0,0,0,6.4013023,7.3234129,48.81,46.83,57.06,57.76,10,1,1,0,0,4,12,3,1,996,1189834.5,857980.75,266026.5,0,2475.6909 -16268,20023,36156,36158,-9,-9,1,0,41,1,2,0,2,2,-9,1,4,6.8101478,6.9086814,0,15,-1,95.058586,0,2,2,2019,23,11,12,12,1,11,0,7.9891243,7.9891243,0,0,0,0,14.5,1,1,0,0,0,27.87,64.32000000000001,34.66,56.88,3.333333333333333,1,1,0,0,13,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 -16268,20023,36157,-9,36156,36158,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.17291,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 -16268,20023,36158,36156,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,8.2774487,7.9946933,0,15,1,-47.885269,0,2,2,2019,15,3,37,49,1,3,0,11.497382,11.497382,0,0,0,0,14.5,1,1,0,0,0,34.66,56.88,27.87,64.32000000000001,3.333333333333333,1,1,0,0,13,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 -16268,20023,36159,-9,36156,36158,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.8414,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,3,1,999,-219443.83,-24811.725,0,0,2356.6208 -16269,20024,36160,36161,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.908917,6.6375141,7,-17,-44.830311,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.7186317,6.8221951,42.08,44.79,60.29,52.11,8.333333333333334,1,1,0,0,0,5,3,1,314,161640.52,97002,210686.84,0,2231.72 -16269,20024,36161,36160,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.4585733,7.4107738,21,17,16.944269,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3250992,7.6754436,60.29,52.11,42.08,44.79,10,1,1,0,0,8,5,3,1,314,161640.52,97002,210686.84,0,2231.72 -16270,20025,36162,36163,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9350748,7.4962897,55,7,97.147209,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,8.9182491,7.3594513,59.81,35.89,56.19,40.29,8.333333333333334,1,1,0,0,10,4,3,1,1614,1050690,144244.5,233669.48,0,5554.7637 -16270,20025,36163,36162,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,7.167707,7.6108813,6.6775212,55,-7,-85.494881,0,3,3,2019,7,1,8,48,1,1,0,22.994846,22.994846,1,0,0,0,0,1,1,0,8.4279938,6.6321664,56.19,40.29,59.81,35.89,10,1,1,0,0,10,4,3,1,1614,1050690,144244.5,233669.48,0,5554.7637 -16271,20026,36164,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.2755117,8.5802412,7.4105372,0,0,-929.48181,0,3,3,2019,9,1,43,37,1,1,0,8.2449198,8.2449198,0,0,0,0,0,1,1,0,7.4953723,7.3404741,55.77,42.25,-9,-9,6.666666666666667,1,1,0,0,9,11,5,1,603,271020.72,113847.3,71183.906,21426.844,2076.811 -16272,20027,36165,-9,36167,36166,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-963.43701,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,5,1,1955.3334,1131101.3,838344.75,699698.5,416703.5,4260.5869 -16272,20027,36166,36167,-9,-9,1,1,47,1,1,0,1,1,-9,0,4,8.670702,9.1696854,0,20,8,-86.214714,0,1,1,2019,8,0,42,45,1,0,0,16.953655,16.953655,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.16,47.3,8.333333333333334,1,1,0,0,12,10,5,1,1955.3334,1131101.3,838344.75,699698.5,416703.5,4260.5869 -16272,20027,36167,36166,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,8.5845919,8.4596882,0,24,-8,161.19254,0,1,2,2019,14,5,34,26,1,5,0,19.166508,19.166508,0,0,0,0,0,1,1,0,7.8380699,0,47.16,47.3,57.16,56.15,8.333333333333334,1,1,0,0,10,10,5,1,1955.3334,1131101.3,838344.75,699698.5,416703.5,4260.5869 -16273,20028,36168,36169,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.2668977,6.282537,47,0,-48.048203,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.1213193,6.2271748,57.9,51.84,51.23,48.47,10,1,1,0,0,10,10,2,1,598,516908.56,1598.9971,321136.75,0,1576.2249 -16273,20028,36169,36168,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,2.7095318,2.3750129,47,0,50.949829,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,4.5606098,2.4909532,51.23,48.47,57.9,51.84,10,1,1,0,0,7,10,2,1,598,516908.56,1598.9971,321136.75,0,1576.2249 -16274,20029,36170,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-938.23242,-9,2,2,2019,35,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,0,0,13.11,64.38,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,1317,122106.42,0,0,0,128.33858 -16275,20030,36171,-9,36173,36172,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.01544,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 -16275,20030,36172,36173,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,8.3064318,8.4174566,0,5,2,126.69969,0,-9,-9,2019,17,5,42,50,1,5,0,14.044193,14.044193,0,0,0,0,0,1,1,0,0,0,37.57,54.73,39.1,57.79,3.333333333333333,1,1,0,0,4,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 -16275,20030,36173,36172,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,5,-2,-10.114188,0,2,1,2019,10,0,0,10,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.1,57.79,37.57,54.73,8.333333333333334,1,1,0,0,8,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 -16275,20030,36174,-9,36173,36172,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4583,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1373.75,-39083.855,23324.465,132511.64,101472.98,2062.4419 -16276,20031,36175,36176,-9,-9,1,1,32,0,0,0,3,3,-9,0,4,8.3364782,8.0738773,0,2,2,49.92532,0,2,2,2019,10,0,40,40,1,1,0,8.2681875,8.2681875,0,0,0,0,0,0,0,0,4.451755,0,50,57,54.1,59.11,7,1,1,0,0,1,13,4,1,846,542152.25,-6509.6973,115441.16,47203.266,2200.7402 -16276,20031,36176,36175,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,7.5639267,7.5672426,0,2,-2,21.862818,0,-9,-9,2019,6,0,40,30,1,0,0,6.760736,6.760736,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50,57,8.333333333333334,1,1,0,0,9,13,4,1,846,542152.25,-6509.6973,115441.16,47203.266,2200.7402 -16277,20032,36177,36178,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.0373602,6.6826582,0,8,-5,98.684479,0,3,2,2019,8,0,19,0,1,0,0,5.8591232,5.8591232,0,0,0,0,0,1,1,0,.80660856,0,50.03,52.62,50.5,50.1,6.666666666666667,1,1,0,0,0,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 -16277,20032,36178,36177,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.1286039,8.0439768,0,8,5,73.634331,0,2,2,2019,12,4,47,40,1,4,0,7.559247,7.559247,0,0,0,0,0,1,1,0,0,0,50.5,50.1,50.03,52.62,8.333333333333334,1,1,0,0,7,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 -16277,20032,36179,-9,36177,36178,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.13214,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 -16277,20032,36180,-9,36177,36178,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.071,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,510.5,160219.08,49680.207,375865.38,158980.33,1902.3954 -16278,20033,36181,36182,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.5149779,6.4331846,35,11,23.481792,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8902168,6.5907254,56.58,45.49,64.34,27.3,8.333333333333334,1,1,0,0,0,10,3,1,422.5,1191864,399159.72,182671.86,0,2750.749 -16278,20033,36182,36181,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,8.0644913,7.683723,0,35,-11,-62.040806,0,3,3,2019,10,2,40,40,1,2,0,7.8249454,7.8249454,1,0,0,0,0,1,1,0,0,0,64.34,27.3,56.58,45.49,6.666666666666667,1,1,0,0,13,10,3,1,422.5,1191864,399159.72,182671.86,0,2750.749 -16279,20034,36183,36184,-9,-9,1,1,43,0,3,0,3,3,-9,0,5,4.7345624,4.5580854,0,15,9,-106.57424,0,-9,-9,2019,7,0,16,16,1,0,0,.88091135,.88091135,0,0,0,0,0,1,1,0,0,0,54,58,45.32,54.77,10,1,1,0,1,10,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 -16279,20034,36184,36183,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,4.9441447,4.8216,0,15,0,76.412651,0,1,2,2019,11,0,2,2,1,0,0,7.0371833,7.0371833,0,0,0,0,0,1,1,0,0,0,45.32,54.77,54,58,8.333333333333334,1,1,0,0,10,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 -16279,20034,36185,-9,36184,36183,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.5306,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 -16279,20034,36186,-9,36184,36183,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-998.30139,-9,2,3,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 -16279,20034,36187,-9,36184,36183,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.1281,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,269,-61455.863,0,47546.418,15298.672,1203.8474 -16280,20035,36188,-9,-9,-9,1,0,40,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1098.0187,0,2,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,0,0,35.32,44.84,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,91,-212638.75,99965.516,0,0,-11.719635 -16281,20036,36189,-9,36190,36191,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.59979,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 -16281,20036,36190,36191,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.1210909,8.1936302,0,17,-3,-54.689186,0,1,1,2019,12,1,21,21,1,1,0,22.109636,22.109636,0,0,0,0,0,0,0,0,1.422967,0,46.34,61.24,49.63,54.22,8.333333333333334,1,1,0,0,10,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 -16281,20036,36191,36190,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.6020508,9.6653156,0,18,3,42.761909,0,1,3,2019,4,0,58,56,1,0,0,34.257065,34.257065,0,0,0,0,0,0,0,0,3.3733568,0,49.63,54.22,46.34,61.24,6.666666666666667,1,1,0,0,10,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 -16281,20036,36192,-9,36190,36191,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.04993,-9,1,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,627.75,353472.53,220206.73,344053.81,174802.16,6217.9199 -16282,20037,36193,36195,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,5.9225063,6.1959944,0,10,-4,3.0094838,0,2,3,2019,9,0,22,36,1,1,0,1.9072293,1.9072293,0,0,0,0,0,1,1,0,0,0,53,54,49,48,8,1,1,0,0,2,1,3,0,567.33331,88522.922,0,161003.72,34553.012,1799.7552 -16282,20037,36194,-9,36195,36193,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.29462,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,3,0,567.33331,88522.922,0,161003.72,34553.012,1799.7552 -16282,20037,36195,36193,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.852694,7.863626,0,10,4,87.590012,0,3,-9,2019,11,0,42,36,1,2,0,8.3893366,8.3893366,0,0,0,0,0,1,1,0,0,0,49,48,53,54,7,1,1,0,0,3,1,3,0,567.33331,88522.922,0,161003.72,34553.012,1799.7552 -16283,20038,36196,36197,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,52,1,0,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,0,0,61.04,29.21,49.04,25.24,8.333333333333334,1,1,0,0,5,4,1,1,176,5156.1719,66849.055,214607.38,0,1139.5187 -16283,20038,36197,36196,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,52,-1,0,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.04,25.24,61.04,29.21,6.666666666666667,1,1,0,0,0,4,1,1,176,5156.1719,66849.055,214607.38,0,1139.5187 -16284,20039,36198,36199,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,50,-3,38.966721,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,7.5521059,0,57.33,53.46,62.49,55.09,10,1,1,0,0,3,2,2,1,652,1205823.8,553417.38,212820.03,0,2296.9937 -16284,20039,36199,36198,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.1706243,6.9185886,8,3,25.538467,-9,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.2982588,7.1207662,62.49,55.09,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,1,652,1205823.8,553417.38,212820.03,0,2296.9937 -16285,20040,36200,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.3060117,7.0659094,0,0,0,-1070.8192,0,2,2,2019,7,1,20,10,1,1,0,9.1073332,9.1073332,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,363,-82790.602,-49648.305,0,0,837.18536 -16285,20041,36201,-9,36200,-9,1,0,22,0,0,0,2,2,-9,0,4,6.656497,6.6763558,0,0,0,-992.27936,0,2,-9,2019,9,0,24,20,1,0,1,3.6622922,3.6622922,0,0,0,0,0,1,1,0,0,0,45.69,49.29,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,538,54850.305,0,0,0,165.94337 -16286,20042,36202,36203,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,44,-1,-5.9053259,0,3,2,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,42.58,58.53,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,447.5,1196934.8,615762.75,443000.31,0,831.28082 -16286,20042,36203,36202,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.8140507,7.4970169,0,44,1,-165.12122,-9,3,3,2019,6,0,40,0,1,0,0,6.1531124,6.1531124,0,0,0,0,0,0,0,0,1.9898218,0,57.16,56.15,42.58,58.53,8.333333333333334,1,1,0,0,13,9,3,1,447.5,1196934.8,615762.75,443000.31,0,831.28082 -16287,20043,36204,36205,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-1,-99.009285,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.6442976,0,69.51000000000001,25.93,60.12,54.8,10,1,1,0,0,0,10,5,1,381.5,5801786.5,177506.97,1208301,0,8277.9639 -16287,20043,36205,36204,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,9.5151615,9.5839977,62,1,25.458208,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.5234442,9.3906031,60.12,54.8,69.51000000000001,25.93,10,1,1,0,0,0,10,5,1,381.5,5801786.5,177506.97,1208301,0,8277.9639 -16288,20044,36206,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4372239,7.0751305,0,0,-917.08215,0,3,3,2019,0,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0167308,52,45,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1161,404482.19,217089.11,204051.69,0,1048.4637 -16289,20045,36207,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6249719,7.8869915,0,0,0,-992.47717,0,3,2,2019,11,0,37,42,1,0,0,6.6301799,6.6301799,0,0,0,0,0,0,0,0,0,0,48.12,50.58,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,211,284185.19,164968.64,0,0,1118.851 -16290,20046,36208,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,6.9816484,7.6386542,0,0,-1044.7133,0,3,3,2019,15,6,0,0,4,6,0,0,0,1,3.2258036,1.4916301,21.7397,0,1,1,0,6.9685793,0,39.59,37.57,-9,-9,5,1,1,0,0,0,9,3,0,231,504503.53,159405.73,0,0,1007.3997 -16291,20047,36209,36210,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0977621,7.8216906,0,10,3,-62.332458,0,2,2,2019,5,0,36,36,1,0,0,10.934396,10.934396,0,0,0,0,0,1,1,0,0,0,57.16,56.15,27.55,38.95,8.333333333333334,1,1,0,0,9,2,3,1,534.5,112117.66,-68207.188,163090.41,0,1361.4375 -16291,20047,36210,36209,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,25,-3,53.707462,0,2,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,3.7384131,0,27.55,38.95,57.16,56.15,3.333333333333333,1,1,0,0,6,2,3,1,534.5,112117.66,-68207.188,163090.41,0,1361.4375 -16292,20048,36211,-9,-9,36212,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.194,-9,-9,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,2459,-121860.4,0,0,0,1478.106 -16292,20048,36212,-9,36213,36214,1,1,37,0,1,0,2,2,-9,0,2,8.3709078,8.5224514,0,0,0,-976.65637,0,3,3,2019,12,1,48,45,1,1,1,9.0991945,9.0991945,0,0,0,0,0,1,1,0,0,0,35.06,53.23,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,2459,-121860.4,0,0,0,1478.106 -16292,20049,36213,36214,-9,-9,1,0,58,0,1,0,3,3,-9,0,4,8.1073971,8.4886847,0,5,0,-102.23794,0,-9,-9,2019,7,0,38,40,1,0,0,11.927279,11.927279,0,0,0,0,0,1,1,0,0,0,49.34,44.51,41.94,27.98,8.333333333333334,1,1,0,0,11,11,5,1,405.5,906857.13,1072665,108847.83,22512.361,3679.9941 -16292,20049,36214,36213,-9,-9,1,1,58,0,1,0,3,3,-9,0,2,8.459074,8.5286226,0,5,0,-71.544945,0,-9,-9,2019,3,0,45,45,1,0,0,15.079504,15.079504,0,0,0,0,0,1,1,0,0,0,41.94,27.98,49.34,44.51,8.333333333333334,1,1,0,0,8,11,5,1,405.5,906857.13,1072665,108847.83,22512.361,3679.9941 -16293,20050,36215,36216,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.576067,8.3128061,33,6,39.837421,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7385073,8.4394159,45.63,46.6,30.87,58.96,8.333333333333334,1,1,0,0,0,10,3,1,355,1270801.8,747680.19,363536.88,0,3080.0024 -16293,20050,36216,36215,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,33,-6,-32.055855,0,3,3,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.2076316,0,30.87,58.96,45.63,46.6,6.666666666666667,1,1,0,0,0,10,3,1,355,1270801.8,747680.19,363536.88,0,3080.0024 -16294,20051,36217,36218,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,42,1,18.606323,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,0,0,0,0,0,63.01,30.1,54,53,10,1,1,0,0,1,10,3,1,336,101595.23,-27141.482,0,0,3856.1277 -16294,20051,36218,36217,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.5181551,7.6927986,0,7,-1,-95.469864,0,-9,-9,2019,8,0,90,90,1,0,0,3.3923562,3.3923562,0,0,0,0,0,0,0,0,8.8075323,0,54,53,63.01,30.1,8,1,1,0,0,1,10,3,1,336,101595.23,-27141.482,0,0,3856.1277 -16295,20052,36219,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.8402104,7.6360364,0,0,-1111.2699,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7559657,6.5749407,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1124,489999.16,311984.22,395106,0,1656.2841 -16296,20053,36220,36221,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,50,-2,33.468098,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.8827548,0,50.03,52.62,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,2230,800280.75,642971,292746.25,0,2489.1035 -16296,20053,36221,36220,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.5309577,7.7218595,50,2,26.330591,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.1798511,7.7709489,57.16,56.15,50.03,52.62,8.333333333333334,1,1,0,0,0,2,3,1,2230,800280.75,642971,292746.25,0,2489.1035 -16297,20054,36222,36223,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.400588,8.9083204,46,4,66.592842,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,0,8.8358459,55.34,54.26,50.16,17.69,10,1,1,0,0,10,5,5,1,1344.5,2152027,1491064.3,527450.94,0,4491.4336 -16297,20054,36223,36222,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,6.6439776,6.5684338,46,-4,124.97894,0,2,2,2019,15,4,0,35,4,4,0,0,0,0,0,0,0,0,1,1,0,2.1429656,6.7685533,50.16,17.69,55.34,54.26,8.333333333333334,1,1,0,0,9,5,5,1,1344.5,2152027,1491064.3,527450.94,0,4491.4336 -16298,20055,36224,-9,36225,36227,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.26733,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 -16298,20055,36225,36227,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.7163944,8.5137615,0,7,0,-14.106378,0,2,2,2019,9,0,60,55,1,0,0,12.339841,12.339841,0,0,0,0,0,1,1,0,2.1523647,0,51.41,56.15,56.43,47.05,8.333333333333334,1,1,0,0,8,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 -16298,20055,36226,-9,36225,36227,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.25165,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 -16298,20055,36227,36225,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,6.9554634,7.0524859,0,7,9,26.742188,0,-9,-9,2019,11,0,16,17,1,0,0,9.7830973,9.7830973,0,0,0,0,2,1,1,0,0,0,56.43,47.05,51.41,56.15,8.333333333333334,1,1,0,0,6,2,4,1,786.5,44751.117,17634.037,262941.03,247934.39,2704.0288 -16299,20056,36228,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.3578482,8.2142754,6.6261225,0,0,-950.98022,0,-9,-9,2019,9,1,40,38,1,1,0,11.313266,11.313266,0,0,0,0,0,0,0,0,0,6.9902592,47.78,45.41,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,1718,552093.19,68346.781,0,0,2225.8376 -16299,20057,36229,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.239738,7.7841649,6.6270566,0,0,-983.88342,0,-9,-9,2019,16,5,28,30,1,5,0,5.7972999,5.7972999,0,0,0,0,0,0,0,0,7.4130273,6.794066,28.18,49.4,-9,-9,3.333333333333333,1,1,0,0,10,8,3,1,719,-444663.41,-17075.746,0,0,2110.2136 -16300,20058,36230,-9,36233,36232,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.7786,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 -16300,20058,36231,-9,36233,36232,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.8677,-9,-9,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 -16300,20058,36232,36233,-9,-9,1,1,47,1,3,0,2,2,-9,0,4,8.4176207,8.2147131,0,11,8,17.036337,0,2,2,2019,1,0,50,40,1,0,0,9.4437418,9.4437418,0,0,0,0,7,1,1,0,0,0,48.39,31.37,42.62,47.7,6.666666666666667,3,4,0,0,10,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 -16300,20058,36233,36232,-9,-9,1,0,39,1,3,0,2,2,-9,1,4,0,0,0,11,-8,44.728607,0,-9,-9,2019,1,0,0,0,3,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,42.62,47.7,48.39,31.37,6.666666666666667,3,4,1,0,7,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 -16300,20058,36234,-9,36233,36232,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1047.3374,-9,-9,2,2019,10,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,8,3,0,977.40002,-11821.823,11424.02,0,0,2969.6177 -16301,20059,36235,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.2937236,5.8296576,0,0,-940.14355,0,3,3,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,5.7881899,48.98,57.22,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,725,466463.69,103969.34,369367.25,0,1618.3323 -16301,20060,36236,-9,-9,36235,1,1,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1044.7786,0,-9,3,2019,16,5,0,44,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.44,47.57,-9,-9,3.333333333333333,1,1,0,1,2,7,1,0,329,-85717.57,0,0,0,0 -16302,20061,36237,36238,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,0,0,0,20,2,11.002597,0,2,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,52,55,6.666666666666667,1,1,0,0,1,7,3,1,354,-368104.25,76461.875,180151.83,83916.328,1808.824 -16302,20061,36238,36237,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,7.9712782,8.1605206,0,7,-2,-33.44836,0,-9,-9,2019,9,0,45,40,1,1,0,9.4705734,9.4705734,0,0,0,0,0,1,1,0,0,0,52,55,54.79,55.86,8,1,1,0,0,1,7,3,1,354,-368104.25,76461.875,180151.83,83916.328,1808.824 -16303,20062,36239,36240,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,2,21,0,0,2,2,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.52,39.05,43.49,43.6,3.333333333333333,1,1,0,0,0,9,1,0,2135,-62921.203,0,0,0,1780.0049 -16303,20062,36240,36239,-9,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,2,-21,0,0,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,2,1,1,0,0,0,43.49,43.6,24.52,39.05,8.333333333333334,1,1,0,0,0,9,1,0,2135,-62921.203,0,0,0,1780.0049 -16304,20063,36241,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.3321443,7.288599,0,0,-942.55505,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,2.8886724,7.3961797,57.25,30.1,-9,-9,10,1,1,0,0,0,1,3,1,196,197378.89,0,181539.64,0,2344.1904 -16305,20064,36242,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5513611,8.2387333,0,0,0,-935.67346,0,3,3,2019,15,3,42,37,1,3,0,11.258426,11.258426,0,0,0,0,0,0,0,0,0,0,46.72,49.13,-9,-9,5,1,1,0,1,13,9,5,0,458,793533.63,942515.69,0,0,1586.3705 -16306,20065,36243,-9,36245,36244,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.1098,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 -16306,20065,36244,36245,-9,-9,1,1,23,1,2,0,3,3,-9,0,4,0,0,0,3,2,0,0,-9,-9,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.39,52.35,49.02,43.43,8.333333333333334,1,1,1,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 -16306,20065,36245,36244,-9,-9,1,0,21,1,2,0,3,3,-9,0,5,0,0,0,3,-2,0,0,3,-9,2019,11,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,43.43,53.39,52.35,10,1,1,0,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 -16306,20065,36246,-9,36245,36244,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.26062,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,564,-65528.238,0,0,0,1691.6158 -16307,20066,36247,36248,-9,-9,1,0,49,0,1,0,2,2,-9,0,1,7.7011337,7.8339057,0,8,-2,-23.828678,0,3,3,2019,11,0,43,47,1,0,0,7.1717486,7.1717486,0,0,0,0,2,1,1,0,0,0,43.99,40.75,52.82,53.97,6.666666666666667,1,1,0,0,5,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 -16307,20066,36248,36247,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.0087795,8.3610601,0,8,2,-90.357872,0,3,3,2019,8,0,50,50,1,0,0,8.797533,8.797533,0,0,0,0,0,1,1,0,0,0,52.82,53.97,43.99,40.75,8.333333333333334,1,1,0,0,9,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 -16307,20066,36249,-9,36247,36248,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-979.12256,-9,2,2,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 -16307,20066,36250,-9,36247,36248,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-920.38379,-9,2,2,2019,7,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,64.62,35.18,-9,-9,10,1,1,0,0,0,12,4,1,549.25,829249.38,181688.06,143749.59,0,2450.95 -16307,20067,36251,-9,36247,36248,1,0,22,0,1,0,2,2,-9,0,5,7.4483986,7.6976366,0,0,0,-1116.3274,0,2,2,2019,6,0,40,43,1,0,1,7.2222385,7.2222385,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,12,3,1,302,-89391.133,-18533.506,0,0,859.97864 -16308,20068,36252,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6639042,8.5514402,8.2283869,0,0,-1017.4252,0,-9,-9,2019,12,0,33,36,1,2,0,6.5549231,6.5549231,0,0,0,0,0,0,0,0,8.535861,0,50.63,50.99,-9,-9,6.666666666666667,3,4,0,1,11,8,5,0,366,56977.965,132903.92,0,0,2919.0454 -16309,20069,36253,36254,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8185415,8.2763653,0,36,-3,-93.189621,0,-9,-9,2019,16,4,37,37,1,4,0,10.846275,10.846275,0,0,0,0,5.48,0,0,0,0,0,33.04,52.45,54.37,54.8,3.333333333333333,1,1,0,0,12,12,4,1,667.5,1217416.3,993011,197811.86,20409.449,2536.387 -16309,20069,36254,36253,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.9657235,8.1926632,34,3,-37.306549,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.18223,8.0754261,54.37,54.8,33.04,52.45,5,1,1,0,0,10,12,4,1,667.5,1217416.3,993011,197811.86,20409.449,2536.387 -16310,20070,36255,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.7945461,7.3353381,0,0,0,-984.46313,0,3,2,2019,12,0,37,37,1,0,0,9.7643108,9.7643108,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,1.666666666666667,1,1,0,0,10,11,3,1,1129,-195885.22,0,94892.852,0,989.40973 -16311,20071,36256,36257,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.5652251,7.0494223,49,0,26.840912,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.9529243,6.8188987,58.32,50.22,62.66,52.4,10,1,1,0,0,0,9,5,1,161,1905815.8,1003796,656958.38,0,4835.2847 -16311,20071,36257,36256,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.9402599,8.6578112,49,0,72.10054,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.120234,8.5889263,62.66,52.4,58.32,50.22,10,1,1,0,0,0,9,5,1,161,1905815.8,1003796,656958.38,0,4835.2847 -16312,20072,36258,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.9100971,8.6542778,0,7,-6,-45.851643,0,2,1,2019,13,1,44,50,1,1,0,14.717978,14.717978,0,0,0,0,0,0,0,0,.99175394,0,26.22,59.74,51,56,5,1,1,0,0,11,9,4,0,394,267455.03,7594.8545,0,0,2156.2349 -16313,20073,36259,36260,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,24,1,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.98,33.46,57.06,57.76,8.333333333333334,1,1,1,0,0,9,1,0,992,-90930.594,0,0,0,986.42981 -16313,20073,36260,36259,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,0,0,0,24,-1,0,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.98,33.46,5,1,1,1,0,0,9,1,0,992,-90930.594,0,0,0,986.42981 -16314,20074,36261,36262,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,0,0,54,-1,57.694305,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,0,7,2,0,707.5,1043739.7,3661.7402,422795.06,0,1837.1067 -16314,20074,36262,36261,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,6.3096662,6.0393691,55,1,74.571175,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0694184,6.1790767,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,0,7,2,0,707.5,1043739.7,3661.7402,422795.06,0,1837.1067 -16315,20075,36263,36264,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2632113,8.2237263,0,28,-4,-124.56619,0,-9,-9,2019,12,1,56,50,1,1,0,8.9529324,8.9529324,0,0,0,0,0,0,0,0,0,0,51.98,42.74,51.33,34.77,3.333333333333333,1,1,0,0,10,8,5,1,2295.5,1272065.6,637358.81,352082.59,119267.33,2538.522 -16315,20075,36264,36263,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.0227079,7.5983858,0,28,4,-36.228203,0,3,3,2019,9,0,41,36,1,0,0,9.6881971,9.6881971,0,0,0,0,0,0,0,0,0,0,51.33,34.77,51.98,42.74,6.666666666666667,3,4,0,0,12,8,5,1,2295.5,1272065.6,637358.81,352082.59,119267.33,2538.522 -16315,20076,36265,-9,36264,36263,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-937.63275,-9,2,2,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,28.72,55.83,-9,-9,8.333333333333334,4,2,0,0,2,8,1,1,222,196026.02,0,0,0,0 -16315,20077,36266,-9,36264,36263,1,1,23,0,0,0,2,2,-9,0,4,7.9137049,7.877037,0,0,0,-805.11584,0,2,2,2019,9,1,83,41,1,1,1,3.0561943,3.0561943,0,0,0,0,0,0,0,0,0,0,35.86,56.52,-9,-9,5,4,2,0,0,5,8,3,1,236,450722.09,0,0,0,907.44135 -16316,20078,36267,36269,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.813911,8.1074476,0,17,-3,-69.865639,0,2,2,2019,16,4,37,37,1,4,0,7.71632,7.71632,0,0,0,0,0,1,1,0,0,0,39.85,54.55,52.99,51.28,6.666666666666667,1,1,0,1,9,4,5,0,1009,1712770,1587197,247063.92,93847.641,3834.4968 -16316,20078,36268,-9,36267,36269,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-916.34515,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,4,5,0,1009,1712770,1587197,247063.92,93847.641,3834.4968 -16316,20078,36269,36267,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.778163,8.7411137,0,17,3,5.136148,0,2,2,2019,12,0,41,37,1,0,0,19.051466,19.051466,0,0,0,0,0,1,1,0,0,0,52.99,51.28,39.85,54.55,3.333333333333333,1,1,0,0,11,4,5,0,1009,1712770,1587197,247063.92,93847.641,3834.4968 -16316,20079,36270,-9,36267,36269,1,1,21,0,1,1,2,0,-9,0,5,0,5.2591357,5.1944399,0,0,-1015.7935,-9,1,1,2019,12,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,5.9131665,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,1,4,4,2,0,1911,315978.5,0,0,0,-315.37622 -16316,20080,36271,-9,36267,36269,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-935.56732,-9,1,1,2019,25,9,0,0,2,9,1,0,0,0,0,0,0,0,1,1,0,6.6047149,0,23.73,55.15,-9,-9,5,1,1,0,1,0,4,1,0,851,-61863.234,0,0,0,234.49141 -16317,20081,36272,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1003.8449,0,2,2,2019,12,0,0,0,4,0,0,0,0,1,1.7515768,13.816501,20.786785,0,1,1,0,0,0,40.38,34.42,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,122,259944.17,0,0,0,879.60669 -16318,20082,36273,-9,-9,-9,1,0,99,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1004.0161,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,19.501541,2.1716053,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,4,2,1,235,-326121.94,0,0,0,263.33243 -16318,20083,36274,-9,36273,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3327327,7.1996436,0,0,-1000.0161,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,27,1,1,0,2.4609892,7.755897,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,2639,969611.19,631039.19,183353.06,0,1071.2623 -16319,20084,36275,36276,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,.038293883,.26076373,0,32,3,-49.446911,0,2,2,2019,9,0,20,36,1,0,0,.0010191777,.0010191777,0,0,0,0,0,0,0,0,0,0,55.53,51.55,57.16,56.15,6.666666666666667,1,1,0,0,13,9,4,1,1246.5,158014.58,139505.23,0,0,2067.4836 -16319,20084,36276,36275,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2895193,8.6445436,0,32,-3,3.1942954,0,3,2,2019,7,0,43,85,1,0,0,12.623214,12.623214,0,0,0,0,0,0,0,0,3.4023786,0,57.16,56.15,55.53,51.55,8.333333333333334,1,1,0,0,13,9,4,1,1246.5,158014.58,139505.23,0,0,2067.4836 -16320,20085,36277,36278,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,7.3155923,7.0919838,0,26,-2,129.82553,0,2,2,2019,16,4,7,8,1,4,0,20.163328,20.163328,0,0,0,0,42,1,1,0,0,0,21.16,41.99,57.63,56.14,5,1,1,0,0,5,13,4,1,2697,75730.219,-23030.91,0,0,2022.5735 -16320,20085,36278,36277,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.1517658,8.0765505,0,26,2,-45.277916,0,3,3,2019,7,0,46,40,1,0,0,10.008355,10.008355,0,0,0,0,0,1,1,0,0,0,57.63,56.14,21.16,41.99,3.333333333333333,1,1,0,1,11,13,4,1,2697,75730.219,-23030.91,0,0,2022.5735 -16320,20086,36279,-9,36277,36278,1,0,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-974.47137,-9,1,2,2019,23,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,30.08,67.59,-9,-9,3.333333333333333,1,1,0,1,1,13,1,1,113,0,0,0,0,655.43073 -16320,20087,36280,-9,36277,36278,1,0,19,0,0,0,2,2,-9,0,4,7.8981071,7.4082842,0,0,0,-965.13123,0,1,2,2019,3,1,36,15,1,1,1,7.2614355,7.2614355,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,2,13,3,1,2062,51650.82,119637.84,0,0,919.45758 -16321,20088,36281,36282,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8688169,7.9327078,0,6,-3,176.10622,0,3,3,2019,8,0,37,38,1,0,0,9.6577759,9.6577759,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51,49,8.333333333333334,1,1,0,0,7,13,4,1,1418,326719.34,513071.88,89142,36709.453,2171.9248 -16321,20088,36282,36281,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.0553102,7.3275928,0,6,3,-16.250639,0,3,3,2019,10,0,40,40,1,1,0,4.2448726,4.2448726,0,0,0,0,0,0,0,0,0,0,51,49,54.79,55.86,7,1,1,0,0,1,13,4,1,1418,326719.34,513071.88,89142,36709.453,2171.9248 -16322,20089,36283,36284,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.997149,5.8512139,23,-13,-24.106621,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9446352,5.7321453,48.53,58.91,58.48,38.87,8.333333333333334,1,1,0,0,3,2,3,1,361,838500.94,391386.44,355996,0,2589.9946 -16322,20089,36284,36283,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.5758305,7.5857463,21,13,138.58061,0,2,2,2019,3,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,7.466784,7.669878,58.48,38.87,48.53,58.91,10,1,1,0,0,0,2,3,1,361,838500.94,391386.44,355996,0,2589.9946 -16323,20090,36285,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.5459728,7.6071444,0,0,0,-1079.5282,-9,-9,-9,2019,6,0,30,0,1,0,0,7.1000381,7.1000381,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,0,3,4,0,1,5,8,3,0,1480,158188.25,0,0,0,1105.2181 -16324,20091,36286,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.9815512,6.8865376,0,0,0,-830.9519,0,3,3,2019,17,5,16,16,1,5,0,7.9223328,7.9223328,0,0,0,0,0,1,1,0,5.1490145,0,48.14,53.42,-9,-9,5,1,1,0,1,6,9,2,1,178,462821.88,258718.3,199308.52,0,839.01953 -16324,20092,36287,-9,36286,-9,1,0,21,0,0,0,3,3,-9,0,2,0,0,0,0,0,-928.86456,0,2,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.21,49.58,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,911,188975.8,0,0,0,0 -16325,20093,36288,36289,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,0,0,0,29,-2,31.886766,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,2,3,0,0,0,4,3,1,1198.5,96169.336,-16014.04,119256.8,52816.43,2202.4175 -16325,20093,36289,36288,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.9781151,8.3011312,0,29,2,-57.943661,0,2,3,2019,3,0,37,37,1,0,0,11.126102,11.126102,0,0,0,0,0,1,1,0,7.1053591,0,57.33,53.46,57.16,56.15,6.666666666666667,2,3,0,0,12,4,3,1,1198.5,96169.336,-16014.04,119256.8,52816.43,2202.4175 -16325,20094,36290,-9,36288,36289,1,0,22,0,0,0,1,1,1,0,5,0,0,0,0,0,-909.10083,-9,3,1,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,1,0,3,4,1,1,875,137006.47,77862.492,0,0,0 -16325,20095,36291,-9,36288,36289,1,1,20,0,0,0,2,2,-9,0,4,7.7668552,7.7725387,0,0,0,-956.09308,0,3,1,2019,6,0,37,0,1,0,1,6.6307421,6.6307421,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,3,4,3,1,1157,19994.584,-143296.83,0,0,397.3447 -16325,20096,36292,-9,36288,36289,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-993.68347,-9,3,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,60.94,46.38,-9,-9,10,2,3,0,0,0,4,2,1,320,186052.56,0,0,0,0 -16325,20097,36293,-9,36288,36289,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-912.78491,-9,3,1,2019,6,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,68.32000000000001,45.78,-9,-9,10,2,3,0,0,0,4,1,1,360,297639.63,0,0,0,0 -16326,20098,36294,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.1543913,8.113657,5.9249558,0,0,-933.97882,0,3,3,2019,15,3,50,68,1,3,0,7.9385309,7.9385309,0,0,0,0,0,0,0,0,0,6.4831748,34.9,57.07,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,679,491721,249880.38,193100.75,134336.94,1251.4515 -16327,20099,36295,-9,36296,36297,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.2239,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,3,1,1032,552670.06,27996.758,397901.53,0,2029.7959 -16327,20099,36296,36297,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,0,0,0,3,-2,2.9152141,0,-9,-9,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43.21,47.68,45.18,54.77,10,1,1,0,0,0,9,3,1,1032,552670.06,27996.758,397901.53,0,2029.7959 -16327,20099,36297,36296,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,8.1004438,8.3574934,6.3560352,3,2,158.6322,0,2,2,2019,12,0,46,52,1,0,0,9.5973177,9.5973177,0,0,0,0,0,1,1,0,6.8194485,0,45.18,54.77,43.21,47.68,6.666666666666667,1,1,0,0,2,9,3,1,1032,552670.06,27996.758,397901.53,0,2029.7959 -16328,20100,36298,-9,36299,36300,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.803,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,807,932646.44,34276.883,679146.19,0,3990.8604 -16328,20100,36299,36300,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,8.130208,7.9879503,0,7,-1,68.429443,0,2,2,2019,9,2,24,25,1,2,0,15.312499,15.312499,0,0,0,0,0,1,1,0,1.4487557,0,48.53,58.91,52.02,57.3,8.333333333333334,1,1,0,0,8,1,4,1,807,932646.44,34276.883,679146.19,0,3990.8604 -16328,20100,36300,36299,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.5226851,8.4782314,0,7,1,-27.749668,0,1,1,2019,7,0,47,47,1,0,0,12.760401,12.760401,0,0,0,0,0,1,1,0,7.0258083,0,52.02,57.3,48.53,58.91,10,1,1,0,0,9,1,4,1,807,932646.44,34276.883,679146.19,0,3990.8604 -16329,20101,36301,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,8.1886597,8.2892303,0,0,0,-1015.4249,0,2,2,2019,8,0,36,42,1,0,0,11.374338,11.374338,0,0,0,0,2,0,0,0,0,0,52.24,50.75,-9,-9,5,1,1,0,0,9,12,4,1,717,128253.4,0,86965.672,0,823.02289 -16330,20102,36302,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.3235903,7.2382669,0,0,-985.80707,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,3.4222562,7.4495773,50.37,52.72,-9,-9,8.333333333333334,1,1,0,0,2,2,3,0,1037,581210.5,382823.69,82423.609,0,1648.8135 -16331,20103,36303,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.3191571,5.0407996,0,0,-908.24677,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7668786,5.4217472,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,5859,31605.689,-40765.355,0,0,1279.1466 -16332,20104,36304,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1045.3654,0,2,2,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,25.52,25.02,-9,-9,1.666666666666667,4,2,0,0,0,8,1,0,577,0,0,0,0,981.38568 -16333,20105,36305,-9,36307,36308,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.6521,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 -16333,20105,36306,-9,36307,36308,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.55713,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 -16333,20105,36307,36308,-9,-9,1,0,41,1,3,0,1,1,-9,0,5,0,0,0,15,3,-2.5781927,0,2,2,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,45.71,60.6,54.2,57.49,3.333333333333333,3,4,0,0,1,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 -16333,20105,36308,36307,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,8.1649723,8.4294472,0,15,-3,-65.680664,0,2,2,2019,1,0,40,40,1,0,0,12.235888,12.235888,0,0,0,0,2,0,0,0,0,0,54.2,57.49,45.71,60.6,6.666666666666667,3,4,0,0,6,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 -16333,20105,36309,-9,36307,36308,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.86975,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,3,0,811.20001,241023.25,-18861.611,285385.88,47091.277,1721.9523 -16334,20106,36310,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,6.0173016,5.8261127,0,0,-1026.8542,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,7.1400518,12.322737,0,0,1,1,0,1.1539586,5.5274544,55,45,-9,-9,8,1,1,0,0,0,13,2,1,325,194596.27,37764.797,78368.086,0,1635.9014 -16335,20107,36311,36312,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.2517958,9.214324,0,6,5,190.74846,0,-9,-9,2019,7,0,42,42,1,0,0,38.190571,38.190571,0,0,0,0,0,1,1,0,4.3632951,0,60.44,46.58,52.27,57.22,8.333333333333334,1,1,0,0,10,6,5,1,2767.5,490278.19,476799.88,168513.53,56159.633,4921.3389 -16335,20107,36312,36311,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.724906,7.6592169,0,6,-5,29.731421,0,2,2,2019,11,3,25,20,1,3,0,8.7589407,8.7589407,0,0,0,0,0,1,1,0,0,0,52.27,57.22,60.44,46.58,8.333333333333334,1,1,0,0,10,6,5,1,2767.5,490278.19,476799.88,168513.53,56159.633,4921.3389 -16336,20108,36313,36314,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.3542128,8.2216644,0,9,0,70.438347,0,2,2,2019,10,0,39,39,1,0,0,11.535878,11.535878,0,0,0,0,0,1,1,0,0,0,43.57,52.96,55.79,52.62,6.666666666666667,1,1,0,0,11,10,4,1,402,2220273.3,1249747.3,215839.13,0,2019.1919 -16336,20108,36314,36313,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.2565618,6.4156108,9,9,-32.339947,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.7022796,6.3111138,55.79,52.62,43.57,52.96,10,1,1,0,0,7,10,4,1,402,2220273.3,1249747.3,215839.13,0,2019.1919 -16337,20109,36315,-9,36317,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.83496,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,313,84845.102,0,0,0,3392.8838 -16337,20109,36316,-9,36317,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.53961,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,313,84845.102,0,0,0,3392.8838 -16337,20109,36317,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9239464,9.034893,6.9623566,0,0,-961.19983,0,1,1,2019,5,0,25,35,1,0,0,21.753847,21.753847,0,0,0,0,0,1,1,0,7.1204596,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,313,84845.102,0,0,0,3392.8838 -16338,20110,36318,-9,36323,36320,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-932.85834,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 -16338,20110,36319,-9,36323,36320,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-949.89313,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 -16338,20110,36320,36323,-9,-9,1,1,46,0,4,0,1,1,-9,0,4,8.8758802,8.5380182,0,19,0,-29.452932,0,2,2,2019,10,1,50,50,1,1,0,17.334414,17.334414,0,0,0,0,0,1,1,0,4.8505726,0,54.2,57.49,58.32,50.22,8.333333333333334,1,1,0,0,10,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 -16338,20110,36321,-9,36323,36320,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-942.90979,-9,2,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 -16338,20110,36322,-9,36323,36320,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-822.82355,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 -16338,20110,36323,36320,-9,-9,1,0,46,0,4,0,2,2,-9,0,3,7.5066833,7.6445785,0,8,0,62.443962,0,2,2,2019,7,0,38,30,1,0,0,4.5349178,4.5349178,0,0,0,0,2,1,1,0,0,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,8,10,4,1,661,402927,287502,284265.13,85397.703,3450.0664 -16339,20111,36324,36325,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1765032,9.4476109,0,13,8,6.8410316,0,-9,-9,2019,14,3,38,43,1,3,0,26.452271,26.452271,0,0,0,0,0,1,1,0,2.1990743,0,48.23,53.52,57.16,56.15,8.333333333333334,2,3,0,0,10,11,5,1,407.66666,641354.06,392890.66,350474.09,254793.22,3633.4763 -16339,20111,36325,36324,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,8,-8,119.09019,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.23,53.52,10,2,3,0,0,0,11,5,1,407.66666,641354.06,392890.66,350474.09,254793.22,3633.4763 -16339,20111,36326,-9,36325,36324,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.9222,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,11,5,1,407.66666,641354.06,392890.66,350474.09,254793.22,3633.4763 -16340,20112,36327,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.7015748,7.6491027,0,0,0,-936.23914,0,3,3,2019,21,9,51,44,1,9,0,5.9372654,5.9372654,0,0,0,0,7,1,1,0,0,0,39.99,24.96,-9,-9,6.666666666666667,1,1,0,1,6,11,3,0,1584,244138.34,303723.25,0,0,1314.756 -16340,20113,36328,-9,36327,-9,1,1,22,0,0,0,2,2,-9,1,2,7.6609645,7.5157666,0,0,0,-1052.8309,0,2,-9,2019,11,0,40,0,1,0,1,6.4428182,6.4428182,0,0,0,0,0,1,1,0,0,0,42.34,41.84,-9,-9,3.333333333333333,1,1,0,0,1,11,3,0,951,-64573.234,74368.867,122575.55,53999.188,994.95728 -16341,20114,36329,-9,36330,36332,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5472,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 -16341,20114,36330,36332,-9,-9,1,0,36,1,2,0,2,2,-9,0,2,0,0,0,8,-3,-28.810507,0,2,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,42,1,1,0,0,0,62.66,39.17,49.46,56.91,5,1,1,0,1,6,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 -16341,20114,36331,-9,36330,36332,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.3013,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 -16341,20114,36332,36330,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.4573946,8.4126797,0,8,3,-91.056984,0,2,2,2019,10,0,35,35,1,0,0,15.650798,15.650798,0,0,0,0,0,1,1,0,0,0,49.46,56.91,62.66,39.17,8.333333333333334,1,1,0,0,7,11,3,1,1802.75,-113980.03,-25743.219,58982.676,76811.961,1853.7333 -16342,20115,36333,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.0564356,7.9281082,0,0,0,-1110.9343,0,1,2,2019,22,10,21,21,1,10,0,19.069939,19.069939,0,0,0,0,0,1,1,0,6.1986966,0,36.23,54.97,-9,-9,3.333333333333333,1,1,0,1,8,6,3,1,260,24653.145,-19205.621,0,0,1936.9854 -16342,20115,36334,-9,36333,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.0086,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,3,1,260,24653.145,-19205.621,0,0,1936.9854 -16343,20116,36335,-9,36336,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-881.86249,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,298.5,126474.16,0,0,0,2025.7764 -16343,20116,36336,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.4881859,7.8109155,0,0,0,-1017.7323,0,3,2,2019,16,5,22,30,1,5,0,9.4628658,9.4628658,0,0,0,0,0,1,1,0,0,0,44.83,57.81,-9,-9,1.666666666666667,1,1,0,1,4,8,3,0,298.5,126474.16,0,0,0,2025.7764 -16344,20117,36337,36338,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,6,-1,133.5639,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.46,53.68,60.3,36.05,5,1,1,0,0,0,1,2,1,1414,199773.34,89029.859,0,0,1406.6392 -16344,20117,36338,36337,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.7630272,6.4308763,6,1,-27.753036,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1153698,60.3,36.05,41.46,53.68,10,1,1,0,0,0,1,2,1,1414,199773.34,89029.859,0,0,1406.6392 -16344,20118,36339,-9,36337,36338,1,1,21,0,0,0,2,2,-9,0,5,7.4181619,7.7913966,0,0,0,-1079.3302,0,3,2,2019,0,0,35,30,1,0,0,6.5770421,6.5770421,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,5,1,3,1,791,20679.338,0,0,0,1529.5042 -16345,20119,36340,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,5.8675208,5.8661289,0,0,-904.12482,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0803537,60.69,53.18,-9,-9,10,1,1,0,0,0,12,2,1,409,279710.31,126170.16,204032.09,0,540.04718 -16346,20120,36341,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.5940237,8.5502901,0,0,0,-1049.2546,0,3,3,2019,12,0,49,50,1,0,0,12.994309,12.994309,0,0,0,0,0,0,0,0,0,0,52.57,52.89,-9,-9,3.333333333333333,1,1,0,0,9,12,5,1,837,1342557.4,778287.19,155143.8,0,2050.2488 -16347,20121,36342,36343,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.0707378,4.9662828,54,-4,-15.919882,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.3473388,4.4450693,50.94,53.44,48.46,22.67,10,1,1,0,0,0,9,3,1,134,727646.13,360975.38,235769.66,0,2026.4905 -16347,20121,36343,36342,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.5247655,7.9051261,54,4,122.60954,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,2.1041222,0,1,1,0,0,7.6217971,48.46,22.67,50.94,53.44,8.333333333333334,1,1,0,0,0,9,3,1,134,727646.13,360975.38,235769.66,0,2026.4905 -16348,20122,36344,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-965.65411,0,2,2,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,23.21,65.58,-9,-9,0,3,4,1,1,0,8,1,0,986,84809.594,0,0,0,-206.16786 -16349,20123,36345,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5045919,8.6979113,0,0,0,-1012.7026,0,2,2,2019,6,0,45,50,1,0,0,11.907399,11.907399,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,403,42759.531,0,55694.602,79717.711,2049.9641 -16350,20124,36346,36347,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.6425128,5.3500566,48,6,-5.4598312,0,2,2,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.5020099,6.0439277,57.33,53.46,55.73,53.98,5,1,1,0,0,0,5,2,1,646,395241.94,144426.23,315500,0,1626.4376 -16350,20124,36347,36346,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.0042539,5.1783786,48,-6,19.470379,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0419269,55.73,53.98,57.33,53.46,10,1,1,0,0,0,5,2,1,646,395241.94,144426.23,315500,0,1626.4376 -16351,20125,36348,36352,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.8679628,8.2861214,0,8,-17,-61.435951,0,1,2,2019,7,0,46,40,1,0,0,7.039073,7.039073,0,0,0,0,0,1,1,0,1.7784728,0,43.54,59.6,32.99,60.39,8.333333333333334,1,1,0,0,10,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 -16351,20125,36349,-9,36348,36352,1,1,17,1,2,1,2,0,0,0,4,0,0,0,0,0,-965.82074,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 -16351,20125,36350,-9,36348,36352,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.2323,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 -16351,20125,36351,-9,36348,36352,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-944.22815,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 -16351,20125,36352,36348,-9,-9,1,1,53,1,2,0,2,2,-9,0,3,7.7864985,7.7945261,0,8,17,-94.764191,0,2,3,2019,15,3,36,36,1,3,0,7.5860996,7.5860996,0,0,0,0,7,1,1,0,7.5576878,0,32.99,60.39,43.54,59.6,1.666666666666667,1,1,0,0,10,4,3,1,424.60001,104145.33,55317.422,94579.516,46499.418,3196.1777 -16352,20126,36353,36354,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,8.7352028,8.8747787,0,10,2,-191.91132,0,2,-9,2019,11,0,53,53,1,0,0,13.886844,13.886844,0,0,0,0,0,0,0,0,0,0,36.17,51.34,54.2,57.49,5,1,1,0,0,11,2,4,1,910,7321.1094,-16059.644,0,0,2017.6345 -16352,20126,36354,36353,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-137.16919,0,-9,-9,2019,9,1,0,41,3,1,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,36.17,51.34,8.333333333333334,1,1,1,0,10,2,4,1,910,7321.1094,-16059.644,0,0,2017.6345 -16353,20127,36355,-9,-9,-9,1,0,52,1,1,0,2,2,-9,1,1,7.4027538,7.1530118,0,0,0,-951.35645,0,3,3,2019,12,1,25,25,1,1,0,5.91219,5.91219,0,0,0,0,101,1,1,0,0,0,49.08,16.88,-9,-9,5,1,1,0,0,7,11,2,1,311,27164.975,0,0,0,1652.0905 -16353,20128,36356,36357,36355,-9,1,1,27,1,1,0,2,2,-9,0,2,8.360795,8.3445168,0,3,6,-73.907776,0,2,2,2019,16,4,50,50,1,4,0,10.106261,10.106261,0,0,0,0,0,1,1,0,0,0,20.23,59,33.31,53.47,6.666666666666667,1,1,0,0,4,11,3,1,985.66669,-58163.023,12751.32,132223.52,96609.82,1732.1506 -16353,20128,36357,36356,-9,-9,1,0,21,1,1,0,2,2,-9,1,3,0,0,0,3,-6,-25.500528,0,-9,-9,2019,23,9,0,0,3,9,0,0,0,0,0,0,0,0,1,1,0,0,0,33.31,53.47,20.23,59,3.333333333333333,1,1,1,0,0,11,3,1,985.66669,-58163.023,12751.32,132223.52,96609.82,1732.1506 -16353,20128,36358,-9,36357,36356,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5836,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,1,985.66669,-58163.023,12751.32,132223.52,96609.82,1732.1506 -16353,20129,36359,-9,36355,-9,1,0,24,1,1,0,2,2,-9,1,4,0,0,0,0,0,-995.36395,0,2,-9,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,1,11,1,1,646,-190546.34,0,0,0,1257.6797 -16353,20130,36360,-9,36355,-9,1,0,24,1,1,0,2,2,-9,0,5,7.3822227,7.5880294,0,0,0,-948.11774,0,2,-9,2019,9,0,28,28,1,0,1,6.6505666,6.6505666,0,0,0,0,2,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,7,11,3,1,589,-255403.06,0,0,0,1239.0256 -16354,20131,36361,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-940.40759,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.79,46.85,-9,-9,10,1,1,0,0,0,7,1,0,164,397336.91,142504.73,0,0,1357.4519 -16355,20132,36362,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,7.345366,7.84655,0,0,-1114.9313,0,2,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,42,1,1,0,8.0960159,7.8272014,36.02,51.34,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1771,812244.56,-24821.521,440594.94,0,2638.7083 -16356,20133,36363,36364,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.1913471,8.1331806,0,10,5,-26.798746,0,-9,2,2019,6,0,40,27,1,0,0,10.443048,10.443048,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.48,56.4,8.333333333333334,1,1,0,0,7,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 -16356,20133,36364,36363,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,10,-5,-112.38687,0,2,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 -16356,20133,36365,-9,36364,36363,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.1933,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 -16356,20133,36366,-9,36364,36363,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.15253,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,3,0,920.5,23515.031,19477.383,0,0,1914.5901 -16357,20134,36367,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.4087386,8.6943483,7.7451701,0,0,-1002.173,0,3,-9,2019,7,0,24,25,1,0,0,9.2013779,9.2013779,0,0,0,0,0,1,1,0,7.9134269,7.8059063,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,460,498167.5,337974.31,161280.7,0,2250.5581 -16358,20135,36368,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,8.3932791,8.2688961,0,0,0,-963.93866,0,2,2,2019,7,0,48,48,1,0,0,10.512116,10.512116,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,4,5,0,260,380562.28,109357.26,133261.66,87487.273,1493.9642 -16359,20136,36369,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.5478206,6.6923294,0,0,-958.34949,0,3,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,0,6.8824668,53,47,-9,-9,7,1,1,0,0,3,7,2,1,807,299583.84,203358.05,0,0,131.02516 -16360,20137,36370,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-908.71503,0,-9,-9,2019,23,10,0,0,4,10,0,0,0,1,0,8.5112677,0,0,1,1,0,0,0,46,37,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,617,64390.898,0,250101.13,0,1561.4559 -16361,20138,36371,-9,36374,36372,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.08612,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 -16361,20138,36372,36374,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,7.7770491,7.7416744,0,6,9,30.494986,0,2,3,2019,12,0,27,18,1,0,0,12.949332,12.949332,0,0,0,0,0,1,1,0,0,0,38.27,52.67,52.97,48.43,5,1,1,0,0,9,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 -16361,20138,36373,-9,36374,36372,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-914.23315,-9,1,2,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 -16361,20138,36374,36372,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.3332319,9.1127329,0,6,0,-180.99258,0,2,3,2019,18,7,58,47,1,7,0,19.722832,19.722832,0,0,0,0,0,1,1,0,0,0,52.97,48.43,38.27,52.67,6.666666666666667,1,1,0,0,7,7,5,1,1211,771805,507722.28,452120.03,146679.69,4377.9697 -16362,20139,36375,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.5143399,7.1654472,0,0,-959.13336,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,7,1,1,0,4.7587576,7.0496931,65.21000000000001,44.28,-9,-9,10,1,1,0,0,4,5,3,1,577,456990.88,453072.19,100339.36,0,951.78302 -16363,20140,36376,-9,36378,36379,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.99609,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 -16363,20140,36377,-9,36378,36379,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.84943,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 -16363,20140,36378,36379,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.6737924,7.7285509,0,12,3,79.12207,0,2,3,2019,10,2,34,14,1,2,0,6.2143803,6.2143803,0,0,0,0,14.5,0,0,0,0,0,43.83,43.24,56.33,51.02,6.666666666666667,1,1,0,1,10,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 -16363,20140,36379,36378,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.1018,9.4598207,0,8,-3,84.729202,0,3,2,2019,9,1,45,45,1,1,0,29.033266,29.033266,0,0,0,0,2,0,0,0,4.7103405,0,56.33,51.02,43.83,43.24,8.333333333333334,1,1,0,0,10,8,5,1,1224,401622.78,107162.7,472055.13,342693.66,5573.9102 -16364,20141,36380,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.5275087,8.621912,0,0,0,-968.12085,0,3,2,2019,14,3,35,35,1,3,0,18.234924,18.234924,0,0,0,0,0,0,0,0,0,0,52.51,43.73,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,1067,-226941.05,-35975.234,0,0,1772.8345 -16365,20142,36381,36382,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,8,-5,-76.05687,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.96,13.49,54.79,55.86,6.666666666666667,1,1,0,0,0,13,2,1,227,683756.38,477712.69,123430.98,0,2190.416 -16365,20142,36382,36381,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.7989058,6.6186562,8,5,-105.34868,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1038394,54.79,55.86,61.96,13.49,8.333333333333334,1,1,0,0,1,13,2,1,227,683756.38,477712.69,123430.98,0,2190.416 -16366,20143,36383,36385,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2720671,7.7663326,0,6,-2,-1.8429024,0,-9,-9,2019,7,0,40,40,1,0,0,9.7851734,9.7851734,0,0,0,0,42,1,1,0,2.1414273,0,55.96,49.93,30.24,64.61,5,1,1,0,0,5,4,3,1,1021.25,199780.8,0,0,0,2210.4539 -16366,20143,36384,-9,36385,36383,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.3252,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,1,1021.25,199780.8,0,0,0,2210.4539 -16366,20143,36385,36383,-9,-9,1,0,39,0,2,0,1,1,-9,1,4,0,0,0,6,2,-42.598724,0,3,3,2019,17,7,0,40,3,7,0,0,0,0,0,0,0,120,1,1,0,0,0,30.24,64.61,55.96,49.93,3.333333333333333,1,1,0,0,9,4,3,1,1021.25,199780.8,0,0,0,2210.4539 -16366,20143,36386,-9,36385,36383,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-836.82849,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1021.25,199780.8,0,0,0,2210.4539 -16367,20144,36387,36389,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,7.5353413,7.8990431,0,7,1,29.017956,0,2,2,2019,6,2,14,12,1,2,0,18.817356,18.817356,0,0,0,0,0,1,1,0,1.8539778,0,51.14,60.45,50,57,8.333333333333334,1,1,0,0,8,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 -16367,20144,36388,-9,36387,36389,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.7933,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 -16367,20144,36389,36387,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,8.8891153,9.1651745,0,7,-1,50.487915,0,2,2,2019,10,0,80,80,1,1,0,17.31131,17.31131,0,0,0,0,0,1,1,0,3.2333767,0,50,57,51.14,60.45,7,1,1,0,0,1,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 -16367,20144,36390,-9,36387,36389,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.88147,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 -16367,20144,36391,-9,36387,36389,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.5072,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,665.59998,180909.95,4547.4775,225768.19,88275.313,4870.4111 -16368,20145,36392,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.9606566,6.3107119,0,0,-912.06067,0,3,3,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,10.074838,5.8856735,51.19,52.17,-9,-9,8.333333333333334,4,2,0,0,9,8,2,1,985,683964,316696.63,378735.09,0,7450.5659 -16369,20146,36393,36394,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.7587619,7.5731149,0,3,-2,-78.964951,0,2,2,2019,6,0,26,44,1,0,0,9.9277925,9.9277925,0,0,0,0,0,1,1,0,.67069954,0,57.16,56.15,50,57,10,1,1,0,0,9,7,4,1,477,200436.72,66089.453,122506.77,108283.01,2641.0339 -16369,20146,36394,36393,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.0859957,8.5648136,0,3,2,-35.291389,0,-9,-9,2019,10,0,50,60,1,1,0,10.823499,10.823499,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,7,4,1,477,200436.72,66089.453,122506.77,108283.01,2641.0339 -16369,20146,36395,-9,36393,36394,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.02747,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,477,200436.72,66089.453,122506.77,108283.01,2641.0339 -16370,20147,36396,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.6859646,6.3092999,0,0,-1052.7615,0,3,3,2019,13,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,5.5971537,6.0100546,40.86,24.78,-9,-9,5,1,1,0,0,11,13,2,1,323,546589,34579.191,164332.16,0,798.63879 -16371,20148,36397,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.8694873,7.8598256,0,0,0,-978.50092,0,2,2,2019,17,5,36,36,1,5,0,9.1793365,9.1793365,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,10,13,3,1,2159,43590.164,0,0,0,1553.2063 -16371,20149,36398,-9,36397,-9,1,0,20,0,0,0,2,2,1,0,2,6.6800828,6.5711746,0,0,0,-1009.0733,-9,2,-9,2019,9,0,8,0,1,0,1,11.711969,11.711969,0,0,0,0,0,1,1,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,705,308303.03,0,0,0,318.12231 -16372,20150,36399,36400,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.5145798,8.5462408,0,31,-1,19.291664,0,2,2,2019,10,0,55,52,1,0,0,8.7765265,8.7765265,0,0,0,0,0,1,1,0,0,0,45.77,50.43,55.09,55.87,6.666666666666667,1,1,0,0,7,7,4,1,1131,515906.72,-14672.217,383219.94,-4037.6084,3172.7219 -16372,20150,36400,36399,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,8.0569515,8.065094,0,32,1,70.898384,0,1,2,2019,14,2,36,34,1,2,0,8.9582701,8.9582701,0,0,0,0,0,1,1,0,0,0,55.09,55.87,45.77,50.43,6.666666666666667,1,1,0,0,7,7,4,1,1131,515906.72,-14672.217,383219.94,-4037.6084,3172.7219 -16372,20150,36401,-9,36400,36399,1,0,17,0,1,0,2,2,1,0,4,0,3.6139178,3.7060933,0,0,-1001.1914,-9,2,3,2019,16,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,3.7398663,0,53.9,52.09,-9,-9,8.333333333333334,1,1,0,0,1,7,4,1,1131,515906.72,-14672.217,383219.94,-4037.6084,3172.7219 -16372,20151,36402,-9,36400,36399,1,1,21,0,1,0,1,1,1,0,3,0,5.6053467,5.6652861,0,0,-897.17218,-9,2,3,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,5.5177498,0,46.67,55.57,-9,-9,8.333333333333334,1,1,1,0,0,7,2,1,454,-39260.234,0,0,0,-382.73395 -16373,20152,36403,36405,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.445281,8.6801691,0,11,-3,-29.744688,-9,-9,-9,2019,7,0,59,0,1,0,0,9.2902946,9.2902946,0,0,0,0,0,1,1,0,0,0,57.16,56.15,36.1,63.29,6.666666666666667,1,1,0,0,8,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 -16373,20152,36404,-9,36405,36403,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.06006,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 -16373,20152,36405,36403,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.3968701,7.4980474,0,11,3,50.708454,-9,-9,-9,2019,16,4,38,0,1,4,0,3.8689656,3.8689656,0,0,0,0,2,1,1,0,0,0,36.1,63.29,57.16,56.15,5,1,1,0,0,7,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 -16373,20152,36406,-9,36405,36403,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6544,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,381.25,367577.81,49013.09,357001.91,129010.33,3275.4939 -16374,20153,36407,36409,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.5128775,9.2431822,0,5,0,120.26072,0,2,2,2019,12,1,45,52,1,1,0,33.368965,33.368965,0,0,0,0,2,1,1,0,5.0322647,0,34.94,53.21,46.16,58.62,8.333333333333334,2,3,0,0,7,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 -16374,20153,36408,-9,36409,36407,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2148,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 -16374,20153,36409,36407,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.5468903,8.7229319,0,5,0,39.680302,0,-9,-9,2019,12,1,30,30,1,1,0,20.490803,20.490803,0,0,0,0,0,1,1,0,0,0,46.16,58.62,34.94,53.21,8.333333333333334,3,4,0,0,7,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 -16374,20153,36410,-9,36409,36407,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1527,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,5,1,534,417650.19,95237.703,268730.31,12418.953,6211.7437 -16375,20154,36411,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1025.4825,0,3,-9,2019,18,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,3.2865796,0,33.61,28.11,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,703,-71823.164,0,0,0,953.52191 -16376,20155,36412,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.2766685,8.1594276,0,0,0,-930.29871,0,2,2,2019,16,4,40,38,1,4,0,11.147336,11.147336,0,0,0,0,7,0,0,0,2.933804,0,26.4,49.31,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,431,378983.03,115600.77,0,0,1693.0282 -16377,20156,36413,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,4,0,6.7716427,6.976872,0,0,-958.08514,0,3,3,2019,6,0,0,0,4,0,0,0,0,1,0,3.1198986,0,0,1,1,0,4.6277409,6.9267526,61.69,39.21,-9,-9,10,1,1,0,0,0,12,2,1,397,80710.977,178338.45,0,0,1717.855 -16378,20157,36414,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1085.5194,0,3,3,2019,22,9,0,0,4,9,0,0,0,1,2.2388933,0,20.384426,0,1,1,0,0,0,44.83,34.47,-9,-9,3.333333333333333,1,1,0,0,0,5,1,1,653,-268978.5,0,0,0,1660.9337 -16379,20158,36415,36416,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.1794009,6.8976893,7,-2,15.388049,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.7073011,6.8708878,61.04,39.41,55.79,52.62,8.333333333333334,1,1,0,0,0,12,4,1,416.5,1456527.5,814257.88,254139.2,0,5391.0703 -16379,20158,36416,36415,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3167276,8.8242683,7,2,38.135258,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9398737,8.5580158,55.79,52.62,61.04,39.41,8.333333333333334,1,1,0,0,0,12,4,1,416.5,1456527.5,814257.88,254139.2,0,5391.0703 -16380,20159,36417,36418,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,8.1522732,8.0675488,0,28,1,-.048180223,0,-9,-9,2019,6,0,50,0,1,0,0,8.3375845,8.3375845,0,0,0,0,0,1,1,0,1.2798333,0,62.39,56.71,52.33,39.2,6.666666666666667,1,1,0,0,11,9,3,1,681.66669,72228.469,0,0,0,2251.1707 -16380,20159,36418,36417,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.5064912,7.492877,0,28,-1,-26.869934,0,2,2,2019,8,0,25,25,1,0,0,9.0619698,9.0619698,0,0,0,0,0,1,1,0,0,0,52.33,39.2,62.39,56.71,8.333333333333334,1,1,0,0,11,9,3,1,681.66669,72228.469,0,0,0,2251.1707 -16380,20159,36419,-9,36418,36417,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1024.1113,-9,3,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,681.66669,72228.469,0,0,0,2251.1707 -16380,20160,36420,-9,36418,36417,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1029.0426,-9,3,2,2019,16,3,0,0,2,3,1,0,0,0,0,0,0,0,1,1,0,0,0,35.26,43.03,-9,-9,1.666666666666667,1,1,0,0,3,9,1,1,384,0,0,0,0,0 -16381,20161,36421,36424,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.4004898,8.2961721,0,20,2,74.770714,0,2,2,2019,24,10,46,50,1,10,0,15.06389,15.06389,0,0,0,0,2,1,1,0,2.8426876,0,39.16,56.56,57.16,56.15,6.666666666666667,1,1,0,0,10,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 -16381,20161,36422,-9,36424,36421,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.835,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 -16381,20161,36423,-9,36424,36421,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.17822,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 -16381,20161,36424,36421,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,19,-2,14.217714,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.16,56.56,8.333333333333334,1,1,0,0,5,1,3,1,1200.75,247290.77,0,399623.75,275725.44,1959.802 -16382,20162,36425,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.5905743,8.6277952,6.3969617,0,0,-1041.3868,0,2,2,2019,22,10,40,41,1,10,0,13.31647,13.31647,0,0,0,0,0,1,1,0,0,6.5131392,37.83,54.5,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,399,92698.93,138318.92,0,0,2343.8604 -16383,20163,36426,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.532321,6.6391168,0,0,-968.70325,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2325397,34.89,41.34,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,492,233187.14,11308.063,145839.58,0,731.86658 -16384,20164,36427,-9,36429,36430,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.01978,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 -16384,20164,36428,-9,36429,36430,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.321,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 -16384,20164,36429,36430,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,9.1833563,9.4900475,0,20,-3,-145.04091,0,1,1,2019,2,0,30,40,1,0,0,40.675396,40.675396,0,0,0,0,71.5,0,0,0,4.8986177,0,58.62,52.91,27.79,62.9,8.333333333333334,1,1,0,0,8,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 -16384,20164,36430,36429,-9,-9,1,1,55,0,2,0,1,1,-9,0,3,9.9324789,9.9834042,0,21,3,-40.001381,0,2,2,2019,30,12,45,50,1,12,0,45.422405,45.422405,0,0,0,0,0,0,0,0,5.0831156,0,27.79,62.9,58.62,52.91,3.333333333333333,1,1,0,0,8,9,5,1,1075.25,788067.88,485878.69,628205.81,355987.34,6169.2305 -16385,20165,36431,-9,36433,36434,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.59454,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 -16385,20165,36432,-9,36433,36434,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.3887,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 -16385,20165,36433,36434,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,9.0362453,8.8411255,0,19,0,9.6150455,0,2,2,2019,10,0,43,45,1,0,0,19.720999,19.720999,0,0,0,0,2,1,1,0,8.3913422,0,46.39,60.99,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 -16385,20165,36434,36433,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,9.0085573,9.198,0,19,0,13.691572,0,2,1,2019,8,0,43,38,1,0,0,21.101776,21.101776,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.39,60.99,8.333333333333334,1,1,0,0,11,9,5,1,802.75,1191460,790267,692705.31,476694.38,6385.5078 -16386,20166,36435,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.8945971,7.9642663,0,0,0,-1044.679,0,3,3,2019,6,0,38,38,1,0,0,9.7776566,9.7776566,0,0,0,0,0,0,0,0,0,0,59.88,48.2,-9,-9,10,1,1,0,0,8,10,4,0,970,195180.53,-1652.7776,0,0,1340.3617 -16386,20167,36436,-9,36435,-9,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1003.8381,0,3,-9,2019,9,0,0,51,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,0,4,10,1,0,401,217338.52,0,0,0,0 -16387,20168,36437,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.2231,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.0004611,0,56.34,46.17,-9,-9,10,1,1,0,0,0,1,2,0,533,46630.445,-822.91211,0,0,978.57178 -16388,20169,36438,-9,36439,-9,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.163,-9,2,-9,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,6,3,1,684.5,179681.8,89019.711,0,0,1917.0906 -16388,20169,36439,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.6832609,8.128849,7.0362177,0,0,-887.5304,0,3,2,2019,12,1,22,22,1,1,0,10.713826,10.713826,0,0,0,0,0,1,1,0,6.3506207,0,52.97,53.97,-9,-9,8.333333333333334,1,1,0,1,10,6,3,1,684.5,179681.8,89019.711,0,0,1917.0906 -16388,20170,36440,-9,36439,-9,1,1,22,0,1,0,2,2,-9,0,4,7.8716445,7.5408721,0,0,0,-927.63959,0,2,2,2019,6,1,30,26,1,1,1,10.861064,10.861064,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,1201,291428.72,-43961.48,0,0,833.33783 -16388,20171,36441,-9,36439,-9,1,0,18,0,1,1,2,0,0,0,3,0,5.8595448,5.8009229,0,0,-1020.0505,-9,2,-9,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,5.853672,0,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1721,-179847.33,0,0,0,905.71008 -16389,20172,36442,36443,-9,-9,1,0,74,0,2,0,2,2,-9,0,3,5.3962526,5.4568977,0,56,-3,56.65707,0,-9,-9,2019,16,5,7,8,1,5,0,3.1099336,3.1099336,1,0,0,0,0,1,1,0,0,0,48.58,39.74,43.44,40.89,8.333333333333334,1,1,0,0,13,7,2,1,838,3822310.5,0,3009826,0,2265.7119 -16389,20172,36443,36442,-9,-9,1,1,77,0,2,0,2,2,-9,0,3,0,8.0185423,7.6474071,56,3,57.338959,0,3,3,2019,19,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,3.9503503,7.3681641,43.44,40.89,48.58,39.74,6.666666666666667,1,1,0,0,0,7,2,1,838,3822310.5,0,3009826,0,2265.7119 -16390,20173,36444,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.4463944,6.2522607,0,0,-1036.6769,0,3,3,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.078032,57.43,38.96,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,283,194224.69,178642.09,92829.773,0,1111.858 -16391,20174,36445,-9,36448,36447,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.46558,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 -16391,20174,36446,-9,36448,36447,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.2164,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 -16391,20174,36447,36448,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,8.3620348,7.7703509,0,8,0,38.05267,0,-9,-9,2019,10,1,40,40,1,1,0,8.8585567,8.8585567,0,0,0,0,0,1,1,0,7.0350294,0,47.66,52.33,54.2,57.49,5,4,2,0,0,8,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 -16391,20174,36448,36447,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.3855095,8.2310333,0,8,0,12.332624,0,2,2,2019,8,0,30,38,1,0,0,16.559057,16.559057,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.66,52.33,8.333333333333334,1,1,0,0,10,11,4,1,472.25,125453.44,61810.695,145334.2,80131.719,3545.6919 -16392,20175,36449,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,5.0070186,5.3418899,0,0,-947.11945,0,3,3,2019,30,11,0,0,3,11,0,0,0,1,0,0,0,0,1,1,0,0,5.1987925,19.01,22.64,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,852,543529.5,117359.42,0,0,1316.0724 -16393,20176,36450,36451,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9714532,7.9504786,5.3468342,4,3,42.263577,0,-9,-9,2019,21,8,41,37,1,8,0,7.9668202,7.9668202,0,0,0,0,0,0,0,0,0,5.7598972,42.61,57.34,54.2,57.49,6.666666666666667,1,1,0,0,11,4,4,1,1098.5,176202.59,10070.503,124708.64,23746.391,2868.3525 -16393,20176,36451,36450,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.170248,8.2610817,0,4,-3,-35.704865,0,3,3,2019,8,0,43,41,1,0,0,8.5802364,8.5802364,0,0,0,0,0,0,0,0,6.7902446,0,54.2,57.49,42.61,57.34,8.333333333333334,1,1,0,0,11,4,4,1,1098.5,176202.59,10070.503,124708.64,23746.391,2868.3525 -16394,20177,36452,-9,36454,36453,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.66711,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,0,446.66666,1219657.3,957553.31,504898.59,188485.48,3979.5173 -16394,20177,36453,36454,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.5154934,8.407073,0,14,-4,-38.846165,0,2,3,2019,5,1,40,24,1,1,0,15.109903,15.109903,0,0,0,0,14.5,1,1,0,0,0,55.36,41.04,52.48,30.4,8.333333333333334,1,1,0,0,6,1,4,0,446.66666,1219657.3,957553.31,504898.59,188485.48,3979.5173 -16394,20177,36454,36453,-9,-9,1,0,57,0,1,0,2,2,-9,1,2,8.2051916,8.1245022,0,14,4,-149.61894,0,3,-9,2019,9,0,42,37,1,0,0,9.2351866,9.2351866,0,0,0,0,27,1,1,0,0,0,52.48,30.4,55.36,41.04,5,1,1,0,0,7,1,4,0,446.66666,1219657.3,957553.31,504898.59,188485.48,3979.5173 -16395,20178,36455,-9,36458,36456,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.0107,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 -16395,20178,36456,36458,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.8027868,8.927803,0,7,0,14.29202,0,-9,-9,2019,11,0,46,38,1,0,0,17.031427,17.031427,0,0,0,0,0,1,1,0,.55778235,0,51.83,57.2,59.43,49.68,6.666666666666667,1,1,0,0,8,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 -16395,20178,36457,-9,36458,36456,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.84424,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 -16395,20178,36458,36456,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,7.6366515,7.8709679,0,7,0,-244.51132,0,3,3,2019,6,0,23,22,1,0,0,10.355351,10.355351,0,0,0,0,0,1,1,0,0,0,59.43,49.68,51.83,57.2,1.666666666666667,1,1,0,0,8,12,4,1,447.25,81140.891,0,229440.72,204249.94,2849.1675 -16396,20179,36459,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3390961,8.2459736,0,0,0,-862.39874,0,-9,-9,2019,9,0,40,39,1,0,0,10.699532,10.699532,0,0,0,0,2,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,1,4,1,429,409845.44,249894.03,41671.301,0,1841.4692 -16396,20180,36460,-9,36459,-9,1,0,22,0,0,0,1,1,-9,0,3,8.0127249,7.700438,0,0,0,-1057.3638,0,2,-9,2019,10,1,37,45,1,1,1,6.8149705,6.8149705,0,0,0,0,0,1,1,0,1.0846961,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,6,1,3,1,89,0,0,0,0,874.58386 -16397,20181,36461,-9,36463,36462,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.59985,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,764,-12310.998,29180.186,0,0,1822.6846 -16397,20181,36462,36463,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.0448399,8.0015717,0,4,2,183.28073,0,3,3,2019,6,0,37,41,1,0,0,12.969246,12.969246,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,764,-12310.998,29180.186,0,0,1822.6846 -16397,20181,36463,36462,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,6.8012395,6.5436587,0,4,-2,-82.495438,0,3,3,2019,11,0,84,84,1,0,0,1.0393943,1.0393943,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,7,11,3,1,764,-12310.998,29180.186,0,0,1822.6846 -16397,20182,36464,-9,36463,36462,1,1,20,0,1,0,2,2,-9,0,4,6.4468565,6.6285868,0,0,0,-922.77045,-9,2,2,2019,10,0,37,0,1,1,1,2.1519115,2.1519115,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,2,1,172,-41904.145,38427.902,0,0,471.64511 -16397,20183,36465,-9,36463,36462,1,0,18,0,1,0,2,2,1,0,4,6.8424797,7.0709853,0,0,0,-1005.6215,-9,2,2,2019,6,0,35,0,1,0,1,3.4399118,3.4399118,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,1451,176601.53,0,0,0,411.07733 -16398,20184,36466,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,0,0,0,0,-943.6601,0,2,1,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,56,-9,-9,8,1,1,1,0,1,11,1,0,671,-78433.938,0,0,0,1201.9733 -16399,20185,36467,36468,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.9586043,7.1392884,0,7,-8,.6588549,0,2,1,2019,6,0,30,15,1,0,0,5.2667913,5.2667913,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53,47,8.333333333333334,1,1,0,0,9,10,5,0,1786.5,1689049.5,1145595.5,395663.09,0,4478.5 -16399,20185,36468,36467,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,8.654563,8.8277884,0,7,8,-45.727863,0,3,2,2019,10,0,25,30,1,1,0,25.661989,25.661989,0,0,0,0,0,1,1,0,0,0,53,47,57.16,56.15,7,1,1,0,0,9,10,5,0,1786.5,1689049.5,1145595.5,395663.09,0,4478.5 -16400,20186,36469,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.8303761,7.7406244,0,0,-1039.5585,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.3563662,8.1033163,49.21,53.11,-9,-9,8.333333333333334,1,1,0,0,9,8,3,0,612,795108.13,368974.19,232888.33,0,3278.449 -16401,20187,36470,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.0032845,6.2181296,0,0,-898.92639,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,6.3409986,6.3060727,53.68,45.47,-9,-9,6.666666666666667,1,1,0,0,8,9,2,0,211,-8164.1528,100856.42,219093.88,0,401.93634 -16402,20188,36471,36472,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.3740482,8.5688972,0,4,3,81.801529,0,2,2,2019,12,0,42,42,1,0,0,13.502566,13.502566,0,0,0,0,0,1,1,0,0,0,46.91,43.09,45.48,52.14,6.666666666666667,1,1,0,0,5,2,4,1,800,152765.2,58284.688,38011.336,29492.828,3019.8252 -16402,20188,36472,36471,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,7.3415146,7.6569972,0,4,-3,40.276039,0,-9,-9,2019,16,5,34,39,1,5,0,4.7624912,4.7624912,0,0,0,0,0,1,1,0,7.5645413,0,45.48,52.14,46.91,43.09,8.333333333333334,1,1,0,0,3,2,4,1,800,152765.2,58284.688,38011.336,29492.828,3019.8252 -16402,20188,36473,-9,36472,36471,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.9388,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,800,152765.2,58284.688,38011.336,29492.828,3019.8252 -16403,20189,36474,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.1127377,4.707118,0,0,-1002.1241,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.10770123,4.3886032,49.27,56.95,-9,-9,1.666666666666667,1,1,0,0,2,6,2,0,331,207332.7,0,0,0,1015.0342 -16404,20190,36475,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.6607118,7.7387295,0,0,-1088.0304,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.6888833,7.7373991,56.58,39.02,-9,-9,10,1,1,0,0,0,1,3,1,299,104644.05,63122.027,257353.39,0,2768.8298 -16405,20191,36476,36478,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,7.9790244,7.8924661,0,4,1,81.697075,0,2,2,2019,13,2,41,44,1,2,0,7.5906157,7.5906157,0,0,0,0,0,1,1,0,0,0,33.49,64.26000000000001,34.95,49.98,8.333333333333334,1,1,0,0,8,9,4,1,409,251928.67,34802.617,296359.91,188457.13,2052.4155 -16405,20191,36477,-9,36478,36476,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.0974,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,409,251928.67,34802.617,296359.91,188457.13,2052.4155 -16405,20191,36478,36476,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.6867685,7.6858978,0,4,-1,-35.570915,0,-9,-9,2019,23,10,14,48,1,10,0,21.029573,21.029573,0,0,0,0,0,1,1,0,1.7149323,0,34.95,49.98,33.49,64.26000000000001,6.666666666666667,1,1,0,0,3,9,4,1,409,251928.67,34802.617,296359.91,188457.13,2052.4155 -16406,20192,36479,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-971.56622,0,3,3,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,13,2,1,1339,206849.28,0,0,0,214.76921 -16406,20193,36480,-9,-9,36479,1,0,23,0,0,0,2,2,-9,0,3,7.7449794,7.5764861,0,0,0,-913.42578,-9,2,2,2019,10,0,35,0,1,0,0,7.4606342,7.4606342,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,1712,44982.012,0,0,0,970.48499 -16407,20194,36481,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-875.80963,0,-9,3,2019,18,6,0,0,4,6,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,31.69,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,1297,128474.11,456983.53,0,0,2168.5691 -16408,20195,36482,36485,-9,-9,1,0,30,1,2,0,3,3,-9,0,4,0,0,0,4,-1,0,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50.54,62.09,7,4,4,0,0,0,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 -16408,20195,36483,-9,36482,36485,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4375,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,3,4,-9,0,0,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 -16408,20195,36484,-9,36482,36485,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.4065,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,3,4,-9,0,0,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 -16408,20195,36485,36482,-9,-9,1,1,31,1,2,0,1,1,-9,0,5,0,0,0,4,1,0,0,2,1,2019,3,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,48,56,10,3,4,1,1,1,6,1,0,316.75,21461.18,12848.283,0,0,1760.7982 -16409,20196,36486,36487,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.3378253,7.3041453,0,24,-4,62.61124,0,2,3,2019,21,9,32,32,1,9,0,5.4909277,5.4909277,0,0,0,0,0,1,1,0,0,0,34.04,54.63,46.05,53.32,3.333333333333333,2,3,0,1,11,4,4,0,950,175406.38,140902.23,95805.398,49770.105,2646.293 -16409,20196,36487,36486,-9,36490,1,1,49,0,0,0,1,1,-9,0,4,8.6310225,8.5921469,0,24,4,-6.0227542,0,2,2,2019,14,2,42,37,1,2,0,10.882407,10.882407,0,0,0,0,0,1,1,0,0,0,46.05,53.32,34.04,54.63,10,2,3,0,0,12,4,4,0,950,175406.38,140902.23,95805.398,49770.105,2646.293 -16409,20197,36488,-9,36486,36487,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-931.84265,-9,2,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,2,4,1,0,186,185901.52,0,0,0,0 -16409,20198,36489,-9,36486,36487,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1002.1299,-9,2,1,2019,20,8,0,0,2,8,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,1,0,4,1,0,350,87510,0,0,0,690.08905 -16409,20199,36490,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,6.9896479,6.8397746,0,0,-911.14172,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6723723,7.0353332,52,47,-9,-9,7,2,3,0,0,0,4,2,0,63,357999.16,0,173304.2,0,2239.5823 -16410,20200,36491,-9,36492,36494,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.2374,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 -16410,20200,36492,36494,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,7.2662883,6.9218121,0,7,-6,-137.79346,0,2,-9,2019,14,2,21,15,1,2,0,6.4072704,6.4072704,0,0,0,0,0,1,1,0,0,0,51.83,57.2,44.83,55.13,8.333333333333334,1,1,0,0,7,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 -16410,20200,36493,-9,36492,36494,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.1707,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 -16410,20200,36494,36492,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,7.1114326,7.1896176,0,7,6,-45.873314,0,2,2,2019,12,0,40,40,1,0,0,3.9861994,3.9861994,0,0,0,0,0,1,1,0,0,0,44.83,55.13,51.83,57.2,6.666666666666667,1,1,0,0,10,10,2,0,464.25,42534.742,20699.668,0,0,1864.3411 -16411,20201,36495,36496,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.2680726,6.9001389,0,20,-2,45.051983,0,2,2,2019,6,0,20,16,1,0,0,7.1591487,7.1591487,0,0,0,0,14.5,0,0,0,0,0,59.31,49.81,57.33,53.46,8.333333333333334,1,1,0,0,10,12,4,0,769.5,139089.45,105995.58,287898.56,23275.877,2206.0945 -16411,20201,36496,36495,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5633926,8.529727,0,28,2,6.0066996,0,3,3,2019,7,0,49,47,1,0,0,10.628119,10.628119,0,0,0,0,0,0,0,0,0,0,57.33,53.46,59.31,49.81,8.333333333333334,1,1,0,0,7,12,4,0,769.5,139089.45,105995.58,287898.56,23275.877,2206.0945 -16412,20202,36497,36498,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.6921139,8.2983875,0,35,-4,113.77856,0,2,3,2019,9,3,39,40,1,3,0,15.345216,15.345216,0,0,0,0,2,1,1,0,2.8808577,0,47.2,21.53,41.62,52.55,10,1,1,0,0,9,10,5,1,442,354674.53,244947.38,0,0,3260.4844 -16412,20202,36498,36497,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.94907,7.9507728,0,6,4,-59.366745,0,3,2,2019,17,7,37,38,1,7,0,7.1834879,7.1834879,0,0,0,0,2,1,1,0,2.1835909,0,41.62,52.55,47.2,21.53,8.333333333333334,1,1,0,0,9,10,5,1,442,354674.53,244947.38,0,0,3260.4844 -16413,20203,36499,36500,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,9.0404844,9.0317135,0,6,-5,-1.9807522,0,2,2,2019,6,0,40,40,1,0,0,22.453182,22.453182,0,0,0,0,0,0,0,0,4.8275805,0,55.19,54.26,51.14,60.45,8.333333333333334,1,1,0,0,7,5,5,1,964.5,103688.05,215760.94,178485.03,51299.828,6736.2637 -16413,20203,36500,36499,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.9785013,9.0322723,0,6,5,-54.142479,0,2,2,2019,11,0,55,40,1,0,0,20.247202,20.247202,0,0,0,0,2,0,0,0,5.1578388,0,51.14,60.45,55.19,54.26,8.333333333333334,1,1,0,0,7,5,5,1,964.5,103688.05,215760.94,178485.03,51299.828,6736.2637 -16414,20204,36501,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,8.0611229,8.0835295,0,0,0,-957.13007,0,2,3,2019,25,12,41,43,1,12,0,9.6717834,9.6717834,0,0,0,0,0,1,1,0,0,0,38.36,43.7,-9,-9,1.666666666666667,1,1,0,0,12,2,3,1,920.33331,46727.828,156201.63,108872.72,98578.57,1736.6682 -16414,20204,36502,-9,36501,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.44745,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,920.33331,46727.828,156201.63,108872.72,98578.57,1736.6682 -16414,20204,36503,-9,36501,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.70557,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,920.33331,46727.828,156201.63,108872.72,98578.57,1736.6682 -16415,20205,36504,36505,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,10,4,0,-9,-9,-9,2019,20,9,0,0,3,9,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.73,47.64,46.2,23.88,5,1,1,0,1,0,4,1,0,437,47906.434,-77225.875,0,0,2028.9049 -16415,20205,36505,36504,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,10,-4,0,-9,-9,-9,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.2,23.88,35.73,47.64,5,1,1,0,0,0,4,1,0,437,47906.434,-77225.875,0,0,2028.9049 -16415,20206,36506,-9,36504,36505,1,1,36,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1151.6276,-9,3,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,0,4,1,0,207,0,0,0,0,151.14592 -16415,20207,36507,-9,36504,36505,1,0,40,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1057.1276,-9,3,3,2019,11,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,0,4,1,0,1627,0,0,0,0,300.06015 -16416,20208,36508,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.644043,9.4507427,0,0,0,-1000.7285,0,-9,-9,2019,10,0,50,50,1,1,0,30.946865,30.946865,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,1,1,0,0,12,8,5,1,139,252413.73,-72405.5,672408.13,271807.16,4325.5142 -16416,20209,36509,-9,-9,36508,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1023.0208,-9,-9,2,2019,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.42,56.24,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,565,-5558.4771,0,0,0,0 -16417,20210,36510,36511,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.9762034,7.1083813,0,41,-2,14.786249,0,3,3,2019,13,3,16,7,1,3,0,7.2139111,7.2139111,0,0,0,0,14.5,1,1,0,0,0,35.8,59.5,45.95,41.59,3.333333333333333,1,1,0,0,11,2,2,1,928.66669,1689866.5,568110.75,1039992,0,896.71509 -16417,20210,36511,36510,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,6.5158052,6.6511946,0,40,2,-24.593197,0,3,3,2019,10,0,50,45,1,0,0,1.8278469,1.8278469,0,0,0,0,0,1,1,0,0,0,45.95,41.59,35.8,59.5,3.333333333333333,1,1,0,1,11,2,2,1,928.66669,1689866.5,568110.75,1039992,0,896.71509 -16417,20210,36512,-9,36510,36511,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-986.09491,-9,2,3,2019,9,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,5,1,1,0,1,0,2,2,1,928.66669,1689866.5,568110.75,1039992,0,896.71509 -16418,20211,36513,36514,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2873859,8.5133696,0,9,13,-37.570992,0,2,2,2019,8,0,40,38,1,0,0,16.311367,16.311367,0,0,0,0,0,0,0,0,3.1772277,0,62.67,44.01,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,458,-373621.97,-19540.566,0,0,3512.4565 -16418,20211,36514,36513,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.5206881,8.6059809,0,9,-13,97.72773,0,2,1,2019,7,0,41,45,1,0,0,14.352731,14.352731,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.67,44.01,10,1,1,0,0,9,5,5,1,458,-373621.97,-19540.566,0,0,3512.4565 -16419,20212,36515,-9,-9,-9,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-948.43427,-9,3,3,2019,13,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,2,3,0,0,0,6,1,0,303,-168609.56,0,0,0,0 -16420,20213,36516,36517,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.5817432,6.8479595,53,-1,-62.025013,0,-9,-9,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,7,1,1,0,4.1087904,6.5394716,55.76,34.03,42.76,45.11,8.333333333333334,1,1,0,0,0,9,2,1,868,648840.13,301865.47,145824,0,1936.8435 -16420,20213,36517,36516,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.8970876,5.8550935,53,1,34.973812,0,-9,-9,2019,14,2,0,0,4,2,0,0,0,1,0,0,0,7,1,1,0,5.8235769,6.3168669,42.76,45.11,55.76,34.03,8.333333333333334,1,1,0,0,4,9,2,1,868,648840.13,301865.47,145824,0,1936.8435 -16421,20214,36518,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.8550911,7.7606406,0,0,0,-1000.6251,0,-9,-9,2019,21,8,38,30,1,8,0,7.9720397,7.9720397,0,0,0,0,0,0,0,0,0,0,38,44.52,-9,-9,5,2,3,0,0,4,8,3,0,652,45644.039,0,0,0,1212.6031 -16422,20215,36519,36520,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.4704332,7.3790374,0,26,-12,-31.78684,0,2,3,2019,20,7,19,20,1,7,0,10.588714,10.588714,0,0,0,0,7,1,1,0,2.1633663,0,45.33,51.14,53,47,3.333333333333333,1,1,0,0,11,5,2,1,450,424678.53,181161.31,122717.92,0,1502.0155 -16422,20215,36520,36519,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.4154401,4.1287203,26,12,-41.709518,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.147769,4.2566276,53,47,45.33,51.14,5,1,1,0,0,5,5,2,1,450,424678.53,181161.31,122717.92,0,1502.0155 -16423,20216,36521,-9,36522,36523,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-932.58038,-9,3,3,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.64,42.69,-9,-9,10,2,3,0,0,1,8,4,1,563.66669,771045.44,148483.16,403753.41,0,1944.8422 -16423,20216,36522,36523,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.5730133,7.5955501,0,33,1,78.446503,0,3,2,2019,13,2,25,27,1,2,0,8.232955,8.232955,0,0,0,0,0,1,1,0,0,0,58.08,40.76,50.28,51.35,3.333333333333333,2,3,0,0,9,8,4,1,563.66669,771045.44,148483.16,403753.41,0,1944.8422 -16423,20216,36523,36522,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.2905741,8.1313848,0,33,-1,-54.88171,0,3,2,2019,10,0,48,48,1,0,0,7.8699689,7.8699689,0,0,0,0,0,1,1,0,0,0,50.28,51.35,58.08,40.76,8.333333333333334,2,3,0,0,7,8,4,1,563.66669,771045.44,148483.16,403753.41,0,1944.8422 -16423,20217,36524,-9,36522,36523,1,0,25,0,0,0,2,2,-9,0,3,7.6482053,7.7382588,0,0,0,-958.9361,0,2,2,2019,11,2,43,30,1,2,1,6.3530297,6.3530297,0,0,0,0,0,1,1,0,0,0,46.97,47.21,-9,-9,1.666666666666667,2,3,0,0,5,8,3,1,1737,133361.69,142327.91,0,0,1310.0609 -16424,20218,36525,36526,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,44,0,24.931965,-9,3,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.3240672,0,39.42,60.24,47.83,54.78,5,1,1,0,0,9,9,2,1,863,3025939.5,161028.41,843750.25,0,2088.2146 -16424,20218,36526,36525,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.8840933,7.4056797,44,0,-4.4238873,-9,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.0401869,6.9093013,47.83,54.78,39.42,60.24,6.666666666666667,1,1,0,0,4,9,2,1,863,3025939.5,161028.41,843750.25,0,2088.2146 -16425,20219,36527,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0573082,7.8378367,0,0,0,-1029.1602,0,-9,-9,2019,6,1,37,37,1,1,0,8.9025116,8.9025116,0,0,0,0,0,0,0,0,0,0,54.98,44.8,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,2720,545970.69,29170.67,294609.78,19456.963,1539.7117 -16425,20220,36528,-9,36527,-9,1,0,27,0,0,0,1,1,-9,0,2,7.9785981,8.2018547,0,0,0,-1163.7009,0,2,-9,2019,29,12,44,0,1,12,1,10.163904,10.163904,0,0,0,0,0,0,0,0,0,0,21.11,58.49,-9,-9,3.333333333333333,3,4,0,0,4,2,4,1,120,79335.195,0,0,0,1569.1328 -16426,20221,36529,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.9636116,5.7707038,0,0,-991.53809,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.9774327,4.7061605,52.39,37.78,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,709,-381311.66,121751.23,0,0,-38.096462 -16427,20222,36530,-9,36531,36532,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-969.05664,0,2,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,7,1,1,325,289479.44,0,0,0,-682.97992 -16427,20223,36531,36532,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.5842109,7.9886351,6,4,45.541924,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,8.7339687,8.068305,57.16,56.15,45.36,41.63,8.333333333333334,1,1,0,0,4,7,4,1,1325.5,3567990,1272193,693963.63,0,5560.7354 -16427,20223,36532,36531,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.9709339,8.2788544,0,6,-4,43.254036,-9,-9,-9,2019,19,6,38,0,1,6,0,10.94652,10.94652,0,0,0,0,0,0,0,0,7.5138755,0,45.36,41.63,57.16,56.15,8.333333333333334,1,1,0,0,6,7,4,1,1325.5,3567990,1272193,693963.63,0,5560.7354 -16428,20224,36533,36534,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.2730427,7.3754163,0,9,-2,96.912315,0,2,3,2019,11,1,40,45,1,1,0,4.0678916,4.0678916,0,0,0,0,0,0,0,0,0,0,62.18,36.18,54.2,57.49,8.333333333333334,1,1,0,0,9,2,4,1,1296.5,269629.44,151375.28,132590.34,75046.672,2711.4473 -16428,20224,36534,36533,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4155941,8.4000616,0,9,2,-33.234436,0,3,2,2019,11,0,35,30,1,0,0,13.695798,13.695798,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.18,36.18,6.666666666666667,1,1,0,0,11,2,4,1,1296.5,269629.44,151375.28,132590.34,75046.672,2711.4473 -16429,20225,36535,-9,36536,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.06921,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,651.33331,949893.44,652906,276825.31,53042.309,2652.9595 -16429,20225,36536,36537,-9,-9,1,0,29,0,1,0,2,2,-9,0,4,7.9433026,7.9345598,0,1,-3,78.445618,-9,-9,-9,2019,19,7,30,0,1,7,0,8.8095541,8.8095541,0,0,0,0,0,1,1,0,2.3446183,0,40.24,53.28,39.42,57.44,8.333333333333334,1,1,0,0,3,7,4,0,651.33331,949893.44,652906,276825.31,53042.309,2652.9595 -16429,20225,36537,36536,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.2193823,7.9034653,0,1,3,-1.2758967,0,2,2,2019,9,0,38,37,1,0,0,14.360849,14.360849,0,0,0,0,0,1,1,0,0,0,39.42,57.44,40.24,53.28,6.666666666666667,1,1,0,0,9,7,4,0,651.33331,949893.44,652906,276825.31,53042.309,2652.9595 -16430,20226,36538,-9,36541,36539,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.9712,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 -16430,20226,36539,36541,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.0058527,8.8995447,0,12,1,-65.941673,0,1,1,2019,27,11,50,47,1,11,0,15.05699,15.05699,0,0,0,0,0,1,1,0,8.0838594,0,20.06,67.82000000000001,49.3,59.89,5,1,1,0,0,7,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 -16430,20226,36540,-9,36541,36539,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.54535,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 -16430,20226,36541,36539,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,0,0,0,12,-1,41.155064,0,2,2,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,8.822669,0,49.3,59.89,20.06,67.82000000000001,8.333333333333334,1,1,0,0,2,9,4,1,735.5,189363.88,156259.05,226628.16,108191.88,6374.0195 -16431,20227,36542,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.7795939,6.8206782,0,0,-993.91467,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.9678836,51.67,20.05,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,381,93284.266,111900.9,124994.12,0,1565.6632 -16432,20228,36543,36544,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8385072,7.9293089,0,36,1,13.456249,0,-9,2,2019,17,5,31,30,1,5,0,9.0368605,9.0368605,0,0,0,0,2,0,0,0,4.2827663,0,38.63,55.24,54.62,48,6.666666666666667,1,1,0,0,10,7,5,1,1076.5,625837.94,201134.63,408425.94,0,3884.3198 -16432,20228,36544,36543,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0039482,9.0436764,0,36,-1,16.453167,0,2,2,2019,11,0,35,45,1,0,0,21.970968,21.970968,0,0,0,0,0,0,0,0,4.1723232,0,54.62,48,38.63,55.24,8.333333333333334,1,1,0,0,12,7,5,1,1076.5,625837.94,201134.63,408425.94,0,3884.3198 -16433,20229,36545,36546,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.5767479,7.6508908,0,6,-3,-112.94019,0,2,2,2019,12,2,26,23,1,2,0,7.1308799,7.1308799,0,0,0,0,7,1,1,0,0,0,49.12,57.28,53,54,8.333333333333334,1,1,0,0,9,9,5,1,331,1158262,980847.38,245513.98,113224.86,4745.2993 -16433,20229,36546,36545,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.3943768,9.341773,0,6,3,-4.0619683,0,3,2,2019,9,0,45,50,1,1,0,33.353115,33.353115,0,0,0,0,0,1,1,0,0,0,53,54,49.12,57.28,8,1,1,0,0,1,9,5,1,331,1158262,980847.38,245513.98,113224.86,4745.2993 -16433,20230,36547,-9,36545,36546,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1042.3751,-9,2,1,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,512,-237349.59,0,0,0,0 -16434,20231,36548,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.7517538,4.9012771,0,0,-952.40363,0,3,3,2019,8,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.0672728,5.1354942,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,228,183251.77,79606.586,272715.59,0,576.01178 -16435,20232,36549,-9,-9,-9,1,0,50,0,2,0,1,1,-9,1,2,8.8501711,8.8543072,6.6241574,0,0,-910.98169,0,2,1,2019,25,8,38,42,1,8,0,24.701197,24.701197,0,0,0,0,27,1,1,0,7.4634442,0,29.11,46.53,-9,-9,1.666666666666667,1,1,0,0,9,6,5,1,620.66669,497384.5,33918.133,373896.22,143314.61,3372.999 -16435,20232,36550,-9,36549,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-870.83533,-9,1,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,5,1,620.66669,497384.5,33918.133,373896.22,143314.61,3372.999 -16435,20232,36551,-9,36549,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1069.6752,-9,1,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,5,1,620.66669,497384.5,33918.133,373896.22,143314.61,3372.999 -16436,20233,36552,36554,-9,-9,1,1,43,0,2,0,3,3,-9,0,2,8.0107164,8.0641289,0,6,6,76.472687,0,2,3,2019,26,12,60,60,1,12,0,6.8266859,6.8266859,0,0,0,0,0,1,1,0,0,0,36.82,37.4,49.76,56.93,8.333333333333334,1,1,0,1,6,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 -16436,20233,36553,-9,36554,36552,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.1179,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 -16436,20233,36554,36552,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.7815266,8.9191055,0,6,-6,-174.45305,0,2,1,2019,7,0,35,35,1,0,0,21.079082,21.079082,0,0,0,0,0,1,1,0,0,0,49.76,56.93,36.82,37.4,8.333333333333334,1,1,0,0,6,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 -16436,20233,36555,-9,36554,36552,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.97205,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,913,468410.31,12747.113,170101.97,126875.96,3102.1245 -16437,20234,36556,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.3599682,8.0883913,0,0,-909.78845,0,2,2,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1187177,8.083333,52.27,47.5,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,618,1015556.3,476588.91,199558.8,0,2580.4863 -16438,20235,36557,-9,36559,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.2863,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,818.66669,-15551.281,0,0,0,1063.8973 -16438,20235,36558,-9,36559,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.58624,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,818.66669,-15551.281,0,0,0,1063.8973 -16438,20235,36559,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,5,0,0,0,0,0,-1122.6799,0,-9,-9,2019,15,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,818.66669,-15551.281,0,0,0,1063.8973 -16439,20236,36560,-9,36562,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.90863,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,958,7476.0156,-9257.4775,0,0,2100.2712 -16439,20236,36561,-9,36562,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.759,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,958,7476.0156,-9257.4775,0,0,2100.2712 -16439,20236,36562,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.4870672,8.3937426,0,0,0,-1079.8546,0,2,2,2019,10,0,42,38,1,0,0,12.060543,12.060543,0,0,0,0,0,1,1,0,0,0,49.38,58.29,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,958,7476.0156,-9257.4775,0,0,2100.2712 -16440,20237,36563,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,6.6898117,6.6101818,0,0,0,-1069.6403,0,3,3,2019,0,0,16,16,1,0,0,5.6145802,5.6145802,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,5,3,4,0,0,6,6,2,0,458.5,369131.63,28792.863,175101.22,77090.813,1178.8784 -16440,20237,36564,-9,36563,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.06006,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,2,0,458.5,369131.63,28792.863,175101.22,77090.813,1178.8784 -16441,20238,36565,36566,-9,-9,1,1,88,0,0,0,1,1,-9,0,4,0,7.3249421,6.8189998,64,4,-7.5911126,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,4.9492264,7.1184421,58.06,46.15,50.8,50.97,8.333333333333334,1,1,0,0,0,6,2,1,1547,602942.13,37594.77,19384.785,0,2008.7208 -16441,20238,36566,36565,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,64,-4,58.051662,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4141254,0,50.8,50.97,58.06,46.15,8.333333333333334,1,1,0,0,0,6,2,1,1547,602942.13,37594.77,19384.785,0,2008.7208 -16442,20239,36567,36568,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.6340642,6.7174654,10,2,20.066799,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.4137434,7.2514133,54.55,49.25,48.92,37.32,6.666666666666667,1,1,0,0,11,11,5,1,266,3045936.5,2394495,334516.47,33526.422,6471.3965 -16442,20239,36568,36567,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,9.1104107,9.5611191,8.7844286,10,-2,-81.223839,0,2,2,2019,12,0,23,23,1,0,0,44.328831,44.328831,0,0,0,0,0,1,1,0,4.9466491,8.8632784,48.92,37.32,54.55,49.25,6.666666666666667,1,1,0,0,10,11,5,1,266,3045936.5,2394495,334516.47,33526.422,6471.3965 -16443,20240,36569,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3663487,7.6620026,6.12429,0,0,-827.19159,0,2,2,2019,11,0,19,17,1,0,0,8.9154177,8.9154177,0,0,0,0,0,1,1,0,6.2160497,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,111,759866.06,299793.69,155123.33,0,1990.2982 -16444,20241,36570,36571,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,8.4950714,8.9629345,7.6494613,6,8,50.996433,0,3,3,2019,8,0,30,35,1,0,0,19.184011,19.184011,0,0,0,0,0,1,1,0,6.7552567,7.4092026,57.58,36.13,41.85,52.41,0,1,1,0,0,11,8,5,1,370,898769.19,812411.5,0,0,4278.6602 -16444,20241,36571,36570,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,5.1348205,6.1575027,5.7242794,6,-8,.98040193,0,-9,-9,2019,10,0,21,21,1,0,0,1.0967432,1.0967432,0,0,0,0,0,1,1,0,7.9006877,5.4668255,41.85,52.41,57.58,36.13,8.333333333333334,1,1,0,0,11,8,5,1,370,898769.19,812411.5,0,0,4278.6602 -16445,20242,36572,36573,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.9329247,7.7058721,31,0,-98.458893,0,3,2,2019,8,0,0,0,4,0,0,0,0,1,4.7939487,0,40.927742,0,1,1,0,6.0773668,7.7624478,46.78,39.4,64,24.84,8.333333333333334,1,1,0,0,0,2,4,1,1128,1843479,1004664.8,451491.47,0,4284.4658 -16445,20242,36573,36572,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.0134888,7.997417,31,0,60.560406,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.606966,8.1190825,64,24.84,46.78,39.4,8.333333333333334,1,1,0,0,0,2,4,1,1128,1843479,1004664.8,451491.47,0,4284.4658 -16446,20243,36574,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.3864608,6.3067999,0,0,-1032.7906,0,3,2,2019,6,0,0,0,4,0,0,0,0,1,6.0360041,7.3711739,66.147575,0,1,1,0,0,6.5921421,56.14,17.24,-9,-9,10,1,1,0,0,0,5,2,0,265,118268.08,162266.63,192598.47,0,1488.7465 -16447,20244,36575,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1168.6119,0,3,3,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.39,43.37,-9,-9,5,1,1,0,0,7,11,1,1,778,-41280.047,0,0,0,814.35632 -16448,20245,36576,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.8826833,4.8276038,0,0,-1082.6456,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.8071256,4.7804055,50.51,42.98,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,605,57164.066,0,153871.3,0,678.13831 -16448,20246,36577,-9,36576,-9,1,0,56,0,0,0,3,3,-9,0,4,7.8515601,7.7227645,0,0,0,-1090.4998,0,2,-9,2019,9,0,38,37,1,0,0,6.9683876,6.9683876,0,0,0,0,0,1,1,0,0,0,47.02,48.51,-9,-9,10,1,1,0,0,5,2,3,1,494,193150.91,105325.26,0,0,1166.6611 -16449,20247,36578,36579,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,5.6452456,5.5675535,6,-3,114.85957,0,-9,-9,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.0054681,5.3163991,57.06,57.76,57.06,57.76,10,1,1,0,0,7,10,3,1,522,285454.06,157769.33,30259.232,0,2889.3506 -16449,20247,36579,36578,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,7.8976502,7.7945704,6,3,-67.900375,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9483409,57.06,57.76,57.06,57.76,10,1,1,0,0,0,10,3,1,522,285454.06,157769.33,30259.232,0,2889.3506 -16450,20248,36580,-9,36581,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.43811,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,651,103792.54,10937.136,0,0,1404.6143 -16450,20248,36581,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.668437,7.8060956,0,0,0,-991.57062,0,2,1,2019,12,0,30,16,1,0,0,9.6139402,9.6139402,0,0,0,0,0,1,1,0,0,0,27.74,56.23,-9,-9,3.333333333333333,1,1,0,0,8,2,3,0,651,103792.54,10937.136,0,0,1404.6143 -16450,20248,36582,-9,36581,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.8868,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,651,103792.54,10937.136,0,0,1404.6143 -16451,20249,36583,36584,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.337142,7.9796805,0,7,0,13.474517,0,2,3,2019,7,0,37,42,1,0,0,10.452447,10.452447,0,0,0,0,0,1,1,0,0,0,51.83,57.2,55.19,54.26,8.333333333333334,3,4,0,0,10,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 -16451,20249,36584,36583,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.8431263,8.6835308,0,7,0,-98.541435,0,2,2,2019,9,0,52,53,1,0,0,12.946662,12.946662,0,0,0,0,0,1,1,0,0,0,55.19,54.26,51.83,57.2,8.333333333333334,4,2,0,0,10,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 -16451,20249,36585,-9,36584,36583,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.8827,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 -16451,20249,36586,-9,36584,36583,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6716,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,1059.25,64945.07,131148,203344.58,144147.61,2515.2146 -16452,20250,36587,36588,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.6788864,6.4755788,11,6,-100.83339,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9624243,52.63,29.81,58.9,5.9,6.666666666666667,1,1,0,0,0,4,2,0,462,12836.898,10569.656,0,0,2012.6582 -16452,20250,36588,36587,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,4.5539322,5.0292907,11,-6,119.59972,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,133.40733,0,0,1,1,0,0,4.7607522,58.9,5.9,52.63,29.81,10,1,1,0,0,0,4,2,0,462,12836.898,10569.656,0,0,2012.6582 -16453,20251,36589,36590,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,8,4,0,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.1830497,0,53,46,51,46,8,1,1,0,0,0,9,1,1,643,170145.52,0,0,0,1577.4235 -16453,20251,36590,36589,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,54,-4,0,0,3,3,2019,11,0,0,0,4,1,0,0,0,1,26.710674,65.894768,252.62448,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,9,1,1,643,170145.52,0,0,0,1577.4235 -16454,20252,36591,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.0435743,7.2901793,0,0,-1092.8214,0,2,2,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,0,1,1,0,4.1602302,6.792326,34.98,46.66,-9,-9,5,1,1,0,0,0,11,3,1,884,523117.72,453388.84,118963.09,0,1431.9628 -16455,20253,36592,36593,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,11,3,0,0,3,3,2019,2,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.58,52.86,46.76,51.4,8.333333333333334,1,1,1,0,0,4,1,0,542.5,318655.81,0,0,0,702.28613 -16455,20253,36593,36592,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,11,-3,0,0,3,-9,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.76,51.4,41.58,52.86,6.666666666666667,1,1,1,0,0,4,1,0,542.5,318655.81,0,0,0,702.28613 -16455,20254,36594,-9,36593,36592,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-974.789,0,3,3,2019,16,2,0,0,3,2,1,0,0,0,0,0,0,0,1,0,1,0,0,38.52,55.01,-9,-9,3.333333333333333,1,1,1,0,0,4,1,0,477,-34271.754,0,0,0,351.27319 -16455,20255,36595,-9,36593,36592,1,1,34,0,0,0,2,2,-9,0,5,0,0,0,0,0,-927.70776,0,3,3,2019,15,4,0,0,3,4,1,0,0,0,0,0,0,0,1,0,1,0,0,52,60,-9,-9,6.666666666666667,1,1,1,0,0,4,1,0,393,0,0,0,0,285.74503 -16456,20256,36596,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.4039426,7.3950663,0,0,-1032.7996,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4560895,7.4136982,57.16,56.15,-9,-9,10,1,1,0,0,8,12,3,1,379,521459.69,212593.14,237872.73,0,1362.049 -16457,20257,36597,36598,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,0,0,0,22,0,-54.649574,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,3.206393,0,53,54,39.65,56.19,8,1,1,1,0,0,2,3,0,728,345460.31,231600.22,0,0,616.48059 -16457,20257,36598,36597,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5635738,7.3840613,0,21,9,-57.391342,0,3,3,2019,10,0,48,48,1,0,0,5.4475684,5.4475684,0,0,0,0,0,0,0,0,0,0,39.65,56.19,53,54,5,1,1,0,1,7,2,3,0,728,345460.31,231600.22,0,0,616.48059 -16458,20258,36599,36600,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,6.9692755,6.8952718,3.6763284,8,3,51.632866,0,-9,-9,2019,9,0,40,40,1,0,0,1.9430178,1.9430178,0,0,0,0,0,0,0,0,3.0749481,3.5330975,49.85,44.94,57.16,56.15,8.333333333333334,1,1,0,0,12,5,3,1,882.5,504294.44,189829.2,255950.81,0,1139.6372 -16458,20258,36600,36599,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.7415371,7.7474194,0,8,-3,-69.039009,0,3,3,2019,6,0,35,34,1,0,0,6.2968516,6.2968516,0,0,0,0,0,0,0,0,4.6127295,0,57.16,56.15,49.85,44.94,8.333333333333334,1,1,0,0,12,5,3,1,882.5,504294.44,189829.2,255950.81,0,1139.6372 -16459,20259,36601,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.6875916,8.5333481,0,14,-2,-23.972004,0,2,1,2019,19,7,45,-9,1,7,0,14.858777,14.858777,0,0,0,0,0,0,0,0,4.4202261,0,35.57,66.07000000000001,46.8,57.03,6.666666666666667,1,1,0,0,3,8,5,1,929,-204230.09,0,0,0,2088.636 -16459,20260,36602,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.7294388,10.035246,0,2,2,38.872227,0,-9,-9,2019,15,3,60,55,1,3,0,31.762445,31.762445,0,0,0,0,0,0,0,0,0,0,46.8,57.03,35.57,66.07000000000001,5,1,1,0,0,2,8,5,1,444,1667128.5,549513.19,633741.5,0,9094.8447 -16460,20261,36603,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.0283699,5.6951056,0,0,-994.85022,0,-9,-9,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,5.6694627,5.7331553,42.63,47.86,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,251,480150.88,48260.746,296928.38,0,992.08508 -16461,20262,36604,36605,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.7807307,7.4666724,29,-2,2.974853,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1913557,7.872807,57.16,56.15,62.39,56.71,10,1,1,0,0,0,7,3,1,1154.5,796232.5,412205.81,323283.28,0,2283.9717 -16461,20262,36605,36604,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,33,2,-30.019873,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.7885654,0,62.39,56.71,57.16,56.15,10,1,1,0,0,0,7,3,1,1154.5,796232.5,412205.81,323283.28,0,2283.9717 -16462,20263,36606,36607,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,36,-5,-150.7925,0,2,2,2019,11,0,0,20,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,60.95,50.33,38,6.666666666666667,1,1,0,0,9,10,3,1,602.33331,1067883.3,361907.19,359967.22,0,2214.0371 -16462,20263,36607,36606,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,6.9888577,7.7819581,6.7934546,36,5,-1.6559267,0,3,3,2019,13,2,30,30,1,2,0,4.829947,4.829947,0,0,0,0,0,1,1,0,6.6358209,0,50.33,38,37.34,60.95,8.333333333333334,1,1,0,0,10,10,3,1,602.33331,1067883.3,361907.19,359967.22,0,2214.0371 -16462,20263,36608,-9,36606,36607,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1070.965,-9,-9,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,10,3,1,602.33331,1067883.3,361907.19,359967.22,0,2214.0371 -16463,20264,36609,-9,36612,36611,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.7791,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 -16463,20264,36610,-9,36612,36611,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.4933,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 -16463,20264,36611,36612,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.2475548,7.4870887,0,14,0,-10.698229,0,2,2,2019,20,8,40,40,1,8,0,3.3050969,3.3050969,0,0,0,0,0,1,1,0,0,0,39.48,58.88,51.83,57.2,6.666666666666667,1,1,0,1,9,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 -16463,20264,36612,36611,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.7669864,7.5773315,0,8,0,-138.94365,0,-9,-9,2019,8,0,29,24,1,0,0,8.1990433,8.1990433,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.48,58.88,6.666666666666667,1,1,0,0,1,10,3,1,710.5,838921.81,558584.75,331599.19,19559.521,2172.875 -16464,20265,36613,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.7040863,8.8232098,0,0,0,-1073.6938,0,2,2,2019,6,0,38,38,1,0,0,19.992821,19.992821,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,8,7,5,0,421,-16409.26,36055.188,108659.63,67626.688,1891.4414 -16465,20266,36614,36615,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,7.3457375,7.4777603,4.370543,35,-7,17.885691,0,2,3,2019,9,0,27,27,1,0,0,9.3742924,9.3742924,0,0,0,0,0,1,1,0,0,4.7147751,46.9,56.66,57.16,56.15,5,1,1,0,0,9,9,5,0,586,1315565.5,1083694.1,499643.19,0,4846.8926 -16465,20266,36615,36614,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.5427914,9.0305862,7.1420341,35,7,-39.181602,0,3,3,2019,7,0,27,35,1,0,0,28.667858,28.667858,0,0,0,0,0,1,1,0,2.7142293,7.1124701,57.16,56.15,46.9,56.66,8.333333333333334,1,1,0,0,9,9,5,0,586,1315565.5,1083694.1,499643.19,0,4846.8926 -16466,20267,36616,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.8341432,5.4805446,0,0,-1018.4683,0,2,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,5.8379636,5.7540259,44.44,40.68,-9,-9,5,1,1,0,0,0,5,2,1,731,805293.25,248001.63,133409.03,0,-19.638483 -16467,20268,36617,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-975.95386,0,3,3,2019,7,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,69.13,21.32,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,752,-317127,0,0,0,1935.6445 -16468,20269,36618,36619,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,6.892086,6.8698807,0,42,-2,61.840729,0,3,3,2019,6,0,20,24,1,0,0,5.7005963,5.7005963,0,0,0,0,0,0,0,0,0,0,49.96,56.89,60.02,56.42,1.666666666666667,1,1,0,0,10,9,5,1,156.5,11663513,3110951.5,1302739.1,0,3832.0498 -16468,20269,36619,36618,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.8157654,9.4419842,7.2584324,42,2,-96.502121,0,3,3,2019,6,0,42,42,1,0,0,21.393812,21.393812,0,0,0,0,0,0,0,0,0,7.1177425,60.02,56.42,49.96,56.89,0,1,1,0,0,9,9,5,1,156.5,11663513,3110951.5,1302739.1,0,3832.0498 -16469,20270,36620,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.2626972,8.5568266,6.1405287,0,0,-1079.7205,0,2,1,2019,15,4,42,40,1,4,0,14.389931,14.389931,0,0,0,0,27,0,0,0,5.9427276,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,0,8,10,5,1,388,1572674.4,362051.22,400875.03,0,2445.9343 -16470,20271,36621,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.4806142,6.4005823,0,0,-891.16339,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5558949,57.27,54.82,-9,-9,10,1,1,0,0,0,12,2,0,264,203177,213959.33,109647.17,0,1394.5447 -16470,20272,36622,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-962.89569,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,.14358911,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1022,-207425.3,27745.123,99378.984,0,1193.7769 -16471,20273,36623,36624,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,7.8633008,7.8517823,6.5767045,31,0,97.72374,0,2,1,2019,6,0,25,25,1,0,0,15.018601,15.018601,0,0,0,0,0,0,0,0,0,6.2880173,54.69,57.47,62.39,56.71,8.333333333333334,1,1,0,0,7,9,3,1,923.5,1004056,185202.28,388909.19,0,1254.5299 -16471,20273,36624,36623,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,30,0,83.627975,0,2,2,2019,6,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,54.69,57.47,10,1,1,0,0,5,9,3,1,923.5,1004056,185202.28,388909.19,0,1254.5299 -16472,20274,36625,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,7.0228672,6.8040915,0,0,-987.85413,0,3,2,2019,16,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,0,6.9222436,42.35,30.78,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,332,276651.97,-22245.918,400363.72,0,1044.1084 -16473,20275,36626,36628,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,7.5049658,7.3419743,0,18,-3,119.88951,0,2,3,2019,13,1,20,18,1,1,0,13.128526,13.128526,0,0,0,0,0,1,1,0,2.0050433,0,47.49,55.02,54.2,57.49,8.333333333333334,1,1,0,0,8,6,3,1,978.66669,15546.43,71184.789,132601.3,65421.027,2644.0493 -16473,20275,36627,-9,36626,36628,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.163,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,978.66669,15546.43,71184.789,132601.3,65421.027,2644.0493 -16473,20275,36628,36626,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.0140772,8.2994394,0,18,3,65.868019,0,2,3,2019,11,1,26,25,1,1,0,12.904393,12.904393,0,0,0,0,0,1,1,0,2.9577181,0,54.2,57.49,47.49,55.02,8.333333333333334,1,1,0,0,10,6,3,1,978.66669,15546.43,71184.789,132601.3,65421.027,2644.0493 -16474,20276,36629,-9,36630,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.5923,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,0,328.5,333466.63,-15450.538,76416.406,92378.75,1018.0092 -16474,20276,36630,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,7.9994912,7.9639411,0,5,2,-44.431904,0,-9,-9,2019,16,4,40,40,1,4,0,9.9525681,9.9525681,0,0,0,0,0,1,1,0,0,0,30.58,56.37,44.58,28.35,6.666666666666667,1,1,0,0,6,6,5,0,328.5,333466.63,-15450.538,76416.406,92378.75,1018.0092 -16474,20277,36631,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.8837652,9.1811857,0,5,-2,4.8111734,0,-9,-9,2019,24,11,55,58,1,11,0,14.30653,14.30653,0,0,0,0,0,1,1,0,0,0,44.58,28.35,30.58,56.37,3.333333333333333,1,1,0,0,4,6,5,0,226,-156820.73,0,0,0,2268.6172 -16475,20278,36632,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,4,0,0,0,0,0,-985.67065,-9,3,3,2019,0,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.23,53.72,-9,-9,1.666666666666667,2,3,1,0,0,8,2,0,685,540256.63,0,0,0,1807.7239 -16476,20279,36633,36634,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,6.0640168,6.0974994,8,-21,53.25713,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,5.6393371,0,59.43,58.05,61.28,46.17,10,1,1,0,0,5,7,3,1,209,1135322.5,431910.56,197261.72,0,1785.4692 -16476,20279,36634,36633,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,7.5024614,7.5427079,0,8,21,18.582748,0,-9,-9,2019,6,0,12,10,1,0,0,16.758728,16.758728,0,0,0,0,0,1,1,0,4.6196594,0,61.28,46.17,59.43,58.05,8.333333333333334,1,1,0,0,11,7,3,1,209,1135322.5,431910.56,197261.72,0,1785.4692 -16477,20280,36635,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.6242733,8.1750441,5.1098652,0,0,-1160.6257,0,2,2,2019,6,0,37,38,1,0,0,17.925692,17.925692,0,0,0,0,0,1,1,0,1.8260598,5.3153367,53.87,53.44,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,252,988500.06,611464.13,212357.34,0,2173.614 -16478,20281,36636,36637,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,9.7457762,9.8316746,0,4,1,87.200813,0,-9,-9,2019,15,3,25,24,1,3,0,69.656273,69.656273,0,0,0,0,0,0,0,0,4.0175662,0,30.94,61.65,49.04,55.86,6.666666666666667,1,1,0,0,3,8,5,0,637,55546.648,17548.43,376111,276700.13,10524.201 -16478,20281,36637,36636,-9,-9,1,1,22,0,0,0,1,1,-9,0,3,8.1375809,8.2128801,0,4,-1,-139.77771,0,-9,-9,2019,8,0,45,41,1,0,0,8.5373783,8.5373783,0,0,0,0,0,0,0,0,0,0,49.04,55.86,30.94,61.65,8.333333333333334,1,1,0,0,7,8,5,0,637,55546.648,17548.43,376111,276700.13,10524.201 -16479,20282,36638,36639,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,31,-7,35.402256,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,71.5,1,1,0,0,0,40.97,32.79,42.08,17.49,5,1,1,0,0,0,2,2,0,2379,68824.188,0,0,0,1669.3409 -16479,20282,36639,36638,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,4.341804,4.3110466,31,7,13.417175,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,1,42.951427,34.124138,386.48547,0,1,1,0,0,4.5864511,42.08,17.49,40.97,32.79,6.666666666666667,1,1,0,0,0,2,2,0,2379,68824.188,0,0,0,1669.3409 -16480,20283,36640,36641,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.1430783,8.2146788,7.8071504,7,13,106.1756,0,2,3,2019,7,0,24,20,1,0,0,4.6693954,4.6693954,0,0,0,0,0,1,1,0,1.1190352,7.6395888,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,11,5,4,1,570,2123092.5,370321.63,559171.94,346909.53,3006.1548 -16480,20283,36641,36640,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.386435,7.4560041,0,7,-13,43.126541,0,-9,-9,2019,6,0,20,20,1,0,0,7.3165231,7.3165231,0,0,0,0,0,1,1,0,4.4755907,0,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,5,4,1,570,2123092.5,370321.63,559171.94,346909.53,3006.1548 -16481,20284,36642,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.4331307,7.4852033,0,0,-908.04688,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.6394458,7.266151,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,213,690570.56,488177.84,149146.94,0,3873.2844 -16482,20285,36643,36645,-9,-9,1,1,48,0,0,0,3,3,-9,1,4,0,0,0,6,2,-27.263844,0,-9,-9,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,55.44,52.99,8,2,3,0,0,0,6,3,1,497.33334,297376.38,0,365591.13,68575.234,2079.9658 -16482,20285,36644,-9,36645,36643,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-929.91162,-9,2,3,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,6,3,1,497.33334,297376.38,0,365591.13,68575.234,2079.9658 -16482,20285,36645,36643,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.908709,8.0128984,0,28,-2,-135.05818,0,3,-9,2019,9,0,34,34,1,0,0,7.7980471,7.7980471,0,0,0,0,71.5,1,1,0,0,0,55.44,52.99,53,54,6.666666666666667,2,3,0,0,8,6,3,1,497.33334,297376.38,0,365591.13,68575.234,2079.9658 -16482,20286,36646,36647,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,6,-8,-18.29701,0,-9,-9,2019,11,0,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,6.0176654,0,51,46,54,46,7,2,3,0,0,0,6,3,1,539,517615.94,720338.69,234683.06,0,3432.0713 -16482,20286,36647,36646,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,8.0784159,8.3361216,6,8,14.598729,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,1.228213,0,1,1,0,0,8.3635254,54,46,51,46,7,2,3,0,0,0,6,3,1,539,517615.94,720338.69,234683.06,0,3432.0713 -16482,20287,36648,-9,36645,36643,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1021.2347,0,2,3,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,6,1,1,328,0,0,0,0,0 -16483,20288,36649,-9,36650,36652,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-847.58783,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 -16483,20288,36650,36652,-9,-9,1,0,45,0,4,0,1,1,-9,0,5,5.3246303,5.5114784,0,8,5,30.494736,0,2,1,2019,6,0,18,0,1,0,0,1.5874455,1.5874455,0,0,0,0,0,1,1,0,3.4932702,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 -16483,20288,36651,-9,36650,36652,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.3078,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 -16483,20288,36652,36650,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,7.7658582,7.7803493,0,8,-5,56.663273,0,1,2,2019,6,0,50,55,1,0,0,5.8213592,5.8213592,0,0,0,0,0,1,1,0,2.947968,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 -16483,20288,36653,-9,36650,36652,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.5404,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 -16483,20288,36654,-9,36650,36652,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1131.6858,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,472.66666,314509.5,252716.25,157480.39,66948.516,1445.5967 -16484,20289,36655,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.4371953,7.6826854,0,0,-887.47156,0,-9,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.2518539,7.4762101,49.29,54.59,-9,-9,10,1,1,0,0,0,12,3,1,505,271626.69,195597.11,0,0,1410.429 -16485,20290,36656,36657,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,6,0,-79.462044,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.6663527,0,53,47,40.03,16.85,7,1,1,0,0,0,4,2,1,425.5,581200.63,229597.02,172648.38,0,2401.9072 -16485,20290,36657,36656,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,5.8192763,5.483789,48,0,33.908321,0,3,3,2019,23,11,0,0,4,11,0,0,0,1,0,0,0,5.48,1,1,0,0,5.2025533,40.03,16.85,53,47,3.333333333333333,1,1,0,0,5,4,2,1,425.5,581200.63,229597.02,172648.38,0,2401.9072 -16486,20291,36658,36659,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.4403296,7.9614902,0,39,0,0,0,3,3,2019,18,6,32,32,1,6,0,21.339005,21.339005,0,0,0,0,2,0,0,0,8.3418837,0,37.79,50.11,46.4,59.87,5,1,1,0,0,8,7,5,1,1435.5,602295.63,124822.14,594831.25,48727.688,5901.1743 -16486,20291,36659,36658,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.6041412,8.3539839,0,39,0,0,0,3,3,2019,10,2,43,43,1,2,0,14.12849,14.12849,0,0,0,0,0,0,0,0,8.5122824,0,46.4,59.87,37.79,50.11,6.666666666666667,1,1,0,0,7,7,5,1,1435.5,602295.63,124822.14,594831.25,48727.688,5901.1743 -16487,20292,36660,36661,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,0,0,0,2,-11,0,0,2,-9,2019,9,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,57.06,57.76,19.91,25.08,5,1,1,0,0,0,1,1,0,385,-33261.574,0,0,0,1391.9137 -16487,20292,36661,36660,-9,-9,1,1,36,0,0,0,2,2,-9,1,1,0,0,0,2,11,0,0,-9,-9,2019,27,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,19.91,25.08,57.06,57.76,1.666666666666667,1,1,0,1,0,1,1,0,385,-33261.574,0,0,0,1391.9137 -16488,20293,36662,36663,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.1621943,7.9798236,0,10,-1,-7.6112437,0,1,2,2019,16,6,38,40,1,6,0,8.0626717,8.0626717,0,0,0,0,0,0,0,0,0,0,46.16,58.62,44.35,61.13,6.666666666666667,1,1,0,0,10,12,5,0,307.5,-144075.34,-27595.91,119297.67,94836.07,3228.9346 -16488,20293,36663,36662,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.7580986,8.9808197,0,10,1,-184.98924,0,2,3,2019,10,2,41,37,1,2,0,18.616707,18.616707,0,0,0,0,0,0,0,0,6.0626516,0,44.35,61.13,46.16,58.62,10,1,1,0,0,8,12,5,0,307.5,-144075.34,-27595.91,119297.67,94836.07,3228.9346 -16489,20294,36664,36665,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,7.1752787,7.3606658,15,-8,27.801514,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,2.1401803,7.1639085,57.16,56.15,59.71,40.18,10,1,1,0,0,7,5,3,1,375.5,872289.5,457374.38,379658.09,0,3266.2305 -16489,20294,36665,36664,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.3458238,7.4279876,19,8,56.277924,0,2,1,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,6.8234844,7.0036058,59.71,40.18,57.16,56.15,10,1,1,0,0,0,5,3,1,375.5,872289.5,457374.38,379658.09,0,3266.2305 -16490,20295,36666,36667,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,20,11,-60.765438,0,3,3,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,3.5646131,0,56.92,49.39,60.12,54.8,8.333333333333334,1,1,0,0,0,7,3,1,1165,382974.06,-83458.859,325151,-9274.3496,1708.5927 -16490,20295,36667,36666,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.1878424,8.4916954,0,20,-11,7.47439,0,2,2,2019,6,0,48,47,1,0,0,9.9411583,9.9411583,0,0,0,0,0,0,0,0,0,0,60.12,54.8,56.92,49.39,8.333333333333334,1,1,0,0,9,7,3,1,1165,382974.06,-83458.859,325151,-9274.3496,1708.5927 -16491,20296,36668,36669,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.2097659,4.9571991,58,-3,37.41782,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,7.7488747,0,2,1,1,0,0,5.1525102,61.41,46.03,46.05,38.53,8.333333333333334,1,1,0,0,0,5,3,1,841,288522.56,289532.84,257073.03,0,3062.3252 -16491,20296,36669,36668,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,8.0263166,8.1413603,58,3,102.89852,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,8.2070322,46.05,38.53,61.41,46.03,8.333333333333334,1,1,0,0,0,5,3,1,841,288522.56,289532.84,257073.03,0,3062.3252 -16492,20297,36670,-9,36673,36672,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-930.82709,0,3,3,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,1,0,0,6,1,0,126,0,0,0,0,530.94556 -16492,20298,36671,-9,36673,36672,1,0,26,0,0,0,1,1,1,0,3,0,0,0,0,0,-1001.2455,-9,3,3,2019,6,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,53.1,52.62,-9,-9,5,2,3,1,0,0,6,1,0,412,204890.3,0,0,0,431.21219 -16492,20299,36672,36673,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,31,-4,0,0,3,3,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,0,1,1,0,0,0,37.56,35.77,39.35,35.33,5,2,3,0,0,0,6,1,0,278.5,0,0,0,0,380.1395 -16492,20299,36673,36672,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,31,4,0,0,3,3,2019,21,9,0,0,3,9,0,0,0,0,0,0,0,5.48,1,1,0,0,0,39.35,35.33,37.56,35.77,5,2,3,0,0,0,6,1,0,278.5,0,0,0,0,380.1395 -16492,20300,36674,-9,36673,36672,1,1,23,0,0,0,2,2,-9,0,4,8.1375904,7.9548664,0,0,0,-952.93365,0,3,3,2019,10,0,40,40,1,1,1,8.9840498,8.9840498,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,4,0,492,120063.95,0,0,0,2276.9146 -16492,20301,36675,-9,36673,36672,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1043.1808,-9,3,3,2019,0,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51,60,-9,-9,10,2,3,1,0,0,6,1,0,249,-111835.47,0,0,0,0 -16493,20302,36676,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-933.94086,0,3,-9,2019,32,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,28.71,18.35,-9,-9,1.666666666666667,1,1,0,1,0,12,1,0,955,120823.64,0,0,0,354.61856 -16494,20303,36677,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.1791878,8.4086933,6.801353,0,0,-967.12726,0,-9,-9,2019,15,4,39,28,1,4,0,11.343562,11.343562,0,0,0,0,0,1,1,0,6.7712064,0,29.77,32.8,-9,-9,3.333333333333333,1,1,0,1,7,5,3,1,842.33331,369593.41,68565.445,159270.38,0,2397.6106 -16494,20303,36678,-9,36677,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1089.9492,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,1,842.33331,369593.41,68565.445,159270.38,0,2397.6106 -16494,20303,36679,-9,36677,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.98584,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,842.33331,369593.41,68565.445,159270.38,0,2397.6106 -16495,20304,36680,36681,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,4.7531381,4.6213722,55,4,-53.12281,0,3,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,4.4688034,41.17,59.31,56.26,38.87,10,1,1,0,0,0,7,2,1,640,497928.94,64547.711,384265.06,0,828.00073 -16495,20304,36681,36680,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,-4,107.84908,0,-9,-9,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,56.26,38.87,41.17,59.31,6.666666666666667,1,1,0,0,0,7,2,1,640,497928.94,64547.711,384265.06,0,828.00073 -16496,20305,36682,36683,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,6,10,-.045645256,0,-9,-9,2019,0,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,.67807698,0,62.49,55.09,50,54,10,2,3,1,0,5,8,4,0,398,1202678.3,562884.5,566368.94,0,1915.301 -16496,20305,36683,36682,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.0201387,8.8573809,0,6,-10,-116.25497,0,-9,-9,2019,10,0,38,38,1,1,0,18.860519,18.860519,0,0,0,0,0,0,0,0,3.1081445,0,50,54,62.49,55.09,8,2,3,0,0,10,8,4,0,398,1202678.3,562884.5,566368.94,0,1915.301 -16497,20306,36684,-9,36686,36687,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.16235,-9,1,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 -16497,20306,36685,-9,36686,36687,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.1499,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 -16497,20306,36686,36687,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.8513179,7.6492167,0,9,0,-149.62756,0,2,2,2019,11,1,30,20,1,1,0,9.0879984,9.0879984,0,0,0,0,0,1,1,0,0,0,49.12,57.28,40.58,60.95,6.666666666666667,1,1,0,0,11,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 -16497,20306,36687,36686,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.6728592,8.4465075,0,9,0,81.050179,0,1,2,2019,12,0,8,38,1,0,0,72.175003,72.175003,0,0,0,0,0,1,1,0,0,0,40.58,60.95,49.12,57.28,5,1,1,0,0,10,6,4,1,466.75,241011.38,109103.33,141658.38,69021.969,3142.9126 -16498,20307,36688,36689,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.1626148,9.4724026,0,7,3,-8.440383,0,-9,-9,2019,10,0,37,36,1,1,0,37.459015,37.459015,0,0,0,0,0,0,0,0,0,0,51,48,57.16,56.15,7,1,1,0,0,1,11,5,1,696.5,1642008.9,1591188.8,96624.406,19842.238,4515.3428 -16498,20307,36689,36688,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.3141203,6.6493506,7,-3,-56.20742,0,3,3,2019,0,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,7.1915131,6.1650252,57.16,56.15,51,48,8.333333333333334,1,1,0,0,8,11,5,1,696.5,1642008.9,1591188.8,96624.406,19842.238,4515.3428 -16499,20308,36690,-9,36691,-9,1,0,25,0,0,0,1,1,-9,0,3,8.240262,8.3605413,0,0,0,-1058.8134,0,3,-9,2019,10,1,38,14,1,1,1,13.07603,13.07603,0,0,0,0,0,1,1,0,0,0,52.65,51.64,-9,-9,5,2,3,0,0,3,6,4,0,479,70269.328,-18934.498,0,0,2443.438 -16499,20309,36691,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1025.9275,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,2,3,0,0,0,6,1,0,751,-97353.258,0,0,0,1288.5259 -16499,20310,36692,-9,36691,-9,1,0,26,0,0,0,2,2,-9,0,3,7.4398804,7.3602991,0,0,0,-891.79926,0,3,-9,2019,13,1,30,30,1,1,1,6.3572221,6.3572221,0,0,0,0,0,1,1,0,0,0,52.79,51.64,-9,-9,6.666666666666667,2,3,0,0,6,6,3,0,169,-408349.44,0,0,0,1314.0966 -16499,20311,36693,-9,36691,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1099.1737,1,3,-9,2019,9,0,0,37,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,49.06,41.28,-9,-9,6.666666666666667,2,3,0,0,1,6,1,0,272,0,0,0,0,984.6709 -16499,20312,36694,-9,36691,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-869.17493,0,3,-9,2019,11,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,46.06,57.72,-9,-9,6.666666666666667,2,3,0,0,3,6,1,0,636,55811.602,0,0,0,-58.123199 -16500,20313,36695,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,8.8974037,8.6415377,0,0,0,-946.09045,0,3,3,2019,16,4,46,40,1,4,0,19.518456,19.518456,0,0,0,0,2,1,1,0,0,0,40.75,58.26,-9,-9,3.333333333333333,1,1,0,0,13,13,5,1,683,1386962.1,1144176.6,208232.31,79904.977,2525.8838 -16501,20314,36696,36697,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.205802,9.7026272,9.1832705,25,-2,-130.30974,0,2,2,2019,8,0,97,50,1,0,0,10.613718,10.613718,0,0,0,0,2,0,0,0,4.2985415,9.3894024,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,797,1305704.1,945277.25,126730.6,0,10160.279 -16501,20314,36697,36696,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.8264322,9.3949995,0,25,2,-35.511105,0,2,2,2019,9,0,35,40,1,0,0,29.396204,29.396204,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,797,1305704.1,945277.25,126730.6,0,10160.279 -16502,20315,36698,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-992.4613,0,3,3,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.71,25.06,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,193,-247301.22,0,0,0,1035.6254 -16503,20316,36699,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.5369687,7.5460234,5.4717116,0,0,-1059.4878,0,1,1,2019,28,11,30,30,1,11,0,7.7612972,7.7612972,0,0,0,0,0,1,0,1,6.2625475,0,17.83,67.65000000000001,-9,-9,1.666666666666667,1,1,0,1,7,4,3,0,915.5,-442744.09,2147.1914,0,0,1666.6505 -16503,20316,36700,-9,36699,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.96124,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,915.5,-442744.09,2147.1914,0,0,1666.6505 -16504,20317,36701,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.9428577,8.981699,0,0,-1034.3956,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.7343373,8.769968,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,12,5,1,1796,2382691.8,1245034.9,432695.94,0,5566.874 -16505,20318,36702,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1029.2528,0,3,3,2019,23,11,0,0,3,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,22.6,-9,-9,0,1,1,0,1,0,11,1,1,362,461735.78,0,0,0,891.48431 -16505,20319,36703,-9,36702,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1022.3412,0,1,-9,2019,28,10,0,0,3,10,1,0,0,0,0,0,0,120,1,1,0,0,0,14.9,56.69,-9,-9,3.333333333333333,1,1,1,1,0,11,2,1,268,-7016.1987,0,0,0,333.73987 -16506,20320,36704,36705,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5195036,8.7826319,0,7,-7,7.2503691,0,2,2,2019,11,0,55,45,1,0,0,15.412942,15.412942,0,0,0,0,0,0,0,0,4.5948858,0,48.49,51.79,11.1,60.35,8.333333333333334,1,1,0,0,8,2,5,1,422,88531.984,55137.117,94137.711,75111.523,3559.9929 -16506,20320,36705,36704,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,8.5442896,8.5212784,0,7,7,60.85656,0,-9,-9,2019,34,12,50,50,1,12,0,14.959322,14.959322,0,0,0,0,0,0,0,0,0,0,11.1,60.35,48.49,51.79,3.333333333333333,1,1,0,0,10,2,5,1,422,88531.984,55137.117,94137.711,75111.523,3559.9929 -16507,20321,36706,36707,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.0383291,8.6781664,7.6561999,7,8,15.928546,0,-9,-9,2019,12,1,50,60,1,1,0,6.7966237,6.7966237,0,0,0,0,0,0,0,0,7.5420194,7.5551424,57.16,56.15,48.61,38.4,8.333333333333334,1,1,0,0,9,11,4,1,267,1698990.5,1676308.8,118684.19,0,3190.6748 -16507,20321,36707,36706,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,7,-8,98.751617,0,3,2,2019,10,0,0,20,3,0,0,0,0,0,0,0,0,27,0,0,0,0,0,48.61,38.4,57.16,56.15,8.333333333333334,1,1,1,0,9,11,4,1,267,1698990.5,1676308.8,118684.19,0,3190.6748 -16508,20322,36708,36709,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.7596402,6.3198504,49,2,-80.027412,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.5145283,6.109323,57.33,53.46,32.88,63.12,6.666666666666667,1,1,0,0,4,9,2,1,562.5,642381.75,459725.53,193765.72,0,1657.9761 -16508,20322,36709,36708,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.1343465,6.2281775,49,-2,30.733841,0,3,3,2019,18,7,0,0,4,7,0,0,0,0,0,0,0,14.5,1,1,0,1.3605568,6.3906512,32.88,63.12,57.33,53.46,6.666666666666667,1,1,0,0,6,9,2,1,562.5,642381.75,459725.53,193765.72,0,1657.9761 -16509,20323,36710,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,0,0,0,0,-983.08569,0,3,2,2019,10,1,0,0,4,1,0,0,0,0,0,0,0,7,1,1,0,1.5472385,0,47.56,12.36,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,424,83296.883,0,0,0,968.37518 -16510,20324,36711,-9,-9,-9,1,0,35,0,3,0,1,1,-9,0,4,8.9240036,8.7025576,0,0,0,-990.18347,0,1,2,2019,10,0,37,37,1,0,0,22.537874,22.537874,0,0,0,0,0,1,1,0,0,0,51.99,48.84,-9,-9,6.666666666666667,3,4,0,0,10,8,4,0,347.33334,-162828.36,-54185.688,0,0,3776.1624 -16510,20324,36712,-9,36711,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.3446,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,0,347.33334,-162828.36,-54185.688,0,0,3776.1624 -16510,20324,36713,-9,36711,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.52106,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,0,347.33334,-162828.36,-54185.688,0,0,3776.1624 -16511,20325,36714,36716,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.4117169,7.1722631,0,3,0,131.983,0,-9,-9,2019,7,0,30,30,1,0,0,7.0838561,7.0838561,0,0,0,0,0,1,1,0,0,0,51.94,55.88,54.79,55.86,10,1,1,0,0,7,11,4,1,582.66669,-42874.363,44277.133,0,0,2891.4829 -16511,20325,36715,-9,36714,36716,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.38782,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,582.66669,-42874.363,44277.133,0,0,2891.4829 -16511,20325,36716,36714,-9,-9,1,1,25,1,1,0,2,2,-9,0,4,8.6258841,8.4405746,0,3,0,-16.591257,0,2,1,2019,7,0,36,38,1,0,0,15.13104,15.13104,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.94,55.88,8.333333333333334,1,1,0,0,8,11,4,1,582.66669,-42874.363,44277.133,0,0,2891.4829 -16512,20326,36717,36718,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.5720892,7.995966,0,44,0,-70.132225,-9,3,3,2019,10,0,30,0,1,1,0,8.4920549,8.4920549,0,0,0,0,0,0,0,0,5.6391358,0,51,48,61.26,38.16,7,1,1,0,0,1,13,4,1,802.5,-107325.85,307393.13,0,0,1701.1019 -16512,20326,36718,36717,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5757289,7.3256645,0,44,0,33.570274,0,3,3,2019,11,0,33,25,1,0,0,7.3295941,7.3295941,0,0,0,0,0,0,0,0,0,0,61.26,38.16,51,48,8.333333333333334,1,1,0,0,8,13,4,1,802.5,-107325.85,307393.13,0,0,1701.1019 -16513,20327,36719,36720,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1224375,7.9809451,0,6,13,123.51685,0,-9,-9,2019,10,0,40,45,1,1,0,11.007926,11.007926,0,0,0,0,0,0,0,0,2.7461305,0,52,47,59.43,58.05,7,1,1,0,0,1,5,3,1,1084.5,1202283.1,1148769.1,157738.92,0,1788.7924 -16513,20327,36720,36719,-9,-9,1,0,51,0,0,0,3,3,-9,0,5,0,0,0,32,-13,-19.954269,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,6.3178663,0,59.43,58.05,52,47,10,1,1,0,0,8,5,3,1,1084.5,1202283.1,1148769.1,157738.92,0,1788.7924 -16514,20328,36721,36722,-9,-9,1,1,51,0,1,0,1,1,-9,0,5,9.552597,9.5348091,0,27,2,-11.060167,0,1,1,2019,8,0,112,56,1,0,0,13.783165,13.783165,0,0,0,0,0,0,0,0,1.5628431,0,57.06,57.76,61.58,51.56,8.333333333333334,1,1,0,0,11,2,5,1,995,698034.94,333547.34,435862.13,133166.53,9190.4902 -16514,20328,36722,36721,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.1556473,8.0164576,0,27,-2,-120.17224,0,2,1,2019,6,0,29,22,1,0,0,15.010261,15.010261,0,0,0,0,0,0,0,0,0,0,61.58,51.56,57.06,57.76,10,1,1,0,0,10,2,5,1,995,698034.94,333547.34,435862.13,133166.53,9190.4902 -16514,20328,36723,-9,36722,36721,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-921.31842,-9,2,1,2019,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,2,5,1,995,698034.94,333547.34,435862.13,133166.53,9190.4902 -16515,20329,36724,36725,-9,-9,1,0,50,0,0,0,1,1,-9,1,4,0,0,0,31,1,0,0,2,2,2019,7,0,0,25,3,0,0,0,0,0,0,0,0,27,1,1,0,0,0,58.15,52.91,28.71,53.02,8.333333333333334,1,1,0,0,11,10,1,1,272,-46466.805,0,0,0,-854.03589 -16515,20329,36725,36724,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,31,-1,0,0,2,2,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,2,1,1,0,3.3447604,0,28.71,53.02,58.15,52.91,6.666666666666667,1,1,0,0,12,10,1,1,272,-46466.805,0,0,0,-854.03589 -16515,20330,36726,-9,36724,36725,1,0,22,0,0,0,1,1,0,0,4,0,0,0,0,0,-1074.6919,-9,1,2,2019,12,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,28.62,58.4,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,579,123184.76,0,0,0,-720.90045 -16515,20331,36727,-9,36724,36725,1,1,20,0,0,0,2,2,-9,0,4,7.5123296,7.7314329,0,0,0,-1041.7788,-9,1,2,2019,11,1,38,0,1,1,1,5.8121138,5.8121138,0,0,0,0,0,1,1,0,.16627662,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,1496,-86065.891,18380.326,0,0,939.98712 -16516,20332,36728,36729,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.7722979,6.4048653,51,0,-98.546684,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4088602,6.666543,58.32,50.22,64.40000000000001,42,10,1,1,0,0,0,9,4,1,1542.5,1707447.4,48398.797,1507384.8,0,3872.8176 -16516,20332,36729,36728,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.5399866,8.7828188,51,0,-136.68405,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.4170868,8.6199646,64.40000000000001,42,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,1542.5,1707447.4,48398.797,1507384.8,0,3872.8176 -16517,20333,36730,-9,-9,36732,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-983.88477,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 -16517,20333,36731,-9,-9,36732,1,1,16,0,4,1,2,0,-9,0,5,0,0,0,0,0,-1099.38,-9,-9,2,2019,3,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,5.2212601,0,63.38,53.47,-9,-9,10,1,1,0,0,0,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 -16517,20333,36732,-9,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,8.1829233,8.0551786,0,0,0,-1029.8075,0,2,2,2019,32,12,37,37,1,12,0,10.653001,10.653001,0,0,0,0,0,1,1,0,6.643353,0,27.25,56.6,-9,-9,5,1,1,0,0,7,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 -16517,20333,36733,-9,-9,36732,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-941.28613,-9,-9,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,259.75,240625.64,-12913.093,109295.03,9941.4658,1697.5618 -16518,20334,36734,-9,-9,-9,1,0,66,0,0,0,3,3,-9,1,3,6.1256733,6.2008381,3.8315279,0,0,-976.26141,0,3,3,2019,6,0,12,8,1,0,0,4.088275,4.088275,1,0,1.1711818,0,2,1,1,0,0,3.9966798,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,175,236554.72,0,85473.461,0,2017.2321 -16519,20335,36735,36736,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.8479033,5.8122172,63,3,-29.269924,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,.96428424,0,0,1,1,0,0,6.4682517,52.35,44.66,56.01,22.23,8.333333333333334,1,1,0,0,0,9,2,0,1127,490424.25,-3673.3887,272250,0,1824.9753 -16519,20335,36736,36735,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,60,-3,-27.064644,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,0,.4695712,0,0,1,1,0,1.0661924,0,56.01,22.23,52.35,44.66,6.666666666666667,1,1,0,0,0,9,2,0,1127,490424.25,-3673.3887,272250,0,1824.9753 -16520,20336,36737,36738,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,0,0,0,7,-2,-67.09848,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.61,48.39,1.666666666666667,1,1,0,0,6,5,4,1,397.33334,184575.97,40057.406,326379.19,165766.14,2703.9709 -16520,20336,36738,36737,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,8.8460398,8.921402,0,7,2,-87.171837,0,2,3,2019,9,1,42,42,1,1,0,22.915501,22.915501,0,0,0,0,0,0,0,0,0,0,53.61,48.39,57.16,56.15,8.333333333333334,1,1,0,0,7,5,4,1,397.33334,184575.97,40057.406,326379.19,165766.14,2703.9709 -16520,20336,36739,-9,36737,36738,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-870.36188,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,397.33334,184575.97,40057.406,326379.19,165766.14,2703.9709 -16521,20337,36740,36742,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,7.4263301,7.2275643,0,30,1,44.86142,0,3,2,2019,9,2,28,36,1,2,0,6.7422471,6.7422471,0,0,0,0,0,0,0,0,0,0,62,52.77,20.72,52,5,1,1,0,0,4,9,2,1,956,371335.06,-9442.5703,217441.97,0,-1034.4547 -16521,20337,36741,-9,36740,36742,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-942.55634,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.23,54.06,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,956,371335.06,-9442.5703,217441.97,0,-1034.4547 -16521,20337,36742,36740,-9,-9,1,1,51,0,1,0,2,2,-9,1,1,0,0,0,30,-1,-99.719719,0,2,2,2019,26,11,0,48,3,11,0,0,0,0,0,0,0,0,0,0,0,3.5648899,0,20.72,52,62,52.77,1.666666666666667,1,1,0,0,12,9,2,1,956,371335.06,-9442.5703,217441.97,0,-1034.4547 -16521,20338,36743,-9,36740,36742,1,1,22,0,1,0,2,2,-9,0,2,0,0,0,0,0,-922.73334,0,2,2,2019,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,46.55,42.57,-9,-9,5,1,1,1,0,0,9,1,1,711,185126.22,0,0,0,0 -16521,20339,36744,-9,36740,36742,1,1,19,0,1,0,2,2,-9,0,3,8.4605713,8.6320057,0,0,0,-997.50507,0,2,2,2019,6,1,38,38,1,1,1,12.647455,12.647455,0,0,0,0,0,0,0,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,3,9,4,1,874,-363798.94,-133465.92,0,0,1196.5879 -16522,20340,36745,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-938.35846,0,-9,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,33.82,42.48,-9,-9,0,1,1,0,1,0,6,1,0,429,0,0,0,0,503.98315 -16523,20341,36746,36748,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.0170717,8.0776262,0,6,-7,52.321972,0,2,2,2019,6,0,31,31,1,0,0,14.653295,14.653295,0,0,0,.32701722,0,1,1,0,0,0,52.02,57.3,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 -16523,20341,36747,-9,36746,36748,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.54175,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 -16523,20341,36748,36746,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,9.0481253,8.9004755,0,6,7,-129.84868,0,2,1,2019,15,3,39,39,1,3,0,25.562241,25.562241,0,0,0,0,0,1,1,0,2.0038931,0,51.14,60.45,52.02,57.3,6.666666666666667,1,1,0,0,6,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 -16523,20341,36749,-9,36746,36748,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.84418,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,569,1703302.4,1101540.5,464356.78,0,4027.7739 -16524,20342,36750,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-997.6814,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,0,0,59.46,30.92,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,633,-467187.88,0,0,0,1152.7046 -16525,20343,36751,36752,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.091938,9.1023064,0,7,4,73.670616,0,-9,-9,2019,9,0,38,43,1,0,0,26.149683,26.149683,0,0,0,0,0,0,0,0,2.8389881,0,55.76,52.64,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,1182,146776.56,-20743.822,0,0,4206.7319 -16525,20343,36752,36751,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.2317123,8.3396883,0,7,-4,-14.201974,0,-9,-9,2019,7,0,40,40,1,0,0,9.2950869,9.2950869,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.76,52.64,8.333333333333334,1,1,0,0,8,12,5,1,1182,146776.56,-20743.822,0,0,4206.7319 -16526,20344,36753,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,5.4157152,5.3718281,0,0,-927.35205,0,-9,2,2019,16,4,0,0,4,4,0,0,0,1,2.6362302,3.3567729,22.5156,0,1,1,0,.33422461,5.6809278,47.72,20.37,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,1250,-129938.26,25803.977,0,0,1515.8409 -16527,20345,36754,36756,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,9.7254829,9.6649017,0,25,0,-12.913312,0,2,1,2019,10,2,47,50,1,2,0,48.394905,48.394905,0,0,0,0,2,1,1,0,4.2678246,0,58.7,46.46,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,506,238502.59,73967,287418.22,98917.711,9062.1006 -16527,20345,36755,-9,36756,36754,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.4949,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,506,238502.59,73967,287418.22,98917.711,9062.1006 -16527,20345,36756,36754,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,5.768229,5.9381275,0,7,0,20.931858,0,-9,-9,2019,9,0,15,20,1,0,0,2.9723418,2.9723418,0,0,0,0,0,1,1,0,8.5766048,0,57.16,56.15,58.7,46.46,8.333333333333334,1,1,0,0,5,8,5,1,506,238502.59,73967,287418.22,98917.711,9062.1006 -16527,20346,36757,-9,36756,36754,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1044.2036,-9,1,1,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.94660598,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,1813,0,0,0,0,-435.86166 -16528,20347,36758,36759,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.8211622,9.6639328,0,7,4,98.968788,0,3,2,2019,10,0,39,38,1,0,0,52.185635,52.185635,0,0,0,0,0,0,0,0,5.7637572,0,54.79,55.86,44.61,59.06,8.333333333333334,1,1,0,0,10,12,5,1,341.5,3296005.5,3078254,261127.92,0,5709.9229 -16528,20347,36759,36758,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.7544146,8.9025431,0,7,-4,108.10861,0,2,2,2019,11,0,39,38,1,0,0,24.911907,24.911907,0,0,0,0,0,0,0,0,5.2484059,0,44.61,59.06,54.79,55.86,8.333333333333334,1,1,0,0,10,12,5,1,341.5,3296005.5,3078254,261127.92,0,5709.9229 -16529,20348,36760,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.6228957,7.893312,0,0,-1087.7638,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.1678619,7.6077361,55,45,-9,-9,8,1,1,0,0,0,13,3,1,413,-134376.66,30005.178,0,0,1777.4656 -16529,20349,36761,-9,-9,36760,1,1,57,0,0,0,1,1,-9,0,2,0,7.3636527,7.7465405,0,0,-843.94012,0,-9,1,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,2.451627,7.1342607,40.81,42.08,-9,-9,3.333333333333333,1,1,1,0,0,13,3,1,151,377873.13,-3334.2346,283473.88,0,619.71259 -16530,20350,36762,36763,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,7.9104095,7.8640919,4.645493,45,0,-23.374973,0,3,3,2019,8,1,39,40,1,1,0,10.216167,10.216167,0,0,0,0,0,1,1,0,5.1615825,4.9374719,49.2,47.5,59.76,32.12,8.333333333333334,1,1,0,0,12,13,3,1,801.5,1396663,693354.25,323585.44,0,2801.0811 -16530,20350,36763,36762,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,0,-19.325422,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.76,32.12,49.2,47.5,8.333333333333334,1,1,0,0,7,13,3,1,801.5,1396663,693354.25,323585.44,0,2801.0811 -16531,20351,36764,36765,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.6479983,6.2230988,9,1,-39.096043,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.3855491,6.8537946,57.16,56.15,50.16,43.55,8.333333333333334,1,1,0,0,8,5,3,1,372.5,350277.47,216916.14,224965.52,104505.47,3134.3125 -16531,20351,36765,36764,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.8209605,7.8264589,48,-1,-82.380127,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1573515,7.8289642,50.16,43.55,57.16,56.15,5,1,1,0,0,10,5,3,1,372.5,350277.47,216916.14,224965.52,104505.47,3134.3125 -16532,20352,36766,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-910.73029,0,3,3,2019,21,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,0,0,33.88,34.89,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,219,327875.97,186548.42,0,0,649.71698 -16533,20353,36767,-9,36768,36770,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.8948,-9,3,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 -16533,20353,36768,36770,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,27,0,0,0,-9,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,42,1,1,0,0,0,51,54,53,55,8,2,3,1,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 -16533,20353,36769,-9,36768,36770,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.79663,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 -16533,20353,36770,36768,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,27,0,0,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,2,3,1,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 -16533,20353,36771,-9,36768,36770,1,0,17,0,2,0,3,3,-9,1,4,0,0,0,0,0,-973.29431,0,3,3,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,2,0,862.40002,303927.09,420653.22,214763.84,126681.63,3249.7227 -16533,20354,36772,-9,36768,36770,1,1,22,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1016.2166,0,2,2,2019,10,0,0,0,3,1,1,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,281,-12596.12,0,0,0,-164.45764 -16534,20355,36773,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.6985116,6.6074662,0,0,-1119.2538,0,-9,-9,2019,36,12,0,0,4,12,0,0,0,1,0,6.9069347,0,0,1,1,0,0,6.7477169,36.25,17.47,-9,-9,1.666666666666667,3,4,0,1,1,8,2,0,433,831792.5,0,170369.25,0,1606.7687 -16534,20356,36774,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.0771465,6.56566,0,0,-865.44208,0,-9,1,2019,13,3,0,0,4,3,0,0,0,1,0,15.566072,0,0,1,1,0,0,6.0871224,40.68,39.82,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,473,-121762.91,0,0,0,368.18927 -16535,20357,36775,-9,36778,36777,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.05841,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 -16535,20357,36776,-9,36778,36777,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.93994,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 -16535,20357,36777,36778,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.3915834,8.4752722,0,6,7,163.38255,0,3,3,2019,6,0,45,45,1,0,0,9.4168539,9.4168539,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.49,55.09,10,1,1,0,0,7,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 -16535,20357,36778,36777,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.9622164,7.6098728,0,6,-7,30.891151,0,3,2,2019,4,0,35,35,1,0,0,8.3378487,8.3378487,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,10,1,1,0,0,7,2,4,0,379.75,207616.73,42471.367,135943.66,0,2819.8901 -16536,20358,36779,36780,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.8932638,8.808938,0,5,3,-39.814209,0,-9,-9,2019,9,1,55,55,1,1,0,15.810638,15.810638,0,0,0,0,0,0,0,0,7.2340407,0,54.96,53.17,49.52,55.68,8.333333333333334,1,1,0,0,5,8,5,0,329,524361.13,57618.559,429236.13,298934.84,5727.6694 -16536,20358,36780,36779,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.18186,9.129652,0,5,-3,-90.477341,0,-9,-9,2019,12,0,80,43,1,0,0,11.295179,11.295179,0,0,0,0,0,0,0,0,0,0,49.52,55.68,54.96,53.17,8.333333333333334,1,1,0,0,9,8,5,0,329,524361.13,57618.559,429236.13,298934.84,5727.6694 -16537,20359,36781,36782,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,6.9552708,7.1114926,51,2,-10.586874,0,3,1,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,6.9939446,53,46,51,46,8,2,3,0,0,7,4,3,1,1002.5,54850.313,158729.67,130872.13,36645.563,2467.6587 -16537,20359,36782,36781,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.721417,7.209517,51,-2,-72.053673,0,2,2,2019,10,0,0,0,4,1,0,0,0,1,0,0,0,120,1,1,0,0,6.7927003,51,46,53,46,8,1,1,0,0,0,4,3,1,1002.5,54850.313,158729.67,130872.13,36645.563,2467.6587 -16538,20360,36783,-9,36785,36784,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.8074,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,543.66669,392607.88,295181.66,0,0,4170.9116 -16538,20360,36784,36785,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.6644678,8.5283737,0,7,4,-120.9212,0,-9,-9,2019,9,0,38,37,1,0,0,19.037058,19.037058,0,0,0,0,0,1,1,0,.38173312,0,51.83,57.2,44.02,60.7,8.333333333333334,1,1,0,0,7,10,5,1,543.66669,392607.88,295181.66,0,0,4170.9116 -16538,20360,36785,36784,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.783618,8.6204529,0,7,-4,-42.405922,0,2,2,2019,18,7,26,0,1,7,0,21.113899,21.113899,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.83,57.2,8.333333333333334,1,1,0,0,8,10,5,1,543.66669,392607.88,295181.66,0,0,4170.9116 -16539,20361,36786,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,4.9359798,4.7682724,0,0,-929.47333,0,-9,-9,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,5.1450162,5.0585284,56.83,21.19,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,2281,571222.88,171116.14,479810.28,0,792.90649 -16540,20362,36787,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.5753317,7.9819927,7.2953782,0,0,-1053.2816,0,2,2,2019,11,0,15,11,1,0,0,6.68821,6.68821,0,0,0,0,0,0,0,0,0,7.5512443,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,9,4,0,736,844620.63,417852.41,285521,0,1238.5289 -16541,20363,36788,-9,36789,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1108.4196,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,672.5,352072.31,0,0,0,2506.3945 -16541,20363,36789,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.7983842,7.8959947,0,0,0,-867.40436,0,2,-9,2019,20,8,40,35,1,8,0,7.038054,7.038054,0,0,0,0,0,1,1,0,0,0,46.39,29.02,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,672.5,352072.31,0,0,0,2506.3945 -16542,20364,36790,36791,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.506691,5.6335549,52,5,-18.370968,0,-9,-9,2019,17,5,0,0,4,5,0,0,0,0,0,0,0,0,1,1,0,5.2218828,5.7544708,41.99,44.26,56.35,51.16,3.333333333333333,1,1,0,0,7,12,2,1,1680.5,373974.81,16297.213,0,0,2121.6577 -16542,20364,36791,36790,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.2757812,5.0937405,52,-5,-94.373947,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0697513,5.3578753,56.35,51.16,41.99,44.26,8.333333333333334,1,1,0,0,6,12,2,1,1680.5,373974.81,16297.213,0,0,2121.6577 -16543,20365,36792,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.6218948,10.153188,0,0,0,-1061.7972,0,2,2,2019,2,0,60,0,1,0,0,28.492615,28.492615,0,0,0,0,0,0,0,0,4.7934318,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,8,5,1,823,730128.5,385686.53,147165,147620.13,8568.001 -16544,20366,36793,36795,-9,-9,1,1,22,1,1,0,2,2,-9,0,5,8.5210247,8.7464294,0,4,0,50.109238,0,-9,-9,2019,7,0,55,58,1,0,0,14.200283,14.200283,0,0,0,0,0,1,1,0,0,0,51.14,60.45,48.18,61.8,8.333333333333334,1,1,0,0,3,4,5,1,474.66666,145004.28,24885.762,133108.13,129163,3302.2466 -16544,20366,36794,-9,36795,36793,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1080.9617,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,474.66666,145004.28,24885.762,133108.13,129163,3302.2466 -16544,20366,36795,36793,-9,-9,1,0,22,1,1,0,2,2,-9,0,5,7.7946272,7.8858194,0,4,0,15.299569,0,2,-9,2019,12,2,18,24,1,2,0,13.243638,13.243638,0,0,0,0,0,1,1,0,0,0,48.18,61.8,51.14,60.45,8.333333333333334,1,1,0,0,6,4,5,1,474.66666,145004.28,24885.762,133108.13,129163,3302.2466 -16545,20367,36796,36798,-9,-9,1,1,27,1,1,0,1,1,-9,0,5,7.7486668,7.8881202,0,4,0,136.8129,0,2,3,2019,8,0,37,38,1,0,0,9.7520494,9.7520494,0,0,0,0,0,1,1,0,1.6369932,0,54.1,59.11,55.79,52.62,8.333333333333334,1,1,0,0,7,6,4,0,1548.6666,189366.69,121764.73,145293.25,111631.87,2774.3584 -16545,20367,36797,-9,36798,36796,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-918.47937,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,1548.6666,189366.69,121764.73,145293.25,111631.87,2774.3584 -16545,20367,36798,36796,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.9537172,7.8022809,0,4,0,-145.20302,0,-9,-9,2019,10,1,40,36,1,1,0,9.4404459,9.4404459,0,0,0,0,0,1,1,0,1.8899401,0,55.79,52.62,54.1,59.11,10,1,1,0,0,8,6,4,0,1548.6666,189366.69,121764.73,145293.25,111631.87,2774.3584 -16546,20368,36799,36800,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.6158056,8.5205574,0,3,-6,-218.65504,0,2,2,2019,10,3,50,50,1,3,0,11.760172,11.760172,0,0,0,0,0,0,0,0,2.3143525,0,54.82,58.93,53.51,60.74,10,1,1,0,0,8,4,5,1,1224,457171,-12151.615,152040.8,0,4434.0854 -16546,20368,36800,36799,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.2649536,8.3443804,0,3,6,-205.66692,0,-9,-9,2019,9,0,37,35,1,0,0,9.7476749,9.7476749,0,0,0,0,0,0,0,0,0,0,53.51,60.74,54.82,58.93,10,1,1,0,0,4,4,5,1,1224,457171,-12151.615,152040.8,0,4434.0854 -16547,20369,36801,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.4939842,5.3188014,0,0,-935.53259,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3703089,46.08,57.2,-9,-9,6.666666666666667,1,1,0,1,0,7,2,0,343,482940.97,0,146736.06,0,1588.3975 -16548,20370,36802,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.4133639,6.0377588,0,0,-1137.2245,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,0,5.6821518,62.12,37.94,-9,-9,10,1,1,0,0,3,5,2,0,832,29559.734,137448.22,0,0,1289.3972 -16548,20371,36803,-9,36802,-9,1,1,37,0,0,0,2,2,-9,0,5,7.654305,7.8944931,0,0,0,-973.39771,0,3,3,2019,12,3,38,35,1,3,0,9.3570919,9.3570919,0,0,0,0,2,1,1,0,2.8737051,0,52.32,57.18,-9,-9,6.666666666666667,1,1,0,0,6,5,3,0,148,864626.81,0,210459.78,0,752.04492 -16549,20372,36804,36805,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.0308352,8.3303041,0,36,-1,22.122999,0,3,3,2019,12,0,32,32,1,0,0,10.726964,10.726964,0,0,0,0,0,0,0,0,3.4682205,0,49.04,55.86,56.82,45.81,6.666666666666667,1,1,0,0,12,4,5,1,2893.5,519046.53,56230.949,282581.94,0,3410.7773 -16549,20372,36805,36804,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6203432,8.637886,0,11,1,102.86742,-9,-9,-9,2019,11,0,57,0,1,0,0,11.102862,11.102862,0,0,0,0,0,0,0,0,3.2612615,0,56.82,45.81,49.04,55.86,8.333333333333334,1,1,0,0,12,4,5,1,2893.5,519046.53,56230.949,282581.94,0,3410.7773 -16550,20373,36806,-9,36807,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.19501,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,454,-204976.44,123050.42,0,0,1817.8479 -16550,20373,36807,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5090289,8.0285501,5.514812,0,0,-1105.7241,0,1,1,2019,18,5,30,30,1,5,0,7.6717024,7.6717024,0,0,0,0,0,1,0,1,5.770741,0,37.44,59.97,-9,-9,0,1,1,0,1,10,4,3,0,454,-204976.44,123050.42,0,0,1817.8479 -16551,20374,36808,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8781719,8.2719984,6.0621781,0,0,-1124.6959,0,2,2,2019,11,0,37,37,1,0,0,11.104313,11.104313,0,0,0,0,2,0,0,0,4.8080912,6.1459918,51.09,53.64,-9,-9,6.666666666666667,1,1,0,1,11,12,4,1,417,63224.461,22685.449,0,0,1418.4645 -16551,20375,36809,-9,36808,-9,1,1,24,0,0,0,1,1,-9,0,5,8.2901049,7.8544302,0,0,0,-893.40271,0,2,3,2019,7,0,38,0,1,0,1,9.2949057,9.2949057,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,1,12,4,1,478,-135491.36,-9719.7529,0,0,1149.5098 -16552,20376,36810,36811,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.5602446,8.4573288,0,7,-6,-149.83752,0,-9,-9,2019,11,0,35,35,1,2,0,16.500324,16.500324,0,0,0,0,0,0,0,0,0,0,48,57,51.77,58.57,7,1,1,0,0,1,6,5,1,332,149165.25,97650.578,119759.9,65834.641,3691.957 -16552,20376,36811,36810,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.4607773,8.5608263,0,9,6,-170.34726,0,2,1,2019,9,0,35,39,1,0,0,18.695503,18.695503,0,0,0,0,0,0,0,0,0,0,51.77,58.57,48,57,8.333333333333334,1,1,0,0,10,6,5,1,332,149165.25,97650.578,119759.9,65834.641,3691.957 -16553,20377,36812,-9,36814,36816,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1003.3861,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,6,2,1,1006.8,166325.56,0,0,0,1934.793 -16553,20377,36813,-9,36814,36816,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.97479,-9,3,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,6,2,1,1006.8,166325.56,0,0,0,1934.793 -16553,20377,36814,36816,-9,-9,1,0,40,0,2,0,3,3,-9,1,2,0,0,0,20,-5,94.176796,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,5.48,1,1,0,0,0,45.28,44.47,53.14,51.28,6.666666666666667,2,3,0,0,6,6,2,1,1006.8,166325.56,0,0,0,1934.793 -16553,20377,36815,-9,36814,36816,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1081.6382,-9,3,1,2019,19,7,0,0,2,7,0,0,0,0,0,0,0,2,1,1,0,0,0,41.79,57.73,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,1006.8,166325.56,0,0,0,1934.793 -16553,20377,36816,36814,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,6.7552161,6.3554707,0,10,5,-133.56567,0,-9,-9,2019,11,0,24,24,1,0,0,3.2801201,3.2801201,0,0,0,0,14.5,1,1,0,0,0,53.14,51.28,45.28,44.47,6.666666666666667,2,3,0,0,12,6,2,1,1006.8,166325.56,0,0,0,1934.793 -16554,20378,36817,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.8775268,6.7257538,0,0,-981.45197,0,3,3,2019,12,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,.32626802,6.4188972,32.63,52.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,695,299429.34,67711.375,41547.855,0,1278.1112 -16554,20379,36818,-9,36817,-9,1,0,60,0,0,0,2,2,-9,0,4,7.8497033,8.2046432,0,0,0,-995.93732,0,3,2,2019,6,0,30,30,1,0,0,11.798507,11.798507,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,1492,-617730.5,-47317.719,0,0,1277.9103 -16555,20380,36819,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,8.2070351,8.1427126,0,0,-898.59229,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,5.9696221,125.63673,46.939312,0,1,1,0,0,7.8927135,54.58,38.5,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,73,749725.31,150091.09,251538.78,0,2680.1497 -16555,20381,36820,-9,36819,-9,1,0,50,0,0,0,2,2,-9,0,2,0,7.9264007,7.5179925,0,0,-1054.3346,0,2,-9,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,120,1,1,0,0,7.8197079,48.37,34.52,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,329,739444.25,859014.13,0,0,1639.4729 -16556,20382,36821,36822,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.0761824,6.5011005,0,43,-2,25.004564,0,-9,-9,2019,5,0,26,20,1,0,0,4.1366553,4.1366553,0,0,0,0,100,1,1,0,0,0,62.39,56.71,46.19,43.74,10,2,3,0,0,10,6,2,1,689.5,409044.5,260791.16,206316.06,0,1069.2246 -16556,20382,36822,36821,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,43,2,48.813793,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46.19,43.74,62.39,56.71,10,2,3,0,0,1,6,2,1,689.5,409044.5,260791.16,206316.06,0,1069.2246 -16557,20383,36823,-9,36825,36824,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.108,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,13,1,0,1516.6666,84753.383,15611.25,0,0,1485.175 -16557,20383,36824,36825,-9,-9,1,1,31,0,1,0,3,3,-9,0,3,0,0,0,9,2,0,0,3,-9,2019,16,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,35.45,59.87,26.37,51.37,6.666666666666667,1,1,1,0,0,13,1,0,1516.6666,84753.383,15611.25,0,0,1485.175 -16557,20383,36825,36824,-9,-9,1,0,29,0,1,0,3,3,-9,0,3,0,0,0,9,-2,0,0,-9,-9,2019,14,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,26.37,51.37,35.45,59.87,6.666666666666667,4,1,1,0,0,13,1,0,1516.6666,84753.383,15611.25,0,0,1485.175 -16558,20384,36826,36827,-9,-9,1,1,24,0,1,0,2,2,-9,0,3,8.1620703,7.6568027,0,4,-2,-124.39946,0,-9,-9,2019,11,0,39,39,1,0,0,7.6201444,7.6201444,0,0,0,0,0,1,1,0,0,0,48.45,57.49,50.85,39,6.666666666666667,1,1,0,0,3,2,3,0,556.33331,-126758.16,0,0,0,2391.3992 -16558,20384,36827,36826,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.034863,7.028285,0,4,2,-58.653912,0,2,3,2019,11,0,16,0,1,0,0,9.158534,9.158534,0,0,0,0,2,1,1,0,0,0,50.85,39,48.45,57.49,6.666666666666667,1,1,0,0,1,2,3,0,556.33331,-126758.16,0,0,0,2391.3992 -16558,20384,36828,-9,36827,36826,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.41211,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,556.33331,-126758.16,0,0,0,2391.3992 -16559,20385,36829,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-948.91858,0,3,3,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,0,0,18.89,26.83,-9,-9,10,1,1,0,0,0,7,1,0,648,-208141.27,0,0,0,1636.105 -16560,20386,36830,-9,36832,36831,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-985.83746,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,1,450,-24573.814,61558.547,122658.14,0,1750.8693 -16560,20386,36831,36832,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,7.5366211,7.7928529,0,10,8,-35.219391,0,-9,-9,2019,6,0,32,38,1,0,0,10.137274,10.137274,0,0,0,0,0,1,1,0,0,0,52.82,53.97,42.46,54.85,8.333333333333334,1,1,0,0,9,1,3,1,450,-24573.814,61558.547,122658.14,0,1750.8693 -16560,20386,36832,36831,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.4963808,7.3567481,0,28,-8,-1.258985,0,3,-9,2019,10,0,24,24,1,0,0,9.9315567,9.9315567,0,0,0,0,0,1,1,0,1.1853859,0,42.46,54.85,52.82,53.97,8.333333333333334,1,1,0,0,12,1,3,1,450,-24573.814,61558.547,122658.14,0,1750.8693 -16561,20387,36833,36834,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,4.5777245,4.862555,47,2,-17.055817,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,5.48,1,1,0,4.7109561,4.8805933,63.83,43.62,37.08,57.26,6.666666666666667,1,1,0,0,4,9,2,1,518.5,-66157.672,98280.125,182072.91,0,1661.9976 -16561,20387,36834,36833,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.6798468,6.4902482,47,-2,23.585615,0,3,3,2019,16,5,0,0,4,5,0,0,0,0,0,0,0,5.48,1,1,0,1.1445724,6.5053353,37.08,57.26,63.83,43.62,5,1,1,0,0,6,9,2,1,518.5,-66157.672,98280.125,182072.91,0,1661.9976 -16561,20388,36835,-9,36834,36833,1,1,40,0,0,0,2,2,-9,0,4,8.4220362,8.220252,0,0,0,-983.10791,0,3,2,2019,6,0,49,44,1,0,0,9.5115061,9.5115061,0,0,0,0,0,1,1,0,3.2839155,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,504,-25304.514,52794.461,0,0,1558.0052 -16562,20389,36836,36837,-9,36838,1,0,68,0,1,0,1,1,-9,0,4,5.695694,5.3548932,0,8,-6,184.33337,0,2,2,2019,7,0,30,30,1,0,0,1.1341132,1.1341132,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,54.61,38.4,8.333333333333334,1,1,0,0,11,9,3,1,154.5,663674.44,419771.34,521042,5610.4004,3011.6462 -16562,20389,36837,36836,-9,-9,1,1,74,0,1,0,1,1,-9,0,3,0,8.0677691,7.7432933,8,6,-91.631172,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,6.7623453,7.9725208,54.61,38.4,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,154.5,663674.44,419771.34,521042,5610.4004,3011.6462 -16562,20390,36838,-9,-9,-9,1,1,92,0,1,0,3,3,-9,0,3,0,0,0,0,0,-974.11371,0,2,2,2019,9,0,0,0,4,0,0,0,0,1,.92049199,14.792881,23.189007,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,9,1,1,1890,-66055.164,0,213817.39,0,1053.877 -16563,20391,36839,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,7.5282149,7.61759,0,0,0,-1102.8368,0,3,3,2019,6,0,15,15,1,0,0,13.268224,13.268224,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,4,5,0,0,10,11,3,1,657,360903.31,0,284721.5,110668.91,1939.963 -16564,20392,36840,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.256547,8.5922489,0,0,0,-1074.8401,0,2,2,2019,9,0,78,44,1,0,0,5.557343,5.557343,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,4,5,1,875,672409.44,321413.44,354026,0,2371.2988 -16565,20393,36841,36842,-9,-9,1,0,38,1,1,0,1,1,-9,0,2,6.6658716,6.5890222,0,15,-3,11.060417,0,-9,-9,2019,19,9,40,30,1,9,0,1.9179368,1.9179368,0,0,0,0,2,1,1,0,.63698065,0,43.08,45.41,57.16,56.15,6.666666666666667,1,1,0,0,10,8,3,0,1698.3334,511231.94,359454.5,250338.55,134466.45,1740.5792 -16565,20393,36842,36841,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.1839314,8.0110035,0,15,3,148.75041,0,1,1,2019,6,0,34,24,1,0,0,10.187869,10.187869,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.08,45.41,6.666666666666667,2,3,0,0,10,8,3,0,1698.3334,511231.94,359454.5,250338.55,134466.45,1740.5792 -16565,20393,36843,-9,36841,36842,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.906,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,1698.3334,511231.94,359454.5,250338.55,134466.45,1740.5792 -16566,20394,36844,-9,36846,36845,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.39923,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,840.66669,37100.664,-50523.383,0,0,2016.2759 -16566,20394,36845,36846,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.0280619,8.1828079,0,17,9,57.939743,0,3,1,2019,24,9,40,32,1,9,0,9.1085472,9.1085472,0,0,0,0,0,1,1,0,0,0,32.31,48.77,46.47,40.47,3.333333333333333,2,3,0,1,9,8,3,0,840.66669,37100.664,-50523.383,0,0,2016.2759 -16566,20394,36846,36845,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,0,0,0,17,0,-80.267349,0,1,1,2019,15,4,0,7,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,46.47,40.47,32.31,48.77,5,2,3,1,0,6,8,3,0,840.66669,37100.664,-50523.383,0,0,2016.2759 -16567,20395,36847,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,8.3654366,8.0745249,0,0,0,-889.48218,0,-9,-9,2019,24,8,57,62,1,8,0,6.4943337,6.4943337,0,0,0,0,0,0,0,0,0,0,45.69,53.27,-9,-9,1.666666666666667,1,1,0,0,6,7,4,0,875,-22233.607,0,0,0,1836.0295 -16567,20396,36848,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6617613,7.7976913,0,0,0,-1076.228,-9,-9,-9,2019,8,0,28,0,1,0,0,10.704619,10.704619,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,5,1,1,0,0,1,7,3,0,1228,-69016.203,0,0,0,1093.4266 -16568,20397,36849,36850,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.2868786,8.3033524,0,1,-3,5.2814865,-9,-9,-9,2019,8,0,41,0,1,0,0,11.038636,11.038636,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,2,4,5,0,352,20788.273,0,0,0,3530.781 -16568,20397,36850,36849,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.6821585,8.1633015,0,1,3,161.28378,-9,-9,-9,2019,6,0,40,0,1,0,0,14.556954,14.556954,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,1,4,5,0,352,20788.273,0,0,0,3530.781 -16569,20398,36851,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,8.6850662,8.6296549,0,0,-985.883,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3640375,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,595,959784.31,490804.47,153922.06,0,3954.4885 -16570,20399,36852,36853,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.7006602,6.6602159,2,3,-63.230923,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.8816457,50.77,24.32,58.15,52.91,8.333333333333334,1,1,0,0,0,4,3,1,590,770215.88,328900.75,268021.5,0,2225.387 -16570,20399,36853,36852,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.7769446,6.8358436,2,-3,31.500681,0,-9,-9,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9886427,58.15,52.91,50.77,24.32,8.333333333333334,1,1,0,0,0,4,3,1,590,770215.88,328900.75,268021.5,0,2225.387 -16571,20400,36854,-9,36856,36858,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1006.0389,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 -16571,20400,36855,-9,36856,36858,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.9707,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 -16571,20400,36856,36858,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,8.6781111,8.8521099,0,19,0,97.984818,0,2,2,2019,15,4,52,47,1,4,0,17.975744,17.975744,0,0,0,0,0,0,0,0,0,0,48.18,61.8,57.63,45.09,8.333333333333334,1,1,0,0,9,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 -16571,20400,36857,-9,36856,36858,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1057.231,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 -16571,20400,36858,36856,-9,-9,1,1,40,0,3,0,1,1,-9,0,3,9.6065912,9.4389019,0,8,0,38.837669,0,-9,-9,2019,12,0,48,45,1,0,0,34.600292,34.600292,0,0,0,0,0,0,0,0,0,0,57.63,45.09,48.18,61.8,8.333333333333334,1,1,0,0,5,7,5,1,911.59998,1775656.3,520153.28,912215.56,0,6602.2695 -16572,20401,36859,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.4028354,7.372036,0,0,-949.53912,0,2,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,2,1,1,0,0,7.2723832,38.84,53.72,-9,-9,3.333333333333333,1,1,0,1,0,9,3,1,1194,124553.31,289518.34,181139.64,0,1764.2816 -16573,20402,36860,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.2921176,6.4322057,0,0,-1064.0635,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.8873589,6.729363,42.71,40.35,-9,-9,5,1,1,0,0,4,2,2,0,152,499724.91,314976.97,0,0,1185.587 -16573,20403,36861,-9,-9,36860,1,1,26,0,0,0,2,2,-9,0,4,7.5495462,7.6567106,0,0,0,-1036.1836,0,3,3,2019,11,0,41,34,1,0,0,6.5079536,6.5079536,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,0,1,1,0,0,6,2,3,0,850,-78510.141,54181.262,0,0,1055.0691 -16574,20404,36862,-9,36866,36865,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1014.7204,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 -16574,20404,36863,-9,36866,36865,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1034.5155,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 -16574,20404,36864,-9,36866,36865,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-884.48126,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 -16574,20404,36865,36866,-9,-9,1,1,36,0,4,0,2,2,-9,0,5,8.1545076,8.1009808,0,7,3,46.97644,0,-9,-9,2019,7,0,39,39,1,0,0,10.696932,10.696932,0,0,0,0,0,1,1,0,0,0,60.18,48.05,57.16,56.15,8.333333333333334,1,1,0,0,9,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 -16574,20404,36866,36865,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,5.8904881,6.0931678,0,7,-3,-29.373354,0,2,2,2019,7,0,8,0,1,0,0,5.7721968,5.7721968,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.18,48.05,10,1,1,0,0,1,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 -16574,20404,36867,-9,36866,36865,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.3947,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,.20636111,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1150.1666,-53958.008,0,56278.418,63509.5,2666.3376 -16575,20405,36868,36869,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.8679237,8.4794369,0,7,0,144.42978,-9,-9,-9,2019,11,0,37,0,1,2,0,11.133211,11.133211,0,0,0,0,0,0,0,0,5.945437,0,48,49,48.56,48.19,7,1,1,0,0,1,6,5,1,258.5,232585.58,207252.22,117759.55,60588.047,3997.8755 -16575,20405,36869,36868,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,8.3409777,7.8515439,31,0,62.456394,0,2,2,2019,16,5,0,50,4,5,0,0,0,0,0,0,0,0,0,0,0,7.0664725,7.8093166,48.56,48.19,48,49,6.666666666666667,1,1,0,0,8,6,5,1,258.5,232585.58,207252.22,117759.55,60588.047,3997.8755 -16576,20406,36870,36873,36875,-9,1,1,41,1,3,0,3,3,-9,0,4,6.9264932,7.1978664,0,6,11,-14.47555,0,3,3,2019,12,0,24,25,1,0,0,5.0615592,5.0615592,0,0,0,0,0,1,1,0,0,0,52.42,44.96,48,56,10,2,3,0,0,9,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 -16576,20406,36871,-9,36873,36870,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.0531,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 -16576,20406,36872,-9,36873,36870,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.3446,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 -16576,20406,36873,36870,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,0,0,0,6,-11,-30.560125,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52.42,44.96,7,2,3,0,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 -16576,20406,36874,-9,36873,36870,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-880.19086,-9,2,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,646.79999,-71866.039,0,0,0,1539.8416 -16576,20407,36875,-9,-9,-9,1,0,74,1,3,0,3,3,-9,0,3,0,0,0,0,0,-1039.7373,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,4.4386091,70.902969,0,0,1,1,0,0,0,52,45,-9,-9,7,2,3,0,0,0,8,1,0,851,0,0,0,0,569.67316 -16577,20408,36876,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,1,5.899107,7.1813698,6.8408246,0,0,-915.68341,-9,-9,-9,2019,33,12,25,0,1,12,0,1.1942692,1.1942692,0,0,0,0,2,1,1,0,6.821249,0,12.24,47.74,-9,-9,1.666666666666667,1,1,0,1,0,9,2,0,2779,237734.16,0,0,0,706.3736 -16577,20409,36877,-9,-9,-9,1,0,22,0,0,1,1,0,-9,0,3,0,0,0,0,0,-1022.0956,-9,-9,-9,2019,26,10,0,0,2,10,0,0,0,0,0,0,0,0,1,1,0,.82580411,0,29.86,52.59,-9,-9,6.666666666666667,4,2,0,0,0,9,1,0,2108,-152624.03,0,0,0,279.10443 -16577,20410,36878,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,2,0,0,0,0,0,-1006.487,-9,-9,-9,2019,11,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,51.35,46.98,-9,-9,8.333333333333334,1,1,0,0,5,9,1,0,111,35370.234,0,0,0,0 -16578,20411,36879,-9,-9,-9,1,1,83,0,1,0,2,2,-9,0,4,0,7.064393,7.2787776,0,0,-1108.7991,0,3,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2089224,62.93,37.21,-9,-9,10,1,1,0,0,0,7,2,1,238,543305.25,76856.641,226934.13,0,1960.0378 -16578,20412,36880,-9,36882,36883,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1116.1664,-9,2,2,2019,23,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,40.4,58.62,-9,-9,8.333333333333334,1,1,0,1,4,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 -16578,20412,36881,-9,36882,36883,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1007.6412,-9,2,2,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,0,0,0,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 -16578,20412,36882,36883,-9,36879,1,0,39,0,1,0,2,2,-9,0,3,6.4623022,6.4180984,0,3,-14,-4.2729278,0,-9,2,2019,10,0,40,60,1,0,0,1.7861999,1.7861999,0,0,0,0,14.5,1,1,0,0,0,49.04,55.86,46.39,60.99,8.333333333333334,1,1,0,1,8,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 -16578,20412,36883,36882,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1615086,8.3726187,0,3,14,3.9991529,0,-9,-9,2019,9,0,50,50,1,0,0,9.3279371,9.3279371,0,0,0,0,0,1,1,0,0,0,46.39,60.99,49.04,55.86,6.666666666666667,1,1,0,0,12,7,3,1,606,305935.59,-8361.9697,404138,0,2496.46 -16579,20413,36884,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-965.97522,-9,-9,2,2019,12,1,0,0,3,1,1,0,0,0,0,0,0,0,1,0,1,3.937217,0,45.83,54.52,-9,-9,5,1,1,1,0,0,11,1,0,409,163914.41,0,0,0,20.857861 -16579,20414,36885,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1126.2484,0,-9,-9,2019,30,11,0,0,3,11,0,0,0,0,0,0,0,0,1,0,1,0,0,21.18,22.84,-9,-9,0,1,1,0,1,0,11,1,0,191,108508.55,-45220.184,0,0,57.230465 -16580,20415,36886,36887,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,6.8330793,6.7119031,35,1,5.4183168,0,3,3,2019,32,12,0,0,3,12,0,0,0,0,0,0,0,0,1,0,1,0,6.6689744,30.49,39.41,36.6,33.45,5,1,1,0,0,12,12,2,0,651.5,243933.33,-23489.52,149361.98,54189.996,1411.3522 -16580,20415,36887,36886,-9,-9,1,1,59,0,0,0,3,3,-9,1,2,0,6.5958681,6.6176515,35,-1,39.962292,0,3,2,2019,24,12,0,39,3,12,0,0,0,0,0,0,0,0,1,0,1,0,6.5477066,36.6,33.45,30.49,39.41,5,1,1,1,0,12,12,2,0,651.5,243933.33,-23489.52,149361.98,54189.996,1411.3522 -16581,20416,36888,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.3114409,7.4032922,0,0,-1125.3716,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0516944,7.2327013,57.9,51.84,-9,-9,10,1,1,0,0,3,9,3,1,1178,685288.63,363414.97,147161.78,0,1352.5266 -16582,20417,36889,36890,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,9.1783648,9.4123163,0,6,1,-15.197803,0,2,2,2019,3,0,48,47,1,0,0,22.366098,22.366098,0,0,0,0,2,1,1,0,0,0,54.96,53.17,50,55,8.333333333333334,1,1,0,0,7,9,5,1,999,29169.318,927.33173,219370.69,172273.06,4466.3535 -16582,20417,36890,36889,-9,-9,1,0,38,1,1,0,2,2,-9,0,4,7.9347329,7.9167686,0,6,-1,39.275234,-9,-9,-9,2019,11,0,38,0,1,2,0,8.3592405,8.3592405,0,0,0,0,0,1,1,0,0,0,50,55,54.96,53.17,7,1,1,0,0,1,9,5,1,999,29169.318,927.33173,219370.69,172273.06,4466.3535 -16582,20417,36891,-9,36890,36889,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-878.33423,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,999,29169.318,927.33173,219370.69,172273.06,4466.3535 -16583,20418,36892,36893,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,8,10,-73.146385,0,3,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,30.76,33.67,36.94,49.35,5,1,1,0,0,1,5,4,0,892.5,218395.28,131537.3,225691.08,67738.703,2657.6953 -16583,20418,36893,36892,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,8.3570375,8.6835985,0,8,-10,28.507803,-9,-9,-9,2019,15,3,52,0,1,3,0,8.7895117,8.7895117,0,0,0,0,7,1,1,0,0,0,36.94,49.35,30.76,33.67,5,1,1,0,0,8,5,4,0,892.5,218395.28,131537.3,225691.08,67738.703,2657.6953 -16583,20419,36894,-9,36892,36893,1,1,26,0,0,0,2,2,-9,0,3,8.3552589,8.3852587,0,3,-10,-41.809261,0,2,2,2019,26,12,46,43,1,12,0,7.7218652,7.7218652,0,0,0,0,71.5,1,1,0,0,0,25.42,62.61,50,57,0,1,1,0,1,8,5,3,0,68,-79936.688,0,0,0,1153.0226 -16584,20420,36895,36896,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3971643,8.0818624,0,2,-1,106.87844,0,-9,-9,2019,17,5,37,37,1,5,0,11.553304,11.553304,0,0,0,0,0,0,0,0,0,0,36.97,58.59,51.83,57.2,5,1,1,0,0,2,9,5,1,946,329597.59,67298.961,439537.5,0,3216.2092 -16584,20420,36896,36895,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3439646,8.6685667,0,2,1,-13.347369,0,2,2,2019,12,3,40,43,1,3,0,14.240908,14.240908,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.97,58.59,8.333333333333334,1,1,0,0,9,9,5,1,946,329597.59,67298.961,439537.5,0,3216.2092 -16585,20421,36897,36899,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,0,0,0,25,-12,0,0,3,3,2019,11,0,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,49,55,50,49,7,2,3,0,0,0,8,2,0,1254.3334,43836.098,0,0,0,2145.5854 -16585,20421,36898,-9,36897,36899,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.6267,-9,3,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1254.3334,43836.098,0,0,0,2145.5854 -16585,20421,36899,36897,-9,-9,1,1,55,0,1,0,3,3,-9,1,3,0,0,0,25,12,0,0,3,3,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,49,55,7,2,3,0,0,0,8,2,0,1254.3334,43836.098,0,0,0,2145.5854 -16585,20422,36900,-9,36897,36899,1,0,23,0,1,0,2,2,-9,0,4,8.3369427,8.3325958,0,0,0,-1125.3673,0,3,3,2019,12,0,37,41,1,2,1,11.777443,11.777443,0,0,0,0,7,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,6,8,4,0,1007,-381627.22,-10732.325,0,0,2060.6819 -16585,20423,36901,-9,36897,36899,1,0,20,0,1,0,2,2,0,0,4,0,0,0,0,0,-1087.0554,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,4,8,2,0,1321,122460.19,0,0,0,0 -16585,20424,36902,-9,36897,36899,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-934.86176,-9,3,3,2019,12,0,0,0,2,2,1,0,0,0,0,0,0,7,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,2,8,2,0,802,17302.223,0,0,0,0 -16586,20425,36903,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.5075798,7.4680486,0,0,-985.17841,0,2,2,2019,8,0,0,48,4,0,0,0,0,0,0,0,0,0,0,0,0,4.4409113,7.2466121,50.6,51,-9,-9,5,1,1,0,0,12,5,3,1,361,383384.41,461842.28,250812.02,6925.8315,1494.2709 -16587,20426,36904,36905,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,7.0066009,6.8542409,0,8,0,-46.112198,0,-9,-9,2019,12,0,16,20,1,2,0,6.3190761,6.3190761,0,0,0,0,0,1,1,0,0,0,48,49,54.2,57.49,7,1,1,0,0,1,10,3,1,475,1222914.3,212234.14,254724.28,0,2268.7588 -16587,20426,36905,36904,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.8368278,7.7934451,8,9,-60.843513,0,2,2,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,7,1,1,0,3.0071852,7.9751086,54.2,57.49,48,49,8.333333333333334,1,1,0,0,7,10,3,1,475,1222914.3,212234.14,254724.28,0,2268.7588 -16588,20427,36906,36908,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.8472967,8.5229015,0,26,-1,-13.30215,0,3,2,2019,12,1,37,52,1,1,0,16.75329,16.75329,0,0,0,0,0,1,1,0,0,0,51.14,60.45,60.52,53.2,8.333333333333334,1,1,0,0,8,13,5,1,311,2496505.8,2014155.9,342084.81,0,3084.144 -16588,20427,36907,-9,36906,36908,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1048.1586,-9,2,2,2019,4,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,5,1,311,2496505.8,2014155.9,342084.81,0,3084.144 -16588,20427,36908,36906,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.7250366,8.741888,0,26,1,-9.0832415,0,3,2,2019,8,0,42,36,1,0,0,14.533204,14.533204,0,0,0,0,0,1,1,0,0,0,60.52,53.2,51.14,60.45,6.666666666666667,1,1,0,0,8,13,5,1,311,2496505.8,2014155.9,342084.81,0,3084.144 -16589,20428,36909,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,6.2874146,7.0339484,0,0,0,-918.73621,0,2,2,2019,11,0,10,10,1,0,0,6.4911985,6.4911985,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,1,8,2,2,0,4137,-283894.97,30040.656,0,0,171.49141 -16589,20429,36910,-9,36909,-9,1,0,21,0,0,0,2,2,-9,0,4,7.0137291,6.9130702,0,0,0,-1077.8859,0,2,-9,2019,10,0,20,8,1,0,1,5.4341474,5.4341474,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,358,429585.44,0,0,0,252.59323 -16590,20430,36911,36912,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.1002479,6.8607392,4.2174497,12,2,-54.460884,0,2,1,2019,9,0,50,48,1,0,0,3.3928585,3.3928585,0,0,0,0,0,0,0,0,4.9977884,0,57.16,56.15,58.05,54.52,6.666666666666667,1,1,0,0,11,10,4,1,818,916926.06,465385.94,708374.94,0,3236.2942 -16590,20430,36912,36911,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.3341541,8.4685822,0,12,-2,-6.09552,0,2,2,2019,7,0,47,13,1,0,0,12.806813,12.806813,0,0,0,0,0,0,0,0,7.5346198,0,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,13,10,4,1,818,916926.06,465385.94,708374.94,0,3236.2942 -16591,20431,36913,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,0,0,-862.98248,0,3,3,2019,20,8,0,0,4,8,0,0,0,0,0,0,0,0,1,1,0,.24028452,0,49.7,21.93,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,360,-310930.75,0,0,0,965.78198 -16592,20432,36914,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.9671273,6.6820493,0,0,-967.72821,0,2,2,2019,13,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,3.8834713,6.6931419,50.72,46.82,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,1955,402333.47,127855.9,223839.88,0,1992.1951 -16593,20433,36915,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,9.9226437,9.9094915,0,0,0,-1171.5706,0,3,2,2019,7,0,20,13,1,0,0,105.66161,105.66161,0,0,0,0,0,1,1,0,4.0826759,0,53.48,35.51,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,975,2388471,1659045.9,468392.41,0,25282.904 -16594,20434,36916,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.500114,7.4996018,5.3200026,0,0,-1042.8032,0,-9,-9,2019,9,0,38,20,1,0,0,5.7869434,5.7869434,0,0,0,0,0,0,0,0,5.3033295,0,50.85,52.08,-9,-9,6.666666666666667,1,1,0,0,4,7,3,0,758,14753.614,70070.578,0,0,1263.609 -16595,20435,36917,36920,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,4.8989387,4.7203012,0,8,-2,56.908772,0,-9,-9,2019,23,9,2,2,1,9,0,8.7668896,8.7668896,0,0,0,0,0,1,1,0,6.5161138,0,25.76,65.05,51.14,60.45,6.666666666666667,1,1,0,0,12,2,3,1,632,14616.74,0,0,0,2041.8711 -16595,20435,36918,-9,36917,36920,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-829.07892,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,632,14616.74,0,0,0,2041.8711 -16595,20435,36919,-9,36917,36920,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.38,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,632,14616.74,0,0,0,2041.8711 -16595,20435,36920,36917,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.2392836,7.8581815,0,8,2,45.560154,0,-9,-9,2019,10,0,40,50,1,0,0,11.191408,11.191408,0,0,0,0,0,1,1,0,0,0,51.14,60.45,25.76,65.05,8.333333333333334,1,1,0,0,10,2,3,1,632,14616.74,0,0,0,2041.8711 -16596,20436,36921,-9,36923,36922,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1150.1556,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,631,469294.53,195231.33,335250.06,191906.33,4230.104 -16596,20436,36922,36923,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.697444,8.9646463,0,8,17,43.150311,0,-9,-9,2019,9,0,60,60,1,1,0,12.273236,12.273236,0,0,0,0,0,1,1,0,0,0,53,55,54.2,57.49,8,1,1,0,0,1,10,5,1,631,469294.53,195231.33,335250.06,191906.33,4230.104 -16596,20436,36923,36922,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.4784317,8.4046249,0,15,-17,45.604771,0,2,2,2019,11,0,40,35,1,0,0,10.88434,10.88434,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53,55,5,1,1,0,1,9,10,5,1,631,469294.53,195231.33,335250.06,191906.33,4230.104 -16597,20437,36924,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.9433126,6.7141762,0,0,-1021.1077,0,1,-9,2019,10,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,1.6333532,6.4715581,59.73,26.62,-9,-9,10,4,2,0,0,0,6,2,1,412,73275.008,234221.81,0,0,284.48645 -16598,20438,36925,36926,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.7310934,7.4758134,36,0,132.58237,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3505559,62.39,56.71,58.15,52.91,10,1,1,0,0,10,10,4,1,534.5,1692330.3,598114.75,387852.22,0,3502.8052 -16598,20438,36926,36925,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.5572863,8.2426395,36,0,104.1081,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,7,0,0,0,4.4100695,8.4403028,58.15,52.91,62.39,56.71,10,1,1,0,0,10,10,4,1,534.5,1692330.3,598114.75,387852.22,0,3502.8052 -16598,20439,36927,-9,36925,36926,1,1,32,0,0,0,2,2,-9,0,4,7.9870601,7.5458136,0,0,0,-1087.8888,0,1,1,2019,9,2,37,38,1,2,0,9.1996441,9.1996441,0,0,0,0,0,0,0,0,2.5817108,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,12,10,4,1,1533,341786.47,-27068.35,0,0,1255.8864 -16599,20440,36928,36929,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,3.1660714,3.0716507,10,3,103.84088,0,-9,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,3.2051897,68.02,29.39,56.05,40.56,10,1,1,0,0,8,6,3,1,887.5,210360.94,71887.383,178539.56,23226.137,1854.7196 -16599,20440,36929,36928,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.0794749,8.0702496,7.7405472,15,-3,23.070038,0,2,2,2019,8,0,17,24,1,0,0,10.576056,10.576056,0,0,0,0,0,1,1,0,5.9278364,7.8424778,56.05,40.56,68.02,29.39,8.333333333333334,1,1,0,0,12,6,3,1,887.5,210360.94,71887.383,178539.56,23226.137,1854.7196 -16600,20441,36930,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,5.7640996,5.9740133,0,0,-972.66376,0,3,3,2019,12,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,6.2196436,46.1,59.99,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,436,246516.64,172999.86,0,0,343.29102 -16601,20442,36931,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.1950026,8.4045525,0,0,0,-1081.4393,0,-9,-9,2019,7,0,59,74,1,0,0,7.8689313,7.8689313,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,10,4,0,1301,579584.81,492453.78,69495.406,16963.684,1734.189 -16602,20443,36932,-9,-9,-9,1,1,46,0,0,0,1,1,-9,1,3,0,0,0,0,0,-976.38586,0,3,1,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.14,52.5,-9,-9,5,1,1,1,1,0,8,1,0,601,44724.59,0,103382.88,50218.652,840.27051 -16603,20444,36933,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,7.3749905,8.1648226,6.7769904,0,0,-1084.543,0,-9,-9,2019,11,0,31,28,1,0,0,8.4575243,8.4575243,0,0,0,0,0,1,1,0,2.3065629,7.0141182,49.58,55.59,-9,-9,5,1,1,0,0,10,7,4,1,1825,1502093.3,764072.5,477020.28,0,2234.0193 -16604,20445,36934,36935,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.5521088,8.1945524,0,1,-1,72.657967,-9,-9,-9,2019,6,0,42,0,1,0,0,9.3437691,9.3437691,0,0,0,0,0,0,0,0,4.1603942,0,57.06,57.76,44.78,56.37,8.333333333333334,1,1,0,0,4,7,5,1,550.5,396237.63,88521.539,320370.44,185972.89,4344.9165 -16604,20445,36935,36934,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.7829847,8.8387909,0,1,1,22.185759,0,-9,-9,2019,13,3,43,40,1,3,0,15.667542,15.667542,0,0,0,0,0,0,0,0,2.4641075,0,44.78,56.37,57.06,57.76,6.666666666666667,1,1,0,0,5,7,5,1,550.5,396237.63,88521.539,320370.44,185972.89,4344.9165 -16605,20446,36936,36937,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,4.3464327,3.7432668,6,-3,-25.905451,0,2,2,2019,8,1,0,0,4,1,0,0,0,1,0,5.9917579,0,0,1,1,0,3.4498062,4.0536985,63.93,31.05,57.16,56.15,10,1,1,0,0,0,6,2,1,867,745175.69,174444.25,416906.53,0,1916.792 -16605,20446,36937,36936,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.3667183,7.4729514,6,3,7.123733,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1605844,7.3502846,57.16,56.15,63.93,31.05,8.333333333333334,1,1,0,0,0,6,2,1,867,745175.69,174444.25,416906.53,0,1916.792 -16606,20447,36938,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.8400359,7.7991762,0,0,-1025.2695,0,2,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,7.9756322,7.8723736,61.71,43.2,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,363,304390.97,181131.05,188854.7,0,1697.1998 -16607,20448,36939,36940,36942,-9,1,0,40,0,1,0,2,2,0,0,4,0,0,0,8,2,96.859482,-9,3,3,2019,14,2,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44.58,55.46,58.32,50.22,1.666666666666667,1,1,0,0,1,4,4,0,379.33334,166003.5,46474.859,120081.76,83479.695,2350.1536 -16607,20448,36940,36939,-9,-9,1,1,38,0,1,0,2,2,-9,0,3,8.5573502,8.6147404,0,8,-2,-6.1041894,0,3,3,2019,5,0,38,35,1,0,0,16.215372,16.215372,0,0,0,0,0,1,1,0,1.0874484,0,58.32,50.22,44.58,55.46,8.333333333333334,1,1,0,0,11,4,4,0,379.33334,166003.5,46474.859,120081.76,83479.695,2350.1536 -16607,20448,36941,-9,36939,36940,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1101.1776,-9,2,2,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,0,379.33334,166003.5,46474.859,120081.76,83479.695,2350.1536 -16607,20449,36942,-9,-9,-9,1,0,69,0,1,0,3,3,-9,0,3,0,0,0,0,0,-952.75562,0,3,3,2019,22,8,0,0,4,8,0,0,0,1,0,0,0,0,1,1,0,0,0,52.94,41.91,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,353,-74969.836,0,0,0,893.26392 -16608,20450,36943,36944,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.693768,7.6828041,0,7,-3,41.768311,0,-9,-9,2019,25,12,50,55,1,12,0,4.5219145,4.5219145,0,0,0,0,0,0,0,0,0,0,37.43,44.84,43.37,57.28,1.666666666666667,1,1,0,0,6,11,4,0,276.5,-77808.461,0,84847.969,73151.367,2124.2859 -16608,20450,36944,36943,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.1009989,8.3063469,0,7,3,127.40379,0,2,3,2019,11,0,59,47,1,0,0,6.3265371,6.3265371,0,0,0,0,0,0,0,0,0,0,43.37,57.28,37.43,44.84,3.333333333333333,1,1,0,0,11,11,4,0,276.5,-77808.461,0,84847.969,73151.367,2124.2859 -16609,20451,36945,-9,-9,-9,1,0,56,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1057.9186,0,1,-9,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,71.5,1,1,0,0,0,40.08,26.32,-9,-9,3.333333333333333,1,1,0,1,7,8,1,0,460,0,0,0,0,444.96179 -16609,20452,36946,-9,36945,-9,1,1,25,1,2,0,2,2,-9,1,4,7.4883814,8.3275576,0,0,0,-1107.3616,0,2,-9,2019,12,1,40,35,1,1,1,6.593864,6.593864,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,188,106335.54,-60046.039,0,0,1345.3191 -16609,20453,36947,-9,36948,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.49548,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,0,2388.6667,-69987.703,20695.564,0,0,2461.6187 -16609,20453,36948,-9,36945,-9,1,0,27,1,2,0,2,2,-9,0,4,7.5481305,7.8563766,7.064847,0,0,-908.16229,0,2,-9,2019,11,0,28,0,1,0,1,7.3381915,7.3381915,0,0,0,0,0,1,1,0,6.4862113,0,54.35,47.76,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,2388.6667,-69987.703,20695.564,0,0,2461.6187 -16609,20453,36949,-9,36948,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.92786,-9,2,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,0,2388.6667,-69987.703,20695.564,0,0,2461.6187 -16610,20454,36950,-9,-9,-9,1,0,72,2,2,0,3,3,-9,0,1,0,0,0,0,0,-1019.5634,-9,-9,-9,2019,7,0,0,0,4,0,0,0,0,1,0,16.748714,0,0,1,1,0,0,0,59.29,12.67,-9,-9,5,2,3,0,1,0,6,2,1,775,393252.44,0,92445.25,0,563.07874 -16611,20455,36951,-9,36952,36953,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.15894,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 -16611,20455,36952,36953,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.9505153,7.8052411,0,14,0,107.97721,0,1,1,2019,10,1,14,14,1,1,0,22.473415,22.473415,0,0,0,0,0,1,1,0,6.7654629,0,56.01,51.37,24.89,58.93,8.333333333333334,1,1,0,0,11,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 -16611,20455,36953,36952,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3855371,8.9276266,7.5229697,13,0,28.432547,0,2,2,2019,21,8,80,70,1,8,0,6.6200409,6.6200409,0,0,0,0,0,1,1,0,0,7.9061532,24.89,58.93,56.01,51.37,3.333333333333333,1,1,0,1,11,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 -16611,20455,36954,-9,36952,36953,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6904,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,694.75,982574.5,975117.69,202357.63,119551.76,4848.9658 -16612,20456,36955,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.5221767,5.6038976,0,0,-1034.8002,0,3,-9,2019,7,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,2.341363,5.7333198,57.54,42.36,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,766,68461.148,64659.348,136622.16,0,519.02698 -16613,20457,36956,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.3297276,6.8581595,0,0,-1059.0371,0,3,3,2019,11,1,0,0,4,1,0,0,0,1,0,0,0,0,1,1,0,.93501306,6.4945889,42.7,51.08,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,146,494260.63,182717.92,215070.72,0,1404.8851 -16614,20458,36957,36958,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5897255,8.9093742,0,7,-8,37.764614,-9,1,1,2019,11,0,40,0,1,2,0,18.533148,18.533148,0,0,0,0,0,0,0,0,0,0,48,56,56.1,49.93,7,1,1,0,0,1,9,5,1,621.33331,559769.94,170177.42,0,0,6618.0371 -16614,20458,36958,36957,-9,-9,1,1,42,1,1,0,1,1,-9,0,3,8.5020418,8.3871937,0,7,8,-10.113811,0,2,2,2019,5,0,36,39,1,0,0,17.188129,17.188129,0,0,0,0,0,0,0,0,8.7554245,0,56.1,49.93,48,56,10,3,4,0,0,9,9,5,1,621.33331,559769.94,170177.42,0,0,6618.0371 -16614,20458,36959,-9,36957,36958,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.2159,-9,1,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,621.33331,559769.94,170177.42,0,0,6618.0371 -16615,20459,36960,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.6341701,7.7679229,6.3021264,0,0,-971.1134,0,2,2,2019,6,0,21,21,1,0,0,12.270167,12.270167,1,0,0,0,0,1,1,0,0,6.2943325,54.55,49.25,-9,-9,8.333333333333334,1,1,0,0,10,8,4,1,934,2060893.3,12207.58,1495875.8,0,1086.1219 -16616,20460,36961,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,8.5486803,8.1987886,0,0,0,-893.02734,0,3,-9,2019,9,0,36,35,1,0,0,13.471957,13.471957,0,0,0,0,0,1,1,0,2.3981719,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,7,3,0,1504.6666,-96904.633,-80911,0,0,2198.2065 -16616,20460,36962,-9,36961,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.18042,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1504.6666,-96904.633,-80911,0,0,2198.2065 -16616,20460,36963,-9,36961,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4379,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,1504.6666,-96904.633,-80911,0,0,2198.2065 -16617,20461,36964,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1037.7911,0,2,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,62.85,-9,-9,10,1,1,0,0,0,10,1,0,687,-14764.296,0,0,0,1545.6407 -16618,20462,36965,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-935.89331,0,3,2,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,-9,-9,7,1,1,0,1,0,13,1,0,1088,-206783.17,0,0,0,935.63928 -16618,20463,36966,-9,36965,-9,1,0,35,0,0,0,2,2,-9,0,2,7.8666396,7.7616835,0,0,0,-786.40765,0,3,3,2019,25,11,40,40,1,11,0,9.0293102,9.0293102,0,0,0,0,0,1,1,0,0,0,14.12,57.64,-9,-9,3.333333333333333,1,1,0,0,9,13,4,0,1078,152746.64,20946.277,0,0,1511.2961 -16619,20464,36967,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,2.1641843,2.1659694,0,0,-1010.7368,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,0,1.7790022,60.02,56.42,-9,-9,1.666666666666667,1,1,0,0,0,5,2,1,1255,-243041.02,0,65399.527,0,2571.9558 -16620,20465,36968,-9,-9,-9,1,0,25,0,0,1,1,0,0,0,4,0,0,0,0,0,-953.5401,-9,2,2,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,44.27,-9,-9,8.333333333333334,1,1,0,0,7,8,1,0,2271,11802.245,0,0,0,61.516582 -16621,20466,36969,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.7523842,7.9944162,0,0,0,-1063.4576,0,2,2,2019,24,12,39,39,1,12,0,7.4647999,7.4647999,0,0,0,0,0,0,0,0,0,0,30.82,52.61,-9,-9,3.333333333333333,1,1,0,0,9,1,4,0,1053,120887.81,-61761.992,141954.11,75839.297,1004.0813 -16622,20467,36970,36971,-9,-9,1,1,44,1,1,0,3,3,-9,0,3,8.0652571,8.1842852,0,2,11,88.015778,0,3,2,2019,11,0,55,41,1,2,0,8.0921984,8.0921984,0,0,0,0,0,1,1,0,0,0,51.5,45.52,49,56,3.333333333333333,2,3,0,1,9,6,3,1,388.33334,187700.83,5310.313,178840.11,98975.023,1514.3038 -16622,20467,36971,36970,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,0,0,0,2,-11,16.043795,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51.5,45.52,7,2,3,0,0,0,6,3,1,388.33334,187700.83,5310.313,178840.11,98975.023,1514.3038 -16622,20467,36972,-9,36971,36970,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.93561,-9,1,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,388.33334,187700.83,5310.313,178840.11,98975.023,1514.3038 -16623,20468,36973,36975,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.7658629,7.7260046,0,4,4,-13.898438,0,2,2,2019,22,9,37,46,1,9,0,7.5765381,7.5765381,0,0,0,0,0,1,1,0,2.5196049,0,34.07,43.55,15.07,61.88,6.666666666666667,1,1,0,0,9,6,4,1,669,429696.44,52547.363,250593.05,127989.37,2616.3193 -16623,20468,36974,-9,36973,36975,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1166.9847,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,669,429696.44,52547.363,250593.05,127989.37,2616.3193 -16623,20468,36975,36973,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.2958851,8.2890158,0,4,-4,-8.2289896,0,-9,-9,2019,23,10,41,56,1,10,0,11.021346,11.021346,0,0,0,0,0,1,1,0,0,0,15.07,61.88,34.07,43.55,8.333333333333334,1,1,0,0,5,6,4,1,669,429696.44,52547.363,250593.05,127989.37,2616.3193 -16624,20469,36976,-9,36977,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.32428,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,403.5,117632.14,52588.5,191004.36,73030.813,2325.3887 -16624,20469,36977,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.9437504,7.7989907,0,0,0,-1078.3931,-9,3,2,2019,14,2,40,0,1,2,0,8.6911421,8.6911421,0,0,0,0,0,1,1,0,0,0,48.65,51.93,-9,-9,6.666666666666667,1,1,0,1,5,10,3,0,403.5,117632.14,52588.5,191004.36,73030.813,2325.3887 -16625,20470,36978,-9,36979,36980,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.58734,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 -16625,20470,36979,36980,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.1058884,8.1407928,0,5,-1,11.020626,0,-9,-9,2019,7,0,40,30,1,0,0,8.9842367,8.9842367,0,0,0,0,0,0,0,0,6.7694817,0,56.11,44.4,57.06,57.76,8.333333333333334,1,1,0,0,4,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 -16625,20470,36980,36979,-9,-9,1,1,52,0,1,0,1,1,-9,0,5,8.7801046,8.5664997,0,5,1,25.006439,0,1,1,2019,7,0,40,41,1,0,0,14.181793,14.181793,0,0,0,0,0,0,0,0,3.3180606,0,57.06,57.76,56.11,44.4,8.333333333333334,1,1,0,0,11,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 -16625,20470,36981,-9,36979,36980,1,1,17,0,1,1,2,0,0,0,3,0,2.9651,2.9220729,0,0,-983.00757,-9,1,1,2019,22,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,3.2059157,0,36.08,60.5,-9,-9,5,1,1,0,0,0,9,4,1,328.75,1112615.3,600506.56,521158.03,0,4112.9814 -16626,20471,36982,-9,-9,-9,1,0,58,0,0,0,1,1,0,0,4,0,0,0,19,7,0,-9,1,1,2019,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,50.73,47,49,6.666666666666667,1,1,0,0,9,11,1,1,927,1594034.4,0,555416.13,0,735.96185 -16627,20472,36983,36984,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,50,0,24.950098,0,2,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3635088,0,57.16,56.15,53.22,52.37,10,1,1,0,0,0,10,3,1,281.5,1163551,688557.63,348594.56,28195.313,2200.7131 -16627,20472,36984,36983,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.0219421,8.1725111,50,0,106.26081,0,3,3,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,2.7332623,7.7812195,53.22,52.37,57.16,56.15,10,1,1,0,0,0,10,3,1,281.5,1163551,688557.63,348594.56,28195.313,2200.7131 -16628,20473,36985,36988,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.7713637,7.979723,0,16,-1,-26.18623,0,1,2,2019,18,6,25,24,1,6,0,12.93154,12.93154,0,0,0,0,0,1,1,0,.58157116,0,48.87,58.55,34.93,55.72,8.333333333333334,1,1,0,0,11,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 -16628,20473,36986,-9,36985,36988,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.9265,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 -16628,20473,36987,-9,36985,36988,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.1268,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 -16628,20473,36988,36985,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.8909435,9.0379477,0,16,1,-84.785126,0,2,2,2019,21,7,48,43,1,7,0,14.339309,14.339309,0,0,0,0,0,1,1,0,0,0,34.93,55.72,48.87,58.55,5,1,1,0,0,10,11,5,1,804.25,356635.5,96533.164,340256.72,178684.06,3728.8687 -16629,20474,36989,36990,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,1,1,0,-9,3,3,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,74.5,1,1,0,0,0,25.66,26.35,19.01,22.64,5,1,1,1,0,0,12,1,0,506.5,186579.72,0,0,0,1619.0349 -16629,20474,36990,36989,-9,-9,1,1,50,0,0,0,3,3,-9,1,1,0,0,0,1,-1,0,-9,-9,-9,2019,33,12,0,0,3,12,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,25.66,26.35,1.666666666666667,1,1,0,1,0,12,1,0,506.5,186579.72,0,0,0,1619.0349 -16630,20475,36991,-9,-9,-9,1,0,85,0,1,0,3,3,-9,0,2,0,0,0,0,0,-969.6131,0,3,3,2019,9,0,0,0,4,0,0,0,0,1,0,5.6108923,0,0,1,1,0,0,0,40.39,24.8,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,256,-128063.13,0,0,0,779.21771 -16630,20476,36992,36994,36991,-9,1,0,59,0,1,0,3,3,-9,0,4,6.3431602,6.1352887,0,7,1,-17.952934,0,3,3,2019,10,0,6,6,1,0,0,11.370437,11.370437,0,0,0,0,7,1,1,0,0,0,48.28,60.18,48.53,28.22,8.333333333333334,1,1,0,0,6,8,4,0,647.33331,167694.53,172021.7,0,0,2041.392 -16630,20476,36993,-9,36992,36994,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1091.1813,-9,3,2,2019,18,5,0,0,2,5,0,0,0,0,0,0,0,0,1,1,0,0,0,41.93,53.53,-9,-9,5,1,1,0,0,0,8,4,0,647.33331,167694.53,172021.7,0,0,2041.392 -16630,20476,36994,36992,-9,-9,1,1,58,0,1,0,2,2,-9,0,1,8.7001448,8.9847097,0,7,-1,-14.412185,0,-9,-9,2019,22,10,50,40,1,10,0,11.995724,11.995724,0,0,0,0,0,1,1,0,0,0,48.53,28.22,48.28,60.18,1.666666666666667,1,1,0,0,11,8,4,0,647.33331,167694.53,172021.7,0,0,2041.392 -16630,20477,36995,-9,36992,36994,1,1,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-922.04144,-9,3,2,2019,14,1,0,0,2,1,1,0,0,0,0,0,0,0,1,1,0,0,0,34.47,58.69,-9,-9,5,1,1,0,0,0,8,1,0,652,0,0,0,0,0 -16631,20478,36996,36997,-9,-9,1,0,37,1,2,0,3,3,-9,1,1,0,0,0,8,-11,0,0,-9,-9,2019,24,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,24.39,20.22,34.05,44.25,1.666666666666667,1,1,0,0,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 -16631,20478,36997,36996,-9,-9,1,1,48,1,2,0,3,3,-9,1,2,0,0,0,8,11,0,0,3,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,7,1,1,0,0,0,34.05,44.25,24.39,20.22,3.333333333333333,1,1,0,1,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 -16631,20478,36998,-9,36996,36997,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.64575,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 -16631,20478,36999,-9,36996,36997,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.42621,-9,3,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,533.25,-24326.965,0,0,0,3144.0044 -16631,20479,37000,-9,36996,36997,1,0,21,1,2,0,2,2,-9,0,4,7.4895973,7.5882783,0,0,0,-920.9325,0,3,3,2019,18,5,48,0,1,5,1,4.077147,4.077147,0,0,0,0,14.5,1,1,0,0,0,34.93,47.79,-9,-9,5,1,1,0,0,2,11,3,0,459,-183769.39,-2476.6357,0,0,1423.3132 -16632,20480,37001,-9,37005,37002,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.2211,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 -16632,20480,37002,37005,37006,-9,1,1,34,0,3,0,2,2,-9,0,4,8.6026821,8.2437449,0,14,3,2.264549,0,3,3,2019,10,0,36,36,1,1,0,13.237517,13.237517,0,0,0,0,7,1,1,0,0,0,50,57,48,57,7,2,3,0,0,10,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 -16632,20480,37003,-9,37005,37002,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-833.22906,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 -16632,20480,37004,-9,37005,37002,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.1537,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 -16632,20480,37005,37002,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,0,0,0,7,-3,5.9221873,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48,57,50,57,7,2,3,0,0,0,8,3,0,567,-136710.8,-18194.883,0,0,2114.8528 -16632,20481,37006,-9,-9,-9,1,0,78,0,3,0,2,2,-9,0,3,0,0,0,0,0,-895.52832,0,-9,-9,2019,10,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,0,642,0,0,0,0,1645.5229 -16633,20482,37007,37008,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.0405035,8.1656456,0,6,-1,107.72779,0,2,2,2019,20,8,25,25,1,8,0,14.120385,14.120385,0,0,0,0,0,0,0,0,8.3719616,0,48.45,57.49,54.77,55.87,6.666666666666667,1,1,0,0,6,9,5,1,458,587495.13,309364.44,0,0,5679.9868 -16633,20482,37008,37007,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5235901,8.6866159,0,6,1,-95.11068,0,2,3,2019,7,0,30,30,1,0,0,18.331495,18.331495,0,0,0,0,0,0,0,0,3.9074852,0,54.77,55.87,48.45,57.49,8.333333333333334,1,1,0,0,6,9,5,1,458,587495.13,309364.44,0,0,5679.9868 -16634,20483,37009,37010,-9,-9,1,0,43,0,0,0,3,3,-9,0,2,7.1231642,6.9524608,0,9,-7,6.564754,0,2,3,2019,11,0,22,16,1,0,0,5.0771327,5.0771327,0,0,0,0,2,1,1,0,0,0,44.48,52.88,55.31,42.2,5,1,1,0,0,11,10,4,1,1755,332299.5,-1752.3799,253992.55,0,2697.6765 -16634,20483,37010,37009,-9,-9,1,1,50,0,0,0,2,2,-9,1,3,8.567935,8.4296808,0,9,7,6.1363144,0,2,1,2019,9,0,30,25,1,0,0,16.740202,16.740202,0,0,0,0,2,1,1,0,1.7519847,0,55.31,42.2,44.48,52.88,8.333333333333334,1,1,0,0,10,10,4,1,1755,332299.5,-1752.3799,253992.55,0,2697.6765 -16634,20484,37011,-9,37009,37010,1,0,19,0,0,1,2,0,0,1,4,0,0,0,0,0,-1094.285,-9,3,2,2019,19,5,0,0,2,5,1,0,0,0,0,0,0,2,1,1,0,1.5985566,0,19.32,64.25,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,344,11087.534,0,0,0,648.17749 -16635,20485,37012,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,8.0615387,7.9257479,0,0,-1044.389,0,3,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.8280096,7.9310851,58.02,42.12,-9,-9,10,1,1,0,0,0,10,4,1,569,528169.94,194286.36,315649.25,0,2303.1973 -16636,20486,37013,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1036.4606,0,3,3,2019,13,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,0,44.06,27.38,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,351,0,0,0,0,1534.7017 -16637,20487,37014,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.6987381,8.7299528,5.9784408,0,0,-1138.1877,0,3,3,2019,6,0,15,32,1,0,0,61.8484,61.8484,0,0,0,0,0,1,1,0,6.3834395,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,404,622298.13,442346.53,134399.81,0,3148.2217 -16637,20487,37015,-9,37014,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.0957,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,5,1,404,622298.13,442346.53,134399.81,0,3148.2217 -16638,20488,37016,-9,37018,37019,1,1,16,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1172.6353,-9,2,2,2019,11,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,2.3990843,0,57.88,44.12,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 -16638,20488,37017,-9,37018,37019,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.7437,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 -16638,20488,37018,37019,-9,-9,1,0,44,1,3,0,2,2,-9,0,3,0,0,0,10,0,-59.441444,0,2,3,2019,13,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,48.38,31.02,6.666666666666667,1,1,0,0,7,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 -16638,20488,37019,37018,-9,-9,1,1,44,1,3,0,2,2,-9,0,2,8.3592949,8.2114096,0,10,0,-67.850006,0,-9,-9,2019,14,3,39,54,1,3,0,10.449856,10.449856,0,0,0,0,0,1,1,0,0,0,48.38,31.02,41.64,54.12,3.333333333333333,1,1,0,0,8,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 -16638,20488,37020,-9,37018,37019,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.0067,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,626.20001,50727.633,49811.215,154792.3,87991.391,2216.4883 -16639,20489,37021,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1059.2844,0,-9,-9,2019,18,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,4.0458426,0,43.52,27.66,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,768,-354650.97,0,0,0,1099.2168 -16640,20490,37022,37023,-9,-9,1,0,52,0,2,0,1,1,-9,0,2,7.2081099,6.9774599,0,18,3,84.356789,0,3,3,2019,19,7,24,5,1,7,0,6.1304913,6.1304913,0,0,0,0,0,1,1,0,3.4159951,0,43.28,43.93,52.24,50.75,8.333333333333334,1,1,0,0,11,4,2,1,204,113183.23,79274.281,106958.89,71388.133,1837.4739 -16640,20490,37023,37022,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,7.3348441,7.0574479,0,8,-3,-94.859138,-9,-9,-9,2019,9,0,50,0,1,0,0,2.7089896,2.7089896,0,0,0,0,0,1,1,0,3.7872858,0,52.24,50.75,43.28,43.93,8.333333333333334,1,1,0,0,11,4,2,1,204,113183.23,79274.281,106958.89,71388.133,1837.4739 -16641,20491,37024,37027,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,8.4634571,8.6178989,0,11,3,24.453243,0,1,2,2019,5,0,40,45,1,0,0,18.87055,18.87055,0,0,0,0,14.5,1,1,0,0,0,55.66,54.25,50.51,53.71,1.666666666666667,1,1,0,0,5,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 -16641,20491,37025,-9,37027,37024,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.5311,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 -16641,20491,37026,-9,37027,37024,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.57544,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 -16641,20491,37027,37024,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.9603224,9.0902872,0,11,-3,27.286863,0,1,1,2019,9,0,42,48,1,0,0,24.360237,24.360237,0,0,0,0,2,1,1,0,6.1386104,0,50.51,53.71,55.66,54.25,8.333333333333334,1,1,0,0,5,5,5,1,1203.5,542014.94,224985.84,321356.84,20912.482,5163.1851 -16642,20492,37028,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.0018811,8.0794439,7.2049732,0,0,-1001.0295,0,2,2,2019,6,0,18,32,1,0,0,8.555397,8.555397,0,0,0,0,2,1,1,0,0,7.7111902,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,609,142872.25,333176.47,239455.45,60597.996,1308.9824 -16642,20493,37029,-9,37028,-9,1,0,23,0,0,0,2,2,-9,0,5,6.8738647,6.9518452,0,0,0,-1086.6525,-9,2,1,2019,10,0,20,0,1,0,1,7.4998894,7.4998894,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,4,5,0,0,7,2,2,1,519,2255.9077,0,0,0,1034.3176 -16642,20494,37030,-9,37028,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.62579,-9,2,-9,2019,17,5,0,0,2,5,1,0,0,0,0,0,0,0,1,1,0,2.0163567,0,31.08,55.98,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,353,128754.32,0,0,0,170.05849 -16642,20495,37031,-9,37028,-9,1,0,18,0,0,1,2,0,0,1,4,0,0,0,0,0,-1099.2335,-9,2,-9,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,.55543721,0,45.12,58.81,-9,-9,10,1,1,0,0,0,2,1,1,362,59901.012,0,0,0,787.01172 -16643,20496,37032,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.8354435,9.1617622,0,0,0,-1127.7072,0,2,2,2019,9,0,53,38,1,0,0,15.746859,15.746859,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,226,680996.63,404948.5,325895,0,2744.6609 -16644,20497,37033,37034,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.3579416,7.2167935,0,7,-2,2.0645993,0,3,2,2019,11,0,38,40,1,0,0,5.3335667,5.3335667,0,0,0,0,0,0,0,0,7.7364349,0,56.5,48.33,54.79,55.86,5,1,1,0,0,8,9,3,0,1240.5,379118.19,237328.53,207729.95,132267,3187.9797 -16644,20497,37034,37033,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4277935,7.5144687,0,7,2,-128.1263,0,2,2,2019,9,0,30,37,1,0,0,9.8244524,9.8244524,0,0,0,0,0,0,0,0,2.665869,0,54.79,55.86,56.5,48.33,8.333333333333334,1,1,0,0,6,9,3,0,1240.5,379118.19,237328.53,207729.95,132267,3187.9797 -16644,20498,37035,-9,37034,37033,1,1,24,0,0,0,2,2,-9,0,4,7.5701146,7.9484324,0,0,0,-1019.938,0,2,2,2019,7,0,43,43,1,0,1,6.9569597,6.9569597,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,609,-155527.89,0,0,0,1002.9554 -16645,20499,37036,37037,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,7.0803227,7.1128201,8,8,61.945244,0,1,1,2019,19,7,0,0,4,7,0,0,0,0,0,0,0,71.5,1,1,0,0,7.0281277,54.14,13.37,55.94,7.25,3.333333333333333,1,1,0,0,0,2,2,0,569.5,1639356.5,1158856.8,281156.94,0,2011.7734 -16645,20499,37037,37036,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,8,-8,13.72847,0,3,3,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,2,1,1,0,0,0,55.94,7.25,54.14,13.37,3.333333333333333,1,1,0,0,0,2,2,0,569.5,1639356.5,1158856.8,281156.94,0,2011.7734 -16646,20500,37038,37039,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.6671915,5.5602012,38,-17,40.84882,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,6.4421568,5.8563204,51,46,55,45,7,1,1,0,0,0,7,5,1,244.5,2478137.5,52347.773,768301.13,0,16323.537 -16646,20500,37039,37038,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,10.388134,10.068898,37,17,-53.390259,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,9.1425114,10.192794,55,45,51,46,8,1,1,0,0,0,7,5,1,244.5,2478137.5,52347.773,768301.13,0,16323.537 -16647,20501,37040,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3084779,7.2664032,0,0,-1022.673,0,3,3,2019,14,3,0,0,4,3,0,0,0,0,0,0,0,0,1,1,0,0,7.2768326,32.23,47.35,-9,-9,3.333333333333333,1,1,0,0,7,13,3,1,981,267667.44,295622.44,0,0,1529.162 -16648,20502,37041,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.1173811,6.5235209,0,0,-1014.5655,0,3,3,2019,25,11,0,0,4,11,0,0,0,1,17.653948,10.508852,155.45938,0,1,1,0,0,6.2729354,32.33,20.42,-9,-9,5,1,1,0,0,0,2,2,0,871,340255.66,132220.28,194389.8,0,1259.4172 -16649,20503,37042,37044,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,7.5243607,7.3583798,0,6,-3,19.40925,0,2,2,2019,15,3,31,32,1,3,0,6.5965796,6.5965796,0,0,0,0,0,1,1,0,0,0,40.47,55.65,68.35000000000001,34.71,8.333333333333334,1,1,0,0,7,12,4,1,1821.6666,266081.09,118750.23,183403.55,91186.016,3437.9978 -16649,20503,37043,-9,37042,37044,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.2119,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1821.6666,266081.09,118750.23,183403.55,91186.016,3437.9978 -16649,20503,37044,37042,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.543807,8.3776817,0,6,3,-135.56001,0,2,3,2019,9,0,40,39,1,0,0,17.373779,17.373779,0,0,0,0,0,1,1,0,0,0,68.35000000000001,34.71,40.47,55.65,10,1,1,0,0,7,12,4,1,1821.6666,266081.09,118750.23,183403.55,91186.016,3437.9978 -16650,20504,37045,37046,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.2846613,7.9768872,0,2,3,195.90372,0,3,3,2019,14,2,47,48,1,2,0,11.011118,11.011118,0,0,0,0,0,0,0,0,0,0,59.88,48.2,39.24,53.72,6.666666666666667,2,3,0,0,7,10,4,1,536,549866.31,513713.19,0,0,2097.1885 -16650,20504,37046,37045,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.0556965,8.1491318,0,2,-3,-30.637815,0,3,2,2019,19,7,52,52,1,7,0,5.6976085,5.6976085,0,0,0,0,0,0,0,0,0,0,39.24,53.72,59.88,48.2,3.333333333333333,2,3,0,0,7,10,4,1,536,549866.31,513713.19,0,0,2097.1885 -16651,20505,37047,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.4819751,7.6809721,0,0,-952.86774,0,3,3,2019,5,0,0,40,4,0,0,0,0,0,0,0,0,2,1,1,0,3.2338338,7.5814281,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,48,623084.75,258279.59,280612.97,0,1002.0054 -16652,20506,37048,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-958.16559,-9,-9,-9,2019,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,4,6,1,0,524,0,0,0,0,0 -16653,20507,37049,-9,-9,-9,1,0,31,0,1,0,3,3,-9,0,4,7.4119921,7.5557165,5.6446738,0,0,-1034.6365,0,3,2,2019,21,7,25,24,1,7,0,9.6755915,9.6755915,0,0,0,0,0,1,1,0,6.4224744,0,20.99,65.94,-9,-9,1.666666666666667,1,1,0,1,10,13,3,0,681,-335249.25,-33429.664,0,0,764.6969 -16654,20508,37050,37051,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,6.8943515,8.1203003,8.1580935,7,3,39.674229,0,-9,-9,2019,13,1,6,10,1,1,0,23.159119,23.159119,0,0,0,0,0,0,0,0,0,7.5690475,46.27,57.3,54.37,54.8,8.333333333333334,1,1,0,0,5,13,4,1,301.5,609218.94,624922,0,0,3842.0283 -16654,20508,37051,37050,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,4.3813419,8.1398039,7.747067,36,-3,76.282738,0,2,3,2019,6,0,25,24,1,0,0,.3617633,.3617633,0,0,0,0,0,0,0,0,3.7996268,7.688374,54.37,54.8,46.27,57.3,8.333333333333334,1,1,0,0,8,13,4,1,301.5,609218.94,624922,0,0,3842.0283 -16655,20509,37052,37053,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.6157389,8.5642633,0,6,0,-64.237343,0,2,3,2019,9,0,45,50,1,0,0,15.157206,15.157206,0,0,0,0,0,1,1,0,0,0,51.24,58.84,47.94,37.73,8.333333333333334,1,1,0,0,7,11,5,1,1295,-75016.836,25389.127,74869.875,80450.219,4386.2041 -16655,20509,37053,37052,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.9323974,8.2388172,0,6,0,40.696449,0,2,3,2019,11,0,47,47,1,0,0,8.0486107,8.0486107,0,0,0,0,0,1,1,0,0,0,47.94,37.73,51.24,58.84,6.666666666666667,1,1,0,0,7,11,5,1,1295,-75016.836,25389.127,74869.875,80450.219,4386.2041 -16655,20510,37054,-9,37053,37052,1,0,22,0,0,0,2,2,-9,0,4,7.8996472,7.8601713,0,0,0,-1013.2197,0,2,2,2019,11,0,35,36,1,2,1,9.1757765,9.1757765,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,3,1,302,-26033.756,0,0,0,1803.5297 -16656,20511,37055,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.9907737,7.8286524,0,0,-1222.8052,0,2,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.4075685,7.9378037,59.31,49.81,-9,-9,10,1,1,0,0,0,9,4,1,674,890613.31,295273.94,337280.78,0,2398.5266 -16657,20512,37056,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,6.7450237,6.6571999,0,0,-884.13947,0,-9,-9,2019,15,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,3.5524454,6.4463239,40.58,43.59,-9,-9,10,1,1,0,0,0,5,2,0,512,577217,65746.188,213717,0,205.04742 -16658,20513,37057,37058,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.3948593,7.5172448,16,4,128.52473,0,3,3,2019,12,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.600265,55.78,49.92,51.14,60.45,8.333333333333334,1,1,0,0,8,7,2,1,1213,1312523.6,250915.19,704967.38,0,2324.8318 -16658,20513,37058,37057,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,0,0,16,-4,138.84894,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.9594052,0,51.14,60.45,55.78,49.92,8.333333333333334,1,1,0,0,7,7,2,1,1213,1312523.6,250915.19,704967.38,0,2324.8318 -16659,20514,37059,37060,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.5996838,7.7854075,0,1,1,-32.903156,-9,2,1,2019,20,8,30,0,1,8,0,8.5367336,8.5367336,0,0,0,0,0,0,0,0,0,0,35.01,60.76,35.95,59.04,3.333333333333333,1,1,0,0,4,6,4,0,910,74541.727,-87734.813,0,0,2479.825 -16659,20514,37060,37059,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.1635208,8.0623722,0,1,-1,24.223236,-9,-9,-9,2019,18,6,38,0,1,6,0,14.189385,14.189385,0,0,0,0,0,0,0,0,0,0,35.95,59.04,35.01,60.76,5,1,1,0,0,4,6,4,0,910,74541.727,-87734.813,0,0,2479.825 -16660,20515,37061,37062,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.9450636,8.6238394,0,9,9,65.796371,0,2,2,2019,7,0,72,60,1,0,0,8.5877829,8.5877829,0,0,0,0,0,1,1,0,0,0,51.83,57.2,30.83,62.98,8.333333333333334,1,1,0,0,10,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 -16660,20515,37062,37061,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,6.5616946,6.5510726,0,9,0,23.264046,0,2,2,2019,11,0,13,16,1,0,0,4.7993355,4.7993355,0,0,0,0,0,1,1,0,.39742574,0,30.83,62.98,51.83,57.2,6.666666666666667,1,1,0,0,6,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 -16660,20515,37063,-9,37062,37061,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7256,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 -16660,20515,37064,-9,37062,37061,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.93646,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,947.25,-37266.523,49844.391,0,0,2432.5022 -16661,20516,37065,37066,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,45,-4,19.602375,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,11.064354,0,14.5,1,1,0,1.8637056,0,46.87,40.64,62.03,41.71,8.333333333333334,1,1,0,0,0,7,3,1,846,831887,388639.81,264454.81,0,1902.6094 -16661,20516,37066,37065,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.8210983,7.9881101,45,4,33.386921,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,4.5347576,7.765656,62.03,41.71,46.87,40.64,8.333333333333334,1,1,0,0,0,7,3,1,846,831887,388639.81,264454.81,0,1902.6094 -16661,20517,37067,-9,37065,37066,1,0,31,0,0,0,1,1,-9,0,5,0,0,0,0,0,-876.03705,0,3,2,2019,10,0,0,0,3,0,0,0,0,0,0,0,0,7,1,1,0,2.1573124,0,38.24,63.73,-9,-9,5,1,1,1,1,2,7,1,1,266,51385.223,0,0,0,313.40897 -16662,20518,37068,37069,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,25,0,-7.3514614,0,3,3,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,49,50,8.333333333333334,2,3,0,0,1,4,4,1,602,33863.844,55502.758,158159.63,42279.125,2518.5835 -16662,20518,37069,37068,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.7270756,8.6171255,0,10,0,50.169094,0,-9,-9,2019,11,0,50,20,1,1,0,18.470465,18.470465,0,0,0,0,0,0,0,0,0,0,49,50,46.92,60.71,7,2,3,0,0,1,4,4,1,602,33863.844,55502.758,158159.63,42279.125,2518.5835 -16662,20519,37070,-9,37068,37069,1,1,33,0,0,0,1,1,-9,0,4,0,0,0,0,0,-922.00238,0,2,3,2019,6,0,0,35,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,1,0,4,4,1,1,1962,484695.28,0,0,0,0 -16662,20520,37071,-9,37068,37069,1,1,28,0,0,0,1,1,-9,0,4,8.4758835,8.4505224,0,0,0,-951.15356,0,2,3,2019,6,0,37,37,1,0,1,13.183901,13.183901,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,214,134274.11,-18591.699,0,0,1697.2792 -16663,20521,37072,37073,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.0983887,5.5669022,6,-2,-69.087654,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4366317,5.0903296,58.23,43.46,57.06,57.76,8.333333333333334,1,1,0,0,5,2,2,0,551.5,-49044.406,56759.602,0,0,3430.9624 -16663,20521,37073,37072,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,6.9727249,7.0978575,0,6,2,35.901566,0,-9,-9,2019,7,0,50,50,1,0,0,2.8507857,2.8507857,0,0,0,0,0,1,1,0,8.0816565,0,57.06,57.76,58.23,43.46,8.333333333333334,1,1,0,0,7,2,2,0,551.5,-49044.406,56759.602,0,0,3430.9624 -16664,20522,37074,37075,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,8.1380835,8.0361595,0,2,-3,-110.39101,0,-9,-9,2019,12,0,37,40,1,0,0,8.1858416,8.1858416,0,0,0,0,0,0,0,0,0,0,46.67,55.57,33.92,54.9,8.333333333333334,1,1,0,0,2,9,5,1,3635.5,43292.398,42463.629,0,0,2992.3955 -16664,20522,37075,37074,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.6386042,8.4096451,0,2,3,-42.931168,0,2,2,2019,33,11,75,37,1,11,0,8.2992363,8.2992363,0,0,0,0,0,0,0,0,2.9248924,0,33.92,54.9,46.67,55.57,3.333333333333333,1,1,0,0,8,9,5,1,3635.5,43292.398,42463.629,0,0,2992.3955 -16665,20523,37076,37077,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.9447241,8.0463276,43,0,-75.000778,0,3,3,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.5073924,7.9585166,53.22,47.16,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,1,240,926785.38,711439.19,365719.06,0,3340.5186 -16665,20523,37077,37076,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.4951015,6.750082,43,0,-15.092968,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,7.1780653,6.1980381,57.16,56.15,53.22,47.16,8.333333333333334,1,1,0,0,4,5,3,1,240,926785.38,711439.19,365719.06,0,3340.5186 -16666,20524,37078,37079,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,5.1223254,8.0864,8.5089159,22,-4,24.060263,-9,2,2,2019,10,0,30,0,1,1,0,.98707038,.98707038,0,0,0,0,0,1,1,0,7.0512118,8.3099403,50,49,57.09,46.7,7,1,1,0,0,1,9,4,1,636.5,1052184.8,225180.06,626116.25,0,4198.3696 -16666,20524,37079,37078,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.042182,7.1292434,22,4,-12.891502,0,2,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4531517,7.3645658,57.09,46.7,50,49,8.333333333333334,1,1,0,0,0,9,4,1,636.5,1052184.8,225180.06,626116.25,0,4198.3696 -16667,20525,37080,37081,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,9.1666174,9.1714754,0,6,6,142.17802,0,2,2,2019,5,0,48,45,1,0,0,22.240355,22.240355,0,0,0,0,0,0,0,0,7.2328281,0,60.02,56.42,52.45,45.09,8.333333333333334,2,3,0,0,12,2,5,1,552,577748.56,442705.41,214905.48,155995.05,5627.4414 -16667,20525,37081,37080,-9,-9,1,0,35,0,0,0,1,1,-9,0,2,8.4124403,8.3655796,0,6,-6,53.516937,0,-9,-9,2019,4,0,40,35,1,0,0,15.875018,15.875018,0,0,0,0,0,0,0,0,3.6627574,0,52.45,45.09,60.02,56.42,8.333333333333334,1,1,0,0,7,2,5,1,552,577748.56,442705.41,214905.48,155995.05,5627.4414 -16668,20526,37082,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.0588646,8.2068882,0,0,0,-972.39777,0,2,2,2019,18,7,15,0,1,7,0,29.300379,29.300379,0,0,0,0,0,0,0,0,0,0,47.86,51.1,-9,-9,3.333333333333333,1,1,0,0,9,12,4,0,813,176987.38,246649.17,0,0,1412.6158 -16668,20527,37083,-9,37082,-9,1,1,21,0,0,0,2,2,-9,0,4,7.8357282,7.6675668,0,0,0,-891.76605,-9,2,-9,2019,11,0,40,0,1,2,1,6.3045654,6.3045654,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,3,0,178,79611.406,0,0,0,641.20044 -16669,20528,37084,37085,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1140566,8.0751677,0,6,1,-4.8594098,0,2,3,2019,9,0,50,40,1,0,0,6.9760833,6.9760833,0,0,0,0,2,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,7,11,4,1,1211.5,678030.75,392636.69,68317.188,0,2631.7705 -16669,20528,37085,37084,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.767045,7.7885346,0,6,-1,-19.493097,0,-9,-9,2019,7,0,29,28,1,0,0,10.033057,10.033057,0,0,0,0,0,0,0,0,6.4605255,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,7,11,4,1,1211.5,678030.75,392636.69,68317.188,0,2631.7705 -16669,20529,37086,-9,37085,37084,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.1773,0,3,2,2019,11,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,36.87,58.96,-9,-9,8.333333333333334,1,1,1,0,6,11,1,1,664,149722.88,0,0,0,0 -16669,20530,37087,-9,37085,37084,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-916.60211,0,3,2,2019,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,1,0,3,11,1,1,318,-55851.242,0,0,0,0 -16670,20531,37088,37089,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,6.5676193,7.8029175,7.1230803,53,0,46.605816,0,3,3,2019,10,0,20,20,1,0,0,3.2452254,3.2452254,0,0,0,0,14.5,1,1,0,0,7.3843837,52.65,51.64,54.2,57.49,0,1,1,0,0,10,4,3,1,387.5,335443.19,200441.5,165017.78,0,1674.1653 -16670,20531,37089,37088,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.0031433,5.2331038,53,0,26.377197,0,-9,-9,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,2.7320278,5.397985,54.2,57.49,52.65,51.64,1.666666666666667,1,1,0,0,8,4,3,1,387.5,335443.19,200441.5,165017.78,0,1674.1653 -16671,20532,37090,37091,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7222233,7.9204521,0,9,11,-93.589859,0,3,3,2019,10,1,31,31,1,1,0,9.2838821,9.2838821,0,0,0,0,0,0,0,0,0,0,50.27,46.95,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,1514.5,261665.78,34651.203,351004.63,279580.25,5218.667 -16671,20532,37091,37090,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.3127766,9.3661137,0,9,-11,92.630882,0,2,2,2019,5,0,46,46,1,0,0,31.834362,31.834362,0,0,0,0,0,0,0,0,1.6605012,0,54.2,57.49,50.27,46.95,8.333333333333334,1,1,0,0,11,9,5,1,1514.5,261665.78,34651.203,351004.63,279580.25,5218.667 -16672,20533,37092,37093,-9,-9,1,1,62,0,0,0,3,3,-9,1,3,0,0,0,8,4,0,0,-9,-9,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,51.74,31.37,49.01,28.95,1.666666666666667,1,1,0,0,0,12,2,0,567,307628.88,0,0,0,2079.2173 -16672,20533,37093,37092,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,40,-4,0,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.01,28.95,51.74,31.37,1.666666666666667,1,1,0,0,0,12,2,0,567,307628.88,0,0,0,2079.2173 -16672,20534,37094,-9,37093,37092,1,1,31,0,0,0,2,2,-9,0,4,7.7032781,7.7609496,0,0,0,-1089.9735,0,2,3,2019,10,0,37,37,1,1,1,6.8207908,6.8207908,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,3,0,723,95089.914,90705.539,0,0,1575.0247 -16673,20535,37095,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-918.68396,0,3,3,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,59.06,-9,-9,8.333333333333334,1,1,0,0,3,6,1,0,577,186401.97,0,0,0,1052.472 -16674,20536,37096,37097,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,25,-1,0,0,3,-9,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,49.42,25.34,8.333333333333334,1,1,1,0,0,9,1,0,369.5,-105900.8,0,0,0,773.52197 -16674,20536,37097,37096,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,25,1,0,0,3,3,2019,23,7,0,0,3,7,0,0,0,0,0,0,0,0,1,1,0,0,0,49.42,25.34,48.28,60.18,5,1,1,1,0,0,9,1,0,369.5,-105900.8,0,0,0,773.52197 -16675,20537,37098,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.0751991,8.195405,0,0,0,-871.71014,0,-9,-9,2019,12,2,44,40,1,2,0,9.0237837,9.0237837,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,6,11,4,0,279,-543.60803,0,0,0,1249.1038 -16675,20538,37099,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.763968,8.1624441,0,0,0,-1074.9755,0,2,2,2019,6,0,38,38,1,0,0,10.256013,10.256013,0,0,0,0,0,0,0,0,0,0,45.46,52.15,-9,-9,8.333333333333334,1,1,0,0,9,11,3,0,662,-154896.38,-54267.875,0,0,912.16949 -16676,20539,37100,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.8483095,7.7450333,0,0,0,-1070.7222,0,-9,-9,2019,9,0,36,36,1,0,0,10.005214,10.005214,0,0,0,0,0,0,0,0,4.2741666,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,138,101895.15,0,197.20839,0,1798.17 -16677,20540,37101,37102,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.1825953,9.2241287,0,3,6,-29.786352,0,-9,-9,2019,9,1,58,38,1,1,0,19.883469,19.883469,0,0,0,0,0,0,0,0,7.7106414,0,47.52,34.91,54.1,59.11,8.333333333333334,1,1,0,0,2,8,5,0,394.5,1171115,117764.89,1011861.3,470312.31,6740.6641 -16677,20540,37102,37101,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.9269629,8.970499,0,3,-6,-15.729787,0,2,1,2019,12,0,36,54,1,0,0,19.437494,19.437494,0,0,0,0,0,0,0,0,2.07863,0,54.1,59.11,47.52,34.91,8.333333333333334,1,1,0,0,9,8,5,0,394.5,1171115,117764.89,1011861.3,470312.31,6740.6641 -16678,20541,37103,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.7216673,6.6159105,0,0,-966.91718,0,2,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.4207244,6.8584118,51.17,49.39,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,749,747610.63,53594.27,222447.58,0,1232.2079 -16679,20542,37104,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.0020189,6.8988528,0,0,0,-886.3501,0,2,3,2019,11,0,32,16,1,0,0,4.7056718,4.7056718,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,5,1,1,0,0,4,8,2,0,782,54574.539,0,0,0,1725.692 -16679,20542,37105,-9,37104,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.96674,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,782,54574.539,0,0,0,1725.692 -16679,20542,37106,-9,37104,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1335,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,0,782,54574.539,0,0,0,1725.692 -16680,20543,37107,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.194252,6.3253913,0,0,-884.48846,0,1,1,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1054506,6.0880747,57.09,46.7,-9,-9,8.333333333333334,2,3,0,0,7,8,2,1,282,941431.31,266997.44,227201.47,0,780.71979 -16681,20544,37108,37109,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.5054646,8.714879,0,9,4,74.828651,0,-9,-9,2019,9,0,67,46,1,0,0,9.8679333,9.8679333,0,0,0,0,0,0,0,0,0,0,46,50,48,51,10,1,1,0,0,10,9,5,1,324.5,484201.88,35667.98,377291.06,294707.81,4708.874 -16681,20544,37109,37108,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.7776966,8.7042856,0,9,-4,64.023705,0,-9,-9,2019,11,0,48,53,1,0,0,14.625672,14.625672,0,0,0,0,0,0,0,0,.28241485,0,48,51,46,50,10,1,1,0,0,12,9,5,1,324.5,484201.88,35667.98,377291.06,294707.81,4708.874 -16681,20545,37110,-9,37108,37109,1,1,19,0,0,0,2,2,-9,0,5,8.0917759,7.8892288,0,0,0,-1189.0372,0,2,2,2019,9,0,25,60,1,0,1,15.753393,15.753393,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1149,-421397.41,65017.141,0,0,1553.4077 -16681,20546,37111,-9,37108,37109,1,0,18,0,0,0,2,2,1,0,5,7.3723078,7.3993454,0,0,0,-1104.222,-9,3,2,2019,1,0,32,0,1,0,1,5.6197124,5.6197124,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,2,9,3,1,489,-218838.81,79761.648,0,0,296.22626 -16682,20547,37112,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,9.2483168,9.194109,0,0,0,-1010.4813,0,2,2,2019,11,2,48,47,1,2,0,29.514523,29.514523,0,0,0,0,0,0,0,0,1.2095263,0,47.27,51.2,-9,-9,8.333333333333334,2,3,0,0,9,7,5,1,1225.3334,323817.84,195457.86,220313.72,51415.586,3581.7751 -16682,20547,37113,-9,37112,-9,1,0,16,0,2,1,2,0,-9,0,2,0,3.0049179,2.7254381,0,0,-1024.9752,-9,1,-9,2019,31,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,3.0036778,0,23.59,52.56,-9,-9,1.666666666666667,2,3,0,0,0,7,5,1,1225.3334,323817.84,195457.86,220313.72,51415.586,3581.7751 -16682,20547,37114,-9,37112,-9,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1012.277,-9,1,-9,2019,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,40,44,-9,-9,5,2,3,-9,0,0,7,5,1,1225.3334,323817.84,195457.86,220313.72,51415.586,3581.7751 -16683,20548,37115,37116,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,9,-7,0,0,2,2,2019,20,8,0,0,3,8,0,0,0,0,0,0,0,120,1,1,0,0,0,35.56,33.98,30.57,24.42,1.666666666666667,1,1,0,0,0,9,1,0,263.5,2963539,1232384.3,795643.69,0,2518.1492 -16683,20548,37116,37115,-9,-9,1,1,59,0,0,0,1,1,-9,1,1,0,0,0,9,7,0,0,2,2,2019,27,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,30.57,24.42,35.56,33.98,5,1,1,0,0,0,9,1,0,263.5,2963539,1232384.3,795643.69,0,2518.1492 -16684,20549,37117,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.5153704,8.5025225,0,0,0,-1055.8268,0,3,3,2019,12,0,39,37,1,0,0,10.151703,10.151703,0,0,0,0,0,0,0,0,0,0,45.55,60.15,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,2117,251416.67,122726.28,0,0,1434.6554 -16685,20550,37118,-9,37120,37119,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.95612,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 -16685,20550,37119,37120,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,8.6469831,8.5845652,0,6,-1,-61.357876,0,2,-9,2019,13,2,65,60,1,2,0,11.713243,11.713243,0,0,0,0,0,1,1,0,0,0,37.76,55.72,34.13,61.39,8.333333333333334,1,1,0,0,7,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 -16685,20550,37120,37119,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,7.4622283,7.5675244,0,6,1,-60.029148,0,2,2,2019,11,2,14,20,1,2,0,13.573366,13.573366,0,0,0,0,0,1,1,0,0,0,34.13,61.39,37.76,55.72,8.333333333333334,1,1,0,1,4,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 -16685,20550,37121,-9,37120,37119,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.58234,-9,1,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,533.25,-16178.314,-176.43652,87030.266,85919,2774.7024 -16686,20551,37122,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1005.0272,0,3,-9,2019,8,0,0,0,4,0,0,0,0,1,0,5.4231806,0,0,1,1,0,0,0,44.55,54.01,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,425,416193.19,0,-7193.1392,0,879.71185 -16687,20552,37123,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.586834,8.6041241,0,0,0,-950.25281,0,2,-9,2019,12,0,59,52,1,0,0,13.299854,13.299854,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,8.333333333333334,1,1,0,0,10,12,5,0,320,67347.078,187757.72,90689.25,44935.086,1537.4611 -16688,20553,37124,37125,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.1803498,7.2405233,6,0,-38.44978,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.1342578,7.0807018,60.12,54.8,56.18,53.85,10,1,1,0,0,0,4,3,1,828.5,291379.22,165362.66,152403.52,0,2789.8713 -16688,20553,37125,37124,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.3319259,7.3853302,6,9,121.89703,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,15.874732,0,0,1,1,0,6.5075803,7.3690534,56.18,53.85,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,828.5,291379.22,165362.66,152403.52,0,2789.8713 -16689,20554,37126,-9,37128,37127,1,0,17,0,0,0,3,3,1,0,5,0,0,0,0,0,-1062.0706,-9,2,2,2019,5,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,5,3,0,753.33331,27953.229,0,0,0,1739.1689 -16689,20554,37127,37128,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,7.3457351,7.3357034,0,25,0,-74.076431,0,2,2,2019,8,0,25,24,1,0,0,9.9059839,9.9059839,0,0,0,0,0,1,1,0,0,0,56.98,43.29,40.55,28.87,6.666666666666667,1,1,0,0,10,5,3,0,753.33331,27953.229,0,0,0,1739.1689 -16689,20554,37128,37127,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.2405319,5.9661975,0,25,9,98.428871,0,3,2,2019,11,1,5,5,1,1,0,10.294337,10.294337,0,0,0,0,0,1,1,0,0,0,40.55,28.87,56.98,43.29,5,1,1,0,0,9,5,3,0,753.33331,27953.229,0,0,0,1739.1689 -16690,20555,37129,-9,37130,37131,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.7242,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 -16690,20555,37130,37131,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.5238352,8.5697756,0,10,-5,35.221046,0,2,3,2019,19,7,32,32,1,7,0,16.515036,16.515036,0,0,0,0,2,1,1,0,0,0,38.49,41.8,36.2,64.19,8.333333333333334,1,1,0,0,12,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 -16690,20555,37131,37130,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5284843,8.4838629,0,10,5,-33.5392,0,2,2,2019,12,0,42,47,1,0,0,12.29953,12.29953,0,0,0,0,0,1,1,0,0,0,36.2,64.19,38.49,41.8,5,1,1,0,0,12,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 -16690,20555,37132,-9,37130,37131,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1170.0829,-9,1,1,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,1.9206028,0,42.3,53.28,-9,-9,5,4,2,0,0,1,4,4,1,699.5,885321.75,892378.63,267202.56,51283.156,3498.8696 -16691,20556,37133,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.5401859,6.515985,0,0,-967.04413,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6475086,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,475,321841.03,322558.47,204363.52,0,674.86517 -16692,20557,37134,37135,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.62255,8.4467611,0,9,0,-60.02179,0,-9,-9,2019,11,0,46,35,1,0,0,13.77197,13.77197,0,0,0,0,0,0,0,0,0,0,55.34,54.26,49.61,54.24,8.333333333333334,1,1,0,0,11,13,4,1,235,1226768.3,998211.13,0,0,1829.3429 -16692,20557,37135,37134,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,31,0,-36.236168,0,3,3,2019,12,0,0,32,3,0,0,0,0,0,0,0,0,42,0,0,0,0,0,49.61,54.24,55.34,54.26,6.666666666666667,1,1,1,0,11,13,4,1,235,1226768.3,998211.13,0,0,1829.3429 -16692,20558,37136,-9,37135,37134,1,0,24,0,0,0,2,2,-9,0,3,8.1571226,8.0899649,0,0,0,-931.1106,0,2,2,2019,11,0,36,65,1,0,1,12.56548,12.56548,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,457,-136055.55,0,0,0,1434.2572 -16693,20559,37137,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1045.869,-9,-9,-9,2019,15,3,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,50.05,-9,-9,8.333333333333334,1,1,0,0,4,10,1,0,1294,0,0,0,0,973.74976 -16694,20560,37138,37140,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,7.816051,7.9058394,0,28,5,-71.690674,0,1,1,2019,8,0,48,56,1,0,0,5.5659351,5.5659351,0,0,0,0,0,1,1,0,6.907969,0,57.16,56.15,54.69,57.47,6.666666666666667,4,2,0,0,11,8,3,1,379,651104.31,127553.52,179340.5,0,1967.2928 -16694,20560,37139,-9,37140,37138,1,0,16,0,1,1,2,0,-9,0,5,0,4.8931131,5.3062162,0,0,-861.0954,-9,3,2,2019,9,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,4.3402271,0,48.42,60.53,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,379,651104.31,127553.52,179340.5,0,1967.2928 -16694,20560,37140,37138,-9,-9,1,0,52,0,1,0,3,3,-9,0,5,6.6859965,6.9528956,0,28,-5,-52.272045,0,2,3,2019,6,0,15,16,1,0,0,6.2242112,6.2242112,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.16,56.15,8.333333333333334,1,1,0,0,9,8,3,1,379,651104.31,127553.52,179340.5,0,1967.2928 -16695,20561,37141,37142,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.7437544,7.9656458,56,0,62.218925,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.520438,7.6888361,60.3,49.25,34.91,41.69,10,1,1,0,0,0,4,3,1,540,723920.13,272845.75,298454.94,0,2148.5742 -16695,20561,37142,37141,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,7,0,-104.94233,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,0,0,0,2,1,1,0,3.7901647,0,34.91,41.69,60.3,49.25,8.333333333333334,1,1,0,0,0,4,3,1,540,723920.13,272845.75,298454.94,0,2148.5742 -16696,20562,37143,37144,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.6455107,8.0783052,46,1,-153.86667,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,27,1,1,0,3.7111766,8.0074883,53.5,53.7,46.61,32.5,8.333333333333334,1,1,0,0,0,10,3,1,1848.5,2195386,499297.5,629396.13,0,2442.3252 -16696,20562,37144,37143,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.7190008,5.8193054,46,-1,167.2238,0,3,-9,2019,21,8,0,0,4,8,0,0,0,1,0,28.10779,0,0,1,1,0,2.5902467,5.95467,46.61,32.5,53.5,53.7,6.666666666666667,1,1,0,0,0,10,3,1,1848.5,2195386,499297.5,629396.13,0,2442.3252 -16697,20563,37145,37146,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,22,-24,0,0,3,3,2019,15,4,0,0,3,4,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,47.91,36.29,41.5,0,1,1,0,0,0,1,1,0,1735.5,-295356.53,0,0,0,1473.2112 -16697,20563,37146,37145,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,20,24,0,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,74.5,1,1,0,0,0,36.29,41.5,45.06,47.91,8.333333333333334,1,1,0,0,0,1,1,0,1735.5,-295356.53,0,0,0,1473.2112 -16698,20564,37147,37148,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,11,-20,-117.91211,0,3,2,2019,25,11,0,0,4,11,0,0,0,0,0,0,0,27,1,1,0,0,0,31.55,29.22,40.67,22.78,6.666666666666667,1,1,0,0,0,10,2,0,895,761689.88,141523.97,449326.56,0,2773.9683 -16698,20564,37148,37147,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.9322901,7.1832857,11,20,-8.5377131,0,-9,-9,2019,17,4,0,0,4,4,0,0,0,1,9.5919313,119.24548,88.597221,71.5,1,1,0,6.7749624,7.0852852,40.67,22.78,31.55,29.22,8.333333333333334,1,1,0,0,0,10,2,0,895,761689.88,141523.97,449326.56,0,2773.9683 -16699,20565,37149,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.4381728,7.1854768,0,0,-1165.2714,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.8191056,7.0132952,60.02,56.42,-9,-9,10,1,1,0,0,7,13,3,1,122,335165.56,264592.13,113259.15,0,990.32916 -16700,20566,37150,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.2953677,6.9420085,0,0,-1071.5475,0,3,2,2019,12,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,6.4013677,1.5474726,36.28,17.11,-9,-9,5,1,1,0,0,0,7,2,0,533,567179.19,110389.27,240786.23,0,2568.3977 -16701,20567,37151,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.1895857,6.1145239,0,0,-986.86469,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,3.4815457,5.9011159,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,295,742474.13,84217.023,448752,0,1330.0791 -16702,20568,37152,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1115.2954,0,-9,-9,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.03,48.69,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,290,-9690.5654,0,0,0,1111.8149 -16702,20569,37153,-9,37152,-9,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1002.2775,0,3,-9,2019,16,4,0,0,3,4,1,0,0,0,0,0,0,71.5,1,1,0,0,0,37.96,24.76,-9,-9,5,1,1,0,0,0,11,1,0,299,-592827,0,0,0,-143.48003 -16702,20570,37154,-9,37152,-9,1,0,19,0,0,0,3,3,-9,0,4,0,0,0,0,0,-889.60059,1,3,-9,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,0,42,-266775.88,0,0,0,0 -16703,20571,37155,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.9218855,7.793128,0,0,0,-995.33887,0,3,3,2019,5,0,43,37,1,0,0,5.7423224,5.7423224,0,0,0,0,0,0,0,0,0,0,56.94,49.53,-9,-9,5,1,1,0,0,9,10,3,1,1022,86921.875,0,0,0,910.72662 -16703,20572,37156,-9,37155,-9,1,1,20,0,0,0,2,2,-9,0,4,6.5159283,6.6303082,0,0,0,-942.46552,0,3,-9,2019,11,1,17,14,1,1,1,5.7512641,5.7512641,0,0,0,0,0,0,0,0,0,0,47.49,55.02,-9,-9,6.666666666666667,1,1,0,0,1,10,2,1,1021,-109440.65,0,0,0,423.6525 -16703,20573,37157,-9,37155,-9,1,1,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1140.7225,-9,3,-9,2019,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,519,26108.547,0,0,0,0 -16704,20574,37158,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.2948737,5.3917422,0,0,-1090.5726,0,3,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.0210929,5.0547123,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,174,-240715.69,70649.109,0,0,642.09033 -16705,20575,37159,37160,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.7736735,7.7793632,0,7,2,17.99123,0,2,2,2019,21,7,23,23,1,7,0,13.725816,13.725816,0,0,0,0,2,0,0,0,0,0,36.73,47.1,51.83,57.2,5,1,1,0,0,8,11,5,1,568,2359344,1739782.5,113485.59,0,3337.6555 -16705,20575,37160,37159,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.8229294,8.764596,0,7,-2,-72.386864,0,3,3,2019,7,0,60,50,1,0,0,13.841077,13.841077,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.73,47.1,5,1,1,0,0,8,11,5,1,568,2359344,1739782.5,113485.59,0,3337.6555 -16706,20576,37161,37162,-9,-9,1,0,60,0,0,0,1,1,-9,1,1,0,4.0012407,4.1464391,45,-4,-12.81373,0,3,2,2019,22,11,0,20,3,11,0,0,0,0,0,0,0,0,0,0,0,3.8919544,3.9486432,43.95,27.31,40.75,58.26,3.333333333333333,1,1,0,0,9,9,5,1,263,1574025,752228,829040.25,0,2867.2896 -16706,20576,37162,37161,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,9.0007839,9.2143345,0,45,4,69.747833,0,3,-9,2019,11,1,50,60,1,1,0,17.837332,17.837332,0,0,0,0,0,0,0,0,0,0,40.75,58.26,43.95,27.31,3.333333333333333,1,1,0,0,9,9,5,1,263,1574025,752228,829040.25,0,2867.2896 -16707,20577,37163,37164,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.6525493,7.7695451,9,1,31.427599,0,2,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.9641695,8.1800165,57.16,56.15,33.72,48.35,10,1,1,0,0,10,10,3,1,242.5,1267329.8,676306.88,401769.34,0,2787.5566 -16707,20577,37164,37163,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,9,-1,66.153503,0,2,1,2019,20,9,0,0,4,9,0,0,0,1,0,0,0,0,1,1,0,2.6671696,0,33.72,48.35,57.16,56.15,8.333333333333334,1,1,0,0,7,10,3,1,242.5,1267329.8,676306.88,401769.34,0,2787.5566 -16708,20578,37165,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.8498497,8.8020477,0,0,0,-920.04846,0,3,3,2019,6,0,35,37,1,0,0,26.979982,26.979982,0,0,0,0,0,0,0,0,2.273082,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,2962,415924.56,54089.484,257598.39,86996.813,2188.4268 -16709,20579,37166,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,7.6103301,8.2016058,0,0,-981.43677,0,3,3,2019,15,4,0,0,4,4,0,0,0,0,0,0,0,0,1,1,0,3.7508895,7.6021757,50.07,41.19,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,210,1055714.6,960439.69,0,0,1739.6719 -16710,20580,37167,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-970.28827,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.2313242,0,48.87,58.55,-9,-9,10,1,1,0,0,0,13,1,0,751,286402.53,0,134662.8,0,345.84689 -16711,20581,37168,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.1198549,8.1910763,0,0,0,-960.14893,-9,2,2,2019,13,1,31,0,1,1,0,11.013093,11.013093,0,0,0,0,0,0,0,0,0,0,30.01,47.46,-9,-9,3.333333333333333,1,1,0,1,12,10,4,1,307,281967.34,158842.02,174996.09,0,1734.2216 -16712,20582,37169,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-979.33221,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,2.3048713,0,45.26,48.32,-9,-9,5,1,1,0,0,0,10,1,1,428,6079.2822,0,0,0,870.9353 -16713,20583,37170,37171,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.9862642,9.1428394,0,3,-2,72.491135,-9,-9,-9,2019,13,1,47,0,1,1,0,17.860035,17.860035,0,0,0,0,0,0,0,0,7.8671913,0,47.31,58.02,57.06,57.76,8.333333333333334,1,1,0,0,1,5,5,1,2694.5,195943.98,143244.55,187593.09,147414.81,5902.7061 -16713,20583,37171,37170,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,9.110836,8.9238701,0,3,2,70.531151,0,2,2,2019,6,0,50,40,1,0,0,23.885952,23.885952,0,0,0,0,0,0,0,0,0,0,57.06,57.76,47.31,58.02,8.333333333333334,1,1,0,0,10,5,5,1,2694.5,195943.98,143244.55,187593.09,147414.81,5902.7061 -16714,20584,37172,-9,-9,-9,1,0,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1044.2925,-9,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,1,0,1,8,1,0,1376,-28566.84,3915.8809,0,0,2210.0132 -16714,20584,37173,-9,37172,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.36981,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,1376,-28566.84,3915.8809,0,0,2210.0132 -16715,20585,37174,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.9115944,8.9297791,0,0,0,-1035.542,0,2,3,2019,33,12,45,40,1,12,0,18.16621,18.16621,0,0,0,0,2,0,0,0,0,0,18.77,41.72,-9,-9,1.666666666666667,1,1,0,0,11,11,5,1,158,430161.81,80038.906,138357.09,113721.41,3161.1255 -16716,20586,37175,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.2804585,7.4314485,0,0,0,-993.78101,0,3,3,2019,7,0,20,16,1,0,0,9.7723179,9.7723179,0,0,0,0,2,0,0,0,2.6451969,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,524,495412.59,2447.7256,270084.31,0,1265.7234 -16717,20587,37176,-9,37177,37178,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1026.0925,-9,1,3,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,401.25,-67982.578,0,0,0,1970.8301 -16717,20587,37177,37178,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,0,0,0,22,0,-80.537132,0,2,2,2019,14,3,0,0,3,3,0,0,0,0,0,0,0,0,1,1,0,0,0,37.86,41.16,38.16,44.66,5,2,3,1,0,1,6,2,1,401.25,-67982.578,0,0,0,1970.8301 -16717,20587,37178,37177,-9,-9,1,1,53,0,2,0,3,3,-9,0,3,7.8772678,7.637661,0,22,9,-9.9133167,0,-9,-9,2019,12,0,40,44,1,0,0,7.3414454,7.3414454,0,0,0,0,0,1,1,0,0,0,38.16,44.66,37.86,41.16,5,2,3,0,0,9,6,2,1,401.25,-67982.578,0,0,0,1970.8301 -16717,20587,37179,-9,37177,37178,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.6763,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,401.25,-67982.578,0,0,0,1970.8301 -16717,20588,37180,-9,37177,37178,1,0,19,0,2,0,2,2,-9,0,3,0,5.3395553,5.530344,0,0,-896.04218,1,1,3,2019,10,0,0,12,2,0,1,0,0,0,0,0,0,0,1,1,0,5.0486712,0,46.08,57.2,-9,-9,1.666666666666667,2,3,0,0,2,6,2,1,1365,13731.285,0,0,0,-103.41348 -16718,20589,37181,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.5432963,7.54635,0,0,-1044.8875,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4932394,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,2140,78304.242,8785.6211,408118.97,0,1917.7404 -16719,20590,37182,-9,37184,37186,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.44727,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 -16719,20590,37183,-9,37184,37186,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.86578,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 -16719,20590,37184,37186,-9,-9,1,0,36,0,3,0,3,3,-9,0,3,0,0,0,15,0,20.13143,0,3,2,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.97,51.9,38.9,48.23,5,2,3,0,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 -16719,20590,37185,-9,37184,37186,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.66937,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 -16719,20590,37186,37184,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,6.7441225,6.6435537,0,9,0,11.641003,0,-9,-9,2019,11,0,16,16,1,0,0,6.2114964,6.2114964,0,0,0,0,0,1,1,0,0,0,38.9,48.23,45.97,51.9,5,2,3,0,0,12,4,2,0,1624.6,-115566.63,0,0,0,1578.3177 -16720,20591,37187,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-983.41699,0,3,2,2019,35,12,0,0,4,12,0,0,0,1,0,83.622879,0,0,1,1,0,0,0,11.91,39.62,-9,-9,10,1,1,0,0,0,1,1,0,870,458737.03,0,157898.28,0,1193.1873 -16721,20592,37188,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.0818157,8.6431417,0,0,0,-1046.8788,0,2,2,2019,11,1,30,25,1,1,0,13.835458,13.835458,0,0,0,0,0,1,1,0,7.1149645,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,1222,696110.56,26757.48,320599,0,2188.8286 -16721,20592,37189,-9,37188,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.62732,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,4,0,1222,696110.56,26757.48,320599,0,2188.8286 -16722,20593,37190,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1075.8389,-9,-9,-9,2019,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,4,1,0,1165,-411635.38,0,0,0,483.14545 -16723,20594,37191,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,5.358583,5.6957417,0,0,-1138.6102,-9,-9,-9,2019,12,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,4.1397662,5.5005097,47,49,-9,-9,7,1,1,0,1,5,7,2,0,136,239572.89,37644.695,0,0,1659.3362 -16724,20595,37192,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.2589693,8.6776962,0,0,0,-901.92114,0,1,1,2019,14,2,44,43,1,2,0,11.844078,11.844078,0,0,0,0,0,0,0,0,1.2582567,0,36.6,52.22,-9,-9,3.333333333333333,1,1,0,1,7,12,5,1,347,806884.38,381509.63,0,0,1329.8082 -16725,20596,37193,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-932.15216,0,3,2,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.74,34.81,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1518,-207406.67,0,0,0,835.7049 -16726,20597,37194,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1003.9199,0,3,3,2019,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,60.2,-9,-9,5,2,3,0,1,0,8,2,1,461,226843.5,0,0,0,0 -16726,20598,37195,-9,37194,-9,1,1,23,0,0,0,2,2,-9,0,3,8.299058,8.7331877,0,0,0,-1005.8249,0,3,-9,2019,17,5,38,39,1,5,1,15.34796,15.34796,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,6.666666666666667,2,3,0,0,6,8,5,1,1161,-170081.91,-16425.607,0,0,1880.6532 -16727,20599,37196,37197,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.5813332,7.3245311,46,0,128.64711,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.8094077,7.6704135,54.37,54.8,59.07,43.05,8.333333333333334,1,1,0,0,2,6,3,1,1001.5,1360881.5,619965,266413.72,0,2373.3059 -16727,20599,37197,37196,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,5.4388757,5.5978575,46,0,92.028175,0,2,1,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.0531664,5.5001798,59.07,43.05,54.37,54.8,8.333333333333334,1,1,0,0,7,6,3,1,1001.5,1360881.5,619965,266413.72,0,2373.3059 -16728,20600,37198,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,5.8378592,5.9618125,0,0,-1084.1017,0,2,3,2019,16,4,0,0,4,4,0,0,0,1,0,0,0,0,1,1,0,0,5.8334217,37.51,54.63,-9,-9,5,1,1,0,0,0,9,2,0,420,347524.66,265430.78,164065.34,0,2118.5022 -16729,20601,37199,37200,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,8,0,128.3082,0,3,-9,2019,13,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,32.12,62.52,31.14,8.333333333333334,1,1,0,0,0,4,2,1,874,-91747.375,-38917.398,48602.531,0,1574.9857 -16729,20601,37200,37199,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,3.8437843,3.8783369,8,0,-69.575691,0,3,3,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,4.338665,4.3684025,62.52,31.14,39.39,32.12,10,1,1,0,0,0,4,2,1,874,-91747.375,-38917.398,48602.531,0,1574.9857 -16730,20602,37201,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.6269274,8.2340326,7.1379499,0,0,-1075.5819,0,1,2,2019,19,7,45,30,1,7,0,4.2799644,4.2799644,0,0,0,0,2,0,0,0,7.0233307,6.4384422,34.52,24.67,-9,-9,0,1,1,0,1,6,2,4,1,711,-18519.238,247792.58,0,0,1954.9165 -16731,20603,37202,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.2067795,5.7347636,0,0,-1134.0135,0,2,2,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,5.7871847,50,46,-9,-9,7,3,4,0,0,0,8,2,1,242,46535.32,81933.25,0,0,671.75043 -16732,20604,37203,37204,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,7.9138875,8.0137901,0,3,0,-116.80381,0,-9,-9,2019,10,0,40,50,1,0,0,8.2908173,8.2908173,0,0,0,0,0,0,0,0,0,0,57.06,57.76,47.55,55.06,10,1,1,0,0,3,10,4,0,608,-13912.889,-26168.246,0,0,2639.6619 -16732,20604,37204,37203,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.0005894,7.8053937,0,3,0,48.232574,0,2,2,2019,8,3,37,37,1,3,0,9.1430597,9.1430597,0,0,0,0,0,0,0,0,0,0,47.55,55.06,57.06,57.76,8.333333333333334,1,1,0,0,8,10,4,0,608,-13912.889,-26168.246,0,0,2639.6619 -16733,20605,37205,37206,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4896622,7.6448283,44,6,-2.9077559,0,3,-9,2019,7,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,3.606364,7.3961511,57.16,56.15,59.45,39.29,10,1,1,0,0,0,7,3,1,494.5,1060409.3,618913.06,283044.97,0,1832.1565 -16733,20605,37206,37205,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,44,-6,-57.425903,0,2,2,2019,8,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,39.29,57.16,56.15,8.333333333333334,1,1,0,0,2,7,3,1,494.5,1060409.3,618913.06,283044.97,0,1832.1565 -16734,20606,37207,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.7248983,5.8248329,0,0,-834.87854,0,3,2,2019,27,12,0,0,4,12,0,0,0,0,0,0,0,2,1,1,0,5.961597,5.6273737,36.93,41.13,-9,-9,0,1,1,0,0,4,8,2,1,363,561605,288081.5,441054.31,0,630.10266 -16735,20607,37208,37212,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.614912,8.9341135,0,6,2,68.90934,0,3,2,2019,7,0,43,41,1,0,0,17.1805,17.1805,0,0,0,0,2,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,8,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 -16735,20607,37209,-9,37212,37208,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-980.89447,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 -16735,20607,37210,-9,37212,37208,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.9435,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 -16735,20607,37211,-9,37212,37208,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7283,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 -16735,20607,37212,37208,-9,-9,1,0,32,1,3,0,2,2,-9,0,3,6.669178,6.9131541,0,6,-2,-50.827579,0,-9,-9,2019,5,0,25,11,1,0,0,3.6479151,3.6479151,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,6,6,4,0,625.79999,625070.13,399252.63,124635.31,77665.711,3016.542 -16736,20608,37213,37214,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,5.4372697,5.3016829,45,0,-27.985338,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8762774,5.3173976,52.24,58.56,45.81,61.51,8.333333333333334,1,1,0,0,5,8,3,1,936,1491298,649627,987176.25,0,4185.8818 -16736,20608,37214,37213,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.1833858,7.9157939,45,0,42.27335,0,2,2,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8609033,8.0084591,45.81,61.51,52.24,58.56,8.333333333333334,1,1,0,0,0,8,3,1,936,1491298,649627,987176.25,0,4185.8818 -16737,20609,37215,-9,37216,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.57709,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1137.3334,67367.031,0,0,0,1726.9111 -16737,20609,37216,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,6.8046966,7.1856647,0,0,0,-977.74481,0,2,2,2019,20,8,8,17,1,8,0,9.4107084,9.4107084,0,0,0,3.173641,0,1,1,0,0,0,38.73,50.92,-9,-9,6.666666666666667,1,1,0,0,10,12,2,0,1137.3334,67367.031,0,0,0,1726.9111 -16737,20609,37217,-9,37216,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.5631,-9,2,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1137.3334,67367.031,0,0,0,1726.9111 -16738,20610,37218,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.7513018,8.7909164,0,0,0,-877.74329,0,2,-9,2019,10,0,40,40,1,0,0,24.746067,24.746067,0,0,0,0,0,1,1,0,0,0,48.11,53.44,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,1029,240051.77,107756.87,0,0,2981.3506 -16739,20611,37219,37220,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5625496,8.340292,0,8,2,31.149752,0,2,3,2019,10,2,30,32,1,2,0,21.216942,21.216942,0,0,0,0,2,0,0,0,3.211071,0,51.77,58.57,60.02,56.42,8.333333333333334,1,1,0,0,9,9,4,1,1247,434494.75,175210.56,249912.59,0,5399.0625 -16739,20611,37220,37219,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,7.5095611,7.1519094,0,8,-2,14.841783,0,2,2,2019,7,0,40,35,1,0,0,3.3529551,3.3529551,0,0,0,0,0,0,0,0,8.6171675,0,60.02,56.42,51.77,58.57,6.666666666666667,1,1,0,0,9,9,4,1,1247,434494.75,175210.56,249912.59,0,5399.0625 -16740,20612,37221,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.813652,8.4423962,0,0,0,-1052.2322,0,-9,2,2019,6,0,50,47,1,0,0,15.731346,15.731346,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,559,298106.03,98629.938,135937.98,30556.039,2075.3545 -16741,20613,37222,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.6846495,8.7724142,0,0,0,-1058.7549,0,-9,-9,2019,6,0,45,45,1,0,0,19.74485,19.74485,0,0,0,0,0,1,1,0,0,0,55.77,47.78,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,460,492951.72,45132.766,0,0,2686.699 -16742,20614,37223,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,8.0816822,7.8740296,0,0,0,-941.69739,0,2,-9,2019,10,0,37,16,1,0,0,10.647336,10.647336,0,0,0,0,0,1,1,0,0,0,46,39,-9,-9,8.333333333333334,1,1,0,0,9,6,4,0,845,84049.539,147948.41,0,0,2421.5823 -16743,20615,37224,37225,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.423831,7.7928162,0,31,-3,-88.594604,0,2,2,2019,8,0,18,18,1,0,0,10.758018,10.758018,0,0,0,0,0,0,0,0,2.7244132,0,57.16,56.15,46.55,58.3,10,1,1,0,0,9,7,3,1,502.5,254649.58,21951.66,300954.19,27555.008,1271.6797 -16743,20615,37225,37224,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.8201694,6.4396572,0,31,3,-.17850457,0,-9,-9,2019,11,0,40,40,1,0,0,2.6435499,2.6435499,0,0,0,0,0,0,0,0,5.6568666,0,46.55,58.3,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,502.5,254649.58,21951.66,300954.19,27555.008,1271.6797 -16743,20616,37226,-9,37224,37225,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1057.5193,-9,2,2,2019,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,2.8795774,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,1575,0,0,0,0,68.298447 -16744,20617,37227,37228,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.444459,8.4902153,0,10,-5,9.9012814,0,2,2,2019,8,0,26,35,1,0,0,23.732714,23.732714,0,0,0,0,0,0,0,0,.76890218,0,56.29,52.37,58.15,52.91,8.333333333333334,1,1,0,0,11,11,5,1,597,647431.25,290124.91,156641.52,0,2222.9832 -16744,20617,37228,37227,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.0901651,7.4784174,10,5,-127.74905,0,2,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,8.411685,58.15,52.91,56.29,52.37,8.333333333333334,1,1,0,0,10,11,5,1,597,647431.25,290124.91,156641.52,0,2222.9832 -16745,20618,37229,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,1.8498405,2.2463384,0,0,-913.1889,0,3,3,2019,9,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,2.1009691,57.35,42.91,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1267,78900.508,12893.003,140293.7,25485.826,299.5177 -16745,20619,37230,-9,37229,-9,1,0,51,0,0,0,3,3,-9,0,4,7.3056064,7.3763275,0,0,0,-949.48419,0,3,3,2019,10,1,22,22,1,1,0,8.1790628,8.1790628,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,1005,124057.88,29799.877,216799.38,0,728.79816 -16746,20620,37231,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4462614,8.5126371,0,0,0,-989.07568,0,2,2,2019,11,0,38,0,1,2,1,14.979123,14.979123,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,4,5,0,0,3,4,5,0,1381,490283.75,53099.648,0,0,1886.3898 -16747,20621,37232,-9,37233,-9,1,0,8,0,5,1,3,0,-9,0,4,0,0,0,0,0,-922.90417,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,3,0,452,-238657.48,0,0,0,2817.7471 -16747,20621,37233,-9,-9,-9,1,0,45,0,5,0,1,1,-9,1,3,8.4874849,8.0161638,0,0,0,-1011.8683,-9,2,2,2019,1,0,39,0,1,0,0,9.6062689,9.6062689,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,2,3,0,0,3,10,3,0,452,-238657.48,0,0,0,2817.7471 -16747,20621,37234,-9,37233,-9,1,1,17,0,5,0,2,2,-9,0,4,0,0,0,0,0,-995.9906,-9,1,-9,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,9,10,3,0,452,-238657.48,0,0,0,2817.7471 -16748,20622,37235,37236,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,8,0,19.002485,0,3,3,2019,8,0,0,0,4,0,0,0,0,1,0,8.5894651,0,0,1,1,0,.2633279,0,64.23999999999999,34.3,54,46,8.333333333333334,1,1,0,0,0,7,3,1,417,774898.56,386361.84,300087.75,0,2055.2317 -16748,20622,37236,37235,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.8041124,7.9238052,8,0,-32.086079,0,-9,-9,2019,9,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.7225146,54,46,64.23999999999999,34.3,8,1,1,0,0,0,7,3,1,417,774898.56,386361.84,300087.75,0,2055.2317 -16748,20623,37237,-9,37235,37236,1,1,50,0,0,0,2,2,-9,0,4,8.4280109,8.3462715,0,0,0,-945.77209,0,2,2,2019,6,0,60,56,1,0,0,9.6937103,9.6937103,0,0,0,0,0,1,1,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,523,1557360.5,1626137.5,0,0,2376.5007 -16749,20624,37238,37239,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,0,0,0,12,0,19.789997,-9,-9,3,2019,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,38.79,43.59,59.64,3.333333333333333,1,1,1,0,5,9,5,1,832,695108.25,234541.55,461969.69,33614.422,2471.6548 -16749,20624,37239,37238,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.7722206,9.0194416,0,12,0,103.50838,0,3,3,2019,14,3,41,38,1,3,0,18.701227,18.701227,0,0,0,0,0,0,0,0,0,0,43.59,59.64,42.61,38.79,3.333333333333333,1,1,0,0,10,9,5,1,832,695108.25,234541.55,461969.69,33614.422,2471.6548 -16750,20625,37240,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,8.2600803,8.3121529,0,0,0,-894.56262,0,2,2,2019,6,0,23,50,1,0,0,19.776724,19.776724,0,0,0,0,0,0,0,0,6.1700687,0,57.06,57.76,-9,-9,10,1,1,0,0,8,7,4,0,143,318501.06,90051.133,135645.42,0,2275.3801 -16751,20626,37241,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,2,7.9674516,7.5283208,0,0,0,-971.99109,0,3,2,2019,8,0,30,30,1,0,0,7.5282559,7.5282559,0,0,0,0,14.5,0,0,0,0,0,60.69,29.25,-9,-9,8.333333333333334,1,1,0,1,5,12,3,0,1148,808802.44,0,469941.28,241721.19,397.35257 -16751,20627,37242,-9,37241,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-862.00311,0,1,-9,2019,9,0,0,0,3,0,1,0,0,0,0,0,0,2,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,1,0,2,12,1,0,1703,-543150.56,0,0,0,0 -16752,20628,37243,-9,37244,37245,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-945.08441,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,0,571.66669,338212.41,206437.59,95244.734,70906.234,2822.76 -16752,20628,37244,37245,-9,-9,1,0,36,1,2,0,2,2,-9,0,3,6.7183137,7.0447917,5.2656298,4,-1,112.71328,0,-9,-9,2019,16,5,11,11,1,5,0,7.9692612,7.9692612,0,0,0,0,0,1,1,0,5.2114148,0,35.67,58.05,23.33,47.72,1.666666666666667,1,1,0,0,7,11,3,0,571.66669,338212.41,206437.59,95244.734,70906.234,2822.76 -16752,20628,37245,37244,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,7.924901,8.0268393,0,4,1,20.663246,0,-9,-9,2019,24,9,30,30,1,9,0,10.00007,10.00007,0,0,0,0,0,1,1,0,0,0,23.33,47.72,35.67,58.05,0,1,1,0,1,8,11,3,0,571.66669,338212.41,206437.59,95244.734,70906.234,2822.76 -16753,20629,37246,-9,37247,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.9472,-9,2,-9,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,716.5,60972.738,0,0,0,826.37775 -16753,20629,37247,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1009.6799,0,3,3,2019,11,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.73,36.55,-9,-9,5,1,1,1,0,1,13,1,0,716.5,60972.738,0,0,0,826.37775 -16754,20630,37248,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.4020452,9.4922256,0,0,0,-1089.5792,0,2,2,2019,7,0,60,50,1,0,0,27.592651,27.592651,0,0,0,0,0,0,0,0,0,0,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,12,10,5,0,913,520824.28,-19500.855,236461.16,107073.11,7952.8481 -16755,20631,37249,37250,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.9917383,7.8350701,45,-3,31.83853,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0636501,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,857.5,1290502,0,774951.69,0,4137.8066 -16755,20631,37250,37249,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1080008,8.1774368,45,3,2.3636215,0,3,2,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8446198,8.4266653,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,0,8,4,1,857.5,1290502,0,774951.69,0,4137.8066 -16756,20632,37251,37252,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,0,0,0,37,-5,-42.007767,0,3,3,2019,10,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,44.43,30.74,52.99,51.28,6.666666666666667,2,3,0,1,0,5,2,0,483,212041.28,152922.78,143090.75,0,1076.4218 -16756,20632,37252,37251,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.3899431,7.4007859,0,37,5,97.315239,0,3,3,2019,11,2,32,36,1,2,0,5.1950731,5.1950731,0,0,0,0,0,1,1,0,0,0,52.99,51.28,44.43,30.74,10,2,3,0,1,5,5,2,0,483,212041.28,152922.78,143090.75,0,1076.4218 -16756,20633,37253,-9,37251,37252,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1200.6019,-9,3,3,2019,20,7,0,0,2,7,1,0,0,0,0,0,0,0,1,1,0,0,0,24.5,54.97,-9,-9,5,2,3,0,0,0,5,1,0,1202,-453823.09,0,0,0,720.74152 -16757,20634,37254,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1039.6105,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,7.8892674,0,0,1,1,0,0,0,43.06,14.59,-9,-9,1.666666666666667,1,1,0,1,0,6,2,0,417,-278260.47,0,0,0,973.97992 -16758,20635,37255,37256,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,4,3,-20.205956,0,-9,-9,2019,7,0,0,40,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,54.1,49.39,8.333333333333334,1,1,0,0,3,8,4,0,447,-130031.22,-9482.2188,215708.55,205670.41,3104.2849 -16758,20635,37256,37255,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,8.9251833,9.2818499,0,4,-3,93.109459,0,1,1,2019,10,0,37,36,1,0,0,24.43638,24.43638,0,0,0,0,0,1,1,0,4.0066237,0,54.1,49.39,54.74,57.22,8.333333333333334,4,2,0,0,12,8,4,0,447,-130031.22,-9482.2188,215708.55,205670.41,3104.2849 -16758,20635,37257,-9,37255,37256,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-984.14355,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,4.1792855,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,4,0,447,-130031.22,-9482.2188,215708.55,205670.41,3104.2849 -16759,20636,37258,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.7762609,4.8944206,0,0,-997.03998,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7462864,41.71,59.04,-9,-9,0,1,1,0,0,0,2,2,1,295,319359.31,107600.7,148625.75,0,922.22693 -16760,20637,37259,-9,37260,37261,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.8713,-9,2,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,3,0,587,258029.61,0,0,0,1724.8926 -16760,20637,37260,37261,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,7.5279951,8.0117846,0,4,-34,-79.73558,0,2,2,2019,11,0,38,39,1,0,0,6.7802339,6.7802339,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.49,55.09,8.333333333333334,1,1,0,0,7,2,3,0,587,258029.61,0,0,0,1724.8926 -16760,20637,37261,37260,-9,-9,1,1,58,1,1,0,2,2,-9,0,4,6.1249275,6.4148507,0,4,34,-101.91975,0,-9,-9,2019,6,0,60,50,1,0,0,.95252806,.95252806,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.06,57.76,8.333333333333334,1,1,0,0,9,2,3,0,587,258029.61,0,0,0,1724.8926 -16761,20638,37262,37263,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,52,-2,-61.088387,0,3,3,2019,18,6,0,0,4,6,0,0,0,1,0,1.5190306,0,0,1,1,0,0,0,36.42,33.8,21.83,54.07,5,1,1,0,0,5,4,2,1,1971.5,391736.5,241986.67,128576.77,-4649.6689,1757.45 -16761,20638,37263,37262,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.0087566,7.205575,52,2,76.829689,0,3,3,2019,14,3,0,0,4,3,0,0,0,1,0,0,0,27,1,1,0,.064963952,7.3777046,21.83,54.07,36.42,33.8,1.666666666666667,1,1,0,0,2,4,2,1,1971.5,391736.5,241986.67,128576.77,-4649.6689,1757.45 -16762,20639,37264,37265,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.9278593,7.758934,0,9,-12,50.202068,0,3,3,2019,12,0,38,37,1,0,0,7.409255,7.409255,0,0,0,0,0,0,0,0,0,0,53.06,37.72,61.28,48.88,8.333333333333334,1,1,0,0,9,6,4,1,509,448499.44,56745.133,176178.22,0,2450.3379 -16762,20639,37265,37264,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.2122021,8.067771,0,9,12,-62.523678,0,3,3,2019,7,0,25,60,1,0,0,19.90337,19.90337,0,0,0,0,0,0,0,0,.85658771,0,61.28,48.88,53.06,37.72,10,1,1,0,0,10,6,4,1,509,448499.44,56745.133,176178.22,0,2450.3379 -16762,20640,37266,-9,37264,37265,1,1,21,0,0,0,2,2,-9,0,5,8.0708771,7.92732,0,0,0,-1044.1678,0,2,2,2019,12,0,38,32,1,0,1,7.83744,7.83744,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,1526,34132.602,-17900.441,0,0,1448.8716 -16762,20641,37267,-9,37264,37265,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1121.7792,-9,2,2,2019,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,32.93,60.29,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,1414,106085.1,0,0,0,0 -16763,20642,37268,-9,37269,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.5677,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,443.5,558699.25,104024.37,458284.97,90228.773,2812.9146 -16763,20642,37269,-9,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.4293146,8.7106743,7.8470941,0,0,-977.86371,0,2,2,2019,35,12,35,45,1,12,0,14.417015,14.417015,0,0,0,0,0,1,1,0,7.8614593,0,13.62,62.89,-9,-9,1.666666666666667,1,1,0,1,9,9,4,1,443.5,558699.25,104024.37,458284.97,90228.773,2812.9146 -16764,20643,37270,37273,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.1072664,9.2985439,0,20,5,86.694252,0,2,1,2019,12,3,42,44,1,3,0,28.232616,28.232616,0,0,0,0,0,0,0,0,4.6097379,0,43.65,58.28,45.49,50.81,8.333333333333334,1,1,0,0,10,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 -16764,20643,37271,-9,37270,37273,1,1,17,0,1,1,2,0,0,0,4,0,3.9080179,3.3967516,0,0,-1090.5345,-9,1,1,2019,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,4.4875784,0,54.79,55.86,-9,-9,10,1,1,0,0,0,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 -16764,20643,37272,-9,37270,37273,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1012.8514,-9,1,1,2019,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 -16764,20643,37273,37270,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,9.0831947,9.3244047,0,19,-5,-8.0188475,0,2,2,2019,11,3,41,43,1,3,0,24.773434,24.773434,0,0,0,0,0,0,0,0,4.1177793,0,45.49,50.81,43.65,58.28,6.666666666666667,1,1,0,0,10,9,5,1,845.75,681240.44,63933.418,985488.25,442087.88,6069.2461 -16765,20644,37274,37275,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,5,-6,-55.514107,0,-9,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.8369808,0,45.26,57.46,52,54.51,10,1,1,0,0,9,6,2,1,369,739407.69,361389.63,204581.84,0,2539.25 -16765,20644,37275,37274,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.4806128,7.4529629,5,6,33.847725,0,3,2,2019,12,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8170428,7.5962286,52,54.51,45.26,57.46,8.333333333333334,1,1,0,0,9,6,2,1,369,739407.69,361389.63,204581.84,0,2539.25 -16766,20645,37276,37278,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,8.0833244,7.9120932,0,16,1,58.392464,0,-9,-9,2019,6,0,48,48,1,0,0,7.0538878,7.0538878,0,0,0,0,0,1,1,0,0,0,58.5,46.16,57.06,57.76,10,2,3,0,0,12,9,4,1,1180,500702.59,213316.66,347983.88,186764.66,2976.2354 -16766,20645,37277,-9,37278,37276,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.3412,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,1180,500702.59,213316.66,347983.88,186764.66,2976.2354 -16766,20645,37278,37276,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.2792244,8.4602461,0,16,-1,-32.696911,0,-9,-9,2019,6,0,37,42,1,0,0,13.92964,13.92964,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.5,46.16,8.333333333333334,2,3,0,0,11,9,4,1,1180,500702.59,213316.66,347983.88,186764.66,2976.2354 -16767,20646,37279,37282,-9,-9,1,0,39,1,2,0,3,3,-9,0,3,6.7183466,6.8051238,0,8,-22,52.576614,0,3,3,2019,4,0,18,0,1,0,0,5.382792,5.382792,0,0,0,0,0,1,1,0,0,0,54.37,54.8,43.99,50.34,6.666666666666667,3,4,0,1,1,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 -16767,20646,37280,-9,37279,37282,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.40485,-9,3,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 -16767,20646,37281,-9,37279,37282,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-934.41211,-9,3,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 -16767,20646,37282,37279,-9,-9,1,1,61,1,2,0,2,2,-9,0,3,8.148468,7.8932843,0,8,22,-56.604881,0,2,2,2019,13,3,37,37,1,3,0,12.872642,12.872642,0,0,0,0,0,1,1,0,0,0,43.99,50.34,54.37,54.8,6.666666666666667,3,4,0,1,7,6,3,0,401.25,138624.59,-29293.762,0,0,1995.8938 -16768,20647,37283,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,7.1499872,7.0018287,0,0,-1021.6008,0,2,2,2019,11,0,0,0,4,0,0,0,0,1,1.8679107,0,0,0,1,1,0,1.2184449,6.8924518,58.09,32.73,-9,-9,5,1,1,0,0,0,9,2,1,1094,720801.13,63019.203,501203.66,0,1244.3198 -16769,20648,37284,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.5038033,8.3829298,3.3480859,0,0,-1012.2924,0,3,3,2019,27,11,38,37,1,11,0,13.148234,13.148234,0,0,0,0,0,0,0,0,1.5338535,3.7413194,19.77,66.82000000000001,-9,-9,5,1,1,0,1,9,6,4,1,347,107619.84,115507.44,101106.98,25740.668,2149.9141 -16770,20649,37285,-9,37286,37288,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.8298,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 -16770,20649,37286,37288,-9,-9,1,0,43,1,3,0,2,2,-9,0,4,7.2248273,7.4654598,0,17,-3,15.920091,0,2,1,2019,10,1,25,25,1,1,0,9.582593,9.582593,0,0,0,0,0,1,1,0,0,0,39.81,59.97,34.13,61.39,8.333333333333334,3,4,0,0,9,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 -16770,20649,37287,-9,37286,37288,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.07623,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 -16770,20649,37288,37286,-9,-9,1,1,46,1,3,0,1,1,-9,0,4,8.1938658,8.2002268,0,17,3,25.939793,0,-9,-9,2019,10,2,38,37,1,2,0,12.718674,12.718674,0,0,0,0,2,1,1,0,0,0,34.13,61.39,39.81,59.97,5,3,4,0,0,4,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 -16770,20649,37289,-9,37286,37288,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.2076,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,6,3,0,846.59998,739606,509626.91,189803.97,62739.301,4100.5347 -16771,20650,37290,37291,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6131482,6.4111786,48,-1,-137.02454,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.1928215,6.5742702,59.69,37.34,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,928,568623.38,164454.83,285293.72,0,1630.6477 -16771,20650,37291,37290,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.5493188,5.6893082,48,1,1.4469136,0,2,1,2019,8,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,5.0544224,5.6739502,57.16,56.15,59.69,37.34,10,1,1,0,0,0,12,2,1,928,568623.38,164454.83,285293.72,0,1630.6477 -16772,20651,37292,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,5.7341876,5.6681442,0,0,-1040.1572,0,3,3,2019,21,7,0,0,4,7,0,0,0,1,4.1537375,0,41.478802,0,1,1,0,2.9685309,5.9578753,29.69,23.19,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,523,456164,-55670.422,281831.91,0,1269.3033 -16773,20652,37293,37294,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,8.0438089,8.0233631,0,4,3,-55.089058,0,-9,-9,2019,17,5,45,40,1,5,0,8.4856539,8.4856539,0,0,0,0,0,1,1,0,0,0,27.89,56.24,57.06,57.76,3.333333333333333,1,1,0,0,9,5,4,1,244,199541,48548.367,306380.78,203327.7,3143.2817 -16773,20652,37294,37293,-9,-9,1,1,24,0,1,0,2,2,-9,0,5,8.3833494,8.3052235,0,4,-3,14.840674,0,-9,-9,2019,6,0,45,50,1,0,0,14.302949,14.302949,0,0,0,0,0,1,1,0,0,0,57.06,57.76,27.89,56.24,8.333333333333334,1,1,0,0,6,5,4,1,244,199541,48548.367,306380.78,203327.7,3143.2817 -16773,20652,37295,-9,37293,37294,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.2347,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,244,199541,48548.367,306380.78,203327.7,3143.2817 -16774,20653,37296,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0651455,6.2571549,0,0,-1031.298,0,3,-9,2019,9,2,0,0,4,2,0,0,0,1,0,4.1412644,0,0,1,1,0,1.3051245,6.1833663,51.48,24.97,-9,-9,6.666666666666667,1,1,0,0,2,10,2,1,717,97190.25,22709.102,0,0,1173.8236 -16775,20654,37297,37298,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5952234,7.8306236,0,2,3,-20.58032,0,-9,-9,2019,18,5,23,-9,1,5,0,11.426296,11.426296,0,0,0,0,0,1,1,0,0,0,35.07,59.68,49.04,55.86,5,1,1,0,0,13,4,4,0,336,2997.1875,56087.758,88552.555,69306.563,3321.4141 -16775,20654,37298,37297,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.7115841,8.3824749,0,2,-3,-43.773376,0,-9,-9,2019,11,0,54,19,1,0,0,11.971393,11.971393,0,0,0,0,7,1,1,0,0,0,49.04,55.86,35.07,59.68,8.333333333333334,1,1,0,0,10,4,4,0,336,2997.1875,56087.758,88552.555,69306.563,3321.4141 -16776,20655,37299,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.90735,0,3,3,2019,11,2,0,0,4,2,0,0,0,1,0,12.534269,0,0,1,1,0,0,0,42.82,25.26,-9,-9,10,1,1,0,0,0,1,1,0,470,-28330.125,0,82652.586,0,1563.9456 -16777,20656,37300,37301,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.1885729,9.4454184,0,4,-1,6.7773881,0,-9,-9,2019,7,0,43,43,1,0,0,26.592745,26.592745,0,0,0,0,0,0,0,0,0,0,35.04,57.07,53.04,34.88,8.333333333333334,1,1,0,0,12,6,5,1,512.5,1261566.4,765661.13,395862.59,49204.789,4301.6006 -16777,20656,37301,37300,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.8671622,7.7780581,0,4,1,103.09275,-9,-9,-9,2019,12,1,32,0,1,1,0,9.7552128,9.7552128,0,0,0,0,0,0,0,0,0,0,53.04,34.88,35.04,57.07,8.333333333333334,1,1,0,0,8,6,5,1,512.5,1261566.4,765661.13,395862.59,49204.789,4301.6006 -16778,20657,37302,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.4090424,7.5502052,0,0,-1036.73,0,3,3,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7033572,54.61,38.4,-9,-9,10,1,1,0,0,0,13,3,0,117,393052.66,245295.39,189078.09,0,1773.9368 -16779,20658,37303,-9,-9,-9,1,0,19,0,3,1,2,0,-9,0,4,0,0,0,0,0,-974.39294,-9,2,2,2019,11,0,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,638,-132168.94,0,0,0,1873.1237 -16780,20659,37304,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,7.4569793,7.554337,0,0,-820.77051,0,2,2,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,6.3700066,7.6276765,62.81,36.34,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1812,796214,208717.67,485196.56,0,1626.0009 -16781,20660,37305,37306,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,6.3282928,6.3829045,6,2,-36.315281,0,3,3,2019,11,0,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,2.6305754,6.4879584,50,47,36.68,50.96,7,1,1,0,0,0,13,2,1,1192.5,267952.69,272849.56,0,0,1183.9298 -16781,20660,37306,37305,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,6.5882134,6.1234183,6,-2,71.960793,0,3,3,2019,19,8,0,48,4,8,0,0,0,0,0,0,0,71.5,1,1,0,0,6.3038068,36.68,50.96,50,47,5,1,1,0,0,7,13,2,1,1192.5,267952.69,272849.56,0,0,1183.9298 -16781,20661,37307,-9,37305,37306,1,1,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-905.57751,0,2,2,2019,6,0,0,0,3,0,0,0,0,0,0,0,0,71.5,1,1,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,136,0,0,0,0,294.92786 -16782,20662,37308,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8862062,7.7257881,0,0,0,-984.22327,0,3,-9,2019,9,0,40,30,1,0,0,8.6826944,8.6826944,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,398,234501.52,7606.979,0,0,1239.2501 -16783,20663,37309,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-964.42395,0,3,3,2019,17,6,0,0,4,6,0,0,0,1,0,34.708435,0,7,1,1,0,0,0,41.81,21.45,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,484,-195947.5,0,105784.91,0,2001.9813 -16783,20664,37310,-9,37309,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1022.6239,0,3,3,2019,24,11,0,0,3,11,0,0,0,0,0,0,0,120,1,1,0,0,0,12.67,40.5,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,479,-86610.594,0,0,0,1610.276 -16784,20665,37311,37312,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.5458832,7.6279726,9,2,-161.38173,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.2063756,7.3115287,48.38,38.92,57.33,53.46,6.666666666666667,1,1,0,0,3,1,3,1,318,583373.38,404873.81,120340.21,0,2283.1738 -16784,20665,37312,37311,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.3826609,4.4649181,9,-2,-2.7617304,0,-9,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,4.3532834,4.2095389,57.33,53.46,48.38,38.92,6.666666666666667,1,1,0,0,6,1,3,1,318,583373.38,404873.81,120340.21,0,2283.1738 -16785,20666,37313,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,5.6467171,6.1619625,0,0,-1044.7319,0,1,1,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.4143357,5.7214141,62.49,55.09,-9,-9,10,1,1,0,0,7,7,2,1,728,1447365.9,751387.56,733910.69,0,1734.9821 -16786,20667,37314,37317,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.6783576,7.9949932,0,8,-8,5.5780835,0,1,1,2019,6,0,15,15,1,0,0,17.99716,17.99716,0,0,0,0,0,0,0,0,0,0,57.16,56.15,56.73,41.39,8.333333333333334,1,1,0,0,8,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 -16786,20667,37315,-9,37314,37317,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.52521,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 -16786,20667,37316,-9,37314,37317,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1208.025,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 -16786,20667,37317,37314,-9,-9,1,1,44,1,2,0,2,2,-9,0,4,9.0281096,9.2327461,0,8,8,12.13842,0,-9,-9,2019,6,1,49,54,1,1,0,23.466019,23.466019,0,0,0,0,0,0,0,0,0,0,56.73,41.39,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,533.75,598973,256911,249382.25,24019.936,4104.2085 -16787,20668,37318,-9,-9,-9,1,1,29,0,0,0,3,3,-9,0,4,8.5369501,8.48423,0,0,0,-1066.1412,0,-9,-9,2019,6,0,48,47,1,0,0,13.717709,13.717709,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,9,8,5,0,622,202727.94,0,0,0,2334.6565 -16788,20669,37319,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.9965754,7.0060549,0,0,-918.93347,0,3,-9,2019,9,2,0,0,4,2,0,0,0,1,0,0,0,0,1,1,0,0,6.9765153,46.93,37.9,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1346,196009.91,31968.207,0,0,1670.0359 -16789,20670,37320,37321,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,29,-7,0,0,3,2,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50.15,43.21,51.2,35.56,8.333333333333334,1,1,0,0,0,13,1,1,2227.5,383344.5,0,94132.234,0,699.87317 -16789,20670,37321,37320,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,29,7,0,0,3,3,2019,4,0,0,0,4,0,0,0,0,1,13.778461,7.8850789,139.24124,0,1,1,0,0,0,51.2,35.56,50.15,43.21,8.333333333333334,1,1,0,0,9,13,1,1,2227.5,383344.5,0,94132.234,0,699.87317 -16789,20671,37322,-9,37320,37321,1,0,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1012.042,0,3,3,2019,6,2,0,0,3,2,1,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,1,1,0,0,0,13,2,1,1214,-399951.59,0,0,0,1918.1532 -16790,20672,37323,37324,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,7.9211435,8.0498953,0,5,1,30.901819,-9,1,1,2019,11,0,35,0,1,0,0,11.781391,11.781391,0,0,0,0,0,0,0,0,8.2579746,0,50.25,56.54,57.16,56.15,8.333333333333334,2,3,0,0,3,9,4,1,671,890341,347166.06,521230.91,54139.945,3134.5171 -16790,20672,37324,37323,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.6018209,7.7099209,0,5,-1,-51.742615,-9,3,2,2019,8,0,40,0,1,0,0,5.5620465,5.5620465,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.25,56.54,10,2,3,0,0,5,9,4,1,671,890341,347166.06,521230.91,54139.945,3134.5171 -16791,20673,37325,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,9.6719065,9.4097548,0,0,0,-933.03705,0,2,2,2019,14,2,35,47,1,2,0,60.739117,60.739117,0,0,0,0,0,0,0,0,4.6446867,0,36.35,64.53,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,2192,742574.13,241751.72,449060.91,0,6308.1729 -16792,20674,37326,-9,-9,-9,1,1,51,1,1,0,2,2,-9,1,2,0,0,0,0,0,-974.26196,0,-9,-9,2019,21,10,0,0,3,10,0,0,0,0,0,0,0,0,1,1,0,0,0,35.73,29.67,-9,-9,5,1,1,0,1,1,9,1,0,850,-305296.75,0,0,0,951.80865 -16792,20675,37327,-9,37328,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.6499,-9,3,-9,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,551.5,-65302.672,0,0,0,859.65857 -16792,20675,37328,-9,-9,37326,1,0,25,1,1,0,3,3,-9,0,3,0,0,0,0,0,-1037.2357,0,-9,2,2019,15,3,0,0,3,3,1,0,0,0,0,0,0,0,1,1,0,0,0,44.75,56.39,-9,-9,10,1,1,0,0,1,9,2,0,551.5,-65302.672,0,0,0,859.65857 -16793,20676,37329,-9,37330,-9,1,0,33,0,0,0,2,2,-9,0,3,7.9459,8.2565489,0,0,0,-1072.7839,0,2,2,2019,12,3,41,38,1,3,1,7.6040864,7.6040864,0,0,0,0,7,1,0,1,.10753508,0,43.12,58.55,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,467,-222534.64,7062.0425,84693.117,110251.1,1558.8618 -16793,20677,37330,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,5.4340906,5.5412884,0,0,-991.35852,0,3,3,2019,17,4,0,0,3,4,0,0,0,0,0,0,0,0,1,0,1,4.1467705,5.4651475,35.98,20.53,-9,-9,0,1,1,0,0,0,4,2,1,819,60308.07,114794.32,230888.69,0,762.79016 -16794,20678,37331,37332,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.1605005,6.033659,48,0,123.63451,0,2,3,2019,9,1,0,24,4,1,0,0,0,0,0,0,0,0,1,1,0,6.9731927,6.0124063,59.53,27.3,64.01000000000001,22.01,3.333333333333333,1,1,0,0,6,2,2,1,854.5,239666.92,106647.41,132864.44,0,1167.1593 -16794,20678,37332,37331,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,48,0,-8.037446,0,2,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.9231813,0,64.01000000000001,22.01,59.53,27.3,8.333333333333334,1,1,0,0,0,2,2,1,854.5,239666.92,106647.41,132864.44,0,1167.1593 -16795,20679,37333,37334,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,5.5687103,5.1678739,11,0,-16.080324,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,8.4520817,5.5228777,52.4,52.91,57.16,56.15,8.333333333333334,1,1,0,0,1,9,2,1,961,777253.75,407603.5,138646.38,0,4129.0889 -16795,20679,37334,37333,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.6081514,5.9005966,34,0,-3.3446736,0,3,-9,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,4.6053591,5.8528018,57.16,56.15,52.4,52.91,8.333333333333334,1,1,0,0,11,9,2,1,961,777253.75,407603.5,138646.38,0,4129.0889 -16796,20680,37335,37336,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.0827599,9.0956306,0,30,5,10.481656,0,-9,-9,2019,8,0,45,45,1,0,0,27.634832,27.634832,0,0,0,0,2,0,0,0,.47874251,0,52.34,56.95,60.7,23.72,8.333333333333334,1,1,0,0,10,7,5,1,448.5,622664.38,34082.855,590818.5,286509.25,2795.7554 -16796,20680,37336,37335,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,0,0,0,30,-5,52.655525,0,-9,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,2,0,0,0,.56910008,0,60.7,23.72,52.34,56.95,8.333333333333334,1,1,0,0,6,7,5,1,448.5,622664.38,34082.855,590818.5,286509.25,2795.7554 -16796,20681,37337,-9,37336,37335,1,0,29,0,0,0,1,1,-9,0,4,8.0359669,7.9068718,0,0,0,-1124.0336,0,1,2,2019,9,0,37,0,1,0,1,11.508717,11.508717,0,0,0,0,0,0,0,0,0,0,52.82,51.26,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,839,120666.91,0,0,0,1485.4613 -16797,20682,37338,37339,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.3906293,7.6992784,0,31,-4,13.432874,0,-9,-9,2019,9,0,25,25,1,0,0,7.0290966,7.0290966,0,0,0,0,0,0,0,0,3.7731917,0,57.33,53.46,50.01,47.44,8.333333333333334,2,3,0,0,8,8,5,1,520.5,772683.44,11787.919,364368.81,53091.762,4357.1797 -16797,20682,37339,37338,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.0863543,9.3904572,7.5446086,31,4,149.55682,0,2,2,2019,11,0,50,47,1,0,0,22.713747,22.713747,0,0,0,0,0,0,0,0,5.4870815,8.4361229,50.01,47.44,57.33,53.46,6.666666666666667,2,3,0,0,8,8,5,1,520.5,772683.44,11787.919,364368.81,53091.762,4357.1797 -16797,20683,37340,-9,37338,37339,1,1,26,0,0,0,1,1,-9,0,4,8.1828022,8.1834831,0,0,0,-1012.7369,0,2,2,2019,10,0,40,40,1,1,1,11.864003,11.864003,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,7,2,3,0,0,1,8,4,1,259,156684.5,0,0,0,1664.8512 -16797,20684,37341,-9,37338,37339,1,1,24,0,0,0,1,1,-9,0,4,8.081707,7.7887988,0,0,0,-977.30151,0,3,2,2019,7,0,36,39,1,0,1,9.2207336,9.2207336,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,3,8,4,1,536,159782.08,0,0,0,1712.005 -16798,20685,37342,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.1324134,7.0389466,0,0,-1138.8508,0,2,2,2019,11,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,0,7.2840686,42.16,36.22,-9,-9,3.333333333333333,1,1,0,1,4,11,2,1,377,709968.56,382689.94,141719.06,31727.236,797.03394 -16798,20686,37343,-9,37342,-9,1,1,21,0,0,0,2,2,-9,0,4,7.5982962,7.5052428,0,0,0,-1163.8326,0,2,-9,2019,10,0,40,0,1,1,0,6.4883785,6.4883785,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,11,3,1,492,-392354.13,-118648.02,0,0,985.07922 -16799,20687,37344,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3248343,6.8198404,0,0,-972.8894,0,3,-9,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,7.2909021,51,46,-9,-9,7,3,4,0,0,8,8,3,0,477,855335.44,306178.44,289769.09,0,1375.3295 -16799,20688,37345,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1117.6604,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,0,271,-389070,0,0,0,-214.98087 -16800,20689,37346,37347,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,8.0092287,7.7878332,0,4,0,122.6888,0,-9,-9,2019,19,7,43,43,1,7,0,9.3547583,9.3547583,0,0,0,0,0,1,1,0,7.600812,0,36.67,52.2,61.12,51.57,8.333333333333334,1,1,0,0,3,9,5,1,726.66669,84940.656,86664.773,500818.97,355300.38,6537.7324 -16800,20689,37347,37346,-9,-9,1,1,45,1,1,0,2,2,-9,0,4,8.8417721,8.604435,0,4,9,-91.626602,0,-9,-9,2019,10,0,45,45,1,0,0,14.7871,14.7871,0,0,0,0,0,1,1,0,7.8326597,0,61.12,51.57,36.67,52.2,8.333333333333334,1,1,0,0,8,9,5,1,726.66669,84940.656,86664.773,500818.97,355300.38,6537.7324 -16800,20689,37348,-9,37346,37347,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.6205,-9,2,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,726.66669,84940.656,86664.773,500818.97,355300.38,6537.7324 -16801,20690,37349,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0737858,7.9200211,0,0,0,-863.401,-9,-9,-9,2019,9,0,40,0,1,0,0,10.944132,10.944132,0,0,0,0,0,1,1,0,0,0,41.14,59.2,-9,-9,6.666666666666667,1,1,0,0,10,11,4,0,337,245490.33,0,0,0,1222.8717 -16802,20691,37350,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.2753925,7.3817177,0,0,-1131.668,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,3.3282511,7.718616,64.23,36.81,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,351,691365.38,376760.91,226150.33,0,1684.2778 -16803,20692,37351,37352,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,47,2,0,0,3,2,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,1.3132522,0,54,52,60.47,41.03,10,1,1,0,0,7,12,2,0,1290.5,185546.84,0,196792.91,0,1337.7134 -16803,20692,37352,37351,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,47,-2,0,0,3,3,2019,6,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.47,41.03,54,52,10,1,1,0,0,9,12,2,0,1290.5,185546.84,0,196792.91,0,1337.7134 -16804,20693,37353,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,5,0,6.7216635,6.6069603,0,0,-1065.5532,0,2,1,2019,7,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0293612,54.69,57.47,-9,-9,10,1,1,0,0,0,8,2,1,135,502370.53,-76658.984,196191.45,0,970.59326 -16805,20694,37354,37355,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1321983,8.5241137,10,2,-6.2776446,0,3,3,2019,8,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1928549,54.9,39.4,48.25,24.96,8.333333333333334,1,1,0,0,0,13,4,1,1096.5,916627.19,624892.25,252444.19,0,3576.1877 -16805,20694,37355,37354,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,10,-2,51.221134,0,3,3,2019,12,1,0,0,4,1,0,0,0,1,8.1979723,4.4400172,67.648743,0,1,1,0,0,0,48.25,24.96,54.9,39.4,6.666666666666667,1,1,0,0,0,13,4,1,1096.5,916627.19,624892.25,252444.19,0,3576.1877 -16806,20695,37356,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5086308,8.536871,0,0,0,-971.25037,-9,1,-9,2019,12,0,37,0,1,0,0,21.009291,21.009291,0,0,0,0,0,1,1,0,0,0,37.92,53.03,-9,-9,5,3,4,0,0,8,8,4,0,569.66669,102798.91,-75014.852,0,0,2194.322 -16806,20695,37357,-9,37356,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.87903,-9,1,-9,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,569.66669,102798.91,-75014.852,0,0,2194.322 -16806,20695,37358,-9,37356,-9,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1047.7208,-9,1,-9,2019,20,7,0,0,2,7,0,0,0,0,0,0,0,0,1,1,0,0,0,27.08,45.56,-9,-9,1.666666666666667,3,4,0,0,0,8,4,0,569.66669,102798.91,-75014.852,0,0,2194.322 -16807,20696,37359,-9,-9,-9,1,1,34,0,0,0,3,3,-9,0,3,7.3361368,7.3692617,0,0,0,-1039.6428,0,-9,-9,2019,11,0,10,15,1,0,0,19.147932,19.147932,0,0,0,0,0,0,0,0,0,0,41.72,56.81,-9,-9,6.666666666666667,3,4,0,0,8,5,3,1,269,-228016.47,39603.457,0,0,34.852131 -16808,20697,37360,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.2059875,6.4987602,0,0,-1122.5055,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.8089995,6.4859014,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1059,707805.25,141255.67,0,0,763.39301 -16809,20698,37361,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.342454,8.5177088,0,0,0,-986.21039,0,3,3,2019,9,1,47,49,1,1,0,15.512406,15.512406,0,0,0,0,7,1,1,0,0,0,56.5,29.75,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,1213,895824.63,376412.47,331090.88,0,1904.2363 -16810,20699,37362,-9,37363,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-964.42194,-9,2,-9,2019,26,9,0,0,3,9,0,0,0,0,0,0,0,7,1,1,0,0,0,39.32,53.48,-9,-9,5,2,3,0,1,0,2,3,1,1183,-20215.68,107012.83,0,0,1021.3588 -16810,20699,37363,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.4829683,7.3290563,0,0,0,-999.6228,0,3,2,2019,20,7,30,30,1,7,0,8.8823385,8.8823385,0,0,0,0,0,1,1,0,0,0,16.17,58.87,-9,-9,5,2,3,0,1,9,2,3,1,1183,-20215.68,107012.83,0,0,1021.3588 -16810,20700,37364,-9,37363,-9,1,0,20,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1169.974,1,2,-9,2019,15,3,0,12,2,3,1,0,0,0,0,0,0,5.48,1,1,0,.33090067,0,29.12,38.53,-9,-9,3.333333333333333,2,3,0,1,3,2,2,1,677,-52451.922,0,0,0,258.19308 -16811,20701,37365,37366,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.6114006,8.6593952,0,8,-3,50.740128,0,3,3,2019,6,0,70,70,1,0,0,8.5225687,8.5225687,0,0,0,0,0,0,0,0,1.0092348,0,58.56,46.45,56.8,33.06,8.333333333333334,2,3,0,0,8,12,5,1,786.5,156356.44,194512.88,293457.69,76666.172,3730.9604 -16811,20701,37366,37365,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,8.1116791,8.1100702,8,3,13.8689,0,2,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1.5996253,8.3020954,56.8,33.06,58.56,46.45,8.333333333333334,1,1,0,0,5,12,5,1,786.5,156356.44,194512.88,293457.69,76666.172,3730.9604 -16812,20702,37367,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,4,0,7.4756727,7.7487907,0,0,-917.17987,-9,1,1,2019,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,7.2703819,0,49.65,57.01,-9,-9,8.333333333333334,1,1,0,0,6,5,3,0,209,275690.97,0,0,0,1353.2726 -16813,20703,37368,37369,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.8198533,7.9364052,43,7,73.431908,0,-9,3,2019,6,0,0,0,4,0,0,0,0,1,0,0,0,2,1,1,0,2.6433232,7.9522429,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,4,5,4,1,392,1367059.3,814530.13,203904.38,0,2588.5208 -16813,20703,37369,37368,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.7935195,5.5864873,43,-7,-50.234089,0,3,3,2019,11,0,0,0,4,0,0,0,0,0,0,0,0,2,1,1,0,.62585694,5.9508386,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,5,4,1,392,1367059.3,814530.13,203904.38,0,2588.5208 -16814,20704,37370,-9,37373,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.0448,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 -16814,20704,37371,37373,-9,-9,1,1,39,0,3,0,2,2,-9,0,5,7.393558,7.5771422,0,5,7,-27.546171,0,-9,-9,2019,9,0,28,28,1,0,0,8.3688545,8.3688545,0,0,0,0,0,1,1,0,0,0,54.1,59.11,38.88,61.85,8.333333333333334,1,1,0,0,3,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 -16814,20704,37372,-9,37373,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.04993,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 -16814,20704,37373,37371,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.9734612,8.0569677,5.6872926,5,-7,-60.110016,0,2,2,2019,13,1,39,33,1,1,0,8.9718809,8.9718809,0,0,0,0,0,1,1,0,6.0785928,0,38.88,61.85,54.1,59.11,8.333333333333334,1,1,0,0,6,5,3,0,1016.75,298916.72,92927.602,141698.05,105523.04,2501.9519 -16815,20705,37374,-9,37375,-9,1,1,36,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1006.8481,0,3,-9,2019,5,0,0,0,3,0,1,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,0,3,4,1,0,1,8,2,0,700,27258.184,0,0,0,447.95724 -16815,20706,37375,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1045.3555,0,-9,-9,2019,11,0,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,1,0,0,8,2,0,457,146199.28,0,0,0,240.1523 -16816,20707,37376,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1049.5258,-9,-9,-9,2019,17,5,0,0,3,5,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,0,1,1,0,0,0,12,1,0,1980,386165.31,145532.97,0,0,1173.5842 -16817,20708,37377,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.3224216,6.2128639,0,0,-924.80975,0,2,2,2019,19,7,0,0,4,7,0,0,0,1,0,0,0,0,1,1,0,6.7846456,6.1971121,37.51,34.33,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,364,152587.73,-26593.279,150910.13,0,1299.5867 -16818,20709,37378,-9,37379,37383,1,0,4,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1031.243,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16818,20709,37379,37383,-9,-9,1,0,29,1,6,0,2,2,-9,0,4,0,0,0,6,-12,-27.997416,0,-9,-9,2019,7,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.4,50.48,40.57,55.65,10,2,3,0,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16818,20709,37380,-9,37379,37383,1,1,10,1,6,1,3,0,-9,0,5,0,0,0,0,0,-923.86188,-9,2,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16818,20709,37381,-9,37379,37383,1,0,14,1,6,1,3,0,-9,0,3,0,0,0,0,0,-954.23108,-9,2,1,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16818,20709,37382,-9,37379,37383,1,0,16,1,6,1,2,0,-9,0,4,0,0,0,0,0,-1116.3907,-9,2,1,2019,25,11,0,0,2,11,0,0,0,0,0,0,0,0,1,1,0,0,0,30.83,62.98,-9,-9,3.333333333333333,2,3,0,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16818,20709,37383,37379,-9,-9,1,1,41,1,6,0,1,1,-9,0,3,8.5558777,8.6051903,0,9,12,-142.52731,0,2,3,2019,11,1,37,38,1,1,0,15.911781,15.911781,0,0,0,0,0,1,1,0,0,0,40.57,55.65,57.4,50.48,8.333333333333334,2,3,0,0,7,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16818,20709,37384,-9,37379,37383,1,1,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1124.3606,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16818,20709,37385,-9,37379,37383,1,0,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-978.13837,-9,2,1,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,625.75,265241.81,49142.07,386496.38,107210.76,2673.0449 -16819,20710,37386,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.6088877,7.5481129,0,0,-976.43951,0,3,-9,2019,10,2,0,0,4,2,0,0,0,0,0,0,0,0,1,1,0,1.941491,7.4377751,51.89,46.51,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,1926,762848.94,418303.66,302738.72,0,2112.635 -16820,20711,37387,37388,-9,-9,1,0,51,1,1,0,2,2,-9,0,2,8.5666456,8.6429996,0,7,-6,6.1955299,0,2,2,2019,24,12,40,40,1,12,0,21.174898,21.174898,0,0,0,0,0,0,0,0,0,0,30.7,56.79,51,49,1.666666666666667,1,1,0,0,8,8,4,1,626.5,538721.88,0,297371.47,0,2678.0913 -16820,20711,37388,37387,-9,-9,1,1,57,1,1,0,2,2,-9,0,3,6.6457949,6.5535383,0,7,6,83.152031,0,3,2,2019,10,0,50,40,1,1,0,1.5547897,1.5547897,0,0,0,0,0,0,0,0,4.2573133,0,51,49,30.7,56.79,7,3,4,0,0,7,8,4,1,626.5,538721.88,0,297371.47,0,2678.0913 -16820,20712,37389,-9,37390,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-910.36816,-9,2,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,2,1,2612.5,7344.8467,0,0,0,113.07288 -16820,20712,37390,-9,37387,37388,1,0,30,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1062.2113,-9,1,1,2019,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,.22154506,0,48,57,-9,-9,7,4,2,0,0,0,8,2,1,2612.5,7344.8467,0,0,0,113.07288 -16821,20713,37391,37392,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.0826383,7.2316146,9,5,-38.42168,0,3,3,2019,10,1,0,0,4,1,0,0,0,1,2.9482043,3.2129319,24.539995,0,1,1,0,5.8217101,7.0538473,57.69,36.83,43.42,47.2,10,1,1,0,0,9,5,3,1,931,1802784.5,1147277.1,208679.63,0,3660.7349 -16821,20713,37392,37391,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.1082182,7.1217861,9,-5,-8.0114517,0,3,3,2019,14,2,0,0,4,2,0,0,0,0,0,0,0,2,1,1,0,7.4346261,7.2499747,43.42,47.2,57.69,36.83,8.333333333333334,1,1,0,0,6,5,3,1,931,1802784.5,1147277.1,208679.63,0,3660.7349 -16822,20714,37393,37394,-9,-9,1,0,34,1,1,0,2,2,-9,0,5,7.848927,7.3962016,0,5,3,-131.19357,0,-9,-9,2019,6,0,38,43,1,0,0,5.597887,5.597887,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,8.333333333333334,1,1,0,0,9,4,4,1,1009,-160934.36,26355.467,0,0,2523 -16822,20714,37394,37393,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.1039867,8.1646643,0,5,-3,-91.332558,0,-9,-9,2019,5,0,40,41,1,0,0,10.521151,10.521151,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,4,4,1,1009,-160934.36,26355.467,0,0,2523 -16822,20714,37395,-9,37393,37394,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-886.52905,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1009,-160934.36,26355.467,0,0,2523 -16823,20715,37396,37399,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,5.6516457,5.8091869,0,9,2,77.272385,0,-9,-9,2019,1,0,17,-9,1,0,0,1.5466521,1.5466521,0,0,0,0,0,1,1,0,0,0,48.18,61.8,42.6,52.35,10,1,1,0,0,8,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 -16823,20715,37397,-9,37399,37396,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-997.66766,-9,1,1,2019,10,0,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 -16823,20715,37398,-9,37399,37396,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-912.5733,-9,1,1,2019,12,1,0,0,2,1,0,0,0,0,0,0,0,2,1,1,0,0,0,52.48,54.33,-9,-9,10,4,2,0,0,2,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 -16823,20715,37399,37396,-9,-9,1,0,42,0,1,0,1,1,-9,0,2,8.7648325,8.6472721,0,20,-2,-63.312096,0,2,-9,2019,13,1,39,38,1,1,0,14.859085,14.859085,0,0,0,0,7,1,1,0,0,0,42.6,52.35,48.18,61.8,5,3,4,0,0,9,8,4,1,629.25,101326.43,1386.7988,177514.53,115991.88,2468.7908 -16824,20716,37400,37401,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.226572,8.1309052,0,6,3,68.483833,0,-9,-9,2019,8,0,43,61,1,0,0,11.584938,11.584938,0,0,0,0,0,0,0,0,0,0,39.16,62.84,42.5,53.5,5,1,1,0,0,5,11,5,1,359,39443.18,-14527.687,95136.328,19611.895,3063.0493 -16824,20716,37401,37400,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3133097,8.3990173,0,6,-3,-96.506111,0,2,2,2019,14,2,43,44,1,2,0,10.85842,10.85842,0,0,0,0,7,0,0,0,4.1994653,0,42.5,53.5,39.16,62.84,3.333333333333333,1,1,0,0,11,11,5,1,359,39443.18,-14527.687,95136.328,19611.895,3063.0493 -16825,20717,37402,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,2,8.1251554,8.0528879,0,0,0,-1014.6768,0,-9,-9,2019,29,12,30,30,1,12,0,12.24185,12.24185,0,0,0,0,2,1,1,0,0,0,18.39,37.9,-9,-9,1.666666666666667,4,2,0,0,8,7,3,1,684,-38382.82,0,0,0,2086.9973 -16825,20717,37403,-9,37402,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.5406,-9,1,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,3,1,684,-38382.82,0,0,0,2086.9973 -16826,20718,37404,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.3910341,8.3653145,0,0,0,-1128.7524,0,-9,2,2019,9,1,40,49,1,1,0,12.704705,12.704705,0,0,0,0,0,0,0,0,3.1398392,0,51.17,33.33,-9,-9,8.333333333333334,4,5,0,0,10,8,4,0,5576,182778.14,-56091.188,246674.27,108686.9,1856.6801 -16827,20719,37405,37406,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,6.8155966,7.1698818,0,4,-2,-1.4121699,0,-9,-9,2019,5,1,30,20,1,1,0,4.0085039,4.0085039,0,0,0,0,0,1,1,0,0,0,60.06,37.76,40.95,63.66,1.666666666666667,1,1,0,0,5,4,5,1,1438,1031.5859,-48150.16,119343.36,40589.055,4052.0703 -16827,20719,37406,37405,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.8368702,8.9841118,0,4,2,-112.82767,0,-9,-9,2019,19,7,40,40,1,7,0,20.059523,20.059523,0,0,0,0,0,1,1,0,7.4960084,0,40.95,63.66,60.06,37.76,3.333333333333333,1,1,0,0,7,4,5,1,1438,1031.5859,-48150.16,119343.36,40589.055,4052.0703 -16828,20720,37407,37408,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,25,3,0,0,-9,2,2019,16,6,0,0,3,6,0,0,0,0,0,0,0,2,1,1,0,0,0,40.25,15.6,36.93,45.74,5,1,1,0,0,0,7,1,0,762,224461.14,0,0,0,1488.1719 -16828,20720,37408,37407,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,25,-3,0,0,2,2,2019,12,1,0,0,3,1,0,0,0,0,0,0,0,120,1,1,0,0,0,36.93,45.74,40.25,15.6,8.333333333333334,1,1,1,1,0,7,1,0,762,224461.14,0,0,0,1488.1719 -16828,20721,37409,-9,37408,37407,1,0,20,0,0,0,2,2,1,1,4,6.9857626,7.3536634,0,0,0,-940.30585,-9,2,2,2019,9,2,40,0,1,2,1,3.0468113,3.0468113,0,0,0,0,7,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,197,-187707.36,0,0,0,576.25378 -16829,20722,37410,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.4509277,7.2520552,42,-13,-102.04232,0,3,2,2019,11,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,7.9538798,7.4828658,50.26,33.72,53.39,50.01,8.333333333333334,1,1,0,0,0,12,3,1,1889,220937.05,193982.7,34872.785,0,1024.8915 -16829,20723,37411,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.1822228,6.4374285,42,13,-112.0609,0,2,2,2019,6,0,0,0,4,0,0,0,0,1,0,6.630631,0,0,1,1,0,3.8405502,6.1761918,53.39,50.01,50.26,33.72,8.333333333333334,1,1,0,0,0,12,3,1,810,568482.38,106549.23,241542.31,0,1534.7681 -16830,20724,37412,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-992.862,0,2,2,2019,9,0,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,1,0,7,1,0,973,-151728.61,0,0,0,1129.2505 -16831,20725,37413,37414,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.64183,6.6663122,10,-6,-36.667416,0,2,2,2019,5,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.491993,65.15000000000001,29.3,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,405,788742.06,139395.41,446788.44,0,1964.8923 -16831,20725,37414,37413,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,10,6,-.2265649,0,3,3,2019,10,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,65.15000000000001,29.3,10,1,1,0,0,0,9,2,1,405,788742.06,139395.41,446788.44,0,1964.8923 -16832,20726,37415,37417,-9,-9,1,0,49,0,2,0,3,3,-9,0,5,0,0,0,23,-2,12.093692,0,3,1,2019,10,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47.39,53.93,62.42,42.94,8.333333333333334,2,3,0,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 -16832,20726,37416,-9,37415,37417,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-830.625,-9,3,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 -16832,20726,37417,37415,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,7.5622692,7.7415967,0,23,2,123.74906,0,3,1,2019,7,0,32,35,1,0,0,8.7988882,8.7988882,0,0,0,0,0,1,1,0,0,0,62.42,42.94,47.39,53.93,5,2,3,0,0,6,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 -16832,20726,37418,-9,37415,37417,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-977.75543,-9,3,1,2019,7,1,0,0,2,1,0,0,0,0,0,0,0,0,1,1,0,0,0,51.76,48.2,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 -16832,20726,37419,-9,37415,37417,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-861.0968,-9,3,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,749.79999,652715.88,553710.44,0,0,3103.4863 -16832,20727,37420,-9,37415,37417,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1110.5289,-9,3,1,2019,9,0,0,0,2,0,1,0,0,0,0,0,0,0,1,1,0,0,0,51.68,51.81,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,1617,-56138.895,0,0,0,0 -16833,20728,37421,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-902.49799,0,3,3,2019,24,10,0,0,4,10,0,0,0,1,0,0,0,0,1,1,0,0,0,28.15,27.84,-9,-9,1.666666666666667,2,3,0,1,0,6,1,1,1684,-183013.09,0,0,0,1060.6199 -16834,20729,37422,-9,37426,37423,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1080.5564,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 -16834,20729,37423,37426,-9,-9,1,1,40,0,4,0,1,1,-9,0,3,8.3529034,8.3191328,0,8,-5,-84.578415,0,1,1,2019,8,0,40,45,1,0,0,13.484091,13.484091,0,0,0,0,0,1,1,0,0,0,45.43,53.5,51.24,58.84,8.333333333333334,1,1,0,1,12,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 -16834,20729,37424,-9,37426,37423,1,1,16,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1047.7725,-9,1,1,2019,23,9,0,0,2,9,0,0,0,0,0,0,0,0,1,1,0,0,0,35.9,50.92,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 -16834,20729,37425,-9,37426,37423,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-997.43335,-9,1,1,2019,14,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 -16834,20729,37426,37423,-9,-9,1,0,45,0,4,0,1,1,-9,0,4,6.7326112,7.3132372,5.4377041,8,5,68.965462,0,-9,-9,2019,7,0,16,0,1,0,0,6.9139223,6.9139223,0,0,0,0,0,1,1,0,5.3784513,0,51.24,58.84,45.43,53.5,8.333333333333334,1,1,0,0,7,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 -16834,20729,37427,-9,37426,37423,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1160.2118,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,1058.6666,491331.5,44880.188,269926.75,59744.055,2923.114 -16834,20730,37428,-9,37426,37423,1,1,22,0,4,1,2,0,0,0,3,0,0,0,0,0,-1046.816,-9,1,1,2019,12,2,0,0,2,2,1,0,0,0,0,0,0,0,1,1,0,0,0,47.51,42.06,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,4263,-79137.938,0,0,0,1047.7529 -16835,20731,37429,-9,37432,37434,1,1,14,0,5,1,3,0,-9,0,4,0,0,0,0,0,-968.76062,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 -16835,20731,37430,-9,37432,37434,1,1,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1040.8475,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 -16835,20731,37431,-9,37432,37434,1,0,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1068.0345,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 -16835,20731,37432,37434,-9,-9,1,0,36,0,5,0,2,2,-9,0,4,7.4177332,7.3708363,0,4,-12,-17.099682,0,-9,-9,2019,20,9,28,25,1,9,0,6.0442085,6.0442085,0,0,0,0,0,1,1,0,.18000916,0,44.42,48.36,41.06,62.04,8.333333333333334,1,1,0,0,5,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 -16835,20731,37433,-9,37432,37434,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1029.5428,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 -16835,20731,37434,37432,-9,-9,1,1,48,0,5,0,1,1,-9,0,4,8.7508965,8.6984177,0,4,12,-29.477411,0,2,-9,2019,12,2,60,53,1,2,0,12.703199,12.703199,0,0,0,0,0,1,1,0,3.9617777,0,41.06,62.04,44.42,48.36,3.333333333333333,1,1,0,0,8,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 -16835,20731,37435,-9,37432,37434,1,1,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-981.07208,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,1002.8571,147617.59,162663.81,0,0,3621.5261 -16836,20732,37436,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,4,0,7.2793031,7.2828398,0,0,-1094.2275,0,3,3,2019,10,0,0,0,4,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9838696,60.04,36.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,501,1585313.3,143837.72,554852.63,0,2176.4409 -16836,20733,37437,-9,37436,-9,1,1,60,0,0,0,3,3,-9,0,3,7.4072585,7.5196066,0,0,0,-1030.9584,0,3,2,2019,17,5,39,39,1,5,0,5.4385304,5.4385304,0,0,0,0,14.5,1,1,0,1.569038,0,33.31,61.94,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,479,-109969.47,-59399.004,0,0,979.11127 -16837,20734,37438,-9,37440,37443,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.58868,-9,2,2,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 -16837,20734,37439,-9,37440,37443,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.0961,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 -16837,20734,37440,37443,-9,-9,1,0,36,0,4,0,2,2,-9,1,2,0,0,0,6,1,0,0,2,1,2019,12,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.4,43.04,30.94,61.65,5,1,1,0,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 -16837,20734,37441,-9,37440,37443,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1045.4674,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 -16837,20734,37442,-9,37440,37443,1,0,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1054.2882,-9,2,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 -16837,20734,37443,37440,-9,-9,1,1,35,0,4,0,2,2,-9,0,3,0,0,0,6,-1,0,0,-9,-9,2019,12,0,0,52,3,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.94,61.65,33.4,43.04,5,1,1,1,0,1,2,1,0,517.83331,-196419.41,0,0,0,2359.9817 -16838,20735,37444,37445,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,3.7111211,3.9210143,8,5,-100.75108,0,3,3,2019,9,0,0,0,4,1,0,0,0,1,0,128.73441,0,0,1,1,0,3.6074979,3.7277713,54,46,51,46,8,1,1,0,0,0,2,2,1,2931.5,1103666.5,25667.965,609833.5,95517.672,2167.2705 -16838,20735,37445,37444,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,8,-5,-58.136631,0,3,3,2019,11,0,0,0,4,1,0,0,0,0,0,0,0,120,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,2,2,1,2931.5,1103666.5,25667.965,609833.5,95517.672,2167.2705 -16839,20736,37446,37450,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,7.5734081,7.7102098,0,11,-3,-55.087223,0,2,3,2019,6,0,34,0,1,0,0,6.7407861,6.7407861,0,0,0,0,0,1,1,0,.14638349,0,46.71,48.99,51,56,1.666666666666667,2,3,0,0,6,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 -16839,20736,37447,-9,37446,37450,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.2501,-9,2,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 -16839,20736,37448,-9,37446,37450,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-943.87714,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 -16839,20736,37449,-9,37446,37450,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-880.19385,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 -16839,20736,37450,37446,-9,-9,1,1,36,0,4,0,1,1,-9,0,4,8.9725113,9.038209,0,11,3,119.69007,0,3,3,2019,10,0,35,48,1,1,0,33.761543,33.761543,0,0,0,0,0,1,1,0,0,0,51,56,46.71,48.99,7,2,3,0,0,7,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 -16839,20736,37451,-9,37446,37450,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.7493,-9,2,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,683,281416.44,48341.137,427222.5,270491.75,3870.0547 -16840,20737,37452,37453,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.3855815,7.002748,45,7,-29.152021,0,3,-9,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6593413,62.84,30.79,44.51,49.63,8.333333333333334,1,1,0,0,4,7,3,1,723.5,93291.156,39819.066,229997.05,73319.555,2104.0933 -16840,20737,37453,37452,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.68717,7.7077847,0,45,-7,-68.677879,0,3,3,2019,19,7,37,45,1,7,0,8.5108404,8.5108404,0,0,0,0,0,1,1,0,0,0,44.51,49.63,62.84,30.79,6.666666666666667,1,1,0,0,9,7,3,1,723.5,93291.156,39819.066,229997.05,73319.555,2104.0933 -16841,20738,37454,37455,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,5,21,-58.476185,0,2,2,2019,22,9,0,0,3,9,0,0,0,0,0,0,0,0,1,0,1,0,0,29.87,51.67,51.06,38.27,5,1,1,0,1,0,9,2,0,730,-27099.977,0,0,0,670.01465 -16841,20738,37455,37454,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.2617245,7.0751624,0,5,-21,30.177691,0,-9,-9,2019,12,0,24,0,1,0,0,6.697504,6.697504,0,0,0,0,0,1,0,1,0,0,51.06,38.27,29.87,51.67,6.666666666666667,1,1,0,1,0,9,2,0,730,-27099.977,0,0,0,670.01465 -16842,20739,37456,-9,37458,-9,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-972.50995,-9,1,1,2019,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1.3852935,0,57.91,46.31,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,558,319747.63,0,0,0,177.43163 -16842,20740,37457,37458,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.2099571,8.1306458,6,10,-24.168926,0,3,2,2019,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,8.1799927,61.12,51.57,51.77,58.57,10,1,1,0,0,8,5,4,1,194.5,1676803.5,1011121.1,351319.91,40840.402,2946.9746 -16842,20740,37458,37457,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.2413669,7.4521389,0,6,-10,148.07965,0,3,3,2019,15,4,24,36,1,4,0,7.1767211,7.1767211,0,0,0,0,0,0,0,0,0,0,51.77,58.57,61.12,51.57,6.666666666666667,1,1,0,1,8,5,4,1,194.5,1676803.5,1011121.1,351319.91,40840.402,2946.9746 -16843,20741,37459,37460,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,7.7959709,7.7780576,0,15,-3,85.175774,0,2,1,2019,8,0,22,23,1,0,0,10.812168,10.812168,0,0,0,0,0,0,0,0,3.7339838,0,58.82,33.59,53.08,52.64,8.333333333333334,1,1,0,0,7,7,5,1,797,210133.41,14721.338,0,0,3484.5364 -16843,20741,37460,37459,-9,-9,1,1,41,1,2,0,2,2,-9,0,3,8.9527607,8.8693218,0,14,3,71.495552,0,2,2,2019,8,1,60,50,1,1,0,17.898651,17.898651,0,0,0,0,0,0,0,0,3.9417028,0,53.08,52.64,58.82,33.59,6.666666666666667,1,1,0,0,9,7,5,1,797,210133.41,14721.338,0,0,3484.5364 -16843,20741,37461,-9,37459,37460,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.82391,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,797,210133.41,14721.338,0,0,3484.5364 -16843,20741,37462,-9,37459,37460,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.7145,-9,1,2,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,797,210133.41,14721.338,0,0,3484.5364 -16844,20742,37463,37464,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.7415304,8.3426809,0,16,-8,5.195219,0,1,2,2019,5,0,32,28,1,0,0,25.032137,25.032137,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.69,57.47,8.333333333333334,1,1,0,0,8,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 -16844,20742,37464,37463,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.6186495,8.3234463,0,7,8,-5.9220028,0,-9,-9,2019,7,0,48,94,1,0,0,10.982417,10.982417,0,0,0,0,0,1,1,0,0,0,54.69,57.47,54.37,54.8,6.666666666666667,1,1,0,0,8,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 -16844,20742,37465,-9,37463,37464,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1034,-9,1,1,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 -16844,20742,37466,-9,37463,37464,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.6387,-9,1,1,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,725.5,604005.44,101329.64,403673.88,206321.58,4562.6885 -16845,20743,37467,37468,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.223382,9.3941965,0,5,3,-39.779446,0,2,1,2019,9,0,42,43,1,0,0,26.286308,26.286308,0,0,0,0,0,0,0,0,7.0057859,0,55.19,54.26,51,54,1.666666666666667,1,1,0,0,8,12,5,1,170,508585.88,477748.5,207445.44,39672.633,4217.4707 -16845,20743,37468,37467,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,5,-3,-131.84558,0,-9,-9,2019,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,55.19,54.26,8,1,1,1,0,0,12,5,1,170,508585.88,477748.5,207445.44,39672.633,4217.4707 -16846,20744,37469,37470,-9,-9,1,1,46,0,4,0,3,3,-9,0,3,8.1465378,8.2094307,0,15,5,-161.56018,0,2,3,2019,16,5,40,40,1,5,0,11.240708,11.240708,0,0,0,3.6641557,0,1,1,0,.34482619,0,39.05,59.16,51.24,58.84,8.333333333333334,1,1,0,0,12,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 -16846,20744,37470,37469,-9,-9,1,0,41,0,4,0,1,1,-9,0,4,8.2697315,8.3219566,0,15,-5,-22.519276,0,3,1,2019,10,2,35,30,1,2,0,12.953149,12.953149,0,0,0,0,0,1,1,0,.14084688,0,51.24,58.84,39.05,59.16,8.333333333333334,1,1,0,0,10,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 -16846,20744,37471,-9,37470,37469,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-960.698,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 -16846,20744,37472,-9,37470,37469,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.157,-9,1,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,754.75,338475.66,109079.21,230085.02,107014.64,3256.031 -16847,20745,37473,-9,37476,-9,1,1,23,0,1,0,2,2,-9,0,5,7.8484998,8.0692406,0,0,0,-880.65686,0,3,3,2019,6,0,36,40,1,0,1,7.7840595,7.7840595,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,6,3,0,579,-17892.252,-31613.016,0,0,912.08179 -16847,20746,37474,-9,37476,-9,1,0,23,0,1,0,2,2,-9,0,4,7.3625722,7.5655675,0,0,0,-1025.6919,0,3,2,2019,6,0,36,32,1,0,1,7.2104797,7.2104797,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,8.333333333333334,2,3,0,0,4,6,3,0,554,-48515.613,0,0,0,1283.2693 -16847,20747,37475,-9,37476,-9,1,0,20,0,1,0,2,2,1,0,4,7.9670925,7.5855093,0,0,0,-1131.5741,-9,3,-9,2019,8,0,37,0,1,0,1,6.8020892,6.8020892,0,0,0,0,0,1,1,0,0,0,59.54,45.7,-9,-9,5,2,3,0,0,2,6,3,0,647,-289184.22,-37616.316,0,0,971.59027 -16847,20748,37476,-9,-9,-9,1,0,48,0,1,0,3,3,-9,0,4,6.9926224,7.004344,0,0,0,-1014.2302,0,3,3,2019,19,5,16,16,1,5,0,6.9279976,6.9279976,0,0,0,0,0,1,1,0,0,0,33.39,46.9,-9,-9,5,2,3,0,0,3,6,2,0,1379.5,111455.31,0,0,0,1324.2765 -16847,20748,37477,-9,37476,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-858.30859,-9,3,-9,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,1379.5,111455.31,0,0,0,1324.2765 -16848,20749,37478,-9,37479,37481,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.981,-9,1,2,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 -16848,20749,37479,37481,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,9.018343,8.6258526,0,10,5,-31.638214,0,1,2,2019,14,3,46,50,1,3,0,20.580847,20.580847,0,0,0,0,0,1,1,0,4.8938646,0,51.23,40.44,47.31,50.2,5,1,1,0,1,12,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 -16848,20749,37480,-9,37479,37481,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.5004,-9,1,2,2019,13,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 -16848,20749,37481,37479,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,7.7679,7.918437,0,10,-5,95.040779,0,2,-9,2019,8,1,48,0,1,1,0,6.7616796,6.7616796,0,0,0,0,0,1,1,0,0,0,47.31,50.2,51.23,40.44,8.333333333333334,1,1,0,1,9,8,5,1,579.75,1319117.3,798302.88,659124.75,204184.13,5446.0396 -16849,20750,37482,37483,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.0798721,8.2082081,0,2,21,80.760582,0,3,3,2019,11,2,55,34,1,2,0,6.2604556,6.2604556,0,0,0,0,0,1,1,0,0,0,46.15,40.22,33.32,18.46,6.666666666666667,1,1,0,0,1,13,3,0,848.5,143610.31,-8186.2285,24462.816,60707.18,1599.4756 -16849,20750,37483,37482,-9,-9,1,0,27,0,0,0,2,2,-9,1,1,0,0,0,2,-21,-47.922707,0,-9,-9,2019,13,2,0,0,3,2,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,46.15,40.22,6.666666666666667,1,1,0,0,0,13,3,0,848.5,143610.31,-8186.2285,24462.816,60707.18,1599.4756 -16850,20751,37484,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.4988565,7.8110905,0,0,-1127.2573,0,3,3,2019,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,6.8341827,7.8565402,54,30.75,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,501,1055084.1,398121.16,594212.13,0,1081.1792 -16851,20752,37485,37487,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.2960415,8.5670433,0,10,0,-58.255039,0,3,2,2019,8,0,31,31,1,0,0,11.704745,11.704745,0,0,0,0,0,1,1,0,0,0,48.87,58.55,30.89,61.61,6.666666666666667,1,1,0,0,9,5,4,1,926.66669,876955.19,780862.94,246634.81,137733.84,2982.1306 -16851,20752,37486,-9,37485,37487,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.813,-9,1,3,2019,11,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,926.66669,876955.19,780862.94,246634.81,137733.84,2982.1306 -16851,20752,37487,37485,-9,-9,1,1,37,1,1,0,3,3,-9,0,4,8.1854706,8.1845417,0,10,0,-88.783028,0,2,2,2019,17,6,36,34,1,6,0,7.555593,7.555593,0,0,0,0,0,1,1,0,0,0,30.89,61.61,48.87,58.55,3.333333333333333,1,1,0,1,11,5,4,1,926.66669,876955.19,780862.94,246634.81,137733.84,2982.1306 -16852,20753,37488,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.444169,8.4127007,0,0,0,-1038.7335,0,2,-9,2019,5,0,35,38,1,0,0,14.346785,14.346785,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,6,8,5,0,171,-277812.38,-62595.039,0,0,2682.2622 -16853,20754,37489,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,7.7484536,7.8904433,0,0,-1033.2657,0,1,2,2019,11,0,0,50,4,0,0,0,0,0,0,0,0,0,0,0,0,2.5426581,7.8539581,53.51,60.74,-9,-9,6.666666666666667,1,1,0,0,12,13,3,1,853,1816399.6,589482.81,509609.84,0,1364.8755 -16854,20755,37490,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,0,0,0,0,-931.48145,0,3,3,2019,9,0,0,0,3,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.41,56.75,-9,-9,5,1,1,1,1,0,13,1,0,812,27419.191,-76196.93,0,0,175.42641 -16855,20756,37491,-9,37493,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2382,-9,2,3,2019,12,0,0,0,2,3,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,737.33331,-52716.043,0,0,0,1522.9086 -16855,20756,37492,-9,37493,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.3102,-9,2,3,2019,12,0,0,0,2,2,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,1,0,737.33331,-52716.043,0,0,0,1522.9086 -16855,20756,37493,-9,-9,-9,1,0,22,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1111.4126,0,2,2,2019,2,1,0,0,3,1,0,0,0,0,0,0,0,0,1,1,0,0,0,33.23,45.89,-9,-9,10,1,1,1,0,0,7,1,0,737.33331,-52716.043,0,0,0,1522.9086 -16856,20757,37494,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.5096846,5.8109689,0,0,-956.86658,0,3,3,2019,9,0,0,0,4,0,0,0,0,0,0,0,0,0,1,1,0,5.5219865,5.535645,63.42,34.17,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,1638,339994.63,143929.67,226840.86,0,1770.0194 +idHh,idBu,idPers,idPartner,idMother,idFather,statCollectionWave,demMaleFlag,demAge,demNChild0to2,demNChild,eduSpellFlag,eduHighestC3,eduHighestC4,eduExitSampleFlag,healthDsblLongtermFlag,healthSelfRated,yEmpPersGrossMonth,yNonBenPersGrossMonth,yMiscPersGrossMonth,demPartnerNYear,demAgePartnerDiff,yPersAndPartnerGrossDiffMonth,eduReturnFlag,eduHighestMotherC3,eduHighestFatherC3,statInterviewYear,healthWbScore0to36,scghq2_dv,labHrsWorkWeek,labHrsWorkWeekL1,labC4,healthPsyDstrss0to12,demAdultChildFlag,labWageHrly,labWageHrlyL1,contRateOPEe,contRateOPEr,contRatePP,careNeedFlag,careHrsFormal,careHrsInformal,careFormalX,careHrsProvidedWeek,yBenReceivedFlag,yBenNonUCReceivedFlag,yBenUCReceivedFlag,yCapitalPersMonth,yPensPersGrossMonth,healthMentalMcs,healthPhysicalPcs,healthMentalPartnerMcs,healthPhysicalPartnerPcs,demLifeSatScore0to10,demEthnC4,demEthnC6,labUnempFlag,yFinDstrssFlag,labEmpNyear,demRgn,yHhQuintilesMonthC5,wealthPrptyFlag,wgtHhCross,wealthTotValue,wealthPensValue,wealthPrptyValue,wealthMortgageDebtValue,wealthUnsecuredDebtLowValue,wealthUnsecuredDebtHighValue,yDispMonth +1,1,1,2,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,7.1446667,7.4427361,0,7,-5,-23.427813,0,-9,-9,2021,8,0,29,0,1,0,0,4.9598174,4.9598174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,59.91,50.77,6.666666666666667,1,1,0,0,11,4,4,0,899.66669,-87095.047,18382.381,94851.625,107840.63,6507.7446,410.88684,2430.1846 +1,1,2,1,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.3670883,8.0628557,0,7,5,39.522541,0,-9,-9,2021,12,0,37,37,1,0,0,13.023309,13.023309,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.91,50.77,52,54.51,5,1,1,0,0,8,4,4,0,899.66669,-87095.047,18382.381,94851.625,107840.63,6507.7446,410.88684,2430.1846 +1,1,3,-9,1,2,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.9696,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,899.66669,-87095.047,18382.381,94851.625,107840.63,6507.7446,410.88684,2430.1846 +2,2,4,5,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.0056987,7.3533659,46,4,9.5189924,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3828955,6.9407463,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,1,12,2,1,1048,235910.59,148402.48,0,0,0,0,2166.6978 +2,2,5,4,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.725832,6.2049422,46,-4,-71.862152,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0914321,5.7696462,57.33,53.46,60.29,52.11,8.333333333333334,1,1,0,0,4,12,2,1,1048,235910.59,148402.48,0,0,0,0,2166.6978 +3,3,6,7,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,6,2,0,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,2,3,1,0,0,8,1,0,867.5,79064.859,0,0,0,0,0,253.66443 +3,3,7,6,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,0,0,0,26,-2,0,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,53,55,8,2,3,0,0,0,8,1,0,867.5,79064.859,0,0,0,0,0,253.66443 +3,4,8,-9,7,6,1,1,22,0,0,0,2,2,-9,0,4,6.2687063,6.2386379,0,0,0,-1079.3403,0,2,2,2021,7,0,5,0,1,0,1,13.977149,13.977149,0,0,0,0,0,0,0,2,1,1,0,0,0,53.51,48.16,-9,-9,6.666666666666667,2,3,0,0,1,8,2,0,77,98707.297,0,0,0,0,0,508.92719 +3,5,9,-9,7,6,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-998.04761,0,3,3,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.048933759,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,677,33311.137,0,0,0,0,0,279.88953 +4,6,10,-9,12,13,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5566,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +4,6,11,-9,12,13,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-850.45105,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +4,6,12,13,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.7158332,7.7647395,0,20,1,-73.55349,0,2,3,2021,8,0,34,29,1,0,0,10.324546,10.324546,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,44.48,52.88,8.333333333333334,1,1,0,0,8,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +4,6,13,12,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.3768969,8.5276613,6.9216728,17,-1,-92.325661,0,2,2,2021,12,0,58,57,1,0,0,9.3683157,9.3683157,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3654065,44.48,52.88,51.41,56.15,5,1,1,0,0,8,7,4,1,837.5,1232540,730536.88,461571.88,117360.04,0,0,4312.8726 +5,7,14,15,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,34,1,-152.86072,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.6379943,0,32.87,62.52,46.42,56.97,10,1,1,0,0,12,11,2,1,1958,223228.13,178716.56,0,0,0,0,2881.5659 +5,7,15,14,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.3854151,7.5457435,0,34,-1,7.0383,0,2,2,2021,19,7,24,18,1,7,0,9.9594898,9.9594898,.05,.05,0,0,0,0,0,7,0,0,0,5.6603184,0,46.42,56.97,32.87,62.52,5,1,1,0,0,13,11,2,1,1958,223228.13,178716.56,0,0,0,0,2881.5659 +6,8,16,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.00067,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.6,48.58,-9,-9,5,1,1,0,0,10,5,2,1,372,-64442.23,0,129430.25,0,0,3278.8853,1120.8361 +7,9,17,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.9380155,8.1250563,0,0,0,-1071.3406,0,-9,-9,2021,10,0,42,38,1,0,0,7.1047163,7.1047163,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.67,44.61,-9,-9,8.333333333333334,1,1,0,0,10,6,3,1,67,354018.28,9471.252,446947.97,20628.479,0,0,1637.9731 +7,10,18,-9,17,-9,1,1,29,0,0,0,1,1,-9,0,4,7.9587693,7.8341231,0,0,0,-919.37946,0,1,-9,2021,10,0,37,42,1,1,1,8.2773237,8.2773237,.05,.05,0,0,0,0,0,0,1,1,0,1.3355578,0,49,58,-9,-9,7,4,2,0,0,1,6,4,1,66,107802.98,-41618.84,0,0,0,0,2110.5061 +8,11,19,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.5054851,7.1141553,0,0,-1053.2111,0,2,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8356848,6.3311,47.87,32.33,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,426,260993.19,183487.17,272797.03,0,0,0,1030.4489 +9,12,20,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.4716129,8.2504044,0,0,-879.94287,0,3,3,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.8988118,8.168849,60.95,27.12,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,431,379225.38,244084.44,8847.6689,38021.727,0,0,3251.8442 +10,13,21,22,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.0121446,7.4140167,12,0,-211.43073,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.99673396,6.9424539,38.76,38.17,57.51,47.91,3.333333333333333,1,1,0,0,6,4,2,1,330.5,507773.59,284867.78,175711.63,4619.5503,2852.814,5691.2607,1853.8816 +10,13,22,21,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.7278447,6.8806801,12,0,91.163818,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.242784,6.5591917,57.51,47.91,38.76,38.17,6.666666666666667,1,1,0,0,7,4,2,1,330.5,507773.59,284867.78,175711.63,4619.5503,2852.814,5691.2607,1853.8816 +11,14,23,25,-9,-9,1,0,35,1,1,0,1,1,-9,0,3,8.6912613,8.7307568,7.6312847,5,4,133.96143,0,2,2,2021,8,1,30,38,1,1,0,20.761507,20.761507,.05,.05,0,0,0,0,0,0,1,1,0,7.8681831,0,47.21,55.3,54.1,59.11,8.333333333333334,1,1,0,0,8,5,5,1,425.33334,954508.06,853200.25,143309.48,94778.156,2915.7368,0,5785.5195 +11,14,24,-9,23,25,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-875.12421,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,425.33334,954508.06,853200.25,143309.48,94778.156,2915.7368,0,5785.5195 +11,14,25,23,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,8.7170544,8.5410872,0,5,-4,-17.872942,0,-9,-9,2021,7,0,38,40,1,0,0,20.023432,20.023432,.05,.05,0,0,0,0,0,0,1,1,0,3.0193622,0,54.1,59.11,47.21,55.3,8.333333333333334,1,1,0,0,6,5,5,1,425.33334,954508.06,853200.25,143309.48,94778.156,2915.7368,0,5785.5195 +12,15,26,-9,28,27,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1023.1299,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,439.66666,495748.59,391821.06,302374.72,113614.2,0,4559.999,3902.0874 +12,15,27,28,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.3244438,8.6860323,0,9,2,-54.94878,0,-9,-9,2021,14,4,37,37,1,4,0,13.077152,13.077152,.05,.05,.05,0,0,0,0,2,1,1,0,.63304782,0,45.56,60.26,35.8,59.5,8.333333333333334,1,1,0,0,12,4,5,1,439.66666,495748.59,391821.06,302374.72,113614.2,0,4559.999,3902.0874 +12,15,28,27,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.6378632,8.4472942,0,23,-2,-121.87408,0,2,2,2021,13,2,40,40,1,2,0,19.226509,19.226509,.05,.05,0,0,0,0,0,2,1,1,0,.62977451,0,35.8,59.5,45.56,60.26,8.333333333333334,1,1,0,0,12,4,5,1,439.66666,495748.59,391821.06,302374.72,113614.2,0,4559.999,3902.0874 +12,16,29,-9,28,27,1,0,19,0,1,0,2,2,-9,0,4,6.9431624,7.0709333,0,0,0,-965.95819,0,1,2,2021,9,0,36,28,1,0,1,4.2052245,4.2052245,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,2649,-130189.92,0,0,0,0,0,-43.133598 +13,17,30,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1052.6726,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.86,43.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,381,85208.094,0,0,0,0,-11.706818,1176.205 +13,18,31,-9,30,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0247335,8.1987886,0,0,0,-934.93542,0,3,-9,2021,10,1,38,37,1,1,0,8.7596884,8.7596884,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.02,52.22,-9,-9,1.666666666666667,1,1,0,0,12,12,4,0,545,53663.719,103845.7,0,0,0,0,1502.6451 +14,19,32,33,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,60,-5,-67.717186,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,51.02,52.99,51.28,10,1,1,0,0,0,9,3,1,690,761378.75,342290.69,477587.19,0,0,0,3192.1992 +14,19,33,32,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,8.0278301,7.6154318,60,5,168.86992,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7658882,7.9376869,52.99,51.28,56.18,51.02,10,1,1,0,0,0,9,3,1,690,761378.75,342290.69,477587.19,0,0,0,3192.1992 +15,20,34,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1083.7632,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.12,25.47,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,318,-28211.998,0,0,0,0,0,726.33276 +16,21,35,38,-9,-9,1,0,37,2,3,0,1,1,-9,0,5,0,0,0,9,-2,-37.412472,-9,2,1,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,54.69,57.47,10,1,1,0,0,7,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,36,-9,35,38,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-952.88715,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,37,-9,35,38,1,0,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.009,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,38,35,-9,-9,1,1,39,2,3,0,1,1,-9,0,5,9.6255207,9.4773512,0,9,2,-63.319187,0,-9,-9,2021,9,0,50,50,1,0,0,29.618464,29.618464,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51.14,60.45,8.333333333333334,1,1,0,0,8,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +16,21,39,-9,35,38,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-923.65326,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1140.2,38858.813,0,0,0,0,0,4031.2437 +17,22,40,41,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,7.1179528,7.0292268,62,1,-13.484475,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,9.3104582,0,0,1,1,0,0,7.2005782,49.04,25.26,60.3,36.05,8.333333333333334,1,1,0,0,0,9,2,1,1570.5,1310728.5,106469.14,464698.88,0,0,0,2049.5127 +17,22,41,40,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.2051907,5.8437085,62,-1,-142.96463,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7813959,60.3,36.05,49.04,25.26,10,1,1,0,0,5,9,2,1,1570.5,1310728.5,106469.14,464698.88,0,0,0,2049.5127 +18,23,42,-9,45,43,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.439,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +18,23,43,45,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.8937597,8.7860041,0,15,-2,-64.327217,0,-9,-9,2021,9,0,35,38,1,0,0,22.616468,22.616468,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,10,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +18,23,44,-9,45,43,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.10974,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +18,23,45,43,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,7.6163707,7.857563,0,14,2,91.657921,0,1,1,2021,12,2,16,15,1,2,0,17.876883,17.876883,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,5,9,4,1,2258,84601.352,45922.234,242872.41,179858.02,5934.2725,2975.4473,3032.198 +19,24,46,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,0,0,0,0,0,-983.23608,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5350826,0,61.83,36.54,-9,-9,3.333333333333333,1,1,1,1,0,2,1,1,1032,-67752.742,0,0,0,-23.377695,0,985.45667 +20,25,47,48,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.7270803,8.7776031,49,0,-13.052255,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8248873,8.7989798,48.87,58.55,42.95,54.48,10,1,1,0,0,0,9,4,1,258.5,1122095.1,744116.13,431234.06,0,0,0,3719.9995 +20,25,48,47,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,4.4758263,4.7453175,49,0,-16.327824,0,2,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3666353,42.95,54.48,48.87,58.55,8.333333333333334,1,1,0,0,0,9,4,1,258.5,1122095.1,744116.13,431234.06,0,0,0,3719.9995 +20,26,49,-9,48,47,1,1,37,0,0,0,1,1,-9,0,2,8.078887,7.922792,0,0,0,-1212.8579,0,1,1,2021,18,7,40,38,1,7,0,9.6803789,9.6803789,.05,.05,0,0,0,0,0,0,1,1,0,3.0998812,0,35.56,54.64,-9,-9,5,1,1,0,0,6,9,4,1,839,95814.602,22718.564,106150.2,50045.059,0,0,1324.2515 +21,27,50,51,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.280901,8.3641043,0,18,-2,-2.0110695,0,3,2,2021,6,0,35,2,1,0,0,14.891757,14.891757,.05,.05,0,0,0,0,0,0,1,1,0,7.8529687,0,59.46,46.99,46.88,58.45,8.333333333333334,2,3,0,0,10,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +21,27,51,50,-9,-9,1,0,41,0,2,0,2,2,-9,1,4,6.9404769,7.1330419,0,19,2,103.53641,0,-9,-9,2021,7,0,12,5,1,0,0,12.125443,12.125443,.05,.05,0,0,0,0,0,0,1,1,0,7.6724176,0,46.88,58.45,59.46,46.99,8.333333333333334,2,3,0,0,8,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +21,27,52,-9,51,50,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-841.75171,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +21,27,53,-9,51,50,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-943.85284,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,3,0,626,646294.56,112896.22,316095.09,183921.72,690.2713,0,5952.6909 +22,28,54,55,-9,-9,1,0,36,0,1,0,1,1,-9,1,4,7.0805473,7.083199,0,7,-1,34.963184,0,-9,-9,2021,12,0,16,14,1,0,0,8.3153505,8.3153505,.05,.05,0,0,0,0,0,110,1,1,0,0,0,46.5,58.26,55.14,47.62,6.666666666666667,1,1,0,0,6,4,5,1,683.33331,162262.55,92900.414,148003.39,81130.914,2857.739,29.832167,4429.3242 +22,28,55,54,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,9.0071898,8.8334446,0,7,1,-119.11199,0,2,2,2021,8,1,38,35,1,1,0,25.635271,25.635271,.05,.05,0,0,0,0,0,0,1,1,0,7.1259265,0,55.14,47.62,46.5,58.26,6.666666666666667,1,1,0,0,9,4,5,1,683.33331,162262.55,92900.414,148003.39,81130.914,2857.739,29.832167,4429.3242 +22,28,56,-9,54,55,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.1571,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,683.33331,162262.55,92900.414,148003.39,81130.914,2857.739,29.832167,4429.3242 +23,29,57,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.1028156,7.8493118,0,0,0,-965.20245,0,2,2,2021,12,0,30,30,1,0,0,12.320958,12.320958,.05,.05,0,0,0,0,0,27,1,0,1,0,0,44.46,52.89,-9,-9,6.666666666666667,1,1,0,0,15,10,4,1,905,29879.488,-62043.082,0,0,0,797.80841,1067.4572 +23,30,58,-9,57,-9,1,1,24,0,0,0,2,2,-9,0,3,7.3250103,7.34653,0,0,0,-1060.4674,0,2,-9,2021,13,1,38,0,1,1,1,6.443295,6.443295,0,0,0,0,0,0,0,0,1,0,1,0,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,1,1,10,3,1,437,-297875.84,0,0,0,0,0,1726.4099 +24,31,59,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,6.6734548,6.8647265,0,5,4,99.445915,0,-9,-9,2021,9,0,25,32,1,0,0,4.3046021,4.3046021,.05,.05,0,0,0,0,0,0,1,1,0,6.021524,0,52.77,55.33,48,56,6.666666666666667,1,1,0,0,12,11,2,1,257,455605.03,54427.359,140529.08,0,0,0,346.02591 +25,32,60,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.5574765,5.5474925,0,0,-965.60052,-9,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7244415,49.04,27.94,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,2535,-29451.162,92365.523,0,0,0,0,324.29214 +26,33,61,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.709764,7.8816032,0,0,0,-943.68396,0,3,3,2021,6,0,48,38,1,0,0,8.1240425,8.1240425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,11,3,0,416,-23742.748,29715.16,0,0,0,0,1331.92 +27,34,62,63,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,7.9186974,8.4496641,6.7808223,9,2,189.64149,0,3,3,2021,5,0,44,39,1,0,0,6.6167274,6.6167274,.05,.05,0,0,0,0,0,0,1,1,0,3.9109452,6.891468,60.29,52.11,49,48,8.333333333333334,1,1,0,0,7,6,3,1,721.5,155243.34,157809.95,0,0,0,1487.2599,2795.9585 +27,34,63,62,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,9,-2,-108.6721,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.230953,0,49,48,60.29,52.11,7,1,1,0,0,3,6,3,1,721.5,155243.34,157809.95,0,0,0,1487.2599,2795.9585 +28,35,64,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3428493,7.1415172,0,0,-1021.9205,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7693853,7.3564839,46.84,58.02,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,726,789464.94,179733.52,248465.8,0,0,0,2125.5396 +29,36,65,67,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.9973688,8.0571432,7,-6,53.280132,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7379446,7.5741334,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,4,13,5,1,290.66666,3009585,1404327.9,536219.5,0,0,0,4946.3408 +29,36,66,-9,65,67,1,0,14,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1162.1625,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,13,5,1,290.66666,3009585,1404327.9,536219.5,0,0,0,4946.3408 +29,36,67,65,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.5572844,8.3992071,7,6,-33.448837,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7181797,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,0,13,5,1,290.66666,3009585,1404327.9,536219.5,0,0,0,4946.3408 +30,37,68,70,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,7.6597958,7.5669527,0,22,-2,-5.2782068,0,1,1,2021,7,0,27,25,1,0,0,8.5849638,8.5849638,0,0,0,0,0,0,0,2,1,1,0,7.7162108,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,8,4,1,1517,1981736,1027880.1,467622.91,0,0,0,3997.2568 +30,37,69,-9,68,70,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-928.4801,-9,1,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,0,8,4,1,1517,1981736,1027880.1,467622.91,0,0,0,3997.2568 +30,37,70,68,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.6096191,8.8403978,0,22,2,83.90728,0,2,3,2021,6,0,37,37,1,0,0,15.13543,15.13543,.05,.05,0,0,0,0,0,0,1,1,0,2.7808855,0,62.49,55.09,57.16,56.15,5,1,1,0,0,10,8,4,1,1517,1981736,1027880.1,467622.91,0,0,0,3997.2568 +31,38,71,72,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5677547,8.5499563,3.3672569,8,1,-44.504242,0,3,3,2021,11,0,58,47,1,0,0,10.978728,10.978728,0,0,0,0,0,0,0,0,0,0,0,3.0874586,2.6487968,38.34,62.12,57.51,47.91,8.333333333333334,1,1,0,0,9,8,5,0,817.5,2635545.5,2498312.3,323739.56,112631.55,0,0,7084.7095 +31,38,72,71,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.242589,9.4948921,0,8,-1,31.153032,0,-9,-9,2021,6,0,50,55,1,0,0,24.279535,24.279535,.05,.05,0,0,0,0,0,0,0,0,0,7.5655947,0,57.51,47.91,38.34,62.12,0,1,1,0,0,10,8,5,0,817.5,2635545.5,2498312.3,323739.56,112631.55,0,0,7084.7095 +32,39,73,74,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.6674733,6.3016033,11,4,40.177059,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6993709,52,48,47.16,55.33,7,1,1,0,0,0,10,2,1,466.5,404499.75,214776.63,245450.66,0,7103.0654,0,1383.6589 +32,39,74,73,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,48,-4,90.000626,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.16,55.33,52,48,8.333333333333334,1,1,0,0,13,10,2,1,466.5,404499.75,214776.63,245450.66,0,7103.0654,0,1383.6589 +32,40,75,-9,74,73,1,0,33,0,0,0,2,2,-9,0,4,7.9658408,7.7218437,0,0,0,-905.36987,0,3,2,2021,11,0,40,40,1,2,0,8.2685852,8.2685852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,3,1,547,39539.035,127709.84,0,0,0,0,1296.543 +33,41,76,77,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.4131494,6.4356503,0,40,1,108.63799,0,3,3,2021,13,1,24,18,1,1,0,2.3115439,2.3115439,0,0,0,0,0,0,0,0,0,0,0,1.1695417,0,47.7,47.03,38.59,60.85,6.666666666666667,2,3,0,1,10,9,2,1,214.5,421516.13,-4865.5186,454697.38,59000.164,5427.8105,2301.2695,5968.3735 +33,41,77,76,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,6.5244627,6.6750507,0,40,-1,-77.700424,0,3,3,2021,8,0,50,50,1,0,0,1.783774,1.783774,.05,.05,0,0,0,0,0,0,0,0,0,8.9379358,0,38.59,60.85,47.7,47.03,8.333333333333334,1,1,0,0,11,9,2,1,214.5,421516.13,-4865.5186,454697.38,59000.164,5427.8105,2301.2695,5968.3735 +33,42,78,-9,76,77,1,1,21,0,0,0,2,2,-9,0,4,8.4150572,8.3244333,0,0,0,-1022.6503,0,2,3,2021,5,0,42,38,1,0,1,12.782836,12.782836,.05,.05,0,0,0,0,0,0,0,0,0,3.7726288,0,48.11,56.11,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,215,56765.238,10285.162,0,0,0,0,2062.446 +33,43,79,-9,76,77,1,0,28,0,0,0,1,1,-9,0,5,8.7533941,8.6430159,0,0,0,-1091.7856,0,2,3,2021,6,0,47,47,1,0,1,12.918082,12.918082,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.6,44.82,-9,-9,8.333333333333334,4,2,0,0,6,9,5,1,1444,-82037.859,831.23901,0,0,50367.777,0,1749.7716 +34,44,80,-9,81,82,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.4733,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +34,44,81,82,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.8528008,7.703918,0,12,-1,-57.784622,0,2,2,2021,21,10,20,20,1,10,0,12.23604,12.23604,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.83,57.6,35.79,57.01,6.666666666666667,1,1,0,0,8,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +34,44,82,81,-9,-9,1,1,35,1,2,0,2,2,-9,0,2,8.5266619,8.3689165,0,12,1,-26.55316,0,1,2,2021,21,9,43,43,1,9,0,11.812822,11.812822,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,35.79,57.01,27.83,57.6,5,1,1,0,0,11,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +34,44,83,-9,81,82,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.65808,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,619.5,-7635.7461,85467.898,0,0,0,5108.8618,2623.0547 +35,45,84,-9,86,85,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.0311,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,854.33331,250087.41,209924.91,194455.39,148126.88,0,0,4859.9829 +35,45,85,86,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.4259186,8.2643776,0,7,-2,-5.3042631,0,-9,-9,2021,13,2,2,3,1,2,0,241.06668,241.06668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,35.38,63.46,6.666666666666667,1,1,0,0,6,2,5,1,854.33331,250087.41,209924.91,194455.39,148126.88,0,0,4859.9829 +35,45,86,85,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,8.9809179,8.9258013,0,7,2,66.478622,0,2,3,2021,19,7,13,13,1,7,0,54.767479,54.767479,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.38,63.46,48.87,58.55,6.666666666666667,1,1,0,0,12,2,5,1,854.33331,250087.41,209924.91,194455.39,148126.88,0,0,4859.9829 +36,46,87,88,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.7048368,5.8394685,29,0,59.51503,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.938416,6.2195396,40.55,44.93,36.18,48.3,8.333333333333334,1,1,0,0,0,7,2,0,266,370309.19,67602.398,313051.38,0,0,0,1793.9893 +36,46,88,87,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.094769,5.802453,32,0,-83.559151,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1410828,36.18,48.3,40.55,44.93,8.333333333333334,1,1,0,0,0,7,2,0,266,370309.19,67602.398,313051.38,0,0,0,1793.9893 +37,47,89,90,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.4495926,7.3094325,0,6,0,68.14901,0,-9,-9,2021,11,0,54,52,1,1,0,2.6982388,2.6982388,0,0,0,0,0,0,0,0,1,1,0,5.8498645,0,51,46,62.6,34.53,7,1,1,0,0,1,7,4,1,813.5,1052940.5,334169.88,500186.94,0,0,0,2951.3828 +37,47,90,89,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.807394,7.9812474,48,9,-117.36343,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7705212,7.6236119,62.6,34.53,51,46,8.333333333333334,1,1,0,0,9,7,4,1,813.5,1052940.5,334169.88,500186.94,0,0,0,2951.3828 +38,48,91,-9,92,93,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-959.01984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +38,48,92,93,-9,-9,1,0,29,2,2,0,2,2,-9,0,4,6.8193827,6.8634911,0,4,1,-84.629066,0,2,2,2021,8,0,12,12,1,0,0,6.5294619,6.5294619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,8,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +38,48,93,92,-9,-9,1,1,28,2,2,0,2,2,-9,0,5,8.3485241,8.0840855,0,4,-1,130.92749,0,-9,-9,2021,7,0,45,35,1,0,0,11.352764,11.352764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,10,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +38,48,94,-9,92,93,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-999.34802,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,695.75,130505.55,22625.688,266911.75,140184.31,0,0,2876.1526 +39,49,95,96,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.8102465,8.4965563,6.8126683,29,5,-26.357937,0,2,2,2021,8,0,15,10,1,0,0,40.451626,40.451626,.05,.05,0,0,0,0,0,0,0,0,0,8.4446793,6.8859606,54.77,55.87,51.81,57.22,8.333333333333334,1,1,0,0,11,1,5,1,320.5,564467.94,231070.75,104485.55,61925.688,7806.8584,6924.6953,6516.5713 +39,49,96,95,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3560066,8.4354258,0,29,-5,8.1153135,0,2,3,2021,8,0,14,20,1,0,0,31.791803,31.791803,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,57.22,54.77,55.87,1.666666666666667,1,1,0,0,7,1,5,1,320.5,564467.94,231070.75,104485.55,61925.688,7806.8584,6924.6953,6516.5713 +39,50,97,-9,96,95,1,0,25,0,0,0,1,1,-9,0,4,8.1155081,8.6317148,0,0,0,-1057.0217,0,2,2,2021,21,9,40,39,1,9,1,11.784389,11.784389,.05,.05,0,0,0,0,0,0,0,0,0,7.4200606,0,40.77,61.04,-9,-9,6.666666666666667,1,1,0,0,7,1,4,1,991,8783.3203,42492.484,0,0,0,0,2655.8916 +40,51,98,99,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,5.7987919,5.6936965,0,23,9,1.2963623,0,3,2,2021,8,0,5,5,1,0,0,6.3253531,6.3253531,0,0,0,0,0,0,0,0,1,1,0,0,0,60.98,30.25,39.43,48.14,8.333333333333334,1,1,0,0,7,5,2,0,384.5,-86857.602,0,0,0,1252.4497,0,1788.8602 +40,51,99,98,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.327744,7.2771239,0,23,0,-22.052811,0,2,2,2021,10,0,26,24,1,0,0,4.5333543,4.5333543,0,0,0,0,0,0,0,0,1,1,0,0,0,39.43,48.14,60.98,30.25,8.333333333333334,1,1,0,0,8,5,2,0,384.5,-86857.602,0,0,0,1252.4497,0,1788.8602 +40,52,100,-9,98,99,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1205.7,-9,2,2,2021,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,53.79,-9,-9,6.666666666666667,1,1,1,0,4,5,1,0,647,131038.62,0,0,0,0,0,0 +41,53,101,-9,104,102,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1120.514,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +41,53,102,104,-9,-9,1,1,33,2,2,0,1,1,-9,0,4,8.985364,9.043148,0,8,0,-30.154591,0,-9,-9,2021,6,0,38,38,1,0,0,22.117825,22.117825,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,46.16,58.62,8.333333333333334,1,1,0,0,11,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +41,53,103,-9,104,102,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.4517,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +41,53,104,102,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,7.8033562,7.7175317,0,8,0,-89.770264,0,-9,-9,2021,13,2,38,1,1,2,0,7.5734878,7.5734878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,54.79,55.86,8.333333333333334,1,1,0,0,11,1,5,1,703.75,232317.47,53094.406,138567.91,0,0,0,4751.0537 +42,54,105,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,8.8625412,8.8753004,0,0,-870.22394,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.1552267,8.9308395,58.08,40.76,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,1094,505293.19,298213.88,293390.22,0,0,0,5047.2241 +43,55,106,107,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.2995987,7.2169237,38,6,150.47977,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6361035,7.0621929,51.66,54.88,57.9,51.84,8.333333333333334,1,1,0,0,0,5,3,1,733,1047229.6,340794.19,270633.5,0,0,0,2344.1804 +43,55,107,106,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3500361,6.9913745,38,-6,6.9782305,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4963565,57.9,51.84,51.66,54.88,8.333333333333334,1,1,0,0,2,5,3,1,733,1047229.6,340794.19,270633.5,0,0,0,2344.1804 +44,56,108,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,3,8.1039104,8.3965082,0,0,0,-1043.0392,-9,-9,-9,2021,9,1,48,0,1,1,0,8.6544132,8.6544132,.05,.05,0,0,0,0,0,0,0,0,0,1.6525267,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,5,12,4,0,148,30183.381,32322.824,0,0,10920.187,0,1098.3265 +45,57,109,110,-9,-9,1,0,64,0,0,0,2,2,-9,1,3,0,5.6559892,5.8137784,11,-1,45.710644,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.4919043,52.2,43.87,60.12,54.8,8.333333333333334,1,1,1,0,1,5,3,1,320.5,187533.84,121410.31,76669.828,0,0,0,2395.2427 +45,57,110,109,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8699274,7.795794,11,1,41.344475,0,3,3,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.13099,7.9246488,60.12,54.8,52.2,43.87,10,1,1,0,0,14,5,3,1,320.5,187533.84,121410.31,76669.828,0,0,0,2395.2427 +46,58,111,113,-9,-9,1,0,61,0,2,0,1,1,-9,0,5,8.6316786,8.8473692,0,22,7,-79.879227,0,1,1,2021,7,0,29,29,1,0,0,19.34996,19.34996,.05,.05,0,0,0,0,0,2,1,1,0,3.7959044,0,57.06,57.76,64.39,39.29,8.333333333333334,1,1,0,0,9,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +46,58,112,-9,111,113,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.12103,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +46,58,113,111,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,9.0196562,9.044651,0,22,-7,-22.610149,0,2,2,2021,7,0,33,60,1,0,0,31.382374,31.382374,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.39,39.29,57.06,57.76,8.333333333333334,2,3,0,0,8,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +46,58,114,-9,111,113,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.7444,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,752.75,1353708.4,613738.75,737187.5,15642.617,2478.5203,0,4845.1445 +47,59,115,116,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.0570183,7.7090354,58,4,85.90918,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.21596,7.8560848,60.52,53.2,43.56,39.73,8.333333333333334,1,1,0,0,0,6,3,1,591,665504.88,342523.13,240483.58,0,0,0,2178.0339 +47,59,116,115,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.1868696,5.9068632,58,-4,48.806568,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.694355,5.7115483,43.56,39.73,60.52,53.2,8.333333333333334,1,1,0,0,0,6,3,1,591,665504.88,342523.13,240483.58,0,0,0,2178.0339 +48,60,117,118,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.8958316,7.7366848,3.7155504,7,1,35.884529,0,3,3,2021,24,11,30,30,1,11,0,9.9381199,9.9381199,0,0,.05,0,0,0,0,0,0,0,0,5.8265743,3.6000192,25.82,43.82,47.09,56.75,1.666666666666667,1,1,0,1,9,1,4,1,211.5,418660.03,197013.38,323045.19,0,8080.0571,0,2222.2266 +48,60,118,117,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.7023368,7.6964931,0,7,-1,23.174477,0,1,1,2021,15,3,25,25,1,3,0,9.3027315,9.3027315,0,0,.05,0,0,0,0,0,0,0,0,0,0,47.09,56.75,25.82,43.82,8.333333333333334,1,1,0,0,6,1,4,1,211.5,418660.03,197013.38,323045.19,0,8080.0571,0,2222.2266 +49,61,119,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,1,0,0,0,0,0,-967.90167,0,-9,-9,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,13.17,37.63,-9,-9,0,2,3,0,0,0,6,1,0,187,-203011.52,0,0,0,0,0,868.26239 +50,62,120,121,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.5120397,7.3701968,7.0848613,31,-6,-.6477173,0,3,3,2021,8,0,4,5,1,0,0,18.255857,18.255857,0,0,0,0,0,0,0,0,1,1,0,7.752326,6.730587,42.29,51.8,55.79,52.62,10,1,1,0,0,10,4,3,1,1477,205394.08,81486.992,212092.34,0,0,0,3357.9238 +50,62,121,120,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.5240531,7.7613454,10,6,121.4649,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4751282,55.79,52.62,42.29,51.8,10,1,1,0,0,4,4,3,1,1477,205394.08,81486.992,212092.34,0,0,0,3357.9238 +51,63,122,123,-9,-9,1,1,43,0,1,0,2,2,-9,0,1,8.6158915,8.7571154,0,7,2,-34.508427,0,3,2,2021,14,2,60,70,1,2,0,12.560628,12.560628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.1,36.97,35.28,47.77,5,1,1,0,0,10,5,4,1,489.33334,702656.94,374510.06,362693.91,134068.23,15106.208,0,3676.208 +51,63,123,122,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.4585109,7.4908438,0,21,-2,-37.84914,0,3,3,2021,13,2,30,23,1,2,0,7.8736005,7.8736005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.28,47.77,35.1,36.97,6.666666666666667,1,1,0,0,10,5,4,1,489.33334,702656.94,374510.06,362693.91,134068.23,15106.208,0,3676.208 +51,63,124,-9,123,122,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-952.15179,-9,2,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,44.42,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,489.33334,702656.94,374510.06,362693.91,134068.23,15106.208,0,3676.208 +52,64,125,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,3,0,7.8630204,7.8067689,0,0,-939.58734,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2122207,0,33.66,61.57,-9,-9,5,1,1,0,0,1,10,3,0,526,177670.02,-156767.7,0,0,6367.0205,0,1005.6615 +53,65,126,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1024.5289,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40,30.63,-9,-9,5,1,1,0,1,4,12,1,0,619,-121247.6,0,0,0,0,0,1179.8108 +54,66,127,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1048.4063,0,2,1,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.44,23.66,-9,-9,1.666666666666667,4,2,0,1,0,8,2,0,294,83024.242,0,0,0,0,5598.2642,1541.3114 +55,67,128,-9,131,129,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-852.76508,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +55,67,129,131,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.6959715,8.6575985,0,11,6,-23.69397,0,2,2,2021,7,0,43,79,1,0,0,15.96422,15.96422,.05,.05,.05,0,0,0,0,0,1,1,0,5.4747972,0,54.2,57.49,51.14,60.45,8.333333333333334,1,1,0,0,13,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +55,67,130,-9,131,129,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.93518,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +55,67,131,129,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,7.660336,7.9297709,0,11,-6,-66.740288,0,2,2,2021,10,0,30,30,1,0,0,9.8128319,9.8128319,0,0,0,0,0,0,0,0,1,1,0,3.9051154,0,51.14,60.45,54.2,57.49,5,1,1,0,0,13,10,4,1,1115,489817.25,104683.52,260244.22,82357.297,0,0,4238.8643 +56,68,132,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,9.444459,9.928607,0,0,-878.35028,0,2,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.2790775,9.1610413,47.9,45.39,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,289,216742.78,0,127827.41,0,0,0,9057.498 +57,69,133,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1051.3622,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.43,41.58,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,648,135503.67,0,0,0,0,0,1236.587 +58,70,134,135,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7355452,8.777029,0,35,0,-11.006061,0,3,3,2021,9,0,46,46,1,0,0,14.612814,14.612814,.05,.05,0,0,0,0,0,0,0,0,0,2.5240996,0,44.75,56.39,39.33,58.88,6.666666666666667,1,1,0,0,13,13,5,1,544.5,505921.84,253303.88,187066.75,18676.699,10935.465,3946.0427,3911.4368 +58,70,135,134,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.9629474,7.7778754,0,35,0,-31.456638,0,2,3,2021,9,0,40,42,1,0,0,6.6716132,6.6716132,.05,.05,0,0,0,0,0,27,0,0,0,0,0,39.33,58.88,44.75,56.39,8.333333333333334,1,1,0,0,13,13,5,1,544.5,505921.84,253303.88,187066.75,18676.699,10935.465,3946.0427,3911.4368 +58,71,136,-9,135,134,1,1,29,0,0,0,1,1,-9,0,4,8.8331795,8.8565092,0,0,0,-967.94983,0,2,2,2021,11,0,40,38,1,0,1,20.634977,20.634977,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,42.41,54.81,-9,-9,1.666666666666667,1,1,0,0,11,13,5,1,121,304856.47,118247.41,137631.39,143480.61,50151.711,0,2582.0266 +58,72,137,-9,135,134,1,0,26,0,0,0,1,1,-9,0,3,0,0,0,0,0,-956.5932,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.78,53.03,-9,-9,3.333333333333333,1,1,0,0,9,13,1,1,3491,0,0,0,0,0,0,-684.9397 +59,73,138,140,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,0,0,5,-3,50.432392,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,0,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +59,73,139,-9,138,140,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-858.52216,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +59,73,140,138,-9,-9,1,1,38,1,2,0,2,2,-9,0,5,8.9376755,9.0484324,0,5,3,-3.2956443,0,2,2,2021,9,0,48,40,1,0,0,20.420515,20.420515,.05,.05,0,0,0,0,0,0,1,1,0,6.5803485,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +59,73,141,-9,138,140,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.1278,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,395.75,73863.266,-34558.566,225873.7,100652.91,0,48.261887,4087.4543 +60,74,142,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,1,7.7168956,7.7866821,0,0,0,-1008.2978,-9,2,-9,2021,14,2,66,0,1,2,0,4.0034504,4.0034504,0,0,0,0,0,0,0,0,1,1,0,0,0,30.91,43.27,-9,-9,5,1,1,0,0,12,9,3,1,898,101622.48,61597.855,0,0,0,0,926.79913 +60,75,143,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,8.3223276,7.7992349,0,0,-878.94061,-9,3,2,2021,7,1,0,0,4,1,0,0,0,.05,.05,.05,0,0,0,0,14.5,1,1,0,.36017811,8.1345625,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,599,1808583,840262.31,357775.41,0,0,0,1938.3405 +61,76,144,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.7554221,6.070528,0,0,-994.30127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,3.317245,3.0092053,18.869631,0,1,1,0,0,6.0864439,70.37,24.31,-9,-9,10,1,1,0,0,0,6,2,0,530,289700.22,65490.164,242197.56,0,0,0,1604.1521 +62,77,145,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-929.14801,1,-9,-9,2021,13,1,0,10,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7234612,0,38.52,51.4,-9,-9,5,1,1,0,0,4,12,2,1,839,117252.67,0,0,0,0,0,510.95721 +63,78,146,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1030.4498,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34,31,-9,-9,1.666666666666667,1,1,1,1,0,2,1,0,373,-75484.336,0,0,0,-375.84677,0,1238.8436 +64,79,147,-9,150,149,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.25012,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +64,79,148,-9,150,149,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.99146,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +64,79,149,150,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.3116436,8.477437,0,7,0,-17.881922,0,2,2,2021,10,0,40,38,1,1,0,13.155406,13.155406,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,54.79,55.86,7,1,1,0,0,1,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +64,79,150,149,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.8010488,7.5323749,0,7,0,61.102829,0,2,2,2021,10,0,32,32,1,0,0,7.2766886,7.2766886,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,49,58,3.333333333333333,1,1,0,0,9,4,4,0,1628,175031.81,198419.95,118342.95,100820.25,10011.938,0,3162.1267 +65,80,151,-9,152,153,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.0775,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,839.66669,292862.84,163535.38,164835.5,109818.23,0,21912.238,4116.3105 +65,80,152,153,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.4238024,8.7566242,2.964642,3,0,-40.116222,-9,-9,-9,2021,8,0,55,0,1,0,0,9.8084555,9.8084555,.05,.05,0,0,0,0,0,0,1,1,0,6.0648956,0,64.47,43.21,51.24,58.84,8.333333333333334,1,1,0,0,13,11,5,1,839.66669,292862.84,163535.38,164835.5,109818.23,0,21912.238,4116.3105 +65,80,153,152,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.9266081,8.5630836,0,3,0,30.157534,0,-9,-9,2021,13,1,37,37,1,1,0,23.222372,23.222372,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,64.47,43.21,8.333333333333334,1,1,0,0,6,11,5,1,839.66669,292862.84,163535.38,164835.5,109818.23,0,21912.238,4116.3105 +66,81,154,155,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,9.0804291,9.2641449,0,3,0,63.13929,0,-9,-9,2021,18,7,43,45,1,7,0,32.314926,32.314926,0,0,0,0,0,0,0,0,0,0,0,7.2691894,0,44.02,39.06,54.63,58.83,5,1,1,0,0,2,8,5,1,559,10460223,2326911.8,2022498.4,0,0,0,6457.0771 +66,81,155,154,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.2735529,9.4652681,0,3,9,-64.235352,0,2,-9,2021,7,0,40,40,1,0,0,31.410767,31.410767,0,0,0,0,0,0,0,0,0,0,0,4.1621614,0,54.63,58.83,44.02,39.06,8.333333333333334,1,1,0,0,9,8,5,1,559,10460223,2326911.8,2022498.4,0,0,0,6457.0771 +67,82,156,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1047.8198,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45,39,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,403,-245732.69,0,0,0,0,0,1009.4355 +68,83,157,158,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.6474018,8.6914015,0,7,-3,-56.868137,0,2,3,2021,11,0,38,41,1,0,0,14.147161,14.147161,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,46.33,55.93,6.666666666666667,1,1,0,0,8,12,5,1,1054.5,779780.63,526529.38,209293.16,0,3831.0591,0,4680.9688 +68,83,158,157,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.5771284,8.9531612,0,7,3,28.283775,0,3,3,2021,11,0,42,45,1,0,0,17.956255,17.956255,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,46.08,57.2,6.666666666666667,1,1,0,0,8,12,5,1,1054.5,779780.63,526529.38,209293.16,0,3831.0591,0,4680.9688 +69,84,159,160,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.1284504,8.511775,0,13,3,-79.749199,0,3,3,2021,6,0,37,37,1,0,0,11.24271,11.24271,.05,.05,0,0,0,0,0,0,0,0,0,3.7921751,0,57.16,56.15,51,52.08,8.333333333333334,1,1,0,0,10,6,5,1,162,320197.72,114831.73,181587.41,94759.75,0,2492.7356,3591.7246 +69,84,160,159,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.4222727,8.5784187,0,13,-3,148.31644,0,2,2,2021,8,0,37,37,1,0,0,18.237738,18.237738,0,0,0,0,0,0,0,0,0,0,0,2.5609193,0,51,52.08,57.16,56.15,8.333333333333334,1,1,0,0,10,6,5,1,162,320197.72,114831.73,181587.41,94759.75,0,2492.7356,3591.7246 +70,85,161,162,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,43,1,89.53334,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,33.73592,0,0,1,1,0,0,0,61.8,21.86,60.29,52.11,6.666666666666667,1,1,0,0,6,7,2,1,918.5,153804.27,227232.09,0,0,0,0,2238.5771 +70,85,162,161,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.9964728,6.7316666,11,-1,99.610199,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.1004024,6.7526078,60.29,52.11,61.8,21.86,8.333333333333334,1,1,0,0,0,7,2,1,918.5,153804.27,227232.09,0,0,0,0,2238.5771 +71,86,163,164,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.277997,8.2625074,8,0,-9.1422043,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4587271,8.3860359,51,48,60.87,44.96,7,1,1,0,0,0,9,5,1,941,3268306.5,1632559,731819.38,0,0,0,3945.5491 +71,86,164,163,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.9044113,8.7156601,7.4622655,43,0,-20.488569,0,2,2,2021,9,0,14,22,1,0,0,22.216448,22.216448,0,0,0,0,0,0,0,2,1,1,0,5.6012845,7.6906281,60.87,44.96,51,48,8.333333333333334,1,1,0,0,11,9,5,1,941,3268306.5,1632559,731819.38,0,0,0,3945.5491 +71,87,165,-9,164,163,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-941.45026,0,1,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,2738,0,0,0,0,0,0,551.01611 +72,88,166,167,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.3737116,8.7635336,0,2,4,53.550621,0,-9,-9,2021,9,0,60,50,1,0,0,9.9069185,9.9069185,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.37,57.28,8.333333333333334,1,1,0,0,5,6,5,0,885.5,85972.344,0,0,0,18833.23,0,6273.2939 +72,88,167,166,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,9.5140028,9.5431042,0,2,-4,-5.2511463,-9,-9,-9,2021,10,0,31,0,1,0,0,47.083305,47.083305,0,0,0,0,0,0,0,0,0,0,0,3.4868083,0,43.37,57.28,54.79,55.86,6.666666666666667,1,1,0,0,3,6,5,0,885.5,85972.344,0,0,0,18833.23,0,6273.2939 +73,89,168,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1073.6722,0,2,2,2021,7,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.99,44.45,-9,-9,6.666666666666667,1,1,0,0,5,9,1,0,914,-46493.586,0,0,0,0,0,498.4743 +74,90,169,-9,170,171,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.80304,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,798,655651.75,132173.44,601754.25,139360.77,8189.0068,6316.311,4533.0288 +74,90,170,171,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.570466,8.692894,0,11,-5,-133.31566,0,1,2,2021,12,1,6,6,1,1,0,86.308464,86.308464,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,40.75,58.26,6.666666666666667,1,1,0,0,10,4,5,1,798,655651.75,132173.44,601754.25,139360.77,8189.0068,6316.311,4533.0288 +74,90,171,170,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.741169,9.1711988,0,11,5,-66.21328,0,3,3,2021,11,0,38,38,1,2,0,22.910425,22.910425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,40.71,62.41,6,1,1,0,0,11,4,5,1,798,655651.75,132173.44,601754.25,139360.77,8189.0068,6316.311,4533.0288 +75,91,172,-9,175,173,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1040.1617,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +75,91,173,175,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.9568434,8.7345095,0,11,-2,1.0614092,0,-9,-9,2021,7,0,38,36,1,0,0,18.571289,18.571289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,48.28,60.18,8.333333333333334,1,1,0,0,12,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +75,91,174,-9,175,173,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1072.0439,-9,2,2,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.62,57.19,-9,-9,6.666666666666667,1,1,0,0,1,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +75,91,175,173,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,23,2,-92.953323,0,3,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.5292443,0,48.28,60.18,58.32,50.22,6.666666666666667,1,1,0,0,1,12,4,1,959.5,432072.06,117080.14,245891.11,20548.154,3505.6814,329.18378,3117.1602 +76,92,176,179,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,0,0,0,2,-4,20.969593,-9,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,34.21,51.94,7,3,4,0,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,177,-9,176,179,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.908,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,178,-9,176,179,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1106.0579,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,3,4,-9,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,179,176,-9,-9,1,1,38,1,3,0,2,2,-9,0,3,7.8939772,7.6465111,0,2,4,220.58089,-9,3,2,2021,12,0,47,0,1,0,0,5.9175382,5.9175382,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.21,51.94,48,57,3.333333333333333,3,4,0,1,10,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +76,92,180,-9,176,179,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.49,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,2,0,1395,-63826.773,7109.3794,6297.9609,0,13837.226,0,1617.0928 +77,93,181,182,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.6402903,7.7514482,11,-8,44.709145,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3025546,7.6855068,51.14,60.45,63.25,37.54,8.333333333333334,1,1,0,0,8,5,4,1,276,1877750.3,1039247.5,445353,0,0,0,2961.6206 +77,93,182,181,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,8.1549978,8.3375015,11,8,2.2620695,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0512691,8.1579523,63.25,37.54,51.14,60.45,8.333333333333334,1,1,0,0,0,5,4,1,276,1877750.3,1039247.5,445353,0,0,0,2961.6206 +78,94,183,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.3940849,6.1837592,0,0,-1150.3248,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,2.4737861,0,0,1,1,0,2.5746806,6.3766522,61.06,28.91,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,340,26863.836,197051.98,201982.45,0,0,0,1407.9692 +79,95,184,185,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-11.171073,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.697762,0,55.96,49.93,54.2,57.49,8.333333333333334,1,1,0,0,6,7,2,1,960,596793.19,87013.859,485129.47,0,0,0,2445.3232 +79,95,185,184,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.1527591,6.2872767,6,1,23.756487,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.634357,6.3070822,54.2,57.49,55.96,49.93,10,1,1,0,0,4,7,2,1,960,596793.19,87013.859,485129.47,0,0,0,2445.3232 +80,96,186,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9322562,8.3427114,0,0,0,-819.96289,0,2,2,2021,9,0,40,37,1,0,0,11.49858,11.49858,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.63,50.99,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,505,85137.836,31915.822,0,0,0,0,1401.2437 +81,97,187,-9,190,189,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8685,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +81,97,188,-9,190,189,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.3346,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +81,97,189,190,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.0158129,8.9571161,0,5,-4,57.442677,0,-9,-9,2021,12,1,48,50,1,1,0,20.516071,20.516071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.62,56.48,57.06,57.76,8.333333333333334,1,1,0,0,11,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +81,97,190,189,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.2462435,8.6598568,5.7316208,5,4,46.020844,0,2,2,2021,10,2,31,30,1,2,0,20.353191,20.353191,0,0,0,0,0,0,0,0,1,1,0,5.4673834,0,57.06,57.76,47.62,56.48,8.333333333333334,1,1,0,0,10,5,5,1,983.5,510557.31,398810.69,247005.45,185564.91,2502.4219,15705.413,5077.3931 +82,98,191,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9236541,8.1186085,0,0,0,-1038.557,0,-9,2,2021,12,0,32,34,1,0,0,10.185215,10.185215,0,0,0,0,0,0,0,2,0,0,0,0,0,52.31,40.62,-9,-9,6.666666666666667,1,1,0,0,15,5,3,0,808,-196411.92,0,0,0,0,0,1080.3922 +83,99,192,193,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.5105166,7.6718569,0,9,4,-75.838577,0,-9,-9,2021,9,1,25,30,1,1,0,8.9460297,8.9460297,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,43.42,62.33,8.333333333333334,1,1,0,1,13,8,4,0,212.33333,181305.22,28504.348,224090.92,212398.33,13885.978,1069.2943,4128.3867 +83,99,193,192,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.5440025,8.6964731,0,9,-4,45.803616,0,1,1,2021,11,2,49,54,1,2,0,12.333047,12.333047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,60.29,52.11,5,2,3,0,1,11,8,4,0,212.33333,181305.22,28504.348,224090.92,212398.33,13885.978,1069.2943,4128.3867 +83,99,194,-9,192,193,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.8679,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,212.33333,181305.22,28504.348,224090.92,212398.33,13885.978,1069.2943,4128.3867 +84,100,195,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.587842,7.8467035,0,0,0,-963.25421,0,-9,2,2021,13,3,42,35,1,3,0,5.2806664,5.2806664,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.13,59.25,-9,-9,8.333333333333334,1,1,0,0,4,7,3,0,902,189777.94,83228.5,0,0,0,0,1068.6736 +85,101,196,-9,-9,197,1,0,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1056.0005,-9,-9,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,0,1,1,0,0,0,13,1,0,983,35524.32,0,0,0,0,0,1504.4709 +85,101,197,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1058.5781,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,0,13,1,0,983,35524.32,0,0,0,0,0,1504.4709 +86,102,198,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-950.83655,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,74.110588,0,636.39301,0,1,1,0,0,0,37.75,20.27,-9,-9,5,1,1,0,0,0,1,1,1,1680,26507.73,0,0,0,0,0,913.14056 +87,103,199,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.1333542,6.98879,0,0,-941.15741,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7421455,7.0751805,55.94,47.09,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,630,-3305.4966,42351.293,0,0,0,0,1012.9073 +88,104,200,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,6.8483858,6.7171974,0,0,-968.60602,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,5.496717,0,38.168068,0,1,1,0,3.1611023,6.8848772,42.44,20.53,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,664,406256.31,140906.52,123308.27,0,0,0,816.66272 +89,105,201,-9,202,203,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.98883,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +89,105,202,203,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.7532701,7.8697124,0,7,-12,22.758909,0,2,2,2021,15,5,24,24,1,5,0,13.474652,13.474652,0,0,0,0,0,0,0,2,1,1,0,0,0,46.16,58.62,54.62,53.53,6.666666666666667,1,1,0,0,8,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +89,105,203,202,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0475674,7.8565149,0,7,12,14.537699,0,-9,-9,2021,24,12,40,40,1,12,0,7.4435124,7.4435124,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.62,53.53,46.16,58.62,3.333333333333333,1,1,0,0,7,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +89,105,204,-9,202,203,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.01971,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,891.25,298814.5,55885.387,170792.42,0,15386.706,0,2679.9199 +90,106,205,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.0804958,7.7612796,0,0,0,-1069.389,-9,2,2,2021,13,1,31,0,1,1,0,12.321555,12.321555,0,0,0,0,0,0,0,0,0,0,0,0,0,30.01,47.46,-9,-9,3.333333333333333,1,1,0,1,12,10,4,1,146,234527.13,31734.5,93183.578,0,0,3553.0798,391.73257 +91,107,206,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.6999297,7.7764831,6.3118706,0,0,-1035.2887,0,-9,-9,2021,6,0,20,20,1,0,0,9.2504358,9.2504358,.05,.05,0,0,0,0,0,0,0,0,0,3.4359546,6.5950718,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,15,2,3,1,165,15604.521,5325.7988,0,0,0,0,526.89258 +92,108,207,208,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,4.6413813,4.5843678,34,-2,-7.0916166,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.732655,57.16,56.15,54.37,44.27,10,1,1,0,0,0,2,3,1,442,1580269.5,948912,410822.88,0,0,0,3324.4434 +92,108,208,207,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.0137949,8.2665691,34,2,-77.124634,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2789531,7.9038868,54.37,44.27,57.16,56.15,8.333333333333334,1,1,0,0,0,2,3,1,442,1580269.5,948912,410822.88,0,0,0,3324.4434 +93,109,209,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4741549,8.0977678,7.4356689,0,0,-1000.4613,0,3,3,2021,6,0,21,21,1,0,0,10.993184,10.993184,.05,.05,0,0,0,0,0,0,1,1,0,3.9462085,7.6861081,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,1263,238196.89,3650.4663,0,0,-445.60321,1922.9678,3071.8662 +94,110,210,211,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,8.7962685,8.5858679,12,3,-31.785387,0,2,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.8064346,8.5441561,46.61,56.93,46.08,57.2,6.666666666666667,1,1,0,0,8,12,4,1,489,660784.38,212254.97,84554.953,0,0,0,3216.8635 +94,110,211,210,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,12,-3,28.502512,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5212698,0,46.08,57.2,46.61,56.93,8.333333333333334,1,1,0,0,8,12,4,1,489,660784.38,212254.97,84554.953,0,0,0,3216.8635 +95,111,212,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.6464825,8.7508345,0,0,0,-922.87567,0,2,2,2021,12,1,37,37,1,1,0,19.323355,19.323355,.05,.05,0,0,0,0,0,27,0,0,0,5.1388788,0,47.36,41.27,-9,-9,3.333333333333333,1,1,0,0,8,13,5,1,524.5,227576.19,131838.28,179126.78,102212.12,0,0,2618.7397 +95,111,213,-9,212,-9,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-987.66925,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,13,5,1,524.5,227576.19,131838.28,179126.78,102212.12,0,0,2618.7397 +96,112,214,216,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,6.5321956,6.3483658,0,7,4,7.0046067,0,2,2,2021,10,0,50,60,1,0,0,2.0018303,2.0018303,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.29,49.04,36.77,36.73,5,1,1,0,0,11,12,2,1,1099.6666,140747.94,84384.797,0,0,5133.4912,0,758.92651 +96,112,215,-9,216,214,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.8115,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,1,1099.6666,140747.94,84384.797,0,0,5133.4912,0,758.92651 +96,112,216,214,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.8341956,6.8884015,0,7,-4,69.068428,0,-9,-9,2021,18,6,11,11,1,6,0,7.6951227,7.6951227,0,0,0,0,0,0,0,0,1,1,0,0,0,36.77,36.73,43.29,49.04,3.333333333333333,1,1,0,0,5,12,2,1,1099.6666,140747.94,84384.797,0,0,5133.4912,0,758.92651 +97,113,217,218,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.1136599,8.190136,6,11,-67.209358,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1531746,7.9655476,54.2,57.49,40.07,57.25,8.333333333333334,1,1,0,0,0,10,5,1,606,2372661.5,1748544,514826.84,0,0,0,11852.453 +97,113,218,217,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,9.906352,9.6117554,6,-11,-43.136978,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.264351,9.884984,40.07,57.25,54.2,57.49,8.333333333333334,1,1,0,0,0,10,5,1,606,2372661.5,1748544,514826.84,0,0,0,11852.453 +98,114,219,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,4,7.4895639,7.3734832,0,0,0,-1111.5914,0,-9,-9,2021,13,3,36,0,1,3,0,5.7780218,5.7780218,0,0,0,0,0,0,0,0,1,1,0,0,0,40.06,58.7,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,503,-82415.438,0,0,0,0,0,1645.99 +98,114,220,-9,219,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.84686,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,503,-82415.438,0,0,0,0,0,1645.99 +99,115,221,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.6284599,4.7074685,0,0,-1025.979,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,12.651058,0,0,1,1,0,0,4.5665383,47.32,17.81,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,858,183042.97,0,151237.22,0,0,0,2098.5825 +100,116,222,223,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.7384191,7.9641943,59,2,43.40168,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.553771,8.2209101,57.92,51.82,64.23,39.15,10,1,1,0,0,0,8,3,1,399.5,666765,490667.09,181880.14,0,-572.97113,0,2824.4419 +100,116,223,222,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.2648888,5.7237692,6,-2,147.923,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4236431,64.23,39.15,57.92,51.82,8.333333333333334,1,1,0,0,0,8,3,1,399.5,666765,490667.09,181880.14,0,-572.97113,0,2824.4419 +101,117,224,-9,225,226,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.8776,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +101,117,225,226,-9,-9,1,0,42,0,3,0,3,3,-9,0,5,9.1609478,9.2651768,4.9462008,4,-10,-40.093002,0,-9,-9,2021,11,0,30,37,1,0,0,32.359989,32.359989,.05,.05,0,0,0,0,0,2,1,1,0,5.5806561,0,35.05,62.72,51.74,47.77,6.666666666666667,1,1,0,0,13,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +101,117,226,225,-9,-9,1,1,52,0,3,0,1,1,-9,0,3,9.1091852,8.978158,0,4,10,-110.43932,0,3,2,2021,7,0,40,43,1,0,0,22.348289,22.348289,.05,.05,.05,0,0,0,0,0,1,1,0,6.76548,0,51.74,47.77,35.05,62.72,8.333333333333334,1,1,0,0,12,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +101,117,227,-9,225,226,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.3468,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,496,430462.53,281838.63,501610.28,327057.94,14830.288,0,6294.3291 +102,118,228,229,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.5661588,7.5307999,7,2,-109.7329,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.3724117,7.8971815,59.29,49.68,45.46,52.15,8.333333333333334,1,1,0,0,0,2,3,1,667.5,941131.75,399452.5,178456.28,0,0,0,1144.7533 +102,118,229,228,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-20.631275,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,3.0056641,0,45.46,52.15,59.29,49.68,6.666666666666667,1,1,0,0,3,2,3,1,667.5,941131.75,399452.5,178456.28,0,0,0,1144.7533 +103,119,230,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.6683836,6.9282179,0,0,-1049.6118,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,1.8989476,0,19.83428,0,1,1,0,.9593516,6.9247985,64.09999999999999,17.84,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,308,383335.66,153576.56,265727.56,0,0,0,906.70972 +104,120,231,232,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.874403,6.7083611,10,-2,118.48566,0,2,2,2021,8,0,0,6,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6784148,6.7950287,57.16,56.15,45.8,54.59,8.333333333333334,1,1,0,0,11,12,4,1,1168,1132040.4,881523.56,0,0,-59.624359,0,2046.3203 +104,120,232,231,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.4450903,8.4819813,0,10,2,27.930904,0,-9,-9,2021,12,1,62,60,1,1,0,8.1437511,8.1437511,0,0,0,0,0,0,0,7,0,0,0,0,0,45.8,54.59,57.16,56.15,6.666666666666667,1,1,0,0,12,12,4,1,1168,1132040.4,881523.56,0,0,-59.624359,0,2046.3203 +105,121,233,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,5,7.3368444,7.2952757,0,0,0,-934.79553,0,3,3,2021,6,0,40,30,1,0,0,3.8513899,3.8513899,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,14,12,3,1,209,477294.47,145235.41,80150.969,0,0,0,826.58923 +106,122,234,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,8.592062,8.5388737,0,0,0,-875.82587,0,3,-9,2021,14,3,43,40,1,3,0,16.77499,16.77499,.05,.05,0,0,0,0,0,14.5,0,0,0,.94074148,0,43.63,27.66,-9,-9,1.666666666666667,1,1,0,0,9,8,5,0,325,323685.16,369804.5,177542.59,0,0,0,1864.0186 +107,123,235,236,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.281085,8.3481865,0,13,-1,-49.187977,0,2,3,2021,6,0,37,37,1,0,0,14.560739,14.560739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.87,58.55,8.333333333333334,1,1,0,0,15,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +107,123,236,235,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.3594627,8.5413122,0,13,1,53.73531,0,3,3,2021,8,0,50,47,1,0,0,11.716977,11.716977,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.87,58.55,6.666666666666667,1,1,0,0,15,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +107,123,237,-9,235,236,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1063.4503,1,2,2,2021,22,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7246335,0,29.99,59.47,-9,-9,5,1,1,0,0,0,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +107,123,238,-9,235,236,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.66333,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,4,1,2666.75,249230.3,181082.89,178206.13,93511.938,1602.6681,0,3254.4778 +108,124,239,240,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.1667414,8.3135118,0,7,0,51.702515,0,3,2,2021,12,4,30,32,1,4,0,13.705544,13.705544,0,0,0,0,0,0,0,0,0,0,0,0,0,40.47,55.65,62.39,56.71,3.333333333333333,1,1,0,0,8,10,4,1,296,186151.19,108507.8,108790,48008.59,10319.697,0,2120.3281 +108,124,240,239,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.342782,6.9781871,0,7,0,51.613411,0,-9,3,2021,5,0,26,22,1,0,0,7.0860424,7.0860424,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,40.47,55.65,6.666666666666667,1,1,0,0,8,10,4,1,296,186151.19,108507.8,108790,48008.59,10319.697,0,2120.3281 +108,125,241,-9,240,239,1,1,18,0,0,0,2,2,-9,0,5,7.8395066,8.1150122,0,0,0,-938.72101,0,2,3,2021,5,0,40,0,1,0,1,8.2743778,8.2743778,.05,.05,0,0,0,0,0,0,0,0,0,1.6763614,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,180,67879.813,16298.256,0,0,0,0,1549.0278 +109,126,242,243,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.0037346,9.1056299,0,2,0,10.116804,-9,-9,-9,2021,10,0,40,0,1,1,0,19.106565,19.106565,.05,.05,0,0,0,0,0,0,0,0,0,.42177132,0,50,57,46.91,41.66,7,4,1,0,0,1,8,5,0,960.5,1262005.5,124920.5,1022562.3,0,0,0,4788.2661 +109,126,243,242,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.4607515,8.4419994,0,2,0,-11.940911,0,2,3,2021,13,4,40,37,1,4,0,14.801286,14.801286,0,0,0,0,0,0,0,0,0,0,0,.67134571,0,46.91,41.66,50,57,8.333333333333334,1,1,0,0,6,8,5,0,960.5,1262005.5,124920.5,1022562.3,0,0,0,4788.2661 +110,127,244,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.3100309,8.1777353,0,0,-1074.0629,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,6.2477951,0,43.256256,0,1,1,0,4.953238,8.4137793,57.83,34.46,-9,-9,6.666666666666667,1,1,0,0,0,8,4,1,1045,1168930.4,479485.72,312560.47,0,8497.79,0,2063.9768 +111,128,245,246,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.2147055,7.2593393,0,9,0,-10.659494,0,2,2,2021,15,4,16,16,1,4,0,11.291636,11.291636,.05,.05,0,0,0,0,0,2,1,1,0,.38329709,0,41.06,62.04,36.1,63.29,8.333333333333334,1,1,0,0,11,10,5,1,741,208374.03,125714.44,110521.94,17136.773,0,3953.0405,3852.9722 +111,128,246,245,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.1127729,9.1955843,0,9,0,81.89624,0,-9,-9,2021,7,0,47,43,1,0,0,20.747023,20.747023,.05,.05,0,0,0,0,0,2,1,1,0,0,0,36.1,63.29,41.06,62.04,8.333333333333334,1,1,0,0,6,10,5,1,741,208374.03,125714.44,110521.94,17136.773,0,3953.0405,3852.9722 +112,129,247,248,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5280046,8.6413794,0,5,-1,44.697681,0,-9,-9,2021,5,1,40,40,1,1,0,13.443436,13.443436,0,0,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,53.94,40.38,5,2,3,0,0,3,9,5,1,888.5,95983.375,121886.64,145780.8,79372.266,8596.5762,2119.2749,3608.8809 +112,129,248,247,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.6814432,8.1955881,0,5,1,-39.361889,0,1,1,2021,7,0,47,45,1,0,0,8.8343859,8.8343859,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.94,40.38,41.17,59.31,6.666666666666667,2,3,0,0,10,9,5,1,888.5,95983.375,121886.64,145780.8,79372.266,8596.5762,2119.2749,3608.8809 +113,130,249,250,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,44,1,62.70948,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,59.55,17.35,10,1,1,0,0,2,1,3,1,913.5,1241459.5,589208.63,163041.83,0,0,0,1742.1587 +113,130,250,249,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.2046776,7.9774027,9,-1,64.618759,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3421125,8.0080538,59.55,17.35,60.3,46.58,6.666666666666667,1,1,0,0,1,1,3,1,913.5,1241459.5,589208.63,163041.83,0,0,0,1742.1587 +114,131,251,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-989.34149,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9943037,0,24.13,35.11,-9,-9,3.333333333333333,4,5,0,0,0,8,1,0,642,-20578.848,0,0,0,0,0,1191.4052 +115,132,252,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.4421711,6.300827,0,0,-1064.6173,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2579288,6.4233017,43.91,31.92,-9,-9,5,1,1,0,1,0,7,2,1,335,202132.05,96260.398,82806.516,0,0,0,1113.9664 +115,133,253,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.8041778,8.2542152,0,0,-996.39429,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7937775,8.0398817,50.9,36.38,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,173,1200505.5,-128059.79,447126.84,0,0,0,1896.4355 +116,134,254,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.5530276,6.1681743,0,0,-947.0542,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5013084,6.1719809,27.49,26.97,-9,-9,5,1,1,0,0,0,11,2,1,473,275536.88,110995.09,129051.34,0,0,0,2194.6602 +117,135,255,-9,256,258,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.5901,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +117,135,256,258,-9,-9,1,0,35,0,2,0,3,3,-9,0,4,0,0,0,8,-2,30.365448,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.32,61.46,62.66,52.4,8.333333333333334,2,3,0,0,0,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +117,135,257,-9,256,258,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.6674,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +117,135,258,256,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2733593,8.5178566,0,8,2,27.605537,0,2,2,2021,7,1,75,55,1,1,0,6.6890888,6.6890888,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,36.32,61.46,0,2,3,0,0,6,6,3,0,1130.75,59771.145,66365.32,142739.36,117386.73,0,0,2063.7625 +118,136,259,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,7.0133719,7.3669209,0,0,-1006.3079,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,1.519713,0,0,1,1,0,0,7.2186456,61.04,28.88,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,2611,296506.22,32602.52,0,0,0,0,1141.4878 +119,137,260,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,0,7.3345757,6.9980149,0,0,-1059.606,1,-9,-9,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.978188,0,33.33,56.25,-9,-9,10,3,4,0,0,1,9,3,1,1188,-79296.313,25253.613,0,0,0,0,1401.2388 +119,138,261,262,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,48,-4,-36.291698,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.57,52.89,53,47,10,3,4,0,0,0,9,3,1,479,983144,424124.31,360908.5,0,0,0,2144.7412 +119,138,262,261,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5835791,7.6175609,11,4,-21.716145,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9826953,7.8142133,53,47,52.57,52.89,7,3,4,0,0,0,9,3,1,479,983144,424124.31,360908.5,0,0,0,2144.7412 +120,139,263,-9,265,267,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1056.0255,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,264,-9,265,267,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.2466,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,0,1,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,265,267,-9,-9,1,0,50,0,2,0,3,3,-9,1,4,0,0,0,28,-10,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.28,60.18,50,49,6.666666666666667,2,3,0,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,266,-9,265,267,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1030.2742,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,139,267,265,268,-9,1,1,60,0,2,0,3,3,-9,0,3,0,0,0,28,10,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,48.28,60.18,7,2,3,0,0,0,6,1,1,2231.2,287772,0,327241.75,135203.67,0,0,1733.1383 +120,140,268,-9,-9,-9,1,0,76,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1099.2361,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,41.980495,83.53009,395.11652,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,6,1,1,884,10678.209,0,93546.789,0,0,0,1544.6992 +120,141,269,-9,265,267,1,0,22,0,2,0,2,2,-9,0,4,7.6178708,7.4220915,0,0,0,-1080.0641,0,3,3,2021,12,0,35,35,1,2,1,9.1721067,9.1721067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,2,3,0,1,3,6,3,1,182,-63551.441,38950.152,0,0,4448.9819,10580.801,602.18622 +121,142,270,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,6.2551975,6.4758577,0,0,-943.41327,0,3,2,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,4.9071918,10.230532,47.71104,0,1,1,0,.86772662,6.4217343,43.61,16.94,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,500,-30621,29891.553,0,0,0,0,1191.4447 +122,143,271,-9,-9,-9,1,0,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1073.6694,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,59.93,34.85,-9,-9,5,1,1,0,0,0,13,1,0,251,-139289.14,0,0,0,0,0,767.7467 +123,144,272,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.5338087,7.6497111,0,0,0,-1126.1331,0,3,3,2021,23,10,38,38,1,10,0,7.0151715,7.0151715,0,0,0,0,0,0,0,0,0,0,0,0,0,34.01,44.48,-9,-9,3.333333333333333,1,1,0,0,7,5,3,0,538,217040.22,0,149538.63,12998.078,0,1731.2584,1393.7699 +124,145,273,274,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,37,5,-10.047707,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.5539749,0,49.35,27.68,55.36,51.57,8.333333333333334,1,1,0,0,0,1,2,1,319,882629.13,453303.06,143983.84,0,0,0,677.13708 +124,145,274,273,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.490756,6.5708737,37,-5,28.326931,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3645024,6.6256766,55.36,51.57,49.35,27.68,8.333333333333334,1,1,0,0,8,1,2,1,319,882629.13,453303.06,143983.84,0,0,0,677.13708 +125,146,275,279,-9,-9,1,1,47,0,3,0,2,2,-9,0,2,8.4243517,8.5679007,0,12,-2,-142.71588,0,3,3,2021,13,1,52,-9,1,1,0,12.401329,12.401329,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.66,50.06,32.91,40.51,5,1,1,0,1,12,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,276,-9,279,275,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-953.34961,-9,1,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,277,-9,279,275,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.86487,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,278,-9,279,275,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-984.05725,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +125,146,279,275,-9,-9,1,0,49,0,3,0,1,1,-9,0,2,7.7281208,7.7451825,0,12,2,10.122446,0,-9,-9,2021,21,9,21,21,1,9,0,14.107921,14.107921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.91,40.51,39.66,50.06,3.333333333333333,1,1,0,0,12,1,4,1,568,409146.72,270003.78,177782.28,125106.17,0,325.36148,3810.4587 +126,147,280,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1073.9376,0,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,9.9736881,0,81.343681,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,6,4,1,1,952,-51846.844,0,0,0,0,0,1580.3627 +127,148,281,283,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,8.2766237,8.4278708,0,7,0,-18.57239,0,-9,-9,2021,11,0,47,55,1,0,0,8.7776299,8.7776299,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.32,50.38,52,54.51,8.333333333333334,1,1,0,0,10,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +127,148,282,-9,281,283,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.1118,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +127,148,283,281,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.8053722,8.8325367,0,7,0,56.729797,0,-9,-9,2021,10,0,60,50,1,0,0,16.199409,16.199409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,41.32,50.38,8.333333333333334,1,1,0,0,13,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +127,148,284,-9,281,283,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.74353,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,1038.75,441523.25,193494.86,335187.53,89520.594,0,0,4164.8809 +128,149,285,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,8.1622248,7.8781147,0,0,0,-981.38104,0,2,2,2021,23,9,40,40,1,9,0,10.491093,10.491093,.05,.05,0,0,0,0,0,0,1,1,0,2.8320951,0,33.59,54.46,-9,-9,1.666666666666667,1,1,0,0,10,9,4,1,409,120800.68,123704.55,0,0,0,0,1425.4303 +129,150,286,287,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.8465171,7.0178299,55,-2,-25.236752,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6296921,54,46,50.03,49.92,8,1,1,0,0,0,10,2,0,514,110893.64,114689.51,0,0,464.08438,0,1254.5212 +129,150,287,286,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,55,2,29.318142,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,49.92,54,46,8.333333333333334,1,1,0,0,0,10,2,0,514,110893.64,114689.51,0,0,464.08438,0,1254.5212 +130,151,288,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.492342,7.3946695,0,0,0,-1060.3003,0,2,2,2021,12,0,35,35,1,0,0,5.4577327,5.4577327,.05,.05,0,0,0,0,0,0,0,0,0,1.9019505,0,41.89,46.99,-9,-9,3.333333333333333,1,1,0,0,8,1,3,1,2609,-13010.597,-80692.883,0,0,0,0,525.49561 +131,152,289,291,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,7.4057269,7.4068494,0,3,-1,13.789246,0,2,2,2021,18,6,25,24,1,6,0,7.3388414,7.3388414,0,0,0,0,0,0,0,0,1,1,0,0,0,43.49,45.06,48.87,58.55,10,1,1,0,0,7,10,3,1,1115.3334,79478.008,-13574.723,138029.05,86778.234,7083.9888,0,2314.1746 +131,152,290,-9,289,291,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.0305,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,10,3,1,1115.3334,79478.008,-13574.723,138029.05,86778.234,7083.9888,0,2314.1746 +131,152,291,289,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,7.6854191,7.5823336,0,3,1,79.199989,0,-9,-9,2021,8,0,60,55,1,0,0,4.9443984,4.9443984,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.87,58.55,43.49,45.06,8.333333333333334,1,1,0,0,8,10,3,1,1115.3334,79478.008,-13574.723,138029.05,86778.234,7083.9888,0,2314.1746 +132,153,292,294,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.8162498,7.8430376,0,11,-2,-25.429409,0,2,3,2021,22,10,36,35,1,10,0,8.4131241,8.4131241,0,0,0,0,0,0,0,0,0,0,0,0,0,31.51,60.03,57.06,57.76,1.666666666666667,4,2,0,0,11,9,4,1,732.33331,86712.266,-54236.98,270088.25,112639.86,5291.6128,11169.727,2279.3899 +132,153,293,-9,292,294,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.28998,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,732.33331,86712.266,-54236.98,270088.25,112639.86,5291.6128,11169.727,2279.3899 +132,153,294,292,-9,-9,1,1,46,0,1,0,2,2,-9,0,5,7.741508,8.078227,0,11,2,-63.2584,0,3,3,2021,6,0,35,38,1,0,0,8.9893808,8.9893808,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,31.51,60.03,8.333333333333334,1,1,0,0,11,9,4,1,732.33331,86712.266,-54236.98,270088.25,112639.86,5291.6128,11169.727,2279.3899 +133,154,295,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5313215,7.6784277,6.1752353,0,0,-944.4704,0,-9,-9,2021,9,0,3,15,1,0,0,57.15099,57.15099,0,0,0,0,0,0,0,0,1,1,0,0,6.1444654,51.58,50.6,-9,-9,3.333333333333333,1,1,0,0,11,5,3,1,559,-255561.92,0,0,0,0,0,1819.2362 +133,155,296,-9,295,-9,1,1,20,0,0,0,2,2,-9,0,5,8.3473949,8.5189104,0,0,0,-1007.1749,0,2,-9,2021,16,3,60,50,1,3,1,10.731441,10.731441,0,0,0,0,0,0,0,0,1,1,0,0,0,44.09,36.67,-9,-9,3.333333333333333,1,1,0,0,3,5,5,1,2339,8568.0938,0,0,0,0,0,2977.2327 +133,156,297,-9,295,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1048.4751,-9,2,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.74,51.97,-9,-9,3.333333333333333,1,1,0,1,0,5,1,1,2336,-161604.27,0,0,0,0,0,0 +134,157,298,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,5,8.1708517,8.2818851,0,0,0,-884.60516,-9,2,1,2021,11,0,38,0,1,0,0,8.6003084,8.6003084,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,3,9,4,1,415,-60815.801,-16585.473,0,0,1025.7935,0,1444.4373 +135,158,299,-9,301,302,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2646,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +135,158,300,-9,301,302,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.89142,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +135,158,301,302,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.8816204,8.8560762,0,8,0,-6.6411204,0,-9,-9,2021,12,0,42,36,1,0,0,17.701782,17.701782,.05,.05,0,0,0,0,0,0,1,1,0,4.1806293,0,35.63,62.19,40.23,35.48,6.666666666666667,1,1,0,0,5,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +135,158,302,301,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.8327866,8.8822985,0,18,0,22.374264,0,2,2,2021,14,3,41,36,1,3,0,14.632872,14.632872,.05,.05,0,0,0,0,0,0,1,1,0,2.4850695,0,40.23,35.48,35.63,62.19,5,1,1,0,0,8,11,5,1,1266.5,1513191,57310.785,469813.69,304796.47,0,0,5135.0576 +136,159,303,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.6576052,7.4008765,0,0,0,-1106.1243,-9,2,2,2021,12,0,35,0,1,0,0,7.3351455,7.3351455,.05,.05,0,0,0,0,0,0,0,0,0,2.8838041,0,50.05,39.37,-9,-9,1.666666666666667,1,1,0,0,9,11,3,1,1741,192462.34,133278.83,0,0,5.2162228,-377.54358,893.48181 +137,160,304,-9,-9,-9,1,0,58,0,1,0,1,1,-9,1,1,0,0,0,0,0,-928.40515,-9,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.24,30.98,-9,-9,5,2,3,0,0,0,7,1,1,286,122378.54,0,0,0,0,0,245.51204 +137,161,305,-9,307,306,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.7683,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,7,3,1,365,33043.129,-19878.352,0,0,17864.736,10978.469,1320.7529 +137,161,306,307,304,-9,1,1,40,0,1,0,2,2,-9,0,4,8.2585049,8.2324123,0,2,7,114.97149,-9,3,3,2021,13,3,48,0,1,3,0,12.368058,12.368058,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,62.49,55.09,10,2,3,0,0,11,7,3,1,365,33043.129,-19878.352,0,0,17864.736,10978.469,1320.7529 +137,161,307,306,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,0,0,0,2,-7,36.59417,-9,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.73,54.53,10,2,3,1,0,0,7,3,1,365,33043.129,-19878.352,0,0,17864.736,10978.469,1320.7529 +137,162,308,-9,304,-9,1,0,23,0,1,1,1,0,0,0,5,0,0,0,0,0,-1062.6797,-9,-9,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,62.56,-9,-9,10,2,3,0,0,2,7,1,1,697,11116.816,33468.406,0,0,0,0,0 +138,163,309,311,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.1291151,8.005928,0,10,0,172.15416,0,2,2,2021,14,3,45,40,1,3,0,9.5800648,9.5800648,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,46,51,8.333333333333334,1,1,0,0,11,11,4,1,667,-119313.44,-59180.246,0,0,5640.6196,3807.0552,2732.8716 +138,163,310,-9,311,309,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1171.9944,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,11,4,1,667,-119313.44,-59180.246,0,0,5640.6196,3807.0552,2732.8716 +138,163,311,309,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3523664,8.5212851,0,10,0,-7.4789586,0,3,3,2021,12,0,39,38,1,2,0,14.222724,14.222724,0,0,0,0,0,0,0,0,0,0,0,0,0,46,51,54.2,57.49,7,2,3,0,0,1,11,4,1,667,-119313.44,-59180.246,0,0,5640.6196,3807.0552,2732.8716 +139,164,312,-9,313,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.8693,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,883,152177.58,0,249445.38,0,0,0,1720.408 +139,164,313,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.2452078,8.3383465,0,0,0,-991.85175,0,-9,-9,2021,7,0,37,37,1,0,0,14.414692,14.414692,0,0,0,0,0,0,0,0,1,1,0,7.2505546,0,60.45,41.05,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,883,152177.58,0,249445.38,0,0,0,1720.408 +140,165,314,315,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.7506595,7.6182394,0,6,2,-1.3871026,0,-9,-9,2021,11,3,25,25,1,3,0,11.128038,11.128038,.05,.05,0,0,0,0,0,0,0,0,0,2.4392688,0,39.64,62.95,27.44,30.98,8.333333333333334,1,1,0,0,9,2,4,1,722.5,545700.13,160576.56,251342.92,0,0,0,2586.3286 +140,165,315,314,-9,-9,1,0,45,0,0,0,1,1,-9,0,1,8.300909,8.0630999,0,6,-2,47.379768,0,-9,-9,2021,25,9,36,36,1,9,0,12.865793,12.865793,0,0,0,0,0,0,0,7,0,0,0,0,0,27.44,30.98,39.64,62.95,0,1,1,0,0,9,2,4,1,722.5,545700.13,160576.56,251342.92,0,0,0,2586.3286 +141,166,316,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.2415619,8.1855268,6.258975,0,0,-1019.4317,0,3,3,2021,28,12,30,38,1,12,0,14.726438,14.726438,.05,.05,0,0,0,0,0,0,1,1,0,5.745153,0,15.66,68.27,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,696,177817.48,82793.563,5605.5894,102632.05,0,0,1328.1704 +141,167,317,-9,316,-9,1,0,19,0,1,0,2,2,-9,0,3,7.8002677,7.7555456,0,0,0,-996.74249,0,2,-9,2021,11,0,38,37,1,0,1,8.3810644,8.3810644,0,0,0,0,0,0,0,0,1,1,0,2.1880248,0,41.71,49.71,-9,-9,6.666666666666667,1,1,0,0,3,11,3,1,741,-40163.703,0,0,0,0,0,1148.8541 +142,168,318,319,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,35,-10,7.0626631,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,46.4,45.84,7,1,1,0,0,0,9,2,0,153.5,288499.75,136491.81,211074.42,0,0,0,2200.3611 +142,168,319,318,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.7849121,6.711803,35,10,24.903727,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.5424929,46.4,45.84,49,48,8.333333333333334,1,1,0,0,0,9,2,0,153.5,288499.75,136491.81,211074.42,0,0,0,2200.3611 +142,169,320,-9,318,319,1,1,40,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1000.0059,0,2,3,2021,9,0,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,1,0,0,9,1,0,144,-108537.2,0,0,0,10047.764,3406.5637,0 +143,170,321,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.861124,8.6179676,0,6,6,-164.89841,0,3,3,2021,10,0,37,7,1,0,0,19.544659,19.544659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.83,48.56,44.72,57.73,10,1,1,0,0,12,2,5,1,319,188765.19,32724.363,120354.67,98262.922,0,-1322.6642,2298.4355 +143,171,322,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.7392235,8.6634007,0,6,-6,-33.668514,0,-9,-9,2021,8,0,37,37,1,0,0,14.308873,14.308873,.05,.05,0,0,0,0,0,0,0,0,0,3.4535356,0,44.72,57.73,52.83,48.56,8.333333333333334,1,1,0,0,14,2,5,1,449,135465.27,-59837.473,192373.5,131581.81,12643.447,0,2065.1221 +144,172,323,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2813654,8.2587767,0,0,0,-937.32434,-9,2,2,2021,11,2,37,0,1,2,1,11.470181,11.470181,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,63,-87174.07,79168.25,0,0,0,1521.4882,1344.3607 +145,173,324,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.687427,6.6784253,0,0,-1066.9032,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9085364,59.22,40.22,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1043,250281.55,145429.86,0,0,0,0,2706.7449 +146,174,325,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1062.6058,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,2.2842252,8.265481,24.408171,0,1,1,0,0,0,39.97,55.56,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,1532,431646.38,0,186081.77,0,0,0,1182.084 +147,175,326,327,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.6054068,8.7142239,11,-2,-23.390261,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7293024,8.901659,55.76,44.76,54.78,34.44,8.333333333333334,1,1,0,0,9,9,5,1,632.5,1627166.3,1223319,334215.25,0,6245.5977,0,4678.9463 +147,175,327,326,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.0895634,7.1879807,11,2,-116.77054,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,2.2608988,0,0,1,1,0,2.5433631,7.0186672,54.78,34.44,55.76,44.76,8.333333333333334,1,1,0,0,6,9,5,1,632.5,1627166.3,1223319,334215.25,0,6245.5977,0,4678.9463 +148,176,328,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0672903,6.1868596,0,0,-977.0719,0,2,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,.7129429,2.8964512,21.273003,0,1,1,0,0,5.9972816,33.33,22.86,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,5182,-223042.94,30108.74,0,0,0,0,-421.38678 +149,177,329,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.9885416,5.6541357,0,0,-896.55798,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,5.543098,0,0,1,1,0,0,5.9087191,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,532,94155.125,120704.87,172562.94,0,0,0,539.00122 +150,178,330,331,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.0049567,6.9026089,0,29,-3,-13.462588,0,3,2,2021,7,0,20,21,1,0,0,5.7221546,5.7221546,0,0,0,0,0,0,0,0,0,0,0,6.949369,0,49.25,61.25,53,55,10,1,1,0,0,9,9,4,1,423.5,341192.41,113260.72,446391.31,119747.47,0,0,2943.0518 +150,178,331,330,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.7553797,8.7655239,0,7,3,77.447662,0,-9,-9,2021,9,0,40,40,1,1,0,15.568717,15.568717,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,49.25,61.25,8,1,1,0,0,1,9,4,1,423.5,341192.41,113260.72,446391.31,119747.47,0,0,2943.0518 +150,179,332,-9,330,331,1,1,19,0,0,0,2,2,0,0,3,0,0,0,0,0,-925.04895,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,337,274454,0,0,0,0,0,0 +151,180,333,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.6850996,6.9855194,0,0,-954.39166,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.4699285,0,26.432959,0,1,1,0,2.1526048,7.205195,52,47,-9,-9,7,1,1,0,0,0,6,3,0,535,489361.63,169045.45,278584.31,0,7060.2432,0,804.71295 +152,181,334,-9,-9,-9,1,0,24,0,1,0,1,1,-9,0,3,0,0,0,0,0,-974.5719,1,2,3,2021,6,0,0,47,2,0,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,3,4,0,0,1,6,2,1,428,106448.15,-139548.22,0,0,0,0,0 +153,182,335,336,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,6.9940457,7.319694,0,3,-1,116.6926,0,2,2,2021,14,3,24,40,1,3,0,5.9752684,5.9752684,0,0,0,0,0,0,0,0,0,0,0,.86157483,0,48.77,60.16,54.1,59.11,8.333333333333334,1,1,0,0,6,2,4,0,275,-121102.88,0,0,0,0,0,2801.6709 +153,182,336,335,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.3566227,8.114418,0,3,1,-85.49308,0,-9,-9,2021,6,0,48,45,1,0,0,10.865446,10.865446,0,0,0,0,0,0,0,0,0,0,0,5.912643,0,54.1,59.11,48.77,60.16,8.333333333333334,1,1,0,0,3,2,4,0,275,-121102.88,0,0,0,0,0,2801.6709 +154,183,337,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-953.1947,-9,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.47,22.25,-9,-9,5,1,1,0,0,0,13,1,0,800,70496.203,0,0,0,0,-917.87579,2237.0474 +155,184,338,339,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,31,1,84.383331,0,-9,-9,2021,12,1,0,42,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,50.91,28.35,59.94,49.98,8.333333333333334,2,3,0,0,11,6,2,1,1129,610731.25,519247.75,132847.78,0,0,0,748.56818 +155,184,339,338,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.1533632,6.7682796,0,31,-1,18.886536,-9,3,3,2021,6,0,20,0,1,0,0,6.1532907,6.1532907,0,0,0,0,0,0,0,0,0,0,0,0,0,59.94,49.98,50.91,28.35,5,2,3,0,0,9,6,2,1,1129,610731.25,519247.75,132847.78,0,0,0,748.56818 +155,185,340,-9,338,339,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1128.576,0,2,2,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.91,54.79,-9,-9,8.333333333333334,2,3,0,1,2,6,1,1,573,228787.64,0,0,0,0,0,1298.2714 +156,186,341,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.6190448,6.4923077,0,0,-1006.2468,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3233216,6.7481399,56.37,32.38,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,845,148696.55,22571.967,0,0,0,0,740.50146 +157,187,342,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.4410329,7.509768,6.0703683,0,0,-1005.6852,0,3,3,2021,7,0,22,22,1,0,0,7.9511499,7.9511499,.05,.05,0,0,0,0,0,0,0,0,0,0,6.1174412,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,625,45368.852,-125452.95,0,0,0,0,1358.9589 +158,188,343,344,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.3423104,7.634284,47,-4,11.701669,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.7298733,8.0300903,57.16,56.15,57.08,20.39,8.333333333333334,1,1,0,0,9,8,3,1,189,622281.63,168223.13,380234.31,0,0,0,2105.4023 +158,188,344,343,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,0,0,47,4,-167.95992,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,9.5727491,0,0,1,1,0,0,0,57.08,20.39,57.16,56.15,5,1,1,0,0,0,8,3,1,189,622281.63,168223.13,380234.31,0,0,0,2105.4023 +159,189,345,346,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8011894,8.4488611,0,12,0,20.517336,0,1,1,2021,8,0,10,10,1,0,0,61.298862,61.298862,.05,.05,0,0,0,0,0,0,0,0,0,6.9952893,0,57.16,56.15,50.14,53.97,10,1,1,0,0,13,8,4,1,1293,491103.63,276893.81,110259.3,0,0,0,3585.9966 +159,189,346,345,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,12,0,-18.020107,0,1,2,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.3506441,0,50.14,53.97,57.16,56.15,10,1,1,0,0,13,8,4,1,1293,491103.63,276893.81,110259.3,0,0,0,3585.9966 +159,190,347,-9,345,346,1,0,24,0,0,0,1,1,-9,0,3,7.6858993,7.8668394,0,0,0,-1096.0537,0,1,1,2021,7,0,16,16,1,0,1,12.946594,12.946594,.05,.05,0,0,0,0,0,0,0,0,0,2.4524336,0,48.4,50.83,-9,-9,8.333333333333334,1,1,0,0,2,8,3,1,1799,-76155.695,-15053.609,0,0,0,0,574.11725 +160,191,348,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.9460034,6.9026647,0,0,-875.23438,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1324935,7.2134504,48.53,45.51,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,390,157829.66,179648.17,169476.11,0,0,0,-26.423872 +161,192,349,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.1525459,8.4137907,6.5985379,0,0,-1129.0298,0,2,2,2021,25,11,37,37,1,11,0,15.426037,15.426037,.05,.05,0,0,0,0,0,0,1,1,0,6.101459,0,32.11,60.74,-9,-9,3.333333333333333,1,1,0,0,8,1,4,1,442,-20456.402,97768.117,46693.094,65273.199,961.8512,0,1919.6772 +161,193,350,-9,349,-9,1,1,19,0,1,0,2,2,-9,0,4,8.1787109,8.3548508,0,0,0,-899.68207,0,2,-9,2021,15,3,42,40,1,3,1,11.924803,11.924803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,3,1,4,1,342,-58224.992,18203.432,0,0,0,0,1556.9011 +162,194,351,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,2,0,7.2993035,7.118052,0,0,-1060.5603,0,3,3,2021,13,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3179609,6.9270067,60.39,21.15,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,596,345161.44,129848.16,267251.88,0,0,0,726.08826 +163,195,352,353,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.7421236,9.4971771,0,31,-3,61.90287,0,3,1,2021,10,0,35,43,1,0,0,43.903839,43.903839,.05,.05,0,0,0,0,0,7,0,0,0,6.19561,0,57.33,53.46,60.13,49.27,8.333333333333334,4,2,0,0,6,9,5,1,401.5,3612435.5,2514615.5,488773.22,0,0,0,10403.826 +163,195,353,352,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6287937,9.6162663,0,31,3,-15.711473,0,-9,-9,2021,9,0,50,48,1,0,0,41.914066,41.914066,.05,.05,.05,0,0,0,0,0,0,0,0,8.2310877,0,60.13,49.27,57.33,53.46,10,1,1,0,0,9,9,5,1,401.5,3612435.5,2514615.5,488773.22,0,0,0,10403.826 +164,196,354,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4877615,8.3364372,0,0,0,-965.81122,0,-9,-9,2021,6,0,50,50,1,0,0,8.6375017,8.6375017,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,5,4,0,1930,126201.88,0,0,0,0,0,2461.083 +165,197,355,356,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.990696,8.8779716,0,7,0,-19.580505,0,-9,-9,2021,10,1,48,48,1,1,0,15.508782,15.508782,.05,.05,0,0,0,0,0,0,0,0,0,6.7027106,0,49.87,58.27,44.84,54.12,8.333333333333334,1,1,0,0,6,8,5,1,542.5,295794.72,65776.258,595912.5,400080.25,0,0,5305.7256 +165,197,356,355,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.5947866,8.4893541,0,7,0,-147.81932,0,-9,-9,2021,16,5,50,50,1,5,0,12.829994,12.829994,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.84,54.12,49.87,58.27,6.666666666666667,1,1,0,0,11,8,5,1,542.5,295794.72,65776.258,595912.5,400080.25,0,0,5305.7256 +166,198,357,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-909.65509,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.42,34.01,-9,-9,10,1,1,0,0,0,13,1,1,1915,170030.78,0,0,0,0,0,915.60748 +167,199,358,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,7.4584928,7.9614849,0,0,-1082.3959,0,3,3,2021,5,0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9262791,8.2790251,66.46000000000001,15.66,-9,-9,8.333333333333334,4,5,0,0,10,6,3,1,8459,309524.94,278127.06,199915.66,0,0,0,1869.4941 +168,200,359,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1015.4897,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.39,38.59,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,535,-70451.672,0,0,0,0,0,1377.5835 +169,201,360,361,-9,-9,1,1,60,0,0,0,1,1,-9,0,1,0,0,0,16,16,-33.322586,0,2,1,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.06,25.26,38.01,61.37,1.666666666666667,1,1,1,1,7,4,3,1,605,1346526,873762.75,437357.63,0,2966.3025,0,1334.814 +169,201,361,360,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,8.376153,8.2502213,0,16,-16,-31.15484,0,1,3,2021,15,5,44,50,1,5,0,9.0591965,9.0591965,0,0,0,0,0,0,0,0,0,0,0,7.5204453,0,38.01,61.37,33.06,25.26,6.666666666666667,1,1,0,1,10,4,3,1,605,1346526,873762.75,437357.63,0,2966.3025,0,1334.814 +170,202,362,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.5090742,6.3237348,0,0,-940.74384,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.442421,41.23,53.22,-9,-9,8.333333333333334,1,1,0,1,0,10,2,0,475,276291.81,-83753.484,16030.232,48937.387,0,0,700.14349 +171,203,363,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1132.2332,0,2,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.23,38.97,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +171,203,364,-9,363,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-977.52649,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +171,203,365,-9,363,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.34467,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +171,203,366,-9,363,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.35193,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,1,0,380.25,-16406.668,0,0,0,8957.1211,0,2335.3169 +172,204,367,368,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.5635662,6.7754755,11,-4,-83.975494,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4595013,54.36,39.67,46.65,46.5,6.666666666666667,4,2,0,0,12,4,2,1,1004,1659639.8,983942.38,341850,0,0,0,1040.2712 +172,204,368,367,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,6.3741269,6.4461803,11,4,-54.00074,0,-9,-9,2021,12,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2911925,46.65,46.5,54.36,39.67,5,1,1,0,0,15,4,2,1,1004,1659639.8,983942.38,341850,0,0,0,1040.2712 +173,205,369,370,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.0169454,7.0728741,0,23,-7,59.595131,0,2,2,2021,12,0,6,8,1,2,0,21.600567,21.600567,0,0,0,0,0,0,0,0,1,0,1,0,0,47,49,50,49,7,2,3,0,0,6,8,2,1,349,720716.31,607671.13,0,0,0,0,1005.2633 +173,205,370,369,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,6.3428411,6.4890704,0,23,7,158.67294,0,3,2,2021,10,0,40,45,1,1,0,1.2423909,1.2423909,.05,.05,0,0,0,0,0,0,1,0,1,0,0,50,49,47,49,7,2,3,0,0,13,8,2,1,349,720716.31,607671.13,0,0,0,0,1005.2633 +173,206,371,-9,369,370,1,1,29,0,0,0,1,1,-9,0,4,8.4834509,8.0048761,0,0,0,-937.87042,0,2,1,2021,14,2,57,-9,1,2,1,9.3993893,9.3993893,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.58,57.61,-9,-9,3.333333333333333,2,3,0,0,5,8,5,1,144,41042.621,186904.38,199853.58,110285.44,0,0,2279.0007 +173,207,372,-9,369,370,1,0,25,0,0,0,1,1,-9,0,4,7.0144343,7.1800985,0,0,0,-939.23883,0,2,1,2021,23,9,8,3,1,9,1,17.620502,17.620502,.05,.05,0,0,0,0,0,0,1,0,1,0,0,33.19,58.87,-9,-9,5,2,3,0,1,2,8,3,1,1285,-68853.758,-80058.023,0,0,0,24.251339,475.75748 +173,208,373,-9,369,370,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1009.1642,0,2,1,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,1,3712,0,0,0,0,0,0,1625.3116 +173,209,374,-9,369,370,1,0,22,0,0,0,2,2,1,0,2,0,0,0,0,0,-1009.9601,-9,2,1,2021,24,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.1,32.03,-9,-9,1.666666666666667,2,3,0,0,1,8,2,1,60,0,0,0,0,0,0,0 +174,210,375,376,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,8.2718182,8.5652781,9,2,35.816025,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4841409,8.3989334,40.27,31.82,49.43,44.66,3.333333333333333,1,1,0,0,0,6,3,1,816,818314.19,536128.38,182995.44,0,0,0,2864.7876 +174,210,376,375,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,9,-2,67.351952,0,3,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,10.868595,0,0,1,1,0,0,0,49.43,44.66,40.27,31.82,8.333333333333334,1,1,0,0,0,6,3,1,816,818314.19,536128.38,182995.44,0,0,0,2864.7876 +175,211,377,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.2938261,6.2339835,0,0,-1072.8578,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.2542994,13.589895,18.586926,0,1,1,0,0,6.382566,47.55,23.07,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,1069,42861.121,-43055.859,0,0,0,0,649.22656 +176,212,378,379,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.0977402,8.0233021,0,3,-6,40.591568,0,-9,-9,2021,14,3,40,60,1,3,0,7.1543174,7.1543174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.24,54.04,49.4,41.93,6.666666666666667,1,1,0,0,8,9,4,1,804,203140.08,53960.672,0,0,0,893.34717,2518.3804 +176,212,379,378,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7580233,7.6511273,0,3,6,-59.185558,0,-9,-9,2021,11,3,36,48,1,3,0,7.2426524,7.2426524,0,0,0,0,0,0,0,0,0,0,0,0,0,49.4,41.93,42.24,54.04,6.666666666666667,1,1,0,0,6,9,4,1,804,203140.08,53960.672,0,0,0,893.34717,2518.3804 +177,213,380,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6341629,8.4796228,0,0,0,-965.20099,0,2,3,2021,12,1,30,30,1,1,0,21.306662,21.306662,.05,.05,0,0,0,0,0,0,0,0,0,.82766736,0,48.56,50.81,-9,-9,5,2,3,0,0,4,8,5,0,338,173322.36,-55349.691,0,0,0,0,1932.0602 +178,214,381,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.3466682,7.4196162,0,0,-1014.0855,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0716975,7.4642291,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,471,838113.19,293262.66,387576.59,0,0,0,2277.8208 +179,215,382,383,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.3642659,7.7344117,0,7,3,14.339839,0,-9,-9,2021,10,0,97,97,1,1,0,2.3857617,2.3857617,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,55.27,39.27,7,1,1,0,0,1,7,4,0,358,74888.094,0,0,0,0,0,2883.8853 +179,215,383,382,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.5482674,8.2223616,0,7,-3,102.99728,0,3,-9,2021,10,0,48,46,1,0,0,9.3912802,9.3912802,0,0,0,0,0,0,0,0,1,1,0,0,0,55.27,39.27,52,48,10,1,1,0,0,8,7,4,0,358,74888.094,0,0,0,0,0,2883.8853 +180,216,384,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3227634,8.3920479,0,0,0,-968.60236,0,1,1,2021,14,2,35,35,1,2,0,17.576996,17.576996,0,0,0,0,0,0,0,0,1,1,0,1.287555,0,43.12,58.26,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,685,-65853.68,0,0,0,0,0,1062.0186 +181,217,385,-9,386,387,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.8392,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +181,217,386,387,-9,-9,1,0,29,2,2,0,3,3,-9,0,3,6.9972649,6.9944291,0,3,1,-26.769524,0,-9,-9,2021,11,1,16,16,1,1,0,9.0206594,9.0206594,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,55.73,53.98,8.333333333333334,1,1,0,0,3,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +181,217,387,386,-9,-9,1,1,28,2,2,0,1,1,-9,0,4,8.5801334,8.8886728,0,3,-1,85.366104,0,-9,-9,2021,13,1,59,39,1,1,0,15.119294,15.119294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.09,46.7,6.666666666666667,1,1,0,0,5,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +181,217,388,-9,386,387,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.2993,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,0,408.5,83415.594,-20776.945,131174.48,127300.97,0,0,3666.4199 +182,218,389,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,1,0,7.9769363,8.0778637,0,0,-1117.2471,0,-9,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6366615,7.9568939,45.82,31.91,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,650,331748.19,155339.36,239697.73,0,0,0,2562.7388 +183,219,390,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1082.4812,0,3,3,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,2,1,0,209,72493.594,0,0,0,0,2183.7598,1049.2107 +184,220,391,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.2938166,7.4740672,0,0,0,-889.59949,0,3,3,2021,13,3,28,23,1,3,0,7.0436325,7.0436325,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,49.06,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,791,-180422.48,0,0,0,0,0,665.20618 +185,221,392,393,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.0032611,6.2292032,60,7,10.447976,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9649224,57.16,56.15,64.22,34.32,6.666666666666667,1,1,0,0,0,1,2,0,336,397823,140390.17,78369.578,0,0,0,1743.2319 +185,221,393,392,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.4483333,6.5712142,11,-7,131.64342,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3385119,64.22,34.32,57.16,56.15,8.333333333333334,1,1,0,0,0,1,2,0,336,397823,140390.17,78369.578,0,0,0,1743.2319 +186,222,394,395,-9,-9,1,0,77,0,0,0,1,1,-9,0,1,0,6.4422517,6.3795462,38,2,-61.207237,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2703724,6.8038597,64.08,7.02,62.84,46.85,0,1,1,0,0,0,9,2,1,307.5,995398.25,533231.13,314947,0,0,0,2171.7839 +186,222,395,394,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.004796,5.9544535,38,-2,-15.422671,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,6.8602443,6.1506286,62.84,46.85,64.08,7.02,10,1,1,0,0,0,9,2,1,307.5,995398.25,533231.13,314947,0,0,0,2171.7839 +187,223,396,-9,397,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.76233,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1279.5,239681.97,101517.73,122163.64,0,0,0,1635.4465 +187,223,397,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.1302109,8.5444832,0,0,0,-1031.1353,0,3,2,2021,6,0,42,44,1,0,0,10.905252,10.905252,.05,.05,0,0,0,0,0,2,1,1,0,3.3930442,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,1279.5,239681.97,101517.73,122163.64,0,0,0,1635.4465 +188,224,398,399,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,8,-2,0,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,45.2,25.75,7,1,1,0,0,0,13,1,0,923,-73338.219,0,0,0,0,0,1804.272 +188,224,399,398,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,8,2,0,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.2,25.75,49,48,5,1,1,0,0,2,13,1,0,923,-73338.219,0,0,0,0,0,1804.272 +189,225,400,401,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,49,-4,-119.05663,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,54.96,53.17,8.333333333333334,1,1,0,0,9,9,3,0,340.5,1124186.4,442329.38,664486.25,0,0,0,1729.391 +189,225,401,400,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.6556158,7.933814,49,4,57.484867,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7323823,7.8430734,54.96,53.17,60.29,52.11,10,1,1,0,0,0,9,3,0,340.5,1124186.4,442329.38,664486.25,0,0,0,1729.391 +190,226,402,403,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.7059631,8.5343657,0,32,3,-155.32921,0,2,2,2021,10,0,28,40,1,0,0,21.721418,21.721418,0,0,0,0,0,0,0,0,0,0,0,0,0,52.41,42.18,55.2,57.22,6.666666666666667,1,1,0,0,10,12,5,1,915,933028.25,701409.38,489531.97,220904.73,0,0,11226.682 +190,226,403,402,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,10.506946,10.152728,0,32,-3,10.906754,0,1,2,2021,8,0,60,45,1,0,0,52.1623,52.1623,0,0,0,0,0,0,0,2,0,0,0,5.3536129,0,55.2,57.22,52.41,42.18,8.333333333333334,1,1,0,0,10,12,5,1,915,933028.25,701409.38,489531.97,220904.73,0,0,11226.682 +190,227,404,-9,403,402,1,0,21,0,0,0,1,1,1,0,3,8.2052021,7.9771452,0,0,0,-890.04657,-9,1,1,2021,9,2,80,0,1,2,1,3.9475265,3.9475265,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,96,-71080.359,0,0,0,0,0,1488.3818 +190,228,405,-9,403,402,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-998.35748,-9,1,1,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.91815042,0,42.31,49.45,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,310,0,0,0,0,0,0,-738.00903 +191,229,406,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6795206,8.7666807,1.6839859,0,0,-1053.7614,0,1,3,2021,2,0,37,37,1,0,0,14.684995,14.684995,.05,.05,0,0,0,0,0,0,1,1,0,2.5023172,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,467,267200.25,66704.375,0,0,0,1262.4926,1792.4808 +192,230,407,-9,-9,-9,1,0,66,0,0,0,1,1,-9,1,1,0,6.0266571,6.3017321,0,0,-878.58032,0,2,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,1,13.149866,9.754324,125.40743,0,1,1,0,0,6.3366957,49.35,22.3,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,444,323411.41,136927.11,54986.902,0,0,0,2756.8623 +193,231,408,409,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.0869274,8.0897322,0,3,1,71.678101,0,3,2,2021,9,0,30,35,1,1,0,13.277347,13.277347,.05,.05,0,0,0,0,0,0,1,1,0,4.0082617,0,54,53,45.81,61.51,8,1,1,0,0,1,10,5,1,1090,1016383,840169,160688.02,42532.238,8495.2119,0,4556.4492 +193,231,409,408,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.8796711,8.8120394,0,3,-1,7.2213755,0,1,2,2021,14,3,45,51,1,3,0,20.281509,20.281509,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,54,53,6.666666666666667,1,1,0,0,9,10,5,1,1090,1016383,840169,160688.02,42532.238,8495.2119,0,4556.4492 +194,232,410,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5388784,8.1378832,0,0,0,-947.88947,0,2,2,2021,5,0,55,48,1,0,0,9.6412506,9.6412506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,11,4,0,1130,239766.42,143719.66,117688.62,0,0,0,1017.2776 +195,233,411,-9,412,413,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.5204,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,921.66669,1803476.3,1102837.5,315102.56,0,0,0,3298.5396 +195,233,412,413,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,8.0074711,7.833652,0,4,-14,24.551779,0,2,2,2021,6,0,35,40,1,0,0,10.498154,10.498154,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,56.29,52.37,10,1,1,0,0,10,4,5,1,921.66669,1803476.3,1102837.5,315102.56,0,0,0,3298.5396 +195,233,413,412,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.7286873,8.4849014,0,4,14,5.0001907,0,-9,-9,2021,8,0,52,62,1,0,0,11.383448,11.383448,.05,.05,0,0,0,0,0,0,1,1,0,3.31691,0,56.29,52.37,60.12,54.8,6.666666666666667,1,1,0,0,10,4,5,1,921.66669,1803476.3,1102837.5,315102.56,0,0,0,3298.5396 +196,234,414,415,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.5166082,8.7714176,0,33,-1,41.914558,-9,3,3,2021,20,6,36,0,1,6,0,15.479805,15.479805,0,0,0,0,0,0,0,27,0,0,0,4.2050357,0,29.31,48,31.18,47.15,1.666666666666667,1,1,0,0,13,8,4,0,655,110122.57,-31666.777,0,0,-458.38162,0,2038.4746 +196,234,415,414,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,11,1,26.200008,0,3,2,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.51292032,0,31.18,47.15,29.31,48,3.333333333333333,1,1,1,0,10,8,4,0,655,110122.57,-31666.777,0,0,-458.38162,0,2038.4746 +197,235,416,417,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9983883,7.8697195,0,8,-5,45.598003,0,3,3,2021,10,0,39,39,1,0,0,7.9530306,7.9530306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.11,55.31,56.19,46.16,6.666666666666667,1,1,0,0,10,2,4,1,930.5,191527.39,-5814.832,133568.19,30079.34,5623.0161,0,2584.3066 +197,235,417,416,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,7.95788,7.7029881,0,8,5,-59.792122,0,-9,-9,2021,11,0,47,44,1,0,0,8.9719152,8.9719152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.19,46.16,44.11,55.31,8.333333333333334,1,1,0,0,8,2,4,1,930.5,191527.39,-5814.832,133568.19,30079.34,5623.0161,0,2584.3066 +198,236,418,419,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.6264977,7.7996578,0,7,-3,61.660145,0,-9,-9,2021,12,0,44,44,1,0,0,7.4602323,7.4602323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,39.32,28.21,5,1,1,0,0,6,9,4,0,650.5,-19729.688,-50049.902,205940.13,155782.56,0,0,2556.9795 +198,236,419,418,-9,-9,1,1,25,0,0,0,2,2,-9,0,1,8.2407045,8.220602,0,7,3,37.350838,0,-9,-9,2021,18,6,40,40,1,6,0,7.6196394,7.6196394,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.32,28.21,45.98,56.3,6.666666666666667,1,1,0,0,7,9,4,0,650.5,-19729.688,-50049.902,205940.13,155782.56,0,0,2556.9795 +199,237,420,421,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,5.6904817,5.7753754,0,6,-4,-95.363274,0,2,2,2021,8,0,4,0,1,0,0,7.4325991,7.4325991,0,0,0,0,0,0,0,0,0,0,0,.5784086,0,47.15,50.19,58.2,54.53,8.333333333333334,1,1,0,0,1,12,4,1,1973.5,299259,119718.5,58233.824,0,7343.3525,0,1477.0173 +199,237,421,420,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.3373652,8.3412027,0,30,4,46.637627,0,2,2,2021,11,0,60,55,1,0,0,6.447608,6.447608,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.2,54.53,47.15,50.19,10,1,1,0,0,5,12,4,1,1973.5,299259,119718.5,58233.824,0,7343.3525,0,1477.0173 +200,238,422,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.9984579,8.6676264,0,0,0,-1075.0782,0,-9,-9,2021,30,12,45,38,1,12,0,18.368652,18.368652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.51,64.23,-9,-9,3.333333333333333,1,1,0,0,10,7,5,0,515,28489.697,168270.73,0,0,0,0,3086.3169 +201,239,423,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,7.7412639,7.8811688,0,0,-953.99286,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4098268,8.28936,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,1030,3211901.5,2431344,810008.38,0,0,0,1228.5426 +201,240,424,-9,423,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-927.92358,-9,2,-9,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.615454,0,25.1,65.76000000000001,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,933,7570.7715,0,0,0,0,0,264.00354 +202,241,425,426,-9,-9,1,0,57,1,1,0,2,2,-9,0,3,8.5830584,8.4127312,0,17,-7,11.816994,0,3,2,2021,12,0,46,48,1,0,0,12.315422,12.315422,0,0,0,0,0,0,0,0,1,0,1,2.4446487,0,42.04,56.46,45.48,21.54,5,1,1,0,0,14,5,4,1,415.5,1212727.3,899359.88,330550,0,0,632.51996,2736.4927 +202,241,426,425,-9,-9,1,1,64,1,1,0,2,2,-9,0,1,0,6.7221589,6.8599792,18,7,87.476067,0,3,3,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,6.3549109,45.48,21.54,42.04,56.46,8.333333333333334,1,1,0,0,10,5,4,1,415.5,1212727.3,899359.88,330550,0,0,632.51996,2736.4927 +202,242,427,-9,428,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.4695,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,2,1,504,126630.48,41375.941,0,0,0,0,441.87488 +202,242,428,-9,425,426,1,0,23,1,1,0,2,2,-9,0,5,5.3929586,5.3436761,0,0,0,-1108.5033,0,2,2,2021,10,1,10,15,1,1,1,2.2088385,2.2088385,0,0,0,0,0,0,0,0,1,0,1,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,504,126630.48,41375.941,0,0,0,0,441.87488 +203,243,429,430,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,8.569169,8.4790211,0,39,2,-37.483334,0,2,2,2021,10,0,50,44,1,1,0,12.867198,12.867198,0,0,0,0,0,0,0,0,1,1,0,4.051753,0,51,48,51.41,56.15,7,1,1,0,0,13,8,5,1,188,2786398.5,1109695.5,1108308.4,0,0,0,4375.3906 +203,243,430,429,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.9913373,6.9231129,39,-2,-93.104897,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50990397,6.8896217,51.41,56.15,51,48,6.666666666666667,1,1,0,0,6,8,5,1,188,2786398.5,1109695.5,1108308.4,0,0,0,4375.3906 +204,244,431,432,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,8.2036266,8.0056801,4,-7,80.525459,0,3,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3614187,28.92,39.86,61.78,21.72,5,1,1,0,0,3,2,3,1,1509,1242303.3,875766.5,111480.09,0,0,0,2002.9202 +204,244,432,431,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,4,7,-56.757092,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,125.57046,125.92445,1199.1262,0,1,1,0,0,0,61.78,21.72,28.92,39.86,5,1,1,0,1,6,2,3,1,1509,1242303.3,875766.5,111480.09,0,0,0,2002.9202 +205,245,433,435,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.7175312,8.3403807,0,11,7,-9.224967,0,-9,-9,2021,8,1,30,30,1,1,0,16.072479,16.072479,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.91,46.15,43.03,53.23,8.333333333333334,1,1,0,0,12,4,4,1,456,1188230.5,803307.06,237690.31,0,0,0,3538.6409 +205,245,434,-9,435,433,1,0,16,0,1,1,2,0,-9,0,3,0,3.4695528,3.6871104,0,0,-980.80475,-9,1,2,2021,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5374618,0,22.41,55.83,-9,-9,3.333333333333333,1,1,0,1,0,4,4,1,456,1188230.5,803307.06,237690.31,0,0,0,3538.6409 +205,245,435,433,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.0667543,7.8529973,0,30,-7,-108.47939,0,2,2,2021,19,7,20,18,1,7,0,17.397318,17.397318,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.03,53.23,57.91,46.15,8.333333333333334,1,1,0,0,5,4,4,1,456,1188230.5,803307.06,237690.31,0,0,0,3538.6409 +206,246,436,-9,437,439,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.42523,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,437,439,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,0,0,0,14,0,15.045611,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9355333,0,35.74,45.58,47.05,53.05,8.333333333333334,2,3,0,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,438,-9,437,439,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-903.46234,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,439,437,-9,-9,1,1,33,1,3,0,3,3,-9,0,5,8.1483736,7.915462,0,14,0,55.390656,0,3,2,2021,12,1,43,43,1,1,0,8.8242626,8.8242626,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.05,53.05,35.74,45.58,10,2,3,0,0,7,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +206,246,440,-9,437,439,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.24976,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,1662.4,174570.95,62441.59,207067.09,38715.039,-608.83148,0,2517.4651 +207,247,441,443,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.8549318,8.6180534,0,7,4,-82.405174,0,3,3,2021,10,0,36,36,1,1,0,20.157848,20.157848,.05,.05,0,0,0,0,0,0,1,1,0,4.9265041,0,51,56,38.02,58.85,7,1,1,0,0,1,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,442,-9,443,441,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1123.3914,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,443,441,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,5.4446421,5.8277745,0,7,-4,-12.514158,0,2,2,2021,14,2,6,0,1,2,0,4.8360562,4.8360562,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.02,58.85,51,56,3.333333333333333,1,1,0,0,6,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,444,-9,443,441,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.17773,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +207,247,445,-9,443,441,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.163,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,640.79999,183501.77,48504.496,0,0,3017.7668,0,2962.8706 +208,248,446,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1142.1635,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.51,41.63,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,703,152247.17,0,0,0,0,0,989.07184 +209,249,447,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.1010442,7.033987,0,0,0,-1027.1427,0,2,2,2021,13,1,32,32,1,1,0,7.0905066,7.0905066,0,0,0,0,0,0,0,0,1,0,1,0,0,29.38,55.98,-9,-9,1.666666666666667,1,1,0,0,10,2,3,1,1335,36232.719,186974.02,0,0,0,0,800.67566 +209,250,448,-9,447,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1110.424,0,3,-9,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.97,46.41,-9,-9,10,1,1,1,0,0,2,1,1,257,61082.945,0,0,0,0,0,467.77286 +210,251,449,450,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.4678488,5.4614558,40,1,38.432644,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3876381,54.37,54.8,54.9,54.53,8.333333333333334,3,4,0,0,0,8,2,1,1637.5,443977.84,96003.844,221725.56,0,0,0,1297.8193 +210,251,450,449,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,41,-1,66.602989,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,54.53,54.37,54.8,8.333333333333334,1,1,0,0,0,8,2,1,1637.5,443977.84,96003.844,221725.56,0,0,0,1297.8193 +211,252,451,453,-9,-9,1,0,49,0,2,0,1,1,-9,0,5,9.0850687,9.0337906,0,19,3,-71.784576,0,3,3,2021,7,0,38,40,1,0,0,37.493317,37.493317,0,0,0,0,0,0,0,0,0,0,0,5.4157553,0,58.62,52.91,39.76,61.21,8.333333333333334,1,1,0,0,7,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +211,252,452,-9,451,453,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1034.4237,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +211,252,453,451,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.4539442,9.6295662,0,19,-3,-30.464062,0,1,1,2021,16,6,38,42,1,6,0,47.496136,47.496136,.05,.05,0,0,0,0,0,0,0,0,0,6.7904229,0,39.76,61.21,58.62,52.91,8.333333333333334,1,1,0,0,12,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +211,252,454,-9,451,453,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.36938,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,1024.5,1844325.8,272970.94,769116.06,282126.94,0,0,9114.3555 +212,253,455,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.7655253,7.5272803,0,0,0,-884.87329,0,3,3,2021,7,0,39,23,1,0,0,6.6556826,6.6556826,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,10,2,3,1,717,292892.66,252464.84,47977.574,0,0,1596.9672,1542.8251 +213,254,456,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.9645038,8.0259943,0,0,0,-1004.5349,0,1,2,2021,33,12,48,48,1,12,0,7.5928674,7.5928674,0,0,0,0,0,0,0,0,0,0,0,0,0,13.83,57.23,-9,-9,1.666666666666667,1,1,0,0,7,10,4,0,345,75083.984,0,0,0,0,0,895.07892 +214,255,457,-9,459,458,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-995.95203,-9,1,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,0,4,4,1,381.66666,82508.125,52900.078,99113.422,44613.18,9065.5957,0,3456.8662 +214,255,458,459,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.0956841,8.2526798,0,24,0,-17.417803,0,1,2,2021,9,0,37,38,1,0,0,8.0741558,8.0741558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.33,39.49,38.76,37.49,8.333333333333334,1,1,0,0,9,4,4,1,381.66666,82508.125,52900.078,99113.422,44613.18,9065.5957,0,3456.8662 +214,255,459,458,-9,-9,1,0,43,0,1,0,1,1,-9,0,3,8.4153023,8.3752012,0,24,0,-24.288857,0,2,3,2021,16,5,45,53,1,5,0,9.9779234,9.9779234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.76,37.49,58.33,39.49,8.333333333333334,1,1,0,0,8,4,4,1,381.66666,82508.125,52900.078,99113.422,44613.18,9065.5957,0,3456.8662 +215,256,460,461,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,9.0849714,9.322794,0,4,0,175.28096,0,-9,-9,2021,16,6,40,40,1,6,0,29.056576,29.056576,.05,.05,0,0,0,0,0,0,1,1,0,1.5487102,0,45.66,50.79,47.26,55.3,8.333333333333334,2,3,0,0,5,7,5,1,651,308788.84,98318.422,513738.94,384336.47,2559.8269,0,7403.458 +215,256,461,460,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,9.67628,9.6559067,0,4,0,-169.726,-9,-9,-9,2021,10,3,50,0,1,3,0,31.655426,31.655426,.05,.05,0,0,0,0,0,0,1,1,0,2.5594437,0,47.26,55.3,45.66,50.79,6.666666666666667,2,3,0,0,6,7,5,1,651,308788.84,98318.422,513738.94,384336.47,2559.8269,0,7403.458 +215,256,462,-9,460,461,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.2417,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,7,5,1,651,308788.84,98318.422,513738.94,384336.47,2559.8269,0,7403.458 +216,257,463,-9,464,-9,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-974.72321,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,7,2,0,558,109471.55,0,0,0,863.82581,0,1381.713 +216,257,464,-9,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,6.4364376,6.485436,0,0,-886.29321,0,2,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2756352,0,13.49,45.49,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,558,109471.55,0,0,0,863.82581,0,1381.713 +216,257,465,-9,464,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1100.067,-9,2,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.22,58.43,-9,-9,5,1,1,0,0,1,7,2,0,558,109471.55,0,0,0,863.82581,0,1381.713 +217,258,466,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.4976482,8.5719852,0,0,0,-1031.9976,0,2,1,2021,32,12,58,63,1,12,0,10.613643,10.613643,0,0,0,0,0,0,0,0,0,0,0,0,0,22.48,66.73999999999999,-9,-9,3.333333333333333,1,1,0,0,4,8,5,0,168,122783.55,57762.914,0,0,0,0,1019.3575 +217,259,467,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.190547,8.3438892,0,0,0,-1074.986,0,-9,-9,2021,4,0,42,45,1,0,0,8.9267368,8.9267368,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,10,1,1,0,0,2,8,4,0,569,-37306.59,-41362.723,0,0,0,0,1801.0857 +218,260,468,469,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.7893124,6.782023,49,-1,-52.173496,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3122628,6.8958597,48.12,42.71,57.16,56.15,6.666666666666667,1,1,0,0,3,8,2,1,311.5,773257.69,525760.06,130168.38,0,0,0,1146.3447 +218,260,469,468,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.8534451,5.8807802,49,1,12.705168,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8728533,5.7551746,57.16,56.15,48.12,42.71,8.333333333333334,1,1,0,0,0,8,2,1,311.5,773257.69,525760.06,130168.38,0,0,0,1146.3447 +219,261,470,471,-9,-9,1,0,59,0,0,0,3,3,-9,1,3,0,0,0,41,-8,0,0,-9,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.62,41.93,49.31,30.64,8.333333333333334,1,1,0,0,0,4,1,1,836.5,36861.789,0,68366.844,27002.65,0,3170.7412,1752.105 +219,261,471,470,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,40,8,0,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,23.278692,0,0,1,1,0,0,0,49.31,30.64,55.62,41.93,6.666666666666667,2,3,0,0,7,4,1,1,836.5,36861.789,0,68366.844,27002.65,0,3170.7412,1752.105 +219,262,472,473,470,471,1,1,25,0,0,0,1,1,-9,0,4,8.286809,8.1855335,0,1,0,-148.32748,0,3,2,2021,13,3,10,43,1,3,0,34.49218,34.49218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.38,63.46,46.55,58.3,6.666666666666667,4,2,0,0,2,4,4,1,1366,124334.34,102526.73,0,0,0,125.54309,2485.1777 +219,262,473,472,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.8571763,8.0811234,0,1,0,93.366928,-9,-9,-9,2021,9,0,37,0,1,0,0,8.4681215,8.4681215,.05,.05,0,0,0,0,0,0,1,1,0,3.5598435,0,46.55,58.3,35.38,63.46,6.666666666666667,4,2,0,1,1,4,4,1,1366,124334.34,102526.73,0,0,0,125.54309,2485.1777 +220,263,474,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.2026167,8.5780897,4.8731837,0,0,-882.25879,0,2,2,2021,6,0,37,37,1,0,0,13.187054,13.187054,.05,.05,0,0,0,0,0,0,1,1,0,5.2447395,5.5676794,55.81,36.7,-9,-9,5,1,1,0,0,9,6,4,1,397,510314.84,360996.72,89916.281,50429.934,0,0,1352.9354 +221,264,475,477,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,8.4199295,8.54356,0,7,-2,-120.08754,0,2,2,2021,9,0,38,41,1,0,0,14.811343,14.811343,0,0,0,0,0,0,0,0,1,1,0,0,0,48.71,61.53,45.56,60.26,8.333333333333334,1,1,0,0,8,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +221,264,476,-9,475,477,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.15692,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +221,264,477,475,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.4561882,8.2802401,0,7,2,26.688837,0,2,2,2021,12,2,37,40,1,2,0,16.482992,16.482992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,48.71,61.53,3.333333333333333,1,1,0,0,9,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +221,264,478,-9,475,477,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.7779,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,438.25,542274.5,450296.81,220758.13,84558.703,6836.5605,0,3819.5635 +222,265,479,480,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,0,0,33,2,25.949686,0,2,2,2021,6,0,0,12,3,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.39,56.71,48.28,60.18,10,1,1,0,0,13,9,2,1,607.5,576357.88,251984.69,234374.69,0,0,0,1179.209 +222,265,480,479,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.4885592,7.1870317,34,-2,-8.2512445,-9,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.3112359,48.28,60.18,62.39,56.71,8.333333333333334,1,1,0,0,11,9,2,1,607.5,576357.88,251984.69,234374.69,0,0,0,1179.209 +223,266,481,483,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.4573975,7.3469558,0,8,-8,-30.013048,0,2,2,2021,12,0,23,26,1,0,0,8.0378857,8.0378857,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,57.33,53.46,6.666666666666667,1,1,0,0,12,7,5,1,1537.3334,588944.19,-13863.806,849985.75,228049.8,0,1384.2244,3682.585 +223,266,482,-9,481,483,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.85132,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,1537.3334,588944.19,-13863.806,849985.75,228049.8,0,1384.2244,3682.585 +223,266,483,481,-9,-9,1,1,39,0,1,0,1,1,-9,0,3,8.9360695,8.5764217,0,8,8,-48.72176,0,-9,-9,2021,8,0,44,45,1,0,0,18.183371,18.183371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,40.65,57.36,8.333333333333334,1,1,0,0,6,7,5,1,1537.3334,588944.19,-13863.806,849985.75,228049.8,0,1384.2244,3682.585 +224,267,484,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9774499,8.0267029,0,0,0,-932.30762,0,2,2,2021,11,0,50,82,1,0,0,7.2525053,7.2525053,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.79,47.98,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,188,82729.891,124258.89,0,0,0,0,791.39532 +225,268,485,-9,486,-9,1,0,24,0,0,0,1,1,-9,0,5,7.92873,8.0791349,0,0,0,-957.90063,0,2,2,2021,7,0,60,30,1,0,1,6.2756867,6.2756867,.05,.05,0,0,0,0,0,0,0,0,0,2.9990733,0,52.32,57.18,-9,-9,10,1,1,0,0,5,7,4,1,666,-41695.371,13833.212,0,0,27312.744,0,1006.6237 +225,269,486,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.6417356,7.4357991,0,0,0,-978.06488,0,3,3,2021,21,9,30,30,1,9,0,7.3953605,7.3953605,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.8,50.31,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,206,155821.16,210337.22,0,0,0,0,1358.011 +226,270,487,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,5,7.8156366,7.7432737,0,0,0,-983.99756,0,3,3,2021,12,0,37,38,1,0,0,7.7859974,7.7859974,0,0,0,0,0,0,0,0,0,0,0,0,0,62,44.54,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,1005,-40236.246,0,0,0,0,4170.6328,883.41968 +227,271,488,489,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,9.5229445,9.9367676,7.8207369,17,10,-95.294769,0,3,3,2021,11,1,30,25,1,1,0,64.498238,64.498238,0,0,.05,0,0,0,0,0,1,1,0,7.1053543,7.7451534,44.58,51.2,41.76,57.81,1.666666666666667,1,1,0,0,11,2,5,1,357,1833604.3,665432.94,623497,0,6472.3403,0,9319.2969 +227,271,489,488,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,7.6174364,7.8922105,20,-10,-19.140352,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6867514,7.8139682,41.76,57.81,44.58,51.2,6.666666666666667,1,1,0,0,5,2,5,1,357,1833604.3,665432.94,623497,0,6472.3403,0,9319.2969 +228,272,490,491,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.2865129,7.446569,0,26,2,-132.78008,0,2,3,2021,17,5,21,18,1,5,0,9.9460535,9.9460535,.05,.05,0,0,0,0,0,0,0,0,0,4.5752797,0,35.11,50.17,57.16,56.15,5,1,1,0,0,11,2,5,1,2089.5,2203856.5,1935618.5,164276.41,74431.922,2174.9629,1327.5648,3427.1235 +228,272,491,490,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.7961693,9.2197475,0,25,-2,-22.303862,0,2,2,2021,7,0,42,44,1,0,0,19.191227,19.191227,.05,.05,0,0,0,0,0,0,0,0,0,3.1294925,0,57.16,56.15,35.11,50.17,8.333333333333334,1,1,0,0,12,2,5,1,2089.5,2203856.5,1935618.5,164276.41,74431.922,2174.9629,1327.5648,3427.1235 +229,273,492,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,1,0,7.3195381,7.5486965,0,0,-1073.4922,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3472085,7.3101859,46.15,14.39,-9,-9,10,1,1,0,0,0,4,3,1,679,1024971.4,206054.44,495344.53,0,0,0,1235.0712 +230,274,493,494,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.048542,7.9669671,0,20,4,50.314125,0,2,2,2021,4,0,38,7,1,0,0,12.32055,12.32055,.05,.05,.05,0,0,0,0,0,0,0,0,7.8750682,0,55.92,50.07,53.3,55.06,6.666666666666667,3,4,0,0,13,8,5,1,240,874087.25,62544.047,762617.5,0,4556.5933,0,6460.3926 +230,274,494,493,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7940559,9.0180626,0,20,-4,-26.659788,0,2,1,2021,8,0,36,36,1,0,0,15.1214,15.1214,0,0,0,0,0,0,0,0,0,0,0,8.4816742,0,53.3,55.06,55.92,50.07,8.333333333333334,3,4,0,0,13,8,5,1,240,874087.25,62544.047,762617.5,0,4556.5933,0,6460.3926 +231,275,495,496,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,12,7,0,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.94,52.2,39.39,37.66,5,2,3,1,0,0,4,1,0,398,27608.008,0,0,0,0,0,477.88873 +231,275,496,495,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,41,-7,0,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.39,37.66,41.94,52.2,8.333333333333334,2,3,1,1,0,4,1,0,398,27608.008,0,0,0,0,0,477.88873 +231,276,497,-9,496,495,1,0,33,0,0,0,2,2,-9,1,4,0,0,0,0,0,-985.79663,0,3,2,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.41,46.03,-9,-9,8.333333333333334,2,3,1,0,0,4,1,0,653,68357.766,0,0,0,0,0,532.19812 +231,277,498,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.4587288,7.4666915,0,0,0,-1043.5726,0,-9,-9,2021,12,0,35,28,1,0,0,5.4316282,5.4316282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.92,50.59,-9,-9,5,2,3,0,0,4,4,3,0,509,-92048.344,101444.56,0,0,42800.84,0,501.61246 +231,278,499,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.8734279,7.6803293,0,0,0,-1012.6921,0,-9,-9,2021,6,0,38,38,1,0,0,7.7472267,7.7472267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,10,2,3,0,0,4,4,4,0,261,75659.805,35974.828,86978.828,71367.016,21.961908,0,1265.3429 +231,279,500,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,2,0,0,0,0,0,-1097.7799,-9,-9,-9,2021,27,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4790969,0,19.12,52.53,-9,-9,1.666666666666667,2,3,0,0,0,4,1,0,443,0,0,0,0,0,0,590.02917 +231,280,501,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.67719,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,2,3,1,0,1,4,1,0,393,0,0,0,0,0,0,0 +231,281,502,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.8508849,7.5291176,0,0,0,-1020.4379,0,-9,-9,2021,10,0,38,38,1,0,0,8.2635088,8.2635088,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.98,56.3,-9,-9,6.666666666666667,2,3,0,0,7,4,3,0,408,-101527.87,114769.34,0,0,0,0,1365.9307 +232,282,503,-9,509,508,1,0,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-936.85962,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,504,-9,509,508,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1015.8577,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,505,-9,509,508,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1106.4486,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,506,-9,509,508,1,1,10,0,5,1,3,0,-9,0,3,0,0,0,0,0,-1121.8324,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,507,-9,509,508,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1059.3523,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,508,509,-9,-9,1,1,50,0,5,0,3,3,-9,0,2,7.7209864,7.2775002,0,6,5,-16.159601,0,-9,-9,2021,12,0,86,40,1,0,0,1.8062913,1.8062913,0,0,0,0,0,0,0,0,1,1,0,0,0,46.27,34.58,43.57,48.01,6.666666666666667,2,3,0,0,11,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +232,282,509,508,-9,-9,1,0,45,0,5,0,3,3,-9,0,3,0,0,0,13,-5,62.396854,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,48.01,46.27,34.58,6.666666666666667,2,3,0,0,1,6,2,1,604.71429,241432.13,0,175745.73,64281.352,0,0,1539.0826 +233,283,510,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,8.1446896,8.2859917,0,0,-855.78558,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4153843,8.155468,52.08,40.47,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,2017,1643761.4,609559.31,795511.44,0,0,0,2542.6323 +234,284,511,512,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.2317667,7.5987639,0,14,-2,-36.544186,0,2,2,2021,9,0,26,26,1,0,0,11.782279,11.782279,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,416.33334,396329.78,301729.53,134722.95,0,2100.0818,0,5184.5264 +234,284,512,511,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,9.2355661,9.2585735,0,14,2,33.446743,0,2,1,2021,8,0,44,42,1,0,0,21.805218,21.805218,.05,.05,.05,0,0,0,0,0,1,1,0,2.9985344,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,5,5,1,416.33334,396329.78,301729.53,134722.95,0,2100.0818,0,5184.5264 +234,284,513,-9,511,512,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1132.1008,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,416.33334,396329.78,301729.53,134722.95,0,2100.0818,0,5184.5264 +235,285,514,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.8362741,5.5249429,0,0,-1072.4648,-9,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2125401,5.8460288,53.07,38.72,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,693,-17395.984,151398.53,0,0,0,0,686.82214 +236,286,515,517,-9,-9,1,1,23,1,1,0,2,2,-9,0,4,7.1103678,7.1241345,0,1,1,-105.57957,-9,-9,-9,2021,8,1,16,0,1,1,0,5.6673536,5.6673536,0,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,58.33,39.49,10,1,1,0,0,6,4,2,0,316.66666,-11006.91,0,0,0,8895.5527,0,1318.2301 +236,286,516,-9,517,515,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1128.1595,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,316.66666,-11006.91,0,0,0,8895.5527,0,1318.2301 +236,286,517,515,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,0,0,0,1,-1,93.517761,-9,-9,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,39.49,52.43,55.57,5,1,1,0,1,0,4,2,0,316.66666,-11006.91,0,0,0,8895.5527,0,1318.2301 +237,287,518,-9,520,519,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1024.8702,-9,2,3,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,288,84597.289,32680.961,0,0,3069.1101,859.95911,2210.6719 +237,287,519,520,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,7.1004958,7.3437824,0,20,5,-68.073997,0,3,3,2021,12,0,20,0,1,0,0,8.3667097,8.3667097,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,51.02,52.22,49.63,54.22,6.666666666666667,1,1,0,0,10,11,3,1,288,84597.289,32680.961,0,0,3069.1101,859.95911,2210.6719 +237,287,520,519,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.1068525,8.0167961,0,20,-5,37.071434,0,2,3,2021,11,0,36,36,1,0,0,8.4718103,8.4718103,0,0,0,0,0,0,0,14.5,0,0,0,1.8864163,0,49.63,54.22,51.02,52.22,6.666666666666667,1,1,0,0,10,11,3,1,288,84597.289,32680.961,0,0,3069.1101,859.95911,2210.6719 +237,288,521,-9,520,519,1,1,23,0,1,0,2,2,-9,0,4,8.1764956,7.690208,0,0,0,-879.18903,0,2,3,2021,12,0,108,32,1,0,1,2.8358636,2.8358636,.05,.05,0,0,0,0,0,2,0,0,0,4.3542113,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,259,214789.5,-135486.81,0,0,5841.1904,0,1159.2554 +238,289,522,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,6.2409267,5.8330345,0,0,-954.55865,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,3.2314377,0,0,1,1,0,0,6.1571188,36.37,23,-9,-9,1.666666666666667,1,1,0,1,0,1,2,0,73,161987.88,60199.367,80402.922,0,0,0,1698.871 +239,290,523,-9,-9,-9,1,1,79,0,3,0,3,3,-9,0,3,0,0,0,0,0,-982.52289,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,5,13,1,1,326,115276.34,0,138373.48,0,0,0,274.66977 +239,291,524,525,-9,-9,1,0,41,0,3,0,3,3,-9,0,5,7.3318973,7.3695784,0,14,-4,-39.704346,0,3,3,2021,6,0,30,0,1,0,0,6.4015021,6.4015021,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,8.333333333333334,1,1,0,0,6,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,525,524,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,0,0,0,14,4,-148.58037,0,3,3,2021,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,8.333333333333334,1,1,1,0,8,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,526,-9,524,525,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1206.0317,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,527,-9,524,525,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.7126,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +239,291,528,-9,524,525,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6688,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,1252.8,3756.353,0,0,0,0,0,2338.0205 +240,292,529,530,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.9059334,6.6750479,50,0,36.875305,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4270668,7.0699215,41,53.03,56.57,57.78,8.333333333333334,1,1,0,0,4,2,3,1,682,562238.38,250563.73,107461.03,0,0,0,3602.2327 +240,292,530,529,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.9693255,7.0035634,50,0,85.035179,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4175506,6.9874854,56.57,57.78,41,53.03,10,1,1,0,0,7,2,3,1,682,562238.38,250563.73,107461.03,0,0,0,3602.2327 +241,293,531,532,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,8.1291552,8.1253605,0,10,-1,164.9024,0,-9,-9,2021,13,1,40,39,1,1,0,11.777061,11.777061,0,0,0,0,0,0,0,2,0,0,0,.98022956,0,44.31,47.69,46.88,46.3,6.666666666666667,1,1,0,0,13,1,4,1,997,123146.81,-4158.6528,0,0,4979.5913,6596.1035,2706.5679 +241,293,532,531,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.8392777,8.0259466,0,10,1,-53.323875,0,3,2,2021,13,1,38,38,1,1,0,9.9253597,9.9253597,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.88,46.3,44.31,47.69,3.333333333333333,1,1,0,0,15,1,4,1,997,123146.81,-4158.6528,0,0,4979.5913,6596.1035,2706.5679 +242,294,533,534,-9,536,1,1,33,1,1,0,2,2,-9,1,3,0,0,0,3,5,0,0,-9,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.26,47.71,55.73,45.75,5,2,3,0,0,0,8,1,1,652.66669,66782.789,0,0,0,0,0,2197.0981 +242,294,534,533,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,0,0,0,3,-5,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,5.4054651,0,55.73,45.75,52.26,47.71,6.666666666666667,2,3,1,0,0,8,1,1,652.66669,66782.789,0,0,0,0,0,2197.0981 +242,294,535,-9,534,533,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.13934,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,1,652.66669,66782.789,0,0,0,0,0,2197.0981 +242,295,536,-9,-9,-9,1,1,59,1,1,0,2,2,-9,0,1,8.8451214,8.9452677,0,0,0,-1123.0044,0,-9,-9,2021,28,11,37,37,1,11,0,21.880182,21.880182,.05,.05,0,0,0,0,0,0,1,0,1,0,0,16.04,23.99,-9,-9,0,2,3,0,0,14,8,5,1,343,198753.23,-28206.535,104636.41,38281.727,0,0,2354.0969 +243,296,537,538,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.5643053,8.4754534,48,1,144.95584,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.125246,8.2302561,57.16,56.15,57.33,53.46,10,1,1,0,0,0,5,4,1,666,975439.56,556709.5,348461.5,0,0,0,4489.0645 +243,296,538,537,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,49,-1,24.078417,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9175811,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,666,975439.56,556709.5,348461.5,0,0,0,4489.0645 +243,297,539,-9,538,537,1,1,43,0,0,0,2,2,-9,0,4,8.5412035,8.0540428,0,0,0,-1037.3219,0,2,2,2021,9,0,7,6,1,0,0,72.577271,72.577271,.05,.05,0,0,0,0,0,0,1,1,0,1.2505618,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,2002,265672.44,17904.34,0,0,-383.75247,0,1233.187 +244,298,540,541,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,10,1,109.75595,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.3998964,1.3831997,21.753927,0,1,1,0,0,0,40.73,47.26,57.09,46.7,8.333333333333334,1,1,0,0,0,12,2,1,1457,481221.53,206458.19,222583.42,0,0,0,2349.4238 +244,298,541,540,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.2817664,7.1148281,10,-1,-54.697083,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2302079,57.09,46.7,40.73,47.26,5,1,1,0,0,1,12,2,1,1457,481221.53,206458.19,222583.42,0,0,0,2349.4238 +245,299,542,-9,543,544,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-971.22327,-9,1,1,2021,26,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.24,67.91,-9,-9,3.333333333333333,1,1,0,0,0,9,5,1,848,1161584,533603.56,763618.88,147453.23,4007.104,0,11164.75 +245,299,543,544,-9,-9,1,0,51,0,3,0,1,1,-9,0,5,0,0,0,29,-1,-122.39033,0,2,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,7.1287403,0,39.71,56.05,45.48,40.85,6.666666666666667,1,1,0,0,3,9,5,1,848,1161584,533603.56,763618.88,147453.23,4007.104,0,11164.75 +245,299,544,543,-9,-9,1,1,52,0,3,0,1,1,-9,0,4,9.7271519,9.4479837,0,29,1,-8.5192709,0,2,3,2021,11,1,50,60,1,1,0,34.556648,34.556648,.05,.05,.05,0,0,0,0,0,0,0,0,4.7193012,0,45.48,40.85,39.71,56.05,6.666666666666667,1,1,0,0,10,9,5,1,848,1161584,533603.56,763618.88,147453.23,4007.104,0,11164.75 +245,300,545,-9,543,544,1,0,20,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1055.3422,1,1,1,2021,20,7,0,20,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6218191,0,23.18,61.28,-9,-9,5,1,1,0,1,1,9,1,1,449,-204493.7,0,0,0,0,0,987.92188 +246,301,546,-9,547,548,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.9134,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +246,301,547,548,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,11,-1,16.297405,0,1,1,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.2578096,0,50.34,56.4,57.16,56.15,8.333333333333334,2,3,0,0,2,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +246,301,548,547,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.8027372,9.6285782,0,11,1,.84368402,0,2,1,2021,11,0,45,85,1,0,0,38.662247,38.662247,.05,.05,0,0,0,0,0,0,0,0,0,5.6194725,0,57.16,56.15,50.34,56.4,6.666666666666667,2,3,0,0,8,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +246,301,549,-9,547,548,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5118,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,9,5,1,738.75,680369.25,494101.5,412409.28,230252.72,16104.379,3093.7581,4829.4663 +247,302,550,551,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,32,5,0,-9,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.20402367,0,46.32,45.41,52.26,47.71,6.666666666666667,2,3,0,0,2,8,1,1,591,63074.887,0,0,0,0,0,514.5636 +247,302,551,550,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,32,-5,0,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.26,47.71,46.32,45.41,6.666666666666667,2,3,0,0,0,8,1,1,591,63074.887,0,0,0,0,0,514.5636 +247,303,552,-9,551,550,1,1,27,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1003.2612,-9,3,3,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,5,2,3,1,0,0,8,1,1,313,87091.586,0,0,0,25985.902,0,0 +247,304,553,-9,551,550,1,0,25,0,0,0,2,2,-9,0,3,7.6167712,7.5408225,0,0,0,-1069.0856,-9,3,3,2021,7,0,37,0,1,0,1,7.610496,7.610496,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,2,3,0,0,3,8,3,1,188,46454,-42752.824,0,0,0,0,308.48444 +247,305,554,-9,551,550,1,0,24,0,0,0,2,2,-9,0,3,7.301475,7.3182216,0,0,0,-861.64087,-9,3,3,2021,10,0,24,0,1,0,1,7.1582294,7.1582294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.34,48.53,-9,-9,8.333333333333334,2,3,0,0,2,8,3,1,193,46085.578,21284.992,0,0,0,0,532.56482 +248,306,555,557,-9,-9,1,0,45,0,1,0,3,3,-9,1,2,0,0,0,17,-4,0,0,3,3,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.02,36.43,53,55,0,1,1,0,0,0,6,2,0,521,-76814.711,0,0,0,4556.9922,0,2417.2441 +248,306,556,-9,555,557,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1082.6245,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.55,57.37,-9,-9,5,1,1,0,0,0,6,2,0,521,-76814.711,0,0,0,4556.9922,0,2417.2441 +248,306,557,555,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,0,0,0,17,4,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,28.02,36.43,8,1,1,1,0,0,6,2,0,521,-76814.711,0,0,0,4556.9922,0,2417.2441 +248,307,558,-9,555,557,1,1,21,0,1,0,3,3,-9,1,5,0,0,0,0,0,-982.28613,0,3,3,2021,14,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.092798553,0,35.23,47.8,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,2330,-233908.67,0,0,0,0,0,1458.7628 +249,308,559,560,-9,-9,1,0,26,0,0,0,1,1,-9,0,1,8.2577991,8.6132641,0,1,-3,1.2574894,0,2,2,2021,23,11,80,55,1,11,0,5.6810627,5.6810627,.05,.05,0,0,0,0,0,0,0,0,0,.77051967,0,30.68,48.94,60.52,53.2,3.333333333333333,1,1,0,0,9,4,4,0,1110.5,47636.492,88136.016,166136.42,101726.88,20146.539,0,2397.8799 +249,308,560,559,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,7.6198506,7.540894,0,1,3,-59.331085,-9,-9,-9,2021,8,0,55,0,1,0,0,4.5703788,4.5703788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,30.68,48.94,8.333333333333334,1,1,0,0,2,4,4,0,1110.5,47636.492,88136.016,166136.42,101726.88,20146.539,0,2397.8799 +250,309,561,562,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.4111605,8.04107,25,8,35.014633,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.5154972,8.3689976,50.43,53.69,51,54,8.333333333333334,1,1,0,0,3,7,4,1,611.5,2123343,224217.78,914919.69,0,0,0,3123.6689 +250,309,562,561,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8158898,8.284936,0,25,-8,40.090786,0,3,-9,2021,10,0,40,35,1,1,0,7.6204281,7.6204281,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,50.43,53.69,8,1,1,0,0,1,7,4,1,611.5,2123343,224217.78,914919.69,0,0,0,3123.6689 +250,310,563,-9,562,561,1,0,25,0,0,0,2,2,-9,0,4,7.9843788,7.8955498,0,0,0,-1002.8513,0,2,2,2021,11,0,40,35,1,2,1,7.7983351,7.7983351,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,7,4,1,209,118920.14,-73179.188,0,0,1445.2428,0,2132.0544 +250,311,564,-9,562,561,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1005.0895,-9,2,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,817,-124785.24,0,0,0,0,0,173.52748 +251,312,565,566,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,52,0,-54.978531,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.11,40.82,53.24,30.15,8.333333333333334,1,1,0,0,0,12,3,1,1451.5,1116375.5,672405.38,258425.41,0,0,0,2139.417 +251,312,566,565,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,8.1360636,8.1287708,52,0,31.019503,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2362843,53.24,30.15,41.11,40.82,3.333333333333333,1,1,0,0,0,12,3,1,1451.5,1116375.5,672405.38,258425.41,0,0,0,2139.417 +252,313,567,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-945.01801,0,2,2,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.08,27.24,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,585,97908.195,0,0,0,4445.1855,0,953.84637 +253,314,568,569,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.7616172,8.0674057,11,-3,-4.4921784,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8997841,0,46.23,27.45,51,48,5,1,1,0,0,0,13,4,1,355.5,1420144.5,1034332,347928.38,0,1062.4879,0,3617.3684 +253,314,569,568,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.78227,7.5850501,11,3,64.373589,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8718972,7.7371101,51,48,46.23,27.45,7,1,1,0,0,0,13,4,1,355.5,1420144.5,1034332,347928.38,0,1062.4879,0,3617.3684 +254,315,570,571,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,9.122592,9.159029,0,4,13,-13.196943,0,2,2,2021,7,0,39,50,1,0,0,21.403946,21.403946,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.24,50.75,8.333333333333334,1,1,0,0,7,7,5,0,704,336574.25,0,302813.44,0,1395.6895,0,4482.6543 +254,315,571,570,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.5656843,8.4725618,0,4,-13,57.476532,0,-9,-9,2021,11,1,43,48,1,1,0,11.682552,11.682552,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,57.16,56.15,8.333333333333334,1,1,0,0,4,7,5,0,704,336574.25,0,302813.44,0,1395.6895,0,4482.6543 +255,316,572,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.7392693,7.8944812,0,0,-861.06018,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8369308,6.0038676,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,770,1741931,806190.38,397773.5,0,0,0,881.35449 +255,317,573,-9,572,-9,1,1,24,0,0,0,1,1,1,0,4,0,0,0,0,0,-1110.5375,-9,2,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.41,57.01,-9,-9,1.666666666666667,1,1,1,0,2,1,1,1,343,-61201.723,0,0,0,0,0,-263.32181 +256,318,574,-9,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.2768698,7.9228787,0,0,0,-978.0957,0,-9,-9,2021,8,0,50,48,1,0,0,7.4922976,7.4922976,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,953,621735.63,399019.94,258503.02,26250.271,8490.0986,0,2501.9854 +257,319,575,576,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-5,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52,46,54,46,8,1,1,0,1,0,13,1,1,1573.5,41320.367,0,148336.7,0,0,0,391.90594 +257,319,576,575,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,57,5,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,116.75612,0,0,1,1,0,0,0,54,46,52,46,8,1,1,0,0,0,13,1,1,1573.5,41320.367,0,148336.7,0,0,0,391.90594 +258,320,577,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-922.37994,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.69,31.73,-9,-9,5,1,1,0,0,0,12,1,1,995,-67859.336,-64867.223,0,0,0,0,1033.825 +259,321,578,579,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7588925,7.7672372,37,-7,64.227081,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8802397,7.841074,60.03,45.37,52.4,55.58,8.333333333333334,1,1,0,0,0,6,4,1,486.5,1918403.9,1584302.3,243626.81,0,1627.2249,0,4450.3408 +259,321,579,578,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,8.3008204,7.9151626,42,7,-35.94112,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6534004,8.3399887,52.4,55.58,60.03,45.37,10,1,1,0,0,0,6,4,1,486.5,1918403.9,1584302.3,243626.81,0,1627.2249,0,4450.3408 +260,322,580,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.2216091,8.2576828,0,0,0,-1120.229,0,2,2,2021,11,2,37,37,1,2,0,17.679895,17.679895,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.98,52.59,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,781,-69024.313,122257,0,0,0,0,1575.0111 +261,323,581,582,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,8,0,-134.62296,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9910929,0,58.41,48.73,48.94,34.29,8.333333333333334,1,1,0,0,0,8,3,1,1296,911998.63,660154.44,242223,0,0,0,3290.7559 +261,323,582,581,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.9622145,7.8970604,8,0,21.718163,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3536351,8.0541019,48.94,34.29,58.41,48.73,6.666666666666667,1,1,0,0,0,8,3,1,1296,911998.63,660154.44,242223,0,0,0,3290.7559 +262,324,583,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.1895804,7.4054914,0,0,-867.67285,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1667509,51.76,41.09,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,1811,391813.5,80753.117,117316.58,0,0,0,1878.4072 +263,325,584,585,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,22,1,47.748756,0,3,-9,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.48,34.4,49.11,41.06,3.333333333333333,1,1,0,0,0,10,3,1,2785,1287073.9,866017,356783.44,12640.365,-1666.8801,0,3160.8618 +263,325,585,584,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.4660397,8.3574228,34,-1,-129.77664,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.7105203,8.1273165,49.11,41.06,37.48,34.4,3.333333333333333,1,1,0,0,4,10,3,1,2785,1287073.9,866017,356783.44,12640.365,-1666.8801,0,3160.8618 +264,326,586,-9,589,588,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.53137,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +264,326,587,-9,589,588,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-854.42059,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +264,326,588,589,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.1430187,8.1927166,0,8,-1,119.82646,0,1,2,2021,13,1,42,38,1,1,0,8.9757452,8.9757452,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.17,42.52,6.666666666666667,1,1,0,0,8,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +264,326,589,588,-9,-9,1,0,32,1,2,0,2,2,-9,0,2,7.8090057,7.9920664,0,8,1,-3.9868915,0,-9,-9,2021,8,0,39,36,1,0,0,9.5850821,9.5850821,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.17,42.52,57.06,57.76,6.666666666666667,1,1,0,0,10,4,4,1,651.5,218460.89,118182.09,118926.33,72819.195,9930.8467,0,2055.8179 +265,327,590,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,7.890213,8.3912516,0,0,0,-826.09064,0,3,2,2021,7,1,35,35,1,1,0,10.876809,10.876809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,55.12,-9,-9,8.333333333333334,1,1,0,0,6,2,3,0,555,-197925.06,77856.836,0,0,1740.7043,0,1388.4033 +265,327,591,-9,590,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-974.03363,-9,1,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,3,0,555,-197925.06,77856.836,0,0,1740.7043,0,1388.4033 +266,328,592,593,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,0,0,0,5,-2,-43.732731,0,2,1,2021,17,6,0,45,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,57.06,57.76,5,1,1,0,0,14,12,5,1,2806.5,817851.88,546113.63,438998,19778.18,3553.7964,917.58472,5339.5488 +266,328,593,592,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.7611704,9.7473516,0,5,2,47.715969,0,1,1,2021,9,0,41,83,1,0,0,62.603714,62.603714,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.46,55.58,10,1,1,0,0,15,12,5,1,2806.5,817851.88,546113.63,438998,19778.18,3553.7964,917.58472,5339.5488 +267,329,594,595,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.0547848,7.7605505,42,1,-49.883533,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3646464,7.8927612,58.07,46.29,49.66,55.68,10,1,1,0,0,0,4,4,0,634.5,1018624.1,667875.94,239572.11,0,0,0,4123.041 +267,329,595,594,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.6213083,7.7393298,42,-1,41.345192,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4406629,7.4483719,49.66,55.68,58.07,46.29,8.333333333333334,1,1,0,0,0,4,4,0,634.5,1018624.1,667875.94,239572.11,0,0,0,4123.041 +268,330,596,597,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.8543396,9.2503548,7.8569012,33,5,-22.142872,0,3,3,2021,7,0,45,45,1,0,0,13.108655,13.108655,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1229115,55.51,46.03,53.46,44.67,8.333333333333334,1,1,0,0,10,4,5,1,777,433083.5,144467.48,148034.81,49021.223,4532.7764,2358.3103,4683.1377 +268,330,597,596,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.732965,7.6957946,0,33,-5,-149.93828,0,3,3,2021,11,0,33,43,1,0,0,8.4326077,8.4326077,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.46,44.67,55.51,46.03,8.333333333333334,1,1,0,0,10,4,5,1,777,433083.5,144467.48,148034.81,49021.223,4532.7764,2358.3103,4683.1377 +268,331,598,-9,597,596,1,0,23,0,0,0,2,2,-9,0,4,7.6443586,7.9571462,0,0,0,-1075.9663,0,3,3,2021,5,0,42,42,1,0,1,6.8780746,6.8780746,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,332,13160.4,194540.89,0,0,0,0,329.02213 +268,332,599,-9,597,596,1,1,23,0,0,0,2,2,-9,0,4,7.818429,7.74196,0,0,0,-1056.0685,0,3,3,2021,10,0,44,44,1,1,1,6.382585,6.382585,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,7,4,3,1,1359,79181.375,0,0,0,0,0,231.7583 +269,333,600,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.9796734,5.7774072,0,0,-974.77533,0,2,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2564572,5.7475986,49.75,32.52,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1779,84752.406,-33022.742,0,0,0,538.15881,441.87466 +270,334,601,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,7.9144692,7.6521568,0,0,0,-1013.4504,0,-9,3,2021,17,5,37,35,1,5,0,7.5423641,7.5423641,0,0,0,0,0,0,0,0,0,0,0,0,0,38.82,41.98,-9,-9,6.666666666666667,1,1,0,0,11,6,3,0,989,134208.02,18168.932,152658.42,141543.41,0,2208.354,785.39618 +270,335,602,-9,601,-9,1,1,24,0,0,0,2,2,-9,0,3,7.9460464,8.0088291,0,0,0,-908.48157,0,2,-9,2021,12,0,38,0,1,0,1,8.3715124,8.3715124,0,0,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,-9,-9,5,1,1,0,0,5,6,4,0,581,-44099.68,0,0,0,0,-59.456097,1879.725 +270,336,603,-9,601,-9,1,0,22,0,0,0,2,2,-9,0,3,7.4285345,7.60042,0,0,0,-1013.7633,0,2,-9,2021,26,12,32,0,1,12,1,7.1756773,7.1756773,0,0,0,0,0,0,0,0,0,0,0,0,0,27.6,49.7,-9,-9,3.333333333333333,1,1,0,0,6,6,3,0,742,-222527.19,0,0,0,0,0,1628.035 +271,337,604,605,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.2131186,9.016326,0,8,-2,10.800611,0,2,2,2021,4,0,38,38,1,0,0,22.112831,22.112831,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,7,1,5,0,310,343516.13,385891.56,81331.141,103934.05,13062.295,0,5457.0605 +271,337,605,604,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.9081593,8.684844,0,8,2,-21.525091,0,2,2,2021,5,0,50,52,1,0,0,12.962463,12.962463,.05,.05,0,0,0,0,0,0,0,0,0,2.4496901,0,51.73,58.82,54.2,57.49,10,1,1,0,0,5,1,5,0,310,343516.13,385891.56,81331.141,103934.05,13062.295,0,5457.0605 +272,338,606,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.6759672,8.6842031,0,0,0,-1029.2961,0,2,2,2021,10,0,38,60,1,0,0,16.735498,16.735498,.05,.05,0,0,0,0,0,0,0,0,0,2.890934,0,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,746,-9881.416,59214.313,0,0,0,0,1949.6339 +273,339,607,-9,609,608,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.88867,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +273,339,608,609,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.9396,8.6676273,0,15,0,-43.057552,0,2,2,2021,5,0,47,35,1,0,0,16.817005,16.817005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.27,48.47,55.22,46.37,10,1,1,0,0,10,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +273,339,609,608,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.6736307,6.9578838,0,15,0,1.9177951,0,2,2,2021,10,0,18,25,1,0,0,6.462296,6.462296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.22,46.37,62.27,48.47,8.333333333333334,1,1,0,0,8,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +273,339,610,-9,609,608,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.40094,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,536.75,226075.84,215630.16,219675.09,133900.98,0,0,2354.259 +274,340,611,-9,-9,-9,1,0,18,0,1,0,2,2,-9,0,5,7.3507495,7.3144922,0,0,0,-923.05902,-9,2,-9,2021,8,1,24,0,1,1,1,8.0185442,8.0185442,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.8,58.27,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,500,80239.234,-4282.6221,0,0,1021.1384,0,254.21825 +275,341,612,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,7.3754797,7.5325632,0,0,0,-943.48682,0,3,3,2021,10,0,30,40,1,0,0,4.1853361,4.1853361,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.62,30.78,-9,-9,1.666666666666667,4,2,0,0,7,8,3,0,429,9018.7744,-33466.16,0,0,0,0,1067.8845 +275,342,613,-9,612,-9,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.1475,0,2,-9,2021,8,0,0,29,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.52,62.31,-9,-9,6.666666666666667,2,3,0,0,4,8,1,0,2075,-102672.78,0,0,0,0,0,-299.11169 +276,343,614,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,6.158103,5.895442,0,0,-992.44885,0,-9,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6796799,6.0885963,49.17,50.19,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,196,318852.47,0,0,0,0,334.72501,703.71472 +276,344,615,-9,614,-9,1,1,37,0,0,0,2,2,-9,0,4,9.2807407,9.1203346,0,0,0,-939.64343,0,1,2,2021,10,0,68,68,1,1,0,22.502565,22.502565,0,0,0,0,0,0,0,0,1,1,0,3.2821584,0,51,56,-9,-9,7,1,1,0,0,1,9,5,1,486,155197.08,0,168869.97,72722.063,0,0,3159.8518 +277,345,616,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0347614,7.9847841,0,0,0,-1091.9453,0,-9,-9,2021,11,0,40,45,1,0,0,9.1806717,9.1806717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,607,236602.97,157847,0,0,0,0,1972.324 +278,346,617,618,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.6868148,4.6414528,10,-2,-89.471657,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0031719,0,57.16,42.95,57.57,49.69,8.333333333333334,1,1,0,0,5,11,3,1,303.5,969900.38,631974.38,229402.39,0,0,0,3291.1045 +278,346,618,617,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.6294527,7.9459372,50,2,-62.076294,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2485762,7.9658732,57.57,49.69,57.16,42.95,8.333333333333334,1,1,0,0,0,11,3,1,303.5,969900.38,631974.38,229402.39,0,0,0,3291.1045 +279,347,619,620,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,56,3,-131.00056,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,44.15,60.12,54.8,8.333333333333334,1,1,0,0,0,2,2,1,1268,73766.063,76534.344,91954.445,0,0,0,1193.6145 +279,347,620,619,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.4065018,4.7316866,56,-3,61.274342,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7282147,4.9827952,60.12,54.8,59.54,44.15,10,1,1,0,0,0,2,2,1,1268,73766.063,76534.344,91954.445,0,0,0,1193.6145 +280,348,621,622,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.69485,8.651166,0,14,4,22.507164,0,2,2,2021,14,2,36,36,1,2,0,17.912674,17.912674,0,0,.05,0,0,0,0,7,1,1,0,0,0,38.91,52.63,45.19,53.94,3.333333333333333,2,3,0,0,10,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +280,348,622,621,-9,-9,1,0,37,0,2,0,2,2,-9,1,4,0,0,0,14,-4,-74.368835,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.19,53.94,38.91,52.63,5,2,3,0,0,0,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +280,348,623,-9,622,621,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.29175,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +280,348,624,-9,622,621,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.65302,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,1120,908999.44,383029.38,824809.81,461300.25,0,0,2433.7114 +281,349,625,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,5.9912319,5.9301815,0,0,-1023.0388,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1422663,48.76,53.24,-9,-9,6.666666666666667,1,1,0,0,7,13,2,1,4151,471003.44,223120.41,-7517.5693,0,2536.0093,0,229.72902 +281,350,626,-9,-9,625,1,1,35,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1049.7115,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,381,82791.43,0,0,0,0,0,364.59479 +282,351,627,628,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,0,0,6,11,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9941998,0,55,45,47.46,52.7,8,1,1,0,0,0,12,1,1,695,284632.06,0,192917.78,0,0,0,1561.3125 +282,351,628,627,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,6,-11,0,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.46,52.7,55,45,8.333333333333334,1,1,0,0,0,12,1,1,695,284632.06,0,192917.78,0,0,0,1561.3125 +283,352,629,631,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.1136532,9.3265924,0,7,-5,93.052284,0,2,2,2021,11,0,40,36,1,0,0,33.01482,33.01482,.05,.05,0,0,0,0,0,0,0,0,0,3.5309391,0,48.87,58.55,48.98,57.22,8.333333333333334,1,1,0,0,8,9,5,1,1028.3334,329065.25,152835.83,387220.91,243880.34,0,0,5607.7837 +283,352,630,-9,629,631,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.9833,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1028.3334,329065.25,152835.83,387220.91,243880.34,0,0,5607.7837 +283,352,631,629,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.9069672,8.1902933,0,7,5,96.591377,0,3,3,2021,9,0,44,42,1,0,0,15.304834,15.304834,.05,.05,0,0,0,0,0,0,0,0,0,.99257314,0,48.98,57.22,48.87,58.55,8.333333333333334,1,1,0,0,8,9,5,1,1028.3334,329065.25,152835.83,387220.91,243880.34,0,0,5607.7837 +284,353,632,-9,633,634,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.7728,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +284,353,633,634,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.0316811,7.9277325,0,8,0,20.600416,0,2,1,2021,12,0,26,26,1,0,0,11.213729,11.213729,0,0,0,0,0,0,0,0,0,0,0,3.8648074,0,49.28,50.19,57.06,57.76,3.333333333333333,1,1,0,0,7,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +284,353,634,633,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.7738285,9.1591444,0,8,0,47.816326,0,2,2,2021,11,0,38,35,1,0,0,26.140377,26.140377,.05,.05,0,0,0,0,0,0,0,0,0,6.5811973,0,57.06,57.76,49.28,50.19,6.666666666666667,1,1,0,0,9,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +284,353,635,-9,633,634,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1109.5558,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,5,1,501,1222162.1,101055.34,315559.66,0,0,0,3972.6719 +285,354,636,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.3523879,7.4312043,0,0,-926.34998,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,1.7654989,3.7566073,16.226782,0,1,1,0,0,8.0454321,58.85,29.84,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,852,463785.94,251550.52,260670.73,0,0,0,1508.0671 +286,355,637,639,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.9511204,8.9771585,0,4,1,-61.443485,0,-9,-9,2021,9,0,40,40,1,1,0,20.036631,20.036631,0,0,0,0,0,0,0,0,1,1,0,6.1626763,0,53,55,45.22,63.14,8,1,1,0,0,1,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +286,355,638,-9,639,637,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.53589,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +286,355,639,637,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,5.9550209,6.04566,0,4,-1,-1.1409621,0,-9,-9,2021,12,0,4,4,1,0,0,10.327192,10.327192,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,53,55,8.333333333333334,1,1,0,0,8,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +286,355,640,-9,639,637,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.546,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,636.25,177475.34,0,387699.91,224581.47,0,0,3379.2083 +287,356,641,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,5.9207892,6.0846429,0,0,-1008.4622,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.4273448,6.38166,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,7,7,2,1,2135,15137.477,-32385.965,0,0,0,0,375.45804 +288,357,642,643,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,24,1,-31.797909,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47365028,0,43.71,56.91,57.16,56.15,8.333333333333334,1,1,0,0,7,6,3,1,410,313729.56,184031.81,126335.78,61384.164,0,0,2177.2754 +288,357,643,642,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2884245,8.1525507,0,8,-1,-133.42789,0,3,3,2021,7,0,41,40,1,0,0,9.5321283,9.5321283,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.71,56.91,8.333333333333334,1,1,0,0,10,6,3,1,410,313729.56,184031.81,126335.78,61384.164,0,0,2177.2754 +289,358,644,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,6.9138064,7.296124,0,0,0,-867.20465,0,3,3,2021,8,0,20,20,1,0,0,6.7045226,6.7045226,0,0,.05,0,0,0,0,0,1,1,0,0,0,37.93,48.71,-9,-9,3.333333333333333,1,1,0,1,9,6,2,1,314,242593.27,64403.094,114243.4,0,0,0,1466.2759 +290,359,645,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.5801935,6.5624323,0,0,-1050.5909,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9410872,41.37,22.62,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,197,391221.91,130945.2,151004.55,0,0,0,940.50171 +291,360,646,649,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.2365303,8.9029236,0,6,3,-.73538798,0,2,2,2021,11,1,37,39,1,1,0,25.80979,25.80979,.05,.05,0,0,0,0,0,0,1,1,0,2.9388165,0,44.02,60.7,42.95,61.24,8.333333333333334,1,1,0,0,7,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +291,360,647,-9,649,646,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.73505,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +291,360,648,-9,649,646,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.3877,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +291,360,649,646,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,9.2510948,9.2063875,0,6,-3,160.14191,0,2,2,2021,19,6,50,32,1,6,0,15.965476,15.965476,.05,.05,0,0,0,0,0,0,1,1,0,1.3646359,0,42.95,61.24,44.02,60.7,6.666666666666667,1,1,0,0,7,2,5,1,837.25,1659654.1,1008484.3,576652.25,237815.64,0,0,5543.4097 +292,361,650,651,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,4.0507045,4.2388287,41,-2,32.120834,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4690409,4.2417989,59.46,44.28,67.09999999999999,28.38,8.333333333333334,1,1,0,0,5,2,4,1,327.5,1628794.5,1164618.3,256439.97,0,0,0,3053.2488 +292,361,651,650,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.1934214,8.4247246,41,2,-25.615276,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1356997,8.4390879,67.09999999999999,28.38,59.46,44.28,8.333333333333334,1,1,0,0,10,2,4,1,327.5,1628794.5,1164618.3,256439.97,0,0,0,3053.2488 +293,362,652,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.7954793,5.6276693,0,0,-1027.9075,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6660552,43.49,50.26,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,197,383534.03,316141.19,189671.19,0,0,0,573.42877 +294,363,653,-9,-9,-9,1,0,21,0,0,0,1,1,0,0,4,0,0,0,0,0,-1020.6223,-9,-9,-9,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,4722,-21196.465,0,0,0,0,0,276.76056 +295,364,654,655,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,5.9468107,6.4267545,12,3,-31.293619,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9285736,5.9337616,41.81,36.58,57.33,53.46,5,1,1,0,0,6,8,3,1,458,542837.44,390072.72,0,0,0,0,3008.686 +295,364,655,654,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,7.1814971,8.0432186,7.5439196,12,-3,-59.441826,0,2,2,2021,10,0,5,10,1,0,0,40.020557,40.020557,0,0,0,0,0,0,0,2,1,1,0,7.0683293,7.4183578,57.33,53.46,41.81,36.58,8.333333333333334,1,1,0,0,14,8,3,1,458,542837.44,390072.72,0,0,0,0,3008.686 +296,365,656,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.2026501,8.2524834,0,0,0,-1004.9433,0,2,-9,2021,13,2,41,0,1,2,0,9.7672215,9.7672215,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,10,7,4,0,629,-75929.492,127513.84,0,0,0,0,1313.9623 +297,366,657,658,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3808298,8.3611097,0,6,2,84.494026,0,2,2,2021,13,2,37,40,1,2,0,12.86449,12.86449,.05,.05,0,0,0,0,0,0,0,0,0,5.5890903,0,45.91,59.89,43.95,51.24,5,1,1,0,0,7,5,5,1,804.5,750862.25,703968,195106.66,22747.303,2828.7241,0,3810.0688 +297,366,658,657,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.2298908,8.1904783,2.4566629,6,-2,-38.005596,0,3,3,2021,13,3,37,39,1,3,0,10.327697,10.327697,.05,.05,0,0,0,0,0,2,0,0,0,6.9988546,2.691057,43.95,51.24,45.91,59.89,8.333333333333334,1,1,0,0,7,5,5,1,804.5,750862.25,703968,195106.66,22747.303,2828.7241,0,3810.0688 +297,367,659,-9,658,657,1,0,22,0,0,0,1,1,-9,0,4,6.6515489,6.5047274,0,0,0,-1159.9945,0,3,2,2021,15,3,15,15,1,3,1,7.3372688,7.3372688,0,0,0,0,0,0,0,0,0,0,0,0,0,44.44,55.46,-9,-9,1.666666666666667,1,1,0,0,7,5,2,1,1785,-66147.617,0,0,0,0,0,1490.3684 +298,368,660,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.9243383,9.048583,5.7500873,0,0,-890.77386,0,3,3,2021,10,0,45,43,1,1,0,22.20886,22.20886,0,0,0,0,0,0,0,0,0,0,0,0,5.9660182,51,48,-9,-9,7,1,1,0,0,9,4,5,1,455,600298.31,-25127.02,341568.31,0,0,0,2399.1279 +298,369,661,-9,-9,660,1,1,26,0,0,0,1,1,-9,0,4,8.0067139,8.3465891,0,0,0,-960.18787,0,2,2,2021,10,0,37,41,1,1,1,11.257908,11.257908,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,5,4,4,1,429,4008.6458,0,0,0,0,0,1326.66 +299,370,662,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.9416561,7.9471989,0,0,0,-849.7262,0,2,2,2021,9,0,45,40,1,0,0,6.3794627,6.3794627,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,6,4,0,1232,412249.09,329393.53,0,0,0,0,1196.2874 +300,371,663,664,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,7.5015731,7.6145439,41,-5,-168.29507,0,3,3,2021,13,1,0,37,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.5069294,7.4898057,52.77,55.33,52.88,56.68,5,1,1,0,0,13,5,5,1,5419,1418069.5,822268.63,296444.47,0,0,0,5314.8291 +300,371,664,663,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.7238092,9.0140266,8.886385,41,5,24.48097,0,2,3,2021,11,0,19,19,1,0,0,13.174355,13.174355,0,0,0,0,0,0,0,0,0,0,0,8.3329592,8.7481165,52.88,56.68,52.77,55.33,8.333333333333334,1,1,0,0,11,5,5,1,5419,1418069.5,822268.63,296444.47,0,0,0,5314.8291 +300,372,665,-9,663,664,1,1,27,0,0,0,1,1,-9,0,4,9.0357771,9.0189571,0,0,0,-913.68164,0,2,2,2021,13,1,56,60,1,1,1,15.231651,15.231651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,5,1,1,0,0,6,5,5,1,797,118827.61,67652.594,0,0,0,0,3018.0137 +301,373,666,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,4.9784923,4.8597765,0,0,-883.73737,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9632034,4.9479465,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,507,13231.385,-25656.121,0,0,0,0,482.37375 +302,374,667,-9,668,669,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-929.43408,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,916,11537.628,101510.16,186377.83,89897.039,0,0,4241.6226 +302,374,668,669,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.3787746,8.2664919,0,9,-1,-82.543938,0,2,1,2021,4,0,25,25,1,0,0,14.601764,14.601764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,9,4,5,1,916,11537.628,101510.16,186377.83,89897.039,0,0,4241.6226 +302,374,669,668,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,8.5446177,8.8421745,0,9,1,202.91507,0,2,2,2021,11,3,42,37,1,3,0,16.934519,16.934519,.05,.05,0,0,0,0,0,0,1,1,0,3.9787126,0,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,10,4,5,1,916,11537.628,101510.16,186377.83,89897.039,0,0,4241.6226 +303,375,670,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.1362295,8.6534376,0,0,0,-931.47919,0,1,1,2021,11,2,43,42,1,2,0,10.404066,10.404066,.05,.05,0,0,0,0,0,0,0,0,0,3.2299962,0,54.67,57.49,-9,-9,6.666666666666667,1,1,0,0,6,8,4,0,1037,290964.09,97282.336,0,0,0,343.42303,2387.2805 +304,376,671,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.5261912,5.7807536,0,0,-953.40063,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8046556,5.4526701,45.99,57.05,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1297,592077.88,0,578504.63,0,0,0,938.9126 +305,377,672,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.8812032,7.6108346,0,0,0,-969.74341,0,3,3,2021,17,6,43,30,1,6,0,7.2177658,7.2177658,.05,.05,0,0,0,0,0,0,0,0,0,.78528166,0,38.38,56.81,-9,-9,5,1,1,0,0,8,9,3,1,338,338236.34,-69621.273,224128.11,0,0,-809.83978,1010.282 +306,378,673,-9,675,674,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-800.37628,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,674,675,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.4151096,8.589469,0,6,1,.010023809,0,2,2,2021,9,1,53,53,1,1,0,8.6223402,8.6223402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.84,51.67,38.89,57.72,6.666666666666667,1,1,0,0,4,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,675,674,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.4914327,7.4867487,0,6,-1,134.01942,0,2,2,2021,12,0,30,30,1,0,0,6.8069534,6.8069534,0,0,0,0,0,0,0,0,1,1,0,3.1129243,0,38.89,57.72,51.84,51.67,6.666666666666667,1,1,0,0,6,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,676,-9,675,674,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.746,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +306,378,677,-9,675,674,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-899.45593,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1104.6,64009.547,50173.137,143131.33,121358.85,0,0,2432.1909 +307,379,678,679,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,6.0285897,6.0659275,22,1,66.534004,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8018174,49.11,31,44.32,52.33,6.666666666666667,1,1,0,0,12,9,3,1,1040,920649.88,475841.91,303049.53,0,5324.501,0,1925.5728 +307,379,679,678,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.7149744,7.7686043,5.8940105,3,-1,42.251335,0,2,3,2021,20,9,32,32,1,9,0,9.3347273,9.3347273,0,0,0,0,0,0,0,2,1,1,0,0,6.3134418,44.32,52.33,49.11,31,3.333333333333333,1,1,0,0,15,9,3,1,1040,920649.88,475841.91,303049.53,0,5324.501,0,1925.5728 +308,380,680,681,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4231119,8.5018921,0,6,-3,-35.572906,0,3,3,2021,7,0,40,42,1,0,0,12.122755,12.122755,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,226.5,386733.09,387358.06,157289.19,0,0,0,2628.8447 +308,380,681,680,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.063674,8.3491812,5.3549547,6,3,154.84605,0,-9,-9,2021,6,0,40,40,1,0,0,9.6352625,9.6352625,.05,.05,0,0,0,0,0,0,0,0,0,0,5.3307853,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,4,5,1,226.5,386733.09,387358.06,157289.19,0,0,0,2628.8447 +309,381,682,683,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.5613132,7.2293344,43,-1,98.546577,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4625287,7.0096321,54.79,55.86,50,47,8.333333333333334,1,1,0,0,0,2,2,1,1399.5,-5629.8633,82459.414,0,0,0,0,2043.9801 +309,381,683,682,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0263219,6.3378186,43,1,-109.87916,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,6.2161555,0,0,1,1,0,4.6750112,6.5211949,50,47,54.79,55.86,8.333333333333334,1,1,0,0,0,2,2,1,1399.5,-5629.8633,82459.414,0,0,0,0,2043.9801 +310,382,684,685,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.2438231,8.1009912,34,7,25.671492,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.1014395,8.3132296,43.79,54.07,54.74,57.22,8.333333333333334,1,1,0,0,6,10,4,1,981,1109576.3,601350.5,389998.53,0,0,0,3903.2002 +310,382,685,684,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,34,-7,36.33194,0,2,3,2021,6,0,0,8,3,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.9632196,0,54.74,57.22,43.79,54.07,8.333333333333334,1,1,0,0,13,10,4,1,981,1109576.3,601350.5,389998.53,0,0,0,3903.2002 +311,383,686,687,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,0,0,0,5,-3,-62.748943,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.45,48.91,42.59,47.74,6.666666666666667,2,3,1,0,0,9,3,1,1588,304260.63,54025.793,273648.19,0,35202.75,126.86298,1317.3193 +311,383,687,686,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.1330023,8.0698977,0,5,3,43.132778,0,-9,-9,2021,11,0,35,35,1,0,0,10.929707,10.929707,.05,.05,0,0,0,0,0,0,0,0,0,3.2571893,0,42.59,47.74,43.45,48.91,6.666666666666667,2,3,0,0,9,9,3,1,1588,304260.63,54025.793,273648.19,0,35202.75,126.86298,1317.3193 +312,384,688,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.7833743,6.8970289,0,0,-1046.4182,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5536993,6.9563189,52,45,-9,-9,8,1,1,0,0,0,11,2,1,1538,80374.641,29076.066,140700.83,0,0,0,2096.29 +313,385,689,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.7424231,8.8514681,2.2677908,0,0,-942.37402,0,2,2,2021,7,0,40,39,1,0,0,15.42311,15.42311,.05,.05,0,0,0,0,0,0,0,0,0,5.2072277,0,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,672,126045.22,205058.97,61201.473,40255.637,0,0,3169.5056 +314,386,690,691,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.7761307,8.7032404,0,6,-12,-41.215965,0,2,2,2021,6,0,40,40,1,0,0,19.252289,19.252289,0,0,0,0,0,0,0,2,0,0,0,5.2037969,0,65.73999999999999,27.66,57.73,54.53,6.666666666666667,1,1,0,0,7,4,5,1,1092.5,2522617.8,1868061.5,240041.81,0,0,0,4272.0576 +314,386,691,690,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.750493,8.9281416,0,6,12,2.7330248,0,2,2,2021,8,0,42,44,1,0,0,18.32785,18.32785,.05,.05,0,0,0,0,0,0,0,0,0,4.7299356,0,57.73,54.53,65.73999999999999,27.66,8.333333333333334,1,1,0,0,7,4,5,1,1092.5,2522617.8,1868061.5,240041.81,0,0,0,4272.0576 +315,387,692,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,0,0,-975.61798,1,-9,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.16,24.95,-9,-9,1.666666666666667,1,1,0,1,0,10,1,1,322,337720.78,-90848.445,138565.44,0,0,0,763.20392 +316,388,693,694,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.6137953,7.6691432,0,5,-1,-110.51499,0,2,2,2021,14,2,25,25,1,2,0,13.243124,13.243124,0,0,0,0,0,0,0,0,1,1,0,0,0,35.32,36.93,33.74,54.46,1.666666666666667,1,1,0,0,13,4,3,0,1385,201653.59,0,220199.06,78213.57,0,0,1976.6416 +316,388,694,693,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,5.4071059,5.4362707,0,5,1,24.899717,0,-9,3,2021,12,0,10,10,1,0,0,3.2379632,3.2379632,0,0,0,0,0,0,0,0,1,1,0,0,0,33.74,54.46,35.32,36.93,1.666666666666667,1,1,0,0,11,4,3,0,1385,201653.59,0,220199.06,78213.57,0,0,1976.6416 +316,389,695,-9,694,693,1,0,25,0,0,0,2,2,-9,0,3,7.802155,7.7228103,0,0,0,-945.71478,0,3,3,2021,12,0,38,36,1,0,1,6.8469625,6.8469625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.4,55.59,-9,-9,1.666666666666667,1,1,0,0,13,4,3,0,1161,-34667.766,-16452.527,0,0,0,0,516.51544 +317,390,696,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9454064,8.2808647,0,0,0,-994.70367,0,3,2,2021,9,0,54,47,1,0,0,8.4290257,8.4290257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,12,10,4,1,770,181303.03,39847.219,271380,70691.563,11907.326,0,1660.5505 +317,391,697,-9,696,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1052.0687,-9,1,-9,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8765469,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,2,10,2,1,530,45616.043,0,0,0,0,0,1085.1819 +318,392,698,699,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,9.5219679,9.5109634,0,32,-1,100.43864,0,2,2,2021,19,7,27,-9,1,7,0,55.065742,55.065742,0,0,0,0,0,0,0,2,1,1,0,7.8049607,0,45.47,23.9,43.13,35.47,3.333333333333333,2,3,0,1,12,8,5,1,431.5,2164723.3,945886.38,1345317.4,0,0,0,10395.13 +318,392,699,698,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.4790154,8.5593815,0,32,1,-30.325268,0,3,3,2021,17,5,60,70,1,5,0,10.029895,10.029895,0,0,0,0,0,0,0,0,1,1,0,0,0,43.13,35.47,45.47,23.9,3.333333333333333,1,1,0,1,13,8,5,1,431.5,2164723.3,945886.38,1345317.4,0,0,0,10395.13 +318,393,700,-9,698,699,1,1,23,0,0,0,1,1,-9,0,5,8.3556843,8.7298841,0,0,0,-959.91187,0,2,1,2021,6,0,60,40,1,0,1,8.5405645,8.5405645,.05,.05,0,0,0,0,0,0,1,1,0,1.3381618,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,3,8,5,1,547,116525.68,-60209.32,0,0,0,0,1488.1134 +319,394,701,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.5390258,7.8192773,0,0,0,-1044.0273,0,2,2,2021,3,0,30,25,1,0,0,7.2079363,7.2079363,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,0,2,3,0,1,3,8,3,0,537,410870.22,294619.44,0,0,0,0,1392.7035 +320,395,702,703,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.9885807,7.7487206,48,1,-134.79591,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8369074,57.06,57.76,57.16,56.15,10,1,1,0,0,0,6,3,1,894.5,2155977.3,415900.97,1179653.6,0,0,0,3234.0142 +320,395,703,702,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,6.5494552,6.4977202,48,-1,80.203323,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3583598,6.7507491,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,6,3,1,894.5,2155977.3,415900.97,1179653.6,0,0,0,3234.0142 +321,396,704,705,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.1199574,6.9768219,42,-4,-63.193092,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7721236,6.8163705,61.43,43.34,54.37,54.8,8.333333333333334,1,1,0,0,4,5,4,1,1613.5,484440.56,78174.703,170807,0,0,0,3530.6584 +321,396,705,704,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.8165369,8.2577829,7.850234,42,4,-74.9515,0,-9,-9,2021,9,0,20,15,1,0,0,12.859007,12.859007,.05,.05,0,0,0,0,0,0,1,1,0,6.7862401,8.3290396,54.37,54.8,61.43,43.34,8.333333333333334,1,1,0,0,14,5,4,1,1613.5,484440.56,78174.703,170807,0,0,0,3530.6584 +322,397,706,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,7.5517201,7.0859756,0,0,-862.09766,-9,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1881695,7.7336512,62.54,11.99,-9,-9,5,1,1,0,0,0,2,3,1,1606,555249.44,395667.59,180454.72,0,0,0,1995.8643 +323,398,707,709,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,9.0525017,8.7850561,0,10,5,-14.233212,0,1,2,2021,14,3,46,50,1,3,0,20.14674,20.14674,.05,.05,0,0,0,0,0,0,1,1,0,5.9089637,0,51.23,40.44,47.31,50.2,5,1,1,0,1,12,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +323,398,708,-9,707,709,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.82599,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +323,398,709,707,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,7.870873,7.7389312,0,10,-5,-151.65488,0,2,-9,2021,8,1,48,0,1,1,0,7.0410089,7.0410089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.31,50.2,51.23,40.44,8.333333333333334,1,1,0,1,9,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +323,398,710,-9,707,709,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.1414,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,1049.5,324714.25,106587.74,362137.5,151294.03,5324.3945,5990.2729,5398.3135 +324,399,711,-9,-9,-9,1,0,59,0,2,0,1,1,-9,0,3,0,7.7984438,8.0638113,0,0,-1126.5417,-9,-9,-9,2021,11,0,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.1987448,7.3206229,49,48,-9,-9,7,3,4,0,0,0,8,3,0,286,672442.13,569789.69,382162.44,249756.31,16707.047,5959.2603,1436.775 +324,400,712,713,711,-9,1,0,38,0,2,0,2,2,-9,0,4,8.3210936,8.5842838,0,14,-11,-54.495483,0,2,2,2021,11,0,40,40,1,2,0,11.359395,11.359395,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,9,8,4,0,914,346476.94,87575.328,431294.84,201396.03,0,4258.0439,3370.7876 +324,400,713,712,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.4637318,8.4490681,0,9,11,-54.690922,0,-9,-9,2021,9,0,39,54,1,1,0,12.15972,12.15972,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,12,8,4,0,914,346476.94,87575.328,431294.84,201396.03,0,4258.0439,3370.7876 +325,401,714,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5772743,6.7636251,0,0,-957.57928,0,-9,-9,2021,27,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6229358,8.26,66.53,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,588,192416.33,69944.477,66365.484,0,0,0,1280.9825 +326,402,715,716,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.859457,7.4500728,0,17,6,-29.739634,0,2,3,2021,8,0,30,30,1,0,0,7.9554887,7.9554887,0,0,0,0,0,0,0,0,0,0,0,0,0,52.54,54.24,52.54,54.24,8.333333333333334,1,1,0,0,13,8,4,0,1843.5,129607.31,-7280.793,84403.773,26003.285,3346.1023,17194.969,2583.1904 +326,402,716,715,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.2580357,8.031312,0,13,-6,-24.588202,0,-9,-9,2021,9,0,48,48,1,0,0,10.790472,10.790472,0,0,0,0,0,0,0,0,0,0,0,0,0,52.54,54.24,52.54,54.24,8.333333333333334,1,1,0,0,14,8,4,0,1843.5,129607.31,-7280.793,84403.773,26003.285,3346.1023,17194.969,2583.1904 +326,403,717,-9,715,716,1,0,19,0,0,0,2,2,-9,0,3,7.6356788,7.545639,0,0,0,-842.96191,0,3,2,2021,11,1,30,40,1,1,1,8.3714466,8.3714466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,337,-50237.762,85151.203,0,0,0,0,1135.8546 +327,404,718,719,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,8,-3,78.62825,0,3,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.7396255,0,43.34,39.33,49.45,28.58,5,1,1,0,0,0,12,2,1,644.5,566075.94,163872.92,288488.13,0,0,0,3406.7471 +327,404,719,718,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,7.1961422,7.3314939,8,3,-13.213289,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,22.172794,0,0,1,1,0,8.2752094,7.1683803,49.45,28.58,43.34,39.33,6.666666666666667,1,1,0,0,0,12,2,1,644.5,566075.94,163872.92,288488.13,0,0,0,3406.7471 +328,405,720,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1961994,7.1038451,0,0,-934.25037,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5424602,7.1536822,54.2,57.49,-9,-9,10,1,1,0,0,0,9,2,1,800,587296.06,100277.96,297143.09,0,0,0,460.45306 +329,406,721,722,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,0,0,58,-1,-50.712269,0,2,2,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0754013,0,43.22,20.83,57.33,42.93,1.666666666666667,1,1,0,0,0,6,2,1,929,1123723,325578.97,401017.84,0,0,0,1345.2451 +329,406,722,721,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,7.1044183,7.0079474,13,1,-57.374302,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.0398889,7.0055246,57.33,42.93,43.22,20.83,8.333333333333334,1,1,0,0,0,6,2,1,929,1123723,325578.97,401017.84,0,0,0,1345.2451 +330,407,723,724,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,7.1276774,6.9539032,3.4309716,11,15,-59.227272,0,2,2,2021,6,0,18,25,1,0,0,9.9714928,9.9714928,0,0,0,0,0,0,0,0,1,1,0,5.3753166,2.8971419,53.45,49.53,49.09,57.3,8.333333333333334,1,1,0,0,11,7,4,0,486,518129.13,222114.03,580216,57181.492,0,0,3110.4956 +330,407,724,723,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4773655,8.282733,0,11,-15,78.308952,0,-9,-9,2021,12,0,50,40,1,0,0,9.5966406,9.5966406,.05,.05,0,0,0,0,0,0,1,1,0,5.722568,0,49.09,57.3,53.45,49.53,5,1,1,0,0,13,7,4,0,486,518129.13,222114.03,580216,57181.492,0,0,3110.4956 +331,408,725,726,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.6387153,6.7946768,62,2,-28.881388,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,13.108481,35.473003,139.33186,120,1,1,0,0,6.8031635,34.97,39.35,53.23,7.33,5,1,1,0,0,0,11,3,1,639.5,850746.38,243223.23,174285.53,0,0,0,2771.5889 +331,408,726,725,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,7.3464575,7.2957735,62,-2,46.95306,-9,3,3,2021,28,9,0,0,4,9,0,0,0,0,0,0,1,0,8.3988495,0,0,1,1,0,0,7.2941742,53.23,7.33,34.97,39.35,5,1,1,0,0,0,11,3,1,639.5,850746.38,243223.23,174285.53,0,0,0,2771.5889 +332,409,727,728,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,3.9749067,4.1140184,9,13,96.782753,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8614457,3.9922342,48.53,58.91,58.89,48.6,8.333333333333334,1,1,0,0,5,9,4,1,3025.5,639516,313183.13,312648.25,0,7749.5557,0,1684.4399 +332,409,728,727,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6587715,8.796689,0,9,-13,8.7307606,0,-9,-9,2021,7,0,40,40,1,0,0,17.0592,17.0592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,48.53,58.91,10,1,1,0,0,12,9,4,1,3025.5,639516,313183.13,312648.25,0,7749.5557,0,1684.4399 +333,410,729,730,-9,-9,1,1,31,0,0,0,3,3,-9,0,3,0,0,0,4,9,81.574478,0,-9,-9,2021,22,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.9,54.54,20.23,65.13,1.666666666666667,1,1,1,0,2,11,3,0,1100.5,-5198.7383,-21479.945,0,0,0,0,2183.116 +333,410,730,729,-9,-9,1,0,22,0,0,1,1,0,0,0,3,0,8.0162382,7.7958102,4,0,13.142918,-9,-9,-9,2021,29,12,0,0,2,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.9548421,0,20.23,65.13,19.9,54.54,5,1,1,0,0,0,11,3,0,1100.5,-5198.7383,-21479.945,0,0,0,0,2183.116 +334,411,731,732,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.171792,7.9975128,0,5,-5,19.018265,0,2,3,2021,9,0,50,0,1,0,0,7.4425931,7.4425931,.05,.05,0,0,0,0,0,7,0,0,0,0,0,46.33,55.93,44.33,56.73,6.666666666666667,1,1,0,0,4,10,5,0,655.5,324946.63,158520.22,219474.44,87064.609,5252.9951,3619.2275,3661.6528 +334,411,732,731,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.6017036,8.7462673,0,5,5,24.788731,0,2,2,2021,10,0,36,36,1,0,0,24.66407,24.66407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.33,56.73,46.33,55.93,8.333333333333334,1,1,0,0,10,10,5,0,655.5,324946.63,158520.22,219474.44,87064.609,5252.9951,3619.2275,3661.6528 +335,412,733,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.2917347,7.8945441,0,0,0,-1011.5997,0,-9,-9,2021,24,12,39,38,1,12,0,7.635519,7.635519,0,0,0,0,0,0,0,2,0,0,0,1.4736809,0,29.54,58.14,-9,-9,1.666666666666667,3,4,0,0,9,6,4,1,498,69816.258,46230.813,160550.56,92820.578,0,0,1155.1448 +336,413,734,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.1185036,6.728333,0,0,0,-1096.0493,0,1,1,2021,14,2,16,0,1,2,0,7.6401172,7.6401172,0,0,0,0,0,0,0,0,1,0,1,0,0,34.38,46.39,-9,-9,3.333333333333333,1,1,0,1,10,10,3,0,381,-4342.0508,0,0,0,0,0,1801.8057 +337,414,735,736,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.0633478,8.7086935,0,4,7,83.167603,0,-9,-9,2021,5,0,50,50,1,0,0,22.024027,22.024027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.65,56.13,8.333333333333334,1,1,0,0,5,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +337,414,736,735,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,7.1459765,7.2967949,0,4,-7,44.412601,0,-9,-9,2021,6,0,26,25,1,0,0,5.2298994,5.2298994,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +337,414,737,-9,736,735,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.99506,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +337,414,738,-9,736,735,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.3279,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,398,69940.133,109021.47,241473.67,162653.7,23305.715,7665.3604,3564.0217 +338,415,739,740,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,5.1593728,5.1375294,3,-10,37.229366,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6165752,5.5198736,30.77,22.6,34.03,26.65,1.666666666666667,1,1,0,0,0,10,2,0,838,263697.47,22784.529,149746.2,0,0,0,1993.177 +338,415,740,739,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,36,10,-46.572006,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.03,26.65,30.77,22.6,5,1,1,0,0,0,10,2,0,838,263697.47,22784.529,149746.2,0,0,0,1993.177 +339,416,741,742,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.1339436,7.3104486,6,-1,22.178988,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9566927,7.2434211,60.7,47.65,57.33,53.46,8.333333333333334,1,1,0,0,0,2,3,1,1385,577459.88,334786.34,167506.53,0,0,0,3921.9102 +339,416,742,741,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.5631857,7.5226097,6,1,-58.476486,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3771472,7.3639889,57.33,53.46,60.7,47.65,8.333333333333334,1,1,0,0,0,2,3,1,1385,577459.88,334786.34,167506.53,0,0,0,3921.9102 +340,417,743,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.6491742,8.090889,0,0,-893.71045,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.1180534,7.9770489,58.23,35.22,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,232,1400059.8,588949.88,355753.22,0,0,0,1987.1891 +341,418,744,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.2800188,9.1522837,0,0,0,-943.02368,0,2,2,2021,10,1,43,43,1,1,0,20.122492,20.122492,.05,.05,0,0,0,0,0,0,1,1,0,3.5788209,0,51.67,60.18,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,861,219611.53,39329.535,106916.09,63760.578,0,0,3380.0286 +342,419,745,746,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.208271,7.1658735,0,1,-7,86.561325,-9,-9,-9,2021,11,0,17,0,1,2,0,7.1296344,7.1296344,0,0,0,0,0,0,0,0,0,0,0,0,0,49,56,52,55,7,4,1,0,0,1,13,3,1,555.5,276896.31,-74664,166934.52,0,2475.9502,3662.4534,711.73456 +342,419,746,745,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,6.5908456,6.820724,0,1,7,-184.96147,0,3,3,2021,1,0,56,70,1,0,0,2.2838748,2.2838748,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,49,56,0,1,1,0,0,11,13,3,1,555.5,276896.31,-74664,166934.52,0,2475.9502,3662.4534,711.73456 +343,420,747,748,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.3692999,6.1982236,56,-3,-32.796535,0,-9,2,2021,22,11,0,0,4,11,0,0,0,0,0,0,1,0,7.7440009,0,0,1,1,0,1.0399095,6.4985456,38.64,31.15,41.46,53.68,1.666666666666667,1,1,0,0,0,5,3,1,700,915858.5,558868.75,128759.77,0,0,0,2268.3586 +343,420,748,747,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.759654,7.2111588,56,3,-48.548153,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,1.6966677,7.3595653,41.46,53.68,38.64,31.15,7,1,1,0,0,0,5,3,1,700,915858.5,558868.75,128759.77,0,0,0,2268.3586 +344,421,749,-9,752,750,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.7341,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +344,421,750,752,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,7.6880317,7.9456019,0,11,1,-119.73423,0,2,3,2021,7,0,38,38,1,0,0,5.5011296,5.5011296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.2,56.93,46.65,58.6,8.333333333333334,2,3,0,0,12,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +344,421,751,-9,752,750,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.66168,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +344,421,752,750,-9,-9,1,0,36,1,2,0,1,1,-9,0,5,7.3548436,7.1335645,0,11,-1,149.77271,0,2,2,2021,16,4,18,12,1,4,0,11.689738,11.689738,.05,.05,0,0,0,0,0,0,1,1,0,.11480911,0,46.65,58.6,46.2,56.93,8.333333333333334,2,3,0,1,10,4,3,1,544,-23284.422,46840.164,135757.59,117740.75,9568.373,0,2041.5411 +345,422,753,754,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.3728609,7.6007652,0,34,5,23.936581,0,2,2,2021,6,0,30,7,1,0,0,5.5612779,5.5612779,0,0,0,0,0,0,0,0,1,1,0,0,0,46.53,47.58,57.65,56.13,6.666666666666667,2,3,0,0,6,8,3,0,836.5,654588.88,438567.19,225735.25,0,0,0,1299.3657 +345,422,754,753,-9,-9,1,1,57,0,0,0,1,1,1,0,5,6.8546753,6.6064925,0,34,-5,167.45583,-9,-9,1,2021,6,0,10,0,1,0,0,9.6130714,9.6130714,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,46.53,47.58,10,1,1,0,0,2,8,3,0,836.5,654588.88,438567.19,225735.25,0,0,0,1299.3657 +345,423,755,-9,753,754,1,1,28,0,0,0,1,1,-9,0,3,7.7581177,7.8507142,0,0,0,-1117.2866,0,2,1,2021,18,7,38,35,1,7,1,7.6663013,7.6663013,0,0,0,0,0,0,0,0,1,1,0,0,0,37.32,56,-9,-9,6.666666666666667,4,2,0,0,6,8,3,0,397,-5470.7656,43197.809,0,0,0,0,710.74646 +346,424,756,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.8010058,7.6768274,0,0,-1003.9346,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6400328,8.0008106,49.35,59.64,-9,-9,10,1,1,0,0,0,9,3,1,787,972365.38,476887.03,605136.31,0,0,0,1742.9513 +347,425,757,-9,758,761,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.7818,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,758,761,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,0,0,0,6,0,7.1005917,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1477408,0,49.25,61.25,57.16,56.15,10,1,1,0,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,759,-9,758,761,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1068,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,760,-9,758,761,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1017.5488,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +347,425,761,758,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.6503582,9.3269119,0,6,0,81.657341,0,2,1,2021,10,0,52,52,1,0,0,26.103228,26.103228,.05,.05,0,0,0,0,0,0,1,1,0,8.2742329,0,57.16,56.15,49.25,61.25,8.333333333333334,1,1,0,0,6,13,4,1,1196.4,338977.94,132287.38,405562.94,230288.89,0,0,7575.999 +348,426,762,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-919.59967,0,3,2,2021,23,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.37,26.3,-9,-9,5,1,1,0,0,0,12,1,0,60,-131749.02,0,0,0,0,0,1119.4773 +349,427,763,764,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.6721363,7.475287,0,37,0,-33.820816,0,2,2,2021,9,1,30,25,1,1,0,8.5928373,8.5928373,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.31,51.53,8.333333333333334,1,1,0,0,13,8,5,0,653.5,420776.81,96326,501228.38,96438.844,5248.6035,0,3310.7083 +349,427,764,763,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.6600037,8.8199701,0,37,0,34.196053,0,3,3,2021,16,5,50,55,1,5,0,14.728618,14.728618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.31,51.53,51.77,58.57,8.333333333333334,1,1,0,0,13,8,5,0,653.5,420776.81,96326,501228.38,96438.844,5248.6035,0,3310.7083 +350,428,765,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.4997282,9.753212,0,11,6,5.3321018,0,2,1,2021,17,5,43,43,1,5,0,37.621094,37.621094,.05,.05,0,0,0,0,0,2,0,0,0,4.1431513,0,48.28,60.18,52.82,53.97,6.666666666666667,1,1,0,0,12,9,5,1,360,406692.97,101678.23,0,0,0,0,5409.4419 +350,429,766,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.0958185,9.1166639,0,11,-6,112.65994,0,1,3,2021,7,0,40,82,1,0,0,28.623396,28.623396,0,0,.05,0,0,0,0,0,0,0,0,4.7314687,0,52.82,53.97,48.28,60.18,8.333333333333334,1,1,0,0,13,9,5,1,453,456295.66,136433.19,280133.34,251649.83,0,0,2637.2886 +350,430,767,-9,765,-9,1,1,22,0,0,1,2,0,0,0,4,0,6.3023615,6.3834949,0,0,-1092.3325,-9,1,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0805125,0,40.52,62.31,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,231,37232.59,68919.422,0,0,0,0,-156.72363 +351,431,768,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,9.0584917,8.4240265,0,0,0,-1091.8971,0,1,1,2021,13,1,60,60,1,1,0,14.612866,14.612866,0,0,0,0,0,0,0,0,0,0,0,0,0,38.12,55.5,-9,-9,5,1,1,0,0,12,2,5,0,156,154441.31,0,0,0,0,0,3066.1797 +352,432,769,-9,774,773,1,1,14,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1038.1406,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,770,-9,774,773,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.70129,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,771,-9,774,773,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.9795,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,772,-9,774,773,1,1,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1094.2615,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,773,774,-9,-9,1,1,48,1,4,0,2,2,-9,0,5,8.7680159,8.9618235,0,17,12,55.331341,0,2,2,2021,6,0,35,35,1,0,0,25.993639,25.993639,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.63,55.6,52,54.51,8.333333333333334,1,1,0,0,4,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +352,432,774,773,-9,-9,1,0,36,1,4,0,1,1,-9,0,3,7.4381685,7.0894704,0,17,-12,44.566452,0,2,2,2021,9,1,18,18,1,1,0,9.7089367,9.7089367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,55.63,55.6,10,1,1,0,0,4,9,4,1,936.33331,402758.28,128836.16,307267.16,0,2154.8169,0,3883.0156 +353,433,775,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,5.5450296,5.6910243,0,0,0,-1044.3928,0,-9,-9,2021,36,12,72,72,1,12,0,.4597272,.4597272,0,0,0,0,0,0,0,0,0,0,0,7.2204599,0,14.91,68.97,-9,-9,6.666666666666667,1,1,0,0,13,9,2,1,1612,80886.875,0,0,0,0,0,370.91193 +354,434,776,777,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,9.0197382,8.5456743,9,-8,-75.124435,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1235318,8.4244041,57.33,53.46,56.76,39.94,8.333333333333334,1,1,0,0,0,7,5,1,1352.5,1544836,1010127,334029.06,0,0,0,4842.2393 +354,434,777,776,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9914517,6.9734759,9,8,-2.1055503,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,6.7281547,0,0,1,1,0,3.0450456,7.553503,56.76,39.94,57.33,53.46,10,1,1,0,0,0,7,5,1,1352.5,1544836,1010127,334029.06,0,0,0,4842.2393 +355,435,778,779,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,0,0,0,22,-6,-2.0102324,0,3,3,2021,7,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4771767,0,54.36,39.67,52.24,50.75,6.666666666666667,1,1,1,0,4,2,3,1,1105.5,896667.19,776987.13,186079.91,0,0,0,1643.4585 +355,435,779,778,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,7.7630839,7.6954193,0,22,6,-53.776398,0,2,2,2021,11,0,36,37,1,0,0,8.3255968,8.3255968,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,54.36,39.67,5,4,5,0,0,11,2,3,1,1105.5,896667.19,776987.13,186079.91,0,0,0,1643.4585 +356,436,780,781,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.9154873,9.1352453,0,10,0,42.214058,0,2,2,2021,6,0,45,40,1,0,0,24.433456,24.433456,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,10,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +356,436,781,780,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.7152843,8.6335335,0,10,0,-50.232037,0,1,1,2021,6,0,45,35,1,0,0,14.294678,14.294678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +356,436,782,-9,781,780,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.66241,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +356,436,783,-9,781,780,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.9623,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,746.75,244400.3,57827.691,287958.22,147044.23,0,2471.7549,5192.9609 +357,437,784,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.0894008,6.9420748,0,0,-885.64941,0,-9,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8607969,5.9622326,50,46,-9,-9,5,1,1,0,0,7,8,2,1,837,558848.81,63511.18,449019.38,0,0,0,1477.7029 +358,438,785,786,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,6.7765765,7.1908288,0,2,14,31.721195,0,2,2,2021,10,0,25,25,1,0,0,3.4260402,3.4260402,.05,.05,.05,0,0,0,0,0,0,0,0,8.2599812,0,54.37,54.8,50,54,8.333333333333334,1,1,0,0,8,2,3,1,283.5,921390.63,607544.31,190698.81,0,0,0,3970.0405 +358,438,786,785,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3107243,8.0502691,0,2,-14,28.475542,-9,-9,-9,2021,10,0,40,0,1,1,0,8.1010084,8.1010084,0,0,0,0,0,0,0,0,0,0,0,1.8039042,0,50,54,54.37,54.8,8,1,1,0,0,1,2,3,1,283.5,921390.63,607544.31,190698.81,0,0,0,3970.0405 +359,439,787,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8992062,8.7332211,0,0,0,-1009.143,0,1,2,2021,11,1,35,35,1,1,0,27.599144,27.599144,0,0,0,0,0,0,0,0,0,0,0,4.1156273,0,43.09,58.28,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,55,1305103,597828.25,589719.06,0,0,0,1989.0916 +359,440,788,-9,787,-9,1,0,30,0,0,0,1,1,-9,0,3,7.9945326,7.7779465,0,0,0,-1120.5769,0,1,-9,2021,11,0,30,30,1,0,1,10.021228,10.021228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.7,54.28,-9,-9,3.333333333333333,1,1,0,0,6,8,4,1,802,-226637.72,-37414.172,0,0,0,0,688.30951 +360,441,789,-9,791,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.6225,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1192.3334,31465.969,-42759.32,0,0,0,0,1552.5419 +360,441,790,-9,791,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.276,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,1192.3334,31465.969,-42759.32,0,0,0,0,1552.5419 +360,441,791,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8394818,7.6031408,0,0,0,-860.64929,0,2,2,2021,12,0,25,25,1,0,0,9.8274937,9.8274937,.05,.05,0,0,0,0,0,0,1,1,0,3.5197096,0,48.45,49.46,-9,-9,10,1,1,0,0,10,9,2,1,1192.3334,31465.969,-42759.32,0,0,0,0,1552.5419 +361,442,792,793,-9,-9,1,1,67,0,1,0,1,1,-9,0,4,8.1051283,8.1580868,0,37,6,88.534081,0,3,2,2021,6,0,40,40,1,0,0,10.590122,10.590122,.05,.05,0,0,0,0,0,0,1,1,0,.46517071,0,57.16,56.15,48,54.77,8.333333333333334,2,3,0,0,14,8,3,0,470.5,299150,249713.88,0,0,0,3901.4902,2345.2495 +361,442,793,792,-9,-9,1,0,61,0,1,0,2,2,-9,0,4,0,0,0,37,-6,76.248642,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,54.77,57.16,56.15,6.666666666666667,2,3,0,1,0,8,3,0,470.5,299150,249713.88,0,0,0,3901.4902,2345.2495 +362,443,794,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,5.609611,5.9732656,5.2322865,0,0,-1015.0239,0,2,2,2021,7,0,4,0,1,0,0,8.3633986,8.3633986,0,0,0,0,0,0,0,74.5,1,1,0,0,5.6011429,56.82,30.99,-9,-9,8.333333333333334,1,1,0,0,4,2,2,0,172,146108.67,193487.28,224716.36,198042.86,0,14730.807,423.98401 +362,444,795,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-969.75848,0,2,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,943,57610.547,0,0,0,0,0,1219.3708 +363,445,796,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.905951,6.5468049,0,0,-1114.1262,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82862163,6.7077565,52,48,-9,-9,7,3,4,0,0,7,6,2,1,1539,147702.56,186914.95,0,0,0,0,426.27344 +364,446,797,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.576683,8.2033148,0,0,0,-912.69849,0,3,2,2021,15,3,80,40,1,3,0,6.6170316,6.6170316,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.15,56.66,-9,-9,6.666666666666667,1,1,0,0,14,5,4,1,37,338990.34,228114.27,187354.5,46279.398,0,1220.5275,1311.167 +365,447,798,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,8.0779829,8.2249422,0,0,-982.57367,0,3,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8594379,8.0427237,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,489,1070654.1,668951.13,215367.53,0,0,0,3224.5247 +366,448,799,800,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.82654,8.00982,0,8,5,-142.61058,0,3,3,2021,15,4,35,35,1,4,0,10.165937,10.165937,.05,.05,0,0,0,0,0,0,0,0,0,.55537122,0,45.15,32.61,35.25,58.05,6.666666666666667,1,1,0,0,8,12,4,1,411.5,222656.91,160179.34,77387.406,37682.508,0,1630.8188,2836.6538 +366,448,800,799,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.0617085,7.6858191,6.926734,8,-5,56.791817,0,2,2,2021,10,0,15,15,1,0,0,8.3833189,8.3833189,.05,.05,0,0,0,0,0,2,0,0,0,3.80896,6.71486,35.25,58.05,45.15,32.61,6.666666666666667,1,1,0,0,5,12,4,1,411.5,222656.91,160179.34,77387.406,37682.508,0,1630.8188,2836.6538 +367,449,801,803,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.4911981,7.4445539,5.5834389,15,-3,161.9659,0,3,3,2021,12,0,16,16,1,0,0,12.210369,12.210369,.05,.05,0,0,0,0,0,0,1,1,0,5.7892346,0,30.77,64.34,48.45,49.46,5,1,1,0,0,15,2,4,1,1164.3334,657734.25,292220.97,322005.78,49348.746,-501.21893,968.07709,2086.5598 +367,449,802,-9,801,803,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-982.2019,-9,2,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.7,51.58,-9,-9,10,1,1,0,0,0,2,4,1,1164.3334,657734.25,292220.97,322005.78,49348.746,-501.21893,968.07709,2086.5598 +367,449,803,801,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.8852725,8.2241945,0,13,3,-20.427757,0,-9,-9,2021,12,0,52,49,1,0,0,5.9497156,5.9497156,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.45,49.46,30.77,64.34,5,1,1,0,0,15,2,4,1,1164.3334,657734.25,292220.97,322005.78,49348.746,-501.21893,968.07709,2086.5598 +368,450,804,805,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.3122239,7.0446715,0,1,-1,-64.423172,-9,-9,-9,2021,11,0,53,0,1,1,0,3.4174478,3.4174478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,57.16,56.15,7,1,1,0,0,13,12,4,1,716.5,248020.09,103926.95,137891.58,0,894.44818,0,1424.2981 +368,450,805,804,807,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9745188,8.1355448,0,1,1,45.913517,-9,2,-9,2021,7,0,30,0,1,0,0,10.709898,10.709898,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49,50,8.333333333333334,1,1,0,0,13,12,4,1,716.5,248020.09,103926.95,137891.58,0,894.44818,0,1424.2981 +368,451,806,-9,805,804,1,0,22,0,0,1,1,0,-9,0,4,0,6.6183333,6.8482738,0,0,-993.55377,-9,2,3,2021,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7634487,0,55.73,53.98,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,57,80696.922,0,0,0,0,0,-395.245 +368,452,807,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,7.3567262,7.3101387,0,0,-805.10773,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,129.59406,0,0,1,1,0,.12331163,7.2420163,44.93,18.74,-9,-9,10,1,1,0,0,0,12,3,1,137,462122.94,182899.45,142212.55,0,1447.4683,0,2115.9604 +369,453,808,810,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.6594687,8.3084364,0,6,-8,103.63475,0,2,2,2021,6,0,65,66,1,0,0,8.6334314,8.6334314,.05,.05,0,0,0,0,0,0,1,1,0,2.8590868,0,57.16,56.15,55.73,53.98,8.333333333333334,1,1,0,0,6,4,4,0,831.33331,47542.383,16403.336,96251.047,35710.082,9911.6396,0,2205.3635 +369,453,809,-9,810,808,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.6939,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,0,831.33331,47542.383,16403.336,96251.047,35710.082,9911.6396,0,2205.3635 +369,453,810,808,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.8385425,6.7996426,0,6,8,-97.457367,0,3,2,2021,5,0,31,15,1,0,0,2.7196739,2.7196739,0,0,0,0,0,0,0,0,1,1,0,0,0,55.73,53.98,57.16,56.15,8.333333333333334,1,1,0,0,3,4,4,0,831.33331,47542.383,16403.336,96251.047,35710.082,9911.6396,0,2205.3635 +369,454,811,-9,810,808,1,1,21,0,1,0,2,2,-9,0,5,7.505393,7.4883323,0,0,0,-1062.2305,0,2,2,2021,9,0,40,45,1,0,1,4.5119648,4.5119648,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,2,4,3,0,1142,88888.039,-115754.36,0,0,0,0,992.72931 +370,455,812,813,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,3.0598059,2.5933523,9,-1,78.203346,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0680094,2.3823974,56.13,32.19,57.7,55.88,10,4,5,0,0,0,2,2,1,151.5,212868.3,59654.363,137305.5,29763.848,0,0,1808.0038 +370,455,813,812,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,7.0747824,6.8332429,9,1,-68.466011,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,6.4442015,6.8150606,57.7,55.88,56.13,32.19,8.333333333333334,2,3,0,0,0,2,2,1,151.5,212868.3,59654.363,137305.5,29763.848,0,0,1808.0038 +371,456,814,-9,819,818,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1020.4844,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,815,-9,819,818,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-994.09888,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,816,-9,819,818,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1004.5488,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,817,-9,819,818,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1138.6014,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,818,819,-9,-9,1,1,48,0,4,0,2,2,-9,0,4,8.5048523,8.5732327,2.9673727,11,1,-70.77282,0,2,3,2021,12,1,50,40,1,1,0,10.471681,10.471681,.05,.05,0,0,0,0,0,0,1,1,0,2.628407,0,48.76,53.24,45.05,59.07,6.666666666666667,1,1,0,0,11,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +371,456,819,818,-9,-9,1,0,47,0,4,0,1,1,-9,0,5,8.5520077,8.5742168,0,11,-1,-94.489586,0,2,3,2021,14,3,30,40,1,3,0,21.779448,21.779448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.05,59.07,48.76,53.24,8.333333333333334,1,1,0,0,11,13,4,1,1032.6666,958208.5,890267.75,158769.81,61614.125,15666.755,6391.335,4266.6748 +372,457,820,-9,822,821,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.463,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,3,0,516,98348.906,41782.109,0,0,0,0,2177.3108 +372,457,821,822,-9,-9,1,1,35,0,1,0,3,3,-9,0,4,8.0232439,7.5282774,0,5,2,-49.556213,0,-9,-9,2021,10,0,40,41,1,1,0,8.1508083,8.1508083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46.08,57.2,7,1,1,0,0,1,2,3,0,516,98348.906,41782.109,0,0,0,0,2177.3108 +372,457,822,821,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.5780249,7.6671109,0,5,-2,-11.326116,0,-9,2,2021,7,0,39,19,1,0,0,5.4032025,5.4032025,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51,56,6.666666666666667,1,1,0,0,7,2,3,0,516,98348.906,41782.109,0,0,0,0,2177.3108 +373,458,823,824,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.4634562,7.9698677,0,36,-3,-83.438416,0,3,2,2021,4,0,10,15,1,0,0,25.76129,25.76129,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.03,50.54,10,1,1,0,0,12,1,4,1,790.5,373661.06,487391.97,173611.03,0,1328.1635,0,2987.9756 +373,458,824,823,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.1797075,8.2606726,36,3,101.43305,0,3,3,2021,8,0,0,37,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.750442,0,46.03,50.54,57.06,57.76,5,1,1,0,0,12,1,4,1,790.5,373661.06,487391.97,173611.03,0,1328.1635,0,2987.9756 +374,459,825,826,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.1948524,7.4176116,8,2,76.861137,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.2724586,7.5947657,51.14,60.45,56.58,14.3,5,1,1,0,0,8,10,2,1,600,835982.75,200524.06,283880.31,0,0,-326.45853,2503.8235 +374,459,826,825,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,8,-2,-69.001907,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,12.909975,20.355494,134.90582,0,1,1,0,0,0,56.58,14.3,51.14,60.45,3.333333333333333,1,1,0,0,4,10,2,1,600,835982.75,200524.06,283880.31,0,0,-326.45853,2503.8235 +374,460,827,-9,826,825,1,1,28,0,0,0,2,2,-9,0,3,7.8814735,8.1122522,0,0,0,-993.61774,0,3,2,2021,12,1,40,42,1,1,0,10.063338,10.063338,.05,.05,0,0,0,0,0,2,1,1,0,0,0,45.43,53.5,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,307,2519.7603,-9186.2813,0,0,0,0,1402.1257 +375,461,828,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.9896798,6.7354918,0,0,-1019.3548,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,.50123495,0,17.761553,0,1,1,0,0,6.5233731,70.62,12.18,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,750,475577.63,45143.43,85709.023,0,0,0,1133.9728 +376,462,829,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.7588015,5.7143011,0,0,-1021.9575,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.0159078,9.441081,21.605034,0,1,1,0,5.3415122,5.9285312,58.11,23.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,803,230448.72,33124.844,238016.38,0,0,0,1236.2119 +377,463,830,831,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.9616046,7.484024,0,1,3,-5.4754257,-9,-9,-9,2021,9,0,54,0,1,1,0,5.4285989,5.4285989,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,50,55,8,1,1,0,0,1,8,4,0,262.5,574019.63,382776.94,473698.06,161202.58,0,0,2532.8721 +377,463,831,830,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.9000368,7.771307,0,19,-3,-137.05119,-9,3,3,2021,10,0,40,0,1,1,0,9.3119669,9.3119669,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,55,52,55,8,4,5,0,1,10,8,4,0,262.5,574019.63,382776.94,473698.06,161202.58,0,0,2532.8721 +377,464,832,-9,831,830,1,0,19,0,0,0,3,3,-9,0,4,7.6839323,7.7529845,0,0,0,-939.15411,-9,2,2,2021,12,0,45,0,1,2,1,7.0930963,7.0930963,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,4,5,0,0,1,8,3,0,1868,-37300.43,0,0,0,11530.936,0,388.50949 +377,465,833,-9,831,830,1,0,21,0,0,0,2,2,-9,0,4,7.6546445,7.5758109,0,0,0,-930.27374,-9,2,2,2021,12,0,20,0,1,2,1,9.7414093,9.7414093,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,5,0,0,1,8,3,0,291,0,0,0,0,0,0,892.55737 +378,466,834,-9,835,836,1,1,27,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1009.0746,0,3,2,2021,19,7,0,28,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.79,62.96,-9,-9,1.666666666666667,2,3,1,0,2,8,1,1,1909,197067.64,0,0,0,0,0,0 +378,467,835,836,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.6635785,6.4987388,0,36,-8,127.65211,0,3,3,2021,12,0,10,10,1,0,0,9.6058149,9.6058149,0,0,0,0,0,0,0,0,0,0,0,1.8134726,0,37.92,53.03,40.64,52.96,8.333333333333334,1,1,0,0,9,8,3,1,748,498228.47,96025.891,360660.19,0,0,0,1825.5652 +378,467,836,835,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.9560833,8.2130575,0,7,8,-39.00602,0,-9,-9,2021,12,0,39,38,1,0,0,4.8646455,4.8646455,.05,.05,0,0,0,0,0,0,0,0,0,3.0886345,0,40.64,52.96,37.92,53.03,6.666666666666667,1,1,0,0,9,8,3,1,748,498228.47,96025.891,360660.19,0,0,0,1825.5652 +379,468,837,838,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.4276628,6.5738063,48,5,-82.303909,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88532215,6.4771285,58.32,50.22,26.98,52.69,10,1,1,0,0,0,12,3,0,1288.5,1305803.5,878085.13,156537.34,0,0,0,3861.3433 +379,468,838,837,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8429995,7.8615065,48,-5,-4.6923828,0,2,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,22.443026,0,0,1,1,0,7.2561364,7.8124895,26.98,52.69,58.32,50.22,5,1,1,0,0,4,12,3,0,1288.5,1305803.5,878085.13,156537.34,0,0,0,3861.3433 +380,469,839,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,3.4104381,3.0737803,0,0,-906.67706,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.2991424,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,119,762915.25,0,335110.47,0,3990.0354,0,633.53265 +381,470,840,841,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,0,0,0,26,3,55.885429,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,40.77,54,54,5,1,1,0,0,0,8,5,1,325.5,538207.25,183373.17,303232.56,177364.23,14397.375,4877.0566,3478.2817 +381,470,841,840,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.148612,9.3231945,0,6,-3,-.89906782,-9,-9,-9,2021,9,0,40,0,1,1,0,36.184769,36.184769,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,54,52.82,40.77,8,1,1,0,0,1,8,5,1,325.5,538207.25,183373.17,303232.56,177364.23,14397.375,4877.0566,3478.2817 +381,471,842,-9,840,841,1,1,23,0,1,0,1,1,-9,0,5,8.1419811,7.8902259,0,0,0,-965.63965,-9,2,1,2021,8,0,38,0,1,0,1,8.6553373,8.6553373,.05,.05,0,0,0,0,0,0,0,0,0,.80038011,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,487,309959.31,94981.023,0,0,0,0,1327.7582 +382,472,843,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,6.2348781,6.1348391,0,0,-935.74603,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2511792,44.34,12.35,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,390,363890.34,0,270573.28,0,0,0,1568.243 +383,473,844,845,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,7.5035939,7.6111679,34,-2,27.937721,0,2,-9,2021,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0582228,7.7913857,60.02,56.42,64.48999999999999,32.7,8.333333333333334,1,1,0,0,8,10,2,1,485.5,656497.19,203430.66,284644.5,0,1812.9872,0,371.52951 +383,473,845,844,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,0,0,34,2,-143.4873,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1236188,0,64.48999999999999,32.7,60.02,56.42,8.333333333333334,1,1,0,0,2,10,2,1,485.5,656497.19,203430.66,284644.5,0,1812.9872,0,371.52951 +383,474,846,-9,844,845,1,1,26,0,0,0,2,2,-9,0,5,8.3717661,8.3680525,0,0,0,-932.96759,0,2,2,2021,6,0,55,38,1,0,0,8.8925648,8.8925648,0,0,0,0,0,0,0,0,0,0,0,.64740276,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,1476,2505.4546,0,0,0,0,0,1080.5129 +384,475,847,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.9889164,8.1808605,0,0,0,-981.03717,0,-9,2,2021,8,0,41,40,1,0,0,7.8489366,7.8489366,.05,.05,0,0,0,0,0,0,0,0,0,3.6686528,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1072,15546.582,-146267.97,0,0,0,0,1275.8396 +385,476,848,849,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.0230188,8.2804108,0,18,-8,64.669449,0,3,2,2021,7,0,43,42,1,0,0,10.61259,10.61259,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.43,59.21,40.77,33.15,8.333333333333334,1,1,0,0,9,1,4,1,1033.5,993080.63,258356.78,277241.56,0,0,0,1513.6235 +385,476,849,848,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,5.6209931,5.668612,18,8,-88.566139,0,-9,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,0,0,0,.09301737,0,0,0,0,0,5.7631273,40.77,33.15,33.43,59.21,6.666666666666667,1,1,0,0,6,1,4,1,1033.5,993080.63,258356.78,277241.56,0,0,0,1513.6235 +386,477,850,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,6.5876174,7.6593204,6.7375388,0,0,-1094.7336,0,1,2,2021,10,2,4,7,1,2,0,25.986221,25.986221,0,0,0,0,0,0,0,0,1,1,0,6.9346623,6.3958111,46.16,50.59,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,336,524549.06,75296.5,489322.84,24344.656,0,0,1978.4156 +387,478,851,852,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,6.9248033,6.7432828,59,0,-62.945518,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.465971,6.7816949,53.97,45.2,41.95,37.91,8.333333333333334,1,1,0,0,0,5,3,1,2445,495388.94,245877.94,164900.72,0,0,0,2952.7695 +387,478,852,851,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.575964,7.2285285,59,0,-20.223225,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0818596,0,0,1,1,0,5.268373,7.3661785,41.95,37.91,53.97,45.2,6.666666666666667,1,1,0,0,0,5,3,1,2445,495388.94,245877.94,164900.72,0,0,0,2952.7695 +388,479,853,854,-9,-9,1,1,78,0,0,0,1,1,-9,0,5,0,8.139554,8.123394,58,-3,70.675323,0,1,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.6636772,8.4280863,56.83,45.47,65.29000000000001,34.81,8.333333333333334,1,1,0,0,0,12,3,1,1057.5,1006240.1,548820.63,306380.41,0,0,0,3755.1211 +388,479,854,853,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,0,0,58,3,-40.075695,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.326386,0,65.29000000000001,34.81,56.83,45.47,8.333333333333334,1,1,0,0,0,12,3,1,1057.5,1006240.1,548820.63,306380.41,0,0,0,3755.1211 +389,480,855,858,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6659975,8.6039762,0,8,-1,.30166709,0,-9,-9,2021,7,0,30,30,1,0,0,23.538504,23.538504,.05,.05,0,0,0,0,0,0,1,1,0,5.6939459,0,48.87,58.55,40.58,60.95,8.333333333333334,1,1,0,0,9,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +389,480,856,-9,855,858,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.71179,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +389,480,857,-9,855,858,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4839,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +389,480,858,855,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,0,5.2361851,5.1737151,8,1,5.3651433,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.6686592,0,40.58,60.95,48.87,58.55,3.333333333333333,1,1,0,0,7,1,4,1,652.75,2466.752,183.63385,106890.51,89285.797,6762.3813,4264.6929,2118.6392 +390,481,859,-9,860,861,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-954.05212,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +390,481,860,861,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,8.3769703,7.9735808,0,15,1,-58.836502,0,2,3,2021,7,0,25,22,1,0,0,19.035992,19.035992,.05,.05,0,0,0,0,0,0,1,1,0,3.2345071,0,58.13,52.93,57.06,57.76,8.333333333333334,1,1,0,0,8,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +390,481,861,860,-9,-9,1,1,32,2,2,0,1,1,-9,0,5,8.9299774,8.8432035,0,14,-1,214.60843,0,1,1,2021,5,0,37,37,1,0,0,25.524836,25.524836,.05,.05,0,0,0,0,0,0,1,1,0,5.3959413,0,57.06,57.76,58.13,52.93,8.333333333333334,1,1,0,0,8,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +390,481,862,-9,860,861,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-966.96722,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,407,676174.5,672130,252076.92,95299.961,7495.8574,0,4717.1274 +391,482,863,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.0514832,7.8242311,0,0,0,-985.80066,0,-9,-9,2021,9,0,30,30,1,0,0,11.049606,11.049606,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,2,4,0,391,377238.13,155612.97,0,0,0,0,1060.3962 +392,483,864,-9,866,865,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-934.21082,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,12,2,0,415,219622.78,212166.52,83556.828,0,0,0,2462.9092 +392,483,865,866,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,0,0,34,9,-30.635557,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.56,22.74,14.06,30.46,5,1,1,0,0,8,12,2,0,415,219622.78,212166.52,83556.828,0,0,0,2462.9092 +392,483,866,865,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,6.5490794,6.6140594,34,0,4.1276069,0,1,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.9439397,0,14.06,30.46,38.56,22.74,0,2,3,0,0,0,12,2,0,415,219622.78,212166.52,83556.828,0,0,0,2462.9092 +393,484,867,872,-9,-9,1,0,34,0,4,0,2,2,-9,0,3,0,0,0,17,-3,142.15384,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.98,57.22,59.43,58.05,8.333333333333334,2,3,0,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,868,-9,867,872,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-961.41473,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,869,-9,867,872,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-943.07092,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,870,-9,867,872,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-936.39984,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,871,-9,867,872,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1094.1865,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +393,484,872,867,-9,-9,1,1,37,0,4,0,2,2,-9,0,5,5.5608025,5.2577186,0,17,3,107.21007,0,3,3,2021,6,0,40,45,1,0,0,.74182796,.74182796,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,48.98,57.22,10,2,3,0,0,9,6,2,0,768.16669,87240.242,-24889.723,0,0,0,0,1044.9065 +394,485,873,-9,874,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.18231,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,776,-94279.984,9939.9941,0,0,0,329.98996,1828.6494 +394,485,874,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.740541,7.6264014,6.152647,0,0,-1094.3777,0,2,2,2021,12,0,24,18,1,0,0,9.1839008,9.1839008,.05,.05,0,0,0,0,0,0,1,1,0,6.2503533,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,14,10,3,0,776,-94279.984,9939.9941,0,0,0,329.98996,1828.6494 +395,486,875,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.1396461,6.5725155,0,0,-995.02179,0,3,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,2.8837864,0,0,1,1,0,6.6513972,6.2557869,33.81,15.92,-9,-9,0,1,1,0,0,10,10,2,1,759,538738.19,235593.59,129486.64,0,0,0,508.03235 +396,487,876,-9,879,877,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.2226,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +396,487,877,879,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,0,0,0,7,5,-63.475433,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,2.984482,0,43.39,42.3,46.63,59.72,6.666666666666667,1,1,1,0,0,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +396,487,878,-9,879,877,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.291,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +396,487,879,877,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.1292534,7.2836251,0,7,-5,-1.4592537,0,3,3,2021,12,0,20,20,1,0,0,9.2925806,9.2925806,0,0,0,0,0,0,0,2,1,0,1,6.4170585,0,46.63,59.72,43.39,42.3,8.333333333333334,1,1,0,0,9,6,2,1,1044.75,-59132.414,6675.5767,59767.492,83821.734,16270.115,0,1760.1633 +397,488,880,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,5.7708836,5.5618739,0,0,-991.19806,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6261382,51,48,-9,-9,7,1,1,0,0,4,13,2,1,2338,492264.5,48270.605,203948.52,0,0,0,1581.8231 +397,489,881,-9,-9,880,1,0,37,0,0,0,1,1,-9,0,4,8.5374222,8.238677,0,0,0,-933.06012,-9,-9,3,2021,12,3,37,0,1,3,1,13.446513,13.446513,.05,.05,0,0,0,0,0,2,1,1,0,4.6620026,0,49.52,55.68,-9,-9,5,1,1,0,0,5,13,5,1,613,-30896.848,-104063.23,0,0,0,0,3179.3567 +398,490,882,883,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,53,-3,24.434412,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2453136,0,54.96,53.17,56.88,40.36,10,1,1,0,0,0,9,3,0,789.5,1510700.5,1219899.1,302351.5,0,0,0,2143.7588 +398,490,883,882,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,8.0125933,7.9219918,0,53,3,-59.658863,0,2,3,2021,6,0,25,26,1,0,0,13.448822,13.448822,0,0,0,1,0,0,0,0,1,1,0,0,0,56.88,40.36,54.96,53.17,8.333333333333334,1,1,0,0,11,9,3,0,789.5,1510700.5,1219899.1,302351.5,0,0,0,2143.7588 +399,491,884,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1051.884,0,-9,-9,2021,13,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.64,62.31,-9,-9,0,1,1,1,1,4,11,1,1,383,-68280.234,0,0,0,0,0,752.211 +399,492,885,886,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,11,0,-23.391275,0,-9,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,13.847961,0,0,1,1,0,0,0,37,25,50.35,48.32,5,1,1,0,1,0,11,3,1,1469.5,1006782.9,709667.31,210331.81,0,0,0,3260.7197 +399,492,886,885,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.220686,7.9151745,11,0,29.687225,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.4914083,8.1178293,50.35,48.32,37,25,10,1,1,0,0,5,11,3,1,1469.5,1006782.9,709667.31,210331.81,0,0,0,3260.7197 +400,493,887,888,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,32,-11,0,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.0303383,0,49.69,52.99,54.1,59.11,5,1,1,0,0,0,1,1,1,596.5,299257.53,38744.996,94840.328,0,386.96893,0,200.13812 +400,493,888,887,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,0,0,32,11,0,0,-9,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3737502,0,54.1,59.11,49.69,52.99,8.333333333333334,1,1,0,0,0,1,1,1,596.5,299257.53,38744.996,94840.328,0,386.96893,0,200.13812 +401,494,889,890,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.7002463,7.7753859,47,4,54.090961,0,3,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0090299,7.9646358,33.33,27.12,35.64,58.06,8.333333333333334,1,1,0,0,0,9,3,1,310.5,1136357.8,522258.03,346745.03,0,0,0,1788.2 +401,494,890,889,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,48,-4,105.42878,0,3,3,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.606019,0,35.64,58.06,33.33,27.12,1.666666666666667,1,1,0,0,0,9,3,1,310.5,1136357.8,522258.03,346745.03,0,0,0,1788.2 +402,495,891,892,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8467894,8.7459021,0,10,2,14.048869,0,2,2,2021,7,0,48,48,1,0,0,16.415838,16.415838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,35.13,58.16,8.333333333333334,1,1,0,0,11,10,5,1,769.5,1269943.3,888622.31,356282.84,0,0,0,1971.2341 +402,495,892,891,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.6732688,7.806776,0,10,-2,81.867142,0,2,2,2021,15,4,32,23,1,4,0,6.4577303,6.4577303,0,0,0,0,0,0,0,0,0,0,0,0,0,35.13,58.16,57.16,56.15,10,1,1,0,0,11,10,5,1,769.5,1269943.3,888622.31,356282.84,0,0,0,1971.2341 +402,496,893,-9,892,891,1,1,25,0,0,0,2,2,-9,0,2,7.8688335,7.8616366,0,0,0,-970.16479,0,2,2,2021,13,1,38,45,1,1,1,7.9531236,7.9531236,.05,.05,0,0,0,0,0,0,0,0,0,1.4140707,0,31.98,54.55,-9,-9,3.333333333333333,1,1,0,1,8,10,4,1,222,97850.75,26014.42,0,0,12513.961,76.473442,1211.0237 +403,497,894,895,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.2294683,9.3746777,0,21,-11,-.22244628,0,-9,-9,2021,6,0,49,47,1,0,0,21.844723,21.844723,0,0,0,0,0,0,0,0,0,0,0,.74498844,0,60.12,54.8,60.29,52.11,8.333333333333334,1,1,0,0,9,12,5,1,694.5,65663.656,0,0,0,0,0,4457.5952 +403,497,895,894,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,22,11,100.92392,0,3,3,2021,9,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7468195,0,60.29,52.11,60.12,54.8,8.333333333333334,1,1,1,0,8,12,5,1,694.5,65663.656,0,0,0,0,0,4457.5952 +404,498,896,898,-9,-9,1,1,26,1,1,0,3,3,-9,1,2,7.4456592,7.3042979,0,3,1,85.115814,0,-9,-9,2021,22,7,42,42,1,7,0,4.9390135,4.9390135,0,0,0,0,0,0,0,0,1,1,0,0,0,23.41,45.01,29.94,38.14,5,1,1,0,0,1,11,2,0,913,-88635.008,-35723.027,39765.73,23545.703,0,0,1376.6079 +404,498,897,-9,898,896,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6581,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,913,-88635.008,-35723.027,39765.73,23545.703,0,0,1376.6079 +404,498,898,896,-9,-9,1,0,25,1,1,0,2,2,-9,0,1,0,0,0,3,-1,10.023911,0,-9,-9,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.94,38.14,23.41,45.01,6.666666666666667,1,1,0,1,6,11,2,0,913,-88635.008,-35723.027,39765.73,23545.703,0,0,1376.6079 +405,499,899,-9,900,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.72467,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,515.5,-62945.633,32908.715,0,0,0,934.62311,2543.4485 +405,499,900,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3578377,8.1120434,7.6702595,0,0,-1099.3051,0,-9,-9,2021,11,0,40,21,1,2,0,5.3847814,5.3847814,.05,.05,0,0,0,0,0,0,1,1,0,7.0016522,0,49,56,-9,-9,7,1,1,0,0,10,4,3,1,515.5,-62945.633,32908.715,0,0,0,934.62311,2543.4485 +406,500,901,902,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,5.2138515,6.9706092,6.6838799,11,-26,-136.28224,0,3,2,2021,18,5,10,20,1,5,0,1.9627961,1.9627961,.05,.05,0,0,0,0,0,14.5,1,0,1,6.2482123,6.6336484,36.28,49.21,61.68,49.95,5,1,1,0,0,5,11,4,0,1334,296858.84,96063.203,197979.98,114911.23,18802.594,0,2802.3428 +406,500,902,901,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.3409624,8.3894663,6.6344538,11,26,70.94149,0,-9,-9,2021,6,0,20,20,1,0,0,22.246851,22.246851,.05,.05,0,0,0,0,0,0,1,0,1,0,6.8670554,61.68,49.95,36.28,49.21,8.333333333333334,1,1,0,0,8,11,4,0,1334,296858.84,96063.203,197979.98,114911.23,18802.594,0,2802.3428 +407,501,903,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1065.1499,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8361169,0,0,1,1,0,0,0,53.98,50.87,-9,-9,0,1,1,0,0,0,7,1,0,307,-130456.95,0,0,0,0,0,1332.8931 +408,502,904,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.3694582,8.364296,0,0,0,-938.69714,0,3,3,2021,11,0,35,35,1,0,0,18.88155,18.88155,0,0,.05,0,0,0,0,0,0,0,0,3.2592626,0,51.95,47.85,-9,-9,6.666666666666667,2,3,0,0,8,8,4,1,445,-7745.6572,16809.223,0,0,0,0,974.57208 +409,503,905,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1027.4563,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.62,58.62,-9,-9,6.666666666666667,2,3,1,0,8,8,1,1,909,0,0,0,0,0,0,0 +410,504,906,-9,908,907,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1161.0103,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,1709.3334,549857.5,316825.72,381129.53,51303.266,0,0,2869.8533 +410,504,907,908,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.2865124,8.7073107,0,5,-1,-6.6554713,0,1,1,2021,5,0,44,38,1,0,0,8.7688923,8.7688923,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,50.34,56.4,10,1,1,0,0,10,10,4,1,1709.3334,549857.5,316825.72,381129.53,51303.266,0,0,2869.8533 +410,504,908,907,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,7.3367372,7.5972323,6.0015011,5,1,3.8469248,0,-9,-9,2021,13,1,18,20,1,1,0,8.4009342,8.4009342,.05,.05,0,0,0,0,0,0,1,1,0,6.3914657,0,50.34,56.4,54.2,57.49,8.333333333333334,1,1,0,0,4,10,4,1,1709.3334,549857.5,316825.72,381129.53,51303.266,0,0,2869.8533 +411,505,909,910,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,7.8052697,7.5795879,52,9,229.45325,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.712328,7.6493034,48.02,40.42,27.99,54.97,8.333333333333334,1,1,0,0,0,9,3,1,429.5,1258463.3,-69796.516,576172.5,0,0,0,2680.2563 +411,505,910,909,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.583766,6.1285682,52,0,-132.41043,0,3,3,2021,25,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9261613,6.6586728,27.99,54.97,48.02,40.42,6.666666666666667,1,1,0,0,0,9,3,1,429.5,1258463.3,-69796.516,576172.5,0,0,0,2680.2563 +412,506,911,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1056.2161,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.45,43.18,-9,-9,8.333333333333334,1,1,0,0,3,7,1,0,2041,150296.09,0,0,0,0,0,1109.7927 +413,507,912,913,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.9250798,5.8751769,1,5,89.077591,-9,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,2.0715268,0,0,1,1,0,6.8932486,6.0392075,41,24,49.98,55.33,0,1,1,0,0,0,7,2,1,352,338493.19,123656.75,293395.16,0,0,0,2092.9111 +413,507,913,912,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,1,-5,-14.506332,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,49.98,55.33,41,24,8.333333333333334,1,1,0,0,0,7,2,1,352,338493.19,123656.75,293395.16,0,0,0,2092.9111 +414,508,914,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.7635427,3.9677386,0,0,-909.69653,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.7615523,0,0,1,1,0,5.6685557,3.9203892,51.02,38.86,-9,-9,10,1,1,0,0,0,12,2,0,398,45852.695,120225.9,0,0,0,0,1693.5302 +415,509,915,916,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.649941,7.8072715,12,0,86.445633,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.0109019,7.5262394,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,4,12,3,1,931,1331947.3,886528.13,238731.14,0,0,0,2299.6128 +415,509,916,915,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.7437134,7.5071797,12,0,-8.5145254,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.0364895,7.5269756,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,12,3,1,931,1331947.3,886528.13,238731.14,0,0,0,2299.6128 +416,510,917,919,-9,-9,1,0,28,0,1,0,2,2,-9,0,2,7.1842394,7.2320232,0,5,-5,125.20722,0,2,2,2021,15,3,24,21,1,3,0,8.5408421,8.5408421,0,0,0,0,0,0,0,0,1,1,0,0,0,46.74,46.62,54.96,53.17,5,1,1,0,0,10,6,4,1,672.66669,-32164.084,-39035.758,0,0,0,242.29321,2409.9336 +416,510,918,-9,917,919,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.96198,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,4,1,672.66669,-32164.084,-39035.758,0,0,0,242.29321,2409.9336 +416,510,919,917,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.1339779,8.1596107,0,5,5,-46.818794,0,-9,-9,2021,9,0,42,43,1,0,0,8.572381,8.572381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,46.74,46.62,6.666666666666667,1,1,0,0,4,6,4,1,672.66669,-32164.084,-39035.758,0,0,0,242.29321,2409.9336 +417,511,920,921,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6503086,8.9615631,0,10,-5,-2.119632,0,3,3,2021,23,11,37,37,1,11,0,18.467739,18.467739,0,0,0,0,0,0,0,0,0,0,0,2.5786774,0,30.77,64.34,54.67,57.49,5,1,1,0,0,15,4,5,1,737,371196.56,233279.83,616431.81,288238.5,53297.316,0,4611.2344 +417,511,921,920,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.7901239,9.0705681,0,10,5,8.3436708,0,-9,-9,2021,9,0,42,37,1,0,0,14.024442,14.024442,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.67,57.49,30.77,64.34,6.666666666666667,1,1,0,0,15,4,5,1,737,371196.56,233279.83,616431.81,288238.5,53297.316,0,4611.2344 +418,512,922,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,3,0,0,0,0,0,-1063.9871,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,2,7,1,0,982,106942.77,0,0,0,1971.8193,0,2490.5586 +418,512,923,-9,922,-9,1,1,11,0,2,1,3,0,-9,0,1,0,0,0,0,0,-918.41681,-9,2,-9,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,32,-9,-9,3,1,1,-9,0,0,7,1,0,982,106942.77,0,0,0,1971.8193,0,2490.5586 +418,512,924,-9,922,-9,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-956.67719,-9,2,-9,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,1,0,982,106942.77,0,0,0,1971.8193,0,2490.5586 +419,513,925,926,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.8933253,7.9030385,0,7,-1,53.182907,0,-9,-9,2021,6,0,38,39,1,0,0,6.911479,6.911479,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,4,4,1,636.5,58610.609,65733.078,0,0,4815.5098,0,3594.2683 +419,513,926,925,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.5351877,8.0243902,0,7,1,-72.993477,0,-9,-9,2021,6,0,44,40,1,0,0,12.990227,12.990227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,4,4,1,636.5,58610.609,65733.078,0,0,4815.5098,0,3594.2683 +420,514,927,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.4601498,7.8712192,5.7457013,0,0,-1072.1812,0,1,1,2021,18,5,30,30,1,5,0,7.2986088,7.2986088,.05,.05,0,0,0,0,0,0,1,0,1,5.1175528,0,42.6,61.6,-9,-9,5,1,1,0,1,8,4,3,0,1481,-22641.15,-39379.195,0,0,5098.9028,1037.9238,1733.7258 +420,514,928,-9,927,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.041,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1481,-22641.15,-39379.195,0,0,5098.9028,1037.9238,1733.7258 +421,515,929,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.6988773,8.8683357,0,0,0,-949.92694,0,1,2,2021,8,0,55,45,1,0,0,15.509277,15.509277,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,103,305465.34,-31088.141,354610.84,126042.56,0,0,2148.8992 +422,516,930,932,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.7153773,6.6936345,22,30,44.512062,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1395035,6.6505327,49.04,55.86,57.06,57.76,5,1,1,0,0,5,9,4,1,2207,1341164.3,646194.31,657698.56,0,0,0,2418.5151 +422,516,931,-9,932,930,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-919.66553,-9,2,2,2021,26,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.47,72.79000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,2207,1341164.3,646194.31,657698.56,0,0,0,2418.5151 +422,516,932,930,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.308918,8.1904078,0,22,-30,48.100147,0,3,2,2021,7,0,60,30,1,0,0,6.6455531,6.6455531,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.04,55.86,10,1,1,0,0,9,9,4,1,2207,1341164.3,646194.31,657698.56,0,0,0,2418.5151 +423,517,933,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.9302511,8.4771938,0,0,0,-962.45593,0,3,2,2021,20,6,36,0,1,6,0,22.304752,22.304752,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.35,43.93,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,342,38803.055,18837.455,0,0,2388.6091,0,2112.822 +424,518,934,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9850593,7.6163778,0,0,-863.00684,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7756777,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,1,7,3,1,403,757436.63,511572.91,0,0,0,0,2030.6075 +425,519,935,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,5.4575443,5.0126429,0,0,0,-941.02344,0,3,3,2021,18,6,3,0,1,6,0,7.9229069,7.9229069,0,0,0,0,0,0,0,0,1,1,0,0,0,44.31,41.84,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,343,50502.828,159333.33,0,0,0,0,717.4682 +425,520,936,-9,935,-9,1,0,22,0,0,0,2,2,-9,0,4,6.2044935,6.3238301,0,0,0,-951.18915,0,3,3,2021,8,0,8,0,1,0,1,6.0525031,6.0525031,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,59.43,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,419,-135637.09,0,0,0,0,0,675.17639 +426,521,937,938,939,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,43,-6,67.033592,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.05,54.17,51.14,60.45,6.666666666666667,1,1,0,0,2,7,3,1,288,875513.5,389528.72,338948.84,0,0,0,2170.7739 +426,521,938,937,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,8.0074615,7.7127891,43,6,-51.281811,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.8713474,51.14,60.45,41.05,54.17,8.333333333333334,1,1,0,0,0,7,3,1,288,875513.5,389528.72,338948.84,0,0,0,2170.7739 +426,522,939,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,5.8067017,6.0920615,0,0,-1017.0626,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9202948,55,43,-9,-9,8,1,1,0,0,0,7,2,1,849,56849.746,39890.469,302316.59,0,0,0,1377.6746 +427,523,940,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.3727751,7.0694013,0,0,-915.91071,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4254866,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,2795,216125.09,271819.09,0,0,0,0,1664.3865 +428,524,941,942,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,7.9694028,7.8306789,0,1,-3,35.266392,0,-9,-9,2021,8,1,43,37,1,1,0,7.397016,7.397016,.05,.05,0,0,0,0,0,0,0,0,0,.055782255,0,58.72,51.29,35.15,61.1,8.333333333333334,1,1,0,0,3,2,5,1,765,175966.56,-19044.711,116707.48,93047.672,-7.6494484,3751.1333,3287.2925 +428,524,942,941,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.3376913,8.4014378,0,1,3,-25.313316,-9,-9,-9,2021,17,5,62,0,1,5,0,7.3584371,7.3584371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.15,61.1,58.72,51.29,5,1,1,0,0,1,2,5,1,765,175966.56,-19044.711,116707.48,93047.672,-7.6494484,3751.1333,3287.2925 +429,525,943,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.5789528,8.4855757,0,0,0,-1003.5833,-9,2,-9,2021,14,4,38,0,1,4,0,15.350166,15.350166,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.41,50.07,-9,-9,6.666666666666667,1,1,0,0,11,4,5,1,911,148172.25,18384.1,0,0,0,0,2012.2367 +429,526,944,-9,943,-9,1,0,21,0,0,0,2,2,-9,0,1,0,0,0,0,0,-941.13184,-9,2,-9,2021,25,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.09,37.12,-9,-9,3.333333333333333,1,1,1,0,0,4,1,1,755,-4062.7278,0,0,0,0,0,0 +430,527,945,946,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.5191951,7.6557283,0,2,0,-58.183945,0,-9,-9,2021,10,0,30,38,1,0,0,5.9233918,5.9233918,0,0,0,0,0,0,0,0,0,0,0,.86713326,0,47.61,53.7,60.02,56.42,8.333333333333334,1,1,0,0,6,11,5,1,1448.5,182905,54814.895,308248.63,222404.84,4291.6372,16413.357,3320.9189 +430,527,946,945,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.9387465,8.5803204,0,2,0,-21.346766,0,2,1,2021,9,0,38,38,1,0,0,16.690228,16.690228,.05,.05,0,0,0,0,0,0,0,0,0,3.7296772,0,60.02,56.42,47.61,53.7,10,1,1,0,0,7,11,5,1,1448.5,182905,54814.895,308248.63,222404.84,4291.6372,16413.357,3320.9189 +431,528,947,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,6.8006096,7.0087276,0,0,-1036.8035,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7430401,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,944,118805.82,-5513.1777,0,0,0,0,773.37537 +432,529,948,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,6.9801927,7.2550669,0,0,-1041.6632,0,2,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8547931,6.9339166,18.99,33.71,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,7575,318903.59,187731,62025.926,0,0,0,853.70129 +433,530,949,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1770248,8.4979849,0,0,0,-1019.6105,0,2,3,2021,8,0,24,26,1,0,0,15.624133,15.624133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,280,663574.44,404946.13,155735,40231.789,6985.3789,0,1945.9067 +433,531,950,-9,949,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-879.9165,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,1605,204779.91,0,0,0,0,0,1.2515471 +434,532,951,-9,952,953,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1104.8702,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +434,532,952,953,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7422509,7.0452175,0,16,-3,-81.803215,0,2,3,2021,6,0,26,23,1,0,0,8.8137741,8.8137741,.05,.05,0,0,0,0,0,0,1,1,0,1.6710058,0,60.12,54.8,60.02,56.42,1.666666666666667,1,1,0,0,9,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +434,532,953,952,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,8.82658,9.1922216,0,16,3,-158.99625,0,-9,-9,2021,6,0,40,40,1,0,0,19.504011,19.504011,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.12,54.8,8.333333333333334,1,1,0,0,9,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +434,532,954,-9,952,953,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.0532,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,470,420288.13,125533.38,321682.28,163006.77,0,-233.21239,4888.1216 +435,533,955,956,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.2532101,9.1015539,8.0531235,38,3,-82.802666,0,-9,-9,2021,8,0,19,37,1,0,0,24.221088,24.221088,0,0,0,0,0,0,0,0,0,0,0,7.4447351,8.4115009,60.02,56.42,57.16,56.15,1.666666666666667,1,1,0,0,10,13,5,1,524.5,1996536.5,1421341.8,491664.63,0,0,0,5399.4326 +435,533,956,955,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5317235,7.307313,0,38,-3,89.419746,0,-9,-9,2021,6,0,24,16,1,0,0,5.9743366,5.9743366,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,10,13,5,1,524.5,1996536.5,1421341.8,491664.63,0,0,0,5399.4326 +436,534,957,958,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.851759,7.881309,12,-2,5.8368659,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8269591,7.5952225,57.16,56.15,50,49,8.333333333333334,1,1,0,0,11,9,4,1,829,2439413,1466943.3,913307.38,0,0,0,4884.0664 +436,534,958,957,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.2164478,7.8175273,12,2,-24.304876,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9875941,8.0228443,50,49,57.16,56.15,7,1,1,0,0,11,9,4,1,829,2439413,1466943.3,913307.38,0,0,0,4884.0664 +437,535,959,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.6607599,8.0054398,0,0,-961.70093,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3495922,8.1658039,46.56,50.26,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,1230,302509.56,65775.586,0,0,0,0,1869.8362 +438,536,960,-9,-9,-9,1,0,35,0,2,0,3,3,-9,1,3,0,0,0,0,0,-1027.8092,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.8145986,0,33.81,45.39,-9,-9,5,1,1,1,0,0,4,1,0,252,-180708.38,0,0,0,0,0,1393.6334 +438,537,961,-9,960,962,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-924.16608,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,1,0,1571.6666,237528.38,153260.73,187843.33,0,8340.2188,0,0 +438,537,962,-9,-9,-9,1,1,54,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1044.5198,-9,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.79,56.27,-9,-9,3.333333333333333,1,1,1,0,3,4,1,0,1571.6666,237528.38,153260.73,187843.33,0,8340.2188,0,0 +438,537,963,-9,960,962,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.4606,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,1571.6666,237528.38,153260.73,187843.33,0,8340.2188,0,0 +439,538,964,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,7.6717858,7.7372823,0,0,0,-959.20227,0,3,2,2021,6,0,24,24,1,0,0,13.170554,13.170554,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,3,4,0,0,12,8,3,1,1248,0,0,0,0,0,0,809.17133 +439,539,965,-9,964,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1058.844,1,2,-9,2021,12,0,0,45,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,58,-9,-9,7,1,1,0,0,4,8,1,1,768,0,0,0,0,0,0,0 +440,540,966,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-884.06909,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,7.9256754,10.399461,56.580967,0,1,1,0,0,0,33.08,24.12,-9,-9,3.333333333333333,1,1,0,0,0,11,1,0,555,43945.191,0,0,0,0,0,1438.9999 +441,541,967,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.5278263,8.4090052,0,0,0,-895.38745,-9,-9,-9,2021,12,0,35,0,1,0,0,12.587462,12.587462,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,8,3,0,550.5,166090.95,0,282267.53,223642.58,0,6700.2852,2828.4814 +441,541,968,-9,967,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.0676,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,550.5,166090.95,0,282267.53,223642.58,0,6700.2852,2828.4814 +442,542,969,970,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.5608425,7.5057449,4.9134483,40,-3,-2.5262151,0,2,2,2021,9,0,43,45,1,0,0,6.9396882,6.9396882,.05,.05,0,0,0,0,0,7,1,1,0,4.7889538,0,59.43,58.05,41.2,37.99,8.333333333333334,1,1,0,0,12,2,4,1,877,923832.63,754592.19,132151.52,0,-327.3476,0,2304.1743 +442,542,970,969,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,8.1126394,8.172493,5.6218967,11,3,-28.294025,0,-9,-9,2021,11,2,45,37,1,2,0,8.5788584,8.5788584,.05,.05,0,0,0,0,0,2,1,1,0,3.764627,5.2338214,41.2,37.99,59.43,58.05,10,1,1,0,0,12,2,4,1,877,923832.63,754592.19,132151.52,0,-327.3476,0,2304.1743 +442,543,971,972,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.0496988,8.1170864,0,1,-3,132.28719,-9,-9,-9,2021,4,0,37,0,1,0,0,6.7366376,6.7366376,.05,.05,0,0,0,0,0,2,1,1,0,2.003263,0,58.15,52.91,34.07,46.41,8.333333333333334,1,1,0,0,10,2,4,1,584,43677.148,-42142.684,144129.38,132983.53,1636.7092,502.53714,2573.4912 +442,543,972,971,970,969,1,1,31,0,0,0,2,2,-9,0,3,8.3077431,8.2979565,0,1,3,22.300531,0,2,2,2021,11,3,44,47,1,3,0,8.9601622,8.9601622,.05,.05,0,0,0,0,0,2,1,1,0,.44719079,0,34.07,46.41,58.15,52.91,8.333333333333334,1,1,0,0,11,2,4,1,584,43677.148,-42142.684,144129.38,132983.53,1636.7092,502.53714,2573.4912 +443,544,973,974,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.2101912,6.4019885,9,7,-79.296768,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2035975,60.7,45.66,63.11,34.3,8.333333333333334,1,1,0,0,0,13,2,1,129.5,1849.2813,66336.781,88486.625,56393.883,0,0,784.97449 +443,544,974,973,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,9,-7,-59.766083,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8249724,0,63.11,34.3,60.7,45.66,10,1,1,0,0,1,13,2,1,129.5,1849.2813,66336.781,88486.625,56393.883,0,0,784.97449 +444,545,975,-9,-9,-9,1,1,49,0,1,0,2,2,-9,1,1,7.7057371,7.8676548,0,0,0,-1030.4849,0,3,3,2021,28,8,32,30,1,8,0,8.6358356,8.6358356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.75,19.69,-9,-9,1.666666666666667,4,2,0,0,15,4,3,1,981,28815.723,-60253.051,0,0,13540.238,0,2210.6572 +444,545,976,-9,-9,975,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.4525,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,3,1,981,28815.723,-60253.051,0,0,13540.238,0,2210.6572 +445,546,977,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1101.3866,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8266246,0,47.15,56.66,-9,-9,10,1,1,0,0,11,9,2,1,477,13417.778,0,0,0,-1399.9093,0,-256.2995 +446,547,978,979,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.8358655,6.7988801,38,0,-11.379856,0,2,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8030877,6.5059485,62.39,56.71,63.39,42.39,10,1,1,0,0,0,2,2,1,2315,630329.56,410684.38,424991.59,0,0,0,2231.0593 +446,547,979,978,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.7412534,6.1547585,38,9,-31.598249,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.007915,6.0706787,63.39,42.39,62.39,56.71,8.333333333333334,1,1,0,0,0,2,2,1,2315,630329.56,410684.38,424991.59,0,0,0,2231.0593 +447,548,980,982,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.5654316,8.6536608,0,11,4,12.995522,0,2,2,2021,10,0,39,40,1,0,0,15.385715,15.385715,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.62,58.62,39.15,49.76,8.333333333333334,1,1,0,0,10,9,5,1,477,637721.13,303782.06,337378.75,191098.36,0,0,3546.2842 +447,548,981,-9,982,980,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.11743,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,477,637721.13,303782.06,337378.75,191098.36,0,0,3546.2842 +447,548,982,980,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.392374,8.3268604,0,7,-4,-16.552349,0,2,2,2021,17,5,27,34,1,5,0,14.389814,14.389814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.15,49.76,46.62,58.62,6.666666666666667,1,1,0,0,9,9,5,1,477,637721.13,303782.06,337378.75,191098.36,0,0,3546.2842 +448,549,983,984,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.5677547,8.7158604,0,17,5,-34.777958,0,2,2,2021,6,0,40,40,1,0,0,25.091034,25.091034,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51,52.08,6.666666666666667,2,3,0,0,12,8,5,1,210,433680.31,21549.973,335538.44,100378.88,7303.4092,259.22784,3678.9961 +448,549,984,983,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.3837852,8.4242239,0,17,-5,-22.185972,0,2,3,2021,11,0,38,43,1,0,0,13.052747,13.052747,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51,52.08,54.37,54.8,8.333333333333334,2,3,0,0,12,8,5,1,210,433680.31,21549.973,335538.44,100378.88,7303.4092,259.22784,3678.9961 +449,550,985,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,7.2362795,7.0776024,0,0,-1158.0715,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4744401,7.1093698,51.64,37.25,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,367,395668.34,290417.66,299953.25,0,0,0,735.01367 +450,551,986,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.5162182,9.4575882,0,0,0,-896.57172,0,2,2,2021,6,0,80,80,1,0,0,17.036127,17.036127,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,79,3967408,3252456.3,172172.92,0,0,0,3804.4519 +451,552,987,988,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,10,-5,-53.487961,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.08,33.03,51,48,3.333333333333333,1,1,0,0,3,10,2,0,486.5,333191.69,39766.621,239759.28,0,0,0,1443.4912 +451,552,988,987,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,2.9612789,3.3746607,10,5,5.7868967,0,3,2,2021,10,0,0,57,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7586946,3.1015027,51,48,47.08,33.03,7,1,1,0,0,0,10,2,0,486.5,333191.69,39766.621,239759.28,0,0,0,1443.4912 +452,553,989,990,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.9657292,6.7844272,9,-3,41.980949,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8411007,43.99,60.71,61.86,22.96,8.333333333333334,1,1,0,0,9,11,2,0,1151,726114.25,198858.63,199842.11,0,0,0,1419.4497 +452,553,990,989,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,3,10.224464,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,5.4828439,0,0,1,1,0,0,0,61.86,22.96,43.99,60.71,8.333333333333334,1,1,0,0,0,11,2,0,1151,726114.25,198858.63,199842.11,0,0,0,1419.4497 +453,554,991,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1058.3389,0,3,2,2021,6,0,0,56,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,12,10,2,0,429,106270.48,82224.711,0,0,0,0,128.53763 +454,555,992,993,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.5367384,6.5553141,60,5,46.656498,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,6.5631485,0,0,1,1,0,7.4184918,6.5698814,61.19,33.88,59.06,40.35,8.333333333333334,1,1,0,0,0,7,2,1,1854.5,242161,-30358.629,255813.66,0,0,0,1556.7866 +454,555,993,992,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,4.033051,4.2139969,60,-5,52.976509,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1540594,4.1511526,59.06,40.35,61.19,33.88,8.333333333333334,1,1,0,0,0,7,2,1,1854.5,242161,-30358.629,255813.66,0,0,0,1556.7866 +455,556,994,995,-9,-9,1,0,29,0,0,0,1,1,1,0,3,8.2404804,8.6301947,0,4,0,-203.07127,-9,2,2,2021,13,3,38,0,1,3,0,13.737831,13.737831,0,0,0,0,0,0,0,0,0,0,0,0,0,56.67,42.78,38.06,52.59,8.333333333333334,1,1,0,0,7,10,4,1,450,13695.125,-45664.859,0,0,2230.5322,0,2836.0366 +455,556,995,994,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.2622709,7.9150085,0,4,0,128.38722,-9,-9,-9,2021,20,8,40,0,1,8,0,9.0205564,9.0205564,0,0,0,0,0,0,0,0,0,0,0,0,0,38.06,52.59,56.67,42.78,5,1,1,0,0,9,10,4,1,450,13695.125,-45664.859,0,0,2230.5322,0,2836.0366 +456,557,996,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-944.3761,0,3,-9,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,37.23,18.31,-9,-9,5,1,1,0,0,0,10,1,0,951,82986.813,0,0,0,0,0,848.49548 +457,558,997,-9,999,998,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1195.6061,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,1191,633025.31,26749.889,421591.03,0,0,0,2917.467 +457,558,998,999,-9,-9,1,1,43,0,1,0,1,1,-9,0,2,8.4480028,8.4134064,0,10,-7,32.565437,0,-9,-9,2021,13,1,40,50,1,1,0,15.013024,15.013024,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,34.44,48.18,22.09,53.69,0,2,3,0,0,14,9,4,1,1191,633025.31,26749.889,421591.03,0,0,0,2917.467 +457,558,999,998,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.4295526,7.3906026,0,10,7,25.426468,0,3,3,2021,15,2,32,12,1,2,0,4.2943978,4.2943978,0,0,0,0,0,0,0,0,1,1,0,0,0,22.09,53.69,34.44,48.18,0,2,3,0,0,12,9,4,1,1191,633025.31,26749.889,421591.03,0,0,0,2917.467 +457,559,1000,-9,999,998,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1032.9683,-9,3,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1283264,0,52.76,47.24,-9,-9,6.666666666666667,2,3,0,0,1,9,1,1,463,129666.64,0,0,0,0,0,-301.59659 +458,560,1001,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.8766961,8.2706165,0,0,-1049.7708,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.540535,7.921844,39.61,38.46,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,908,201347.05,21319.609,347981.63,0,0,0,1853.094 +459,561,1002,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.1246843,8.5489502,0,0,0,-864.56293,0,2,2,2021,8,1,38,38,1,1,0,17.853235,17.853235,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.46,52.7,-9,-9,8.333333333333334,4,2,0,0,14,2,5,0,853,286186.38,143973.2,0,0,0,0,1777.3953 +460,562,1003,1004,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.5437078,5.7417822,7,8,22.234898,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8321242,5.596633,57.16,56.15,57.06,57.76,10,1,1,0,0,0,10,2,1,709.5,225285.3,24187.076,168463.78,0,0,0,552.18463 +460,562,1004,1003,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,0,5.6565342,5.6303697,7,-8,21.266132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4312654,6.0700135,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,1,10,2,1,709.5,225285.3,24187.076,168463.78,0,0,0,552.18463 +461,563,1005,1006,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.9811988,6.8918791,37,-4,-3.0834017,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.1534257,7.1234121,60.06,39.82,47.33,58,8.333333333333334,1,1,0,0,4,5,5,1,492,2232781.5,1736843.1,416734.94,0,2540.7822,0,4558.7598 +461,563,1006,1005,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,8.4274292,8.6691074,7.7499604,37,4,-132.07811,0,-9,-9,2021,12,1,40,46,1,1,0,14.248457,14.248457,.05,.05,0,0,0,0,0,2,0,0,0,3.5870345,7.8553095,47.33,58,60.06,39.82,8.333333333333334,1,1,0,0,9,5,5,1,492,2232781.5,1736843.1,416734.94,0,2540.7822,0,4558.7598 +462,564,1007,-9,1009,1010,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.20325,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +462,564,1008,-9,1009,1010,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.1586,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +462,564,1009,1010,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5545111,8.4994841,0,18,-2,35.178257,0,1,1,2021,10,1,34,35,1,1,0,14.576028,14.576028,.05,.05,0,0,0,0,0,0,0,0,0,5.2734962,0,65.55,30.4,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +462,564,1010,1009,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.5003576,9.3967934,0,18,2,-25.97887,0,2,2,2021,8,0,48,52,1,0,0,34.148823,34.148823,.05,.05,0,0,0,0,0,0,0,0,0,5.2876735,0,57.06,57.76,65.55,30.4,8.333333333333334,1,1,0,0,13,9,5,1,1018,852218,337216.69,427579.94,185500.47,0,0,7058.2588 +463,565,1011,1013,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.5533104,8.5946407,0,7,-7,-29.125368,0,2,2,2021,8,0,40,37,1,0,0,16.370556,16.370556,0,0,0,0,0,0,0,0,0,0,0,.38240358,0,41.07,60.93,49.58,55.59,3.333333333333333,1,1,0,0,8,12,4,1,829.33331,61085.355,0,84967.258,95477.078,6630.4941,0,3121.3496 +463,565,1012,-9,1013,1011,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.92749,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,829.33331,61085.355,0,84967.258,95477.078,6630.4941,0,3121.3496 +463,565,1013,1011,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,7.6049409,7.4194088,5.5345192,7,7,-127.03134,0,2,2,2021,4,0,45,38,1,0,0,4.2176881,4.2176881,0,0,0,0,0,0,0,42,0,0,0,5.9349055,0,49.58,55.59,41.07,60.93,8.333333333333334,1,1,0,0,7,12,4,1,829.33331,61085.355,0,84967.258,95477.078,6630.4941,0,3121.3496 +463,566,1014,-9,1013,1011,1,1,18,0,1,0,2,2,1,0,5,8.4614983,8.3690958,0,0,0,-998.15179,-9,2,1,2021,6,0,45,0,1,0,1,12.177087,12.177087,0,0,0,0,0,0,0,0,0,0,0,2.9836295,0,54.69,57.47,-9,-9,10,1,1,0,0,1,12,4,1,1280,-107471.46,0,0,0,0,0,1120.0515 +464,567,1015,1018,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.5878878,8.123806,0,4,-3,81.077843,0,3,3,2021,20,8,49,42,1,8,0,10.304123,10.304123,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,52.72,55.58,6.666666666666667,1,1,0,0,12,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +464,567,1016,-9,1015,1018,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.86359,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +464,567,1017,-9,1015,1018,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.63379,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +464,567,1018,1015,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,7.0675864,7.2660856,0,4,3,-14.750841,0,3,3,2021,8,0,40,40,1,0,0,4.8811193,4.8811193,.05,.05,0,0,0,0,0,0,1,1,0,2.1762135,0,52.72,55.58,49.52,56.95,8.333333333333334,1,1,0,0,9,5,4,1,612,476602.81,356389,91788.469,40206.246,21894.439,1848.1987,3096.9275 +465,568,1019,1020,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.2191706,8.4829502,0,9,1,-131.08229,0,-9,-9,2021,10,0,38,40,1,1,0,14.36651,14.36651,0,0,0,0,0,0,0,0,0,0,0,5.6120338,0,51,49,47.07,53.97,7,1,1,0,0,1,5,4,1,1263,326129.03,172381.09,137427.91,0,0,0,2007.0049 +465,568,1020,1019,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,5.635376,5.6265211,38,-1,-46.607903,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4552021,5.2566051,47.07,53.97,51,49,8.333333333333334,1,1,1,0,0,5,4,1,1263,326129.03,172381.09,137427.91,0,0,0,2007.0049 +466,569,1021,1022,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.2823782,9.6224794,0,9,0,-23.527805,0,1,1,2021,8,1,23,45,1,1,0,55.945702,55.945702,0,0,.05,0,0,0,0,0,0,0,0,5.9306698,0,46.5,58.26,57.16,56.15,5,1,1,0,0,10,10,5,0,621.5,654481.88,32179.625,361873.13,81915.672,1404.9801,856.20013,7192.7461 +466,569,1022,1021,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.070425,9.2920799,0,9,0,126.23643,0,-9,-9,2021,8,0,38,48,1,0,0,36.150959,36.150959,0,0,.05,0,0,0,0,0,0,0,0,5.3245926,0,57.16,56.15,46.5,58.26,6.666666666666667,1,1,0,0,10,10,5,0,621.5,654481.88,32179.625,361873.13,81915.672,1404.9801,856.20013,7192.7461 +467,570,1023,1024,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.5290794,7.5420852,7,1,123.01589,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1707044,7.7100258,52,47,50,47,7,1,1,0,0,0,4,3,1,412,1060336.5,400160.38,233923.44,0,0,0,3032.9263 +467,570,1024,1023,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,-1,30.407656,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4508061,0,50,47,52,47,7,1,1,0,0,3,4,3,1,412,1060336.5,400160.38,233923.44,0,0,0,3032.9263 +467,571,1025,-9,1024,1023,1,1,42,0,0,0,3,3,-9,0,4,9.0817251,8.8603048,0,0,0,-999.0733,0,3,3,2021,8,1,40,40,1,1,0,23.663506,23.663506,0,0,0,0,0,0,0,0,1,1,0,3.6979949,0,41.17,59.31,-9,-9,1.666666666666667,1,1,0,0,9,4,5,1,1321,19267.346,96412.648,0,0,0,0,2531.4077 +468,572,1026,1028,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.1847696,7.9352078,0,1,-1,-39.399208,-9,-9,-9,2021,11,1,60,0,1,1,0,6.9645033,6.9645033,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.01,48.98,55.84,27.14,3.333333333333333,1,1,0,0,6,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +468,572,1027,-9,1026,1028,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1033.3993,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +468,572,1028,1026,-9,-9,1,1,42,0,2,0,2,2,-9,0,1,7.2482662,7.138257,0,1,1,-60.778656,-9,-9,-9,2021,7,1,30,0,1,1,0,4.4138036,4.4138036,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.84,27.14,52.01,48.98,8.333333333333334,1,1,0,1,11,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +468,572,1029,-9,1026,1028,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6566,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,611.5,157615.11,175416.64,33434.133,0,29675.619,0,1953.5776 +469,573,1030,1031,-9,-9,1,0,52,0,0,0,2,2,-9,1,4,0,0,0,31,-2,-114.67033,0,1,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,120,1,1,0,0,0,53.54,52.35,52,54.51,6.666666666666667,1,1,0,0,3,12,5,1,1154.5,1094411,636739.31,336488.22,0,0,0,3835.864 +469,573,1031,1030,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.2993355,9.4339314,0,31,2,194.45493,0,2,2,2021,8,0,40,41,1,0,0,35.276009,35.276009,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,52,54.51,53.54,52.35,8.333333333333334,1,1,0,0,12,12,5,1,1154.5,1094411,636739.31,336488.22,0,0,0,3835.864 +470,574,1032,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1011.7171,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,7.33,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,397,50907.793,0,0,0,0,0,876.57373 +471,575,1033,1034,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.5513792,8.4701099,0,25,-11,76.582863,0,2,2,2021,11,0,47,50,1,0,0,9.9370089,9.9370089,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.26,60.7,8.333333333333334,1,1,0,0,11,9,5,1,548,1287970.9,549263.38,718418.38,132379.13,3943.8489,0,6372.439 +471,575,1034,1033,-9,-9,1,1,57,0,1,0,1,1,-9,0,3,9.5887356,9.6288395,0,25,11,-41.272015,0,2,2,2021,15,5,53,45,1,5,0,33.213818,33.213818,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,38.26,60.7,57.16,56.15,3.333333333333333,1,1,0,0,14,9,5,1,548,1287970.9,549263.38,718418.38,132379.13,3943.8489,0,6372.439 +471,575,1035,-9,1033,1034,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-949.45691,0,1,1,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,.31717139,0,0,0,0,1.2393956,0,22.42,68.11,-9,-9,5,1,1,0,0,1,9,5,1,548,1287970.9,549263.38,718418.38,132379.13,3943.8489,0,6372.439 +472,576,1036,1037,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.4491482,8.6003027,0,10,-2,-92.192047,0,3,-9,2021,6,0,42,40,1,0,0,14.817058,14.817058,.05,.05,0,0,0,0,0,0,0,0,0,6.6852012,0,59.43,58.05,59.53,56.44,10,1,1,0,0,12,10,5,1,1122,1116756.3,857965.19,348287.22,22753.049,1859.6841,0,4715.6846 +472,576,1037,1036,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.9678802,8.2659931,6.6779418,10,2,42.850967,0,3,3,2021,7,0,19,18,1,0,0,17.166042,17.166042,.05,.05,0,0,0,0,0,0,0,0,0,7.2295265,0,59.53,56.44,59.43,58.05,8.333333333333334,1,1,0,0,12,10,5,1,1122,1116756.3,857965.19,348287.22,22753.049,1859.6841,0,4715.6846 +473,577,1038,1039,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.2163467,7.5543089,36,-5,56.228306,0,3,2,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.184226,44.12,48.5,43.6,51.61,6.666666666666667,1,1,0,0,3,2,4,1,549,1469051.5,1133900.1,229083.63,0,0,0,3293.5793 +473,577,1039,1038,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.7649403,7.928812,11,5,62.334858,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8843751,7.6665182,43.6,51.61,44.12,48.5,8.333333333333334,1,1,0,0,0,2,4,1,549,1469051.5,1133900.1,229083.63,0,0,0,3293.5793 +474,578,1040,1041,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.6510248,9.4074183,0,10,-1,67.063393,0,2,2,2021,7,0,56,62,1,0,0,26.636536,26.636536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.34,54.26,8.333333333333334,1,1,0,0,7,8,5,1,506,644560.38,461092.66,479161.81,281525.09,1714.158,0,12522.75 +474,578,1041,1040,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,9.5543232,9.5168152,0,10,1,82.106476,0,3,1,2021,6,0,70,70,1,0,0,23.141512,23.141512,.05,.05,0,0,0,0,0,0,1,1,0,6.533793,0,55.34,54.26,57.06,57.76,8.333333333333334,1,1,0,0,7,8,5,1,506,644560.38,461092.66,479161.81,281525.09,1714.158,0,12522.75 +475,579,1042,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,3,0,0,0,0,0,-901.3996,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9342368,0,44.6,42.84,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,596,-71697.063,0,0,0,0,0,-9.1602306 +476,580,1043,1044,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.7094183,7.8084908,45,1,-4.228313,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8839545,7.6941175,57.16,56.15,60.03,50.88,8.333333333333334,1,1,0,0,3,2,3,1,387.5,1284326,779223.25,225963.2,0,0,0,3100.2993 +476,580,1044,1043,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,6.7005963,7.0115132,45,-1,-160.51601,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0940533,60.03,50.88,57.16,56.15,10,1,1,0,0,4,2,3,1,387.5,1284326,779223.25,225963.2,0,0,0,3100.2993 +477,581,1045,1046,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,5.7693906,4.7901587,49,23,.18387769,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,2.1986859,6.4897084,17.73148,0,1,1,0,3.9327571,5.2384453,53.54,34.39,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,1785.5,3023544,251108.02,464262.44,0,0,0,2861.0156 +477,581,1046,1045,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.4756885,7.591094,49,-23,79.866302,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5116532,7.8364973,57.16,56.15,53.54,34.39,8.333333333333334,1,1,0,0,0,10,3,1,1785.5,3023544,251108.02,464262.44,0,0,0,2861.0156 +478,582,1047,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.8128729,7.0440264,0,0,-947.84967,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,27,1,1,0,2.810216,6.9529204,47.95,21.46,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,306,188323.09,0,148274.45,0,0,0,756.3631 +479,583,1048,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,5,0,8.7307959,8.6184549,0,0,-1006.92,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3153176,8.3406277,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,151,621234.75,219206.25,205821.41,0,0,0,3259.2859 +480,584,1049,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7931037,8.4324932,7.0583348,0,0,-875.33929,0,2,2,2021,11,1,15,35,1,1,0,20.874115,20.874115,.05,.05,0,0,0,0,.62173563,0,0,0,0,.60527939,6.7640252,39.96,48.03,-9,-9,6.666666666666667,1,1,0,0,15,7,4,1,2090,-269139.97,153978.55,0,0,0,-526.09448,1488.8463 +481,585,1050,-9,-9,-9,1,1,66,0,0,0,2,2,-9,1,3,0,7.4905992,7.5960131,0,0,-893.04199,0,2,1,2021,27,12,0,38,3,12,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.649847,28.86,57.42,-9,-9,5,1,1,0,0,10,7,3,1,737,571421.94,272064.47,170250.08,0,1564.6932,0,1124.8523 +482,586,1051,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.1478281,6.0734577,0,0,0,-1064.6732,0,-9,-9,2021,13,3,7,7,1,3,0,6.6810193,6.6810193,0,0,0,0,0,0,0,0,0,0,0,0,0,47.04,32.59,-9,-9,8.333333333333334,2,3,0,0,6,5,2,1,2507,1318648.6,126891.76,207724.81,0,0,0,68.965057 +483,587,1052,-9,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,8.5676222,8.8001432,0,0,0,-902.53186,0,2,2,2021,8,0,37,37,1,0,0,18.833384,18.833384,.05,.05,0,0,0,0,0,0,1,1,0,3.9397614,0,52.6,52.88,-9,-9,6.666666666666667,4,2,0,0,9,6,4,1,463,530629.63,467253.41,137844.58,72208.93,956.98126,0,3038.448 +483,588,1053,-9,-9,1052,1,0,26,0,1,0,1,1,-9,0,4,7.8070278,8.0796766,6.0007882,0,0,-1048.9542,0,-9,1,2021,11,0,40,16,1,2,1,8.9472027,8.9472027,.05,.05,0,0,0,0,0,0,1,1,0,6.1810966,0,48,57,-9,-9,7,1,1,0,0,4,6,4,1,411,100921.55,12939.668,0,0,-274.83923,0,1994.5897 +483,588,1054,-9,1053,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-870.57922,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,411,100921.55,12939.668,0,0,-274.83923,0,1994.5897 +484,589,1055,1056,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3207388,8.0811882,0,26,-6,70.467308,0,3,3,2021,13,1,32,30,1,1,0,11.428999,11.428999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,54.2,57.49,5,1,1,0,0,9,4,4,1,277.5,1013155,351867.75,306059.06,34569.805,34968.227,0,3772.8232 +484,589,1056,1055,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.7152185,8.789916,0,26,6,41.941074,0,2,2,2021,7,0,45,40,1,0,0,18.749117,18.749117,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.17,49.39,8.333333333333334,1,1,0,0,9,4,4,1,277.5,1013155,351867.75,306059.06,34569.805,34968.227,0,3772.8232 +484,590,1057,-9,1055,1056,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-902.94446,-9,2,1,2021,24,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.56,66.03,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,263,55476.395,0,0,0,407.94177,0,0 +485,591,1058,1059,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,55,-4,-26.925184,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.0666609,0,0,1,1,0,4.7030163,0,63.68,30.38,61.71,43.2,8.333333333333334,1,1,0,0,7,11,3,1,1144,430053.69,9048.0234,175198.59,0,0,0,2016.1301 +485,591,1059,1058,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.8529472,7.8090348,55,4,45.06847,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6642087,7.5766501,61.71,43.2,63.68,30.38,8.333333333333334,1,1,0,0,0,11,3,1,1144,430053.69,9048.0234,175198.59,0,0,0,2016.1301 +486,592,1060,1061,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.5453749,7.3743196,0,42,-1,-15.287172,0,2,3,2021,6,0,30,31,1,0,0,6.4533868,6.4533868,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,44.95,34.89,10,1,1,0,0,6,2,4,1,404.5,434066.56,241153.5,191226.72,-6975.0977,0,0,1755.2 +486,592,1061,1060,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.5614638,7.6088934,0,42,1,51.698395,0,2,2,2021,23,11,35,35,1,11,0,8.0419035,8.0419035,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.95,34.89,59.29,49.68,3.333333333333333,1,1,0,0,9,2,4,1,404.5,434066.56,241153.5,191226.72,-6975.0977,0,0,1755.2 +487,593,1062,1063,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,38,-4,-80.080292,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.7,46.47,51,49,8.333333333333334,2,3,0,0,0,9,4,1,545,733907.75,385376.5,332440.06,0,9844.6475,0,1581.3108 +487,593,1063,1062,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5567102,8.2171926,0,9,4,-17.678474,0,-9,-9,2021,10,0,48,40,1,1,0,10.245575,10.245575,.05,.05,0,0,0,0,0,0,0,0,0,6.246449,0,51,49,42.7,46.47,7,2,3,0,0,1,9,4,1,545,733907.75,385376.5,332440.06,0,9844.6475,0,1581.3108 +487,594,1064,-9,1062,1063,1,1,36,0,0,0,2,2,-9,0,4,8.7892647,8.9945011,0,0,0,-1024.439,0,3,2,2021,10,0,40,39,1,1,1,18.316265,18.316265,.05,.05,0,0,0,0,0,0,0,0,0,7.9731555,0,50,57,-9,-9,7,2,3,0,0,1,9,5,1,2682,286686.25,-16329.639,0,0,0,0,2705.0464 +488,595,1065,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.5956135,6.4779878,0,0,-952.92767,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3460729,7.0814185,62,47.26,-9,-9,8.333333333333334,1,1,0,0,11,8,2,0,343,577578.25,298228.81,214952.14,0,0,0,1051.4954 +489,596,1066,1069,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,9.642601,9.7385855,0,7,4,39.41991,0,2,2,2021,13,2,48,52,1,2,0,39.732544,39.732544,.05,.05,0,0,0,0,0,0,0,0,0,7.1306143,0,53.38,52.51,59.86,40.18,5,1,1,0,0,8,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +489,596,1067,-9,1069,1066,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.4272,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +489,596,1068,-9,1069,1066,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2119,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +489,596,1069,1066,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.7022681,7.7871752,0,7,-4,-39.35862,0,2,3,2021,7,0,19,18,1,0,0,12.19194,12.19194,0,0,0,0,0,0,0,0,0,0,0,0,0,59.86,40.18,53.38,52.51,8.333333333333334,1,1,0,0,8,5,5,1,579,721104,489703.31,349907.25,114820.61,1159.0883,0,7928.8438 +490,597,1070,1072,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,7.9113641,7.8556094,0,15,5,39.593315,0,2,2,2021,7,0,38,38,1,0,0,9.648715,9.648715,0,0,0,0,0,0,0,88,1,1,0,0,0,48.77,60.16,32.96,33.84,5,1,1,0,0,8,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1071,-9,1072,1070,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-916.84155,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1072,1070,-9,-9,1,0,40,0,3,0,2,2,-9,1,1,0,0,0,14,-5,6.249248,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,32.96,33.84,48.77,60.16,3.333333333333333,1,1,0,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1073,-9,1072,1070,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.1584,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +490,597,1074,-9,1072,1070,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.19391,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,870.20001,488150.78,204625.31,216557.2,-547.08221,1030.1718,0,3583.7009 +491,598,1075,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,4,0,0,0,0,0,-965.15021,0,2,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,42.01,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,902,491132.78,0,395761.63,0,0,0,515.97766 +492,599,1076,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,8.8744135,8.6729193,0,0,-964.17346,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.23068,8.5945215,57.06,57.76,-9,-9,10,1,1,0,0,3,2,5,1,349,763424.5,473404.22,175660.42,0,0,0,2640.3193 +493,600,1077,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,1,0,0,0,0,0,-952.79236,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.17,15.47,-9,-9,0,1,1,0,0,0,4,1,1,550,-142071.45,-12944.363,0,0,0,0,1088.2687 +494,601,1078,-9,1080,1079,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.58112,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,311,391121.56,45021.809,612149.75,369472.88,12652.207,0,4188.939 +494,601,1079,1080,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.1917315,9.1778011,0,13,0,206.42595,0,2,1,2021,11,1,55,50,1,1,0,21.578588,21.578588,0,0,.05,0,0,0,0,0,0,0,0,0,0,43.03,53.23,50.03,52.62,5,1,1,0,0,9,7,5,1,311,391121.56,45021.809,612149.75,369472.88,12652.207,0,4188.939 +494,601,1080,1079,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,7.6358442,7.6666899,0,13,0,-34.024593,0,2,3,2021,15,3,15,0,1,3,0,18.127657,18.127657,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,43.03,53.23,6.666666666666667,1,1,0,0,9,7,5,1,311,391121.56,45021.809,612149.75,369472.88,12652.207,0,4188.939 +495,602,1081,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.6418123,7.8028789,0,0,-959.94708,0,3,1,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,42,0,0,0,3.0733721,7.5647683,47.44,56.39,-9,-9,6.666666666666667,1,1,0,0,1,5,3,1,170,235199.88,440072.13,139757.58,106465.2,0,0,1745.4554 +496,603,1082,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.6990461,8.8357649,0,0,0,-1038.2222,0,2,2,2021,8,0,32,30,1,0,0,19.675653,19.675653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,381,92174.648,133087.75,176970.97,69972.867,0,884.92328,2746.052 +497,604,1083,-9,1085,1084,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8356,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,557.66669,1978507.3,939166.56,620760.44,194545.13,0,0,7282.3364 +497,604,1084,1085,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.6954441,9.0348864,0,9,-1,10.489863,0,1,1,2021,12,1,37,43,1,1,0,18.524515,18.524515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.79,62.55,25.02,64.34,8.333333333333334,1,1,0,0,9,11,5,1,557.66669,1978507.3,939166.56,620760.44,194545.13,0,0,7282.3364 +497,604,1085,1084,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,9.2694845,9.7642927,0,7,1,81.548805,-9,3,2,2021,22,7,50,0,1,7,0,45.517315,45.517315,.05,.05,0,0,0,0,0,0,0,0,0,4.289762,0,25.02,64.34,36.79,62.55,3.333333333333333,1,1,0,0,9,11,5,1,557.66669,1978507.3,939166.56,620760.44,194545.13,0,0,7282.3364 +498,605,1086,1087,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.2227926,9.0919008,34,4,57.512775,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6166387,9.0493984,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,0,7,5,1,977.5,1154808,89336.094,639501.69,0,0,0,7816.1357 +498,605,1087,1086,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,34,-4,109.81694,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9165521,0,51.83,57.2,57.16,56.15,10,1,1,0,0,10,7,5,1,977.5,1154808,89336.094,639501.69,0,0,0,7816.1357 +499,606,1088,-9,-9,-9,1,0,58,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1033.3912,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8411099,0,58.9,13.94,-9,-9,5,1,1,0,0,0,10,1,0,112,-27543.438,0,0,0,1500.8657,0,2048.2856 +499,607,1089,-9,1088,-9,1,1,36,0,2,0,2,2,-9,0,3,9.0434456,8.6694851,0,0,0,-930.76434,0,2,-9,2021,9,0,67,30,1,0,1,14.018541,14.018541,.05,.05,0,0,0,0,0,2,1,1,0,1.8239588,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,855,289243.16,221987.16,138161.33,41824.387,0,0,2792.8479 +499,607,1090,-9,-9,1089,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.3959,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,855,289243.16,221987.16,138161.33,41824.387,0,0,2792.8479 +499,607,1091,-9,-9,1089,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-994.90302,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,5,0,855,289243.16,221987.16,138161.33,41824.387,0,0,2792.8479 +500,608,1092,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.659966,7.7952533,0,0,0,-985.47491,0,3,2,2021,9,1,40,30,1,1,0,6.4779263,6.4779263,0,0,0,0,0,0,0,7,0,0,0,0,0,60.85,42.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,136,597068.44,206506.77,170160.72,0,0,0,1127.6042 +501,609,1093,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1060.7653,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.22,20.89,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,602,124089.45,0,0,0,-1711.5426,0,2580.4968 +502,610,1094,-9,1095,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.3811,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,1089.5,309762.25,107262.98,209571.41,83507.195,0,0,986.55188 +502,610,1095,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.9777751,7.2952385,0,0,0,-739.56647,0,3,3,2021,19,8,20,20,1,8,0,7.5227261,7.5227261,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,1,4,9,2,0,1089.5,309762.25,107262.98,209571.41,83507.195,0,0,986.55188 +502,611,1096,-9,1095,-9,1,0,22,0,1,0,2,2,-9,0,4,7.8265185,7.697268,0,0,0,-1110.4086,0,2,-9,2021,8,0,43,43,1,0,1,7.3819985,7.3819985,.05,.05,0,0,0,0,0,0,1,1,0,.28195527,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,1792,-150201.81,14791.816,0,0,0,0,941.67334 +502,612,1097,-9,1095,-9,1,1,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-959.1153,0,2,-9,2021,10,0,0,16,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,9,1,0,1844,89981.133,0,0,0,0,0,498.77124 +503,613,1098,1099,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,53,-1,-17.995996,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.49,35.51,57.16,56.15,5,1,1,0,0,3,10,2,1,1597.5,1036253.7,562322.06,388568.72,0,0,0,2278.0674 +503,613,1099,1098,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.1826468,7.1476426,53,1,13.552381,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2384119,7.0376196,57.16,56.15,44.49,35.51,10,1,1,0,0,7,10,2,1,1597.5,1036253.7,562322.06,388568.72,0,0,0,2278.0674 +504,614,1100,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,5.8195539,5.9510722,0,0,-1131.2212,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.8962884,5.7974501,48.38,38.92,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,923,254499,62775.332,242565.02,0,0,0,820.6684 +505,615,1101,1102,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.011301,7.2248888,8,4,147.4709,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9257531,46.01,52.88,47.12,17.61,10,1,1,0,0,3,13,2,1,614,632737.13,345712.44,200655.78,0,0,0,1834.5492 +505,615,1102,1101,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,8,-4,-7.8528929,0,3,3,2021,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.12,17.61,46.01,52.88,3.333333333333333,1,1,0,0,0,13,2,1,614,632737.13,345712.44,200655.78,0,0,0,1834.5492 +505,616,1103,-9,1102,1101,1,1,25,0,0,0,1,1,-9,0,4,8.4339962,8.3269444,0,0,0,-1060.5945,0,3,3,2021,12,1,41,42,1,1,0,10.904174,10.904174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1085,98562.055,65933.07,196399.75,98694.07,-1325.639,2195.5498,2092.324 +506,617,1104,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.6108441,7.2587671,0,0,-891.17413,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.989337,7.4531579,63.03,32.94,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,643,430175.22,237400.41,90415.195,0,627.54858,0,1844.4351 +507,618,1105,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.411499,7.4051409,0,0,-1119.5302,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4929652,7.4867616,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,7,13,3,0,4237,115463.06,151221.11,106425.85,0,0,0,3060.5742 +507,619,1106,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.9736142,7.8971705,0,0,0,-917.25946,0,3,3,2021,6,0,60,40,1,0,0,5.0138869,5.0138869,.05,.05,0,0,0,0,0,0,0,0,0,6.4442654,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,13,13,4,0,592,-132120.58,24668.158,0,0,0,0,2060.8818 +508,620,1107,-9,1109,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.79004,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,3,0,321,-38774.457,0,0,0,1099.0634,0,2288.5376 +508,620,1108,-9,1109,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.32373,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,321,-38774.457,0,0,0,1099.0634,0,2288.5376 +508,620,1109,-9,1111,1110,1,0,25,1,2,0,2,2,-9,0,3,7.7685537,7.6195927,0,0,0,-845.77875,-9,2,2,2021,12,3,46,0,1,3,1,5.8301539,5.8301539,0,0,0,0,0,0,0,80,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,7,5,3,0,321,-38774.457,0,0,0,1099.0634,0,2288.5376 +508,621,1110,1111,-9,-9,1,1,49,1,2,0,2,2,-9,0,3,8.5062475,8.6913395,0,6,5,47.980553,0,-9,-9,2021,14,3,40,40,1,3,0,13.36272,13.36272,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.13,49.81,33.68,47.08,6.666666666666667,1,1,0,0,7,5,4,0,696,200640.89,60710.781,213181.97,97250.016,1385.9705,1753.7361,2676.0254 +508,621,1111,1110,-9,-9,1,0,44,1,2,0,2,2,-9,0,2,7.6764398,7.6420903,0,6,-5,-51.16222,0,2,3,2021,22,8,40,40,1,8,0,7.2347713,7.2347713,0,0,0,0,0,0,0,7,1,1,0,0,0,33.68,47.08,48.13,49.81,5,1,1,0,0,7,5,4,0,696,200640.89,60710.781,213181.97,97250.016,1385.9705,1753.7361,2676.0254 +509,622,1112,-9,1113,1115,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.6565,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +509,622,1113,1115,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,6.9118705,6.7643504,0,21,-1,-114.45354,0,3,3,2021,10,2,10,10,1,2,0,12.444386,12.444386,0,0,0,0,0,0,0,0,1,1,0,6.9564829,0,49.35,59.64,57.16,56.15,10,1,1,0,0,9,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +509,622,1114,-9,1113,1115,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.6709,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +509,622,1115,1113,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.1471205,8.6193638,0,21,1,25.413206,-9,2,2,2021,6,0,30,0,1,0,0,23.352921,23.352921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,12,2,3,1,640.75,-42389.961,33005.273,0,0,0,-69.225754,3073.9272 +510,623,1116,-9,1117,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.27283,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,647.5,9060.1289,0,0,0,0,0,1442.55 +510,623,1117,-9,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1086.3369,1,3,2,2021,4,0,0,16,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.7,31.18,-9,-9,10,3,4,0,0,4,8,1,0,647.5,9060.1289,0,0,0,0,0,1442.55 +510,624,1118,-9,1117,-9,1,0,22,0,2,1,2,0,0,0,5,0,0,0,0,0,-939.61011,-9,2,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,5,3,4,0,1,4,8,1,0,751,56292.992,0,0,0,0,-309.21356,-307.51721 +510,625,1119,-9,1117,-9,1,1,21,0,2,1,2,0,0,0,5,0,0,0,0,0,-963.14545,-9,2,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57,59.12,-9,-9,6.666666666666667,3,4,0,0,5,8,1,0,415,0,0,0,0,0,0,175.67804 +511,626,1120,1122,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,7.3868375,7.5334044,0,17,10,-22.173479,0,3,3,2021,8,0,21,21,1,0,0,11.80365,11.80365,0,0,.05,0,0,0,0,0,1,1,0,0,0,60.1,54.82,53.76,45.56,8.333333333333334,2,3,0,0,9,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1121,-9,1122,1120,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.334,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1122,1120,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,8.187418,7.7624807,0,17,-10,-34.823948,0,3,3,2021,11,1,30,30,1,1,0,11.772608,11.772608,0,0,0,0,0,0,0,0,1,1,0,0,0,53.76,45.56,60.1,54.82,8.333333333333334,2,3,0,0,5,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1123,-9,1122,1120,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.19427,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +511,626,1124,-9,1122,1120,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.70129,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,836.79999,490369.31,130585.13,495646.38,81705.859,0,0,2339.6387 +512,627,1125,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-987.06921,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.33,43.48,-9,-9,10,1,1,0,0,3,5,1,1,650,99642.992,0,0,0,0,0,-191.0453 +513,628,1126,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.2575259,5.2334595,0,0,-1004.6155,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,3.394455,0,0,1,1,0,0,5.5432281,47.81,29.49,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,537,179670.66,0,67906.18,0,0,0,2327.0249 +514,629,1127,-9,1129,1128,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-914.29602,-9,2,1,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.97,53.97,-9,-9,10,1,1,0,0,0,9,4,1,1978.3334,1304952.1,394116.88,900111.06,95496.992,0,0,3902.304 +514,629,1128,1129,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1258774,9.2691231,0,18,4,15.192594,0,1,1,2021,6,0,45,39,1,0,0,29.651905,29.651905,.05,.05,0,0,0,0,0,0,1,1,0,4.0475602,0,57.16,56.15,45.56,60.26,8.333333333333334,1,1,0,0,9,9,4,1,1978.3334,1304952.1,394116.88,900111.06,95496.992,0,0,3902.304 +514,629,1129,1128,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,6.892004,6.6593723,0,18,-4,-109.99222,0,2,3,2021,13,3,12,9,1,3,0,11.291541,11.291541,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,57.16,56.15,8.333333333333334,1,1,0,0,7,9,4,1,1978.3334,1304952.1,394116.88,900111.06,95496.992,0,0,3902.304 +515,630,1130,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.0575609,6.7694564,0,0,0,-960.62244,-9,-9,-9,2021,6,0,7,0,1,0,0,15.492303,15.492303,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.9,48.63,-9,-9,10,1,1,0,0,5,2,2,1,324,889402.25,68181.406,443378.97,0,0,0,106.25626 +516,631,1131,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1012.9591,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9336567,0,25.02,64.34,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,273,0,0,0,0,0,0,648.22437 +517,632,1132,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.1808705,7.4697247,0,0,-1169.8621,0,2,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4296961,7.1327014,39.16,38.91,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,126,807088.63,408900.88,460294.75,51058.25,0,0,1174.851 +518,633,1133,-9,1134,1136,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.8662,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,633,1134,1136,-9,-9,1,0,41,0,2,0,3,3,-9,0,5,0,0,0,20,-5,-162.43408,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.89,48.96,32.16,37.61,10,2,3,0,0,2,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,633,1135,-9,1134,1136,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-875.81647,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,633,1136,1134,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,8.4206324,8.1483421,0,20,5,79.31118,0,3,3,2021,19,7,40,40,1,7,0,10.162932,10.162932,0,0,0,0,0,0,0,7,1,1,0,0,0,32.16,37.61,37.89,48.96,6.666666666666667,2,3,0,0,10,7,3,1,1261.75,325442.81,0,373639.56,87605.633,0,0,2133.8613 +518,634,1137,-9,1134,1136,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-880.07996,-9,3,3,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.18,43.12,-9,-9,10,2,3,0,0,3,7,1,1,412,108070.47,0,0,0,0,47.303883,569.41705 +519,635,1138,1139,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.6986094,7.6595573,0,22,-1,-81.877853,0,2,2,2021,6,0,50,56,1,0,0,6.3005075,6.3005075,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.36,42.15,8.333333333333334,2,3,0,0,10,9,5,1,603.5,1254339.4,675986.44,422918.88,0,0,0,3875.4226 +519,635,1139,1138,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.9458399,8.8512621,0,22,1,-96.43924,0,2,2,2021,12,2,38,38,1,2,0,22.325342,22.325342,0,0,0,0,0,0,0,0,1,1,0,1.2311009,0,43.36,42.15,57.16,56.15,8.333333333333334,2,3,0,0,8,9,5,1,603.5,1254339.4,675986.44,422918.88,0,0,0,3875.4226 +520,636,1140,1141,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,0,0,48,-8,-101.14169,0,-9,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8715587,0,57.04,39.67,58,50,8.333333333333334,1,1,0,0,6,7,2,1,295.5,295310.78,62374.125,336725.63,0,0,0,2387.7539 +520,636,1141,1140,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,7.4716458,7.4802499,48,8,-145.90582,0,1,1,2021,4,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0020905,7.2230935,58,50,57.04,39.67,10,1,1,0,0,0,7,2,1,295.5,295310.78,62374.125,336725.63,0,0,0,2387.7539 +521,637,1142,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1054.5121,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,3,8,1,0,1193,134537.55,0,0,0,0,0,1931.9041 +522,638,1143,-9,1144,1146,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.4043,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +522,638,1144,1146,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,0,0,0,1,-10,8.7626371,-9,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,45.81,61.51,10,1,1,0,0,3,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +522,638,1145,-9,1144,1146,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.39246,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +522,638,1146,1144,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.3073997,9.4962349,0,1,10,2.8438218,-9,-9,-9,2021,12,2,50,0,1,2,0,27.296999,27.296999,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.81,61.51,57.06,57.76,8.333333333333334,1,1,0,0,7,13,5,1,732.5,1188973.1,532976.88,537596,38764.789,0,0,4740.1558 +523,639,1147,1148,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.3718171,5.6130719,6,-4,-48.573254,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3012199,49.91,58.02,56.52,48.31,8.333333333333334,1,1,0,0,5,4,2,1,1396.5,302697.69,149922.56,118675.92,0,0,0,2191.0732 +523,639,1148,1147,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.0053821,4.4208694,6,4,-9.4694738,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0420461,4.6479597,56.52,48.31,49.91,58.02,8.333333333333334,1,1,0,0,0,4,2,1,1396.5,302697.69,149922.56,118675.92,0,0,0,2191.0732 +524,640,1149,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,3,7.3603139,7.4141922,0,0,0,-1087.1104,-9,1,-9,2021,11,0,37,0,1,0,0,5.4930835,5.4930835,0,0,0,0,0,0,0,0,0,0,0,.84724885,0,47.07,53.97,-9,-9,6.666666666666667,1,1,0,0,3,4,3,0,311,44296.023,0,0,0,0,0,1150.5043 +525,641,1150,1151,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.215498,7.8140411,0,17,0,40.718716,0,3,2,2021,13,3,53,55,1,3,0,7.7349477,7.7349477,0,0,0,0,0,0,0,0,0,0,0,3.1727092,0,33.37,60.58,57.33,53.46,6.666666666666667,1,1,0,0,12,1,4,1,410,320192.19,165231.59,126244.67,67143.938,14863.206,0,2940.5964 +525,641,1151,1150,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.5911942,8.0355005,6.7502937,10,0,19.215343,0,-9,-9,2021,8,0,48,42,1,0,0,4.3215499,4.3215499,.05,.05,0,0,0,0,0,0,0,0,0,5.6390181,6.3214221,57.33,53.46,33.37,60.58,10,1,1,0,0,13,1,4,1,410,320192.19,165231.59,126244.67,67143.938,14863.206,0,2940.5964 +526,642,1152,1153,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.5872121,7.4850078,20,7,-45.605652,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.678905,7.283525,64.23999999999999,44.83,47.04,57.99,8.333333333333334,1,1,0,0,0,2,3,1,463.5,957617.25,417942.09,247279.38,0,0,0,2529.3584 +526,642,1153,1152,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.9696245,7.4040871,20,-7,61.359131,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2434556,6.6906013,47.04,57.99,64.23999999999999,44.83,10,1,1,0,0,8,2,3,1,463.5,957617.25,417942.09,247279.38,0,0,0,2529.3584 +527,643,1154,1155,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,5.5725622,8.398778,8.3722057,12,7,59.925823,0,2,2,2021,6,0,2,4,1,0,0,14.47759,14.47759,.05,.05,0,0,0,0,0,0,0,0,0,8.174386,0,54.79,55.86,57.06,57.76,10,1,1,0,0,9,9,4,1,267,1837361.8,873235.19,565318.75,0,6192.9028,0,-296.98654 +527,643,1155,1154,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,0,6.6901789,6.4316592,12,-7,-24.627605,0,2,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.930099,6.7959719,57.06,57.76,54.79,55.86,0,1,1,0,0,7,9,4,1,267,1837361.8,873235.19,565318.75,0,6192.9028,0,-296.98654 +528,644,1156,1157,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.5803189,7.4846158,36,4,77.274033,0,2,2,2021,6,0,0,38,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5754514,7.8422003,63.01,41.3,57.16,56.15,10,1,1,0,0,8,12,4,1,1472.5,294648.09,57620.793,114180.58,0,5857.4668,0,2407.6396 +528,644,1157,1156,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6706395,7.8674502,0,6,-4,-122.56261,0,3,3,2021,9,0,30,30,1,0,0,10.242397,10.242397,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,63.01,41.3,8.333333333333334,1,1,0,0,8,12,4,1,1472.5,294648.09,57620.793,114180.58,0,5857.4668,0,2407.6396 +529,645,1158,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.222578,8.9910851,8.0635767,0,0,-946.0769,0,2,2,2021,23,10,35,50,1,10,0,10.671935,10.671935,.05,.05,0,0,0,0,0,27,0,0,0,8.1297283,0,26.03,54.63,-9,-9,1.666666666666667,1,1,0,1,14,9,5,1,459,932819.19,739314.56,343610.56,115643.05,0,0,3865.0701 +530,646,1159,1160,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.6818733,6.6071501,0,24,6,118.92913,0,3,3,2021,8,0,14,12,1,0,0,8.6192341,8.6192341,.05,.05,0,0,0,0,0,2,0,0,0,1.7352682,0,52,54.51,40.61,55.65,0,1,1,0,0,9,10,5,1,1159.5,1308423.9,1042552.3,253096.81,0,11350.609,0,2337.8979 +530,646,1160,1159,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.5530605,8.8994961,0,24,-6,-67.417915,0,3,3,2021,12,3,42,41,1,3,0,17.258829,17.258829,.05,.05,0,0,0,0,0,0,0,0,0,4.3134151,0,40.61,55.65,52,54.51,0,1,1,0,0,10,10,5,1,1159.5,1308423.9,1042552.3,253096.81,0,11350.609,0,2337.8979 +530,647,1161,-9,1159,1160,1,1,22,0,0,0,2,2,-9,0,5,9.379077,9.6328897,0,0,0,-1019.7317,0,2,1,2021,12,0,48,43,1,0,1,29.932457,29.932457,0,0,0,0,0,0,0,0,0,0,0,3.816834,0,38.37,59.33,-9,-9,0,1,1,0,0,6,10,5,1,337,-78517.227,0,0,0,7019.5254,2137.7461,4806.9331 +531,648,1162,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,6.6019063,6.559319,0,0,-866.6842,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,2.5449769,0,0,1,1,0,0,6.6896172,42.02,28.46,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,709,135653.55,88537.469,0,0,0,0,1034.6154 +532,649,1163,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,2,0,7.9501424,7.6950207,0,0,-957.43726,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,6.4115067,0,45.071529,0,1,1,0,5.2005358,7.660625,39.91,22.6,-9,-9,6.666666666666667,1,1,0,0,0,11,4,1,339,370750.09,348089.72,58946.566,0,0,0,2222.1855 +533,650,1164,-9,1166,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.4791,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +533,650,1165,-9,1166,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.1089,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +533,650,1166,-9,-9,-9,1,0,33,0,3,0,1,1,-9,0,5,7.1751499,7.3493028,0,0,0,-1106.9357,0,3,3,2021,0,0,24,24,1,0,0,7.6940312,7.6940312,0,0,0,0,0,0,0,0,1,1,0,0,0,67.33,43.48,-9,-9,10,2,3,0,0,8,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +533,650,1167,-9,1166,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.73419,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,0,200.75,-91541.031,0,0,0,0,461.06146,2654.4473 +534,651,1168,1169,-9,-9,1,0,23,0,0,0,3,3,-9,0,4,7.2959533,7.3816657,0,1,-2,72.302864,-9,-9,-9,2021,20,6,12,0,1,6,0,13.628222,13.628222,0,0,0,0,0,0,0,0,0,0,0,0,0,39.76,59.88,52,54.51,3.333333333333333,1,1,0,0,2,12,4,1,853.5,-27866.049,44420.785,110218.28,100230.74,2972.2109,0,2526.615 +534,651,1169,1168,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.3650723,8.2075205,0,1,2,56.504639,-9,3,3,2021,10,0,70,0,1,0,0,6.2872138,6.2872138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,39.76,59.88,5,1,1,0,0,5,12,4,1,853.5,-27866.049,44420.785,110218.28,100230.74,2972.2109,0,2526.615 +535,652,1170,1171,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.9578609,8.8997059,0,9,-1,93.286415,0,-9,-9,2021,6,0,39,38,1,0,0,24.440838,24.440838,0,0,0,0,0,0,0,0,0,0,0,5.2597151,0,63.39,31.69,50.33,54.06,8.333333333333334,1,1,0,0,10,10,5,1,1385,444652.16,129252.95,328422.91,235431.53,7906.8516,0,5914.0249 +535,652,1171,1170,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,8.163229,8.1947937,9,1,.85299808,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,7.0920434,8.0810204,50.33,54.06,63.39,31.69,1.666666666666667,1,1,0,0,5,10,5,1,1385,444652.16,129252.95,328422.91,235431.53,7906.8516,0,5914.0249 +536,653,1172,1173,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,52,0,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,61.01,44.96,44.51,16.42,8.333333333333334,1,1,0,0,1,1,1,0,683,236842.41,55210.258,211958.42,0,0,0,1802.2584 +536,653,1173,1172,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,52,0,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,20.798153,0,0,1,1,0,0,0,44.51,16.42,61.01,44.96,6.666666666666667,1,1,0,0,0,1,1,0,683,236842.41,55210.258,211958.42,0,0,0,1802.2584 +537,654,1174,1175,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,28,-12,36.177814,0,1,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5473142,0,58.15,52.91,59.27,44.84,10,1,1,0,0,5,9,3,1,2063.5,1176830,710204.13,287671.88,0,0,0,2615.6362 +537,654,1175,1174,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.0630331,8.221633,4,12,-12.073656,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9189849,59.27,44.84,58.15,52.91,8.333333333333334,1,1,0,0,9,9,3,1,2063.5,1176830,710204.13,287671.88,0,0,0,2615.6362 +538,655,1176,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.391109,7.4594746,0,0,-1077.0432,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8705224,7.7644777,58.15,50.21,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,668,493681.59,338578.31,240702.53,0,0,0,1118.3909 +539,656,1177,-9,1178,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.8324,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,809.5,-42860.141,0,0,0,0,0,666.52258 +539,656,1178,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,3,0,0,0,0,0,-962.49854,0,-9,-9,2021,13,2,0,12,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,58.26,-9,-9,5,1,1,1,0,2,2,1,0,809.5,-42860.141,0,0,0,0,0,666.52258 +540,657,1179,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,0,0,-830.4588,0,-9,-9,2021,14,2,0,20,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52,54.51,-9,-9,5,1,1,1,0,13,12,2,1,107,134115.78,0,0,0,0,0,306.93869 +541,658,1180,-9,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,7.9951363,8.0780001,0,0,0,-987.75513,0,3,1,2021,6,0,36,40,1,0,0,6.9934354,6.9934354,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,8.333333333333334,3,4,0,0,11,8,3,0,3328.5,338626.66,122390.83,159341.08,0,0,0,576.58508 +541,658,1181,-9,-9,1180,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.24365,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,3328.5,338626.66,122390.83,159341.08,0,0,0,576.58508 +541,659,1182,-9,-9,1180,1,1,26,0,1,0,1,1,-9,0,4,8.7383299,8.8555174,0,0,0,-1022.9828,0,-9,2,2021,11,1,41,37,1,1,1,17.738821,17.738821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.44,56.39,-9,-9,8.333333333333334,3,4,0,0,3,8,5,0,1673,141750.28,41758.879,0,0,0,0,1828.9922 +542,660,1183,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,7.9276338,8.1385403,0,0,0,-1019.7512,0,3,3,2021,22,8,32,0,1,8,0,9.678401,9.678401,0,0,0,0,0,0,0,0,1,1,0,0,0,37,15.95,-9,-9,0,3,4,0,1,1,8,4,0,824,256398.81,0,0,0,0,0,1983.4269 +543,661,1184,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.9306583,7.36164,0,0,-1073.924,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.47401,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,347,397898.66,59777.535,93816.25,0,0,0,1966.8204 +544,662,1185,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,5.6896143,5.5373945,0,0,0,-1000.1422,0,2,2,2021,22,10,6,20,1,10,0,5.6666584,5.6666584,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,28.92,-9,-9,3.333333333333333,1,1,0,0,8,6,2,0,200,73879.086,82696.586,0,0,0,0,701.78693 +545,663,1186,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.2249594,6.2010674,0,0,-913.40076,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8607409,6.0577197,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,336,-47784.145,-22796.957,0,0,10826.462,0,89.47567 +546,664,1187,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.893424,8.513381,0,0,0,-1002.6205,0,2,2,2021,8,1,38,70,1,1,0,18.077143,18.077143,.05,.05,0,0,0,0,0,0,0,0,0,3.0201681,0,41.85,56.37,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,359,58468.094,37419.797,0,0,0,0,1610.1683 +547,665,1188,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.7251348,8.7137241,0,0,0,-895.88257,0,3,2,2021,6,0,47,50,1,0,0,16.918888,16.918888,0,0,0,0,0,0,0,0,0,0,0,3.9105682,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,394,72253.953,0,0,0,0,0,2994.1431 +548,666,1189,-9,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,8.59589,8.8268147,0,0,0,-920.02295,0,2,3,2021,15,4,36,40,1,4,0,18.061096,18.061096,.05,.05,0,0,0,0,0,2,1,1,0,0,0,26.19,64.7,-9,-9,1.666666666666667,1,1,0,0,12,13,4,1,781,132002.77,29533.869,133681.92,60115.473,1118.936,8261.4072,2626.655 +548,667,1190,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.4443922,8.429987,0,0,0,-956.69061,0,-9,-9,2021,12,0,38,40,1,0,0,18.507135,18.507135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,4,13,4,1,535.5,263481.56,144631.86,195111.94,45116.219,0,0,2289.9817 +548,667,1191,-9,1190,1189,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-906.54828,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,535.5,263481.56,144631.86,195111.94,45116.219,0,0,2289.9817 +549,668,1192,1193,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.1422205,8.3936167,36,12,-80.339912,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1863394,42.85,40.94,54.37,54.8,5,1,1,0,0,4,9,4,1,847,1286353.1,573778.5,433170.75,0,0,0,2713.0142 +549,668,1193,1192,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.2521968,6.1920447,37,-12,18.248764,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82446355,6.2419448,54.37,54.8,42.85,40.94,8.333333333333334,1,1,0,0,11,9,4,1,847,1286353.1,573778.5,433170.75,0,0,0,2713.0142 +550,669,1194,1195,-9,-9,1,1,26,0,0,0,1,1,-9,0,2,0,0,0,5,-2,19.610601,0,1,1,2021,29,10,0,40,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.1,38.74,28.33,62.63,0,1,1,1,0,4,1,3,1,1267,23150.729,0,0,0,7645.9434,0,1020.0485 +550,669,1195,1194,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.310689,7.9984131,0,5,2,17.903677,0,-9,-9,2021,24,12,38,40,1,12,0,9.8545675,9.8545675,0,0,0,0,0,0,0,0,0,0,0,0,0,28.33,62.63,43.1,38.74,5,1,1,0,0,5,1,3,1,1267,23150.729,0,0,0,7645.9434,0,1020.0485 +551,670,1196,1197,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,0,0,42,4,0,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,16.986774,0,42,1,1,0,0,0,39.39,37.66,29.86,20.5,1.666666666666667,1,1,0,0,0,12,1,0,1123,869.48242,0,0,0,0,0,2406.3433 +551,670,1197,1196,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,42,-4,0,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.86,20.5,39.39,37.66,5,1,1,0,0,0,12,1,0,1123,869.48242,0,0,0,0,0,2406.3433 +551,671,1198,-9,1197,1196,1,1,34,0,0,0,1,1,-9,0,4,7.8396082,7.9751678,0,0,0,-980.28046,0,2,2,2021,12,0,38,40,1,0,1,9.4415426,9.4415426,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,12,4,0,454,-122048.59,24886.709,0,0,0,0,1842.4459 +552,672,1199,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,3,0,0,0,0,0,-981.7735,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,5,13,1,1,1314,180791.69,-43541.559,259215.17,0,0,0,406.01529 +552,673,1200,-9,1199,-9,1,0,24,0,0,0,1,1,-9,0,3,7.3400812,7.2610121,0,0,0,-1040.006,0,2,-9,2021,15,4,26,35,1,4,1,8.6545143,8.6545143,0,0,0,0,0,0,0,0,1,1,0,0,0,40.18,28.81,-9,-9,6.666666666666667,1,1,0,0,3,13,3,1,1973,-196037.86,0,0,0,0,0,490.83221 +553,674,1201,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-906.02875,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,1.285219,0,0,1,1,0,0,0,48.13,26.21,-9,-9,5,1,1,0,0,0,2,1,0,325,-106957.75,0,0,0,0,0,692.85498 +554,675,1202,1205,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6249371,8.6381197,0,12,-3,-85.017319,0,1,2,2021,5,0,39,58,1,0,0,15.146246,15.146246,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,12,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +554,675,1203,-9,1202,1205,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.0854,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +554,675,1204,-9,1202,1205,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.27686,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +554,675,1205,1202,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.2114849,9.2895203,0,12,3,-57.170841,0,2,2,2021,8,0,38,38,1,0,0,32.300259,32.300259,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,10,1,1,0,0,13,11,5,1,543.5,832771.31,451852.94,529094.44,200787.69,0,0,4456.1499 +555,676,1206,1207,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,34,-13,-131.3633,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.638248,0,51.14,60.45,61.43,43.34,8.333333333333334,1,1,0,0,0,6,2,1,209,214116.59,-35614.477,102177.02,0,0,0,3321.3257 +555,676,1207,1206,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,5.7748795,5.50632,34,13,155.69472,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4308186,5.765337,61.43,43.34,51.14,60.45,8.333333333333334,1,1,0,0,0,6,2,1,209,214116.59,-35614.477,102177.02,0,0,0,3321.3257 +556,677,1208,-9,-9,-9,1,0,46,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1075.1356,0,2,2,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.86,36.9,-9,-9,3.333333333333333,1,1,1,0,0,9,1,0,751.33331,118027.07,98854.867,89483.773,55007.098,0,0,1317.5345 +556,677,1209,-9,1208,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0345,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,751.33331,118027.07,98854.867,89483.773,55007.098,0,0,1317.5345 +556,677,1210,-9,1208,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.36664,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,751.33331,118027.07,98854.867,89483.773,55007.098,0,0,1317.5345 +557,678,1211,1212,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.148982,9.1493502,0,25,3,-31.273558,0,2,2,2021,11,0,45,45,1,0,0,22.184166,22.184166,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.31,52.14,61.04,23.35,8.333333333333334,1,1,0,0,8,9,4,1,243.5,280121.13,160829.41,293651.13,130234.52,0,0,3736.269 +557,678,1212,1211,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,0,0,0,25,-3,-25.328457,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.04,23.35,39.31,52.14,8.333333333333334,1,1,0,0,7,9,4,1,243.5,280121.13,160829.41,293651.13,130234.52,0,0,3736.269 +557,679,1213,-9,1212,1211,1,0,18,0,1,0,2,2,1,0,3,7.8612289,7.8474469,0,0,0,-932.16089,-9,2,2,2021,11,0,16,0,1,0,1,17.131144,17.131144,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,275,86971.117,71124.164,0,0,0,0,872.18787 +558,680,1214,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.893301,5.4604201,0,0,-1024.016,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,27.741177,0,0,1,1,0,0,5.7256765,68.67,13.13,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,3740,486597.13,159879.75,122889.93,0,0,0,2075.8274 +559,681,1215,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2033682,7.7372985,0,0,0,-954.49005,0,3,-9,2021,6,1,46,35,1,1,0,8.110136,8.110136,0,0,0,0,0,0,0,0,1,1,0,6.5598989,0,60.12,54.8,-9,-9,10,3,4,0,0,6,8,4,1,318,959656.56,337406.72,505597.97,0,0,0,1217.5105 +560,682,1216,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5650177,8.8113394,0,0,0,-954.0545,0,2,2,2021,5,0,35,38,1,0,0,17.131977,17.131977,.05,.05,0,0,0,0,0,0,1,1,0,1.3076193,0,54.69,57.47,-9,-9,8.333333333333334,4,2,0,0,15,9,5,1,205,245618.86,280743.78,116554.37,79534.313,0,3111.2383,2430.1648 +561,683,1217,1218,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.9212728,8.1555462,39,0,-80.721176,0,2,1,2021,7,0,0,47,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.8177142,7.8502278,59.71,48.06,51.77,58.57,10,1,1,0,0,10,6,5,1,769,3549737,1450324.8,1167636.8,0,17467.668,0,4500.1914 +561,683,1218,1217,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.49261,8.4526768,39,0,-13.960982,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.0519142,8.5492516,51.77,58.57,59.71,48.06,8.333333333333334,1,1,0,0,4,6,5,1,769,3549737,1450324.8,1167636.8,0,17467.668,0,4500.1914 +562,684,1219,1220,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3422146,8.3199596,0,9,-6,43.814617,0,-9,-9,2021,11,1,45,45,1,1,0,10.906054,10.906054,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.91,58.02,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,427.5,290919,216453.06,0,0,0,0,2718.0303 +562,684,1220,1219,-9,-9,1,0,53,0,0,0,3,3,-9,0,5,7.9246469,7.705821,0,14,6,-90.557098,0,2,2,2021,6,0,25,25,1,0,0,11.586836,11.586836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.91,58.02,10,1,1,0,0,10,10,4,1,427.5,290919,216453.06,0,0,0,0,2718.0303 +563,685,1221,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.0025735,6.6543279,0,0,-913.68182,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2287397,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,565,133878.53,203403.06,137761.05,0,0,0,2143.6289 +564,686,1222,1223,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,-1,31.086468,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8232613,0,61.04,39.41,62.66,52.4,10,1,1,0,0,0,10,4,1,429,1095427.1,172444.75,595607.88,0,0,0,5261.8745 +564,686,1223,1222,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.7892294,9.0055351,61,1,119.50776,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7926311,9.0353947,62.66,52.4,61.04,39.41,10,1,1,0,0,0,10,4,1,429,1095427.1,172444.75,595607.88,0,0,0,5261.8745 +565,687,1224,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.9536743,6.0340114,0,0,-992.89941,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8229876,43.03,14.16,-9,-9,8.333333333333334,1,1,0,1,0,1,2,1,529,-27026.273,53462.715,0,0,0,0,413.46066 +566,688,1225,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.7189803,6.6603866,0,0,0,-960.68872,0,2,2,2021,11,0,16,16,1,0,0,5.5462399,5.5462399,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,5,2,0,165,153669.23,0,0,0,0,127.80773,785.25385 +567,689,1226,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.205843,7.4711709,0,0,0,-1029.3435,-9,-9,-9,2021,5,0,38,0,1,0,0,13.282194,13.282194,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,523,15648.828,-24648.869,0,0,0,0,1304.1646 +568,690,1227,1228,1229,-9,1,0,56,0,0,0,1,1,-9,0,3,7.2174392,7.0553079,0,8,4,4.4731803,0,2,2,2021,11,1,8,8,1,1,0,17.5576,17.5576,.05,.05,0,0,0,0,0,7,1,1,0,2.7101068,0,50.65,53.71,33.72,32.32,8.333333333333334,1,1,0,0,9,7,5,1,382,1130307.5,688062.25,503818.94,28023.955,0,0,9194.7939 +568,690,1228,1227,-9,-9,1,1,52,0,0,0,1,1,-9,0,1,9.4795885,9.7117014,0,22,-4,37.515163,0,3,1,2021,23,10,42,42,1,10,0,48.697792,48.697792,.05,.05,0,0,0,0,0,2,1,1,0,2.2146602,0,33.72,32.32,50.65,53.71,3.333333333333333,1,1,0,0,10,7,5,1,382,1130307.5,688062.25,503818.94,28023.955,0,0,9194.7939 +568,691,1229,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.7538204,5.6535807,0,0,-934.20441,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6093068,5.8268995,52.22,23.45,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,865,332322.38,53502.91,442622.72,0,0,0,1140.0757 +569,692,1230,-9,1231,1233,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.81683,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +569,692,1231,1233,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.2181244,8.4077072,0,6,-2,116.99123,0,-9,-9,2021,8,0,22,23,1,0,0,17.411455,17.411455,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.19,55.19,8.333333333333334,1,1,0,0,7,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +569,692,1232,-9,1231,1233,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.3964,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +569,692,1233,1231,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.3811636,8.467474,0,6,2,31.646383,0,-9,-9,2021,15,4,40,38,1,4,0,11.69617,11.69617,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.19,55.19,51.83,57.2,8.333333333333334,1,1,0,0,7,6,4,1,581.75,423933.56,189561.98,128492.32,0,3703.0811,0,3776.4592 +570,693,1234,1235,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.3801007,6.1892405,45,-6,4.6269188,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.046235,6.2923312,57.16,56.15,62.18,36.18,8.333333333333334,1,1,0,0,12,6,2,1,2204,407013.88,207017.22,179395.59,0,0,0,1083.5652 +570,693,1235,1234,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.4517026,5.1352649,45,6,60.285519,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1578956,5.6619124,62.18,36.18,57.16,56.15,8.333333333333334,1,1,0,0,12,6,2,1,2204,407013.88,207017.22,179395.59,0,0,0,1083.5652 +571,694,1236,1237,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.0810714,7.10747,45,14,-56.148529,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.798424,6.9892578,54.61,38.4,57.16,56.15,8.333333333333334,1,1,0,0,9,7,2,1,854,762701.81,148080.5,411768.19,0,1803.4252,0,2630.1006 +571,694,1237,1236,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,11,-14,45.769485,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.3253636,0,57.16,56.15,54.61,38.4,8.333333333333334,1,1,0,0,10,7,2,1,854,762701.81,148080.5,411768.19,0,1803.4252,0,2630.1006 +572,695,1238,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,5,0,6.9797077,7.0588589,0,0,-1033.1407,-9,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9606552,59.43,58.05,-9,-9,10,1,1,0,0,0,12,2,1,925,428972.09,301194.44,124004.53,0,0,0,799.2226 +573,696,1239,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.3088694,8.0973511,0,0,-1125.2162,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0494103,8.1690865,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1300,639346.75,332289.59,271656.31,0,0,0,2777.1802 +574,697,1240,1241,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.8995447,7.9352221,7,0,-26.410929,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8607988,8.2550831,49.29,54.59,63.83,19.68,8.333333333333334,1,1,0,0,0,2,3,1,218.5,1128381.3,752038.44,268471.44,0,0,0,3646.0642 +574,697,1241,1240,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,5.6084204,5.4590845,7,0,93.456757,0,2,2,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,114.25893,0,0,1,1,0,4.4388289,5.3197255,63.83,19.68,49.29,54.59,6.666666666666667,1,1,0,0,4,2,3,1,218.5,1128381.3,752038.44,268471.44,0,0,0,3646.0642 +575,698,1242,1244,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.5042281,7.2950702,0,8,-6,94.345154,0,2,2,2021,7,0,32,27,1,0,0,8.2266293,8.2266293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.05,54.52,8.333333333333334,4,2,0,0,8,5,5,1,531,2397591,1689250.1,586218.88,89734.117,0,0,5274.3062 +575,698,1243,-9,1242,1244,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-890.03369,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,5,5,1,531,2397591,1689250.1,586218.88,89734.117,0,0,5274.3062 +575,698,1244,1242,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.5026741,9.1874294,0,8,6,72.184883,0,-9,-9,2021,7,0,42,45,1,0,0,39.560963,39.560963,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,531,2397591,1689250.1,586218.88,89734.117,0,0,5274.3062 +575,699,1245,-9,1242,1244,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-933.64032,-9,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,5,1,1,1178,270014.81,0,0,0,0,0,582.54156 +576,700,1246,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1084.2587,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.55,22.34,-9,-9,6.666666666666667,1,1,1,0,3,12,1,0,386,208159.25,93018.133,0,0,0,0,3428.9514 +577,701,1247,1248,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9269753,7.7462707,6,-2,-99.725212,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4362464,7.5103202,43.11,47.62,53,46,8.333333333333334,1,1,0,0,0,11,4,1,1168,825759.25,744260.25,83881.086,0,0,0,4272.6138 +577,701,1248,1247,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.9331212,7.7098598,6,2,-58.834763,0,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9672127,7.3352122,53,46,43.11,47.62,8,1,1,0,0,0,11,4,1,1168,825759.25,744260.25,83881.086,0,0,0,4272.6138 +578,702,1249,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5824599,8.4024534,5.8587418,29,0,-112.86363,0,3,3,2021,20,8,37,37,1,8,0,9.0289564,9.0289564,.05,.05,0,0,0,0,0,0,0,0,0,0,6.0730243,38.51,59.43,48,49,3.333333333333333,1,1,0,0,13,9,3,1,193,643761,478118.28,214029.67,0,0,0,807.46082 +579,703,1250,1251,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,7.4914756,7.5100212,6,-1,106.12121,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.6924477,7.6237354,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,4,4,4,1,295,1324799,900187.5,198647.22,0,0,0,3315.7378 +579,703,1251,1250,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.030674,8.0459738,6,1,40.329201,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,6.6634164,8.1155853,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,4,4,1,295,1324799,900187.5,198647.22,0,0,0,3315.7378 +580,704,1252,1253,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.3569479,7.4969239,44,6,-4.2148628,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6550913,7.8081489,57.16,56.15,59.45,39.29,10,1,1,0,0,0,7,3,1,1105,767259.31,544206.56,347470.09,0,0,0,1770.5784 +580,704,1253,1252,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,44,-6,66.47834,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,39.29,57.16,56.15,8.333333333333334,1,1,0,0,2,7,3,1,1105,767259.31,544206.56,347470.09,0,0,0,1770.5784 +581,705,1254,1257,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4291534,8.5757017,0,16,2,-64.124489,0,3,3,2021,12,0,31,31,1,0,0,11.763094,11.763094,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,50.37,55.06,3.333333333333333,1,1,0,0,11,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +581,705,1255,-9,1254,1257,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.57471,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +581,705,1256,-9,1254,1257,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.5671,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +581,705,1257,1254,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.1990185,9.4383564,0,2,-2,-12.806432,0,2,3,2021,5,0,45,43,1,0,0,30.893154,30.893154,.05,.05,0,0,0,0,0,0,1,1,0,1.5252918,0,50.37,55.06,45.18,54.77,8.333333333333334,1,1,0,0,11,10,5,1,1282.75,710389.38,219498.42,485420.22,151137.19,0,0,4923.7275 +582,706,1258,1259,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.8542652,7.9322586,0,30,4,18.69273,0,-9,-9,2021,7,0,38,38,1,0,0,7.1299424,7.1299424,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.32,46.98,57.63,56.14,8.333333333333334,1,1,0,0,8,8,4,0,845.5,98205.336,86010.609,0,0,800.31226,2436.0649,1457.5205 +582,706,1259,1258,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.5801888,7.6272173,0,10,-4,-65.589508,0,2,2,2021,8,0,42,40,1,0,0,5.9853396,5.9853396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,59.32,46.98,8.333333333333334,1,1,0,0,12,8,4,0,845.5,98205.336,86010.609,0,0,800.31226,2436.0649,1457.5205 +582,707,1260,-9,1259,1258,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-894.22076,-9,2,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,7,8,1,0,466,-6023.2422,0,0,0,0,-784.66376,0 +582,708,1261,-9,1259,1258,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-926.39124,-9,2,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,61.85,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1208,-32962.895,0,0,0,0,0,0 +583,709,1262,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.2079544,6.7600398,0,0,0,-980.8576,0,2,2,2021,32,12,55,55,1,12,0,2.2401409,2.2401409,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.51,52.54,-9,-9,1.666666666666667,1,1,0,0,11,6,2,1,659,98027.57,-44919.57,106047.74,0,0,1509.0721,972.95258 +584,710,1263,1264,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.345006,8.8674803,0,1,-2,-19.397146,0,2,3,2021,11,0,75,42,1,0,0,8.7815189,8.7815189,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.79,29.29,44.36,54.04,6.666666666666667,1,1,0,0,10,9,5,0,238,413050.69,269160.63,595207.13,330865.97,14565.338,0,5818.8965 +584,710,1264,1263,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,9.1628084,8.8477678,0,1,2,46.430119,-9,-9,-9,2021,12,0,50,0,1,0,0,19.873909,19.873909,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.36,54.04,48.79,29.29,6.666666666666667,1,1,0,0,2,9,5,0,238,413050.69,269160.63,595207.13,330865.97,14565.338,0,5818.8965 +585,711,1265,1267,-9,-9,1,0,48,0,4,0,2,2,-9,0,3,0,6.0039277,6.0561781,8,5,-21.510963,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7282581,43.12,58.55,52,56,3.333333333333333,3,4,0,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1266,-9,1265,1267,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1023.84,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1267,1265,-9,-9,1,1,43,0,4,0,1,1,-9,0,4,8.5273361,8.7163935,0,7,-5,197.41808,0,-9,-9,2021,9,0,45,40,1,1,0,16.297211,16.297211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,43.12,58.55,8,3,4,0,0,1,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1268,-9,1265,1267,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1171.2684,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,711,1269,-9,1265,1267,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-903.11688,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,1,428.20001,774338,643262,258762.75,143267.98,0,0,3416.9683 +585,712,1270,-9,1265,1267,1,1,23,0,4,0,2,2,-9,0,4,7.4869022,7.5663209,0,0,0,-929.94537,0,2,2,2021,10,0,35,0,1,1,1,6.9605169,6.9605169,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,3,1,104,87817.453,0,0,0,0,0,1026.88 +585,713,1271,-9,1265,1267,1,0,19,0,4,0,2,2,-9,0,4,0,0,0,0,0,-978.5401,1,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,0,8,1,1,140,137674.02,0,0,0,0,0,-516.35742 +586,714,1272,1273,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.3846664,7.6393862,55,0,-84.802055,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.33620363,7.8438096,40.84,43.4,58.15,52.91,10,1,1,0,0,0,11,3,1,1282,826634.69,431295.94,303473.56,0,0,0,1959.8971 +586,714,1273,1272,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,56,0,102.23926,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3252568,0,58.15,52.91,40.84,43.4,8.333333333333334,1,1,0,0,0,11,3,1,1282,826634.69,431295.94,303473.56,0,0,0,1959.8971 +587,715,1274,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1080.2009,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.9101002,12.680929,23.095449,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,9,1,0,1611,-2073.4707,0,0,0,0,0,2016.59 +588,716,1275,-9,1277,1276,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.0743,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,623.33331,95416.016,0,222013.89,203576.56,10279.967,0,4538.0273 +588,716,1276,1277,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,9.3425179,9.3629866,0,2,3,-48.288197,0,-9,-9,2021,9,0,84,77,1,0,0,15.950174,15.950174,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,49.98,44.47,8.333333333333334,1,1,0,0,7,12,5,1,623.33331,95416.016,0,222013.89,203576.56,10279.967,0,4538.0273 +588,716,1277,1276,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.412941,7.407145,0,2,-3,-21.862358,-9,-9,-9,2021,9,0,22,0,1,0,0,7.462369,7.462369,0,0,0,0,0,0,0,0,0,0,0,5.4334812,0,49.98,44.47,35.8,59.5,6.666666666666667,1,1,0,0,0,12,5,1,623.33331,95416.016,0,222013.89,203576.56,10279.967,0,4538.0273 +589,717,1278,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,8.9727287,9.1724253,0,0,-1016.6271,0,2,1,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,3.5641277,0,7,1,1,0,6.9078164,9.0441771,23.48,58.65,-9,-9,3.333333333333333,1,1,0,0,0,1,5,1,818,1791137.1,598919.81,216434.08,0,0,0,5086.3486 +590,718,1279,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.2830844,7.1469092,0,0,-948.95966,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6752672,7.3871465,54.92,45.17,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,96,548727.75,376137.91,91904.5,0,0,0,1509.724 +591,719,1280,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1000.7758,0,1,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,30.31,-9,-9,5,1,1,0,0,0,9,1,0,170,206028.95,0,0,0,0,0,1862.9615 +592,720,1281,1284,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,9.0555506,8.7269621,0,10,2,96.182426,0,1,2,2021,11,0,20,30,1,0,0,45.404938,45.404938,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,48.63,57.33,53.46,8.333333333333334,1,1,0,0,6,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1282,-9,1281,1284,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.0621,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1283,-9,1281,1284,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.6271,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1284,1281,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.7136564,8.5222664,0,10,-2,-65.509781,0,3,3,2021,12,0,60,50,1,0,0,18.224133,18.224133,0,0,0,0,0,0,0,0,1,1,0,5.4381113,0,57.33,53.46,38.2,48.63,8.333333333333334,1,1,0,0,11,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +592,720,1285,-9,1281,1284,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-867.89648,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,962,361345.84,13727.453,339353.13,137724.95,10263.612,0,5803.4692 +593,721,1286,-9,1288,1287,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-971.81744,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.98,55.14,-9,-9,8.333333333333334,2,3,0,0,0,5,5,1,1085,1207556,1009676.6,256867.95,3580.5544,0,1697.2166,24220.383 +593,721,1287,1288,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.8235989,9.4810791,0,29,4,43.246834,0,3,3,2021,11,0,74,39,1,0,0,20.926083,20.926083,.05,.05,0,0,0,0,0,0,1,1,0,5.4335842,0,49.12,41.13,51.64,55.4,6.666666666666667,2,3,0,0,14,5,5,1,1085,1207556,1009676.6,256867.95,3580.5544,0,1697.2166,24220.383 +593,721,1288,1287,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.1353149,8.1384735,0,29,-4,19.964989,0,3,3,2021,6,0,37,25,1,0,0,8.2844591,8.2844591,.05,.05,0,0,0,0,0,2,1,1,0,2.3063202,0,51.64,55.4,49.12,41.13,10,2,3,0,0,14,5,5,1,1085,1207556,1009676.6,256867.95,3580.5544,0,1697.2166,24220.383 +593,722,1289,-9,1288,1287,1,0,19,0,0,1,1,0,0,0,4,0,0,0,0,0,-866.74573,-9,2,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7589526,0,54.2,57.49,-9,-9,10,2,3,0,0,3,5,1,1,3762,0,0,0,0,0,0,182.89294 +594,723,1290,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,2,7.6087189,7.5141306,0,0,0,-1090.6703,0,2,2,2021,12,0,32,20,1,0,0,8.6614723,8.6614723,0,0,0,0,0,0,0,0,1,1,0,0,0,37.1,55.19,-9,-9,1.666666666666667,1,1,0,0,6,2,3,0,260,226764.81,0,153708.17,84983.102,0,0,292.20703 +595,724,1291,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.4688163,7.7231102,0,0,0,-1004.6216,0,-9,-9,2021,2,0,42,40,1,0,0,7.0745082,7.0745082,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.99,37.62,-9,-9,10,3,4,0,0,2,5,3,0,246,-63457.535,33933.609,0,0,0,0,1700.2128 +596,725,1292,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.830586,7.6465521,0,0,0,-1052.0513,0,2,3,2021,12,1,38,38,1,1,0,5.7433004,5.7433004,0,0,0,0,0,0,0,0,1,1,0,0,0,27.68,44.37,-9,-9,1.666666666666667,1,1,0,0,8,4,3,0,628,396337.13,372835.75,109389.64,0,0,0,707.30823 +597,726,1293,1294,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,8.0611973,7.8033113,10,1,-125.84985,0,-9,-9,2021,9,0,0,39,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7848713,7.8610735,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,3,9,4,1,237,948163.75,488454.5,376181.38,0,0,0,2807.1978 +597,726,1294,1293,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,7.0865798,7.6489129,31,-1,-56.547668,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0773416,7.2256031,62.39,56.71,57.16,56.15,10,1,1,0,0,8,9,4,1,237,948163.75,488454.5,376181.38,0,0,0,2807.1978 +597,727,1295,-9,1294,1293,1,0,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-925.93738,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5498519,0,38.11,59.76,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,275,10171.9,0,0,0,0,0,-376.96347 +598,728,1296,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6275635,7.8334808,0,0,-990.44141,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6615323,7.9924269,46.24,43.64,-9,-9,5,1,1,0,0,0,8,3,1,1520,755127.94,551183.19,209777.44,0,0,0,1599.1271 +599,729,1297,-9,1298,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.08972,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,0,789.5,154045.94,0,0,0,1441.999,0,2870.7297 +599,729,1298,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,8.351675,8.3753109,0,0,0,-851.26678,0,3,3,2021,25,12,8,16,1,12,0,54.273132,54.273132,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.93,55.18,-9,-9,3.333333333333333,1,1,0,0,3,8,4,0,789.5,154045.94,0,0,0,1441.999,0,2870.7297 +600,730,1299,1300,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.7034459,6.72228,38,0,91.824821,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,6.7665372,0,0,1,1,0,1.8451464,6.6368051,57.42,49.34,58.72,43.42,8.333333333333334,1,1,0,0,1,9,3,1,2134,1026440.5,71645.047,486992.44,0,0,0,2421.9727 +600,730,1300,1299,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.5622129,7.4947581,38,0,169.76831,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.454854,7.4057326,58.72,43.42,57.42,49.34,8.333333333333334,1,1,0,0,4,9,3,1,2134,1026440.5,71645.047,486992.44,0,0,0,2421.9727 +601,731,1301,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,5.242043,5.555213,0,0,-930.07574,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,7.0650535,20.066856,66.419037,0,1,1,0,0,5.5929332,33.09,27.24,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2963,333594.78,-39134.516,139044.8,0,0,0,235.15469 +601,732,1302,-9,1301,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7342296,7.7576141,0,0,0,-1007.1373,0,2,2,2021,14,2,16,14,1,2,0,16.838413,16.838413,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.97,38.46,-9,-9,5,1,1,0,0,10,12,3,1,253,514088.38,344534.28,33183.855,0,3686.9629,0,1746.9647 +602,733,1303,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,0,0,-811.49194,0,3,3,2021,14,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,5,13,1,0,1147,88797.227,110150.73,0,0,0,0,335.92407 +603,734,1304,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.5129795,8.6998663,0,0,0,-978.58734,0,1,-9,2021,7,2,48,40,1,2,0,13.221044,13.221044,.05,.05,0,0,0,0,0,7,1,1,0,6.9386954,0,57.92,51.82,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,181,373098.72,408883.22,0,0,40378.555,3174.3315,2656.1064 +604,735,1305,1306,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3526669,8.6605873,0,2,-3,-9.2378855,0,3,3,2021,9,0,41,41,1,0,0,15.790526,15.790526,.05,.05,0,0,0,0,0,0,0,0,0,6.9597015,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,8,4,5,1,400.5,676862.31,446831.5,149277.86,0,0,0,3555.1699 +604,735,1306,1305,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,8.2893648,8.3239126,0,2,3,-23.735727,0,-9,-9,2021,8,1,37,38,1,1,0,16.883247,16.883247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,400.5,676862.31,446831.5,149277.86,0,0,0,3555.1699 +605,736,1307,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.6055222,8.5239811,0,0,0,-938.97656,0,3,3,2021,8,0,45,45,1,0,0,9.2525177,9.2525177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,687,256198.52,163567.3,57018.426,0,0,0,2326.6902 +606,737,1308,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2323856,8.4449034,4.6345024,0,0,-1054.1835,-9,3,-9,2021,9,0,41,0,1,0,0,8.2314873,8.2314873,0,0,0,0,0,0,0,0,0,0,0,4.8706794,0,54.77,55.87,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,120,-49637.629,0,0,0,0,0,1803.0095 +607,738,1309,1310,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.5431051,8.6073065,7.0701342,5,5,-70.008629,0,-9,-9,2021,6,0,50,50,1,0,0,9.3796263,9.3796263,.05,.05,0,0,0,0,0,0,0,0,0,7.2803898,0,62.39,56.71,55.09,55.87,10,1,1,0,0,5,12,5,1,780.5,777433,120923.39,390247,0,0,0,5956.8584 +607,738,1310,1309,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.915535,8.7302685,0,5,-5,-108.08276,0,-9,-9,2021,7,0,35,45,1,0,0,17.815205,17.815205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,62.39,56.71,8.333333333333334,1,1,0,0,8,12,5,1,780.5,777433,120923.39,390247,0,0,0,5956.8584 +608,739,1311,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,6.9129038,6.6934366,0,0,-967.2475,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,9.4926748,0,0,1,1,0,1.9506278,7.1391621,53.35,41.65,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,103,245760.94,291633.94,188990,0,0,0,1778.9464 +609,740,1312,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.716732,6.4516449,0,0,-1037.4268,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.5225186,51,47,-9,-9,7,3,4,0,0,0,8,2,0,754,177307.56,0,0,0,0,0,2086.4412 +609,741,1313,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,4,0,0,0,0,0,-955.47052,0,2,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,1,0,574,0,0,0,0,0,0,1678.0964 +610,742,1314,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,9.0877857,8.9809513,0,0,0,-1107.2521,0,2,2,2021,11,0,38,44,1,0,0,20.233477,20.233477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,863,20550.91,81439.078,454469.59,265617.31,3590.2883,7940.1694,2767.6277 +611,743,1315,1316,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,28,-5,0,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,48,51,48,7,1,1,0,0,0,6,1,0,1319.5,563654.75,250346.78,152386.8,0,0,0,632.32465 +611,743,1316,1315,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,4,5,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,51,48,48,48,7,1,1,0,1,0,6,1,0,1319.5,563654.75,250346.78,152386.8,0,0,0,632.32465 +612,744,1317,1318,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.2373819,8.1865892,0,19,-2,122.85955,0,3,3,2021,6,0,37,41,1,0,0,11.259467,11.259467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.39,56.71,10,2,3,0,0,10,8,5,1,1898,1230293,905543.25,219891.86,30733.625,1460.9072,0,2947.3142 +612,744,1318,1317,1321,-9,1,1,52,0,0,0,2,2,-9,0,5,8.5747766,8.3932247,0,2,2,-67.845909,0,3,-9,2021,6,0,36,36,1,0,0,11.81258,11.81258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.06,57.76,10,2,3,0,0,11,8,5,1,1898,1230293,905543.25,219891.86,30733.625,1460.9072,0,2947.3142 +612,745,1319,-9,1317,1318,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.3065,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,3,8,1,1,719,-107764.2,0,0,0,0,0,-137.97899 +612,746,1320,-9,1317,1318,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1002.9573,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,8,1,1,443,-63103.426,0,0,0,0,0,0 +612,747,1321,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1082.2997,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.33,64.7,-9,-9,10,2,3,0,0,0,8,1,1,419,429848.09,0,114548.11,0,0,0,0 +613,748,1322,1323,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.6989641,8.7815447,0,10,11,65.936302,0,2,2,2021,8,0,24,24,1,0,0,29.233128,29.233128,.05,.05,0,0,0,0,0,0,0,0,0,4.9285026,0,58.87,51.29,54.23,25.51,8.333333333333334,1,1,0,0,11,4,5,1,1288,2717083.5,2306137.5,323351.19,0,0,0,5098.6992 +613,748,1323,1322,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.8086281,8.8014402,0,10,-11,-9.1804037,0,2,2,2021,11,4,38,38,1,4,0,16.330173,16.330173,.05,.05,0,0,0,0,0,0,0,0,0,5.470943,0,54.23,25.51,58.87,51.29,6.666666666666667,1,1,0,0,11,4,5,1,1288,2717083.5,2306137.5,323351.19,0,0,0,5098.6992 +614,749,1324,1325,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.0437479,8.4707832,7.0140862,35,8,-52.483097,0,-9,-9,2021,12,0,36,36,1,0,0,8.8545952,8.8545952,0,0,0,0,0,0,0,2,0,0,0,5.4935751,7.3196225,55.96,44.4,32.82,43.22,5,1,1,0,0,14,12,5,1,2037.5,1341430.5,873345.5,339247.03,0,0,0,3351.6101 +614,749,1325,1324,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.9534593,8.2611389,0,35,-8,10.708977,0,3,3,2021,24,12,45,30,1,12,0,7.7839055,7.7839055,0,0,0,0,0,0,0,2,0,0,0,0,0,32.82,43.22,55.96,44.4,3.333333333333333,1,1,0,0,14,12,5,1,2037.5,1341430.5,873345.5,339247.03,0,0,0,3351.6101 +615,750,1326,-9,1328,1329,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1036.3418,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,750,1327,-9,1328,1329,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.41608,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,750,1328,1329,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,19,-3,-5.8466024,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.65,36.7,41.86,38.64,8.333333333333334,2,3,0,0,0,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,750,1329,1328,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,7.5821915,7.6724925,0,19,3,54.641289,0,3,1,2021,9,0,40,40,1,0,0,6.8345208,6.8345208,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.86,38.64,45.65,36.7,1.666666666666667,2,3,0,0,12,8,2,0,686.5,-31076.25,4820.1865,0,0,0,0,1795.032 +615,751,1330,-9,1328,1329,1,1,19,0,2,1,2,0,0,0,1,0,0,0,0,0,-1046.4218,-9,2,2,2021,27,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.51,49.2,-9,-9,3.333333333333333,2,3,0,0,0,8,1,0,304,31060.07,0,0,0,0,0,0 +616,752,1331,1332,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,49,-2,-17.821947,0,3,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,36.6,43.98,52.66,42.02,5,1,1,0,0,0,5,3,1,432.5,434665.84,0,395416.94,0,0,0,3603.7573 +616,752,1332,1331,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.220706,8.0117016,49,2,-155.0755,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.6397858,52.66,42.02,36.6,43.98,6.666666666666667,1,1,0,0,4,5,3,1,432.5,434665.84,0,395416.94,0,0,0,3603.7573 +617,753,1333,1334,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9258604,7.7383995,0,4,-17,-69.665222,0,-9,-9,2021,8,0,60,63,1,0,0,4.5218983,4.5218983,.05,.05,0,0,0,0,0,2,1,1,0,0,0,53.37,36.46,61.28,48.88,8.333333333333334,1,1,0,0,4,10,5,1,567.5,614651.25,461582.38,216156.69,64360.426,0,0,3094.1909 +617,753,1334,1333,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.6901388,8.9085798,0,4,17,-50.458164,0,3,3,2021,8,0,61,70,1,0,0,12.553619,12.553619,.05,.05,0,0,0,0,.0099897124,0,1,1,0,0,0,61.28,48.88,53.37,36.46,6.666666666666667,1,1,0,0,9,10,5,1,567.5,614651.25,461582.38,216156.69,64360.426,0,0,3094.1909 +617,754,1335,-9,1333,1334,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1047.6692,0,2,2,2021,28,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.8,30.63,-9,-9,0,1,1,0,0,0,10,1,1,584,-184055.72,200398.66,0,0,-866.36725,0,668.36005 +618,755,1336,-9,1338,1337,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.45569,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,1062.6666,97965.336,146017.25,0,0,-365.17377,0,2021.9786 +618,755,1337,1338,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,7.753026,7.583818,0,6,1,-9.3607121,0,-9,-9,2021,9,0,40,40,1,1,0,9.7273846,9.7273846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49.38,38.56,8,1,1,0,0,9,12,3,1,1062.6666,97965.336,146017.25,0,0,-365.17377,0,2021.9786 +618,755,1338,1337,-9,-9,1,0,46,0,1,0,3,3,-9,0,5,7.654983,7.749053,0,21,-1,-24.312189,0,-9,-9,2021,11,0,29,27,1,0,0,7.928247,7.928247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.38,38.56,52,55,6.666666666666667,1,1,0,0,11,12,3,1,1062.6666,97965.336,146017.25,0,0,-365.17377,0,2021.9786 +619,756,1339,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8737564,8.7385483,0,0,0,-1094.3496,0,1,2,2021,7,0,40,37,1,0,0,14.155306,14.155306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,1.666666666666667,2,3,0,0,12,7,5,1,782,1122171.9,823373.63,107370.88,21040.736,4627.9526,0,2122.4729 +620,757,1340,1341,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.4191866,7.4565773,35,4,-121.67958,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8953018,7.4855747,51.83,57.2,38.27,52.67,6.666666666666667,1,1,0,0,10,11,4,1,742.5,2220232,1421900.3,656367.44,-2321.5078,0,0,6396.7256 +620,757,1341,1340,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.6314974,8.6260195,0,35,-4,-22.353344,0,2,3,2021,19,7,20,25,1,7,0,34.993568,34.993568,0,0,0,0,0,0,0,0,0,0,0,0,0,38.27,52.67,51.83,57.2,8.333333333333334,1,1,0,0,15,11,4,1,742.5,2220232,1421900.3,656367.44,-2321.5078,0,0,6396.7256 +621,758,1342,1343,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.2200465,5.4459114,47,-5,7.4142537,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8272536,5.2395005,57.16,56.15,62.18,36.18,8.333333333333334,1,1,0,0,3,7,4,1,1825.5,2186350.5,1012149.3,250177.13,0,0,0,4469.5195 +621,758,1343,1342,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.5779457,8.6235962,47,5,51.954483,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5173948,8.9254589,62.18,36.18,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,1825.5,2186350.5,1012149.3,250177.13,0,0,0,4469.5195 +622,759,1344,1345,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.2198558,5.3999572,10,1,-148.16052,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3625233,5.4072413,45.02,41.4,49.97,38.26,8.333333333333334,1,1,0,0,0,2,2,1,686.5,675697,308346.31,324475.13,0,0,0,1416.0703 +622,759,1345,1344,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.0742817,6.1087441,10,-1,13.408777,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4189403,6.1026359,49.97,38.26,45.02,41.4,5,1,1,0,0,0,2,2,1,686.5,675697,308346.31,324475.13,0,0,0,1416.0703 +623,760,1346,1348,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.1329765,8.5043173,0,7,3,167.9019,0,2,2,2021,10,1,62,67,1,1,0,7.7264581,7.7264581,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,49.44,54.26,3.333333333333333,1,1,0,1,9,12,4,0,535,102486.77,36918.191,120098.77,0,0,0,2756.9968 +623,760,1347,-9,1348,1346,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1048.9103,-9,2,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.38,57.75,-9,-9,8.333333333333334,1,1,0,0,0,12,4,0,535,102486.77,36918.191,120098.77,0,0,0,2756.9968 +623,760,1348,1346,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.9985957,6.9114237,0,7,-3,-8.3238001,0,3,3,2021,13,1,18,20,1,1,0,7.9508905,7.9508905,0,0,0,0,0,0,0,0,1,1,0,0,0,49.44,54.26,54.96,53.17,8.333333333333334,1,1,0,0,6,12,4,0,535,102486.77,36918.191,120098.77,0,0,0,2756.9968 +623,761,1349,-9,1348,1346,1,0,21,0,0,0,2,2,-9,0,4,7.4154372,7.7234306,0,0,0,-928.37854,0,3,3,2021,8,1,33,47,1,1,1,6.1107974,6.1107974,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,50.73,-9,-9,6.666666666666667,1,1,0,0,5,12,3,0,546,-189996.36,0,0,0,0,0,281.11499 +624,762,1350,-9,1352,1351,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.1073,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +624,762,1351,1352,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,8.4159145,8.2522411,0,5,7,6.2306147,0,-9,-9,2021,6,1,70,97,1,1,0,6.2793026,6.2793026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,23.63,38.01,6.666666666666667,1,1,0,0,1,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +624,762,1352,1351,-9,-9,1,0,37,0,2,0,2,2,-9,1,1,0,0,0,5,-7,-41.498066,0,-9,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.63,38.01,59.43,58.05,1.666666666666667,1,1,1,0,1,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +624,762,1353,-9,1352,1351,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.8555,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,1426.5,148592.84,58784.223,93786.258,72779.727,5341.4258,564.49536,2846.7817 +625,763,1354,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.15076,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,4.3106775,0,54,44,-9,-9,8,1,1,0,0,0,6,1,1,2001,135525.06,0,0,0,0,0,1211.3036 +626,764,1355,1356,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,8.8386049,8.8233528,0,20,-4,71.960724,0,2,3,2021,17,6,12,10,1,6,0,52.871593,52.871593,0,0,.05,0,0,0,0,0,1,1,0,0,0,30.77,64.34,57.16,56.15,6.666666666666667,1,1,0,0,9,9,5,1,822.33331,465234,164601.58,349481.44,104647.65,20032.283,0,6034.5029 +626,764,1356,1355,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.2338762,9.4194489,0,20,4,-23.738588,0,1,1,2021,6,0,45,39,1,0,0,32.182755,32.182755,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.77,64.34,8.333333333333334,1,1,0,0,11,9,5,1,822.33331,465234,164601.58,349481.44,104647.65,20032.283,0,6034.5029 +626,764,1357,-9,1355,1356,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-980.90271,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,5,1,822.33331,465234,164601.58,349481.44,104647.65,20032.283,0,6034.5029 +626,765,1358,-9,1355,1356,1,1,19,0,1,0,2,2,-9,0,4,7.3604784,7.5921192,0,0,0,-929.52728,0,2,1,2021,6,0,45,45,1,0,1,4.741888,4.741888,.05,.05,0,0,0,0,0,0,1,1,0,5.7458138,0,47.83,55.12,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,1097,49835.34,73871.539,0,0,6092.3818,0,291.98477 +627,766,1359,-9,1360,1361,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.55518,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +627,766,1360,1361,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1232538,8.406354,0,8,-2,-2.8978503,0,-9,-9,2021,8,1,33,31,1,1,0,12.609684,12.609684,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,53.51,60.74,8.333333333333334,1,1,0,1,9,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +627,766,1361,1360,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.3456187,6.9924202,0,8,2,-60.386139,0,-9,-9,2021,7,0,50,50,1,0,0,4.4342923,4.4342923,.05,.05,0,0,0,0,0,2,1,1,0,0,0,53.51,60.74,46.28,62.6,8.333333333333334,1,1,0,0,9,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +627,766,1362,-9,1360,1361,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.14362,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,416,36295.578,0,0,0,0,0,2635.6238 +628,767,1363,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.92279,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,17.34,26.15,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,522,-106181.17,0,0,0,8020.3496,1094.7698,1998.787 +629,768,1364,-9,1366,1365,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-960.71045,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,5,1,333.66666,961365.88,774146.31,357531.22,115980.91,78.304405,0,5396.0723 +629,768,1365,1366,-9,-9,1,1,53,1,1,0,2,2,-9,0,4,8.9881411,8.933773,0,6,17,44.020794,0,2,3,2021,9,0,50,49,1,0,0,14.079268,14.079268,.05,.05,0,0,0,0,0,0,1,1,0,4.9469581,0,54.04,47.89,30.18,60.46,6.666666666666667,1,1,0,0,6,10,5,1,333.66666,961365.88,774146.31,357531.22,115980.91,78.304405,0,5396.0723 +629,768,1366,1365,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.8329763,9.1522417,0,6,-17,27.70941,0,2,1,2021,22,9,45,48,1,9,0,20.331997,20.331997,.05,.05,0,0,0,0,0,0,1,1,0,4.9773545,0,30.18,60.46,54.04,47.89,8.333333333333334,1,1,0,0,9,10,5,1,333.66666,961365.88,774146.31,357531.22,115980.91,78.304405,0,5396.0723 +630,769,1367,1370,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,7.2467985,7.4868398,4.0440636,8,-8,101.56115,0,2,3,2021,26,11,23,22,1,11,0,7.5977006,7.5977006,0,0,0,0,0,0,0,0,1,1,0,4.4076757,0,17.34,67.89,51.24,58.84,5,1,1,0,0,4,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1368,-9,1367,1370,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.6399,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1369,-9,1367,1370,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1115.8303,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1370,1367,-9,-9,1,1,37,1,3,0,2,2,-9,0,4,7.8602762,8.2022161,0,8,8,-.16684358,0,-9,-9,2021,9,0,41,41,1,0,0,6.839632,6.839632,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,17.34,67.89,6.666666666666667,1,1,0,0,11,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +630,769,1371,-9,1367,1370,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-839.81946,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,577.59998,490560.81,400786,0,0,1453.7795,0,2773.2852 +631,770,1372,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.5465145,7.7803555,0,0,-969.90753,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1291299,7.7134986,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,367,937545.81,380647.25,0,0,0,0,976.58252 +632,771,1373,1374,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,44,3,0,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,46.92,34.11,40.03,36.06,5,2,3,0,1,0,6,1,1,393,19094.477,0,0,0,2081.6147,0,1576.679 +632,771,1374,1373,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,44,-3,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,7.8834691,0,0,1,1,0,0,0,40.03,36.06,46.92,34.11,5,2,3,0,1,0,6,1,1,393,19094.477,0,0,0,2081.6147,0,1576.679 +633,772,1375,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-932.57867,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0953836,0,52.6,47.34,-9,-9,6.666666666666667,1,1,0,0,1,5,1,1,1105,13866.436,0,99848.281,0,0,0,5659.5439 +634,773,1376,1377,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6516771,6.8871379,0,7,-8,-72.056778,0,-9,-9,2021,10,0,20,0,1,1,0,8.3624735,8.3624735,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,51,48,8,1,1,0,1,10,7,4,1,232.5,655008.81,-29599.033,496923.06,0,0,0,3072.0776 +634,773,1377,1376,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5747986,8.8358412,5.6859865,30,8,-4.1087356,0,3,3,2021,10,0,46,37,1,1,0,12.30929,12.30929,.05,.05,.05,0,0,0,0,0,1,1,0,2.3935819,6.3841763,51,48,51,54,7,1,1,0,1,10,7,4,1,232.5,655008.81,-29599.033,496923.06,0,0,0,3072.0776 +634,774,1378,-9,1376,1377,1,0,24,0,0,0,1,1,-9,0,4,6.5407338,6.4128866,0,0,0,-944.33966,0,2,2,2021,11,0,35,10,1,2,1,2.3306267,2.3306267,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,3,7,2,1,465,2536.8508,42082.09,0,0,0,0,751.47241 +634,775,1379,-9,1376,1377,1,1,22,0,0,0,2,2,-9,0,4,8.4320459,8.3795795,0,0,0,-901.72412,0,2,2,2021,10,0,40,39,1,1,1,15.382854,15.382854,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,6,7,5,1,354,-151468.75,0,0,0,0,0,1452.3213 +634,776,1380,-9,1376,1377,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1034.4224,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,2,7,1,1,574,88153.75,0,0,0,0,0,0 +635,777,1381,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.5377865,7.4169998,0,0,-914.09888,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5941443,62.03,39.01,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,623,1166040.3,351406.06,163168.81,0,0,0,1323.1904 +636,778,1382,1383,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,12,0,17.504358,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.16,26.89,38.14,58.28,0,1,1,0,0,1,12,3,0,1025,123223.05,0,66966.781,31809.969,5901.5977,0,1346.5488 +636,778,1383,1382,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.4623098,7.9210114,0,12,0,46.646187,0,3,3,2021,11,0,35,35,1,0,0,5.3041115,5.3041115,0,0,0,0,0,0,0,0,1,1,0,0,0,38.14,58.28,43.16,26.89,6.666666666666667,1,1,0,0,10,12,3,0,1025,123223.05,0,66966.781,31809.969,5901.5977,0,1346.5488 +637,779,1384,-9,1385,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.83801,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,1,890.5,383001.69,155015.94,236680.03,65880.203,2057.4651,0,1860.5413 +637,779,1385,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,7.0588317,7.4978194,6.8419857,0,0,-1076.6647,0,2,2,2021,10,3,25,20,1,3,0,4.6465392,4.6465392,0,0,0,0,0,0,0,0,1,0,1,6.9921746,0,47.28,59.36,-9,-9,6.666666666666667,1,1,0,0,10,10,2,1,890.5,383001.69,155015.94,236680.03,65880.203,2057.4651,0,1860.5413 +638,780,1386,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.2807279,7.3918018,5.0247011,0,0,-906.19409,0,-9,2,2021,12,0,21,21,1,0,0,11.169353,11.169353,.05,.05,0,0,0,0,0,2,1,1,0,5.4742031,0,43.5,44.85,-9,-9,5,1,1,0,0,10,12,2,0,302,378122.16,536570.44,0,0,0,0,1241.2231 +638,780,1387,-9,1386,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.677,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,302,378122.16,536570.44,0,0,0,0,1241.2231 +639,781,1388,1389,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,11,-3,-33.759819,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,56.95,59.01,44.42,8.333333333333334,1,1,0,0,0,11,3,1,595.5,991835.75,640561.63,280300.97,0,0,0,1144.1895 +639,781,1389,1388,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.5889244,7.3974161,0,11,3,-131.71768,0,2,2,2021,6,0,65,60,1,0,0,3.6954684,3.6954684,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.01,44.42,49.41,56.95,8.333333333333334,1,1,0,0,12,11,3,1,595.5,991835.75,640561.63,280300.97,0,0,0,1144.1895 +639,782,1390,-9,1388,1389,1,1,35,0,0,0,2,2,-9,0,4,5.2940197,5.4527531,0,0,0,-935.45013,0,2,2,2021,6,0,60,70,1,0,1,.35540727,.35540727,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,789,-151305.06,0,0,0,0,0,-56.140217 +640,783,1391,1392,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.5821509,8.0636339,3.5878339,7,3,-6.4301128,0,-9,-9,2021,8,0,40,50,1,0,0,6.8004074,6.8004074,0,0,0,0,0,0,0,0,0,0,0,0,3.6036985,55.8,42.23,57.16,56.15,8.333333333333334,1,1,0,0,11,5,4,1,593.5,113666.33,30152.256,73158.664,0,7306.7861,0,1663.7085 +640,783,1392,1391,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5199938,7.5601311,0,7,-3,78.471275,0,3,3,2021,7,0,34,35,1,0,0,6.4967461,6.4967461,0,0,0,0,0,0,0,0,0,0,0,3.0315182,0,57.16,56.15,55.8,42.23,10,1,1,0,0,11,5,4,1,593.5,113666.33,30152.256,73158.664,0,7306.7861,0,1663.7085 +641,784,1393,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-881.98303,0,2,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.36,30.91,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,1049,-87266.141,0,0,0,-1976.401,0,1976.4652 +642,785,1394,1395,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.5243874,7.9177203,10,1,-16.02804,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7630582,8.1392651,55.93,52.62,49.97,38.85,10,1,1,0,0,1,12,4,1,883.5,2696675.5,775517,315744.81,0,0,0,3536.157 +642,785,1395,1394,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8671064,7.0735188,10,-1,155.26947,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3728185,49.97,38.85,55.93,52.62,8.333333333333334,1,1,0,0,2,12,4,1,883.5,2696675.5,775517,315744.81,0,0,0,3536.157 +643,786,1396,1397,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4289818,7.4200568,49,2,-78.283524,-9,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9808002,7.5069575,53,46,51,46,7,3,4,0,0,0,7,3,1,762.5,1226646.3,543379.13,422230.06,0,0,0,3032.6663 +643,786,1397,1396,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.3721018,7.5410542,9,-2,43.769215,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2948203,51,46,53,46,7,3,4,0,0,0,7,3,1,762.5,1226646.3,543379.13,422230.06,0,0,0,3032.6663 +644,787,1398,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,7.5098071,7.4971848,0,0,0,-995.62122,0,2,3,2021,5,0,27,34,1,0,0,8.8948317,8.8948317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,14,5,3,0,436,188404.13,86262.078,144682.81,0,2386.6418,631.94843,1296.7446 +645,788,1399,1400,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.6088343,7.7148232,7,-2,-36.038197,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0314569,7.9579377,52,48,43.9,57.01,7,4,1,0,0,0,7,3,1,512,916059.44,372458.53,343706.44,0,0,0,2002.9714 +645,788,1400,1399,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,2,-28.147411,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,43.9,57.01,52,48,6.666666666666667,1,1,0,0,0,7,3,1,512,916059.44,372458.53,343706.44,0,0,0,2002.9714 +646,789,1401,1402,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.5401773,8.8236408,0,9,3,22.072592,-9,-9,-9,2021,10,0,44,0,1,0,0,12.743396,12.743396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.18,55.31,40.01,37.94,8.333333333333334,1,1,0,0,9,12,5,1,644.66669,109648.03,24024.1,214768.7,135634.89,9574.7988,10028.834,4945.2583 +646,789,1402,1401,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,8.7061987,9.0686493,0,9,-3,-41.923035,0,2,2,2021,15,4,40,40,1,4,0,14.387807,14.387807,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.01,37.94,47.18,55.31,6.666666666666667,1,1,0,0,9,12,5,1,644.66669,109648.03,24024.1,214768.7,135634.89,9574.7988,10028.834,4945.2583 +646,789,1403,-9,1402,1401,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1036.4191,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,644.66669,109648.03,24024.1,214768.7,135634.89,9574.7988,10028.834,4945.2583 +647,790,1404,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.0244522,7.9673414,0,0,0,-933.5058,0,2,2,2021,21,10,40,37,1,10,0,8.0399036,8.0399036,0,0,0,0,0,0,0,0,0,0,0,0,0,25.28,68.37,-9,-9,6.666666666666667,1,1,0,0,6,6,4,0,109,0,0,0,0,0,0,1347.576 +648,791,1405,1406,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.2955327,7.7470403,12,7,47.468433,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.403718,44.81,57.83,48.65,51.93,8.333333333333334,1,1,0,0,4,13,3,1,762.5,830641.56,515893.28,103960,0,0,0,2157.8105 +648,791,1406,1405,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.0396724,6.8093047,12,-7,19.924515,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.2351904,6.8975592,48.65,51.93,44.81,57.83,8.333333333333334,1,1,0,0,6,13,3,1,762.5,830641.56,515893.28,103960,0,0,0,2157.8105 +649,792,1407,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0360727,7.9928651,0,0,0,-903.89728,0,2,2,2021,13,3,50,35,1,3,0,6.2263227,6.2263227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,-9,-9,1.666666666666667,1,1,0,0,7,12,3,0,975,24871.479,25741.92,0,0,0,0,2091.4998 +650,793,1408,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.3820934,8.5934696,0,0,0,-927.89386,0,2,2,2021,19,6,40,40,1,6,0,12.234681,12.234681,0,0,0,0,0,0,0,0,0,0,0,.51835251,0,40.95,63.66,-9,-9,6.666666666666667,3,4,0,0,9,9,4,1,85,-5503.5181,0,0,0,-175.0311,0,1871.1426 +651,794,1409,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,5.6650405,5.6156058,0,0,-1038.8021,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76504821,5.9263988,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1491,280586.13,213234.42,169369.3,0,0,0,39.857727 +652,795,1410,-9,1411,1413,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.35236,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +652,795,1411,1413,-9,-9,1,0,38,1,2,0,2,2,-9,0,3,0,0,0,9,-4,-86.848831,0,2,1,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.1758604,0,58.32,50.22,54.45,56.22,8.333333333333334,1,1,0,0,5,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +652,795,1412,-9,1411,1413,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.918,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +652,795,1413,1411,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.8049164,8.84165,0,10,4,-40.676163,0,2,2,2021,6,0,40,40,1,0,0,20.163279,20.163279,.05,.05,0,0,0,0,0,2,1,1,0,4.4293418,0,54.45,56.22,58.32,50.22,8.333333333333334,1,1,0,0,9,5,4,1,1001.25,376662.28,112689.08,192137.41,154450.63,5418.748,12.129974,3531.6265 +653,796,1414,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.3895893,7.2908883,0,0,0,-1130.4237,0,2,1,2021,9,0,30,28,1,0,0,8.0547466,8.0547466,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,-9,-9,5,1,1,0,0,12,2,3,1,1729,561842.25,410838.69,142615.67,0,0,0,1206.3669 +653,797,1415,-9,1414,-9,1,1,21,0,0,0,2,2,1,0,3,7.4364905,7.458457,0,0,0,-949.28491,-9,1,-9,2021,14,3,40,0,1,3,1,5.9511933,5.9511933,0,0,0,0,0,0,0,0,1,1,0,0,0,28.31,54.62,-9,-9,3.333333333333333,1,1,0,0,4,2,3,1,585,220844.14,-150403.81,0,0,0,0,314.71378 +654,798,1416,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.7870674,6.9432955,0,0,0,-1013.4766,0,3,3,2021,20,8,35,40,1,8,0,3.6654048,3.6654048,0,0,0,0,0,0,0,2,0,0,0,0,0,43.42,62.33,-9,-9,5,1,1,0,0,9,10,2,0,338,89587.961,0,0,0,-114.19176,0,247.81293 +655,799,1417,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,6.3795466,6.6855841,0,0,-1004.6871,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,40.78878,0,391.41962,0,1,1,0,7.0741634,0,24.93,19.95,-9,-9,0,4,2,0,1,0,10,2,0,1359,-84055,0,26329.848,0,0,0,1551.0493 +656,800,1418,1419,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,0,0,57,5,23.119204,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.31,40.07,39.39,37.66,5,2,3,0,0,0,8,2,1,704.5,476901.03,110208.91,361232.5,0,0,0,1959.293 +656,800,1419,1418,-9,-9,1,0,83,0,0,0,1,1,-9,0,2,0,6.5390487,6.1532326,57,-5,87.400391,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.659688,39.39,37.66,40.31,40.07,5,2,3,0,0,0,8,2,1,704.5,476901.03,110208.91,361232.5,0,0,0,1959.293 +657,801,1420,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.6390615,5.2179136,0,0,-912.98578,0,3,3,2021,4,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.5427284,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,309,130306.52,34156.863,0,0,0,0,817.75726 +658,802,1421,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-979.03333,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48,49,-9,-9,7,1,1,0,1,2,11,1,0,1397,30772.445,0,0,0,0,0,460.04669 +658,803,1422,-9,1421,-9,1,0,27,0,0,0,3,3,-9,0,5,7.8204885,7.5595331,0,0,0,-1121.4473,0,3,-9,2021,6,0,38,20,1,0,1,7.1871834,7.1871834,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,11,3,0,1750,5580.1035,57651.398,0,0,0,0,536.95404 +659,804,1423,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1643047,8.3707809,0,0,0,-937.01556,0,3,3,2021,14,2,30,30,1,2,0,14.875051,14.875051,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.83,62.98,-9,-9,3.333333333333333,1,1,0,0,7,5,4,1,821,402891.38,390928.06,235399.33,115899.55,0,0,1374.8818 +660,805,1424,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.6950207,8.7488184,0,0,0,-1057.5754,0,1,-9,2021,8,0,50,50,1,0,0,12.2789,12.2789,.05,.05,0,0,0,0,0,0,1,1,0,7.7140307,0,60.15,35.65,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,415,612692.75,282870.16,0,0,0,0,2731.3782 +661,806,1425,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-983.3111,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,-9,-9,7,1,1,0,0,0,2,2,0,1082,-159679.53,0,0,0,0,0,1406.6976 +662,807,1426,1429,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,0,0,0,9,0,90.550354,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.7769107,0,36.86,59.86,57.16,56.15,8.333333333333334,1,1,0,0,4,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +662,807,1427,-9,1426,1429,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.29944,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +662,807,1428,-9,1426,1429,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.5977,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +662,807,1429,1426,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7016172,8.9146414,0,9,0,48.026142,0,2,2,2021,9,0,50,52,1,0,0,15.081474,15.081474,.05,.05,0,0,0,0,0,0,1,1,0,2.0621216,0,57.16,56.15,36.86,59.86,8.333333333333334,1,1,0,0,13,6,4,1,1345,303451.22,-28178.693,206925.25,0,0,0,2475.4412 +663,808,1430,1431,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.4713993,8.7003918,0,3,0,-30.777351,0,-9,-9,2021,10,0,38,40,1,0,0,20.083771,20.083771,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,10,5,4,1,920,108904.97,54761.926,158379.69,123689.22,0,0,3350.281 +663,808,1431,1430,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.737186,7.5502133,0,3,0,93.32859,0,2,2,2021,9,0,18,38,1,0,0,13.482904,13.482904,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,920,108904.97,54761.926,158379.69,123689.22,0,0,3350.281 +663,808,1432,-9,1431,1430,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.749,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,920,108904.97,54761.926,158379.69,123689.22,0,0,3350.281 +664,809,1433,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,5.4162135,5.5798607,0,0,-860.99164,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,1.1637163,0,29.234747,0,1,1,0,0,5.479845,43,19.91,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,318,51796.266,49484.086,-4387.335,0,0,0,2087.9375 +665,810,1434,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7727642,8.2193937,0,0,0,-969.55145,0,-9,-9,2021,5,0,35,40,1,0,0,10.694287,10.694287,.05,.05,0,0,0,0,0,0,1,1,0,1.1216158,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,236,459728.59,288572.72,0,0,0,0,1253.1637 +666,811,1435,1436,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.3714719,7.1907911,12,10,-103.18713,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.1710262,7.3954096,61.19,42.11,58.42,27.52,10,1,1,0,0,3,13,2,1,634.5,498183.56,154118.53,224886.78,0,0,0,1932.6633 +666,811,1436,1435,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,12,-10,-53.806419,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,58.42,27.52,61.19,42.11,6.666666666666667,1,1,0,0,0,13,2,1,634.5,498183.56,154118.53,224886.78,0,0,0,1932.6633 +667,812,1437,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.0898046,6.7507038,0,0,-911.48474,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9370918,0,0,1,1,0,0,6.8563371,61.68,23.31,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,471,504925.25,172528.8,587247.81,0,0,0,1181.6835 +668,813,1438,1439,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,61,-2,19.947939,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,12.105866,0,7,1,1,0,0,0,51,46,53,46,8,1,1,0,0,0,11,2,1,1649.5,618165.94,217384.84,303846.31,0,0,0,1482.8517 +668,813,1439,1438,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1787124,7.3511391,61,2,94.486282,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,9.3172522,0,14.5,1,1,0,0,7.4650455,53,46,51,46,8,1,1,0,0,0,11,2,1,1649.5,618165.94,217384.84,303846.31,0,0,0,1482.8517 +669,814,1440,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,7.6662998,7.6968341,0,0,0,-1018.2532,0,2,2,2021,7,0,37,38,1,0,0,7.3622499,7.3622499,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,0,367,-180031.63,0,70466.82,23367.865,0,0,756.30927 +670,815,1441,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-949.64294,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.36,34.37,-9,-9,3.333333333333333,1,1,0,0,3,1,2,0,201,-63309.637,0,0,0,0,0,1997.6678 +671,816,1442,1445,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.1585751,8.0945578,0,7,3,69.456528,0,-9,-9,2021,10,0,40,40,1,1,0,11.084898,11.084898,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,48.7,48.19,7,1,1,0,0,1,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +671,816,1443,-9,1445,1442,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.3368,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +671,816,1444,-9,1445,1442,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.9078,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +671,816,1445,1442,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,0,0,0,7,-3,-35.001823,0,-9,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.7,48.19,51,57,8.333333333333334,1,1,0,0,0,7,3,0,932.5,9426.6865,-43374.531,0,0,54.522022,5731.3486,1967.5858 +672,817,1446,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.7452707,6.5305276,0,0,-1051.6184,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0599381,6.7644634,52.02,33.36,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,383,400010.91,28380.924,191344.11,0,0,0,1376.1801 +673,818,1447,1448,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.5765858,8.6120195,0,12,-10,96.912659,0,2,2,2021,11,0,40,40,1,0,0,14.693201,14.693201,.05,.05,0,0,0,0,0,0,0,0,0,2.0116689,0,54.2,57.49,46.39,60.99,8.333333333333334,4,5,0,0,9,8,5,1,623.66669,1829794,891139.56,884526.25,174732.55,0,0,6126.0488 +673,818,1448,1447,-9,-9,1,1,43,1,1,0,1,1,-9,0,4,9.348156,9.3325434,0,12,10,-4.546741,-9,2,2,2021,11,0,55,0,1,0,0,26.591053,26.591053,.05,.05,0,0,0,0,0,0,0,0,0,2.7272964,0,46.39,60.99,54.2,57.49,8.333333333333334,1,1,0,0,9,8,5,1,623.66669,1829794,891139.56,884526.25,174732.55,0,0,6126.0488 +673,818,1449,-9,1447,1448,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1148.6219,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,623.66669,1829794,891139.56,884526.25,174732.55,0,0,6126.0488 +674,819,1450,1451,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.0161648,8.0210066,0,12,-2,-105.21265,0,-9,-9,2021,15,4,35,55,1,4,0,9.7738905,9.7738905,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.08,37.12,56.92,49.39,8.333333333333334,1,1,0,0,15,11,5,1,1506,1008851.4,766771.5,242032.53,71196.055,0,0,3809.8555 +674,819,1451,1450,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.1455641,8.9147863,0,34,2,-45.927967,0,2,2,2021,6,0,59,38,1,0,0,18.664701,18.664701,.05,.05,0,0,0,0,0,0,0,0,0,5.4349308,0,56.92,49.39,55.08,37.12,8.333333333333334,1,1,0,0,15,11,5,1,1506,1008851.4,766771.5,242032.53,71196.055,0,0,3809.8555 +675,820,1452,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.9209709,8.1144161,0,0,0,-1002.4493,0,2,2,2021,2,0,35,35,1,0,0,10.175186,10.175186,.05,.05,0,0,0,0,0,0,0,0,0,2.2164361,0,63.56,42.4,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,286,-125018.64,58835.461,0,0,0,0,1097.3206 +676,821,1453,1454,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.785306,8.5448246,0,1,-1,-59.386799,-9,-9,-9,2021,10,0,30,0,1,1,0,25.444407,25.444407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,55.34,54.26,7,4,1,0,0,1,13,5,0,929,-168888.53,105871.92,176779.22,140710.98,7259.7217,0,3481.5085 +676,821,1454,1453,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.6629777,7.5686502,0,1,1,59.022118,0,2,2,2021,11,1,35,30,1,1,0,6.9130306,6.9130306,0,0,0,0,0,0,0,0,0,0,0,3.0398855,0,55.34,54.26,50,57,8.333333333333334,1,1,0,0,10,13,5,0,929,-168888.53,105871.92,176779.22,140710.98,7259.7217,0,3481.5085 +677,822,1455,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.1801805,6.3928485,0,0,-978.65479,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4178102,6.2780724,49.37,35.69,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,670,290462.31,199901.91,0,0,0,0,1490.2472 +678,823,1456,1457,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.5999928,8.6956673,50,5,56.943539,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6736832,58.55,46.11,57.33,53.46,8.333333333333334,1,1,0,0,2,2,4,1,200,1182936.8,661010.63,313908.28,0,6088.7852,0,4327.6621 +678,823,1457,1456,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,7,-5,183.06526,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.55,46.11,8.333333333333334,1,1,0,0,5,2,4,1,200,1182936.8,661010.63,313908.28,0,6088.7852,0,4327.6621 +679,824,1458,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,0,0,0,0,0,-954.20245,0,3,-9,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,56,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,2158,-48715.77,0,0,0,0,0,917.72223 +680,825,1459,1461,-9,-9,1,1,46,1,3,0,3,3,-9,0,4,8.3155546,8.3131409,0,3,10,-55.63261,-9,-9,-9,2021,14,3,30,0,1,3,0,14.617776,14.617776,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.36,62.87,35.18,44.65,6.666666666666667,1,1,0,0,6,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1460,-9,1461,1459,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.8694,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1461,1459,-9,-9,1,0,36,1,3,0,1,1,-9,0,3,8.1586704,8.4039221,5.9161739,3,-10,55.201511,0,2,2,2021,20,7,37,15,1,7,0,11.700133,11.700133,0,0,0,0,0,0,0,0,1,1,0,5.4840298,0,35.18,44.65,42.36,62.87,5,1,1,0,1,6,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1462,-9,1461,1459,1,0,15,1,3,1,3,0,-9,0,3,0,0,0,0,0,-1051.7296,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +680,825,1463,-9,1461,1459,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1140.9072,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,4,0,1862.6,1238347.9,327323.66,109654.7,7753.5601,0,0,4141.0698 +681,826,1464,1465,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,0,0,0,15,11,-2.8648369,0,2,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.09,55.87,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1465,1464,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,7.5656986,7.3786507,0,15,-11,-72.194176,0,-9,-9,2021,6,0,27,44,1,0,0,7.4170051,7.4170051,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.09,55.87,8.333333333333334,1,1,0,0,9,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1466,-9,1465,1464,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-932.2276,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.66,42.38,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1467,-9,1465,1464,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.33063,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +681,826,1468,-9,1465,1464,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.4384,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,510.79999,309085.88,153802.47,186366.52,14969.067,0,0,2617.4612 +682,827,1469,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.8476954,6.939002,0,0,-1096.1663,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7115993,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,2164,161058.98,57443,141634.38,0,0,0,1164.3773 +683,828,1470,1471,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.540122,8.8816872,0,29,0,-71.528236,-9,3,2,2021,7,0,42,0,1,0,0,16.962494,16.962494,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.93,52.64,8.333333333333334,1,1,0,0,11,10,4,1,840,1004605.1,698969.5,149635.42,31859.486,0,0,4234.6279 +683,828,1471,1470,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.2509727,7.069304,0,29,0,10.456526,-9,2,2,2021,10,0,19,0,1,0,0,7.9655952,7.9655952,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.93,52.64,57.16,56.15,6.666666666666667,1,1,0,0,11,10,4,1,840,1004605.1,698969.5,149635.42,31859.486,0,0,4234.6279 +683,828,1472,-9,1471,1470,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1034.796,-9,2,1,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,10,4,1,840,1004605.1,698969.5,149635.42,31859.486,0,0,4234.6279 +684,829,1473,-9,1474,1475,1,1,22,0,2,0,1,1,-9,0,4,0,6.9402251,6.7228451,0,0,-925.50153,1,1,1,2021,10,2,0,4,2,2,1,0,0,0,0,0,0,0,0,0,2,1,1,0,7.2399912,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,6016,-192310.48,0,0,0,0,0,1216.3877 +684,830,1474,1475,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.4115582,8.0776215,0,2,-4,-33.48328,-9,-9,-9,2021,10,0,30,0,1,1,0,13.925672,13.925672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,54,54,54,8,4,6,0,0,1,9,4,1,738,719655.5,536773.44,315092.69,140072.14,3750.2959,0,4697.1973 +684,830,1475,1474,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,8.8094263,8.9112129,0,2,4,-27.610535,-9,-9,-9,2021,9,0,50,0,1,1,0,13.079893,13.079893,.05,.05,0,0,0,0,0,0,1,1,0,4.3835497,0,54,54,51,54,8,4,6,0,0,1,9,4,1,738,719655.5,536773.44,315092.69,140072.14,3750.2959,0,4697.1973 +685,831,1476,-9,1477,1478,1,1,11,0,4,1,3,0,-9,0,1,0,0,0,0,0,-1064.1565,-9,2,2,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32,33,-9,-9,3,1,1,-9,0,0,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +685,831,1477,1478,-9,-9,1,0,40,0,4,0,2,2,-9,0,3,8.8077154,8.9406586,0,9,-1,-3.6821187,0,2,2,2021,10,0,42,47,1,0,0,14.246549,14.246549,.05,.05,0,0,0,0,0,0,1,1,0,3.4411592,0,57.33,53.46,50.28,51.35,10,1,1,0,0,9,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +685,831,1478,1477,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,8.9185705,9.0500498,0,9,1,-75.959976,0,2,-9,2021,13,4,37,50,1,4,0,20.162352,20.162352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,57.33,53.46,8.333333333333334,1,1,0,0,11,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +685,831,1479,-9,1477,1478,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1028.6405,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1244.25,445969.47,418306.84,224621.34,105342.82,5527.0254,0,4255.9834 +686,832,1480,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.445631,8.8550119,0,0,0,-950.73175,0,-9,-9,2021,6,0,48,45,1,0,0,14.903605,14.903605,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,10,1,1,0,0,10,10,5,1,120,3845950.3,3379136.8,176854.16,0,0,0,1877.8855 +686,833,1481,-9,-9,1480,1,1,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1060.0935,-9,-9,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,1,3,10,1,1,972,192259.77,0,0,0,0,0,72.852379 +687,834,1482,1483,-9,-9,1,1,81,0,0,0,1,1,-9,0,5,0,9.4528265,9.9690495,61,-1,-83.84716,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4980712,9.948596,60.56,54.81,52.77,44.6,10,1,1,0,0,0,7,5,1,450,3058768.3,2749212,316862.56,0,0,0,10205.775 +687,834,1483,1482,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,5.5891662,5.4861422,61,1,-22.769382,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,1.0276934,0,0,1,1,0,3.9649465,5.5264378,52.77,44.6,60.56,54.81,8.333333333333334,1,1,0,0,0,7,5,1,450,3058768.3,2749212,316862.56,0,0,0,10205.775 +688,835,1484,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.2214622,8.2796745,0,8,2,25.832785,0,2,2,2021,13,4,28,40,1,4,0,15.704035,15.704035,0,0,.05,0,0,0,0,0,0,0,0,3.7660255,0,43.38,50.16,43.43,54.3,8.333333333333334,1,1,0,0,10,4,5,1,1191,381161.31,206461.45,201271.38,75923.891,0,17011.758,1907.7501 +688,836,1485,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.0754738,8.9098063,0,8,-2,7.8951726,0,2,2,2021,11,2,47,45,1,2,0,21.392349,21.392349,.05,.05,0,0,0,0,0,0,0,0,0,6.8075027,0,43.43,54.3,43.38,50.16,6.666666666666667,1,1,0,0,10,4,5,1,793,-123429.91,-29565.121,0,0,0,0,2363.4597 +689,837,1486,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1120.134,0,-9,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.17,30.9,-9,-9,5,1,1,0,0,0,12,1,0,463,166280.31,0,0,0,0,0,1472.7072 +690,838,1487,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.0389247,5.5093732,0,0,-1011.9411,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,6.9685998,12.474874,62.768677,0,1,1,0,0,5.7104154,69.63,25.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,732,-102613.46,241624.31,0,0,9437.2646,0,1568.0944 +691,839,1488,-9,1489,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8698707,7.9998465,0,0,0,-932.47876,0,2,2,2021,7,0,38,37,1,0,1,8.4712315,8.4712315,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,1,4,0,329,-83697.406,63843.527,0,0,0,0,1383.1351 +691,840,1489,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.8551507,7.8352408,0,0,0,-1049.5038,0,3,-9,2021,6,0,38,37,1,0,0,8.8790054,8.8790054,0,0,0,0,0,0,0,0,1,1,0,0,0,52.97,51.29,-9,-9,8.333333333333334,1,1,0,0,13,1,3,0,307,195707.5,0,100660.75,0,0,0,1922.5764 +691,841,1490,-9,1489,-9,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-981.63,-9,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,1,0,0,1,1,0,91,0,0,0,0,0,0,0 +692,842,1491,1492,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,6.7768202,6.9375567,0,46,4,86.728905,0,-9,-9,2021,7,0,16,20,1,0,0,6.7980967,6.7980967,.05,.05,.05,1,0,0,0,0,1,1,0,.78109795,0,62.39,56.71,38.16,44.66,10,2,3,0,0,10,5,2,1,790,515404.09,122753.02,155966.14,0,0,0,1356.5858 +692,842,1492,1491,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,46,-4,-74.501686,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,62.39,56.71,6.666666666666667,2,3,0,0,0,5,2,1,790,515404.09,122753.02,155966.14,0,0,0,1356.5858 +692,842,1493,-9,1492,1491,1,0,16,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1108.2345,-9,-9,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.64,39.59,-9,-9,5,2,3,0,0,0,5,2,1,790,515404.09,122753.02,155966.14,0,0,0,1356.5858 +693,843,1494,-9,1496,1497,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-798.14441,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +693,843,1495,-9,1496,1497,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1173.717,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +693,843,1496,1497,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,7.1024032,6.8042288,0,8,1,-15.569538,0,3,3,2021,15,3,16,16,1,3,0,8.9893122,8.9893122,0,0,0,0,0,0,0,0,1,1,0,0,0,30.79,35.99,50,57,8.333333333333334,1,1,0,0,9,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +693,843,1497,1496,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,8.7099552,8.5850925,0,8,-1,-156.59958,0,-9,-9,2021,10,0,44,40,1,1,0,18.86657,18.86657,0,0,0,0,0,0,0,0,1,1,0,4.5542574,0,50,57,30.79,35.99,7,1,1,0,0,1,12,4,1,756,-28141.285,36369.75,160321.8,142998.69,6997.7939,0,3258.0669 +694,844,1498,1499,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.5001431,7.1723018,0,6,2,-80.186287,0,2,2,2021,12,0,32,34,1,0,0,8.2603235,8.2603235,0,0,0,0,0,0,0,2,0,0,0,0,0,53.98,50.87,57.16,56.15,6.666666666666667,1,1,0,0,4,4,4,1,923,424455.69,11156.636,326473.25,0,0,0,2618.4368 +694,844,1499,1498,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.3378105,8.3924389,0,6,-2,-103.2681,0,1,2,2021,8,0,42,45,1,0,0,10.57362,10.57362,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.98,50.87,5,1,1,0,0,9,4,4,1,923,424455.69,11156.636,326473.25,0,0,0,2618.4368 +695,845,1500,1501,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,7.7125387,7.822258,0,10,3,45.089314,0,-9,-9,2021,8,0,38,38,1,0,0,7.15414,7.15414,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,5,1,1,0,0,10,13,4,1,621,241399.23,68895.547,120450.7,59487.984,0,676.22797,2900.3777 +695,845,1501,1500,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.4557571,8.263422,0,10,-3,-56.986645,0,1,1,2021,8,0,41,41,1,0,0,11.068313,11.068313,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,10,13,4,1,621,241399.23,68895.547,120450.7,59487.984,0,676.22797,2900.3777 +696,846,1502,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1047.3481,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.1410041,0,0,1,1,0,0,0,46.5,38.4,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,152,369251.63,22769.664,323689.31,0,0,0,1676.318 +697,847,1503,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1044.6323,0,2,3,2021,19,5,0,42,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,-9,-9,5,3,4,1,0,6,8,1,0,529,-53261.402,0,0,0,4090.5371,0,1492.5724 +698,848,1504,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8486838,7.8517971,0,0,0,-982.40192,0,3,3,2021,8,0,32,30,1,0,0,12.687366,12.687366,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,14,13,4,1,914,265913.81,138351.77,21337.098,5803.9575,0,0,1292.7805 +699,849,1505,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.4398232,8.2785931,0,0,0,-956.89142,0,3,2,2021,6,0,40,45,1,0,0,13.631794,13.631794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.07,49.39,-9,-9,5,1,1,0,0,6,2,4,0,4217,77251.172,44857.465,88525.719,16701.27,0,0,2405.0935 +700,850,1506,1507,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,6.9903336,7.0753512,38,1,-29.141808,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0366883,64.05,26.3,56.35,51.16,8.333333333333334,1,1,0,0,4,10,3,1,331.5,1490984,784527.06,356084.69,0,0,0,2442.2119 +700,850,1507,1506,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.3504262,7.5637512,0,9,-1,-5.4959278,0,-9,-9,2021,9,0,35,40,1,0,0,5.9003606,5.9003606,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,64.05,26.3,5,1,1,0,0,10,10,3,1,331.5,1490984,784527.06,356084.69,0,0,0,2442.2119 +701,851,1508,1509,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.4219875,8.4234886,0,44,-2,69.020462,-9,2,2,2021,9,0,38,0,1,0,0,14.900973,14.900973,0,0,0,0,0,0,0,2,1,1,0,0,0,52.8,49.47,57.33,53.46,6.666666666666667,3,4,0,0,9,9,5,0,605.5,3448825.5,2730017.5,632658.94,0,0,0,4869.5889 +701,851,1509,1508,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.8733964,8.4760094,7.5114641,44,2,-20.781509,0,3,3,2021,6,0,38,45,1,0,0,7.4132252,7.4132252,0,0,0,0,0,0,0,0,1,1,0,0,7.4297891,57.33,53.46,52.8,49.47,8.333333333333334,3,4,0,0,8,9,5,0,605.5,3448825.5,2730017.5,632658.94,0,0,0,4869.5889 +702,852,1510,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.8651,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.62,25.64,-9,-9,3.333333333333333,1,1,0,0,9,6,1,1,467,-13406.764,0,0,0,0,1760.7094,903.52069 +702,853,1511,-9,-9,1510,1,1,33,0,0,0,3,3,-9,0,2,6.6534953,6.7836232,0,0,0,-1095.5907,0,-9,3,2021,6,0,30,30,1,0,0,2.5058267,2.5058267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,8.333333333333334,1,1,0,0,9,6,2,1,460,-156856.08,81830.672,0,0,0,0,703.23395 +703,854,1512,-9,1513,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.69324,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1554,-11055.773,-33108.133,0,0,-248.79312,0,1595.646 +703,854,1513,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,2,7.4748292,7.6937356,5.7825499,0,0,-1009.8947,0,2,2,2021,13,1,23,21,1,1,0,8.9343872,8.9343872,.05,.05,0,0,0,0,0,0,1,1,0,6.1220059,0,34.8,52.21,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,1554,-11055.773,-33108.133,0,0,-248.79312,0,1595.646 +704,855,1514,1515,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.4780426,8.403017,0,23,0,-8.4908304,0,3,3,2021,7,0,42,37,1,0,0,12.975895,12.975895,.05,.05,0,0,0,0,0,7,0,0,0,2.4366941,0,40.18,55.92,46.08,57.2,8.333333333333334,1,1,0,0,12,5,5,1,766.5,799915.06,702549.88,130479.39,8850.8828,0,0,3172.71 +704,855,1515,1514,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.094142,8.1252966,0,23,0,-20.020435,0,3,3,2021,25,11,38,38,1,11,0,7.5807409,7.5807409,.05,.05,0,0,0,0,0,0,0,0,0,3.3923042,0,46.08,57.2,40.18,55.92,3.333333333333333,1,1,0,0,13,5,5,1,766.5,799915.06,702549.88,130479.39,8850.8828,0,0,3172.71 +705,856,1516,-9,1519,1518,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.91315,0,2,2,2021,12,0,0,40,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,1,1,499,16493.33,0,0,0,0,0,597.73273 +705,857,1517,-9,1519,1518,1,0,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1031.1995,0,2,2,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2936945,0,45,59,-9,-9,7,1,1,0,0,0,7,1,1,156,-127485.44,0,0,0,0,0,-1469.0667 +705,858,1518,1519,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.6643901,7.5357418,0,1,1,33.347118,-9,-9,-9,2021,24,9,25,0,1,9,0,8.4589949,8.4589949,0,0,0,0,0,0,0,0,1,1,0,0,0,44.4,27.15,43,45.43,3.333333333333333,1,1,0,0,5,7,3,1,390.5,-41747.43,333.08105,0,0,0,119.02013,1060.1396 +705,858,1519,1518,-9,-9,1,0,54,0,0,0,2,2,-9,1,3,0,0,0,1,-1,20.02075,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.23953621,120,1,1,0,0,0,43,45.43,44.4,27.15,8.333333333333334,1,1,0,0,3,7,3,1,390.5,-41747.43,333.08105,0,0,0,119.02013,1060.1396 +706,859,1520,1521,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,11,11,0,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,57.57,49.69,29,38.73,8.333333333333334,1,1,0,0,9,12,1,1,339,55730.359,0,109277.84,0,0,0,899.14197 +706,859,1521,1520,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,11,-11,0,0,3,3,2021,19,5,0,19,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8452301,0,29,38.73,57.57,49.69,3.333333333333333,1,1,0,0,12,12,1,1,339,55730.359,0,109277.84,0,0,0,899.14197 +707,860,1522,1523,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.4775734,9.2696333,0,3,4,2.3291898,0,-9,-9,2021,8,0,38,38,1,0,0,41.332405,41.332405,.05,.05,0,0,0,0,0,0,0,0,0,7.2750916,0,57.16,56.15,60.02,56.42,10,1,1,0,0,8,9,5,1,446,692545.13,414337.16,465356.38,240499.05,952.62042,0,5940.6602 +707,860,1523,1522,-9,-9,1,0,36,0,0,0,2,2,-9,0,5,7.6338019,8.0549335,0,3,-4,-55.890144,0,2,2,2021,5,0,36,38,1,0,0,8.6234913,8.6234913,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,10,1,1,0,0,6,9,5,1,446,692545.13,414337.16,465356.38,240499.05,952.62042,0,5940.6602 +708,861,1524,1525,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,45,6,0,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,38.52,45.86,24.93,19.95,5,1,1,0,0,0,10,1,0,2013.5,-87896.102,126476.39,0,0,0,0,1577.0265 +708,861,1525,1524,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,45,-6,0,0,2,2,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,38.52,45.86,0,1,1,0,0,0,10,1,0,2013.5,-87896.102,126476.39,0,0,0,0,1577.0265 +709,862,1526,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,5.9430313,5.9624496,0,0,-1012.9492,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,5.7633524,9.223855,44.076595,0,1,1,0,3.3377192,6.226737,31.2,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1753,141537.95,28855.668,87998.375,0,0,0,2550.6125 +710,863,1527,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9142833,7.6214924,0,0,0,-970.76416,0,3,2,2021,11,0,37,42,1,0,0,7.6207423,7.6207423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.12,50.58,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,499,919.11804,122487.69,0,0,7265.1968,2058.6746,-112.8999 +711,864,1528,1529,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.3573103,8.1257286,0,10,0,42.049294,0,3,-9,2021,8,0,40,40,1,0,0,13.204713,13.204713,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.51,47.91,47.01,58,6.666666666666667,1,1,0,0,11,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +711,864,1529,1528,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,7.9623604,7.8725066,0,24,0,36.024246,0,2,3,2021,11,0,40,43,1,0,0,8.158638,8.158638,0,0,0,0,0,0,0,0,1,1,0,0,0,47.01,58,57.51,47.91,8.333333333333334,1,1,0,0,12,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +711,864,1530,-9,1529,1528,1,0,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-862.11029,-9,3,2,2021,17,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,40.54,-9,-9,3.333333333333333,1,1,0,0,1,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +711,864,1531,-9,1529,1528,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-913.90289,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1332.25,467072.94,70947.875,417315.25,30362.896,0,0,2888.2559 +712,865,1532,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,0,0,0,0,0,-1051.5948,0,3,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,22.01,59.02,-9,-9,3.333333333333333,1,1,1,0,0,8,1,0,655,-123017.71,-40041.203,0,0,0,0,1437.7507 +713,866,1533,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.0951757,8.0491953,0,0,0,-912.51752,0,-9,-9,2021,9,1,49,52,1,1,0,7.48386,7.48386,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,255,97692.797,0,70407.797,66268.836,8453.5566,0,1589.022 +714,867,1534,1535,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.8952556,5.8481517,9,-1,-104.90878,0,3,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.1922135,0,0,1,1,0,2.4497635,6.0073357,51.83,57.2,62.49,55.09,8.333333333333334,1,1,0,0,0,11,3,1,468.5,1058404.5,2998.249,322819.75,0,0,0,3154.5989 +714,867,1535,1534,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.9078379,7.9971333,9,1,21.891855,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5814807,7.665422,62.49,55.09,51.83,57.2,8.333333333333334,1,1,0,0,1,11,3,1,468.5,1058404.5,2998.249,322819.75,0,0,0,3154.5989 +715,868,1536,1537,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.3447809,8.4445229,0,31,3,-74.83242,0,3,3,2021,9,0,60,60,1,0,0,9.4465923,9.4465923,.05,.05,0,0,0,0,0,0,0,0,0,8.2141609,0,56.07,55.46,51,54,8.333333333333334,2,3,0,0,8,5,4,1,1413,1181101.4,974604.88,217813.66,0,6589.5684,0,3943.4077 +715,868,1537,1536,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7068505,7.8295631,0,7,-3,67.908287,-9,-9,-9,2021,10,0,20,0,1,1,0,17.431656,17.431656,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,56.07,55.46,8,2,3,0,0,1,5,4,1,1413,1181101.4,974604.88,217813.66,0,6589.5684,0,3943.4077 +716,869,1538,1539,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,5.8681493,6.0705957,7,-1,22.486992,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.165874,41.26,61.02,59.04,48.6,10,1,1,0,0,0,4,3,1,556.5,460600.69,233076.17,133390.8,0,0,0,2833.5801 +716,869,1539,1538,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.8804288,8.099968,7,1,-22.092686,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4443259,7.5122247,59.04,48.6,41.26,61.02,8.333333333333334,1,1,0,0,0,4,3,1,556.5,460600.69,233076.17,133390.8,0,0,0,2833.5801 +717,870,1540,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.3347,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.14,57.07,-9,-9,10,1,1,1,0,0,4,1,0,349,425946.88,-17943.178,220026.48,61638.875,0,0,1747.7717 +718,871,1541,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3440609,7.9568119,0,0,0,-867.38129,-9,2,2,2021,16,4,42,0,1,4,0,11.955477,11.955477,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.27,60.24,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,232,-22108.453,38410.195,0,0,14159.922,0,1554.3143 +719,872,1542,-9,1543,1544,1,0,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-962.67853,-9,1,1,2021,18,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,56.66,-9,-9,5,1,1,0,0,0,8,5,1,787,622321.25,195295.34,535388.13,99575.703,6769.5435,0,4801.707 +719,872,1543,1544,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.7591314,7.8170328,0,23,-2,59.390442,0,1,1,2021,8,0,26,27,1,0,0,8.4775267,8.4775267,0,0,0,0,0,0,0,0,1,1,0,7.9818082,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,11,8,5,1,787,622321.25,195295.34,535388.13,99575.703,6769.5435,0,4801.707 +719,872,1544,1543,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7539845,8.6097383,0,23,2,-2.3936207,0,2,3,2021,7,0,37,37,1,0,0,15.896171,15.896171,.05,.05,0,0,0,0,0,2,1,1,0,4.2385879,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,787,622321.25,195295.34,535388.13,99575.703,6769.5435,0,4801.707 +720,873,1545,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,7.904273,7.9118495,0,0,0,-941.24109,-9,3,-9,2021,9,0,77,0,1,0,0,3.5253572,3.5253572,.05,.05,0,0,0,0,0,0,0,0,0,.61922443,0,43,60.68,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,1419,118477.01,115276.07,0,0,0,0,1564.2145 +720,874,1546,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.3605156,9.4750767,0,0,0,-940.02283,-9,-9,-9,2021,12,1,90,0,1,1,0,16.82836,16.82836,.05,.05,0,0,0,0,0,0,0,0,0,7.1764078,0,52.23,55.6,-9,-9,5,1,1,0,0,8,1,5,1,237,324709.44,9915.9629,431155.72,0,0,0,4516.5601 +721,875,1547,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6622176,7.7205524,0,0,-1042.2584,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6088724,7.598897,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,3833,487031.31,375178.75,190565.48,0,0,0,925.07251 +722,876,1548,1550,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.8297586,8.8521214,0,12,1,-69.394211,0,-9,-9,2021,11,2,39,42,1,2,0,25.769054,25.769054,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,39.61,56.27,8.333333333333334,1,1,0,0,14,2,5,1,932.66669,2143557.5,1870114.6,332581.63,70034.625,3099.8049,0,4889.4243 +722,876,1549,-9,1550,1548,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-873.96588,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,2,5,1,932.66669,2143557.5,1870114.6,332581.63,70034.625,3099.8049,0,4889.4243 +722,876,1550,1548,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.2433882,8.5870237,0,26,-1,-10.922887,0,1,2,2021,20,8,47,57,1,8,0,14.327078,14.327078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.61,56.27,56.33,51.02,8.333333333333334,1,1,0,0,14,2,5,1,932.66669,2143557.5,1870114.6,332581.63,70034.625,3099.8049,0,4889.4243 +723,877,1551,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,7.9439197,8.3534536,0,0,0,-834.3988,0,2,2,2021,6,0,10,90,1,0,0,36.61953,36.61953,.05,.05,0,0,0,0,0,14.5,0,0,0,7.5425053,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,409,-8171.2666,-44181.391,0,0,0,0,1634.798 +724,878,1552,-9,1553,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1113.1316,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,5,2,0,889,209211.92,56015.117,113564.45,50553.781,0,0,2474.7227 +724,878,1553,-9,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.6489501,7.7593455,0,0,0,-1008.7445,0,-9,-9,2021,13,2,30,30,1,2,0,8.0247974,8.0247974,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.44,56.39,-9,-9,5,1,1,0,1,8,5,2,0,889,209211.92,56015.117,113564.45,50553.781,0,0,2474.7227 +725,879,1554,-9,1555,-9,1,1,51,0,0,0,3,3,-9,0,4,7.7442193,7.2820792,0,0,0,-997.67487,0,3,3,2021,6,0,50,56,1,0,0,5.9348307,5.9348307,0,0,.05,0,0,0,0,2,1,1,0,0,0,53.06,46.84,-9,-9,1.666666666666667,1,1,0,1,12,8,3,0,527,644933.69,168722.84,400409.31,0,0,0,1598.481 +725,880,1555,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-877.00482,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3212322,0,52,45,-9,-9,8,1,1,0,0,0,8,1,0,240,-180021.5,0,0,0,1665.3701,0,732.97449 +726,881,1556,1557,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,7.5996881,7.8213959,39,-20,109.31152,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2665977,7.540916,57.06,57.76,56.94,49.53,8.333333333333334,1,1,0,0,1,7,3,1,2705,1560930.4,227064.41,507128.56,0,0,0,2318.4373 +726,881,1557,1556,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.3852644,6.10883,37,20,17.293619,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5501113,6.4970808,56.94,49.53,57.06,57.76,10,1,1,0,0,0,7,3,1,2705,1560930.4,227064.41,507128.56,0,0,0,2318.4373 +727,882,1558,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-982.45709,-9,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,-9,-9,1.666666666666667,2,3,0,1,3,8,1,0,579,0,0,0,0,0,0,401.39481 +728,883,1559,1560,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.9682865,5.6572676,50,1,-46.102142,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7824836,5.7003593,57.41,54.88,50.04,41.89,8.333333333333334,1,1,0,0,0,8,2,1,443.5,960362.19,562474.69,316062.69,0,0,0,2068.1006 +728,883,1560,1559,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.2032933,6.880064,50,-1,101.78453,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8361764,50.04,41.89,57.41,54.88,6.666666666666667,1,1,0,0,3,8,2,1,443.5,960362.19,562474.69,316062.69,0,0,0,2068.1006 +729,884,1561,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-977.34247,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.573411,0,56.19,41.56,-9,-9,10,2,3,0,0,0,8,1,1,334,6953.0488,0,0,0,0,-2224.9592,754.3952 +730,885,1562,-9,1563,1565,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.0216,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1563,1565,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,8.1326742,8.0326128,0,10,-8,-20.658091,0,2,2,2021,12,0,23,24,1,0,0,16.976791,16.976791,0,0,0,0,0,0,0,103,1,1,0,0,0,40.58,43.59,41.06,54.01,8.333333333333334,1,1,0,0,12,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1564,-9,1563,1565,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.3158,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1565,1563,-9,-9,1,1,46,0,3,0,2,2,-9,0,4,8.65131,8.5358658,0,10,8,-56.900074,0,2,2,2021,15,4,41,41,1,4,0,15.390117,15.390117,.05,.05,0,0,0,0,0,0,1,1,0,.35615909,0,41.06,54.01,40.58,43.59,3.333333333333333,1,1,0,0,12,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +730,885,1566,-9,1563,1565,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.0092,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,754,731122.81,259886.86,574949.31,166674.52,5975.7954,0,3702.1062 +731,886,1567,-9,1569,1568,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.39471,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +731,886,1568,1569,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,7.7479577,7.7569871,0,24,0,-30.309498,0,1,3,2021,11,0,40,40,1,0,0,6.7740979,6.7740979,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.48,54.62,53.14,45.74,3.333333333333333,1,1,0,0,12,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +731,886,1569,1568,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.1348352,8.0140896,0,24,0,-60.724819,0,2,1,2021,14,2,28,28,1,2,0,11.244165,11.244165,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.14,45.74,48.48,54.62,5,1,1,0,0,12,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +731,886,1570,-9,1569,1568,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1086.5188,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,251,616767.25,464913.69,185575.25,64812.359,0,2178.1389,2686.3857 +732,887,1571,1572,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,4,5,62.394085,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,1,0,8.5954647,0,0,1,1,0,0,0,46.98,22.01,44.04,47.08,8.333333333333334,1,1,0,0,0,4,2,0,1076,500828.78,68709.82,206512.88,0,7327.6704,0,1973.6985 +732,887,1572,1571,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,7.4969826,7.4951282,2.807075,30,-5,49.818466,0,2,2,2021,15,3,40,35,1,3,0,4.2673097,4.2673097,0,0,0,0,0,0,0,27,1,1,0,0,2.7238939,44.04,47.08,46.98,22.01,8.333333333333334,1,1,0,0,13,4,2,0,1076,500828.78,68709.82,206512.88,0,7327.6704,0,1973.6985 +732,888,1573,-9,1572,1571,1,1,25,0,0,0,2,2,0,0,3,0,0,0,0,0,-886.8299,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.23,62.65,-9,-9,6.666666666666667,1,1,0,0,3,4,1,0,668,-28989.713,0,0,0,0,0,650.05627 +733,889,1574,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,9.5535011,9.907794,0,0,0,-1137.146,-9,2,2,2021,12,0,16,0,1,0,1,100.63929,100.63929,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.19,56.73,-9,-9,6.666666666666667,1,1,0,0,13,5,5,1,111,195297,214391.72,196219.66,82729.82,0,0,16163.422 +733,890,1575,-9,1574,-9,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-906.93207,-9,2,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,10,1,1,0,0,2,5,1,1,451,-11398.509,0,0,0,0,0,380.39908 +734,891,1576,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,8.3285589,7.9051661,0,0,0,-1074.5208,0,2,2,2021,32,10,46,46,1,10,0,8.6600027,8.6600027,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.97,21.3,-9,-9,0,1,1,0,0,8,5,4,1,287,391095.53,-48370.102,133326,52679.84,0,0,1986.0892 +735,892,1577,1578,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,48,-7,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6017108,0,59.14,52.5,58.16,48.06,8.333333333333334,1,1,0,0,0,12,1,1,492.5,111318.86,0,123005.33,0,0,0,1085.5159 +735,892,1578,1577,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,0,0,48,7,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,59.14,52.5,8.333333333333334,1,1,0,0,0,12,1,1,492.5,111318.86,0,123005.33,0,0,0,1085.5159 +736,893,1579,1581,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.737505,8.7964201,0,30,0,-68.386406,0,2,1,2021,3,0,27,29,1,0,0,21.768358,21.768358,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,52,54.51,8.333333333333334,1,1,0,0,12,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +736,893,1580,-9,1579,1581,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1045.4397,0,1,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.500926,0,51.02,56.13,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +736,893,1581,1579,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.7082109,6.496593,0,12,0,-188.49225,0,-9,-9,2021,7,0,8,8,1,0,0,10.521678,10.521678,.05,.05,0,0,0,0,0,2,1,1,0,4.4625545,0,52,54.51,57.33,53.46,8.333333333333334,1,1,0,0,13,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +736,893,1582,-9,1579,1581,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-987.99377,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,1,1,-9,0,0,7,4,1,374.75,2404602,584879.19,344492.06,0,0,0,3376.7532 +737,894,1583,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.491806,8.4664545,0,1,-6,-92.322159,-9,2,-9,2021,21,9,45,0,1,9,0,9.9789343,9.9789343,0,0,0,0,0,0,0,0,0,0,0,2.6568153,0,40.61,35.42,44.28,43.16,3.333333333333333,1,1,0,0,11,9,5,1,16235,170644.38,95957.836,338608,74718.156,8900.8828,0,1227.2712 +737,895,1584,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.6054773,8.611702,0,1,6,-89.400909,-9,-9,-9,2021,17,6,40,0,1,6,0,18.685383,18.685383,.05,.05,0,0,0,0,0,0,0,0,0,2.8697393,0,44.28,43.16,40.61,35.42,8.333333333333334,1,1,0,1,12,9,5,1,373,333008.09,289963.22,210546.77,50607.156,0,0,2082.0208 +738,896,1585,1587,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.8651161,8.8011532,0,10,1,-76.394966,0,-9,-9,2021,7,1,40,38,1,1,0,20.355143,20.355143,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.09,55.87,54.74,57.22,8.333333333333334,1,1,0,0,11,10,4,1,543.33331,382228.81,100836.69,437478.5,131943.47,0,0,3957.0144 +738,896,1586,-9,1587,1585,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-869.61609,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,4,1,543.33331,382228.81,100836.69,437478.5,131943.47,0,0,3957.0144 +738,896,1587,1585,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.1685448,8.2984972,0,26,-1,-219.74249,0,2,2,2021,10,0,40,40,1,0,0,8.7453098,8.7453098,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,55.09,55.87,8.333333333333334,1,1,0,0,11,10,4,1,543.33331,382228.81,100836.69,437478.5,131943.47,0,0,3957.0144 +738,897,1588,-9,1587,1585,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1020.1744,-9,2,1,2021,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,968,33076.945,0,0,0,0,0,0 +739,898,1589,-9,1590,1591,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.861,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +739,898,1590,1591,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.059309,8.2590666,0,20,2,-62.519836,0,2,2,2021,11,0,24,24,1,0,0,19.022173,19.022173,.05,.05,0,0,0,0,0,2,1,1,0,.62451231,0,48.18,61.8,52,55,8.333333333333334,1,1,0,0,9,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +739,898,1591,1590,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.2636099,9.1755648,0,7,-2,8.8369207,0,-9,-9,2021,9,0,37,42,1,1,0,31.057398,31.057398,.05,.05,0,0,0,0,0,0,1,1,0,3.4971218,0,52,55,48.18,61.8,8,1,1,0,0,1,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +739,898,1592,-9,1590,1591,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6182,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,584,726350.13,479064.69,396132.63,212713.81,0,0,4771.5122 +740,899,1593,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3694544,8.7236042,0,0,0,-1055.4105,0,2,1,2021,11,0,37,38,1,2,0,13.469966,13.469966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,3,4,0,0,9,8,4,1,1739,120561.09,85631.383,0,0,0,2385.5547,1111.3942 +741,900,1594,1595,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.2509418,7.6691604,6.8818264,23,-18,-64.509995,0,3,2,2021,13,2,18,18,1,2,0,6.9946094,6.9946094,0,0,0,0,0,0,0,0,1,1,0,2.3455453,7.0614023,52.23,31.67,41.34,56.62,8.333333333333334,1,1,0,0,5,11,3,1,271.5,355853.69,202336.34,148007.13,0,0,0,2162.5093 +741,900,1595,1594,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,6.5856423,7.2700238,6.7141047,23,18,-104.02883,0,2,3,2021,10,2,13,6,1,2,0,8.3284121,8.3284121,.05,.05,0,0,0,0,0,0,1,1,0,2.2706552,6.8317323,41.34,56.62,52.23,31.67,6.666666666666667,1,1,0,0,7,11,3,1,271.5,355853.69,202336.34,148007.13,0,0,0,2162.5093 +741,901,1596,-9,1594,1595,1,1,18,0,0,0,2,2,1,0,4,6.1176729,6.3027024,0,0,0,-1075.681,-9,2,2,2021,6,0,8,0,1,0,1,7.433744,7.433744,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,533,196003.17,0,0,0,0,0,-187.83795 +742,902,1597,-9,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,8.6078711,8.554718,0,0,-1057.3094,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6533799,8.276638,59.07,43.05,-9,-9,10,1,1,0,0,9,8,4,1,440,1157220,396197.69,454720.84,0,0,0,3182.7861 +743,903,1598,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9199066,8.1222076,0,0,0,-1117.4675,0,3,3,2021,11,3,45,45,1,3,0,6.7878966,6.7878966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.82,46.15,-9,-9,8.333333333333334,3,4,0,1,11,9,4,1,1204,-12856.185,-8859.4502,0,0,0,0,1654.9106 +744,904,1599,-9,1600,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.47522,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,383.5,26501.422,0,0,0,0,0,1569.6774 +744,904,1600,-9,-9,-9,1,0,48,0,3,0,2,2,-9,1,3,6.3992805,6.3123264,0,0,0,-888.16217,-9,2,1,2021,14,4,8,0,1,4,0,9.8505926,9.8505926,0,0,0,0,0,0,0,7,1,1,0,4.0369749,0,43.12,58.55,-9,-9,5,1,1,0,0,6,10,2,1,383.5,26501.422,0,0,0,0,0,1569.6774 +745,905,1601,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,4.8968887,4.9946074,0,0,-900.76093,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.2168391,5.1964107,56.11,44.4,-9,-9,5,1,1,0,0,0,9,2,0,195,104672.92,0,166883.39,57951.68,0,1456.349,1140.8688 +746,906,1602,1603,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.6831942,8.6313572,0,21,-1,-57.153633,0,2,2,2021,6,0,36,36,1,0,0,17.525597,17.525597,.05,.05,0,0,0,0,0,0,1,1,0,1.4359846,0,62.11,48.33,57.06,57.76,8.333333333333334,3,4,0,0,15,8,5,1,1204.5,2452806,1587331.8,782602.13,0,0,0,6142.4707 +746,906,1603,1602,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.4244041,8.6366034,0,19,1,150.65395,0,2,1,2021,0,0,36,36,1,0,0,13.605341,13.605341,0,0,0,0,0,0,0,0,1,1,0,7.871645,0,57.06,57.76,62.11,48.33,10,3,4,0,0,14,8,5,1,1204.5,2452806,1587331.8,782602.13,0,0,0,6142.4707 +746,907,1604,-9,1603,1602,1,1,22,0,0,0,1,1,1,0,4,6.7272258,7.105258,0,0,0,-893.05206,-9,2,1,2021,8,0,18,0,1,0,1,6.6939435,6.6939435,0,0,0,0,0,0,0,0,1,1,0,6.8417368,0,51.83,57.2,-9,-9,8.333333333333334,3,4,0,0,5,8,2,1,373,-53898.652,0,0,0,0,0,527.08447 +746,908,1605,-9,1603,1602,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1023.8582,1,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,712,36922.125,0,0,0,0,0,0 +747,909,1606,1607,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2702818,8.0128527,0,1,-3,-112.70577,0,1,2,2021,12,3,38,38,1,3,0,9.4506044,9.4506044,0,0,0,0,0,0,0,0,0,0,0,4.2397385,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,4,5,1,776.5,-56454.086,-75702.359,0,0,11643.529,1072.7644,3256.8604 +747,909,1607,1606,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.0687313,8.1614704,0,1,3,-82.2817,-9,-9,-9,2021,10,0,41,0,1,0,0,10.310038,10.310038,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,2,4,5,1,776.5,-56454.086,-75702.359,0,0,11643.529,1072.7644,3256.8604 +748,910,1608,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,7.1730113,7.2633824,4.3009439,0,0,-1017.0966,0,-9,-9,2021,5,0,24,30,1,0,0,9.4174805,9.4174805,0,0,0,1,0,0,0,0,1,1,0,6.9073539,4.2353954,56,53,-9,-9,10,1,1,0,0,9,7,3,1,1113,585762.19,141720.67,318830.41,0,0,0,1137.77 +749,911,1609,1610,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.2963891,7.3902135,0,27,-3,-80.127701,0,3,3,2021,6,0,22,20,1,0,0,7.2212334,7.2212334,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,45.04,46.74,8.333333333333334,1,1,0,0,13,13,5,1,606.5,376856.84,160475.41,194215.56,78625.531,34277.297,0,4840.626 +749,911,1610,1609,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.3644962,9.5426655,0,13,3,-45.917763,0,-9,-9,2021,13,1,52,49,1,1,0,23.666822,23.666822,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.04,46.74,60.12,54.8,3.333333333333333,1,1,0,0,11,13,5,1,606.5,376856.84,160475.41,194215.56,78625.531,34277.297,0,4840.626 +749,912,1611,-9,1609,1610,1,1,22,0,0,0,1,1,1,0,3,8.1808729,8.4730368,0,0,0,-777.6228,-9,2,2,2021,18,6,40,0,1,6,1,9.9839487,9.9839487,.05,.05,0,0,0,0,0,0,0,0,0,3.4323266,0,25.71,63.61,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,193,-11515.005,16631.592,265142.28,106238.73,12778.965,0,1323.1533 +749,913,1612,-9,1609,1610,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-968.59198,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9871564,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,2165,207363.3,0,0,0,0,0,667.99426 +750,914,1613,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.696281,6.6109328,0,0,-1038.8612,0,3,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,48.039345,0,0,1,1,0,0,6.474288,25.93,53.21,-9,-9,0,1,1,0,0,0,13,2,1,1726,347295.5,87371.844,116203.05,0,0,0,948.41364 +751,915,1614,1615,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.5461884,4.8735914,39,-1,28.041328,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5854347,5.0526152,57.33,53.46,52.78,33.89,0,1,1,0,0,0,8,5,1,1420,334657.56,124085.25,165048.56,0,0,0,4611.3071 +751,915,1615,1614,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,9.1423054,9.3475332,5.7812228,39,1,-57.192448,0,3,2,2021,20,8,30,30,1,8,0,44.155136,44.155136,.05,.05,0,0,0,0,0,0,1,1,0,6.2199516,6.1941919,52.78,33.89,57.33,53.46,8.333333333333334,1,1,0,0,11,8,5,1,1420,334657.56,124085.25,165048.56,0,0,0,4611.3071 +752,916,1616,-9,1617,-9,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1008.5202,-9,1,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,3,0,803.66669,145988.75,31627.977,249242.95,125080.79,19766.688,510.18619,2229.8857 +752,916,1617,-9,-9,-9,1,0,34,0,2,0,1,1,-9,0,2,8.1382093,8.1347151,0,0,0,-1070.7847,0,2,-9,2021,7,0,39,37,1,0,0,8.8739347,8.8739347,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.27,47.31,-9,-9,8.333333333333334,3,4,0,0,4,7,3,0,803.66669,145988.75,31627.977,249242.95,125080.79,19766.688,510.18619,2229.8857 +752,916,1618,-9,1617,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.2598,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,3,0,803.66669,145988.75,31627.977,249242.95,125080.79,19766.688,510.18619,2229.8857 +753,917,1619,1620,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.4456806,7.609056,35,0,-1.1759504,0,3,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.9461625,7.1662579,58.65,41.84,57.16,56.15,8.333333333333334,1,1,0,0,0,6,4,1,386.5,314719.81,106103.52,130691.39,0,0,0,2479.938 +753,917,1620,1619,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1948385,8.1679583,0,8,0,14.27234,0,-9,-9,2021,7,0,28,20,1,0,0,14.879072,14.879072,0,0,0,0,0,0,1.3939747,0,0,0,0,4.6261444,0,57.16,56.15,58.65,41.84,8.333333333333334,1,1,0,0,6,6,4,1,386.5,314719.81,106103.52,130691.39,0,0,0,2479.938 +754,918,1621,-9,1624,1622,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.11591,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +754,918,1622,1624,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,9.0318842,8.6239614,0,18,-4,41.643559,0,2,2,2021,12,1,35,39,1,1,0,17.069689,17.069689,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,61.01,53.18,8.333333333333334,1,1,0,0,9,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +754,918,1623,-9,1624,1622,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.068,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +754,918,1624,1622,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.54004,7.5911298,0,18,4,152.94429,0,2,2,2021,9,0,10,10,1,0,0,18.940411,18.940411,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,48.18,61.8,10,1,1,0,0,9,7,4,1,938.75,513947.72,-46397.379,455855.25,0,0,0,2953.1909 +755,919,1625,1626,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.3017387,9.3341494,0,8,-1,166.49583,0,2,3,2021,10,0,80,70,1,1,0,14.236087,14.236087,.05,.05,0,0,0,0,0,0,1,1,0,6.8958845,0,50,49,53.68,45.47,7,1,1,0,0,1,12,5,1,251.5,824662.81,372678,501139.25,0,0,0,6907.9746 +755,919,1626,1625,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,8,1,78.119171,0,2,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.9776754,0,53.68,45.47,50,49,6.666666666666667,1,1,0,0,0,12,5,1,251.5,824662.81,372678,501139.25,0,0,0,6907.9746 +755,920,1627,-9,1626,1625,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,0,0,-977.62109,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,0,12,1,1,2660,161179.13,0,0,0,0,0,678.95361 +756,921,1628,-9,1629,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8629,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,657.33331,-145630.58,0,0,0,0,0,1151.3484 +756,921,1629,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-897.45447,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,0,6,1,0,657.33331,-145630.58,0,0,0,0,0,1151.3484 +756,921,1630,-9,1629,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.31201,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,657.33331,-145630.58,0,0,0,0,0,1151.3484 +757,922,1631,1632,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.863102,7.937314,0,6,-11,-30.532276,0,-9,-9,2021,9,0,39,39,1,0,0,9.3681059,9.3681059,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.13,38.05,48.99,49.19,8.333333333333334,1,1,0,0,8,5,5,0,564,1581797,1282527.3,325664.88,46540.734,41967.594,0,3233.2468 +757,922,1632,1631,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.459444,8.5034389,0,6,11,-1.8573129,0,2,2,2021,7,0,48,60,1,0,0,12.408492,12.408492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.99,49.19,58.13,38.05,8.333333333333334,1,1,0,0,12,5,5,0,564,1581797,1282527.3,325664.88,46540.734,41967.594,0,3233.2468 +758,923,1633,1634,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,7.677422,8.2509403,7.2050357,54,1,-66.288124,0,3,3,2021,34,12,20,18,1,12,0,14.79314,14.79314,0,0,0,0,0,0,0,0,1,1,0,6.0048466,6.6664391,31.41,37.37,51.95,39.61,3.333333333333333,1,1,0,0,12,8,4,1,430,2466254.5,554616.56,425217.06,0,0,0,3202.9619 +758,923,1634,1633,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.5468092,6.6483297,54,-1,-37.560425,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3241525,6.8778925,51.95,39.61,31.41,37.37,8.333333333333334,1,1,0,0,5,8,4,1,430,2466254.5,554616.56,425217.06,0,0,0,3202.9619 +759,924,1635,1636,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.8698511,8.8224974,0,22,0,83.009453,0,-9,-9,2021,9,0,49,51,1,0,0,18.980394,18.980394,.05,.05,0,0,0,0,0,0,0,0,0,7.3794689,0,58.15,52.91,58.3,52.91,8.333333333333334,3,4,0,0,10,8,5,1,915.5,1193101.1,696138.69,471130.88,54703.598,0,0,6424.4209 +759,924,1636,1635,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6283598,8.6783733,0,22,0,30.714783,0,-9,-9,2021,9,1,41,38,1,1,0,16.069445,16.069445,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,58.15,52.91,8.333333333333334,3,4,0,0,12,8,5,1,915.5,1193101.1,696138.69,471130.88,54703.598,0,0,6424.4209 +759,925,1637,-9,1636,1635,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-882.96497,-9,1,1,2021,23,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.76947355,0,21.05,64.58,-9,-9,1.666666666666667,3,4,0,0,0,8,2,1,105,69848.672,0,0,0,0,0,-582.65143 +760,926,1638,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7771997,7.6424627,0,0,0,-1005.0861,0,3,-9,2021,11,0,39,39,1,0,0,9.2846861,9.2846861,.05,.05,0,0,0,0,0,0,0,0,0,5.4170179,0,39.06,49.8,-9,-9,8.333333333333334,1,1,0,0,12,6,4,1,1961,-37736.789,-24171.494,0,0,0,0,1565.7571 +761,927,1639,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.5751066,8.4298983,0,0,0,-931.61353,0,3,3,2021,20,7,45,32,1,7,0,12.034738,12.034738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,15.51,67.33,-9,-9,1.666666666666667,1,1,0,1,5,4,4,1,543,53160.93,-73015.055,79148.602,13401.951,15793.604,0,1334.5151 +762,928,1640,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,5.2270341,5.0195808,0,0,-984.59906,0,-9,-9,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8464279,5.1341438,39.51,33.96,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2178,-231395.95,45022.844,0,0,0,0,440.98434 +763,929,1641,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.3361483,8.5127268,0,0,0,-1002.3986,0,3,2,2021,23,9,57,54,1,9,0,8.4213581,8.4213581,.05,.05,0,0,0,0,0,14.5,1,1,0,4.3303242,0,33.59,50.85,-9,-9,1.666666666666667,4,2,0,0,11,6,4,1,291,591803.63,423247.94,265695.38,0,9258.1523,0,1815.4111 +764,930,1642,1643,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.7556763,8.7642736,0,32,-1,53.885513,0,3,1,2021,12,0,40,40,1,0,0,17.94751,17.94751,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,43.91,60.12,54.8,6.666666666666667,1,1,0,0,13,11,5,1,474.5,1706715.6,1320022.4,353177.25,42961.789,0,0,4660.5283 +764,930,1643,1642,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.9022341,9.1943932,0,32,1,-46.417969,0,-9,2,2021,6,0,48,0,1,0,0,21.622786,21.622786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,43.44,43.91,8.333333333333334,1,1,0,0,12,11,5,1,474.5,1706715.6,1320022.4,353177.25,42961.789,0,0,4660.5283 +764,931,1644,-9,1642,1643,1,1,38,0,0,0,1,1,-9,0,3,8.5432634,8.3051519,0,0,0,-995.57721,-9,2,2,2021,14,2,39,0,1,2,1,19.471937,19.471937,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,-9,-9,3.333333333333333,1,1,0,0,3,11,5,1,1382,200754.14,277054.88,100622.02,55528.906,0,4460.0537,1698.0571 +765,932,1645,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.3666983,8.5346928,0,0,0,-932.82507,0,2,2,2021,11,0,20,17,1,0,0,30.894037,30.894037,.05,.05,.05,0,0,0,0,0,1,1,0,4.7993326,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,12,2,4,0,2474,102826.09,-46994.305,114642.42,9287.6865,0,0,2097.8708 +766,933,1646,1647,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,8,4,10.195903,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.57,17.38,37.96,60.22,3.333333333333333,1,1,0,1,1,5,3,1,2104.5,16737.791,23842.797,0,0,0,0,1050.7993 +766,933,1647,1646,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.9121814,7.5651889,0,8,-4,177.53322,0,-9,-9,2021,9,0,12,41,1,0,0,21.331156,21.331156,0,0,0,0,0,0,0,27,0,0,0,0,0,37.96,60.22,57.57,17.38,8.333333333333334,2,3,0,1,10,5,3,1,2104.5,16737.791,23842.797,0,0,0,0,1050.7993 +767,934,1648,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.2044816,6.4438186,0,0,-1085.5582,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,12.550519,0,0,1,1,0,0,6.2359791,50.33,26.15,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,12229,290653.97,-52705.469,93743.57,0,0,0,1762.8171 +768,935,1649,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,5.7866316,6.0257654,0,0,-1042.6289,0,2,3,2021,36,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,5.858767,19.37,30.88,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,508,-176264.22,-34985.965,0,0,0,0,1873.8124 +768,936,1650,-9,1649,-9,1,1,30,0,0,0,2,2,-9,0,3,5.8112173,5.9882574,0,0,0,-985.98718,0,2,-9,2021,20,8,9,9,1,8,1,4.3550205,4.3550205,0,0,0,0,0,0,0,0,1,1,0,0,0,36.08,60.5,-9,-9,5,1,1,0,1,13,8,2,1,966,93647.18,0,0,0,0,0,306.82721 +769,937,1651,1652,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,49,-3,-54.552711,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,10,2,1,1327,782175.06,38079.383,732189.63,0,0,0,1924.1718 +769,937,1652,1651,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,5.6969566,5.8679457,49,3,-21.504286,0,1,1,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.5946584,5.8174691,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,10,2,1,1327,782175.06,38079.383,732189.63,0,0,0,1924.1718 +770,938,1653,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.5476112,7.7979474,6.3169727,0,0,-936.5224,0,2,2,2021,6,0,30,30,1,0,0,8.8310671,8.8310671,.05,.05,0,0,0,0,0,0,1,1,0,5.9156704,6.1125002,61.43,43.34,-9,-9,6.666666666666667,1,1,0,0,11,9,3,1,399,148314.89,-84180.617,0,0,0,0,1862.9514 +771,939,1654,1655,-9,-9,1,1,62,0,2,0,3,3,-9,1,3,0,0,0,6,1,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,50,47,7,2,3,0,0,0,4,1,1,461,614552.31,60107.117,261075.28,0,0,0,1304.7534 +771,939,1655,1654,-9,-9,1,0,61,0,2,0,3,3,-9,1,3,0,0,0,6,-1,0,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50,47,52,48,7,2,3,0,0,0,4,1,1,461,614552.31,60107.117,261075.28,0,0,0,1304.7534 +771,940,1656,-9,1658,1659,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-958.09021,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,940,1657,-9,1658,1659,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9272,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,940,1658,1659,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,0,0,0,6,-7,163.6376,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,56,52,56,7,2,3,0,0,0,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,940,1659,1658,1655,1654,1,1,39,0,2,0,2,2,-9,0,4,7.5846777,7.6747108,0,6,7,-8.8330774,0,3,3,2021,9,0,60,30,1,1,0,3.2908123,3.2908123,.05,.05,0,0,0,0,0,0,1,1,0,6.2008514,0,52,56,49,56,7,2,3,0,0,1,4,2,1,353,-61975.836,-42520.086,0,0,512.16321,0,2810.1697 +771,941,1660,1661,1655,1654,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,5,-3,-76.154785,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2706327,0,54.38,41.24,50,57,8.333333333333334,2,3,0,0,0,4,2,1,345.5,51372.219,20074.676,0,0,1995.2781,0,2076.0994 +771,941,1661,1660,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,7.6070189,7.5282826,0,5,3,-69.707718,0,-9,-9,2021,10,0,36,35,1,1,0,6.9684844,6.9684844,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,54.38,41.24,7,2,3,0,0,1,4,2,1,345.5,51372.219,20074.676,0,0,1995.2781,0,2076.0994 +771,942,1662,-9,1655,1654,1,0,21,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1002.4084,0,3,3,2021,23,11,0,24,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.82,39.27,-9,-9,1.666666666666667,2,3,0,0,2,4,2,1,725,0,0,0,0,0,0,0 +772,943,1663,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.5726643,8.2660923,0,0,0,-927.41681,0,2,2,2021,3,0,37,42,1,0,0,17.901024,17.901024,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,4,5,1,1508,472815.75,65090.359,0,0,10349.191,0,979.43597 +773,944,1664,1668,-9,-9,1,1,40,1,3,0,2,2,-9,0,2,8.9993124,9.2658577,0,16,5,61.432404,0,3,2,2021,14,3,38,35,1,3,0,22.694672,22.694672,0,0,.05,0,0,0,0,0,1,1,0,0,0,30.17,57.06,50.71,52.35,6.666666666666667,1,1,0,0,15,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1665,-9,1668,1664,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.3923,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1666,-9,1668,1664,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.8165,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1667,-9,1668,1664,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-905.90033,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +773,944,1668,1664,-9,-9,1,0,35,1,3,0,1,1,-9,0,3,7.7554111,7.6916718,0,16,-5,.061617319,0,2,2,2021,9,0,35,0,1,0,0,7.5122733,7.5122733,0,0,0,0,0,0,0,0,1,1,0,0,0,50.71,52.35,30.17,57.06,8.333333333333334,1,1,0,0,14,2,4,1,1906.8,311828.03,11109.09,183879.91,28911.42,0,-25.204865,4233.292 +774,945,1669,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.2562952,8.4170103,0,0,0,-903.82886,0,-9,2,2021,13,1,50,-9,1,1,0,8.6388216,8.6388216,.05,.05,0,0,0,0,0,0,0,0,0,6.1932707,0,39.15,41.42,-9,-9,5,1,1,0,0,12,11,4,1,217,104490.11,-86096.07,123674.37,122321.98,0,0,2213.8853 +774,946,1670,-9,-9,-9,1,0,23,0,0,1,2,0,-9,0,3,0,6.1699686,5.5248384,0,0,-936.34027,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3226352,0,32.84,60.85,-9,-9,5,1,1,0,1,3,11,2,1,2256,0,0,0,0,0,0,226.96606 +775,947,1671,1672,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1685014,5.8802853,22,1,18.728529,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,15.895892,0,0,1,1,0,0,6.0571232,41.71,33.65,55.35,36.43,8.333333333333334,1,1,0,0,7,9,2,1,788.5,469967.72,118693.69,316526.13,0,0,0,2667.5054 +775,947,1672,1671,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.252007,6.241982,22,-1,71.726593,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,6.737062,11.697206,61.332642,0,1,1,0,4.4330196,6.3452864,55.35,36.43,41.71,33.65,6.666666666666667,1,1,0,0,5,9,2,1,788.5,469967.72,118693.69,316526.13,0,0,0,2667.5054 +776,948,1673,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.2863293,8.3888121,0,0,0,-978.0918,0,3,-9,2021,7,0,116,50,1,0,0,5.5188141,5.5188141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,15,5,4,0,488,241826.77,315343.78,0,0,10010.609,2035.7355,1763.6007 +776,949,1674,-9,1673,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1120.576,-9,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.935101,0,55.53,51.55,-9,-9,10,1,1,1,0,0,5,2,0,1108,0,0,0,0,0,0,753.01306 +777,950,1675,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,7.5691943,7.3423314,0,0,-833.12787,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,6.8032942,7.8498745,65.697739,0,1,1,0,4.1876149,7.4141898,46.4,32.63,-9,-9,10,1,1,0,0,0,8,3,1,958,5250.02,-14625.981,0,0,0,0,1653.359 +778,951,1676,-9,-9,1677,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.7679,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,2,0,225,-15975.883,0,0,0,0,0,1402.3064 +778,951,1677,-9,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,5.0698104,5.1615372,0,0,0,-940.30487,0,1,2,2021,9,0,40,25,1,1,0,.44797215,.44797215,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,3,4,0,0,11,8,2,0,225,-15975.883,0,0,0,0,0,1402.3064 +779,952,1678,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.3193378,7.3713379,0,0,-1044.9091,0,3,2,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.162622,7.265214,39,36.43,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,2076,163891.06,-158572.72,0,0,1210.6675,0,904.96399 +780,953,1679,-9,1681,1680,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.97156,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,620.66669,500672.16,8460.6865,392937.53,0,0,0,2022.587 +780,953,1680,1681,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.3903332,8.055748,0,8,4,-27.688969,0,-9,-9,2021,15,3,37,40,1,3,0,12.734181,12.734181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.26,60.03,50.61,16.34,3.333333333333333,1,1,0,1,10,4,3,1,620.66669,500672.16,8460.6865,392937.53,0,0,0,2022.587 +780,953,1681,1680,-9,-9,1,0,46,0,1,0,2,2,-9,0,1,3.8836541,3.7854536,0,15,-4,-36.810558,0,-9,-9,2021,16,5,40,35,1,5,0,.16473216,.16473216,0,0,0,0,0,0,0,2,1,1,0,0,0,50.61,16.34,37.26,60.03,3.333333333333333,1,1,0,0,10,4,3,1,620.66669,500672.16,8460.6865,392937.53,0,0,0,2022.587 +781,954,1682,1683,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3667488,8.4289103,0,9,4,-134.64185,0,3,2,2021,9,0,46,50,1,1,0,9.5522327,9.5522327,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,53,38.75,63.48,7,1,1,0,0,1,9,5,0,334.5,216068.56,72912.383,229104.13,164423.03,0,0,2829.4619 +781,954,1683,1682,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.1427889,8.1860628,0,9,-4,-29.900618,0,2,3,2021,16,3,46,43,1,3,0,7.9667368,7.9667368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,38.75,63.48,54,53,6.666666666666667,1,1,0,0,8,9,5,0,334.5,216068.56,72912.383,229104.13,164423.03,0,0,2829.4619 +781,955,1684,-9,1683,1682,1,1,24,0,0,0,2,2,-9,0,4,7.1094131,7.071949,0,0,0,-980.72266,0,2,2,2021,10,0,40,40,1,2,1,4.0060525,4.0060525,0,0,0,0,0,0,0,0,0,0,0,6.5864244,0,49,58,-9,-9,7,1,1,0,0,1,9,2,0,100,110451.31,0,0,0,3299.0518,0,1774.1798 +782,956,1685,1686,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,6.7489138,6.8481207,23,7,-77.980621,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3544865,7.2462416,57.76,54.51,65.22,41.45,8.333333333333334,1,1,0,0,6,4,5,1,378,2417242,1178827.5,432248.31,0,0,0,6460.1221 +782,956,1686,1685,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,9.0363798,9.2566652,23,-7,95.028435,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.904521,9.3726015,65.22,41.45,57.76,54.51,10,1,1,0,0,15,4,5,1,378,2417242,1178827.5,432248.31,0,0,0,6460.1221 +783,957,1687,1688,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7928095,9.0368595,0,23,0,61.761684,0,2,2,2021,7,0,70,70,1,0,0,8.0958652,8.0958652,0,0,.05,0,0,0,0,7,0,0,0,0,0,62.66,52.4,53.86,39.89,8.333333333333334,1,1,0,0,9,11,5,1,1114.5,584886.25,293698.88,249351.69,0,5857.7578,0,3925.0659 +783,957,1688,1687,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.0184755,8.2931604,6.6069741,24,9,-65.500679,0,2,2,2021,10,1,27,32,1,1,0,12.844216,12.844216,0,0,0,0,0,0,0,14.5,0,0,0,5.4461169,6.9420667,53.86,39.89,62.66,52.4,8.333333333333334,1,1,0,0,9,11,5,1,1114.5,584886.25,293698.88,249351.69,0,5857.7578,0,3925.0659 +784,958,1689,1690,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.5415335,8.5164185,0,25,2,163.80576,0,-9,-9,2021,6,0,37,-9,1,0,0,14.921141,14.921141,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,2,3,0,0,10,8,4,1,804.5,1453428,1079059.8,401773.22,0,0,0,1867.7615 +784,958,1690,1689,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,2,-2,-116.8755,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.16,56.15,8.333333333333334,2,3,0,0,0,8,4,1,804.5,1453428,1079059.8,401773.22,0,0,0,1867.7615 +784,959,1691,-9,1690,1689,1,1,26,0,0,0,2,2,-9,0,4,7.3803606,7.5417099,0,0,0,-1035.738,0,3,3,2021,3,0,47,0,1,0,1,3.7772038,3.7772038,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,1,8,3,1,704,97324.359,-75338.219,0,0,0,0,53.40741 +785,960,1692,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,0,0,-936.32941,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.71,50.89,-9,-9,10,1,1,0,0,0,1,1,1,293,320369.03,0,273114.06,0,0,0,-304.65436 +785,961,1693,-9,1692,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-949.53314,0,3,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.42,28.78,-9,-9,0,1,1,0,1,0,1,1,1,266,94607.055,-107122.66,0,0,0,0,1300.3621 +786,962,1694,-9,1695,1697,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.93799,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +786,962,1695,1697,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.5575752,7.6512761,0,13,-2,32.301399,0,1,3,2021,11,0,28,28,1,0,0,9.3339701,9.3339701,.05,.05,0,0,0,0,0,2,0,0,0,7.6473818,0,45.43,53.5,43.92,47.65,8.333333333333334,1,1,0,0,8,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +786,962,1696,-9,1695,1697,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.06958,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +786,962,1697,1695,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.5709791,8.7163706,0,13,2,77.437103,0,2,2,2021,11,0,43,52,1,0,0,15.953547,15.953547,.05,.05,0,0,0,0,0,0,0,0,0,6.8312864,0,43.92,47.65,45.43,53.5,5,1,1,0,0,9,2,4,1,861.25,368543.19,283400.5,244281.97,140163.91,0,0,4421.4023 +787,963,1698,1701,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,7.5763974,7.4322276,0,21,0,-71.893517,0,2,2,2021,12,0,15,15,1,0,0,18.362368,18.362368,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,44.28,46.63,59.72,6.666666666666667,1,1,0,0,11,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,963,1699,-9,1698,1701,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1029.9661,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,963,1700,-9,1698,1701,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-898.91168,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,963,1701,1698,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,7.5479846,7.6060214,0,9,0,-39.171307,0,-9,-9,2021,9,0,53,0,1,0,0,3.5871451,3.5871451,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.63,59.72,43.1,44.28,6.666666666666667,1,1,0,0,10,6,3,1,701.5,94439.945,16075.431,134420.66,53518.172,0,0,3251.978 +787,964,1702,-9,1698,1701,1,1,18,0,2,1,2,0,0,0,3,0,4.1604552,3.9734027,0,0,-1104.4279,-9,1,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4553809,0,57.33,53.46,-9,-9,10,1,1,0,0,1,6,2,1,412,-40578.422,0,0,0,0,0,-412.20462 +788,965,1703,-9,1705,1704,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.06274,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,439.33334,235996.09,201535.16,116492.25,0,0,0,2993.8289 +788,965,1704,1705,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,7.9874287,8.1283865,0,8,3,178.97408,0,2,2,2021,15,3,1,48,1,3,0,340.44891,340.44891,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37,47.76,34.13,61.39,3.333333333333333,1,1,0,0,10,4,4,1,439.33334,235996.09,201535.16,116492.25,0,0,0,2993.8289 +788,965,1705,1704,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.2496824,8.2377424,0,8,-3,63.499969,0,-9,-9,2021,16,4,80,46,1,4,0,6.258667,6.258667,.05,.05,0,0,0,0,0,0,1,1,0,1.1478546,0,34.13,61.39,37,47.76,3.333333333333333,1,1,0,0,9,4,4,1,439.33334,235996.09,201535.16,116492.25,0,0,0,2993.8289 +789,966,1706,1707,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.6599913,8.8555965,0,5,2,-159.72647,0,2,3,2021,16,4,38,38,1,4,0,20.114914,20.114914,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.88,53.56,40.57,29.01,5,1,1,0,0,12,7,4,1,511.5,48612.793,119815.48,0,0,2090.1548,1396.1941,3231.8032 +789,966,1707,1706,-9,-9,1,0,35,0,0,0,1,1,-9,1,1,0,0,0,5,-2,-66.270454,1,-9,-9,2021,15,3,0,1,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.57,29.01,36.88,53.56,8.333333333333334,1,1,0,0,3,7,4,1,511.5,48612.793,119815.48,0,0,2090.1548,1396.1941,3231.8032 +790,967,1708,1709,-9,-9,1,0,80,0,0,0,1,1,-9,0,5,0,6.0639343,5.9323993,60,-1,-107.52316,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2761745,6.286262,57.36,49.4,52.53,19.43,8.333333333333334,1,1,0,0,0,5,2,1,1520,572960.88,214092.06,266584.13,0,0,0,1532.5098 +790,967,1709,1708,-9,-9,1,1,81,0,0,0,1,1,-9,0,2,0,6.4729052,6.9569173,60,1,14.651111,0,2,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,2.4591033,17.333391,30.099972,0,1,1,0,3.6992228,6.5570083,52.53,19.43,57.36,49.4,3.333333333333333,1,1,0,0,0,5,2,1,1520,572960.88,214092.06,266584.13,0,0,0,1532.5098 +791,968,1710,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1810741,8.6345892,0,0,0,-929.69244,0,-9,-9,2021,3,0,30,25,1,0,0,21.863173,21.863173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,10,5,0,462,49870.996,135696.66,0,0,2355.1372,0,1904.7051 +792,969,1711,1712,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.0322618,8.0648308,0,8,1,-159.50641,0,2,2,2021,4,0,12,25,1,0,0,39.434738,39.434738,0,0,0,0,0,0,0,0,1,1,0,0,0,55.75,50.3,61.59,32.28,8.333333333333334,1,1,0,0,9,2,3,1,403,1764088.4,457515.56,342453.31,0,0,0,2579.4502 +792,969,1712,1711,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,8,-1,-144.39275,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8730893,0,61.59,32.28,55.75,50.3,8.333333333333334,1,1,0,0,0,2,3,1,403,1764088.4,457515.56,342453.31,0,0,0,2579.4502 +793,970,1713,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.086185,6.3426495,0,0,-1091.5953,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0870228,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,286,250361.28,94516.281,72626.125,0,0,0,1037.0325 +794,971,1714,-9,1715,1716,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6085,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +794,971,1715,1716,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.6714172,7.7575459,0,18,0,-143.42415,0,-9,-9,2021,7,0,24,25,1,0,0,13.278505,13.278505,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,59.05,37.51,1.666666666666667,1,1,0,0,7,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +794,971,1716,1715,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.930975,8.791728,0,18,0,-82.460625,0,-9,-9,2021,6,0,45,55,1,0,0,21.533813,21.533813,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.05,37.51,52,54.51,8.333333333333334,1,1,0,0,9,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +794,971,1717,-9,1715,1716,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.99707,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,374.75,469792.63,322146.69,135837.27,111223.08,0,0,3199.3735 +795,972,1718,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1117.9417,0,-9,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,3.0802243,0,1,0,1,0,0,27.81,26.62,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,318,0,0,0,0,0,0,629.29999 +796,973,1719,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,7.7029681,7.6300211,5.5285316,0,0,-972.73181,0,3,3,2021,7,0,35,35,1,0,0,6.7666168,6.7666168,0,0,0,0,0,0,0,0,1,1,0,5.6092839,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,11,11,3,0,1982,109899.84,0,98152.766,75378.102,0,0,1343.353 +797,974,1720,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,4.3462167,4.5178618,0,0,-1081.908,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,6.3145761,0,66.510071,0,1,1,0,0,4.1937943,51.19,45.21,-9,-9,5,1,1,0,0,0,10,2,0,334,585886.75,0,135134.69,0,0,0,847.12915 +798,975,1721,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,4.975194,5.0410342,0,0,-890.84241,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,8.5384722,0,0,1,1,0,0,4.7286015,39.23,20.18,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,2835,76600.602,116985.45,56976.578,0,0,0,1827.6069 +799,976,1722,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9260373,7.7642169,0,0,0,-1115.6366,0,2,2,2021,3,0,30,32,1,0,0,14.011455,14.011455,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,1037,149474.2,59892.379,0,0,0,556.59216,2144.2917 +799,977,1723,-9,1722,-9,1,1,22,0,0,0,2,2,-9,0,4,7.8224001,7.7241139,0,0,0,-988.39886,0,2,-9,2021,24,8,44,39,1,8,1,7.0236297,7.0236297,0,0,0,0,0,0,0,0,0,0,0,3.9117026,0,39.82,58.52,-9,-9,8.333333333333334,1,1,0,0,5,13,3,0,1877,161662.47,0,0,0,0,0,995.70953 +799,978,1724,-9,1722,-9,1,1,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-917.61371,-9,2,-9,2021,24,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23.24,62.54,-9,-9,1.666666666666667,1,1,1,0,0,13,2,0,523,0,0,0,0,0,0,0 +800,979,1725,1726,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,52,0,-36.049408,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1609254,0,50,47,36.64,42.63,1.666666666666667,1,1,0,0,0,5,2,1,661.5,545469.38,43078.297,154775.78,0,0,0,1911.9856 +800,979,1726,1725,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.7085066,6.3202219,52,0,1.9034044,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.633805,6.585196,36.64,42.63,50,47,5,1,1,0,0,4,5,2,1,661.5,545469.38,43078.297,154775.78,0,0,0,1911.9856 +801,980,1727,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.2833681,6.2914987,0,0,-975.05377,0,3,3,2021,11,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2056823,4.1592479,31.87,65.88,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,837,303085.34,18236.697,270586.56,0,0,0,1553.3711 +802,981,1728,1729,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.3550663,8.1437979,0,8,-1,141.14388,0,-9,-9,2021,18,6,45,82,1,6,0,9.8984709,9.8984709,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.97,61.83,37.96,55.3,6.666666666666667,1,1,0,0,3,12,4,1,754.5,1472961.3,1284076.8,352764.19,46816.313,40671.074,0,3050.8477 +802,981,1729,1728,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.7191648,7.2771544,0,8,1,-12.017918,0,3,3,2021,12,2,30,28,1,2,0,8.221549,8.221549,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.96,55.3,35.97,61.83,5,1,1,0,0,12,12,4,1,754.5,1472961.3,1284076.8,352764.19,46816.313,40671.074,0,3050.8477 +803,982,1730,1731,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.7977977,7.1388187,7,5,-31.145874,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3868275,6.8147149,63.09,47.92,44.59,59.08,6.666666666666667,1,1,0,0,0,4,2,1,969.5,291078.88,196977.41,115301.59,0,0,0,1685.802 +803,982,1731,1730,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.0393462,5.5047641,7,-5,50.341537,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.4296412,44.59,59.08,63.09,47.92,8.333333333333334,1,1,0,0,8,4,2,1,969.5,291078.88,196977.41,115301.59,0,0,0,1685.802 +804,983,1732,1733,-9,-9,1,1,34,0,0,0,1,1,-9,0,2,8.6858759,8.6162062,0,5,2,194.06052,0,-9,-9,2021,23,11,100,63,1,11,0,6.8715668,6.8715668,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.83,51.23,38.88,60.52,3.333333333333333,1,1,0,1,6,9,5,1,2686,401177.19,93382.82,376668.63,259557.47,0,-338.85541,2729.4419 +804,983,1733,1732,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.1906414,7.9726996,0,5,-2,28.589998,0,2,-9,2021,16,4,41,41,1,4,0,9.6552086,9.6552086,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,60.52,29.83,51.23,6.666666666666667,4,2,0,0,11,9,5,1,2686,401177.19,93382.82,376668.63,259557.47,0,-338.85541,2729.4419 +805,984,1734,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-958.41217,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.6718378,0,19.120224,2,1,1,0,1.0155662,0,53,44,-9,-9,8,1,1,0,0,0,1,1,1,339,73218.938,0,82604.93,0,0,-101.75978,1601.3737 +806,985,1735,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,6.8708839,6.8417249,0,0,0,-1005.7641,0,-9,-9,2021,20,7,27,25,1,7,0,3.7916801,3.7916801,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.92,59.72,-9,-9,1.666666666666667,1,1,0,0,3,4,2,0,1289.5,61310.172,-9020.1318,0,0,0,0,1546.1614 +806,985,1736,-9,1735,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-861.74207,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,1289.5,61310.172,-9020.1318,0,0,0,0,1546.1614 +807,986,1737,-9,-9,-9,1,0,69,0,2,0,2,2,-9,0,4,0,5.9239907,5.9360433,0,0,-965.29712,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8605633,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,799,610746.75,-46463.523,506313.81,0,0,0,1696.6617 +807,987,1738,-9,1737,-9,1,1,43,0,2,0,2,2,-9,0,4,8.0302324,7.6848345,0,0,0,-1009.6464,0,2,2,2021,4,0,37,50,1,0,0,5.973546,5.973546,.05,.05,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,1,9,7,3,1,418,-620.45703,-118022.75,0,0,0,0,1688.0796 +807,987,1739,-9,-9,1738,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1053.7406,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3733642,0,46,58,-9,-9,7,1,1,0,0,0,7,3,1,418,-620.45703,-118022.75,0,0,0,0,1688.0796 +808,988,1740,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.650794,7.880424,7.0369425,0,0,-1010.9048,0,3,3,2021,6,0,21,21,1,0,0,10.604041,10.604041,0,0,0,0,0,0,0,0,1,1,0,2.9321132,6.7396154,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,12,4,1,336,71600.617,32097.637,130895.89,29175.459,0,0,2090.7014 +809,989,1741,-9,1742,1743,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.34851,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,4,0,492,392880.38,72138.945,538202.06,191164.03,1139.8519,1446.3652,3400.2122 +809,989,1742,1743,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.3298225,7.3940272,0,1,2,88.45903,0,2,2,2021,10,1,30,20,1,1,0,6.5975761,6.5975761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.14,59.39,49.04,55.86,0,1,1,0,0,2,7,4,0,492,392880.38,72138.945,538202.06,191164.03,1139.8519,1446.3652,3400.2122 +809,989,1743,1742,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,8.5606365,8.5586777,0,1,-2,-57.276817,-9,-9,-9,2021,16,4,30,0,1,4,0,23.22525,23.22525,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,32.14,59.39,5,3,4,0,1,2,7,4,0,492,392880.38,72138.945,538202.06,191164.03,1139.8519,1446.3652,3400.2122 +810,990,1744,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.11303,6.7791286,0,0,-951.29309,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.1429782,47.24,34.59,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1788,9704.1582,64284.473,0,0,0,828.46228,2175.4541 +810,991,1745,1746,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3055859,8.6053591,0,4,-3,91.22361,-9,-9,-9,2021,12,0,40,0,1,2,0,14.024064,14.024064,0,0,0,0,0,0,0,0,1,1,0,6.0163674,0,46,50,49,50,7,4,1,0,0,1,6,5,1,1327,-12065.217,0,91925.922,22686.104,9088.0332,27.509674,3437.6489 +810,991,1746,1745,1744,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8000288,7.9212737,0,4,3,-103.03631,-9,2,-9,2021,11,0,40,0,1,1,0,7.9532337,7.9532337,0,0,0,0,0,0,0,0,1,1,0,4.3254108,0,49,50,46,50,7,1,1,0,0,1,6,5,1,1327,-12065.217,0,91925.922,22686.104,9088.0332,27.509674,3437.6489 +810,992,1747,-9,1745,1746,1,0,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1070.8201,-9,-9,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,4,6,0,0,0,6,1,1,354,810.49371,0,0,0,0,0,357.43268 +811,993,1748,1749,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,8.8438644,8.55406,48,-1,60.29174,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.458087,60.69,50.51,57.06,57.76,1.666666666666667,1,1,0,0,0,11,5,1,503.5,1633922.5,754955.31,380523.69,0,0,0,4907.5229 +811,993,1749,1748,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.8931084,7.8396549,48,1,29.038893,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1592979,57.06,57.76,60.69,50.51,10,1,1,0,0,0,11,5,1,503.5,1633922.5,754955.31,380523.69,0,0,0,4907.5229 +812,994,1750,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5310993,8.3026657,0,0,0,-925.48077,0,3,3,2021,12,0,35,39,1,0,0,13.579564,13.579564,0,0,0,0,0,0,0,0,0,0,0,2.9074459,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,712,121546.69,0,176908.09,30670.145,0,0,1537.4799 +813,995,1751,1752,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.6054978,8.3529129,7.8504605,7,4,59.845196,0,2,2,2021,7,0,45,45,1,0,0,4.8438616,4.8438616,.05,.05,0,0,0,0,0,2,0,0,0,3.4747417,7.7304482,57.16,56.15,52.79,35.58,8.333333333333334,1,1,0,0,8,1,4,1,833,673831.25,723533.75,0,0,0,0,2241.4958 +813,995,1752,1751,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,7,-4,26.088896,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,52.79,35.58,57.16,56.15,8.333333333333334,1,1,0,0,8,1,4,1,833,673831.25,723533.75,0,0,0,0,2241.4958 +813,996,1753,-9,1752,1751,1,0,27,0,0,0,2,2,-9,0,5,7.5583081,7.4969182,0,0,0,-981.17456,0,2,2,2021,4,0,34,32,1,0,1,6.7622461,6.7622461,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,10,1,1,0,0,1,1,3,1,745,94294.203,0,0,0,0,0,1525.4453 +814,997,1754,1755,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.2709303,8.225337,0,7,1,-98.812416,0,-9,-9,2021,11,0,37,37,1,0,0,10.961997,10.961997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,58.23,43.46,8.333333333333334,1,1,0,0,12,4,5,1,850,-60583.805,-6465.9902,157648.56,62651.711,0,10776.56,2947.2476 +814,997,1755,1754,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.058732,8.0087547,0,7,-1,1.2787805,0,2,2,2021,9,0,40,44,1,0,0,8.6832199,8.6832199,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.23,43.46,54.1,59.11,1.666666666666667,1,1,0,0,12,4,5,1,850,-60583.805,-6465.9902,157648.56,62651.711,0,10776.56,2947.2476 +815,998,1756,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,6.7135205,8.1546717,7.5877914,0,0,-1042.1898,0,2,2,2021,11,0,30,30,1,0,0,3.2647898,3.2647898,.05,.05,0,0,0,0,0,0,0,0,0,6.3374162,7.7198648,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,544,483063.91,280759.22,241531.13,12049.343,0,0,1739.0745 +816,999,1757,1758,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.39081,6.0810618,11,-1,87.489418,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1678219,57.63,56.14,63.8,49.17,8.333333333333334,1,1,0,0,5,11,2,1,584,292518.75,220739.34,137201.31,0,0,0,2011.5903 +816,999,1758,1757,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.4968519,6.2512231,11,1,-2.6386878,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2527976,6.4949627,63.8,49.17,57.63,56.14,8.333333333333334,1,1,0,0,5,11,2,1,584,292518.75,220739.34,137201.31,0,0,0,2011.5903 +817,1000,1759,1760,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.7751517,8.0825443,0,9,0,-70.111176,0,1,2,2021,9,0,46,80,1,0,0,7.4248004,7.4248004,.05,.05,0,0,0,0,0,0,0,0,0,5.8535371,0,53.22,50.02,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,720,-35231.973,-21722.592,0,0,0,0,1425.7662 +817,1000,1760,1759,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.4237599,7.6191382,0,9,0,66.505417,0,2,2,2021,12,2,23,20,1,2,0,8.459033,8.459033,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,53.22,50.02,5,1,1,0,0,10,12,4,1,720,-35231.973,-21722.592,0,0,0,0,1425.7662 +818,1001,1761,-9,1765,1764,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1071.0698,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1762,-9,1765,1764,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-986.36877,-9,1,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,2,3,0,0,0,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1763,-9,1765,1764,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.93866,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1764,1765,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.5031786,9.2568235,0,22,-3,37.648117,0,2,2,2021,10,0,40,40,1,0,0,37.052647,37.052647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,50.92,33.35,1.666666666666667,2,3,0,0,10,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1001,1765,1764,-9,-9,1,0,45,0,3,0,1,1,-9,0,3,0,0,0,22,3,-7.5114183,0,3,-9,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.92,33.35,52.48,54.33,8.333333333333334,2,3,0,0,1,5,4,1,606.79999,322583.72,165731.2,342226.28,201039.83,7651.2905,0,5535.834 +818,1002,1766,-9,1765,1764,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1009.9499,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,0,5,1,1,326,0,0,0,0,0,0,0 +819,1003,1767,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.168705,8.2316675,0,0,0,-1080.9716,0,3,3,2021,10,0,37,37,1,0,0,7.9783106,7.9783106,0,0,0,0,0,0,0,0,0,0,0,0,0,56.37,40.21,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,227,50732.004,0,98479.094,0,0,0,1252.2457 +820,1004,1768,1769,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.6462216,6.8556175,0,39,-2,-18.806583,0,3,2,2021,8,1,15,27,1,1,0,5.3237567,5.3237567,.05,.05,0,0,0,0,0,0,0,0,0,2.6577561,0,58.87,45.76,55.93,49.95,8.333333333333334,1,1,0,0,13,7,4,1,389,112599.11,52281.148,0,0,0,1942.0802,1749.1123 +820,1004,1769,1768,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.271245,8.5441704,0,10,2,58.265301,0,-9,-9,2021,11,0,35,38,1,0,0,10.90377,10.90377,.05,.05,0,0,0,0,0,0,0,0,0,2.5287013,0,55.93,49.95,58.87,45.76,8.333333333333334,1,1,0,0,13,7,4,1,389,112599.11,52281.148,0,0,0,1942.0802,1749.1123 +821,1005,1770,1771,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,7,6,0,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,54,54,7,4,5,0,0,0,8,1,0,498,166821.19,54281.48,0,0,0,0,1958.4192 +821,1005,1771,1770,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,0,0,0,7,-6,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54,54,50,47,8,4,5,0,0,0,8,1,0,498,166821.19,54281.48,0,0,0,0,1958.4192 +822,1006,1772,1773,-9,-9,1,1,31,0,1,0,2,2,-9,0,3,8.3696756,8.3544474,0,5,7,-36.720287,0,-9,-9,2021,17,5,40,45,1,5,0,8.9626369,8.9626369,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,34.44,48.18,5,1,1,0,0,6,6,3,0,452.66666,241245.03,205576.41,27661.607,42114.461,0,0,1399.0941 +822,1006,1773,1772,-9,-9,1,0,24,0,1,0,1,1,0,0,2,0,0,0,5,-7,117.14327,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,41.47,58.08,5,1,1,0,0,5,6,3,0,452.66666,241245.03,205576.41,27661.607,42114.461,0,0,1399.0941 +822,1006,1774,-9,1773,1772,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.30634,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,3,0,452.66666,241245.03,205576.41,27661.607,42114.461,0,0,1399.0941 +823,1007,1775,1776,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.4632998,8.611104,0,30,-1,-4.7823029,0,3,3,2021,6,0,30,30,1,0,0,21.453789,21.453789,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,62.26,40.09,49.81,59.64,8.333333333333334,1,1,0,0,13,13,4,1,339,1165716.6,750650.88,159430.52,7108.6768,0,0,1598.6375 +823,1007,1776,1775,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,0,0,30,1,17.012369,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.81,59.64,62.26,40.09,8.333333333333334,1,1,0,0,8,13,4,1,339,1165716.6,750650.88,159430.52,7108.6768,0,0,1598.6375 +823,1008,1777,-9,1776,1775,1,1,26,0,0,0,1,1,1,0,5,8.6649666,8.7067232,0,0,0,-1120.6238,-9,1,1,2021,6,1,37,0,1,1,1,11.283938,11.283938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,13,5,1,1890,-25807.631,-57858.555,0,0,0,0,2309.8882 +823,1009,1778,-9,1776,1775,1,0,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-894.01221,-9,2,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,838,0,0,0,0,0,0,-170.95874 +823,1010,1779,-9,1776,1775,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-864.88019,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1234,-22979.709,0,0,0,0,0,0 +824,1011,1780,1781,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.2385406,6.4482646,55,10,6.6125493,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.090723,47.87,35.22,60.29,52.11,8.333333333333334,1,1,0,0,0,6,2,1,437.5,1665373.1,238570.56,884148.25,0,2959.4497,0,1882.4086 +824,1011,1781,1780,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.1305776,6.8930645,30,-10,12.635003,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1339753,7.154161,60.29,52.11,47.87,35.22,8.333333333333334,1,1,0,0,0,6,2,1,437.5,1665373.1,238570.56,884148.25,0,2959.4497,0,1882.4086 +825,1012,1782,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.5174656,7.4599504,0,0,0,-903.92438,0,2,2,2021,13,1,42,33,1,1,0,7.6649761,7.6649761,0,0,0,0,0,0,0,0,0,0,0,0,0,43.47,59.65,-9,-9,8.333333333333334,1,1,0,0,12,1,3,1,370,-68366.688,176605.42,268012.66,110972.8,0,0,780.84332 +826,1013,1783,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,7.7691288,7.4764585,0,0,0,-999.10834,0,1,2,2021,21,8,35,25,1,8,0,6.1007385,6.1007385,0,0,0,0,0,0,0,27,1,1,0,1.8579634,0,27.69,62,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,570,7678.4297,0,0,0,0,0,1210.3557 +826,1013,1784,-9,1783,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1017.8626,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,3,1,570,7678.4297,0,0,0,0,0,1210.3557 +827,1014,1785,1786,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.6852517,7.4510489,0,25,-2,34.456776,0,2,2,2021,7,0,60,40,1,0,0,3.8237648,3.8237648,0,0,0,0,0,0,0,0,0,0,0,0,0,57,59.12,58.23,42.4,10,3,4,0,0,8,2,2,0,1045,22427.998,20645.736,106540.44,42466.902,2837.1997,0,1207.7363 +827,1014,1786,1785,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,6.6920724,6.2153745,0,27,2,-11.540639,0,3,2,2021,7,0,60,60,1,0,0,1.429325,1.429325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.23,42.4,57,59.12,3.333333333333333,3,4,0,1,11,2,2,0,1045,22427.998,20645.736,106540.44,42466.902,2837.1997,0,1207.7363 +827,1015,1787,-9,1785,1786,1,1,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-994.06787,-9,2,2,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,538,0,0,0,0,0,0,0 +828,1016,1788,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,7.9701104,7.8495431,0,0,0,-1012.8718,0,3,2,2021,13,1,40,38,1,1,0,8.507,8.507,.05,.05,0,0,0,0,0,0,0,0,0,6.2801471,0,44.02,60.7,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,787,-141979.17,10832.814,0,0,0,0,1029.1785 +829,1017,1789,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,2,7.4188581,7.1747632,0,0,0,-1005.041,0,1,1,2021,20,8,40,40,1,8,1,3.7464135,3.7464135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.78,39.8,-9,-9,3.333333333333333,1,1,0,0,8,2,3,1,435,138653.94,-90459.875,0,0,0,0,1440.6177 +830,1018,1790,1791,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,9.2972841,9.3491383,0,16,-12,-215.68251,0,1,2,2021,10,1,38,38,1,1,0,27.220545,27.220545,.05,.05,0,0,0,0,0,0,0,0,0,2.1782224,0,51.83,57.2,54.74,57.22,8.333333333333334,1,1,0,0,11,8,5,1,315,2308496,913726.38,1110827.8,0,0,0,6007.1494 +830,1018,1791,1790,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,8.6501141,8.7633924,5.6166849,17,12,14.183782,0,1,1,2021,3,0,35,34,1,0,0,17.627562,17.627562,.05,.05,0,0,0,0,0,0,0,0,0,5.5263362,0,54.74,57.22,51.83,57.2,8.333333333333334,1,1,0,0,14,8,5,1,315,2308496,913726.38,1110827.8,0,0,0,6007.1494 +831,1019,1792,1793,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,42,1,-48.072964,0,3,3,2021,10,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.0020418,0,49.93,49.66,51.24,58.84,8.333333333333334,1,1,0,0,9,6,3,1,1030,119948.47,0,120046.9,0,0,0,1936.6846 +831,1019,1793,1792,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.8805404,7.9612803,0,42,-1,-74.349083,0,3,3,2021,12,0,38,38,1,0,0,7.4945788,7.4945788,0,0,0,0,0,0,0,7,0,0,0,4.1204414,0,51.24,58.84,49.93,49.66,6.666666666666667,1,1,0,0,10,6,3,1,1030,119948.47,0,120046.9,0,0,0,1936.6846 +832,1020,1794,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,6.7062984,6.5593987,0,0,0,-1058.8594,0,2,2,2021,15,3,28,28,1,3,0,2.5715706,2.5715706,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,1,11,9,2,0,1402.5,-94221.211,0,0,0,-566.60925,11045.695,1083.651 +832,1020,1795,-9,1794,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0012,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1402.5,-94221.211,0,0,0,-566.60925,11045.695,1083.651 +833,1021,1796,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-828.78473,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.6292992,0,48.86,40.74,-9,-9,5,1,1,0,0,1,5,1,1,240,43432.578,0,164659.86,0,0,0,2533.2065 +834,1022,1797,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.8307,0,3,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,20.808928,0,0,1,1,0,0,0,33.15,33.58,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,561,-8334.75,0,0,0,0,0,560.77386 +835,1023,1798,1799,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.6953554,8.5479679,0,37,-4,-41.012058,0,2,2,2021,6,0,48,50,1,0,0,13.659851,13.659851,0,0,0,0,0,0,0,0,0,0,0,7.6809545,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,8,9,5,1,373,1859589,1339402.3,1078538.9,450702.5,0,0,16199.473 +835,1023,1799,1798,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.7573528,9.7031298,0,37,4,38.131218,0,3,3,2021,6,0,80,70,1,0,0,27.218033,27.218033,.05,.05,0,0,0,0,0,0,0,0,0,9.4886312,0,62.39,56.71,57.06,57.76,10,1,1,0,0,9,9,5,1,373,1859589,1339402.3,1078538.9,450702.5,0,0,16199.473 +835,1024,1800,-9,1798,1799,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-978.97369,1,1,2,2021,22,9,0,36,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9515514,0,30.65,50.13,-9,-9,3.333333333333333,1,1,0,0,2,9,1,1,348,11862.313,0,0,0,0,0,-454.9404 +835,1025,1801,-9,1798,1799,1,0,19,0,0,0,2,2,-9,0,3,8.0321121,7.7498145,0,0,0,-1094.5845,0,1,2,2021,11,0,44,43,1,0,1,8.3138895,8.3138895,.05,.05,0,0,0,0,0,0,0,0,0,.92281055,0,52.99,51.28,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,352,-55489.262,-39220.711,0,0,0,323.63797,1834.2434 +835,1026,1802,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.8623581,8.8146114,0,0,0,-1061.601,0,-9,-9,2021,7,0,60,75,1,0,0,14.52984,14.52984,.05,.05,0,0,0,0,0,0,0,0,0,1.2772586,0,55.94,41.92,-9,-9,6.666666666666667,1,1,0,0,3,9,5,1,877,153142.36,53592.988,216664.64,110930.6,2565.5464,-1092.6031,2123.8552 +836,1027,1803,1806,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.5117159,8.6728125,0,23,-2,-177.61572,0,3,2,2021,9,0,60,60,1,1,0,8.5928164,8.5928164,.05,.05,0,0,0,0,.87200928,0,1,1,0,0,0,51,56,42.86,30.55,8,1,1,0,0,1,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +836,1027,1804,-9,1806,1803,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.98792,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +836,1027,1805,-9,1806,1803,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-972.30005,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +836,1027,1806,1803,-9,-9,1,0,44,0,2,0,2,2,-9,1,1,0,0,0,22,2,-11.087694,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.86,30.55,51,56,6.666666666666667,1,1,0,0,0,7,3,1,1063.5,383064.16,27178.947,339064.91,129770.41,0,0,3868.3579 +837,1028,1807,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.3087473,7.8105669,0,0,-1019.0711,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2745228,7.4013801,54.55,49.25,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,629,438984.66,241417.47,268325.59,0,0,0,1221.3031 +838,1029,1808,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.3046255,8.6183529,0,0,0,-1076.4021,0,2,2,2021,8,0,37,38,1,0,0,13.54818,13.54818,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,314,50533.469,0,0,0,0,4533.1211,1531.3137 +839,1030,1809,1810,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.3770828,8.394125,0,4,-13,-21.320372,0,-9,-9,2021,10,0,35,35,1,0,0,13.380905,13.380905,.05,.05,0,0,0,0,0,0,0,0,0,.38566971,0,54.1,59.11,31.84,51.65,8.333333333333334,1,1,0,0,11,4,5,1,1005.5,213961.53,117642.61,170078.97,160087.75,9359.0303,3438.6528,3224.3545 +839,1030,1810,1809,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.4002352,8.4624481,0,4,13,-147.19542,0,-9,-9,2021,18,5,35,35,1,5,0,16.445992,16.445992,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.84,51.65,54.1,59.11,8.333333333333334,1,1,0,0,14,4,5,1,1005.5,213961.53,117642.61,170078.97,160087.75,9359.0303,3438.6528,3224.3545 +840,1031,1811,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.1494,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.53,56.6,-9,-9,3.333333333333333,1,1,1,0,8,12,1,1,612,-57555.703,0,0,0,0,0,-50.442818 +841,1032,1812,1813,1815,-9,1,1,56,0,1,0,2,2,-9,1,2,8.4107132,8.9332066,8.4045391,33,5,27.669537,0,3,3,2021,14,2,36,36,1,2,0,17.916433,17.916433,.05,.05,0,0,0,0,0,2,1,1,0,8.2212801,0,38.65,34.09,56.19,46.16,6.666666666666667,2,3,0,0,12,8,5,1,810.66669,311001.03,295187.97,402476.28,389343.44,0,7365.9087,5783.311 +841,1032,1813,1812,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.3017235,8.0928469,0,33,-5,-97.756027,0,3,3,2021,12,0,37,43,1,0,0,11.708441,11.708441,0,0,0,0,0,0,0,2,1,1,0,0,0,56.19,46.16,38.65,34.09,5,2,3,0,0,8,8,5,1,810.66669,311001.03,295187.97,402476.28,389343.44,0,7365.9087,5783.311 +841,1032,1814,-9,1813,1812,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-890.104,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,0,8,5,1,810.66669,311001.03,295187.97,402476.28,389343.44,0,7365.9087,5783.311 +841,1033,1815,-9,-9,-9,1,0,81,0,1,0,3,3,-9,0,3,0,4.6029482,4.2676258,0,0,-1164.3967,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.291749,52,45,-9,-9,8,2,3,0,0,0,8,2,1,818,317796.59,0,276144.47,0,0,0,312.79239 +842,1034,1816,-9,-9,-9,1,0,49,0,0,0,1,1,-9,1,4,0,0,0,0,0,-1044.2142,0,2,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0154268,0,51.27,20.98,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,608,193338.19,104374.41,0,0,2034.4053,0,310.07822 +843,1035,1817,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,6.414753,6.1690159,0,0,-1010.8984,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,.66051656,7.7593431,23.559818,7,1,1,0,0,5.9210238,41.63,23.08,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,117,265514.59,61165.086,298063.44,0,4534.1768,0,1077.2595 +844,1036,1818,1819,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.4795732,9.6265078,0,10,7,38.452267,0,2,1,2021,10,0,84,97,1,1,0,18.463848,18.463848,0,0,0,0,0,0,0,0,1,1,0,.74935293,0,51,48,60.7,47.65,7,1,1,0,0,1,10,5,1,548,4776490,3087002,929933.69,0,0,0,8820.3652 +844,1036,1819,1818,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,8.9301701,8.99687,0,35,-7,8.4658146,0,1,2,2021,7,0,30,40,1,0,0,30.796661,30.796661,0,0,0,0,0,0,0,0,1,1,0,7.7186441,0,60.7,47.65,51,48,8.333333333333334,1,1,0,0,11,10,5,1,548,4776490,3087002,929933.69,0,0,0,8820.3652 +844,1037,1820,-9,1819,1818,1,1,18,0,0,0,2,2,1,0,3,7.9346476,7.8068676,0,0,0,-943.48468,-9,2,1,2021,27,12,40,0,1,12,1,6.9048228,6.9048228,0,0,0,0,0,0,0,0,1,1,0,0,0,28.82,54.36,-9,-9,5,1,1,0,0,0,10,3,1,698,200244.3,0,0,0,0,0,1183.4039 +845,1038,1821,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,9.2207823,9.4008245,4.9684052,0,0,-1035.8058,0,2,2,2021,8,1,42,42,1,1,0,29.061113,29.061113,.05,.05,0,0,0,0,0,0,0,0,0,5.775825,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,5,10,5,1,713,1056021.4,544143.06,0,0,0,0,3829.061 +846,1039,1822,1823,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.3712349,8.2633505,0,41,2,-78.881073,0,3,3,2021,10,0,35,35,1,1,0,13.118384,13.118384,.05,.05,.05,0,0,0,0,0,0,0,0,8.1682177,0,51,49,53.61,52.37,7,1,1,0,0,10,7,5,1,437.5,761717.19,79078.688,470329.19,0,0,0,4778.4229 +846,1039,1823,1822,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.7809396,7.9135528,0,41,-2,-78.569794,0,2,2,2021,11,1,31,31,1,1,0,8.2800732,8.2800732,0,0,0,0,0,0,0,2,0,0,0,7.5953074,0,53.61,52.37,51,49,8.333333333333334,1,1,0,0,10,7,5,1,437.5,761717.19,79078.688,470329.19,0,0,0,4778.4229 +847,1040,1824,1825,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.4565096,7.5924902,0,11,-1,-86.094528,0,3,2,2021,6,0,24,35,1,0,0,7.493248,7.493248,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,58.32,50.22,10,1,1,0,0,12,13,4,1,903,358159.41,164346.31,119737.53,119173.82,19060.965,0,2470.9675 +847,1040,1825,1824,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.214838,8.1779642,0,11,1,-103.70992,0,3,3,2021,6,0,37,40,1,0,0,8.0346336,8.0346336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,61.28,48.88,8.333333333333334,1,1,0,0,9,13,4,1,903,358159.41,164346.31,119737.53,119173.82,19060.965,0,2470.9675 +847,1041,1826,-9,1824,1825,1,1,28,0,0,0,3,3,-9,0,5,8.521349,8.3725929,0,0,0,-963.13312,0,3,3,2021,6,0,45,40,1,0,1,14.094627,14.094627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,10,13,5,1,403,197823.59,163094.98,70671.461,89058.016,19506.291,1493.3126,938.62451 +848,1042,1827,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.7218904,8.5270777,0,0,0,-1030.4529,0,2,3,2021,6,0,41,42,1,0,0,17.349195,17.349195,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,3,4,0,0,13,6,5,1,603,-70737.797,-25171.609,204866.3,64950.477,-719.94781,0,1989.6847 +849,1043,1828,1832,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.9243498,9.1889744,0,3,9,72.673119,0,-9,-9,2021,9,0,38,37,1,1,0,22.202824,22.202824,.05,.05,0,0,0,0,0,0,1,1,0,4.5937538,0,52,56,54.69,57.47,8,3,4,0,0,1,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1829,-9,1832,1828,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1121.7083,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1830,-9,1832,1828,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.5801,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1831,-9,1832,1828,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.19708,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +849,1043,1832,1828,-9,-9,1,0,34,0,3,0,1,1,-9,0,5,7.9948015,7.8740392,0,9,0,116.2514,0,2,2,2021,6,0,30,30,1,0,0,11.623292,11.623292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,52,56,6.666666666666667,3,4,0,0,9,4,4,1,557.40002,243614.48,243937.63,110717.41,79898.648,-23.138054,4441.1953,4026.3855 +850,1044,1833,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.2673278,7.3857117,0,0,-982.99725,0,2,1,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8468242,7.3455644,57.06,57.76,-9,-9,10,1,1,0,0,0,6,3,1,549,526412.69,152041.25,116516.34,0,0,0,2605.9712 +851,1045,1834,1835,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.6846409,8.5637054,0,23,-2,-87.971741,0,3,3,2021,11,0,35,32,1,0,0,14.910807,14.910807,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,60.02,56.42,10,1,1,0,0,8,5,5,0,2051.5,684309.5,507212.41,314012.56,267608.56,0,18606.543,3479.4326 +851,1045,1835,1834,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.9499903,8.3104477,0,23,2,-108.5798,0,-9,-9,2021,6,0,40,40,1,0,0,9.7345695,9.7345695,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.9,51.84,8.333333333333334,1,1,0,0,8,5,5,0,2051.5,684309.5,507212.41,314012.56,267608.56,0,18606.543,3479.4326 +852,1046,1836,1837,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.2112265,7.2637753,0,18,-14,52.372635,0,3,3,2021,8,3,10,10,1,3,0,16.489489,16.489489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.44,58.7,51.73,58.82,8.333333333333334,1,1,0,0,9,12,3,1,985.5,413085.69,338767.44,160191.64,19937.061,0,0,1282.469 +852,1046,1837,1836,-9,-9,1,1,57,0,2,0,2,2,-9,0,5,7.4812093,7.668468,0,17,14,-153.696,0,2,1,2021,9,0,35,38,1,0,0,5.6764779,5.6764779,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,43.44,58.7,8.333333333333334,1,1,0,0,15,12,3,1,985.5,413085.69,338767.44,160191.64,19937.061,0,0,1282.469 +853,1047,1838,1839,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.9451447,9.0757599,0,36,2,60.064953,0,2,2,2021,7,0,48,38,1,0,0,16.54126,16.54126,.05,.05,0,0,0,0,0,2,0,0,0,6.1735377,0,60.29,52.11,18.65,50.11,8.333333333333334,4,2,0,0,13,4,5,1,568,1001518.4,709106.69,178738.75,27590.34,0,0,3201.8 +853,1047,1839,1838,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.2644806,7.4938755,0,36,-2,93.005737,0,3,2,2021,25,12,20,20,1,12,0,7.0503974,7.0503974,0,0,0,0,0,0,0,2,0,0,0,0,0,18.65,50.11,60.29,52.11,3.333333333333333,1,1,0,0,13,4,5,1,568,1001518.4,709106.69,178738.75,27590.34,0,0,3201.8 +853,1048,1840,-9,1839,1838,1,1,28,0,0,0,1,1,-9,0,3,7.9443693,7.9486294,0,0,0,-1004.2423,0,2,2,2021,12,0,40,40,1,0,1,7.1576047,7.1576047,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,1,1,0,0,11,4,4,1,405,-234918.23,0,0,0,0,0,1491.3392 +854,1049,1841,1842,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,23,8,0,0,1,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,9.8945837,0,0,1,1,0,0,0,40.71,25.11,19.44,55.24,8.333333333333334,1,1,0,0,0,2,2,1,724,1288039.8,244162.58,408384.63,0,0,0,2640.7002 +854,1049,1842,1841,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,23,-8,0,0,3,1,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,19.44,55.24,40.71,25.11,1.666666666666667,1,1,0,0,0,2,2,1,724,1288039.8,244162.58,408384.63,0,0,0,2640.7002 +855,1050,1843,-9,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,7.8735647,7.6711025,0,0,0,-1020.5576,0,-9,-9,2021,10,0,40,40,1,0,0,5.8927956,5.8927956,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.36,44.23,-9,-9,3.333333333333333,1,1,0,1,5,6,3,1,1891,107008.6,-218656.97,146210.89,51154.945,3642.3225,892.4364,1172.733 +855,1051,1844,1846,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.4187613,8.2492199,0,9,3,-1.880888,0,-9,-9,2021,11,0,63,65,1,0,0,7.1092429,7.1092429,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,46.31,51.53,6.666666666666667,1,1,0,0,8,6,5,1,1333.3334,98864.734,57678.539,133006.88,82791.203,8184.0928,0,4102.3848 +855,1051,1845,-9,1846,1844,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.5129,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,5,1,1333.3334,98864.734,57678.539,133006.88,82791.203,8184.0928,0,4102.3848 +855,1051,1846,1844,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,8.7887144,8.2279482,0,9,-3,-5.7629952,0,1,2,2021,8,0,63,68,1,0,0,8.4136562,8.4136562,.05,.05,0,0,0,0,0,0,1,1,0,7.0685678,0,46.31,51.53,42.95,61.24,6.666666666666667,1,1,0,0,10,6,5,1,1333.3334,98864.734,57678.539,133006.88,82791.203,8184.0928,0,4102.3848 +856,1052,1847,1848,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.7096176,7.8121548,58,1,-57.26543,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.288116,0,0,1,1,0,6.6211505,7.791708,65.14,32.13,49.28,50.19,10,1,1,0,0,0,1,4,1,595.5,1915621.6,959325,326826.66,0,0,0,4875.8345 +856,1052,1848,1847,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.0341063,8.038887,58,-1,58.798512,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.0007248,8.0328274,49.28,50.19,65.14,32.13,8.333333333333334,1,1,0,0,4,1,4,1,595.5,1915621.6,959325,326826.66,0,0,0,4875.8345 +857,1053,1849,-9,1851,1850,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-872.29578,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,5,-9,0,0,8,5,0,968.66669,-108248.75,0,0,0,30943.473,0,5634.041 +857,1053,1850,1851,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,9.509531,9.4212399,0,10,6,102.43987,0,-9,-9,2021,14,2,25,25,1,2,0,47.93029,47.93029,0,0,0,0,0,0,0,0,1,1,0,0,0,38.92,49.8,41.88,45.75,1.666666666666667,1,1,0,0,6,8,5,0,968.66669,-108248.75,0,0,0,30943.473,0,5634.041 +857,1053,1851,1850,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.8140049,8.1388903,0,9,-6,-37.175472,0,-9,-9,2021,19,8,35,21,1,8,0,9.838273,9.838273,0,0,0,0,0,0,0,0,1,1,0,0,0,41.88,45.75,38.92,49.8,0,1,1,0,0,9,8,5,0,968.66669,-108248.75,0,0,0,30943.473,0,5634.041 +858,1054,1852,-9,1853,1854,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.7096,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,503.66666,91103.313,88148.359,56635.531,0,0,0,2764.0979 +858,1054,1853,1854,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.5297704,8.1412735,0,11,0,-6.7944307,0,2,2,2021,8,0,14,16,1,0,0,16.179848,16.179848,.05,.05,0,0,0,0,0,0,1,1,0,.81581885,0,57.16,56.15,62.83,41.18,8.333333333333334,1,1,0,0,13,13,4,1,503.66666,91103.313,88148.359,56635.531,0,0,0,2764.0979 +858,1054,1854,1853,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.3595572,8.3979454,0,11,0,16.847198,0,1,2,2021,6,0,46,48,1,0,0,15.562449,15.562449,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.83,41.18,57.16,56.15,8.333333333333334,1,1,0,0,13,13,4,1,503.66666,91103.313,88148.359,56635.531,0,0,0,2764.0979 +859,1055,1855,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-941.33759,0,3,3,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.06,44.49,-9,-9,10,1,1,1,0,0,4,1,1,211,-269564.34,0,0,0,0,0,-651.08752 +860,1056,1856,1857,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.1071453,7.1824975,64,1,10.390838,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.909339,6.8045292,56.95,35.96,54,44,8.333333333333334,1,1,0,0,0,4,2,0,690.5,473159.94,221069.91,234642.5,0,0,0,1251.7457 +860,1056,1857,1856,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-55.940712,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,2.7990713,0,0,1,1,0,0,0,54,44,56.95,35.96,8,1,1,0,0,0,4,2,0,690.5,473159.94,221069.91,234642.5,0,0,0,1251.7457 +861,1057,1858,1859,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,0,7.3817186,7.1046114,9,-1,88.742378,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6166501,57.06,57.76,45.32,53.5,10,1,1,0,0,9,5,4,1,478.5,2290024.5,2271882,165232.5,32781.453,4029.0151,0,5600.0693 +861,1057,1859,1858,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.0351248,8.144165,0,30,1,66.33271,0,3,2,2021,13,1,37,38,1,1,0,11.986421,11.986421,0,0,0,0,0,0,0,0,0,0,0,8.683423,0,45.32,53.5,57.06,57.76,8.333333333333334,1,1,0,0,11,5,4,1,478.5,2290024.5,2271882,165232.5,32781.453,4029.0151,0,5600.0693 +862,1058,1860,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.2433124,5.1373234,0,0,-1010.6916,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5579853,4.8834763,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,9,8,2,1,1039,99131.5,-65412.277,0,0,0,0,1167.9912 +863,1059,1861,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.8405595,5.9968786,0,0,-986.49658,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,7,0,0,0,5.8885355,5.7203078,20.68,62.16,-9,-9,0,1,1,0,0,4,8,2,1,679,795590.63,113011.87,364638.22,0,0,254.06555,477.40512 +864,1060,1862,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.067605,5.8636355,0,0,-965.78314,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5671258,54.94,50.33,-9,-9,10,1,1,0,0,0,7,2,0,324,433695.16,0,317521.44,0,0,0,995.41235 +865,1061,1863,-9,1864,1865,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.4856,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +865,1061,1864,1865,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4962778,8.4941587,0,11,0,122.09446,0,2,2,2021,21,7,30,30,1,7,0,18.411173,18.411173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,51.73,58.82,8.333333333333334,1,1,0,0,9,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +865,1061,1865,1864,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,8.9200611,8.9504299,0,11,0,74.778397,0,2,2,2021,7,0,56,58,1,0,0,20.227261,20.227261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.85,60.33,10,1,1,0,0,9,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +865,1061,1866,-9,1864,1865,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.3459,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1050.5,853712.63,388696.5,689331.38,270431.31,0,0,5188.1387 +866,1062,1867,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.698194,5.2322373,0,0,-971.05005,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3874907,48.15,47.3,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,552,391221.06,115222.91,337957.84,0,0,0,158.85719 +867,1063,1868,1869,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.0469723,6.7285523,5,-6,-52.778576,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0631051,6.9287004,53.23,42.9,37.22,46.74,8.333333333333334,1,1,0,0,0,2,3,1,577,607412.25,203095.81,148375.52,0,0,0,3210.9326 +867,1063,1869,1868,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.3539271,7.6658835,5,6,59.37669,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5544245,7.3500309,37.22,46.74,53.23,42.9,6.666666666666667,1,1,0,0,0,2,3,1,577,607412.25,203095.81,148375.52,0,0,0,3210.9326 +868,1064,1870,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,7.9688597,7.9835529,0,0,0,-982.7807,0,2,2,2021,12,0,52,48,1,0,0,8.4231396,8.4231396,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,1,7,9,4,1,870,158998.14,77575.977,0,0,1217.6672,0,1954.6776 +868,1065,1871,-9,1870,-9,1,0,26,0,0,0,2,2,-9,0,5,7.2837152,7.165287,0,0,0,-1058.4028,0,2,3,2021,9,0,35,20,1,0,1,4.1067591,4.1067591,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,247,190419.17,0,0,0,0,0,321.02081 +868,1066,1872,-9,1870,-9,1,1,23,0,0,0,2,2,-9,0,5,7.6192355,7.38517,0,0,0,-1060.5571,0,2,3,2021,12,0,41,31,1,0,1,6.1953225,6.1953225,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,1.666666666666667,1,1,0,1,5,9,3,1,573,-193659.89,0,0,0,0,0,317.71701 +869,1067,1873,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,9.0085583,9.2439709,0,0,0,-1017.777,0,2,-9,2021,14,3,35,40,1,3,0,24.772808,24.772808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.97,36.8,-9,-9,3.333333333333333,1,1,0,0,5,6,5,0,797,161911.67,29145.996,109184.59,112372.24,6551.3296,0,5097.728 +870,1068,1874,1875,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.8325086,7.2803545,52,-5,145.49498,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,17.759338,0,0,1,1,0,0,7.0608597,39.62,41.48,58,51,8.333333333333334,1,1,0,0,0,10,2,0,487.5,503074.25,212052.08,211735.05,0,0,0,1287.1063 +870,1068,1875,1874,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,0,0,52,5,-64.249443,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58,51,39.62,41.48,10,1,1,0,0,0,10,2,0,487.5,503074.25,212052.08,211735.05,0,0,0,1287.1063 +871,1069,1876,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,7.2641745,7.585743,0,0,-998.70636,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3613515,7.6672411,44.05,37.78,-9,-9,5,1,1,0,0,7,13,3,1,503,1007899.9,535758.44,118941.84,0,0,0,1508.8279 +872,1070,1877,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.7774239,9.0909615,6.7326112,0,0,-967.49512,0,2,2,2021,26,11,35,50,1,11,0,24.76055,24.76055,0,0,0,0,0,0,0,0,1,1,0,7.6258893,0,23.02,66.47,-9,-9,6.666666666666667,1,1,0,0,8,11,5,1,340.33334,251125.14,27197.416,264582.13,113129.2,0,0,2704.4473 +872,1070,1878,-9,1877,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.7987,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,340.33334,251125.14,27197.416,264582.13,113129.2,0,0,2704.4473 +872,1070,1879,-9,1877,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.16992,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,340.33334,251125.14,27197.416,264582.13,113129.2,0,0,2704.4473 +873,1071,1880,-9,1882,1883,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.58533,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +873,1071,1881,-9,1882,1883,1,1,16,1,2,1,2,0,-9,0,4,0,0,0,0,0,-1122.662,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +873,1071,1882,1883,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.6887875,8.7768183,0,7,-17,-29.16662,0,1,2,2021,6,0,40,26,1,0,0,15.954715,15.954715,0,0,0,0,0,0,0,0,1,1,0,0,0,55.13,26.04,39.37,54.73,8.333333333333334,1,1,0,0,9,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +873,1071,1883,1882,-9,-9,1,1,52,1,2,0,2,2,-9,0,3,8.0706654,7.4866161,0,7,17,-4.8943748,0,2,3,2021,12,0,36,36,1,0,0,9.0355444,9.0355444,.05,.05,0,0,0,0,0,7,1,1,0,2.7648015,0,39.37,54.73,55.13,26.04,3.333333333333333,1,1,0,0,9,4,4,1,2132,285103.31,136914.28,189262.11,0,7927.3413,0,3629.9844 +874,1072,1884,1885,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.3550782,7.2344732,5.4437847,2,-2,32.290962,0,3,2,2021,8,0,24,26,1,0,0,6.0261011,6.0261011,.05,.05,0,0,0,0,0,7,0,0,0,2.9953892,5.8084106,57.33,53.46,38.36,61,8.333333333333334,1,1,0,0,10,2,5,1,649,394484.97,185051.44,90357.875,37723.305,0,1590.3228,4386.937 +874,1072,1885,1884,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.1239843,9.0605917,6.8088827,2,2,45.15274,0,-9,-9,2021,4,0,16,15,1,0,0,50.470924,50.470924,.05,.05,0,0,0,0,0,2,0,0,0,7.4872494,7.1106501,38.36,61,57.33,53.46,10,1,1,0,0,5,2,5,1,649,394484.97,185051.44,90357.875,37723.305,0,1590.3228,4386.937 +875,1073,1886,1887,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,9.2405138,9.5493031,0,37,1,42.455437,0,3,3,2021,8,0,43,0,1,0,0,27.692497,27.692497,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.18,52.11,57.16,56.15,6.666666666666667,1,1,0,0,13,12,5,1,886,1387381.8,1177501.4,167877.69,37067.09,0,0,3765.9668 +875,1073,1887,1886,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,37,-1,-.029022947,0,2,2,2021,8,0,0,22,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,52.18,52.11,0,1,1,0,0,11,12,5,1,886,1387381.8,1177501.4,167877.69,37067.09,0,0,3765.9668 +876,1074,1888,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3329134,8.3028555,0,0,0,-1096.1659,0,2,2,2021,9,2,40,38,1,2,0,13.572515,13.572515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,12,10,5,1,165.5,61187.027,33814.898,0,0,0,0,1289.2256 +876,1074,1889,-9,1888,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-959.93591,-9,2,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.22,59.96,-9,-9,5,1,1,0,0,1,10,5,1,165.5,61187.027,33814.898,0,0,0,0,1289.2256 +876,1075,1890,-9,1888,-9,1,1,18,0,0,0,3,3,1,0,3,5.7021723,5.3801455,0,0,0,-1190.0745,-9,2,-9,2021,8,0,10,0,1,0,1,3.5614684,3.5614684,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,2,10,2,1,2710,89998.484,0,0,0,0,0,133.12814 +877,1076,1891,1892,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.7629724,7.3635387,0,8,-2,13.409551,0,2,2,2021,6,0,23,24,1,0,0,12.816399,12.816399,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.68,59.06,34.89,43.84,8.333333333333334,1,1,0,0,9,2,5,1,527,782432,248617.28,437699.13,112223.85,0,0,4893.5259 +877,1076,1892,1891,-9,-9,1,1,52,0,1,0,1,1,-9,0,2,9.5210934,9.4803162,0,8,2,94.933578,0,2,2,2021,12,0,90,60,1,0,0,14.696046,14.696046,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.89,43.84,41.68,59.06,6.666666666666667,1,1,0,0,9,2,5,1,527,782432,248617.28,437699.13,112223.85,0,0,4893.5259 +877,1076,1893,-9,1891,1892,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.6316,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,527,782432,248617.28,437699.13,112223.85,0,0,4893.5259 +878,1077,1894,1895,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.3025389,7.8675475,0,7,-6,44.819675,0,3,3,2021,7,0,37,36,1,0,0,9.3358908,9.3358908,0,0,0,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,12,5,1,1756,1278788.3,357055.19,479415.56,0,0,0,2927.4763 +878,1077,1895,1894,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.9380631,8.2684898,6.9660163,7,6,-26.142227,0,2,2,2021,6,0,35,30,1,0,0,10.392657,10.392657,0,0,0,0,0,0,0,14.5,0,0,0,7.4031057,6.877357,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1756,1278788.3,357055.19,479415.56,0,0,0,2927.4763 +879,1078,1896,-9,1897,-9,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1053.4353,-9,3,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,2,5,1,661,101055.99,0,279072.09,110772.93,0,0,2366.0483 +879,1078,1897,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.4677792,8.8123188,6.4123635,0,0,-943.73279,0,2,3,2021,12,0,40,40,1,0,0,14.793831,14.793831,0,0,0,0,0,0,0,0,1,1,0,6.7850575,0,46.62,51.4,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,661,101055.99,0,279072.09,110772.93,0,0,2366.0483 +879,1079,1898,-9,1897,-9,1,0,25,0,0,0,1,1,-9,0,3,0,0,0,0,0,-879.36908,0,2,1,2021,16,4,0,20,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.86,64.84,-9,-9,0,1,1,0,0,4,2,1,1,973,0,0,0,0,0,0,-239.42545 +879,1080,1899,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.5019135,7.4774537,0,0,0,-1019.3217,0,-9,-9,2021,20,8,55,70,1,8,0,4.6189036,4.6189036,0,0,0,0,0,0,0,0,1,1,0,0,0,42.88,35.73,-9,-9,1.666666666666667,1,1,0,1,5,2,3,1,119,358465.13,-115787.81,135357.38,0,0,0,600.93439 +880,1081,1900,1901,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6866245,8.6427965,0,13,-11,95.78022,-9,-9,-9,2021,6,0,49,0,1,0,0,13.817992,13.817992,.05,.05,0,0,0,0,0,0,0,0,0,5.3078227,0,57.16,56.15,58.43,51.57,1.666666666666667,1,1,0,0,12,12,4,1,952,345822.94,377465.75,165786.25,85440.063,97309.469,3055.9138,2485.8513 +880,1081,1901,1900,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.0704446,5.9631362,0,14,11,-150.22624,-9,3,3,2021,8,0,15,0,1,0,0,3.0515418,3.0515418,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.43,51.57,57.16,56.15,0,1,1,0,0,10,12,4,1,952,345822.94,377465.75,165786.25,85440.063,97309.469,3055.9138,2485.8513 +881,1082,1902,1903,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,3.4331594,3.3134067,57,3,131.97174,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.1475849,0,0,1,1,0,0,3.098114,43.89,49.08,40,23,8.333333333333334,1,1,0,0,0,4,2,1,386.5,197514.94,27115.938,251980.41,0,2643.1287,888.53125,3378.8242 +881,1082,1903,1902,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,57,-3,13.18551,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,1.5758325,0,0,1,1,0,1.1151192,0,40,23,43.89,49.08,8.333333333333334,1,1,0,0,0,4,2,1,386.5,197514.94,27115.938,251980.41,0,2643.1287,888.53125,3378.8242 +881,1083,1904,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,1,7.7395043,7.7535858,0,0,0,-1124.0405,0,-9,-9,2021,14,2,60,60,1,2,0,4.2908845,4.2908845,.05,.05,0,0,0,0,0,0,1,1,0,1.3630797,0,31,40.43,-9,-9,5,1,1,0,0,7,4,3,1,441,-73557.07,-108850.41,0,0,0,0,1424.9606 +881,1084,1905,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,6.8378401,7.0858121,0,0,0,-895.32385,0,-9,-9,2021,6,0,23,23,1,0,0,5.7890253,5.7890253,0,0,0,0,0,0,0,0,1,1,0,0,0,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,1558,-149187.7,0,0,0,0,0,661.29944 +882,1085,1906,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.0598,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.27,24.16,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,1177,0,0,0,0,0,0,601.9458 +883,1086,1907,1908,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.6328602,7.5648046,0,9,1,113.89289,0,-9,-9,2021,6,0,50,50,1,0,0,4.6069689,4.6069689,.05,.05,0,0,0,0,0,0,0,0,0,7.8693538,0,50.28,51.35,27.81,65.69,8.333333333333334,1,1,0,0,3,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +883,1086,1908,1907,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.3636923,8.8087482,0,19,-1,90.132751,0,1,1,2021,14,4,30,50,1,4,0,19.849173,19.849173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.81,65.69,50.28,51.35,8.333333333333334,1,1,0,0,4,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +883,1086,1909,-9,1908,1907,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.1332,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +883,1086,1910,-9,1908,1907,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.42249,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1730.25,380143.81,184394.66,293130.5,92730.797,1536.5326,0,4754.8237 +884,1087,1911,1912,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3952484,8.7610264,0,35,-1,118.49878,0,3,3,2021,5,0,30,30,1,0,0,20.010752,20.010752,.05,.05,0,0,0,0,0,7,0,0,0,6.432559,0,59.29,49.68,51.14,60.45,10,1,1,0,0,11,12,5,1,753,629458.25,503054.28,146705.8,0,5506.4326,0,4889.3369 +884,1087,1912,1911,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.2326908,9.1622477,0,9,1,-33.435867,0,-9,-9,2021,10,0,46,85,1,0,0,26.095039,26.095039,.05,.05,0,0,0,0,0,0,0,0,0,4.3739519,0,51.14,60.45,59.29,49.68,8.333333333333334,1,1,0,0,6,12,5,1,753,629458.25,503054.28,146705.8,0,5506.4326,0,4889.3369 +885,1088,1913,1914,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.5745516,8.1702747,0,3,0,-112.86569,0,-9,-9,2021,12,0,45,50,1,0,0,16.078009,16.078009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,48.36,42.7,6.666666666666667,1,1,0,0,12,1,5,0,293,86790.961,8907.0967,19206.232,-1126.6519,8381.7578,0,3797.3955 +885,1088,1914,1913,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.2822313,8.2283859,0,3,0,-78.419472,0,-9,-9,2021,12,2,50,53,1,2,0,7.8451967,7.8451967,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.36,42.7,38.59,60.85,10,1,1,0,0,3,1,5,0,293,86790.961,8907.0967,19206.232,-1126.6519,8381.7578,0,3797.3955 +886,1089,1915,1916,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.2195387,8.0661125,0,2,-1,-.33487055,0,-9,-9,2021,6,0,48,48,1,0,0,10.258273,10.258273,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,51.08,49.24,8.333333333333334,1,1,0,0,8,4,5,0,1456.5,53298.453,118851.6,143311.77,77581.906,43297.176,2951.5786,5348.4863 +886,1089,1916,1915,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,8.7621336,8.4142056,0,2,1,5.2506156,0,3,3,2021,12,0,15,15,1,0,0,39.371456,39.371456,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.08,49.24,59.43,49.68,6.666666666666667,1,1,0,1,5,4,5,0,1456.5,53298.453,118851.6,143311.77,77581.906,43297.176,2951.5786,5348.4863 +886,1090,1917,-9,1916,1915,1,0,23,0,0,0,2,2,-9,0,3,7.7724118,7.6601067,0,0,0,-984.42206,0,3,2,2021,11,0,40,35,1,0,1,8.0551558,8.0551558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,49.86,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,506,104597.33,-465.70175,0,0,0,0,706.85101 +887,1091,1918,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.5122337,9.6909151,0,0,0,-896.52814,0,2,2,2021,8,0,90,52,1,0,0,22.528263,22.528263,.05,.05,.05,0,0,0,0,0,0,0,0,4.9973063,0,59.29,49.68,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,277,382778.44,195145.13,0,0,0,0,8033.9063 +888,1092,1919,1920,1921,-9,1,1,28,0,0,0,1,1,-9,0,3,8.1675224,8.1447124,0,1,-1,-43.271763,0,3,2,2021,12,2,45,45,1,2,0,7.4198494,7.4198494,0,0,0,0,0,0,0,0,0,0,0,3.9161334,0,53.11,47.09,45.22,63.14,6.666666666666667,2,3,0,0,3,7,3,1,636.5,401354.25,20675.652,584156,221404.91,0,0,1696.312 +888,1092,1920,1919,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,0,0,0,1,1,-90.016167,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.22,63.14,53.11,47.09,8.333333333333334,2,3,1,0,0,7,3,1,636.5,401354.25,20675.652,584156,221404.91,0,0,1696.312 +888,1093,1921,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.2672958,7.3198195,0,0,0,-986.88947,-9,-9,-9,2021,12,2,20,0,1,2,0,8.724782,8.724782,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,22.19,-9,-9,6.666666666666667,2,3,0,0,9,7,3,1,1273,-127075.98,0,0,0,0,0,739.41449 +889,1094,1922,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-926.86017,-9,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.79005474,0,33.97,57.61,-9,-9,1.666666666666667,1,1,0,0,6,7,1,1,251,-247293.28,20162.051,0,0,0,0,229.51518 +890,1095,1923,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,4,8.5714245,8.112278,0,0,0,-949.7605,-9,-9,-9,2021,7,0,39,0,1,0,0,14.460011,14.460011,.05,.05,0,0,0,0,0,2,1,1,0,2.9427068,0,55.34,54.26,-9,-9,6.666666666666667,1,1,0,0,1,8,5,1,836,-28239.914,87381.938,189603.22,204836.03,0,-407.70901,1860.7429 +891,1096,1924,1925,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.6603022,8.0029392,0,3,1,22.824064,0,-9,-9,2021,6,0,24,21,1,0,0,17.308146,17.308146,.05,.05,0,0,0,0,2.5078537,0,0,0,0,0,0,57.8,41.32,50.01,52.64,10,1,1,0,0,11,12,4,1,471,174145.86,200472.33,113926.63,104455.5,20528.395,0,2290.801 +891,1096,1925,1924,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.7775507,8.1377325,0,3,-1,1.3058003,0,3,3,2021,9,0,40,40,1,0,0,7.9231467,7.9231467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,52.64,57.8,41.32,6.666666666666667,1,1,0,0,10,12,4,1,471,174145.86,200472.33,113926.63,104455.5,20528.395,0,2290.801 +892,1097,1926,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,7.1615682,7.1913867,0,0,-919.84351,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3345766,7.1288052,48.52,43.78,-9,-9,6.666666666666667,1,1,0,1,0,10,3,1,1097,101155.23,89263.148,104982.51,0,0,0,1639.8624 +893,1098,1927,1928,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,5,-6,11.041874,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,6.5439873,2.5802612,63.177135,0,1,1,0,5.2766733,0,61.29,22.08,47.88,29.69,8.333333333333334,1,1,0,0,0,6,2,1,2281.5,136622.84,81789.633,162403.42,0,0,0,1666.8416 +893,1098,1928,1927,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.5364709,6.6687136,5,6,53.019825,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9042759,6.4764318,47.88,29.69,61.29,22.08,8.333333333333334,1,1,0,0,0,6,2,1,2281.5,136622.84,81789.633,162403.42,0,0,0,1666.8416 +894,1099,1929,1930,-9,-9,1,0,85,0,0,0,3,3,-9,0,5,0,0,0,63,-2,85.21373,0,3,2,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,14.937722,0,2,1,1,0,0,0,62.22,19.21,57.76,54.51,8.333333333333334,1,1,0,0,0,2,2,1,333.5,503017.94,158692.56,256983.83,0,0,0,2600.4561 +894,1099,1930,1929,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.2265134,6.3626747,63,2,65.773026,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.7602639,6.7418475,57.76,54.51,62.22,19.21,8.333333333333334,1,1,0,0,0,2,2,1,333.5,503017.94,158692.56,256983.83,0,0,0,2600.4561 +895,1100,1931,-9,1932,1934,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-873.2392,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +895,1100,1932,1934,-9,-9,1,0,27,1,2,0,1,1,-9,0,2,7.4682112,7.4976382,0,2,-14,47.745552,0,-9,-9,2021,11,1,23,22,1,1,0,12.09062,12.09062,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.69,41.42,41.27,51.53,8.333333333333334,1,1,0,0,7,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +895,1100,1933,-9,1932,1934,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6042,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +895,1100,1934,1932,-9,-9,1,1,41,1,2,0,1,1,-9,0,2,8.0444555,7.6800361,0,2,14,-101.30514,0,-9,-9,2021,12,0,15,15,1,0,0,22.950001,22.950001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.27,51.53,51.69,41.42,6.666666666666667,4,5,0,0,4,2,3,1,588.75,36239.215,-6402.1807,103592.21,59866.336,16467.301,0,3040.8931 +896,1101,1935,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,5,8.1634474,8.0708714,0,0,0,-1079.6033,0,2,2,2021,6,0,50,23,1,0,0,7.9599547,7.9599547,.05,.05,0,0,0,0,0,0,0,0,0,2.8156595,0,60.02,56.42,-9,-9,10,1,1,0,0,9,7,4,0,4124,493842.41,226758.17,289289.25,0,0,0,1032.855 +897,1102,1936,1937,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.8773155,6.2618456,54,8,85.938286,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2981753,6.4769373,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,0,10,2,1,520.5,298497.66,79730.922,225500.5,0,0,0,1849.8462 +897,1102,1937,1936,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,.94578618,.60430431,54,-8,32.887566,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5706253,.66334963,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,10,2,1,520.5,298497.66,79730.922,225500.5,0,0,0,1849.8462 +898,1103,1938,-9,1940,1939,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.3983,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1939,1940,-9,-9,1,1,42,1,3,0,2,2,-9,0,3,9.3265533,9.3945675,0,7,2,68.306473,0,2,1,2021,11,0,40,55,1,0,0,36.603588,36.603588,.05,.05,0,0,0,0,0,14.5,1,1,0,8.5557213,0,42.36,56.12,51.15,41.37,6.666666666666667,1,1,0,0,9,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1940,1939,-9,-9,1,0,40,1,3,0,1,1,-9,1,3,0,0,0,7,-2,-111.06726,0,1,2,2021,10,0,0,48,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,51.15,41.37,42.36,56.12,8.333333333333334,1,1,0,0,7,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1941,-9,1940,1939,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-982.20947,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +898,1103,1942,-9,1940,1939,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1127.5685,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,774.79999,559575.19,159804.5,727684.5,244940.83,11493.273,0,5526.9268 +899,1104,1943,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.7364678,7.9889531,0,0,0,-1075.2671,0,3,2,2021,21,10,40,37,1,10,0,7.7592421,7.7592421,0,0,0,0,0,0,0,0,0,0,0,0,0,30.67,65.95,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,428,343774.03,0,124046.95,0,1307.8844,0,1430.1444 +900,1105,1944,1945,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4434376,7.308042,0,31,-3,39.415707,0,2,2,2021,8,0,18,18,1,0,0,10.684644,10.684644,0,0,0,0,0,0,0,0,0,0,0,2.8777957,0,57.16,56.15,46.55,58.3,10,1,1,0,0,9,7,3,1,1057,217323.78,234275.14,178447.56,9390.9736,1962.3643,0,1077.1464 +900,1105,1945,1944,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,6.5763636,6.6160731,0,31,3,27.138273,0,-9,-9,2021,11,0,40,40,1,0,0,2.6213872,2.6213872,.05,.05,0,0,0,0,0,0,0,0,0,5.8824897,0,46.55,58.3,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,1057,217323.78,234275.14,178447.56,9390.9736,1962.3643,0,1077.1464 +900,1106,1946,-9,1944,1945,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1004.8809,-9,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7055738,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,260,0,0,0,0,0,0,33.105686 +901,1107,1947,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.4898758,8.7046013,7.784554,0,0,-929.56781,0,2,2,2021,16,4,40,40,1,4,0,14.170777,14.170777,.05,.05,0,0,0,0,0,0,1,1,0,8.2187729,0,54.2,57.49,-9,-9,5,1,1,0,0,11,6,4,1,1174.3334,222313.78,241543.44,268488.94,211001.78,2293.0151,0,3701.6997 +901,1107,1948,-9,1947,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.8833,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,1174.3334,222313.78,241543.44,268488.94,211001.78,2293.0151,0,3701.6997 +901,1107,1949,-9,1947,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.0713,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1174.3334,222313.78,241543.44,268488.94,211001.78,2293.0151,0,3701.6997 +902,1108,1950,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.381041,6.697957,0,0,-914.26367,0,2,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7818727,45.66,29.07,-9,-9,5,1,1,0,0,1,9,2,1,1876,599752.25,138121.98,354296.69,0,0,0,634.24347 +903,1109,1951,1952,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,6.7829185,6.9874086,0,43,-4,110.7186,0,-9,3,2021,6,0,60,35,1,0,0,1.8579068,1.8579068,0,0,0,0,0,0,0,0,1,1,0,4.1032648,0,50.65,60.47,59.43,49.68,10,1,1,0,0,8,9,2,1,505.5,380801.31,113144.63,181829.59,0,0,0,1659.4927 +903,1109,1952,1951,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.8100429,6.127965,44,4,33.162174,0,3,2,2021,7,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6392057,5.8870368,59.43,49.68,50.65,60.47,10,1,1,0,0,8,9,2,1,505.5,380801.31,113144.63,181829.59,0,0,0,1659.4927 +904,1110,1953,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,5.2930889,5.3594537,0,0,-970.2251,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,6.343894,.93182361,0,1,1,0,0,5.3638883,33.7,25.22,-9,-9,3.333333333333333,1,1,0,0,7,11,2,1,4961,839224,10525.116,580884.88,0,0,0,1518.5719 +904,1111,1954,1955,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.4724474,8.6290674,0,12,6,-106.15534,0,1,3,2021,9,0,50,46,1,0,0,10.391383,10.391383,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,43.32,63.94,6.666666666666667,1,1,0,0,13,11,5,1,1126.5,184407.34,53554.598,202312,99704.203,8933.6895,0,3310.7488 +904,1111,1955,1954,1953,-9,1,0,37,0,0,0,3,3,-9,0,5,7.8773685,8.2744112,0,12,-6,-10.771358,0,1,3,2021,10,0,54,40,1,0,0,7.6093841,7.6093841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.32,63.94,54.37,54.8,6.666666666666667,1,1,0,0,13,11,5,1,1126.5,184407.34,53554.598,202312,99704.203,8933.6895,0,3310.7488 +905,1112,1956,1957,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.0348206,8.3550835,0,6,1,66.07988,0,2,2,2021,8,0,35,35,1,0,0,13.922023,13.922023,0,0,0,0,0,0,0,0,1,1,0,0,0,50.43,53.69,65.38,31.06,8.333333333333334,1,1,0,0,7,13,5,1,2281.3333,408917.06,68531.852,300128.72,0,0,0,4289.7344 +905,1112,1957,1956,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,8.582653,8.8171158,0,6,-1,-141.31781,0,3,2,2021,5,0,40,60,1,0,0,13.928716,13.928716,0,0,0,0,0,0,0,0,1,1,0,0,0,65.38,31.06,50.43,53.69,8.333333333333334,1,1,0,0,7,13,5,1,2281.3333,408917.06,68531.852,300128.72,0,0,0,4289.7344 +905,1112,1958,-9,1956,1957,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.6642,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,2281.3333,408917.06,68531.852,300128.72,0,0,0,4289.7344 +906,1113,1959,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.2426424,6.7440624,0,0,-1021.5334,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5716095,1.5065348,36.28,17.11,-9,-9,5,1,1,0,0,0,7,2,0,1784,237005.53,150276.69,250066.47,0,0,0,2155.5369 +907,1114,1960,1961,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.5567627,8.6515636,0,33,8,95.466629,0,3,3,2021,11,0,40,0,1,0,0,17.244572,17.244572,0,0,0,0,0,0,0,0,1,1,0,2.0544736,0,55.21,58.31,65.03,41.96,6.666666666666667,2,3,0,0,13,6,4,1,1120,1083575.6,739876.63,306969.25,0,0,0,4239.6445 +907,1114,1961,1960,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,9,-8,89.926643,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.87972355,0,65.03,41.96,55.21,58.31,10,2,3,0,0,0,6,4,1,1120,1083575.6,739876.63,306969.25,0,0,0,4239.6445 +907,1115,1962,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,6.7594595,6.9547091,0,0,0,-1097.9906,0,-9,-9,2021,6,0,37,0,1,0,0,2.8419335,2.8419335,0,0,0,0,0,0,0,0,1,1,0,3.2744312,0,67.04000000000001,42.15,-9,-9,10,2,3,0,0,4,6,2,1,1465,-207653.34,0,0,0,0,0,532.55896 +908,1116,1963,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.6058903,8.9608984,5.7887311,0,0,-1036.7618,0,2,2,2021,12,1,40,38,1,1,0,15.6273,15.6273,.05,.05,0,0,0,0,0,0,0,0,0,6.1382933,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,296,583888.31,41410.785,129580.73,0,0,0,3384.5188 +908,1117,1964,-9,1963,-9,1,0,23,0,0,0,1,1,-9,0,5,7.5287151,7.4304819,0,0,0,-931.47839,0,1,-9,2021,10,0,32,31,1,0,1,6.8216658,6.8216658,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.81,59.64,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,3070,-47531.617,10594.969,0,0,0,0,718.81659 +909,1118,1965,1966,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,31,-3,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,24.7,58.15,52.91,10,1,1,0,0,0,10,1,1,692.5,1241630.5,286425.34,634458.38,0,0,0,948.4624 +909,1118,1966,1965,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,0,0,31,3,0,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,8.0032473,0,58.15,52.91,43.72,24.7,8.333333333333334,1,1,0,0,11,10,1,1,692.5,1241630.5,286425.34,634458.38,0,0,0,948.4624 +909,1119,1967,-9,1965,1966,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-939.4671,-9,2,1,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,10,1,1,299,0,0,0,0,0,0,0 +910,1120,1968,-9,1969,1971,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-873.03009,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1969,1971,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.2132845,8.3287954,0,9,-5,-66.340813,0,2,-9,2021,8,0,40,35,1,0,0,10.667058,10.667058,.05,.05,0,0,0,0,0,0,1,1,0,5.1022744,0,49.65,57.01,57.06,57.76,8.333333333333334,1,1,0,0,9,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1970,-9,1969,1971,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-909.67175,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1971,1969,-9,-9,1,1,44,0,3,0,1,1,-9,0,5,9.4461498,9.8377142,0,9,5,-105.55489,0,-9,-9,2021,2,0,35,35,1,0,0,50.19558,50.19558,.05,.05,0,0,0,0,0,0,1,1,0,6.9047575,0,57.06,57.76,49.65,57.01,8.333333333333334,1,1,0,0,11,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +910,1120,1972,-9,1969,1971,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.18811,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,823,1901326.8,981861.75,328701.59,0,0,0,8407.543 +911,1121,1973,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.3829913,7.3224106,0,0,-1003.7956,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.8705268,57.41,54.88,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,804,650629.44,333375.09,62429.672,0,0,0,1267.5679 +912,1122,1974,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.8944955,8.1238947,0,0,0,-1131.0238,0,3,3,2021,7,0,40,40,1,0,0,7.6811442,7.6811442,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.38,47.51,-9,-9,6.666666666666667,1,1,0,0,13,7,4,1,1419,-36349.199,-4076.2715,0,0,0,1857.9733,740.20538 +913,1123,1975,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,5.0799203,4.8820333,0,0,-836.03815,0,3,2,2021,13,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7015853,0,57.74,44.14,-9,-9,10,1,1,0,0,0,7,2,1,276,-6880.3765,-100884.11,0,0,0,0,1484.4456 +914,1124,1976,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.0564623,6.4747334,0,0,-1083.1569,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3672309,71.47,25.01,-9,-9,0,1,1,0,0,0,1,2,1,768,355474.78,113432.09,225526.13,0,0,0,1361.741 +915,1125,1977,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.8956337,8.802844,0,0,0,-1105.1997,0,2,2,2021,12,0,75,38,1,0,0,11.066278,11.066278,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,11,6,5,1,277,0,0,0,0,0,0,2064.8005 +916,1126,1978,1979,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,63,4,88.255943,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.4,45.23,42.86,53.58,10,1,1,0,0,0,9,2,0,894,188238.34,151207.59,218247.28,0,0,0,1778.0839 +916,1126,1979,1978,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,4.9410815,4.9142256,64,-4,89.571503,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1747975,42.86,53.58,63.4,45.23,8.333333333333334,1,1,0,0,0,9,2,0,894,188238.34,151207.59,218247.28,0,0,0,1778.0839 +917,1127,1980,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.9746485,8.8081036,0,0,0,-1098.9988,0,2,3,2021,9,0,52,57,1,0,0,14.092719,14.092719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1748,672978,400811.19,57659.156,0,0,0,1907.3506 +917,1128,1981,-9,1980,-9,1,1,34,0,0,0,1,1,-9,0,3,8.4686222,8.5216112,0,0,0,-1042.8859,0,2,2,2021,22,9,38,38,1,9,1,15.992308,15.992308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.2,61.24,-9,-9,5,1,1,0,0,8,11,5,1,1351,31741.738,71555.719,0,0,0,0,2126.9507 +918,1129,1982,1983,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,44,-1,5.909709,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.93,55.31,53.1,52.62,8.333333333333334,1,1,0,0,6,13,4,1,322,1414301,1137127.8,271437.97,0,3589.6729,4034.4688,3269.4138 +918,1129,1983,1982,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.4847059,8.5956602,0,44,1,-53.404797,0,3,3,2021,9,0,70,60,1,0,0,7.4341197,7.4341197,.05,.05,0,1,3.1982291,11.280801,26.493948,0,1,1,0,2.451685,0,53.1,52.62,52.93,55.31,8.333333333333334,1,1,0,0,11,13,4,1,322,1414301,1137127.8,271437.97,0,3589.6729,4034.4688,3269.4138 +919,1130,1984,1985,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,6.9687724,7.3159738,54,0,19.006992,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8747263,7.5112233,51.92,39.36,46.54,44.72,5,1,1,0,0,0,5,2,1,586.5,504158.75,0,327032.69,0,0,0,1635.229 +919,1130,1985,1984,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,2.8079138,3.2446251,9,0,133.75523,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2071819,3.1228209,46.54,44.72,51.92,39.36,6.666666666666667,1,1,0,0,0,5,2,1,586.5,504158.75,0,327032.69,0,0,0,1635.229 +920,1131,1986,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.8628154,8.0330334,0,0,0,-1005.9919,0,2,2,2021,20,8,28,24,1,8,0,12.413692,12.413692,0,0,0,0,0,0,0,0,1,1,0,1.9030149,0,45.04,48.24,-9,-9,8.333333333333334,1,1,0,0,11,6,4,0,543,-20230.748,0,142843.97,64649.32,10297.705,0,632.32721 +921,1132,1987,1988,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.8426561,7.6252742,6.0036187,43,-5,-24.403481,0,3,3,2021,10,0,30,30,1,0,0,9.5258646,9.5258646,0,0,0,0,0,0,0,0,1,1,0,7.7008371,6.2390523,37.99,50.05,57.06,57.76,8.333333333333334,1,1,0,0,10,9,4,1,310.5,450972.63,268686.13,241838.59,-4087.022,346.03665,0,5149.4873 +921,1132,1988,1987,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,7.7478223,7.7518678,6.7427907,43,5,35.762177,0,3,3,2021,6,0,40,45,1,0,0,6.7316999,6.7316999,.05,.05,.05,0,0,0,0,0,1,1,0,7.1226749,6.7676973,57.06,57.76,37.99,50.05,8.333333333333334,1,1,0,0,10,9,4,1,310.5,450972.63,268686.13,241838.59,-4087.022,346.03665,0,5149.4873 +922,1133,1989,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.9925556,7.6693048,0,0,0,-901.09772,0,-9,-9,2021,22,10,40,38,1,10,0,6.4218946,6.4218946,.05,.05,0,0,0,0,0,0,0,0,0,0,0,15.43,65.91,-9,-9,3.333333333333333,1,1,0,0,8,13,3,0,501,235580.53,-81216.648,90139.578,66921.672,0,0,1480.3344 +923,1134,1990,1993,-9,-9,1,1,55,0,2,0,3,3,-9,1,1,0,0,0,7,27,0,0,-9,-9,2021,20,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.11,20.15,34.43,35.1,8.333333333333334,1,1,0,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +923,1134,1991,-9,1993,1990,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.8904,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +923,1134,1992,-9,1993,1990,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.8786,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +923,1134,1993,1990,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,0,0,7,-27,0,0,-9,-9,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,34.43,35.1,27.11,20.15,3.333333333333333,1,1,0,0,0,2,1,0,1330.5,49327.828,40418.66,127111.74,52688.57,8873.4863,0,3401.0957 +924,1135,1994,1995,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,7.1604156,7.1148858,10,12,-76.289513,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2520974,7.041491,60.02,56.42,54.47,50.48,10,1,1,0,0,0,12,2,1,596,511960.5,316443.75,155001.89,0,0,0,1655.1199 +924,1135,1995,1994,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.7923622,4.7194266,10,-12,48.825375,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3497555,4.718348,54.47,50.48,60.02,56.42,10,1,1,0,0,9,12,2,1,596,511960.5,316443.75,155001.89,0,0,0,1655.1199 +925,1136,1996,1997,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.1443024,8.2953806,0,12,10,23.415133,0,3,-9,2021,12,0,38,38,1,0,0,7.8072681,7.8072681,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,44.33,41.95,5,1,1,0,0,13,2,4,1,1057,127714.48,-7807.2275,144142.53,66072.18,0,760.73889,2560.1328 +925,1136,1997,1996,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.0279083,8.0764713,0,12,-10,-96.825058,0,2,2,2021,15,3,42,42,1,3,0,10.314751,10.314751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.33,41.95,49.04,55.86,5,1,1,0,0,13,2,4,1,1057,127714.48,-7807.2275,144142.53,66072.18,0,760.73889,2560.1328 +926,1137,1998,1999,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3656826,7.6178846,12,-1,86.188843,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8287587,7.3952694,47.38,50.99,43.5,38.28,8.333333333333334,1,1,0,0,0,9,3,1,1385,1147333.5,530510.25,225533.66,0,0,0,3100.717 +926,1137,1999,1998,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,6.7816691,6.8126764,12,1,-38.18597,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,12.323346,0,0,1,1,0,7.5699558,6.9182034,43.5,38.28,47.38,50.99,8.333333333333334,1,1,0,0,0,9,3,1,1385,1147333.5,530510.25,225533.66,0,0,0,3100.717 +927,1138,2000,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1003.9456,0,3,3,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,37,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,696,-124464.2,0,0,0,0,0,-167.08243 +928,1139,2001,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.4724779,8.6017103,0,0,0,-984.70166,-9,2,2,2021,12,0,35,0,1,0,0,15.58459,15.58459,.05,.05,0,0,0,0,0,0,0,0,0,7.8862181,0,43.65,58.28,-9,-9,5,2,3,0,0,5,8,5,0,749,31318.191,93047.563,0,0,0,0,4215.541 +929,1140,2002,2003,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.1030798,9.3074541,0,36,2,7.9287939,0,2,3,2021,7,0,47,37,1,0,0,25.844316,25.844316,0,0,0,0,0,0,0,7,0,0,0,5.0048804,0,54.96,53.17,58.3,52.91,5,1,1,0,0,12,10,5,1,198.5,3638475,1209006.9,509010.13,0,0,0,5189.6621 +929,1140,2003,2002,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.3982782,8.4636164,5.47225,36,-2,-80.238365,0,2,3,2021,6,0,30,37,1,0,0,16.661665,16.661665,0,0,0,0,0,0,0,2,0,0,0,5.9869928,6.1567297,58.3,52.91,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,1,198.5,3638475,1209006.9,509010.13,0,0,0,5189.6621 +930,1141,2004,2005,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,4.163722,4.3627,7,-4,-128.50954,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,4.5943012,54.1,59.11,57.57,38.96,8.333333333333334,2,3,0,0,0,8,3,1,568,1011198.4,595585.75,463215.56,163638.7,867.74762,0,1752.6836 +930,1141,2005,2004,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.4861603,7.9462643,40,4,-225.93628,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5847358,8.2952957,57.57,38.96,54.1,59.11,5,2,3,0,0,0,8,3,1,568,1011198.4,595585.75,463215.56,163638.7,867.74762,0,1752.6836 +931,1142,2006,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.4037561,8.3357744,0,0,0,-972.73462,0,3,3,2021,9,0,44,45,1,0,0,12.763854,12.763854,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,6.666666666666667,3,4,0,0,7,4,5,1,2388,566545.19,241891.36,0,0,0,0,2049.3252 +932,1143,2007,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1106.8705,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,498,252786.86,0,229048.97,0,0,0,3141.8784 +933,1144,2008,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.9249001,6.881506,0,0,-999.87866,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8949618,6.8261266,48.25,54.77,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,79,643251.38,201595.73,144980.28,0,0,0,1400.2859 +934,1145,2009,-9,2011,2010,1,1,26,0,0,0,2,2,-9,0,3,8.16504,7.9727511,0,0,0,-938.53876,0,2,2,2021,10,0,40,40,1,0,1,8.1021538,8.1021538,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,419,-246935.86,0,0,0,0,0,1223.1783 +934,1146,2010,2011,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.4699545,8.4607897,0,11,3,-108.80736,0,2,2,2021,26,10,48,48,1,10,0,8.9511814,8.9511814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.27,50.25,47.28,59.36,6.666666666666667,1,1,0,0,11,9,5,1,1773.5,781638.88,235049.5,277529.25,0,6787.6011,0,3667.0693 +934,1146,2011,2010,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.6283112,8.0762215,0,11,-3,56.529987,0,3,3,2021,13,1,38,38,1,1,0,12.445026,12.445026,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.28,59.36,34.27,50.25,6.666666666666667,1,1,0,0,12,9,5,1,1773.5,781638.88,235049.5,277529.25,0,6787.6011,0,3667.0693 +935,1147,2012,2014,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,0,0,0,19,3,-60.057388,0,3,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.07,46.05,31.56,46,10,2,3,0,0,4,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2013,-9,2012,2014,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.0243,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2014,2012,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,7.8685045,8.0610647,0,19,-3,37.3167,0,3,1,2021,14,2,16,47,1,2,0,22.101278,22.101278,0,0,0,0,0,0,0,2,1,1,0,0,0,31.56,46,50.07,46.05,3.333333333333333,2,3,0,0,14,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2015,-9,2012,2014,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-914.11243,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,2,3,-9,0,0,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +935,1147,2016,-9,2012,2014,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9651,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,2,1,856,-9154.624,0,0,0,0,0,2048.0308 +936,1148,2017,-9,2019,2018,1,1,27,0,1,0,2,2,-9,0,4,8.1564026,7.7212133,0,0,0,-971.27124,-9,3,2,2021,22,10,40,0,1,10,1,7.3746896,7.3746896,0,0,0,0,0,0,0,0,1,1,0,0,0,38.09,56.81,-9,-9,1.666666666666667,2,3,0,0,2,8,4,0,85,6731.0254,0,0,0,0,0,1202.1479 +936,1149,2018,2019,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.0188389,7.8851666,0,1,3,-25.981926,-9,-9,-9,2021,9,0,40,0,1,1,0,8.8155479,8.8155479,0,0,.05,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,2,3,0,0,1,8,3,0,506.5,361960.5,71014.609,479922.03,83586.109,0,0,3304.8105 +936,1149,2019,2018,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,1,-3,86.238861,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,53,54,8,2,3,0,0,0,8,3,0,506.5,361960.5,71014.609,479922.03,83586.109,0,0,3304.8105 +937,1150,2020,2021,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,8.3576117,7.960742,0,11,-13,-12.352975,0,-9,-9,2021,4,0,38,38,1,0,0,12.780779,12.780779,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,52.4,52.91,10,2,3,0,0,13,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2021,2020,-9,-9,1,1,46,1,3,0,2,2,-9,0,3,5.0846453,5.2892861,0,11,13,26.114111,-9,-9,-9,2021,12,0,24,0,1,0,0,.78042352,.78042352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,49.35,59.64,10,2,3,0,0,7,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2022,-9,2020,2021,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.1427,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2023,-9,2020,2021,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.527,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +937,1150,2024,-9,2020,2021,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-944.87396,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,3,1,993.79999,358910.53,75548.977,261646.63,39371.047,7780.3291,1158.3081,2806.46 +938,1151,2025,2026,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,9.2558327,8.7209911,0,20,1,87.08297,0,1,3,2021,8,0,45,45,1,0,0,25.988142,25.988142,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.4,55.04,52.99,51.28,6.666666666666667,1,1,0,0,14,10,5,1,2189.5,117928.36,-16538.738,0,0,266.72943,0,5954.4902 +938,1151,2026,2025,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.5626359,7.8044858,0,20,-1,-1.637206,0,2,3,2021,9,0,22,22,1,0,0,9.5900879,9.5900879,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,50.4,55.04,6.666666666666667,1,1,0,0,14,10,5,1,2189.5,117928.36,-16538.738,0,0,266.72943,0,5954.4902 +939,1152,2027,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.5859013,7.6411257,0,0,-1063.0812,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9259453,7.6552768,51.77,58.57,-9,-9,10,1,1,0,0,0,9,3,1,352,274612.09,105182.31,157418.39,0,0,0,1514.0862 +940,1153,2028,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.4457884,7.7281122,7.6009011,0,0,-980.86908,0,-9,3,2021,10,2,56,30,1,2,0,3.407896,3.407896,.05,.05,.05,0,0,0,0,0,0,0,0,7.5906205,7.0310702,59.46,30.92,-9,-9,3.333333333333333,1,1,0,0,15,7,4,1,782,903818.19,451531.84,464567.53,0,0,0,1586.4185 +941,1154,2029,2030,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,8.2617197,8.1002979,48,0,24.801485,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2808726,8.1535177,62.39,56.71,39.56,32.11,8.333333333333334,1,1,0,0,4,7,4,1,1221,2402133,1622650,361681,0,0,0,3061.873 +941,1154,2030,2029,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.7157435,7.1158533,48,0,-42.221912,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.521755,7.002708,39.56,32.11,62.39,56.71,8.333333333333334,1,1,0,0,3,7,4,1,1221,2402133,1622650,361681,0,0,0,3061.873 +942,1155,2031,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6921844,8.7605228,0,0,0,-1101.0276,0,2,-9,2021,12,1,36,32,1,1,0,22.839252,22.839252,.05,.05,0,0,0,0,0,0,1,1,0,8.2451067,0,41.06,62.04,-9,-9,3.333333333333333,1,1,0,0,14,6,5,1,846,271984.47,2302.5029,0,0,0,0,4829.5371 +943,1156,2032,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,7.890995,7.7326798,0,0,0,-973.61829,0,2,2,2021,12,1,64,72,1,1,0,3.8488224,3.8488224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.76,40.19,-9,-9,3.333333333333333,1,1,0,0,11,7,4,0,1253,88466.656,131407.48,0,0,0,0,1152.5929 +944,1157,2033,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.1699047,8.3702116,0,0,0,-1090.1971,0,3,3,2021,21,9,8,37,1,9,0,38.311752,38.311752,.05,.05,0,0,0,0,0,7,0,0,0,0,0,24.23,51.4,-9,-9,3.333333333333333,2,3,0,1,14,8,4,1,264,-81650.406,-42634.102,0,0,0,5818.5942,915.93427 +945,1158,2034,2035,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,0,0,7,2,102.8682,0,3,3,2021,30,12,0,0,4,12,0,0,0,0,0,0,1,0,14.056623,0,0,1,1,0,0,0,35.85,20.32,47.66,52.33,0,1,1,0,0,0,6,2,1,564.5,197553.88,35579.371,291217.19,0,0,0,1597.4077 +945,1158,2035,2034,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,6.1284623,6.4345202,0,7,-2,-27.595453,0,3,3,2021,6,0,10,10,1,0,0,5.1535211,5.1535211,0,0,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,35.85,20.32,10,1,1,0,0,8,6,2,1,564.5,197553.88,35579.371,291217.19,0,0,0,1597.4077 +946,1159,2036,2037,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.0053692,8.8190308,0,11,5,8.8671713,0,-9,-9,2021,11,0,45,40,1,0,0,15.811916,15.811916,.05,.05,.05,0,0,0,0,0,0,0,0,8.3482113,0,52.97,53.97,58.89,48.6,8.333333333333334,1,1,0,0,14,7,5,1,985,182577.25,154264.56,205729.19,81119.102,0,5755.7939,6671.3838 +946,1159,2037,2036,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,6.9304419,7.2031975,0,14,-5,43.581955,0,2,1,2021,11,0,30,5,1,0,0,5.9105887,5.9105887,0,0,0,0,0,0,0,2,0,0,0,8.0117998,0,58.89,48.6,52.97,53.97,0,2,3,0,0,7,7,5,1,985,182577.25,154264.56,205729.19,81119.102,0,5755.7939,6671.3838 +947,1160,2038,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,2,9.0590839,9.1458883,0,0,0,-1032.1437,0,2,2,2021,14,1,75,86,1,1,0,13.642204,13.642204,.05,.05,.05,0,0,0,0,0,0,0,0,1.8364042,0,59.15,42.12,-9,-9,5,2,3,0,0,4,6,5,0,503,119029.22,91196.461,0,0,0,0,3019.531 +948,1161,2039,2040,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,44,-6,0,0,2,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,25,36.93,56.27,5,1,1,0,1,0,10,1,0,513,170098,0,158047.42,0,0,0,2458.0469 +948,1161,2040,2039,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,44,6,0,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,36.93,56.27,38,25,6.666666666666667,1,1,0,0,0,10,1,0,513,170098,0,158047.42,0,0,0,2458.0469 +949,1162,2041,2042,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.5424118,8.7231026,0,1,2,117.59701,-9,-9,-9,2021,10,0,37,0,1,1,0,16.146299,16.146299,.05,.05,0,0,0,0,0,0,1,1,0,.60934031,0,49,58,49.36,58.53,7,1,1,0,0,1,12,4,1,715.66669,96976.773,91347.633,143620.56,99547.297,0,0,3157.0132 +949,1162,2042,2041,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,8.0319757,8.179471,0,1,-2,232.3437,0,-9,-9,2021,7,1,37,37,1,1,0,12.097062,12.097062,0,0,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,49,58,8.333333333333334,1,1,0,0,7,12,4,1,715.66669,96976.773,91347.633,143620.56,99547.297,0,0,3157.0132 +949,1162,2043,-9,2042,2041,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.3031,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,715.66669,96976.773,91347.633,143620.56,99547.297,0,0,3157.0132 +950,1163,2044,2045,-9,-9,1,0,51,0,0,0,3,3,-9,0,5,6.6901617,6.9221554,0,6,2,7.5008464,-9,-9,-9,2021,6,0,20,0,1,0,0,4.458262,4.458262,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.77,47.78,6.666666666666667,1,1,0,0,1,5,3,1,662.5,291936.44,78547.266,205405.69,84512.328,0,0,1757.9415 +950,1163,2045,2044,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.7513628,8.1253605,0,6,-2,1.5890614,0,2,3,2021,5,1,50,55,1,1,0,6.9045467,6.9045467,0,0,.05,0,0,0,0,0,0,0,0,0,0,55.77,47.78,57.06,57.76,6.666666666666667,1,1,0,0,8,5,3,1,662.5,291936.44,78547.266,205405.69,84512.328,0,0,1757.9415 +951,1164,2046,-9,2048,2047,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1043.4108,-9,1,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,-9,-9,8.333333333333334,3,4,0,0,0,8,5,1,756.33331,602298.31,418886.59,136223.19,48485.461,9146.4092,0,4844.6958 +951,1164,2047,2048,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4142456,8.4607649,0,8,-5,-82.078156,0,-9,-9,2021,8,0,36,36,1,0,0,16.683159,16.683159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,41.95,57.9,10,3,4,0,0,11,8,5,1,756.33331,602298.31,418886.59,136223.19,48485.461,9146.4092,0,4844.6958 +951,1164,2048,2047,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.7931643,9.117156,0,20,5,12.741189,0,2,-9,2021,11,1,50,70,1,1,0,17.335323,17.335323,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.95,57.9,58.15,52.91,5,3,4,0,0,11,8,5,1,756.33331,602298.31,418886.59,136223.19,48485.461,9146.4092,0,4844.6958 +951,1165,2049,-9,2048,2047,1,0,26,0,0,0,2,2,-9,0,3,8.2618294,8.2150688,0,0,0,-1049.7728,0,1,2,2021,17,5,50,30,1,5,1,9.9875908,9.9875908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,0,3,4,0,0,9,8,4,1,654,-2903.2053,55489.336,0,0,0,0,1589.6627 +952,1166,2050,-9,2051,2052,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.839,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1166,2051,2052,-9,-9,1,0,23,0,2,0,3,3,-9,0,4,7.2858677,7.2555652,0,4,-5,85.307205,0,-9,-9,2021,8,2,30,28,1,2,0,6.2122974,6.2122974,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,58.32,50.22,3.333333333333333,1,1,0,0,2,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1166,2052,2051,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,8.335186,8.1449509,0,4,5,-85.833237,0,1,3,2021,1,0,50,60,1,0,0,10.20631,10.20631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,41.3,60.77,8.333333333333334,1,1,0,0,6,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1166,2053,-9,2051,2052,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.6214,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,1418.75,11169.749,20755.768,0,0,921.73322,0,2400.2935 +952,1167,2054,-9,-9,-9,1,1,20,0,2,0,2,2,-9,0,3,7.2529101,7.3379254,0,0,0,-975.76764,0,-9,-9,2021,13,2,34,0,1,2,0,5.0858188,5.0858188,0,0,0,0,0,0,0,0,1,1,0,0,0,36.94,59.88,-9,-9,6.666666666666667,1,1,0,0,4,9,2,0,1547,0,0,0,0,0,0,1410.4207 +953,1168,2055,2056,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.004303,7.7803578,0,12,5,111.91569,0,-9,3,2021,13,1,39,39,1,1,0,9.5589104,9.5589104,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.42,50.81,39.16,45.17,8.333333333333334,1,1,0,0,10,12,3,0,1046.6666,-28530.205,-47054.961,0,0,0,0,3054.9075 +953,1168,2056,2055,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.1440916,8.2261696,0,12,-5,-30.45768,0,3,2,2021,13,1,42,39,1,1,0,9.25243,9.25243,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.16,45.17,48.42,50.81,6.666666666666667,1,1,0,0,2,12,3,0,1046.6666,-28530.205,-47054.961,0,0,0,0,3054.9075 +953,1168,2057,-9,2056,2055,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-890.36627,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,12,3,0,1046.6666,-28530.205,-47054.961,0,0,0,0,3054.9075 +953,1169,2058,-9,2056,2055,1,1,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-991.58514,-9,2,2,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,320,0,0,0,0,0,0,0 +954,1170,2059,2060,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.7694592,7.8791189,0,20,-1,47.170124,0,-9,-9,2021,8,0,37,40,1,0,0,8.3775063,8.3775063,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.41,44.88,10,1,1,0,0,9,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +954,1170,2060,2059,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.830472,8.9759617,0,22,1,-89.493294,0,-9,-9,2021,13,2,46,44,1,2,0,22.489254,22.489254,.05,.05,0,0,0,0,0,0,0,0,0,4.8092432,0,52.41,44.88,54.2,57.49,8.333333333333334,1,1,0,0,8,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +954,1170,2061,-9,2059,2060,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.00201,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +954,1170,2062,-9,2059,2060,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.41504,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,692.25,658577.13,749897.19,135275.33,80724.984,0,0,4329.3135 +955,1171,2063,2064,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,0,0,0,7,-5,-88.986526,0,-9,-9,2021,11,0,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,1,1,0,0,9,4,3,0,1109.6666,157905.31,65726.367,143314.06,101114.97,1309.5988,1352.4548,1117.5267 +955,1171,2064,2063,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,8.1539679,8.474225,0,7,5,2.7579253,0,2,2,2021,10,0,40,40,1,1,0,7.7039762,7.7039762,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,1,1,0,0,6,4,3,0,1109.6666,157905.31,65726.367,143314.06,101114.97,1309.5988,1352.4548,1117.5267 +955,1171,2065,-9,2063,2064,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.3876,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1109.6666,157905.31,65726.367,143314.06,101114.97,1309.5988,1352.4548,1117.5267 +956,1172,2066,2067,-9,-9,1,0,56,0,1,0,3,3,-9,0,3,0,7.4284239,6.9539237,12,1,59.343575,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1895771,43.21,47.68,44.4,55.03,8.333333333333334,1,1,1,0,11,2,4,1,926,94349.563,95853.859,0,0,0,1292.1191,2410.6873 +956,1172,2067,2066,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.2502451,8.2739706,0,12,-1,64.173721,0,2,2,2021,12,0,38,38,1,0,0,12.042628,12.042628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.4,55.03,43.21,47.68,6.666666666666667,1,1,0,0,13,2,4,1,926,94349.563,95853.859,0,0,0,1292.1191,2410.6873 +957,1173,2068,-9,-9,-9,1,1,52,0,0,0,2,2,0,0,3,0,7.6909151,7.5622029,0,0,-952.0885,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6332951,7.458406,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,117,491839.09,620347.69,0,0,0,0,2633.2019 +957,1174,2069,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8549366,7.7937298,0,0,0,-972.40448,0,-9,-9,2021,9,1,35,35,1,1,0,6.9827399,6.9827399,.05,.05,0,0,0,0,0,0,0,0,0,3.3726511,0,44.38,58.1,-9,-9,8.333333333333334,1,1,0,0,1,10,3,1,1958,-299625.19,0,0,0,0,0,847.30182 +958,1175,2070,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,5.4398718,5.428597,0,0,-1056.5272,0,3,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.6400328,0,31.75,30.43,-9,-9,5,1,1,0,0,0,12,2,0,815,207931.27,-26338.434,0,0,0,0,781.00977 +958,1176,2071,-9,2070,-9,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1139.0026,1,3,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.89,51.11,-9,-9,6.666666666666667,1,1,0,0,2,12,1,0,1520,107319.66,0,0,0,0,0,0 +958,1177,2072,-9,2070,-9,1,1,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-1048.146,-9,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,1,0,394,0,0,0,0,0,0,642.48413 +959,1178,2073,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.6989746,7.0749841,0,0,-891.28278,0,3,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4734411,34.48,61.03,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,712,322519.25,178977.89,154767.94,0,0,0,228.14345 +960,1179,2074,2075,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6368275,8.2206631,0,7,-1,-176.91812,0,2,3,2021,11,0,40,40,1,0,0,12.0347,12.0347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.42,62.33,62.49,55.09,1.666666666666667,1,1,0,0,9,13,5,1,238,580302.25,471378.31,276337.91,112764.61,0,0,4408.6538 +960,1179,2075,2074,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.1857052,9.0748377,0,7,1,38.378281,0,2,2,2021,6,0,58,48,1,0,0,18.898371,18.898371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,43.42,62.33,6.666666666666667,1,1,0,0,9,13,5,1,238,580302.25,471378.31,276337.91,112764.61,0,0,4408.6538 +961,1180,2076,2077,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.4713631,8.2264977,0,6,-1,7.219243,0,2,2,2021,8,0,52,57,1,0,0,9.6429052,9.6429052,0,0,0,0,0,0,0,0,0,0,0,.92016405,0,46.4,59.87,51,56,8.333333333333334,1,1,0,0,7,9,5,1,1320,155689.75,43450.469,304012.5,145247.36,0,0,3110.1729 +961,1180,2077,2076,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.267519,8.4034157,0,6,1,-59.026009,0,-9,-9,2021,9,0,40,50,1,1,0,13.273065,13.273065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,46.4,59.87,8,1,1,0,0,1,9,5,1,1320,155689.75,43450.469,304012.5,145247.36,0,0,3110.1729 +962,1181,2078,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1087.587,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3353128,0,35.32,46.89,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,1720,-161884.69,0,0,0,0,0,2023.5568 +963,1182,2079,2083,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,8.3348904,8.233758,0,17,3,-4.950386,0,3,1,2021,11,0,40,42,1,0,0,14.166106,14.166106,.05,.05,0,0,0,0,0,0,1,1,0,4.1183958,0,54.37,54.8,57.06,57.76,6.666666666666667,1,1,0,0,8,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2080,-9,2083,2079,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.13007,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2081,-9,2083,2079,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.3754,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2082,-9,2083,2079,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.79877,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +963,1182,2083,2079,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.451386,7.5188241,0,16,-3,-125.80962,0,1,2,2021,6,0,30,24,1,0,0,7.4153609,7.4153609,.05,.05,0,0,0,0,0,0,1,1,0,2.3880267,0,57.06,57.76,54.37,54.8,10,1,1,0,0,7,9,3,1,527.20001,100985.96,36218.711,220975.72,113149.65,6593.2676,-320.87897,3216.6091 +964,1183,2084,2087,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.1442828,7.0678377,0,5,-3,-68.255936,0,-9,-9,2021,9,1,16,16,1,1,0,9.2804346,9.2804346,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.22,49.89,8.333333333333334,2,3,0,0,9,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +964,1183,2085,-9,2084,2087,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-957.09326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +964,1183,2086,-9,2084,2087,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.839,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +964,1183,2087,2084,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.8782187,8.0102882,0,5,3,-22.589216,0,-9,-9,2021,5,1,49,0,1,1,0,7.5868235,7.5868235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,49.89,48.87,58.55,10,2,3,0,0,6,9,3,1,949,115433.43,42950.32,0,0,0,0,2329.9546 +965,1184,2088,2090,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.1038551,8.0308771,0,2,10,-37.089256,0,3,3,2021,11,0,40,40,1,0,0,7.1057281,7.1057281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,56.18,53.85,10,1,1,0,0,7,12,4,0,798.33331,184663.69,193587.69,129551.07,132715.84,6359.6187,0,2709.6765 +965,1184,2089,-9,2090,2088,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.9786,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,798.33331,184663.69,193587.69,129551.07,132715.84,6359.6187,0,2709.6765 +965,1184,2090,2088,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,8.1839867,8.2678003,0,2,-10,-3.4286101,0,3,2,2021,10,0,43,43,1,0,0,8.4068022,8.4068022,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,52,54.51,8.333333333333334,1,1,0,0,9,12,4,0,798.33331,184663.69,193587.69,129551.07,132715.84,6359.6187,0,2709.6765 +966,1185,2091,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.1412354,7.2755408,0,0,-1051.053,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.95838082,7.2168441,47.55,25.92,-9,-9,5,1,1,0,0,0,12,3,1,833,528917.5,170480.36,124229.24,0,0,0,999.16504 +967,1186,2092,2093,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,9.144928,8.9813042,0,12,4,-102.98577,0,2,2,2021,8,0,46,45,1,0,0,19.850714,19.850714,.05,.05,0,0,0,0,0,0,1,1,0,3.2074053,0,49.41,58.28,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,833.66669,812838.38,574075.19,349354.09,113956.73,0,0,5441.1006 +967,1186,2093,2092,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.5837708,8.4631453,0,12,-4,-36.768967,0,2,1,2021,7,0,41,42,1,0,0,18.170954,18.170954,.05,.05,0,0,0,0,0,0,1,1,0,6.2204547,0,57.16,56.15,49.41,58.28,10,1,1,0,0,13,9,5,1,833.66669,812838.38,574075.19,349354.09,113956.73,0,0,5441.1006 +967,1186,2094,-9,2093,2092,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.8496,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,833.66669,812838.38,574075.19,349354.09,113956.73,0,0,5441.1006 +967,1187,2095,-9,2093,2092,1,1,18,0,1,0,2,2,-9,0,4,7.3287287,7.5927415,0,0,0,-1017.165,0,2,2,2021,11,0,12,0,1,0,1,20.216417,20.216417,0,0,0,0,0,0,0,0,1,1,0,7.3810973,0,38.4,56.8,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,299,36755.082,0,0,0,0,5056.3809,1828.8625 +968,1188,2096,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.9786348,6.2446804,0,0,-1045.8512,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8525338,6.1619711,52.25,34.48,-9,-9,5,1,1,0,0,0,2,2,1,279,135842.17,50388.82,99463.969,0,0,0,757.64502 +969,1189,2097,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,6.7257161,6.5781622,0,0,0,-1122.8397,0,-9,-9,2021,27,9,16,16,1,9,0,6.2858658,6.2858658,0,0,0,0,0,0,0,0,1,1,0,1.667363,0,29.96,53.03,-9,-9,0,1,1,0,1,5,10,2,0,704,-13469.594,0,0,0,0,1742.0612,1578.672 +970,1190,2098,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,0,0,0,0,-950.99811,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8985562,0,57.16,56.15,-9,-9,10,1,1,0,0,11,12,1,1,183,42056.027,0,135982.22,0,0,0,1041.5608 +971,1191,2099,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-988.42029,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,39.79,-9,-9,3.333333333333333,1,1,0,0,1,5,1,1,276,195241.33,0,97559.008,0,0,0,1045.8562 +972,1192,2100,2101,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.680295,7.8133531,0,13,-2,30.280081,0,3,3,2021,11,0,10,5,1,0,0,18.960285,18.960285,.05,.05,0,0,0,0,0,0,0,0,0,7.198451,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,5,3,1,558.5,18295.006,72998.07,0,0,0,0,2015.5115 +972,1192,2101,2100,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,5.6198006,5.663466,0,13,2,80.415123,-9,3,3,2021,12,0,40,0,1,0,0,.92284036,.92284036,.05,.05,0,0,0,0,0,0,0,0,0,5.1121912,0,57.16,56.15,54.2,57.49,5,1,1,0,0,10,5,3,1,558.5,18295.006,72998.07,0,0,0,0,2015.5115 +973,1193,2102,-9,-9,-9,1,1,97,0,0,0,2,2,-9,0,3,0,6.071393,5.59583,0,0,-1034.0729,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,6.0045156,0,0,1,1,0,0,5.9807649,45.59,23.67,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,714,305612.34,19162.922,77711.008,0,0,0,1192.3118 +974,1194,2103,-9,2106,2105,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-824.07867,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +974,1194,2104,-9,2106,2105,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.36676,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +974,1194,2105,2106,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,8.5311241,8.4801655,0,20,2,-43.91087,0,2,2,2021,9,1,38,38,1,1,0,13.353398,13.353398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,36.32,61.46,8.333333333333334,1,1,0,0,9,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +974,1194,2106,2105,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3789892,8.2116718,0,20,-2,-69.953491,0,2,3,2021,14,3,50,47,1,3,0,7.2323818,7.2323818,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.32,61.46,56.47,59.4,6.666666666666667,1,1,0,0,10,9,4,1,539.25,587329.69,253630.39,429249.94,78589.172,14031.705,0,4532.5771 +975,1195,2107,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.2727909,8.3294163,0,0,0,-1018.3871,0,2,2,2021,23,7,50,70,1,7,0,8.8899908,8.8899908,0,0,0,0,0,0,0,7,0,0,0,0,0,39.99,62.58,-9,-9,6.666666666666667,1,1,0,0,12,4,4,0,508,1986060.8,1145407.3,0,0,5587.0435,0,2245.814 +976,1196,2108,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1003.1758,0,2,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,34.46,56.19,-9,-9,6.666666666666667,1,1,0,0,9,7,1,0,506,81382.133,73283.797,0,0,0,0,477.91306 +976,1197,2109,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,0,0,0,0,-899.21783,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,1,0,8.3874989,0,2,1,0,1,0,0,50.67,24.09,-9,-9,5,1,1,0,0,0,7,1,0,334,-278629.5,0,0,0,0,0,684.34552 +977,1198,2110,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.14172,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.74,43.61,-9,-9,5,1,1,0,0,7,11,1,1,514,106741.99,0,0,0,0,0,1024.3842 +978,1199,2111,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,7.7598548,7.8191843,6.1276736,0,0,-903.80713,0,-9,-9,2021,18,6,33,34,1,6,0,8.638505,8.638505,0,0,0,0,0,0,0,0,0,0,0,6.6663671,0,38.49,62.46,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,231,171855.39,-55991.461,0,0,0,0,1648.7371 +979,1200,2112,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,5,0,4.9629493,4.7722621,0,0,-1015.306,-9,2,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3927555,0,43.97,60.95,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,260,227664.2,0,0,0,0,0,629.96332 +980,1201,2113,2114,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,5.9660053,5.5458784,51,-1,-87.423218,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,17.489305,0,0,1,1,0,0,5.6409426,47.48,40.69,43.4,31.71,8.333333333333334,1,1,0,0,6,5,2,1,321,296851.5,73842.516,73487.766,0,0,0,1009.5612 +980,1201,2114,2113,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.6300459,5.6651244,52,1,-2.5610552,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,8.9050026,0,0,1,1,0,5.2255983,5.410933,43.4,31.71,47.48,40.69,6.666666666666667,1,1,0,0,8,5,2,1,321,296851.5,73842.516,73487.766,0,0,0,1009.5612 +981,1202,2115,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.3352218,7.2801051,0,0,0,-967.42957,0,3,3,2021,26,12,32,40,1,12,0,6.0840735,6.0840735,0,0,0,0,0,0,0,0,0,0,0,0,0,25.95,41.21,-9,-9,3.333333333333333,1,1,0,0,10,2,3,1,507,50514.094,-36476.473,0,0,0,0,1221.9995 +982,1203,2116,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.6975803,8.6829071,0,0,0,-977.70532,0,3,1,2021,11,1,59,36,1,1,0,15.298935,15.298935,.05,.05,0,0,0,0,0,67,1,1,0,0,0,36.79,56.27,-9,-9,3.333333333333333,3,4,0,1,10,8,5,1,830,-60872.582,-53299.195,0,0,580.87988,0,2651.0747 +982,1204,2117,-9,2116,-9,1,1,31,0,0,0,1,1,-9,0,5,5.7749934,6.0108514,0,0,0,-957.99615,0,2,-9,2021,11,0,41,0,1,0,1,1.3097051,1.3097051,0,0,0,0,0,0,0,0,1,1,0,0,0,50.22,45.72,-9,-9,6.666666666666667,3,4,0,0,2,8,2,1,1042,-319765.31,0,0,0,0,0,1017.6369 +983,1205,2118,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,6.854938,6.6863723,0,0,0,-846.30847,0,3,3,2021,12,1,18,16,1,1,0,8.5149727,8.5149727,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,-9,-9,3.333333333333333,1,1,0,0,4,9,2,0,247.5,130785.2,-20189.674,0,0,805.77527,0,1398.6753 +983,1205,2119,-9,2118,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.65094,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,247.5,130785.2,-20189.674,0,0,805.77527,0,1398.6753 +984,1206,2120,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.5873299,8.2928982,0,0,0,-1058.3138,0,2,2,2021,12,0,38,37,1,0,0,14.647552,14.647552,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,367,31784.221,0,0,0,0,0,2028.9731 +985,1207,2121,2122,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.685626,8.6437654,0,17,-2,-167.98679,0,2,2,2021,9,0,37,32,1,0,0,16.747189,16.747189,.05,.05,0,0,0,0,0,0,1,1,0,6.7532563,0,54.1,59.11,58.15,52.91,8.333333333333334,1,1,0,0,7,4,4,1,1363.6666,228007.36,78281,110884.72,66143.313,11439.317,886.51013,2699.0413 +985,1207,2122,2121,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.6973538,7.2875996,0,19,2,105.64539,0,2,2,2021,6,0,40,40,1,0,0,4.3235126,4.3235126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.1,59.11,8.333333333333334,1,1,0,0,11,4,4,1,1363.6666,228007.36,78281,110884.72,66143.313,11439.317,886.51013,2699.0413 +985,1207,2123,-9,2121,2122,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6769,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,1363.6666,228007.36,78281,110884.72,66143.313,11439.317,886.51013,2699.0413 +986,1208,2124,-9,2127,2125,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.886,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +986,1208,2125,2127,-9,-9,1,1,33,1,2,0,1,1,-9,0,2,8.5387669,8.453311,0,7,0,-92.808823,0,1,2,2021,10,2,35,35,1,2,0,16.427765,16.427765,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.67,42.66,51.44,53.27,6.666666666666667,1,1,0,0,9,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +986,1208,2126,-9,2127,2125,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.1238,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +986,1208,2127,2125,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.8744478,9.1032991,0,7,0,16.170774,0,-9,-9,2021,13,4,35,37,1,4,0,25.091045,25.091045,.05,.05,0,0,0,0,0,0,1,1,0,6.7712402,0,51.44,53.27,43.67,42.66,7,1,1,0,0,11,11,5,1,875.5,238846.78,116643.23,205654.47,189327.64,14211.639,3179.8838,4729.5195 +987,1209,2128,2131,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.2110214,7.6357155,0,16,-3,-75.845955,0,2,2,2021,10,0,2,2,1,0,0,103.10638,103.10638,.05,.05,0,0,0,0,0,0,1,1,0,2.9268289,0,46.39,52.95,45,53.85,10,1,1,0,0,6,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +987,1209,2129,-9,2128,2131,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.62378,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +987,1209,2130,-9,2128,2131,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.60022,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +987,1209,2131,2128,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.1540499,9.1335831,0,16,3,64.475632,0,2,2,2021,9,2,40,45,1,2,0,27.410814,27.410814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,53.85,46.39,52.95,8.333333333333334,1,1,0,0,10,2,5,1,4754.75,437987.47,266617.75,252163.48,147648.33,0,0,4727.2397 +988,1210,2132,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,5.9718475,6.1120343,0,0,-927.62592,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1214521,6.0287962,63.26,42.53,-9,-9,5,1,1,0,0,0,9,2,0,753,49354.102,85410.234,0,0,0,0,1578.928 +989,1211,2133,2134,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.180851,7.013381,46,14,35.02504,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9544535,47.5,37.66,41.09,60.69,8.333333333333334,1,1,0,0,9,7,2,1,940,552513.5,170703.72,236122.19,0,0,0,1937.6913 +989,1211,2134,2133,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,12,-14,-23.501383,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.2725928,0,41.09,60.69,47.5,37.66,6.666666666666667,1,1,0,0,10,7,2,1,940,552513.5,170703.72,236122.19,0,0,0,1937.6913 +990,1212,2135,2136,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.811142,9.169116,0,6,3,10.627094,0,3,3,2021,3,0,40,40,1,0,0,19.187407,19.187407,.05,.05,0,0,0,0,0,0,0,0,0,4.8849912,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,5,5,1,547.5,869940.25,517580.44,238151,0,3441.1616,0,5940.6113 +990,1212,2136,2135,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,8.6662645,8.6662893,0,6,-3,28.126703,0,2,2,2021,7,0,30,30,1,0,0,18.038347,18.038347,.05,.05,0,0,0,0,0,0,0,0,0,7.3703742,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,5,5,1,547.5,869940.25,517580.44,238151,0,3441.1616,0,5940.6113 +990,1213,2137,-9,2136,2135,1,1,21,0,0,1,2,0,0,0,5,0,6.8302169,7.421587,0,0,-1062.8871,-9,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9144187,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,6,5,2,1,1355,120203.09,0,0,0,0,0,804.82349 +990,1214,2138,-9,2136,2135,1,1,20,0,0,0,2,2,-9,0,4,8.4067364,8.8600197,0,0,0,-1111.9264,0,2,1,2021,9,0,70,70,1,0,1,7.4673452,7.4673452,0,0,0,0,0,0,0,0,0,0,0,3.9870815,0,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,6,5,4,1,216,-40782.223,0,0,0,0,0,1240.9357 +990,1215,2139,-9,2136,2135,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-951.81757,-9,2,1,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.42676798,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,524,45573.547,0,0,0,0,0,474.43607 +991,1216,2140,2141,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.5458126,6.4691191,55,8,-58.075565,-9,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.9947348,6.3530664,55,45,49.27,32.35,8,1,1,0,0,0,12,3,1,487.5,254277.59,222317.28,61236.391,0,2097.4971,0,3379.188 +991,1216,2141,2140,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.4306912,7.5250273,7,-8,10.263474,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9988956,0,0,1,1,0,5.2510457,7.3424392,49.27,32.35,55,45,8.333333333333334,1,1,0,0,0,12,3,1,487.5,254277.59,222317.28,61236.391,0,2097.4971,0,3379.188 +992,1217,2142,-9,2144,2143,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1115.0265,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,687.66669,263006.16,-6410.9858,329469.59,175128,28888.912,0,3740.5037 +992,1217,2143,2144,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,8.3590364,8.7630558,0,24,4,75.150215,0,3,2,2021,9,1,45,48,1,1,0,13.09114,13.09114,0,0,0,0,0,0,0,0,1,1,0,1.9484998,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,14,10,5,1,687.66669,263006.16,-6410.9858,329469.59,175128,28888.912,0,3740.5037 +992,1217,2144,2143,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.1443834,8.3672304,0,24,-4,-182.63989,0,2,2,2021,7,0,40,42,1,0,0,9.1980257,9.1980257,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,15,10,5,1,687.66669,263006.16,-6410.9858,329469.59,175128,28888.912,0,3740.5037 +992,1218,2145,-9,2144,2143,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-956.27271,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,686,-92333.109,0,0,0,0,0,0 +993,1219,2146,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.0061698,7.0460606,0,0,-964.6944,0,3,2,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.702471,6.8054047,59.71,50.89,-9,-9,10,1,1,0,0,0,10,2,1,727,799958.44,463209.53,30998.105,0,0,0,1560.0643 +994,1220,2147,2148,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.6909122,8.5890942,0,5,-2,-42.258831,0,2,2,2021,22,9,36,45,1,9,0,20.55615,20.55615,.05,.05,0,0,0,0,0,0,0,0,0,3.0218072,0,32.61,64.90000000000001,40.64,52.96,6.666666666666667,1,1,0,0,8,11,5,1,756.5,175722.75,108425.59,94781.414,63537.805,-1066.4336,951.57483,2634.9622 +994,1220,2148,2147,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,7.6868272,7.4618816,0,5,2,88.681328,0,-9,-9,2021,13,1,45,50,1,1,0,5.1564956,5.1564956,.05,.05,0,0,0,0,0,0,0,0,0,.7752471,0,40.64,52.96,32.61,64.90000000000001,6.666666666666667,1,1,0,0,9,11,5,1,756.5,175722.75,108425.59,94781.414,63537.805,-1066.4336,951.57483,2634.9622 +995,1221,2149,2151,-9,-9,1,0,39,1,2,0,3,3,-9,1,5,0,0,0,5,3,107.96122,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.96,56.86,22.54,64.51000000000001,5,1,1,1,1,0,10,2,0,1078.6666,72375.859,132460.14,0,0,8018.4678,-79.96701,1530.8997 +995,1221,2150,-9,2149,2151,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6138,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,2,0,1078.6666,72375.859,132460.14,0,0,8018.4678,-79.96701,1530.8997 +995,1221,2151,2149,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,6.5609264,6.7653093,0,5,-3,-4.8098822,-9,-9,-9,2021,8,2,50,0,1,2,0,1.8708833,1.8708833,0,0,0,0,0,0,.021292517,0,1,0,1,0,0,22.54,64.51000000000001,56.96,56.86,3.333333333333333,1,1,0,0,12,10,2,0,1078.6666,72375.859,132460.14,0,0,8018.4678,-79.96701,1530.8997 +995,1222,2152,-9,2149,-9,1,1,18,1,2,0,2,2,-9,0,5,0,0,0,0,0,-977.55322,-9,3,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.53,57.01,-9,-9,5,1,1,1,1,0,10,1,0,327,-53944.652,0,0,0,0,0,0 +996,1223,2153,2154,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.4946256,7.6031594,0,11,1,112.07319,0,2,-9,2021,15,3,20,20,1,3,0,10.040042,10.040042,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.59,48.97,51.48,48.31,6.666666666666667,1,1,0,0,12,13,5,1,656,220729.34,179138.81,242169.88,141573.31,0,6069.4888,2858.4082 +996,1223,2154,2153,-9,-9,1,1,45,0,1,0,3,3,-9,0,2,8.8691492,8.5227299,0,11,-1,33.686317,0,2,2,2021,7,0,48,48,1,0,0,14.565401,14.565401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.48,48.31,34.59,48.97,8.333333333333334,1,1,0,0,12,13,5,1,656,220729.34,179138.81,242169.88,141573.31,0,6069.4888,2858.4082 +997,1224,2155,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,7.1860952,7.1530075,0,0,-1031.1754,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9126649,7.1260977,62.49,55.09,-9,-9,10,1,1,0,0,0,13,2,1,1291,415222.63,167099.56,79135.555,33034.324,2987.1907,0,2111.3557 +998,1225,2156,2157,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.6040096,7.6513023,20,3,-30.269445,0,3,3,2021,6,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.881115,62.49,55.09,47.42,42,10,1,1,0,0,8,5,4,1,745,1813615.8,776842.63,448126.25,0,0,0,2829.1143 +998,1225,2157,2156,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.4217162,7.6875954,22,-3,-91.213531,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0261149,7.6120324,47.42,42,62.49,55.09,8.333333333333334,1,1,0,0,4,5,4,1,745,1813615.8,776842.63,448126.25,0,0,0,2829.1143 +999,1226,2158,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.6310825,7.4588642,0,0,-1010.2551,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.033460911,7.9851093,47.27,45.7,-9,-9,10,1,1,0,0,0,9,3,1,486,368704.91,113596.81,245521.28,0,0,0,1338.6833 +1000,1227,2159,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.4359407,7.1293554,0,0,-996.48041,-9,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0869684,7.6458921,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1671,613453.81,442957.41,122970.25,0,0,0,1168.6431 +1001,1228,2160,-9,2161,2162,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.79626,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,565,1214475.9,1005998.3,241305.05,61734.418,2346.4712,0,6541.791 +1001,1228,2161,2162,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.581109,9.2937632,0,7,-1,-104.80537,0,3,3,2021,13,3,83,43,1,3,0,17.581388,17.581388,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.91,53.27,8.333333333333334,1,1,0,0,8,1,5,1,565,1214475.9,1005998.3,241305.05,61734.418,2346.4712,0,6541.791 +1001,1228,2162,2161,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,9.0866852,9.0266027,0,7,1,81.689522,0,2,3,2021,6,0,37,37,1,0,0,21.762733,21.762733,.05,.05,0,0,0,0,0,0,0,0,0,1.040029,0,51.91,53.27,54.1,59.11,10,1,1,0,0,8,1,5,1,565,1214475.9,1005998.3,241305.05,61734.418,2346.4712,0,6541.791 +1002,1229,2163,2164,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,0,0,25,11,74.736992,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.5885492,0,60.6,43.75,60.29,52.11,8.333333333333334,1,1,0,0,0,7,3,1,536,130078.33,22747.801,0,0,0,0,1487.5767 +1002,1229,2164,2163,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9236889,7.8250179,0,25,-11,54.25539,0,2,2,2021,7,0,38,35,1,0,0,7.2985044,7.2985044,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,60.6,43.75,8.333333333333334,1,1,0,0,14,7,3,1,536,130078.33,22747.801,0,0,0,0,1487.5767 +1003,1230,2165,2166,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,49,5,47.403969,0,2,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,76.633064,0,0,1,1,0,0,0,38.97,17.84,55.2,41.97,5,1,1,0,0,0,12,2,0,174.5,1215636.5,336270.94,252720.78,0,0,0,1325.8203 +1003,1230,2166,2165,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.3478904,7.3805814,0,49,-5,46.176666,0,3,3,2021,6,0,36,32,1,0,0,6.2789674,6.2789674,0,0,0,0,0,0,0,0,1,1,0,0,0,55.2,41.97,38.97,17.84,1.666666666666667,1,1,0,0,13,12,2,0,174.5,1215636.5,336270.94,252720.78,0,0,0,1325.8203 +1004,1231,2167,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3658361,8.3773174,0,0,0,-952.1012,0,3,3,2021,5,0,37,37,1,0,0,11.85917,11.85917,.05,.05,0,0,0,0,0,0,1,1,0,4.0940027,0,45.3,52.04,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1231,62905.484,89484.039,183829.27,62262.043,1687.0387,0,2617.0972 +1005,1232,2168,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.5901818,6.7771559,0,0,-952.94891,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8300676,6.9692473,53.25,42.89,-9,-9,5,1,1,0,0,12,13,2,1,1174,278473.34,15302.328,226168.88,0,2492.2441,0,1772.0684 +1006,1233,2169,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.2866879,8.4441729,0,0,0,-994.37457,-9,3,2,2021,15,3,46,0,1,3,0,11.091758,11.091758,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.51,50.05,-9,-9,3.333333333333333,1,1,0,1,13,8,4,0,342,-107716.21,-12507.767,0,0,0,0,1746.4847 +1007,1234,2170,2171,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.7912774,7.6610579,41,-1,-65.288361,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5309508,7.8040261,49.04,55.86,54.1,59.11,8.333333333333334,1,1,0,0,10,11,5,1,1020.5,2953326.5,2113185,131172.39,0,0,0,6993.873 +1007,1234,2171,2170,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,9.2128935,9.1430559,41,1,43.521065,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5048933,9.1173182,54.1,59.11,49.04,55.86,8.333333333333334,1,1,0,0,11,11,5,1,1020.5,2953326.5,2113185,131172.39,0,0,0,6993.873 +1007,1235,2172,-9,2171,2170,1,0,25,0,0,0,1,1,-9,0,4,8.2068644,8.3217487,0,0,0,-975.83673,0,1,1,2021,13,3,38,41,1,3,0,12.001525,12.001525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,10,1,1,0,0,7,11,4,1,459,54129.41,14155.065,0,0,-3425.405,0,1520.5908 +1007,1236,2173,-9,2171,2170,1,0,24,0,0,0,1,1,-9,0,3,7.8896451,7.5277224,0,0,0,-940.22693,0,1,1,2021,16,4,38,23,1,4,0,6.8022733,6.8022733,0,0,0,0,0,0,0,0,0,0,0,0,0,20.51,66.12,-9,-9,1.666666666666667,1,1,0,1,6,11,3,1,2091,-94089.453,0,0,0,0,0,735.55591 +1008,1237,2174,-9,2175,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.6866,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,1,511.5,130017.7,177822.08,257537.84,189354.59,207.83319,0,2687.5344 +1008,1237,2175,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.3054771,8.4929895,7.3992734,0,0,-1125.3923,0,2,2,2021,8,0,39,37,1,0,0,12.02736,12.02736,.05,.05,0,0,0,0,0,0,1,1,0,7.1036348,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,511.5,130017.7,177822.08,257537.84,189354.59,207.83319,0,2687.5344 +1009,1238,2176,2177,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,7.3428512,7.1455183,0,30,8,1.636059,0,2,2,2021,7,0,24,30,1,0,0,7.6202006,7.6202006,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.99,55.83,8.333333333333334,1,1,0,0,15,6,4,1,153,1148493.5,808817.5,239251.88,23780.563,0,0,3134.8601 +1009,1238,2177,2176,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0997143,8.1671667,5.603601,30,-8,-9.9308977,0,3,3,2021,10,0,54,36,1,0,0,7.3915105,7.3915105,0,0,0,0,0,0,0,0,1,1,0,.016490998,5.7183175,39.99,55.83,57.16,56.15,8.333333333333334,1,1,0,0,14,6,4,1,153,1148493.5,808817.5,239251.88,23780.563,0,0,3134.8601 +1009,1239,2178,-9,2177,2176,1,1,35,0,0,0,2,2,-9,0,4,8.6176853,8.8410149,0,0,0,-961.02045,-9,2,3,2021,7,1,49,0,1,1,1,10.281811,10.281811,0,0,0,0,0,0,0,0,1,1,0,.062061582,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,8,6,5,1,87,-121241.6,54461.5,0,0,0,-621.20044,2723.6199 +1010,1240,2179,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.5312853,7.9090967,0,0,0,-978.92041,0,-9,-9,2021,9,0,35,36,1,0,0,6.8495235,6.8495235,0,0,0,0,0,0,0,0,1,1,0,0,0,38.11,59.76,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,740,138252.88,0,0,0,0,0,1760.3033 +1011,1241,2180,2181,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,40,1,-8.4607162,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7100873,0,50,47,58.15,52.91,7,1,1,0,0,0,13,3,1,263,520710.88,488113.44,170189.67,0,0,0,3229.1489 +1011,1241,2181,2180,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.2363405,7.2621279,40,-1,32.934948,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.789762,7.7817445,58.15,52.91,50,47,8.333333333333334,1,1,0,0,0,13,3,1,263,520710.88,488113.44,170189.67,0,0,0,3229.1489 +1012,1242,2182,2183,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,10,4,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.10688934,0,53,46,32.92,29.8,7,1,1,0,0,0,7,1,0,137.5,195043.2,71718.531,69413.984,0,0,0,2617.665 +1012,1242,2183,2182,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,52,-4,0,0,2,-9,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,7,1,0,1,0,0,32.92,29.8,53,46,5,1,1,0,0,0,7,1,0,137.5,195043.2,71718.531,69413.984,0,0,0,2617.665 +1013,1243,2184,-9,-9,-9,1,0,20,0,0,0,2,2,-9,1,3,7.8089852,7.9122496,0,0,0,-1042.2759,0,-9,-9,2021,6,1,62,62,1,1,0,6.3172741,6.3172741,0,0,0,0,0,0,0,0,1,1,0,6.524529,0,32.65,56.8,-9,-9,8.333333333333334,1,1,0,0,5,7,4,0,99,13157.353,0,0,0,3413.0354,0,949.23914 +1014,1244,2185,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,8.795764,8.36938,0,0,0,-1019.2202,0,2,-9,2021,25,10,20,20,1,10,0,27.489298,27.489298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.96,25.37,-9,-9,0,2,3,0,0,9,5,5,0,305,232657.52,385233.81,19622.295,0,0,0,2853.8972 +1015,1245,2186,2187,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.7252984,7.9874249,0,30,-11,-39.960785,0,2,-9,2021,9,0,30,31,1,0,0,8.4033556,8.4033556,0,0,.05,0,0,0,0,2,1,1,0,2.4701018,0,52.06,51.69,59.86,48.06,8.333333333333334,1,1,0,0,13,5,5,1,780,1899460.6,1089139.8,272065.34,0,0,0,4435.749 +1015,1245,2187,2186,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.9465714,8.8302603,5.4137511,10,11,100.4646,0,-9,-9,2021,6,0,30,30,1,0,0,27.992687,27.992687,0,0,.05,0,0,0,0,0,1,1,0,5.5603242,5.8752751,59.86,48.06,52.06,51.69,8.333333333333334,1,1,0,1,2,5,5,1,780,1899460.6,1089139.8,272065.34,0,0,0,4435.749 +1015,1246,2188,-9,2186,2187,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1100.0974,-9,1,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.3316732,0,61.85,44.55,-9,-9,10,1,1,0,0,2,5,1,1,363,85495.555,0,0,0,-566.11993,0,354.77103 +1016,1247,2189,2190,-9,-9,1,1,70,0,1,0,2,2,-9,0,2,0,6.3427024,6.4145794,8,8,-68.409157,0,-9,-9,2021,23,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2056894,37.36,38.59,46.97,28.63,8.333333333333334,2,3,0,1,0,6,2,1,312,112073.37,0,127470.14,0,0,0,717.49011 +1016,1247,2190,2189,-9,-9,1,0,62,0,1,0,2,2,-9,0,4,0,0,0,38,-8,48.630428,0,3,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.97,28.63,37.36,38.59,3.333333333333333,2,3,0,1,0,6,2,1,312,112073.37,0,127470.14,0,0,0,717.49011 +1016,1248,2191,-9,2190,2189,1,1,32,0,1,0,2,2,-9,0,3,8.1846113,8.4747448,0,0,0,-983.17206,0,2,2,2021,23,7,35,45,1,7,1,14.286865,14.286865,.05,.05,0,0,0,0,0,0,1,1,0,1.6387513,0,42.92,50.88,-9,-9,5,2,3,0,1,10,6,4,1,1020,-50892.035,18809.225,0,0,0,0,709.06622 +1016,1249,2192,2194,2190,2189,1,1,35,0,1,0,1,1,-9,0,5,9.1758718,9.1105881,0,5,-1,-86.297424,0,2,2,2021,18,6,43,48,1,6,0,22.745358,22.745358,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.59,50.76,36.05,32.03,3.333333333333333,2,3,0,0,4,6,4,1,563.66669,180268.41,67096.297,269557.44,158553.83,0,872.56097,3123.7009 +1016,1249,2193,-9,2194,2192,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-943.71259,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,563.66669,180268.41,67096.297,269557.44,158553.83,0,872.56097,3123.7009 +1016,1249,2194,2192,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,0,0,5,1,.78255635,0,-9,-9,2021,23,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.05,32.03,33.59,50.76,1.666666666666667,4,3,0,0,0,6,4,1,563.66669,180268.41,67096.297,269557.44,158553.83,0,872.56097,3123.7009 +1017,1250,2195,2196,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.7481947,6.788043,40,-3,1.2485206,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5727525,59.31,49.81,53,46,10,1,1,0,0,0,12,2,1,186.5,641675.88,285513.69,364564.56,0,0,0,1571.2111 +1017,1250,2196,2195,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,6.858294,6.8756747,40,3,-35.408993,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.6263084,53,46,59.31,49.81,8,1,1,0,0,0,12,2,1,186.5,641675.88,285513.69,364564.56,0,0,0,1571.2111 +1018,1251,2197,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.5487547,8.7852907,0,0,0,-926.20221,0,1,2,2021,11,1,43,43,1,1,0,13.488997,13.488997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,-9,-9,8.333333333333334,1,1,0,0,15,7,5,1,742,572671,221089.77,263799.72,104295.37,0,0,1815.9482 +1018,1252,2198,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.6102724,8.7628241,0,0,0,-959.99182,0,-9,-9,2021,9,0,60,54,1,0,0,11.413902,11.413902,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.82,45.53,-9,-9,8.333333333333334,1,1,0,0,3,7,5,1,987,634914.69,228802.08,301868.25,0,0,0,2373.1885 +1019,1253,2199,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.5527411,8.1380348,0,0,0,-1013.4211,0,-9,-9,2021,17,5,38,37,1,5,0,15.811683,15.811683,.05,.05,0,0,0,0,0,0,0,0,0,2.312922,0,30.94,61.65,-9,-9,5,1,1,0,0,8,6,5,0,376,59313.355,21978.6,0,0,0,0,2285.9204 +1020,1254,2200,-9,2201,-9,1,0,36,0,0,0,2,2,-9,0,5,8.0937424,7.9736447,0,0,0,-1013.0667,0,3,2,2021,6,0,1,38,1,0,0,345.63577,345.63577,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,786,89470.008,28872.563,0,0,0,0,815.66278 +1020,1255,2201,2202,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,8.762682,9.1063347,0,8,-5,-19.81518,0,3,3,2021,8,0,42,47,1,0,0,24.336992,24.336992,0,0,0,0,0,0,0,0,1,1,0,0,0,58.72,51.29,60.91,51.93,8.333333333333334,1,1,0,0,11,5,5,1,770,1697450.3,1275324.4,309869.31,-8285.0869,0,0,3495.6338 +1020,1255,2202,2201,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,0,0,8,5,-60.061676,-9,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.91,51.93,58.72,51.29,8.333333333333334,1,1,0,0,0,5,5,1,770,1697450.3,1275324.4,309869.31,-8285.0869,0,0,3495.6338 +1021,1256,2203,2204,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,-5,-9.990819,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7133961,0,52.9,28.12,62.64,26.9,6.666666666666667,4,5,0,0,0,8,2,1,465,96544.422,210419.47,0,0,0,0,1816.2002 +1021,1256,2204,2203,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.561502,6.4586039,6,5,-1.2246907,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4541988,62.64,26.9,52.9,28.12,6.666666666666667,1,1,0,0,0,8,2,1,465,96544.422,210419.47,0,0,0,0,1816.2002 +1022,1257,2205,2206,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.1890955,7.0382419,48,-6,-135.89809,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6223383,7.294642,40.29,42.14,63.24,42.39,3.333333333333333,1,1,0,0,4,2,3,1,832,670268.38,433675.06,100937.57,0,0,0,3483.4644 +1022,1257,2206,2205,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.2293439,7.3639822,48,6,37.092003,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.74405,7.3566628,63.24,42.39,40.29,42.14,8.333333333333334,1,1,0,0,4,2,3,1,832,670268.38,433675.06,100937.57,0,0,0,3483.4644 +1023,1258,2207,2208,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.1960268,6.9063263,10,3,-54.481323,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.583828,52,47,40.48,24.59,7,1,1,0,0,0,6,2,1,1351,737782,136578.47,614364.5,0,0,0,2276.0732 +1023,1258,2208,2207,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,10,-3,-14.121837,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,8.49687,0,0,1,1,0,0,0,40.48,24.59,52,47,8.333333333333334,1,1,0,0,0,6,2,1,1351,737782,136578.47,614364.5,0,0,0,2276.0732 +1024,1259,2209,2211,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.7545338,9.720088,0,15,-1,24.951065,0,2,2,2021,16,6,50,42,1,6,0,40.363853,40.363853,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.14,64.63,22.58,64.03,8.333333333333334,1,1,0,0,10,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1024,1259,2210,-9,2211,2209,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-777.95856,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1024,1259,2211,2209,-9,-9,1,0,56,0,2,0,1,1,-9,0,4,9.8838882,9.5442581,0,35,1,-57.409508,0,2,1,2021,18,6,17,17,1,6,0,130.29543,130.29543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.58,64.03,33.14,64.63,8.333333333333334,1,1,0,0,10,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1024,1259,2212,-9,2211,2209,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.616,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,1076.75,3221039.5,2956594.3,330804.56,148719.75,0,0,11362.885 +1025,1260,2213,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0393391,6.8327422,0,0,-955.75165,0,3,2,2021,26,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.769464,22.47,48.93,-9,-9,1.666666666666667,1,1,0,1,0,2,2,0,338,28201.752,84239.891,0,0,0,0,1288.9235 +1026,1261,2214,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.7665148,8.0645838,0,0,-1136.1969,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2071891,7.8706117,58.33,47.36,-9,-9,10,1,1,0,0,4,1,4,1,583,794097.63,560435.63,117502.93,0,0,0,2754.1196 +1027,1262,2215,2216,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,5.8943129,6.0629172,4.3460369,20,8,31.218914,0,3,2,2021,27,11,20,10,1,11,0,1.967696,1.967696,.05,.05,0,0,0,0,0,0,1,1,0,6.6081038,4.1300831,38.84,24.41,48.88,46.26,3.333333333333333,1,1,0,0,11,10,4,1,481,405553.38,282522.09,172503.09,0,1103.5148,0,3818.6714 +1027,1262,2216,2215,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1457243,8.4447079,7.3171134,19,-8,-81.694542,0,3,3,2021,11,0,33,40,1,0,0,13.598871,13.598871,.05,.05,0,0,0,0,0,0,1,1,0,.3634266,7.993495,48.88,46.26,38.84,24.41,8.333333333333334,1,1,0,0,11,10,4,1,481,405553.38,282522.09,172503.09,0,1103.5148,0,3818.6714 +1027,1263,2217,-9,2215,2216,1,1,35,0,0,0,1,1,-9,0,4,7.6744471,7.5038238,0,0,0,-959.64606,0,2,2,2021,10,0,30,28,1,0,1,7.5621295,7.5621295,0,0,0,0,0,0,0,0,1,1,0,4.7749519,0,51.24,58.84,-9,-9,5,1,1,0,0,11,10,3,1,1205,-322293.13,0,0,0,0,0,584.94012 +1028,1264,2218,2219,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,6,-8,-20.537256,0,-9,-9,2021,25,9,0,23,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.82,20.07,44.81,37.5,0,1,1,0,0,5,1,3,1,462.5,918676.75,299818.75,474549.81,32505.428,0,0,2719.4463 +1028,1264,2219,2218,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.9227762,7.3933492,6,8,69.613991,0,2,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9865326,8.1783857,44.81,37.5,29.82,20.07,8.333333333333334,1,1,0,0,0,1,3,1,462.5,918676.75,299818.75,474549.81,32505.428,0,0,2719.4463 +1029,1265,2220,2221,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,0,0,0,2,-12,-59.788124,-9,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.92,53.03,52.75,41.81,5,1,1,0,0,8,8,5,1,242,747795.63,336875.56,341187.03,12075.818,801.5127,4983.1978,4674.2319 +1029,1265,2221,2220,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.4528675,9.3728142,0,2,12,-75.359085,-9,3,3,2021,7,0,60,0,1,0,0,28.699863,28.699863,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.75,41.81,37.92,53.03,8.333333333333334,1,1,0,0,12,8,5,1,242,747795.63,336875.56,341187.03,12075.818,801.5127,4983.1978,4674.2319 +1029,1266,2222,-9,2220,2221,1,0,22,0,0,0,2,2,-9,0,3,8.369112,8.2082634,0,0,0,-1093.3075,0,2,3,2021,7,0,40,42,1,0,1,10.236404,10.236404,.05,.05,0,0,0,0,0,0,1,1,0,3.8733225,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,8,4,1,357,-128728.8,19111.072,0,0,0,0,839.39056 +1030,1267,2223,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,6.5743656,6.4025302,0,0,0,-898.02789,0,2,1,2021,5,0,40,40,1,0,0,2.1188271,2.1188271,0,0,0,0,0,0,0,0,0,0,0,4.9053316,0,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,10,10,2,0,411,1246170.8,244492.3,491609.56,0,0,0,213.73378 +1031,1268,2224,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,2,0,0,0,0,0,-963.78033,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.78,60.7,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,288,36156.098,0,0,0,0,0,1990.5375 +1032,1269,2225,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.2416968,6.4840517,3.8165584,0,0,-1012.924,0,2,3,2021,6,0,1,2,1,0,0,73.821114,73.821114,0,0,0,0,0,0,0,0,1,1,0,3.6695771,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,3,13,2,1,565,1692.4833,0,0,0,1273.1051,-1182.1597,1674.9968 +1032,1270,2226,-9,2225,-9,1,0,20,0,1,1,2,0,-9,0,3,0,0,0,0,0,-854.07843,-9,2,-9,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.87,49.76,-9,-9,5,1,1,0,0,5,13,1,1,849,119327.74,0,0,0,0,0,0 +1032,1271,2227,-9,2225,-9,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-993.49481,-9,2,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,3,13,1,1,409,43621.43,0,0,0,0,0,1031.0194 +1033,1272,2228,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.2132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.49,43.94,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,447,76571.188,0,0,0,0,0,788.8476 +1034,1273,2229,-9,2232,2231,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5237,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1034,1273,2230,-9,2232,2231,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.1473,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1034,1273,2231,2232,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,8.9224949,9.1626883,6.1077776,12,5,50.021999,0,2,2,2021,7,0,80,45,1,0,0,12.864766,12.864766,.05,.05,0,0,0,0,0,0,1,1,0,6.1827068,0,55.2,49.4,48.87,58.55,6.666666666666667,1,1,0,0,13,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1034,1273,2232,2231,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.8411064,8.5239162,0,12,-5,-8.0263453,0,-9,-9,2021,8,0,60,50,1,0,0,11.795821,11.795821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,55.2,49.4,8.333333333333334,1,1,0,0,15,2,5,1,671.5,1076265.8,731361.19,423981.06,129467.8,0,0,5208.4902 +1035,1274,2233,-9,2234,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-913.02704,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,2,1,3105.5,-34732.133,45235.707,0,0,0,0,1410.3752 +1035,1274,2234,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,6.7930665,7.1567178,6.6943913,0,0,-878.573,0,2,2,2021,10,1,21,16,1,1,0,4.6929955,4.6929955,.05,.05,0,0,0,0,0,0,1,1,0,6.7878914,0,50.43,53.69,-9,-9,8.333333333333334,1,1,0,0,6,10,2,1,3105.5,-34732.133,45235.707,0,0,0,0,1410.3752 +1036,1275,2235,2236,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,9.6522121,9.5414734,0,9,0,-105.16901,0,-9,-9,2021,11,0,20,50,1,1,0,77.73613,77.73613,.05,.05,0,0,0,0,0,0,0,0,0,6.0168786,0,50,50,57.16,56.15,7,2,3,0,0,1,4,5,1,547.5,451015.38,345012.78,169918.73,10883.67,0,385.39856,6643.0469 +1036,1275,2236,2235,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,24,0,-105.33227,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,50,8.333333333333334,2,3,0,0,1,4,5,1,547.5,451015.38,345012.78,169918.73,10883.67,0,385.39856,6643.0469 +1036,1276,2237,-9,2236,2235,1,1,32,0,0,0,1,1,-9,0,4,8.3067179,8.1171093,0,0,0,-940.27075,0,2,3,2021,6,0,35,41,1,0,1,12.431566,12.431566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,4,4,1,250,35027.066,12180.919,0,0,869.55042,1123.4828,1225.5671 +1036,1277,2238,-9,2236,2235,1,1,27,0,0,0,1,1,-9,0,4,8.4244299,8.3459187,0,0,0,-982.12762,0,2,3,2021,6,0,37,39,1,0,1,16.276695,16.276695,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,4,4,1,307,-177596.14,-81719.945,0,0,0,0,1171.3193 +1037,1278,2239,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.1685219,9.3244448,0,0,0,-1052.8383,-9,-9,-9,2021,6,0,35,0,1,0,0,28.743511,28.743511,0,0,.05,0,0,0,0,0,1,1,0,3.785147,0,61.3,40.51,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,1845,838281.56,515472.78,266764.81,0,0,0,3464.3655 +1038,1279,2240,2241,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,0,0,9,21,-124.99708,0,-9,3,2021,11,2,0,48,4,2,0,0,0,0,0,0,1,0,2.0879304,0,0,1,1,0,0,0,51.78,25.17,57.06,57.76,6.666666666666667,1,1,0,0,12,7,4,1,987,2198810.8,729944,735246.63,0,0,0,1747.6548 +1038,1279,2241,2240,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6020966,8.2669172,0,9,-21,142.51369,0,-9,-9,2021,7,0,40,0,1,0,0,12.292075,12.292075,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.78,25.17,10,1,1,0,0,1,7,4,1,987,2198810.8,729944,735246.63,0,0,0,1747.6548 +1039,1280,2242,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-967.32666,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.17,23.63,-9,-9,5,1,1,0,0,4,1,1,0,1052,-177757.98,0,0,0,0,1336.9738,1196.4692 +1039,1281,2243,-9,2242,-9,1,0,37,0,0,0,1,1,-9,0,3,8.229248,8.1807137,0,0,0,-1031.4332,0,3,1,2021,11,0,60,60,1,0,0,8.4758148,8.4758148,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,226,181142.08,-15304.016,247014.89,141295.23,0,0,1180.6151 +1040,1282,2244,2245,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.0277781,5.9189539,47,1,-85.39399,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8239309,0,0,1,1,0,0,6.0651641,64.40000000000001,23.23,52,47,10,1,1,0,0,0,2,3,1,1082,660461.5,470384.94,244196.38,0,0,0,3072.1353 +1040,1282,2245,2244,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9548712,7.8205242,7,-1,-62.076099,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7869439,7.7357912,52,47,64.40000000000001,23.23,7,1,1,0,0,0,2,3,1,1082,660461.5,470384.94,244196.38,0,0,0,3072.1353 +1041,1283,2246,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.045608,6.853159,0,0,-1059.8555,0,-9,-9,2021,13,1,0,18,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.079288,6.9558783,49.05,50.32,-9,-9,3.333333333333333,1,1,0,0,14,6,2,1,2958,83914.867,0,6577.9639,0,3064.8733,0,1154.8396 +1041,1284,2247,-9,2246,-9,1,1,23,0,0,0,2,2,-9,0,2,8.4269524,8.1224937,0,0,0,-1100.3082,0,2,-9,2021,17,5,40,45,1,5,1,12.452194,12.452194,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.16,52.06,-9,-9,5,1,1,0,0,8,6,4,1,1519,-135340.95,43086.637,0,0,6687.2461,1851.3497,2013.7609 +1042,1285,2248,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,6.8013773,6.771214,0,0,-1025.6302,-9,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.562458,6.4385829,45.82,54.57,-9,-9,1.666666666666667,1,1,0,0,11,6,2,0,217,147684.16,0,148815.59,47423.887,0,0,1554.132 +1043,1286,2249,2250,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.442275,6.6458516,0,19,0,43.056786,0,2,2,2021,9,0,35,34,1,0,0,2.1894426,2.1894426,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.81,43.45,44.19,58.01,6.666666666666667,1,1,0,0,2,13,4,1,1120.5,426312.56,385319,104158.66,0,0,0,1480.4547 +1043,1286,2250,2249,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.0917969,8.3870926,0,21,0,210.3284,0,2,3,2021,12,0,48,40,1,0,0,8.095232,8.095232,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,54.81,43.45,5,1,1,0,0,11,13,4,1,1120.5,426312.56,385319,104158.66,0,0,0,1480.4547 +1043,1287,2251,-9,2249,2250,1,1,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-1083.5139,-9,1,2,2021,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.08,52.64,-9,-9,6.666666666666667,1,1,1,1,0,13,1,1,2349,-30185.096,0,0,0,0,0,0 +1044,1288,2252,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.2246971,7.4376779,0,0,-1033.0028,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3558645,62.33,22.82,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,310,808779.63,368005.38,232963.25,0,0,-31.518225,1751.3829 +1045,1289,2253,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.2359943,8.0037575,5.7086921,0,0,-1052.5641,0,-9,-9,2021,11,3,34,37,1,3,0,9.6578445,9.6578445,0,0,0,0,0,0,0,0,1,0,1,5.4585881,0,25.79,65.03,-9,-9,6.666666666666667,1,1,0,0,10,5,3,0,1459,143067.44,-55142.746,195496.73,124621.85,0,0,2034.1277 +1046,1290,2254,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.9103,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,52.95,-9,-9,5,1,1,0,0,0,8,1,0,415,0,0,0,0,0,0,1117.5452 +1047,1291,2255,-9,2257,2258,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6276,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1047,1291,2256,-9,2257,2258,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.07593,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1047,1291,2257,2258,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.7135677,8.3358335,0,8,-6,13.313126,0,2,1,2021,24,10,38,40,1,10,0,17.545853,17.545853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.66,47.81,54.2,57.49,6.666666666666667,1,1,0,0,9,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1047,1291,2258,2257,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.5795431,8.7932234,0,8,6,6.4309888,0,-9,-9,2021,10,1,40,45,1,1,0,21.030682,21.030682,.05,.05,0,0,0,0,0,0,1,1,0,1.0100158,0,54.2,57.49,42.66,47.81,8.333333333333334,1,1,0,0,9,5,5,1,2017.75,333734.53,284951.5,174142.17,116076.34,22016.639,4648.959,3614.0615 +1048,1292,2259,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,4.7843757,4.5528269,0,0,-786.46179,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9566369,4.8871102,60.12,54.8,-9,-9,10,1,1,0,0,12,10,2,1,748,183095.69,32524.871,59351.879,0,0,0,323.75473 +1049,1293,2260,-9,2261,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-985.84308,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,0,2448.5,-80768.422,-30538.604,0,0,0,0,1912.0206 +1049,1293,2261,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0170274,7.7561064,6.7732568,0,0,-916.74762,0,2,1,2021,13,1,20,22,1,1,0,6.2872005,6.2872005,.05,.05,0,0,0,0,0,0,1,1,0,6.908133,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,1,10,9,3,0,2448.5,-80768.422,-30538.604,0,0,0,0,1912.0206 +1049,1294,2262,-9,2261,-9,1,0,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-901.50372,1,2,-9,2021,6,1,0,25,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,3,9,1,0,1337,-82897.484,0,0,0,4447.001,0,257.96268 +1050,1295,2263,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.66248,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73761964,0,50,48,-9,-9,7,2,3,0,0,0,4,1,1,1304,20744.064,0,0,0,1579.2021,0,875.88239 +1050,1296,2264,-9,2263,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1514254,8.3267345,0,0,0,-924.01984,0,3,-9,2021,11,0,37,37,1,2,1,9.6645641,9.6645641,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,4,4,1,137,199575.05,107993.95,0,0,0,0,1717.332 +1050,1297,2265,-9,2263,-9,1,1,24,0,0,0,2,2,-9,0,4,7.1285629,7.4230533,0,0,0,-1045.7189,0,3,-9,2021,10,0,16,0,1,1,1,9.414072,9.414072,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,4,3,1,399,54878.473,0,0,0,0,0,620.16724 +1051,1298,2266,-9,2268,2267,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1043.8241,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1051,1298,2267,2268,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.0645313,8.0393324,0,15,8,-123.07805,0,2,2,2021,7,0,37,37,1,0,0,12.287138,12.287138,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.47,44.69,51.14,60.45,8.333333333333334,1,1,0,0,5,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1051,1298,2268,2267,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.7172194,8.8947134,0,15,-8,12.01316,0,2,2,2021,11,2,53,70,1,2,0,13.683874,13.683874,0,0,0,0,0,0,0,0,1,1,0,1.8245373,0,51.14,60.45,58.47,44.69,8.333333333333334,1,1,0,0,8,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1051,1298,2269,-9,2268,2267,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.0932,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,9,4,1,788.25,2038527.3,986297.56,572227.38,0,0,0,3428.6282 +1052,1299,2270,2271,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,6.2173142,6.2624302,10,2,27.251572,0,2,-9,2021,3,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,6.5477033,59.43,58.05,59.53,56.44,10,1,1,0,0,12,9,3,1,1242,261777.91,167916.56,0,0,0,5474.6904,1892.0076 +1052,1299,2271,2270,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,8.399847,7.5998726,36,-2,-108.9452,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.445282,7.9045358,59.53,56.44,59.43,58.05,10,1,1,0,0,10,9,3,1,1242,261777.91,167916.56,0,0,0,5474.6904,1892.0076 +1053,1300,2272,2273,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.7315588,7.8407497,0,18,1,-120.89493,0,3,3,2021,9,0,30,39,1,0,0,11.385403,11.385403,0,0,0,0,0,0,0,7,1,1,0,0,0,53.23,47.51,42.69,56.27,1.666666666666667,1,1,0,0,10,9,3,0,695,3787556,539287.31,1171946.8,494121.22,0,0,1053.1118 +1053,1300,2273,2272,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,5.1442757,5.4331827,0,29,-1,82.836952,0,3,3,2021,8,0,50,50,1,0,0,.48010367,.48010367,0,0,0,0,0,0,0,0,1,1,0,0,0,42.69,56.27,53.23,47.51,8.333333333333334,1,1,0,0,10,9,3,0,695,3787556,539287.31,1171946.8,494121.22,0,0,1053.1118 +1054,1301,2274,2275,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,8,-13,-46.867897,0,-9,-9,2021,10,0,0,25,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,57.51,47.91,7,1,1,0,0,0,9,2,1,367.5,132356.69,152481.44,0,0,12962.064,0,1721.4939 +1054,1301,2275,2274,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.7270184,5.6003771,33,13,-31.955961,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2783594,5.8899665,57.51,47.91,52,48,8.333333333333334,1,1,0,0,0,9,2,1,367.5,132356.69,152481.44,0,0,12962.064,0,1721.4939 +1055,1302,2276,2277,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.659081,7.9147177,35,5,-51.596085,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9165206,8.0159903,53.05,53.99,45.68,42.74,8.333333333333334,1,1,0,0,5,10,3,1,1039.5,691825.06,128994.96,166676.63,0,0,0,2736.6646 +1055,1302,2277,2276,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,35,-5,41.959354,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.68,42.74,53.05,53.99,1.666666666666667,1,1,0,0,3,10,3,1,1039.5,691825.06,128994.96,166676.63,0,0,0,2736.6646 +1056,1303,2278,2279,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.4208951,5.3952732,46,-3,61.750874,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1753893,5.5598855,60.29,52.11,59.53,56.44,10,1,1,0,0,9,2,2,1,190.5,314871.81,144519.27,173004.75,0,0,0,2469.1177 +1056,1303,2279,2278,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.5959878,6.5842381,46,3,7.0906806,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4928312,6.6363258,59.53,56.44,60.29,52.11,10,1,1,0,0,8,2,2,1,190.5,314871.81,144519.27,173004.75,0,0,0,2469.1177 +1056,1304,2280,-9,2278,2279,1,1,38,0,0,0,2,2,-9,0,4,7.7978363,7.8067169,0,0,0,-1013.7679,0,3,2,2021,7,0,44,44,1,0,0,5.675602,5.675602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,3,1,1038,-66154.789,104794.3,0,0,7594.271,3143.9155,1611.9781 +1057,1305,2281,2282,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,9.5885267,9.6439743,0,36,2,176.00778,0,2,2,2021,7,0,60,60,1,0,0,27.876181,27.876181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.49,55.09,8.333333333333334,1,1,0,0,9,8,5,1,308,3903057.5,3018941.3,560131.19,0,0,0,20446.555 +1057,1305,2282,2281,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.9515657,7.4085073,36,-2,-40.84507,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8215032,7.5306253,62.49,55.09,60.02,56.42,10,1,1,0,0,6,8,5,1,308,3903057.5,3018941.3,560131.19,0,0,0,20446.555 +1057,1306,2283,-9,2282,2281,1,1,27,0,0,0,1,1,-9,0,4,8.5966244,8.7330275,0,0,0,-1127.3354,0,1,1,2021,9,0,42,40,1,0,1,17.356842,17.356842,.05,.05,0,0,0,0,0,0,1,1,0,1.19566,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,1,462,72962.992,-3138.8137,0,0,-1236.7814,0,1579.5869 +1058,1307,2284,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,4,0,7.363565,7.6808181,0,0,-971.02655,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,10.025268,0,0,1,1,0,0,7.6901927,62.27,45.61,-9,-9,10,1,1,0,0,0,12,3,1,1121,790516.38,172602.58,381633.19,0,0,0,2105.7163 +1059,1308,2285,2286,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,0,8.3214302,8.3223267,2,0,-48.221352,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2413616,8.3225813,59.43,58.05,34.06,55.12,10,1,1,0,0,5,11,4,1,393,306775.38,53535.715,146431.44,28859.285,6717.002,0,3086.3281 +1059,1308,2286,2285,-9,-9,1,0,57,0,0,0,2,2,-9,0,1,0,6.9799147,6.9174976,2,0,104.68138,0,-9,-9,2021,15,4,0,29,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8834915,6.8229365,34.06,55.12,59.43,58.05,10,1,1,0,0,9,11,4,1,393,306775.38,53535.715,146431.44,28859.285,6717.002,0,3086.3281 +1060,1309,2287,-9,2289,2290,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.14081,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1060,1309,2288,-9,2289,2290,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.50708,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1060,1309,2289,2290,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.1198149,8.1284199,0,24,-6,-45.202942,0,2,2,2021,2,0,30,31,1,0,0,11.989222,11.989222,0,0,0,0,0,0,0,0,0,0,0,4.817142,0,63.38,53.47,53,54,10,1,1,0,0,9,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1060,1309,2290,2289,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.1742153,8.9158802,0,24,6,38.029205,0,-9,-9,2021,9,0,40,40,1,1,0,25.296347,25.296347,.05,.05,.05,0,0,0,0,0,0,0,0,3.0621178,0,53,54,63.38,53.47,8,1,1,0,0,1,2,5,1,383.5,1033985.3,657744.56,311852.03,9369.8271,0,0,4642.1855 +1061,1310,2291,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.213294,8.1263008,0,0,0,-1042.8846,0,2,2,2021,7,0,38,39,1,0,0,9.2050991,9.2050991,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,1212,131428.14,-3114.4043,0,0,0,0,1098.1302 +1062,1311,2292,2293,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-2,-75.615166,0,3,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.4,37.36,60.12,54.8,8.333333333333334,1,1,0,0,0,9,3,1,455.5,648593.5,214991.7,357978.94,0,0,0,2881.4766 +1062,1311,2293,2292,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,8.4122343,7.9758725,62,2,39.336697,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3916903,60.12,54.8,53.4,37.36,8.333333333333334,1,1,0,0,0,9,3,1,455.5,648593.5,214991.7,357978.94,0,0,0,2881.4766 +1063,1312,2294,2295,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5363293,6.7456517,52,1,-96.31694,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9156027,6.6786847,52.58,50.04,51.89,33.18,8.333333333333334,1,1,0,0,0,12,2,1,1432.5,364858.25,254721.41,0,0,0,0,2269.8279 +1063,1312,2295,2294,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.2219863,6.624692,52,-1,-156.07722,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2708466,6.5656724,51.89,33.18,52.58,50.04,5,1,1,0,0,6,12,2,1,1432.5,364858.25,254721.41,0,0,0,0,2269.8279 +1064,1313,2296,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-818.49951,0,3,3,2021,28,10,0,36,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,34.63,-9,-9,0,1,1,0,0,10,5,1,0,1226,0,0,0,0,0,0,1488.0656 +1065,1314,2297,2298,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,55,-3,-26.438461,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,55.79,52.62,10,1,1,0,0,0,10,2,1,417.5,457864.75,108173.16,214344.33,0,0,0,1527.6855 +1065,1314,2298,2297,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.4986062,6.8672962,55,3,9.8457966,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6634421,55.79,52.62,62.1,51.16,10,1,1,0,0,0,10,2,1,417.5,457864.75,108173.16,214344.33,0,0,0,1527.6855 +1066,1315,2299,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.3053951,6.4987149,0,0,-1141.2412,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5316525,7.0160408,63.09,47.92,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,981,33986.359,-31144.652,0,0,0,0,1751.682 +1067,1316,2300,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,8.1105614,8.1961317,0,0,-1029.3372,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0330439,54.37,54.8,-9,-9,10,1,1,0,0,0,11,4,1,629,573169.44,474286.94,104028.43,0,0,0,2591.0125 +1068,1317,2301,2302,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,12,-2,0,0,3,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,24.92,35.86,33.66,26.91,5,1,1,0,1,0,13,1,0,672,88688.984,122370.52,0,0,-289.83319,1681.3318,2424.2527 +1068,1317,2302,2301,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,12,2,0,0,2,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,26.91,24.92,35.86,5,1,1,0,0,0,13,1,0,672,88688.984,122370.52,0,0,-289.83319,1681.3318,2424.2527 +1069,1318,2303,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.0057678,7.4786377,0,0,-966.7002,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.361136,50.52,28.16,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,599,338369.5,200782.25,296444.38,0,0,0,2237.7681 +1070,1319,2304,-9,2306,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.7053,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,6,-9,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1070,1319,2305,-9,2306,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.5711,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1070,1319,2306,-9,-9,-9,1,0,27,1,3,0,3,3,-9,1,3,6.7539215,6.451189,0,0,0,-966.54346,0,-9,-9,2021,15,3,12,0,1,3,0,11.031804,11.031804,0,0,0,0,0,0,0,114,1,1,0,0,0,48.7,56.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1070,1319,2307,-9,2306,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.6776,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,2,0,978.25,-28713.035,0,0,0,0,0,1076.9644 +1071,1320,2308,2309,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.320219,9.2123814,0,5,-1,-5.9934936,0,-9,-9,2021,7,0,24,24,1,0,0,52.604488,52.604488,.05,.05,0,0,0,0,0,0,0,0,0,3.311291,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,5,4,5,1,1122.5,158637.39,102777.13,262970.91,197396.25,0,0,6217.2715 +1071,1320,2309,2308,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.1609278,9.0671692,0,5,1,-84.799423,0,1,1,2021,11,0,54,58,1,0,0,19.263441,19.263441,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.79,55.86,1.666666666666667,1,1,0,0,5,4,5,1,1122.5,158637.39,102777.13,262970.91,197396.25,0,0,6217.2715 +1072,1321,2310,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,9.0530128,8.7082939,0,0,0,-1051.8514,0,3,3,2021,5,0,40,40,1,0,0,21.110456,21.110456,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,5,1,1,0,0,7,8,5,0,330,821362.25,154770.48,559954.69,0,0,0,2475.9189 +1072,1322,2311,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,8.5655203,8.4494085,0,0,0,-916.50781,0,2,2,2021,7,0,38,39,1,0,0,17.176331,17.176331,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,7,8,4,0,370,445824.5,264969.22,0,0,0,0,1552.6439 +1073,1323,2312,2313,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.714077,8.7176828,0,2,6,11.58592,0,-9,-9,2021,5,0,60,37,1,0,0,10.451943,10.451943,.05,.05,0,0,0,0,0,0,0,0,0,3.5236104,0,61.29,46.02,56.5,48.33,8.333333333333334,1,1,0,0,1,10,5,0,654.5,932734.13,89654.859,224779.19,56652.152,0,0,4813.769 +1073,1323,2313,2312,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.4812994,8.5123501,0,2,-6,-25.42745,0,1,1,2021,5,0,50,52,1,0,0,10.40256,10.40256,.05,.05,0,0,0,0,0,0,0,0,0,6.9483938,0,56.5,48.33,61.29,46.02,8.333333333333334,1,1,0,0,8,10,5,0,654.5,932734.13,89654.859,224779.19,56652.152,0,0,4813.769 +1074,1324,2314,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1008.2739,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.25,39.66,-9,-9,5,1,1,0,0,0,13,1,0,527,3832.5068,0,0,0,0,0,1457.9293 +1075,1325,2315,-9,2317,2316,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.45258,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1325,2316,2317,-9,-9,1,1,41,0,3,0,2,2,-9,0,5,8.5274782,8.6259041,0,7,2,-128.79465,0,2,2,2021,6,1,41,35,1,1,0,18.091345,18.091345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.69,53.19,33.16,56.54,8.333333333333334,1,1,0,0,9,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1325,2317,2316,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,7.4845433,7.1302805,0,7,-2,-81.546783,0,3,3,2021,14,2,28,27,1,2,0,5.3729358,5.3729358,0,0,0,0,0,0,0,0,1,1,0,0,0,33.16,56.54,32.69,53.19,3.333333333333333,1,1,0,0,9,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1325,2318,-9,2317,2316,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1151.2559,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1061.25,338942.38,80998.969,335395.53,60858.676,0,0,2672.9478 +1075,1326,2319,-9,-9,-9,1,1,70,0,3,0,3,3,-9,0,5,0,7.0422497,6.9406934,0,0,-998.44031,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8882375,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1707,416644.34,167390.28,125012.59,0,0,0,1536.15 +1076,1327,2320,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,3.43379,3.6158779,0,0,-954.60669,-9,2,2,2021,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6899104,0,52.48,55.6,-9,-9,10,1,1,0,0,2,2,2,0,604,30586.953,0,0,0,6553.4409,0,352.0542 +1077,1328,2321,2322,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.0008583,9.1181564,0,10,-3,-22.715469,0,2,2,2021,11,0,35,35,1,0,0,23.921286,23.921286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,2216,3359787.8,1634852.3,1045825.1,0,0,0,4502.9746 +1077,1328,2322,2321,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.8184314,7.7764535,10,3,115.08821,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2281089,7.6940989,57.16,56.15,53.5,51.02,10,1,1,0,0,4,9,5,1,2216,3359787.8,1634852.3,1045825.1,0,0,0,4502.9746 +1078,1329,2323,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-994.427,0,-9,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,.77624726,2.9340007,17.940077,0,1,1,0,0,0,31.27,29.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,68,-80675.953,0,0,0,0,0,1271.7877 +1078,1330,2324,-9,2323,-9,1,1,46,0,0,0,2,2,-9,0,3,8.1031408,8.103754,0,0,0,-945.18115,0,2,2,2021,4,0,45,36,1,0,0,7.1064925,7.1064925,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,1,10,2,4,0,201,87693.531,-3541.5732,85374.398,65645.141,0,0,990.80035 +1079,1331,2325,2326,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,45,-1,-34.55164,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5209413,0,57.16,56.15,52.99,51.28,10,1,1,0,0,5,5,3,1,2231.5,1528316.5,1068269,329899,0,633.04272,0,3117.5593 +1079,1331,2326,2325,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.9125524,8.608696,10,1,50.030499,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1947246,8.3604956,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,2231.5,1528316.5,1068269,329899,0,633.04272,0,3117.5593 +1080,1332,2327,2328,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6670656,8.9370174,0,36,2,39.612045,0,2,2,2021,13,1,47,39,1,1,0,19.284796,19.284796,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,44.84,28.34,6.666666666666667,1,1,0,0,9,5,5,1,545.5,565518.75,384713.06,73335.875,0,0,0,3263.5425 +1080,1332,2328,2327,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.6955295,7.6988945,0,36,-2,62.816418,0,2,2,2021,26,11,35,36,1,11,0,6.7639556,6.7639556,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.84,28.34,51.24,58.84,3.333333333333333,1,1,0,1,9,5,5,1,545.5,565518.75,384713.06,73335.875,0,0,0,3263.5425 +1081,1333,2329,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.319705,6.866291,0,0,0,-789.71606,0,1,1,2021,1,0,12,15,1,0,0,18.949932,18.949932,0,0,0,0,0,0,0,7,0,0,0,4.1219006,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,12,12,3,1,405,1141606.8,546850.13,192047.11,0,0,0,1362.8379 +1082,1334,2330,2331,-9,-9,1,0,30,0,0,0,1,1,-9,0,1,8.5029755,8.5573645,0,2,-4,-15.570979,0,-9,-9,2021,23,10,47,38,1,10,0,12.760447,12.760447,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.99,40.53,49.86,55.31,3.333333333333333,1,1,0,0,6,6,5,1,1172.5,148192.44,77710.5,145678.58,151488.53,1842.587,923.2392,3043.0801 +1082,1334,2331,2330,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.4130106,8.1425571,0,2,4,-87.425392,0,-9,-9,2021,6,0,38,38,1,0,0,11.582922,11.582922,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,32.99,40.53,8.333333333333334,1,1,0,0,1,6,5,1,1172.5,148192.44,77710.5,145678.58,151488.53,1842.587,923.2392,3043.0801 +1083,1335,2332,-9,-9,-9,1,0,28,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1115.3104,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15846103,0,48,52.43,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,556,-93229.703,0,0,0,0,0,1457.7312 +1083,1335,2333,-9,2332,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-888.53583,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,556,-93229.703,0,0,0,0,0,1457.7312 +1084,1336,2334,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1130.3894,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,46.76,-9,-9,6.666666666666667,1,1,0,0,0,6,1,0,465,-27407.434,0,0,0,0,0,1259.9165 +1085,1337,2335,2337,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.9441471,8.8606968,0,16,6,38.789574,0,2,2,2021,19,7,38,47,1,7,0,16.800358,16.800358,.05,.05,0,0,0,0,0,0,0,0,0,1.2756623,0,30.84,61.65,51.83,57.2,8.333333333333334,1,1,0,0,11,9,5,1,1007,302303.63,95471,289810.16,87444.398,0,2875.4514,5884.0117 +1085,1337,2336,-9,2337,2335,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.89575,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1007,302303.63,95471,289810.16,87444.398,0,2875.4514,5884.0117 +1085,1337,2337,2335,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,9.081522,9.2074509,0,15,-6,-4.9895773,0,1,1,2021,16,6,52,50,1,6,0,21.430632,21.430632,0,0,0,0,0,0,0,0,0,0,0,1.2365788,0,51.83,57.2,30.84,61.65,8.333333333333334,1,1,0,0,12,9,5,1,1007,302303.63,95471,289810.16,87444.398,0,2875.4514,5884.0117 +1086,1338,2338,-9,2339,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.6427,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1210.5,154238.73,39847.211,0,0,3524.2371,0,3112.8135 +1086,1338,2339,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,5,6.1223245,6.9378638,6.2677202,0,0,-1099.0438,0,2,2,2021,31,12,38,38,1,12,0,1.209653,1.209653,.05,.05,0,0,0,0,0,0,1,0,1,6.6489186,0,32.09,64.06,-9,-9,3.333333333333333,1,1,0,0,8,9,2,0,1210.5,154238.73,39847.211,0,0,3524.2371,0,3112.8135 +1087,1339,2340,2343,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.5104151,8.6590586,0,22,1,-33.607376,0,2,2,2021,13,2,38,52,1,2,0,24.056326,24.056326,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.54,60.21,45.83,43.87,6.666666666666667,1,1,0,0,11,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1087,1339,2341,-9,2340,2343,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7693,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1087,1339,2342,-9,2340,2343,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.07404,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1087,1339,2343,2340,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.6054745,8.4416552,0,16,-1,103.54679,0,-9,-9,2021,10,0,45,42,1,0,0,15.304152,15.304152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.83,43.87,36.54,60.21,1.666666666666667,1,1,0,0,11,4,5,1,874.5,326690.44,306849.94,286568.5,155003.48,1395.2728,16823.48,4604.5024 +1088,1340,2344,2345,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,56,-3,-52.078796,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4334729,0,58.15,52.91,53,47,10,1,1,0,0,0,9,2,0,476,471774.44,194246.77,285918.31,0,0,0,238.49344 +1088,1340,2345,2344,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.3465867,6.0524492,56,3,91.050301,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8544128,6.2886353,53,47,58.15,52.91,7,1,1,0,0,0,9,2,0,476,471774.44,194246.77,285918.31,0,0,0,238.49344 +1089,1341,2346,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,5,0,5.6772642,5.7025805,0,0,-999.24811,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.5051494,60.02,56.42,-9,-9,10,1,1,0,0,10,2,2,1,509,-35768.609,86756.805,0,0,0,0,584.7373 +1090,1342,2347,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,6.8993468,6.9295616,0,0,0,-949.6795,0,2,2,2021,7,0,30,45,1,0,0,4.3659139,4.3659139,0,0,0,0,0,0,0,42,1,1,0,0,0,53.38,47.51,-9,-9,5,1,1,0,0,3,2,2,0,1135,125989.74,0,112756.53,0,0,0,2074.2844 +1091,1343,2348,-9,2349,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.28003,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,884.5,140498.09,14482.748,0,0,0,0,2434.7527 +1091,1343,2349,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.4653702,8.8820944,6.3424454,0,0,-992.59564,0,2,3,2021,8,0,30,32,1,0,0,18.145359,18.145359,.05,.05,0,0,0,0,0,0,1,1,0,6.5329142,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,884.5,140498.09,14482.748,0,0,0,0,2434.7527 +1092,1344,2350,2351,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.0636444,8.060811,0,1,-2,-8.4124374,-9,3,2,2021,15,4,35,0,1,4,0,9.4644947,9.4644947,0,0,0,0,0,0,0,0,0,0,0,0,0,44,38,51,49,8.333333333333334,3,4,0,0,11,8,4,0,148,872126.88,336269.44,482445.25,0,4855.189,0,2280.6089 +1092,1344,2351,2350,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.6594415,7.5439935,0,1,2,54.747871,-9,-9,-9,2021,10,0,40,0,1,1,0,6.344481,6.344481,.05,.05,.05,0,0,0,0,0,0,0,0,4.5738502,0,51,49,44,38,7,4,4,0,0,1,8,4,0,148,872126.88,336269.44,482445.25,0,4855.189,0,2280.6089 +1093,1345,2352,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,5.7462268,5.5743957,0,0,0,-915.78333,0,3,3,2021,7,0,40,60,1,0,0,.74889654,.74889654,0,0,0,0,0,0,0,2,0,0,0,7.112576,0,52.77,55.33,-9,-9,10,1,1,0,0,15,4,2,1,238,24276.887,-28855.104,0,0,0,0,58.697376 +1094,1346,2353,2354,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,7.2404523,7.8621516,6.7527122,50,-4,84.855026,0,3,3,2021,8,0,20,20,1,0,0,6.3890176,6.3890176,.05,.05,0,0,0,0,0,0,1,1,0,4.0991874,6.4740167,46.57,48.65,50.17,53.95,5,1,1,0,0,11,10,4,1,498.5,-14494.82,72356.406,0,0,4009.8633,3709.21,3611.1309 +1094,1346,2354,2353,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,7.7765489,7.5754843,0,50,4,-161.92104,0,3,3,2021,8,0,45,45,1,0,0,4.711668,4.711668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.17,53.95,46.57,48.65,5,1,1,0,1,12,10,4,1,498.5,-14494.82,72356.406,0,0,4009.8633,3709.21,3611.1309 +1095,1347,2355,-9,2357,2358,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.9766,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1095,1347,2356,-9,2357,2358,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.95721,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1095,1347,2357,2358,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.9363842,8.9512224,0,7,-5,-16.38785,-9,-9,-9,2021,7,0,40,0,1,0,0,20.725794,20.725794,.05,.05,0,0,0,0,0,0,1,1,0,4.6033068,0,59.7,53.75,47.44,56.39,8.333333333333334,1,1,0,0,6,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1095,1347,2358,2357,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.2738867,9.0958328,0,7,5,-49.895748,0,2,1,2021,15,4,55,48,1,4,0,23.479902,23.479902,.05,.05,0,0,0,0,0,0,1,1,0,.34650421,0,47.44,56.39,59.7,53.75,8.333333333333334,1,1,0,0,8,9,5,1,435.5,860277.19,296641.44,451496.19,176833.3,0,0,6733.3472 +1096,1348,2359,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6464605,7.6123886,0,0,-1074.929,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8076525,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,991,1085915.8,414854.63,441317.63,0,-531.29547,0,1253.5612 +1097,1349,2360,-9,2363,2362,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.7332,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1097,1349,2361,-9,2363,2362,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-891.16449,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1097,1349,2362,2363,-9,-9,1,1,53,1,2,0,2,2,-9,0,4,8.5203009,8.2539654,0,10,12,5.6829867,0,1,2,2021,11,0,53,50,1,0,0,10.455004,10.455004,.05,.05,0,0,0,0,0,0,1,1,0,6.5324774,0,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,12,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1097,1349,2363,2362,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,7.4941535,7.2329612,0,10,-12,-18.806824,0,2,2,2021,8,1,18,13,1,1,0,9.9521742,9.9521742,0,0,0,0,0,0,0,0,1,1,0,.54999125,0,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,12,5,4,1,781.25,854835.75,206627.73,218293.39,0,0,1835.0415,3197.8423 +1098,1350,2364,2365,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.8028479,8.8697176,0,8,-6,-158.47713,0,-9,-9,2021,3,0,47,50,1,0,0,14.725419,14.725419,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,54.02,40.03,6.666666666666667,1,1,0,0,9,11,5,1,829,333360.5,181308.19,167635.94,21010.521,3184.2686,0,3614.958 +1098,1350,2365,2364,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1154528,7.9254088,0,8,6,56.71957,0,3,-9,2021,14,2,32,32,1,2,0,11.46863,11.46863,0,0,0,0,0,0,0,0,0,0,0,2.51896,0,54.02,40.03,46.63,59.72,8.333333333333334,1,1,0,0,9,11,5,1,829,333360.5,181308.19,167635.94,21010.521,3184.2686,0,3614.958 +1099,1351,2366,2368,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,6.7171793,6.8827996,21,29,8.3926315,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3648639,6.5461087,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,5,9,3,1,916.66669,854294.19,103660.02,782676.56,0,0,0,2734.813 +1099,1351,2367,-9,2368,2366,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1020.9266,-9,2,2,2021,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,57.73,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,916.66669,854294.19,103660.02,782676.56,0,0,0,2734.813 +1099,1351,2368,2366,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,8.1536798,8.2732048,0,21,-29,-107.39926,0,3,2,2021,9,0,30,24,1,0,0,12.432348,12.432348,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.79,55.86,8.333333333333334,1,1,0,0,8,9,3,1,916.66669,854294.19,103660.02,782676.56,0,0,0,2734.813 +1100,1352,2369,-9,2373,2371,1,1,17,0,3,0,2,2,1,0,1,0,0,0,0,0,-1012.764,-9,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.19,42.84,-9,-9,5,1,1,1,0,0,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2370,-9,2373,2371,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-917.60913,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2371,2373,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,8.6367702,8.5417681,0,12,-4,-35.685192,0,3,3,2021,13,1,46,47,1,1,0,13.691612,13.691612,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.1,51.14,66.98,25.65,5,1,1,0,0,10,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2372,-9,2373,2371,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-877.95245,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1352,2373,2371,-9,-9,1,0,53,0,3,0,2,2,-9,0,3,8.4326038,8.3998203,5.8291311,18,4,-56.568394,0,1,3,2021,4,0,38,61,1,0,0,18.03266,18.03266,0,0,0,0,0,0,0,7,1,1,0,6.5114698,0,66.98,25.65,36.1,51.14,8.333333333333334,1,1,0,0,8,7,4,0,954,741623.75,235031.89,587867,159288.89,5310.1685,0,3525.771 +1100,1353,2374,2375,-9,-9,1,0,21,0,3,0,2,2,-9,0,3,7.9637542,8.2414646,0,2,1,-69.199051,0,-9,-9,2021,27,11,55,52,1,11,0,8.1096506,8.1096506,0,0,0,0,0,0,0,0,1,1,0,0,0,17.15,56.96,51.83,57.2,6.666666666666667,1,1,0,0,2,7,3,0,1252.5,262619.66,72898.344,500369.5,219084.56,5411.7563,0,2961.988 +1100,1353,2375,2374,2373,2371,1,1,20,0,3,0,2,2,-9,0,4,8.0225325,8.4284592,0,2,-1,-12.30931,0,2,2,2021,8,0,50,48,1,0,0,9.6776953,9.6776953,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,17.15,56.96,10,1,1,0,0,3,7,3,0,1252.5,262619.66,72898.344,500369.5,219084.56,5411.7563,0,2961.988 +1100,1354,2376,-9,2377,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5085,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1639.5,-48519.648,0,0,0,-1293.9352,-432.50494,671.42621 +1100,1354,2377,-9,2373,2371,1,0,27,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1092.033,0,2,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.03,55.1,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,1639.5,-48519.648,0,0,0,-1293.9352,-432.50494,671.42621 +1101,1355,2378,2379,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.2027521,8.2816391,0,1,-4,-16.957085,-9,-9,-9,2021,6,0,38,0,1,0,0,10.469761,10.469761,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,51.73,58.82,10,1,1,0,0,3,5,5,1,2452.5,204409.84,129209.76,104487.8,86486.016,13532.012,0,3780.0498 +1101,1355,2379,2378,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.7562819,8.9755144,0,1,4,54.335876,-9,-9,-9,2021,9,1,50,0,1,1,0,21.358707,21.358707,.05,.05,0,0,0,0,0,0,0,0,0,4.9935617,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,11,5,5,1,2452.5,204409.84,129209.76,104487.8,86486.016,13532.012,0,3780.0498 +1102,1356,2380,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.3247166,8.2430115,0,0,0,-1044.5023,0,2,2,2021,13,2,40,44,1,2,0,9.3621464,9.3621464,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,7,12,4,0,1807,104244.88,64044.238,0,0,6206.1719,0,1142.0863 +1103,1357,2381,2382,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5146227,7.1380081,2.8868089,13,-1,118.53932,0,-9,-9,2021,9,0,18,18,1,0,0,10.650044,10.650044,0,0,0,0,0,0,0,0,0,0,0,2.9392362,2.7166917,47.53,45.46,54.89,46.52,8.333333333333334,1,1,0,0,12,5,4,1,1076,1418413.3,599039,246629.67,173149.31,0,0,2780.9531 +1103,1357,2382,2381,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.7502131,8.2950525,6.7248244,13,1,-62.10804,0,3,2,2021,10,0,32,32,1,0,0,10.466331,10.466331,0,0,0,0,0,0,0,0,0,0,0,1.4328603,6.7456913,54.89,46.52,47.53,45.46,8.333333333333334,1,1,0,0,11,5,4,1,1076,1418413.3,599039,246629.67,173149.31,0,0,2780.9531 +1104,1358,2383,2384,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.6703806,7.6864023,44,0,32.122879,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.779459,57.31,50.61,56.18,53.85,8.333333333333334,1,1,0,0,8,7,3,1,679,1991346.4,162148.11,414401.13,0,0,0,2527.0757 +1104,1358,2384,2383,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,44,0,-43.504581,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,57.31,50.61,8.333333333333334,1,1,0,0,5,7,3,1,679,1991346.4,162148.11,414401.13,0,0,0,2527.0757 +1105,1359,2385,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.5451293,6.0328083,0,0,-1050.0627,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3459297,5.9591942,51.24,58.84,-9,-9,10,1,1,0,0,0,4,2,0,440,519048.06,223964.77,275027.88,0,0,0,1630.1404 +1106,1360,2386,2387,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,3.9442532,4.241498,68,0,-2.1025753,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,0,1,4.2380223,3.9471781,45.74,40.98,53,44,6.666666666666667,1,1,0,0,9,5,2,1,248,361789,-43642.926,242139.66,0,0,0,1605.9957 +1106,1360,2387,2386,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,4.2454252,4.1101847,67,0,13.80894,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,4.834867,4.3236718,53,44,45.74,40.98,8,1,1,0,0,6,5,2,1,248,361789,-43642.926,242139.66,0,0,0,1605.9957 +1107,1361,2388,2389,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,48,0,0,0,2,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,22.26708,0,0,1,1,0,0,0,63.89,45.4,63.58,29.16,10,2,3,0,0,0,8,1,1,595.5,-59950.352,0,0,0,507.30566,0,973.39575 +1107,1361,2389,2388,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,0,0,48,9,0,0,3,2,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.58,29.16,63.89,45.4,8.333333333333334,2,3,0,0,0,8,1,1,595.5,-59950.352,0,0,0,507.30566,0,973.39575 +1108,1362,2390,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.1085382,6.9232893,0,0,-952.63226,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5642679,6.8825083,64.84,37.66,-9,-9,10,1,1,0,0,1,13,2,1,797,188962.52,45896.742,0,0,0,0,830.51691 +1109,1363,2391,2392,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7053595,8.4406586,0,2,1,-24.978619,0,2,2,2021,15,4,60,60,1,4,0,8.2471371,8.2471371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,24.66,36.37,8.333333333333334,1,1,0,0,11,4,5,1,524,215404.31,-22289.172,263546.84,200593.34,0,0,3596.1953 +1109,1363,2392,2391,-9,-9,1,1,27,0,0,0,1,1,-9,0,1,8.4981737,8.6780939,0,2,-1,-54.846264,0,-9,-9,2021,27,9,37,37,1,9,0,15.14756,15.14756,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.66,36.37,41.06,62.04,1.666666666666667,1,1,0,0,3,4,5,1,524,215404.31,-22289.172,263546.84,200593.34,0,0,3596.1953 +1110,1364,2393,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.1687336,8.0424728,0,0,0,-953.22327,0,1,2,2021,6,0,39,37,1,0,0,8.996829,8.996829,.05,.05,0,0,0,0,0,0,0,0,0,6.3023686,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,1334,-142957.84,-46002.086,0,0,0,0,894.4137 +1110,1365,2394,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-999.07025,-9,-9,-9,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.31,49.75,-9,-9,3.333333333333333,1,1,1,0,0,5,1,1,449,-110541.08,-38706.793,0,0,0,0,0 +1111,1366,2395,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,4.814126,4.8302913,0,0,-999.97552,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6990962,0,56.89,50.73,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,2011,192776.59,91051.773,295156.06,0,0,0,442.98221 +1112,1367,2396,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.3531561,8.3390026,0,0,0,-1029.7159,0,-9,-9,2021,4,0,40,45,1,0,0,11.583104,11.583104,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,343,124159.76,0,0,0,0,0,1839.1532 +1113,1368,2397,-9,-9,-9,1,1,29,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1061.0646,0,-9,2,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.65,36.16,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,682,23330.57,0,0,0,0,0,853.15796 +1113,1369,2398,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.4046774,7.6809349,0,0,0,-1056.2196,0,3,3,2021,14,2,32,30,1,2,0,6.9040713,6.9040713,.05,.05,0,0,0,0,0,7,1,1,0,2.9146235,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,597,-7981.3213,15912.838,0,0,0,0,-170.58289 +1114,1370,2399,2400,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,8.4319086,8.2966337,0,1,0,42.60947,0,2,2,2021,8,0,38,38,1,0,0,9.864193,9.864193,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,6,5,0,143.5,227409.19,32453.664,132784.52,110798.69,0,0,3321.2065 +1114,1370,2400,2399,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.4446745,8.3355389,0,1,0,41.916355,-9,-9,-9,2021,8,1,51,0,1,1,0,10.77933,10.77933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,1,6,5,0,143.5,227409.19,32453.664,132784.52,110798.69,0,0,3321.2065 +1115,1371,2401,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1081.806,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3250945,0,50,49,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,1087,150521.59,0,0,0,0,830.91504,1810.4924 +1116,1372,2402,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,9.3587112,9.5686951,0,0,0,-963.75928,0,2,2,2021,8,0,55,50,1,0,0,41.217983,41.217983,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,292,229354.86,52577.504,0,0,0,-687.81415,4618.0728 +1117,1373,2403,2404,-9,-9,1,1,44,0,1,0,1,1,-9,0,2,7.4542122,7.529129,0,8,-8,44.492878,0,3,2,2021,11,0,37,38,1,0,0,5.9027495,5.9027495,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.69,44.53,54.2,57.49,6.666666666666667,1,1,0,0,10,12,4,1,725.33331,657228.25,537132.63,27580,64224.176,0,0,2334.9697 +1117,1373,2404,2403,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,8.0369196,8.1776667,0,8,8,-32.877922,0,-9,-9,2021,11,0,35,35,1,0,0,12.550624,12.550624,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47.69,44.53,8.333333333333334,1,1,0,0,10,12,4,1,725.33331,657228.25,537132.63,27580,64224.176,0,0,2334.9697 +1117,1373,2405,-9,2404,2403,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1077.9614,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,725.33331,657228.25,537132.63,27580,64224.176,0,0,2334.9697 +1118,1374,2406,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2139568,8.4122343,7.1089044,0,0,-1014.5327,0,2,2,2021,10,0,29,30,1,0,0,14.938886,14.938886,0,0,0,0,0,0,0,0,1,1,0,5.7090774,6.6071963,47.83,55.12,-9,-9,6.666666666666667,1,1,0,0,6,1,5,1,164,431554.25,276080,356491.69,117540.32,0,0,2242.7712 +1119,1375,2407,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.1303124,7.2985792,0,0,-1035.2255,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.5144157,0,16.769951,0,1,1,0,4.8999119,7.1405048,53.7,28.99,-9,-9,5,1,1,0,0,0,8,3,1,568,296443.38,114226.58,221808.69,0,0,0,368.18848 +1119,1376,2408,2409,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.5816216,7.7422934,19,6,-117.13626,0,2,2,2021,5,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1225929,7.6971421,53.04,39.85,44.74,48.37,8.333333333333334,4,2,0,0,8,8,5,1,1710,2846987.3,1692230.5,633674.13,0,0,0,4280.2285 +1119,1376,2409,2408,2407,-9,1,0,54,0,0,0,1,1,-9,0,3,9.0494061,9.2369289,0,19,-6,53.970352,0,2,-9,2021,12,3,30,35,1,3,0,35.737965,35.737965,0,0,0,0,0,0,0,2,1,1,0,5.3506455,0,44.74,48.37,53.04,39.85,3.333333333333333,1,1,0,0,13,8,5,1,1710,2846987.3,1692230.5,633674.13,0,0,0,4280.2285 +1120,1377,2410,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1013.3289,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,11.812781,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,2167,27186.078,0,0,0,0,0,337.10129 +1120,1378,2411,-9,2410,-9,1,0,50,0,0,0,1,1,-9,0,3,8.0880289,8.5309639,0,0,0,-922.19781,0,3,3,2021,12,0,37,37,1,0,0,15.315416,15.315416,.05,.05,0,0,0,0,0,7,1,1,0,0,0,56.85,37.23,-9,-9,6.666666666666667,1,1,0,0,6,13,4,1,190,563013.06,401822.03,191036.3,78190.953,0,-352.79736,322.58945 +1120,1379,2412,-9,2411,-9,1,0,21,0,0,0,1,1,-9,1,1,8.0315981,7.7389569,0,0,0,-933.55731,-9,1,-9,2021,17,5,39,0,1,5,1,8.1596069,8.1596069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.67,21.04,-9,-9,3.333333333333333,1,1,0,0,6,13,4,1,488,-40697.957,-138480.98,0,0,0,0,1872.1294 +1121,1380,2413,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1063.5161,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,13,1,0,874,183716.31,-44474.07,192232.52,0,0,0,901.91589 +1121,1381,2414,-9,2413,-9,1,0,20,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.58661,0,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,-9,-9,6.666666666666667,4,5,1,1,0,13,1,0,475,-51450.879,0,0,0,0,0,437.67133 +1121,1382,2415,-9,-9,-9,1,0,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1061.0287,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,1,1,0,13,1,0,772,-393.07379,0,0,0,0,0,-51.8344 +1122,1383,2416,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.2582569,7.8499999,0,0,-870.22278,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8076086,8.2587862,56.75,36.33,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,808,937172.38,542278.06,158522.08,0,0,0,1803.1561 +1123,1384,2417,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1101.108,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,698,42193.531,0,0,0,0,0,885.39648 +1124,1385,2418,2419,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.8539953,7.7378693,0,40,-5,77.54731,0,2,2,2021,6,0,35,34,1,0,0,7.9067407,7.9067407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,47.26,54.06,8.333333333333334,1,1,0,0,10,5,4,1,950.5,566417.44,269315.81,257839.94,0,0,0,3242.0745 +1124,1385,2419,2418,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.903532,8.3116045,6.636745,40,5,-123.5187,0,3,3,2021,12,2,38,37,1,2,0,8.4604445,8.4604445,.05,.05,0,0,0,0,0,0,0,0,0,5.5108361,6.624536,47.26,54.06,58.32,50.22,6.666666666666667,1,1,0,0,10,5,4,1,950.5,566417.44,269315.81,257839.94,0,0,0,3242.0745 +1125,1386,2420,2421,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,7.9922037,8.2190456,0,10,4,91.380684,0,3,3,2021,13,1,37,45,1,1,0,10.6835,10.6835,0,0,0,0,0,0,0,0,0,0,0,0,0,41.4,47.36,44.36,54.04,1.666666666666667,1,1,0,0,13,7,5,1,1383.5,89979.352,73580.484,0,0,0,0,2397.7107 +1125,1386,2421,2420,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.3332806,8.5069857,0,10,-4,130.14177,0,2,2,2021,11,0,40,45,1,0,0,13.974953,13.974953,0,0,0,0,0,0,0,0,0,0,0,0,0,44.36,54.04,41.4,47.36,3.333333333333333,1,1,0,0,13,7,5,1,1383.5,89979.352,73580.484,0,0,0,0,2397.7107 +1126,1387,2422,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,7.3345861,7.5294476,0,0,-979.47223,0,3,3,2021,25,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.546555,28.52,41.13,-9,-9,6.666666666666667,1,1,0,0,0,12,3,0,260,290279.06,231352,158850.61,0,0,0,1599.9374 +1127,1388,2423,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.8146172,7.7807693,0,0,0,-1007.8499,0,2,2,2021,11,0,35,37,1,0,0,9.0833368,9.0833368,0,0,0,0,0,0,0,2,1,1,0,0,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,6,7,3,0,335,-146536.44,0,0,0,0,0,1249.7089 +1128,1389,2424,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.0003419,6.5882916,0,0,-992.76575,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9075875,37.39,37.58,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,618,170405.17,149527.83,0,0,0,0,1730.7253 +1129,1390,2425,2426,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.8529501,8.6829243,0,2,-5,-90.789879,0,-9,-9,2021,12,1,42,0,1,1,0,19.983376,19.983376,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.58,62.16,51.14,60.45,6.666666666666667,1,1,0,0,2,10,5,1,757,263631.81,37839.023,534663.5,263701.13,3560.7244,0,3816.3442 +1129,1390,2426,2425,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.0238256,7.8711114,0,2,5,95.533928,0,-9,-9,2021,10,0,40,40,1,0,0,10.019696,10.019696,.05,.05,0,0,0,0,0,0,0,0,0,5.9159989,0,51.14,60.45,26.58,62.16,6.666666666666667,1,1,0,0,7,10,5,1,757,263631.81,37839.023,534663.5,263701.13,3560.7244,0,3816.3442 +1129,1391,2427,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.0138636,8.1868687,0,0,0,-966.10016,0,-9,-9,2021,20,7,40,40,1,7,0,9.2398396,9.2398396,0,0,0,0,0,0,0,0,0,0,0,1.7276174,0,29.44,52.35,-9,-9,3.333333333333333,1,1,0,0,3,10,4,1,168,20256.176,0,0,0,0,2414.6284,1386.4186 +1130,1392,2428,2430,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.2112856,8.3687773,0,3,9,63.939484,0,2,1,2021,13,3,40,35,1,3,0,9.3471069,9.3471069,0,0,0,0,0,0,0,0,1,1,0,0,0,50.22,52.72,11.52,51.63,8.333333333333334,2,3,0,0,9,10,3,1,432.33334,100344.09,-34082.449,278373.5,150717.14,0,0,2110.6526 +1130,1392,2429,-9,2430,2428,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.0729,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,10,3,1,432.33334,100344.09,-34082.449,278373.5,150717.14,0,0,2110.6526 +1130,1392,2430,2428,-9,-9,1,0,24,1,1,0,2,2,-9,0,3,0,0,0,3,0,-71.299889,0,-9,-9,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.1689954,0,11.52,51.63,50.22,52.72,8.333333333333334,2,3,0,0,0,10,3,1,432.33334,100344.09,-34082.449,278373.5,150717.14,0,0,2110.6526 +1131,1393,2431,-9,2434,2433,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-939.9455,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2432,-9,2434,2433,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.83105,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2433,2434,-9,-9,1,1,67,0,3,0,2,2,-9,0,3,0,0,0,24,25,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,44.95,52.41,6.666666666666667,2,3,0,0,4,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2434,2433,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,0,0,0,24,-25,0,0,3,3,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.95,52.41,57.33,53.46,10,2,3,0,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1393,2435,-9,2434,2433,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.45593,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,7,1,0,611.20001,431639.88,75054.688,227535.08,0,0,0,1087.1095 +1131,1394,2436,-9,2434,2433,1,1,20,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1039.5999,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,10,2,3,1,0,0,7,1,0,1835,0,0,0,0,0,0,0 +1131,1395,2437,-9,2434,2433,1,0,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-922.25037,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.64,57.52,-9,-9,6.666666666666667,2,3,0,0,0,7,1,0,241,-80707.094,0,0,0,0,0,0 +1132,1396,2438,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.9381528,8.1793814,0,0,0,-1072.6901,0,3,2,2021,13,3,30,30,1,3,0,8.7628946,8.7628946,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,47.23,39.35,-9,-9,3.333333333333333,1,1,0,1,13,7,3,1,527,32082.148,-134672.89,0,0,0,0,1514.8717 +1132,1397,2439,-9,2438,-9,1,1,24,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1077.9226,0,2,-9,2021,32,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.22,59.58,-9,-9,1.666666666666667,1,1,1,1,2,7,2,1,531,-107442.38,0,0,0,0,0,-225.90627 +1133,1398,2440,2441,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,7.8262558,7.9395399,0,11,-5,-73.096611,0,3,3,2021,12,0,40,0,1,0,0,5.8652425,5.8652425,.05,.05,0,0,0,0,0,86,1,1,0,0,0,39.58,40.12,54.96,53.17,8.333333333333334,1,1,0,0,1,13,4,0,401,934490.63,763434.88,197013.67,0,11362.602,6188.8838,3155.0537 +1133,1398,2441,2440,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.8778439,8.043272,0,11,5,73.997856,0,3,3,2021,6,0,37,45,1,0,0,7.2419353,7.2419353,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,39.58,40.12,8.333333333333334,1,1,0,0,2,13,4,0,401,934490.63,763434.88,197013.67,0,11362.602,6188.8838,3155.0537 +1133,1399,2442,-9,2440,2441,1,0,25,0,0,0,3,3,-9,0,4,7.8972611,8.0562,0,0,0,-1040.752,0,3,3,2021,6,0,37,39,1,0,1,7.9674544,7.9674544,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,461,90257.18,86979.711,0,0,0,0,1746.0447 +1133,1400,2443,-9,2440,2441,1,1,21,0,0,0,3,3,-9,0,4,7.7362289,8.0327091,0,0,0,-954.34406,0,3,3,2021,6,0,37,40,1,0,1,9.2110901,9.2110901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,2696,199195.28,-92963.805,0,0,0,0,1442.2317 +1133,1401,2444,-9,2440,2441,1,1,20,0,0,0,2,2,-9,0,4,8.1441851,8.0766897,0,0,0,-1044.0889,0,3,3,2021,6,0,44,60,1,0,1,9.674798,9.674798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,383,-33733.016,103090.04,0,0,0,0,1860.4215 +1134,1402,2445,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,5,8.6011391,8.6000271,0,0,0,-884.99683,-9,-9,-9,2021,15,4,46,0,1,4,0,10.356411,10.356411,.05,.05,0,0,0,0,0,0,0,0,0,3.9173784,0,42.19,59.15,-9,-9,8.333333333333334,1,1,0,0,2,8,5,0,350,107988.98,-2154.47,0,0,0,0,1464.4706 +1135,1403,2446,2447,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.190155,9.2106924,0,30,-21,-21.991653,0,3,2,2021,12,0,20,20,1,0,0,51.195496,51.195496,0,0,0,0,0,0,0,0,1,1,0,7.0057187,0,40.82,55.28,55,52,1.666666666666667,1,1,0,0,14,4,5,1,600.5,1983744.8,847339.06,535012.5,0,0,0,9788.7168 +1135,1403,2447,2446,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,9.2621059,9.4987755,0,13,21,81.626228,-9,-9,-9,2021,11,0,30,0,1,0,0,53.068188,53.068188,0,0,0,1,0,19.734253,0,0,1,1,0,0,0,55,52,40.82,55.28,8.333333333333334,1,1,0,0,14,4,5,1,600.5,1983744.8,847339.06,535012.5,0,0,0,9788.7168 +1136,1404,2448,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-940.96844,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,15.025928,0,0,1,1,0,2.7119095,0,57.61,14.33,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1765,75082.047,0,111083.04,0,0,0,544.63281 +1137,1405,2449,2450,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,8.5397243,8.1063375,7,1,-65.650223,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.2025931,8.4273005,57.16,56.15,59.54,46.05,8.333333333333334,1,1,0,0,6,6,5,1,886.5,1119269.5,631726.38,325840.5,0,0,0,5771.4141 +1137,1405,2450,2449,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,9.4404898,9.1889277,6.1476526,7,-1,86.619667,0,2,3,2021,6,0,40,38,1,0,0,25.955906,25.955906,.05,.05,0,0,0,0,0,0,0,0,0,0,6.4120064,59.54,46.05,57.16,56.15,6.666666666666667,4,2,0,0,10,6,5,1,886.5,1119269.5,631726.38,325840.5,0,0,0,5771.4141 +1138,1406,2451,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.0581684,8.1916571,0,0,0,-1059.7994,0,1,2,2021,17,7,39,38,1,7,0,7.9449458,7.9449458,.05,.05,0,0,0,0,0,0,0,0,0,2.0629981,0,35.9,60.41,-9,-9,3.333333333333333,1,1,0,0,12,1,4,1,366,205761.06,227774.41,137823.63,81973.672,0,0,763.6225 +1139,1407,2452,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,2,0,0,0,0,0,-926.17072,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.64,39.37,-9,-9,5,1,1,0,0,8,6,1,1,1144,0,0,0,0,0,0,1553.6865 +1140,1408,2453,2455,-9,-9,1,0,41,1,1,0,1,1,-9,0,4,9.2123785,8.9556484,0,10,2,54.215763,0,2,2,2021,11,1,28,28,1,1,0,29.548988,29.548988,.05,.05,0,0,0,0,0,0,1,1,0,5.5571308,0,54.79,55.86,48.81,59.91,6.666666666666667,1,1,0,0,12,12,5,1,433.33334,170810.7,109997.14,130244.32,86555.914,0,0,4090.1851 +1140,1408,2454,-9,2453,2455,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.1482,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,433.33334,170810.7,109997.14,130244.32,86555.914,0,0,4090.1851 +1140,1408,2455,2453,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.454874,8.2457695,0,10,-2,-260.74515,0,3,2,2021,9,0,38,40,1,0,0,12.021978,12.021978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,54.79,55.86,6.666666666666667,1,1,0,0,10,12,5,1,433.33334,170810.7,109997.14,130244.32,86555.914,0,0,4090.1851 +1141,1409,2456,2457,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,.2311264,.02139526,0,7,15,38.390369,0,-9,-9,2021,6,0,50,60,1,0,0,.00032204165,.00032204165,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,56.85,14.54,8.333333333333334,1,1,0,0,10,8,2,1,589,315640,98138.305,413670.88,144182.55,54155.781,0,-499.52951 +1141,1409,2457,2456,-9,-9,1,0,40,0,0,0,1,1,-9,0,1,0,0,0,15,-15,53.10508,0,1,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.85,14.54,48.28,60.18,5,4,2,0,0,7,8,2,1,589,315640,98138.305,413670.88,144182.55,54155.781,0,-499.52951 +1141,1409,2458,-9,2457,2456,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-951.17657,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8443201,0,48,59,-9,-9,7,4,2,0,0,0,8,2,1,589,315640,98138.305,413670.88,144182.55,54155.781,0,-499.52951 +1141,1410,2459,-9,2457,2456,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.27081,0,1,2,2021,11,0,0,35,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,5,1,0,3,8,1,1,547,6387.1602,0,0,0,0,0,0 +1142,1411,2460,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,6.7527266,6.4257293,0,0,-993.55585,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5632091,6.7364988,53,44,-9,-9,8,1,1,0,0,0,5,2,1,1109,191519.69,167997.22,93473.125,0,0,0,1517.8921 +1142,1412,2461,-9,2460,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2040558,8.4032326,0,0,0,-988.9209,0,3,2,2021,6,0,30,30,1,0,0,17.269346,17.269346,0,0,0,0,0,0,0,2,1,1,0,7.7218189,0,62.49,55.09,-9,-9,10,1,1,0,0,8,5,4,1,168,988158.44,737150.19,257148.66,0,0,0,2888.2983 +1143,1413,2462,2463,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.2828865,6.7992935,6,4,-145.49567,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5293975,65.69,27.7,54.2,57.49,8.333333333333334,1,1,0,0,0,12,2,1,1604.5,589889.5,260455.66,342713.78,0,0,0,1853.535 +1143,1413,2463,2462,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.2129688,6.0649576,6,-4,72.548019,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9585748,54.2,57.49,65.69,27.7,6.666666666666667,1,1,0,0,3,12,2,1,1604.5,589889.5,260455.66,342713.78,0,0,0,1853.535 +1144,1414,2464,2465,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.7566285,8.0232048,54,0,88.733376,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4612083,7.8756695,64.52,50.23,53.22,55.2,10,1,1,0,0,5,7,3,1,2626.5,1155780.3,326525.06,267167.34,0,2157.0103,0,2415.3623 +1144,1414,2465,2464,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.9520917,6.1410799,54,0,-57.061069,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7178574,53.22,55.2,64.52,50.23,8.333333333333334,1,1,0,0,0,7,3,1,2626.5,1155780.3,326525.06,267167.34,0,2157.0103,0,2415.3623 +1145,1415,2466,2467,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.1936884,8.4207325,0,40,2,21.177168,0,3,3,2021,11,0,24,32,1,0,0,22.30825,22.30825,0,0,0,0,0,0,0,0,0,0,0,7.394485,0,53.87,53.44,33.07,55.18,8.333333333333334,1,1,0,0,11,10,4,1,294.5,1748469,1407381.4,428782.94,0,2330.6882,0,3424.3286 +1145,1415,2467,2466,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5813961,7.6615143,0,40,-2,-30.945961,0,3,3,2021,18,6,25,20,1,6,0,8.5564156,8.5564156,0,0,0,0,0,0,0,14.5,0,0,0,1.7027022,0,33.07,55.18,53.87,53.44,8.333333333333334,1,1,0,0,10,10,4,1,294.5,1748469,1407381.4,428782.94,0,2330.6882,0,3424.3286 +1146,1416,2468,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,6.8617525,6.8614664,0,0,0,-937.68237,0,1,1,2021,18,6,12,12,1,6,1,10.1268,10.1268,0,0,0,0,0,0,0,0,1,1,0,0,0,30.47,60.56,-9,-9,5,1,1,0,0,2,10,2,1,889,-91948.773,0,0,0,2112.9468,0,1087.967 +1147,1417,2469,-9,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.1896873,6.8412328,0,0,0,-1092.8649,0,-9,-9,2021,9,1,3,20,1,1,0,39.614819,39.614819,0,0,0,0,0,0,0,0,1,1,0,0,0,50.87,46.66,-9,-9,8.333333333333334,1,1,0,1,5,5,2,1,520,124809.66,0,0,0,0,736.01031,1665.3801 +1148,1418,2470,2471,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,8,-2,-26.763636,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.231526,0,53.45,49.53,57.06,57.76,8.333333333333334,1,1,0,0,2,8,2,1,645.5,570854.19,249991.5,266079.16,0,0,0,1514.2175 +1148,1418,2471,2470,-9,-9,1,1,78,0,0,0,2,2,-9,0,5,0,7.4493937,7.1198692,8,2,127.30648,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4369929,7.5016389,57.06,57.76,53.45,49.53,8.333333333333334,1,1,0,0,2,8,2,1,645.5,570854.19,249991.5,266079.16,0,0,0,1514.2175 +1149,1419,2472,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.1068625,5.9453239,0,0,-954.46973,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5138187,5.7488995,58.33,47.36,-9,-9,10,1,1,0,0,0,2,2,1,1347,126102.82,26993.205,0,0,0,0,733.3324 +1150,1420,2473,2475,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.0647774,8.0924234,0,30,-1,59.140888,0,1,2,2021,18,7,30,30,1,7,0,13.082123,13.082123,.05,.05,0,0,0,0,0,0,0,0,0,9.284133,0,33.07,52.48,57.16,56.15,3.333333333333333,1,1,0,0,10,2,5,1,881,875938.94,421447.69,376292.75,109603.49,0,0,8220.8994 +1150,1420,2474,-9,2473,2475,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1099.827,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,-9,-9,6.666666666666667,1,1,1,0,0,2,5,1,881,875938.94,421447.69,376292.75,109603.49,0,0,8220.8994 +1150,1420,2475,2473,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.1510735,9.3414984,0,29,1,-10.305281,0,2,3,2021,12,0,40,0,1,0,0,27.665394,27.665394,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,33.07,52.48,8.333333333333334,1,1,0,0,11,2,5,1,881,875938.94,421447.69,376292.75,109603.49,0,0,8220.8994 +1150,1421,2476,-9,2473,2475,1,1,20,0,1,0,2,2,0,0,3,0,0,0,0,0,-747.61603,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,937,0,0,0,0,0,0,0 +1151,1422,2477,2478,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,6.6818767,7.1263609,0,29,-5,64.919868,0,3,3,2021,8,0,16,10,1,0,0,7.6764612,7.6764612,0,0,0,0,0,0,0,7,0,0,0,0,0,42.33,45.96,57.16,56.15,1.666666666666667,1,1,0,0,8,7,5,0,534.5,768787.38,352502.5,648178.25,78573.484,0,0,2703.8931 +1151,1422,2478,2477,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.6758776,8.4963303,5.5043597,27,5,-13.005994,0,-9,-9,2021,6,0,35,35,1,0,0,20.367123,20.367123,.05,.05,.05,0,0,0,0,2,0,0,0,6.1518326,6.0731039,57.16,56.15,42.33,45.96,8.333333333333334,1,1,0,0,12,7,5,0,534.5,768787.38,352502.5,648178.25,78573.484,0,0,2703.8931 +1151,1423,2479,-9,2477,2478,1,1,26,0,0,0,2,2,-9,0,3,7.8281856,7.4558663,0,0,0,-961.78223,0,2,2,2021,6,0,16,17,1,0,1,17.922009,17.922009,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,1053,80624.648,-20000.158,0,0,6320.2329,0,762.22687 +1152,1424,2480,2481,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,7,1,63.75737,0,3,3,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,48,60.02,56.42,7,1,1,0,0,0,13,3,1,3171.5,320133.69,285265.22,0,0,0,0,1329.9399 +1152,1424,2481,2480,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.0141716,7.9986396,0,7,-1,111.84161,0,3,3,2021,6,0,30,36,1,0,0,11.521063,11.521063,0,0,0,0,0,0,0,0,0,0,0,6.1910095,0,60.02,56.42,51,48,10,1,1,0,0,10,13,3,1,3171.5,320133.69,285265.22,0,0,0,0,1329.9399 +1153,1425,2482,2483,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.3631735,8.1837778,0,16,-18,36.458138,0,1,1,2021,13,1,38,39,1,1,0,11.517245,11.517245,0,0,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,55.71,40.47,6.666666666666667,1,1,0,1,10,10,3,1,1022.6667,2278253.8,1069779.1,436083.72,0,0,0,2512.5464 +1153,1425,2483,2482,-9,-9,1,1,60,0,1,0,1,1,-9,0,3,7.2179747,7.3309298,5.354713,16,18,-18.677929,0,3,1,2021,7,0,20,20,1,0,0,7.1077461,7.1077461,0,0,0,0,0,0,0,0,1,1,0,5.8270111,5.9273639,55.71,40.47,58.16,48.06,5,1,1,0,1,7,10,3,1,1022.6667,2278253.8,1069779.1,436083.72,0,0,0,2512.5464 +1153,1425,2484,-9,2482,2483,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1057.7854,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,3,1,1022.6667,2278253.8,1069779.1,436083.72,0,0,0,2512.5464 +1154,1426,2485,-9,-9,-9,1,0,39,0,2,0,2,2,1,0,4,7.1578722,7.5841618,5.2597179,0,0,-966.71252,-9,3,3,2021,18,8,16,0,1,8,0,11.883485,11.883485,0,0,0,0,0,0,0,0,1,1,0,6.0266523,0,25.44,65.40000000000001,-9,-9,5,1,1,0,0,8,5,2,1,1218,-73900.219,0,0,0,0,0,3201.9731 +1155,1427,2486,2487,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.1590805,8.6473598,0,23,-2,130.62433,0,2,1,2021,21,9,26,24,1,9,0,15.46672,15.46672,0,0,0,0,0,0,0,0,1,1,0,2.498172,0,38.34,62.12,34.77,50.33,5,1,1,0,0,7,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1155,1427,2487,2486,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,9.5387802,9.6863213,0,3,2,7.4695435,0,-9,-9,2021,24,12,67,0,1,12,0,25.936512,25.936512,0,0,0,0,0,0,0,0,1,1,0,0,0,34.77,50.33,38.34,62.12,5,1,1,0,0,8,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1155,1427,2488,-9,2486,2487,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.38574,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1155,1427,2489,-9,2486,2487,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-994.61127,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,5,1,1822,56478.996,0,0,0,0,0,6664.4541 +1156,1428,2490,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.0585275,7.3315063,0,0,-1042.9514,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2888265,60.45,41.05,-9,-9,10,1,1,0,0,0,9,3,1,820,525398.56,96033.758,163282.73,0,0,0,837.81415 +1156,1429,2491,2492,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0210876,7.9540057,0,6,0,-113.98882,0,-9,-9,2021,11,0,43,40,1,0,0,8.8811903,8.8811903,.05,.05,0,0,0,0,0,7,1,1,0,3.5355713,0,57.16,56.15,55.93,52.62,8.333333333333334,1,1,0,0,13,9,5,1,1104.5,278495.25,139684.38,119411.34,0,7786.8228,0,3198.085 +1156,1429,2492,2491,2490,-9,1,1,54,0,0,0,3,3,-9,0,4,8.7560186,8.5957403,0,6,0,148.38112,0,3,-9,2021,9,0,42,44,1,0,0,16.690304,16.690304,.05,.05,0,0,0,0,0,0,1,1,0,2.40399,0,55.93,52.62,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,1104.5,278495.25,139684.38,119411.34,0,7786.8228,0,3198.085 +1157,1430,2493,2494,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.9132814,8.1504288,0,3,3,71.211357,0,3,3,2021,19,8,38,40,1,8,0,8.5831747,8.5831747,0,0,0,0,0,0,0,0,0,0,0,0,0,33.3,64.17,60.99,53.2,8.333333333333334,1,1,0,0,4,9,5,0,580,-20673.504,-3593.8652,162866.88,83944.781,0,0,3799.4509 +1157,1430,2494,2493,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.4621897,8.778079,0,3,-3,-120.27359,0,-9,-9,2021,5,0,55,53,1,0,0,9.0238008,9.0238008,.05,.05,0,0,0,0,0,0,0,0,0,6.8610134,0,60.99,53.2,33.3,64.17,10,1,1,0,0,8,9,5,0,580,-20673.504,-3593.8652,162866.88,83944.781,0,0,3799.4509 +1157,1431,2495,-9,2493,-9,1,1,22,0,0,0,2,2,-9,0,4,8.2652388,8.0981531,0,0,0,-990.11548,0,2,3,2021,7,0,39,45,1,0,1,14.770592,14.770592,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,4,0,211,-40196.801,0,0,0,0,0,1883.7249 +1158,1432,2496,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.8135262,6.5166626,0,0,-893.08295,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1180239,6.7301607,48.54,41.09,-9,-9,5,1,1,0,0,0,6,2,1,3795,99346.586,155045.16,0,0,0,0,1322.522 +1159,1433,2497,-9,2500,2498,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.2018,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2498,2500,-9,-9,1,1,42,0,3,0,1,1,-9,0,3,7.0966096,7.2787476,0,21,0,-.50360698,0,-9,-9,2021,12,1,35,35,1,1,0,4.1896839,4.1896839,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,53.31,52.27,58.55,8.333333333333334,1,1,0,0,9,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2499,-9,2500,2498,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.52783,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2500,2498,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,7.2391996,6.8835812,0,21,0,-42.186146,0,2,3,2021,8,0,25,35,1,0,0,6.1413655,6.1413655,0,0,0,0,0,0,0,0,1,1,0,3.480638,0,52.27,58.55,51.49,53.31,10,1,1,0,0,9,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1159,1433,2501,-9,2500,2498,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.13055,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,4,2,1,581.40002,271744.56,184467.98,160729.98,33664.066,1696.1508,0,1857.6876 +1160,1434,2502,2503,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.442378,8.3192358,0,5,-1,35.108547,0,2,-9,2021,4,0,47,40,1,0,0,10.011298,10.011298,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.98,57.55,50.63,50.99,6.666666666666667,1,1,0,0,7,1,4,1,360,14301.295,76697.039,88759.68,59655.547,15844.2,-26.477722,3206.6948 +1160,1434,2503,2502,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,7.7027955,7.7121806,0,5,1,66.600281,0,-9,-9,2021,9,0,37,37,1,0,0,10.675561,10.675561,.05,.05,0,0,0,0,0,0,0,0,0,2.4279678,0,50.63,50.99,51.98,57.55,6.666666666666667,1,1,0,0,6,1,4,1,360,14301.295,76697.039,88759.68,59655.547,15844.2,-26.477722,3206.6948 +1161,1435,2504,-9,2506,2507,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.1942,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2505,-9,2506,2507,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-941.30829,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2506,2507,-9,-9,1,0,46,0,3,0,3,3,-9,0,4,0,0,0,24,-10,0,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.12,42.96,38.22,38.57,5,2,3,0,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2507,2506,2509,-9,1,1,56,0,3,0,3,3,-9,0,1,0,0,0,24,10,0,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.22,38.57,44.12,42.96,5,2,3,1,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1435,2508,-9,2506,2507,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1021.9104,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,1,1,810.40002,10162.042,23266.59,0,0,0,0,1775.7767 +1161,1436,2509,-9,-9,-9,1,0,72,0,3,0,3,3,-9,0,1,0,0,0,0,0,-1022.9243,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,9.2481441,0,0,1,1,0,0,0,35.1,30.31,-9,-9,3.333333333333333,2,3,0,0,0,6,1,1,3499,-117698.5,0,0,0,0,0,146.84666 +1161,1437,2510,-9,2506,2507,1,0,18,0,3,0,2,2,1,0,5,0,0,0,0,0,-1018.367,-9,3,3,2021,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.68,56.78,-9,-9,10,2,3,1,0,0,6,1,1,1099,-24710.369,0,0,0,0,0,0 +1162,1438,2511,2512,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,8.5847893,8.4155645,43,1,-5.7166762,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4032044,8.5800409,40.58,60.95,57.37,45.05,3.333333333333333,1,1,0,0,11,4,4,1,1136.5,1399585.9,799694.88,304287.47,0,0,0,4362.6733 +1162,1438,2512,2511,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,43,-1,-116.31531,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.37,45.05,40.58,60.95,6.666666666666667,1,1,0,0,0,4,4,1,1136.5,1399585.9,799694.88,304287.47,0,0,0,4362.6733 +1163,1439,2513,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.4922366,7.568377,0,0,-978.73138,0,3,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2752786,7.7277536,33.45,51.41,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,2907,424410.34,356678.81,101198.13,0,0,0,2089.688 +1164,1440,2514,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1001.982,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4944062,0,58.05,33.11,-9,-9,8.333333333333334,1,1,0,0,7,9,1,0,242,-43078.168,0,0,0,0,0,218.73192 +1165,1441,2515,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.9380698,7.5622544,0,0,-919.87988,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8641531,7.96767,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,664,1031093,307227.09,0,0,0,0,1825.9281 +1166,1442,2516,2518,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.0033159,7.8691564,0,20,-5,42.655418,0,1,1,2021,27,11,48,44,1,11,0,8.7513065,8.7513065,.05,.05,0,0,0,0,0,7,1,1,0,0,0,36.49,50.87,52.99,51.28,6.666666666666667,1,1,0,0,8,1,4,1,406.66666,159644.02,27009.775,69214.438,42681.582,1653.7649,0,3141.6963 +1166,1442,2517,-9,2516,2518,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-888.08362,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,1,4,1,406.66666,159644.02,27009.775,69214.438,42681.582,1653.7649,0,3141.6963 +1166,1442,2518,2516,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.4577055,8.1635418,0,20,5,-41.844135,0,2,3,2021,10,0,40,44,1,0,0,11.334976,11.334976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,36.49,50.87,6.666666666666667,1,1,0,0,11,1,4,1,406.66666,159644.02,27009.775,69214.438,42681.582,1653.7649,0,3141.6963 +1167,1443,2519,-9,2522,2520,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1087.7611,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1167,1443,2520,2522,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,8.127799,7.6210356,0,21,14,53.788242,0,3,3,2021,24,12,48,48,1,12,0,7.2102933,7.2102933,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,34.34,54.94,53.18,3.333333333333333,1,1,0,0,11,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1167,1443,2521,-9,2522,2520,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-947.43445,-9,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,1,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1167,1443,2522,2520,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,8.5044842,8.4199619,0,21,-14,-36.371693,0,2,3,2021,8,0,46,53,1,0,0,14.035695,14.035695,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,43.09,34.34,8.333333333333334,1,1,0,0,11,5,4,0,650.25,1767954.5,226537.67,113672.16,0,0,0,3224.6226 +1168,1444,2523,2525,-9,-9,1,1,53,0,3,0,2,2,-9,0,2,9.4116859,9.4038973,0,11,5,56.110645,0,-9,-9,2021,14,3,43,35,1,3,0,40.531525,40.531525,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.31,50.2,54.2,57.49,8.333333333333334,1,1,0,0,13,9,5,1,598.33331,516149.75,7567.6118,548831.25,83680.148,0,0,5088.6831 +1168,1444,2524,-9,2525,2523,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1001.6136,-9,1,2,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.26,56.19,-9,-9,10,1,1,0,0,0,9,5,1,598.33331,516149.75,7567.6118,548831.25,83680.148,0,0,5088.6831 +1168,1444,2525,2523,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,5.9946012,6.0984139,0,11,-5,97.905449,0,-9,-9,2021,11,2,48,50,1,2,0,.92720479,.92720479,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,47.31,50.2,8.333333333333334,1,1,0,0,8,9,5,1,598.33331,516149.75,7567.6118,548831.25,83680.148,0,0,5088.6831 +1169,1445,2526,-9,2527,-9,1,0,30,0,0,0,1,1,-9,0,4,8.100647,8.6255188,0,0,0,-1006.2236,0,2,-9,2021,12,0,47,60,1,0,1,10.825713,10.825713,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,4,2,0,0,12,5,4,0,916,334892.34,-103422.73,112854.92,0,0,3778.0427,1889.9548 +1169,1446,2527,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.6602283,7.7568054,0,0,0,-1051.3014,-9,2,2,2021,11,0,32,0,1,0,0,7.5621257,7.5621257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.85,28.86,-9,-9,6.666666666666667,4,2,0,0,14,5,3,0,375,232189.86,129102.59,0,0,0,0,573.06964 +1170,1447,2528,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,9.7544279,9.6446877,0,0,0,-992.43262,0,2,1,2021,11,0,40,40,1,0,0,36.128994,36.128994,0,0,0,0,0,0,0,0,0,0,0,7.1983628,0,54.1,59.11,-9,-9,5,1,1,0,0,12,8,5,1,710,3015424,1811733.6,363444.81,0,0,0,6523.4873 +1171,1448,2529,2530,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,36,-6,110.88596,0,3,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.04,49.76,56.18,53.85,6.666666666666667,2,3,0,1,0,8,3,0,828,804489.5,133376.11,715130.13,0,0,0,2631.1626 +1171,1448,2530,2529,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.3794117,8.4394636,0,36,6,28.069592,-9,3,2,2021,9,0,40,0,1,1,0,12.078111,12.078111,.05,.05,0,0,0,0,0,0,1,1,0,1.9999981,0,56.18,53.85,50.04,49.76,8.333333333333334,2,3,0,0,13,8,3,0,828,804489.5,133376.11,715130.13,0,0,0,2631.1626 +1172,1449,2531,2532,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,8.6159735,8.7020884,0,6,6,-63.713955,0,3,2,2021,2,0,48,38,1,0,0,12.031556,12.031556,.05,.05,0,0,0,0,0,0,1,1,0,.46210906,0,44.24,59.44,26.64,67.84,8.333333333333334,1,1,0,0,9,6,5,1,644.66669,1287179.9,973226.06,219081.47,53976.082,1917.0404,0,4305.2632 +1172,1449,2532,2531,-9,-9,1,0,36,0,1,0,1,1,-9,0,5,8.7821188,8.3494329,0,6,-6,-112.48777,0,-9,-9,2021,18,6,55,46,1,6,0,15.526207,15.526207,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.64,67.84,44.24,59.44,6.666666666666667,1,1,0,0,8,6,5,1,644.66669,1287179.9,973226.06,219081.47,53976.082,1917.0404,0,4305.2632 +1172,1449,2533,-9,2532,2531,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.29156,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,644.66669,1287179.9,973226.06,219081.47,53976.082,1917.0404,0,4305.2632 +1173,1450,2534,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,6.9630022,6.7752237,0,0,0,-994.99805,0,2,2,2021,20,7,17,35,1,7,0,8.1753464,8.1753464,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,34.13,-9,-9,8.333333333333334,4,5,0,0,6,8,2,0,454,-48554.852,-39279.813,0,0,0,0,443.72745 +1173,1451,2535,-9,2534,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1115.7986,1,2,2,2021,6,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,437,-64887.277,0,0,0,0,0,0 +1173,1452,2536,-9,2534,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1005.189,0,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.53,49.72,-9,-9,6.666666666666667,4,5,0,0,1,8,1,0,574,-90579.992,0,0,0,0,0,220.4469 +1173,1453,2537,-9,2534,-9,1,0,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1125.6368,1,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.49,59.98,-9,-9,8.333333333333334,4,5,0,0,1,8,1,0,1099,-181269.48,0,0,0,0,0,0 +1173,1454,2538,-9,2534,-9,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1010.4949,-9,2,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.52,58.09,-9,-9,8.333333333333334,4,5,0,0,2,8,1,0,542,-192052.59,0,0,0,25907.781,0,90.403885 +1174,1455,2539,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,6.3016849,7.8793001,7.7783608,0,0,-1114.1696,0,2,2,2021,7,0,40,40,1,0,0,1.3511535,1.3511535,.05,.05,0,0,0,0,0,0,1,1,0,7.8356323,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,6,3,1,722.66669,42333.031,33064.695,137579.69,70092,0,0,2132.1423 +1174,1455,2540,-9,2539,-9,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1038.86,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,3,1,722.66669,42333.031,33064.695,137579.69,70092,0,0,2132.1423 +1174,1455,2541,-9,2539,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.6693,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,722.66669,42333.031,33064.695,137579.69,70092,0,0,2132.1423 +1175,1456,2542,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.6540194,6.8075709,0,0,-925.98969,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.447613,6.8017955,62.49,55.09,-9,-9,0,1,1,0,0,6,7,2,1,244,855611.75,167875.28,282932.34,0,1223.4703,0,1242.3705 +1176,1457,2543,-9,-9,-9,1,0,57,0,0,0,1,1,1,0,4,7.5932012,7.9889555,0,0,0,-1019.1269,-9,3,2,2021,12,1,38,0,1,1,0,8.7012711,8.7012711,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,11,5,4,1,507,-91861.742,0,0,0,0,0,1785.1802 +1176,1458,2544,-9,2543,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1027.0403,-9,1,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,178,-96224.344,0,0,0,0,0,0 +1177,1459,2545,2546,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,7.4455709,7.4639864,0,4,13,-89.735794,-9,-9,-9,2021,12,2,40,0,1,2,0,5.0732203,5.0732203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.75,44.49,48.27,34.32,6.666666666666667,1,1,0,0,13,13,2,1,321.66666,184864.67,70340.156,0,0,5607.1787,0,1649.8695 +1177,1459,2546,2545,-9,-9,1,0,35,0,2,0,2,2,-9,1,4,6.0546908,6.2211466,0,4,-13,-45.268959,0,-9,-9,2021,8,0,7,7,1,0,0,7.6668072,7.6668072,0,0,0,0,0,0,0,42,1,1,0,0,0,48.27,34.32,43.75,44.49,6.666666666666667,1,1,0,0,7,13,2,1,321.66666,184864.67,70340.156,0,0,5607.1787,0,1649.8695 +1177,1459,2547,-9,2546,2545,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.18524,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,321.66666,184864.67,70340.156,0,0,5607.1787,0,1649.8695 +1178,1460,2548,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,0,0,-953.85333,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.8,28.52,-9,-9,8.333333333333334,4,5,0,0,0,8,1,0,1865,43233.277,0,0,0,0,0,1067.2997 +1178,1461,2549,2550,2548,-9,1,0,37,0,0,0,1,1,-9,0,2,8.0500011,8.4606705,0,3,-10,.79331857,0,2,-9,2021,17,6,38,-9,1,6,0,12.30858,12.30858,0,0,0,0,0,0,0,2,1,1,0,0,0,31.03,48.41,45.99,51.88,5,4,5,0,0,8,8,5,0,582.5,675477.63,139128.19,487006.88,44249.234,0,0,3297.7932 +1178,1461,2550,2549,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.4682713,7.9926953,0,3,10,-43.12019,0,-9,-9,2021,9,1,40,0,1,1,0,11.20308,11.20308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.99,51.88,31.03,48.41,8.333333333333334,4,5,0,0,1,8,5,0,582.5,675477.63,139128.19,487006.88,44249.234,0,0,3297.7932 +1179,1462,2551,2552,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5414429,8.7158327,0,7,2,72.342041,0,3,3,2021,7,0,47,45,1,0,0,13.848907,13.848907,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,35.97,41.19,0,1,1,0,0,9,11,4,0,272,1147595.3,613572.75,147527.52,0,0,0,2358.4368 +1179,1462,2552,2551,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,7,-2,71.979546,0,-9,3,2021,17,4,0,16,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.97,41.19,48.28,60.18,5,1,1,1,0,8,11,4,0,272,1147595.3,613572.75,147527.52,0,0,0,2358.4368 +1180,1463,2553,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.7265277,6.4292541,0,0,-997.07758,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3154263,60.3,46.58,-9,-9,10,1,1,0,0,9,7,2,0,593,342925.19,393564.16,0,0,0,0,1016.4309 +1181,1464,2554,2555,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.0668182,8.182313,0,7,1,-96.781319,0,2,2,2021,7,0,39,39,1,0,0,8.9789581,8.9789581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,52,54.51,1.666666666666667,1,1,0,0,6,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1181,1464,2555,2554,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,7,-1,12.077252,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52,54.51,52,54.51,5,1,1,0,0,3,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1181,1464,2556,-9,2555,2554,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.4551,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1181,1464,2557,-9,2555,2554,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.33459,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1007.5,40953,125232.45,46253.898,43786.543,8068.6372,448.8797,1885.9484 +1182,1465,2558,2559,-9,-9,1,1,57,0,2,0,1,1,-9,0,3,8.9296064,8.9380312,0,9,8,-162.66971,-9,2,2,2021,9,1,8,0,1,1,0,97.989594,97.989594,0,0,0,0,0,0,0,0,1,1,0,0,0,50.42,51.35,41.07,60.93,5,2,3,0,0,12,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1182,1465,2559,2558,-9,-9,1,0,49,0,2,0,3,3,-9,0,5,0,0,0,9,-8,22.209978,-9,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,50.42,51.35,10,2,3,1,0,3,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1182,1465,2560,-9,2559,2558,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-853.25958,-9,3,1,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,41.02,-9,-9,10,2,3,0,0,0,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1182,1465,2561,-9,2559,2558,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.93408,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,804,1064498.3,436768.25,276296.97,132750.13,12021.989,0,4093.4753 +1183,1466,2562,2563,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4802475,8.700284,0,2,-1,-49.824299,0,-9,-9,2021,17,6,38,37,1,6,0,15.334112,15.334112,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.47,65.17,40.61,64.02,6.666666666666667,1,1,0,0,10,8,5,0,840,225584.39,120484.41,427043.69,202655.64,0,0,3492.2549 +1183,1466,2563,2562,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.1519318,8.4106512,0,2,1,31.897995,0,-9,-9,2021,15,4,84,50,1,4,0,6.4687867,6.4687867,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.61,64.02,35.47,65.17,8.333333333333334,1,1,0,0,2,8,5,0,840,225584.39,120484.41,427043.69,202655.64,0,0,3492.2549 +1184,1467,2564,2565,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.5488296,6.0276408,10,8,-129.11964,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4115372,41.17,59.31,49,48,8.333333333333334,1,1,0,0,7,12,2,1,1251.5,109210.45,0,151343.27,0,0,0,1282.3499 +1184,1467,2565,2564,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,10,-8,-42.407894,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,41.17,59.31,5,1,1,0,0,7,12,2,1,1251.5,109210.45,0,151343.27,0,0,0,1282.3499 +1185,1468,2566,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.4677052,7.475297,0,0,-1089.2333,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.808146,7.5000153,51.61,23.91,-9,-9,8.333333333333334,1,1,0,0,0,11,3,0,1262,250239.92,203586.89,155393.45,21181.016,0,0,1233.7394 +1186,1469,2567,2568,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.6395044,8.5551405,0,2,4,-97.00943,0,2,2,2021,6,0,39,39,1,0,0,22.640617,22.640617,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,10,1,1,0,0,9,9,4,1,2865,527469.63,160744.13,479007.25,196846.66,13898.475,0,2398.1543 +1186,1469,2568,2567,-9,-9,1,0,28,0,0,0,1,1,0,0,4,0,0,0,2,-4,-102.85696,-9,-9,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,4,2,0,0,2,9,4,1,2865,527469.63,160744.13,479007.25,196846.66,13898.475,0,2398.1543 +1187,1470,2569,2570,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.2367001,8.6385717,8,8,-89.432228,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7851844,8.3878641,55.93,52.62,57.06,57.76,8.333333333333334,1,1,0,0,0,13,4,1,386.5,1958788.3,1018863.9,322478.56,0,0,0,5663.7588 +1187,1470,2570,2569,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.529634,8.1014709,8,-8,21.310751,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.625627,8.2913227,57.06,57.76,55.93,52.62,10,1,1,0,0,0,13,4,1,386.5,1958788.3,1018863.9,322478.56,0,0,0,5663.7588 +1188,1471,2571,-9,2573,2574,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.06476,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1188,1471,2572,-9,2573,2574,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7061,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1188,1471,2573,2574,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.4015579,7.5302114,5.6490874,12,-2,-56.115734,-9,3,2,2021,10,0,30,0,1,0,0,6.7329535,6.7329535,.05,.05,0,0,0,0,0,0,1,1,0,5.576921,0,48.45,57.49,57.06,57.76,8.333333333333334,1,1,0,0,6,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1188,1471,2574,2573,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,7.9548001,8.0871553,0,12,2,49.171013,-9,2,2,2021,8,0,37,0,1,0,0,9.4458361,9.4458361,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.45,57.49,8.333333333333334,1,1,0,0,6,5,3,1,1158.75,-47645.883,43030.426,0,0,2411.7603,0,2623.2942 +1189,1472,2575,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,6.1557279,6.0039196,0,0,-1008.5131,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,2.0381384,0,0,1,1,0,5.0961514,6.0268135,40.84,36.78,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1394,91671.805,40313.914,41440.742,0,0,0,1077.5 +1190,1473,2576,2577,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,6.2919106,6.4259987,19,-14,63.224651,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.4814587,48.41,19.77,25.75,19.69,8.333333333333334,1,1,0,0,0,5,2,1,442,677876.38,0,296216.47,0,0,-417.88608,3200.335 +1190,1473,2577,2576,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,3.2294972,3.5177059,19,14,-85.079559,0,3,2,2021,36,12,0,0,4,12,0,0,0,0,0,0,1,26.056519,24.069469,275.35944,2,1,1,0,2.7771509,3.1278214,25.75,19.69,48.41,19.77,1.666666666666667,1,1,0,0,0,5,2,1,442,677876.38,0,296216.47,0,0,-417.88608,3200.335 +1191,1474,2578,2580,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.7607212,8.6914063,0,6,-1,-85.933434,0,3,-9,2021,11,2,49,51,1,2,0,16.546253,16.546253,0,0,.05,0,0,0,0,0,1,1,0,7.2673602,0,46.46,50.26,46.87,50.13,8.333333333333334,1,1,0,0,7,11,5,1,770.33331,457664.56,152660.95,201363.75,11952.812,0,0,4310.8154 +1191,1474,2579,-9,2580,2578,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.40723,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,770.33331,457664.56,152660.95,201363.75,11952.812,0,0,4310.8154 +1191,1474,2580,2578,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.8966641,7.4558945,0,6,1,108.05193,0,2,3,2021,12,0,38,34,1,0,0,6.2704654,6.2704654,0,0,0,0,0,0,0,0,1,1,0,0,0,46.87,50.13,46.46,50.26,5,1,1,0,0,7,11,5,1,770.33331,457664.56,152660.95,201363.75,11952.812,0,0,4310.8154 +1191,1475,2581,-9,2580,2578,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1001.8002,-9,2,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,54.09,-9,-9,5,1,1,0,0,2,11,1,1,1122,-61387.156,0,0,0,0,0,0 +1192,1476,2582,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,0,7.3113952,7.0772114,0,0,-1099.3848,1,-9,-9,2021,7,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7438116,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,12,3,0,535,143896.91,-22772.045,0,0,0,0,1104.6481 +1193,1477,2583,2584,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,5.8253741,5.3723793,54,0,7.1359529,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4887791,5.9778066,52.21,29.19,44.28,45.81,8.333333333333334,1,1,0,0,5,7,2,1,556,373877.69,297533.38,218515.47,0,0,0,1241.6575 +1193,1477,2584,2583,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.7835236,4.8006406,53,0,-86.006767,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6997209,4.9713926,44.28,45.81,52.21,29.19,8.333333333333334,1,1,0,0,4,7,2,1,556,373877.69,297533.38,218515.47,0,0,0,1241.6575 +1193,1478,2585,-9,2584,2583,1,1,50,0,0,0,1,1,-9,0,2,0,0,0,0,0,-845.16583,0,2,2,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.9,42.57,-9,-9,3.333333333333333,1,1,1,1,0,7,2,1,907,762881.13,21154.936,377973.38,0,4109.0034,0,87.050377 +1194,1479,2586,2587,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.8105435,8.1873474,47,-2,-119.66463,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3058038,7.9240618,57.76,54.51,57.16,56.15,10,1,1,0,0,0,12,5,1,902.5,2252434,1191672.5,869722.56,0,0,0,4961.3833 +1194,1479,2587,2586,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.6046839,8.068428,47,2,-4.809412,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1400518,8.5224848,57.16,56.15,57.76,54.51,10,1,1,0,0,0,12,5,1,902.5,2252434,1191672.5,869722.56,0,0,0,4961.3833 +1195,1480,2588,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,4.6553278,4.4391351,0,0,-1124.8352,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.6737533,0,20.994144,0,1,1,0,0,4.4615464,57.16,56.15,-9,-9,10,1,1,0,0,0,11,2,1,701,460261.72,68723.703,143860.2,0,0,0,1351.5004 +1195,1481,2589,-9,-9,2588,1,1,48,0,0,0,2,2,-9,0,4,7.9357076,7.8412404,0,0,0,-893.85413,0,-9,3,2021,7,0,38,37,1,0,0,10.581259,10.581259,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,12,11,4,1,421,343806.88,164440.09,316329.75,56742.098,0,-7.335763,1143.9674 +1196,1482,2590,2591,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,8.625577,8.7966156,0,21,-1,89.670456,0,2,2,2021,13,1,33,23,1,1,0,24.806667,24.806667,0,0,0,0,0,0,0,2,1,1,0,8.0356827,0,44.67,47.09,48.99,44.87,8.333333333333334,2,3,0,0,11,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2591,2590,-9,-9,1,1,50,0,2,0,3,3,-9,0,4,8.4078026,8.1835814,0,21,1,-163.73079,0,2,2,2021,12,0,38,38,1,0,0,8.2248135,8.2248135,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.99,44.87,44.67,47.09,6.666666666666667,2,3,0,0,11,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2592,-9,2590,2591,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.85059,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2593,-9,2590,2591,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1115.0231,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1196,1482,2594,-9,2590,2591,1,1,17,0,2,1,2,0,0,0,5,0,5.0788026,4.9614639,0,0,-964.10815,-9,3,3,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2845316,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,6,4,1,519.20001,651114.38,192805.3,278122.41,42910.766,7146.6338,0,5604.6128 +1197,1483,2595,-9,2596,-9,1,0,30,0,0,0,2,2,-9,0,4,7.7372994,7.9089799,0,0,0,-819.17401,0,2,2,2021,10,1,37,37,1,1,1,9.2663136,9.2663136,0,0,0,0,0,0,0,2,1,1,0,0,0,44.21,60.79,-9,-9,3.333333333333333,1,1,0,0,7,4,3,1,347,77629.211,0,73745.742,87698.008,0,0,697.82709 +1197,1484,2596,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,5.5331197,5.6850004,0,0,-976.66162,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7293215,5.4514489,35.44,36.71,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,867,-11473.277,-60852.406,0,0,0,0,217.24506 +1198,1485,2597,2598,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.2914267,8.2387209,0,5,-3,-3.2791526,0,-9,-9,2021,11,0,38,38,1,2,0,10.928334,10.928334,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,42.94,57.18,8.333333333333334,1,1,0,0,11,1,5,1,782,109913.37,68487.609,221637.56,78193.578,0,0,4777.1782 +1198,1485,2598,2597,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,9.2804842,8.9793234,0,5,3,-63.983307,0,-9,-9,2021,3,1,45,-9,1,1,0,18.544495,18.544495,.05,.05,0,0,0,0,0,0,0,0,0,1.0936656,0,42.94,57.18,41.17,59.31,5,1,1,0,0,13,1,5,1,782,109913.37,68487.609,221637.56,78193.578,0,0,4777.1782 +1199,1486,2599,-9,2601,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-896.302,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1199,1486,2600,-9,2601,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.38141,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1199,1486,2601,-9,-9,-9,1,0,34,0,3,0,2,2,-9,0,2,0,0,0,0,0,-965.48914,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.91,32.94,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1199,1486,2602,-9,2601,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.3923,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,800.75,0,0,0,0,0,0,1501.8654 +1200,1487,2603,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.8484087,8.0608635,6.546216,0,0,-1055.7084,0,3,3,2021,11,0,45,46,1,0,0,7.1161623,7.1161623,0,0,0,0,0,0,0,0,1,1,0,6.3692555,0,53.29,45.74,-9,-9,5,1,1,0,0,8,11,4,1,176,391350.22,0,272138.19,0,0,0,1104.4198 +1201,1488,2604,-9,2609,2605,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1036.7847,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2605,2609,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,7.5860691,7.7244406,0,12,5,180.19252,0,3,3,2021,10,0,40,50,1,0,0,8.9526014,8.9526014,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.52,33.49,45.02,53.64,3.333333333333333,2,3,0,0,11,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2606,-9,2609,2605,1,0,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1054.7482,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2607,-9,2609,2605,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.97479,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2608,-9,2609,2605,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1076.1317,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1201,1488,2609,2605,-9,-9,1,0,32,1,4,0,3,3,-9,0,5,0,0,0,12,-5,-111.03114,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.02,53.64,50.52,33.49,0,2,3,0,0,0,6,2,1,398.83334,46020.094,-12012.38,0,0,4170.7803,3083.1208,2232.166 +1202,1489,2610,2611,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.8575954,7.0417695,11,2,98.44149,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2648163,7.3333998,57.43,46.43,58.88,40.91,8.333333333333334,1,1,0,0,3,11,3,1,473,905584.19,539229.25,310920,0,0,0,2244.4619 +1202,1489,2611,2610,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.7890205,7.9318013,11,-2,119.82564,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.24619074,0,1,1,0,5.1697102,7.9913735,58.88,40.91,57.43,46.43,10,1,1,0,0,0,11,3,1,473,905584.19,539229.25,310920,0,0,0,2244.4619 +1203,1490,2612,2614,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,9.2719698,9.0741835,0,13,-3,-145.20239,0,2,2,2021,10,1,43,43,1,1,0,26.244884,26.244884,.05,.05,0,0,0,0,0,0,0,0,0,2.6328757,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,14,7,5,1,863.66669,2430457.8,1760837.6,559761.19,36852.703,0,0,8091.604 +1203,1490,2613,-9,2612,2614,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1070.084,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,863.66669,2430457.8,1760837.6,559761.19,36852.703,0,0,8091.604 +1203,1490,2614,2612,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.7581863,9.6414328,0,13,3,63.214855,0,2,2,2021,11,2,110,50,1,2,0,14.427637,14.427637,.05,.05,0,0,0,0,0,0,0,0,0,3.7106605,0,54.2,57.49,51.83,57.2,10,1,1,0,0,14,7,5,1,863.66669,2430457.8,1760837.6,559761.19,36852.703,0,0,8091.604 +1204,1491,2615,2616,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.4394493,8.2190361,26,15,8.1690779,0,2,2,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.3098292,8.6874495,59.88,45.34,54.2,57.49,10,1,1,0,0,8,5,5,1,1040.5,1011471.6,799577.63,232194.83,17064.33,0,566.18286,6088.6318 +1204,1491,2616,2615,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.4541559,9.5405016,0,27,-15,54.207912,0,2,2,2021,8,0,50,40,1,0,0,28.21771,28.21771,0,0,0,0,0,0,0,0,1,1,0,3.3018167,0,54.2,57.49,59.88,45.34,8.333333333333334,1,1,0,0,11,5,5,1,1040.5,1011471.6,799577.63,232194.83,17064.33,0,566.18286,6088.6318 +1204,1492,2617,-9,2616,2615,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1117.9788,-9,1,1,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,-9,-9,5,1,1,0,0,0,5,1,1,771,0,0,0,0,0,0,995.87579 +1205,1493,2618,2621,-9,-9,1,1,31,0,2,0,2,2,-9,0,3,8.1525621,7.6747642,0,9,0,97.591209,0,2,2,2021,9,0,47,42,1,0,0,8.0883236,8.0883236,.05,.05,0,0,0,0,0,0,1,1,0,5.9063654,0,54.37,54.8,41.23,51.32,8.333333333333334,1,1,0,0,10,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1205,1493,2619,-9,2621,2618,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.905,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1205,1493,2620,-9,2621,2618,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.1589,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1205,1493,2621,2618,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,0,0,0,9,0,28.611969,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,51.32,54.37,54.8,8.333333333333334,1,1,0,0,2,5,3,0,1220.5,-34904.816,-16919.703,0,0,353.02686,0,1778.1835 +1206,1494,2622,2624,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.5721369,7.9596562,0,26,2,34.632576,0,-9,2,2021,12,2,40,40,1,2,0,8.2936935,8.2936935,.05,.05,0,0,0,0,0,0,1,1,0,2.1340632,0,45.79,62.62,61.28,48.88,10,1,1,0,0,9,1,4,0,575.33331,111799.12,7458.1548,131177.22,30436.33,4999.6831,0,2651.1577 +1206,1494,2623,-9,2624,2622,1,0,17,0,0,0,3,3,1,0,2,0,0,0,0,0,-1066.6776,-9,2,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.72,41.41,-9,-9,0,1,1,1,0,0,1,4,0,575.33331,111799.12,7458.1548,131177.22,30436.33,4999.6831,0,2651.1577 +1206,1494,2624,2622,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.726141,7.5627718,0,26,-2,-11.783977,0,-9,-9,2021,6,0,22,22,1,0,0,12.80623,12.80623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,45.79,62.62,8.333333333333334,1,1,0,0,7,1,4,0,575.33331,111799.12,7458.1548,131177.22,30436.33,4999.6831,0,2651.1577 +1206,1495,2625,-9,2624,2622,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-861.69843,0,2,3,2021,4,0,0,22,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,10,1,1,1,0,1,1,1,0,402,-128263.38,0,0,0,0,0,-231.37854 +1207,1496,2626,2627,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4443293,8.2866783,0,27,2,-40.663013,0,2,2,2021,11,0,45,44,1,0,0,12.88536,12.88536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,28.9,49.04,8.333333333333334,1,1,0,0,13,9,5,1,301,1068009.4,580540.63,339923.59,43155.902,0,0,3497.6902 +1207,1496,2627,2626,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2943325,8.194458,0,27,-2,-20.190451,0,2,2,2021,21,9,38,39,1,9,0,10.650971,10.650971,.05,.05,0,0,0,0,0,0,0,0,0,.82939684,0,28.9,49.04,51.83,57.2,6.666666666666667,1,1,0,0,11,9,5,1,301,1068009.4,580540.63,339923.59,43155.902,0,0,3497.6902 +1207,1497,2628,-9,2627,2626,1,0,24,0,0,0,2,2,-9,0,5,7.4446673,6.9564137,0,0,0,-1025.2032,0,2,2,2021,32,12,28,14,1,12,1,5.9125814,5.9125814,0,0,0,0,0,0,0,0,0,0,0,.98184115,0,16.23,68.69,-9,-9,1.666666666666667,1,1,0,0,5,9,3,1,376,-57102.574,0,0,0,0,0,479.13202 +1208,1498,2629,-9,2630,-9,1,1,47,0,0,0,1,1,-9,0,1,8.6046591,8.4376469,0,0,0,-1094.8364,0,2,-9,2021,6,0,30,30,1,0,0,24.18763,24.18763,.05,.05,0,0,0,0,0,2,1,0,1,3.2691224,0,45.22,48.57,-9,-9,8.333333333333334,4,2,0,0,10,7,5,0,2542,-195426.63,52553.617,0,0,0,0,2730.822 +1208,1499,2630,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-933.78821,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,10.738008,0,0,1,0,1,0,0,34.66,37.02,-9,-9,5,1,1,0,0,0,7,1,0,757,181886.67,0,0,0,0,0,715.53784 +1209,1500,2631,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-899.21967,0,2,2,2021,10,3,0,45,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9016075,0,49.87,50.46,-9,-9,5,1,1,1,0,8,1,1,1,2255,-175832.05,0,0,0,0,0,4084.6648 +1210,1501,2632,-9,2633,2634,1,0,16,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1061.1228,-9,1,1,2021,30,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9605887,0,6.31,50.43,-9,-9,1.666666666666667,1,1,0,0,0,1,4,1,2494.3333,896145.63,133200.52,459467.88,0,0,0,3339.3269 +1210,1501,2633,2634,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.7820988,8.7710276,0,12,-2,-101.96171,0,1,1,2021,8,0,85,49,1,0,0,8.2534313,8.2534313,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.82,53.97,51.49,57.57,8.333333333333334,1,1,0,0,12,1,4,1,2494.3333,896145.63,133200.52,459467.88,0,0,0,3339.3269 +1210,1501,2634,2633,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,7.9686108,7.5772972,0,12,2,-13.475086,0,2,2,2021,11,1,9,10,1,1,0,26.652023,26.652023,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,52.82,53.97,8.333333333333334,1,1,0,0,12,1,4,1,2494.3333,896145.63,133200.52,459467.88,0,0,0,3339.3269 +1210,1502,2635,-9,2633,2634,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1186.2285,1,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9908209,0,35.91,63.19,-9,-9,5,1,1,0,0,2,1,1,1,658,-299350.59,0,0,0,0,0,165.26355 +1211,1503,2636,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.7617779,8.826335,0,0,0,-1094.433,0,2,2,2021,22,8,82,50,1,8,0,9.1695967,9.1695967,.05,.05,0,0,0,0,0,0,0,0,0,1.7785333,0,22.31,64.42,-9,-9,1.666666666666667,1,1,0,0,12,10,5,1,1731,506665.84,495009.44,0,0,20276.256,0,3498.218 +1212,1504,2637,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,5,8.1803837,8.1044426,0,0,0,-954.46289,0,2,2,2021,25,10,36,35,1,10,0,9.059432,9.059432,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.51,69.81,-9,-9,3.333333333333333,1,1,0,1,11,11,4,1,1478,215524.53,94742.617,107461.39,0,4372.9653,0,1429.504 +1213,1505,2638,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.4680104,5.2443733,0,0,-1039.3374,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1983943,5.3115788,64.09,33.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,297,276923.16,21117.691,149968.55,0,3056.572,0,1055.0505 +1214,1506,2639,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.5072,0,-9,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,15.094958,0,0,1,1,0,0,0,53.06,10.02,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,261,-92109.547,81037.383,0,0,0,0,1766.2208 +1215,1507,2640,2641,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.4572148,7.3647175,0,12,-18,-63.408981,0,3,2,2021,6,0,20,35,1,0,0,10.270638,10.270638,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,13,5,3,1,672.5,596630.5,324276.47,131852.64,0,0,0,2211.6138 +1215,1507,2641,2640,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.5554523,5.5665526,12,18,-7.0811734,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.085783,5.5028486,59.53,56.44,57.06,57.76,8.333333333333334,1,1,0,0,2,5,3,1,672.5,596630.5,324276.47,131852.64,0,0,0,2211.6138 +1216,1508,2642,-9,2646,2643,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1112.2726,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2643,2646,-9,-9,1,1,30,1,4,0,3,3,-9,0,2,0,0,0,4,4,0,0,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.82,51.7,33.1,49.88,10,3,4,1,0,3,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2644,-9,2646,2643,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-958.44861,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2645,-9,2646,2643,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-920.21716,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2646,2643,-9,-9,1,0,26,1,4,0,2,2,-9,0,3,0,0,0,4,-4,0,0,2,2,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.1,49.88,35.82,51.7,10,1,1,0,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1216,1508,2647,-9,2646,2643,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-907.29871,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,8,1,0,450.66666,538357.88,0,847403,302929.25,0,0,1933.7998 +1217,1509,2648,2649,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.6005373,7.3238893,38,5,-42.0765,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8201413,7.8927965,51,49,53.17,36.24,8.333333333333334,1,1,0,0,0,9,4,1,452,1718446.3,987980.13,374744.59,0,5936.3428,377.28864,1723.0952 +1217,1509,2649,2648,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.7545567,7.9582896,2.5059524,38,-5,49.224163,0,2,2,2021,7,0,27,27,1,0,0,7.8037472,7.8037472,0,0,0,0,0,0,0,2,0,0,0,3.6994443,2.5711374,53.17,36.24,51,49,8.333333333333334,1,1,0,0,13,9,4,1,452,1718446.3,987980.13,374744.59,0,5936.3428,377.28864,1723.0952 +1217,1510,2650,-9,2649,2648,1,1,33,0,0,0,2,2,-9,0,3,7.9934497,7.9821534,0,0,0,-1007.0161,0,2,1,2021,5,0,37,5,1,0,1,10.859207,10.859207,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.83,46.31,-9,-9,8.333333333333334,1,1,0,0,13,9,4,1,2211,227904.61,-6169.2725,0,0,0,0,968.00488 +1218,1511,2651,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,8.957901,8.2934847,0,10,-2,70.796577,0,2,2,2021,9,0,42,42,1,0,0,12.473674,12.473674,.05,.05,0,0,0,0,0,0,0,0,0,3.9630294,0,57.06,57.76,50.24,58.02,10,1,1,0,0,9,2,5,1,640,-90065.656,21956.59,0,0,0,0,2148.6704 +1218,1512,2652,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.9201803,9.1271381,0,10,2,34.624008,0,3,3,2021,9,0,40,45,1,0,0,27.383263,27.383263,.05,.05,0,0,0,0,0,0,0,0,0,6.7485142,0,50.24,58.02,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,272,155255.25,286565.59,84329.398,32597.615,18793.791,0,3960.8608 +1219,1513,2653,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9149957,7.8699608,0,0,0,-1063.4371,0,-9,2,2021,7,0,38,36,1,0,0,7.2343187,7.2343187,.05,.05,0,0,0,0,0,0,0,0,0,3.8518043,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,3,0,576,60434.332,-128584.41,0,0,0,0,678.8512 +1220,1514,2654,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1002.2262,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,5.663197,0,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,11,1,0,550,144486.5,0,0,0,0,0,1773.9297 +1221,1515,2655,2656,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,8.2003956,7.8875818,13,1,60.447361,0,-9,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,7.8109813,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,5,9,4,1,1259.5,196974.86,2439.8164,232049.5,0,4360.7461,0,2404.5303 +1221,1515,2656,2655,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.5584178,7.4204402,34,-1,-15.790626,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.6497121,7.359056,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,8,9,4,1,1259.5,196974.86,2439.8164,232049.5,0,4360.7461,0,2404.5303 +1221,1516,2657,-9,2656,2655,1,0,23,0,0,0,2,2,-9,0,5,8.3552771,8.5379257,0,0,0,-982.08594,0,2,2,2021,9,0,75,-9,1,0,0,7.312757,7.312757,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,148,21240.373,0,0,0,0,0,1780.457 +1222,1517,2658,-9,-9,2659,1,0,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1046.1327,-9,-9,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.7508353,0,51.77,58.57,-9,-9,10,1,1,0,0,1,6,5,1,461.5,368040.91,7874.4063,136463.89,0,0,0,2614.6455 +1222,1517,2659,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.0129929,9.2681856,0,0,0,-950.19836,0,2,3,2021,10,1,37,35,1,1,0,26.375,26.375,0,0,.05,0,0,0,0,0,0,0,0,.67766702,0,48.48,54.62,-9,-9,8.333333333333334,1,1,0,0,7,6,5,1,461.5,368040.91,7874.4063,136463.89,0,0,0,2614.6455 +1223,1518,2660,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.46716,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,53.92,36.17,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,2180,-39264.93,0,0,0,0,0,1327.7777 +1224,1519,2661,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,8.3618889,8.6440125,6.6279211,0,0,-1004.3357,0,3,3,2021,12,1,9,20,1,1,0,46.689606,46.689606,0,0,0,0,0,0,0,0,1,1,0,4.3460732,6.4919963,56.5,45.47,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,514,376387.53,556546.25,0,0,0,0,4420.7139 +1225,1520,2662,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.3675203,5.7385435,0,0,-934.34802,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3651385,50.48,56.4,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,1055,533550.06,0,288077.97,0,0,0,-299.25363 +1226,1521,2663,2664,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,2.5640459,2.9020751,47,0,88.381844,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7050495,2.7665203,51.23,48.47,57.9,51.84,10,1,1,0,0,7,10,2,1,233,688216.13,116219.83,382305.38,0,0,0,1648.9247 +1226,1521,2664,2663,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.3419943,6.3379264,47,0,63.585388,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0377674,6.1627669,57.9,51.84,51.23,48.47,10,1,1,0,0,10,10,2,1,233,688216.13,116219.83,382305.38,0,0,0,1648.9247 +1227,1522,2665,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.1158695,8.1900883,0,0,-929.08301,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2399397,7.6723208,60.03,39.83,-9,-9,10,1,1,0,0,2,8,4,1,152,1271293.4,236685.61,256702.3,0,0,0,2957.7603 +1228,1523,2666,2668,-9,-9,1,0,51,0,3,0,2,2,-9,0,3,7.1057277,7.1534781,0,22,-2,-133.31279,0,2,2,2021,3,0,7,20,1,0,0,20.565132,20.565132,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,58.32,35.09,6.666666666666667,3,4,0,0,8,8,3,0,859,2575317.3,1599900.8,897376.19,0,527.05127,0,2999.0161 +1228,1523,2667,-9,2666,2668,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.0457,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,859,2575317.3,1599900.8,897376.19,0,527.05127,0,2999.0161 +1228,1523,2668,2666,-9,-9,1,1,53,0,3,0,1,1,-9,0,3,8.1260004,8.2613821,0,10,2,71.73539,-9,-9,-9,2021,9,0,8,0,1,0,0,46.129101,46.129101,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,35.09,55.36,51.57,3.333333333333333,3,4,0,0,3,8,3,0,859,2575317.3,1599900.8,897376.19,0,527.05127,0,2999.0161 +1229,1524,2669,2670,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.8218756,5.6936169,49,0,-69.435059,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0810356,5.7920346,49.04,55.86,56.74,44.56,8.333333333333334,1,1,0,0,4,5,3,1,422.5,767531,688476.19,0,0,0,0,3416.6753 +1229,1524,2670,2669,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.9611216,8.4270477,49,0,-67.602859,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5622025,8.2337313,56.74,44.56,49.04,55.86,8.333333333333334,1,1,0,0,7,5,3,1,422.5,767531,688476.19,0,0,0,0,3416.6753 +1230,1525,2671,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.3405399,9.056922,0,0,0,-1024.3846,0,-9,-9,2021,11,0,45,47,1,0,0,24.276745,24.276745,0,0,0,0,0,0,0,0,0,0,0,3.6179562,0,43.76,58.35,-9,-9,6.666666666666667,1,1,0,0,15,9,5,1,652,2900652.8,2587256.5,239054.64,0,0,0,2572.0337 +1231,1526,2672,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.620656,7.5706701,0,0,-1013.7231,0,3,1,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9306555,7.6384645,58.58,40.59,-9,-9,10,1,1,0,0,2,9,3,1,355,796415.69,387345.81,131094.48,0,0,0,1994.7397 +1232,1527,2673,-9,2674,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.1229,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,947,40225.957,100183.64,0,0,6059.4658,0,2091.5796 +1232,1527,2674,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.5447006,8.3564892,0,0,0,-1022.3261,0,2,2,2021,9,0,39,39,1,0,0,11.749472,11.749472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,2,4,0,947,40225.957,100183.64,0,0,6059.4658,0,2091.5796 +1232,1527,2675,-9,2674,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.26208,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,947,40225.957,100183.64,0,0,6059.4658,0,2091.5796 +1233,1528,2676,2677,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.7597647,7.7971578,6,-3,28.086897,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0467339,63.24,42.39,60.12,54.8,10,1,1,0,0,4,4,3,1,245,1115470,419251.06,188121.16,0,0,0,3259.8613 +1233,1528,2677,2676,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.581841,6.9766555,6,3,-97.868912,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8981614,6.8765316,60.12,54.8,63.24,42.39,8.333333333333334,1,1,0,0,0,4,3,1,245,1115470,419251.06,188121.16,0,0,0,3259.8613 +1234,1529,2678,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.3790064,8.5812254,5.9361119,0,0,-843.10901,0,3,3,2021,11,1,37,37,1,1,0,18.747047,18.747047,.05,.05,0,0,0,0,0,0,0,0,0,3.1295671,6.0040207,52.69,43.18,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,65,663645.81,267854.41,88945.875,0,0,8049.5859,1575.1703 +1235,1530,2679,-9,2680,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.7664,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1235,1530,2680,2681,-9,-9,1,0,28,1,2,0,2,2,-9,0,2,0,0,0,2,-1,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,34.05,44.25,27.05,21.51,5,1,1,0,0,4,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1235,1530,2681,2680,-9,-9,1,1,29,1,2,0,3,3,-9,1,1,0,0,0,2,1,0,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.05,21.51,34.05,44.25,1.666666666666667,1,1,0,0,0,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1235,1530,2682,-9,2680,2681,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.13599,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,1,0,557.75,-41924.59,0,0,0,9082.9893,145.38258,3078.4192 +1236,1531,2683,-9,2684,2686,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.0095,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2684,2686,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.1670532,7.1426749,0,16,-11,126.03169,0,-9,-9,2021,6,0,24,27,1,0,0,5.7439013,5.7439013,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.56,54.55,10,1,1,0,0,10,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2685,-9,2684,2686,1,0,17,1,3,1,3,0,0,0,3,0,0,0,0,0,-1073.1975,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.74,51,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2686,2684,-9,-9,1,1,46,1,3,0,2,2,-9,0,4,0,0,0,16,11,22.260096,0,2,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.56,54.55,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1236,1531,2687,-9,2684,2686,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-976.37109,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,265.79999,80365.703,0,195166.08,120883.73,0,0,3117.9204 +1237,1532,2688,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.9614077,7.9204292,0,0,-982.65509,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3329196,7.7975359,50.48,56.4,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,1489,487041.88,370476.19,249761.42,0,0,0,1036.4924 +1238,1533,2689,2690,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.8068528,7.8480501,11,11,34.898872,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5267186,58.32,50.22,58.32,50.22,10,1,1,0,0,0,6,4,1,789,1395533.3,1038755.6,307469.22,0,893.59119,0,2635.4761 +1238,1533,2690,2689,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.9609656,7.515481,11,-11,-106.34927,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6862159,58.32,50.22,58.32,50.22,8.333333333333334,1,1,0,0,0,6,4,1,789,1395533.3,1038755.6,307469.22,0,893.59119,0,2635.4761 +1239,1534,2691,2692,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.8355865,8.822978,0,2,0,-21.497253,0,2,2,2021,13,5,40,38,1,5,0,17.389601,17.389601,.05,.05,0,0,0,0,0,0,0,0,0,3.2977214,0,29.7,67.40000000000001,39.6,49.52,10,1,1,0,0,13,6,5,1,856,8343.2988,120349.62,97945.133,126457.59,13273.063,2455.282,3891.0918 +1239,1534,2692,2691,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.7645617,8.4366589,0,2,0,56.040176,0,-9,-9,2021,16,4,43,80,1,4,0,15.33212,15.33212,.05,.05,0,0,0,0,0,2,0,0,0,2.5658667,0,39.6,49.52,29.7,67.40000000000001,5,1,1,0,0,5,6,5,1,856,8343.2988,120349.62,97945.133,126457.59,13273.063,2455.282,3891.0918 +1240,1535,2693,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9160709,7.7888069,0,0,-1053.0244,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.511476,4.9494572,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,198,714941.31,401534.13,242143.66,0,0,0,2487.5693 +1241,1536,2694,2695,-9,-9,1,1,38,0,3,0,2,2,-9,0,5,8.0064802,7.6460533,0,13,2,-28.244545,0,3,3,2021,6,0,39,40,1,0,0,6.4284296,6.4284296,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,62.39,56.71,38.11,59.76,8.333333333333334,2,3,0,0,12,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2695,2694,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,13,-2,91.110268,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.11,59.76,62.39,56.71,6.666666666666667,2,3,1,0,5,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2696,-9,2695,2694,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.10248,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2697,-9,2695,2694,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-973.11157,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1241,1536,2698,-9,2695,2694,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-894.49469,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,2,1,250.2,-10877.201,8464.791,0,0,14584.118,974.58716,1701.3983 +1242,1537,2699,2700,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8206272,8.7146463,0,7,9,26.947615,0,2,2,2021,10,0,43,49,1,0,0,22.090261,22.090261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,43.26,35.91,6.666666666666667,1,1,0,0,10,7,5,1,300,2432340,904411,695671.13,65766.5,2523.2053,0,4446.7485 +1242,1537,2700,2699,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.0775795,8.1764421,0,24,0,-114.36327,0,2,3,2021,12,0,15,5,1,0,0,32.770428,32.770428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.26,35.91,51.83,57.2,8.333333333333334,1,1,0,0,10,7,5,1,300,2432340,904411,695671.13,65766.5,2523.2053,0,4446.7485 +1242,1538,2701,-9,2700,2699,1,0,20,0,0,0,2,2,-9,0,4,8.292285,8.3974123,0,0,0,-966.90894,0,2,2,2021,7,0,50,50,1,0,1,9.5064478,9.5064478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,132,30481.307,68268.695,0,0,0,0,1068.349 +1242,1539,2702,-9,2700,2699,1,1,18,0,0,0,2,2,-9,0,3,8.1241589,8.4290838,0,0,0,-938.08112,0,2,2,2021,6,0,37,0,1,0,1,10.39836,10.39836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.37,40.83,-9,-9,10,1,1,0,0,2,7,4,1,510,29639.842,57434.465,0,0,0,-258.99695,1413.772 +1243,1540,2703,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.1400633,7.9624591,0,0,0,-950.18817,0,2,2,2021,19,5,38,38,1,5,0,9.4942865,9.4942865,.05,.05,0,0,0,0,0,0,0,0,0,.084770679,0,42.72,26.78,-9,-9,3.333333333333333,1,1,0,1,10,5,4,1,131,426691.72,354539.03,104267.34,0,0,0,1164.1022 +1244,1541,2704,2706,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,8.3408966,8.1001129,0,11,2,40.764011,0,-9,-9,2021,7,0,54,60,1,0,0,7.5875087,7.5875087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,54.69,57.47,8.333333333333334,1,1,0,0,8,1,4,1,1175.6666,266997.16,-1198.8705,307573.13,119343.4,2138.167,5800.6821,3770.7014 +1244,1541,2705,-9,2706,2704,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.4987,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1175.6666,266997.16,-1198.8705,307573.13,119343.4,2138.167,5800.6821,3770.7014 +1244,1541,2706,2704,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.8419671,7.9889722,0,10,-2,63.71838,0,-9,-9,2021,8,0,43,26,1,0,0,6.5243864,6.5243864,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.65,56.13,10,1,1,0,0,8,1,4,1,1175.6666,266997.16,-1198.8705,307573.13,119343.4,2138.167,5800.6821,3770.7014 +1245,1542,2707,2708,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.4571023,7.252902,45,4,60.315311,0,3,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.2705073,7.6543036,45.58,55.84,44.49,61.79,8.333333333333334,1,1,0,0,8,9,3,1,306,751414.69,128719.06,552169.75,0,0,0,2163.688 +1245,1542,2708,2707,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.522078,7.6214967,45,-4,-92.736633,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4377985,44.49,61.79,45.58,55.84,3.333333333333333,1,1,0,0,7,9,3,1,306,751414.69,128719.06,552169.75,0,0,0,2163.688 +1246,1543,2709,2711,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.6941557,8.5055275,0,27,1,-15.829226,0,1,2,2021,6,0,47,51,1,0,0,12.386218,12.386218,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,9,5,5,1,3056.6667,577715.19,452606.19,332794.47,220206.94,27803.738,0,6259.2324 +1246,1543,2710,-9,2709,2711,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1010.9725,-9,1,1,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2525752,0,57.46,56.16,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,3056.6667,577715.19,452606.19,332794.47,220206.94,27803.738,0,6259.2324 +1246,1543,2711,2709,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,9.5282803,9.6584139,0,27,-1,93.997337,0,2,2,2021,8,0,42,47,1,0,0,24.566679,24.566679,.05,.05,0,0,0,0,0,0,0,0,0,3.6334515,0,54.79,55.86,57.16,56.15,6.666666666666667,1,1,0,0,11,5,5,1,3056.6667,577715.19,452606.19,332794.47,220206.94,27803.738,0,6259.2324 +1246,1544,2712,-9,2709,2711,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1056.1801,1,1,1,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,1086,-37139.203,0,0,0,0,0,-575.87128 +1247,1545,2713,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.3277264,7.6793408,0,0,0,-917.89893,0,3,3,2021,31,12,16,16,1,12,0,11.088916,11.088916,.05,.05,0,0,0,0,0,7,1,1,0,0,0,25.77,41.11,-9,-9,1.666666666666667,1,1,0,1,8,7,3,0,998,251191.36,262615.25,0,0,0,0,921.18329 +1247,1546,2714,-9,2713,-9,1,0,29,0,0,0,2,2,-9,1,1,0,0,0,0,0,-973.56976,0,3,-9,2021,35,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.86,31.41,-9,-9,1.666666666666667,4,2,0,1,0,7,1,0,752,-73724.188,0,0,0,0,0,332.43158 +1247,1547,2715,-9,2713,-9,1,1,20,0,0,0,2,2,-9,0,4,8.017107,7.7553105,0,0,0,-1055.4366,0,3,-9,2021,6,0,30,37,1,0,1,12.576123,12.576123,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,9,7,4,0,172,-135860.59,0,0,0,0,0,1411.6438 +1248,1548,2716,2717,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.7916541,5.8443346,50,6,-118.72515,0,2,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2318258,5.6864676,39.33,60.15,49.02,53.02,3.333333333333333,1,1,0,0,0,5,2,1,776.5,379790.88,167291.44,99716.5,0,0,0,2088.5654 +1248,1548,2717,2716,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.0861111,5.0295162,50,-6,18.140923,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7227483,4.8943644,49.02,53.02,39.33,60.15,8.333333333333334,1,1,0,0,0,5,2,1,776.5,379790.88,167291.44,99716.5,0,0,0,2088.5654 +1249,1549,2718,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.2529807,6.4200525,0,0,-942.54486,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3936672,6.4191346,43.63,23.34,-9,-9,0,1,1,0,0,0,11,2,1,574,575143.13,327422.91,468722.53,0,0,0,1345.7462 +1250,1550,2719,-9,2720,2721,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.1094,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,510,205386.16,0,202632.59,-6669.2778,0,0,2708.1206 +1250,1550,2720,2721,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.3835206,7.6189442,0,9,-4,-51.155113,0,2,2,2021,11,0,37,20,1,0,0,5.4007168,5.4007168,0,0,0,0,0,0,0,0,1,1,0,0,0,48.48,55.86,57.03,48.06,6.666666666666667,1,1,0,0,10,10,4,1,510,205386.16,0,202632.59,-6669.2778,0,0,2708.1206 +1250,1550,2721,2720,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.7178402,8.8023825,0,9,4,43.273312,0,-9,-9,2021,8,0,41,39,1,0,0,18.612553,18.612553,0,0,0,0,0,0,0,0,1,1,0,4.8629637,0,57.03,48.06,48.48,55.86,8.333333333333334,1,1,0,0,10,10,4,1,510,205386.16,0,202632.59,-6669.2778,0,0,2708.1206 +1251,1551,2722,2723,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.1849813,8.0020027,0,9,-2,158.79356,0,-9,2,2021,11,0,40,40,1,0,0,13.443468,13.443468,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.91,49,48.14,53.42,8.333333333333334,1,1,0,0,8,4,5,1,1196,1062470.5,880650.88,134059.27,116695,639.40918,0,3541.2842 +1251,1551,2723,2722,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1461201,7.7510576,0,9,2,-11.834031,0,-9,-9,2021,10,2,38,38,1,2,0,9.7746124,9.7746124,0,0,0,0,0,0,0,0,0,0,0,0,0,48.14,53.42,54.91,49,1.666666666666667,1,1,0,0,10,4,5,1,1196,1062470.5,880650.88,134059.27,116695,639.40918,0,3541.2842 +1252,1552,2724,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.8545108,7.0810347,0,0,-1005.8996,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2882047,45.28,37.04,-9,-9,1.666666666666667,1,1,0,0,0,6,3,1,532,281195.5,248981.91,0,0,0,0,1065.0642 +1253,1553,2725,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.8766804,8.6328764,0,0,0,-980.43427,0,2,2,2021,10,0,36,36,1,0,0,18.954952,18.954952,.05,.05,0,0,0,0,0,0,0,0,0,3.1794572,0,54.1,59.11,-9,-9,8.333333333333334,4,2,0,0,11,10,5,1,703,283972.97,35992.43,177818.86,86693.844,0,4521.5293,1381.3383 +1254,1554,2726,2727,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.7384071,7.5550609,0,23,0,-7.12605,0,3,2,2021,17,6,37,37,1,6,0,7.5750136,7.5750136,.05,.05,0,0,0,0,0,0,1,1,0,3.7266045,0,47.06,44.37,50.43,53.69,8.333333333333334,1,1,0,0,9,10,5,1,661,430342.97,199008.53,266748,111074.46,0,0,4105.9023 +1254,1554,2727,2726,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.2550611,8.7182379,6.6851754,23,0,121.26072,0,2,2,2021,7,0,38,40,1,0,0,14.397189,14.397189,.05,.05,0,0,0,0,0,0,1,1,0,4.2567692,7.422224,50.43,53.69,47.06,44.37,8.333333333333334,1,1,0,0,9,10,5,1,661,430342.97,199008.53,266748,111074.46,0,0,4105.9023 +1254,1555,2728,-9,2726,2727,1,0,21,0,0,0,2,2,-9,0,4,7.6024384,7.6503806,0,0,0,-1065.7667,0,2,3,2021,20,7,27,34,1,7,1,9.8142099,9.8142099,0,0,0,0,0,0,0,0,1,1,0,.15868929,0,25.14,68.03,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,553,-16591.125,0,0,0,0,0,1324.4231 +1254,1556,2729,-9,2726,2727,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1178.7142,1,2,2,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4502854,0,33.39,36.28,-9,-9,3.333333333333333,1,1,0,0,2,10,1,1,870,-196427.33,0,0,0,0,0,-202.21112 +1255,1557,2730,2731,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.8853297,7.3134012,0,31,-1,-57.980251,0,3,3,2021,12,0,19,19,1,0,0,7.6059904,7.6059904,0,0,0,0,0,0,0,0,0,0,0,6.4436822,0,55.79,52.62,54,53,8.333333333333334,1,1,0,0,8,6,5,1,2346,972927.63,751950.63,147535.44,24092.57,0,0,3902.6978 +1255,1557,2731,2730,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.3123446,8.7805719,7.8674712,6,1,-95.348068,0,-9,-9,2021,9,0,37,37,1,1,0,7.9546862,7.9546862,.05,.05,0,0,0,0,0,0,0,0,0,0,7.7855659,54,53,55.79,52.62,8,1,1,0,0,1,6,5,1,2346,972927.63,751950.63,147535.44,24092.57,0,0,3902.6978 +1255,1558,2732,-9,2730,2731,1,1,21,0,0,0,2,2,-9,0,4,6.8942294,7.0469475,0,0,0,-1119.7975,0,2,2,2021,10,0,37,37,1,1,1,2.395525,2.395525,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,6,2,1,533,88182.086,0,0,0,0,0,810.38617 +1256,1559,2733,-9,2735,2734,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-978.74194,-9,2,1,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,757.66669,193238.86,121719.64,127161.23,154047.81,0,0,4180.8018 +1256,1559,2734,2735,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.9330759,8.8177547,0,10,-2,3.2016404,0,2,3,2021,11,0,50,-9,1,2,0,16.401438,16.401438,.05,.05,0,0,0,0,0,2,1,1,0,3.0262549,0,53.11,47.09,42.76,49.72,6.666666666666667,1,1,0,0,11,2,5,1,757.66669,193238.86,121719.64,127161.23,154047.81,0,0,4180.8018 +1256,1559,2735,2734,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7940798,8.2060595,0,10,2,6.2591662,0,2,3,2021,20,8,39,39,1,8,0,7.6018515,7.6018515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.76,49.72,53.11,47.09,3.333333333333333,1,1,0,0,10,2,5,1,757.66669,193238.86,121719.64,127161.23,154047.81,0,0,4180.8018 +1257,1560,2736,2737,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,0,0,66,-1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,38.570526,0,0,1,1,0,2.730304,0,63.89,20.26,41.3,47.04,10,1,1,0,0,0,1,1,1,711,208185.84,2075.9751,99718,21532.377,0,0,633.62756 +1257,1560,2737,2736,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,66,1,0,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,41.3,47.04,63.89,20.26,10,1,1,0,0,0,1,1,1,711,208185.84,2075.9751,99718,21532.377,0,0,633.62756 +1258,1561,2738,2739,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,11,8,10.904052,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,34.99,57.97,57.91,43.45,3.333333333333333,1,1,0,0,13,10,2,0,602,717327.63,178368.75,272453.5,0,0,0,1154.5616 +1258,1561,2739,2738,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.271863,7.2365065,0,11,-8,-158.55028,0,2,1,2021,9,2,12,12,1,2,0,12.736644,12.736644,0,0,0,0,0,0,0,0,1,1,0,0,0,57.91,43.45,34.99,57.97,6.666666666666667,1,1,0,0,13,10,2,0,602,717327.63,178368.75,272453.5,0,0,0,1154.5616 +1259,1562,2740,2741,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.0069962,8.0709925,21,9,83.946167,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,9.5482464,0,0,1,1,0,7.2918482,7.7962713,36.78,41.13,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,380,872920.13,176596.72,333367.56,0,0,0,1836.2087 +1259,1562,2741,2740,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,2.6093814,2.6315222,21,0,10.577249,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.65945488,2.6672647,57.16,56.15,36.78,41.13,10,1,1,0,0,8,5,3,1,380,872920.13,176596.72,333367.56,0,0,0,1836.2087 +1260,1563,2742,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,0,0,0,1,10,0,0,3,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.17,59.31,36.02,37.92,3.333333333333333,1,1,1,1,3,4,1,0,2376,29543.633,0,0,0,0,0,525.15387 +1260,1564,2743,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,0,0,0,1,-10,0,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.02,37.92,41.17,59.31,5,1,1,1,1,0,4,1,0,872,67429.703,0,0,0,0,0,1084.2925 +1261,1565,2744,2748,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,7.6048017,7.5831556,0,15,3,87.035667,0,3,1,2021,9,0,40,20,1,1,0,6.0712242,6.0712242,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,2,3,0,0,8,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2745,-9,2748,2744,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.7368,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2746,-9,2748,2744,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.0123,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2747,-9,2748,2744,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.7781,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1261,1565,2748,2744,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,15,-3,-130.09697,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,2,3,0,0,0,8,2,0,1495,40673.141,0,0,0,1952.4573,116.20158,2612.6143 +1262,1566,2749,2750,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1823101,7.9684944,0,6,0,-55.480606,0,3,3,2021,11,0,37,38,1,0,0,10.287006,10.287006,.05,.05,0,0,0,0,0,2,1,1,0,4.5541348,0,57.33,53.46,57.52,15.94,1.666666666666667,1,1,0,0,7,7,4,1,1537.5,31975.232,-40569.215,161747.44,54576.617,0,0,2715.8467 +1262,1566,2750,2749,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,7.8094969,8.0509739,0,6,0,-1.5441771,0,3,3,2021,10,0,41,42,1,0,0,6.8508439,6.8508439,.05,.05,0,0,0,0,0,0,1,1,0,5.015584,0,57.52,15.94,57.33,53.46,6.666666666666667,1,1,0,0,7,7,4,1,1537.5,31975.232,-40569.215,161747.44,54576.617,0,0,2715.8467 +1263,1567,2751,2752,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.4294586,8.0721188,46,-1,-44.191078,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1226482,8.3814116,60.13,49.27,54.95,44.79,8.333333333333334,1,1,0,0,5,4,4,1,461,2058883.5,1557289,299223,0,0,0,3976.4717 +1263,1567,2752,2751,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.5664849,7.1405416,46,1,42.448261,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1195598,7.2830653,54.95,44.79,60.13,49.27,8.333333333333334,1,1,0,0,0,4,4,1,461,2058883.5,1557289,299223,0,0,0,3976.4717 +1264,1568,2753,2754,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,0,0,2,26,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,17.115435,0,0,1,1,0,0,0,57,11.12,27.23,33.77,6.666666666666667,1,1,0,0,0,7,1,1,7139.5,453509.25,-63577.809,313564.56,0,0,0,2241.188 +1264,1568,2754,2753,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,2,-26,0,0,-9,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.23,33.77,57,11.12,0,1,1,0,0,0,7,1,1,7139.5,453509.25,-63577.809,313564.56,0,0,0,2241.188 +1264,1569,2755,-9,2754,2753,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1031.2006,0,3,3,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.49,54.45,-9,-9,5,1,1,1,1,0,7,1,1,608,32814.262,0,0,0,0,0,888.45148 +1264,1570,2756,-9,2754,2753,1,1,23,0,0,0,2,2,-9,0,4,5.9233527,6.1426082,0,0,0,-1012.4603,0,3,3,2021,7,0,25,16,1,0,1,2.2125061,2.2125061,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,7,2,1,1028,-45647.965,0,0,0,0,0,-576.73981 +1265,1571,2757,2759,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.7692146,7.8682384,0,10,6,126.73037,0,3,3,2021,22,10,33,32,1,10,0,10.36673,10.36673,.05,.05,0,0,0,0,0,0,0,0,0,1.2644612,0,29.78,51.23,44.78,56.37,5,1,1,0,0,10,6,5,1,1847.3334,305416.59,178241.45,235922.69,234570.77,39920.531,0,4286.3208 +1265,1571,2758,-9,2757,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.9912,-9,1,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.97,51.9,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,1847.3334,305416.59,178241.45,235922.69,234570.77,39920.531,0,4286.3208 +1265,1571,2759,2757,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.1099949,8.961195,0,10,-6,-153.09863,0,-9,-9,2021,13,5,59,59,1,5,0,13.574198,13.574198,.05,.05,0,0,0,0,0,0,0,0,0,4.0465727,0,44.78,56.37,29.78,51.23,3.333333333333333,1,1,0,0,12,6,5,1,1847.3334,305416.59,178241.45,235922.69,234570.77,39920.531,0,4286.3208 +1266,1572,2760,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,0,0,0,0,-949.55054,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.7160738,0,7,1,1,0,0,0,53.78,21.48,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,735,91353.773,0,128693.78,0,0,0,933.08716 +1267,1573,2761,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.0164261,6.1390672,0,0,-1028.6511,0,3,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7753966,6.1076517,21.77,64.69,-9,-9,0,1,1,0,1,7,7,2,0,313,264643.78,79619.289,0,0,0,0,-1.3760154 +1268,1574,2762,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,5.9704514,6.1012435,0,0,0,-1067.4611,-9,3,3,2021,11,0,13,0,1,1,0,2.8601201,2.8601201,0,0,0,0,0,0,0,14.5,0,0,0,0,0,49,49,-9,-9,7,1,1,0,1,2,8,2,0,1104,69414.992,62229.16,0,0,3565.2686,0,445.02325 +1269,1575,2763,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,6.3451638,7.0323982,0,0,-1042.1996,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6862445,60.08,21.04,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,219,73907.469,66464.492,86338.797,0,0,0,1820.3883 +1270,1576,2764,2765,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,7.3717399,7.5925174,6.2827759,2,-2,-130.67989,0,2,2,2021,8,0,9,45,1,0,0,20.110243,20.110243,0,0,0,0,0,0,0,0,1,1,0,7.5622482,6.6147361,59.43,58.05,57.09,46.7,10,1,1,0,0,13,12,3,1,1202.5,518538.13,6664.1421,242898.34,0,0,0,3672.8535 +1270,1576,2765,2764,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2426124,7.77105,23,2,24.73423,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2567973,57.09,46.7,59.43,58.05,8.333333333333334,1,1,0,0,12,12,3,1,1202.5,518538.13,6664.1421,242898.34,0,0,0,3672.8535 +1271,1577,2766,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1039.0416,0,3,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.12443934,0,42.2,21.18,-9,-9,6.666666666666667,1,1,0,0,1,4,1,0,105,6572.4189,59576.215,0,0,0,0,1640.9027 +1272,1578,2767,2768,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,8.8575001,8.9055042,0,3,2,-55.817654,0,2,2,2021,12,1,37,37,1,1,0,17.125111,17.125111,0,0,.05,0,0,0,0,0,0,0,0,4.6523361,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,265,1269012.3,1078827.4,176234.23,0,0,0,3339.9966 +1272,1578,2768,2767,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,7.7377114,7.520184,0,3,-2,38.638702,0,3,3,2021,6,0,30,20,1,0,0,8.0537653,8.0537653,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,10,1,1,0,0,7,12,5,1,265,1269012.3,1078827.4,176234.23,0,0,0,3339.9966 +1272,1579,2769,-9,2768,2767,1,0,27,0,0,0,1,1,1,0,4,0,0,0,0,0,-1058.0292,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,1,0,2,12,1,1,676,172490.95,0,0,0,0,0,0 +1272,1580,2770,-9,2768,2767,1,0,22,0,0,0,1,1,1,0,5,6.3283873,6.3130374,0,0,0,-1104.575,-9,3,1,2021,4,0,5,0,1,0,1,17.623863,17.623863,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,1043,-270936.34,0,0,0,0,0,-147.70766 +1273,1581,2771,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,6.6969628,6.4812016,18,12,-71.374512,0,-9,3,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.6137118,7.030375,29.23,45.05,51,56,1.666666666666667,1,1,1,0,8,6,2,1,2345,-39475.953,23612.5,0,0,0,0,156.0677 +1274,1582,2772,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.5510454,8.5857487,0,0,0,-1099.1068,0,1,2,2021,6,0,37,37,1,0,0,17.266809,17.266809,.05,.05,0,0,0,0,0,0,1,1,0,4.9451094,0,65.21000000000001,44.28,-9,-9,8.333333333333334,1,1,0,0,6,11,5,1,2728,468770.63,210267.94,142676.52,0,0,0,1638.5884 +1275,1583,2773,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.1204147,7.9665222,0,0,0,-939.16223,0,-9,-9,2021,20,7,32,31,1,7,0,8.7540932,8.7540932,0,0,0,0,0,0,0,0,0,0,0,0,0,34.55,35.52,-9,-9,3.333333333333333,4,2,0,1,9,2,4,0,454,-75083.961,0,0,0,0,0,1372.7704 +1276,1584,2774,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.0313511,6.65728,0,0,-916.13098,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9190116,6.6166878,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1964,227999.28,123877.1,0,0,0,0,1135.7609 +1277,1585,2775,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,6.7634373,6.9593687,20,12,-109.67388,0,-9,3,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.3223128,6.9894738,49.72,39.53,57.97,37.36,6.666666666666667,1,1,1,0,8,6,2,1,1288,-94195.172,46240.254,0,0,0,0,694.71594 +1277,1586,2776,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,6.2078433,6.6059499,0,10,-12,6.0734625,0,-9,-9,2021,11,1,20,10,1,1,0,2.9408169,2.9408169,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.97,37.36,49.72,39.53,5,1,1,0,0,9,6,2,1,653,115797.31,-66276.039,0,0,28866.77,0,369.93365 +1278,1587,2777,-9,2778,-9,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-985.04089,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,11,4,1,231.5,420328.25,254139.75,213182.05,129496.8,0,0,2460.8828 +1278,1587,2778,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.6007423,8.7952738,0,0,0,-949.60608,-9,1,1,2021,8,0,44,0,1,0,0,15.194944,15.194944,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,11,4,1,231.5,420328.25,254139.75,213182.05,129496.8,0,0,2460.8828 +1279,1588,2779,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.0957336,7.9717817,0,0,-924.71277,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.9398341,8.0899687,66.37,38.36,-9,-9,10,1,1,0,0,0,11,4,1,261,795805,412231.63,183728.97,0,0,0,2546.1587 +1280,1589,2780,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,6.7600603,6.3945498,0,0,0,-1138.4094,0,3,-9,2021,27,11,6,6,1,11,0,11.766842,11.766842,0,0,0,0,0,0,0,0,1,0,1,0,0,50,56,-9,-9,0,1,1,0,1,5,4,2,0,4808,74320.977,0,161959.67,0,0,5720.4316,168.23582 +1280,1590,2781,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1067.1079,0,-9,-9,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,3.9904675,0,62.39,56.71,-9,-9,10,1,1,1,0,0,4,1,0,2012,2241.6807,0,0,0,0,0,552.19794 +1281,1591,2782,2783,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.4910989,7.828618,0,27,7,17.519087,0,3,3,2021,10,0,35,40,1,0,0,5.9293361,5.9293361,.05,.05,0,0,0,0,0,2,1,1,0,0,0,56.11,36.37,29.72,50.54,5,1,1,0,0,9,11,4,1,350.5,438629.81,80579.57,66995.547,4162.0425,0,0,2351.5225 +1281,1591,2783,2782,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.3044672,8.1818848,0,27,-7,-157.63672,0,3,3,2021,9,1,33,22,1,1,0,14.987599,14.987599,0,0,0,0,0,0,0,7,1,1,0,0,0,29.72,50.54,56.11,36.37,5,1,1,0,0,9,11,4,1,350.5,438629.81,80579.57,66995.547,4162.0425,0,0,2351.5225 +1281,1592,2784,-9,2783,2782,1,1,23,0,0,0,2,2,-9,0,2,8.1873226,7.6948605,0,0,0,-1019.6411,0,2,3,2021,12,1,38,18,1,1,1,9.8879471,9.8879471,0,0,0,0,0,0,0,0,1,1,0,0,0,36.2,41.84,-9,-9,3.333333333333333,1,1,0,0,3,11,4,1,495,75494.984,0,0,0,0,0,1423.0665 +1281,1593,2785,-9,2783,2782,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1062.6234,1,2,3,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,558,-43529.582,0,0,0,0,0,909.95111 +1282,1594,2786,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-917.83673,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,62.19,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,1754,-59190.203,0,0,0,0,0,411.57922 +1283,1595,2787,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-990.66846,-9,-9,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,43.73,-9,-9,0,1,1,0,0,4,7,1,1,4486,32674.299,0,0,0,0,-220.5713,550.38605 +1284,1596,2788,-9,-9,-9,1,1,42,0,2,0,2,2,0,0,5,0,0,0,0,0,-940.24841,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.38,55.95,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,200,-154950.33,0,0,0,0,0,1402.3357 +1285,1597,2789,2790,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,8.0568228,7.9080534,8,2,-60.175476,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1087618,8.1479359,62.39,56.71,52.62,45.08,8.333333333333334,1,1,0,0,9,10,3,1,1861.5,585585.88,410055.25,0,0,0,0,2647.2358 +1285,1597,2790,2789,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.2248912,5.1321058,8,-2,-7.0371637,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9941529,5.1731277,52.62,45.08,62.39,56.71,8.333333333333334,1,1,0,0,3,10,3,1,1861.5,585585.88,410055.25,0,0,0,0,2647.2358 +1285,1598,2791,-9,2790,2789,1,0,23,0,0,0,1,1,1,0,5,8.1106033,8.0932817,0,0,0,-929.60406,-9,2,2,2021,21,7,42,0,1,7,0,7.2517118,7.2517118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,21.79,69.98999999999999,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1072,-49997.52,-61532.887,0,0,0,0,566.7995 +1286,1599,2792,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.1962442,5.3542709,0,0,-1123.3809,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3425918,43.49,43.6,-9,-9,6.666666666666667,1,1,0,1,0,2,2,0,545,121838.92,58110.711,0,0,0,0,2231.7119 +1287,1600,2793,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.1776991,7.1038985,0,0,-931.18433,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,1.7532028,5.0377545,21.883066,0,1,1,0,0,7.0560241,44.43,43.51,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1526,557363.31,318896.84,220487.78,0,0,0,2431.4939 +1288,1601,2794,2797,-9,-9,1,0,39,0,3,0,1,1,-9,0,3,0,0,0,15,-6,83.369759,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.51,59.43,35.49,44.17,6.666666666666667,2,3,0,1,3,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2795,-9,2794,2797,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.00299,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2796,-9,2794,2797,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1149.7305,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2797,2794,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,6.6311603,6.9445443,0,15,6,85.535683,0,3,2,2021,20,8,25,30,1,8,0,4.5033627,4.5033627,.05,.05,0,0,0,0,0,0,1,0,1,0,0,35.49,44.17,38.51,59.43,3.333333333333333,2,3,0,0,7,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1288,1601,2798,-9,2794,2797,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-846.33734,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,2,1,571.40002,424885.56,196402.05,291029.5,100114.59,0,0,1641.3011 +1289,1602,2799,2800,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.2759027,8.857811,0,12,-5,13.721148,0,2,2,2021,6,0,50,65,1,0,0,16.291853,16.291853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.39,43.02,10,1,1,0,0,14,8,4,0,1458,164294,100802.03,366785.19,202381.3,6494.542,8493.8789,3784.3538 +1289,1602,2800,2799,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.3769555,7.5028133,0,14,5,136.01364,0,3,3,2021,12,1,20,30,1,1,0,8.6934576,8.6934576,0,0,0,0,0,0,0,2,0,0,0,0,0,46.39,43.02,57.16,56.15,6.666666666666667,1,1,0,0,14,8,4,0,1458,164294,100802.03,366785.19,202381.3,6494.542,8493.8789,3784.3538 +1290,1603,2801,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.6102667,8.3980865,0,0,0,-1064.1935,0,2,-9,2021,6,0,38,38,1,0,0,15.380936,15.380936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1414,709950.63,378652.06,326123.75,36970.875,5899.085,4538.3022,1894.8158 +1290,1604,2802,-9,2801,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1053.8191,0,2,-9,2021,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,6,1,1,1,0,0,9,1,1,1181,42940.727,0,0,0,0,0,0 +1291,1605,2803,2804,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.7370825,9.0221205,0,6,-1,88.3423,0,2,2,2021,9,0,55,50,1,0,0,18.756063,18.756063,0,0,0,0,0,0,0,7,1,1,0,4.4584761,0,50.17,53.95,42.21,42.88,8.333333333333334,1,1,0,0,7,11,5,1,3417,306646.25,81713.25,308824.5,211032.88,0,0,3522.9399 +1291,1605,2804,2803,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,6,1,-33.513828,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3460541,0,42.21,42.88,50.17,53.95,6.666666666666667,1,1,0,0,1,11,5,1,3417,306646.25,81713.25,308824.5,211032.88,0,0,3522.9399 +1291,1606,2805,-9,2804,2803,1,1,30,0,0,0,2,2,-9,1,3,7.2622995,7.260334,0,0,0,-988.95129,0,2,2,2021,12,0,17,17,1,0,1,10.338357,10.338357,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,50.26,-9,-9,6.666666666666667,1,1,0,0,7,11,3,1,510,-59477.527,102173.46,0,0,0,0,1354.8308 +1292,1607,2806,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,6.0185909,6.496901,0,0,-949.61487,0,3,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,1,0,30.187685,0,0,1,0,1,0,6.3199344,24.66,36.34,-9,-9,5,1,1,0,0,4,11,2,0,2951,-130218.77,61197.305,0,0,0,1007.1787,1007.5876 +1292,1608,2807,-9,2806,-9,1,1,44,0,0,0,3,3,-9,0,4,7.6576633,7.8911319,0,0,0,-1073.8746,0,3,-9,2021,8,0,38,38,1,0,0,7.6147523,7.6147523,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,13,11,4,0,457,364018.63,222697.69,223047.5,38595.582,0,-562.47681,1199.4073 +1293,1609,2808,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.3937054,6.3171453,0,0,-1018.0353,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5833702,6.2475839,49.28,46.56,-9,-9,8.333333333333334,1,1,0,0,11,6,2,1,514,61139.387,12024.173,0,0,0,-660.04095,1701.8348 +1294,1610,2809,-9,2811,2810,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1071.3486,-9,2,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,725.66669,650387.38,535343.94,145230.84,75097.414,5346.8101,9653.3975,3577.5049 +1294,1610,2810,2811,-9,-9,1,1,46,0,2,0,1,1,-9,0,2,8.4974251,8.5158577,0,21,2,-124.81538,0,2,2,2021,11,0,47,42,1,0,0,16.347126,16.347126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,44.7,51.62,6.666666666666667,1,1,0,0,10,4,4,1,725.66669,650387.38,535343.94,145230.84,75097.414,5346.8101,9653.3975,3577.5049 +1294,1610,2811,2810,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.3919907,7.5129962,0,21,-2,52.511093,0,3,3,2021,16,4,21,19,1,4,0,13.132417,13.132417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.7,51.62,51.65,52.38,3.333333333333333,1,1,0,0,10,4,4,1,725.66669,650387.38,535343.94,145230.84,75097.414,5346.8101,9653.3975,3577.5049 +1295,1611,2812,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.17322,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.94,33.46,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,676,253457.19,0,90269.383,0,0,0,466.00546 +1296,1612,2813,2814,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.3566236,8.5155125,0,7,-5,199.26477,0,2,3,2021,7,1,39,37,1,1,0,12.971553,12.971553,.05,.05,0,0,0,0,0,0,0,0,0,3.5792222,0,57.06,57.76,59.53,56.44,10,1,1,0,0,8,12,4,1,697.5,1512817.9,996885.75,343041.5,56521.672,22851.164,0,3354.8198 +1296,1612,2814,2813,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.5199089,7.8028922,0,7,5,114.01851,0,3,3,2021,6,0,40,42,1,0,0,5.4341993,5.4341993,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,57.06,57.76,1.666666666666667,1,1,0,0,8,12,4,1,697.5,1512817.9,996885.75,343041.5,56521.672,22851.164,0,3354.8198 +1296,1613,2815,-9,2813,2814,1,1,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-936.12054,-9,2,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,6.666666666666667,1,1,0,0,8,12,1,1,1430,-70624.789,0,0,0,0,0,-94.729706 +1296,1614,2816,-9,2813,2814,1,0,20,0,0,0,2,2,-9,0,4,7.379591,7.8510613,0,0,0,-871.75684,0,2,2,2021,7,0,30,15,1,0,1,10.197522,10.197522,.05,.05,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,182,177161.91,-30821.084,0,0,3539.7878,0,1042.3594 +1297,1615,2817,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1034.6176,1,-9,-9,2021,7,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,1,2,12,1,1,197,120341.65,0,0,0,0,0,225.33775 +1297,1616,2818,2819,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,2,7,235.6041,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.95,37.31,18.47,22.91,8.333333333333334,1,1,0,0,0,12,2,1,1450,7346.8789,28936.051,0,0,1126.8988,0,2428.5557 +1297,1616,2819,2818,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.0998793,5.7037234,2,-7,54.908012,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9016576,18.47,22.91,48.95,37.31,1.666666666666667,1,1,0,0,0,12,2,1,1450,7346.8789,28936.051,0,0,1126.8988,0,2428.5557 +1298,1617,2820,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.09132,4.0943203,0,0,-1011.7755,0,-9,-9,2021,6,0,0,17,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,2.7418454,4.4473829,60.7,47.65,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,130,330754.72,0,128353.88,0,0,0,316.95523 +1299,1618,2821,2822,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9161038,7.1135488,44,-2,58.528339,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0180659,7.1245728,57.35,45.09,52.23,55.6,8.333333333333334,1,1,0,0,9,6,3,1,414,1426916.5,934453.88,258961.63,0,0,0,2297.7998 +1299,1618,2822,2821,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.059598,7.6891189,44,2,66.855873,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3185558,8.021203,52.23,55.6,57.35,45.09,8.333333333333334,1,1,0,0,12,6,3,1,414,1426916.5,934453.88,258961.63,0,0,0,2297.7998 +1300,1619,2823,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.7204967,7.6672935,0,0,-747.62775,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2794771,7.5261698,62.39,56.71,-9,-9,8.333333333333334,4,5,0,0,0,8,3,1,2089,721847.19,372357,399608.03,0,0,0,3367.4382 +1301,1620,2824,2826,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,9.7533236,9.5763102,0,7,-1,23.679237,0,2,3,2021,6,0,50,45,1,0,0,33.737244,33.737244,.05,.05,0,0,0,0,0,0,1,1,0,8.5894699,0,58.49,50.2,50.01,55.31,8.333333333333334,2,3,0,0,9,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1301,1620,2825,-9,2826,2824,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.58,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1301,1620,2826,2824,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.8067369,8.8652143,0,12,1,-99.300407,0,2,2,2021,10,1,45,45,1,1,0,22.179237,22.179237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,58.49,50.2,10,2,3,0,0,6,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1301,1620,2827,-9,2826,2824,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-911.70996,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,631.75,325084.09,270642.47,449134.03,291646.22,0,0,14189.664 +1302,1621,2828,2829,-9,-9,1,1,49,1,1,0,2,2,-9,0,2,8.331872,8.0708914,0,9,12,-92.602318,0,2,2,2021,10,0,38,40,1,0,0,12.919253,12.919253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,44.27,38.85,61.86,8.333333333333334,1,1,0,0,10,2,4,1,1088,525256.94,218875.27,97414.703,0,0,0,1886.4478 +1302,1621,2829,2828,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,7.1515923,7.3046813,0,9,-12,-83.146545,0,-9,-9,2021,14,2,17,21,1,2,0,8.5212564,8.5212564,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.85,61.86,54.37,44.27,8.333333333333334,1,1,0,0,10,2,4,1,1088,525256.94,218875.27,97414.703,0,0,0,1886.4478 +1302,1621,2830,-9,2829,2828,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.2407,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,1088,525256.94,218875.27,97414.703,0,0,0,1886.4478 +1303,1622,2831,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,7.3517346,7.371767,0,0,-1056.0629,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.52845162,7.6535978,32.6,29.78,-9,-9,5,1,1,0,0,7,13,3,1,397,324024.34,257707.61,39992.066,0,0,0,858.57886 +1304,1623,2832,2833,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.4732761,7.4052896,40,-5,34.539436,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5473008,47.71,43.4,55.9,51.29,3.333333333333333,1,1,0,0,9,2,5,1,481.5,1227140.5,950947.88,333800.94,0,13932.957,789.86353,4415.7983 +1304,1623,2833,2832,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,8.6736307,8.8118401,5.420897,40,5,57.761593,-9,3,3,2021,9,0,17,0,1,0,0,38.594002,38.594002,.05,.05,0,0,0,0,0,0,1,1,0,5.6133575,5.3341784,55.9,51.29,47.71,43.4,8.333333333333334,1,1,0,0,12,2,5,1,481.5,1227140.5,950947.88,333800.94,0,13932.957,789.86353,4415.7983 +1305,1624,2834,2835,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,7.6619954,7.6128922,61,-2,25.346783,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.5757575,7.4610434,53.88,22.39,46.73,32.73,8.333333333333334,1,1,0,0,0,9,4,1,517,1779161.5,568428.31,892362.38,0,0,0,3998.3662 +1305,1624,2835,2834,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,8.2040606,8.4004078,12,2,-81.607971,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.594985,7.9957781,46.73,32.73,53.88,22.39,8.333333333333334,1,1,0,0,0,9,4,1,517,1779161.5,568428.31,892362.38,0,0,0,3998.3662 +1306,1625,2836,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1105.7357,0,-9,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.53,53.36,-9,-9,5,1,1,0,0,1,13,1,0,1536,-59360.641,0,0,0,0,0,564.07922 +1306,1625,2837,-9,2836,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.39014,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1536,-59360.641,0,0,0,0,0,564.07922 +1306,1625,2838,-9,2836,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.3395,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,1,0,1536,-59360.641,0,0,0,0,0,564.07922 +1307,1626,2839,2840,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.5645428,7.937562,17,1,40.149918,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8757024,56.33,51.02,46.61,56.93,10,1,1,0,0,9,7,4,0,589,2346860.5,1301957.6,461994.94,0,0,0,4300.1313 +1307,1626,2840,2839,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.91819,8.3731928,17,-1,-16.208403,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4875584,46.61,56.93,56.33,51.02,8.333333333333334,1,1,0,0,8,7,4,0,589,2346860.5,1301957.6,461994.94,0,0,0,4300.1313 +1308,1627,2841,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.4931965,8.5602093,0,0,0,-1016.7771,0,1,1,2021,6,0,100,55,1,0,0,8.7495604,8.7495604,.05,.05,0,0,0,0,0,0,1,1,0,1.6693212,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,5,0,3869,147986.92,7277.0254,0,0,1724.015,0,1442.3835 +1309,1628,2842,2843,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.6877766,6.7621837,57,3,104.21722,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7339416,6.6832676,53,44,32.16,34.32,8,1,1,0,0,0,7,2,1,544.5,51057.523,7443.8789,0,0,0,0,2264.9524 +1309,1628,2843,2842,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,57,-3,42.060825,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.0403709,0,32.16,34.32,53,44,5,1,1,0,0,8,7,2,1,544.5,51057.523,7443.8789,0,0,0,0,2264.9524 +1310,1629,2844,2847,-9,-9,1,1,33,0,2,0,2,2,-9,0,5,8.7364426,8.4151583,0,16,-2,-120.18527,0,2,2,2021,8,0,41,45,1,0,0,15.700457,15.700457,0,0,.05,0,0,0,0,0,1,1,0,0,0,50.54,62.09,32.08,21.69,6.666666666666667,1,1,0,0,8,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1310,1629,2845,-9,2847,2844,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.3557,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1310,1629,2846,-9,2847,2844,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3311,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1310,1629,2847,2844,-9,-9,1,0,35,0,2,0,2,2,-9,0,2,7.7589908,7.9470339,0,14,2,-96.033691,0,2,2,2021,28,11,53,55,1,11,0,7.295619,7.295619,0,0,.05,0,0,0,0,0,1,1,0,0,0,32.08,21.69,50.54,62.09,5,1,1,0,0,8,9,4,1,783.75,363037.16,70334.781,389037.88,185097.77,0,0,4339.8413 +1311,1630,2848,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,7.5918665,8.1214657,0,0,-970.65479,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,.43667263,0,0,1,1,0,2.6502166,7.8146992,41.7,30.04,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,398,976352,115803.54,658712.94,0,0,0,1438.0077 +1312,1631,2849,2850,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,45,0,-.82954973,-9,2,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4696269,0,50,47,57.06,57.76,7,1,1,0,0,0,7,5,1,569,3239536,2004223.9,1610224.4,385928.28,0,0,7021.6299 +1312,1631,2850,2849,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,8.6070185,9.2059584,8.7877178,45,0,-46.461487,0,2,2,2021,6,0,30,-9,1,0,0,27.837395,27.837395,0,0,0,0,0,0,0,0,1,1,0,0,9.3032627,57.06,57.76,50,47,8.333333333333334,1,1,0,0,8,7,5,1,569,3239536,2004223.9,1610224.4,385928.28,0,0,7021.6299 +1313,1632,2851,-9,2852,2853,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.03888,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1313,1632,2852,2853,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,8.7562351,8.4126062,0,22,-6,110.3142,0,3,2,2021,30,12,32,32,1,12,0,21.522942,21.522942,.05,.05,0,0,0,0,0,2,1,1,0,.47851208,0,15.8,48.6,52.48,55.6,1.666666666666667,1,1,0,0,15,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1313,1632,2853,2852,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.7579803,8.7073755,0,20,6,51.30497,0,3,3,2021,10,0,45,85,1,0,0,13.030518,13.030518,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,55.6,15.8,48.6,8.333333333333334,2,3,0,0,15,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1313,1632,2854,-9,2852,2853,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.462,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,5,1,1988,361349.78,313332.25,145338.17,73337.359,0,0,4569.0103 +1314,1633,2855,2856,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.7515173,8.762826,7.5492477,7,0,-142.40746,0,-9,-9,2021,12,0,40,40,1,0,0,6.935873,6.935873,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8622074,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,13,4,4,1,1154,805278.5,266210.47,214775.84,0,0,0,2317.4827 +1314,1633,2856,2855,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.3130031,7.9695191,7.2450962,7,0,75.437614,0,3,2,2021,12,0,10,12,1,0,0,11.840704,11.840704,.05,.05,0,0,0,0,0,0,0,0,0,0,7.255147,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,13,4,4,1,1154,805278.5,266210.47,214775.84,0,0,0,2317.4827 +1315,1634,2857,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.7875547,8.7376528,0,0,0,-1117.1914,0,3,3,2021,18,5,37,37,1,5,0,18.33604,18.33604,0,0,0,0,0,0,0,7,0,0,0,4.925561,0,39.39,37.66,-9,-9,5,1,1,0,0,8,8,5,1,96,-107384.59,0,0,0,0,0,2352.3069 +1316,1635,2858,2859,-9,-9,1,0,34,0,0,0,3,3,-9,1,1,0,0,0,10,-4,0,-9,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.86,51.46,38.33,21.71,3.333333333333333,1,1,0,0,0,13,1,1,1469,0,0,0,0,0,0,2235.8481 +1316,1635,2859,2858,-9,-9,1,1,38,0,0,0,2,2,-9,1,1,0,0,0,14,4,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.33,21.71,18.86,51.46,6.666666666666667,1,1,0,0,0,13,1,1,1469,0,0,0,0,0,0,2235.8481 +1317,1636,2860,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.0242062,7.7841315,0,1,-3,-22.336098,-9,3,3,2021,24,12,37,0,1,12,0,10.002261,10.002261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.65,59.83,19.36,61.35,6.666666666666667,1,1,0,0,8,2,3,0,709,-72888.234,21793.756,0,0,3984.71,32.802563,1059.6692 +1317,1637,2861,-9,-9,-9,1,0,29,0,0,0,1,1,-9,1,3,0,0,0,1,3,132.92426,-9,-9,-9,2021,23,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.36,61.35,29.65,59.83,3.333333333333333,1,1,0,1,0,2,3,0,250,49327.426,0,0,0,0,0,1881.0266 +1318,1638,2862,2863,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,6.8364124,7.8363838,7.4072142,6,0,28.037718,0,2,2,2021,7,0,11,10,1,0,0,7.2512503,7.2512503,0,0,0,0,0,0,0,7,1,1,0,5.1365685,7.3292065,48.28,60.18,57.91,40.74,6.666666666666667,1,1,0,0,6,11,3,1,226,336213.75,366499.19,97376.406,21546.281,0,0,3156.4941 +1318,1638,2863,2862,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.2388411,7.0293603,6,9,-102.53671,0,2,2,2021,11,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.0485702,57.91,40.74,48.28,60.18,5,1,1,0,0,7,11,3,1,226,336213.75,366499.19,97376.406,21546.281,0,0,3156.4941 +1319,1639,2864,2867,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,6.7012558,6.8693051,0,6,-4,23.762737,0,-9,-9,2021,3,0,12,11,1,0,0,8.8696156,8.8696156,0,0,.05,0,0,0,0,0,1,1,0,7.0061936,0,59.43,58.05,59.43,58.05,10,2,3,0,0,2,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1319,1639,2865,-9,2864,2867,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.91907,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1319,1639,2866,-9,2864,2867,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.25964,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1319,1639,2867,2864,-9,-9,1,1,43,1,2,0,1,1,-9,0,5,8.8705206,8.7481518,0,6,4,38.117908,0,1,1,2021,6,0,40,43,1,0,0,18.916059,18.916059,0,0,.05,0,0,0,0,0,1,1,0,7.2726965,0,59.43,58.05,59.43,58.05,10,1,1,0,0,7,10,4,1,390.75,519526.97,52054.637,406173.56,0,0,0,3455.6858 +1320,1640,2868,-9,2870,2869,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.47229,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1320,1640,2869,2870,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.0056314,8.2112732,0,12,5,12.866344,0,2,2,2021,11,0,46,39,1,0,0,6.4718194,6.4718194,.05,.05,0,0,0,0,0,0,1,1,0,.5103727,0,55.2,49.4,52.37,56.93,8.333333333333334,1,1,0,0,13,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1320,1640,2870,2869,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.9674802,8.4189672,0,12,-5,-16.396084,0,-9,-9,2021,10,0,35,24,1,0,0,12.148306,12.148306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,55.2,49.4,8.333333333333334,1,1,0,0,13,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1320,1640,2871,-9,2870,2869,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4532,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,997,247338.75,-15920.078,0,0,0,0,2930.5896 +1321,1641,2872,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.1561546,5.1413045,0,0,-1010.7972,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.9520097,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1884,-1336.3365,0,0,0,0,0,553.401 +1322,1642,2873,-9,2875,2874,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-936.3053,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.96,51.88,-9,-9,6.666666666666667,1,1,0,0,1,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2874,2875,-9,-9,1,1,55,0,2,0,2,2,-9,0,2,5.4748616,5.5476284,0,17,5,32.024948,0,-9,-9,2021,11,0,48,40,1,0,0,.71494454,.71494454,.05,.05,0,0,0,0,0,0,1,1,0,7.6791596,0,62.61,26.97,45.91,55.94,6.666666666666667,1,1,0,0,13,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2875,2874,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.6796017,7.4627476,0,17,-5,-144.19141,0,-9,3,2021,11,0,24,18,1,0,0,12.773687,12.773687,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,55.94,62.61,26.97,8.333333333333334,1,1,0,0,13,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2876,-9,2875,2874,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1018.0174,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1322,1642,2877,-9,2875,2874,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1038.3956,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,2,1,532.79999,188704.47,29511.27,103909.57,33407.793,0,0,2483.5173 +1323,1643,2878,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.0450993,7.9443488,0,0,0,-1104.8533,0,2,1,2021,30,12,38,37,1,12,0,10.519613,10.519613,0,0,0,0,0,0,0,0,0,0,0,0,0,19.78,58.73,-9,-9,3.333333333333333,3,4,0,0,11,9,4,0,133,-244543.92,0,0,0,0,2292.3267,1006.8713 +1323,1644,2879,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-995.33673,-9,-9,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,3,9,1,0,1140,-96944.414,0,0,0,13368.516,0,226.60646 +1324,1645,2880,-9,-9,-9,1,0,57,0,1,0,3,3,-9,0,2,0,3.3425224,3.2602863,0,0,-1001.136,0,-9,-9,2021,22,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,2.8563459,45.41,30.34,-9,-9,3.333333333333333,1,1,0,1,0,12,2,0,1998,-157181.5,0,0,0,0,0,1627.9949 +1324,1645,2881,-9,2880,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1018.0101,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,1998,-157181.5,0,0,0,0,0,1627.9949 +1324,1646,2882,-9,2880,-9,1,1,18,0,1,0,3,3,1,1,4,0,0,0,0,0,-1000.8228,-9,3,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,12,1,0,1119,90797.414,0,0,0,0,0,1513.5703 +1325,1647,2883,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.0739489,8.1165094,0,0,0,-1109.641,0,2,2,2021,11,0,40,51,1,0,0,8.9889584,8.9889584,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,6,2,4,1,758,61355.941,86449.102,0,0,0,1145.0389,1011.1022 +1326,1648,2884,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.3829098,8.5487089,5.2807641,0,0,-994.7652,0,3,3,2021,9,1,46,42,1,1,0,12.060589,12.060589,0,0,0,0,0,0,0,7,0,0,0,0,5.8472691,52.97,48.43,-9,-9,8.333333333333334,4,2,0,0,9,6,5,1,901,1261022,807053.69,327440.91,0,0,0,1038.5574 +1326,1649,2885,-9,2884,-9,1,1,33,0,0,0,1,1,-9,0,4,8.2043924,8.0093641,0,0,0,-1102.4415,0,1,-9,2021,10,0,45,40,1,0,1,8.4333477,8.4333477,.05,.05,0,0,0,0,0,0,0,0,0,2.3869178,0,61.29,43.31,-9,-9,8.333333333333334,4,2,0,0,8,6,4,1,1778,226988.98,122947.85,0,0,12829.586,0,2524.9961 +1327,1650,2886,2887,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.8962259,8.9260025,0,27,7,-116.51428,0,3,2,2021,10,0,51,48,1,0,0,14.134623,14.134623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.89,35.98,41,56.99,6.666666666666667,1,1,0,0,11,2,5,1,813.5,403622.16,153747.75,202944.09,12883.77,1091.1465,0,3780.8535 +1327,1650,2887,2886,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0516653,8.7359543,0,26,-7,70.168533,0,3,3,2021,9,0,33,33,1,0,0,12.859448,12.859448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41,56.99,51.89,35.98,8.333333333333334,1,1,0,0,11,2,5,1,813.5,403622.16,153747.75,202944.09,12883.77,1091.1465,0,3780.8535 +1328,1651,2888,2889,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,6.7501621,6.871387,49,0,85.745293,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3380182,7.0485454,55.34,54.26,54.95,47.49,8.333333333333334,1,1,0,0,3,9,2,1,424.5,544971.19,330924.5,230733,0,0,0,2417.0527 +1328,1651,2889,2888,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,6.5617933,6.2162199,49,0,260.50314,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0931273,6.4333591,54.95,47.49,55.34,54.26,8.333333333333334,1,1,0,0,4,9,2,1,424.5,544971.19,330924.5,230733,0,0,0,2417.0527 +1329,1652,2890,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,5.2943101,5.4586453,0,0,-1099.5442,0,3,3,2021,9,1,0,20,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4590864,5.3514285,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,11,12,2,1,219,373010.69,0,173296.13,0,0,0,-154.23726 +1330,1653,2891,2892,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.8609867,6.6505704,0,32,3,-100.04216,0,-9,-9,2021,9,0,60,40,1,0,0,2.4104214,2.4104214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,54,54.2,57.49,8,1,1,0,0,1,7,3,1,434.5,407741.13,156012.36,204336.06,35034.488,929.73737,0,1536.6279 +1330,1653,2892,2891,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.4592576,7.416327,0,32,-3,41.558464,0,2,2,2021,10,2,18,18,1,2,0,12.069247,12.069247,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54,54,8.333333333333334,1,1,0,0,10,7,3,1,434.5,407741.13,156012.36,204336.06,35034.488,929.73737,0,1536.6279 +1330,1654,2893,-9,2892,2891,1,0,21,0,0,0,1,1,1,0,5,8.1553774,8.2449045,0,0,0,-997.79767,-9,2,2,2021,9,2,38,0,1,2,1,12.313846,12.313846,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,10,7,4,1,722,158359.41,0,0,0,0,0,1716.9189 +1331,1655,2894,2895,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,8.1960297,8.2719822,8,6,-45.804996,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3374567,8.5060816,56.42,37.79,52.59,33.77,8.333333333333334,2,3,0,0,0,11,4,1,516,761361.38,417692.88,413571.56,0,0,0,2824.1411 +1331,1655,2895,2894,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,8,-6,44.397018,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,13.149225,0,0,1,1,0,3.1206396,0,52.59,33.77,56.42,37.79,10,1,1,0,0,0,11,4,1,516,761361.38,417692.88,413571.56,0,0,0,2824.1411 +1332,1656,2896,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.4324236,8.7962456,0,0,0,-1005.1511,0,1,1,2021,12,0,46,56,1,0,0,14.914671,14.914671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,546,-6221.9492,89844.094,0,0,0,0,2211.5042 +1333,1657,2897,2898,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,1.7044276,1.0778278,7,1,53.091827,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,10.423015,0,0,1,1,0,2.6417,1.6773826,61.27,6.19,50.06,23.36,10,1,1,0,0,0,6,4,1,541.5,1938767.5,1123715.5,451359.78,0,0,0,4113.8213 +1333,1657,2898,2897,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,8.8554363,8.8620892,7,-1,-12.965458,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,2.6847944,8.9665852,50.06,23.36,61.27,6.19,5,1,1,0,0,0,6,4,1,541.5,1938767.5,1123715.5,451359.78,0,0,0,4113.8213 +1334,1658,2899,-9,2902,2901,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.63458,-9,2,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,0,1,1,0,0,0,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1334,1658,2900,-9,2902,2901,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.16058,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1334,1658,2901,2902,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,9.1483269,9.3612137,0,7,4,-29.408964,0,2,2,2021,12,0,35,38,1,0,0,38.524502,38.524502,.05,.05,0,0,0,0,0,0,0,0,0,2.9550169,0,43.25,41.45,54.45,56.22,6.666666666666667,1,1,0,0,8,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1334,1658,2902,2901,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.3908892,8.2451754,0,7,-4,-107.02232,0,3,3,2021,11,0,25,16,1,0,0,20.306602,20.306602,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.45,56.22,43.25,41.45,8.333333333333334,1,1,0,0,8,9,5,1,333.25,1709315,367072.19,896192.5,0,727.6499,0,5438.3433 +1335,1659,2903,2904,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,45,-4,8.537118,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,5.594491,0,14.5,1,1,0,2.7736564,0,46.87,40.64,62.03,41.71,8.333333333333334,1,1,0,0,0,7,3,1,676,678876.25,276997.78,274562.56,0,0,0,1888.5907 +1335,1659,2904,2903,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.7784505,7.7596273,45,4,154.01442,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7487988,7.668623,62.03,41.71,46.87,40.64,8.333333333333334,1,1,0,0,0,7,3,1,676,678876.25,276997.78,274562.56,0,0,0,1888.5907 +1335,1660,2905,-9,2903,2904,1,0,31,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1151.1438,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5668671,0,38.24,63.73,-9,-9,5,1,1,1,1,2,7,1,1,308,43191.918,0,0,0,0,0,536.08813 +1336,1661,2906,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.8948846,7.6401219,0,0,0,-1040.7518,0,-9,-9,2021,36,12,24,28,1,12,0,9.7050409,9.7050409,0,0,0,0,0,0,0,0,1,1,0,0,0,23.28,38.38,-9,-9,1.666666666666667,1,1,0,0,6,6,3,1,244,25656.209,0,0,0,0,0,1059.0793 +1337,1662,2907,2908,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,41,0,-12.011577,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.18,53.85,8.333333333333334,1,1,0,0,5,7,3,1,699.5,1038304.4,527488.44,500958.94,0,7076.7344,0,2696.2891 +1337,1662,2908,2907,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.663219,7.8682404,41,0,57.123924,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.815309,56.18,53.85,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,1,699.5,1038304.4,527488.44,500958.94,0,7076.7344,0,2696.2891 +1338,1663,2909,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0864992,7.1847568,0,0,-1082.4885,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,3.2215273,6.6055832,15.665171,0,1,1,0,0,7.0255656,49,47,-9,-9,7,3,4,0,0,12,8,2,0,321,-41218.344,0,0,0,0,0,1133.6644 +1339,1664,2910,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.8926458,8.1996937,0,0,0,-1059.457,-9,2,3,2021,23,11,33,0,1,11,0,12.040394,12.040394,0,0,0,0,0,0,0,0,0,0,0,2.7599583,0,26.76,53.94,-9,-9,3.333333333333333,3,4,0,0,10,8,4,0,1202,211593.72,67991.188,118965.85,63011.477,0,0,1380.084 +1340,1665,2911,-9,2912,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.83521,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,3,0,652.66669,42197.289,23821.535,167168.11,43439.426,6768.0874,0,2432.4458 +1340,1665,2912,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,1,7.4957547,7.3221226,4.3155293,0,0,-1082.5333,0,2,2,2021,24,11,24,26,1,11,0,9.5660868,9.5660868,.05,.05,.05,0,0,0,0,0,1,1,0,4.4074569,0,35.47,38.09,-9,-9,1.666666666666667,1,1,0,0,9,9,3,0,652.66669,42197.289,23821.535,167168.11,43439.426,6768.0874,0,2432.4458 +1340,1665,2913,-9,2912,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.5969,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,9,3,0,652.66669,42197.289,23821.535,167168.11,43439.426,6768.0874,0,2432.4458 +1341,1666,2914,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.9133315,6.5808344,0,0,-1045.8605,0,2,1,2021,21,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7551556,55.36,51.57,-9,-9,1.666666666666667,1,1,0,0,8,10,2,1,1958,5936.3589,0,0,0,0,0,1253.5735 +1342,1667,2915,2916,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.8513441,7.8402886,40,-4,110.18208,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.5528164,7.7372856,65.54000000000001,30.53,55,45,8.333333333333334,1,1,0,0,0,6,4,1,443.5,1497268.3,624598.81,531987.19,0,0,0,2811.7363 +1342,1667,2916,2915,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,7.4191623,8.0951939,10,4,-21.998381,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7574811,55,45,65.54000000000001,30.53,8,1,1,0,0,0,6,4,1,443.5,1497268.3,624598.81,531987.19,0,0,0,2811.7363 +1343,1668,2917,2918,-9,-9,1,1,55,0,0,0,2,2,-9,1,4,8.9752636,8.8069649,0,20,3,-39.962799,0,2,2,2021,10,1,60,60,1,1,0,15.468335,15.468335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.74,57.22,10,1,1,0,0,13,9,5,1,579.5,1003753.9,454143.22,332729.38,0,0,0,5831.4106 +1343,1668,2918,2917,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.5532455,8.5499697,0,23,-3,-14.084334,0,-9,3,2021,7,0,43,43,1,0,0,12.02363,12.02363,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,57.16,56.15,10,1,1,0,0,14,9,5,1,579.5,1003753.9,454143.22,332729.38,0,0,0,5831.4106 +1343,1669,2919,-9,2918,2917,1,1,22,0,0,0,1,1,1,0,3,0,8.1072617,7.7944736,0,0,-1103.4838,-9,3,2,2021,15,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0096149,0,51.66,54.88,-9,-9,10,1,1,1,0,5,9,4,1,642,16103.949,0,0,0,0,0,3508.1594 +1344,1670,2920,-9,2922,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.14569,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,1,1,-9,0,0,9,2,1,213.66667,68944.32,27360.791,0,0,0,0,593.20111 +1344,1670,2921,-9,2922,-9,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-907.84241,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,2,1,213.66667,68944.32,27360.791,0,0,0,0,593.20111 +1344,1670,2922,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3226538,7.2263031,0,0,0,-1065.6335,0,-9,-9,2021,28,10,24,0,1,10,0,5.9658809,5.9658809,.05,.05,0,0,0,0,0,2,1,1,0,0,0,16.85,62.4,-9,-9,1.666666666666667,1,1,0,0,8,9,2,1,213.66667,68944.32,27360.791,0,0,0,0,593.20111 +1345,1671,2923,2924,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.0053029,6.2824774,44,-2,-27.931578,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9635248,6.0859156,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,667.5,810987,775994.69,0,0,0,0,4111.6909 +1345,1671,2924,2923,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.7839212,8.6368866,44,2,52.928356,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5476837,8.862628,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,5,2,4,1,667.5,810987,775994.69,0,0,0,0,4111.6909 +1345,1672,2925,-9,2923,2924,1,1,38,0,0,0,2,2,-9,0,4,8.1681376,8.2629404,0,0,0,-1109.2017,0,2,2,2021,10,0,39,40,1,0,0,12.260476,12.260476,.05,.05,0,0,0,0,0,0,1,1,0,3.2613933,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,1163,63902.797,182796.03,0,0,0,0,1915.3551 +1346,1673,2926,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.9053946,9.0827389,0,0,0,-1115.3872,0,-9,-9,2021,13,2,44,80,1,2,0,18.71661,18.71661,0,0,0,0,0,0,0,0,0,0,0,6.4878368,0,33.01,63.17,-9,-9,10,1,1,0,0,2,9,5,0,1258,-101738.37,0,0,0,0,0,2927.0261 +1347,1674,2927,2928,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,26,2,37.215462,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.49,47.77,58.89,48.6,8.333333333333334,1,1,0,0,6,13,3,1,388.5,714156,368958.63,230578.16,0,0,0,2250.6396 +1347,1674,2928,2927,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.3465128,8.0265503,0,26,-2,23.276808,0,3,3,2021,10,0,39,37,1,0,0,9.79706,9.79706,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,57.49,47.77,8.333333333333334,1,1,0,0,8,13,3,1,388.5,714156,368958.63,230578.16,0,0,0,2250.6396 +1348,1675,2929,2930,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,0,0,0,10,-2,-92.430878,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.29,55.45,58.06,52.01,8.333333333333334,2,3,0,0,0,9,3,1,1588.5,407414.19,80215.125,350934.25,108991.75,5608.4531,16190.905,1424.9575 +1348,1675,2930,2929,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,7.8727078,7.6891747,0,10,2,-7.3661304,0,3,2,2021,8,0,36,36,1,0,0,8.6886415,8.6886415,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.06,52.01,38.29,55.45,10,2,3,0,0,11,9,3,1,1588.5,407414.19,80215.125,350934.25,108991.75,5608.4531,16190.905,1424.9575 +1348,1676,2931,-9,2929,2930,1,1,21,0,0,0,2,2,-9,0,4,8.1697378,8.2535162,0,0,0,-925.26715,0,3,3,2021,3,0,36,42,1,0,1,11.456605,11.456605,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,9,4,1,1389,153705.84,47421.516,0,0,0,0,718.0108 +1348,1677,2932,-9,2929,2930,1,0,19,0,0,0,2,2,1,0,4,7.3451772,7.1323276,0,0,0,-1081.4524,-9,3,3,2021,10,0,25,0,1,0,1,8.5572948,8.5572948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.84,53.46,-9,-9,8.333333333333334,2,3,0,0,1,9,3,1,1451,-127362.83,38757.898,0,0,0,0,1330.4811 +1349,1678,2933,-9,2935,2936,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.43152,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1349,1678,2934,-9,2935,2936,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.2001,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1349,1678,2935,2936,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,9.4105072,9.2569504,0,9,-5,114.32787,0,1,1,2021,7,0,32,32,1,0,0,38.091469,38.091469,.05,.05,0,0,0,0,0,0,0,0,0,1.8749795,0,54.74,57.22,45.66,57.21,8.333333333333334,4,5,0,0,7,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1349,1678,2936,2935,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.2393484,9.0837364,0,9,5,79.143044,0,2,2,2021,11,2,42,37,1,2,0,25.698872,25.698872,.05,.05,0,0,0,0,0,0,0,0,0,.53836823,0,45.66,57.21,54.74,57.22,8.333333333333334,1,1,0,0,7,8,5,1,337.25,1507297.1,590728.75,839025.13,435247.13,0,0,6573.6577 +1350,1679,2937,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.1303225,8.0342588,0,0,0,-1078.2428,0,3,3,2021,9,0,39,0,1,0,0,11.841584,11.841584,0,0,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,-9,-9,10,1,1,0,0,3,1,4,0,1889,1027822.2,897605.81,298122.94,0,0,0,1411.9655 +1351,1680,2938,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2674661,7.0733304,0,0,-1075.5072,0,3,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9935999,49.41,40.91,-9,-9,10,4,2,0,0,8,8,3,1,566,594258.19,210314.83,217445.03,0,0,0,1717.551 +1352,1681,2939,2940,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,7.9319429,8.1775913,7.1482196,9,8,-11.078505,0,3,2,2021,12,2,37,38,1,2,0,8.1446619,8.1446619,.05,.05,0,0,0,0,0,0,0,0,0,.9137184,7.3004704,51.03,46.53,53.38,41.98,6.666666666666667,1,1,0,0,12,5,4,0,732.5,536265.44,35438.277,379764.31,0,12.998871,0,2303.5369 +1352,1681,2940,2939,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.9002423,7.5816927,0,15,-8,-109.19633,0,3,3,2021,10,0,34,36,1,0,0,6.9540501,6.9540501,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.38,41.98,51.03,46.53,8.333333333333334,1,1,0,0,12,5,4,0,732.5,536265.44,35438.277,379764.31,0,12.998871,0,2303.5369 +1353,1682,2941,2942,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.8212218,8.474369,7.6479235,12,-7,152.04485,0,2,2,2021,6,0,36,36,1,0,0,6.7285719,6.7285719,.05,.05,0,0,0,0,0,0,1,1,0,0,8.089736,57.06,57.76,54.26,39.67,10,1,1,0,0,13,10,4,1,449,16207.898,-29967.414,0,0,8780.3008,0,2875.4106 +1353,1682,2942,2941,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,12,7,-50.536297,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.26,39.67,57.06,57.76,10,1,1,0,0,8,10,4,1,449,16207.898,-29967.414,0,0,8780.3008,0,2875.4106 +1354,1683,2943,2944,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,4.5557756,4.9918137,0,2,0,91.350906,0,2,2,2021,13,3,50,28,1,3,0,.18213467,.18213467,0,0,0,0,0,0,0,0,0,0,0,0,0,29.15,62.08,51.83,57.2,5,1,1,0,0,8,9,3,1,158,25601.707,0,0,0,0,0,1266.7368 +1354,1683,2944,2943,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4229336,8.3780518,0,2,0,55.189983,0,-9,-9,2021,11,0,40,45,1,0,0,10.802493,10.802493,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,29.15,62.08,8.333333333333334,1,1,0,0,1,9,3,1,158,25601.707,0,0,0,0,0,1266.7368 +1355,1684,2945,2946,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,12,8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.49,35.1,62.39,56.71,6.666666666666667,1,1,0,0,0,2,1,1,771,195610.14,40098.965,173354.94,0,0,0,1481.7766 +1355,1684,2946,2945,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,0,0,12,-8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,56.49,35.1,10,1,1,0,0,4,2,1,1,771,195610.14,40098.965,173354.94,0,0,0,1481.7766 +1356,1685,2947,-9,-9,2948,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1035.5931,0,-9,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,5,1,1,0,0,2,4,1,0,424,-71048.336,0,0,0,0,0,0 +1356,1686,2948,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.9446359,8.2906981,0,0,0,-1112.2695,0,-9,-9,2021,8,0,38,50,1,0,0,11.820835,11.820835,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,3.333333333333333,1,1,0,0,8,4,4,0,441,-181775.14,88101.063,0,0,0,0,953.0354 +1357,1687,2949,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,9.2451448,8.9741659,0,0,0,-1093.3424,0,1,1,2021,10,1,42,42,1,1,0,24.848577,24.848577,.05,.05,0,0,0,0,0,0,0,0,0,7.4730616,0,34.52,62.64,-9,-9,8.333333333333334,4,2,0,0,11,8,5,1,1535,118591.05,72491.875,0,0,-264.50534,1080.0931,3497.4353 +1358,1688,2950,2951,-9,-9,1,1,28,2,2,0,2,2,-9,0,5,8.1832123,8.2616215,0,5,1,-21.373833,0,2,2,2021,8,0,54,53,1,0,0,10.919042,10.919042,.05,.05,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,51.73,58.82,10,1,1,0,0,8,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1358,1688,2951,2950,-9,-9,1,0,27,2,2,0,2,2,-9,0,5,6.6300941,6.7529235,0,5,-1,-40.978497,0,-9,-9,2021,5,0,18,20,1,0,0,3.8995292,3.8995292,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,62.39,56.71,8.333333333333334,1,1,0,0,5,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1358,1688,2952,-9,2951,2950,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.653,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1358,1688,2953,-9,2951,2950,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.2252,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,1,1462.25,-63227.285,13229.51,0,0,7644.1611,1889.4963,2650.4878 +1359,1689,2954,2955,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,6,5,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.65,58.88,42.61,54.85,6.666666666666667,1,1,0,1,1,12,1,0,2518.5,-75789.297,0,0,0,0,0,1387.824 +1359,1689,2955,2954,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,6,-5,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,36.65,58.88,6.666666666666667,1,1,0,1,0,12,1,0,2518.5,-75789.297,0,0,0,0,0,1387.824 +1360,1690,2956,-9,2957,2958,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.8553,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,11,5,1,852,608102.13,526576.38,147653.36,46685.777,9986.9004,2207.802,3495.2363 +1360,1690,2957,2958,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.2418642,8.4399223,0,9,-6,39.275402,0,2,2,2021,6,0,35,35,1,0,0,14.558867,14.558867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.22,55.2,55.36,54.24,8.333333333333334,1,1,0,0,10,11,5,1,852,608102.13,526576.38,147653.36,46685.777,9986.9004,2207.802,3495.2363 +1360,1690,2958,2957,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.7128162,8.6941519,0,9,6,.67828596,0,2,2,2021,9,0,40,40,1,0,0,12.659498,12.659498,.05,.05,0,0,0,0,0,0,1,1,0,.54669088,0,55.36,54.24,53.22,55.2,8.333333333333334,1,1,0,0,10,11,5,1,852,608102.13,526576.38,147653.36,46685.777,9986.9004,2207.802,3495.2363 +1361,1691,2959,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.8056598,8.071908,7.440927,0,0,-1006.8186,-9,2,3,2021,14,4,24,0,1,4,0,11.26169,11.26169,.05,.05,0,0,0,0,0,0,0,0,0,6.9814792,6.6766472,35.24,56.7,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,107,522584.91,161619.91,385322.13,0,0,0,1565.3457 +1362,1692,2960,2961,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.6239042,8.6374817,0,11,-7,22.916031,0,2,3,2021,9,0,35,35,1,0,0,23.635218,23.635218,0,0,0,0,0,0,0,0,1,1,0,0,0,57.18,45.76,64.96000000000001,40.38,8.333333333333334,1,1,0,0,12,12,4,0,1199.5,1230686.3,850929.25,403946.72,0,21269.264,0,3781.2266 +1362,1692,2961,2960,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.3128786,7.2219701,11,7,15.745593,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5865655,64.96000000000001,40.38,57.18,45.76,10,1,1,0,0,0,12,4,0,1199.5,1230686.3,850929.25,403946.72,0,21269.264,0,3781.2266 +1363,1693,2962,2963,-9,-9,1,1,53,0,0,0,3,3,-9,0,1,7.8800011,8.0162954,6.243516,38,2,126.4381,0,-9,3,2021,12,0,41,43,1,0,0,8.5621233,8.5621233,0,0,0,0,0,0,0,0,0,0,0,0,6.6551046,48.68,24.28,41.49,48.72,6.666666666666667,1,1,0,1,8,9,3,0,210,2095961.8,1202316,738325.56,0,0,0,1168.194 +1363,1693,2963,2962,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,38,-2,7.1637182,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.49,48.72,48.68,24.28,5,1,1,0,1,1,9,3,0,210,2095961.8,1202316,738325.56,0,0,0,1168.194 +1363,1694,2964,-9,2963,2962,1,0,29,0,0,0,2,2,-9,0,3,7.7097888,7.9040594,0,0,0,-973.16541,0,2,3,2021,6,1,54,25,1,1,1,5.8765426,5.8765426,0,0,0,0,0,0,0,0,0,0,0,0,0,43.27,48.34,-9,-9,5,1,1,0,0,7,9,3,0,144,29618.133,0,0,0,0,0,1795.3663 +1363,1695,2965,-9,2963,2962,1,1,22,0,0,0,2,2,1,0,3,7.2081285,7.028388,0,0,0,-967.24603,-9,2,3,2021,8,1,25,0,1,1,1,5.1662097,5.1662097,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,8.333333333333334,1,1,0,1,4,9,3,0,509,16901.396,0,0,0,0,0,61.357292 +1364,1696,2966,2968,-9,-9,1,1,25,1,2,0,2,2,-9,0,4,0,0,0,5,2,49.891407,0,-9,-9,2021,19,6,0,45,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.43,54.9,24.61,60.27,3.333333333333333,1,1,0,0,7,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1364,1696,2967,-9,2968,2966,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-867.11072,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1364,1696,2968,2966,-9,-9,1,0,23,1,2,0,2,2,-9,0,4,6.3858643,6.2985525,0,5,-2,-136.18811,0,2,2,2021,20,8,10,10,1,8,0,9.3298941,9.3298941,0,0,0,0,0,0,0,0,1,1,0,0,0,24.61,60.27,30.43,54.9,8.333333333333334,1,1,0,0,8,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1364,1696,2969,-9,2968,2966,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.32422,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,382.5,-22104.688,0,0,0,0,0,880.54108 +1365,1697,2970,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,6.0922379,6.1859703,0,0,-1020.2127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3133268,63.17,32.94,-9,-9,8.333333333333334,1,1,0,0,5,2,2,0,273,0,0,0,0,0,0,1141.5723 +1366,1698,2971,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.7039962,5.7796254,0,0,-1009.2338,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8048244,5.8295903,40.34,36.82,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,1490,541653.94,12293.013,437506.31,0,0,0,411.51227 +1367,1699,2972,2973,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.5268626,7.6295314,0,23,-3,96.114983,0,2,3,2021,23,10,20,20,1,10,0,13.976109,13.976109,0,0,0,0,0,0,0,0,1,1,0,0,0,34.38,54.27,54.37,54.8,6.666666666666667,1,1,0,0,13,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1367,1699,2973,2972,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.4291143,9.8022232,0,23,3,-80.248596,0,2,3,2021,11,0,25,22,1,0,0,78.228676,78.228676,.05,.05,0,0,0,0,0,0,1,1,0,4.5030198,0,54.37,54.8,34.38,54.27,8.333333333333334,1,1,0,0,15,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1367,1699,2974,-9,2972,2973,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1627,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1367,1699,2975,-9,2972,2973,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.26453,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,443.25,814340.63,675201.19,544266.63,347187.41,16286.268,0,13301.49 +1368,1700,2976,2977,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.0580759,8.1970959,0,6,0,105.99099,0,3,3,2021,18,6,37,37,1,6,0,12.692561,12.692561,0,0,0,0,0,0,0,0,0,0,0,7.0995383,0,29.55,56.56,49,48,3.333333333333333,1,1,0,0,7,12,3,1,267,546376.31,586475.25,119890.89,0,0,0,2093.3562 +1368,1700,2977,2976,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,6,0,-38.509365,0,2,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,49,48,29.55,56.56,7,1,1,0,0,0,12,3,1,267,546376.31,586475.25,119890.89,0,0,0,2093.3562 +1368,1701,2978,-9,2977,2976,1,0,25,0,0,0,2,2,-9,0,4,7.4852352,7.2775788,0,0,0,-1004.3646,0,2,2,2021,14,2,35,37,1,2,1,5.744411,5.744411,0,0,0,0,0,0,0,0,0,0,0,0,0,44.53,56.37,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,517,13153.207,0,0,0,0,0,733.56714 +1368,1702,2979,-9,2977,2976,1,1,22,0,0,0,2,2,-9,0,4,7.1700954,7.4241586,0,0,0,-1048.0111,0,2,2,2021,12,1,37,-9,1,1,1,4.9280801,4.9280801,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,0,1,1,0,0,5,12,3,1,325,62883.293,0,0,0,0,0,1051.6528 +1369,1703,2980,2981,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.1948705,6.9625454,32,10,-67.599373,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.61713,6.8684731,52.99,51.28,60.29,52.11,8.333333333333334,1,1,0,0,3,4,4,1,1933,500176.5,148749.63,268628.88,0,0,0,2087.7859 +1369,1703,2981,2980,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4881983,8.6957216,0,33,-10,25.418682,0,2,2,2021,6,0,37,37,1,0,0,12.281272,12.281272,.05,.05,0,0,0,0,0,0,0,0,0,5.407464,0,60.29,52.11,52.99,51.28,8.333333333333334,1,1,0,0,13,4,4,1,1933,500176.5,148749.63,268628.88,0,0,0,2087.7859 +1370,1704,2982,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.8591776,5.9881845,0,0,-869.2085,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2516184,62.66,52.4,-9,-9,10,1,1,0,0,4,2,2,1,114,63824.73,154787.5,0,0,-987.10181,104.81286,1555.4974 +1371,1705,2983,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8100553,8.3793783,0,0,0,-971.46039,0,2,3,2021,15,3,36,39,1,3,0,9.394207,9.394207,0,0,0,0,0,0,0,27,1,0,1,0,0,31.23,61.38,-9,-9,6.666666666666667,1,1,0,0,9,7,4,0,272,704600.25,-53379.91,581851.19,0,0,2401.592,1326.2452 +1371,1706,2984,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-941.30371,0,-9,-9,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.91,22.6,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,512,175124.13,0,0,0,0,0,190.6517 +1372,1707,2985,2986,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.7926941,7.6723132,9,-3,70.535774,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4002962,7.5559187,48.28,60.18,56.67,48.31,8.333333333333334,1,1,0,0,9,10,3,1,634,1033370.6,212755.73,533692.5,0,0,0,2183.9922 +1372,1707,2986,2985,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.9691153,7.1041479,9,3,-9.0408678,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4569316,7.1624393,56.67,48.31,48.28,60.18,5,1,1,0,0,9,10,3,1,634,1033370.6,212755.73,533692.5,0,0,0,2183.9922 +1373,1708,2987,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.8229542,9.1151228,0,0,0,-907.39209,0,3,3,2021,16,4,43,41,1,4,0,19.443848,19.443848,.05,.05,0,0,0,0,0,0,1,1,0,3.4628384,0,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,953,591858.25,409851.97,170219.67,15517.717,0,1741.5847,2194.0288 +1374,1709,2988,2989,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.4135561,9.6789246,0,26,2,-24.623936,0,2,2,2021,7,0,37,54,1,0,0,38.706112,38.706112,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.18,57.44,48,49,8.333333333333334,1,1,0,0,8,1,5,1,440.5,537311.31,244770.53,271776.81,77477.719,0,0,5121.5391 +1374,1709,2989,2988,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.5993009,7.0258503,0,3,-2,117.36926,0,2,2,2021,12,0,37,32,1,2,0,2.837188,2.837188,.05,.05,0,0,0,0,0,0,0,0,0,5.4633174,0,48,49,45.18,57.44,7,1,1,0,0,1,1,5,1,440.5,537311.31,244770.53,271776.81,77477.719,0,0,5121.5391 +1375,1710,2990,2992,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.5148573,8.3059626,0,7,0,-79.14299,0,-9,-9,2021,12,1,40,46,1,1,0,11.903587,11.903587,0,0,0,0,0,0,0,0,1,1,0,0,0,36.12,59.65,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,0,977.33331,11102697,2624508.3,2758434.5,0,0,0,2944.4641 +1375,1710,2991,-9,2992,2990,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.7156,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,0,977.33331,11102697,2624508.3,2758434.5,0,0,0,2944.4641 +1375,1710,2992,2990,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.5264921,8.2420292,0,7,0,-21.63521,0,-9,-9,2021,7,0,40,40,1,0,0,11.290489,11.290489,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,36.12,59.65,8.333333333333334,1,1,0,0,7,7,5,0,977.33331,11102697,2624508.3,2758434.5,0,0,0,2944.4641 +1376,1711,2993,2994,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,8.7321253,8.401989,0,9,-3,-21.898737,0,2,2,2021,7,0,49,46,1,0,0,14.898056,14.898056,0,0,0,0,0,0,0,0,1,1,0,6.9911222,0,59.43,58.05,50.03,52.62,10,1,1,0,0,11,12,5,1,667.5,2415847.5,2309723.5,0,0,0,11848.709,5684.6558 +1376,1711,2994,2993,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.1650081,7.4460979,30,3,-41.893391,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4396358,7.4788928,50.03,52.62,59.43,58.05,8.333333333333334,1,1,0,0,9,12,5,1,667.5,2415847.5,2309723.5,0,0,0,11848.709,5684.6558 +1377,1712,2995,2996,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,4,-4,25.57299,0,3,3,2021,24,12,0,12,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,22.18,53.47,60.29,52.11,1.666666666666667,1,1,0,0,8,13,4,1,1282,820668.38,581059.69,198466.25,0,1422.7332,0,2369.3679 +1377,1712,2996,2995,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4005985,8.4453793,0,4,4,-157.93065,0,3,3,2021,6,0,39,60,1,0,0,16.894247,16.894247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,22.18,53.47,10,1,1,0,0,8,13,4,1,1282,820668.38,581059.69,198466.25,0,1422.7332,0,2369.3679 +1378,1713,2997,2998,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.4866209,8.2060013,5,0,13.717687,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9190612,8.0388403,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,10,11,5,1,684.5,2012724.8,840370.19,474562.69,0,0,0,7049.293 +1378,1713,2998,2997,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.9193373,8.9927273,0,5,0,-58.188206,0,2,2,2021,9,0,8,8,1,0,0,120.98161,120.98161,0,0,0,0,0,0,0,0,1,1,0,7.5962424,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,12,11,5,1,684.5,2012724.8,840370.19,474562.69,0,0,0,7049.293 +1379,1714,2999,-9,3000,3001,1,0,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1029.6787,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0919662,0,46.48,57.16,-9,-9,10,2,3,0,0,0,10,4,1,262,577441,324798,266427.84,159072.78,3985.4915,0,4065.6462 +1379,1714,3000,3001,-9,-9,1,0,43,0,1,0,1,1,-9,0,2,8.7135592,8.7523365,0,23,-3,-43.810791,0,1,1,2021,18,7,42,54,1,7,0,14.190126,14.190126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.84,49.92,50.77,33.47,3.333333333333333,2,3,0,0,6,10,4,1,262,577441,324798,266427.84,159072.78,3985.4915,0,4065.6462 +1379,1714,3001,3000,-9,-9,1,1,46,0,1,0,1,1,-9,0,2,8.0785627,8.0315838,0,23,3,-25.225895,0,2,2,2021,10,0,45,47,1,0,0,6.8837996,6.8837996,.05,.05,0,0,0,0,0,0,1,1,0,.33395219,0,50.77,33.47,41.84,49.92,3.333333333333333,2,3,0,1,10,10,4,1,262,577441,324798,266427.84,159072.78,3985.4915,0,4065.6462 +1379,1715,3002,-9,3000,3001,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1075.598,-9,1,1,2021,23,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.01,53.24,-9,-9,5,2,3,0,0,0,10,1,1,1263,147986.06,0,0,0,0,0,0 +1380,1716,3003,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.4959602,8.391963,0,0,0,-1031.3225,0,2,2,2021,12,2,42,37,1,2,0,13.236697,13.236697,0,0,.05,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,1,8,7,5,0,136,268317.88,196767.84,397727.91,218470.69,8850.1992,0,1664.2008 +1381,1717,3004,3005,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.5786753,9.4790936,0,10,1,63.302452,0,3,2,2021,10,2,60,57,1,2,0,30.667858,30.667858,0,0,0,0,0,0,0,0,0,0,0,4.7922139,0,55.36,51.57,47.58,63.43,6.666666666666667,1,1,0,0,11,9,5,1,988,4925523.5,2125577.3,1770155.3,0,0,0,6099.5967 +1381,1717,3005,3004,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.2887983,8.6377106,0,10,-1,-113.26483,0,1,1,2021,7,0,36,36,1,0,0,13.417307,13.417307,0,0,0,0,0,0,0,0,0,0,0,0,0,47.58,63.43,55.36,51.57,6.666666666666667,1,1,0,0,11,9,5,1,988,4925523.5,2125577.3,1770155.3,0,0,0,6099.5967 +1382,1718,3006,3009,-9,-9,1,1,49,0,3,0,1,1,-9,0,4,9.9149847,9.3131037,0,8,-1,8.7345886,0,-9,-9,2021,11,4,53,48,1,4,0,25.017073,25.017073,0,0,.05,0,0,0,0,0,0,0,0,0,0,53.81,53.56,38.69,61.75,5,1,1,0,0,10,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3007,-9,3009,3006,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.27893,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3008,-9,3009,3006,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.54779,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3009,3006,-9,-9,1,0,50,0,3,0,1,1,-9,0,4,9.599824,9.3983021,0,27,1,-39.11451,0,-9,-9,2021,13,3,45,47,1,3,0,35.890903,35.890903,0,0,.05,0,0,0,0,0,0,0,0,0,0,38.69,61.75,53.81,53.56,6.666666666666667,3,4,0,0,10,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1382,1718,3010,-9,3009,3006,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.5099,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1873.8,693889.19,59227.813,834178.31,419070.84,409.51736,0,9570.0625 +1383,1719,3011,-9,3012,3013,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.6239,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,848.33331,572196.31,184152.28,219730.2,157053.94,0,0,3755.6851 +1383,1719,3012,3013,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,0,0,0,1,7,-49.656502,0,2,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6317239,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,6,6,4,1,848.33331,572196.31,184152.28,219730.2,157053.94,0,0,3755.6851 +1383,1719,3013,3012,-9,-9,1,1,44,0,1,0,2,2,-9,0,5,8.594243,9.1351986,0,1,-7,-12.076468,-9,-9,-9,2021,7,0,41,0,1,0,0,20.118492,20.118492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,6,4,1,848.33331,572196.31,184152.28,219730.2,157053.94,0,0,3755.6851 +1384,1720,3014,-9,3015,3017,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-896.25415,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1384,1720,3015,3017,-9,-9,1,0,36,1,3,0,2,2,-9,0,3,7.8268609,7.7341838,0,7,-2,39.470825,0,2,2,2021,12,0,1,16,1,0,0,339.30182,339.30182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.84,51.65,47.64,52.35,1.666666666666667,1,1,0,0,12,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1384,1720,3016,-9,3015,3017,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1197.0035,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1384,1720,3017,3015,-9,-9,1,1,38,1,3,0,2,2,-9,0,3,9.0880489,8.592741,0,7,2,49.484291,0,2,2,2021,9,2,35,35,1,2,0,19.312592,19.312592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.64,52.35,31.84,51.65,6.666666666666667,1,1,0,0,11,9,4,1,781.75,344615.72,119366.34,316665,163159.09,0,0,4251.4736 +1385,1721,3018,3019,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.8770876,9.0437822,0,18,5,-56.291023,0,-9,-9,2021,11,0,55,50,1,0,0,19.253128,19.253128,.05,.05,0,0,0,0,3.0224996,0,0,0,0,0,0,42.91,58.63,52,57,8.333333333333334,1,1,0,0,9,8,5,1,1835,808636,473273.97,519566.03,149254.91,3315.6772,0,3484.8025 +1385,1721,3019,3018,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,3.347784,3.4174809,0,17,-5,13.917556,0,1,1,2021,6,0,10,0,1,0,0,.34635973,.34635973,0,0,0,0,0,0,0,0,0,0,0,0,0,52,57,42.91,58.63,1.666666666666667,4,2,0,0,4,8,5,1,1835,808636,473273.97,519566.03,149254.91,3315.6772,0,3484.8025 +1386,1722,3020,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.7146511,8.0377827,0,0,0,-1028.2014,0,3,2,2021,8,0,40,30,1,0,0,12.310951,12.310951,.05,.05,.05,0,0,0,0,0,1,1,0,6.5040812,0,53.39,36.44,-9,-9,3.333333333333333,1,1,0,0,1,11,4,1,1868,192962.38,16913.336,178377.67,1298.0236,2768.259,574.06158,1994.1124 +1387,1723,3021,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-861.37451,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,126,-193806.3,0,0,0,0,0,503.41138 +1388,1724,3022,3023,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.5092793,8.5663481,5.7379479,2,5,4.030632,0,2,1,2021,9,0,37,37,1,0,0,13.599344,13.599344,.05,.05,0,0,0,0,.2295676,0,0,0,0,3.888483,6.1028509,46.44,59.62,47.07,53.97,8.333333333333334,1,1,0,0,14,7,5,1,409.5,585157.88,246884.78,275853.88,0,-40.571381,0,3454.667 +1388,1724,3023,3022,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.2424374,8.2784243,0,2,-5,-10.960138,0,-9,-9,2021,11,0,48,40,1,0,0,10.793604,10.793604,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.07,53.97,46.44,59.62,5,1,1,0,0,8,7,5,1,409.5,585157.88,246884.78,275853.88,0,-40.571381,0,3454.667 +1388,1725,3024,-9,3022,-9,1,1,26,0,0,0,2,2,-9,0,2,4.8908319,5.1797876,0,0,0,-1045.0116,0,2,-9,2021,6,0,1,0,1,0,1,22.314146,22.314146,0,0,0,0,0,0,0,0,0,0,0,5.3190641,0,55.2,49.4,-9,-9,5,1,1,0,0,7,7,2,1,3495,74989.016,0,0,0,0,0,-740.05676 +1389,1726,3025,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.352746,8.5681696,0,0,0,-972.86328,-9,2,-9,2021,11,0,60,0,1,0,0,11.530574,11.530574,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,2,10,4,1,2417,561773.38,344921.94,159894.88,0,0,0,3042.6443 +1390,1727,3026,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.5841188,8.7494087,6.3150725,0,0,-1023.3975,0,3,3,2021,10,0,47,47,1,0,0,9.6183643,9.6183643,0,0,0,0,0,0,0,7,1,1,0,1.011354,6.7962141,53.99,48.04,-9,-9,5,1,1,0,0,9,7,5,1,614,2049130.4,973454.88,940347.19,0,0,0,1906.4517 +1391,1728,3027,3029,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.1488276,7.8987837,0,6,-4,29.713333,0,-9,-9,2021,6,0,35,40,1,0,0,11.586173,11.586173,.05,.05,.05,0,0,0,0,0,1,1,0,3.25561,0,48.28,60.18,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1391,1728,3028,-9,3029,3027,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.73883,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1391,1728,3029,3027,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.4855433,8.4829397,0,6,4,-126.41405,0,1,1,2021,19,7,30,38,1,7,0,15.604876,15.604876,.05,.05,0,0,0,0,0,0,1,1,0,2.1637349,0,43.54,59.6,48.28,60.18,8.333333333333334,1,1,0,0,1,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1391,1728,3030,-9,3029,3027,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1197.5591,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1044.25,177230.31,-14833.319,294228.38,137222.34,15.775,532.72852,3546.2249 +1392,1729,3031,3032,-9,-9,1,1,83,0,0,0,1,1,-9,0,4,0,8.5412893,8.694993,58,5,-116.58186,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6614952,60.54,42.25,55.9,51.29,10,1,1,0,0,0,1,4,1,777,1457209.3,525742.75,522499.41,0,0,0,3438.52 +1392,1729,3032,3031,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,58,-5,-30.671942,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3957243,0,55.9,51.29,60.54,42.25,10,1,1,0,0,11,1,4,1,777,1457209.3,525742.75,522499.41,0,0,0,3438.52 +1393,1730,3033,3034,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,55,-5,21.95866,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.35472265,7,1,1,0,0,0,52.82,53.97,42.75,25.25,8.333333333333334,1,1,0,0,0,12,3,1,756.5,317385.59,256488.94,125669.58,0,0,0,1555.9023 +1393,1730,3034,3033,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,7.301136,7.1713576,55,5,-78.199478,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4244213,42.75,25.25,52.82,53.97,6.666666666666667,1,1,0,0,0,12,3,1,756.5,317385.59,256488.94,125669.58,0,0,0,1555.9023 +1394,1731,3035,-9,3036,3037,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.9614,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1394,1731,3036,3037,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.1233854,8.035984,0,11,-3,48.392605,0,2,3,2021,14,3,55,34,1,3,0,6.7916303,6.7916303,.05,.05,0,0,0,0,0,2,1,1,0,0,0,42.02,56.48,48.77,60.16,6.666666666666667,2,3,0,0,9,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1394,1731,3037,3036,-9,-9,1,1,42,0,2,0,1,1,-9,0,5,8.3267508,8.7578211,0,9,3,56.274773,0,2,1,2021,12,1,43,42,1,1,0,16.616972,16.616972,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,42.02,56.48,8.333333333333334,1,1,0,0,9,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1394,1731,3038,-9,3036,3037,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.04962,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,4,1,850.75,605385.56,357202.75,245299.27,61481.02,0,0,3716.3164 +1395,1732,3039,-9,3043,3042,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.7362,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3040,-9,3043,3042,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-930.42419,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3041,-9,3043,3042,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.328,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3042,3043,-9,-9,1,1,46,1,3,0,2,2,-9,0,4,8.1114807,8.0764256,0,18,8,-32.869404,0,2,2,2021,8,0,22,22,1,0,0,19.238083,19.238083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,13,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1395,1732,3043,3042,-9,-9,1,0,38,1,3,0,1,1,-9,0,3,8.4573851,8.3234596,0,19,-8,90.829826,0,2,2,2021,12,1,29,-9,1,1,0,15.870246,15.870246,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,13,7,4,1,1127.2,1177900.8,298147.59,121874.84,6978.1299,0,0,2966.5925 +1396,1733,3044,3045,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,8.3151846,8.3702116,52,-1,25.553797,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0838642,8.1199551,54.77,55.87,54.2,57.49,8.333333333333334,1,1,0,0,0,4,4,1,3323.5,2826941.5,846486.31,719752.75,0,0,0,4085.6985 +1396,1733,3045,3044,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,6.7683306,7.7318659,6.9269338,52,1,-10.042855,0,1,1,2021,7,0,40,45,1,0,0,2.5898173,2.5898173,0,0,0,0,0,0,0,0,1,1,0,0,7.0888448,54.2,57.49,54.77,55.87,8.333333333333334,1,1,0,0,12,4,4,1,3323.5,2826941.5,846486.31,719752.75,0,0,0,4085.6985 +1397,1734,3046,3047,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.6295595,8.6979599,0,3,0,24.126293,0,-9,-9,2021,8,0,34,41,1,0,0,18.386944,18.386944,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.06,57.76,10,1,1,0,0,2,2,5,1,382,51092.309,93484.75,0,0,3592.7708,0,3933.9863 +1397,1734,3047,3046,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.7722139,8.3526115,0,3,0,-11.981013,0,2,-9,2021,3,0,38,38,1,0,0,14.45839,14.45839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,2,5,1,382,51092.309,93484.75,0,0,3592.7708,0,3933.9863 +1398,1735,3048,-9,3049,3050,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.041,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1398,1735,3049,3050,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.6332278,7.4729314,0,11,-1,-122.80299,0,2,2,2021,9,0,15,14,1,0,0,11.271121,11.271121,0,0,0,0,0,0,0,0,1,1,0,.19828768,0,43.91,44.66,27.1,59.11,8.333333333333334,1,1,0,1,11,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1398,1735,3050,3049,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.5545845,8.5175009,0,11,1,27.209507,0,2,2,2021,14,2,45,40,1,2,0,12.802292,12.802292,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,59.11,43.91,44.66,3.333333333333333,1,1,0,1,13,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1398,1735,3051,-9,3049,3050,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.06616,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,4,1,457.25,-36860.266,0,0,0,39876.563,0,3002.3291 +1399,1736,3052,3053,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.8964624,6.6702585,51,1,103.54101,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8773067,6.7423091,44.83,55.13,51.49,57.57,8.333333333333334,1,1,0,0,0,12,2,1,1724.5,366974.41,164729.38,202469.06,0,0,0,2403.4338 +1399,1736,3053,3052,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.9727912,6.5032926,12,-1,-141.05859,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.243618,6.5585947,51.49,57.57,44.83,55.13,8.333333333333334,1,1,0,0,6,12,2,1,1724.5,366974.41,164729.38,202469.06,0,0,0,2403.4338 +1400,1737,3054,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,2.6564224,2.9209743,0,0,-1071.6127,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.71119756,2.5690084,56.1,31.17,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,273,393776.53,27981.234,146044.06,0,0,0,1435.1664 +1401,1738,3055,3056,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,7,4,10.236912,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8744955,0,56.34,37.93,52.23,52.9,8.333333333333334,1,1,0,0,5,5,2,1,381,238575.7,62033.703,150105.33,0,0,0,1772.5493 +1401,1738,3056,3055,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,5.2923365,4.9129152,7,-4,-154.12886,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2890382,5.1116257,52.23,52.9,56.34,37.93,8.333333333333334,1,1,0,0,5,5,2,1,381,238575.7,62033.703,150105.33,0,0,0,1772.5493 +1402,1739,3057,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.060473,5.8894625,0,0,-1026.2463,0,-9,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4668226,27.81,65.69,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,362,296621.63,104827.33,201348.39,0,0,0,1068.6952 +1403,1740,3058,3059,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-93.370399,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.1005778,0,49.99,43.04,63.31,22.39,8.333333333333334,1,1,0,0,0,7,2,1,787.5,-88030.695,0,0,0,0,0,778.72125 +1403,1740,3059,3058,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,5.0380216,4.8315263,9,3,53.524445,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,1.5499277,3.4420712,22.064129,0,1,1,0,4.1328621,4.8667483,63.31,22.39,49.99,43.04,8.333333333333334,1,1,0,0,0,7,2,1,787.5,-88030.695,0,0,0,0,0,778.72125 +1404,1741,3060,3061,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.3937826,8.3432169,0,15,1,80.300468,0,2,1,2021,7,0,47,44,1,0,0,12.833816,12.833816,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,50.46,53.68,8.333333333333334,1,1,0,0,14,6,5,1,345,880997.19,311975.66,395405.63,0,18221.043,0,4589.4932 +1404,1741,3061,3060,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.1285973,9.3715296,0,17,-1,-19.588131,0,2,2,2021,9,0,57,52,1,0,0,17.253965,17.253965,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,51.83,57.2,8.333333333333334,1,1,0,0,12,6,5,1,345,880997.19,311975.66,395405.63,0,18221.043,0,4589.4932 +1404,1741,3062,-9,3061,3060,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.91083,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,5,1,345,880997.19,311975.66,395405.63,0,18221.043,0,4589.4932 +1405,1742,3063,3064,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5308228,8.4524517,0,31,1,88.314529,0,-9,-9,2021,6,0,55,56,1,0,0,12.550264,12.550264,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,241,426167.88,207503.69,204095.67,0,0,0,3160.6899 +1405,1742,3064,3063,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8576484,8.3859711,0,31,-1,-73.548103,0,-9,-9,2021,9,1,40,32,1,1,0,8.46803,8.46803,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,8,9,5,1,241,426167.88,207503.69,204095.67,0,0,0,3160.6899 +1405,1743,3065,-9,3064,3063,1,0,25,0,0,0,1,1,-9,0,4,8.1976614,7.9618592,0,0,0,-1042.3712,0,2,2,2021,9,0,50,38,1,0,1,6.1884789,6.1884789,0,0,0,0,0,0,0,0,0,0,0,0,0,45.23,56.21,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1334,-88202.664,0,0,0,0,0,1003.2609 +1406,1744,3066,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1070.766,0,2,-9,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.62,24.46,-9,-9,5,3,4,0,1,0,8,1,0,329,-2990.2393,0,0,0,0,7817.2817,1095.1538 +1407,1745,3067,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.7130542,4.4867821,0,0,-834.72638,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2661285,57.84,34,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,917,-154702.75,-49321.094,0,0,0,0,631.66699 +1408,1746,3068,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.2023058,7.28686,0,0,-949.85425,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0394011,7.5285764,44.49,61.79,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,1912,367492.13,223068.25,168818.69,0,0,0,1034.6362 +1409,1747,3069,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.3972101,8.2909698,0,0,0,-911.11395,0,3,3,2021,6,1,50,60,1,1,0,11.321434,11.321434,0,0,0,0,0,0,0,0,0,0,0,0,0,36.98,49.04,-9,-9,5,1,1,0,0,11,2,5,1,1775,202059.8,159147.31,139844.41,0,0,0,2113.1895 +1410,1748,3070,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.3017569,7.3469172,0,0,-1057.8154,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4802985,7.5309992,52,48,-9,-9,7,1,1,0,0,7,8,3,1,1397,610811.94,202254.61,110484.16,0,1488.5635,0,1714.9039 +1411,1749,3071,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.3118658,8.1192741,0,0,-1048.5483,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3792572,38.89,53.76,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,91,841456,620809.31,113437.06,0,0,0,2792.394 +1412,1750,3072,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.9960661,9.0016394,0,0,0,-931.54492,0,2,2,2021,12,0,41,51,1,0,0,20.173021,20.173021,.05,.05,0,0,0,0,0,0,1,1,0,.6152705,0,54.2,57.49,-9,-9,7,1,1,0,0,8,4,5,1,1721,57496.18,-34719.332,178328.83,99561.563,7424.0757,0,1755.3469 +1413,1751,3073,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.5020814,5.5090556,0,0,-932.53339,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7607312,68.89,35.82,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,1263,394746.13,-57005.816,312467.34,0,0,0,1089.4908 +1414,1752,3074,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.2781334,8.5142584,0,0,0,-1031.6705,0,-9,-9,2021,15,3,38,38,1,3,0,13.672562,13.672562,.05,.05,0,0,0,0,0,0,0,0,0,1.4177053,0,32.9,57.87,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,498,-249398.45,113851.51,0,0,15293.885,0,1097.1382 +1415,1753,3075,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.9664092,8.177002,0,0,0,-924.44415,0,2,2,2021,22,7,20,24,1,7,0,19.900442,19.900442,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.01,61.11,-9,-9,1.666666666666667,1,1,0,0,8,8,4,1,193,262119.59,-25116.641,236850.16,61608.352,0,0,1377.8137 +1416,1754,3076,3077,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.0495944,7.2806368,5.1410904,12,-1,-97.943283,0,2,2,2021,12,1,40,40,1,1,0,3.0108876,3.0108876,0,0,0,0,0,0,0,14.5,0,0,0,0,5.2059507,46.98,59.35,44.02,60.7,8.333333333333334,1,1,0,0,14,10,3,1,503.5,1308442.6,563676,417582.38,0,0,0,1245.7725 +1416,1754,3077,3076,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,5.1077809,7.2362556,6.7679291,12,1,-48.358475,0,3,2,2021,15,5,40,40,1,5,0,.38437086,.38437086,0,0,0,0,0,0,0,0,0,0,0,3.739619,7.009727,44.02,60.7,46.98,59.35,8.333333333333334,1,1,0,0,12,10,3,1,503.5,1308442.6,563676,417582.38,0,0,0,1245.7725 +1417,1755,3078,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2253256,8.0570374,5.817194,0,0,-1036.6206,0,2,1,2021,10,0,37,37,1,0,0,12.503744,12.503744,.05,.05,.05,0,0,0,0,42,0,0,0,6.2371244,0,46,50,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,998,140567.34,32879.855,166534.95,26833.971,0,0,1687.651 +1418,1756,3079,3080,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,2,1,-201.15897,0,-9,-9,2021,8,0,0,46,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.07,56.08,54.79,55.86,6.666666666666667,1,1,1,0,2,13,3,0,645.5,228417.47,24630.426,158274.19,0,0,0,499.9234 +1418,1756,3080,3079,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.6199865,7.5401516,0,2,-1,-117.36336,0,3,-9,2021,9,0,35,36,1,0,0,6.6995187,6.6995187,0,0,0,0,0,0,0,0,1,1,0,.74374521,0,54.79,55.86,39.07,56.08,8.333333333333334,1,1,0,0,8,13,3,0,645.5,228417.47,24630.426,158274.19,0,0,0,499.9234 +1419,1757,3081,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.1564798,8.2704172,0,0,0,-1020.7224,-9,2,-9,2021,12,1,28,0,1,1,0,14.187363,14.187363,.05,.05,0,0,0,0,0,7,0,0,0,.65591818,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,0,14,5,4,1,232,289138.94,228751.47,125543.77,3501.718,3874.2783,137.62962,1541.2799 +1419,1758,3082,3083,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,7.8498001,7.8254833,0,1,-2,-55.81905,-9,-9,-9,2021,9,0,40,0,1,0,0,5.7866282,5.7866282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.37,49.25,10,1,1,0,0,2,5,4,1,928.5,52750.102,10619.76,176348.64,88539.961,1601.5947,0,2612.6353 +1419,1758,3083,3082,-9,3081,1,0,24,0,0,0,1,1,-9,0,3,8.1550989,8.0852757,0,1,2,-5.639863,0,-9,2,2021,23,10,46,45,1,10,0,9.1327648,9.1327648,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.37,49.25,57.06,57.76,5,1,1,0,0,7,5,4,1,928.5,52750.102,10619.76,176348.64,88539.961,1601.5947,0,2612.6353 +1420,1759,3084,3085,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.02,20.92,57.59,30.59,6.666666666666667,2,3,0,1,0,4,1,1,1057,123770.06,0,231550.42,7884.9678,0,0,2346.3442 +1420,1759,3085,3084,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.59,30.59,49.02,20.92,6.666666666666667,2,3,0,0,0,4,1,1,1057,123770.06,0,231550.42,7884.9678,0,0,2346.3442 +1420,1760,3086,-9,3085,3084,1,0,25,0,0,1,1,0,0,0,4,0,0,0,0,0,-902.98987,-9,3,3,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,6.666666666666667,2,3,0,0,6,4,1,1,1032,-73119.359,0,0,0,0,1120.8698,0 +1420,1761,3087,-9,3085,3084,1,0,23,0,0,0,1,1,1,0,2,7.9670234,7.7845726,0,0,0,-935.21338,-9,3,3,2021,12,1,38,0,1,1,0,9.7745619,9.7745619,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,55.66,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,1758,-151660.48,0,0,0,0,0,1689.3729 +1420,1762,3088,-9,3085,3084,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1005.3044,-9,3,3,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.44,48.18,-9,-9,3.333333333333333,2,3,0,0,6,4,1,1,50,-43879.031,0,0,0,0,0,0 +1421,1763,3089,3090,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.6861267,7.9217377,0,43,-3,-51.651825,0,-9,-9,2021,10,0,24,23,1,0,0,10.762269,10.762269,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.05,57.22,5,1,1,0,0,13,9,3,1,269.5,716544.13,371232.13,308928.69,0,0,-360.40326,1410.4225 +1421,1763,3090,3089,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,5.6458526,5.5521536,0,42,3,95.747131,0,3,3,2021,7,1,50,50,1,1,0,.81710047,.81710047,0,0,0,0,0,0,0,0,0,0,0,0,0,46.05,57.22,54.79,55.86,3.333333333333333,1,1,0,0,13,9,3,1,269.5,716544.13,371232.13,308928.69,0,0,-360.40326,1410.4225 +1421,1764,3091,-9,3089,3090,1,0,32,0,0,0,2,2,-9,0,3,7.9099069,7.8178864,0,0,0,-825.88214,0,3,2,2021,12,1,39,39,1,1,1,6.7473335,6.7473335,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,5,1,1,0,0,13,9,3,1,1059,-341355.75,194580.63,0,0,0,0,1591.6665 +1422,1765,3092,3093,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.0046158,8.1597033,0,33,-1,1.4368607,0,3,3,2021,14,3,40,42,1,3,0,11.614406,11.614406,0,0,0,0,0,0,0,0,0,0,0,2.1464877,0,34.81,46.68,49.64,48.69,5,1,1,0,0,8,9,4,0,2551.5,526696.69,269112.28,225903.02,10612.78,794.74011,0,2667.8862 +1422,1765,3093,3092,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.821116,7.9563026,5.750401,34,1,-76.87825,0,3,3,2021,12,1,40,44,1,1,0,7.0063944,7.0063944,.05,.05,.05,0,0,0,0,0,0,0,0,0,6.0782719,49.64,48.69,34.81,46.68,6.666666666666667,1,1,0,0,5,9,4,0,2551.5,526696.69,269112.28,225903.02,10612.78,794.74011,0,2667.8862 +1423,1766,3094,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1067.7469,0,2,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86442602,0,44.79,55.04,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,4820,0,0,0,0,0,0,414.10422 +1424,1767,3095,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,6.8278837,6.5347691,0,0,-1012.9274,0,-9,-9,2021,30,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6756244,6.9447441,32.27,37.26,-9,-9,0,1,1,0,0,0,8,2,1,341,2332713.3,0,1690407.4,0,0,0,916.29486 +1425,1768,3096,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.6220245,7.6211195,0,0,0,-992.28394,0,3,2,2021,12,0,31,30,1,0,0,8.4708958,8.4708958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.56,39.66,-9,-9,5,1,1,0,0,10,11,3,0,1501,445453.25,130450.06,214878,0,0,0,988.15149 +1425,1769,3097,-9,3096,-9,1,1,21,0,0,0,2,2,-9,0,2,7.5088773,7.4691133,0,0,0,-1052.5344,0,2,-9,2021,27,10,33,34,1,10,1,5.7380676,5.7380676,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.65,54.69,-9,-9,0,1,1,0,0,3,11,3,0,259,105262.61,129746.44,0,0,827.1651,0,1040.6584 +1426,1770,3098,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.2135844,6.0394578,0,0,-1000.81,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4408092,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,404,879945.06,109573.19,577288.56,0,0,0,1294.7062 +1427,1771,3099,3101,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.8683338,9.0743303,0,27,-2,55.205784,0,2,3,2021,6,0,29,33,1,0,0,29.292702,29.292702,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.07,46.29,6.666666666666667,1,1,0,1,9,1,5,1,1414.3334,1568483.3,1056256.3,407372.19,0,0,0,5202.4102 +1427,1771,3100,-9,3099,3101,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1059.6842,-9,1,1,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.43904242,0,13.19,67.08,-9,-9,6.666666666666667,1,1,0,0,0,1,5,1,1414.3334,1568483.3,1056256.3,407372.19,0,0,0,5202.4102 +1427,1771,3101,3099,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,9.2065821,9.3652887,0,9,2,57.108624,0,-9,-9,2021,10,0,44,44,1,0,0,23.504648,23.504648,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.07,46.29,57.16,56.15,8.333333333333334,1,1,0,0,9,1,5,1,1414.3334,1568483.3,1056256.3,407372.19,0,0,0,5202.4102 +1428,1772,3102,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1002.5291,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46,17.21,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,695,28480.516,0,2885.3081,12824.981,0,0,987.01147 +1429,1773,3103,3104,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,8.6908112,8.5714073,0,6,3,16.408899,-9,-9,-9,2021,9,0,30,0,1,1,0,20.001936,20.001936,0,0,0,0,0,0,0,0,1,1,0,6.3620124,0,53,47,63.24,42.39,8,4,1,0,0,1,13,5,1,1222.5,1421268.4,1122404.8,279813.69,0,0,0,5423.5391 +1429,1773,3104,3103,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.0083022,7.1773372,0,6,-3,-58.872002,0,3,3,2021,6,0,16,20,1,0,0,10.334919,10.334919,0,0,0,0,0,0,0,0,1,1,0,7.3902445,0,63.24,42.39,53,47,8.333333333333334,1,1,0,0,7,13,5,1,1222.5,1421268.4,1122404.8,279813.69,0,0,0,5423.5391 +1430,1774,3105,3106,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8085365,8.991744,0,19,-6,43.587097,0,2,2,2021,14,2,48,38,1,2,0,16.17382,16.17382,0,0,0,0,0,0,0,0,0,0,0,0,0,48.76,53.24,47.77,56.48,6.666666666666667,2,3,0,0,4,8,5,1,1133,805499.13,140964.03,476454.69,34394.578,0,0,3426.2605 +1430,1774,3106,3105,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,0,0,0,19,6,-39.970142,0,2,1,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.1408372,0,47.77,56.48,48.76,53.24,6.666666666666667,2,3,0,0,9,8,5,1,1133,805499.13,140964.03,476454.69,34394.578,0,0,3426.2605 +1431,1775,3107,-9,3108,3109,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.01617,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,0,806.33331,39984.09,-38963.961,0,0,4370.0283,0,1326.9006 +1431,1775,3108,3109,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,0,0,24,0,127.77394,0,2,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.54,37.26,60.21,34.28,5,2,3,0,0,0,2,2,0,806.33331,39984.09,-38963.961,0,0,4370.0283,0,1326.9006 +1431,1775,3109,3108,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,7.7356858,7.872293,0,24,0,1.9255397,0,3,3,2021,7,0,30,44,1,0,0,9.1834021,9.1834021,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.21,34.28,49.54,37.26,5,2,3,0,0,9,2,2,0,806.33331,39984.09,-38963.961,0,0,4370.0283,0,1326.9006 +1432,1776,3110,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-954.71948,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.86,32.4,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,680,-149594.33,0,0,0,0,0,1189.3202 +1433,1777,3111,3112,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.290729,6.416306,11,-4,4.8525877,0,2,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6044912,5.8528295,46.55,30.75,51.77,58.57,3.333333333333333,1,1,0,0,5,11,3,1,642,738765.25,488205.88,140946.91,0,0,0,1971.8132 +1433,1777,3112,3111,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2225108,7.4362612,11,4,-105.67155,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2645798,7.3430367,51.77,58.57,46.55,30.75,6.666666666666667,1,1,0,0,5,11,3,1,642,738765.25,488205.88,140946.91,0,0,0,1971.8132 +1434,1778,3113,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,8.4587078,8.5109072,0,0,-1062.6816,-9,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,6.283536,0,0,1,1,0,3.2981102,8.7315359,65.13,21.6,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1524,461840.22,190437.89,151737.14,0,0,1086.4277,3275.5635 +1435,1779,3114,3115,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,7.7949262,7.9932666,29,-5,15.051095,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.5066862,0,41.45,36.84,54.76,32.27,6.666666666666667,1,1,0,0,5,6,5,1,602,2399918.3,1619441,557133.13,0,0,331.45502,4722.8408 +1435,1779,3115,3114,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.0611734,8.9171133,8.4911833,29,5,12.697886,0,2,2,2021,11,2,40,40,1,2,0,10.655701,10.655701,.05,.05,0,0,0,0,0,2,1,1,0,8.6595926,0,54.76,32.27,41.45,36.84,5,1,1,0,0,9,6,5,1,602,2399918.3,1619441,557133.13,0,0,331.45502,4722.8408 +1436,1780,3116,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.1694622,8.6446152,7.2761545,0,0,-941.50616,0,2,3,2021,9,2,37,0,1,2,0,9.7005672,9.7005672,0,0,0,0,0,0,0,0,1,1,0,2.7437196,7.5415359,44.95,58.82,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,1097,502507.88,510893.13,0,0,0,0,2346.1746 +1437,1781,3117,3119,-9,-9,1,1,55,0,2,0,3,3,-9,0,4,0,0,0,38,9,70.479996,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.11,54.04,51.73,58.82,8.333333333333334,1,1,0,0,0,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1437,1781,3118,-9,3119,3117,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.4084,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1437,1781,3119,3117,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.735486,8.9175291,0,28,0,39.943592,0,2,2,2021,8,0,40,41,1,0,0,16.406366,16.406366,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,50.11,54.04,8.333333333333334,1,1,0,0,11,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1437,1781,3120,-9,3119,3117,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1087.1587,-9,1,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,571,310315.38,198638.22,198526.56,71831.07,2072.3115,0,2597.1709 +1438,1782,3121,3122,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.2728863,8.4396753,6,7,-24.936079,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4716034,8.3258209,45.96,38.67,58.47,44.69,8.333333333333334,1,1,0,0,0,1,5,1,680.5,2284131,1831575.5,134240.83,0,0,0,5789.2539 +1438,1782,3122,3121,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,8.5487242,8.3357601,42,-7,39.158508,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4160542,8.4825144,58.47,44.69,45.96,38.67,8.333333333333334,1,1,0,0,0,1,5,1,680.5,2284131,1831575.5,134240.83,0,0,0,5789.2539 +1439,1783,3123,3124,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9488482,7.1871653,12,-5,5.0668302,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.138654,7,0,0,0,5.3084788,7.1693931,41.69,46.3,59.29,49.68,6.666666666666667,1,1,0,0,12,12,2,1,931,664192.13,320685.44,150883.16,0,0,0,316.31827 +1439,1783,3124,3123,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,0,0,12,5,-176.284,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,41.69,46.3,8.333333333333334,1,1,0,0,8,12,2,1,931,664192.13,320685.44,150883.16,0,0,0,316.31827 +1440,1784,3125,-9,-9,-9,1,0,75,0,2,0,1,1,-9,0,4,0,5.9953895,5.8046694,0,0,-886.13794,0,-9,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4242668,42.46,33.24,-9,-9,3.333333333333333,1,1,0,0,8,10,2,1,1044,43978.648,0,0,0,0,0,-1.5577477 +1441,1785,3126,3127,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.6880951,8.6381445,0,6,-6,-16.121326,0,3,2,2021,10,0,47,52,1,0,0,15.56046,15.56046,0,0,0,0,0,0,0,0,0,0,0,4.7909384,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,1020.5,2623708.5,2277248,443113.5,20400.793,0,0,4704.8604 +1441,1785,3127,3126,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.8247108,8.6902733,0,6,6,18.134407,0,2,2,2021,14,2,41,37,1,2,0,19.54143,19.54143,.05,.05,0,0,0,0,0,0,0,0,0,3.5713966,0,54.2,57.49,48.87,58.55,6.666666666666667,1,1,0,0,7,2,5,1,1020.5,2623708.5,2277248,443113.5,20400.793,0,0,4704.8604 +1442,1786,3128,3129,-9,-9,1,0,46,0,0,0,1,1,-9,1,1,0,0,0,24,-4,33.231941,0,3,3,2021,30,11,0,0,3,11,0,0,0,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,31.68,17,44,41,3.333333333333333,1,1,0,0,12,11,5,1,660.5,496248.38,308226.47,239247.17,17213.633,13005.973,512.18085,4011.8442 +1442,1786,3129,3128,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,9.1521282,8.8290854,0,5,4,31.748384,0,-9,-9,2021,18,7,43,0,1,7,0,17.399372,17.399372,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,44,41,31.68,17,3.333333333333333,1,1,0,0,15,11,5,1,660.5,496248.38,308226.47,239247.17,17213.633,13005.973,512.18085,4011.8442 +1442,1787,3130,-9,3128,3129,1,1,25,0,0,0,2,2,-9,0,2,6.9265127,6.8342423,0,0,0,-993.93756,0,1,1,2021,12,3,32,0,1,3,1,5.1327243,5.1327243,0,0,0,0,0,0,0,7,1,0,1,0,0,36.02,46.14,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,295,40478.715,0,0,0,0,0,656.75574 +1442,1788,3131,-9,3128,3129,1,1,23,0,0,0,2,2,1,0,3,7.9584937,7.8993249,0,0,0,-886.10803,-9,1,1,2021,18,5,40,0,1,5,1,9.7506571,9.7506571,0,0,0,0,0,0,0,0,1,0,1,0,0,34.21,51.94,-9,-9,5,1,1,0,0,1,11,4,1,451,-45668.523,0,0,0,0,0,642.54633 +1443,1789,3132,-9,3133,3135,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.08203,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1443,1789,3133,3135,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.9705539,7.9593172,0,4,0,32.766232,0,-9,-9,2021,11,0,25,33,1,2,0,12.701156,12.701156,0,0,0,0,0,0,0,27,0,0,0,0,0,47,57,51,56,7,1,1,0,0,9,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1443,1789,3134,-9,3133,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.0336,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1443,1789,3135,3133,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.9608574,8.9837952,0,4,9,-9.1931171,0,2,2,2021,13,3,82,70,1,3,0,11.037852,11.037852,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,56,47,57,8.333333333333334,1,1,0,0,11,12,5,1,500.5,519271.31,202666.59,359177.5,109254.02,0,0,3847.2158 +1444,1790,3136,3137,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.9360256,8.0563374,0,38,-1,-13.802668,0,2,2,2021,12,1,38,38,1,1,0,8.3146095,8.3146095,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.66,43.2,49.27,56.95,5,1,1,0,0,14,9,3,1,901,501507.38,358754.75,57693.27,11936.779,0,0,1731.0195 +1444,1790,3137,3136,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,5.2691288,5.3102674,0,38,1,-66.583305,0,2,3,2021,11,2,2,0,1,2,0,13.604075,13.604075,0,0,0,0,0,0,0,0,0,0,0,2.9426856,0,49.27,56.95,55.66,43.2,8.333333333333334,1,1,0,0,6,9,3,1,901,501507.38,358754.75,57693.27,11936.779,0,0,1731.0195 +1444,1791,3138,-9,3137,3136,1,1,28,0,0,0,2,2,-9,0,4,7.7469673,7.4848847,0,0,0,-1115.2665,0,2,2,2021,6,0,43,38,1,0,1,6.309432,6.309432,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.9,53.24,-9,-9,10,1,1,0,0,12,9,3,1,392,30052.479,38955.367,0,0,0,0,1637.9232 +1445,1792,3139,3140,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.4424114,8.5766716,0,1,12,109.51778,0,2,2,2021,14,2,97,113,1,2,0,6.6612506,6.6612506,0,0,0,0,0,0,0,29,0,0,0,0,0,48.26,38.5,36.33,53.5,8.333333333333334,1,1,0,0,12,9,5,1,465,48998.355,31503.723,0,0,0,-76.738617,2899.6118 +1445,1792,3140,3139,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.6470022,7.8240857,0,1,-12,57.07243,-9,-9,-9,2021,18,4,50,0,1,4,0,4.5142508,4.5142508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.33,53.5,48.26,38.5,0,1,1,0,0,0,9,5,1,465,48998.355,31503.723,0,0,0,-76.738617,2899.6118 +1445,1793,3141,-9,-9,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1137.0461,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,0,9,2,1,351,71601.25,0,0,0,0,0,0 +1446,1794,3142,-9,3144,3143,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.2324,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,11,5,1,839.33331,172022.45,48050.609,236345.53,170059,955.98584,14276.191,3978.2419 +1446,1794,3143,3144,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,9.056263,9.219265,0,14,8,-61.416752,0,-9,-9,2021,9,0,38,38,1,0,0,39.938824,39.938824,.05,.05,0,0,0,0,0,0,1,1,0,3.0431383,0,54.64,47.79,46.63,59.72,8.333333333333334,2,3,0,0,11,11,5,1,839.33331,172022.45,48050.609,236345.53,170059,955.98584,14276.191,3978.2419 +1446,1794,3144,3143,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,0,0,0,9,-8,-11.093297,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,54.64,47.79,10,2,3,0,0,0,11,5,1,839.33331,172022.45,48050.609,236345.53,170059,955.98584,14276.191,3978.2419 +1447,1795,3145,3147,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4137506,8.9292116,0,15,4,14.968229,0,2,2,2021,10,2,45,45,1,2,0,14.963349,14.963349,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.46,56.91,47.38,57.75,8.333333333333334,1,1,0,1,12,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1447,1795,3146,-9,3147,3145,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-838.61713,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1447,1795,3147,3145,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.28267,8.5762348,6.0768394,15,-4,-23.870819,0,1,2,2021,7,0,48,6,1,0,0,10.387341,10.387341,0,0,0,0,0,0,0,0,1,1,0,5.4156981,0,47.38,57.75,49.46,56.91,8.333333333333334,1,1,0,0,12,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1447,1795,3148,-9,3147,3145,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.6532,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,503.5,698052.75,184379.44,372443.75,0,0,0,4674.6919 +1448,1796,3149,3150,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.2522836,7.0508633,0,6,-6,4.5489058,0,-9,-9,2021,6,0,30,30,1,0,0,7.7238278,7.7238278,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,69.09,17.02,8.333333333333334,1,1,0,0,13,5,3,1,285,903220.13,830197.63,254869.56,0,10478.238,0,1139.0122 +1448,1796,3150,3149,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,6.6495218,6.9854684,6,6,27.042995,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8468795,6.9207854,69.09,17.02,61.12,51.57,6.666666666666667,1,1,0,0,0,5,3,1,285,903220.13,830197.63,254869.56,0,10478.238,0,1139.0122 +1449,1797,3151,-9,3153,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-992.35455,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,0,938.66669,186839.58,121751.13,178456.89,92143.266,5013.5835,5280.606,2405.0425 +1449,1797,3152,3153,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.0112305,8.0038519,0,1,0,-50.416023,-9,-9,-9,2021,10,0,40,0,1,1,0,8.3557892,8.3557892,.05,.05,0,0,0,0,0,0,1,1,0,1.2115905,0,50,58,46.69,58.35,7,1,1,0,0,1,2,4,0,938.66669,186839.58,121751.13,178456.89,92143.266,5013.5835,5280.606,2405.0425 +1449,1797,3153,3152,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.953506,7.9551253,0,1,9,43.686729,0,3,3,2021,12,0,31,35,1,0,0,10.205446,10.205446,0,0,0,0,0,0,0,2,1,1,0,0,0,46.69,58.35,50,58,5,1,1,0,0,10,2,4,0,938.66669,186839.58,121751.13,178456.89,92143.266,5013.5835,5280.606,2405.0425 +1450,1798,3154,3155,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.5825987,7.6319342,0,1,-1,-46.808781,-9,3,3,2021,12,0,36,0,1,0,0,7.8106141,7.8106141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.88,56.68,8.333333333333334,1,1,0,0,7,13,5,1,629,719609.38,654191.88,269340.31,79297.219,0,0,7401.6797 +1450,1798,3155,3154,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8659973,8.8972988,0,1,1,67.562012,-9,2,2,2021,11,0,36,0,1,0,0,27.550547,27.550547,.05,.05,0,0,0,0,0,0,0,0,0,8.3028612,0,52.88,56.68,54.2,57.49,8.333333333333334,1,1,0,0,7,13,5,1,629,719609.38,654191.88,269340.31,79297.219,0,0,7401.6797 +1450,1799,3156,-9,3154,3155,1,1,25,0,0,0,2,2,-9,0,4,7.6873293,7.6842985,0,0,0,-1102.2792,-9,3,2,2021,9,0,36,0,1,0,1,6.4961581,6.4961581,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,260,-144856.53,0,0,0,0,0,807.99811 +1451,1800,3157,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.1518712,6.9332328,0,0,0,-1025.9526,0,2,2,2021,14,2,47,35,1,2,0,3.2288952,3.2288952,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,27.63,-9,-9,6.666666666666667,1,1,0,0,3,5,3,1,538,515453.34,224882.64,157496.14,0,0,0,792.04126 +1451,1801,3158,-9,3157,-9,1,1,22,0,0,0,2,2,-9,0,4,8.3711309,8.2406874,0,0,0,-1091.3107,0,2,-9,2021,11,1,47,52,1,1,1,8.2837572,8.2837572,0,0,0,0,0,0,0,0,0,0,0,0,0,22.18,69.37,-9,-9,1.666666666666667,1,1,0,0,4,5,4,1,248,227220.22,0,0,0,0,0,2401.0195 +1452,1802,3159,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,3,6.2705522,6.071938,0,0,0,-862.65942,-9,2,2,2021,12,0,25,0,1,0,0,2.7556074,2.7556074,0,0,0,0,0,0,0,0,0,0,0,0,0,35.46,55.45,-9,-9,6.666666666666667,1,1,0,1,2,10,2,1,1182,-44713.02,0,0,0,0,0,381.52536 +1453,1803,3160,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.4204082,7.912848,0,0,-950.33868,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0795755,61.27,40.86,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1089,573789.25,121218.83,288785.5,0,0,0,1091.6333 +1454,1804,3161,-9,3165,3162,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.9846,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3162,3165,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,8.7424421,8.7819777,0,14,-1,129.34859,0,1,1,2021,12,0,32,36,1,0,0,23.282444,23.282444,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.05,54.79,57.16,56.15,6.666666666666667,1,1,0,0,11,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3163,-9,3165,3162,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.7872,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3164,-9,3165,3162,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-926.67242,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1454,1804,3165,3162,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.5589008,8.8199444,0,14,1,116.37928,0,2,2,2021,5,0,30,0,1,0,0,25.903419,25.903419,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.05,54.79,8.333333333333334,1,1,0,0,12,13,5,1,503.79999,904613.56,695727.13,359301.91,193613.3,10481.668,2472.0881,4739.4707 +1455,1805,3166,3169,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,7.3302751,7.4014673,0,10,4,16.280449,0,2,2,2021,9,0,50,50,1,0,0,3.7743917,3.7743917,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,48.99,58.91,8.333333333333334,1,1,0,0,13,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3167,-9,3169,3166,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.43488,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3168,-9,3169,3166,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1099.5967,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3169,3166,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,7.7183547,7.5061393,0,18,-4,94.487938,0,2,2,2021,13,1,10,16,1,1,0,20.648289,20.648289,0,0,0,0,0,0,0,0,1,1,0,0,0,48.99,58.91,57.73,54.53,6.666666666666667,1,1,0,1,13,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1455,1805,3170,-9,3169,3166,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-978.88666,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,3,1,725.40002,210642.42,177586.47,178367.89,126440.92,0,0,2123.1201 +1456,1806,3171,3174,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,0,0,0,7,-3,-6.0074434,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,12,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1456,1806,3172,-9,3171,3174,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.66431,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1456,1806,3173,-9,3171,3174,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.2297,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1456,1806,3174,3171,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.827158,8.6169109,0,7,3,-42.04858,0,-9,-9,2021,8,0,46,50,1,0,0,16.783808,16.783808,0,0,.05,0,0,0,0,0,1,0,1,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,15,10,4,1,702.25,2222703.3,1414916.8,532306.75,159296.95,0,0,3192.2529 +1457,1807,3175,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,1,0,0,0,0,0,-982.9375,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,38.913258,0,0,1,1,0,0,0,28.87,23.73,-9,-9,5,1,1,0,0,0,12,1,0,504,105944.48,0,65422.539,0,0,0,1593.3654 +1458,1808,3176,3177,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,0,0,47,-1,-14.592222,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.485858,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,0,7,3,1,1017,2455810,1104198,1391314.9,0,0,0,5575.3496 +1458,1808,3177,3176,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,8.4770803,8.1993361,47,1,-67.965652,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.7285128,8.2839289,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,7,3,1,1017,2455810,1104198,1391314.9,0,0,0,5575.3496 +1459,1809,3178,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-885.58936,0,3,-9,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.81,45.47,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,1566,-89916.07,0,0,0,0,0,1823.5372 +1460,1810,3179,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-973.89764,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,51,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,713,323708.06,0,353916.88,0,0,0,199.13397 +1461,1811,3180,-9,3181,3182,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.5224,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1461,1811,3181,3182,-9,-9,1,0,31,1,2,0,2,2,-9,0,5,7.3609271,7.5170097,0,1,-3,2.0412889,-9,-9,-9,2021,6,0,6,0,1,0,0,30.906563,30.906563,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,54.96,53.17,10,1,1,0,0,8,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1461,1811,3182,3181,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,8.6718912,8.4847183,0,1,3,42.075764,-9,1,1,2021,7,0,40,0,1,0,0,20.517509,20.517509,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.02,56.42,6.666666666666667,1,1,0,0,13,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1461,1811,3183,-9,3181,3182,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.7719,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,570,1005346.8,32140.967,1359918.3,487300,0,0,3201.6306 +1462,1812,3184,3185,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.3696833,8.5370607,0,1,-3,-75.204948,-9,-9,-9,2021,17,6,76,0,1,6,0,6.4875793,6.4875793,.05,.05,0,0,0,0,0,2,1,1,0,0,0,30.67,65.95,59.29,49.68,8.333333333333334,1,1,0,0,7,12,5,1,1905,492727.97,276899.41,215348.64,37305.816,5048.293,0,3488.9121 +1462,1812,3185,3184,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.0125675,8.4583492,0,1,3,11.693377,0,2,1,2021,7,0,25,30,1,0,0,19.297697,19.297697,.05,.05,.05,0,0,0,0,0,1,1,0,4.6732092,0,59.29,49.68,30.67,65.95,8.333333333333334,1,1,0,0,14,12,5,1,1905,492727.97,276899.41,215348.64,37305.816,5048.293,0,3488.9121 +1463,1813,3186,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1048.3835,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.77,35,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,618,-25125.143,0,0,0,1468.0867,-196.32843,38.97905 +1464,1814,3187,-9,3189,3188,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.54309,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,749,159067.88,201969.41,59949.836,72658.68,924.76587,0,3642.1458 +1464,1814,3188,3189,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.4751101,8.6806355,0,7,4,52.219288,0,-9,-9,2021,6,0,55,50,1,0,0,7.9749389,7.9749389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.2,57.49,0,1,1,0,0,14,6,4,1,749,159067.88,201969.41,59949.836,72658.68,924.76587,0,3642.1458 +1464,1814,3189,3188,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.7533607,8.6668911,0,7,-4,-5.1490383,0,3,3,2021,8,0,44,38,1,0,0,15.338811,15.338811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,13,6,4,1,749,159067.88,201969.41,59949.836,72658.68,924.76587,0,3642.1458 +1465,1815,3190,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1001.1113,0,-9,-9,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,19.7,-9,-9,6.666666666666667,1,1,0,0,9,9,1,1,439,0,0,0,0,0,0,744.4682 +1466,1816,3191,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.6927223,9.3778553,0,17,-7,53.973537,0,-9,-9,2021,14,3,60,37,1,3,0,29.15864,29.15864,0,0,0,0,0,0,0,2,1,1,0,6.3534875,0,52.47,49.93,60.87,42.1,8.333333333333334,1,1,0,0,9,6,5,1,728,450603.88,161019.23,111365.4,0,0,0,11816.188 +1466,1817,3192,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.5478654,7.6172886,16,7,-69.670937,0,1,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0815229,7.6896057,60.87,42.1,52.47,49.93,8.333333333333334,1,1,0,0,8,6,5,1,351,1184426.6,393776.25,467994.78,0,0,0,2001.4063 +1467,1818,3193,-9,3195,3194,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.67834,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,656,280581.59,82310.086,89326.25,0,0,0,2466.8623 +1467,1818,3194,3195,-9,-9,1,1,40,0,1,0,3,3,-9,0,3,8.5932798,8.9680138,0,6,-1,29.196438,0,2,2,2021,6,0,52,62,1,0,0,13.797733,13.797733,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.32,46.92,43.68,53.03,10,1,1,0,0,7,13,4,1,656,280581.59,82310.086,89326.25,0,0,0,2466.8623 +1467,1818,3195,3194,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.3237629,7.6215458,0,6,1,-52.283279,0,2,-9,2021,10,0,20,20,1,1,0,8.0285349,8.0285349,0,0,0,0,0,0,.92507935,0,1,1,0,0,0,43.68,53.03,44.32,46.92,6.666666666666667,1,1,0,0,7,13,4,1,656,280581.59,82310.086,89326.25,0,0,0,2466.8623 +1467,1819,3196,-9,3195,3194,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-821.29291,1,2,3,2021,9,1,0,14,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,631,-37434.656,0,0,0,0,0,-1365.8599 +1468,1820,3197,3198,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.0157499,9.040309,0,26,1,48.423107,0,2,1,2021,8,0,42,37,1,0,0,21.630096,21.630096,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.42,52.88,40.13,62.93,8.333333333333334,1,1,0,0,14,8,5,1,378.5,1140005.3,420788.88,682299.88,92722.758,0,0,5519.5684 +1468,1820,3198,3197,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,9.0358515,9.0640182,0,26,-1,-21.251097,0,2,2,2021,12,0,32,33,1,0,0,23.309771,23.309771,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.13,62.93,46.42,52.88,8.333333333333334,1,1,0,0,13,8,5,1,378.5,1140005.3,420788.88,682299.88,92722.758,0,0,5519.5684 +1468,1821,3199,-9,3198,3197,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1006.3818,-9,1,1,2021,26,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.55796236,0,16.47,64.27,-9,-9,3.333333333333333,1,1,0,1,2,8,1,1,2156,-43134.574,0,0,0,0,0,181.95506 +1468,1822,3200,-9,3198,3197,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-926.2829,-9,1,1,2021,22,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.12,61.85,-9,-9,3.333333333333333,1,1,0,0,1,8,1,1,803,199856.84,0,0,0,8134.0547,0,0 +1469,1823,3201,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.5150795,7.2854714,0,0,0,-913.46436,0,3,2,2021,6,0,35,40,1,0,0,5.4420662,5.4420662,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.86,32.97,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,744,114614.5,33313.977,0,0,0,0,1115.2432 +1469,1824,3202,-9,-9,3201,1,0,25,0,0,0,2,2,-9,0,3,7.8038268,8.0843506,0,0,0,-869.42218,0,-9,2,2021,21,9,40,35,1,9,1,6.1778698,6.1778698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.45,53.17,-9,-9,3.333333333333333,1,1,0,0,6,7,3,1,1712,-138124.58,-3966.3826,0,0,0,0,497.99081 +1469,1825,3203,-9,-9,3201,1,1,23,0,0,0,2,2,-9,0,3,8.0110788,8.0854521,0,0,0,-1069.2684,0,-9,2,2021,13,2,60,60,1,2,1,6.3664403,6.3664403,0,0,0,0,0,0,0,0,0,0,0,0,0,53.78,56.44,-9,-9,5,1,1,0,0,7,7,4,1,747,-21966.592,11781.977,0,0,0,0,2087.884 +1470,1826,3204,3205,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,5.765924,5.90626,9,2,-70.634644,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9132342,46.13,40.24,48.45,54.63,10,1,1,0,0,0,7,3,1,1291.5,658174.88,158578.81,443633.41,0,0,0,1648.0293 +1470,1826,3205,3204,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.4754739,7.4223838,9,-2,22.70233,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2251575,7.6146579,48.45,54.63,46.13,40.24,8.333333333333334,1,1,0,0,10,7,3,1,1291.5,658174.88,158578.81,443633.41,0,0,0,1648.0293 +1471,1827,3206,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-887.31464,0,-9,-9,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3272831,0,45.98,31.58,-9,-9,5,1,1,0,0,2,7,1,0,540,343417.03,0,182490.39,0,0,0,922.5459 +1472,1828,3207,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,7.6119418,6.9184928,0,0,-1130.4359,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6508422,47.13,24.71,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,357,332715.41,330795.47,184071.97,0,0,0,2226.2456 +1473,1829,3208,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.6212292,8.358634,0,0,0,-1028.5105,0,3,3,2021,21,9,42,42,1,9,0,10.331613,10.331613,.05,.05,0,0,0,0,0,14.5,1,1,0,1.6875759,0,43.93,43.67,-9,-9,6.666666666666667,1,1,0,0,12,7,5,0,66,2297.395,93066.344,0,0,2768.436,3283.791,2345.5913 +1474,1830,3209,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-828.78156,0,3,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.01,27.79,-9,-9,10,1,1,0,0,0,7,1,0,1978.5,-9665.1143,0,0,0,0,0,712.58813 +1474,1830,3210,-9,3209,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1015.8632,-9,3,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.76,63.69,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1978.5,-9665.1143,0,0,0,0,0,712.58813 +1474,1831,3211,-9,3209,-9,1,1,19,0,0,0,3,3,-9,0,4,6.9782486,7.0389662,0,0,0,-1047.2521,0,3,-9,2021,10,0,34,35,1,2,1,3.7162867,3.7162867,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,7,2,0,438,11652.981,0,0,0,0,0,947.21832 +1475,1832,3212,3213,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.6029563,7.9880471,51,1,-46.594418,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.422143,7.7579255,50.03,52.62,53.37,42.91,8.333333333333334,1,1,0,0,0,2,3,1,1587.5,579122.88,298366.06,209294.34,0,0,0,1884.4658 +1475,1832,3213,3212,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,51,-1,35.242302,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.37,42.91,50.03,52.62,8.333333333333334,1,1,0,0,0,2,3,1,1587.5,579122.88,298366.06,209294.34,0,0,0,1884.4658 +1476,1833,3214,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,7.4970984,7.6330047,0,0,-1002.2775,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7180305,7.2903924,31.5,20.97,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,856,629974.81,285640.25,86644.359,0,0,0,2341.335 +1476,1834,3215,-9,3214,-9,1,1,48,0,0,0,2,2,-9,0,4,7.5096717,7.5280385,0,0,0,-1041.184,0,3,3,2021,9,0,40,45,1,1,0,4.3372169,4.3372169,.05,.05,0,0,0,0,0,0,1,1,0,7.3379436,0,51,55,-9,-9,8,1,1,0,0,8,13,3,1,4735,8456.5107,32052.881,55178.094,0,0,0,661.81763 +1476,1835,3216,-9,3214,-9,1,1,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-925.52625,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5557666,0,48.66,44.34,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,301,77840.047,0,0,0,0,0,536.367 +1477,1836,3217,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.7301035,8.9452829,6.0955501,0,0,-1044.2401,0,2,2,2021,3,0,36,25,1,0,0,21.500652,21.500652,0,0,0,0,0,0,0,2,0,0,0,0,6.4951315,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,551,239642.73,0,439216.41,-8382.415,0,454.83725,3372.5996 +1478,1837,3218,-9,3221,3220,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.98151,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1478,1837,3219,-9,3221,3220,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.58765,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1478,1837,3220,3221,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.0944872,9.204072,0,7,-1,59.1833,0,2,2,2021,11,0,68,48,1,0,0,13.531771,13.531771,.05,.05,0,0,0,0,0,0,1,1,0,7.5519552,0,47.14,50.99,54.2,57.49,8.333333333333334,1,1,0,0,14,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1478,1837,3221,3220,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,6.2460637,6.2998638,0,7,1,101.92423,0,2,2,2021,8,0,10,8,1,0,0,8.1035681,8.1035681,.05,.05,0,0,0,0,0,0,1,1,0,8.2922411,0,54.2,57.49,47.14,50.99,10,1,1,0,0,13,10,4,1,327.75,177289.97,113504.05,245920.47,74922.844,980.46478,0,6538.8887 +1479,1838,3222,3223,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.9786863,8.9468002,0,5,0,26.920393,0,-9,-9,2021,12,0,40,48,1,0,0,21.781908,21.781908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,35.95,55.09,5,1,1,0,0,14,8,5,1,682.66669,340672.63,280657.5,0,0,0,2601.8899,5706.3794 +1479,1838,3223,3222,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.8058481,9.0940542,0,5,0,-32.364155,0,2,3,2021,12,0,41,6,1,0,0,18.804735,18.804735,.05,.05,0,0,0,0,0,0,1,1,0,.61246508,0,35.95,55.09,52.6,52.88,6.666666666666667,1,1,0,0,11,8,5,1,682.66669,340672.63,280657.5,0,0,0,2601.8899,5706.3794 +1479,1838,3224,-9,3223,3222,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.30847,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,682.66669,340672.63,280657.5,0,0,0,2601.8899,5706.3794 +1479,1839,3225,-9,3223,3222,1,1,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-832.89948,0,1,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.58415288,0,1,1,0,0,0,40.36,47.54,-9,-9,5,1,1,0,0,4,8,1,1,774,-53834.598,0,0,0,2837.2419,603.19318,0 +1480,1840,3226,3227,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,51,0,-67.258926,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,63.41,29.17,42.04,32.53,10,1,1,0,0,0,5,3,1,1148.5,557599.13,417633.63,239115.91,0,0,0,1663.5505 +1480,1840,3227,3226,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,7.874167,7.7918115,51,0,44.408169,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7603464,42.04,32.53,63.41,29.17,3.333333333333333,1,1,0,0,0,5,3,1,1148.5,557599.13,417633.63,239115.91,0,0,0,1663.5505 +1481,1841,3228,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,3,0,7.6326604,7.708293,0,0,-1088.166,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.873836,7.3055739,63.98,38.08,-9,-9,5,1,1,0,0,0,12,3,1,413,263274.78,138368.78,213781.53,0,0,0,3209.1787 +1482,1842,3229,-9,3230,3231,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.1003,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1482,1842,3230,3231,-9,-9,1,0,44,0,2,0,2,2,-9,1,4,6.2285981,5.6049566,0,21,-2,159.45474,0,2,2,2021,7,0,8,0,1,0,0,7.6188726,7.6188726,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,49.26,54.61,8.333333333333334,1,1,0,0,5,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1482,1842,3231,3230,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.3471365,8.4448242,0,22,2,76.778931,0,2,2,2021,11,0,44,44,1,0,0,10.591923,10.591923,.05,.05,.05,0,0,0,0,0,1,1,0,2.7586272,0,49.26,54.61,57.16,56.15,6.666666666666667,1,1,0,0,12,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1482,1842,3232,-9,3230,3231,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.0546,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,1074.25,260734.45,122774.79,180992.44,67777.297,0,0,2460.979 +1483,1843,3233,3234,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2560282,8.2913961,0,12,6,-152.3811,0,3,3,2021,18,6,35,35,1,6,0,12.711177,12.711177,0,0,0,0,0,0,0,0,0,0,0,0,0,12.18,66.26000000000001,32.36,52.84,5,1,1,0,0,10,11,4,1,784.5,409033.56,212783.27,305414.75,114206.8,7528.5664,897.36121,2811.6404 +1483,1843,3234,3233,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,7.6264887,7.5692353,0,12,-6,-75.636566,0,3,3,2021,23,11,37,17,1,11,0,7.1111541,7.1111541,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.36,52.84,12.18,66.26000000000001,3.333333333333333,1,1,0,0,10,11,4,1,784.5,409033.56,212783.27,305414.75,114206.8,7528.5664,897.36121,2811.6404 +1484,1844,3235,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6157541,7.5418239,0,0,0,-961.07501,0,2,2,2021,9,0,20,15,1,0,0,9.4781837,9.4781837,0,0,0,0,0,0,0,0,1,1,0,3.7888391,0,58.08,21.85,-9,-9,6.666666666666667,1,1,0,0,4,10,3,1,2388,0,0,0,0,0,0,757.78448 +1485,1845,3236,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.7101479,8.6546116,0,0,0,-963.15979,0,1,2,2021,10,0,37,76,1,0,0,19.915997,19.915997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.61,51.1,-9,-9,8.333333333333334,2,3,0,0,11,7,5,1,155,202680.27,-30780.061,0,0,0,0,2326.9119 +1485,1846,3237,-9,3236,-9,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-844.0932,-9,1,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8778055,0,46,59,-9,-9,7,2,3,0,0,0,7,1,1,235,-35636.984,0,0,0,0,0,-285.30359 +1486,1847,3238,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-980.21698,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,11,1,0,535,62925.09,0,0,0,0,0,1314.3125 +1487,1848,3239,3240,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,3.4089024,3.080698,56,-4,20.86805,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.1372991,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,0,1,2,1,1170.5,227905.52,113346.13,162488.05,0,0,0,1529.2651 +1487,1848,3240,3239,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.7374692,6.6052618,56,4,-23.824194,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9413862,6.8682165,57.33,53.46,57.16,56.15,10,1,1,0,0,0,1,2,1,1170.5,227905.52,113346.13,162488.05,0,0,0,1529.2651 +1488,1849,3241,3242,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.3749895,7.4880624,5.5355644,36,-1,-91.151093,0,3,3,2021,11,0,19,19,1,0,0,8.884223,8.884223,.05,.05,0,0,0,0,0,0,0,0,0,4.8429918,5.363534,50.63,50.99,58.15,52.91,6.666666666666667,1,1,0,0,13,6,4,1,299,475306.88,516756.09,62094.625,43102.32,10010.181,0,3143.4504 +1488,1849,3242,3241,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.8895936,8.5408049,7.6043077,11,1,25.950457,0,-9,-9,2021,8,0,38,37,1,0,0,10.929272,10.929272,.05,.05,0,0,0,0,0,0,0,0,0,4.2493978,7.6052599,58.15,52.91,50.63,50.99,8.333333333333334,1,1,0,0,3,6,4,1,299,475306.88,516756.09,62094.625,43102.32,10010.181,0,3143.4504 +1488,1850,3243,3244,3241,3242,1,1,26,0,0,0,2,2,-9,0,4,8.3497648,7.8917975,0,1,4,88.070946,0,2,2,2021,11,0,38,37,1,0,0,13.872181,13.872181,.05,.05,0,0,0,0,0,0,0,0,0,3.6213489,0,49.97,56.66,33.15,58.97,8.333333333333334,1,1,0,0,8,6,4,1,162,126495.51,-22948.09,156364.72,75813.055,0,0,3634.3164 +1488,1850,3244,3243,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.6709185,7.7757721,0,1,-4,26.063704,-9,-9,-9,2021,14,3,37,0,1,3,0,7.7774277,7.7774277,.05,.05,0,0,0,0,0,0,0,0,0,7.2456985,0,33.15,58.97,49.97,56.66,8.333333333333334,1,1,0,0,0,6,4,1,162,126495.51,-22948.09,156364.72,75813.055,0,0,3634.3164 +1489,1851,3245,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-991.44879,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3438988,0,51,46,-9,-9,7,1,1,0,0,0,6,1,1,221,0,0,0,0,0,0,1536.4264 +1490,1852,3246,3247,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4078903,7.4333544,0,31,10,-59.422874,0,3,2,2021,15,3,23,25,1,3,0,10.11344,10.11344,0,0,0,0,0,0,0,0,1,1,0,6.3706975,0,45.01,57.46,60.28,43.74,8.333333333333334,1,1,0,0,9,10,3,1,1234.5,52012.145,104218.03,172773.56,0,16911.984,0,2339.9089 +1490,1852,3247,3246,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.5227652,7.4095407,0,31,-10,-67.622719,0,2,3,2021,10,0,60,50,1,0,0,4.6224122,4.6224122,0,0,.05,0,0,0,0,0,1,1,0,4.3088484,0,60.28,43.74,45.01,57.46,6.666666666666667,1,1,0,0,9,10,3,1,1234.5,52012.145,104218.03,172773.56,0,16911.984,0,2339.9089 +1491,1853,3248,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-915.90802,0,2,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.02,31.82,-9,-9,0,1,1,0,1,0,9,1,0,129,211052.14,0,180546.2,-2242.3679,0,0,235.85118 +1491,1854,3249,-9,3248,-9,1,1,33,0,0,0,2,2,-9,0,3,8.4844189,8.2753677,0,0,0,-921.28027,0,2,2,2021,15,5,66,40,1,5,0,6.2342896,6.2342896,0,0,0,0,0,0,0,7,1,1,0,0,0,29.46,59.39,-9,-9,3.333333333333333,1,1,0,0,8,9,4,0,828,-189537.5,0,0,0,0,0,149.18758 +1492,1855,3250,-9,-9,3251,1,1,50,0,0,0,3,3,-9,0,3,7.9759355,8.2370043,0,0,0,-1016.8708,0,3,3,2021,11,1,56,0,1,1,0,8.235611,8.235611,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.16,47.36,-9,-9,8.333333333333334,2,3,0,0,4,8,4,0,1346,40284.48,6528.9858,0,0,0,0,1439.0099 +1492,1856,3251,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,6.0977197,5.7343879,0,0,-920.45703,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3053966,5.9429913,55,45,-9,-9,8,2,3,0,0,0,8,2,0,577,562278.5,-79064.148,361951.91,0,0,0,554.99969 +1493,1857,3252,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-969.50189,0,2,3,2021,21,5,0,0,4,5,0,0,0,0,0,0,1,0,5.7767429,0,0,1,1,0,0,0,16.04,23.99,-9,-9,6.666666666666667,1,1,0,1,0,11,1,0,1869,3846.2314,0,0,0,0,0,1161.8575 +1494,1858,3253,3254,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,38,-1,9.6829729,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.74,50.46,8.333333333333334,1,1,0,0,0,12,5,1,186,251823.88,324.53125,380598.06,190058.03,0,0,2648.5508 +1494,1858,3254,3253,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8030586,8.7524748,0,38,1,25.900805,0,2,3,2021,11,0,48,42,1,0,0,25.275843,25.275843,0,0,0,0,0,0,0,0,1,1,0,0,0,48.74,50.46,48.87,58.55,6.666666666666667,1,1,0,0,8,12,5,1,186,251823.88,324.53125,380598.06,190058.03,0,0,2648.5508 +1495,1859,3255,-9,-9,-9,1,0,74,0,2,0,2,2,-9,0,5,0,6.9070315,6.5612512,0,0,-878.39258,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7800965,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,809,142801.33,115736.87,189102.22,0,0,0,550.95093 +1495,1860,3256,3258,3255,-9,1,0,44,0,2,0,2,2,-9,0,5,8.1129427,8.1600399,0,18,-2,37.488232,0,2,2,2021,9,0,50,52,1,0,0,9.046113,9.046113,0,0,0,0,0,0,0,0,1,1,0,1.6756958,0,57.06,57.76,37.61,47.19,10,1,1,0,0,10,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1495,1860,3257,-9,3256,3258,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.2428,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1495,1860,3258,3256,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.5443811,8.2358465,0,14,2,4.5249152,0,2,2,2021,21,8,80,40,1,8,0,5.6770616,5.6770616,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.61,47.19,57.06,57.76,5,1,1,0,1,12,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1495,1860,3259,-9,3256,3258,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.5087,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,4,1,629,339324.19,262304.72,241863.64,64134.621,0,0,2905.1433 +1496,1861,3260,-9,3261,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0885,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,684.5,123659.16,26563.531,0,0,11212.627,0,2660.353 +1496,1861,3261,-9,-9,-9,1,0,41,0,1,0,2,2,0,0,3,0,7.6475825,7.3265305,0,0,-917.02795,-9,2,3,2021,9,1,0,0,2,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5209227,0,54.57,49.24,-9,-9,10,1,1,0,0,8,9,3,0,684.5,123659.16,26563.531,0,0,11212.627,0,2660.353 +1497,1862,3262,-9,3264,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.7449,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,928.33331,-23687.686,7650.3892,71283.828,95342.492,12251.138,2417.8469,3775.1526 +1497,1862,3263,-9,3264,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-968.44452,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,6,4,1,928.33331,-23687.686,7650.3892,71283.828,95342.492,12251.138,2417.8469,3775.1526 +1497,1862,3264,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1276264,8.8477125,8.4125433,0,0,-1009.8451,0,2,2,2021,13,2,40,40,1,2,0,8.7186127,8.7186127,0,0,.05,0,0,0,0,0,1,1,0,8.1075506,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,14,6,4,1,928.33331,-23687.686,7650.3892,71283.828,95342.492,12251.138,2417.8469,3775.1526 +1498,1863,3265,3266,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,7.1544514,7.2220678,0,12,-1,.87744558,0,3,3,2021,11,0,39,35,1,0,0,4.325418,4.325418,0,0,0,1,0,0,0,7,1,1,0,.42847565,0,57.68,23.62,61.96,13.49,1.666666666666667,1,1,0,0,12,12,3,1,590,297527.31,146583.25,232919.66,0,0,780.70758,2354.5393 +1498,1863,3266,3265,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,6.9185743,7.151155,12,1,52.574593,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9750428,6.8335271,61.96,13.49,57.68,23.62,5,1,1,0,0,0,12,3,1,590,297527.31,146583.25,232919.66,0,0,780.70758,2354.5393 +1499,1864,3267,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.5342064,9.511446,0,0,0,-1047.3607,0,2,2,2021,17,5,40,41,1,5,0,37.155056,37.155056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.4,57.46,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,174,275215.25,286262.09,271991.47,116837.61,5103.7339,0,4672.8057 +1500,1865,3268,3269,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.7757616,7.2870288,0,7,-3,31.854292,0,3,3,2021,7,0,50,50,1,0,0,2.2638035,2.2638035,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,50.84,45.33,8.333333333333334,1,1,0,0,8,11,3,1,427.5,1284641.3,0,1501317.5,426312.06,0,27616.189,767.60339 +1500,1865,3269,3268,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.1772709,7.2788835,0,7,3,163.76634,0,3,3,2021,12,2,70,55,1,2,0,2.8565397,2.8565397,0,0,0,0,0,0,0,0,0,0,0,0,0,50.84,45.33,51.24,58.84,8.333333333333334,1,1,0,0,8,11,3,1,427.5,1284641.3,0,1501317.5,426312.06,0,27616.189,767.60339 +1500,1866,3270,-9,3268,3269,1,0,25,0,0,0,1,1,-9,0,3,8.2525444,8.0981884,0,0,0,-981.2923,0,2,2,2021,11,0,49,55,1,0,1,9.7800531,9.7800531,.05,.05,0,0,0,0,0,0,0,0,0,3.8304398,0,41.71,46.88,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,382,61777.566,4689.606,0,0,0,0,1139.7838 +1500,1867,3271,-9,3268,3269,1,0,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-950.69183,1,2,2,2021,8,1,0,40,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3131306,0,53.26,55.31,-9,-9,10,1,1,0,0,1,11,1,1,183,10267.969,0,0,0,0,0,-393.29428 +1501,1868,3272,-9,3273,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.6682,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,772.33331,0,0,0,0,0,0,2436.3015 +1501,1868,3273,-9,-9,-9,1,0,29,0,2,0,3,3,-9,1,2,0,0,0,0,0,-971.49792,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.61,44.93,-9,-9,5,1,1,0,0,0,2,1,0,772.33331,0,0,0,0,0,0,2436.3015 +1501,1868,3274,-9,3273,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.98468,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,772.33331,0,0,0,0,0,0,2436.3015 +1502,1869,3275,3276,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3423443,8.2398996,0,6,1,-4.198235,0,-9,-9,2021,8,0,38,40,1,0,0,10.308024,10.308024,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,12,5,1,1315.5,106629.59,30364.031,295513.5,137772.38,0,3807.7529,2919.3276 +1502,1869,3276,3275,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.5069294,8.4129572,0,6,-1,-53.841167,0,1,2,2021,7,1,40,41,1,1,0,13.380146,13.380146,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,6,12,5,1,1315.5,106629.59,30364.031,295513.5,137772.38,0,3807.7529,2919.3276 +1503,1870,3277,3278,-9,-9,1,1,34,0,2,0,2,2,-9,1,3,8.3979826,8.3770514,0,13,2,86.973152,0,2,2,2021,6,0,44,42,1,0,0,11.364165,11.364165,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,51.41,56.15,1.666666666666667,1,1,0,0,12,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1503,1870,3278,3277,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.8570824,8.1462584,0,13,-2,29.932833,0,2,2,2021,8,0,44,0,1,0,0,7.1151123,7.1151123,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.41,56.15,46.61,56.93,8.333333333333334,1,1,0,0,4,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1503,1870,3279,-9,3278,3277,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.525,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1503,1870,3280,-9,3278,3277,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.05096,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,0,901.5,-14201.35,55393.531,0,0,6011.7998,0,3059.1138 +1504,1871,3281,3282,-9,-9,1,0,34,3,3,0,2,2,-9,0,3,8.7942371,8.8372774,0,6,1,66.305107,0,-9,-9,2021,15,4,40,-9,1,4,0,21.155645,21.155645,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,32.76,57.87,8.333333333333334,1,1,0,0,5,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3282,3281,-9,-9,1,1,33,3,3,0,2,2,-9,0,4,9.0781784,9.3565893,0,6,-1,-30.824829,0,-9,-9,2021,12,0,50,10,1,0,0,26.504757,26.504757,.05,.05,0,0,0,0,0,0,0,0,0,5.2011905,0,32.76,57.87,52,54.51,8.333333333333334,1,1,0,0,10,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3283,-9,3281,3282,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-926.59662,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3284,-9,3281,3282,1,1,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-912.36926,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1504,1871,3285,-9,3281,3282,1,1,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-967.92444,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,10,5,1,866.40002,167729.14,60292.996,282995.59,159264.61,1809.46,3588.0801,6597.3711 +1505,1872,3286,3287,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.5498405,5.0555758,52,0,-43.107117,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.2238636,49.44,54.26,29.48,31.59,5,1,1,0,0,0,8,2,1,674,100658.82,70710.5,0,0,0,0,2365.908 +1505,1872,3287,3286,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.1688299,6.0227213,52,0,-10.516493,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,24.495741,0,0,1,1,0,5.8236561,6.0508542,29.48,31.59,49.44,54.26,5,1,1,0,0,0,8,2,1,674,100658.82,70710.5,0,0,0,0,2365.908 +1506,1873,3288,3289,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.6263695,9.29035,0,11,0,-82.876152,0,2,2,2021,11,2,48,54,1,2,0,32.625908,32.625908,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.54,46.62,44.89,30.61,6.666666666666667,1,1,0,0,7,8,5,1,1572,2375268.5,245313.91,1108973,0,0,0,9928.0508 +1506,1873,3289,3288,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.7965374,9.6145067,0,11,0,83.335686,0,2,3,2021,13,2,33,42,1,2,0,44.155682,44.155682,0,0,.05,0,0,0,0,0,0,0,0,0,0,44.89,30.61,48.54,46.62,6.666666666666667,1,1,0,0,9,8,5,1,1572,2375268.5,245313.91,1108973,0,0,0,9928.0508 +1506,1874,3290,-9,3288,3289,1,1,21,0,0,1,2,0,-9,0,4,0,7.641017,7.8380251,0,0,-1053.2782,-9,1,1,2021,11,0,0,0,2,0,1,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.8042684,0,45.01,57.46,-9,-9,8.333333333333334,1,1,0,0,3,8,3,1,2551,-570.49725,-68924.18,0,0,3968.2134,0,1288.3885 +1506,1875,3291,-9,3288,3289,1,1,19,0,0,1,2,0,0,0,5,0,6.6081419,7.0011005,0,0,-1108.2148,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0613618,0,39.66,61.49,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,1202,-122716.57,0,0,0,0,0,810.82898 +1507,1876,3292,3293,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,18,3,-44.189228,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,10.768052,0,0,1,1,0,0,0,55,45,53,45,8,1,1,0,0,0,5,2,1,343.5,412196.5,149292.98,163340.63,0,0,0,2460.0957 +1507,1876,3293,3292,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.1344943,6.6832504,20,-3,-110.13321,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.7569431,8.1931105,22.575802,74.5,1,1,0,2.2529738,6.3922133,53,45,55,45,8,1,1,0,0,0,5,2,1,343.5,412196.5,149292.98,163340.63,0,0,0,2460.0957 +1508,1877,3294,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,6.7774854,6.5996213,0,0,0,-1000.0763,0,-9,-9,2021,1,0,12,10,1,0,0,9.0442562,9.0442562,0,0,0,0,0,0,0,0,1,1,0,0,0,51,58,-9,-9,10,1,1,0,0,13,10,2,1,215,135173.52,0,0,0,4518.6421,0,425.70496 +1509,1878,3295,3296,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.245594,8.2859955,0,5,-7,-58.998821,0,-9,-9,2021,26,12,40,40,1,12,0,10.247478,10.247478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.98,63,48.57,42.23,1.666666666666667,1,1,0,0,12,4,5,1,386.5,994294.13,434941.75,286486.06,46805.73,0,0,3493.1841 +1509,1878,3296,3295,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.3770294,8.5860138,0,5,7,-153.54907,0,-9,-9,2021,12,0,38,37,1,0,0,17.568415,17.568415,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.57,42.23,27.98,63,6.666666666666667,1,1,0,0,8,4,5,1,386.5,994294.13,434941.75,286486.06,46805.73,0,0,3493.1841 +1510,1879,3297,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.6290827,6.5475392,0,0,-958.94916,-9,3,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0074024,42.61,18.12,-9,-9,0,1,1,0,0,0,6,2,1,302,399968.63,145120.63,243797.75,0,0,0,258.94046 +1510,1880,3298,-9,3297,-9,1,1,48,0,0,0,2,2,-9,1,3,0,6.0529852,5.7305527,0,0,-1002.9412,-9,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.7252655,49,50,-9,-9,8.333333333333334,1,1,0,0,8,6,2,1,218,-56373.199,-48017.855,0,0,0,0,501.24191 +1511,1881,3299,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.9998794,8.0506649,7.3038149,0,0,-1061.7491,0,-9,-9,2021,12,0,20,5,1,0,0,8.6821499,8.6821499,.05,.05,0,0,0,0,0,0,1,1,0,7.77316,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,248,288543.25,87261.57,232260.53,64369.023,0,0,1791.0273 +1511,1882,3300,-9,3299,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-888.10767,-9,2,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1327364,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,1407,134549.86,0,0,0,0,0,-197.47646 +1511,1883,3301,-9,3299,-9,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-1083.7683,-9,2,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.34,58.54,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,1953,6121.0303,0,0,0,0,0,-605.69354 +1512,1884,3302,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.3314805,4.9517875,0,0,-950.69568,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0739713,5.3653321,53,47,-9,-9,7,1,1,0,0,0,13,2,0,500,64492.949,47248.684,0,0,0,0,903.33899 +1513,1885,3303,3304,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2971234,7.2926598,0,11,4,92.367447,0,2,2,2021,14,3,24,25,1,3,0,9.6846962,9.6846962,.05,.05,0,0,0,0,0,0,0,0,0,2.9080491,0,41.7,59.17,55.19,54.26,1.666666666666667,1,1,0,0,10,6,5,1,279,574838.13,503760.97,187035.03,0,0,0,3391.3538 +1513,1885,3304,3303,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8010263,9.0594015,0,11,-4,68.530518,0,2,2,2021,11,0,60,60,1,0,0,13.839064,13.839064,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,55.19,54.26,41.7,59.17,1.666666666666667,1,1,0,0,9,6,5,1,279,574838.13,503760.97,187035.03,0,0,0,3391.3538 +1513,1886,3305,-9,3303,3304,1,1,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-844.90436,-9,2,2,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.24435885,0,33.59,47.21,-9,-9,3.333333333333333,1,1,0,0,4,6,1,1,1105,109672.43,0,0,0,0,0,-35.120361 +1514,1887,3306,-9,3308,3307,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.0702,1,2,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,.69481134,0,1,1,0,0,0,46.22,45.1,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,638,-77201.68,0,0,0,0,0,1006.1149 +1514,1888,3307,3308,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6912832,8.7716818,0,3,6,174.56195,0,-9,-9,2021,6,0,43,41,1,0,0,13.035925,13.035925,.05,.05,0,0,0,0,0,0,1,1,0,6.4474697,0,61.12,51.57,47.42,46.01,8.333333333333334,1,1,0,0,9,10,5,0,439,481879.84,438185.88,211716.16,13921.987,2151.0742,0,3886.3223 +1514,1888,3308,3307,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7806592,7.8749852,0,3,-6,-113.92212,0,2,2,2021,11,2,38,40,1,2,0,8.4911804,8.4911804,.05,.05,0,0,0,0,0,27,1,1,0,0,0,47.42,46.01,61.12,51.57,6.666666666666667,1,1,0,0,5,10,5,0,439,481879.84,438185.88,211716.16,13921.987,2151.0742,0,3886.3223 +1515,1889,3309,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1062.4698,0,-9,-9,2021,18,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.97,18.82,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,603,156344.17,68129.641,0,0,11261.756,0,1581.0881 +1516,1890,3310,3311,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.533319,6.6847,11,-5,-26.953884,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.9772019,6.3217635,59.47,44.13,44.82,28.04,8.333333333333334,1,1,0,0,3,12,2,1,3003,103804.25,35831.109,0,0,-160.0538,1807.4136,2544.7397 +1516,1890,3311,3310,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,6.3053288,6.2136631,11,5,54.761097,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,10.279214,0,0,1,1,0,0,5.8167458,44.82,28.04,59.47,44.13,6.666666666666667,1,1,0,0,0,12,2,1,3003,103804.25,35831.109,0,0,-160.0538,1807.4136,2544.7397 +1517,1891,3312,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,6.9037652,6.4597673,0,0,-1021.8321,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.759562,6.4510512,52.55,15.28,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,436,589130.69,257759.66,176449.84,0,0,0,1583.4291 +1518,1892,3313,3314,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.916501,7.9601316,0,1,2,10.172537,-9,2,3,2021,6,0,41,0,1,0,0,8.3120823,8.3120823,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53.07,52.7,44.71,59.44,8.333333333333334,1,1,0,0,12,12,4,1,1535.5,169834.19,31980.422,159235.73,12123.619,0,2973.9492,2969.1436 +1518,1892,3314,3313,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.9708214,8.0136013,0,1,-2,170.83966,-9,2,2,2021,13,1,41,0,1,1,0,9.5024328,9.5024328,0,0,0,0,0,0,0,0,1,0,1,0,0,44.71,59.44,53.07,52.7,6.666666666666667,1,1,0,0,12,12,4,1,1535.5,169834.19,31980.422,159235.73,12123.619,0,2973.9492,2969.1436 +1518,1893,3315,-9,3314,3313,1,0,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-872.56964,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.88,56.68,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,586,0,0,0,0,0,0,431.53186 +1519,1894,3316,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5868349,9.7457819,0,7,13,-39.046291,0,2,2,2021,7,0,47,47,1,0,0,43.73745,43.73745,0,0,.05,0,0,0,0,0,0,0,0,5.3709307,0,57.16,56.15,43.73,59.7,10,1,1,0,0,6,8,5,1,1170,366023.78,146807.58,300764.97,132262.69,0,650.87225,6404.332 +1519,1895,3317,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,0,0,0,7,-13,22.560015,0,2,3,2021,15,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,57.16,56.15,8.333333333333334,1,1,1,0,3,8,5,1,501,251589.42,0,0,0,0,0,0 +1520,1896,3318,3319,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,9.1071224,8.8723993,0,3,10,55.527637,0,3,2,2021,20,9,43,37,1,9,0,21.319355,21.319355,.05,.05,0,0,0,0,0,0,0,0,0,7.9135289,0,29.09,57.03,51.35,40.98,6.666666666666667,1,1,0,0,11,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1520,1896,3319,3318,-9,-9,1,0,41,0,3,0,3,3,-9,0,4,9.4993725,9.3467722,0,3,-10,132.03325,0,-9,-9,2021,6,0,37,32,1,0,0,33.283409,33.283409,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.35,40.98,29.09,57.03,8.333333333333334,1,1,0,0,12,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1520,1896,3320,-9,3319,3318,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-875.00226,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1520,1896,3321,-9,3319,3318,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.69635,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,859.75,1625884.5,1122290.8,424060.63,131106.81,0,0,7627.4058 +1521,1897,3322,3323,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,6.6197133,6.5587664,0,7,3,-78.941803,0,2,1,2021,13,1,15,0,1,1,0,5.6035423,5.6035423,0,0,0,0,0,0,0,0,0,0,0,0,0,37.8,60.95,59.43,58.05,8.333333333333334,1,1,0,0,8,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3323,3322,-9,-9,1,1,44,0,3,0,2,2,-9,0,5,9.7007494,10.05001,0,7,-3,-72.214745,0,3,3,2021,6,0,42,45,1,0,0,51.314484,51.314484,.05,.05,0,0,0,0,0,0,0,0,0,7.0107117,0,59.43,58.05,37.8,60.95,8.333333333333334,1,1,0,0,8,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3324,-9,3322,3323,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.31012,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3325,-9,3322,3323,1,0,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.8617,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1521,1897,3326,-9,3322,3323,1,0,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-908.06537,-9,1,2,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,1,7,5,1,784.40002,650199.38,45015.773,669645,155235.39,0,17994.094,10718.716 +1522,1898,3327,-9,3329,-9,1,0,48,0,1,0,2,2,-9,1,4,7.379777,8.1380692,7.2250648,0,0,-1018.9341,0,3,2,2021,5,0,26,28,1,0,0,8.9492674,8.9492674,0,0,0,0,0,0,0,2,1,1,0,7.200325,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,5,10,3,1,527,-147100.22,0,0,0,2678.0725,0,2385.9519 +1522,1898,3328,-9,3327,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.8895,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,1,527,-147100.22,0,0,0,2678.0725,0,2385.9519 +1522,1899,3329,-9,-9,-9,1,0,87,0,1,0,3,3,-9,0,2,0,0,0,0,0,-989.45624,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,3.3011925,0,19.478363,0,1,1,0,.9719575,0,50,33,-9,-9,8.333333333333334,1,1,0,0,8,10,1,1,235,-181673,0,0,0,0,0,672.30164 +1523,1900,3330,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.8784781,8.9715204,0,0,0,-973.54004,0,-9,-9,2021,17,7,38,37,1,7,0,21.380545,21.380545,.05,.05,.05,0,0,0,0,0,0,0,0,2.6531551,0,51.14,60.45,-9,-9,1.666666666666667,1,1,0,0,7,9,5,1,124,672733.56,234656.31,224486.41,19714.121,0,0,2872.3638 +1524,1901,3331,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,9.3675537,9.8430901,0,0,0,-893.42163,0,2,3,2021,11,2,40,50,1,2,0,39.903423,39.903423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.07,49.39,-9,-9,8.333333333333334,2,3,0,0,10,8,5,1,683,186105.2,265922,221831.23,125331.95,0,0,6402.395 +1525,1902,3332,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,0,0,-933.92053,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.19,33.94,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,1131,-119038.5,0,0,0,-1981.1993,0,842.66956 +1525,1903,3333,-9,3332,-9,1,1,24,0,0,0,1,1,-9,0,4,8.0467091,7.7432671,0,0,0,-980.66058,0,2,-9,2021,12,0,28,39,1,0,1,10.539207,10.539207,0,0,0,0,0,0,0,0,1,1,0,0,0,37.27,56.09,-9,-9,5,3,4,0,0,5,8,4,0,207,137450.48,101537.76,0,0,0,0,878.09064 +1526,1904,3334,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.9987569,8.1576443,0,0,0,-925.01392,0,3,2,2021,18,8,40,40,1,8,0,7.2681823,7.2681823,0,0,.05,0,0,0,0,0,0,0,0,3.7070291,0,44.01,54.41,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,2194,1001518.3,151332.11,415078.31,0,0,1721.8951,659.61646 +1527,1905,3335,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.7500701,7.5923243,0,0,-1040.5221,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4140959,7.5605764,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1085,673370.31,314592.38,235334.41,0,0,0,4582.4492 +1528,1906,3336,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.51495,0,2,1,2021,28,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.24,70.39,-9,-9,0,1,1,1,0,1,11,1,0,1247,94924.906,0,0,0,0,0,735.51697 +1529,1907,3337,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.8682489,8.026804,0,0,0,-978.01447,0,3,3,2021,15,3,35,35,1,3,0,10.115294,10.115294,0,0,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,-9,-9,5,1,1,0,0,8,10,3,1,425,185535.69,0,236350.31,882.34076,0,0,524.56097 +1530,1908,3338,3339,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,8.0510998,8.0408821,42,4,7.3762403,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,4.4959993,8.0477953,61.36,37.01,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,488.5,1296561.3,928183.88,285244.88,33906.5,6237.1074,1048.593,2698.5835 +1530,1908,3339,3338,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9725928,8.0159044,0,12,-4,-16.991699,0,3,3,2021,7,0,30,30,1,0,0,9.6572466,9.6572466,0,0,0,0,0,0,0,0,1,1,0,2.7266216,0,57.16,56.15,61.36,37.01,8.333333333333334,1,1,0,0,14,12,4,1,488.5,1296561.3,928183.88,285244.88,33906.5,6237.1074,1048.593,2698.5835 +1531,1909,3340,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-983.49847,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.71000000000001,27.4,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,886,99152.938,0,0,0,0,0,1101.3198 +1532,1910,3341,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,0,0,0,0,-995.39771,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,307,24403.988,0,0,0,0,2409.9268,242.22903 +1533,1911,3342,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-903.94598,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48,37.99,-9,-9,10,1,1,0,0,0,1,1,0,404,35705.523,0,0,0,942.19141,0,2277.9556 +1534,1912,3343,3345,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.1610422,7.7758656,0,3,0,-41.035416,0,-9,-9,2021,15,2,25,25,1,2,0,14.618592,14.618592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.96,55.89,51.83,57.2,8.333333333333334,1,1,0,0,10,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1534,1912,3344,-9,3343,3345,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.7794,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1534,1912,3345,3343,-9,-9,1,1,30,0,2,0,2,2,-9,0,4,8.1311951,8.1561012,0,3,0,53.59623,0,-9,-9,2021,9,0,50,50,1,0,0,10.198572,10.198572,.05,.05,0,0,0,0,2.3142331,0,1,1,0,0,0,51.83,57.2,33.96,55.89,6.666666666666667,1,1,0,0,3,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1534,1912,3346,-9,3343,3345,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.57642,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,841.75,164811.42,40269.906,118818.45,67085.07,9653.8135,0,3189.2937 +1535,1913,3347,3348,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.039865,6.9122858,4,12,-86.44986,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0278335,7.157342,57.93,46.29,56.76,44.55,8.333333333333334,1,1,0,0,0,4,2,1,626.5,259653.88,167705.83,182847.55,0,3692.3545,0,1859.7605 +1535,1913,3348,3347,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,4,-12,-117.17606,0,2,1,2021,8,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.76,44.55,57.93,46.29,8.333333333333334,1,1,0,0,11,4,2,1,626.5,259653.88,167705.83,182847.55,0,3692.3545,0,1859.7605 +1536,1914,3349,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.444602,8.3788404,0,0,0,-1077.2743,0,2,2,2021,12,2,35,36,1,2,0,11.716722,11.716722,.05,.05,0,0,0,0,0,0,0,0,0,.34898895,0,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,14,2,5,1,303,314634.59,242234.73,68800.453,0,795.27234,0,1812.3099 +1537,1915,3350,3352,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,9.5452671,9.9589863,0,25,3,-22.461714,0,2,2,2021,5,0,55,93,1,0,0,30.493561,30.493561,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,51.17,49.39,8.333333333333334,1,1,0,0,5,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1537,1915,3351,-9,3352,3350,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1098.6073,-9,1,1,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2859812,0,46.34,61.24,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1537,1915,3352,3350,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.7044363,8.8348169,0,25,-3,68.921021,0,2,1,2021,8,0,24,25,1,0,0,27.620762,27.620762,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.17,49.39,48.18,61.8,1.666666666666667,1,1,0,0,6,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1537,1915,3353,-9,3352,3350,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.46588,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,643,2099234.5,141361.63,1425409.9,204820.31,0,0,9394.6035 +1538,1916,3354,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,9.407115,8.9307728,0,0,0,-965.20782,0,1,1,2021,21,8,53,56,1,8,0,20.279642,20.279642,.05,.05,0,0,0,0,0,0,0,0,0,3.7365723,0,26.93,68.84,-9,-9,3.333333333333333,1,1,0,0,9,6,5,1,303,217711.69,196312.75,178548.75,148759.08,7848.8271,0,3231.3088 +1539,1917,3355,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.5130768,8.2374382,0,0,0,-1023.824,0,1,2,2021,8,1,41,0,1,1,1,12.576468,12.576468,.05,.05,0,0,0,0,0,2,0,0,0,0,0,35.99,52.12,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,484,52133.719,107303.06,0,0,0,0,1929.1852 +1540,1918,3356,3357,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.5661945,9.4992476,0,25,3,-8.1597834,0,2,3,2021,21,8,42,38,1,8,0,53.521641,53.521641,.05,.05,0,0,0,0,0,0,0,0,0,9.0738468,0,42.84,47.9,49.63,54.22,1.666666666666667,4,2,0,0,9,8,5,0,491.5,798828.13,173594.25,557814.63,69875.18,0,0,11175.863 +1540,1918,3357,3356,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,9.0632229,9.131217,0,24,-3,38.421589,0,-9,-9,2021,6,0,30,35,1,0,0,39.783276,39.783276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,42.84,47.9,8.333333333333334,1,1,0,0,12,8,5,0,491.5,798828.13,173594.25,557814.63,69875.18,0,0,11175.863 +1540,1919,3358,-9,3357,3356,1,0,21,0,0,1,1,0,0,0,4,0,7.1011167,7.4205217,0,0,-976.2063,-9,1,1,2021,20,6,0,0,2,6,1,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.950799,0,35.63,62.19,-9,-9,8.333333333333334,4,2,0,0,5,8,3,0,403,-121445.02,-159487.28,0,0,0,0,460.92941 +1541,1920,3359,3360,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.7710686,7.7609043,0,8,-4,-80.174294,0,2,3,2021,36,12,90,60,1,12,0,2.4854839,2.4854839,0,0,0,0,0,0,0,36,0,0,0,0,0,4.32,64.98999999999999,46.08,57.2,0,1,1,0,0,7,10,4,0,417.5,2283371.5,1698128.8,487706.28,0,6436.8369,0,2144.8569 +1541,1920,3360,3359,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.132946,8.2292814,0,8,4,-31.49559,0,2,2,2021,11,0,38,0,1,0,0,11.895362,11.895362,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,4.32,64.98999999999999,8.333333333333334,1,1,0,0,13,10,4,0,417.5,2283371.5,1698128.8,487706.28,0,6436.8369,0,2144.8569 +1542,1921,3361,-9,3364,3363,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.2469,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1542,1921,3362,-9,3364,3363,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.8655,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1542,1921,3363,3364,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.6989746,8.2513371,0,2,4,-21.432714,0,-9,-9,2021,10,0,41,43,1,0,0,14.301939,14.301939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,49.4,58.08,43.46,8.333333333333334,1,1,0,0,4,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1542,1921,3364,3363,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.3812842,7.4354935,0,7,-4,18.195917,0,-9,-9,2021,9,0,18,18,1,0,0,11.36336,11.36336,0,0,0,0,0,0,0,0,1,1,0,0,0,58.08,43.46,51.14,49.4,8.333333333333334,1,1,0,0,9,12,4,0,409.5,77134.727,66965.43,153154.83,129248.45,0,0,2744.6851 +1543,1922,3365,3366,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,7.4658761,7.4353118,0,5,0,-11.857018,0,-9,-9,2021,12,0,34,36,1,0,0,6.672442,6.672442,0,0,0,0,0,0,0,0,0,0,0,0,0,56.03,33.86,43.71,56.91,6.666666666666667,1,1,0,0,7,9,5,1,674.5,-36322.133,-6921.0645,227794.47,189741.81,0,0,2850.4927 +1543,1922,3366,3365,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.5795097,8.6078682,0,5,0,-36.044849,0,2,1,2021,12,0,40,40,1,0,0,17.513781,17.513781,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,56.03,33.86,3.333333333333333,4,2,0,0,7,9,5,1,674.5,-36322.133,-6921.0645,227794.47,189741.81,0,0,2850.4927 +1544,1923,3367,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,6.4009953,6.4176517,0,0,-970.44586,0,3,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,19.43103,0,1,1,0,0,6.501133,47.94,53.79,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,513,350460.44,89689.117,98139.039,0,0,0,1102.7479 +1545,1924,3368,-9,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.4836488,7.4478178,0,0,0,-976.40369,0,3,3,2021,6,0,50,50,1,0,0,5.912333,5.912333,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,12,1,3,0,816,0,0,0,0,0,0,868.3479 +1546,1925,3369,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.8795805,7.6979575,0,0,0,-1029.3311,0,3,2,2021,12,3,39,60,1,3,0,9.5525398,9.5525398,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,1.666666666666667,1,1,0,0,7,12,4,0,129,128490.34,183208.78,187061.52,0,0,0,1298.377 +1546,1926,3370,-9,3369,-9,1,0,22,0,0,0,1,1,-9,0,3,7.8704815,7.4746528,0,0,0,-1049.4865,0,2,-9,2021,5,0,44,42,1,0,1,4.8300853,4.8300853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,10,1,1,0,0,5,12,3,0,394,-301962.31,12724.129,0,0,0,0,240.5954 +1547,1927,3371,3372,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,8.2655821,8.4625111,0,16,-4,25.91663,0,2,2,2021,15,3,39,41,1,3,0,9.8323145,9.8323145,0,0,0,0,0,0,0,2,1,1,0,0,0,49.63,57.02,46.34,61.24,8.333333333333334,1,1,0,0,7,2,5,1,822.33331,444884.09,-44674.758,144367.23,22869.051,0,0,3639.9836 +1547,1927,3372,3371,-9,-9,1,1,35,0,1,0,1,1,-9,0,5,8.261301,8.4561396,0,16,4,-2.6801722,0,3,2,2021,9,0,51,53,1,0,0,10.074345,10.074345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.34,61.24,49.63,57.02,6.666666666666667,1,1,0,0,8,2,5,1,822.33331,444884.09,-44674.758,144367.23,22869.051,0,0,3639.9836 +1547,1927,3373,-9,3371,3372,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.458,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,2,5,1,822.33331,444884.09,-44674.758,144367.23,22869.051,0,0,3639.9836 +1548,1928,3374,3375,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,8.7797804,8.5529718,0,3,1,-106.93391,0,2,2,2021,6,0,8,40,1,0,0,86.00515,86.00515,.05,.05,.05,0,0,0,0,14.5,1,1,0,2.3455467,0,57.06,57.76,28.33,54.6,8.333333333333334,1,1,0,0,10,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1928,3375,3374,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,9.0626707,8.9381514,0,3,-1,124.11146,0,2,-9,2021,18,6,1,38,1,6,0,812.94781,812.94781,0,0,0,0,0,0,0,2,1,1,0,7.6202698,0,28.33,54.6,57.06,57.76,5,1,1,0,0,10,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1928,3376,-9,3375,3374,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.62091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1928,3377,-9,3375,3374,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1003.1379,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3614227,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,2,12,5,1,1124.5,512646.28,298389.97,73282.047,0,2620.5491,0,4969.3511 +1548,1929,3378,-9,3375,3374,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-953.86597,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.91586822,0,34.2,58.44,-9,-9,8.333333333333334,1,1,0,1,9,12,1,1,911,101611.13,0,0,0,0,0,797.56207 +1549,1930,3379,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.6256771,5.7954998,0,0,-1014.6725,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.89353192,5.5855851,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,153,482027.63,106611.29,322477.44,0,0,0,1032.3442 +1550,1931,3380,-9,3381,3383,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-955.737,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1550,1931,3381,3383,-9,-9,1,0,30,2,2,0,1,1,-9,0,4,8.2467575,8.5337696,0,5,-1,-18.61241,0,-9,-9,2021,7,0,41,37,1,0,0,18.098715,18.098715,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.87,45.85,8.333333333333334,1,1,0,0,8,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1550,1931,3382,-9,3381,3383,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.8282,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1550,1931,3383,3381,-9,-9,1,1,31,2,2,0,2,2,-9,0,3,9.7067347,9.8309059,0,5,1,-146.80038,-9,2,2,2021,6,0,70,0,1,0,0,28.779922,28.779922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.87,45.85,54.2,57.49,6.666666666666667,1,1,0,0,9,13,5,1,587.75,645807.69,157500.45,286652.38,18765.865,1976.5818,0,14462.523 +1551,1932,3384,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,7.7352667,7.6732254,0,0,-1170.9851,0,3,2,2021,10,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2018356,7.4763355,47.6,23.1,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,1181,337166.34,206249.91,0,0,0,0,1478.4553 +1552,1933,3385,3386,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.133812,7.2080545,7,-2,-57.691257,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.616806,7.3566999,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,0,7,4,1,522,2006678,1222595.3,361348.88,0,0,0,4124.6094 +1552,1933,3386,3385,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.1578627,8.4082594,7,2,109.21666,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5617828,8.3122854,60.12,54.8,54.2,57.49,10,1,1,0,0,3,7,4,1,522,2006678,1222595.3,361348.88,0,0,0,4124.6094 +1553,1934,3387,3388,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.5284591,7.5572186,6,0,-14.882531,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.445118,7.2816553,48.42,60.53,60.02,56.42,8.333333333333334,1,1,0,0,0,13,3,1,843.5,1318510,653435.88,394617.25,0,0,0,4446.8975 +1553,1934,3388,3387,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,6,0,11.98941,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,48.42,60.53,10,1,1,0,0,9,13,3,1,843.5,1318510,653435.88,394617.25,0,0,0,4446.8975 +1554,1935,3389,3390,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.3999085,5.3978548,12,11,86.489334,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5258307,5.4914236,57.16,56.15,59.07,43.05,8.333333333333334,1,1,0,0,0,9,2,1,595.5,-5724.7559,105511.93,0,0,0,0,1028.3817 +1554,1935,3390,3389,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,43,-11,37.167252,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4475379,0,59.07,43.05,57.16,56.15,8.333333333333334,1,1,0,0,10,9,2,1,595.5,-5724.7559,105511.93,0,0,0,0,1028.3817 +1555,1936,3391,3392,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.6007681,8.4955311,0,10,3,0,0,2,1,2021,9,1,45,45,1,1,0,13.959611,13.959611,0,0,.05,0,0,0,0,0,1,1,0,0,0,60.29,52.11,55.58,52.99,6.666666666666667,2,3,0,0,8,2,5,1,625,117040.37,61944.563,313018.19,136964.13,883.33649,0,4502.8232 +1555,1936,3392,3391,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5186615,8.3223572,0,10,-3,0,0,1,1,2021,10,3,40,35,1,3,0,13.464067,13.464067,0,0,0,0,0,0,0,0,1,1,0,0,0,55.58,52.99,60.29,52.11,8.333333333333334,2,3,0,0,7,2,5,1,625,117040.37,61944.563,313018.19,136964.13,883.33649,0,4502.8232 +1555,1936,3393,-9,3392,3391,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-996.50861,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,625,117040.37,61944.563,313018.19,136964.13,883.33649,0,4502.8232 +1556,1937,3394,3395,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.3557014,8.3797684,0,24,-1,91.413811,0,3,3,2021,5,0,30,30,1,0,0,17.324684,17.324684,.05,.05,0,0,0,0,0,0,0,0,0,3.9521449,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,11,2,3,1,831.5,35126.141,7898.8496,169134.94,80708.203,1991.0006,0,2023.5841 +1556,1937,3395,3394,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,.064164825,.34089532,0,24,1,-100.09654,-9,2,2,2021,12,1,78,0,1,1,0,.0004355225,.0004355225,.05,.05,0,0,0,0,0,0,0,0,0,6.4496312,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,9,2,3,1,831.5,35126.141,7898.8496,169134.94,80708.203,1991.0006,0,2023.5841 +1557,1938,3396,-9,3398,-9,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-961.54504,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,650.66669,30900.213,0,0,0,0,0,1220.7053 +1557,1938,3397,-9,3398,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.11261,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,650.66669,30900.213,0,0,0,0,0,1220.7053 +1557,1938,3398,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-999.1272,0,-9,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,5,13,1,0,650.66669,30900.213,0,0,0,0,0,1220.7053 +1558,1939,3399,3401,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.6975145,9.6157103,0,12,2,64.072128,0,-9,-9,2021,10,0,50,50,1,0,0,35.816673,35.816673,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.5,51,34.93,65.44,8.333333333333334,1,1,0,0,11,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3400,-9,3401,3399,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.37579,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3401,3399,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,0,0,0,12,-2,-13.456257,0,2,1,2021,19,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.93,65.44,56.5,51,8.333333333333334,1,1,0,0,7,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3402,-9,3401,3399,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.75964,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1558,1939,3403,-9,3401,3399,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.2542,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,5,1,734.59998,875388.25,101139.55,621544.06,14866.916,0,0,5249.8721 +1559,1940,3404,3407,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,7.4378839,7.5640016,0,6,-2,82.030136,0,-9,-9,2021,8,0,4,1,1,0,0,61.62899,61.62899,.05,.05,0,0,0,0,0,0,1,1,0,7.5743542,0,49.25,61.25,51.14,60.45,8.333333333333334,1,1,0,0,10,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1559,1940,3405,-9,3404,3407,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-845.42767,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1559,1940,3406,-9,3404,3407,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.93207,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1559,1940,3407,3404,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,9.1098328,9.3969955,0,6,2,14.801739,0,-9,-9,2021,7,0,50,60,1,0,0,26.098082,26.098082,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,49.25,61.25,6.666666666666667,1,1,0,0,8,2,5,1,463,-10811.237,73256.422,0,0,5870.6279,710.54657,5810.1265 +1560,1941,3408,-9,3409,3410,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.68182,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,4,1,427,188668.56,-17891.512,274282.69,124277.96,0,2349.5842,3168.0376 +1560,1941,3409,3410,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,0,0,0,22,-2,-70.523529,0,3,3,2021,4,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.2,48.66,48.96,60.26,8.333333333333334,3,4,0,0,0,8,4,1,427,188668.56,-17891.512,274282.69,124277.96,0,2349.5842,3168.0376 +1560,1941,3410,3409,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,9.1657696,9.2903185,0,22,2,-57.756157,0,-9,-9,2021,15,3,45,44,1,3,0,20.073818,20.073818,.05,.05,0,0,0,0,0,0,1,1,0,2.0622382,0,48.96,60.26,56.2,48.66,8.333333333333334,1,1,0,0,8,8,4,1,427,188668.56,-17891.512,274282.69,124277.96,0,2349.5842,3168.0376 +1560,1942,3411,-9,3409,3410,1,1,20,0,2,1,2,0,0,0,5,0,5.8697705,6.3313103,0,0,-1011.6309,-9,1,1,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8644738,0,46.49,55.7,-9,-9,8.333333333333334,4,2,0,0,2,8,2,1,67,96334.789,0,0,0,0,221.62938,230.146 +1560,1943,3412,-9,3409,3410,1,1,18,0,2,1,2,0,0,0,4,0,6.2759104,6.3017592,0,0,-1093.3805,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6785989,0,33.79,55.9,-9,-9,6.666666666666667,4,2,0,0,1,8,2,1,385,-48563.105,0,0,0,0,1591.6823,499.33597 +1561,1944,3413,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.4805069,7.6243238,0,0,0,-1147.5897,0,-9,-9,2021,6,0,10,10,1,0,0,20.50341,20.50341,0,0,0,0,0,0,0,0,1,1,0,0,0,63.83,43.62,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,1999,297474.59,205377.16,224714.44,67244.898,0,0,1495.994 +1562,1945,3414,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.2512989,6.7192426,0,0,-1027.3816,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3488874,7.2125125,51.94,40.74,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,263,259539.22,82163.93,142263.7,0,0,0,1237.4996 +1563,1946,3415,3417,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.7851162,8.8130178,0,8,1,7.1928315,0,2,2,2021,13,3,40,40,1,3,0,20.957048,20.957048,.05,.05,0,0,0,0,0,0,1,1,0,5.9825015,0,55.36,51.57,38.63,63.11,8.333333333333334,1,1,0,0,9,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1563,1946,3416,-9,3417,3415,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.37152,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1563,1946,3417,3415,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.9384093,7.9453397,0,8,-1,-.10172114,0,-9,-9,2021,12,1,22,24,1,1,0,14.887706,14.887706,0,0,0,0,0,0,0,0,1,1,0,6.4449806,0,38.63,63.11,55.36,51.57,8.333333333333334,1,1,0,0,7,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1563,1946,3418,-9,3417,3415,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1163.1379,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,605,210106.75,7481.7397,185464.2,70345.328,0,0,5137.6299 +1564,1947,3419,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.0273032,5.3658819,0,0,-969.64856,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,3.7911403,0,1,1,0,5.052917,5.3663139,39.23,44.12,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,893,159576.42,-86706.391,0,0,0,1590.6328,896.4801 +1565,1948,3420,3421,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8941064,7.6145649,0,9,-3,49.066452,0,3,-9,2021,20,6,19,10,1,6,0,14.475867,14.475867,0,0,0,0,0,0,0,0,1,1,0,0,0,19.45,55.12,45.91,59.89,0,1,1,0,0,10,11,5,1,488,614987.44,419306.47,212479.31,65406.16,0,1873.9956,3064.2102 +1565,1948,3421,3420,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.711401,8.3268795,0,9,3,49.776546,0,-9,-9,2021,14,3,45,45,1,3,0,14.711941,14.711941,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,19.45,55.12,8.333333333333334,1,1,0,0,10,11,5,1,488,614987.44,419306.47,212479.31,65406.16,0,1873.9956,3064.2102 +1565,1948,3422,-9,3420,3421,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1091.4055,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.29,54.22,-9,-9,10,1,1,0,0,1,11,5,1,488,614987.44,419306.47,212479.31,65406.16,0,1873.9956,3064.2102 +1566,1949,3423,-9,3424,3425,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.4516,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,967,57974.891,6704.6953,242203.27,224214.63,0,9388.7168,3629.4189 +1566,1949,3424,3425,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,0,0,0,14,0,14.599136,0,3,1,2021,21,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3047848,0,45.4,32.26,51.59,41.11,6.666666666666667,2,3,0,0,3,8,3,1,967,57974.891,6704.6953,242203.27,224214.63,0,9388.7168,3629.4189 +1566,1949,3425,3424,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.5413971,8.4634743,0,14,0,67.05352,0,1,1,2021,9,0,40,40,1,0,0,14.939804,14.939804,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.59,41.11,45.4,32.26,8.333333333333334,2,3,0,0,9,8,3,1,967,57974.891,6704.6953,242203.27,224214.63,0,9388.7168,3629.4189 +1567,1950,3426,3427,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,0,0,8,2,-94.256462,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7191582,0,54,46,47.79,29.83,8,1,1,0,0,0,4,2,1,1496,572100.63,125690.63,284615.5,0,0,0,5912.8735 +1567,1950,3427,3426,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.9096513,7.5340109,57,-2,-49.381622,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9952869,7.2312183,47.79,29.83,54,46,5,1,1,0,0,0,4,2,1,1496,572100.63,125690.63,284615.5,0,0,0,5912.8735 +1568,1951,3428,3430,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3878479,8.5487967,0,5,0,63.361042,0,-9,-9,2021,6,0,40,40,1,0,0,12.926256,12.926256,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,44.25,56.64,8.333333333333334,1,1,0,0,5,7,5,1,471,29753.986,-14596.925,0,0,5188.0605,21.086496,4915.457 +1568,1951,3429,-9,3428,3430,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.776,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,471,29753.986,-14596.925,0,0,5188.0605,21.086496,4915.457 +1568,1951,3430,3428,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,9.098897,9.2239218,0,5,0,-97.165817,-9,-9,-9,2021,7,1,46,0,1,1,0,21.820917,21.820917,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.25,56.64,58.3,52.91,8.333333333333334,1,1,0,0,12,7,5,1,471,29753.986,-14596.925,0,0,5188.0605,21.086496,4915.457 +1569,1952,3431,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.7797236,8.0910454,5.7316422,0,0,-918.23273,0,2,1,2021,9,0,23,23,1,0,0,10.950069,10.950069,.05,.05,0,0,0,0,0,2,1,1,0,5.843287,0,50.43,53.69,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,1236.6666,-33638.031,31133.988,0,0,0,910.59705,1705.5564 +1569,1952,3432,-9,3431,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1088.7529,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,3,1,1236.6666,-33638.031,31133.988,0,0,0,910.59705,1705.5564 +1569,1952,3433,-9,3431,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.4141,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1236.6666,-33638.031,31133.988,0,0,0,910.59705,1705.5564 +1570,1953,3434,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,1,0,0,0,0,0,-993.13635,-9,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.86,20.5,-9,-9,5,4,2,0,0,0,6,1,0,534,-17372.297,0,0,0,0,0,346.5412 +1570,1953,3435,-9,3434,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.8574,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,59,-9,-9,7,4,2,-9,0,0,6,1,0,534,-17372.297,0,0,0,0,0,346.5412 +1570,1954,3436,-9,3434,-9,1,1,26,0,1,0,2,2,-9,0,2,0,0,0,0,0,-959.78027,0,3,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,41,43,-9,-9,6.666666666666667,4,2,1,1,0,6,1,0,462,0,0,0,0,0,0,153.21922 +1570,1955,3437,-9,3434,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1000.8251,-9,3,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,0,6,1,0,693,0,0,0,0,0,0,0 +1570,1956,3438,-9,3434,-9,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-993.14996,-9,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,59.73,50.87,-9,-9,1.666666666666667,3,4,1,0,0,6,1,0,364,0,0,0,0,0,0,0 +1571,1957,3439,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1087.8196,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,1,0,0,4,1,0,701,-65720.68,0,0,0,0,0,-200.22017 +1572,1958,3440,3441,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.7765546,7.9883785,0,45,-3,9.6177025,0,3,2,2021,17,5,35,33,1,5,0,7.758378,7.758378,0,0,0,0,0,0,0,0,0,0,0,0,0,46.27,57.3,59.06,32.53,3.333333333333333,1,1,0,0,11,9,3,1,554,297904.75,287020.59,0,0,0,0,1648.7731 +1572,1958,3441,3440,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,6.9703622,7.1178083,9,3,108.90224,0,2,2,2021,9,0,0,60,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2919488,59.06,32.53,46.27,57.3,6.666666666666667,1,1,0,0,11,9,3,1,554,297904.75,287020.59,0,0,0,0,1648.7731 +1572,1959,3442,-9,3440,3441,1,1,29,0,0,0,2,2,-9,0,4,7.5213642,7.4846601,0,0,0,-1034.212,0,3,3,2021,10,0,16,16,1,1,1,15.062623,15.062623,.05,.05,0,0,0,0,0,0,0,0,0,3.0181491,0,49,58,-9,-9,7,1,1,0,0,1,9,3,1,178,152130.31,20291.883,0,0,0,0,1178.1945 +1573,1960,3443,3444,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.1426563,8.0453577,4.3008094,3,0,-27.950857,0,-9,-9,2021,8,0,37,35,1,0,0,8.519908,8.519908,.05,.05,0,0,0,0,0,0,0,0,0,4.62432,0,54.1,59.11,56.47,59.4,8.333333333333334,1,1,0,0,9,1,4,1,267.5,128192.83,22788.361,157470.06,161228.81,46430.672,0,2837.353 +1573,1960,3444,3443,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.2666903,8.1695833,0,3,0,-40.442551,0,-9,-9,2021,8,1,35,38,1,1,0,15.452659,15.452659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.1,59.11,6.666666666666667,1,1,0,0,7,1,4,1,267.5,128192.83,22788.361,157470.06,161228.81,46430.672,0,2837.353 +1574,1961,3445,-9,-9,-9,1,0,66,0,1,0,3,3,-9,0,3,0,.46691111,.41205531,0,0,-963.81842,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.29828405,42.79,43.76,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,271,0,0,0,0,0,0,744.67981 +1574,1962,3446,-9,-9,3447,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1058.0969,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8959014,0,47,60,-9,-9,7,1,1,0,0,0,12,4,1,526.5,140397.98,-93972.875,100401.88,15923.534,0,3248.3857,1746.6289 +1574,1962,3447,-9,3445,-9,1,1,45,0,1,0,2,2,-9,0,4,8.5232286,8.4904575,0,0,0,-1054.1052,-9,3,-9,2021,9,0,37,0,1,1,0,18.761534,18.761534,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,12,4,1,526.5,140397.98,-93972.875,100401.88,15923.534,0,3248.3857,1746.6289 +1575,1963,3448,3449,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,9.09863,9.177083,0,10,17,100.26672,0,-9,-9,2021,9,0,60,60,1,1,0,14.329982,14.329982,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,37.22,57.27,8,1,1,0,0,1,10,5,1,1345,1476282.3,1093609.5,362605.16,31967.16,0,0,6558.7617 +1575,1963,3449,3448,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,8.833437,9.0008669,0,17,-17,-49.86385,0,2,2,2021,14,2,36,30,1,2,0,20.312586,20.312586,.05,.05,0,0,0,0,0,0,1,1,0,5.9178619,0,37.22,57.27,52,55,5,1,1,0,0,11,10,5,1,1345,1476282.3,1093609.5,362605.16,31967.16,0,0,6558.7617 +1575,1963,3450,-9,3449,3448,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.82703,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,1345,1476282.3,1093609.5,362605.16,31967.16,0,0,6558.7617 +1576,1964,3451,3452,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.3340812,6.2070079,0,26,0,45.422066,0,-9,-9,2021,7,0,50,60,1,0,0,1.1862932,1.1862932,0,0,0,0,0,0,0,14.5,1,1,0,2.365443,0,60.28,43.74,46.5,58.26,6.666666666666667,1,1,0,0,6,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1964,3452,3451,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,0,0,0,26,0,74.601761,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.9636669,0,46.5,58.26,60.28,43.74,5,1,1,0,1,3,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1964,3453,-9,3452,3451,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1153.9382,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1964,3454,-9,3452,3451,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.04126,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,601.5,15267.101,53974.941,0,0,0,0,1354.0204 +1576,1965,3455,-9,3452,3451,1,1,24,0,2,0,3,3,-9,1,4,0,0,0,0,0,-1037.36,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,13,1,1,274,-96611.203,0,0,0,0,0,254.88794 +1577,1966,3456,-9,3458,3457,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-848.30103,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,3,1,1087.3334,164162.41,52111.563,184698.67,54433.078,0,0,1597.4756 +1577,1966,3457,3458,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,0,0,0,8,1,-5.1202149,0,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,1.5974264,0,54.2,57.49,58.3,47.38,10,1,1,0,0,0,11,3,1,1087.3334,164162.41,52111.563,184698.67,54433.078,0,0,1597.4756 +1577,1966,3458,3457,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.2257662,7.88977,0,8,-1,53.563267,0,2,2,2021,10,0,32,34,1,0,0,10.286516,10.286516,0,0,0,0,0,0,0,7,1,1,0,1.7781979,0,58.3,47.38,54.2,57.49,8.333333333333334,1,1,0,0,9,11,3,1,1087.3334,164162.41,52111.563,184698.67,54433.078,0,0,1597.4756 +1578,1967,3459,3460,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.8252354,7.4850178,50,2,-115.00029,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3822575,7.08567,37.25,31.7,43.93,31.44,8.333333333333334,1,1,0,0,0,6,2,1,758.5,785594,261596.59,510076.44,0,6930.4185,0,1608.2402 +1578,1967,3460,3459,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,46,-2,-22.118191,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9412806,0,43.93,31.44,37.25,31.7,6.666666666666667,1,1,0,0,0,6,2,1,758.5,785594,261596.59,510076.44,0,6930.4185,0,1608.2402 +1579,1968,3461,-9,3462,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6477,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,1331.3334,54816.625,0,0,0,0,0,2221.2649 +1579,1968,3462,-9,-9,-9,1,0,33,0,2,0,2,2,1,1,2,0,0,0,0,0,-1024.6798,-9,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.02,61.74,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1331.3334,54816.625,0,0,0,0,0,2221.2649 +1579,1968,3463,-9,3462,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-813.58337,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1331.3334,54816.625,0,0,0,0,0,2221.2649 +1580,1969,3464,-9,-9,-9,1,1,47,0,2,0,2,2,-9,1,1,0,4.5721483,4.2122817,0,0,-923.95911,0,2,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.6366293,0,15.29,36.69,-9,-9,3.333333333333333,1,1,1,0,0,12,2,0,1189,-105236.6,0,0,0,0,0,2093.0667 +1581,1970,3465,3466,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7942233,6.7534328,10,1,-8.3780203,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.3059715,4.9620585,23.135469,0,1,1,0,5.8126564,6.3595591,50.03,52.62,44.02,60.7,8.333333333333334,1,1,0,0,0,6,3,1,836.5,692536.88,268905.31,212482.28,0,0,0,2856.3418 +1581,1970,3466,3465,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.6113095,7.4247422,52,-1,9.9709196,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1884868,7.6324668,44.02,60.7,50.03,52.62,8.333333333333334,1,1,0,0,11,6,3,1,836.5,692536.88,268905.31,212482.28,0,0,0,2856.3418 +1582,1971,3467,3468,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.9238906,6.8369212,47,0,-132.26381,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.2807226,6.9852405,46.98,59.35,41.92,12.44,8.333333333333334,1,1,0,0,6,2,2,0,230.5,101583.02,233255.22,0,0,0,0,2055.0466 +1582,1971,3468,3467,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,47,0,26.443502,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,125.30835,0,0,1,1,0,3.0428679,0,41.92,12.44,46.98,59.35,5,1,1,0,0,0,2,2,0,230.5,101583.02,233255.22,0,0,0,0,2055.0466 +1583,1972,3469,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.8778882,7.9242206,0,0,-1051.9309,0,2,3,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8714623,7.7545109,50.41,26.29,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1098,412940.38,234997.72,175598.78,0,0,0,3095.8098 +1584,1973,3470,-9,3471,3472,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.678,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,499.66666,160711.28,123288.46,288721.31,179565.77,5845.9287,0,5024.6914 +1584,1973,3471,3472,-9,-9,1,0,31,1,1,0,1,1,-9,0,5,8.0080767,7.9788795,0,9,0,38.288269,0,2,3,2021,9,1,30,37,1,1,0,12.751438,12.751438,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,59.72,51.02,6.666666666666667,1,1,0,0,11,12,5,1,499.66666,160711.28,123288.46,288721.31,179565.77,5845.9287,0,5024.6914 +1584,1973,3472,3471,-9,-9,1,1,31,1,1,0,2,2,-9,0,5,9.1452026,9.4441204,0,9,0,-28.681232,0,1,2,2021,9,0,42,42,1,0,0,30.407864,30.407864,.05,.05,0,0,0,0,.40363258,0,0,0,0,0,0,59.72,51.02,48.77,60.16,6.666666666666667,1,1,0,0,8,12,5,1,499.66666,160711.28,123288.46,288721.31,179565.77,5845.9287,0,5024.6914 +1585,1974,3473,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.6839271,6.8876591,0,0,-1042.4475,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.041749,7.1348715,52.77,44.6,-9,-9,8.333333333333334,1,1,0,0,11,8,2,1,737,893114.19,0,496263.38,0,0,0,742.48633 +1586,1975,3474,3475,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.4686065,7.3089628,59,-2,-32.175728,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2473502,61.19,33.88,58.47,39.49,8.333333333333334,1,1,0,0,0,12,4,1,824,1355075.5,227811.66,459241.63,0,0,0,4221.3628 +1586,1975,3475,3474,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.1371756,8.1022186,59,2,65.849945,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9294033,58.47,39.49,61.19,33.88,6.666666666666667,1,1,0,0,0,12,4,1,824,1355075.5,227811.66,459241.63,0,0,0,4221.3628 +1587,1976,3476,3477,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.5108299,8.5018768,0,6,5,38.243431,0,-9,-9,2021,8,0,42,39,1,0,0,8.3816757,8.3816757,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,57.33,53.46,5,1,1,0,0,6,2,5,1,1001,467713.81,318845.31,187376.03,0,0,0,2900.3262 +1587,1976,3477,3476,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.2449303,8.3110294,0,6,-5,31.699644,0,-9,-9,2021,8,1,38,37,1,1,0,12.087585,12.087585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.66,54.88,10,1,1,0,0,11,2,5,1,1001,467713.81,318845.31,187376.03,0,0,0,2900.3262 +1588,1977,3478,3480,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.7243886,7.6877255,0,19,0,-122.41886,0,2,1,2021,15,3,24,24,1,3,0,9.297514,9.297514,0,0,0,0,0,0,0,0,1,1,0,.36143246,0,55.19,54.26,39.74,52.42,8.333333333333334,1,1,0,0,10,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1588,1977,3479,-9,3478,3480,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.33862,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1588,1977,3480,3478,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.1751909,8.1818447,0,18,0,-149.34352,0,2,2,2021,12,0,48,44,1,0,0,9.8657408,9.8657408,.05,.05,0,0,0,0,0,0,1,1,0,2.8754158,0,39.74,52.42,55.19,54.26,3.333333333333333,1,1,0,0,10,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1588,1977,3481,-9,3478,3480,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-999.18781,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,1317.25,451946.19,55736.348,481002.91,0,0,0,2395.1382 +1589,1978,3482,3483,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.0693111,9.3375244,0,9,-1,21.809753,0,3,2,2021,8,1,40,60,1,1,0,25.889311,25.889311,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.18,53.85,29.25,18.08,6.666666666666667,1,1,0,1,9,13,5,1,579.5,1307410,579354.25,178414.72,0,0,0,5561.4521 +1589,1978,3483,3482,-9,-9,1,0,49,0,0,0,1,1,-9,1,1,0,0,0,9,1,21.90015,0,-9,2,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.25,18.08,56.18,53.85,3.333333333333333,1,1,0,0,0,13,5,1,579.5,1307410,579354.25,178414.72,0,0,0,5561.4521 +1589,1979,3484,-9,3483,3482,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1026.7937,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,27,1,1,0,2.7367299,0,49.76,56.93,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,491,-84457.273,0,0,0,0,0,293.56244 +1590,1980,3485,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.5687847,8.2125931,0,0,0,-1109.5615,0,2,2,2021,12,0,37,37,1,0,0,13.480365,13.480365,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31,39.15,-9,-9,5,1,1,0,0,13,6,5,1,160,85462.977,-34524.613,96043.766,86591.063,4665.1548,3138.3679,1135.734 +1591,1981,3486,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,8.1799803,8.1647434,0,0,0,-992.92383,0,3,2,2021,9,3,26,24,1,3,0,17.136385,17.136385,.05,.05,0,0,0,0,0,2,1,1,0,7.6175947,0,51.3,29.58,-9,-9,6.666666666666667,2,3,0,0,11,8,4,1,261.5,350226.59,27870.656,277244.06,0,-1956.4277,-142.37973,2785.1975 +1591,1981,3487,-9,3486,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.91455,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,261.5,350226.59,27870.656,277244.06,0,-1956.4277,-142.37973,2785.1975 +1592,1982,3488,3489,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.1110554,8.2997904,0,9,0,-27.542265,0,3,3,2021,7,0,35,45,1,0,0,11.855913,11.855913,.05,.05,0,0,0,0,0,0,0,0,0,3.1907582,0,64.66,50.23,57.33,53.46,10,2,3,0,0,10,9,5,1,650,1471500.1,1293359.8,341858.19,117003.52,177.06775,2070.3325,2684.3687 +1592,1982,3489,3488,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.362154,8.2908449,0,9,0,-54.469498,0,3,3,2021,10,0,34,34,1,0,0,12.717218,12.717218,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,64.66,50.23,8.333333333333334,2,3,0,0,10,9,5,1,650,1471500.1,1293359.8,341858.19,117003.52,177.06775,2070.3325,2684.3687 +1593,1983,3490,3491,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1111593,6.6341634,28,6,-24.476099,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.147469,6.8236833,52.82,53.97,51.04,52.17,8.333333333333334,1,1,0,0,10,7,4,1,852.5,3004290.5,1214326.8,661207.63,0,19173.137,0,4345.8223 +1593,1983,3491,3490,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.7212896,8.2564154,7.8473263,27,-6,49.731564,0,2,2,2021,15,5,22,15,1,5,0,14.208231,14.208231,0,0,0,0,0,0,0,0,1,1,0,6.9902711,7.76405,51.04,52.17,52.82,53.97,8.333333333333334,1,1,0,0,13,7,4,1,852.5,3004290.5,1214326.8,661207.63,0,19173.137,0,4345.8223 +1594,1984,3492,3493,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.6191168,8.6404839,0,18,1,47.179623,0,2,1,2021,6,0,43,47,1,0,0,20.104212,20.104212,.05,.05,0,0,0,0,0,0,0,0,0,1.4205935,0,63.06,53.47,62.49,55.09,8.333333333333334,1,1,0,0,12,4,5,1,709,28698.93,61670.195,192407.55,204873.88,0,0,3714.6926 +1594,1984,3493,3492,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.2495451,8.4500408,0,18,-1,5.7249918,0,1,-9,2021,6,0,52,60,1,0,0,9.5142527,9.5142527,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,63.06,53.47,6.666666666666667,1,1,0,0,11,4,5,1,709,28698.93,61670.195,192407.55,204873.88,0,0,3714.6926 +1594,1984,3494,-9,3493,3492,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1014.4421,-9,1,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,5,1,1,0,0,0,4,5,1,709,28698.93,61670.195,192407.55,204873.88,0,0,3714.6926 +1595,1985,3495,3497,3499,-9,1,1,46,0,2,0,2,2,-9,0,4,6.8406239,6.5901151,0,20,9,193.15283,0,3,3,2021,10,0,24,24,1,1,0,4.0799866,4.0799866,0,0,0,0,0,0,0,0,1,1,0,4.5541677,0,51,56,48,57,7,2,3,0,1,13,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1985,3496,-9,3497,3495,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-927.6983,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,0,0,0,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1985,3497,3495,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,11,0,-62.036045,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,51,56,7,2,3,0,0,0,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1985,3498,-9,3497,3495,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.55255,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,505.25,-39009.848,0,0,0,0,0,835.98102 +1595,1986,3499,-9,-9,-9,1,0,82,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1063.2485,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,-9,-9,8,2,3,0,0,0,2,1,1,357,-133844.72,0,0,0,0,0,1965.6211 +1595,1987,3500,-9,3497,3495,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1025.8423,-9,3,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,113,265543.5,0,184417.36,0,0,0,-66.200539 +1596,1988,3501,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.5391388,7.7901797,0,0,0,-951.94092,0,1,1,2021,15,3,25,4,1,3,0,9.1827183,9.1827183,0,0,0,0,0,0,0,0,1,1,0,4.7929964,0,46.33,55.93,-9,-9,1.666666666666667,1,1,0,0,7,9,3,1,172,836096.19,264157.19,245710.36,0,0,0,956.203 +1597,1989,3502,-9,3503,3505,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.49194,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1597,1989,3503,3505,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,7.4748821,7.4822145,0,22,-3,26.395794,0,2,3,2021,6,0,25,40,1,0,0,7.687232,7.687232,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,30.62,49.49,10,2,3,0,0,5,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1597,1989,3504,-9,3503,3505,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4979,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1597,1989,3505,3503,-9,-9,1,1,49,0,2,0,3,3,-9,0,3,9.401022,9.3481054,0,22,3,126.99545,-9,-9,-9,2021,11,0,43,0,1,1,0,25.164951,25.164951,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.62,49.49,51.83,57.2,5,2,3,0,1,10,8,5,0,460,220700.17,35772.137,472348.75,336340,0,0,6977.5693 +1598,1990,3506,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.0811939,8.399478,0,0,0,-975.3623,0,3,3,2021,6,0,30,25,1,0,0,11.945878,11.945878,0,0,0,0,0,0,0,0,0,0,0,3.002723,0,57.06,57.76,-9,-9,10,1,1,0,0,10,13,4,1,871,1015365.1,838789.06,178873.5,117475.38,0,0,1803.4814 +1598,1991,3507,-9,3506,-9,1,1,26,0,0,0,1,1,-9,0,2,8.5845757,8.7174177,0,0,0,-1069.5629,0,1,1,2021,19,8,41,52,1,8,1,13.792855,13.792855,.05,.05,0,0,0,0,0,0,0,0,0,4.1724896,0,19.89,59.36,-9,-9,1.666666666666667,1,1,0,0,4,13,5,1,1283,194701.81,4175.2051,0,0,0,0,2070.3879 +1598,1992,3508,-9,3506,-9,1,1,25,0,0,0,1,1,-9,0,5,7.9831443,7.9096842,0,0,0,-900.7027,0,1,1,2021,6,0,37,43,1,0,1,10.845003,10.845003,.05,.05,0,0,0,0,0,0,0,0,0,2.4043872,0,62.39,56.71,-9,-9,10,1,1,0,0,4,13,4,1,1807,5127.501,-79095.922,0,0,0,1021.6196,1302.6002 +1598,1993,3509,-9,3506,-9,1,1,23,0,0,0,2,2,-9,0,4,7.3554859,7.0473189,0,0,0,-1021.9282,0,1,-9,2021,6,0,37,0,1,0,1,5.8748341,5.8748341,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,1843,81050.781,0,0,0,5479.2832,0,464.74048 +1598,1994,3510,-9,3506,-9,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-898.67725,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,3,13,1,1,882,41485.031,0,0,0,0,0,0 +1599,1995,3511,3512,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,3,-18,62.920216,0,-9,-9,2021,13,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,15.16,55.55,44.02,23.69,10,1,1,0,0,0,2,2,1,296,648503.25,302484.38,257531.53,0,0,-45.986145,2130.0903 +1599,1995,3512,3511,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.6120205,7.4420543,3,18,.93352962,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5198579,44.02,23.69,15.16,55.55,8.333333333333334,1,1,0,0,0,2,2,1,296,648503.25,302484.38,257531.53,0,0,-45.986145,2130.0903 +1600,1996,3513,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.1453314,8.1090946,0,0,0,-960.20746,0,2,2,2021,5,0,50,45,1,0,0,8.1617956,8.1617956,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,160,-37231.383,8749.4004,68737.852,72236.039,0,0,1224.4541 +1601,1997,3514,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,7.7905865,8.2008104,6.0578756,0,0,-1067.7499,0,2,2,2021,13,1,16,0,1,1,0,18.222242,18.222242,.05,.05,0,0,0,0,.16741376,42,1,0,1,5.9376478,0,40.21,50.34,-9,-9,8.333333333333334,1,1,0,0,11,1,3,0,193,317349.16,112879.18,186784.58,103166.24,0,0,2789.4197 +1601,1998,3515,-9,3514,-9,1,0,21,0,1,1,1,0,0,0,1,0,0,0,0,0,-1018.283,-9,1,-9,2021,33,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23.46,32.83,-9,-9,5,1,1,0,0,0,1,1,0,594,-134001.52,101808.67,67014.656,0,0,0,190.65755 +1602,1999,3516,3517,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.288909,8.4351664,0,39,0,8.1652899,0,-9,3,2021,6,0,50,50,1,0,0,12.256049,12.256049,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,39.83,47.81,10,1,1,0,0,10,9,4,1,658.5,1558438.8,567878.63,597683.56,0,0,0,2369.7485 +1602,1999,3517,3516,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,39,0,6.8837323,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.83,47.81,57.16,56.15,6.666666666666667,1,1,0,0,0,9,4,1,658.5,1558438.8,567878.63,597683.56,0,0,0,2369.7485 +1603,2000,3518,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.888721,6.9591541,0,0,-878.76318,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0600042,54,44,-9,-9,8,1,1,0,0,0,6,2,0,396,342735.25,38726.832,155808.34,0,0,0,1784.8329 +1604,2001,3519,-9,3520,3522,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.40002,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3520,3522,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.7654176,7.6027651,0,16,1,91.063293,0,3,3,2021,10,0,30,30,1,0,0,6.4399366,6.4399366,0,0,0,0,0,0,0,2,1,1,0,0,0,38.86,56.2,47.61,53.7,8.333333333333334,1,1,0,0,6,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3521,-9,3520,3522,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.8385,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3522,3520,-9,-9,1,1,35,0,3,0,2,2,-9,0,3,0,0,0,16,-1,45.587681,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,38.86,56.2,5,1,1,0,0,1,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1604,2001,3523,-9,3520,3522,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.67639,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,1,1114.2,-2802.8035,0,0,0,0,0,2293.0012 +1605,2002,3524,-9,3526,3525,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1031.6185,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2225963,0,59.53,56.44,-9,-9,10,1,1,0,0,0,12,3,0,488.33334,52600.891,167488.88,0,0,0,0,1935.7512 +1605,2002,3525,3526,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.4054289,8.5419121,0,6,5,-82.264023,0,3,2,2021,8,0,60,60,1,0,0,7.0368376,7.0368376,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,50,55,8.333333333333334,1,1,0,0,8,12,3,0,488.33334,52600.891,167488.88,0,0,0,0,1935.7512 +1605,2002,3526,3525,-9,-9,1,0,44,0,1,0,2,2,-9,1,4,0,0,0,6,-5,23.593685,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,57.16,56.15,8,1,1,0,0,1,12,3,0,488.33334,52600.891,167488.88,0,0,0,0,1935.7512 +1605,2003,3527,-9,3526,3525,1,0,23,0,1,0,2,2,-9,0,3,7.1376739,6.8556705,0,0,0,-1093.9014,0,2,3,2021,12,1,16,12,1,1,1,8.785429,8.785429,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,7,12,2,0,1208,199582.8,0,0,0,1277.2653,0,1083.5616 +1606,2004,3528,-9,-9,-9,1,1,99,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1011.6758,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,2.7662716,.002220243,19.182684,0,1,1,0,0,0,48.57,34.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1558,233680.92,0,186273.42,0,0,0,978.93146 +1607,2005,3529,3530,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,0,0,3,10,0,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.827453,0,53.2,45.94,31.06,27.8,8.333333333333334,1,1,0,0,6,9,1,1,544.5,288347.5,-1997.5427,213377.58,0,0,0,2053.3608 +1607,2005,3530,3529,-9,-9,1,0,56,0,0,0,1,1,-9,1,1,0,0,0,3,-10,0,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,31.06,27.8,53.2,45.94,8.333333333333334,1,1,0,0,0,9,1,1,544.5,288347.5,-1997.5427,213377.58,0,0,0,2053.3608 +1608,2006,3531,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,2,0,0,0,0,0,-878.49884,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.37,29.63,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,615,-100920.84,112365.58,0,0,0,377.07214,1156.748 +1608,2007,3532,-9,3531,-9,1,1,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1078.0547,0,1,-9,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.74,24.49,-9,-9,3.333333333333333,1,1,1,1,0,9,2,0,511,-112177.64,0,0,0,0,0,702.44519 +1609,2008,3533,3534,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.7956867,8.9402981,0,45,0,-28.693483,0,3,3,2021,10,0,42,40,1,0,0,16.852079,16.852079,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,58.3,47.38,58.72,51.29,10,1,1,0,0,11,13,5,1,699.5,263507.22,170791.77,193720.13,0,0,0,2922.3145 +1609,2008,3534,3533,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.0857916,5.7187343,45,0,82.150284,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.193608,5.8043985,58.72,51.29,58.3,47.38,10,1,1,0,0,6,13,5,1,699.5,263507.22,170791.77,193720.13,0,0,0,2922.3145 +1610,2009,3535,-9,-9,-9,1,0,46,0,1,0,1,1,-9,1,3,0,0,0,0,0,-1117.0975,-9,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.17,42.36,-9,-9,6.666666666666667,4,5,0,1,7,6,1,1,493,493825.06,168256.73,201103.3,0,0,0,470.63412 +1610,2010,3536,-9,3535,-9,1,1,24,0,1,0,1,1,-9,0,2,0,0,0,0,0,-1006.4458,-9,1,-9,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.99,52.62,-9,-9,8.333333333333334,4,5,0,0,3,6,1,1,2073,-52668.859,0,0,0,0,1649.498,661.42474 +1611,2011,3537,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1089.166,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,8.093894,0,0,1,1,0,3.4467757,0,26.49,30.2,-9,-9,5,1,1,0,0,0,11,1,0,1217,-383330.75,0,0,0,0,-1007.3483,1407.0919 +1612,2012,3538,-9,3540,3539,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.6153,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,3034.3333,768022.25,779852.38,150149.42,31822.506,2988.9316,0,3135.8894 +1612,2012,3539,3540,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.287384,8.3605013,0,8,0,182.4897,0,2,2,2021,9,0,38,38,1,0,0,12.340391,12.340391,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,44.95,40.65,57.36,1.666666666666667,1,1,0,0,9,2,5,1,3034.3333,768022.25,779852.38,150149.42,31822.506,2988.9316,0,3135.8894 +1612,2012,3540,3539,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.4305925,8.840621,0,8,0,17.875591,0,-9,-9,2021,14,2,30,30,1,2,0,15.861361,15.861361,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,46.28,44.95,5,1,1,0,0,9,2,5,1,3034.3333,768022.25,779852.38,150149.42,31822.506,2988.9316,0,3135.8894 +1613,2013,3541,3542,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.4200163,8.5310936,0,13,2,-177.84572,0,2,3,2021,15,4,37,37,1,4,0,12.464631,12.464631,0,0,0,0,0,0,0,2,0,0,0,3.2756009,0,41.53,63.13,51.24,58.84,3.333333333333333,1,1,0,0,11,9,5,1,757.5,1839806.8,1335567.6,654494.88,0,0,0,5506.6611 +1613,2013,3542,3541,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8509121,9.081378,7.9327393,13,-2,21.938793,0,3,3,2021,11,0,38,38,1,0,0,18.901674,18.901674,0,0,.05,0,0,0,0,0,0,0,0,0,8.1094723,51.24,58.84,41.53,63.13,10,1,1,0,0,11,9,5,1,757.5,1839806.8,1335567.6,654494.88,0,0,0,5506.6611 +1614,2014,3543,3544,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,8.0653706,7.9528642,56,-3,61.663837,-9,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3492689,7.8905778,51,46,57.76,54.51,8,1,1,0,0,0,1,3,1,1703.5,1329868.4,575380.63,483658.03,0,0,0,2733.6948 +1614,2014,3544,3543,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,7.7223568,7.3387303,56,3,-9.1833925,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3596296,7.2314053,57.76,54.51,51,46,0,1,1,0,0,8,1,3,1,1703.5,1329868.4,575380.63,483658.03,0,0,0,2733.6948 +1615,2015,3545,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-944.67389,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3210092,0,39.96,42.48,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,192,-97147.703,0,0,0,0,0,1247.4241 +1616,2016,3546,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.4893,1,-9,-9,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.11,59.02,-9,-9,6.666666666666667,1,1,0,0,2,12,1,0,267,0,0,0,0,0,0,559.00946 +1617,2017,3547,3548,-9,-9,1,1,84,0,1,0,2,2,-9,0,2,0,7.4857154,7.5882101,4,23,-92.085342,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.024291,41.36,39.55,57.16,56.15,6.666666666666667,1,1,0,0,0,7,4,1,521.5,1095447.3,312232.19,860039.75,0,0,0,3056.7842 +1617,2017,3548,3547,-9,-9,1,0,61,0,1,0,2,2,-9,0,4,7.6871333,7.7576966,5.5229449,4,-23,-44.847515,0,-9,-9,2021,9,0,25,25,1,0,0,9.3922319,9.3922319,0,0,0,0,0,0,0,0,1,1,0,0,5.4852133,57.16,56.15,41.36,39.55,8.333333333333334,1,1,0,0,10,7,4,1,521.5,1095447.3,312232.19,860039.75,0,0,0,3056.7842 +1617,2018,3549,-9,3548,3547,1,0,34,0,1,0,2,2,-9,0,4,8.1343927,8.1300306,0,0,0,-962.96381,0,2,2,2021,12,2,50,47,1,2,1,9.049489,9.049489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,291.5,101027.82,18960.697,130185.5,144918.27,0,1397.2294,1566.5446 +1617,2018,3550,-9,3549,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.25415,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,291.5,101027.82,18960.697,130185.5,144918.27,0,1397.2294,1566.5446 +1618,2019,3551,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,5.7453222,5.6173091,0,0,-1022.9506,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.857298,5.5872712,63.63,46.32,-9,-9,10,1,1,0,0,0,11,2,1,857,208898.11,85778.758,96473.398,0,0,0,1624.8392 +1619,2020,3552,3553,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,24,2,8.6587992,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.6,17.32,51.24,58.84,1.666666666666667,1,1,0,0,7,7,4,0,1270,173869.44,162179.45,0,0,7446.2954,0,1709.1715 +1619,2020,3553,3552,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.5067196,8.4647684,0,24,-2,14.580504,0,2,2,2021,12,0,52,49,1,0,0,9.992734,9.992734,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,44.6,17.32,8.333333333333334,1,1,0,0,14,7,4,0,1270,173869.44,162179.45,0,0,7446.2954,0,1709.1715 +1620,2021,3554,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.7281609,8.8459206,0,0,0,-918.2439,0,2,2,2021,10,2,44,45,1,2,0,11.410028,11.410028,.05,.05,0,0,0,0,0,0,0,0,0,7.1958742,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,1148,185167.55,142849.05,0,0,10406.204,0,2991.3362 +1621,2022,3555,3556,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.3228712,8.0994396,0,10,-5,17.476521,0,2,2,2021,9,0,83,48,1,0,0,4.7050838,4.7050838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.62,40.37,54.79,55.86,8.333333333333334,1,1,0,0,12,2,5,1,645.5,303378,151296.34,362284.38,185498.05,10820.719,15473.982,4670.2856 +1621,2022,3556,3555,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.1513348,9.3854418,0,10,5,8.9799738,0,3,3,2021,6,0,43,48,1,0,0,24.185789,24.185789,.05,.05,0,0,0,0,0,0,0,0,0,4.2744274,0,54.79,55.86,44.62,40.37,8.333333333333334,1,1,0,0,12,2,5,1,645.5,303378,151296.34,362284.38,185498.05,10820.719,15473.982,4670.2856 +1621,2023,3557,-9,3555,3556,1,0,25,0,0,0,1,1,-9,0,3,7.4300113,7.0768919,0,0,0,-832.12183,0,2,2,2021,11,0,22,23,1,0,1,7.536727,7.536727,.05,.05,0,0,0,0,0,0,0,0,0,1.8783382,0,42.22,56.11,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1679,-63861.266,28266.139,0,0,4884.8838,0,1127.8698 +1622,2024,3558,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.6157503,7.5232077,0,0,-811.8772,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.3692455,0,20.415709,0,1,1,0,5.949996,7.0773706,56.84,42.76,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,832,341765.97,33299.707,168544.33,0,0,0,1801.6033 +1623,2025,3559,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,5.426878,5.7699924,0,0,-1050.1068,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,1.6731827,0,20.323584,0,1,1,0,0,5.7368317,41.47,36.82,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,675,107295.77,0,49162.113,0,0,0,250.54942 +1624,2026,3560,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.33,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,48.58,27.63,-9,-9,8.333333333333334,1,1,0,0,8,6,1,1,1939,-46151.031,0,0,0,0,0,680.82867 +1625,2027,3561,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,3.8854208,3.9217753,0,0,-1033.4517,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.4453635,42.09,43.11,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1195,625912.19,93307.773,112518.78,0,0,0,896.31201 +1626,2028,3562,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.1506062,8.454648,0,0,0,-1056.4943,0,2,2,2021,14,2,44,40,1,2,0,10.117409,10.117409,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.86,46.88,-9,-9,6.666666666666667,1,1,0,0,12,5,4,0,382,-16402.887,-12137.161,103892.84,86734.055,0,0,1394.8767 +1627,2029,3563,3564,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.17834,7.8488069,0,7,-1,150.91986,0,-9,2,2021,6,0,44,48,1,0,0,9.5924129,9.5924129,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,38.48,40.76,8.333333333333334,1,1,0,0,7,4,4,1,1133.5,391760.75,289828.59,151351.13,0,8741.6426,0,1932.2729 +1627,2029,3564,3563,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.6300979,7.4648905,0,7,1,-68.317276,0,3,2,2021,15,5,45,48,1,5,0,4.2967167,4.2967167,0,0,0,0,0,0,0,0,0,0,0,0,0,38.48,40.76,54.2,57.49,8.333333333333334,1,1,0,0,7,4,4,1,1133.5,391760.75,289828.59,151351.13,0,8741.6426,0,1932.2729 +1627,2030,3565,-9,3564,-9,1,1,35,0,0,0,1,1,-9,0,5,8.3186598,8.2166147,0,0,0,-1017.7363,0,2,-9,2021,10,0,64,69,1,0,1,7.193954,7.193954,.05,.05,.05,0,0,0,0,0,0,0,0,2.6399157,0,57.06,57.76,-9,-9,10,1,1,0,0,8,4,4,1,394,193609.84,88681.484,113382.81,84572.867,0,0,1267.6869 +1627,2031,3566,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,7.4797764,7.3924508,0,0,0,-979.20831,0,-9,-9,2021,9,0,37,35,1,0,0,6.0494742,6.0494742,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,66.17,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,578,81477.313,-71761.938,0,0,0,1476.5966,647.31262 +1628,2032,3567,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,6.1645641,6.4476705,0,0,-1048.2705,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1877022,58.75,51.28,-9,-9,10,1,1,0,0,0,7,2,0,693,89456.852,87884.734,0,0,0,-165.68837,1747.715 +1629,2033,3568,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1124.6246,0,-9,-9,2021,9,0,0,39,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,1,1,2,12,1,0,732,20864.605,0,0,0,0,0,675.28223 +1630,2034,3569,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-924.60016,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.05,33,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,1066,147427.77,0,0,0,0,0,1179.5936 +1630,2035,3570,-9,3569,-9,1,1,32,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1040.9567,-9,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.3,28.34,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1498,-126632.69,0,0,0,0,0,480.45853 +1631,2036,3571,3572,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.9719248,9.23421,0,33,-2,32.492725,0,1,1,2021,11,0,30,24,1,0,0,33.594364,33.594364,.05,.05,0,0,0,0,0,7,0,0,0,0,0,49.46,56.91,54.77,55.87,8.333333333333334,1,1,0,0,9,9,5,1,1230,791069.5,107102.84,558774.31,72810.422,0,0,5791.9805 +1631,2036,3572,3571,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7626419,8.8222961,0,34,2,1.2424347,0,3,1,2021,10,2,50,50,1,2,0,16.682251,16.682251,.05,.05,.05,0,0,0,0,7,0,0,0,5.1240788,0,54.77,55.87,49.46,56.91,10,1,1,0,0,9,9,5,1,1230,791069.5,107102.84,558774.31,72810.422,0,0,5791.9805 +1632,2037,3573,3574,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.2643127,6.8501949,10,0,-83.032616,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7014112,6.2153764,57.87,47.65,54.77,55.87,8.333333333333334,1,1,0,0,0,10,2,1,781,435846,135719.73,224765.25,0,0,0,1425.1868 +1632,2037,3574,3573,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,6.8336043,6.7015748,10,9,-12.315422,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1320086,6.8674049,54.77,55.87,57.87,47.65,8.333333333333334,1,1,0,0,0,10,2,1,781,435846,135719.73,224765.25,0,0,0,1425.1868 +1633,2038,3575,-9,3578,3576,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.1568,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1633,2038,3576,3578,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.1139355,8.0261211,0,6,5,66.707436,0,2,2,2021,3,0,35,35,1,0,0,8.1743469,8.1743469,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,31.7,58.23,8.333333333333334,1,1,0,0,7,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1633,2038,3577,-9,3578,3576,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.1579,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1633,2038,3578,3576,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.3531857,7.6004448,0,6,-5,-80.391548,0,-9,-9,2021,19,7,18,18,1,7,0,12.073881,12.073881,0,0,0,0,0,0,0,0,1,1,0,0,0,31.7,58.23,51.14,60.45,8.333333333333334,4,2,0,0,7,11,3,1,499.5,194760.75,240863.98,0,0,9822.6816,0,2366.1294 +1634,2039,3579,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.0728254,6.234746,0,0,-968.89777,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.5220237,6.202733,41.36,34.01,-9,-9,5,1,1,0,0,0,11,2,1,523,647280.75,13811.595,584233.38,0,0,0,1510.5631 +1635,2040,3580,3581,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.7786131,8.0359955,56,1,-106.01346,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8217802,67.12,15.13,62.57,40.11,8.333333333333334,1,1,0,0,0,9,3,1,1731,133914.3,70761.797,0,0,7104.373,0,2883.9299 +1635,2040,3581,3580,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.2524939,5.9272265,56,-1,103.29391,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2547603,62.57,40.11,67.12,15.13,8.333333333333334,1,1,0,0,0,9,3,1,1731,133914.3,70761.797,0,0,7104.373,0,2883.9299 +1636,2041,3582,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,7.0530682,7.1792173,0,0,-1037.3536,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2692819,62.11,45.63,-9,-9,10,1,1,0,0,0,4,2,1,513,225778.64,-54510.152,254058.19,0,0,0,971.26709 +1637,2042,3583,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,7.0712757,7.3350153,6.0233879,0,0,-993.15533,0,2,2,2021,7,0,40,37,1,0,0,3.4499614,3.4499614,0,0,0,0,0,0,0,0,1,1,0,5.9720931,5.8890977,57.33,53.46,-9,-9,10,1,1,0,0,8,10,3,1,1256,-22211.525,181752.05,0,0,6535.1357,0,1397.7148 +1638,2043,3584,3585,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,8.476922,8.3830948,0,10,0,158.18829,0,2,2,2021,6,0,52,46,1,0,0,10.928816,10.928816,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.71,61.53,57.16,56.15,8.333333333333334,1,1,0,0,12,10,3,0,223.5,259735.06,202713.7,221595.44,189298.44,12828.879,3215.8406,2649.0342 +1638,2043,3585,3584,-9,-9,1,0,36,0,2,0,2,2,-9,1,4,0,0,0,10,0,-88.183922,0,2,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,48.71,61.53,8.333333333333334,1,1,0,0,0,10,3,0,223.5,259735.06,202713.7,221595.44,189298.44,12828.879,3215.8406,2649.0342 +1639,2044,3586,3587,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.7679663,7.024035,43,7,76.447983,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0024185,58.32,50.22,65.95,39.97,10,1,1,0,0,0,6,2,1,820.5,214243,158311.22,84167.82,0,0,0,2012.1104 +1639,2044,3587,3586,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,43,-7,76.837288,0,3,3,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.856853,0,65.95,39.97,58.32,50.22,3.333333333333333,1,1,0,0,4,6,2,1,820.5,214243,158311.22,84167.82,0,0,0,2012.1104 +1640,2045,3588,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.3471937,8.6863775,3.5332837,0,0,-976.44537,0,2,2,2021,16,5,50,45,1,5,0,11.975901,11.975901,.05,.05,0,0,0,0,0,0,0,0,0,3.7463808,0,37.92,53.03,-9,-9,3.333333333333333,1,1,0,0,8,6,5,0,2355,-79359.211,18863.631,0,0,0,0,2090.2598 +1641,2046,3589,3590,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,4.8868704,4.929544,10,7,14.547396,0,2,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0257311,5.0807157,36.61,17.55,48.38,49.66,3.333333333333333,1,1,0,0,0,11,2,0,279.5,27223.705,97456.422,0,0,0,0,2556.6113 +1641,2046,3590,3589,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,0,0,0,10,-7,-53.866627,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.38,49.66,36.61,17.55,5,1,1,0,0,0,11,2,0,279.5,27223.705,97456.422,0,0,0,0,2556.6113 +1642,2047,3591,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,2,8.6464853,8.6584206,5.5832977,0,0,-968.76294,0,2,2,2021,17,5,60,70,1,5,0,10.646666,10.646666,.05,.05,0,0,0,0,0,42,1,1,0,5.9006577,0,37.48,52.37,-9,-9,8.333333333333334,1,1,0,1,13,9,5,1,972.5,289123.16,49787.805,403954.72,156724.56,0,0,2101.2869 +1642,2047,3592,-9,3591,-9,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1000.0237,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,972.5,289123.16,49787.805,403954.72,156724.56,0,0,2101.2869 +1643,2048,3593,3594,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.977529,4.8439631,47,-2,-7.2650146,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7641335,4.7632079,57.09,46.7,60.52,53.2,8.333333333333334,1,1,0,0,0,4,2,1,636.5,906761.38,416351.88,269352.59,0,0,0,5181.4443 +1643,2048,3594,3593,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,4.9714403,5.1055455,7,2,28.291271,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3164907,4.7882528,60.52,53.2,57.09,46.7,6.666666666666667,1,1,0,0,0,4,2,1,636.5,906761.38,416351.88,269352.59,0,0,0,5181.4443 +1644,2049,3595,3596,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,7.7023807,7.6571412,0,40,-1,-90.564835,0,-9,-9,2021,9,0,40,40,1,0,0,8.1442003,8.1442003,.05,.05,0,0,0,0,0,0,0,0,0,0,0,64.96000000000001,43.19,57.16,56.15,8.333333333333334,1,1,0,0,8,2,3,1,351,458631.06,466051.84,121113.73,10226.573,3984.98,0,1591.3057 +1644,2049,3596,3595,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.2973661,7.4893408,0,39,1,25.737629,0,-9,-9,2021,6,0,18,18,1,0,0,8.2812157,8.2812157,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,64.96000000000001,43.19,10,1,1,0,0,9,2,3,1,351,458631.06,466051.84,121113.73,10226.573,3984.98,0,1591.3057 +1645,2050,3597,3598,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.6894417,8.7773228,0,18,-3,23.513895,0,2,1,2021,11,2,48,48,1,2,0,15.498036,15.498036,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.47,66.09,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,1,3067,349966.94,119376.33,292163.75,112868.1,-2172.9126,0,7516.8438 +1645,2050,3598,3597,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.532342,9.1497402,0,16,3,-5.14363,0,2,1,2021,11,0,40,40,1,0,0,28.940363,28.940363,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.47,66.09,10,1,1,0,0,14,12,5,1,3067,349966.94,119376.33,292163.75,112868.1,-2172.9126,0,7516.8438 +1646,2051,3599,3600,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.4548035,7.1137223,7,2,-13.042006,0,-9,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3975701,7.2479706,61.61,13.86,20.44,63.43,3.333333333333333,1,1,0,0,0,10,2,1,1050.5,337093.97,213313.66,67452.156,0,4638.3999,0,2164.0393 +1646,2051,3600,3599,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,7,-2,-38.09642,0,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,20.44,63.43,61.61,13.86,1.666666666666667,1,1,0,0,8,10,2,1,1050.5,337093.97,213313.66,67452.156,0,4638.3999,0,2164.0393 +1647,2052,3601,3602,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.768496,8.0770235,0,1,-2,-5.5189953,0,2,2,2021,10,0,38,38,1,0,0,6.9773421,6.9773421,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,58.47,50.22,8.333333333333334,1,1,0,0,5,2,5,1,1580.5,77711.227,-27858.266,198238.98,123046.97,4867.624,653.61932,3606.7637 +1647,2052,3602,3601,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.7985277,8.4576893,0,1,2,31.622519,-9,-9,-9,2021,7,0,37,0,1,0,0,17.214836,17.214836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,51.83,57.2,6.666666666666667,1,1,0,0,2,2,5,1,1580.5,77711.227,-27858.266,198238.98,123046.97,4867.624,653.61932,3606.7637 +1648,2053,3603,-9,3605,3604,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.79797,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1648,2053,3604,3605,-9,-9,1,1,28,1,2,0,2,2,-9,1,5,0,0,0,2,2,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.37,38.76,58.32,50.22,3.333333333333333,2,3,1,0,0,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1648,2053,3605,3604,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,2,-2,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,65.37,38.76,10,2,3,0,0,2,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1648,2053,3606,-9,3605,3604,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.6857,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,765.5,-57157.316,0,0,0,0,0,1051.5361 +1649,2054,3607,3608,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,50,0,-88.350662,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,.85311598,0,25.296692,0,1,1,0,4.3236899,0,48.43,27.63,61.43,48.88,8.333333333333334,1,1,0,0,0,9,3,1,799.5,889986.38,51608.836,234982.89,0,0,0,2760.6987 +1649,2054,3608,3607,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.0316458,7.5868287,50,0,-13.704636,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2794428,7.619329,61.43,48.88,48.43,27.63,8.333333333333334,1,1,0,0,2,9,3,1,799.5,889986.38,51608.836,234982.89,0,0,0,2760.6987 +1650,2055,3609,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.6478477,7.5435257,0,0,-994.38086,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9523578,7.7319164,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,604,289766.31,518815.31,0,0,0,0,868.19623 +1651,2056,3610,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3290615,8.279829,0,0,0,-922.71069,0,-9,-9,2021,12,2,35,35,1,2,0,12.503366,12.503366,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.29,49.12,-9,-9,8.333333333333334,2,3,0,0,5,8,4,0,990,74657.695,20304.727,0,0,0,0,1628.9313 +1652,2057,3611,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.3240047,7.0537062,0,0,-1062.5211,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1763139,36.93,41.13,-9,-9,5,1,1,0,0,7,1,3,1,605,1848732.3,0,826881.56,0,0,0,824.77429 +1653,2058,3612,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.0383768,7.911181,0,0,0,-981.49457,0,2,3,2021,11,0,33,33,1,2,0,10.997955,10.997955,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,3,4,0,0,9,8,4,0,1073,863439,412539.88,521576.19,43334.863,5372.2739,1425.7408,1254.1082 +1653,2059,3613,-9,3612,-9,1,0,20,0,0,0,2,2,1,0,4,7.4469204,7.6142998,0,0,0,-958.87585,-9,2,-9,2021,12,0,1,0,1,2,1,212.64252,212.64252,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,3,4,0,0,3,8,3,0,891,14542.098,-18952.684,0,0,0,0,689.55377 +1654,2060,3614,3616,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,8.4550552,8.3821239,0,7,0,64.929848,0,-9,-9,2021,13,2,16,16,1,2,0,31.618601,31.618601,.05,.05,0,0,0,0,0,0,0,0,0,1.9770429,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,5,4,5,1,464,312925.13,236818.61,0,0,0,0,4612.5137 +1654,2060,3615,-9,3614,3616,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.8561,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,464,312925.13,236818.61,0,0,0,0,4612.5137 +1654,2060,3616,3614,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.8893566,9.3316975,0,7,0,37.613285,0,1,1,2021,8,0,50,48,1,0,0,20.142479,20.142479,.05,.05,0,0,0,0,0,0,0,0,0,2.4001086,0,57.16,56.15,45.81,61.51,8.333333333333334,1,1,0,0,7,4,5,1,464,312925.13,236818.61,0,0,0,0,4612.5137 +1655,2061,3617,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,6.1470237,5.9923878,0,0,-1014.2704,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.563168,6.1871324,48.73,27.95,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1114,108099.56,31378.42,0,0,0,0,598.57678 +1656,2062,3618,3619,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6628213,7.5822906,35,7,-32.840958,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4328737,7.7122784,54.79,55.86,60.52,53.2,8.333333333333334,1,1,0,0,5,5,3,1,633,797821.63,510064.63,49472.621,0,0,0,3700.3062 +1656,2062,3619,3618,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.1487579,6.9288244,13,-7,13.990189,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0772715,6.839211,60.52,53.2,54.79,55.86,10,1,1,0,0,0,5,3,1,633,797821.63,510064.63,49472.621,0,0,0,3700.3062 +1657,2063,3620,3621,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.5690708,7.8621874,47,2,26.445332,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1914277,7.4110899,56.7,42.76,41.71,44.18,3.333333333333333,1,1,0,0,4,5,3,1,194,568334.75,486761.94,59998.527,0,0,0,2979.6792 +1657,2063,3621,3620,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-6.3645844,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9196048,0,41.71,44.18,56.7,42.76,6.666666666666667,1,1,0,0,0,5,3,1,194,568334.75,486761.94,59998.527,0,0,0,2979.6792 +1658,2064,3622,3623,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.829525,8.5003366,0,4,13,-25.723597,0,3,2,2021,11,0,50,40,1,0,0,11.44982,11.44982,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.36,51.57,54.37,54.8,1.666666666666667,1,1,0,0,13,12,5,1,1063,655449.25,302845.88,336728.66,46993.609,0,0,4971.2773 +1658,2064,3623,3622,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.7583704,8.8860445,5.3550243,4,-13,-93.844147,0,2,3,2021,13,0,35,35,1,2,0,19.862167,19.862167,.05,.05,0,0,0,0,0,0,1,1,0,0,5.5805845,54.37,54.8,55.36,51.57,8.333333333333334,1,1,0,0,13,12,5,1,1063,655449.25,302845.88,336728.66,46993.609,0,0,4971.2773 +1658,2065,3624,-9,3623,3622,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-970.8703,1,2,3,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.63,38.14,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,896,122754.41,0,0,0,0,0,0 +1659,2066,3625,3626,-9,-9,1,1,35,1,3,0,1,1,-9,0,4,8.6630802,8.6536236,0,10,0,-43.4533,0,-9,-9,2021,11,0,48,47,1,0,0,15.993307,15.993307,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.05,63.64,8.333333333333334,1,1,0,0,11,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3626,3625,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,8.4244289,8.4590683,0,10,0,-37.970551,0,2,2,2021,17,5,24,30,1,5,0,27.703743,27.703743,.05,.05,0,0,0,0,0,0,1,1,0,7.0537291,0,38.05,63.64,57.16,56.15,6.666666666666667,1,1,0,0,11,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3627,-9,3626,3625,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.5347,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3628,-9,3626,3625,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-967.47626,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1659,2066,3629,-9,3626,3625,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-898.22253,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,613.40002,98374.531,41751.75,239690.34,151169.47,31416.951,13422.633,4037.4934 +1660,2067,3630,3631,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,6.7370062,6.2465582,55,7,-156.31511,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,6.4968467,46.33,55.93,55.47,13.85,8.333333333333334,3,4,0,0,0,8,2,1,732,300051.88,-6184.4453,240691.2,0,0,0,1235.1125 +1660,2067,3631,3630,-9,-9,1,0,80,0,0,0,2,2,-9,0,1,0,0,0,5,-7,-62.511307,0,-9,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,11.858267,0,0,1,1,0,0,0,55.47,13.85,46.33,55.93,3.333333333333333,3,4,0,1,0,8,2,1,732,300051.88,-6184.4453,240691.2,0,0,0,1235.1125 +1661,2068,3632,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-988.16437,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8529549,0,51,46,-9,-9,8,1,1,0,0,0,5,2,1,289,0,0,0,0,0,0,1526.3861 +1661,2069,3633,-9,3632,-9,1,0,41,0,0,0,3,3,-9,0,4,7.8464327,7.5048704,0,0,0,-958.33685,0,3,-9,2021,21,8,39,40,1,8,0,7.9294415,7.9294415,0,0,0,0,0,0,0,27,1,1,0,0,0,36.72,59.86,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,1358,93686.484,0,0,0,0,0,1196.2501 +1662,2070,3634,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,5.924592,6.1179647,0,0,-981.73682,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8690789,0,0,1,1,0,0,6.0885301,66.62,13.15,-9,-9,10,1,1,0,0,0,7,2,1,494,140821.66,106105.84,0,0,0,0,1367.4484 +1663,2071,3635,3636,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.3442583,6.8343449,42,6,20.84384,0,2,3,2021,13,1,0,0,4,1,0,0,0,.05,.05,.05,1,0,13.377189,0,2,1,1,0,5.0789914,6.4389577,55.25,25.12,53.46,39.14,6.666666666666667,1,1,0,0,10,7,3,1,846.5,426543.81,301279.13,197228.03,0,0,-440.40167,1311.58 +1663,2071,3636,3635,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,6.9467425,6.9247327,0,44,-6,-60.474834,0,3,3,2021,14,4,13,16,1,4,0,8.9261923,8.9261923,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53.46,39.14,55.25,25.12,8.333333333333334,1,1,0,0,10,7,3,1,846.5,426543.81,301279.13,197228.03,0,0,-440.40167,1311.58 +1664,2072,3637,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.2108655,6.848412,0,0,-986.7981,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1705037,6.712007,57.06,57.76,-9,-9,10,1,1,0,0,10,13,2,1,726,299474.81,209093.89,89731.297,0,0,0,698.98315 +1665,2073,3638,3639,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.2192197,7.6950483,12,3,40.292255,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7379556,7.346694,55.2,49.4,57.87,53.19,10,1,1,0,0,9,11,2,1,1085.5,839346.56,493562.53,224845.03,0,0,0,2401.8384 +1665,2073,3639,3638,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,12,-3,-174.37733,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.87,53.19,55.2,49.4,10,1,1,0,0,0,11,2,1,1085.5,839346.56,493562.53,224845.03,0,0,0,2401.8384 +1666,2074,3640,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,3,0,0,0,0,0,-904.39514,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7876668,0,48,49,-9,-9,7,1,1,0,0,5,4,1,0,1013,0,0,0,0,0,0,1448.8679 +1666,2075,3641,-9,3640,-9,1,0,26,0,0,0,3,3,-9,1,3,0,0,0,0,0,-935.41687,0,3,-9,2021,11,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,39.89,54.92,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,205,-62264.879,0,0,0,0,0,224.99348 +1666,2076,3642,-9,3640,-9,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-918.22485,0,2,-9,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,3.333333333333333,1,1,1,1,0,4,1,0,1283,-60424.223,0,0,0,0,0,466.28281 +1667,2077,3643,3646,-9,-9,1,1,34,0,3,0,2,2,-9,0,3,8.0320644,7.9759398,0,11,5,-21.320374,0,-9,-9,2021,12,0,48,48,1,0,0,7.1556792,7.1556792,0,0,0,0,0,0,0,42,1,1,0,0,0,36.78,46.67,51.18,37.64,3.333333333333333,1,1,0,0,7,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1667,2077,3644,-9,3646,3643,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.4233,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1667,2077,3645,-9,3646,3643,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.36273,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1667,2077,3646,3643,-9,-9,1,0,29,0,3,0,3,3,-9,1,3,0,0,0,11,-5,-17.480192,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.18,37.64,36.78,46.67,8.333333333333334,1,1,0,0,0,13,2,0,543.5,-9069.376,0,0,0,0,0,2767.2061 +1668,2078,3647,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4290295,8.293335,0,0,0,-906.07874,0,3,3,2021,17,5,43,44,1,5,0,12.466717,12.466717,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.1,42.62,-9,-9,3.333333333333333,2,3,0,0,3,4,5,0,2974,-38472.625,-9294.5859,0,0,0,0,1762.942 +1668,2079,3648,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.5184727,7.4631863,0,0,0,-1102.3021,0,-9,-9,2021,14,2,21,27,1,2,0,10.786259,10.786259,0,0,0,0,0,0,0,74.5,0,0,0,0,0,36.86,59.86,-9,-9,3.333333333333333,2,3,0,0,5,4,3,0,378,-55946.801,0,0,0,0,0,-236.55768 +1669,2080,3649,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1076.8834,0,3,3,2021,12,0,0,21,4,0,0,0,0,0,0,0,1,0,0,4.1119466,0,1,1,0,0,0,65.05,33.57,-9,-9,5,1,1,0,0,10,13,1,0,1367,76727.008,0,0,0,0,0,608.44733 +1669,2081,3650,-9,3649,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3281841,8.1650906,0,0,0,-1052.4615,-9,3,3,2021,12,0,37,0,1,0,0,14.183423,14.183423,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,72,151875.38,-99498.758,128277.53,0,13282.693,0,1392.4479 +1669,2082,3651,-9,3649,-9,1,0,33,0,0,0,1,1,-9,0,4,8.0660267,8.0844316,0,0,0,-937.67114,0,3,3,2021,11,0,39,30,1,0,0,9.5970955,9.5970955,.05,.05,0,0,0,0,0,0,1,1,0,2.6920199,0,38.32,62.13,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,1281,-23530.459,-104705.65,99297.398,94392.977,0,0,917.91522 +1670,2083,3652,-9,3655,3653,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.0029,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1670,2083,3653,3655,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.4242945,9.1369276,0,7,0,12.694942,0,-9,-9,2021,9,0,40,40,1,1,0,25.09971,25.09971,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,53.98,45.34,8,1,1,0,0,1,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1670,2083,3654,-9,3655,3653,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.5579,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1670,2083,3655,3653,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3821816,7.6303139,0,16,0,-63.400063,0,2,2,2021,12,0,22,22,1,0,0,8.5314617,8.5314617,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,45.34,51,56,6.666666666666667,1,1,0,0,8,13,5,1,1374.25,112002.16,0,279835.72,79208.578,0,0,4068.2388 +1671,2084,3656,-9,3658,3657,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.5825,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,4,0,463.33334,525576.69,349164,240847.41,57263.988,0,10108.076,3166.49 +1671,2084,3657,3658,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.1463823,7.9399467,0,8,6,-43.105297,0,3,-9,2021,11,2,45,40,1,2,0,10.673003,10.673003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.54,56.37,56.01,27.43,6.666666666666667,4,2,0,0,9,4,4,0,463.33334,525576.69,349164,240847.41,57263.988,0,10108.076,3166.49 +1671,2084,3658,3657,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,8.5447674,8.1012735,0,8,-6,-61.70018,0,2,2,2021,9,1,37,40,1,1,0,15.571145,15.571145,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.01,27.43,35.54,56.37,8.333333333333334,1,1,0,0,7,4,4,0,463.33334,525576.69,349164,240847.41,57263.988,0,10108.076,3166.49 +1672,2085,3659,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1084.0211,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,238,123610.97,0,0,0,0,0,443.03165 +1673,2086,3660,3661,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.6422386,8.3834963,0,4,-1,39.358395,0,2,1,2021,9,0,45,50,1,0,0,13.724841,13.724841,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,39.99,55.83,8.333333333333334,1,1,0,0,10,6,5,1,340,-102957.95,54494.148,159982.59,141187.72,47072.75,0,3039.2175 +1673,2086,3661,3660,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.1306114,7.807302,0,4,1,-62.106606,0,-9,-9,2021,8,0,42,42,1,0,0,7.7707405,7.7707405,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.99,55.83,51.39,59.18,6.666666666666667,1,1,0,0,5,6,5,1,340,-102957.95,54494.148,159982.59,141187.72,47072.75,0,3039.2175 +1674,2087,3662,3663,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.8747711,6.8651891,0,40,-5,-114.96947,0,2,3,2021,12,0,12,12,1,0,0,7.8032579,7.8032579,0,0,0,0,0,0,0,42,1,0,1,0,0,56.94,43.99,59.62,35.76,6.666666666666667,1,1,0,0,7,10,4,0,1503.5,238679.28,-44325.52,298420.63,109920.89,0,1075.6189,3158.6311 +1674,2087,3663,3662,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.3121729,8.141346,0,11,5,-78.378723,0,2,2,2021,13,1,40,40,1,1,0,11.174582,11.174582,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.62,35.76,56.94,43.99,6.666666666666667,1,1,0,0,11,10,4,0,1503.5,238679.28,-44325.52,298420.63,109920.89,0,1075.6189,3158.6311 +1675,2088,3664,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.6137347,6.5044665,0,0,-877.86871,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5765462,6.4251437,64.96000000000001,40.38,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,2571,206273.06,21593.021,0,0,0,0,1352.4408 +1676,2089,3665,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.1570301,8.741622,0,0,0,-1033.0907,0,2,2,2021,13,2,30,38,1,2,0,28.466398,28.466398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,767,545414.63,213885,0,0,0,0,3032.9248 +1677,2090,3666,3667,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.1662016,6.4881015,9,-6,-73.685089,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0742249,6.4436154,52.64,36.51,59.04,48.6,8.333333333333334,1,1,0,0,0,13,2,1,162,1438447.9,659250.5,404474.44,0,0,0,1319.708 +1677,2090,3667,3666,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.3473725,6.8714838,9,6,-125.06285,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9047356,6.6685967,59.04,48.6,52.64,36.51,8.333333333333334,1,1,0,0,0,13,2,1,162,1438447.9,659250.5,404474.44,0,0,0,1319.708 +1678,2091,3668,3669,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.3341999,7.3440847,0,12,-7,-10.731716,0,-9,-9,2021,15,4,19,23,1,4,0,10.769128,10.769128,0,0,0,0,0,0,0,0,1,1,0,.13166212,0,45.91,59.89,54.97,47.63,1.666666666666667,1,1,0,0,12,7,5,1,215.33333,264779.81,-20594.984,452313.22,289532.53,2737.6526,813.89453,3506.3064 +1678,2091,3669,3668,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.8665962,9.0872326,0,12,7,-13.312158,0,-9,-9,2021,8,0,40,55,1,0,0,15.551289,15.551289,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.97,47.63,45.91,59.89,6.666666666666667,1,1,0,0,12,7,5,1,215.33333,264779.81,-20594.984,452313.22,289532.53,2737.6526,813.89453,3506.3064 +1678,2091,3670,-9,3668,3669,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.6889,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,215.33333,264779.81,-20594.984,452313.22,289532.53,2737.6526,813.89453,3506.3064 +1679,2092,3671,3672,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.0392184,7.240571,10,5,70.51844,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,5.7827735,7.412859,57.33,53.46,60.29,52.11,8.333333333333334,1,1,0,0,8,13,3,1,371,885796.75,443858.38,256541.13,0,1110.6777,0,2578.9014 +1679,2092,3672,3671,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.9933481,7.0310588,0,10,-5,49.56572,0,3,3,2021,6,0,18,20,1,0,0,8.7041636,8.7041636,0,0,0,0,0,0,0,0,0,0,0,6.210557,0,60.29,52.11,57.33,53.46,8.333333333333334,1,1,0,0,9,13,3,1,371,885796.75,443858.38,256541.13,0,1110.6777,0,2578.9014 +1679,2093,3673,-9,3672,3671,1,0,23,0,0,1,2,0,0,0,5,0,0,0,0,0,-1138.9941,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,1,5,13,1,1,966,108723.96,0,0,0,0,0,270.70258 +1680,2094,3674,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.470911,8.35079,0,0,0,-1209.8564,0,3,2,2021,15,5,16,20,1,5,0,21.197086,21.197086,.05,.05,0,0,0,0,0,2,1,1,0,3.9092116,0,52.81,38.08,-9,-9,5,1,1,0,0,7,8,4,1,243,418584.41,249767.95,248921.64,0,0,0,2050.4888 +1681,2095,3675,3678,-9,-9,1,0,27,1,2,0,2,2,-9,0,5,7.2452059,7.2535057,0,5,-1,-8.6839685,0,-9,-9,2021,24,10,26,26,1,10,0,8.4968185,8.4968185,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25,67.38,54.69,57.47,10,1,1,0,0,10,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1681,2095,3676,-9,3675,3678,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-829.93866,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1681,2095,3677,-9,3675,3678,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.71387,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1681,2095,3678,3675,-9,-9,1,1,28,1,2,0,2,2,-9,0,5,8.5434074,8.6632633,0,5,1,-42.436707,0,-9,-9,2021,6,0,60,44,1,0,0,8.782011,8.782011,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,25,67.38,10,1,1,0,0,9,6,4,1,884.75,-69567.516,44730.32,0,0,3196.6631,0,2587.2612 +1682,2096,3679,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.9707012,7.9182711,6.075737,0,0,-899.94507,0,3,2,2021,10,0,36,36,1,0,0,9.2485104,9.2485104,0,0,0,0,0,0,0,0,0,0,0,0,5.7984395,50.91,46.32,-9,-9,6.666666666666667,1,1,0,0,9,13,4,1,697,179402.66,0,143746.55,0,0,870.96045,1040.4248 +1683,2097,3680,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,7.1585665,7.4527764,0,0,0,-951.50153,-9,3,3,2021,8,1,28,0,1,1,0,5.0219331,5.0219331,0,0,0,0,0,0,0,0,1,1,0,0,0,59.39,21.77,-9,-9,5,4,2,0,0,9,8,3,0,456,187699.8,0,214922.94,0,0,0,874.2334 +1683,2098,3681,-9,3680,-9,1,0,25,0,0,0,2,2,-9,0,4,6.7378721,6.7095375,0,0,0,-1046.9155,-9,2,-9,2021,18,4,16,0,1,4,1,5.6536384,5.6536384,0,0,0,0,0,0,0,0,1,1,0,0,0,39.07,56.08,-9,-9,5,2,3,0,0,5,8,2,0,620,-23084.602,0,0,0,0,0,1406.1714 +1684,2099,3682,3683,-9,-9,1,0,30,0,0,0,1,1,-9,1,2,8.3170824,8.6229439,0,3,4,-40.832527,0,-9,-9,2021,11,1,46,45,1,1,0,12.575599,12.575599,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.61,48.17,52.13,57.22,8.333333333333334,1,1,0,0,2,7,5,1,1022.5,151740.97,94919.359,333112.56,216090.47,7877.0869,0,4042.4524 +1684,2099,3683,3682,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.5129957,8.4669666,0,3,-4,21.597366,0,1,2,2021,12,1,43,42,1,1,0,10.750485,10.750485,.05,.05,0,0,0,0,0,0,1,1,0,5.3661098,0,52.13,57.22,40.61,48.17,6.666666666666667,1,1,0,0,5,7,5,1,1022.5,151740.97,94919.359,333112.56,216090.47,7877.0869,0,4042.4524 +1685,2100,3684,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.1513872,8.2813311,0,0,0,-929.37207,-9,2,1,2021,3,0,38,0,1,0,0,11.26128,11.26128,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,14,9,4,0,1842,575771.75,333042.09,0,0,0,0,2405.2383 +1686,2101,3685,-9,3688,3687,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1059.3057,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1686,2101,3686,-9,3688,3687,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.1559,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1686,2101,3687,3688,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.124753,8.0049944,0,18,2,169.70398,0,2,2,2021,19,7,43,40,1,7,0,9.8602638,9.8602638,0,0,0,0,0,0,0,0,1,0,1,1.2289275,0,34.55,59.61,32.47,43.58,6.666666666666667,1,1,0,0,13,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1686,2101,3688,3687,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,0,0,0,19,-2,15.33515,0,2,1,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,.69131303,0,32.47,43.58,34.55,59.61,1.666666666666667,1,1,0,0,4,5,3,1,770,7502.8672,0,0,0,0,0,2037.1566 +1687,2102,3689,-9,-9,-9,1,0,102,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1029.2487,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,5.9705181,0,49.528442,0,1,1,0,0,0,56,42,-9,-9,8,1,1,0,0,0,4,1,1,481,-18620.51,0,0,0,0,0,840.04364 +1688,2103,3690,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,6.481607,6.4662652,5.8288093,0,0,-1111.8274,0,2,2,2021,6,0,6,10,1,0,0,8.9268541,8.9268541,0,0,0,0,0,0,0,0,1,1,0,5.7249398,5.7657604,60.12,54.8,-9,-9,10,1,1,0,0,12,13,2,1,1786,207926.45,72432.563,0,0,0,0,1601.8644 +1689,2104,3691,3692,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,5.5873332,5.6659698,23,19,67.514633,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5974631,0,48.45,57.49,43.43,41.1,5,2,3,0,0,5,8,2,0,432,2705442,478267.94,1846284.5,0,0,0,1521.511 +1689,2104,3692,3691,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,4.3720717,4.5071473,12,-19,-64.873802,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7850404,0,43.43,41.1,48.45,57.49,6.666666666666667,2,3,1,0,0,8,2,0,432,2705442,478267.94,1846284.5,0,0,0,1521.511 +1690,2105,3693,3694,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.68505,7.9904041,54,3,43.619606,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5204105,49.32,39.55,58.08,43.46,8.333333333333334,1,1,0,0,0,8,3,1,739.5,664364.13,316511.44,309697.56,0,0,0,2384.239 +1690,2105,3694,3693,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-173.16901,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.08,43.46,49.32,39.55,8.333333333333334,1,1,0,0,0,8,3,1,739.5,664364.13,316511.44,309697.56,0,0,0,2384.239 +1691,2106,3695,3696,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.6307325,8.9161863,0,9,1,6.5936661,0,3,2,2021,10,0,50,45,1,0,0,11.949894,11.949894,.05,.05,0,0,0,0,0,0,0,0,0,6.051487,0,53.21,39.5,47.06,36.87,5,1,1,0,0,10,4,5,1,1011,441646.31,125877.49,307829.06,0,0,0,4040.7383 +1691,2106,3696,3695,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.3430281,8.1507607,0,9,-1,70.297638,0,3,3,2021,12,3,22,40,1,3,0,20.624304,20.624304,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.06,36.87,53.21,39.5,8.333333333333334,1,1,0,0,10,4,5,1,1011,441646.31,125877.49,307829.06,0,0,0,4040.7383 +1692,2107,3697,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-951.20563,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3423123,0,57.16,56.15,-9,-9,10,1,1,0,0,9,4,1,0,1050,46206.77,0,84109.578,10559.718,0,0,-114.40248 +1693,2108,3698,-9,3701,3699,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-997.02209,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2108,3699,3701,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.8528309,8.7244205,7.6242466,3,5,38.301361,0,3,2,2021,10,0,42,39,1,0,0,16.273653,16.273653,.05,.05,.05,0,0,0,0,0,1,1,0,8.0935221,0,57.16,56.15,48.87,58.55,10,1,1,0,0,12,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2108,3700,-9,3701,3699,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.15643,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2108,3701,3699,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3115926,7.0056782,0,3,-5,49.46175,0,2,2,2021,12,0,20,20,1,0,0,10.12912,10.12912,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,10,1,1,0,0,8,9,5,0,1658.75,793299.75,228262,389365.16,34550.406,2550.8469,479.01855,4373.1479 +1693,2109,3702,-9,3701,3699,1,0,19,0,2,0,2,2,-9,0,3,8.1710024,7.7839246,0,0,0,-918.47229,0,2,2,2021,17,4,65,-9,1,4,1,6.3119221,6.3119221,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.04,33.93,-9,-9,5,1,1,0,0,2,9,4,0,540,177700.06,58661.961,0,0,13996.758,0,2746.269 +1694,2110,3703,3704,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.8442879,6.503521,53,0,25.527187,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,9.3720465,0,0,1,1,0,0,7.074718,65.54000000000001,33.23,58.68,36.29,8.333333333333334,1,1,0,0,4,6,4,1,1989,1072764.8,516466.94,224598.92,0,4500.6113,0,3702.9424 +1694,2110,3704,3703,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.4088469,7.8069324,53,0,-57.443714,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2032051,58.68,36.29,65.54000000000001,33.23,10,1,1,0,0,0,6,4,1,1989,1072764.8,516466.94,224598.92,0,4500.6113,0,3702.9424 +1695,2111,3705,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2033892,8.1738186,1.9505231,0,0,-923.85101,0,3,3,2021,13,2,39,39,1,2,0,11.896375,11.896375,.05,.05,0,0,0,0,0,0,0,0,0,0,1.8848042,48.54,54.5,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,1218,66203.977,116508.75,111694.47,40113.535,-849.8208,0,2080.8567 +1695,2112,3706,-9,-9,3705,1,1,31,0,0,0,2,2,-9,0,3,7.6398568,7.5360432,0,0,0,-1052.8961,0,-9,3,2021,15,3,39,39,1,3,1,7.2835083,7.2835083,.05,.05,0,0,0,0,0,0,0,0,0,5.1150355,0,34.22,59.96,-9,-9,5,1,1,0,0,11,2,3,1,207,66800.875,18420.848,0,0,0,0,758.45557 +1696,2113,3707,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.8785524,7.5492263,0,0,-1086.0808,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5250201,7.9092731,65.37,35.92,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,516,370189.19,312682.88,66907.539,64152.641,0,0,433.20435 +1697,2114,3708,3709,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,7.474762,8.5103054,8.1582479,55,1,78.410149,0,3,3,2021,9,0,23,22,1,0,0,9.0544996,9.0544996,0,0,0,1,0,0,0,74.5,1,1,0,0,8.036952,55.36,51.57,52.21,15.52,8.333333333333334,1,1,0,0,10,2,4,1,1242,628987.88,242633.16,192655.94,0,0,-1281.877,3287.6147 +1697,2114,3709,3708,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,55,-1,137.01279,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,13.331369,0,0,1,1,0,0,0,52.21,15.52,55.36,51.57,6.666666666666667,1,1,0,0,0,2,4,1,1242,628987.88,242633.16,192655.94,0,0,-1281.877,3287.6147 +1698,2115,3710,3711,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.0168328,5.2983913,4,-8,211.92372,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0607014,46.05,35.83,52.99,30.14,6.666666666666667,1,1,0,0,0,9,2,1,809.5,423336.81,4599.3828,287457.13,0,0,0,2328.1309 +1698,2115,3711,3710,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,5.2663293,5.0695848,4,8,94.570953,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,4.8812842,5.144207,52.99,30.14,46.05,35.83,10,1,1,0,0,0,9,2,1,809.5,423336.81,4599.3828,287457.13,0,0,0,2328.1309 +1699,2116,3712,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.8439655,8.0912428,0,0,0,-1016.9019,0,1,2,2021,15,6,40,36,1,6,0,6.6725774,6.6725774,0,0,0,0,0,0,0,7,0,0,0,0,0,45.79,52.25,-9,-9,6.666666666666667,1,1,0,0,13,8,3,1,161,100084.13,116145.05,0,0,0,0,1672.6434 +1700,2117,3713,3714,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.9176178,7.611763,15,-2,33.548237,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.4192038,54.37,54.8,50.85,49.73,8.333333333333334,1,1,0,0,9,7,3,1,633,1884637.5,-8693.5068,359615.88,0,0,0,1262.7347 +1700,2117,3714,3713,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,5.8050847,5.9571276,15,2,54.365383,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.3221951,5.9025154,50.85,49.73,54.37,54.8,8.333333333333334,1,1,0,0,2,7,3,1,633,1884637.5,-8693.5068,359615.88,0,0,0,1262.7347 +1701,2118,3715,-9,3716,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1205.3054,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,583.33331,45264.664,0,0,0,0,0,1263.4652 +1701,2118,3716,-9,-9,-9,1,0,30,0,2,0,2,2,-9,1,3,0,0,0,0,0,-933.0816,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.09,39.67,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,583.33331,45264.664,0,0,0,0,0,1263.4652 +1701,2118,3717,-9,3716,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.4063,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,1,0,583.33331,45264.664,0,0,0,0,0,1263.4652 +1702,2119,3718,3719,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.0195341,8.1356974,11,6,82.228294,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5075498,7.984911,48.87,58.55,60.98,33.27,8.333333333333334,1,1,0,0,11,2,5,1,1033.5,933126.69,540756.88,435371.5,57021.012,3115.9094,0,4135.5732 +1702,2119,3719,3718,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.8209124,8.8544731,0,33,-6,.89062744,0,1,1,2021,8,1,37,37,1,1,0,22.038792,22.038792,0,0,0,0,0,0,0,0,0,0,0,0,0,60.98,33.27,48.87,58.55,8.333333333333334,1,1,0,0,13,2,5,1,1033.5,933126.69,540756.88,435371.5,57021.012,3115.9094,0,4135.5732 +1702,2120,3720,-9,3719,3718,1,0,27,0,0,0,1,1,-9,0,4,8.8904514,8.9133158,0,0,0,-921.44696,-9,2,2,2021,7,0,48,0,1,0,1,14.297483,14.297483,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,390,73049.227,-15904.759,0,0,0,1207.0708,1746.8473 +1703,2121,3721,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,7.9711185,8.1269569,0,0,-975.22906,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1430402,8.1128569,53.6,36.52,-9,-9,8.333333333333334,1,1,0,0,12,4,4,0,238,955821.75,801984,179265.55,0,0,0,1984.3674 +1704,2122,3722,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,5.4859252,5.6814761,0,0,-1086.005,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,2.4287045,0,0,1,1,0,7.3960919,5.1984334,52,45,-9,-9,8,1,1,0,0,0,11,2,0,403,140049.2,0,173682.7,0,0,0,746.23755 +1705,2123,3723,-9,3725,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.7037,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1100,-8663.3398,0,0,0,16921.807,5027.8203,2533.9561 +1705,2123,3724,-9,3725,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.00201,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,1100,-8663.3398,0,0,0,16921.807,5027.8203,2533.9561 +1705,2123,3725,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,7.6572733,7.872097,3.9511127,0,0,-982.03741,0,2,2,2021,6,0,30,0,1,0,0,7.8755527,7.8755527,0,0,0,0,0,0,0,0,1,1,0,4.4995418,0,51.41,56.15,-9,-9,8.333333333333334,3,4,0,0,3,8,3,0,1100,-8663.3398,0,0,0,16921.807,5027.8203,2533.9561 +1706,2124,3726,-9,3728,3730,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.7555,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3727,-9,3728,3730,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1043.9482,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3728,3730,-9,-9,1,0,27,1,3,0,2,2,0,0,4,0,0,0,6,-5,-.69832689,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,5,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3729,-9,3728,3730,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-970.98279,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1706,2124,3730,3728,-9,-9,1,1,32,1,3,0,1,1,-9,0,5,7.9135942,8.0094309,0,6,5,-9.3732872,0,1,1,2021,7,0,33,60,1,0,0,8.7584848,8.7584848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,3,4,0,1,6,7,2,0,592.40002,-46811.785,11555.203,0,0,0,13029.399,3709.7458 +1707,2125,3731,3732,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.3915029,7.4850616,38,-5,-102.08853,0,2,-9,2021,9,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5085831,57.33,53.46,43.89,55.28,8.333333333333334,1,1,1,0,10,11,4,1,316,329110.66,0,120120.13,0,0,0,2367.8516 +1707,2125,3732,3731,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.9135165,8.0461855,5.9370317,37,5,-93.60434,0,3,3,2021,8,0,37,37,1,0,0,9.0754471,9.0754471,0,0,0,0,0,0,0,0,0,0,0,0,5.9032125,43.89,55.28,57.33,53.46,8.333333333333334,1,1,0,0,8,11,4,1,316,329110.66,0,120120.13,0,0,0,2367.8516 +1708,2126,3733,3734,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.743556,7.6635923,0,6,0,82.611107,0,-9,-9,2021,24,11,49,45,1,11,0,5.0603504,5.0603504,0,0,0,0,0,0,0,7,0,0,0,0,0,35.2,50.61,39.08,47.28,1.666666666666667,1,1,0,0,9,1,4,1,594.5,744499.38,-54835.551,178457.72,64948.773,0,0,2092.7212 +1708,2126,3734,3733,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,7.594821,7.8100891,0,6,0,-185.64919,0,2,2,2021,12,0,20,20,1,0,0,12.18438,12.18438,0,0,0,0,0,0,0,7,0,0,0,0,0,39.08,47.28,35.2,50.61,3.333333333333333,1,1,0,0,9,1,4,1,594.5,744499.38,-54835.551,178457.72,64948.773,0,0,2092.7212 +1709,2127,3735,3736,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.1173048,7.3380122,0,6,7,67.514519,0,2,-9,2021,10,0,35,8,1,0,0,4.7729516,4.7729516,0,0,0,0,0,0,0,0,1,1,0,0,0,54.7,46.42,53,57,6.666666666666667,1,1,0,0,8,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1709,2127,3736,3735,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,7.5579133,7.4968605,0,6,-7,-63.641815,0,-9,-9,2021,12,0,30,32,1,0,0,6.6853108,6.6853108,0,0,0,0,0,0,0,0,1,1,0,0,0,53,57,54.7,46.42,8.333333333333334,1,1,0,0,7,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1709,2127,3737,-9,3736,3735,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-910.50116,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1709,2127,3738,-9,3736,3735,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.7474,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,4,3,1,1619.25,30808.039,0,0,0,2860.5376,0,2663.4753 +1710,2128,3739,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.8929644,9.2144632,7.9479527,0,0,-1065.4359,0,-9,-9,2021,6,0,96,40,1,0,0,7.2426085,7.2426085,.05,.05,0,0,0,0,0,0,1,1,0,6.3781857,8.0267658,54.1,50.73,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,1580,100.40409,-142313.92,0,0,0,0,3559.8733 +1711,2129,3740,3741,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.1980124,8.0661182,0,34,1,-93.095222,-9,3,3,2021,7,0,35,0,1,0,0,6.8649912,6.8649912,.05,.05,0,0,0,0,0,0,0,0,0,1.7996235,0,54.1,50.73,57.33,53.46,10,1,1,0,0,9,2,4,1,944,661191.31,636127.63,158683,0,0,0,1901.5105 +1711,2129,3741,3740,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.0557737,8.4346075,7.2463956,34,-1,-201.40739,-9,2,2,2021,7,0,22,0,1,0,0,15.284191,15.284191,.05,.05,0,0,0,0,0,0,0,0,0,2.8143733,7.4545012,57.33,53.46,54.1,50.73,8.333333333333334,1,1,0,0,9,2,4,1,944,661191.31,636127.63,158683,0,0,0,1901.5105 +1712,2130,3742,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3709631,8.814599,0,0,0,-952.91766,0,1,1,2021,8,0,25,35,1,0,0,21.672441,21.672441,.05,.05,0,0,0,0,0,0,0,0,0,4.2445941,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,614,-143358.41,-13612.968,0,0,0,0,1943.5143 +1713,2131,3743,3744,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,0,0,0,2,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,98.518059,0,0,1,1,0,0,0,34.94,27.47,52,48,5,1,1,0,0,0,7,1,1,243,-37910.598,0,163031.91,152429.22,0,0,1355.5012 +1713,2131,3744,3743,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,7,0,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7327638,0,52,48,34.94,27.47,7,1,1,0,0,0,7,1,1,243,-37910.598,0,163031.91,152429.22,0,0,1355.5012 +1714,2132,3745,-9,3746,3747,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.6281,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,4,1,1229.6666,1919950.5,1919445.5,322557.44,131740.69,20783.541,2468.3225,4532.9082 +1714,2132,3746,3747,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,7.3827505,7.1193328,0,3,8,91.876801,0,2,3,2021,7,0,22,0,1,0,0,10.647399,10.647399,.05,.05,0,0,0,0,0,0,1,1,0,8.0297403,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,1,1229.6666,1919950.5,1919445.5,322557.44,131740.69,20783.541,2468.3225,4532.9082 +1714,2132,3747,3746,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.94485,8.9804182,0,3,-8,66.776443,0,-9,-9,2021,6,0,40,40,1,0,0,19.430983,19.430983,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,2,6,4,1,1229.6666,1919950.5,1919445.5,322557.44,131740.69,20783.541,2468.3225,4532.9082 +1715,2133,3748,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1112.1454,0,3,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.21,35.62,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,6849,231029.39,0,0,0,1932.941,809.56921,2280.5896 +1716,2134,3749,-9,3751,3752,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1155.6438,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1716,2134,3750,-9,3751,3752,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3851,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1716,2134,3751,3752,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.9738398,9.0400915,0,10,-14,-41.232201,0,1,2,2021,7,2,48,42,1,2,0,26.562286,26.562286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.91,56.22,50.23,49.8,10,1,1,0,0,6,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1716,2134,3752,3751,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.8046579,8.9199305,0,10,14,27.759436,0,-9,-9,2021,9,0,37,46,1,0,0,19.552675,19.552675,.05,.05,.05,0,0,0,0,0,0,0,0,4.8301592,0,50.23,49.8,54.91,56.22,8.333333333333334,1,1,0,0,5,5,5,1,351.75,2731394.8,1900159.1,429289.31,0,8804.9297,0,5555.8477 +1717,2135,3753,3754,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,6.1835299,6.3213644,3.5892928,24,-2,-92.709373,0,-9,-9,2021,6,0,20,20,1,0,0,2.4474034,2.4474034,0,0,0,0,0,0,0,0,1,1,0,3.2494681,3.8473556,63.41,39.7,58.47,50.22,10,1,1,0,0,8,7,2,1,736.5,503834.75,122579.84,201108.03,0,0,0,1929.8563 +1717,2135,3754,3753,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.7835584,7.1760664,25,2,-43.703201,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9095006,6.8354673,58.47,50.22,63.41,39.7,8.333333333333334,1,1,0,0,6,7,2,1,736.5,503834.75,122579.84,201108.03,0,0,0,1929.8563 +1718,2136,3755,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.3473692,7.9191566,5.1786027,0,0,-972.27435,0,2,3,2021,14,4,32,36,1,4,0,6.7574034,6.7574034,0,0,0,0,0,0,0,0,0,0,0,5.0393486,0,39.99,55.83,-9,-9,3.333333333333333,3,4,0,1,8,8,3,0,496,573578.06,0,374750.25,0,6917.9971,0,995.89978 +1719,2137,3756,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5073423,5.7109413,0,0,-817.39642,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.5804243,61.88,44.54,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,868,154149.45,0,136364.69,0,0,0,-1.73195 +1719,2138,3757,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-947.51642,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.2783833,0,0,1,1,0,0,0,48.82,28.85,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,189,-114562.97,0,72075.047,0,0,0,1031.5479 +1720,2139,3758,3759,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.9793735,7.9524279,0,11,2,82.16877,0,3,2,2021,14,3,27,27,1,3,0,11.368954,11.368954,0,0,0,0,0,0,0,0,0,0,0,0,0,50.93,54.77,58.3,52.91,6.666666666666667,1,1,0,0,12,9,4,1,541.33331,579190.5,160445.84,440654.22,34081.453,0,0,3226.842 +1720,2139,3759,3758,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,8.4233608,8.1972532,0,11,-2,-66.126091,-9,-9,-9,2021,8,0,53,0,1,0,0,8.6414261,8.6414261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,50.93,54.77,8.333333333333334,1,1,0,0,13,9,4,1,541.33331,579190.5,160445.84,440654.22,34081.453,0,0,3226.842 +1720,2139,3760,-9,3758,3759,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.2911,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,541.33331,579190.5,160445.84,440654.22,34081.453,0,0,3226.842 +1721,2140,3761,-9,3762,-9,1,1,60,0,0,0,1,1,-9,1,2,0,0,0,0,0,-978.43866,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,36.92,38.3,-9,-9,0,1,1,0,1,0,11,1,1,675,382207.75,18568.51,206678.67,0,0,0,0 +1721,2141,3762,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-984.50427,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.75,21.54,-9,-9,0,1,1,0,1,0,11,1,1,413,196770.55,0,70780.961,0,0,0,1382.2684 +1722,2142,3763,3764,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.0640955,8.1794891,0,21,9,-125.22021,0,2,2,2021,14,2,38,48,1,2,0,10.828873,10.828873,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.41,37.25,46.49,45.98,6.666666666666667,2,3,0,1,12,8,3,1,2103.5,299674.72,42455.691,284557.19,94835.734,0,0,2110.8284 +1722,2142,3764,3763,-9,-9,1,0,37,0,2,0,3,3,-9,0,3,0,0,0,12,0,97.054047,0,2,2,2021,14,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.49,45.98,45.41,37.25,8.333333333333334,2,3,1,1,1,8,3,1,2103.5,299674.72,42455.691,284557.19,94835.734,0,0,2110.8284 +1723,2143,3765,3766,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4150572,8.7327805,0,25,-3,90.915367,-9,3,3,2021,6,0,37,0,1,0,0,16.654934,16.654934,0,0,0,0,0,0,0,0,0,0,0,2.3726718,0,52.04,51.55,57.16,56.15,1.666666666666667,1,1,0,0,13,4,5,1,542,421913.84,215105.16,540589.25,262911.5,51640.953,0,4983.4766 +1723,2143,3766,3765,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8681602,8.4736528,0,24,3,85.53714,-9,2,2,2021,8,0,40,0,1,0,0,26.580088,26.580088,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,52.04,51.55,8.333333333333334,1,1,0,0,12,4,5,1,542,421913.84,215105.16,540589.25,262911.5,51640.953,0,4983.4766 +1723,2144,3767,-9,3765,3766,1,1,21,0,0,0,2,2,-9,0,3,7.8468385,8.294425,0,0,0,-1156.4329,-9,2,2,2021,5,0,40,0,1,0,1,7.3500962,7.3500962,0,0,0,0,0,0,0,0,0,0,0,.53372377,0,54.62,53.53,-9,-9,1.666666666666667,1,1,0,0,13,4,4,1,757,12604.323,0,0,0,0,0,1905.1721 +1723,2145,3768,-9,3765,3766,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-938.40155,-9,2,2,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0567617,0,30.77,64.34,-9,-9,1.666666666666667,1,1,0,0,2,4,1,1,1352,-149803.13,0,0,0,0,0,-142.71815 +1724,2146,3769,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1727819,8.2496109,6.1172204,0,0,-1001.0687,0,3,3,2021,9,0,35,40,1,0,0,13.279882,13.279882,0,0,0,0,0,0,0,0,1,1,0,0,6.0105381,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,324,115675.76,0,80824.547,0,0,0,2129.6729 +1725,2147,3770,-9,3773,3772,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.8278,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2147,3771,-9,3773,3772,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.422,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2147,3772,3773,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.5465689,8.3273296,0,24,1,44.98724,0,3,3,2021,12,0,46,45,1,0,0,14.134471,14.134471,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.71,64.88,40.49,47.75,6.666666666666667,1,1,0,0,9,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2147,3773,3772,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1705208,8.0617952,0,26,-1,174.03217,0,1,3,2021,5,0,37,37,1,0,0,11.153075,11.153075,0,0,0,0,0,0,0,0,1,1,0,0,0,40.49,47.75,29.71,64.88,8.333333333333334,1,1,0,0,7,2,4,0,255.75,227540.67,90732.891,240176.25,185259.3,1611.009,0,3558.3206 +1725,2148,3774,-9,3773,3772,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-851.9588,-9,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,2,1,0,855,0,0,0,0,0,0,0 +1725,2149,3775,-9,3773,3772,1,0,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1084.5166,-9,2,1,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.65,44.85,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,2487,0,0,0,0,0,0,-112.60229 +1726,2150,3776,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,8.1498823,8.3135672,0,0,-1102.0776,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1578684,8.1526442,43.57,24.7,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,2496,798519.44,647221.44,193327.03,0,0,0,2131.2073 +1727,2151,3777,-9,3778,3779,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.10309,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,1109.3334,94797.461,34640.176,0,0,0,0,1633.2627 +1727,2151,3778,3779,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,6.7893205,6.8281941,0,2,-2,-36.955402,0,-9,-9,2021,16,3,16,16,1,3,0,6.4012237,6.4012237,0,0,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,35.56,52.41,6.666666666666667,1,1,0,0,1,12,3,0,1109.3334,94797.461,34640.176,0,0,0,0,1633.2627 +1727,2151,3779,3778,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.8310404,7.9576325,0,2,2,2.522089,0,-9,-9,2021,28,10,33,34,1,10,0,8.2897558,8.2897558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.56,52.41,43.6,51.61,5,1,1,0,0,8,12,3,0,1109.3334,94797.461,34640.176,0,0,0,0,1633.2627 +1728,2152,3780,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4045324,8.5811272,0,0,0,-990.56171,0,2,3,2021,9,0,37,36,1,0,0,12.914615,12.914615,0,0,0,0,0,0,0,0,0,0,0,4.7100487,0,38.51,48.9,-9,-9,3.333333333333333,1,1,0,0,7,4,5,1,828,26405.434,201374.03,139085.11,168448.53,0,0,1591.4115 +1729,2153,3781,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.9312863,5.8500004,0,0,-1034.9512,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,.61087769,0,0,1,1,0,0,6.0821757,35.79,37.38,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,280,218329.75,115587.84,72238.531,0,0,0,1409.5116 +1730,2154,3782,-9,3784,3785,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.11487,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1730,2154,3783,-9,3784,3785,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.4425,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1730,2154,3784,3785,-9,-9,1,0,31,0,2,0,1,1,-9,0,3,7.8791194,7.7153678,0,11,-3,37.161831,0,2,2,2021,9,0,24,24,1,0,0,10.383981,10.383981,0,0,0,0,0,0,0,0,1,1,0,1.3676097,0,62,41.73,54.37,54.8,8.333333333333334,1,1,0,0,6,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1730,2154,3785,3784,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.579422,8.4242306,0,12,3,-53.168251,0,2,2,2021,10,0,56,62,1,0,0,9.6594181,9.6594181,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.37,54.8,62,41.73,8.333333333333334,1,1,0,0,8,11,4,1,573.5,-51741.68,142090.08,105829.74,138253,0,0,2598.9602 +1731,2155,3786,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,6.7948074,7.1956406,0,0,-1084.4723,-9,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,6.2519574,0,66.589096,0,1,1,0,5.4965448,7.1251502,27.2,27.24,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,729,-5144.6812,191563.25,0,0,0,0,2372.998 +1732,2156,3787,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.5905895,9.6945963,0,0,0,-1005.1572,0,1,2,2021,13,3,40,55,1,3,0,41.999191,41.999191,0,0,0,0,0,0,0,0,0,0,0,6.2402768,0,33.49,64.26000000000001,-9,-9,3.333333333333333,1,1,0,0,13,11,5,0,882,70593.898,0,0,0,0,0,12358.336 +1733,2157,3788,3789,-9,-9,1,1,32,0,1,0,1,1,-9,0,5,9.2106438,9.1135559,0,8,1,-9.97509,0,2,2,2021,6,0,62,68,1,0,0,14.517066,14.517066,.05,.05,0,0,0,0,0,0,1,1,0,1.3465884,0,56.47,59.4,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,0,1393.3334,548057.56,-10030.008,100081.02,32501.449,6670.2754,3498.4404,3326.302 +1733,2157,3789,3788,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.6976342,7.8798838,0,8,-1,13.961921,0,2,2,2021,6,0,27,27,1,0,0,10.836921,10.836921,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.47,59.4,10,1,1,0,0,10,4,5,0,1393.3334,548057.56,-10030.008,100081.02,32501.449,6670.2754,3498.4404,3326.302 +1733,2157,3790,-9,3789,3788,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.7242,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,1393.3334,548057.56,-10030.008,100081.02,32501.449,6670.2754,3498.4404,3326.302 +1734,2158,3791,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.7472305,8.9618597,0,0,0,-977.7962,0,3,-9,2021,0,0,53,53,1,0,0,14.263228,14.263228,.05,.05,0,0,0,0,0,0,0,0,0,3.5938346,0,59.43,58.05,-9,-9,10,2,3,0,0,11,8,5,0,384,1398773.3,1449831.9,0,0,0,6254.4395,2929.7219 +1734,2159,3792,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.1697969,9.4992085,0,0,0,-1012.8741,0,2,2,2021,10,1,53,53,1,1,0,19.9277,19.9277,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,11,8,5,0,643,255266.72,-54428.113,360480.94,64107.977,0,0,4906.6807 +1734,2160,3793,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.6130209,8.3976116,0,0,0,-1053.7048,0,3,3,2021,21,6,42,45,1,6,0,15.154579,15.154579,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.02,53.64,-9,-9,8.333333333333334,2,3,0,0,11,8,5,0,1458,534797.38,231431.88,266734,150321.5,0,0,2193.7444 +1734,2161,3794,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8627357,8.8586588,0,0,0,-985.96973,0,2,2,2021,10,0,40,40,1,0,0,17.825525,17.825525,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,10,8,5,0,108,575257.81,95328.461,649562.56,257854.94,11231.396,0,2825.4055 +1735,2162,3795,-9,3796,3797,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-986.26508,-9,2,1,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.36,59.26,-9,-9,1.666666666666667,1,1,0,0,0,13,4,1,660,2200739.8,2026886.5,205975.22,75035.766,948.06964,0,3894.0266 +1735,2162,3796,3797,-9,-9,1,0,50,0,2,0,2,2,-9,0,2,7.3105946,7.4336672,0,29,0,-35.450584,0,2,2,2021,12,1,18,20,1,1,0,10.497155,10.497155,.05,.05,0,0,0,0,0,2,1,1,0,0,0,53.56,36.43,45.32,54.77,8.333333333333334,1,1,0,0,8,13,4,1,660,2200739.8,2026886.5,205975.22,75035.766,948.06964,0,3894.0266 +1735,2162,3797,3796,-9,-9,1,1,59,0,2,0,1,1,-9,0,3,8.8982944,9.2128429,0,29,9,-11.487648,0,2,2,2021,16,5,42,45,1,5,0,23.607718,23.607718,.05,.05,0,0,0,0,0,0,1,1,0,4.0467539,0,45.32,54.77,53.56,36.43,8.333333333333334,1,1,0,0,8,13,4,1,660,2200739.8,2026886.5,205975.22,75035.766,948.06964,0,3894.0266 +1735,2163,3798,-9,3796,3797,1,0,24,0,2,0,2,2,0,0,2,0,0,0,0,0,-976.59125,-9,2,1,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.95,49.79,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,339.5,82528.539,0,0,0,3813.6733,0,160.08023 +1735,2163,3799,-9,3798,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.23621,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,1,339.5,82528.539,0,0,0,3813.6733,0,160.08023 +1735,2164,3800,-9,3796,3797,1,0,22,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1014.5015,0,2,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,1,0,1,13,1,1,873,6997.6841,0,0,0,0,0,134.74313 +1736,2165,3801,-9,3802,3803,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.88104,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1736,2165,3802,3803,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.5922031,8.6993685,0,10,-4,-68.794739,0,2,2,2021,5,0,28,30,1,0,0,21.810417,21.810417,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,12,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1736,2165,3803,3802,-9,-9,1,1,38,1,2,0,2,2,-9,0,5,8.3677616,8.4383831,0,10,4,5.0776176,0,-9,-9,2021,6,0,40,40,1,0,0,13.260628,13.260628,.05,.05,0,0,0,0,0,0,1,1,0,7.8529735,0,62.39,56.71,62.39,56.71,8.333333333333334,1,1,0,0,14,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1736,2165,3804,-9,3802,3803,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.18799,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,1261.75,213458.19,15257.053,131209.95,40020.672,0,4518.9048,5810.8027 +1737,2166,3805,3806,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.1092672,7.965806,0,7,2,-7.6506224,0,2,-9,2021,1,0,40,43,1,0,0,10.937011,10.937011,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.26,55.59,8.333333333333334,1,1,0,0,6,9,4,0,738,3812.1875,65349.461,195975.59,166530.44,0,0,2463.8445 +1737,2166,3806,3805,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.9193411,8.2061949,0,7,-2,9.0282288,0,2,2,2021,14,5,43,45,1,5,0,7.1648021,7.1648021,0,0,0,0,0,0,0,0,0,0,0,0,0,43.26,55.59,54.79,55.86,8.333333333333334,1,1,0,0,5,9,4,0,738,3812.1875,65349.461,195975.59,166530.44,0,0,2463.8445 +1738,2167,3807,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,7.2229395,7.733644,0,0,-861.48987,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3263669,57.34,50.6,-9,-9,8.333333333333334,1,1,0,0,14,12,3,1,323,601652.81,239285.47,231806.42,0,0,0,-47.749203 +1739,2168,3808,-9,3809,-9,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1026.8306,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,9,3,1,346,84184.469,-19457.742,0,0,0,0,809.63403 +1739,2168,3809,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,7.9967704,8.0721169,5.9758348,0,0,-1043.0973,0,2,2,2021,6,0,28,63,1,0,0,11.116565,11.116565,.05,.05,0,0,0,0,0,0,1,1,0,5.905931,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,346,84184.469,-19457.742,0,0,0,0,809.63403 +1739,2169,3810,-9,3809,-9,1,0,18,0,1,0,2,2,1,0,3,7.1101017,7.1252909,0,0,0,-1028.2871,-9,2,-9,2021,6,0,10,0,1,0,1,14.922279,14.922279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,530,222352.72,95320.906,0,0,0,0,476.97043 +1740,2170,3811,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.9622641,8.8799295,0,0,0,-975.36261,0,-9,-9,2021,10,0,40,40,1,0,0,29.387283,29.387283,.05,.05,0,0,0,0,0,0,1,1,0,.67838997,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,158,446626.03,145423.19,222836.77,131170.05,10577.596,0,3608.3879 +1741,2171,3812,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.0823545,6.3285141,0,0,-1119.9169,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0761681,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,186,-81777.883,-84531.016,0,0,0,0,1025.4202 +1742,2172,3813,3814,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,8.3722773,8.6144314,19,4,-71.323235,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,7.6977611,8.5331211,57.06,57.76,55.19,54.26,10,1,1,0,0,11,1,4,1,490,70173.492,-57436.52,91093.75,0,6758.6641,0,3369.3203 +1742,2172,3814,3813,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.7908783,6.8544707,5.1854892,19,-4,72.665733,0,3,2,2021,9,0,39,35,1,0,0,2.6862817,2.6862817,.05,.05,0,0,0,0,0,0,0,0,0,0,5.5912118,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,10,1,4,1,490,70173.492,-57436.52,91093.75,0,6758.6641,0,3369.3203 +1743,2173,3815,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.5715394,7.371707,8,5,-121.95049,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.3568611,7.5149245,57.16,56.15,58.15,52.91,10,1,1,0,0,2,4,3,1,404,912637.31,277464.97,286660.03,0,0,0,88.263893 +1743,2174,3816,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.4798036,7.4865842,8,-5,66.911018,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.2896132,7.3765759,58.15,52.91,57.16,56.15,10,1,1,0,0,6,4,3,1,531,756242.25,417896.03,162318.13,0,0,0,1843.6895 +1744,2175,3817,-9,3818,-9,1,1,53,0,0,0,3,3,-9,0,3,8.4898577,8.294569,0,0,0,-978.31677,-9,3,2,2021,19,7,37,0,1,7,0,12.488672,12.488672,.05,.05,0,0,0,0,0,27,1,1,0,0,0,29.22,52.63,-9,-9,3.333333333333333,1,1,0,1,11,8,4,1,1009,1284714.3,782895,352957.72,0,1027.5726,0,2361.2217 +1744,2176,3818,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.6350365,5.574513,0,0,-1048.8729,-9,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,7.1173739,24.317177,66.288841,0,1,1,0,0,5.8839912,40.91,24.75,-9,-9,5,1,1,0,0,0,8,2,1,1084,802183,0,648042.31,0,0,0,1726.9282 +1745,2177,3819,3820,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.5619955,8.1816835,0,2,2,-38.193958,0,3,3,2021,6,0,60,65,1,0,0,8.8468971,8.8468971,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,42.45,49.2,8.333333333333334,1,1,0,0,13,2,4,1,419.5,2552981,791237.88,466806,0,0,0,2829.4375 +1745,2177,3820,3819,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,6.5622888,6.9751663,0,2,-2,-38.174656,0,3,3,2021,14,2,10,20,1,2,0,8.978384,8.978384,0,0,0,0,0,0,0,0,0,0,0,6.1241655,0,42.45,49.2,52,54.51,8.333333333333334,1,1,0,0,13,2,4,1,419.5,2552981,791237.88,466806,0,0,0,2829.4375 +1746,2178,3821,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.4222531,6.4440212,0,0,-1034.9249,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3916297,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,760,298196.16,0,256033.47,0,0,0,1486.3599 +1747,2179,3822,3823,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.6634183,7.9637542,48,-2,-21.486607,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.0023556,53.81,53.56,52.23,55.6,8.333333333333334,1,1,0,0,10,12,3,1,662.5,1081313.8,654240.25,241122.94,0,4433.4121,0,3693.3511 +1747,2179,3823,3822,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2923779,7.2390022,49,2,-83.085335,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2387938,52.23,55.6,53.81,53.56,6.666666666666667,1,1,0,0,4,12,3,1,662.5,1081313.8,654240.25,241122.94,0,4433.4121,0,3693.3511 +1748,2180,3824,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,6.7401943,6.6353965,0,0,0,-1000.9724,0,2,2,2021,7,0,16,16,1,0,0,7.1881394,7.1881394,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,4,2,0,0,5,9,2,0,333,4740.4268,0,0,0,0,0,384.47949 +1749,2181,3825,-9,3828,3826,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1034.1083,-9,1,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2181,3826,3828,-9,-9,1,1,59,0,2,0,2,2,-9,0,3,7.4740772,7.0621214,0,11,14,169.66592,0,3,3,2021,10,0,40,45,1,1,0,4.4749317,4.4749317,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,52,57,7,2,3,0,0,1,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2181,3827,-9,3828,3826,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.2538,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2181,3828,3826,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,0,0,0,11,-14,7.4781671,0,1,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,57,51,49,10,2,3,0,0,0,8,2,1,892.5,562822.44,0,565847.63,21927.719,0,4197.9595,2430.8613 +1749,2182,3829,-9,3828,3826,1,0,18,0,2,0,2,2,1,0,3,0,0,0,0,0,-1043.7848,-9,1,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,56.66,-9,-9,5,2,3,1,0,0,8,1,1,318,15458.068,0,0,0,0,-429.5213,0 +1749,2183,3830,-9,3828,3826,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1009.079,-9,1,2,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,1.3410527,0,1,1,0,0,0,33.49,64.26000000000001,-9,-9,5,2,3,0,0,0,8,1,1,4830,-21958.539,0,0,0,0,368.03214,0 +1750,2184,3831,3832,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.0802479,7.5944118,0,12,-4,-17.190456,0,2,2,2021,25,11,28,28,1,11,0,12.370735,12.370735,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.9,63.58,48.87,58.55,3.333333333333333,1,1,0,0,8,12,4,1,797,888929.88,758468,233076.28,66705.766,4633.3525,1529.2156,3462.3621 +1750,2184,3832,3831,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.3790092,8.2814274,0,12,4,-79.351578,0,-9,-9,2021,13,2,39,39,1,2,0,14.065221,14.065221,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,20.9,63.58,5,1,1,0,0,13,12,4,1,797,888929.88,758468,233076.28,66705.766,4633.3525,1529.2156,3462.3621 +1751,2185,3833,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,7.0955815,7.3025799,0,0,-977.95233,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,3.3604708,0,23.173487,0,1,1,0,3.7180541,7.207027,65.42,30.35,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,573,33990.02,8975.6016,0,0,0,0,1635.6597 +1752,2186,3834,-9,3836,3835,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.1444,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,3,0,432,-15084.204,0,0,0,0,0,1917.4126 +1752,2186,3835,3836,-9,-9,1,1,25,1,1,0,2,2,-9,0,3,8.0720959,8.172637,0,2,3,21.150059,0,-9,-9,2021,9,0,40,40,1,0,0,9.0617819,9.0617819,0,0,0,0,0,0,0,0,1,0,1,4.3004403,0,40.65,57.36,41.75,37.95,8.333333333333334,1,1,0,0,7,10,3,0,432,-15084.204,0,0,0,0,0,1917.4126 +1752,2186,3836,3835,-9,-9,1,0,22,1,1,0,2,2,-9,0,2,0,0,0,2,-3,142.58572,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.75,37.95,40.65,57.36,5,1,1,1,1,4,10,3,0,432,-15084.204,0,0,0,0,0,1917.4126 +1753,2187,3837,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1036.5425,0,3,3,2021,31,10,0,0,4,10,0,0,0,0,0,0,1,0,14.762019,0,0,1,1,0,0,0,39.4,19.18,-9,-9,0,1,1,0,0,0,1,1,0,406,154147.92,0,0,0,0,0,1537.8303 +1754,2188,3838,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-908.03638,0,-9,-9,2021,11,1,0,36,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.23,55.95,-9,-9,6.666666666666667,1,1,1,1,3,9,1,1,593,151150.08,0,38468.121,25925.455,0,0,0 +1755,2189,3839,3840,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,7,-12,0,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,48.19,15.79,23.83,32.49,8.333333333333334,1,1,1,0,0,12,1,0,1829.5,-27111.043,0,0,0,0,0,1551.6992 +1755,2189,3840,3839,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,0,0,7,12,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.2894516,0,0,1,1,0,0,0,23.83,32.49,48.19,15.79,6.666666666666667,1,1,0,0,1,12,1,0,1829.5,-27111.043,0,0,0,0,0,1551.6992 +1756,2190,3841,3842,-9,-9,1,0,44,0,1,0,3,3,-9,0,1,6.9220958,6.7277493,0,7,1,9.3326645,0,2,2,2021,33,11,16,16,1,11,0,6.7048745,6.7048745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,42.05,27,0,1,1,0,0,10,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1756,2190,3842,3841,-9,-9,1,1,43,0,1,0,2,2,-9,0,1,8.1057281,8.2258472,0,7,-1,82.016914,0,2,2,2021,11,1,36,37,1,1,0,14.106154,14.106154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.05,27,16.04,23.99,5,1,1,0,0,10,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1756,2190,3843,-9,3841,3842,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1012.9779,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,0,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1756,2190,3844,-9,3841,3842,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-924.8454,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,3,1,1435,242616.22,50213.953,139792.92,65252.824,14520.119,5093.792,2719.8018 +1757,2191,3845,3848,-9,-9,1,0,34,0,2,0,1,1,-9,1,3,8.3010521,8.4897242,0,8,-1,-16.684725,0,-9,-9,2021,9,0,31,22,1,0,0,11.326664,11.326664,.05,.05,0,0,0,0,0,0,1,1,0,2.4576662,0,42.01,57.81,49.04,55.86,8.333333333333334,1,1,0,0,12,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1757,2191,3846,-9,3845,3848,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-775.7937,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1757,2191,3847,-9,3845,3848,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.72937,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1757,2191,3848,3845,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.5823793,8.4879084,0,8,1,-82.314102,0,-9,-9,2021,9,1,40,38,1,1,0,16.61528,16.61528,.05,.05,0,0,0,0,0,0,1,1,0,1.1311269,0,49.04,55.86,42.01,57.81,8.333333333333334,1,1,0,0,15,4,4,1,754.75,70115.406,37371.012,130823.03,75633.469,11857.959,6176.2925,3472.2808 +1758,2192,3849,3850,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.0232687,6.9524679,47,-1,46.150211,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,1.8893245,12.976892,25.559135,0,1,1,0,2.3940456,6.8693466,58.32,50.22,60.12,54.8,10,1,1,0,0,0,9,3,1,482.5,1385183.3,544560.38,486627.19,0,0,0,2719.7483 +1758,2192,3850,3849,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.880281,7.609242,47,1,2.9146998,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48961812,7.6950836,60.12,54.8,58.32,50.22,8.333333333333334,1,1,0,0,0,9,3,1,482.5,1385183.3,544560.38,486627.19,0,0,0,2719.7483 +1759,2193,3851,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,5.8978343,5.7657003,0,0,-1018.7032,0,-9,-9,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6637716,13.92,60.06,-9,-9,5,1,1,0,0,5,4,2,1,2772,473940.44,262259.31,333993.84,0,0,0,1543.9447 +1760,2194,3852,-9,3855,3853,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.62775,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1760,2194,3853,3855,-9,-9,1,1,64,0,2,0,2,2,-9,0,3,8.1465254,8.2906685,6.7517738,7,29,13.071317,0,3,-9,2021,10,0,1,43,1,0,0,534.47107,534.47107,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4885764,56.94,43.99,28.41,50.64,8.333333333333334,1,1,0,0,7,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1760,2194,3854,-9,3855,3853,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.2511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1760,2194,3855,3853,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.397862,7.6250677,0,7,-29,76.445412,0,2,2,2021,20,7,22,18,1,7,0,8.1405039,8.1405039,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.41,50.64,56.94,43.99,1.666666666666667,1,1,0,0,9,5,4,1,1012.5,1234976.1,1056256.5,151694.67,31759.592,8957.6396,0,3272.8379 +1761,2195,3856,3857,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.740952,5.8778639,6,4,-84.34993,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6097488,6.0125909,42.34,53.27,56.1,49.93,8.333333333333334,1,1,0,0,3,11,2,1,258,72438.664,0,0,0,0,0,1949.5918 +1761,2195,3857,3856,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.1185751,7.3126359,6,-4,18.287766,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7549338,7.1167936,56.1,49.93,42.34,53.27,6.666666666666667,1,1,0,0,4,11,2,1,258,72438.664,0,0,0,0,0,1949.5918 +1762,2196,3858,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,7.9134941,8.0022707,0,0,0,-1018.6471,0,2,1,2021,8,0,30,55,1,0,0,10.513864,10.513864,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,136,672139.75,120870.27,315486.53,0,0,0,1084.4479 +1763,2197,3859,3860,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.801919,8.9904871,0,25,-4,-90.007553,0,2,2,2021,11,0,60,50,1,0,0,11.033837,11.033837,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.37,54.8,31.31,49.54,10,3,4,0,0,7,8,5,1,1650.5,543947,94032.75,388257.66,0,19000.332,2469.8738,3908.3303 +1763,2197,3860,3859,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.358027,7.5412354,0,25,4,2.5166316,0,-9,-9,2021,11,0,15,36,1,0,0,12.542598,12.542598,0,0,.05,0,0,0,0,7,1,1,0,0,0,31.31,49.54,54.37,54.8,8.333333333333334,1,1,0,0,7,8,5,1,1650.5,543947,94032.75,388257.66,0,19000.332,2469.8738,3908.3303 +1764,2198,3861,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-967.38739,0,-9,-9,2021,7,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90433025,0,58.91,35.36,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,288,90431.594,0,0,0,0,0,259.13403 +1765,2199,3862,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.7886114,8.6203079,0,6,-4,-160.492,0,2,2,2021,8,0,38,42,1,0,0,17.155298,17.155298,0,0,0,0,0,0,0,0,0,0,0,4.0257301,0,54.69,57.47,58.6,44.89,8.333333333333334,1,1,0,0,11,9,5,0,42,-97003.555,0,0,0,0,0,2046.7241 +1765,2200,3863,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.0997515,8.2751675,0,6,4,-14.201326,0,-9,-9,2021,7,0,38,38,1,0,0,11.968719,11.968719,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.6,44.89,54.69,57.47,8.333333333333334,1,1,0,0,15,9,5,0,649,126117.54,125721.91,343751.31,191929.39,0,0,2092.0044 +1766,2201,3864,3865,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,49,-2,-18.60511,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,25.136734,0,0,1,1,0,2.0623035,0,44.49,37.85,58.08,43.46,5,1,1,0,0,0,4,2,1,2614,475090.25,172155.23,252156.89,0,0,0,991.55945 +1766,2201,3865,3864,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.2593031,6.2348342,10,2,75.279449,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.5003196,6.2358346,58.08,43.46,44.49,37.85,8.333333333333334,1,1,0,0,0,4,2,1,2614,475090.25,172155.23,252156.89,0,0,0,991.55945 +1767,2202,3866,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.7936363,8.6928272,0,0,0,-1028.963,0,-9,-9,2021,13,2,57,40,1,2,0,11.742661,11.742661,.05,.05,0,0,0,0,0,0,0,0,0,1.4401667,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,9,11,5,0,342,-30008.928,-27115.479,60233.004,36202.051,0,2826.5393,924.21368 +1768,2203,3867,3868,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.3548527,8.2723598,0,7,-8,105.11977,0,2,2,2021,7,0,40,40,1,0,0,9.9667768,9.9667768,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,8,11,4,1,1593,1191203.3,412107.31,395738.19,0,0,0,3636.4861 +1768,2203,3868,3867,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.2997456,7.8021107,7,8,-64.224976,0,3,3,2021,7,0,0,42,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,4.654603,8.0191765,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,1593,1191203.3,412107.31,395738.19,0,0,0,3636.4861 +1769,2204,3869,3870,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.9746947,6.8286333,55,3,85.940666,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.7117467,6.6445389,56.77,52.22,57.91,38.28,8.333333333333334,1,1,0,0,0,7,2,1,995.5,-31819.41,34669.441,0,0,0,0,2146.2866 +1769,2204,3870,3869,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-3,96.758789,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9674859,0,57.91,38.28,56.77,52.22,10,1,1,0,0,8,7,2,1,995.5,-31819.41,34669.441,0,0,0,0,2146.2866 +1770,2205,3871,-9,3875,3873,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-967.84949,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3872,-9,3875,3873,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1008.5471,-9,1,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3873,3875,-9,-9,1,1,50,0,3,0,2,2,-9,0,3,6.9673014,6.8829112,0,12,6,-9.8919582,-9,2,2,2021,27,11,25,0,1,11,0,4.3016748,4.3016748,0,0,0,0,0,0,0,0,1,1,0,0,0,31.44,60.95,51.33,53.17,1.666666666666667,1,1,0,0,13,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3874,-9,3875,3873,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.0649,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1770,2205,3875,3873,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,8.2655277,8.470171,0,12,-6,-143.89769,0,1,1,2021,10,2,50,50,1,2,0,12.221191,12.221191,0,0,0,0,0,0,0,0,1,1,0,4.7017517,0,51.33,53.17,31.44,60.95,8.333333333333334,1,1,0,0,13,8,3,0,624.40002,2450444.3,2210970,444517.13,246682,0,0,3086.7981 +1771,2206,3876,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,7.9945092,7.6916242,0,0,0,-1009.6429,0,-9,-9,2021,11,4,40,40,1,4,0,8.4467716,8.4467716,0,0,0,0,0,0,0,0,0,0,0,5.7724867,0,50.44,56.66,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,621,-191689.41,0,0,0,0,0,1848.2301 +1771,2207,3877,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.230134,8.3943882,0,0,0,-1007.4418,0,-9,-9,2021,5,1,45,48,1,1,0,10.873545,10.873545,.05,.05,0,0,0,0,0,0,0,0,0,1.1203709,0,45.06,60.17,-9,-9,8.333333333333334,1,1,0,0,4,4,4,1,170,194450.78,-157492.59,0,0,4848.0371,4779.7549,1124.6614 +1772,2208,3878,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.5074806,8.6393251,3.815814,0,0,-1079.5188,0,2,1,2021,32,10,60,7,1,10,0,11.042809,11.042809,.05,.05,0,0,0,0,0,0,1,1,0,4.1067414,0,19.65,51.14,-9,-9,0,4,2,0,0,7,2,4,1,484,-16391.15,136913.61,0,0,0,0,4470.2871 +1772,2208,3879,-9,3878,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.2178,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,484,-16391.15,136913.61,0,0,0,0,4470.2871 +1772,2208,3880,-9,3878,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4244,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,4,1,484,-16391.15,136913.61,0,0,0,0,4470.2871 +1773,2209,3881,3882,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,8.1907616,8.4194584,0,18,-3,-94.006851,0,1,1,2021,7,0,40,40,1,0,0,8.8822584,8.8822584,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,51.92,58.32,50.22,8.333333333333334,2,3,0,0,15,10,4,1,715.66669,984610.63,878412.06,269087.06,118198.13,4299.9746,1885.6661,3600.0581 +1773,2209,3882,3881,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,8.5627527,8.448884,0,18,3,-2.3564539,0,2,2,2021,2,0,49,49,1,0,0,12.571771,12.571771,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,55.19,51.92,8.333333333333334,2,3,0,0,15,10,4,1,715.66669,984610.63,878412.06,269087.06,118198.13,4299.9746,1885.6661,3600.0581 +1773,2209,3883,-9,3882,3881,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-986.49445,-9,3,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,10,4,1,715.66669,984610.63,878412.06,269087.06,118198.13,4299.9746,1885.6661,3600.0581 +1774,2210,3884,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-982.50793,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.2,20.2,-9,-9,1.666666666666667,2,3,0,0,0,8,1,0,204,241386.22,0,0,0,0,0,1611.0216 +1775,2211,3885,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.4252114,7.5145688,0,0,0,-1016.5084,0,3,3,2021,11,0,20,24,1,0,0,9.2510242,9.2510242,.05,.05,0,0,0,0,0,0,0,0,0,1.6640823,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,10,12,3,1,599,171571.72,-33481.465,86490.609,0,0,0,-131.23947 +1775,2212,3886,-9,-9,3885,1,0,30,0,0,0,2,2,-9,0,4,8.266737,8.2137003,0,0,0,-976.47296,0,2,2,2021,7,0,40,40,1,0,1,10.061172,10.061172,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,12,12,4,1,1300,176348.66,20119.311,0,0,0,31.746412,929.43292 +1776,2213,3887,-9,3889,3891,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.4675,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3888,-9,3889,3891,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1053.864,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3889,3891,-9,-9,1,0,38,0,1,0,2,2,-9,1,2,6.8268456,6.7699876,0,20,0,62.049114,0,3,2,2021,12,0,16,18,1,0,0,7.4439044,7.4439044,0,0,.05,0,0,0,0,42,1,1,0,0,0,48.69,45.7,29.18,50.81,6.666666666666667,2,3,0,1,12,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3890,-9,3889,3891,1,1,17,0,1,1,2,0,0,0,5,0,4.202877,4.5868378,0,0,-947.73804,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5171072,0,57.06,57.76,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1776,2213,3891,3889,-9,-9,1,1,47,0,1,0,1,1,-9,1,2,8.0361767,7.7115464,0,20,9,-23.266369,0,3,3,2021,24,12,35,35,1,12,0,10.038641,10.038641,0,0,.05,0,0,0,0,0,1,1,0,0,0,29.18,50.81,48.69,45.7,3.333333333333333,2,3,0,1,10,4,2,1,578.79999,471321.13,126221.09,183695.5,0,0,783.13879,3253.7869 +1777,2214,3892,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.2090988,9.2625437,6.89325,0,0,-1037.231,0,2,2,2021,6,0,50,48,1,0,0,23.058861,23.058861,0,0,0,0,0,0,0,0,0,0,0,6.6968179,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,8,8,5,1,635,1130343.3,149114.92,795045,134064.92,0,0,3598.1846 +1778,2215,3893,3894,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,1,0,0,-9,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.18,41.73,21.13,24.2,5,1,1,1,1,0,1,1,1,819.33331,0,0,0,0,0,0,1403.262 +1778,2215,3894,3893,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,1,0,0,0,3,3,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.13,24.2,42.18,41.73,0,1,1,0,1,3,1,1,1,819.33331,0,0,0,0,0,0,1403.262 +1778,2215,3895,-9,3894,3893,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.3298,-9,2,2,2021,26,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.26,56.77,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,819.33331,0,0,0,0,0,0,1403.262 +1778,2216,3896,-9,3894,3893,1,1,20,0,1,0,2,2,-9,0,4,7.2131362,7.3992934,0,0,0,-871.4054,-9,2,2,2021,9,0,37,0,1,0,1,5.631659,5.631659,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,1068,0,0,0,0,0,0,1061.2496 +1779,2217,3897,3898,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,0,0,0,4,-2,0,1,2,2,2021,6,0,0,38,2,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,9,1,0,7601,-69559.969,-22441.09,0,0,0,0,975.2146 +1779,2217,3898,3897,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,0,0,0,4,2,0,1,-9,-9,2021,6,0,0,28,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0704479,0,57.06,57.76,57.06,57.76,8.333333333333334,2,3,0,0,3,9,1,0,7601,-69559.969,-22441.09,0,0,0,0,975.2146 +1780,2218,3899,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.6749225,7.902554,0,0,-1011.4824,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5793114,7.7813063,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,526,778492.5,349184.09,316426,0,0,0,1352.1439 +1781,2219,3900,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-954.19958,0,-9,3,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,39,-9,-9,1.666666666666667,1,1,0,0,4,10,2,0,832,45348.977,181043.05,0,0,0,0,1554.4125 +1782,2220,3901,3902,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,7.8857856,8.2804108,6.7886295,8,3,-153.25787,0,-9,-9,2021,7,0,12,50,1,0,0,26.991976,26.991976,0,0,.05,0,0,0,0,0,0,0,0,1.2035398,6.6709242,54.1,59.11,46.71,44.14,8.333333333333334,1,1,0,0,9,7,4,1,574,265359.63,56427.035,289951.5,14739.771,12028.898,13504.359,2334.3093 +1782,2220,3902,3901,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,6.6452146,6.5599585,0,15,-3,-24.776855,0,2,3,2021,19,8,25,0,1,8,0,4.3522577,4.3522577,0,0,0,0,0,0,0,0,0,0,0,0,0,46.71,44.14,54.1,59.11,8.333333333333334,1,1,0,0,7,7,4,1,574,265359.63,56427.035,289951.5,14739.771,12028.898,13504.359,2334.3093 +1782,2221,3903,-9,3902,3901,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1107.829,-9,1,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,7,1,1,558,0,0,0,0,0,0,0 +1783,2222,3904,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.1504745,8.2518177,0,0,0,-1102.3185,-9,2,-9,2021,15,4,53,0,1,4,0,7.0041747,7.0041747,.05,.05,0,0,0,0,0,0,1,1,0,7.6597395,0,41.17,59.31,-9,-9,8.333333333333334,1,1,0,0,12,2,4,0,405,85093.211,-11397.519,127793.15,85389.438,8585.876,0,3084.7175 +1784,2223,3905,3906,-9,-9,1,0,28,0,1,0,2,2,-9,0,1,7.5480256,7.7126741,0,11,-3,42.925098,0,-9,-9,2021,17,5,30,32,1,5,0,8.5808182,8.5808182,0,0,0,0,0,0,0,0,1,1,0,0,0,37.08,31.74,57.16,56.15,8.333333333333334,1,1,0,0,5,10,4,1,1120.5,193488.66,74588.313,260353.66,158354.22,1985.7767,12052.49,2987.8101 +1784,2223,3906,3905,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.4107265,8.0524044,0,11,3,-5.6803322,0,-9,-9,2021,8,0,40,40,1,0,0,14.938732,14.938732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,37.08,31.74,8.333333333333334,1,1,0,0,14,10,4,1,1120.5,193488.66,74588.313,260353.66,158354.22,1985.7767,12052.49,2987.8101 +1785,2224,3907,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1010.2217,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8205385,0,59.01,25.21,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,155,-163068.72,0,0,0,0,0,834.74091 +1786,2225,3908,3909,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,7.830132,8.3121672,0,41,-1,-16.93454,0,-9,-9,2021,6,0,40,40,1,0,0,8.9180107,8.9180107,.05,.05,0,0,0,0,0,0,0,0,0,3.0984569,0,50.54,62.09,60.29,52.11,8.333333333333334,1,1,0,0,9,2,3,1,1652.5,1167641.9,821407,276506.41,0,0,0,1997.2488 +1786,2225,3909,3908,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.1436167,7.378675,0,40,1,114.72421,0,-9,-9,2021,6,0,18,18,1,0,0,8.8083019,8.8083019,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,50.54,62.09,8.333333333333334,1,1,0,0,10,2,3,1,1652.5,1167641.9,821407,276506.41,0,0,0,1997.2488 +1787,2226,3910,3911,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,6.6271305,7.2019935,0,1,-6,-42.956707,0,2,2,2021,7,0,10,8,1,0,0,8.8655148,8.8655148,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,63.98,40.79,10,1,1,0,0,15,9,3,1,654,1261603.8,168044.56,931352,221803.67,0,0,4486.9658 +1787,2226,3911,3910,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.8127885,7.5494614,1,6,38.212547,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4233217,7.7746768,63.98,40.79,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,654,1261603.8,168044.56,931352,221803.67,0,0,4486.9658 +1788,2227,3912,3913,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.6765366,7.7070961,44,3,-78.391792,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9187512,7.5703831,62.66,52.4,53.97,45.88,10,1,1,0,0,8,12,4,1,1100.5,698479.69,127481.37,165501.59,0,0,0,2976.3704 +1788,2227,3913,3912,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.7203369,8.0857086,7.4741373,44,-3,-86.675545,0,3,3,2021,11,0,36,36,1,0,0,6.771503,6.771503,0,0,.05,0,0,0,0,0,1,1,0,0,7.2540441,53.97,45.88,62.66,52.4,8.333333333333334,1,1,0,0,11,12,4,1,1100.5,698479.69,127481.37,165501.59,0,0,0,2976.3704 +1789,2228,3914,-9,3915,3916,1,1,3,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1040.5345,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,6,-9,0,0,8,1,0,626.33331,81401.625,0,0,0,0,1218.3403,579.33765 +1789,2228,3915,3916,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,0,0,0,9,-6,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,55,50,49,8,2,3,0,0,0,8,1,0,626.33331,81401.625,0,0,0,0,1218.3403,579.33765 +1789,2228,3916,3915,-9,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,36,6,0,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50,49,50,55,7,2,3,0,0,0,8,1,0,626.33331,81401.625,0,0,0,0,1218.3403,579.33765 +1790,2229,3917,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.5139914,7.5765233,0,0,0,-1012.0174,0,3,3,2021,6,0,22,22,1,0,0,7.8149858,7.8149858,0,0,0,0,0,0,0,0,1,1,0,0,0,49.9,43.05,-9,-9,10,1,1,0,0,11,13,3,0,1126,399202.53,113627.06,283267.72,28306.629,0,0,663.19141 +1791,2230,3918,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-941.41058,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.76,45.05,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,734,0,0,0,0,0,0,628.56921 +1792,2231,3919,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,9.033597,8.7220211,0,0,0,-997.13586,0,-9,-9,2021,8,1,60,55,1,1,0,14.610543,14.610543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.35,48.33,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,54,75622.922,-1006.6441,0,0,0,0,2839.1956 +1793,2232,3920,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.4680891,4.3566937,0,0,-799.95404,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.707746,0,0,1,1,0,1.2802885,4.6255498,52,45,-9,-9,8,1,1,0,0,0,4,2,1,1033,-78554.414,25081.4,115413.25,0,0,0,890.37714 +1794,2233,3921,3922,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.3848777,7.6158161,0,11,-2,206.75963,0,3,3,2021,23,10,21,22,1,10,0,12.272005,12.272005,0,0,0,0,0,0,.23400778,2,1,0,1,0,0,40.63,39.73,29.78,25.84,3.333333333333333,1,1,0,0,13,7,2,0,394,815133.88,348619.16,355628.38,0,0,0,1196.6689 +1794,2233,3922,3921,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,11,2,72.185165,0,2,3,2021,22,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,29.78,25.84,40.63,39.73,1.666666666666667,1,1,0,0,9,7,2,0,394,815133.88,348619.16,355628.38,0,0,0,1196.6689 +1795,2234,3923,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,5.0030756,5.2298636,0,0,-953.84326,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8245513,0,0,1,1,0,5.0468631,5.5774283,42.63,29.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,467,281364.81,135875.97,0,0,0,0,2415.7764 +1796,2235,3924,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.2602835,8.5179558,6.772759,0,0,-935.20575,0,3,3,2021,10,0,39,39,1,0,0,9.3621063,9.3621063,.05,.05,0,0,0,0,0,14.5,1,1,0,1.0679625,6.5976529,51.46,45.59,-9,-9,5,1,1,0,0,12,7,4,1,543,770206.94,164067.16,596677.31,0,0,16639.229,1195.0225 +1797,2236,3925,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,6.3372478,6.3848791,0,0,-1165.6133,0,-9,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9634156,6.4558239,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,619,1027466.5,191364.88,625138.94,0,0,0,1359.7333 +1798,2237,3926,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.377615,8.4626904,0,0,0,-983.69574,0,3,3,2021,6,0,46,42,1,0,0,9.1114664,9.1114664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,10,10,4,1,794,271334.16,339068.03,126919.92,18053.902,7493.4888,0,2185.9822 +1799,2238,3927,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1005.5649,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,42.96,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,280,-19436.877,0,0,0,0,0,1681.4297 +1800,2239,3928,-9,-9,-9,1,0,57,0,1,0,2,2,-9,0,3,7.7089477,7.99822,0,0,0,-1018.0161,0,3,3,2021,8,0,36,36,1,0,0,10.092469,10.092469,.05,.05,0,0,0,0,0,42,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,1,10,5,3,1,1860,263972.72,203280.92,0,0,0,0,1292.1541 +1800,2240,3929,-9,3928,-9,1,0,23,0,1,0,2,2,-9,0,3,7.8530464,7.7107406,0,0,0,-817.10175,0,2,-9,2021,13,0,38,38,1,3,1,6.6149087,6.6149087,0,0,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,6,1,1,0,0,2,5,3,1,877,35075.988,0,0,0,0,0,1009.2828 +1800,2241,3930,-9,3928,-9,1,0,20,0,1,0,3,3,-9,0,2,0,0,0,0,0,-999.07141,-9,2,-9,2021,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,5.24,57.72,-9,-9,3.333333333333333,1,1,1,0,0,5,1,1,387.5,-181430.91,0,0,0,0,1029.421,295.60056 +1800,2241,3931,-9,3930,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.71008,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,1,387.5,-181430.91,0,0,0,0,1029.421,295.60056 +1801,2242,3932,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.7942829,5.1971154,0,0,-857.69904,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9248471,5.4379673,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1359,32875.73,-64692.016,99905.297,0,0,0,768.2359 +1802,2243,3933,-9,-9,-9,1,1,73,1,2,0,2,2,-9,0,1,0,4.6801596,4.8207283,0,0,-1065.8177,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1277633,4.9224844,66.34999999999999,12.26,-9,-9,5,3,4,0,0,0,8,2,0,904,447427.69,60006.742,321768.75,0,0,0,960.19586 +1803,2244,3934,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-848.74835,0,3,3,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,17.314135,71.130272,142.4888,0,1,1,0,.054426536,0,30.43,21.22,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,1882,-10423.306,0,0,0,0,0,405.31339 +1804,2245,3935,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.0699997,5.927917,0,0,-1074.615,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4746718,43.79,51.7,-9,-9,8.333333333333334,1,1,0,0,3,6,2,0,103,-84640.234,0,0,0,0,0,1224.5302 +1805,2246,3936,-9,3938,3939,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.14508,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1805,2246,3937,-9,3938,3939,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.0653,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1805,2246,3938,3939,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.8177609,7.4917641,0,13,-1,-25.921192,0,2,2,2021,12,1,20,20,1,1,0,12.666757,12.666757,0,0,0,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,39.38,52.68,6.666666666666667,1,1,0,0,9,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1805,2246,3939,3938,-9,-9,1,1,36,0,2,0,2,2,-9,0,2,8.5568533,8.3621979,0,13,1,-91.887299,0,1,2,2021,11,0,43,43,1,0,0,12.095776,12.095776,0,0,0,0,0,0,0,0,1,1,0,0,0,39.38,52.68,35.61,65.82000000000001,6.666666666666667,1,1,0,0,12,7,4,1,1777.5,62222.719,0,0,0,0,0,2540.8193 +1806,2247,3940,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.9645991,7.6949992,0,0,0,-984.20007,0,3,-9,2021,3,0,30,28,1,0,0,7.6944237,7.6944237,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,2,3,0,595,267142.03,63317.598,0,0,0,1830.1958,1401.3251 +1806,2248,3941,-9,3940,-9,1,0,21,0,0,0,2,2,-9,0,2,7.9667091,7.99756,0,0,0,-1079.4982,0,2,-9,2021,16,3,42,43,1,3,1,7.3434763,7.3434763,.05,.05,0,0,0,0,0,0,1,0,1,0,0,31.18,57.88,-9,-9,5,1,1,0,0,5,2,4,0,241,58650.641,-9941.7314,0,0,0,0,1438.3052 +1806,2249,3942,-9,3940,-9,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1006.4447,1,2,-9,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.61,62.71,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,287,149870.61,0,0,0,0,0,0 +1807,2250,3943,-9,-9,-9,1,0,97,0,0,0,2,2,-9,0,3,0,6.4577765,6.1908956,0,0,-1015.3382,0,2,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.6474009,0,0,1,1,0,0,6.5978689,41.27,49.97,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1172,121992.56,47385.555,0,0,0,0,2598.2622 +1808,2251,3944,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.6273241,5.3336611,0,0,-1011.6635,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8298302,58.47,44.69,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,1008,364873.88,-60285.961,242793.28,0,0,0,1322.1151 +1808,2252,3945,-9,3944,-9,1,1,47,0,0,0,2,2,-9,0,3,7.8652306,8.4222498,0,0,0,-1007.3266,0,2,2,2021,21,9,37,37,1,9,0,10.813004,10.813004,.05,.05,0,0,0,0,0,2,1,1,0,0,0,20.51,66.12,-9,-9,3.333333333333333,1,1,0,1,12,7,4,1,1692,236589.23,99750.414,0,0,0,0,1426.1215 +1808,2253,3946,-9,-9,3945,1,1,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-976.64111,-9,-9,2,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,987,0,0,0,0,0,0,-356.78287 +1809,2254,3947,3948,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.7114792,8.1838789,53,-6,81.091331,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7972155,7.6183081,54.1,59.11,60.02,56.42,8.333333333333334,1,1,0,0,6,12,3,1,329.5,930406.63,324496.13,392618.88,0,6021.6445,0,3583.6565 +1809,2254,3948,3947,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,5.9756861,5.780407,53,6,-23.364763,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4365096,6.1694493,60.02,56.42,54.1,59.11,10,1,1,0,0,4,12,3,1,329.5,930406.63,324496.13,392618.88,0,6021.6445,0,3583.6565 +1810,2255,3949,3950,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.8161664,7.9829779,53,1,82.41835,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9300399,53.39,49.65,60.12,54.8,8.333333333333334,1,1,0,0,0,4,4,1,406,2455074.8,666527.88,399402.28,0,0,0,3745.5479 +1810,2255,3950,3949,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.814374,8.1735258,53,-1,-45.586269,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3991003,60.12,54.8,53.39,49.65,10,1,1,0,0,0,4,4,1,406,2455074.8,666527.88,399402.28,0,0,0,3745.5479 +1811,2256,3951,3952,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.1901741,9.4047604,0,7,0,-122.24803,0,1,1,2021,9,0,40,40,1,1,0,30.451691,30.451691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,39.16,62.84,8,1,1,0,0,1,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1811,2256,3952,3951,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,7.8756752,7.899662,0,7,0,75.987564,0,2,2,2021,19,8,20,20,1,8,0,18.097588,18.097588,0,0,0,0,0,0,0,0,1,1,0,7.1522932,0,39.16,62.84,52,55,8.333333333333334,1,1,0,0,8,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1811,2256,3953,-9,3952,3951,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.44055,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1811,2256,3954,-9,3952,3951,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-827.05139,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,1,408,1396300.1,756640.25,562744.13,31980.932,0,0,5627.2329 +1812,2257,3955,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.115819,9.1654892,0,10,-7,-114.27816,0,1,2,2021,7,0,42,38,1,0,0,25.560589,25.560589,.05,.05,0,0,0,0,0,0,0,0,0,5.2020292,0,48.87,58.55,46.16,58.62,8.333333333333334,1,1,0,0,11,6,5,1,2599,328657.94,156921.55,0,0,0,0,3453.1213 +1812,2258,3956,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.6754503,8.7564402,0,10,7,-162.64406,0,2,2,2021,8,0,78,39,1,0,0,8.6119957,8.6119957,.05,.05,0,0,0,0,0,0,0,0,0,4.8433447,0,46.16,58.62,48.87,58.55,8.333333333333334,1,1,0,0,11,6,5,1,708,80475.461,-49145.848,0,0,0,824.08716,3443.0422 +1813,2259,3957,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.6694298,9.577013,8.8941126,0,0,-914.1701,0,3,3,2021,8,0,6,15,1,0,0,143.87344,143.87344,0,0,0,0,0,0,0,0,0,0,0,7.4153156,8.3499632,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,14,2,5,1,308,598509.19,433663.03,255222.03,0,0,0,6130.5176 +1814,2260,3958,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,7.4851694,7.6339631,0,0,0,-886.51184,0,-9,3,2021,24,8,60,55,1,8,0,2.9018257,2.9018257,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,61.58,-9,-9,1.666666666666667,1,1,0,0,7,10,3,1,660,1175627.4,660911.38,144272.55,4920.7822,0,0,850.25836 +1815,2261,3959,3960,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.1337805,6.991003,0,27,-2,-61.594845,0,2,2,2021,6,0,15,15,1,0,0,8.0980844,8.0980844,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,10,4,2,1,494,47975.266,0,0,0,1185.9799,2596.0684,289.58655 +1815,2261,3960,3959,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,5.3170476,5.6846867,0,7,2,50.604305,0,-9,-9,2021,6,0,40,40,1,0,0,.53981799,.53981799,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,10,4,2,1,494,47975.266,0,0,0,1185.9799,2596.0684,289.58655 +1815,2262,3961,-9,3959,3960,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-826.03198,1,2,2,2021,6,0,0,12,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,2,4,1,1,1272,50121.121,0,0,0,0,0,-612.45038 +1815,2263,3962,-9,3959,3960,1,1,21,0,0,0,2,2,-9,0,4,7.4297066,7.2208557,0,0,0,-1097.0557,0,2,2,2021,8,0,32,18,1,0,1,5.0163536,5.0163536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.62,55.32,-9,-9,10,2,3,0,0,7,4,3,1,721,-27368.301,61358.063,0,0,0,0,918.76892 +1816,2264,3963,3966,-9,-9,1,0,37,0,2,0,1,1,0,0,4,0,0,0,16,-16,-115.71407,-9,3,3,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.61,54.56,43.31,37.38,8.333333333333334,4,5,0,0,0,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1816,2264,3964,-9,3963,3966,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.60272,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1816,2264,3965,-9,3963,3966,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.38324,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1816,2264,3966,3963,-9,-9,1,1,53,0,2,0,1,1,-9,1,2,8.7645512,8.4733171,0,16,16,-79.234482,0,3,3,2021,18,6,53,31,1,6,0,13.137888,13.137888,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.31,37.38,36.61,54.56,5,4,5,0,0,9,8,4,0,954.75,927378.19,333608.09,504528.03,89463.563,448.46814,0,5128.8145 +1817,2265,3967,3968,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.880168,8.8265982,0,25,2,-43.165611,0,2,3,2021,6,0,30,30,1,0,0,30.710663,30.710663,.05,.05,0,0,0,0,0,2,0,0,0,3.787699,0,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,13,9,5,1,1365,532243.75,455021.84,290816.81,128376.48,0,0,4530.0879 +1817,2265,3968,3967,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,0,0,25,-2,-33.346767,1,2,2,2021,6,0,0,14,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.7563162,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,1365,532243.75,455021.84,290816.81,128376.48,0,0,4530.0879 +1818,2266,3969,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.1528673,8.9983416,0,0,0,-870.32928,0,2,2,2021,7,0,55,39,1,0,0,15.444751,15.444751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,12,9,5,0,1273,768772.88,680659.63,246000.86,91928.703,9126.0117,2217.4438,3532.5273 +1819,2267,3970,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,3,7.1756392,7.6101079,6.6865549,0,0,-1031.26,0,2,2,2021,11,0,21,18,1,0,0,5.1533742,5.1533742,.05,.05,0,0,0,0,0,0,1,1,0,5.997529,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1819,2267,3971,-9,3970,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.5659,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1819,2267,3972,-9,3970,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.5334,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1819,2267,3973,-9,3970,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.41431,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,2,1,388,36730.102,34.368164,0,0,-167.5318,648.15869,2199.9592 +1820,2268,3974,3975,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,8.1267986,7.9261179,11,2,-72.322334,0,3,1,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.7131815,8.1846094,61.01,53.18,61.83,31.21,8.333333333333334,1,1,0,0,11,10,4,1,3826,-8386.5928,115798.5,0,0,0,0,5525.6924 +1820,2268,3975,3974,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.2923441,7.5463352,11,-2,53.680168,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.6729732,7.5706434,61.83,31.21,61.01,53.18,8.333333333333334,1,1,0,0,8,10,4,1,3826,-8386.5928,115798.5,0,0,0,0,5525.6924 +1821,2269,3976,3977,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.6224246,7.8243618,41,1,156.96115,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8754764,7.3538971,56.94,49.53,40.47,55.65,10,1,1,0,0,0,4,4,0,1184.5,2350302.5,1391078.3,326648.5,0,0,0,4148.2939 +1821,2269,3977,3976,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.8001547,7.5277748,41,-1,-4.6573915,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2510233,7.5399652,40.47,55.65,56.94,49.53,10,1,1,0,0,0,4,4,0,1184.5,2350302.5,1391078.3,326648.5,0,0,0,4148.2939 +1822,2270,3978,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.8602061,8.4871397,7.3725719,0,0,-963.99994,0,3,3,2021,6,0,21,21,1,0,0,10.106242,10.106242,0,0,0,0,0,0,0,0,1,1,0,6.1417775,7.6253819,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,1088,260563.66,311159.75,0,0,0,0,2413.3247 +1823,2271,3979,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,6.4249496,6.4263768,0,0,-817.47516,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7431145,6.3833718,49.64,48.66,-9,-9,8.333333333333334,4,2,0,0,10,6,2,1,220,633429.06,433217.63,76180.281,0,0,2873.1694,1509.1302 +1823,2272,3980,-9,-9,3979,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-986.12579,-9,-9,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.87,53.99,-9,-9,8.333333333333334,4,2,0,0,0,6,1,1,712,0,0,0,0,0,0,0 +1824,2273,3981,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.3571024,7.1922259,0,0,-907.6405,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6854339,6.9062924,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,1060,309059.75,59671.977,149231.86,0,0,746.1076,564.65961 +1825,2274,3982,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.0473509,6.3340578,0,0,-931.50891,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2145233,67.12,15.13,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,1394,371519.44,76067.328,154227.75,0,0,0,808.97119 +1825,2275,3983,-9,3982,-9,1,1,31,0,0,0,2,2,-9,0,2,7.0816278,6.8598113,0,0,0,-873.92639,0,3,2,2021,12,0,16,22,1,0,0,6.820128,6.820128,0,0,0,0,0,0,0,7,1,1,0,0,0,57.18,45.76,-9,-9,6.666666666666667,1,1,0,1,7,11,2,1,194,44915.906,-123600.52,0,0,0,0,976.56799 +1825,2276,3984,-9,3982,-9,1,1,28,0,0,0,2,2,-9,0,3,7.7063899,7.6995893,0,0,0,-946.80316,0,2,2,2021,7,2,37,40,1,2,0,4.6040821,4.6040821,.05,.05,0,0,0,0,0,0,1,1,0,.14124013,0,52.01,48.98,-9,-9,6.666666666666667,1,1,0,0,4,11,3,1,325,7407.4473,-134944.59,0,0,0,0,471.00369 +1826,2277,3985,3986,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,0,0,33,-11,-74.930939,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,58.72,51.29,8.333333333333334,1,1,0,0,12,12,4,1,592,1042697.3,522543.69,308142.94,0,0,0,2508.6108 +1826,2277,3986,3985,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.3027849,8.6164589,13,11,20.988455,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8648772,8.3375835,58.72,51.29,60.02,56.42,10,1,1,0,0,5,12,4,1,592,1042697.3,522543.69,308142.94,0,0,0,2508.6108 +1827,2278,3987,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.1850433,7.1660004,0,3,9,18.290886,0,3,3,2021,10,0,9,12,1,0,0,17.105764,17.105764,0,0,.05,0,0,0,0,0,0,0,0,2.2640717,0,49.25,61.25,41.62,60.42,8.333333333333334,1,1,0,0,11,11,4,1,284,422459.78,111149.73,249065.89,0,0,0,599.03119 +1827,2279,3988,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.9584422,8.173234,0,3,0,184.49263,0,-9,-9,2021,10,0,32,32,1,0,0,11.930918,11.930918,.05,.05,0,0,0,0,0,0,0,0,0,6.6698895,0,41.62,60.42,49.25,61.25,8.333333333333334,1,1,0,0,13,11,4,1,872,110118.33,178959.58,0,0,0,262.93582,1748.6809 +1828,2280,3989,3990,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.8796182,7.9113045,0,10,-8,36.832939,0,1,1,2021,17,6,22,32,1,6,0,15.55022,15.55022,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,58.8,45.76,47.46,6.666666666666667,1,1,0,0,10,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1828,2280,3990,3989,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,7.9214964,8.1704388,0,10,8,2.5650444,0,2,2,2021,11,0,39,39,1,0,0,8.4184074,8.4184074,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.76,47.46,42.05,58.8,6.666666666666667,1,1,0,0,10,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1828,2280,3991,-9,3989,3990,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.6343,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1828,2280,3992,-9,3989,3990,1,0,11,0,2,1,3,0,-9,0,2,0,0,0,0,0,-945.50604,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,3,1,2525.5,125100.58,34426.66,188372.75,110618.16,10917.747,0,2220.8044 +1829,2281,3993,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-862.75525,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,13,1,1,613,90057.563,-7314.6665,181961.83,11603.434,0,0,241.86308 +1829,2282,3994,-9,-9,3993,1,0,23,0,0,0,2,2,-9,0,3,7.7847009,7.6363993,0,0,0,-1166.9993,-9,2,2,2021,10,0,35,0,1,0,0,6.8452077,6.8452077,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,365,-209587.77,0,0,0,8358.292,0,2124.0928 +1830,2283,3995,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,7.0807343,6.5200353,0,0,-1015.7814,-9,-9,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1825337,0,53.61,51.1,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,273,-17746.41,58574.035,0,0,0,0,881.81116 +1831,2284,3996,3997,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.2655363,7.1051984,0,9,-6,76.561897,0,3,3,2021,24,10,16,16,1,10,0,8.7642508,8.7642508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.06,41.81,58.15,52.91,3.333333333333333,1,1,0,1,10,4,4,1,314.5,277101.22,-23940.674,183026.84,0,0,0,2286.4028 +1831,2284,3997,3996,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.5646582,8.5615845,0,9,6,-66.464691,0,-9,-9,2021,7,0,54,54,1,0,0,11.124492,11.124492,.05,.05,0,0,0,0,0,0,0,0,0,2.2600594,0,58.15,52.91,43.06,41.81,8.333333333333334,1,1,0,0,9,4,4,1,314.5,277101.22,-23940.674,183026.84,0,0,0,2286.4028 +1831,2285,3998,-9,3996,3997,1,0,32,0,0,0,3,3,-9,0,3,7.8919702,7.8961873,0,0,0,-1077.1304,0,3,2,2021,10,3,38,56,1,3,1,5.5127177,5.5127177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.33,53.37,-9,-9,5,1,1,0,0,10,4,3,1,3541,-118927.09,31205.781,0,0,0,0,528.19604 +1832,2286,3999,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.0570602,8.067894,0,0,0,-933.79639,-9,-9,-9,2021,28,10,41,0,1,10,0,8.1058712,8.1058712,0,0,0,0,0,0,0,0,0,0,0,0,0,17.04,62.49,-9,-9,3.333333333333333,1,1,0,1,6,5,4,0,3553,-142224.66,-4416.3696,0,0,0,0,914.93567 +1833,2287,4000,4001,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.2101336,8.1644945,0,34,6,145.692,0,3,2,2021,10,1,38,38,1,1,0,13.624899,13.624899,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,26.01,45.43,53.5,5,1,1,0,0,13,11,5,1,560.5,147660.56,27292.752,134789.88,0,0,0,3876.7012 +1833,2287,4001,4000,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.5871067,8.5440407,0,34,-6,29.348633,0,3,1,2021,4,0,38,37,1,0,0,14.420081,14.420081,0,0,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,61.68,26.01,6.666666666666667,1,1,0,0,12,11,5,1,560.5,147660.56,27292.752,134789.88,0,0,0,3876.7012 +1834,2288,4002,4003,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,0,0,69,-1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,67.27,28.36,8.333333333333334,1,1,0,0,0,7,1,1,1711,206654.88,81150.328,161192.5,0,0,0,1391.1052 +1834,2288,4003,4002,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,0,0,69,1,0,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.27,28.36,48.18,61.8,8.333333333333334,1,1,0,0,0,7,1,1,1711,206654.88,81150.328,161192.5,0,0,0,1391.1052 +1835,2289,4004,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.5652561,8.6206818,0,0,0,-990.14728,-9,2,-9,2021,10,0,7,0,1,0,1,87.469246,87.469246,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,2,3,0,0,6,7,5,1,548,-87612.297,-45467.93,0,0,0,0,2031.1578 +1836,2290,4005,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-943.13385,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,10.511561,0,0,1,1,0,0,0,26.06,45.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,602,106894.43,0,117000.07,0,0,0,8.967741 +1837,2291,4006,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-937.12897,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,15.52,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,1634,3133.4749,0,0,0,0,0,1569.65 +1838,2292,4007,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.8508868,6.1187963,0,0,-1145.2548,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.6100454,6.1236072,60.3,46.58,-9,-9,8.333333333333334,1,1,0,1,3,9,2,0,120,2463.4565,-24790.695,0,0,0,0,708.42303 +1839,2293,4008,4009,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,8.2155809,7.8650889,11,1,-5.9570117,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1632872,7.9946337,51.83,57.2,50.58,51.02,8.333333333333334,1,1,0,0,10,7,4,0,3139.5,1204619.6,475204.47,493480.69,0,0,705.76788,3525.8152 +1839,2293,4009,4008,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,8.0131598,7.4420938,11,-1,75.73085,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4661632,0,50.58,51.02,51.83,57.2,8.333333333333334,1,1,0,0,8,7,4,0,3139.5,1204619.6,475204.47,493480.69,0,0,705.76788,3525.8152 +1840,2294,4010,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.4601183,9.1235523,0,0,0,-878.07928,-9,2,3,2021,14,2,60,0,1,2,0,21.879572,21.879572,.05,.05,0,0,0,0,0,0,0,0,0,5.1496921,0,39.58,57.61,-9,-9,8.333333333333334,1,1,0,0,8,2,5,0,1054,183132.56,8440.4307,0,0,0,0,3411.1289 +1841,2295,4011,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.011961,8.1145296,0,0,0,-819.99811,0,2,2,2021,9,0,44,59,1,0,0,9.1442299,9.1442299,0,0,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,9,1,4,0,2090,40329.129,0,0,0,0,0,1566.9944 +1842,2296,4012,4013,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,0,7.6291122,7.3551922,25,-13,-70.87648,0,2,2,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.6823459,7.5937681,34.32,19.62,63.41,39.7,1.666666666666667,1,1,0,0,0,2,4,1,1418.5,1146295.8,662057,226479.44,0,0,0,6365.8013 +1842,2296,4013,4012,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,8.2520628,7.6614923,25,13,-104.17507,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.0450544,8.1978025,63.41,39.7,34.32,19.62,8.333333333333334,1,1,0,0,0,2,4,1,1418.5,1146295.8,662057,226479.44,0,0,0,6365.8013 +1843,2297,4014,4015,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.2493143,6.4871182,8,-6,-23.305613,0,3,3,2021,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1580787,36.23,23,40.59,58.72,1.666666666666667,1,1,0,0,0,13,3,1,1646.5,1086311.3,534124.63,263440.31,0,0,0,2949.5044 +1843,2297,4015,4014,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.4797482,7.6681705,8,6,-35.934223,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6595421,40.59,58.72,36.23,23,6.666666666666667,1,1,0,0,3,13,3,1,1646.5,1086311.3,534124.63,263440.31,0,0,0,2949.5044 +1844,2298,4016,-9,4019,4017,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.6028,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1844,2298,4017,4019,-9,-9,1,1,50,2,2,0,2,2,-9,0,4,8.0428219,8.1659822,0,8,6,21.16074,0,-9,-9,2021,6,0,37,37,1,0,0,9.7277851,9.7277851,.05,.05,0,0,0,0,0,0,1,1,0,3.7082655,0,57.16,56.15,60.12,54.8,6.666666666666667,1,1,0,0,9,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1844,2298,4018,-9,4019,4017,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-947.60101,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1844,2298,4019,4017,-9,-9,1,0,44,2,2,0,2,2,-9,0,4,0,0,0,8,-6,-79.67025,0,-9,-9,2021,7,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.51565748,0,60.12,54.8,57.16,56.15,6.666666666666667,1,1,0,0,8,11,3,1,706.25,55087.609,66871.617,74064.734,18859.689,0,0,1757.064 +1845,2299,4020,-9,-9,-9,1,0,28,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1128.0592,-9,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,60,48.06,-9,-9,8.333333333333334,1,1,1,0,0,5,1,0,612,116590.25,0,0,0,0,0,1034.8804 +1846,2300,4021,4022,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9172969,8.0593424,0,25,6,-145.37172,0,2,2,2021,9,0,48,45,1,0,0,6.3130403,6.3130403,.05,.05,.05,0,0,0,0,7,1,1,0,.052722894,0,44.97,55.19,58.15,52.91,8.333333333333334,1,1,0,0,9,9,4,1,990.66669,336986.84,144568.44,293333.94,69150.875,0,0,3098.5972 +1846,2300,4022,4021,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4068356,8.207655,0,25,-6,116.96372,0,2,2,2021,8,0,48,40,1,0,0,10.822273,10.822273,.05,.05,0,0,0,0,0,0,1,1,0,.54217613,0,58.15,52.91,44.97,55.19,8.333333333333334,1,1,0,0,9,9,4,1,990.66669,336986.84,144568.44,293333.94,69150.875,0,0,3098.5972 +1846,2300,4023,-9,4022,4021,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1010.3268,-9,2,2,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.97,58.59,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,990.66669,336986.84,144568.44,293333.94,69150.875,0,0,3098.5972 +1847,2301,4024,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,6.9462781,6.7017112,0,0,0,-1085.0912,-9,-9,2,2021,10,0,16,0,1,0,0,6.8348451,6.8348451,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.96,39.3,-9,-9,8.333333333333334,1,1,0,0,10,11,2,1,274,-136792.41,23383.385,0,0,0,5810.7998,2343.9846 +1848,2302,4025,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,4,7.9359035,8.2029095,3.750138,0,0,-989.27612,-9,-9,-9,2021,6,0,38,0,1,0,0,7.6960549,7.6960549,0,0,.05,0,0,0,0,0,0,0,0,3.8514843,0,45.92,51.86,-9,-9,8.333333333333334,4,2,0,0,2,7,4,0,844,19657.947,-13132.619,0,0,6086.8291,0,999.85645 +1849,2303,4026,4027,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,10,4,0,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,15.716665,5.7783079,131.9882,0,1,0,1,0,0,53,47,51.33,33.18,6.666666666666667,1,1,0,0,0,12,1,0,525,291956.06,-11008.48,163726.13,0,0,0,937.77075 +1849,2303,4027,4026,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,10,-4,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,0,1,0,0,51.33,33.18,53,47,8.333333333333334,1,1,0,0,0,12,1,0,525,291956.06,-11008.48,163726.13,0,0,0,937.77075 +1850,2304,4028,4029,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,59,-4,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.08,41.96,55.47,39.56,8.333333333333334,2,3,0,0,0,2,1,1,599,176390.34,98329.641,82730.844,0,0,0,549.15808 +1850,2304,4029,4028,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,59,4,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.47,39.56,53.08,41.96,8.333333333333334,2,3,0,0,0,2,1,1,599,176390.34,98329.641,82730.844,0,0,0,549.15808 +1851,2305,4030,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.3097329,7.6169877,0,0,0,-1028.782,-9,2,2,2021,11,3,30,0,1,3,0,6.4468946,6.4468946,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.91,36.47,-9,-9,3.333333333333333,1,1,0,1,7,9,3,1,880,-76681.023,3302.5879,0,0,1953.6763,186.99213,-7.1024804 +1852,2306,4031,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.5975256,8.4882631,0,0,0,-923.60669,0,-9,-9,2021,12,1,47,0,1,1,0,9.8839283,9.8839283,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,-9,-9,5,1,1,0,0,5,2,5,0,186,30883.152,-154750.83,0,0,1668.3214,0,2803.0676 +1853,2307,4032,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.4179296,6.7802086,0,0,-1002.9227,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.6755567,0,0,1,1,0,5.0444942,6.3296013,62.49,55.09,-9,-9,10,1,1,0,0,0,10,2,1,546,567368.44,30388.725,354232.31,0,0,0,1143.9391 +1854,2308,4033,4034,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,39,2,-81.178452,0,3,3,2021,21,9,0,60,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.74,24.49,55.2,49.4,3.333333333333333,1,1,0,0,11,5,2,0,927,29989.041,118618.63,0,0,0,1509.6748,3468.0439 +1854,2308,4034,4033,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,4.6667967,5.3194008,3.2409251,39,-2,-61.416157,0,3,3,2021,10,0,50,40,1,0,0,.4165259,.4165259,0,0,0,0,0,0,0,74.5,1,0,1,0,3.3008077,55.2,49.4,32.74,24.49,8.333333333333334,1,1,0,1,11,5,2,0,927,29989.041,118618.63,0,0,0,1509.6748,3468.0439 +1855,2309,4035,-9,-9,-9,1,0,19,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1002.1132,0,-9,-9,2021,24,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.11,47.47,-9,-9,1.666666666666667,1,1,0,0,1,6,1,0,238,95048.563,0,0,0,0,0,672.00427 +1856,2310,4036,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-951.65448,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,37.49,29.31,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,294,34940.219,0,0,0,9840.4961,0,2178.7231 +1856,2311,4037,-9,4036,-9,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1007.8447,0,3,-9,2021,24,11,0,14,3,11,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,12.64,51.43,-9,-9,3.333333333333333,4,2,1,1,5,2,1,0,309,118622.53,0,0,0,0,0,210.89188 +1857,2312,4038,4039,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.8860021,5.6440558,63,-1,119.06283,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.6413827,64.37,31.49,54.95,24.8,8.333333333333334,1,1,0,0,5,9,2,1,2884,719057,112511.55,391678.06,0,0,0,2601.1401 +1857,2312,4039,4038,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.1170244,7.5244694,63,1,-201.25327,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,.33423916,0,120,1,1,0,.85084629,7.3240118,54.95,24.8,64.37,31.49,10,1,1,0,0,0,9,2,1,2884,719057,112511.55,391678.06,0,0,0,2601.1401 +1858,2313,4040,4041,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.8540602,8.7055616,0,12,12,-36.227242,0,2,2,2021,9,0,44,48,1,0,0,16.069517,16.069517,.05,.05,.05,0,0,0,0,0,1,1,0,3.648279,0,59.53,56.44,49.86,55.31,6.666666666666667,1,1,0,0,12,10,5,1,781.5,664669,432901.94,0,0,0,0,4567.3379 +1858,2313,4041,4040,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,7.8336477,7.7832179,0,12,-12,-13.361007,0,3,2,2021,11,4,5,5,1,4,0,61.751274,61.751274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,59.53,56.44,8.333333333333334,1,1,0,0,11,10,5,1,781.5,664669,432901.94,0,0,0,0,4567.3379 +1859,2314,4042,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.8392925,5.5348063,0,0,-910.5365,0,3,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8897376,51.85,11.83,-9,-9,6.666666666666667,1,1,0,0,2,13,2,0,230,432700.06,80464.359,44040.953,0,0,0,1306.7668 +1860,2315,4043,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,6.9105773,6.7497282,0,0,-976.92676,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,8.2979622,0,0,1,1,0,0,7.2025571,64.3,32.53,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,835,356896.31,76250.953,217472.05,0,0,0,636.65186 +1861,2316,4044,4045,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.0323954,7.9334784,49,-2,124.83071,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2472353,8.3205385,58.15,52.91,52.48,54.33,10,1,1,0,0,7,10,3,1,670.5,990448.25,643538.63,356221.38,0,0,0,3172.8391 +1861,2316,4045,4044,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,49,2,16.909395,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0834498,0,52.48,54.33,58.15,52.91,8.333333333333334,1,1,0,0,8,10,3,1,670.5,990448.25,643538.63,356221.38,0,0,0,3172.8391 +1862,2317,4046,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.976512,8.7240047,0,0,-963.44104,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5460622,8.6580687,62.58,34.57,-9,-9,6.666666666666667,1,1,0,0,9,9,5,0,539,1677631.6,928801.63,361032.84,0,0,0,3589.998 +1863,2318,4047,4048,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.913414,8.998847,0,5,-13,-47.664745,0,-9,-9,2021,10,2,48,43,1,2,0,15.112234,15.112234,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,50.11,54.04,6.666666666666667,1,1,0,0,5,7,5,1,2344.5,2993858.5,2266914.5,325153.25,0,0,1048.7622,5621.3584 +1863,2318,4048,4047,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.7732124,8.874361,0,5,13,17.996653,0,2,2,2021,9,0,40,39,1,0,0,21.991411,21.991411,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.11,54.04,52,54.51,8.333333333333334,1,1,0,0,8,7,5,1,2344.5,2993858.5,2266914.5,325153.25,0,0,1048.7622,5621.3584 +1864,2319,4049,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,7.6729035,8.4052572,8.4716024,13,-19,11.926549,0,2,1,2021,11,0,15,15,1,0,0,17.831766,17.831766,.05,.05,.05,0,0,0,0,7,1,1,0,7.9759922,7.6110168,49.41,58.28,51,46,8.333333333333334,1,1,0,0,9,10,4,1,541,535211.44,148833.08,303042.41,1933.7502,3033.1741,1386.4065,3361.3486 +1865,2320,4050,-9,4051,4053,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.4059,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1865,2320,4051,4053,-9,-9,1,0,52,0,2,0,1,1,-9,0,4,7.3839564,7.2746348,0,11,-3,47.606888,0,1,1,2021,13,1,17,0,1,1,0,11.423452,11.423452,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.08,59.33,52.3,57.2,6.666666666666667,1,1,0,0,10,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1865,2320,4052,-9,4051,4053,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.682,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,63,-9,-9,7,1,1,-9,0,0,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1865,2320,4053,4051,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,8.9290667,8.9542093,0,11,3,-12.780971,0,2,3,2021,10,0,32,33,1,0,0,35.412125,35.412125,.05,.05,0,0,0,0,0,0,1,1,0,4.4147706,0,52.3,57.2,44.08,59.33,8.333333333333334,1,1,0,0,12,11,5,1,786,316353.47,110354.43,273207.69,66749.602,-45.811302,0,3416.2954 +1866,2321,4054,-9,-9,-9,1,0,35,0,2,0,3,3,-9,1,2,0,0,0,0,0,-893.70343,0,2,2,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.25,53.93,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,914.66669,-8750.5859,0,0,0,0,0,1683.4321 +1866,2321,4055,-9,4054,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.7168,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,1,0,914.66669,-8750.5859,0,0,0,0,0,1683.4321 +1866,2321,4056,-9,4054,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1065.5992,-9,3,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,10,1,1,0,0,0,5,1,0,914.66669,-8750.5859,0,0,0,0,0,1683.4321 +1867,2322,4057,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7248392,8.8227863,0,0,0,-986.43341,0,2,3,2021,11,0,42,48,1,0,0,16.801508,16.801508,0,0,.05,0,0,0,0,7,0,0,0,0,0,60.29,52.11,-9,-9,5,1,1,0,0,12,6,5,1,1665,110167.55,39054.969,0,0,0,0,2648.9087 +1868,2323,4058,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,4.2545271,3.9362316,0,0,-1055.9971,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4323277,4.5897183,17.03,26.29,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,382,-1827.4067,0,0,0,0,0,1248.6382 +1869,2324,4059,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.2289886,6.1393709,0,0,-1025.7129,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8247876,6.2694955,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,911,1705363.3,650349.38,256921.66,0,0,0,1513.0759 +1870,2325,4060,-9,4061,-9,1,0,28,0,0,0,2,2,-9,0,4,8.3690224,8.2620449,0,0,0,-966.85327,0,3,3,2021,6,0,32,33,1,0,0,14.087025,14.087025,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,8,4,4,1,303,-6688.2085,-92181.031,0,0,0,0,1662.1813 +1870,2326,4061,-9,4062,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-963.38049,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.6753271,0,61.83,36.54,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,1011,29733.033,0,0,0,0,0,-63.325638 +1870,2327,4062,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1014.7507,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,2,3,0,0,1,4,1,1,716,-81862.836,0,0,0,0,0,976.30408 +1871,2328,4063,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.6811428,8.5919971,6.5826797,0,0,-902.92822,0,2,2,2021,21,9,38,37,1,9,0,13.526674,13.526674,.05,.05,0,0,0,0,0,0,0,0,0,5.842217,6.8061891,44.35,28.38,-9,-9,3.333333333333333,1,1,0,0,11,6,5,1,480,909836.38,500032.28,158623.81,0,13864.077,0,1690.1538 +1872,2329,4064,4065,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.2304745,7.4836855,0,22,-5,-147.30199,-9,3,-9,2021,9,4,45,0,1,4,0,3.6458294,3.6458294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.06,58.99,43.89,52.61,6.666666666666667,1,1,0,0,13,8,2,1,952.5,404402.06,75154.156,470092.47,126709.77,0,0,1153.5962 +1872,2329,4065,4064,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,1,5,-54.258511,-9,3,3,2021,14,4,0,0,3,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.89,52.61,40.06,58.99,6.666666666666667,1,1,1,0,5,8,2,1,952.5,404402.06,75154.156,470092.47,126709.77,0,0,1153.5962 +1872,2330,4066,-9,4065,4064,1,0,27,0,0,0,1,1,-9,0,3,8.5217085,8.6733446,0,0,0,-970.25537,-9,1,2,2021,6,1,46,0,1,1,1,14.878934,14.878934,.05,.05,0,0,0,0,0,0,1,1,0,3.8443303,0,45.88,53.37,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,810,-36601.52,6266.5098,0,0,0,0,1957.8831 +1873,2331,4067,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.3416004,5.2727098,0,0,-1022.7568,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5509369,5.2158933,38.7,46.76,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,700,78233.656,-55418.668,69198.703,0,0,2166.4341,167.68288 +1874,2332,4068,4069,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.0081139,6.5254064,3,5,64.376129,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7757244,36.66,59.38,45.97,51.9,6.666666666666667,1,1,0,0,0,4,2,1,857,188.67969,0,94202.313,0,0,0,592.95337 +1874,2332,4069,4068,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,3,-5,-50.418957,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,1.3155419,0,0,1,1,0,0,0,45.97,51.9,36.66,59.38,6.666666666666667,1,1,0,0,0,4,2,1,857,188.67969,0,94202.313,0,0,0,592.95337 +1875,2333,4070,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.4536676,9.796525,6.0868464,0,0,-1038.7593,-9,1,1,2021,8,0,35,0,1,0,0,56.890785,56.890785,.05,.05,0,0,0,0,0,0,0,0,0,7.1812091,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,15,4,5,1,604,284258.06,203986.69,323968,161046.19,20024.043,0,5686.8887 +1875,2333,4071,-9,4070,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.542,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,604,284258.06,203986.69,323968,161046.19,20024.043,0,5686.8887 +1875,2334,4072,-9,4070,-9,1,0,18,0,1,0,2,2,1,0,4,5.9128127,6.0716581,0,0,0,-941.43335,-9,1,-9,2021,15,4,12,0,1,4,1,4.188693,4.188693,.05,.05,0,0,0,0,0,0,0,0,0,.90964502,0,25.79,65.03,-9,-9,6.666666666666667,1,1,0,0,1,4,2,1,800,-25107.773,7176.8096,0,0,0,836.68878,-446.56747 +1876,2335,4073,4074,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,0,0,7,2,17.697557,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.96,53.17,8.333333333333334,1,1,0,0,4,9,3,1,171.5,889311.38,426871.88,285462.31,0,0,-251.50751,2173.5327 +1876,2335,4074,4073,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.7037945,7.8456869,7,-2,25.165478,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6933198,7.7667952,54.96,53.17,57.06,57.76,10,1,1,0,0,7,9,3,1,171.5,889311.38,426871.88,285462.31,0,0,-251.50751,2173.5327 +1877,2336,4075,4076,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1327524,8.375699,0,30,-3,-52.127441,0,2,2,2021,12,2,40,45,1,2,0,9.7912054,9.7912054,0,0,0,0,0,0,0,2,0,0,0,6.7324128,0,42.3,57.54,52.09,46.14,8.333333333333334,1,1,0,0,9,5,4,1,402,496696.63,412403.78,133018.11,65421.766,0,1707.1835,2792.2549 +1877,2336,4076,4075,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.9798365,8.2693558,5.2104173,30,3,-76.06382,0,3,3,2021,9,0,40,40,1,0,0,7.5716658,7.5716658,.05,.05,0,0,0,0,0,2,0,0,0,5.3834324,0,52.09,46.14,42.3,57.54,8.333333333333334,1,1,0,0,6,5,4,1,402,496696.63,412403.78,133018.11,65421.766,0,1707.1835,2792.2549 +1878,2337,4077,4078,-9,-9,1,1,62,0,0,0,3,3,-9,1,4,7.5981879,8.3174448,6.8883839,10,0,-58.465725,0,-9,-9,2021,13,4,23,22,1,4,0,9.1958885,9.1958885,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4828949,45.81,58.99,49,48,5,1,1,0,0,12,13,4,1,520.5,125568.81,22490.959,119199.7,0,0,3576.0142,2825.2703 +1878,2337,4078,4077,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.2007613,7.1558323,0,41,0,-41.092087,0,2,2,2021,11,0,20,25,1,2,0,7.0506153,7.0506153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,45.81,58.99,7,1,1,0,0,12,13,4,1,520.5,125568.81,22490.959,119199.7,0,0,3576.0142,2825.2703 +1879,2338,4079,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,5.4022131,5.5725245,0,0,0,-1002.3546,0,2,1,2021,14,2,18,18,1,2,0,1.7629471,1.7629471,0,0,0,0,0,0,0,2,1,1,0,3.8875084,0,51.04,33.77,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,1713,325244.97,38941.266,150543.56,0,0,0,347.52383 +1880,2339,4080,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,7.9892521,7.8754444,0,0,0,-909.29504,0,2,3,2021,26,11,45,41,1,11,0,8.3392124,8.3392124,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.69,42.69,-9,-9,1.666666666666667,1,1,0,0,9,10,4,0,851,20792.621,3839.5464,0,0,0,0,1615.4489 +1881,2340,4081,4082,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.5809813,8.4048395,40,6,17.425259,0,2,1,2021,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7316804,7.9236627,45.81,44.2,46.71,47.23,6.666666666666667,1,1,0,0,7,10,5,1,278,564095.25,241563.61,380595.5,0,8139.6587,0,5792.1558 +1881,2340,4082,4081,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,7.8408194,8.5566273,7.4393783,38,-6,-32.314476,0,3,2,2021,17,6,12,12,1,6,0,25.422123,25.422123,0,0,0,1,0,0,0,0,1,1,0,3.8497336,7.7251048,46.71,47.23,45.81,44.2,8.333333333333334,1,1,0,0,10,10,5,1,278,564095.25,241563.61,380595.5,0,8139.6587,0,5792.1558 +1882,2341,4083,4084,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.4327812,8.3294668,0,2,-5,82.204651,0,2,3,2021,11,0,40,35,1,2,0,14.229144,14.229144,0,0,0,0,0,0,0,0,0,0,0,1.3853778,0,48,57,50,57,7,2,3,0,0,6,4,5,1,1618,29280.59,0,140911.3,147919.41,637.08252,0,3792.2727 +1882,2341,4084,4083,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,7.6049042,7.8284373,0,2,5,-15.163679,0,-9,-9,2021,10,0,37,37,1,1,0,8.1392832,8.1392832,0,0,0,0,0,0,0,0,0,0,0,8.2102184,0,50,57,48,57,7,2,3,0,0,1,4,5,1,1618,29280.59,0,140911.3,147919.41,637.08252,0,3792.2727 +1883,2342,4085,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2699108,8.6150179,6.683691,0,0,-1054.8785,0,3,3,2021,12,3,42,45,1,3,0,11.707321,11.707321,0,0,0,0,0,0,0,0,1,1,0,0,7.3158216,46.5,58.26,-9,-9,8.333333333333334,4,2,0,0,8,6,5,1,322,1205542.8,643544.06,304096.47,0,0,0,2126.1963 +1883,2343,4086,-9,4085,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7192898,8.7251186,0,0,0,-1057.5533,0,1,-9,2021,7,0,44,48,1,0,1,15.534835,15.534835,.05,.05,0,0,0,0,0,0,1,1,0,2.7566257,0,55.79,52.62,-9,-9,8.333333333333334,4,2,0,0,7,6,5,1,2129,355793.5,-77778.219,0,0,0,0,2939.7766 +1883,2344,4087,-9,4085,-9,1,0,25,0,0,0,1,1,-9,0,2,7.9404206,7.6523085,0,0,0,-1029.0887,0,1,-9,2021,16,5,63,70,1,5,1,4.3395467,4.3395467,0,0,0,0,0,0,0,0,1,1,0,0,0,36.22,53.8,-9,-9,3.333333333333333,4,2,0,0,7,6,4,1,140,42492.027,0,0,0,6025.1338,0,291.29221 +1884,2345,4088,4089,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.3348756,7.3224573,0,1,-2,62.751797,-9,3,3,2021,11,0,20,0,1,0,0,8.5502071,8.5502071,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52,54.51,8.333333333333334,1,1,0,0,11,4,5,1,522.5,1078942.5,666226.13,245053.8,50627.984,0,0,3886.7515 +1884,2345,4089,4088,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.8160048,8.5108414,0,1,2,2.24582,-9,3,2,2021,11,1,36,0,1,1,0,18.950623,18.950623,0,0,.05,0,0,0,0,0,0,0,0,5.3064809,0,52,54.51,55.36,51.57,3.333333333333333,1,1,0,0,12,4,5,1,522.5,1078942.5,666226.13,245053.8,50627.984,0,0,3886.7515 +1884,2346,4090,-9,4088,4089,1,0,20,0,0,0,2,2,-9,0,3,6.2892194,6.0787964,0,0,0,-921.12433,-9,3,2,2021,25,10,18,0,1,10,1,3.277549,3.277549,0,0,0,0,0,0,0,0,0,0,0,.86952269,0,20.02,61.29,-9,-9,3.333333333333333,1,1,0,0,1,4,2,1,523,20480.928,0,0,0,0,0,-16.632883 +1885,2347,4091,4092,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.4336996,6.2149043,0,42,1,-50.291172,0,3,3,2021,14,2,24,24,1,2,0,3.007287,3.007287,0,0,0,0,0,0,0,0,0,0,0,0,0,50.21,31.27,47.67,50.72,6.666666666666667,2,3,0,0,12,9,2,1,494,463951.44,-15637.352,0,0,0,0,1083.4316 +1885,2347,4092,4091,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,6.7526789,6.9070373,0,42,-1,88.546066,0,3,3,2021,7,0,40,40,1,0,0,1.8586738,1.8586738,.05,.05,0,0,0,0,0,0,0,0,0,6.553371,0,47.67,50.72,50.21,31.27,8.333333333333334,1,1,0,0,14,9,2,1,494,463951.44,-15637.352,0,0,0,0,1083.4316 +1885,2348,4093,-9,4091,4092,1,1,23,0,0,0,2,2,-9,0,4,8.3301954,8.1567783,0,0,0,-1102.4103,0,2,3,2021,13,3,44,37,1,3,1,9.259059,9.259059,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,269,41742.215,0,0,0,0,4880.9937,1309.8268 +1886,2349,4094,4097,-9,-9,1,0,28,0,2,0,3,3,-9,0,4,0,0,0,5,-6,-31.990555,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2349,4095,-9,4094,4097,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.4389,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2349,4096,-9,4094,4097,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.5817,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2349,4097,4094,4102,4101,1,1,34,0,2,0,2,2,-9,0,4,8.4160566,8.4481373,0,5,6,29.166407,0,3,3,2021,10,0,38,35,1,1,0,14.198286,14.198286,.05,.05,0,0,0,0,0,0,1,1,0,3.2284296,0,50,57,47,57,7,2,3,0,0,1,8,3,1,1000.5,84341.719,-4296.4219,0,0,20235.164,0,2724.7285 +1886,2350,4098,-9,4102,4101,1,1,27,0,2,0,2,2,-9,0,4,6.7004642,6.9786305,0,0,0,-942.31439,0,3,3,2021,10,0,30,30,1,1,1,3.1756802,3.1756802,0,0,0,0,0,0,0,0,1,1,0,.56984311,0,49,58,-9,-9,7,2,3,0,0,1,8,2,1,266,3012.5208,0,0,0,0,0,921.8302 +1886,2351,4099,-9,4102,4101,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.8901,-9,3,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,8,1,1,452,27199.49,0,0,0,0,829.29541,0 +1886,2352,4100,-9,4102,4101,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-947.28046,-9,3,3,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,1,1,432,59874.758,0,0,0,0,-1382.8926,154.7619 +1886,2353,4101,4102,-9,-9,1,1,60,0,2,0,3,3,-9,0,3,0,0,0,7,4,0,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,2,3,1,0,0,8,1,1,248,441965.91,157671.22,239884.03,0,0,0,2507.0327 +1886,2353,4102,4101,-9,-9,1,0,56,0,2,0,3,3,-9,0,3,0,0,0,41,-4,0,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,1,1,248,441965.91,157671.22,239884.03,0,0,0,2507.0327 +1887,2354,4103,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-846.24646,0,2,2,2021,6,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,4,2,1,0,6,7,1,0,789,16314.061,98056.242,0,0,0,-1380.2667,0 +1887,2355,4104,-9,4103,-9,1,0,40,0,0,0,1,1,-9,0,4,7.2842708,7.2544112,0,0,0,-973.47906,0,2,-9,2021,8,0,16,16,1,0,1,13.894245,13.894245,0,0,0,0,0,0,0,0,0,0,0,2.6127012,0,51.98,55.03,-9,-9,8.333333333333334,3,4,0,0,6,7,3,0,244,315653.41,54830.719,211479.39,0,0,0,454.93335 +1888,2356,4105,4107,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,7.736824,7.8402739,0,6,0,-96.572731,0,1,1,2021,7,0,22,8,1,0,0,12.510564,12.510564,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,58.57,35.72,8.333333333333334,1,1,0,0,8,4,4,1,587,612673.19,-8518.001,291230.38,80664.141,0,0,3640.5417 +1888,2356,4106,-9,4105,4107,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.9902,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,587,612673.19,-8518.001,291230.38,80664.141,0,0,3640.5417 +1888,2356,4107,4105,-9,-9,1,1,40,0,1,0,1,1,-9,0,2,8.9603796,8.714242,0,6,0,-120.47629,0,3,2,2021,6,0,41,43,1,0,0,15.736602,15.736602,.05,.05,0,0,0,0,0,0,1,1,0,6.5216537,0,58.57,35.72,55.79,52.62,8.333333333333334,1,1,0,0,6,4,4,1,587,612673.19,-8518.001,291230.38,80664.141,0,0,3640.5417 +1889,2357,4108,4109,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.2188883,6.2546568,7,0,73.099472,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,3.9407868,6.315578,57.38,26.43,4.08,68.75,8.333333333333334,1,1,0,0,0,6,4,1,6358,795801.75,586468,74519.094,0,0,1109.6531,3952.9338 +1889,2357,4109,4108,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.5096617,8.7670479,7,0,-88.595795,0,3,3,2021,33,11,0,0,4,11,0,0,0,0,0,0,1,0,5.8310628,0,0,1,1,0,8.2461548,8.3227949,4.08,68.75,57.38,26.43,1.666666666666667,1,1,0,0,10,6,4,1,6358,795801.75,586468,74519.094,0,0,1109.6531,3952.9338 +1890,2358,4110,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1004.7757,0,-9,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,1.6377885,27.744623,17.670965,0,1,1,0,0,0,32.5,27.66,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,375,0,0,0,0,0,0,1225.2822 +1891,2359,4111,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.3427334,8.2959471,0,0,-870.4574,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5326271,8.1120653,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,136,1423777.4,1248931,86293.617,0,0,0,2082.1409 +1892,2360,4112,-9,4114,4113,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.5068,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4113,4114,-9,-9,1,1,33,1,3,0,2,2,-9,0,3,9.0058203,8.8915663,0,9,3,36.600887,0,-9,-9,2021,12,0,50,110,1,0,0,16.21208,16.21208,0,0,0,0,0,0,0,0,1,1,0,0,0,53.99,48.04,44.78,56.37,8.333333333333334,1,1,0,0,11,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4114,4113,-9,-9,1,0,30,1,3,0,1,1,-9,0,3,7.1467977,7.178761,0,9,-3,75.422768,0,2,2,2021,13,1,34,17,1,1,0,4.7040043,4.7040043,0,0,0,0,0,0,0,0,1,1,0,1.1307774,0,44.78,56.37,53.99,48.04,8.333333333333334,1,1,0,0,9,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4115,-9,4114,4113,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-975.15387,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1892,2360,4116,-9,4114,4113,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.12036,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,676,24939.887,-110998.13,0,0,19362.031,1232.4637,4306.9941 +1893,2361,4117,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.1534882,6.7224283,0,0,0,-1071.8187,0,-9,-9,2021,29,12,6,16,1,12,0,17.656757,17.656757,0,0,0,0,0,0,0,0,0,0,0,0,0,29.09,57.03,-9,-9,1.666666666666667,1,1,0,0,7,12,2,1,268,-149624.25,130923.89,0,0,1324.8674,0,283.7066 +1893,2362,4118,-9,4117,-9,1,0,24,0,0,0,2,2,0,0,4,0,0,0,0,0,-1054.8208,-9,1,-9,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9844909,0,42.81,46.55,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,298,48255.129,0,0,0,0,0,528.00055 +1894,2363,4119,4120,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.7030163,7.9725828,0,9,-3,9.4167318,0,-9,-9,2021,27,11,30,38,1,11,0,10.454957,10.454957,0,0,0,0,0,0,0,0,0,0,0,4.1868849,0,25.82,61.01,25.93,58.74,1.666666666666667,1,1,0,0,10,10,4,1,979,2326455.5,1759056.8,756588.25,121267.53,0,25698.928,2110.3914 +1894,2363,4120,4119,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.9527316,7.9842215,9,3,151.00926,0,2,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2574191,7.8360329,25.93,58.74,25.82,61.01,6.666666666666667,1,1,0,0,9,10,4,1,979,2326455.5,1759056.8,756588.25,121267.53,0,25698.928,2110.3914 +1895,2364,4121,-9,4126,4124,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.4786,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4122,-9,4126,4124,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-996.6366,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4123,-9,4126,4124,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.6525,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4124,4126,-9,-9,1,1,40,1,4,0,2,2,-9,0,4,7.034122,7.3729053,0,17,4,-71.022125,0,-9,2,2021,11,0,30,35,1,0,0,5.0576468,5.0576468,.05,.05,0,0,0,0,0,0,1,1,0,2.4108405,0,51.77,58.57,57.33,53.46,8.333333333333334,2,3,0,0,9,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4125,-9,4126,4124,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-969.05005,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1895,2364,4126,4124,-9,-9,1,0,36,1,4,0,2,2,-9,0,3,7.6193666,7.7704048,0,17,-4,-24.009447,0,3,3,2021,8,0,15,16,1,0,0,16.214046,16.214046,0,0,0,0,0,0,0,0,1,1,0,8.6847086,0,57.33,53.46,51.77,58.57,8.333333333333334,2,3,0,0,9,4,2,1,1516.1666,225932,186273.11,164677.61,88412.844,0,0,5234.0508 +1896,2365,4127,4128,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.464304,8.2719488,6,2,97.875191,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2469788,8.6079111,56.33,51.02,58.05,54.52,10,1,1,0,0,0,7,4,1,634,1186844.5,673234.13,259296.91,0,0,0,3578.293 +1896,2365,4128,4127,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,0,0,6,-2,-114.66188,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,56.33,51.02,8.333333333333334,1,1,0,0,0,7,4,1,634,1186844.5,673234.13,259296.91,0,0,0,3578.293 +1897,2366,4129,4130,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.3879519,6.0452991,10,5,-69.732101,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7186351,6.2557759,61.14,38.35,54.1,49.39,10,1,1,0,0,0,12,2,1,1166.5,310644.75,119853.02,76053,0,0,0,633.1001 +1897,2366,4130,4129,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.0582895,6.0940576,10,-5,65.104881,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8347816,5.801466,54.1,49.39,61.14,38.35,6.666666666666667,1,1,0,0,4,12,2,1,1166.5,310644.75,119853.02,76053,0,0,0,633.1001 +1898,2367,4131,4132,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.9021549,8.6923313,5.2883449,4,0,-53.684643,0,2,2,2021,10,0,37,37,1,0,0,24.490442,24.490442,.05,.05,.05,0,0,0,0,0,0,0,0,3.1426251,5.6763301,48.87,58.55,48.3,52.29,8.333333333333334,1,1,0,0,11,10,5,1,405.5,1263168.8,705760.63,380158.06,228736.75,0,0,5446.9951 +1898,2367,4132,4131,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.7625761,8.9926214,0,4,0,57.376881,0,-9,-9,2021,16,5,52,20,1,5,0,16.673813,16.673813,.05,.05,0,0,0,0,0,2,0,0,0,.40269956,0,48.3,52.29,48.87,58.55,8.333333333333334,1,1,0,0,6,10,5,1,405.5,1263168.8,705760.63,380158.06,228736.75,0,0,5446.9951 +1899,2368,4133,-9,4134,4135,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1079.0491,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,0,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2368,4134,4135,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,25,-1,-38.308933,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1682978,0,54.2,57.49,50,50,1.666666666666667,1,1,0,0,0,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2368,4135,4134,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.0619202,9.1640043,0,9,1,-157.9817,-9,2,2,2021,11,0,40,0,1,1,0,21.637478,21.637478,.05,.05,0,0,0,0,0,0,1,1,0,5.4253373,0,50,50,54.2,57.49,7,1,1,0,0,1,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2368,4136,-9,4134,4135,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-889.0708,-9,2,2,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,10,1,1,1,0,0,5,5,1,664,121047.05,47768.688,78977.93,0,0,0,3126.616 +1899,2369,4137,-9,4134,4135,1,1,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1014.2809,-9,2,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9589591,0,38.64,55.03,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,299,94430.414,0,0,0,0,0,509.45578 +1899,2370,4138,-9,4134,4135,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1025.9819,1,2,2,2021,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0655575,0,54.69,57.47,-9,-9,10,1,1,0,0,2,5,1,1,76,178956.44,0,0,0,0,0,-700.2713 +1900,2371,4139,4141,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.5248795,8.680397,0,6,-2,-101.96461,0,3,3,2021,6,0,40,44,1,0,0,16.62001,16.62001,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.73,35.35,52,56,8.333333333333334,1,1,0,0,7,11,4,1,931.33331,1073227.3,947196.63,162683.3,83709.891,5764.2549,2128.9485,4793.5083 +1900,2371,4140,-9,4139,4141,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.78149,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,931.33331,1073227.3,947196.63,162683.3,83709.891,5764.2549,2128.9485,4793.5083 +1900,2371,4141,4139,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,8.3284235,8.4891195,0,6,2,-110.87774,0,3,3,2021,9,0,40,44,1,1,0,12.068166,12.068166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,38.73,35.35,8,1,1,0,0,1,11,4,1,931.33331,1073227.3,947196.63,162683.3,83709.891,5764.2549,2128.9485,4793.5083 +1901,2372,4142,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1080.9263,0,3,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.33,36.87,-9,-9,5,1,1,0,0,0,9,1,1,820,36443.973,0,0,0,0,0,1636.755 +1902,2373,4143,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,4.667171,4.6602039,0,0,-979.71967,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7574511,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,564,200253.44,4084.2434,159206.58,0,0,0,249.73914 +1903,2374,4144,4145,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.408268,7.3903704,0,20,-3,-34.806931,0,2,2,2021,10,1,31,30,1,1,0,6.677597,6.677597,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.40000000000001,36.46,65.21000000000001,44.28,10,1,1,0,0,13,6,4,1,723.33331,103697.84,102970.83,0,0,8565.4229,471.47852,3152.9836 +1903,2374,4145,4144,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6798296,8.8731279,0,20,3,-118.34124,0,2,2,2021,8,0,40,43,1,0,0,16.505007,16.505007,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.21000000000001,44.28,64.40000000000001,36.46,8.333333333333334,1,1,0,0,12,6,4,1,723.33331,103697.84,102970.83,0,0,8565.4229,471.47852,3152.9836 +1903,2374,4146,-9,4144,4145,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-894.08337,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.74,49,-9,-9,10,1,1,0,0,0,6,4,1,723.33331,103697.84,102970.83,0,0,8565.4229,471.47852,3152.9836 +1904,2375,4147,4148,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.2379408,9.1666412,0,7,-4,-13.874947,0,3,3,2021,6,0,38,38,1,0,0,24.392138,24.392138,.05,.05,.05,0,0,0,0,7,0,0,0,2.6823657,0,54.79,55.86,48.18,61.8,8.333333333333334,1,1,0,0,14,4,5,1,613.5,337927.31,84251.688,627235.38,265612.38,52540.395,0,5619.7373 +1904,2375,4148,4147,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.4896412,8.6412678,0,7,4,69.089104,0,-9,-9,2021,9,0,37,38,1,0,0,15.368583,15.368583,0,0,0,0,0,0,0,0,0,0,0,2.595453,0,48.18,61.8,54.79,55.86,1.666666666666667,1,1,0,0,12,4,5,1,613.5,337927.31,84251.688,627235.38,265612.38,52540.395,0,5619.7373 +1905,2376,4149,4150,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,9.0021791,9.011651,0,35,3,65.808144,0,3,2,2021,11,1,70,70,1,1,0,13.522138,13.522138,.05,.05,0,0,0,0,0,14.5,1,1,0,5.8668199,0,58.32,39.69,35.15,19.36,6.666666666666667,1,1,0,0,9,10,5,0,300,335115.97,24933.408,402934.47,25818.271,0,0,4225.002 +1905,2376,4150,4149,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,35,-3,-40.42749,0,2,2,2021,20,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.15,19.36,58.32,39.69,3.333333333333333,1,1,0,1,0,10,5,0,300,335115.97,24933.408,402934.47,25818.271,0,0,4225.002 +1905,2377,4151,-9,4150,4149,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1147.285,1,3,2,2021,10,0,0,30,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,10,1,0,1098,286322.66,0,0,0,0,0,-962.49182 +1905,2378,4152,-9,4150,4149,1,1,19,0,0,0,2,2,0,0,5,0,0,0,0,0,-916.59387,-9,3,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.58,50.63,-9,-9,5,1,1,0,0,3,10,1,0,792,38847.332,0,0,0,0,0,-690.28644 +1906,2379,4153,4154,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9653707,7.8168159,0,34,-11,-17.673172,0,3,3,2021,9,0,30,38,1,0,0,7.9937825,7.9937825,0,0,0,0,0,0,0,0,1,1,0,0,0,49.47,52.19,39.15,48.86,8.333333333333334,1,1,0,0,10,2,4,1,297,1028138,498880.44,501073.06,0,15063.559,1045.441,3506.8364 +1906,2379,4154,4153,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,8.7005844,8.4793377,30,11,-111.9799,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5103245,8.3069115,39.15,48.86,49.47,52.19,0,1,1,0,0,0,2,4,1,297,1028138,498880.44,501073.06,0,15063.559,1045.441,3506.8364 +1907,2380,4155,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,7.7658377,8.0835323,0,0,0,-1079.8488,0,-9,-9,2021,16,5,44,37,1,5,0,7.6515903,7.6515903,0,0,0,0,0,0,0,0,1,1,0,0,0,36.7,25.21,-9,-9,8.333333333333334,1,1,0,0,14,11,4,1,936,2323092.8,1781939,377574.66,0,97.449547,0,2004.8602 +1908,2381,4156,4157,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,4.8079286,5.1841478,0,39,-3,-15.896614,0,2,2,2021,17,5,44,0,1,5,0,.47943833,.47943833,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,54.2,57.49,3.333333333333333,1,1,0,1,8,9,5,1,866,1413693.3,1000534.4,272055.88,0,7388.105,0,3725.4841 +1908,2381,4157,4156,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.0940323,9.3189592,0,39,3,-156.81015,0,1,2,2021,7,0,47,45,1,0,0,20.463356,20.463356,.05,.05,0,0,0,0,0,2,0,0,0,2.2176907,0,54.2,57.49,48.45,57.49,6.666666666666667,1,1,0,0,9,9,5,1,866,1413693.3,1000534.4,272055.88,0,7388.105,0,3725.4841 +1908,2382,4158,-9,4156,4157,1,1,23,0,0,0,2,2,-9,0,4,7.8369145,7.9171257,0,0,0,-843.95154,-9,1,1,2021,13,3,45,0,1,3,1,6.5156178,6.5156178,.05,.05,0,0,0,0,0,0,0,0,0,.73210275,0,42.86,55.92,-9,-9,5,1,1,0,0,3,9,3,1,552,182847.02,-65725.391,0,0,0,0,826.7951 +1909,2383,4159,-9,4160,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.4716,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,696,113579.69,0,0,0,0,0,2167.7524 +1909,2383,4160,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,6.3873239,6.7479305,0,0,-1004.5825,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.6617808,0,41.53,44.53,-9,-9,6.666666666666667,1,1,0,1,0,8,2,0,696,113579.69,0,0,0,0,0,2167.7524 +1909,2383,4161,-9,4160,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.97736,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,696,113579.69,0,0,0,0,0,2167.7524 +1909,2384,4162,-9,4160,-9,1,1,28,0,2,0,2,2,-9,0,4,7.7468152,7.6288314,0,0,0,-1148.2026,0,2,2,2021,21,9,30,33,1,9,1,9.4004831,9.4004831,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28,61.39,-9,-9,6.666666666666667,4,2,0,0,5,8,3,0,78,126757.4,0,0,0,0,0,555.10596 +1909,2385,4163,-9,4160,-9,1,0,22,0,2,0,2,2,-9,0,3,6.7022085,6.0994372,0,0,0,-1045.1561,0,2,-9,2021,18,6,9,26,1,6,1,6.80194,6.80194,0,0,0,0,0,0,0,0,1,1,0,0,0,44.19,56.68,-9,-9,5,4,2,0,0,4,8,2,0,1101,119839.56,0,0,0,0,0,515.67108 +1910,2386,4164,4165,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3674994,8.426343,0,2,1,-121.47704,0,2,2,2021,12,1,40,40,1,1,0,11.225368,11.225368,0,0,0,0,0,0,0,0,0,0,0,0,0,44.83,57.81,54.2,57.49,8.333333333333334,1,1,0,0,6,9,5,0,493,34961.926,22657.004,103818.73,169002.34,0,0,3282.4585 +1910,2386,4165,4164,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.8220811,7.9669986,0,2,-1,-39.0993,0,-9,-9,2021,2,0,37,50,1,0,0,9.0934715,9.0934715,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,44.83,57.81,10,1,1,0,0,2,9,5,0,493,34961.926,22657.004,103818.73,169002.34,0,0,3282.4585 +1911,2387,4166,4167,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.5028124,8.3869896,0,8,-5,59.151749,0,2,2,2021,14,2,61,45,1,2,0,8.6315355,8.6315355,0,0,0,0,0,0,0,0,0,0,0,0,0,52.01,48.98,60.9,36.71,8.333333333333334,1,1,0,0,10,1,5,0,1725.5,-57101.598,0,125410.86,45360.469,17217.652,0,3193.6055 +1911,2387,4167,4166,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.5784407,8.4233704,0,8,5,-7.6331792,0,2,1,2021,14,2,36,44,1,2,0,14.077197,14.077197,0,0,0,0,0,0,0,0,0,0,0,0,0,60.9,36.71,52.01,48.98,8.333333333333334,1,1,0,0,7,1,5,0,1725.5,-57101.598,0,125410.86,45360.469,17217.652,0,3193.6055 +1912,2388,4168,-9,-9,-9,1,0,29,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1010.8158,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.69,32.65,-9,-9,6.666666666666667,1,1,0,0,1,1,1,1,282,-2700.9497,0,0,0,0,0,452.37708 +1912,2389,4169,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,0,0,0,0,0,-942.39362,0,-9,-9,2021,14,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5914106,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,5,1,1,1,403,438988.13,176584.61,122332.48,0,0,0,938.93665 +1912,2390,4170,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.9463234,7.8672309,0,0,0,-937.52728,0,-9,-9,2021,12,0,40,50,1,2,0,7.3541069,7.3541069,0,0,0,0,0,0,0,0,1,1,0,0,0,41.74,55.02,-9,-9,6.666666666666667,1,1,0,0,5,1,4,1,343,130333.41,0,0,0,0,0,1565.3488 +1913,2391,4171,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,6.2870617,6.3834267,0,0,-1044.5546,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9386334,6.1632929,56.42,37.45,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,114,-15601.215,-35983.195,0,0,0,0,1356.4663 +1914,2392,4172,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.1960611,7.5313988,0,0,-926.6803,0,3,2,2021,9,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1647701,53.63,40.71,-9,-9,6.666666666666667,1,1,0,0,11,5,3,0,384,2119664.3,1086184.4,549503.19,0,1281.8339,0,1957.0405 +1914,2393,4173,-9,4172,-9,1,0,20,0,0,0,2,2,-9,0,3,7.817852,7.9290209,0,0,0,-1012.8195,0,1,-9,2021,9,2,30,41,1,2,0,10.420749,10.420749,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.15,42.96,-9,-9,6.666666666666667,1,1,0,0,4,5,4,0,1703,-65085.496,-42861.031,0,0,0,0,858.26617 +1915,2394,4174,4175,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,10,2,68.171074,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0517488,0,52,48,51.24,58.84,7,1,1,0,0,0,4,2,1,360,309308.97,63450.355,272247.44,0,0,0,1566.0181 +1915,2394,4175,4174,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.7806706,5.8586392,50,-2,-53.584015,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6888347,6.1526866,51.24,58.84,52,48,8.333333333333334,1,1,0,0,6,4,2,1,360,309308.97,63450.355,272247.44,0,0,0,1566.0181 +1915,2395,4176,-9,4175,4174,1,1,34,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1027.2994,0,3,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9555306,0,46.5,51.63,-9,-9,8.333333333333334,1,1,1,0,11,4,1,1,480,126603.56,0,0,0,0,0,531.13519 +1916,2396,4177,4178,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,6,20,0,0,-9,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.37,19.58,38.9,42.69,5,4,2,0,0,0,4,1,0,614.5,-4495.0859,58985.301,61711.781,0,0,5886.5225,1985.0509 +1916,2396,4178,4177,-9,-9,1,0,31,0,0,0,2,2,-9,1,3,0,0,0,6,-20,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,42.69,46.37,19.58,5,1,1,1,0,0,4,1,0,614.5,-4495.0859,58985.301,61711.781,0,0,5886.5225,1985.0509 +1917,2397,4179,4180,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.4887977,8.0887127,26,-3,20.017965,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.415545,7.7769351,52.38,55.6,58.3,47.38,8.333333333333334,1,1,0,0,5,9,3,1,278,1188666.9,693176.31,339558.13,0,2753.3081,0,3153.9258 +1917,2397,4180,4179,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4253187,7.2370524,7,3,14.854458,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8133173,58.3,47.38,52.38,55.6,8.333333333333334,1,1,0,0,7,9,3,1,278,1188666.9,693176.31,339558.13,0,2753.3081,0,3153.9258 +1918,2398,4181,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,7.6547656,7.8696227,6.2113199,0,0,-944.31543,0,2,3,2021,5,0,32,32,1,0,0,5.7028346,5.7028346,.05,.05,0,0,0,0,0,0,1,1,0,5.6326108,0,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,1054,777592.06,79397.539,89130.813,98533.875,4288.0483,264.51263,1482.7688 +1919,2399,4182,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.6733909,7.283792,0,0,-1077.8818,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7375088,7.7296453,44.72,38.06,-9,-9,5,1,1,0,0,0,9,3,1,762,860092,124277.05,620905.88,0,0,0,2341.0681 +1919,2400,4183,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.864151,6.1819892,0,0,-966.14679,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.663918,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1670,332553.22,28077.73,250155.7,0,0,0,1009.327 +1920,2401,4184,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.3887367,7.7148538,0,0,0,-905.4903,0,-9,-9,2021,10,3,29,36,1,3,0,5.8714824,5.8714824,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,7,11,3,0,422,-87934.258,0,0,0,0,1265.8934,1433.4656 +1921,2402,4185,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.078999,7.1072726,0,0,-1180.7661,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,5.8141479,0,44.847481,0,1,1,0,0,6.8418131,43.51,30.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,281,497924.78,71917.414,257429.34,0,0,0,1002.145 +1922,2403,4186,4187,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,6.3171496,6.3147168,23,9,61.069649,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,13.513273,0,0,1,1,0,5.9653583,5.9757242,42.66,32.46,63.65,35.93,6.666666666666667,1,1,0,0,0,9,2,1,507,483648,19964.275,327304.31,0,0,0,1679.0787 +1922,2403,4187,4186,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,8,0,94.676338,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,35.93,42.66,32.46,8.333333333333334,1,1,0,0,7,9,2,1,507,483648,19964.275,327304.31,0,0,0,1679.0787 +1923,2404,4188,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.1343508,8.2618294,0,0,-985.18732,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.5286102,7.7213321,45.59,46.83,-9,-9,5,1,1,0,0,0,6,3,1,893,565326.38,249704.41,0,0,0,0,2251.177 +1924,2405,4189,4190,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.9955659,7.9591746,0,15,2,18.485529,0,2,2,2021,9,0,25,22,1,0,0,12.702246,12.702246,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,59.29,49.68,8.333333333333334,1,1,0,0,13,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1924,2405,4190,4189,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.203311,8.3886471,0,15,-2,-92.9767,0,3,2,2021,11,1,23,23,1,1,0,16.919073,16.919073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,46.08,57.2,8.333333333333334,1,1,0,0,12,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1924,2405,4191,-9,4189,4190,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-944.35516,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1924,2405,4192,-9,4189,4190,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.0562,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,902.5,204165.52,-9005.5313,167653.97,129026.96,560.97766,957.21423,2476.9495 +1925,2406,4193,4194,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.6879439,7.9376493,32,0,57.859482,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9159064,51.25,36.02,59.43,58.05,8.333333333333334,1,1,0,0,0,2,3,1,519,1311254.3,917580.19,424624.44,0,0,39.739204,3198.375 +1925,2406,4194,4193,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,6.9269562,6.6443019,32,0,-11.632766,0,1,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0956063,6.9368563,59.43,58.05,51.25,36.02,10,1,1,0,0,0,2,3,1,519,1311254.3,917580.19,424624.44,0,0,39.739204,3198.375 +1926,2407,4195,4196,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.0007601,7.8147612,0,20,7,-35.440838,0,3,3,2021,11,0,66,65,1,0,0,4.4563632,4.4563632,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,40.14,16.93,10,1,1,0,0,13,1,3,0,675.5,303468.19,13054.822,229632.75,0,0,0,1934.8828 +1926,2407,4196,4195,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,20,-7,-160.43875,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,40.14,16.93,60.29,52.11,1.666666666666667,1,1,0,0,9,1,3,0,675.5,303468.19,13054.822,229632.75,0,0,0,1934.8828 +1926,2408,4197,-9,4196,4195,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-899.66248,0,2,2,2021,24,6,0,45,3,6,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,22.86,45.17,-9,-9,0,1,1,1,0,2,1,1,0,210,30389.572,0,0,0,0,0,644.42029 +1926,2409,4198,-9,4196,4195,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,0,0,-964.17279,0,2,2,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,43.46,46.32,-9,-9,6.666666666666667,1,1,1,0,0,1,1,0,1538,0,0,0,0,0,0,1318.2079 +1927,2410,4199,4200,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,5.8232298,5.5490756,49,-3,-22.662449,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9717574,5.4436798,58.32,50.22,54.79,55.86,8.333333333333334,1,1,0,0,4,9,4,1,1843,1446890.5,520882.22,412258.94,0,0,0,4553.6206 +1927,2410,4200,4199,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.6715088,8.3044538,49,3,-98.062569,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.0032568,8.5984287,54.79,55.86,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,1843,1446890.5,520882.22,412258.94,0,0,0,4553.6206 +1928,2411,4201,-9,4202,4203,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-948.11786,-9,2,2,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.32726368,0,42.58,58.53,-9,-9,6.666666666666667,4,2,0,0,0,9,5,1,475,125105.05,11305.598,0,0,0,1712.4091,5880.7456 +1928,2411,4202,4203,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.8494916,7.9728074,0,20,-1,18.623459,0,3,3,2021,11,1,40,40,1,1,0,8.5836496,8.5836496,.05,.05,0,0,0,0,0,0,0,0,0,7.6531081,0,47.38,52.55,52.82,53.97,6.666666666666667,2,3,0,0,12,9,5,1,475,125105.05,11305.598,0,0,0,1712.4091,5880.7456 +1928,2411,4203,4202,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.4834785,9.311223,0,19,1,1.3862163,0,2,1,2021,9,0,40,45,1,0,0,36.88678,36.88678,.05,.05,0,0,0,0,0,0,0,0,0,3.6720855,0,52.82,53.97,47.38,52.55,8.333333333333334,1,1,0,0,8,9,5,1,475,125105.05,11305.598,0,0,0,1712.4091,5880.7456 +1929,2412,4204,4205,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,63,-3,19.477419,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.3645202,0,51.24,58.84,61.19,42.11,10,1,1,0,0,0,10,2,1,1712.5,701956,119150.63,410670.31,0,0,0,504.83563 +1929,2412,4205,4204,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.0691929,5.7237496,63,3,53.260853,0,-9,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.0089583,5.9644451,61.19,42.11,51.24,58.84,10,1,1,0,0,0,10,2,1,1712.5,701956,119150.63,410670.31,0,0,0,504.83563 +1929,2413,4206,-9,4204,4205,1,1,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1049.9364,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,39.48,-9,-9,10,1,1,0,0,0,10,1,1,819,-192883.75,0,0,0,0,0,1364.569 +1930,2414,4207,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,0,0,-970.95972,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,1,0,528,158095.13,0,0,0,0,0,1128.1371 +1931,2415,4208,4209,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.8761778,9.1065054,0,25,0,-147.70755,0,2,-9,2021,10,0,42,48,1,0,0,17.330637,17.330637,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.01,44.96,57.16,56.15,8.333333333333334,1,1,0,0,14,8,5,1,555,1133449.3,550932.69,625082.56,20859.941,0,0,4508.7798 +1931,2415,4209,4208,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4679155,8.1869516,0,25,0,100.82566,0,3,2,2021,8,0,37,38,1,0,0,13.391695,13.391695,.05,.05,.05,0,0,0,0,0,0,0,0,1.8194847,0,57.16,56.15,61.01,44.96,8.333333333333334,1,1,0,0,14,8,5,1,555,1133449.3,550932.69,625082.56,20859.941,0,0,4508.7798 +1931,2416,4210,-9,4208,4209,1,0,21,0,0,0,2,2,-9,0,3,8.0713015,8.2783756,0,0,0,-1033.0895,0,2,2,2021,17,5,9,40,1,5,1,38.547344,38.547344,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.53,52.76,-9,-9,3.333333333333333,1,1,0,1,2,8,4,1,961,14057.184,35929.816,0,0,0,0,2200.2046 +1931,2417,4211,-9,4208,4209,1,1,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-1009.7485,-9,2,2,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,197,-155463.36,0,0,0,0,0,277.12955 +1932,2418,4212,-9,4213,4214,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1171.3998,-9,2,3,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47129893,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,742,508953.31,360770.72,255915.8,85953.688,0,0,4060.2791 +1932,2418,4213,4214,-9,-9,1,0,54,0,1,0,2,2,-9,0,5,8.2591991,8.358139,0,6,4,38.790485,0,3,2,2021,6,0,37,37,1,0,0,12.007333,12.007333,.05,.05,0,0,0,0,0,0,1,1,0,2.9612317,0,57.06,57.76,57.33,53.46,10,1,1,0,0,7,11,5,1,742,508953.31,360770.72,255915.8,85953.688,0,0,4060.2791 +1932,2418,4214,4213,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,8.6118736,8.7165613,0,6,-4,34.059986,0,3,3,2021,6,0,49,47,1,0,0,15.643184,15.643184,.05,.05,0,0,0,0,0,2,1,1,0,4.0949631,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,7,11,5,1,742,508953.31,360770.72,255915.8,85953.688,0,0,4060.2791 +1933,2419,4215,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,6.4627471,6.469521,0,0,-976.87573,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,3.5578587,0,17.983044,0,1,1,0,5.4334607,6.3231144,34.21,51.94,-9,-9,10,1,1,0,0,0,9,2,1,1603,-22587.789,0,0,0,0,0,-53.020767 +1934,2420,4216,4217,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.3947239,8.3356495,0,13,5,15.337819,-9,2,2,2021,8,0,42,0,1,0,0,10.908334,10.908334,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,60.12,54.8,8.333333333333334,1,1,0,0,9,2,5,1,1585.5,892462.94,539583.94,196068.38,81979.18,0,0,3281.9221 +1934,2420,4217,4216,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.4487896,8.5362921,0,14,-5,58.283253,-9,2,2,2021,7,0,37,0,1,0,0,12.814592,12.814592,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.33,53.46,10,1,1,0,0,9,2,5,1,1585.5,892462.94,539583.94,196068.38,81979.18,0,0,3281.9221 +1934,2421,4218,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1634874,7.7635012,0,0,0,-955.78998,-9,-9,-9,2021,9,0,37,0,1,1,0,12.878625,12.878625,0,0,0,0,0,0,0,0,0,0,0,2.2592065,0,53,54,-9,-9,8,1,1,0,0,1,2,4,1,383,281408.44,274845.06,10794.143,0,0,0,1736.2185 +1935,2422,4219,4220,-9,-9,1,1,85,0,0,0,2,2,-9,0,5,0,8.7107201,8.258709,49,16,-82.10614,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.554163,55.83,54.24,58.32,50.22,10,1,1,0,0,0,12,4,1,939.5,403586.19,154542.55,245269.06,0,0,0,3214.4595 +1935,2422,4220,4219,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.565711,5.8153591,49,-16,58.277088,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7224188,5.7229056,58.32,50.22,55.83,54.24,8.333333333333334,1,1,0,0,5,12,4,1,939.5,403586.19,154542.55,245269.06,0,0,0,3214.4595 +1936,2423,4221,4222,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.0209723,7.852149,35,6,57.920101,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,7.9577332,51.75,51.83,54.2,57.49,8.333333333333334,1,1,0,0,13,8,4,1,420.5,494614.19,92952.07,409273.38,0,0,0,2447.8018 +1936,2423,4222,4221,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.94276,7.9233322,0,35,-6,20.540489,0,2,2,2021,8,0,19,22,1,0,0,14.151897,14.151897,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.75,51.83,10,1,1,0,0,13,8,4,1,420.5,494614.19,92952.07,409273.38,0,0,0,2447.8018 +1936,2424,4223,-9,4222,4221,1,1,28,0,0,0,2,2,-9,0,5,8.7798738,8.6882439,0,0,0,-1046.2772,0,2,2,2021,12,0,49,49,1,0,1,12.648321,12.648321,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,552,-20272.414,159476.48,0,0,-163.82401,0,2737.1646 +1936,2425,4224,-9,4222,4221,1,0,22,0,0,0,2,2,-9,0,3,7.80966,7.7892466,0,0,0,-1023.2872,0,2,2,2021,18,6,40,40,1,6,1,5.3989334,5.3989334,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.25,47.76,-9,-9,5,1,1,0,0,6,8,3,1,842,52910.219,36080.879,0,0,0,0,1309.4241 +1937,2426,4225,4226,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.5520535,8.0974092,53,-5,106.09753,0,2,2,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4813972,7.7157755,57.73,25.39,58.26,38.35,6.666666666666667,1,1,0,0,0,2,5,1,511.5,1017816.8,684282.5,0,0,0,0,4824.5254 +1937,2426,4226,4225,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,8.457901,8.1740932,53,5,-81.461151,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6301603,8.4826298,58.26,38.35,57.73,25.39,6.666666666666667,1,1,0,0,9,2,5,1,511.5,1017816.8,684282.5,0,0,0,0,4824.5254 +1938,2427,4227,-9,4229,-9,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-962.88416,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1938,2427,4228,-9,4229,-9,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1001.6705,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1938,2427,4229,-9,-9,-9,1,0,45,0,3,0,2,2,-9,1,4,0,0,0,0,0,-940.1402,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,1,1,0,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1938,2427,4230,-9,4229,-9,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1010.4562,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,42.1,50.78,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,848.75,-91165.281,0,30342.99,0,0,0,2113.9766 +1939,2428,4231,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.094862,8.3363895,0,4,1,28.884501,0,2,-9,2021,7,0,60,60,1,0,0,6.7015901,6.7015901,.05,.05,0,0,0,0,0,0,0,0,0,2.5437622,0,58.75,48.57,49,56,8.333333333333334,1,1,0,0,10,2,3,1,123,979324.69,777319.81,107625.2,0,4695.189,6868.2144,1532.8424 +1940,2429,4232,4233,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,9.4056978,9.3748198,0,9,-1,95.578255,0,-9,-9,2021,10,1,36,39,1,1,0,27.42906,27.42906,0,0,0,0,0,0,0,0,0,0,0,7.3817453,0,57.06,57.76,31.58,61.01,8.333333333333334,1,1,0,0,9,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1940,2429,4233,4232,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.871191,8.9042845,0,9,1,-52.531982,0,2,2,2021,15,4,32,35,1,4,0,21.966469,21.966469,0,0,0,0,0,0,0,0,0,0,0,1.5174663,0,31.58,61.01,57.06,57.76,6.666666666666667,1,1,0,0,13,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1940,2429,4234,-9,4233,4232,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.11316,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1940,2429,4235,-9,4233,4232,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.3017,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,597.25,165816.42,-7640.7114,269695.25,151291.45,0,0,5804.8779 +1941,2430,4236,4237,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,55,-3,13.618127,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,47.63,45.75,21.97,21.3,1.666666666666667,1,1,0,0,0,6,2,1,453.5,165034.36,-12175.761,174101.52,0,0,0,1344.738 +1941,2430,4237,4236,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,4.8622723,5.1453018,55,3,85.866707,0,3,3,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,0,29.464867,0,0,1,1,0,0,5.107605,21.97,21.3,47.63,45.75,1.666666666666667,1,1,0,0,0,6,2,1,453.5,165034.36,-12175.761,174101.52,0,0,0,1344.738 +1942,2431,4238,4239,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,47,-1,-45.04031,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0814056,0,49.41,58.28,59.43,58.05,8.333333333333334,1,1,0,0,0,13,4,1,895.5,1208926.9,572383.31,281326,0,2227.4502,0,4079.3564 +1942,2431,4239,4238,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.3351908,8.5285597,47,1,60.699177,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.02069,8.6787872,59.43,58.05,49.41,58.28,10,1,1,0,0,5,13,4,1,895.5,1208926.9,572383.31,281326,0,2227.4502,0,4079.3564 +1943,2432,4240,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,7.8934789,7.7988372,0,0,0,-1008.1644,0,3,3,2021,9,0,15,25,1,0,0,18.353956,18.353956,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,15,13,3,1,394,55797.594,.21771498,235596.11,141686.86,8817.8789,3724.2854,1071.6803 +1943,2433,4241,-9,4240,-9,1,1,33,0,0,0,2,2,-9,0,3,8.2587433,8.4591274,0,0,0,-1230.3895,0,3,-9,2021,6,0,43,35,1,0,0,9.4918356,9.4918356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.33,53.39,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,892,-2646.3684,-79827.531,0,0,4763.6904,0,1928.2068 +1944,2434,4242,4243,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,7.4039354,7.86164,0,6,0,-85.107582,0,2,2,2021,6,0,37,24,1,0,0,6.3045692,6.3045692,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,49.52,52.97,8.333333333333334,1,1,0,0,10,13,3,0,678.5,57777.141,-108422.02,158380.91,95192.5,0,0,2629.1597 +1944,2434,4243,4242,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,7.8209071,7.7710152,0,6,0,-164.85527,0,2,2,2021,10,0,37,37,1,0,0,6.7445693,6.7445693,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,52.97,62.49,55.09,8.333333333333334,1,1,0,0,11,13,3,0,678.5,57777.141,-108422.02,158380.91,95192.5,0,0,2629.1597 +1945,2435,4244,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1036.3434,0,-9,-9,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.78,32.48,-9,-9,3.333333333333333,1,1,0,0,1,1,1,1,298,232488.03,0,0,0,0,0,1263.6478 +1945,2436,4245,4246,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,6.6388035,6.7883754,0,3,10,46.227421,0,-9,-9,2021,11,1,20,35,1,1,0,4.6923428,4.6923428,0,0,0,0,0,0,0,0,1,1,0,6.3868747,0,32.26,60.74,33.07,57.08,6.666666666666667,1,1,0,1,4,1,2,1,1107.5,220646.56,48919.914,0,0,0,0,543.91516 +1945,2436,4246,4245,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,6.5823045,6.7524333,0,3,-10,73.856026,0,-9,-9,2021,20,8,50,35,1,8,0,1.871498,1.871498,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,57.08,32.26,60.74,1.666666666666667,1,1,0,1,3,1,2,1,1107.5,220646.56,48919.914,0,0,0,0,543.91516 +1946,2437,4247,4248,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.7097783,5.1308036,6,-2,110.65456,0,3,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9441906,5.0228529,59.53,56.44,57.06,57.76,10,1,1,0,0,5,10,4,1,561,1439006.8,816642.75,554609,0,0,0,3197.0854 +1946,2437,4248,4247,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.165246,8.009799,6,2,-1.8838584,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.214582,8.1663418,57.06,57.76,59.53,56.44,8.333333333333334,1,1,0,0,0,10,4,1,561,1439006.8,816642.75,554609,0,0,0,3197.0854 +1947,2438,4249,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.0640898,8.1114178,0,0,0,-1050.9396,0,2,2,2021,6,0,39,39,1,0,0,9.6356363,9.6356363,.05,.05,0,0,0,0,0,0,0,0,0,2.395395,0,59.46,30.92,-9,-9,10,1,1,0,0,9,5,4,1,805,140684.67,109427.77,0,0,293.50412,0,1881.4905 +1947,2439,4250,-9,4249,-9,1,0,33,0,0,0,1,1,-9,0,2,7.3754773,7.3924093,0,0,0,-939.18207,0,2,3,2021,8,0,40,36,1,0,1,6.1185417,6.1185417,0,0,0,0,0,0,0,0,0,0,0,2.4196692,0,51.08,45.97,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,625,292572.16,0,133674.47,21983.131,0,0,602.49902 +1948,2440,4251,4252,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4966722,6.3091927,7,3,9.7370892,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2630105,6.9604735,50.57,52.35,51.48,39.17,8.333333333333334,1,1,0,0,0,12,2,1,1186.5,150052.08,115726.52,42449.547,0,0,0,1086.1096 +1948,2440,4252,4251,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.7058311,5.6666365,7,-3,50.203079,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6316876,5.3961892,51.48,39.17,50.57,52.35,6.666666666666667,1,1,0,0,0,12,2,1,1186.5,150052.08,115726.52,42449.547,0,0,0,1086.1096 +1949,2441,4253,4254,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,1,5,-148.18115,-9,3,2,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.75,19.69,19.57,31.76,5,1,1,0,0,0,4,3,1,473,277938.59,288993.25,143111.81,65937.719,0,0,1761.4607 +1949,2441,4254,4253,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,8.1655025,8.1085606,0,1,-5,-60.273655,-9,3,3,2021,30,10,35,0,1,10,0,10.834224,10.834224,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,19.57,31.76,25.75,19.69,5,1,1,0,0,11,4,3,1,473,277938.59,288993.25,143111.81,65937.719,0,0,1761.4607 +1950,2442,4255,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0226469,8.024188,0,0,0,-951.7724,0,-9,-9,2021,7,0,32,25,1,0,0,9.6745691,9.6745691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1225,273507.09,33956.074,0,0,0,0,115.06046 +1951,2443,4256,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9252381,7.7399645,0,0,0,-978.24963,0,2,2,2021,7,0,40,40,1,0,0,9.1243601,9.1243601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.3,42.49,-9,-9,6.666666666666667,1,1,0,0,10,7,4,1,1188,-2488.2625,63454.93,0,0,0,0,1431.564 +1952,2444,4257,-9,4258,4259,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1028.891,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,10,1,1,0,0,0,13,3,1,765.33331,730304.75,395611.28,294045.66,0,0,0,1093.7286 +1952,2444,4258,4259,-9,-9,1,0,57,0,1,0,2,2,-9,0,5,0,0,0,28,1,104.25742,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.61,58.31,57.16,56.15,8.333333333333334,1,1,0,0,8,13,3,1,765.33331,730304.75,395611.28,294045.66,0,0,0,1093.7286 +1952,2444,4259,4258,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.2861052,8.0556841,0,28,-1,-19.505688,0,3,3,2021,6,0,30,30,1,0,0,13.32684,13.32684,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.61,58.31,8.333333333333334,1,1,0,0,11,13,3,1,765.33331,730304.75,395611.28,294045.66,0,0,0,1093.7286 +1952,2445,4260,-9,4258,4259,1,1,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-1017.5975,1,1,1,2021,6,0,0,37,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.53,61.33,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,393,58392.598,0,0,0,3814.0552,0,1000.1932 +1952,2446,4261,-9,4258,4259,1,0,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-1089.3687,-9,2,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0070598647,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,1540,-128916.76,0,0,0,0,0,106.39378 +1953,2447,4262,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1060.9192,1,3,3,2021,12,4,0,36,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,47.63,-9,-9,6.666666666666667,2,3,0,0,1,9,1,0,97,53671.715,0,0,0,0,0,823.27203 +1954,2448,4263,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1167.703,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.55,48.3,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,448,90434.359,0,0,0,2015.2081,0,1020.1288 +1955,2449,4264,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,6.1000085,6.1395917,0,0,-1024.2937,0,3,3,2021,30,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.6407598,6.1158638,29.78,17.81,-9,-9,0,1,1,0,0,3,13,2,0,2067,292051.25,115291.67,103317.9,0,0,0,1307.3827 +1956,2450,4265,-9,4267,4268,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.4022,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1956,2450,4266,-9,4267,4268,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.4985,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1956,2450,4267,4268,-9,-9,1,0,40,0,3,0,3,3,-9,0,4,8.1536922,8.1630478,0,2,-10,-13.68983,0,-9,-9,2021,6,0,32,0,1,0,0,11.399032,11.399032,0,0,0,0,0,0,0,2,1,1,0,0,0,43.45,52.84,56.94,41.3,8.333333333333334,1,1,0,0,11,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1956,2450,4268,4267,-9,-9,1,1,50,0,3,0,1,1,-9,0,3,9.3107166,9.5553207,0,2,10,-46.843292,-9,3,2,2021,7,0,37,0,1,0,0,51.167065,51.167065,.05,.05,0,0,0,0,0,0,1,1,0,7.4424567,0,56.94,41.3,43.45,52.84,6.666666666666667,1,1,0,0,10,13,5,1,1669.75,3161445.3,2673965.5,599773.88,32433.264,0,3018.1143,6605.1221 +1957,2451,4269,4270,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.9916582,8.0473871,0,30,-2,21.344942,0,2,2,2021,12,1,33,32,1,1,0,10.136024,10.136024,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44.66,57.83,20.4,61.16,8.333333333333334,1,1,0,0,12,2,5,1,672,372453.91,59359.695,304577.5,40135.684,0,0,3819.4087 +1957,2451,4270,4269,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.7207718,8.9050751,0,30,2,-27.900795,0,3,3,2021,19,6,43,47,1,6,0,22.22891,22.22891,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,20.4,61.16,44.66,57.83,1.666666666666667,1,1,0,0,12,2,5,1,672,372453.91,59359.695,304577.5,40135.684,0,0,3819.4087 +1957,2452,4271,-9,4269,4270,1,0,20,0,0,0,2,2,1,0,2,5.6988106,6.1432095,0,0,0,-1079.6855,-9,2,1,2021,12,3,37,0,1,3,1,1.1465167,1.1465167,0,0,0,0,0,0,0,0,1,1,0,3.481153,0,19.09,57.83,-9,-9,6.666666666666667,1,1,0,0,2,2,2,1,583,-109808.1,0,0,0,0,0,-403.81198 +1958,2453,4272,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,3,5.1117435,4.8483539,0,0,0,-1013.5345,0,2,3,2021,11,1,6,6,1,1,0,2.7992258,2.7992258,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,55.36,-9,-9,1.666666666666667,1,1,0,0,3,7,2,1,2094,-14588.074,0,0,0,0,0,642.50775 +1959,2454,4273,-9,4277,4275,1,0,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.2157,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4274,-9,4277,4275,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.62933,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4275,4277,-9,-9,1,1,41,1,3,0,1,1,-9,0,4,0,0,0,6,6,-25.269114,0,2,1,2021,20,6,0,38,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.13,61.39,44.12,42.96,5,2,3,1,1,7,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4276,-9,4277,4275,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-956.15747,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1959,2454,4277,4275,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,5.911725,5.7246876,0,16,-6,59.640259,0,2,2,2021,15,3,15,10,1,3,0,2.3937311,2.3937311,0,0,0,0,0,0,0,0,1,1,0,0,0,44.12,42.96,34.13,61.39,6,2,3,0,1,8,8,2,1,642,1475636,411088.78,940112.38,0,10611.805,0,1263.3834 +1960,2455,4278,4279,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.0794368,5.0208559,7,1,93.361,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1889906,5.0896459,40.98,55.39,56.23,52.63,8.333333333333334,1,1,0,0,0,11,4,1,2298,1346925,951169.63,296687.63,0,0,584.05157,3052.1265 +1960,2455,4279,4278,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,8.1374426,8.3507929,7,-1,-119.79988,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4053702,8.2371454,56.23,52.63,40.98,55.39,8.333333333333334,1,1,0,0,0,11,4,1,2298,1346925,951169.63,296687.63,0,0,584.05157,3052.1265 +1961,2456,4280,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.8152657,9.1556654,0,0,0,-1036.2656,0,2,2,2021,14,5,40,40,1,5,0,16.855146,16.855146,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.1,48.4,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,159,73438.828,38310.664,0,0,2024.4938,485.67374,2775.2407 +1962,2457,4281,4282,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.3656683,7.2072744,33,-1,25.451523,-9,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,4.0190568,6.8591332,58.32,50.22,52,54.51,8.333333333333334,1,1,0,0,4,6,3,1,953,434063.78,184248.66,134555.91,0,0,0,2150.5435 +1962,2457,4282,4281,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.0148745,7.3455186,5.738091,33,1,-28.204512,-9,-9,-9,2021,10,0,10,0,1,0,0,10.369676,10.369676,0,0,0,0,0,0,0,0,0,0,0,6.0251646,5.8081951,52,54.51,58.32,50.22,8.333333333333334,1,1,0,0,9,6,3,1,953,434063.78,184248.66,134555.91,0,0,0,2150.5435 +1963,2458,4283,4284,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.9971342,7.9349952,0,5,5,81.906509,0,2,2,2021,16,5,38,38,1,5,0,8.5939903,8.5939903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,58.47,50.22,8.333333333333334,1,1,0,0,11,2,5,1,865.5,552192.38,293280.38,209621.03,65081.465,0,1403.1995,4181.6885 +1963,2458,4284,4283,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.9280853,8.9013472,0,5,-5,36.58316,0,-9,-9,2021,7,0,35,35,1,0,0,22.356976,22.356976,.05,.05,0,0,0,0,0,0,0,0,0,3.4204433,0,58.47,50.22,49.58,55.59,5,1,1,0,0,5,2,5,1,865.5,552192.38,293280.38,209621.03,65081.465,0,1403.1995,4181.6885 +1963,2459,4285,-9,4283,4284,1,1,19,0,0,0,2,2,-9,0,3,6.7994723,6.6096492,0,0,0,-1067.28,0,2,1,2021,9,0,14,16,1,0,1,7.5809541,7.5809541,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,47.62,-9,-9,8.333333333333334,1,1,0,1,3,2,2,1,84,81311.594,0,0,0,1369.2333,-525.21307,1132.1569 +1964,2460,4286,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5649476,7.4786592,0,0,-983.91333,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3314528,7.4139066,57.16,56.15,-9,-9,10,1,1,0,0,5,4,3,1,469,526316.81,322131.03,139344.02,0,0,0,1276.1281 +1965,2461,4287,4289,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3135338,8.3308105,0,7,-1,12.633001,0,2,1,2021,6,0,37,43,1,0,0,12.29739,12.29739,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.55,43.6,8.333333333333334,1,1,0,0,8,10,4,1,1527,131003.77,73608.125,302887.19,70180.641,0,0,2732.1292 +1965,2461,4288,-9,4289,4287,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1002.0858,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,4,1,1527,131003.77,73608.125,302887.19,70180.641,0,0,2732.1292 +1965,2461,4289,4287,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.7851191,7.9889846,0,7,1,-106.79745,0,3,3,2021,10,3,35,35,1,3,0,9.8804598,9.8804598,0,0,0,0,0,0,0,0,1,1,0,4.5664883,0,41.55,43.6,57.16,56.15,3.333333333333333,1,1,0,0,7,10,4,1,1527,131003.77,73608.125,302887.19,70180.641,0,0,2732.1292 +1966,2462,4290,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.5323567,6.5058846,0,0,-1057.7327,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6076994,6.7626772,51.25,50.81,-9,-9,5,1,1,0,0,5,7,2,1,384,255578.86,103323.59,172938.72,0,0,0,434.32748 +1967,2463,4291,4292,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.0210648,8.5475645,6.6967201,2,11,76.590881,0,2,2,2021,13,1,45,45,1,1,0,9.0309782,9.0309782,.05,.05,0,0,0,0,0,0,0,0,0,1.3884732,7.24437,45.13,37.37,27.81,65.69,3.333333333333333,1,1,0,0,8,10,5,1,906,920711.25,485396.41,364874.69,0,0,0,5019.6191 +1967,2463,4292,4291,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.4783545,8.8598433,7.1157403,2,-11,35.994923,0,-9,2,2021,30,12,38,37,1,12,0,10.798229,10.798229,.05,.05,0,0,0,0,0,2,0,0,0,7.2155643,7.3385425,27.81,65.69,45.13,37.37,1.666666666666667,1,1,0,0,11,10,5,1,906,920711.25,485396.41,364874.69,0,0,0,5019.6191 +1968,2464,4293,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.0782719,8.4325705,0,0,0,-881.39893,0,3,3,2021,9,0,42,45,1,1,0,8.3528576,8.3528576,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,8,1,1,0,0,13,9,4,1,599,1181929.6,607070.94,272153.13,0,0,0,744.01581 +1969,2465,4294,4295,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,54,-7,-31.142633,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,47.08,39.28,43.4,49.68,5,1,1,0,0,0,6,2,1,455,264430.63,84853.367,146466.09,0,0,0,1450.2307 +1969,2465,4295,4294,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.8794169,6.8879857,54,7,-135.02249,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1060138,6.7101927,43.4,49.68,47.08,39.28,8.333333333333334,1,1,0,0,1,6,2,1,455,264430.63,84853.367,146466.09,0,0,0,1450.2307 +1969,2466,4296,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.6396937,7.5913844,0,0,0,-1010.453,0,-9,-9,2021,8,0,29,29,1,0,0,6.4440012,6.4440012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,951,-124408.45,-95052.43,0,0,0,0,965.5542 +1970,2467,4297,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.2000136,7.3439522,0,0,-1052.6118,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9830132,7.5316863,35.54,43.14,-9,-9,3.333333333333333,1,1,0,0,1,12,3,1,1435,241087.89,105863.3,78025.781,0,9278.6904,0,1971.187 +1971,2468,4298,4299,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6991301,6.4360952,11,-2,-131.47389,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2291133,6.531209,62.27,48.47,60.29,52.11,8.333333333333334,1,1,0,0,1,5,3,1,436.5,355880.38,231934.66,121281.79,0,0,0,2578.866 +1971,2468,4299,4298,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.8651004,7.4009142,11,2,-126.65032,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2483215,6.8734841,60.29,52.11,62.27,48.47,6.666666666666667,1,1,0,0,1,5,3,1,436.5,355880.38,231934.66,121281.79,0,0,0,2578.866 +1972,2469,4300,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.493001,8.3969622,0,0,0,-1105.1602,0,2,2,2021,9,1,45,46,1,1,0,9.8643503,9.8643503,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49,50,-9,-9,6.666666666666667,1,1,0,0,6,2,5,0,202,1436447,1416132.3,0,0,0,0,2139.698 +1973,2470,4301,-9,4302,4304,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.86993,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1973,2470,4302,4304,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,8.4124689,8.2719984,0,9,-3,82.310501,0,2,2,2021,6,1,34,34,1,1,0,14.344726,14.344726,.05,.05,0,0,0,0,0,0,1,1,0,2.4943752,0,49.61,54.24,58.76,52.91,10,1,1,0,0,6,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1973,2470,4303,-9,4302,4304,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.8763,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1973,2470,4304,4302,-9,-9,1,1,37,1,2,0,1,1,-9,0,5,8.8534966,9.1358795,0,9,3,-38.479774,0,2,3,2021,6,0,50,43,1,0,0,17.394262,17.394262,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.76,52.91,49.61,54.24,10,1,1,0,0,9,10,5,1,904,677420.38,322956.41,280101.25,112273.06,5571.9497,0,5188.6636 +1974,2471,4305,-9,4307,4308,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1045.8459,-9,2,2,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,58.15,-9,-9,6.666666666666667,1,1,0,0,1,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1974,2471,4306,-9,4307,4308,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1108.7635,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1974,2471,4307,4308,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.8285809,7.5778337,0,8,2,-42.144325,0,2,2,2021,11,0,31,29,1,0,0,7.5898247,7.5898247,.05,.05,0,0,0,0,0,0,1,1,0,2.0360956,0,41.79,57.73,58.54,54.14,8.333333333333334,1,1,0,0,10,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1974,2471,4308,4307,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,0,0,0,8,-2,129.62027,0,2,1,2021,2,0,0,35,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9398565,0,58.54,54.14,41.79,57.73,8.333333333333334,1,1,0,0,11,7,2,1,292.25,-21179.605,-9565.6289,0,0,0,0,1087.4982 +1975,2472,4309,4310,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,33,5,0,0,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.69,17.76,47.32,52.7,3.333333333333333,2,3,0,1,3,4,1,1,247.5,161800.88,0,0,0,3858.8525,0,824.20587 +1975,2472,4310,4309,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,33,-5,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.32,52.7,41.69,17.76,8.333333333333334,2,3,0,1,0,4,1,1,247.5,161800.88,0,0,0,3858.8525,0,824.20587 +1976,2473,4311,4312,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.7021952,8.6106501,0,35,-3,-66.473175,0,3,3,2021,11,0,32,32,1,2,0,28.320068,28.320068,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,37.47,57.09,8.333333333333334,1,1,0,0,14,7,5,1,855.5,798135.88,673644,391362.34,247521.25,0,12981.619,4703.374 +1976,2473,4312,4311,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.1904106,9.2489166,0,36,3,-110.56942,0,-9,-9,2021,14,5,37,37,1,5,0,30.765875,30.765875,0,0,0,0,0,0,0,0,1,1,0,0,0,37.47,57.09,49,50,8.333333333333334,1,1,0,0,14,7,5,1,855.5,798135.88,673644,391362.34,247521.25,0,12981.619,4703.374 +1977,2474,4313,4314,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.8686581,6.8660283,27,-1,-19.811668,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,27.767666,0,2,1,1,0,6.002233,6.6680336,39.78,30.86,34.42,25.38,5,1,1,0,0,7,6,3,0,633,568619,354910.81,148842.19,0,0,0,3230.655 +1977,2474,4314,4313,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,7.4897227,7.1805634,27,1,44.046467,0,3,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,43.011326,0,2,1,1,0,7.4044447,7.4828176,34.42,25.38,39.78,30.86,3.333333333333333,1,1,0,0,4,6,3,0,633,568619,354910.81,148842.19,0,0,0,3230.655 +1978,2475,4315,4316,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,52,1,-60.300652,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1741381,0,53.79,41.29,62.42,26.88,5,1,1,0,0,0,2,2,1,566,527892.81,380927.88,218018.83,0,0,0,2153.1265 +1978,2475,4316,4315,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,6.8430119,6.6600685,52,-1,20.491705,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.639493,6.6576991,62.42,26.88,53.79,41.29,6.666666666666667,1,1,0,0,10,2,2,1,566,527892.81,380927.88,218018.83,0,0,0,2153.1265 +1979,2476,4317,-9,4319,4318,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-979.56769,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5798869,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,614,0,0,0,0,0,0,1474.389 +1979,2477,4318,4319,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,6,11,90.283051,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,21.91,35.67,64.46000000000001,3.333333333333333,1,1,0,0,0,6,2,1,596,121756.95,201136.89,0,0,0,0,1205.8956 +1979,2477,4319,4318,-9,-9,1,0,44,0,0,0,2,2,-9,1,4,5.0776329,4.9430552,0,6,-11,46.566502,0,3,2,2021,20,9,3,3,1,9,0,6.9577684,6.9577684,0,0,0,0,0,0,0,120,1,1,0,0,0,35.67,64.46000000000001,37.41,21.91,3.333333333333333,1,1,0,1,11,6,2,1,596,121756.95,201136.89,0,0,0,0,1205.8956 +1980,2478,4320,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.4677668,8.8250513,8.2174282,0,0,-913.61505,0,3,3,2021,19,7,37,37,1,7,0,17.119915,17.119915,.05,.05,0,0,0,0,0,0,0,0,0,0,8.377634,46.96,37.93,-9,-9,3.333333333333333,1,1,0,0,14,1,5,1,474,13569.764,127692.76,165999.69,119843.67,4285.4341,24925.553,3198.5105 +1981,2479,4321,4322,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,5,-8,-50.177303,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,0,1,2.0797739,0,49,48,53,47,7,1,1,1,0,0,11,2,0,415,1083650.8,60880.629,981436.81,0,0,0,2386.9277 +1981,2479,4322,4321,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.36202,5.3671885,5,8,162.1566,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,5.2078238,53,47,49,48,7,1,1,0,0,0,11,2,0,415,1083650.8,60880.629,981436.81,0,0,0,2386.9277 +1982,2480,4323,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.139,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,10.468124,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,1004,-17439.055,0,130276.09,0,0,0,1155.9708 +1983,2481,4324,4325,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.5989285,8.5417738,0,7,6,-17.031059,0,2,2,2021,8,0,65,60,1,0,0,10.294345,10.294345,.05,.05,0,0,0,0,0,0,1,1,0,6.3712735,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,8,12,4,1,1210,306960.59,85944.727,260807.41,0,0,0,2817.7612 +1983,2481,4325,4324,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.4688892,6.5121145,0,7,-6,-67.615715,0,2,2,2021,8,1,60,50,1,1,0,1.1117351,1.1117351,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,1210,306960.59,85944.727,260807.41,0,0,0,2817.7612 +1984,2482,4326,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,4.7154131,4.8273034,0,0,-1039.0649,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7646453,4.8511677,44.72,36.6,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,449,203932.13,120054.98,171919.44,0,0,0,199.00246 +1985,2483,4327,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.6468277,4.5675731,0,0,-1025.0985,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7133117,57.16,56.15,-9,-9,10,1,1,0,0,0,10,2,0,362,260696.77,3742.8054,35282.055,0,0,0,322.40594 +1986,2484,4328,4330,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,9.0200872,8.9808655,0,18,1,-58.273518,0,-9,-9,2021,5,0,49,56,1,0,0,16.535582,16.535582,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.05,54.52,49.16,55.59,8.333333333333334,3,4,0,1,6,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4329,-9,4330,4328,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.7091,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4330,4328,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.7851543,8.6577797,0,18,-1,1.856169,0,-9,-9,2021,7,0,41,37,1,0,0,12.644103,12.644103,0,0,0,0,0,0,0,0,1,1,0,0,0,49.16,55.59,58.05,54.52,8.333333333333334,3,4,0,1,8,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4331,-9,4330,4328,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1007.3861,-9,1,1,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1986,2484,4332,-9,4330,4328,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1034.549,-9,1,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.43,50.71,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,992,1806189.6,830638.5,871575.13,0,0,0,5048.9941 +1987,2485,4333,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.9538655,7.5137239,0,0,0,-1004.5766,0,2,2,2021,7,0,12,13,1,0,0,23.020254,23.020254,0,0,.05,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,783,-105196.89,61757.125,0,0,0,0,1153.2722 +1987,2486,4334,-9,4333,-9,1,1,24,0,0,0,2,2,-9,0,3,7.8505988,8.4184332,0,0,0,-1024.2415,-9,3,-9,2021,14,2,50,0,1,2,1,8.1195908,8.1195908,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.88,49.06,-9,-9,5,1,1,0,0,4,9,4,0,1646,-255336.14,4657.4741,0,0,0,0,1543.8595 +1988,2487,4335,4336,-9,-9,1,1,41,0,0,0,3,3,-9,1,1,0,0,0,3,-1,40.297962,0,3,3,2021,20,9,0,0,3,9,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,21.21,36.83,51.24,58.84,5,1,1,0,0,0,12,3,0,946.5,353335.94,108684.58,106817.16,0,0,0,1481.4111 +1988,2487,4336,4335,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.8081932,8.1182919,0,3,1,1.8363187,-9,-9,-9,2021,10,1,40,0,1,1,0,8.6761446,8.6761446,0,0,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,21.21,36.83,6.666666666666667,1,1,0,0,3,12,3,0,946.5,353335.94,108684.58,106817.16,0,0,0,1481.4111 +1989,2488,4337,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.131875,7.9947762,0,0,0,-991.68793,0,2,2,2021,10,0,42,43,1,0,0,7.5919061,7.5919061,.05,.05,0,0,0,0,0,0,0,0,0,.83397448,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,2919,252147.5,37248.621,110785,16905.691,-157.66425,0,936.63544 +1990,2489,4338,4340,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.7616367,8.8962431,0,2,-2,114.16124,0,-9,-9,2021,10,0,39,38,1,0,0,17.260084,17.260084,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,5,1,1,0,0,10,10,4,1,734,34282.965,0,150110.09,22601.402,0,0,2461.9822 +1990,2489,4339,-9,4340,4338,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1005.4722,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,0,10,4,1,734,34282.965,0,150110.09,22601.402,0,0,2461.9822 +1990,2489,4340,4338,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,0,0,0,2,2,69.804825,0,-9,-9,2021,9,0,0,23,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,5,1,1,0,0,10,10,4,1,734,34282.965,0,150110.09,22601.402,0,0,2461.9822 +1990,2490,4341,-9,4340,4338,1,1,28,0,1,0,2,2,-9,0,4,7.4815054,7.5182734,0,0,0,-928.05994,0,2,2,2021,6,0,30,30,1,0,1,8.2900362,8.2900362,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,7,10,3,1,905,-137007.13,0,0,0,0,0,591.33459 +1990,2491,4342,-9,4340,4338,1,1,27,0,1,0,2,2,-9,0,4,7.4462214,7.5267811,0,0,0,-894.99292,0,2,2,2021,9,0,30,37,1,0,1,5.9382906,5.9382906,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,9,10,3,1,581,-64754.137,0,0,0,0,0,524.21442 +1991,2492,4343,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.8729167,8.1762848,0,0,0,-934.37701,0,1,-9,2021,12,0,40,40,1,0,0,11.425756,11.425756,0,0,0,0,0,0,0,2,1,1,0,0,0,45.73,57.57,-9,-9,3.333333333333333,4,5,0,0,8,8,4,0,558,549569.13,169047.16,439538.66,99697.344,0,0,1780.0856 +1991,2493,4344,-9,4343,-9,1,1,27,0,0,0,1,1,-9,1,3,0,0,0,0,0,-998.88306,0,2,-9,2021,27,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,41.97,-9,-9,0,4,2,0,0,2,8,1,0,617,9505.6543,0,0,0,0,0,1396.7274 +1992,2494,4345,-9,4348,4347,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-970.81738,-9,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1992,2494,4346,-9,4348,4347,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.1225,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1992,2494,4347,4348,-9,-9,1,1,44,0,1,0,2,2,-9,1,1,6.817697,6.6027365,0,14,13,-67.135597,0,-9,-9,2021,20,7,15,15,1,7,0,4.8720121,4.8720121,0,0,0,0,0,0,0,0,1,1,0,0,0,35.4,17.75,54.79,55.86,3.333333333333333,1,1,0,1,9,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1992,2494,4348,4347,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,6.8038511,6.4580493,0,14,-13,-115.86463,0,-9,-9,2021,11,0,20,20,1,0,0,5.0986834,5.0986834,0,0,0,0,0,0,0,106,1,1,0,0,0,54.79,55.86,35.4,17.75,8.333333333333334,1,1,0,1,7,2,2,0,773.75,43294.336,0,0,0,51.612579,252.14114,2224.8374 +1993,2495,4349,4350,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.2322378,7.3846059,8,-8,-40.103714,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2786007,35.48,23.07,43.01,42.51,1.666666666666667,1,1,0,0,0,9,3,1,557,1341474.3,924806.25,216220,0,0,0,2578.7668 +1993,2495,4350,4349,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.5257416,6.4263005,8,8,35.578144,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.5811005,43.01,42.51,35.48,23.07,3.333333333333333,1,1,0,1,2,9,3,1,557,1341474.3,924806.25,216220,0,0,0,2578.7668 +1994,2496,4351,-9,4353,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.62061,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,3,1,837,-44003.641,-65905.914,0,0,0,1854.6084,2378.3782 +1994,2496,4352,-9,4353,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-981.51733,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,837,-44003.641,-65905.914,0,0,0,1854.6084,2378.3782 +1994,2496,4353,-9,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.3700538,7.5494833,0,0,0,-1047.3594,0,-9,-9,2021,16,4,31,32,1,4,0,7.1615992,7.1615992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.81,62.39,-9,-9,6.666666666666667,1,1,0,0,8,6,3,1,837,-44003.641,-65905.914,0,0,0,1854.6084,2378.3782 +1995,2497,4354,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,8.0277538,8.0185547,0,0,0,-799.20758,0,3,3,2021,6,0,39,39,1,0,0,7.7805753,7.7805753,0,0,0,0,0,0,0,2,1,1,0,0,0,47.47,36.64,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,636,0,0,0,0,0,0,1279.4573 +1996,2498,4355,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.2985239,8.3067522,0,0,0,-1026.7982,0,3,3,2021,12,1,35,35,1,1,0,13.32861,13.32861,0,0,0,0,0,0,0,0,0,0,0,5.0661597,0,49.86,55.31,-9,-9,6.666666666666667,2,3,0,0,10,8,4,1,301,102837.89,51632.652,98874.477,0,0,0,1811.8278 +1997,2499,4356,-9,4357,4358,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.5164,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,912,142671.17,124312.1,104329.54,37922.063,9465.4512,0,2630.8701 +1997,2499,4357,4358,-9,-9,1,0,35,0,1,0,1,1,-9,0,2,8.2585125,8.2499571,.42625993,6,-5,19.729994,0,-9,-9,2021,28,12,37,39,1,12,0,14.668521,14.668521,.05,.05,0,0,0,0,0,0,1,1,0,.43137914,0,10.47,64.66,27.8,61.29,3.333333333333333,1,1,0,0,8,2,4,1,912,142671.17,124312.1,104329.54,37922.063,9465.4512,0,2630.8701 +1997,2499,4358,4357,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.2844858,8.0797825,0,6,5,103.95653,0,2,2,2021,12,1,55,52,1,1,0,6.1275549,6.1275549,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.8,61.29,10.47,64.66,6.666666666666667,1,1,0,0,5,2,4,1,912,142671.17,124312.1,104329.54,37922.063,9465.4512,0,2630.8701 +1998,2500,4359,4360,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,9.0540972,9.011302,0,8,1,-58.7216,0,2,3,2021,11,0,48,45,1,0,0,19.476368,19.476368,0,0,0,0,0,0,0,0,0,0,0,3.185313,0,57.06,57.76,57.06,57.76,8.333333333333334,2,3,0,0,6,7,5,1,426.5,158983.38,64250.84,0,0,0,0,4506.1309 +1998,2500,4360,4359,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,9.1340561,8.8927374,0,8,-1,-127.629,0,-9,-9,2021,9,0,43,50,1,0,0,22.930857,22.930857,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,7,5,1,426.5,158983.38,64250.84,0,0,0,0,4506.1309 +1999,2501,4361,4362,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.516263,8.4911766,0,26,-2,34.590679,0,2,2,2021,13,2,10,20,1,2,0,52.302773,52.302773,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.03,42.65,49.97,56.66,8.333333333333334,1,1,0,0,6,9,5,1,1446,1062275.1,487358.38,342168.88,0,0,0,6623.6504 +1999,2501,4362,4361,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.86374,9.7926931,0,26,2,22.096376,0,2,1,2021,8,0,52,50,1,0,0,36.064346,36.064346,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,60.03,42.65,8.333333333333334,1,1,0,0,13,9,5,1,1446,1062275.1,487358.38,342168.88,0,0,0,6623.6504 +1999,2502,4363,-9,4361,4362,1,0,23,0,0,0,1,1,1,0,4,7.9605575,8.0504122,0,0,0,-1015.1884,-9,2,2,2021,5,0,35,0,1,0,1,10.430129,10.430129,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,345,-7937.1479,0,0,0,0,0,1423.0072 +2000,2503,4364,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.6306171,8.4178848,0,0,0,-982.23486,0,2,2,2021,10,0,60,58,1,0,0,8.4269438,8.4269438,.05,.05,0,0,0,0,0,0,1,1,0,6.1868095,0,57.49,34.36,-9,-9,8.333333333333334,1,1,0,0,13,10,4,0,290,162162.23,251999.55,103305.48,9889.8496,0,0,2707.9509 +2001,2504,4365,4366,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,0,0,0,1,-13,48.624649,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,46.21,40.7,8.333333333333334,1,1,1,0,2,4,4,0,395.5,54446.695,415.75684,152438.59,41073.762,0,0,1615.2104 +2001,2504,4366,4365,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3507004,8.3534355,0,1,13,-16.751827,-9,-9,-9,2021,13,1,48,0,1,1,0,9.4737911,9.4737911,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,40.7,47.32,52.7,5,1,1,0,1,3,4,4,0,395.5,54446.695,415.75684,152438.59,41073.762,0,0,1615.2104 +2002,2505,4367,4368,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,9,2,0,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.78,20.93,58.97,47.32,8.333333333333334,3,4,0,0,0,2,1,1,1144,95211.406,0,174997.19,0,0,0,360.63458 +2002,2505,4368,4367,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-2,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,58.97,47.32,45.78,20.93,8.333333333333334,3,4,0,0,0,2,1,1,1144,95211.406,0,174997.19,0,0,0,360.63458 +2003,2506,4369,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,5.2525353,5.13065,0,0,-1020.1935,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.6026175,.79102093,30.117479,0,1,1,0,4.5308189,4.931428,37.66,20.64,-9,-9,8.333333333333334,2,3,0,0,0,7,2,1,1008,-143219.83,9316.2988,0,0,0,0,2350.5095 +2004,2507,4370,-9,4373,4372,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.93225,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2004,2507,4371,-9,4373,4372,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.6132,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2004,2507,4372,4373,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,9.1145687,9.482276,0,13,3,88.209312,0,2,2,2021,9,0,39,38,1,0,0,31.379059,31.379059,.05,.05,0,0,0,0,0,0,0,0,0,1.011138,0,44.75,56.39,57.06,57.76,8.333333333333334,1,1,0,0,15,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2004,2507,4373,4372,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.5926266,8.5150824,0,13,-3,96.869049,0,-9,-9,2021,12,0,27,0,1,0,0,20.787519,20.787519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,44.75,56.39,5,1,1,0,0,12,4,5,1,394.75,230786.53,95300.5,514221.81,365561.25,2335.429,0,5277.3037 +2005,2508,4374,-9,4378,4380,1,0,10,2,5,1,3,0,-9,0,5,0,0,0,0,0,-963.33618,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4375,-9,4378,4380,1,1,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1021.4076,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4376,-9,-9,4380,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1054.9292,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4377,-9,4378,4380,1,0,15,2,5,1,3,0,-9,0,3,0,0,0,0,0,-882.90002,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4378,4380,-9,-9,1,0,41,2,5,0,3,3,-9,0,4,0,0,0,4,6,68.808006,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.04,54.63,46,52,5,1,1,1,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4379,-9,4378,4380,1,0,8,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1126.813,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2005,2508,4380,4378,-9,-9,1,1,35,2,5,0,2,2,-9,0,3,8.4756823,8.4043226,0,4,-6,127.72704,0,-9,-9,2021,15,5,45,42,1,5,0,12.669022,12.669022,0,0,0,0,0,0,0,0,1,1,0,0,0,46,52,34.04,54.63,1.666666666666667,1,1,0,0,5,2,3,0,862.14288,-22612.322,0,0,0,5539.2476,0,2948.9304 +2006,2509,4381,4382,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4493628,8.5296097,0,6,-8,8.9501715,0,3,3,2021,12,0,40,44,1,0,0,11.723767,11.723767,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.22,50.02,54.2,57.49,8.333333333333334,1,1,0,0,7,12,5,1,885.5,752912.88,457071.94,42897.598,0,0,0,3250.7969 +2006,2509,4382,4381,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2270432,8.3816109,0,6,8,-158.27136,0,2,2,2021,9,0,46,42,1,0,0,8.925128,8.925128,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.2,57.49,53.22,50.02,8.333333333333334,1,1,0,0,7,12,5,1,885.5,752912.88,457071.94,42897.598,0,0,0,3250.7969 +2006,2510,4383,-9,4382,4381,1,0,23,0,0,0,1,1,-9,0,4,8.2970495,8.1906328,0,0,0,-941.82867,0,2,2,2021,9,0,37,50,1,0,1,10.399774,10.399774,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,556,-103973.89,-26836.482,0,0,0,0,1756.5681 +2007,2511,4384,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.4893408,8.455411,0,0,-1102.5811,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8257556,8.7823153,54.97,50.31,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,630,1026764.9,817559.75,153322.69,0,0,0,3609.8704 +2008,2512,4385,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,8.0099316,8.1966534,0,0,-950.56488,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2775605,8.277813,55,45,-9,-9,8,1,1,0,0,0,9,4,1,334,608227.63,309166.38,285607.41,0,0,0,3068.6929 +2009,2513,4386,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-902.6474,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,14.637776,0,136.94696,0,0,0,0,0,0,49,47,-9,-9,7,1,1,0,0,0,11,2,0,154,56019.332,0,0,0,0,0,0 +2010,2514,4387,4388,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.9383907,7.9034262,0,13,-2,-66.862862,0,3,2,2021,18,7,16,24,1,7,0,18.737041,18.737041,0,0,0,0,0,0,0,0,1,1,0,0,0,35.13,48.1,52.99,28.56,0,1,1,0,0,14,1,3,1,665,782545.38,677633.81,172048.25,0,-1697.5846,1320.1902,1769.9933 +2010,2514,4388,4387,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,13,2,-80.076927,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,28.56,35.13,48.1,10,1,1,0,0,0,1,3,1,665,782545.38,677633.81,172048.25,0,-1697.5846,1320.1902,1769.9933 +2011,2515,4389,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.88204,8.0402622,0,0,-1057.4926,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3013229,7.7223387,43.67,61.06,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,1033,653191.06,53219.633,312197.25,0,0,0,-105.32378 +2012,2516,4390,4391,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.1834273,7.9797134,7.4570084,18,7,9.8683853,0,3,2,2021,9,0,16,16,1,0,0,9.0146484,9.0146484,.05,.05,0,0,0,0,0,0,0,0,0,6.9025173,7.3457007,54.13,48.04,54.61,43.6,6.666666666666667,1,1,0,0,13,4,4,0,2944.5,868810.25,675632.81,200135.94,0,0,0,2541.9443 +2012,2516,4391,4390,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.445416,7.4807639,0,19,-7,-30.715057,0,2,2,2021,18,6,32,32,1,6,0,6.7486529,6.7486529,0,0,0,0,0,0,0,0,0,0,0,5.5091395,0,54.61,43.6,54.13,48.04,6.666666666666667,1,1,0,0,12,4,4,0,2944.5,868810.25,675632.81,200135.94,0,0,0,2541.9443 +2013,2517,4392,-9,4395,4393,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.64917,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2013,2517,4393,4395,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.9727173,9.0471687,0,10,5,19.973747,0,2,3,2021,12,0,40,37,1,0,0,17.243877,17.243877,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.06,53.95,48.77,60.16,6.666666666666667,1,1,0,0,11,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2013,2517,4394,-9,4395,4393,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1135.777,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2013,2517,4395,4393,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.0155172,7.9843059,0,10,-5,-64.486427,0,3,2,2021,8,0,28,25,1,0,0,14.376941,14.376941,.05,.05,0,0,0,0,0,0,1,1,0,2.2389085,0,48.77,60.16,42.06,53.95,6.666666666666667,1,1,0,0,11,10,4,1,786.25,334551.75,95353.906,269684.34,0,16678.156,2218.4197,3526.229 +2014,2518,4396,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.0705204,6.7164712,0,0,0,-991.9389,0,-9,-9,2021,17,5,13,12,1,5,0,8.1556368,8.1556368,0,0,0,0,0,0,0,0,0,0,0,5.743494,0,36.08,60.5,-9,-9,6.666666666666667,1,1,0,0,3,8,2,0,320,91196.578,0,0,0,0,0,715.60602 +2015,2519,4397,-9,4398,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.20673,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,0,895.66669,50806.957,0,0,0,-133.04477,0,2061.731 +2015,2519,4398,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,1,0,0,0,0,0,-999.33667,0,2,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.53,24.61,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,895.66669,50806.957,0,0,0,-133.04477,0,2061.731 +2015,2519,4399,-9,4398,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1049.6639,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,1,0,895.66669,50806.957,0,0,0,-133.04477,0,2061.731 +2016,2520,4400,-9,4402,4401,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.241,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4401,4402,-9,-9,1,1,49,0,3,0,3,3,-9,0,3,0,0,0,27,9,-48.648815,0,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.41,46.94,50.58,56.41,8.333333333333334,2,3,1,0,4,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4402,4401,-9,-9,1,0,40,0,3,0,2,2,-9,0,3,7.6808105,7.7783656,0,7,0,1.3254974,0,-9,-9,2021,5,0,30,27,1,0,0,6.8947105,6.8947105,0,0,0,0,0,0,0,0,1,1,0,0,0,50.58,56.41,44.41,46.94,8.333333333333334,2,3,0,0,10,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4403,-9,4402,4401,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.1855,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2520,4404,-9,4402,4401,1,0,16,0,3,1,2,0,-9,0,2,0,0,0,0,0,-947.80975,-9,2,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,52.35,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,602,-41817.07,0,0,0,0,2119.9707,2226.1538 +2016,2521,4405,-9,4402,4401,1,1,21,0,3,1,2,0,0,0,3,0,0,0,0,0,-1039.3337,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.56819534,0,63.8,49.17,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,1260,-63104.285,0,0,0,0,0,-227.80127 +2016,2522,4406,-9,4402,4401,1,1,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1053.8513,-9,2,3,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.46362588,0,54.21,50.73,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,602,0,0,0,0,0,0,456.43231 +2017,2523,4407,4408,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,9,2,0,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.32,16.87,60.45,24.99,8.333333333333334,1,1,0,0,3,4,1,1,514,114265.11,64374.281,95185.461,31181.211,0,328.71564,-721.59265 +2017,2523,4408,4407,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,9,-2,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.5123842,0,60.45,24.99,46.32,16.87,8.333333333333334,1,1,0,0,12,4,1,1,514,114265.11,64374.281,95185.461,31181.211,0,328.71564,-721.59265 +2018,2524,4409,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,5.2382612,5.2581577,0,0,-972.69434,0,3,3,2021,19,4,0,0,4,4,0,0,0,0,0,0,0,2.2820301,0,26.621437,0,1,1,0,0,5.6318493,39.37,25.14,-9,-9,5,1,1,0,0,0,9,2,1,503,-205386.39,0,0,0,0,0,1688.6143 +2019,2525,4410,4411,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.1581688,9.1529121,0,38,-1,-2.0645969,0,3,2,2021,11,2,60,50,1,2,0,24.881741,24.881741,.05,.05,0,0,0,0,.92315674,0,0,0,0,0,0,44.59,59.08,33.48,53.45,8.333333333333334,1,1,0,0,11,9,5,1,329,1453499.3,975094.88,386654.13,0,0,0,4618.1714 +2019,2525,4411,4410,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.9955063,7.5207453,0,38,1,-52.544415,0,2,2,2021,20,8,22,0,1,8,0,13.318227,13.318227,.05,.05,0,0,0,0,0,0,0,0,0,.8361432,0,33.48,53.45,44.59,59.08,3.333333333333333,1,1,0,0,11,9,5,1,329,1453499.3,975094.88,386654.13,0,0,0,4618.1714 +2019,2526,4412,-9,4411,4410,1,1,25,0,0,0,1,1,-9,0,4,8.4831924,8.1094151,0,0,0,-1076.0588,0,1,2,2021,9,1,44,43,1,1,1,10.84882,10.84882,.05,.05,0,0,0,0,0,2,0,0,0,0,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,648,-118729.86,64831.523,147755.95,90474.023,0,0,1875.6534 +2019,2527,4413,-9,4411,4410,1,0,19,0,0,0,2,2,-9,0,3,7.9350886,8.0635033,0,0,0,-932.67578,0,1,2,2021,12,0,38,75,1,0,1,8.3115625,8.3115625,0,0,0,0,0,0,0,0,0,0,0,2.8532772,0,33.47,48.38,-9,-9,6.666666666666667,1,1,0,0,12,9,4,1,255,-126192.41,0,0,0,0,0,1850.7816 +2020,2528,4414,-9,4417,4415,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1027.0106,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2528,4415,4417,-9,-9,1,1,81,0,2,0,2,2,-9,0,5,0,7.2397089,7.2915854,8,25,130.86577,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7186785,7.0420837,67.92,41.85,53.71,49.66,10,1,1,0,0,7,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2528,4416,-9,4417,4415,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1056.7897,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2528,4417,4415,-9,-9,1,0,56,0,2,0,2,2,-9,0,3,0,0,0,18,-25,62.993797,0,3,2,2021,11,0,0,18,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,49.66,67.92,41.85,8.333333333333334,1,1,0,0,7,13,2,1,738.75,1105228.8,0,427025.28,0,16251.518,0,1452.079 +2020,2529,4418,-9,4417,4415,1,1,22,0,2,0,2,2,-9,0,5,7.9803867,7.7622819,0,0,0,-964.79095,0,2,2,2021,0,0,57,47,1,0,1,5.6041675,5.6041675,0,0,0,0,0,0,0,0,1,1,0,0,0,51,61,-9,-9,10,1,1,0,0,6,13,3,1,334,-7.5428309,0,0,0,0,0,1275.6315 +2021,2530,4419,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1037.3251,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,17.53,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,464,48912.492,0,0,0,0,1358.4528,2121.9797 +2022,2531,4420,-9,4422,4421,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.6458,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,1270.3334,490689.25,228167.31,233111.27,68292.117,0,0,6456.8188 +2022,2531,4421,4422,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.933259,9.1871214,0,6,1,116.92201,0,2,1,2021,9,0,37,50,1,0,0,23.685022,23.685022,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.74,57.22,39.97,51.04,8.333333333333334,1,1,0,0,7,5,5,1,1270.3334,490689.25,228167.31,233111.27,68292.117,0,0,6456.8188 +2022,2531,4422,4421,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,9.3848915,9.5293121,0,6,-1,-37.162483,0,-9,-9,2021,16,5,42,47,1,5,0,25.908756,25.908756,0,0,0,0,0,0,0,2,0,0,0,0,0,39.97,51.04,54.74,57.22,5,1,1,0,0,7,5,5,1,1270.3334,490689.25,228167.31,233111.27,68292.117,0,0,6456.8188 +2022,2532,4423,-9,4422,4421,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1003.3627,-9,1,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,172,245325.8,0,0,0,0,0,0 +2023,2533,4424,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1040.3643,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,4,6,1,0,433,7588.1792,0,0,0,17607.861,0,0 +2024,2534,4425,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.3544874,9.1426182,0,0,0,-1054.4296,0,-9,-9,2021,21,9,48,50,1,9,0,28.38788,28.38788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.53,65.61,-9,-9,6.666666666666667,4,2,0,0,9,8,5,1,2228,402668.66,83503.43,551223,460481.56,1287.1287,0,3149.762 +2025,2535,4426,-9,4427,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.6191,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,1126,-76563.18,-24695.816,89312.914,88133.602,13940.784,2633.1924,2550.6445 +2025,2535,4427,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.4823856,8.8962641,5.4201708,0,0,-933.146,0,2,2,2021,9,0,38,38,1,0,0,13.70893,13.70893,0,0,.05,0,0,0,0,0,1,1,0,5.4094033,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,6,4,0,1126,-76563.18,-24695.816,89312.914,88133.602,13940.784,2633.1924,2550.6445 +2026,2536,4428,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,6.0207629,6.4368081,0,0,-856.39148,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0419092,0,0,1,1,0,6.7468905,6.4274697,68.76000000000001,35.93,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,800,154170.95,61812.262,260685.53,0,0,0,1171.3643 +2027,2537,4429,-9,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,7.0228477,7.2461991,0,0,-952.89563,0,2,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.2835302,7.2342887,38.46,31.5,-9,-9,1.666666666666667,1,1,0,0,0,12,2,1,342,-264877.69,-92082.875,0,0,0,0,2766.8635 +2028,2538,4430,4431,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.6196871,9.1247969,6.2543831,17,8,2.5479779,0,2,2,2021,9,1,40,37,1,1,0,26.181774,26.181774,0,0,0,0,0,0,0,0,1,1,0,0,6.5163369,59.46,36.46,59.29,49.68,8.333333333333334,1,1,0,0,8,9,5,1,624.33331,1282361.4,1062906,357892.94,169497.84,0,0,3535.3813 +2028,2538,4431,4430,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,7.7924385,7.7742348,0,17,-8,-113.83667,0,2,2,2021,6,0,40,35,1,0,0,7.6728601,7.6728601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,59.46,36.46,8.333333333333334,1,1,0,0,7,9,5,1,624.33331,1282361.4,1062906,357892.94,169497.84,0,0,3535.3813 +2028,2538,4432,-9,4430,4431,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.76129,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,624.33331,1282361.4,1062906,357892.94,169497.84,0,0,3535.3813 +2029,2539,4433,4434,-9,-9,1,1,33,1,1,0,1,1,-9,0,2,9.3382111,9.3659811,0,11,0,85.988907,0,3,2,2021,17,5,50,42,1,5,0,29.193726,29.193726,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.08,47.28,28.39,61.27,6.666666666666667,1,1,0,0,6,9,5,1,2513,290502.88,-16762.111,497744,139011.22,0,0,4823.73 +2029,2539,4434,4433,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,7.9302864,8.08113,0,11,0,-62.017635,0,2,2,2021,13,1,26,24,1,1,0,13.150024,13.150024,0,0,0,0,0,0,0,0,0,0,0,.20552702,0,28.39,61.27,39.08,47.28,8.333333333333334,1,1,0,0,6,9,5,1,2513,290502.88,-16762.111,497744,139011.22,0,0,4823.73 +2029,2539,4435,-9,4434,4433,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.3107,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,2513,290502.88,-16762.111,497744,139011.22,0,0,4823.73 +2030,2540,4436,4437,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.8515215,8.8606901,0,40,-1,170.2392,0,-9,2,2021,8,0,45,40,1,0,0,25.243773,25.243773,.05,.05,0,0,0,0,0,0,0,0,0,1.8803847,0,62.39,56.71,45.85,61.26,8.333333333333334,1,1,0,0,12,9,5,1,2742,2532415.5,1313850,657457.38,0,0,0,2915.1675 +2030,2540,4437,4436,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,0,0,40,1,-41.613346,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.8789103,0,45.85,61.26,62.39,56.71,6.666666666666667,1,1,0,0,10,9,5,1,2742,2532415.5,1313850,657457.38,0,0,0,2915.1675 +2031,2541,4438,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,0,8.9074802,8.8008022,0,0,-983.66827,0,2,2,2021,16,4,0,41,3,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.8747778,0,34.65,58.34,-9,-9,5,1,1,1,0,8,7,5,1,243,1084862,881447.38,0,0,16107.362,0,3883.9075 +2032,2542,4439,4441,-9,-9,1,1,34,0,2,0,2,2,-9,0,5,10.126073,10.142131,0,8,-3,20.88805,0,3,3,2021,6,0,60,50,1,0,0,39.67767,39.67767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,50.2,52.61,10,1,1,0,0,15,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2032,2542,4440,-9,4441,4439,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.14069,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2032,2542,4441,4439,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,0,0,0,8,3,73.849693,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.8993025,0,50.2,52.61,59.43,58.05,8.333333333333334,1,1,0,0,7,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2032,2542,4442,-9,4441,4439,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.8888,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,546.75,378339.47,461367,208165.28,142033,0,0,9113.7598 +2033,2543,4443,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1112.418,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5609727,0,63.41,39.7,-9,-9,6.666666666666667,1,1,1,1,0,2,1,1,1388,-146328.19,0,0,0,0,0,169.36479 +2034,2544,4444,4445,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,27,0,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,60.86,19.3,32.72,25.62,5,1,1,0,0,0,4,1,1,1617,-104023,-50987.238,0,0,0,0,1606.5748 +2034,2544,4445,4444,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,26,0,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.75236827,0,32.72,25.62,60.86,19.3,5,1,1,0,0,0,4,1,1,1617,-104023,-50987.238,0,0,0,0,1606.5748 +2035,2545,4446,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.0020337,4.8222108,0,0,-907.81207,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8225713,4.3505712,61.88,44.54,-9,-9,10,1,1,0,0,0,13,2,1,713,234548.03,70892.82,0,0,0,0,1547.3082 +2035,2546,4447,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.4654379,6.4082427,0,0,-894.06659,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6327014,57.76,54.51,-9,-9,10,1,1,0,0,0,13,2,1,609,470066.16,55594.699,222466.38,0,0,0,477.25671 +2036,2547,4448,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.9486141,8.9611416,3.5363309,0,0,-979.4696,0,2,3,2021,6,0,57,37,1,0,0,15.87126,15.87126,.05,.05,0,0,0,0,0,0,0,0,0,3.4783738,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,197,348136.66,381841.59,182941.77,61094.648,0,1089.3361,2634.5115 +2036,2548,4449,-9,4448,-9,1,1,31,0,0,0,1,1,-9,0,3,8.0834398,7.9755721,0,0,0,-961.22284,0,2,2,2021,5,0,35,44,1,0,1,10.558253,10.558253,.05,.05,0,0,0,0,0,0,0,0,0,3.579289,0,49.24,42.06,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,317,-8530.4023,27636.057,0,0,17704.836,0,1140.8953 +2036,2549,4450,-9,4448,-9,1,1,33,0,0,0,1,1,-9,0,5,8.1240177,8.1084881,0,0,0,-1038.6624,0,2,2,2021,9,0,38,38,1,0,1,11.455859,11.455859,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.5,63.22,-9,-9,3.333333333333333,1,1,0,0,7,11,4,1,900,242364.17,32860.023,103709.98,13004.922,0,0,1040.3978 +2037,2550,4451,-9,4453,4452,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1071.9458,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2037,2550,4452,4453,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.3817225,9.3644848,0,14,-8,11.570932,0,2,2,2021,12,0,60,60,1,0,0,21.925734,21.925734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.89,53.42,57.06,57.76,6.666666666666667,1,1,0,0,11,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2037,2550,4453,4452,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,6.2465272,6.2860956,0,3,8,-17.267361,0,-9,-9,2021,11,0,10,10,1,0,0,7.6912656,7.6912656,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.06,57.76,47.89,53.42,8.333333333333334,1,1,0,0,4,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2037,2550,4454,-9,4453,4452,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.18201,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,1154,270925.91,103294.01,229487.14,82191.547,0,18903.943,3856.9719 +2038,2551,4455,-9,4457,4456,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1160.3324,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2038,2551,4456,4457,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.1959848,8.3927345,0,10,2,-37.802662,-9,-9,-9,2021,13,2,35,0,1,2,0,10.278828,10.278828,.05,.05,0,0,0,0,0,0,1,1,0,.011686223,0,42.12,52.35,51.49,53.31,5,2,3,0,0,10,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2038,2551,4457,4456,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.3654346,8.6947584,0,6,-2,248.92622,0,-9,-9,2021,5,0,43,39,1,0,0,12.22742,12.22742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,53.31,42.12,52.35,8.333333333333334,2,3,0,0,6,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2038,2551,4458,-9,4457,4456,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.4441,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,4,1,963.5,804030.44,624019.88,214282.47,83105.172,10277.665,507.46527,3349.9326 +2039,2552,4459,4460,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,4.3675127,4.2223606,68,1,19.187691,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.6979882,4.8133569,64.39,28.77,53,44,6.666666666666667,1,1,0,0,0,5,2,0,1094,316986.59,145678.73,184154.34,0,0,0,1474.7532 +2039,2552,4460,4459,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.8982334,5.7542291,68,-1,48.253765,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,14.302137,0,0,1,1,0,0,5.8047862,53,44,64.39,28.77,8,1,1,0,0,0,5,2,0,1094,316986.59,145678.73,184154.34,0,0,0,1474.7532 +2040,2553,4461,-9,4462,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1011.8873,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.45,37.16,-9,-9,10,1,1,0,0,0,2,1,1,1452,73392.469,77936.313,0,0,0,0,123.10484 +2040,2554,4462,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,6.966094,6.2922473,0,0,-1058.4482,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,3.8589678,42.613319,44.843048,0,1,1,0,2.0838311,6.2708292,55,43,-9,-9,8,1,1,0,0,0,2,2,1,725,313924.81,-1566.9092,99601.656,0,0,0,178.06163 +2041,2555,4463,4464,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.1419454,5.8010411,8,0,4.0022497,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4079776,50,47,59.63,41.44,10,1,1,0,0,0,1,2,1,492,194683.88,78120.789,59186.773,0,1047.8763,0,3268.7856 +2041,2555,4464,4463,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.3686671,7.0951076,8,9,99.986877,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4439645,59.63,41.44,50,47,8.333333333333334,1,1,0,0,0,1,2,1,492,194683.88,78120.789,59186.773,0,1047.8763,0,3268.7856 +2042,2556,4465,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.9573069,7.3412633,0,0,-962.14795,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0614128,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,844,270608.84,48345.031,101482.04,0,0,0,1104.5613 +2043,2557,4466,4467,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,5.630651,5.3091221,46,6,31.980549,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7042136,5.3723645,57.6,57.49,60.02,56.42,8.333333333333334,1,1,0,0,4,10,2,1,342.5,571747.88,266583.06,285804.75,0,0,0,2273.1594 +2043,2557,4467,4466,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,6.989943,7.2004886,46,-6,-63.859306,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0044203,7.4772129,60.02,56.42,57.6,57.49,10,1,1,0,0,7,10,2,1,342.5,571747.88,266583.06,285804.75,0,0,0,2273.1594 +2044,2558,4468,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,6.8885946,6.982192,0,0,-1078.2808,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8444488,7.207901,45.13,42.9,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1060,60952.707,191095.34,283131.06,0,0,0,1367.531 +2045,2559,4469,-9,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,4.3505445,4.1539168,0,0,-883.2677,0,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3719785,0,36.03,53.83,-9,-9,5,1,1,0,0,0,11,2,0,1201,-56374.848,0,0,0,0,0,741.44415 +2045,2559,4470,-9,4469,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.4357,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,11,2,0,1201,-56374.848,0,0,0,0,0,741.44415 +2046,2560,4471,-9,4472,4473,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1106.4504,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,2,3,1,3194,336724.75,141961.8,251808.91,114787.33,0,72.73291,1741.0582 +2046,2560,4472,4473,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,0,0,0,23,-8,141.19568,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,.81294608,0,1,1,0,0,0,40.39,60.98,52,55,5,2,3,0,0,5,2,3,1,3194,336724.75,141961.8,251808.91,114787.33,0,72.73291,1741.0582 +2046,2560,4473,4472,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.8422651,8.8973675,0,22,8,-32.967442,-9,-9,-9,2021,9,0,40,0,1,1,0,17.959024,17.959024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,40.39,60.98,8,2,3,0,0,1,2,3,1,3194,336724.75,141961.8,251808.91,114787.33,0,72.73291,1741.0582 +2047,2561,4474,4476,-9,-9,1,1,34,1,3,0,1,1,-9,0,4,8.6327143,8.5484314,0,13,-1,59.392479,0,1,1,2021,12,0,36,37,1,0,0,18.795717,18.795717,.05,.05,0,0,0,0,0,0,1,1,0,2.1436927,0,46.63,59.72,54.2,57.49,8.333333333333334,1,1,0,0,10,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4475,-9,4476,4474,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.302,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4476,4474,-9,-9,1,0,35,1,3,0,1,1,-9,0,4,0,0,0,13,1,8.5133381,0,2,2,2021,6,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1313448,0,54.2,57.49,46.63,59.72,8.333333333333334,1,1,0,0,11,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4477,-9,4476,4474,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.9255,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2047,2561,4478,-9,4476,4474,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.9305,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,3,0,1168.6,69733.938,20358.094,0,0,-404.13187,0,1924.5981 +2048,2562,4479,4480,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.0205393,6.750999,49,2,45.657795,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5328574,6.4705801,51,46,54.55,49.25,7,1,1,0,0,0,4,5,1,3083,2576125,2133927.8,190731.91,0,673.28088,0,4143.6714 +2048,2562,4480,4479,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.6093946,8.9674149,8.4762945,5,-2,-3.3381252,0,1,1,2021,9,1,8,35,1,1,0,32.533295,32.533295,0,0,0,1,0,0,0,0,1,1,0,3.8015568,8.6478882,54.55,49.25,51,46,8.333333333333334,4,2,0,0,8,4,5,1,3083,2576125,2133927.8,190731.91,0,673.28088,0,4143.6714 +2049,2563,4481,4482,-9,-9,1,1,42,0,0,0,3,3,-9,0,4,8.3391562,8.6571121,0,10,-2,16.676956,0,-9,-9,2021,9,0,53,37,1,0,0,9.1517477,9.1517477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.78,56.37,8.333333333333334,1,1,0,0,11,12,5,1,1101,-111497.27,-4068.2676,110826.64,77852.922,33675.266,19417.953,3321.3203 +2049,2563,4482,4481,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.3480492,8.3708401,0,10,2,22.227455,0,3,3,2021,11,0,53,52,1,0,0,8.1401834,8.1401834,0,0,0,0,0,0,0,0,0,0,0,0,0,44.78,56.37,57.16,56.15,8.333333333333334,1,1,0,0,11,12,5,1,1101,-111497.27,-4068.2676,110826.64,77852.922,33675.266,19417.953,3321.3203 +2050,2564,4483,4484,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.6706562,6.6526113,59,-2,-138.73584,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.773078,43.2,37.75,43.52,52.86,5,1,1,0,0,0,11,2,1,864,566486.19,256582.72,237951.03,0,0,0,2213.9053 +2050,2564,4484,4483,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.7424402,6.767766,59,2,-32.950611,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.71113062,6.8965297,43.52,52.86,43.2,37.75,5,1,1,0,0,0,11,2,1,864,566486.19,256582.72,237951.03,0,0,0,2213.9053 +2051,2565,4485,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.6045542,8.465188,0,0,0,-1063.2753,0,-9,-9,2021,9,0,37,40,1,0,0,15.308206,15.308206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,7,12,5,0,727,124038.77,-12583.757,0,0,0,0,2030.3866 +2052,2566,4486,4487,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,6.8315701,6.6057315,0,32,-3,6.7424831,0,2,2,2021,8,0,50,60,1,0,0,2.5740476,2.5740476,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.98,42.13,51.67,50.46,6.666666666666667,1,1,0,0,11,7,4,1,689.5,897678.94,340751.66,281715.81,0,0,1764.8789,2508.981 +2052,2566,4487,4486,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.6686563,8.4321585,7.8976207,32,3,48.137722,0,1,3,2021,12,0,17,17,1,0,0,16.273458,16.273458,.05,.05,0,0,0,0,0,0,0,0,0,3.1312559,7.9062996,51.67,50.46,55.98,42.13,8.333333333333334,1,1,0,0,9,7,4,1,689.5,897678.94,340751.66,281715.81,0,0,1764.8789,2508.981 +2053,2567,4488,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.3731718,8.314929,0,0,0,-851.05023,0,2,3,2021,11,1,39,42,1,1,0,11.147519,11.147519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,1,11,12,4,0,1300,-9261.2373,9723.085,196560.42,90853.82,0,1369.5154,1145.1249 +2054,2568,4489,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1129.8335,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,3.0239913,3.9982777,22.670931,0,1,1,0,1.6942817,0,49.51,41.82,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,176,236955.53,0,0,0,0,0,1946.4695 +2055,2569,4490,4491,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.4950285,8.8166904,0,22,0,-183.87645,0,2,-9,2021,12,2,40,48,1,2,0,20.167063,20.167063,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.65,41.83,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,637,1211105.3,333337.38,726349,107574.45,0,0,4690.3599 +2055,2569,4491,4490,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.4753227,8.4299335,0,22,0,-93.277702,0,3,2,2021,6,0,39,40,1,0,0,13.107274,13.107274,.05,.05,0,0,0,0,0,0,1,1,0,2.9743779,0,57.16,56.15,55.65,41.83,8.333333333333334,1,1,0,0,11,8,5,1,637,1211105.3,333337.38,726349,107574.45,0,0,4690.3599 +2056,2570,4492,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,6.8156166,6.3570576,0,0,-980.14716,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.1596545,0,0,1,1,0,0,6.5296197,44.18,23.2,-9,-9,5,1,1,0,0,0,4,2,1,4168,177280.17,-22040.674,0,0,0,0,1028.5941 +2057,2571,4493,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,8.9867373,8.6931305,0,0,0,-1079.3224,-9,2,1,2021,11,2,60,0,1,2,0,17.440922,17.440922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,2025,-143698.5,72995.398,25730.564,73245.305,0,146.80191,3162.9846 +2058,2572,4494,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,6.712707,6.7122149,0,0,0,-957.09106,0,3,2,2021,10,0,17,17,1,0,0,6.311729,6.311729,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,12,7,2,0,1643,115019.72,6780.1934,0,0,0,0,30.215839 +2058,2573,4495,-9,4494,-9,1,1,21,0,0,0,2,2,-9,0,4,8.166976,8.2032223,0,0,0,-971.16003,0,2,-9,2021,9,2,60,45,1,2,1,5.7721224,5.7721224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.25,51.98,-9,-9,10,1,1,0,0,4,7,4,0,782,-56124.984,-104327.95,0,0,0,0,1225.9218 +2059,2574,4496,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,0,0,0,0,-913.87714,-9,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8693211,0,47.97,56.11,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1234,-52847.805,-42962.922,47582.801,0,0,0,1402.4203 +2060,2575,4497,4498,-9,-9,1,1,30,0,0,0,3,3,-9,0,2,7.8453894,8.1591492,0,8,1,-127.72608,0,2,2,2021,8,0,52,52,1,0,0,6.2366347,6.2366347,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,42.35,33.61,52.99,51.28,5,1,1,0,0,8,2,4,0,792.5,136446.69,51359.938,244027.88,143938.72,0,0,2279.4148 +2060,2575,4498,4497,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.007246,7.5259781,0,8,-1,51.544842,0,-9,-9,2021,11,0,40,43,1,0,0,6.8340545,6.8340545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,42.35,33.61,8.333333333333334,1,1,0,0,9,2,4,0,792.5,136446.69,51359.938,244027.88,143938.72,0,0,2279.4148 +2061,2576,4499,4500,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.8871088,8.0487728,45,5,49.878624,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0621309,8.0241585,57.16,56.15,44.84,49.01,10,1,1,0,0,6,1,3,1,920,1118736.9,743708.88,296741.38,0,0,0,2237.3706 +2061,2576,4500,4499,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.6369739,7.1661654,45,-5,-22.286469,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3942952,7.0480413,44.84,49.01,57.16,56.15,5,1,1,0,0,11,1,3,1,920,1118736.9,743708.88,296741.38,0,0,0,2237.3706 +2062,2577,4501,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.974647,7.982398,0,0,-913.35297,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1238575,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,2588,807506.69,540781.75,302631.34,0,0,0,1442.0895 +2063,2578,4502,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.4970474,7.3998728,0,0,-1106.9462,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7895789,7.3803926,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,2782,351654.69,157079.72,197004.08,0,0,0,2765.6084 +2064,2579,4503,4504,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.2983203,5.0399361,68,-2,26.563173,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,6.8553448,5.554606,45.99,57.05,56,44,10,1,1,0,0,0,5,2,1,357.5,135810.45,50425.488,181168.2,0,0,0,1812.5781 +2064,2579,4504,4503,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,6.6884942,6.6416173,68,2,14.549141,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,6.375576,0,0,1,1,0,5.2528887,6.5030193,56,44,45.99,57.05,8,1,1,0,0,0,5,2,1,357.5,135810.45,50425.488,181168.2,0,0,0,1812.5781 +2064,2580,4505,-9,4503,4504,1,1,64,0,0,0,3,3,-9,0,3,6.7972498,7.8152738,7.490027,0,0,-982.00012,0,3,3,2021,9,1,25,20,1,1,0,3.8717375,3.8717375,0,0,0,0,0,0,0,14.5,1,1,0,7.1778193,7.5846796,51.98,46.5,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,781,226165.88,-61964.867,0,0,0,0,872.0907 +2065,2581,4506,4507,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.0172043,7.841783,6,4,91.724236,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.8404784,8.1253939,40.61,31.58,57.14,30.64,6.666666666666667,1,1,0,0,3,9,5,1,685.5,1544860.3,902592.25,431544.44,0,11977.008,0,9437.3027 +2065,2581,4507,4506,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,9.7262506,9.875844,0,6,-4,10.203061,0,3,-9,2021,7,1,35,39,1,1,0,62.586941,62.586941,0,0,0,0,0,0,0,0,0,0,0,2.8784983,0,57.14,30.64,40.61,31.58,6.666666666666667,1,1,0,0,10,9,5,1,685.5,1544860.3,902592.25,431544.44,0,11977.008,0,9437.3027 +2066,2582,4508,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.7603197,8.6768961,0,0,0,-988.25775,0,3,3,2021,7,0,41,40,1,0,0,15.009002,15.009002,.05,.05,0,0,0,0,0,0,0,0,0,4.797173,0,55.06,38.67,-9,-9,8.333333333333334,4,2,0,0,10,8,5,0,1653,460495.59,701837.38,0,0,0,2780.1443,2351.6062 +2067,2583,4509,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.2716455,8.5527859,0,0,0,-1078.8624,0,1,1,2021,19,7,34,50,1,7,0,14.39222,14.39222,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,3.333333333333333,2,3,0,0,5,8,4,0,1304,-57590.242,-94988.602,0,0,0,0,965.4046 +2068,2584,4510,4511,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.0240693,7.4084721,6.3366184,3,-2,-44.4231,0,2,2,2021,7,0,7,9,1,0,0,20.604439,20.604439,0,0,0,1,0,0,0,0,1,1,0,7.9534092,6.7358079,60.42,54.81,55.5,47.36,10,1,1,0,0,14,12,3,1,524.5,1031066.6,549538.44,361748.75,0,0,0,3572.3315 +2068,2584,4511,4510,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5498552,7.2733254,24,2,-63.994144,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4629402,7.3176055,55.5,47.36,60.42,54.81,8.333333333333334,1,1,0,0,13,12,3,1,524.5,1031066.6,549538.44,361748.75,0,0,0,3572.3315 +2069,2585,4512,-9,4513,-9,1,1,17,0,0,1,2,0,0,0,5,0,6.316781,7.0400896,0,0,-959.83435,-9,-9,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5781145,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,2,5,1,823.66669,316227.34,288235.13,111620.32,31706.285,18223.971,0,3356.6719 +2069,2585,4513,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.5886297,8.8830872,7.5685244,0,0,-975.99286,0,3,3,2021,6,0,38,40,1,0,0,14.315049,14.315049,.05,.05,0,0,0,0,0,0,1,1,0,7.6855249,0,59.31,49.81,-9,-9,8.333333333333334,2,3,0,0,6,2,5,1,823.66669,316227.34,288235.13,111620.32,31706.285,18223.971,0,3356.6719 +2069,2585,4514,-9,4513,-9,1,1,14,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1039.6526,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,5,1,823.66669,316227.34,288235.13,111620.32,31706.285,18223.971,0,3356.6719 +2069,2586,4515,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,5.6172109,5.5125642,0,0,-1026.3813,-9,-9,-9,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1941876,0,51.24,58.84,-9,-9,5,2,3,0,0,0,2,2,1,476,-50717.508,0,0,0,0,0,-526.30847 +2070,2587,4516,-9,4519,4518,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-825.02661,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2070,2587,4517,-9,4519,4518,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.5439,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2070,2587,4518,4519,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.4796848,9.3670101,0,8,-2,166.51534,0,-9,-9,2021,12,2,37,40,1,2,0,34.034809,34.034809,.05,.05,0,0,0,0,0,0,1,1,0,3.4167821,0,51.58,40.07,57.91,43.45,6.666666666666667,1,1,0,0,12,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2070,2587,4519,4518,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.3931074,8.0800848,0,8,2,-24.467758,0,2,2,2021,10,2,30,22,1,2,0,16.632336,16.632336,.05,.05,0,0,0,0,0,0,1,1,0,.19320169,0,57.91,43.45,51.58,40.07,8.333333333333334,1,1,0,0,9,9,5,1,1394,491516.38,120599.48,545004.31,226847.25,2354.7957,6119.6626,5535.4429 +2071,2588,4520,4521,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4993448,8.433259,0,2,-5,-6.091454,0,-9,-9,2021,11,0,35,40,1,2,0,13.723984,13.723984,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,58.21,55.62,7,2,3,0,0,1,6,4,0,421.5,36514.211,0,31122.492,36129.012,0,0,2478.3948 +2071,2588,4521,4520,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,7.028295,6.9185195,0,2,5,-52.057804,0,-9,-9,2021,12,0,50,70,1,0,0,2.4480178,2.4480178,0,0,0,0,0,0,0,0,0,0,0,0,0,58.21,55.62,48,57,8.333333333333334,2,3,0,0,1,6,4,0,421.5,36514.211,0,31122.492,36129.012,0,0,2478.3948 +2072,2589,4522,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.584547,6.7118654,0,0,-1091.4025,-9,3,3,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7884326,53.18,54.04,-9,-9,10,3,4,0,0,8,2,2,0,203,529014.75,322241.5,54569.48,0,0,0,1385.1434 +2073,2590,4523,4525,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.0105553,7.9966207,0,11,-4,-102.77422,0,2,3,2021,17,6,26,0,1,6,0,10.914534,10.914534,0,0,0,0,0,0,0,100,1,1,0,7.0931997,0,35.67,64.46000000000001,51.83,57.2,6.666666666666667,2,3,0,1,7,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2073,2590,4524,-9,4523,4525,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.55707,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2073,2590,4525,4523,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.9446287,8.9194288,0,20,4,-47.53941,0,-9,-9,2021,11,1,41,38,1,1,0,19.10672,19.10672,.05,.05,0,0,0,0,0,0,1,1,0,6.8957853,0,51.83,57.2,35.67,64.46000000000001,8.333333333333334,1,1,0,0,9,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2073,2590,4526,-9,4523,4525,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.02679,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,11,4,1,613,425733.81,203255.03,182362.66,39424.383,0,0,5062.8979 +2074,2591,4527,-9,4528,4529,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-964.37054,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,846.66669,2543155.3,1703425.6,897089.19,112318.4,0,0,14203.121 +2074,2591,4528,4529,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,0,10.125693,10.190063,10,-20,98.033424,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.4962859,10.142324,57.06,57.76,58.15,52.91,10,1,1,0,0,6,8,5,1,846.66669,2543155.3,1703425.6,897089.19,112318.4,0,0,14203.121 +2074,2591,4529,4528,-9,-9,1,1,66,0,1,0,1,1,-9,0,4,0,8.5196781,8.7035236,10,20,-101.19112,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,8.2474785,8.5916157,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,8,5,1,846.66669,2543155.3,1703425.6,897089.19,112318.4,0,0,14203.121 +2075,2592,4530,4531,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.9165325,6.9018378,56,0,25.423876,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2853999,36.45,27.47,63.8,33.11,8.333333333333334,1,1,0,0,0,10,2,1,948,534341.25,368476.44,239212.03,0,0,1289.1891,1200.1243 +2075,2592,4531,4530,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,56,0,-135.15353,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,63.8,33.11,36.45,27.47,10,1,1,0,0,0,10,2,1,948,534341.25,368476.44,239212.03,0,0,1289.1891,1200.1243 +2076,2593,4532,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1052.0961,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.8918786,0,51.36,49.48,-9,-9,1.666666666666667,1,1,0,0,5,4,1,0,429,191386.58,0,117976.05,0,0,0,1293.4585 +2077,2594,4533,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-984.78064,-9,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.74,40.53,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1352,-193511.97,0,0,0,0,0,72.829048 +2078,2595,4534,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1087.8715,0,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,14.16,-9,-9,6.666666666666667,1,1,0,0,3,1,1,0,731,0,0,0,0,0,0,2253.3872 +2079,2596,4535,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.7893524,5.6069036,0,0,-985.42041,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7744801,5.8233857,56.88,32.93,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,268,327638.78,-49591.863,169207,0,0,0,481.60431 +2080,2597,4536,4537,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.7567253,8.8703022,0,8,-1,-61.9818,0,2,2,2021,7,0,38,38,1,0,0,13.608968,13.608968,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.36,51.57,8.333333333333334,1,1,0,0,9,2,4,1,1336.5,1269581,887846.44,411164.56,58930.18,18720.375,0,3865.0574 +2080,2597,4537,4536,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,7.6045694,8.1183634,7.082798,8,1,33.037426,0,3,3,2021,12,0,25,25,1,0,0,10.756212,10.756212,.05,.05,0,0,0,0,0,0,1,1,0,1.8211566,6.9871902,55.36,51.57,54.96,53.17,8.333333333333334,1,1,0,0,9,2,4,1,1336.5,1269581,887846.44,411164.56,58930.18,18720.375,0,3865.0574 +2080,2598,4538,-9,4537,-9,1,0,35,0,1,0,2,2,-9,0,4,7.8328943,7.9273157,0,0,0,-1099.399,-9,3,-9,2021,11,0,35,0,1,2,1,6.7076278,6.7076278,.05,.05,0,0,0,0,0,0,1,1,0,6.0718622,0,48,57,-9,-9,7,1,1,0,0,1,2,3,1,679,-15086.179,47644.398,0,0,0,0,1474.1038 +2080,2598,4539,-9,4538,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1098.5059,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,2,3,1,679,-15086.179,47644.398,0,0,0,0,1474.1038 +2080,2599,4540,-9,4537,-9,1,1,25,0,1,0,2,2,-9,0,4,8.0728951,8.0521288,0,0,0,-1105.5154,-9,3,-9,2021,10,0,40,0,1,1,1,11.53373,11.53373,0,0,0,0,0,0,0,0,1,1,0,1.3022453,0,48,59,-9,-9,7,1,1,0,0,1,2,4,1,110,57122.02,-70376.234,0,0,0,0,1373.0811 +2081,2600,4541,4542,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.5687437,8.7233677,0,32,10,36.232288,0,2,1,2021,8,0,18,18,1,0,0,38.130257,38.130257,0,0,0,0,0,0,0,2,1,1,0,0,0,60.57,46.44,22.16,30.67,8.333333333333334,1,1,0,0,12,9,4,1,257.5,1175594.1,-7378.1719,589068.69,0,0,0,3137.3389 +2081,2600,4542,4541,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,33,-10,-6.2471876,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50378805,0,22.16,30.67,60.57,46.44,1.666666666666667,1,1,0,0,9,9,4,1,257.5,1175594.1,-7378.1719,589068.69,0,0,0,3137.3389 +2081,2601,4543,-9,4542,4541,1,0,29,0,0,0,1,1,0,0,4,0,0,0,0,0,-960.23517,-9,2,1,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8486776,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,234,-1126.7386,0,0,0,0,0,801.23712 +2081,2602,4544,-9,4542,4541,1,0,25,0,0,0,1,1,-9,0,4,7.9462123,7.5686541,0,0,0,-933.01727,-9,2,1,2021,6,0,41,0,1,0,1,5.3076406,5.3076406,0,0,0,0,0,0,0,0,1,1,0,1.9472382,0,44.44,55.46,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,326,-133150.06,0,0,0,0,0,1813.3917 +2082,2603,4545,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.6279821,8.3769903,0,0,0,-1039.6599,0,2,2,2021,9,0,37,37,1,0,0,18.846279,18.846279,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,589,33380.84,127648.84,159631.66,17725.43,0,0,2155.7153 +2083,2604,4546,4547,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.321496,8.2216187,36,2,-126.14915,-9,3,3,2021,14,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.4481759,8.3002529,49.04,55.86,45.62,46.46,8.333333333333334,1,1,0,0,9,1,4,1,394,336382.06,385145.69,92709.891,26160.871,9550.3936,0,3534.2422 +2083,2604,4547,4546,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.8385024,7.2388334,1,-2,53.332436,-9,-9,-9,2021,14,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.0767934,6.8181891,45.62,46.46,49.04,55.86,10,1,1,0,0,10,1,4,1,394,336382.06,385145.69,92709.891,26160.871,9550.3936,0,3534.2422 +2083,2605,4548,-9,4547,4546,1,0,22,0,0,0,1,1,-9,0,4,7.7821021,7.7218027,1.1890392,0,0,-891.72656,-9,2,2,2021,15,5,18,0,1,5,0,17.641457,17.641457,0,0,0,0,0,0,0,0,1,1,0,.96261758,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,402,146545.88,0,0,0,0,0,1212.531 +2084,2606,4549,4550,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,53,-3,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,13,1,0,1262.5,35464.184,-10337.148,0,0,0,0,1021.2354 +2084,2606,4550,4549,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,54,3,0,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53,47,51,46,8,1,1,0,0,0,13,1,0,1262.5,35464.184,-10337.148,0,0,0,0,1021.2354 +2085,2607,4551,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.8783336,7.9996805,5.986414,0,0,-1104.4985,0,2,2,2021,11,0,37,37,1,0,0,8.0310469,8.0310469,.05,.05,0,0,0,0,0,74.5,1,1,0,6.1401486,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,1266,1020.5547,-38034.27,0,0,0,0,2451.4653 +2085,2607,4552,-9,4551,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.2125,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,1266,1020.5547,-38034.27,0,0,0,0,2451.4653 +2085,2607,4553,-9,4551,-9,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.67133,-9,2,-9,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.24679202,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1266,1020.5547,-38034.27,0,0,0,0,2451.4653 +2085,2608,4554,-9,4551,-9,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1069.936,-9,2,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,346,23642.818,0,0,0,0,0,0 +2086,2609,4555,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.9714236,5.9020452,0,0,-881.6366,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7124038,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,10,1,2,1,615,257026.09,165300.28,126426.09,0,0,0,-127.00163 +2087,2610,4556,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.9959826,8.4392042,6.8775668,0,0,-1043.941,-9,2,2,2021,11,0,50,0,1,0,0,7.463634,7.463634,.05,.05,0,0,0,0,0,0,1,1,0,0,7.222445,60.14,46.44,-9,-9,6.666666666666667,3,4,0,0,14,8,4,1,805,-12994.445,-51964.402,0,0,0,0,1626.165 +2087,2611,4557,-9,-9,4556,1,1,25,0,0,0,1,1,-9,0,3,8.3368788,8.1502609,0,0,0,-968.31445,0,-9,2,2021,21,8,43,43,1,8,1,10.135009,10.135009,0,0,0,0,0,0,2.19561,0,1,1,0,0,0,39.15,41.42,-9,-9,3.333333333333333,3,4,0,0,9,8,4,1,338,-281099.47,0,0,0,-787.98584,0,1767.3328 +2088,2612,4558,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,5,0,6.2907891,6.175426,0,0,-969.46259,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.492888,60.02,56.42,-9,-9,10,1,1,0,0,6,8,2,0,283,358267.53,142471.06,102070.33,0,0,0,1157.3423 +2089,2613,4559,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.4866247,8.4980192,0,0,0,-898.39429,0,3,3,2021,8,0,38,37,1,0,0,14.199934,14.199934,.05,.05,0,0,0,0,0,0,0,0,0,7.2512679,0,55.11,37.11,-9,-9,6.666666666666667,3,4,0,0,14,8,5,1,167,557761.5,177846.78,312531.97,0,0,0,2085.3733 +2089,2614,4560,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,1,7.4644041,7.1628656,0,0,0,-998.91443,0,-9,-9,2021,33,11,24,40,1,11,0,9.5974236,9.5974236,.05,.05,0,0,0,0,0,0,0,0,0,7.0927081,0,39.97,55.07,-9,-9,0,3,4,0,1,2,8,3,1,223,-147684.28,52625.934,0,0,12954.781,1146.7153,627.86456 +2090,2615,4561,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1078.4847,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,47,-9,-9,7,1,1,0,0,0,8,1,0,2043,106141.88,0,0,0,0,0,925.21057 +2091,2616,4562,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.7587504,7.7495098,0,0,0,-902.37659,-9,-9,2,2021,7,0,40,0,1,0,0,7.6172762,7.6172762,0,0,.05,0,0,0,0,0,0,0,0,6.4335141,0,51.47,53.17,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,467,123373.38,2909.2715,0,0,0,0,1195.7504 +2092,2617,4563,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1065.2815,0,2,3,2021,10,0,0,64,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,3.333333333333333,1,1,0,0,14,2,1,1,788,-21023.152,0,0,0,0,1840.4761,971.77527 +2093,2618,4564,4565,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,0,0,0,9,-13,-119.3746,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.06,56.17,60.17,39.71,8.333333333333334,1,1,1,0,0,13,3,0,696.5,670327.38,451494,252784.31,0,0,1516.4825,1850.2446 +2093,2618,4565,4564,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.4781289,7.3220329,9,13,-12.410142,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,10.230899,0,0,1,1,0,2.4676001,7.8755388,60.17,39.71,60.06,56.17,8.333333333333334,1,1,0,0,10,13,3,0,696.5,670327.38,451494,252784.31,0,0,1516.4825,1850.2446 +2093,2619,4566,-9,4564,4565,1,1,23,0,0,0,2,2,-9,0,4,7.4399929,7.7391782,0,0,0,-1022.5392,0,3,2,2021,6,0,44,0,1,0,1,6.4863067,6.4863067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,2181,17301.648,160270.28,0,0,0,0,789.59955 +2093,2620,4567,-9,4564,4565,1,0,20,0,0,0,2,2,1,0,4,7.7004933,7.899653,0,0,0,-1062.4247,-9,3,2,2021,14,3,44,0,1,3,1,5.8606973,5.8606973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.01,59.84,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,703,-3629.4792,-4721.2368,0,0,4564.644,0,908.07031 +2094,2621,4568,4569,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,7.6918373,7.8533378,8,1,47.962147,0,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,8.0274363,42.35,30.78,60.12,54.8,8.333333333333334,1,1,0,0,2,12,3,1,811.5,228692.02,38066.797,360637.25,58519.328,0,0,3346.6064 +2094,2621,4569,4568,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,4.965776,5.255744,0,8,-1,-159.1113,0,2,2,2021,10,1,40,10,1,1,0,.51088333,.51088333,0,0,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,42.35,30.78,8.333333333333334,1,1,0,0,9,12,3,1,811.5,228692.02,38066.797,360637.25,58519.328,0,0,3346.6064 +2094,2622,4570,-9,4569,4568,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1149.7805,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.64,42.78,-9,-9,0,1,1,0,0,1,12,1,1,671,-92964.195,0,0,0,0,0,232.20798 +2095,2623,4571,4573,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,8.5661192,8.3465462,0,1,-12,-9.4651699,-9,3,3,2021,4,0,45,0,1,0,0,11.127694,11.127694,.05,.05,0,0,0,0,0,0,1,1,0,3.1045856,0,42.93,51.21,60.12,54.8,3.333333333333333,1,1,0,0,14,13,3,0,534.33331,91160.523,92508,45909.145,14236.417,7912.5488,0,1451.6901 +2095,2623,4572,-9,4571,4573,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.20398,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,3,0,534.33331,91160.523,92508,45909.145,14236.417,7912.5488,0,1451.6901 +2095,2623,4573,4571,-9,-9,1,1,62,0,1,0,2,2,-9,0,4,0,0,0,1,12,-27.571127,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,42.93,51.21,8.333333333333334,1,1,0,0,3,13,3,0,534.33331,91160.523,92508,45909.145,14236.417,7912.5488,0,1451.6901 +2096,2624,4574,-9,4575,-9,1,1,16,0,1,0,2,2,-9,0,1,0,0,0,0,0,-873.78821,-9,2,-9,2021,18,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.17,28.19,-9,-9,3.333333333333333,1,1,1,0,13,12,4,1,573,318181.22,240942.16,138010.78,62403.805,0,144.04568,3087.9541 +2096,2624,4575,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.9934731,8.3520584,7.2880616,0,0,-996.81873,0,2,3,2021,22,10,35,36,1,10,0,9.4648333,9.4648333,.05,.05,0,0,0,0,0,2,1,0,1,7.0457778,0,29.7,41.88,-9,-9,1.666666666666667,1,1,0,0,10,12,4,1,573,318181.22,240942.16,138010.78,62403.805,0,144.04568,3087.9541 +2097,2625,4576,4577,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,46,-2,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.5,29.18,51.24,58.84,8.333333333333334,1,1,0,0,9,12,1,0,663.5,-106277.88,0,0,0,0,0,570.21631 +2097,2625,4577,4576,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,46,2,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,68.5,29.18,8.333333333333334,1,1,0,0,7,12,1,0,663.5,-106277.88,0,0,0,0,0,570.21631 +2098,2626,4578,4579,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.4819207,7.5105147,38,1,-84.742126,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8443942,7.6189747,52.91,55.33,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1510.5,1585750.5,1263721.8,275827.31,0,0,0,4228.458 +2098,2626,4579,4578,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.6626678,7.9581909,38,-1,45.923893,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6934924,7.9841881,57.16,56.15,52.91,55.33,8.333333333333334,1,1,0,0,0,1,4,1,1510.5,1585750.5,1263721.8,275827.31,0,0,0,4228.458 +2099,2627,4580,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-997.43335,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,3.0129969,7.2567363,30.111544,0,1,1,0,1.224812,0,54,44,-9,-9,8,1,1,0,0,0,4,2,0,387,51811.383,0,0,0,0,0,1330.5426 +2100,2628,4581,-9,4582,4583,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1023.2189,-9,2,3,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,1.2882943,0,1,1,0,0,0,30.75,61.56,-9,-9,6.666666666666667,1,1,0,0,0,9,4,0,1077.3334,391230.09,38616.547,297853.97,28726.041,0,0,2333.5195 +2100,2628,4582,4583,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,5.4408898,5.1990142,0,28,0,-144.69609,0,3,2,2021,19,7,12,11,1,7,0,1.9683654,1.9683654,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,35.38,54.21,5,1,1,0,0,3,9,4,0,1077.3334,391230.09,38616.547,297853.97,28726.041,0,0,2333.5195 +2100,2628,4583,4582,-9,-9,1,1,42,0,0,0,3,3,-9,0,2,8.9957352,8.7080822,0,25,0,20.880119,0,3,3,2021,14,2,40,38,1,2,0,18.735193,18.735193,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.38,54.21,43.2,59.97,1.666666666666667,1,1,0,0,11,9,4,0,1077.3334,391230.09,38616.547,297853.97,28726.041,0,0,2333.5195 +2101,2629,4584,4585,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,9,-7,0,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.56,33.98,30.57,24.42,1.666666666666667,1,1,0,0,0,9,1,0,501.5,1866248.6,1056050.9,761572.5,0,0,0,1792.949 +2101,2629,4585,4584,-9,-9,1,1,59,0,0,0,1,1,-9,1,1,0,0,0,9,7,0,0,2,2,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.57,24.42,35.56,33.98,5,1,1,0,0,0,9,1,0,501.5,1866248.6,1056050.9,761572.5,0,0,0,1792.949 +2102,2630,4586,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,8.2334318,8.2850857,6.3271017,0,0,-1024.5848,0,2,2,2021,10,0,24,0,1,0,0,17.301697,17.301697,0,0,0,0,0,0,0,0,1,1,0,5.9093409,6.309864,34.2,49.45,-9,-9,3.333333333333333,1,1,0,1,7,9,4,0,253,724646.13,635915.69,0,0,11807.552,0,2583.0547 +2103,2631,4587,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.3776188,7.839323,6.4525757,0,0,-1085.5137,0,2,2,2021,7,0,38,38,1,0,0,9.6977205,9.6977205,0,0,0,0,0,0,0,0,1,1,0,0,6.4387646,57.93,46.29,-9,-9,8.333333333333334,1,1,0,0,15,2,4,1,481,878801.13,596435.75,182219.25,0,0,0,990.31586 +2104,2632,4588,4592,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.4802542,8.2940331,0,10,1,57.327343,0,2,3,2021,17,5,55,54,1,5,0,6.6633439,6.6633439,.05,.05,0,0,0,0,0,0,1,1,0,1.927433,0,34.72,55.65,31.03,56.44,1.666666666666667,1,1,0,0,13,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4589,-9,4592,4588,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-975.15887,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4590,-9,4592,4588,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.7839,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4591,-9,4592,4588,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1210.8125,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4592,4588,-9,-9,1,0,36,1,4,0,2,2,-9,0,2,0,0,0,10,-1,-101.40489,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.03,56.44,34.72,55.65,3.333333333333333,1,1,0,0,6,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2104,2632,4593,-9,4592,4588,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.6096,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,690.83331,-97147.172,21988.393,0,0,0,649.25281,2249.7141 +2105,2633,4594,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4302263,8.0240345,0,0,0,-976.88019,0,-9,-9,2021,9,0,50,0,1,0,0,9.6395702,9.6395702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.24,53.41,-9,-9,5,1,1,0,0,9,7,4,0,208,434841.56,347002.75,112882.69,0,0,0,1564.6561 +2106,2634,4595,4596,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.8582954,8.8201132,0,2,5,-47.494076,0,2,2,2021,20,8,45,40,1,8,0,17.569065,17.569065,.05,.05,0,0,0,0,0,0,0,0,0,7.3219633,0,20,62.76,48.87,58.55,8.333333333333334,1,1,0,0,8,9,5,1,1106,558275,308449.44,258293.48,170197.84,1715.4935,198.67761,4730.4497 +2106,2634,4596,4595,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.4702921,8.4832535,0,2,-5,34.350201,0,-9,-9,2021,8,0,45,40,1,0,0,13.141531,13.141531,.05,.05,0,0,0,0,0,0,0,0,0,7.1335955,0,48.87,58.55,20,62.76,1.666666666666667,1,1,0,0,4,9,5,1,1106,558275,308449.44,258293.48,170197.84,1715.4935,198.67761,4730.4497 +2107,2635,4597,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.5682812,8.1837673,6.5205102,0,0,-1112.9447,0,-9,-9,2021,12,0,34,33,1,0,0,7.6842785,7.6842785,0,0,0,0,0,0,0,0,1,1,0,6.713871,0,49.49,59.98,-9,-9,6.666666666666667,1,1,0,0,9,4,3,0,556,244758.25,-34799.758,246574.31,14578.105,0,0,2095.8486 +2107,2635,4598,-9,4597,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.0185,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,556,244758.25,-34799.758,246574.31,14578.105,0,0,2095.8486 +2107,2636,4599,-9,4597,-9,1,0,18,0,1,0,2,2,1,0,3,8.0383234,7.5121479,0,0,0,-1066.832,-9,2,-9,2021,17,6,37,0,1,6,1,9.6750841,9.6750841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.22,49.72,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,312,85269.922,-21685.127,0,0,0,0,1450.8813 +2108,2637,4600,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.391181,7.1534686,0,0,-1094.3193,0,1,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.1189932,0,1,1,0,9.9813585,6.8996239,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1695,815630.63,96763.016,363001.31,0,0,0,13463.265 +2108,2638,4601,-9,4600,-9,1,1,49,0,0,0,1,1,-9,0,5,7.4315119,7.8111072,0,0,0,-1125.7211,0,2,1,2021,7,0,60,60,1,0,0,4.1294441,4.1294441,.05,.05,0,0,0,0,0,0,1,1,0,3.2205725,0,57.06,57.76,-9,-9,10,1,1,0,0,8,7,3,1,4003,-75013.922,91164.547,0,0,0,0,1294.9303 +2108,2639,4602,-9,4600,-9,1,1,45,0,0,0,1,1,-9,0,4,7.3813419,7.6758809,0,0,0,-798.04504,0,2,1,2021,9,0,50,60,1,0,0,4.317697,4.317697,.05,.05,0,0,0,0,0,0,1,1,0,2.8955326,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,2231,32718.543,-74046.867,0,0,0,0,1173.3326 +2109,2640,4603,4604,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3991399,7.567513,0,31,-4,-23.457544,0,2,2,2021,13,1,19,19,1,1,0,12.536346,12.536346,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.5,56.19,57.16,56.15,8.333333333333334,1,1,0,0,13,5,5,1,206.5,520589.75,139015.81,219995.47,0,-306.48987,0,3062.6184 +2109,2640,4604,4603,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.7627029,8.6047173,0,31,4,-1.3976395,0,2,2,2021,7,0,40,45,1,0,0,14.267725,14.267725,.05,.05,0,0,0,0,0,0,0,0,0,6.6963434,0,57.16,56.15,39.5,56.19,6.666666666666667,1,1,0,0,13,5,5,1,206.5,520589.75,139015.81,219995.47,0,-306.48987,0,3062.6184 +2109,2641,4605,-9,4603,4604,1,0,18,0,0,0,2,2,1,0,3,7.1313753,7.0194273,0,0,0,-1022.607,-9,2,3,2021,29,9,38,0,1,9,1,4.7740645,4.7740645,0,0,0,0,0,0,0,0,0,0,0,2.7604592,0,8.59,58.15,-9,-9,1.666666666666667,1,1,0,0,1,5,2,1,4956,-51798.215,0,0,0,0,0,1141.0576 +2110,2642,4606,4607,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.2997284,7.2634826,0,19,6,9.0357676,0,1,3,2021,7,0,60,50,1,0,0,2.6710293,2.6710293,.05,.05,0,0,0,0,0,0,0,0,0,6.8461509,0,61.12,51.57,56.17,38.15,8.333333333333334,1,1,0,0,10,11,5,1,635.5,836753.94,407229.78,311476.81,0,0,0,3925.1411 +2110,2642,4607,4606,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.7937241,8.7693892,0,19,-6,-28.412479,0,3,2,2021,8,1,42,50,1,1,0,26.917788,26.917788,0,0,0,0,0,0,0,0,0,0,0,2.6583772,0,56.17,38.15,61.12,51.57,6.666666666666667,1,1,0,0,10,11,5,1,635.5,836753.94,407229.78,311476.81,0,0,0,3925.1411 +2111,2643,4608,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,8.3126249,8.1040888,0,0,0,-1111.7518,-9,3,3,2021,7,0,49,0,1,0,0,7.0326943,7.0326943,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,5,1,1,0,0,11,10,4,0,359,101533.73,0,0,0,0,0,1740.8643 +2112,2644,4609,-9,4610,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.2943,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,1,1,908.5,-84264.148,0,0,0,0,134.59338,639.00836 +2112,2644,4610,-9,4612,4611,1,0,28,1,1,0,2,2,-9,1,2,0,0,0,0,0,-1044.2074,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,27.39,46.07,-9,-9,0,2,3,1,0,0,8,1,1,908.5,-84264.148,0,0,0,0,134.59338,639.00836 +2112,2645,4611,4612,-9,-9,1,1,75,1,1,0,3,3,-9,0,1,0,0,0,8,8,0,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,45.742687,0,0,1,1,0,0,0,20.9,21.84,21.72,22.57,1.666666666666667,2,3,0,1,0,8,1,1,523,324878.28,0,368391.72,0,0,0,2230.3398 +2112,2645,4612,4611,-9,-9,1,0,67,1,1,0,3,3,-9,0,1,0,0,0,42,-8,0,0,3,3,2021,29,10,0,0,4,10,0,0,0,0,0,0,1,0,31.383307,0,0,1,1,0,0,0,21.72,22.57,20.9,21.84,0,2,3,0,1,0,8,1,1,523,324878.28,0,368391.72,0,0,0,2230.3398 +2113,2646,4613,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.8679724,8.1306505,0,0,-879.17133,0,3,3,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7315912,8.2915659,48.29,47.89,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,493,338374.03,83724.727,193487.86,106646.11,10530.394,1420.9171,2624.4294 +2114,2647,4614,-9,4616,4615,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.7441,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4615,4616,-9,-9,1,1,34,1,3,0,2,2,-9,0,4,8.4076385,8.3832407,0,6,-2,18.338297,0,2,-9,2021,7,1,43,38,1,1,0,11.177187,11.177187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.92,49.39,39.58,57.61,6.666666666666667,1,1,0,0,5,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4616,4615,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,0,0,0,6,2,50.114845,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.58,57.61,56.92,49.39,5,1,1,0,0,6,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4617,-9,4616,4615,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.5026,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2114,2647,4618,-9,4616,4615,1,0,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-977.67053,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,1,2,3,1,1107.8,-53065.598,13146.688,0,0,428.13104,0,2189.8252 +2115,2648,4619,-9,4620,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-800.52734,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,1822.6666,43949.223,0,0,0,0,0,1473.2312 +2115,2648,4620,-9,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-970.64075,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,61.28,46.17,-9,-9,8.333333333333334,1,1,1,0,1,12,1,0,1822.6666,43949.223,0,0,0,0,0,1473.2312 +2115,2648,4621,-9,4620,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.3066,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1822.6666,43949.223,0,0,0,0,0,1473.2312 +2116,2649,4622,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,7.9630423,8.3346205,0,0,0,-1091.6799,0,3,2,2021,19,7,45,45,1,7,0,7.483448,7.483448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.32,53.3,-9,-9,3.333333333333333,1,1,0,0,9,8,4,0,65,66812.125,67933.109,0,0,0,0,1608.9783 +2117,2650,4623,4624,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,67,-1,-45.204346,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,33.47,63.01,25.24,8.333333333333334,1,1,0,0,0,7,3,1,1765.5,224576.59,86311.469,286091.44,0,0,0,1723.629 +2117,2650,4624,4623,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,7.5561171,7.7199411,67,1,9.1950474,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6112533,63.01,25.24,57.09,33.47,8.333333333333334,1,1,0,0,0,7,3,1,1765.5,224576.59,86311.469,286091.44,0,0,0,1723.629 +2118,2651,4625,4626,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,71,-3,-72.369476,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,6.0137315,0,0,1,1,0,3.8106506,0,57.68,42.36,34.92,20.92,8.333333333333334,1,1,0,0,0,2,2,1,666,237190.31,170917.31,162140.59,0,0,0,2379.6646 +2118,2651,4626,4625,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,7.4012828,7.7013097,71,3,-33.059429,0,3,3,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4493046,34.92,20.92,57.68,42.36,5,1,1,0,0,0,2,2,1,666,237190.31,170917.31,162140.59,0,0,0,2379.6646 +2119,2652,4627,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,7.7966661,8.073801,0,0,0,-980.87384,0,3,3,2021,3,0,35,-9,1,0,0,9.0954685,9.0954685,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.2,56.67,-9,-9,10,2,3,0,0,12,6,4,1,2289,49271.355,21784.414,0,0,10345.271,0,1034.8597 +2119,2653,4628,-9,4627,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1098.0377,-9,1,-9,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.25,50.25,-9,-9,3.333333333333333,2,3,0,0,3,6,1,1,710,77786.508,0,0,0,0,0,679.02545 +2120,2654,4629,-9,4631,4633,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.0262,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4630,-9,4631,4633,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-836.13086,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4631,4633,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,6.0804825,7.1463242,6.7840204,15,-10,-48.622478,0,2,2,2021,8,0,18,15,1,0,0,3.0365736,3.0365736,0,0,0,0,0,0,0,2,1,1,0,6.7570562,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,8,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4632,-9,4631,4633,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.264,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2120,2654,4633,4631,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.8901587,7.7575936,0,3,10,-81.208878,-9,-9,-9,2021,9,0,40,0,1,1,0,7.69064,7.69064,.05,.05,0,0,0,0,0,0,1,1,0,6.7749462,0,53,55,54.2,57.49,8,1,1,0,0,9,11,3,1,1624.8,29380.783,73458.203,137332.69,59223,1385.5886,0,3414.9805 +2121,2655,4634,4635,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3449068,8.6071405,35,1,56.445549,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7675548,8.3797121,55.3,55.6,51.08,25.3,8.333333333333334,1,1,0,0,0,5,4,1,821.5,1592404,939250.5,245592.03,0,0,0,4494.0498 +2121,2655,4635,4634,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.5278459,6.221209,35,-1,39.199966,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0409803,6.8976173,51.08,25.3,55.3,55.6,5,1,1,0,0,0,5,4,1,821.5,1592404,939250.5,245592.03,0,0,0,4494.0498 +2122,2656,4636,-9,4638,4637,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-949.12524,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2656,4637,4638,-9,-9,1,1,51,0,2,0,3,3,-9,0,2,8.2263956,8.0514545,0,22,-5,-50.120129,0,3,3,2021,24,10,41,39,1,10,0,11.596768,11.596768,.05,.05,0,0,0,0,0,2,1,0,1,8.1377726,0,39.14,41.63,38.01,34.13,5,3,4,0,1,14,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2656,4638,4637,-9,-9,1,0,56,0,2,0,2,2,-9,1,2,0,0,0,22,5,-45.961132,0,3,2,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,38.01,34.13,39.14,41.63,3.333333333333333,1,1,0,1,8,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2656,4639,-9,4638,4637,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1061.8082,-9,2,3,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.05,50.13,-9,-9,5,4,2,0,1,0,8,3,1,1199.25,507939.19,-14456.025,397010.94,0,0,0,4425.0376 +2122,2657,4640,-9,4638,4637,1,0,21,0,2,0,2,2,-9,1,3,0,0,0,0,0,-928.49048,0,2,3,2021,14,0,0,0,3,3,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,42,54,-9,-9,6,4,2,0,0,4,8,1,1,164,101894.93,0,0,0,0,0,1105.4214 +2123,2658,4641,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.6229658,8.6013126,0,0,0,-1023.4633,0,2,2,2021,27,11,50,40,1,11,0,14.339421,14.339421,0,0,0,0,0,0,0,2,1,1,0,0,0,22.39,45.52,-9,-9,1.666666666666667,4,2,0,1,12,8,5,0,679,7540.2471,0,0,0,1544.5592,0,3058.7576 +2124,2659,4642,4643,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.2772136,7.061882,10,0,94.397079,0,3,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,1,0,1.0064287,0,0,1,1,0,4.2900939,6.9640164,28.54,21.04,54.2,57.49,5,1,1,0,0,0,13,3,1,1426.5,995882.31,660800.13,244303.75,0,294.5455,0,2970.5449 +2124,2659,4643,4642,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.1961985,8.2244234,10,0,-3.8354402,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7589598,8.0456085,54.2,57.49,28.54,21.04,8.333333333333334,1,1,0,0,0,13,3,1,1426.5,995882.31,660800.13,244303.75,0,294.5455,0,2970.5449 +2125,2660,4644,4645,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.7603407,8.9558887,7.2270617,32,4,-53.430119,0,3,3,2021,6,0,40,35,1,0,0,13.762677,13.762677,.05,.05,0,0,0,0,0,2,0,0,0,7.6776938,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,6,2,5,1,1031,961552.25,367084.19,227644.98,0,0,0,4554.2852 +2125,2660,4645,4644,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.5469503,8.5028296,0,32,-4,-44.798416,0,3,3,2021,6,0,35,39,1,0,0,17.621834,17.621834,.05,.05,0,0,0,0,0,2,0,0,0,4.6285872,0,54.2,57.49,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,1,1031,961552.25,367084.19,227644.98,0,0,0,4554.2852 +2126,2661,4646,4647,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.2877874,8.2567158,0,7,4,178.33926,0,3,2,2021,22,10,40,43,1,10,0,10.050275,10.050275,.05,.05,0,0,0,0,0,0,0,0,0,1.0169468,0,37.85,53.23,32.76,57.87,3.333333333333333,1,1,0,0,10,4,4,1,758,93807.711,309344.56,68007.383,41158.281,14151.136,0,2568.3542 +2126,2661,4647,4646,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.3976316,7.483304,0,7,-4,93.801125,0,-9,-9,2021,24,12,33,43,1,12,0,6.6867871,6.6867871,.05,.05,0,0,0,0,0,0,0,0,0,2.1024549,0,32.76,57.87,37.85,53.23,5,1,1,0,0,7,4,4,1,758,93807.711,309344.56,68007.383,41158.281,14151.136,0,2568.3542 +2126,2662,4648,-9,4647,4646,1,1,23,0,0,0,2,2,-9,0,4,7.7670736,7.6048241,0,0,0,-973.00507,0,2,2,2021,10,1,40,44,1,1,1,6.7078228,6.7078228,0,0,0,0,0,0,0,0,0,0,0,.81241184,0,47.38,57.75,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,114,-17155.539,-32194.994,0,0,0,0,288.87524 +2127,2663,4649,4650,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.2091618,8.7485456,0,6,1,39.542484,0,1,1,2021,12,0,37,37,1,0,0,14.779325,14.779325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,48.98,57.22,8.333333333333334,1,1,0,0,7,7,4,0,253.5,291242.88,89965.078,225362.16,47759.465,0,806.76257,3157.01 +2127,2663,4650,4649,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.4322839,7.7015495,0,6,-1,-28.110765,0,2,2,2021,11,0,45,40,1,0,0,4.9100575,4.9100575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.98,57.22,52.6,52.88,10,1,1,0,0,9,7,4,0,253.5,291242.88,89965.078,225362.16,47759.465,0,806.76257,3157.01 +2128,2664,4651,4652,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,50,-2,-30.889763,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.4,42.8,8.333333333333334,1,1,0,0,0,12,3,1,1663,967522.38,-884.34424,327419.69,0,0,0,2285.0571 +2128,2664,4652,4651,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.9468727,7.5894418,50,2,95.569382,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7948546,62.4,42.8,62.49,55.09,8.333333333333334,1,1,0,0,5,12,3,1,1663,967522.38,-884.34424,327419.69,0,0,0,2285.0571 +2129,2665,4653,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.9740133,6.7468352,0,0,-1046.0575,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3413305,6.7535281,41.34,56.62,-9,-9,6.666666666666667,1,1,0,0,4,7,2,0,455,392630.88,279726.25,265610.13,137947.81,0,0,1483.2802 +2130,2666,4654,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.839756,6.9544125,0,0,-909.96405,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9834247,45.34,53.64,-9,-9,5,1,1,0,0,12,12,2,0,596,489053.41,156196.03,186266.23,0,359.65134,3429.8936,566.30969 +2131,2667,4655,4656,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.9035153,7.7439532,0,6,2,66.464111,0,-9,-9,2021,15,2,38,38,1,2,0,7.2893434,7.2893434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.28,53.83,33.86,52.31,5,1,1,0,0,6,1,5,1,2253.5,-23861.078,-28625.932,0,0,8417.2676,2081.2864,3788.2661 +2131,2667,4656,4655,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.7428989,8.4299994,0,6,-2,-15.412874,0,1,1,2021,28,10,48,0,1,10,0,12.980967,12.980967,.05,.05,0,0,0,0,0,0,0,0,0,1.1412493,0,33.86,52.31,39.28,53.83,5,1,1,0,1,5,1,5,1,2253.5,-23861.078,-28625.932,0,0,8417.2676,2081.2864,3788.2661 +2132,2668,4657,-9,4660,4658,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.5791,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2132,2668,4658,4660,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.5669765,9.4346714,0,2,2,-80.99321,0,2,2,2021,8,0,47,48,1,0,0,39.060146,39.060146,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,45.45,40.73,6.666666666666667,1,1,0,0,8,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2132,2668,4659,-9,4660,4658,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.40247,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2132,2668,4660,4658,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,8.0410843,8.2843647,0,2,-2,88.86042,-9,2,2,2021,8,0,20,0,1,0,0,18.114161,18.114161,.05,.05,0,0,0,0,0,0,0,0,0,.70459932,0,45.45,40.73,51.24,58.84,6.666666666666667,1,1,0,0,10,8,5,1,238,2726608.3,1584428.8,1254326.5,222648.69,0,0,4893.106 +2133,2669,4661,4663,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.6210208,7.9729857,0,12,-2,-28.394985,0,2,2,2021,12,2,25,27,1,2,0,8.4131851,8.4131851,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,55.63,51.83,57.2,6.666666666666667,1,1,0,0,10,12,4,1,693.66669,253001.13,-38970.223,78403.648,0,0,1746.3153,2823.6216 +2133,2669,4662,-9,4661,4663,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-962.67487,-9,2,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,4,1,693.66669,253001.13,-38970.223,78403.648,0,0,1746.3153,2823.6216 +2133,2669,4663,4661,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.7810678,8.3882599,0,12,2,43.965164,0,2,1,2021,7,0,45,48,1,0,0,14.825319,14.825319,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,40.64,55.63,8.333333333333334,1,1,0,0,13,12,4,1,693.66669,253001.13,-38970.223,78403.648,0,0,1746.3153,2823.6216 +2133,2670,4664,-9,4661,4663,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-923.01385,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.04,48.6,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,317,0,0,0,0,0,0,0 +2134,2671,4665,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,6.4190536,6.6292257,0,0,0,-1053.4119,-9,1,1,2021,11,1,75,0,1,1,0,1.0133162,1.0133162,0,0,0,0,0,0,0,2,1,1,0,0,0,45.82,38.67,-9,-9,3.333333333333333,1,1,0,1,8,10,2,0,412,172429.77,0,0,0,0,0,1104.5425 +2135,2672,4666,4667,-9,-9,1,0,30,1,2,0,2,2,-9,1,2,6.037199,6.115921,0,1,-14,76.791565,-9,3,2,2021,15,4,7,0,1,4,0,9.8943443,9.8943443,0,0,0,0,0,0,0,119,1,0,1,.860874,0,39,43,43.61,50.28,3.333333333333333,1,1,0,1,9,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2135,2672,4667,4666,-9,-9,1,1,44,1,2,0,2,2,-9,0,3,7.2877054,7.2532215,0,1,14,-37.001446,-9,2,2,2021,12,0,36,0,1,0,0,3.6109359,3.6109359,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.61,50.28,39,43,3.333333333333333,1,1,0,0,13,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2135,2672,4668,-9,4666,4667,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.87305,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2135,2672,4669,-9,4666,4667,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-857.56671,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,1,2100.25,3122.2705,-47637.383,94049.195,90148.68,-583.31433,1803.9324,3828.9304 +2136,2673,4670,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,8.5858269,8.7834969,0,0,-1095.0455,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5306368,55.26,55.85,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,2299,961473.63,732803.56,188713.31,0,0,0,3349.8508 +2137,2674,4671,4672,-9,-9,1,1,39,0,3,0,2,2,-9,0,2,7.9843149,8.1174717,0,15,4,91.017311,0,2,2,2021,16,4,49,34,1,4,0,6.8129139,6.8129139,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.01,58.45,30.85,57.39,0,1,1,0,0,7,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4672,4671,-9,-9,1,0,35,0,3,0,1,1,1,0,3,0,0,0,15,-4,97.138229,-9,2,2,2021,23,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.85,57.39,33.01,58.45,3.333333333333333,1,1,0,0,1,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4673,-9,4672,4671,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.4207,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4674,-9,4672,4671,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-915.42609,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2674,4675,-9,4672,4671,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1100.6046,-9,1,2,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.09,43.33,-9,-9,8.333333333333334,1,1,0,0,0,2,3,0,484.60001,58709.383,13954.768,0,0,2687.853,0,3561.6543 +2137,2675,4676,-9,4672,4671,1,1,19,0,3,1,2,0,0,0,2,0,0,0,0,0,-1030.1376,-9,1,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.09,47.5,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,920,68798.18,0,0,0,0,0,0 +2137,2676,4677,-9,-9,-9,1,1,18,0,3,1,2,0,-9,0,4,0,0,0,0,0,-971.74902,-9,-9,-9,2021,7,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.67,31.28,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,220,-111455.86,0,0,0,0,0,0 +2138,2677,4678,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,8.0035906,7.9420557,0,0,-938.09564,0,2,2,2021,30,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.29031816,7.7583132,29.66,56.63,-9,-9,3.333333333333333,1,1,0,0,5,10,4,1,344,744856.44,368653.47,329689.31,0,0,0,1850.0853 +2139,2678,4679,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1078.4833,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,373,-89892.875,0,0,0,0,0,-92.082603 +2139,2679,4680,-9,4679,-9,1,1,33,0,0,0,3,3,-9,0,4,8.7109756,8.480422,0,0,0,-1007.0645,-9,2,2,2021,1,0,57,0,1,0,0,8.8462124,8.8462124,0,0,0,0,0,0,0,0,1,1,0,3.3334193,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,443,-180239.02,-11745.572,0,0,0,0,2346.8496 +2140,2680,4681,-9,4682,4683,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.72113,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,3,1,1256,214307.78,5346.2368,0,0,-242.48123,0,1510.9432 +2140,2680,4682,4683,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,0,0,0,3,3,52.690884,0,3,2,2021,6,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,59.53,56.44,6.666666666666667,2,3,1,0,8,2,3,1,1256,214307.78,5346.2368,0,0,-242.48123,0,1510.9432 +2140,2680,4683,4682,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.0999346,8.1013737,0,3,-3,-77.564919,0,-9,-9,2021,7,0,35,36,1,0,0,8.4464455,8.4464455,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,62.49,55.09,5,1,1,0,0,2,2,3,1,1256,214307.78,5346.2368,0,0,-242.48123,0,1510.9432 +2141,2681,4684,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4556646,8.8042784,5.9240375,0,0,-1011.0849,0,-9,-9,2021,13,2,30,30,1,2,0,20.622608,20.622608,.05,.05,0,0,0,0,0,0,0,0,0,5.5512338,6.2039304,54.35,30.39,-9,-9,5,1,1,0,0,15,7,5,1,1299,36531,-92925.813,0,0,0,0,3009.0134 +2141,2682,4685,-9,-9,4684,1,0,26,0,0,0,1,1,-9,0,4,8.0354519,8.0605202,0,0,0,-975.88525,0,-9,2,2021,2,0,24,35,1,0,1,15.668659,15.668659,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,577,-3760.3286,0,0,0,0,0,1475.3962 +2141,2683,4686,-9,-9,4684,1,1,23,0,0,0,2,2,-9,0,5,7.8726501,7.7952757,0,0,0,-913.40857,0,-9,2,2021,8,0,40,42,1,0,1,8.406558,8.406558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.36,58.53,-9,-9,5,1,1,0,0,7,7,4,1,669,-60780.551,-88495.289,0,0,0,0,916.65204 +2142,2684,4687,4688,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8406587,7.4252725,9,2,180.08849,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.126112,7.520319,43.38,52.86,60.87,44.96,8.333333333333334,1,1,0,0,1,10,3,1,757.5,1067426.9,555876.13,425804.38,0,0,0,2410.5942 +2142,2684,4688,4687,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,9,-2,66.614296,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7407932,0,60.87,44.96,43.38,52.86,8.333333333333334,1,1,0,0,0,10,3,1,757.5,1067426.9,555876.13,425804.38,0,0,0,2410.5942 +2143,2685,4689,-9,-9,-9,1,1,29,0,0,0,3,3,-9,1,5,0,0,0,0,0,-912.42841,1,3,2,2021,31,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,6.95,66.08,-9,-9,0,1,1,0,1,0,2,1,0,2936,-142282.25,0,0,0,0,0,1203.7286 +2144,2686,4690,4691,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.369226,6.5933542,7,-3,-55.395023,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.151088,6.3451934,46.83,44.5,42.46,31,6.666666666666667,1,1,0,0,0,8,3,1,552.5,760748.13,342200.59,466444.22,25606.211,0,0,2771.0669 +2144,2686,4691,4690,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.9349904,7.6919045,7,3,129.40727,0,2,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,1,0,126.48544,0,0,1,1,0,3.8821433,8.0611525,42.46,31,46.83,44.5,5,1,1,0,0,0,8,3,1,552.5,760748.13,342200.59,466444.22,25606.211,0,0,2771.0669 +2145,2687,4692,4693,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.2843523,8.1538353,0,9,-6,-48.850262,0,2,2,2021,7,0,38,38,1,0,0,14.469954,14.469954,.05,.05,0,0,0,0,0,0,0,0,0,7.3131928,0,60.12,54.8,27.99,54.97,8.333333333333334,1,1,0,0,10,13,5,1,361,1036751.6,573857.38,316802.72,11994.016,0,0,4397.4907 +2145,2687,4693,4692,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.5815334,8.3848696,0,9,6,80.309563,0,2,2,2021,12,0,78,47,1,0,0,9.8059473,9.8059473,.05,.05,.05,0,0,0,0,0,0,0,0,.88747501,0,27.99,54.97,60.12,54.8,6.666666666666667,1,1,0,0,10,13,5,1,361,1036751.6,573857.38,316802.72,11994.016,0,0,4397.4907 +2145,2688,4694,-9,4692,4693,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1103.0631,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,202,197036.83,0,0,0,0,0,0 +2145,2689,4695,-9,4692,4693,1,1,19,0,0,0,2,2,-9,0,4,7.7481031,7.9588528,0,0,0,-895.88043,0,2,2,2021,7,0,40,20,1,0,1,6.3871083,6.3871083,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,742,9656.9268,0,0,0,6036.2183,0,696.28229 +2146,2690,4696,-9,4697,-9,1,0,12,0,1,1,3,0,-9,0,1,0,0,0,0,0,-928.41821,-9,1,-9,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,3,4,-9,0,0,8,5,1,2901,571058.38,395106.91,155286.53,39420.531,0,0,3623.7456 +2146,2690,4697,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,9.3546085,8.951725,0,0,0,-929.01855,0,2,1,2021,10,0,40,43,1,0,0,31.005312,31.005312,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,2901,571058.38,395106.91,155286.53,39420.531,0,0,3623.7456 +2147,2691,4698,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.5514274,7.5216565,0,0,0,-1054.1617,0,2,2,2021,10,1,30,30,1,1,0,7.9212279,7.9212279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.14,53.97,-9,-9,8.333333333333334,1,1,0,0,14,13,3,1,861,43445.836,-7107.9639,0,0,0,0,1236.7307 +2148,2692,4699,4700,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,6.7081432,7.0175529,0,41,-6,-76.325287,0,2,2,2021,8,0,20,30,1,0,0,5.3565092,5.3565092,0,0,0,0,0,0,0,0,1,1,0,8.445652,0,55.44,52.99,60.12,54.8,8.333333333333334,1,1,0,0,10,9,4,1,969,1881180,0,792427.38,0,0,0,10148.143 +2148,2692,4700,4699,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.4146767,8.6570101,7.906888,41,6,52.809978,0,-9,2,2021,6,0,50,48,1,0,0,4.6926708,4.6926708,0,0,0,0,0,0,0,0,1,1,0,9.812871,7.9927788,60.12,54.8,55.44,52.99,0,1,1,0,0,10,9,4,1,969,1881180,0,792427.38,0,0,0,10148.143 +2149,2693,4701,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-978.36383,0,2,-9,2021,16,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.4737024,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,265,181445.11,0,0,0,-273.20477,0,79.809013 +2150,2694,4702,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.5283113,7.3440857,0,0,-1074.0179,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4832487,7.7763276,67.61,20.62,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1186,802381,382956.44,213291.47,0,0,0,2229.3425 +2151,2695,4703,-9,4707,4706,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-910.0127,-9,2,2,2021,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4704,-9,4707,4706,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-898.79858,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4705,-9,4707,4706,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-824.99188,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4706,4707,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,8.2038393,8.2091036,0,4,1,109.63113,0,-9,-9,2021,19,7,30,30,1,7,0,12.580381,12.580381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.34,53.33,46.31,41.9,1.666666666666667,1,1,0,1,9,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2151,2695,4707,4706,-9,-9,1,0,47,0,3,0,2,2,-9,0,4,0,0,0,4,-1,-45.037735,0,2,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.31,41.9,19.34,53.33,3.333333333333333,3,4,0,0,0,8,2,0,386.79999,190282.64,29691.9,233544.97,83895.766,3881.8735,0,2588.321 +2152,2696,4708,-9,4709,4712,1,1,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-972.70392,1,1,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.55,66.2,-9,-9,6.666666666666667,2,3,0,0,0,4,1,0,229,-17574.797,0,0,0,0,0,0 +2152,2697,4709,4712,-9,-9,1,0,40,0,1,0,3,3,-9,0,3,7.6973963,7.9121461,0,5,-14,35.430279,0,3,2,2021,13,2,38,38,1,2,0,5.7752395,5.7752395,0,0,0,0,0,0,0,0,1,1,0,0,0,38.69,40.44,50.82,57.78,8.333333333333334,2,3,0,0,5,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2152,2697,4710,-9,4709,4712,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.645,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2152,2697,4711,-9,4709,4712,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-940.50189,-9,3,1,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.6,61.6,-9,-9,10,2,3,0,0,1,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2152,2697,4712,4709,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,8.1955433,7.8960085,0,5,14,-31.468473,0,-9,-9,2021,6,0,50,40,1,0,0,9.4914665,9.4914665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.82,57.78,38.69,40.44,8.333333333333334,2,3,0,0,5,4,3,0,654.5,688302.56,346406.84,427138.63,41826.191,0,5725.4253,2850.9045 +2153,2698,4713,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.4735408,7.337882,0,0,-991.04071,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.0588183,7.2868681,45.88,36.96,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,173,576791.5,123121.66,112175.64,0,0,0,752.53485 +2154,2699,4714,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,7.3437986,7.517396,0,0,0,-1005.0981,0,-9,-9,2021,13,4,28,0,1,4,0,7.194376,7.194376,0,0,0,0,0,0,0,0,1,1,0,0,0,37.44,59.68,-9,-9,5,4,2,0,1,1,8,3,0,132,-330236.78,0,0,0,0,0,1460.4808 +2155,2700,4715,-9,4716,4718,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.75287,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2155,2700,4716,4718,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,6.6823988,7.0771918,0,12,1,27.247217,0,2,3,2021,29,12,5,0,1,12,0,24.13175,24.13175,0,0,0,0,0,0,0,0,0,0,0,0,0,17.49,55.41,36.53,59.09,0,1,1,0,1,9,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2155,2700,4717,-9,4716,4718,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.3513,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2155,2700,4718,4716,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.6166468,9.5883436,0,12,-1,69.846016,0,2,2,2021,18,6,46,43,1,6,0,29.450642,29.450642,.05,.05,.05,0,0,0,0,0,0,0,0,1.5229383,0,36.53,59.09,17.49,55.41,5,1,1,0,0,14,9,5,1,650,3190519.3,335163,0,0,8296.918,0,4410.2417 +2156,2701,4719,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1047.6677,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,9.292635,0,86.742538,0,1,1,0,0,0,48.99,18.6,-9,-9,5,1,1,0,0,0,9,1,0,778,147318.88,0,158375.41,0,0,0,1660.2654 +2157,2702,4720,-9,4722,4721,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.62024,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2702,4721,4722,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,6.9831257,7.0594044,0,6,1,-12.618732,0,2,2,2021,12,1,16,0,1,1,0,8.5594635,8.5594635,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.28,52.09,52.66,48.73,8.333333333333334,1,1,0,0,1,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2702,4722,4721,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,6,-1,162.54469,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.66,48.73,49.28,52.09,6.666666666666667,1,1,0,0,2,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2702,4723,-9,4722,4721,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.0067,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,0,253.25,96787.234,28906.055,0,0,1660.6576,648.89142,1822.6002 +2157,2703,4724,-9,4722,4721,1,0,21,0,2,0,2,2,-9,0,4,7.7504001,7.6693192,0,0,0,-992.56396,0,3,3,2021,12,0,38,35,1,0,1,5.6978402,5.6978402,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.74,50.41,-9,-9,3.333333333333333,1,1,0,0,3,11,3,0,1098,-34761.535,-102669.94,0,0,8101.7261,0,423.22839 +2158,2704,4725,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.8660679,8.6364946,0,0,0,-990.48889,0,2,2,2021,6,0,60,60,1,0,0,16.064798,16.064798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,3,4,0,1,7,6,4,1,503,197514.09,64064.555,208860.06,154370.97,0,0,2341.386 +2158,2704,4726,-9,4725,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.73981,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,4,1,503,197514.09,64064.555,208860.06,154370.97,0,0,2341.386 +2158,2705,4727,-9,4725,-9,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-824.16132,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.1243182,0,41.65,60.41,-9,-9,8.333333333333334,4,2,0,0,1,6,1,1,372,52354.688,0,0,0,0,0,1517.293 +2158,2706,4728,-9,4725,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1058.3169,-9,1,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.068376929,0,48.98,57.22,-9,-9,5,4,2,0,0,0,6,1,1,1762,29787.609,0,0,0,0,0,-297.97903 +2159,2707,4729,-9,4731,4730,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1056.1241,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3579755,0,49.06,58.64,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,842,277810.16,93546.273,120248.55,22875.363,0,6260.1221,2517.531 +2159,2707,4730,4731,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,8.5214233,8.4595776,0,10,2,-107.74563,0,-9,-9,2021,11,0,40,40,1,1,0,13.309831,13.309831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,61.11,48.86,7,1,1,0,0,1,4,4,1,842,277810.16,93546.273,120248.55,22875.363,0,6260.1221,2517.531 +2159,2707,4731,4730,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.1116085,6.9116735,0,10,-2,7.4423103,0,2,2,2021,6,0,17,17,1,0,0,7.7424498,7.7424498,.05,.05,0,0,0,0,0,0,1,1,0,3.2568791,0,61.11,48.86,49,50,10,1,1,0,0,12,4,4,1,842,277810.16,93546.273,120248.55,22875.363,0,6260.1221,2517.531 +2159,2708,4732,-9,4731,4730,1,1,26,0,1,0,2,2,-9,0,4,7.6875162,8.0158463,0,0,0,-975.7915,0,2,2,2021,10,0,39,39,1,1,1,7.5390368,7.5390368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,0,0,1,4,4,1,522,-23945.861,64269.781,0,0,5797.603,-299.54895,852.77173 +2160,2709,4733,4735,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.6459332,7.9142699,0,10,-1,-50.954472,0,3,2,2021,8,1,37,37,1,1,0,6.3146095,6.3146095,0,0,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,50.52,40.15,10,1,1,0,0,11,5,5,1,640,394080.91,233136.86,267751.84,180783.53,0,865.45789,4844.5361 +2160,2709,4734,-9,4733,4735,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.9641,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,640,394080.91,233136.86,267751.84,180783.53,0,865.45789,4844.5361 +2160,2709,4735,4733,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,9.5687819,9.7347851,0,10,1,-13.619819,-9,2,2,2021,10,0,45,0,1,0,0,32.411167,32.411167,.05,.05,0,0,0,0,0,0,0,0,0,2.241555,0,50.52,40.15,59.14,52.5,8.333333333333334,1,1,0,0,12,5,5,1,640,394080.91,233136.86,267751.84,180783.53,0,865.45789,4844.5361 +2161,2710,4736,4738,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.3459959,8.2303944,0,11,-7,17.914795,0,2,3,2021,11,2,53,55,1,2,0,7.3680391,7.3680391,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,52.91,55.33,8.333333333333334,1,1,0,0,14,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2161,2710,4737,-9,4736,4738,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.7432,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2161,2710,4738,4736,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.5882282,8.4730749,0,11,7,-28.588215,0,3,3,2021,14,2,40,30,1,2,0,15.283565,15.283565,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,48.87,58.55,8.333333333333334,1,1,0,0,14,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2161,2710,4739,-9,4736,4738,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.45953,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,863.5,223173.05,95237.266,442309.75,224213.81,0,8110.7632,4639.7568 +2162,2711,4740,-9,4742,4741,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.66388,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,5,1,299.66666,407152.78,51681.625,233797.91,53736.297,0,0,3367.0313 +2162,2711,4741,4742,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,9.2919359,9.3112926,0,21,5,-40.451031,-9,-9,-9,2021,15,4,48,0,1,4,0,28.285156,28.285156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.31,55.49,47.25,43.19,8.333333333333334,1,1,0,0,15,1,5,1,299.66666,407152.78,51681.625,233797.91,53736.297,0,0,3367.0313 +2162,2711,4742,4741,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,.1584817,.18926778,0,13,-5,4.1154022,0,2,2,2021,7,0,6,-9,1,0,0,.0090407841,.0090407841,0,0,0,0,0,0,0,0,0,0,0,0,0,47.25,43.19,33.31,55.49,6.666666666666667,1,1,0,0,10,1,5,1,299.66666,407152.78,51681.625,233797.91,53736.297,0,0,3367.0313 +2163,2712,4743,4746,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,7.7367301,7.5642471,0,9,-5,48.713821,0,-9,-9,2021,7,0,60,40,1,0,0,3.860625,3.860625,.05,.05,0,0,0,0,0,0,1,1,0,5.477138,0,63.48,51.85,66.37,38.36,8.333333333333334,2,3,0,0,9,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2163,2712,4744,-9,4746,4743,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.4353,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2163,2712,4745,-9,4746,4743,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-931.21375,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2163,2712,4746,4743,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.6954098,7.8039598,0,15,5,94.622078,0,2,2,2021,4,0,36,37,1,0,0,5.8875713,5.8875713,0,0,0,0,0,0,0,0,1,1,0,0,0,66.37,38.36,63.48,51.85,8.333333333333334,2,3,0,0,12,2,3,0,243.5,56060.738,-6360.5835,165758.47,140860.44,0,0,2777.9146 +2164,2713,4747,4748,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.5755091,8.4018469,0,34,-3,-6.1754475,0,2,3,2021,7,0,22,46,1,0,0,28.033314,28.033314,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,57.33,53.46,48.3,41.76,6.666666666666667,1,1,0,0,8,5,5,1,463.5,890240.75,608374.25,244900.58,11007.823,3025.5527,0,3711.8081 +2164,2713,4748,4747,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.4456129,8.5730591,0,34,3,77.320847,0,-9,-9,2021,12,1,39,41,1,1,0,13.966496,13.966496,.05,.05,0,0,0,0,0,14.5,0,0,0,.37611598,0,48.3,41.76,57.33,53.46,6.666666666666667,1,1,0,0,7,5,5,1,463.5,890240.75,608374.25,244900.58,11007.823,3025.5527,0,3711.8081 +2164,2714,4749,-9,4748,4747,1,1,23,0,0,0,2,2,-9,0,4,8.0753803,8.6294823,0,0,0,-1186.3209,0,2,1,2021,6,0,44,37,1,0,1,11.866877,11.866877,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,5,4,1,473,41374.211,59481.992,0,0,9617.0371,0,1532.3599 +2165,2715,4750,4751,-9,-9,1,1,51,0,0,0,3,3,-9,1,2,0,0,0,1,-1,0,-9,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,45,40,21.37,22.93,5,1,1,0,0,0,12,2,0,1586.5,-5782.2393,0,0,0,0,-169.95697,1292.5791 +2165,2715,4751,4750,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,1,1,0,-9,-9,-9,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.37,22.93,45,40,5,1,1,0,0,0,12,2,0,1586.5,-5782.2393,0,0,0,0,-169.95697,1292.5791 +2166,2716,4752,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.6285286,8.4868221,0,0,0,-917.59198,0,2,1,2021,5,0,45,44,1,0,0,14.651667,14.651667,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,1386,9019.2451,104576.8,0,0,0,0,1983.9332 +2166,2717,4753,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.2942457,8.2841349,0,0,0,-1031.6915,-9,-9,-9,2021,10,0,35,0,1,1,0,16.306919,16.306919,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,2,8,5,0,1159,21580.453,6053.3892,0,0,0,0,1352.9432 +2166,2718,4754,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.4901619,8.4114075,0,0,0,-964.91156,-9,-9,-9,2021,12,0,41,0,1,2,0,10.363228,10.363228,.05,.05,0,0,0,0,0,0,0,0,0,.78710383,0,46,58,-9,-9,7,4,2,0,0,2,8,4,0,262,-13508.979,11225.826,0,0,0,0,1095.9293 +2167,2719,4755,4756,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,6,-6,-86.501656,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,30.200184,0,0,1,1,0,5.8985763,0,51,46,54,46,8,1,1,0,0,0,11,4,1,1086,1627593.8,649963.5,681322.19,0,-100.85547,0,3702.9524 +2167,2719,4756,4755,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.4288692,8.3279715,6,6,-94.894859,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4693012,8.4944668,54,46,51,46,8,2,3,0,0,0,11,4,1,1086,1627593.8,649963.5,681322.19,0,-100.85547,0,3702.9524 +2168,2720,4757,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.039,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.17,28.73,-9,-9,5,1,1,0,0,0,7,1,0,599,134107.11,-70594.5,133528.89,0,0,0,846.44562 +2169,2721,4758,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.1267,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.3,26.53,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,154,-48393.16,0,175327.41,0,0,0,312.332 +2170,2722,4759,4760,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,-3,-19.44496,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,47.38,57.75,7,1,1,0,0,0,11,4,1,1386.5,1590025.6,331107.88,245927.2,0,0,0,3370.8152 +2170,2722,4760,4759,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,8.2934999,8.2296467,6.9544449,44,3,-10.369637,0,2,-9,2021,10,1,4,16,1,1,0,113.30869,113.30869,0,0,0,1,0,0,0,74.5,1,1,0,7.6444144,7.0496206,47.38,57.75,50,47,6.666666666666667,1,1,0,0,10,11,4,1,1386.5,1590025.6,331107.88,245927.2,0,0,0,3370.8152 +2171,2723,4761,4762,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,6.9716883,7.2982025,0,7,-2,38.302711,0,-9,-9,2021,9,0,40,40,1,1,0,3.0228965,3.0228965,0,0,0,0,0,0,0,0,0,0,0,6.9014831,0,52,55,60.12,54.8,8,1,1,0,0,1,13,3,1,1094,26447.426,0,195965.06,126612.2,0,0,1582.9773 +2171,2723,4762,4761,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,7.5048742,7.6719923,0,7,2,-47.494598,0,3,3,2021,8,1,40,35,1,1,0,4.6855478,4.6855478,0,0,0,0,0,0,0,27,0,0,0,0,0,60.12,54.8,52,55,8.333333333333334,1,1,0,0,8,13,3,1,1094,26447.426,0,195965.06,126612.2,0,0,1582.9773 +2172,2724,4763,4764,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.2327733,6.6286559,55,0,-30.347893,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.9154925,55.19,54.26,42.46,49.11,8.333333333333334,1,1,0,0,0,2,2,1,473.5,119169.45,102440.63,0,0,0,0,1271.3497 +2172,2724,4764,4763,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,55,0,102.91319,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,38.291691,0,0,1,1,0,0,0,42.46,49.11,55.19,54.26,8.333333333333334,1,1,0,0,0,2,2,1,473.5,119169.45,102440.63,0,0,0,0,1271.3497 +2173,2725,4765,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.0293512,8.3150482,0,0,0,-1092.2833,0,-9,-9,2021,6,0,38,37,1,0,0,10.450999,10.450999,0,0,0,0,0,0,0,0,0,0,0,0,0,48.06,50.73,-9,-9,1.666666666666667,1,1,0,0,4,2,4,1,327,-44088.113,0,0,0,0,0,1034.4744 +2174,2726,4766,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.5167913,8.7101793,0,0,0,-957.84894,0,2,2,2021,10,0,37,74,1,0,0,17.010452,17.010452,.05,.05,0,0,0,0,0,0,0,0,0,5.4200292,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,825,345430.16,367666.41,0,0,5916.2085,-1123.1448,2391.916 +2175,2727,4767,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.9042521,8.2011061,0,0,0,-974.17224,0,3,3,2021,11,0,38,38,1,0,0,11.85526,11.85526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.75,50.49,-9,-9,8.333333333333334,1,1,0,0,5,5,4,0,623,146133.2,21878.02,144904.77,0,0,0,1710.2831 +2176,2728,4768,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.4733863,5.6054277,0,0,-1076.5482,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.6353662,5.3303804,43.09,54.67,-9,-9,5,1,1,0,0,0,1,2,1,638,36431.078,52027.609,0,0,0,0,718.54797 +2176,2729,4769,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,4,0,3.7343202,3.9535508,0,0,-1159.2518,0,3,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5412121,0,32.93,49.86,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,726,-265222.38,0,0,0,0,0,1407.974 +2177,2730,4770,4773,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,9.2821856,9.5185852,0,9,1,-53.872944,0,2,2,2021,10,0,50,52,1,0,0,25.182705,25.182705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,42.44,57.54,8.333333333333334,1,1,0,0,13,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4771,-9,4773,4770,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-967.70526,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4772,-9,4773,4770,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-901.4967,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4773,4770,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,8.5863171,8.4221411,0,9,-1,48.26749,0,-9,-9,2021,15,3,40,36,1,3,0,15.560698,15.560698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.44,57.54,55.3,55.6,8.333333333333334,1,1,0,0,13,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2177,2730,4774,-9,4773,4770,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.6572,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,893.40002,290635.44,50503.883,336421.13,122087.07,0,0,5578.7642 +2178,2731,4775,-9,4777,4776,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1001.2466,-9,1,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,5,1,1298,28191.943,129636.27,264690.03,158949.95,38949.457,8283.3799,3908.6802 +2178,2731,4776,4777,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.0295124,8.0983791,0,22,1,86.465187,0,2,2,2021,8,1,43,37,1,1,0,7.636167,7.636167,.05,.05,0,0,0,0,0,0,1,1,0,1.6383162,0,52.93,55.31,46.44,59.62,8.333333333333334,1,1,0,0,13,2,5,1,1298,28191.943,129636.27,264690.03,158949.95,38949.457,8283.3799,3908.6802 +2178,2731,4777,4776,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.1379242,8.9283171,0,22,-1,-71.704979,0,2,2,2021,12,0,41,36,1,0,0,27.634706,27.634706,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,52.93,55.31,8.333333333333334,1,1,0,0,13,2,5,1,1298,28191.943,129636.27,264690.03,158949.95,38949.457,8283.3799,3908.6802 +2179,2732,4778,-9,-9,-9,1,1,33,0,0,0,3,3,-9,0,3,7.8690248,7.7696676,0,0,0,-1109.5723,-9,-9,-9,2021,5,0,80,0,1,0,0,3.983583,3.983583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,0,6,11,4,1,471,-12927.362,138295.05,0,0,0,0,1992.7841 +2180,2733,4779,4780,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.223403,6.9242721,6,1,37.627884,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.633812,7.0360231,62.49,55.09,60.02,56.42,10,1,1,0,0,7,7,2,1,742.5,358789.19,192089.88,209975.27,0,0,0,1181.0842 +2180,2733,4780,4779,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,6,-1,-43.22488,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0217307,0,60.02,56.42,62.49,55.09,10,1,1,0,0,0,7,2,1,742.5,358789.19,192089.88,209975.27,0,0,0,1181.0842 +2181,2734,4781,4782,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.596313,6.5568166,37,-1,-71.193039,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5058565,6.8692703,41.6,27.1,60.29,52.11,6.666666666666667,1,1,0,0,0,5,4,1,772.5,1839929.5,987243.63,270073.63,0,0,0,4254.6489 +2181,2734,4782,4781,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.5574265,8.6159935,37,1,-85.123299,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1148863,8.4295559,60.29,52.11,41.6,27.1,8.333333333333334,1,1,0,0,0,5,4,1,772.5,1839929.5,987243.63,270073.63,0,0,0,4254.6489 +2182,2735,4783,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1040.8553,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,29.04,-9,-9,5,1,1,0,0,0,8,1,0,217,-98403.031,0,0,0,0,0,1099.7605 +2183,2736,4784,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.8866138,8.7743235,0,0,0,-1007.616,0,2,3,2021,12,0,40,42,1,0,0,17.210802,17.210802,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.26,56.19,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,2374,298772.84,122282.52,0,0,0,13976.843,2393.823 +2184,2737,4785,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.618381,7.7537389,0,0,0,-920.84222,-9,-9,-9,2021,11,0,35,0,1,0,0,8.5627174,8.5627174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,2,3,0,0,4,9,4,1,710,-166263.45,54552.508,0,0,7178.7881,0,232.90907 +2185,2738,4786,4787,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.6100435,8.8422022,9,-1,21.52844,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7582731,8.5034876,60.05,45.35,57.16,56.15,8.333333333333334,1,1,0,0,0,9,5,1,1569,3277949,981303.88,1896352.9,0,0,0,5901.0313 +2185,2738,4787,4786,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,6.0208058,6.2015123,9,1,-56.224983,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4177098,6.2699618,57.16,56.15,60.05,45.35,8.333333333333334,1,1,0,0,0,9,5,1,1569,3277949,981303.88,1896352.9,0,0,0,5901.0313 +2186,2739,4788,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,0,0,0,0,-956.95142,0,2,2,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.46,40.89,-9,-9,8.333333333333334,3,4,0,0,5,8,1,1,687,197351.05,0,254741.08,0,0,-34.246647,225.27641 +2187,2740,4789,4790,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.1594191,8.2395086,0,35,-1,-54.549816,0,3,3,2021,9,2,49,37,1,2,0,7.9888268,7.9888268,0,0,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.06,57.76,10,1,1,0,0,11,2,5,1,274,1087528,85357.391,834442.25,221445.2,3470.7395,0,3422.5273 +2187,2740,4790,4789,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,7.7075758,8.4083357,8.1642189,35,1,-61.26569,0,2,1,2021,8,0,30,32,1,0,0,7.3132491,7.3132491,.05,.05,0,0,0,0,0,2,0,0,0,0,8.0474825,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,11,2,5,1,274,1087528,85357.391,834442.25,221445.2,3470.7395,0,3422.5273 +2187,2741,4791,-9,4789,4790,1,1,20,0,0,0,2,2,-9,0,5,7.3908944,7.4668989,0,0,0,-955.25458,0,3,1,2021,8,0,35,39,1,0,1,5.9637976,5.9637976,.05,.05,0,0,0,0,0,0,0,0,0,1.9991634,0,60.02,56.42,-9,-9,10,1,1,0,0,2,2,3,1,181,63726.359,-34858.398,0,0,0,0,539.84821 +2188,2742,4792,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.3727579,8.8037653,7.788846,0,0,-878.54242,0,3,3,2021,8,1,15,42,1,1,0,34.443573,34.443573,0,0,0,0,0,0,0,14.5,1,1,0,0,8.0904255,57.06,57.76,-9,-9,10,1,1,0,0,11,1,5,1,455,54505.141,17256.92,235270.36,87741.43,0,0,3157.8679 +2189,2743,4793,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-973.30615,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.89,52.61,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,647,154882.09,0,0,0,0,0,1695.7468 +2190,2744,4794,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.82021,7.780488,0,0,0,-892.36066,0,2,1,2021,18,7,35,37,1,7,0,7.479948,7.479948,.05,.05,0,0,0,0,0,0,0,0,0,6.3966689,0,46.74,20.78,-9,-9,3.333333333333333,1,1,0,0,4,2,3,0,498,-124615.49,1560.9651,0,0,4616.2837,0,1495.2303 +2191,2745,4795,-9,4798,4797,1,0,16,0,2,1,3,0,-9,1,2,0,0,0,0,0,-937.92255,-9,2,2,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.27,36.1,-9,-9,5,1,1,0,0,0,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2191,2745,4796,-9,4798,4797,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.1731,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2191,2745,4797,4798,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.2142134,8.2892189,0,6,2,74.941284,0,-9,-9,2021,11,0,53,40,1,0,0,7.5169029,7.5169029,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,16.04,23.99,8.333333333333334,1,1,0,0,12,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2191,2745,4798,4797,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,0,0,0,6,-2,-21.725561,0,-9,2,2021,33,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,16.04,23.99,57.16,56.15,0,1,1,0,0,0,2,3,1,1185.5,387405.44,216359,167335.58,23478.582,0,0,3697.7271 +2192,2746,4799,4800,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.4612608,7.605927,44,-1,56.186085,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.1920176,7.4502487,54.68,58.58,43.27,52.73,6.666666666666667,1,1,0,0,0,2,3,1,484,1220109,608115,242160.69,0,7301.5869,0,3749.1584 +2192,2746,4800,4799,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.8390698,6.7802119,44,1,46.644218,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0081863,6.836596,43.27,52.73,54.68,58.58,6.666666666666667,1,1,0,0,1,2,3,1,484,1220109,608115,242160.69,0,7301.5869,0,3749.1584 +2193,2747,4801,-9,-9,-9,1,0,26,1,2,0,2,2,-9,1,3,7.2341709,7.2153459,0,0,0,-1045.9459,0,2,2,2021,12,0,25,20,1,0,0,6.9659882,6.9659882,.05,.05,0,0,0,0,0,27,1,1,0,0,0,27.29,57.87,-9,-9,6.666666666666667,1,1,0,0,7,12,2,0,982.33331,-140391.61,-34196.16,0,0,0,0,2143.2229 +2193,2747,4802,-9,4801,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.99011,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,982.33331,-140391.61,-34196.16,0,0,0,0,2143.2229 +2193,2747,4803,-9,4801,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.69128,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,2,0,982.33331,-140391.61,-34196.16,0,0,0,0,2143.2229 +2194,2748,4804,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.3238301,7.2620578,0,0,0,-938.80347,0,2,3,2021,11,0,45,-9,1,2,1,3.1005054,3.1005054,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,48.06,-9,-9,5,1,1,0,0,8,5,3,0,5647,-40386.438,-26858.016,0,0,0,0,272.79691 +2195,2749,4805,4806,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.183074,5.7598205,9,2,44.189468,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,13.417022,0,0,1,1,0,6.9791584,6.0067887,61.19,42.11,65.53,38.76,10,1,1,0,0,0,13,2,1,835,254516.5,95494.891,129540.42,35669.898,0,0,783.83765 +2195,2749,4806,4805,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.4960861,4.0328903,9,-2,85.271599,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3367867,4.5822973,65.53,38.76,61.19,42.11,10,1,1,0,0,0,13,2,1,835,254516.5,95494.891,129540.42,35669.898,0,0,783.83765 +2196,2750,4807,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,4.8502879,4.8215346,0,0,-1102.0656,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8476229,5.1090627,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,12,13,2,1,941,74654.383,96567.266,119764.38,0,0,0,972.04913 +2197,2751,4808,4809,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.2048569,9.2567902,0,3,-4,-35.567337,0,1,1,2021,10,0,40,40,1,1,0,27.448536,27.448536,.05,.05,0,0,0,0,0,0,1,1,0,1.8574544,0,50,55,56.74,28.63,8,1,1,0,0,1,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2197,2751,4809,4808,-9,-9,1,1,52,0,2,0,1,1,-9,1,2,7.8713379,8.7032251,7.2388077,3,4,-8.7643595,0,1,1,2021,8,0,25,24,1,0,0,15.293151,15.293151,.05,.05,0,0,0,0,0,0,1,1,0,7.0970726,7.8236899,56.74,28.63,50,55,8.333333333333334,1,1,0,0,9,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2197,2751,4810,-9,4808,4809,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.95984,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2197,2751,4811,-9,4808,4809,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1187,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,984.25,787926.75,561903.19,280373.31,96493.977,14579.744,17305.578,6593.3711 +2198,2752,4812,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1152.7064,-9,-9,-9,2021,8,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.46,57.04,-9,-9,8.333333333333334,1,1,0,0,2,9,1,0,1038,70643.828,0,0,0,0,0,380.19385 +2199,2753,4813,4814,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,7.9267521,7.8113413,0,2,0,33.402309,0,-9,-9,2021,0,0,33,36,1,0,0,8.9364901,8.9364901,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,36.41,54.92,10,2,3,0,0,1,2,3,1,536.5,-28687.625,34063.172,0,0,8273.2549,0,2958.2043 +2199,2753,4814,4813,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.2569108,7.7856035,0,2,0,38.287575,0,3,2,2021,14,2,47,47,1,2,0,4.4220624,4.4220624,0,0,0,0,0,0,0,0,0,0,0,7.3866997,0,36.41,54.92,62.39,56.71,8.333333333333334,2,3,0,0,5,2,3,1,536.5,-28687.625,34063.172,0,0,8273.2549,0,2958.2043 +2200,2754,4815,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.439683,7.2537136,0,0,0,-1072.0281,0,2,2,2021,8,0,35,30,1,0,0,4.647893,4.647893,0,0,0,0,0,0,0,0,1,1,0,0,0,53.13,40.75,-9,-9,5,1,1,0,1,11,2,3,0,1101,-62555.816,51477.25,0,0,0,0,1119.7195 +2201,2755,4816,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.4186597,6.609128,0,0,-893.59039,0,2,2,2021,14,4,0,11,4,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.7071098,6.757443,40.71,62.41,-9,-9,6.666666666666667,1,1,0,0,15,12,2,1,1147,230993.89,18738.611,134108.5,0,0,0,-629.44519 +2202,2756,4817,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.0249577,9.2346125,0,0,0,-1071.5848,0,3,-9,2021,6,0,30,25,1,0,0,31.239246,31.239246,.05,.05,0,0,0,0,0,0,0,0,0,6.3949771,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,652,508362.16,307029.66,262592.41,57835.613,0,0,3425.47 +2203,2757,4818,4819,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,9.0628233,8.9960022,7,3,-92.832924,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.9331942,8.5351267,46.98,28.76,52,53,6.666666666666667,1,1,0,0,7,10,5,1,785,1055279.5,886959.75,132020.61,60677.945,0,0,4252.6045 +2203,2757,4819,4818,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,34,-3,-95.92701,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,46.98,28.76,8,1,1,0,0,0,10,5,1,785,1055279.5,886959.75,132020.61,60677.945,0,0,4252.6045 +2204,2758,4820,4821,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.8609724,5.8258891,56,-1,45.726849,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8685331,52,45,54,46,8,1,1,0,0,0,4,2,1,572.5,1184695.6,91639.703,158302.66,0,0,0,2390.1997 +2204,2758,4821,4820,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.9692254,6.9369445,56,1,5.7247381,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3470016,6.8185673,54,46,52,45,8,1,1,0,0,0,4,2,1,572.5,1184695.6,91639.703,158302.66,0,0,0,2390.1997 +2205,2759,4822,4823,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.3498402,8.2903004,45,3,-84.590485,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7498374,8.0255289,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,0,8,4,1,556,905656.25,0,775517.5,0,0,0,4001.7 +2205,2759,4823,4822,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5615878,7.5219908,45,-3,-13.62836,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8512411,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,556,905656.25,0,775517.5,0,0,0,4001.7 +2206,2760,4824,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.4343009,7.5501876,0,0,-1128.0701,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,26.419752,5.2941589,233.14494,0,1,1,0,6.8039298,7.3538895,46.85,19.4,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,816,793524,198336.63,670643.38,0,0,0,2850.9211 +2207,2761,4825,4826,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9539242,8.0501337,0,9,-3,120.90804,0,-9,3,2021,8,0,51,36,1,0,0,7.2182889,7.2182889,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,10,1,1,0,0,10,11,3,0,1367,222207.66,152165.55,143747.91,0,7735.2158,0,1190.9531 +2207,2761,4826,4825,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,6.4867935,6.244709,9,3,95.295959,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.0423403,6.3641062,54.96,53.17,57.33,53.46,10,1,1,0,0,9,11,3,0,1367,222207.66,152165.55,143747.91,0,7735.2158,0,1190.9531 +2207,2762,4827,-9,4825,4826,1,1,34,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1028.0027,0,3,3,2021,30,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.64,60.53,-9,-9,1.666666666666667,1,1,0,0,1,11,1,0,978,0,0,0,0,0,0,131.69952 +2208,2763,4828,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2553539,7.9680252,0,0,0,-1144.5192,0,3,3,2021,16,4,48,46,1,4,0,8.7638159,8.7638159,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,34.37,38.58,-9,-9,6.666666666666667,1,1,0,0,12,13,4,1,432,721687.06,486807.56,233236.33,69936.406,7604.0498,4288.7432,1667.2151 +2209,2764,4829,4830,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.7777128,8.5317106,0,20,-1,-21.978004,0,2,2,2021,10,0,36,35,1,0,0,19.938644,19.938644,0,0,0,0,0,0,0,2,1,1,0,0,0,53.23,55.33,46.28,62.6,8.333333333333334,1,1,0,0,7,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2209,2764,4830,4829,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,7.2990813,7.3890233,0,20,1,53.414398,0,3,2,2021,10,0,55,50,1,0,0,3.1571279,3.1571279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,53.23,55.33,8.333333333333334,1,1,0,0,8,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2209,2764,4831,-9,4829,4830,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.0148,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2209,2764,4832,-9,4829,4830,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.2501,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,655.75,125727.82,16268.579,136610.17,138903.28,3476.2388,0,2576.7073 +2210,2765,4833,4834,-9,-9,1,1,34,0,1,0,1,1,-9,0,4,8.90063,8.8339491,0,8,2,-77.751587,0,2,2,2021,10,0,84,36,1,0,0,12.558316,12.558316,0,0,0,0,0,0,0,0,1,1,0,0,0,59.74,41.31,44.76,53.53,8.333333333333334,1,1,0,0,9,13,5,1,1120,217647.64,99665.805,0,0,0,0,4934.2075 +2210,2765,4834,4833,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.8575077,8.7541018,0,8,-2,2.8360872,0,-9,-9,2021,15,4,40,37,1,4,0,18.128172,18.128172,0,0,0,0,0,0,0,0,1,1,0,0,0,44.76,53.53,59.74,41.31,8.333333333333334,1,1,0,0,8,13,5,1,1120,217647.64,99665.805,0,0,0,0,4934.2075 +2210,2765,4835,-9,4834,4833,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-894.10388,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,1120,217647.64,99665.805,0,0,0,0,4934.2075 +2211,2766,4836,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,2.2081223,2.2957151,0,0,-963.03668,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,14.982662,0,0,1,1,0,0,2.5310159,60.73,18.88,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,1462,515177,25453.875,407373.84,0,0,0,1578.2174 +2212,2767,4837,4838,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.2635779,7.2017841,55,3,-29.680927,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1504724,7.0113897,54.37,54.8,56.41,48.18,8.333333333333334,1,1,0,0,0,8,2,1,406,713567.88,342551.13,338390.06,0,0,0,2006.0066 +2212,2767,4838,4837,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,55,-3,77.364059,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.41,48.18,54.37,54.8,8.333333333333334,1,1,0,0,5,8,2,1,406,713567.88,342551.13,338390.06,0,0,0,2006.0066 +2213,2768,4839,-9,4842,4840,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1142.8091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2213,2768,4840,4842,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.3263273,8.5660133,0,5,10,-108.87749,0,-9,-9,2021,7,0,52,63,1,0,0,12.766764,12.766764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.06,34.28,54.79,55.86,6.666666666666667,3,4,0,0,4,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2213,2768,4841,-9,4842,4840,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.2437,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2213,2768,4842,4840,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,8.1951923,8.1792459,0,5,-10,17.669743,0,1,2,2021,11,0,48,30,1,0,0,7.6995053,7.6995053,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.06,34.28,8.333333333333334,3,4,0,0,10,8,4,0,485.25,856314.31,325878.91,597176.25,169112.88,5974.7485,0,3959.4729 +2214,2769,4843,4845,-9,-9,1,0,35,1,1,0,2,2,-9,0,2,7.204,7.0609961,0,11,0,-70.157074,0,2,2,2021,12,0,30,-9,1,0,0,7.034781,7.034781,.05,.05,0,0,0,0,0,0,1,1,0,4.2260933,0,34.44,48.18,44.42,54.24,5,1,1,0,0,13,9,4,0,2091.3333,90853.094,-44259.789,0,0,0,0,3639.459 +2214,2769,4844,-9,4843,4845,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.40552,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,9,4,0,2091.3333,90853.094,-44259.789,0,0,0,0,3639.459 +2214,2769,4845,4843,-9,-9,1,1,35,1,1,0,1,1,-9,0,2,8.4911165,9.1348162,0,11,0,107.27258,0,2,2,2021,12,0,40,33,1,0,0,20.987568,20.987568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.42,54.24,34.44,48.18,6.666666666666667,1,1,0,0,13,9,4,0,2091.3333,90853.094,-44259.789,0,0,0,0,3639.459 +2215,2770,4846,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.5288386,7.8327732,0,0,-1190.1615,0,1,1,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1022863,7.5571613,64.57000000000001,12.51,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,660,185360.92,94566.492,0,0,0,0,1152.4688 +2216,2771,4847,4848,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,0,0,35,16,21.625381,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0745301,0,51.77,58.57,58.73,37.79,3.333333333333333,1,1,0,0,8,9,2,1,635,1341360.5,-38392.031,631375.56,0,0,0,42.986626 +2216,2771,4848,4847,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,6.266171,6.2649183,0,35,-16,36.92202,0,2,1,2021,12,0,30,40,1,0,0,2.0122521,2.0122521,0,0,0,0,0,0,0,0,1,1,0,0,0,58.73,37.79,51.77,58.57,8.333333333333334,1,1,0,0,3,9,2,1,635,1341360.5,-38392.031,631375.56,0,0,0,42.986626 +2217,2772,4849,4850,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2552414,8.5558147,0,10,8,34.672588,0,2,2,2021,12,0,39,39,1,0,0,12.396014,12.396014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.97,32.79,59.43,58.05,5,1,1,0,0,10,10,5,1,552,1495503.4,1164760.5,251707.16,56280.156,9030.082,0,4737.7881 +2217,2772,4850,4849,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,9.1983929,9.3525324,0,10,-8,-49.661446,0,1,1,2021,6,0,43,50,1,0,0,25.712576,25.712576,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,40.97,32.79,8.333333333333334,1,1,0,0,10,10,5,1,552,1495503.4,1164760.5,251707.16,56280.156,9030.082,0,4737.7881 +2218,2773,4851,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.5925388,9.5145531,0,0,0,-952.04303,0,2,2,2021,7,0,60,50,1,0,0,30.463694,30.463694,0,0,0,0,0,0,0,0,0,0,0,0,0,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,12,10,5,0,387,97487.117,-80064.125,132466.11,80177.695,0,0,7871.4922 +2219,2774,4852,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1092.5262,0,3,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,37.08,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,303,-193297.7,0,0,0,0,0,1600.6986 +2220,2775,4853,4854,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.7115359,6.7713413,41,-5,3.8318939,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.1465931,6.5577512,56.65,38.59,57.89,38.61,6.666666666666667,1,1,0,0,0,10,3,1,1076,865686.38,246790.81,279133.94,0,0,0,4030.7891 +2220,2775,4854,4853,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,7.939651,7.771266,41,5,60.038902,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4336414,7.4931498,57.89,38.61,56.65,38.59,3.333333333333333,1,1,0,0,0,10,3,1,1076,865686.38,246790.81,279133.94,0,0,0,4030.7891 +2221,2776,4855,-9,4856,4857,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-942.23199,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,1023,127400.03,38891.277,206234.61,41385.855,14306.773,0,3231.5461 +2221,2776,4856,4857,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.1473694,8.1361151,0,2,0,55.152348,0,2,2,2021,10,0,36,35,1,0,0,9.6097755,9.6097755,.05,.05,0,0,0,0,0,0,1,1,0,1.3594475,0,45.2,57.55,58.15,52.91,8.333333333333334,1,1,0,0,12,13,4,1,1023,127400.03,38891.277,206234.61,41385.855,14306.773,0,3231.5461 +2221,2776,4857,4856,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,7.8658724,7.9011059,0,2,9,66.446014,-9,-9,-9,2021,8,0,40,0,1,0,0,8.1743231,8.1743231,.05,.05,.05,0,0,0,0,0,1,1,0,7.1522226,0,58.15,52.91,45.2,57.55,8.333333333333334,1,1,0,0,13,13,4,1,1023,127400.03,38891.277,206234.61,41385.855,14306.773,0,3231.5461 +2222,2777,4858,4859,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,7.6310272,7.8861475,1,-1,-149.56474,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.6005445,7.5210223,49.3,59.89,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1176,5248116.5,157248.25,3224159.5,213998.41,11567.863,0,4266.6592 +2222,2777,4859,4858,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.264369,9.4392614,0,1,1,16.219332,-9,2,2,2021,6,0,50,0,1,0,0,21.681501,21.681501,0,0,0,0,0,0,0,7,0,0,0,5.6191077,0,57.16,56.15,49.3,59.89,8.333333333333334,1,1,0,0,11,12,5,1,1176,5248116.5,157248.25,3224159.5,213998.41,11567.863,0,4266.6592 +2223,2778,4860,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.5439186,8.44942,0,0,0,-953.14948,0,3,2,2021,17,6,45,-9,1,6,0,11.616663,11.616663,.05,.05,0,0,0,0,0,0,0,0,0,2.5105808,0,44.15,49.61,-9,-9,10,2,3,0,1,6,9,5,0,701,-178676.88,154589.41,0,0,0,0,2250.9058 +2223,2779,4861,-9,-9,4860,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-910.55872,0,3,2,2021,12,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.33,50.15,-9,-9,5,2,3,0,1,4,9,1,0,357,60177.699,0,0,0,0,0,0 +2224,2780,4862,-9,-9,-9,1,0,24,0,0,1,1,0,0,0,4,0,6.7752032,6.7283106,0,0,-970.34595,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9608226,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,201,-162043.25,0,0,0,0,0,472.80573 +2224,2781,4863,-9,-9,-9,1,0,25,0,0,1,1,0,0,0,5,0,5.0082235,5.2298326,0,0,-1035.33,-9,-9,-9,2021,17,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8997736,0,35.53,63.81,-9,-9,6.666666666666667,4,2,0,1,1,2,2,0,920,-174567.88,0,0,0,0,0,952.79456 +2225,2782,4864,-9,4865,-9,1,0,17,0,0,1,2,0,0,0,3,0,4.5341196,4.5709596,0,0,-929.49902,-9,1,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.790885,0,46.32,43.5,-9,-9,8.333333333333334,1,1,0,0,2,8,3,0,414,40508.594,0,0,0,3682.3779,0,2692.627 +2225,2782,4865,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,7.17134,7.3362322,0,0,-1093.5477,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1976142,0,40.07,54.57,-9,-9,6.666666666666667,1,1,1,1,0,8,3,0,414,40508.594,0,0,0,3682.3779,0,2692.627 +2226,2783,4866,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-943.0318,0,2,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,8,1,0,934,-50803.77,0,0,0,0,0,776.99542 +2227,2784,4867,4868,-9,-9,1,1,26,0,0,0,1,1,-9,0,2,8.4778938,8.5820389,0,2,2,-167.37494,0,-9,-9,2021,15,3,46,46,1,3,0,12.660045,12.660045,.05,.05,0,0,0,0,0,2,1,1,0,0,0,39.83,49.71,29.32,20.77,1.666666666666667,1,1,0,1,4,4,4,0,719,-65962.977,38471.078,162731.3,102002.08,1571.0723,7856.5771,1480.1166 +2227,2784,4868,4867,-9,-9,1,0,24,0,0,0,2,2,1,0,1,0,0,0,2,-2,-74.985313,-9,1,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.32,20.77,39.83,49.71,0,4,2,1,0,2,4,4,0,719,-65962.977,38471.078,162731.3,102002.08,1571.0723,7856.5771,1480.1166 +2228,2785,4869,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2654867,8.276639,0,0,0,-894.77698,0,3,3,2021,6,0,37,37,1,0,0,8.4574919,8.4574919,.05,.05,0,0,0,0,0,0,0,0,0,3.9330418,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,603,328239.91,38634.199,322765.34,67482.852,4210.1475,0,1207.3921 +2229,2786,4870,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3108549,8.3467932,0,0,0,-964.29279,0,3,2,2021,2,0,32,30,1,0,0,12.580507,12.580507,.05,.05,0,0,0,0,0,0,0,0,0,2.4920332,0,56.28,41.55,-9,-9,8.333333333333334,1,1,0,0,9,1,4,0,199,55493.613,40095.176,0,0,4827.1021,0,1368.6199 +2230,2787,4871,4872,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.8180294,8.6287603,0,7,0,-7.301846,-9,-9,-9,2021,10,0,25,0,1,1,0,30.902252,30.902252,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,48,45.3,30.57,7,4,1,0,0,1,13,5,1,831.5,581385.5,309612.44,147915.05,0,2785.8679,0,3608.0076 +2230,2787,4872,4871,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,5.6554399,7.5570731,7.7927046,49,0,-58.947357,0,3,2,2021,11,3,5,20,1,3,0,6.44135,6.44135,0,0,0,0,0,0,0,0,1,1,0,4.9724174,7.2045488,45.3,30.57,52,48,6.666666666666667,1,1,0,0,8,13,5,1,831.5,581385.5,309612.44,147915.05,0,2785.8679,0,3608.0076 +2230,2788,4873,-9,4872,4871,1,1,40,0,0,0,2,2,-9,0,4,8.5350914,8.4240885,0,0,0,-1022.8585,-9,1,3,2021,9,0,30,0,1,1,1,19.749846,19.749846,0,0,0,0,0,0,0,0,1,1,0,7.0588436,0,51,56,-9,-9,8,1,1,0,0,1,13,4,1,581,43940.855,62356.543,32833.914,58239.16,0,0,2554.8596 +2231,2789,4874,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,7.1972466,7.0289187,0,0,-819.53241,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1145649,7.4903541,55.37,40.83,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,722,386138.41,-87126.367,193188.81,0,0,0,896.7171 +2232,2790,4875,4876,-9,-9,1,0,38,0,2,0,3,3,-9,0,5,0,0,0,3,-15,78.400536,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,8.333333333333334,2,3,0,0,0,4,3,1,487.5,-32129.387,0,0,0,0,671.74402,1545.5225 +2232,2790,4876,4875,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,8.4191828,7.9053311,0,3,15,-30.916439,0,3,3,2021,6,0,50,49,1,0,0,8.2380581,8.2380581,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,2,3,0,0,9,4,3,1,487.5,-32129.387,0,0,0,0,671.74402,1545.5225 +2233,2791,4877,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.0990539,5.1762762,0,0,-1003.5314,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2012367,44.14,43.31,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,878,76514.023,19454.184,18592.113,0,0,666.49939,1557.9484 +2234,2792,4878,-9,4879,4880,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1379,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2234,2792,4879,4880,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.7362823,8.5195112,0,7,-6,41.54567,0,1,2,2021,7,0,56,45,1,0,0,13.218327,13.218327,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51,56,8.333333333333334,1,1,0,0,10,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2234,2792,4880,4879,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.2960882,8.3865213,0,7,6,43.586296,0,2,1,2021,9,0,30,35,1,1,0,15.658494,15.658494,.05,.05,0,0,0,0,0,0,1,1,0,.26908037,0,51,56,57.33,53.46,8,1,1,0,0,1,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2234,2792,4881,-9,4879,4880,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.96313,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,824,221544.44,118380.26,274302,219222.63,2218.3022,9099.8115,3582.6274 +2235,2793,4882,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.550395,7.8812213,0,0,0,-1021.2312,0,2,2,2021,12,1,30,30,1,1,0,10.177011,10.177011,.05,.05,0,0,0,0,0,7,0,0,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,8,5,3,0,3565,239067.05,-8240.7197,87432.984,0,6032.5068,0,870.14728 +2236,2794,4883,4884,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.5500422,5.6566391,9,-1,-50.069988,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6352186,52,47,50,46,7,1,1,0,0,0,12,2,0,529,256525.34,179254.16,216957.88,46623.121,0,0,2264.636 +2236,2794,4884,4883,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,9,1,38.425198,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,46,52,47,7,1,1,0,0,0,12,2,0,529,256525.34,179254.16,216957.88,46623.121,0,0,2264.636 +2236,2795,4885,-9,4884,4883,1,1,50,0,0,0,2,2,-9,0,4,8.1847868,8.0724735,0,0,0,-977.62714,-9,3,2,2021,9,0,38,0,1,1,0,11.527687,11.527687,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,1,12,4,0,1616,-149137.34,0,0,0,0,0,1457.9064 +2237,2796,4886,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.0434351,9.4013777,0,0,0,-1078.5879,0,1,1,2021,13,1,50,50,1,1,0,23.787497,23.787497,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,-9,-9,6.666666666666667,1,1,0,0,15,9,5,1,891,140823.36,0,293258.63,101781.47,767.43237,0,3965.9617 +2238,2797,4887,4889,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.5242691,8.351944,0,13,-1,-49.429867,0,2,2,2021,6,0,25,25,1,0,0,18.842587,18.842587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,57.16,56.15,8.333333333333334,1,1,0,0,14,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2238,2797,4888,-9,4887,4889,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.62952,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2238,2797,4889,4887,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.6039963,8.6613607,0,13,1,-95.933975,0,1,1,2021,7,0,38,37,1,0,0,15.94974,15.94974,.05,.05,0,0,0,0,0,0,1,1,0,7.2219491,0,57.16,56.15,52.08,55.93,10,1,1,0,0,15,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2238,2797,4890,-9,4887,4889,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.14728,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,445.75,632558.25,64990.949,261495.42,172884.7,7198.291,1189.509,4313.127 +2239,2798,4891,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1821642,8.2973156,0,0,0,-1020.7182,-9,2,3,2021,13,1,47,0,1,1,0,9.9577637,9.9577637,0,0,0,0,0,0,0,0,0,0,0,0,0,43.02,57.64,-9,-9,6.666666666666667,2,3,0,0,11,9,4,0,600,71213.992,0,278890.25,112218.31,0,2658.3223,1988.9673 +2240,2799,4892,-9,4893,4894,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-998.88177,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,5,1,767.33331,571462.56,619816,235779,146804,5990.2339,3620.738,4204.2593 +2240,2799,4893,4894,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.0420227,8.0430775,0,23,3,63.502129,0,3,3,2021,11,1,17,30,1,1,0,20.228437,20.228437,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.56,55.57,54.1,59.11,3.333333333333333,1,1,0,0,9,6,5,1,767.33331,571462.56,619816,235779,146804,5990.2339,3620.738,4204.2593 +2240,2799,4894,4893,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,9.0915499,9.1069136,0,23,-3,-86.577621,0,3,3,2021,3,0,41,38,1,0,0,20.495743,20.495743,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,38.56,55.57,8.333333333333334,1,1,0,0,11,6,5,1,767.33331,571462.56,619816,235779,146804,5990.2339,3620.738,4204.2593 +2240,2800,4895,-9,4893,4894,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1020.2415,-9,1,1,2021,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,449,80493.711,0,0,0,0,0,0 +2241,2801,4896,4897,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.4793625,8.5397282,6.5505662,2,-13,-161.93423,0,3,3,2021,12,2,42,41,1,2,0,11.694567,11.694567,0,0,0,0,0,0,0,0,1,1,0,6.9403872,0,27.98,63,53.98,50.87,5,1,1,0,0,13,6,4,1,1017,400871.75,174263.95,231780.59,0,11622.718,6320.2246,3531.0811 +2241,2801,4897,4896,-9,-9,1,1,62,0,1,0,3,3,-9,0,3,8.329772,8.1661682,0,2,13,93.511696,0,-9,-9,2021,9,0,44,44,1,0,0,8.5273514,8.5273514,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,27.98,63,6.666666666666667,1,1,0,0,10,6,4,1,1017,400871.75,174263.95,231780.59,0,11622.718,6320.2246,3531.0811 +2242,2802,4898,4899,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.7846751,6.6692953,43,-1,5.9757862,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4574442,53,47,45.96,38.67,7,4,5,0,0,0,4,2,1,797,334677.19,212164.25,128242.14,0,-1041.1272,0,2070.5337 +2242,2802,4899,4898,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,43,1,-105.34505,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.96,38.67,53,47,6.666666666666667,4,5,0,0,0,4,2,1,797,334677.19,212164.25,128242.14,0,-1041.1272,0,2070.5337 +2243,2803,4900,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.2544928,8.428112,0,0,0,-1034.6675,0,2,2,2021,10,0,45,45,1,0,0,11.861588,11.861588,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.2,49.4,-9,-9,3.333333333333333,1,1,0,0,7,2,5,0,377,12391.326,-7565.5273,72148.016,0,0,0,1142.8805 +2244,2804,4901,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.8276253,6.7745099,5.3584099,0,0,-1115.4707,0,2,2,2021,12,0,16,16,1,0,0,6.8285317,6.8285317,0,0,0,0,0,0,0,0,1,1,0,5.1344657,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,7,7,2,1,913,-165653.28,0,0,0,0,0,2283.7927 +2245,2805,4902,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.7093315,8.5284433,0,0,0,-982.12677,0,2,2,2021,16,5,41,42,1,5,0,10.818259,10.818259,.05,.05,0,0,0,0,0,27,0,0,0,0,0,36.98,50.5,-9,-9,3.333333333333333,1,1,0,0,11,13,5,1,366,171921.78,212843.06,0,0,5761.0825,1292.7651,1290.3264 +2246,2806,4903,4905,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,8.2310925,8.3024511,0,15,-8,-75.668373,0,3,3,2021,7,0,39,37,1,0,0,12.254594,12.254594,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,58.06,43.48,6.666666666666667,1,1,0,0,10,1,4,1,1181.3334,643065.13,506208.03,148481.22,4709.2666,2869.9429,0,3057.0566 +2246,2806,4904,-9,4903,4905,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.49359,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1181.3334,643065.13,506208.03,148481.22,4709.2666,2869.9429,0,3057.0566 +2246,2806,4905,4903,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.3997612,8.1026344,0,16,8,-47.324909,0,2,2,2021,9,0,45,47,1,0,0,11.248118,11.248118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.06,43.48,64.96000000000001,43.19,8.333333333333334,1,1,0,0,10,1,4,1,1181.3334,643065.13,506208.03,148481.22,4709.2666,2869.9429,0,3057.0566 +2247,2807,4906,4907,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,4.8774776,4.9011869,54,1,-36.894363,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4674814,4.8296494,54.1,59.11,46.39,60.99,8.333333333333334,1,1,0,0,0,5,2,1,1251.5,224008.72,42027.773,111459.66,0,0,0,1564.5791 +2247,2807,4907,4906,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,6.2519903,6.2063136,54,-1,-49.440407,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0006995,6.0504413,46.39,60.99,54.1,59.11,1.666666666666667,1,1,0,0,1,5,2,1,1251.5,224008.72,42027.773,111459.66,0,0,0,1564.5791 +2248,2808,4908,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,9.2467508,9.4596081,0,0,0,-1042.5682,0,3,3,2021,14,3,49,52,1,3,0,25.148188,25.148188,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.54,39.68,-9,-9,3.333333333333333,1,1,0,0,12,10,5,1,437,1689160.3,1493822.1,293853.78,49401.309,0,0,4678.9507 +2249,2809,4909,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,5,0,0,0,0,0,-933.00537,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4683976,0,40.46,38.15,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,658,28102.227,0,0,0,0,0,720.17902 +2250,2810,4910,-9,4912,4911,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1063.5972,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.09,54.06,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,898.33331,958937.63,140980.11,459727.16,29949.369,212.91589,0,1256.2571 +2250,2810,4911,4912,-9,-9,1,1,61,0,1,0,2,2,-9,1,1,0,0,0,7,12,170.20744,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,.05,0,0,0,0,7,1,1,0,0,0,51.38,33.56,20.48,46.47,5,1,1,0,0,0,11,2,0,898.33331,958937.63,140980.11,459727.16,29949.369,212.91589,0,1256.2571 +2250,2810,4912,4911,-9,-9,1,0,49,0,1,0,3,3,-9,0,2,7.279799,7.1058044,0,7,-12,45.896053,0,2,2,2021,32,12,28,25,1,12,0,7.1302161,7.1302161,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.48,46.47,51.38,33.56,1.666666666666667,1,1,0,0,10,11,2,0,898.33331,958937.63,140980.11,459727.16,29949.369,212.91589,0,1256.2571 +2251,2811,4913,4914,-9,-9,1,0,43,0,0,0,1,1,-9,0,2,0,0,0,6,-3,21.038662,0,2,2,2021,25,9,0,88,3,9,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,22.89,60.29,53.96,24.09,1.666666666666667,1,1,0,0,9,2,3,1,1055,352101.63,104735.2,324568.75,160046.81,6877.2202,5611.5303,1000.1538 +2251,2811,4914,4913,-9,-9,1,1,46,0,0,0,1,1,-9,0,2,8.1525841,8.2954626,0,6,3,-28.17857,0,3,2,2021,11,0,31,31,1,0,0,12.171723,12.171723,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.96,24.09,22.89,60.29,3.333333333333333,1,1,0,0,8,2,3,1,1055,352101.63,104735.2,324568.75,160046.81,6877.2202,5611.5303,1000.1538 +2252,2812,4915,4917,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.4856052,8.1323147,0,7,19,-50.370369,0,-9,-9,2021,9,0,40,40,1,1,0,10.871588,10.871588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,54,50.11,55.32,8,1,1,0,0,1,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2252,2812,4916,-9,4917,4915,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.18915,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2252,2812,4917,4915,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.8066335,7.7128015,0,13,-19,1.1524967,0,3,3,2021,11,1,36,30,1,1,0,6.8448024,6.8448024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.11,55.32,54,54,8.333333333333334,1,1,0,0,6,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2252,2812,4918,-9,4917,4915,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.89026,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,900.75,423519.53,116470.66,233949.19,0,0,0,3096.2822 +2253,2813,4919,4920,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.4569211,7.7624278,31,-1,-54.679447,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5398812,7.6632261,32.65,51.26,59.04,51.29,5,1,1,0,0,6,7,3,1,583,1387399,766724.44,479887.81,0,0,0,2331.9082 +2253,2813,4920,4919,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.568933,6.5549178,31,1,.14460506,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,5.4336886,0,0,1,1,0,5.3983026,6.183691,59.04,51.29,32.65,51.26,10,1,1,0,0,5,7,3,1,583,1387399,766724.44,479887.81,0,0,0,2331.9082 +2254,2814,4921,4922,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,35,-1,0,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9513636,0,59.29,49.68,60.12,54.8,10,1,1,0,0,12,7,1,1,553.5,133301.16,-7079.3281,0,0,0,0,3408.7432 +2254,2814,4922,4921,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,35,1,0,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6738353,0,60.12,54.8,59.29,49.68,8.333333333333334,1,1,0,0,11,7,1,1,553.5,133301.16,-7079.3281,0,0,0,0,3408.7432 +2254,2815,4923,-9,4921,4922,1,0,24,0,0,0,1,1,1,0,4,0,0,0,0,0,-1108.9689,-9,1,1,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5413773,0,49.06,58.64,-9,-9,8.333333333333334,1,1,1,0,3,7,1,1,1004,-88754.539,0,0,0,0,0,361.90854 +2254,2816,4924,-9,4921,4922,1,1,21,0,0,0,2,2,-9,0,3,7.74756,7.8135023,0,0,0,-1007.5262,0,1,1,2021,21,9,40,38,1,9,0,7.2041941,7.2041941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.22,48.69,-9,-9,5,1,1,0,0,2,7,3,1,658,40162.898,9228.6494,0,0,0,0,996.88184 +2255,2817,4925,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.11621,7.692204,6.1463041,0,0,-1028.7485,0,3,3,2021,13,1,20,22,1,1,0,7.8371096,7.8371096,.05,.05,0,0,0,0,0,7,0,0,0,0,6.3454847,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,8,2,3,1,410,34913.336,244079.14,0,0,0,0,1052.5997 +2256,2818,4926,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.5947223,7.7495027,6.0785742,0,0,-1019.9901,0,2,2,2021,8,0,36,37,1,0,0,7.7793045,7.7793045,0,0,0,0,0,0,0,0,1,1,0,0,6.2421865,57.17,50.61,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,4367,-17330.707,0,63872.059,0,0,0,1282.9148 +2257,2819,4927,4928,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,8.0809069,7.9688516,0,48,-1,43.764618,0,2,-9,2021,8,1,37,37,1,1,0,10.234371,10.234371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,54.37,54.8,10,1,1,0,0,8,10,4,1,541,677273.88,498283,228673.75,52315.789,0,0,3770.8745 +2257,2819,4928,4927,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.0374346,8.319663,0,6,1,-237.78264,0,-9,-9,2021,9,0,30,32,1,0,0,13.726195,13.726195,.05,.05,0,0,0,0,0,0,1,1,0,2.9739466,0,54.37,54.8,59.14,52.5,6.666666666666667,1,1,0,0,8,10,4,1,541,677273.88,498283,228673.75,52315.789,0,0,3770.8745 +2258,2820,4929,4930,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.0049,8.0015087,0,6,6,-15.574909,0,2,3,2021,10,1,43,40,1,1,0,7.7044282,7.7044282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.31,50.2,36,51.15,8.333333333333334,1,1,0,0,9,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2258,2820,4930,4929,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,0,0,0,6,-6,-53.305737,0,2,3,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,51.15,47.31,50.2,8.333333333333334,1,1,0,0,0,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2258,2820,4931,-9,4930,4929,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.68378,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2258,2820,4932,-9,4930,4929,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.92969,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,362,141866.56,45854.406,79802.164,12103.367,0,0,1970.9122 +2259,2821,4933,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,5.9155993,5.903121,0,0,-911.72778,0,3,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5609846,5.9708562,46.78,40.73,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,264,100043.06,37502.52,195528.19,0,0,0,648.91321 +2260,2822,4934,4935,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,5.5266662,5.9372811,7,-2,-22.779615,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,5.3684916,5.8458099,60.12,54.8,57.57,49.69,10,1,1,0,0,7,9,3,1,461.5,656357.38,344550.97,155789.38,0,0,0,751.83704 +2260,2822,4935,4934,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,7.1941185,7.545042,6.0995283,41,2,-149.66153,0,3,2,2021,6,0,25,17,1,0,0,6.856442,6.856442,0,0,0,0,0,0,0,0,0,0,0,4.5062447,6.044054,57.57,49.69,60.12,54.8,8.333333333333334,1,1,0,0,7,9,3,1,461.5,656357.38,344550.97,155789.38,0,0,0,751.83704 +2261,2823,4936,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1026.8491,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8180623,0,40.73,34.53,-9,-9,6.666666666666667,1,1,0,0,6,11,2,1,281,106001.52,153063.17,138188.28,0,0,0,835.64282 +2262,2824,4937,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.9733768,8.4005814,0,0,0,-1028.2227,0,-9,2,2021,9,0,48,48,1,0,0,10.525609,10.525609,0,0,0,0,0,0,0,0,0,0,0,0,0,54.45,41.44,-9,-9,10,1,1,0,0,13,4,4,0,4030,53957.859,-66582.023,0,0,0,1326.6101,1192.3798 +2263,2825,4938,4939,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,38,0,33.465508,0,2,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.278698,0,54.2,57.49,57.73,54.53,8.333333333333334,1,1,0,0,10,7,5,1,704,550996.88,160800.86,368983.75,29166.281,637.2182,4672.3604,8433.7393 +2263,2825,4939,4938,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.7180443,9.7197514,0,37,0,5.8888826,0,2,2,2021,8,0,55,40,1,0,0,38.927845,38.927845,.05,.05,0,0,0,0,0,0,0,0,0,8.258419,0,57.73,54.53,54.2,57.49,8.333333333333334,1,1,0,0,13,7,5,1,704,550996.88,160800.86,368983.75,29166.281,637.2182,4672.3604,8433.7393 +2264,2826,4940,4941,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.80475,7.5842028,11,1,-33.464497,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0228195,7.6938753,57.51,47.91,46.27,36.04,8.333333333333334,1,1,0,0,9,1,3,1,301.5,496687.47,206989.63,165115.84,0,0,0,3726.9785 +2264,2826,4941,4940,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,53,-1,-38.983036,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,19.08884,0,0,1,1,0,7.5872316,0,46.27,36.04,57.51,47.91,8.333333333333334,1,1,0,0,0,1,3,1,301.5,496687.47,206989.63,165115.84,0,0,0,3726.9785 +2265,2827,4942,4943,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.9202089,6.872179,0,6,-2,30.65678,-9,3,3,2021,14,2,70,0,1,2,0,1.519575,1.519575,0,0,0,0,0,0,0,0,1,1,0,0,0,57.91,35.57,54.42,41.45,1.666666666666667,2,3,0,1,7,5,2,1,543,185605.44,-31706.531,118058.42,0,0,0,974.97424 +2265,2827,4943,4942,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,0,0,0,36,2,15.922675,0,3,2,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.42,41.45,57.91,35.57,1.666666666666667,2,3,1,0,0,5,2,1,543,185605.44,-31706.531,118058.42,0,0,0,974.97424 +2265,2828,4944,-9,4942,4943,1,1,32,0,0,0,1,1,-9,0,4,8.6767807,8.6906223,0,0,0,-1168.1852,-9,2,3,2021,10,0,45,0,1,0,1,15.363753,15.363753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,3.333333333333333,2,3,0,0,3,5,5,1,317,231244.16,150199.61,132273.41,84740.828,0,0,1668.1078 +2266,2829,4945,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,6.972796,6.9539967,5.5240741,0,0,-1101.5565,0,2,2,2021,8,0,16,16,1,0,0,7.5594454,7.5594454,0,0,0,0,0,0,0,0,1,1,0,5.3569717,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,8,10,3,1,689,7761.5889,194304.56,0,0,0,0,1096.9938 +2266,2830,4946,-9,4945,-9,1,0,20,0,0,0,2,2,1,0,3,8.2676973,8.1268625,0,0,0,-1002.6939,-9,1,-9,2021,9,2,65,0,1,2,1,8.9239302,8.9239302,0,0,0,0,0,0,0,0,1,1,0,0,0,44.64,55.04,-9,-9,6.666666666666667,1,1,0,0,1,10,5,1,1226,-102285.84,0,0,0,0,0,1399.8965 +2267,2831,4947,-9,-9,-9,1,0,45,0,0,0,1,1,-9,1,1,0,0,0,0,0,-939.07684,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.13,8.27,-9,-9,5,1,1,0,1,0,13,2,0,654,110477.94,0,0,0,0,1370.4785,2084.4692 +2268,2832,4948,4949,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,9.2084742,9.3583994,0,6,0,162.88567,0,2,2,2021,14,3,38,40,1,3,0,31.884167,31.884167,.05,.05,0,0,0,0,0,0,1,1,0,2.3369513,0,45.81,61.51,45.21,53.42,8.333333333333334,1,1,0,0,7,11,5,1,594,2190107,2037770.3,226702.69,77097.188,681.9798,0,4756.5615 +2268,2832,4949,4948,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.512393,8.5234203,0,6,0,90.291565,0,1,2,2021,11,1,38,37,1,1,0,14.760801,14.760801,.05,.05,0,0,0,0,0,0,1,1,0,3.1441283,0,45.21,53.42,45.81,61.51,8.333333333333334,1,1,0,0,7,11,5,1,594,2190107,2037770.3,226702.69,77097.188,681.9798,0,4756.5615 +2268,2832,4950,-9,4948,4949,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-893.46582,-9,1,1,2021,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,1,11,5,1,594,2190107,2037770.3,226702.69,77097.188,681.9798,0,4756.5615 +2269,2833,4951,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.9694791,5.6873879,0,0,-917.85748,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.139379,5.8772607,58.32,28.96,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,540,302302.5,279998.88,282907.47,0,0,0,1404.295 +2270,2834,4952,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,1,8.9590435,8.932622,0,0,0,-1010.264,-9,-9,-9,2021,31,12,50,0,1,12,0,17.280869,17.280869,0,0,0,0,0,0,0,0,0,0,0,4.6466746,0,18.01,31.08,-9,-9,3.333333333333333,1,1,0,0,5,7,5,1,1090,1309981.9,393375.56,464067.28,0,0,0,2966.7678 +2271,2835,4953,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.0986366,5.8775573,0,0,-974.21014,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.6312327,0,0,1,1,0,4.2038717,5.7681112,52,45,-9,-9,8,1,1,0,0,0,11,2,1,197,209809.77,16032.173,0,0,0,0,1775.9376 +2271,2836,4954,4955,4953,-9,1,0,58,0,0,0,1,1,-9,0,3,7.979846,8.2128153,0,9,-3,-37.313633,0,2,3,2021,11,0,37,37,1,2,0,9.001543,9.001543,0,0,0,0,0,0,0,27,1,1,0,0,0,48,48,51.5,37.04,7,1,1,0,0,10,11,4,1,1107.5,822728.13,480334.06,315161.78,0,-998.4281,0,1559.5266 +2271,2836,4955,4954,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.7250614,7.8514166,0,9,3,76.798058,0,3,3,2021,9,0,40,40,1,0,0,6.495173,6.495173,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.5,37.04,48,48,8.333333333333334,1,1,0,0,10,11,4,1,1107.5,822728.13,480334.06,315161.78,0,-998.4281,0,1559.5266 +2272,2837,4956,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,1,0,6.3371472,6.3818035,0,0,-1077.7217,0,2,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,3.5641692,4.1425533,25.793892,0,1,1,0,0,6.2413263,41,22,-9,-9,0,1,1,0,0,0,12,2,1,260,368261.59,-64946.75,251844,0,0,0,1648.9352 +2273,2838,4957,-9,-9,-9,1,0,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1084.342,0,3,3,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.11,40.46,-9,-9,8.333333333333334,1,1,1,0,1,13,1,0,2411,127039.96,0,0,0,0,0,386.78891 +2274,2839,4958,4959,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.6921949,8.7230005,4.3885741,7,2,-8.7167215,0,3,2,2021,10,0,35,38,1,1,0,16.090899,16.090899,.05,.05,0,0,0,0,0,0,0,0,0,3.6040242,4.1476245,51,49,48,49,7,1,1,0,0,9,13,5,1,811,284921.81,108352.82,140180.03,15599.485,0,0,3290.2817 +2274,2839,4959,4958,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.4253879,7.4620371,0,7,-2,12.19306,0,3,3,2021,11,0,30,30,1,2,0,8.1567335,8.1567335,.05,.05,0,0,0,0,0,0,0,0,0,.54460424,0,48,49,51,49,7,1,1,0,0,9,13,5,1,811,284921.81,108352.82,140180.03,15599.485,0,0,3290.2817 +2274,2840,4960,-9,4959,4958,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1030.6302,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.69753581,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,628,0,0,0,0,0,0,-508.98972 +2275,2841,4961,4962,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.7580328,4.9256735,1,7,-26.014782,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36674619,4.6841397,51.41,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,5,2,0,853.5,-49622.668,0,0,0,0,0,1198.0978 +2275,2841,4962,4961,-9,-9,1,0,61,0,0,0,3,3,-9,0,5,0,0,0,1,-7,30.320072,-9,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.41,56.15,8.333333333333334,1,1,0,0,0,5,2,0,853.5,-49622.668,0,0,0,0,0,1198.0978 +2276,2842,4963,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.4739418,7.5855937,0,0,0,-996.20941,0,3,2,2021,12,0,34,31,1,0,0,7.4209728,7.4209728,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.32,35.76,-9,-9,5,1,1,0,0,11,11,3,0,756,195532.19,36125.109,0,0,0,0,1243.4324 +2276,2843,4964,-9,4963,-9,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1032.7875,1,2,-9,2021,11,3,0,33,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.05,43.02,-9,-9,1.666666666666667,1,1,0,0,4,11,1,0,701,-50878.938,0,0,0,0,0,1300.8253 +2277,2844,4965,4966,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.0570822,7.9948311,0,13,0,12.754703,0,2,3,2021,11,0,35,30,1,0,0,9.4861975,9.4861975,0,0,0,0,0,0,0,0,0,0,0,0,0,39.65,56.19,55.96,49.93,6.666666666666667,1,1,0,0,12,6,5,1,215,947896.5,419971.38,270660.91,0,0,1095.4476,2833.8511 +2277,2844,4966,4965,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4677925,8.2584,0,13,0,-13.11681,0,2,3,2021,9,1,37,41,1,1,0,12.116996,12.116996,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,39.65,56.19,8.333333333333334,1,1,0,0,15,6,5,1,215,947896.5,419971.38,270660.91,0,0,1095.4476,2833.8511 +2278,2845,4967,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,7.290484,7.4619389,0,0,0,-936.09552,-9,-9,-9,2021,10,2,32,0,1,2,0,6.4688272,6.4688272,0,0,0,0,0,0,0,7,0,0,0,0,0,62.98,38.61,-9,-9,6.666666666666667,2,3,0,0,3,8,3,0,1222,54122.945,-9712.71,0,0,0,0,1610.4464 +2279,2846,4968,4969,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,5.7607589,5.8794193,70,5,165.49353,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3714652,5.9555788,56,44,31.32,42.75,8,1,1,0,0,0,7,2,1,1154,64577.309,156575.94,53351.641,0,0,0,953.29517 +2279,2846,4969,4968,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,70,-5,53.836594,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,2.6237347,0,19.88969,74.5,1,1,0,0,0,31.32,42.75,56,44,8.333333333333334,1,1,0,0,0,7,2,1,1154,64577.309,156575.94,53351.641,0,0,0,953.29517 +2280,2847,4970,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.5464039,8.2657404,0,0,0,-1050.797,0,2,2,2021,11,0,37,36,1,0,0,13.325109,13.325109,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,8,5,0,803,563775.81,279189.72,0,0,0,0,2363.0684 +2280,2848,4971,-9,4970,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1021.239,-9,2,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.22357355,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,8,1,0,1740,16528.592,0,0,0,0,0,-708.29327 +2281,2849,4972,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.078341,5.9648223,0,0,-1078.4153,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1083145,6.3264499,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,315,199403.44,288821.44,0,0,0,0,538.82721 +2281,2850,4973,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.9780869,7.8619466,0,0,0,-974.60541,0,3,3,2021,10,0,32,31,1,0,0,11.353374,11.353374,0,0,0,0,0,0,0,0,1,1,0,0,0,36.6,56.17,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,126,23425.6,39284.691,41658.824,13944.302,0,0,1771.0826 +2282,2851,4974,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.5184917,8.5453892,0,0,0,-1052.248,-9,3,3,2021,6,0,39,0,1,0,0,15.674428,15.674428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,506,288986.53,337294.97,0,0,0,15309.809,2934.2776 +2283,2852,4975,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.7144079,9.2213058,0,0,0,-993.61932,0,2,2,2021,23,11,43,41,1,11,0,17.653738,17.653738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.95,48.83,-9,-9,3.333333333333333,1,1,0,0,11,5,5,1,2316,381556.72,71581.148,119843.62,54378.766,0,4798.0474,2092.6104 +2284,2853,4976,4977,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.8288517,7.5995646,0,6,2,26.829662,-9,-9,-9,2021,10,0,30,0,1,0,0,7.7975821,7.7975821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.72,51.1,44.6,52.77,5,1,1,0,0,2,4,4,0,194,282934.5,114923.45,0,0,0,0,1856.7642 +2284,2853,4977,4976,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.622602,7.6928339,0,6,-2,156.49901,0,2,2,2021,11,0,44,40,1,0,0,5.3166838,5.3166838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.6,52.77,47.72,51.1,5,1,1,0,0,11,4,4,0,194,282934.5,114923.45,0,0,0,0,1856.7642 +2285,2854,4978,4979,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8951855,8.2121429,0,18,-2,7.6343017,0,3,3,2021,11,0,38,38,1,0,0,9.1577349,9.1577349,.05,.05,0,0,0,0,0,42,0,0,0,3.6235626,0,51.08,52.1,49,49,6.666666666666667,1,1,0,0,12,13,4,1,819,386103.78,276649.59,85021.109,0,13089.343,0,2799.9238 +2285,2854,4979,4978,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1342945,8.1829681,0,10,2,42.824116,0,2,3,2021,11,0,40,40,1,1,0,7.9456201,7.9456201,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,49,51.08,52.1,7,1,1,0,0,1,13,4,1,819,386103.78,276649.59,85021.109,0,13089.343,0,2799.9238 +2286,2855,4980,4981,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.889051,6.8714404,47,3,-9.1646814,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.6084871,6.6793609,60.12,54.8,56.33,51.02,8.333333333333334,1,1,0,0,10,10,2,1,519,815219.75,510342.19,363652.94,0,0,2071.6343,1510.5447 +2286,2855,4981,4980,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,47,-3,-88.206879,0,2,1,2021,7,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,60.12,54.8,8.333333333333334,1,1,0,1,9,10,2,1,519,815219.75,510342.19,363652.94,0,0,2071.6343,1510.5447 +2287,2856,4982,4985,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.7071304,8.9906263,0,18,0,81.34761,0,2,1,2021,10,0,40,40,1,0,0,14.749425,14.749425,.05,.05,0,0,0,0,0,2,1,1,0,4.2342243,0,53.78,48.41,54.2,57.49,3.333333333333333,1,1,0,0,10,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2287,2856,4983,-9,4985,4982,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.5023,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2287,2856,4984,-9,4985,4982,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1050.5115,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2287,2856,4985,4982,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.0220289,8.2719545,0,19,0,42.247433,0,3,2,2021,8,0,19,21,1,0,0,23.242998,23.242998,.05,.05,0,0,0,0,0,0,1,1,0,6.3208909,0,54.2,57.49,53.78,48.41,8.333333333333334,1,1,0,0,10,10,5,1,964.25,480980.53,199725.19,409767.06,116402.3,2663.0679,0,4522.1016 +2288,2857,4986,4987,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.9056015,8.7704659,0,3,3,43.666267,0,-9,-9,2021,13,1,39,39,1,1,0,20.688135,20.688135,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.19,53.7,54.79,55.86,8.333333333333334,1,1,0,0,11,7,5,1,897.5,370362.69,103166.17,302694.31,0,0,0,5443.5659 +2288,2857,4987,4986,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4216328,8.546958,0,3,-3,-47.351013,0,-9,-9,2021,10,0,38,38,1,0,0,12.950338,12.950338,.05,.05,0,0,0,0,0,0,0,0,0,1.5400318,0,54.79,55.86,47.19,53.7,6.666666666666667,1,1,0,0,11,7,5,1,897.5,370362.69,103166.17,302694.31,0,0,0,5443.5659 +2289,2858,4988,-9,4989,4991,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-859.36633,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2289,2858,4989,4991,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.370492,8.7052822,0,17,-5,66.604752,-9,2,2,2021,11,0,40,0,1,0,0,13.76548,13.76548,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.17,49.39,6.666666666666667,1,1,0,0,10,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2289,2858,4990,-9,4989,4991,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.47443,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2289,2858,4991,4989,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.7140274,8.6066008,0,20,5,139.88557,0,1,2,2021,8,0,40,42,1,0,0,13.569859,13.569859,.05,.05,0,0,0,0,0,0,1,1,0,7.8742566,0,51.17,49.39,51.83,57.2,8.333333333333334,1,1,0,0,7,7,5,0,1252.25,558872.94,180756.22,313945.19,54794.875,0,0,5292.2397 +2290,2859,4992,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1027.6282,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,1,0,1,2,1,0,1087,0,0,0,0,0,0,252.30028 +2291,2860,4993,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7973547,8.8283129,0,0,0,-1076.6516,0,2,2,2021,7,0,40,40,1,0,0,16.696051,16.696051,.05,.05,0,0,0,0,0,0,0,0,0,.41341901,0,54.74,57.22,-9,-9,10,1,1,0,0,8,9,5,1,1440,250486.61,287154.16,264973.81,155626.89,1501.5786,0,2065.5613 +2292,2861,4994,4995,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.9995503,6.8684177,36,2,13.694159,-9,3,3,2021,13,1,0,0,4,1,0,0,0,.05,.05,0,1,0,1.983765,0,0,1,1,0,0,6.5750933,43.5,28.45,57.42,49.34,8.333333333333334,2,3,0,0,0,8,4,1,572,625819.69,379032.94,318225.41,0,0,1783.3835,2994.3862 +2292,2861,4995,4994,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.1530533,8.2511854,0,1,-2,-3.2253895,-9,3,2,2021,9,0,30,0,1,0,0,13.944762,13.944762,0,0,0,0,0,0,0,7,1,1,0,0,0,57.42,49.34,43.5,28.45,10,2,3,0,0,12,8,4,1,572,625819.69,379032.94,318225.41,0,0,1783.3835,2994.3862 +2292,2862,4996,-9,4995,4994,1,1,36,0,0,0,1,1,-9,0,4,8.6104546,8.7518387,0,0,0,-957.97125,-9,2,2,2021,5,0,40,0,1,0,0,15.550525,15.550525,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,2,3,0,0,12,8,5,1,125,68740.273,24318.773,0,0,0,0,2199.0251 +2292,2863,4997,-9,4995,4994,1,1,30,0,0,0,1,1,-9,0,4,8.3273745,8.3280296,0,0,0,-925.42297,-9,2,2,2021,9,1,48,0,1,1,0,10.730118,10.730118,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,2,3,0,0,3,8,4,1,795,0,0,0,0,0,0,2414.9944 +2293,2864,4998,4999,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.1109762,5.1043401,8,3,-9.0033503,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0897191,4.5479827,57.16,56.15,60.29,38.88,10,1,1,0,0,0,11,2,1,1436.5,456737.53,376291.25,93800.734,0,0,0,2344.1506 +2293,2864,4999,4998,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.3485241,7.16224,8,-3,27.638462,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4382172,7.140193,60.29,38.88,57.16,56.15,8.333333333333334,1,1,0,0,2,11,2,1,1436.5,456737.53,376291.25,93800.734,0,0,0,2344.1506 +2294,2865,5000,5001,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,7,-5,-37.426838,0,3,3,2021,11,0,0,40,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,60.53,48.35,7,1,1,0,0,0,13,3,1,812.5,1130776.9,794602.94,155874.2,0,0,0,1988.2185 +2294,2865,5001,5000,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,7.7067919,7.713377,0,7,5,3.7124774,0,3,3,2021,6,0,56,56,1,0,0,5.7349291,5.7349291,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,49,48,10,1,1,0,0,8,13,3,1,812.5,1130776.9,794602.94,155874.2,0,0,0,1988.2185 +2295,2866,5002,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,8.0399437,8.0776205,0,0,0,-1009.4024,0,3,3,2021,8,1,29,28,1,1,0,11.870024,11.870024,.05,.05,0,0,0,0,0,0,1,1,0,8.2478027,0,48.69,41.09,-9,-9,6.666666666666667,1,1,0,0,12,6,3,1,624,454636.09,277146.66,192686.44,74499.539,2520.9568,7292.2495,2739.7517 +2296,2867,5003,5004,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.0989809,8.3508348,6.8291278,5,8,-.3182056,0,-9,-9,2021,10,0,41,41,1,0,0,8.1790819,8.1790819,.05,.05,.05,0,0,0,0,0,0,0,0,6.296463,7.2780652,51.14,60.45,57.16,56.15,10,1,1,0,0,6,12,4,1,418,490055.38,115221.89,173943.72,46469.113,0,0,3290.7227 +2296,2867,5004,5003,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.5880017,7.6010251,0,5,-8,5.7096281,0,3,-9,2021,7,0,25,26,1,0,0,9.4903107,9.4903107,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,9,12,4,1,418,490055.38,115221.89,173943.72,46469.113,0,0,3290.7227 +2297,2868,5005,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.2331581,8.1004896,0,0,0,-945.95001,0,-9,-9,2021,10,0,43,43,1,0,0,8.1182499,8.1182499,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,4,0,216,-40388.73,101046.97,0,0,0,0,2027.5159 +2298,2869,5006,5007,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,5.8661571,6.1783171,55,-3,-83.661423,0,-9,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,1.0630268,5.851728,18.01,25.88,28.57,55.63,5,1,1,0,0,0,2,2,1,881,525990.88,241192.09,94319.727,0,0,0,2023.114 +2298,2869,5007,5006,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.2028189,7.2298622,54,3,-38.686287,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.827384,7.1727118,28.57,55.63,18.01,25.88,6.666666666666667,1,1,0,0,3,2,2,1,881,525990.88,241192.09,94319.727,0,0,0,2023.114 +2299,2870,5008,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.8997598,8.0031462,0,0,0,-1031.8129,0,2,2,2021,6,0,38,37,1,0,0,9.2570057,9.2570057,0,0,0,0,0,0,0,0,0,0,0,.82751268,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,9,13,3,0,397,99622,0,100930.63,74026.445,0,1270.4269,707.88733 +2300,2871,5009,-9,5010,5012,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.1765,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2300,2871,5010,5012,-9,-9,1,0,25,2,2,0,2,2,-9,0,2,0,0,0,3,-4,-27.969666,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.03,40.88,39.95,36.04,5,1,1,0,1,0,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2300,2871,5011,-9,5010,5012,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7172,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2300,2871,5012,5010,-9,-9,1,1,29,2,2,0,2,2,-9,0,2,7.7075982,7.7918124,0,3,4,-18.401651,0,-9,-9,2021,23,10,41,37,1,10,0,5.6245284,5.6245284,0,0,0,0,0,0,0,0,1,1,0,0,0,39.95,36.04,29.03,40.88,8.333333333333334,1,1,0,0,5,13,3,0,1655.75,25003.773,-6173.1602,215383.23,124362.19,8942.5107,2083.4858,2006.3832 +2301,2872,5013,5014,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.7835817,6.20225,33,1,-98.8843,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0733829,6.3941011,63.35,11.33,58.84,47.11,1.666666666666667,1,1,0,0,0,9,2,1,780.5,789787.31,241922.56,289276.41,0,0,0,1962.9131 +2301,2872,5014,5013,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.0025482,6.399086,33,-1,155.79652,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0963855,6.3344769,58.84,47.11,63.35,11.33,8.333333333333334,1,1,0,0,0,9,2,1,780.5,789787.31,241922.56,289276.41,0,0,0,1962.9131 +2302,2873,5015,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.2894573,7.3828673,0,0,0,-1039.2637,0,2,2,2021,9,0,26,-9,1,0,0,7.7635293,7.7635293,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.95,57.25,-9,-9,1.666666666666667,1,1,0,0,13,7,3,1,2608,277641.06,302220.28,0,0,0,0,440.52966 +2303,2874,5016,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.5016851,8.4513855,0,0,0,-977.914,0,2,2,2021,19,6,60,66,1,6,0,12.712389,12.712389,0,0,0,0,0,0,0,0,0,0,0,0,0,62.35,44.36,-9,-9,1.666666666666667,2,3,0,0,11,7,5,1,139,817613.44,210925.41,524463.06,233.42133,2414.603,0,1286.4369 +2304,2875,5017,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4645061,8.9380531,0,0,0,-1092.2723,0,2,2,2021,9,0,42,37,1,0,0,11.133649,11.133649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,107,799665.63,471461.78,490066.53,50592.906,1768.0287,1162.6426,2253.2959 +2305,2876,5018,-9,5020,5019,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.644,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2305,2876,5019,5020,-9,-9,1,1,33,0,2,0,2,2,-9,0,5,8.4931698,8.3029871,0,8,1,137.31186,0,-9,-9,2021,7,0,40,53,1,0,0,11.646363,11.646363,.05,.05,0,0,0,0,0,0,1,1,0,4.1791658,0,43.32,51.51,39.73,37.29,5,1,1,0,0,8,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2305,2876,5020,5019,-9,-9,1,0,32,0,2,0,2,2,-9,1,2,0,0,0,8,-1,-39.103504,0,2,2,2021,19,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.73,37.29,43.32,51.51,5,1,1,0,0,9,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2305,2876,5021,-9,5020,5019,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.38953,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,2558.5,46593.145,39225.141,0,0,0,0,3262.4014 +2306,2877,5022,5023,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.1481795,6.2680006,58,-4,135.77663,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,1.6321368,0,0,1,1,0,7.3859673,6.4465604,39.6,25.23,59.06,48.59,8.333333333333334,1,1,0,0,0,1,3,1,751.5,396470.84,57906.547,134313.84,0,0,0,3264.5488 +2306,2877,5023,5022,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.545404,7.6449275,58,4,74.589622,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2381349,7.608561,59.06,48.59,39.6,25.23,8.333333333333334,1,1,0,0,0,1,3,1,751.5,396470.84,57906.547,134313.84,0,0,0,3264.5488 +2307,2878,5024,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,2,9.462429,9.4892616,0,0,0,-970.03442,0,-9,-9,2021,6,0,37,42,1,0,0,44.659306,44.659306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.16,48.06,-9,-9,10,3,4,0,0,7,8,5,1,216,-33399.109,77531.43,0,0,3753.6565,0,5825.832 +2307,2879,5025,-9,-9,5026,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.1564,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,1,1,789,211481.83,0,0,0,0,1353.1508,-609.05634 +2307,2879,5026,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1054.342,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.18031867,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,5,8,1,1,789,211481.83,0,0,0,0,1353.1508,-609.05634 +2308,2880,5027,-9,5028,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.21313,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,1,0,344.5,143772.53,0,0,0,0,0,828.70831 +2308,2880,5028,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1037.3346,-9,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.53,49.9,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,344.5,143772.53,0,0,0,0,0,828.70831 +2309,2881,5029,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.0601454,8.2799664,0,0,-1053.8405,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2392073,8.1796265,45.33,49.24,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,641,1008744.1,221947,547863.81,0,0,0,2135.3076 +2310,2882,5030,5031,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,60,-3,61.139397,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,13.797217,0,0,1,1,0,0,0,46.96,18.26,62.39,56.71,0,1,1,0,0,0,11,2,0,1954,32438.953,146473.36,0,0,0,0,2519.4731 +2310,2882,5031,5030,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.5747266,5.6181016,60,3,-35.819637,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.7700553,62.39,56.71,46.96,18.26,10,1,1,0,0,0,11,2,0,1954,32438.953,146473.36,0,0,0,0,2519.4731 +2311,2883,5032,5033,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,0,0,22,-1,77.693443,0,3,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.25,51.56,43.28,42.34,8.333333333333334,1,1,1,0,0,1,2,1,613,738296.5,642676.63,129588,0,0,0,899.71375 +2311,2883,5033,5032,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.2448325,7.6665826,22,1,-100.046,0,3,2,2021,15,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.7132168,7.0074544,43.28,42.34,47.25,51.56,6.666666666666667,1,1,0,0,6,1,2,1,613,738296.5,642676.63,129588,0,0,0,899.71375 +2312,2884,5034,5035,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,51,-1,4.3720546,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,.20083159,0,0,1,1,0,2.9392886,0,55.54,29.96,53.1,52.62,8.333333333333334,1,1,0,0,0,6,4,1,492,1011513.1,515098.59,214395.75,0,0,0,3468.5215 +2312,2884,5035,5034,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.5333176,8.8288927,51,1,-127.54714,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3034496,8.3054733,53.1,52.62,55.54,29.96,8.333333333333334,1,1,0,0,0,6,4,1,492,1011513.1,515098.59,214395.75,0,0,0,3468.5215 +2313,2885,5036,5037,-9,-9,1,0,40,0,1,0,2,2,-9,1,2,0,0,0,18,-2,-121.6372,0,-9,-9,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.4,23.11,51.11,53.42,1.666666666666667,1,1,0,1,5,2,3,1,961.33331,-25128.758,-1543.8633,164472.66,118651.73,0,0,1566.433 +2313,2885,5037,5036,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,7.6575079,7.9444785,0,19,2,86.310089,0,2,2,2021,10,0,40,40,1,0,0,6.9426799,6.9426799,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.11,53.42,26.4,23.11,8.333333333333334,1,1,0,0,7,2,3,1,961.33331,-25128.758,-1543.8633,164472.66,118651.73,0,0,1566.433 +2313,2885,5038,-9,5036,5037,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1008.3373,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,3,1,961.33331,-25128.758,-1543.8633,164472.66,118651.73,0,0,1566.433 +2313,2886,5039,-9,5036,5037,1,0,20,0,1,0,2,2,-9,0,3,5.7179008,5.6960502,0,0,0,-970.3905,0,2,2,2021,8,0,16,16,1,0,1,2.0731206,2.0731206,0,0,0,0,0,0,0,2,1,1,0,0,0,50.11,55.32,-9,-9,5,1,1,0,0,2,2,2,1,696,-59321.813,0,0,0,0,0,656.27002 +2314,2887,5040,-9,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,6.632565,7.2554283,6.5581708,0,0,-1078.1305,0,2,-9,2021,11,0,16,18,1,0,0,4.7879691,4.7879691,0,0,0,0,0,0,0,0,1,1,0,6.287147,0,38.65,59.48,-9,-9,3.333333333333333,1,1,0,0,7,9,3,0,647,-87859.484,0,0,0,0,0,1848.146 +2315,2888,5041,5042,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,8.2450724,8.3875837,5.2891874,33,10,-38.098194,0,2,1,2021,13,1,35,40,1,1,0,10.542597,10.542597,.05,.05,0,0,0,0,0,0,0,0,0,0,5.6827455,52.25,47.51,37.26,54.73,6.666666666666667,1,1,0,0,12,7,5,1,2305,1257204.5,628293.25,300637.22,0,0,0,3437.481 +2315,2888,5042,5041,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.3704042,8.1116171,0,33,-10,64.176117,0,2,2,2021,10,1,43,43,1,1,0,12.70045,12.70045,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.26,54.73,52.25,47.51,5,1,1,0,0,14,7,5,1,2305,1257204.5,628293.25,300637.22,0,0,0,3437.481 +2315,2889,5043,-9,5042,5041,1,1,24,0,0,0,2,2,0,0,3,0,0,0,0,0,-992.07526,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3154016,0,28.33,62.63,-9,-9,3.333333333333333,1,1,0,0,5,7,1,1,3369,110362.5,0,0,0,0,0,458.87451 +2316,2890,5044,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,4,0,7.8166656,7.8249493,0,0,-990.487,-9,1,1,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9010911,0,49.65,57.01,-9,-9,8.333333333333334,1,1,0,0,6,5,3,0,1355,55199.113,0,0,0,0,0,1772.8494 +2317,2891,5045,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,0,0,6,-3,-60.04179,0,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.44,46.27,54,54,6.666666666666667,1,1,1,0,6,12,3,1,1061,0,0,0,0,0,0,0 +2317,2892,5046,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.2756081,8.0351095,0,6,3,160.17479,0,-9,-9,2021,9,0,38,42,1,0,0,13.947858,13.947858,0,0,.05,0,0,0,0,0,0,0,0,4.6685863,0,54,54,34.44,46.27,8,4,1,0,0,1,12,4,1,1141,364863,191130.22,84961.156,57299.922,0,0,2167.5022 +2318,2893,5047,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,7.55931,7.5224943,0,0,-1080.2056,0,-9,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.35847926,7.2617245,35.38,40.3,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,623,245308.03,104238.6,0,0,0,0,2535.0627 +2319,2894,5048,5049,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.6535997,8.8030024,0,1,9,-38.676975,-9,-9,-9,2021,17,5,37,0,1,5,0,19.935974,19.935974,.05,.05,0,0,0,0,0,0,1,1,0,1.0131439,0,41.17,59.31,53.16,48.53,1.666666666666667,4,1,0,0,9,10,5,1,2975,1122832.3,963795.06,268537.19,0,0,2533.8882,3550.8193 +2319,2894,5049,5048,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,7.3305702,7.3902426,1,0,32.561325,-9,2,2,2021,16,4,0,0,2,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.4551654,0,53.16,48.53,41.17,59.31,3.333333333333333,1,1,0,0,9,10,5,1,2975,1122832.3,963795.06,268537.19,0,0,2533.8882,3550.8193 +2320,2895,5050,-9,-9,5052,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1062.7251,-9,-9,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,6,5,1,3289.3333,1907121.6,945723.19,326484.38,0,0,0,5732.5127 +2320,2895,5051,5052,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.9165611,8.7224445,0,5,1,-73.526337,0,1,2,2021,12,0,38,37,1,0,0,22.984032,22.984032,.05,.05,0,0,0,0,0,0,0,0,0,2.1006589,0,53.81,53.56,51.83,57.2,8.333333333333334,1,1,0,0,13,6,5,1,3289.3333,1907121.6,945723.19,326484.38,0,0,0,5732.5127 +2320,2895,5052,5051,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,9.1201992,9.2568645,0,5,-1,-25.583557,0,-9,-9,2021,9,2,52,52,1,2,0,24.097582,24.097582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,53.81,53.56,8.333333333333334,1,1,0,0,5,6,5,1,3289.3333,1907121.6,945723.19,326484.38,0,0,0,5732.5127 +2321,2896,5053,5054,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.0958905,7.2707734,8,-3,43.728722,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9261923,7.4447455,59.14,52.5,42.3,42.54,10,1,1,0,0,0,11,2,1,1069.5,389665.69,162567.25,153312.09,0,2911.5266,0,2581.4551 +2321,2896,5054,5053,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.3275418,5.0050373,8,3,127.63769,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,45.410656,0,0,1,1,0,5.1140699,5.0934954,42.3,42.54,59.14,52.5,8.333333333333334,1,1,0,0,3,11,2,1,1069.5,389665.69,162567.25,153312.09,0,2911.5266,0,2581.4551 +2322,2897,5055,5056,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,0,0,10,-3,140.08583,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,48.58,45.72,5,1,1,0,0,0,11,3,1,1223,1005874,135573.38,366023.13,0,7524.1035,866.92206,882.95551 +2322,2897,5056,5055,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.8951221,8.3321533,0,10,3,116.42016,0,2,2,2021,6,0,60,40,1,0,0,3.5332584,3.5332584,0,0,0,0,0,0,0,0,0,0,0,0,0,48.58,45.72,57.06,57.76,5,1,1,0,0,11,11,3,1,1223,1005874,135573.38,366023.13,0,7524.1035,866.92206,882.95551 +2322,2898,5057,-9,5055,5056,1,1,34,0,0,0,2,2,-9,0,3,5.1213021,4.9258242,0,0,0,-986.24854,0,2,2,2021,5,0,70,60,1,0,1,.2574797,.2574797,0,0,0,0,0,0,0,0,0,0,0,0,0,53.78,56.44,-9,-9,8.333333333333334,1,1,0,0,11,11,2,1,50,-162558.48,0,0,0,0,373.16769,776.77527 +2323,2899,5058,-9,5061,5060,1,1,29,0,0,0,1,1,-9,0,4,8.8988619,8.9017029,0,0,0,-988.94745,0,2,2,2021,6,0,38,50,1,0,0,14.658609,14.658609,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,6,8,5,1,914,-10933.277,0,0,0,0,0,2254.8979 +2323,2900,5059,-9,5061,5060,1,1,37,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1034.1993,0,3,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,59.28,-9,-9,6.666666666666667,2,3,1,1,8,8,1,1,1950,0,0,0,0,0,0,-194.02974 +2323,2901,5060,5061,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,45,1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.04,36.96,62.37,44.14,10,2,3,0,0,8,8,1,1,1199,99286.953,0,0,0,0,0,1421.6155 +2323,2901,5061,5060,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,45,-1,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.37,44.14,43.04,36.96,10,2,3,0,0,6,8,1,1,1199,99286.953,0,0,0,0,0,1421.6155 +2324,2902,5062,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,7.648066,7.6215572,0,0,0,-1000.1401,0,2,2,2021,11,0,35,40,1,0,0,5.7394791,5.7394791,0,0,0,0,0,0,0,0,0,0,0,2.8188233,0,55.19,51.55,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,248,0,0,0,0,0,0,558.47675 +2325,2903,5063,5064,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.9167299,6.1518579,44,1,21.827272,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.5532808,55.93,49.95,56.28,14.91,6.666666666666667,1,1,0,0,0,2,2,1,557.5,79756.586,72282.422,0,0,0,-302.61304,2002.5168 +2325,2903,5064,5063,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,4.2772622,4.1363211,44,-1,-19.705317,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,.9513194,0,1,1,0,2.9496717,4.6420965,56.28,14.91,55.93,49.95,3.333333333333333,1,1,0,0,0,2,2,1,557.5,79756.586,72282.422,0,0,0,-302.61304,2002.5168 +2326,2904,5065,5066,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,0,0,57,-3,0,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.86,30.77,61.28,35.65,10,1,1,0,0,0,12,1,1,181,374359.44,0,221415.19,0,0,0,1204.2131 +2326,2904,5066,5065,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,57,3,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,35.65,62.86,30.77,10,1,1,0,0,0,12,1,1,181,374359.44,0,221415.19,0,0,0,1204.2131 +2327,2905,5067,5068,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.0532436,8.2556219,0,18,-1,-51.079464,0,2,2,2021,10,0,21,60,1,0,0,17.748289,17.748289,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,61.53,50.05,52.7,8.333333333333334,1,1,0,0,10,8,5,1,1482,2693825.5,1777066.5,1125989.8,217168.13,7000.0142,0,6604.4268 +2327,2905,5068,5067,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,9.8007488,9.5706196,0,18,1,-70.663986,0,2,2,2021,8,0,78,42,1,0,0,23.200113,23.200113,.05,.05,0,0,0,0,0,0,0,0,0,5.061604,0,50.05,52.7,48.71,61.53,8.333333333333334,1,1,0,0,9,8,5,1,1482,2693825.5,1777066.5,1125989.8,217168.13,7000.0142,0,6604.4268 +2328,2906,5069,5070,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.5972834,6.7994771,55,1,-24.916122,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9690781,6.5372572,51.65,44.35,40.04,45.19,8.333333333333334,1,1,0,0,0,6,2,1,1707.5,544618.56,368104.5,94463.344,0,0,0,2211.4399 +2328,2906,5070,5069,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.8056536,6.5365252,55,-1,114.63567,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2445326,40.04,45.19,51.65,44.35,8.333333333333334,1,1,0,0,0,6,2,1,1707.5,544618.56,368104.5,94463.344,0,0,0,2211.4399 +2329,2907,5071,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,3,0,7.3132257,7.3050895,0,0,-883.7605,-9,-9,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4830236,0,47.69,55.06,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,965,354460.63,-21782.518,0,0,0,0,743.45392 +2329,2908,5072,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1021.8574,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.17,58.56,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,176,103822.77,0,0,0,0,0,0 +2330,2909,5073,5074,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,4.7649469,5.0690618,6,5,-80.968979,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,127.0415,0,0,1,1,0,6.1650639,4.8941479,53.22,15.69,57.57,49.69,5,1,1,0,0,0,5,2,1,992.5,151485.7,118762.41,125975.45,0,0,0,1962.1411 +2330,2909,5074,5073,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,5.3701882,5.4613657,6,-5,83.354408,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.1647911,4.9591627,57.57,49.69,53.22,15.69,8.333333333333334,1,1,0,0,0,5,2,1,992.5,151485.7,118762.41,125975.45,0,0,0,1962.1411 +2331,2910,5075,5076,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.3677869,6.5044041,8,6,-39.985794,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,93.716827,0,0,1,1,0,0,6.2090974,39.8,18.56,53.05,39.31,10,1,1,0,0,0,11,2,0,1163,129308.3,-10550.256,0,0,0,0,1714.4412 +2331,2910,5076,5075,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,47,-6,-43.663754,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.05,39.31,39.8,18.56,8.333333333333334,1,1,0,0,4,11,2,0,1163,129308.3,-10550.256,0,0,0,0,1714.4412 +2332,2911,5077,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,0,1.7696762,1.8010101,0,0,-1115.9968,0,-9,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.6800194,0,44.16,58.02,-9,-9,10,1,1,1,0,2,9,2,0,2967,71707.469,243432.81,0,0,0,0,1137.1787 +2333,2912,5078,-9,-9,5080,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1029.2435,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5079,5080,-9,-9,1,0,62,0,0,0,2,2,-9,1,4,0,5.8650813,5.6712546,7,1,16.240917,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3481956,5.6314187,57.34,50.6,49.37,35.69,10,1,1,0,0,3,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5080,5079,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,5.5878472,5.4510713,7,-1,-27.696634,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.5615814,5.3677711,49.37,35.69,57.34,50.6,3.333333333333333,1,1,0,0,2,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5081,-9,-9,5080,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-985.91162,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2333,2912,5082,-9,-9,5080,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-911.56458,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,1304,405053.16,247258.13,215944.38,0,0,0,3182.4746 +2334,2913,5083,5084,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.1524935,8.1332121,40,7,-66.028069,0,3,3,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.1223412,54.77,55.87,44,38,8.333333333333334,1,1,0,0,12,13,5,1,408,914503.25,493882.63,288100.75,218.08252,0,1147.1768,4921.6523 +2334,2913,5084,5083,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,8.1633053,8.4836197,40,-7,-133.11545,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.222403,8.4295349,44,38,54.77,55.87,8.333333333333334,1,1,0,0,10,13,5,1,408,914503.25,493882.63,288100.75,218.08252,0,1147.1768,4921.6523 +2334,2914,5085,-9,5084,5083,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1051.5042,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,240,108168.5,0,0,0,0,0,0 +2335,2915,5086,5087,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2636023,8.095644,0,4,1,-59.018673,0,-9,-9,2021,11,0,42,42,1,0,0,8.0871201,8.0871201,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,29.61,53.86,8.333333333333334,1,1,0,0,4,12,5,1,375,110291.16,31809.338,189864.19,166334.72,11275.27,0,3044.897 +2335,2915,5087,5086,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,7.9698863,7.7057748,0,4,-1,-46.730774,0,2,2,2021,16,5,38,38,1,5,0,10.006504,10.006504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.61,53.86,54.37,54.8,8.333333333333334,1,1,0,0,8,12,5,1,375,110291.16,31809.338,189864.19,166334.72,11275.27,0,3044.897 +2336,2916,5088,-9,5089,5090,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.68048,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2336,2916,5089,5090,-9,-9,1,0,41,1,2,0,2,2,-9,0,5,6.3579054,6.3781805,0,16,2,49.91127,0,2,3,2021,10,3,17,16,1,3,0,3.9586418,3.9586418,.05,.05,0,0,0,0,0,0,1,1,0,7.396585,0,42.76,57.53,58.32,50.22,6.666666666666667,1,1,0,0,13,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2336,2916,5090,5089,-9,-9,1,1,39,1,2,0,2,2,-9,0,3,8.0994167,8.4080391,0,16,-2,19.5991,0,-9,2,2021,7,0,38,48,1,0,0,11.473501,11.473501,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,42.76,57.53,8.333333333333334,1,1,0,0,13,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2336,2916,5091,-9,5089,5090,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4416,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,1.3499311,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,3,1,1332.25,225453.09,82776.43,281864.16,187762.61,0,5511.6274,3634.1782 +2337,2917,5092,5093,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.2069664,5.2682247,4,7,72.070908,0,-9,-9,2021,9,0,0,5,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.66889,4.9904351,53,47,52,54.51,8,1,1,0,0,0,8,2,1,810,817577.75,197188.34,286117.13,0,0,0,1738.8894 +2337,2917,5093,5092,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.4553404,7.666976,4,-7,11.39308,0,2,3,2021,9,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3285856,52,54.51,53,47,8.333333333333334,1,1,0,0,7,8,2,1,810,817577.75,197188.34,286117.13,0,0,0,1738.8894 +2338,2918,5094,5095,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.4430037,8.4322262,0,3,3,33.81715,0,-9,-9,2021,6,0,40,48,1,0,0,13.732254,13.732254,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,16.94,63.76,8.333333333333334,1,1,0,0,5,4,4,0,477,-75483.227,27887.875,206517.52,139793.97,0,8441.4639,1970.5918 +2338,2918,5095,5094,-9,-9,1,0,23,0,0,1,2,0,0,0,4,0,7.0453005,6.7282872,3,-3,-55.548447,-9,-9,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0217748,0,16.94,63.76,54.37,54.8,6.666666666666667,1,1,0,0,0,4,4,0,477,-75483.227,27887.875,206517.52,139793.97,0,8441.4639,1970.5918 +2339,2919,5096,-9,5097,5099,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.889,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2339,2919,5097,5099,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.2144852,8.0845776,0,7,-2,-140.22076,0,1,1,2021,16,5,24,15,1,5,0,17.157646,17.157646,0,0,0,0,0,0,0,0,0,0,0,4.2889147,0,31.91,61.11,44.02,60.7,6.666666666666667,1,1,0,0,7,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2339,2919,5098,-9,5097,5099,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.99597,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2339,2919,5099,5097,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,0,0,0,7,2,-20.47916,0,2,2,2021,15,3,0,25,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.413547,0,44.02,60.7,31.91,61.11,5,1,1,1,0,8,12,3,1,438.75,379651.75,94502.547,256529.52,27705.625,0,0,1399.662 +2340,2920,5100,5101,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.7448134,7.8111424,43,-3,-101.98819,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.471705,43.35,52.88,52.8,47.23,1.666666666666667,1,1,0,0,10,2,4,1,935.5,1585533.3,1149397.8,333547.72,0,0,0,2601.7847 +2340,2920,5101,5100,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8686085,7.9461164,43,3,42.441437,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9908237,52.8,47.23,43.35,52.88,8.333333333333334,1,1,0,0,10,2,4,1,935.5,1585533.3,1149397.8,333547.72,0,0,0,2601.7847 +2341,2921,5102,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2504306,7.2486067,0,0,0,-925.56207,0,-9,2,2021,8,0,50,45,1,0,0,4.1045847,4.1045847,0,0,0,0,0,0,0,2,1,1,0,0,0,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,13,1,3,1,433,-20930.99,0,48110.328,35246.754,4995.2651,0,781.14142 +2342,2922,5103,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.7827978,7.3629627,0,0,-1079.0411,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9731994,7.5319271,60.45,41.05,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,376,408021.78,246827.28,295098.56,0,0,0,1431.0254 +2343,2923,5104,5105,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,4.3760295,4.4454536,57,-4,27.237961,-9,2,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2273245,4.1548047,45.65,43.69,49.05,47.83,1.666666666666667,1,1,0,1,9,10,4,1,1442.5,775083.31,350951.88,282410.88,0,0,0,5775.4043 +2343,2923,5105,5104,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,8.7881174,8.6838808,57,4,78.280304,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9449401,8.5193281,49.05,47.83,45.65,43.69,8.333333333333334,1,1,0,0,0,10,4,1,1442.5,775083.31,350951.88,282410.88,0,0,0,5775.4043 +2344,2924,5106,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.1203156,8.1677971,0,0,0,-1022.6617,0,-9,2,2021,11,0,35,30,1,2,0,10.651104,10.651104,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,14,13,3,0,738,-75359.414,-84541.258,0,0,0,0,803.68414 +2345,2925,5107,-9,5109,5108,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.7645,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2345,2925,5108,5109,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.3754768,9.3405247,8.6940594,16,2,-42.397511,0,2,2,2021,11,0,42,42,1,0,0,10.498784,10.498784,.05,.05,0,0,0,0,0,0,1,1,0,8.5716619,0,40.07,54.57,33.02,57.64,6.666666666666667,1,1,0,0,12,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2345,2925,5109,5108,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.9594259,7.8315201,5.6609707,16,-2,56.679302,0,2,2,2021,19,8,38,25,1,8,0,9.6006527,9.6006527,.05,.05,0,0,0,0,0,0,1,1,0,5.9088445,0,33.02,57.64,40.07,54.57,6.666666666666667,1,1,0,0,12,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2345,2925,5110,-9,5109,5108,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5659,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,514.5,59806.934,58466.543,229942.34,107688.98,596.42438,358.51898,7288.4307 +2346,2926,5111,5112,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.8346868,7.1274338,9,-1,-86.03022,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8576279,6.3219476,50.02,44.92,65.78,30.25,5,1,1,0,0,0,2,2,1,423,600049.5,349673.94,177760.17,0,0,0,2490.4775 +2346,2926,5112,5111,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.2260389,6.0915985,9,1,-114.90727,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6836805,6.3711696,65.78,30.25,50.02,44.92,8.333333333333334,1,1,0,0,0,2,2,1,423,600049.5,349673.94,177760.17,0,0,0,2490.4775 +2347,2927,5113,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1002.9284,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3163257,0,44.06,25.95,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,949,151398.86,0,0,0,0,0,1348.2351 +2348,2928,5114,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9304304,6.8501339,0,0,-1162.3838,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7489672,58.15,52.91,-9,-9,10,1,1,0,0,0,2,2,1,1001,365473.56,92179.922,148144.39,-16196.651,1975.0062,0,1310.183 +2349,2929,5115,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-894.77399,-9,-9,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,60.41,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1068,-195867.36,0,0,0,0,0,-256.1235 +2350,2930,5116,5117,-9,-9,1,1,66,0,1,0,1,1,-9,0,5,0,6.9228554,6.8295755,6,8,11.713498,0,2,3,2021,14,4,0,38,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.4397922,7.1039705,51.14,60.45,59.43,58.05,8.333333333333334,1,1,0,0,12,12,4,1,1192.5,2391800.8,1488290.3,253631.69,0,0,0,3081.166 +2350,2930,5117,5116,-9,-9,1,0,58,0,1,0,1,1,-9,0,5,8.7226572,8.8343134,0,6,-8,37.146236,0,2,2,2021,6,0,37,37,1,0,0,19.579927,19.579927,0,0,0,0,0,0,0,7,1,1,0,0,0,59.43,58.05,51.14,60.45,10,1,1,0,0,14,12,4,1,1192.5,2391800.8,1488290.3,253631.69,0,0,0,3081.166 +2351,2931,5118,-9,5120,5121,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-942.22528,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2351,2931,5119,-9,5120,5121,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-919.21326,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,1,1,-9,0,0,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2351,2931,5120,5121,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,8.4670038,8.6977797,0,19,-1,29.425478,0,2,2,2021,8,1,40,40,1,1,0,12.754287,12.754287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.71,26.21,47.58,56.39,6.666666666666667,1,1,0,0,14,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2351,2931,5121,5120,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,8.4579296,8.2635164,0,12,1,-14.784411,0,2,2,2021,6,0,45,43,1,0,0,13.804746,13.804746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.58,56.39,60.71,26.21,5,1,1,0,0,14,2,5,1,1439,247855.56,234633.8,0,0,0,0,4271.6753 +2352,2932,5122,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-943.23407,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,5.5403962,0,45.232475,0,1,1,0,2.2933977,0,51,47,-9,-9,7,1,1,0,0,0,9,2,0,285,-109745.17,0,0,0,0,0,1338.8746 +2353,2933,5123,-9,5124,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2007,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,456,28255.193,-26372.611,133504.53,68172.078,0,0,1664.4937 +2353,2933,5124,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.3098221,7.8020072,0,0,0,-1018.803,0,2,3,2021,36,12,41,75,1,12,0,8.0795918,8.0795918,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.68,45.71,-9,-9,8.333333333333334,1,1,0,0,8,12,3,0,456,28255.193,-26372.611,133504.53,68172.078,0,0,1664.4937 +2353,2934,5125,-9,5124,-9,1,1,19,0,1,0,2,2,-9,0,4,7.3184538,7.4402661,0,0,0,-916.18738,0,2,-9,2021,11,0,39,39,1,2,1,5.7776165,5.7776165,0,0,0,0,0,0,0,0,1,1,0,.19499409,0,48,59,-9,-9,7,1,1,0,0,1,12,3,0,1040,0,0,0,0,0,0,794.25562 +2354,2935,5126,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.2092133,7.1971931,0,0,-977.49719,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4265304,60.12,54.8,-9,-9,10,1,1,0,0,12,12,3,1,3007,339388.38,150610,109174.63,0,0,0,1295.8562 +2355,2936,5127,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.926733,8.4085636,0,0,0,-968.2193,0,2,2,2021,7,1,40,42,1,1,0,19.220798,19.220798,.05,.05,0,0,0,0,0,0,1,1,0,1.1165751,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,14,4,5,1,172,104105.43,7795.9307,81614.617,19141.52,12738.027,2107.3503,1889.7614 +2356,2937,5128,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,3,8.263032,8.3783836,0,0,0,-951.08459,-9,-9,-9,2021,12,2,40,0,1,2,0,13.22087,13.22087,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,542,100254.55,-39131.27,138944.92,181091.27,0,0,956.8847 +2357,2938,5129,-9,5130,-9,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1095.4749,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,13,1,0,1409.5,-84348.602,-2862.479,0,0,0,0,969.63739 +2357,2938,5130,-9,-9,-9,1,0,52,0,1,0,2,2,-9,1,3,0,0,0,0,0,-981.47101,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1409.5,-84348.602,-2862.479,0,0,0,0,969.63739 +2358,2939,5131,5132,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.9580183,8.7783031,0,8,-10,80.613159,0,-9,-9,2021,9,0,45,40,1,1,0,24.901781,24.901781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,60.12,54.8,8,1,1,0,0,1,2,5,1,1273.5,624982.5,260088.44,114759.73,73670.484,0,924.35199,2611.5513 +2358,2939,5132,5131,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,27,10,128.41109,0,3,3,2021,7,0,0,16,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.3059797,0,60.12,54.8,52,55,8.333333333333334,1,1,0,0,8,2,5,1,1273.5,624982.5,260088.44,114759.73,73670.484,0,924.35199,2611.5513 +2358,2940,5133,-9,5132,5131,1,0,22,0,0,0,2,2,-9,0,4,7.9567909,7.6242127,0,0,0,-1046.1123,0,2,1,2021,11,0,40,40,1,2,1,6.54321,6.54321,0,0,0,0,0,0,0,0,0,0,0,.8933152,0,46,58,-9,-9,7,1,1,0,0,1,2,3,1,1642,-27172.375,-40511.527,46020.293,68622.133,0,-783.72113,2124.5681 +2359,2941,5134,5135,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.2788529,7.108882,0,6,9,-157.66106,0,2,2,2021,11,0,16,16,1,0,0,12.147322,12.147322,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.18,54.77,55.95,47.23,6.666666666666667,1,1,0,0,13,2,4,1,707.5,315882.69,56910.691,239173.47,94773.516,30138.412,0,2645.4326 +2359,2941,5135,5134,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.3922653,8.6430883,0,6,0,42.107365,0,-9,-9,2021,10,0,35,36,1,0,0,15.504981,15.504981,.05,.05,0,0,0,0,0,0,0,0,0,4.7059226,0,55.95,47.23,45.18,54.77,5,4,2,0,0,12,2,4,1,707.5,315882.69,56910.691,239173.47,94773.516,30138.412,0,2645.4326 +2359,2942,5136,-9,5134,5135,1,1,25,0,0,0,1,1,-9,0,3,0,0,0,0,0,-992.91724,-9,1,1,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8195844,0,48.14,53.42,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,861,-58470.125,0,0,0,0,0,1105.7858 +2360,2943,5137,5138,-9,-9,1,0,40,0,0,0,2,2,-9,1,2,0,0,0,10,0,8.7591228,0,2,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1450132,0,25.02,53.81,49.29,54.59,3.333333333333333,1,1,0,0,0,7,3,0,1487.5,811752.06,374006.63,525301.75,69750.484,0,1987.0009,1887.8552 +2360,2943,5138,5137,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,7.891325,8.1982231,0,10,0,-93.574944,0,-9,-9,2021,10,0,38,38,1,0,0,8.7127218,8.7127218,.05,.05,0,0,0,0,0,0,1,1,0,3.0895226,0,49.29,54.59,25.02,53.81,5,1,1,0,0,11,7,3,0,1487.5,811752.06,374006.63,525301.75,69750.484,0,1987.0009,1887.8552 +2361,2944,5139,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,6.1461773,5.9281931,0,0,-1102.3785,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4820201,6.2447066,44.77,48,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,297,41473.309,12190.734,12352.397,42427.773,0,0,1241.9991 +2362,2945,5140,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1035.1199,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,9.608922,18.03438,64.178886,0,1,1,0,3.2372985,0,38.2,25.1,-9,-9,8.333333333333334,1,1,0,0,5,13,2,1,913,-103984.31,0,0,0,0,0,749.65155 +2362,2946,5141,-9,-9,5140,1,0,42,0,0,0,2,2,-9,0,4,7.285078,7.0128446,0,0,0,-1067.9043,0,3,3,2021,7,0,28,27,1,0,0,6.4670348,6.4670348,0,0,0,0,0,0,0,27,1,1,0,0,0,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,1610,73051.797,0,153639.02,115478.08,3362.7637,0,-215.43488 +2362,2947,5142,-9,-9,5140,1,1,40,0,0,0,2,2,-9,0,5,8.3078423,8.0909805,0,0,0,-1131.8092,0,-9,3,2021,6,0,37,37,1,0,0,11.936653,11.936653,.05,.05,0,0,0,0,0,7,1,1,0,4.2517233,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,705,162970.66,4111.7432,0,0,0,0,1220.2753 +2363,2948,5143,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.5284653,6.4923391,0,0,-1022.7171,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9441563,6.8877087,62.27,45.61,-9,-9,10,1,1,0,0,0,12,2,1,1370,74620.586,113919.42,142415.86,0,0,0,1740.0933 +2364,2949,5144,5145,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.5220594,7.6643891,0,8,8,-86.041901,0,2,2,2021,8,0,40,35,1,0,0,6.6739306,6.6739306,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.09,58.02,57.06,57.76,1.666666666666667,1,1,0,0,13,1,4,1,683.5,362935.94,98656.453,113724.12,0,0,0,3083.8987 +2364,2949,5145,5144,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.227664,8.0510979,0,8,-8,-123.00189,0,-9,-9,2021,7,0,38,40,1,0,0,12.201979,12.201979,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,47.09,58.02,8.333333333333334,1,1,0,0,13,1,4,1,683.5,362935.94,98656.453,113724.12,0,0,0,3083.8987 +2365,2950,5146,5147,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.7718258,8.6114016,57,0,50.755993,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.3390493,8.570776,60.86,50.49,52.31,58.29,10,1,1,0,0,0,9,5,1,1312.5,2251245,507378.5,756866.06,0,0,0,9810.833 +2365,2950,5147,5146,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,8.953208,9.6006994,57,0,40.522282,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,10.1577,7.2546396,52.31,58.29,60.86,50.49,8.333333333333334,1,1,0,0,0,9,5,1,1312.5,2251245,507378.5,756866.06,0,0,0,9810.833 +2366,2951,5148,-9,5149,5150,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1026.7346,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1160.6666,543157,168383.59,492218.81,302649.53,0,-454.30249,5539.4941 +2366,2951,5149,5150,-9,-9,1,0,58,0,1,0,1,1,-9,0,3,8.7377892,8.5091295,0,21,6,-29.296799,-9,2,3,2021,11,2,32,0,1,2,0,25.592255,25.592255,0,0,0,0,0,0,0,0,1,1,0,0,0,49.58,50.05,54.1,59.11,6.666666666666667,1,1,0,0,10,10,5,1,1160.6666,543157,168383.59,492218.81,302649.53,0,-454.30249,5539.4941 +2366,2951,5150,5149,-9,-9,1,1,52,0,1,0,2,2,-9,0,5,9.0310249,9.0215187,0,11,-6,-103.89612,0,-9,-9,2021,4,0,43,43,1,0,0,21.976772,21.976772,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.58,50.05,6.666666666666667,1,1,0,0,8,10,5,1,1160.6666,543157,168383.59,492218.81,302649.53,0,-454.30249,5539.4941 +2367,2952,5151,-9,5152,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.1437,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,895.5,173252.58,136061.17,0,0,3.7784576,761.28723,1874.2798 +2367,2952,5152,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9268451,8.0094557,5.2716479,0,0,-922.51617,0,3,2,2021,6,0,35,35,1,0,0,8.4172411,8.4172411,.05,.05,0,0,0,0,0,0,1,1,0,6.9093037,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,895.5,173252.58,136061.17,0,0,3.7784576,761.28723,1874.2798 +2368,2953,5153,5154,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.6602235,7.7214818,15,5,-10.860787,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.8999462,38.16,44.66,39.32,17.47,3.333333333333333,1,1,0,0,0,4,3,1,1076.5,676061.38,649486,98504.969,0,0,0,1637.2391 +2368,2953,5154,5153,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,15,-5,33.629997,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.32,17.47,38.16,44.66,5,1,1,0,0,9,4,3,1,1076.5,676061.38,649486,98504.969,0,0,0,1637.2391 +2369,2954,5155,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.93852,7.954865,0,0,0,-1053.4301,0,2,2,2021,8,0,27,23,1,0,0,11.372676,11.372676,0,0,0,0,0,0,0,2,1,1,0,0,0,56.19,46.16,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,584,1019901.3,284091.25,623137.25,0,0,0,1703.6533 +2370,2955,5156,5157,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.1563139,7.8336926,0,10,0,52.610249,0,-9,-9,2021,8,0,64,59,1,0,0,6.287827,6.287827,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.04,55.86,1.666666666666667,1,1,0,0,11,10,4,1,265,75823.695,-9952.4863,247329.88,109508.69,3877.7432,0,1456.4086 +2370,2955,5157,5156,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.4719677,7.3922858,0,10,0,-21.666056,0,3,3,2021,11,0,30,30,1,0,0,6.7503014,6.7503014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.33,53.46,8.333333333333334,1,1,0,0,11,10,4,1,265,75823.695,-9952.4863,247329.88,109508.69,3877.7432,0,1456.4086 +2371,2956,5158,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.8883047,8.9811392,0,0,0,-958.17322,0,2,1,2021,12,0,38,38,1,0,0,19.804152,19.804152,.05,.05,.05,0,0,0,0,0,0,0,0,8.9525652,0,49.04,55.86,-9,-9,6.666666666666667,4,2,0,0,11,8,5,1,155,507890.38,348993.91,344735.28,82704.781,0,0,5564.3408 +2372,2957,5159,5162,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,7.4774466,7.5253258,0,14,4,-47.173775,0,3,3,2021,6,0,40,40,1,0,0,4.3207245,4.3207245,.05,.05,0,0,0,0,0,0,1,1,0,1.444437,0,56.57,57.78,57.16,56.15,6.666666666666667,1,1,0,0,10,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2372,2957,5160,-9,5162,5159,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.04712,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2372,2957,5161,-9,5162,5159,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-929.75714,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2372,2957,5162,5159,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.2582788,7.1013131,0,14,-4,-174.82391,0,2,3,2021,6,0,25,18,1,0,0,8.4853382,8.4853382,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.57,57.78,6.666666666666667,1,1,0,0,7,10,3,1,1043.5,-53156.59,36328.645,0,0,0,0,2285.0601 +2373,2958,5163,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,9.1104383,9.1854019,7.5371542,0,0,-996.40985,0,3,3,2021,17,5,40,40,1,5,0,22.649487,22.649487,0,0,.05,0,0,0,0,2,1,1,0,0,7.9342155,27.98,63,-9,-9,6.666666666666667,1,1,0,0,12,4,5,0,274,121539.94,11704.59,194607.73,115729.41,0,20498.668,3979.6238 +2374,2959,5164,5165,-9,-9,1,0,54,0,0,0,2,2,-9,0,1,7.1666484,7.0409675,0,5,-2,-27.986309,0,3,1,2021,22,10,17,16,1,10,0,9.7323532,9.7323532,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,30.99,31.95,37.93,36.97,1.666666666666667,1,1,0,0,11,6,3,1,2516.5,451844.19,411463.5,113188.55,0,0,0,1289.0925 +2374,2959,5165,5164,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,7.743403,7.8774166,0,5,2,53.110146,0,3,1,2021,22,10,37,37,1,10,0,8.2279825,8.2279825,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.93,36.97,30.99,31.95,3.333333333333333,1,1,0,0,11,6,3,1,2516.5,451844.19,411463.5,113188.55,0,0,0,1289.0925 +2375,2960,5166,5167,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,10,5,0,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,57.33,53.46,8.333333333333334,1,1,0,0,6,5,1,1,1749.5,442740.38,-53084.313,241071.53,44332.055,0,0,2040.9541 +2375,2960,5167,5166,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,0,0,10,-5,0,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.92,54.3,6.666666666666667,1,1,0,0,11,5,1,1,1749.5,442740.38,-53084.313,241071.53,44332.055,0,0,2040.9541 +2376,2961,5168,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3677516,7.1009417,5.1139965,0,0,-1058.353,0,3,3,2021,10,0,20,28,1,1,0,9.512166,9.512166,.05,.05,0,0,0,0,0,0,0,0,0,0,5.6104703,52,52,-9,-9,8,1,1,0,0,6,12,3,1,371,192511.03,-6545.603,0,0,0,0,406.1662 +2377,2962,5169,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.956954,7.8132977,0,0,0,-957.78607,0,3,3,2021,23,11,40,42,1,11,0,8.3813782,8.3813782,.05,.05,0,0,0,0,0,0,0,0,0,3.7618742,0,39.58,48.36,-9,-9,3.333333333333333,1,1,0,0,10,6,3,0,538,111555.23,124556.48,0,0,0,0,2428.6997 +2378,2963,5170,5172,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.9651041,8.963624,0,11,-3,-51.4603,-9,-9,-9,2021,10,0,50,0,1,1,0,18.785812,18.785812,.05,.05,.05,0,0,0,3.1008778,0,1,1,0,0,0,50,57,33.12,54.28,8,1,1,0,0,1,9,5,0,798,622390.56,203030.63,287495.97,42044.43,0,0,4367.9785 +2378,2963,5171,-9,5172,5170,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-953.2995,-9,2,1,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.89,44.63,-9,-9,10,1,1,0,0,0,9,5,0,798,622390.56,203030.63,287495.97,42044.43,0,0,4367.9785 +2378,2963,5172,5170,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.0694118,7.2073231,0,11,3,-48.09166,-9,-9,-9,2021,28,11,48,0,1,11,0,3.1684711,3.1684711,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.12,54.28,50,57,6.666666666666667,1,1,0,1,12,9,5,0,798,622390.56,203030.63,287495.97,42044.43,0,0,4367.9785 +2379,2964,5173,-9,-9,-9,1,1,73,0,2,0,2,2,-9,0,3,8.303237,8.2832336,0,0,0,-890.84735,-9,3,3,2021,8,0,50,0,1,0,0,10.230126,10.230126,0,0,0,0,1.6449336,0,20.300653,0,1,1,0,0,0,62.66,52.4,-9,-9,5,1,1,0,0,9,6,3,1,383,434492.16,612652.44,0,0,0,0,2493.1938 +2380,2965,5174,-9,5177,5178,1,1,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1038.7012,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5175,-9,5177,5178,1,1,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-899.28339,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5176,-9,5177,5178,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-949.73792,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5177,5178,-9,-9,1,0,40,0,5,0,2,2,-9,0,3,8.0824671,7.3994002,0,19,0,-86.339722,0,-9,-9,2021,19,6,24,24,1,6,0,9.2234249,9.2234249,.05,.05,0,0,0,0,0,0,1,1,0,6.8314505,0,49.52,56.95,44.19,58.01,5,1,1,0,1,14,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5178,5177,-9,-9,1,1,40,0,5,0,2,2,-9,0,3,8.7300558,8.7506638,0,19,0,-97.670944,0,2,-9,2021,11,3,42,50,1,3,0,15.844321,15.844321,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,49.52,56.95,8.333333333333334,1,1,0,1,14,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2380,2965,5179,-9,5177,5178,1,1,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-912.29437,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,745,1752573.8,1409636,235460.84,-3329.4282,2960.5242,0,4160.8252 +2381,2966,5180,-9,5181,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1052.505,0,2,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,20.82,35.6,-9,-9,0,1,1,0,1,6,11,1,1,334,18628.232,0,0,0,0,11.210619,1554.4537 +2381,2967,5181,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,6.8551712,6.4877806,0,0,-934.46692,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,13.878812,0,0,1,1,0,0,6.8161659,64.82000000000001,11.24,-9,-9,5,1,1,0,0,0,11,2,1,355,673586.81,-735.08606,198070.25,0,0,0,-539.91132 +2382,2968,5182,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.8345704,6.9421387,0,0,-1028.8502,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.8129926,58.23,43.46,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2007,592017.25,172779.75,224207.72,0,0,0,1310.5026 +2383,2969,5183,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.0081224,8.1377516,0,0,-992.94391,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3025455,8.2650194,61.85,47.26,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,1090,653177.75,400369.91,56986.434,0,0,0,2051.29 +2384,2970,5184,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.2299433,8.0444431,0,0,0,-946.85284,0,2,2,2021,6,0,25,35,1,0,0,17.820774,17.820774,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,326,1290210.9,508095.09,362100.78,0,0,0,1435.1182 +2385,2971,5185,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.4213042,6.6826153,0,0,-957.7243,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0576134,6.3508224,55.22,30.3,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,174,272652.53,174826.3,0,0,0,0,831.85199 +2386,2972,5186,-9,5188,5187,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.2873,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2386,2972,5187,5188,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,8.7735004,8.7370167,0,9,3,36.628391,0,-9,-9,2021,6,0,48,40,1,0,0,13.507915,13.507915,.05,.05,0,0,0,0,0,2,1,1,0,1.284454,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,7,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2386,2972,5188,5187,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.6804619,8.8484993,7.4200344,27,-3,-18.444508,0,2,2,2021,8,0,30,30,1,0,0,26.244846,26.244846,.05,.05,0,0,0,0,0,0,1,1,0,7.3181524,0,57.06,57.76,55.19,54.26,8.333333333333334,1,1,0,0,11,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2386,2972,5189,-9,5188,5187,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1127.0374,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,595,753412.13,356471.88,270506.84,8489.1719,24.909424,0,5955.3857 +2387,2973,5190,5191,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.010293,8.1787767,0,7,12,-155.87822,0,3,2,2021,22,10,37,38,1,10,0,9.8209982,9.8209982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.23,25.92,51,54,3.333333333333333,1,1,0,0,6,6,3,0,354,126274.84,59852.461,198732.8,0,2226.4592,0,1099.3921 +2387,2973,5191,5190,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.1975508,6.8638721,0,7,-12,-55.516136,0,-9,-9,2021,10,0,28,26,1,1,0,4.2970977,4.2970977,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,50.23,25.92,8,1,1,0,0,1,6,3,0,354,126274.84,59852.461,198732.8,0,2226.4592,0,1099.3921 +2388,2974,5192,-9,5193,5194,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.875,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,1146,381983.56,133238.23,896635.5,484819.25,0,0,3913.249 +2388,2974,5193,5194,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.0601439,7.3141537,0,7,3,39.372734,0,-9,-9,2021,7,2,30,11,1,2,0,4.9666018,4.9666018,0,0,0,0,0,0,0,0,1,1,0,0,0,46,51,43.09,61.58,6.666666666666667,1,1,0,0,11,8,4,0,1146,381983.56,133238.23,896635.5,484819.25,0,0,3913.249 +2388,2974,5194,5193,-9,-9,1,1,36,0,1,0,1,1,-9,0,5,8.7876692,8.8188019,0,7,-3,-16.696688,0,1,1,2021,12,0,60,64,1,0,0,10.718717,10.718717,0,0,0,0,0,0,0,0,1,1,0,0,0,43.09,61.58,46,51,5,2,3,0,1,9,8,4,0,1146,381983.56,133238.23,896635.5,484819.25,0,0,3913.249 +2389,2975,5195,5196,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.1228294,8.3223515,21,-4,-55.823124,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9427111,8.1585598,57.06,57.76,52.51,54.26,8.333333333333334,1,1,0,0,8,5,4,1,2703.5,2215644,1283813.5,387733.56,0,0,0,3667.281 +2389,2975,5196,5195,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.293139,7.720818,17,4,-27.213154,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.0702944,0,1,1,0,3.7209342,7.5583687,52.51,54.26,57.06,57.76,8.333333333333334,1,1,0,0,9,5,4,1,2703.5,2215644,1283813.5,387733.56,0,0,0,3667.281 +2390,2976,5197,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.5969748,7.7732821,0,0,-993.90863,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3461328,55.74,17.99,-9,-9,6.666666666666667,1,1,0,0,0,1,3,1,147,281850.16,460253.13,157614.28,0,3279.8186,0,2414.0784 +2391,2977,5198,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3192101,8.0938902,0,0,0,-1135.9546,0,3,3,2021,11,0,38,0,1,0,0,10.933298,10.933298,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,6.666666666666667,1,1,0,0,13,11,4,1,758,131553.28,-32966.594,0,0,0,0,977.17822 +2392,2978,5199,5200,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,6.9622178,7.0384717,0,29,0,24.715183,0,2,2,2021,11,0,30,30,1,0,0,4.2663021,4.2663021,0,0,.05,0,0,0,0,2,1,1,0,0,0,47.21,36.66,36.67,37.73,6.666666666666667,1,1,0,0,14,5,3,0,873.5,204104.13,-9179.9795,0,0,0,0,1344.9503 +2392,2978,5200,5199,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.0781465,7.20612,0,29,9,50.045422,0,3,2,2021,16,4,15,5,1,4,0,9.0178814,9.0178814,0,0,0,0,0,0,0,2,1,1,0,0,0,36.67,37.73,47.21,36.66,5,1,1,0,0,13,5,3,0,873.5,204104.13,-9179.9795,0,0,0,0,1344.9503 +2392,2979,5201,-9,5200,5199,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1033.0765,-9,2,2,2021,25,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5947552,0,39.66,61.49,-9,-9,6.666666666666667,1,1,0,0,4,5,1,0,145,-143810.72,0,0,0,0,0,743.1015 +2393,2980,5202,5203,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.2549791,6.2602811,8,-3,146.2787,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.76089,5.9974217,66.52,32.82,63.38,23.99,10,1,1,0,0,0,10,3,1,591.5,1872076.5,448163.22,422342.34,0,0,0,2212.3735 +2393,2980,5203,5202,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.8160648,8.2325706,8,3,16.757647,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0196247,7.7359228,63.38,23.99,66.52,32.82,8.333333333333334,1,1,0,0,0,10,3,1,591.5,1872076.5,448163.22,422342.34,0,0,0,2212.3735 +2394,2981,5204,5205,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.3535395,8.1256952,0,8,-2,-22.841301,0,2,2,2021,14,2,42,42,1,2,0,12.25379,12.25379,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.8,59.5,52,56,5,1,1,0,0,9,2,4,1,329,286780.88,210879.41,133965.42,71173.109,645.97009,0,2867.1465 +2394,2981,5205,5204,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,7.7369423,7.2523184,0,8,2,-121.11098,0,2,-9,2021,9,0,36,40,1,1,0,5.9720688,5.9720688,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,35.8,59.5,8,1,1,0,0,7,2,4,1,329,286780.88,210879.41,133965.42,71173.109,645.97009,0,2867.1465 +2395,2982,5206,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5606756,9.0245295,0,0,0,-963.04266,0,3,1,2021,8,1,37,40,1,1,0,16.627073,16.627073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,2,3,0,0,10,7,5,1,527,89960.859,-4075.1165,0,0,555.60986,0,2409.7776 +2395,2983,5207,-9,5206,-9,1,1,21,0,0,1,2,0,-9,0,5,0,0,0,0,0,-932.37213,-9,2,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,4,2,0,0,0,7,2,1,1410,42385.246,0,0,0,0,0,1300.3759 +2396,2984,5208,5209,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.3699512,8.2311621,0,36,-4,5.0780067,0,2,3,2021,17,4,86,63,1,4,0,6.8181615,6.8181615,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.11,48.08,43.02,57.64,5,3,4,0,0,10,9,5,0,2079.5,1399167.6,712354.38,534299.75,38409.172,3803.6431,0,3652.877 +2396,2984,5209,5208,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.3216629,8.3541107,0,38,4,100.5901,0,3,3,2021,9,0,48,45,1,0,0,9.888998,9.888998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.02,57.64,34.11,48.08,6.666666666666667,3,4,0,0,12,9,5,0,2079.5,1399167.6,712354.38,534299.75,38409.172,3803.6431,0,3652.877 +2396,2985,5210,-9,5208,5209,1,1,25,0,0,0,2,2,-9,0,3,8.3106546,8.2562494,0,0,0,-1224.1167,0,2,3,2021,22,8,40,37,1,8,1,12.582065,12.582065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.54,48.75,-9,-9,1.666666666666667,3,4,0,0,7,9,4,0,866,62853.516,133810.13,0,0,0,0,1701.4144 +2397,2986,5211,5212,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.7225289,6.8643122,4,8,-39.518051,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.3830919,49.61,54.24,23.4,23.46,6.666666666666667,1,1,0,0,13,12,2,1,725,248769.28,192382.41,243210.13,0,0,940.5343,1955.8405 +2397,2986,5212,5211,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,4,-8,7.5679631,0,3,3,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.59231418,0,23.4,23.46,49.61,54.24,0,1,1,1,0,8,12,2,1,725,248769.28,192382.41,243210.13,0,0,940.5343,1955.8405 +2397,2987,5213,-9,5212,5211,1,0,30,0,0,0,2,2,-9,0,1,8.0962315,7.8700743,0,0,0,-1003.038,0,2,2,2021,14,2,50,55,1,2,1,5.7242217,5.7242217,.05,.05,0,0,0,0,0,7,1,1,0,0,0,37.51,34.33,-9,-9,5,1,1,0,0,13,12,4,1,360,-49392.566,-32885.527,0,0,5320.4375,0,1050.1846 +2398,2988,5214,5215,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.4023924,9.2055006,0,24,0,117.03136,0,2,3,2021,8,1,47,52,1,1,0,25.581964,25.581964,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,38.9,24.29,8.333333333333334,1,1,0,0,6,9,5,1,566.5,506251.53,163859.33,624295.13,321323.84,0,0,5275.1387 +2398,2988,5215,5214,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,5.6963959,5.4791884,24,0,83.695663,0,3,3,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0195408,5.4616189,38.9,24.29,54.79,55.86,3.333333333333333,1,1,0,0,0,9,5,1,566.5,506251.53,163859.33,624295.13,321323.84,0,0,5275.1387 +2399,2989,5216,5218,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.4672055,7.5020432,0,2,-2,52.439957,0,-9,-9,2021,11,1,35,30,1,1,0,6.0602627,6.0602627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.46,46.98,52.24,50.75,8.333333333333334,1,1,0,0,7,4,4,0,1330,304197.5,81094.258,93081.641,72599.563,3478.8232,-8.4029541,2612.1816 +2399,2989,5217,-9,5216,5218,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.2444,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,0,1330,304197.5,81094.258,93081.641,72599.563,3478.8232,-8.4029541,2612.1816 +2399,2989,5218,5216,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.0084848,8.2612362,0,2,2,-28.08419,-9,-9,-9,2021,8,0,48,0,1,0,0,9.6353998,9.6353998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,35.46,46.98,8.333333333333334,1,1,0,0,1,4,4,0,1330,304197.5,81094.258,93081.641,72599.563,3478.8232,-8.4029541,2612.1816 +2400,2990,5219,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.191422,5.902597,0,0,-1048.7853,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.018270191,5.8253269,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,286,76099.75,-25052.975,0,0,0,0,927.10742 +2401,2991,5220,5221,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,6.9223719,6.9172378,10,0,-111.18052,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1294723,7.0443783,59.14,52.5,57.16,56.15,8.333333333333334,1,1,0,0,11,5,2,1,836,284910.5,261894.31,135070.86,0,1663.2693,0,2092.5889 +2401,2991,5221,5220,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.3098493,6.300808,10,9,98.245361,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8789968,6.4084501,57.16,56.15,59.14,52.5,8.333333333333334,1,1,0,0,0,5,2,1,836,284910.5,261894.31,135070.86,0,1663.2693,0,2092.5889 +2402,2992,5222,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.0690565,7.863163,0,0,0,-1020.3715,0,2,-9,2021,9,2,32,15,1,2,0,10.922148,10.922148,.05,.05,0,0,0,0,0,0,0,0,0,.94205892,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,9,1,4,0,318,61107.941,-14360.127,0,0,21035.02,0,666.22028 +2403,2993,5223,-9,5225,5224,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.6907,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2403,2993,5224,5225,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.4124174,8.3684502,0,21,2,1.8855836,0,2,2,2021,14,3,44,46,1,3,0,11.335522,11.335522,0,0,0,0,0,0,0,0,1,1,0,3.0433612,0,36.85,61.32,57.16,56.15,3.333333333333333,1,1,0,0,11,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2403,2993,5225,5224,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,0,0,0,20,-2,-99.647003,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,36.85,61.32,8.333333333333334,1,1,0,0,5,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2403,2993,5226,-9,5225,5224,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.50604,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,927,342272.5,66062.336,171876.77,35419.23,6246.21,0,1897.6096 +2404,2994,5227,5228,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.4363041,7.9818406,6.8703074,2,0,-113.26875,0,-9,-9,2021,7,0,20,20,1,0,0,9.4141531,9.4141531,.05,.05,0,0,0,0,0,0,0,0,0,6.2047448,6.6795144,45.91,59.89,53.2,48.45,6.666666666666667,1,1,0,0,9,9,5,1,544.33331,448699.13,177772.72,400267.88,231763.45,0,10417.088,4947.5469 +2404,2994,5228,5227,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,9.1378069,9.0570059,0,2,0,-67.183098,0,-9,-9,2021,14,1,65,105,1,1,0,21.351555,21.351555,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.2,48.45,45.91,59.89,8.333333333333334,1,1,0,0,7,9,5,1,544.33331,448699.13,177772.72,400267.88,231763.45,0,10417.088,4947.5469 +2404,2994,5229,-9,5227,-9,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1079.2407,-9,3,-9,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,54.61,-9,-9,8.333333333333334,1,1,1,0,0,9,5,1,544.33331,448699.13,177772.72,400267.88,231763.45,0,10417.088,4947.5469 +2405,2995,5230,5231,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4896216,7.2425404,9,5,-52.273926,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8174541,7.4100146,57.16,56.15,41.64,54.12,8.333333333333334,1,1,0,0,8,9,3,1,756,833357.38,498642.44,356910.59,0,0,0,2517.8662 +2405,2995,5231,5230,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.6718044,6.2709336,9,-5,48.338882,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6331608,6.777679,41.64,54.12,57.16,56.15,5,1,1,0,0,8,9,3,1,756,833357.38,498642.44,356910.59,0,0,0,2517.8662 +2406,2996,5232,-9,5234,5233,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.0258,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5233,5234,-9,-9,1,1,41,1,3,0,2,2,-9,0,3,7.4728818,7.6198277,0,8,7,-80.800079,0,3,3,2021,6,1,37,0,1,1,0,5.6156759,5.6156759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,48.57,42.35,57.57,6.666666666666667,1,1,0,0,6,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5234,5233,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,8,-7,66.990608,0,2,2,2021,23,8,0,23,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.35,57.57,52.99,48.57,8.333333333333334,1,1,0,0,4,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5235,-9,5234,5233,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.54987,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2406,2996,5236,-9,5234,5233,1,0,12,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1081.8457,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,2,1,415.60001,310047.81,193491.8,90673.359,11605.156,0,0,1610.8295 +2407,2997,5237,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,6.1729951,6.564271,0,0,-992.14221,0,-9,-9,2021,33,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.4548354,24.13,33.78,-9,-9,0,1,1,0,0,0,11,2,0,868,103534.1,0,79418.094,9739.0449,0,0,-449.56244 +2407,2998,5238,-9,5237,-9,1,1,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-888.14594,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.95,43.52,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1764,56042.277,0,0,0,0,0,416.28632 +2408,2999,5239,5240,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,0,0,58,0,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,31.784954,0,0,1,1,0,0,0,64.06,15.57,54,46,10,1,1,0,0,0,4,1,0,405.5,284748.97,81774.641,212501,0,0,0,1451.3523 +2408,2999,5240,5239,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,58,0,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54,46,64.06,15.57,8,1,1,0,0,0,4,1,0,405.5,284748.97,81774.641,212501,0,0,0,1451.3523 +2409,3000,5241,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-980.30884,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,760,-50489.711,0,0,0,-2469.978,0,833.22809 +2410,3001,5242,5243,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.1265631,7.3534899,20,-5,-3.9089353,0,2,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5147061,6.7702732,31.93,58.41,54.96,53.17,6.666666666666667,1,1,0,0,8,12,2,1,936.5,1083631.6,230590.56,279947.75,0,0,0,1761.9329 +2410,3001,5243,5242,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,18,5,.99640352,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,31.93,58.41,8.333333333333334,1,1,0,0,10,12,2,1,936.5,1083631.6,230590.56,279947.75,0,0,0,1761.9329 +2411,3002,5244,5245,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,57,2,-20.124527,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,46,53,46,8,1,1,0,0,0,10,2,0,474,743012.88,161055.53,267513.78,0,0,0,1543.6716 +2411,3002,5245,5244,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.6855125,6.8127055,57,-2,-45.249954,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9196196,53,46,52,46,8,1,1,0,0,0,10,2,0,474,743012.88,161055.53,267513.78,0,0,0,1543.6716 +2412,3003,5246,-9,5247,5248,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.37,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2412,3003,5247,5248,-9,-9,1,0,34,0,2,0,2,2,0,0,3,0,0,0,9,-5,-44.886517,-9,2,2,2021,12,3,0,0,2,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,42.58,34.64,55.84,6.666666666666667,1,1,0,0,3,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2412,3003,5248,5247,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,9.6132841,9.7955275,0,9,5,-97.212296,0,-9,-9,2021,23,9,40,50,1,9,0,44.904671,44.904671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.64,55.84,51.42,42.58,3.333333333333333,1,1,0,1,8,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2412,3003,5249,-9,5247,5248,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.61749,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,0,2556.25,560620.88,250659.55,516222.88,320635.38,0,0,3567.0967 +2413,3004,5250,5251,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,60,-6,-60.70076,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.38,47.02,33.59,43.25,5,1,1,0,0,0,8,2,1,1704,172314.56,11965.899,0,0,0,0,1354.572 +2413,3004,5251,5250,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4697547,6.4944806,60,6,21.369864,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,15.054565,0,0,1,1,0,0,6.1098294,33.59,43.25,47.38,47.02,6.666666666666667,1,1,0,0,0,8,2,1,1704,172314.56,11965.899,0,0,0,0,1354.572 +2414,3005,5252,5253,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.7127938,8.0262909,0,12,-10,-12.738305,0,2,2,2021,31,10,37,37,1,10,0,7.5672569,7.5672569,.05,.05,0,0,0,0,0,0,0,0,0,3.8503487,0,38.52,53.3,29.19,45.28,5,1,1,0,0,13,2,5,1,552.5,691824.38,257033.84,191933.38,22153.811,1019.1503,869.67993,3560.2173 +2414,3005,5253,5252,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,9.1794252,8.9233961,0,12,10,2.1540847,0,3,2,2021,24,9,38,37,1,9,0,26.553642,26.553642,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.19,45.28,38.52,53.3,3.333333333333333,4,2,0,0,13,2,5,1,552.5,691824.38,257033.84,191933.38,22153.811,1019.1503,869.67993,3560.2173 +2415,3006,5254,5256,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.732295,8.0817614,0,7,-3,109.87125,0,-9,-9,2021,13,0,22,22,1,2,0,14.210267,14.210267,0,0,.05,0,0,0,0,0,1,1,0,0,0,34.46,58.24,44.19,58.01,6.666666666666667,1,1,0,0,10,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2415,3006,5255,-9,5254,5256,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.7982,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2415,3006,5256,5254,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,8.6082134,8.8486576,0,7,3,-79.928139,0,-9,-9,2021,15,4,35,38,1,4,0,19.768997,19.768997,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.19,58.01,34.46,58.24,8.333333333333334,3,4,0,0,10,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2415,3006,5257,-9,5254,5256,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4985,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,1,563.75,445022.84,294158.16,425097.72,183999.89,0,13151.164,3757.7192 +2416,3007,5258,5259,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.5067143,6.81429,41,-17,-101.00571,-9,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2629623,6.6782513,50,47,54,45,7,4,2,0,0,0,11,2,1,747.5,580687.63,-42092.539,509980.75,0,0,0,2312.6753 +2416,3007,5259,5258,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,43,17,99.79052,-9,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,4.4328341,0,0,1,1,0,0,0,54,45,50,47,7,3,4,0,0,0,11,2,1,747.5,580687.63,-42092.539,509980.75,0,0,0,2312.6753 +2417,3008,5260,5261,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,0,0,7,2,0,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,45.87,38.23,0,1,1,0,0,5,7,1,1,1266.5,-110741.11,0,231219.36,144534.72,0,0,1420.6819 +2417,3008,5261,5260,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,45,-2,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.87,38.23,48.87,58.55,8.333333333333334,1,1,0,0,1,7,1,1,1266.5,-110741.11,0,231219.36,144534.72,0,0,1420.6819 +2418,3009,5262,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,8.9548979,9.1428289,0,0,-1007.059,0,2,1,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3228374,9.182333,21.95,29.66,-9,-9,1.666666666666667,1,1,0,0,0,1,5,1,978,442375.75,36113.215,87443.359,0,0,0,4725.5059 +2419,3010,5263,5264,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,0,0,0,28,3,105.65936,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,50.41,46.95,54.21,14.79,8.333333333333334,1,1,0,0,7,9,3,1,1440,523850,110630.67,418394.5,16233.59,0,0,1353.1832 +2419,3010,5264,5263,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.1886435,8.1729908,0,28,-3,-99.807739,0,1,2,2021,12,1,21,42,1,1,0,20.466219,20.466219,0,0,0,0,0,0,0,7,0,0,0,0,0,54.21,14.79,50.41,46.95,8.333333333333334,1,1,0,0,13,9,3,1,1440,523850,110630.67,418394.5,16233.59,0,0,1353.1832 +2420,3011,5265,5266,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.4721613,7.4369454,48,-2,-78.994133,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5114579,7.6085806,46.39,60.99,54.96,53.17,6.666666666666667,1,1,0,0,4,6,3,0,275.5,1653350,772275.88,698253.63,56904.82,6478.458,0,2821.5259 +2420,3011,5266,5265,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.6105757,6.5861244,48,2,-10.05744,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.890914,6.6479249,54.96,53.17,46.39,60.99,8.333333333333334,1,1,0,0,0,6,3,0,275.5,1653350,772275.88,698253.63,56904.82,6478.458,0,2821.5259 +2421,3012,5267,5268,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4179187,7.2476587,39,9,-74.707207,0,3,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.2211144,7.2496314,52.31,58.29,51.14,60.45,10,1,1,0,0,8,11,3,1,4777,1113369.3,557296.81,261322.34,0,0,0,1555.6923 +2421,3012,5268,5267,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,6.9186802,7.1228929,6.3135266,39,0,-31.371035,0,2,2,2021,8,0,40,54,1,0,0,2.4706223,2.4706223,0,0,0,0,0,0,0,0,0,0,0,3.4755478,6.1897588,51.14,60.45,52.31,58.29,8.333333333333334,1,1,0,0,7,11,3,1,4777,1113369.3,557296.81,261322.34,0,0,0,1555.6923 +2422,3013,5269,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.6835914,5.4381142,0,0,-1011.7339,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.0936922,0,1,1,0,5.4409761,5.4904637,53.88,33.91,-9,-9,10,1,1,0,0,0,7,2,1,2258,531279.88,2031.1552,166624.36,0,0,0,559.2467 +2423,3014,5270,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.7612166,6.5292525,0,0,-1104.9778,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5701656,6.8222995,58.08,40.76,-9,-9,8.333333333333334,1,1,0,0,7,8,2,1,1294,212663.09,52284.563,118016.25,0,0,0,2188.4929 +2424,3015,5271,5272,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.6265159,7.8610001,2,-1,-201.42174,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8753347,7.346664,57.74,49,54.2,57.49,10,1,1,0,0,6,8,5,1,612,5339243,1477096.1,1929663.5,0,0,0,5672.4072 +2424,3015,5272,5271,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.8308268,9.0169458,2,1,-126.87297,0,-9,-9,2021,7,0,0,15,4,0,0,0,0,0,0,0,0,0,0,1.6868391,0,1,1,0,4.1772265,8.6735077,54.2,57.49,57.74,49,8.333333333333334,1,1,0,0,7,8,5,1,612,5339243,1477096.1,1929663.5,0,0,0,5672.4072 +2425,3016,5273,5274,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.7364082,8.9079332,0,3,-5,-64.6259,0,-9,-9,2021,11,0,77,74,1,0,0,9.3471298,9.3471298,0,0,0,0,0,0,0,0,0,0,0,.99202681,0,67.34,35.11,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,2193.5,236229.83,-39194.543,163455.5,111929.84,0,135.46393,4364.1807 +2425,3016,5274,5273,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.6773214,8.5246267,0,3,5,90.578835,0,-9,-9,2021,12,0,40,77,1,0,0,15.275626,15.275626,.05,.05,0,0,0,0,0,0,0,0,0,1.6307093,0,57.06,57.76,67.34,35.11,8.333333333333334,1,1,0,0,2,4,5,1,2193.5,236229.83,-39194.543,163455.5,111929.84,0,135.46393,4364.1807 +2426,3017,5275,-9,5277,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.04761,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,768.66669,197925.86,84328.266,57226.797,35242.203,7376.9077,4121.3174,2024.6796 +2426,3017,5276,-9,5277,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.4407,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,768.66669,197925.86,84328.266,57226.797,35242.203,7376.9077,4121.3174,2024.6796 +2426,3017,5277,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.7472816,7.4755383,0,0,0,-1085.7245,0,2,1,2021,12,0,30,16,1,0,0,10.569468,10.569468,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.74,56.23,-9,-9,3.333333333333333,1,1,0,0,8,2,3,0,768.66669,197925.86,84328.266,57226.797,35242.203,7376.9077,4121.3174,2024.6796 +2427,3018,5278,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,6.5688734,6.391407,0,0,-1015.6932,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,8.1143293,22.864595,90.506248,0,1,1,0,0,6.3874111,43.44,20.91,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,1719,75660.484,40389.75,130838.77,0,0,0,1602.3506 +2428,3019,5279,-9,5282,5280,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.28107,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5280,5282,-9,-9,1,1,37,1,3,0,2,2,-9,0,3,8.3721371,8.7635479,0,8,1,-82.127388,0,-9,-9,2021,9,0,45,60,1,0,0,12.529617,12.529617,.05,.05,0,0,0,0,0,2,1,1,0,0,0,56.74,55.09,39.33,58.88,1.666666666666667,1,1,0,0,10,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5281,-9,5282,5280,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.7433,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5282,5280,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,0,0,0,8,-1,66.194023,0,3,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.33,58.88,56.74,55.09,6.666666666666667,1,1,0,0,4,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2428,3019,5283,-9,5282,5280,1,1,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-997.61902,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,3,1,520.79999,88379.016,106469.3,119285.41,57142.859,0,0,2276.0479 +2429,3020,5284,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.2597766,7.2043471,0,0,-1049.9635,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5682034,7.166976,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,4289,150903.89,3503.9219,53749.754,0,0,0,571.95709 +2430,3021,5285,5286,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.4515963,7.7486138,0,8,1,73.424538,0,-9,-9,2021,6,0,20,32,1,0,0,10.368089,10.368089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,9,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2430,3021,5286,5285,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.685873,9.6318493,0,18,-1,103.71639,0,2,3,2021,7,0,37,41,1,0,0,52.631271,52.631271,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,9,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2430,3021,5287,-9,5285,5286,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-970.86914,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2430,3021,5288,-9,5285,5286,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.7026,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,1493.5,584555.44,421674.69,311563.41,83443.477,0,0,7082.7759 +2431,3022,5289,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,0,5.7386265,5.1423907,0,0,-1079.8578,0,3,3,2021,8,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5781474,52.1,47.51,-9,-9,6.666666666666667,1,1,1,0,9,2,2,1,3825,508995.38,259944.17,0,0,0,0,925.84735 +2432,3023,5290,5291,-9,-9,1,1,61,0,0,0,2,2,-9,1,3,6.6990194,8.3609581,8.1448097,38,3,-32.495064,0,2,3,2021,9,0,14,0,1,0,0,6.137568,6.137568,.05,.05,0,0,0,0,0,42,1,1,0,4.8246841,7.6346512,53.78,33.27,41,56.99,6.666666666666667,1,1,0,0,11,10,5,1,358.5,-5026.3281,59449.383,0,0,0,7122.1191,4210.9839 +2432,3023,5291,5290,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7331257,8.3287535,7.0347509,38,-3,42.614174,0,3,2,2021,19,8,41,37,1,8,0,7.0104856,7.0104856,0,0,0,0,0,0,0,27,1,1,0,5.6118131,6.8555803,41,56.99,53.78,33.27,6.666666666666667,1,1,0,1,13,10,5,1,358.5,-5026.3281,59449.383,0,0,0,7122.1191,4210.9839 +2432,3024,5292,-9,5291,5290,1,1,21,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1088.1907,0,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.54,44.48,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1101,0,0,0,0,0,0,1290.7208 +2433,3025,5293,5294,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7825146,7.7279387,0,41,-4,1.7692227,0,2,-9,2021,7,0,26,29,1,0,0,10.247165,10.247165,0,0,0,0,0,0,0,7,0,0,0,4.3050461,0,58.32,50.22,51,48,8.333333333333334,1,1,0,0,8,10,3,1,504.5,648587.75,333330.94,302306.19,26635.221,0,0,830.42432 +2433,3025,5294,5293,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,8,4,-56.023117,0,-9,-9,2021,10,0,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51,48,58.32,50.22,7,1,1,1,0,0,10,3,1,504.5,648587.75,333330.94,302306.19,26635.221,0,0,830.42432 +2433,3026,5295,-9,5293,5294,1,1,24,0,0,0,2,2,-9,0,4,6.5889125,6.3776603,0,0,0,-1076.7754,0,2,2,2021,10,0,40,40,1,1,1,2.1172311,2.1172311,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,2,1,194,-204641.44,0,0,0,0,0,977.62469 +2434,3027,5296,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,4.670444,5.0135622,0,0,-865.08167,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4947114,4.7652397,51.3,34.81,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,235,75425.789,0,0,0,0,0,1577.6906 +2435,3028,5297,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,8.5596027,9.0021429,0,0,0,-980.31219,0,3,3,2021,13,1,46,40,1,1,0,11.361933,11.361933,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,38.88,37.91,-9,-9,5,1,1,0,1,12,6,5,1,1130,597458.5,428176.75,53360.715,87050.117,6283.5669,0,2873.115 +2435,3029,5298,-9,-9,5297,1,0,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1025.8555,-9,-9,2,2021,21,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,1.666666666666667,1,1,0,1,4,6,1,1,627,0,0,0,0,0,0,0 +2436,3030,5299,5302,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,9.8146029,9.9334974,0,26,8,-89.861908,0,2,2,2021,11,1,46,60,1,1,0,45.921215,45.921215,.05,.05,0,0,0,0,0,0,0,0,0,6.0286779,0,51.24,58.84,54.7,46.42,8.333333333333334,2,3,0,0,9,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3030,5300,-9,5302,5299,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1060.017,-9,1,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3030,5301,-9,5302,5299,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.9634,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3030,5302,5299,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4337397,8.4448051,0,6,-8,34.286125,0,3,-9,2021,8,0,40,37,1,0,0,10.895808,10.895808,.05,.05,0,0,0,0,0,0,0,0,0,7.8361249,0,54.7,46.42,51.24,58.84,8.333333333333334,4,2,0,0,5,9,5,1,1060.5,708777.81,441821.25,604059.75,361646.81,0,0,10844.768 +2436,3031,5303,-9,5302,5299,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-970.61206,-9,1,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,8.333333333333334,2,3,0,0,1,9,1,1,704,94516.398,0,0,0,4953.8018,3238.0288,-113.66741 +2437,3032,5304,-9,5305,5306,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.13647,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3032,5305,5306,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,4.8440785,4.9176264,0,10,5,-143.68283,0,3,3,2021,13,1,30,10,1,1,0,.57853365,.57853365,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.1,49.99,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3032,5306,5305,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.4111862,9.5950375,0,8,-5,.52320898,0,2,2,2021,6,0,80,72,1,0,0,21.109203,21.109203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.1,49.99,8.333333333333334,1,1,0,0,10,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3032,5307,-9,5305,5306,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.8511,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,0,651,243488.75,147067.89,247284.36,102939.8,10273.632,0,4297.4092 +2437,3033,5308,-9,5305,5306,1,1,24,0,2,0,2,2,-9,0,4,7.9280567,7.9470477,0,0,0,-968.22052,0,2,3,2021,12,0,60,0,1,0,1,6.0548706,6.0548706,0,0,0,0,0,0,0,0,1,1,0,0,0,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,0,8,4,0,181,-233117.42,0,0,0,0,0,2222.0134 +2438,3034,5309,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.2334843,8.0424137,0,0,0,-1006.5909,-9,-9,-9,2021,2,0,43,0,1,0,0,11.109848,11.109848,.05,.05,0,0,0,0,0,0,1,1,0,4.1449885,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,997,-51116.672,102769.53,0,0,0,0,1559.026 +2439,3035,5310,5311,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.0766125,8.180007,0,31,2,-119.17606,0,3,3,2021,7,0,47,59,1,0,0,7.7732291,7.7732291,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.61,52.37,60.14,41.18,8.333333333333334,1,1,0,0,10,12,3,0,1140.5,402926.44,338663.31,145407.19,38422.484,2129.6514,0,1842.0588 +2439,3035,5311,5310,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.5463343,6.4269114,0,23,-2,-30.090321,0,2,2,2021,10,0,11,16,1,0,0,6.5234423,6.5234423,0,0,0,0,0,0,0,2,0,0,0,0,0,60.14,41.18,53.61,52.37,8.333333333333334,1,1,0,0,13,12,3,0,1140.5,402926.44,338663.31,145407.19,38422.484,2129.6514,0,1842.0588 +2440,3036,5312,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.3850269,8.3232489,0,9,-4,49.06097,0,1,1,2021,11,2,45,50,1,2,0,9.3279743,9.3279743,.05,.05,0,0,0,0,0,0,0,0,0,3.1423078,0,54.2,57.49,51.73,58.82,8.333333333333334,2,3,0,0,8,10,5,1,253,209809.59,2161.8542,0,0,0,0,1650.8514 +2440,3037,5313,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.1797981,8.4683065,0,9,4,21.518749,0,-9,-9,2021,7,0,39,37,1,0,0,12.57866,12.57866,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,54.2,57.49,8.333333333333334,1,1,0,0,10,10,5,1,1769,113092.88,90786.031,33206.609,23580.061,7252.5093,0,1291.3684 +2441,3038,5314,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.5039649,6.4540668,0,0,-912.15674,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2246008,6.3266931,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,538,414205.16,10832.919,33912.766,0,0,0,1546.5208 +2442,3039,5315,5316,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,0,0,7,7,0,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.05,24.74,19.42,42.46,1.666666666666667,1,1,0,0,0,13,1,0,691.5,60584.969,-2323.5039,70160.328,53341.414,0,0,1528.3591 +2442,3039,5316,5315,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,7,-7,0,0,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,19.42,42.46,35.05,24.74,5,1,1,0,0,0,13,1,0,691.5,60584.969,-2323.5039,70160.328,53341.414,0,0,1528.3591 +2442,3040,5317,-9,5316,5315,1,0,26,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1054.9681,0,2,3,2021,18,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,55.39,-9,-9,5,1,1,0,0,3,13,1,0,90,0,0,0,0,0,0,646.87946 +2442,3041,5318,-9,5316,5315,1,0,24,0,0,0,2,2,-9,0,3,8.1686001,8.1563444,0,0,0,-945.01953,0,3,3,2021,14,2,40,50,1,2,1,10.481052,10.481052,0,0,0,0,0,0,0,2,1,1,0,0,0,36.96,59.86,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,433,-70611.359,0,0,0,0,2422.2876,505.38855 +2443,3042,5319,5320,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.7226563,8.9482098,0,2,0,-21.078217,0,1,3,2021,7,0,38,38,1,0,0,17.280506,17.280506,.05,.05,.05,0,0,0,0,0,0,0,0,2.5120037,0,51.83,57.2,46.67,38.05,8.333333333333334,1,1,0,0,10,2,5,1,1711,284196.31,304563.44,136136.97,37354.277,20603.943,6299.9141,3091.4905 +2443,3042,5320,5319,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.0580988,6.8346887,0,2,0,-11.300684,0,-9,-9,2021,16,4,20,19,1,4,0,4.4908948,4.4908948,.05,.05,0,0,0,0,0,0,0,0,0,.69399607,0,46.67,38.05,51.83,57.2,5,1,1,0,1,4,2,5,1,1711,284196.31,304563.44,136136.97,37354.277,20603.943,6299.9141,3091.4905 +2444,3043,5321,5322,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.5031347,8.2203951,6,2,95.253769,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1693687,8.3526554,60.14,46.44,43.37,57.28,10,1,1,0,0,0,8,4,1,383,1128622.3,640460.5,228857.03,0,0,0,2967.5818 +2444,3043,5322,5321,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.2158051,7.812758,6,-2,133.11362,0,2,2,2021,20,7,0,60,4,7,0,0,0,0,0,0,0,0,0,0,27,0,0,0,5.3157954,7.9780698,43.37,57.28,60.14,46.44,8.333333333333334,2,3,0,0,7,8,4,1,383,1128622.3,640460.5,228857.03,0,0,0,2967.5818 +2445,3044,5323,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.3859215,8.370965,0,0,0,-1097.9049,0,1,1,2021,17,7,40,10,1,7,0,12.639886,12.639886,0,0,0,0,0,0,0,0,0,0,0,2.2963152,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1374,-213604.05,0,0,0,26149.643,118.77258,1807.6843 +2446,3045,5324,-9,-9,-9,1,0,43,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1002.4871,0,2,2,2021,23,10,0,45,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3529866,0,25.49,31.74,-9,-9,8.333333333333334,1,1,0,0,11,12,1,1,328,90870.063,0,0,0,0,0,-1226.0138 +2447,3046,5325,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.7663898,6.1517687,0,0,-936.51794,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1930799,51,46,-9,-9,7,3,4,0,0,0,8,2,1,708,536412.88,3039.3765,391531.5,0,0,0,625.95868 +2448,3047,5326,-9,5327,5328,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1102.0167,-9,2,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,321,81433.094,0,0,0,0,0,0 +2448,3048,5327,5328,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6998277,7.6568666,0,10,-2,-41.598461,0,-9,2,2021,6,0,24,23,1,0,0,10.472964,10.472964,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.87,51.29,62.39,56.71,8.333333333333334,1,1,0,0,11,9,3,1,659,38949.82,-26282.355,0,0,1961.3428,0,1621.5582 +2448,3048,5328,5327,-9,-9,1,1,52,0,0,0,3,3,-9,0,5,0,7.4533653,7.1945529,10,2,-76.325096,0,-9,-9,2021,5,0,0,35,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.4639814,7.3068676,62.39,56.71,58.87,51.29,10,1,1,0,0,14,9,3,1,659,38949.82,-26282.355,0,0,1961.3428,0,1621.5582 +2449,3049,5329,5330,-9,-9,1,0,44,0,0,0,3,3,-9,1,1,0,0,0,21,-11,52.363075,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,19.99,33.18,54,54,1.666666666666667,1,1,0,0,0,6,2,0,407,186760.64,0,0,0,7074.8623,0,2087.1025 +2449,3049,5330,5329,-9,-9,1,1,55,0,0,0,3,3,-9,1,4,0,4.5574794,4.7859955,21,11,-29.719151,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6720252,4.2415895,54,54,19.99,33.18,8,1,1,0,0,0,6,2,0,407,186760.64,0,0,0,7074.8623,0,2087.1025 +2450,3050,5331,-9,-9,-9,1,0,20,0,0,1,1,0,-9,0,3,0,0,0,0,0,-999.78363,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.31,61.94,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,391,-33684.141,0,0,0,0,0,0 +2451,3051,5332,5333,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.6428018,6.6648064,10,2,58.406193,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6804295,55.11,47.63,58.3,52.91,8.333333333333334,1,1,0,0,12,12,5,1,440,1267760,1054934.6,326680.75,0,13682.535,8866.7598,6712.1587 +2451,3051,5333,5332,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.5306859,9.2880335,9.440876,10,-2,10.435035,0,-9,-9,2021,6,0,35,38,1,0,0,5.6046987,5.6046987,0,0,0,0,0,0,0,0,0,0,0,2.5757179,9.5131683,58.3,52.91,55.11,47.63,8.333333333333334,1,1,0,0,15,12,5,1,440,1267760,1054934.6,326680.75,0,13682.535,8866.7598,6712.1587 +2452,3052,5334,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.3328285,9.3686934,0,0,0,-1095.8947,0,2,-9,2021,0,0,38,0,1,0,0,31.970922,31.970922,.05,.05,0,0,0,0,0,0,0,0,0,1.9476162,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,5,9,5,0,1938,110399.88,47564.742,297828.13,177059.5,-2645.5496,1381.6934,3912.0129 +2453,3053,5335,-9,-9,-9,1,0,83,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1054.1503,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.73,28.09,-9,-9,5,1,1,0,0,0,12,1,0,1261,-54526.684,0,0,0,0,0,932.59027 +2453,3054,5336,-9,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.8983188,7.0933156,0,0,0,-1089.0491,0,2,-9,2021,7,0,16,0,1,0,0,8.0026979,8.0026979,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,871.5,-39542.141,0,0,0,-923.27203,0,452.84592 +2453,3054,5337,-9,5336,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.1108,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,871.5,-39542.141,0,0,0,-923.27203,0,452.84592 +2454,3055,5338,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,9.2335901,9.4993238,7.5295057,0,0,-1099.9672,0,2,1,2021,21,9,47,47,1,9,0,22.114386,22.114386,0,0,0,1,6.151557,0,44.970905,0,0,0,0,3.0900445,7.8767457,40.14,38.19,-9,-9,5,1,1,0,0,15,6,5,1,185,747627.75,420964.13,275749.72,151411.5,0,0,4128.209 +2455,3056,5339,5340,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,7.1681795,7.7712793,7,10,6.3168178,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.452652,7.3795214,55.6,39.42,54.45,41.44,8.333333333333334,1,1,0,0,0,4,2,1,242.5,303657.13,58627.172,178622.78,0,0,0,1653.7766 +2455,3056,5340,5339,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,7,-10,1.7101594,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1872816,0,54.45,41.44,55.6,39.42,10,1,1,0,0,0,4,2,1,242.5,303657.13,58627.172,178622.78,0,0,0,1653.7766 +2456,3057,5341,5342,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,6.6219182,6.3578525,67,1,-44.323826,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,14.371143,0,0,1,1,0,.39969662,6.5146432,32.82,19.15,52.73,44.5,8.333333333333334,1,1,0,0,0,1,2,1,2233,494586.09,102866.97,248534.84,0,0,0,1278.4065 +2456,3057,5342,5341,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,0,0,67,-1,-38.549416,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.132359,0,52.73,44.5,32.82,19.15,8.333333333333334,1,1,0,0,0,1,2,1,2233,494586.09,102866.97,248534.84,0,0,0,1278.4065 +2457,3058,5343,5344,-9,-9,1,1,35,1,2,0,1,1,-9,0,2,8.6477585,8.7148809,0,9,-1,-74.239769,0,2,3,2021,12,2,40,41,1,2,0,21.651922,21.651922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.85,44.59,52.43,55.57,8.333333333333334,1,1,0,0,8,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2457,3058,5344,5343,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.3696089,8.0720844,0,9,1,-32.279301,0,3,3,2021,10,2,39,32,1,2,0,9.9573145,9.9573145,.05,.05,0,0,0,0,0,0,1,1,0,3.5062001,0,52.43,55.57,44.85,44.59,8.333333333333334,1,1,0,0,11,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2457,3058,5345,-9,5344,5343,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.79913,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2457,3058,5346,-9,5344,5343,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-911.42456,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,857.5,273044.88,46870.688,289818.91,146071.28,4325.7451,0,3725.2039 +2458,3059,5347,-9,5349,5348,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-984.26361,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,6,5,1,1616.6666,1175546.3,1041533.6,147992.3,128391.3,12513.86,0,2898.6011 +2458,3059,5348,5349,-9,5350,1,1,48,0,0,0,2,2,-9,0,1,8.1726742,8.2779665,0,23,7,79.715736,0,3,3,2021,20,8,40,40,1,8,0,9.6845093,9.6845093,.05,.05,0,0,0,0,0,27,1,1,0,2.8981214,0,53.22,26.09,49,55,1.666666666666667,2,3,0,0,6,6,5,1,1616.6666,1175546.3,1041533.6,147992.3,128391.3,12513.86,0,2898.6011 +2458,3059,5349,5348,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.2230434,8.1526365,0,8,-7,152.04953,0,-9,-9,2021,11,0,40,40,1,1,0,10.663847,10.663847,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,55,53.22,26.09,7,2,3,0,0,1,6,5,1,1616.6666,1175546.3,1041533.6,147992.3,128391.3,12513.86,0,2898.6011 +2458,3060,5350,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-989.25098,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,-9,-9,8,2,3,0,0,0,6,1,1,534,72515.945,0,0,0,0,0,290.47153 +2458,3061,5351,-9,5349,5348,1,0,19,0,0,1,3,0,0,0,4,0,0,0,0,0,-986.21124,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,6,1,1,1408,-182384.28,0,0,0,0,0,0 +2459,3062,5352,-9,5353,5354,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7358,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2459,3062,5353,5354,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,8,9,-6.7543993,-9,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.52,53.2,10,1,1,0,0,0,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2459,3062,5354,5353,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.2392597,8.2305183,0,7,0,-50.423817,-9,3,-9,2021,10,0,39,0,1,1,0,10.439533,10.439533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.52,53.2,57.16,56.15,8.333333333333334,1,1,0,0,5,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2459,3062,5355,-9,5353,5354,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.50885,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1105,35443.742,-32508.33,116550.16,0,0,0,1800.3633 +2460,3063,5356,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.5588179,8.4509373,0,0,0,-1059.6433,0,3,2,2021,10,0,35,35,1,1,0,18.814127,18.814127,.05,.05,0,0,0,0,0,0,0,0,0,6.5283594,0,50,57,-9,-9,7,1,1,0,0,1,8,5,1,178,-104991.26,21529.4,0,0,0,0,2069.5913 +2460,3064,5357,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.8455706,8.8039942,0,0,0,-966.01495,0,2,2,2021,7,0,38,37,1,0,0,22.007299,22.007299,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,8,5,1,745,62884.945,161073.36,147221.42,91450.727,0,0,2391.0332 +2461,3065,5358,5360,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,8.0342693,8.0014095,0,6,1,36.55122,0,1,2,2021,20,9,40,55,1,9,0,8.3211374,8.3211374,.05,.05,0,0,0,0,0,0,1,1,0,3.369833,0,46.28,62.6,51.02,56.13,6.666666666666667,1,1,0,0,8,9,5,1,660.33331,371942.56,178617.03,253347.77,133577.13,1089.1323,0,3959.9246 +2461,3065,5359,-9,5360,5358,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.8434,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,5,1,660.33331,371942.56,178617.03,253347.77,133577.13,1089.1323,0,3959.9246 +2461,3065,5360,5358,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.7585011,8.8449173,0,6,-1,49.048668,0,2,2,2021,9,1,50,55,1,1,0,15.016976,15.016976,.05,.05,0,0,0,0,0,0,1,1,0,2.8259497,0,51.02,56.13,46.28,62.6,8.333333333333334,1,1,0,0,5,9,5,1,660.33331,371942.56,178617.03,253347.77,133577.13,1089.1323,0,3959.9246 +2462,3066,5361,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.8435946,8.5635347,0,0,0,-948.30267,0,3,1,2021,14,4,21,25,1,4,0,33.729515,33.729515,.05,.05,0,0,0,0,0,105,0,0,0,0,0,50.03,52.62,-9,-9,8.333333333333334,4,2,0,0,6,8,5,0,1404,1137004.4,831398.06,254119.95,3870.0278,0,0,2165.4045 +2463,3067,5362,5364,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.6693897,8.7353754,0,2,4,-100.64282,0,-9,-9,2021,7,0,38,49,1,0,0,22.312645,22.312645,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.51,59.08,39.93,57.19,8.333333333333334,1,1,0,0,12,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2463,3067,5363,-9,5364,5362,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.04425,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2463,3067,5364,5362,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,8.2847872,8.2957067,0,2,-4,78.118782,0,2,2,2021,15,5,37,37,1,5,0,14.985731,14.985731,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.93,57.19,47.51,59.08,6.666666666666667,1,1,0,0,12,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2463,3067,5365,-9,5364,5362,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.3334,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,388,453481.53,155864.53,370498.91,186882.17,0,0,4931.0659 +2464,3068,5366,-9,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,8.5002728,8.2426386,0,0,-1069.1824,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.9881384,0,21.009235,0,1,1,0,3.7777894,8.5620899,52,45,-9,-9,8,1,1,0,0,0,2,4,1,352,560766.56,0,172137.92,0,0,0,2849.0181 +2465,3069,5367,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.0432005,8.0650377,0,0,0,-1007.0287,0,-9,-9,2021,18,6,40,16,1,6,0,6.0855269,6.0855269,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.89,51.69,-9,-9,5,1,1,0,0,1,7,3,1,2208,-139863.59,-32361.543,80609.234,105185.55,0,1812.5238,1015.4194 +2465,3070,5368,-9,5367,-9,1,0,18,0,2,0,2,2,-9,0,4,7.2911553,7.7816205,0,0,0,-910.95367,0,2,-9,2021,10,0,40,0,1,0,1,5.2031846,5.2031846,0,0,0,0,0,0,0,0,1,1,0,4.9846444,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,7,3,1,435,0,0,0,0,0,0,709.52899 +2465,3071,5369,-9,5371,5372,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6097,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2465,3071,5370,-9,5371,5372,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5612,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2465,3071,5371,5372,5367,-9,1,0,30,0,2,0,2,2,-9,0,3,6.4096308,6.726727,0,8,-1,108.17927,0,2,2,2021,10,0,10,0,1,0,0,10.158025,10.158025,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,50,57,8.333333333333334,1,1,0,0,8,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2465,3071,5372,5371,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.8806915,8.8192797,0,8,1,78.215843,0,-9,-9,2021,10,0,48,46,1,1,0,18.493757,18.493757,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,51.66,54.88,7,1,1,0,0,1,7,4,1,712.75,91982.211,9049.6006,338467.56,118152.66,2169.1409,1714.7223,3281.6123 +2466,3072,5373,-9,5374,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6341,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,5,0,374.5,-63648.813,41001.414,248429.95,175999.59,0,996.65479,33354.094 +2466,3072,5374,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,9.7538605,9.8147449,0,0,0,-911.39227,-9,2,2,2021,10,0,6,0,1,0,0,324.90463,324.90463,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,3,4,0,0,6,8,5,0,374.5,-63648.813,41001.414,248429.95,175999.59,0,996.65479,33354.094 +2467,3073,5375,5376,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.4693341,7.5124154,32,13,-88.002487,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4832482,48.53,58.91,41.45,40.45,10,1,1,0,0,0,10,3,1,464.5,768995.88,257836.66,242443.72,0,0,0,3244.9868 +2467,3073,5376,5375,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.8129001,8.2634792,32,-13,-30.487795,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,7.1120262,7.6934347,41.45,40.45,48.53,58.91,8.333333333333334,1,1,0,0,0,10,3,1,464.5,768995.88,257836.66,242443.72,0,0,0,3244.9868 +2468,3074,5377,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.2320619,7.1022525,0,0,0,-958.78333,0,-9,-9,2021,8,1,24,40,1,1,0,6.0511184,6.0511184,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,3500,113613.61,0,0,0,0,0,670.46893 +2469,3075,5378,5379,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.523613,7.9951892,0,16,-4,-3.7069728,-9,2,2,2021,11,0,26,0,1,0,0,15.173458,15.173458,0,0,0,0,0,0,0,0,0,0,0,0,0,53.48,53.71,42.52,57.56,8.333333333333334,1,1,0,0,9,10,5,1,2902.3333,1939969.1,1108311.3,416546.34,129152.4,0,0,4792.4761 +2469,3075,5379,5378,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.1773977,9.190896,0,16,4,-44.563961,-9,2,3,2021,16,4,37,0,1,4,0,38.634705,38.634705,0,0,.05,0,0,0,0,2,0,0,0,3.9888153,0,42.52,57.56,53.48,53.71,8.333333333333334,1,1,0,0,8,10,5,1,2902.3333,1939969.1,1108311.3,416546.34,129152.4,0,0,4792.4761 +2469,3075,5380,-9,5378,5379,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1025.6746,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,10,5,1,2902.3333,1939969.1,1108311.3,416546.34,129152.4,0,0,4792.4761 +2469,3076,5381,-9,5378,5379,1,1,19,0,2,0,2,2,-9,0,3,7.0879693,7.3727303,0,0,0,-1002.2346,-9,2,1,2021,18,6,27,0,1,6,1,6.1826925,6.1826925,0,0,0,0,0,0,0,2,0,0,0,0,0,27.4,56.6,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,5622,-65454.699,-38576.613,0,0,0,0,627.97565 +2470,3077,5382,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.5215225,8.4629822,0,0,0,-976.57971,0,2,1,2021,5,0,37,37,1,0,0,15.853168,15.853168,.05,.05,0,0,0,0,0,0,0,0,0,9.6172934,0,61.69,44.41,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,770,642651,659665.94,96448.313,32965.133,0,0,7500.5996 +2471,3078,5383,5384,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,-4,113.94324,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,77.681992,0,0,1,1,0,1.4917309,0,52,45,45.02,34.56,8,1,1,0,0,0,2,2,1,1558.5,138261.75,55171.254,24437.453,0,4554.4844,0,2818.5957 +2471,3078,5384,5383,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.3263865,6.0597844,57,4,133.82448,0,3,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,1.7048008,6.409205,45.02,34.56,52,45,5,1,1,0,0,0,2,2,1,1558.5,138261.75,55171.254,24437.453,0,4554.4844,0,2818.5957 +2472,3079,5385,5386,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.9257965,7.0674777,0,10,-1,98.258003,0,3,3,2021,6,0,13,13,1,0,0,8.1802635,8.1802635,.05,.05,0,0,0,0,0,27,0,0,0,0,0,62.39,56.71,57.9,51.84,8.333333333333334,1,1,0,0,11,6,4,1,437.5,529861.81,255918.25,199692.86,0,0,0,2612.4854 +2472,3079,5386,5385,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.6295452,7.9329729,6.4646869,10,1,-7.1509056,0,3,3,2021,7,0,40,40,1,0,0,6.8778534,6.8778534,.05,.05,.05,0,0,0,0,0,0,0,0,4.9119744,6.5298777,57.9,51.84,62.39,56.71,5,1,1,0,0,11,6,4,1,437.5,529861.81,255918.25,199692.86,0,0,0,2612.4854 +2473,3080,5387,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.0581026,8.0052376,0,0,0,-975.66284,0,2,2,2021,7,0,40,40,1,0,0,6.6755114,6.6755114,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.89,34.42,-9,-9,10,1,1,0,0,15,7,3,1,241,276284.28,187851.66,0,0,0,1944.4948,383.89175 +2474,3081,5388,5389,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.7277026,7.664835,0,1,4,-59.444328,-9,-9,-9,2021,10,0,31,0,1,1,0,8.1524725,8.1524725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,60.02,56.42,7,1,1,0,0,1,13,3,1,1015.5,31096.938,72110.086,81152.953,110760.45,0,0,2203.1074 +2474,3081,5389,5388,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.0415916,7.2760954,0,1,-4,-62.450886,0,2,3,2021,2,0,39,40,1,0,0,4.6582608,4.6582608,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,49,58,10,1,1,0,0,6,13,3,1,1015.5,31096.938,72110.086,81152.953,110760.45,0,0,2203.1074 +2475,3082,5390,5391,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,13,-1,0,0,3,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.83,22.39,58.33,39.49,5,1,1,0,0,0,5,2,1,974.5,9190.6406,0,0,0,1177.4379,0,1657.2068 +2475,3082,5391,5390,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,0,0,0,14,1,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.33,39.49,25.83,22.39,5,1,1,0,1,5,5,2,1,974.5,9190.6406,0,0,0,1177.4379,0,1657.2068 +2476,3083,5392,5393,5394,-9,1,0,59,0,0,0,2,2,-9,1,2,6.9049921,7.3753529,6.328001,37,-4,-11.107375,0,3,3,2021,7,1,18,18,1,1,0,7.0949693,7.0949693,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3915043,59.86,13.39,52,47,8.333333333333334,1,1,0,0,8,1,2,1,948,101186.57,0,88358.828,0,0,0,1828.2197 +2476,3083,5393,5392,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,6,4,1.7611897,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9478202,0,52,47,59.86,13.39,7,1,1,0,0,0,1,2,1,948,101186.57,0,88358.828,0,0,0,1828.2197 +2476,3084,5394,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-883.89764,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.223001,0,53,44,-9,-9,8,4,6,0,0,0,1,1,1,366,-31089.76,0,0,0,0,0,602.85968 +2477,3085,5395,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1055.9088,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,13,1,1,611,-18346.766,0,0,0,0,-1044.4185,708.67456 +2477,3086,5396,-9,5395,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.70453,-9,3,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,13,1,1,720,119803.39,19186.914,0,0,0,-109.70539,0 +2478,3087,5397,5398,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,6.916554,7.4420199,51,-2,-32.638729,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2207696,7.0953898,60.68,42.81,37,39.88,8.333333333333334,1,1,0,0,0,9,3,1,282,841304.75,564502.13,419378.19,107418.8,0,7023.7637,2339.1128 +2478,3087,5398,5397,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.8605938,6.8545012,51,2,-41.767399,0,2,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2681079,6.3671575,37,39.88,60.68,42.81,8.333333333333334,1,1,0,0,5,9,3,1,282,841304.75,564502.13,419378.19,107418.8,0,7023.7637,2339.1128 +2478,3088,5399,-9,5398,5397,1,1,46,0,0,0,2,2,-9,0,4,7.9498343,7.8205967,0,0,0,-1077.4281,0,2,2,2021,10,0,41,41,1,1,0,8.0100336,8.0100336,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,13,9,4,1,442,-25109.924,-14656.815,0,0,0,0,1134.1111 +2479,3089,5400,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-987.31525,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,13.188727,28.932426,123.80438,0,1,1,0,0,0,30.85,17.26,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,859,-94926.516,0,0,0,0,4286.7051,1537.2278 +2480,3090,5401,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.2338629,8.2672262,0,0,0,-909.0509,0,2,2,2021,13,3,37,34,1,3,0,11.502192,11.502192,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.05,43.1,-9,-9,3.333333333333333,1,1,0,0,10,5,4,0,738,129026.02,-16920.502,121443.56,0,0,0,1527.2368 +2480,3091,5402,-9,5401,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-970.72742,1,2,-9,2021,12,0,0,38,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,58,-9,-9,7,1,1,0,0,0,5,1,0,642,76867.211,0,0,0,0,0,-781.84344 +2481,3092,5403,5404,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,41,0,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8361473,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,5,1,1,859.5,1752780.1,817222.06,672599.5,0,0,0,215.93599 +2481,3092,5404,5403,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,7,0,0,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5624914,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,5,1,1,859.5,1752780.1,817222.06,672599.5,0,0,0,215.93599 +2482,3093,5405,5406,-9,-9,1,0,53,0,0,0,2,2,-9,0,1,7.4455571,7.5683899,0,36,-10,33.045204,0,3,3,2021,18,5,37,37,1,5,0,5.4872718,5.4872718,0,0,0,0,0,0,0,2,0,0,0,0,0,46.66,34,57.57,49.69,5,3,4,0,0,8,10,4,1,895.5,711848.63,322922.63,238019.83,0,0,0,2249.9492 +2482,3093,5406,5405,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.7694964,8.1227589,6.325038,7,10,54.210728,0,-9,-9,2021,10,0,40,37,1,0,0,8.0202036,8.0202036,0,0,0,0,0,0,0,0,0,0,0,0,6.779676,57.57,49.69,46.66,34,6.666666666666667,3,4,0,0,6,10,4,1,895.5,711848.63,322922.63,238019.83,0,0,0,2249.9492 +2483,3094,5407,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.3973737,7.313314,4.1746531,0,0,-999.95544,0,2,2,2021,7,0,30,20,1,0,0,6.2178907,6.2178907,.05,.05,0,0,0,0,0,0,0,0,0,0,3.9294245,62.98,30.79,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,1255,212834.69,120565.08,0,0,0,1350.2042,663.05853 +2484,3095,5408,5409,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,36,6,-94.900513,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8565805,0,58.23,43.46,48.44,29.66,8.333333333333334,1,1,0,0,8,2,2,1,1344,361541.94,245139.41,70465.633,0,0,0,1961.2174 +2484,3095,5409,5408,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,7.4686384,7.4842281,36,-6,-19.156874,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5138102,7.3740563,48.44,29.66,58.23,43.46,8.333333333333334,1,1,0,0,0,2,2,1,1344,361541.94,245139.41,70465.633,0,0,0,1961.2174 +2485,3096,5410,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,7.5463185,7.6655011,0,0,-1028.0393,-9,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6065369,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,1216,45489.711,72526.25,0,0,0,0,773.96057 +2486,3097,5411,5412,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.0094099,5.0400944,10,-2,-61.908028,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7605121,4.7588778,45.94,42.51,48.79,51.9,8.333333333333334,1,1,0,0,8,11,2,1,1223.5,432611.69,255401.25,130182.08,0,2613.8379,0,2239.0186 +2486,3097,5412,5411,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6987371,6.7248721,10,2,94.73407,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.123103,6.8369999,48.79,51.9,45.94,42.51,8.333333333333334,1,1,0,0,0,11,2,1,1223.5,432611.69,255401.25,130182.08,0,2613.8379,0,2239.0186 +2487,3098,5413,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.0689659,7.8823428,0,0,-1078.9603,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7384129,8.1650848,53.22,50.02,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,917,887711.5,655939.19,0,0,0,0,3076.5857 +2488,3099,5414,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.6052761,6.4447451,0,0,-1063.1879,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4673452,6.5776873,49.92,34.09,-9,-9,5,1,1,0,0,7,8,2,1,314,251508.66,114983.27,286893.25,0,0,0,1090.7311 +2489,3100,5415,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.7408524,7.3464837,0,0,-1101.1797,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1872854,7.4359632,36.14,59.14,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1577,647935.56,149633.42,303296.66,0,0,0,2169.7974 +2490,3101,5416,5419,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.1783915,7.8002615,0,20,0,-12.564358,0,1,1,2021,9,0,24,20,1,0,0,15.495244,15.495244,.05,.05,.05,0,0,0,0,0,1,1,0,8.0847664,0,59.46,46.99,25.9,58.76,8.333333333333334,1,1,0,0,12,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2490,3101,5417,-9,5419,5416,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1050.0713,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2490,3101,5418,-9,5419,5416,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.62341,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2490,3101,5419,5416,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.6115675,7.3213592,0,19,0,-48.09137,0,3,3,2021,24,11,8,16,1,11,0,30.338272,30.338272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.9,58.76,59.46,46.99,5,1,1,0,0,11,9,3,1,455.25,1329200.3,789893.75,687299.5,177560.06,0,0,3287.563 +2491,3102,5420,-9,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,9.8379211,9.5965014,0,0,0,-1147.1979,0,2,3,2021,4,0,60,70,1,0,0,28.018219,28.018219,.05,.05,0,0,0,0,0,0,1,1,0,9.5675039,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,556,32804.457,-31941.594,0,0,0,0,9981.4199 +2491,3102,5421,-9,5422,5420,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-946.73065,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,2,5,1,556,32804.457,-31941.594,0,0,0,0,9981.4199 +2491,3103,5422,-9,-9,5420,1,0,43,0,1,0,1,1,-9,0,4,8.3160868,8.2874384,0,0,0,-1097.5099,-9,-9,2,2021,20,8,42,0,1,8,0,10.512147,10.512147,0,0,0,0,0,0,0,0,1,1,0,0,0,42.54,56.27,-9,-9,6.666666666666667,1,1,0,0,2,2,3,1,370,211367.73,67943.742,123635.98,38710.633,6382.6162,0,1636.7467 +2492,3104,5423,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.2134228,8.1449127,0,0,-884.54156,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9158802,8.2190866,46.08,57.2,-9,-9,3.333333333333333,1,1,0,0,0,5,4,1,318,661729.13,0,358175.88,0,0,0,3015.9185 +2493,3105,5424,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,5.4030828,5.2681313,0,0,-959.14124,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.030386,54.4,30.85,-9,-9,5,1,1,0,0,0,2,2,0,2774,-205613.81,182629.83,0,0,0,2140.2896,1148.0242 +2494,3106,5425,-9,5426,-9,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1111.2563,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,3,4,-9,0,0,7,4,0,1531,1079240.9,232473.53,649513.88,0,2822.2236,0,1956.8571 +2494,3106,5426,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.5223265,8.3568859,0,0,0,-976.9765,0,2,2,2021,3,0,37,37,1,0,0,15.6345,15.6345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,3,4,0,0,12,7,4,0,1531,1079240.9,232473.53,649513.88,0,2822.2236,0,1956.8571 +2495,3107,5427,5428,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.1053524,9.4080124,0,32,-3,60.697086,-9,2,2,2021,11,2,44,0,1,2,0,26.542496,26.542496,.05,.05,0,0,0,0,0,0,0,0,0,6.3126535,0,44.11,55.31,43,39,3.333333333333333,1,1,0,0,11,1,5,1,534,650642.81,314957.13,307165.19,98340.594,0,-111.15233,3188.2546 +2495,3107,5428,5427,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,0,0,0,30,3,-9.9498339,-9,3,2,2021,13,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,39,44.11,55.31,8.333333333333334,1,1,1,0,6,1,5,1,534,650642.81,314957.13,307165.19,98340.594,0,-111.15233,3188.2546 +2496,3108,5429,5430,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,12,-5,-119.84392,0,-9,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,33.268562,0,0,1,1,0,0,0,49.07,28.86,60.02,56.42,8.333333333333334,1,1,0,0,0,10,2,0,683,346560.84,0,306881.22,0,4533.4854,0,1406.7042 +2496,3108,5430,5429,-9,-9,1,1,88,0,0,0,3,3,-9,0,5,0,4.6463122,4.9122028,66,5,-109.71106,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.9155588,5.2014713,60.02,56.42,49.07,28.86,10,1,1,0,0,0,10,2,0,683,346560.84,0,306881.22,0,4533.4854,0,1406.7042 +2497,3109,5431,5432,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,5.7221818,5.4253731,9,0,-6.1331997,0,2,2,2021,21,9,0,0,4,9,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,5.2772231,5.7326756,37.53,42.19,40.64,52.96,1.666666666666667,1,1,0,1,10,7,3,1,525.5,684595.25,209552.84,337261.13,0,8290.1846,0,1980.5676 +2497,3109,5432,5431,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9702468,7.9909282,9,0,45.311001,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9518342,40.64,52.96,37.53,42.19,5,1,1,0,0,2,7,3,1,525.5,684595.25,209552.84,337261.13,0,8290.1846,0,1980.5676 +2498,3110,5433,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.3410254,8.0232134,0,0,0,-1099.7096,0,1,1,2021,8,0,37,37,1,0,0,16.78179,16.78179,.05,.05,0,0,0,0,0,0,0,0,0,1.2367393,0,52.97,53.97,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,621,1011812.4,826489.5,270103.63,190098.41,0,0,1191.9902 +2499,3111,5434,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.1629019,8.528821,0,0,0,-929.64758,0,3,3,2021,12,0,55,50,1,0,0,10.720745,10.720745,0,0,0,0,0,0,0,0,1,1,0,0,0,46.73,57.01,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,524,-37179.293,38919.387,0,0,0,0,2542.5271 +2499,3112,5435,-9,-9,5434,1,1,23,0,0,0,2,2,-9,0,5,8.0445337,8.3478107,0,0,0,-985.58472,0,-9,-9,2021,13,1,43,70,1,1,1,9.84869,9.84869,0,0,0,0,0,0,0,0,1,1,0,0,0,57.04,57.78,-9,-9,10,1,1,0,0,8,5,4,1,2970,180035.14,0,0,0,2847.2512,0,619.82458 +2499,3113,5436,-9,-9,5434,1,0,19,0,0,0,2,2,1,0,4,6.9979725,7.0485301,0,0,0,-1141.9915,-9,-9,-9,2021,12,0,16,0,1,0,1,7.7177186,7.7177186,0,0,0,0,0,0,0,0,1,1,0,0,0,64.67,33.62,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,465,-154508.27,0,0,0,0,0,746.21521 +2500,3114,5437,-9,-9,-9,1,1,90,0,0,0,1,1,-9,0,5,0,7.6897798,7.6211014,0,0,-959.77576,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7220898,46.22,38.1,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,748,237963.86,32212.395,0,0,0,0,2111.5215 +2501,3115,5438,5439,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.4735031,8.7509871,38,3,-3.2953036,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.2538733,8.3763018,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,5,6,5,1,1046.5,1961197.1,1181461.8,650333.63,215600.58,0,46917.699,7998.7563 +2501,3115,5439,5438,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.5520859,9.6840639,6.3711123,38,-3,47.031006,0,3,3,2021,5,0,30,25,1,0,0,54.829277,54.829277,.05,.05,0,0,0,0,0,0,0,0,0,0,6.2329583,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,7,6,5,1,1046.5,1961197.1,1181461.8,650333.63,215600.58,0,46917.699,7998.7563 +2501,3116,5440,-9,5438,5439,1,0,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1089.5374,-9,1,1,2021,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.7559168,0,52.13,57.22,-9,-9,3.333333333333333,1,1,1,0,0,6,1,1,347,37538.363,0,0,0,0,0,1230.1168 +2502,3117,5441,5442,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.9423094,8.1154127,0,6,0,-61.439693,0,-9,-9,2021,8,0,41,41,1,0,0,7.8281813,7.8281813,.05,.05,0,0,0,0,0,0,0,0,0,1.9727628,0,54.2,57.49,52.55,44.88,6.666666666666667,1,1,0,0,5,10,4,1,2289,181230.66,76342.281,214613.72,117048.83,0,1217.4796,3203.3906 +2502,3117,5442,5441,-9,-9,1,0,28,0,0,0,3,3,-9,0,3,7.7810092,7.8516774,0,6,0,13.211601,0,-9,-9,2021,12,1,41,45,1,1,0,7.1266284,7.1266284,.05,.05,0,0,0,0,0,0,0,0,0,6.7651095,0,52.55,44.88,54.2,57.49,8.333333333333334,1,1,0,0,7,10,4,1,2289,181230.66,76342.281,214613.72,117048.83,0,1217.4796,3203.3906 +2503,3118,5443,5444,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,4.612134,4.659081,0,42,-3,-5.4072328,0,3,3,2021,11,0,15,15,1,0,0,.80826056,.80826056,0,0,0,1,0,0,0,0,1,1,0,0,0,49.05,50.32,44.94,49.91,3.333333333333333,1,1,0,0,14,10,2,1,516,662419.38,265962.03,323300.28,0,0,525.20294,2929.0278 +2503,3118,5444,5443,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.0715814,6.9225163,42,3,14.873716,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3652095,7.2591257,44.94,49.91,49.05,50.32,3.333333333333333,1,1,0,0,9,10,2,1,516,662419.38,265962.03,323300.28,0,0,525.20294,2929.0278 +2504,3119,5445,5446,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.6237688,7.490613,58,-3,-27.693562,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6464801,7.7571344,62.98,30.79,52.98,8.6,6.666666666666667,1,1,0,0,0,8,3,1,1723,1238893.8,166042.66,917071.75,0,0,0,2043.9143 +2504,3119,5446,5445,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,0,0,58,3,-68.476448,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.98,8.6,62.98,30.79,3.333333333333333,1,1,0,0,0,8,3,1,1723,1238893.8,166042.66,917071.75,0,0,0,2043.9143 +2505,3120,5447,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.9996042,7.8599367,0,0,0,-1005.2326,0,3,2,2021,0,0,18,10,1,0,0,18.978386,18.978386,.05,.05,0,0,0,0,0,0,0,0,0,3.6307321,0,59.43,58.05,-9,-9,10,1,1,0,0,9,7,4,1,875,-91551.609,74851.188,0,0,-58.854763,1017.9954,1662.9227 +2506,3121,5448,5449,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,53,-3,7.0726781,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4792318,0,0,1,1,0,0,0,62.51,37.27,60.12,54.8,10,1,1,0,0,0,10,2,1,775,-22631.895,57193.57,0,0,0,0,1670.8988 +2506,3121,5449,5448,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.773243,6.220717,53,3,-19.476534,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2714701,6.8209195,60.12,54.8,62.51,37.27,10,1,1,0,0,0,10,2,1,775,-22631.895,57193.57,0,0,0,0,1670.8988 +2507,3122,5450,5451,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8737278,8.518219,5.2239256,2,-2,32.979099,0,2,3,2021,11,2,35,35,1,2,0,16.058111,16.058111,.05,.05,0,0,0,0,0,7,1,1,0,0,5.2753673,39.77,51.85,48.28,33.75,8.333333333333334,1,1,0,0,12,12,5,1,711.5,1512891.6,1236213.8,208860.13,41201.938,0,0,4892.5396 +2507,3122,5451,5450,-9,-9,1,1,57,0,0,0,2,2,-9,1,2,8.1592321,8.4857788,7.8259115,2,2,-68.84417,0,3,3,2021,12,2,40,40,1,2,0,9.8616791,9.8616791,.05,.05,0,0,0,0,0,0,1,1,0,6.8883433,8.4159203,48.28,33.75,39.77,51.85,5,1,1,0,0,11,12,5,1,711.5,1512891.6,1236213.8,208860.13,41201.938,0,0,4892.5396 +2508,3123,5452,-9,5456,5454,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-927.59949,-9,3,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5453,-9,5456,5454,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.6405,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5454,5456,-9,-9,1,1,27,1,3,0,3,3,-9,0,3,8.2010717,8.2619514,0,1,0,23.909109,-9,2,-9,2021,17,6,50,0,1,6,0,8.9632282,8.9632282,0,0,0,0,0,0,0,0,1,1,0,0,0,39.95,38.09,47.35,62.06,10,1,1,0,0,3,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5455,-9,5456,5454,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.533,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2508,3123,5456,5454,-9,-9,1,0,27,1,3,0,3,3,-9,0,5,0,0,0,1,0,52.102009,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.35,62.06,39.95,38.09,10,1,1,0,0,0,11,3,0,2085,94634.813,20512.539,129196.92,24117.014,0,0,2304.0884 +2509,3124,5457,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.3951025,8.5002728,0,0,0,-1102.2118,0,-9,3,2021,18,7,60,50,1,7,0,8.8103943,8.8103943,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.18,25.97,-9,-9,3.333333333333333,1,1,0,0,10,4,4,0,403,239995.73,187114.2,0,0,0,679.89264,1816.562 +2510,3125,5458,5459,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,31,3,0,0,-9,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.038914323,0,30.01,20.17,38.43,38.05,3.333333333333333,1,1,0,0,0,7,1,0,95.5,89541.336,-21597.504,0,0,1335.6409,0,2286.6873 +2510,3125,5459,5458,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,31,-3,0,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,38.43,38.05,30.01,20.17,3.333333333333333,1,1,0,1,0,7,1,0,95.5,89541.336,-21597.504,0,0,1335.6409,0,2286.6873 +2511,3126,5460,-9,5461,5462,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1105.0734,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2511,3126,5461,5462,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.563385,7.4889541,0,21,2,177.49762,0,2,2,2021,7,0,17,17,1,0,0,10.573537,10.573537,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.75,45.86,8.333333333333334,1,1,0,0,8,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2511,3126,5462,5461,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.4657907,8.2774115,0,22,-2,103.6602,0,1,2,2021,13,1,53,40,1,1,0,10.606779,10.606779,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.75,45.86,57.06,57.76,5,1,1,0,0,8,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2511,3126,5463,-9,5461,5462,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.96576,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,837.5,1363093.1,860022.63,342060.97,43150.469,0,0,2401.9248 +2512,3127,5464,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,7.9898429,8.1646423,0,0,0,-990.05457,0,2,2,2021,9,0,37,35,1,0,0,9.2494698,9.2494698,0,0,0,0,0,0,0,0,0,0,0,4.5766187,0,44.36,54.04,-9,-9,6.666666666666667,1,1,0,0,4,9,4,0,451,-20410.139,0,0,0,0,0,633.11957 +2513,3128,5465,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.9954782,8.2860737,0,0,0,-994.93738,0,2,1,2021,11,0,38,35,1,0,0,11.501328,11.501328,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.38,42.58,-9,-9,5,4,2,0,0,12,8,4,1,557,1028313.1,588905.31,432133.06,39678.523,3529.354,3619.4832,1976.3744 +2514,3129,5466,5467,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,8.9633436,8.6435452,0,14,1,103.27747,0,2,2,2021,22,9,40,45,1,9,0,15.118512,15.118512,.05,.05,0,0,0,0,0,0,1,1,0,1.857233,0,33.4,59.23,54.79,55.86,6.666666666666667,1,1,0,0,8,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2514,3129,5467,5466,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.2959261,8.1873579,0,14,-1,-42.833359,0,1,2,2021,11,0,23,38,1,0,0,18.18755,18.18755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,33.4,59.23,8.333333333333334,1,1,0,0,9,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2514,3129,5468,-9,5467,5466,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.2697,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2514,3129,5469,-9,5467,5466,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.64783,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1190.25,544103.88,663863.75,312166.66,164399.22,0,5053.6206,3723.8779 +2515,3130,5470,-9,5471,5472,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-956.99573,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,4,1,777,38628.199,29406.971,129765.38,104621.66,0,0,3459.2332 +2515,3130,5471,5472,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.5956202,8.1681376,0,12,-18,-122.19555,-9,2,2,2021,7,0,34,0,1,0,0,16.130728,16.130728,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,50,49,10,1,1,0,0,7,1,4,1,777,38628.199,29406.971,129765.38,104621.66,0,0,3459.2332 +2515,3130,5472,5471,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,7.8406496,7.8130331,0,1,18,5.7867179,-9,3,3,2021,12,0,51,0,1,0,0,6.9585624,6.9585624,0,0,0,0,0,0,0,0,1,1,0,.76794827,0,50,49,58.15,52.91,5,1,1,0,0,11,1,4,1,777,38628.199,29406.971,129765.38,104621.66,0,0,3459.2332 +2516,3131,5473,5474,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0368309,8.1714268,6.5809355,2,-6,-18.822563,0,-9,-9,2021,11,0,40,38,1,0,0,6.8127213,6.8127213,0,0,0,0,0,0,0,0,1,1,0,6.2517915,6.8589635,53.92,52.23,33.65,51.05,8.333333333333334,1,1,0,0,1,10,4,1,755.5,141771.95,96048.727,0,0,0,0,3493.8215 +2516,3131,5474,5473,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,8.0768414,7.9365821,2,6,150.37375,0,2,2,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.5906677,7.9323173,33.65,51.05,53.92,52.23,3.333333333333333,1,1,0,0,12,10,4,1,755.5,141771.95,96048.727,0,0,0,0,3493.8215 +2517,3132,5475,5476,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,8.2887239,8.3560696,33,-1,41.34433,0,2,2,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,2.6566286,8.0851765,49.77,33.09,50.54,52.37,5,1,1,0,0,9,9,4,1,376,345140.91,143130.3,0,0,0,-218.88046,3102.6772 +2517,3132,5476,5475,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.5587687,7.6162481,0,33,1,76.50843,0,2,2,2021,19,7,30,20,1,7,0,7.7064767,7.7064767,.05,.05,0,0,0,0,0,2,0,0,0,2.6448288,0,50.54,52.37,49.77,33.09,8.333333333333334,1,1,0,0,13,9,4,1,376,345140.91,143130.3,0,0,0,-218.88046,3102.6772 +2518,3133,5477,5478,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,0,0,0,22,0,47.046684,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.85,40.9,57.06,57.76,8.333333333333334,2,3,0,0,0,4,4,0,562,296469.06,321790.13,119615.01,57925.945,14089.089,0,3256.4241 +2518,3133,5478,5477,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.8727894,9.0731878,0,22,0,-5.4734402,0,3,2,2021,5,0,60,50,1,0,0,15.072146,15.072146,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,63.85,40.9,8.333333333333334,2,3,0,0,7,4,4,0,562,296469.06,321790.13,119615.01,57925.945,14089.089,0,3256.4241 +2518,3133,5479,-9,5477,5478,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1007.7493,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,4,4,0,562,296469.06,321790.13,119615.01,57925.945,14089.089,0,3256.4241 +2519,3134,5480,-9,5481,5483,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-811.04144,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2519,3134,5481,5483,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.6436071,8.5580435,0,13,-1,10.943327,0,2,1,2021,11,0,50,36,1,0,0,9.7340384,9.7340384,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,49.63,54.22,8.333333333333334,1,1,0,0,10,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2519,3134,5482,-9,5481,5483,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.2108,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2519,3134,5483,5481,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.754035,8.8842564,0,13,1,71.447472,0,2,3,2021,11,0,40,42,1,0,0,18.137461,18.137461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,44.02,60.7,6.666666666666667,1,1,0,0,9,7,5,1,881.25,134319.91,138784.41,249231.94,164334.28,22649.328,7740.5742,4521.1309 +2520,3135,5484,5485,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.2208099,9.3996334,0,10,1,-8.2701883,0,-9,-9,2021,7,0,33,29,1,0,0,31.872644,31.872644,0,0,0,0,0,0,0,0,0,0,0,7.5115471,0,52.63,50.07,54.2,57.49,3.333333333333333,1,1,0,0,14,8,5,1,432.5,160056.02,0,253464.53,0,0,0,12395.914 +2520,3135,5485,5484,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,9.6622133,9.6876507,0,24,-1,-.7009263,0,3,2,2021,9,0,25,-9,1,0,0,62.630318,62.630318,0,0,0,0,0,0,0,0,0,0,0,7.4266019,0,54.2,57.49,52.63,50.07,8.333333333333334,2,3,0,0,13,8,5,1,432.5,160056.02,0,253464.53,0,0,0,12395.914 +2521,3136,5486,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.1761084,8.3106546,0,0,0,-967.06561,0,-9,3,2021,6,0,41,37,1,0,0,10.24019,10.24019,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,12,10,4,0,290,406235.13,24169.391,140264.41,38004.629,0,0,1285.5725 +2522,3137,5487,5488,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,8.4370413,8.1195917,51,-5,-61.417458,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0026512,40.54,31.39,52.48,34.94,5,1,1,0,0,0,8,5,1,508,1918035,1485904.8,483856.72,78808.375,0,0,6894.9321 +2522,3137,5488,5487,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.9082527,9.0512161,51,5,48.788479,0,2,1,2021,8,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,2.2002649,8.6079226,52.48,34.94,40.54,31.39,8.333333333333334,2,3,0,0,0,8,5,1,508,1918035,1485904.8,483856.72,78808.375,0,0,6894.9321 +2523,3138,5489,5490,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.7005644,8.8268442,0,27,-1,-168.99649,0,3,3,2021,12,1,42,40,1,1,0,15.295612,15.295612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.33,59.49,53,55,6.666666666666667,1,1,0,0,11,13,5,1,3633,736454.25,83987,426255.81,0,0,0,5321.4507 +2523,3138,5490,5489,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.102417,9.2194071,0,27,1,-109.71513,0,3,3,2021,9,0,40,40,1,1,0,18.220045,18.220045,.05,.05,0,0,0,0,0,0,0,0,0,3.7268202,0,53,55,32.33,59.49,8,1,1,0,0,1,13,5,1,3633,736454.25,83987,426255.81,0,0,0,5321.4507 +2523,3139,5491,-9,5489,5490,1,0,22,0,0,0,2,2,-9,0,4,7.9403429,8.0758505,0,0,0,-1009.6199,0,1,1,2021,12,0,40,35,1,2,1,9.1346836,9.1346836,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,4,1,1453,95173.898,0,0,0,0,1089.6586,982.22595 +2524,3140,5492,5493,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.7744322,8.4527121,0,7,3,-46.765491,0,-9,-9,2021,11,0,43,44,1,0,0,18.835024,18.835024,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47,57,5,1,1,0,0,15,1,5,1,519.5,479562.69,271032.88,273575.72,102058.03,0,0,3420.7031 +2524,3140,5493,5492,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.3002577,8.3455286,0,7,-3,-73.525658,0,-9,-9,2021,26,10,38,-9,1,10,0,7.7877612,7.7877612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,57,52,54.51,10,1,1,0,0,13,1,5,1,519.5,479562.69,271032.88,273575.72,102058.03,0,0,3420.7031 +2525,3141,5494,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-981.3559,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.25848085,0,32.48,51.46,-9,-9,8.333333333333334,1,1,0,0,8,11,1,1,140,70461.109,0,125237.27,0,-385.25772,0,-10.608955 +2526,3142,5495,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1104.5538,0,3,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,18.91,-9,-9,5,1,1,0,0,0,12,1,0,100,-35419.242,0,0,0,0,0,610.74963 +2527,3143,5496,-9,5497,5498,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.67065,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,1033.6666,1294242.3,851489.25,262564.59,0,0,0,2986.9202 +2527,3143,5497,5498,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.5871143,8.5557499,0,7,-15,-83.941811,0,-9,-9,2021,11,1,38,38,1,1,0,17.971874,17.971874,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,45.91,59.89,6.666666666666667,1,1,0,0,4,8,4,0,1033.6666,1294242.3,851489.25,262564.59,0,0,0,2986.9202 +2527,3143,5498,5497,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,7.4299059,7.4188633,0,7,15,-14.442019,0,3,3,2021,4,0,24,8,1,0,0,7.836319,7.836319,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,54.2,57.49,6.666666666666667,3,4,0,0,9,8,4,0,1033.6666,1294242.3,851489.25,262564.59,0,0,0,2986.9202 +2528,3144,5499,-9,5502,5500,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-847.56348,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2528,3144,5500,5502,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.795393,8.8430605,0,9,0,71.114548,0,-9,-9,2021,9,0,45,40,1,0,0,14.688192,14.688192,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.9,51.28,54.1,59.11,6.666666666666667,1,1,0,0,10,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2528,3144,5501,-9,5502,5500,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.59534,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2528,3144,5502,5500,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.1408691,8.1837187,0,20,0,197.46181,0,3,3,2021,9,0,30,30,1,0,0,12.67744,12.67744,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.9,51.28,8.333333333333334,1,1,0,0,10,13,4,1,656,455864.81,54767.121,389820.13,151482.72,1495.9838,0,3314.8608 +2529,3145,5503,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.2429795,6.396605,0,0,-1113.942,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,5.996839,11.345615,57.8092,0,1,1,0,0,6.1602039,61.79,16.18,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,2051,379224.94,-29812.82,88174.227,0,0,0,2037.6129 +2530,3146,5504,5505,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.6802421,7.6626587,0,13,1,180.21265,0,2,3,2021,9,0,40,52,1,0,0,5.0174704,5.0174704,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,46.91,51.8,3.333333333333333,4,2,0,0,10,8,5,1,317.5,946708.25,115511.13,618832.13,58531.586,0,0,5677.6973 +2530,3146,5505,5504,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.8436804,9.6338902,0,13,-1,131.78708,0,2,3,2021,10,0,48,52,1,0,0,38.51889,38.51889,.05,.05,0,0,0,0,0,0,0,0,0,4.2947278,0,46.91,51.8,48.87,58.55,6.666666666666667,4,5,0,0,14,8,5,1,317.5,946708.25,115511.13,618832.13,58531.586,0,0,5677.6973 +2531,3147,5506,-9,5508,5507,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.72229,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,2285.3333,393462.81,65132.859,392923.63,53256.008,0,0,2922.4543 +2531,3147,5507,5508,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,8.0061674,8.3941317,0,6,10,-38.349934,0,-9,-9,2021,15,3,35,35,1,3,0,13.673184,13.673184,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.23,55.6,57.16,56.15,8.333333333333334,1,1,0,0,5,7,4,1,2285.3333,393462.81,65132.859,392923.63,53256.008,0,0,2922.4543 +2531,3147,5508,5507,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.879169,8.0259733,5.0872493,6,-10,80.613052,0,2,3,2021,1,0,30,30,1,0,0,13.810213,13.810213,0,0,0,0,0,0,0,0,1,1,0,5.0024533,0,57.16,56.15,52.23,55.6,5,1,1,0,0,5,7,4,1,2285.3333,393462.81,65132.859,392923.63,53256.008,0,0,2922.4543 +2532,3148,5509,5510,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.2362537,8.1837683,0,6,-2,-177.53802,0,-9,-9,2021,10,0,37,40,1,1,0,9.7559195,9.7559195,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,44.2,34.95,7,2,3,0,0,1,7,5,1,408,242751.69,103718.79,248496.38,59861.25,0,0,3410.7739 +2532,3148,5510,5509,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.4944582,8.6872921,0,15,2,49.199707,0,2,1,2021,11,2,38,37,1,2,0,15.899014,15.899014,0,0,0,0,0,0,0,0,1,1,0,2.1104434,0,44.2,34.95,51,56,1.666666666666667,2,3,0,0,8,7,5,1,408,242751.69,103718.79,248496.38,59861.25,0,0,3410.7739 +2532,3148,5511,-9,5510,5509,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.15942,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,5,1,408,242751.69,103718.79,248496.38,59861.25,0,0,3410.7739 +2533,3149,5512,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.7763309,8.896307,0,0,0,-936.48596,0,-9,-9,2021,10,0,42,41,1,0,0,14.4851,14.4851,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,600,61637.711,199329.11,0,0,0,0,1870.692 +2534,3150,5513,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.0485816,7.3758316,5.220789,0,0,-1064.6558,0,3,3,2021,10,1,22,20,1,1,0,8.0112648,8.0112648,.05,.05,0,0,0,0,0,0,1,1,0,0,5.3975525,55.84,49.8,-9,-9,6.666666666666667,1,1,0,0,9,6,3,1,81,12817.146,-12857.377,203928.45,0,6036.5342,0,-176.83755 +2535,3151,5514,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.0568218,6.6694994,0,0,-994.16437,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9300156,54.69,57.47,-9,-9,10,1,1,0,0,0,11,2,1,496,321414.41,161023.53,176908.75,0,0,0,1291.0267 +2536,3152,5515,5516,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,34,7,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,26.88,24.2,6.666666666666667,1,1,0,0,12,9,1,1,773.5,272924.34,0,228472.31,0,0,0,0 +2536,3152,5516,5515,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,34,-7,0,0,3,3,2021,23,10,0,40,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.88,24.2,54.2,57.49,3.333333333333333,1,1,0,1,15,9,1,1,773.5,272924.34,0,228472.31,0,0,0,0 +2537,3153,5517,5518,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,6.7092505,7.0389104,0,8,-15,-93.105774,0,2,2,2021,21,8,16,20,1,8,0,5.9739566,5.9739566,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.22,60.91,54.79,55.86,8.333333333333334,1,1,0,0,8,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2537,3153,5518,5517,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,8.8031988,8.3637972,0,8,15,2.6858985,0,-9,-9,2021,11,3,56,84,1,3,0,13.352399,13.352399,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,27.22,60.91,6.666666666666667,1,1,0,0,8,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2537,3153,5519,-9,5517,5518,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.6066,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2537,3153,5520,-9,5517,5518,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.3656,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,513,224244.66,88989.109,161907.78,84923.414,0,0,1912.6665 +2538,3154,5521,5524,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,7.4966946,7.472034,0,7,1,41.150711,0,3,2,2021,6,0,40,40,1,0,0,5.5252061,5.5252061,.05,.05,0,0,0,0,0,0,1,1,0,6.479351,0,62.39,56.71,49,56,8.333333333333334,1,1,0,0,8,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2538,3154,5522,-9,5524,5521,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.98029,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2538,3154,5523,-9,5524,5521,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.77515,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2538,3154,5524,5521,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.3875337,7.4455733,0,7,-1,27.461887,0,1,2,2021,11,0,25,23,1,1,0,6.4076843,6.4076843,0,0,0,0,0,0,0,0,1,1,0,6.7826147,0,49,56,62.39,56.71,7,1,1,0,0,3,12,3,1,334,54547.121,52230.875,0,0,0,0,2228.2744 +2539,3155,5525,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,7.4007406,7.6005712,0,0,-1051.1422,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,4.751915,0,48.878448,0,1,1,0,2.783221,7.9368286,38.48,22.15,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,434,249787.16,270848.19,145539.47,0,0,0,2067.7263 +2540,3156,5526,5527,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4592676,8.6422348,0,9,2,115.46809,0,3,3,2021,10,0,38,38,1,0,0,14.861258,14.861258,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.47,50.48,36.55,49.51,6.666666666666667,1,1,0,0,10,12,4,1,399.5,793292.63,719112.44,131540.52,0,0,0,1903.0361 +2540,3156,5527,5526,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,9,-2,-67.926315,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,36.55,49.51,54.47,50.48,6.666666666666667,1,1,0,0,6,12,4,1,399.5,793292.63,719112.44,131540.52,0,0,0,1903.0361 +2541,3157,5528,-9,-9,-9,1,1,28,0,1,0,2,2,-9,0,4,8.0645485,8.2373199,0,1,-10,50.315716,0,2,-9,2021,17,6,40,42,1,6,0,10.464792,10.464792,0,0,0,0,0,0,0,42,0,0,0,0,0,42.95,61.24,44.44,55.46,6.666666666666667,1,1,0,1,10,5,4,0,651.5,-80799.203,0,0,0,904.62292,0,1050.1276 +2541,3157,5529,-9,-9,5528,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.3681,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,0,651.5,-80799.203,0,0,0,904.62292,0,1050.1276 +2541,3158,5530,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.2818823,8.2174692,0,1,10,11.506228,-9,-9,-9,2021,12,1,36,0,1,1,0,13.066441,13.066441,0,0,0,0,0,0,0,7,0,0,0,0,0,44.44,55.46,42.95,61.24,6.666666666666667,1,1,0,0,4,5,4,0,685,-34105.668,-88667.234,0,0,0,0,1332.1019 +2542,3159,5531,5533,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.0537901,8.5740309,0,6,4,66.482338,0,3,3,2021,11,0,34,25,1,0,0,12.901492,12.901492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,51,56,6.666666666666667,1,1,0,0,7,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2542,3159,5532,-9,5531,5533,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.47864,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2542,3159,5533,5531,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.9144783,8.9961357,0,6,-4,111.16962,0,3,2,2021,12,0,37,37,1,0,0,23.410412,23.410412,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,45.91,59.89,1.666666666666667,1,1,0,0,7,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2542,3159,5534,-9,5531,5533,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.833,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1716,229697.59,84505.297,217154.89,157487.09,0,0,4216.8281 +2543,3160,5535,5536,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.5099568,5.2302189,48,1,35.020996,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6803365,5.4440951,54.96,53.17,63.41,42.4,10,1,1,0,0,5,5,4,1,266,1521664.5,983264.38,376999.06,0,0,0,2779.4932 +2543,3160,5536,5535,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.0508356,8.4890728,48,-1,8.8854761,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7488351,8.4100132,63.41,42.4,54.96,53.17,5,1,1,0,0,0,5,4,1,266,1521664.5,983264.38,376999.06,0,0,0,2779.4932 +2544,3161,5537,-9,5538,-9,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-958.72241,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,0,1222,-152569.48,34479.906,0,0,0,718.74512,766.14642 +2544,3161,5538,-9,-9,-9,1,0,46,0,1,0,1,1,0,0,3,0,6.4710245,6.4694982,0,0,-918.34314,-9,3,3,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3042459,0,26.95,59.1,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,1222,-152569.48,34479.906,0,0,0,718.74512,766.14642 +2545,3162,5539,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6638412,8.7920828,0,0,0,-988.54938,-9,2,2,2021,11,0,35,0,1,0,0,19.520466,19.520466,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,9,8,5,1,271,1149534.6,711491.06,447815.56,0,0,0,2262.5337 +2546,3163,5540,-9,5541,5544,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1149.0154,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5541,5544,-9,-9,1,0,29,1,3,0,2,2,-9,0,2,7.0131006,7.0661802,0,9,-11,10.883896,0,-9,2,2021,13,1,18,20,1,1,0,6.7462125,6.7462125,0,0,0,0,0,0,0,0,1,1,0,0,0,39.68,53.79,59.8,39.25,5,1,1,0,0,5,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5542,-9,5541,5544,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.90332,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5543,-9,5541,5544,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.2639,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2546,3163,5544,5541,-9,-9,1,1,40,1,3,0,2,2,-9,0,2,8.290905,8.1427956,0,9,11,.28084874,0,-9,-9,2021,10,0,49,49,1,0,0,8.1153078,8.1153078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.8,39.25,39.68,53.79,6.666666666666667,1,1,0,0,5,5,3,1,1193.4,70686.492,19768.227,135178.33,35361.77,0,126.5492,2484.5996 +2547,3164,5545,-9,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,9.3618984,10.008923,7.1934776,0,0,-978.76813,0,2,2,2021,14,3,25,25,1,3,0,56.228981,56.228981,.05,.05,0,0,0,0,0,0,0,0,0,5.6225123,7.166698,38.26,60.7,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,447.5,361997.47,378986.13,561473.75,205058.09,16828.176,25707.109,4360.0781 +2547,3164,5546,-9,5545,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0062,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,447.5,361997.47,378986.13,561473.75,205058.09,16828.176,25707.109,4360.0781 +2548,3165,5547,5548,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.3145556,6.4638996,49,-2,42.959934,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.1496979,6.1761069,32.88,63.12,57.33,53.46,6.666666666666667,1,1,0,0,6,9,2,1,487.5,2231917.3,210713.67,1017134.7,0,0,0,1210.4705 +2548,3165,5548,5547,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.2505012,6.0001111,49,2,71.157318,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.2366943,6.2177973,57.33,53.46,32.88,63.12,6.666666666666667,1,1,0,0,4,9,2,1,487.5,2231917.3,210713.67,1017134.7,0,0,0,1210.4705 +2549,3166,5549,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,5.9259825,6.1568503,0,0,-1048.1324,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.8915186,53.89,12.47,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,702,143231.78,138803.25,0,0,0,0,1646.6688 +2549,3167,5550,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-967.61285,0,-9,-9,2021,25,8,0,0,4,8,0,0,0,0,0,0,1,0,19.791851,0,0,1,1,0,0,0,23.69,23.19,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,350,-139476.45,0,0,0,0,0,694.61926 +2549,3168,5551,-9,-9,5550,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1080.4797,0,-9,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44,38,-9,-9,0,1,1,0,0,0,12,2,0,438,-26449.475,3932.0381,0,0,1640.1228,0,79.863274 +2550,3169,5552,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,5,0,8.4331226,8.4262934,0,0,-939.14105,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8546038,8.7297306,59.2,35.02,-9,-9,10,1,1,0,0,0,6,5,1,267,955721.5,304693.31,439162.72,0,0,0,3610.7908 +2551,3170,5553,-9,5554,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-967.04846,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,408.5,-43729.496,0,0,0,0,0,740.42542 +2551,3170,5554,-9,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1038.9711,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,10,1,0,408.5,-43729.496,0,0,0,0,0,740.42542 +2552,3171,5555,5557,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,0,0,0,6,-7,98.524803,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.0968881,0,44.49,61.79,66.2,41.05,8.333333333333334,1,1,0,0,0,5,3,1,578,1459945,1178445.1,220615.92,16331.194,0,0,4516.9224 +2552,3171,5556,-9,5555,5557,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.07495,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,578,1459945,1178445.1,220615.92,16331.194,0,0,4516.9224 +2552,3171,5557,5555,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.4691706,8.3543329,0,6,7,-28.705935,0,3,2,2021,6,0,70,80,1,0,0,6.6314058,6.6314058,0,0,0,0,0,0,0,0,1,0,1,8.110899,0,66.2,41.05,44.49,61.79,8.333333333333334,1,1,0,0,8,5,3,1,578,1459945,1178445.1,220615.92,16331.194,0,0,4516.9224 +2552,3172,5558,-9,5555,5557,1,1,21,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1031.6885,0,2,2,2021,13,1,0,37,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,1,6,5,1,1,520,184451.58,0,0,0,0,0,0 +2552,3173,5559,-9,5555,5557,1,1,19,0,1,0,2,2,-9,0,3,6.3996692,6.3423357,0,0,0,-1044.6348,0,2,2,2021,14,3,12,8,1,3,1,6.3743534,6.3743534,0,0,0,0,0,0,0,0,1,0,1,0,0,41.95,59.17,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,182,-16198.303,19346.033,0,0,0,0,567.57782 +2553,3174,5560,5561,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5769629,7.6105928,0,42,-6,-2.4618139,0,3,2,2021,6,0,23,23,1,0,0,8.1577005,8.1577005,0,0,0,0,0,0,0,0,0,0,0,5.3641238,0,57.16,56.15,60.52,53.2,10,1,1,0,0,11,4,4,1,708,1528183,1202025.4,241602.22,0,0,0,2812.4365 +2553,3174,5561,5560,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.7322822,7.8522129,42,6,60.410366,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.06952,7.9299059,60.52,53.2,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,1,708,1528183,1202025.4,241602.22,0,0,0,2812.4365 +2554,3175,5562,5563,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2346988,7.3481426,23,-8,-14.066641,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.9923515,7.3052382,49.28,50.19,42.28,54.75,8.333333333333334,1,1,0,0,13,10,2,1,715.5,994611.06,298742.69,407420.63,0,0,0,3271.3438 +2554,3175,5563,5562,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.460053,5.4453368,24,8,25.331459,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.4131498,5.4343348,42.28,54.75,49.28,50.19,3.333333333333333,1,1,0,0,15,10,2,1,715.5,994611.06,298742.69,407420.63,0,0,0,3271.3438 +2554,3176,5564,-9,5563,5562,1,1,38,0,0,0,1,1,-9,0,4,7.3438692,7.1608939,0,0,0,-982.98859,0,2,2,2021,11,0,24,30,1,0,0,6.4338078,6.4338078,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,15,10,3,1,490,-88565.836,14016.745,0,0,0,0,2139.825 +2555,3177,5565,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,7.7687445,7.8226552,0,0,0,-1025.5444,-9,3,3,2021,7,0,40,0,1,0,0,7.4499731,7.4499731,0,0,.05,0,0,0,0,0,1,1,0,6.2458715,0,57.16,56.15,-9,-9,10,1,1,0,0,7,11,3,1,1056,301478.97,13533.701,300501.94,51688.57,0,0,1561.3335 +2556,3178,5566,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.1844497,7.0104451,0,0,-926.16583,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,6.2263474,7.0181813,54.8,22.43,-9,-9,10,1,1,0,0,9,6,2,1,164,469463.03,12403.546,251198.72,0,0,0,591.77625 +2556,3179,5567,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,4,0,0,0,0,0,-976.2066,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,0,3,6,1,1,498,-115092.74,0,0,0,0,0,789.23987 +2557,3180,5568,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,1,0,0,0,0,0,-968.9436,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.93,15.34,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,2673,134259.03,0,0,0,0,0,1505.6117 +2558,3181,5569,5570,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,7.8350358,7.8819642,0,7,8,18.538357,0,2,3,2021,12,1,22,30,1,1,0,12.4225,12.4225,0,0,.05,0,0,0,0,0,0,0,0,0,0,52.94,47.11,40.98,52.59,8.333333333333334,1,1,0,0,3,11,4,1,305.5,328543.72,174352.66,295080.25,0,23915.609,0,3473.7808 +2558,3181,5570,5569,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.949791,8.913764,0,7,-8,69.177116,-9,-9,-9,2021,11,0,40,0,1,0,0,19.223585,19.223585,.05,.05,.05,0,0,0,0,0,0,0,0,6.0791516,0,40.98,52.59,52.94,47.11,6.666666666666667,1,1,0,0,4,11,4,1,305.5,328543.72,174352.66,295080.25,0,23915.609,0,3473.7808 +2559,3182,5571,5572,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.7368822,7.9936175,0,4,3,-35.591793,0,3,2,2021,12,1,20,20,1,1,0,15.26944,15.26944,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.23,32.27,60.03,45.37,8.333333333333334,1,1,0,0,14,10,5,1,847,648825.75,539869.56,167642.75,64987.883,-664.17932,540.22626,7957.3511 +2559,3182,5572,5571,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,9.676096,9.5160313,0,4,-3,112.51984,0,-9,-9,2021,10,0,40,40,1,0,0,42.457779,42.457779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.03,45.37,45.23,32.27,8.333333333333334,1,1,0,0,3,10,5,1,847,648825.75,539869.56,167642.75,64987.883,-664.17932,540.22626,7957.3511 +2560,3183,5573,5574,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.1852078,7.4290557,10,4,-49.273579,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1002245,7.3788705,57.33,53.46,49.58,54.26,8.333333333333334,1,1,0,0,0,9,3,1,539.5,1115820.4,276252.69,411431.63,0,0,0,2829.0901 +2560,3183,5574,5573,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.9787583,6.6930976,10,-4,19.621672,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4177418,6.9223533,49.58,54.26,57.33,53.46,0,1,1,0,0,0,9,3,1,539.5,1115820.4,276252.69,411431.63,0,0,0,2829.0901 +2561,3184,5575,5576,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.650856,8.0381155,0,1,0,-36.507847,-9,-9,-9,2021,8,1,44,0,1,1,0,7.5012145,7.5012145,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,49.76,56.93,8.333333333333334,1,1,0,0,1,7,4,0,390,-76149.031,49634.438,0,0,0,0,2583.8823 +2561,3184,5576,5575,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.6607766,7.6625366,0,1,0,71.244682,0,3,2,2021,10,0,60,43,1,0,0,3.6779337,3.6779337,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,58.56,46.45,8.333333333333334,1,1,0,0,8,7,4,0,390,-76149.031,49634.438,0,0,0,0,2583.8823 +2562,3185,5577,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,6.243753,6.1221981,0,0,-1058.7615,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4264812,6.2110033,45.02,36.14,-9,-9,8.333333333333334,1,1,1,0,3,7,2,1,347,167895.47,0,0,0,0,0,-435.84976 +2562,3186,5578,-9,5577,-9,1,0,32,0,0,0,2,2,-9,0,5,6.5966206,6.6864157,0,0,0,-941.27271,0,2,2,2021,12,2,30,30,1,2,1,2.8165486,2.8165486,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,9,7,2,1,8742,39931.668,0,0,0,0,0,1140.0784 +2563,3187,5579,5580,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.7614808,7.5668006,0,7,0,-46.571388,0,-9,-9,2021,17,5,37,21,1,5,0,6.3859854,6.3859854,.05,.05,0,0,0,0,0,0,0,0,0,2.6534016,0,30.32,59.62,57.16,56.15,5,1,1,0,0,7,11,5,1,444.5,388044,24857.715,323470.63,0,0,0,7019.0889 +2563,3187,5580,5579,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,10.059291,9.6865492,0,7,0,9.2781353,0,3,2,2021,9,0,40,45,1,0,0,46.164429,46.164429,.05,.05,0,0,0,0,0,0,0,0,0,4.8128352,0,57.16,56.15,30.32,59.62,8.333333333333334,1,1,0,0,8,11,5,1,444.5,388044,24857.715,323470.63,0,0,0,7019.0889 +2563,3188,5581,-9,5579,5580,1,1,25,0,0,0,1,1,-9,0,4,9.0502205,8.8006792,0,0,0,-1131.6448,0,2,2,2021,6,0,50,60,1,0,1,17.852661,17.852661,0,0,0,0,0,0,0,0,0,0,0,6.8538609,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,628,0,0,0,0,0,0,3442.3906 +2564,3189,5582,-9,5585,5583,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-850.83057,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5583,5585,-9,-9,1,1,48,0,3,0,1,1,-9,0,4,9.2081442,9.1485233,0,20,6,135.37215,0,1,2,2021,7,0,45,50,1,0,0,23.341576,23.341576,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.87,53.99,43.03,58.4,6.666666666666667,1,1,0,0,15,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5584,-9,5585,5583,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-970.49054,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5585,5583,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,8.6107607,8.5173883,0,20,-6,-24.108967,0,2,-9,2021,12,0,50,50,1,0,0,13.872184,13.872184,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.03,58.4,55.87,53.99,6.666666666666667,1,1,0,0,12,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2564,3189,5586,-9,5585,5583,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-925.00616,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,420.79999,330625.91,59196.547,211102.94,128532.75,0,0,4777.4189 +2565,3190,5587,-9,-9,-9,1,1,18,0,0,1,2,0,-9,0,5,0,3.863821,4.0406852,0,0,-987.95154,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.738765,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,2,0,512,2835.6895,0,0,0,0,0,658.92621 +2566,3191,5588,5590,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.9132471,8.9887962,0,7,3,-46.135719,0,-9,-9,2021,7,0,50,46,1,0,0,17.25857,17.25857,.05,.05,0,0,0,0,0,0,1,1,0,6.3712244,0,50.6,51,46.08,57.2,6.666666666666667,1,1,0,0,10,7,5,1,797.33331,1493624.1,482771.78,824657.69,0,0,0,5106.9082 +2566,3191,5589,-9,5590,5588,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.1851,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,797.33331,1493624.1,482771.78,824657.69,0,0,0,5106.9082 +2566,3191,5590,5588,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.7882261,8.8288155,0,7,-3,44.013901,0,1,1,2021,13,1,10,0,1,1,0,73.138512,73.138512,0,0,0,0,0,0,0,0,1,1,0,.45888022,0,46.08,57.2,50.6,51,6.666666666666667,1,1,0,0,9,7,5,1,797.33331,1493624.1,482771.78,824657.69,0,0,0,5106.9082 +2567,3192,5591,5592,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.7620125,9.9430275,0,6,2,124.61539,0,3,-9,2021,9,0,40,60,1,1,0,48.169434,48.169434,0,0,0,0,0,0,0,0,0,0,0,0,0,54,54,52.43,55.57,8,1,1,0,0,1,11,5,1,571,209004.91,74776.75,284196.56,135063.88,0,22305,10211.805 +2567,3192,5592,5591,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.994278,8.0104666,0,6,-2,-49.412384,0,3,3,2021,6,0,40,0,1,0,0,10.25714,10.25714,0,0,0,0,0,0,0,2,0,0,0,2.6124561,0,52.43,55.57,54,54,8.333333333333334,1,1,0,0,3,11,5,1,571,209004.91,74776.75,284196.56,135063.88,0,22305,10211.805 +2568,3193,5593,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4533033,8.6759453,0,0,0,-975.53735,0,3,3,2021,9,1,47,49,1,1,0,9.5628996,9.5628996,.05,.05,0,0,0,0,0,7,1,1,0,0,0,56.5,29.75,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,138,530400.31,261565.02,86688.398,118495.77,0,0,1313.0193 +2569,3194,5594,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.5375185,8.5479946,0,0,0,-903.81232,0,2,3,2021,19,7,45,45,1,7,0,12.006986,12.006986,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.79,47.5,-9,-9,3.333333333333333,1,1,0,0,9,6,5,1,4014,376145.25,-31020.152,0,0,0,0,1254.1194 +2570,3195,5595,5596,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1310968,8.1331968,0,36,-1,-66.819489,0,2,3,2021,17,5,35,35,1,5,0,9.1276045,9.1276045,0,0,.05,0,0,0,0,42,0,0,0,0,0,48.53,40.95,55,53,8.333333333333334,1,1,0,0,9,12,4,1,615.5,883459.25,402060.16,502923.81,0,0,0,1877.7581 +2570,3195,5596,5595,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.578476,7.5761065,7.354733,36,1,104.4362,0,3,3,2021,8,0,24,30,1,0,0,3.464561,3.464561,0,0,.05,0,0,0,0,0,0,0,0,0,7.0730567,55,53,48.53,40.95,8,1,1,0,0,9,12,4,1,615.5,883459.25,402060.16,502923.81,0,0,0,1877.7581 +2570,3196,5597,-9,5595,5596,1,1,22,0,0,0,2,2,-9,0,5,7.3783698,7.3026366,0,0,0,-899.71997,0,2,3,2021,7,0,20,30,1,0,1,10.054271,10.054271,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,4,12,3,1,1005,145342.33,0,0,0,0,0,1951.8383 +2571,3197,5598,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3661995,8.7583342,0,0,0,-1083.1885,0,2,-9,2021,14,2,60,91,1,2,0,10.084394,10.084394,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.65,35.77,-9,-9,8.333333333333334,1,1,0,0,8,12,5,0,280,222801.58,267143.41,0,0,0,0,2795.3352 +2572,3198,5599,5601,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.9964018,9.0065069,0,9,-6,29.212149,0,2,2,2021,12,0,77,41,1,0,0,14.377876,14.377876,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34,61.21,52,55,5,1,1,0,0,11,8,5,1,375.66666,443330.13,124205.44,445593.78,208168.25,14910.852,7900.4043,7588.7124 +2572,3198,5600,-9,5599,5601,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.89099,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,375.66666,443330.13,124205.44,445593.78,208168.25,14910.852,7900.4043,7588.7124 +2572,3198,5601,5599,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,9.3452129,9.5743561,0,9,6,65.426796,0,2,3,2021,9,0,49,45,1,1,0,41.365913,41.365913,.05,.05,0,0,0,0,0,0,0,0,0,7.5801969,0,52,55,34,61.21,8,1,1,0,0,12,8,5,1,375.66666,443330.13,124205.44,445593.78,208168.25,14910.852,7900.4043,7588.7124 +2573,3199,5602,-9,5606,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1063.8539,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5603,-9,5606,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-910.76166,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5604,-9,5606,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.93219,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5605,-9,5606,-9,1,0,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-934.54724,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2573,3199,5606,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1022.7458,-9,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,55.68,-9,-9,5,1,1,1,0,5,12,1,0,664.79999,82487.117,0,0,0,226.40953,0,864.83087 +2574,3200,5607,5610,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,0,0,0,13,-3,33.687733,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.15,56.92,8.333333333333334,1,1,0,0,2,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2574,3200,5608,-9,5607,5610,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.83307,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2574,3200,5609,-9,5607,5610,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.40265,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2574,3200,5610,5607,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,9.1378355,9.4773073,0,13,3,104.89306,0,2,2,2021,11,0,45,50,1,0,0,22.970665,22.970665,.05,.05,0,0,0,0,0,0,0,0,0,5.0085096,0,43.15,56.92,54.1,59.11,6.666666666666667,1,1,0,0,10,8,5,1,494.75,532497.88,205196.69,546233.88,267993.38,0,0,3579.4719 +2575,3201,5611,5613,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,7.7960706,7.7904258,0,6,-1,146.46422,0,2,3,2021,5,0,22,39,1,0,0,14.005293,14.005293,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,54.96,53.17,10,1,1,0,0,10,13,4,1,691,14208.93,-33864.852,118260.15,108346.59,0,437.15665,2453.6819 +2575,3201,5612,-9,5611,5613,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-918.88678,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,691,14208.93,-33864.852,118260.15,108346.59,0,437.15665,2453.6819 +2575,3201,5613,5611,-9,-9,1,1,31,1,1,0,2,2,-9,0,3,8.2648869,7.9710674,0,6,1,44.628448,0,-9,-9,2021,9,1,45,43,1,1,0,10.795634,10.795634,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,10,13,4,1,691,14208.93,-33864.852,118260.15,108346.59,0,437.15665,2453.6819 +2576,3202,5614,-9,5615,5616,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-986.46362,-9,3,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.29,47.76,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,1481,13888.16,66044.984,0,0,0,3590.0452,1605.8306 +2576,3202,5615,5616,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,10,0,0,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,50,49,7,1,1,1,0,0,5,1,0,1481,13888.16,66044.984,0,0,0,3590.0452,1605.8306 +2576,3202,5616,5615,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,10,0,0,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,50,49,48,49,7,1,1,1,0,0,5,1,0,1481,13888.16,66044.984,0,0,0,3590.0452,1605.8306 +2576,3203,5617,-9,5615,5616,1,1,31,0,0,0,2,2,-9,0,5,7.6063738,7.7660851,0,0,0,-900.71277,0,3,2,2021,6,0,30,19,1,0,1,7.2754793,7.2754793,.05,.05,0,0,0,0,0,7,1,1,0,0,0,50.67,44.67,-9,-9,5,1,1,0,0,2,5,3,0,924,18284.512,-158296.16,0,0,0,0,-209.94826 +2577,3204,5618,-9,5619,5621,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-979.40778,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2577,3204,5619,5621,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,0,0,0,19,-7,-59.412853,0,-9,1,2021,7,0,0,31,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,26.99,29.87,6.666666666666667,1,1,0,1,5,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2577,3204,5620,-9,5619,5621,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1054.0438,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2577,3204,5621,5619,-9,-9,1,1,47,0,2,0,2,2,-9,0,1,.64480495,.50632823,0,19,7,37.507076,0,-9,2,2021,31,12,50,30,1,12,0,.0032406719,.0032406719,0,0,0,0,0,0,0,27,1,1,0,0,0,26.99,29.87,51.41,56.15,0,1,1,0,1,10,7,2,1,973.75,26913.855,25957.066,0,0,0,0,715.27576 +2578,3205,5622,5623,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.4029198,6.3434343,7,7,-56.615479,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.89266151,6.2842469,52,48,57.16,56.15,7,1,1,0,0,0,6,3,0,505,173248.53,21717.289,149136.47,0,0,0,3147.5313 +2578,3205,5623,5622,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.9641328,8.1504631,0,30,-7,-8.4064484,0,-9,-9,2021,5,0,32,34,1,0,0,11.697949,11.697949,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,48,8.333333333333334,1,1,0,0,9,6,3,0,505,173248.53,21717.289,149136.47,0,0,0,3147.5313 +2579,3206,5624,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.0475988,8.0318718,0,0,0,-948.54468,0,2,2,2021,9,2,15,15,1,2,0,21.069767,21.069767,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,233,259133.31,50586.082,528925.94,102871.77,10197.075,24936.82,652.80035 +2580,3207,5625,-9,5627,5629,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.3678,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5626,-9,5627,5629,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.9491,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5627,5629,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,0,0,0,19,-5,0,-9,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,38.76,58.16,3.333333333333333,1,1,1,1,8,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5628,-9,5627,5629,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.131,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2580,3207,5629,5627,-9,-9,1,1,47,0,3,0,2,2,-9,0,3,0,0,0,1,5,0,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,58.16,45.58,47.97,3.333333333333333,1,1,1,1,0,5,1,1,1071.8,367877,-68254.172,539627.81,80598.047,0,0,1417.2168 +2581,3208,5630,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,7.1250558,7.0967574,0,0,0,-969.18671,0,1,1,2021,12,0,16,14,1,0,0,12.165039,12.165039,0,0,0,0,0,0,0,0,1,1,0,4.9619236,0,61.43,30.11,-9,-9,10,1,1,0,0,8,2,3,1,2646,327414.44,372811.06,0,0,0,0,1282.6954 +2582,3209,5631,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,9.0764532,9.3452997,0,0,0,-984.83893,0,2,2,2021,5,0,47,49,1,0,0,24.662512,24.662512,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,9,7,5,1,2500,248991.89,154107.78,238885.3,140879.97,0,0,3440.366 +2583,3210,5632,5633,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,6,-1,-102.63942,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.25,44.46,64.23,44.69,8.333333333333334,1,1,0,0,0,12,5,1,1395.5,2105114.5,1746540.8,406470.19,0,1607.3639,0,5120.7178 +2583,3210,5633,5632,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,9.1814079,9.3527117,7.7404218,6,1,-57.336094,0,3,2,2021,9,0,35,30,1,0,0,26.480761,26.480761,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4510722,64.23,44.69,47.25,44.46,1.666666666666667,1,1,0,0,7,12,5,1,1395.5,2105114.5,1746540.8,406470.19,0,1607.3639,0,5120.7178 +2584,3211,5634,5635,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.2332034,7.126905,4,-5,-103.22506,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.092072,6.9273543,51.83,57.2,56.25,44.4,10,1,1,0,0,0,12,3,1,398.5,788209.56,435957.25,169204.97,0,0,0,3762.1602 +2584,3211,5635,5634,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.5380421,7.9046288,4,5,-31.786764,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1251793,8.0463419,56.25,44.4,51.83,57.2,10,1,1,0,0,0,12,3,1,398.5,788209.56,435957.25,169204.97,0,0,0,3762.1602 +2584,3212,5636,-9,5634,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6036644,8.571846,0,0,0,-858.29065,0,2,-9,2021,6,0,36,36,1,0,0,15.465503,15.465503,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,780,292472.59,0,99815.57,45714.695,0,320.3584,1803.8403 +2585,3213,5637,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,5,8.5917816,8.5359325,0,0,0,-984.87433,0,1,2,2021,2,0,60,60,1,0,0,13.803955,13.803955,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,13,4,5,0,1802,659274.31,376841.75,90130.969,60983.387,3339.3411,0,3456.553 +2586,3214,5638,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,7.0813494,6.9551992,0,0,-945.19781,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8370519,7.5013752,51.83,57.2,-9,-9,10,1,1,0,0,0,1,3,1,1240,143566.67,202035.11,0,0,0,0,1390.7424 +2587,3215,5639,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8887377,5.7860608,0,0,-933.07391,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9042726,48.86,46.27,-9,-9,6.666666666666667,1,1,0,0,11,9,2,0,1914,446026.44,89302.766,220313.53,0,0,646.6568,716.72803 +2588,3216,5640,5641,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6108427,8.4702711,0,33,2,0,0,3,1,2021,7,0,50,50,1,0,0,14.014221,14.014221,.05,.05,0,0,0,0,0,0,0,0,0,5.0430255,0,57.16,56.15,51.83,57.2,10,1,1,0,0,8,9,5,1,2156,1139000,692591.56,404709.88,92170.219,14852.339,0,4797.5103 +2588,3216,5641,5640,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.8419018,8.6944704,0,32,-2,0,0,1,1,2021,8,0,24,24,1,0,0,29.915598,29.915598,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,2156,1139000,692591.56,404709.88,92170.219,14852.339,0,4797.5103 +2589,3217,5642,5643,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,5.692874,5.0768709,38,5,33.321392,0,3,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5904846,38.46,24.51,39.25,42.33,8.333333333333334,1,1,0,0,3,9,2,0,416.5,393025.88,68797.289,217049.59,0,0,0,2090.8181 +2589,3217,5643,5642,-9,-9,1,0,59,0,0,0,1,1,-9,1,3,6.3344426,6.6269822,0,38,-5,80.635651,0,3,2,2021,15,3,11,11,1,3,0,5.4822283,5.4822283,0,0,0,0,0,0,0,42,1,1,0,6.2860594,0,39.25,42.33,38.46,24.51,3.333333333333333,1,1,0,0,11,9,2,0,416.5,393025.88,68797.289,217049.59,0,0,0,2090.8181 +2589,3218,5644,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.2923403,8.4571733,0,0,0,-1119.5948,-9,-9,-9,2021,13,5,40,0,1,5,0,11.99231,11.99231,0,0,0,0,0,0,0,27,1,1,0,0,0,48,50,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,491,266867.66,0,239561.06,80860.102,0,4205.689,1361.3774 +2590,3219,5645,5646,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3635216,8.1069202,0,11,-2,108.0764,0,-9,-9,2021,12,0,37,25,1,0,0,10.0716,10.0716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,45.39,52.08,6.666666666666667,1,1,0,0,13,9,5,1,906.5,387828.56,291871.88,378065.75,224313.88,0,10114.602,4451.3271 +2590,3219,5646,5645,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.0044613,9.1172915,0,11,2,-114.65903,0,3,2,2021,17,5,37,37,1,5,0,28.223236,28.223236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.39,52.08,40.65,57.36,6.666666666666667,1,1,0,0,12,9,5,1,906.5,387828.56,291871.88,378065.75,224313.88,0,10114.602,4451.3271 +2591,3220,5647,5648,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,6,1,-49.243809,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.49,50.46,32.68,35.19,10,1,1,0,0,0,1,2,1,421,665498.25,302939.22,204685.38,0,0,0,1156.677 +2591,3220,5648,5647,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.785665,7.0186877,6,-1,-7.2038794,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8648319,32.68,35.19,54.49,50.46,3.333333333333333,1,1,0,0,0,1,2,1,421,665498.25,302939.22,204685.38,0,0,0,1156.677 +2592,3221,5649,5650,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,6.4073243,7.6050286,7.2565155,35,10,45.437397,0,3,2,2021,9,0,15,15,1,0,0,5.0499525,5.0499525,0,0,0,0,0,0,0,0,1,1,0,4.097044,7.3973784,63.1,33.51,54.2,57.49,8.333333333333334,1,1,0,0,10,8,5,1,707,1155793.8,339733.94,796650.63,0,0,0,6242.1045 +2592,3221,5650,5649,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.2260084,9.0359859,0,8,-10,-75.543182,0,-9,-9,2021,6,0,15,15,1,0,0,62.71833,62.71833,0,0,0,0,0,0,0,0,1,1,0,1.9914811,0,54.2,57.49,63.1,33.51,8.333333333333334,2,3,0,0,9,8,5,1,707,1155793.8,339733.94,796650.63,0,0,0,6242.1045 +2592,3222,5651,-9,5650,5649,1,0,28,0,0,0,2,2,-9,0,2,7.6217337,7.6659021,0,0,0,-1110.7345,0,1,1,2021,12,0,32,40,1,0,1,7.5001292,7.5001292,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,27.8,-9,-9,5,4,2,0,0,5,8,3,1,1523,-99802.867,0,0,0,0,0,438.4841 +2592,3223,5652,-9,5650,5649,1,1,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-974.98181,1,1,1,2021,12,0,0,50,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6954014,0,45.91,59.89,-9,-9,5,4,2,0,0,3,8,1,1,897,195413.09,0,0,0,0,0,50.156052 +2593,3224,5653,5654,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.8405256,7.789784,45,2,9.3369989,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9445682,62.39,56.71,57.16,56.15,10,1,1,0,0,5,12,3,1,569,440351.13,288227.31,316780.13,0,0,0,2706.293 +2593,3224,5654,5653,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,45,-2,31.030807,-9,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,12,3,1,569,440351.13,288227.31,316780.13,0,0,0,2706.293 +2594,3225,5655,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.1493478,6.1083732,0,0,-1032.715,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5763092,6.4351668,19.22,38.75,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,322,390376.25,-24179.033,174664.53,0,0,0,548.81793 +2595,3226,5656,-9,-9,-9,1,0,20,2,4,0,2,2,-9,0,4,7.2347393,7.2189159,0,0,0,-765.771,-9,2,-9,2021,3,1,35,0,1,1,1,4.2696943,4.2696943,0,0,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,-9,-9,10,1,1,0,0,1,1,3,0,742.5,0,0,0,0,0,0,2137.8279 +2595,3226,5657,-9,5656,-9,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.1945,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,3,0,742.5,0,0,0,0,0,0,2137.8279 +2596,3227,5658,5660,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.6946158,7.7351389,0,15,-1,-27.998962,0,-9,-9,2021,12,1,32,32,1,1,0,8.2059526,8.2059526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.12,63.98,59.6,46.99,6.666666666666667,1,1,0,0,13,1,5,1,723.66669,1594095.1,1544673.3,237936.53,197049.66,632.85651,541.27454,4237.3135 +2596,3227,5659,-9,5658,5660,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9979,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,723.66669,1594095.1,1544673.3,237936.53,197049.66,632.85651,541.27454,4237.3135 +2596,3227,5660,5658,-9,-9,1,1,41,0,1,0,2,2,-9,1,3,9.0813913,9.01513,0,15,1,-134.93736,0,2,3,2021,6,0,35,35,1,0,0,23.188976,23.188976,.05,.05,0,0,0,0,0,2,1,1,0,0,0,59.6,46.99,31.12,63.98,8.333333333333334,1,1,0,0,11,1,5,1,723.66669,1594095.1,1544673.3,237936.53,197049.66,632.85651,541.27454,4237.3135 +2597,3228,5661,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,7.933475,7.3645425,0,0,-935.2514,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3046288,7.6404524,49.24,50.29,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,294,726976.13,74838.273,225739.47,0,0,0,2216.2896 +2598,3229,5662,5665,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,0,0,0,13,-26,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.82,46.44,10,2,3,0,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2598,3229,5663,-9,5662,5665,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.73035,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2598,3229,5664,-9,5662,5665,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.93274,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2598,3229,5665,5662,-9,-9,1,1,70,0,2,0,3,3,-9,0,3,0,0,0,13,26,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.82,46.44,57.33,53.46,10,2,3,0,0,0,5,2,1,652.25,-90091.969,-14442.514,0,0,0,0,2145.5764 +2599,3230,5666,-9,5669,5667,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-909.20526,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2599,3230,5667,5669,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,8.0245132,8.2827082,0,11,5,-16.946518,0,-9,-9,2021,7,0,40,43,1,0,0,8.3974676,8.3974676,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.59,41.05,49.44,56.93,8.333333333333334,1,1,0,0,11,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2599,3230,5668,-9,5669,5667,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.3214,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2599,3230,5669,5667,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,8.1556568,8.2026615,0,11,-5,-31.685322,0,2,2,2021,9,0,26,40,1,0,0,14.768124,14.768124,.05,.05,0,0,0,0,0,0,0,0,0,.40824214,0,49.44,56.93,60.59,41.05,8.333333333333334,1,1,0,0,11,10,4,1,519,165195.91,163156.48,313115.31,181725.14,44844.641,0,2722.5696 +2600,3231,5670,5671,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.411099,7.0801468,0,12,1,42.991383,0,3,3,2021,11,0,20,35,1,0,0,7.8208199,7.8208199,0,0,0,0,0,0,0,0,0,0,0,0,0,46.8,49.77,37.41,57.36,8.333333333333334,1,1,0,0,12,12,3,0,307,1241418.5,869450.13,242790.88,0,0,0,1886.1775 +2600,3231,5671,5670,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.4185753,7.5185552,0,12,-1,6.3654938,0,3,3,2021,15,3,40,22,1,3,0,4.2823677,4.2823677,0,0,0,0,0,0,0,0,0,0,0,0,0,37.41,57.36,46.8,49.77,8.333333333333334,1,1,0,0,12,12,3,0,307,1241418.5,869450.13,242790.88,0,0,0,1886.1775 +2601,3232,5672,5673,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3476868,8.3848057,0,16,0,-54.002296,0,2,2,2021,6,0,37,37,1,0,0,14.247826,14.247826,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,280.5,245578.53,75831.836,268812.06,82647.953,8004.5645,1311.8213,4287.6743 +2601,3232,5673,5672,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.7158241,8.8542614,0,16,0,-150.12329,0,2,2,2021,7,0,37,39,1,0,0,22.14467,22.14467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,280.5,245578.53,75831.836,268812.06,82647.953,8004.5645,1311.8213,4287.6743 +2602,3233,5674,5675,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.1300974,8.0721655,9,1,18.97529,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1002326,7.891511,57.16,56.15,48.14,42.69,10,1,1,0,0,0,11,3,1,1359.5,963364.25,772155.19,201246.02,0,9466.8564,0,3445.23 +2602,3233,5675,5674,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.8852048,6.2685037,9,-1,134.94968,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8586466,6.2829909,48.14,42.69,57.16,56.15,10,1,1,0,0,1,11,3,1,1359.5,963364.25,772155.19,201246.02,0,9466.8564,0,3445.23 +2603,3234,5676,5677,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.830945,9.0275249,0,12,-2,-51.328976,0,-9,-9,2021,7,0,65,70,1,0,0,15.641975,15.641975,.05,.05,0,0,0,0,0,0,0,0,0,.13471931,0,57.57,49.69,53.62,48.74,5,1,1,0,0,11,4,5,1,1279,2214034.5,1714513.3,319749.13,21074.398,-57.97348,0,3770.0615 +2603,3234,5677,5676,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7275186,7.5048971,0,31,2,61.90984,0,3,3,2021,11,0,24,8,1,0,0,11.268276,11.268276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.62,48.74,57.57,49.69,8.333333333333334,1,1,0,0,9,4,5,1,1279,2214034.5,1714513.3,319749.13,21074.398,-57.97348,0,3770.0615 +2604,3235,5678,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,8.0943336,8.2900114,0,0,-949.59827,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,5.8347292,7.3226571,42.122047,0,1,1,0,6.888751,7.884306,51.31,22.46,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,638,584148.44,271862.72,161431.48,0,0,0,2723.2007 +2605,3236,5679,5680,-9,-9,1,0,35,0,0,0,2,2,-9,0,2,7.569747,7.4833875,0,1,3,-222.97861,-9,-9,-9,2021,12,1,22,0,1,1,0,10.787126,10.787126,.05,.05,0,0,0,0,0,0,1,1,0,.9922967,0,47.52,33.82,59.43,58.05,6.666666666666667,1,1,0,0,11,11,3,0,135.5,267067.09,94439.594,98111.273,6744.1567,0,-509.19852,1961.384 +2605,3236,5680,5679,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,7.6042895,7.7804055,0,1,-3,-11.52497,-9,2,2,2021,6,0,33,0,1,0,0,6.8289223,6.8289223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,47.52,33.82,8.333333333333334,1,1,0,0,11,11,3,0,135.5,267067.09,94439.594,98111.273,6744.1567,0,-509.19852,1961.384 +2606,3237,5681,5682,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.0454826,6.0636678,11,8,-26.820572,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,3.034306,0,0,1,1,0,6.4589653,5.8221436,41.86,46.88,32.4,58.07,6.666666666666667,1,1,0,0,5,9,2,1,940.5,732139.25,270588.88,430529.66,0,0,0,1489.6345 +2606,3237,5682,5681,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.7592669,6.6546121,11,-8,25.373346,0,2,3,2021,12,1,0,40,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2506895,6.6250849,32.4,58.07,41.86,46.88,8.333333333333334,1,1,0,0,11,9,2,1,940.5,732139.25,270588.88,430529.66,0,0,0,1489.6345 +2607,3238,5683,-9,5686,5687,1,1,10,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1024.3063,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5684,-9,5686,5687,1,1,16,0,6,1,3,0,-9,0,3,0,0,0,0,0,-939.78052,-9,2,1,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,47.3,-9,-9,5,1,1,0,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5685,-9,5686,5687,1,0,5,0,6,1,3,0,-9,0,4,0,0,0,0,0,-899.27008,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5686,5687,-9,-9,1,0,31,0,6,0,2,2,-9,1,3,8.1068096,8.4573298,0,7,-13,18.94536,0,1,1,2021,22,10,44,37,1,10,0,8.9437237,8.9437237,0,0,0,0,0,0,0,0,1,1,0,0,0,27.6,62.81,39.08,41.75,1.666666666666667,1,1,0,0,9,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5687,5686,-9,-9,1,1,44,0,6,0,1,1,-9,0,2,6.9284682,6.5936832,3.7393525,7,13,54.758125,0,2,2,2021,12,0,10,0,1,0,0,10.322289,10.322289,0,0,0,0,0,0,0,0,1,1,0,2.9323151,0,39.08,41.75,27.6,62.81,3.333333333333333,1,1,0,0,1,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5688,-9,5686,5687,1,0,6,0,6,1,3,0,-9,0,4,0,0,0,0,0,-982.81763,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5689,-9,5686,5687,1,1,12,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1027.1493,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2607,3238,5690,-9,5686,5687,1,0,5,0,6,1,3,0,-9,0,4,0,0,0,0,0,-1007.8708,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,596,-36557.59,-2778.6169,0,0,0,0,4046.0854 +2608,3239,5691,5692,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.811398,7.6702623,0,4,9,-27.484001,0,3,3,2021,20,8,28,23,1,8,0,8.8765039,8.8765039,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,33.65,57.96,40.18,52.86,3.333333333333333,1,1,0,0,13,2,4,0,921.33331,67811.195,-24177.006,0,0,6135.1621,-147.75157,2043.2849 +2608,3239,5692,5691,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,7.3620152,8.0137911,0,4,0,9.7971525,0,-9,-9,2021,10,4,30,35,1,4,0,5.9754558,5.9754558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.18,52.86,33.65,57.96,6.666666666666667,1,1,0,1,3,2,4,0,921.33331,67811.195,-24177.006,0,0,6135.1621,-147.75157,2043.2849 +2608,3239,5693,-9,5691,5692,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1154.6276,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4707489,0,46.43,60.43,-9,-9,8.333333333333334,1,1,0,0,0,2,4,0,921.33331,67811.195,-24177.006,0,0,6135.1621,-147.75157,2043.2849 +2609,3240,5694,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,9.2983532,9.2671127,0,0,0,-963.69678,0,2,-9,2021,10,0,50,40,1,0,0,26.791918,26.791918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,293,554077.5,141034.42,170280.09,117983.13,12454.282,0,4106.2778 +2610,3241,5695,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.3134079,8.6577883,0,0,-1063.2113,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8482976,8.3296766,55,46.59,-9,-9,10,1,1,0,0,7,7,4,1,613,1604651.1,793541.13,618967.69,0,0,0,2060.3601 +2611,3242,5696,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7761278,7.6034746,0,0,0,-1019.6198,0,2,2,2021,10,0,38,38,1,0,0,5.5633349,5.5633349,.05,.05,0,0,0,0,0,0,1,1,0,.018123703,0,45.34,41.21,-9,-9,8.333333333333334,1,1,0,1,12,11,3,0,151,-128845.7,-93940.398,0,0,0,0,1272.1709 +2612,3243,5697,5698,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.5524788,8.5876465,0,33,-13,28.396669,0,2,1,2021,3,0,42,24,1,0,0,12.033048,12.033048,0,0,0,0,0,0,0,0,1,1,0,0,0,59.54,44.15,53.99,48.04,6.666666666666667,3,4,0,0,8,8,4,1,335,2206159,810582.94,610028.25,0,0,0,2311.5554 +2612,3243,5698,5697,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,4.303544,4.521203,33,13,-117.0995,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,9.332551,0,0,1,1,0,0,4.8645372,53.99,48.04,59.54,44.15,6.666666666666667,3,4,0,0,0,8,4,1,335,2206159,810582.94,610028.25,0,0,0,2311.5554 +2612,3244,5699,-9,5697,5698,1,0,28,0,0,0,1,1,-9,0,3,8.2148418,8.0817156,0,0,0,-1022.7511,0,2,1,2021,10,0,48,16,1,0,1,7.5513864,7.5513864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,-9,-9,8.333333333333334,3,4,0,0,5,8,4,1,317,60464.039,-46748.508,0,0,28375.42,1045.588,1029.6926 +2613,3245,5700,5701,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,35,-12,-2.908921,-9,2,1,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,34.42,54.78,34.44,8.333333333333334,3,4,1,1,9,8,2,1,756.5,884549.13,77440.031,755636.13,0,0,0,1520.2701 +2613,3245,5701,5700,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.4666262,7.0114651,35,12,-109.03762,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,1,.78317553,0,27.655134,120,1,1,0,0,6.9921751,54.78,34.44,40.38,34.42,8.333333333333334,3,4,0,1,0,8,2,1,756.5,884549.13,77440.031,755636.13,0,0,0,1520.2701 +2614,3246,5702,-9,5704,5703,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1084.0393,-9,3,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.36,41.86,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,1448.6666,222449.23,118110.29,124294.7,69375.328,6762.5063,0,2913.9897 +2614,3246,5703,5704,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,8.163578,8.4468498,0,6,6,1.534903,0,3,3,2021,9,0,37,45,1,0,0,14.925443,14.925443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.25,32.43,50.68,28.49,6.666666666666667,1,1,0,0,7,12,4,1,1448.6666,222449.23,118110.29,124294.7,69375.328,6762.5063,0,2913.9897 +2614,3246,5704,5703,-9,-9,1,0,45,0,0,0,3,3,-9,0,2,7.7601733,8.0032415,0,6,-6,-119.65099,0,2,2,2021,12,1,30,37,1,1,0,9.8732777,9.8732777,0,0,0,0,0,0,0,0,1,1,0,0,0,50.68,28.49,62.25,32.43,3.333333333333333,1,1,0,1,7,12,4,1,1448.6666,222449.23,118110.29,124294.7,69375.328,6762.5063,0,2913.9897 +2615,3247,5705,-9,5706,5707,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-919.91614,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54696,0,31.05,61.73,-9,-9,8.333333333333334,1,1,0,0,0,7,5,1,2810.6667,1242551,396677.94,918428.31,33221.828,0,0,5977.5244 +2615,3247,5706,5707,-9,-9,1,0,52,0,1,0,1,1,-9,0,5,8.1699457,8.6509123,0,26,-6,9.2744131,0,2,2,2021,3,0,40,40,1,0,0,12.790092,12.790092,0,0,.05,0,0,0,0,0,0,0,0,0,0,52.72,55.58,54.2,57.49,8.333333333333334,1,1,0,0,9,7,5,1,2810.6667,1242551,396677.94,918428.31,33221.828,0,0,5977.5244 +2615,3247,5707,5706,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.3631945,9.6682186,0,25,6,124.94463,0,2,2,2021,9,0,45,98,1,0,0,33.526016,33.526016,.05,.05,.05,0,0,0,0,0,0,0,0,3.7530925,0,54.2,57.49,52.72,55.58,8.333333333333334,1,1,0,0,13,7,5,1,2810.6667,1242551,396677.94,918428.31,33221.828,0,0,5977.5244 +2615,3248,5708,-9,5706,5707,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1022.1119,-9,1,1,2021,7,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.45439422,0,41.2,62.39,-9,-9,8.333333333333334,1,1,1,0,4,7,1,1,296,171071.38,0,0,0,0,0,-249.8392 +2615,3249,5709,-9,5706,5707,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1066.9813,-9,1,1,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.35348257,0,32.58,60.74,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,887,-35942.945,0,0,0,0,0,-50.318127 +2616,3250,5710,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1048.528,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39.74,13.23,-9,-9,10,1,1,0,0,0,4,1,1,220,6795.1802,0,0,0,0,0,1643.2091 +2617,3251,5711,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.4724064,7.3536754,0,0,-967.49146,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.2464848,7.4109864,54,46,-9,-9,8,2,3,0,0,0,8,3,1,638,838217,72230.492,455993.03,0,0,0,3423.0171 +2618,3252,5712,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,4,0,6.4295306,6.9085245,0,0,-956.03571,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6870785,6.4982634,69.31,34.17,-9,-9,10,1,1,0,0,0,10,2,1,365,450735.44,217982.02,331526.84,0,0,0,2097.7778 +2619,3253,5713,5714,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,35,-7,102.89191,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0453873,0,60.54,42.81,59.31,49.81,8.333333333333334,2,3,0,0,0,9,3,1,832,1701724.8,773925.38,499771,0,0,1582.9459,1819.7883 +2619,3253,5714,5713,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.152709,8.2250652,35,7,-68.405266,0,2,2,2021,7,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8430868,7.6270924,59.31,49.81,60.54,42.81,8.333333333333334,1,1,0,0,12,9,3,1,832,1701724.8,773925.38,499771,0,0,1582.9459,1819.7883 +2620,3254,5715,5716,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.7688599,8.6303997,0,30,-2,-3.0210583,0,2,2,2021,10,0,27,24,1,0,0,22.848827,22.848827,0,0,0,0,0,0,0,0,0,0,0,3.3985732,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,9,4,5,1,386,1739198.8,1529331,264320.19,110993.41,3127.5142,0,4651.0127 +2620,3254,5716,5715,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.5735197,7.3678417,0,30,2,-16.07431,0,2,2,2021,9,0,65,60,1,0,0,2.4776275,2.4776275,.05,.05,0,0,0,0,0,7,0,0,0,8.6457348,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,9,4,5,1,386,1739198.8,1529331,264320.19,110993.41,3127.5142,0,4651.0127 +2620,3255,5717,-9,5715,5716,1,1,22,0,0,0,1,1,1,0,3,8.0428391,8.1804514,0,0,0,-903.29675,-9,1,2,2021,11,1,42,0,1,1,1,8.6712065,8.6712065,.05,.05,0,0,0,0,0,0,0,0,0,4.7995477,0,50.2,52.61,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,1422,-1840.8881,-33976.121,0,0,0,0,2112.9148 +2621,3256,5718,-9,5719,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.78656,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,643.5,-6405.2222,128448.98,0,0,0,0,1640.665 +2621,3256,5719,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.8578129,8.1104336,0,0,0,-955.61102,0,-9,2,2021,7,0,23,30,1,0,0,19.448225,19.448225,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.27,55.11,-9,-9,8.333333333333334,1,1,0,1,8,2,4,1,643.5,-6405.2222,128448.98,0,0,0,0,1640.665 +2621,3257,5720,-9,5719,-9,1,1,22,0,1,0,2,2,-9,0,4,8.6189899,8.6059008,0,0,0,-999.8822,0,1,-9,2021,11,0,66,0,1,0,1,11.738723,11.738723,0,0,0,0,0,0,0,0,1,1,0,0,0,49.08,49.28,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,1361,-75438.844,-53601.313,0,0,0,0,3175.9836 +2622,3258,5721,5722,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,7.79036,7.8122211,6,-3,-1.2397516,0,3,3,2021,15,5,0,28,4,5,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.2824798,7.7654333,58.3,52.91,33.04,29.73,8.333333333333334,1,1,0,0,7,12,3,1,394,1196263,796909.06,126473.86,0,0,0,2010.8632 +2622,3258,5722,5721,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,4.378696,4.5860019,6,3,-17.851667,0,3,3,2021,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7809458,5.0644736,33.04,29.73,58.3,52.91,6.666666666666667,1,1,0,0,3,12,3,1,394,1196263,796909.06,126473.86,0,0,0,2010.8632 +2623,3259,5723,-9,5724,-9,1,1,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1025.2762,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,1,1,0,1421.5,80061.633,0,0,0,0,0,856.53064 +2623,3259,5724,-9,-9,-9,1,0,21,1,0,0,2,2,-9,0,5,0,0,0,0,0,-969.24725,0,-9,-9,2021,12,2,0,35,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,57.49,-9,-9,10,1,1,1,0,2,1,1,0,1421.5,80061.633,0,0,0,0,0,856.53064 +2624,3260,5725,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,6.2031622,8.8786077,8.9286613,0,0,-1047.6389,0,2,1,2021,8,0,40,40,1,0,0,1.1888176,1.1888176,.05,.05,0,0,0,0,0,0,0,0,0,6.0626597,8.2556591,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,624,690365.13,60588.832,292944.63,0,0,0,3658.0608 +2625,3261,5726,5727,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.6860304,9.6204596,0,4,6,-39.989883,0,-9,-9,2021,7,0,60,58,1,0,0,27.04245,27.04245,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.82,54.57,49.76,56.93,8.333333333333334,1,1,0,0,3,8,5,0,360,1429244.4,1180488.8,625840.06,467833.84,0,0,7142.4834 +2625,3261,5727,5726,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.5329962,8.0809679,0,4,-6,37.090355,0,2,1,2021,12,0,37,36,1,0,0,13.473171,13.473171,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,45.82,54.57,8.333333333333334,1,1,0,0,10,8,5,0,360,1429244.4,1180488.8,625840.06,467833.84,0,0,7142.4834 +2626,3262,5728,5729,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.7858024,8.1656828,6,3,-64.462097,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2055216,8.0912733,55.3,55.6,43.61,46.08,8.333333333333334,1,1,0,0,4,9,3,1,328.5,1222091.8,749428.5,451796.94,0,0,0,3351.0291 +2626,3262,5729,5728,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.5179858,6.9219522,6,-3,-155.20264,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8251889,6.5814924,43.61,46.08,55.3,55.6,8.333333333333334,1,1,0,0,2,9,3,1,328.5,1222091.8,749428.5,451796.94,0,0,0,3351.0291 +2627,3263,5730,5731,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,50,-1,-3.1763432,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8645844,0,50.57,53.56,38.88,37.91,8.333333333333334,1,1,0,0,0,4,3,1,686,1050925,381554.59,267134.44,0,0,0,2084.3652 +2627,3263,5731,5730,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.7660971,7.6333771,50,1,-142.61586,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,29.668999,0,0,1,1,0,3.4991419,7.8319745,38.88,37.91,50.57,53.56,8.333333333333334,1,1,0,0,0,4,3,1,686,1050925,381554.59,267134.44,0,0,0,2084.3652 +2628,3264,5732,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.9393101,7.3625412,0,0,-1008.3097,-9,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.0724883,7.534946,45.12,62.24,-9,-9,10,2,3,0,0,0,8,2,1,522,389432.28,114504.97,284910.19,0,0,0,1819.4879 +2629,3265,5733,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,5.7871366,6.2815771,0,0,-956.19324,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8282776,34.15,27.84,-9,-9,10,1,1,0,0,4,12,2,1,245,27629.174,20050.604,0,0,0,0,-69.620529 +2630,3266,5734,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,8.6573496,8.8992968,0,0,0,-1099.2487,0,2,2,2021,6,0,35,35,1,0,0,25.207777,25.207777,0,0,.05,0,0,0,0,0,0,0,0,3.722832,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,6,9,5,0,597,227392.78,-90940.695,320072.5,260979.33,0,0,2770.2695 +2631,3267,5735,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.5890393,7.8384876,0,0,-838.81958,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7143948,7.7817659,62.4,42.8,-9,-9,8.333333333333334,1,1,0,0,12,10,3,1,850,1096595.1,617668.5,419712.16,0,13560.16,0,1762.2507 +2632,3268,5736,-9,5737,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.2561,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,365.5,326366.25,-52437.762,0,0,0,0,2238.8374 +2632,3268,5737,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,8.6980371,8.472765,0,0,0,-1048.4435,0,2,2,2021,21,8,40,40,1,8,0,12.752581,12.752581,.05,.05,0,0,0,0,0,7,1,1,0,0,0,27.73,64.27,-9,-9,3.333333333333333,4,2,0,1,9,8,4,0,365.5,326366.25,-52437.762,0,0,0,0,2238.8374 +2633,3269,5738,5739,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,11,2,35.317467,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64,38.07,60.86,50.49,10,1,1,0,0,0,13,2,1,563.5,722545.88,104020.14,384161.5,0,0,0,1867.0754 +2633,3269,5739,5738,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.026608,7.0889626,11,-2,-3.5522313,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9944077,60.86,50.49,64,38.07,10,1,1,0,0,0,13,2,1,563.5,722545.88,104020.14,384161.5,0,0,0,1867.0754 +2634,3270,5740,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,6.8929167,8.1423292,7.9316874,0,0,-906.07715,0,3,2,2021,19,8,7,14,1,8,0,27.663719,27.663719,0,0,0,0,0,0,0,0,1,1,0,7.6619368,7.9338183,34.85,37.9,-9,-9,3.333333333333333,1,1,0,0,11,11,4,1,367,411902.63,0,378570.16,38927.465,0,465.05649,2699.553 +2635,3271,5741,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.0505781,7.0080996,0,0,-1037.6124,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,17.384945,0,0,1,1,0,0,6.7798786,55,45,-9,-9,8,1,1,0,0,0,11,2,1,676,318350.34,132159.88,145604.98,0,0,0,1051.2734 +2636,3272,5742,5743,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.6912165,8.3381739,0,28,0,-38.679455,0,3,3,2021,11,0,37,36,1,0,0,19.387854,19.387854,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.65,53.71,47.94,53.79,6.666666666666667,1,1,0,0,10,7,5,1,300,513656.06,222167.5,458025.16,213704.16,0,0,15618.185 +2636,3272,5743,5742,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,9.7140188,9.4550095,0,28,0,-.49650475,0,3,3,2021,10,0,20,25,1,0,0,89.263092,89.263092,0,0,0,0,0,0,0,0,0,0,0,0,0,47.94,53.79,50.65,53.71,8.333333333333334,1,1,0,0,10,7,5,1,300,513656.06,222167.5,458025.16,213704.16,0,0,15618.185 +2637,3273,5744,5745,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.106328,7.9144263,0,2,-3,76.499435,0,-9,-9,2021,22,7,37,37,1,7,0,8.8295908,8.8295908,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.49,55.78,57.16,56.15,5,1,1,0,0,3,10,5,1,970,-22540.537,-32511.971,0,0,52266.039,0,2355.697 +2637,3273,5745,5744,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.5208511,8.4819489,0,2,3,-78.603615,0,-9,-9,2021,8,0,45,40,1,0,0,11.265727,11.265727,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.49,55.78,8.333333333333334,1,1,0,0,10,10,5,1,970,-22540.537,-32511.971,0,0,52266.039,0,2355.697 +2638,3274,5746,5747,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,0,0,45,8,-12.099098,0,-9,3,2021,8,0,0,70,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6405425,0,57.16,56.15,51.67,60.18,8.333333333333334,1,1,0,0,9,10,2,0,891,404045,279855.13,236183.09,0,0,0,3972.8604 +2638,3274,5747,5746,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.0424986,7.1696124,45,-8,35.229618,0,2,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9561911,7.2706814,51.67,60.18,57.16,56.15,8.333333333333334,1,1,0,0,3,10,2,0,891,404045,279855.13,236183.09,0,0,0,3972.8604 +2639,3275,5748,5751,-9,-9,1,1,53,0,2,0,1,1,-9,0,3,9.5863342,9.2567759,0,3,10,46.155441,-9,-9,-9,2021,16,4,60,0,1,4,0,23.588419,23.588419,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,54.1,59.11,8.333333333333334,1,1,0,0,9,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2639,3275,5749,-9,5751,5748,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.2101,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2639,3275,5750,-9,5751,5748,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.18134,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2639,3275,5751,5748,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.9430146,7.8914618,0,3,-10,192.57782,-9,3,2,2021,8,0,18,0,1,0,0,15.456022,15.456022,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,42.46,54.85,8.333333333333334,1,1,0,0,5,13,5,1,1304.75,1038532.3,6673.1392,718031.38,0,0,0,5361.9473 +2640,3276,5752,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.1942,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.66,39.97,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,559,155699.61,0,0,0,0,0,1294.5703 +2641,3277,5753,-9,5755,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.4498,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,13,2,1,2752.6667,250935.09,180043.38,0,0,0,0,1761.3635 +2641,3277,5754,-9,5755,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0991,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,13,2,1,2752.6667,250935.09,180043.38,0,0,0,0,1761.3635 +2641,3277,5755,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,6.9201188,6.993556,0,0,0,-1019.4003,0,1,1,2021,11,0,25,0,1,0,0,5.0046096,5.0046096,0,0,0,0,0,0,0,27,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,2752.6667,250935.09,180043.38,0,0,0,0,1761.3635 +2642,3278,5756,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.325,0,3,3,2021,28,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,24.33,21.59,-9,-9,0,1,1,0,0,2,11,1,0,1622,229079.81,0,0,0,0,-645.73279,279.78 +2642,3279,5757,-9,5756,-9,1,0,29,0,0,0,3,3,-9,0,4,7.8278108,8.0195446,0,0,0,-1018.5726,0,3,-9,2021,11,0,38,38,1,0,1,8.5075521,8.5075521,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,6,11,3,0,1038,13051.292,31566.725,0,0,4656.9424,0,989.20172 +2643,3280,5758,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.0842047,9.2542038,0,0,0,-926.56085,0,3,2,2021,9,0,40,40,1,0,0,30.938684,30.938684,.05,.05,0,0,0,0,0,0,0,0,0,6.9258461,0,59.56,43.01,-9,-9,6.666666666666667,2,3,0,0,12,9,5,1,907,1010954.9,211187.61,782013.25,0,0,0,3634.6377 +2644,3281,5759,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.3509655,6.2045417,0,0,-1018.8423,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1803408,55.2,41.97,-9,-9,6.666666666666667,1,1,0,1,8,1,2,1,1791,231835.91,-60206.148,194047.89,0,0,1033.4982,67.107353 +2645,3282,5760,5761,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,9.6530647,9.3613815,0,18,-14,-121.3927,0,2,1,2021,9,1,37,37,1,1,0,43.012257,43.012257,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,56,51.98,51.67,8,1,1,0,0,15,7,5,0,382.5,1110446.4,583275.5,601131.38,49209.555,0,0,6221.2266 +2645,3282,5761,5760,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.1498051,8.2566071,0,18,14,4.7699924,-9,3,3,2021,8,0,35,0,1,0,0,12.866986,12.866986,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.98,51.67,51,56,8.333333333333334,1,1,0,0,15,7,5,0,382.5,1110446.4,583275.5,601131.38,49209.555,0,0,6221.2266 +2646,3283,5762,5763,-9,-9,1,0,34,1,1,0,2,2,-9,0,5,8.4780054,8.6274204,0,8,-1,-3.3529336,0,2,3,2021,7,1,38,40,1,1,0,13.173148,13.173148,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,58.89,48.6,8.333333333333334,1,1,0,0,11,12,5,1,688.66669,-167813.72,0,0,0,40317.793,0,3264.4651 +2646,3283,5763,5762,-9,-9,1,1,35,1,1,0,2,2,-9,0,3,7.9927025,7.9669609,0,8,1,82.237572,0,-9,-9,2021,8,0,46,47,1,0,0,10.152405,10.152405,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,51.73,58.82,8.333333333333334,1,1,0,0,15,12,5,1,688.66669,-167813.72,0,0,0,40317.793,0,3264.4651 +2646,3283,5764,-9,5762,5763,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.86969,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,688.66669,-167813.72,0,0,0,40317.793,0,3264.4651 +2647,3284,5765,-9,5766,-9,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1015.946,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,1599.5,-85855.297,-7354.6421,41905.039,8483.7295,0,2253.5757,2491.3965 +2647,3284,5766,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,3,7.5535102,7.5722995,0,0,0,-1090.9229,0,2,2,2021,8,0,30,36,1,0,0,8.5253716,8.5253716,0,0,0,0,0,0,0,27,1,1,0,0,0,46.09,49.17,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,1599.5,-85855.297,-7354.6421,41905.039,8483.7295,0,2253.5757,2491.3965 +2647,3285,5767,-9,5766,-9,1,1,19,0,1,0,2,2,-9,0,4,6.6783156,6.6029472,0,0,0,-892.45935,0,2,-9,2021,13,2,32,33,1,2,1,2.4761155,2.4761155,.05,.05,0,0,0,0,0,0,1,1,0,7.3379645,0,41.37,58.08,-9,-9,3.333333333333333,1,1,0,0,3,13,2,1,638,-156607.27,-5083.4229,0,0,0,0,509.85779 +2648,3286,5768,5769,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.2899718,6.5441875,52,2,-13.009829,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6782761,6.3899827,59.06,35.36,44.53,54.03,10,1,1,0,0,0,6,3,1,972.5,495893.38,446092.56,82577.359,0,5095.9355,0,5350.7002 +2648,3286,5769,5768,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.3011432,7.5545874,52,-2,33.162113,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5828128,7.4360156,44.53,54.03,59.06,35.36,8.333333333333334,1,1,0,0,1,6,3,1,972.5,495893.38,446092.56,82577.359,0,5095.9355,0,5350.7002 +2649,3287,5770,5772,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,7.8636489,8.0017881,0,6,1,57.558033,0,-9,-9,2021,12,1,25,25,1,1,0,9.5679092,9.5679092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.02,56.13,52.88,56.68,8.333333333333334,1,1,0,0,4,13,3,0,897,243648.22,138950.81,223399.67,183476.64,0,0,1991.5382 +2649,3287,5771,-9,5772,5770,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.4829,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,3,0,897,243648.22,138950.81,223399.67,183476.64,0,0,1991.5382 +2649,3287,5772,5770,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,0,0,0,6,-1,42.464592,0,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.88,56.68,51.02,56.13,8.333333333333334,1,1,0,0,9,13,3,0,897,243648.22,138950.81,223399.67,183476.64,0,0,1991.5382 +2650,3288,5773,5774,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.7156129,6.4407177,49,-2,52.699135,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6875982,45.49,58.84,62.49,55.09,8.333333333333334,3,4,0,0,14,9,4,0,2493,1194235,726899.38,420733.88,0,0,0,2962.9585 +2650,3288,5774,5773,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,8.2263393,8.2030334,6.0922928,49,2,-38.964664,0,3,3,2021,6,0,45,45,1,0,0,10.144897,10.144897,0,0,0,0,0,0,0,0,1,1,0,0,5.9339275,62.49,55.09,45.49,58.84,6.666666666666667,3,4,0,0,13,9,4,0,2493,1194235,726899.38,420733.88,0,0,0,2962.9585 +2651,3289,5775,5776,-9,-9,1,1,56,0,1,0,3,3,-9,0,2,0,0,0,36,1,0,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.5552581,0,39.39,37.66,35.94,31.34,5,2,3,1,0,0,9,1,1,859.66669,61624.973,0,0,0,0,0,974.39539 +2651,3289,5776,5775,-9,-9,1,0,55,0,1,0,3,3,-9,1,2,0,0,0,36,-1,0,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.94,31.34,39.39,37.66,5,2,3,0,0,0,9,1,1,859.66669,61624.973,0,0,0,0,0,974.39539 +2651,3289,5777,-9,5776,5775,1,1,17,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1130.4291,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,43.53,40.9,-9,-9,3.333333333333333,2,3,0,0,2,9,1,1,859.66669,61624.973,0,0,0,0,0,974.39539 +2651,3290,5778,-9,5776,5775,1,0,24,0,1,0,1,1,-9,0,2,7.5168185,7.4797854,0,0,0,-842.80493,0,3,3,2021,12,0,37,35,1,0,1,5.6946859,5.6946859,0,0,0,0,0,0,0,0,1,0,1,0,0,38.82,39.27,-9,-9,5,2,3,0,0,7,9,3,1,1070,28489.059,0,0,0,7663.8374,0,600.06616 +2651,3291,5779,-9,5776,5775,1,0,28,0,1,0,2,2,-9,0,3,7.3391728,7.407783,0,0,0,-1040.1949,0,3,3,2021,13,1,50,37,1,1,1,4.5973144,4.5973144,0,0,0,0,0,0,0,0,1,0,1,0,0,42.64,50.88,-9,-9,5,2,3,0,0,11,9,3,1,451,39067.898,28130.34,0,0,0,0,691.7691 +2651,3292,5780,-9,5776,5775,1,1,22,0,1,0,2,2,-9,0,5,8.2294207,8.2065163,0,0,0,-767.09088,0,3,3,2021,10,0,40,40,1,1,1,11.213935,11.213935,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.07,58.32,-9,-9,10,2,3,0,0,5,9,4,1,1480,133172.69,53247.648,0,0,5164.1694,1253.2881,2390.7493 +2651,3293,5781,-9,5782,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.6077,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,2,1,489,39333.656,0,0,0,247.85535,167.55139,1798.5427 +2651,3293,5782,-9,5776,5775,1,0,29,0,1,0,3,3,-9,0,3,6.5459843,6.0695233,0,0,0,-1005.676,0,3,3,2021,12,0,36,16,1,0,1,2.4589167,2.4589167,0,0,0,0,0,0,0,0,1,0,1,0,0,39.01,40.08,-9,-9,6.666666666666667,2,3,0,0,9,9,2,1,489,39333.656,0,0,0,247.85535,167.55139,1798.5427 +2652,3294,5783,5784,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0014615,6.4987578,37,4,-26.319651,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8077822,6.9820995,64.97,34.85,52.87,55.58,10,1,1,0,0,0,10,3,1,1012.5,766127.38,623810.13,0,0,0,0,2760.7988 +2652,3294,5784,5783,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,8.2040844,7.9618101,37,-4,-28.691992,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5469716,8.4294338,52.87,55.58,64.97,34.85,8.333333333333334,1,1,0,0,4,10,3,1,1012.5,766127.38,623810.13,0,0,0,0,2760.7988 +2653,3295,5785,5786,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2000008,8.5078669,0,9,-1,-109.00407,0,2,2,2021,7,0,42,70,1,0,0,9.494194,9.494194,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,44.45,62.04,10,1,1,0,0,13,12,5,1,492,454309.72,348862.91,0,0,0,2274.7673,3637.9724 +2653,3295,5786,5785,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.5239286,8.7432747,0,9,1,-106.7746,0,3,3,2021,8,2,25,30,1,2,0,25.025751,25.025751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.45,62.04,59.53,56.44,8.333333333333334,1,1,0,0,9,12,5,1,492,454309.72,348862.91,0,0,0,2274.7673,3637.9724 +2654,3296,5787,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1134.5511,-9,2,2,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.53,35.59,-9,-9,0,1,1,0,0,0,6,1,0,631,100315.18,0,0,0,0,0,1776.7594 +2654,3297,5788,-9,5787,-9,1,0,22,0,0,0,1,1,-9,0,3,7.2030826,7.449368,0,0,0,-966.5564,-9,2,-9,2021,11,1,28,0,1,1,1,6.0854115,6.0854115,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.5,65.43000000000001,-9,-9,5,1,1,0,0,1,6,3,0,1534,-97573.07,27913.879,0,0,0,0,1331.7905 +2654,3297,5789,-9,5788,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1123.2448,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,3,0,1534,-97573.07,27913.879,0,0,0,0,1331.7905 +2654,3297,5790,-9,5788,-9,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-736.091,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,6,3,0,1534,-97573.07,27913.879,0,0,0,0,1331.7905 +2655,3298,5791,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-989.72687,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.06,29.02,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,210,-2527.4229,0,0,0,0,0,1947.5714 +2655,3299,5792,-9,5791,-9,1,1,54,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1087.3973,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.1,57.86,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,458,145384.59,0,0,0,0,0,119.84156 +2656,3300,5793,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.5421286,8.4134445,0,0,0,-940.69049,0,1,1,2021,9,0,50,50,1,0,0,12.660576,12.660576,.05,.05,0,0,0,0,0,0,0,0,0,3.525806,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,2,4,5,1,1044,144290.67,72308.008,0,0,0,0,1463.0652 +2657,3301,5794,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.8087149,8.7792816,0,0,0,-1076.7753,0,-9,-9,2021,13,2,55,46,1,2,0,12.148761,12.148761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.53,60.44,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,1417,160896.73,-54097.246,0,0,0,0,2133.574 +2658,3302,5795,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-955.7616,1,-9,-9,2021,6,0,0,70,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,12,1,0,2006,-18105.955,0,0,0,0,0,0 +2659,3303,5796,5799,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,6.5482316,7.6501999,6.6750026,18,-1,-66.683243,0,2,2,2021,12,0,58,58,1,0,0,1.5653809,1.5653809,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3065724,47.66,52.33,52.13,57.22,3.333333333333333,1,1,0,0,9,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2659,3303,5797,-9,5799,5796,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0679,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2659,3303,5798,-9,5799,5796,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.85,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2659,3303,5799,5796,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,5.5053163,5.3712339,0,21,1,47.529861,0,2,3,2021,8,0,38,34,1,0,0,.81331486,.81331486,0,0,0,0,0,0,0,0,1,1,0,5.1339283,0,52.13,57.22,47.66,52.33,1.666666666666667,1,1,0,0,9,7,2,1,972.5,330054.31,78107.656,179134.31,36661.18,446.39478,4349.2173,976.83258 +2660,3304,5800,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.8690252,7.9395056,0,0,0,-1056.1614,0,3,3,2021,8,0,39,39,1,0,0,7.706543,7.706543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,695,309022.66,253821.42,0,0,0,0,961.49689 +2661,3305,5801,5802,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,6.4647951,6.3939838,20,2,3.365387,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8790317,6.3492441,48.76,27.38,54.04,47.89,10,1,1,0,0,0,7,3,1,329,693232.88,108609.49,382749.47,0,0,0,2127.1887 +2661,3305,5802,5801,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,6.7943535,7.2910166,20,-2,50.544216,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0315204,7.1620555,54.04,47.89,48.76,27.38,0,1,1,0,0,0,7,3,1,329,693232.88,108609.49,382749.47,0,0,0,2127.1887 +2662,3306,5803,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.7611465,6.4289823,0,0,-1064.5361,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3467474,6.842598,57.33,42.93,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,2814,97546.805,122620.38,0,0,0,700.94525,1495.6791 +2663,3307,5804,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,0,6.5541663,6.6847553,0,0,-925.16571,1,-9,-9,2021,9,0,0,25,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.0233836,0,57.63,56.14,-9,-9,10,1,1,0,0,3,12,2,0,334,157434.52,22769.168,0,0,8199.666,0,800.44165 +2664,3308,5805,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.8871059,8.8848877,0,0,0,-1016.4752,0,2,2,2021,17,5,36,0,1,5,0,22.266815,22.266815,0,0,0,0,0,0,0,0,0,0,0,5.3265576,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,12,5,1,1050,972569.44,0,540808.56,0,0,0,4058.3154 +2665,3309,5806,-9,5807,5808,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.62689,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,5,1,1481,224602.08,66078.336,315725.22,192994.17,9662.7197,5872.6875,3641.7314 +2665,3309,5807,5808,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3720722,8.0749912,0,3,-3,-8.0460167,0,2,2,2021,9,0,32,38,1,0,0,13.802564,13.802564,0,0,0,0,0,0,0,0,1,1,0,1.717423,0,52.4,55.58,51.14,60.45,6.666666666666667,1,1,0,0,11,10,5,1,1481,224602.08,66078.336,315725.22,192994.17,9662.7197,5872.6875,3641.7314 +2665,3309,5808,5807,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,8.7255363,8.8324642,0,3,3,32.309757,0,-9,-9,2021,4,0,37,38,1,0,0,15.668525,15.668525,.05,.05,.05,0,0,0,0,0,1,1,0,1.5236971,0,51.14,60.45,52.4,55.58,6.666666666666667,1,1,0,0,10,10,5,1,1481,224602.08,66078.336,315725.22,192994.17,9662.7197,5872.6875,3641.7314 +2666,3310,5809,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.112772,8.3417072,0,0,0,-931.13867,0,2,2,2021,24,11,40,39,1,11,0,11.92513,11.92513,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.53,55.55,-9,-9,6.666666666666667,1,1,0,0,13,4,4,1,841,91965.719,99284.383,151172.63,75566.422,2642.5696,0,1691.0709 +2667,3311,5810,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.8059626,9.1026707,0,0,0,-1046.8018,0,2,3,2021,18,6,37,39,1,6,0,24.976194,24.976194,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.82,34.3,-9,-9,6.666666666666667,1,1,0,0,8,7,5,0,1197,1291412.1,59479.773,973769.75,0,0,0,2407.3259 +2668,3312,5811,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1142.0675,0,2,2,2021,12,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.04,56.1,-9,-9,5,4,2,0,0,11,8,1,1,656,83592.625,-66216.32,0,0,0,0,488.47281 +2669,3313,5812,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-900.59265,-9,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,40.5,31.69,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,406,148528.47,0,0,0,0,0,1936.2883 +2669,3314,5813,-9,5812,-9,1,1,26,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1003.3768,0,3,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.14,38.66,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,677,5751.3047,0,0,0,0,0,97.996109 +2670,3315,5814,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,8.0188475,7.7768745,0,0,0,-957.44794,0,3,3,2021,13,1,38,38,1,1,0,8.6238489,8.6238489,0,0,0,0,0,0,0,0,1,1,0,0,0,40.24,33.42,-9,-9,3.333333333333333,1,1,0,0,7,8,4,0,1813,-105566.65,0,0,0,0,14365.725,920.26599 +2671,3316,5815,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1019.5757,0,-9,-9,2021,15,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.39,57.63,-9,-9,6.666666666666667,1,1,1,0,6,4,1,0,131,0,0,0,0,0,0,-32.238266 +2672,3317,5816,5817,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5738168,7.3344021,0,36,0,-110.82706,0,3,3,2021,10,0,39,42,1,1,0,5.2077312,5.2077312,.05,.05,0,0,0,0,0,0,0,0,0,4.5352874,0,51,49,43.84,57.1,7,1,1,0,0,1,1,4,1,393.5,240509.31,-7354.9102,160424.22,0,0,0,1779.7266 +2672,3317,5817,5816,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9317765,8.0372496,0,36,0,25.710533,0,-9,-9,2021,12,0,30,30,1,0,0,8.5867958,8.5867958,0,0,0,0,0,0,0,0,0,0,0,4.4498639,0,43.84,57.1,51,49,3.333333333333333,1,1,0,0,9,1,4,1,393.5,240509.31,-7354.9102,160424.22,0,0,0,1779.7266 +2673,3318,5818,5821,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.58179,7.5540943,0,8,-4,6.6081009,0,2,2,2021,9,0,60,60,1,0,0,3.9866788,3.9866788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.59,61.77,48.87,58.55,10,1,1,0,0,11,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2673,3318,5819,-9,5818,5821,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6566,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2673,3318,5820,-9,5818,5821,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.553,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2673,3318,5821,5818,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,7.6915889,7.804008,0,8,4,-32.085812,0,2,1,2021,10,0,55,55,1,0,0,5.0228853,5.0228853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.59,61.77,8.333333333333334,1,1,0,0,8,7,3,1,402.25,175531.86,-9549.5049,240024.84,137764.13,0,0,2539.2095 +2674,3319,5822,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.1393104,5.4004641,0,0,-999.98792,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,2.8548021,4.529871,47.957432,0,1,1,0,0,5.337358,32.15,36.25,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,434,-30194.994,77793.094,0,0,0,0,1323.595 +2675,3320,5823,5824,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,7.9433942,8.1102924,0,5,2,-209.72865,0,1,1,2021,18,6,43,44,1,6,0,8.2368088,8.2368088,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.59,39.29,49.8,56.68,8.333333333333334,1,1,0,0,11,5,5,0,420,-40101.664,-27149.77,0,0,0,0,3284.1064 +2675,3320,5824,5823,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.4831018,8.5328465,0,5,-2,51.302139,0,-9,-9,2021,8,0,38,38,1,0,0,16.210344,16.210344,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,49.59,39.29,8.333333333333334,1,1,0,0,10,5,5,0,420,-40101.664,-27149.77,0,0,0,0,3284.1064 +2676,3321,5825,-9,5826,-9,1,0,16,0,2,0,2,2,-9,0,3,0,0,0,0,0,-970.53656,-9,1,-9,2021,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.08,45.56,-9,-9,1.666666666666667,3,4,0,0,0,8,4,0,299,-6265.4233,-76365.945,0,0,0,0,2563.791 +2676,3321,5826,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.4785404,8.5049238,0,0,0,-1071.8611,-9,1,-9,2021,12,0,37,0,1,0,0,21.3433,21.3433,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.92,53.03,-9,-9,5,3,4,0,0,8,8,4,0,299,-6265.4233,-76365.945,0,0,0,0,2563.791 +2676,3321,5827,-9,5826,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.2294,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,299,-6265.4233,-76365.945,0,0,0,0,2563.791 +2677,3322,5828,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,8.4571619,8.4506207,0,0,-956.11255,0,-9,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9175434,8.3559113,56.05,42.9,-9,-9,8.333333333333334,1,1,0,0,6,7,5,1,707,1097453.4,584016.63,552097.31,0,0,0,3456.9539 +2678,3323,5829,5830,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.1561084,8.58179,8.3888683,7,-2,8.322794,0,-9,-9,2021,8,0,35,35,1,0,0,4.4235702,4.4235702,0,0,0,0,0,0,0,0,0,0,0,3.7164001,8.3591547,58.72,51.29,50.58,51.02,8.333333333333334,1,1,0,0,12,12,4,1,588.5,958312.13,976432.88,0,0,663.30493,0,3102.332 +2678,3323,5830,5829,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.8014684,6.608479,7,2,-180.15237,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.76934057,6.66822,50.58,51.02,58.72,51.29,8.333333333333334,1,1,0,0,12,12,4,1,588.5,958312.13,976432.88,0,0,663.30493,0,3102.332 +2679,3324,5831,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,6.5537581,6.3150425,0,0,-975.30585,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3603299,6.6318541,45.69,19.85,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,304,378216.06,0,151081.88,0,0,0,1662.2068 +2680,3325,5832,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.1086493,7.9307303,0,0,0,-1053.5114,0,2,-9,2021,11,0,37,38,1,0,0,7.2343287,7.2343287,0,0,0,0,0,0,0,2,0,0,0,0,0,41.23,38.09,-9,-9,5,1,1,0,1,12,5,4,0,231,161287.13,84544.906,-8247.8809,0,0,0,1507.8796 +2681,3326,5833,5834,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.5381269,8.6867123,0,3,0,-66.910576,0,-9,-9,2021,13,1,38,38,1,1,0,16.586426,16.586426,.05,.05,0,0,0,0,0,0,0,0,0,3.1596932,0,49.25,61.25,31.6,57.32,8.333333333333334,1,1,0,0,3,10,5,1,821.5,817314.38,56228.934,292682.13,21258.711,0,0,3567.7026 +2681,3326,5834,5833,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.3806429,8.5531178,0,3,9,68.562485,0,-9,-9,2021,18,6,37,37,1,6,0,13.59596,13.59596,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.6,57.32,49.25,61.25,6.666666666666667,1,1,0,0,7,10,5,1,821.5,817314.38,56228.934,292682.13,21258.711,0,0,3567.7026 +2682,3327,5835,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1081.7859,-9,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34,28,-9,-9,5,1,1,0,1,0,10,1,0,958,-22464.283,0,0,0,0,0,1281.3632 +2683,3328,5836,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.7431107,7.6824903,0,0,0,-962.19543,0,2,2,2021,12,0,37,40,1,0,0,6.5576344,6.5576344,0,0,0,0,0,0,0,0,0,0,0,0,0,35.03,51.4,-9,-9,5,1,1,0,0,10,13,3,1,471,-162484.61,112118.11,0,0,0,0,689.0899 +2684,3329,5837,5838,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.3473964,7.4753022,0,21,-1,40.707855,0,2,2,2021,7,0,26,25,1,0,0,7.9208593,7.9208593,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.99,53.75,6.666666666666667,1,1,0,0,9,7,5,1,996.5,121538.75,30021.965,167584.16,44778.781,1710.1304,0,3425.115 +2684,3329,5838,5837,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.676754,8.6546469,0,21,1,48.469086,0,3,2,2021,19,7,77,69,1,7,0,9.4371223,9.4371223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.99,53.75,57.06,57.76,10,1,1,0,0,9,7,5,1,996.5,121538.75,30021.965,167584.16,44778.781,1710.1304,0,3425.115 +2685,3330,5839,5840,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.9059758,7.334702,11,-1,-73.325722,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5279794,7.3841996,57.76,54.51,57.16,56.15,8.333333333333334,1,1,0,0,0,11,4,1,986,851845.5,402665.56,510002.13,0,0,0,3595.844 +2685,3330,5840,5839,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.7932448,7.8673468,11,1,13.413721,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4439089,7.5677428,57.16,56.15,57.76,54.51,8.333333333333334,1,1,0,0,0,11,4,1,986,851845.5,402665.56,510002.13,0,0,0,3595.844 +2686,3331,5841,5842,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.6005964,8.5041733,45,0,-143.61349,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.591661,8.461751,49.37,56.01,48.75,50.9,8.333333333333334,1,1,0,0,3,10,4,1,525.5,1439741.5,718547.44,492731.63,0,0,0,3890.9043 +2686,3331,5842,5841,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.8901172,5.1304593,45,0,-14.782528,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6481442,5.4621911,48.75,50.9,49.37,56.01,8.333333333333334,1,1,0,0,0,10,4,1,525.5,1439741.5,718547.44,492731.63,0,0,0,3890.9043 +2687,3332,5843,-9,5845,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.74921,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,847.66669,112521.28,161037.19,259696.48,189191.11,933.92572,0,2352.6257 +2687,3332,5844,-9,5845,-9,1,1,16,0,2,1,3,0,-9,0,4,0,4.8044372,4.748281,0,0,-966.32544,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4507346,0,54.2,57.49,-9,-9,10,1,1,0,0,0,6,3,1,847.66669,112521.28,161037.19,259696.48,189191.11,933.92572,0,2352.6257 +2687,3332,5845,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,8.2091074,8.2686996,6.6458335,0,0,-857.14966,0,3,1,2021,7,0,23,20,1,0,0,17.702761,17.702761,.05,.05,0,0,0,0,0,0,1,1,0,7.28898,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,847.66669,112521.28,161037.19,259696.48,189191.11,933.92572,0,2352.6257 +2688,3333,5846,5847,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,27,-4,0,0,-9,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44.59,25.68,27.8,29.48,6.666666666666667,1,1,0,0,0,12,1,0,385,26696.342,151193.69,0,0,0,0,1154.7181 +2688,3333,5847,5846,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,0,0,27,4,0,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.8,29.48,44.59,25.68,5,1,1,0,0,0,12,1,0,385,26696.342,151193.69,0,0,0,0,1154.7181 +2689,3334,5848,5849,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.7369738,7.5497556,0,31,10,69.906464,0,2,1,2021,12,0,39,40,1,0,0,10.445807,10.445807,0,0,0,0,0,0,0,0,0,0,0,0,0,40.95,46.03,50.17,42.09,6.666666666666667,1,1,0,0,10,7,4,1,671.5,3254541,730626.06,1683288.3,0,0,0,1641.9714 +2689,3334,5849,5848,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.3061314,8.4328957,0,31,-10,23.193071,0,2,2,2021,13,3,43,40,1,3,0,12.017757,12.017757,0,0,0,0,0,0,0,0,0,0,0,0,0,50.17,42.09,40.95,46.03,6.666666666666667,1,1,0,0,12,7,4,1,671.5,3254541,730626.06,1683288.3,0,0,0,1641.9714 +2689,3335,5850,-9,5849,5848,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-799.11108,1,1,1,2021,12,0,0,37,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.65,59.49,-9,-9,6.666666666666667,1,1,0,0,3,7,1,1,370,161275.34,0,0,0,0,0,0 +2690,3336,5851,5852,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,8.3414488,8.6721544,44,-3,-21.859884,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1419477,8.3884687,53.86,49.64,50.67,50.08,8.333333333333334,1,1,0,0,0,8,5,1,889,2196300,1794654,387228.56,0,0,0,6454.6733 +2690,3336,5852,5851,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.4352818,8.6694193,44,3,34.180233,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9578485,8.8588457,50.67,50.08,53.86,49.64,8.333333333333334,1,1,0,0,0,8,5,1,889,2196300,1794654,387228.56,0,0,0,6454.6733 +2691,3337,5853,5854,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5696764,8.7421551,0,6,4,-11.015006,0,-9,-9,2021,7,0,40,40,1,0,0,17.166374,17.166374,.05,.05,0,0,0,0,0,0,0,0,0,3.8368397,0,55.79,52.62,34.36,57.34,8.333333333333334,1,1,0,0,9,5,4,1,1701,943892.19,937815.88,153634.92,0,12093.32,0,2734.0151 +2691,3337,5854,5853,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,6.9265833,6.9759531,0,6,-4,96.125488,0,3,3,2021,14,2,21,21,1,2,0,7.9445748,7.9445748,0,0,0,0,0,0,0,2,0,0,0,0,0,34.36,57.34,55.79,52.62,1.666666666666667,1,1,0,0,6,5,4,1,1701,943892.19,937815.88,153634.92,0,12093.32,0,2734.0151 +2692,3338,5855,5856,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1168165,7.9846511,0,9,8,138.96817,0,2,2,2021,10,2,44,39,1,2,0,9.3611193,9.3611193,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.97,51.29,39.8,43.63,10,1,1,0,0,10,6,4,0,468,69182.469,79675.313,93778.555,64949.035,4083.3286,5549.7642,1861.9321 +2692,3338,5856,5855,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,7.9800749,7.8482409,0,9,-8,-58.57,0,-9,-9,2021,19,7,42,39,1,7,0,7.8523002,7.8523002,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.8,43.63,52.97,51.29,8.333333333333334,1,1,0,0,10,6,4,0,468,69182.469,79675.313,93778.555,64949.035,4083.3286,5549.7642,1861.9321 +2693,3339,5857,5859,-9,-9,1,1,44,1,1,0,2,2,-9,0,4,8.3094063,8.2674007,0,4,15,45.699608,0,-9,-9,2021,7,0,40,40,1,0,0,12.066931,12.066931,.05,.05,0,0,0,0,0,0,1,1,0,.20306537,0,44.98,57.48,44.78,56.37,8.333333333333334,1,1,0,0,13,9,4,1,1378.3334,459880.84,99466.844,438604.59,22197.816,0,0,2379.3809 +2693,3339,5858,-9,5859,5857,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-937.47736,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,4,1,1378.3334,459880.84,99466.844,438604.59,22197.816,0,0,2379.3809 +2693,3339,5859,5857,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,7.1842456,6.9624405,4,-15,18.722038,0,-9,-9,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4674578,0,44.78,56.37,44.98,57.48,8.333333333333334,1,1,0,0,0,9,4,1,1378.3334,459880.84,99466.844,438604.59,22197.816,0,0,2379.3809 +2694,3340,5860,5862,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.7520456,8.8758202,0,34,1,-73.708893,0,3,1,2021,9,0,65,70,1,0,0,11.103614,11.103614,0,0,.05,0,0,0,0,0,1,1,0,6.3438787,0,58.15,52.91,55.6,47.8,8.333333333333334,1,1,0,0,10,13,5,1,1801,2476635.5,2116629.3,467201.22,207668.39,0,0,4669.1162 +2694,3340,5861,-9,5862,5860,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1045.0481,1,1,1,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,8.333333333333334,1,1,0,0,1,13,5,1,1801,2476635.5,2116629.3,467201.22,207668.39,0,0,4669.1162 +2694,3340,5862,5860,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.5015001,8.5820084,0,34,-1,-14.725434,0,2,2,2021,11,0,37,38,1,0,0,16.753778,16.753778,0,0,0,0,0,0,0,0,1,1,0,0,0,55.6,47.8,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,1801,2476635.5,2116629.3,467201.22,207668.39,0,0,4669.1162 +2694,3341,5863,-9,5862,5860,1,1,26,0,0,0,1,1,-9,0,4,8.83951,8.7521982,0,0,0,-860.30164,-9,2,2,2021,7,0,47,0,1,0,1,13.993363,13.993363,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.82,50.73,-9,-9,6.666666666666667,1,1,0,0,7,13,5,1,569,-85553.359,83204.367,0,0,0,0,1902.0848 +2694,3342,5864,-9,5862,5860,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-981.61798,1,2,2,2021,17,5,0,5,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,59.72,-9,-9,3.333333333333333,1,1,0,1,6,13,1,1,359,-35863.824,0,0,0,0,0,0 +2694,3343,5865,-9,5862,5860,1,1,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1002.4284,-9,1,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,3,13,1,1,148,56386.492,0,0,0,0,0,70.62381 +2695,3344,5866,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.5014153,8.9822216,0,0,0,-1047.3551,0,3,2,2021,7,1,50,30,1,1,0,12.494205,12.494205,0,0,0,0,0,0,0,0,0,0,0,0,0,45.35,56.22,-9,-9,6.666666666666667,2,3,0,0,4,8,5,0,185,-36050.113,0,0,0,0,0,2364.8005 +2696,3345,5867,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.86903,8.6181726,0,0,0,-1006.2152,0,-9,-9,2021,5,0,48,40,1,0,0,14.984577,14.984577,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,1188,144342.36,72449.641,0,0,0,0,2845.2319 +2697,3346,5868,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.876461,8.9971924,0,0,-1020.805,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,9.1522465,8.8429394,49.97,53.99,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,150,1559355.1,1064522.1,376726.88,0,0,0,4836.7397 +2698,3347,5869,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.0716314,7.3616657,0,0,-882.5575,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3100309,60.2,39.82,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,520,484766.28,356644.53,129104.83,0,0,0,1590.0576 +2699,3348,5870,5871,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,1,-17.904522,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,31.479025,0,0,1,1,0,0,0,38.94,27.06,39.39,37.66,6.666666666666667,1,1,0,0,0,13,2,1,1074,86149.141,97539.117,0,0,2746.8413,0,1340.7255 +2699,3348,5871,5870,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.2361684,5.9758878,10,-1,63.167439,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,4.1012363,0,74.5,1,1,0,.95845228,6.028966,39.39,37.66,38.94,27.06,6.666666666666667,1,1,0,0,0,13,2,1,1074,86149.141,97539.117,0,0,2746.8413,0,1340.7255 +2700,3349,5872,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.3098011,8.2439127,0,0,0,-1041.2113,0,-9,2,2021,11,0,36,36,1,0,0,14.974056,14.974056,.05,.05,0,0,0,0,0,0,1,0,1,2.4393833,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,13,8,5,0,791,266357.22,-58880.313,283299.88,0,0,0,1482.036 +2700,3350,5873,-9,5872,-9,1,1,31,0,0,0,1,1,-9,0,2,8.6353884,8.6760902,0,0,0,-980.43341,0,2,-9,2021,12,1,45,48,1,1,1,14.7469,14.7469,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.92,46.88,-9,-9,6.666666666666667,1,1,0,0,13,8,5,0,100,437252.5,156151.05,358612.53,70621.117,0,0,2700.5854 +2700,3351,5874,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,2,7.4407468,7.2942977,0,0,0,-1070.619,-9,-9,-9,2021,13,3,25,0,1,3,0,6.1713262,6.1713262,0,0,0,0,0,0,0,0,1,0,1,.32201827,0,39.04,42.97,-9,-9,8.333333333333334,4,2,0,0,3,8,3,0,486,-131899.64,0,0,0,0,0,1074.7584 +2701,3352,5875,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.4138975,5.4240985,0,0,-951.51648,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9508284,5.4029102,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,519,121249.9,25607.113,216979.67,0,0,0,2138.5752 +2702,3353,5876,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1016.4592,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.43,42.24,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,1542,-71389.578,0,0,0,0,0,1079.7974 +2703,3354,5877,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.1190085,7.3647866,0,0,-1087.9689,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4426951,37.42,30.57,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,597,378731.28,206090.81,0,0,0,0,1883.5305 +2704,3355,5878,-9,5879,5880,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-911.48395,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2704,3355,5879,5880,-9,-9,1,0,28,1,2,0,2,2,-9,0,5,7.3056254,7.5676031,0,4,-1,-11.794327,0,1,2,2021,8,0,20,0,1,0,0,11.509535,11.509535,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,36.83,58.53,0,1,1,0,0,6,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2704,3355,5880,5879,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,2.2448671,2.2983334,0,4,1,36.611149,-9,-9,-9,2021,12,1,40,0,1,1,0,.027798401,.027798401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.83,58.53,57.06,57.76,10,1,1,0,0,11,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2704,3355,5881,-9,5879,5880,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.4031,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,1,812.5,-4491.1523,25410.271,223394.45,199584.08,9294.6016,0,797.49707 +2705,3356,5882,5883,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.533082,7.703403,5,-1,12.205252,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4909973,47.27,51.2,49.91,56.93,5,1,1,0,0,0,2,3,1,828,939369.38,261654.97,213610.84,0,0,0,3477.1118 +2705,3356,5883,5882,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,6.8372841,6.6619525,44,1,3.5622363,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5402703,7.1941347,49.91,56.93,47.27,51.2,5,1,1,0,0,0,2,3,1,828,939369.38,261654.97,213610.84,0,0,0,3477.1118 +2706,3357,5884,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.0942731,6.1220951,0,0,-957.29865,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1799545,48.73,54.59,-9,-9,10,1,1,0,0,4,9,2,1,1209,361673.31,-287.30707,0,0,0,0,1661.5507 +2707,3358,5885,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.3472509,8.5191898,0,0,0,-1151.2751,0,2,2,2021,12,0,40,37,1,0,0,14.975816,14.975816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.65,58.34,-9,-9,6.666666666666667,1,1,0,0,7,10,5,0,817,295425.75,342695.91,74854.625,122533.62,1710.5321,0,2237.9043 +2707,3359,5886,-9,5885,-9,1,1,30,0,0,0,1,1,-9,0,5,8.3685436,8.6424046,0,0,0,-1055.762,-9,2,-9,2021,8,1,48,0,1,1,1,8.2096729,8.2096729,.05,.05,0,0,0,0,0,0,0,0,0,3.0573533,0,51.73,58.82,-9,-9,10,1,1,0,0,1,10,4,0,607,300330.28,-54233.227,0,0,1323.5107,0,2119.4829 +2708,3360,5887,-9,5888,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.9473,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1346,535804,486475.81,108171.66,87468.406,0,0,2891.1367 +2708,3360,5888,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.0016336,8.9102526,0,0,0,-1005.7082,0,2,2,2021,13,4,40,35,1,4,0,19.004322,19.004322,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.04,63.76,-9,-9,6.666666666666667,1,1,0,0,14,12,5,1,1346,535804,486475.81,108171.66,87468.406,0,0,2891.1367 +2709,3361,5889,-9,5890,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.6884,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,493,74589.734,0,0,0,0,-791.06403,1415.5471 +2709,3361,5890,-9,-9,-9,1,0,35,0,1,0,2,2,-9,1,2,5.0467763,4.9647517,0,0,0,-1032.4724,0,2,2,2021,25,11,2,0,1,11,0,6.3115826,6.3115826,0,0,0,0,0,0,0,0,1,1,0,0,0,23.02,33.05,-9,-9,3.333333333333333,1,1,0,0,5,2,2,0,493,74589.734,0,0,0,0,-791.06403,1415.5471 +2709,3362,5891,-9,5890,-9,1,0,18,0,1,0,2,2,-9,0,3,6.7160296,6.838892,0,0,0,-1092.5203,0,2,-9,2021,25,11,26,0,1,11,1,4.95333,4.95333,0,0,0,0,0,0,0,0,1,1,0,0,0,23.44,61.18,-9,-9,5,1,1,0,0,1,2,2,0,1215,-167640.86,0,0,0,6129.7964,0,503.1438 +2710,3363,5892,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6676674,8.3821459,0,0,0,-967.44824,0,1,2,2021,10,0,38,41,1,0,0,18.009024,18.009024,.05,.05,0,0,0,0,0,0,0,0,0,3.7249217,0,49.52,55.68,-9,-9,10,1,1,0,0,11,12,5,1,1302,137689.67,54130.492,0,0,0,0,1444.7062 +2711,3364,5893,5895,-9,-9,1,1,31,0,1,0,2,2,-9,0,4,8.1440725,7.9843502,0,8,4,3.6628883,0,-9,-9,2021,11,0,40,39,1,2,0,9.0369577,9.0369577,0,0,0,0,0,0,0,0,1,1,0,3.2507799,0,48,58,46,58,7,1,1,0,0,1,4,4,0,1001.3333,-98039.602,18387.48,0,0,40186.559,431.5574,2771.6868 +2711,3364,5894,-9,5895,5893,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.18799,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,1001.3333,-98039.602,18387.48,0,0,40186.559,431.5574,2771.6868 +2711,3364,5895,5893,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.709425,7.841321,0,8,-4,100.13612,0,3,3,2021,12,0,38,16,1,2,0,6.8425293,6.8425293,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,48,58,7,1,1,0,0,1,4,4,0,1001.3333,-98039.602,18387.48,0,0,40186.559,431.5574,2771.6868 +2712,3365,5896,5897,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,5.8678141,6.5528207,5.8858719,3,1,-65.448418,0,1,1,2021,7,0,25,10,1,0,0,1.5386208,1.5386208,.05,.05,0,0,0,0,0,2,0,0,0,5.9745264,6.086453,61.06,26.16,50.03,52.62,8.333333333333334,1,1,0,0,10,5,3,1,501.5,61022.93,29878.213,0,0,1773.8328,1929.1953,1831.9551 +2712,3365,5897,5896,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.9375992,7.6507421,0,3,-1,43.549908,-9,-9,-9,2021,7,0,40,0,1,0,0,10.553698,10.553698,.05,.05,0,0,0,0,0,0,0,0,0,2.2694931,0,50.03,52.62,61.06,26.16,8.333333333333334,1,1,0,0,10,5,3,1,501.5,61022.93,29878.213,0,0,1773.8328,1929.1953,1831.9551 +2712,3366,5898,-9,5897,5896,1,0,22,0,0,0,2,2,1,0,5,0,0,0,0,0,-943.36133,-9,1,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,1,0,0,5,1,1,1142,-98514.305,0,0,0,0,0,0 +2713,3367,5899,5900,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,4.4257474,4.7724519,42,15,-23.682215,0,-9,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,43.108341,47.534519,386.85242,0,1,1,0,5.1799912,4.3686423,36.81,33.53,52.41,36.64,6.666666666666667,4,2,0,1,9,9,2,1,242,-118340.1,0,0,0,0,0,1850.3208 +2713,3367,5900,5899,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,42,-15,61.609245,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,52.41,36.64,36.81,33.53,8.333333333333334,3,4,0,1,6,9,2,1,242,-118340.1,0,0,0,0,0,1850.3208 +2714,3368,5901,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,7.263958,7.6106148,6.4528556,0,0,-883.86523,0,2,2,2021,11,0,15,15,1,0,0,8.5749235,8.5749235,0,0,0,0,0,0,0,0,1,1,0,5.5768514,6.5739179,44.6,42.25,-9,-9,5,1,1,0,0,6,9,3,0,1045,680453.38,250585.47,310015.22,35941.594,0,0,1447.0856 +2715,3369,5902,5903,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,9.7558775,9.904808,0,9,-1,-113.78378,0,2,3,2021,9,0,45,45,1,0,0,36.000893,36.000893,.05,.05,0,0,0,0,0,0,0,0,0,5.0522099,0,57.51,42.37,48.28,60.18,8.333333333333334,1,1,0,0,10,7,5,1,363,991873.5,105686.81,569772.19,70789.453,0,0,12461.379 +2715,3369,5903,5902,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.1641083,9.1530428,0,9,1,-262.71951,0,2,2,2021,10,2,50,58,1,2,0,25.01013,25.01013,.05,.05,0,0,0,0,0,0,0,0,0,4.1165128,0,48.28,60.18,57.51,42.37,8.333333333333334,1,1,0,0,10,7,5,1,363,991873.5,105686.81,569772.19,70789.453,0,0,12461.379 +2716,3370,5904,5905,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,5.1448002,4.9739995,10,3,49.515846,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2697129,57.16,56.15,57.51,31.85,8.333333333333334,1,1,0,0,0,4,3,1,548,835266.75,412810.25,161626.81,0,0,0,2200.7585 +2716,3370,5905,5904,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,7.5851355,7.6729817,49,-3,-17.020311,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7825966,7.8597126,57.51,31.85,57.16,56.15,8.333333333333334,1,1,0,0,0,4,3,1,548,835266.75,412810.25,161626.81,0,0,0,2200.7585 +2717,3371,5906,5907,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,6.8260393,6.5821095,0,8,-8,-130.75015,0,3,2,2021,12,0,12,12,1,2,0,9.0640621,9.0640621,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,46.92,60.71,7,1,1,0,0,1,7,5,1,859.5,71191.063,-31335.344,0,0,0,0,3897.4028 +2717,3371,5907,5906,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.7541566,9.0227375,8.787097,8,8,131.77028,0,2,2,2021,13,3,45,40,1,3,0,6.0494761,6.0494761,.05,.05,0,0,0,0,0,2,0,0,0,0,8.6984081,46.92,60.71,48,49,6.666666666666667,1,1,0,0,9,7,5,1,859.5,71191.063,-31335.344,0,0,0,0,3897.4028 +2718,3372,5908,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,5.7661104,6.4207897,0,0,-949.47754,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9732008,5.8325591,57.07,43.85,-9,-9,6.666666666666667,1,1,0,0,10,12,2,1,1375,60891.758,-62319.379,109403.97,0,0,0,870.25562 +2719,3373,5909,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.7149811,6.5302048,0,0,-981.04138,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6283722,46.55,43.16,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,120,44811.848,133737.77,133962.58,0,0,0,756.76526 +2720,3374,5910,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.6361003,6.9232802,0,0,-967.67969,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5810099,6.9833984,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1285,183358.58,76997.711,0,0,0,0,1978.149 +2721,3375,5911,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1039.3397,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.99,39.1,-9,-9,10,1,1,0,1,0,7,2,1,1975,247096.95,-7664.9868,0,0,0,0,83.530785 +2722,3376,5912,-9,5913,5915,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.72314,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2722,3376,5913,5915,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,7.8259535,7.935174,0,8,-5,-30.504416,-9,-9,-9,2021,11,0,65,0,1,2,0,5.0579743,5.0579743,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,44.7,53.68,7,1,1,0,0,1,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2722,3376,5914,-9,5913,5915,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.66901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2722,3376,5915,5913,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,9.1840277,9.1019287,0,8,5,-17.63129,0,2,2,2021,7,0,45,45,1,0,0,16.374241,16.374241,.05,.05,.05,0,0,0,0,0,1,1,0,3.933269,0,44.7,53.68,48,56,5,1,1,0,0,9,2,5,1,567.25,579471.38,452829.63,245051.19,133850.22,11618.56,0,3074.5347 +2723,3377,5916,5917,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.7847509,8.725297,0,8,0,16.720617,0,1,-9,2021,7,0,50,50,1,0,0,15.803463,15.803463,.05,.05,0,0,0,0,0,0,0,0,0,1.9072572,0,57.9,51.84,60.03,45.37,8.333333333333334,1,1,0,0,10,2,5,1,721.5,694500.38,442117.75,95163.875,0,0,0,3966.2522 +2723,3377,5917,5916,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8437414,7.7854166,0,8,0,62.094551,0,1,2,2021,8,0,41,39,1,0,0,5.6781802,5.6781802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.03,45.37,57.9,51.84,8.333333333333334,1,1,0,0,7,2,5,1,721.5,694500.38,442117.75,95163.875,0,0,0,3966.2522 +2723,3378,5918,-9,5917,5916,1,1,18,0,0,0,2,2,-9,0,3,7.0667562,7.3420019,0,0,0,-880.17139,0,2,2,2021,11,2,37,0,1,2,1,3.9786088,3.9786088,0,0,0,0,0,0,0,0,0,0,0,0,0,45.98,56.3,-9,-9,3.333333333333333,1,1,0,1,1,2,3,1,2614,204306.89,0,0,0,0,0,831.42572 +2724,3379,5919,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1065.6017,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,13,1,1,91,101715.29,0,123411.48,0,0,0,373.67419 +2724,3380,5920,-9,-9,5919,1,0,24,0,0,0,2,2,-9,0,3,8.0926466,8.0214901,0,0,0,-993.04224,0,2,2,2021,8,0,30,35,1,0,0,13.717506,13.717506,0,0,0,0,0,0,0,0,1,1,0,0,0,40.1,54.56,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,156,-19563.725,0,0,0,0,0,1139.2562 +2725,3381,5921,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,5,0,6.6840744,6.4558072,0,0,-1059.4749,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0815873,6.2441196,60.42,54.81,-9,-9,10,1,1,0,0,0,1,2,1,317,228910.67,-40177.949,120670.56,0,0,0,870.73615 +2726,3382,5922,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.2983212,7.4313593,0,0,-973.6781,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1386642,7.4590273,54.02,23.97,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,378,394644.91,147671.84,293776.13,0,0,0,1061.0709 +2727,3383,5923,-9,5924,-9,1,1,26,0,0,0,1,1,-9,0,5,0,0,0,0,0,-969.6684,0,2,1,2021,21,8,0,36,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,60.02,-9,-9,6.666666666666667,2,3,1,0,4,8,1,1,1863,-60038.641,0,0,0,0,0,0 +2727,3384,5924,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,8.0158424,8.0880966,0,0,-941.12262,0,-9,-9,2021,14,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.085834,7.9293532,28.33,43.87,-9,-9,8.333333333333334,2,3,0,0,0,8,3,1,250,353150.91,173819.27,307792.78,-17930.801,0,0,2059.5127 +2728,3385,5925,5926,-9,-9,1,1,54,0,0,0,1,1,0,0,3,0,0,0,29,1,-53.510586,-9,2,3,2021,12,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,2.7404959,0,41.45,58.1,48.29,47.89,6.666666666666667,1,1,0,0,2,6,5,1,151.5,3036310.5,2399389,412780.31,0,0,0,8600.4336 +2728,3385,5926,5925,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.60958,9.4074173,0,30,-1,-138.00275,0,2,2,2021,12,0,49,52,1,0,0,41.084766,41.084766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.29,47.89,41.45,58.1,8.333333333333334,1,1,0,0,12,6,5,1,151.5,3036310.5,2399389,412780.31,0,0,0,8600.4336 +2728,3386,5927,-9,5926,5925,1,1,22,0,0,1,3,0,0,0,3,0,0,0,0,0,-1045.1116,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,595,81268.125,0,0,0,0,0,0 +2728,3387,5928,-9,5926,5925,1,1,20,0,0,1,2,0,0,0,3,0,5.3418689,5.979135,0,0,-1120.9415,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7402596,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,6,2,1,441,219433.53,0,0,0,-822.3172,0,-126.04548 +2729,3388,5929,5930,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.524909,8.7457447,0,11,2,88.268814,0,-9,-9,2021,8,0,45,48,1,0,0,15.216555,15.216555,.05,.05,0,0,0,0,0,0,1,1,0,3.3910506,0,57.16,56.15,60.13,49.27,8.333333333333334,1,1,0,0,7,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2729,3388,5930,5929,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.8050442,7.8154378,0,23,-2,-167.95091,0,2,2,2021,8,0,32,30,1,0,0,9.3735189,9.3735189,0,0,0,0,0,0,0,0,1,1,0,2.9252682,0,60.13,49.27,57.16,56.15,10,1,1,0,0,12,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2729,3388,5931,-9,5930,5929,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1000.578,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2729,3388,5932,-9,5930,5929,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1033.5901,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,441,572528.69,145551.5,490160.75,0,0,0,3325.7129 +2730,3389,5933,-9,5937,5935,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.323,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5934,-9,5937,5935,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-798.83197,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5935,5937,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,8.3293219,8.3325653,0,16,7,-36.621735,0,-9,-9,2021,14,3,53,55,1,3,0,12.033966,12.033966,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.33,44.92,39.33,58.88,5,2,3,0,1,10,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5936,-9,5937,5935,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.9121,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2730,3389,5937,5935,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,16,-7,-18.655813,0,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,58.88,31.33,44.92,6.666666666666667,2,3,0,0,0,6,3,1,831.40002,247438.42,77181.945,177628.52,97600.914,0,0,2635.6016 +2731,3390,5938,5939,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.4074316,9.955368,0,7,0,19.245367,0,1,1,2021,7,0,41,43,1,0,0,33.807053,33.807053,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,46.61,56.93,6.666666666666667,1,1,0,0,8,6,5,1,828.5,1408169.3,1181208.8,322865.88,25904.836,0,0,8503.1475 +2731,3390,5939,5938,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.4175863,9.4856377,0,7,0,25.391504,0,3,2,2021,12,2,53,55,1,2,0,25.381886,25.381886,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,55.34,54.26,6.666666666666667,1,1,0,0,8,6,5,1,828.5,1408169.3,1181208.8,322865.88,25904.836,0,0,8503.1475 +2731,3391,5940,-9,5939,5938,1,1,21,0,0,0,1,1,1,0,4,7.5264845,7.7457438,0,0,0,-834.63678,-9,1,1,2021,9,1,30,0,1,1,1,9.5017548,9.5017548,0,0,0,0,0,0,0,0,0,0,0,0,0,45.65,54.59,-9,-9,3.333333333333333,1,1,0,0,3,6,3,1,614,72660.07,0,0,0,0,0,1325.2142 +2732,3392,5941,5942,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4481468,8.3620234,0,7,5,89.667175,0,2,2,2021,13,1,40,40,1,1,0,12.821823,12.821823,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.54,59.67,52,54.51,6.666666666666667,1,1,0,0,10,9,5,1,1626,-39755.121,58647.754,0,0,0,0,2787.0479 +2732,3392,5942,5941,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.225769,8.3998718,0,7,-5,-13.022942,0,-9,-9,2021,9,0,38,38,1,0,0,11.518354,11.518354,.05,.05,0,0,0,0,0,0,0,0,0,2.7307088,0,52,54.51,34.54,59.67,8.333333333333334,1,1,0,0,11,9,5,1,1626,-39755.121,58647.754,0,0,0,0,2787.0479 +2733,3393,5943,5944,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.861341,8.5187998,7.0978513,4,11,80.223885,0,2,2,2021,6,0,55,60,1,0,0,5.1467772,5.1467772,0,0,.05,0,0,0,0,0,0,0,0,4.0486336,7.2135687,48.67,49.54,25.99,63.8,5,1,1,0,0,10,10,5,1,454,2367083,1653158.9,660648.81,0,1560.063,6822.4634,4128.3662 +2733,3393,5944,5943,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.2556038,8.1046133,0,4,-11,-7.8137021,0,-9,2,2021,28,12,38,38,1,12,0,12.150702,12.150702,0,0,0,0,0,0,0,2,0,0,0,7.5098262,0,25.99,63.8,48.67,49.54,1.666666666666667,1,1,0,0,13,10,5,1,454,2367083,1653158.9,660648.81,0,1560.063,6822.4634,4128.3662 +2734,3394,5945,5946,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,8.135046,8.5422449,31,0,103.03192,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.4665875,8.2464151,57.16,56.15,52,53,8.333333333333334,1,1,0,0,0,10,5,1,552,137952.58,68104.922,197298.67,76358.68,0,0,4167.7456 +2734,3394,5946,5945,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2099333,8.1553173,0,6,0,-83.040497,0,-9,-9,2021,10,0,25,25,1,1,0,16.013426,16.013426,.05,.05,0,0,0,0,0,0,0,0,0,5.2837772,0,52,53,57.16,56.15,8,1,1,0,0,1,10,5,1,552,137952.58,68104.922,197298.67,76358.68,0,0,4167.7456 +2735,3395,5947,5948,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,52,-4,48.375507,0,3,-9,2021,23,8,0,0,4,8,0,0,0,0,0,0,1,0,38.526848,0,0,1,1,0,0,0,40.39,16.93,60.29,52.11,6.666666666666667,2,3,0,1,0,5,2,1,1981.5,767970.5,351708.69,243142.53,0,747.4455,859.76538,1417.3726 +2735,3395,5948,5947,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.9718313,7.098177,52,4,26.131647,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.1587315,7.0660119,60.29,52.11,40.39,16.93,10,2,3,0,0,0,5,2,1,1981.5,767970.5,351708.69,243142.53,0,747.4455,859.76538,1417.3726 +2736,3396,5949,-9,-9,5950,1,0,20,0,0,0,2,2,-9,0,3,7.6548696,7.7208958,0,0,0,-1051.5519,0,-9,1,2021,23,11,35,8,1,11,1,5.3696413,5.3696413,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,56.27,-9,-9,5,4,2,0,0,3,9,3,1,804,-69197.82,0,0,0,0,0,1413.7395 +2736,3397,5950,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.3242111,8.2002583,5.0808172,0,0,-1037.2352,0,-9,-9,2021,11,0,50,21,1,0,0,6.2917094,6.2917094,0,0,0,0,0,0,0,0,1,1,0,0,5.977778,52.01,48.98,-9,-9,5,1,1,0,0,4,9,4,1,1147,1166864.9,859019.06,383204.41,0,0,10506.225,1724.4683 +2737,3398,5951,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1116.4808,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.49,31.44,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,200,-14698.616,0,0,0,0,0,804.06647 +2738,3399,5952,-9,-9,-9,1,0,72,0,1,0,2,2,-9,0,2,7.6320271,7.1014714,0,0,0,-1028.2725,0,3,3,2021,14,2,20,20,1,2,0,9.9971418,9.9971418,0,0,0,0,0,0,0,0,1,1,0,0,0,48,33.66,-9,-9,5,1,1,0,0,12,12,2,1,641,539644.94,348706.5,154728.91,0,0,0,1051.0421 +2739,3400,5953,5954,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,7.9339881,7.7932115,44,1,-28.082945,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,1,0,0,0,2,1,1,0,3.8167038,8.1225166,42.33,22.79,43.37,57.28,3.333333333333333,1,1,0,0,0,2,4,1,172.5,763975.94,642665.56,169875.09,0,15604.274,0,3474.8794 +2739,3400,5954,5953,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.0868096,7.3150544,44,-1,15.152698,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3200846,7.2549872,43.37,57.28,42.33,22.79,8.333333333333334,1,1,0,0,6,2,4,1,172.5,763975.94,642665.56,169875.09,0,15604.274,0,3474.8794 +2740,3401,5955,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.9787674,6.7946792,0,0,-1054.9235,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8745885,6.8998857,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,555,551645,-32729.205,135774.75,0,0,0,1238.9308 +2741,3402,5956,5957,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.5549603,7.9669752,48,0,112.60529,0,2,1,2021,13,2,0,0,4,2,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,7.790513,8.0762444,44.92,25.5,54.13,48.04,6.666666666666667,1,1,0,0,7,6,3,1,688.5,282192,146545.48,110604.18,0,0,0,4889.4951 +2741,3402,5957,5956,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.5125523,7.5804868,48,0,16.214552,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8272514,7.3788843,54.13,48.04,44.92,25.5,8.333333333333334,1,1,0,0,2,6,3,1,688.5,282192,146545.48,110604.18,0,0,0,4889.4951 +2742,3403,5958,5959,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,8.8615284,8.8879957,0,1,-7,30.761013,-9,-9,-9,2021,5,1,47,0,1,1,0,21.426273,21.426273,0,0,0,0,0,0,0,0,0,0,0,3.6659482,0,47.93,56.36,47.95,51.28,8.333333333333334,1,1,0,0,1,12,5,1,1877.5,1884732.1,1068531.6,343147.19,103601.28,0,0,4714.418 +2742,3403,5959,5958,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,8.7341299,8.4104414,0,1,7,-85.325523,0,2,2,2021,9,0,41,50,1,0,0,16.870424,16.870424,.05,.05,0,0,0,0,0,0,0,0,0,2.0710838,0,47.95,51.28,47.93,56.36,8.333333333333334,1,1,0,0,8,12,5,1,1877.5,1884732.1,1068531.6,343147.19,103601.28,0,0,4714.418 +2743,3404,5960,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.4672399,6.3471451,0,0,-981.26135,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0134163,48.31,53.41,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,124,-44161.758,115836.68,169498.41,0,0,0,1094.9324 +2744,3405,5961,5962,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.6355448,9.6216583,0,6,0,-42.985802,0,-9,-9,2021,9,0,40,50,1,0,0,50.181133,50.181133,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,53,57.16,56.15,8,1,1,0,0,1,7,5,1,1198.5,1695008.4,738611.13,354618.13,216471.59,0,12827.516,6870.8647 +2744,3405,5962,5961,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.5582166,7.7095308,0,35,0,-27.369417,0,3,3,2021,6,0,30,27,1,0,0,9.4239731,9.4239731,.05,.05,0,0,0,0,0,14.5,0,0,0,4.9457188,0,57.16,56.15,54,53,8.333333333333334,1,1,0,0,9,7,5,1,1198.5,1695008.4,738611.13,354618.13,216471.59,0,12827.516,6870.8647 +2745,3406,5963,5964,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.1697578,8.835043,0,5,-4,10.5789,0,2,2,2021,12,0,50,92,1,0,0,20.168789,20.168789,0,0,0,0,0,0,0,0,0,0,0,.80043864,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,0,640,395030.28,363644.56,234977.78,111077.94,0,0,4052.8015 +2745,3406,5964,5963,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.0619211,8.0572863,0,5,4,8.2376213,0,-9,-9,2021,6,0,40,42,1,0,0,8.1202316,8.1202316,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,11,12,5,0,640,395030.28,363644.56,234977.78,111077.94,0,0,4052.8015 +2746,3407,5965,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.4160261,8.3971806,5.5553184,0,0,-956.01068,-9,3,3,2021,13,2,45,0,1,2,0,13.132702,13.132702,.05,.05,0,0,0,0,0,0,1,1,0,6.3502612,0,38.58,48.57,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,462,370961.47,229879.83,151731.86,43728.094,0,3587.0269,2383.8457 +2747,3408,5966,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.2584705,7.3567705,0,0,0,-877.48297,0,3,2,2021,10,2,20,40,1,2,0,7.0754662,7.0754662,.05,.05,0,0,0,0,0,0,1,0,1,0,0,61.11,38.36,-9,-9,6.666666666666667,1,1,0,1,7,11,3,0,817,-149118.33,17373.828,0,0,0,0,1115.1224 +2747,3409,5967,-9,5966,-9,1,1,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1096.1282,-9,3,-9,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.7366123,0,46.25,51.65,-9,-9,5,4,2,0,0,4,11,2,0,744,-9931.0098,0,0,0,0,0,819.60449 +2748,3410,5968,-9,5970,5971,1,1,22,0,2,0,2,2,-9,0,5,7.7006454,7.5254331,0,0,0,-944.26141,-9,3,2,2021,9,1,52,0,1,1,1,5.2727637,5.2727637,.05,.05,0,0,0,0,0,0,1,1,0,2.0072896,0,57.06,57.76,-9,-9,10,1,1,0,0,6,5,3,1,334,-204593.64,28940.158,0,0,6568.8457,0,1075.2139 +2748,3411,5969,-9,5970,5971,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-934.58478,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3411,5970,5971,-9,-9,1,0,39,0,2,0,3,3,-9,0,4,0,0,0,1,-6,-32.789814,-9,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,52.54,52.91,8.333333333333334,1,1,0,0,0,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3411,5971,5970,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.1210423,7.8064671,0,1,6,-41.926857,-9,3,3,2021,12,0,47,0,1,0,0,9.6942282,9.6942282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.54,52.91,48.28,60.18,8.333333333333334,1,1,0,0,8,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3411,5972,-9,5970,5971,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-935.31091,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,704.25,198316.94,138297.09,163313.5,73995.859,7857.5132,2994.2744,2124.584 +2748,3412,5973,-9,5970,5971,1,1,18,0,2,0,2,2,-9,0,4,7.1999469,7.2086163,0,0,0,-993.31921,-9,3,2,2021,9,0,40,0,1,0,1,3.3310993,3.3310993,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,977,0,0,0,0,0,0,179.55705 +2749,3413,5974,-9,5975,5976,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-866.98694,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1562,433137.16,233558.16,127138.51,0,0,3710.7395,1310.309 +2749,3413,5975,5976,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.3476844,7.1042209,0,29,-3,81.857605,0,2,3,2021,12,0,25,27,1,0,0,6.5939255,6.5939255,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,51.83,57.2,6.666666666666667,1,1,0,0,12,4,3,1,1562,433137.16,233558.16,127138.51,0,0,3710.7395,1310.309 +2749,3413,5976,5975,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,7.7147336,7.9991736,0,10,3,17.878527,0,-9,-9,2021,10,1,50,65,1,1,0,6.0071821,6.0071821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,48.45,57.49,6.666666666666667,1,1,0,0,12,4,3,1,1562,433137.16,233558.16,127138.51,0,0,3710.7395,1310.309 +2749,3414,5977,-9,5975,5976,1,0,19,0,1,0,2,2,1,0,4,5.7753758,5.8894691,0,0,0,-942.05035,-9,2,2,2021,7,1,8,0,1,1,1,4.4371223,4.4371223,0,0,0,0,0,0,0,0,0,0,0,0,0,51.81,57.22,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,615,192241.19,0,0,0,0,0,305.60867 +2750,3415,5978,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1000.5431,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.26858512,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,176,137093.98,0,0,0,0,0,868.70844 +2751,3416,5979,5982,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,8.763526,8.3332319,0,14,-2,32.846481,0,-9,1,2021,18,5,38,34,1,5,0,19.424749,19.424749,.05,.05,0,0,0,0,0,0,0,0,0,0,0,13.98,65.45,32.32,27.54,5,1,1,0,0,8,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2751,3416,5980,-9,5982,5979,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.38397,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2751,3416,5981,-9,5982,5979,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.49957,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2751,3416,5982,5979,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,8.5340986,8.7265139,0,14,2,92.360886,0,3,3,2021,20,8,38,30,1,8,0,17.31053,17.31053,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.32,27.54,13.98,65.45,6.666666666666667,1,1,0,0,10,11,5,1,306.25,362887.34,141210.63,265966.31,135326.41,1088.2065,0,4092.572 +2752,3417,5983,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8414145,9.0933104,0,0,0,-951.9267,0,2,2,2021,8,0,40,42,1,0,0,20.70738,20.70738,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,171,223145.81,0,0,0,0,0,2117.804 +2752,3418,5984,-9,-9,5983,1,0,25,0,0,0,1,1,-9,0,4,8.6785374,8.7233896,0,0,0,-1000.3293,-9,-9,2,2021,12,1,70,0,1,1,1,11.928881,11.928881,.05,.05,0,0,0,0,0,0,0,0,0,3.3470502,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,347,172789.42,-37838.148,111382,89473.352,0,0,1929.8721 +2753,3419,5985,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.5473824,7.6393223,0,0,-995.41663,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.6704731,40.89,53.59,-9,-9,6.666666666666667,2,3,0,0,2,8,3,1,1025,767418.06,205297.52,333268.59,0,0,0,1285.2024 +2754,3420,5986,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.1522,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,2.8689599,0,20.27523,0,1,1,0,4.5895061,0,46.13,19.57,-9,-9,5,1,1,0,0,0,11,2,0,1201,93883.969,0,199522.02,0,0,0,601.28674 +2755,3421,5987,5989,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.0810604,8.1581373,0,2,2,8.706109,0,2,2,2021,6,0,44,45,1,0,0,10.131946,10.131946,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,58.55,22.17,10,1,1,0,0,8,7,4,0,646.33331,260218.64,-7520.5942,148263.95,79152.891,241.54338,2680.7649,3381.9976 +2755,3421,5988,-9,5989,5987,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.4209,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,0,646.33331,260218.64,-7520.5942,148263.95,79152.891,241.54338,2680.7649,3381.9976 +2755,3421,5989,5987,-9,-9,1,0,39,0,1,0,1,1,-9,0,2,8.362462,8.4820471,5.2589836,2,-2,134.81052,0,-9,-9,2021,9,0,37,36,1,0,0,13.633429,13.633429,.05,.05,0,0,0,0,0,0,1,1,0,5.5937281,0,58.55,22.17,51.83,57.2,10,1,1,0,0,9,7,4,0,646.33331,260218.64,-7520.5942,148263.95,79152.891,241.54338,2680.7649,3381.9976 +2756,3422,5990,5992,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,6.7863212,6.8967156,0,3,-4,51.738556,0,-9,-9,2021,9,0,15,16,1,0,0,7.7394543,7.7394543,0,0,0,0,0,0,0,0,1,0,1,0,0,38.59,60.85,46.6,58.64,10,1,1,0,0,5,1,2,0,807.33331,75887.078,0,0,0,0,0,1742.1364 +2756,3422,5991,-9,5990,5992,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-898.30548,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,2,0,807.33331,75887.078,0,0,0,0,0,1742.1364 +2756,3422,5992,5990,-9,-9,1,1,26,1,1,0,2,2,-9,0,5,0,0,0,3,4,117.49236,0,-9,-9,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.6,58.64,38.59,60.85,10,1,1,0,0,0,1,2,0,807.33331,75887.078,0,0,0,0,0,1742.1364 +2757,3423,5993,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5789957,8.1497974,0,0,0,-971.4035,0,2,2,2021,9,0,38,40,1,0,0,12.635192,12.635192,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,8,4,4,0,326,53919.445,104243.54,113488.76,39208.688,0,0,2051.3699 +2758,3424,5994,5995,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.7975893,8.2879162,9,2,-173.85466,0,3,2,2021,8,0,0,37,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,3.36097,8.3715038,57.16,56.15,43.01,31.98,8.333333333333334,1,1,0,0,14,8,4,1,758,214705.16,361494.22,0,0,0,4360.6372,3015.4819 +2758,3424,5995,5994,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,9,-2,66.944031,0,-9,-9,2021,10,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.01,31.98,57.16,56.15,6.666666666666667,1,1,0,0,8,8,4,1,758,214705.16,361494.22,0,0,0,4360.6372,3015.4819 +2759,3425,5996,-9,5998,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.7974,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,0,1379,-34844.691,5449.5415,72677.859,41962.875,0,0,2081.7766 +2759,3425,5997,-9,5998,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.1422,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,5,3,0,1379,-34844.691,5449.5415,72677.859,41962.875,0,0,2081.7766 +2759,3425,5998,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.1292267,8.1681843,5.6428661,0,0,-933.61743,0,2,2,2021,12,0,38,46,1,0,0,8.3788843,8.3788843,.05,.05,0,0,0,0,0,0,1,1,0,5.6466103,0,57.15,43.87,-9,-9,6.666666666666667,1,1,0,0,6,5,3,0,1379,-34844.691,5449.5415,72677.859,41962.875,0,0,2081.7766 +2760,3426,5999,6000,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.7550268,8.8144617,8.0269966,34,1,-63.34586,0,2,3,2021,6,0,40,40,1,0,0,28.600761,28.600761,.05,.05,0,0,0,0,0,0,1,1,0,7.1674948,8.0468216,57.16,56.15,35.78,51.13,8.333333333333334,1,1,0,0,13,2,5,1,580.5,2060061.9,1791068.8,200167.23,27573.746,3559.823,174.69635,5758.4746 +2760,3426,6000,5999,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,7.0980148,6.9306803,34,-1,-15.665013,0,2,3,2021,18,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,3.5356495,7.0523105,35.78,51.13,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,580.5,2060061.9,1791068.8,200167.23,27573.746,3559.823,174.69635,5758.4746 +2760,3427,6001,-9,6000,5999,1,1,26,0,0,0,2,2,-9,1,3,6.1358647,6.1026144,0,0,0,-974.354,0,1,1,2021,10,1,3,0,1,1,1,14.343631,14.343631,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,53.83,-9,-9,5,1,1,0,0,1,2,2,1,867,0,0,0,0,0,0,611.61438 +2761,3428,6002,6003,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.8956304,7.9458399,0,27,-4,126.27898,0,3,2,2021,16,4,20,20,1,4,0,16.633299,16.633299,0,0,0,0,0,0,0,0,0,0,0,0,0,39.39,37.66,61.68,50.1,5,3,4,0,0,10,6,4,1,846.5,192510.41,73490.766,126631.44,-14103.791,0,0,2006.8035 +2761,3428,6003,6002,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.2627854,7.0458403,0,27,4,-205.80344,0,-9,-9,2021,12,0,72,72,1,0,0,1.7727542,1.7727542,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,50.1,39.39,37.66,3.333333333333333,3,4,0,0,10,6,4,1,846.5,192510.41,73490.766,126631.44,-14103.791,0,0,2006.8035 +2762,3429,6004,6005,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,7.0202599,6.978991,0,10,6,-3.8412576,0,-9,-9,2021,10,0,11,60,1,1,0,12.700459,12.700459,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,46.62,44.58,7,1,1,0,0,1,7,2,0,1910,1224441,517919.09,627993.63,0,0,0,1516.0255 +2762,3429,6005,6004,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,10,-6,-15.198892,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.62,44.58,52,47,8.333333333333334,1,1,0,0,0,7,2,0,1910,1224441,517919.09,627993.63,0,0,0,1516.0255 +2763,3430,6006,6008,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.7657328,8.7494993,0,12,4,-4.5703635,0,2,2,2021,13,3,30,33,1,3,0,22.260853,22.260853,.05,.05,0,0,0,0,0,42,1,1,0,0,0,47.28,48.29,48.87,58.55,6.666666666666667,1,1,0,0,11,7,4,1,1524,263456.84,268852.63,255860.39,168050.97,2467.9673,967.93207,4338.5869 +2763,3430,6007,-9,6006,6008,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.9118,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1524,263456.84,268852.63,255860.39,168050.97,2467.9673,967.93207,4338.5869 +2763,3430,6008,6006,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,7.5935693,7.8986888,6.5276718,12,-4,87.171089,0,3,3,2021,10,0,20,25,1,0,0,12.421516,12.421516,.05,.05,0,0,0,0,0,0,1,1,0,7.8477693,0,48.87,58.55,47.28,48.29,8.333333333333334,1,1,0,0,14,7,4,1,1524,263456.84,268852.63,255860.39,168050.97,2467.9673,967.93207,4338.5869 +2764,3431,6009,6010,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.900466,7.7692013,0,10,-1,37.527874,0,-9,-9,2021,13,1,20,20,1,1,0,18.155157,18.155157,.05,.05,0,0,0,0,0,0,0,0,0,6.9512162,0,39.73,37.29,46.46,51.53,6.666666666666667,1,1,0,0,11,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2764,3431,6010,6009,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.3283997,8.9398689,0,10,1,55.155483,0,2,3,2021,11,0,50,1,1,0,0,24.114681,24.114681,.05,.05,0,0,0,0,0,0,0,0,0,7.6006231,0,46.46,51.53,39.73,37.29,5,1,1,0,0,11,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2764,3431,6011,-9,6009,6010,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.77264,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2764,3431,6012,-9,6009,6010,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1009.5999,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,7,5,1,503.5,661813.25,369563.28,410389.44,128770.38,0,0,6342.9741 +2765,3432,6013,6014,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.1326284,7.9561634,20,0,2.6970079,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.0971855,7.7921753,61.17,24.81,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,534.5,1438144.6,836008.5,367435.5,0,0,0,4134.2832 +2765,3432,6014,6013,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.8445706,8.3420429,7.5245237,18,9,93.155037,0,3,2,2021,6,0,40,40,1,0,0,7.0586085,7.0586085,0,0,0,1,0,0,0,7,1,1,0,7.7865419,7.495223,57.16,56.15,61.17,24.81,1.666666666666667,1,1,0,0,11,2,4,1,534.5,1438144.6,836008.5,367435.5,0,0,0,4134.2832 +2766,3433,6015,6016,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,9.062068,8.7955675,0,10,-3,-270.65378,0,2,3,2021,17,6,37,37,1,6,0,18.419664,18.419664,.05,.05,0,0,0,0,0,0,0,0,0,7.1632428,0,40.52,51.94,43.2,59.97,5,1,1,0,0,13,5,5,1,935.5,400003,198957.94,322144.25,85739.281,17110.463,696.98431,5318.9883 +2766,3433,6016,6015,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.7462902,8.9803171,0,10,3,76.120872,0,-9,-9,2021,13,1,35,50,1,1,0,20.168274,20.168274,.05,.05,0,0,0,0,0,0,0,0,0,7.5670443,0,43.2,59.97,40.52,51.94,5,1,1,0,0,12,5,5,1,935.5,400003,198957.94,322144.25,85739.281,17110.463,696.98431,5318.9883 +2767,3434,6017,6018,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,6,-1,-24.860195,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.52,48.31,52,48,8.333333333333334,1,1,0,0,0,11,3,1,1006,606386.88,482902.94,69607.359,0,0,0,1307.3063 +2767,3434,6018,6017,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1359138,8.1215982,6.9500723,6,1,85.044548,0,2,2,2021,10,0,38,40,1,1,0,8.6900091,8.6900091,0,0,0,0,0,0,0,0,1,1,0,4.6035099,6.601603,52,48,56.52,48.31,7,1,1,0,0,1,11,3,1,1006,606386.88,482902.94,69607.359,0,0,0,1307.3063 +2768,3435,6019,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.8057089,7.7429128,0,0,0,-1009.5396,0,2,3,2021,14,6,20,20,1,6,0,13.515295,13.515295,.05,.05,0,0,0,0,0,0,0,0,0,1.8585153,0,46.16,58.62,-9,-9,6.666666666666667,2,3,0,0,8,2,3,1,457,-40268.516,-133185,0,0,0,746.37262,1389.0302 +2769,3436,6020,6021,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.8687172,8.1176338,0,32,1,38.862053,0,3,2,2021,6,0,28,23,1,0,0,10.095162,10.095162,0,0,0,0,0,0,0,7,0,0,0,0,0,56.01,51.37,41.06,62.04,8.333333333333334,1,1,0,0,7,12,5,1,1070.5,192979.27,63053.25,501938.25,291203.72,0,0,5989.9316 +2769,3436,6021,6020,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.6651611,9.2749605,0,32,-1,-9.2050915,0,2,1,2021,19,7,43,43,1,7,0,42.86113,42.86113,0,0,0,0,0,0,0,0,0,0,0,2.9668565,0,41.06,62.04,56.01,51.37,5,1,1,0,0,9,12,5,1,1070.5,192979.27,63053.25,501938.25,291203.72,0,0,5989.9316 +2769,3437,6022,-9,6020,6021,1,1,21,0,1,0,2,2,-9,0,4,0,0,0,0,0,-970.22021,1,1,1,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0415046,0,30.83,62.98,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,374,31198.824,0,0,0,0,0,785.172 +2769,3438,6023,-9,6020,6021,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1006.4675,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,5,1,1,0,0,0,12,1,1,430,-15675.775,0,0,0,0,0,0 +2770,3439,6024,6025,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.3342323,7.2953486,8,0,162.40642,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,6.214448,0,0,1,1,0,0,7.3438959,57.92,51.82,47.98,50.58,5,1,1,0,0,1,12,3,1,298.5,540488.25,325170.03,247859.13,0,0,0,1655.864 +2770,3439,6025,6024,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,8,0,-60.011116,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.98,50.58,57.92,51.82,1.666666666666667,1,1,0,0,0,12,3,1,298.5,540488.25,325170.03,247859.13,0,0,0,1655.864 +2771,3440,6026,6027,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.4320989,7.0045013,0,3,0,-77.376862,0,-9,-9,2021,11,0,28,28,1,0,0,6.5078115,6.5078115,0,0,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,46.32,53.44,5,1,1,0,0,7,5,4,0,689,233757.52,92939.266,228158.56,137230.75,10259.815,0,2591.5188 +2771,3440,6027,6026,-9,-9,1,1,25,1,1,0,2,2,-9,0,2,8.387702,8.3806162,0,3,0,-24.867426,0,-9,-9,2021,11,0,45,44,1,0,0,9.0189095,9.0189095,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,40.75,58.26,3.333333333333333,1,1,0,1,7,5,4,0,689,233757.52,92939.266,228158.56,137230.75,10259.815,0,2591.5188 +2771,3440,6028,-9,6026,6027,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.3833,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,0,689,233757.52,92939.266,228158.56,137230.75,10259.815,0,2591.5188 +2772,3441,6029,6030,-9,-9,1,1,91,0,0,0,2,2,-9,0,1,0,7.642622,7.4806576,56,4,-73.683075,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.3951936,61.95,19.03,58.87,32.69,8.333333333333334,1,1,0,0,0,10,2,1,391.5,710886,140918.38,429354.81,0,0,0,2176.0698 +2772,3441,6030,6029,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,0,0,56,-4,-75.405792,-9,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.87,32.69,61.95,19.03,10,1,1,0,0,0,10,2,1,391.5,710886,140918.38,429354.81,0,0,0,2176.0698 +2773,3442,6031,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.8981619,8.09723,0,0,0,-1112.4537,0,3,-9,2021,7,0,47,32,1,0,0,5.2065043,5.2065043,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,15,12,4,0,1250,339648.09,440756.81,0,0,2137.4094,92.353409,1401.286 +2774,3443,6032,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6290455,8.6929741,0,0,0,-919.8139,0,1,1,2021,7,0,35,50,1,0,0,15.144278,15.144278,.05,.05,0,0,0,0,0,0,0,0,0,2.5465961,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,443,692698.19,521569.47,137622.83,54004.219,3489.1514,2332.8213,2011.0425 +2775,3444,6033,6034,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.4485431,7.7731671,50,2,97.508835,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4283457,7.6697474,65.21000000000001,44.28,58.15,52.91,8.333333333333334,1,1,0,0,6,11,3,1,1859,833274.5,691917,247406.34,41273.512,0,0,3524.6106 +2775,3444,6034,6033,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.982326,6.9139843,50,-2,-83.785103,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.2782845,7.2684274,58.15,52.91,65.21000000000001,44.28,8.333333333333334,1,1,0,0,4,11,3,1,1859,833274.5,691917,247406.34,41273.512,0,0,3524.6106 +2776,3445,6035,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-964.57178,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.21,58.77,-9,-9,0,4,2,1,1,5,9,1,0,1066,5842.0508,-53843.039,0,0,0,0,416.82596 +2777,3446,6036,6037,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,33,-8,24.168243,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.9196775,0,0,1,1,0,4.4264035,0,63.83,43.62,60.12,54.8,8.333333333333334,1,1,0,0,0,10,2,0,259,370225.25,-33911.25,147174.73,0,0,0,1850.8181 +2777,3446,6037,6036,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.4944797,6.8745999,33,8,30.618872,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4330554,6.691978,60.12,54.8,63.83,43.62,10,1,1,0,0,0,10,2,0,259,370225.25,-33911.25,147174.73,0,0,0,1850.8181 +2778,3447,6038,6039,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,8.7299004,8.4938202,38,6,-18.905991,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3789372,8.4587593,39.08,20.51,47.02,52.47,10,1,1,0,0,10,7,4,1,1058,1832580.8,780419.88,892733.13,0,0,0,3733.3696 +2778,3447,6039,6038,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.1775246,6.128706,38,-6,78.306137,0,3,3,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1154671,6.019434,47.02,52.47,39.08,20.51,6.666666666666667,1,1,0,0,0,7,4,1,1058,1832580.8,780419.88,892733.13,0,0,0,3733.3696 +2779,3448,6040,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-813.88831,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1571298,0,51.66,54.88,-9,-9,5,1,1,0,0,6,4,1,1,518,254915.78,-36592.359,142301.23,0,0,0,1198.8311 +2780,3449,6041,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.4925675,7.2520356,0,0,-1073.1726,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,2.298358,0,27.622368,0,1,1,0,0,7.228395,39.38,43.19,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,1377,198384.27,-51931.168,211390.39,0,0,0,936.67828 +2781,3450,6042,6043,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7784472,7.6594596,46,-2,-18.778505,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.1455193,0,1,1,0,0,7.6770673,60.29,52.11,59.06,38.06,10,1,1,0,0,1,4,3,1,1008.5,1072989.5,621654.25,355991.56,0,0,0,2597.9668 +2781,3450,6043,6042,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.642837,6.8167133,46,2,49.685741,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1648622,59.06,38.06,60.29,52.11,8.333333333333334,1,1,0,0,0,4,3,1,1008.5,1072989.5,621654.25,355991.56,0,0,0,2597.9668 +2782,3451,6044,6045,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.9538412,9.0668707,0,3,1,-105.56582,0,1,1,2021,6,0,45,43,1,0,0,17.508581,17.508581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51.77,58.57,10,1,1,0,0,5,4,5,1,593.5,72269.234,24834.842,184416.28,166891.09,0,13161.445,5465.5566 +2782,3451,6045,6044,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5480127,8.4840651,0,3,-1,-64.018524,0,-9,-9,2021,7,0,45,40,1,0,0,12.440325,12.440325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,57.16,56.15,10,1,1,0,0,5,4,5,1,593.5,72269.234,24834.842,184416.28,166891.09,0,13161.445,5465.5566 +2783,3452,6046,6047,-9,-9,1,0,54,0,0,0,1,1,-9,1,3,0,0,0,10,4,-40.780865,0,2,2,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7434905,0,61.14,32.41,57.34,47.92,8.333333333333334,1,1,0,1,0,12,4,1,804.5,572598.38,297454.38,138479.88,0,0,0,2964.1699 +2783,3452,6047,6046,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.0849428,8.9728518,0,10,-4,13.449522,0,2,2,2021,7,0,40,45,1,0,0,18.062431,18.062431,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.34,47.92,61.14,32.41,6.666666666666667,1,1,0,0,10,12,4,1,804.5,572598.38,297454.38,138479.88,0,0,0,2964.1699 +2784,3453,6048,6049,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,7,0,0,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,25.857479,0,0,1,1,0,0,0,33.98,32.09,33.15,33.58,6.666666666666667,1,1,0,0,0,8,1,0,731.5,18182.24,-48418.113,53156.082,0,0,0,1960.4333 +2784,3453,6049,6048,6050,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,0,0,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,33.15,33.58,33.98,32.09,3.333333333333333,1,1,0,0,0,8,1,0,731.5,18182.24,-48418.113,53156.082,0,0,0,1960.4333 +2784,3454,6050,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-962.15765,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,43,-9,-9,8,1,1,0,0,0,8,1,0,1734,-22306.77,0,0,0,0,0,727.0415 +2785,3455,6051,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.3047328,7.2305942,0,0,-1089.0626,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6172309,7.2991714,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,217,462189.53,202127.77,307263.59,0,0,0,1418.0013 +2786,3456,6052,6053,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.6109471,7.0823779,52,0,-24.482807,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6199365,7.2819128,43.21,47.68,51.66,54.88,8.333333333333334,1,1,0,0,0,8,4,1,399,2001507.5,1261142.5,575359.75,0,1963.6895,0,4124.0791 +2786,3456,6053,6052,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.9532399,8.2442169,52,0,-86.392982,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.552063,7.692966,51.66,54.88,43.21,47.68,8.333333333333334,1,1,0,0,0,8,4,1,399,2001507.5,1261142.5,575359.75,0,1963.6895,0,4124.0791 +2787,3457,6054,6055,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.0599375,7.8754177,0,4,0,126.09044,0,2,2,2021,15,4,44,44,1,4,0,11.04723,11.04723,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,58.32,50.22,6.666666666666667,1,1,0,0,9,10,4,0,1724.6666,88671.797,46786.707,0,0,0,171.08673,2471.4697 +2787,3457,6055,6054,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,7.3261075,7.2504973,0,4,0,26.783016,0,2,2,2021,7,0,20,25,1,0,0,8.5486994,8.5486994,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,51.24,58.84,6.666666666666667,1,1,0,0,9,10,4,0,1724.6666,88671.797,46786.707,0,0,0,171.08673,2471.4697 +2787,3457,6056,-9,6055,6054,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-917.10114,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,1724.6666,88671.797,46786.707,0,0,0,171.08673,2471.4697 +2788,3458,6057,-9,6059,6058,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.8441,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2788,3458,6058,6059,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,8.6117086,8.8817167,0,5,0,32.809784,0,-9,2,2021,5,0,70,84,1,0,0,10.259892,10.259892,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.14,40.26,8.333333333333334,1,1,0,0,10,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2788,3458,6059,6058,-9,-9,1,0,39,1,2,0,2,2,-9,0,3,6.17311,6.3308725,0,6,0,-147.38719,0,2,-9,2021,6,0,20,0,1,0,0,3.5358312,3.5358312,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.14,40.26,57.06,57.76,8.333333333333334,1,1,0,0,7,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2788,3458,6060,-9,6059,6058,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.5848,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,556.75,408008.38,29603.426,227276.61,134012.52,14460.336,0,2403.9548 +2789,3459,6061,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.0341921,7.0127869,0,0,-1067.9188,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0555992,6.9465737,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,7,5,2,1,2482,383307.19,420890.66,75161.281,0,0,0,2019.2363 +2790,3460,6062,-9,-9,-9,1,0,25,0,0,0,1,1,1,0,5,8.2715311,8.1803827,0,0,0,-963.11847,-9,-9,-9,2021,13,1,45,0,1,1,0,10.120831,10.120831,0,0,0,0,0,0,0,0,0,0,0,4.2526488,0,44.45,62.04,-9,-9,8.333333333333334,1,1,0,0,2,1,4,1,471,33565.453,0,0,0,0,0,1310.0518 +2791,3461,6063,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.5140848,9.1956739,7.2482734,0,0,-791.49683,0,-9,-9,2021,6,0,40,55,1,0,0,34.745354,34.745354,.05,.05,0,0,0,0,0,2,1,1,0,7.9658427,7.6646647,54.9,54.53,-9,-9,8.333333333333334,3,4,0,0,5,9,5,0,576,1049412.6,569272.63,242873.36,0,0,0,3753.8276 +2792,3462,6064,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.0517464,7.0037866,0,0,0,-936.05164,0,2,2,2021,12,0,11,12,1,0,0,11.039165,11.039165,0,0,0,0,0,0,0,0,0,0,0,2.4468725,0,55,55,-9,-9,5,1,1,0,0,8,9,2,0,3703,123945.09,0,279435,0,0,0,430.24036 +2793,3463,6065,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,7.1702428,7.3311501,0,0,0,-1070.9274,0,2,2,2021,6,0,25,20,1,0,0,6.7438445,6.7438445,.05,.05,0,0,0,0,0,0,1,1,0,.84879667,0,58.52,31.42,-9,-9,8.333333333333334,1,1,0,0,10,5,2,1,480,237700.36,5034.8418,136234.25,0,0,1816.6219,876.76715 +2793,3463,6066,-9,6065,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.35187,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,1,480,237700.36,5034.8418,136234.25,0,0,1816.6219,876.76715 +2793,3464,6067,-9,6065,-9,1,1,24,0,1,0,1,1,-9,0,4,7.413774,7.0871754,0,0,0,-1031.3497,0,1,-9,2021,7,2,20,30,1,2,1,8.3063068,8.3063068,0,0,0,0,0,0,0,0,1,1,0,0,0,42.27,57.55,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,870,-92621.633,0,0,0,0,0,965.0332 +2794,3465,6068,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,6.3117375,6.0634494,0,0,-976.68298,0,3,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,23.716652,0,0,1,1,0,0,6.0467801,26.46,60.5,-9,-9,6.666666666666667,1,1,0,1,0,9,2,1,194,328566.56,172917.8,238896,0,0,0,622.44 +2795,3466,6069,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.4199009,8.3042908,0,0,0,-935.14337,-9,-9,-9,2021,5,0,70,0,1,0,0,7.2855282,7.2855282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,8,5,5,1,263,359958.38,543640.75,150127.5,133776.56,0,0,2552.9512 +2796,3467,6070,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.1667829,5.4111638,0,0,-918.21436,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3678689,59.69,38.61,-9,-9,10,1,1,0,0,0,12,2,1,697,-95978.133,-26778.951,0,0,0,0,440.43127 +2797,3468,6071,-9,6073,6072,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.46802,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2797,3468,6072,6073,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,9.1878071,8.7204685,0,14,-1,-37.330879,0,3,2,2021,7,0,48,48,1,0,0,22.142887,22.142887,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2797,3468,6073,6072,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.7713304,7.6301627,0,14,1,42.135998,0,1,1,2021,6,0,32,32,1,0,0,10.817389,10.817389,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,10,1,1,0,0,6,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2797,3468,6074,-9,6073,6072,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.216,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,609.5,79830.695,51616.508,115885.05,120772.84,12765.836,0,4165.0503 +2798,3469,6075,6077,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,0,0,0,4,-4,-150.08359,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8359087,0,44.87,56.46,60.02,56.42,8.333333333333334,1,1,0,0,0,12,5,1,463.66666,258676.61,215736.2,274244.53,151196.89,0,6021.5063,3642.3096 +2798,3469,6076,-9,6075,6077,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-959.90936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,463.66666,258676.61,215736.2,274244.53,151196.89,0,6021.5063,3642.3096 +2798,3469,6077,6075,-9,-9,1,1,34,1,1,0,1,1,-9,0,5,8.959897,8.5136538,0,4,4,192.98732,0,1,1,2021,0,0,52,40,1,0,0,21.362421,21.362421,.05,.05,0,0,0,0,0,0,1,1,0,8.6344748,0,60.02,56.42,44.87,56.46,10,1,1,0,0,6,12,5,1,463.66666,258676.61,215736.2,274244.53,151196.89,0,6021.5063,3642.3096 +2799,3470,6078,6079,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.0655255,7.0317135,43,1,-24.272768,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9037519,6.8486204,43.18,55.57,44.59,45.67,8.333333333333334,1,1,0,0,0,2,3,1,1569,1033846,563509.5,314162.69,0,0,0,3345.4778 +2799,3470,6079,6078,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.9585061,7.7976904,4,-1,-115.43526,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6907282,44.59,45.67,43.18,55.57,6.666666666666667,1,1,0,0,0,2,3,1,1569,1033846,563509.5,314162.69,0,0,0,3345.4778 +2800,3471,6080,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,8.5486116,8.5121889,0,0,-1083.2433,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1237693,8.3377142,43.5,28.95,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,1398,433655.22,557848.56,81472.805,0,8518.1572,0,2823.3533 +2801,3472,6081,6082,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,6.4482288,6.9673758,45,3,-40.781456,0,3,3,2021,9,1,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2332854,6.4824214,57.98,47.73,53.39,44.47,8.333333333333334,1,1,0,0,8,6,2,1,287,107420.58,-11830.371,174260.03,0,0,0,1634.1538 +2801,3472,6082,6081,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.9218335,5.5634141,45,-3,98.53775,0,3,3,2021,11,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6900802,5.7792492,53.39,44.47,57.98,47.73,8.333333333333334,1,1,0,0,4,6,2,1,287,107420.58,-11830.371,174260.03,0,0,0,1634.1538 +2801,3473,6083,-9,6082,6081,1,0,35,0,0,0,1,1,0,0,4,0,0,0,0,0,-1086.4705,-9,3,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,47.42,-9,-9,8.333333333333334,1,1,0,0,8,6,1,1,519,-95714.695,0,0,0,0,0,0 +2802,3474,6084,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-918.71783,0,-9,-9,2021,9,1,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.37,31.12,-9,-9,8.333333333333334,1,1,1,1,5,2,2,0,93,97780.039,0,0,0,0,0,906.52728 +2803,3475,6085,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.8123293,7.6017747,0,0,0,-1012.9261,0,2,2,2021,15,2,60,42,1,2,0,6.0673213,6.0673213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.08,57.26,-9,-9,1.666666666666667,1,1,0,1,2,9,3,0,939.5,495515.38,-44654.984,0,0,10115.48,0,1855.3336 +2803,3475,6086,-9,6085,-9,1,0,16,0,1,1,3,0,-9,0,1,0,4.6994982,5.146255,0,0,-892.10809,-9,3,-9,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5569487,0,32,31,-9,-9,1.666666666666667,1,1,0,1,0,9,3,0,939.5,495515.38,-44654.984,0,0,10115.48,0,1855.3336 +2804,3476,6087,6090,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.2787189,8.0546274,0,12,1,112.39513,0,-9,-9,2021,15,5,41,39,1,5,0,8.2611132,8.2611132,.05,.05,0,0,0,0,0,0,1,1,0,6.3258667,0,40.74,48.66,40.95,63.66,3.333333333333333,1,1,0,0,11,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2804,3476,6088,-9,6090,6087,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1131.1075,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2804,3476,6089,-9,6090,6087,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.6436,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2804,3476,6090,6087,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,9.5734043,9.3230371,0,12,-1,-95.451591,0,-9,-9,2021,10,2,30,30,1,2,0,53.155258,53.155258,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.95,63.66,40.74,48.66,6.666666666666667,1,1,0,0,12,1,5,1,993.25,848474.5,747036.25,178350.59,86016.516,3853.8396,0,6875.6401 +2805,3477,6091,-9,6092,6093,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.5583,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2805,3477,6092,6093,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.7548733,7.9189644,0,13,-7,60.244549,0,2,2,2021,7,2,39,39,1,2,0,8.8570633,8.8570633,0,0,0,0,0,0,0,0,0,0,0,0,0,51.95,53.02,47.61,46.11,8.333333333333334,3,4,0,0,5,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2805,3477,6093,6092,-9,-9,1,1,44,0,2,0,1,1,-9,0,2,9.3308239,9.1134138,0,15,7,132.8269,0,-9,-9,2021,11,1,55,52,1,1,0,20.50371,20.50371,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,47.61,46.11,51.95,53.02,8.333333333333334,1,1,0,0,10,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2805,3477,6094,-9,6092,6093,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.746,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,1485.5,477180.06,133138.06,300350.19,56313.039,0,0,5427.4365 +2806,3478,6095,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,9.8380709,9.673461,0,0,-858.19812,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9953796,9.850975,54,46,-9,-9,7,1,1,0,0,0,7,5,1,323,2179629,142573.23,663688.06,0,0,0,8575.2832 +2807,3479,6096,6097,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,8.3701172,8.5344658,5.4446821,4,-6,137.05626,0,3,3,2021,15,3,58,98,1,3,0,8.374608,8.374608,.05,.05,0,0,0,0,0,2,1,1,0,0,5.7451735,33.97,33.39,35.03,28.37,5,1,1,0,0,13,2,4,0,604.5,854860.5,775695.88,67884.766,0,0,0,4068.1733 +2807,3479,6097,6096,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,3.8255305,3.8971567,4,6,-24.534996,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,.05,.05,0,1,0,9.179307,0,0,1,1,0,0,3.6059351,35.03,28.37,33.97,33.39,3.333333333333333,1,1,0,0,0,2,4,0,604.5,854860.5,775695.88,67884.766,0,0,0,4068.1733 +2808,3480,6098,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,5.8337841,5.6951337,0,0,-863.81616,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8796759,5.4506211,57.16,56.15,-9,-9,10,1,1,0,0,5,1,2,1,698,254573.59,91890.086,234645.41,0,0,0,208.44249 +2809,3481,6099,-9,6100,6101,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-944.26392,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,3,0,460.66666,91066.57,-19232.098,210260.48,152406.25,0,0,2304.7046 +2809,3481,6100,6101,-9,-9,1,0,33,1,3,0,1,1,-9,0,5,7.6122279,7.432786,0,4,0,159.70425,0,3,3,2021,6,0,47,35,1,0,0,4.4408398,4.4408398,0,0,0,0,0,0,0,0,1,1,0,0,0,41.42,48.37,51.07,29.37,10,2,3,0,0,5,8,3,0,460.66666,91066.57,-19232.098,210260.48,152406.25,0,0,2304.7046 +2809,3481,6101,6100,-9,-9,1,1,33,1,3,0,1,1,-9,0,5,7.8757925,7.8914657,0,4,0,49.064693,0,-9,-9,2021,7,0,50,50,1,0,0,5.3858609,5.3858609,0,0,0,0,0,0,0,0,1,1,0,0,0,51.07,29.37,41.42,48.37,6.666666666666667,2,3,0,0,4,8,3,0,460.66666,91066.57,-19232.098,210260.48,152406.25,0,0,2304.7046 +2810,3482,6102,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1201.7372,0,2,2,2021,23,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,-9,-9,0,1,1,0,0,0,7,1,0,584,-101219.99,-1916.3864,0,0,0,0,714.42218 +2811,3483,6103,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1001.7615,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7248365,0,61.31,47.65,-9,-9,10,1,1,0,0,0,8,1,1,862,2358.8245,0,0,0,0,0,1573.0339 +2812,3484,6104,6106,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,7.0706429,6.9511404,0,16,0,154.28598,0,3,1,2021,9,0,15,15,1,0,0,10.223626,10.223626,.05,.05,0,0,0,0,0,0,1,1,0,7.6801996,0,45.71,50.88,51.22,52.1,8.333333333333334,2,3,0,0,5,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2812,3484,6105,-9,6104,6106,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.16797,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2812,3484,6106,6104,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.7297516,8.7276688,0,16,0,157.64333,0,1,1,2021,6,0,37,40,1,0,0,18.101074,18.101074,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.22,52.1,45.71,50.88,8.333333333333334,2,3,0,0,11,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2812,3484,6107,-9,6104,6106,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-957.51764,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,4,1,668.5,551006.69,469270.78,0,0,0,0,5045.1504 +2813,3485,6108,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,7.226428,7.5583701,0,0,0,-1141.9337,0,2,2,2021,9,1,18,0,1,1,0,11.899339,11.899339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,158,33274.328,44038.266,0,0,0,0,413.7229 +2814,3486,6109,6110,-9,-9,1,0,37,0,2,0,1,1,-9,0,1,7.5771232,7.3847294,0,13,-2,-21.156889,-9,2,3,2021,23,11,19,0,1,11,0,10.213946,10.213946,.05,.05,0,0,0,0,0,0,1,1,0,1.7203517,0,34.23,36.02,55.2,49.4,6.666666666666667,1,1,0,0,10,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2814,3486,6110,6109,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,8.877183,8.8124266,0,13,2,33.556229,-9,2,2,2021,8,0,47,0,1,0,0,14.673379,14.673379,.05,.05,0,0,0,0,0,0,1,1,0,2.0577443,0,55.2,49.4,34.23,36.02,6.666666666666667,1,1,0,0,12,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2814,3486,6111,-9,6109,6110,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8464,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2814,3486,6112,-9,6109,6110,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.71039,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1584.25,168595.41,133502.64,208580.59,60146.922,-314.85123,0,3406.9434 +2815,3487,6113,6114,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.6382408,8.5427189,0,1,-2,-20.194912,-9,3,3,2021,20,8,44,0,1,8,0,17.097195,17.097195,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.19,61.63,50,57,6.666666666666667,1,1,0,0,7,11,5,1,1461.5,80139.391,79567.898,112322.59,121864.3,3677.3442,0,4194.335 +2815,3487,6114,6113,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.8335562,8.1308851,0,1,2,148.0054,-9,-9,-9,2021,10,0,50,0,1,1,0,8.1015902,8.1015902,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,31.19,61.63,7,1,1,0,0,1,11,5,1,1461.5,80139.391,79567.898,112322.59,121864.3,3677.3442,0,4194.335 +2816,3488,6115,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,7.4714656,8.0268726,0,0,-1094.0154,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,7.721952,64.31,32.38,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,711,245463.86,18100.014,208389.69,0,0,0,1204.74 +2817,3489,6116,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,7.2442555,7.4766083,5.6460996,0,0,-996.72711,-9,2,2,2021,9,1,30,0,1,1,0,7.1770854,7.1770854,0,0,0,0,0,0,0,0,1,1,0,0,5.7612662,40.94,58.35,-9,-9,6.666666666666667,1,1,0,0,13,5,3,1,785,559874.44,335223.5,270187.19,0,0,0,1397.6729 +2818,3490,6117,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.3519783,8.356741,0,0,0,-912.00275,0,3,3,2021,6,0,46,41,1,0,0,11.647049,11.647049,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,15,13,4,1,302,1035.6309,48278.992,0,0,0,0,2417.1787 +2819,3491,6118,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,7.7892437,7.8887005,6.723031,0,0,-1042.2142,0,3,3,2021,32,12,50,-9,1,12,0,5.6767664,5.6767664,0,0,0,0,0,0,0,0,0,0,0,6.7416654,6.7879868,16.91,56.31,-9,-9,1.666666666666667,1,1,0,0,10,8,4,1,968,890507.63,32749.129,733196.25,75840.891,0,0,1516.4283 +2820,3492,6119,6120,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.1899977,7.9885278,58,-3,5.2072511,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.662426,59.71,50.89,57.74,42.24,8.333333333333334,1,1,0,0,0,10,3,1,587.5,1679134,445204.63,591774.19,0,0,0,1873.333 +2820,3492,6120,6119,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,58,3,-50.867531,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.74,42.24,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,587.5,1679134,445204.63,591774.19,0,0,0,1873.333 +2821,3493,6121,-9,6123,6122,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.7035,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,4,1,894,64943.754,-23966.201,66646.055,33241.16,0,0,2700.9683 +2821,3493,6122,6123,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.3875189,8.5342197,0,5,0,-90.220215,0,-9,-9,2021,19,7,37,39,1,7,0,12.72066,12.72066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.6,54.09,48.84,34.06,6.666666666666667,1,1,0,1,4,11,4,1,894,64943.754,-23966.201,66646.055,33241.16,0,0,2700.9683 +2821,3493,6123,6122,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.6265068,7.485548,0,5,0,11.004918,0,-9,-9,2021,7,1,24,25,1,1,0,11.386926,11.386926,.05,.05,0,0,0,0,0,0,1,1,0,1.5204865,0,48.84,34.06,32.6,54.09,8.333333333333334,1,1,0,1,10,11,4,1,894,64943.754,-23966.201,66646.055,33241.16,0,0,2700.9683 +2822,3494,6124,-9,6125,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-922.74908,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,497.5,-20225.881,27908.604,0,0,0,0,1640.4346 +2822,3494,6125,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,7.6347604,7.7479272,5.2104149,0,0,-984.70502,0,-9,-9,2021,12,0,30,20,1,0,0,5.7965646,5.7965646,.05,.05,0,0,0,0,0,0,1,1,0,5.5817475,0,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,497.5,-20225.881,27908.604,0,0,0,0,1640.4346 +2823,3495,6126,6127,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.8404441,7.7877851,48,11,-35.941208,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4567986,7.9557281,59.07,43.05,59.14,52.5,8.333333333333334,1,1,0,0,0,2,4,1,955.5,1321205.8,372935.25,390676.63,0,0,0,3532.8047 +2823,3495,6127,6126,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.5070987,7.5397673,48,-11,55.380417,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.7696447,7.8833413,59.14,52.5,59.07,43.05,10,1,1,0,0,0,2,4,1,955.5,1321205.8,372935.25,390676.63,0,0,0,3532.8047 +2824,3496,6128,-9,6129,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.5076,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,0,1085.3334,47148.668,0,0,0,0,0,1385.6302 +2824,3496,6129,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,0,0,0,0,0,-992.74139,0,2,1,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,33.21,55.18,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,1085.3334,47148.668,0,0,0,0,0,1385.6302 +2824,3496,6130,-9,6129,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-895.98694,-9,2,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.71,59.35,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1085.3334,47148.668,0,0,0,0,0,1385.6302 +2825,3497,6131,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-908.93396,0,-9,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,21.473612,0,0,1,1,0,0,0,47.97,17.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,420,247693.63,0,152670.58,0,0,0,308.31949 +2826,3498,6132,6133,-9,-9,1,1,70,0,0,0,1,1,-9,0,1,0,7.0823493,7.089992,12,8,-72.422195,0,1,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,.1156057,2.7628422,27.286949,120,1,1,0,0,7.0343103,51.83,22.11,56.47,15.01,8.333333333333334,1,1,0,1,0,2,2,0,1611,977812.38,413265.31,461716.47,0,0,0,2429.3899 +2826,3498,6133,6132,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,12,-8,45.983524,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,15.01,51.83,22.11,6.666666666666667,1,1,0,1,0,2,2,0,1611,977812.38,413265.31,461716.47,0,0,0,2429.3899 +2827,3499,6134,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.9783001,8.0121031,0,0,0,-956.2428,0,2,3,2021,13,1,52,48,1,1,0,6.9003334,6.9003334,0,0,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,-9,-9,6.666666666666667,1,1,0,1,9,9,4,1,1835,80688.469,0,209801.11,62533.617,0,0,988.50464 +2828,3500,6135,-9,6137,6136,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.3141,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,0,246.66667,190884.22,57622.789,0,0,0,0,1969.6558 +2828,3500,6136,6137,-9,-9,1,1,30,0,1,0,1,1,-9,0,4,7.6977348,7.7950273,0,5,1,103.0114,0,2,2,2021,10,0,45,40,1,1,0,5.3350983,5.3350983,.05,.05,0,0,0,0,0,0,1,1,0,3.0451145,0,49,58,40.86,51.7,7,1,1,0,0,1,11,4,0,246.66667,190884.22,57622.789,0,0,0,0,1969.6558 +2828,3500,6137,6136,-9,-9,1,0,29,0,1,0,1,1,-9,0,3,8.1095762,8.0533142,0,5,-1,-32.787971,0,-9,-9,2021,14,2,45,38,1,2,0,6.0562387,6.0562387,0,0,0,0,0,0,0,0,1,1,0,0,0,40.86,51.7,49,58,6.666666666666667,1,1,0,0,5,11,4,0,246.66667,190884.22,57622.789,0,0,0,0,1969.6558 +2829,3501,6138,6139,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.7292747,7.7826881,8,-1,-32.025726,0,3,3,2021,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2740722,7.7302384,59.7,53.75,47.98,54.13,10,1,1,0,0,8,13,4,1,587,854309.75,683789.63,177551.8,0,0,0,2488.4082 +2829,3501,6139,6138,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.3389854,7.4910188,8,1,131.60168,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.631938,7.7112942,47.98,54.13,59.7,53.75,8.333333333333334,1,1,0,0,5,13,4,1,587,854309.75,683789.63,177551.8,0,0,0,2488.4082 +2830,3502,6140,6141,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.6662254,8.6804667,43,-4,56.9398,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2673591,8.4405756,58.15,52.91,59.88,45.34,8.333333333333334,1,1,0,0,9,8,5,1,1104.5,2389996.3,953418.88,943121.63,0,0,0,6190.8428 +2830,3502,6141,6140,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3994598,8.1776514,43,4,-39.691311,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4710655,59.88,45.34,58.15,52.91,8.333333333333334,1,1,0,0,9,8,5,1,1104.5,2389996.3,953418.88,943121.63,0,0,0,6190.8428 +2831,3503,6142,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,8.5051413,8.769331,0,0,-926.04358,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3416967,8.2398281,60.62,41.03,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,821,200072.02,124893.25,248503.55,0,0,0,3583.8916 +2832,3504,6143,-9,6144,6146,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1032.9618,-9,2,1,2021,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.23928,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2832,3504,6144,6146,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.8030305,6.7378707,0,22,-11,-15.074627,0,2,1,2021,8,0,20,20,1,0,0,4.5009875,4.5009875,0,0,0,0,0,0,0,0,0,0,0,8.2858562,0,54.1,59.11,57.16,56.15,10,1,1,0,0,7,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2832,3504,6145,-9,6144,6146,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1026.0923,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2832,3504,6146,6144,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,9.5532761,9.7571421,5.9019327,23,11,-1.7548808,0,2,2,2021,6,0,40,50,1,0,0,35.218796,35.218796,0,0,0,0,0,0,0,0,0,0,0,6.2637439,6.1334524,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,4,5,1,761.75,2040670.8,1366873.9,525113.88,102247.82,10211.123,0,6232.2354 +2833,3505,6147,6148,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8445635,9.2163687,7.8156967,34,0,-18.572708,0,3,2,2021,6,0,55,42,1,0,0,14.955863,14.955863,0,0,.05,0,0,0,0,2,0,0,0,6.1325808,7.9274526,54.2,57.49,41.17,59.31,8.333333333333334,1,1,0,0,8,6,5,1,966,1158380.6,879150,238942.66,0,0,0,6419.5127 +2833,3505,6148,6147,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.4928598,8.9525661,0,34,0,-157.65216,0,3,3,2021,9,0,38,39,1,0,0,22.149176,22.149176,0,0,0,0,0,0,0,0,0,0,0,6.1300306,0,41.17,59.31,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,966,1158380.6,879150,238942.66,0,0,0,6419.5127 +2834,3506,6149,6150,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.469574,8.7667027,0,3,-4,-60.709076,0,-9,-9,2021,10,0,48,38,1,0,0,13.48775,13.48775,.05,.05,0,0,0,0,0,0,0,0,0,2.4022772,0,57.16,56.15,52.99,51.28,8.333333333333334,1,1,0,0,12,4,5,1,348.5,347066.44,243346.5,204012.66,116685.45,12082.672,6313.9585,4595.0391 +2834,3506,6150,6149,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.859808,8.6912975,0,3,4,107.99036,0,2,3,2021,8,0,45,40,1,0,0,16.203033,16.203033,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52.99,51.28,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,348.5,347066.44,243346.5,204012.66,116685.45,12082.672,6313.9585,4595.0391 +2835,3507,6151,6152,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,59,1,0,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.069562,0,52,45,48.42,44.15,8,1,1,0,0,0,7,1,0,864.5,490326.75,0,429422,0,0,0,1099.5526 +2835,3507,6152,6151,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,59,-1,0,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,1.5860554,0,120,1,1,0,0,0,48.42,44.15,52,45,8.333333333333334,1,1,0,0,0,7,1,0,864.5,490326.75,0,429422,0,0,0,1099.5526 +2836,3508,6153,-9,6154,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.74103,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,883,-132673.56,0,0,0,0,0,2118.0039 +2836,3508,6154,-9,-9,-9,1,0,39,0,1,0,2,2,0,0,2,0,0,0,0,0,-859.8576,-9,2,3,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.14,38.88,-9,-9,8.333333333333334,1,1,0,0,8,9,1,0,883,-132673.56,0,0,0,0,0,2118.0039 +2837,3509,6155,6156,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.5154676,5.3379407,6,-2,-38.329922,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,67.716324,0,0,1,1,0,0,5.2864957,53,45,55,45,8,1,1,0,0,0,11,2,1,520,553102.38,119815.16,53690.711,0,0,0,1894.5095 +2837,3509,6156,6155,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.5238886,6.6587481,6,2,2.207767,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.8738418,55,45,53,45,8,1,1,0,0,0,11,2,1,520,553102.38,119815.16,53690.711,0,0,0,1894.5095 +2838,3510,6157,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,7.3012986,7.6693954,7.2037067,0,0,-1044.8748,0,3,3,2021,13,1,21,15,1,1,0,8.7850666,8.7850666,0,0,0,0,0,0,0,0,1,1,0,0,7.5186143,46.22,23.84,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,925,150755.19,161980.91,0,0,0,0,1804.4832 +2839,3511,6158,6159,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,12,6,-31.897572,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6245303,0,64.81,27.15,45,37,10,1,1,0,0,0,4,2,1,3491,261610.52,-61230.258,208234.17,0,0,0,2108.2708 +2839,3511,6159,6158,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.8752766,6.7828102,12,-6,-18.846378,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4500003,6.6415553,45,37,64.81,27.15,8.333333333333334,1,1,0,0,0,4,2,1,3491,261610.52,-61230.258,208234.17,0,0,0,2108.2708 +2840,3512,6160,-9,-9,-9,1,0,41,2,2,0,2,2,-9,0,3,7.6318855,7.5433512,0,0,0,-916.21942,-9,3,2,2021,11,0,40,0,1,0,0,6.5742836,6.5742836,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,54.02,55.17,-9,-9,5,1,1,0,1,6,9,3,0,738,-54495.762,-53089.43,0,0,0,0,1741.76 +2840,3513,6161,-9,6160,-9,1,0,23,2,2,0,2,2,-9,0,3,0,0,0,0,0,-969.50848,0,2,-9,2021,12,0,0,30,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.87,46.41,-9,-9,8.333333333333334,1,1,0,0,7,9,1,0,1719.3334,126469.57,0,0,0,0,0,230.78053 +2840,3513,6162,-9,6161,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-919.63159,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,1,0,1719.3334,126469.57,0,0,0,0,0,230.78053 +2840,3513,6163,-9,6161,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.4376,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,1,0,1719.3334,126469.57,0,0,0,0,0,230.78053 +2841,3514,6164,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.5532165,6.6090589,0,0,-983.20563,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,37.419716,0,0,1,1,0,0,6.9689364,55.6,7.62,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,251,432535.38,132949.34,98770.453,0,0,0,2705.3611 +2842,3515,6165,6166,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5374489,8.1678953,0,1,-7,2.4349787,-9,-9,-9,2021,6,2,38,0,1,2,0,14.883933,14.883933,.05,.05,0,0,0,0,0,7,0,0,0,.14715262,0,52.55,55.93,54.2,57.49,6.666666666666667,1,1,0,0,7,12,4,0,388,69225.25,36324.836,95157.805,31140.285,4641.1777,0,2484.9915 +2842,3515,6166,6165,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,7.8852882,7.7687931,0,1,7,23.658136,-9,2,2,2021,5,0,39,0,1,0,0,6.812758,6.812758,.05,.05,0,0,0,0,0,2,0,0,0,.48735809,0,54.2,57.49,52.55,55.93,8.333333333333334,1,1,0,0,7,12,4,0,388,69225.25,36324.836,95157.805,31140.285,4641.1777,0,2484.9915 +2843,3516,6167,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.3362679,6.2304211,0,0,-963.19379,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.4356787,0,0,1,1,0,2.971101,6.5236998,50.92,31.76,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,504,-123561.52,19747.744,0,0,0,0,674.91913 +2844,3517,6168,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.7132807,7.9993067,0,0,-1016.8273,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1889114,53.81,45.69,-9,-9,8.333333333333334,1,1,0,0,9,1,3,1,1216,578992.81,333632.78,-6097.1504,0,2219.7771,0,559.31079 +2845,3518,6169,6170,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.1397185,6.2477922,12,11,54.746983,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7577643,6.3930383,36.74,39.98,35.44,36.71,6.666666666666667,1,1,0,0,6,6,2,1,1484.5,173154.25,0,149525.03,0,0,0,1104.2393 +2845,3518,6170,6169,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,20,-11,-30.045103,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,35.44,36.71,36.74,39.98,5,1,1,0,0,2,6,2,1,1484.5,173154.25,0,149525.03,0,0,0,1104.2393 +2846,3519,6171,6172,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2906485,7.8628612,0,8,1,-32.608814,-9,3,2,2021,10,0,37,0,1,0,0,10.741943,10.741943,.05,.05,0,0,0,0,0,0,1,0,1,.68092495,0,53.59,49.64,58.15,52.91,8.333333333333334,1,1,0,0,11,13,4,1,756.33331,56706.367,-33560.082,0,0,0,0,2718.4358 +2846,3519,6172,6171,-9,-9,1,0,48,0,1,0,2,2,-9,1,4,7.2071104,7.2877951,0,8,-1,77.715454,0,3,2,2021,6,0,22,25,1,0,0,6.5920978,6.5920978,0,0,0,0,0,0,0,0,1,0,1,0,0,58.15,52.91,53.59,49.64,8.333333333333334,1,1,0,0,11,13,4,1,756.33331,56706.367,-33560.082,0,0,0,0,2718.4358 +2846,3519,6173,-9,6172,6171,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-981.23541,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,756.33331,56706.367,-33560.082,0,0,0,0,2718.4358 +2846,3520,6174,-9,6172,6171,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-946.43756,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,1,0,0,13,2,1,716,-85034.75,0,0,0,0,0,0 +2846,3521,6175,-9,6172,6171,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1018.6393,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1429,-33316.824,0,0,0,0,0,0 +2847,3522,6176,6177,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,4.6819758,4.8300266,10,-1,-82.061501,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,0,1,4.3393431,4.663456,55.61,50.3,33.02,37.98,8.333333333333334,1,1,0,0,0,2,2,1,446,159286.78,13414.621,0,0,0,0,1661.1074 +2847,3522,6177,6176,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,4.3674626,4.0450406,40,1,-110.30737,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,74.700691,.81373024,0,1,0,1,7.1138978,4.2747278,33.02,37.98,55.61,50.3,8.333333333333334,1,1,0,0,0,2,2,1,446,159286.78,13414.621,0,0,0,0,1661.1074 +2847,3523,6178,-9,6177,6176,1,0,57,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1175.8007,-9,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,44.43,56.74,-9,-9,5,1,1,0,0,0,2,1,1,831,76070.25,0,0,0,0,2997.0283,912.6217 +2848,3524,6179,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.1670384,7.4580169,0,0,-1028.1514,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0322294,7.3936601,55.56,51.53,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,386,492836.59,180698.94,191082.3,0,0,721.02924,1614.4681 +2849,3525,6180,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1076.7504,0,2,2,2021,12,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,7,1,0,1284,248601.44,0,394100.63,3030.1882,0,0,1379.4805 +2849,3526,6181,-9,6180,-9,1,0,21,0,0,0,2,2,-9,0,5,8.0107603,7.5801463,0,0,0,-1053.6318,0,3,-9,2021,9,1,35,39,1,1,1,7.8443308,7.8443308,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,5,7,3,0,1871,20614.809,0,0,0,0,0,2424.4309 +2850,3527,6182,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1102.4983,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,2,1,1,3633,96298.75,0,0,0,0,2504.0215,1410.3639 +2851,3528,6183,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-928.73895,-9,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.38,23.69,-9,-9,5,1,1,0,0,8,12,2,0,1393,-168951.47,0,0,0,0,0,784.99969 +2852,3529,6184,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.6299295,6.6849132,0,0,-1018.642,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.931612,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,449,424247.88,241824.81,220423.09,0,0,0,324.10498 +2853,3530,6185,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,5.7285333,5.9735398,0,0,-896.35675,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7308617,5.7780685,66.22,30.66,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,886,350331.06,81869.492,248983.41,0,0,0,1134.2083 +2854,3531,6186,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,0,0,0,0,0,-949.54926,0,3,2,2021,15,3,0,16,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.08,47.16,-9,-9,8.333333333333334,1,1,1,0,6,11,2,0,674,113999.09,0,0,0,0,0,767.07147 +2855,3532,6187,6188,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.158988,6.8274636,0,26,-6,29.324196,0,-9,-9,2021,4,1,25,27,1,1,0,4.3338771,4.3338771,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,53,55,10,2,3,0,0,6,1,4,1,1152.5,97721.156,158997.03,0,0,0,0,1889.5502 +2855,3532,6188,6187,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.1335258,8.2312641,0,7,6,39.425175,0,-9,-9,2021,9,0,39,40,1,1,0,9.2211313,9.2211313,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,55,57.06,57.76,8,2,3,0,0,1,1,4,1,1152.5,97721.156,158997.03,0,0,0,0,1889.5502 +2855,3533,6189,-9,6187,6188,1,0,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-895.67267,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,2,1,2,1,477,117347.08,0,0,0,0,0,0 +2855,3534,6190,-9,6187,6188,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-983.18073,-9,2,3,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,0,1,1,1,2754,0,0,0,0,0,0,808.26178 +2856,3535,6191,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.0053282,8.3756304,0,0,0,-1051.0909,0,3,3,2021,6,0,40,40,1,0,0,8.845027,8.845027,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.65,60.47,-9,-9,8.333333333333334,1,1,0,0,9,12,4,0,906,806470.06,333927.41,267326.03,0,0,0,1374.1326 +2857,3536,6192,-9,6195,6193,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.11133,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2857,3536,6193,6195,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,7.8133616,8.0550337,0,3,1,35.106091,0,2,2,2021,6,0,47,43,1,0,0,7.9376073,7.9376073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,53.44,55.06,8.333333333333334,1,1,0,0,13,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2857,3536,6194,-9,6195,6193,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.5089,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2857,3536,6195,6193,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,0,0,0,3,-1,-11.773537,-9,-9,-9,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,48.87,58.55,8.333333333333334,1,1,0,0,1,4,3,1,1403.25,149094.81,-2935.7334,138874.08,48408.953,2273.1411,0,2230.4124 +2858,3537,6196,6199,-9,-9,1,0,31,2,6,0,2,2,-9,1,3,0,5.3455811,5.7748971,4,4,-11.19628,0,1,1,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.7547445,0,45.92,53.14,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6197,-9,6196,6199,1,0,1,2,6,1,3,0,-9,0,4,0,0,0,0,0,-988.59033,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6198,-9,6196,6199,1,0,5,2,6,1,3,0,-9,0,4,0,0,0,0,0,-980.62836,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6199,6196,-9,-9,1,1,27,2,6,0,2,2,-9,0,4,8.6650085,8.0693684,0,4,-4,-41.142784,0,-9,-9,2021,9,0,60,60,1,0,0,8.6374683,8.6374683,.05,.05,0,0,0,0,0,0,1,1,0,1.925321,0,57.16,56.15,45.92,53.14,8.333333333333334,1,1,0,0,3,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6200,-9,6196,6199,1,0,8,2,6,1,3,0,-9,0,4,0,0,0,0,0,-979.1297,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6201,-9,6196,6199,1,1,12,2,6,1,3,0,-9,0,3,0,0,0,0,0,-1120.3545,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6202,-9,6196,6199,1,0,0,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1124.4851,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2858,3537,6203,-9,6196,6199,1,0,9,2,6,1,3,0,-9,0,4,0,0,0,0,0,-932.85516,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1097,131983.36,-12266.624,113805.36,0,0,0,3574.9268 +2859,3538,6204,6205,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,0,0,7,5,-65.761299,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0764899,0,53.87,28.08,57.33,53.46,6.666666666666667,1,1,0,0,2,6,2,1,498,473653.66,146443.64,200434.69,0,29756.818,0,1870.9272 +2859,3538,6205,6204,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.0433068,5.8506184,7,-5,75.878242,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5049667,6.0621171,57.33,53.46,53.87,28.08,10,1,1,0,0,0,6,2,1,498,473653.66,146443.64,200434.69,0,29756.818,0,1870.9272 +2860,3539,6206,6207,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,9.3097477,8.8719501,0,22,0,93.764679,0,2,2,2021,3,0,55,50,1,0,0,28.970316,28.970316,.05,.05,0,0,0,0,0,0,0,0,0,3.1397614,0,59.19,51.29,56.92,49.39,8.333333333333334,1,1,0,0,11,9,5,1,1241.3334,1024001.3,205440.92,916948.63,267983.03,0,0,9036.9023 +2860,3539,6207,6206,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.6374016,9.5750294,0,22,0,30.096992,0,2,2,2021,11,0,50,52,1,0,0,33.799809,33.799809,.05,.05,0,0,0,0,0,0,0,0,0,2.1015053,0,56.92,49.39,59.19,51.29,8.333333333333334,1,1,0,0,14,9,5,1,1241.3334,1024001.3,205440.92,916948.63,267983.03,0,0,9036.9023 +2860,3539,6208,-9,6206,6207,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.38513,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1241.3334,1024001.3,205440.92,916948.63,267983.03,0,0,9036.9023 +2860,3540,6209,-9,6206,6207,1,0,19,0,1,0,2,2,0,0,5,0,0,0,0,0,-1074.7389,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1082,-193662.06,120792.17,0,0,0,0,-394.29202 +2860,3541,6210,-9,6206,6207,1,0,19,0,1,0,2,2,1,0,5,7.8515649,8.1387148,0,0,0,-1020.4649,-9,1,1,2021,12,0,38,0,1,0,1,7.2631741,7.2631741,0,0,0,0,0,0,0,0,0,0,0,0,0,38.78,62.13,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,326,-123921.32,0,0,0,0,0,947.35876 +2861,3542,6211,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.7968745,4.998548,0,0,-1073.8375,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6607924,4.6961279,52.93,55.31,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,262,78443.031,0,191604.16,73777.664,0,905.91321,1089.8925 +2862,3543,6212,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.1362672,6.0858946,0,0,-957.22443,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8395162,5.8404083,37.51,34.33,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,1214,145340.52,189735.02,-33380.086,0,0,1339.6857,818.69556 +2863,3544,6213,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1011.6874,0,3,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.65,27.72,-9,-9,0,1,1,0,1,3,6,2,0,4293,71105.641,0,0,0,0,0,-55.497028 +2863,3545,6214,-9,6213,-9,1,0,37,0,0,0,2,2,-9,0,4,7.5942521,7.2290545,0,0,0,-1087.776,-9,3,-9,2021,11,0,38,0,1,2,1,6.9261875,6.9261875,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,6,3,0,1572,-86297.461,0,0,0,0,16577.148,1089.7197 +2864,3546,6215,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.4113903,9.5929079,0,0,0,-1074.5844,0,-9,-9,2021,6,1,120,50,1,1,0,14.892477,14.892477,.05,.05,0,0,0,0,0,0,0,0,0,2.0900142,0,50.65,60.47,-9,-9,5,1,1,0,0,12,7,5,0,944,291011.41,291468.22,195508.38,83762.5,0,0,6109.3228 +2865,3547,6216,6217,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,54,-2,-17.389982,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38860244,0,44.17,44.46,60.29,52.11,6.666666666666667,1,1,0,0,7,6,2,1,651.5,1542060.5,213654.67,875756.06,0,4154.0659,0,1685.1099 +2865,3547,6217,6216,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.4309278,7.2367549,54,2,46.103416,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4075017,7.396637,60.29,52.11,44.17,44.46,8.333333333333334,1,1,0,0,2,6,2,1,651.5,1542060.5,213654.67,875756.06,0,4154.0659,0,1685.1099 +2866,3548,6218,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-962.78156,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,3.9902592,0,0,1,1,0,0,0,37.86,31.43,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,926,13090.892,0,0,0,0,0,1578.3975 +2867,3549,6219,6220,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,7.5538907,7.6950374,0,24,-10,-124.87022,0,2,2,2021,18,6,25,25,1,6,0,8.8638029,8.8638029,0,0,0,0,0,0,0,42,1,1,0,0,0,32.85,29.79,54.37,54.8,5,1,1,0,0,2,10,3,0,631.5,-77941.289,653.57715,246585.47,122803.65,0,2921.5859,2098.4065 +2867,3549,6220,6219,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.1472301,7.2788634,0,24,10,113.25298,-9,3,2,2021,10,0,72,0,1,0,0,2.7155209,2.7155209,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,54.37,54.8,32.85,29.79,5,1,1,0,0,11,10,3,0,631.5,-77941.289,653.57715,246585.47,122803.65,0,2921.5859,2098.4065 +2868,3550,6221,6222,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,6.2903471,6.6749177,63,0,32.602661,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,16.510532,0,0,1,1,0,0,6.833889,24.93,19.95,43.03,26.89,5,1,1,0,0,0,9,2,1,496,483266.25,77207.57,415801.09,0,0,0,2380.2498 +2868,3550,6222,6221,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,3.5821438,4.2224646,8,0,-120.97377,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,18.502464,0,120,1,1,0,3.3684239,4.0191288,43.03,26.89,24.93,19.95,5,1,1,0,0,0,9,2,1,496,483266.25,77207.57,415801.09,0,0,0,2380.2498 +2869,3551,6223,-9,6224,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-991.84058,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,4,1,3350,-40088.266,49827.617,0,0,0,0,2396.4907 +2869,3551,6224,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.5614243,8.4701786,0,0,0,-972.99445,0,2,2,2021,12,0,34,35,1,0,0,16.961227,16.961227,.05,.05,0,0,0,0,0,0,1,1,0,3.6339834,0,44.51,40.48,-9,-9,5,1,1,0,0,9,6,4,1,3350,-40088.266,49827.617,0,0,0,0,2396.4907 +2870,3552,6225,6226,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,9.3140612,9.2885017,0,24,5,6.5068722,0,2,3,2021,9,0,37,38,1,1,0,32.43602,32.43602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,55.36,51.57,8,1,1,0,0,1,7,5,1,661,2584557,2085863.9,389055.94,0,0,0,5012.5635 +2870,3552,6226,6225,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.946671,7.8843336,0,24,-5,48.674847,0,1,1,2021,8,0,40,47,1,0,0,8.39779,8.39779,.05,.05,0,0,0,0,0,0,1,1,0,2.9732869,0,55.36,51.57,53,54,8.333333333333334,1,1,0,0,7,7,5,1,661,2584557,2085863.9,389055.94,0,0,0,5012.5635 +2871,3553,6227,6228,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.0754738,5.5458746,10,11,-45.448101,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1532378,5.1058173,54.63,58.83,58.15,52.91,10,1,1,0,0,0,9,2,1,364.5,397976.5,136120.05,247016.84,0,0,0,874.79272 +2871,3553,6228,6227,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,41,-11,44.144829,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6190284,0,58.15,52.91,54.63,58.83,10,1,1,0,0,10,9,2,1,364.5,397976.5,136120.05,247016.84,0,0,0,874.79272 +2872,3554,6229,6230,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,8.5387421,8.4066744,5.3829675,6,1,-25.335388,0,2,2,2021,14,1,37,37,1,1,0,16.694279,16.694279,0,0,0,0,0,0,0,0,1,1,0,5.1095376,5.889564,32.83,48.42,44.82,52.64,5,1,1,0,0,7,7,4,0,711.5,908689.81,3578.0117,799728.25,0,1002.3751,500.44958,3332.7104 +2872,3554,6230,6229,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,4.481935,4.3111062,0,6,-1,-104.19482,0,-9,-9,2021,12,0,3,5,1,0,0,2.5233531,2.5233531,0,0,0,1,0,0,0,0,1,1,0,0,0,44.82,52.64,32.83,48.42,6.666666666666667,1,1,0,0,7,7,4,0,711.5,908689.81,3578.0117,799728.25,0,1002.3751,500.44958,3332.7104 +2873,3555,6231,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,6.0113192,6.2439384,0,0,-1086.4287,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3182564,6.1924043,57.65,56.13,-9,-9,10,1,1,0,0,0,13,2,0,435,335676.25,-1104.4072,182349.89,0,0,0,1288.8253 +2874,3556,6232,6233,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,2.1294358,2.4382029,44,-1,102.68194,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4432328,2.337307,54.97,47.63,60.12,54.8,8.333333333333334,1,1,0,0,8,4,2,1,565,70210.055,75213,0,0,0,0,1384.4634 +2874,3556,6233,6232,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,5.9284577,5.6334715,45,1,-113.63124,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3841891,6.0836062,60.12,54.8,54.97,47.63,1.666666666666667,1,1,0,0,6,4,2,1,565,70210.055,75213,0,0,0,0,1384.4634 +2875,3557,6234,6235,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.0463052,7.0427508,11,-1,117.95436,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.8858056,55.93,52.62,52.48,55.6,8.333333333333334,1,1,0,0,4,6,2,1,513,592935.13,349041.25,149857.44,0,0,0,2016.1123 +2875,3557,6235,6234,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,11,1,-76.30777,0,3,3,2021,6,0,0,14,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7138886,0,52.48,55.6,55.93,52.62,8.333333333333334,1,1,0,0,14,6,2,1,513,592935.13,349041.25,149857.44,0,0,0,2016.1123 +2876,3558,6236,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.720747,8.7528458,0,0,0,-1097.7965,0,3,3,2021,11,0,37,47,1,2,0,17.159311,17.159311,.05,.05,0,0,0,0,0,7,0,0,0,3.8863811,0,48,48,-9,-9,7,1,1,0,0,9,6,5,1,1416,590920.06,332217.28,223166.03,53198.105,0,0,1723.7418 +2877,3559,6237,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1017.9796,0,2,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.17,17.85,-9,-9,8.333333333333334,1,1,0,0,13,9,1,0,340,-437.13425,0,0,0,0,0,165.47041 +2878,3560,6238,6239,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7636452,7.7138,10,1,-44.120911,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0249815,7.9439926,48.34,52.06,43.44,43.91,8.333333333333334,1,1,0,0,8,11,3,1,1453.5,946075.63,697459.13,275972.53,0,0,0,3177.3005 +2878,3560,6239,6238,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.3957305,5.4265027,10,-1,-40.540546,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1946721,43.44,43.91,48.34,52.06,3.333333333333333,1,1,0,0,2,11,3,1,1453.5,946075.63,697459.13,275972.53,0,0,0,3177.3005 +2879,3561,6240,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.200366,6.0183306,0,0,-1067.0829,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9134359,20.32,39.7,-9,-9,1.666666666666667,1,1,0,1,0,8,2,1,270,11731.009,-34095.109,201451.42,0,0,0,957.67828 +2880,3562,6241,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.8580694,6.6489391,0,0,-954.28021,0,3,3,2021,9,2,0,15,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7566123,6.451932,63.24,45.09,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,165,-196945.77,27158.16,0,0,0,0,1773.4574 +2881,3563,6242,6243,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,54,5,97.84166,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.35,43.87,42.44,30.9,5,1,1,0,0,0,6,2,1,1625.5,200823.61,174475.02,41541.371,0,0,0,96.992859 +2881,3563,6243,6242,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.0539074,5.9944887,54,-5,-71.569733,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,8.4106932,0,0,1,1,0,0,6.1733065,42.44,30.9,55.35,43.87,5,1,1,0,0,0,6,2,1,1625.5,200823.61,174475.02,41541.371,0,0,0,96.992859 +2882,3564,6244,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.234869,8.0878267,0,0,0,-1148.9554,0,2,1,2021,7,0,45,46,1,0,0,6.4318738,6.4318738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.46,47.78,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,525,42908.559,50524.707,0,0,0,0,956.20074 +2883,3565,6245,6246,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4196939,8.1257248,11,7,-38.090508,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3821847,8.0287991,62.1,51.16,48.82,20.07,8.333333333333334,1,1,0,0,3,10,4,1,831.5,1682778.8,688991.63,567691.88,0,0,0,4210.3281 +2883,3565,6246,6245,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,7.2165966,7.0238056,11,-7,39.684708,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,27.981737,0,0,1,1,0,2.4285836,7.031601,48.82,20.07,62.1,51.16,3.333333333333333,1,1,0,0,8,10,4,1,831.5,1682778.8,688991.63,567691.88,0,0,0,4210.3281 +2884,3566,6247,-9,6248,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.44135,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,482.66666,101656.96,25577.934,114406.64,14251.384,0,3354.4492,1860.7263 +2884,3566,6248,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,7.327136,7.7794785,5.8044529,0,0,-826.48529,0,3,3,2021,11,0,36,24,1,0,0,5.4347215,5.4347215,0,0,0,0,0,0,0,0,1,1,0,5.6537843,0,52.3,57.2,-9,-9,8.333333333333334,1,1,0,0,10,12,3,0,482.66666,101656.96,25577.934,114406.64,14251.384,0,3354.4492,1860.7263 +2884,3566,6249,-9,6248,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.8372,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,482.66666,101656.96,25577.934,114406.64,14251.384,0,3354.4492,1860.7263 +2885,3567,6250,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-975.02136,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60228646,0,48.92,37.32,-9,-9,3.333333333333333,1,1,0,0,12,10,1,0,882,95148.75,0,0,0,8383.4316,1960.8606,856.01825 +2886,3568,6251,6252,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.0010548,7.6792402,11,8,-78.576828,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0127764,54.2,57.49,60.12,54.8,8.333333333333334,1,1,0,0,7,12,4,1,543,1720326.8,1111394.8,334290.13,0,670.47278,0,2819.7898 +2886,3568,6252,6251,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.7772641,7.5879922,11,-8,-134.13057,0,2,2,2021,7,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6884761,7.2802148,60.12,54.8,54.2,57.49,10,1,1,0,0,12,12,4,1,543,1720326.8,1111394.8,334290.13,0,670.47278,0,2819.7898 +2886,3569,6253,-9,6252,6251,1,0,26,0,0,0,1,1,-9,0,4,8.6614981,8.5793581,0,0,0,-994.67194,0,1,1,2021,17,4,40,38,1,4,0,14.992342,14.992342,.05,.05,0,0,0,0,0,0,1,1,0,.87016308,0,35.76,57.79,-9,-9,6.666666666666667,1,1,0,0,7,12,5,1,1134,273015.78,134651.7,0,0,0,0,1605.3315 +2887,3570,6254,-9,6255,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.20233,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,9,2,1,956.5,-25346.605,0,0,0,-911.08325,-160.39449,1622.7277 +2887,3570,6255,-9,6256,6257,1,0,20,1,1,0,2,2,-9,0,2,6.8828635,6.9269547,0,0,0,-944.10168,0,2,2,2021,12,0,25,25,1,0,1,4.9102116,4.9102116,0,0,0,0,0,0,0,0,1,0,1,0,0,27.49,52.83,-9,-9,10,1,1,0,0,3,9,2,1,956.5,-25346.605,0,0,0,-911.08325,-160.39449,1622.7277 +2887,3571,6256,6257,-9,-9,1,0,41,1,1,0,2,2,-9,0,3,8.4198666,8.9199104,0,11,-10,-22.512459,0,2,2,2021,9,1,80,40,1,1,0,6.3842402,6.3842402,0,0,0,0,0,0,0,0,1,0,1,0,0,47.15,56.66,58.89,48.6,8.333333333333334,1,1,0,0,15,9,5,1,1396,342916.16,105361.92,246374.02,43370.66,0,0,3509.6245 +2887,3571,6257,6256,-9,-9,1,1,51,1,1,0,2,2,-9,0,3,8.2593098,8.1445169,0,11,10,31.034058,0,-9,-9,2021,10,0,40,42,1,0,0,12.835351,12.835351,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.89,48.6,47.15,56.66,8.333333333333334,1,1,0,0,15,9,5,1,1396,342916.16,105361.92,246374.02,43370.66,0,0,3509.6245 +2888,3572,6258,6264,-9,-9,1,0,40,0,7,0,2,2,-9,0,3,0,0,0,7,8,-49.126579,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.38,45.18,54.77,53.2,6.666666666666667,1,1,0,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6259,-9,6258,6264,1,0,7,0,7,1,3,0,-9,0,4,0,0,0,0,0,-999.98438,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6260,-9,6258,6264,1,0,3,0,7,1,3,0,-9,0,4,0,0,0,0,0,-984.37372,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6261,-9,6258,6264,1,1,14,0,7,1,3,0,-9,0,4,0,0,0,0,0,-1091.9399,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6262,-9,6258,6264,1,0,6,0,7,1,3,0,-9,0,4,0,0,0,0,0,-842.11346,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6263,-9,6258,6264,1,1,4,0,7,1,3,0,-9,0,4,0,0,0,0,0,-930.67908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6264,6258,-9,-9,1,1,32,0,7,0,2,2,-9,0,3,7.9238639,8.014945,0,7,-8,138.07655,0,3,2,2021,8,0,50,55,1,0,0,7.3242197,7.3242197,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,53.2,48.38,45.18,8.333333333333334,1,1,0,0,3,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3572,6265,-9,6258,6264,1,0,12,0,7,1,3,0,-9,0,4,0,0,0,0,0,-966.93475,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,448.5,-22583.676,29130.162,0,0,9413.6924,1454.6809,3558.937 +2888,3573,6266,-9,6258,6264,1,1,22,0,7,0,2,2,-9,0,3,7.4413853,7.3607879,0,0,0,-1062.3307,0,2,2,2021,8,0,30,20,1,0,1,4.9347744,4.9347744,0,0,0,0,0,0,0,0,1,1,0,0,0,50.63,50.99,-9,-9,6.666666666666667,1,1,0,0,4,12,3,0,2962,0,0,0,0,0,0,1063.1733 +2888,3574,6267,-9,6258,6264,1,1,21,0,7,0,2,2,-9,0,5,0,0,0,0,0,-889.8678,0,2,3,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,1,0,0,12,1,0,676,-248774.5,0,0,0,0,0,0 +2889,3575,6268,6269,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.4098716,7.80126,6.3508272,39,0,-159.7603,0,3,3,2021,8,0,20,15,1,0,0,8.04109,8.04109,.05,.05,0,0,0,0,0,2,0,0,0,6.5061178,0,54.9,54.53,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,1124,1680768.8,923900.88,633246.5,94952.875,0,0,3470.7681 +2889,3575,6269,6268,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.6922016,9.044322,0,6,0,25.588474,0,1,2,2021,6,0,42,43,1,0,0,15.158998,15.158998,.05,.05,0,0,0,0,0,0,0,0,0,1.0667698,0,57.06,57.76,54.9,54.53,10,1,1,0,0,9,9,5,1,1124,1680768.8,923900.88,633246.5,94952.875,0,0,3470.7681 +2889,3576,6270,-9,6268,6269,1,0,32,0,0,0,1,1,-9,0,4,7.71384,7.6152105,0,0,0,-1077.9094,0,1,1,2021,7,0,33,26,1,0,1,7.9344325,7.9344325,0,0,0,0,0,0,0,0,0,0,0,.5720436,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,1356,-31844.271,-51603.684,210584.16,77212.625,1808.4515,5040.7534,1156.8947 +2890,3577,6271,6272,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.8739281,7.9725051,36,0,-7.6638021,0,2,2,2021,16,6,0,43,4,6,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.3105736,7.6977153,50.8,37.53,57.16,56.15,6.666666666666667,1,1,0,0,10,7,5,1,509,459616.91,31878.184,605747.13,267896.31,9664.8223,13878.732,11916.62 +2890,3577,6272,6271,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.5170889,9.6023846,0,35,0,-75.740875,0,2,2,2021,6,0,45,55,1,0,0,40.562691,40.562691,.05,.05,0,0,0,0,0,0,0,0,0,8.0343618,0,57.16,56.15,50.8,37.53,8.333333333333334,1,1,0,0,11,7,5,1,509,459616.91,31878.184,605747.13,267896.31,9664.8223,13878.732,11916.62 +2891,3578,6273,6274,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,7.9475422,7.8329625,6.0087409,31,-1,-23.254246,0,3,3,2021,16,5,30,23,1,5,0,10.906919,10.906919,0,0,0,0,0,0,0,14.5,1,1,0,0,6.2976799,43.21,24.99,31.32,37.22,5,1,1,0,0,12,2,3,0,1234,219468.39,39352.68,102806.45,0,0,0,2820.9248 +2891,3578,6274,6273,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,31,1,-146.08318,0,3,3,2021,20,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.32,37.22,43.21,24.99,3.333333333333333,1,1,0,0,9,2,3,0,1234,219468.39,39352.68,102806.45,0,0,0,2820.9248 +2892,3579,6275,6276,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,7.7786045,7.8451991,18,0,66.773491,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.1196055,7.8924966,57.44,14.46,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,1,404.5,416123,338441.78,172595.83,0,0,0,3389.7373 +2892,3579,6276,6275,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,7.2860651,7.372541,5.3665056,16,9,-101.67898,0,3,2,2021,8,0,48,40,1,0,0,3.867579,3.867579,.05,.05,0,0,0,0,0,14.5,1,1,0,5.9555192,5.6877427,57.16,56.15,57.44,14.46,1.666666666666667,1,1,0,0,9,2,4,1,404.5,416123,338441.78,172595.83,0,0,0,3389.7373 +2893,3580,6277,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.8303428,7.7557831,0,0,0,-951.224,0,2,2,2021,16,4,39,39,1,4,0,8.0732479,8.0732479,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.53,49.23,-9,-9,3.333333333333333,1,1,0,0,10,1,3,0,897,796237.5,597810.06,34430.59,6083.3901,0,0,1284.3898 +2894,3581,6278,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,5.9894867,5.8552213,0,0,-942.50854,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0942278,6.2676797,60.29,52.11,-9,-9,10,1,1,0,0,0,9,2,0,1543,205776.97,95381.594,174248.75,0,0,0,381.0675 +2895,3582,6279,6280,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.3035064,4.6844125,6,-1,-32.338581,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9798703,55,51,57.16,56.15,8.333333333333334,1,1,0,0,0,8,2,1,328,94062.945,70644.484,121706.91,0,0,0,1304.6643 +2895,3582,6280,6279,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.4312978,6.4385118,6,1,-80.953827,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8275602,6.369792,57.16,56.15,55,51,1.666666666666667,1,1,0,0,0,8,2,1,328,94062.945,70644.484,121706.91,0,0,0,1304.6643 +2896,3583,6281,-9,6282,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.8012,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,698,282521.44,-38291.574,409900.34,144334.42,0,0,3736.8066 +2896,3583,6282,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,2,8.3330965,8.3325434,6.3426185,0,0,-950.21069,0,2,3,2021,22,10,38,38,1,10,0,15.063528,15.063528,.05,.05,0,0,0,0,0,0,1,1,0,7.6333203,0,42,40,-9,-9,3.333333333333333,1,1,0,0,9,8,4,1,698,282521.44,-38291.574,409900.34,144334.42,0,0,3736.8066 +2897,3584,6283,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.610405,6.650701,0,0,-986.95447,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1749883,6.374608,53.09,39.08,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,28,86703.133,53848.348,0,0,0,0,582.3783 +2898,3585,6284,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,5.2845592,6.3402243,6.4634304,0,0,-1004.7592,0,2,2,2021,8,0,4,12,1,0,0,8.3619394,8.3619394,0,0,0,0,0,0,0,0,0,0,0,4.9149957,6.1185746,52.78,47.24,-9,-9,6.666666666666667,1,1,0,0,13,10,2,1,1091,680152.63,43744.926,557096.06,0,0,0,1021.4826 +2899,3586,6285,6286,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.7631779,9.0100546,8.1339464,36,3,32.989727,0,3,3,2021,7,0,37,37,1,0,0,18.736355,18.736355,.05,.05,0,0,0,0,0,0,0,0,0,2.5713849,7.9891853,46.44,59.62,35.9,60.41,8.333333333333334,4,2,0,0,14,9,5,1,795,1110458.8,465051.19,429375.56,0,0,0,4745.916 +2899,3586,6286,6285,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.4382515,8.1236191,0,36,-3,29.665037,0,3,3,2021,17,5,32,32,1,5,0,13.409369,13.409369,0,0,0,0,0,0,0,0,0,0,0,4.4823318,0,35.9,60.41,46.44,59.62,3.333333333333333,1,1,0,0,14,9,5,1,795,1110458.8,465051.19,429375.56,0,0,0,4745.916 +2900,3587,6287,6288,-9,-9,1,0,23,0,0,0,1,1,-9,0,1,7.8293881,7.8868093,0,1,1,-125.95863,0,2,1,2021,21,9,12,40,1,9,0,24.10195,24.10195,.05,.05,0,0,0,0,0,0,0,0,0,2.1345038,0,23.78,32.48,55.09,55.87,6.666666666666667,1,1,0,0,7,6,4,0,531,168602,-5809.2344,179753.13,176546.8,0,429.53876,2283.8638 +2900,3587,6288,6287,-9,-9,1,1,22,0,0,0,1,1,-9,0,5,8.2456617,8.190362,0,1,-1,-7.7051816,-9,-9,-9,2021,7,0,41,0,1,0,0,11.174017,11.174017,.05,.05,0,0,0,0,0,0,0,0,0,.35117722,0,55.09,55.87,23.78,32.48,6.666666666666667,1,1,0,0,2,6,4,0,531,168602,-5809.2344,179753.13,176546.8,0,429.53876,2283.8638 +2901,3588,6289,-9,6290,6291,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.6301,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,5,1,329,356977.63,95194.086,506886.91,221307.42,27576.506,0,7885.7793 +2901,3588,6290,6291,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,9.4235849,9.3739653,0,11,0,109.79012,0,1,1,2021,10,2,36,45,1,2,0,38.931343,38.931343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,45.72,55.07,8.333333333333334,1,1,0,0,12,10,5,1,329,356977.63,95194.086,506886.91,221307.42,27576.506,0,7885.7793 +2901,3588,6291,6290,-9,-9,1,1,37,1,1,0,1,1,-9,0,2,9.1980705,9.0882969,0,11,0,64.338989,0,-9,-9,2021,11,3,58,48,1,3,0,22.587288,22.587288,.05,.05,0,0,0,0,0,0,0,0,0,4.308639,0,45.72,55.07,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,329,356977.63,95194.086,506886.91,221307.42,27576.506,0,7885.7793 +2902,3589,6292,6293,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,0,0,40,1,0,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.03,47.48,54.61,51.04,3.333333333333333,1,1,0,0,4,10,1,1,364,614978.31,236311.23,156151.25,0,0,0,1442.6619 +2902,3589,6293,6292,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,11,-1,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,49.03,47.48,6.666666666666667,1,1,0,0,10,10,1,1,364,614978.31,236311.23,156151.25,0,0,0,1442.6619 +2903,3590,6294,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1104.292,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,1.45,60.66,-9,-9,0,2,3,1,1,1,2,1,0,276,6998.7559,0,0,0,0,0,251.82098 +2904,3591,6295,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,0,0,0,0,-969.04126,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,74,129277.96,0,0,0,0,0,1197.0364 +2905,3592,6296,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.4446473,5.8736315,0,0,-987.23169,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,15.879338,20.679428,139.66362,0,1,1,0,7.4138613,6.4785819,56.8,13.83,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,85,203043.45,-28566.248,0,0,0,0,2278.3625 +2906,3593,6297,6298,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4003806,7.4788113,48,1,-107.85165,0,2,-9,2021,9,0,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0479574,7.5147324,53,47,56.33,51.02,7,1,1,0,0,0,8,2,1,279.5,624134.81,132203.89,466902.88,0,0,0,2885.0176 +2906,3593,6298,6297,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.6117849,5.7422771,7,-1,33.355881,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3256316,5.4325786,56.33,51.02,53,47,8.333333333333334,1,1,0,0,0,8,2,1,279.5,624134.81,132203.89,466902.88,0,0,0,2885.0176 +2907,3594,6299,6300,-9,-9,1,0,90,0,0,0,2,2,-9,0,4,0,0,0,73,-7,0,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0675752,0,46.98,33.15,57,43,8.333333333333334,1,1,0,0,0,6,1,1,658.5,296549.81,0,273598.25,0,0,0,598.61206 +2907,3594,6300,6299,-9,-9,1,1,97,0,0,0,3,3,-9,0,3,0,0,0,73,7,0,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9784112,0,57,43,46.98,33.15,8,1,1,0,0,0,6,1,1,658.5,296549.81,0,273598.25,0,0,0,598.61206 +2908,3595,6301,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.7506471,8.2087517,0,0,-1054.1412,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6999221,8.10958,57.7,55.88,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,571,1236237,774166.75,346416.25,0,0,0,1353.6716 +2909,3596,6302,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.8546348,7.8874383,0,0,0,-858.59979,0,3,2,2021,1,0,35,35,1,0,0,8.1068163,8.1068163,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,1885,169221.77,24606.818,-18852.098,-12096.024,0,0,588.27582 +2910,3597,6303,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.9126201,6.4679108,0,0,-1149.9774,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.1963997,60.29,52.11,-9,-9,10,1,1,0,0,0,2,2,1,2598,288232.84,-35010.637,153955.11,0,0,0,585.32751 +2911,3598,6304,6307,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.7147665,7.5716386,0,10,-5,-28.12706,0,-9,-9,2021,16,5,40,40,1,5,0,7.0800881,7.0800881,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,55.96,49.93,6.666666666666667,1,1,0,0,13,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2911,3598,6305,-9,6304,6307,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5715,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2911,3598,6306,-9,6304,6307,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.4763,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2911,3598,6307,6304,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3960905,8.6263142,0,10,5,-98.60376,0,-9,-9,2021,7,0,40,40,1,0,0,15.482244,15.482244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,41.23,59.35,8.333333333333334,1,1,0,0,13,2,4,1,500.25,769071.06,551888.63,54980.582,-8361.6445,1291.5887,55.314377,3549.2852 +2912,3599,6308,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.9097667,7.3357568,0,0,-1091.1566,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,12.377129,9.9184475,135.40489,0,1,1,0,0,7.2923813,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,182,663754.5,174575.27,143840.17,0,0,0,1864.22 +2913,3600,6309,6310,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,0,0,0,8,2,0,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0796537,0,57.06,57.76,58.32,50.22,10,1,1,0,0,7,9,1,1,552.5,2691713,1152558,736644,0,3376.3755,0,907.88159 +2913,3600,6310,6309,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,0,0,0,8,-2,0,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.6796031,0,58.32,50.22,57.06,57.76,10,1,1,0,0,7,9,1,1,552.5,2691713,1152558,736644,0,3376.3755,0,907.88159 +2914,3601,6311,6312,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.7428813,7.3027225,44,3,-1.2341769,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0894585,6.4956584,61.1,16.91,49.76,54.41,6.666666666666667,1,1,0,0,0,10,3,1,352,865715.13,382750.75,116520.32,0,0,0,1843.9288 +2914,3601,6312,6311,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.7699289,7.5837908,4.5805306,44,-3,25.02486,0,2,2,2021,11,0,35,33,1,0,0,7.0003519,7.0003519,0,0,0,0,0,0,0,0,1,1,0,5.2352333,5.002696,49.76,54.41,61.1,16.91,8.333333333333334,1,1,0,0,10,10,3,1,352,865715.13,382750.75,116520.32,0,0,0,1843.9288 +2915,3602,6313,6314,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,0,0,0,16,-4,39.285652,-9,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6258392,0,41.17,59.31,57.33,53.46,8.333333333333334,2,3,1,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6314,6313,-9,-9,1,1,44,0,3,0,2,2,-9,0,3,7.4127188,7.2607617,0,16,4,-70.177322,-9,3,2,2021,4,0,54,0,1,0,0,3.2518494,3.2518494,0,0,0,0,0,0,0,0,1,1,0,6.7303829,0,57.33,53.46,41.17,59.31,6.666666666666667,2,3,0,0,8,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6315,-9,6313,6314,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.9467,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6316,-9,6313,6314,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.2308,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3602,6317,-9,6313,6314,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.13757,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,665.79999,212729.52,0,174039.86,54458.969,0,0,1750.9015 +2915,3603,6318,-9,6313,6314,1,1,19,0,3,0,2,2,-9,0,5,7.6644344,7.5419655,0,0,0,-1029.5735,-9,2,2,2021,4,0,25,0,1,0,1,7.9730945,7.9730945,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,2,3,0,0,0,6,3,1,272,-93950.078,-69073.469,0,0,0,0,986.87128 +2916,3604,6319,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.0428357,7.039999,0,0,-945.69788,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7379155,7.5345626,61.28,35.65,-9,-9,5,1,1,0,0,0,8,3,1,315,299022.66,340415.72,0,0,0,0,2283.8455 +2917,3605,6320,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7756863,7.8219266,0,0,0,-1031.1722,-9,-9,-9,2021,11,1,43,0,1,1,0,6.048027,6.048027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.16,47.38,-9,-9,6.666666666666667,1,1,0,0,5,9,3,1,3916,-20667.439,35706.691,0,0,0,0,830.18854 +2918,3606,6321,6322,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,0,0,67,0,-65.442696,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.12,10.91,54.96,53.17,8.333333333333334,1,1,0,0,0,1,2,1,275,99482.234,70226.023,124075.09,0,0,0,1854.8174 +2918,3606,6322,6321,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,5.7810807,5.5180678,67,0,80.277702,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2230046,5.784286,54.96,53.17,65.12,10.91,8.333333333333334,1,1,0,0,0,1,2,1,275,99482.234,70226.023,124075.09,0,0,0,1854.8174 +2919,3607,6323,-9,6325,6326,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.13,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2919,3607,6324,-9,6325,6326,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.1108,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2919,3607,6325,6326,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,0,0,0,7,-2,-127.36362,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7979465,0,58.15,52.91,55.51,51.57,8.333333333333334,2,3,0,0,2,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2919,3607,6326,6325,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,9.3702946,9.3807983,0,7,2,-45.968239,0,1,1,2021,11,1,34,33,1,1,0,33.993732,33.993732,0,0,0,0,0,0,0,0,0,0,0,7.6171489,0,55.51,51.57,58.15,52.91,6.666666666666667,2,3,0,0,8,2,5,1,557.25,-10468.131,0,110843.57,83649.516,8671.8086,0,4530.6777 +2920,3608,6327,6328,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,7.5521998,7.3743958,0,24,-1,-22.059164,0,2,2,2021,12,0,22,22,1,0,0,11.471803,11.471803,.05,.05,0,0,0,0,0,0,1,1,0,4.0476613,0,38.02,60.69,55.79,52.62,6.666666666666667,1,1,0,0,8,5,5,1,432.66666,761662.13,216534.56,347153.44,0,0,0,3442.3452 +2920,3608,6328,6327,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.6498652,9.1612244,0,26,1,59.155727,0,1,2,2021,12,0,78,41,1,0,0,11.218908,11.218908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,38.02,60.69,8.333333333333334,1,1,0,0,11,5,5,1,432.66666,761662.13,216534.56,347153.44,0,0,0,3442.3452 +2920,3608,6329,-9,6327,6328,1,0,16,0,1,1,2,0,-9,0,4,0,4.1706367,4.3903351,0,0,-876.41516,-9,1,1,2021,24,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.606473,0,17.88,59.38,-9,-9,1.666666666666667,1,1,0,0,0,5,5,1,432.66666,761662.13,216534.56,347153.44,0,0,0,3442.3452 +2920,3609,6330,-9,6327,6328,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-971.26184,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1353369,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,603,-6322.9951,0,0,0,0,0,-170.25584 +2921,3610,6331,-9,-9,-9,1,1,24,0,0,0,2,2,0,0,4,0,0,0,0,0,-944.72302,-9,-9,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.98,44.11,-9,-9,5,1,1,0,0,0,12,1,0,441,82072.953,0,0,0,0,0,1849.796 +2922,3611,6332,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.266202,8.3536587,0,0,0,-946.35999,0,-9,-9,2021,10,2,51,48,1,2,0,7.493278,7.493278,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.96,42.86,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,1006,269219.56,67993.891,121535.59,36530.313,0,0,2542.4431 +2923,3612,6333,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,9.255374,9.3443775,0,0,-932.9693,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.319416,53.97,45.88,-9,-9,8.333333333333334,2,3,0,0,0,8,5,0,311,839358.88,325841.47,381765.91,0,0,0,6049.3442 +2923,3613,6334,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.1057868,7.0327663,0,0,0,-921.16333,0,-9,-9,2021,12,1,16,40,1,1,0,9.1830864,9.1830864,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,5,8,2,0,831,114358.48,0,0,0,0,0,468.23196 +2924,3614,6335,6338,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.9646897,7.6252813,0,6,-7,134.21005,0,3,2,2021,4,0,35,35,1,0,0,10.090674,10.090674,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,10,1,1,0,0,7,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2924,3614,6336,-9,6335,6338,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.38062,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2924,3614,6337,-9,6335,6338,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-870.65204,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2924,3614,6338,6335,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.3382463,8.041707,0,6,7,120.5016,0,3,3,2021,6,0,45,45,1,0,0,9.4896221,9.4896221,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.49,55.09,10,1,1,0,0,7,2,4,0,758,93874.078,12056.789,0,0,6248.8398,718.40631,2723.874 +2925,3615,6339,6340,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,0,7.717484,7.8379326,28,-5,67.526505,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9432626,32.59,40.89,51.41,56.15,6.666666666666667,1,1,0,0,10,5,5,1,1188.5,2434499.5,1753545,317401.81,0,2716.9641,0,3352.0234 +2925,3615,6340,6339,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.8741159,8.7808332,0,8,5,35.683105,0,3,3,2021,10,1,58,44,1,1,0,12.571876,12.571876,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,32.59,40.89,8.333333333333334,1,1,0,0,7,5,5,1,1188.5,2434499.5,1753545,317401.81,0,2716.9641,0,3352.0234 +2926,3616,6341,6342,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.3809919,7.0525913,11,3,-6.5493298,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0676374,7.0778747,52.75,48.59,58.89,51.28,8.333333333333334,1,1,0,0,0,7,3,1,838,935067.25,227231.19,233966.44,0,0,0,4787.8457 +2926,3616,6342,6341,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.0407591,7.8718534,11,-3,64.83889,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4348764,7.8226457,58.89,51.28,52.75,48.59,10,1,1,0,0,0,7,3,1,838,935067.25,227231.19,233966.44,0,0,0,4787.8457 +2927,3617,6343,6344,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,0,0,0,3,-2,0,0,-9,-9,2021,8,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,57.16,56.15,8.333333333333334,1,1,0,0,3,4,1,1,1648,73764.883,0,0,0,0,0,-354.42493 +2927,3617,6344,6343,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,3,2,0,0,-9,2,2021,9,0,0,54,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.34,62.12,8.333333333333334,4,2,0,0,8,4,1,1,1648,73764.883,0,0,0,0,0,-354.42493 +2928,3618,6345,-9,6347,6346,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4982,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2928,3618,6346,6347,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.7375383,8.9789276,0,20,2,31.581566,0,-9,-9,2021,6,0,50,45,1,0,0,13.041085,13.041085,.05,.05,.05,0,0,0,0,0,1,1,0,3.4677012,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2928,3618,6347,6346,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.7871161,7.9245901,0,20,-2,-32.784897,0,-9,-9,2021,11,0,32,0,1,0,0,7.4112797,7.4112797,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,1,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2928,3618,6348,-9,6347,6346,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.12799,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,693.75,80592.719,74719.508,291594.31,206623.33,4685.0063,0,2953.1953 +2929,3619,6349,6350,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.0316205,7.1226425,8,2,91.918587,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4449935,7.1305733,56.07,45.75,54.69,57.47,8.333333333333334,1,1,0,0,2,11,3,1,1287.5,1158224.3,376979.94,164136.28,0,0,0,3173.8613 +2929,3619,6350,6349,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.5350556,7.7407212,8,-2,68.725754,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0598016,7.822639,54.69,57.47,56.07,45.75,10,1,1,0,0,0,11,3,1,1287.5,1158224.3,376979.94,164136.28,0,0,0,3173.8613 +2930,3620,6351,6352,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.8699408,7.8426633,8,4,12.718405,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,2.7000055,19.109686,35.150948,0,1,1,0,0,7.7025838,30.52,26.54,52.63,50.07,5,1,1,0,0,0,12,4,1,1560,1333010.5,691337.13,364145.78,0,0,0,3633.1704 +2930,3620,6352,6351,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,8.0885096,7.9220119,5.2812772,8,-4,-84.118248,0,3,3,2021,9,0,28,28,1,0,0,11.202785,11.202785,0,0,0,0,0,0,0,27,1,1,0,0,5.4081073,52.63,50.07,30.52,26.54,8.333333333333334,1,1,0,0,9,12,4,1,1560,1333010.5,691337.13,364145.78,0,0,0,3633.1704 +2931,3621,6353,6355,-9,-9,1,1,31,0,2,0,1,1,-9,0,4,8.1978464,8.2735147,0,3,2,-15.086758,0,-9,-9,2021,6,0,50,68,1,0,0,10.937102,10.937102,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.66,57.83,39.42,60.24,8.333333333333334,2,3,0,0,7,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2931,3621,6354,-9,6355,6353,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.2073,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2931,3621,6355,6353,-9,-9,1,0,29,0,2,0,1,1,-9,0,4,0,0,0,3,-2,23.779593,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.42,60.24,44.66,57.83,6.666666666666667,2,3,1,0,3,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2931,3621,6356,-9,6355,6353,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.82813,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,2,3,-9,0,0,9,3,0,656,444641.75,155915.7,235529.22,129596.95,0,0,2838.3164 +2932,3622,6357,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.433351,7.8797431,0,0,-1111.1255,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.1521688,7.2370491,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,617,694051.13,596555.13,212648.42,0,0,0,1608.0194 +2933,3623,6358,6359,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,9.3223705,9.5072231,50,1,21.924791,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,2.5159006,0,0,1,1,0,6.5360122,9.7382059,46,37,61.26,51.57,6.666666666666667,1,1,0,0,3,1,5,1,701.5,7311827,2454057.5,1363548.8,0,0,0,8479.2871 +2933,3623,6359,6358,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.0146542,5.9045076,50,-1,71.445602,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0121913,6.220818,61.26,51.57,46,37,10,1,1,0,0,6,1,5,1,701.5,7311827,2454057.5,1363548.8,0,0,0,8479.2871 +2934,3624,6360,-9,6362,6361,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-985.53784,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,297,634890.63,253459.83,564616.5,326234.22,0,0,6512.3662 +2934,3624,6361,6362,-9,-9,1,1,36,1,1,0,1,1,-9,0,5,9.2943068,9.4598684,0,9,1,12.221107,0,-9,-9,2021,10,1,50,50,1,1,0,30.787397,30.787397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.09,61.58,40.64,55.63,8.333333333333334,1,1,0,0,10,9,5,1,297,634890.63,253459.83,564616.5,326234.22,0,0,6512.3662 +2934,3624,6362,6361,-9,-9,1,0,35,1,1,0,2,2,-9,0,4,9.1386728,9.0964279,0,9,-1,-12.835775,0,-9,-9,2021,14,3,55,48,1,3,0,16.714996,16.714996,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.64,55.63,43.09,61.58,6.666666666666667,1,1,0,0,10,9,5,1,297,634890.63,253459.83,564616.5,326234.22,0,0,6512.3662 +2935,3625,6363,6364,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.3463449,9.3206606,0,28,0,6.2322183,0,2,2,2021,7,0,36,37,1,0,0,41.88316,41.88316,.05,.05,0,0,0,0,0,0,0,0,0,6.7914619,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,962.5,1349.8672,104466.52,0,0,0,0,4957.3486 +2935,3625,6364,6363,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,7.6634607,7.4443603,0,27,0,34.668133,0,2,2,2021,7,0,30,30,1,0,0,7.8016696,7.8016696,.05,.05,0,0,0,0,0,2,0,0,0,3.8016284,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,962.5,1349.8672,104466.52,0,0,0,0,4957.3486 +2935,3626,6365,-9,6364,6363,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-923.80304,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.0085649,0,57.16,56.15,-9,-9,10,1,1,0,0,2,8,1,1,1843,-233806.67,0,0,0,0,0,25.20204 +2935,3627,6366,-9,6364,6363,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-879.05792,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,417,0,0,0,0,0,0,0 +2936,3628,6367,6368,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,3.4850593,3.5971708,6,5,49.429558,0,2,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,1.2577382,0,0,1,1,0,0,3.644573,34.86,28.72,47.14,41.53,6.666666666666667,1,1,0,0,0,9,2,0,858,1251462.3,267063.69,667064.5,0,0,0,1783.4633 +2936,3628,6368,6367,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,5.8317242,5.689826,60,-5,-74.716232,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,2.4114857,0,21.029799,27,1,1,0,4.2454686,5.615232,47.14,41.53,34.86,28.72,6.666666666666667,1,1,0,0,0,9,2,0,858,1251462.3,267063.69,667064.5,0,0,0,1783.4633 +2937,3629,6369,6371,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,6.5907187,6.319767,0,4,0,7.2362494,0,-9,-9,2021,9,0,20,25,1,0,0,3.4448924,3.4448924,.05,.05,0,0,0,0,0,0,1,1,0,2.8881671,0,57.33,53.46,57.06,57.76,10,1,1,0,0,10,9,3,1,497.33334,143175.2,9015.2734,403962.41,218342.63,0,0,2227.9746 +2937,3629,6370,-9,6369,6371,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.61224,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,3,1,497.33334,143175.2,9015.2734,403962.41,218342.63,0,0,2227.9746 +2937,3629,6371,6369,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.2650318,8.2951536,0,4,0,-74.387039,0,-9,-9,2021,6,0,30,30,1,0,0,15.593748,15.593748,.05,.05,0,0,0,0,0,0,1,1,0,.3772099,0,57.06,57.76,57.33,53.46,10,1,1,0,0,10,9,3,1,497.33334,143175.2,9015.2734,403962.41,218342.63,0,0,2227.9746 +2938,3630,6372,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.9170079,7.9128819,0,0,0,-1031.8868,0,3,-9,2021,12,1,38,42,1,1,0,9.6135864,9.6135864,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,573,557386.63,219362.94,338007.59,0,0,0,1757.4028 +2939,3631,6373,6374,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.116189,8.0746469,51,2,-6.2221093,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4944522,8.2939415,43.89,14.04,57.18,38.32,8.333333333333334,1,1,0,0,0,12,3,1,543.5,965409.63,533265.63,342058.38,0,0,0,3365.5205 +2939,3631,6374,6373,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,53,-2,90.807121,0,2,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,1.1491486,0,2,1,1,0,4.7262115,0,57.18,38.32,43.89,14.04,8.333333333333334,1,1,0,0,0,12,3,1,543.5,965409.63,533265.63,342058.38,0,0,0,3365.5205 +2940,3632,6375,6377,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.9456778,7.9265118,0,7,-13,-42.162891,0,-9,-9,2021,6,0,42,45,1,0,0,8.2886724,8.2886724,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,62.39,56.71,8.333333333333334,3,4,0,0,4,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2940,3632,6376,-9,6375,6377,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.34735,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2940,3632,6377,6375,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.347929,8.2488461,0,11,13,-124.96094,0,-9,-9,2021,6,0,40,40,1,0,0,14.427661,14.427661,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,62.39,56.71,50.54,62.09,8.333333333333334,3,4,0,0,12,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2940,3632,6378,-9,6375,6377,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.7753,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,9,4,1,1551.5,735495,116306.37,603290.94,45708.305,0,0,2931.6797 +2941,3633,6379,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.6852655,8.1140337,0,0,0,-1033.9858,0,2,3,2021,21,9,24,24,1,9,0,11.497264,11.497264,0,0,0,0,0,0,0,0,1,1,0,0,0,42.43,38.82,-9,-9,6.666666666666667,1,1,0,0,10,4,3,0,624.5,-69821.484,-30914.332,0,0,-1100.4503,0,2392.0288 +2941,3633,6380,-9,6379,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.17926,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,624.5,-69821.484,-30914.332,0,0,-1100.4503,0,2392.0288 +2942,3634,6381,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.6792655,7.9048529,6.650629,0,0,-958.5379,0,3,3,2021,6,0,22,21,1,0,0,11.472106,11.472106,0,0,0,0,0,0,0,0,1,1,0,.57849646,6.8884821,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,348,460299.88,-33699.105,356757.22,0,0,-954.17615,1757.2463 +2943,3635,6382,6383,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.9099073,8.7959557,0,2,-1,3.9457722,0,2,2,2021,12,1,46,48,1,1,0,16.286602,16.286602,0,0,0,0,0,0,0,0,0,0,0,3.8770313,0,43.66,59.97,49,58,6.666666666666667,1,1,0,0,4,4,4,1,1137,-110103.27,36299.109,141916.31,124432.25,3969.8579,0,1575.1467 +2943,3635,6383,6382,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,2,1,-34.20866,0,-9,-9,2021,10,0,0,42,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,43.66,59.97,7,1,1,1,0,0,4,4,1,1137,-110103.27,36299.109,141916.31,124432.25,3969.8579,0,1575.1467 +2944,3636,6384,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,7.5882902,7.0362024,0,0,-919.95233,0,3,3,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6998529,6.9964175,21.14,28.6,-9,-9,0,1,1,0,1,0,2,3,1,485,181003.02,226952.28,146399.39,0,0,0,1662.5466 +2945,3637,6385,-9,6386,6387,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-835.0437,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1450,811486.81,231295.22,565162.63,92002.914,0,0,5772.0879 +2945,3637,6386,6387,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.8195105,8.7962103,0,18,2,-199.3933,0,2,1,2021,24,12,40,43,1,12,0,21.464165,21.464165,0,0,0,0,0,0,0,0,1,1,0,4.371089,0,36.55,49.51,49.63,54.22,6.666666666666667,1,1,0,0,14,7,5,1,1450,811486.81,231295.22,565162.63,92002.914,0,0,5772.0879 +2945,3637,6387,6386,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.187686,9.1523685,0,18,-2,61.684673,0,-9,-9,2021,6,0,26,34,1,0,0,40.397751,40.397751,.05,.05,.05,0,0,0,0,0,1,1,0,5.294764,0,49.63,54.22,36.55,49.51,8.333333333333334,1,1,0,0,14,7,5,1,1450,811486.81,231295.22,565162.63,92002.914,0,0,5772.0879 +2946,3638,6388,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,7.7332501,7.8340411,0,0,-1055.5344,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5438437,62,44.54,-9,-9,1.666666666666667,3,4,0,0,9,2,3,0,406,390264.09,363570.19,0,0,0,1227.7411,1343.355 +2947,3639,6389,6390,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.5994329,8.0828609,0,12,2,-87.151108,0,3,3,2021,6,0,36,36,1,0,0,15.636893,15.636893,0,0,0,0,0,0,0,0,0,0,0,6.9704161,0,49.51,41.82,57.33,53.46,10,1,1,0,0,14,13,5,1,394.5,7794918,7483441,412599.69,0,0,0,9768.7324 +2947,3639,6390,6389,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,9.5513601,8.9302416,41,-2,2.81071,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3736153,57.33,53.46,49.51,41.82,10,1,1,0,0,12,13,5,1,394.5,7794918,7483441,412599.69,0,0,0,9768.7324 +2948,3640,6391,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.12781,7.0288935,0,0,0,-1031.6351,-9,2,2,2021,15,6,40,0,1,6,0,3.2435348,3.2435348,0,0,0,0,0,0,0,14.5,1,0,1,0,0,48.8,51.84,-9,-9,0,2,3,0,0,14,2,2,0,453.5,23206.83,0,0,0,0,0,1424.8928 +2948,3640,6392,-9,-9,6391,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-944.16339,-9,-9,-9,2021,28,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.27,39.62,-9,-9,8.333333333333334,4,2,0,0,0,2,2,0,453.5,23206.83,0,0,0,0,0,1424.8928 +2948,3641,6393,-9,-9,-9,1,0,31,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.56897,-9,-9,-9,2021,16,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.58,52.86,-9,-9,3.333333333333333,2,3,0,0,1,2,2,0,282,-32633.666,0,0,0,0,0,0 +2949,3642,6394,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,4.8600922,4.755693,0,0,0,-1078.399,0,2,3,2021,9,0,80,60,1,0,0,.17658758,.17658758,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,12,1,2,1,512,96442.133,0,152137.69,2888.5654,0,0,290.58731 +2949,3643,6395,-9,-9,6396,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.0481,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,1,1,828,-160114.06,0,0,0,0,0,962.41895 +2949,3643,6396,-9,6394,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1004.2311,0,3,-9,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.48,45.55,-9,-9,8.333333333333334,1,1,1,0,0,1,1,1,828,-160114.06,0,0,0,0,0,962.41895 +2950,3644,6397,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1040.1284,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,49.39,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,416,-39068.145,0,0,0,0,0,966.39642 +2951,3645,6398,6399,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,36,5,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,62.49,55.09,46.51,35.57,10,1,1,0,0,0,7,1,1,491,116321.51,37908.203,0,0,122.89125,0,1692.4554 +2951,3645,6399,6398,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,36,-5,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.51,35.57,62.49,55.09,8.333333333333334,1,1,0,0,0,7,1,1,491,116321.51,37908.203,0,0,122.89125,0,1692.4554 +2952,3646,6400,-9,6403,6402,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.5798,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2952,3646,6401,-9,6403,6402,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.9689,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2952,3646,6402,6403,-9,-9,1,1,40,2,2,0,1,1,-9,0,4,8.6895428,8.5867949,0,4,1,-107.83184,0,2,2,2021,14,4,50,47,1,4,0,12.130021,12.130021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,46.95,49.9,6.666666666666667,1,1,0,0,13,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2952,3646,6403,6402,-9,-9,1,0,39,2,2,0,1,1,-9,0,4,7.6547904,7.6317968,0,4,-1,111.77112,0,2,2,2021,9,0,26,27,1,0,0,8.3584032,8.3584032,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,49.9,49.35,59.64,8.333333333333334,1,1,0,0,12,11,4,1,805.25,247.29883,20987.707,147706.92,101671.22,0,0,3339.2788 +2953,3647,6404,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.4041433,8.5894165,0,0,0,-997.29974,0,2,1,2021,15,3,38,37,1,3,0,17.191637,17.191637,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.05,54.17,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,259,-17284.92,-161634.09,0,0,0,137.21539,1897.1101 +2953,3648,6405,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1066.12,0,-9,-9,2021,10,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,3.333333333333333,1,1,1,1,4,1,1,1,354,-157290.73,0,0,0,0,0,713.96936 +2954,3649,6406,-9,6407,6408,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.74353,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1192.3334,106711.76,92810.016,247231.89,162340.89,9078.0693,654.8916,3767.0479 +2954,3649,6407,6408,-9,-9,1,0,33,1,1,0,2,2,-9,0,3,8.6119738,8.503232,0,4,-2,58.877998,0,2,2,2021,12,0,35,34,1,0,0,15.010859,15.010859,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.87,57.02,54.2,57.49,1.666666666666667,1,1,0,0,9,12,5,1,1192.3334,106711.76,92810.016,247231.89,162340.89,9078.0693,654.8916,3767.0479 +2954,3649,6408,6407,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,8.5747795,8.7434263,0,4,2,59.016418,0,-9,-9,2021,10,0,40,40,1,0,0,15.976115,15.976115,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,43.87,57.02,8.333333333333334,1,1,0,0,7,12,5,1,1192.3334,106711.76,92810.016,247231.89,162340.89,9078.0693,654.8916,3767.0479 +2955,3650,6409,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-874.73688,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.13,41.18,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,462,14423.16,0,0,0,0,0,800.44287 +2956,3651,6410,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,7.137516,7.226316,0,0,-1016.9407,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4008679,51.67,20.05,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,151,165974.13,107039.51,104070.12,0,0,0,1497.9487 +2957,3652,6411,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.2899308,5.2167687,0,0,-949.29755,-9,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9151864,5.2893085,42.82,22.27,-9,-9,6.666666666666667,2,3,0,0,0,7,2,1,70,109159.62,78531.43,169251.58,0,0,0,991.60663 +2958,3653,6412,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8909068,7.8061552,0,0,-1136.4121,0,2,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.8692393,8.3486137,61.27,43.2,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,454,887812.06,447428.47,172237.67,0,0,0,2728.751 +2959,3654,6413,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.1773367,8.3828926,0,0,0,-1019.9743,0,2,2,2021,20,7,47,40,1,7,0,8.860671,8.860671,.05,.05,0,0,0,0,0,0,1,1,0,3.1973512,0,38.55,32.53,-9,-9,3.333333333333333,1,1,0,0,10,6,4,0,930,131585.95,10935.905,0,0,25896.01,0,1695.7194 +2960,3655,6414,6415,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.7528257,8.6818037,0,24,2,44.028645,0,2,2,2021,7,0,40,40,1,0,0,16.231827,16.231827,.05,.05,0,0,0,0,0,2,0,0,0,1.5344951,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,8,9,5,1,801.5,1574343.1,1182046.3,294496.47,66975.938,0,2136.8804,4552.0801 +2960,3655,6415,6414,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.0309649,8.5003767,0,25,-2,-71.068581,0,2,1,2021,7,0,42,40,1,0,0,20.588537,20.588537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,9,9,5,1,801.5,1574343.1,1182046.3,294496.47,66975.938,0,2136.8804,4552.0801 +2960,3656,6416,-9,6414,6415,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1053.7958,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,1,0,9,1,1,839,10044.29,0,0,0,15134.322,0,0 +2961,3657,6417,6418,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.6907578,9.9315214,0,1,1,2.1194198,-9,-9,-9,2021,6,0,43,0,1,0,0,36.832054,36.832054,.05,.05,0,0,0,0,0,0,0,0,0,3.9397829,0,55.76,52.64,50.4,55.04,8.333333333333334,1,1,0,0,5,1,5,1,409,98830.938,148704.98,0,0,9852.5986,13741.981,5412.1885 +2961,3657,6418,6417,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7660818,7.7131333,0,1,-1,-45.087769,0,2,2,2021,11,1,30,30,1,1,0,10.352905,10.352905,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.4,55.04,55.76,52.64,8.333333333333334,1,1,0,0,11,1,5,1,409,98830.938,148704.98,0,0,9852.5986,13741.981,5412.1885 +2962,3658,6419,6420,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.050642,9.119545,0,2,4,147.14162,0,2,3,2021,6,0,37,37,1,0,0,27.255203,27.255203,.05,.05,0,0,0,0,0,0,1,1,0,7.6603041,0,58.75,51.28,45.57,53.5,8.333333333333334,1,1,0,0,13,6,5,1,1797.5,1602742.5,1318031.5,284389.56,0,0,0,5816.7354 +2962,3658,6420,6419,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.6488895,8.5664597,0,2,-4,-61.425644,0,-9,-9,2021,9,0,48,37,1,0,0,15.409907,15.409907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.57,53.5,58.75,51.28,8.333333333333334,1,1,0,0,14,6,5,1,1797.5,1602742.5,1318031.5,284389.56,0,0,0,5816.7354 +2963,3659,6421,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.8997121,7.9554124,0,0,0,-1002.1424,-9,-9,-9,2021,11,1,35,0,1,1,0,8.976325,8.976325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.88,49.91,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,562,24243.984,123770,0,0,0,0,1453.9858 +2964,3660,6422,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.8755679,7.9151912,0,0,-903.25897,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8576608,7.5085969,59.93,20.94,-9,-9,5,1,1,0,0,4,8,4,1,356,915619.81,355390.69,762421.38,0,0,0,1700.2693 +2965,3661,6423,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,6.7376962,6.9048843,0,0,-977.09399,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6664171,6.6252923,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,8,7,2,1,210,1460665.6,212016.36,444342.25,0,0,0,881.84314 +2966,3662,6424,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.0252705,8.2944288,0,0,0,-888.12823,0,3,3,2021,27,11,21,21,1,11,0,16.871832,16.871832,0,0,0,0,0,0,0,0,0,0,0,0,0,37.38,48.9,-9,-9,5,1,1,0,0,8,12,4,0,933,-37538.23,0,0,0,0,0,1660.7001 +2967,3663,6425,-9,6426,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.66803,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,0,794.5,-65887.141,0,0,0,0,0,1726.0906 +2967,3663,6426,-9,-9,-9,1,0,28,0,1,0,3,3,-9,0,4,7.5631156,7.7821174,0,0,0,-982.55206,-9,3,2,2021,12,0,33,0,1,0,0,5.4122758,5.4122758,0,0,0,0,0,0,0,0,1,1,0,0,0,42.8,56.04,-9,-9,5,1,1,0,0,7,13,3,0,794.5,-65887.141,0,0,0,0,0,1726.0906 +2968,3664,6427,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,4.9625535,5.1589022,0,0,0,-957.46875,0,1,2,2021,8,0,40,40,1,0,0,.47415683,.47415683,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,3,4,0,0,9,8,2,0,205,-186080.34,0,0,0,0,0,2055.3594 +2968,3665,6428,-9,-9,6427,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-957.74127,-9,-9,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.43,58.01,-9,-9,8.333333333333334,3,4,0,0,2,8,1,0,293,73143.336,0,0,0,0,0,-245.75046 +2969,3666,6429,-9,6430,6431,1,0,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-974.51685,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,5,1,603.66669,768463.06,639871.81,220433.47,68154.25,0,0,5071.0303 +2969,3666,6430,6431,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,7.9450202,8.0550165,0,18,0,-95.148819,0,3,3,2021,9,1,37,35,1,1,0,9.2894669,9.2894669,.05,.05,0,0,0,0,0,0,0,0,0,1.8821983,0,52.6,47.34,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,603.66669,768463.06,639871.81,220433.47,68154.25,0,0,5071.0303 +2969,3666,6431,6430,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.2723198,9.3409357,0,18,0,67.916718,0,3,3,2021,8,0,45,52,1,0,0,31.926659,31.926659,.05,.05,0,0,0,0,0,0,0,0,0,5.4089055,0,57.33,53.46,52.6,47.34,8.333333333333334,1,1,0,0,9,5,5,1,603.66669,768463.06,639871.81,220433.47,68154.25,0,0,5071.0303 +2970,3667,6432,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.2674885,8.5179558,0,0,0,-939.74347,0,3,3,2021,13,2,40,37,1,2,0,11.106191,11.106191,.05,.05,0,0,0,0,0,7,0,0,0,0,0,40.58,38.59,-9,-9,5,1,1,0,0,10,7,4,1,289,330703.47,342550,0,0,0,0,1798.8799 +2971,3668,6433,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.9515715,5.8114805,0,0,-992.0343,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5972991,0,0,1,1,0,0,5.7865047,48.15,22.67,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,760,138151.77,2399.2576,0,0,0,0,1703.3567 +2972,3669,6434,6436,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,7.4037986,7.5801783,0,6,0,-36.143612,0,3,3,2021,6,0,22,23,1,0,0,8.2020521,8.2020521,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,7,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2972,3669,6435,-9,6434,6436,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4265,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2972,3669,6436,6434,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.6524858,8.7141666,0,6,0,-119.06966,0,-9,-9,2021,10,0,38,46,1,0,0,21.194086,21.194086,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,5,1,1,0,0,7,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2972,3669,6437,-9,6434,6436,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.8218,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,504.25,42630.852,0,212559.5,151166.8,0,0,3900.8306 +2973,3670,6438,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.9131331,7.5978141,0,0,-1095.5566,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,7.2841702,0,0,1,1,0,0,7.5280542,51,46,-9,-9,7,2,3,0,0,0,8,3,1,626,838241.25,309831.28,329916.06,0,0,0,2173.6536 +2974,3671,6439,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,6.1778755,6.401619,0,0,-1043.9072,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6458139,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,5,11,2,0,674,246983.95,145402.25,120691.89,0,0,0,2129.8279 +2975,3672,6440,6441,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.6179943,7.7377362,5.2627101,38,-1,37.574497,0,3,3,2021,9,0,23,43,1,0,0,10.617796,10.617796,.05,.05,0,0,0,0,0,14.5,0,0,0,3.3309002,5.7946243,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,4,1,1566.5,537692.88,309490.34,111242.38,0,1419.731,0,2282.6394 +2975,3672,6441,6440,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.8913813,7.8876014,0,36,1,22.045736,0,3,3,2021,6,0,41,44,1,0,0,7.381866,7.381866,.05,.05,0,0,0,0,0,0,0,0,0,3.6656797,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,1,1566.5,537692.88,309490.34,111242.38,0,1419.731,0,2282.6394 +2976,3673,6442,-9,6444,-9,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1079.3359,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2976,3673,6443,-9,6444,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.0493,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2976,3673,6444,-9,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.3759608,7.5550632,6.1996469,0,0,-1120.9469,0,2,1,2021,8,0,38,39,1,0,0,6.5228982,6.5228982,.05,.05,0,0,0,0,0,0,1,1,0,6.1964364,0,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,9,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2976,3673,6445,-9,6444,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-958.64893,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,8,3,0,555.5,-4554.8457,96382.539,0,0,0,0,1674.1299 +2977,3674,6446,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.6973219,7.0973873,0,0,-927.13855,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0758157,7.0252147,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,332,627470.69,85098.352,458041.69,0,0,0,1776.8335 +2978,3675,6447,-9,6449,6448,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1071.7301,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,5,1,507.33334,339093.13,86257.945,262371.94,75541.383,21560.539,1161.5991,4048.3059 +2978,3675,6448,6449,-9,-9,1,1,58,0,1,0,1,1,-9,0,5,9.2840271,9.4088573,0,13,4,-96.003891,0,-9,-9,2021,6,0,38,38,1,0,0,29.686708,29.686708,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.6,46.43,57.06,57.76,10,1,1,0,0,14,11,5,1,507.33334,339093.13,86257.945,262371.94,75541.383,21560.539,1161.5991,4048.3059 +2978,3675,6449,6448,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,7.3420362,7.3039823,0,33,-4,28.896942,0,1,1,2021,7,0,40,50,1,0,0,4.9771495,4.9771495,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.6,46.43,8.333333333333334,1,1,0,0,14,11,5,1,507.33334,339093.13,86257.945,262371.94,75541.383,21560.539,1161.5991,4048.3059 +2978,3676,6450,-9,6449,6448,1,1,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-890.75586,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7850485,0,59.43,58.05,-9,-9,10,1,1,0,0,4,11,1,1,4967,16681.586,0,0,0,0,0,999.28699 +2978,3677,6451,-9,6449,6448,1,1,21,0,1,0,2,2,-9,0,5,7.9909635,7.8710866,0,0,0,-965.47211,-9,1,1,2021,6,0,40,0,1,0,1,7.1049891,7.1049891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,328,-70123.414,154449.56,0,0,3123.4294,0,1816.4591 +2979,3678,6452,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,0,0,0,0,-939.62872,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,263,-53230.684,0,0,0,0,0,307.85242 +2980,3679,6453,6454,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.8537159,8.862361,0,26,4,-11.518215,0,2,2,2021,12,1,38,41,1,1,0,20.193703,20.193703,.05,.05,0,0,0,0,2.8633878,0,0,0,0,0,0,55.19,54.26,54.07,52.08,8.333333333333334,1,1,0,0,12,4,5,1,1027,109031.41,153420.33,122208.17,91384.219,1878.3268,1677.8469,3884.7002 +2980,3679,6454,6453,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1690321,7.9349704,0,27,-4,-63.121883,0,2,-9,2021,9,0,41,41,1,0,0,10.412846,10.412846,0,0,0,0,0,0,0,0,0,0,0,0,0,54.07,52.08,55.19,54.26,8.333333333333334,1,1,0,0,11,4,5,1,1027,109031.41,153420.33,122208.17,91384.219,1878.3268,1677.8469,3884.7002 +2980,3680,6455,-9,6454,6453,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1058.7887,-9,1,2,2021,12,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,23,43.59,-9,-9,10,1,1,0,0,0,4,1,1,240,41196.582,0,0,0,0,0,0 +2981,3681,6456,6457,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.4072657,6.1879964,0,32,-6,-20.79307,0,3,3,2021,11,2,7,10,1,2,0,7.9493775,7.9493775,0,0,0,0,0,0,0,119,1,1,0,0,0,47,49,57.34,45.06,3.333333333333333,1,1,0,0,11,5,3,1,900,148527.91,222671.03,0,0,0,0,2207.5405 +2981,3681,6457,6456,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.9233294,7.8972945,6.1955342,33,6,-116.55799,0,3,3,2021,8,0,40,45,1,0,0,7.7945728,7.7945728,0,0,0,0,0,0,0,0,1,1,0,0,6.1597009,57.34,45.06,47,49,3.333333333333333,1,1,0,0,12,5,3,1,900,148527.91,222671.03,0,0,0,0,2207.5405 +2981,3682,6458,-9,6456,6457,1,0,26,0,0,0,2,2,-9,0,3,7.7178364,7.6033916,0,0,0,-966.88818,0,2,2,2021,7,0,40,0,1,0,1,7.4384117,7.4384117,.05,.05,0,0,0,0,0,7,1,1,0,0,0,59.9,39.94,-9,-9,10,1,1,0,0,6,5,3,1,347,16450.377,-13288.197,0,0,0,0,1366.3274 +2982,3683,6459,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,7.4169831,7.6530452,0,0,0,-1022.6141,0,-9,-9,2021,13,3,16,20,1,3,0,12.231388,12.231388,0,0,0,0,0,0,0,2,1,1,0,0,0,34.27,45.05,-9,-9,3.333333333333333,1,1,0,0,6,8,3,0,87,82588.531,0,0,0,0,0,463.18692 +2983,3684,6460,6462,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,8.9231758,8.6901321,0,1,-3,66.705467,-9,2,2,2021,15,4,35,0,1,4,0,20.504795,20.504795,0,0,0,0,0,0,0,0,0,0,0,0,0,35.57,63.56,51.83,57.2,8.333333333333334,1,1,0,0,9,13,5,1,752,427494.53,335875.63,299504.75,183094.34,0,-221.1851,5926.2109 +2983,3684,6461,-9,6460,6462,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.6516,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,752,427494.53,335875.63,299504.75,183094.34,0,-221.1851,5926.2109 +2983,3684,6462,6460,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.042428,9.2534971,0,1,3,-67.70694,-9,2,2,2021,10,1,37,0,1,1,0,30.59795,30.59795,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,35.57,63.56,8.333333333333334,1,1,0,0,9,13,5,1,752,427494.53,335875.63,299504.75,183094.34,0,-221.1851,5926.2109 +2984,3685,6463,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1042.546,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,13,1,0,223,35095.051,0,0,0,0,0,1437.4473 +2985,3686,6464,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,0,0,-835.75348,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,51.79,-9,-9,5,3,4,1,0,5,5,1,0,264,-122926.02,0,0,0,0,0,198.05975 +2986,3687,6465,6466,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.3540907,9.091053,0,42,1,51.624111,0,3,2,2021,6,0,52,50,1,0,0,29.638016,29.638016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,58.15,52.91,8.333333333333334,1,1,0,0,10,9,5,1,942,3165456.5,1727943,1016893,0,0,0,4394.0142 +2986,3687,6466,6465,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.3386989,7.3816519,41,-1,-19.541782,0,1,1,2021,4,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5686769,58.15,52.91,55.79,52.62,8.333333333333334,1,1,0,0,10,9,5,1,942,3165456.5,1727943,1016893,0,0,0,4394.0142 +2987,3688,6467,6468,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.6941571,7.7521605,5.1780186,14,-2,30.773256,-9,3,2,2021,11,0,30,0,1,0,0,7.25388,7.25388,.05,.05,0,0,0,0,0,0,1,1,0,5.4292369,0,39.85,55.83,51.14,60.45,8.333333333333334,1,1,0,0,9,5,3,1,210.5,-60602.547,-6114.6104,0,0,0,7203.2285,2100.2222 +2987,3688,6468,6467,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,7.9427629,8.1570387,0,14,2,-73.664719,0,2,2,2021,11,0,37,37,1,0,0,8.4162922,8.4162922,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,39.85,55.83,6.666666666666667,1,1,0,0,8,5,3,1,210.5,-60602.547,-6114.6104,0,0,0,7203.2285,2100.2222 +2988,3689,6469,6470,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.5348864,7.492332,27,12,51.226109,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8822393,57.73,54.53,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,839.5,418858.97,21626.668,410041.16,0,965.01331,0,2932.1016 +2988,3689,6470,6469,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1553478,8.1789751,0,30,-12,18.378893,0,3,3,2021,10,0,24,24,1,0,0,18.346886,18.346886,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,10,7,4,1,839.5,418858.97,21626.668,410041.16,0,965.01331,0,2932.1016 +2989,3690,6471,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,3.5492854,3.8614893,0,0,-909.76428,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,15.501184,0,0,1,1,0,0,3.7422144,55.49,21.7,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,912,97861.297,-20499.117,166692.27,0,0,0,342.17508 +2990,3691,6472,-9,6474,6475,1,0,26,0,0,0,1,1,-9,0,4,8.1945829,7.9783816,0,0,0,-1013.9265,0,2,1,2021,11,1,49,43,1,1,1,10.243896,10.243896,.05,.05,0,0,0,0,0,0,0,0,0,3.9167821,0,44.66,57.83,-9,-9,8.333333333333334,3,4,0,0,3,9,4,1,1655,-101544.41,4888.3374,0,0,0,0,1750.9028 +2990,3691,6473,-9,6472,-9,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-959.27118,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,9,4,1,1655,-101544.41,4888.3374,0,0,0,0,1750.9028 +2990,3692,6474,6475,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.4181204,8.5208702,0,4,-14,106.00464,-9,-9,-9,2021,5,0,48,0,1,0,0,10.067418,10.067418,0,0,0,0,0,0,0,2,0,0,0,0,0,63.09,47.92,55.35,39.26,10,3,4,0,0,4,9,4,1,601,1645163.8,355639.81,969414.13,0,0,0,2542.9238 +2990,3692,6475,6474,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.0087433,7.652503,0,4,14,55.870293,-9,-9,-9,2021,7,0,40,0,1,0,0,7.6318483,7.6318483,0,0,0,0,0,0,0,0,0,0,0,0,0,55.35,39.26,63.09,47.92,5,1,1,0,0,3,9,4,1,601,1645163.8,355639.81,969414.13,0,0,0,2542.9238 +2991,3693,6476,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.4728069,7.9402013,0,0,-985.92151,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1740975,7.6672044,57.48,47.92,-9,-9,8.333333333333334,1,1,0,0,7,7,3,1,707,1488853.5,161776.61,569379.19,0,0,0,2022.83 +2992,3694,6477,-9,-9,-9,1,0,25,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1010.4402,0,3,-9,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.89,38.7,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,413.5,-41028.086,0,0,0,-192.18423,0,920.52271 +2992,3694,6478,-9,6477,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.22369,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,413.5,-41028.086,0,0,0,-192.18423,0,920.52271 +2993,3695,6479,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,5.344018,5.5574322,0,0,-1012.0588,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3603015,47.04,32.59,-9,-9,3.333333333333333,3,4,1,0,2,8,2,0,556,82567.625,0,0,0,0,0,1557.0066 +2994,3696,6480,6481,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,5.4857559,5.6619911,6,15,-78.040131,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,8.8230228,11.57138,65.08828,0,1,1,0,.42411318,5.7955694,52,45,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,691.5,2473949.8,0,2791422,566606.31,0,0,1824.512 +2994,3696,6481,6480,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.9531889,6.3202066,6,-15,18.239357,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.476089,6.564321,57.16,56.15,52,45,8.333333333333334,1,1,0,0,5,9,2,1,691.5,2473949.8,0,2791422,566606.31,0,0,1824.512 +2995,3697,6482,-9,6484,6483,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.19415,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6483,6484,-9,-9,1,1,45,1,3,0,3,3,-9,0,3,7.1976919,6.933085,0,3,11,35.812748,-9,2,1,2021,19,8,32,0,1,8,0,5.9546824,5.9546824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,50.25,29.98,5,3,4,0,0,9,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6484,6483,-9,-9,1,0,34,1,3,0,1,1,-9,0,2,0,0,0,1,-11,44.129047,-9,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.25,29.98,50.28,51.35,6.666666666666667,4,5,0,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6485,-9,6484,6483,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.7462,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2995,3697,6486,-9,6484,6483,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-937.24426,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,10,2,0,667.79999,202300.25,-8325.8379,92048.32,12552.188,0,0,2085.2444 +2996,3698,6487,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,7.7579961,7.7082019,0,0,-906.02673,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.0938056,7.7564354,47.4,55.39,-9,-9,6.666666666666667,1,1,0,0,4,13,3,1,211,756812.44,265051.5,232982.41,0,0,0,307.77197 +2997,3699,6488,6489,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.4178424,5.0201488,55,1,90.983711,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2233114,60.25,21.15,48.73,34.86,8.333333333333334,1,1,0,0,0,13,2,1,1309.5,153954.83,169401.31,0,0,0,0,1383.7594 +2997,3699,6489,6488,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,55,-1,69.182747,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.73,34.86,60.25,21.15,0,1,1,0,0,0,13,2,1,1309.5,153954.83,169401.31,0,0,0,0,1383.7594 +2998,3700,6490,6491,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,2.8502471,3.0911534,0,33,1,41.551743,0,-9,-9,2021,6,0,40,40,1,0,0,.063347265,.063347265,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.24,58.84,8.333333333333334,1,1,0,0,10,8,4,1,1058,669808.5,401550.13,311358.56,153314.7,0,0,3541.7979 +2998,3700,6491,6490,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.7958145,8.9165726,4.8743677,33,-1,92.85215,0,-9,-9,2021,10,0,48,60,1,0,0,16.515284,16.515284,.05,.05,0,0,0,0,0,0,0,0,0,4.8116932,0,51.24,58.84,51.83,57.2,1.666666666666667,4,2,0,0,10,8,4,1,1058,669808.5,401550.13,311358.56,153314.7,0,0,3541.7979 +2998,3701,6492,-9,6490,6491,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1132.7599,0,3,3,2021,25,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.54,47.83,-9,-9,5,4,2,1,1,1,8,1,1,175,686.26141,0,0,0,17014.98,0,0 +2999,3702,6493,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,5.0867414,4.835885,0,0,0,-931.41638,0,3,3,2021,11,0,25,25,1,0,0,.77730244,.77730244,0,0,0,0,0,0,0,0,1,1,0,0,0,49.29,49.06,-9,-9,5,1,1,0,0,11,2,2,1,552,135475.03,0,0,0,0,0,452.75394 +2999,3703,6494,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1036.6104,-9,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.91,37.17,-9,-9,1.666666666666667,1,1,0,1,2,2,1,1,477,192557.06,0,0,0,0,0,212.41579 +3000,3704,6495,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9876733,7.7553792,0,0,0,-1036.2211,0,2,2,2021,16,4,40,30,1,4,0,7.7716947,7.7716947,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.5,44.31,-9,-9,6.666666666666667,2,3,0,1,5,8,3,0,438,172478.41,167177.8,0,0,0,0,1275.2053 +3001,3705,6496,6497,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.5218315,8.4650383,0,1,1,-151.18396,-9,-9,-9,2021,13,2,41,0,1,2,0,13.708581,13.708581,0,0,0,0,0,0,0,0,0,0,0,4.4613218,0,46.28,62.6,51.77,58.57,6.666666666666667,1,1,0,0,2,9,5,0,608.5,50631.922,134490.25,337041.5,200407.47,1190.8524,0,3438.6345 +3001,3705,6497,6496,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.494566,8.3925495,0,1,-1,-186.36452,0,-9,-9,2021,6,0,53,50,1,0,0,9.4911385,9.4911385,.05,.05,0,0,0,0,0,0,0,0,0,3.0055749,0,51.77,58.57,46.28,62.6,8.333333333333334,1,1,0,0,3,9,5,0,608.5,50631.922,134490.25,337041.5,200407.47,1190.8524,0,3438.6345 +3002,3706,6498,6499,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,8.2283058,7.9513669,0,4,-10,-60.750572,0,3,2,2021,12,0,42,42,1,0,0,7.751389,7.751389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,52.92,55.55,5,1,1,0,1,11,12,4,0,1478.6666,65832.234,-73778.43,113127.34,115607.64,13693.912,0,2838.6035 +3002,3706,6499,6498,-9,-9,1,1,39,0,1,0,2,2,-9,0,5,7.9635472,7.9063711,0,4,10,-4.9174252,0,3,3,2021,9,0,39,39,1,0,0,9.606926,9.606926,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.92,55.55,46.92,54.3,0,1,1,0,0,9,12,4,0,1478.6666,65832.234,-73778.43,113127.34,115607.64,13693.912,0,2838.6035 +3002,3706,6500,-9,6498,6499,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1109.9302,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,1478.6666,65832.234,-73778.43,113127.34,115607.64,13693.912,0,2838.6035 +3003,3707,6501,6502,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.1665998,6.8349156,0,43,-7,59.43819,0,3,3,2021,8,0,20,15,1,0,0,6.7073832,6.7073832,0,0,0,0,0,0,0,0,1,1,0,0,0,55.93,52.62,55.29,43.33,8.333333333333334,1,1,0,0,12,10,4,1,1933,1060050,733551.75,228828.44,16367.596,0,2681.2434,3768.0864 +3003,3707,6502,6501,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.8445754,8.1754789,7.1703897,43,7,-6.6125388,0,2,3,2021,8,0,42,50,1,0,0,6.1845303,6.1845303,0,0,0,0,0,0,0,0,1,1,0,8.4364843,6.9025631,55.29,43.33,55.93,52.62,8.333333333333334,1,1,0,0,12,10,4,1,1933,1060050,733551.75,228828.44,16367.596,0,2681.2434,3768.0864 +3004,3708,6503,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1041.0845,0,3,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.39,28.26,-9,-9,10,1,1,0,0,0,4,1,0,189,-46167.891,0,0,0,-156.30855,0,1289.4456 +3005,3709,6504,6505,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.0106926,7.8061075,0,18,2,-16.10516,0,2,2,2021,8,0,40,40,1,0,0,9.0466127,9.0466127,.05,.05,0,0,0,0,0,0,1,1,0,1.7939848,0,62.39,56.71,54.95,54.53,10,1,1,0,0,10,9,4,1,1205,374381.88,169858.56,265055.06,40259.078,0,624.32452,3341.9675 +3005,3709,6505,6504,-9,-9,1,1,39,0,1,0,3,3,-9,0,5,8.2277193,8.2018042,0,18,-2,108.8955,0,2,2,2021,7,0,55,45,1,0,0,8.366869,8.366869,.05,.05,0,0,0,0,0,0,1,1,0,1.5228324,0,54.95,54.53,62.39,56.71,10,1,1,0,0,14,9,4,1,1205,374381.88,169858.56,265055.06,40259.078,0,624.32452,3341.9675 +3006,3710,6506,6508,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.9730101,8.8986912,0,7,-7,9.7262211,0,2,1,2021,12,1,40,40,1,1,0,20.069984,20.069984,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.07,57.25,54.97,47.63,6.666666666666667,1,1,0,0,8,13,5,1,647.66669,368278.78,89865.938,366564.19,210765.05,0,0,3697.6604 +3006,3710,6507,-9,6506,6508,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.0101,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,647.66669,368278.78,89865.938,366564.19,210765.05,0,0,3697.6604 +3006,3710,6508,6506,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.2731667,8.074543,0,7,7,11.524616,0,2,2,2021,7,0,37,37,1,0,0,12.954371,12.954371,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.97,47.63,40.07,57.25,6.666666666666667,1,1,0,0,8,13,5,1,647.66669,368278.78,89865.938,366564.19,210765.05,0,0,3697.6604 +3007,3711,6509,6510,-9,-9,1,1,96,0,0,0,2,2,-9,0,3,0,5.2814217,4.9027429,70,0,49.37307,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.032499064,4.6818409,47.34,42.41,41.34,32.53,8.333333333333334,1,1,0,0,0,4,2,1,311,-43950.617,-27354.779,0,0,0,0,1117.8511 +3007,3711,6510,6509,-9,-9,1,0,96,0,0,0,2,2,-9,0,2,0,0,0,70,0,-3.5345678,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.34,32.53,47.34,42.41,8.333333333333334,1,1,0,0,0,4,2,1,311,-43950.617,-27354.779,0,0,0,0,1117.8511 +3007,3712,6511,-9,6510,6509,1,1,65,0,0,0,2,2,-9,0,3,0,7.4655218,7.7441816,0,0,-894.95758,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.7877316,54.21,49.4,-9,-9,1.666666666666667,1,1,0,0,5,4,3,1,981,877635.81,473653.53,253126.95,0,4468.832,0,1165.8619 +3008,3713,6512,6513,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,42,-3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,42.07,32.4,10,1,1,0,0,0,6,1,1,1511.5,108887.45,-24223.262,177453.63,0,0,0,2706.0024 +3008,3713,6513,6512,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,42,3,0,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,123.36175,0,0,1,1,0,0,0,42.07,32.4,62.49,55.09,6.666666666666667,1,1,0,0,0,6,1,1,1511.5,108887.45,-24223.262,177453.63,0,0,0,2706.0024 +3009,3714,6514,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,5.5466051,5.6025324,0,0,-958.5636,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3811693,5.5157065,58.33,39.49,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,364,196175.16,103503.62,0,0,123.48596,0,1087.3861 +3010,3715,6515,6516,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,0,0,47,-2,0,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,7.719851,0,42,1,0,1,0,0,51.31,18.52,32.08,47.89,1.666666666666667,1,1,0,0,3,7,1,0,855.5,673045.88,103478.14,536641.5,116473.97,2320.187,1640.5161,535.99329 +3010,3715,6516,6515,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,47,2,0,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,32.08,47.89,51.31,18.52,5,1,1,0,0,11,7,1,0,855.5,673045.88,103478.14,536641.5,116473.97,2320.187,1640.5161,535.99329 +3011,3716,6517,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.0520725,9.1120081,0,0,0,-1037.3734,0,3,1,2021,12,0,39,59,1,2,0,28.182938,28.182938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,49,-9,-9,7,3,4,0,0,12,8,5,1,109,345104.88,342533.38,0,0,0,2142.8223,2763.3757 +3012,3717,6518,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,5,0,7.5677748,7.462317,0,0,-1025.8981,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5834384,7.4470487,49.81,59.64,-9,-9,8,1,1,0,0,12,4,3,0,1133,615767.88,363723.25,203087.94,0,4869.0933,0,1426.1359 +3013,3718,6519,6520,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.1439228,7.9564395,0,24,-5,197.32767,0,3,2,2021,10,0,27,39,1,0,0,13.770417,13.770417,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,45.34,48,37,8.333333333333334,1,1,0,0,9,2,4,1,567.5,324901.81,285376.31,91601.469,5202.5518,0,0,2754.9551 +3013,3718,6520,6519,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.0064735,7.1383629,0,7,5,-31.749388,0,-9,-9,2021,11,2,40,40,1,2,0,3.1927278,3.1927278,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,37,53.98,45.34,6.666666666666667,1,1,0,0,9,2,4,1,567.5,324901.81,285376.31,91601.469,5202.5518,0,0,2754.9551 +3014,3719,6521,6522,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.2057467,8.1180611,0,18,0,16.865057,0,2,2,2021,0,0,26,24,1,0,0,15.123423,15.123423,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.33,53.46,10,1,1,0,0,15,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3014,3719,6522,6521,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.8291512,9.0215044,0,18,0,-117.61132,0,2,2,2021,6,0,43,43,1,0,0,22.684782,22.684782,.05,.05,.05,0,0,0,0,0,1,1,0,.55651248,0,57.33,53.46,62.39,56.71,8.333333333333334,1,1,0,0,15,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3014,3719,6523,-9,6521,6522,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.06409,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3014,3719,6524,-9,6521,6522,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.0894,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,432.75,684080.25,209429.77,271044.28,38501.535,0,0,3926.4912 +3015,3720,6525,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,0,0,-975.51227,0,3,2,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.64,30.48,-9,-9,0,3,4,1,0,1,4,2,0,403,107482.6,0,0,0,1226.422,0,1429.149 +3016,3721,6526,6527,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,6.0584583,6.3237972,50,1,11.353579,0,2,2,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,2.8012543,0,0,1,1,0,4.5308604,6.2226191,34.39,16.93,60.12,54.8,1.666666666666667,1,1,0,0,0,9,5,1,306.5,2413325.5,980322.69,669222,0,0,0,5156.2764 +3016,3721,6527,6526,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.9230413,8.8386707,50,-1,75.144051,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.9931316,60.12,54.8,34.39,16.93,8.333333333333334,1,1,0,0,0,9,5,1,306.5,2413325.5,980322.69,669222,0,0,0,5156.2764 +3017,3722,6528,-9,6530,6529,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.81311,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,390.33334,254817.36,84451.664,134763.38,80020.32,0,0,3066.4084 +3017,3722,6529,6530,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.7567329,8.4964361,0,8,1,62.570663,0,1,2,2021,10,1,38,38,1,1,0,14.200314,14.200314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,25.2,66.67,8.333333333333334,1,1,0,0,9,6,4,1,390.33334,254817.36,84451.664,134763.38,80020.32,0,0,3066.4084 +3017,3722,6530,6529,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.8157454,7.6123428,0,8,-1,90.482346,0,2,2,2021,23,11,20,22,1,11,0,15.015429,15.015429,.05,.05,0,0,0,0,0,0,1,1,0,2.0216179,0,25.2,66.67,57.33,53.46,6.666666666666667,1,1,0,0,9,6,4,1,390.33334,254817.36,84451.664,134763.38,80020.32,0,0,3066.4084 +3018,3723,6531,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.9223738,5.7766557,0,0,-921.47552,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9331269,5.9683943,56.45,31.13,-9,-9,5,1,1,0,0,0,9,2,1,1267,162866.28,-82396.75,0,0,0,0,470.99835 +3019,3724,6532,6533,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.4006853,6.5461116,12,11,-76.993408,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,17.642595,0,0,1,1,0,0,6.5814061,55.37,40.83,56.5,51,10,1,1,0,0,0,9,4,1,415,2339601.5,1369896.5,907328.88,0,0,0,4118.73 +3019,3724,6533,6532,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.3953276,8.2995062,12,-11,98.073212,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.8955698,8.769206,56.5,51,55.37,40.83,8.333333333333334,1,1,0,0,0,9,4,1,415,2339601.5,1369896.5,907328.88,0,0,0,4118.73 +3020,3725,6534,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.0175915,5.6421218,0,0,-974.86682,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1533923,54.55,46.39,-9,-9,6.666666666666667,3,4,0,0,0,2,2,0,669,201393.97,137470.69,237671.7,0,0,0,1988.0801 +3021,3726,6535,6536,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.3195372,7.6282248,0,29,0,10.342372,0,3,3,2021,17,5,16,15,1,5,0,13.500776,13.500776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,53,54,6.666666666666667,1,1,0,0,8,5,4,1,1283,475972.19,378995.97,111764.7,0,0,0,2035.6548 +3021,3726,6536,6535,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7990336,8.0434618,6.9665561,8,0,65.224335,0,-9,-9,2021,9,0,50,70,1,1,0,6.0237246,6.0237246,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0644069,53,54,51.24,58.84,8,1,1,0,0,1,5,4,1,1283,475972.19,378995.97,111764.7,0,0,0,2035.6548 +3022,3727,6537,6538,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,0,0,8,1,-84.008286,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.61,50.58,57.16,56.15,8.333333333333334,1,1,0,0,0,13,3,1,614.5,1423901.3,1028863.1,111484.28,0,0,0,2638.823 +3022,3727,6538,6537,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8288856,7.8749189,8,-1,5.2398748,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9596996,57.16,56.15,51.61,50.58,8.333333333333334,1,1,0,0,0,13,3,1,614.5,1423901.3,1028863.1,111484.28,0,0,0,2638.823 +3022,3728,6539,-9,6538,6537,1,1,28,0,0,0,1,1,-9,0,5,8.8538513,8.8896303,0,0,0,-1013.863,-9,2,-9,2021,9,0,36,0,1,0,0,17.814178,17.814178,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,6,13,5,1,3859,95611.969,-86853.508,4481.1685,0,0,0,1527.0901 +3023,3729,6540,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.1691728,6.2166271,0,0,-889.02264,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5396571,5.2241664,39.41,37.64,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,717,308939.5,-21465.572,0,0,0,0,423.71112 +3024,3730,6541,6542,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,4.889637,5.0959802,9,7,34.807949,0,2,1,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2436419,5.351603,36.61,17.55,44.26,59.43,1.666666666666667,1,1,0,0,0,11,2,0,1266.5,150023.5,0,244656.78,0,0,-323.80103,2024.0597 +3024,3730,6542,6541,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,9,-7,197.23125,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.26,59.43,36.61,17.55,3.333333333333333,1,1,0,0,0,11,2,0,1266.5,150023.5,0,244656.78,0,0,-323.80103,2024.0597 +3025,3731,6543,6544,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,10,0,-118.66226,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,7.8991733,0,49.5,46.08,39.52,46.83,8.333333333333334,1,1,0,0,0,7,3,1,673.5,3138045,598296.75,2070667.5,0,0,0,3211.751 +3025,3731,6544,6543,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.8795977,7.8939295,10,0,29.491791,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.1190426,8.2115946,39.52,46.83,49.5,46.08,3.333333333333333,1,1,0,0,5,7,3,1,673.5,3138045,598296.75,2070667.5,0,0,0,3211.751 +3026,3732,6545,6546,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.8220563,7.8696723,6,6,132.45593,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2794433,7.6801295,60.05,45.35,46.39,60.99,8.333333333333334,1,1,0,0,0,4,3,1,216.5,557429.75,371907.31,210786.92,0,0,0,2364.3071 +3026,3732,6546,6545,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.0973978,5.3967628,6,-6,19.935263,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9990911,5.3637295,46.39,60.99,60.05,45.35,8.333333333333334,1,1,0,0,0,4,3,1,216.5,557429.75,371907.31,210786.92,0,0,0,2364.3071 +3027,3733,6547,6548,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.5506997,7.5878477,0,6,-2,60.076637,0,2,2,2021,8,0,30,11,1,0,0,8.371067,8.371067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.63,56.14,8.333333333333334,1,1,0,0,7,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3027,3733,6548,6547,-9,-9,1,1,29,1,2,0,2,2,-9,0,5,7.8352666,7.8141022,0,6,2,-70.007957,0,-9,-9,2021,0,0,37,45,1,0,0,9.5282545,9.5282545,.05,.05,0,0,0,0,0,0,1,1,0,.2158943,0,57.63,56.14,54.2,57.49,8.333333333333334,1,1,0,0,6,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3027,3733,6549,-9,6547,6548,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.55975,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3027,3733,6550,-9,6547,6548,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.79785,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,0,786.75,-18471.939,-79135.336,0,0,367.33694,0,2597.1797 +3028,3734,6551,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,3.8048334,3.9043894,0,0,-1104.4952,-9,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4612365,44.24,35.51,-9,-9,5,1,1,0,0,0,12,2,1,498,118556.47,0,0,0,0,0,23.872175 +3029,3735,6552,-9,-9,-9,1,1,19,0,1,0,2,2,-9,0,5,7.9853086,8.4659996,6.5880237,0,0,-1001.113,0,1,1,2021,5,0,35,35,1,0,1,8.0339384,8.0339384,.05,.05,0,0,0,0,0,0,1,1,0,6.9713645,0,54.1,59.11,-9,-9,10,1,1,0,0,2,5,4,0,1275,-91241.445,-156404.64,0,0,0,0,643.74683 +3030,3736,6553,6554,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.9014978,9.0680561,0,5,-6,86.166153,0,-9,-9,2021,5,0,55,55,1,0,0,16.48353,16.48353,0,0,0,0,0,0,0,0,0,0,0,0,0,57.49,39.89,59.31,49.81,8.333333333333334,1,1,0,0,3,10,5,1,2611,20757240,4895612,856185.25,0,0,0,5569.8516 +3030,3736,6554,6553,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,9.3478079,9.4524193,0,5,6,-21.948116,0,2,2,2021,8,0,57,50,1,0,0,30.205069,30.205069,0,0,.05,0,0,0,0,0,0,0,0,4.9453239,0,59.31,49.81,57.49,39.89,10,1,1,0,0,9,10,5,1,2611,20757240,4895612,856185.25,0,0,0,5569.8516 +3031,3737,6555,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,7.5860782,7.7289119,5.8496618,0,0,-1028.4414,0,-9,-9,2021,14,3,20,30,1,3,0,12.55861,12.55861,.05,.05,0,0,0,0,0,2,1,1,0,6.472693,5.9175963,44.6,39.54,-9,-9,8.333333333333334,1,1,0,0,15,10,3,1,255,189082.59,-41178.367,0,0,0,0,1803.833 +3032,3738,6556,-9,6557,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.674,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,944.5,-12521.738,0,0,0,0,0,932.41199 +3032,3738,6557,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1084.3188,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,1,0,0,2,1,0,944.5,-12521.738,0,0,0,0,0,932.41199 +3033,3739,6558,-9,6559,6561,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.4543,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3033,3739,6559,6561,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.5956068,8.5903063,0,7,-5,-5.4321356,0,2,2,2021,18,6,50,52,1,6,0,13.500317,13.500317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,58.79,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3033,3739,6560,-9,6559,6561,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-937.89087,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3033,3739,6561,6559,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.4689207,8.5019827,0,7,5,-93.648308,0,-9,-9,2021,7,0,36,37,1,0,0,17.379604,17.379604,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.22,58.79,10,1,1,0,1,9,2,5,1,1006.75,473381.66,146000.11,253509.02,97632.242,0,0,3415.6729 +3034,3740,6562,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-783.01288,0,-9,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.57,28.04,-9,-9,3.333333333333333,1,1,0,0,0,1,1,0,867,64829.156,0,0,0,0,0,2639.2881 +3035,3741,6563,6564,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.5007429,8.4557686,0,13,5,0,0,2,2,2021,13,1,38,42,1,1,0,14.015862,14.015862,.05,.05,0,0,0,0,0,0,1,1,0,2.1792867,0,42.6,46.82,44.02,60.7,8.333333333333334,2,3,0,0,9,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3035,3741,6564,6563,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.4151802,8.4930563,0,13,-5,0,0,2,3,2021,8,0,42,52,1,0,0,14.562415,14.562415,.05,.05,0,0,0,0,0,7,1,1,0,4.3766928,0,44.02,60.7,42.6,46.82,8.333333333333334,2,3,0,0,9,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3035,3741,6565,-9,6564,6563,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.0602,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3035,3741,6566,-9,6564,6563,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4015,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,408.25,1035722.7,708631.69,252663.3,100947.83,952.4455,0,4251.5024 +3036,3742,6567,6568,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,46,6,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,64.40000000000001,36.46,54.27,22.7,10,1,1,0,0,0,2,1,0,975,63604.793,0,39566.797,25049.24,0,1934.9763,2308.4404 +3036,3742,6568,6567,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,45,-6,0,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.27,22.7,64.40000000000001,36.46,6.666666666666667,1,1,0,0,0,2,1,0,975,63604.793,0,39566.797,25049.24,0,1934.9763,2308.4404 +3037,3743,6569,6570,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.4800925,7.6327491,52,2,-2.4760189,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3505635,7.5507855,51.71,47.5,43.94,14.08,10,1,1,0,0,0,4,3,1,293,882642.63,401758.81,262412.75,0,0,0,2602.8828 +3037,3743,6570,6569,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,5.307601,5.5689006,52,-2,4.652555,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0804543,5.3332343,43.94,14.08,51.71,47.5,8.333333333333334,1,1,0,0,0,4,3,1,293,882642.63,401758.81,262412.75,0,0,0,2602.8828 +3038,3744,6571,6572,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.1544619,7.0231957,0,30,-23,-77.406891,0,3,1,2021,12,0,15,15,1,0,0,8.9882574,8.9882574,0,0,0,0,0,0,0,0,1,1,0,.85836399,0,40.47,56.92,58.31,40.62,6.666666666666667,1,1,0,0,11,9,3,1,2890,838797.63,218873.25,538853.88,0,0,0,1795.1368 +3038,3744,6572,6571,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.9947405,7.1364336,30,23,-64.648506,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4261312,7.0064139,58.31,40.62,40.47,56.92,8.333333333333334,1,1,0,0,0,9,3,1,2890,838797.63,218873.25,538853.88,0,0,0,1795.1368 +3039,3745,6573,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,7.5046644,7.9186335,6.9729266,0,0,-940.42621,0,1,1,2021,11,0,16,16,1,0,0,9.7780085,9.7780085,.05,.05,0,0,0,0,0,0,1,1,0,8.4314203,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,12,7,3,1,698,146617.69,19540.449,0,0,385.09952,1925.7634,3508.5767 +3040,3746,6574,6575,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.6267834,7.6451592,7,2,163.78845,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9598956,7.1657457,46.07,37.4,49.01,31.65,8.333333333333334,1,1,0,0,0,4,3,1,942.5,530597,281360.69,225018.28,0,0,0,1644.823 +3040,3746,6575,6574,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,7,-2,20.971704,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9954219,0,49.01,31.65,46.07,37.4,8.333333333333334,1,1,0,0,0,4,3,1,942.5,530597,281360.69,225018.28,0,0,0,1644.823 +3041,3747,6576,-9,6579,6577,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.30316,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3041,3747,6577,6579,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.091773,9.1171894,0,7,1,-98.756172,0,2,2,2021,17,6,43,43,1,6,0,24.991938,24.991938,.05,.05,0,0,0,0,0,0,1,1,0,1.9417812,0,39.79,57.19,57.16,56.15,8.333333333333334,1,1,0,0,10,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3041,3747,6578,-9,6579,6577,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.57898,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3041,3747,6579,6577,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,0,0,0,7,-1,43.545185,0,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6533508,0,57.16,56.15,39.79,57.19,8.333333333333334,1,1,0,0,6,1,4,1,633.75,254119.67,178395.33,216229.36,76437.695,0,0,4216.6392 +3042,3748,6580,6582,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.2366447,8.4304447,0,9,-8,97.492538,0,1,1,2021,7,0,24,15,1,0,0,16.536076,16.536076,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,43.57,51.63,8.333333333333334,1,1,0,0,9,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3042,3748,6581,-9,6580,6582,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.65656,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3042,3748,6582,6580,-9,-9,1,1,45,1,2,0,2,2,-9,0,3,9.4228992,9.0706663,0,9,8,39.577934,0,-9,-9,2021,18,6,49,49,1,6,0,19.589355,19.589355,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.57,51.63,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3042,3748,6583,-9,6580,6582,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.043,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,372,97208.086,113627.28,0,0,14198.623,0,3868.6689 +3043,3749,6584,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.210155,6.91641,0,0,0,-986.38074,0,-9,-9,2021,6,0,12,12,1,0,0,15.281557,15.281557,.05,.05,0,0,0,0,0,0,1,1,0,5.5025334,0,57.16,56.15,-9,-9,0,1,1,0,0,10,9,3,1,785,3354.8074,86293.094,0,0,0,0,1439.725 +3044,3750,6585,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7776818,7.8530126,0,0,0,-928.24591,0,3,3,2021,10,0,25,25,1,0,0,10.663714,10.663714,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,1543,394912.25,141784.11,232260.45,0,0,0,1486.0598 +3045,3751,6586,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.3225055,5.1964793,0,0,-968.86926,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2599545,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1708,-6684.2563,74199.234,0,0,0,0,370.22144 +3046,3752,6587,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.6528,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.78,30.49,-9,-9,0,1,1,0,0,0,9,1,1,1330,35968.586,0,0,0,0,0,1089.8981 +3047,3753,6588,6589,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.103364,7.8815422,5.4691553,1,1,-13.343405,-9,-9,-9,2021,9,0,15,0,1,1,0,25.61268,25.61268,0,0,0,0,0,0,0,0,1,1,0,4.693294,5.4192381,53,47,55.96,49.93,7,1,1,0,0,1,9,3,1,331,810090.19,553791,264145.94,0,0,0,2907.8667 +3047,3753,6589,6588,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,41,-1,-62.734245,-9,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.96,49.93,53,47,10,1,1,0,0,0,9,3,1,331,810090.19,553791,264145.94,0,0,0,2907.8667 +3048,3754,6590,6591,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.3545055,8.1789856,0,3,0,58.105736,0,1,1,2021,12,1,37,39,1,1,0,11.075591,11.075591,.05,.05,0,0,0,0,0,0,0,0,0,2.5310822,0,43.73,59.7,21.25,63.22,6.666666666666667,1,1,0,0,5,4,5,1,922,-19930.979,43851.98,276739.81,198409,0,0,3401.0911 +3048,3754,6591,6590,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.4124031,8.5778046,0,3,0,-50.061195,0,-9,-9,2021,12,2,39,40,1,2,0,11.288013,11.288013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.25,63.22,43.73,59.7,6.666666666666667,2,3,0,0,4,4,5,1,922,-19930.979,43851.98,276739.81,198409,0,0,3401.0911 +3049,3755,6592,6594,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.6906157,8.6209316,0,20,-4,-86.981133,0,2,2,2021,7,0,31,33,1,0,0,17.098413,17.098413,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,46.65,55.59,8.333333333333334,1,1,0,0,12,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3049,3755,6593,-9,6592,6594,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.3292,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3049,3755,6594,6592,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.393837,8.0739031,0,21,4,23.775545,0,2,2,2021,9,0,37,38,1,0,0,12.529985,12.529985,.05,.05,0,0,0,0,0,0,1,1,0,2.6220393,0,46.65,55.59,54.1,59.11,8.333333333333334,1,1,0,0,12,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3049,3755,6595,-9,6592,6594,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.03253,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,733.5,203260.36,37921.008,71308.086,17075.965,0,4536.0767,3912.3982 +3050,3756,6596,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,6.9882469,7.0254011,0,0,0,-1050.6835,0,3,3,2021,9,0,27,25,1,0,0,5.4091868,5.4091868,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,3,4,0,0,5,6,2,0,2170,-30612.975,37799.367,0,0,0,0,257.23862 +3051,3757,6597,6598,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.3614635,6.3058944,55,-3,-42.176052,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.42488,51.99,39.38,55.03,44.66,6.666666666666667,1,1,0,0,3,4,2,1,251,394935.5,215084.69,235709.53,0,0,0,1462.6211 +3051,3757,6598,6597,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.2351813,6.3782406,55,3,-50.307793,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6837716,5.9500499,55.03,44.66,51.99,39.38,8.333333333333334,1,1,0,0,0,4,2,1,251,394935.5,215084.69,235709.53,0,0,0,1462.6211 +3052,3758,6599,6600,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,5.1232429,5.2582188,41,5,112.27584,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,.52556902,0,0,1,1,0,10.085933,4.9640737,41.37,30.22,51.24,58.84,6.666666666666667,1,1,0,0,9,9,2,1,1229.5,246301.28,77899.813,97026.094,0,0,0,16021.752 +3052,3758,6600,6599,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,41,-5,88.245537,0,3,1,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.4023838,0,51.24,58.84,41.37,30.22,8.333333333333334,1,1,0,0,4,9,2,1,1229.5,246301.28,77899.813,97026.094,0,0,0,16021.752 +3053,3759,6601,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,7.8123541,8.40166,7.3189549,0,0,-821.59778,0,1,2,2021,9,0,20,20,1,0,0,19.135645,19.135645,0,0,0,0,0,0,0,0,1,1,0,7.7995939,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,3744.5,-833.45898,70900.766,99339.438,42914.844,8649.418,0,2577.7842 +3053,3759,6602,-9,6601,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.8075,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,3744.5,-833.45898,70900.766,99339.438,42914.844,8649.418,0,2577.7842 +3054,3760,6603,-9,6606,-9,1,0,36,0,0,0,1,1,-9,0,4,8.9673204,9.3764114,0,0,0,-1074.1986,0,2,2,2021,13,4,65,95,1,4,0,15.673946,15.673946,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,8,8,5,1,2862,394687.47,394924,138648.38,129182,0,0,3106.0608 +3054,3761,6604,-9,6606,-9,1,0,41,0,0,0,1,1,-9,0,3,9.6304483,9.5632677,0,0,0,-1065.4753,0,3,3,2021,26,10,60,60,1,10,0,30.132107,30.132107,.05,.05,0,0,0,0,0,7,1,1,0,0,0,45.18,54.77,-9,-9,1.666666666666667,2,3,0,0,7,8,5,1,118,-8452.1992,116625.38,121133.02,115450.4,0,0,5630.5508 +3054,3762,6605,-9,6606,-9,1,0,37,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1033.2777,-9,1,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,37.52,52.14,-9,-9,3.333333333333333,2,3,0,0,0,8,1,1,281,76957.844,0,0,0,0,5932.0156,1604.2272 +3054,3763,6606,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,1,0,4.8026385,5.0152202,0,0,-1124.5648,0,-9,-9,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,33.693806,0,2,1,1,0,5.3566003,0,56.16,17.64,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,392,100530.12,86762.305,89270.93,0,0,7.4883151,175.75104 +3054,3764,6607,-9,6609,-9,1,1,22,0,0,1,2,0,0,0,3,0,5.0944357,4.784482,0,0,-1018.6953,-9,1,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9912949,0,54.62,53.53,-9,-9,10,2,3,0,1,0,8,2,1,405,-54275.207,0,0,0,0,0,1687.7104 +3054,3765,6608,-9,6609,-9,1,0,25,0,0,0,1,1,0,0,4,0,0,0,0,0,-1059.2902,-9,1,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.87,58.55,-9,-9,3.333333333333333,2,3,0,1,4,8,1,1,250,31159.313,0,0,0,0,0,0 +3054,3766,6609,-9,-9,-9,1,0,47,0,0,0,1,1,-9,1,2,0,7.8323431,7.6877961,0,0,-994.13733,0,-9,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5512161,0,22.12,44.31,-9,-9,5,2,3,0,0,0,8,3,1,588,-15473.889,0,0,0,0,0,1142.5151 +3055,3767,6610,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,0,0,0,0,0,-858.78296,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.42,26.88,-9,-9,8.333333333333334,1,1,1,0,0,9,1,0,217,6964.0542,0,0,0,0,0,907.09857 +3056,3768,6611,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,0,0,-873.41797,0,2,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3370478,0,34.79,44.64,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,633,334002.72,313946.09,185337.98,0,0,0,378.62753 +3057,3769,6612,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8216858,7.2576985,0,0,0,-1084.5548,0,3,2,2021,8,0,30,40,1,0,0,8.6679144,8.6679144,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1081,-239295.08,0,0,0,0,-635.72998,1923.1964 +3057,3770,6613,-9,6612,-9,1,0,23,0,0,0,2,2,-9,0,4,8.5506001,8.6488209,0,0,0,-1020.2084,0,2,2,2021,2,0,40,40,1,0,1,12.319078,12.319078,.05,.05,0,0,0,0,0,0,0,0,0,3.7900696,0,43.95,58.45,-9,-9,6.666666666666667,1,1,0,0,4,9,5,1,137,-22037.875,-73223.039,0,0,0,0,2324.4827 +3058,3771,6614,-9,6615,6616,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-987.87708,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,4403,537322.19,320046.66,244139.11,92208.117,2458.2507,770.96442,3033.3809 +3058,3771,6615,6616,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.8682079,7.427845,0,9,-5,44.069572,0,3,3,2021,19,7,10,10,1,7,0,13.387219,13.387219,.05,.05,0,0,0,0,0,2,1,1,0,0,0,34.73,60.05,57.16,56.15,6.666666666666667,1,1,0,0,11,6,4,1,4403,537322.19,320046.66,244139.11,92208.117,2458.2507,770.96442,3033.3809 +3058,3771,6616,6615,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.605113,8.6280985,0,9,5,23.766479,0,2,2,2021,6,0,56,46,1,0,0,10.394121,10.394121,.05,.05,0,0,0,0,0,0,1,1,0,6.6797137,0,57.16,56.15,34.73,60.05,8.333333333333334,1,1,0,0,11,6,4,1,4403,537322.19,320046.66,244139.11,92208.117,2458.2507,770.96442,3033.3809 +3059,3772,6617,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.413116,7.3355007,6,5,-117.38875,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.0977597,7.365418,57.06,57.76,59.43,58.05,10,1,1,0,0,2,4,2,1,1266,2458009,827792.25,1318241.6,0,0,0,1106.9956 +3059,3773,6618,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,6,-5,49.413952,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7983556,0,59.43,58.05,57.06,57.76,10,1,1,0,0,6,4,2,1,3119,1167.7744,-9303.1357,0,0,0,0,993.83289 +3060,3774,6619,6620,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.0347185,7.1289339,11,-1,-171.03731,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6416745,7.1098189,58.15,52.91,52.18,50.21,8.333333333333334,1,1,0,0,6,7,3,1,326.5,953428.56,429957.97,304804.16,0,0,0,2511.5552 +3060,3774,6620,6619,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.5595651,7.514575,11,1,27.367727,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.535274,52.18,50.21,58.15,52.91,8.333333333333334,1,1,0,0,1,7,3,1,326.5,953428.56,429957.97,304804.16,0,0,0,2511.5552 +3061,3775,6621,6623,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.2065706,7.9858198,0,11,1,54.022537,0,-9,-9,2021,13,1,38,0,1,1,0,13.115151,13.115151,0,0,0,0,0,0,0,0,1,1,0,7.2987542,0,53.71,44.42,42.61,54.85,3.333333333333333,1,1,0,1,13,9,4,1,569.66669,624276.38,160427.09,651253.38,124111.24,0,-192.67717,3739.6086 +3061,3775,6622,-9,6621,6623,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.63507,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,569.66669,624276.38,160427.09,651253.38,124111.24,0,-192.67717,3739.6086 +3061,3775,6623,6621,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,7.9137568,8.1862297,0,11,-1,-180.0372,0,2,3,2021,13,1,38,35,1,1,0,14.350147,14.350147,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,53.71,44.42,8.333333333333334,1,1,0,0,12,9,4,1,569.66669,624276.38,160427.09,651253.38,124111.24,0,-192.67717,3739.6086 +3062,3776,6624,6625,-9,-9,1,0,32,1,2,0,1,1,-9,0,3,7.5156684,7.9894195,0,6,-3,-49.681137,0,2,2,2021,24,8,25,25,1,8,0,7.9401889,7.9401889,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.34,62.53,49.41,58.28,8.333333333333334,1,1,0,0,7,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3062,3776,6625,6624,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.3531294,8.2963428,0,6,3,-3.997004,0,-9,-9,2021,9,1,58,53,1,1,0,10.394017,10.394017,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,20.34,62.53,8.333333333333334,1,1,0,0,5,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3062,3776,6626,-9,6624,6625,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.03571,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.061663233,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3062,3776,6627,-9,6624,6625,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.0448,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1671.25,-6869.6104,19417.943,109947.2,74380.406,0,-285.81024,3456.9377 +3063,3777,6628,6629,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.9734249,8.0709476,34,-1,-74.827644,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2967253,7.7404723,51.83,57.2,44.09,31.24,8.333333333333334,1,1,0,0,0,9,3,1,806,768656.13,368008.5,422567.47,723.50439,0,8717.1309,2550.854 +3063,3777,6629,6628,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,34,1,-213.53026,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,14.375639,0,0,1,1,0,0,0,44.09,31.24,51.83,57.2,5,1,1,0,0,0,9,3,1,806,768656.13,368008.5,422567.47,723.50439,0,8717.1309,2550.854 +3064,3778,6630,6632,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.0445089,8.3824291,0,7,2,-10.258108,0,-9,-9,2021,10,0,40,40,1,1,0,13.246768,13.246768,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,58.05,54.52,7,1,1,0,0,1,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3064,3778,6631,-9,6632,6630,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.8037,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3064,3778,6632,6630,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.9260879,7.5364223,0,19,-2,15.063697,0,2,2,2021,8,0,21,10,1,0,0,12.769534,12.769534,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,51,56,8.333333333333334,1,1,0,0,8,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3064,3778,6633,-9,6632,6630,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.90045,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,424.75,605023.69,194479.23,380257.75,14812.476,0,0,3166.5139 +3065,3779,6634,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1045.9691,0,3,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.67,35.01,-9,-9,6.666666666666667,1,1,0,0,2,4,1,1,955,68045.75,39509.594,0,0,0,0,0 +3065,3780,6635,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,4.701364,4.6759858,0,0,-1129.1072,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,4.6293731,32.897758,46.066223,0,1,1,0,1.1602528,4.6826181,32.82,19.15,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1378,84008.352,49672.125,0,0,0,0,1375.9249 +3066,3781,6636,6637,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,9.1031904,8.9862928,0,9,0,-52.532776,0,2,3,2021,13,2,45,37,1,2,0,23.497913,23.497913,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.26,48.51,25.75,57.03,8.333333333333334,1,1,0,0,10,11,4,1,4160.6665,76119.609,7672.8687,205414.42,139364.73,0,0,2819.8232 +3066,3781,6637,6636,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,0,0,0,9,0,13.13879,0,1,2,2021,17,5,0,40,3,5,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.3936496,0,25.75,57.03,50.26,48.51,6.666666666666667,1,1,1,0,10,11,4,1,4160.6665,76119.609,7672.8687,205414.42,139364.73,0,0,2819.8232 +3066,3781,6638,-9,6636,6637,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.3254,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,4160.6665,76119.609,7672.8687,205414.42,139364.73,0,0,2819.8232 +3067,3782,6639,6641,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.1314545,9.5270672,0,18,4,86.221039,0,2,3,2021,11,1,20,65,1,1,0,64.93251,64.93251,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,55.19,54.26,46.4,59.87,8.333333333333334,1,1,0,0,6,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3067,3782,6640,-9,6641,6639,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.756,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3067,3782,6641,6639,-9,-9,1,0,36,0,2,0,1,1,-9,0,5,9.0505247,9.0094385,0,18,-4,76.116348,0,1,1,2021,10,0,47,50,1,0,0,24.6528,24.6528,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,59.87,55.19,54.26,8.333333333333334,1,1,0,0,9,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3067,3782,6642,-9,6641,6639,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.6473,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,784.5,701544.56,378974.34,556294.25,356796.03,0,1129.1158,7212.0156 +3068,3783,6643,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,6.8607869,6.7658901,0,0,-967.72369,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.6555222,6.7579689,71.38,7.86,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,190,64765.109,129399.59,0,0,0,-177.50003,1118.8354 +3069,3784,6644,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.1876383,8.3341684,0,0,-1040.2223,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1141009,8.5717573,52.69,48.71,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,2451,777509.5,616537.5,121735.53,0,0,0,2631.364 +3070,3785,6645,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1074.5917,0,3,3,2021,19,0,0,0,4,6,0,0,0,0,0,0,1,2.9779556,0,22.086981,0,1,1,0,0,0,46.64,16.52,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,542,-142053.27,0,0,0,0,0,-1.691174 +3071,3786,6646,-9,6648,6647,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.9197,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,522.33331,171071.66,58429.094,180952.52,92349.258,4948.2241,5373.8335,2733.938 +3071,3786,6647,6648,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.4265976,8.4342842,0,18,0,-74.105247,0,2,2,2021,17,5,37,37,1,5,0,16.303864,16.303864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,29.54,58.14,6.666666666666667,1,1,0,0,10,4,4,1,522.33331,171071.66,58429.094,180952.52,92349.258,4948.2241,5373.8335,2733.938 +3071,3786,6648,6647,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,6.9287343,7.0970716,0,18,0,30.857389,0,2,2,2021,20,9,21,24,1,9,0,5.6379876,5.6379876,0,0,0,0,0,0,0,0,1,1,0,0,0,29.54,58.14,46.55,58.3,3.333333333333333,1,1,0,0,8,4,4,1,522.33331,171071.66,58429.094,180952.52,92349.258,4948.2241,5373.8335,2733.938 +3072,3787,6649,-9,6650,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.17615,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,912,90109.953,113921.64,27589.896,43542.203,8052.9702,4395.8604,3487.0439 +3072,3787,6650,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,8.9627657,9.1898098,6.0669565,0,0,-1046.7588,0,2,3,2021,11,0,46,20,1,0,0,19.925097,19.925097,.05,.05,0,0,0,0,0,0,1,1,0,6.5284605,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,912,90109.953,113921.64,27589.896,43542.203,8052.9702,4395.8604,3487.0439 +3072,3787,6651,-9,6650,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1964,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,912,90109.953,113921.64,27589.896,43542.203,8052.9702,4395.8604,3487.0439 +3073,3788,6652,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.5275583,8.6170101,0,4,-16,-7.4670501,0,2,2,2021,22,9,38,40,1,9,0,17.906231,17.906231,.05,.05,0,0,0,0,0,0,0,0,0,3.5021546,0,27.74,56.23,46.88,60.96,1.666666666666667,1,1,0,0,5,9,5,1,764,211893.58,67934.031,0,0,0,2761.5911,1211.9156 +3073,3789,6653,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,7.9426827,8.4899397,0,4,16,-84.899422,0,-9,-9,2021,2,0,37,37,1,0,0,8.5144958,8.5144958,0,0,.05,0,0,0,0,0,0,0,0,7.7416363,0,46.88,60.96,27.74,56.23,8.333333333333334,1,1,0,0,3,9,5,1,258,208225.22,-120512.76,85109.406,70292.766,14372.692,0,2157.7571 +3074,3790,6654,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.7583389,9.1417713,0,0,0,-1037.9132,0,2,2,2021,11,0,38,38,1,0,0,19.886118,19.886118,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,495,182503.05,152774.55,86303.086,79643.742,0,0,2222.9302 +3075,3791,6655,6657,-9,-9,1,0,57,0,1,0,1,1,-9,0,4,9.5808163,9.6539555,0,17,16,1.4437019,0,-9,-9,2021,8,0,35,35,1,0,0,46.558262,46.558262,.05,.05,0,0,0,0,0,0,1,1,0,1.9815291,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,10,9,5,1,1760.3334,1570752.6,1187963.5,490767.47,93258.836,1734.2029,947.20837,7346.0864 +3075,3791,6656,-9,6655,6657,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.05859,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,5,1,1760.3334,1570752.6,1187963.5,490767.47,93258.836,1734.2029,947.20837,7346.0864 +3075,3791,6657,6655,-9,-9,1,1,41,0,1,0,3,3,-9,0,4,8.041749,8.158473,0,20,-16,97.718895,0,3,3,2021,12,0,39,39,1,0,0,7.6787291,7.6787291,.05,.05,0,0,0,0,0,0,1,1,0,.0329891,0,51.24,58.84,48.87,58.55,6.666666666666667,1,1,0,0,12,9,5,1,1760.3334,1570752.6,1187963.5,490767.47,93258.836,1734.2029,947.20837,7346.0864 +3076,3792,6658,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.6442,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.66,37.84,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,605,291359.06,0,106578.66,0,0,0,1653.0337 +3077,3793,6659,6660,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7302341,8.3874598,0,8,-5,51.327919,0,1,1,2021,6,0,39,40,1,0,0,17.310881,17.310881,.05,.05,0,0,0,0,0,7,0,0,0,0,0,60.29,52.11,44.59,56.4,8.333333333333334,1,1,0,0,11,12,5,1,638.5,405807,423578.56,171490,0,1372.8483,0,2345.3135 +3077,3793,6660,6659,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.5673513,7.3320732,0,8,5,17.701292,0,3,2,2021,11,0,25,26,1,0,0,9.5083246,9.5083246,0,0,0,0,0,0,0,7,0,0,0,0,0,44.59,56.4,60.29,52.11,5,1,1,0,0,9,12,5,1,638.5,405807,423578.56,171490,0,1372.8483,0,2345.3135 +3078,3794,6661,6662,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.6622591,8.1557817,0,11,0,-42.065811,0,2,2,2021,16,3,46,40,1,3,0,12.317425,12.317425,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,59.68,47.94,53.79,6.666666666666667,1,1,0,0,12,5,5,1,232,567921.63,375140.28,288343.94,179897.72,22040.859,0,5737.5801 +3078,3794,6662,6661,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.1365395,9.1250715,0,11,0,178.21204,0,3,2,2021,13,1,63,98,1,1,0,15.746728,15.746728,.05,.05,0,0,0,0,0,2,0,0,0,0,0,47.94,53.79,40.83,59.68,6.666666666666667,1,1,0,0,12,5,5,1,232,567921.63,375140.28,288343.94,179897.72,22040.859,0,5737.5801 +3078,3795,6663,-9,6661,6662,1,0,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-998.62238,0,1,1,2021,13,2,0,17,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0815907,0,22.84,54.33,-9,-9,6.666666666666667,1,1,1,0,3,5,1,1,1071,-14471.756,0,0,0,0,0,278.80136 +3079,3796,6664,-9,6665,-9,1,0,36,0,1,0,2,2,-9,0,1,0,0,0,0,0,-946.78894,0,3,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26.81,32.71,-9,-9,0,1,1,1,1,0,7,1,0,327,-72413.383,0,0,0,2898.3237,1637.5059,1326.745 +3079,3797,6665,-9,-9,-9,1,0,65,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1047.7963,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,11.654298,0,0,1,0,1,0,0,38.14,29.73,-9,-9,5,1,1,0,0,0,7,1,0,603,0,0,0,0,0,0,143.7099 +3080,3798,6666,-9,6667,6669,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.9023,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6667,6669,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,8.8172455,8.5430727,0,18,-3,21.922525,0,3,3,2021,9,0,38,38,1,0,0,20.962734,20.962734,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,52.7,32.17,8.333333333333334,2,3,0,0,8,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6668,-9,6667,6669,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-948.82861,-9,1,1,2021,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,2,3,0,0,0,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6669,6667,-9,6671,1,1,48,0,3,0,1,1,-9,0,4,8.8664503,8.9245119,0,18,3,51.176834,0,3,2,2021,18,7,40,40,1,7,0,17.902258,17.902258,.05,.05,0,0,0,0,0,0,1,1,0,7.6697006,0,52.7,32.17,52.24,50.75,8.333333333333334,2,3,0,1,7,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3798,6670,-9,6667,6669,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-969.06085,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,5,1,1056,735884.81,164948.06,614132.19,189283.97,0,0,5160.6123 +3080,3799,6671,-9,-9,-9,1,1,85,0,3,0,3,3,-9,0,3,0,0,0,0,0,-976.74683,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7769008,0,55,45,-9,-9,8,4,6,0,0,0,9,1,1,719,25611.143,0,0,0,0,0,2108.322 +3081,3800,6672,6673,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.7994723,7.6759071,0,38,5,-51.096901,0,2,3,2021,6,0,27,27,1,0,0,10.335569,10.335569,0,0,0,0,0,0,0,27,1,0,1,0,0,59.46,46.99,33.11,29.9,8.333333333333334,1,1,0,0,13,11,3,1,454,618629,288626.25,106876.04,0,8972.7969,0,2107.6184 +3081,3800,6673,6672,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,36,-5,-85.796753,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,33.11,29.9,59.46,46.99,1.666666666666667,1,1,1,1,11,11,3,1,454,618629,288626.25,106876.04,0,8972.7969,0,2107.6184 +3082,3801,6674,6675,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.487339,8.2512951,42,1,-30.827929,0,-9,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8036489,8.295969,50.69,44.34,50.14,53.97,8.333333333333334,1,1,0,0,8,1,4,1,1442,761407.75,607376.75,230973.41,0,0,0,2117.4922 +3082,3801,6675,6674,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.0533333,3.8055737,42,-1,175.32455,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.862689,3.6710234,50.14,53.97,50.69,44.34,8.333333333333334,1,1,0,0,8,1,4,1,1442,761407.75,607376.75,230973.41,0,0,0,2117.4922 +3083,3802,6676,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1078.9794,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.87,47.66,-9,-9,0,1,1,0,0,0,9,1,0,595,273995.47,0,263485.16,10568.734,0,0,678.91815 +3084,3803,6677,-9,6679,6678,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3804,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6678,6679,6682,-9,1,1,40,0,3,0,2,2,-9,1,3,7.8392715,7.712707,0,14,5,-14.20735,0,3,3,2021,6,0,30,35,1,0,0,6.0498366,6.0498366,0,0,0,0,0,0,0,2,1,1,0,0,0,59.46,46.99,49,56,8.333333333333334,2,3,0,0,9,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6679,6678,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,6,-5,69.041656,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,59.46,46.99,7,2,3,0,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6680,-9,6679,6678,1,1,10,0,3,1,3,0,-9,0,1,0,0,0,0,0,-962.11798,-9,3,2,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,32,-9,-9,3,2,3,-9,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3803,6681,-9,6679,6678,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-970.50085,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,2,1,1184.2,106219.27,0,127369.46,45269.777,0,0,2554.1411 +3084,3804,6682,-9,-9,-9,1,0,61,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1058.3571,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,1360,-201490.22,0,0,0,0,0,696.85028 +3085,3805,6683,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1048.5848,0,-9,-9,2021,19,4,0,0,4,4,0,0,0,0,0,0,1,11.375976,0,87.927521,0,1,1,0,0,0,52,45,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,184,40176.063,0,0,0,0,0,1557.7532 +3086,3806,6684,6685,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.5075769,8.3795538,0,12,0,119.96681,0,3,3,2021,9,0,40,40,1,0,0,15.00504,15.00504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,890.5,374839.5,256374.47,269316.75,0,0,0,3104.6885 +3086,3806,6685,6684,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.996614,8.4244299,0,12,0,-6.2379189,0,2,2,2021,6,0,40,40,1,0,0,8.8861275,8.8861275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,890.5,374839.5,256374.47,269316.75,0,0,0,3104.6885 +3087,3807,6686,6687,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.6018333,5.9572363,32,1,59.846172,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.720252,5.836411,59.7,32.49,47.9,45.86,5,1,1,0,0,5,10,2,0,537.5,155127.63,144266.97,0,0,0,0,1499.1003 +3087,3807,6687,6686,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,9,-1,-9.4666834,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.9,45.86,59.7,32.49,8.333333333333334,1,1,0,0,0,10,2,0,537.5,155127.63,144266.97,0,0,0,0,1499.1003 +3088,3808,6688,6689,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.0197687,8.2271242,0,1,2,64.6231,-9,-9,-9,2021,12,1,35,0,1,1,0,8.9635382,8.9635382,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,46.16,58.62,45.62,40.93,5,1,1,0,0,0,12,4,1,748.5,13649.688,-30091.711,62787.781,88877.938,2865.6628,3108.6597,2584.1626 +3088,3808,6689,6688,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1527433,8.2717867,0,1,-2,94.502441,0,2,1,2021,12,1,70,55,1,1,0,4.5961313,4.5961313,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.62,40.93,46.16,58.62,8.333333333333334,1,1,0,0,8,12,4,1,748.5,13649.688,-30091.711,62787.781,88877.938,2865.6628,3108.6597,2584.1626 +3089,3809,6690,6691,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-8,0,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2133538,0,54.38,49.27,47.8,39.1,8.333333333333334,1,1,0,0,0,6,1,1,462,224110.06,0,185560.5,-10423.021,0,0,558.76422 +3089,3809,6691,6690,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,56,8,0,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.663651,0,47.8,39.1,54.38,49.27,6.666666666666667,1,1,0,0,0,6,1,1,462,224110.06,0,185560.5,-10423.021,0,0,558.76422 +3089,3810,6692,-9,6690,6691,1,1,50,0,0,0,2,2,-9,0,3,8.7499104,8.7165842,0,0,0,-773.34631,0,3,3,2021,9,0,46,50,1,0,0,15.31059,15.31059,.05,.05,0,0,0,0,.99833173,0,1,1,0,0,0,44.3,55.28,-9,-9,6.666666666666667,1,1,0,0,4,6,5,1,694,306185.91,157922.41,0,0,0,0,2200.1382 +3090,3811,6693,6694,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.0566902,9.2839727,0,13,-1,65.609222,0,1,1,2021,8,0,52,53,1,0,0,25.270979,25.270979,.05,.05,.05,0,0,0,0,0,0,0,0,3.9555774,0,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,8,9,5,0,1603,448578.31,505011.25,291693.75,216907.72,3641.3496,0,3302.6357 +3090,3811,6694,6693,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,0,0,0,11,1,19.493458,0,3,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,57.16,56.15,8.333333333333334,2,3,1,0,0,9,5,0,1603,448578.31,505011.25,291693.75,216907.72,3641.3496,0,3302.6357 +3091,3812,6695,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.9677787,6.9123926,0,0,-971.48248,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.961812,0,60.488895,0,1,1,0,2.9068475,6.7864337,52,44,-9,-9,8,1,1,0,0,0,11,2,0,354,214532.94,-12536.173,60541.125,0,0,0,952.42407 +3092,3813,6696,-9,6700,6699,1,1,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1120.2513,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6697,-9,6700,6699,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.5088,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6698,-9,6700,6699,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1084.9597,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6699,6700,-9,-9,1,1,40,1,3,0,3,3,-9,0,4,8.7601595,8.4195852,0,6,3,-32.242928,0,-9,-9,2021,9,0,40,40,1,1,0,21.896078,21.896078,.05,.05,0,0,0,0,0,0,1,1,0,3.9495025,0,52,56,22.95,66.73999999999999,7,1,1,0,0,1,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3092,3813,6700,6699,-9,-9,1,0,37,1,3,0,2,2,-9,0,5,0,0,0,6,-3,-19.44659,0,3,3,2021,20,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.95,66.73999999999999,52,56,6.666666666666667,1,1,0,0,0,12,3,1,871.59998,225262.88,119424.64,129633.23,139089.52,0,0,2700.498 +3093,3814,6701,6702,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.9069414,8.9243288,40,1,-4.6846604,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.0832968,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,2,5,5,1,192.5,1815386.6,1325974,269714.53,0,0,0,3514.0474 +3093,3814,6702,6701,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,5.6144199,5.8226852,40,-1,65.781967,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9374599,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,0,5,5,1,192.5,1815386.6,1325974,269714.53,0,0,0,3514.0474 +3094,3815,6703,6704,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.1796789,8.1061697,0,10,0,15.600382,0,3,2,2021,13,1,40,39,1,1,0,10.637508,10.637508,0,0,0,0,0,0,0,0,1,1,0,0,0,49.85,44.94,41.37,35.42,5,1,1,0,1,10,9,5,1,1014,737575.31,687650.81,425039.16,324239.22,5855.3335,9848.3291,3631.1184 +3094,3815,6704,6703,-9,-9,1,1,43,0,1,0,1,1,-9,0,1,8.7593317,8.8463106,0,2,0,34.39024,0,-9,-9,2021,21,9,40,37,1,9,0,18.538376,18.538376,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.37,35.42,49.85,44.94,1.666666666666667,1,1,0,1,10,9,5,1,1014,737575.31,687650.81,425039.16,324239.22,5855.3335,9848.3291,3631.1184 +3094,3815,6705,-9,6703,6704,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.91663,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1014,737575.31,687650.81,425039.16,324239.22,5855.3335,9848.3291,3631.1184 +3095,3816,6706,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,1,0,0,0,0,0,-857.8241,0,2,2,2021,22,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36,26,-9,-9,8.333333333333334,1,1,0,0,8,12,1,0,370,58470.52,13145.746,0,0,439.96304,0,1265.7189 +3096,3817,6707,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.2053285,6.0172858,0,0,-901.8028,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,4.9746947,0,27.298784,0,1,1,0,7.5990219,6.1105857,57.64,28.83,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,165,330275.59,-4215.2725,166053.36,0,0,0,1962.6287 +3097,3818,6708,6709,-9,-9,1,1,32,0,0,0,1,1,1,0,5,8.2627201,7.9369822,0,2,0,-25.535734,-9,-9,-9,2021,10,0,38,0,1,0,0,10.320448,10.320448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,54.69,57.47,8.333333333333334,1,1,0,0,4,4,5,1,962,68741.617,47489.305,200842.14,158013.91,2249.3706,1812.8748,3779.2849 +3097,3818,6709,6708,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.704196,8.5809736,0,2,0,115.57772,0,-9,-9,2021,6,0,37,37,1,0,0,14.663874,14.663874,0,0,0,0,0,0,0,0,0,0,0,7.214458,0,54.69,57.47,51.73,58.82,8.333333333333334,1,1,0,0,5,4,5,1,962,68741.617,47489.305,200842.14,158013.91,2249.3706,1812.8748,3779.2849 +3098,3819,6710,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.5652962,5.9121056,0,0,-1024.5104,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6355672,51,46,-9,-9,7,1,1,0,0,0,10,2,0,2435,650686,0,238289.31,0,0,0,993.74335 +3099,3820,6711,6712,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.6114426,8.5511742,0,12,-1,-168.1503,0,2,2,2021,13,1,37,38,1,1,0,16.639673,16.639673,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,58.7,48.27,43.11,8.333333333333334,1,1,0,0,15,5,4,1,853.5,1292707,153733.66,616451.75,282946.66,26851.521,0,1623.0581 +3099,3820,6712,6711,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,12,1,1.6914974,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.27,43.11,43.44,58.7,6.666666666666667,1,1,0,0,7,5,4,1,853.5,1292707,153733.66,616451.75,282946.66,26851.521,0,1623.0581 +3100,3821,6713,6714,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,6.3187881,6.0930843,0,8,1,-104.40145,0,3,3,2021,12,2,40,35,1,2,0,1.5133879,1.5133879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.49,44.52,50.03,52.62,6.666666666666667,1,1,0,0,9,11,3,1,471.66666,675102.44,201250.22,343354.97,0,0,0,2506.929 +3100,3821,6714,6713,-9,-9,1,1,48,0,1,0,3,3,-9,0,3,8.3855095,7.7788157,0,8,-1,124.09397,-9,-9,-9,2021,10,0,30,0,1,0,0,11.865409,11.865409,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,41.49,44.52,6.666666666666667,1,1,0,0,10,11,3,1,471.66666,675102.44,201250.22,343354.97,0,0,0,2506.929 +3100,3821,6715,-9,6713,6714,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-882.7876,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,11,3,1,471.66666,675102.44,201250.22,343354.97,0,0,0,2506.929 +3100,3822,6716,-9,6713,6714,1,1,24,0,1,0,2,2,-9,0,3,6.8887954,7.1405449,0,0,0,-1087.748,0,2,3,2021,15,2,25,25,1,2,1,4.987648,4.987648,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,5,11,2,1,358,0,0,0,0,0,0,515.27155 +3101,3823,6717,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.5202579,5.8284812,0,0,-1008.6561,0,3,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,4.5006633,0,21.420671,0,1,1,0,0,5.8563576,49.68,16.59,-9,-9,3.333333333333333,1,1,0,0,0,13,2,1,216,52729.773,98300.828,0,0,0,0,1727.2373 +3102,3824,6718,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1060.0763,0,2,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.3,28.33,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,925,193150.36,146305.34,0,0,0,0,2118.8464 +3103,3825,6719,-9,6720,6721,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.9551,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,1,475.33334,667339.13,71401.672,609775.81,68152.977,0,0,2089.2603 +3103,3825,6720,6721,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,6.4572334,6.3532786,0,14,5,-6.4296222,-9,2,3,2021,14,1,13,0,1,1,0,5.089849,5.089849,0,0,0,0,0,0,0,0,1,1,0,0,0,43,39,40.46,63.68,5,1,1,0,0,9,10,2,1,475.33334,667339.13,71401.672,609775.81,68152.977,0,0,2089.2603 +3103,3825,6721,6720,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,7.4310694,7.5187869,0,15,-5,29.819197,-9,2,2,2021,10,0,38,0,1,0,0,5.6908665,5.6908665,0,0,0,0,0,0,0,0,1,1,0,7.0437827,0,40.46,63.68,43,39,6.666666666666667,1,1,0,0,9,10,2,1,475.33334,667339.13,71401.672,609775.81,68152.977,0,0,2089.2603 +3104,3826,6722,6723,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.2900991,8.16115,0,4,0,32.512215,0,-9,-9,2021,13,1,46,44,1,1,0,9.6746778,9.6746778,.05,.05,0,0,0,0,0,0,0,0,0,4.086863,0,51.81,57.22,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,646.5,292086.56,170113.38,92760.109,60867.547,10363.117,0,3338.1465 +3104,3826,6723,6722,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4436836,8.7592287,0,4,0,83.429794,0,-9,-9,2021,7,0,38,47,1,0,0,16.039267,16.039267,0,0,0,0,0,0,0,0,0,0,0,4.1480904,0,57.16,56.15,51.81,57.22,8.333333333333334,1,1,0,0,7,6,5,1,646.5,292086.56,170113.38,92760.109,60867.547,10363.117,0,3338.1465 +3105,3827,6724,6728,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,5.6830964,5.9270773,0,8,-1,78.171432,0,2,2,2021,9,0,6,6,1,0,0,5.2279158,5.2279158,0,0,0,0,0,0,0,0,1,1,0,.34766123,0,48.81,59.91,49.12,57.28,8.333333333333334,1,1,0,0,4,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6725,-9,6724,6728,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.0522,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6726,-9,6724,6728,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1056.0226,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6727,-9,6724,6728,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.7771,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3105,3827,6728,6724,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,9.2212181,9.4491854,0,8,1,-99.519173,0,2,2,2021,8,0,37,37,1,0,0,24.636131,24.636131,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.12,57.28,48.81,59.91,8.333333333333334,1,1,0,0,9,4,4,1,1576,398117.5,339693.81,244761.19,152526.06,10781.49,0,3481.2192 +3106,3828,6729,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,7.6396656,7.9201097,0,0,0,-917.18353,0,2,3,2021,10,0,37,27,1,0,0,7.5523081,7.5523081,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.06,61.94,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,209,154834.59,-72596.734,0,0,29181.078,0,2202.1868 +3107,3829,6730,6731,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.1125069,8.1572456,0,2,0,7.5830884,0,2,2,2021,13,3,54,40,1,3,0,10.451061,10.451061,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52.65,51.64,54.77,31.94,8.333333333333334,1,1,0,0,8,10,4,0,576,558032.25,659718.31,0,0,1368.6409,12014.49,3056.4814 +3107,3829,6731,6730,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.8144727,7.8628187,0,2,0,-45.901142,0,-9,-9,2021,8,0,47,44,1,0,0,6.9090014,6.9090014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.77,31.94,52.65,51.64,10,1,1,0,0,2,10,4,0,576,558032.25,659718.31,0,0,1368.6409,12014.49,3056.4814 +3108,3830,6732,6733,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.5819902,8.2980947,0,12,3,-16.093605,-9,-9,-9,2021,9,0,40,0,1,1,0,11.871037,11.871037,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,53.39,52.35,8,1,1,0,0,1,10,4,1,827.5,1588660,1051422.8,384205.13,0,0,0,3235.269 +3108,3830,6733,6732,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.8134327,7.6246157,0,34,-3,54.546272,0,2,2,2021,13,1,30,34,1,1,0,8.7353888,8.7353888,0,0,0,0,0,0,0,2,0,0,0,0,0,53.39,52.35,52,55,8.333333333333334,1,1,0,0,12,10,4,1,827.5,1588660,1051422.8,384205.13,0,0,0,3235.269 +3109,3831,6734,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,5,6.4445128,6.6995192,5.6219807,0,0,-879.54639,0,2,1,2021,10,0,37,35,1,0,0,1.9529685,1.9529685,0,0,0,0,0,0,0,0,0,0,0,5.9673595,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,9,2,2,0,446,-136621.55,-46315.219,0,0,0,0,1073.771 +3110,3832,6735,-9,6738,6737,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.87183,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3110,3832,6736,-9,6738,6737,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6057,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3110,3832,6737,6738,-9,-9,1,1,26,1,2,0,2,2,1,0,4,7.1222429,7.2291675,0,3,-3,12.86255,-9,-9,-9,2021,9,0,40,0,1,0,0,4.0350389,4.0350389,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.95,32.97,5,1,1,0,1,4,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3110,3832,6738,6737,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,0,0,0,3,3,-70.510231,0,-9,-9,2021,8,0,0,17,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.95,32.97,54.2,57.49,8.333333333333334,1,1,1,0,8,12,2,0,835,-59496.797,0,0,0,0,0,1837.0704 +3111,3833,6739,6740,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,7.737144,7.508965,0,8,3,-3.5879555,0,2,2,2021,6,0,24,24,1,0,0,10.387655,10.387655,0,0,0,0,0,0,0,0,0,0,0,5.5561867,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,10,10,3,1,2085,459523.94,112189.23,193313.75,0,0,0,2033.6443 +3111,3833,6740,6739,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,7.3376575,7.2764835,0,8,-3,-127.36267,0,2,3,2021,8,0,40,60,1,0,0,4.6452131,4.6452131,.05,.05,0,0,0,0,0,0,0,0,0,5.2965617,0,54.79,55.86,57.06,57.76,10,1,1,0,0,10,10,3,1,2085,459523.94,112189.23,193313.75,0,0,0,2033.6443 +3112,3834,6741,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.0723968,6.4898996,0,0,-1015.2139,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4800754,54,43,-9,-9,7,1,1,0,0,0,5,2,1,1186,79212.516,21733.873,203016.05,0,0,0,850.82281 +3113,3835,6742,-9,-9,-9,1,1,24,0,0,0,1,1,0,0,5,0,0,0,0,0,-826.23999,-9,2,2,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,3,4,1,0,567,-168737.95,0,0,0,0,0,0 +3114,3836,6743,6744,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.6748419,8.6287422,0,6,-7,135.94487,0,-9,-9,2021,12,3,60,45,1,3,0,10.349458,10.349458,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.5,56.45,35.91,21.45,8.333333333333334,1,1,0,0,9,9,4,1,556,2121174,1356216,509863,0,0,0,2984.6418 +3114,3836,6744,6743,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,2.8954558,2.8057332,0,6,7,-157.90349,0,2,1,2021,22,7,50,0,1,7,0,.04171006,.04171006,0,0,0,0,0,0,0,0,1,1,0,0,0,35.91,21.45,35.5,56.45,1.666666666666667,1,1,0,0,1,9,4,1,556,2121174,1356216,509863,0,0,0,2984.6418 +3115,3837,6745,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.6468258,8.717452,0,0,0,-1127.8481,0,2,2,2021,7,0,37,35,1,0,0,17.96978,17.96978,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,11,4,5,1,199,350484.13,126030.82,185022.69,0,0,0,1844.7986 +3116,3838,6746,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.3486567,8.3920803,0,0,0,-1103.3096,0,2,1,2021,5,0,35,45,1,0,0,12.26007,12.26007,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,849,1468304.5,417529.03,735305.69,0,0,0,2204.2346 +3117,3839,6747,6748,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,46,0,-10.904632,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,130.15225,0,0,1,1,0,0,0,29.78,17.81,55.76,52.64,5,1,1,0,0,0,2,2,0,1025.5,168019.31,64646.695,138938.67,0,0,0,2003.5313 +3117,3839,6748,6747,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.6146312,6.5394926,46,0,12.614572,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6861577,55.76,52.64,29.78,17.81,8.333333333333334,1,1,0,0,6,2,2,0,1025.5,168019.31,64646.695,138938.67,0,0,0,2003.5313 +3118,3840,6749,6750,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7474861,7.5786171,0,17,-14,64.153267,0,2,2,2021,18,6,20,20,1,6,0,12.696321,12.696321,0,0,0,0,0,0,0,0,1,1,0,1.4296488,0,29.29,62.09,49.19,39.8,6.666666666666667,1,1,0,0,4,8,4,1,204.66667,194097.16,202910.22,104831.72,61637.711,3032.5562,0,3045.5967 +3118,3840,6750,6749,-9,-9,1,1,59,0,1,0,2,2,-9,0,2,7.6555471,8.5966291,7.6907897,17,14,21.577501,0,2,2,2021,17,5,40,35,1,5,0,7.092216,7.092216,.05,.05,0,0,0,0,0,0,1,1,0,0,8.1325188,49.19,39.8,29.29,62.09,3.333333333333333,1,1,0,0,5,8,4,1,204.66667,194097.16,202910.22,104831.72,61637.711,3032.5562,0,3045.5967 +3118,3840,6751,-9,6749,6750,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-907.104,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,8,4,1,204.66667,194097.16,202910.22,104831.72,61637.711,3032.5562,0,3045.5967 +3119,3841,6752,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.5438862,8.6232538,5.9808207,0,0,-949.29987,0,2,3,2021,10,1,45,55,1,1,0,20.338692,20.338692,0,0,0,0,0,0,0,0,1,1,0,6.7260184,0,39.54,64.56,-9,-9,6.666666666666667,1,1,0,1,7,7,4,0,845.66669,0,0,0,0,0,0,1878.3184 +3119,3841,6753,-9,6752,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-864.63007,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,845.66669,0,0,0,0,0,0,1878.3184 +3119,3841,6754,-9,6752,-9,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-991.16211,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,845.66669,0,0,0,0,0,0,1878.3184 +3120,3842,6755,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,5,6.7173872,6.6923862,0,0,0,-997.86694,0,3,3,2021,6,0,22,22,1,0,0,5.0365586,5.0365586,0,0,0,0,0,0,0,42,1,1,0,0,0,47.3,55.73,-9,-9,8.333333333333334,2,3,0,0,9,2,2,1,1361,44409.047,0,0,0,3561.1558,0,1814.4258 +3121,3843,6756,6757,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.1148052,8.0506029,0,5,-1,101.80318,0,-9,-9,2021,8,2,38,40,1,2,0,11.335451,11.335451,0,0,0,0,0,0,0,0,0,0,0,4.0777097,0,48.77,60.16,48.42,47.75,8.333333333333334,1,1,0,0,6,5,3,0,319.5,123066.46,0,0,0,0,0,1720.5925 +3121,3843,6757,6756,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,4.8799276,5.1850581,0,5,1,1.9591244,-9,-9,-9,2021,7,0,25,0,1,0,0,.69125378,.69125378,0,0,0,0,0,0,0,0,0,0,0,3.3133085,0,48.42,47.75,48.77,60.16,10,1,1,0,0,2,5,3,0,319.5,123066.46,0,0,0,0,0,1720.5925 +3122,3844,6758,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,6.6096148,6.7902355,0,0,0,-955.17706,0,3,1,2021,15,3,6,8,1,3,0,16.442865,16.442865,0,0,0,0,0,0,0,0,1,1,0,0,0,48.75,37.34,-9,-9,5,4,5,0,0,13,2,2,1,612,609122.19,391364.91,165613.92,0,5270.5503,0,380.10861 +3122,3845,6759,-9,6758,-9,1,0,23,0,0,0,1,1,1,0,3,0,0,0,0,0,-1029.7815,-9,1,-9,2021,22,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.86,61.44,-9,-9,3.333333333333333,4,5,1,1,0,2,1,1,765,38964.078,0,0,0,0,0,0 +3123,3846,6760,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,2,8.3165293,8.4159231,0,0,0,-997.82733,0,2,1,2021,17,5,35,24,1,5,0,11.957823,11.957823,.05,.05,0,0,0,0,0,0,0,0,0,3.0936537,0,35.98,51.24,-9,-9,3.333333333333333,1,1,0,0,13,12,5,0,340,399206.09,124851.34,244605.38,0,0,0,2487.8359 +3124,3847,6761,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8674545,8.1231108,0,0,0,-863.45459,0,-9,-9,2021,10,0,44,41,1,0,0,9.8641157,9.8641157,.05,.05,0,0,0,0,0,7,1,1,0,0,0,63.09,45.22,-9,-9,6.666666666666667,1,1,0,0,12,5,4,1,355,86218.195,43083.777,0,0,0,0,314.5314 +3125,3848,6762,6763,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,5.2490869,5.2832885,9,-2,102.91557,0,-9,-9,2021,33,11,0,0,4,11,0,0,0,0,0,0,1,0,31.325863,0,0,1,1,0,1.4612776,5.4047217,29.53,19.07,50.41,31.55,5,1,1,0,0,0,2,2,1,435,268046.16,89991.039,166608.19,0,0,0,2212.2173 +3125,3848,6763,6762,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.3338556,6.3741665,58,2,20.008739,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,1.1740003,6.6010642,50.41,31.55,29.53,19.07,5,1,1,0,0,0,2,2,1,435,268046.16,89991.039,166608.19,0,0,0,2212.2173 +3126,3849,6764,-9,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,7.7014217,7.8501263,0,0,0,-881.15497,0,3,3,2021,10,1,15,18,1,1,0,20.154148,20.154148,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.26,22.23,-9,-9,5,4,2,0,1,15,6,3,1,772,383197.69,205216.36,244915.47,3661.6326,0,0,1378.4467 +3127,3850,6765,6766,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.2728949,5.3074789,58,-2,-95.227646,0,3,3,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,42.082012,0,0,1,1,0,.84101325,4.6786313,34.94,27.47,59.72,32.15,8.333333333333334,1,1,0,1,0,11,3,1,627,517034.25,452198.25,132205.72,0,0,0,2621.8228 +3127,3850,6766,6765,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,8.0867558,8.1968822,58,2,88.835846,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.250899,0,26.837858,2,1,1,0,0,8.3692217,59.72,32.15,34.94,27.47,8.333333333333334,1,1,0,1,0,11,3,1,627,517034.25,452198.25,132205.72,0,0,0,2621.8228 +3127,3851,6767,-9,6765,6766,1,0,45,0,0,0,2,2,-9,0,4,8.3404369,8.1952658,0,0,0,-993.92328,0,3,3,2021,10,0,48,48,1,1,0,8.5334616,8.5334616,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,11,4,1,518,195532.58,59784.555,0,0,0,677.46887,1715.7496 +3128,3852,6768,6769,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.7066326,9.4614067,0,8,1,-13.478715,0,2,2,2021,9,0,52,38,1,0,0,39.470539,39.470539,.05,.05,0,0,0,0,0,0,0,0,0,4.6925044,0,58.57,40.92,51.79,40.15,5,1,1,0,0,12,9,5,1,335.5,1757188.3,1219935.8,745750.63,115744.23,0,0,6383.4561 +3128,3852,6769,6768,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,7.6868711,7.7194047,0,8,-1,-96.231506,0,3,2,2021,8,1,6,11,1,1,0,46.626656,46.626656,.05,.05,0,0,0,0,0,0,0,0,0,2.4518993,0,51.79,40.15,58.57,40.92,6.666666666666667,1,1,0,0,13,9,5,1,335.5,1757188.3,1219935.8,745750.63,115744.23,0,0,6383.4561 +3129,3853,6770,6772,-9,-9,1,1,50,1,1,0,1,1,-9,0,2,8.5514317,8.6356287,0,3,5,40.487392,0,2,1,2021,30,12,41,40,1,12,0,18.728199,18.728199,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,13.31,56.57,56.5,37.6,1.666666666666667,1,1,0,0,9,13,5,1,970,1388118.3,1037976.1,261108.55,0,0,0,4371.7017 +3129,3853,6771,-9,6772,6770,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-958.98456,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,5,1,970,1388118.3,1037976.1,261108.55,0,0,0,4371.7017 +3129,3853,6772,6770,-9,-9,1,0,45,1,1,0,1,1,-9,0,3,8.4576464,8.646595,0,3,-5,60.144638,0,-9,-9,2021,10,0,45,40,1,0,0,18.890869,18.890869,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.5,37.6,13.31,56.57,6.666666666666667,1,1,0,0,10,13,5,1,970,1388118.3,1037976.1,261108.55,0,0,0,4371.7017 +3130,3854,6773,6775,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.3621626,8.3305645,0,13,-1,25.305458,0,2,1,2021,15,6,19,17,1,6,0,26.190247,26.190247,.05,.05,0,0,0,0,0,0,1,1,0,4.7257833,0,50.77,50.99,44.3,58.08,8.333333333333334,1,1,0,0,13,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3130,3854,6774,-9,6773,6775,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.1437,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3130,3854,6775,6773,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,8.9434586,9.1009779,0,13,1,-76.927681,0,2,2,2021,9,0,37,40,1,0,0,28.129421,28.129421,.05,.05,0,0,0,0,0,0,1,1,0,4.5060325,0,44.3,58.08,50.77,50.99,8.333333333333334,1,1,0,0,14,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3130,3854,6776,-9,6773,6775,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.536,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,835.5,1007915.1,483203.91,450771.22,71045.203,0,0,4400.4331 +3131,3855,6777,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-961.63867,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9114703,0,58.13,18.26,-9,-9,6.666666666666667,1,1,0,1,1,5,2,1,276,200308.47,0,0,0,0,0,858.12152 +3132,3856,6778,-9,6779,6780,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.615,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3132,3856,6779,6780,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,6,1,6.4527946,0,2,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,50,57,6.666666666666667,1,1,0,0,0,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3132,3856,6780,6779,-9,-9,1,1,35,0,3,0,3,3,-9,0,4,8.3492956,8.5802002,0,6,-1,231.2961,0,-9,-9,2021,10,0,40,50,1,1,0,11.070134,11.070134,.05,.05,0,0,0,0,0,0,1,1,0,4.899796,0,50,57,43.2,59.97,7,1,1,0,0,1,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3132,3856,6781,-9,6779,6780,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.34711,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,775,-66412.031,36284.012,189200.28,138552.58,3395.0222,-77.404793,2509.4807 +3133,3857,6782,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,2,8.0865288,7.9203148,0,2,1,8.8037605,0,2,1,2021,21,9,20,41,1,9,0,17.290213,17.290213,0,0,0,0,0,0,0,0,0,0,0,0,0,20.98,53.07,50,57,3.333333333333333,4,2,0,0,9,12,3,1,321,43070.883,19419.75,0,0,13376.47,0,584.34827 +3134,3858,6783,6784,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,43,4,0,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,122.50443,0,0,1,1,0,0,0,24.68,21.22,36.03,40.6,1.666666666666667,2,3,0,1,0,4,1,1,1199.5,138401.77,0,0,0,0,0,1471.0227 +3134,3858,6784,6783,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,43,-4,0,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,36.03,40.6,24.68,21.22,3.333333333333333,2,3,0,1,0,4,1,1,1199.5,138401.77,0,0,0,0,0,1471.0227 +3134,3859,6785,-9,6784,6783,1,0,27,0,0,0,1,1,1,0,3,7.1154323,7.2611446,0,0,0,-982.03046,-9,3,3,2021,10,1,15,0,1,1,0,10.700191,10.700191,0,0,0,0,0,0,0,111,1,1,0,0,0,46.56,50.26,-9,-9,0,2,3,0,0,8,4,3,1,941,630.76324,0,0,0,0,0,799.25439 +3134,3860,6786,-9,6784,6783,1,0,25,0,0,0,1,1,-9,0,2,7.9983521,8.039712,0,0,0,-1072.1265,0,3,3,2021,14,4,38,37,1,4,0,8.8393154,8.8393154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.26,35.91,-9,-9,5,2,3,0,0,8,4,4,1,703,123023.55,-6305.9561,0,0,0,0,1220.3113 +3134,3861,6787,-9,6784,6783,1,0,24,0,0,1,2,0,0,0,2,0,0,0,0,0,-1045.7396,-9,3,3,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,37.66,-9,-9,5,2,3,0,0,8,4,1,1,644,263443.38,0,0,0,0,0,0 +3135,3862,6788,6789,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.4556174,7.7293839,3,4,52.295818,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1668081,41.62,36.82,57.63,56.14,6.666666666666667,1,1,0,0,4,12,3,1,1482.5,710744.88,572050.44,163759.19,0,0,0,2352.0615 +3135,3862,6789,6788,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,6.8881545,7.2741876,3,-4,76.148781,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9885631,57.63,56.14,41.62,36.82,8.333333333333334,1,1,0,0,7,12,3,1,1482.5,710744.88,572050.44,163759.19,0,0,0,2352.0615 +3136,3863,6790,-9,6792,6791,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-903.99951,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,691,568378.69,95719.18,367110.72,234455.23,0,0,5365.0479 +3136,3863,6791,6792,-9,-9,1,1,46,1,1,0,1,1,-9,0,3,9.0162582,9.3493967,0,7,11,-.1275778,0,1,2,2021,21,8,42,40,1,8,0,20.262993,20.262993,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,49.91,56.93,8.333333333333334,1,1,0,0,6,9,5,1,691,568378.69,95719.18,367110.72,234455.23,0,0,5365.0479 +3136,3863,6792,6791,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.7780781,8.7966223,0,7,-11,27.420731,0,2,2,2021,11,1,64,56,1,1,0,15.791106,15.791106,.05,.05,0,0,0,0,0,0,1,1,0,6.1848464,0,49.91,56.93,33.66,61.57,8.333333333333334,1,1,0,0,7,9,5,1,691,568378.69,95719.18,367110.72,234455.23,0,0,5365.0479 +3137,3864,6793,6794,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.654532,6.6120439,54,0,39.407829,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.044385,6.3081055,57.16,56.15,51.94,35.51,10,1,1,0,0,0,9,4,1,719.5,931352.06,599646.75,363832.09,0,0,0,6002.6533 +3137,3864,6794,6793,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.4148436,8.3886185,54,0,30.562477,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0374651,8.3776655,51.94,35.51,57.16,56.15,10,1,1,0,0,0,9,4,1,719.5,931352.06,599646.75,363832.09,0,0,0,6002.6533 +3138,3865,6795,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,5.3429723,5.4527707,0,0,-1177.6616,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.0220883,1.696957,23.610249,0,1,1,0,0,5.359674,55.08,13.78,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,487,35090.645,0,0,0,0,0,824.81403 +3139,3866,6796,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.9495525,8.145339,6.3531671,0,0,-895.00555,0,3,-9,2021,11,0,27,27,1,0,0,14.42677,14.42677,0,0,0,0,0,0,0,0,1,1,0,6.6115775,0,52.81,49.13,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,1898,8454.2988,0,0,0,582.17664,0,2166.2859 +3139,3866,6797,-9,6796,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.63483,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,1898,8454.2988,0,0,0,582.17664,0,2166.2859 +3139,3866,6798,-9,6796,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.7583,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,1898,8454.2988,0,0,0,582.17664,0,2166.2859 +3140,3867,6799,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.4088569,8.0175705,0,0,-1016.2233,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0886157,7.7146592,54.45,34,-9,-9,10,1,1,0,0,0,9,3,1,578,1795343.6,179464.72,1116815.4,0,0,0,2264.0134 +3141,3868,6800,6801,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.0284863,8.2302361,0,4,-2,-46.96965,0,-9,-9,2021,12,1,40,38,1,1,0,9.7237062,9.7237062,0,0,0,0,0,0,0,0,0,0,0,.79735297,0,51.77,58.57,57.16,56.15,10,1,1,0,0,3,10,5,1,660.5,116518.52,40900.402,157779.38,139196.06,0,0,4010.8667 +3141,3868,6801,6800,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.6618433,8.6802053,0,4,2,60.379005,0,1,2,2021,6,0,40,48,1,0,0,16.906235,16.906235,.05,.05,0,0,0,0,0,0,0,0,0,.59139758,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,8,10,5,1,660.5,116518.52,40900.402,157779.38,139196.06,0,0,4010.8667 +3142,3869,6802,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2264037,6.901608,0,0,-1008.6926,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3646331,52.83,48.43,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,273,414729,501738.72,83672.656,0,2311.9834,0,1392.3004 +3143,3870,6803,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.9138,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.9661656,0,35.06,37.97,-9,-9,10,1,1,0,0,0,7,1,1,1357,80187.711,0,0,0,0,0,446.54181 +3144,3871,6804,-9,6805,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.38544,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,2,0,625.66669,-9859.6357,-49863.395,0,0,0,0,2135.7905 +3144,3871,6805,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,2,6.1376767,6.0295649,0,0,0,-992.47229,0,3,3,2021,14,3,18,17,1,3,0,4.145021,4.145021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.44,35.14,-9,-9,1.666666666666667,4,2,0,1,3,8,2,0,625.66669,-9859.6357,-49863.395,0,0,0,0,2135.7905 +3144,3871,6806,-9,6805,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-898.84625,-9,3,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96100658,0,54.2,57.49,-9,-9,6.666666666666667,4,2,0,0,1,8,2,0,625.66669,-9859.6357,-49863.395,0,0,0,0,2135.7905 +3145,3872,6807,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8366842,8.3515759,0,0,0,-1103.9137,0,2,1,2021,10,0,36,38,1,0,0,15.052714,15.052714,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.01,58,-9,-9,8.333333333333334,3,4,0,0,11,8,5,0,2140,1153467,202645.42,774590.13,0,0,0,2546.8938 +3146,3873,6808,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.53992,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2452018,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,6,1,1,178,57987.012,0,0,0,0,0,135.46094 +3147,3874,6809,6810,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.3898134,7.7982597,0,1,-4,-74.487282,-9,2,2,2021,6,0,47,0,1,0,0,10.565319,10.565319,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.09,46.7,54.79,55.86,10,1,1,0,0,8,7,4,1,525.5,89396.117,46351.078,0,0,5313.1553,3153.9399,2952.0522 +3147,3874,6810,6809,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.0988283,7.8750105,0,1,4,49.836735,-9,-9,-9,2021,6,0,42,0,1,0,0,8.167347,8.167347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.09,46.7,8.333333333333334,1,1,0,0,3,7,4,1,525.5,89396.117,46351.078,0,0,5313.1553,3153.9399,2952.0522 +3148,3875,6811,6812,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,9,3,51.578094,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2474294,0,51,47,48.29,49.79,7,1,1,0,0,0,8,4,1,905,1781473,1006284.6,416212.59,0,0,0,3486.3369 +3148,3875,6812,6811,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.5834742,8.4953375,9,-3,-79.43959,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,9.01999,48.29,49.79,51,47,6.666666666666667,1,1,0,0,0,8,4,1,905,1781473,1006284.6,416212.59,0,0,0,3486.3369 +3148,3876,6813,6814,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7683935,9.0741749,0,2,1,51.450447,0,-9,-9,2021,10,0,50,50,1,1,0,19.448841,19.448841,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,50,57,55.09,43.45,7,4,1,0,0,1,8,5,1,554.5,124519.97,68132.852,0,0,0,0,5082.8359 +3148,3876,6814,6813,6811,6812,1,0,33,0,0,0,1,1,-9,0,3,8.7286119,8.6680956,0,2,-1,-96.783966,0,1,1,2021,9,1,45,45,1,1,0,18.116169,18.116169,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,43.45,50,57,6.666666666666667,1,1,0,0,9,8,5,1,554.5,124519.97,68132.852,0,0,0,0,5082.8359 +3149,3877,6815,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,0,0,-942.54785,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.43,35.78,-9,-9,10,1,1,0,0,3,13,1,0,115,159388.38,0,0,0,0,0,1237.6403 +3149,3878,6816,-9,6815,-9,1,0,24,0,0,0,1,1,-9,0,3,7.8902493,7.5785551,0,0,0,-1015.6432,0,2,3,2021,11,2,41,47,1,2,1,6.6692305,6.6692305,0,0,0,0,0,0,0,0,1,1,0,0,0,34.23,54.42,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,416,0,0,0,0,0,0,1639.417 +3150,3879,6817,6818,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,60,-1,20.755575,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53,45,55,45,8,1,1,0,0,0,4,2,1,1034,424027.97,111266.18,323737.5,0,0,0,572.27881 +3150,3879,6818,6817,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.1964798,6.3866467,60,1,-86.604546,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3383303,6.4865136,55,45,53,45,8,1,1,0,0,0,4,2,1,1034,424027.97,111266.18,323737.5,0,0,0,572.27881 +3151,3880,6819,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,5.2745762,5.8360276,0,0,-1004.3912,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3045678,0,23.12,54.62,-9,-9,3.333333333333333,1,1,1,1,0,4,2,0,1249,-222289.78,30011.365,0,0,-1281.8456,1067.1943,1827.1627 +3151,3880,6820,-9,6819,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-907.49646,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1249,-222289.78,30011.365,0,0,-1281.8456,1067.1943,1827.1627 +3152,3881,6821,6822,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,7,4,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,2.3987994,0,2,1,1,0,1.8270342,0,45.98,34.05,52.08,55.93,10,1,1,0,0,0,2,2,0,1266.5,235109.33,-11862.112,154245.41,0,0,0,770.28796 +3152,3881,6822,6821,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,0,0,7,-4,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,45.98,34.05,8.333333333333334,1,1,0,0,0,2,2,0,1266.5,235109.33,-11862.112,154245.41,0,0,0,770.28796 +3153,3882,6823,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.8761187,7.6791506,0,0,0,-925.6239,0,2,2,2021,11,0,35,30,1,0,0,10.714779,10.714779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,525,28879.088,-2681.4844,0,0,0,4514.353,1397.4447 +3154,3883,6824,-9,6825,-9,1,0,46,0,0,0,3,3,-9,0,4,8.0911331,8.3053703,0,0,0,-918.30286,0,3,-9,2021,10,0,37,37,1,1,0,12.122099,12.122099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,10,4,0,262,-11187.321,-82664.234,0,0,0,0,990.42291 +3154,3884,6825,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.0084953,6.1113534,0,0,-1057.9091,0,-9,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9982796,6.074811,51.23,43.7,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,262,546522,0,461641.84,0,0,0,1203.0404 +3155,3885,6826,6827,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,9,-2,-153.19647,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1957631,0,58.15,52.91,57.33,53.46,10,1,1,0,0,0,2,3,1,471,868419.25,480434.19,119692.98,0,0,0,2663.6006 +3155,3885,6827,6826,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.7439747,7.7098303,9,2,37.016632,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0454044,7.7581744,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,2,3,1,471,868419.25,480434.19,119692.98,0,0,0,2663.6006 +3156,3886,6828,-9,-9,6829,1,1,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-932.41956,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,2,2,1,2065,-154565.97,0,0,0,0,0,904.39063 +3156,3886,6829,-9,-9,-9,1,1,28,1,6,0,2,2,-9,0,2,7.6681557,7.2495832,0,0,0,-1084.694,0,3,3,2021,10,0,20,20,1,0,0,9.9854107,9.9854107,0,0,0,0,0,0,0,0,1,1,0,0,0,53.28,46.61,-9,-9,10,2,3,0,0,12,2,2,1,2065,-154565.97,0,0,0,0,0,904.39063 +3157,3887,6830,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,7.7809081,7.8732185,5.4060597,0,0,-1015.5085,0,2,1,2021,7,0,39,39,1,0,0,8.0977898,8.0977898,.05,.05,0,0,0,0,0,0,0,0,0,2.776819,5.6332631,50.34,56.4,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,245,460330.66,60026.738,186348.97,0,0,0,924.10419 +3158,3888,6831,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,8.358181,8.4201994,0,0,-1018.1552,0,-9,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4826043,8.0235004,36.6,43.07,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,1954,979541.25,183548.16,667157.81,0,0,0,2365.9653 +3159,3889,6832,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-992.15466,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,84.578598,0,0,1,0,1,0,0,38.39,40.89,-9,-9,5,1,1,0,0,0,11,1,0,414,24168.738,0,0,0,0,0,1487.7446 +3160,3890,6833,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,6.9422846,6.664875,0,0,-1060.3624,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8332796,55.62,32.44,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,384,74882.555,68640.461,41645.23,0,0,0,836.85132 +3161,3891,6834,6835,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.9169736,8.3901482,35,0,31.349417,0,2,2,2021,5,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,7.9945402,57.16,56.15,59.43,58.05,10,1,1,0,0,10,10,4,1,222.5,1491092,798132.75,393177.22,0,0,0,5161.2412 +3161,3891,6835,6834,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.685905,7.5728707,35,0,9.6116667,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.4347124,7.5174961,59.43,58.05,57.16,56.15,10,1,1,0,0,9,10,4,1,222.5,1491092,798132.75,393177.22,0,0,0,5161.2412 +3161,3892,6836,-9,6835,6834,1,1,31,0,0,0,2,2,-9,0,4,8.1761551,7.9797478,0,0,0,-1009.9109,0,1,1,2021,8,0,38,29,1,0,0,12.424313,12.424313,.05,.05,0,0,0,0,0,0,0,0,0,1.6884252,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,1095,-76989.672,75157.461,0,0,0,0,1202.2097 +3162,3893,6837,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,0,0,0,0,0,-828.68268,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.4465461,0,35.53,63.81,-9,-9,5,1,1,1,0,5,9,1,1,167,-67878.641,-5673.6924,0,0,0,354.65726,74.865898 +3163,3894,6838,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1087.5873,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,30.11,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,1223,-7383.5137,0,0,0,0,0,803.19 +3164,3895,6839,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-966.77246,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,2,13,1,1,224,-136703.78,0,0,0,0,0,645.3819 +3165,3896,6840,-9,6841,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1100.4033,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,773.5,69717.547,0,0,0,0,0,588.61853 +3165,3896,6841,-9,-9,-9,1,0,22,0,1,0,1,1,-9,0,4,0,0,0,0,0,-981.67084,0,-9,-9,2021,21,8,0,30,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.75,63.69,-9,-9,6.666666666666667,1,1,1,1,6,13,1,0,773.5,69717.547,0,0,0,0,0,588.61853 +3166,3897,6842,6845,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,7.6714792,7.3548069,0,14,0,-26.942766,-9,2,2,2021,13,1,16,0,1,1,0,14.330573,14.330573,0,0,0,0,0,0,0,0,1,1,0,0,0,38.83,62.1,57.16,56.15,6.666666666666667,4,2,0,0,10,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6843,-9,6842,6845,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.58752,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6844,-9,6842,6845,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.0087,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6845,6842,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.901535,9.2922945,0,14,0,-61.801659,0,1,1,2021,6,0,45,45,1,0,0,19.794998,19.794998,.05,.05,0,0,0,0,0,0,1,1,0,4.0129104,0,57.16,56.15,38.83,62.1,6.666666666666667,1,1,0,0,10,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3166,3897,6846,-9,6842,6845,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.0613,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,4,1,557.59998,218539.61,159190.31,266622.94,162409.92,18296.918,0,3929.5647 +3167,3898,6847,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.0188532,7.2098885,0,0,-1001.7562,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0384536,43.75,46.08,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,165,60655.758,-12279.772,0,0,0,0,1344.2504 +3168,3899,6848,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,4.6846018,5.2087245,0,0,-753.53613,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.5264356,0,0,1,1,0,5.6136718,4.9607377,53,45.74,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1320,152950.97,0,0,0,0,0,856.45111 +3169,3900,6849,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.2460032,8.2121782,5.5461931,0,0,-1007.9175,0,3,2,2021,6,0,20,16,1,0,0,23.703115,23.703115,.05,.05,0,0,0,0,0,2,0,0,0,6.2360682,0,52.97,48.43,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,559,-139940.94,13939.667,0,0,0,0,2055.6228 +3170,3901,6850,-9,6851,6852,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1046.8939,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3170,3901,6851,6852,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,9.050005,9.1786251,0,22,-7,-70.978096,0,2,2,2021,17,6,49,49,1,6,0,20.681442,20.681442,0,0,0,0,0,0,0,0,1,1,0,0,0,38,62.48,57.06,57.76,8.333333333333334,1,1,0,0,8,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3170,3901,6852,6851,-9,-9,1,1,48,0,2,0,1,1,-9,0,5,8.4538927,8.8000717,0,19,7,-48.730396,0,-9,-9,2021,10,0,41,36,1,0,0,12.778064,12.778064,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38,62.48,8.333333333333334,1,1,0,0,8,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3170,3901,6853,-9,6851,6852,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.94922,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,668.25,2925626.3,1215901.1,1500178.1,246410.09,0,0,4860.8135 +3171,3902,6854,6855,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,50,-3,76.373253,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.94,43.43,57.16,56.15,8.333333333333334,1,1,0,1,7,12,2,0,605.5,89581.398,0,155013.78,0,0,0,1290.9585 +3171,3902,6855,6854,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.607091,6.9199696,52,3,-62.382408,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0086093,57.16,56.15,57.94,43.43,6.666666666666667,1,1,0,0,7,12,2,0,605.5,89581.398,0,155013.78,0,0,0,1290.9585 +3172,3903,6856,6857,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7361073,7.4368038,51,2,59.900906,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8884497,7.2607164,60.12,54.8,54.2,57.49,8.333333333333334,1,1,0,0,0,12,2,1,2333.5,356763.88,73953.313,118984.81,0,0,0,1782.0952 +3172,3903,6857,6856,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-2,4.157352,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5239776,0,54.2,57.49,60.12,54.8,5,1,1,0,0,0,12,2,1,2333.5,356763.88,73953.313,118984.81,0,0,0,1782.0952 +3173,3904,6858,6859,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,12,1,0,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.6,14.31,34.06,33.18,0,1,1,0,0,0,2,1,0,233,88640.641,-42451.953,0,0,1346.1399,0,2369.9463 +3173,3904,6859,6858,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,12,-1,0,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.06,33.18,37.6,14.31,6.666666666666667,1,1,0,0,0,2,1,0,233,88640.641,-42451.953,0,0,1346.1399,0,2369.9463 +3174,3905,6860,6861,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.6284018,8.5852013,34,6,-40.713192,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6416292,8.7508993,55.11,37.11,57.18,47.78,8.333333333333334,1,1,0,0,0,2,4,1,920.5,2139805.5,1371916,368188.31,0,0,0,3149.457 +3174,3905,6861,6860,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.1712413,6.1283965,34,-6,1.3636872,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2239757,5.9856114,57.18,47.78,55.11,37.11,8.333333333333334,1,1,0,0,0,2,4,1,920.5,2139805.5,1371916,368188.31,0,0,0,3149.457 +3175,3906,6862,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1013.7784,0,3,-9,2021,23,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,20.78,-9,-9,10,1,1,0,0,0,10,2,0,142,81788.922,0,141110.94,56244.078,0,0,1511.5886 +3176,3907,6863,6864,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.0133781,8.9954262,0,13,3,-16.774946,0,-9,-9,2021,6,0,38,38,1,0,0,34.586269,34.586269,0,0,0,0,0,0,0,0,0,0,0,3.4731455,0,57.16,56.15,56.57,57.78,8.333333333333334,1,1,0,0,15,10,5,1,2190.5,289451.72,90215.047,311499.25,188805.88,29362.012,0,2900.6763 +3176,3907,6864,6863,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.6317239,6.7745929,0,35,-3,-156.71405,0,2,1,2021,9,0,12,10,1,0,0,7.4633617,7.4633617,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,57.16,56.15,8.333333333333334,1,1,0,0,15,10,5,1,2190.5,289451.72,90215.047,311499.25,188805.88,29362.012,0,2900.6763 +3176,3908,6865,-9,6864,6863,1,0,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-928.29114,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,244,87617.508,0,0,0,0,0,0 +3177,3909,6866,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7955322,6.4727278,0,0,-1155.7528,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2981992,6.4769692,43.37,46.41,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,420,538094.75,94172.281,127440.42,0,0,0,1004.5252 +3178,3910,6867,6869,-9,-9,1,1,39,1,1,0,2,2,-9,0,3,8.8798409,9.0017729,0,6,3,-33.922249,0,2,2,2021,11,0,40,12,1,0,0,22.437881,22.437881,.05,.05,0,0,0,0,0,0,1,1,0,4.9442472,0,41.61,48.15,47.57,57.72,6.666666666666667,1,1,0,0,11,2,5,1,692.33331,146140.39,184156.61,270018.69,145239.14,0,0,4990.6851 +3178,3910,6868,-9,6869,6867,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.2699,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,5,1,692.33331,146140.39,184156.61,270018.69,145239.14,0,0,4990.6851 +3178,3910,6869,6867,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.7501554,8.6309566,0,6,-3,68.218582,0,-9,-9,2021,12,0,30,75,1,0,0,16.071835,16.071835,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.57,57.72,41.61,48.15,8.333333333333334,1,1,0,0,5,2,5,1,692.33331,146140.39,184156.61,270018.69,145239.14,0,0,4990.6851 +3179,3911,6870,6871,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4429264,8.4567213,0,11,-1,118.62741,0,2,2,2021,10,0,46,40,1,0,0,10.183297,10.183297,.05,.05,.05,0,0,0,0,2,0,0,0,1.7823634,0,51.77,58.57,54.1,59.11,8.333333333333334,1,1,0,0,8,6,4,1,693,934845.5,480652.81,153294,19788.475,0,0,2730.6282 +3179,3911,6871,6870,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.6618323,7.7020602,0,11,1,75.157867,0,3,3,2021,12,0,28,28,1,0,0,8.6343498,8.6343498,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,54.1,59.11,51.77,58.57,8.333333333333334,1,1,0,0,9,6,4,1,693,934845.5,480652.81,153294,19788.475,0,0,2730.6282 +3179,3912,6872,-9,6871,6870,1,0,24,0,0,0,1,1,-9,0,4,8.5491352,8.6036129,0,0,0,-1051.8311,0,2,2,2021,8,0,38,38,1,0,1,14.411471,14.411471,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,3,6,5,1,533,-2520.2739,416.09665,0,0,0,0,1298.4104 +3180,3913,6873,6874,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.1305132,7.738728,34,2,-18.79697,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1975231,57.33,53.46,57.33,53.46,10,1,1,0,0,8,6,3,1,1264.5,639452.5,343424.81,175159.91,5721.2119,0,0,1735.0679 +3180,3913,6874,6873,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,34,-2,91.602509,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,57.33,53.46,57.33,53.46,10,1,1,0,0,7,6,3,1,1264.5,639452.5,343424.81,175159.91,5721.2119,0,0,1735.0679 +3181,3914,6875,6876,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.4780636,8.1568279,7,3,22.363281,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3058863,57.66,45.08,43.37,57.28,8.333333333333334,2,3,0,0,3,11,3,1,339.5,1573887.6,1041712.1,295709.59,0,0,0,2984.3125 +3181,3914,6876,6875,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.4186554,4.3147917,7,-3,153.43806,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3486242,4.3885188,43.37,57.28,57.66,45.08,8.333333333333334,1,1,0,0,0,11,3,1,339.5,1573887.6,1041712.1,295709.59,0,0,0,2984.3125 +3182,3915,6877,6878,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,53,-1,-102.88925,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8435016,0,60.84,43.45,53,47,0,1,1,0,0,9,12,4,1,983,1406862.5,1078480.6,170084.23,0,0,0,3429.2446 +3182,3915,6878,6877,-9,-9,1,1,73,0,0,0,2,2,-9,1,3,8.5993605,8.6697865,0,7,1,60.170547,0,-9,-9,2021,9,0,20,-9,1,1,0,30.322609,30.322609,.05,.05,0,0,0,0,0,0,1,1,0,4.1606722,0,53,47,60.84,43.45,8,1,1,0,0,9,12,4,1,983,1406862.5,1078480.6,170084.23,0,0,0,3429.2446 +3183,3916,6879,6880,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.287941,8.3317356,0,16,-11,-101.01814,0,3,3,2021,7,1,40,40,1,1,0,13.548228,13.548228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,40.56,49.54,8.333333333333334,2,3,0,0,8,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3183,3916,6880,6879,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,8.9908915,9.2254992,0,16,11,-133.63882,0,3,3,2021,12,0,40,45,1,0,0,24.09787,24.09787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.56,49.54,57.33,53.46,6.666666666666667,2,3,0,0,13,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3183,3916,6881,-9,6879,6880,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1014.4435,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3183,3916,6882,-9,6879,6880,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-993.69049,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,7,5,1,450.75,2177387.8,930019,1103555.3,0,0,0,5120.3691 +3184,3917,6883,-9,-9,-9,1,1,36,0,0,0,3,3,-9,1,4,0,0,0,0,0,-989.65771,0,2,1,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.19,64.09999999999999,-9,-9,8.333333333333334,4,2,0,0,0,4,1,1,320,728.80676,29206.492,0,0,-249.75056,0,1173.6404 +3185,3918,6884,6885,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,3.1726639,2.8980629,13,14,-44.875034,0,3,2,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,2.546768,77.519516,20.438044,0,1,1,0,2.4119353,2.5317895,16.04,23.99,46.06,22.27,1.666666666666667,1,1,0,0,0,5,2,1,242.5,359743.06,116638.3,0,0,0,0,1168.0984 +3185,3918,6885,6884,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,6.9245911,6.4390669,13,-14,-46.557125,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6865468,46.06,22.27,16.04,23.99,6.666666666666667,1,1,0,0,0,5,2,1,242.5,359743.06,116638.3,0,0,0,0,1168.0984 +3186,3919,6886,6887,-9,-9,1,0,39,1,1,0,1,1,-9,0,5,8.2226076,8.0757856,0,2,4,119.54456,0,1,1,2021,13,3,30,30,1,3,0,13.242785,13.242785,0,0,0,0,0,0,0,0,1,1,0,3.4680605,0,42.5,63.22,49.3,59.89,8.333333333333334,1,1,0,0,1,10,4,0,479.66666,544868.31,409438.63,270155.84,182203.41,0,0,2603.834 +3186,3919,6887,6886,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,7.4927273,7.6625972,0,2,-4,-11.348883,0,-9,-9,2021,6,0,25,30,1,0,0,11.54368,11.54368,.05,.05,0,0,0,0,0,0,1,1,0,5.6444216,0,49.3,59.89,42.5,63.22,8.333333333333334,1,1,0,0,2,10,4,0,479.66666,544868.31,409438.63,270155.84,182203.41,0,0,2603.834 +3186,3919,6888,-9,6886,6887,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.6161,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,479.66666,544868.31,409438.63,270155.84,182203.41,0,0,2603.834 +3187,3920,6889,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.7122712,7.5534697,5.7440214,0,0,-1093.1414,0,3,3,2021,8,0,40,40,1,0,0,4.5096455,4.5096455,0,0,.05,0,0,0,0,0,1,1,0,6.0055728,5.5915685,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,5,6,3,1,1214,-178655.84,111571.03,0,0,0,0,1312.9161 +3188,3921,6890,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1710491,8.2836323,0,0,0,-1047.9872,0,2,2,2021,11,1,32,29,1,1,0,12.863791,12.863791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.83,61.21,-9,-9,6.666666666666667,1,1,0,0,7,10,4,0,807,154175.52,21768.193,0,0,0,6473.0894,1321.5632 +3189,3922,6891,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.1429205,7.3438101,0,0,-911.73059,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7338667,7.4395013,49.23,55.95,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1548,393513.53,404312.13,213281.73,0,8706.918,0,3101.1606 +3190,3923,6892,-9,6893,-9,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-939.20288,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,1,0,154.5,46712.938,0,0,0,0,1272.0117,914.93134 +3190,3923,6893,-9,6895,-9,1,0,19,1,4,0,2,2,-9,1,4,0,0,0,0,0,-1011.5322,0,2,-9,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,60.1,54.82,-9,-9,10,1,1,1,0,2,5,1,0,154.5,46712.938,0,0,0,0,1272.0117,914.93134 +3190,3924,6894,6895,-9,-9,1,1,46,1,4,0,2,2,-9,0,2,8.2294626,8.2519112,0,6,11,-45.12236,0,-9,-9,2021,14,2,40,40,1,2,0,9.7373104,9.7373104,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,50.27,48.86,36.05,52.38,5,1,1,0,0,9,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6895,6894,-9,-9,1,0,35,1,4,0,2,2,-9,0,3,8.0592575,7.9149952,0,6,-11,-79.741173,0,-9,-9,2021,15,3,39,43,1,3,0,10.487554,10.487554,0,0,.05,0,0,0,0,74.5,1,1,0,0,0,36.05,52.38,50.27,48.86,6.666666666666667,1,1,0,0,5,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6896,-9,6895,-9,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-884.87714,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6897,-9,6895,-9,1,1,16,1,4,1,3,0,-9,0,2,0,0,0,0,0,-1034.0048,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,1.0109776,0,1,1,0,0,0,31.27,46.36,-9,-9,6.666666666666667,1,1,0,0,0,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3190,3924,6898,-9,6895,-9,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.9659,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,0,922.40002,191758.66,45962.887,89860.664,40306.637,22998.234,0,3830.9597 +3191,3925,6899,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,7.1355796,7.4962893,0,0,-950.13306,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.0568948,37.35,15.58,-9,-9,0,1,1,0,0,0,9,3,1,368,301103.13,-12500.301,153586.86,0,-1112.9231,0,2307.8376 +3191,3926,6900,-9,6899,-9,1,1,22,0,0,0,2,2,-9,0,5,8.3496923,8.1128244,0,0,0,-1067.0895,-9,2,2,2021,11,0,43,0,1,0,1,10.826921,10.826921,.05,.05,0,0,0,0,0,42,1,1,0,1.2901236,0,43.57,62.68,-9,-9,10,1,1,0,0,6,9,4,1,497,-18986.184,79095.234,0,0,0,0,547.06268 +3192,3927,6901,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,2,0,6.7888074,6.6002574,0,0,-1009.0795,0,2,2,2021,28,12,0,0,4,12,0,0,0,0,0,0,1,6.9885588,0,69.856346,0,1,1,0,3.476716,6.4275165,35.64,25.41,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,1285,50377.371,0,0,0,0,0,821.0918 +3193,3928,6902,6903,-9,-9,1,1,32,0,3,0,2,2,-9,0,3,8.398365,8.3263607,0,7,0,-114.51974,0,2,2,2021,11,0,45,45,1,0,0,11.572011,11.572011,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,50.25,56.54,6.666666666666667,1,1,0,0,9,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3193,3928,6903,6902,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.4894514,7.5168476,0,7,0,21.43298,0,2,-9,2021,13,1,37,28,1,1,0,4.7714252,4.7714252,0,0,0,0,0,0,0,0,1,1,0,0,0,50.25,56.54,50.57,52.35,3.333333333333333,1,1,0,0,8,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3193,3928,6904,-9,6903,6902,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5065,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3193,3928,6905,-9,6903,6902,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-896.21808,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,396,89093.18,-17352.895,49095.332,33973.848,0,0,2906.3674 +3194,3929,6906,6907,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.4163961,8.4937544,0,7,3,128.87476,0,2,2,2021,12,0,38,41,1,0,0,16.556955,16.556955,.05,.05,0,0,0,0,0,0,0,0,0,4.4919066,0,35.8,59.5,19.61,69.8,3.333333333333333,1,1,0,0,10,8,5,1,893.5,205058.84,29733.121,249628.47,135782.75,0,0,2594.2119 +3194,3929,6907,6906,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.3274431,8.22785,0,7,-3,7.7941651,0,2,3,2021,27,11,35,35,1,11,0,13.758533,13.758533,0,0,0,0,0,0,0,0,0,0,0,5.1027331,0,19.61,69.8,35.8,59.5,6.666666666666667,2,3,0,0,7,8,5,1,893.5,205058.84,29733.121,249628.47,135782.75,0,0,2594.2119 +3195,3930,6908,6909,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,8.0860577,7.5775142,0,10,-3,-82.54895,0,2,2,2021,12,0,41,76,1,0,0,8.469965,8.469965,0,0,0,0,0,0,0,0,0,0,0,.61267054,0,41.45,40.45,37.58,55.77,5,1,1,0,0,11,6,4,1,437.5,190709.27,126212.39,93515.016,46522.094,7473.0146,-99.875046,1702.9695 +3195,3930,6909,6908,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.9191022,8.0586739,0,10,3,38.70615,0,3,3,2021,12,1,38,38,1,1,0,11.168351,11.168351,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,37.58,55.77,41.45,40.45,6.666666666666667,1,1,0,0,11,6,4,1,437.5,190709.27,126212.39,93515.016,46522.094,7473.0146,-99.875046,1702.9695 +3196,3931,6910,-9,6911,6912,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.44513,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6911,6912,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,8.0293274,7.7182198,0,1,-5,-18.122122,-9,-9,-9,2021,10,1,20,0,1,1,0,17.491901,17.491901,0,0,0,0,0,0,0,0,1,1,0,0,0,53.44,32.71,62.19,33.35,8.333333333333334,1,1,0,0,0,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6912,6911,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2281733,8.2607985,5.3040266,1,5,-179.79433,0,2,2,2021,7,0,35,0,1,0,0,12.813697,12.813697,0,0,0,0,0,0,0,2,1,1,0,0,5.1093202,62.19,33.35,53.44,32.71,8.333333333333334,1,1,0,0,7,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6913,-9,6911,6912,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-882.10382,-9,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.25,30.1,-9,-9,5,1,1,1,0,0,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3196,3931,6914,-9,6911,6912,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-959.91852,0,2,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,61.62,-9,-9,3.333333333333333,1,1,0,0,1,5,4,1,1107.6,221383.34,72196.313,216137.73,128334.65,0,0,4687.2363 +3197,3932,6915,6916,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.888546,8.812685,36,-2,61.741428,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.8579407,8.7866211,53.56,49.66,49.73,44.52,8.333333333333334,1,1,0,0,11,6,5,1,296,2563908.5,1752210,701359.88,0,0,0,5219.0806 +3197,3932,6916,6915,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3225417,7.2285037,36,2,62.728268,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.564395,49.73,44.52,53.56,49.66,8.333333333333334,1,1,0,0,9,6,5,1,296,2563908.5,1752210,701359.88,0,0,0,5219.0806 +3197,3933,6917,-9,6916,6915,1,0,30,0,0,0,1,1,-9,0,3,8.7006149,8.6298342,0,0,0,-970.67719,-9,2,1,2021,16,5,40,0,1,5,0,13.366715,13.366715,.05,.05,0,0,0,0,0,0,0,0,0,5.1566916,0,39.01,56.89,-9,-9,6.666666666666667,1,1,0,0,6,6,5,1,2240,202322.48,52589.367,0,0,2826.9297,0,2186.771 +3198,3934,6918,6919,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.4994192,7.7631016,5.022748,27,-3,-19.006849,0,3,3,2021,8,0,27,45,1,0,0,6.3102722,6.3102722,0,0,0,0,0,0,0,0,1,1,0,0,5.2818604,54.61,49.13,55.69,43.19,6.666666666666667,1,1,0,0,8,12,3,1,1748,195908.7,-1234.6465,238224.69,185621.23,0,0,2709.1763 +3198,3934,6919,6918,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.5044827,7.5438709,5.5104976,27,3,3.1570559,0,3,3,2021,12,0,18,22,1,0,0,10.715987,10.715987,0,0,0,0,0,0,0,0,1,1,0,0,5.7303429,55.69,43.19,54.61,49.13,8.333333333333334,1,1,0,0,7,12,3,1,1748,195908.7,-1234.6465,238224.69,185621.23,0,0,2709.1763 +3199,3935,6920,6921,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,7.5075674,7.2495265,7,7,34.119675,0,3,3,2021,12,2,0,14,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0679436,7.4148064,52,54.51,52.99,51.28,6.666666666666667,1,1,0,0,8,11,3,1,1282.5,642134.88,131110.38,319758,0,-161.67801,2612.4819,1534.1086 +3199,3935,6921,6920,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.4206133,7.0644011,0,7,-7,-70.790344,0,3,3,2021,12,0,24,27,1,0,0,6.6455445,6.6455445,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,52,54.51,6.666666666666667,1,1,0,0,2,11,3,1,1282.5,642134.88,131110.38,319758,0,-161.67801,2612.4819,1534.1086 +3199,3936,6922,-9,6921,6920,1,0,21,0,0,0,2,2,-9,0,4,7.6574306,7.7530003,0,0,0,-1047.3983,0,3,3,2021,7,0,38,30,1,0,1,7.4011812,7.4011812,0,0,0,0,0,0,0,0,0,0,0,0,0,62.16,48.34,-9,-9,0,1,1,0,0,4,11,3,1,2077,-62713.258,0,0,0,0,0,1198.6841 +3200,3937,6923,6924,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.4279585,8.5190268,0,7,5,1.8161383,0,-9,-9,2021,10,0,45,43,1,0,0,8.7340336,8.7340336,.05,.05,0,0,0,0,0,0,0,0,0,.58436489,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,8,5,5,1,1962.5,-6377.0664,84812.766,174250.19,147022.94,8019.2441,0,3144.521 +3200,3937,6924,6923,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4664831,8.0475836,0,7,-5,98.378113,0,2,2,2021,7,0,38,40,1,0,0,12.56685,12.56685,0,0,0,0,0,0,0,0,0,0,0,2.8751006,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,9,5,5,1,1962.5,-6377.0664,84812.766,174250.19,147022.94,8019.2441,0,3144.521 +3201,3938,6925,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7206087,8.1645298,6.4803562,0,0,-873.47131,0,2,2,2021,9,0,27,35,1,0,0,13.425777,13.425777,0,0,0,0,0,0,0,0,1,1,0,7.0760951,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,695.5,-139393.52,0,0,0,0,0,2240.3408 +3201,3938,6926,-9,6925,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1015.618,-9,2,-9,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,9,3,1,695.5,-139393.52,0,0,0,0,0,2240.3408 +3201,3939,6927,-9,6925,-9,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1056.385,-9,2,-9,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.35,59.88,-9,-9,5,1,1,0,0,2,9,1,1,2421,47681.93,0,0,0,0,0,0 +3202,3940,6928,6929,-9,-9,1,0,45,0,2,0,2,2,-9,1,1,0,0,0,16,-8,0,0,2,2,2021,25,12,0,14,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.58,20.98,42.8,38.88,3.333333333333333,1,1,0,0,7,13,1,1,793.5,-37672.531,18537.352,0,0,0,0,1801.2124 +3202,3940,6929,6928,-9,-9,1,1,53,0,2,0,1,1,-9,1,2,0,0,0,6,8,0,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.8,38.88,34.58,20.98,6.666666666666667,1,1,0,0,1,13,1,1,793.5,-37672.531,18537.352,0,0,0,0,1801.2124 +3203,3941,6930,-9,6932,6931,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-886.06604,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,8,5,1,544.66669,3280477.3,1694416.8,984928.75,0,0,0,9283.5166 +3203,3941,6931,6932,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.8321018,9.7854939,0,22,0,-98.963913,0,2,1,2021,14,3,52,60,1,3,0,46.123814,46.123814,.05,.05,0,0,0,0,0,0,1,1,0,4.0323992,0,45.85,61.26,31.81,56.96,8.333333333333334,1,1,0,0,12,8,5,1,544.66669,3280477.3,1694416.8,984928.75,0,0,0,9283.5166 +3203,3941,6932,6931,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,7.8938637,8.0242643,0,22,0,-40.047356,0,2,1,2021,19,7,15,20,1,7,0,22.695379,22.695379,.05,.05,0,0,0,0,0,0,1,1,0,1.6604538,0,31.81,56.96,45.85,61.26,6.666666666666667,1,1,0,0,11,8,5,1,544.66669,3280477.3,1694416.8,984928.75,0,0,0,9283.5166 +3204,3942,6933,6934,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.9398379,6.6908102,55,4,-35.553055,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.137435,54,46,57.16,56.15,8,1,1,0,0,0,5,2,1,682.5,435447.63,254379.06,169496.34,0,0,0,1836.2842 +3204,3942,6934,6933,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,55,-4,53.615761,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.568341,0,57.16,56.15,54,46,8.333333333333334,1,1,0,0,11,5,2,1,682.5,435447.63,254379.06,169496.34,0,0,0,1836.2842 +3205,3943,6935,6938,-9,-9,1,0,32,0,3,0,2,2,-9,0,5,7.8606691,7.6609297,0,8,-4,3.1476724,0,2,3,2021,6,0,35,35,1,0,0,8.3543129,8.3543129,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.39,56.71,10,1,1,0,0,2,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6936,-9,6935,6938,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1035.8474,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6937,-9,6935,6938,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.4128,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6938,6935,-9,-9,1,1,36,0,3,0,3,3,-9,0,5,7.9394989,8.0690002,0,8,4,21.135218,0,-9,-9,2021,2,0,30,48,1,0,0,12.008494,12.008494,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,57.06,57.76,10,1,1,0,0,11,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3205,3943,6939,-9,6935,6938,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.3335,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,840.59998,74452.141,0,128561.16,83900.414,0,948.57373,2829.3691 +3206,3944,6940,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4531341,7.1805758,0,0,0,-971.41028,0,-9,-9,2021,7,1,25,25,1,1,0,7.2686429,7.2686429,.05,.05,0,0,0,0,0,0,0,0,0,4.5183272,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,5,3,1,1326,128760.12,26680.445,0,0,0,0,751.43768 +3207,3945,6941,6942,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,8.5904741,8.8178244,27,-4,32.609333,0,2,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.1681099,8.9140692,62.25,24.4,62,41.73,8.333333333333334,1,1,0,0,11,13,4,1,291,953814.13,965523.13,0,0,9418.3086,0,3880.5107 +3207,3945,6942,6941,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,7.1873822,7.4765472,0,27,4,146.74467,0,3,3,2021,8,0,25,25,1,0,0,5.4377575,5.4377575,0,0,0,0,0,0,0,0,0,0,0,0,0,62,41.73,62.25,24.4,8.333333333333334,1,1,0,0,13,13,4,1,291,953814.13,965523.13,0,0,9418.3086,0,3880.5107 +3207,3946,6943,-9,6942,6941,1,0,29,0,0,0,1,1,-9,0,3,8.157712,8.1778202,0,0,0,-1091.8174,0,3,2,2021,9,1,42,39,1,1,1,8.2105083,8.2105083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.69,51.4,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,1086,322882.81,83521.648,324749,0,0,0,1463.5709 +3207,3947,6944,-9,6942,6941,1,0,28,0,0,0,1,1,-9,0,3,7.9682026,7.884747,0,0,0,-903.79718,0,3,2,2021,9,0,37,37,1,0,1,9.1656799,9.1656799,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,716,100673.93,0,0,0,0,0,894.40338 +3208,3948,6945,-9,6946,6947,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.8938,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,1,925.66669,338397.09,356683.88,153973.67,86880.961,9880.9521,0,2933.5112 +3208,3948,6946,6947,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.6854033,7.4979525,0,8,-12,-14.872166,0,-9,-9,2021,14,2,21,40,1,2,0,13.668099,13.668099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,52.85,40.75,8.333333333333334,1,1,0,0,9,2,4,1,925.66669,338397.09,356683.88,153973.67,86880.961,9880.9521,0,2933.5112 +3208,3948,6947,6946,-9,-9,1,1,48,1,1,0,2,2,-9,0,2,7.8773813,7.8849783,0,8,12,18.76696,0,2,2,2021,5,0,40,38,1,0,0,8.977314,8.977314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.85,40.75,48.81,59.91,8.333333333333334,1,1,0,0,9,2,4,1,925.66669,338397.09,356683.88,153973.67,86880.961,9880.9521,0,2933.5112 +3209,3949,6948,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.5332999,7.542141,0,0,0,-1018.7254,0,1,1,2021,6,0,40,40,1,0,0,6.5420017,6.5420017,0,0,0,0,0,0,0,0,1,0,1,0,0,70.39,40.52,-9,-9,8.333333333333334,1,1,0,0,10,8,3,0,618,30995.502,24495.5,0,0,0,0,1384.4962 +3209,3950,6949,-9,6948,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5170155,8.3312511,0,0,0,-994.37073,0,2,-9,2021,17,6,50,0,1,6,1,15.084413,15.084413,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.41,47.83,-9,-9,5,1,1,0,0,5,8,5,0,617,46156.219,-62651.254,0,0,0,0,2517.9893 +3209,3951,6950,-9,6948,-9,1,1,22,0,0,0,2,2,-9,0,4,7.9239249,7.8668709,0,0,0,-1066.3583,0,2,-9,2021,17,6,37,0,1,6,1,8.5802059,8.5802059,.05,.05,0,0,0,0,0,0,1,0,1,0,0,25.99,63.8,-9,-9,6.666666666666667,1,1,0,0,2,8,4,0,910,-110086.45,84524.578,0,0,0,0,1657.5992 +3210,3952,6951,6952,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.1224051,8.5858212,12,2,71.829643,0,3,2,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8174577,8.1684599,56.9,49.4,54.1,59.11,8.333333333333334,1,1,0,0,8,4,5,1,1568,500211.25,138581.84,246388.56,0,0,0,3707.7698 +3210,3952,6952,6951,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.6911573,8.0361013,7.1235003,12,-2,109.02941,0,3,3,2021,12,0,16,16,1,0,0,13.151514,13.151514,.05,.05,0,0,0,0,0,0,0,0,0,5.8445163,7.0676899,54.1,59.11,56.9,49.4,8.333333333333334,1,1,0,0,13,4,5,1,1568,500211.25,138581.84,246388.56,0,0,0,3707.7698 +3211,3953,6953,-9,6954,-9,1,1,17,0,1,1,3,0,0,0,3,0,0,0,0,0,-929.40692,-9,2,-9,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,30.17,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,1066.5,-49158.781,11106.691,0,0,0,0,736.56323 +3211,3953,6954,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.685122,7.3658772,0,0,0,-1038.3969,0,3,3,2021,15,5,20,20,1,5,0,10.041286,10.041286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.99,59.6,-9,-9,8.333333333333334,3,4,0,1,12,8,2,0,1066.5,-49158.781,11106.691,0,0,0,0,736.56323 +3212,3954,6955,6956,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.3126092,7.4212461,0,39,2,52.880295,0,3,3,2021,12,0,32,36,1,0,0,5.411747,5.411747,0,0,0,0,0,0,0,7,0,0,0,7.5582714,0,58.3,52.91,45.16,51.93,8.333333333333334,1,1,0,0,9,10,3,1,375,1447191.6,448730.53,476770.63,0,0,0,1787.9585 +3212,3954,6956,6955,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.505631,7.1982985,0,39,-2,27.394955,0,3,3,2021,15,3,20,20,1,3,0,7.588634,7.588634,0,0,0,0,0,0,0,7,0,0,0,3.6290557,0,45.16,51.93,58.3,52.91,8.333333333333334,1,1,0,0,9,10,3,1,375,1447191.6,448730.53,476770.63,0,0,0,1787.9585 +3213,3955,6957,6958,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,7.9647985,7.5326347,0,8,-13,-41.118301,0,3,3,2021,6,0,39,39,1,0,0,6.6376796,6.6376796,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.84,49.01,6.666666666666667,1,1,0,0,9,12,3,1,882.5,507943.19,173695.28,258010.39,0,9718.7861,0,1541.7029 +3213,3955,6958,6957,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,0,0,8,13,-43.355068,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.84,49.01,51.14,60.45,6.666666666666667,1,1,0,0,0,12,3,1,882.5,507943.19,173695.28,258010.39,0,9718.7861,0,1541.7029 +3214,3956,6959,6960,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,6.9206271,7.1721959,0,12,-4,-.68198246,0,3,-9,2021,12,0,8,8,1,2,0,18.230864,18.230864,0,0,0,0,0,0,0,0,0,0,0,0,0,47,50,53,55,1.666666666666667,3,4,0,0,5,8,4,0,2006.5,297247.97,0,402131.75,132320.66,0,0,2446.9951 +3214,3956,6960,6959,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2923479,8.1599445,0,12,4,-39.99958,0,-9,-9,2021,9,0,40,40,1,1,0,14.837955,14.837955,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,47,50,8,1,1,0,0,9,8,4,0,2006.5,297247.97,0,402131.75,132320.66,0,0,2446.9951 +3214,3957,6961,-9,6959,6960,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-989.69995,-9,2,2,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.124272,0,31.99,57.05,-9,-9,5,3,4,0,0,0,8,1,0,327,42748.652,0,0,0,0,0,-137.86916 +3215,3958,6962,6963,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.0487547,6.2775712,10,-1,.94444448,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.402328,0,57.16,56.15,41.05,36.2,6.666666666666667,1,1,0,0,0,2,2,1,2277.5,439223.19,223655.45,150408.23,0,0,0,2037.4241 +3215,3958,6963,6962,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.7872961,3.98844,10,1,-32.762276,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.935967,3.8733442,41.05,36.2,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,2277.5,439223.19,223655.45,150408.23,0,0,0,2037.4241 +3216,3959,6964,6965,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.4290838,8.0172958,0,6,1,-88.746658,0,-9,-9,2021,6,0,50,48,1,0,0,8.8579063,8.8579063,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.58,46.27,8.333333333333334,1,1,0,0,8,9,4,1,901.66669,495011.13,144050.7,277197.94,118206.85,0,0,2977.3135 +3216,3959,6965,6964,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.3839865,7.0789566,0,6,-1,2.125298,0,2,1,2021,10,3,34,35,1,3,0,4.5216651,4.5216651,0,0,0,0,0,0,0,0,1,1,0,0,0,43.58,46.27,57.33,53.46,8.333333333333334,1,1,0,0,8,9,4,1,901.66669,495011.13,144050.7,277197.94,118206.85,0,0,2977.3135 +3216,3959,6966,-9,6965,6964,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-821.66815,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,9,4,1,901.66669,495011.13,144050.7,277197.94,118206.85,0,0,2977.3135 +3217,3960,6967,6968,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.8614645,9.1360521,0,1,0,19.598082,-9,2,3,2021,6,0,48,0,1,0,0,25.339058,25.339058,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.32,48.68,41.56,53.97,6.666666666666667,1,1,0,0,11,6,5,1,2441.5,611428.5,103330.41,159832.34,91453.766,22725.902,23393.332,4854.8662 +3217,3960,6968,6967,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.3131809,8.2922096,0,1,0,35.80402,-9,-9,-9,2021,13,1,44,0,1,1,0,10.018127,10.018127,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.56,53.97,56.32,48.68,6.666666666666667,1,1,0,0,3,6,5,1,2441.5,611428.5,103330.41,159832.34,91453.766,22725.902,23393.332,4854.8662 +3218,3961,6969,6970,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5250435,8.6380253,0,34,2,22.255678,0,2,3,2021,11,0,10,10,1,0,0,54.646988,54.646988,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.94,53.79,8.333333333333334,1,1,0,0,15,5,5,1,1045.5,2733806.5,2306927.5,294500.63,16971.539,0,0,4778.8213 +3218,3961,6970,6969,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.4650717,8.7257452,0,33,-2,15.11983,0,2,2,2021,8,0,39,39,1,0,0,18.077799,18.077799,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.94,53.79,52,54.51,8.333333333333334,1,1,0,0,15,5,5,1,1045.5,2733806.5,2306927.5,294500.63,16971.539,0,0,4778.8213 +3219,3962,6971,6972,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.1113873,7.8697367,0,12,-3,6.8484139,0,2,1,2021,8,0,38,37,1,0,0,8.6992674,8.6992674,.05,.05,0,0,0,0,0,0,0,0,0,7.052124,0,55.19,54.26,45.56,60.26,10,1,1,0,0,13,10,4,1,1708,1083367.1,858794.31,430183.59,128815.5,0,0,3212.9722 +3219,3962,6972,6971,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.8822155,7.968071,0,12,3,71.761765,0,2,1,2021,12,0,38,38,1,0,0,8.6046438,8.6046438,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,55.19,54.26,8.333333333333334,1,1,0,0,13,10,4,1,1708,1083367.1,858794.31,430183.59,128815.5,0,0,3212.9722 +3220,3963,6973,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.1986465,8.3702965,5.0228653,0,0,-933.3161,0,2,2,2021,11,1,37,33,1,1,0,11.292083,11.292083,0,0,0,0,0,0,0,0,1,1,0,5.6499834,0,55.21,40.64,-9,-9,6.666666666666667,1,1,0,0,10,9,4,1,608,438239,-10330.729,337795.75,-9589.1113,15871.666,0,1866.7117 +3220,3963,6974,-9,6973,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.64777,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,608,438239,-10330.729,337795.75,-9589.1113,15871.666,0,1866.7117 +3220,3964,6975,-9,6973,-9,1,1,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1036.9469,1,1,-9,2021,9,0,0,7,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,151,86234.195,0,0,0,0,0,566.89172 +3221,3965,6976,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.8562469,9.3043928,0,0,0,-1021.9572,0,-9,-9,2021,12,2,35,40,1,2,0,21.991507,21.991507,0,0,.05,0,0,0,0,0,1,1,0,6.8152738,0,40.95,63.66,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,1441.5,194665.03,-2497.3369,0,0,0,1991.8877,3453.9111 +3221,3965,6977,-9,6976,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1124.3623,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,1441.5,194665.03,-2497.3369,0,0,0,1991.8877,3453.9111 +3222,3966,6978,-9,6982,6979,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1062.5994,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6979,6982,-9,-9,1,1,58,0,3,0,2,2,-9,0,3,7.8536892,7.868731,0,10,14,-159.04675,0,3,3,2021,10,0,45,40,1,1,0,5.6383963,5.6383963,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,53.14,39.39,7,2,3,0,0,1,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6980,-9,6982,6979,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.39325,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6981,-9,6982,6979,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-875.89014,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,46.28,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6982,6979,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,0,0,0,10,-14,-22.868113,0,1,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,39.39,51,49,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6983,-9,6982,6979,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1031.4407,-9,1,2,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.39,65.88,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3222,3966,6984,-9,6982,6979,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1021.459,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,8,2,1,336.71429,81474.453,0,211529.38,162839.47,0,2513.2346,1660.6891 +3223,3967,6985,6986,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,4.7839665,4.9880838,46,0,18.180365,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0721412,5.0062194,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,0,10,4,1,291,1117525.3,669161.75,401826.22,0,1549.2065,0,3202.9463 +3223,3967,6986,6985,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.6939507,8.6226244,46,0,-60.378258,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1041236,8.4511528,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,3,10,4,1,291,1117525.3,669161.75,401826.22,0,1549.2065,0,3202.9463 +3224,3968,6987,6988,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,39,-4,-58.29623,0,2,3,2021,14,2,0,50,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.88,51.26,54.37,54.8,8.333333333333334,1,1,0,0,7,9,5,1,356.5,3375903,2724181.5,631746.44,0,0,0,3665.0151 +3224,3968,6988,6987,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.7716703,8.9346733,7.097002,39,4,47.948719,0,3,2,2021,6,0,30,20,1,0,0,24.311737,24.311737,0,0,0,0,0,0,0,0,0,0,0,0,7.4439545,54.37,54.8,38.88,51.26,8.333333333333334,1,1,0,0,7,9,5,1,356.5,3375903,2724181.5,631746.44,0,0,0,3665.0151 +3225,3969,6989,-9,-9,6990,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.01715,-9,-9,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,1,1922,451880.56,16627.928,95233.359,56538.281,0,0,1369.0306 +3225,3969,6990,-9,-9,-9,1,1,49,0,1,0,3,3,-9,1,4,6.9264741,6.9661646,0,0,0,-956.59668,0,-9,-9,2021,9,0,16,16,1,0,0,7.3176289,7.3176289,0,0,0,0,0,0,0,42,1,1,0,0,0,53.38,52.22,-9,-9,10,1,1,0,0,10,5,2,1,1922,451880.56,16627.928,95233.359,56538.281,0,0,1369.0306 +3226,3970,6991,-9,6992,6993,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.1633,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3226,3970,6992,6993,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,0,0,0,1,2,67.215729,-9,3,3,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.7549381,0,44.81,55.02,48,51,8.333333333333334,1,1,0,0,0,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3226,3970,6993,6992,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,9.5529823,9.96803,0,1,-2,27.638382,-9,1,1,2021,11,0,50,0,1,2,0,37.106155,37.106155,.05,.05,0,0,0,0,0,0,0,0,0,5.0881467,0,48,51,44.81,55.02,7,1,1,0,0,1,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3226,3970,6994,-9,6992,6993,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.05103,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,898.25,267286.44,255011.05,203940.33,89366.031,8235.1318,605.88715,9045.2754 +3227,3971,6995,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9724827,8.2220879,0,0,0,-1000.3455,0,3,3,2021,14,3,36,36,1,3,0,7.4194388,7.4194388,.05,.05,0,0,0,0,0,7,0,0,0,1.3104974,0,51.02,52.22,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,2929,145396.69,-17654.91,0,0,0,0,945.50928 +3228,3972,6996,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,5.4316425,6.6910453,6.4326921,0,0,-1129.4144,0,3,2,2021,10,1,5,25,1,1,0,6.2459626,6.2459626,0,0,0,1,0,0,0,14.5,1,1,0,2.677675,6.2703824,50.68,48.16,-9,-9,8.333333333333334,1,1,0,0,7,11,2,1,2057,309643.28,130575.7,177284.45,0,0,0,1357.4236 +3229,3973,6997,6998,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,7.9209938,7.4421177,0,7,4,3.0315037,-9,2,2,2021,6,0,35,0,1,0,0,6.4750071,6.4750071,.05,.05,0,0,0,0,0,0,0,0,0,4.8119802,0,54.45,56.22,52.6,50.15,8.333333333333334,1,1,0,0,9,10,4,1,1276,1825514.8,867769.56,589456.19,0,0,0,2205.9939 +3229,3973,6998,6997,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.1279173,8.2160225,0,7,-4,-68.216049,-9,1,1,2021,12,0,35,0,1,0,0,7.5135307,7.5135307,0,0,0,0,0,0,0,0,0,0,0,4.0706673,0,52.6,50.15,54.45,56.22,8.333333333333334,1,1,0,0,10,10,4,1,1276,1825514.8,867769.56,589456.19,0,0,0,2205.9939 +3230,3974,6999,7000,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.4343748,8.5006981,0,8,-1,69.713242,0,3,3,2021,24,10,20,12,1,10,0,34.934776,34.934776,0,0,0,0,0,0,0,0,0,0,0,1.6711074,0,25.43,37.06,45.97,53.8,1.666666666666667,1,1,0,1,8,9,5,1,1729,503863.19,328090.44,0,0,10692.361,0,5089.6289 +3230,3974,7000,6999,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,8.8237915,9.0415468,0,8,1,-78.731552,0,2,3,2021,12,0,44,12,1,0,0,17.683134,17.683134,.05,.05,0,0,0,0,0,0,0,0,0,.80495149,0,45.97,53.8,25.43,37.06,3.333333333333333,1,1,0,0,9,9,5,1,1729,503863.19,328090.44,0,0,10692.361,0,5089.6289 +3231,3975,7001,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,1,0,7.0633183,6.6160431,0,0,-1043.2156,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6993923,0,37.6,14.31,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,379,662473.13,176566.28,58416.34,0,0,0,967.77722 +3232,3976,7002,7003,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.83214,7.8451753,9,-2,51.715885,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,.38438174,0,7,1,1,0,6.7250924,7.5988345,58.15,52.91,57.06,57.76,10,1,1,0,0,0,12,3,1,235,495119.81,402069.19,57720.297,0,0,0,3191.7673 +3232,3976,7003,7002,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,7.5464907,7.3311973,50,2,87.331322,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9566808,6.48593,57.06,57.76,58.15,52.91,10,1,1,0,0,10,12,3,1,235,495119.81,402069.19,57720.297,0,0,0,3191.7673 +3233,3977,7004,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.542613,8.6700869,0,0,0,-1008.382,0,2,2,2021,6,0,39,39,1,0,0,11.676128,11.676128,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,59.7,53.75,-9,-9,10,1,1,0,0,15,5,4,1,537,442904.09,57366.098,218850.03,0,0,0,1117.9468 +3234,3978,7005,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,2,5.7564025,7.0450597,6.8532338,0,0,-997.46216,0,1,2,2021,6,0,19,20,1,0,0,2.2038567,2.2038567,0,0,0,0,0,0,0,0,1,1,0,6.8168526,0,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,12,4,2,1,1409,-169819.95,-35948.078,0,0,0,0,1213.7601 +3234,3979,7006,-9,7005,-9,1,1,18,0,1,1,2,0,0,0,4,0,1.8483138,2.1547449,0,0,-1097.8774,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1125104,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,1,0,4,2,1,3172,146861.69,0,0,0,0,0,-756.4801 +3235,3980,7007,7009,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.7444673,7.8629999,0,12,-16,4.3226318,0,3,3,2021,9,0,36,36,1,0,0,6.0939555,6.0939555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.85,54.91,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,644.66669,1053370.3,641567.69,418974.97,89565.961,4579.2998,0,2657.1829 +3235,3980,7008,-9,7007,7009,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.8286,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,644.66669,1053370.3,641567.69,418974.97,89565.961,4579.2998,0,2657.1829 +3235,3980,7009,7007,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.846179,8.6039715,0,8,16,-23.850191,0,-9,-9,2021,9,0,50,47,1,0,0,15.379517,15.379517,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.85,54.91,10,1,1,0,0,10,2,4,1,644.66669,1053370.3,641567.69,418974.97,89565.961,4579.2998,0,2657.1829 +3236,3981,7010,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1037.7869,0,2,2,2021,1,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0180902,0,57.06,57.76,-9,-9,10,1,1,1,0,9,2,1,1,202,259239.16,422757.53,0,0,0,0,-637.17938 +3237,3982,7011,7012,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,9.053894,9.0365019,0,9,-13,37.279144,0,3,3,2021,22,10,46,45,1,10,0,23.909254,23.909254,0,0,0,0,0,0,0,0,1,1,0,3.8521361,0,52.07,27.6,36.37,60.23,3.333333333333333,1,1,0,0,10,12,5,1,333.5,1626726.6,689425.5,346303.44,0,0,0,5083.5146 +3237,3982,7012,7011,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.6589842,8.0662384,9,13,-86.120712,0,2,1,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,5.7272115,7.7357016,36.37,60.23,52.07,27.6,8.333333333333334,1,1,0,0,2,12,5,1,333.5,1626726.6,689425.5,346303.44,0,0,0,5083.5146 +3238,3983,7013,7014,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,43,-2,-66.24527,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9484658,0,55.79,52.62,57.16,56.15,8.333333333333334,1,1,0,0,0,9,5,1,296,1302334.8,918904.5,558540.63,260681.75,0,0,5882.1133 +3238,3983,7014,7013,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,9.0346918,9.4054146,8.3422117,43,2,12.548139,0,2,2,2021,7,0,60,0,1,0,0,16.346334,16.346334,0,0,0,0,0,0,0,0,0,0,0,8.3188295,8.4287796,57.16,56.15,55.79,52.62,8.333333333333334,1,1,0,0,11,9,5,1,296,1302334.8,918904.5,558540.63,260681.75,0,0,5882.1133 +3239,3984,7015,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.3462243,7.5188065,0,0,0,-1122.2926,0,1,3,2021,6,1,30,30,1,1,0,8.8934631,8.8934631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.18,47.78,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,708,306296.31,9914.6162,121290.44,38355.875,0,0,1578.4078 +3240,3985,7016,-9,7017,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.81354,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3488638,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3240,3985,7017,-9,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,8.6512585,8.6477833,0,0,0,-1062.7648,0,2,2,2021,7,0,30,30,1,0,0,22.135397,22.135397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3240,3985,7018,-9,7017,-9,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-981.81299,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,44.63,-9,-9,8.333333333333334,1,1,0,1,0,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3240,3985,7019,-9,7017,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.676,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,637.25,-60661.586,-8699.4063,0,0,0,0,3687.2898 +3241,3986,7020,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.4668913,6.1531439,0,0,-1088.8092,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3685966,6.0334635,41.09,46.12,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,682,433492.34,156745,55897.039,0,0,0,693.08557 +3242,3987,7021,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,9.4040489,9.5820656,0,0,-1008.1951,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.1857452,9.2737837,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,450,1124807.3,491685.69,398099.53,0,0,0,6347.9272 +3243,3988,7022,7023,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.23489,5.8987541,6,0,43.231987,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8050568,0,14.5,1,1,0,0,6.2669783,56.85,37.23,55,45,8.333333333333334,1,1,0,0,0,11,2,1,740.5,333409.72,115437.22,167042.69,0,0,0,1876.3234 +3243,3988,7023,7022,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,6.5614347,6.0094762,6,9,43.667091,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,8.9178209,10.844586,66.562805,0,1,1,0,0,6.4655118,55,45,56.85,37.23,8,1,1,0,0,0,11,2,1,740.5,333409.72,115437.22,167042.69,0,0,0,1876.3234 +3244,3989,7024,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1006.6834,0,3,2,2021,34,12,0,26,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,24.33,31.08,-9,-9,3.333333333333333,1,1,0,1,7,11,1,1,307,50887.648,0,0,0,0,690.8681,888.69818 +3244,3990,7025,-9,7024,-9,1,0,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-908.0755,0,2,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86252522,0,46,58,-9,-9,7,1,1,0,0,0,11,1,1,300,-42088.734,0,0,0,0,0,443.67596 +3245,3991,7026,7027,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.4950719,7.6532335,0,15,-5,61.784225,0,3,3,2021,12,0,39,47,1,0,0,6.9894891,6.9894891,0,0,0,0,0,0,0,7,1,1,0,0,0,50.59,16.2,58.88,9.540000000000001,6.666666666666667,1,1,0,0,9,2,3,0,554,196946.03,263479.63,0,0,0,0,1882.4138 +3245,3991,7027,7026,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,15,5,19.519295,0,3,3,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.88,9.540000000000001,50.59,16.2,1.666666666666667,1,1,0,0,1,2,3,0,554,196946.03,263479.63,0,0,0,0,1882.4138 +3245,3992,7028,-9,7026,7027,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1066.802,0,3,2,2021,22,10,0,10,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,35.32,-9,-9,8.333333333333334,1,1,1,0,1,2,1,0,550,-119115.69,0,0,0,1920.6206,1971.3685,735.96716 +3246,3993,7029,7030,-9,-9,1,0,30,0,1,0,2,2,-9,0,4,6.6563377,7.1054578,0,6,-7,-147.02847,0,2,2,2021,11,0,24,20,1,2,0,4.595243,4.595243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,51,56,7,1,1,0,1,2,7,4,0,374.66666,116431.57,39323.445,0,0,0,1445.8469,3362.197 +3246,3993,7030,7029,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.8362904,9.2135592,0,6,7,68.249886,-9,-9,-9,2021,10,0,48,0,1,1,0,14.997604,14.997604,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,48,56,7,1,1,0,0,5,7,4,0,374.66666,116431.57,39323.445,0,0,0,1445.8469,3362.197 +3246,3993,7031,-9,7029,7030,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.95831,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,0,374.66666,116431.57,39323.445,0,0,0,1445.8469,3362.197 +3247,3994,7032,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.81299,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9625635,0,0,1,1,0,0,0,69.10000000000001,24.72,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,939,-81678.445,0,0,0,3616.8411,0,1288.5031 +3248,3995,7033,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,11.482454,11.375475,0,0,0,-994.33502,0,2,2,2021,7,1,55,10,1,1,0,213.67256,213.67256,.05,.05,0,0,0,0,0,0,0,0,0,6.3646584,0,47.32,52.7,-9,-9,10,2,3,0,0,9,5,5,1,606,-1348.6193,97610.648,0,0,0,0,51382.098 +3249,3996,7034,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.6849031,6.2897582,0,0,-1058.6066,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5082674,51,46,-9,-9,7,2,3,0,0,0,6,2,1,1382,352626.63,131535.38,0,0,0,0,-18.284153 +3249,3997,7035,7036,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,4,-2,-20.729332,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,49.46,56.91,7,2,3,0,0,0,6,4,1,277.5,-5405.4487,151000,0,0,24767.584,6849.8408,2559.5259 +3249,3997,7036,7035,7034,-9,1,1,29,0,0,0,1,1,-9,0,4,8.3816996,8.6170044,0,4,2,-44.690544,0,3,2,2021,7,0,38,38,1,0,0,17.620052,17.620052,.05,.05,0,0,0,0,0,2,1,1,0,7.5512347,0,49.46,56.91,47,57,5,2,3,0,0,5,6,4,1,277.5,-5405.4487,151000,0,0,24767.584,6849.8408,2559.5259 +3249,3998,7037,-9,7034,-9,1,1,25,0,0,0,1,1,-9,0,4,7.3575501,7.2737546,0,0,0,-981.4809,0,3,-9,2021,10,0,25,25,1,1,0,8.671546,8.671546,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,411,114409.99,0,0,0,15271.667,0,1115.0851 +3250,3999,7038,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.9268785,8.2919569,0,0,0,-1065.7336,0,3,2,2021,12,1,40,45,1,1,0,8.9432936,8.9432936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,3.333333333333333,1,1,0,0,11,12,4,1,1260,91177.984,99956.563,0,0,0,0,947.00092 +3251,4000,7039,7040,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.6718826,8.3027391,0,28,7,43.485332,0,-9,-9,2021,13,2,45,42,1,2,0,12.509093,12.509093,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,55.18,43.89,44.44,51.2,3.333333333333333,1,1,0,0,9,9,5,1,596.5,694861.88,202484.45,784749,224321.47,30332.539,0,3704.6558 +3251,4000,7040,7039,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,8.179863,8.3722696,0,28,-7,14.08341,0,2,2,2021,10,0,37,37,1,0,0,13.026151,13.026151,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.44,51.2,55.18,43.89,6.666666666666667,1,1,0,0,9,9,5,1,596.5,694861.88,202484.45,784749,224321.47,30332.539,0,3704.6558 +3252,4001,7041,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8161249,8.4813433,0,0,0,-1151.2278,0,3,3,2021,12,0,40,43,1,0,0,14.746882,14.746882,.05,.05,0,0,0,0,0,2,0,0,0,0,0,34.57,58.32,-9,-9,6.666666666666667,1,1,0,0,12,13,5,1,1327,310480.19,118050.28,166052.14,127154.79,0,0,1807.2263 +3253,4002,7042,7043,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,2.6046739,2.4894989,6,9,-50.045673,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,26.316404,0,0,1,1,0,2.6471751,2.8202636,46.26,22.19,49.11,41.74,8.333333333333334,2,3,0,0,0,2,2,0,758,-113883.49,0,0,0,0,0,2447.2966 +3253,4002,7043,7042,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,6,0,28.943224,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,49.11,41.74,46.26,22.19,8.333333333333334,2,3,0,0,0,2,2,0,758,-113883.49,0,0,0,0,0,2447.2966 +3254,4003,7044,-9,7047,7045,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.6781,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3254,4003,7045,7047,-9,-9,1,1,35,0,2,0,2,2,-9,0,3,8.8406744,9.0362968,0,10,0,42.300709,0,2,3,2021,12,0,40,47,1,0,0,16.86212,16.86212,.05,.05,0,0,0,0,0,0,1,1,0,6.6744533,0,35.31,54.01,41.23,58.08,3.333333333333333,1,1,0,0,13,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3254,4003,7046,-9,7047,7045,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-849.06921,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3254,4003,7047,7045,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.1617708,7.1675773,0,10,0,90.479317,0,2,2,2021,10,1,30,18,1,1,0,5.1156535,5.1156535,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.23,58.08,35.31,54.01,8.333333333333334,1,1,0,0,9,6,4,1,561,53653.695,44636.227,190345.22,109463.95,0,2994.8977,3279.7996 +3255,4004,7048,7049,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,6.8105321,6.7583199,0,36,1,-91.360649,0,3,3,2021,36,12,15,15,1,12,0,7.7766695,7.7766695,0,0,0,0,0,0,0,2,1,1,0,0,0,38.56,45.76,42.86,49.95,3.333333333333333,1,1,0,1,2,10,2,0,697,-60052.598,0,0,0,0,0,352.461 +3255,4004,7049,7048,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,0,0,0,36,-1,117.98943,0,-9,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,42.86,49.95,38.56,45.76,5,1,1,1,1,0,10,2,0,697,-60052.598,0,0,0,0,0,352.461 +3255,4005,7050,-9,7049,7048,1,0,25,0,0,0,2,2,-9,0,4,7.6824417,7.3515992,0,0,0,-1043.8778,0,3,3,2021,7,1,35,0,1,1,1,7.1860113,7.1860113,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,1,10,3,0,781,107447.44,24157.762,0,0,0,0,1160.403 +3256,4006,7051,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.0398641,6.0096197,0,0,-1032.3304,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8462467,58.22,30.23,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,1377,103477.65,0,106499.52,0,0,0,1218.332 +3257,4007,7052,7053,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.7376089,7.7586951,48,2,-36.767132,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8427267,7.9784846,54.2,57.49,55.34,54.26,8.333333333333334,1,1,0,0,11,4,3,1,377,1058602.3,492508.44,376962.69,0,0,0,3609.6719 +3257,4007,7053,7052,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.706244,6.9354901,48,-2,3.0025377,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8232889,55.34,54.26,54.2,57.49,10,1,1,0,0,4,4,3,1,377,1058602.3,492508.44,376962.69,0,0,0,3609.6719 +3258,4008,7054,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,8.3411055,8.2973166,0,0,-1056.1479,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3979385,8.0069895,55.41,36.28,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,894,880510.38,312800.66,288881.59,0,0,-161.33185,2957.6362 +3259,4009,7055,-9,7056,7057,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-993.15784,0,3,2,2021,25,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.49,43.99,-9,-9,1.666666666666667,2,3,0,0,2,8,1,1,485,-14555.271,67762.203,0,0,0,0,0 +3259,4010,7056,7057,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.2123117,7.0274906,0,40,-8,91.097382,0,3,3,2021,12,0,16,15,1,0,0,8.7780399,8.7780399,0,0,0,0,0,0,0,0,1,1,0,2.4598718,0,36.18,48.3,38.16,44.66,6.666666666666667,1,1,0,0,11,8,2,1,598,489377.31,194134.67,208514.44,0,0,0,883.23151 +3259,4010,7057,7056,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,0,0,11,8,-21.897562,0,-9,-9,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,3.3357069,0,26.511686,14.5,1,1,0,3.3438084,0,38.16,44.66,36.18,48.3,5,1,1,0,0,12,8,2,1,598,489377.31,194134.67,208514.44,0,0,0,883.23151 +3260,4011,7058,7059,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.7357378,8.3978119,0,25,-4,2.0766523,0,2,2,2021,6,1,24,55,1,1,0,30.60602,30.60602,.05,.05,0,0,0,0,0,102,1,1,0,0,0,54.14,58.86,33.83,57.61,8.333333333333334,1,1,0,0,10,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3260,4011,7059,7058,-9,-9,1,0,44,0,2,0,2,2,-9,1,3,7.920249,7.7983756,0,25,4,117.86967,0,1,1,2021,12,0,17,17,1,0,0,15.318863,15.318863,0,0,0,0,0,0,0,109,1,1,0,0,0,33.83,57.61,54.14,58.86,6.666666666666667,1,1,0,0,9,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3260,4011,7060,-9,7059,7058,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.6034,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3260,4011,7061,-9,7059,7058,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.8133,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,527.5,266140.72,190316.94,0,0,11479.938,0,3900.8975 +3261,4012,7062,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.9948673,8.2477646,0,0,0,-1076.5862,0,2,2,2021,25,11,37,37,1,11,0,7.7846909,7.7846909,.05,.05,.05,0,0,0,0,7,0,0,0,.18789679,0,40.41,33.07,-9,-9,3.333333333333333,1,1,0,0,9,12,3,0,730,126294.93,10924.947,0,0,1004.4858,0,1009.7669 +3262,4013,7063,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.7920313,9.6933947,0,2,30,-29.982653,0,-9,3,2021,15,3,40,40,1,3,0,62.921814,62.921814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,51.73,58.82,3.333333333333333,1,1,0,0,11,9,5,1,675,406123.06,109846.89,281885.22,112715.56,0,0,7871.5215 +3262,4014,7064,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.8417759,8.3935671,0,2,-30,-35.183033,0,-9,-9,2021,10,0,28,40,1,1,0,25.223667,25.223667,.05,.05,0,0,0,0,0,0,0,0,0,2.6619358,0,51.73,58.82,45.91,59.89,8.333333333333334,1,1,0,0,2,9,5,1,46,-19295.742,48562.039,0,0,0,0,1721.2374 +3263,4015,7065,-9,-9,7069,1,1,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-927.86932,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7066,7069,-9,-9,1,0,36,0,4,0,2,2,-9,0,1,0,5.963901,6.1027484,8,-6,74.119972,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.3163495,0,36.26,51.68,43.12,58.55,8.333333333333334,1,1,0,1,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7067,-9,7066,7069,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-836.35583,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7068,-9,7066,7069,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-887.4325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7069,7066,-9,-9,1,1,42,0,4,0,2,2,-9,0,3,8.6634359,8.8729277,5.3647351,8,6,26.126041,0,2,2,2021,6,0,40,40,1,0,0,21.1882,21.1882,.05,.05,.05,0,0,0,0,7,1,1,0,5.4733744,0,43.12,58.55,36.26,51.68,5,1,1,0,0,10,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3263,4015,7070,-9,-9,7069,1,0,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1016.4445,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,10,4,1,591.83331,207098.95,78477.172,224870.66,39276.547,962.65839,0,3464.5867 +3264,4016,7071,-9,7074,7073,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.3955,-9,1,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3264,4016,7072,-9,7074,7073,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.2469,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3264,4016,7073,7074,-9,-9,1,1,52,0,2,0,3,3,-9,0,4,7.4392133,7.5347571,0,8,5,80.715599,-9,-9,-9,2021,9,0,38,0,1,1,0,4.9054422,4.9054422,0,0,0,0,0,0,0,0,1,1,0,2.6757991,0,53,54,43.71,56.91,8,1,1,0,0,1,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3264,4016,7074,7073,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,6.7897534,6.9618769,0,8,-5,173.24504,0,2,2,2021,10,0,12,18,1,0,0,9.0758123,9.0758123,0,0,0,0,0,0,0,0,1,1,0,7.7554903,0,43.71,56.91,53,54,6.666666666666667,1,1,0,0,11,8,3,1,632.5,623283.88,0,536676.69,25238.066,0,4038.6333,2845.2539 +3265,4017,7075,-9,7078,7079,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1059.0304,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7076,-9,7078,7079,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-964.89496,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7077,-9,7078,7079,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1046.0868,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7078,7079,-9,-9,1,0,36,0,3,0,2,2,-9,1,4,0,0,0,20,-4,0,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.97,61.83,37.42,30.57,5,2,3,0,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3265,4017,7079,7078,-9,-9,1,1,40,0,3,0,3,3,-9,1,2,0,0,0,20,4,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.42,30.57,35.97,61.83,5,2,3,0,0,0,8,2,0,412,311122.22,258879.45,0,0,0,0,2240.5852 +3266,4018,7080,7081,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.8699236,8.2618484,56,1,192.39423,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.056675,53.79,37.67,53.62,41.64,6.666666666666667,1,1,0,0,3,1,3,1,1036,1002982.6,445798.75,350248.44,0,0,0,2495.3643 +3266,4018,7081,7080,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.1422172,5.8608823,56,-1,7.7899928,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,10.565319,0,0,1,1,0,2.193589,6.135385,53.62,41.64,53.79,37.67,8.333333333333334,1,1,0,0,0,1,3,1,1036,1002982.6,445798.75,350248.44,0,0,0,2495.3643 +3267,4019,7082,7083,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.2885604,7.3880286,0,37,-16,45.027489,0,3,3,2021,21,8,35,35,1,8,0,4.3813038,4.3813038,0,0,0,0,0,0,0,0,1,1,0,0,0,48.97,42.09,47.01,34.07,6.666666666666667,1,1,0,0,13,7,2,1,532.33331,633059.81,85101.109,445091.97,0,0,0,1976.0343 +3267,4019,7083,7082,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.1335053,6.284224,39,16,-3.3076773,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,45.515999,0,0,1,1,0,6.0596371,5.8871169,47.01,34.07,48.97,42.09,8.333333333333334,1,1,0,0,3,7,2,1,532.33331,633059.81,85101.109,445091.97,0,0,0,1976.0343 +3267,4019,7084,-9,7082,7083,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-982.63287,-9,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,-9,-9,6.666666666666667,1,1,0,1,1,7,2,1,532.33331,633059.81,85101.109,445091.97,0,0,0,1976.0343 +3268,4020,7085,-9,7086,7088,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.36871,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3268,4020,7086,7088,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.2362995,8.2232103,0,7,5,-111.90427,0,3,-9,2021,11,2,26,30,1,2,0,18.880136,18.880136,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.61,47.86,51.39,50.81,8.333333333333334,1,1,0,0,4,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3268,4020,7087,-9,7086,7088,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.49963,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3268,4020,7088,7086,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4985933,8.502388,0,7,-5,86.181313,0,2,2,2021,12,2,48,47,1,2,0,11.639812,11.639812,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,50.81,54.61,47.86,8.333333333333334,1,1,0,0,6,12,4,1,658.75,216400.11,259410.52,89777.563,67019.047,0,7415.292,3633.5503 +3269,4021,7089,7090,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,10,-2,25.751543,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,52.75,47.35,51.85,41.28,8.333333333333334,1,1,0,0,3,6,4,1,610.5,974535.38,540624,266636.44,0,0,676.3739,2772.9106 +3269,4021,7090,7089,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.4367676,8.4357281,0,9,2,27.274986,0,-9,-9,2021,9,0,48,55,1,0,0,12.969381,12.969381,0,0,0,0,0,0,0,0,0,0,0,6.387414,0,51.85,41.28,52.75,47.35,6.666666666666667,1,1,0,0,15,6,4,1,610.5,974535.38,540624,266636.44,0,0,676.3739,2772.9106 +3270,4022,7091,7092,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.4828305,5.93256,24,4,-49.293446,0,3,3,2021,8,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9961462,51.07,32.75,54.37,54.8,8.333333333333334,1,1,0,0,13,9,3,1,852.5,704270.75,296561.75,219796.78,17999.047,0,1442.089,2144.7495 +3270,4022,7092,7091,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4458032,7.6550431,25,-4,-66.925682,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5831947,54.37,54.8,51.07,32.75,10,1,1,0,0,12,9,3,1,852.5,704270.75,296561.75,219796.78,17999.047,0,1442.089,2144.7495 +3270,4023,7093,-9,7092,7091,1,0,20,0,0,1,2,0,0,0,4,0,8.0852613,8.0095816,0,0,-1083.4542,-9,1,2,2021,7,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4871244,0,52.31,58.29,-9,-9,10,1,1,0,0,1,9,4,1,557,-63274,-92942.313,0,0,0,0,1485.5016 +3271,4024,7094,7095,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.1263075,8.1877966,6.7129245,5,1,73.330627,0,-9,-9,2021,6,1,34,32,1,1,0,10.536759,10.536759,0,0,.05,0,0,0,0,0,0,0,0,6.6510901,0,54.2,57.49,54.69,57.47,8.333333333333334,1,1,0,0,5,9,5,1,761.5,41854.203,-16986.688,0,0,5032.3047,0,3933.2686 +3271,4024,7095,7094,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.781775,7.9285831,6.9644165,5,-1,21.862503,-9,1,2,2021,4,0,24,0,1,0,0,12.302064,12.302064,0,0,0,0,0,0,0,0,0,0,0,6.888989,0,54.69,57.47,54.2,57.49,8.333333333333334,1,1,0,0,6,9,5,1,761.5,41854.203,-16986.688,0,0,5032.3047,0,3933.2686 +3272,4025,7096,7097,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,6.4100375,6.5314927,0,7,-13,-26.439777,0,-9,-9,2021,28,12,16,20,1,12,0,4.806674,4.806674,0,0,0,0,0,0,0,0,0,0,0,.73053533,0,5.09,57.72,51.4,46.95,1.666666666666667,1,1,0,1,8,2,2,0,727.5,531270.75,303937.88,146118.72,0,0,0,1119.2114 +3272,4025,7097,7096,-9,-9,1,1,47,0,0,0,3,3,-9,0,2,6.8250046,6.8661199,0,7,13,-73.116814,0,-9,-9,2021,4,0,48,48,1,0,0,2.5081286,2.5081286,0,0,0,0,0,0,0,0,0,0,0,2.516434,0,51.4,46.95,5.09,57.72,8.333333333333334,1,1,0,0,13,2,2,0,727.5,531270.75,303937.88,146118.72,0,0,0,1119.2114 +3273,4026,7098,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,7.7065573,7.8535824,0,0,-869.0871,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.2165914,51.15,29.26,-9,-9,3.333333333333333,1,1,0,0,8,2,3,1,213,687211.25,680924.19,0,0,0,0,701.38232 +3273,4027,7099,-9,-9,7098,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-926.82635,0,-9,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.97,52.12,-9,-9,1.666666666666667,1,1,1,0,0,2,1,1,178,-13648.449,0,0,0,0,0,421.79318 +3274,4028,7100,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.7825775,6.9488354,0,0,-1135.8125,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7310872,6.8687134,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,323,1235228.6,103508.51,168911.41,0,0,0,845.4339 +3275,4029,7101,7103,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.4271975,8.5903139,0,24,0,104.842,0,2,2,2021,13,3,35,40,1,3,0,17.292166,17.292166,0,0,.05,0,0,0,0,0,0,0,0,2.6269794,0,48.28,60.18,52,55,6.666666666666667,1,1,0,0,8,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3275,4029,7102,-9,7101,7103,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.78595,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3275,4029,7103,7101,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.867445,10.084799,0,25,0,-24.722521,0,2,2,2021,9,0,70,50,1,1,0,26.208918,26.208918,0,0,.05,0,0,0,0,0,0,0,0,1.8613898,0,52,55,48.28,60.18,8,1,1,0,0,1,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3275,4029,7104,-9,7101,7103,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-917.23584,-9,1,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,5,5,1,845.5,566693.94,244336.84,328336.75,36059.813,0,0,7266.1089 +3276,4030,7105,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1060.1118,-9,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.04,20.09,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,934,-160609.61,0,0,0,0,0,1486.3936 +3277,4031,7106,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.4094052,7.1538091,0,0,0,-1088.8357,0,2,1,2021,7,0,35,40,1,0,0,6.6182599,6.6182599,0,0,0,0,0,0,0,2,0,0,0,2.8193827,0,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,12,8,3,1,210,291887.94,14929.656,189816.78,16379.737,0,0,384.46689 +3278,4032,7107,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-948.4364,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.66,21.39,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,239,-104665.68,0,0,0,0,0,634.98431 +3279,4033,7108,-9,7110,7109,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.767,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3279,4033,7109,7110,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,8.5062618,8.5202265,0,14,4,-17.822714,0,2,2,2021,12,1,48,44,1,1,0,13.686909,13.686909,.05,.05,0,0,0,0,0,0,1,1,0,3.5054495,0,49.04,55.86,43.48,60.97,6.666666666666667,1,1,0,1,12,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3279,4033,7110,7109,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.2883863,8.5244703,0,14,-4,-1.3744153,0,2,2,2021,11,0,22,38,1,0,0,26.662802,26.662802,.05,.05,0,0,0,0,0,0,1,1,0,2.6963985,0,43.48,60.97,49.04,55.86,8.333333333333334,1,1,0,1,11,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3279,4033,7111,-9,7110,7109,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.43829,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,946.25,429897.78,184610.95,342252.25,184778.38,0,643.37848,3527.7183 +3280,4034,7112,-9,-9,-9,1,0,37,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1045.5732,-9,2,1,2021,20,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.25,55.13,-9,-9,3.333333333333333,1,1,0,0,4,5,1,1,409,-217488.11,0,0,0,0,0,214.54573 +3281,4035,7113,7114,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,6.4849763,6.8459706,5.6544828,10,12,3.9652028,0,3,3,2021,9,0,80,80,1,0,0,.91831517,.91831517,.05,.05,0,0,0,0,0,2,1,1,0,5.3103714,5.5854154,53.39,49.67,54.37,54.8,6.666666666666667,4,2,0,0,11,2,4,1,938,207072.56,8404.7949,187715.8,0,0,0,4464.1133 +3281,4035,7114,7113,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.6787434,8.6687021,0,10,-12,-8.7484207,0,3,3,2021,7,0,70,70,1,0,0,7.7612123,7.7612123,.05,.05,0,0,0,0,0,0,1,1,0,7.2026167,0,54.37,54.8,53.39,49.67,8.333333333333334,1,1,0,0,11,2,4,1,938,207072.56,8404.7949,187715.8,0,0,0,4464.1133 +3281,4036,7115,-9,-9,-9,1,1,22,0,0,1,3,0,-9,1,4,0,0,0,0,0,-970.16791,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.01,53.44,-9,-9,10,1,1,0,0,0,2,1,1,922,13291.843,0,0,0,0,0,932.43256 +3282,4037,7116,-9,7119,7118,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.82953,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3282,4037,7117,-9,7119,7118,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1266,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3282,4037,7118,7119,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.0332222,8.3027077,0,9,2,-38.189308,0,-9,-9,2021,6,0,100,50,1,0,0,3.3188848,3.3188848,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,55.28,49.04,55.86,5,1,1,0,0,10,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3282,4037,7119,7118,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.0478153,8.0241508,0,9,-2,-30.417957,0,1,2,2021,11,1,54,45,1,1,0,6.2009668,6.2009668,.05,.05,0,0,0,0,0,0,0,0,0,1.8330494,0,49.04,55.86,41.06,55.28,8.333333333333334,1,1,0,0,10,10,4,1,972.75,245420.48,108136.12,175145.66,91598.078,3956.3652,0,2779.9756 +3283,4038,7120,7121,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.6401844,7.554985,0,25,-1,44.164272,0,1,1,2021,12,1,27,26,1,1,0,9.2441416,9.2441416,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.15,56.92,48.87,58.55,8.333333333333334,1,1,0,0,4,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7121,7120,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.247982,9.4898701,0,25,1,18.917671,0,1,1,2021,10,1,40,42,1,1,0,25.969244,25.969244,.05,.05,0,0,0,0,0,0,1,1,0,5.246067,0,48.87,58.55,43.15,56.92,8.333333333333334,1,1,0,0,13,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7122,-9,7120,7121,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.7532,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7123,-9,7120,7121,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-927.11963,-9,1,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.73,61.29,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7124,-9,7120,7121,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.4545,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3283,4038,7125,-9,7120,7121,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-942.07886,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,5,1,1044.6666,391795.75,185534.45,108533.8,0,0,0,4177.7539 +3284,4039,7126,7128,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.83249,8.884634,0,22,0,20.006161,0,3,3,2021,10,0,81,50,1,0,0,7.7985992,7.7985992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,40.67,62.66,8.333333333333334,1,1,0,0,14,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7127,-9,7128,7126,1,0,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-898.67993,1,1,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.39,66.76000000000001,-9,-9,3.333333333333333,1,1,0,0,1,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7128,7126,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,7.7571492,7.5526133,0,22,0,240.47096,0,-9,-9,2021,10,0,32,32,1,0,0,6.4305391,6.4305391,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.67,62.66,51.24,58.84,5,1,1,0,0,14,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7129,-9,7128,7126,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.7384,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3284,4039,7130,-9,7128,7126,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1158.3237,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,769.20001,125177.55,146907.91,225695.02,184880.48,4423.7832,2029.2665,3622.4121 +3285,4040,7131,7132,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,5.6773834,5.5914016,49,-6,11.841055,0,2,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9980798,5.4305506,44.25,56.64,56.5,48.33,8.333333333333334,1,1,0,0,10,7,3,1,1787.5,1303675.4,266284.38,868672.63,0,0,0,2767.6973 +3285,4040,7132,7131,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.8640013,8.0433769,49,6,-28.385332,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.812809,7.8515697,56.5,48.33,44.25,56.64,10,1,1,0,0,0,7,3,1,1787.5,1303675.4,266284.38,868672.63,0,0,0,2767.6973 +3286,4041,7133,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.2666698,7.4020915,0,0,-1046.677,0,1,1,2021,4,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.0735393,7.2364488,59.53,56.44,-9,-9,10,1,1,0,0,0,9,3,1,364,348374.63,337563.81,242476.08,29194.93,0,0,1962.307 +3287,4042,7134,-9,7135,7136,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.93433,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,726.66669,209308.59,15439.646,194477.52,3802.7856,0,0,3640.9399 +3287,4042,7135,7136,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.4465027,7.6447725,0,24,-7,-76.33506,0,2,2,2021,9,0,20,25,1,0,0,10.402335,10.402335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,1,726.66669,209308.59,15439.646,194477.52,3802.7856,0,0,3640.9399 +3287,4042,7136,7135,-9,-9,1,1,54,0,1,0,3,3,-9,0,4,9.0058279,8.7785826,0,24,7,.25235492,0,2,2,2021,8,0,84,0,1,0,0,9.2757578,9.2757578,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.32,50.22,10,1,1,0,0,9,12,4,1,726.66669,209308.59,15439.646,194477.52,3802.7856,0,0,3640.9399 +3287,4043,7137,-9,7135,7136,1,1,19,0,1,0,2,2,-9,0,4,7.3750954,7.5201068,0,0,0,-882.83087,0,2,3,2021,17,5,38,28,1,5,1,5.4631209,5.4631209,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,2,12,3,1,420,271317.31,0,0,0,0,0,869.9234 +3288,4044,7138,7139,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,56,-1,-76.337311,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.6,35.9,56.1,49.93,6.666666666666667,1,1,0,0,0,6,4,1,344,779381.5,721483,0,0,0,0,4702.6128 +3288,4044,7139,7138,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.8238993,8.7100067,56,1,130.37077,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7345924,56.1,49.93,54.6,35.9,8.333333333333334,1,1,0,0,0,6,4,1,344,779381.5,721483,0,0,0,0,4702.6128 +3289,4045,7140,7142,-9,-9,1,0,37,1,3,0,1,1,-9,0,4,7.9703822,8.2631626,0,12,-2,134.74936,0,2,1,2021,12,0,24,26,1,0,0,14.592973,14.592973,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7141,-9,7140,7142,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.49139,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7142,7140,-9,-9,1,1,39,1,3,0,1,1,-9,0,4,9.6340322,9.8016376,0,12,2,39.810322,0,2,2,2021,8,0,50,53,1,0,0,28.668472,28.668472,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,13,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7143,-9,7140,7142,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.63037,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3289,4045,7144,-9,7140,7142,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.3663,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,886.40002,285931.78,147359.63,530326.63,360497.66,0,0,8716.2295 +3290,4046,7145,-9,7148,7147,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.1757,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3290,4046,7146,-9,7148,7147,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.9011,-9,2,3,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.86,64.55,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3290,4046,7147,7148,-9,-9,1,1,46,0,2,0,3,3,-9,1,2,0,0,0,8,-3,-106.61347,0,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.6,29.45,35.2,46,6.666666666666667,1,1,0,0,0,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3290,4046,7148,7147,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,8.2886295,8.5739174,0,8,3,-27.42275,0,2,3,2021,15,4,60,54,1,4,0,7.609921,7.609921,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,35.2,46,51.6,29.45,5,1,1,0,0,8,13,3,1,1245.75,97466.453,54630.43,136792.84,138129.02,5657.7383,0,1665.8746 +3291,4047,7149,7150,-9,-9,1,0,36,1,3,0,2,2,-9,1,5,6.0139847,6.1747155,0,3,0,-72.785576,0,-9,3,2021,8,0,6,0,1,0,0,7.0262842,7.0262842,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,54.1,59.11,56.48,51.03,10,1,1,0,0,1,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7150,7149,-9,-9,1,1,36,1,3,0,2,2,-9,0,5,8.2705927,8.4084272,0,3,0,-187.71503,-9,-9,-9,2021,11,0,40,0,1,0,0,11.841701,11.841701,.05,.05,0,0,0,0,0,7,1,1,0,0,0,56.48,51.03,54.1,59.11,8.333333333333334,1,1,0,0,8,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7151,-9,7149,7150,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.24072,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7152,-9,7149,7150,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-915.10388,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3291,4047,7153,-9,7149,7150,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1102.5399,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1369.4,-12834.608,-21773.949,0,0,4160.6855,0,2297.9026 +3292,4048,7154,-9,-9,7155,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-984.5517,-9,-9,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,10,3,1,294,23471.664,-88851.188,129924.83,105761.7,140.77753,3610.7009,1897.1436 +3292,4048,7155,-9,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.253211,8.3070459,0,0,0,-942.97009,0,2,2,2021,10,0,40,45,1,0,0,13.287731,13.287731,0,0,0,0,0,0,0,0,1,1,0,0,0,42.64,50.88,-9,-9,5,1,1,0,0,7,10,3,1,294,23471.664,-88851.188,129924.83,105761.7,140.77753,3610.7009,1897.1436 +3292,4049,7156,-9,-9,7155,1,0,18,0,1,1,2,0,-9,0,1,0,0,0,0,0,-1041.0525,-9,-9,3,2021,23,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.42,19.81,-9,-9,3.333333333333333,1,1,0,0,0,10,1,1,522,-6286.8413,0,0,0,0,0,0 +3293,4050,7157,-9,-9,-9,1,1,18,0,0,0,2,2,1,0,3,6.4846063,6.4371424,0,0,0,-946.89282,-9,2,2,2021,8,0,40,0,1,0,1,2.0575635,2.0575635,0,0,0,0,0,0,0,0,1,0,1,0,0,62.66,52.4,-9,-9,10,1,1,0,0,2,9,2,1,1367,64929.691,0,0,0,0,0,98.573593 +3294,4051,7158,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.6604114,6.7294617,0,0,-973.48132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8016901,6.7960629,58.15,52.91,-9,-9,0,1,1,0,0,7,2,2,1,466,126158.3,84152.805,160483.53,0,0,0,720.9245 +3295,4052,7159,7160,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,34,0,-95.311447,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,42.95,61.24,7,4,5,0,0,0,8,5,1,1385,408554.47,192826.17,131327.92,80459.859,7763.8872,12303.262,3188.5273 +3295,4052,7160,7159,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,9.2788782,9.3919611,0,33,0,-61.524834,0,3,3,2021,14,3,42,38,1,3,0,30.10894,30.10894,.05,.05,0,0,0,0,0,2,0,0,0,0,0,42.95,61.24,49,48,5,1,1,0,0,11,8,5,1,1385,408554.47,192826.17,131327.92,80459.859,7763.8872,12303.262,3188.5273 +3295,4053,7161,-9,7159,7160,1,0,25,0,0,0,2,2,-9,0,4,7.1319647,7.0119586,0,0,0,-979.31708,0,2,1,2021,14,4,14,0,1,4,1,10.114653,10.114653,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,4,2,0,0,1,8,2,1,862,-8243.1914,-16093.547,0,0,0,0,247.97238 +3296,4054,7162,7163,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.2979927,6.0957375,6,-1,-66.311317,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,12.452283,0,0,1,1,0,2.9648798,5.9137158,54,44,56,44,8,1,1,0,0,0,5,2,1,1260,103268.76,128696.97,0,0,0,0,2097.4507 +3296,4054,7163,7162,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,6,1,-26.998798,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,5.7133913,0,0,1,1,0,5.1499124,0,56,44,54,44,8,1,1,0,0,0,5,2,1,1260,103268.76,128696.97,0,0,0,0,2097.4507 +3296,4055,7164,-9,7162,7163,1,1,64,0,0,0,3,3,-9,1,3,0,6.4208016,6.4190493,0,0,-1036.6694,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3940945,6.6235356,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2857,26604.213,-58776.203,0,0,0,0,1464.7548 +3297,4056,7165,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.0201845,5.8413553,0,0,-981.55469,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3347044,40.92,29.99,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,2037,186558.56,-6551.4253,202996.2,0,0,0,866.33392 +3298,4057,7166,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.288599,8.4888706,0,0,-892.91052,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9406648,8.1671839,55.13,50.42,-9,-9,8.333333333333334,1,1,0,0,12,5,4,1,1936,161081.48,0,0,0,0,0,3342.113 +3299,4058,7167,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.5486012,7.7129049,8,5,-31.697037,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5844345,51.21,48.48,49,47,8.333333333333334,1,1,0,0,4,8,3,1,293,446926.13,230545.95,0,0,0,0,1577.7517 +3300,4059,7168,7169,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,8.7676458,8.6256294,0,4,7,-102.43861,0,-9,-9,2021,3,0,53,48,1,0,0,17.602829,17.602829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.84,49.17,8.333333333333334,1,1,0,0,6,6,5,1,589.5,303850.91,170506.5,697062.5,483587.81,0,0,4369.1289 +3300,4059,7169,7168,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7349606,8.9485626,0,4,-7,-39.768143,0,2,2,2021,11,2,45,64,1,2,0,16.02655,16.02655,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.84,49.17,57.06,57.76,8.333333333333334,1,1,0,0,10,6,5,1,589.5,303850.91,170506.5,697062.5,483587.81,0,0,4369.1289 +3301,4060,7170,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.7635493,6.3576417,0,0,-807.90131,0,3,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1382084,6.5686502,52.31,40.62,-9,-9,5,1,1,0,0,5,5,2,1,1978,-106460.98,125275.86,0,0,0,0,955.07092 +3302,4061,7171,7172,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.6571345,6.8320713,57,3,48.66539,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3301859,7.0258584,53.5,53.7,52.78,45.97,8.333333333333334,1,1,0,0,9,13,2,1,754,211803.66,0,171331.89,0,0,0,1381.9004 +3302,4061,7172,7171,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,57,-3,29.916136,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0288606,0,52.78,45.97,53.5,53.7,8.333333333333334,1,1,0,0,9,13,2,1,754,211803.66,0,171331.89,0,0,0,1381.9004 +3303,4062,7173,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.9437599,7.831008,0,0,0,-1006.9717,0,3,3,2021,14,3,43,40,1,3,0,6.3030009,6.3030009,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.91,-9,-9,8.333333333333334,1,1,0,1,9,8,3,0,408,-69378,0,0,0,0,0,1001.9097 +3304,4063,7174,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.2694473,8.5234652,0,0,0,-1008.2742,0,3,3,2021,12,2,39,24,1,2,0,15.317954,15.317954,0,0,0,0,0,0,0,14.5,1,1,0,0,0,42.12,39.15,-9,-9,6.666666666666667,2,3,0,0,3,8,3,0,101,281627.75,-52427.789,126217.95,109979,0,7178.8726,2730.2009 +3305,4064,7175,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.4968953,7.5722852,0,0,0,-1002.8981,0,3,2,2021,10,0,30,30,1,0,0,7.3983564,7.3983564,0,0,0,0,0,0,0,2,1,1,0,0,0,41.88,45.75,-9,-9,6.666666666666667,2,3,0,0,11,2,3,1,125,116110.46,61842.613,0,0,2339.4932,0,800.3418 +3305,4065,7176,-9,7175,-9,1,0,22,0,0,0,2,2,1,0,2,6.9843149,7.0555353,0,0,0,-996.31366,-9,2,-9,2021,36,12,17,0,1,12,1,6.3797669,6.3797669,0,0,0,0,0,0,0,2,1,1,0,6.9464393,0,1.83,67.42,-9,-9,6.666666666666667,2,3,0,1,5,2,2,1,1979,-28332.385,0,0,0,0,0,1000.3749 +3305,4066,7177,-9,7175,-9,1,0,18,0,0,0,2,2,1,0,4,6.2413898,6.4040284,0,0,0,-1102.339,-9,2,-9,2021,30,11,9,0,1,11,1,7.115231,7.115231,0,0,0,0,0,0,0,0,1,1,0,7.2722301,0,20.06,67.82000000000001,-9,-9,5,2,3,0,0,1,2,2,1,148,-154069.75,0,0,0,0,0,1875.4233 +3306,4067,7178,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-969.28149,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.99,23.42,-9,-9,5,1,1,0,0,0,6,1,1,457,161422.88,0,0,0,0,0,884.42975 +3306,4068,7179,-9,7178,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0233183,7.9958868,0,0,0,-964.73529,0,2,-9,2021,12,0,78,38,1,0,1,5.0970874,5.0970874,0,0,0,0,0,0,0,2,1,1,0,2.7915537,0,53.22,55.2,-9,-9,6.666666666666667,1,1,0,0,8,6,4,1,103,-33351.262,0,0,0,0,0,1505.4491 +3306,4069,7180,-9,7178,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-961.56354,-9,2,-9,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8458245,0,46.73,57.01,-9,-9,6.666666666666667,1,1,0,0,4,6,1,1,506,137244.11,0,0,0,0,0,1716.0071 +3307,4070,7181,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.0531569,6.172905,0,0,-1031.0386,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.830214,5.9493532,49.28,50.19,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,597,-6460.1528,120141.34,0,0,0,0,818.21283 +3308,4071,7182,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-739.27832,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.4622312,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,1,0,348,61466.352,0,0,0,0,0,1079.6262 +3309,4072,7183,-9,7184,7188,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-955.69769,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7184,7188,-9,-9,1,0,41,1,4,0,1,1,-9,0,2,8.5139914,8.6297379,0,10,2,117.82719,0,2,1,2021,33,12,45,46,1,12,0,12.797879,12.797879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.71,34.45,49.35,59.64,3.333333333333333,1,1,0,1,11,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7185,-9,7184,7188,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1043.431,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7186,-9,7184,7188,1,0,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-992.33197,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7187,-9,7184,7188,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.4833,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3309,4072,7188,7184,-9,-9,1,1,39,1,4,0,1,1,-9,0,4,8.4982805,8.4782858,0,10,-2,-18.82567,0,1,-9,2021,12,0,37,39,1,0,0,16.626066,16.626066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,25.71,34.45,8.333333333333334,1,1,0,0,11,12,4,1,763,364413.06,197635.52,306224.22,184469.19,200.51357,7845.9541,3971.3862 +3310,4073,7189,7190,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.8140693,7.6809998,41,-2,97.503922,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8996024,54.37,54.8,60.12,54.8,6.666666666666667,1,1,0,0,9,12,5,1,1133,1721946,1292514,456359.56,0,0,0,3424.8574 +3310,4073,7190,7189,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.6253138,8.8635607,0,41,2,88.443016,0,2,2,2021,7,0,24,24,1,0,0,31.614456,31.614456,.05,.05,0,0,0,0,0,0,0,0,0,2.9261539,0,60.12,54.8,54.37,54.8,8.333333333333334,1,1,0,0,10,12,5,1,1133,1721946,1292514,456359.56,0,0,0,3424.8574 +3311,4074,7191,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.4158678,5.9998455,0,0,-968.85016,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,12.157807,0,0,1,1,0,0,5.3884082,53,44,-9,-9,8,1,1,0,0,0,4,2,1,109,222702.09,53939.66,64861.188,0,0,0,1711.5988 +3312,4075,7192,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.1239643,7.791378,0,0,0,-1013.0358,0,2,2,2021,15,2,32,30,1,2,0,13.417953,13.417953,.05,.05,0,0,0,0,0,0,1,0,1,0,0,26.61,59.47,-9,-9,1.666666666666667,1,1,0,0,13,10,4,0,1169,263492.47,43031.23,0,0,14759.142,-1307.8429,2152.895 +3313,4076,7193,7194,-9,-9,1,0,46,0,1,0,2,2,-9,0,1,0,0,0,6,-10,-6.519155,0,2,2,2021,15,4,0,20,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,23.91,62.6,34.56,8.333333333333334,1,1,0,0,5,12,3,1,925.66669,265879.47,217703.73,0,0,7786.9121,0,1951.6841 +3313,4076,7194,7193,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.2993822,8.4724903,0,6,10,9.680047,0,2,2,2021,11,1,38,37,1,1,0,10.621163,10.621163,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.6,34.56,49.02,23.91,6.666666666666667,1,1,0,0,9,12,3,1,925.66669,265879.47,217703.73,0,0,7786.9121,0,1951.6841 +3313,4076,7195,-9,7193,7194,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-943.8429,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,12,3,1,925.66669,265879.47,217703.73,0,0,7786.9121,0,1951.6841 +3314,4077,7196,7197,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,60,-5,43.298008,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,7.1474032,0,0,1,1,0,2.4651728,0,34.97,32.77,62.77,34.54,5,1,1,0,0,0,7,2,1,1395.5,671516.63,135552.64,452586.44,0,0,0,1950.1753 +3314,4077,7197,7196,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.5967278,7.611362,60,5,-58.206829,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.11848367,7.2555733,62.77,34.54,34.97,32.77,8.333333333333334,1,1,0,0,0,7,2,1,1395.5,671516.63,135552.64,452586.44,0,0,0,1950.1753 +3315,4078,7198,7199,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.6005507,5.9676728,49,-3,54.665257,0,2,2,2021,9,0,0,31,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8190966,6.1382279,63.39,39.56,59.11,26.09,8.333333333333334,1,1,0,0,15,10,2,1,725.5,1395627,625991.88,429921.66,0,0,0,2976.6672 +3315,4078,7199,7198,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.2328439,7.1769772,49,3,-33.604233,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5702629,0,0,1,1,0,7.0322542,6.4512935,59.11,26.09,63.39,39.56,8.333333333333334,1,1,0,0,0,10,2,1,725.5,1395627,625991.88,429921.66,0,0,0,2976.6672 +3316,4079,7200,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.4617138,8.7717953,0,0,0,-1063.9963,0,-9,-9,2021,9,0,10,50,1,0,0,67.819763,67.819763,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,1.666666666666667,1,1,0,0,9,2,5,1,448,-7957.1812,-28331.863,109703.19,78393.398,0,0,2158.0286 +3317,4080,7201,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.7745228,7.4456606,0,0,-1049.9816,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9053135,7.0845037,37.17,50.6,-9,-9,5,1,1,0,0,6,13,2,1,1633,130900.98,72855.195,150464.89,0,0,0,1044.347 +3318,4081,7202,7203,-9,-9,1,0,30,0,1,0,2,2,-9,0,2,7.3351984,7.5492516,0,5,-4,-12.833637,0,2,-9,2021,24,11,21,21,1,11,0,8.4381084,8.4381084,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,31.22,54.37,54.8,5,1,1,0,0,8,13,3,0,1142,-17607.523,11262.918,225734.19,130335.54,1838.097,259.75009,2605.6912 +3318,4081,7203,7202,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,8.0231495,8.4007206,0,5,4,-76.148857,0,-9,-9,2021,12,0,40,45,1,0,0,6.7533727,6.7533727,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,33.07,31.22,3.333333333333333,1,1,0,1,4,13,3,0,1142,-17607.523,11262.918,225734.19,130335.54,1838.097,259.75009,2605.6912 +3318,4081,7204,-9,7202,7203,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.40582,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,0,1142,-17607.523,11262.918,225734.19,130335.54,1838.097,259.75009,2605.6912 +3319,4082,7205,7206,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.417078,8.2714682,0,2,-1,-12.454788,0,-9,-9,2021,20,5,50,35,1,5,0,9.1878824,9.1878824,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,29.94,59.21,19.36,61.35,6.666666666666667,1,1,0,0,13,2,4,1,607.5,55190.594,65212.996,0,0,0,922.75092,2604.3201 +3319,4082,7206,7205,-9,-9,1,1,33,0,0,0,2,2,-9,1,3,7.7278466,7.70997,0,2,1,59.4753,0,-9,-9,2021,16,4,35,35,1,4,0,10.345481,10.345481,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.36,61.35,29.94,59.21,3.333333333333333,1,1,0,0,12,2,4,1,607.5,55190.594,65212.996,0,0,0,922.75092,2604.3201 +3320,4083,7207,7208,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.1884594,8.1546144,0,16,0,-81.431992,0,2,2,2021,9,0,45,50,1,0,0,10.272691,10.272691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,36.45,62.92,8.333333333333334,1,1,0,0,12,2,4,1,1500,660521.5,691380.5,0,0,24647.361,201.17657,3388.8997 +3320,4083,7208,7207,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0834513,7.9027562,0,16,0,63.941975,0,1,2,2021,14,3,40,47,1,3,0,8.023181,8.023181,0,0,0,0,0,0,0,0,1,1,0,0,0,36.45,62.92,61.01,53.18,6.666666666666667,1,1,0,0,14,2,4,1,1500,660521.5,691380.5,0,0,24647.361,201.17657,3388.8997 +3321,4084,7209,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.5094347,8.5761642,0,0,0,-942.95245,0,-9,-9,2021,15,3,74,37,1,3,0,8.5380526,8.5380526,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.35,64.53,-9,-9,6.666666666666667,1,1,0,0,8,12,5,0,581,-36623.121,110542.5,0,0,0,0,1712.6638 +3322,4085,7210,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,6.3448758,6.5023465,0,0,-913.0285,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0754571,0,62.43,10.97,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,322.5,85748.875,0,0,0,0,0,1165.6284 +3322,4085,7211,-9,7210,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1007.7645,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.2726884,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,6,2,1,322.5,85748.875,0,0,0,0,0,1165.6284 +3322,4086,7212,-9,7210,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-857.83069,-9,2,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,1.6049922,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,5,6,1,1,312,86878.406,0,0,0,0,0,395.11249 +3323,4087,7213,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,7.205317,7.1557918,0,0,0,-999.59558,0,2,3,2021,11,0,32,16,1,0,0,3.9167092,3.9167092,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,5,1,1,0,0,4,8,2,0,605,32835.91,0,0,0,0,0,1698.7708 +3323,4087,7214,-9,7213,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0303,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,2,0,605,32835.91,0,0,0,0,0,1698.7708 +3323,4087,7215,-9,7213,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.8201,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,0,605,32835.91,0,0,0,0,0,1698.7708 +3324,4088,7216,-9,-9,-9,1,0,63,0,2,0,3,3,-9,1,4,8.3473539,8.1444817,0,0,0,-912.9939,0,3,3,2021,9,0,84,60,1,0,0,4.4958849,4.4958849,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,12,2,3,1,503,87896.234,-7643.7715,90514.078,21639.254,18635.584,495.07724,3872.2776 +3325,4089,7217,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.5291758,8.6688251,0,0,0,-1049.4259,0,1,1,2021,10,0,50,50,1,0,0,13.068029,13.068029,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,725,214263.48,-97133.578,0,0,41259.293,0,3249.7397 +3326,4090,7218,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,5.9101253,5.8862329,0,0,-1073.4376,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,.22582836,0,0,1,1,0,1.9777036,6.0425529,47.58,22.99,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,228,216801.75,26123.236,192157.69,0,0,0,346.95889 +3327,4091,7219,7220,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,4.674036,4.5247951,7,-2,-13.174617,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.476459,4.7815337,35.41,50.96,37.18,19.54,6.666666666666667,1,1,0,1,4,12,2,0,1393.5,732659.13,491669.44,130000.17,0,0,0,1623.1326 +3327,4091,7220,7219,-9,-9,1,0,69,0,0,0,2,2,-9,0,1,0,0,0,7,2,54.42308,0,2,1,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,10.313661,0,120,1,1,0,0,0,37.18,19.54,35.41,50.96,3.333333333333333,1,1,0,0,4,12,2,0,1393.5,732659.13,491669.44,130000.17,0,0,0,1623.1326 +3327,4092,7221,-9,7220,7219,1,1,42,0,0,0,2,2,-9,1,4,0,0,0,0,0,-904.96265,-9,2,1,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,0,12,1,0,931,88335.742,0,0,0,0,0,1440.8162 +3328,4093,7222,7223,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.653749,6.2580271,11,-2,-67.502975,0,-9,-9,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,0,11.460997,0,0,1,1,0,0,6.7149587,39.18,17.47,51.33,24.03,5,1,1,0,0,0,2,2,1,3010.5,489015.97,121253.82,203970.55,0,0,0,2712.5698 +3328,4093,7223,7222,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,6.7648597,6.6622643,60,2,90.177376,0,3,3,2021,16,7,0,0,4,7,0,0,0,0,0,0,1,0,16.0362,0,27,1,1,0,.31104115,7.0806389,51.33,24.03,39.18,17.47,5,1,1,0,0,0,2,2,1,3010.5,489015.97,121253.82,203970.55,0,0,0,2712.5698 +3329,4094,7224,-9,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,6.1816373,6.145359,0,0,-985.73297,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.968821,55,45,-9,-9,8,3,4,0,0,0,6,2,0,276,322203.16,0,221621.34,0,0,0,882.79657 +3330,4095,7225,7226,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,6.1236725,5.9731383,3.1996248,21,8,-25.696424,0,3,2,2021,7,0,10,20,1,0,0,4.986022,4.986022,0,0,0,0,0,0,0,0,1,1,0,6.779788,3.4337654,58.91,35.36,51.7,49.11,8.333333333333334,1,1,0,0,12,10,3,1,513,52721.504,70506.953,0,0,0,0,3329.3228 +3330,4095,7226,7225,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,5.2366519,7.4092455,7.7011518,20,-8,-7.6519008,0,3,3,2021,11,0,30,33,1,0,0,.76205599,.76205599,.05,.05,0,0,0,0,0,0,1,1,0,2.7341695,7.6978168,51.7,49.11,58.91,35.36,8.333333333333334,1,1,0,0,12,10,3,1,513,52721.504,70506.953,0,0,0,0,3329.3228 +3330,4096,7227,-9,7225,7226,1,1,36,0,0,0,1,1,-9,0,3,7.7277865,7.720974,0,0,0,-961.7984,0,2,2,2021,4,0,28,30,1,0,0,8.157671,8.157671,.05,.05,0,0,0,0,0,2,1,1,0,4.8915071,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,12,10,3,1,1579,203592.73,-19159.313,0,0,0,0,1118.4005 +3331,4097,7228,7229,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.4336724,6.2908287,51,-2,24.27632,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1016207,6.4637594,57.66,45.08,34.23,49.22,6.666666666666667,1,1,0,1,0,7,2,1,220.5,137837,171987.06,0,0,0,0,1312.7039 +3331,4097,7229,7228,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.5182209,4.140821,51,2,67.617104,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.256897,34.23,49.22,57.66,45.08,3.333333333333333,1,1,0,0,0,7,2,1,220.5,137837,171987.06,0,0,0,0,1312.7039 +3332,4098,7230,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1008.2103,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.5,47.18,-9,-9,5,3,4,0,0,13,8,1,1,752,-139107.22,0,0,0,0,0,271.91995 +3333,4099,7231,-9,7232,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.63922,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,4,0,360,-6394.645,96346.828,0,0,17448.029,0,1690.4493 +3333,4099,7232,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.4660625,7.8933988,0,0,0,-942.31702,0,1,2,2021,7,0,40,38,1,0,0,11.198056,11.198056,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.51,47.91,-9,-9,8.333333333333334,2,3,0,0,8,5,4,0,360,-6394.645,96346.828,0,0,17448.029,0,1690.4493 +3334,4100,7233,7234,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,7.5493436,7.1455469,43,-3,-20.245909,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5786653,7.1064844,59.04,54.12,57.33,53.46,10,1,1,0,0,4,9,3,1,404,1200274,805884.56,240767.16,0,0,0,3601.9736 +3334,4100,7234,7233,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.5483775,7.9339914,43,3,-11.674087,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1845222,7.8720522,57.33,53.46,59.04,54.12,10,1,1,0,0,5,9,3,1,404,1200274,805884.56,240767.16,0,0,0,3601.9736 +3335,4101,7235,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.0968041,5.061851,0,0,-897.7359,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4232502,59.9,48.18,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,951,247795.97,-26268.471,0,0,0,0,1155.0464 +3336,4102,7236,7237,-9,-9,1,0,42,1,2,0,1,1,-9,0,3,0,0,0,9,2,117.05004,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,31.41,55.83,6.666666666666667,1,1,0,0,2,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3336,4102,7237,7236,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.8075819,9.631526,0,9,-2,-45.518219,0,2,3,2021,15,4,34,27,1,4,0,57.761921,57.761921,.05,.05,0,0,0,0,0,0,0,0,0,4.6849489,0,31.41,55.83,46.61,56.93,6.666666666666667,1,1,0,0,12,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3336,4102,7238,-9,7236,7237,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-835.95197,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3336,4102,7239,-9,7236,7237,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.2927,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,482.25,4179636.8,370976.5,1107969.5,180722.27,0,0,4525.9053 +3337,4103,7240,-9,7241,7242,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.843,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,1221.6666,810934.13,732874.5,161531.31,85188.664,2921.5093,0,4619.0229 +3337,4103,7241,7242,-9,-9,1,0,39,0,2,0,1,1,-9,0,1,8.8575821,8.8891039,0,19,-1,14.567303,0,3,2,2021,12,0,47,55,1,0,0,17.794294,17.794294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.53,34.03,62.39,56.71,5,2,3,0,0,15,6,5,1,1221.6666,810934.13,732874.5,161531.31,85188.664,2921.5093,0,4619.0229 +3337,4103,7242,7241,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.1066647,7.8796725,0,19,1,46.577835,0,3,2,2021,12,0,48,48,1,0,0,7.8372812,7.8372812,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,41.53,34.03,10,2,3,0,0,15,6,5,1,1221.6666,810934.13,732874.5,161531.31,85188.664,2921.5093,0,4619.0229 +3338,4104,7243,7244,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,4.9763007,5.432137,10,3,-30.335215,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,.69663125,0,0,1,1,0,5.4833813,5.4767742,37.75,36.33,49.98,55.33,8.333333333333334,1,1,0,0,5,11,2,1,311.5,386844.5,97898.852,93490.938,0,0,0,2036.5588 +3338,4104,7244,7243,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.284225,7.233717,10,-3,-71.412003,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4697678,7.159265,49.98,55.33,37.75,36.33,8.333333333333334,1,1,0,0,0,11,2,1,311.5,386844.5,97898.852,93490.938,0,0,0,2036.5588 +3339,4105,7245,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.6160455,5.5930529,0,0,-1108.6886,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6212177,52,45,-9,-9,8,1,1,0,0,0,5,2,1,677,41847.121,-70747.711,0,0,0,0,1099.9819 +3340,4106,7246,7247,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.8426957,7.7999315,33,-2,83.834335,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3351254,7.7580609,51,48,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,913.5,960686.81,545241.5,348760.5,0,0,0,2731.9346 +3340,4106,7247,7246,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.7749209,5.7330537,32,2,-65.880692,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6603103,57.16,56.15,51,48,0,1,1,0,0,6,9,3,1,913.5,960686.81,545241.5,348760.5,0,0,0,2731.9346 +3341,4107,7248,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.7555151,7.6613684,0,0,-1003.7503,0,2,3,2021,35,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9934516,7.9781203,8.41,50.47,-9,-9,0,1,1,0,0,5,13,3,1,275,96307.344,98765.336,0,0,0,0,588.44501 +3342,4108,7249,7250,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,7.5366187,7.2363062,64,4,-105.08281,0,3,3,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,.75172746,0,0,1,1,0,3.2862422,7.009593,29.61,21.77,47.31,39.47,1.666666666666667,1,1,0,0,0,9,2,0,531,492164.13,28618.246,381768,0,0,0,2234.1501 +3342,4108,7250,7249,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,64,-4,-23.864614,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2648458,0,47.31,39.47,29.61,21.77,6.666666666666667,1,1,0,0,0,9,2,0,531,492164.13,28618.246,381768,0,0,0,2234.1501 +3343,4109,7251,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,7.5576162,7.5836587,0,0,0,-969.22144,0,2,2,2021,24,12,28,26,1,12,0,7.6316061,7.6316061,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,35.44,35.48,-9,-9,3.333333333333333,1,1,0,1,2,9,3,1,499,545632.69,297119.69,253459.72,0,0,0,1163.3912 +3344,4110,7252,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1003.5302,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.02,37.37,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,159,102999.78,-2246.5852,0,0,0,112.90469,709.0072 +3344,4111,7253,-9,7252,-9,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1067.0214,0,3,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,38.39,40.89,-9,-9,6.666666666666667,4,5,0,1,0,13,1,0,1766,-63962.523,0,0,0,0,0,890.05573 +3344,4112,7254,-9,7252,-9,1,0,21,0,0,0,3,3,-9,0,4,0,0,0,0,0,-941.23572,0,3,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.96,52.29,-9,-9,6.666666666666667,4,5,1,1,0,13,1,0,269,-32367.18,0,0,0,0,0,523.21698 +3345,4113,7255,7256,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.6090369,7.9630027,4.8792052,43,6,19.708454,0,2,2,2021,11,0,25,25,1,0,0,11.484643,11.484643,.05,.05,0,1,0,5.0670023,0,0,1,1,0,5.204711,4.9439025,54.37,54.8,42.46,54.85,8.333333333333334,1,1,0,0,8,8,5,1,1238.5,991553.63,542392.38,421653.63,0,10540.895,0,4204.0049 +3345,4113,7256,7255,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.8370724,8.888916,5.9132247,45,-6,49.989513,0,2,2,2021,13,2,48,48,1,2,0,15.488617,15.488617,.05,.05,0,0,0,0,0,0,1,1,0,0,5.9896088,42.46,54.85,54.37,54.8,5,3,4,0,0,7,8,5,1,1238.5,991553.63,542392.38,421653.63,0,10540.895,0,4204.0049 +3345,4114,7257,-9,7256,7255,1,0,32,0,0,0,1,1,-9,0,1,8.3721008,8.4272318,0,0,0,-945.38568,0,2,2,2021,33,12,37,16,1,12,1,14.712519,14.712519,.05,.05,0,0,0,0,0,0,1,1,0,0,0,18.86,28.18,-9,-9,0,4,2,0,0,1,8,4,1,218,-44488.688,200242.78,0,0,0,0,1371.7273 +3346,4115,7258,-9,7259,7261,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.25049,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3346,4115,7259,7261,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.3233366,7.9840693,0,11,-4,45.299217,0,-9,-9,2021,8,0,42,39,1,0,0,8.5079412,8.5079412,0,0,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,38.24,63.73,6.666666666666667,1,1,0,0,12,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3346,4115,7260,-9,7259,7261,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.19031,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3346,4115,7261,7259,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.5763311,8.8523436,0,11,4,-18.042875,0,2,2,2021,6,1,37,40,1,1,0,17.47142,17.47142,.05,.05,0,0,0,0,0,0,1,1,0,7.0950274,0,38.24,63.73,44.19,58.01,8.333333333333334,1,1,0,0,12,11,4,0,698,228099.19,138246.52,190287.89,109037.22,0,0,4530.3604 +3347,4116,7262,7263,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.1267824,8.7922525,0,3,0,196.11496,0,1,2,2021,15,5,38,37,1,5,0,20.141947,20.141947,0,0,0,0,0,0,0,0,0,0,0,0,0,49.39,49.93,42.25,64.48999999999999,8.333333333333334,1,1,0,0,13,11,5,1,837,6287201,3617811.5,448724.63,0,0,0,4781.1846 +3347,4116,7263,7262,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.8477697,8.9310637,0,3,0,58.626682,0,2,2,2021,20,8,35,35,1,8,0,22.964281,22.964281,0,0,0,0,0,0,0,0,0,0,0,0,0,42.25,64.48999999999999,49.39,49.93,5,1,1,0,0,12,11,5,1,837,6287201,3617811.5,448724.63,0,0,0,4781.1846 +3348,4117,7264,-9,-9,-9,1,1,47,0,0,0,1,1,0,0,5,0,0,0,0,0,-993.89966,-9,2,2,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.330142,0,36.1,65.8,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,226,-140649.09,0,0,0,0,0,798.24249 +3349,4118,7265,7266,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,0,0,36,4,0,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9374223,0,42.98,43.86,38.69,44.39,8.333333333333334,2,3,0,0,10,2,1,1,1313.5,976566.88,460997.09,228205.64,0,0,0,2027.2737 +3349,4118,7266,7265,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,36,-4,0,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3787084,0,38.69,44.39,42.98,43.86,6.666666666666667,2,3,0,0,2,2,1,1,1313.5,976566.88,460997.09,228205.64,0,0,0,2027.2737 +3350,4119,7267,7268,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.9511242,7.8441811,6,6,-93.995522,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4221201,8.2705402,41.82,56.44,56.5,37.6,8.333333333333334,3,4,0,0,1,6,4,1,237.5,1812968,1441669.5,518448.81,158348.73,1472.8193,0,3964.5835 +3350,4119,7268,7267,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.5950818,7.8728023,6,-6,-17.164246,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.1776876,7.7613621,56.5,37.6,41.82,56.44,6.666666666666667,2,3,0,0,6,6,4,1,237.5,1812968,1441669.5,518448.81,158348.73,1472.8193,0,3964.5835 +3351,4120,7269,7270,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1785679,8.2040329,44,5,29.215229,0,2,2,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2640414,7.8968863,39,31.04,55.73,53.98,5,1,1,0,0,0,5,4,1,425,1847524.6,793705.38,462518.03,0,3797.1699,0,3858.7271 +3351,4120,7270,7269,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,8.0358419,7.9329395,44,-5,-87.316925,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8675652,55.73,53.98,39,31.04,10,1,1,0,0,7,5,4,1,425,1847524.6,793705.38,462518.03,0,3797.1699,0,3858.7271 +3352,4121,7271,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,4.3375311,3.9990757,0,0,-978.78143,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4355845,48.49,40.21,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,591,-154602.86,-37097.066,0,0,0,0,1292.5492 +3353,4122,7272,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,4,7.8738809,8.1757183,6.1139264,0,0,-954.74683,-9,-9,-9,2021,10,0,39,0,1,0,0,7.6225414,7.6225414,.05,.05,0,0,0,0,0,0,0,0,0,6.2907386,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,2,4,0,3313,-197096.56,-3593.459,0,0,530.02057,3462.2239,921.19598 +3354,4123,7273,7274,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,9.2191601,8.9740648,0,2,-1,31.991774,0,-9,-9,2021,7,0,55,47,1,0,0,20.859856,20.859856,.05,.05,0,0,0,0,0,0,0,0,0,1.0061817,0,31.7,61.03,31.89,58.32,6.666666666666667,1,1,0,0,2,8,5,1,1426.5,337242.5,167028.3,366935.44,296289.56,12971.292,0,7045.2422 +3354,4123,7274,7273,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,9.1639814,9.2892733,0,2,1,-80.823456,0,2,2,2021,16,4,126,40,1,4,0,7.7759538,7.7759538,.05,.05,0,0,0,0,0,0,0,0,0,5.0475602,0,31.89,58.32,31.7,61.03,3.333333333333333,1,1,0,0,8,8,5,1,1426.5,337242.5,167028.3,366935.44,296289.56,12971.292,0,7045.2422 +3355,4124,7275,-9,-9,-9,1,1,38,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1032.8103,0,2,2,2021,27,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.95,32.43,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,113,45727.617,26860.803,0,0,0,0,1110.2659 +3356,4125,7276,7279,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.9571085,8.7182732,0,23,3,209.21846,0,2,2,2021,9,0,35,35,1,0,0,22.48057,22.48057,.05,.05,0,0,0,0,0,0,1,1,0,4.211781,0,54.2,57.49,44.64,55.04,1.666666666666667,1,1,0,0,9,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7277,-9,7279,7276,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.76776,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7278,-9,7279,7276,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0083,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7279,7276,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.9596076,7.5340672,0,23,-3,56.033325,0,3,3,2021,11,2,33,33,1,2,0,9.3474655,9.3474655,0,0,0,0,0,0,0,0,1,1,0,2.3944495,0,44.64,55.04,54.2,57.49,6.666666666666667,1,1,0,0,11,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3356,4125,7280,-9,7279,7276,1,1,17,0,2,1,2,0,0,0,4,0,3.746985,3.5845749,0,0,-994.40192,-9,1,1,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5967386,0,39.39,57.52,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1303.8,430755.13,233945.59,298503.28,53121.23,0,0,4073.342 +3357,4126,7281,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.7991333,7.8495045,0,0,-943.48236,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4966044,7.6985669,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,886,448454.47,363360.66,125122.02,99425.055,0,0,1470.5958 +3358,4127,7282,7283,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.6214347,7.3437352,0,12,1,-147.51321,0,-9,-9,2021,7,0,30,24,1,0,0,6.8388205,6.8388205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,53.02,53.93,8.333333333333334,1,1,0,0,13,11,4,1,618,398505.94,234347.84,45589.586,0,0,0,2758.1802 +3358,4127,7283,7282,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.240695,7.9719648,0,12,-1,-55.941219,0,3,3,2021,8,0,37,37,1,0,0,10.53926,10.53926,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.02,53.93,54.74,57.22,8.333333333333334,1,1,0,0,13,11,4,1,618,398505.94,234347.84,45589.586,0,0,0,2758.1802 +3359,4128,7284,7285,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.8843637,7.2944384,41,5,-37.804543,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3807755,7.5077753,50.6,45.8,40.1,54.56,6.666666666666667,1,1,0,0,1,5,3,1,664,748926.13,454112.31,-28507.756,0,0,0,2084.3701 +3359,4128,7285,7284,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.3778148,6.3837123,10,-5,-23.505878,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.2997098,6.4332304,40.1,54.56,50.6,45.8,8.333333333333334,1,1,0,0,0,5,3,1,664,748926.13,454112.31,-28507.756,0,0,0,2084.3701 +3360,4129,7286,-9,7287,7289,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8854,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3360,4129,7287,7289,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,9.1422882,9.3341522,0,9,-1,19.275423,0,3,3,2021,12,2,72,0,1,2,0,17.970118,17.970118,0,0,0,0,0,0,0,0,0,0,0,0,0,45.95,31.45,58.74,48.72,8.333333333333334,2,3,0,0,0,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3360,4129,7288,-9,7287,7289,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-958.06378,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3360,4129,7289,7287,-9,-9,1,1,34,1,2,0,1,1,-9,0,5,9.4410181,9.1393986,0,9,1,-107.63673,0,1,1,2021,8,0,40,40,1,0,0,31.786194,31.786194,.05,.05,0,0,0,0,0,0,0,0,0,3.5158048,0,58.74,48.72,45.95,31.45,8.333333333333334,2,3,0,0,9,8,5,1,1048.5,199341.33,103413.16,0,0,0,0,9581.1807 +3361,4130,7290,7291,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.378212,5.9828753,44,-6,-138.81287,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.335104,6.1700902,57.16,56.15,63.41,39.7,8.333333333333334,1,1,0,0,12,6,2,1,339,-13690.271,108172.2,0,0,0,0,2285.4138 +3361,4130,7291,7290,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.6783309,5.4200077,44,6,-63.626701,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6724839,5.237731,63.41,39.7,57.16,56.15,8.333333333333334,1,1,0,0,12,6,2,1,339,-13690.271,108172.2,0,0,0,0,2285.4138 +3362,4131,7292,7293,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.9833136,8.9053259,0,10,0,1.9411652,0,-9,-9,2021,11,0,35,40,1,0,0,32.530308,32.530308,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.06,51.94,42.95,61.24,8.333333333333334,1,1,0,0,12,9,5,1,714,973564.56,614314,1135101.6,691743.38,0,0,5632.2964 +3362,4131,7293,7292,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.7701559,8.7856035,0,10,0,93.975876,0,2,1,2021,17,6,52,53,1,6,0,18.318378,18.318378,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,43.06,51.94,8.333333333333334,1,1,0,0,10,9,5,1,714,973564.56,614314,1135101.6,691743.38,0,0,5632.2964 +3363,4132,7294,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,6.8970604,6.9876471,0,0,-1053.5359,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3758278,6.7798929,61.27,46.03,-9,-9,10,1,1,0,0,0,13,2,1,3875,242186.75,183443.58,135033.11,0,0,0,1657.4073 +3364,4133,7295,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.21777,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,5,1,1,1089,-24204.27,0,0,0,0,0,1325.4163 +3364,4134,7296,-9,7295,-9,1,0,42,0,0,0,3,3,-9,0,5,7.8785143,8.1218271,0,0,0,-974.1463,0,3,-9,2021,9,1,39,39,1,1,0,9.0526285,9.0526285,0,0,0,0,0,0,0,27,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,10,5,3,1,1060,42562.602,0,0,0,-244.27022,0,1057.8885 +3365,4135,7297,-9,7299,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.2909,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,301.66666,0,0,0,0,0,0,2826.0896 +3365,4135,7298,-9,7299,-9,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1026.2866,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.83,54.24,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,301.66666,0,0,0,0,0,0,2826.0896 +3365,4135,7299,-9,-9,-9,1,0,48,0,2,0,2,2,-9,1,1,0,6.5731754,6.089911,0,0,-1014.8298,0,-9,3,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4558463,0,20.99,36.84,-9,-9,1.666666666666667,1,1,0,0,3,11,2,0,301.66666,0,0,0,0,0,0,2826.0896 +3366,4136,7300,7301,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,7.1309195,6.8292904,50,-5,-42.577332,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,125.24439,129.52211,1072.1028,0,1,1,0,4.3509192,7.147944,25.41,27.62,52.39,45.21,5,1,1,0,0,3,2,3,1,780.5,697586.63,100365.45,583880.13,0,0,0,2975.199 +3366,4136,7301,7300,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.4266658,7.570231,50,5,-16.567108,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.6576965,7.3910327,52.39,45.21,25.41,27.62,5,1,1,0,0,0,2,3,1,780.5,697586.63,100365.45,583880.13,0,0,0,2975.199 +3367,4137,7302,7304,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.1901054,8.4574604,0,11,0,-78.957466,0,2,2,2021,7,0,36,33,1,0,0,15.032079,15.032079,.05,.05,0,0,0,0,0,0,1,1,0,1.7647285,0,55.76,52.64,50,57,8.333333333333334,1,1,0,0,9,12,5,1,942.33331,79273.484,58085.188,206817.92,142996.66,0,0,4834.123 +3367,4137,7303,-9,7302,7304,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.65833,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,942.33331,79273.484,58085.188,206817.92,142996.66,0,0,4834.123 +3367,4137,7304,7302,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.8940153,9.1368446,0,7,0,178.71561,-9,-9,-9,2021,10,0,37,0,1,1,0,19.037811,19.037811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,55.76,52.64,7,1,1,0,0,1,12,5,1,942.33331,79273.484,58085.188,206817.92,142996.66,0,0,4834.123 +3368,4138,7305,-9,7308,7306,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.84894,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3368,4138,7306,7308,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.9914513,8.8231373,0,17,-1,-14.887802,0,2,2,2021,11,1,41,40,1,1,0,20.39501,20.39501,.05,.05,0,0,0,0,0,0,0,0,0,7.0139766,0,59.7,53.75,58.5,44.67,8.333333333333334,1,1,0,0,11,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3368,4138,7307,-9,7308,7306,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-909.63452,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3368,4138,7308,7306,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,2.7429254,3.0669324,0,20,1,-59.053474,0,3,3,2021,10,1,42,40,1,1,0,.047413316,.047413316,0,0,0,0,0,0,0,0,0,0,0,1.2536718,0,58.5,44.67,59.7,53.75,8.333333333333334,1,1,0,0,11,11,4,1,768.75,353975.47,100810.34,305503.28,64190.375,0,4902.3145,3289.0405 +3369,4139,7309,7310,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.5844607,7.7187524,39,0,37.980629,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.472513,7.2384052,49.81,39.18,52.22,46,8.333333333333334,1,1,0,0,0,9,4,1,1494,1421196.8,353682.5,602858.38,0,0,0,3431.3022 +3369,4139,7310,7309,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,7.6868382,7.5743303,39,9,-40.279774,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.539825,7.7337489,52.22,46,49.81,39.18,10,1,1,0,0,0,9,4,1,1494,1421196.8,353682.5,602858.38,0,0,0,3431.3022 +3370,4140,7311,7312,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,0,0,0,15,-3,5.9738703,0,-9,-9,2021,21,8,0,30,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.07,56.44,39.96,57.17,6.666666666666667,1,1,0,0,6,5,5,1,553.66669,-26750.367,101135.46,108060.15,101064.95,25094.807,0,4529.252 +3370,4140,7312,7311,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,9.4643679,9.6637115,0,16,3,22.622784,0,2,2,2021,14,2,35,24,1,2,0,43.018459,43.018459,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.96,57.17,36.07,56.44,8.333333333333334,1,1,0,0,11,5,5,1,553.66669,-26750.367,101135.46,108060.15,101064.95,25094.807,0,4529.252 +3370,4140,7313,-9,7311,7312,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.49359,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,553.66669,-26750.367,101135.46,108060.15,101064.95,25094.807,0,4529.252 +3371,4141,7314,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,5.0307522,5.1302347,0,0,-1013.0404,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9550998,5.1946344,58.23,19.5,-9,-9,10,1,1,0,0,0,7,2,0,295,522482.31,82923.797,242662.75,0,0,0,1440.7888 +3372,4142,7315,7316,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.8915625,6.1411743,43,2,-95.011795,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4117312,5.8810005,35.93,49.57,49.43,44.66,3.333333333333333,1,1,0,0,0,9,5,1,768,3067307,1245726.5,425364.56,0,0,0,6332.4668 +3372,4142,7316,7315,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.9566278,8.8344793,43,-2,52.569809,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.1229377,9.1341677,49.43,44.66,35.93,49.57,3.333333333333333,1,1,0,0,0,9,5,1,768,3067307,1245726.5,425364.56,0,0,0,6332.4668 +3373,4143,7317,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1000.1569,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.3296181,0,38.99,43.23,-9,-9,5,1,1,0,0,0,10,1,0,957,31157.135,0,0,0,0,0,674.60712 +3374,4144,7318,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,8.1858053,7.9333701,0,0,0,-865.21521,0,-9,-9,2021,10,1,37,37,1,1,0,7.7257471,7.7257471,0,0,0,0,0,0,0,0,1,1,0,0,0,55.51,25.77,-9,-9,8.333333333333334,1,1,0,0,13,11,4,1,839,138359.47,0,0,0,0,0,773.82166 +3375,4145,7319,-9,-9,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-986.14496,-9,1,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,6.666666666666667,1,1,0,0,1,7,1,1,290,0,0,0,0,0,0,-87.101204 +3376,4146,7320,7321,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,7.7977004,7.6571741,0,12,0,55.307049,0,3,3,2021,14,3,23,45,1,3,0,10.520644,10.520644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.35,49.83,39.5,58.86,6.666666666666667,1,1,0,0,12,13,4,1,566,1602021.6,1035842.1,334471.56,0,0,0,4315.0869 +3376,4146,7321,7320,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.5985651,8.7613516,0,12,0,48.49176,0,-9,-9,2021,14,2,42,37,1,2,0,18.378862,18.378862,.05,.05,0,0,0,0,0,2,1,1,0,8.6851091,0,39.5,58.86,38.35,49.83,8.333333333333334,1,1,0,0,13,13,4,1,566,1602021.6,1035842.1,334471.56,0,0,0,4315.0869 +3376,4146,7322,-9,7320,7321,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.45221,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,566,1602021.6,1035842.1,334471.56,0,0,0,4315.0869 +3377,4147,7323,7324,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.8253384,6.7256732,9,-6,-59.846436,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1739721,55.62,43.18,55.36,54.24,8.333333333333334,1,1,0,0,0,9,2,1,423,720673.13,66687.617,507630.63,0,0,0,2025.4458 +3377,4147,7324,7323,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,0,0,9,6,-162.15582,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,55.62,43.18,10,1,1,0,0,0,9,2,1,423,720673.13,66687.617,507630.63,0,0,0,2025.4458 +3378,4148,7325,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,5.4527025,5.7242942,0,0,-894.94965,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8251634,5.5632768,58.65,41.84,-9,-9,8.333333333333334,3,4,0,0,5,8,2,1,1297,1051317.9,396834.72,541332.75,0,0,0,1660.1189 +3379,4149,7326,-9,7327,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.52045,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,166.33333,99155.18,90747.453,0,0,0,1510.6259,2373.8513 +3379,4149,7327,-9,-9,-9,1,0,31,0,2,0,1,1,-9,0,4,8.1250715,8.3583469,6.3535852,0,0,-978.06757,-9,3,3,2021,18,7,24,0,1,7,0,14.705477,14.705477,.05,.05,0,0,0,0,0,0,1,1,0,6.4403229,0,40.52,58.36,-9,-9,5,1,1,0,0,8,4,3,0,166.33333,99155.18,90747.453,0,0,0,1510.6259,2373.8513 +3379,4149,7328,-9,7327,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.3514,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,166.33333,99155.18,90747.453,0,0,0,1510.6259,2373.8513 +3380,4150,7329,7330,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.2542367,3.892164,52,-1,39.527237,0,-9,-9,2021,12,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4516363,3.8114679,57.24,46.7,62.49,55.09,10,1,1,0,0,11,9,2,1,506.5,379538.94,64072.547,268471.25,0,0,0,749.56506 +3380,4150,7330,7329,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.353334,6.4118953,52,1,-3.7586904,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6275315,6.5261879,62.49,55.09,57.24,46.7,10,1,1,0,0,10,9,2,1,506.5,379538.94,64072.547,268471.25,0,0,0,749.56506 +3380,4151,7331,-9,7329,7330,1,1,45,0,0,0,3,3,-9,0,4,7.897718,7.6918764,0,0,0,-959.86401,-9,3,2,2021,9,0,40,0,1,1,0,8.0299807,8.0299807,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,9,4,1,71,-73023.898,10382.664,0,0,0,0,1296.3079 +3381,4152,7332,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,7.5486465,7.3324823,0,0,0,-880.55017,0,1,1,2021,6,0,16,6,1,0,0,14.757867,14.757867,0,0,0,0,0,0,0,0,1,1,0,8.0315809,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,7,7,3,1,422,-47209.934,0,0,0,0,0,2649.3953 +3382,4153,7333,7335,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.5996704,7.4178157,0,9,0,38.563816,0,-9,-9,2021,15,4,22,23,1,4,0,8.6143484,8.6143484,0,0,0,0,0,0,0,2,1,1,0,0,0,37.36,58.26,52.41,42.18,5,1,1,0,0,10,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3382,4153,7334,-9,7333,7335,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.63947,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3382,4153,7335,7333,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,8.1491194,7.9794397,0,9,9,-8.6615677,0,-9,-9,2021,6,0,37,38,1,0,0,12.572631,12.572631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.41,42.18,37.36,58.26,5,1,1,0,1,11,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3382,4153,7336,-9,7333,7335,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1034.9341,-9,2,3,2021,22,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3748175,0,30.72,59.29,-9,-9,1.666666666666667,1,1,0,0,0,9,3,0,1075.5,326861.03,126793.28,249359.22,0,2250.0901,866.21631,2309.3982 +3383,4154,7337,-9,7338,7339,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.567,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3383,4154,7338,7339,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,6.3778229,6.890347,0,24,0,61.267872,0,2,2,2021,12,0,22,13,1,0,0,3.6051269,3.6051269,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,39.32,46.01,8.333333333333334,1,1,0,0,5,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3383,4154,7339,7338,-9,-9,1,1,54,0,2,0,3,3,-9,0,2,7.7394085,7.4694738,0,24,9,-3.276443,0,2,-9,2021,12,0,42,42,1,0,0,5.8651571,5.8651571,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.32,46.01,52.48,54.33,5,1,1,0,0,8,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3383,4154,7340,-9,7338,7339,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.5183,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,948,210783.48,6670.1758,112502.68,0,0,0,1388.7837 +3384,4155,7341,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.0994864,8.0037003,0,0,0,-983.70337,0,-9,-9,2021,9,0,42,37,1,0,0,6.7870517,6.7870517,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,1711,76707.492,110619.65,0,0,0,0,917.11481 +3385,4156,7342,7343,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.4247437,8.5122108,0,12,13,81.818611,0,2,-9,2021,7,1,1,1,1,1,0,640.74542,640.74542,0,0,0,0,0,0,0,0,0,0,0,4.1520114,0,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,1101.5,5085178.5,3251877.5,734400.69,0,0,0,5453.5835 +3385,4156,7343,7342,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.2073545,8.0629997,5.0550785,12,-13,-31.02566,0,1,1,2021,7,0,35,35,1,0,0,11.93115,11.93115,0,0,0,0,0,0,0,0,0,0,0,7.0641322,0,57.16,56.15,58.05,54.52,10,1,1,0,0,14,9,5,1,1101.5,5085178.5,3251877.5,734400.69,0,0,0,5453.5835 +3386,4157,7344,-9,7345,7346,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.53339,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,5,1,881.66669,-63318.324,42588.785,0,0,0,0,3410.3582 +3386,4157,7345,7346,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.4543419,8.5245466,0,10,-7,-55.41003,0,2,2,2021,19,7,30,30,1,7,0,16.860573,16.860573,0,0,0,0,0,0,0,0,1,1,0,0,0,25.92,69.01000000000001,44.55,54.01,6.666666666666667,1,1,0,0,8,7,5,1,881.66669,-63318.324,42588.785,0,0,0,0,3410.3582 +3386,4157,7346,7345,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.4917698,8.3046017,0,10,7,19.306946,0,2,1,2021,11,1,49,43,1,1,0,10.701817,10.701817,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.55,54.01,25.92,69.01000000000001,1.666666666666667,1,1,0,0,10,7,5,1,881.66669,-63318.324,42588.785,0,0,0,0,3410.3582 +3387,4158,7347,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.5696449,8.9196615,0,15,-3,128.05042,0,2,1,2021,10,0,45,-9,1,0,0,15.718749,15.718749,0,0,0,0,0,0,0,0,0,0,0,2.4500659,0,45.81,61.51,53.98,50.87,8.333333333333334,1,1,0,0,4,8,5,1,485,-53500.945,0,0,0,0,0,2618.3638 +3387,4159,7348,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.559164,9.4341555,0,3,3,6.5380683,0,-9,-9,2021,14,3,50,60,1,3,0,18.292006,18.292006,.05,.05,0,0,0,0,0,0,0,0,0,4.6679034,0,53.98,50.87,45.81,61.51,3.333333333333333,1,1,0,0,4,8,5,1,1075,216418.27,144593.98,371862.47,190347.41,9004.2139,0,3734.5576 +3388,4160,7349,7350,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5491581,8.4429979,0,2,-14,12.53335,0,-9,-9,2021,9,0,40,38,1,0,0,15.666713,15.666713,.05,.05,0,0,0,0,0,0,0,0,0,3.4833932,0,57.16,56.15,59.29,49.68,6.666666666666667,1,1,0,0,3,13,5,1,196,172015.56,272227.97,150952.36,60530.977,55027.922,0,3476.2813 +3388,4160,7350,7349,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.5236158,8.5273924,0,2,14,-85.618546,0,3,3,2021,7,0,45,43,1,0,0,10.022764,10.022764,.05,.05,0,0,0,0,0,2,0,0,0,0,0,59.29,49.68,57.16,56.15,6.666666666666667,1,1,0,0,13,13,5,1,196,172015.56,272227.97,150952.36,60530.977,55027.922,0,3476.2813 +3389,4161,7351,7352,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.5398464,7.1284723,6,-1,76.964157,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8030195,7.0595918,56.31,38.83,62.49,55.09,10,1,1,0,0,0,12,3,1,1309.5,605887.5,294288.69,226949.78,0,0,0,3054.4331 +3389,4161,7352,7351,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,6.4653025,6.7242551,6,1,57.095779,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.985116,6.4963703,62.49,55.09,56.31,38.83,10,1,1,0,0,6,12,3,1,1309.5,605887.5,294288.69,226949.78,0,0,0,3054.4331 +3390,4162,7353,7354,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,9.2603674,9.1193905,0,40,3,111.9071,0,3,3,2021,7,0,40,55,1,0,0,20.18387,20.18387,.05,.05,0,0,0,0,0,0,0,0,0,3.3222146,0,61.1,41.19,45.85,61.26,8.333333333333334,1,1,0,0,10,10,5,1,1102,829276,324767.34,349401.88,0,0,0,3430.1897 +3390,4162,7354,7353,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,0,0,40,-3,-17.604826,0,3,3,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.6801596,0,45.85,61.26,61.1,41.19,6.666666666666667,1,1,1,0,8,10,5,1,1102,829276,324767.34,349401.88,0,0,0,3430.1897 +3391,4163,7355,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,7.332283,7.251215,5.8722615,0,0,-1092.3273,0,2,3,2021,6,0,7,7,1,0,0,24.14669,24.14669,0,0,0,0,0,0,0,0,1,1,0,0,6.1664691,59.68,56.78,-9,-9,8.333333333333334,1,1,0,0,11,12,3,1,897,475863.53,0,469147.44,45337.672,5299.4351,0,2151.9143 +3392,4164,7356,7357,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2699499,8.640831,0,8,3,58.68121,0,2,2,2021,12,0,48,46,1,0,0,8.508729,8.508729,0,0,.05,0,0,0,0,0,0,0,0,7.2126446,0,46.93,51.35,50.77,46.67,6.666666666666667,1,1,0,0,9,9,5,1,541,516715.47,145679.81,387251.38,74048.5,0,0,3713.8738 +3392,4164,7357,7356,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.7208834,8.6459303,0,8,-3,80.21859,0,2,2,2021,16,6,37,36,1,6,0,20.053291,20.053291,0,0,0,0,0,0,0,0,0,0,0,3.4365027,0,50.77,46.67,46.93,51.35,6.666666666666667,1,1,0,0,9,9,5,1,541,516715.47,145679.81,387251.38,74048.5,0,0,3713.8738 +3393,4165,7358,7359,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,4.9274507,4.8291597,11,21,-158.80412,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8077064,4.8366709,66.37,38.36,52,55,5,2,3,0,0,3,7,4,1,543.5,740735.06,323458.63,144563.55,0,0,0,3608.6025 +3393,4165,7359,7358,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.6244926,8.5409813,0,11,-21,93.305893,0,3,3,2021,9,0,40,0,1,1,0,19.258884,19.258884,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,55,66.37,38.36,8,2,3,0,0,1,7,4,1,543.5,740735.06,323458.63,144563.55,0,0,0,3608.6025 +3394,4166,7360,7362,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.1439381,8.0440912,0,28,0,58.972881,0,2,3,2021,12,0,34,33,1,0,0,10.365561,10.365561,0,0,0,0,0,0,0,0,1,1,0,3.4650388,0,46.59,56.95,54.79,55.86,6.666666666666667,1,1,0,0,9,5,4,1,651.33331,95042.406,93386.672,0,0,8273.3848,0,2649.6682 +3394,4166,7361,-9,7360,7362,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-903.92444,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,651.33331,95042.406,93386.672,0,0,8273.3848,0,2649.6682 +3394,4166,7362,7360,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.4134407,8.4766693,0,27,0,32.294083,0,2,2,2021,9,0,47,43,1,0,0,9.9557428,9.9557428,.05,.05,0,0,0,0,0,0,1,1,0,3.8027301,0,54.79,55.86,46.59,56.95,8.333333333333334,1,1,0,0,7,5,4,1,651.33331,95042.406,93386.672,0,0,8273.3848,0,2649.6682 +3394,4167,7363,-9,7360,7362,1,0,20,0,1,0,2,2,-9,0,3,7.9173846,7.59582,0,0,0,-1071.64,0,2,2,2021,18,5,44,40,1,5,1,6.4480577,6.4480577,0,0,0,0,0,0,0,0,1,1,0,.67495376,0,37.44,59.97,-9,-9,1.666666666666667,1,1,0,0,4,5,3,1,3770,-191485.75,0,0,0,0,0,717.89258 +3395,4168,7364,7365,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,0,6.4186521,6.0136094,6,-2,-49.788837,0,2,2,2021,6,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8311229,59.43,58.05,42.86,48.04,10,1,1,0,0,6,11,4,1,457.5,1946202.1,1335833.3,137247.58,0,0,0,2224.3315 +3395,4168,7365,7364,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.3981543,8.4939537,6,2,-47.887177,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3432617,8.278285,42.86,48.04,59.43,58.05,8.333333333333334,1,1,0,0,2,11,4,1,457.5,1946202.1,1335833.3,137247.58,0,0,0,2224.3315 +3396,4169,7366,-9,7368,7367,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1094.8458,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3396,4169,7367,7368,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.2927427,8.1551657,0,6,1,53.031952,0,3,2,2021,8,0,39,39,1,0,0,10.055821,10.055821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,57.73,54.53,8.333333333333334,1,1,0,0,9,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3396,4169,7368,7367,-9,-9,1,0,46,0,1,0,2,2,-9,1,4,7.1815619,7.2053657,0,6,-1,-20.033155,0,3,2,2021,6,0,25,25,1,0,0,7.7915349,7.7915349,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,52.99,51.28,8.333333333333334,1,1,0,0,9,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3396,4169,7369,-9,7368,7367,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1021.7278,-9,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,1,0,0,13,3,1,904.25,101980.46,9198.1406,111712.31,67212.211,0,0,2945.2334 +3397,4170,7370,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.3581944,5.0570135,0,0,-1076.8215,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0982203,5.2461581,47.3,45.59,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,3718,71604.328,0,0,0,0,0,519.30707 +3398,4171,7371,7372,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,39,0,11.320313,0,3,3,2021,16,6,0,35,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,32.15,53.42,52.83,49.11,3.333333333333333,1,1,0,1,9,8,4,1,1135,442870.03,397585.31,169918.41,0,0,0,2045.4814 +3398,4171,7372,7371,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6134825,8.6266842,0,39,0,38.079643,0,3,2,2021,6,0,40,36,1,0,0,15.269738,15.269738,0,0,0,0,0,0,0,7,1,1,0,0,0,52.83,49.11,32.15,53.42,10,1,1,0,0,8,8,4,1,1135,442870.03,397585.31,169918.41,0,0,0,2045.4814 +3398,4172,7373,-9,7371,7372,1,0,29,0,0,0,2,2,-9,0,1,7.4079876,7.2552075,0,0,0,-1023.9582,0,2,2,2021,7,0,31,0,1,0,1,5.2597866,5.2597866,0,0,0,0,0,0,0,7,1,1,0,0,0,60.12,22.99,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,811,-81070.992,0,0,0,0,0,-459.63339 +3398,4173,7374,-9,7371,7372,1,1,37,0,0,0,2,2,-9,0,1,8.9163656,8.3791132,0,0,0,-917.82587,0,2,2,2021,10,0,65,48,1,0,1,10.014733,10.014733,.05,.05,0,0,0,0,0,7,1,1,0,5.3398004,0,53.15,40.89,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,753,188601.47,88691.961,0,0,0,0,2252.8853 +3399,4174,7375,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.2860765,9.712779,8.1257658,0,0,-893.37689,0,2,2,2021,5,1,48,47,1,1,0,26.045557,26.045557,.05,.05,0,0,0,0,0,0,0,0,0,0,8.3983784,60.13,49.27,-9,-9,10,1,1,0,0,12,10,5,1,1175,319691.97,143766.44,0,0,13303.506,5260.7021,4476.9517 +3400,4175,7376,-9,7377,7379,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1128.3068,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7377,7379,-9,-9,1,0,45,0,4,0,1,1,-9,0,5,8.7647133,8.9107628,0,8,0,137.54117,0,2,3,2021,13,4,37,47,1,4,0,19.800951,19.800951,.05,.05,0,0,0,0,0,0,1,1,0,3.9029446,0,51.67,60.18,48.62,49.45,6.666666666666667,1,1,0,0,8,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7378,-9,7377,7379,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.7781,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7379,7377,-9,-9,1,1,45,0,4,0,2,2,-9,0,3,8.2483816,8.6697922,0,8,0,-115.22433,0,2,3,2021,17,5,45,46,1,5,0,11.425737,11.425737,.05,.05,0,0,0,0,0,0,1,1,0,2.0687408,0,48.62,49.45,51.67,60.18,8.333333333333334,1,1,0,0,8,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7380,-9,7377,7379,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-999.27411,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3400,4175,7381,-9,7377,7379,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-950.7785,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,2411,4309340,950093.75,902476.19,62523.988,16362.592,0,4073.2861 +3401,4176,7382,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.9375134,9.092638,0,0,0,-1009.5219,0,2,2,2021,7,0,77,37,1,0,0,10.742228,10.742228,.05,.05,0,0,0,0,0,0,1,1,0,7.7473822,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,10,12,5,1,709,230092.66,195291.66,75366.086,57598.309,0,27113.848,3379.3916 +3402,4177,7383,7384,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,23,17,-30.945871,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,15.672678,0,0,1,1,0,0,0,43.43,44.84,60.86,50.49,8.333333333333334,1,1,0,0,0,10,2,0,373,245453.81,242051.38,0,0,0,0,1905.5594 +3402,4177,7384,7383,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.8951597,6.859355,0,7,-17,-108.80815,0,-9,-9,2021,9,0,16,16,1,0,0,6.4326925,6.4326925,0,0,0,0,0,0,0,0,1,1,0,0,0,60.86,50.49,43.43,44.84,10,1,1,0,0,10,10,2,0,373,245453.81,242051.38,0,0,0,0,1905.5594 +3403,4178,7385,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.8848743,9.1814022,0,0,0,-1067.5374,0,2,2,2021,12,0,39,39,1,0,0,24.583805,24.583805,.05,.05,.05,0,0,0,0,2,0,0,0,5.4608388,0,60.57,46.44,-9,-9,10,1,1,0,0,13,5,5,1,405,173814.59,46345.254,180299.23,91368.281,0,3693.5769,2591.5305 +3403,4179,7386,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.3009634,8.5404673,0,0,0,-974.20776,0,3,3,2021,12,3,42,40,1,3,0,11.894112,11.894112,.05,.05,0,0,0,0,0,2,0,0,0,4.9168959,0,33.04,66.23999999999999,-9,-9,3.333333333333333,1,1,0,0,11,5,4,1,77,298808.69,251309.92,288823.16,0,0,1534.387,1500.8173 +3404,4180,7387,7388,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.1416459,7.1995797,35,0,-59.900242,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2615047,61.43,43.34,57.06,57.76,8.333333333333334,1,1,0,0,5,7,3,1,560,1177068.5,97537.164,652761.13,0,0,0,1625.7319 +3404,4180,7388,7387,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,6.9268165,8.2586279,7.2944827,35,9,-26.973227,0,-9,-9,2021,8,0,12,15,1,0,0,8.5063715,8.5063715,.05,.05,0,0,0,0,0,14.5,0,0,0,3.4355607,7.5024357,57.06,57.76,61.43,43.34,8.333333333333334,1,1,0,0,9,7,3,1,560,1177068.5,97537.164,652761.13,0,0,0,1625.7319 +3405,4181,7389,7390,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.0842028,7.0120211,41,8,-7.6906056,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9002008,53,47,50,47,7,2,3,0,0,4,6,2,1,320.5,91791.984,-12065.873,113934.3,0,-279.8342,0,1450.062 +3405,4181,7390,7389,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,41,-8,-98.468903,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,53,47,7,2,3,0,0,0,6,2,1,320.5,91791.984,-12065.873,113934.3,0,-279.8342,0,1450.062 +3406,4182,7391,7392,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.5311418,5.6163988,43,-4,71.204605,0,3,3,2021,7,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.322819,5.8289857,51.41,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,2,1,684.5,180594.16,13692.664,0,0,0,0,493.57245 +3406,4182,7392,7391,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,40,4,-123.70285,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.41,56.15,8.333333333333334,1,1,0,0,8,10,2,1,684.5,180594.16,13692.664,0,0,0,0,493.57245 +3407,4183,7393,7394,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.7163987,7.7098055,9,-1,-2.7792141,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7939224,7.5465779,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,10,13,4,1,375.5,987104.63,915723.88,0,0,560.80872,0,3010.3589 +3407,4183,7394,7393,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0956659,8.2209101,0,9,1,44.711121,0,-9,-9,2021,12,0,37,37,1,0,0,11.594303,11.594303,0,0,0,0,0,0,0,0,0,0,0,7.4552684,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,10,13,4,1,375.5,987104.63,915723.88,0,0,560.80872,0,3010.3589 +3408,4184,7395,-9,7398,7399,1,0,11,2,4,1,3,0,-9,0,4,0,0,0,0,0,-971.61108,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7396,-9,7398,7399,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-902.24878,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7397,-9,7398,7399,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-966.82214,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7398,7399,-9,-9,1,0,29,2,4,0,2,2,-9,0,3,0,0,0,7,1,-14.2688,0,2,2,2021,8,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.58,54.26,42.05,58.8,8.333333333333334,1,1,0,0,5,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7399,7398,-9,-9,1,1,28,2,4,0,2,2,-9,0,4,7.9174929,7.9660358,0,7,-1,145.98755,0,2,2,2021,11,1,70,40,1,1,0,4.7925935,4.7925935,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,58.8,49.58,54.26,5,1,1,0,0,9,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3408,4184,7400,-9,7398,7399,1,1,8,2,4,1,3,0,-9,0,4,0,0,0,0,0,-945.51367,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,678.66669,16322.688,6412.4751,0,0,6196.9673,0,1733.3315 +3409,4185,7401,-9,7403,7402,1,0,68,0,0,0,3,3,-9,0,2,0,8.2430429,8.3078985,0,0,-981.39954,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,8.0896816,33.76,33.31,-9,-9,5,1,1,0,0,0,8,4,1,807,1789526,1310992.8,428356.66,0,0,0,1750.7031 +3409,4186,7402,7403,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.5300937,7.0063052,8,-1,15.963381,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8201425,6.7025952,55,45,53,44,8,1,1,0,0,0,8,2,1,970,935544,-22649.012,448550.97,0,0,0,1247.6755 +3409,4186,7403,7402,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,8,1,-42.560486,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,2,1,970,935544,-22649.012,448550.97,0,0,0,1247.6755 +3410,4187,7404,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,7.0672359,6.664103,0,0,-973.87482,0,-9,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.607708,37.49,23.33,-9,-9,1.666666666666667,1,1,0,0,3,6,2,1,759,85482.063,0,62546.598,0,4728.9707,0,1967.2656 +3411,4188,7405,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1077.4427,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.22,46.37,-9,-9,8.333333333333334,1,1,0,0,8,1,1,1,809,422971.63,0,226513.77,0,0,0,929.27594 +3412,4189,7406,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.0306396,6.0352883,0,0,-857.41809,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5024471,5.9017372,60.81,43.46,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,669,365515.41,108703.99,252657.14,0,0,0,346.93015 +3413,4190,7407,7408,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,26,3,0,0,-9,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,36.72,31.87,55.25,3.333333333333333,1,1,0,0,0,7,1,0,1366,48561.801,0,0,0,0,0,1908.929 +3413,4190,7408,7407,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,26,-3,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,31.87,55.25,26.95,36.72,5,1,1,0,0,0,7,1,0,1366,48561.801,0,0,0,0,0,1908.929 +3413,4191,7409,-9,7408,7407,1,0,21,0,0,0,2,2,-9,0,5,7.3857517,7.9449272,0,0,0,-1046.0363,0,2,2,2021,6,0,43,40,1,0,1,5.7009559,5.7009559,0,0,0,0,0,0,0,7,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,3,7,3,0,1165,-22245.832,-56874.094,0,0,6294.8921,0,1172.1232 +3414,4192,7410,7411,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.183372,6.8335915,20,8,1.6130104,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2909079,6.677299,54.79,55.86,58.55,46.11,10,1,1,0,0,0,12,3,1,352.5,1267784.3,802937.25,138784.81,0,0,0,3855.8467 +3414,4192,7411,7410,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.2393465,8.115263,20,-8,-61.299812,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7490497,7.8647876,58.55,46.11,54.79,55.86,10,1,1,0,0,8,12,3,1,352.5,1267784.3,802937.25,138784.81,0,0,0,3855.8467 +3415,4193,7412,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,6.8414531,6.6403503,0,0,-1114.2792,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8143077,59.86,48.06,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,454,347877.19,-63268.605,91341.055,0,0,0,1029.9049 +3416,4194,7413,7414,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,5,4,0,0,-9,-9,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.39,20.22,34.54,34.27,5,1,1,0,0,0,12,1,0,522,189175.31,0,0,0,0,0,2669.0862 +3416,4194,7414,7413,-9,-9,1,1,52,0,0,0,3,3,-9,0,2,0,0,0,5,-4,0,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,34.54,34.27,24.39,20.22,3.333333333333333,1,1,1,0,2,12,1,0,522,189175.31,0,0,0,0,0,2669.0862 +3417,4195,7415,-9,7417,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.1676,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,290.66666,20097.6,54944.426,91676.984,55983.23,0,0,2058.7705 +3417,4195,7416,-9,7417,-9,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1038.8311,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,3,0,290.66666,20097.6,54944.426,91676.984,55983.23,0,0,2058.7705 +3417,4195,7417,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.6449242,7.7898564,6.0933371,0,0,-1132.8655,0,3,3,2021,10,0,24,36,1,0,0,8.3151045,8.3151045,.05,.05,0,0,0,0,0,0,1,1,0,6.0880837,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,12,3,0,290.66666,20097.6,54944.426,91676.984,55983.23,0,0,2058.7705 +3418,4196,7418,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,3.7881901,3.8602705,0,0,-973.49316,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,25.456522,20.67555,237.93669,0,1,1,0,0,4.0697727,44.44,25.81,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1392,314779.63,31318.4,328463.59,0,0,0,692.34155 +3419,4197,7419,7421,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.8075151,8.3152199,0,1,1,10.840693,-9,-9,-9,2021,12,2,65,0,1,2,0,9.0758257,9.0758257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.92,45.17,58.92,48.59,6.666666666666667,2,3,0,0,10,4,4,1,1187.3334,-31241.068,33184.078,0,0,8341.4707,736.61865,2029.2363 +3419,4197,7420,-9,7421,7419,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.55219,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,4,1,1187.3334,-31241.068,33184.078,0,0,8341.4707,736.61865,2029.2363 +3419,4197,7421,7419,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,0,0,0,1,-1,-105.12689,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.98907864,0,58.92,48.59,54.92,45.17,10,2,3,0,0,0,4,4,1,1187.3334,-31241.068,33184.078,0,0,8341.4707,736.61865,2029.2363 +3420,4198,7422,-9,7423,7424,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.2774,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3420,4198,7423,7424,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,0,0,0,12,-2,86.751976,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7552772,0,57.06,57.76,48.17,49.37,8.333333333333334,1,1,0,0,2,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3420,4198,7424,7423,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,5.7291903,5.6515594,0,12,2,73.22821,0,2,2,2021,7,0,50,45,1,0,0,.89959747,.89959747,.05,.05,0,0,0,0,0,0,0,0,0,5.0942163,0,48.17,49.37,57.06,57.76,8.333333333333334,1,1,0,0,9,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3420,4198,7425,-9,7423,7424,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.10187,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,2,1,310.5,1165456.6,146616.03,1649752.3,977319.63,0,0,107.14891 +3421,4199,7426,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1070.5072,0,2,2,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.83,19.91,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,1763,-4479.644,0,0,0,0,0,1093.5665 +3422,4200,7427,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,5.5068436,5.6188002,0,0,0,-1119.8885,0,2,2,2021,28,10,70,70,1,10,0,.50623041,.50623041,0,0,0,0,0,0,0,0,0,0,0,1.775093,0,17.19,54.62,-9,-9,1.666666666666667,1,1,0,0,8,11,2,1,114,252179.31,73181.742,0,0,0,0,271.2876 +3423,4201,7428,7429,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8692122,8.6011572,7.6994452,7,-2,-15.457257,0,2,3,2021,6,0,40,24,1,0,0,7.5755534,7.5755534,.05,.05,0,0,0,0,0,0,0,0,0,0,7.7722468,56.77,52.22,48.93,50.55,1.666666666666667,1,1,0,0,7,12,5,1,871.5,822956.63,767710.88,165261.91,86430.461,0,4916.6387,3089.0659 +3423,4201,7429,7428,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4680367,8.2371769,0,7,2,52.736561,0,3,3,2021,10,0,39,39,1,0,0,10.945518,10.945518,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.93,50.55,56.77,52.22,6.666666666666667,1,1,0,0,8,12,5,1,871.5,822956.63,767710.88,165261.91,86430.461,0,4916.6387,3089.0659 +3424,4202,7430,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,9.0736971,9.218112,0,0,0,-1074.499,0,2,2,2021,15,3,60,60,1,3,0,21.242477,21.242477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.64,55.03,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,3567,138358.81,-2906.3804,91531.453,102440.14,14004.344,10625.463,4035.6528 +3425,4203,7431,-9,7435,7432,1,1,10,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1048.8824,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7432,7435,-9,-9,1,1,46,1,6,0,1,1,-9,0,4,8.4731283,8.5750723,0,14,12,15.682818,0,2,3,2021,10,0,37,29,1,0,0,15.830559,15.830559,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.77,60.16,8.333333333333334,2,3,0,0,12,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7433,-9,7435,7432,1,0,9,1,6,1,3,0,-9,0,4,0,0,0,0,0,-910.56873,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7434,-9,7435,7432,1,0,5,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1119.601,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7435,7432,-9,-9,1,0,34,1,6,0,2,2,-9,0,5,0,0,0,11,-12,150.59801,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,57.16,56.15,8.333333333333334,2,3,0,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7436,-9,7435,7432,1,1,15,1,6,1,3,0,-9,0,3,0,0,0,0,0,-1101.4806,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7437,-9,7435,7432,1,0,7,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1014.9232,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3425,4203,7438,-9,7435,7432,1,1,2,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1127.8501,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,374.875,35354.09,16694.176,103029.84,63007.742,16536.893,0,3156.022 +3426,4204,7439,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1137.4769,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.92693704,0,65.63,42.66,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1055,-38941.543,0,0,0,0,0,212.03929 +3427,4205,7440,-9,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,9.1183624,8.9648056,0,0,0,-1056.6981,0,1,-9,2021,8,1,45,65,1,1,0,24.567404,24.567404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,2402,-136426.94,60218.473,0,0,1422.3522,1743.5457,3166.8533 +3427,4205,7441,-9,7440,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1172.193,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,2402,-136426.94,60218.473,0,0,1422.3522,1743.5457,3166.8533 +3428,4206,7442,7443,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,0,0,53,3,-47.896149,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1319041,0,61.68,47.24,60.6,49.26,8.333333333333334,1,1,0,0,8,2,2,1,646,130307.06,96290.953,180084.75,0,0,0,776.64478 +3428,4206,7443,7442,-9,-9,1,0,74,0,0,0,1,1,-9,0,5,0,6.3271651,6.2390056,51,-3,-46.617577,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4512234,5.9415545,60.6,49.26,61.68,47.24,10,1,1,0,0,6,2,2,1,646,130307.06,96290.953,180084.75,0,0,0,776.64478 +3429,4207,7444,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,2,0,.40548629,.53698307,0,0,-941.81488,-9,3,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.30649137,35.24,32.87,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,196,153598.36,39835.316,57104.09,-17978.121,0,0,779.8996 +3430,4208,7445,7446,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.790637,5.1063066,12,6,-37.693684,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7814617,5.1440639,60.12,54.8,51.83,57.2,8.333333333333334,1,1,0,0,3,5,2,1,635.5,86667.32,128918.72,0,0,230.10414,4374.3145,1744.2957 +3430,4208,7446,7445,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.3636837,5.9629011,12,-6,-62.939281,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5548615,6.1814899,51.83,57.2,60.12,54.8,8.333333333333334,1,1,0,0,10,5,2,1,635.5,86667.32,128918.72,0,0,230.10414,4374.3145,1744.2957 +3431,4209,7447,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.1933985,8.3428106,0,0,0,-1077.8984,0,2,2,2021,19,7,37,41,1,7,0,14.209763,14.209763,.05,.05,0,0,0,0,0,2,0,0,0,0,0,38.16,44.66,-9,-9,3.333333333333333,1,1,0,0,8,6,4,1,1300,1113665.4,603809.38,212709.86,0,2911.324,0,1673.7035 +3432,4210,7448,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-975.44794,0,3,-9,2021,24,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.14,45.25,-9,-9,6.666666666666667,4,2,0,0,0,8,1,0,425,63730.078,21182.117,48778.676,0,0,0,1170.0729 +3433,4211,7449,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.7895741,7.7860889,0,0,0,-1054.7729,0,3,-9,2021,10,0,30,60,1,0,0,10.819373,10.819373,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,348,165498.2,127318.9,0,0,3845.0784,0,1414.9712 +3434,4212,7450,7451,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3201475,8.3437424,0,6,-3,-39.241135,0,3,-9,2021,19,7,42,47,1,7,0,11.941341,11.941341,0,0,0,0,0,0,0,0,1,1,0,0,0,39.89,56.15,55.79,31.3,1.666666666666667,1,1,0,0,9,10,4,1,1521,447157.13,0,626103.88,171517.47,2844.0271,0,2727.7388 +3434,4212,7451,7450,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,7.021903,6.7578955,0,16,3,48.697903,0,-9,2,2021,11,1,14,0,1,1,0,8.006135,8.006135,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,31.3,39.89,56.15,5,1,1,0,1,2,10,4,1,1521,447157.13,0,626103.88,171517.47,2844.0271,0,2727.7388 +3434,4213,7452,-9,7451,7450,1,1,24,0,0,0,2,2,-9,0,4,7.818058,7.4500294,0,0,0,-932.35657,0,2,2,2021,10,0,26,36,1,1,1,7.9483333,7.9483333,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,10,3,1,454,-57178.23,0,0,0,0,0,1141.1735 +3434,4214,7453,-9,7451,7450,1,1,19,0,0,0,2,2,1,0,3,7.5545373,7.8488126,0,0,0,-904.13049,-9,2,2,2021,12,0,45,0,1,2,1,4.9749904,4.9749904,0,0,0,0,0,0,0,0,1,1,0,0,0,48.72,34.08,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,81,-96972.445,0,0,0,-499.20792,0,920.12976 +3435,4215,7454,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,9.2676048,8.8819275,0,0,0,-990.0816,0,1,1,2021,9,0,45,45,1,0,0,18.672455,18.672455,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.44,43.52,-9,-9,5,1,1,0,0,12,7,5,1,312,736242.06,258023.92,876799.75,429732.66,26956.686,0,3260.2292 +3436,4216,7455,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,8.1516829,8.1515646,0,0,-1034.3728,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1424103,51.51,43.95,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1153,1283114,223534.92,889364.31,0,0,0,2255.1396 +3436,4217,7456,-9,7455,-9,1,0,60,0,0,0,1,1,-9,0,3,8.7631512,8.7666845,8.0351095,0,0,-952.62396,0,2,1,2021,7,0,55,54,1,0,0,11.65493,11.65493,0,0,0,0,0,0,0,0,1,1,0,0,8.2256107,61.43,43.34,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,819,-59776.102,0,0,0,0,0,3197.2041 +3437,4218,7457,7458,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.2889376,8.4670439,0,1,2,78.925583,0,2,2,2021,8,0,40,40,1,0,0,14.588801,14.588801,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,10,1,5,1,833.5,288188.44,83571.109,206129.8,153551.25,-518.6322,658.40405,4803.9731 +3437,4218,7458,7457,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7480125,8.9196625,0,1,-2,53.777573,-9,-9,-9,2021,7,0,38,0,1,0,0,17.007715,17.007715,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.24,58.84,10,1,1,0,0,3,1,5,1,833.5,288188.44,83571.109,206129.8,153551.25,-518.6322,658.40405,4803.9731 +3438,4219,7459,7461,-9,-9,1,0,33,1,2,0,2,2,-9,0,2,0,0,0,7,0,-69.448265,0,3,2,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.22,47,51,56,10,2,3,0,0,0,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4219,7460,-9,7459,7461,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-935.30334,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4219,7461,7459,7463,-9,1,1,42,1,2,0,2,2,-9,0,4,9.4604397,9.4786987,0,7,9,54.662247,0,3,3,2021,9,0,40,20,1,1,0,42.164738,42.164738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46.22,47,8,2,3,0,0,10,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4219,7462,-9,7459,7461,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.61957,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,0,1136.75,312081.34,73743.336,182223.63,53672.008,10114.456,1535.6235,5800.3652 +3438,4220,7463,-9,-9,-9,1,0,66,1,2,0,3,3,-9,0,3,0,5.9710579,5.9347782,0,0,-1066.6422,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7881441,50,47,-9,-9,7,2,3,0,0,0,6,2,0,692,327194.44,270084.78,245330.16,0,0,0,430.62799 +3439,4221,7464,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-973.35101,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,5.9343562,0,0,1,1,0,0,0,42.04,32.24,-9,-9,5,1,1,0,0,0,4,1,0,350,-80031.594,0,0,0,0,0,1572.2188 +3439,4222,7465,-9,-9,7464,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1073.557,-9,-9,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,600,158206.19,0,0,0,1004.205,0,-159.2045 +3440,4223,7466,-9,7467,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-900.61841,-9,3,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3440,4223,7467,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1002.8398,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.54,56.06,-9,-9,5,1,1,0,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3440,4223,7468,-9,7467,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.05981,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3440,4223,7469,-9,7467,-9,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-980.6748,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,1,1,0,853,33215.621,0,0,0,0,0,1646.442 +3441,4224,7470,7473,-9,-9,1,1,65,0,2,0,3,3,-9,0,2,0,7.6082797,7.7427516,15,23,-28.595518,0,3,2,2021,20,8,0,37,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.7243056,47,38,57.06,57.76,5,1,1,0,0,10,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4224,7471,-9,7473,7470,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1284,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4224,7472,-9,7473,7470,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.72314,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4224,7473,7470,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,5.7967257,5.8343496,0,16,-23,-64.353432,0,3,3,2021,8,0,4,4,1,0,0,10.662248,10.662248,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,47,38,8.333333333333334,1,1,0,0,11,12,3,1,1323.25,1052042.3,710804.06,229042.98,0,0,0,2112.5981 +3441,4225,7474,-9,7473,7470,1,1,20,0,2,0,2,2,-9,0,3,7.6802416,7.9505415,0,0,0,-991.67328,0,2,3,2021,14,2,40,37,1,2,1,8.5183601,8.5183601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.69,52.99,-9,-9,6.666666666666667,1,1,0,0,3,12,4,1,514,86418.258,-68280.586,0,0,3696.4045,0,1513.2744 +3442,4226,7475,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,3,0,0,0,0,0,-916.43378,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.73,54.62,-9,-9,5,1,1,0,1,0,7,1,0,878,79193.133,0,0,0,0,0,1026.1041 +3443,4227,7476,7477,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.3849339,6.3718023,13,1,-80.583298,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7772348,6.6789365,54.11,44.3,59.82,49.4,10,1,1,0,0,0,8,5,1,1088,2780354.5,1238168,532830.25,0,0,0,5882.9932 +3443,4227,7477,7476,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,9.1026106,8.9061842,57,-1,66.484459,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.710319,9.2313385,59.82,49.4,54.11,44.3,10,1,1,0,0,6,8,5,1,1088,2780354.5,1238168,532830.25,0,0,0,5882.9932 +3444,4228,7478,7479,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,50,0,47.746254,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3838079,0,50.6,53.68,53,47,8.333333333333334,1,1,0,0,0,13,3,1,361,498748.19,143545.75,359462.25,0,9594.3418,0,2330.625 +3444,4228,7479,7478,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,7.8226829,7.7579823,0,7,0,17.877232,-9,-9,-9,2021,9,0,30,0,1,1,0,7.8863306,7.8863306,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,50.6,53.68,8,1,1,0,0,1,13,3,1,361,498748.19,143545.75,359462.25,0,9594.3418,0,2330.625 +3445,4229,7480,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2104549,8.0403776,0,0,0,-953.33215,0,2,2,2021,13,1,45,42,1,1,0,11.335211,11.335211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,9,5,4,1,676,-42281.547,4261.835,199197.06,61880.797,0,0,1468.1293 +3446,4230,7481,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.732358,7.3846807,0,0,-1062.9451,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6090984,7.829936,34.83,60.66,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,746,489229.66,11207.202,151562.91,0,0,0,1547.861 +3447,4231,7482,7483,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.70753,8.7031345,0,6,2,-32.807953,0,2,-9,2021,9,0,41,46,1,0,0,19.431484,19.431484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.26,48.89,48.95,55.71,8.333333333333334,1,1,0,0,7,1,5,1,650,674905.75,467414.91,117932.19,48099.25,0,897.10651,3779.3049 +3447,4231,7483,7482,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.4451847,8.3867521,0,6,-2,-36.136772,0,2,2,2021,12,0,30,30,1,0,0,13.140137,13.140137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.95,55.71,61.26,48.89,8.333333333333334,1,1,0,0,7,1,5,1,650,674905.75,467414.91,117932.19,48099.25,0,897.10651,3779.3049 +3447,4231,7484,-9,7483,7482,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1129.0767,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,650,674905.75,467414.91,117932.19,48099.25,0,897.10651,3779.3049 +3448,4232,7485,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,4.7402515,5.0168786,0,0,-896.6142,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6681991,4.9628139,46.73,54.33,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,660,256446.83,47513.176,184511.92,0,0,316.32343,293.16699 +3449,4233,7486,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,0,0,-1125.4274,0,3,3,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,2,3,0,0,6,8,1,1,565,78685.148,0,0,0,0,3049.3271,1592.1411 +3449,4233,7487,-9,7486,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.49176,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,1,1,565,78685.148,0,0,0,0,3049.3271,1592.1411 +3449,4233,7488,-9,7486,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.99408,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,1,565,78685.148,0,0,0,0,3049.3271,1592.1411 +3450,4234,7489,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,0,0,0,0,-929.89258,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2521304,0,62.42,42.94,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,864,111157.91,0,0,0,0,0,-30.170538 +3451,4235,7490,7492,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.838954,9.1238747,0,11,0,-137.25362,0,2,1,2021,14,3,43,43,1,3,0,16.834885,16.834885,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,57.16,56.15,8.333333333333334,1,1,0,0,11,11,5,1,1584.6666,513388.25,288206.06,279019.81,15707.065,0,0,6412.29 +3451,4235,7491,-9,7490,7492,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-875.06635,-9,1,1,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.41,64.05,-9,-9,6.666666666666667,1,1,0,0,1,11,5,1,1584.6666,513388.25,288206.06,279019.81,15707.065,0,0,6412.29 +3451,4235,7492,7490,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.5363159,9.9887705,0,11,0,-39.012321,0,2,1,2021,12,0,42,45,1,0,0,37.907257,37.907257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.34,62.12,8.333333333333334,1,1,0,0,12,11,5,1,1584.6666,513388.25,288206.06,279019.81,15707.065,0,0,6412.29 +3451,4236,7493,-9,7490,7492,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1042.3134,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7425804,0,57.07,46.71,-9,-9,6.666666666666667,1,1,0,0,2,11,1,1,387,-116487.05,0,0,0,0,0,205.23215 +3452,4237,7494,7495,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,9.4967308,9.5676222,11,3,16.236225,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7810221,9.7955942,51.49,57.57,54.96,53.17,8.333333333333334,1,1,0,0,0,2,5,1,1333.5,656495,299828.16,316934.03,93351.125,0,2560.437,7423.7188 +3452,4237,7495,7494,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3609309,7.1961355,30,-3,-74.987953,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6682272,7.3808341,54.96,53.17,51.49,57.57,10,1,1,0,0,7,2,5,1,1333.5,656495,299828.16,316934.03,93351.125,0,2560.437,7423.7188 +3453,4238,7496,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.1826887,7.9674492,0,0,0,-985.18433,0,-9,2,2021,6,0,42,38,1,0,0,8.9296656,8.9296656,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,9,4,0,503,-22115.813,0,0,0,1002.6763,0,1207.6023 +3453,4239,7497,-9,7496,-9,1,1,28,0,0,0,1,1,-9,0,4,7.655797,7.9425411,0,0,0,-960.85767,0,2,2,2021,15,3,30,68,1,3,1,9.4871798,9.4871798,0,0,0,0,0,0,0,0,0,0,0,0,0,32.07,65.17,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,1366,105937.17,0,0,0,0,0,1702.2633 +3454,4240,7498,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1823339,8.0169325,0,0,0,-928.42212,0,2,2,2021,12,1,38,38,1,1,0,9.5871773,9.5871773,0,0,0,0,0,0,0,0,0,0,0,0,0,44.43,56.74,-9,-9,3.333333333333333,1,1,0,0,13,2,4,1,3846,514478.91,414110.44,130588.63,45419.41,0,2202.2451,1568.8396 +3455,4241,7499,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.9277401,6.578423,0,0,-1052.1815,0,2,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.958451,6.8552923,47.44,32.45,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,453,386344.75,127272.75,0,0,0,0,202.25943 +3455,4242,7500,-9,7499,-9,1,0,47,0,0,0,2,2,-9,0,3,8.7615433,8.5869684,0,0,0,-918.95984,0,3,-9,2021,11,1,41,38,1,1,0,14.893116,14.893116,.05,.05,0,0,0,0,0,0,1,1,0,3.7458315,0,53.39,44.47,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,232,-37293.652,-21570.279,0,0,0,0,2177.5789 +3456,4243,7501,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.9458151,6.8309865,0,0,-900.35016,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.205977,46.55,24.6,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2047,132750.17,194150.98,-24318.006,0,0,0,1207.6561 +3457,4244,7502,7505,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.3069401,8.2918749,0,10,2,-66.910454,0,2,2,2021,17,5,56,0,1,5,0,8.5127201,8.5127201,.05,.05,0,0,0,0,0,0,1,1,0,2.1755989,0,46.4,50.15,22.18,69.37,6.666666666666667,1,1,0,0,11,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3457,4244,7503,-9,7505,7502,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.38782,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3457,4244,7504,-9,7505,7502,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.21185,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3457,4244,7505,7502,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,8.8119068,8.5503769,0,10,-2,7.5431952,0,-9,-9,2021,16,3,50,50,1,3,0,15.968343,15.968343,.05,.05,0,0,0,0,0,0,1,1,0,2.477129,0,22.18,69.37,46.4,50.15,8.333333333333334,1,1,0,0,11,6,5,1,499.75,106868.84,47209.219,0,0,0,0,3307.7632 +3458,4245,7506,7507,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,9.3060732,9.1189642,0,1,2,45.970551,-9,2,2,2021,14,4,56,0,1,4,0,20.791336,20.791336,.05,.05,0,0,0,0,0,0,0,0,0,4.3203297,0,51,52.08,48.25,53.5,8.333333333333334,1,1,0,0,6,6,5,1,1364,-2907.3359,9971.5781,0,0,10523.443,0,4164.2075 +3458,4245,7507,7506,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.2846546,7.1433458,0,1,-2,5.5502925,-9,-9,-9,2021,7,0,23,0,1,0,0,5.6545682,5.6545682,.05,.05,0,0,0,0,0,0,0,0,0,2.4369824,0,48.25,53.5,51,52.08,8.333333333333334,1,1,0,0,1,6,5,1,1364,-2907.3359,9971.5781,0,0,10523.443,0,4164.2075 +3459,4246,7508,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.8449583,9.0325041,0,0,0,-860.37268,0,-9,2,2021,6,0,40,50,1,0,0,24.965597,24.965597,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,1.666666666666667,1,1,0,0,12,13,5,1,1241,139409.16,9573.752,154820.78,90738.516,0,2562.1294,2700.7576 +3460,4247,7509,7511,-9,-9,1,0,23,0,2,0,2,2,-9,0,3,0,0,0,4,-2,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.22,56.72,54.2,57.49,6.666666666666667,1,1,0,0,0,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3460,4247,7510,-9,7509,7511,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.9961,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3460,4247,7511,7509,-9,-9,1,1,25,0,2,0,2,2,-9,0,4,0,0,0,4,2,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,35.22,56.72,5,1,1,0,0,2,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3460,4247,7512,-9,7509,7511,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6422,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1192.5,-24618.922,0,0,0,4844.2207,0,1593.6035 +3461,4248,7513,7514,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,6,-3,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94370586,0,51.41,56.15,62.39,56.71,8.333333333333334,1,1,0,0,0,7,1,1,346,462072.53,0,460717.94,0,0,0,803.58197 +3461,4248,7514,7513,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,0,0,6,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4091232,0,62.39,56.71,51.41,56.15,10,1,1,0,0,7,7,1,1,346,462072.53,0,460717.94,0,0,0,803.58197 +3462,4249,7515,7517,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,20,-1,66.172684,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0615721,0,33.47,56.25,52,56,6.666666666666667,2,3,0,0,0,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3462,4249,7516,-9,7515,7517,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5883,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3462,4249,7517,7515,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.6983218,7.3898072,0,20,1,105.25565,0,3,2,2021,9,0,50,50,1,1,0,4.3655863,4.3655863,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,33.47,56.25,8,2,3,0,0,1,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3462,4249,7518,-9,7515,7517,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.29083,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,2006.25,1203135.3,0,540911.88,193388.28,0,0,3658.3975 +3463,4250,7519,-9,7520,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.98297,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,751,59145.004,-49996.133,0,0,1604.489,-535.67188,1854.6993 +3463,4250,7520,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.4693136,8.2041159,0,0,0,-1012.3015,0,3,3,2021,7,0,46,50,1,0,0,13.315547,13.315547,.05,.05,0,0,0,0,0,0,1,1,0,2.5099254,0,54.27,48.04,-9,-9,8.333333333333334,3,4,0,0,8,8,4,1,751,59145.004,-49996.133,0,0,1604.489,-535.67188,1854.6993 +3464,4251,7521,7523,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,9.0967302,8.7329416,0,3,2,-3.0855694,0,-9,-9,2021,8,0,53,57,1,0,0,15.950832,15.950832,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.93,49.95,49.44,56.93,8.333333333333334,1,1,0,0,7,4,4,1,531,98418.82,122341.78,97373.891,90595.492,0,0,3678.8882 +3464,4251,7522,-9,7523,7521,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.1456,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,531,98418.82,122341.78,97373.891,90595.492,0,0,3678.8882 +3464,4251,7523,7521,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,7.2765784,7.1548276,0,3,-2,-2.7110009,0,-9,-9,2021,6,1,17,38,1,1,0,9.3658524,9.3658524,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.44,56.93,55.93,49.95,8.333333333333334,1,1,0,0,2,4,4,1,531,98418.82,122341.78,97373.891,90595.492,0,0,3678.8882 +3465,4252,7524,7525,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.8023624,9.0453377,4.2839761,7,1,60.944473,-9,3,3,2021,7,0,50,0,1,0,0,16.146456,16.146456,0,0,0,0,0,0,0,0,0,0,0,0,4.8872085,49.57,42.36,34.99,26.11,6.666666666666667,1,1,0,0,8,9,5,1,710,1147630.6,338986,720983.81,0,0,0,4135.3271 +3465,4252,7525,7524,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.6944976,7.645587,0,7,-1,-106.79569,0,3,2,2021,25,12,27,27,1,12,0,10.251744,10.251744,0,0,0,0,0,0,0,0,0,0,0,0,0,34.99,26.11,49.57,42.36,3.333333333333333,1,1,0,0,8,9,5,1,710,1147630.6,338986,720983.81,0,0,0,4135.3271 +3466,4253,7526,7527,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.4247303,5.1638198,42,0,-145.78156,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4023051,46.31,56.45,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,365.5,809529.13,781323.38,176499.31,0,0,2752.7139,2722.99 +3466,4253,7527,7526,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.4944916,8.0611029,42,0,15.700129,0,-9,-9,2021,13,1,0,22,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7252235,57.33,53.46,46.31,56.45,8.333333333333334,1,1,0,0,10,10,3,1,365.5,809529.13,781323.38,176499.31,0,0,2752.7139,2722.99 +3467,4254,7528,7529,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.4623222,6.6308823,8,0,-13.075741,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5982137,55.29,42.09,51.5,47.18,8.333333333333334,1,1,0,0,0,4,2,1,584,447304.94,231054.41,287418.19,0,2195.6155,0,2322.0498 +3467,4254,7529,7528,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,8,0,-48.283279,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,47.18,55.29,42.09,5,1,1,0,0,0,4,2,1,584,447304.94,231054.41,287418.19,0,2195.6155,0,2322.0498 +3468,4255,7530,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.7283087,8.5319443,0,0,0,-978.76849,0,2,2,2021,12,0,40,40,1,0,0,17.007896,17.007896,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,47.77,-9,-9,3.333333333333333,1,1,0,0,11,12,5,0,2192,0,0,0,0,0,0,2550.562 +3469,4256,7531,7532,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3112202,6.4672041,60,-6,46.846413,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,4.4813986,3.5349743,19.197172,0,1,1,0,3.9667974,6.3682499,47.85,30.76,50.51,42.98,6.666666666666667,1,1,0,0,0,7,3,1,282.5,752887.25,142555.88,459726,0,0,0,1905.4209 +3469,4256,7532,7531,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.3165698,7.1695876,60,6,12.90026,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3104045,7.9800987,50.51,42.98,47.85,30.76,8.333333333333334,1,1,0,0,0,7,3,1,282.5,752887.25,142555.88,459726,0,0,0,1905.4209 +3470,4257,7533,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.6273046,7.6260414,0,0,-947.84088,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8195629,7.8048105,45.77,47.93,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1343,783242.69,208987.25,591237.44,0,0,0,1377.7277 +3471,4258,7534,-9,7535,7536,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.31598,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,674,308855.94,0,391729.13,101980.37,0,0,2723.5037 +3471,4258,7535,7536,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.0336204,7.0176845,0,3,1,49.327579,0,-9,-9,2021,17,5,24,0,1,5,0,5.3537555,5.3537555,0,0,0,0,0,0,0,0,1,1,0,0,0,38.04,57.99,49.86,55.31,6.666666666666667,1,1,0,0,4,12,3,0,674,308855.94,0,391729.13,101980.37,0,0,2723.5037 +3471,4258,7536,7535,-9,-9,1,1,30,0,2,0,2,2,-9,0,4,8.265379,8.6521969,0,3,-1,29.847572,-9,-9,-9,2021,10,1,44,0,1,1,0,15.175166,15.175166,0,0,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,38.04,57.99,6.666666666666667,1,1,0,0,6,12,3,0,674,308855.94,0,391729.13,101980.37,0,0,2723.5037 +3472,4259,7537,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-929.5304,-9,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.99,44.79,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,652,-104610.02,0,0,0,0,0,310.43915 +3473,4260,7538,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.6992636,8.9232979,6.4664221,0,0,-972.47308,0,3,3,2021,12,1,48,50,1,1,0,15.199695,15.199695,.05,.05,0,0,0,0,0,2,1,1,0,4.7901587,6.7363009,48.99,43.66,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,855,17148.488,31489.6,90878.938,0,0,4262.0273,1957.4885 +3474,4261,7539,7540,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.0026326,7.1785326,12,2,29.121641,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5466328,51.83,57.2,52.82,53.97,8.333333333333334,1,1,0,0,13,12,2,1,855,446701,366153.63,146127.56,0,0,0,-912.08398 +3474,4261,7540,7539,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.5263391,5.5586905,12,-2,-49.79493,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4694357,52.82,53.97,51.83,57.2,8.333333333333334,1,1,0,0,0,12,2,1,855,446701,366153.63,146127.56,0,0,0,-912.08398 +3474,4262,7541,-9,7540,7539,1,0,20,0,0,0,2,2,1,0,4,6.5186205,6.4632683,0,0,0,-996.62982,-9,2,2,2021,8,0,8,0,1,0,1,9.4498968,9.4498968,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,1646,74606.859,0,0,0,0,0,320.79779 +3475,4263,7542,7543,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,7.1145744,7.5924859,6.7837086,6,-5,55.12315,0,2,2,2021,7,0,12,12,1,0,0,8.5241079,8.5241079,.05,.05,0,0,0,0,0,0,0,0,0,3.2951915,6.5174427,47.15,56.66,39.66,32.42,8.333333333333334,1,1,0,0,3,12,4,1,255,-70842.711,61841.094,0,0,0,0,2437.7954 +3475,4263,7543,7542,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.361352,8.2137594,0,6,5,80.961197,0,3,3,2021,19,6,35,35,1,6,0,13.223329,13.223329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.66,32.42,47.15,56.66,8.333333333333334,1,1,0,0,7,12,4,1,255,-70842.711,61841.094,0,0,0,0,2437.7954 +3476,4264,7544,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,11,-22,-18.513783,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.37,17.7,43.46,46.41,5,1,1,0,0,0,5,2,1,474,17494.178,0,0,0,0,0,355.40222 +3476,4265,7545,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.6796479,7.0980358,11,22,-8.826498,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4699993,6.9452133,43.46,46.41,53.37,17.7,8.333333333333334,1,1,0,0,0,5,2,1,341,287583.84,52044.656,190629.94,0,0,0,1390.614 +3477,4266,7546,7547,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.1319866,7.4349904,0,40,0,22.547209,-9,2,2,2021,12,0,20,0,1,0,0,7.4439383,7.4439383,0,0,0,0,0,0,0,0,0,0,0,2.3085647,0,45.84,53.12,51.83,57.2,8.333333333333334,1,1,0,0,13,5,4,1,855.5,530334.56,0,0,0,10609.186,0,2615.1953 +3477,4266,7547,7546,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.2984447,8.401824,0,40,0,-21.481451,0,2,1,2021,10,1,55,55,1,1,0,7.2339287,7.2339287,0,0,0,0,0,0,0,0,0,0,0,1.3160323,0,51.83,57.2,45.84,53.12,8.333333333333334,1,1,0,0,13,5,4,1,855.5,530334.56,0,0,0,10609.186,0,2615.1953 +3478,4267,7548,7549,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.0459752,6.9468265,9,1,-62.486973,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,5.7732854,0,0,1,1,0,5.8160796,7.0567632,55.96,23.14,48.02,31.03,8.333333333333334,1,1,0,0,9,2,2,0,226.5,601918.88,465340.97,131307.95,0,0,0,1427.6638 +3478,4267,7549,7548,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,-1,15.286907,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.5403149,0,48.02,31.03,55.96,23.14,8.333333333333334,1,1,0,0,0,2,2,0,226.5,601918.88,465340.97,131307.95,0,0,0,1427.6638 +3479,4268,7550,7551,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.1415119,4.3660908,10,-11,-71.578987,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.1095219,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,2,13,3,1,478.5,523807,133356.5,199196.22,0,0,0,2658.9048 +3479,4268,7551,7550,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.4966521,7.4736791,10,11,-48.588528,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7918801,57.33,53.46,57.16,56.15,10,1,1,0,0,2,13,3,1,478.5,523807,133356.5,199196.22,0,0,0,2658.9048 +3480,4269,7552,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7643609,7.7159176,0,0,-899.50146,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4823604,38.42,51.05,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,1178,760166.06,646799.63,0,0,0,0,1874.0057 +3481,4270,7553,7554,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.9338465,7.9866276,11,0,-18.270247,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1741133,7.866065,57.16,56.15,53.08,47.11,8.333333333333334,1,1,0,0,3,12,4,1,541.5,2614117,782023.31,303807.5,0,0,0,3372.3696 +3481,4270,7554,7553,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.4066005,7.3031068,11,0,9.4766016,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8324215,7.4071193,53.08,47.11,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,541.5,2614117,782023.31,303807.5,0,0,0,3372.3696 +3482,4271,7555,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,6.8731709,7.2150364,0,0,-1070.0952,0,3,3,2021,36,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.403841,7.2562795,24.19,23.76,-9,-9,0,1,1,0,1,0,2,3,1,544,218920.77,122383.88,116019.63,0,0,0,1826.1321 +3483,4272,7556,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.7523413,9.268795,0,0,-963.4198,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4504404,9.0782547,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,11,2,5,1,482,2321772.8,1978547,258772.31,25214.961,0,0,2643.0989 +3484,4273,7557,7558,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.7114439,8.2637911,6.8319211,6,5,57.883587,0,3,3,2021,7,0,37,0,1,0,0,8.2106342,8.2106342,.05,.05,0,0,0,0,0,0,0,0,0,6.1710739,7.0206437,43.41,49.46,52.54,52.91,10,1,1,0,0,6,5,4,0,480.5,282216.31,128970.28,201887.45,50176,3144.0234,0,2734.0088 +3484,4273,7558,7557,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.970829,7.6851335,0,6,-5,28.37805,0,-9,3,2021,6,0,39,39,1,0,0,8.1590986,8.1590986,0,0,0,0,0,0,0,0,0,0,0,0,0,52.54,52.91,43.41,49.46,8.333333333333334,1,1,0,0,7,5,4,0,480.5,282216.31,128970.28,201887.45,50176,3144.0234,0,2734.0088 +3485,4274,7559,-9,7560,7561,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.27332,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,571.66669,961433.5,736325,272430.81,25120.926,0,0,3253.3784 +3485,4274,7560,7561,-9,-9,1,0,50,0,1,0,1,1,-9,0,1,8.0184326,7.8255591,0,6,-1,-43.960796,0,2,2,2021,25,10,32,0,1,10,0,9.4009418,9.4009418,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,29.7,53.39,39.15,3.333333333333333,1,1,0,1,6,12,4,1,571.66669,961433.5,736325,272430.81,25120.926,0,0,3253.3784 +3485,4274,7561,7560,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.4544792,8.6627121,0,6,1,-6.0591578,0,2,2,2021,10,0,40,43,1,0,0,16.024265,16.024265,.05,.05,0,0,0,0,0,0,1,1,0,3.0511355,0,53.39,39.15,34.46,29.7,5,1,1,0,0,7,12,4,1,571.66669,961433.5,736325,272430.81,25120.926,0,0,3253.3784 +3485,4275,7562,-9,7560,7561,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-1004.578,-9,1,-9,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.28,63.48,-9,-9,8.333333333333334,1,1,1,0,0,12,1,1,142,-48330.406,0,0,0,0,0,0 +3486,4276,7563,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-939.63074,0,-9,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.5,20.97,-9,-9,5,1,1,0,0,4,10,1,0,1082,-10232.139,0,0,0,0,1758.6772,1601.4702 +3487,4277,7564,7565,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,9.5138321,9.5794697,0,18,5,-9.5864439,0,2,2,2021,14,2,48,50,1,2,0,30.943811,30.943811,.05,.05,0,0,0,0,0,0,0,0,0,6.4180474,0,44.95,52.41,57.74,25.06,3.333333333333333,1,1,0,0,9,2,5,1,699,806571.81,339637.09,441840.09,96799.32,0,0,5918.3696 +3487,4277,7565,7564,-9,-9,1,0,46,0,3,0,2,2,-9,0,2,8.2245941,8.1657486,0,18,-5,44.457863,0,2,2,2021,7,0,60,60,1,0,0,7.34444,7.34444,.05,.05,0,0,0,0,0,0,0,0,0,2.1394224,0,57.74,25.06,44.95,52.41,6.666666666666667,1,1,0,0,10,2,5,1,699,806571.81,339637.09,441840.09,96799.32,0,0,5918.3696 +3487,4277,7566,-9,7565,7564,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.1212,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,699,806571.81,339637.09,441840.09,96799.32,0,0,5918.3696 +3488,4278,7567,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,7.2798681,7.5120654,0,0,0,-1013.9856,0,1,1,2021,7,0,28,21,1,0,0,7.1804247,7.1804247,.05,.05,0,0,0,0,0,0,0,0,0,2.5289171,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,475,409320.5,360139.28,148022,8917.6689,1902.2657,0,820.00262 +3489,4279,7568,7569,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.9718862,6.6200237,9,5,-16.035179,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0384569,7.0108047,55.2,49.4,28.67,51.66,5,1,1,0,0,0,10,2,1,750,826588,175759.09,447715.03,0,137.39177,0,1412.2081 +3489,4279,7569,7568,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,9,-5,-219.99185,0,-9,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.59834,0,28.67,51.66,55.2,49.4,1.666666666666667,1,1,0,0,0,10,2,1,750,826588,175759.09,447715.03,0,137.39177,0,1412.2081 +3490,4280,7570,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,2,0,5.2369375,5.5376596,0,0,-846.72406,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,33.893536,0,0,1,1,0,0,5.4023438,58.73,16.63,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,592,25851.756,28424.297,162374.84,0,0,0,1056.1874 +3490,4281,7571,-9,7570,-9,1,1,56,0,0,0,1,1,-9,0,3,9.2324877,8.983098,0,0,0,-1035.7627,0,2,2,2021,12,2,67,71,1,2,0,14.568034,14.568034,.05,.05,0,0,0,0,0,14.5,1,1,0,4.5165963,0,41.53,56.72,-9,-9,3.333333333333333,1,1,0,0,10,8,5,0,596,257855.23,163282.48,212143.2,61375.316,0,0,2957.0693 +3491,4282,7572,7573,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2871418,8.0587473,0,6,-2,88.573334,0,-9,-9,2021,10,1,40,35,1,1,0,13.261449,13.261449,0,0,0,0,0,0,0,0,0,0,0,0,0,49.09,49.42,59.53,56.44,6.666666666666667,2,3,0,0,9,8,5,1,734,661608.81,325504.03,273642.91,85575.172,0,0,3103.5972 +3491,4282,7573,7572,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.5685997,8.3632479,0,6,2,87.07328,0,3,3,2021,5,0,38,47,1,0,0,16.551794,16.551794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,49.09,49.42,10,4,2,0,0,7,8,5,1,734,661608.81,325504.03,273642.91,85575.172,0,0,3103.5972 +3491,4283,7574,-9,7572,7573,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-947.91882,0,2,2,2021,5,0,0,50,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,1,0,3,8,1,1,136,100098.51,0,0,0,0,0,0 +3492,4284,7575,-9,7577,-9,1,1,27,0,0,0,2,2,-9,0,4,8.2336941,8.2709599,0,0,0,-958.99969,-9,2,-9,2021,10,0,30,0,1,1,1,13.091699,13.091699,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,4,1,3051,-151057.03,0,0,0,0,0,1713.2981 +3492,4285,7576,-9,7577,-9,1,1,25,0,0,0,1,1,-9,0,3,7.1577783,7.4566646,0,0,0,-1008.4424,0,2,-9,2021,7,1,30,0,1,1,1,5.3329959,5.3329959,0,0,0,0,0,0,0,0,0,0,0,3.8618279,0,58.47,44.69,-9,-9,1.666666666666667,4,2,0,0,4,8,3,1,613,-84373.523,0,0,0,0,0,1903.007 +3492,4286,7577,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1332798,7.8557134,6.3014708,0,0,-848.86237,-9,-9,-9,2021,11,0,40,0,1,2,0,8.4657679,8.4657679,0,0,0,0,0,0,0,0,0,0,0,0,6.7233949,49,48,-9,-9,7,3,4,0,0,1,8,4,1,101,370079.41,54370.348,558984.5,0,-1320.8107,5230.646,1650.1029 +3492,4287,7578,-9,7577,-9,1,0,39,0,0,0,2,2,-9,0,4,8.4529181,8.4910021,0,0,0,-1010.1243,-9,2,-9,2021,11,0,37,0,1,1,1,12.057314,12.057314,.05,.05,0,0,0,0,0,0,0,0,0,4.3386769,0,49,56,-9,-9,7,3,4,0,0,1,8,4,1,314,59563.035,-70204.266,0,0,0,0,1749.254 +3493,4288,7579,7582,-9,-9,1,1,32,1,2,0,1,1,-9,0,4,8.3965168,8.9085474,0,10,1,-83.690926,0,-9,-9,2021,11,0,40,35,1,0,0,17.206444,17.206444,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,32.19,62.45,8.333333333333334,1,1,0,0,9,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3493,4288,7580,-9,7582,7579,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.6259,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3493,4288,7581,-9,7582,7579,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.65509,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3493,4288,7582,7579,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.066812,7.2113223,0,10,-1,127.19181,0,-9,-9,2021,22,10,10,12,1,10,0,18.234716,18.234716,.05,.05,0,0,0,0,0,0,1,1,0,1.1788608,0,32.19,62.45,51.24,58.84,8.333333333333334,1,1,0,0,9,10,4,1,877.5,444921.69,342577,299094.13,136665.72,0,0,3229.0425 +3494,4289,7583,7584,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6673203,8.6635799,0,10,0,43.171104,0,3,2,2021,7,0,40,40,1,0,0,16.139267,16.139267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,47.66,52.33,6.666666666666667,1,1,0,0,11,13,5,1,473.5,265397.94,60381.625,175863.84,103573.19,5989.3682,0,3711.1357 +3494,4289,7584,7583,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9488335,8.0340605,0,10,0,-17.683878,0,2,2,2021,11,0,35,35,1,0,0,12.374703,12.374703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,59.29,49.68,6.666666666666667,1,1,0,0,11,13,5,1,473.5,265397.94,60381.625,175863.84,103573.19,5989.3682,0,3711.1357 +3494,4290,7585,-9,7584,7583,1,1,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-1009.1124,-9,2,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1466,0,0,0,0,0,0,0 +3495,4291,7586,-9,-9,-9,1,0,57,1,1,0,2,2,-9,0,3,0,0,0,0,0,-949.9278,0,-9,-9,2021,11,0,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,1,8,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3495,4291,7587,-9,7586,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.48474,-9,-9,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3495,4291,7588,-9,7586,-9,1,1,5,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.3621,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3495,4291,7589,-9,7586,-9,1,0,8,1,1,1,3,0,-9,0,4,0,0,0,0,0,-998.97845,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,6,1,1,479.75,-58078.973,0,0,0,2521.7463,0,1957.8889 +3496,4292,7590,-9,7592,7591,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.2458,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7591,7592,-9,-9,1,1,27,1,3,0,2,2,-9,0,4,8.0475492,8.4698248,0,5,3,28.030539,0,-9,-9,2021,10,0,40,70,1,1,0,10.565954,10.565954,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,46.88,60.96,7,1,1,0,0,1,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7592,7591,-9,-9,1,0,24,1,3,0,2,2,-9,0,5,0,0,0,5,-3,49.780628,0,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.677032,0,46.88,60.96,50,57,8.333333333333334,1,1,0,0,5,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7593,-9,7592,7591,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.9577,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3496,4292,7594,-9,7592,7591,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.17523,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1392.2,7885.6777,-38523.172,84085.977,55754.625,242.04309,0,2420.9644 +3497,4293,7595,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9143448,6.8776832,0,0,-889.52606,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3674731,6.8762116,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,584,556171.88,0,353892.91,14655.563,0,0,940.21692 +3498,4294,7596,7597,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7477694,8.5878801,0,30,-1,-25.049751,0,3,3,2021,12,0,40,36,1,0,0,17.318226,17.318226,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,35.54,59.05,42.62,46.82,6.666666666666667,1,1,0,0,10,8,5,1,718.5,117977.56,28328.6,0,0,3473.8689,4737.5586,3929.9783 +3498,4294,7597,7596,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4738684,8.4997282,0,8,1,-90.804688,0,3,2,2021,12,0,42,43,1,0,0,13.343475,13.343475,.05,.05,0,0,0,0,0,42,0,0,0,.54501981,0,42.62,46.82,35.54,59.05,6.666666666666667,1,1,0,0,9,8,5,1,718.5,117977.56,28328.6,0,0,3473.8689,4737.5586,3929.9783 +3499,4295,7598,7599,-9,-9,1,0,24,0,0,0,1,1,-9,0,2,8.9257431,8.7831945,0,3,-3,55.287083,0,-9,-9,2021,13,2,93,100,1,2,0,9.2223101,9.2223101,0,0,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,38.63,56.7,3.333333333333333,1,1,0,1,3,9,4,1,463,13066.871,0,0,0,15548.974,0,2430.2578 +3499,4295,7599,7598,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,6.0272951,6.1664262,0,3,3,19.617605,0,-9,-9,2021,24,9,85,82,1,9,0,.57238418,.57238418,0,0,0,0,0,0,0,0,0,0,0,0,0,38.63,56.7,41.46,55.58,0,1,1,0,1,5,9,4,1,463,13066.871,0,0,0,15548.974,0,2430.2578 +3500,4296,7600,7601,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.0766325,8.2368202,0,7,3,52.962021,0,-9,-9,2021,6,0,43,43,1,0,0,8.6649485,8.6649485,.05,.05,0,0,0,0,0,83,1,1,0,3.664669,0,59.53,56.44,54.37,54.8,8.333333333333334,1,1,0,0,10,10,4,1,751.33331,60964.066,94168.281,0,0,0,0,3573.5427 +3500,4296,7601,7600,-9,-9,1,0,40,1,2,0,2,2,-9,1,3,8.4122467,8.4220219,0,7,-3,-58.14695,0,3,2,2021,7,0,36,48,1,0,0,9.8523235,9.8523235,.05,.05,0,0,0,0,0,42,1,1,0,0,0,54.37,54.8,59.53,56.44,8.333333333333334,1,1,0,0,7,10,4,1,751.33331,60964.066,94168.281,0,0,0,0,3573.5427 +3500,4296,7602,-9,7601,7600,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.75201,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,751.33331,60964.066,94168.281,0,0,0,0,3573.5427 +3501,4297,7603,7604,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.0560236,7.9993119,0,34,-7,53.557732,0,3,3,2021,9,0,37,38,1,0,0,7.8816781,7.8816781,.05,.05,0,0,0,0,0,0,1,1,0,2.5119758,0,52.24,50.75,60.3,43.88,8.333333333333334,2,3,0,0,13,6,5,1,766,464978.66,373777.13,94655.891,48792.555,10191.393,0,2984.0444 +3501,4297,7604,7603,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.3467999,8.4004116,6.9483614,34,7,-78.37014,0,3,3,2021,9,0,45,45,1,0,0,8.7080679,8.7080679,.05,.05,0,1,0,8.166997,0,0,1,1,0,0,7.310329,60.3,43.88,52.24,50.75,6.666666666666667,2,3,0,0,13,6,5,1,766,464978.66,373777.13,94655.891,48792.555,10191.393,0,2984.0444 +3501,4298,7605,-9,7603,7604,1,0,31,0,0,0,1,1,-9,0,3,8.7820301,8.7430582,0,0,0,-917.89343,0,2,2,2021,12,0,37,37,1,0,1,19.864183,19.864183,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,48.12,-9,-9,8.333333333333334,2,3,0,0,7,6,5,1,429,-18297.07,-61936.418,37610.324,77144.797,1126.0618,1637.9611,1635.1056 +3502,4299,7606,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.4800367,5.9695492,0,0,-1053.8074,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.5813417,0,51.92,20.94,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,261,-20992.797,147256.08,0,0,0,-16.434145,424.64151 +3503,4300,7607,7608,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.0686727,6.9638419,18,0,57.273697,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3261321,7.0441141,48.88,46.26,64.23999999999999,34.3,8.333333333333334,1,1,0,0,2,1,2,1,1074,533703.5,53001.633,306033.31,0,0,0,2348.7476 +3503,4300,7608,7607,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,18,0,-121.32196,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0453858,0,64.23999999999999,34.3,48.88,46.26,8.333333333333334,1,1,0,0,1,1,2,1,1074,533703.5,53001.633,306033.31,0,0,0,2348.7476 +3504,4301,7609,7610,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9836493,7.8652172,0,8,-1,30.874058,0,2,2,2021,9,0,40,16,1,0,0,7.4912953,7.4912953,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,52.13,54.51,8.333333333333334,1,1,0,0,10,10,5,1,279.5,-26956.055,24911.344,256591.25,254703,0,0,3911.6143 +3504,4301,7610,7609,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,9.1232901,9.2968016,0,8,1,54.793045,0,-9,-9,2021,17,6,51,38,1,6,0,16.131023,16.131023,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.13,54.51,55.36,51.57,10,1,1,0,0,9,10,5,1,279.5,-26956.055,24911.344,256591.25,254703,0,0,3911.6143 +3505,4302,7611,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.133606,7.2891593,0,0,0,-856.48059,0,3,3,2021,13,4,22,20,1,4,0,6.1555352,6.1555352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.75,55.47,-9,-9,6.666666666666667,2,3,0,1,3,1,2,0,2998,46728.547,137963.19,184469.36,0,5623.6328,543.39429,1523.6842 +3505,4302,7612,-9,7611,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.7316,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,1,2,0,2998,46728.547,137963.19,184469.36,0,5623.6328,543.39429,1523.6842 +3505,4303,7613,-9,7611,-9,1,1,24,0,1,0,2,2,1,0,4,0,0,0,0,0,-1012.9471,-9,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,1,1,0,178,-21075.424,0,0,0,0,0,0 +3506,4304,7614,-9,7615,7616,1,1,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1029.0502,-9,3,2,2021,31,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.63748145,0,20.64,66.31,-9,-9,3.333333333333333,1,1,0,0,3,2,5,1,366,614351.63,159543.84,129244.73,0,7745.4854,0,4205.7217 +3506,4304,7615,7616,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,8.2429724,8.1428413,0,6,-2,29.052931,0,-9,-9,2021,6,0,30,30,1,0,0,13.057306,13.057306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.85,62.85,44.94,49.91,8.333333333333334,1,1,0,0,12,2,5,1,366,614351.63,159543.84,129244.73,0,7745.4854,0,4205.7217 +3506,4304,7616,7615,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.0606546,8.5859566,8.0033894,6,2,7.4384928,0,-9,-9,2021,13,1,38,47,1,1,0,9.2061243,9.2061243,.05,.05,0,0,0,0,0,0,1,1,0,5.6735005,7.8124447,44.94,49.91,42.85,62.85,5,1,1,0,0,13,2,5,1,366,614351.63,159543.84,129244.73,0,7745.4854,0,4205.7217 +3507,4305,7617,7618,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.5155039,8.5431786,0,1,0,-50.610912,0,2,1,2021,7,0,35,35,1,0,0,17.445255,17.445255,.05,.05,0,0,0,0,0,0,0,0,0,3.4634459,0,48.77,60.16,8.83,64.91,8.333333333333334,1,1,0,0,6,9,5,1,1150,86313.633,28567.865,260740.38,167509.06,0,706.6947,3953.0193 +3507,4305,7618,7617,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.62117,8.5175867,0,1,0,-2.2557826,-9,-9,-9,2021,28,11,37,0,1,11,0,13.975892,13.975892,.05,.05,0,0,0,0,0,0,0,0,0,2.8666055,0,8.83,64.91,48.77,60.16,8.333333333333334,1,1,0,0,1,9,5,1,1150,86313.633,28567.865,260740.38,167509.06,0,706.6947,3953.0193 +3508,4306,7619,7620,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.2491207,8.1066513,5.9025464,37,-2,22.824852,0,2,3,2021,7,0,36,30,1,0,0,12.596931,12.596931,0,0,0,0,0,0,0,0,0,0,0,5.820653,6.1803761,65.06,41.58,57.68,42.36,8.333333333333334,1,1,0,0,13,10,5,1,505,824026.75,253191.7,373447.19,0,0,0,5118.854 +3508,4306,7620,7619,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.2504187,9.4853296,0,37,2,-14.863432,0,2,3,2021,7,0,42,47,1,0,0,27.072557,27.072557,0,0,.05,0,0,0,0,2,0,0,0,5.5186896,0,57.68,42.36,65.06,41.58,6.666666666666667,1,1,0,0,13,10,5,1,505,824026.75,253191.7,373447.19,0,0,0,5118.854 +3509,4307,7621,7622,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.5379477,8.9598227,7.3270669,33,3,-14.193093,0,2,3,2021,7,0,44,44,1,0,0,14.459825,14.459825,.05,.05,0,0,0,0,0,0,0,0,0,0,7.437058,42.5,51.45,46.08,57.2,6.666666666666667,1,1,0,0,11,9,5,1,1828.5,2905485,1730642,372219.56,0,0,0,5539.8394 +3509,4307,7622,7621,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.0468225,8.7079773,8.0831194,31,-3,60.161541,0,2,3,2021,16,5,15,0,1,5,0,30.19339,30.19339,.05,.05,0,0,0,0,0,0,0,0,0,.26089796,7.8324099,46.08,57.2,42.5,51.45,6.666666666666667,1,1,0,0,11,9,5,1,1828.5,2905485,1730642,372219.56,0,0,0,5539.8394 +3510,4308,7623,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,6.8083715,6.6762667,0,0,-1017.4667,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,3.1353936,0,17.382111,0,1,1,0,0,6.7694254,62.02,28.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,607,97143.992,63411.5,0,0,0,0,1265.0247 +3511,4309,7624,7625,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,0,0,0,11,8,40.870125,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.59,60.85,54.69,57.47,8.333333333333334,1,1,1,0,11,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3511,4309,7625,7624,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.7961669,8.1590929,0,11,-8,96.103989,0,1,1,2021,12,0,24,12,1,0,0,14.018381,14.018381,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,38.59,60.85,10,1,1,0,0,11,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3511,4309,7626,-9,7625,7624,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.5254,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3511,4309,7627,-9,7625,7624,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-859.84747,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,1,1094.5,101301.46,-23904.119,0,0,0,603.19495,1383.782 +3512,4310,7628,7630,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,8.4676561,8.3724623,0,9,-3,-23.602211,0,2,2,2021,10,1,84,43,1,1,0,7.7873602,7.7873602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,57.33,53.46,8.333333333333334,1,1,0,0,8,12,4,0,777.33331,496468.34,317295.94,194200.75,67738.906,0,0,2434.8267 +3512,4310,7629,-9,7630,7628,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.9325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,777.33331,496468.34,317295.94,194200.75,67738.906,0,0,2434.8267 +3512,4310,7630,7628,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,0,0,11,3,29.967613,0,2,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.28,52.09,8.333333333333334,1,1,1,0,8,12,4,0,777.33331,496468.34,317295.94,194200.75,67738.906,0,0,2434.8267 +3513,4311,7631,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1158.7006,0,2,2,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.29,20.35,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,125,0,0,0,0,0,0,1995.0331 +3514,4312,7632,-9,7634,7635,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.64,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3514,4312,7633,-9,7634,7635,1,0,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1088.4847,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,1,0,0,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3514,4312,7634,7635,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3681574,7.4248176,0,22,-1,-102.60608,0,2,3,2021,16,4,25,25,1,4,0,8.508049,8.508049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.55,42.81,42.47,44.11,8.333333333333334,1,1,0,0,12,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3514,4312,7635,7634,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6787834,8.7239351,0,22,1,60.650948,0,2,2,2021,13,1,42,40,1,1,0,18.870037,18.870037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.47,44.11,35.55,42.81,5,1,1,0,0,12,5,4,1,221.5,55816.145,-14685.034,187924.19,15523.458,0,0,3479.2361 +3515,4313,7636,7638,-9,-9,1,0,45,0,2,0,3,3,-9,0,5,0,0,0,29,-4,-5.0717311,0,3,3,2021,17,6,0,4,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,44.3,39.35,8.333333333333334,1,1,0,0,2,4,3,1,557,325526.84,335267.28,180481.39,72109.945,9813.9404,0,3086.6494 +3515,4313,7637,-9,7636,7638,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.5966,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,557,325526.84,335267.28,180481.39,72109.945,9813.9404,0,3086.6494 +3515,4313,7638,7636,-9,-9,1,1,49,0,2,0,3,3,-9,0,2,8.5351067,8.7233124,0,29,4,57.878674,0,3,3,2021,11,0,50,50,1,0,0,15.301547,15.301547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.3,39.35,45.22,63.14,5,1,1,0,0,11,4,3,1,557,325526.84,335267.28,180481.39,72109.945,9813.9404,0,3086.6494 +3515,4314,7639,-9,7636,7638,1,0,24,0,2,0,2,2,-9,0,4,8.1165257,8.0437584,0,0,0,-1032.7734,0,3,3,2021,23,9,45,48,1,9,1,9.8031187,9.8031187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.46,58.18,-9,-9,5,1,1,0,0,5,4,4,1,354,106709.95,811.4696,0,0,0,0,963.02728 +3515,4315,7640,-9,7636,7638,1,0,20,0,2,0,2,2,-9,0,5,7.4821019,7.898685,0,0,0,-890.8894,0,3,3,2021,19,5,44,40,1,5,1,4.9356165,4.9356165,0,0,0,0,0,0,0,0,1,1,0,0,0,35.24,52.54,-9,-9,10,1,1,0,0,4,4,3,1,1253,-58675.715,0,0,0,-384.41434,0,1124.4427 +3516,4316,7641,-9,7642,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.2761,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,473,118059.08,114589.33,59090.227,82583.641,0,0,1891.2402 +3516,4316,7642,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.4684014,7.7562165,5.5898056,0,0,-972.03375,-9,2,2,2021,11,0,37,0,1,0,0,5.7532921,5.7532921,0,0,0,0,0,0,0,0,1,1,0,5.7742906,0,44.01,54.41,-9,-9,3.333333333333333,1,1,0,0,7,10,3,1,473,118059.08,114589.33,59090.227,82583.641,0,0,1891.2402 +3517,4317,7643,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.2450705,8.3438854,0,0,0,-912.33441,0,3,3,2021,7,0,35,35,1,0,0,12.452835,12.452835,0,0,0,0,0,0,0,0,0,0,0,0,0,40.38,59.14,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,317,779107.5,427699.81,330387.44,120338.88,0,4556.6235,1911.521 +3517,4318,7644,-9,7643,-9,1,1,29,0,0,0,2,2,-9,0,3,7.7442327,7.5111289,0,0,0,-933.34705,0,1,3,2021,13,2,55,52,1,2,1,5.0349474,5.0349474,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,1.666666666666667,1,1,0,0,8,8,3,1,383,-42016.977,156341.16,0,0,0,0,1188.4915 +3517,4319,7645,-9,7643,-9,1,1,27,0,0,0,2,2,-9,0,5,7.9584527,8.3074179,0,0,0,-851.29688,0,1,2,2021,5,0,80,46,1,0,1,3.5795631,3.5795631,.05,.05,0,0,0,0,0,0,0,0,0,1.3190917,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,11,8,4,1,687,-39919.188,-43140.133,0,0,0,0,1199.0571 +3517,4320,7646,-9,7643,-9,1,0,23,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1037.9829,0,1,-9,2021,12,0,0,30,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.32,58.41,-9,-9,3.333333333333333,1,1,0,0,6,8,1,1,2126,-80192.516,0,0,0,0,0,580.74048 +3518,4321,7647,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-933.82904,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,7,2,1,1,300,58210.742,0,0,0,0,0,856.3114 +3519,4322,7648,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,7.9674397,8.1160536,0,0,0,-946.23407,0,2,2,2021,10,0,37,38,1,0,0,13.380455,13.380455,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.08,43.27,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,599,270425.5,22158.236,-14822.212,6528.8867,0,0,1038.8665 +3520,4323,7649,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,6.8762169,6.9980307,0,0,-1031.2289,0,3,-9,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3201103,6.8416028,47.18,23.22,-9,-9,10,1,1,0,0,0,5,2,1,6057,313462.66,122369.85,193780.78,0,0,0,354.13428 +3521,4324,7650,-9,7651,7652,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.5514,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1618.3334,-39327.047,123038.41,150167.09,93471.156,0,0,3641.2273 +3521,4324,7651,7652,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,7.8399687,8.0843,0,9,-2,-4.3914552,0,1,1,2021,8,0,22,23,1,0,0,13.468318,13.468318,.05,.05,0,0,0,0,0,0,1,1,0,1.6002226,0,55.79,52.62,51.83,57.2,8.333333333333334,1,1,0,0,7,4,4,1,1618.3334,-39327.047,123038.41,150167.09,93471.156,0,0,3641.2273 +3521,4324,7652,7651,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.5199203,8.5585766,0,9,2,-78.80423,0,1,2,2021,7,0,37,35,1,0,0,13.943479,13.943479,.05,.05,0,0,0,0,0,0,1,1,0,2.9067662,0,51.83,57.2,55.79,52.62,8.333333333333334,1,1,0,0,9,4,4,1,1618.3334,-39327.047,123038.41,150167.09,93471.156,0,0,3641.2273 +3522,4325,7653,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,6.8740072,7.1648526,5.5089979,0,0,-971.77887,0,3,2,2021,19,8,17,24,1,8,0,7.1694593,7.1694593,0,0,0,0,0,0,0,14.5,0,0,0,0,5.6615987,48.02,34.89,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,656.5,273801.38,346242.06,0,0,0,0,825.7771 +3522,4325,7654,-9,7653,-9,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1003.2687,-9,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,55.27,56.95,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,656.5,273801.38,346242.06,0,0,0,0,825.7771 +3523,4326,7655,7656,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.2237654,8.1880751,0,2,1,65.895004,0,-9,-9,2021,8,1,39,40,1,1,0,14.319201,14.319201,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,12.67,72.65000000000001,8.333333333333334,4,2,0,0,4,10,4,0,487,156638.44,124878.13,0,0,6045.5859,1285.1967,3516.7578 +3523,4326,7656,7655,-9,-9,1,0,26,0,0,0,1,1,0,0,5,0,7.0211658,7.0156307,2,-1,104.43967,-9,-9,-9,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.508997,0,12.67,72.65000000000001,54.1,59.11,6.666666666666667,1,1,0,0,5,10,4,0,487,156638.44,124878.13,0,0,6045.5859,1285.1967,3516.7578 +3524,4327,7657,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,7.8342361,7.5723877,0,0,-953.64459,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4086131,7.8912401,47.87,38.01,-9,-9,5,1,1,0,0,7,11,3,1,466,543659.13,478783.47,210916.63,0,0,0,1161.3708 +3525,4328,7658,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.3364077,7.7888045,0,0,-1040.3578,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4996233,48.18,61.8,-9,-9,8.333333333333334,2,3,0,0,9,7,3,1,985,728607.63,414234.31,384847.19,0,0,0,1479.1261 +3526,4329,7659,7660,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,0,0,0,32,-2,22.066843,0,3,3,2021,20,8,0,25,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9872365,0,42.41,29.42,54.79,55.86,5,1,1,0,0,10,9,5,1,572.33331,152054.55,168619.36,0,0,0,1407.5089,3290.6772 +3526,4329,7660,7659,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.2461481,8.9131746,0,33,2,3.4218583,0,3,2,2021,7,0,40,60,1,0,0,25.234097,25.234097,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42.41,29.42,10,1,1,0,0,10,9,5,1,572.33331,152054.55,168619.36,0,0,0,1407.5089,3290.6772 +3526,4329,7661,-9,7659,7660,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-922.4834,-9,2,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.67,61.06,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,572.33331,152054.55,168619.36,0,0,0,1407.5089,3290.6772 +3527,4330,7662,-9,7663,7665,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.6182,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3527,4330,7663,7665,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.0667095,8.0643368,0,7,0,126.64079,0,-9,-9,2021,11,0,25,25,1,0,0,15.67537,15.67537,0,0,0,0,0,0,0,0,0,0,0,5.6009064,0,43.48,60.97,29.56,47.6,6.666666666666667,4,2,0,0,7,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3527,4330,7664,-9,7663,7665,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.00323,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3527,4330,7665,7663,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,9.2498503,9.5342188,0,7,0,114.19856,0,1,1,2021,16,5,42,42,1,5,0,23.262075,23.262075,.05,.05,.05,0,0,0,0,0,0,0,0,5.5935135,0,29.56,47.6,43.48,60.97,6.666666666666667,1,1,0,0,8,9,5,0,328.25,988893.56,580497.56,434659.13,99912.133,0,0,5123.4082 +3528,4331,7666,7667,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,8.9235172,8.8658409,0,12,0,-6.1128221,0,2,3,2021,7,0,75,42,1,0,0,11.335022,11.335022,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.73,58.82,8.333333333333334,1,1,0,0,12,7,5,1,556,61513.57,-15378.228,387458.31,200862.22,0,0,6440.2407 +3528,4331,7667,7666,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.9679337,9.2167511,0,12,0,-36.622807,-9,2,3,2021,9,1,60,0,1,1,0,17.647346,17.647346,0,0,0,0,0,0,0,0,0,0,0,1.3932645,0,51.73,58.82,54.1,59.11,8.333333333333334,1,1,0,0,13,7,5,1,556,61513.57,-15378.228,387458.31,200862.22,0,0,6440.2407 +3529,4332,7668,7669,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.1657162,7.0229335,9,-1,-105.40376,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2385259,7.5068903,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,985.5,1754277.8,680692.25,864757.13,0,6966.7964,3534.4207,4719.0054 +3529,4332,7669,7668,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.3422956,8.1191263,9,1,134.96602,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9382086,8.5928135,57.16,56.15,51.77,58.57,10,1,1,0,0,3,7,4,1,985.5,1754277.8,680692.25,864757.13,0,6966.7964,3534.4207,4719.0054 +3530,4333,7670,-9,7676,7675,1,0,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1013.7716,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7671,-9,7676,7675,1,1,16,0,5,1,2,0,-9,0,4,0,0,0,0,0,-1110.3087,-9,3,3,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7672,-9,7676,7675,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1033.1626,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7673,-9,7676,7675,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1071.9612,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7674,-9,7676,7675,1,0,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-945.35999,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7675,7676,-9,-9,1,1,44,0,5,0,3,3,-9,0,3,7.5482006,7.4398546,0,21,5,15.943959,0,3,2,2021,8,0,30,24,1,0,0,6.4662027,6.4662027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.91,51.06,49,56,5,2,3,0,0,7,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3530,4333,7676,7675,-9,-9,1,0,39,0,5,0,3,3,-9,0,4,0,0,0,21,-5,52.630932,0,3,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,47.91,51.06,7,2,3,0,0,0,8,2,0,819,116890.89,-4940.2236,0,0,0,0,2764.1997 +3531,4334,7677,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3295817,7.4406738,0,0,-962.22314,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3877029,42.61,49.31,-9,-9,6.666666666666667,1,1,0,0,7,6,3,1,451,583904.69,537968.19,54757.563,0,2963.4065,0,1577.1216 +3532,4335,7678,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.5650692,8.1981888,6.3373504,0,0,-1058.1003,-9,2,2,2021,8,1,43,0,1,1,0,11.429849,11.429849,.05,.05,0,0,0,0,0,0,1,1,0,7.0212121,0,54.04,60.47,-9,-9,6.666666666666667,4,2,0,0,7,8,5,0,270.5,30174.689,65128.242,0,0,0,0,2092.3064 +3532,4335,7679,-9,7678,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-985.58069,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,6.666666666666667,3,4,0,0,0,8,5,0,270.5,30174.689,65128.242,0,0,0,0,2092.3064 +3532,4336,7680,-9,7678,-9,1,0,19,0,0,0,3,3,1,0,4,0,0,0,0,0,-1044.6602,-9,1,-9,2021,22,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.24,64.67,-9,-9,6.666666666666667,3,4,1,1,0,8,1,0,290,0,0,0,0,0,0,0 +3533,4337,7681,7683,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,7.4963646,7.4926715,0,11,-5,-110.72507,0,2,2,2021,10,0,18,9,1,0,0,13.156428,13.156428,.05,.05,0,0,0,0,0,0,1,1,0,7.2264023,0,48.63,51.79,46.39,60.99,8.333333333333334,1,1,0,0,10,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7682,-9,7681,7683,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1074.7794,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7683,7681,-9,-9,1,1,39,1,3,0,2,2,-9,0,4,8.6403446,8.6457567,0,11,5,83.621529,0,2,2,2021,12,1,39,39,1,1,0,13.681529,13.681529,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,48.63,51.79,8.333333333333334,1,1,0,0,8,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7684,-9,7681,7683,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-924.77844,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3533,4337,7685,-9,7681,7683,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.6418,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1297.6,299360.94,116879.57,247284.3,140038.09,0,0,3995.6721 +3534,4338,7686,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.8714581,8.9891872,0,0,0,-895.12024,0,3,2,2021,19,7,39,40,1,7,0,16.771158,16.771158,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.1,68.28,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,145,207198.31,139966.27,179919.64,72896.047,0,0,2234.4885 +3535,4339,7687,7688,-9,-9,1,1,64,0,1,0,2,2,-9,0,4,8.4440374,7.9741826,0,8,0,64.806717,0,3,3,2021,10,0,40,40,1,0,0,10.149946,10.149946,.05,.05,0,0,0,0,0,0,1,0,1,3.2210851,0,45.91,59.89,57.06,57.76,10,1,1,0,0,8,9,3,1,1149.5,191232.55,265114.22,0,0,0,0,2389.208 +3535,4339,7688,7687,-9,-9,1,0,64,0,1,0,2,2,-9,0,5,0,0,0,8,0,38.706421,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,4.3638172,0,57.06,57.76,45.91,59.89,10,1,1,0,0,0,9,3,1,1149.5,191232.55,265114.22,0,0,0,0,2389.208 +3535,4340,7689,-9,7688,7687,1,0,39,0,1,0,2,2,-9,0,4,7.7863536,7.886405,4.0431442,0,0,-1135.3718,0,3,3,2021,12,0,40,38,1,0,1,5.9788694,5.9788694,.05,.05,0,0,0,0,0,0,1,0,1,4.4426842,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,1,9,9,3,1,651.5,-23146.277,6253.5215,0,0,1019.0419,3984.8645,1542.4854 +3535,4340,7690,-9,7689,-9,1,0,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1029.7794,-9,2,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,651.5,-23146.277,6253.5215,0,0,1019.0419,3984.8645,1542.4854 +3536,4341,7691,7692,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,6,5,0,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,36.76,53.66,53,52,5,2,3,0,0,0,7,1,1,249.5,41343.68,0,0,0,0,0,607.99347 +3536,4341,7692,7691,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,0,0,0,6,-5,0,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,36.76,53.66,8,2,3,0,0,0,7,1,1,249.5,41343.68,0,0,0,0,0,607.99347 +3537,4342,7693,-9,7694,-9,1,1,17,0,0,1,2,0,0,0,3,0,6.6583605,6.245398,0,0,-842.17883,-9,1,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5677495,0,52,54.51,-9,-9,10,1,1,0,0,0,7,5,1,2632,777139.06,641565.31,165523.97,36888.039,12607.244,1054.0522,6233.6416 +3537,4342,7694,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.0837059,9.6044197,8.9321136,0,0,-971.33759,0,2,3,2021,10,1,10,10,1,1,0,42.936497,42.936497,.05,.05,0,0,0,0,0,0,1,1,0,9.0241556,0,51.43,41,-9,-9,8.333333333333334,1,1,0,0,4,7,5,1,2632,777139.06,641565.31,165523.97,36888.039,12607.244,1054.0522,6233.6416 +3538,4343,7695,7696,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,56,2,-80.079491,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8876052,0,0,1,1,0,1.7065496,0,49.08,52.9,49.28,50.19,8.333333333333334,1,1,0,0,0,10,2,1,430,72182.938,15015.057,69914.539,0,575.65271,4203.1191,1647.7246 +3538,4343,7696,7695,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.7492166,6.8851662,10,-2,-2.2381952,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8015027,49.28,50.19,49.08,52.9,8.333333333333334,1,1,0,0,0,10,2,1,430,72182.938,15015.057,69914.539,0,575.65271,4203.1191,1647.7246 +3539,4344,7697,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1080.1091,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,6.0200925,80.052834,61.911438,0,1,1,0,2.758158,0,42.2,14.42,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,1031,-290717.84,0,0,0,0,0,867.32452 +3540,4345,7698,-9,-9,-9,1,1,60,0,1,0,1,1,-9,0,2,0,6.2144165,6.3385944,0,0,-979.66803,0,3,2,2021,15,5,0,35,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4985523,6.2965159,47.09,40.72,-9,-9,3.333333333333333,1,1,0,0,8,11,2,1,1352,570131.56,86086.773,187640.94,0,0,0,537.83917 +3541,4346,7699,7700,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.8660336,9.5909061,37,0,-21.821806,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8575277,9.1251955,54.2,57.49,52.99,51.28,10,1,1,0,0,8,9,5,1,549.5,4898033,3404441.5,748474.88,5401.8223,0,0,3625.0786 +3541,4346,7700,7699,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,37,0,-.81775415,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0593753,0,52.99,51.28,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,549.5,4898033,3404441.5,748474.88,5401.8223,0,0,3625.0786 +3542,4347,7701,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.578517,4.7014861,0,0,-1015.2822,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5000657,4.4175563,46.5,58.26,-9,-9,5,1,1,0,0,3,6,2,1,790,159147.67,0,301779.5,0,0,0,445.88022 +3543,4348,7702,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.4201317,8.4813251,0,4,-3,-83.997726,0,-9,-9,2021,9,0,43,42,1,0,0,14.943139,14.943139,.05,.05,0,0,0,0,0,0,0,0,0,.17628786,0,54.1,59.11,49.46,57.04,8.333333333333334,1,1,0,0,9,9,5,0,408,-28427.988,-40986.07,175805.34,112639.4,0,0,1417.173 +3543,4349,7703,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.2131443,8.5126276,0,4,3,9.2796001,0,-9,-9,2021,11,2,41,45,1,2,0,11.285769,11.285769,0,0,0,0,0,0,0,0,0,0,0,.30971208,0,49.46,57.04,54.1,59.11,5,1,1,0,0,3,9,5,0,87,98961.195,45878.574,0,0,0,0,1490.0046 +3544,4350,7704,-9,7706,7705,1,0,26,0,0,0,2,2,-9,0,3,8.0800858,8.4349566,0,0,0,-1015.7213,0,2,1,2021,23,8,96,2,1,8,1,4.3634491,4.3634491,0,0,0,0,0,0,0,0,1,1,0,0,0,33.61,49.04,-9,-9,3.333333333333333,4,2,0,1,7,8,4,1,1125,-13629.005,0,0,0,0,0,2137.2498 +3544,4351,7705,7706,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.3644252,7.2656884,0,37,5,-89.369606,0,-9,-9,2021,17,5,25,-9,1,5,0,7.0041323,7.0041323,0,0,0,0,0,0,0,0,1,1,0,0,0,40.24,43.95,47.88,18.43,6,4,5,0,0,12,8,3,1,689.5,1390715.5,81282.516,783234,0,0,0,1693.2815 +3544,4351,7706,7705,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.2237177,7.6090446,6.3373547,37,-5,-14.218513,0,-9,-9,2021,11,0,25,24,1,0,0,9.0277681,9.0277681,0,0,0,0,0,0,0,7,1,1,0,6.4288049,6.1207438,47.88,18.43,40.24,43.95,5,1,1,0,0,12,8,3,1,689.5,1390715.5,81282.516,783234,0,0,0,1693.2815 +3545,4352,7707,7708,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.9984298,7.1841373,9,4,-44.497036,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8243227,6.6252923,61.02,44.8,51.77,58.57,8.333333333333334,1,1,0,0,7,13,4,1,468.5,895678.69,641272.88,185265.39,0,0,0,2967.251 +3545,4352,7708,7707,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.7264948,7.9361153,9,-4,14.053335,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2045527,51.77,58.57,61.02,44.8,8.333333333333334,1,1,0,0,4,13,4,1,468.5,895678.69,641272.88,185265.39,0,0,0,2967.251 +3546,4353,7709,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,5,8.0814705,7.9803929,0,0,0,-931.6012,-9,-9,-9,2021,8,1,60,0,1,1,0,5.3413591,5.3413591,0,0,0,0,0,0,0,0,0,0,0,2.5179219,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,246,0,0,0,0,0,0,1323.1818 +3547,4354,7710,-9,7711,7713,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.3875,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7711,7713,-9,-9,1,0,51,0,3,0,1,1,-9,0,4,8.9034996,8.9816132,0,8,-1,14.518021,0,2,2,2021,8,1,37,37,1,1,0,33.147926,33.147926,.05,.05,0,0,0,0,0,0,1,1,0,2.2651052,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,9,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7712,-9,7711,7713,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1126.059,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7713,7711,-9,-9,1,1,52,0,3,0,1,1,-9,0,4,8.5463428,8.6266975,0,8,1,1.0861999,0,3,2,2021,6,0,40,40,1,0,0,15.289301,15.289301,.05,.05,0,0,0,0,0,2,1,1,0,2.2879241,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3547,4354,7714,-9,7711,7713,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-998.36932,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,12,5,1,765.79999,16348234,5883940,949843.31,0,0,0,5263.1743 +3548,4355,7715,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,7.4484024,8.0099201,0,0,0,-1035.9976,0,3,2,2021,11,0,32,40,1,0,0,7.7541876,7.7541876,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,9,13,3,0,1298.5,-7314.4922,-4451.0742,0,0,-244.90213,0,1288.3801 +3548,4355,7716,-9,7715,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.7452,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1298.5,-7314.4922,-4451.0742,0,0,-244.90213,0,1288.3801 +3549,4356,7717,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.9750028,7.1398144,0,0,-1104.6299,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2176399,50.21,43.12,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,1418,523568.94,304498.34,138078.64,0,7235.7739,0,1565.9362 +3550,4357,7718,7720,-9,-9,1,1,37,0,1,0,1,1,-9,0,3,8.1670237,7.9060793,0,3,0,-2.6009927,0,2,2,2021,12,0,37,37,1,0,0,9.7419367,9.7419367,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,35.36,56.72,55.23,46.15,8.333333333333334,1,1,0,0,11,11,3,1,609,284747.56,-6935.7241,177154.44,0,0,0,2204.3794 +3550,4357,7719,-9,7720,7718,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.6134,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,609,284747.56,-6935.7241,177154.44,0,0,0,2204.3794 +3550,4357,7720,7718,-9,-9,1,0,37,0,1,0,3,3,-9,1,3,0,0,0,3,0,63.216473,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,55.23,46.15,35.36,56.72,8.333333333333334,1,1,0,0,3,11,3,1,609,284747.56,-6935.7241,177154.44,0,0,0,2204.3794 +3551,4358,7721,7722,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.7417955,8.7669497,0,22,3,-22.055544,-9,1,1,2021,12,0,38,0,1,0,0,21.576998,21.576998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,34.3,58.7,6.666666666666667,4,2,0,0,13,9,5,0,221.5,2151791,1521108.5,272574.31,0,0,0,2798.0815 +3551,4358,7722,7721,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.0273342,7.9764609,0,13,-3,-91.962318,0,-9,-9,2021,12,0,33,33,1,0,0,10.764342,10.764342,.05,.05,0,0,0,0,0,0,0,0,0,.21296678,0,34.3,58.7,54.37,54.8,3.333333333333333,4,2,0,1,13,9,5,0,221.5,2151791,1521108.5,272574.31,0,0,0,2798.0815 +3552,4359,7723,-9,7726,7725,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1113.8115,-9,1,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,0,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3552,4359,7724,-9,7726,7725,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1202.224,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3552,4359,7725,7726,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.4465265,8.4194231,0,6,2,28.206577,0,2,3,2021,7,0,40,40,1,0,0,13.647325,13.647325,.05,.05,0,0,0,0,0,0,1,1,0,3.5739405,0,61.11,48.86,54.58,51.82,8.333333333333334,1,1,0,0,12,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3552,4359,7726,7725,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.3851795,8.3508606,0,6,-2,13.164332,0,2,3,2021,10,0,50,40,1,0,0,8.1753254,8.1753254,.05,.05,0,0,0,0,0,0,1,1,0,2.6522532,0,54.58,51.82,61.11,48.86,8.333333333333334,1,1,0,0,13,13,4,1,530.25,1718148.8,1070402.4,330405.91,0,0,0,3688.3132 +3553,4360,7727,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1168.6578,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,2.7038872,0,25.798651,0,1,1,0,3.3438628,0,57.74,33.09,-9,-9,6.666666666666667,4,5,0,0,2,9,1,0,868,78219.813,0,0,0,0,0,1498.7399 +3554,4361,7728,7729,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.4241791,7.3306079,0,12,-2,-81.428802,-9,-9,-9,2021,14,5,24,0,1,5,0,8.6387148,8.6387148,0,0,0,0,0,0,0,0,0,0,0,7.1186466,0,44.39,63.4,59.53,56.44,8.333333333333334,1,1,0,0,6,9,5,1,719.5,2088025.6,1203072.5,981455.25,249430.41,0,0,5198.4814 +3554,4361,7729,7728,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.9244328,9.1180954,6.0879955,1,2,31.322889,-9,-9,-9,2021,6,0,42,0,1,0,0,27.715965,27.715965,.05,.05,0,0,0,0,0,0,0,0,0,5.2009296,6.5829139,59.53,56.44,44.39,63.4,10,1,1,0,0,10,9,5,1,719.5,2088025.6,1203072.5,981455.25,249430.41,0,0,5198.4814 +3555,4362,7730,7731,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6771431,8.8769321,0,23,0,93.570526,0,3,3,2021,19,7,60,60,1,7,0,10.530991,10.530991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.11,50.11,48.06,45.53,5,1,1,0,0,11,13,5,1,371.5,1442350.8,989846.69,278736.94,0,0,0,4067.6929 +3555,4362,7731,7730,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7105689,8.021306,0,23,0,-2.1839573,0,2,2,2021,13,1,39,37,1,1,0,8.1112385,8.1112385,0,0,0,0,0,0,0,2,0,0,0,0,0,48.06,45.53,44.11,50.11,6.666666666666667,1,1,0,0,10,13,5,1,371.5,1442350.8,989846.69,278736.94,0,0,0,4067.6929 +3555,4363,7732,-9,7731,7730,1,1,19,0,0,0,2,2,-9,0,3,8.0164394,8.4418468,0,0,0,-962.2395,0,2,2,2021,6,0,58,42,1,0,1,5.7808275,5.7808275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,13,4,1,1444,-166483.11,-46922.285,0,0,0,0,2026.7589 +3555,4364,7733,-9,7731,7730,1,1,19,0,0,0,2,2,-9,0,4,7.4121528,7.7160807,0,0,0,-1057.2186,0,2,2,2021,4,0,39,41,1,0,1,5.4920826,5.4920826,0,0,0,0,0,0,0,0,0,0,0,0,0,62.08,48.35,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,915,-58526.262,0,0,0,0,0,1835.702 +3556,4365,7734,-9,-9,7736,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1009.2346,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,2,0,496.33334,-35704.816,28910.783,0,0,0,0,241.27203 +3556,4365,7735,7736,7734,-9,1,0,29,0,0,0,1,1,-9,0,2,0,0,0,7,2,135.46535,0,2,-9,2021,12,0,0,20,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.7602808,0,39.39,37.66,43.41,31.66,5,2,3,1,0,3,2,2,0,496.33334,-35704.816,28910.783,0,0,0,0,241.27203 +3556,4365,7736,7735,7734,-9,1,1,27,0,0,0,1,1,-9,0,1,6.2144079,6.2110925,0,7,-2,-102.90484,0,3,-9,2021,16,4,68,0,1,4,0,.87911004,.87911004,.05,.05,0,0,0,0,0,0,1,1,0,4.4567914,0,43.41,31.66,39.39,37.66,5,2,3,0,1,9,2,2,0,496.33334,-35704.816,28910.783,0,0,0,0,241.27203 +3557,4366,7737,7738,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.5362253,8.4160738,0,5,-3,89.926445,0,2,3,2021,6,0,30,30,1,0,0,17.800974,17.800974,0,0,0,0,0,0,0,0,1,1,0,2.9684317,0,57.16,56.15,32.8,59.14,8.333333333333334,1,1,0,0,8,2,5,1,437.66666,3063.845,30983.75,0,0,9406.7246,0,3399.1414 +3557,4366,7738,7737,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.2702951,8.1281672,0,5,3,-17.865814,0,-9,-9,2021,16,4,48,57,1,4,0,11.390263,11.390263,0,0,0,0,0,0,0,0,1,1,0,0,0,32.8,59.14,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,437.66666,3063.845,30983.75,0,0,9406.7246,0,3399.1414 +3557,4366,7739,-9,7737,7738,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.1544,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,437.66666,3063.845,30983.75,0,0,9406.7246,0,3399.1414 +3558,4367,7740,7741,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.5605249,8.6922503,0,25,3,-.63096428,0,2,3,2021,10,0,39,39,1,0,0,14.465659,14.465659,0,0,0,0,0,0,0,0,0,0,0,3.9290104,0,61.58,27.28,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,376,117495.2,0,328340.44,98901.672,0,0,3334.6079 +3558,4367,7741,7740,-9,-9,1,1,47,0,0,0,3,3,-9,0,5,8.5200634,8.7074318,0,25,-3,19.08263,0,2,2,2021,6,0,39,39,1,0,0,13.733914,13.733914,0,0,0,0,0,0,0,0,0,0,0,3.8765781,0,57.06,57.76,61.58,27.28,8.333333333333334,1,1,0,0,9,8,5,1,376,117495.2,0,328340.44,98901.672,0,0,3334.6079 +3559,4368,7742,7743,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.7579393,6.7920847,44,-3,-122.31985,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2117275,6.762022,50.27,38.12,63.4,45.23,6.666666666666667,1,1,0,1,8,1,2,1,519.5,882129.19,564549.38,217986.08,0,0,0,1992.9763 +3559,4368,7743,7742,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.5628343,6.3867464,44,3,58.363167,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3614836,6.1524,63.4,45.23,50.27,38.12,8.333333333333334,1,1,0,1,10,1,2,1,519.5,882129.19,564549.38,217986.08,0,0,0,1992.9763 +3560,4369,7744,7745,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.3901763,5.8354139,5,3,-102.65092,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3382869,53,47,49.11,28.94,7,1,1,0,0,0,6,2,1,1255,259711.22,32871.832,0,0,0,0,1957.4946 +3560,4369,7745,7744,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,5,-3,92.202332,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,28.94,53,47,8.333333333333334,1,1,0,0,0,6,2,1,1255,259711.22,32871.832,0,0,0,0,1957.4946 +3561,4370,7746,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.9259,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,.95827591,0,19.998699,0,1,1,0,0,0,50.19,31.34,-9,-9,10,1,1,0,0,0,9,1,0,420,0,0,0,0,0,0,1166.233 +3562,4371,7747,7748,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.7256966,9.7997341,6.6718774,8,0,91.068787,0,-9,-9,2021,11,0,60,45,1,0,0,27.473154,27.473154,.05,.05,0,0,0,0,0,0,0,0,0,1.4290142,5.978394,52,54.51,55.52,38,1.666666666666667,1,1,0,0,11,1,5,1,837,1362481.9,618811.31,245153.53,0,0,0,14855.049 +3562,4371,7748,7747,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.9961705,8.1145372,0,15,0,-6.0778093,0,3,2,2021,9,0,60,37,1,0,0,7.1085963,7.1085963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.52,38,52,54.51,1.666666666666667,1,1,0,0,9,1,5,1,837,1362481.9,618811.31,245153.53,0,0,0,14855.049 +3563,4372,7749,7750,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,6.7431707,6.772891,0,12,1,-57.376274,0,3,2,2021,10,0,24,18,1,0,0,4.250258,4.250258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,44,53.95,8.333333333333334,1,1,0,0,2,11,3,1,568,1378991.8,1241135.5,120271.91,0,0,0,1935.8967 +3563,4372,7750,7749,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0695152,7.9935565,0,12,-1,12.747629,0,2,2,2021,11,1,33,32,1,1,0,11.987985,11.987985,0,0,0,0,0,0,0,0,0,0,0,0,0,44,53.95,52.4,52.91,6.666666666666667,1,1,0,0,13,11,3,1,568,1378991.8,1241135.5,120271.91,0,0,0,1935.8967 +3563,4373,7751,-9,7750,7749,1,0,18,0,0,0,2,2,1,0,5,8.2418137,8.0999212,0,0,0,-1032.5792,-9,2,3,2021,12,2,40,0,1,2,1,9.7644529,9.7644529,.05,.05,0,0,0,0,0,0,0,0,0,.67171139,0,33.22,57.86,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,1609,175652.83,52403.52,0,0,0,0,1612.5187 +3564,4374,7752,7753,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.5006313,9.2749262,6.8947568,9,2,22.496019,0,2,3,2021,0,0,50,44,1,0,0,29.869993,29.869993,.05,.05,0,0,0,0,0,2,0,0,0,0,7.747324,57.16,56.15,57.32,29.38,8.333333333333334,1,1,0,0,11,8,5,1,496.5,2537580,1985113.8,298266.94,0,10623.477,0,4892.1587 +3564,4374,7753,7752,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.1780872,8.3080883,0,9,-2,-.017289815,0,2,1,2021,10,0,55,55,1,0,0,7.9466071,7.9466071,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.32,29.38,57.16,56.15,5,1,1,0,0,11,8,5,1,496.5,2537580,1985113.8,298266.94,0,10623.477,0,4892.1587 +3565,4375,7754,7755,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.155179,8.0015354,0,7,12,-82.592232,0,3,2,2021,7,0,26,30,1,0,0,15.77652,15.77652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.79,52.62,1.666666666666667,1,1,0,0,9,9,4,1,572,212428.52,175841.19,0,0,12115.506,0,2683.293 +3565,4375,7755,7754,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.0262098,7.8459277,0,7,-12,-24.153717,0,2,2,2021,7,0,40,48,1,0,0,9.5120316,9.5120316,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,57.33,53.46,8.333333333333334,1,1,0,0,9,9,4,1,572,212428.52,175841.19,0,0,12115.506,0,2683.293 +3566,4376,7756,7757,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,9,-3,-16.927267,0,-9,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.62,48.9,43.32,63.94,8.333333333333334,1,1,0,0,2,11,5,1,331.5,1072192.3,902718.5,350565.06,47971,0,0,2972.5366 +3566,4376,7757,7756,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.3214731,8.3781185,0,9,3,131.45496,0,2,3,2021,11,0,42,50,1,0,0,15.940978,15.940978,0,0,.05,0,0,0,0,0,0,0,0,7.4963274,0,43.32,63.94,46.62,48.9,8.333333333333334,1,1,0,0,10,11,5,1,331.5,1072192.3,902718.5,350565.06,47971,0,0,2972.5366 +3567,4377,7758,7759,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.8791952,7.6786108,0,28,-1,64.760674,0,-9,-9,2021,13,2,18,7,1,2,0,12.89303,12.89303,0,0,0,0,0,0,0,0,1,1,0,0,0,48.43,47.89,45.84,50.44,1.666666666666667,1,1,0,1,7,5,3,1,918.5,286916.56,100310.71,146116.16,0,0,0,2261.8462 +3567,4377,7759,7758,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,7,1,41.217594,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,0,45.84,50.44,48.43,47.89,8.333333333333334,4,5,0,0,2,5,3,1,918.5,286916.56,100310.71,146116.16,0,0,0,2261.8462 +3568,4378,7760,7761,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.2784986,7.1437402,0,7,-3,-17.023228,0,-9,-9,2021,8,0,24,40,1,0,0,7.0837226,7.0837226,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.64,55.03,8.333333333333334,1,1,0,0,9,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3568,4378,7761,7760,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.2519827,8.0447588,0,7,3,84.626671,0,-9,-9,2021,13,1,40,85,1,1,0,12.607033,12.607033,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.64,55.03,57.16,56.15,8.333333333333334,1,1,0,0,7,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3568,4378,7762,-9,7760,7761,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1547,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3568,4378,7763,-9,7760,7761,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.64984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,1164.25,67939.633,259245.03,0,0,602.57275,5907.7739,2664.0591 +3569,4379,7764,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9300671,7.7014604,0,0,0,-1051.95,0,3,3,2021,13,3,28,28,1,3,0,9.6116247,9.6116247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.71,59.35,-9,-9,8.333333333333334,3,4,0,0,7,2,4,1,1422,930552.75,612776.63,189900.05,0,2362.5686,0,1397.1621 +3570,4380,7765,7766,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,8.1867876,7.9752393,0,12,19,9.7761555,0,-9,-9,2021,12,1,40,40,1,1,0,6.9147139,6.9147139,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.87,54.33,55.36,54.24,6.666666666666667,1,1,0,0,8,5,3,1,895.5,646589.31,241040.53,358568.28,0,0,0,2823.7034 +3570,4380,7766,7765,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.0026197,8.1503429,0,18,-19,-160.69281,0,3,3,2021,7,0,39,38,1,0,0,7.7310281,7.7310281,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,46.87,54.33,8.333333333333334,1,1,0,0,11,5,3,1,895.5,646589.31,241040.53,358568.28,0,0,0,2823.7034 +3571,4381,7767,7768,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.467453,8.3084621,0,3,0,-10.670292,0,-9,-9,2021,19,8,45,45,1,8,0,13.490448,13.490448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.05,64.52,30.67,65.95,6.666666666666667,1,1,0,0,9,5,5,1,483.5,112482.06,38244.496,162340.7,114426.33,1517.0437,0,2707.6265 +3571,4381,7768,7767,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,8.2571583,8.281949,0,3,0,51.680168,0,-9,-9,2021,18,8,35,60,1,8,0,8.2920332,8.2920332,.05,.05,0,0,0,0,0,0,0,0,0,1.9924803,0,30.67,65.95,30.05,64.52,8.333333333333334,1,1,0,0,2,5,5,1,483.5,112482.06,38244.496,162340.7,114426.33,1517.0437,0,2707.6265 +3572,4382,7769,7770,-9,-9,1,1,54,0,3,0,2,2,-9,0,3,8.9698257,8.9213018,0,23,10,125.27174,0,3,3,2021,10,0,40,30,1,0,0,22.773314,22.773314,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.4,50.21,60.57,46.44,5,2,3,0,0,15,8,4,1,594.5,1249406.5,1046773,377769.66,148676.75,27861.871,0,3419.2688 +3572,4382,7770,7769,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,8.208704,8.0256863,0,23,-10,-18.418793,0,3,3,2021,10,0,30,30,1,0,0,12.125213,12.125213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.57,46.44,52.4,50.21,6.666666666666667,2,3,0,0,11,8,4,1,594.5,1249406.5,1046773,377769.66,148676.75,27861.871,0,3419.2688 +3573,4383,7771,-9,7772,7773,1,0,17,0,0,0,2,2,1,0,2,0,0,0,0,0,-1033.7117,-9,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,40.61,52.25,-9,-9,5,1,1,1,1,0,10,2,0,375.33334,-129691.23,1751.0234,0,0,0,0,823.58618 +3573,4383,7772,7773,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,10,11,-35.950874,0,3,3,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,30.58,22.51,53.77,45.91,1.666666666666667,1,1,0,1,5,10,2,0,375.33334,-129691.23,1751.0234,0,0,0,0,823.58618 +3573,4383,7773,7772,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,5.8458261,5.4456811,0,10,-11,90.248428,0,-9,-9,2021,13,1,32,32,1,1,0,1.1971035,1.1971035,0,0,0,0,0,0,0,7,1,1,0,0,0,53.77,45.91,30.58,22.51,5,1,1,0,1,7,10,2,0,375.33334,-129691.23,1751.0234,0,0,0,0,823.58618 +3574,4384,7774,-9,7778,7776,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.5299,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7775,-9,7778,7776,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-893.5885,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7776,7778,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,8.3823586,8.3525238,0,3,2,41.766312,0,-9,-9,2021,9,0,20,0,1,1,0,23.032866,23.032866,.05,.05,0,0,0,0,0,0,1,1,0,7.4265351,0,51,56,54.2,57.49,8,2,3,0,0,1,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7777,-9,7778,7776,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.1552,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3574,4384,7778,7776,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,5.9046826,5.6781206,0,10,-2,14.201733,0,-9,-9,2021,9,0,24,8,1,0,0,1.6921778,1.6921778,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51,56,8.333333333333334,2,3,0,0,8,8,3,0,718.40002,189335.06,59938.238,160167.28,104096.09,0,0,5749.374 +3575,4385,7779,7780,-9,-9,1,1,62,0,0,0,1,1,-9,1,1,7.0222378,7.248363,0,21,8,60.898945,0,3,3,2021,25,12,6,6,1,12,0,26.6394,26.6394,0,0,0,0,0,0,0,0,1,1,0,0,0,36.15,25.71,34.63,39.8,1.666666666666667,2,3,0,1,7,9,2,1,2015.5,714336,208720.92,455787.41,0,0,0,281.86102 +3575,4385,7780,7779,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,31,-8,-111.01476,0,1,1,2021,21,6,0,35,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.63,39.8,36.15,25.71,3.333333333333333,2,3,0,0,10,9,2,1,2015.5,714336,208720.92,455787.41,0,0,0,281.86102 +3576,4386,7781,7782,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.0887184,7.9962687,0,7,-3,122.65183,0,3,3,2021,5,0,40,41,1,0,0,9.4814672,9.4814672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,50.57,44.76,6.666666666666667,1,1,0,0,8,6,4,0,541.5,38487.102,145453.72,0,0,16496.348,3229.4351,2221.5427 +3576,4386,7782,7781,-9,-9,1,0,41,0,0,0,3,3,-9,0,2,7.4198599,7.6979303,0,7,3,135.2637,0,3,3,2021,12,2,27,32,1,2,0,6.19204,6.19204,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.57,44.76,52,54.51,6.666666666666667,1,1,0,0,8,6,4,0,541.5,38487.102,145453.72,0,0,16496.348,3229.4351,2221.5427 +3577,4387,7783,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1084.9486,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,612,0,0,0,0,0,0,0 +3577,4388,7784,-9,7783,-9,1,0,62,0,0,0,1,1,-9,0,4,8.0483885,8.6172075,7.9080486,0,0,-1034.1804,0,2,1,2021,6,0,34,55,1,0,0,11.942266,11.942266,0,0,0,0,0,0,0,0,0,0,0,0,7.834898,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,1949,1126470.9,95141.086,841747.13,48995.434,0,0,2029.7655 +3578,4389,7785,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.0328751,6.9803276,0,0,0,-944.52625,0,3,3,2021,17,8,16,0,1,8,0,7.6308475,7.6308475,0,0,0,0,0,0,0,0,1,1,0,0,0,44.84,41.7,-9,-9,5,1,1,0,0,4,6,2,0,444.33334,-40133.234,0,0,0,0,0,1708.0404 +3578,4389,7786,-9,7785,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.7595,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,2,0,444.33334,-40133.234,0,0,0,0,0,1708.0404 +3578,4389,7787,-9,7785,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5503,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,444.33334,-40133.234,0,0,0,0,0,1708.0404 +3579,4390,7788,7789,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,69,-5,0,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9973741,0,43.01,50.39,56,44,6.666666666666667,1,1,0,0,0,10,1,1,1077,431172.13,86201.227,294500.06,0,0,0,1769.1278 +3579,4390,7789,7788,-9,-9,1,1,90,0,0,0,1,1,-9,0,3,0,0,0,69,5,0,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,125.84235,0,0,1,1,0,0,0,56,44,43.01,50.39,8,1,1,0,0,0,10,1,1,1077,431172.13,86201.227,294500.06,0,0,0,1769.1278 +3580,4391,7790,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,8.5975914,8.5430126,0,0,0,-982.72034,0,2,1,2021,9,1,57,45,1,1,0,12.078111,12.078111,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.93,51.29,-9,-9,6.666666666666667,1,1,0,0,12,10,5,0,372,1182761,1001600.8,139316.36,70616.961,6550.8857,504.60974,2864.8979 +3581,4392,7791,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.8781509,8.4306946,0,0,0,-1002.1611,0,2,3,2021,12,0,41,45,1,0,0,14.857601,14.857601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,137,-51896.742,135156.7,0,0,0,0,2365.5891 +3582,4393,7792,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.4988623,5.5061102,0,0,-979.75696,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4620295,5.5000467,46.1,38.1,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1500,121852.26,-17520.414,127083.22,0,0,0,210.4913 +3583,4394,7793,7794,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,0,6.0019584,5.8781238,36,3,13.628271,0,3,3,2021,8,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1348925,6.5232782,50.63,50.99,44,38,6.666666666666667,1,1,0,0,10,7,3,1,550,1065441,-79774.656,849167.56,0,0,0,-1062.8342 +3583,4394,7794,7793,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.6780572,7.7621551,0,8,-3,-10.185204,0,-9,-9,2021,10,1,38,40,1,1,0,7.2759366,7.2759366,0,0,0,0,0,0,0,0,0,0,0,0,0,44,38,50.63,50.99,3.333333333333333,1,1,0,0,9,7,3,1,550,1065441,-79774.656,849167.56,0,0,0,-1062.8342 +3584,4395,7795,7796,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.6662927,5.7401338,44,1,-53.341858,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8638043,5.6128931,55,52,42.61,54.85,8,1,1,0,1,0,9,2,0,1094,554011.63,155692.88,318826.28,36478.629,934.78827,0,1056.6365 +3584,4395,7796,7795,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,44,-1,-87.679688,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.61,54.85,55,52,6.666666666666667,1,1,0,1,2,9,2,0,1094,554011.63,155692.88,318826.28,36478.629,934.78827,0,1056.6365 +3584,4396,7797,-9,7796,7795,1,1,37,0,0,0,2,2,-9,0,4,8.1755743,8.715064,0,0,0,-921.53973,0,2,3,2021,10,0,40,50,1,1,0,13.37474,13.37474,0,0,.05,0,0,0,0,0,1,1,0,3.8865571,0,51,56,-9,-9,7,1,1,0,0,1,9,4,0,263,-73027.891,-100709.7,122368.34,85939.508,0,0,1647.2189 +3585,4397,7798,7799,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.5416684,7.4355354,0,7,-2,48.77726,0,2,3,2021,8,0,80,70,1,0,0,2.615272,2.615272,.05,.05,0,0,0,0,0,0,0,0,0,2.4318676,0,62.39,56.71,46.75,56.99,10,1,1,0,0,8,11,5,1,850.5,1827388.5,1681327,195651.88,89755.109,0,0,2727.8901 +3585,4397,7799,7798,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5325785,8.5130615,0,7,2,4.4778972,0,2,2,2021,14,2,72,60,1,2,0,8.0658598,8.0658598,0,0,0,0,0,0,0,0,0,0,0,1.0225825,0,46.75,56.99,62.39,56.71,8.333333333333334,1,1,0,0,8,11,5,1,850.5,1827388.5,1681327,195651.88,89755.109,0,0,2727.8901 +3585,4398,7800,-9,7799,7798,1,1,25,0,0,0,1,1,-9,0,5,8.3695354,8.1380539,0,0,0,-992.00372,0,1,2,2021,7,0,53,43,1,0,1,7.3086982,7.3086982,.05,.05,0,0,0,0,0,0,0,0,0,3.7466924,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,77,-78720.781,57656.426,0,0,-474.15796,0,1391.626 +3585,4399,7801,-9,7799,7798,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-971.29028,-9,1,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,7,11,2,1,1138,105626.08,0,0,0,0,0,376.8757 +3586,4400,7802,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.6392617,7.6783528,0,0,-1004.387,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8704133,7.6290798,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,809,387517.44,176608.2,161828.69,0,0,0,1716.1555 +3587,4401,7803,7804,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7838659,9.0805798,0,6,-1,-73.865967,0,-9,-9,2021,9,1,50,40,1,1,0,15.714039,15.714039,.05,.05,0,0,0,0,0,0,0,0,0,.57285583,0,44.07,54.28,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,388.5,52924.219,89707.398,193292.84,189618.53,0,0,5109.0981 +3587,4401,7804,7803,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.8658247,8.8817081,0,6,1,-75.542923,0,1,1,2021,7,0,55,60,1,0,0,18.246435,18.246435,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.07,54.28,8.333333333333334,1,1,0,0,6,2,5,1,388.5,52924.219,89707.398,193292.84,189618.53,0,0,5109.0981 +3588,4402,7805,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,5,-4,-95.920494,0,2,2,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.23,25.07,63.24,42.39,3.333333333333333,1,1,0,1,1,4,2,0,593,113699.95,0,0,0,0,0,1754.8499 +3588,4403,7806,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.3130622,7.3361745,0,5,4,53.632404,-9,-9,-9,2021,12,0,23,0,1,0,0,9.4225693,9.4225693,0,0,0,0,0,0,0,0,1,1,0,0,0,63.24,42.39,28.23,25.07,8.333333333333334,1,1,0,0,0,4,2,0,177,-94531.617,-19185.25,0,0,0,0,743.29352 +3589,4404,7807,7808,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.7350769,8.5437403,0,10,2,-4.741549,0,2,2,2021,8,0,48,48,1,0,0,14.610396,14.610396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.47,52.37,57.06,57.76,8.333333333333334,1,1,0,0,9,4,5,1,683.66669,92605.742,60876.113,35667.57,8962.9688,0,0,4783.8823 +3589,4404,7808,7807,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,8.779973,8.5399485,0,10,-2,-195.12711,0,2,2,2021,9,0,40,40,1,0,0,20.092228,20.092228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53.47,52.37,8.333333333333334,1,1,0,0,9,4,5,1,683.66669,92605.742,60876.113,35667.57,8962.9688,0,0,4783.8823 +3589,4404,7809,-9,7808,7807,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.8796,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,683.66669,92605.742,60876.113,35667.57,8962.9688,0,0,4783.8823 +3590,4405,7810,7811,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.4431143,8.4736462,4.1413884,25,4,-100.45409,0,3,3,2021,3,0,50,44,1,0,0,11.71126,11.71126,0,0,0,0,0,0,0,7,0,0,0,5.1425991,4.8356605,62.27,42.94,54,53,10,1,1,0,0,10,9,5,1,814.5,534573.19,266299.78,250614.91,33806.887,0,0,3820.0649 +3590,4405,7811,7810,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2819557,8.5471115,0,7,-4,10.815018,0,-9,-9,2021,8,0,25,25,1,0,0,25.131674,25.131674,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,53,62.27,42.94,8,1,1,0,0,1,9,5,1,814.5,534573.19,266299.78,250614.91,33806.887,0,0,3820.0649 +3591,4406,7812,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.6103268,6.0277715,0,0,-1060.6528,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.6556673,64.43000000000001,36.45,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,731,209429.98,110975.94,144809.89,0,0,0,1161.8949 +3592,4407,7813,7814,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,4.2479224,4.9763441,43,-7,-74.65052,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.572803,4.4612713,58.5,44.67,62.4,48.33,8.333333333333334,1,1,0,0,0,7,4,1,1105,1495667.3,304036.63,599567.13,0,0,0,5044.5869 +3592,4407,7814,7813,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,8.5922747,8.3473606,43,7,-100.06823,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1269007,8.3031607,62.4,48.33,58.5,44.67,10,1,1,0,0,0,7,4,1,1105,1495667.3,304036.63,599567.13,0,0,0,5044.5869 +3593,4408,7815,7817,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,1,-7,0,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0416188,0,57.16,56.15,28.33,62.63,8.333333333333334,1,1,0,0,7,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3593,4408,7816,-9,7815,7817,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.231,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3593,4408,7817,7815,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,0,0,0,1,7,0,-9,2,2,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0969281,0,28.33,62.63,57.16,56.15,5,1,1,0,0,13,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3593,4408,7818,-9,7815,7817,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.8783,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,1,0,958.25,74003.836,0,0,0,0,0,1636.4004 +3594,4409,7819,7820,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.4243598,7.791503,0,40,-1,-54.334442,0,1,1,2021,4,0,20,44,1,0,0,13.424843,13.424843,.05,.05,0,0,0,0,0,0,0,0,0,3.9474652,0,54.77,55.87,54.79,55.86,10,1,1,0,0,9,9,5,1,975,3799329,2624859.5,909589.88,0,0,0,4454.1777 +3594,4409,7820,7819,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,9.3274899,9.2797108,0,41,1,-19.329182,0,3,2,2021,7,0,50,50,1,0,0,25.34524,25.34524,.05,.05,0,0,0,0,0,0,0,0,0,4.5284085,0,54.79,55.86,54.77,55.87,8.333333333333334,1,1,0,0,9,9,5,1,975,3799329,2624859.5,909589.88,0,0,0,4454.1777 +3595,4410,7821,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.3148422,6.0918045,0,0,-940.64966,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0656333,53.38,52.51,-9,-9,8.333333333333334,1,1,0,0,9,1,2,1,314,272611.63,66335.461,103297.58,0,0,0,885.45544 +3596,4411,7822,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.2973995,7.9073706,0,0,0,-1029.4459,0,3,2,2021,11,0,40,40,1,0,0,7.6930866,7.6930866,.05,.05,.05,0,0,0,0,0,1,1,0,5.0658464,0,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,543,715983.19,88383.367,0,0,0,0,907.78784 +3597,4412,7823,7824,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.6444283,7.6581278,0,7,1,3.2457895,0,-9,-9,2021,9,0,24,24,1,1,0,10.731494,10.731494,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,51,54,8,2,3,0,0,8,8,3,0,335,697581.44,463449.88,290019.94,0,0,0,1045.269 +3597,4412,7824,7823,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,0,0,0,25,-1,42.41608,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,53,54,8,2,3,0,0,0,8,3,0,335,697581.44,463449.88,290019.94,0,0,0,1045.269 +3598,4413,7825,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,9.6275892,9.5952187,0,0,0,-995.95935,0,2,2,2021,10,0,40,50,1,0,0,42.883953,42.883953,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,7,4,5,0,359,438749.94,167056.56,104439.03,109663.27,0,0,5127.6807 +3598,4414,7826,-9,7825,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-980.25763,-9,2,-9,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3455555,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,184,-8812.9141,0,0,0,0,0,457.92972 +3599,4415,7827,-9,7828,7829,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-893.98248,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7828,7829,-9,-9,1,0,36,1,4,0,1,1,-9,0,5,7.9689288,7.867825,0,9,-1,-70.223404,-9,2,2,2021,8,0,26,0,1,0,0,9.780961,9.780961,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,44.87,53.66,8.333333333333334,1,1,0,0,8,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7829,7828,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.6472149,8.6235905,0,9,1,79.811562,0,2,2,2021,8,0,42,48,1,0,0,16.161608,16.161608,.05,.05,0,0,0,0,0,0,1,1,0,8.192112,0,44.87,53.66,60.02,56.42,8.333333333333334,1,1,0,0,8,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7830,-9,7828,7829,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1006.7947,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7831,-9,7828,7829,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.0999,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3599,4415,7832,-9,7828,7829,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-932.13269,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,623.5,92141.93,-24041.234,0,0,0,0,5565.3574 +3600,4416,7833,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.2702398,8.4939919,0,0,0,-1066.8406,0,3,3,2021,9,0,42,42,1,0,0,15.242117,15.242117,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,44.39,63.4,-9,-9,8.333333333333334,1,1,0,0,15,9,5,1,228,156588.41,23561.764,144149.91,131054.78,6051.7944,7906.1182,1124.928 +3601,4417,7834,7835,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.6072626,8.8154202,7.2601991,11,-1,-142.22411,0,-9,-9,2021,14,3,38,45,1,3,0,15.403909,15.403909,.05,.05,0,0,0,0,0,0,1,1,0,6.7588625,7.6366491,50.72,46.82,36.53,31.88,8.333333333333334,1,1,0,0,7,4,5,1,1170,1172929.8,787417.75,217081.09,0,0,0,3648.5186 +3601,4417,7835,7834,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.0074282,4.7453346,41,1,-180.32031,0,2,-9,2021,19,6,0,0,3,6,0,0,0,.05,.05,0,1,0,3.9642997,0,0,1,1,0,0,4.6393342,36.53,31.88,50.72,46.82,3.333333333333333,1,1,0,0,1,4,5,1,1170,1172929.8,787417.75,217081.09,0,0,0,3648.5186 +3601,4418,7836,-9,7835,7834,1,0,26,0,0,0,2,2,-9,1,1,0,0,0,0,0,-904.87585,0,2,1,2021,36,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,6.86,55.47,-9,-9,0,1,1,0,0,1,4,1,1,442,132802.72,0,0,0,0,0,1818.0251 +3602,4419,7837,7838,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,0,0,21,6,-72.251488,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.31,33.75,50.58,40.29,8.333333333333334,1,1,0,1,0,4,4,1,1889.5,1600306.5,1324795.5,125387.11,0,0,0,2547.0986 +3602,4419,7838,7837,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.405777,8.6526747,7.1593494,19,-6,-47.973408,0,2,1,2021,7,0,80,70,1,0,0,6.4891853,6.4891853,0,0,0,0,0,0,0,0,1,1,0,0,7.5330119,50.58,40.29,59.31,33.75,3.333333333333333,1,1,0,0,11,4,4,1,1889.5,1600306.5,1324795.5,125387.11,0,0,0,2547.0986 +3603,4420,7839,7840,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.5645032,7.2818003,0,17,-7,37.052914,0,1,1,2021,9,0,15,16,1,0,0,17.133684,17.133684,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,58.84,47.11,8.333333333333334,2,3,0,0,11,8,5,1,915,1516048.3,455478.38,847693.88,0,0,0,4511.4893 +3603,4420,7840,7839,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.5855665,9.5319071,0,17,7,-133.55418,0,1,1,2021,10,0,50,35,1,0,0,33.416988,33.416988,.05,.05,0,0,0,0,0,0,0,0,0,3.0531671,0,58.84,47.11,58.47,50.22,8.333333333333334,2,3,0,0,9,8,5,1,915,1516048.3,455478.38,847693.88,0,0,0,4511.4893 +3604,4421,7841,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.86487,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84203345,0,62.1,37.96,-9,-9,10,1,1,0,0,0,9,2,1,1243,18205.115,0,0,0,0,0,200.11148 +3605,4422,7842,7843,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1384592,8.2008638,0,5,5,-78.795563,0,-9,-9,2021,10,0,39,39,1,0,0,10.346674,10.346674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,5,1,1,0,0,5,2,4,1,613.5,820348,132214.84,130866,136820.16,1704.4786,5520.0156,2490.6367 +3605,4422,7843,7842,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.0761147,8.0424757,0,5,-5,-97.364769,0,-9,-9,2021,8,0,37,37,1,0,0,9.4134283,9.4134283,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,10,2,4,1,613.5,820348,132214.84,130866,136820.16,1704.4786,5520.0156,2490.6367 +3606,4423,7844,-9,7847,7845,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.50885,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3606,4423,7845,7847,-9,-9,1,1,44,0,2,0,1,1,-9,1,5,9.30023,9.0225344,0,6,0,61.435272,0,3,3,2021,13,3,70,75,1,3,0,17.07753,17.07753,.05,.05,.05,0,0,0,0,2,1,1,0,8.428813,0,40.13,62.93,57.06,57.76,10,1,1,0,0,7,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3606,4423,7846,-9,7847,7845,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.1721,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3606,4423,7847,7845,-9,-9,1,0,44,0,2,0,3,3,-9,0,5,0,0,0,6,0,-59.800846,0,3,2,2021,7,0,0,8,3,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,40.13,62.93,8.333333333333334,1,1,0,0,3,9,4,1,1047.75,1317111.4,1176087.3,312037.03,146395.63,3450.001,0,11560.354 +3607,4424,7848,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,6.6640263,6.787818,0,0,0,-1145.8684,0,2,2,2021,7,0,30,38,1,0,0,2.6283619,2.6283619,0,0,0,0,0,0,0,0,0,0,0,0,0,44.83,55.13,-9,-9,8.333333333333334,1,1,0,0,9,10,2,0,381,-125893.48,0,0,0,0,1939.1816,672.34265 +3608,4425,7849,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.3925343,8.8989716,0,0,0,-977.52826,0,2,2,2021,12,1,45,42,1,1,0,17.078054,17.078054,0,0,0,0,0,0,0,0,0,0,0,4.2546482,0,58.17,31.47,-9,-9,6.666666666666667,3,4,0,0,13,8,5,1,638,1125536.4,134583.08,897374.31,56375.367,0,0,1860.0745 +3608,4426,7850,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.9284592,8.8987532,0,0,0,-1054.9407,0,-9,-9,2021,9,0,32,60,1,0,0,30.778687,30.778687,.05,.05,0,0,0,0,0,0,0,0,0,7.7309818,0,54.61,49.13,-9,-9,6.666666666666667,3,4,0,1,10,8,5,1,683,89410.742,170476.41,0,0,0,473.47052,3721.05 +3609,4427,7851,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.812933,8.8823948,0,0,0,-923.53693,-9,2,1,2021,5,0,42,0,1,0,0,20.597395,20.597395,.05,.05,0,0,0,0,0,0,0,0,0,2.8527541,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,5,0,248,119103.86,1867.0793,0,0,0,0,3353.1353 +3610,4428,7852,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.4876194,6.2555971,0,0,-919.70331,0,-9,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7301631,0,30.43,64.71000000000001,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1145,-56898.563,185704.31,0,0,1739.4146,0,967.61615 +3611,4429,7853,7855,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.257225,8.0162897,0,11,-3,-69.553871,0,1,2,2021,11,0,30,55,1,0,0,14.040993,14.040993,.05,.05,0,0,0,0,0,0,0,0,0,.59919512,0,48.77,60.16,52.43,55.57,8.333333333333334,1,1,0,0,10,9,5,1,388,891556.56,731755.94,471036.38,331440.16,4060.3232,0,4945.3628 +3611,4429,7854,-9,7853,7855,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1144.9481,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,388,891556.56,731755.94,471036.38,331440.16,4060.3232,0,4945.3628 +3611,4429,7855,7853,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,9.3262882,9.0573082,0,11,3,54.673317,0,-9,-9,2021,10,2,45,54,1,2,0,26.840809,26.840809,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,48.77,60.16,8.333333333333334,1,1,0,0,14,9,5,1,388,891556.56,731755.94,471036.38,331440.16,4060.3232,0,4945.3628 +3612,4430,7856,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,0,0,0,0,-957.58167,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,321,26030.23,0,0,0,0,-688.90802,513.82001 +3613,4431,7857,7858,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.3001242,9.3974466,0,6,8,-18.311983,0,1,1,2021,8,0,38,40,1,0,0,30.947729,30.947729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,50.46,53.68,6.666666666666667,1,1,0,0,6,7,5,1,456,1053362.9,471397.13,572713,75252.773,0,0,5733.3911 +3613,4431,7858,7857,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.631321,8.4860411,0,6,-8,-28.605467,0,1,1,2021,13,2,38,38,1,2,0,14.960578,14.960578,.05,.05,0,0,0,0,0,0,0,0,0,5.6628804,0,50.46,53.68,51.83,57.2,8.333333333333334,1,1,0,0,6,7,5,1,456,1053362.9,471397.13,572713,75252.773,0,0,5733.3911 +3614,4432,7859,7860,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.7821531,7.281436,0,29,-3,-51.825329,0,3,2,2021,8,0,30,33,1,0,0,7.8252215,7.8252215,0,0,0,0,0,0,0,0,1,1,0,0,0,50.86,44.52,57.16,56.15,10,2,3,0,0,10,9,5,1,1452.5,625293.38,270448.75,450878.13,26830.664,9585.0654,1069.5903,3920.0481 +3614,4432,7860,7859,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.7102404,8.8031683,0,29,3,47.056377,-9,3,-9,2021,6,0,47,0,1,0,0,19.796362,19.796362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.86,44.52,10,1,1,0,0,10,9,5,1,1452.5,625293.38,270448.75,450878.13,26830.664,9585.0654,1069.5903,3920.0481 +3614,4433,7861,-9,7859,7860,1,0,22,0,0,0,2,2,-9,0,3,7.6663322,7.7291989,0,0,0,-1028.3026,-9,2,3,2021,9,0,38,0,1,0,1,7.1998301,7.1998301,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,4,2,0,0,6,9,3,1,401,206139.98,0,0,0,0,0,1301.9691 +3615,4434,7862,7863,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.3052158,6.431087,6,2,-74.584129,0,3,3,2021,12,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7584785,6.1244998,54.77,55.87,48.94,45.02,8.333333333333334,1,1,0,0,6,9,4,1,2113.5,2375385.3,1457232.5,844518.88,0,0,0,3608.9238 +3615,4434,7863,7862,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.3527727,8.3863745,6,-2,-120.84277,0,2,3,2021,11,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8264456,8.3674383,48.94,45.02,54.77,55.87,8.333333333333334,1,1,0,0,6,9,4,1,2113.5,2375385.3,1457232.5,844518.88,0,0,0,3608.9238 +3616,4435,7864,7865,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.5136957,8.4972954,0,31,-11,7.9328008,0,2,2,2021,7,0,47,47,1,0,0,16.870907,16.870907,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.33,53.46,10,1,1,0,0,13,12,5,1,609,2280889,1574900.8,361160.44,0,0,0,3890.3982 +3616,4435,7865,7864,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.2285337,7.963871,10,11,-58.77454,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,8.1688108,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,609,2280889,1574900.8,361160.44,0,0,0,3890.3982 +3617,4436,7866,7867,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,47,-5,-50.40004,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.72,51.29,8.333333333333334,1,1,0,0,9,13,3,1,2632.5,884382.63,337261.56,360911.56,0,36317.281,0,2232.3438 +3617,4436,7867,7866,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,8.1824694,8.0947552,4.31954,47,5,47.134094,0,3,3,2021,6,0,40,57,1,0,0,9.6952953,9.6952953,0,0,0,1,0,4.1203475,0,0,1,1,0,4.8952088,4.4399595,58.72,51.29,62.49,55.09,0,1,1,0,0,12,13,3,1,2632.5,884382.63,337261.56,360911.56,0,36317.281,0,2232.3438 +3618,4437,7868,7869,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.7506757,7.6233282,40,5,-2.1066718,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6825845,7.6840482,56.95,46.69,49.19,36.63,6.666666666666667,1,1,0,0,0,9,3,1,315,1763222.5,728034.5,856584.69,0,2207.9434,0,2684.8347 +3618,4437,7869,7868,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.5933099,7.5531945,2.8985882,40,-5,-33.144791,0,2,2,2021,9,0,23,26,1,0,0,10.19957,10.19957,0,0,0,0,0,0,0,2,1,1,0,3.0703325,3.3000426,49.19,36.63,56.95,46.69,6.666666666666667,1,1,0,0,15,9,3,1,315,1763222.5,728034.5,856584.69,0,2207.9434,0,2684.8347 +3618,4438,7870,-9,7869,7868,1,1,35,0,0,0,2,2,-9,0,4,7.8368416,8.0955896,0,0,0,-1052.6113,0,2,1,2021,7,0,36,37,1,0,1,12.045588,12.045588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.84,48.88,-9,-9,8.333333333333334,1,1,0,0,15,9,4,1,834,82171.805,32917.121,0,0,0,0,949.4248 +3619,4439,7871,-9,7872,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.3262,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,344.5,9839.2129,94410.945,241538.08,161265.88,4466.3525,0,1429.7056 +3619,4439,7872,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,6.639853,7.1539884,6.1499949,0,0,-882.19409,-9,2,2,2021,10,0,24,0,1,0,0,4.870132,4.870132,.05,.05,0,0,0,0,0,2,1,1,0,6.0033455,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,7,1,2,0,344.5,9839.2129,94410.945,241538.08,161265.88,4466.3525,0,1429.7056 +3620,4440,7873,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.1390185,6.4186454,0,0,-1054.8324,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2725487,59.15,42.12,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,226,269940.38,117367.27,187208.45,0,0,0,1007.8979 +3621,4441,7874,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,8.9809599,8.8170214,0,0,0,-1024.0271,0,-9,-9,2021,5,0,50,50,1,0,0,17.388767,17.388767,.05,.05,0,0,0,0,0,0,0,0,0,4.1552916,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,754,-55565.695,55371.934,0,0,0,0,2361.0134 +3622,4442,7875,-9,7876,7878,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-908.95203,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3622,4442,7876,7878,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,18,0,-72.780502,0,2,2,2021,28,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.55,68.68000000000001,59.43,58.05,3.333333333333333,1,1,0,1,5,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3622,4442,7877,-9,7876,7878,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.23,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3622,4442,7878,7876,-9,-9,1,1,35,1,2,0,1,1,-9,0,5,8.2674189,8.6865444,0,18,0,-8.566123,0,1,1,2021,7,1,55,62,1,1,0,10.839231,10.839231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,12.55,68.68000000000001,8.333333333333334,1,1,0,1,10,11,3,1,903,26258.988,36116.129,0,0,694.78815,0,1586.9061 +3623,4443,7879,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-923.15204,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.64,36.51,-9,-9,8.333333333333334,1,1,0,0,7,6,1,1,1537,-24861.262,0,0,0,0,0,-186.48306 +3623,4444,7880,-9,7879,-9,1,1,31,0,0,0,1,1,-9,0,4,8.2686481,8.1201315,0,0,0,-1055.8008,0,2,-9,2021,10,1,38,33,1,1,0,11.822566,11.822566,.05,.05,0,0,0,0,0,0,1,1,0,3.1369808,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,3,6,4,1,6759,135374.81,-49872.402,0,0,0,0,1216.0192 +3624,4445,7881,7882,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,9,-3,30.68009,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.67699081,0,55.97,37.53,58.33,39.49,6.666666666666667,2,3,0,0,0,9,2,1,6039.5,759897.94,187005.88,428801.13,0,0,0,1112.7987 +3624,4445,7882,7881,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5109901,6.6988297,50,3,191.15782,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1860232,6.5864434,58.33,39.49,55.97,37.53,6.666666666666667,2,3,0,0,0,9,2,1,6039.5,759897.94,187005.88,428801.13,0,0,0,1112.7987 +3625,4446,7883,7884,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.1170115,6.9421506,9,-1,51.220596,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7170033,57.16,56.15,50.09,52.47,10,1,1,0,0,0,2,2,1,461,383186.44,210819.66,137034.69,0,1731.7305,0,2723.6968 +3625,4446,7884,7883,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.1565037,6.0489202,9,1,-10.804673,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2954717,50.09,52.47,57.16,56.15,8.333333333333334,3,4,0,0,0,2,2,1,461,383186.44,210819.66,137034.69,0,1731.7305,0,2723.6968 +3626,4447,7885,7886,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,10.352614,10.78753,0,28,3,-98.395187,0,2,2,2021,8,0,48,50,1,0,0,69.705009,69.705009,.05,.05,0,0,0,0,0,0,0,0,0,2.4836237,0,49.25,61.25,54.2,57.49,8.333333333333334,1,1,0,0,9,2,5,1,218.5,1620556.6,1408704.8,479374.41,349359.5,10914.455,0,24433.059 +3626,4447,7886,7885,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.1716347,8.1463013,0,7,-3,-115.29436,0,3,3,2021,7,0,24,23,1,0,0,20.645355,20.645355,0,0,0,0,0,0,0,0,0,0,0,2.042206,0,54.2,57.49,49.25,61.25,10,1,1,0,0,7,2,5,1,218.5,1620556.6,1408704.8,479374.41,349359.5,10914.455,0,24433.059 +3627,4448,7887,7888,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.913054,7.8350239,54,3,-19.718077,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3068423,7.8347259,61.43,43.34,58.47,44.69,8.333333333333334,1,1,0,0,0,5,3,1,493,1127009.3,528933.88,320680.34,0,0,0,2467.739 +3627,4448,7888,7887,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-3,-82.071663,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3666906,0,58.47,44.69,61.43,43.34,10,1,1,0,0,0,5,3,1,493,1127009.3,528933.88,320680.34,0,0,0,2467.739 +3628,4449,7889,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1043.8491,0,-9,-9,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.99,55.7,-9,-9,6.666666666666667,2,3,1,0,0,7,1,1,1220,-155682.34,0,0,0,0,0,0 +3629,4450,7890,7891,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.5010376,7.6223025,0,9,-2,-116.92869,0,-9,-9,2021,7,0,40,40,1,0,0,5.1711397,5.1711397,.05,.05,0,0,0,0,0,7,0,0,0,0,0,50.07,43.37,65.06,41.58,6.666666666666667,1,1,0,0,12,13,4,1,349.5,-3101.1328,66624.109,97104.063,7782.3359,0,-166.86264,1716.6962 +3629,4450,7891,7890,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.5421634,7.7894106,0,9,2,105.79311,0,3,3,2021,10,0,40,40,1,0,0,5.6502938,5.6502938,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,65.06,41.58,50.07,43.37,8.333333333333334,1,1,0,0,10,13,4,1,349.5,-3101.1328,66624.109,97104.063,7782.3359,0,-166.86264,1716.6962 +3630,4451,7892,7894,-9,-9,1,0,40,0,3,0,2,2,-9,0,2,7.0930748,7.0257506,0,10,3,-93.834503,0,-9,-9,2021,24,12,60,0,1,12,0,2.5521863,2.5521863,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34,40.08,37.23,49.23,5,1,1,0,0,1,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7893,-9,7892,7894,1,1,16,0,3,0,2,2,-9,0,1,0,0,0,0,0,-1058.3905,-9,2,2,2021,26,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.81,34.2,-9,-9,3.333333333333333,1,1,1,1,0,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7894,7892,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,8.5207415,8.7822361,0,10,-3,-121.89804,0,2,3,2021,10,0,36,40,1,0,0,17.08077,17.08077,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.23,49.23,34,40.08,8.333333333333334,1,1,0,0,14,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7895,-9,7892,7894,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.4727,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4451,7896,-9,7892,7894,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.37952,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,1169.2,90008.484,189767.03,0,0,22212.43,713.38324,3662.502 +3630,4452,7897,-9,7892,7894,1,0,20,0,3,0,2,2,1,0,3,6.985877,6.9032812,0,0,0,-950.18787,-9,2,2,2021,28,12,30,0,1,12,1,3.5720706,3.5720706,.05,.05,0,0,0,0,0,0,1,1,0,7.1951771,0,14.25,61.15,-9,-9,1.666666666666667,1,1,0,1,2,4,2,0,417,41182.211,-40820.34,0,0,-1034.5071,1594.4585,1552.0115 +3631,4453,7898,7899,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,6.9156656,7.1104774,0,37,1,37.273006,0,3,3,2021,13,1,24,20,1,1,0,5.0552979,5.0552979,0,0,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,53,55,8.333333333333334,1,1,0,0,8,11,4,0,359,74793.43,172284.31,54356.871,0,7093.8154,0,1490.7577 +3631,4453,7899,7898,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,7.9908714,8.0267229,0,7,-1,5.1121559,-9,-9,-9,2021,9,0,40,0,1,1,0,8.7685223,8.7685223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,43.67,61.06,8,1,1,0,0,1,11,4,0,359,74793.43,172284.31,54356.871,0,7093.8154,0,1490.7577 +3632,4454,7900,-9,7901,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.21942,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,2,0,1040.6666,-153290.47,10706.899,0,0,0,0,1923.1217 +3632,4454,7901,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,0,6.1570716,5.8774319,0,0,-961.31299,0,2,-9,2021,18,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.3685727,0,39.85,55.83,-9,-9,5,1,1,0,0,5,6,2,0,1040.6666,-153290.47,10706.899,0,0,0,0,1923.1217 +3632,4454,7902,-9,7901,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.7349,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,1040.6666,-153290.47,10706.899,0,0,0,0,1923.1217 +3633,4455,7903,7904,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.101553,7.1739073,0,12,-12,90.480751,0,-9,-9,2021,21,9,24,24,1,9,0,7.4563632,7.4563632,0,0,0,0,0,0,0,0,1,1,0,0,0,32.38,53.29,47.55,28.27,5,1,1,0,1,8,6,3,0,289.5,1160537.5,796789.88,206178.48,0,0,0,1710.3491 +3633,4455,7904,7903,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.4755387,7.3296456,12,12,-121.664,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,25.234686,0,0,1,1,0,0,7.421433,47.55,28.27,32.38,53.29,6.666666666666667,1,1,0,1,8,6,3,0,289.5,1160537.5,796789.88,206178.48,0,0,0,1710.3491 +3634,4456,7905,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,7.762217,7.7432513,0,0,0,-1022.27,0,2,2,2021,13,3,39,1,1,3,0,7.3872223,7.3872223,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.52,62.72,-9,-9,6.666666666666667,1,1,0,0,5,10,3,0,518,101844.3,39446.816,0,0,0,0,676.0777 +3635,4457,7906,7907,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.9439783,6.799933,9,7,-40.56361,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5460258,6.9672589,44.42,59.09,52.99,51.28,8.333333333333334,1,1,0,0,0,10,3,1,1172.5,659709.63,227572.44,235664.52,0,0,0,2383.7083 +3635,4457,7907,7906,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.719286,6.7685714,9,-7,19.864908,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3092275,7.1427898,52.99,51.28,44.42,59.09,6.666666666666667,1,1,0,0,6,10,3,1,1172.5,659709.63,227572.44,235664.52,0,0,0,2383.7083 +3636,4458,7908,7909,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.8008022,8.5587187,0,31,2,26.785618,-9,2,1,2021,8,1,35,0,1,1,0,21.571953,21.571953,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.68,55.19,55.36,54.24,10,3,4,0,0,12,8,5,1,1145,1421584.3,682816.56,747491.75,0,0,0,7724.1401 +3636,4458,7909,7908,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.7394142,9.4345961,0,31,-2,-.54202551,0,-9,-9,2021,8,0,50,40,1,0,0,37.39703,37.39703,.05,.05,0,0,0,0,0,0,0,0,0,4.7399535,0,55.36,54.24,53.68,55.19,1.666666666666667,3,4,0,0,12,8,5,1,1145,1421584.3,682816.56,747491.75,0,0,0,7724.1401 +3637,4459,7910,7911,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6120796,8.3701963,6.8072119,43,-3,-43.530228,0,2,2,2021,24,11,24,28,1,11,0,10.96356,10.96356,0,0,0,0,0,0,0,7,1,1,0,.37033197,7.0221553,37.23,35.67,45.51,36.1,1.666666666666667,1,1,0,0,8,2,4,1,349,1191718.8,909337.25,173654.13,0,2501.2896,0,3029.7935 +3637,4459,7911,7910,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.0358248,8.0063562,43,3,-38.222248,0,-9,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3986807,45.51,36.1,37.23,35.67,5,1,1,0,0,7,2,4,1,349,1191718.8,909337.25,173654.13,0,2501.2896,0,3029.7935 +3638,4460,7912,-9,-9,-9,1,1,42,0,0,0,3,3,-9,1,4,0,0,0,0,0,-925.53223,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,4,5,0,1,0,8,1,0,153,-66158.859,0,0,0,0,0,1294.1637 +3639,4461,7913,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,5.4908361,5.3716054,0,0,-994.57886,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.435863,44.23,49.45,-9,-9,10,1,1,0,0,0,13,2,1,531,261348.75,6071.0669,25801.717,0,0,1007.7197,84.772491 +3639,4462,7914,-9,7913,-9,1,1,33,0,0,0,2,2,-9,0,4,7.576437,7.5359244,0,0,0,-911.33722,0,3,2,2021,9,0,45,37,1,0,0,6.5228539,6.5228539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,1115,191514.27,39763.715,0,0,0,2414.5891,373.92227 +3640,4463,7915,7916,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.8791046,7.5362649,0,32,-3,-75.552711,0,3,2,2021,7,0,30,30,1,0,0,9.4068499,9.4068499,.05,.05,0,0,0,0,0,0,0,0,0,.12982811,0,57.18,45.76,57.16,56.15,10,2,3,0,0,14,9,5,1,1154.5,872467.88,446527.25,361564.31,0,0,0,3783.8657 +3640,4463,7916,7915,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.8615274,8.8676977,0,32,3,82.272011,0,3,-9,2021,6,0,43,43,1,0,0,16.030804,16.030804,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.18,45.76,8.333333333333334,1,1,0,0,13,9,5,1,1154.5,872467.88,446527.25,361564.31,0,0,0,3783.8657 +3641,4464,7917,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.0670261,8.2807369,0,0,0,-1080.3671,0,3,3,2021,16,4,62,46,1,4,0,5.1143241,5.1143241,0,0,0,0,0,0,0,2,1,1,0,0,0,38.68,55.46,-9,-9,6.666666666666667,1,1,0,0,12,12,4,1,288,45253.645,0,134547.36,0,0,0,566.33344 +3642,4465,7918,7919,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,0,0,39,5,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,60.12,54.8,45.37,30.9,10,1,1,0,0,0,7,2,1,473,290068.34,0,308684.63,0,0,7551.583,1669.3479 +3642,4465,7919,7918,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,39,-5,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.37,30.9,60.12,54.8,8.333333333333334,1,1,0,0,0,7,2,1,473,290068.34,0,308684.63,0,0,7551.583,1669.3479 +3643,4466,7920,7921,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.7227383,8.8150005,0,36,-1,-9.207633,0,2,3,2021,12,1,40,65,1,1,0,26.367731,26.367731,.05,.05,0,0,0,0,0,0,0,0,0,2.5184617,0,45.52,33.27,45,39,8.333333333333334,1,1,0,0,12,13,5,1,817.5,1025799.1,597354.31,397572.41,63825.465,0,0,6390.6846 +3643,4466,7921,7920,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.895432,8.5275478,7.6403513,36,1,-16.17857,0,2,2,2021,8,0,40,0,1,0,0,10.26305,10.26305,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2270465,45,39,45.52,33.27,8.333333333333334,1,1,0,0,12,13,5,1,817.5,1025799.1,597354.31,397572.41,63825.465,0,0,6390.6846 +3644,4467,7922,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,4,7.7849689,7.7019835,0,0,0,-973.8338,0,3,1,2021,6,0,37,37,1,0,0,6.3087854,6.3087854,.05,.05,0,0,0,0,0,0,1,1,0,4.852459,0,57.91,43.45,-9,-9,10,1,1,0,0,12,5,3,0,2204,59618.059,-72700.594,0,0,0,0,3493.6296 +3645,4468,7923,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.7037835,6.4762897,0,0,-1010.8469,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5801086,42.86,31.98,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,43,391050.81,153380.8,378616.69,0,0,0,1144.6211 +3646,4469,7924,-9,7926,7925,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.41937,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3646,4469,7925,7926,-9,-9,1,1,27,1,2,0,3,3,-9,0,3,7.4494195,7.441586,0,2,3,-31.183214,0,-9,-9,2021,11,3,56,60,1,3,0,3.8504717,3.8504717,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,59.13,44.42,59.09,5,1,1,0,0,3,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3646,4469,7926,7925,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,0,0,0,2,-3,118.86269,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.42,59.09,47.85,59.13,6.666666666666667,1,1,0,0,0,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3646,4469,7927,-9,7926,7925,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.0868,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,1051.25,54373.52,-4448.2715,0,0,0,0,1692.5125 +3647,4470,7928,7929,-9,-9,1,0,26,0,0,0,1,1,-9,0,2,1.941047,2.0371504,0,3,-2,-9.8219528,0,-9,-9,2021,16,4,36,12,1,4,0,.023294901,.023294901,0,0,0,0,0,0,0,2,0,0,0,0,0,37.02,37.37,38.04,56.72,8.333333333333334,1,1,0,0,5,11,3,0,945,63186.969,0,0,0,0,0,453.435 +3647,4470,7929,7928,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.7769351,7.6551609,0,3,2,45.847397,0,-9,-9,2021,10,1,31,31,1,1,0,10.783099,10.783099,0,0,0,0,0,0,0,7,0,0,0,0,0,38.04,56.72,37.02,37.37,1.666666666666667,1,1,0,0,3,11,3,0,945,63186.969,0,0,0,0,0,453.435 +3648,4471,7930,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,3.6269758,3.6440086,0,0,-947.16199,0,2,1,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,3.9988298,0,51.913654,0,1,1,0,3.7814367,3.6244504,41.59,31.18,-9,-9,5,1,1,0,0,0,5,2,0,454,145104.08,46522.445,56622.809,0,0,0,1175.8655 +3649,4472,7931,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.3764882,6.5070672,0,0,-958.82788,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8336468,43.51,43.59,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,233,406249.13,241144.25,0,0,0,0,852.12762 +3650,4473,7932,-9,7934,7935,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7281,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3650,4473,7933,-9,7934,7935,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.13409,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3650,4473,7934,7935,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.414783,7.4479151,0,1,-2,-152.59436,-9,2,2,2021,10,0,25,0,1,0,0,6.6291485,6.6291485,0,0,0,0,0,0,0,0,1,1,0,0,0,46.48,53.76,42.98,48.46,8.333333333333334,1,1,0,0,8,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3650,4473,7935,7934,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,9.0232267,9.3414116,0,1,2,39.157475,-9,3,2,2021,14,3,61,0,1,3,0,13.611781,13.611781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.98,48.46,46.48,53.76,8.333333333333334,1,1,0,0,9,7,4,1,513,150340.59,2378.9211,353343.78,140284.95,6219.7769,0,3680.8098 +3651,4474,7936,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,8.0012426,8.2697163,0,0,-1021.8918,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.1008759,7.6473432,45.32,51.16,-9,-9,10,1,1,0,0,11,5,4,1,206,0,0,0,0,0,0,2083.0657 +3651,4475,7937,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7224174,7.5062709,0,0,0,-913.38855,0,2,2,2021,7,1,33,27,1,1,0,10.910225,10.910225,.05,.05,0,0,0,0,0,2,0,0,0,7.3960099,0,62.4,48.33,-9,-9,10,1,1,0,0,12,5,3,1,1156,-76337.516,-142745.27,0,0,0,0,1766.8363 +3652,4476,7938,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.7565885,7.6692762,0,0,0,-1026.6188,0,2,2,2021,7,0,37,0,1,0,0,7.8520064,7.8520064,0,0,0,0,0,0,0,0,0,0,0,7.0732188,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,168,220706.84,110154.38,0,0,0,0,1091.9639 +3653,4477,7939,7940,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,3.6705625,4.2010422,8,9,159.59334,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7925749,51,46,51,48,7,1,1,0,1,1,2,2,1,320,102953.38,0,82510.109,0,0,0,837.43445 +3653,4477,7940,7939,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,8,0,-15.669152,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,51,46,7,1,1,1,1,4,2,2,1,320,102953.38,0,82510.109,0,0,0,837.43445 +3654,4478,7941,-9,7942,7943,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.97552,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3654,4478,7942,7943,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.7031131,7.5311775,0,21,-6,52.113674,0,-9,2,2021,20,8,30,30,1,8,0,7.7606921,7.7606921,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.64,53.56,44.75,56.39,8.333333333333334,1,1,0,0,12,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3654,4478,7943,7942,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.9813137,9.2851877,0,21,6,-23.629715,0,2,2,2021,11,0,43,45,1,0,0,24.675293,24.675293,.05,.05,.05,0,0,0,0,0,0,0,0,3.9625366,0,44.75,56.39,33.64,53.56,6.666666666666667,1,1,0,0,12,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3654,4478,7944,-9,7942,7943,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.07361,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1128.5,216923.78,117464.2,123245.94,-4025.0825,0,2833.8064,3964.7476 +3655,4479,7945,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.164609,9.0520382,0,0,0,-977.21771,-9,-9,-9,2021,7,0,45,0,1,0,0,25.729477,25.729477,.05,.05,0,0,0,0,0,14.5,0,0,0,7.5361562,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,639,557360.13,481026.16,251898.31,75568.156,0,0,3636.8511 +3656,4480,7946,7947,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.2215252,6.875351,9,4,96.26825,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2206974,57.16,56.15,42.98,19.92,0,1,1,0,0,3,13,2,1,740,1005183.6,384458.22,182280.58,0,0,0,2180.6016 +3656,4480,7947,7946,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,9,-4,89.0355,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.98,19.92,57.16,56.15,1.666666666666667,1,1,0,0,0,13,2,1,740,1005183.6,384458.22,182280.58,0,0,0,2180.6016 +3656,4481,7948,-9,7947,7946,1,1,26,0,0,0,1,1,-9,0,4,8.3202066,8.1664171,0,0,0,-1083.2303,0,3,3,2021,11,0,39,41,1,0,0,17.104753,17.104753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,733,195036.94,18859.738,0,0,18846.201,3029.8562,1119.2332 +3657,4482,7949,7950,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.8484635,5.927669,11,1,-21.630978,0,-9,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.142714,5.7276831,58.41,48.73,52.99,51.28,8.333333333333334,1,1,0,0,7,6,2,1,661.5,873201.19,235318.94,587317.13,0,0,0,2082.782 +3657,4482,7950,7949,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.1330256,7.0415182,11,-1,-82.700508,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1438341,52.99,51.28,58.41,48.73,5,1,1,0,0,8,6,2,1,661.5,873201.19,235318.94,587317.13,0,0,0,2082.782 +3658,4483,7951,7952,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.4174476,6.4743471,47,-4,81.129112,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.52955866,6.5151429,49.27,56.95,52,48,5,1,1,0,0,3,9,2,0,214,424791.44,195648.25,391332.88,0,0,0,1692.1707 +3658,4483,7952,7951,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,47,4,-1.334545,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.5487843,120.40959,66.772308,0,1,1,0,0,0,52,48,49.27,56.95,7,1,1,0,0,0,9,2,0,214,424791.44,195648.25,391332.88,0,0,0,1692.1707 +3659,4484,7953,-9,7954,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.4906,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,446.5,110488.3,229044.59,0,0,0,-148.14362,1824.415 +3659,4484,7954,-9,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,8.6150494,8.5470114,0,0,0,-962.03894,0,-9,-9,2021,9,0,53,47,1,0,0,10.088459,10.088459,.05,.05,0,0,0,0,0,0,1,1,0,2.3511066,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,446.5,110488.3,229044.59,0,0,0,-148.14362,1824.415 +3660,4485,7955,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1102.4882,0,3,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5209544,0,33.61,28.11,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,627,14159.715,0,0,0,0,0,407.94724 +3661,4486,7956,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.090569,5.6897082,0,0,-976.93457,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1597867,5.5582786,30.19,37.62,-9,-9,6.666666666666667,1,1,0,0,8,2,2,0,701,97967.164,138711.67,129572.19,0,0,0,1165.5133 +3661,4487,7957,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2263975,6.6131654,0,0,-1045.9556,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.412591,48.87,34.3,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,245,312849.25,87467.414,222889.55,0,853.53497,0,1067.1935 +3662,4488,7958,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,7.9804692,7.9895077,6.568347,0,0,-1083.3656,0,2,2,2021,7,0,30,30,1,0,0,9.2546778,9.2546778,.05,.05,0,0,0,0,0,0,1,1,0,6.4628024,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,1,4,1,789,-10009.177,-150023.42,0,0,1902.9449,0,1534.7994 +3663,4489,7959,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.0570412,7.8701572,0,0,-984.72778,0,2,2,2021,7,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8674793,8.2686834,57.92,51.82,-9,-9,0,1,1,0,0,8,12,4,1,547,776219.31,543019.5,173467.05,16497.123,0,0,2563.1519 +3664,4490,7960,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5614524,7.3932734,0,0,0,-1087.0521,0,2,3,2021,11,0,40,30,1,0,0,6.6258779,6.6258779,0,0,0,0,0,0,0,0,0,0,0,0,0,35.42,53.9,-9,-9,8.333333333333334,1,1,0,0,12,11,3,0,565,6446.0742,0,131314.03,0,352.91803,0,631.35248 +3665,4491,7961,7962,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,7.6630473,7.8810458,4.9078341,37,3,13.28656,0,2,2,2021,11,0,60,48,1,0,0,4.3610811,4.3610811,0,0,0,0,0,0,0,0,0,0,0,4.5219746,5.0006309,57.68,29.16,39.39,52.44,5,1,1,0,0,11,2,5,1,622.5,1427169.8,0,509723.47,0,0,0,4113.3506 +3665,4491,7962,7961,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,9.0333672,8.90942,0,37,-3,23.677458,0,3,3,2021,15,4,25,20,1,4,0,42.644131,42.644131,0,0,0,0,0,0,0,7,0,0,0,0,0,39.39,52.44,57.68,29.16,6.666666666666667,1,1,0,0,11,2,5,1,622.5,1427169.8,0,509723.47,0,0,0,4113.3506 +3666,4492,7963,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-933.79651,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7043788,0,54,44,-9,-9,8,1,1,0,0,0,1,1,1,267,87323.273,9134.6475,0,0,0,0,1243.7617 +3667,4493,7964,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,2.7422712,2.6443045,0,0,-1008.062,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9004488,2.9084578,62.7,43.99,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,992,42104.887,31463.336,0,0,0,0,940.38336 +3668,4494,7965,7966,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,0,0,0,3,-13,0,1,-9,-9,2021,13,1,0,25,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,15.16,47.74,6.666666666666667,1,1,0,1,4,2,1,0,527,172843,0,94923.828,2763.8916,0,0,0 +3668,4494,7966,7965,-9,-9,1,1,43,0,0,0,3,3,-9,0,1,0,0,0,3,13,0,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,15.16,47.74,54.1,59.11,1.666666666666667,1,1,1,1,9,2,1,0,527,172843,0,94923.828,2763.8916,0,0,0 +3669,4495,7967,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6374764,6.5724788,0,0,-941.44806,-9,2,1,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7647943,6.5205717,57.33,53.46,-9,-9,10,1,1,0,0,0,12,2,1,588,221545.69,222369.66,185497.42,0,0,0,658.3327 +3670,4496,7968,7969,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.1196175,8.0708666,0,6,4,-75.230499,0,3,3,2021,12,0,54,59,1,0,0,6.0226965,6.0226965,.05,.05,.05,0,0,0,0,0,0,0,0,7.1646113,0,38.51,48.9,51.83,57.2,3.333333333333333,1,1,0,0,11,9,5,1,414,437614.91,143671.3,336551.72,43592.953,727.05756,1715.5691,3612.4846 +3670,4496,7969,7968,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2727728,8.471736,0,6,-4,-68.865868,0,-9,-9,2021,7,0,37,35,1,0,0,15.802853,15.802853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,38.51,48.9,8.333333333333334,1,1,0,0,8,9,5,1,414,437614.91,143671.3,336551.72,43592.953,727.05756,1715.5691,3612.4846 +3671,4497,7970,7971,-9,-9,1,1,65,0,0,0,3,3,-9,1,3,8.3308392,7.9032922,0,36,3,100.44655,0,2,3,2021,20,8,37,37,1,8,0,12.115624,12.115624,0,0,0,1,0,0,0,0,1,1,0,0,0,40.64,52.96,47.96,34.69,8.333333333333334,1,1,0,0,10,12,3,1,245.5,496635.88,350072.56,274180.97,0,0,670.6897,2368.1528 +3671,4497,7971,7970,-9,-9,1,0,62,0,0,0,2,2,-9,1,3,0,0,0,36,-3,111.93707,0,2,3,2021,13,1,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6104574,0,47.96,34.69,40.64,52.96,6.666666666666667,1,1,0,0,10,12,3,1,245.5,496635.88,350072.56,274180.97,0,0,670.6897,2368.1528 +3672,4498,7972,7973,-9,-9,1,0,31,0,1,0,3,3,-9,0,4,0,0,0,3,-7,-39.728161,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,57.06,57.76,7,2,3,0,0,0,7,2,1,3693,301934.75,73198.07,456610.88,134199.44,0,0,106.17569 +3672,4498,7973,7972,-9,-9,1,1,38,0,1,0,1,1,-9,0,5,6.781147,7.1079111,0,10,7,28.614326,0,3,3,2021,11,1,35,30,1,1,0,2.5023606,2.5023606,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48,56,8.333333333333334,2,3,0,1,9,7,2,1,3693,301934.75,73198.07,456610.88,134199.44,0,0,106.17569 +3673,4499,7974,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,0,0,0,0,-996.99054,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,10,1,1,0,0,0,4,1,0,654,-135711.66,0,0,0,0,0,503.62866 +3674,4500,7975,7976,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,10,-3,109.88242,0,3,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.5139273,0,59.43,49.68,54.37,54.8,10,2,3,0,0,5,8,5,1,379.5,388569.06,17423.879,512297,109631.15,8196.0469,8881.1523,4019.5251 +3674,4500,7976,7975,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.8243046,8.6363649,7.5481606,10,3,-32.49929,0,3,3,2021,12,0,50,47,1,0,0,13.024827,13.024827,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8766398,54.37,54.8,59.43,49.68,8.333333333333334,2,3,0,0,14,8,5,1,379.5,388569.06,17423.879,512297,109631.15,8196.0469,8881.1523,4019.5251 +3675,4501,7977,7978,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.6249166,6.4021873,26,-20,68.734756,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4191227,56.57,57.78,49.41,58.28,8.333333333333334,1,1,0,0,11,8,2,1,313,624010,157666.36,404179.75,0,0,0,1608.8547 +3675,4501,7978,7977,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.9440842,6.4895258,26,20,-50.658569,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1226392,6.9527535,49.41,58.28,56.57,57.78,8.333333333333334,1,1,0,0,0,8,2,1,313,624010,157666.36,404179.75,0,0,0,1608.8547 +3676,4502,7979,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1025.0835,0,2,1,2021,29,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,33.25,25.7,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,1183,357743.97,-16055.014,549200.75,9180.3643,0,0,892.19611 +3677,4503,7980,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1040.71,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.83,30.46,-9,-9,6.666666666666667,1,1,0,0,10,11,1,0,1942,448202.78,0,192987.75,0,0,0,786.86304 +3678,4504,7981,7982,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,8.4863548,8.7915249,7.6230903,6,2,-43.738304,0,3,3,2021,7,0,37,37,1,0,0,13.938786,13.938786,0,0,0,0,0,0,0,2,1,1,0,5.6452732,7.3491926,56.78,49.38,39,24,8.333333333333334,1,1,0,0,7,12,4,1,1251,1297046,531363.06,164069.13,0,0,0,3563.8564 +3678,4504,7982,7981,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,6,-2,22.661013,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.688539,0,39,24,56.78,49.38,5,1,1,0,0,0,12,4,1,1251,1297046,531363.06,164069.13,0,0,0,3563.8564 +3679,4505,7983,7984,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,0,0,12,5,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.8071733,0,57.16,56.15,66.87,11.23,6.666666666666667,1,1,0,0,8,12,1,1,1149,1243435.5,254948.69,247645.97,0,0,0,18.76351 +3679,4505,7984,7983,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,12,-5,0,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,66.87,11.23,57.16,56.15,6.666666666666667,1,1,0,0,7,12,1,1,1149,1243435.5,254948.69,247645.97,0,0,0,18.76351 +3680,4506,7985,7987,-9,-9,1,0,39,0,2,0,1,1,-9,1,2,0,0,0,12,0,-104.59897,0,-9,-9,2021,27,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.22,25.43,38.47,57.72,6.666666666666667,1,1,0,0,5,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3680,4506,7986,-9,7985,7987,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.037,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3680,4506,7987,7985,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.8929996,8.6230354,0,12,0,-64.016396,0,2,2,2021,33,12,38,-9,1,12,0,23.765394,23.765394,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.47,57.72,33.22,25.43,5,1,1,0,0,13,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3680,4506,7988,-9,7985,7987,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.13452,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,532.25,257463.42,254891.39,289578.66,291615.97,0,0,3198.5635 +3681,4507,7989,-9,7990,-9,1,1,17,0,0,0,3,3,-9,1,2,0,0,0,0,0,-998.45239,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.13,57.92,-9,-9,6.666666666666667,4,5,0,1,0,9,1,0,1944,0,0,0,0,0,0,1054.1902 +3681,4507,7990,-9,-9,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-992.18042,0,2,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.51,26.41,-9,-9,3.333333333333333,4,5,0,1,5,9,1,0,1944,0,0,0,0,0,0,1054.1902 +3681,4508,7991,-9,7990,-9,1,1,21,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.80725,0,2,-9,2021,18,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.69,57.02,-9,-9,5,4,5,0,0,0,9,1,0,670,-104490.23,0,0,0,0,0,1027.2448 +3681,4509,7992,-9,7990,-9,1,1,19,0,0,0,3,3,-9,0,2,8.0302191,7.9957418,0,0,0,-1037.0859,0,2,-9,2021,13,1,40,30,1,1,1,9.9748907,9.9748907,.05,.05,0,0,0,0,0,0,1,0,1,0,0,29.6,54.73,-9,-9,5,4,5,0,0,2,9,4,0,839,143293.02,31660.492,0,0,0,0,1572.7755 +3682,4510,7993,7994,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,50,0,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4988079,0,51.82,54.65,53,47,8.333333333333334,1,1,0,0,4,11,1,1,721.5,741544.75,136824.27,230284.94,0,0,0,4886.5176 +3682,4510,7994,7993,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,0,0,9,0,0,0,-9,-9,2021,9,0,0,20,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4730425,0,53,47,51.82,54.65,7,1,1,0,0,0,11,1,1,721.5,741544.75,136824.27,230284.94,0,0,0,4886.5176 +3683,4511,7995,7996,-9,-9,1,0,49,0,2,0,2,2,-9,0,4,7.4089718,7.631104,0,19,-4,-46.89254,0,2,2,2021,7,0,30,40,1,0,0,7.4308167,7.4308167,.05,.05,0,0,0,0,0,0,1,1,0,6.7801361,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,13,10,4,0,471,444930.75,139697.5,327883.94,43610.594,0,0,3112.4299 +3683,4511,7996,7995,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,8.6651106,8.719945,0,19,4,-11.141301,0,2,2,2021,6,0,38,37,1,0,0,17.715302,17.715302,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,13,10,4,0,471,444930.75,139697.5,327883.94,43610.594,0,0,3112.4299 +3684,4512,7997,-9,8000,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-966.02692,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3684,4512,7998,-9,8000,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-946.56232,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3684,4512,7999,-9,8000,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-901.14319,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3684,4512,8000,-9,-9,-9,1,0,27,1,3,0,2,2,-9,0,4,0,5.9459062,6.1502056,0,0,-1014.1302,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9561577,0,37.78,55.7,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,726,-43630.59,0,0,0,0,0,2070.677 +3685,4513,8001,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1046.5494,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.7619753,4.1205549,19.006676,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,13,1,1,360,162345.5,-19300.07,131134.72,0,0,0,667.89606 +3686,4514,8002,8003,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.7273192,7.4689045,3,-8,21.713938,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.2823038,7.3203583,27.89,56.24,37.57,41.44,3.333333333333333,1,1,0,0,1,2,2,1,721,493747.56,496532.06,0,0,0,0,2125.1147 +3686,4514,8003,8002,-9,-9,1,1,65,0,0,0,1,1,-9,0,1,0,0,0,3,8,10.364005,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.57,41.44,27.89,56.24,3.333333333333333,1,1,0,0,0,2,2,1,721,493747.56,496532.06,0,0,0,0,2125.1147 +3687,4515,8004,8005,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.5032177,8.1567631,0,15,0,-6.972332,0,3,2,2021,4,0,29,40,1,0,0,15.255492,15.255492,0,0,0,0,0,0,0,97,1,1,0,6.8554993,0,57.06,57.76,51.83,57.2,10,1,1,0,0,11,2,5,1,538.5,1837275.8,538077.19,717247.5,0,6734.2588,0,7331.4517 +3687,4515,8005,8004,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.7227182,9.5382061,0,9,9,-76.900475,-9,-9,-9,2021,8,0,55,0,1,0,0,38.670204,38.670204,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,5,1,1,0,0,10,2,5,1,538.5,1837275.8,538077.19,717247.5,0,6734.2588,0,7331.4517 +3687,4516,8006,-9,8004,8005,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-953.77124,0,1,1,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,1,0,0,2,1,1,365,42110.324,0,0,0,0,0,1344.2507 +3688,4517,8007,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.7589397,6.2986584,0,0,-1014.7098,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.249845,6.1711559,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,665,276366.81,64788.172,0,0,5333.2139,0,1134.5277 +3689,4518,8008,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,4,0,5.9739375,6.2212234,0,0,-1057.8102,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8029671,6.0538006,55.34,43.52,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,339,273633.53,119799.87,222566.03,0,0,0,945.63794 +3690,4519,8009,8010,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.0803423,8.628582,22,16,.26586568,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5018039,7.6977386,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,0,7,4,1,798,2258748,825999.13,642613.38,0,0,0,3272.5713 +3690,4519,8010,8009,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.4954724,7.5911527,25,-16,5.4116025,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5331321,7.4535131,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,6,7,4,1,798,2258748,825999.13,642613.38,0,0,0,3272.5713 +3691,4520,8011,8012,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.8659844,6.709188,8,7,78.377083,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6265671,7.0329809,52.08,55.93,51.42,42.58,8.333333333333334,1,1,0,0,0,10,4,1,486,1371286.5,452050.38,332472.25,7150.7339,0,0,2584.6724 +3691,4520,8012,8011,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.894743,7.978591,8,-7,81.876404,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6525922,8.0747328,51.42,42.58,52.08,55.93,6.666666666666667,1,1,0,0,6,10,4,1,486,1371286.5,452050.38,332472.25,7150.7339,0,0,2584.6724 +3692,4521,8013,8014,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,37,-3,0,0,2,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,62.18,36.18,7,1,1,0,0,0,13,1,0,318.5,166127.75,0,178247.28,0,0,0,2244.9585 +3692,4521,8014,8013,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,37,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.18,36.18,48,48,10,1,1,0,0,4,13,1,0,318.5,166127.75,0,178247.28,0,0,0,2244.9585 +3693,4522,8015,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.1567788,7.3336167,0,6,4,-31.462437,0,-9,-9,2021,9,0,22,23,1,1,0,6.824008,6.824008,.05,.05,0,0,0,0,0,0,0,0,0,4.5016403,0,53,55,52,55,8,1,1,0,0,7,8,5,1,316,-123169.92,37170.168,0,0,0,2453.6296,713.33685 +3693,4523,8016,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.1017904,9.0073729,0,6,-4,-29.291567,0,-9,-9,2021,9,0,36,40,1,1,0,30.165344,30.165344,0,0,0,0,0,0,0,0,0,0,0,8.1512794,0,52,55,53,55,8,1,1,0,0,9,8,5,1,311,1453421.9,672524.56,549669.88,0,0,0,4179.9746 +3694,4524,8017,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8482218,6.9578023,0,0,-999.5976,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7227378,6.6163721,63.09,47.92,-9,-9,10,1,1,0,0,8,10,2,1,1472,438532.81,0,220583.72,0,0,0,399.18192 +3695,4525,8018,8019,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.2517385,7.141067,44,2,-80.930016,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.9655962,7.1421142,62.66,52.4,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,1073,975602.63,672643.06,253345,0,0,0,2809.5234 +3695,4525,8019,8018,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.4347558,7.8249979,44,-2,30.340157,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0860438,7.4322672,60.12,54.8,62.66,52.4,10,1,1,0,0,0,4,3,1,1073,975602.63,672643.06,253345,0,0,0,2809.5234 +3696,4526,8020,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,0,0,0,0,0,-941.5658,1,-9,-9,2021,20,8,0,22,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.99,65.61,-9,-9,5,1,1,0,0,6,13,1,1,301,-149061.91,0,0,0,0,0,0 +3697,4527,8021,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,7.6983099,7.6273165,0,0,0,-1113.374,0,2,2,2021,15,3,38,38,1,3,0,6.1061997,6.1061997,0,0,0,0,0,0,0,0,1,1,0,5.1571956,0,35.15,51.51,-9,-9,3.333333333333333,1,1,0,0,5,9,3,1,194,424964.59,208353.47,199206.83,0,0,0,1012.8696 +3698,4528,8022,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,5.8016524,5.3990598,0,0,-1062.7611,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96993458,5.5076294,56.05,48.44,-9,-9,10,1,1,0,0,0,2,2,1,506,153843.64,30470.844,115085.46,0,0,0,1375.3191 +3699,4529,8023,8024,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.0099573,7.132443,34,-13,16.571592,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2373066,57.16,56.15,53.14,51.28,8.333333333333334,1,1,0,0,6,10,3,1,620.5,1058372.8,466538.56,436856.53,0,0,0,2603.8291 +3699,4529,8024,8023,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,7.7518802,7.5650759,34,13,8.2428541,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8168877,7.3443217,53.14,51.28,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,620.5,1058372.8,466538.56,436856.53,0,0,0,2603.8291 +3700,4530,8025,8026,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,56,0,-115.11045,0,3,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,28.580341,0,0,1,1,0,0,0,43.15,32.98,49.65,37.15,5,1,1,0,0,0,5,2,1,638,586599.06,310079.59,432012.5,0,0,0,929.38116 +3700,4530,8026,8025,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.2756195,7.4407287,56,0,-107.19324,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8299556,7.3760138,49.65,37.15,43.15,32.98,8.333333333333334,1,1,0,0,0,5,2,1,638,586599.06,310079.59,432012.5,0,0,0,929.38116 +3701,4531,8027,8028,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.0042505,8.9645386,0,5,-7,-12.468486,0,-9,-9,2021,9,0,40,40,1,1,0,21.818703,21.818703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,43.42,62.33,8,2,3,0,0,1,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8028,8027,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,7.8354678,8.2323084,0,5,7,20.618601,0,3,3,2021,13,2,27,27,1,2,0,11.656239,11.656239,0,0,0,0,0,0,0,27,1,1,0,0,0,43.42,62.33,51,56,5,2,3,0,0,7,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8029,-9,8028,8027,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1027.5746,-9,3,1,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.51,59.08,-9,-9,6.666666666666667,2,3,0,0,1,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8030,-9,8028,8027,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.83,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3701,4531,8031,-9,8028,8027,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.21466,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,841.20001,1903880,1525094.3,394291.47,94318.586,0,0,4715.6445 +3702,4532,8032,8033,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,3,1,0,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,64.91,17,8.333333333333334,1,1,0,0,0,7,1,1,984,496573.94,105031.78,308815.78,0,0,0,1449.6304 +3702,4532,8033,8032,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,3,-1,0,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.91,17,54.37,54.8,5,1,1,0,0,0,7,1,1,984,496573.94,105031.78,308815.78,0,0,0,1449.6304 +3703,4533,8034,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,9.6366901,9.2417936,0,0,0,-998.55084,0,1,1,2021,8,0,55,70,1,0,0,28.713367,28.713367,.05,.05,0,0,0,0,0,0,0,0,0,6.9568443,0,40.2,61.22,-9,-9,6.666666666666667,1,1,0,0,13,8,5,0,320,507710.75,163331.11,480626.63,0,0,2567.9099,5956.7456 +3704,4534,8035,8036,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8465691,6.7420211,9,-4,81.944809,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6296988,6.6773272,41.65,60.41,57.09,46.7,8.333333333333334,1,1,0,0,10,4,3,1,628.5,2144271.8,986368.31,503380.69,0,0,0,2118.2148 +3704,4534,8036,8035,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.7846508,7.4447966,9,4,-56.482533,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6713738,7.6606183,57.09,46.7,41.65,60.41,5,1,1,0,0,2,4,3,1,628.5,2144271.8,986368.31,503380.69,0,0,0,2118.2148 +3705,4535,8037,8039,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.8438549,9.0650187,0,20,2,-31.493292,0,3,3,2021,22,8,60,60,1,8,0,18.945763,18.945763,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.92,56.13,18.93,62.96,3.333333333333333,1,1,0,0,9,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3705,4535,8038,-9,8039,8037,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-804.90778,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,55.06,-9,-9,6.666666666666667,1,1,0,0,0,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3705,4535,8039,8037,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.6260223,9.0440664,0,20,-2,1.4752393,0,2,2,2021,25,11,50,64,1,11,0,17.21401,17.21401,0,0,0,0,0,0,0,0,1,1,0,1.6321654,0,18.93,62.96,30.92,56.13,6.666666666666667,1,1,0,0,7,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3705,4535,8040,-9,8039,8037,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.6781,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,1344.75,1650759.1,57686.344,583014.38,328482.38,3811.7981,0,6011.6416 +3706,4536,8041,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,3,7.955214,8.1650972,0,0,0,-1084.3574,0,3,2,2021,8,0,37,37,1,0,0,9.7499714,9.7499714,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.91,42.65,-9,-9,8.333333333333334,4,5,0,0,9,12,4,0,3725,173767.91,33417.324,0,0,0,0,1655.575 +3706,4537,8042,-9,8041,-9,1,1,21,0,0,0,2,2,1,0,2,7.0181446,7.0101991,0,0,0,-1065.9696,-9,2,-9,2021,18,6,28,0,1,6,1,4.9876823,4.9876823,.05,.05,0,0,0,0,0,2,1,1,0,0,0,29.19,47.98,-9,-9,1.666666666666667,1,1,0,0,4,12,2,0,1480,61660.051,-83492.813,0,0,0,0,914.15912 +3707,4538,8043,8044,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.2969074,9.2652779,0,15,4,-21.727295,0,2,2,2021,7,0,38,39,1,0,0,28.347313,28.347313,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52.34,56.95,57.16,56.15,1.666666666666667,1,1,0,0,11,7,5,1,226.5,597866.13,190503,655450.81,276481.63,0,0,7295.9731 +3707,4538,8044,8043,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.0059958,8.8443985,0,15,-4,75.070694,0,2,2,2021,7,0,41,35,1,0,0,20.565111,20.565111,0,0,0,0,0,0,0,0,0,0,0,7.6070166,0,57.16,56.15,52.34,56.95,8.333333333333334,1,1,0,0,11,7,5,1,226.5,597866.13,190503,655450.81,276481.63,0,0,7295.9731 +3708,4539,8045,8047,-9,-9,1,1,53,1,2,0,3,3,-9,1,2,0,0,0,6,20,0,0,-9,3,2021,15,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,37.14,27.65,48,57,8.333333333333334,1,1,0,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3708,4539,8046,-9,8047,8045,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.7673,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3708,4539,8047,8045,-9,-9,1,0,33,1,2,0,2,2,-9,1,4,0,0,0,6,-20,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,37.14,27.65,7,1,1,0,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3708,4539,8048,-9,8047,8045,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5028,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,1,0,945.5,142283.11,64818.656,0,0,0,0,3202.198 +3709,4540,8049,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.053421,7.1263633,0,0,-1126.1492,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,6.4573188,0,65.803619,0,1,1,0,3.7713451,7.3005056,52,45,-9,-9,8,1,1,0,0,0,11,2,1,4781,687240.31,201613.33,431195.06,0,0,0,1566.9644 +3710,4541,8050,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.1061811,7.4883924,0,0,-895.01044,-9,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1279025,7.3676701,60.05,42.65,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,45,8005.4917,313011.13,0,0,867.99811,0,1317.2833 +3711,4542,8051,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.5677414,7.5323358,0,0,0,-1003.133,0,2,2,2021,7,0,40,40,1,0,0,8.4461737,8.4461737,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,681,-200781.66,0,0,0,0,0,1528.5441 +3712,4543,8052,8053,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.7800798,7.5742016,35,5,-2.9284837,0,3,2,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.999619,7.4195371,60.29,52.11,13.02,57.62,8.333333333333334,1,1,0,0,2,7,3,1,2005,339437.84,11190.249,572678.63,220675.56,0,0,936.45978 +3712,4543,8053,8052,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.9420505,6.8487577,0,35,-5,30.304005,0,3,3,2021,24,11,39,40,1,11,0,2.3624578,2.3624578,0,0,0,0,0,0,0,2,0,0,0,3.516433,0,13.02,57.62,60.29,52.11,3.333333333333333,1,1,0,0,11,7,3,1,2005,339437.84,11190.249,572678.63,220675.56,0,0,936.45978 +3713,4544,8054,8055,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,29,-3,-155.40598,0,2,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,64.55,20.4,57.33,53.46,6.666666666666667,1,1,0,0,9,9,5,1,904,1100236,549668.19,377951.63,0,0,0,3793.0649 +3713,4544,8055,8054,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.2988396,9.2044439,0,29,3,47.20977,0,2,2,2021,12,0,45,35,1,0,0,24.546936,24.546936,.05,.05,0,0,0,0,0,14.5,0,0,0,3.0831609,0,57.33,53.46,64.55,20.4,8.333333333333334,1,1,0,0,13,9,5,1,904,1100236,549668.19,377951.63,0,0,0,3793.0649 +3713,4545,8056,-9,8054,8055,1,0,19,0,0,0,2,2,1,0,2,7.5650721,7.6868324,0,0,0,-994.5249,-9,2,2,2021,19,7,32,0,1,7,1,10.054532,10.054532,0,0,0,0,0,0,0,0,0,0,0,0,0,28.55,50.85,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,742,-128029.02,0,0,0,0,0,1350.0282 +3714,4546,8057,-9,8060,8058,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.21564,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3714,4546,8058,8060,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,9.1746864,8.9215412,0,16,2,-84.882431,0,2,2,2021,9,0,38,42,1,0,0,28.979525,28.979525,0,0,0,0,0,0,0,0,0,0,0,4.1116099,0,47.87,46.68,54.1,59.11,6.666666666666667,1,1,0,0,9,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3714,4546,8059,-9,8060,8058,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.5902,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3714,4546,8060,8058,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.2390814,8.7952089,0,16,-2,79.357109,0,2,2,2021,7,0,38,38,1,0,0,28.924124,28.924124,0,0,0,0,0,0,0,0,0,0,0,6.5042343,0,54.1,59.11,47.87,46.68,8.333333333333334,1,1,0,0,9,12,5,1,749,1768947,664906.38,713207.63,199959.86,22211.836,2158.6702,5295.3262 +3715,4547,8061,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.0947399,7.4067702,0,0,-1009.8227,-9,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.179553,51.84,50.44,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1247,440715.97,265829.63,124368.51,0,0,0,707.73572 +3716,4548,8062,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.6332378,7.6877666,0,0,-1158.9198,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,.80979049,7.7326388,54.21,29.14,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,403,720378.31,167784.2,176450.86,0,-3260.762,0,2177.3706 +3717,4549,8063,8064,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,7.6881895,7.4635601,0,11,0,-143.70418,0,1,3,2021,15,4,40,40,1,4,0,5.5786009,5.5786009,.05,.05,0,0,0,0,0,0,0,0,0,1.8047394,0,36.66,56.02,47.97,56.11,8.333333333333334,1,1,0,0,10,10,3,1,1711,169490.22,-15123.26,0,0,7029.5752,2082.519,1231.6791 +3717,4549,8064,8063,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,7.441123,7.2286382,0,11,9,113.22441,0,2,2,2021,13,1,24,37,1,1,0,7.081913,7.081913,.05,.05,0,0,0,0,0,0,0,0,0,3.4710569,0,47.97,56.11,36.66,56.02,8.333333333333334,1,1,0,0,13,10,3,1,1711,169490.22,-15123.26,0,0,7029.5752,2082.519,1231.6791 +3718,4550,8065,8066,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,6.8205233,6.6183801,49,-4,14.434792,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,24.458708,0,0,1,1,0,2.509928,6.5941334,45,14.78,60.12,54.8,6.666666666666667,1,1,0,0,9,5,5,1,624.5,2298922.8,1173701.3,270080.41,0,0,0,5960.9238 +3718,4550,8066,8065,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.890996,9.2105846,49,4,42.515236,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.1115768,9.1381474,60.12,54.8,45,14.78,10,1,1,0,0,13,5,5,1,624.5,2298922.8,1173701.3,270080.41,0,0,0,5960.9238 +3719,4551,8067,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.5490208,8.3452635,0,0,0,-923.23169,0,-9,-9,2021,9,0,37,37,1,0,0,14.228588,14.228588,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,101,1133117.8,907481.94,245471.73,0,1932.5907,36.193485,2048.3809 +3720,4552,8068,8070,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.6745577,7.7702947,0,8,6,13.426785,0,-9,-9,2021,8,0,24,24,1,0,0,14.053559,14.053559,0,0,0,0,0,0,0,0,1,1,0,0,0,53.37,45.61,40.19,44.13,5,1,1,0,0,9,2,3,0,852,13385.535,-23484.012,96970.836,7851.9575,0,0,1950.3893 +3720,4552,8069,-9,8070,8068,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-970.23529,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,2,3,0,852,13385.535,-23484.012,96970.836,7851.9575,0,0,1950.3893 +3720,4552,8070,8068,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,0,0,0,8,-6,138.92125,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.19,44.13,53.37,45.61,5,1,1,0,1,0,2,3,0,852,13385.535,-23484.012,96970.836,7851.9575,0,0,1950.3893 +3721,4553,8071,-9,-9,-9,1,0,42,0,0,0,1,1,1,0,3,8.6638947,8.364418,0,0,0,-1005.4339,-9,1,1,2021,14,3,30,0,1,3,0,23.254124,23.254124,.05,.05,0,0,0,0,0,0,1,1,0,1.1190002,0,40.64,52.96,-9,-9,8.333333333333334,4,2,0,0,7,7,5,1,87,40653.457,-147213.27,0,0,0,0,2278.0979 +3722,4554,8072,-9,8074,8075,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-976.11951,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8073,-9,8074,8075,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.83514,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8074,8075,-9,-9,1,0,43,0,3,0,3,3,-9,0,4,0,0,0,27,-5,13.4182,0,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,41.88,45.75,7,2,3,0,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8075,8074,8077,-9,1,1,48,0,3,0,1,1,-9,0,3,8.6605816,8.5479259,0,27,5,151.33853,0,3,3,2021,12,0,30,40,1,0,0,17.221491,17.221491,.05,.05,0,0,0,0,0,96,1,1,0,0,0,41.88,45.75,49,55,1.666666666666667,2,3,0,0,11,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4554,8076,-9,8074,8075,1,0,17,0,3,1,3,0,0,0,2,0,0,0,0,0,-1078.9683,-9,3,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.58,52.86,-9,-9,5,2,3,0,0,0,7,3,1,1766,1861066.1,146727.3,2331410.8,1395668.1,0,0,4006.6792 +3722,4555,8077,-9,-9,-9,1,0,80,0,3,0,2,2,-9,0,3,0,0,0,0,0,-928.2027,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,2,1,1465,80459.836,0,0,0,0,0,0 +3722,4556,8078,-9,8074,8075,1,1,22,0,3,0,2,2,1,0,4,7.7517719,7.6996498,0,0,0,-807.42773,-9,3,1,2021,11,0,15,0,1,0,1,17.272125,17.272125,0,0,0,0,0,0,0,2,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,7,7,3,1,362,-49896.926,0,0,0,0,0,97.548721 +3722,4557,8079,-9,8074,8075,1,1,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1030.0261,-9,3,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44,55,-9,-9,5,2,3,0,0,0,7,2,1,96,0,0,0,0,0,0,0 +3723,4558,8080,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5717068,8.4006319,1.5176942,0,0,-1021.9611,0,1,3,2021,8,0,37,37,1,0,0,12.765455,12.765455,.05,.05,0,0,0,0,0,0,1,1,0,4.101212,0,60.7,47.65,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,296,506027.5,211284.44,276246.5,0,0,0,781.02704 +3724,4559,8081,-9,8082,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.87732,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,2,0,741.5,-39546.434,0,0,0,0,1074.7059,1152.8125 +3724,4559,8082,-9,-9,-9,1,0,29,0,1,0,3,3,-9,0,4,6.9548783,6.9812527,0,0,0,-1014.0309,0,-9,-9,2021,6,0,16,0,1,0,0,7.3099432,7.3099432,0,0,0,0,0,0,0,0,1,0,1,1.3734714,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,741.5,-39546.434,0,0,0,0,1074.7059,1152.8125 +3725,4560,8083,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.2730541,8.3500967,0,0,0,-994.31476,0,3,2,2021,6,0,37,32,1,0,0,11.064606,11.064606,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,13,1,4,1,1016,431996,359074.94,182077.64,49483.813,3174.9023,0,1356.9565 +3726,4561,8084,8085,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.7298436,7.5685925,0,23,4,-81.931007,-9,2,2,2021,6,0,36,0,1,0,0,9.0250654,9.0250654,.05,.05,0,0,0,0,0,0,0,0,0,1.4534322,0,54.62,53.53,43.69,43.24,8.333333333333334,1,1,0,0,13,5,3,1,274,218651.27,3331.75,165703.22,33816.688,5066.0869,363.86832,1670.4882 +3726,4561,8085,8084,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.0955968,7.1372881,0,23,-4,-107.54186,0,3,2,2021,18,6,50,50,1,6,0,2.3820257,2.3820257,.05,.05,0,0,0,0,0,0,0,0,0,5.8286295,0,43.69,43.24,54.62,53.53,3.333333333333333,1,1,0,0,12,5,3,1,274,218651.27,3331.75,165703.22,33816.688,5066.0869,363.86832,1670.4882 +3726,4562,8086,-9,8084,8085,1,1,23,0,0,0,2,2,-9,0,4,8.1080227,8.1787596,0,0,0,-949.26349,-9,3,2,2021,11,0,36,0,1,2,1,9.9423885,9.9423885,.05,.05,0,0,0,0,0,0,0,0,0,1.5583035,0,47,59,-9,-9,7,1,1,0,0,1,5,4,1,864,-16757.418,-75819.117,93461.641,30630.16,21259.164,922.34015,1194.9166 +3727,4563,8087,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.530046,7.7493606,0,0,-1013.1321,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7492218,48.91,43.45,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,368,411146.25,372349.81,228340.19,70445.594,0,0,1406.3317 +3728,4564,8088,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4754133,8.561451,0,0,0,-907.04199,0,2,1,2021,15,3,44,45,1,3,0,11.565761,11.565761,0,0,0,0,0,0,0,0,0,0,0,0,0,45.64,33.17,-9,-9,8.333333333333334,3,4,0,0,6,8,5,0,841,24562.896,6419.3682,0,0,0,0,1583.8705 +3729,4565,8089,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.456912,8.3765154,0,0,0,-930.33746,0,2,3,2021,25,11,32,38,1,11,0,13.836823,13.836823,.05,.05,0,0,0,0,0,27,0,0,0,3.2600288,0,30.26,50.99,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,349,233913.16,193117.88,226602.89,40737.063,0,0,1432.2418 +3729,4566,8090,-9,8089,-9,1,0,24,0,0,0,1,1,-9,0,3,0,6.0720348,5.8291225,0,0,-950.36261,1,1,-9,2021,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,2,0,0,0,6.0617309,0,30.61,27.79,-9,-9,6.666666666666667,1,1,0,1,1,2,2,1,451,-21326.885,0,0,0,0,0,277.97357 +3730,4567,8091,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.7674055,7.4984536,0,0,-1033.1333,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4292185,7.8646665,56.71,53.58,-9,-9,10,1,1,0,0,0,2,3,1,171,478377.88,102099.64,296842.22,0,0,0,2366.386 +3731,4568,8092,8093,-9,-9,1,0,48,1,1,0,2,2,-9,0,1,8.7719831,8.5137262,0,32,-7,-47.64357,0,2,-9,2021,12,4,37,37,1,4,0,14.303014,14.303014,0,0,0,0,0,0,0,27,0,0,0,6.9459848,0,42.64,30.89,55.96,49.93,8.333333333333334,1,1,0,0,13,10,5,1,1757,1350515.8,194998.33,659108.13,0,0,0,4298.1348 +3731,4568,8093,8092,-9,-9,1,1,55,1,1,0,2,2,-9,0,3,8.3261423,8.28827,0,32,7,-80.133965,0,3,3,2021,8,0,41,40,1,0,0,9.9758043,9.9758043,.05,.05,0,0,0,0,0,2,0,0,0,6.8906379,0,55.96,49.93,42.64,30.89,8.333333333333334,1,1,0,0,12,10,5,1,1757,1350515.8,194998.33,659108.13,0,0,0,4298.1348 +3731,4569,8094,-9,8092,8093,1,1,23,1,1,0,2,2,-9,0,3,7.8471255,7.6560726,0,0,0,-933.66992,0,2,2,2021,11,0,35,40,1,0,1,7.3771138,7.3771138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,53.95,-9,-9,8.333333333333334,1,1,0,0,13,10,3,1,145,-155274.7,51053.066,0,0,0,0,1726.7089 +3731,4570,8095,-9,-9,-9,1,1,20,1,1,0,2,2,-9,0,4,8.0466423,8.0813131,0,0,0,-985.08417,0,-9,-9,2021,11,0,40,40,1,2,0,9.5003624,9.5003624,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,4,6,0,0,1,10,3,1,1019,11626.229,-37571.426,0,0,0,0,1273.3903 +3732,4571,8096,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1025.4692,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,57,-9,-9,7,1,1,1,0,0,2,1,0,4196,-12849.025,0,0,0,0,0,334.48901 +3732,4571,8097,-9,8096,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.8892,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,4196,-12849.025,0,0,0,0,0,334.48901 +3733,4572,8098,8099,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.0474987,7.249579,5,6,27.525009,0,3,1,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,1,0,1.4182144,0,0,1,1,0,7.7146926,7.0940714,61.04,28.88,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,523,783409.38,858157.75,260973.97,0,0,0,2592.135 +3733,4572,8099,8098,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.6679749,7.6831536,0,5,-6,-6.2157774,0,-9,-9,2021,6,0,30,32,1,0,0,7.4403505,7.4403505,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.04,28.88,8.333333333333334,1,1,0,0,12,5,3,1,523,783409.38,858157.75,260973.97,0,0,0,2592.135 +3734,4573,8100,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.7905169,7.8130746,0,0,0,-1013.7097,0,3,2,2021,6,0,1,-9,1,0,0,266.24689,266.24689,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.99,48.04,-9,-9,5,2,3,0,0,11,8,3,1,533,22225.469,136667.2,0,0,0,0,989.58319 +3735,4574,8101,8102,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.5092354,8.762023,0,7,0,34.943634,0,1,1,2021,12,0,40,35,1,0,0,19.887802,19.887802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.58,40.07,40.89,42.07,5,1,1,0,0,9,9,5,1,393.5,993227.38,577325.88,0,0,0,189.4357,3549.3853 +3735,4574,8102,8101,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.9712191,8.1691589,0,7,0,59.228546,0,-9,-9,2021,24,9,55,40,1,9,0,6.4470367,6.4470367,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.89,42.07,51.58,40.07,1.666666666666667,1,1,0,0,5,9,5,1,393.5,993227.38,577325.88,0,0,0,189.4357,3549.3853 +3736,4575,8103,8104,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,8.4810181,8.4953604,0,7,6,1.0543668,0,-9,-9,2021,24,11,43,43,1,11,0,10.270937,10.270937,.05,.05,0,0,0,0,0,0,1,1,0,3.7108371,0,31.48,51.58,51.83,57.2,3.333333333333333,1,1,0,0,9,5,4,1,1189.5,613196.38,121662.19,357420.31,68696.297,0,0,3691.6714 +3736,4575,8104,8103,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.4253111,8.6763239,0,19,-6,17.77079,0,1,3,2021,7,0,45,55,1,0,0,10.133983,10.133983,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,31.48,51.58,8.333333333333334,1,1,0,1,9,5,4,1,1189.5,613196.38,121662.19,357420.31,68696.297,0,0,3691.6714 +3737,4576,8105,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.8311892,7.130939,0,0,-988.73901,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7782979,6.9557881,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,475,260865.16,75130.461,247679.39,0,0,0,2360.6152 +3738,4577,8106,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,7.6532335,8.1850662,7.098608,0,0,-1071.6794,0,3,3,2021,11,0,14,33,1,0,0,23.001892,23.001892,0,0,0,0,0,0,0,2,1,1,0,0,6.7595611,50.85,47.03,-9,-9,6.666666666666667,1,1,0,0,11,7,4,1,2563,497742.25,-40654.691,355005.75,70405.648,0,0,2519.1418 +3739,4578,8107,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,8.3741121,8.4928665,0,0,-891.39069,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6770966,8.4250498,60.02,56.42,-9,-9,10,1,1,0,0,0,11,4,1,715,1346600.8,689173.88,386837.25,0,0,0,3733.7412 +3740,4579,8108,8109,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.5515962,7.8748202,30,-16,.82893592,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2948108,7.4432697,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,6,7,4,1,550.5,1506587.4,555718.13,756431.19,0,0,0,2851.1831 +3740,4579,8109,8108,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.2977047,7.8960671,27,16,35.393631,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4765915,7.8656893,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,7,4,1,550.5,1506587.4,555718.13,756431.19,0,0,0,2851.1831 +3741,4580,8110,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.7575278,7.7584872,0,0,-1034.4091,0,3,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7276777,8.0245657,48.22,34.78,-9,-9,10,2,3,0,0,0,11,3,1,263,930719.81,422372,347993.06,0,0,0,2342.5496 +3742,4581,8111,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,5.3951492,5.3254709,0,0,0,-1004.3376,0,2,2,2021,4,0,17,16,1,0,0,1.3481756,1.3481756,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,5,12,2,1,2254,31611.248,-72238.453,0,0,0,0,391.84946 +3743,4582,8112,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,9.0302191,8.8688526,0,0,0,-943.09839,0,1,1,2021,6,0,50,53,1,0,0,16.854239,16.854239,.05,.05,0,0,0,0,0,0,0,0,0,3.9476917,0,58.15,52.91,-9,-9,6.666666666666667,1,1,0,0,8,7,5,0,1092,-27985.137,-2578.6365,0,0,0,0,2480.688 +3744,4583,8113,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.2383623,7.1451554,0,0,-850.42493,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1486311,55.56,51.53,-9,-9,10,1,1,0,0,7,1,2,0,331,432308.44,113235.68,134120.83,0,0,0,1858.0428 +3745,4584,8114,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,6.4828777,7.7999492,7.0843191,0,0,-1075.2749,0,2,1,2021,6,0,12,12,1,0,0,6.8337975,6.8337975,0,0,0,0,0,0,0,7,1,1,0,6.1249208,7.1016393,54.1,59.11,-9,-9,10,1,1,0,0,10,5,3,1,324,457055.75,422933.94,157880.34,0,13869.782,2545.7473,1053.5093 +3746,4585,8115,-9,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,0,0,-978.04541,0,3,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,41,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,239,-65159.383,0,0,0,0,0,729.35962 +3747,4586,8116,8117,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.3807721,8.0708361,7.1324377,12,6,96.550697,0,-9,-9,2021,6,0,12,40,1,0,0,21.462854,21.462854,.05,.05,.05,0,0,0,0,0,0,0,0,3.4025147,7.0961051,53.29,49.66,53.81,53.56,8.333333333333334,1,1,0,0,13,6,3,1,500.5,538673.94,200349.38,172967.5,0,0,0,1729.942 +3747,4586,8117,8116,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.9380651,6.5415659,4.951602,31,-6,66.462471,0,2,2,2021,11,0,13,17,1,0,0,5.804914,5.804914,.05,.05,0,0,0,0,0,0,0,0,0,3.6027448,4.9894156,53.81,53.56,53.29,49.66,8.333333333333334,1,1,0,0,11,6,3,1,500.5,538673.94,200349.38,172967.5,0,0,0,1729.942 +3747,4587,8118,-9,8117,8116,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1023.7675,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5104938,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,364,-46567.863,0,0,0,0,0,1158.4241 +3748,4588,8119,8120,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.9622183,7.8289571,0,7,-4,179.92915,0,2,3,2021,32,12,60,53,1,12,0,4.7038031,4.7038031,0,0,0,0,0,0,0,66,0,0,0,0,0,20.71,46.33,52.77,55.33,1.666666666666667,1,1,0,0,6,10,3,0,700.5,67304.258,-35588.484,67860.172,-596.29614,0,0,625.1582 +3748,4588,8120,8119,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,7,4,-27.802488,0,2,2,2021,8,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,55.33,20.71,46.33,8.333333333333334,1,1,0,0,12,10,3,0,700.5,67304.258,-35588.484,67860.172,-596.29614,0,0,625.1582 +3749,4589,8121,8122,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,7.9658623,8.3643227,0,4,3,-24.562243,0,-9,-9,2021,6,0,42,43,1,0,0,12.066811,12.066811,0,0,0,0,0,0,0,0,1,1,0,0,0,52.61,33.99,25.35,49.05,6.666666666666667,1,1,0,0,14,4,3,1,732,200419.5,0,230603.53,82177.539,0,0,2118.6328 +3749,4589,8122,8121,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.198945,7.1926188,0,4,-3,25.784271,0,-9,-9,2021,24,11,14,20,1,11,0,9.9238386,9.9238386,0,0,0,0,0,0,0,2,1,1,0,0,0,25.35,49.05,52.61,33.99,8.333333333333334,1,1,0,0,12,4,3,1,732,200419.5,0,230603.53,82177.539,0,0,2118.6328 +3749,4589,8123,-9,8122,8121,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.0267,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,732,200419.5,0,230603.53,82177.539,0,0,2118.6328 +3750,4590,8124,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.4439569,7.3072495,0,0,-1066.1885,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6682196,7.6135674,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,3,4,3,1,2334,843344.81,261611.55,173961.95,0,0,0,3225.7957 +3751,4591,8125,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.8322458,7.8208895,0,0,-890.91064,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8183584,52.84,40.88,-9,-9,3.333333333333333,1,1,0,0,11,9,3,1,112,814043.94,387522.84,188444.64,0,0,0,462.9483 +3752,4592,8126,8127,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,65,-3,-154.2309,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.94,41.29,38.74,61.79,1.666666666666667,1,1,0,0,0,2,2,1,550,98765.945,127540.08,0,0,0,0,2118.4382 +3752,4592,8127,8126,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,4.9025884,4.9495835,65,3,5.6514711,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,3.4185572,0,27,1,1,0,0,4.7167935,38.74,61.79,53.94,41.29,8.333333333333334,1,1,0,0,0,2,2,1,550,98765.945,127540.08,0,0,0,0,2118.4382 +3753,4593,8128,8129,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.5643926,6.8537831,13,-5,95.048019,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1475139,6.4488602,54.2,57.49,46.41,42.57,8.333333333333334,1,1,0,0,9,10,2,1,441.5,372750.78,38785.508,189129.75,0,0,0,2060.7227 +3753,4593,8129,8128,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,13,5,28.629442,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9384246,0,46.41,42.57,54.2,57.49,5,1,1,0,0,11,10,2,1,441.5,372750.78,38785.508,189129.75,0,0,0,2060.7227 +3754,4594,8130,8131,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.6934566,8.1028433,58,2,27.240408,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1469765,8.3674688,50.55,53.71,57.06,57.76,5,1,1,0,0,0,13,3,1,2413.5,314997.38,173287.41,223497.22,0,0,0,3664.738 +3754,4594,8131,8130,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,0,0,58,-2,-107.4315,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.55,53.71,10,1,1,0,0,5,13,3,1,2413.5,314997.38,173287.41,223497.22,0,0,0,3664.738 +3755,4595,8132,8133,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.9309182,7.9913135,0,16,3,-79.972664,0,-9,-9,2021,10,0,45,50,1,1,0,8.2154627,8.2154627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,54,61.12,51.57,8,1,1,0,0,1,10,4,1,1156,160759.61,92060.414,0,0,181.8125,0,2492.7185 +3755,4595,8133,8132,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.0227871,8.4109678,0,7,-3,-130.74905,0,-9,2,2021,7,0,50,40,1,0,0,6.3784943,6.3784943,.05,.05,0,0,0,0,0,14.5,0,0,0,5.1443295,0,61.12,51.57,51,54,8.333333333333334,1,1,0,0,7,10,4,1,1156,160759.61,92060.414,0,0,181.8125,0,2492.7185 +3755,4596,8134,-9,8132,8133,1,0,23,0,0,0,2,2,-9,0,4,8.3130827,8.3771353,0,0,0,-950.08868,0,2,2,2021,11,0,40,38,1,2,1,14.226224,14.226224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,10,4,1,131,-39168.953,-82813.867,64842.582,96571.023,-89.60495,1588.3564,1648.8978 +3756,4597,8135,8136,-9,-9,1,0,34,0,3,0,2,2,-9,0,4,0,0,0,15,-4,-75.690186,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51,56,7,2,3,0,0,0,8,3,1,765.33331,281975.28,0,485296.5,188557.33,874.94232,0,2451.4497 +3756,4597,8136,8135,8138,8139,1,1,38,0,3,0,2,2,-9,0,4,8.5007648,8.3486328,0,15,4,64.903801,0,3,2,2021,10,0,50,7,1,1,0,13.119802,13.119802,0,0,0,0,0,0,0,0,1,1,0,3.8241367,0,51,56,48,56,7,2,3,0,0,1,8,3,1,765.33331,281975.28,0,485296.5,188557.33,874.94232,0,2451.4497 +3756,4597,8137,-9,8135,8136,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.7443,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,8,3,1,765.33331,281975.28,0,485296.5,188557.33,874.94232,0,2451.4497 +3756,4598,8138,8139,-9,-9,1,0,59,0,3,0,3,3,-9,0,3,0,0,0,44,-2,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49,47,55,53,7,2,3,0,0,0,8,1,1,1077,385753.25,150638.72,201796.94,0,0,0,-4.6057129 +3756,4598,8139,8138,-9,-9,1,1,61,0,3,0,2,2,-9,0,4,0,0,0,44,2,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55,53,49,47,8,2,3,0,0,0,8,1,1,1077,385753.25,150638.72,201796.94,0,0,0,-4.6057129 +3756,4599,8140,8141,-9,-9,1,0,27,0,3,0,2,2,-9,0,4,0,0,0,7,-5,-146.6772,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,2,3,0,0,0,8,3,1,949.33331,-37140.883,20143.322,237323.02,52748.977,78711.594,0,1935.3317 +3756,4599,8141,8140,8138,8139,1,1,32,0,3,0,2,2,-9,0,4,8.2275143,8.2447767,0,7,5,176.61137,0,3,2,2021,10,0,40,37,1,1,0,10.773452,10.773452,.05,.05,0,0,0,0,0,0,1,1,0,1.4928089,0,50,57,47,57,7,2,3,0,0,1,8,3,1,949.33331,-37140.883,20143.322,237323.02,52748.977,78711.594,0,1935.3317 +3756,4599,8142,-9,8140,8141,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.20221,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,8,3,1,949.33331,-37140.883,20143.322,237323.02,52748.977,78711.594,0,1935.3317 +3756,4600,8143,-9,8138,8139,1,1,26,0,3,0,2,2,-9,0,4,8.0973396,8.3383274,0,0,0,-894.25769,0,3,2,2021,10,0,50,40,1,1,1,8.9886608,8.9886608,0,0,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,0,0,4,8,4,1,164,58382.426,0,282621.94,143348.61,0,0,1537.5469 +3756,4601,8144,-9,8138,8139,1,0,28,0,3,0,1,1,-9,0,4,0,0,0,0,0,-1028.4309,1,3,2,2021,11,0,0,37,2,2,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,0,0,8,1,1,508,-95415.133,-101304.13,0,0,0,0,0 +3756,4602,8145,-9,8138,8139,1,1,20,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1006.5446,1,3,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,2,3,0,0,0,8,2,1,1420,46120.676,0,0,0,0,0,0 +3757,4603,8146,-9,8147,8148,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.6089,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,599.66669,231666.31,124914.96,66201.445,41443.641,7055.8931,0,2519.8062 +3757,4603,8147,8148,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.5796785,8.7865543,0,15,-8,-135.24564,0,2,3,2021,12,0,37,42,1,0,0,12.77331,12.77331,.05,.05,0,0,0,0,0,0,1,1,0,3.5090318,0,39,46.96,57.16,56.15,8.333333333333334,1,1,0,0,6,4,4,1,599.66669,231666.31,124914.96,66201.445,41443.641,7055.8931,0,2519.8062 +3757,4603,8148,8147,-9,-9,1,1,53,0,1,0,3,3,-9,0,4,7.4769244,7.6236997,6.7160525,15,8,23.691769,0,3,3,2021,7,0,35,30,1,0,0,6.8524585,6.8524585,.05,.05,0,0,0,0,0,0,1,1,0,3.151886,6.2946067,57.16,56.15,39,46.96,8.333333333333334,1,1,0,0,9,4,4,1,599.66669,231666.31,124914.96,66201.445,41443.641,7055.8931,0,2519.8062 +3758,4604,8149,8150,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.7228084,8.5174818,7.0657663,2,3,-49.086304,0,2,3,2021,9,0,38,39,1,0,0,7.7850862,7.7850862,.05,.05,0,0,0,0,0,7,0,0,0,6.98595,6.9461894,56.18,53.85,54.9,54.53,8.333333333333334,1,1,0,0,8,10,4,1,226.5,-117481.03,-86268.703,0,0,0,0,3240.8511 +3758,4604,8150,8149,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8640351,7.8159056,0,32,-3,80.934769,0,2,3,2021,9,0,23,30,1,0,0,10.4675,10.4675,0,0,0,0,0,0,0,2,0,0,0,0,0,54.9,54.53,56.18,53.85,8.333333333333334,1,1,0,0,10,10,4,1,226.5,-117481.03,-86268.703,0,0,0,0,3240.8511 +3759,4605,8151,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,3.0402279,3.1552787,0,0,-932.39404,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6707516,3.0766037,51.36,52.15,-9,-9,1.666666666666667,1,1,0,0,2,6,2,1,234,89583.281,47204.547,0,0,0,0,2804.9832 +3759,4606,8152,-9,-9,8151,1,0,41,0,0,0,1,1,-9,0,4,8.5158949,8.5364981,0,0,0,-1043.5363,0,-9,2,2021,8,0,43,38,1,0,0,14.442574,14.442574,.05,.05,0,0,0,0,0,0,1,1,0,7.2526736,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,10,6,5,1,1274,430221.13,332266.81,24130.605,0,0,0,1728.9578 +3759,4606,8153,-9,8152,-9,1,1,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1009.185,-9,1,-9,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0203977,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,1274,430221.13,332266.81,24130.605,0,0,0,1728.9578 +3760,4607,8154,8155,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.4873905,8.2610083,0,13,-4,7.2279987,0,3,2,2021,7,0,30,31,1,0,0,15.344875,15.344875,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3760,4607,8155,8154,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.5018044,8.6468172,0,13,4,117.70129,0,3,2,2021,7,0,50,48,1,0,0,13.005396,13.005396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,10,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3760,4607,8156,-9,8154,8155,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4456,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3760,4607,8157,-9,8154,8155,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1077.5647,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,4,1,661.5,389886.16,126824.13,185292.72,15806.723,0,0,4128.5381 +3761,4608,8158,8160,-9,-9,1,1,44,1,1,0,1,1,-9,0,3,7.4785118,8.4169426,7.2327981,7,-3,-72.585709,0,3,3,2021,10,0,25,20,1,0,0,9.3719454,9.3719454,.05,.05,0,0,0,0,0,0,1,1,0,7.9296861,0,49.04,55.86,35.81,53.81,5,1,1,0,0,8,8,4,1,1156.3334,227782.78,670.40887,306711.91,144237.31,0,0,3802.0254 +3761,4608,8159,-9,8160,8158,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.13312,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,1156.3334,227782.78,670.40887,306711.91,144237.31,0,0,3802.0254 +3761,4608,8160,8158,-9,-9,1,0,47,1,1,0,1,1,-9,0,4,7.9589272,7.8490143,0,7,3,107.15967,0,2,2,2021,15,4,15,11,1,4,0,27.781912,27.781912,0,0,0,0,0,0,0,0,1,1,0,0,0,35.81,53.81,49.04,55.86,6.666666666666667,1,1,0,1,6,8,4,1,1156.3334,227782.78,670.40887,306711.91,144237.31,0,0,3802.0254 +3762,4609,8161,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2945471,9.3332996,7.6006241,0,0,-923.92487,0,2,2,2021,7,0,40,40,1,0,0,15.414225,15.414225,.05,.05,0,0,0,0,0,7,1,0,1,6.6667051,7.8895402,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,15,5,5,1,231,374967.91,437568.5,89008.656,-673.04578,3081.791,2608.7693,3934.7051 +3763,4610,8162,8163,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,9.5171947,9.4616394,62,1,-16.262768,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6121435,9.5912342,60.12,54.8,69.51000000000001,25.93,10,1,1,0,0,0,10,5,1,425,2766955.5,1366936.5,0,0,0,0,8062.0547 +3763,4610,8163,8162,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,62,-1,-50.377293,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8489256,0,69.51000000000001,25.93,60.12,54.8,10,1,1,0,0,0,10,5,1,425,2766955.5,1366936.5,0,0,0,0,8062.0547 +3764,4611,8164,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.507597,7.4333081,0,0,-992.75403,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1834197,48.18,34.35,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,374,388614.34,52641.238,250075.59,0,0,0,1358.9058 +3765,4612,8165,-9,8166,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.0167,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,1598.6666,-22177.824,-67578.883,0,0,0,0,2692.106 +3765,4612,8166,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,2,7.1834011,7.0514288,0,0,0,-977.30316,0,-9,-9,2021,17,4,24,24,1,4,0,6.3513122,6.3513122,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.04,36.79,-9,-9,3.333333333333333,1,1,0,0,3,2,2,0,1598.6666,-22177.824,-67578.883,0,0,0,0,2692.106 +3765,4612,8167,-9,8166,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.6452,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1598.6666,-22177.824,-67578.883,0,0,0,0,2692.106 +3766,4613,8168,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1041.9275,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1732764,0,33.33,22.86,-9,-9,3.333333333333333,1,1,0,0,0,7,1,0,300,0,0,0,0,0,0,2214.9673 +3767,4614,8169,8170,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.9399309,8.9708548,0,1,4,-44.291218,0,-9,-9,2021,8,0,40,40,1,0,0,20.327169,20.327169,.05,.05,0,0,0,0,0,0,0,0,0,4.3784852,0,56.17,46.18,51,54,8.333333333333334,1,1,0,0,9,2,4,1,349.5,1262467.5,817910.75,430045.81,10139.887,0,0,4522.1655 +3767,4614,8170,8169,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.2067719,8.12216,0,1,-4,115.994,-9,-9,-9,2021,10,0,38,0,1,1,0,11.572954,11.572954,0,0,0,0,0,0,0,0,0,0,0,3.8750441,0,51,54,56.17,46.18,8,1,1,0,0,1,2,4,1,349.5,1262467.5,817910.75,430045.81,10139.887,0,0,4522.1655 +3768,4615,8171,8172,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.483254,7.0162148,49,0,-10.137986,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6934545,6.9612479,43.6,51.61,45.63,36.08,6.666666666666667,1,1,0,0,9,7,4,1,967,2997838.3,1568510.3,179609.34,0,0,0,3744.8442 +3768,4615,8172,8171,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,8.1300077,8.2301722,49,0,137.53464,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6227314,8.4773054,45.63,36.08,43.6,51.61,6.666666666666667,1,1,0,0,0,7,4,1,967,2997838.3,1568510.3,179609.34,0,0,0,3744.8442 +3769,4616,8173,-9,8174,8175,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1074.8745,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,3,1,1656.6666,-34437.105,3914.4736,0,0,9949.5156,4140.1079,2494.2515 +3769,4616,8174,8175,-9,-9,1,0,57,0,2,0,2,2,-9,0,4,7.1951251,7.2949247,0,33,2,29.511568,0,3,3,2021,10,0,35,25,1,0,0,5.4676423,5.4676423,0,0,0,0,0,0,0,0,1,1,0,0,0,56.9,49.4,58.87,51.29,5,1,1,0,0,11,9,3,1,1656.6666,-34437.105,3914.4736,0,0,9949.5156,4140.1079,2494.2515 +3769,4616,8175,8174,-9,-9,1,1,55,0,2,0,2,2,-9,0,4,8.304512,8.1075144,0,33,-2,116.18105,0,2,3,2021,7,0,43,42,1,0,0,9.8484297,9.8484297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.87,51.29,56.9,49.4,5,1,1,0,0,13,9,3,1,1656.6666,-34437.105,3914.4736,0,0,9949.5156,4140.1079,2494.2515 +3770,4617,8176,8177,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.4305477,8.4686632,0,3,-1,-2.1612854,0,2,2,2021,16,4,35,35,1,4,0,14.893478,14.893478,0,0,0,0,0,0,0,0,0,0,0,1.1000711,0,44.53,56.37,52.97,51.29,8.333333333333334,1,1,0,0,15,2,5,1,212,961827.5,687164.63,174741.42,55787.297,0,0,4180.0908 +3770,4617,8177,8176,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.4923191,8.5237694,6.0403905,3,1,37.297947,-9,-9,-9,2021,9,0,40,0,1,0,0,12.551055,12.551055,.05,.05,0,0,0,0,0,2,0,0,0,0,6.318387,52.97,51.29,44.53,56.37,10,1,1,0,0,1,2,5,1,212,961827.5,687164.63,174741.42,55787.297,0,0,4180.0908 +3771,4618,8178,8179,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,33,-3,25.477789,0,2,2,2021,34,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.9115691,0,22.55,61.09,50.34,48.53,5,1,1,0,0,12,5,3,1,599.5,662322.88,227881.98,293542.56,0,0,0,1818.0083 +3771,4618,8179,8178,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0109835,7.7802787,0,33,3,-45.717766,-9,3,3,2021,11,0,42,0,1,0,0,8.3476191,8.3476191,.05,.05,.05,0,0,0,0,2,0,0,0,6.4753203,0,50.34,48.53,22.55,61.09,6.666666666666667,1,1,0,0,9,5,3,1,599.5,662322.88,227881.98,293542.56,0,0,0,1818.0083 +3772,4619,8180,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.7889128,9.0514069,0,0,0,-947.41479,0,2,2,2021,15,4,45,45,1,4,0,14.450871,14.450871,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.38,49.45,-9,-9,3.333333333333333,1,1,0,0,12,12,5,1,503,817466.81,502780,-44108.242,0,1195.9409,4071.8411,2631.6707 +3772,4620,8181,-9,8180,-9,1,0,23,0,0,0,1,1,-9,0,3,8.0929747,7.8518958,0,0,0,-965.2063,0,1,-9,2021,15,3,35,35,1,3,1,7.6939707,7.6939707,0,0,0,0,0,0,0,0,0,0,0,0,0,38.76,58.16,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,244,48628.453,0,0,0,0,0,844.98907 +3772,4621,8182,-9,8180,-9,1,0,21,0,0,0,1,1,0,0,4,0,0,0,0,0,-935.53979,-9,1,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,685,0,0,0,0,0,0,0 +3773,4622,8183,-9,8186,8185,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-872.54779,1,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.83,56.01,-9,-9,10,1,1,0,0,2,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3773,4622,8184,-9,8186,8185,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1024.1888,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3773,4622,8185,8186,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,8.8572102,8.9551506,0,10,4,-87.474548,0,2,2,2021,16,5,39,39,1,5,0,20.604221,20.604221,.05,.05,.05,0,0,0,0,0,0,0,0,1.5633645,0,44.66,57.83,35.05,62.72,8.333333333333334,1,1,0,0,11,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3773,4622,8186,8185,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.9610558,9.1033764,0,10,-4,-61.068417,0,2,2,2021,14,4,47,50,1,4,0,20.861118,20.861118,0,0,0,0,0,0,0,0,0,0,0,0,0,35.05,62.72,44.66,57.83,8.333333333333334,1,1,0,0,11,2,5,1,391.25,475279.25,93300.734,394495.19,96138.102,13690.537,1610.1636,5633.1621 +3774,4623,8187,8188,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.5063019,8.1096745,0,27,-1,6.3722897,0,2,1,2021,12,2,53,50,1,2,0,13.614741,13.614741,.05,.05,0,0,0,0,0,0,0,0,0,3.3045819,0,40.32,58.5,52.32,57.18,5,1,1,0,0,12,1,5,1,605,380313.84,300044,204144.44,137033.94,7754.8164,14019.971,2999.3127 +3774,4623,8188,8187,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.3521371,7.3042555,0,27,1,-21.880766,0,2,2,2021,9,0,25,28,1,0,0,9.4705038,9.4705038,.05,.05,0,0,0,0,0,2,0,0,0,7.077949,0,52.32,57.18,40.32,58.5,5,1,1,0,0,11,1,5,1,605,380313.84,300044,204144.44,137033.94,7754.8164,14019.971,2999.3127 +3775,4624,8189,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.6441755,9.7202158,0,0,0,-913.46643,0,1,2,2021,7,0,57,0,1,0,0,31.882069,31.882069,.05,.05,0,0,0,0,0,0,0,0,0,4.9526,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,209,901661.06,644232.88,375001.59,114983.17,10339.063,2624.5244,4941.6631 +3776,4625,8190,8191,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,5.7668872,6.073875,10,7,-11.800803,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.3592664,6.5236335,55.76,34.24,57.16,56.15,8.333333333333334,1,1,0,0,4,6,2,1,511.5,445245.31,198978.25,215044.34,0,0,0,2102.0583 +3776,4625,8191,8190,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,50,-7,-6.5483627,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7383902,0,57.16,56.15,55.76,34.24,8.333333333333334,1,1,0,0,8,6,2,1,511.5,445245.31,198978.25,215044.34,0,0,0,2102.0583 +3777,4626,8192,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1003.3511,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,985,349647.81,0,91778.867,0,0,0,63.350681 +3778,4627,8193,8194,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8465195,8.9940958,0,15,-1,24.70718,0,-9,-9,2021,18,6,43,40,1,6,0,19.321129,19.321129,.05,.05,.05,0,0,0,0,0,0,0,0,2.2907538,0,43.44,58.7,32.9,57.87,8.333333333333334,1,1,0,0,8,6,5,1,815,325206.44,177877.34,241633.97,21394.422,4745.8047,0,4228.9082 +3778,4627,8194,8193,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2887573,8.5716209,0,15,1,15.352406,0,2,1,2021,24,12,37,39,1,12,0,19.84409,19.84409,0,0,0,0,0,0,0,0,0,0,0,4.8683882,0,32.9,57.87,43.44,58.7,6.666666666666667,1,1,0,0,6,6,5,1,815,325206.44,177877.34,241633.97,21394.422,4745.8047,0,4228.9082 +3779,4628,8195,8196,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,8.1168547,8.3139629,6.6877828,33,-4,-119.17471,0,3,2,2021,5,0,36,36,1,0,0,10.372218,10.372218,0,0,0,0,0,0,0,0,1,1,0,0,7.0208111,54.79,55.86,57.9,51.84,8.333333333333334,3,4,0,0,15,8,4,1,724,197206.56,-65767.352,0,0,1549.2402,0,1950.4194 +3779,4628,8196,8195,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,6.6186676,6.592803,33,4,80.998795,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9072742,57.9,51.84,54.79,55.86,8.333333333333334,3,4,0,0,14,8,4,1,724,197206.56,-65767.352,0,0,1549.2402,0,1950.4194 +3779,4629,8197,-9,8196,8195,1,1,35,0,0,0,1,1,-9,0,5,8.1492319,8.1987,0,0,0,-987.77356,-9,3,3,2021,5,0,45,0,1,0,1,7.4849167,7.4849167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.63,57.91,-9,-9,8.333333333333334,3,4,0,0,6,8,4,1,540,34858.102,-112467.35,0,0,9220.3984,3079.6772,1700.4736 +3779,4630,8198,-9,8196,8195,1,1,29,0,0,0,2,2,-9,0,3,8.5161943,8.2735872,0,0,0,-988.86322,0,2,2,2021,16,3,36,36,1,3,1,11.612772,11.612772,0,0,0,0,0,0,0,0,1,1,0,0,0,35.43,43.04,-9,-9,5,3,4,0,0,5,8,5,1,484,-63060.203,-52813.008,0,0,0,0,2103.6052 +3780,4631,8199,8201,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,8.7981138,8.7387123,0,11,2,20.716845,0,2,3,2021,14,2,50,45,1,2,0,14.432278,14.432278,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.14,60.45,48.85,58.56,1.666666666666667,1,1,0,0,10,2,5,1,497,165342.59,57245.84,147336.83,96429.32,27297.479,3809.5515,3852.5181 +3780,4631,8200,-9,8201,8199,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.4554,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,1,497,165342.59,57245.84,147336.83,96429.32,27297.479,3809.5515,3852.5181 +3780,4631,8201,8199,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,7.9259501,7.8468776,0,11,-2,-18.645584,0,-9,-9,2021,12,1,23,23,1,1,0,20.997044,20.997044,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.85,58.56,51.14,60.45,8.333333333333334,1,1,0,0,11,2,5,1,497,165342.59,57245.84,147336.83,96429.32,27297.479,3809.5515,3852.5181 +3781,4632,8202,8203,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,9.302577,9.3002729,0,2,2,-48.968548,0,-9,-9,2021,12,0,40,40,1,0,0,23.296225,23.296225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.92,55.55,70.96000000000001,38.91,8.333333333333334,1,1,0,0,3,11,5,1,386,1041894.8,296752.81,585080.13,232748.48,0,0,5037.4263 +3781,4632,8203,8202,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.0800571,8.1847477,0,2,-2,-65.672989,0,3,2,2021,11,0,40,40,1,0,0,14.176377,14.176377,.05,.05,0,0,0,0,0,0,0,0,0,1.6322234,0,70.96000000000001,38.91,52.92,55.55,8.333333333333334,1,1,0,0,7,11,5,1,386,1041894.8,296752.81,585080.13,232748.48,0,0,5037.4263 +3782,4633,8204,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.80286,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9188082,0,53,44,-9,-9,8,1,1,0,0,0,4,1,1,202,38078.848,0,0,0,0,0,1053.0591 +3783,4634,8205,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1024.2117,0,2,3,2021,23,11,0,37,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.51,47.63,-9,-9,0,1,1,1,1,7,2,1,0,593,-98196.188,23626.881,0,0,0,964.65527,111.16446 +3784,4635,8206,-9,8209,8208,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-938.35297,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8207,-9,8209,8208,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.6908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8208,8209,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,8.2079487,8.3006735,0,7,1,-86.807213,0,-9,-9,2021,6,0,46,47,1,0,0,11.483197,11.483197,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.6,46.43,54.69,57.47,8.333333333333334,2,3,0,0,9,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8209,8208,-9,-9,1,0,34,0,3,0,2,2,-9,0,5,0,0,0,14,-1,18.437666,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,60.6,46.43,8.333333333333334,2,3,0,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3784,4635,8210,-9,8209,8208,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.446,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,2,3,1,1443,74311.281,68316.938,0,0,9238.4795,0,2283.4521 +3785,4636,8211,8212,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.4614229,8.5522346,0,3,3,41.705559,-9,-9,-9,2021,11,0,40,0,1,2,0,14.182848,14.182848,0,0,0,0,0,0,0,0,0,0,0,7.4240904,0,48,56,44.74,47.1,7,4,1,0,0,1,8,5,0,673.5,242794.39,189191.03,584181.69,392490,2194.7324,0,9292.0557 +3785,4636,8212,8211,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.7351408,9.5014791,0,3,-3,6.6441522,0,2,2,2021,14,2,40,40,1,2,0,29.198605,29.198605,0,0,.05,0,0,0,0,0,0,0,0,3.8428147,0,44.74,47.1,48,56,5,1,1,0,0,8,8,5,0,673.5,242794.39,189191.03,584181.69,392490,2194.7324,0,9292.0557 +3786,4637,8213,8214,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,9.586525,9.8635416,0,1,2,71.341019,-9,3,3,2021,10,0,90,0,1,1,0,23.021423,23.021423,.05,.05,0,0,0,0,0,0,0,0,0,4.5597944,0,52,47,50,47,7,1,1,0,0,1,5,5,1,808.5,1484190.8,846077.13,467583.47,0,0,0,8241.5029 +3786,4637,8214,8213,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.1979113,7.8135352,7.4374342,1,-2,-23.954084,-9,-9,-9,2021,11,0,35,0,1,2,0,4.9969912,4.9969912,.05,.05,0,0,0,0,0,0,0,0,0,0,7.4825711,50,47,52,47,7,1,1,0,0,9,5,5,1,808.5,1484190.8,846077.13,467583.47,0,0,0,8241.5029 +3787,4638,8215,8216,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,45,-2,-39.447033,0,3,3,2021,22,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.22,30.53,32.94,28.33,6.666666666666667,1,1,0,0,0,11,3,0,1673.5,70620.766,92200.078,0,0,0,-800.86957,1955.6582 +3787,4638,8216,8215,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,7.8980861,8.0942183,6.6447363,45,2,-88.029236,0,2,2,2021,20,6,40,40,1,6,0,8.3414116,8.3414116,.05,.05,0,0,0,0,0,86,1,1,0,0,6.8222284,32.94,28.33,28.22,30.53,1.666666666666667,1,1,0,0,7,11,3,0,1673.5,70620.766,92200.078,0,0,0,-800.86957,1955.6582 +3788,4639,8217,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.9549694,7.1632295,0,0,-942.16687,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1400361,56.94,43.99,-9,-9,10,1,1,0,0,0,10,3,0,415,697324.81,30786.984,307901.69,0,0,0,1874.9827 +3789,4640,8218,8219,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9040399,7.6966171,0,25,-15,16.151762,0,3,3,2021,8,0,26,22,1,0,0,11.742132,11.742132,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,66.61,34.59,8.333333333333334,1,1,0,0,13,7,3,1,1427.5,1026265.6,554346.25,389913.31,0,0,3078.1616,2697.4175 +3789,4640,8219,8218,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.5625501,7.6582232,25,15,85.882126,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2863011,7.6241221,66.61,34.59,62.66,52.4,8.333333333333334,1,1,0,0,10,7,3,1,1427.5,1026265.6,554346.25,389913.31,0,0,3078.1616,2697.4175 +3790,4641,8220,-9,8222,8223,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.6534,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3790,4641,8221,-9,8222,8223,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.4862,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3790,4641,8222,8223,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.7954745,6.897655,0,14,-4,119.54768,0,-9,-9,2021,10,1,12,12,1,1,0,8.8102598,8.8102598,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,13,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3790,4641,8223,8222,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,0,0,0,14,4,-19.734291,1,2,1,2021,8,0,0,72,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7825093,0,55.36,51.57,51.24,58.84,6.666666666666667,1,1,0,1,13,9,2,1,502.25,1407919.5,383350.25,1101815.5,172028.7,0,0,1963.786 +3791,4642,8224,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.6148987,8.1178312,0,0,-959.28351,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,3.3115134,0,0,1,1,0,0,7.8374844,41.56,43.6,-9,-9,10,1,1,0,0,0,12,3,1,417,335784.06,252311.75,116728.57,0,0,0,1526.522 +3792,4643,8225,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.0659728,7.1720605,0,0,-1047.9471,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2266612,67.04000000000001,42.15,-9,-9,0,1,1,0,0,0,11,3,1,819,454254.38,279171.25,138396.45,0,0,0,1431.8693 +3793,4644,8226,8228,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.2483425,7.0157356,0,1,-5,-66.680298,-9,-9,-9,2021,1,0,35,0,1,0,0,5.5625734,5.5625734,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.21,43.38,47.91,57.48,10,1,1,0,0,2,2,4,1,661,256598.14,129705.61,140759.16,84912.953,5287.2061,0,2413.8081 +3793,4644,8227,-9,8226,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.3597,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,661,256598.14,129705.61,140759.16,84912.953,5287.2061,0,2413.8081 +3793,4644,8228,8226,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.3710079,8.1304235,0,1,5,-41.449368,-9,2,2,2021,5,0,35,0,1,0,0,14.602206,14.602206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.91,57.48,38.21,43.38,8.333333333333334,1,1,0,0,9,2,4,1,661,256598.14,129705.61,140759.16,84912.953,5287.2061,0,2413.8081 +3794,4645,8229,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,4.6130071,4.7115912,0,0,-941.21289,0,3,2,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1205912,4.2682996,41.51,39.09,-9,-9,5,1,1,0,0,0,4,2,0,1160,330225.97,48370.855,231114.27,0,0,0,1242.8588 +3795,4646,8230,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,5.7389116,6.2418313,0,0,-935.84113,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2519951,5.9990711,50.54,40.23,-9,-9,6.666666666666667,2,3,0,1,8,8,2,0,1862,481875.41,79338.93,0,0,0,0,2461.3774 +3796,4647,8231,8232,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,0,4.322207,4.4836841,40,-3,32.709553,0,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3387837,0,30.68,54.91,46.16,58.62,8.333333333333334,1,1,0,0,0,13,3,1,523.5,1549422.5,1104716.3,189667.97,0,0,0,2103.3752 +3796,4647,8232,8231,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.934113,8.0840569,40,3,10.899866,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.3651628,8.0231705,46.16,58.62,30.68,54.91,3.333333333333333,1,1,0,0,6,13,3,1,523.5,1549422.5,1104716.3,189667.97,0,0,0,2103.3752 +3797,4648,8233,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.5392799,8.5330954,0,0,0,-882.02521,-9,1,2,2021,6,0,60,0,1,0,0,13.54882,13.54882,.05,.05,0,0,0,0,0,2,1,1,0,8.7726068,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,13,4,5,0,205,-136527.8,-21492.682,0,0,0,0,7057.3818 +3798,4649,8234,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,1,0,6.7931786,6.8719878,0,0,-901.62793,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,3.1010187,1.7012421,28.35569,0,1,1,0,0,6.4851995,29.78,17.81,-9,-9,5,1,1,0,0,0,9,2,1,380,331662.59,11950.387,262217.22,0,0,0,1726.2018 +3799,4650,8235,-9,8236,8237,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-925.5882,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,4,4,1,980.33331,168375.89,182091.81,151789.63,91321.055,0,288.9744,2743.1377 +3799,4650,8236,8237,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,8.0432901,7.9618897,0,9,5,-51.461658,-9,-9,-9,2021,12,0,40,0,1,0,0,8.8821306,8.8821306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,7,4,4,1,980.33331,168375.89,182091.81,151789.63,91321.055,0,288.9744,2743.1377 +3799,4650,8237,8236,-9,-9,1,1,32,0,1,0,1,1,-9,0,4,7.8564706,7.9943428,0,9,-5,-78.011345,0,2,1,2021,8,0,37,37,1,0,0,9.9805241,9.9805241,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.14,60.45,8.333333333333334,2,3,0,0,10,4,4,1,980.33331,168375.89,182091.81,151789.63,91321.055,0,288.9744,2743.1377 +3800,4651,8238,-9,8241,8239,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.09521,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3800,4651,8239,8241,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.1093102,8.7208242,0,6,-1,-28.655237,-9,2,2,2021,8,0,48,0,1,0,0,22.452854,22.452854,.05,.05,0,0,0,0,0,0,1,1,0,9.0180168,0,52.82,53.97,54.2,57.49,8.333333333333334,1,1,0,0,13,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3800,4651,8240,-9,8241,8239,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.56549,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3800,4651,8241,8239,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,6.4230957,6.2030082,0,6,1,-15.722826,-9,2,2,2021,9,0,8,0,1,0,0,8.8571358,8.8571358,0,0,0,0,0,0,0,0,1,1,0,7.9666772,0,54.2,57.49,52.82,53.97,10,1,1,0,0,12,10,4,1,1580.75,390530.88,204077.95,271892.75,165929.27,0,0,7812.6826 +3801,4652,8242,8243,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.8419781,6.9047885,0,31,-3,21.543095,0,3,2,2021,6,0,17,17,1,0,0,7.7586851,7.7586851,.05,.05,.05,0,0,0,0,0,0,0,0,6.6285992,0,57.16,56.15,57.33,53.46,10,1,1,0,0,11,9,3,1,1032,837244.25,394126.66,484033.44,0,0,0,1769.3708 +3801,4652,8243,8242,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.5134659,7.3550262,0,9,3,59.278954,-9,-9,-9,2021,6,0,38,0,1,0,0,4.8610229,4.8610229,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,11,9,3,1,1032,837244.25,394126.66,484033.44,0,0,0,1769.3708 +3801,4653,8244,-9,8242,8243,1,1,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1141.2158,-9,2,2,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0808582,0,23.59,62.18,-9,-9,6.666666666666667,1,1,0,0,2,9,1,1,5297,-52466.285,0,0,0,0,0,93.054565 +3802,4654,8245,8247,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,6.8438148,6.7108593,0,8,-1,-53.627632,0,2,1,2021,6,0,40,40,1,0,0,2.5188417,2.5188417,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,31.04,62.55,8.333333333333334,1,1,0,0,7,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3802,4654,8246,-9,8245,8247,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.0936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3777868,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3802,4654,8247,8245,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,9.9550419,9.7836781,0,14,1,88.159966,-9,1,1,2021,20,8,57,0,1,8,0,35.187038,35.187038,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.04,62.55,46.44,59.62,6.666666666666667,1,1,0,0,9,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3802,4654,8248,-9,8245,8247,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2881,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,623.5,477944.88,82717.438,687525.06,331949.03,0,0,11789.438 +3803,4655,8249,8250,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3212337,8.3112001,0,7,0,-48.287151,0,-9,-9,2021,10,1,53,48,1,1,0,8.4973135,8.4973135,0,0,0,0,0,0,0,0,1,1,0,0,0,48.8,49.1,57.92,40.62,8.333333333333334,1,1,0,0,8,5,4,1,409.66666,20220.752,-36709.809,83882.789,26163.885,0,0,3076.1689 +3803,4655,8250,8249,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,7.7952952,8.1527653,0,7,0,56.527378,0,2,2,2021,9,1,44,44,1,1,0,9.523448,9.523448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.92,40.62,48.8,49.1,6.666666666666667,1,1,0,0,8,5,4,1,409.66666,20220.752,-36709.809,83882.789,26163.885,0,0,3076.1689 +3803,4655,8251,-9,8249,8250,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.1096,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,409.66666,20220.752,-36709.809,83882.789,26163.885,0,0,3076.1689 +3804,4656,8252,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4121189,8.606123,0,0,0,-919.98816,0,3,2,2021,8,0,42,43,1,0,0,13.10423,13.10423,.05,.05,0,0,0,0,0,0,1,1,0,2.3639436,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,2321,634067.19,182184.42,155225.39,56014.055,0,0,1750.6776 +3805,4657,8253,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,7.1510105,7.5025163,0,0,-1036.423,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1733556,7.3329659,58.74,30.17,-9,-9,6.666666666666667,1,1,0,0,0,8,3,1,1650,263928.41,393731.78,0,0,0,0,2014.5494 +3806,4658,8254,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,6.9144568,7.0474763,0,0,-908.5423,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0497756,6.7482944,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,918,710811.69,167954.3,361804.69,0,0,0,907.60645 +3807,4659,8255,8256,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,0,0,20,6,28.434345,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,33.83,57.24,32.93,8.333333333333334,1,1,1,0,0,4,5,1,2539,1536580.6,1332123.9,276463.09,0,0,0,3409.7288 +3807,4659,8256,8255,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.7747259,8.7887497,7.1365819,18,-6,-40.746815,0,2,1,2021,9,0,70,90,1,0,0,8.5583534,8.5583534,0,0,0,0,0,0,0,0,1,1,0,0,7.3218951,57.24,32.93,56.74,33.83,6.666666666666667,1,1,0,0,10,4,5,1,2539,1536580.6,1332123.9,276463.09,0,0,0,3409.7288 +3807,4660,8257,-9,8255,8256,1,1,28,0,0,0,2,2,-9,0,4,6.6381693,6.6089773,0,0,0,-934.46118,0,1,1,2021,10,0,60,60,1,0,1,1.28418,1.28418,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,4,4,2,1,1473,-157265.7,0,0,0,0,0,-338.08231 +3808,4661,8258,-9,8259,-9,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1095.2686,-9,2,-9,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.4,55.31,-9,-9,10,1,1,0,0,1,7,5,1,935.5,561945.63,-48797.938,578078.25,155283.08,0,1182.8331,2457.5425 +3808,4661,8259,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.8075848,8.9597197,6.5421567,0,0,-1018.4452,0,-9,-9,2021,16,4,42,42,1,4,0,21.903894,21.903894,.05,.05,0,0,0,0,0,0,0,0,0,6.7344065,0,31.86,55.72,-9,-9,5,1,1,0,0,8,7,5,1,935.5,561945.63,-48797.938,578078.25,155283.08,0,1182.8331,2457.5425 +3808,4662,8260,-9,8259,-9,1,1,20,0,0,0,2,2,-9,0,4,7.6375861,7.9326143,0,0,0,-942.2309,0,2,-9,2021,10,0,40,40,1,2,1,5.6925154,5.6925154,0,0,0,0,0,0,0,0,0,0,0,1.8594234,0,49,58,-9,-9,7,1,1,0,0,1,7,3,1,1001,-34515.371,0,0,0,0,0,1292.389 +3808,4663,8261,-9,8259,-9,1,0,19,0,0,0,2,2,-9,0,4,6.8476529,7.0202703,0,0,0,-1042.3914,0,2,-9,2021,6,0,30,30,1,0,1,4.8155394,4.8155394,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,2,7,2,1,210,52895.496,0,0,0,0,0,1085.8896 +3809,4664,8262,8263,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.0611639,7.522233,5.8892059,6,-15,-23.460545,0,-9,-9,2021,11,1,24,24,1,1,0,7.4392314,7.4392314,.05,.05,.05,0,0,0,0,0,1,1,0,0,5.9256568,52.4,52.91,62,41.73,8.333333333333334,1,1,0,0,1,12,3,1,1183,503745.69,276075.78,94691.273,0,0,0,2275.8582 +3809,4664,8263,8262,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.4552159,7.3685017,6,15,67.159828,0,2,3,2021,2,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.7328551,7.3135514,62,41.73,52.4,52.91,10,1,1,0,0,5,12,3,1,1183,503745.69,276075.78,94691.273,0,0,0,2275.8582 +3810,4665,8264,8266,-9,-9,1,1,27,0,2,0,2,2,-9,0,5,7.7663279,7.6870146,0,5,-2,69.24231,0,-9,-9,2021,7,0,45,44,1,0,0,6.0747609,6.0747609,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52.34,56.95,8.333333333333334,1,1,0,0,8,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3810,4665,8265,-9,8266,8264,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.0945,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3810,4665,8266,8264,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,7.4548702,7.2894297,0,5,2,-17.211243,0,-9,-9,2021,8,0,32,28,1,0,0,4.5433598,4.5433598,0,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,57.06,57.76,8.333333333333334,4,1,0,0,4,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3810,4665,8267,-9,8266,8264,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.8993,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,1161.5,-4003.0313,0,0,0,-208.53326,0,2713.0774 +3811,4666,8268,8269,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.9891171,7.8980188,0,33,-10,-43.524799,0,2,3,2021,12,0,50,45,1,0,0,6.725369,6.725369,.05,.05,.05,0,0,0,0,0,1,1,0,3.8732028,0,49.67,45.88,27.81,65.69,6.666666666666667,1,1,0,0,11,10,4,1,617,526643.69,74518.25,488952.5,0,0,0,2371.7485 +3811,4666,8269,8268,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,7.5129719,7.2287645,0,33,10,37.549698,0,3,2,2021,21,7,23,21,1,7,0,6.7614098,6.7614098,.05,.05,0,0,0,0,0,0,1,1,0,6.0362535,0,27.81,65.69,49.67,45.88,8.333333333333334,1,1,0,0,11,10,4,1,617,526643.69,74518.25,488952.5,0,0,0,2371.7485 +3811,4667,8270,-9,8269,8268,1,1,28,0,0,0,2,2,-9,0,4,8.2521133,8.0328341,0,0,0,-951.24945,0,2,3,2021,13,2,41,40,1,2,1,9.8114119,9.8114119,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,228,142593.64,-5871.5889,0,0,0,0,1253.5568 +3812,4668,8271,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,7.4799085,7.3420587,0,0,-916.33862,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6673937,53.42,20.52,-9,-9,3.333333333333333,1,1,0,0,11,8,3,0,266,61690.723,369393.13,3610.5522,0,0,0,2256.2898 +3813,4669,8272,8273,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.2590647,8.4986238,51,0,59.965389,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7860365,8.3808775,50.93,39.92,57.33,53.46,8.333333333333334,1,1,0,0,0,8,4,1,539,2163992.5,878193.5,651333.63,0,0,0,5439.9443 +3813,4669,8273,8272,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.6474972,6.4369001,51,0,3.2003639,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5054522,6.8966308,57.33,53.46,50.93,39.92,8.333333333333334,1,1,0,0,0,8,4,1,539,2163992.5,878193.5,651333.63,0,0,0,5439.9443 +3814,4670,8274,8275,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.5938129,9.3740292,0,9,3,-138.55968,0,-9,-9,2021,9,1,53,52,1,1,0,25.418032,25.418032,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,12,9,5,1,688.5,502225.63,131469.42,532116.13,349834,248.32892,0,6098.1934 +3814,4670,8275,8274,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.8728514,8.7206421,0,9,-3,1.2071075,0,1,2,2021,13,2,58,60,1,2,0,13.219092,13.219092,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,8,9,5,1,688.5,502225.63,131469.42,532116.13,349834,248.32892,0,6098.1934 +3815,4671,8276,8277,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.3154116,7.6684365,52,-3,-14.511774,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2481108,7.4252243,54.53,41.24,61.1,16.91,8.333333333333334,1,1,0,0,6,6,2,1,928,240238.56,52358.262,166381.09,0,0,0,2615.5894 +3815,4671,8277,8276,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,0,0,52,3,-48.011921,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0842872,0,61.1,16.91,54.53,41.24,8.333333333333334,1,1,0,0,4,6,2,1,928,240238.56,52358.262,166381.09,0,0,0,2615.5894 +3816,4672,8278,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,1,9.0158939,8.6724997,0,0,0,-994.49475,0,3,3,2021,20,7,48,47,1,7,0,20.433109,20.433109,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,30.47,45.77,-9,-9,1.666666666666667,1,1,0,0,11,2,5,0,264,15203.054,67736.695,0,0,0,0,2177.6873 +3817,4673,8279,8280,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.4142628,8.7760887,0,15,0,40.737453,0,1,1,2021,10,0,37,37,1,0,0,16.102503,16.102503,.05,.05,0,0,0,0,0,2,1,1,0,.23290917,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,15,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3817,4673,8280,8279,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,6.0278025,6.0529447,0,15,0,-61.729954,0,2,2,2021,6,0,5,6,1,0,0,9.2670288,9.2670288,0,0,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,11,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3817,4673,8281,-9,8280,8279,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8176,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3817,4673,8282,-9,8280,8279,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.8661,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,1,1330.75,128033.55,100354.79,74301.508,160389.16,0,0,1747.2448 +3818,4674,8283,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,8.2932959,8.4997807,0,0,0,-1101.1958,0,2,2,2021,17,3,38,48,1,3,0,14.214706,14.214706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.63,24.87,-9,-9,3.333333333333333,1,1,0,0,10,5,4,1,1104,131283.5,36504.297,0,0,0,0,1517.9349 +3819,4675,8284,8285,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1254749,7.7353868,0,8,-4,-8.7245998,0,-9,-9,2021,9,0,36,30,1,0,0,6.5442543,6.5442543,.05,.05,0,0,0,0,0,7,0,0,0,.58667612,0,51.7,49.11,60.29,52.11,8.333333333333334,1,1,0,0,10,6,5,1,150.5,428780.91,236078.59,126687.57,0,0,0,4329.7383 +3819,4675,8285,8284,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,8.8949661,8.7789707,0,32,4,111.79588,0,3,3,2021,7,0,50,47,1,0,0,14.960196,14.960196,.05,.05,0,0,0,0,0,0,0,0,0,7.5883861,0,60.29,52.11,51.7,49.11,8.333333333333334,1,1,0,0,10,6,5,1,150.5,428780.91,236078.59,126687.57,0,0,0,4329.7383 +3819,4676,8286,-9,8284,8285,1,0,22,0,0,0,1,1,1,0,4,6.7514024,6.5206666,0,0,0,-1033.8359,-9,2,2,2021,7,0,24,0,1,0,1,3.3163407,3.3163407,0,0,0,0,0,0,0,0,0,0,0,3.6902411,0,45.99,57.05,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,637,0,0,0,0,0,0,87.926949 +3819,4677,8287,-9,8284,8285,1,1,19,0,0,0,2,2,-9,0,4,6.4477105,6.2563262,0,0,0,-1131.8616,0,2,3,2021,13,2,55,52,1,2,1,1.4838766,1.4838766,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,785,15253.136,0,0,0,0,0,624.18854 +3820,4678,8288,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.2810564,8.1954575,0,0,0,-1041.3027,0,-9,-9,2021,15,3,40,40,1,3,0,9.523303,9.523303,0,0,0,0,0,0,0,0,1,1,0,0,0,44.34,49.64,-9,-9,3.333333333333333,3,4,0,0,10,6,4,1,735,78985.5,0,0,0,0,0,1557.0227 +3821,4679,8289,8290,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,7,-1,-39.66938,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,44.39,44.85,54.81,39.94,8.333333333333334,1,1,0,0,3,6,4,1,1127.5,911633,678531.63,228151.81,0,0,0,1745.2318 +3821,4679,8290,8289,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,8.4916477,8.4343939,0,6,1,-78.713135,0,-9,-9,2021,6,0,55,50,1,0,0,9.8357935,9.8357935,.05,.05,0,0,0,0,0,0,0,0,0,3.9723191,0,54.81,39.94,44.39,44.85,6.666666666666667,1,1,0,0,12,6,4,1,1127.5,911633,678531.63,228151.81,0,0,0,1745.2318 +3822,4680,8291,-9,-9,-9,1,1,24,0,1,0,1,1,-9,0,3,7.9674587,7.6977525,0,0,0,-887.12964,0,2,2,2021,8,0,40,41,1,0,1,8.9339972,8.9339972,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,3,13,4,1,562,105639.19,0,0,0,0,0,796.26178 +3823,4681,8292,8293,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,7.8835406,8.4630022,0,4,-6,12.127721,0,-9,-9,2021,11,1,42,40,1,1,0,8.2521467,8.2521467,0,0,.05,0,0,0,0,0,0,0,0,0,0,49.97,53.99,34.42,35.31,8.333333333333334,1,1,0,0,9,9,4,1,1825,360567.38,272652.19,323889.06,148321.95,0,2668.4346,2798.9773 +3823,4681,8293,8292,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9496326,8.1975756,0,4,6,-85.690659,0,-9,-9,2021,18,5,36,36,1,5,0,9.4316854,9.4316854,0,0,.05,0,0,0,0,0,0,0,0,0,0,34.42,35.31,49.97,53.99,3.333333333333333,1,1,0,0,6,9,4,1,1825,360567.38,272652.19,323889.06,148321.95,0,2668.4346,2798.9773 +3824,4682,8294,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.2990422,6.9431353,0,0,0,-1147.0529,0,3,3,2021,13,1,35,35,1,1,0,3.7520535,3.7520535,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44,53,-9,-9,5,1,1,0,1,10,11,2,0,645,139292.88,39450.809,107518.69,82344.695,0,0,1071.4177 +3825,4683,8295,8296,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.7113729,7.8025131,0,6,-4,20.147831,0,-9,-9,2021,13,1,43,40,1,1,0,6.3644872,6.3644872,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.95,59.37,44.18,41.63,6.666666666666667,1,1,0,0,6,4,4,1,213.5,-119412.33,12057.637,108301.53,44378.188,-573.82458,0,2863.3545 +3825,4683,8296,8295,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3051834,8.5002222,0,6,4,-87.509033,0,3,2,2021,22,10,43,47,1,10,0,10.854,10.854,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.18,41.63,46.95,59.37,5,1,1,0,0,9,4,4,1,213.5,-119412.33,12057.637,108301.53,44378.188,-573.82458,0,2863.3545 +3825,4684,8297,-9,8295,8296,1,1,21,0,0,0,2,2,-9,0,5,7.5703125,7.5330515,0,0,0,-1018.6602,0,2,2,2021,10,0,44,45,1,0,1,6.1195564,6.1195564,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.41,58,-9,-9,3.333333333333333,1,1,0,0,4,4,3,1,731,-10080.529,50748.031,0,0,0,0,1545.2045 +3826,4685,8298,8299,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,6.332294,6.8118548,0,45,-6,-58.906132,0,-9,-9,2021,8,0,11,12,1,0,0,7.9198718,7.9198718,0,0,0,0,0,0,0,2,1,1,0,0,0,66.69,14.07,57.75,17.5,8.333333333333334,1,1,0,0,8,4,2,1,295,8478.2969,-121201.77,0,0,0,941.88428,1822.2996 +3826,4685,8299,8298,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.3806167,6.3947897,5,6,55.213558,0,-9,-9,2021,9,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,6.3162394,57.75,17.5,66.69,14.07,10,1,1,0,0,0,4,2,1,295,8478.2969,-121201.77,0,0,0,941.88428,1822.2996 +3827,4686,8300,8301,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.9409709,8.1016016,0,25,0,-7.3930345,0,2,2,2021,11,1,21,19,1,1,0,14.597688,14.597688,.05,.05,0,0,0,0,0,7,0,0,0,4.4185014,0,51.49,57.57,45.16,43.46,8.333333333333334,1,1,0,0,8,1,5,1,1129,2381339.3,1825910.8,341516.09,0,20443.289,0,7253.1406 +3827,4686,8301,8300,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,9.7099705,9.5514698,0,25,0,108.34274,0,2,3,2021,11,2,38,48,1,2,0,48.784843,48.784843,.05,.05,0,0,0,0,0,0,0,0,0,6.6778932,0,45.16,43.46,51.49,57.57,8.333333333333334,1,1,0,0,8,1,5,1,1129,2381339.3,1825910.8,341516.09,0,20443.289,0,7253.1406 +3828,4687,8302,8303,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.4749599,6.4564281,43,2,-112.76044,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.3989539,51,49,37.84,26.27,7,1,1,0,0,4,13,2,1,641,385434.69,40714.438,157571.41,0,0,0,1272.6243 +3828,4687,8303,8302,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,43,-2,90.018227,0,3,3,2021,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,26.27,51,49,6.666666666666667,1,1,0,0,11,13,2,1,641,385434.69,40714.438,157571.41,0,0,0,1272.6243 +3829,4688,8304,8305,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.3050861,6.0990658,0,26,-1,38.347767,0,2,2,2021,7,0,15,14,1,0,0,2.7281878,2.7281878,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,50.65,60.47,8.333333333333334,1,1,0,0,13,4,3,1,470,661513.94,335386.38,265621.81,0,0,0,1797.9263 +3829,4688,8305,8304,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.8762102,8.0718155,0,28,1,-43.298603,0,2,2,2021,6,0,38,38,1,0,0,8.137826,8.137826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,52,54.51,10,1,1,0,0,15,4,3,1,470,661513.94,335386.38,265621.81,0,0,0,1797.9263 +3830,4689,8306,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1005.4136,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.61,47.24,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,76,30431.613,0,95677.734,0,0,0,442.19427 +3830,4690,8307,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,8.0318098,8.3120813,0,0,-806.53827,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.95001489,8.1975584,62,52.77,-9,-9,10,1,1,0,0,9,13,4,1,664,174804.31,153388.33,108651.56,0,0,267.46887,2056.4631 +3831,4691,8308,-9,8310,8311,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0995,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4691,8309,-9,8310,8311,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-900.61145,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4691,8310,8311,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.7337928,8.4934187,0,22,-4,146.06447,0,-9,-9,2021,12,0,28,25,1,0,0,13.907884,13.907884,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,55.93,49.95,8.333333333333334,2,3,0,0,15,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4691,8311,8310,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.9164944,10.104548,0,11,4,109.47446,0,-9,-9,2021,11,0,36,25,1,0,0,71.119759,71.119759,.05,.05,0,0,0,0,0,0,1,1,0,7.1355176,0,55.93,49.95,46.08,57.2,8.333333333333334,2,3,0,0,15,1,5,1,1065.75,723318.13,53381.074,478901.5,0,0,2569.3325,13236.058 +3831,4692,8312,-9,8310,8311,1,1,18,0,2,1,1,0,0,0,4,0,4.5020981,4.6603804,0,0,-1082.7705,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6212072,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,1,2,1,710,-37600.871,0,0,0,0,0,693.08368 +3832,4693,8313,8314,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.6646991,7.6902289,0,1,9,-5.2509875,-9,-9,-9,2021,6,1,30,0,1,1,0,6.727695,6.727695,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,39.54,38.7,28.65,44.86,6.666666666666667,3,4,0,0,6,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4693,8314,8313,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.9080267,8.951766,0,1,0,81.126106,-9,2,2,2021,7,1,38,0,1,1,0,18.460854,18.460854,0,0,.05,0,0,0,0,0,0,0,0,1.1486472,0,28.65,44.86,39.54,38.7,0,3,4,0,0,9,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4693,8315,-9,8314,8313,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.11139,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4693,8316,-9,8314,8313,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1012.3762,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,4,1,1271.5,735428.31,410085.75,458725.75,225089.48,0,0,4416.5586 +3832,4694,8317,-9,8314,8313,1,1,21,0,2,0,2,2,-9,0,5,1.4457488,1.9437202,0,0,0,-936.3504,-9,1,2,2021,9,0,40,0,1,0,1,.015768189,.015768189,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,3,4,0,0,2,8,2,1,706,73410.352,-81400.117,0,0,0,0,261.62192 +3832,4695,8318,-9,8314,8313,1,0,19,0,2,1,2,0,-9,0,3,0,0,0,0,0,-926.99103,-9,1,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,38.08,-9,-9,1.666666666666667,3,4,0,0,0,8,1,1,385,-89783.383,0,0,0,0,1278.3607,0 +3833,4696,8319,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.4267159,6.7594848,0,0,-983.59167,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8662767,6.4587121,55.1,47.5,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,327,288936.41,262603.44,0,0,0,0,2086.0027 +3834,4697,8320,8321,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.3024445,8.0318117,0,3,1,33.4324,0,2,2,2021,6,0,40,46,1,0,0,8.8091145,8.8091145,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.56,36.87,36.43,60.14,6.666666666666667,1,1,0,0,11,5,4,1,286,-56727.648,119281.17,0,0,746.62585,0,2863.0859 +3834,4697,8321,8320,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.0234861,8.2230587,0,3,-1,-12.040185,0,-9,-9,2021,18,6,38,38,1,6,0,10.0337,10.0337,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.43,60.14,63.56,36.87,8.333333333333334,1,1,0,0,5,5,4,1,286,-56727.648,119281.17,0,0,746.62585,0,2863.0859 +3835,4698,8322,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,7.5874972,7.272512,0,0,-1094.4186,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4371839,0,17.35,63.63,-9,-9,5,1,1,0,0,0,6,3,0,329,59120.02,0,0,0,0,0,772.09491 +3836,4699,8323,8325,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.6013117,8.6289663,0,8,8,-13.368389,-9,-9,-9,2021,10,0,70,0,1,0,0,8.9412212,8.9412212,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,44.19,58.01,8.333333333333334,1,1,0,0,9,11,5,0,475,1045636,961142.31,254849.3,114322.02,7626.855,4731.7148,3775.2407 +3836,4699,8324,-9,8325,8323,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.4423,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,0,475,1045636,961142.31,254849.3,114322.02,7626.855,4731.7148,3775.2407 +3836,4699,8325,8323,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,7.9676991,7.8893304,0,8,-8,-114.51176,0,2,2,2021,17,7,47,54,1,7,0,7.0228963,7.0228963,0,0,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,58.32,50.22,8.333333333333334,1,1,0,0,9,11,5,0,475,1045636,961142.31,254849.3,114322.02,7626.855,4731.7148,3775.2407 +3837,4700,8326,8327,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,6.5760784,6.5963564,0,28,-13,-25.49453,0,-9,-9,2021,6,0,15,15,1,0,0,4.9868093,4.9868093,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,53.38,24.67,10,1,1,0,0,9,4,3,1,357,-149242.39,84455.641,0,0,9948.5508,1585.6346,2138.8479 +3837,4700,8327,8326,-9,-9,1,1,61,0,2,0,2,2,-9,0,2,8.4936895,8.1566076,0,28,13,11.94288,0,-9,-9,2021,6,0,35,35,1,0,0,16.674286,16.674286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.38,24.67,62.39,56.71,0,1,1,0,0,12,4,3,1,357,-149242.39,84455.641,0,0,9948.5508,1585.6346,2138.8479 +3837,4701,8328,-9,8326,8327,1,1,20,0,2,0,2,2,-9,0,3,7.9843059,8.1143122,0,0,0,-1015.1223,0,2,2,2021,6,0,35,35,1,0,1,10.076824,10.076824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,-9,-9,10,1,1,0,0,3,4,3,1,523,-74909.047,-148179.25,0,0,6520.4805,0,1271.4958 +3838,4702,8329,8330,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.7588816,8.9878893,0,7,5,-63.255962,0,-9,-9,2021,24,10,52,49,1,10,0,14.025803,14.025803,.05,.05,0,0,0,0,0,0,1,1,0,1.145443,0,37.74,52.94,59.43,49.68,1.666666666666667,1,1,0,0,14,4,5,1,1375.6666,1554921,1460617.5,277196.31,165091.08,69399.828,8952.3008,5556.689 +3838,4702,8330,8329,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.8589735,8.8603315,0,7,-5,-21.174206,0,1,2,2021,8,1,41,43,1,1,0,18.090509,18.090509,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,37.74,52.94,8.333333333333334,1,1,0,0,12,4,5,1,1375.6666,1554921,1460617.5,277196.31,165091.08,69399.828,8952.3008,5556.689 +3838,4702,8331,-9,8330,8329,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7462,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,5,1,1375.6666,1554921,1460617.5,277196.31,165091.08,69399.828,8952.3008,5556.689 +3839,4703,8332,8333,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.9591789,10.053178,0,36,-1,17.572561,0,2,2,2021,7,0,40,40,1,0,0,61.633663,61.633663,.05,.05,0,0,0,0,0,0,0,0,0,3.039886,0,59.43,58.05,53.14,51.28,10,1,1,0,0,15,9,5,1,249,2785220,2137811,453714.94,-1574.2529,0,0,12498.061 +3839,4703,8333,8332,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.1821909,9.1380434,0,37,1,16.693504,0,2,2,2021,8,0,50,50,1,0,0,25.32649,25.32649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,59.43,58.05,8.333333333333334,1,1,0,0,15,9,5,1,249,2785220,2137811,453714.94,-1574.2529,0,0,12498.061 +3839,4704,8334,-9,8332,8333,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1104.048,-9,1,1,2021,18,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5285254,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,4388,52057.836,0,0,0,0,0,738.14935 +3840,4705,8335,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.1985159,4.1818123,0,0,-1015.6863,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,3.6716049,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,10,2,0,2528,156019.81,165114.98,0,0,0,0,1026.9407 +3840,4706,8336,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.6135402,5.8205504,0,0,-940.01038,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7884874,60.29,52.11,-9,-9,0,1,1,0,0,0,10,2,0,194,264944.75,220140.8,104853.62,0,0,457.33942,62.116123 +3841,4707,8337,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-973.29816,0,2,2,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.41,38.24,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,95,-20252.494,0,0,0,0,0,-76.218475 +3842,4708,8338,8339,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,7.8085413,7.8254828,0,12,-6,-102.96149,0,2,2,2021,13,3,34,34,1,3,0,14.288865,14.288865,.05,.05,0,0,0,0,0,2,1,1,0,3.6686113,0,44.39,63.4,35.75,66.17,6.666666666666667,1,1,0,0,8,10,4,1,1309.3334,11722.198,-4911.5239,0,0,-6.4229913,-42.804077,3635.5222 +3842,4708,8339,8338,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,8.2966204,8.077095,0,12,6,50.384014,0,2,2,2021,24,12,47,45,1,12,0,11.513028,11.513028,.05,.05,0,0,0,0,0,0,1,1,0,3.5396407,0,35.75,66.17,44.39,63.4,8.333333333333334,1,1,0,0,8,10,4,1,1309.3334,11722.198,-4911.5239,0,0,-6.4229913,-42.804077,3635.5222 +3842,4708,8340,-9,8338,8339,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.7299,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,1309.3334,11722.198,-4911.5239,0,0,-6.4229913,-42.804077,3635.5222 +3843,4709,8341,8342,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,50,0,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,.15471455,0,36.07,25.51,45.17,12.09,6.666666666666667,1,1,0,0,0,13,1,0,533,57337.531,0,0,0,0,0,2924.168 +3843,4709,8342,8341,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,50,0,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,7.7257934,0,14.5,1,1,0,0,0,45.17,12.09,36.07,25.51,5,1,1,0,0,0,13,1,0,533,57337.531,0,0,0,0,0,2924.168 +3844,4710,8343,8344,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.1839094,6.0779009,42,-2,4.780807,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9076161,63.66,46.31,55.94,36.36,6.666666666666667,1,1,0,0,0,10,2,1,1315.5,82134.625,75476.695,0,0,582.00525,0,1389.1365 +3844,4710,8344,8343,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.3788176,5.5369124,6,2,-40.109676,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7487054,5.4755244,55.94,36.36,63.66,46.31,10,1,1,0,0,0,10,2,1,1315.5,82134.625,75476.695,0,0,582.00525,0,1389.1365 +3845,4711,8345,-9,8346,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1052.6548,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,1,420.5,-71784.383,32215.727,0,0,0,0,681.42957 +3845,4711,8346,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.0812311,6.9675865,0,0,0,-969.42377,0,3,2,2021,12,0,26,16,1,0,0,4.2120237,4.2120237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.91,42.89,-9,-9,5,1,1,0,0,7,12,2,1,420.5,-71784.383,32215.727,0,0,0,0,681.42957 +3846,4712,8347,-9,8350,8348,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-977.95886,-9,1,1,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.48786992,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3846,4712,8348,8350,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.3622236,9.5249853,0,25,2,175.5071,0,3,2,2021,13,1,47,46,1,1,0,36.385891,36.385891,.05,.05,0,0,0,0,0,0,0,0,0,9.9286356,0,36.2,60.58,57.16,56.15,6.666666666666667,1,1,0,0,15,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3846,4712,8349,-9,8350,8348,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.4046,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3846,4712,8350,8348,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.6085038,7.9287863,0,25,-2,158.8109,0,2,2,2021,7,0,20,10,1,0,0,13.508195,13.508195,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,36.2,60.58,8.333333333333334,1,1,0,0,15,4,5,1,444,984681.75,678426.25,501269.19,161225.75,0,0,8281.041 +3847,4713,8351,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.092145,7.9687233,0,0,0,-1037.1083,0,3,3,2021,11,0,45,49,1,0,0,10.21307,10.21307,0,0,0,0,0,0,0,0,0,0,0,0,0,50.86,47.22,-9,-9,5,1,1,0,0,9,7,4,0,702,974606.75,550730.69,226151.95,0,0,7065.77,953.32416 +3848,4714,8352,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.6528368,8.7135324,0,0,0,-897.31842,0,-9,-9,2021,11,0,1,45,1,0,0,576.33276,576.33276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,573,729818.81,91988.602,793874.63,103410.05,0,0,2572.5896 +3849,4715,8353,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9405656,7.9745588,0,0,0,-973.68018,0,3,2,2021,13,4,37,32,1,4,0,10.714942,10.714942,.05,.05,0,0,0,0,0,2,0,0,0,0,0,15.4,62.31,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,157,213967.08,100040.67,57838.766,25412.602,0,0,927.90814 +3850,4716,8354,8355,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.3787203,6.1764321,11,3,70.715019,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.3402748,6.6966219,57.33,32.2,58.9,13.94,8.333333333333334,1,1,0,0,0,4,2,1,950.5,422784.28,252108.2,154065.48,3524.6909,1277.6531,4830.3369,3226.0908 +3850,4716,8355,8354,-9,-9,1,1,76,0,0,0,3,3,-9,0,1,0,6.8913889,6.9435396,11,-3,-40.717823,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,27.650244,0,0,1,1,0,4.6776814,7.0000248,58.9,13.94,57.33,32.2,8.333333333333334,1,1,0,0,0,4,2,1,950.5,422784.28,252108.2,154065.48,3524.6909,1277.6531,4830.3369,3226.0908 +3851,4717,8356,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.1938839,7.5495615,0,0,-881.2478,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2017608,7.3976779,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1641,1163663.1,710694.06,361527.5,0,0,0,1784.5056 +3852,4718,8357,8358,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,22,-5,89.759743,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.82,57.78,62.39,56.71,10,2,3,1,0,0,2,2,0,1370,80497.852,-13928.084,138565.94,102806.06,0,0,971.2384 +3852,4718,8358,8357,-9,-9,1,1,42,0,3,0,3,3,-9,0,5,7.5887833,7.6223245,0,22,5,-10.854479,0,3,3,2021,12,0,23,22,1,0,0,11.009007,11.009007,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,50.82,57.78,10,2,3,0,1,6,2,2,0,1370,80497.852,-13928.084,138565.94,102806.06,0,0,971.2384 +3852,4719,8359,-9,8357,8358,1,1,19,0,3,0,2,2,1,0,4,0,0,0,0,0,-847.92334,-9,2,3,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,2,3,0,1,0,2,1,0,147,0,0,0,0,0,0,581.29346 +3853,4720,8360,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.506525,8.5014753,0,0,-1042.2639,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0300179,8.1234665,46.37,50.17,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,535,1056309.4,109487.98,921501.94,0,2640.5601,0,2790.3176 +3854,4721,8361,8362,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.5768566,8.7315149,0,2,1,-106.45883,0,-9,-9,2021,15,4,39,39,1,4,0,17.946522,17.946522,.05,.05,0,0,0,0,0,0,0,0,0,5.1240439,0,56.33,51.02,44.02,60.7,8.333333333333334,1,1,0,0,2,10,5,0,2536.5,134439.13,22070.105,345161.31,259529.2,0,0,4602.814 +3854,4721,8362,8361,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8372698,8.6971445,0,2,-1,-56.570183,0,-9,-9,2021,8,2,55,47,1,2,0,11.889335,11.889335,.05,.05,0,0,0,0,0,0,0,0,0,5.1524334,0,44.02,60.7,56.33,51.02,6.666666666666667,1,1,0,0,5,10,5,0,2536.5,134439.13,22070.105,345161.31,259529.2,0,0,4602.814 +3855,4722,8363,-9,8365,8364,1,1,17,0,0,1,2,0,0,0,2,0,0,0,0,0,-1047.5614,-9,2,3,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,33.71,57.71,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,981.66669,-155430.02,81452.461,0,0,159417.23,0,2297.6201 +3855,4722,8364,8365,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,34,3,0,0,3,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.7607436,0,23.86,20.5,31.08,27.78,5,1,1,0,0,0,7,2,1,981.66669,-155430.02,81452.461,0,0,159417.23,0,2297.6201 +3855,4722,8365,8364,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,34,-3,0,0,3,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,31.08,27.78,23.86,20.5,3.333333333333333,1,1,0,0,0,7,2,1,981.66669,-155430.02,81452.461,0,0,159417.23,0,2297.6201 +3855,4723,8366,-9,8365,8364,1,1,24,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1189.7844,0,2,3,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,1153,-107320.52,0,0,0,0,0,905.64746 +3856,4724,8367,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1097.1239,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,13,1,1,1095,-37166.539,0,0,0,0,0,558.98358 +3857,4725,8368,8369,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.2348375,7.1290493,41,4,-68.865891,0,3,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,2.2924981,14.5,1,1,0,7.4615126,7.1600986,53.71,37.87,54.77,55.87,6.666666666666667,1,1,0,0,0,9,5,1,153,1318979.8,918460.5,427446,72438.984,0,0,6845.8389 +3857,4725,8369,8368,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,9.0533018,9.2401142,0,40,-4,-27.05909,0,2,3,2021,6,0,17,23,1,0,0,48.398113,48.398113,0,0,0,1,0,0,0,7,1,1,0,4.6625118,0,54.77,55.87,53.71,37.87,1.666666666666667,1,1,0,0,10,9,5,1,153,1318979.8,918460.5,427446,72438.984,0,0,6845.8389 +3858,4726,8370,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1066.6827,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.19,44.84,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1906,304598.41,0,164107.84,0,0,0,1363.7312 +3859,4727,8371,8372,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,6.4436522,7.8193402,7.820107,30,5,75.197357,0,3,3,2021,7,0,10,12,1,0,0,7.3875694,7.3875694,0,0,0,0,0,0,0,2,1,1,0,0,7.5675969,55.34,48.72,49.25,61.25,10,1,1,0,0,9,1,4,1,2335.5,903093.13,533883.25,439327.22,101195.35,0,4120.3218,2798.6973 +3859,4727,8372,8371,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,7.5607758,8.0145578,7.0253644,30,-5,-116.68412,0,2,3,2021,12,1,35,35,1,1,0,10.061412,10.061412,0,0,0,0,0,0,0,0,1,1,0,0,6.8917274,49.25,61.25,55.34,48.72,5,1,1,0,0,8,1,4,1,2335.5,903093.13,533883.25,439327.22,101195.35,0,4120.3218,2798.6973 +3859,4728,8373,-9,8371,8372,1,1,22,0,0,0,2,2,-9,0,4,7.6156206,7.7340183,0,0,0,-975.91669,0,2,1,2021,11,2,38,42,1,2,1,6.5511856,6.5511856,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,1,4,1,3,1,278,-102232.34,0,0,0,0,0,905.17334 +3860,4729,8374,8375,-9,-9,1,0,48,0,2,0,1,1,-9,1,4,7.8941002,7.7308841,0,20,-2,-77.550285,0,3,3,2021,20,8,23,24,1,8,0,12.986802,12.986802,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,41.65,60.41,35.26,59.77,6.666666666666667,1,1,0,0,13,8,4,1,346.5,117402.75,292161.47,0,0,0,0,4180.8965 +3860,4729,8375,8374,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.5807238,8.8085985,0,20,2,-54.513618,0,2,2,2021,13,2,37,35,1,2,0,17.739532,17.739532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.26,59.77,41.65,60.41,6.666666666666667,1,1,0,0,14,8,4,1,346.5,117402.75,292161.47,0,0,0,0,4180.8965 +3861,4730,8376,8377,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.530674,8.6916637,0,3,2,23.419956,0,2,1,2021,12,0,37,20,1,0,0,12.272584,12.272584,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,40.64,52.96,1.666666666666667,1,1,0,0,9,13,5,1,282,87538.578,-23453.16,106880.84,-13782.949,2931.3071,0,2824.9602 +3861,4730,8377,8376,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.790659,7.7092962,0,3,-2,45.107368,0,2,2,2021,15,3,30,32,1,3,0,8.6840544,8.6840544,.05,.05,.05,0,0,0,0,0,1,1,0,6.6957073,0,40.64,52.96,54.2,57.49,5,1,1,0,0,9,13,5,1,282,87538.578,-23453.16,106880.84,-13782.949,2931.3071,0,2824.9602 +3861,4731,8378,-9,8376,8377,1,1,19,0,0,1,2,0,0,1,5,0,0,0,0,0,-1138.1023,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1045,150378.36,0,0,0,0,0,319.27289 +3862,4732,8379,8380,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,0,0,0,9,-8,0,0,1,1,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.1721201,0,48,56,53.14,51.28,7,2,3,1,0,7,9,2,1,1725,437366.34,94674.313,328390.88,0,35695.617,851.89832,8309.7246 +3862,4732,8380,8379,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,0,0,0,9,8,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.9757128,0,53.14,51.28,48,56,8.333333333333334,1,1,0,0,0,9,2,1,1725,437366.34,94674.313,328390.88,0,35695.617,851.89832,8309.7246 +3863,4733,8381,8382,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.8822384,6.849679,31,2,-102.30134,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5684123,52,47,50,47,7,1,1,0,0,0,11,2,0,755.5,411909.97,208591.89,160342.23,0,0,0,2433.0403 +3863,4733,8382,8381,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,34,-2,19.162594,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,52,47,7,1,1,0,0,0,11,2,0,755.5,411909.97,208591.89,160342.23,0,0,0,2433.0403 +3864,4734,8383,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3633704,7.7110958,0,0,-972.11224,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4156561,32.49,38.05,-9,-9,5,1,1,0,0,10,8,3,1,643,819159.81,167116.09,541449.25,0,0,0,485.3248 +3865,4735,8384,8385,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3294659,8.3379326,0,3,-10,-30.702923,0,2,2,2021,12,2,16,16,1,2,0,25.877697,25.877697,0,0,0,0,0,0,0,0,1,1,0,3.7521505,0,51.74,47.77,45.91,59.89,8.333333333333334,1,1,0,0,10,7,4,1,482,725087.25,519271.63,284233,0,0,0,2923.1252 +3865,4735,8385,8384,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8077292,7.7531629,3,10,92.722198,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9006252,7.6189861,45.91,59.89,51.74,47.77,8.333333333333334,1,1,0,0,7,7,4,1,482,725087.25,519271.63,284233,0,0,0,2923.1252 +3866,4736,8386,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,4.881999,4.6230297,0,0,-1100.1918,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,4.6105232,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,4,2,1,1499,308718.91,-93034.422,69257.445,0,0,0,32.204491 +3867,4737,8387,8388,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,5.3245564,5.2170591,28,-2,18.139372,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,3.8335502,5.4813023,59.36,40.22,60.02,56.42,8.333333333333334,1,1,0,0,4,5,3,1,420.5,523977.47,484912.25,0,0,0,0,3168.3765 +3867,4737,8388,8387,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.7221785,7.2995725,26,2,-39.650158,0,3,3,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,7.3378391,60.02,56.42,59.36,40.22,8.333333333333334,1,1,0,0,8,5,3,1,420.5,523977.47,484912.25,0,0,0,0,3168.3765 +3868,4738,8389,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.5276,0,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.63,27.97,-9,-9,5,2,3,0,0,0,6,1,0,921,-25747.455,0,0,0,0,0,688.70197 +3869,4739,8390,8391,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,0,0,0,2,0,-32.815632,0,2,2,2021,5,0,0,45,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,1,0,5,11,3,0,440,313429,147824.86,68590.375,0,1794.647,0,1963.2421 +3869,4739,8391,8390,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,7.7095547,7.4440489,0,2,0,54.081497,0,-9,-9,2021,8,1,39,33,1,1,0,6.1050954,6.1050954,0,0,0,0,0,0,0,0,1,0,1,0,0,58.32,50.22,57.16,56.15,6.666666666666667,1,1,0,0,10,11,3,0,440,313429,147824.86,68590.375,0,1794.647,0,1963.2421 +3870,4740,8392,8393,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,5.9657488,5.9094954,46,-1,-159.1523,0,3,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.2928021,5.7921867,58.15,52.91,56.94,49.53,8.333333333333334,1,1,0,0,9,9,4,1,336.5,388706.31,100621.75,184578.8,2657.0835,0,0,4024.895 +3870,4740,8393,8392,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.2670708,8.6390238,7.492763,46,1,79.14859,0,3,3,2021,7,0,45,45,1,0,0,9.9144144,9.9144144,.05,.05,.05,0,0,0,0,0,1,1,0,5.9642129,7.4756012,56.94,49.53,58.15,52.91,8.333333333333334,1,1,0,0,11,9,4,1,336.5,388706.31,100621.75,184578.8,2657.0835,0,0,4024.895 +3871,4741,8394,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,2,0,7.106554,7.1243424,0,0,-980.37091,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,3.5690203,10.326385,20.190466,0,1,1,0,3.4903262,7.4442258,51.99,23.98,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,360,208576.97,156749.3,196129.89,0,0,0,1384.6056 +3872,4742,8395,8396,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,7.9328523,7.9035339,35,1,-54.674351,0,2,2,2021,11,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3774776,49.04,55.86,39.11,33.83,6.666666666666667,1,1,0,0,11,13,5,1,1227,157910.67,0,199058.34,12037.75,52241.047,3861.1387,3968.3855 +3872,4742,8396,8395,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.8096933,8.9442654,0,35,-1,-18.994484,0,2,3,2021,13,2,65,87,1,2,0,10.070471,10.070471,0,0,0,0,0,0,0,0,0,0,0,1.5579489,0,39.11,33.83,49.04,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1227,157910.67,0,199058.34,12037.75,52241.047,3861.1387,3968.3855 +3873,4743,8397,-9,8399,8398,1,1,45,0,0,0,2,2,-9,0,3,8.5670233,8.500495,0,0,0,-924.50751,0,2,3,2021,13,2,71,65,1,2,0,9.1613054,9.1613054,.05,.05,0,0,0,0,0,0,1,1,0,6.605514,0,46.15,40.82,-9,-9,6.666666666666667,1,1,0,0,8,2,5,0,783,666973.5,395200.91,223975.61,0,0,0,2483.0559 +3873,4744,8398,8399,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,3.7467353,3.5790696,3,6,64.28389,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,.49362978,0,0,1,1,0,0,4.1665277,36.93,35.01,31.99,45.53,8.333333333333334,1,1,0,0,0,2,2,0,537,55503.914,129451.44,119692.52,0,0,0,2754.4492 +3873,4744,8399,8398,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,3,-6,18.881542,0,-9,-9,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.99,45.53,36.93,35.01,8.333333333333334,1,1,0,0,0,2,2,0,537,55503.914,129451.44,119692.52,0,0,0,2754.4492 +3874,4745,8400,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.1732607,7.4551568,0,0,-1023.691,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4748611,63.41,39.7,-9,-9,8.333333333333334,3,4,0,0,0,9,3,1,1084,270323.81,0,291035.88,70288.688,0,0,819.36462 +3874,4745,8401,-9,8400,-9,1,0,14,0,0,1,3,0,-9,0,3,0,0,0,0,0,-927.06775,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,9,3,1,1084,270323.81,0,291035.88,70288.688,0,0,819.36462 +3874,4745,8402,-9,8400,-9,1,1,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1038.5814,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6,3,4,-9,0,0,9,3,1,1084,270323.81,0,291035.88,70288.688,0,0,819.36462 +3875,4746,8403,-9,8405,8406,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.49219,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3875,4746,8404,-9,8405,8406,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.1656,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3875,4746,8405,8406,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,8.1259136,8.2283039,0,16,3,14.177073,0,2,2,2021,26,12,32,32,1,12,0,13.784443,13.784443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.21,34.41,51.08,49.24,6.666666666666667,1,1,0,0,10,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3875,4746,8406,8405,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.1539469,8.3582315,0,16,-3,-2.4617016,0,2,2,2021,11,0,39,39,1,0,0,10.445384,10.445384,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,26.21,34.41,5,1,1,0,0,10,5,4,1,455,113910.27,71376.281,68921.359,51554.078,1372.1602,0,3505.5359 +3876,4747,8407,8408,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.5086436,6.2943516,12,13,8.307498,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5768538,6.1924329,36.78,48.57,42.44,53.28,6.666666666666667,2,3,0,0,0,6,2,1,414,-28167.48,-93835.406,0,0,0,0,1315.4141 +3876,4747,8408,8407,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,12,-13,-20.802391,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.44,53.28,36.78,48.57,3.333333333333333,2,3,0,0,6,6,2,1,414,-28167.48,-93835.406,0,0,0,0,1315.4141 +3876,4748,8409,-9,8408,-9,1,1,23,0,0,0,2,2,1,0,4,0,0,0,0,0,-937.46155,-9,2,-9,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,0,2,3,0,0,0,6,1,1,1441,98680,0,0,0,0,0,0 +3877,4749,8410,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,9.5244503,9.2723522,0,5,-2,32.58704,0,-9,-9,2021,9,0,48,48,1,0,0,18.461761,18.461761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,59.28,39.3,8.333333333333334,1,1,0,0,3,11,5,1,285,35531.227,38626.047,320324.47,259702.5,503.39105,0,2716.6931 +3877,4750,8411,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,8.9199314,8.8898849,0,5,2,-27.276089,0,2,2,2021,4,0,45,45,1,0,0,23.060394,23.060394,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.28,39.3,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,675,-56716.824,66033.469,0,0,0,0,2624.1155 +3878,4751,8412,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.5996671,7.6866598,0,0,-892.17432,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4803917,7.1855173,55.44,42.4,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,583,698338.31,206206.45,429651.03,0,0,0,2741.1367 +3879,4752,8413,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.154336,8.1741333,0,10,11,75.9664,0,2,-9,2021,11,3,35,35,1,3,0,13.534394,13.534394,0,0,0,0,0,0,0,0,0,0,0,0,0,49.94,25.13,46.89,30.04,8.333333333333334,1,1,0,0,9,2,5,0,956,505952.97,111304,325550,0,0,0,2260.6379 +3879,4753,8414,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.6136637,8.1177034,0,10,-11,1.6488128,0,2,2,2021,15,5,35,41,1,5,0,10.459317,10.459317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.89,30.04,49.94,25.13,8.333333333333334,1,1,0,0,9,2,5,0,306,290102.41,51499.727,0,0,-1844.7527,0,1244.6781 +3880,4754,8415,-9,-9,-9,1,0,18,0,1,0,2,2,1,0,4,6.4677229,6.6390233,0,0,0,-881.29968,-9,2,1,2021,22,9,18,0,1,9,1,3.3362963,3.3362963,.05,.05,0,0,0,0,0,2,1,1,0,0,0,28.1,66.68000000000001,-9,-9,3.333333333333333,1,1,0,0,1,2,2,1,170,-177821.59,-14893.021,0,0,2840.3354,0,-296.70013 +3881,4755,8416,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.2312794,8.0994558,0,0,0,-814.54791,0,3,2,2021,11,0,41,38,1,0,0,9.7053146,9.7053146,.05,.05,0,0,0,0,0,0,0,0,0,7.8020329,0,58.89,35.37,-9,-9,6.666666666666667,2,3,0,0,8,9,4,1,1078,227679.8,103318.9,287010.19,0,0,0,2531.4868 +3882,4756,8417,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,5.843317,6.2296805,0,0,0,-938.50977,0,2,2,2021,19,7,30,30,1,7,0,1.6425012,1.6425012,.05,.05,0,0,0,0,0,0,0,0,0,7.5035834,0,38.47,55.1,-9,-9,6.666666666666667,1,1,0,0,13,11,2,1,1038,341009.47,-24642.115,189050.13,0,0,0,1394.7826 +3883,4757,8418,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,6.8790407,7.001256,0,0,0,-946.08606,0,3,3,2021,10,0,23,20,1,0,0,6.2182627,6.2182627,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,-9,-9,5,1,1,0,0,9,2,2,1,1149,509155.31,166753.48,512795.69,35422.691,0,0,1416.1256 +3883,4758,8419,-9,8418,-9,1,1,29,0,0,0,1,1,-9,0,4,7.9995046,8.1674223,0,0,0,-866.50031,0,1,-9,2021,10,0,35,38,1,1,1,8.6087494,8.6087494,0,0,0,0,0,0,0,0,0,0,0,3.3091071,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,489,-85063.531,15677.082,0,0,0,0,543.05994 +3884,4759,8420,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.2679415,8.010437,0,0,0,-1054.9604,0,3,3,2021,11,1,34,26,1,1,0,12.639946,12.639946,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,14,12,4,1,983,-71208.906,122464.33,49499.449,24573.311,0,0,1490.928 +3885,4760,8421,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.5707359,7.5471025,0,0,-1002.2949,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8834553,7.489397,43.96,62.06,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,398,151426.61,74494.094,0,0,0,0,716.43915 +3886,4761,8422,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3705692,8.3610086,0,0,0,-910.60126,0,2,2,2021,6,0,39,39,1,0,0,13.40291,13.40291,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,575,471269.88,342527.44,259300.2,0,0,0,1971.5223 +3887,4762,8423,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.0770111,8.4819832,0,0,-1054.1223,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9299278,8.5146103,67.27,25.53,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,162,-65100.418,0,98155.852,0,24626.279,0,1826.6475 +3888,4763,8424,-9,8425,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-938.66144,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,1058.5,44634.105,0,0,0,3571.3149,0,2039.1638 +3888,4763,8425,-9,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.4439759,7.4461112,0,0,0,-1055.2355,0,3,-9,2021,19,7,16,16,1,7,0,11.00298,11.00298,0,0,0,0,0,0,0,7,1,1,0,0,0,31,60.29,-9,-9,5,3,4,0,1,3,8,2,0,1058.5,44634.105,0,0,0,3571.3149,0,2039.1638 +3889,4764,8426,8427,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,57,-1,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.84,41.32,48.77,57.64,8.333333333333334,1,1,0,0,0,6,1,0,370,-16271.213,0,83865.117,0,0,0,1021.0907 +3889,4764,8427,8426,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,0,0,57,1,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,62.84,41.32,8.333333333333334,1,1,0,0,0,6,1,0,370,-16271.213,0,83865.117,0,0,0,1021.0907 +3890,4765,8428,8429,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,39,0,53.204018,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,1,5,6,3,1,691.5,74013.508,-8013.0381,0,0,0,0,909.84558 +3890,4765,8429,8428,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,7.9205008,7.7111831,0,9,0,95.536568,0,3,3,2021,10,0,40,40,1,1,0,9.9687901,9.9687901,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,50,49,48,49,7,1,1,0,1,12,6,3,1,691.5,74013.508,-8013.0381,0,0,0,0,909.84558 +3890,4766,8430,-9,8428,8429,1,1,33,0,0,0,2,2,-9,0,5,6.4774418,6.6207852,0,0,0,-1020.0361,0,3,3,2021,0,0,11,30,1,0,1,7.0008903,7.0008903,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,30.22,61.23,-9,-9,10,1,1,0,0,4,6,2,1,695,95971.609,-41938.203,0,0,0,3294.717,931.8031 +3891,4767,8431,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,2,0,7.8471932,8.0187798,0,0,-917.51184,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6980953,36.27,24.2,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,176,204946.03,-31220.592,0,0,0,0,2541.0698 +3892,4768,8432,8433,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,53,-6,31.14933,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,61.12,51.57,10,1,1,0,0,4,2,2,0,1649,423970.19,340811.75,148472.69,0,0,304.88324,1067.3849 +3892,4768,8433,8432,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,6.6335621,7.2655969,53,6,10.836493,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2675514,7.2561102,61.12,51.57,54.2,57.49,8.333333333333334,1,1,0,0,0,2,2,0,1649,423970.19,340811.75,148472.69,0,0,304.88324,1067.3849 +3893,4769,8434,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,3,0,4.4137096,4.6395936,0,0,-1029.2949,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,2.2526283,0,0,1,1,0,4.7805276,4.5466642,62.92,29.01,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,137,210361.77,-43822.852,186221.39,0,0,0,1187.1809 +3894,4770,8435,8436,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.3734093,8.1281385,0,10,-2,24.613323,0,3,3,2021,12,0,34,34,1,0,0,12.338032,12.338032,0,0,0,0,0,0,0,0,0,0,0,2.2379961,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,499,1916709,1053783.6,269243.44,0,0,0,3438.5234 +3894,4770,8436,8435,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.2364645,8.1162682,10,2,-83.865059,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.3243592,8.2427082,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,8,4,5,1,499,1916709,1053783.6,269243.44,0,0,0,3438.5234 +3895,4771,8437,8438,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.8832231,7.8328543,0,7,-5,136.87006,0,-9,-9,2021,16,5,40,39,1,5,0,7.3548322,7.3548322,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,36.6,56.17,23.67,42.28,3.333333333333333,1,1,0,0,5,10,4,0,294.5,64718.602,59138.492,260322.63,98242.898,0,0,2464.1914 +3895,4771,8438,8437,-9,-9,1,0,36,0,0,0,1,1,-9,0,2,8.1176195,8.3968048,0,7,5,155.81566,0,2,2,2021,24,12,47,81,1,12,0,9.226779,9.226779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.67,42.28,36.6,56.17,3.333333333333333,1,1,0,0,9,10,4,0,294.5,64718.602,59138.492,260322.63,98242.898,0,0,2464.1914 +3896,4772,8439,8440,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.8713112,8.6753426,0,4,-11,39.346508,0,2,2,2021,3,0,45,55,1,0,0,17.137341,17.137341,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,41.72,58.06,8.333333333333334,1,1,0,0,8,5,5,1,855,506921.31,301699.06,110210.62,22263.027,2700.2217,0,3071.3777 +3896,4772,8440,8439,-9,-9,1,0,56,0,0,0,3,3,-9,0,5,8.4613466,8.1619616,0,4,11,46.471233,0,3,2,2021,11,0,37,39,1,0,0,10.981239,10.981239,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.72,58.06,52,55,1.666666666666667,1,1,0,0,8,5,5,1,855,506921.31,301699.06,110210.62,22263.027,2700.2217,0,3071.3777 +3897,4773,8441,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.9391007,7.9750686,0,0,0,-1046.7023,0,-9,-9,2021,6,0,36,38,1,0,0,9.4298534,9.4298534,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,1205,61309.637,-98939.906,135740.27,79251.68,0,0,1065.4421 +3898,4774,8442,8443,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.5549517,8.507472,0,11,5,15.387708,0,-9,-9,2021,10,0,37,37,1,1,0,15.799202,15.799202,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,49.41,58.28,8,1,1,0,0,13,10,5,0,307,397167.88,99058.43,581474.06,241326.5,14002.427,12554.087,3571.2505 +3898,4774,8443,8442,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.1307373,8.2035789,0,11,-5,-73.914017,0,1,2,2021,9,0,33,32,1,0,0,12.331123,12.331123,0,0,0,0,0,0,0,0,1,1,0,4.0456753,0,49.41,58.28,50,57,6.666666666666667,1,1,0,0,12,10,5,0,307,397167.88,99058.43,581474.06,241326.5,14002.427,12554.087,3571.2505 +3898,4774,8444,-9,8443,8442,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.14746,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,0,307,397167.88,99058.43,581474.06,241326.5,14002.427,12554.087,3571.2505 +3899,4775,8445,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.0875101,8.0586748,5.2059684,0,0,-956.7934,0,2,1,2021,4,0,54,39,1,0,0,7.7569518,7.7569518,.05,.05,0,0,0,0,0,0,1,1,0,6.8256693,0,53.42,47.6,-9,-9,8.333333333333334,3,4,0,0,12,7,4,0,377,412311.69,476911,0,0,0,0,1659.6133 +3900,4776,8446,8447,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.9281516,5.8317556,48,-10,172.53877,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6849847,5.9102092,55.02,54.61,59.46,36.25,8.333333333333334,1,1,0,0,0,9,3,1,2226,840207.13,605655.94,351340.22,0,0,0,3213.3794 +3900,4776,8447,8446,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.9690976,8.1118603,48,10,106.09083,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9684238,7.5116963,59.46,36.25,55.02,54.61,6.666666666666667,1,1,0,0,0,9,3,1,2226,840207.13,605655.94,351340.22,0,0,0,3213.3794 +3901,4777,8448,8449,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.6805058,9.7524853,8.3032646,7,1,68.007912,0,3,2,2021,10,0,54,70,1,0,0,37.04866,37.04866,.05,.05,0,0,0,0,0,0,0,0,0,7.4853358,8.1320276,61.69,33.84,49.04,39.8,6.666666666666667,1,1,0,0,7,5,5,1,692.5,323972.41,-5644.3438,286056.06,0,0,0,10733.321 +3901,4777,8449,8448,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.2984915,7.2648592,0,7,-1,-42.432461,0,-9,-9,2021,12,0,54,54,1,0,0,4.2445178,4.2445178,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,39.8,61.69,33.84,6.666666666666667,1,1,0,0,5,5,5,1,692.5,323972.41,-5644.3438,286056.06,0,0,0,10733.321 +3901,4778,8450,-9,8449,8448,1,0,32,0,0,0,2,2,1,0,3,6.7333698,6.9575887,0,0,0,-1014.2256,-9,3,2,2021,18,5,32,0,1,5,1,3.3131797,3.3131797,0,0,0,0,0,0,0,0,0,0,0,0,0,36.78,41.13,-9,-9,3.333333333333333,1,1,0,0,6,5,2,1,2437,144931.44,0,60561.313,0,0,-762.55505,884.88879 +3902,4779,8451,8452,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.8065758,6.9310079,8,-2,-65.106415,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0509968,5.8960581,62.08,46.01,61.19,36.58,10,1,1,0,0,0,10,3,1,848.5,867587.63,444617.03,392339.78,0,0,0,2013.0293 +3902,4779,8452,8451,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5837274,7.2670789,8,2,-116.6785,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.095572,61.19,36.58,62.08,46.01,6.666666666666667,1,1,0,0,4,10,3,1,848.5,867587.63,444617.03,392339.78,0,0,0,2013.0293 +3903,4780,8453,8454,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.6317196,8.6833353,0,14,4,-55.119499,0,2,2,2021,10,0,42,42,1,0,0,14.627342,14.627342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.46,54.85,54.2,57.49,6.666666666666667,1,1,0,0,9,4,4,1,631.33331,119729.67,24347.041,0,0,4531.7397,0,2526.6904 +3903,4780,8454,8453,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,0,0,0,14,-4,49.797707,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1545424,0,54.2,57.49,42.46,54.85,8.333333333333334,1,1,0,0,2,4,4,1,631.33331,119729.67,24347.041,0,0,4531.7397,0,2526.6904 +3903,4780,8455,-9,8454,8453,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-962.6723,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,4,1,631.33331,119729.67,24347.041,0,0,4531.7397,0,2526.6904 +3904,4781,8456,-9,8459,8457,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1111.0967,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8457,8459,-9,-9,1,1,48,0,3,0,2,2,-9,0,5,8.8021479,8.6896925,0,10,4,-213.07097,0,3,3,2021,12,0,61,60,1,0,0,14.571146,14.571146,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,58,53.67,51.01,8.333333333333334,1,1,0,0,11,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8458,-9,8459,8457,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.14313,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8459,8457,-9,-9,1,0,44,0,3,0,2,2,-9,0,3,6.8751664,6.6672087,0,10,-4,103.30965,0,2,2,2021,6,0,13,11,1,0,0,6.2373381,6.2373381,0,0,0,0,0,0,0,0,1,1,0,0,0,53.67,51.01,54,58,8.333333333333334,1,1,0,0,5,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3904,4781,8460,-9,8459,8457,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-999.33105,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.178332,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,622,594408.88,204984.59,555104.56,235066.06,0,0,2929.1262 +3905,4782,8461,8462,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,30,-4,28.307276,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.28,13.75,37.24,35.87,3.333333333333333,1,1,0,0,0,5,3,0,1274,1432890.1,795249.75,534111.75,0,1080.3539,0,1940.6322 +3905,4782,8462,8461,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.1053133,7.9473748,0,30,4,100.545,0,3,3,2021,12,1,39,39,1,1,0,8.5134001,8.5134001,0,0,0,0,0,0,0,0,1,1,0,0,0,37.24,35.87,55.28,13.75,3.333333333333333,1,1,0,0,6,5,3,0,1274,1432890.1,795249.75,534111.75,0,1080.3539,0,1940.6322 +3906,4783,8463,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8099303,7.4016161,0,0,0,-1019.6586,-9,-9,-9,2021,12,2,37,0,1,2,0,7.580493,7.580493,0,0,0,0,0,0,0,14.5,0,0,0,3.6076515,0,46.55,58.3,-9,-9,10,3,4,0,0,14,6,3,1,3562,222805.19,0,89404.672,0,0,0,545.3725 +3907,4784,8464,8465,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.8171816,7.8772831,0,35,-4,-18.454384,0,3,2,2021,11,0,37,37,1,2,0,7.5999141,7.5999141,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,44.84,49.01,7,2,3,0,0,9,8,3,1,743.5,491697.81,96947.016,373171.28,0,0,0,1128.3965 +3907,4784,8465,8464,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,6.2412362,6.6173477,4.4893436,7,4,51.808346,0,3,3,2021,10,0,40,30,1,0,0,1.3444344,1.3444344,.05,.05,.05,0,0,0,0,0,0,0,0,2.7705388,4.4589853,44.84,49.01,49,48,6.666666666666667,2,3,0,0,9,8,3,1,743.5,491697.81,96947.016,373171.28,0,0,0,1128.3965 +3907,4785,8466,-9,8464,8465,1,0,23,0,0,0,1,1,-9,0,4,8.3876181,8.4513655,0,0,0,-919.44971,0,2,3,2021,11,0,36,23,1,2,1,16.308081,16.308081,.05,.05,0,0,0,0,0,0,0,0,0,2.1609087,0,47,58,-9,-9,7,2,3,0,0,2,8,5,1,508,-16446.369,63209.117,0,0,0,0,1782.1594 +3908,4786,8467,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.2060027,7.2183681,0,0,-1095.73,0,1,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8582861,7.2175713,52.93,47.44,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,528,381793.31,163781.75,353723.31,0,-1188.8395,0,1048.7549 +3909,4787,8468,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,7.0777254,7.2634673,0,0,-1040.5588,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1346407,0,0,1,1,0,0,7.2682519,59.74,11.03,-9,-9,10,1,1,0,0,0,12,2,1,404,176493.92,17852.578,0,0,0,0,1922.5555 +3910,4788,8469,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,7.61023,7.2642736,0,0,-1038.0079,0,3,3,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,0,258.02634,0,0,1,1,0,0,7.5003018,26.9,21.84,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1666,362626.66,-24176.783,232615.11,0,0,0,1137.2971 +3910,4789,8470,-9,8469,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1049.7543,1,2,2,2021,21,6,0,40,2,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.2348504,0,16.65,58.31,-9,-9,1.666666666666667,1,1,0,0,13,7,1,1,355,50258.074,0,0,0,-331.12943,0,-175.43738 +3911,4790,8471,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.666399,7.7078886,0,0,0,-984.97955,0,-9,3,2021,8,1,30,30,1,1,0,8.5198545,8.5198545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.7,57.37,-9,-9,1.666666666666667,1,1,0,1,13,13,3,1,1413,346047.34,39064.223,98482.773,0,0,0,400.6478 +3912,4791,8472,-9,8475,8474,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1017.2952,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4791,8473,-9,8475,8474,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.39117,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4791,8474,8475,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5128622,8.7053919,0,19,3,73.776222,0,2,1,2021,12,0,40,39,1,0,0,12.615914,12.615914,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.41,44.31,30.4,59.43,5,1,1,0,0,8,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4791,8475,8474,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,5.9201012,6.2104359,0,19,-3,4.4428201,0,-9,3,2021,16,4,5,6,1,4,0,8.8558874,8.8558874,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.4,59.43,41.41,44.31,3.333333333333333,1,1,0,1,8,11,3,1,567.25,490817.06,500213.53,136377.98,66764.586,6933.1274,0,2886.8245 +3912,4792,8476,-9,8475,8474,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-986.0929,-9,2,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,37.58,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,124,36908.484,0,0,0,0,0,0 +3913,4793,8477,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.1553626,5.0458574,0,0,-969.00989,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1941209,51.57,37.05,-9,-9,5,1,1,0,0,4,12,2,0,522,585681.06,0,195633.22,0,0,0,497.03293 +3914,4794,8478,8479,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.2745976,5.1700439,10,-1,-42.813206,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0187807,5.0283899,57.16,56.15,55,52,8.333333333333334,1,1,0,0,0,11,3,1,1102,741558.25,358714.31,215772.36,0,0,0,4637.0977 +3914,4794,8479,8478,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.9434681,7.778935,10,1,-13.721066,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6500483,7.9871101,55,52,57.16,56.15,6.666666666666667,1,1,0,0,0,11,3,1,1102,741558.25,358714.31,215772.36,0,0,0,4637.0977 +3915,4795,8480,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.8282452,7.8918948,0,0,-1008.3843,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.0301132,7.8644776,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,3990,759169.13,146555.59,432483.69,0,0,0,1440.7598 +3916,4796,8481,8482,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,0,0,60,-2,-131.62009,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,47.72,31.11,38.52,20.8,8.333333333333334,1,1,0,0,0,1,2,1,263.5,316635.75,0,341451.25,0,0,0,2200.2805 +3916,4796,8482,8481,-9,-9,1,1,83,0,0,0,1,1,-9,0,1,0,7.2113981,7.3554468,60,2,-4.022522,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,106.63705,0,0,1,1,0,0,7.5782247,38.52,20.8,47.72,31.11,8.333333333333334,1,1,0,0,0,1,2,1,263.5,316635.75,0,341451.25,0,0,0,2200.2805 +3917,4797,8483,8484,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6617184,8.7621288,0,20,1,-46.72517,0,2,3,2021,12,3,32,27,1,3,0,23.578276,23.578276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.33,56.78,54.76,38.04,8.333333333333334,1,1,0,0,14,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3917,4797,8484,8483,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.9600868,8.9610987,0,20,-1,-36.781082,0,3,3,2021,8,1,50,36,1,1,0,16.741978,16.741978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.76,38.04,29.33,56.78,8.333333333333334,1,1,0,0,14,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3917,4797,8485,-9,8483,8484,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.8688,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3917,4797,8486,-9,8483,8484,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.09332,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,684.75,612011.25,401775.53,425970.31,193282.13,10230.493,2285.8982,4589.8486 +3918,4798,8487,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,7.4464641,7.67241,0,0,0,-941.71948,0,-9,-9,2021,12,0,30,-9,1,0,0,6.4251866,6.4251866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,13,2,3,1,670,169839.48,-29120.285,0,0,0,0,692.26855 +3919,4799,8488,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,8.7114506,9.1016808,7.2904105,0,0,-1061.2015,0,3,2,2021,8,0,40,38,1,0,0,19.186592,19.186592,0,0,0,0,0,0,0,0,1,1,0,6.5739036,7.5603495,64.47,51.45,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,673,1022062.3,352275.34,369849.63,0,3669.5847,0,3784.1892 +3920,4800,8489,8490,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,7.3457055,7.2348242,0,11,3,24.086729,0,-9,-9,2021,10,0,80,80,1,1,0,2.8851268,2.8851268,0,0,0,0,0,0,0,0,1,1,0,7.7716699,0,52,48,57.33,42.93,7,1,1,0,0,1,5,3,0,1255.5,568041,86514.563,338304.25,0,27943.734,0,3138.1147 +3920,4800,8490,8489,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.3243036,6.0660291,11,-3,-8.5543489,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6635575,5.9886584,57.33,42.93,52,48,8.333333333333334,1,1,0,0,0,5,3,0,1255.5,568041,86514.563,338304.25,0,27943.734,0,3138.1147 +3921,4801,8491,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,6.7777371,7.0030122,0,0,0,-985.01398,0,-9,-9,2021,5,0,8,0,1,0,0,11.146238,11.146238,0,0,0,0,0,0,0,2,1,1,0,5.160183,0,62.9,48.63,-9,-9,6.666666666666667,1,1,0,0,2,8,2,1,312,890652.94,325766.25,132337.39,0,0,0,-27.321892 +3921,4802,8492,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,0,0,0,0,0,-977.03369,-9,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,4,6,1,0,0,8,1,1,1321,-129089.28,0,0,0,0,0,431.0368 +3922,4803,8493,8495,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,0,0,0,20,-4,-.18122043,0,3,1,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.63,36.68,50.05,38.97,8.333333333333334,2,3,0,0,0,6,2,0,655.66669,14061.759,54982.379,112836.16,52857.289,2832.1477,0,879.47321 +3922,4803,8494,-9,8493,8495,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-960.94836,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,6,2,0,655.66669,14061.759,54982.379,112836.16,52857.289,2832.1477,0,879.47321 +3922,4803,8495,8493,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,7.3358803,6.9488306,0,40,4,21.622316,0,3,2,2021,12,4,24,24,1,4,0,6.113811,6.113811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.05,38.97,51.63,36.68,8.333333333333334,2,3,0,0,7,6,2,0,655.66669,14061.759,54982.379,112836.16,52857.289,2832.1477,0,879.47321 +3923,4804,8496,-9,8497,8499,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.6362,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3923,4804,8497,8499,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.0063009,8.0988054,0,14,-2,-44.831348,0,1,3,2021,12,1,28,28,1,1,0,8.1929703,8.1929703,.05,.05,0,0,0,0,0,2,0,0,0,7.6437931,0,44.07,39.47,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3923,4804,8498,-9,8497,8499,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.80786,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3923,4804,8499,8497,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.8406916,8.6046848,0,14,2,21.96769,0,2,2,2021,13,1,37,43,1,1,0,17.275579,17.275579,.05,.05,.05,0,0,0,0,0,0,0,0,6.3014517,0,57.16,56.15,44.07,39.47,6.666666666666667,1,1,0,0,10,2,4,1,798.25,344813.94,99858.086,168201.39,34515.289,7008.479,0,3288.0435 +3924,4805,8500,8501,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,7.3477726,7.4585872,0,3,-2,-66.632515,0,-9,-9,2021,9,0,25,17,1,0,0,7.0147586,7.0147586,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.77,58.57,8.333333333333334,2,3,0,0,2,5,4,1,1129.5,185566.22,102391.22,199707.55,107143,4640.8496,0,1831.339 +3924,4805,8501,8500,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.6551704,8.9741268,0,3,2,159.47258,0,3,3,2021,11,0,47,50,1,0,0,12.643678,12.643678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,54.2,57.49,6.666666666666667,2,3,0,0,9,5,4,1,1129.5,185566.22,102391.22,199707.55,107143,4640.8496,0,1831.339 +3925,4806,8502,8503,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.5122213,8.9040537,0,8,0,-51.915855,0,-9,-9,2021,11,3,40,40,1,3,0,14.315168,14.315168,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.58,60.95,54.2,57.49,8.333333333333334,1,1,0,0,4,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3925,4806,8503,8502,-9,-9,1,1,32,2,2,0,1,1,-9,0,4,8.4554882,8.797574,0,8,0,115.99673,0,2,1,2021,12,0,40,39,1,0,0,12.3538,12.3538,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,40.58,60.95,8.333333333333334,1,1,0,0,10,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3925,4806,8504,-9,8502,8503,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-965.27142,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3925,4806,8505,-9,8502,8503,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.975,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,13,5,1,315,311109.69,255038.22,236789.3,76073.969,5474.8535,1212.9918,5640.6074 +3926,4807,8506,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.8761024,8.6972132,0,0,0,-940.24451,0,-9,-9,2021,14,4,45,47,1,4,0,16.813568,16.813568,0,0,0,0,0,0,0,7,0,0,0,2.7573092,0,46.53,32.85,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,481,-87301.969,0,0,0,5154.7441,0,2762.4055 +3927,4808,8507,8508,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.1639347,8.303525,0,11,-4,87.173653,0,-9,-9,2021,6,0,35,30,1,0,0,15.320409,15.320409,0,0,0,0,0,0,0,0,0,0,0,0,0,64.48,41.06,62.49,55.09,8.333333333333334,1,1,0,0,11,7,5,1,1819,1474307.3,367325,885408.56,13333.288,14760.869,0,5827.4097 +3927,4808,8508,8507,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.9528513,9.0698214,7.6620941,39,4,-13.676836,0,3,3,2021,6,0,40,35,1,0,0,25.624956,25.624956,0,0,0,0,0,0,0,0,0,0,0,0,7.7995391,62.49,55.09,64.48,41.06,10,1,1,0,0,13,7,5,1,1819,1474307.3,367325,885408.56,13333.288,14760.869,0,5827.4097 +3927,4809,8509,-9,8507,8508,1,1,29,0,0,0,2,2,-9,0,5,7.6820784,7.7561703,0,0,0,-1139.2581,-9,2,3,2021,6,0,40,0,1,0,1,6.5411706,6.5411706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,382,-156654.81,-28004.4,0,0,0,0,602.95142 +3927,4810,8510,-9,8507,8508,1,1,26,0,0,0,1,1,-9,0,5,8.5638409,8.6662178,0,0,0,-918.86938,0,2,3,2021,4,0,40,40,1,0,1,14.16851,14.16851,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,3,7,5,1,718,-23951.105,108410.13,0,0,0,0,1571.2532 +3928,4811,8511,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-978.70428,0,-9,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.95,26.09,-9,-9,8.333333333333334,3,4,0,0,0,6,1,0,587,6230.8193,0,0,0,0,0,1044.4292 +3929,4812,8512,-9,8513,8514,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.3687,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,3,1,365.66666,41363.035,0,0,0,0,0,1898.9861 +3929,4812,8513,8514,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,7.0541549,6.852818,0,2,2,7.7115331,0,-9,-9,2021,11,0,16,16,1,0,0,7.418673,7.418673,0,0,0,0,0,0,0,0,1,1,0,0,0,54.88,35.34,48.98,57.22,5,1,1,0,0,8,5,3,1,365.66666,41363.035,0,0,0,0,0,1898.9861 +3929,4812,8514,8513,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,7.8347654,7.8831606,0,2,-2,-46.501175,0,-9,-9,2021,12,0,42,42,1,0,0,9.9430971,9.9430971,0,0,0,0,0,0,0,0,1,1,0,.45687512,0,48.98,57.22,54.88,35.34,3.333333333333333,1,1,0,0,10,5,3,1,365.66666,41363.035,0,0,0,0,0,1898.9861 +3930,4813,8515,8516,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,7.564568,7.6753507,51,1,1.7369187,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.6891754,7.487618,62.39,56.71,47.1,56.62,10,1,1,0,0,4,11,4,1,911,1471826.3,905714.81,223474.59,0,0,0,3812.1904 +3930,4813,8516,8515,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.0365429,8.1435452,51,-1,65.602592,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.926384,8.2177515,47.1,56.62,62.39,56.71,10,1,1,0,0,4,11,4,1,911,1471826.3,905714.81,223474.59,0,0,0,3812.1904 +3930,4814,8517,-9,8515,8516,1,1,43,0,0,0,2,2,-9,1,4,7.5193624,7.3636503,0,0,0,-927.75409,0,1,1,2021,1,0,37,37,1,0,0,5.7579703,5.7579703,0,0,0,0,0,0,0,0,1,1,0,.81521076,0,59.74,45.34,-9,-9,1.666666666666667,1,1,0,0,10,11,3,1,1410,-258671.06,0,0,0,0,0,2748.384 +3931,4815,8518,8519,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.7572217,7.5306664,0,9,-2,.48349983,0,-9,2,2021,17,5,39,39,1,5,0,8.2811861,8.2811861,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.09,43.11,51,57,5,1,1,0,1,11,2,3,0,892,192693.53,-24625.977,97559.188,60448.031,6625.0493,1627.5688,2135.0417 +3931,4815,8519,8518,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,0,0,0,9,2,109.13172,0,-9,-9,2021,10,0,0,39,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51,57,42.09,43.11,7,1,1,1,0,0,2,3,0,892,192693.53,-24625.977,97559.188,60448.031,6625.0493,1627.5688,2135.0417 +3932,4816,8520,8521,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.6456294,6.0939689,56,3,-37.971863,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5723286,57.33,53.46,60.03,45.37,10,1,1,0,0,0,5,2,1,849,265211.06,227036.23,132640.16,30448.832,0,0,700.61346 +3932,4816,8521,8520,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,56,-3,-32.25428,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.03,45.37,57.33,53.46,10,1,1,0,0,0,5,2,1,849,265211.06,227036.23,132640.16,30448.832,0,0,700.61346 +3933,4817,8522,8523,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.685215,8.522522,0,8,-1,83.217682,0,3,2,2021,17,6,37,40,1,6,0,16.353987,16.353987,0,0,0,0,0,0,0,0,0,0,0,0,0,48.35,50.73,49.07,47.58,3.333333333333333,1,1,0,0,9,11,5,1,216,463556.13,342528.38,141042.34,0,6841.1152,548.94843,2965.332 +3933,4817,8523,8522,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,7.8044357,8.0044212,0,8,1,19.006617,0,-9,-9,2021,20,7,41,40,1,7,0,5.1172905,5.1172905,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.07,47.58,48.35,50.73,5,1,1,0,0,7,11,5,1,216,463556.13,342528.38,141042.34,0,6841.1152,548.94843,2965.332 +3934,4818,8524,8525,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,7.815259,7.6014504,0,8,0,-89.230324,0,2,1,2021,14,4,37,37,1,4,0,7.9330497,7.9330497,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.94,58.68,54.37,54.8,10,1,1,0,0,9,12,5,1,621.5,1055432,436725.25,488204.56,-3658.2617,7810.686,0,9783.6523 +3934,4818,8525,8524,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.789753,9.4159632,0,8,0,-63.775688,0,2,2,2021,11,0,35,40,1,0,0,45.111485,45.111485,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.37,54.8,43.94,58.68,8.333333333333334,1,1,0,0,9,12,5,1,621.5,1055432,436725.25,488204.56,-3658.2617,7810.686,0,9783.6523 +3935,4819,8526,8527,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.8569264,8.0213566,3,8,-34.705879,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.7123458,7.8575816,51,49,54.96,53.17,7,4,1,0,0,0,4,5,1,1933,243813.63,39223.75,187320.97,55311.281,0,0,3123.2358 +3935,4819,8527,8526,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.5053768,8.5487404,0,3,-8,54.955639,0,2,-9,2021,8,0,40,37,1,0,0,12.422194,12.422194,0,0,0,0,0,0,0,0,0,0,0,3.8179648,0,54.96,53.17,51,49,10,1,1,0,0,10,4,5,1,1933,243813.63,39223.75,187320.97,55311.281,0,0,3123.2358 +3936,4820,8528,8529,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,0,0,55,-3,49.330547,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.82,53.97,56.78,46.68,10,1,1,0,0,0,4,3,1,558,1120285.8,617450.81,407887.94,0,0,0,1980.8979 +3936,4820,8529,8528,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,7.7941041,7.378828,55,3,-34.044807,0,-9,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9087257,56.78,46.68,52.82,53.97,8.333333333333334,1,1,0,0,10,4,3,1,558,1120285.8,617450.81,407887.94,0,0,0,1980.8979 +3937,4821,8530,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.5634003,5.5773335,0,0,-1110.802,-9,-9,-9,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,8.8212366,0,0,1,1,0,0,5.5071125,44.32,32.67,-9,-9,6.666666666666667,2,3,0,0,0,6,2,1,207,-43080.68,-50326.141,0,0,0,0,1162.4288 +3938,4822,8531,8532,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.3348494,7.9971418,28,1,108.73085,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0503039,8.0831356,58.5,44.67,54.2,57.49,10,1,1,0,0,6,7,4,1,1136.5,1695449.3,574172.38,460867.88,0,0,0,4431.8926 +3938,4822,8532,8531,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.5589714,5.6248326,28,-1,-30.635511,0,2,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1182942,5.3689613,54.2,57.49,58.5,44.67,8.333333333333334,1,1,0,0,8,7,4,1,1136.5,1695449.3,574172.38,460867.88,0,0,0,4431.8926 +3939,4823,8533,8534,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.367815,8.1992168,0,7,0,-92.201744,0,3,-9,2021,10,0,35,37,1,1,0,10.839601,10.839601,0,0,0,0,0,0,0,0,0,0,0,7.2890568,0,51,54,55.21,43.87,8,1,1,0,0,1,9,4,1,407,1139759.9,752692.88,236612.25,0,0,0,3393.7483 +3939,4823,8534,8533,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,6.9820275,7.3661003,6.4037547,7,9,-27.581358,0,-9,-9,2021,8,0,35,40,1,0,0,3.9037733,3.9037733,.05,.05,0,0,0,0,0,0,0,0,0,7.0386066,6.7146969,55.21,43.87,51,54,8.333333333333334,1,1,0,0,8,9,4,1,407,1139759.9,752692.88,236612.25,0,0,0,3393.7483 +3940,4824,8535,8536,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.7764711,8.8948107,0,12,1,-32.295483,0,2,2,2021,14,3,37,37,1,3,0,15.228615,15.228615,.05,.05,0,0,0,0,0,0,1,1,0,.89866644,0,33.76,54.45,38.3,52.65,8.333333333333334,1,1,0,0,12,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3940,4824,8536,8535,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,7.7274861,7.5898132,0,12,-1,103.26027,0,2,2,2021,12,1,29,29,1,1,0,10.672978,10.672978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.3,52.65,33.76,54.45,6.666666666666667,1,1,0,0,12,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3940,4824,8537,-9,8536,8535,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.9086,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3940,4824,8538,-9,8536,8535,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.81702,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,1,436.25,353079.34,124399.51,336190.38,253836.31,0,0,3660.8555 +3941,4825,8539,8540,-9,-9,1,0,53,0,0,0,1,1,-9,1,3,0,0,0,18,-4,14.349506,-9,1,1,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,8.8123627,0,41.88,45.75,40.55,31.7,6.666666666666667,2,3,0,0,0,10,5,1,670,1728971.8,1147196.3,348616.81,0,11233.775,0,9431.1035 +3941,4825,8540,8539,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.4519796,9.5362921,0,18,4,-35.9333,-9,1,1,2021,24,10,40,0,1,10,0,37.119438,37.119438,.05,.05,0,0,0,0,0,7,1,1,0,0,0,40.55,31.7,41.88,45.75,3.333333333333333,2,3,0,0,8,10,5,1,670,1728971.8,1147196.3,348616.81,0,11233.775,0,9431.1035 +3941,4826,8541,-9,8539,8540,1,1,19,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1048.587,-9,1,1,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,10,1,1,306,-17870.771,0,0,0,0,0,0 +3942,4827,8542,8543,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.066803,8.3982868,0,3,0,-7.5300283,0,3,2,2021,6,0,48,48,1,0,0,8.6161423,8.6161423,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.47,37.82,45.17,18.5,10,1,1,0,0,11,2,4,1,996,443330.5,6522.5474,208025.09,0,4978.6626,0,1881.7379 +3942,4827,8543,8542,-9,-9,1,0,58,0,0,0,1,1,-9,1,2,0,6.025485,6.4993296,3,0,-75.385643,0,-9,-9,2021,23,11,0,35,3,11,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,6.3980527,0,45.17,18.5,65.47,37.82,1.666666666666667,1,1,0,1,4,2,4,1,996,443330.5,6522.5474,208025.09,0,4978.6626,0,1881.7379 +3943,4828,8544,8545,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.8431816,7.7828941,60,3,105.15642,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.34144771,7.6044312,54.78,34.44,58.15,52.91,6.666666666666667,1,1,0,0,4,2,3,1,856.5,1032678.6,574740.63,141718.56,0,0,0,2927.9807 +3943,4828,8545,8544,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.8824897,7.2008767,60,-3,-136.98282,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6990728,7.3128338,58.15,52.91,54.78,34.44,8.333333333333334,1,1,0,0,0,2,3,1,856.5,1032678.6,574740.63,141718.56,0,0,0,2927.9807 +3944,4829,8546,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8948846,8.0210857,0,0,-929.53058,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8169503,8.0617762,55.81,39,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,107,712405.69,362169.41,295536.13,0,13153.212,0,2227.906 +3945,4830,8547,8548,-9,-9,1,1,75,1,1,0,2,2,-9,0,2,0,0,0,48,10,0,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.68,20.81,46,36,8.333333333333334,2,3,0,0,0,8,1,0,353.5,180077.75,9592.0625,0,0,0,0,1444.1912 +3945,4830,8548,8547,-9,-9,1,0,65,1,1,0,3,3,-9,0,2,0,0,0,48,-10,0,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,14.364291,122.58569,126.32145,27,1,1,0,0,0,46,36,61.68,20.81,8.333333333333334,2,3,0,0,0,8,1,0,353.5,180077.75,9592.0625,0,0,0,0,1444.1912 +3945,4831,8549,8551,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,0,0,0,1,0,13.740168,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,46.86,55.66,6.666666666666667,2,3,0,0,0,8,4,0,795.33331,1787508,62016.027,709403.5,0,0,0,2309.2146 +3945,4831,8550,-9,8549,8551,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.2637,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,8,4,0,795.33331,1787508,62016.027,709403.5,0,0,0,2309.2146 +3945,4831,8551,8549,8548,8547,1,1,27,1,1,0,1,1,-9,0,3,8.6593065,8.8387823,0,1,0,-16.250862,0,3,2,2021,11,0,35,36,1,0,0,19.453438,19.453438,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,46.86,55.66,50.28,51.35,3.333333333333333,2,3,0,0,3,8,4,0,795.33331,1787508,62016.027,709403.5,0,0,0,2309.2146 +3946,4832,8552,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.5311785,8.4827251,0,0,0,-1099.4174,-9,2,2,2021,12,0,82,0,1,0,0,8.3067551,8.3067551,0,0,0,0,0,0,0,0,0,0,0,3.4285281,0,47.67,58.09,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,1929,101169.3,155221.66,327671.75,110896.78,-246.39624,6284.6855,1932.2668 +3947,4833,8553,8554,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,37,10,0,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.3054609,0,0,1,1,0,0,0,36.27,21.53,39.15,41.42,5,1,1,0,0,0,9,1,0,692.5,-69879.078,24785.908,0,0,0,0,2308.4055 +3947,4833,8554,8553,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,37,-10,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,36.27,21.53,5,1,1,1,1,0,9,1,0,692.5,-69879.078,24785.908,0,0,0,0,2308.4055 +3947,4834,8555,-9,8554,8553,1,0,26,0,0,0,1,1,-9,1,1,0,0,0,0,0,-875.51813,0,2,3,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,34.97,-9,-9,5,1,1,0,1,1,9,2,0,381,-135622.63,0,0,0,0,0,1092.7717 +3947,4835,8556,-9,8554,8553,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-971.34631,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,5,1,1,0,1,0,9,1,0,1479,-72405.82,0,0,0,0,0,0 +3948,4836,8557,8558,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.8166103,8.7500973,0,12,7,-22.250992,0,2,2,2021,11,0,37,38,1,0,0,30.449179,30.449179,.05,.05,0,0,0,0,0,2,0,0,0,5.0690532,0,50.57,52.35,52,54.51,8.333333333333334,1,1,0,0,8,10,5,1,349,732927.38,544006.06,271553,143034.66,0,0,5546.6157 +3948,4836,8558,8557,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.5316248,9.6548786,0,12,-7,33.410519,0,2,1,2021,7,0,42,38,1,0,0,30.864847,30.864847,.05,.05,0,0,0,0,0,0,0,0,0,4.5729647,0,52,54.51,50.57,52.35,8.333333333333334,1,1,0,0,8,10,5,1,349,732927.38,544006.06,271553,143034.66,0,0,5546.6157 +3949,4837,8559,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,7.925035,7.8944063,0,0,0,-1083.907,0,2,2,2021,5,0,47,39,1,0,0,5.9887576,5.9887576,0,0,0,0,0,0,0,0,0,0,0,0,0,47.83,63.15,-9,-9,8.333333333333334,1,1,0,0,13,5,3,0,491,651789.38,530662.31,182889.59,0,0,0,790.07971 +3950,4838,8560,8561,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.5877275,6.5545902,4,-3,-25.06352,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6699758,57.16,56.15,61.69,34.95,10,1,1,0,0,0,4,2,1,1384,497715.34,216178.81,383100.94,0,0,0,2148.5708 +3950,4838,8561,8560,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.9589624,6.5590215,4,3,162.83226,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,7.6809254,0,0,1,1,0,0,6.7960691,61.69,34.95,57.16,56.15,10,1,1,0,0,0,4,2,1,1384,497715.34,216178.81,383100.94,0,0,0,2148.5708 +3951,4839,8562,8563,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.0413256,6.7355814,0,15,-4,44.616032,0,-9,-9,2021,6,0,20,50,1,0,0,5.8783102,5.8783102,0,0,0,0,0,0,0,0,0,0,0,7.2478065,0,60.12,54.8,49.62,55.59,8.333333333333334,1,1,0,0,11,8,3,1,517.5,921336.5,248316.59,738538.13,0,0,0,1863.6517 +3951,4839,8563,8562,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.2378855,7.2503657,0,10,4,-35.072651,0,-9,-9,2021,2,1,20,50,1,1,0,6.1339378,6.1339378,0,0,0,0,0,0,0,0,0,0,0,0,0,49.62,55.59,60.12,54.8,8.333333333333334,1,1,0,0,9,8,3,1,517.5,921336.5,248316.59,738538.13,0,0,0,1863.6517 +3952,4840,8564,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,6.041316,5.8534145,0,0,-1079.4373,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.37125909,5.7270417,46.39,60.99,-9,-9,10,1,1,0,0,0,11,2,1,1197,240168.7,47228.871,135416.3,0,0,0,214.70728 +3953,4841,8565,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-898.31799,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.54,17.76,-9,-9,5,1,1,0,1,0,6,1,0,2926,103280.59,0,0,0,-1742.9382,0,786.11194 +3953,4842,8566,-9,8565,-9,1,1,33,0,0,0,3,3,-9,0,4,0,0,0,0,0,-994.73901,0,3,-9,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,28.54,65.51000000000001,-9,-9,8.333333333333334,1,1,1,1,0,6,1,0,135,0,0,0,0,0,0,309.02817 +3954,4843,8567,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,6.7980566,6.5975685,0,16,7,4.194726,0,1,1,2021,3,0,30,40,1,0,0,3.3695028,3.3695028,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.12,51.32,8.333333333333334,1,1,0,0,9,11,4,1,2731,-93832.789,15349.523,0,0,0,0,826.97168 +3954,4844,8568,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.4620295,8.2260294,0,15,-7,-115.08647,0,3,2,2021,14,4,37,37,1,4,0,12.81939,12.81939,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.12,51.32,54.79,55.86,3.333333333333333,1,1,0,0,9,11,4,1,163,275198.41,323510.84,83926.578,32386.395,0,0,1791.6798 +3955,4845,8569,8570,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8056331,7.7840929,5,5,106.08274,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.234529,0,0,1,1,0,6.2465248,7.9386201,53.25,42.89,47.2,58.1,8.333333333333334,1,1,0,0,0,4,3,1,991,536709.5,53260.852,125797.15,0,0,0,2532.1367 +3955,4845,8570,8569,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.2816033,5.76893,5,-5,-10.726709,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7620482,5.2584743,47.2,58.1,53.25,42.89,8.333333333333334,1,1,0,0,8,4,3,1,991,536709.5,53260.852,125797.15,0,0,0,2532.1367 +3956,4846,8571,8572,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.9381919,8.0452528,0,5,-7,99.169373,0,3,3,2021,11,0,40,40,1,2,0,6.8204126,6.8204126,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,48,59.19,51.29,7,1,1,0,0,1,12,5,1,748.5,-34077.539,27481.713,94990.828,49568.238,0,2900.3965,3305.6851 +3956,4846,8572,8571,-9,-9,1,1,64,0,0,0,3,3,-9,0,5,8.4158278,8.9698372,7.0347109,47,7,8.6966829,0,3,3,2021,6,0,20,15,1,0,0,31.724974,31.724974,.05,.05,0,0,0,0,0,0,0,0,0,3.6173167,7.0365753,59.19,51.29,49,48,10,1,1,0,0,11,12,5,1,748.5,-34077.539,27481.713,94990.828,49568.238,0,2900.3965,3305.6851 +3957,4847,8573,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1367035,8.3137083,0,0,-997.02594,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7048354,8.1208868,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,984,476847.19,220890.72,276983.28,0,0,0,2313.9551 +3958,4848,8574,8576,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9169216,8.9291668,0,11,-8,4.3940473,0,3,3,2021,13,2,42,42,1,2,0,14.55218,14.55218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.05,58.8,47.79,53.79,5,1,1,0,0,13,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3958,4848,8575,-9,8574,8576,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.72028,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3958,4848,8576,8574,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.6144733,8.5504494,0,9,8,41.642727,0,2,1,2021,10,0,37,37,1,0,0,17.975878,17.975878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.79,53.79,42.05,58.8,8.333333333333334,1,1,0,0,14,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3958,4848,8577,-9,8574,8576,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.9312,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,404,566114.13,303602.31,300877,165205.38,10378.472,0,4577.4541 +3959,4849,8578,8579,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,55,-4,57.217365,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.02,46.94,54,46,8.333333333333334,1,1,0,0,0,4,2,1,941,1285811,135563.91,189670.47,0,0,0,1542.2104 +3959,4849,8579,8578,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.0814953,7.2069764,55,4,-44.547638,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2016749,54,46,53.02,46.94,8,1,1,0,0,0,4,2,1,941,1285811,135563.91,189670.47,0,0,0,1542.2104 +3960,4850,8580,8581,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,6.8788438,6.9157753,0,16,0,68.341972,0,-9,2,2021,8,0,40,-9,1,0,0,2.9703104,2.9703104,0,0,0,0,0,0,0,0,0,0,0,6.3585505,0,49.35,59.64,41.06,40.47,1.666666666666667,1,1,0,0,7,1,4,1,809.5,1327458.8,1150004.3,161212.34,0,1961.0325,0,3108.7344 +3960,4850,8581,8580,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.7862082,8.7156134,0,29,0,-2.7427599,0,-9,2,2021,9,0,35,45,1,0,0,21.54203,21.54203,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,40.47,49.35,59.64,3.333333333333333,1,1,0,0,9,1,4,1,809.5,1327458.8,1150004.3,161212.34,0,1961.0325,0,3108.7344 +3960,4851,8582,-9,8580,8581,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1143.1292,1,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,2,1,1,1,1149,0,0,0,0,0,0,0 +3961,4852,8583,8586,-9,-9,1,0,37,0,2,0,2,2,0,0,4,0,0,0,16,-2,-24.302912,-9,2,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.34,62.18,50.62,53.79,6.666666666666667,3,4,0,0,2,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3961,4852,8584,-9,8583,8586,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.469,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3961,4852,8585,-9,8583,8586,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.3488,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3961,4852,8586,8583,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.4849558,8.4715824,0,14,2,-126.57652,0,-9,-9,2021,7,0,40,52,1,0,0,17.076797,17.076797,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.62,53.79,29.34,62.18,6.666666666666667,3,4,0,0,8,7,3,0,518.25,-56238.133,18780.26,282517.06,221171.69,0,0,2454.396 +3962,4853,8587,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,7.8876472,7.804781,0,0,0,-993.83154,0,-9,3,2021,22,8,38,38,1,8,0,7.4349012,7.4349012,0,0,0,0,0,0,0,0,0,0,0,0,0,22.42,68.11,-9,-9,3.333333333333333,1,1,0,0,1,7,3,0,1162,-194212.44,0,0,0,0,0,1323.6669 +3962,4854,8588,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.6899557,8.4720097,0,0,0,-1110.4167,-9,-9,-9,2021,7,1,46,0,1,1,0,16.44965,16.44965,0,0,0,0,0,0,0,0,0,0,0,0,0,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,9,7,5,0,1188,23077.945,0,0,0,0,0,2801.6106 +3963,4855,8589,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.2647748,7.571198,0,0,-899.49969,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2943594,7.2239513,57.32,47.78,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,177,609235.63,553513.06,25018.111,0,0,0,941.29254 +3964,4856,8590,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.1003623,6.3550897,0,0,-1034.4502,0,3,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,4.8805027,9.6326122,51.246666,0,1,1,0,0,5.9579148,63.07,10.78,-9,-9,10,1,1,0,0,0,10,2,1,388,617838.38,179144.48,481857.28,0,0,0,1824.2179 +3965,4857,8591,-9,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,7.7049651,7.6737103,0,0,0,-975.11462,0,2,2,2021,13,2,30,30,1,2,0,8.6835079,8.6835079,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,5,1,1,0,0,12,10,3,1,109,469403.59,114835.95,197899.89,0,0,0,1828.6223 +3966,4858,8592,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,7.7192945,8.82306,7.5158544,0,0,-927.6264,0,3,3,2021,8,0,23,26,1,0,0,11.843688,11.843688,0,0,0,0,0,0,0,0,1,1,0,2.8272698,7.78056,56.49,29.9,-9,-9,6.666666666666667,4,5,0,0,9,6,5,1,171,102033.24,56667.57,116994.98,0,0,0,2168.1199 +3967,4859,8593,8595,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.6535025,8.4006491,0,7,-2,-3.9289544,0,2,2,2021,6,0,30,30,1,0,0,23.75086,23.75086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,9,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3967,4859,8594,-9,8593,8595,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.1096,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3967,4859,8595,8593,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,8.8132763,8.551301,0,7,2,5.2853336,0,-9,-9,2021,11,0,37,37,1,0,0,17.612867,17.612867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.79,55.86,6.666666666666667,1,1,0,0,11,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3967,4859,8596,-9,8593,8595,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-939.00366,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,774,471980.38,90683.406,433779.38,240251.63,444.17975,2646.5259,4181.0039 +3968,4860,8597,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.7145214,8.6884851,0,0,0,-1007.7092,0,2,2,2021,13,1,45,35,1,1,0,17.95812,17.95812,0,0,0,0,0,0,0,0,1,1,0,0,0,47.81,48.01,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,1975,690442,458045.25,149258.27,0,0,0,2401.3469 +3969,4861,8598,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1100.2289,0,1,1,2021,12,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8181806,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,11,5,1,1,823,303106.78,0,214899.22,0,0,0,598.67621 +3970,4862,8599,-9,8601,8600,1,0,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-800.34088,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,448,1037398.6,956955.94,164764.22,0,0,18246.705,3671.8679 +3970,4862,8600,8601,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.8481979,8.8617163,0,22,-3,-5.9454012,0,2,3,2021,9,0,43,42,1,0,0,16.282759,16.282759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,448,1037398.6,956955.94,164764.22,0,0,18246.705,3671.8679 +3970,4862,8601,8600,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.7580581,7.5702453,23,3,45.865177,0,2,3,2021,8,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.7540231,8.007081,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,12,2,5,1,448,1037398.6,956955.94,164764.22,0,0,18246.705,3671.8679 +3970,4863,8602,-9,8601,8600,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1174.7595,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.13,62.93,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,465,0,0,0,0,0,0,0 +3971,4864,8603,-9,8604,8608,1,1,16,0,4,1,3,0,-9,0,4,0,0,0,0,0,-948.05829,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,8.333333333333334,1,1,0,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8604,8608,-9,-9,1,0,44,0,4,0,2,2,-9,0,3,0,0,0,10,-2,95.351501,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,16.16,64.75,5,1,1,0,1,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8605,-9,8604,8608,1,0,14,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1100.8542,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8606,-9,8604,8608,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-779.435,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8607,-9,8604,8608,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.8258,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3971,4864,8608,8604,-9,-9,1,1,46,0,4,0,1,1,-9,0,3,8.5875807,8.4161701,0,26,2,58.157288,0,2,2,2021,31,12,40,46,1,12,0,15.717351,15.717351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.16,64.75,46,50,1.666666666666667,1,1,0,0,6,1,3,0,1004.6667,297415.75,45197.945,233847.63,177711.25,0,0,2611.8311 +3972,4865,8609,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9854755,8.0672102,0,0,0,-1002.7877,-9,-9,-9,2021,9,1,55,0,1,1,0,7.4365392,7.4365392,.05,.05,0,0,0,0,0,42,0,0,0,0,0,59.07,40.22,-9,-9,5,1,1,0,1,12,9,4,0,1534,-50690.758,160999.89,0,0,0,1549.0591,836.36945 +3972,4866,8610,-9,8609,-9,1,0,25,0,0,0,1,1,-9,0,2,7.862319,8.0073891,0,0,0,-1010.3509,0,2,-9,2021,29,11,38,35,1,11,1,7.1711349,7.1711349,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.9,40.03,-9,-9,1.666666666666667,1,1,0,1,8,9,4,0,438,-121315.81,-12122.527,0,0,3448.1609,0,891.4826 +3973,4867,8611,8613,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.6994276,8.5121059,0,5,2,-62.861027,0,-9,-9,2021,10,1,40,40,1,1,0,13.55319,13.55319,0,0,0,0,0,0,0,0,1,1,0,1.9768971,0,41.06,62.04,45,54,8.333333333333334,1,1,0,0,6,5,5,1,714.33331,616887.5,206661.8,0,0,51978.398,0,3446.5159 +3973,4867,8612,-9,8611,8613,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.6864,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,1,714.33331,616887.5,206661.8,0,0,51978.398,0,3446.5159 +3973,4867,8613,8611,-9,-9,1,1,27,1,1,0,1,1,-9,0,3,8.4978046,8.3821878,0,5,-2,-48.365746,0,2,2,2021,12,0,50,16,1,2,0,9.6848946,9.6848946,.05,.05,0,0,0,0,0,0,1,1,0,2.8884263,0,45,54,41.06,62.04,7,1,1,0,0,10,5,5,1,714.33331,616887.5,206661.8,0,0,51978.398,0,3446.5159 +3974,4868,8614,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,6.2877493,5.8903828,0,0,-966.12518,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9419127,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,278,268581.66,84955.719,182965.39,0,0,0,1371.5039 +3975,4869,8615,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.2132111,8.2747793,0,0,0,-1003.2047,0,2,1,2021,7,0,35,30,1,0,0,10.427279,10.427279,.05,.05,0,0,0,0,0,7,0,0,0,0,0,56.5,37.6,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,2097,230489.64,43383.684,114673.73,32856.859,-714.37634,0,1208.3495 +3976,4870,8616,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,9.6355734,9.6456575,0,0,0,-1143.2813,0,2,2,2021,11,1,50,77,1,1,0,30.61961,30.61961,.05,.05,0,0,0,0,0,0,0,0,0,3.5253055,0,54.13,48.04,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,226,35758.348,138612.92,0,0,0,0,5029.4609 +3977,4871,8617,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.7654,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,29.62,48.33,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,1682,-35602.551,0,0,0,0,0,1976.7804 +3978,4872,8618,8619,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,0,0,50,2,-35.023766,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.80795771,0,60.02,56.42,51,47,10,1,1,0,0,1,11,3,1,1100,210542.31,-15150.263,144060.17,0,0,0,2177.7754 +3978,4872,8619,8618,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.7828913,8.3786602,7.248312,50,-2,-11.158029,-9,3,3,2021,11,0,39,0,1,1,0,5.9961467,5.9961467,0,0,0,0,0,0,0,0,1,1,0,3.707484,6.8827405,51,47,60.02,56.42,7,1,1,0,0,1,11,3,1,1100,210542.31,-15150.263,144060.17,0,0,0,2177.7754 +3979,4873,8620,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.4304214,6.8568349,0,0,-1023.1854,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.8362116,0,23.566216,0,1,1,0,0,6.5933089,65.47,37.82,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,434,333141.31,-31443.43,185883,0,0,0,1121.0798 +3980,4874,8621,8622,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,9.0635662,8.8306141,6,6,-9.0836105,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6279225,8.885911,62.39,56.71,60.12,54.8,8.333333333333334,1,1,0,0,3,13,5,1,419,1586391.5,1156784.9,387427.75,0,0,0,5510.5889 +3980,4874,8622,8621,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,6,-6,53.500027,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0629213,0,60.12,54.8,62.39,56.71,0,1,1,0,0,0,13,5,1,419,1586391.5,1156784.9,387427.75,0,0,0,5510.5889 +3981,4875,8623,8625,-9,-9,1,1,47,0,1,0,1,1,-9,0,1,9.1219263,9.4273281,0,16,8,-53.565708,0,3,3,2021,8,0,37,41,1,0,0,28.149971,28.149971,.05,.05,0,0,0,0,.75012201,0,0,0,0,0,0,53,46.42,63.63,51.86,8.333333333333334,1,1,0,0,13,9,5,1,937,507951.31,204312.94,324400.19,146311.86,14689.795,1980.8912,4362.2178 +3981,4875,8624,-9,8625,8623,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-963.65875,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,4,2,-9,0,0,9,5,1,937,507951.31,204312.94,324400.19,146311.86,14689.795,1980.8912,4362.2178 +3981,4875,8625,8623,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,7.5472584,7.5067945,0,17,-8,-49.82029,0,3,3,2021,5,0,32,32,1,0,0,7.4424353,7.4424353,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.63,51.86,53,46.42,10,2,3,0,0,11,9,5,1,937,507951.31,204312.94,324400.19,146311.86,14689.795,1980.8912,4362.2178 +3982,4876,8626,8629,-9,-9,1,1,38,0,2,0,2,2,-9,0,5,8.7431593,8.2979088,0,17,1,28.7188,0,3,2,2021,5,2,63,47,1,2,0,9.2803812,9.2803812,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.4,55.66,48.55,45.7,10,2,3,0,0,13,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3982,4876,8627,-9,8629,8626,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0873,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3982,4876,8628,-9,8629,8626,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.0364,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3982,4876,8629,8626,-9,-9,1,0,37,0,2,0,1,1,-9,0,2,9.0511227,8.6761742,0,17,-1,43.995861,0,3,2,2021,13,1,40,55,1,1,0,19.999701,19.999701,.05,.05,0,0,0,0,0,0,1,1,0,3.7201376,0,48.55,45.7,40.4,55.66,1.666666666666667,2,3,0,0,13,6,5,1,411.75,186190.88,153749.59,186456.31,142525.17,8348.8184,814.77954,4423.9634 +3983,4877,8630,8631,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,7,-8,-19.975525,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,39.26,57.46,5,1,1,1,0,4,2,2,1,328,88192.039,0,99333.844,0,0,0,1590.0269 +3983,4877,8631,8630,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.1092472,3.9443479,7,8,161.99033,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0654335,39.26,57.46,51.81,57.22,6.666666666666667,1,1,0,0,1,2,2,1,328,88192.039,0,99333.844,0,0,0,1590.0269 +3984,4878,8632,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.2113256,8.7586107,0,0,0,-1011.0168,0,2,3,2021,10,0,37,35,1,0,0,11.272933,11.272933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.58,63.43,-9,-9,10,1,1,0,0,11,4,4,1,561,246067.81,78498.805,129079.02,51747.84,12288.488,3864.4734,1386.6199 +3985,4879,8633,8636,-9,-9,1,0,31,0,4,0,2,2,-9,0,4,7.4215984,7.0166798,0,9,1,-66.624046,0,2,2,2021,6,0,1,0,1,0,0,140.9248,140.9248,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,53,45.74,8.333333333333334,1,1,0,0,7,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8634,-9,8633,8636,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.59375,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8635,-9,8633,8636,1,0,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.7896,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8636,8633,-9,-9,1,1,30,0,4,0,2,2,-9,0,3,8.1022625,8.2126102,0,9,-1,46.397831,0,2,2,2021,12,1,60,85,1,1,0,8.0015297,8.0015297,.05,.05,0,0,0,0,0,0,1,1,0,2.4549587,0,53,45.74,54.74,57.22,6.666666666666667,1,1,0,0,11,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8637,-9,8633,8636,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1007.1984,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3985,4879,8638,-9,8633,8636,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.2317,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1002.1667,176882.03,41586.641,215175.41,120702.13,0,0,2647.155 +3986,4880,8639,-9,8641,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.3006,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,0,1260,51114.145,-23.656454,0,0,0,-62.877422,1395.9927 +3986,4880,8640,-9,8641,-9,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1004.6478,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,4,2,-9,0,0,5,2,0,1260,51114.145,-23.656454,0,0,0,-62.877422,1395.9927 +3986,4880,8641,-9,-9,-9,1,0,51,0,2,0,2,2,-9,1,1,0,0,0,0,0,-851.77667,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,43.34,48.04,-9,-9,8.333333333333334,2,3,1,0,0,5,2,0,1260,51114.145,-23.656454,0,0,0,-62.877422,1395.9927 +3987,4881,8642,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1075.3585,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,13.886162,30.43051,136.18462,0,1,1,0,0,0,63.72,16.75,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,513,263504.81,0,115281.8,0,0,0,1236.5428 +3988,4882,8643,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6351614,8.86689,0,0,0,-1024.8438,0,2,2,2021,5,0,37,37,1,0,0,18.162287,18.162287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,501,178229.75,-31385.148,181176.97,124592.53,6142.981,0,2135.2742 +3989,4883,8644,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1496754,8.1332197,0,0,-1004.213,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.4884186,8.376997,53,47,-9,-9,8,1,1,0,0,7,4,4,1,2152,931759.31,455130.38,159144.75,0,0,0,1682.4852 +3990,4884,8645,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,3.8748438,3.9386232,0,0,-1093.2528,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9657581,3.7262876,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,223,33432.105,48253.617,17092.33,0,0,12705.617,846.65045 +3991,4885,8646,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.7622671,8.0287619,0,0,0,-969.06293,0,2,2,2021,8,0,3,0,1,0,0,86.51812,86.51812,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.05,54.52,-9,-9,8.333333333333334,4,2,0,0,7,7,3,0,75,520860.81,67567.867,320849.66,71976.109,0,0,910.50116 +3991,4886,8647,-9,8646,-9,1,0,41,0,0,0,1,1,-9,0,5,4.865726,4.6268616,0,0,0,-1058.4863,0,2,-9,2021,6,0,16,-9,1,0,1,.80258989,.80258989,0,0,0,0,0,0,0,0,1,0,1,0,0,65.12,43.07,-9,-9,5,3,4,0,0,7,7,2,0,355,765304.69,152136.66,436967.59,0,0,0,-235.18745 +3992,4887,8648,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3249931,8.4880991,0,0,0,-1012.0192,0,2,2,2021,13,1,40,42,1,1,0,13.707267,13.707267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.38,56.21,-9,-9,1.666666666666667,1,1,0,0,10,1,4,1,416,29480.945,208890.48,61388.828,54150.832,1520.1229,0,910.82874 +3993,4888,8649,-9,8650,8652,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1100.6226,-9,3,2,2021,20,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.42,44.54,-9,-9,3.333333333333333,2,3,0,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4888,8650,8652,-9,-9,1,0,48,0,2,0,3,3,-9,1,2,0,0,0,28,-3,0,0,3,3,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.56,29.38,42.93,36.83,0,2,3,0,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4888,8651,-9,8650,8652,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-802.81104,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4888,8652,8650,-9,-9,1,1,51,0,2,0,2,2,-9,1,4,0,0,0,28,3,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.93,36.83,44.56,29.38,1.666666666666667,2,3,1,0,0,1,1,1,414.75,91107.234,3737.1655,121799.48,97774.852,0,0,2969.0342 +3993,4889,8653,-9,8650,8652,1,0,21,0,2,0,2,2,-9,0,4,7.1457644,6.8151431,0,0,0,-954.01599,0,3,2,2021,4,0,15,43,1,0,1,6.6638794,6.6638794,0,0,0,0,0,0,0,7,1,1,0,0,0,47.93,60.55,-9,-9,10,2,3,0,1,5,1,2,1,425,12904.369,0,0,0,-970.61108,0,653.93011 +3994,4890,8654,8655,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,7.3046603,7.847178,6.789557,10,18,-86.694702,0,3,3,2021,12,0,25,23,1,0,0,7.5716639,7.5716639,0,0,0,0,0,0,0,0,1,1,0,7.560986,6.6076436,40.49,39.72,56.94,49.53,6.666666666666667,1,1,0,0,12,7,4,0,433,3019867,589778.25,2318615.5,91706.828,0,0,3318.5703 +3994,4890,8655,8654,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.957118,7.6564789,0,10,-18,-61.97567,0,3,3,2021,7,0,37,38,1,0,0,8.3828764,8.3828764,0,0,0,0,0,0,0,0,1,1,0,.73240477,0,56.94,49.53,40.49,39.72,8.333333333333334,1,1,0,0,12,7,4,0,433,3019867,589778.25,2318615.5,91706.828,0,0,3318.5703 +3995,4891,8656,-9,8657,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1002,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,1,0,697.33331,12694.183,68466.203,0,0,0,0,1234.6935 +3995,4891,8657,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,0,0,-965.8963,0,3,2,2021,4,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,1,0,8,9,1,0,697.33331,12694.183,68466.203,0,0,0,0,1234.6935 +3995,4891,8658,-9,8657,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.705,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,1,0,697.33331,12694.183,68466.203,0,0,0,0,1234.6935 +3996,4892,8659,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.0885901,7.0012693,0,0,-1003.5459,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1764822,7.1251793,33.33,30.73,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,2879,480634.31,339067.75,121493.44,0,0,0,2215.9231 +3997,4893,8660,-9,8661,8662,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7365,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1290.6666,-14487.607,0,0,0,29611.674,114.27553,2656.0347 +3997,4893,8661,8662,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,20,-12,-42.635151,0,3,1,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2038908,0,44.87,52.2,48.54,46.62,6.666666666666667,2,3,0,0,0,4,2,1,1290.6666,-14487.607,0,0,0,29611.674,114.27553,2656.0347 +3997,4893,8662,8661,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.529851,7.8097491,0,20,12,-66.684784,0,3,2,2021,16,4,40,40,1,4,0,4.5948315,4.5948315,0,0,0,0,0,0,0,14.5,1,1,0,6.6830263,0,48.54,46.62,44.87,52.2,5,2,3,0,0,12,4,2,1,1290.6666,-14487.607,0,0,0,29611.674,114.27553,2656.0347 +3998,4894,8663,8664,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,36,2,4.4963627,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.41,39.7,54.79,55.86,0,1,1,0,0,0,8,2,1,531.5,401935.44,355346.56,153222.22,0,0,0,1293.8816 +3998,4894,8664,8663,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.8701763,7.1874256,38,-2,64.798012,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8165412,54.79,55.86,63.41,39.7,8.333333333333334,1,1,0,0,0,8,2,1,531.5,401935.44,355346.56,153222.22,0,0,0,1293.8816 +3999,4895,8665,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.4163895,7.2801495,0,0,-863.63611,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8280506,7.3364072,55.12,42.1,-9,-9,5,1,1,0,0,0,12,3,1,997,318722.25,104971.22,264324.69,26030.254,0,2682.2632,1730.559 +4000,4896,8666,8667,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,6.4903607,6.2066565,7,11,-78.982002,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2580514,6.4571185,64.47,51.45,54.2,57.49,10,1,1,0,0,7,10,2,1,716,387128.56,112067.67,167014.52,0,0,0,2158.2888 +4000,4896,8667,8666,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.7534208,6.288609,7,-11,107.26868,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6953533,5.6847305,54.2,57.49,64.47,51.45,8.333333333333334,1,1,0,0,0,10,2,1,716,387128.56,112067.67,167014.52,0,0,0,2158.2888 +4001,4897,8668,-9,8671,8670,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-921.48944,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4001,4897,8669,-9,8671,8670,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.4101,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4001,4897,8670,8671,-9,-9,1,1,40,1,2,0,2,2,-9,0,4,8.391469,8.19559,0,8,6,23.24099,-9,-9,-9,2021,12,0,37,0,1,0,0,15.115895,15.115895,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.76,54.51,10,1,1,0,0,9,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4001,4897,8671,8670,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.6274137,8.6418304,0,8,-6,-99.909607,-9,-9,-9,2021,12,0,70,0,1,0,0,7.4430685,7.4430685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,54.79,55.86,10,1,1,0,0,9,6,4,1,503.25,578290.38,339528.5,202992.13,158840.47,0,0,3110.6951 +4002,4898,8672,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-874.39447,0,2,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,40.38,31.72,-9,-9,5,1,1,0,0,0,1,1,0,910,0,0,0,0,0,0,2015.2233 +4003,4899,8673,8674,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,12,-5,-40.527367,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.04,40.62,41.12,43.31,8.333333333333334,1,1,0,0,0,9,2,1,459.5,456629.66,252137.52,216546.94,0,0,0,1103.7246 +4003,4899,8674,8673,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.0433235,5.5230803,12,5,-12.209935,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0039821,41.12,43.31,47.04,40.62,6.666666666666667,1,1,0,0,0,9,2,1,459.5,456629.66,252137.52,216546.94,0,0,0,1103.7246 +4004,4900,8675,8676,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,11,-6,-4.8634973,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,62.49,55.09,8.333333333333334,1,1,0,0,1,13,2,1,632,241067.36,129931.5,198249.91,0,0,0,1860.8894 +4004,4900,8676,8675,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.34304,6.1386466,11,6,173.29185,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2934427,62.49,55.09,53,52,10,1,1,0,0,0,13,2,1,632,241067.36,129931.5,198249.91,0,0,0,1860.8894 +4005,4901,8677,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.3591328,4.1208534,0,0,-918.43909,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.161912,46.96,45.96,-9,-9,5,1,1,0,0,5,12,2,1,909,96187.289,100144.59,0,0,0,0,887.32965 +4006,4902,8678,8679,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.3049345,8.2781935,0,2,0,1.2526597,0,-9,-9,2021,14,2,40,42,1,2,0,12.770371,12.770371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49.02,47.84,6.666666666666667,1,1,0,0,12,7,5,1,1533,365144.94,285317.84,300799.19,142696.45,0,951.42938,3983.8467 +4006,4902,8679,8678,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.5812454,8.9885006,0,2,0,26.410259,0,2,-9,2021,12,1,47,23,1,1,0,13.112491,13.112491,0,0,0,0,0,0,0,0,0,0,0,1.3517423,0,49.02,47.84,48.87,58.55,8.333333333333334,1,1,0,0,13,7,5,1,1533,365144.94,285317.84,300799.19,142696.45,0,951.42938,3983.8467 +4007,4903,8680,-9,8681,8684,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.9794,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8681,8684,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,9.1987619,9.1299438,0,23,-3,74.375275,0,3,2,2021,11,1,38,40,1,1,0,30.216377,30.216377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,44.56,59.1,8.333333333333334,1,1,0,1,10,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8682,-9,8681,8684,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.55951,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8683,-9,8681,8684,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1030.8647,-9,1,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.82,62.33,-9,-9,10,1,1,0,0,0,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4007,4903,8684,8681,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,9.1142387,9.0138311,0,16,3,-5.3752575,0,2,1,2021,1,0,40,45,1,0,0,25.509371,25.509371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.56,59.1,49.04,55.86,6.666666666666667,1,1,0,1,9,2,5,1,719,745767.81,309242.56,378762.41,91388.914,0,0,5047.9341 +4008,4904,8685,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,6.3868833,6.3022137,0,0,0,-1039.3361,0,3,3,2021,6,0,60,51,1,0,0,1.0665941,1.0665941,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,743,0,0,0,0,0,0,506.02692 +4009,4905,8686,8687,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,3.6997788,3.8544979,10,3,-25.939653,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.31499,4.0196114,58.39,20.6,50.88,34.69,6.666666666666667,2,3,0,0,0,8,3,1,747.5,1086902.1,438207,365050.81,0,0,0,4838.5615 +4009,4905,8687,8686,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8774815,7.9579487,41,-3,128.15117,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2918873,7.7226658,50.88,34.69,58.39,20.6,8.333333333333334,2,3,0,0,0,8,3,1,747.5,1086902.1,438207,365050.81,0,0,0,4838.5615 +4010,4906,8688,8689,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.0608168,8.0587263,0,28,0,53.447582,0,2,2,2021,11,0,32,30,1,0,0,7.3112645,7.3112645,0,0,0,0,0,0,0,0,1,1,0,0,0,55.11,47.63,53,54,8.333333333333334,1,1,0,0,8,5,4,1,446,-10113.336,144868.05,0,0,8699.252,0,3854.0466 +4010,4906,8689,8688,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.6623688,8.2854681,0,6,0,78.546158,-9,-9,-9,2021,9,0,40,0,1,1,0,17.729185,17.729185,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,55.11,47.63,8,1,1,0,0,1,5,4,1,446,-10113.336,144868.05,0,0,8699.252,0,3854.0466 +4010,4906,8690,-9,8688,8689,1,1,17,0,1,1,2,0,0,0,2,0,0,0,0,0,-947.51184,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,44.4,-9,-9,8.333333333333334,1,1,0,0,1,5,4,1,446,-10113.336,144868.05,0,0,8699.252,0,3854.0466 +4011,4907,8691,-9,8692,8693,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-926.05579,-9,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.21168678,0,45,59,-9,-9,7,1,1,0,0,0,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4011,4907,8692,8693,-9,-9,1,0,57,0,1,0,3,3,-9,0,4,0,0,0,18,2,60.091141,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,49,49,6.666666666666667,1,1,0,0,5,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4011,4907,8693,8692,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,5.7116976,5.895627,0,18,-2,-55.627411,0,2,-9,2021,11,0,40,40,1,1,0,.7139926,.7139926,0,0,0,0,0,0,0,0,0,0,0,0,0,49,49,52.82,53.97,7,1,1,0,0,1,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4011,4907,8694,-9,8692,8693,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-999.07098,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,0,0,0,4,2,1,780.5,-44812.652,0,0,0,1222.5688,0,75.902 +4012,4908,8695,-9,8696,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.347,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,1,1,835.5,0,0,0,0,0,0,1421.3076 +4012,4908,8696,-9,8697,-9,1,0,36,1,1,0,1,1,-9,0,3,0,0,0,0,0,-943.31311,-9,2,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8274693,0,31.46,57.32,-9,-9,5,1,1,0,0,8,7,1,1,835.5,0,0,0,0,0,0,1421.3076 +4012,4909,8697,-9,-9,-9,1,0,69,1,1,0,2,2,-9,0,3,0,6.1122708,6.5028768,0,0,-1075.8159,-9,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1110415,6.1547813,41.12,44.77,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,966,183756.33,276303.34,0,0,0,0,974.08881 +4013,4910,8698,8699,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,0,0,0,17,1,-41.909527,0,2,1,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,61.23,51.58,6.666666666666667,2,3,1,0,6,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4013,4910,8699,8698,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.1574249,8.874588,0,17,-1,74.843979,0,2,2,2021,4,0,40,35,1,0,0,28.31587,28.31587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.23,51.58,62.49,55.09,10,2,3,0,0,11,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4013,4910,8700,-9,8698,8699,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.9785,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4013,4910,8701,-9,8698,8699,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.2883,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,4,1,568.25,882543.5,315017.88,324980.5,201495.19,15660.766,5555.7383,3458.2109 +4014,4911,8702,-9,8703,8704,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.91022,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8703,8704,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,7.4179296,7.2386003,0,19,0,-24.268946,0,1,2,2021,19,7,26,26,1,7,0,8.2187538,8.2187538,0,0,.05,0,0,0,0,0,0,0,0,2.1949539,0,34.49,56.9,33.2,63.27,3.333333333333333,1,1,0,0,4,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8704,8703,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.9422321,9.7397881,0,21,0,-15.01191,0,2,2,2021,16,4,65,60,1,4,0,32.610603,32.610603,0,0,.05,0,0,0,0,0,0,0,0,4.3807411,0,33.2,63.27,34.49,56.9,1.666666666666667,1,1,0,0,9,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8705,-9,8703,8704,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.83118,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4014,4911,8706,-9,8703,8704,1,1,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-983.04169,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,5,1,1012,1336943.4,346271.47,934217.5,260027.77,0,0,6284.8037 +4015,4912,8707,8708,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.7785349,8.8231707,0,12,2,-197.09991,-9,-9,-9,2021,9,0,30,0,1,0,0,39.141739,39.141739,0,0,0,0,0,0,0,0,0,0,0,6.7439308,0,58.14,47.51,57.09,46.7,8.333333333333334,1,1,0,0,13,11,5,1,1051.5,2107397.5,529004,635684.5,0,0,0,4220.2441 +4015,4912,8708,8707,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,6.9019279,6.7536802,40,-2,67.407745,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.384078,6.5186338,57.09,46.7,58.14,47.51,10,1,1,0,0,3,11,5,1,1051.5,2107397.5,529004,635684.5,0,0,0,4220.2441 +4016,4913,8709,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.3916731,7.4503293,0,0,0,-1023.6696,0,-9,-9,2021,5,0,25,25,1,0,0,8.4098196,8.4098196,0,0,0,0,0,0,0,2,0,0,0,1.8008019,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,271,700116.19,73753.375,263348.5,16566.818,0,0,642.26337 +4017,4914,8710,8711,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,6.3418469,6.4944844,41,-7,65.832863,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1954665,57.06,57.76,64.15000000000001,19.33,10,1,1,0,0,0,7,2,1,652,671305.88,332968.94,126283.75,0,0,0,2262.2729 +4017,4914,8711,8710,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.0058813,5.5900483,41,7,-68.96225,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,10.969374,0,0,1,1,0,5.6660266,5.9826689,64.15000000000001,19.33,57.06,57.76,1.666666666666667,1,1,0,0,0,7,2,1,652,671305.88,332968.94,126283.75,0,0,0,2262.2729 +4018,4915,8712,8713,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,10,2,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.92,44.62,50,47,8.333333333333334,1,1,0,0,0,13,1,1,917.5,532832.25,0,418517.94,0,0,0,1463.1472 +4018,4915,8713,8712,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,0,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,49.92,44.62,7,1,1,0,0,1,13,1,1,917.5,532832.25,0,418517.94,0,0,0,1463.1472 +4019,4916,8714,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,7.1540804,7.487977,0,0,-1117.7285,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,9.0137472,0,0,1,1,0,6.8548703,7.2067142,50.72,46.82,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,551,482923.28,84140.328,231808.05,0,0,0,2044.8156 +4020,4917,8715,8716,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.0202675,7.8697462,0,6,0,32.870049,0,2,2,2021,9,0,38,37,1,0,0,7.8920522,7.8920522,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.18,55.31,5,1,1,0,0,8,2,4,0,1540,-4297.4297,-11998.447,144474.69,95588.234,9403.1992,0,2564.7253 +4020,4917,8716,8715,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.0950108,8.0958681,0,6,0,-26.31131,0,-9,-9,2021,12,0,45,32,1,0,0,7.6254897,7.6254897,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.18,55.31,52,54.51,3.333333333333333,1,1,0,0,6,2,4,0,1540,-4297.4297,-11998.447,144474.69,95588.234,9403.1992,0,2564.7253 +4021,4918,8717,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.0165601,6.0545487,0,0,-1088.6013,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,12.381241,0,0,1,1,0,0,6.2855353,52.08,51.67,-9,-9,10,1,1,0,0,0,12,2,1,166,357694.44,-110514.11,119696.46,0,0,0,1150.0406 +4022,4919,8718,-9,8720,8719,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-906.77844,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,1124.3334,375131.56,196105.33,156938.06,0,0,214.41798,3489.3081 +4022,4919,8719,8720,-9,-9,1,1,54,0,1,0,3,3,-9,0,4,8.0839949,8.1848764,0,29,2,109.5777,0,3,3,2021,10,0,43,42,1,0,0,8.2591248,8.2591248,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,41.29,56.37,6.666666666666667,1,1,0,0,10,13,4,1,1124.3334,375131.56,196105.33,156938.06,0,0,214.41798,3489.3081 +4022,4919,8720,8719,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,7.7837315,8.0393648,0,29,-2,-41.286385,0,3,3,2021,15,3,42,48,1,3,0,5.3284469,5.3284469,.05,.05,0,0,0,0,0,42,1,1,0,0,0,41.29,56.37,57.16,56.15,6.666666666666667,1,1,0,0,10,13,4,1,1124.3334,375131.56,196105.33,156938.06,0,0,214.41798,3489.3081 +4022,4920,8721,-9,8720,8719,1,1,25,0,1,0,2,2,-9,1,3,8.3717327,8.271884,0,0,0,-881.69043,0,2,3,2021,6,0,40,36,1,0,1,9.0887527,9.0887527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,1.666666666666667,1,1,0,0,10,13,4,1,1280,61343.527,33775.875,0,0,0,0,1578.4445 +4022,4921,8722,-9,8720,8719,1,1,23,0,1,0,2,2,-9,0,4,7.941834,7.9478006,0,0,0,-999.08405,0,2,3,2021,5,0,46,55,1,0,1,6.2753367,6.2753367,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,737,64524.762,0,0,0,0,0,438.69046 +4022,4922,8723,-9,8720,8719,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1042.3943,-9,2,3,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.76,55.68,-9,-9,3.333333333333333,1,1,0,0,3,13,1,1,312,18328.434,0,0,0,0,1856.8657,275.07697 +4023,4923,8724,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1014.4155,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,6,1,0,785,33503,0,0,0,-2386.9487,0,1121.4127 +4024,4924,8725,8726,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0273123,7.7941227,0,24,6,-87.174675,0,2,2,2021,13,1,28,20,1,1,0,15.872417,15.872417,0,0,0,0,0,0,0,0,0,0,0,0,0,48.79,51.9,51.53,57.01,8.333333333333334,3,4,0,0,11,8,5,0,495,2875446.3,1650819.5,1216377.9,0,0,0,3233.6177 +4024,4924,8726,8725,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3171329,8.4493694,0,23,-6,55.15229,0,3,2,2021,7,1,38,38,1,1,0,12.615767,12.615767,0,0,0,0,0,0,0,0,0,0,0,0,0,51.53,57.01,48.79,51.9,10,3,4,0,0,11,8,5,0,495,2875446.3,1650819.5,1216377.9,0,0,0,3233.6177 +4025,4925,8727,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,5.5187135,5.8237085,3.1088862,0,0,-998.16479,0,2,2,2021,18,4,18,16,1,4,0,1.7387232,1.7387232,0,0,0,0,0,0,0,0,1,1,0,3.6663358,0,43.02,57.64,-9,-9,8.333333333333334,1,1,0,0,5,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4025,4925,8728,-9,8727,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1000.3878,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,50.48,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4025,4925,8729,-9,8727,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.1526,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4025,4925,8730,-9,8727,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-834.50641,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,571,-94055.945,0,0,0,0,0,1432.3784 +4026,4926,8731,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1016.1584,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,2,3,0,0,0,8,1,0,1261,-36401.668,0,0,0,0,0,1589.0254 +4026,4927,8732,-9,8731,-9,1,0,21,0,0,1,2,0,0,1,5,0,0,0,0,0,-950.37079,-9,3,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,43.44,61.22,-9,-9,6.666666666666667,2,3,0,0,3,8,1,0,1070,37456.023,0,0,0,0,0,209.12105 +4027,4928,8733,8734,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.8976259,8.2905073,35,6,-62.813927,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.6538076,8.0441656,57.16,56.15,63.48,51.85,8.333333333333334,1,1,0,0,1,9,3,1,2485,1026785.1,734067,287392.44,0,0,0,1187.7439 +4027,4928,8734,8733,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,35,-6,60.05056,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.2348275,0,63.48,51.85,57.16,56.15,10,1,1,0,0,0,9,3,1,2485,1026785.1,734067,287392.44,0,0,0,1187.7439 +4028,4929,8735,8736,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.7710681,8.0340614,0,7,-8,49.530285,0,-9,-9,2021,9,0,46,50,1,0,0,7.4713397,7.4713397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,53.51,60.74,6.666666666666667,1,1,0,0,8,6,4,0,733.5,87629.375,-16638.02,0,0,0,0,2018.8242 +4028,4929,8736,8735,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.8135972,7.5233335,0,7,8,20.003366,0,2,2,2021,12,3,40,47,1,3,0,5.7966781,5.7966781,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,44.19,58.01,10,1,1,0,0,8,6,4,0,733.5,87629.375,-16638.02,0,0,0,0,2018.8242 +4029,4930,8737,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6322861,9.0438185,7.7045135,0,0,-999.64886,0,2,2,2021,8,0,55,53,1,0,0,17.293833,17.293833,.05,.05,0,0,0,0,0,0,1,1,0,8.4888783,0,51.38,54.63,-9,-9,6.666666666666667,4,5,0,0,10,2,5,1,663,1889147.3,1217677.8,385942,0,7598.6519,0,4905.728 +4029,4931,8738,-9,8737,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-889.66174,-9,1,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,1,739,-48870.496,0,0,0,0,0,1.7042428 +4030,4932,8739,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,6.6685882,6.5045662,0,0,0,-920.85028,0,2,2,2021,33,12,8,9,1,12,0,10.648999,10.648999,0,0,0,0,0,0,0,7,1,1,0,0,0,32.98,34.86,-9,-9,0,1,1,0,0,12,1,2,1,523,-129899.23,0,0,0,0,0,539.41736 +4031,4933,8740,8741,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,6,4,-128.82715,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,53.28,44.34,7,3,4,0,0,0,8,2,1,483.5,865531.38,325962.63,380640.03,0,0,0,2425.2458 +4031,4933,8741,8740,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.3445454,7.1116862,35,-4,-76.017212,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0456328,7.6385002,53.28,44.34,53,47,8.333333333333334,3,4,0,0,4,8,2,1,483.5,865531.38,325962.63,380640.03,0,0,0,2425.2458 +4032,4934,8742,8743,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.795085,5.8499169,51,0,15.011689,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4308228,5.7088442,44.8,39.42,59.31,49.81,1.666666666666667,1,1,0,0,3,8,2,1,278.5,444725.88,125275.85,198512.88,0,0,1092.3663,1902.4611 +4032,4934,8743,8742,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8985152,6.7569466,51,0,75.706757,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2325759,59.31,49.81,44.8,39.42,6.666666666666667,1,1,0,0,7,8,2,1,278.5,444725.88,125275.85,198512.88,0,0,1092.3663,1902.4611 +4033,4935,8744,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,7.2472453,6.8477368,0,0,-1165.9188,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7127628,36.37,40.24,-9,-9,5,1,1,0,0,7,1,2,1,1940,291754.22,322228.25,64266.883,0,0,0,1253.9269 +4034,4936,8745,8746,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,53,0,-140.52628,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,36.72,31.97,61.01,15.83,6.666666666666667,1,1,0,0,0,2,2,1,1272,111250.22,0,0,0,0,0,1733.4147 +4034,4936,8746,8745,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,4.949347,4.9826188,53,0,-48.592949,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,21.685955,0,14.5,1,1,0,3.7127392,4.6896119,61.01,15.83,36.72,31.97,8.333333333333334,1,1,0,0,6,2,2,1,1272,111250.22,0,0,0,0,0,1733.4147 +4035,4937,8747,-9,8750,8748,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1139.9504,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1006505,0,52.21,59.91,-9,-9,10,1,1,0,0,0,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4937,8748,8750,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.1341505,9.4383202,7.6998525,8,0,-63.587082,0,2,1,2021,18,6,40,45,1,6,0,39.39851,39.39851,.05,.05,0,0,0,0,0,0,1,1,0,8.2014093,0,34.11,61.28,54.18,49.48,6.666666666666667,1,1,0,0,9,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4937,8749,-9,8750,8748,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-913.00812,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4937,8750,8748,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.4341254,7.4496374,0,8,0,-58.129627,0,2,1,2021,9,0,4,3,1,0,0,47.289463,47.289463,.05,.05,0,0,0,0,0,0,1,1,0,.80782634,0,54.18,49.48,34.11,61.28,8.333333333333334,1,1,0,0,8,10,5,1,842.25,1411959.1,420983.84,829415.25,50917.875,0,0,5492.5098 +4035,4938,8751,-9,8750,8748,1,1,18,0,1,0,2,2,1,0,4,6.5668235,6.4353886,0,0,0,-906.112,-9,2,1,2021,17,5,10,0,1,5,1,8.4904661,8.4904661,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,57.44,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,220,40210.484,0,0,0,0,0,5.5399609 +4036,4939,8752,8753,-9,-9,1,0,61,0,0,0,2,2,-9,1,3,7.4392009,7.4853611,0,32,7,.16188255,0,3,3,2021,6,0,30,30,1,0,0,6.1579471,6.1579471,0,0,0,0,0,0,0,14.5,1,1,0,2.9683561,0,60.29,52.11,38.76,37.49,10,1,1,0,0,14,13,2,1,404,277470.53,114204.06,209481.34,140227.88,0,0,1571.9658 +4036,4939,8753,8752,-9,-9,1,1,54,0,0,0,2,2,-9,1,3,0,0,0,32,-7,-178.76137,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,37.49,60.29,52.11,1.666666666666667,1,1,0,0,0,13,2,1,404,277470.53,114204.06,209481.34,140227.88,0,0,1571.9658 +4036,4940,8754,-9,8752,8753,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1076.2899,-9,2,2,2021,14,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9450936,0,30.54,64.5,-9,-9,5,1,1,0,0,3,13,2,1,972,-34215.977,0,0,0,0,0,1026.0621 +4037,4941,8755,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.4712043,7.4444938,0,0,0,-1061.155,-9,2,2,2021,10,1,30,0,1,1,0,6.7961497,6.7961497,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,1,1,0,0,15,5,3,1,226,-33188.359,0,0,0,0,0,1564.1042 +4037,4941,8756,-9,8755,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.52094,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,226,-33188.359,0,0,0,0,0,1564.1042 +4038,4942,8757,8758,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.7617893,9.9906445,0,29,1,-37.926929,0,2,2,2021,12,0,41,44,1,0,0,41.570023,41.570023,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,48.18,61.8,8.333333333333334,1,1,0,0,12,6,5,1,1449.5,794928.63,144635.44,522350.56,116319.26,0,0,5419.2842 +4038,4942,8758,8757,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,0,0,0,29,-1,1.6549591,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1168895,0,48.18,61.8,48.81,59.91,8.333333333333334,1,1,0,0,11,6,5,1,1449.5,794928.63,144635.44,522350.56,116319.26,0,0,5419.2842 +4039,4943,8759,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,6.8764892,6.7633281,0,0,-921.46088,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,7.0792317,0,65.840225,0,1,1,0,3.7835686,6.6492991,41.94,16.49,-9,-9,5,1,1,0,0,0,6,2,1,1824,304341.13,-51972.281,46850.289,0,0,0,946.24945 +4040,4944,8760,-9,8762,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-898.23798,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4040,4944,8761,-9,8762,-9,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1062.733,-9,1,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,10,3,4,0,1,0,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4040,4944,8762,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.5273752,8.6756067,0,0,0,-1047.5023,0,2,2,2021,8,1,37,37,1,1,0,19.053495,19.053495,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.77,60.16,-9,-9,8.333333333333334,4,2,0,0,10,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4040,4944,8763,-9,8762,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.8537,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,5,3,1,728,220259.05,110065.37,126577.06,51875.516,0,866.06421,3008.2505 +4041,4945,8764,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.4257965,4.7268829,0,0,-1144.4491,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2679747,4.6254349,60.29,52.11,-9,-9,10,1,1,0,0,0,5,2,1,361,14344.638,-6713.2573,0,0,0,0,921.00366 +4042,4946,8765,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,8.1331491,7.9746666,0,0,0,-864.39972,0,2,2,2021,12,0,52,52,1,0,0,8.1155519,8.1155519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.59,35.14,-9,-9,5,1,1,0,0,10,6,4,0,445,319222.75,286777.97,128576.8,84011.5,0,0,1365.6343 +4043,4947,8766,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.3747616,8.2300014,0,0,0,-1116.976,0,2,2,2021,18,7,20,20,1,7,0,23.577162,23.577162,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.91,36.56,-9,-9,3.333333333333333,1,1,0,0,9,9,4,1,5346,223587.83,-39049.645,0,0,16936.492,0,2522.9727 +4044,4948,8767,8769,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,0,0,0,3,-3,-1.267453,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.71,55.64,54.61,51.04,10,1,1,0,0,0,12,5,1,775.33331,-1927.7471,-5995.5884,0,0,8889.8496,3219.5247,3755.127 +4044,4948,8768,-9,8767,8769,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.2815,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,775.33331,-1927.7471,-5995.5884,0,0,8889.8496,3219.5247,3755.127 +4044,4948,8769,8767,-9,-9,1,1,28,0,1,0,2,2,-9,0,2,9.226696,9.1924658,0,3,3,106.93169,0,2,2,2021,10,1,58,78,1,1,0,20.810652,20.810652,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,49.71,55.64,8.333333333333334,1,1,0,0,9,12,5,1,775.33331,-1927.7471,-5995.5884,0,0,8889.8496,3219.5247,3755.127 +4045,4949,8770,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.6515341,8.2874117,0,0,0,-1021.6624,0,-9,-9,2021,8,0,52,44,1,0,0,11.120085,11.120085,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,2662,-208711.19,-104527.17,0,0,0,0,1925.8175 +4046,4950,8771,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.4281645,8.5812855,7.1463423,0,0,-1027.5059,0,2,3,2021,11,0,45,50,1,0,0,12.870518,12.870518,.05,.05,0,0,0,0,0,0,1,1,0,7.5116496,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,393,338556.66,77789.156,251326.77,106350.01,6888.9395,0,4000.0403 +4046,4950,8772,-9,8771,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.4507,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,393,338556.66,77789.156,251326.77,106350.01,6888.9395,0,4000.0403 +4046,4950,8773,-9,8771,-9,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1003.4077,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86417139,0,45,59,-9,-9,7,1,1,0,0,0,8,4,1,393,338556.66,77789.156,251326.77,106350.01,6888.9395,0,4000.0403 +4046,4951,8774,-9,8771,-9,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1049.9385,-9,2,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7423425,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,1124,0,0,0,0,0,0,-460.75101 +4047,4952,8775,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,6.2887893,5.830565,0,0,-868.06659,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.227706,66.13,7.66,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1602,221919.5,154013.19,141674.06,44833.77,6699.7959,0,834.93274 +4048,4953,8776,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.0985737,8.4587507,0,0,0,-991.4209,0,2,2,2021,12,3,37,38,1,3,0,12.0807,12.0807,.05,.05,0,0,0,0,0,0,1,1,0,4.842495,0,38.54,49.61,-9,-9,5,1,1,0,1,8,7,4,1,1516,782862.31,148546.47,477615.16,0,0,0,1478.6675 +4049,4954,8777,-9,-9,-9,1,0,96,0,0,0,3,3,-9,0,3,0,0,0,0,0,-964.11328,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,2.7520082,6.6170349,22.78133,0,1,1,0,3.1527965,0,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,4369,29419.418,0,0,0,0,0,1144.9686 +4050,4955,8778,-9,8779,8780,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.608,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,1483.6666,70225.719,-8431.6563,115257.15,76524.445,13010.738,0,3369.4424 +4050,4955,8779,8780,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,7.4777575,7.0470119,0,7,-7,-22.006182,0,-9,-9,2021,8,0,17,19,1,0,0,6.7543669,6.7543669,0,0,0,0,0,0,0,0,1,1,0,6.5462394,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,1,4,1,1483.6666,70225.719,-8431.6563,115257.15,76524.445,13010.738,0,3369.4424 +4050,4955,8780,8779,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.065753,8.2886019,0,7,7,16.081739,0,2,3,2021,8,0,40,44,1,0,0,11.548809,11.548809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,7,1,4,1,1483.6666,70225.719,-8431.6563,115257.15,76524.445,13010.738,0,3369.4424 +4051,4956,8781,8782,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,5.1576843,8.9887648,8.9934483,20,-4,-97.253113,0,2,3,2021,7,0,10,30,1,0,0,1.8931614,1.8931614,.05,.05,0,0,0,0,0,0,0,0,0,0,9.0961676,52.32,57.18,56.5,48.33,10,1,1,0,0,14,2,5,1,737,1225426,1061689.5,208165.94,0,0,11665.568,7434.5303 +4051,4956,8782,8781,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.3102608,8.659255,8.2948322,20,4,-.95576203,0,2,2,2021,9,0,20,35,1,0,0,19.338242,19.338242,.05,.05,0,0,0,0,0,0,0,0,0,0,7.9100089,56.5,48.33,52.32,57.18,8.333333333333334,1,1,0,0,14,2,5,1,737,1225426,1061689.5,208165.94,0,0,11665.568,7434.5303 +4052,4957,8783,-9,8784,8785,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.9803,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4052,4957,8784,8785,-9,-9,1,0,37,1,2,0,1,1,-9,1,3,0,0,0,9,1,-174.58368,0,3,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,57.33,53.46,51,56,8.333333333333334,2,3,0,0,3,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4052,4957,8785,8784,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,9.2694139,9.4045687,0,9,-1,115.83659,0,2,1,2021,10,0,45,44,1,1,0,26.049494,26.049494,.05,.05,0,0,0,0,0,0,1,1,0,4.3700228,0,51,56,57.33,53.46,7,2,3,0,0,1,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4052,4957,8786,-9,8784,8785,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.06555,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,856.25,355780.59,151072.7,328869.31,251222.39,0,0,5003.1025 +4053,4958,8787,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.9964318,8.1151915,0,0,0,-1072.3611,0,-9,-9,2021,22,10,38,37,1,10,0,8.2213564,8.2213564,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.29,61.29,-9,-9,6.666666666666667,1,1,0,0,11,11,4,0,1269,-79494.813,-41083.035,0,0,1912.1447,0,1728.7311 +4054,4959,8788,-9,8790,8789,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1229.8898,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3942103,0,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,2106,370267.59,221933.23,233445.63,90532.961,0,0,4640.4814 +4054,4959,8789,8790,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.6266479,9.0595675,0,19,4,81.691025,0,-9,-9,2021,6,0,35,38,1,0,0,21.668365,21.668365,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.91,23.24,42.07,56.45,8.333333333333334,1,1,0,0,11,6,5,1,2106,370267.59,221933.23,233445.63,90532.961,0,0,4640.4814 +4054,4959,8790,8789,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,8.2001581,8.0267115,0,19,-4,-9.000309,0,2,2,2021,10,0,30,40,1,0,0,14.485959,14.485959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.07,56.45,57.91,23.24,6.666666666666667,1,1,0,0,8,6,5,1,2106,370267.59,221933.23,233445.63,90532.961,0,0,4640.4814 +4055,4960,8791,8792,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,8.0895023,7.8005404,0,2,4,13.648242,-9,2,2,2021,12,0,25,0,1,0,0,10.012277,10.012277,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,59.79,62.39,56.71,6.666666666666667,1,1,0,0,9,7,3,1,667.66669,30674.549,0,0,0,0,0,1609.0907 +4055,4960,8792,8791,-9,-9,1,1,32,1,1,0,2,2,-9,0,5,.33319107,.3214871,0,2,-4,18.742849,-9,-9,-9,2021,6,0,40,0,1,0,0,.0019762146,.0019762146,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,43.92,59.79,10,1,1,0,0,4,7,3,1,667.66669,30674.549,0,0,0,0,0,1609.0907 +4055,4960,8793,-9,8791,8792,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.1116,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,7,3,1,667.66669,30674.549,0,0,0,0,0,1609.0907 +4055,4961,8794,-9,8791,8792,1,0,19,1,1,0,3,3,-9,0,5,7.152997,7.3377619,0,0,0,-1045.6522,0,2,2,2021,27,9,43,0,1,9,1,3.5527968,3.5527968,0,0,0,0,0,0,0,0,1,1,0,0,0,10.91,61.49,-9,-9,5,1,1,0,0,1,7,3,1,1100,36184.32,0,0,0,0,940.01849,-366.98773 +4056,4962,8795,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,0,0,0,0,0,-922.14972,0,3,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.18,44.04,-9,-9,6.666666666666667,2,3,0,1,0,4,1,0,1227,31589.25,0,0,0,0,0,706.88483 +4056,4963,8796,-9,8795,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1099.2341,-9,3,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,4,1,0,1480,0,0,0,0,0,0,0 +4056,4964,8797,-9,8795,-9,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1109.8801,-9,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,4,1,0,2214,-91855.313,0,0,0,0,0,0 +4057,4965,8798,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,7.5697308,7.4541612,5.5080462,0,0,-947.67554,0,1,1,2021,11,0,40,40,1,0,0,4.7590299,4.7590299,0,0,.05,0,0,0,0,0,0,0,0,5.7759991,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,9,8,3,0,184,220641.19,58588.172,647922.56,384643.72,0,0,889.03412 +4058,4966,8799,8800,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.3141532,7.5853581,0,7,-1,10.427898,0,2,2,2021,12,0,18,21,1,0,0,10.62363,10.62363,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,53.24,51,56,8.333333333333334,1,1,0,0,4,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4058,4966,8800,8799,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.6979179,8.7672863,0,7,1,-97.566612,0,-9,-9,2021,10,0,40,45,1,1,0,14.149208,14.149208,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,48.76,53.24,7,1,1,0,0,1,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4058,4966,8801,-9,8799,8800,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.77435,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4058,4966,8802,-9,8799,8800,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.9513,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,438,-12966.736,3072.8286,0,0,29077.24,715.11346,3006.8596 +4059,4967,8803,-9,8804,8805,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-936.37054,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,662.33331,611720.75,507192.16,238394.39,93795.281,7338.6689,0,3620.9861 +4059,4967,8804,8805,-9,-9,1,0,28,1,1,0,2,2,-9,0,5,7.760478,7.9108324,0,5,-10,86.704636,0,-9,-9,2021,8,0,41,41,1,0,0,6.4801106,6.4801106,0,0,0,0,0,0,0,0,1,1,0,2.3742068,0,57.06,57.76,54.96,53.17,10,1,1,0,0,9,2,5,1,662.33331,611720.75,507192.16,238394.39,93795.281,7338.6689,0,3620.9861 +4059,4967,8805,8804,-9,-9,1,1,38,1,1,0,2,2,-9,0,3,8.7076197,8.9764481,0,5,10,-109.37598,0,2,2,2021,9,0,42,40,1,0,0,16.848227,16.848227,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.06,57.76,8.333333333333334,1,1,0,0,7,2,5,1,662.33331,611720.75,507192.16,238394.39,93795.281,7338.6689,0,3620.9861 +4060,4968,8806,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1029.6437,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.46,25.71,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,769,48042.754,0,248683.27,0,0,0,1238.2804 +4060,4969,8807,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.9867611,7.8263454,0,0,0,-943.61884,0,-9,-9,2021,14,2,39,36,1,2,0,6.7882252,6.7882252,0,0,0,0,0,0,0,2,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,573,111949.67,-18964.633,0,0,0,0,749.33228 +4061,4970,8808,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.0385499,5.5774465,0,0,-1015.5101,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2521749,5.9645314,43.66,45.93,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,674,74097.227,-30376.064,0,0,1641.0303,0,1110.5803 +4062,4971,8809,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,7.9229045,7.7547574,0,0,0,-988.92139,0,3,2,2021,3,0,28,22,1,0,0,13.444613,13.444613,0,0,0,0,0,0,0,0,0,0,0,3.1966844,0,53.48,53.71,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,489,455397.22,0,363198.03,0,0,0,982.42365 +4063,4972,8810,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1190.4741,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,3,4,0,1,0,8,1,0,207,-91732.695,0,0,0,0,0,779.51923 +4064,4973,8811,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.4273405,8.3063421,0,0,0,-1011.6016,0,1,2,2021,12,0,30,-9,1,0,0,16.940266,16.940266,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,11,8,5,1,356,507199.88,-72483.539,0,0,0,0,2178.304 +4065,4974,8812,-9,-9,-9,1,0,53,0,1,0,3,3,-9,1,4,7.1997643,7.3162727,0,0,0,-1020.3409,0,3,3,2021,7,0,30,22,1,0,0,4.5954547,4.5954547,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,10,2,2,1,317,-106691.31,-159384.09,0,0,140.07384,0,783.89001 +4066,4975,8813,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,7.6369286,7.6356335,0,0,-931.93695,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,1.596375,4.6173515,19.17856,0,1,1,0,4.2213545,7.5994296,37.26,30.22,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,297,263105.19,-10530.902,98994.633,0,0,0,1881.1577 +4067,4976,8814,-9,8815,8817,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1029.3906,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,2,3,-9,0,0,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4067,4976,8815,8817,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,0,0,0,23,0,130.86244,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,48.85,51.81,8.333333333333334,2,3,0,0,0,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4067,4976,8816,-9,8815,8817,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.1259,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4067,4976,8817,8815,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,7.5744514,7.6260419,0,23,9,54.047504,0,2,1,2021,12,2,40,35,1,2,0,6.0002804,6.0002804,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,51.81,52.99,51.28,6.666666666666667,2,3,0,1,7,8,2,0,574,10845.65,26232.82,0,0,0,0,2930.584 +4068,4977,8818,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,3,7.1508431,7.6539798,6.3600512,0,0,-881.38885,0,1,1,2021,13,1,21,18,1,1,0,5.0164561,5.0164561,0,0,0,0,0,0,0,0,1,1,0,6.3701363,0,41.96,42.91,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,1068,-197888.19,0,0,0,0,0,1639.0559 +4069,4978,8819,8822,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,6.9106417,6.8054223,0,7,5,-84.115913,0,-9,2,2021,20,8,11,11,1,8,0,13.498713,13.498713,0,0,0,0,0,0,0,2,1,1,0,0,0,40.58,60.95,46.08,57.2,6.666666666666667,1,1,0,0,6,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4069,4978,8820,-9,8819,8822,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.4349,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4069,4978,8821,-9,8819,8822,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.48944,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4069,4978,8822,8819,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.855237,8.8467379,0,7,-5,24.576717,0,2,2,2021,11,1,53,53,1,1,0,19.061253,19.061253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,40.58,60.95,6.666666666666667,1,1,0,0,14,7,4,1,1224.75,107533.02,102993.1,0,0,0,0,3405.6147 +4070,4979,8823,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1030.8198,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,23.79,-9,-9,6.666666666666667,3,4,0,0,0,2,1,0,1218,287223.78,0,0,0,0,0,1573.301 +4071,4980,8824,8825,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,4.1112833,4.0406079,53,-1,-25.318495,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.466011,4.0665126,44.73,56.4,59.14,52.5,8.333333333333334,1,1,0,0,3,2,4,1,1533,1483387.3,783748.19,358309.81,0,0,0,3765.9722 +4071,4980,8825,8824,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.3540516,8.6015434,53,1,81.755409,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4158192,8.1393957,59.14,52.5,44.73,56.4,8.333333333333334,1,1,0,0,0,2,4,1,1533,1483387.3,783748.19,358309.81,0,0,0,3765.9722 +4072,4981,8826,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.0804691,8.1075354,0,0,0,-946.06323,0,2,2,2021,12,0,39,40,1,0,0,10.514114,10.514114,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,10,5,4,1,415,-25063.23,3860.9775,0,0,0,519.37231,1301.3666 +4073,4982,8827,8828,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.5695295,8.9342794,7.0935063,25,6,-26.893881,0,2,2,2021,12,0,36,37,1,0,0,16.958956,16.958956,.05,.05,0,0,0,0,0,0,0,0,0,2.6838949,7.6239271,51.48,48.31,48.22,30.91,5,4,5,0,0,14,2,4,1,1523,1702056.6,1435879,289895.56,29588.371,468.23395,1666.6108,2285.1079 +4073,4982,8828,8827,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,0,0,25,-6,14.684902,0,3,3,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.22,30.91,51.48,48.31,8.333333333333334,1,1,1,0,6,2,4,1,1523,1702056.6,1435879,289895.56,29588.371,468.23395,1666.6108,2285.1079 +4074,4983,8829,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,1,0,4.7989478,4.7484035,0,0,-929.34821,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7929158,4.5097508,42.73,26.73,-9,-9,6.666666666666667,1,1,0,0,4,7,2,0,617,-35425.742,53153.648,0,0,0,0,1845.5458 +4075,4984,8830,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.3933201,8.2542734,0,0,0,-1051.0613,0,1,3,2021,13,2,25,50,1,2,0,17.035185,17.035185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,941,-24042.711,82054.18,0,0,-370.6387,1952.9987,1050.9779 +4076,4985,8831,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1060.1556,1,3,2,2021,13,2,0,42,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,10,10,1,0,586,-182168.66,0,0,0,0,0,0 +4077,4986,8832,8833,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.6610885,7.6011834,0,42,1,9.6550388,-9,2,2,2021,8,0,35,0,1,0,0,6.783627,6.783627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,49.24,34.36,8.333333333333334,1,1,0,0,12,2,4,0,672,50387.031,57602.734,136644.88,0,0,7000.46,1651.2938 +4077,4986,8833,8832,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.8261099,7.9494243,0,10,-1,21.06925,-9,-9,-9,2021,13,2,45,0,1,2,0,5.3267012,5.3267012,0,0,0,0,0,0,0,0,0,0,0,0,0,49.24,34.36,55.36,51.57,8.333333333333334,1,1,0,0,12,2,4,0,672,50387.031,57602.734,136644.88,0,0,7000.46,1651.2938 +4078,4987,8834,8835,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,13,-7,43.826054,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,55.19,54.26,51.24,58.84,8.333333333333334,1,1,0,0,0,4,5,1,1025,1096512,557036.56,489624.13,14948.972,17891.307,0,5234.249 +4078,4987,8835,8834,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,9.0878315,8.9622612,29,7,-38.627937,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.4898949,8.2444725,51.24,58.84,55.19,54.26,8.333333333333334,1,1,0,0,9,4,5,1,1025,1096512,557036.56,489624.13,14948.972,17891.307,0,5234.249 +4079,4988,8836,8837,-9,-9,1,1,36,0,2,0,3,3,-9,0,4,8.5375023,8.4878531,0,3,7,29.921682,0,3,2,2021,10,0,40,40,1,1,0,12.075959,12.075959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,49.95,49.92,7,1,1,0,0,1,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4079,4988,8837,8836,-9,-9,1,0,29,0,2,0,3,3,-9,0,3,7.2521358,7.2871122,0,3,-7,-60.989281,0,-9,-9,2021,10,2,26,23,1,2,0,6.0275598,6.0275598,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.95,49.92,50,57,8.333333333333334,1,1,0,0,8,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4079,4988,8838,-9,8837,8836,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.27338,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4079,4988,8839,-9,8837,8836,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1034.3636,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,0,551.5,114700.33,-44857.363,165670.48,92106.641,0,0,2598.9023 +4080,4989,8840,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,5.8320198,6.7766356,5.9129429,0,0,-1024.8867,0,2,2,2021,3,0,7,0,1,0,0,7.4952188,7.4952188,0,0,0,0,0,0,0,0,1,0,1,5.9132628,0,44,44.81,-9,-9,6.666666666666667,1,1,0,0,12,7,2,0,791,0,0,0,0,0,0,-81.671837 +4081,4990,8841,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1032.2684,0,2,3,2021,12,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.6,34.29,-9,-9,6.666666666666667,1,1,0,1,10,2,1,0,252,-111053.06,0,0,0,0,0,465.74774 +4082,4991,8842,8843,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.9575963,6.2628484,48,8,35.654514,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0619912,60.2,45.35,50.65,60.47,10,1,1,0,0,0,6,3,1,352.5,609590.75,202936.47,257377.64,0,0,0,3159.3259 +4082,4991,8843,8842,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,7.5870767,7.9244533,48,-8,35.738235,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8744271,7.6539712,50.65,60.47,60.2,45.35,10,1,1,0,0,0,6,3,1,352.5,609590.75,202936.47,257377.64,0,0,0,3159.3259 +4083,4992,8844,8845,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,9.2367954,8.9770069,6,2,71.379944,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4147635,9.0329781,60.02,56.42,57.06,57.76,10,1,1,0,0,10,9,5,1,747,3340378,2332853.8,567510.75,0,0,0,6042.3008 +4083,4992,8845,8844,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,0,0,0,26,-2,-131.27298,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6223454,0,57.06,57.76,60.02,56.42,8.333333333333334,1,1,0,0,11,9,5,1,747,3340378,2332853.8,567510.75,0,0,0,6042.3008 +4084,4993,8846,-9,8848,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7313,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,3,0,1077.6666,228864.14,-15451.481,101453.54,0,0,0,1643.646 +4084,4993,8847,-9,8848,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.7621,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,3.4832108,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,1077.6666,228864.14,-15451.481,101453.54,0,0,0,1643.646 +4084,4993,8848,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,7.521647,7.6089492,0,0,0,-1072.8572,0,3,3,2021,11,0,31,0,1,1,0,10.921332,10.921332,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,3,4,0,0,1,5,3,0,1077.6666,228864.14,-15451.481,101453.54,0,0,0,1643.646 +4085,4994,8849,8850,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,53,-2,-111.02594,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,57.26,43.95,10,1,1,0,0,0,10,5,1,2997.5,948692.63,482483.38,177037.61,0,0,0,6719.7197 +4085,4994,8850,8849,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,9.3151464,8.8569651,53,2,-120.06148,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9472957,8.9401207,57.26,43.95,57.73,54.53,8.333333333333334,1,1,0,0,0,10,5,1,2997.5,948692.63,482483.38,177037.61,0,0,0,6719.7197 +4086,4995,8851,8852,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4300642,8.3728123,0,8,0,-14.429695,0,-9,-9,2021,10,0,45,45,1,0,0,7.9155946,7.9155946,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.47,50.15,40.52,37.12,6.666666666666667,1,1,0,0,10,12,4,1,794.5,367324.06,55562.313,143409.38,16890.963,0,0,2022.0284 +4086,4995,8852,8851,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7476516,8.1615067,0,8,0,-27.169661,0,3,-9,2021,14,3,30,30,1,3,0,10.567596,10.567596,0,0,0,0,0,0,0,0,0,0,0,0,0,40.52,37.12,43.47,50.15,5,1,1,0,0,9,12,4,1,794.5,367324.06,55562.313,143409.38,16890.963,0,0,2022.0284 +4086,4996,8853,-9,-9,8851,1,1,20,0,0,0,2,2,-9,0,3,7.9699583,8.2824001,0,0,0,-1043.8296,-9,-9,2,2021,7,2,40,0,1,2,1,9.6176424,9.6176424,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45,54,-9,-9,10,1,1,0,0,3,12,4,1,440,-75592.766,22624.701,0,0,0,800.84546,549.32324 +4087,4997,8854,8855,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.3331571,6.1852751,10,0,-31.099316,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3173923,6.2353892,43.88,39.51,53.1,40.64,8.333333333333334,1,1,0,0,0,6,2,1,820,666818,56600.18,365860.47,0,0,0,1731.4099 +4087,4997,8855,8854,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.5864997,6.4197574,10,0,-65.925858,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,.13514747,0,0,1,1,0,5.6499133,6.8228822,53.1,40.64,43.88,39.51,8.333333333333334,1,1,0,0,0,6,2,1,820,666818,56600.18,365860.47,0,0,0,1731.4099 +4088,4998,8856,8857,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.0444598,6.861649,43,2,-1.1734263,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0240073,43.42,62.33,53.92,52.23,5,1,1,0,0,6,2,3,1,576,1129662.3,764202.44,267681.47,0,-454.80777,0,1719.0341 +4088,4998,8857,8856,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.9901557,7.2456846,43,-2,30.85321,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1605244,6.9387469,53.92,52.23,43.42,62.33,5,1,1,0,0,0,2,3,1,576,1129662.3,764202.44,267681.47,0,-454.80777,0,1719.0341 +4089,4999,8858,-9,-9,-9,1,0,68,0,2,0,2,2,-9,0,2,0,7.1678977,7.5380778,0,0,-883.07947,-9,-9,-9,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,1,0,9.2727509,0,0,1,1,0,0,7.1351066,35.88,35.4,-9,-9,5,1,1,0,0,0,12,2,1,1063,132209.89,328542.94,0,0,2864.4788,0,2120.8953 +4089,5000,8859,-9,8862,8860,1,0,16,0,2,0,3,3,-9,0,3,0,0,0,0,0,-908.45984,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,0,0,0,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4089,5000,8860,8862,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.2034883,8.3372564,0,3,5,-19.056431,0,2,2,2021,10,0,40,39,1,0,0,13.879909,13.879909,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,50.8,48.58,51.83,57.2,6.666666666666667,1,1,0,0,10,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4089,5000,8861,-9,8862,8860,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-974.42615,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4089,5000,8862,8860,8858,-9,1,0,40,0,2,0,2,2,-9,0,4,8.4989958,8.6629877,0,3,-5,-36.047348,0,2,1,2021,7,0,43,43,1,0,0,14.331929,14.331929,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50.8,48.58,6.666666666666667,1,1,0,0,11,12,4,1,585.75,546500.75,221555.81,354939.59,96809.344,0,0,3749.8005 +4090,5001,8863,-9,8865,8864,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.20996,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,260,68664.305,41951.988,253145.06,114411,0,1983.5913,2267.1211 +4090,5001,8864,8865,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,8.2284298,8.4688473,0,12,4,28.973034,0,2,3,2021,8,0,38,37,1,0,0,12.816933,12.816933,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.28,55.3,8.333333333333334,1,1,0,0,12,9,4,1,260,68664.305,41951.988,253145.06,114411,0,1983.5913,2267.1211 +4090,5001,8865,8864,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.602778,7.6553364,0,12,-4,.75788963,0,2,2,2021,9,1,23,23,1,1,0,11.597281,11.597281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.28,55.3,48.87,58.55,8.333333333333334,1,1,0,0,14,9,4,1,260,68664.305,41951.988,253145.06,114411,0,1983.5913,2267.1211 +4091,5002,8866,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.3879509,5.2510853,0,0,-1006.2413,0,3,3,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0943151,49,34,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,955,-227946.67,-65003.336,169828.83,0,0,0,1473.6246 +4092,5003,8867,8868,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.9103565,5.7759809,52,0,120.11153,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6128997,5.2905521,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,3,5,2,1,548.5,142920.36,169177.28,0,0,0,0,1664.5919 +4092,5003,8868,8867,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,52,0,-67.648529,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.557725,0,57.16,56.15,58.32,50.22,10,1,1,0,0,0,5,2,1,548.5,142920.36,169177.28,0,0,0,0,1664.5919 +4093,5004,8869,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1090.2051,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.79,43.25,-9,-9,8.333333333333334,1,1,0,0,10,5,1,1,1472,-58779.074,0,0,0,0,0,1551.8367 +4094,5005,8870,8871,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.0698214,8.3996992,0,31,-5,-95.405991,0,3,3,2021,10,0,30,30,1,0,0,19.285416,19.285416,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.22,39.67,58.87,43.06,6.666666666666667,1,1,0,0,14,4,5,1,347.5,1381715.4,1025536.3,244232.75,0,0,461.07706,3678.2063 +4094,5005,8871,8870,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.7833929,8.8382034,0,31,5,29.481642,0,2,2,2021,9,0,46,48,1,0,0,19.996996,19.996996,.05,.05,.05,0,0,0,0,0,0,0,0,2.9989705,0,58.87,43.06,54.22,39.67,6.666666666666667,1,1,0,0,14,4,5,1,347.5,1381715.4,1025536.3,244232.75,0,0,461.07706,3678.2063 +4095,5006,8872,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,1,7.2819285,7.2157364,0,0,0,-933.66846,0,-9,-9,2021,15,5,45,60,1,5,0,3.6858623,3.6858623,0,0,0,0,0,0,0,0,1,1,0,1.6699467,0,38.25,47.83,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,519,336946.19,0,92185.625,-7950.1299,0,0,710.39911 +4096,5007,8873,8874,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.1191092,7.5764976,0,25,1,-39.892311,0,2,3,2021,12,1,60,60,1,1,0,4.8734574,4.8734574,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.24,58.84,10,1,1,0,0,8,6,3,0,759,689299.13,528503.13,180839.03,0,0,0,1628.478 +4096,5007,8874,8873,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,6.9324594,7.0334902,0,25,-1,10.81404,0,3,3,2021,11,0,20,24,1,0,0,6.0852613,6.0852613,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,62.39,56.71,3.333333333333333,1,1,0,1,9,6,3,0,759,689299.13,528503.13,180839.03,0,0,0,1628.478 +4097,5008,8875,8876,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.5304451,8.4844103,0,4,4,21.105431,0,2,2,2021,6,0,38,40,1,0,0,17.170963,17.170963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,55.96,49.93,8.333333333333334,1,1,0,0,8,12,5,1,575,598654.88,592891.31,324056.66,225464.66,2333.6094,0,3539.8706 +4097,5008,8876,8875,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.8272495,8.530673,0,4,-4,-96.50779,0,-9,-9,2021,7,0,45,50,1,0,0,10.179032,10.179032,.05,.05,0,0,0,0,0,0,0,0,0,2.6314118,0,55.96,49.93,54.2,57.49,8.333333333333334,1,1,0,0,10,12,5,1,575,598654.88,592891.31,324056.66,225464.66,2333.6094,0,3539.8706 +4098,5009,8877,-9,8879,8878,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1116.5909,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1949656,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,865,402825.47,455510.97,0,0,0,0,3261.9573 +4098,5009,8878,8879,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8047094,8.6764965,0,31,-2,-47.431221,0,2,2,2021,6,0,38,41,1,0,0,17.515186,17.515186,.05,.05,.05,0,0,0,0,0,1,1,0,4.7953672,0,52.99,51.28,60.6,49.26,8.333333333333334,1,1,0,0,9,9,4,1,865,402825.47,455510.97,0,0,0,0,3261.9573 +4098,5009,8879,8878,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,6.9462509,6.9576354,0,31,2,96.754539,0,2,2,2021,4,0,18,20,1,0,0,6.453537,6.453537,0,0,0,0,0,0,0,0,1,1,0,3.6108215,0,60.6,49.26,52.99,51.28,8.333333333333334,1,1,0,0,9,9,4,1,865,402825.47,455510.97,0,0,0,0,3261.9573 +4099,5010,8880,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1027.8636,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.61,13.86,-9,-9,8.333333333333334,1,1,0,0,7,12,1,0,2209,39100.465,0,0,0,0,0,1772.7607 +4100,5011,8881,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,8.0881176,7.8162403,0,0,-1006.7887,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5937519,8.0087109,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,265,-14439.662,123937.84,0,0,0,0,1462.2993 +4101,5012,8882,8883,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.2669344,6.1749582,12,2,-25.217516,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5619502,6.3809967,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,395,840306.75,176722.75,604777.75,0,0,0,2158.9626 +4101,5012,8883,8882,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.7445836,6.617712,12,-2,19.296328,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6913438,6.4213095,57.16,56.15,57.16,56.15,10,1,1,0,0,0,6,2,1,395,840306.75,176722.75,604777.75,0,0,0,2158.9626 +4102,5013,8884,8886,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.250412,9.1375036,0,12,6,41.643578,0,-9,-9,2021,12,0,38,37,1,0,0,31.161772,31.161772,.05,.05,.05,0,0,0,0,0,0,0,0,7.5062547,0,57.16,56.15,44.55,60.42,8.333333333333334,1,1,0,0,11,9,5,1,1553.6666,1203997.9,621854.13,729159.25,148421.84,3833.4792,0,7104.9473 +4102,5013,8885,-9,8886,8884,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-883.99658,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,1553.6666,1203997.9,621854.13,729159.25,148421.84,3833.4792,0,7104.9473 +4102,5013,8886,8884,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.9105272,8.9206457,0,12,-6,-65.30883,-9,2,1,2021,18,6,31,0,1,6,0,26.936695,26.936695,0,0,0,0,0,0,0,0,0,0,0,1.1450453,0,44.55,60.42,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,1553.6666,1203997.9,621854.13,729159.25,148421.84,3833.4792,0,7104.9473 +4103,5014,8887,8888,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.3914061,8.7460041,46,2,-60.444084,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0628471,8.2190456,61.61,37.79,58.15,52.91,8.333333333333334,1,1,0,0,0,8,3,1,715.5,1493588.4,910113.81,498121.31,0,0,0,2763.7666 +4103,5014,8888,8887,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,46,-2,-47.518539,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,61.61,37.79,8.333333333333334,1,1,0,0,8,8,3,1,715.5,1493588.4,910113.81,498121.31,0,0,0,2763.7666 +4104,5015,8889,8891,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,9.0292158,8.9933634,0,6,-2,-19.085789,0,2,2,2021,6,0,41,40,1,0,0,23.542089,23.542089,.05,.05,0,0,0,0,0,0,0,0,0,3.2336552,0,54.2,57.49,51,56,8.333333333333334,1,1,0,0,5,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8890,-9,8889,8891,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1159.495,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8891,8889,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,8.6971073,8.6795015,0,6,2,-90.412926,0,-9,-9,2021,9,0,37,40,1,1,0,22.8477,22.8477,.05,.05,0,0,0,0,0,0,0,0,0,7.050889,0,51,56,54.2,57.49,8,1,1,0,0,1,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8892,-9,8889,8891,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.11951,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4104,5015,8893,-9,8889,8891,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.48309,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,737.79999,1507978.9,1234409.4,148342.02,34310.383,0,0,5729.3286 +4105,5016,8894,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,5.653976,5.5151196,0,0,-1069.7915,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.1261787,5.6659851,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,623,10826.289,166236.58,205780.39,0,0,0,554.15314 +4106,5017,8895,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.1831541,7.1849942,0,0,0,-1171.0355,0,-9,-9,2021,13,1,22,18,1,1,0,7.0668788,7.0668788,.05,.05,0,0,0,0,0,2,1,0,1,0,0,51.82,42.23,-9,-9,8.333333333333334,1,1,0,0,6,12,2,0,565.66669,48428.617,82902.297,0,0,0,0,1868.3931 +4106,5017,8896,-9,8895,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-783.53632,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,565.66669,48428.617,82902.297,0,0,0,0,1868.3931 +4106,5017,8897,-9,8895,-9,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-965.27283,-9,2,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.07,56.65,-9,-9,5,1,1,0,0,0,12,2,0,565.66669,48428.617,82902.297,0,0,0,0,1868.3931 +4107,5018,8898,8899,-9,-9,1,0,38,1,1,0,2,2,-9,0,3,0,0,0,6,0,-32.915096,-9,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,30.85,49.36,62.1,51.16,6.666666666666667,1,1,0,0,3,9,4,1,714.66669,153216.27,-1843.9869,259823.73,111988.33,4733.3872,11520.915,2517.9089 +4107,5018,8899,8898,-9,-9,1,1,47,1,1,0,2,2,-9,0,4,8.5750952,8.6948252,0,6,9,-146.59143,0,-9,-9,2021,8,1,43,36,1,1,0,15.559318,15.559318,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.1,51.16,30.85,49.36,8.333333333333334,1,1,0,0,10,9,4,1,714.66669,153216.27,-1843.9869,259823.73,111988.33,4733.3872,11520.915,2517.9089 +4107,5018,8900,-9,8898,8899,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.2775,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,714.66669,153216.27,-1843.9869,259823.73,111988.33,4733.3872,11520.915,2517.9089 +4108,5019,8901,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.1930766,7.7048006,6.0779243,0,0,-885.60071,0,3,2,2021,10,0,25,26,1,0,0,6.2416844,6.2416844,0,0,0,0,0,0,0,0,1,1,0,4.2516975,5.9984388,49.16,46.14,-9,-9,1.666666666666667,1,1,0,0,8,2,3,1,807,523945.22,433318.69,123790.82,0,0,0,1368.4302 +4109,5020,8902,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.2427239,7.346848,0,0,-1024.7264,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9453011,7.2375102,60.29,52.11,-9,-9,10,1,1,0,0,1,2,3,1,429,500611.75,207332.56,254316.83,0,0,0,1899.1179 +4110,5021,8903,8904,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.06779,8.0767288,0,26,-2,-139.97186,0,2,1,2021,16,4,42,42,1,4,0,8.026022,8.026022,.05,.05,0,0,0,0,0,0,0,0,0,1.8470392,0,54.1,59.11,47.1,56.62,6.666666666666667,1,1,0,0,14,7,4,1,867.5,1566111.3,1083360,261010.5,0,0,0,3043.2827 +4110,5021,8904,8903,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.3593283,8.0494604,0,13,2,-20.599213,0,-9,-9,2021,6,0,44,42,1,0,0,9.4850597,9.4850597,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.1,56.62,54.1,59.11,10,1,1,0,0,10,7,4,1,867.5,1566111.3,1083360,261010.5,0,0,0,3043.2827 +4111,5022,8905,8906,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.819375,9.0886803,0,16,-3,-29.341953,0,3,2,2021,23,10,39,37,1,10,0,20.280064,20.280064,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,19.45,38.62,6.666666666666667,1,1,0,0,13,7,5,1,884.5,2106276.5,1533026,672542.63,0,0,0,6363.7637 +4111,5022,8906,8905,-9,-9,1,1,51,0,1,0,1,1,-9,0,2,9.2180319,8.9429665,0,14,3,16.851316,0,3,2,2021,29,12,40,40,1,12,0,26.127829,26.127829,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,19.45,38.62,47.32,52.7,1.666666666666667,1,1,0,0,13,7,5,1,884.5,2106276.5,1533026,672542.63,0,0,0,6363.7637 +4112,5023,8907,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-980.10339,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.02,10.93,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,530,19215.559,0,0,0,2369.2971,0,246.56522 +4113,5024,8908,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1013.6044,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.11,24.32,-9,-9,5,1,1,0,0,0,7,1,0,382,259853.55,0,0,0,0,0,489.15332 +4114,5025,8909,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.265729,8.0336046,0,0,0,-1061.6953,0,3,2,2021,12,0,23,25,1,0,0,16.251139,16.251139,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,640,-141497.34,8601.8428,43204.613,69613.703,0,0,1140.389 +4115,5026,8910,-9,8911,8912,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.34167,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,4,1,398,236095.81,8385.9346,333043,185965.98,9559.0342,0,4906.2925 +4115,5026,8911,8912,-9,-9,1,0,37,0,3,0,2,2,-9,1,2,6.9488678,7.1049285,0,20,0,-121.79632,0,3,2,2021,12,0,20,20,1,0,0,6.8557882,6.8557882,.05,.05,0,0,0,0,0,27,1,0,1,.45102459,0,38.27,54.57,52,54.51,5,2,3,0,1,5,9,4,1,398,236095.81,8385.9346,333043,185965.98,9559.0342,0,4906.2925 +4115,5026,8912,8911,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,9.1690311,8.9191189,0,9,0,-26.25495,0,-9,-9,2021,11,0,35,30,1,0,0,21.667513,21.667513,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52,54.51,38.27,54.57,5,2,3,0,0,10,9,4,1,398,236095.81,8385.9346,333043,185965.98,9559.0342,0,4906.2925 +4116,5027,8913,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.7762208,8.0348129,0,0,0,-1044.0925,0,-9,2,2021,14,3,30,38,1,3,0,9.380456,9.380456,0,0,0,0,0,0,0,0,0,0,0,0,0,37.89,54.38,-9,-9,6.666666666666667,1,1,0,0,8,4,3,1,462,169973.77,0,0,0,0,0,938.47467 +4117,5028,8914,8915,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.2364392,7.1220417,51,-4,-69.586121,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4338903,7.199255,54.2,57.49,48.28,60.18,8.333333333333334,1,1,0,0,0,5,3,1,456,1037334.6,1002390.8,254426.94,15761.109,0,4463.335,7464.0566 +4117,5028,8915,8914,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.7728572,7.87112,51,4,-1.827641,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,1.4276624,0,0,1,1,0,8.7367725,7.5542116,48.28,60.18,54.2,57.49,10,1,1,0,0,0,5,3,1,456,1037334.6,1002390.8,254426.94,15761.109,0,4463.335,7464.0566 +4118,5029,8916,8917,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.7006035,8.8640022,0,9,0,1.2495112,0,2,2,2021,8,0,45,45,1,0,0,12.778533,12.778533,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,859.5,-87137.633,-33354.484,100300.52,65644.68,6895.499,2208.3145,2311.6201 +4118,5029,8917,8916,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,7.5939794,7.6315184,0,9,0,77.646118,0,2,2,2021,6,0,27,18,1,0,0,7.8319168,7.8319168,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,10,2,5,1,859.5,-87137.633,-33354.484,100300.52,65644.68,6895.499,2208.3145,2311.6201 +4119,5030,8918,-9,8919,8920,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.57288,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,5,1,448,261379.5,160585.3,222192.5,128667.13,27144.549,0,4974.0825 +4119,5030,8919,8920,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.0820742,7.086596,0,17,-5,-22.87121,0,2,2,2021,12,0,21,21,1,0,0,6.8415651,6.8415651,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,49.53,50.82,8.333333333333334,2,3,0,0,9,10,5,1,448,261379.5,160585.3,222192.5,128667.13,27144.549,0,4974.0825 +4119,5030,8920,8919,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.0034676,8.9521809,0,17,5,-47.249187,0,3,3,2021,16,5,37,44,1,5,0,30.610317,30.610317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.53,50.82,49.29,54.59,3.333333333333333,1,1,0,1,5,10,5,1,448,261379.5,160585.3,222192.5,128667.13,27144.549,0,4974.0825 +4120,5031,8921,-9,8922,8925,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.2009,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8922,8925,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,7.6616988,7.2458167,0,19,-2,44.001163,0,2,2,2021,23,10,28,27,1,10,0,9.7060366,9.7060366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,55.19,54.26,6.666666666666667,1,1,0,0,10,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8923,-9,8922,8925,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.20453,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8924,-9,8922,8925,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-859.94049,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4120,5031,8925,8922,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,9.3322325,9.5634336,0,20,2,30.052483,0,-9,3,2021,11,0,40,45,1,0,0,34.943565,34.943565,.05,.05,0,0,0,0,0,0,1,1,0,4.276639,0,55.19,54.26,43.67,61.06,8.333333333333334,1,1,0,0,10,1,5,1,765.59998,598647.25,426268.44,162345.8,29037.977,0,0,5263.0635 +4121,5032,8926,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1086.8879,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,6.3269906,6.9084687,61.522778,0,1,1,0,2.4051509,0,55,45,-9,-9,8,1,1,0,0,5,13,1,1,580,-78941.469,0,31488.641,0,0,0,870.54523 +4122,5033,8927,8928,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,.54998261,3.868259,3.7566235,13,0,85.146416,0,-9,-9,2021,24,9,25,-9,1,9,0,.0081599252,.0081599252,0,0,0,1,0,26.491898,0,0,1,1,0,3.9417653,3.9853535,16.04,23.99,35.21,41.59,8.333333333333334,1,1,0,1,15,8,2,1,338.5,798945,202771.31,243689.63,0,0,0,901.67432 +4122,5033,8928,8927,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,13,9,104.6802,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.21,41.59,16.04,23.99,6.666666666666667,1,1,0,0,0,8,2,1,338.5,798945,202771.31,243689.63,0,0,0,901.67432 +4123,5034,8929,8930,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,8.0058041,7.919178,0,14,2,-69.400024,0,2,-9,2021,6,0,30,38,1,0,0,10.504009,10.504009,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,50.72,46.82,6.666666666666667,4,2,0,0,12,8,5,0,952.5,16101.539,33955.969,162321.13,125685.77,0,2977.6306,3318.8728 +4123,5034,8930,8929,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.7257986,8.394475,0,14,-2,67.667923,0,2,-9,2021,12,0,44,46,1,0,0,12.470537,12.470537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.72,46.82,57.33,53.46,8.333333333333334,4,2,0,0,13,8,5,0,952.5,16101.539,33955.969,162321.13,125685.77,0,2977.6306,3318.8728 +4124,5035,8931,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.0396957,7.4082193,5.7654753,0,0,-974.17413,0,-9,-9,2021,10,0,20,20,1,0,0,9.1376638,9.1376638,0,0,0,0,0,0,0,0,1,0,1,6.0822949,0,33.47,56.25,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,254,149515.11,0,0,0,0,0,1835.8253 +4125,5036,8932,8933,-9,-9,1,1,42,0,3,0,1,1,-9,0,5,8.7599602,8.9206629,0,7,5,-22.564201,0,2,2,2021,8,0,43,45,1,0,0,16.299747,16.299747,.05,.05,0,0,0,0,0,0,1,1,0,3.9448528,0,45.81,61.51,62.39,56.71,8.333333333333334,1,1,0,0,8,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8933,8932,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,0,0,0,7,-5,-173.77713,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.12634121,0,62.39,56.71,45.81,61.51,10,1,1,0,0,1,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8934,-9,8933,8932,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.2359,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8935,-9,8933,8932,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.2638,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4125,5036,8936,-9,8933,8932,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.8182,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,719.20001,1377470.4,1074493.6,446870.88,135229.16,0,0,3250.635 +4126,5037,8937,8938,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.5677638,7.5940094,5.0622082,34,1,-45.267784,-9,3,3,2021,10,0,20,0,1,0,0,15.198028,15.198028,.05,.05,0,0,0,0,0,2,0,0,0,4.1971712,5.0450578,54.2,57.49,59.88,45.37,6.666666666666667,1,1,0,0,13,2,4,1,381.5,735833.13,553781.38,114181,0,0,0,2459.2161 +4126,5037,8938,8937,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1345596,8.6506577,5.2762127,1,-1,-25.046537,-9,-9,-9,2021,11,0,43,0,1,0,0,12.651928,12.651928,.05,.05,.05,0,0,0,0,0,0,0,0,5.9051161,5.7810965,59.88,45.37,54.2,57.49,8.333333333333334,1,1,0,0,11,2,4,1,381.5,735833.13,553781.38,114181,0,0,0,2459.2161 +4127,5038,8939,-9,8941,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1081.54,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,739,-32473.053,-35416.41,0,0,0,0,1993.6058 +4127,5038,8940,-9,8941,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.94012,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,739,-32473.053,-35416.41,0,0,0,0,1993.6058 +4127,5038,8941,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.2313056,7.1834927,0,0,0,-892.20984,0,3,3,2021,7,0,16,16,1,0,0,6.9278855,6.9278855,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,739,-32473.053,-35416.41,0,0,0,0,1993.6058 +4128,5039,8942,8944,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9541788,8.8383436,0,8,-2,-16.012358,0,3,3,2021,8,0,43,40,1,0,0,19.605783,19.605783,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4128,5039,8943,-9,8944,8942,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.0063,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4128,5039,8944,8942,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,9.0649023,8.7184868,6.4407206,8,2,33.027695,0,3,3,2021,12,0,43,42,1,0,0,19.249722,19.249722,0,0,0,0,0,0,0,0,1,1,0,6.652391,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4128,5039,8945,-9,8944,8942,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.06799,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,682.75,2816079.5,2279069,558982.69,15960.691,2526.1096,0,5696.8047 +4129,5040,8946,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.7780809,8.514945,0,0,0,-945.04297,0,1,2,2021,10,0,50,60,1,0,0,13.306683,13.306683,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,31.46,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,503,285991.19,-206132.88,0,0,427.10468,423.68967,1332.1755 +4130,5041,8947,8948,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8281174,7.6619325,38,-3,-1.8964534,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,.05,1,1.5668503,0,19.978249,42,1,1,0,3.9708848,7.2429423,56.35,43.13,50.88,12.93,6.666666666666667,1,1,0,0,9,2,3,1,905.5,668157.81,132310.09,291630.53,0,0,0,2878.0042 +4130,5041,8948,8947,-9,-9,1,0,74,0,0,0,1,1,-9,0,1,0,6.9268694,7.4394083,38,3,-145.46207,0,3,2,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,1.1621784,49.388004,29.052134,2,1,1,0,6.3834066,7.2344594,50.88,12.93,56.35,43.13,5,1,1,0,0,6,2,3,1,905.5,668157.81,132310.09,291630.53,0,0,0,2878.0042 +4131,5042,8949,8950,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,7.5426345,7.6508532,0,7,-8,-30.292067,0,2,2,2021,8,0,36,42,1,0,0,5.8775244,5.8775244,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,57.06,57.76,10,1,1,0,0,7,12,3,1,1359,1073350.3,855373.88,182272,51252.922,0,0,2289.6033 +4131,5042,8950,8949,-9,-9,1,1,56,0,2,0,1,1,-9,0,5,7.9166894,8.3970938,6.4787383,7,8,-69.166695,0,2,2,2021,6,0,40,47,1,0,0,8.344821,8.344821,.05,.05,0,0,0,0,0,0,1,1,0,6.462328,0,57.06,57.76,55.09,55.87,8.333333333333334,1,1,0,0,7,12,3,1,1359,1073350.3,855373.88,182272,51252.922,0,0,2289.6033 +4132,5043,8951,8952,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.9560947,7.9041843,5.8515692,46,4,-7.7555366,0,3,3,2021,8,0,50,50,1,0,0,4.6271071,4.6271071,.05,.05,0,0,0,0,0,0,1,1,0,7.0791059,5.699975,57.33,53.46,35.56,54.64,8.333333333333334,1,1,0,0,8,7,5,1,519.5,799855.75,309571.31,444654.44,0,0,0,5523.1182 +4132,5043,8952,8951,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,8.4412966,8.4429102,0,46,-4,-63.563656,0,3,2,2021,17,5,42,70,1,5,0,14.806072,14.806072,0,0,0,0,0,0,0,0,1,1,0,0,0,35.56,54.64,57.33,53.46,6.666666666666667,1,1,0,0,8,7,5,1,519.5,799855.75,309571.31,444654.44,0,0,0,5523.1182 +4133,5044,8953,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1015.3779,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,1,1,0,2153,-72606.711,0,0,0,0,0,1731.3632 +4134,5045,8954,8955,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.4223819,6.4596691,57,2,38.85775,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5258603,60.29,52.11,63.83,43.62,10,1,1,0,0,0,4,2,1,614.5,236612.16,45718.156,123160.29,0,0,291.55823,1329.399 +4134,5045,8955,8954,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.4738812,5.8999557,57,-2,19.72364,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1720352,63.83,43.62,60.29,52.11,10,1,1,0,0,0,4,2,1,614.5,236612.16,45718.156,123160.29,0,0,291.55823,1329.399 +4135,5046,8956,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.4906321,6.8827257,4.5613012,0,0,-985.96552,0,2,1,2021,5,0,30,15,1,0,0,2.4589682,2.4589682,.05,.05,0,0,0,0,0,0,1,1,0,4.203701,4.368535,59.07,37.52,-9,-9,8.333333333333334,1,1,0,0,12,2,2,1,3759,-122336.67,26039.084,-37862.184,46091.043,0,0,559.03357 +4135,5047,8957,-9,8956,-9,1,1,22,0,0,0,2,2,-9,0,4,6.6772199,6.2364826,0,0,0,-916.0498,0,2,-9,2021,17,6,30,50,1,6,1,2.380554,2.380554,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,5,1,1,0,0,5,2,2,1,1289,-240130.13,0,0,0,0,0,347.39575 +4136,5048,8958,8959,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,6.7909722,6.5159316,0,7,-3,-32.022602,0,3,3,2021,10,0,14,20,1,1,0,7.5680275,7.5680275,0,0,0,0,0,0,0,0,0,0,0,2.888871,0,51,54,40.82,45.35,8,2,3,0,0,1,9,2,1,2423,703529,513908.66,244266.08,0,0,0,1212.2299 +4136,5048,8959,8958,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.1116929,6.9100494,0,7,3,45.00592,0,3,3,2021,8,0,55,65,1,0,0,2.1309237,2.1309237,0,0,0,0,0,0,0,0,0,0,0,4.9450655,0,40.82,45.35,51,54,6.666666666666667,2,3,0,0,7,9,2,1,2423,703529,513908.66,244266.08,0,0,0,1212.2299 +4137,5049,8960,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.1094236,6.9517746,0,0,-952.26056,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,5.504189,0,0,1,1,0,7.2708669,7.0559773,55.84,29.81,-9,-9,3.333333333333333,1,1,0,0,6,10,3,1,1275,411353.31,364527.38,0,0,0,0,1305.8127 +4138,5050,8961,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-941.25513,0,-9,1,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,67.36,32.42,-9,-9,10,1,1,0,0,0,5,1,1,869,25482.609,0,0,0,0,0,412.72678 +4139,5051,8962,8963,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,36,3,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.77,20.45,49.45,48.84,5,2,3,0,1,0,8,1,1,1306.6666,6821.8438,0,0,0,0,1336.9004,2225.3254 +4139,5051,8963,8962,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,0,0,0,36,-3,0,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,49.45,48.84,35.77,20.45,5,2,3,0,1,0,8,1,1,1306.6666,6821.8438,0,0,0,0,1336.9004,2225.3254 +4139,5051,8964,-9,8963,8962,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-998.23279,-9,3,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.98,57.22,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,1306.6666,6821.8438,0,0,0,0,1336.9004,2225.3254 +4139,5052,8965,-9,8963,8962,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-959.67328,0,3,2,2021,10,0,0,45,3,1,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,45.42,49.52,-9,-9,1.666666666666667,2,3,1,1,7,8,1,1,899,142022.75,0,0,0,0,0,1332.8508 +4139,5053,8966,-9,8963,8962,1,1,24,0,0,0,2,2,-9,0,4,8.5904694,8.6143694,0,0,0,-1112.4825,0,3,2,2021,1,0,37,37,1,0,1,14.963271,14.963271,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,5,8,5,1,1555,-26025.072,-10690.587,0,0,0,0,2751.4734 +4140,5054,8967,8968,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.7507901,7.1981621,30,0,-18.840925,0,2,2,2021,10,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,6.6743469,47.52,57.75,47.22,53.97,10,1,1,0,0,10,1,5,1,682.5,343012.94,309523.81,189982.78,129108.23,4820.4316,14327.006,4834.811 +4140,5054,8968,8967,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,9.1601276,8.7128448,30,0,18.567019,0,2,3,2021,15,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.895124,8.5371065,47.22,53.97,47.52,57.75,8.333333333333334,1,1,0,0,9,1,5,1,682.5,343012.94,309523.81,189982.78,129108.23,4820.4316,14327.006,4834.811 +4141,5055,8969,8970,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.4334059,8.9066229,0,19,-6,-40.655731,0,2,-9,2021,9,0,35,35,1,1,0,22.926233,22.926233,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,48,49,8,1,1,0,0,11,12,5,0,636.5,350628.03,150324.63,104623.71,24345.232,6054.8203,0,3354.8784 +4141,5055,8970,8969,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.6228132,8.0392761,0,19,6,-172.00018,0,2,2,2021,12,0,85,0,1,2,0,3.8114564,3.8114564,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,52,55,7,1,1,0,0,12,12,5,0,636.5,350628.03,150324.63,104623.71,24345.232,6054.8203,0,3354.8784 +4142,5056,8971,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,8.668704,8.6924191,0,0,0,-905.4151,-9,-9,-9,2021,13,1,43,0,1,1,0,14.637184,14.637184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.31,40.99,-9,-9,6.666666666666667,1,1,0,0,4,2,5,0,182,-42463.34,32346.947,142695.78,106331.43,0,1347.3512,2181.4788 +4143,5057,8972,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,7.0153589,7.3662367,0,0,-999.89148,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,124.52448,0,1064.6306,0,1,1,0,0,7.2182875,56,35.8,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1104,358573.16,40571.602,184276.81,0,0,0,2508.1516 +4144,5058,8973,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.4000974,6.4065585,0,0,-995.58575,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,3.7858629,0,0,1,1,0,0,6.6464133,56.6,23.1,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1774,164734.73,-114874.06,26875.162,0,0,0,1887.9011 +4145,5059,8974,-9,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,7.9739165,7.9800949,0,0,0,-954.37549,0,2,2,2021,12,4,34,38,1,4,0,9.6219358,9.6219358,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,33.14,-9,-9,5,3,4,0,0,10,8,3,1,440.5,-33104.242,0,0,0,17617.182,5596.2144,1034.0402 +4145,5059,8975,-9,8974,-9,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-966.26642,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,1,440.5,-33104.242,0,0,0,17617.182,5596.2144,1034.0402 +4145,5060,8976,-9,8978,8977,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.0916,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,5,1,997.33331,722777.06,352903.97,592171.63,199339.16,5405.6938,1380.2036,3974.0024 +4145,5060,8977,8978,-9,-9,1,1,42,2,2,0,1,1,-9,0,5,8.7824898,8.944972,0,3,7,-55.98418,0,-9,-9,2021,0,0,43,43,1,0,0,16.769344,16.769344,.05,.05,0,0,0,0,0,0,1,1,0,1.2664828,0,51.13,53.88,62.39,56.71,8.333333333333334,3,4,0,0,11,8,5,1,997.33331,722777.06,352903.97,592171.63,199339.16,5405.6938,1380.2036,3974.0024 +4145,5060,8978,8977,-9,-9,1,0,35,2,2,0,1,1,-9,0,5,8.294651,8.7452564,0,3,-7,-149.31392,0,-9,-9,2021,6,0,12,42,1,0,0,51.651134,51.651134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.13,53.88,6.666666666666667,3,4,0,0,11,8,5,1,997.33331,722777.06,352903.97,592171.63,199339.16,5405.6938,1380.2036,3974.0024 +4146,5061,8979,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-908.44299,0,2,-9,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.41,26.12,-9,-9,5,3,4,0,1,0,8,1,0,125,-100022.95,0,0,0,0,0,1683.3455 +4146,5062,8980,-9,8979,-9,1,1,23,0,0,0,2,2,-9,0,4,7.1962996,7.0093374,0,0,0,-920.14362,0,2,2,2021,2,0,17,0,1,0,1,6.020596,6.020596,0,0,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,683,-3219.6267,0,0,0,0,0,519.09265 +4147,5063,8981,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-905.23743,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,5.7725821,0,0,1,1,0,0,0,56.44,22.93,-9,-9,6.666666666666667,1,1,0,0,0,6,1,1,454,108299.12,0,0,0,0,0,545.19696 +4148,5064,8982,8983,-9,-9,1,1,54,0,0,0,2,2,-9,0,1,7.88625,8.0094395,0,8,2,-83.532585,0,3,3,2021,12,0,50,50,1,0,0,6.8967462,6.8967462,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.34,17.29,44.26,38.35,5,1,1,0,0,8,13,4,0,1445.5,283646.75,134455.66,133783.34,0,0,0,2476.8496 +4148,5064,8983,8982,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,6.9730868,7.1319771,0,8,-2,80.836571,0,3,3,2021,10,0,23,22,1,0,0,6.3291869,6.3291869,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.26,38.35,57.34,17.29,6.666666666666667,1,1,0,0,8,13,4,0,1445.5,283646.75,134455.66,133783.34,0,0,0,2476.8496 +4148,5065,8984,-9,8983,8982,1,0,32,0,0,0,1,1,-9,0,3,8.2598057,8.4510212,0,0,0,-1024.6041,0,2,2,2021,8,0,36,36,1,0,1,19.468731,19.468731,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,8,13,5,0,66,470203.5,203299.28,101643.7,66731.43,0,0,1975.2681 +4148,5066,8985,-9,8983,8982,1,1,27,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1027.9725,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.62813854,0,1,1,0,.9590652,0,50.82,57.78,-9,-9,8.333333333333334,1,1,1,0,0,13,1,0,116,75798.219,0,0,0,0,648.48279,454.2832 +4149,5067,8986,8987,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.2843051,3.597733,51,-2,-143.32921,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2909423,4.0571074,47.39,51.78,56.5,37.6,8.333333333333334,1,1,0,0,0,9,2,1,765,855415.88,94945.703,498298,0,0,0,1426.871 +4149,5067,8987,8986,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.0567346,6.5736418,51,2,64.55027,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7020664,6.2719817,56.5,37.6,47.39,51.78,8.333333333333334,1,1,0,0,0,9,2,1,765,855415.88,94945.703,498298,0,0,0,1426.871 +4150,5068,8988,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.0836954,6.9197798,0,0,-992.4527,0,3,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8144474,25.37,58.44,-9,-9,3.333333333333333,1,1,0,1,0,2,2,1,1433,574980.13,65589.125,166117.2,0,0,0,784.19788 +4151,5069,8989,-9,-9,-9,1,0,23,0,0,1,2,0,0,0,2,0,0,0,0,0,-1123.6184,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.79,43.81,-9,-9,5,1,1,0,0,6,6,1,1,618,0,0,0,0,0,0,-70.720428 +4152,5070,8990,8991,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,12,0,0,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.64,39.37,44.33,20.38,3.333333333333333,1,1,0,0,11,11,1,1,983.5,43655.633,0,0,0,0,0,2196.6768 +4152,5070,8991,8990,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,12,0,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,43.580402,0,0,1,1,0,0,0,44.33,20.38,35.64,39.37,8.333333333333334,1,1,0,0,0,11,1,1,983.5,43655.633,0,0,0,0,0,2196.6768 +4153,5071,8992,8996,-9,-9,1,1,32,1,3,0,2,2,-9,0,4,0,0,0,1,0,6.8586397,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8993,-9,8996,8992,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-894.93921,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8994,-9,8996,8992,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-995.40302,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8995,-9,8996,8992,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.27008,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4153,5071,8996,8992,-9,-9,1,0,32,1,3,0,3,3,-9,0,5,6.7993898,6.7785649,0,1,0,5.0738564,0,3,3,2021,7,0,16,16,1,0,0,7.3322191,7.3322191,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,10,1,1,0,0,2,13,2,0,1272,61122.141,29190.107,0,0,6184.2456,0,2037.3701 +4154,5072,8997,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.3594136,5.8057323,0,0,-969.27496,0,2,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2906361,5.3220134,21.46,39.16,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,5300,-74058.914,-67670.906,240450.59,0,0,0,789.12158 +4155,5073,8998,8999,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.7723093,8.6092501,0,5,1,178.13489,0,2,1,2021,6,0,50,50,1,0,0,14.811192,14.811192,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.48,60.97,8.333333333333334,1,1,0,0,8,4,4,1,2214,234225.31,41405.32,0,0,1677.4523,0,3488.7188 +4155,5073,8999,8998,-9,-9,1,1,35,0,0,0,1,1,0,0,4,0,0,0,5,-1,-15.61326,-9,-9,-9,2021,10,1,0,0,2,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.48,60.97,54.1,59.11,8.333333333333334,1,1,0,0,3,4,4,1,2214,234225.31,41405.32,0,0,1677.4523,0,3488.7188 +4156,5074,9000,9001,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.1171708,7.2533126,32,1,57.73354,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8375645,7.0808806,55.17,47.52,53.81,53.56,8.333333333333334,1,1,0,0,12,4,2,1,450,-46680.223,43604.867,0,0,10917.363,0,1489.7476 +4156,5074,9001,9000,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,0,0,32,-1,-63.097839,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.9184117,0,53.81,53.56,55.17,47.52,10,1,1,0,0,8,4,2,1,450,-46680.223,43604.867,0,0,10917.363,0,1489.7476 +4157,5075,9002,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.9280825,6.9368777,0,0,-975.97742,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7936068,6.7627969,55.43,41.03,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1057,435352.38,302075.47,266557.47,0,0,0,1452.8385 +4158,5076,9003,9005,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.5751462,7.8454223,0,4,0,-22.520647,0,2,2,2021,6,0,30,32,1,0,0,10.794913,10.794913,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.13,46.57,8.333333333333334,1,1,0,0,9,2,5,1,474.33334,1259023.4,998493.69,197712.86,0,9664.1914,0,4410.9624 +4158,5076,9004,-9,9003,9005,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1191.0131,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,474.33334,1259023.4,998493.69,197712.86,0,9664.1914,0,4410.9624 +4158,5076,9005,9003,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.3937225,8.9109983,6.5434833,4,0,-76.092392,0,-9,-9,2021,7,0,48,40,1,0,0,26.060556,26.060556,.05,.05,0,0,0,0,0,0,1,1,0,6.4550085,0,60.13,46.57,54.79,55.86,8.333333333333334,1,1,0,0,11,2,5,1,474.33334,1259023.4,998493.69,197712.86,0,9664.1914,0,4410.9624 +4159,5077,9006,-9,9007,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.12225,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,1280.5,102622.42,0,0,0,1242.4233,-69.753067,1689.8268 +4159,5077,9007,-9,-9,-9,1,0,42,0,1,0,3,3,-9,1,2,0,0,0,0,0,-943.47021,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.82,35.87,-9,-9,5,1,1,0,0,0,2,1,0,1280.5,102622.42,0,0,0,1242.4233,-69.753067,1689.8268 +4159,5078,9008,-9,9007,-9,1,0,18,0,1,1,3,0,0,0,4,0,0,0,0,0,-1018.4071,-9,3,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,2,1,0,4600,3516.1873,0,0,0,0,262.73209,1156.7356 +4160,5079,9009,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,5,0,6.7150078,6.6272554,0,0,-1068.777,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0860205,6.4930711,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,1,412,360822.06,121439.63,183057.66,0,0,0,1728.6945 +4161,5080,9010,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7078314,6.7028813,0,0,-1153.528,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.7819681,57.92,51.82,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,707,554308.38,0,312476.13,0,0,0,988.01294 +4162,5081,9011,9012,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.6023855,8.526618,0,6,12,-63.013336,0,-9,-9,2021,6,0,40,40,1,0,0,14.439722,14.439722,.05,.05,0,0,0,0,0,0,0,0,0,3.7392082,0,57.33,53.46,57.16,56.15,10,1,1,0,0,13,4,5,1,463,1332770,644898.5,244108.48,0,0,0,2928.0313 +4162,5081,9012,9011,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.0432253,8.0979996,0,6,-12,5.3621531,0,2,2,2021,6,0,38,38,1,0,0,9.6937981,9.6937981,.05,.05,0,0,0,0,0,0,0,0,0,3.8145478,0,57.16,56.15,57.33,53.46,10,1,1,0,0,13,4,5,1,463,1332770,644898.5,244108.48,0,0,0,2928.0313 +4163,5082,9013,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1118.6039,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,7,1,1,0,3.3833315,0,61.95,30.05,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,6228,0,0,0,0,0,0,146.52982 +4164,5083,9014,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,8.7788887,8.6187487,0,0,0,-966.90942,0,-9,-9,2021,12,0,40,55,1,0,0,18.038197,18.038197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,12,7,5,0,697,89679.336,154058.34,0,0,0,3665.2605,2031.9731 +4165,5084,9015,9017,-9,-9,1,0,41,1,3,0,2,2,-9,1,2,6.3206,6.6903977,0,24,0,-2.9647036,0,3,2,2021,17,4,16,16,1,4,0,3.8592668,3.8592668,.05,.05,0,0,0,0,0,110,1,1,0,0,0,42.61,44.32,46.81,47.22,6.666666666666667,2,3,0,0,8,9,2,1,877.33331,-7103.7261,2446.2185,0,0,0,0,3500.7478 +4165,5084,9016,-9,9015,9017,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1186.6023,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,2,1,877.33331,-7103.7261,2446.2185,0,0,0,0,3500.7478 +4165,5084,9017,9015,-9,-9,1,1,41,1,3,0,2,2,-9,0,3,6.9888015,6.8381996,0,13,0,54.705498,0,-9,-9,2021,15,4,40,39,1,4,0,3.2424135,3.2424135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.81,47.22,42.61,44.32,6.666666666666667,2,3,0,1,14,9,2,1,877.33331,-7103.7261,2446.2185,0,0,0,0,3500.7478 +4166,5085,9018,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-960.35321,0,2,2,2021,15,5,0,15,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8839681,0,35.86,64.55,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,437,395523.34,315133.72,30521.508,0,0,0,635.18353 +4167,5086,9019,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,8.0581532,8.1214676,0,0,-896.12701,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,6.4718647,0,0,1,1,0,0,8.1517506,49.88,31.82,-9,-9,5,1,1,0,0,0,11,4,1,101,607463.69,186904.77,232504.58,0,0,0,2336.886 +4168,5087,9020,9021,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,0,0,13,-8,48.039818,-9,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,62.49,55.09,10,1,1,1,0,11,4,2,1,989,1187674,373048.13,256412.91,0,0,0,1075.76 +4168,5087,9021,9020,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.5961566,6.7205358,13,8,82.323586,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,6.9612474,62.49,55.09,60.29,52.11,8.333333333333334,1,1,0,0,15,4,2,1,989,1187674,373048.13,256412.91,0,0,0,1075.76 +4169,5088,9022,9023,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.6984348,7.7149067,0,25,5,-88.125557,0,2,2,2021,8,0,45,45,1,0,0,4.5897679,4.5897679,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,54.39,44.26,35.1,36.97,6.666666666666667,1,1,0,0,8,9,3,1,733,222032.53,123925.41,0,0,1491.7964,0,1482.8278 +4169,5088,9023,9022,-9,-9,1,0,41,0,0,0,2,2,-9,0,1,7.7726326,7.5907245,0,25,-5,-197.51015,0,2,2,2021,14,2,21,18,1,2,0,9.9322958,9.9322958,0,0,0,0,0,0,0,2,0,0,0,0,0,35.1,36.97,54.39,44.26,3.333333333333333,1,1,0,0,8,9,3,1,733,222032.53,123925.41,0,0,1491.7964,0,1482.8278 +4170,5089,9024,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-905.48395,0,-9,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,31.69,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,795,515709.19,408364.53,0,0,0,27.144749,1922.1918 +4171,5090,9025,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,2,0,8.0248632,8.5292215,0,0,-934.242,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5048666,5.1119137,42.75,42.61,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,161,716731.19,325139.06,376224.34,0,0,2165.448,2575.2595 +4172,5091,9026,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1110.577,-9,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.435533,0,62.66,52.4,-9,-9,10,1,1,0,0,2,8,1,0,1515,-99017.125,0,0,0,0,0,-336.06516 +4173,5092,9027,9031,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,8.5661449,8.6011038,0,9,9,25.5238,0,-9,-9,2021,12,1,60,60,1,1,0,13.319421,13.319421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,51,46.12,44.87,5,3,4,0,0,9,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9028,-9,9031,9027,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.373,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9029,-9,9031,9027,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.9184,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,3,4,-9,0,0,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9030,-9,9031,9027,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.6892,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4173,5092,9031,9027,-9,-9,1,0,34,0,3,0,1,1,-9,0,3,8.0507956,8.0472183,0,8,0,56.684387,0,-9,-9,2021,12,1,24,41,1,1,0,21.269884,21.269884,0,0,0,0,0,0,0,0,1,1,0,0,0,46.12,44.87,48,51,6.666666666666667,3,4,0,0,10,8,4,1,462.39999,1564475.6,1497.2562,995119.31,0,0,0,4519.4941 +4174,5093,9032,-9,9033,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.68109,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,2655,-21377.75,0,0,0,0,380.4762,677.62909 +4174,5093,9033,-9,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,0,0,0,0,0,-915.09698,-9,2,2,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.99,53.82,-9,-9,6.666666666666667,1,1,0,0,7,11,1,0,2655,-21377.75,0,0,0,0,380.4762,677.62909 +4175,5094,9034,9035,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.6545067,5.4647183,11,9,-13.760611,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.248508,5.7757449,53.37,52.37,50.37,36.66,6.666666666666667,1,1,0,0,13,10,2,1,745,254041.22,117470.23,242512.72,0,5093.5742,0,322.4827 +4175,5094,9035,9034,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,11,0,-4.1062708,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4505507,0,50.37,36.66,53.37,52.37,6.666666666666667,1,1,0,0,8,10,2,1,745,254041.22,117470.23,242512.72,0,5093.5742,0,322.4827 +4176,5095,9036,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.542655,8.4753494,0,0,0,-995.57813,-9,-9,-9,2021,8,0,42,0,1,0,0,16.415134,16.415134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,194.5,758691.94,261468.55,437360.38,0,0,1372.0886,2335.0791 +4176,5095,9037,-9,9036,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.98334,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,194.5,758691.94,261468.55,437360.38,0,0,1372.0886,2335.0791 +4177,5096,9038,9039,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.3425369,8.4227381,0,7,-2,39.781021,0,2,3,2021,13,1,45,50,1,1,0,9.6611938,9.6611938,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.29,34.56,16.11,46.91,8.333333333333334,1,1,0,0,8,13,4,0,738,553065.38,209095.02,366674.31,0,0,0,2475.1338 +4177,5096,9039,9038,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,6.1281295,6.2838292,7,2,-24.363756,0,2,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2424917,16.11,46.91,46.29,34.56,1.666666666666667,1,1,0,0,1,13,4,0,738,553065.38,209095.02,366674.31,0,0,0,2475.1338 +4177,5097,9040,-9,9039,9038,1,1,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1003.3412,0,2,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,10,1,1,1,0,3,13,1,0,2046,-73262.016,0,0,0,0,0,1243.7266 +4178,5098,9041,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.3564291,8.2178984,0,0,0,-1070.9088,-9,-9,-9,2021,9,1,39,0,1,1,0,14.118931,14.118931,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,12,9,4,1,270,98603.391,53003.676,139045.39,129166.16,0,0,1387.9849 +4179,5099,9042,-9,9044,9043,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.6129,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,301,448431.09,56711.07,245662.25,123435.7,0,1102.2198,2714.1555 +4179,5099,9043,9044,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2820663,8.3611574,6.1040034,6,3,22.270224,0,3,2,2021,16,5,38,37,1,5,0,13.303783,13.303783,.05,.05,0,0,0,0,0,2,1,1,0,6.2988219,0,52.93,52.64,51.41,56.15,5,1,1,0,0,14,2,4,0,301,448431.09,56711.07,245662.25,123435.7,0,1102.2198,2714.1555 +4179,5099,9044,9043,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.3367205,7.5021296,5.7744431,6,-3,-75.442848,0,2,2,2021,16,5,24,20,1,5,0,9.1163836,9.1163836,.05,.05,0,0,0,0,0,0,1,1,0,6.4841166,0,51.41,56.15,52.93,52.64,5,1,1,0,0,14,2,4,0,301,448431.09,56711.07,245662.25,123435.7,0,1102.2198,2714.1555 +4180,5100,9045,-9,-9,-9,1,0,47,0,1,0,3,3,-9,1,2,0,5.2624197,5.1736469,0,0,-827.69244,0,3,3,2021,22,9,0,10,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.0274143,0,42.52,32.35,-9,-9,1.666666666666667,1,1,0,0,2,8,2,0,408,82472.859,0,0,0,0,0,2282.2559 +4181,5101,9046,9047,-9,-9,1,0,35,0,2,0,2,2,-9,0,2,7.5090461,7.3980751,0,17,-4,-85.483505,0,3,2,2021,12,0,22,22,1,0,0,8.8702354,8.8702354,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.28,52.09,52,54.51,5,1,1,0,0,13,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4181,5101,9047,9046,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.8387356,9.0365782,0,18,4,-36.454338,0,2,2,2021,8,0,45,45,1,0,0,18.634794,18.634794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,49.28,52.09,6.666666666666667,1,1,0,0,13,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4181,5101,9048,-9,9046,9047,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-974.29919,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4181,5101,9049,-9,9046,9047,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.54517,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,541.5,1171968.8,699441.88,630389.5,193587.8,0,0,2636.7849 +4182,5102,9050,9051,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.3851342,5.7886271,34,1,4.6961136,0,-9,-9,2021,8,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.636476,5.7518783,54.37,54.8,65.23999999999999,41.59,8.333333333333334,1,1,0,0,10,6,2,1,387,595728.38,354687.69,166507.41,0,0,0,2254.1958 +4182,5102,9051,9050,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.3120732,7.4572082,34,-1,15.698136,0,2,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1871676,7.0839577,65.23999999999999,41.59,54.37,54.8,8.333333333333334,1,1,0,0,4,6,2,1,387,595728.38,354687.69,166507.41,0,0,0,2254.1958 +4183,5103,9052,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9254198,8.9111996,0,0,0,-973.33496,0,3,3,2021,7,0,37,41,1,0,0,23.072151,23.072151,0,0,0,0,0,0,0,0,0,0,0,6.1055903,0,58.72,43.42,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,89,1653951.5,1453187.3,70743.117,0,0,0,2918.406 +4184,5104,9053,-9,9055,9054,1,1,18,0,0,0,2,2,-9,0,4,0,4.2996335,4.6011391,0,0,-888.44647,0,2,2,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5321679,0,57.16,56.15,-9,-9,10,1,1,0,0,9,11,2,1,242,167556.67,0,0,0,0,0,77.504051 +4184,5105,9054,9055,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.2503223,8.2267942,0,6,7,-73.29628,0,-9,-9,2021,7,0,40,45,1,0,0,10.113659,10.113659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,60.12,54.8,10,1,1,0,0,7,11,4,1,339.5,64429.797,97651.469,15631.595,46422.98,8328.1777,0,2337.3606 +4184,5105,9055,9054,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.8637838,7.7344561,0,6,-7,-66.997322,0,2,2,2021,6,0,28,28,1,0,0,8.7566814,8.7566814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,7,11,4,1,339.5,64429.797,97651.469,15631.595,46422.98,8328.1777,0,2337.3606 +4185,5106,9056,9057,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.9901543,4.7492952,10,-4,79.352104,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2601418,4.6504641,49.94,58.01,32.6,29.79,8.333333333333334,1,1,0,1,5,5,2,1,254,154021.98,13299.586,164556.16,0,5602.5947,0,1464.1289 +4185,5106,9057,9056,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,4,-23.831833,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,28.49201,0,0,1,1,0,0,0,32.6,29.79,49.94,58.01,3.333333333333333,1,1,0,1,5,5,2,1,254,154021.98,13299.586,164556.16,0,5602.5947,0,1464.1289 +4186,5107,9058,-9,9061,9060,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.2583,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4186,5107,9059,-9,9061,9060,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.5701,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4186,5107,9060,9061,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,9.6697922,9.9515495,0,9,-1,59.390865,0,2,2,2021,7,0,45,52,1,0,0,34.600704,34.600704,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,56.95,50.51,53.71,8.333333333333334,1,1,0,0,13,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4186,5107,9061,9060,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,6.6418819,6.6500211,0,10,1,6.602777,0,3,3,2021,2,0,15,15,1,0,0,5.3931489,5.3931489,.05,.05,0,0,0,0,0,0,0,0,0,.97133923,0,50.51,53.71,49.41,56.95,8.333333333333334,1,1,0,0,9,8,5,1,4972,1115409.6,596903.38,548645,0,0,0,5165.2656 +4187,5108,9062,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,7.6032372,7.5668287,0,0,0,-1184.2031,0,3,3,2021,21,9,30,40,1,9,0,8.1217146,8.1217146,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.76,20.17,-9,-9,1.666666666666667,1,1,0,1,6,9,3,1,398,14841.538,-49386.391,0,0,0,0,1793.3986 +4188,5109,9063,9064,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.3816023,8.3046017,0,5,-4,-69.209076,0,2,2,2021,17,5,24,24,1,5,0,16.533209,16.533209,0,0,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,48.48,55.86,8.333333333333334,1,1,0,0,7,9,5,0,1190.3334,164866.75,23372.256,394462.88,258905.94,2097.7258,0,3092.3057 +4188,5109,9064,9063,-9,-9,1,1,34,1,1,0,1,1,-9,0,4,8.7091045,8.6966753,0,9,4,-110.05947,0,2,2,2021,6,0,37,37,1,0,0,17.513767,17.513767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.48,55.86,40.77,61.04,8.333333333333334,1,1,0,0,8,9,5,0,1190.3334,164866.75,23372.256,394462.88,258905.94,2097.7258,0,3092.3057 +4188,5109,9065,-9,9063,9064,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.37512,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,9,5,0,1190.3334,164866.75,23372.256,394462.88,258905.94,2097.7258,0,3092.3057 +4189,5110,9066,9067,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.9056215,7.0019765,6,-1,-31.376507,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0992208,56.78,49.38,32.82,32.48,8.333333333333334,1,1,0,0,0,12,2,0,382.5,339816.22,205924.16,0,0,0,0,1407.3096 +4189,5110,9067,9066,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,6,1,38.535316,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,6.1001668,0,0,1,1,0,0,0,32.82,32.48,56.78,49.38,1.666666666666667,1,1,0,0,0,12,2,0,382.5,339816.22,205924.16,0,0,0,0,1407.3096 +4190,5111,9068,9069,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,5.6376448,5.6409101,49,3,-39.376408,0,-9,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3262277,5.2050905,33.22,17.55,52.23,55.6,8.333333333333334,1,1,0,0,0,5,2,0,442.5,275334.56,150410.75,133465.61,0,0,0,1625.3015 +4190,5111,9069,9068,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,49,-3,-101.04506,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.23,55.6,33.22,17.55,8.333333333333334,1,1,0,0,0,5,2,0,442.5,275334.56,150410.75,133465.61,0,0,0,1625.3015 +4191,5112,9070,9071,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,42,2,10.495155,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.32,32.77,50.2,39.38,5,1,1,0,0,8,12,3,1,367.5,294190.97,114162.28,126571.14,0,0,0,2322.8452 +4191,5112,9071,9070,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,7.6999602,7.5601406,0,42,-2,-4.9618311,0,-9,-9,2021,11,0,25,25,1,0,0,9.0110817,9.0110817,0,0,0,0,0,0,0,0,1,1,0,0,0,50.2,39.38,38.32,32.77,5,1,1,0,0,15,12,3,1,367.5,294190.97,114162.28,126571.14,0,0,0,2322.8452 +4192,5113,9072,9073,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,6.1996541,5.9933596,0,26,2,39.29631,0,3,3,2021,12,0,40,35,1,0,0,1.4078133,1.4078133,0,0,0,0,0,0,0,0,1,1,0,0,0,42.87,42.51,55.93,52.62,3.333333333333333,2,3,0,1,12,2,2,1,1172.5,0,0,0,0,0,0,493.43155 +4192,5113,9073,9072,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,0,0,10,-2,-163.50928,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.93,52.62,42.87,42.51,6.666666666666667,2,3,0,0,0,2,2,1,1172.5,0,0,0,0,0,0,493.43155 +4192,5114,9074,-9,9073,9072,1,1,22,0,0,0,1,1,1,0,4,6.4296918,5.9697819,0,0,0,-1113.6766,-9,2,2,2021,9,0,7,0,1,0,1,7.2721767,7.2721767,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,-9,-9,8.333333333333334,2,3,0,0,2,2,2,1,2357,-195515.25,0,0,0,0,1924.7217,804.09784 +4192,5115,9075,-9,9073,9072,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1006.2328,1,2,2,2021,6,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,10,2,3,0,0,2,2,1,1,653,0,0,0,0,0,0,-742.26532 +4192,5116,9076,-9,9073,9072,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1086.4371,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.72,45.9,-9,-9,6.666666666666667,2,3,0,0,0,2,1,1,848,41787.305,0,0,0,0,0,0 +4193,5117,9077,9078,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,0,0,0,23,7,24.599903,-9,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.76,53.8,47.57,45.67,8.333333333333334,2,3,0,0,11,9,4,1,1771.5,487511.94,514651.66,0,0,1399.9915,0,1332.5682 +4193,5117,9078,9077,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.2600327,8.2073822,0,23,-7,-41.748234,-9,2,2,2021,9,1,46,0,1,1,0,10.591089,10.591089,0,0,0,0,0,0,0,0,0,0,0,0,0,47.57,45.67,41.76,53.8,8.333333333333334,2,3,0,0,12,9,4,1,1771.5,487511.94,514651.66,0,0,1399.9915,0,1332.5682 +4193,5118,9079,9080,-9,-9,1,0,25,0,0,0,2,2,-9,0,1,8.0887108,7.8753872,0,1,-3,37.159904,-9,-9,-9,2021,29,11,47,0,1,11,0,6.3703537,6.3703537,0,0,0,0,0,0,0,0,0,0,0,.048464019,0,20.43,41.07,46.3,45.42,3.333333333333333,2,3,0,0,3,9,4,1,1129,57467.047,18408.094,378807.41,341097.38,28459.723,2609.1355,3125.8916 +4193,5118,9080,9079,9078,9077,1,1,28,0,0,0,1,1,-9,0,2,8.3245134,8.3214874,0,1,3,50.859772,-9,3,3,2021,17,5,40,0,1,5,0,10.355744,10.355744,.05,.05,0,0,0,0,0,0,0,0,0,5.2308345,0,46.3,45.42,20.43,41.07,5,2,3,0,0,3,9,4,1,1129,57467.047,18408.094,378807.41,341097.38,28459.723,2609.1355,3125.8916 +4194,5119,9081,9082,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,42,-5,5.4295421,0,2,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1743014,0,38.39,48.48,57.16,56.15,8.333333333333334,1,1,0,0,4,12,3,1,846.5,1428148.8,1297497,214672.19,0,0,0,2538.2566 +4194,5119,9082,9081,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.4635248,8.3880873,42,5,-163.53508,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2291222,8.1384325,57.16,56.15,38.39,48.48,8.333333333333334,1,1,0,0,8,12,3,1,846.5,1428148.8,1297497,214672.19,0,0,0,2538.2566 +4195,5120,9083,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2978382,8.2184601,0,0,0,-1005.9615,0,3,3,2021,9,1,37,37,1,1,0,10.739205,10.739205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.89,48.05,-9,-9,8.333333333333334,1,1,0,0,9,7,4,1,309,709867.44,577717.81,170603.45,48979.355,0,0,1068.809 +4196,5121,9084,9085,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,4.5760536,4.2193995,60,-2,-41.078495,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8799939,0,2,1,1,0,4.3236923,4.5191646,48.12,23.03,41.2,24.41,8.333333333333334,1,1,0,0,5,12,2,1,1277.5,411685.34,145016.25,286765.88,0,6432.1162,843.85175,4102.5938 +4196,5121,9085,9084,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.0578146,7.2115583,60,2,69.076485,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,23.647034,0,14.5,1,1,0,0,7.5703268,41.2,24.41,48.12,23.03,8.333333333333334,1,1,0,0,0,12,2,1,1277.5,411685.34,145016.25,286765.88,0,6432.1162,843.85175,4102.5938 +4197,5122,9086,9087,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,0,0,9,7,1.6406739,0,2,3,2021,27,10,0,0,4,10,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,31.36,58.59,35.86,64.55,8.333333333333334,1,1,0,0,6,11,5,1,205.5,521983.63,122567.04,150519.5,0,0,0,3773.6958 +4197,5122,9087,9086,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8772221,8.7959099,0,9,-7,6.4127116,0,2,2,2021,9,1,41,0,1,1,0,22.165567,22.165567,0,0,0,0,0,0,0,2,1,1,0,3.3814228,0,35.86,64.55,31.36,58.59,8.333333333333334,1,1,0,0,8,11,5,1,205.5,521983.63,122567.04,150519.5,0,0,0,3773.6958 +4198,5123,9088,9089,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,8.357852,8.3005228,25,-4,132.30905,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6748667,7.9005737,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,10,5,4,1,386,1786021.4,1256423.5,101551.9,0,7167.4512,0,2515.9702 +4198,5123,9089,9088,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.9552784,6.9411325,25,4,-59.919064,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7258646,6.920022,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,5,4,1,386,1786021.4,1256423.5,101551.9,0,7167.4512,0,2515.9702 +4199,5124,9090,9091,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5505581,9.0137367,0,6,3,35.050732,0,2,2,2021,10,0,60,70,1,1,0,10.261357,10.261357,0,0,0,0,0,0,0,0,0,0,0,5.9150577,0,51,49,57.16,56.15,7,1,1,0,0,1,11,4,1,928.5,1234922.9,913264.06,423627.63,29905.471,0,0,2735.4668 +4199,5124,9091,9090,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,6,-3,105.67309,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,49,8.333333333333334,1,1,0,0,0,11,4,1,928.5,1234922.9,913264.06,423627.63,29905.471,0,0,2735.4668 +4199,5125,9092,-9,9091,9090,1,1,30,0,0,0,2,2,-9,0,4,6.4467621,6.4647746,0,0,0,-1002.0283,0,2,2,2021,10,0,60,70,1,1,1,1.5410241,1.5410241,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,11,2,1,1915,-119203.59,0,160363.47,48692.336,12983.905,0,-239.40834 +4200,5126,9093,9094,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.7239008,8.5945005,0,2,0,61.280544,0,2,2,2021,7,0,50,40,1,0,0,11.695935,11.695935,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,21.11,64.48999999999999,8.333333333333334,1,1,0,0,2,10,5,1,338.5,122326.66,41237.676,204292.77,90384.633,0,0,3460.6567 +4200,5126,9094,9093,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.7689738,8.0626297,0,2,0,-135.55246,0,2,2,2021,14,2,39,37,1,2,0,8.1059952,8.1059952,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.11,64.48999999999999,54.69,57.47,8.333333333333334,1,1,0,0,12,10,5,1,338.5,122326.66,41237.676,204292.77,90384.633,0,0,3460.6567 +4201,5127,9095,9096,-9,-9,1,1,59,0,2,0,3,3,-9,0,2,7.1715255,7.0060205,0,38,0,-57.435555,0,3,2,2021,6,1,20,38,1,1,0,8.4039087,8.4039087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,73.97,17.6,50.1,51.7,6.666666666666667,2,3,0,0,10,5,3,1,454,201179.38,75115.813,147254.38,43066.047,0,0,1306.7676 +4201,5127,9096,9095,-9,-9,1,0,59,0,2,0,1,1,-9,0,3,7.5791097,7.6811028,0,38,0,92.827232,0,3,2,2021,6,0,20,45,1,0,0,18.402115,18.402115,0,0,0,0,0,0,0,0,1,1,0,0,0,50.1,51.7,73.97,17.6,6.666666666666667,2,3,0,0,10,5,3,1,454,201179.38,75115.813,147254.38,43066.047,0,0,1306.7676 +4201,5128,9097,-9,9096,9095,1,1,32,0,2,0,2,2,-9,0,5,8.5742531,8.6676512,0,0,0,-967.87262,0,2,2,2021,7,0,54,53,1,0,1,9.7255011,9.7255011,0,0,0,0,0,0,0,0,1,1,0,0,0,57.44,52.09,-9,-9,5,2,3,0,0,6,5,5,1,162,225306.72,105063.63,-9467.0234,2193.7881,0,0,1784.1013 +4201,5129,9098,-9,9099,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.8733,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,4,1,383,132785.56,-6314.1558,0,0,0,0,1041.2697 +4201,5129,9099,-9,9096,9095,1,0,34,0,2,0,1,1,-9,0,4,7.9391131,7.9227924,0,0,0,-1001.3312,0,1,3,2021,15,4,29,28,1,4,1,10.699797,10.699797,0,0,0,0,0,0,0,0,1,1,0,1.0106239,0,40.96,61.14,-9,-9,6.666666666666667,2,3,0,0,7,5,4,1,383,132785.56,-6314.1558,0,0,0,0,1041.2697 +4201,5129,9100,-9,9099,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.0692,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,4,1,383,132785.56,-6314.1558,0,0,0,0,1041.2697 +4202,5130,9101,9102,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,8.2264004,8.4227419,0,3,0,62.755917,0,-9,-9,2021,9,0,55,55,1,0,0,8.4430208,8.4430208,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,58.08,40.76,8.333333333333334,1,1,0,0,12,10,4,0,276,716408.25,504041.56,229318.5,0,506.96661,1543.0302,1684.6899 +4202,5130,9102,9101,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,0,0,3,0,177.18057,0,1,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.17885111,42,1,0,1,0,0,58.08,40.76,60.12,54.8,10,1,1,0,0,6,10,4,0,276,716408.25,504041.56,229318.5,0,506.96661,1543.0302,1684.6899 +4202,5131,9103,-9,-9,-9,1,0,21,0,0,0,2,2,1,1,5,0,0,0,0,0,-1100.2126,-9,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,39.71,48.15,-9,-9,10,1,1,1,0,0,10,1,0,643,11112.101,0,0,0,1026.6243,0,941.51215 +4203,5132,9104,9105,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,36,9,67.747513,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,57.33,53.46,6.666666666666667,1,1,1,0,0,13,2,0,366,-14824.5,0,0,0,0,0,1967.97 +4203,5132,9105,9104,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.669591,6.7253289,0,36,0,1.4492433,0,3,3,2021,8,0,16,15,1,0,0,4.7325659,4.7325659,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.08,57.2,8.333333333333334,1,1,0,0,4,13,2,0,366,-14824.5,0,0,0,0,0,1967.97 +4204,5133,9106,-9,9107,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.001,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,1,0,642,-795.60889,0,0,0,0,0,465.32376 +4204,5133,9107,-9,-9,-9,1,0,20,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1051.9868,1,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,56.19,-9,-9,6.666666666666667,1,1,0,0,9,1,1,0,642,-795.60889,0,0,0,0,0,465.32376 +4205,5134,9108,-9,9109,9110,1,0,22,0,0,0,2,2,-9,0,4,7.3036203,7.5405478,0,0,0,-946.50854,0,2,2,2021,6,0,40,45,1,0,1,5.001019,5.001019,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,6,4,3,1,1456,-50069.852,0,0,0,0,0,655.289 +4205,5135,9109,9110,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.3723392,8.3934002,0,8,-5,25.074701,0,2,3,2021,9,0,37,0,1,0,0,12.912066,12.912066,0,0,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,50.34,56.4,8.333333333333334,1,1,0,0,14,4,5,1,1059,447371.03,185956.09,551244.25,270407.88,50800.926,0,3991.6443 +4205,5135,9110,9109,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.7940578,9.3395147,0,8,5,33.977299,0,-9,-9,2021,12,0,45,43,1,0,0,28.920973,28.920973,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50.34,56.4,57.16,56.15,6.666666666666667,1,1,0,0,14,4,5,1,1059,447371.03,185956.09,551244.25,270407.88,50800.926,0,3991.6443 +4206,5136,9111,9112,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.5644197,7.8595052,47,-2,69.579887,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.3711925,7.5313411,56.94,43.99,55.21,43.87,8.333333333333334,1,1,0,0,10,6,5,1,887.5,865350.25,476394.78,240542.88,85772.609,0,0,5021.9365 +4206,5136,9112,9111,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.7006998,8.3524561,12,2,86.779587,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.8976386,8.2922564,55.21,43.87,56.94,43.99,8.333333333333334,1,1,0,0,10,6,5,1,887.5,865350.25,476394.78,240542.88,85772.609,0,0,5021.9365 +4207,5137,9113,9114,-9,-9,1,0,22,0,0,0,1,1,1,0,4,8.3356352,8.3688583,5.6483302,1,-1,-5.3795161,-9,-9,-9,2021,6,0,37,0,1,0,0,12.11799,12.11799,.05,.05,0,0,0,0,0,0,0,0,0,5.7456598,0,54.2,57.49,46.33,55.93,8.333333333333334,1,1,0,0,3,4,5,0,647.5,28727.887,-1798.7129,55717.285,54605.055,0,0,3824.9641 +4207,5137,9114,9113,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,8.2864094,8.1637745,0,1,1,-10.075294,-9,-9,-9,2021,14,3,37,0,1,3,0,10.964535,10.964535,.05,.05,.05,0,0,0,0,0,0,0,0,2.8653452,0,46.33,55.93,54.2,57.49,3.333333333333333,1,1,0,0,0,4,5,0,647.5,28727.887,-1798.7129,55717.285,54605.055,0,0,3824.9641 +4208,5138,9115,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-930.47388,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,0,12,1,0,1173,301734.53,0,0,0,0,0,-38.189495 +4209,5139,9116,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.8231249,6.9262691,0,0,-993.02942,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.3397458,0,0,1,1,0,0,6.8525577,57.25,47.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,540,411703.5,84785.195,86258.266,0,0,0,764.19055 +4210,5140,9117,9118,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,8.1667995,7.6974282,40,-1,-36.947685,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0455894,8.0525045,56.94,43.99,57.06,57.76,8.333333333333334,1,1,0,0,8,6,4,1,1522.5,1436413.9,1085672.5,190434.19,0,7568.6367,0,3534.124 +4210,5140,9118,9117,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.6599555,7.9677048,40,1,-62.993958,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9131351,7.8691306,57.06,57.76,56.94,43.99,8.333333333333334,1,1,0,0,3,6,4,1,1522.5,1436413.9,1085672.5,190434.19,0,7568.6367,0,3534.124 +4211,5141,9119,9120,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,4.4826164,4.6036525,47,5,163.65407,0,3,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,10.015058,0,0,1,1,0,2.9801023,4.4633155,36.49,21.73,55.79,52.62,3.333333333333333,1,1,0,0,0,6,3,1,536.5,998621.63,901957.13,129884.08,0,0,0,2733.207 +4211,5141,9120,9119,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.919322,8.3218164,47,-5,17.825098,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.705409,8.3827877,55.79,52.62,36.49,21.73,3.333333333333333,1,1,0,0,0,6,3,1,536.5,998621.63,901957.13,129884.08,0,0,0,2733.207 +4212,5142,9121,9122,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,0,0,53,0,-63.455746,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9758508,0,60.48,33.44,28.2,34.5,8.333333333333334,1,1,0,0,11,10,2,1,512,794950.44,411279.88,325167.25,0,0,0,1570.7402 +4212,5142,9122,9121,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.1374316,7.1035929,53,0,55.782486,0,3,-9,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.259378,7.0415735,28.2,34.5,60.48,33.44,5,1,1,0,0,5,10,2,1,512,794950.44,411279.88,325167.25,0,0,0,1570.7402 +4213,5143,9123,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-942.60229,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.23,33.57,-9,-9,1.666666666666667,4,2,0,1,0,10,2,0,133,280559.63,0,0,0,0,0,789.33441 +4213,5144,9124,-9,9123,-9,1,1,38,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1174.2977,0,3,-9,2021,12,2,0,37,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.29,55.07,-9,-9,1.666666666666667,1,1,1,1,1,10,1,0,573,-102954.6,0,0,0,0,0,616.49457 +4214,5145,9125,-9,9127,9126,1,1,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1013.8657,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,629,-274216.19,0,0,0,0,0,0 +4214,5146,9126,9127,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.7571383,7.7301364,0,6,8,34.501942,0,-9,-9,2021,9,0,50,50,1,0,0,5.995595,5.995595,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,50.01,55.31,6.666666666666667,1,1,0,0,6,13,4,1,741.5,389683.53,73588.102,109397.55,0,9746.7969,363.33713,2882.0908 +4214,5146,9127,9126,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1168203,7.7220273,0,6,-8,-68.747421,0,3,3,2021,9,0,38,50,1,0,0,9.1814709,9.1814709,0,0,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,46.33,55.93,8.333333333333334,1,1,0,0,14,13,4,1,741.5,389683.53,73588.102,109397.55,0,9746.7969,363.33713,2882.0908 +4214,5147,9128,-9,9127,9126,1,0,24,0,0,1,2,0,0,0,3,0,0,0,0,0,-985.30847,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6765761,0,41,56.99,-9,-9,8.333333333333334,1,1,0,0,8,13,1,1,123,-153523.33,0,0,0,0,0,1417.3789 +4214,5148,9129,-9,9127,9126,1,1,23,0,0,1,2,0,0,0,5,0,0,0,0,0,-995.32898,-9,2,2,2021,10,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7546172,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,13,2,1,893,-79562.102,0,0,0,0,0,62.460773 +4215,5149,9130,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,8.781558,8.4383736,0,0,0,-1057.3882,0,-9,-9,2021,29,9,40,40,1,9,0,14.211074,14.211074,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.21,59.33,-9,-9,1.666666666666667,1,1,0,0,13,12,5,1,437,171155.5,132556.03,336751.06,232008.31,23553.703,22725.346,2080.4495 +4216,5150,9131,9132,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,9.3031654,9.1888285,52,2,56.619392,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9413085,8.9953022,58.05,54.52,57.16,56.15,8.333333333333334,1,1,0,0,4,7,5,1,689.5,797007.38,152138.22,359888.72,23542.145,2747.0002,0,5742.0449 +4216,5150,9132,9131,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.4687071,5.1780982,8,-2,-165.35785,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0597091,5.0847011,57.16,56.15,58.05,54.52,10,1,1,0,0,0,7,5,1,689.5,797007.38,152138.22,359888.72,23542.145,2747.0002,0,5742.0449 +4217,5151,9133,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2879419,8.2216301,0,0,0,-1041.0763,0,2,2,2021,11,0,37,38,1,0,1,11.497116,11.497116,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,14,9,4,1,321,267786.78,-71063.039,55515.988,58227.594,0,5054.2715,1309.1204 +4218,5152,9134,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,9.3182487,9.3680382,0,0,0,-1003.2581,0,2,2,2021,9,0,90,46,1,0,0,17.951498,17.951498,.05,.05,0,0,0,0,0,0,0,0,0,7.7299657,0,49.04,55.86,-9,-9,5,1,1,0,0,8,8,5,0,1323,162911.61,-122978.18,0,0,0,0,4618.2134 +4219,5153,9135,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,1,0,6.106926,5.5944972,0,0,-940.88898,0,2,-9,2021,32,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3801117,0,16.04,23.99,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,416,221388.3,2035.4917,0,0,480.81839,0,2654.3213 +4220,5154,9136,9137,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,8.1068077,8.2162027,29,-7,55.060844,0,2,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.6763988,7.8959603,64.65000000000001,40.37,58.15,52.91,3.333333333333333,1,1,0,0,3,5,4,1,522.5,2372354.5,1417897,625446.44,-2805.0537,0,0,3782.3579 +4220,5154,9137,9136,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.3613071,8.0716591,31,7,43.052464,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.7445362,8.0032349,58.15,52.91,64.65000000000001,40.37,8.333333333333334,1,1,0,0,0,5,4,1,522.5,2372354.5,1417897,625446.44,-2805.0537,0,0,3782.3579 +4221,5155,9138,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.2533302,8.010253,0,0,-1039.0577,0,2,2,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4774837,8.312623,40.85,58.2,-9,-9,6.666666666666667,1,1,0,0,12,5,4,1,2827,1521854.8,1154155.3,146716.52,0,0,0,2884.4814 +4221,5156,9139,-9,9138,-9,1,1,28,0,0,0,1,1,-9,0,4,7.7611732,8.1233082,0,0,0,-1058.0807,0,2,1,2021,11,0,30,35,1,2,0,13.950681,13.950681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,4,1,244,33960.602,-63095.391,0,0,0,0,2017.0864 +4222,5157,9140,-9,9141,9142,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.7369,0,2,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.14,60.41,-9,-9,1.666666666666667,1,1,0,0,2,5,4,1,509.33334,197426.92,40538.586,0,0,0,0,2743.6641 +4222,5157,9141,9142,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.9122057,8.1803865,0,8,-2,75.53331,-9,3,2,2021,34,12,40,0,1,12,0,8.1160746,8.1160746,0,0,0,0,0,0,0,2,1,1,0,6.6053648,0,17.45,66.57000000000001,57.09,46.7,3.333333333333333,1,1,0,0,12,5,4,1,509.33334,197426.92,40538.586,0,0,0,0,2743.6641 +4222,5157,9142,9141,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.9967241,8.1486282,0,8,2,10.293988,-9,-9,-9,2021,11,0,45,0,1,0,0,8.380167,8.380167,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,17.45,66.57000000000001,6.666666666666667,1,1,0,0,12,5,4,1,509.33334,197426.92,40538.586,0,0,0,0,2743.6641 +4223,5158,9143,9144,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,9.0473261,8.9356737,0,12,1,-59.544079,0,-9,-9,2021,10,0,43,42,1,0,0,22.956167,22.956167,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.98,59.35,50.08,19.72,8.333333333333334,1,1,0,0,14,10,4,1,418,438172.06,211085.95,346695.44,145879.52,10893.152,0,2493.4563 +4223,5158,9144,9143,-9,-9,1,0,44,0,1,0,1,1,-9,1,2,0,0,0,24,-1,87.178001,0,2,2,2021,9,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.08,19.72,46.98,59.35,8.333333333333334,1,1,0,0,0,10,4,1,418,438172.06,211085.95,346695.44,145879.52,10893.152,0,2493.4563 +4224,5159,9145,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.1832542,7.1497684,0,0,0,-960.69238,0,3,-9,2021,12,1,45,40,1,1,0,3.3555357,3.3555357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.7,60.44,-9,-9,5,1,1,0,0,7,2,2,1,1413,-42606.277,46113.383,0,0,0,0,356.08868 +4225,5160,9146,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1081.563,-9,-9,2,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.35,26.91,-9,-9,0,1,1,0,0,0,12,2,0,455,24229.453,0,0,0,0,0,546.40613 +4226,5161,9147,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1049.2338,0,1,2,2021,30,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,13.08,30.87,-9,-9,5,1,1,0,1,2,9,1,1,1220,54379.594,0,0,0,0,0,-388.22098 +4227,5162,9148,9149,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.0285501,7.667738,50,4,-18.088343,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1239786,40.29,38.19,53.14,45.74,6.666666666666667,1,1,0,0,2,9,3,1,453,1076622.3,587017.63,300792.13,0,0,0,2773.4314 +4227,5162,9149,9148,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.2261443,5.4523416,10,-4,7.7065468,0,2,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3540621,53.14,45.74,40.29,38.19,8.333333333333334,1,1,0,0,0,9,3,1,453,1076622.3,587017.63,300792.13,0,0,0,2773.4314 +4228,5163,9150,9151,-9,-9,1,1,56,0,1,0,3,3,-9,0,3,0,0,0,39,9,-68.859856,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,55.79,52.62,6.666666666666667,1,1,0,0,0,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4228,5163,9151,9150,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.6804371,8.8045197,0,29,0,-53.524471,0,2,2,2021,5,0,43,40,1,0,0,20.596138,20.596138,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.96,49.93,6.666666666666667,1,1,0,0,12,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4228,5163,9152,-9,9151,9150,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.8754,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4228,5163,9153,-9,9151,9150,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1029.4635,-9,1,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,403.25,178617.16,7580.0098,236316.44,49143.457,18855.967,0,2664.1846 +4229,5164,9154,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1013.4525,0,3,2,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8332705,0,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,11,7,1,1,1914,0,0,0,0,0,0,1171.9553 +4230,5165,9155,9156,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,6.9040837,7.1287689,0,6,-1,-19.409472,0,3,3,2021,12,0,40,46,1,0,0,3.3328431,3.3328431,0,0,0,0,0,0,0,7,1,1,0,.2718057,0,47.07,53.97,59.82,14.29,3.333333333333333,1,1,0,0,6,12,2,1,883,365209.22,24536.076,165150.25,0,0,0,1381.4989 +4230,5165,9156,9155,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,5.5314441,5.9640875,6,1,-81.692986,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2547612,5.4787097,59.82,14.29,47.07,53.97,5,1,1,0,0,0,12,2,1,883,365209.22,24536.076,165150.25,0,0,0,1381.4989 +4231,5166,9157,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.5408874,7.3026743,0,0,-1133.5786,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6570501,7.6331105,63.98,38.08,-9,-9,10,1,1,0,0,1,13,3,1,233,292335.13,284505.78,71403.367,0,0,0,2241.2036 +4232,5167,9158,-9,9159,-9,1,1,17,0,0,1,2,0,0,0,4,0,4.7948384,5.2358103,0,0,-825.77124,-9,1,-9,2021,19,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5652318,0,56.75,49.4,-9,-9,6.666666666666667,1,1,0,0,0,8,3,0,315.5,361774.13,30137.594,258838.8,0,0,0,2928.9458 +4232,5167,9159,-9,-9,-9,1,0,47,0,0,0,1,1,-9,1,4,7.7797337,8.0089941,0,0,0,-996.93781,0,-9,-9,2021,9,0,22,21,1,0,0,16.611794,16.611794,0,0,.05,0,0,0,0,0,1,1,0,0,0,45.5,34.25,-9,-9,6.666666666666667,1,1,0,0,6,8,3,0,315.5,361774.13,30137.594,258838.8,0,0,0,2928.9458 +4232,5168,9160,-9,9159,-9,1,1,22,0,0,0,2,2,-9,0,4,7.6136794,7.5522461,0,0,0,-934.33002,0,1,-9,2021,7,0,48,48,1,0,1,5.5063047,5.5063047,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,3.333333333333333,4,5,0,0,3,8,3,0,603,-104887.87,0,0,0,0,0,-566.85284 +4232,5169,9161,-9,9159,-9,1,1,21,0,0,0,2,2,-9,0,5,6.9846058,7.2378206,0,0,0,-910.0993,0,3,2,2021,9,1,20,0,1,1,1,7.1422081,7.1422081,0,0,0,0,0,0,0,7,1,1,0,0,0,48.8,54.86,-9,-9,8.333333333333334,1,1,0,0,4,8,2,0,908,0,0,0,0,0,0,1009.5247 +4233,5170,9162,9163,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,4.9790359,5.318419,0,3,5,-72.540977,0,-9,-9,2021,9,0,50,50,1,0,0,.31065392,.31065392,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,43.44,61.22,8.333333333333334,1,1,0,0,9,11,3,1,359.33334,-37477.371,32425.029,0,0,0,0,2356.6848 +4233,5170,9163,9162,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.302269,8.3460159,0,3,-5,109.92833,0,-9,-9,2021,17,6,45,43,1,6,0,10.011193,10.011193,0,0,0,0,0,0,0,0,1,1,0,.52782005,0,43.44,61.22,54.77,55.87,10,1,1,0,0,8,11,3,1,359.33334,-37477.371,32425.029,0,0,0,0,2356.6848 +4233,5170,9164,-9,9163,9162,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.3572,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,3,1,359.33334,-37477.371,32425.029,0,0,0,0,2356.6848 +4234,5171,9165,9166,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,7.4123163,6.8679652,0,7,3,-183.46533,0,-9,-9,2021,21,8,24,24,1,8,0,6.9667354,6.9667354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.94,52.18,44.3,55.28,1.666666666666667,1,1,0,0,4,9,2,0,883,-20167.248,100833.08,0,0,2633.2944,0,2075.9761 +4234,5171,9166,9165,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,0,0,7,-3,23.472235,0,3,3,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,55.28,30.94,52.18,10,1,1,0,0,3,9,2,0,883,-20167.248,100833.08,0,0,2633.2944,0,2075.9761 +4234,5171,9167,-9,9166,9165,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-938.17749,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,883,-20167.248,100833.08,0,0,2633.2944,0,2075.9761 +4235,5172,9168,-9,-9,-9,1,1,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-949.06329,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.07,19.73,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,884,-147856.66,0,0,0,0,0,1580.3561 +4236,5173,9169,-9,9170,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.3447,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,1271.3334,77649.914,0,0,0,0,0,1799.2521 +4236,5173,9170,-9,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,0,0,0,0,0,-1046.4954,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.27,35.5,-9,-9,5,1,1,0,0,0,13,1,0,1271.3334,77649.914,0,0,0,0,0,1799.2521 +4236,5173,9171,-9,9170,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-999.97162,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,1,0,1271.3334,77649.914,0,0,0,0,0,1799.2521 +4237,5174,9172,-9,9173,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6715,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,5,0,1372,-34070.574,96856.859,0,0,0,4573.6943,5814.8779 +4237,5174,9173,-9,-9,-9,1,0,36,1,1,0,1,1,-9,0,2,9.1985264,9.3060875,6.349442,0,0,-1024.4771,0,-9,-9,2021,25,12,65,-9,1,12,0,22.406431,22.406431,.05,.05,0,0,0,0,0,0,0,0,0,6.094821,0,31.09,45.59,-9,-9,3.333333333333333,1,1,0,0,5,8,5,0,1372,-34070.574,96856.859,0,0,0,4573.6943,5814.8779 +4238,5175,9174,-9,9175,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1002.5237,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,328,27644.648,-38131.262,0,0,265.92731,0,2783.4512 +4238,5175,9175,-9,-9,-9,1,0,40,0,4,0,2,2,-9,0,1,6.9952869,7.6635361,6.4241576,0,0,-1034.542,0,2,2,2021,13,4,20,20,1,4,0,7.1871128,7.1871128,.05,.05,0,0,0,0,0,0,1,0,1,5.6602545,0,38.5,16.75,-9,-9,3.333333333333333,1,1,0,0,4,10,2,0,328,27644.648,-38131.262,0,0,265.92731,0,2783.4512 +4239,5176,9176,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.3040662,8.4948978,7.9128919,0,0,-968.13831,0,2,1,2021,13,4,47,47,1,4,0,5.2326183,5.2326183,0,0,0,0,0,0,0,0,1,1,0,9.0465975,6.8111916,43.17,59.99,-9,-9,6.666666666666667,1,1,0,0,12,8,4,1,905,1412513.4,1114426.9,377024.66,28742.469,166.71214,0,5928.2002 +4240,5177,9177,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-969.45782,0,3,3,2021,23,8,0,0,4,8,0,0,0,0,0,0,1,8.8931265,0,53.240856,0,1,1,0,0,0,16.66,51.03,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,804,-14330.57,0,0,0,0,0,1703.4476 +4241,5178,9178,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.1021,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,1.5304086,3.8330631,18.876135,0,1,1,0,1.0820701,0,51,46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,1910,-38967.059,0,175724.31,0,0,0,1037.1974 +4242,5179,9179,9180,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.3624439,8.169898,11,-8,-56.83215,0,2,1,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9445474,8.0171652,41.62,60.42,58.76,43.19,8.333333333333334,1,1,0,0,9,13,3,1,2353,2613403.3,857425.25,295045.34,0,0,0,3085.5835 +4242,5179,9180,9179,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.3881316,6.3710141,11,8,18.858641,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.2871804,6.3437047,58.76,43.19,41.62,60.42,8.333333333333334,1,1,0,0,9,13,3,1,2353,2613403.3,857425.25,295045.34,0,0,0,3085.5835 +4243,5180,9181,-9,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,7.2978964,7.3603439,0,0,0,-965.07062,0,-9,-9,2021,14,2,28,28,1,2,0,7.5352592,7.5352592,0,0,0,0,0,0,0,0,1,1,0,0,0,25.86,58.38,-9,-9,6.666666666666667,1,1,0,0,10,7,3,0,2979,-75485.445,0,0,0,0,0,1887.8682 +4243,5180,9182,-9,9181,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.37122,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,2979,-75485.445,0,0,0,0,0,1887.8682 +4244,5181,9183,9184,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,6.9655008,7.222713,0,3,-16,-42.236706,0,-9,-9,2021,12,0,20,20,1,0,0,7.2682877,7.2682877,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.65,64.05,57.76,54.51,8.333333333333334,1,1,0,0,11,4,4,0,1421.5,379095.72,247611.19,98472.117,32641.195,0,1342.0742,2260.0288 +4244,5181,9184,9183,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.1045809,8.091485,0,3,16,-61.607178,0,2,2,2021,7,0,43,40,1,0,0,7.0116034,7.0116034,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,22.65,64.05,8.333333333333334,1,1,0,0,11,4,4,0,1421.5,379095.72,247611.19,98472.117,32641.195,0,1342.0742,2260.0288 +4245,5182,9185,9187,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.8723516,9.1578579,0,10,1,84.452919,0,-9,-9,2021,7,0,60,50,1,0,0,16.082388,16.082388,.05,.05,0,0,0,0,0,0,0,0,0,4.5764775,0,55.61,50.3,46.53,61.33,8.333333333333334,1,1,0,0,4,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4245,5182,9186,-9,9187,9185,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.07428,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4245,5182,9187,9185,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.9994211,8.9958191,0,20,-1,.045527752,0,1,1,2021,11,3,80,30,1,3,0,9.9797907,9.9797907,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,55.61,50.3,10,1,1,0,0,5,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4245,5182,9188,-9,9187,9185,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.70734,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1189.75,362686.91,277271.22,312735.31,176762.3,28115.25,0,6246.2324 +4246,5183,9189,-9,9190,9191,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1085.8868,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,1142,-26406.82,2919.4922,0,0,7957.8462,0,1554.0608 +4246,5183,9190,9191,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,6.3115168,6.2000327,0,3,-4,42.685863,0,2,-9,2021,6,0,8,8,1,0,0,6.2847357,6.2847357,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,56.34,46.17,10,1,1,0,0,4,13,2,0,1142,-26406.82,2919.4922,0,0,7957.8462,0,1554.0608 +4246,5183,9191,9190,-9,-9,1,1,28,0,1,0,3,3,-9,0,2,7.4857054,7.5421085,0,3,4,-8.5133924,0,-9,-9,2021,9,0,26,16,1,0,0,7.3072791,7.3072791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.34,46.17,61.12,51.57,8.333333333333334,1,1,0,0,8,13,2,0,1142,-26406.82,2919.4922,0,0,7957.8462,0,1554.0608 +4247,5184,9192,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,6.8786559,6.7463593,0,0,0,-1024.0037,-9,-9,-9,2021,25,11,37,0,1,11,0,3.5061255,3.5061255,.05,.05,0,0,0,0,0,0,0,0,0,3.6225064,0,43,53,-9,-9,5,2,3,0,0,4,4,2,1,944,203115.45,-30827.084,0,0,13882.077,0,-176.86691 +4248,5185,9193,9195,-9,-9,1,1,52,0,1,0,1,1,-9,0,2,9.8305864,9.2252541,0,21,2,38.643585,0,-9,-9,2021,13,2,48,50,1,2,0,37.668087,37.668087,.05,.05,0,0,0,0,0,0,0,0,0,1.5304834,0,46.88,51.82,34.06,59.85,8.333333333333334,1,1,0,0,14,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4248,5185,9194,-9,9195,9193,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.6278,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4248,5185,9195,9193,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,7.5413718,7.9719667,0,23,-2,50.303062,0,2,2,2021,17,6,31,32,1,6,0,5.8940101,5.8940101,.05,.05,0,0,0,0,0,0,0,0,0,.17554441,0,34.06,59.85,46.88,51.82,8.333333333333334,1,1,0,0,8,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4248,5185,9196,-9,9195,9193,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1034.8765,-9,1,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.22,56.91,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,1099.75,2660709.8,2308487,508672.69,183045.13,0,0,5403.1455 +4249,5186,9197,9198,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5926514,8.7913971,0,1,-1,1.6990196,0,-9,-9,2021,7,0,52,45,1,0,0,12.096206,12.096206,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.49,55.09,10,1,1,0,0,8,12,5,1,422,1901145.8,1485448.3,181836.19,5407.1343,1068.2299,1331.4775,4019.9426 +4249,5186,9198,9197,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.0346146,8.1666813,0,1,1,-58.185219,0,-9,-9,2021,6,0,40,40,1,0,0,8.5833836,8.5833836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.12,54.8,10,1,1,0,0,3,12,5,1,422,1901145.8,1485448.3,181836.19,5407.1343,1068.2299,1331.4775,4019.9426 +4250,5187,9199,9200,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,7.9566588,7.9103608,0,7,-2,48.5397,0,-9,-9,2021,10,0,30,37,1,1,0,7.2788558,7.2788558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,58,39.86,49.7,7,4,1,0,0,1,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4250,5187,9200,9199,-9,-9,1,0,31,0,2,0,2,2,-9,0,2,6.9369998,6.6266642,0,7,2,66.727287,0,3,2,2021,10,3,13,23,1,3,0,9.1162624,9.1162624,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.86,49.7,48,58,5,1,1,0,0,10,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4250,5187,9201,-9,9200,9199,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.9562,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4250,5187,9202,-9,9200,9199,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.6483,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,737,-97482.32,17882.439,0,0,4641.7153,-71.46814,1973.22 +4251,5188,9203,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,5.7023921,5.3416162,0,0,-986.25909,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,1.4223802,0,0,1,1,0,3.3024194,5.8971972,45.85,21.29,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,722,270016.25,171998.7,0,0,0,0,1173.7935 +4251,5189,9204,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.558198,7.2741714,0,0,-969.19971,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1836925,7.5929317,61.28,35.65,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,948,601841.13,439416.09,91455.367,0,0,0,1375.7856 +4252,5190,9205,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.6009536,4.5195251,0,0,-984.89972,0,2,1,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3713684,4.3009186,43.83,43.24,-9,-9,6.666666666666667,1,1,0,0,4,9,2,1,374,357856.09,0,283770.94,0,0,0,3100.1965 +4253,5191,9206,9207,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,8.040329,7.8032427,1,6,101.68327,-9,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0238414,7.6091418,64.23,44.69,60.29,31.45,10,1,1,0,0,0,4,3,0,399.5,647665.38,418093.25,361121.06,0,1733.2133,0,2279.0356 +4253,5191,9207,9206,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,1,-6,87.319702,0,3,3,2021,7,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,31.45,64.23,44.69,8.333333333333334,1,1,1,0,10,4,3,0,399.5,647665.38,418093.25,361121.06,0,1733.2133,0,2279.0356 +4254,5192,9208,-9,9211,9210,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-953.08356,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4254,5192,9209,-9,9211,9210,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-926.87817,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4254,5192,9210,9211,-9,-9,1,1,53,0,2,0,1,1,-9,0,5,7.8189449,7.7936301,0,12,8,20.707289,0,2,2,2021,29,11,42,40,1,11,0,7.6545539,7.6545539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.38,68.36,44.02,60.7,3.333333333333333,1,1,0,0,12,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4254,5192,9211,9210,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.2854414,8.569273,0,12,-8,-33.833275,0,1,1,2021,11,0,31,22,1,0,0,16.289717,16.289717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,22.38,68.36,8.333333333333334,1,1,0,0,12,12,4,1,841.75,908417.88,780782.38,190577.03,54140.883,5140.2793,934.71851,3182.1619 +4255,5193,9212,-9,9215,9213,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.0896,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4255,5193,9213,9215,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.7797813,8.725522,0,16,4,-18.799995,0,3,2,2021,8,0,40,48,1,0,0,15.980039,15.980039,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.6,51.61,8.333333333333334,1,1,0,0,12,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4255,5193,9214,-9,9215,9213,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.86292,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4255,5193,9215,9213,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.5167351,7.95331,0,16,-4,-112.99829,0,2,2,2021,12,0,31,35,1,0,0,7.0781698,7.0781698,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,54.79,55.86,6.666666666666667,1,1,0,0,8,7,4,1,1926,630597.31,143673.67,478798.94,0,0,0,3011.0522 +4256,5194,9216,9217,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.468657,7.0685472,38,9,-14.796082,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8906541,7.06847,58.3,52.91,54.1,59.11,10,1,1,0,0,7,11,5,1,664,2164787.5,2225160,0,0,0,10297.379,2900.9946 +4256,5194,9217,9216,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.5559311,8.3877354,6.3309107,38,0,-48.289303,0,2,2,2021,10,1,54,37,1,1,0,11.316406,11.316406,0,0,0,0,0,0,0,0,0,0,0,0,6.2422833,54.1,59.11,58.3,52.91,8.333333333333334,1,1,0,0,6,11,5,1,664,2164787.5,2225160,0,0,0,10297.379,2900.9946 +4257,5195,9218,-9,9219,9220,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.44623,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4257,5195,9219,9220,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,0,0,0,23,6,-22.957972,0,2,2,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1647973,0,42.81,51.78,51.73,58.82,8.333333333333334,1,1,0,0,6,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4257,5195,9220,9219,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.0070858,8.073905,0,23,-6,-62.581898,0,2,2,2021,9,0,35,34,1,0,0,11.812795,11.812795,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.81,51.78,8.333333333333334,1,1,0,0,7,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4257,5195,9221,-9,9219,9220,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.53003,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,448.25,409384.84,224809.34,206225.73,31982.988,3411.6179,0,2383.282 +4258,5196,9222,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.1364536,7.5852022,0,0,0,-831.91211,0,-9,-9,2021,12,1,40,36,1,1,0,9.181777,9.181777,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,50,-9,-9,5,1,1,0,0,10,11,4,1,3362,217831.22,32972.898,141823.75,0,0,0,1272.3926 +4259,5197,9223,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1019.7336,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,214,32289.426,0,0,0,0,0,1118.7136 +4260,5198,9224,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.8374157,8.3714437,0,0,0,-854.755,0,3,3,2021,10,0,69,69,1,0,0,7.488399,7.488399,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.92,40.35,-9,-9,6.666666666666667,2,3,0,0,10,8,5,1,2072,592983.63,99488.813,573681.38,0,0,0,1869.8746 +4261,5199,9225,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1065.0822,0,2,3,2021,11,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.59,50.88,-9,-9,3.333333333333333,1,1,1,0,10,2,1,0,178,69338.727,-119874.44,0,0,0,0,-303.23972 +4262,5200,9226,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1030.6281,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.99,35.86,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,457,45890.762,0,0,0,0,0,122.7488 +4263,5201,9227,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.654912,8.461153,0,0,0,-957.85516,0,2,2,2021,10,0,50,52,1,1,0,10.649215,10.649215,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,54,-9,-9,8,1,1,0,0,12,11,5,0,904,417712.91,280215.38,40638.797,24528.148,0,0,2112.1917 +4264,5202,9228,9229,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.0198426,6.0447798,6,-3,26.073574,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6758646,6.153285,52.48,34.94,47.12,45.03,8.333333333333334,1,1,0,0,0,7,3,1,341,612596.56,321656.5,332358.38,0,1393.2736,0,3361.9146 +4264,5202,9229,9228,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.1336441,7.7045407,6,3,-68.624519,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2362425,8.0806026,47.12,45.03,52.48,34.94,8.333333333333334,1,1,0,0,0,7,3,1,341,612596.56,321656.5,332358.38,0,1393.2736,0,3361.9146 +4265,5203,9230,9232,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.5489464,8.4664049,0,15,2,-63.940739,0,2,2,2021,12,0,38,45,1,0,0,12.826828,12.826828,.05,.05,0,0,0,0,0,0,0,0,0,3.4208717,0,50.18,52.62,51.41,56.15,8.333333333333334,1,1,0,0,12,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4265,5203,9231,-9,9232,9230,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.06696,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4265,5203,9232,9230,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,0,0,0,15,-2,74.292671,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.46647,0,51.41,56.15,50.18,52.62,8.333333333333334,1,1,0,0,2,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4265,5203,9233,-9,9232,9230,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-813.61743,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,1,671.25,462902.16,33503.551,486726.84,77566.82,0,-21.839645,2077.7788 +4266,5204,9234,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.6891642,8.3296614,0,0,0,-1058.7369,0,3,3,2021,8,0,82,42,1,0,0,6.8906941,6.8906941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,1.666666666666667,1,1,0,0,12,9,5,1,987,702905.5,196609.75,433005.06,61390.906,1418.2515,926.45581,2420.4412 +4267,5205,9235,9236,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.4124765,8.4950743,0,5,0,-24.598623,0,3,2,2021,12,2,91,91,1,2,0,4.4916406,4.4916406,.05,.05,0,0,0,0,3.7834687,0,0,0,0,0,0,41.61,58.14,49.28,52.09,6.666666666666667,1,1,0,0,12,7,5,1,649,177941.25,63016.695,240502.59,186608.44,32196.246,0,3191.3713 +4267,5205,9236,9235,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,8.0205765,8.0620928,0,5,0,30.336206,0,-9,-9,2021,14,3,44,38,1,3,0,8.5754061,8.5754061,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.28,52.09,41.61,58.14,10,1,1,0,0,5,7,5,1,649,177941.25,63016.695,240502.59,186608.44,32196.246,0,3191.3713 +4268,5206,9237,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.775053,8.8803816,0,0,0,-885.62653,0,2,2,2021,7,0,37,42,1,0,0,25.705196,25.705196,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,6,5,1,760,954396.06,682165.56,176944.67,51026.984,15067.257,0,2805.6296 +4269,5207,9238,9239,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5202551,8.8970909,0,34,0,-37.643112,0,2,-9,2021,6,0,41,48,1,0,0,17.314426,17.314426,.05,.05,0,0,0,0,0,0,0,0,0,1.3749413,0,62.11,40.77,51.14,60.45,8.333333333333334,1,1,0,0,9,5,5,1,705,257661.92,177724.61,121069.34,42711.273,5931.1382,0,3040.1626 +4269,5207,9239,9238,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.2826042,8.1208372,0,34,0,-28.384848,-9,-9,-9,2021,8,0,37,0,1,1,0,10.884093,10.884093,.05,.05,0,0,0,0,0,0,0,0,0,2.6278226,0,51.14,60.45,62.11,40.77,10,1,1,0,0,6,5,5,1,705,257661.92,177724.61,121069.34,42711.273,5931.1382,0,3040.1626 +4270,5208,9240,-9,9241,9242,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.99371,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4270,5208,9241,9242,-9,-9,1,0,44,0,3,0,2,2,-9,0,5,0,4.9029813,5.1932354,13,-8,-76.336182,0,2,2,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2770534,0,0,71.97,49.77,50.15,3.333333333333333,1,1,0,0,1,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4270,5208,9242,9241,-9,-9,1,1,52,0,3,0,2,2,-9,0,3,8.1696758,8.0420666,6.1525159,11,8,-18.389349,0,-9,2,2021,10,0,45,40,1,0,0,8.1869888,8.1869888,.05,.05,0,0,0,0,0,0,1,1,0,0,6.2406292,49.77,50.15,0,71.97,8.333333333333334,1,1,0,1,10,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4270,5208,9243,-9,9241,9242,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.44507,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,1228.25,332893.06,212875.53,119451.21,3310.1787,1636.0334,3801.498,2156.0928 +4271,5209,9244,9245,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,36,-1,-2.8764265,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,46.08,57.2,57.18,42.53,8.333333333333334,1,1,0,0,7,10,3,1,280.5,1425897.8,251748.86,369887.38,0,872.16687,0,4036.9138 +4271,5209,9245,9244,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,7.4811325,7.6316533,0,35,1,-13.973975,0,2,2,2021,11,0,40,40,1,0,0,5.7698884,5.7698884,0,0,0,0,0,0,0,2,0,0,0,8.626236,0,57.18,42.53,46.08,57.2,8.333333333333334,1,1,0,0,12,10,3,1,280.5,1425897.8,251748.86,369887.38,0,872.16687,0,4036.9138 +4271,5210,9246,9247,9244,9245,1,1,26,0,0,0,1,1,-9,0,3,8.6021109,9.0381908,0,1,1,31.703531,0,2,2,2021,7,0,40,40,1,0,0,23.038126,23.038126,0,0,0,0,0,0,0,0,0,0,0,5.5698476,0,52,54.51,42.79,64.22,5,1,1,0,0,6,10,5,1,617,211702.05,115257.03,120863.08,109844.55,12466.971,0,3479.9775 +4271,5210,9247,9246,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,8.2850323,8.7669287,0,1,-1,17.718151,-9,-9,-9,2021,20,7,14,0,1,7,0,55.537811,55.537811,0,0,0,0,0,0,0,0,0,0,0,4.6571088,0,42.79,64.22,52,54.51,6.666666666666667,1,1,0,0,4,10,5,1,617,211702.05,115257.03,120863.08,109844.55,12466.971,0,3479.9775 +4271,5211,9248,-9,9244,9245,1,1,25,0,0,0,1,1,-9,0,3,7.9787135,7.8900514,0,0,0,-906.7113,0,2,2,2021,11,3,50,22,1,3,1,5.9305568,5.9305568,0,0,0,0,0,0,0,0,0,0,0,0,0,45.93,52,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,792,2313.0813,0,0,0,10824.769,6760.9751,935.21411 +4271,5212,9249,-9,9244,9245,1,0,22,0,0,0,2,2,-9,0,4,8.129571,8.3714304,0,0,0,-874.42944,0,2,2,2021,11,0,40,45,1,0,1,9.485033,9.485033,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,975,199403.69,73573.641,0,0,0,-42.497566,1179.2319 +4272,5213,9250,9253,-9,-9,1,1,49,1,2,0,2,2,-9,0,4,8.9216356,8.85536,0,7,8,118.60709,0,2,3,2021,6,0,40,44,1,0,0,16.477955,16.477955,.05,.05,0,0,0,0,0,0,1,1,0,7.5142941,0,57.16,56.15,54.1,59.11,1.666666666666667,1,1,0,0,9,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4272,5213,9251,-9,9253,9250,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.4266,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4272,5213,9252,-9,9253,9250,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.9783,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4272,5213,9253,9250,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,9.0423784,8.9424438,0,7,-8,65.97966,0,1,2,2021,6,0,38,43,1,0,0,24.810436,24.810436,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,636.75,655794.88,635661.31,132133.45,92293.695,0,0,5825.5254 +4273,5214,9254,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6715326,8.9628363,7.5814428,0,0,-954.8902,0,2,3,2021,17,5,37,36,1,5,0,21.840696,21.840696,.05,.05,0,0,0,0,0,0,1,1,0,7.9501796,0,27.81,65.69,-9,-9,6.666666666666667,1,1,0,0,14,6,5,1,647.66669,296428.97,196743.23,229155.16,90628.727,0,0,4285.7427 +4273,5214,9255,-9,9254,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.0107,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,647.66669,296428.97,196743.23,229155.16,90628.727,0,0,4285.7427 +4273,5214,9256,-9,9254,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.69623,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,5,1,647.66669,296428.97,196743.23,229155.16,90628.727,0,0,4285.7427 +4274,5215,9257,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.1873,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,829,143699.67,0,0,0,0,0,1948.8773 +4275,5216,9258,9259,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.7630711,8.5035124,0,6,8,127.4782,0,-9,-9,2021,11,1,38,41,1,1,0,17.079227,17.079227,0,0,0,0,0,0,0,0,0,0,0,5.3020782,0,51.05,54.79,42.86,37.52,8.333333333333334,1,1,0,0,6,2,5,1,1776,3151497,1400053,619356.88,0,0,0,4841.7803 +4275,5216,9259,9258,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.8666964,9.0185823,0,6,-8,-2.3474457,0,3,2,2021,15,4,45,44,1,4,0,15.598091,15.598091,0,0,0,0,0,0,0,0,0,0,0,7.3069859,0,42.86,37.52,51.05,54.79,6.666666666666667,1,1,0,0,10,2,5,1,1776,3151497,1400053,619356.88,0,0,0,4841.7803 +4276,5217,9260,9261,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.9039097,7.7114458,0,5,4,-149.30075,0,-9,-9,2021,12,0,40,40,1,0,0,6.430542,6.430542,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,40.7,32.53,54.08,6.666666666666667,1,1,0,0,3,9,5,1,2518,97460.719,50827.359,0,0,3766.1973,0,3001.6309 +4276,5217,9261,9260,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.5401897,8.5286684,0,5,-4,-132.93791,0,2,-9,2021,12,2,77,40,1,2,0,8.4055862,8.4055862,.05,.05,0,0,0,0,0,2,0,0,0,.96432024,0,32.53,54.08,46.21,40.7,6.666666666666667,1,1,0,0,11,9,5,1,2518,97460.719,50827.359,0,0,3766.1973,0,3001.6309 +4277,5218,9262,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2023954,7.3252025,0,0,-942.13934,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.6879687,7.479177,56.7,42.76,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,206,460443,149324.58,219397.88,30470.066,0,0,1359.4963 +4278,5219,9263,9265,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.6555996,9.1948776,0,5,3,-143.65411,0,2,2,2021,9,0,52,52,1,0,0,36.364227,36.364227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,55.19,34.27,8.333333333333334,1,1,0,0,8,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4278,5219,9264,-9,9265,9263,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1146.7751,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4278,5219,9265,9263,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,6.5882654,7.1161051,6.0405784,5,-3,-50.398739,0,-9,-9,2021,12,3,6,0,1,3,0,20.261578,20.261578,0,0,0,0,0,0,0,0,0,0,0,6.668046,0,55.19,34.27,54.37,54.8,6.666666666666667,1,1,0,0,6,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4278,5219,9266,-9,9265,9263,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.09485,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,5,1,1209.25,762272.88,190191.22,724448.13,377554.63,5880.5605,0,4541.4111 +4279,5220,9267,-9,9268,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-830.56024,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,1198,-26246.867,0,0,0,0,0,1333.5341 +4279,5220,9268,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,6.8086405,7.0359292,0,0,0,-975.02905,0,2,2,2021,9,0,16,16,1,0,0,7.7318926,7.7318926,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,7,13,2,0,1198,-26246.867,0,0,0,0,0,1333.5341 +4279,5220,9269,-9,9268,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.89917,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,0,1198,-26246.867,0,0,0,0,0,1333.5341 +4280,5221,9270,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0663567,8.327775,0,0,0,-976.83984,0,3,3,2021,7,0,37,37,1,0,0,11.018083,11.018083,0,0,0,0,0,0,0,0,0,0,0,2.1465688,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,1036,62239.371,120736.77,0,0,0,0,843.6806 +4281,5222,9271,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6462307,8.444459,0,0,0,-1000.9026,0,2,2,2021,3,0,40,50,1,0,0,17.668034,17.668034,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,229,141323.78,0,0,0,0,0,1281.9138 +4282,5223,9272,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,5.6247072,5.0672779,0,0,-905.46832,0,-9,2,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2155447,23.02,29.13,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,357,454055.16,70865.945,177394.97,0,0,0,514.92401 +4283,5224,9273,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,1,0,5.0690207,5.3686318,0,0,-789.96912,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,5.3966885,0,38.559334,120,1,1,0,7.2550106,5.1649833,50.02,19.09,-9,-9,6,1,1,0,1,0,12,2,1,1991,-117483.46,0,0,0,0,0,1347.8707 +4284,5225,9274,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.862709,7.9440613,0,0,-1116.9171,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,4.5710483,0,20.678984,0,1,1,0,6.309989,7.8487086,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,199,1181618.4,544128.44,460935.06,0,0,837.11334,2352.5432 +4285,5226,9275,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,6.8916578,6.8745646,0,0,0,-1089.8398,0,2,2,2021,6,1,4,5,1,1,0,17.609516,17.609516,.05,.05,0,0,0,0,1.7856009,2,1,1,0,5.379827,0,59.29,49.68,-9,-9,10,1,1,0,0,12,6,2,1,997,577046,73573.352,600152.75,90472.672,0,0,1143.3629 +4286,5227,9276,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-935.42938,0,-9,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,66.84999999999999,11.24,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,1640,-183496.48,0,0,0,0,0,1803.5138 +4287,5228,9277,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.7028775,7.7092938,0,0,0,-1031.4327,0,2,2,2021,19,7,37,34,1,7,0,6.3670416,6.3670416,0,0,0,0,0,0,0,0,0,0,0,0,0,46.56,50.26,-9,-9,5,1,1,0,0,10,4,3,0,177,-106291.12,43543.039,0,0,0,0,104.49082 +4287,5229,9278,-9,9277,-9,1,0,19,0,0,0,2,2,-9,0,3,7.2403331,7.4911456,0,0,0,-989.20862,0,2,-9,2021,7,0,35,30,1,0,1,4.8095074,4.8095074,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.19,39.41,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,2081,-37635.895,101268.54,0,0,0,0,719.35663 +4288,5230,9279,9280,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,6.7221522,6.9025764,0,31,8,-56.014137,0,3,3,2021,17,6,16,38,1,6,0,5.9755139,5.9755139,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,65.08,20.13,52,53,10,2,3,0,0,9,4,3,1,529.5,734047.25,710963.38,136691.42,0,0,0,1212.7164 +4288,5230,9280,9279,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.4829459,7.3332877,0,31,-8,-89.228279,0,-9,-9,2021,10,0,35,38,1,1,0,6.0362835,6.0362835,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,65.08,20.13,8,2,3,0,0,1,4,3,1,529.5,734047.25,710963.38,136691.42,0,0,0,1212.7164 +4289,5231,9281,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.1116333,8.5211306,7.6464443,0,0,-1088.0504,0,2,2,2021,19,7,30,20,1,7,0,9.6533861,9.6533861,.05,.05,0,0,0,0,0,0,1,1,0,8.4691229,0,43.2,59.97,-9,-9,6.666666666666667,1,1,0,0,13,10,4,0,1153,50582.195,-794.75476,0,0,640.01538,6112.4463,3066.3213 +4290,5232,9282,9283,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,63,-3,.90151989,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9735074,0,53.14,51.28,51.02,49.72,8.333333333333334,1,1,0,0,0,6,2,1,1614,125730.41,91329.227,101831.55,0,0,0,3121.5195 +4290,5232,9283,9282,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.0544162,7.3255153,63,3,110.79533,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2468429,7.2676182,51.02,49.72,53.14,51.28,5,1,1,0,0,0,6,2,1,1614,125730.41,91329.227,101831.55,0,0,0,3121.5195 +4291,5233,9284,9286,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,9.281435,8.8566723,0,2,-4,-79.709763,-9,2,2,2021,11,0,50,0,1,0,0,21.151037,21.151037,0,0,0,0,0,0,0,0,0,0,0,0,0,46.51,45.97,60.12,54.8,8.333333333333334,1,1,0,1,11,12,5,1,986,249237.11,-37083.75,167922.64,128005.16,3130.1963,2078.8677,5767.5698 +4291,5233,9285,-9,9284,9286,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-909.19604,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,986,249237.11,-37083.75,167922.64,128005.16,3130.1963,2078.8677,5767.5698 +4291,5233,9286,9284,-9,-9,1,1,37,1,1,0,2,2,-9,0,4,8.4617233,8.1479931,0,2,4,83.214142,0,-9,-9,2021,9,0,45,38,1,0,0,10.514368,10.514368,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,46.51,45.97,6.666666666666667,1,1,0,0,14,12,5,1,986,249237.11,-37083.75,167922.64,128005.16,3130.1963,2078.8677,5767.5698 +4292,5234,9287,9289,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,8.1239309,7.9582376,0,17,-7,-56.249855,0,1,3,2021,10,2,34,39,1,2,0,14.463283,14.463283,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.85,58.56,51,48,8.333333333333334,1,1,0,0,8,5,3,1,629.33331,1314424.1,1139699.4,145246.53,26419.854,7810.2046,0,2791.3857 +4292,5234,9288,-9,9287,9289,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.69952,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,5,3,1,629.33331,1314424.1,1139699.4,145246.53,26419.854,7810.2046,0,2791.3857 +4292,5234,9289,9287,-9,-9,1,1,61,0,1,0,2,2,-9,0,3,7.5466361,7.5729475,0,17,7,-32.506542,0,2,2,2021,10,0,20,50,1,1,0,11.964431,11.964431,.05,.05,0,0,0,0,0,2,1,1,0,7.1420712,0,51,48,48.85,58.56,7,1,1,0,0,1,5,3,1,629.33331,1314424.1,1139699.4,145246.53,26419.854,7810.2046,0,2791.3857 +4292,5235,9290,-9,9287,9289,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1040.0444,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,1,304,77452.43,0,0,0,0,0,0 +4293,5236,9291,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.7406936,6.6925125,0,0,-931.9809,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.8694363,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,86,459638.69,206037.23,225474.67,0,0,0,1819.2146 +4294,5237,9292,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.243742,8.1665421,0,0,0,-971.94586,0,2,2,2021,6,0,38,38,1,0,0,11.011239,11.011239,.05,.05,0,0,0,0,0,0,0,0,0,2.1694922,0,47.18,55.31,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,1448,-7885.2192,-6927.2563,0,0,0,0,2046.8469 +4295,5238,9293,9294,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.049367,9.0869999,0,11,-1,-88.469002,0,2,1,2021,10,0,55,55,1,1,0,19.713345,19.713345,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,38.7,59.52,7,2,3,0,0,1,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4295,5238,9294,9293,-9,-9,1,0,39,0,2,0,1,1,-9,1,3,0,0,0,11,1,-96.808304,0,3,3,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,.51658845,74.5,1,1,0,0,0,38.7,59.52,51,56,8.333333333333334,2,3,0,0,3,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4295,5238,9295,-9,9294,9293,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.1369,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4295,5238,9296,-9,9294,9293,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.9979,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,651.5,519708.38,83231.648,249380.06,81078.133,0,0,4359.4336 +4296,5239,9297,9298,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.8671789,8.1481161,0,2,-7,83.991615,0,-9,-9,2021,10,3,38,38,1,3,0,9.6276131,9.6276131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.24,41.16,51.24,58.84,8.333333333333334,1,1,0,0,3,4,4,1,681.5,246883.44,147846.98,173067.53,117678.7,0,0,2625.6831 +4296,5239,9298,9297,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.4537792,8.4949274,0,2,7,37.511852,0,2,2,2021,8,0,48,48,1,0,0,9.4121943,9.4121943,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.24,41.16,6.666666666666667,1,1,0,0,7,4,4,1,681.5,246883.44,147846.98,173067.53,117678.7,0,0,2625.6831 +4297,5240,9299,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,2,0,0,0,0,0,-936.37439,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,6.458334,13.432734,56.954807,0,1,1,0,1.2944162,0,54.48,19.42,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,569,164661.59,0,0,0,0,0,894.88281 +4298,5241,9300,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.3860488,5.4737086,0,0,-949.75177,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9399319,5.3859315,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,336,368408.75,37164.5,353476.84,0,0,0,870.05798 +4299,5242,9301,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1043.9741,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.7,43.72,-9,-9,5,1,1,0,0,0,10,1,0,742,-16810.713,0,0,0,0,0,360.89917 +4299,5243,9302,-9,9301,-9,1,0,28,0,0,0,2,2,-9,0,4,7.338429,7.2364264,0,0,0,-996.28259,0,2,3,2021,11,0,48,50,1,2,1,3.0401943,3.0401943,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,0,3267,-37872.137,-16632.518,0,0,0,0,1005.8649 +4299,5244,9303,-9,9301,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-919.07629,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,1,0,0,10,1,0,173,-315937.63,0,0,0,0,0,0 +4299,5245,9304,-9,9301,-9,1,0,25,0,0,0,2,2,-9,0,4,8.2216177,7.9965301,0,0,0,-962.50641,0,3,-9,2021,11,0,37,20,1,2,1,10.44733,10.44733,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,10,4,0,353,138438.28,-45557.848,0,0,0,0,1248.3105 +4299,5246,9305,-9,9301,-9,1,1,23,0,0,0,2,2,-9,0,4,7.9361839,7.5798378,0,0,0,-1045.8405,0,2,3,2021,7,0,45,48,1,0,1,6.5536656,6.5536656,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,10,4,0,1145,121571.97,-14788.602,0,0,0,0,1625.4312 +4300,5247,9306,9307,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,46,-2,-62.218189,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5927258,0,56.35,51.16,52.34,56.95,8.333333333333334,1,1,0,0,11,5,3,1,1027.5,753313.88,300092.13,244924.5,0,0,0,1680.5281 +4300,5247,9307,9306,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.9682336,7.4797053,11,2,27.405638,0,3,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9336267,7.6297674,52.34,56.95,56.35,51.16,8.333333333333334,1,1,0,0,12,5,3,1,1027.5,753313.88,300092.13,244924.5,0,0,0,1680.5281 +4301,5248,9308,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.0062556,6.9860206,0,0,-964.81848,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0319829,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,526,39401.414,38385.797,0,0,0,0,1547.0698 +4302,5249,9309,-9,-9,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-987.10242,-9,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.62,27.7,-9,-9,5,1,1,0,1,0,13,1,0,110,-146844,8687.9824,0,0,738.80536,0,553.36316 +4303,5250,9310,9311,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,9.0837126,9.3425407,45,-3,-71.617752,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8601551,62.99,44.02,57.06,57.76,10,1,1,0,0,8,6,5,1,890,887536.88,717887.63,118878.02,16126.887,0,0,4832.8594 +4303,5250,9311,9310,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,0,0,45,3,-6.4482393,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.99,44.02,1.666666666666667,1,1,0,0,4,6,5,1,890,887536.88,717887.63,118878.02,16126.887,0,0,4832.8594 +4304,5251,9312,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,3,0,6.5662341,7.1099043,0,0,-1055.2235,0,-9,-9,2021,24,12,0,21,3,12,0,0,0,0,0,0,0,0,0,0,120,1,0,1,6.4873323,0,24.28,42.81,-9,-9,5,1,1,0,0,10,7,2,1,232.33333,131109.59,0,0,0,0,0,1537.5248 +4304,5251,9313,-9,9312,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.37543,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,2,1,232.33333,131109.59,0,0,0,0,0,1537.5248 +4304,5251,9314,-9,9312,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1029.1332,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37,44,-9,-9,5,4,2,-9,0,0,7,2,1,232.33333,131109.59,0,0,0,0,0,1537.5248 +4305,5252,9315,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.0333424,7.8530164,0,0,0,-1015.1513,0,2,3,2021,11,0,40,40,1,0,0,8.6679182,8.6679182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,9,13,4,0,1581,188609.7,131298.31,0,0,5033.0874,0,1708.5437 +4305,5253,9316,-9,9315,-9,1,0,22,0,0,0,2,2,0,0,4,0,0,0,0,0,-1131.17,-9,2,-9,2021,11,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.690824,0,47.44,56.39,-9,-9,8.333333333333334,1,1,0,0,6,13,1,0,225,-275896.84,0,0,0,0,0,1699.4314 +4306,5254,9317,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.3961344,8.4211006,6.1141214,0,0,-973.21393,0,2,2,2021,6,0,35,35,1,0,0,15.545394,15.545394,.05,.05,0,0,0,0,0,0,0,0,0,0,6.5412445,60.12,54.8,-9,-9,0,1,1,0,0,13,4,5,1,580,1374056.3,847342,335509.63,0,943.25964,0,2593.7283 +4307,5255,9318,9319,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,8.2513628,7.9956732,0,1,-1,-26.85074,-9,3,3,2021,9,1,30,0,1,1,0,10.899887,10.899887,0,0,0,0,0,0,0,0,1,1,0,0,0,51.33,24.03,38.51,48.9,5,1,1,0,0,3,13,3,1,225,375304.13,226475.81,0,0,17880.063,0,1151.63 +4307,5255,9319,9318,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,0,0,0,1,1,27.359598,-9,2,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,48.9,51.33,24.03,6.666666666666667,1,1,0,0,0,13,3,1,225,375304.13,226475.81,0,0,17880.063,0,1151.63 +4307,5256,9320,-9,9319,9318,1,1,18,0,0,1,3,0,-9,0,4,0,0,0,0,0,-984.97345,-9,2,3,2021,15,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,834,-34009.434,0,0,0,0,0,12.084229 +4308,5257,9321,9322,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,9.2530479,9.2249613,44,-1,142.7701,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,9.4140377,8.5091143,49.04,55.86,28.16,65.32000000000001,6.666666666666667,1,1,0,0,0,2,5,1,949.5,818632.75,778699.5,184033.47,89199.922,3518.7373,0,6477.6182 +4308,5257,9322,9321,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.9326935,6.8324084,44,1,-128.72983,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6075802,6.9555693,28.16,65.32000000000001,49.04,55.86,6.666666666666667,1,1,0,0,0,2,5,1,949.5,818632.75,778699.5,184033.47,89199.922,3518.7373,0,6477.6182 +4309,5258,9323,9324,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.5896149,7.7880006,0,25,-4,-71.396927,0,2,2,2021,7,0,33,30,1,0,0,8.8621035,8.8621035,0,0,0,0,0,0,0,0,0,0,0,6.6231046,0,54.74,57.22,53.14,51.28,10,1,1,0,0,13,4,5,1,1550,915600.88,635008.88,217436.09,27293.113,0,0,3456.9509 +4309,5258,9324,9323,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.6939621,8.5234375,0,23,4,-28.192183,0,2,2,2021,8,0,43,44,1,0,0,14.809165,14.809165,.05,.05,0,0,0,0,0,0,0,0,0,7.069756,0,53.14,51.28,54.74,57.22,8.333333333333334,1,1,0,0,14,4,5,1,1550,915600.88,635008.88,217436.09,27293.113,0,0,3456.9509 +4309,5259,9325,-9,9323,9324,1,1,18,0,0,0,2,2,-9,0,4,8.1468611,7.9977818,0,0,0,-1064.8439,0,2,2,2021,9,1,70,0,1,1,1,5.9593511,5.9593511,.05,.05,0,0,0,0,0,2,0,0,0,.18280584,0,51.47,53.17,-9,-9,8.333333333333334,1,1,0,0,1,4,4,1,334,227383.02,-48848.531,0,0,3365.895,0,1626.2458 +4310,5260,9326,-9,9327,9328,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.8702,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1069,566721.25,104746.91,661444.75,361342.66,0,0,4506.5737 +4310,5260,9327,9328,-9,-9,1,0,33,0,1,0,2,2,-9,1,4,8.665905,8.3144035,0,8,-4,24.864536,0,2,2,2021,21,6,35,27,1,6,0,14.032168,14.032168,0,0,0,0,0,0,0,0,1,1,0,7.0399752,0,39.5,28.84,53.07,52.7,8.333333333333334,1,1,0,0,10,9,5,1,1069,566721.25,104746.91,661444.75,361342.66,0,0,4506.5737 +4310,5260,9328,9327,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.3563881,8.5363445,0,12,4,2.7582557,0,2,2,2021,11,1,40,39,1,1,0,15.622286,15.622286,.05,.05,0,0,0,0,0,0,1,1,0,2.6871841,0,53.07,52.7,39.5,28.84,8.333333333333334,1,1,0,0,11,9,5,1,1069,566721.25,104746.91,661444.75,361342.66,0,0,4506.5737 +4311,5261,9329,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.5988889,6.7681575,0,0,-1034.5979,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3923945,6.6222696,69.64,23.12,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,561,663208.81,-11250.891,381576.66,0,0,0,424.29871 +4312,5262,9330,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.0893922,7.5621371,6.1932807,0,0,-892.30621,0,2,2,2021,17,5,20,20,1,5,0,7.1240563,7.1240563,.05,.05,0,0,0,0,0,0,1,1,0,6.3817811,0,27.97,60.5,-9,-9,5,1,1,0,0,10,6,2,1,713.5,166054.53,-17477.008,0,0,5690.6182,-122.71037,3303.6221 +4312,5262,9331,-9,9330,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.76917,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,1,713.5,166054.53,-17477.008,0,0,5690.6182,-122.71037,3303.6221 +4313,5263,9332,-9,9333,9334,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.6573,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,2,0,355,-31657.951,-35241.07,0,0,6496.8984,1191.0562,1016.0172 +4313,5263,9333,9334,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.4367285,7.870204,0,2,-2,28.838688,0,2,2,2021,13,1,25,23,1,1,0,10.085463,10.085463,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,29.59,67.61,6.666666666666667,1,1,0,0,11,7,2,0,355,-31657.951,-35241.07,0,0,6496.8984,1191.0562,1016.0172 +4313,5263,9334,9333,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,5.3462725,5.1731153,0,2,2,-.7784794,0,3,3,2021,20,9,65,50,1,9,0,.27001873,.27001873,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.59,67.61,41.34,56.62,5,1,1,0,0,13,7,2,0,355,-31657.951,-35241.07,0,0,6496.8984,1191.0562,1016.0172 +4313,5264,9335,-9,9333,9334,1,0,18,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1069.1351,1,2,3,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1184416,0,21.62,58.11,-9,-9,6.666666666666667,1,1,0,0,2,7,1,0,960,152038.66,0,0,0,0,0,1129.5659 +4314,5265,9336,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1006.2756,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.64,45.06,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,412,-79875.148,0,0,0,0,0,600.79034 +4315,5266,9337,9338,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,0,0,0,27,-13,0,-9,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.72,39.81,44.02,27.27,8.333333333333334,3,4,0,0,0,8,1,0,328,122969.94,-25900.822,139402.56,0,0,0,1536.0142 +4315,5266,9338,9337,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,0,0,27,13,0,-9,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,27.27,39.72,39.81,8.333333333333334,3,4,1,0,9,8,1,0,328,122969.94,-25900.822,139402.56,0,0,0,1536.0142 +4315,5267,9339,-9,9337,9338,1,0,29,0,0,0,2,2,-9,1,3,0,0,0,0,0,-861.35706,-9,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,43.47,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,682,22938.029,0,0,0,0,0,340.0701 +4315,5268,9340,-9,9337,9338,1,1,27,0,0,0,1,1,-9,0,3,8.3942623,8.81458,0,0,0,-986.08575,-9,2,2,2021,5,0,50,0,1,0,1,11.775368,11.775368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.85,45.79,-9,-9,6.666666666666667,3,4,0,0,5,8,5,0,405,-29707.383,-17307.715,0,0,0,0,2199.4602 +4315,5269,9341,-9,9337,9338,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1047.8136,-9,3,3,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,2,8,1,0,609,-87525.438,0,0,0,35478.48,0,-826.96796 +4316,5270,9342,-9,9345,-9,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-939.44104,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4316,5270,9343,-9,9345,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.6868,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4316,5270,9344,-9,9345,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-825.19421,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4316,5270,9345,-9,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,7.3479967,7.5956426,0,0,0,-1078.848,0,3,-9,2021,15,3,19,23,1,3,0,9.0512838,9.0512838,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.71,58.13,-9,-9,1.666666666666667,1,1,0,1,12,9,2,0,898.5,-13105.906,22901.596,0,0,9844.2803,0,2447.3657 +4317,5271,9346,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.0684996,7.1573024,0,0,-1090.67,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3758564,59.78,35.9,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,553,755573.63,107202.55,255038.67,0,0,0,995.96924 +4318,5272,9347,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.0687704,8.0443001,0,0,0,-1052.65,0,2,3,2021,5,0,35,40,1,0,0,9.6564722,9.6564722,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,44.16,-9,-9,8.333333333333334,1,1,0,0,12,2,4,0,1354,842667.25,600957.81,95844.891,0,11695.088,676.10278,1512.5616 +4319,5273,9348,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1015.4443,0,3,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.09,38.09,-9,-9,5,1,1,0,1,0,4,1,0,817,25490.313,0,125649.61,0,0,0,1229.5485 +4320,5274,9349,-9,9350,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.45465,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1169,11717.657,58196.469,0,0,0,0,2066.8486 +4320,5274,9350,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.2785969,8.1968203,6.0589514,0,0,-1079.9337,0,-9,-9,2021,8,1,33,33,1,1,0,11.018695,11.018695,.05,.05,0,0,0,0,0,0,1,1,0,5.4883504,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,1,8,11,3,1,1169,11717.657,58196.469,0,0,0,0,2066.8486 +4320,5274,9351,-9,9350,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.2139,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,1169,11717.657,58196.469,0,0,0,0,2066.8486 +4321,5275,9352,9353,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,61,-3,17.992023,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,23.76133,0,0,1,1,0,0,0,65.93000000000001,15.9,64.37,53.06,10,1,1,0,0,0,11,2,0,758,343381.84,97623.648,93389.695,0,0,0,2004.6355 +4321,5275,9353,9352,-9,-9,1,1,77,0,0,0,3,3,-9,0,5,0,5.7802215,6.0249248,61,3,-50.910004,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.9556541,64.37,53.06,65.93000000000001,15.9,10,1,1,0,0,0,11,2,0,758,343381.84,97623.648,93389.695,0,0,0,2004.6355 +4322,5276,9354,9355,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.1119828,7.0801258,41,1,100.62155,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,8.5357256,0,2,1,1,0,6.8825374,6.7884912,45.71,26.92,52,47,1.666666666666667,1,1,0,0,0,9,3,1,522,692615.06,361116,280168.94,0,0,0,3500.7012 +4322,5276,9355,9354,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.2942553,7.0048623,41,-1,-25.920815,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8135562,7.0577397,52,47,45.71,26.92,7,1,1,0,0,0,9,3,1,522,692615.06,361116,280168.94,0,0,0,3500.7012 +4323,5277,9356,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4175358,7.4450245,0,0,0,-930.53851,0,3,3,2021,12,0,29,25,1,0,0,8.883791,8.883791,0,0,0,0,0,0,0,0,1,1,0,0,0,56.48,45.49,-9,-9,6.666666666666667,1,1,0,0,13,13,3,1,445,129343.77,0,44071.238,0,0,0,880.55664 +4324,5278,9357,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4145017,7.0492387,0,0,-907.75092,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0988307,7.1497579,46.68,40.55,-9,-9,6.666666666666667,1,1,0,0,8,7,3,1,6121,720106,149897.89,370575.25,24856.158,0,0,446.94598 +4325,5279,9358,9359,-9,-9,1,0,40,0,0,0,1,1,-9,1,3,0,0,0,4,-4,42.831581,0,2,2,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.37796691,0,.93,66.05,33.55,62.9,5,1,1,0,0,12,11,3,1,1064.5,103599.76,0,113957.17,50404.805,6107.624,2190.4385,852.68945 +4325,5279,9359,9358,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,7.9843602,7.8861709,0,4,4,-189.31223,0,-9,-9,2021,15,4,39,39,1,4,0,8.4143801,8.4143801,0,0,0,0,0,0,0,0,0,0,0,0,0,33.55,62.9,.93,66.05,6.666666666666667,1,1,0,0,7,11,3,1,1064.5,103599.76,0,113957.17,50404.805,6107.624,2190.4385,852.68945 +4326,5280,9360,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6818361,8.6203499,0,0,0,-1037.5649,0,2,2,2021,11,0,56,60,1,0,0,10.117496,10.117496,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,1,7,10,5,0,630,747440.06,706045.06,81940.789,12185.358,0,0,1438.2517 +4327,5281,9361,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.9122858,8.7669878,0,0,0,-979.59045,0,2,2,2021,8,1,32,32,1,1,0,29.722763,29.722763,.05,.05,0,0,0,0,0,0,0,0,0,3.1941602,0,54.61,43.01,-9,-9,5,1,1,0,0,11,11,5,1,897,1607003.1,1441767.9,376584,90201.859,0,0,1932.9496 +4328,5282,9362,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.2418118,8.2666893,0,0,0,-972.40765,0,3,3,2021,7,0,30,38,1,0,0,16.006243,16.006243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.74,53.75,-9,-9,8.333333333333334,2,3,0,0,2,6,3,1,2432,29345.473,30989.807,139886.94,78047.891,9099.9453,0,2163.8821 +4329,5283,9363,9364,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.6130366,8.1326466,0,7,1,114.71963,0,-9,-9,2021,7,0,38,40,1,0,0,8.954546,8.954546,0,0,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,12,13,4,0,350.5,-13555.297,17041.121,0,0,0,7196.8418,1671.0514 +4329,5283,9364,9363,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.9864073,8.0566216,0,7,-1,-155.90741,0,3,3,2021,8,0,32,40,1,0,0,8.817852,8.817852,0,0,0,0,0,0,0,0,0,0,0,.64983326,0,54.79,55.86,52.43,55.57,8.333333333333334,1,1,0,0,10,13,4,0,350.5,-13555.297,17041.121,0,0,0,7196.8418,1671.0514 +4329,5284,9365,-9,9364,9363,1,1,22,0,0,0,2,2,-9,0,5,7.8671646,7.7150126,0,0,0,-973.224,0,2,2,2021,6,0,36,38,1,0,1,8.5331964,8.5331964,0,0,0,0,0,0,0,0,0,0,0,1.5312774,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,3,0,361,-31306.66,0,0,0,0,0,.2502116 +4330,5285,9366,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.7213864,7.9918551,0,0,0,-994.60889,0,3,3,2021,5,0,36,37,1,0,0,9.537097,9.537097,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,113,206130.23,86566.836,48739.664,0,4794.4185,0,2308.019 +4331,5286,9367,9368,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.2943888,8.3155928,0,20,6,18.363672,0,2,2,2021,10,0,40,44,1,0,0,13.622827,13.622827,.05,.05,0,0,0,0,0,0,1,1,0,1.4610784,0,48.06,50.73,28.55,47.68,6.666666666666667,3,4,0,0,8,8,5,1,816.5,5836439,5032966,606280.44,114323.97,0,4183.6895,4109.5083 +4331,5286,9368,9367,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.9829063,8.8827362,0,22,-6,5.7862496,0,-9,-9,2021,26,11,50,48,1,11,0,15.831714,15.831714,.05,.05,0,0,0,0,0,0,1,1,0,2.3683987,0,28.55,47.68,48.06,50.73,8.333333333333334,1,1,0,0,8,8,5,1,816.5,5836439,5032966,606280.44,114323.97,0,4183.6895,4109.5083 +4331,5287,9369,-9,9368,9367,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-1171.0963,-9,1,2,2021,15,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4125597,0,46.44,59.62,-9,-9,6.666666666666667,4,2,1,0,0,8,1,1,698,16948.139,0,0,0,0,0,-274.10135 +4331,5288,9370,-9,9368,9367,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-917.98657,-9,1,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,8.333333333333334,4,2,0,0,1,8,1,1,455,-4.1979194,0,0,0,26566.004,0,561.52972 +4332,5289,9371,9372,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,3.8755307,3.5684743,58,-4,48.748848,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3253016,3.7523546,47.48,44.33,59.04,54.12,8.333333333333334,1,1,0,0,0,2,2,1,351,162629.44,-24231.35,109799.98,0,0,0,808.37665 +4332,5289,9372,9371,-9,-9,1,0,87,0,0,0,3,3,-9,0,5,0,0,0,58,4,81.288223,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8808546,0,59.04,54.12,47.48,44.33,10,1,1,0,0,0,2,2,1,351,162629.44,-24231.35,109799.98,0,0,0,808.37665 +4333,5290,9373,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.7774229,7.9799023,0,0,0,-956.20337,0,2,2,2021,8,2,41,41,1,2,0,9.0133915,9.0133915,.05,.05,.05,0,0,0,0,0,0,0,0,6.5787935,0,30.2,62.35,-9,-9,6.666666666666667,1,1,0,0,12,12,4,1,240,556736.69,100202.76,264975.63,0,0,0,1998.4344 +4334,5291,9374,9375,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.6583705,7.6397686,0,18,-3,-53.333851,0,2,2,2021,9,0,29,30,1,0,0,8.1837454,8.1837454,.05,.05,0,0,0,0,0,0,1,1,0,3.6541746,0,45.32,61.53,52,56,8.333333333333334,1,1,0,0,8,6,5,1,892,1257067.9,962249.5,206927.11,65898.141,0,0,4239.7988 +4334,5291,9375,9374,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,9.0693369,8.8716249,0,18,3,115.62051,0,2,2,2021,9,0,45,50,1,1,0,20.712955,20.712955,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,45.32,61.53,7,1,1,0,0,1,6,5,1,892,1257067.9,962249.5,206927.11,65898.141,0,0,4239.7988 +4335,5292,9376,9377,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.321888,8.0299578,6,2,20.086788,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9211286,8.3993206,55.69,45.86,57.24,41.16,8.333333333333334,1,1,0,0,0,5,4,1,569,1642518.3,788852.5,279172.63,0,0,0,3070.4255 +4335,5292,9377,9376,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0650072,6.9334135,6,-2,9.0597458,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,10.961775,0,0,1,1,0,1.7645937,6.9073892,57.24,41.16,55.69,45.86,8.333333333333334,1,1,0,0,0,5,4,1,569,1642518.3,788852.5,279172.63,0,0,0,3070.4255 +4336,5293,9378,9379,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.0252371,7.5452194,55,3,57.536366,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6196671,49.58,55.59,50,46,6.666666666666667,1,1,0,0,0,11,3,1,432,1513506,825656.94,643655.56,0,0,0,3354.2188 +4336,5293,9379,9378,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.3699102,7.2021246,55,-3,73.935356,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3198199,50,46,49.58,55.59,7,1,1,0,0,0,11,3,1,432,1513506,825656.94,643655.56,0,0,0,3354.2188 +4337,5294,9380,-9,-9,-9,1,0,50,0,2,0,2,2,-9,1,4,7.2372279,7.8717346,7.2062984,0,0,-1011.9474,0,2,1,2021,11,2,40,60,1,2,0,3.2101359,3.2101359,.05,.05,0,0,0,0,0,42,1,1,0,6.9456768,0,28.95,62.45,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,351,88273.211,67140.617,0,0,0,0,3466.9688 +4337,5294,9381,-9,9380,-9,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-911.77563,-9,2,-9,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5655823,0,12.8,56.82,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,351,88273.211,67140.617,0,0,0,0,3466.9688 +4338,5295,9382,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.3391552,7.2346015,0,0,-1034.2626,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5075622,7.0074868,57.33,53.46,-9,-9,10,1,1,0,0,3,2,3,1,355,288850.56,116028.64,164605.77,0,0,0,1378.8746 +4339,5296,9383,-9,9385,9384,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.1816,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,3,0,411,-105805.94,0,0,0,0,0,1548.4355 +4339,5296,9384,9385,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.2975769,8.2288876,0,17,9,133.05182,0,3,2,2021,6,0,40,38,1,0,0,13.588532,13.588532,0,0,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,45.91,42.53,8.333333333333334,2,3,0,0,13,8,3,0,411,-105805.94,0,0,0,0,0,1548.4355 +4339,5296,9385,9384,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,0,0,0,17,0,-64.830009,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,42.53,56.57,57.78,8.333333333333334,2,3,0,0,0,8,3,0,411,-105805.94,0,0,0,0,0,1548.4355 +4339,5297,9386,-9,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,7.7116385,6.8363609,0,0,0,-1000.117,0,-9,-9,2021,12,0,20,48,1,0,0,9.8065224,9.8065224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37,47.76,-9,-9,5,2,3,0,0,13,8,3,0,123,89520.883,-18385.047,0,0,0,0,1154.7329 +4340,5298,9387,9388,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.9991846,8.7667789,0,4,-4,-124.11124,0,2,3,2021,16,5,48,48,1,5,0,17.056679,17.056679,.05,.05,0,0,0,0,0,0,0,0,0,6.3993649,0,43.43,54.3,39.33,60.15,6.666666666666667,1,1,0,0,7,5,5,1,548,1025639.8,648124.38,469879.75,180887.81,0,0,5075.7344 +4340,5298,9388,9387,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.8067379,8.6686583,0,4,4,-35.338398,0,-9,-9,2021,12,0,43,43,1,0,0,22.077784,22.077784,.05,.05,0,0,0,0,0,0,0,0,0,2.3449292,0,39.33,60.15,43.43,54.3,5,1,1,0,0,6,5,5,1,548,1025639.8,648124.38,469879.75,180887.81,0,0,5075.7344 +4341,5299,9389,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.6307364,7.6142211,0,0,-1133.0536,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4028687,7.9340954,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,4,3,1,221,509954.22,314094.16,255110.89,0,0,0,1373.9653 +4342,5300,9390,9392,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7572231,8.5893822,0,17,-2,-52.325096,0,2,2,2021,10,2,35,38,1,2,0,17.157818,17.157818,.05,.05,0,0,0,0,0,0,1,1,0,2.3413031,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4342,5300,9391,-9,9390,9392,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.62469,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4342,5300,9392,9390,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.1048708,8.9001999,0,17,2,140.85609,0,2,2,2021,9,0,46,47,1,0,0,16.881899,16.881899,.05,.05,0,0,0,0,0,0,1,1,0,5.3950419,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,11,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4342,5300,9393,-9,9390,9392,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.6027,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1272,1591194.9,364725.63,547229.94,93044.453,0,0,5536.3525 +4343,5301,9394,9397,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.7887449,8.611845,4.2155652,12,0,78.747818,0,-9,-9,2021,10,0,43,44,1,1,0,13.975406,13.975406,.05,.05,0,0,0,0,0,0,1,1,0,4.3758655,0,49,57,48.77,60.16,7,1,1,0,0,13,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9395,-9,9397,9394,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1153.9731,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9396,-9,9397,9394,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0992,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9397,9394,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,8.2572241,8.1429863,0,12,0,13.593581,0,2,2,2021,12,0,24,24,1,0,0,17.235582,17.235582,0,0,0,0,0,0,0,0,1,1,0,7.6072693,0,48.77,60.16,49,57,8.333333333333334,1,1,0,0,13,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4343,5301,9398,-9,9397,9394,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.1091,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,826,135788.77,59654.844,179526.44,27715.371,4239.3228,0,4162.0342 +4344,5302,9399,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.127316,5.0122271,0,0,-765.93872,0,-9,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.5777392,5.3211141,41.39,38.2,-9,-9,5,1,1,0,1,9,9,2,0,679,363823.28,-55575.605,214412.47,0,0,0,1733.2534 +4345,5303,9400,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,5.2258496,5.3120465,0,0,-947.68646,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8657937,5.1423054,57.63,56.14,-9,-9,10,1,1,0,0,4,2,2,0,4221,180740.61,-62327.387,174142.48,0,0,0,999.92755 +4346,5304,9401,-9,9402,9404,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.0069,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4346,5304,9402,9404,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,6.3333516,6.1960516,0,10,-2,-20.202059,0,1,1,2021,10,0,28,27,1,0,0,2.5506985,2.5506985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,9,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4346,5304,9403,-9,9402,9404,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.3459,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4346,5304,9404,9402,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.94802,8.8364277,0,10,2,11.158541,0,2,1,2021,10,1,46,44,1,1,0,21.689199,21.689199,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,48.28,60.18,6.666666666666667,1,1,0,0,7,12,4,1,620,286730.94,215607.84,193781.36,64837.281,3327.9651,0,3052.2507 +4347,5305,9405,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.624238,8.3124199,0,0,0,-1028.5778,0,3,2,2021,10,2,48,50,1,2,0,10.113449,10.113449,0,0,.05,0,0,0,0,0,1,1,0,1.503111,0,57.46,47.78,-9,-9,1.666666666666667,1,1,0,0,7,9,5,0,1301,305221.94,139183.3,280205.59,115723.77,0,0,1700.3569 +4348,5306,9406,9407,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8775969,9.0817738,0,27,-6,81.386124,0,2,2,2021,7,1,46,40,1,1,0,13.767006,13.767006,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,50.72,51.52,8.333333333333334,1,1,0,0,9,7,5,1,975.66669,1260233.3,278173.03,506803.38,0,0,0,6917.0059 +4348,5306,9407,9406,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.2619295,9.4789925,0,26,6,88.981049,0,2,2,2021,9,1,96,45,1,1,0,13.88929,13.88929,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.72,51.52,51.24,58.84,8.333333333333334,1,1,0,0,14,7,5,1,975.66669,1260233.3,278173.03,506803.38,0,0,0,6917.0059 +4348,5306,9408,-9,9406,9407,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1031.6552,-9,1,1,2021,29,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,21.75,61.62,-9,-9,6.666666666666667,1,1,0,0,0,7,5,1,975.66669,1260233.3,278173.03,506803.38,0,0,0,6917.0059 +4348,5307,9409,-9,9406,9407,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.77081,-9,1,1,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7406178,0,29.48,62.18,-9,-9,3.333333333333333,1,1,0,0,1,7,1,1,1071,-168983.89,0,0,0,0,0,330.69196 +4349,5308,9410,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1128.0941,0,-9,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,44.54195,0,0,1,1,0,0,0,58.56,6.27,-9,-9,10,1,1,0,0,0,5,1,0,260,194214.06,0,-10233.896,0,-691.74878,0,2244.9873 +4350,5309,9411,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.1750202,8.1621027,0,0,0,-1103.0382,-9,-9,-9,2021,26,11,44,0,1,11,0,7.0345488,7.0345488,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,37.17,45.07,-9,-9,1.666666666666667,3,4,0,1,10,5,4,0,194,-50786.066,166773.7,0,0,4217.7031,0,1814.2255 +4351,5310,9412,-9,9414,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.1354,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,378,-87848.539,0,0,0,0,0,1327.4238 +4351,5310,9413,-9,9414,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.45154,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,378,-87848.539,0,0,0,0,0,1327.4238 +4351,5310,9414,-9,-9,-9,1,0,28,1,2,0,2,2,-9,1,4,0,0,0,0,0,-1044.9553,-9,2,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,30.77,64.34,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,378,-87848.539,0,0,0,0,0,1327.4238 +4352,5311,9415,9416,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.8551645,5.8682551,6,9,-105.26566,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7570028,53,46,48.65,51.93,7,1,1,0,0,0,9,3,0,818,745308.88,270038.88,224935.69,0,0,0,2951.6348 +4352,5311,9416,9415,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7075086,7.6261744,0,42,0,-7.3514533,0,2,3,2021,13,2,30,26,1,2,0,7.3778763,7.3778763,0,0,0,0,0,0,0,14.5,1,1,0,5.5832462,0,48.65,51.93,53,46,8.333333333333334,1,1,0,0,8,9,3,0,818,745308.88,270038.88,224935.69,0,0,0,2951.6348 +4353,5312,9417,9418,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.1611614,8.0185804,0,4,6,-56.76664,0,-9,-9,2021,11,0,48,48,1,0,0,6.311142,6.311142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.7,31,5,1,1,0,0,11,4,3,0,608.5,588297.25,441843.75,129364.94,0,0,0,2264.8535 +4353,5312,9418,9417,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,4,-6,-92.932236,0,3,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.7,31,57.33,53.46,1.666666666666667,1,1,0,0,0,4,3,0,608.5,588297.25,441843.75,129364.94,0,0,0,2264.8535 +4354,5313,9419,9420,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,6.7561235,6.7151117,46,3,-13.96034,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3045516,6.126637,54.1,59.11,46.16,58.62,8.333333333333334,1,1,0,0,10,10,3,1,579,1065456.8,846110.25,37947.828,21050.953,0,0,2286.4839 +4354,5313,9420,9419,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.0307045,8.1324644,0,46,-3,52.393745,0,2,1,2021,11,2,36,6,1,2,0,11.027155,11.027155,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,54.1,59.11,8.333333333333334,1,1,0,0,9,10,3,1,579,1065456.8,846110.25,37947.828,21050.953,0,0,2286.4839 +4355,5314,9421,9423,-9,-9,1,0,53,0,1,0,2,2,-9,0,2,0,7.8198786,7.9597821,12,-2,-42.541328,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,0,1,8.5258331,0,46.56,34.2,57.47,42.93,6.666666666666667,1,1,0,0,4,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9422,-9,9421,9423,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.01605,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9423,9421,-9,-9,1,1,55,0,1,0,2,2,-9,0,2,6.8881245,6.8076019,0,12,2,-35.431164,0,2,2,2021,7,0,40,0,1,0,0,3.6958611,3.6958611,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.47,42.93,46.56,34.2,5,1,1,0,1,14,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9424,-9,9421,9423,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-837.93005,-9,-9,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4355,5314,9425,-9,9421,9423,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1078.4647,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,62,-9,-9,7,1,1,-9,0,0,6,3,1,598.20001,154936.75,-6918.7046,125965.69,32084.033,0,7225.478,2674.1265 +4356,5315,9426,9427,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.7719831,8.3910551,0,11,-1,32.4841,0,1,2,2021,12,0,42,40,1,0,0,11.826025,11.826025,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,54.36,39.33,58.88,8.333333333333334,1,1,0,0,12,2,5,1,1086,333006.09,114660.17,217682.25,0,6112.835,0,3439.855 +4356,5315,9427,9426,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.1144953,7.7268691,0,11,1,68.740913,0,-9,-9,2021,12,0,43,41,1,0,0,8.4232922,8.4232922,.05,.05,0,0,0,0,0,0,0,0,0,1.8986349,0,39.33,58.88,46.16,54.36,6.666666666666667,1,1,0,0,12,2,5,1,1086,333006.09,114660.17,217682.25,0,6112.835,0,3439.855 +4357,5316,9428,9429,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.0341377,8.8500643,0,34,-1,.52630311,0,2,1,2021,11,0,45,48,1,0,0,19.9259,19.9259,.05,.05,.05,0,0,0,0,0,0,0,0,6.7690401,0,57.73,54.53,59.07,43.05,8.333333333333334,4,2,0,0,9,4,5,1,492.5,424131.19,174197.41,284219.03,131674.86,0,0,4607.7568 +4357,5316,9429,9428,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.5690928,7.6366673,0,34,1,-15.79823,0,3,3,2021,8,0,20,30,1,0,0,11.740956,11.740956,0,0,0,0,0,0,0,0,0,0,0,.8054074,0,59.07,43.05,57.73,54.53,8.333333333333334,1,1,0,0,11,4,5,1,492.5,424131.19,174197.41,284219.03,131674.86,0,0,4607.7568 +4357,5317,9430,-9,9429,9428,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-913.00696,-9,1,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.73,63.1,-9,-9,8.333333333333334,4,2,0,0,2,4,1,1,520,-78975.039,0,0,0,0,0,-264.47968 +4358,5318,9431,9432,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,0,0,0,16,-10,0,0,2,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,1,0,120.5,35870.141,-5465.8887,0,0,0,0,2077.8142 +4358,5318,9432,9431,-9,-9,1,1,43,0,2,0,2,2,-9,1,4,0,0,0,16,10,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,0,8,1,0,120.5,35870.141,-5465.8887,0,0,0,0,2077.8142 +4359,5319,9433,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,1,0,6.7314653,6.6572142,0,0,-1045.9117,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,26.689447,0,0,1,1,0,.50039351,6.927587,28.03,36.57,-9,-9,8.333333333333334,3,4,0,0,0,6,2,1,251,558019.69,81304.047,119194.27,0,0,0,786.70172 +4360,5320,9434,9435,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.2638607,9.4094162,0,8,-1,42.188568,0,2,2,2021,9,0,44,45,1,0,0,24.623165,24.623165,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4360,5320,9435,9434,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.4468727,8.3369341,0,8,1,29.445139,0,1,2,2021,7,0,35,32,1,0,0,17.296335,17.296335,.05,.05,0,0,0,0,0,0,0,0,0,6.2728887,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4360,5320,9436,-9,9435,9434,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-854.80273,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4360,5320,9437,-9,9435,9434,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.5266,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,840.25,1378798,1149816.5,332852,160716.08,3956.0605,0,4772.3804 +4361,5321,9438,9439,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,6,-2,17.721075,0,-9,-9,2021,6,0,0,31,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.86,13.45,57.16,56.15,6.666666666666667,1,1,0,0,11,10,2,1,311.5,20896.391,54176.473,0,0,2312.9541,911.58636,467.64093 +4361,5321,9439,9438,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,5.3292446,5.1242552,0,6,2,5.075037,0,2,2,2021,7,0,50,45,1,0,0,.37143916,.37143916,0,0,0,0,0,0,0,0,1,1,0,2.5288022,0,57.16,56.15,50.86,13.45,8.333333333333334,1,1,0,0,10,10,2,1,311.5,20896.391,54176.473,0,0,2312.9541,911.58636,467.64093 +4362,5322,9440,9442,-9,-9,1,0,33,0,2,0,1,1,-9,0,5,5.8152428,5.6324153,0,13,-15,-107.42784,0,2,1,2021,9,0,2,0,1,0,0,21.706406,21.706406,.05,.05,0,0,0,0,0,0,1,1,0,1.3549531,0,51.14,60.45,52.78,44.94,8.333333333333334,1,1,0,0,5,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4362,5322,9441,-9,9440,9442,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.3727,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4362,5322,9442,9440,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,7.9436879,8.3014221,4.2071328,14,15,33.345116,0,3,2,2021,13,1,40,40,1,1,0,11.417233,11.417233,.05,.05,0,0,0,0,0,0,1,1,0,0,4.3198619,52.78,44.94,51.14,60.45,5,1,1,0,0,8,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4362,5322,9443,-9,9440,9442,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.8928,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,1134.5,149925.25,168016.02,0,0,1148.1973,0,2532.5925 +4363,5323,9444,9445,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,8.0290413,8.033658,11,1,-81.504044,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2544975,52.73,9.859999999999999,53,40.54,3.333333333333333,1,1,0,0,0,5,4,1,296,1533948.3,793313.38,234815.78,0,0,0,3079.832 +4363,5323,9445,9444,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.0054607,7.0603251,42,-1,107.918,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.8668005,7.4850755,53,40.54,52.73,9.859999999999999,5,1,1,0,0,10,5,4,1,296,1533948.3,793313.38,234815.78,0,0,0,3079.832 +4363,5324,9446,-9,9445,9444,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-962.05121,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,1267,-103762.09,0,0,0,0,0,1140.004 +4364,5325,9447,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,7.0395684,7.1094618,0,0,-1051.7075,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.8062,36.72,22.64,-9,-9,5,1,1,0,0,0,12,2,0,837,551213,492555.34,60641.813,0,158.66345,0,1126.6219 +4364,5326,9448,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-978.70758,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,25.147093,0,0,1,1,0,0,0,53.24,26.04,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,574,16190.586,0,0,0,0,0,947.38556 +4364,5327,9449,-9,-9,9448,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1079.6498,0,-9,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,49.63,54.22,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,99,200534.69,0,0,0,0,0,-463.66333 +4365,5328,9450,-9,9451,9452,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1013.2311,-9,1,2,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4365,5328,9451,9452,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,0,0,0,22,-1,-57.279121,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,2.6380136,0,43.42,62.33,48.87,58.55,8.333333333333334,1,1,0,0,2,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4365,5328,9452,9451,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.8282919,9.7819281,0,23,1,-11.299315,0,-9,-9,2021,12,3,40,105,1,3,0,52.500546,52.500546,.05,.05,0,0,0,0,0,2,0,0,0,2.6196346,0,48.87,58.55,43.42,62.33,6.666666666666667,1,1,0,0,9,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4365,5328,9453,-9,9451,9452,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.05646,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,1265,905784.81,669210,182343.03,0,0,0,5765.1055 +4366,5329,9454,-9,9457,9455,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-1094.9117,-9,3,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,58.32,50.22,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9455,9457,-9,-9,1,1,56,0,3,0,3,3,-9,0,3,0,0,0,21,10,0,-9,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.4609039,0,50,49,46.62,47.44,7,2,3,1,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9456,-9,9457,9455,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.8606,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9457,9455,-9,-9,1,0,46,0,3,0,3,3,-9,1,3,0,0,0,21,-10,0,0,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,46.62,47.44,50,49,8.333333333333334,2,3,0,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4366,5329,9458,-9,9457,9455,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1076.0977,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,2,3,-9,0,0,8,1,0,430.60001,69289.906,0,0,0,0,0,1363.7531 +4367,5330,9459,9460,-9,9461,1,1,29,1,2,0,1,1,-9,0,4,8.8127222,8.8013935,0,6,0,40.14502,0,3,3,2021,12,0,37,37,1,0,0,20.434799,20.434799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.88,56.68,56.04,51.3,8.333333333333334,2,3,0,0,7,8,4,1,662.5,157121.8,121458.06,373204.06,163791.97,0,0,4650.7188 +4367,5330,9460,9459,-9,-9,1,0,29,1,2,0,1,1,-9,0,3,8.2736588,7.681531,0,6,0,82.400612,0,-9,-9,2021,9,0,38,38,1,0,0,9.1199751,9.1199751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.04,51.3,52.88,56.68,6.666666666666667,2,3,0,0,15,8,4,1,662.5,157121.8,121458.06,373204.06,163791.97,0,0,4650.7188 +4367,5331,9461,-9,-9,-9,1,1,73,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1025.3722,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.46,34.53,-9,-9,6.666666666666667,2,3,0,0,0,8,2,1,1157,104639.66,0,0,0,0,0,-132.92111 +4367,5332,9462,-9,-9,9461,1,0,31,1,2,0,2,2,-9,0,5,8.1151934,8.0321894,0,0,0,-889.90228,0,3,3,2021,12,0,1,30,1,0,0,343.89432,343.89432,0,0,0,0,0,0,0,7,1,1,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,12,8,3,1,2257.5,-48072.371,0,0,0,0,0,1146.3401 +4367,5332,9463,-9,9462,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.3876,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,2257.5,-48072.371,0,0,0,0,0,1146.3401 +4367,5333,9464,9466,-9,9461,1,1,27,1,2,0,2,2,-9,0,3,7.7162075,8.0736551,0,5,1,-.25693932,0,3,3,2021,11,0,40,-9,1,0,0,7.2868395,7.2868395,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,50.63,50.99,6.666666666666667,2,3,0,0,10,8,4,1,1434,161815.42,107333.84,199693.89,138855.66,7792.4868,0,3884.4827 +4367,5333,9465,-9,9466,9464,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7355,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,4,1,1434,161815.42,107333.84,199693.89,138855.66,7792.4868,0,3884.4827 +4367,5333,9466,9464,-9,-9,1,0,26,1,2,0,1,1,-9,0,3,8.3424778,8.4111528,0,5,-1,-50.426159,0,-9,-9,2021,12,0,15,15,1,0,0,28.269892,28.269892,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.63,50.99,52.6,52.88,6.666666666666667,2,3,0,0,15,8,4,1,1434,161815.42,107333.84,199693.89,138855.66,7792.4868,0,3884.4827 +4367,5334,9467,-9,-9,9461,1,0,27,1,2,0,2,2,-9,0,3,7.9312406,8.0659895,0,0,0,-1084.5018,-9,3,3,2021,11,0,40,0,1,0,0,7.3231354,7.3231354,0,0,0,0,0,0,0,0,1,1,0,0,0,60.27,52.13,-9,-9,6.666666666666667,2,3,0,0,6,8,3,1,399,18907.686,95346.594,0,0,0,2016.5995,866.685 +4368,5335,9468,9469,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,8.1776133,8.2736282,0,45,2,-73.237808,0,2,2,2021,7,0,37,0,1,0,0,10.466464,10.466464,.05,.05,0,0,0,0,0,0,1,1,0,2.3429401,0,59.14,52.5,61.12,51.57,8.333333333333334,1,1,0,0,7,9,4,1,209,808101.25,367619.59,496627.69,0,0,0,3478.5271 +4368,5335,9469,9468,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.4232244,6.883554,45,-2,66.08033,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.5909138,7.0716872,61.12,51.57,59.14,52.5,10,1,1,0,0,0,9,4,1,209,808101.25,367619.59,496627.69,0,0,0,3478.5271 +4369,5336,9470,9471,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,11,-2,-27.513311,0,3,2,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9743915,0,46.16,24.32,46.98,59.35,1.666666666666667,1,1,0,0,10,8,4,1,2950,2969975,1215032.4,647563.81,0,0,0,2023.1047 +4369,5336,9471,9470,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.3913584,8.4812431,0,11,2,90.936073,0,1,1,2021,13,3,40,40,1,3,0,13.447978,13.447978,.05,.05,0,0,0,0,0,0,0,0,0,.29317987,0,46.98,59.35,46.16,24.32,8.333333333333334,1,1,0,0,13,8,4,1,2950,2969975,1215032.4,647563.81,0,0,0,2023.1047 +4370,5337,9472,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.1860542,5.9880681,0,0,-1008.7618,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.470378,6.2646155,67.96000000000001,27.95,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,183,427825.66,-61086.883,133630.2,0,0,0,688.99811 +4371,5338,9473,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.7449851,7.9658685,0,0,0,-984.20142,0,2,2,2021,5,0,38,0,1,0,0,7.892045,7.892045,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,2,3,0,0,9,8,4,0,630,-72389.758,52622.719,0,0,0,7146.1465,583.82892 +4372,5339,9474,9478,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,6.4770184,6.4681473,0,18,0,-142.33646,0,1,2,2021,13,1,2,2,1,1,0,35.719669,35.719669,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.45,50.07,59.53,56.44,6.666666666666667,1,1,0,0,13,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9475,-9,9474,9478,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.7834,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9476,-9,9474,9478,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1006.5629,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,1.2133622,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9477,-9,9474,9478,1,0,17,0,2,1,2,0,0,1,2,0,0,0,0,0,-1011.415,-9,2,3,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.8,51.61,-9,-9,10,1,1,0,0,0,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4372,5339,9478,9474,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,6.6217818,6.428113,0,18,9,9.0206738,0,-9,-9,2021,7,0,39,-9,1,0,0,2.4219751,2.4219751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,41.45,50.07,10,1,1,0,0,12,12,2,0,1846,47153.734,11144.646,0,0,5598.9297,0,2526.1616 +4373,5340,9479,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,5.475585,5.5383592,0,0,-1063.4047,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,6.7790418,4.7967935,35.302025,0,1,1,0,.45417818,5.1498342,51.85,11.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1963,-11443.64,-12965.93,0,0,0,0,2028.6829 +4374,5341,9480,-9,9484,-9,1,1,10,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1032.0986,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9481,-9,9484,-9,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1018.4625,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9482,-9,9484,-9,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1040.9363,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9483,-9,9484,-9,1,0,15,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1052.7428,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9484,-9,-9,-9,1,0,39,0,5,0,2,2,-9,0,4,0,7.2902303,6.9766364,0,0,-882.69629,0,3,2,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3039055,0,48.65,55.84,-9,-9,10,2,3,0,0,3,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4374,5341,9485,-9,9484,-9,1,0,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-885.8266,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,702.83331,7807.3682,-1781.8549,163950.88,60194.727,0,0,2568.7021 +4375,5342,9486,9488,9490,9489,1,1,41,1,1,0,2,2,-9,0,2,6.9539804,6.8107328,0,15,2,31.236383,0,3,2,2021,11,1,50,50,1,1,0,1.9605057,1.9605057,0,0,0,0,0,0,0,0,1,1,0,6.7963848,0,50.27,48.86,39.39,44.21,5,2,3,0,0,9,4,2,1,644.66669,1200507.1,676225.75,261966.16,33458.594,-145.23421,0,1696.3154 +4375,5342,9487,-9,9488,9486,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.7534,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,644.66669,1200507.1,676225.75,261966.16,33458.594,-145.23421,0,1696.3154 +4375,5342,9488,9486,-9,-9,1,0,39,1,1,0,2,2,-9,0,4,6.6954103,7.0420861,0,15,-2,-45.243168,0,3,2,2021,8,2,21,17,1,2,0,6.634232,6.634232,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,44.21,50.27,48.86,0,2,3,0,0,8,4,2,1,644.66669,1200507.1,676225.75,261966.16,33458.594,-145.23421,0,1696.3154 +4375,5343,9489,9490,-9,-9,1,1,71,1,1,0,3,3,-9,0,3,0,6.8285246,6.3432059,4,-1,22.726791,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2894878,6.6284332,53,47,51,46,7,2,3,0,0,0,4,2,1,441.5,229024.97,0,160834.34,0,0,0,444.73306 +4375,5343,9490,9489,-9,-9,1,0,72,1,1,0,3,3,-9,0,3,0,0,0,4,1,138.97607,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,2,3,0,0,0,4,2,1,441.5,229024.97,0,160834.34,0,0,0,444.73306 +4376,5344,9491,9492,-9,-9,1,1,46,0,3,0,1,1,-9,0,5,8.3920326,8.6775303,0,25,-1,148.84222,0,2,2,2021,13,3,50,55,1,3,0,15.858252,15.858252,.05,.05,0,0,0,0,0,0,1,1,0,6.4127064,0,41.2,62.39,45.97,51.9,8.333333333333334,1,1,0,0,6,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9492,9491,-9,-9,1,0,47,0,3,0,1,1,-9,0,3,7.6825767,8.0925093,0,25,1,10.313522,0,1,1,2021,9,0,20,10,1,0,0,11.9767,11.9767,.05,.05,0,0,0,0,0,0,1,1,0,3.2435088,0,45.97,51.9,41.2,62.39,8.333333333333334,1,1,0,0,4,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9493,-9,9492,9491,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.91852,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9494,-9,9492,9491,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-988.03796,-9,1,1,2021,15,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4376,5344,9495,-9,9492,9491,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.7469,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,3,0,283.39999,443906.25,192662.52,350785.94,97012.211,0,0,4382.3535 +4377,5345,9496,9497,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,8.5912037,8.2339973,0,2,1,112.43628,-9,-9,-9,2021,7,0,70,0,1,0,0,7.1422515,7.1422515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,31.19,51.91,8.333333333333334,1,1,0,0,4,11,4,1,371.33334,152789.5,9566.3096,328039.63,177131.34,1272.3995,10783.363,3452.166 +4377,5345,9497,9496,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,8.2747164,8.0455818,0,2,-1,-14.851,0,-9,-9,2021,16,4,21,21,1,4,0,20.429676,20.429676,0,0,0,0,0,0,0,0,1,1,0,6.8696136,0,31.19,51.91,57.16,56.15,8.333333333333334,1,1,0,0,1,11,4,1,371.33334,152789.5,9566.3096,328039.63,177131.34,1272.3995,10783.363,3452.166 +4377,5345,9498,-9,9497,9496,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.1483,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,371.33334,152789.5,9566.3096,328039.63,177131.34,1272.3995,10783.363,3452.166 +4378,5346,9499,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1088.8757,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3353314,0,60.12,54.8,-9,-9,10,1,1,0,0,0,10,1,1,1985,91106.656,0,0,0,0,0,1009.4651 +4379,5347,9500,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.5837431,8.1767559,0,6,-6,15.18293,0,3,2,2021,11,0,40,37,1,0,0,14.212436,14.212436,.05,.05,0,0,0,0,0,14.5,0,0,0,3.8903711,0,57.33,53.46,57.15,37.4,8.333333333333334,1,1,0,0,13,5,5,1,187,552328.44,707257.94,239099.02,75986.602,8156.1382,2786.6323,2758.7896 +4379,5348,9501,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.8057957,8.915719,0,6,6,-71.405792,0,3,2,2021,7,1,43,40,1,1,0,20.2334,20.2334,.05,.05,0,0,0,0,0,2,0,0,0,2.0940278,0,57.15,37.4,57.33,53.46,8.333333333333334,1,1,0,0,13,5,5,1,138,199721.88,71927.039,0,0,1551.583,2727.4004,2678.8906 +4380,5349,9502,-9,-9,9503,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.21539,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,696.33331,94355.68,26786.277,133321.86,124496.14,5179.3623,4742.5615,1959.1853 +4380,5349,9503,-9,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.4288254,8.7045021,0,0,0,-992.33502,0,-9,-9,2021,12,0,40,48,1,0,0,12.007069,12.007069,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,13,6,3,1,696.33331,94355.68,26786.277,133321.86,124496.14,5179.3623,4742.5615,1959.1853 +4380,5349,9504,-9,-9,9503,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.5376,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,3,1,696.33331,94355.68,26786.277,133321.86,124496.14,5179.3623,4742.5615,1959.1853 +4381,5350,9505,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,6.086493,6.5338736,0,0,-1042.937,-9,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,7.3398266,6.3780308,58.9,43.07,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,253,309670.78,85585.234,307313.28,0,15488.718,0,1268.3043 +4382,5351,9506,9507,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,7.8238344,8.0024195,0,32,-1,-145.4097,0,2,2,2021,6,0,35,30,1,0,0,10.536541,10.536541,0,0,0,0,0,0,0,0,1,1,0,4.5733161,0,57.06,57.76,60.29,52.11,10,1,1,0,0,11,9,4,1,446.33334,1255503.8,793391.88,367082.88,33371.121,0,0,2665.1523 +4382,5351,9507,9506,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,7.7856226,7.4048653,0,33,1,83.028763,0,2,2,2021,6,0,40,40,1,0,0,8.4940281,8.4940281,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,446.33334,1255503.8,793391.88,367082.88,33371.121,0,0,2665.1523 +4382,5351,9508,-9,9506,9507,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-992.22241,-9,1,1,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.14,58.86,-9,-9,8.333333333333334,1,1,0,0,1,9,4,1,446.33334,1255503.8,793391.88,367082.88,33371.121,0,0,2665.1523 +4382,5352,9509,-9,9506,9507,1,1,26,0,0,0,1,1,-9,0,5,8.9067764,8.4890318,0,0,0,-1038.0304,0,1,1,2021,10,0,40,44,1,0,1,20.337276,20.337276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,1820,43618.988,4720.6636,0,0,0,3513.457,1967.3344 +4383,5353,9510,9511,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.5154953,4.7786946,6,-10,45.701817,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8335199,4.2667608,57.16,56.15,58.89,48.6,10,1,1,0,0,0,11,2,1,491,234149.38,38175.039,188219.36,0,0,0,1640.8396 +4383,5353,9511,9510,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.981071,6.9902272,46,10,17.194139,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4659791,7.0911055,58.89,48.6,57.16,56.15,8.333333333333334,1,1,0,0,0,11,2,1,491,234149.38,38175.039,188219.36,0,0,0,1640.8396 +4384,5354,9512,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.9316034,8.9168882,0,0,0,-1016.717,0,3,2,2021,10,0,36,36,1,0,0,18.166346,18.166346,.05,.05,0,0,0,0,0,2,0,0,0,3.6416013,0,51.83,57.2,-9,-9,1.666666666666667,3,4,0,0,13,8,5,1,280,1072685.5,729738.69,277983.38,82426.813,0,1786.8127,2128.6077 +4385,5355,9513,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.1568079,8.9646339,0,0,0,-855.16498,0,1,1,2021,13,1,52,48,1,1,0,18.050217,18.050217,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,355,1940751.3,1700652.4,0,0,0,3394.7412,2620.051 +4386,5356,9514,9516,-9,-9,1,1,39,0,1,0,2,2,-9,0,4,0,0,0,6,2,30.022753,0,2,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.3,47.38,41.44,42.97,6.666666666666667,1,1,0,0,0,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4386,5356,9515,-9,9516,9514,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.0672,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4386,5356,9516,9514,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,7.7633514,8.1827002,0,6,-2,34.58744,0,3,3,2021,14,2,24,24,1,2,0,12.571225,12.571225,0,0,0,0,0,0,0,0,1,1,0,0,0,41.44,42.97,58.3,47.38,5,1,1,0,0,7,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4386,5356,9517,-9,9516,9514,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-947.99365,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,7,2,1,663,110556.89,0,0,0,1451.0297,0,1955.7109 +4387,5357,9518,-9,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,0,0,0,0,-949.04797,-9,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.03,40.6,-9,-9,5,1,1,0,0,1,4,1,0,3542,-167830.48,48686.594,0,0,0,0,1815.9363 +4388,5358,9519,9520,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,5.23209,6.0039048,54,0,-37.898136,0,2,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,6.8552256,0,0,1,1,0,0,5.1978879,49.9,20.57,58.32,50.22,1.666666666666667,1,1,0,0,0,6,2,1,348,126134.3,80057.469,80413.305,0,2464.1799,0,2561.6704 +4388,5358,9520,9519,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.2793241,7.3075085,9,0,-113.4183,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9442849,7.1883993,58.32,50.22,49.9,20.57,8.333333333333334,1,1,0,0,0,6,2,1,348,126134.3,80057.469,80413.305,0,2464.1799,0,2561.6704 +4389,5359,9521,9522,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,6.5861621,6.3176136,0,24,7,-2.7823763,0,-9,-9,2021,9,0,40,50,1,0,0,2.0081215,2.0081215,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.87,58.55,58.2,54.53,8.333333333333334,1,1,0,0,12,10,3,1,1689,666024.13,102652.72,266426.25,0,0,0,1622.9757 +4389,5359,9522,9521,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.5148635,7.6283031,0,24,-7,29.204496,0,2,2,2021,12,0,25,25,1,0,0,8.3397675,8.3397675,0,0,0,0,0,0,0,0,0,0,0,.75351596,0,58.2,54.53,48.87,58.55,6.666666666666667,1,1,0,0,12,10,3,1,1689,666024.13,102652.72,266426.25,0,0,0,1622.9757 +4390,5360,9523,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.9473186,7.0836797,0,0,-1022.4351,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.78793,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,491,-191081.31,0,0,0,0,0,144.10509 +4391,5361,9524,-9,9525,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1082.0011,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,0,879,1402942.9,506887.41,564431.31,33343.543,0,0,2796.3396 +4391,5361,9525,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.674614,8.4998302,0,0,0,-833.24994,0,1,2,2021,3,1,30,23,1,1,0,20.788279,20.788279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,-9,-9,6.666666666666667,1,1,0,0,8,10,4,0,879,1402942.9,506887.41,564431.31,33343.543,0,0,2796.3396 +4391,5361,9526,-9,9525,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.7701,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,0,879,1402942.9,506887.41,564431.31,33343.543,0,0,2796.3396 +4392,5362,9527,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.5806699,4.986815,0,0,-1009.5178,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.8643155,0,0,1,1,0,0,4.9950733,56.26,15.43,-9,-9,10,1,1,0,0,0,13,2,1,658,135121.41,-8625.0557,141485.92,0,0,0,886.07404 +4393,5363,9528,9529,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4309235,8.5497131,0,15,-1,-45.148621,0,2,3,2021,2,0,37,45,1,0,0,11.332947,11.332947,0,0,0,0,0,0,0,0,0,0,0,2.7607682,0,54.96,53.17,30.18,65.98,8.333333333333334,1,1,0,0,10,10,5,1,329,168313.98,145073.03,0,0,2949.3906,0,2809.1338 +4393,5363,9529,9528,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.3728409,8.1487665,0,8,1,-8.6310978,0,-9,3,2021,13,1,60,60,1,1,0,9.6974659,9.6974659,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,30.18,65.98,54.96,53.17,6.666666666666667,1,1,0,0,9,10,5,1,329,168313.98,145073.03,0,0,2949.3906,0,2809.1338 +4394,5364,9530,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,8.0295601,7.7699814,0,0,-1068.3508,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9682021,7.7786264,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,492,270881.75,173534.25,238747.81,58114.922,9979.0596,0,2723.5713 +4395,5365,9531,-9,9532,9533,1,1,39,0,0,0,1,1,-9,0,5,8.9979324,8.8170357,7.8952637,0,0,-985.63898,0,1,1,2021,4,1,40,40,1,1,0,23.907293,23.907293,.05,.05,0,0,0,0,0,0,1,1,0,7.3581638,7.9545403,60.02,56.42,-9,-9,8.333333333333334,4,2,0,0,9,9,5,1,738,219238.59,132000.98,264357.09,167425.55,0,0,3654.6663 +4395,5366,9532,9533,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,4.846024,4.8595862,7,3,-78.805565,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0882463,62.49,55.09,53,46,10,1,1,0,0,0,9,4,1,395,1238530.8,824840.63,369965.81,0,0,0,2701.5918 +4395,5366,9533,9532,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,8.6406851,8.2708349,0,7,-3,50.365871,0,-9,-9,2021,9,0,50,10,1,1,0,12.747721,12.747721,0,0,0,0,0,0,0,0,1,1,0,4.7942009,0,53,46,62.49,55.09,8,4,5,0,0,1,9,4,1,395,1238530.8,824840.63,369965.81,0,0,0,2701.5918 +4396,5367,9534,9535,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1325488,7.3253598,0,40,-4,130.70767,0,2,-9,2021,10,1,20,20,1,1,0,8.6473904,8.6473904,0,0,0,0,0,0,0,2,0,0,0,9.2303343,0,48.87,58.55,46.48,55.6,6.666666666666667,1,1,0,0,14,10,4,1,926.5,33035.027,63136.012,0,0,0,8247.0957,6262.4741 +4396,5367,9535,9534,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5746231,8.7285557,0,40,4,159.78857,0,-9,-9,2021,11,2,40,35,1,2,0,15.21081,15.21081,.05,.05,0,0,0,0,0,0,0,0,0,6.2513719,0,46.48,55.6,48.87,58.55,5,1,1,0,0,14,10,4,1,926.5,33035.027,63136.012,0,0,0,8247.0957,6262.4741 +4397,5368,9536,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.8913956,8.5657692,0,0,0,-1002.3306,0,2,2,2021,7,0,52,40,1,0,0,15.460235,15.460235,0,0,0,0,0,0,0,0,0,0,0,1.8555064,0,50.06,55.28,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,738,-22275.314,0,0,0,0,0,2095.1396 +4398,5369,9537,9540,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.3637567,7.1699204,0,7,-4,67.172562,0,2,2,2021,7,0,25,25,1,0,0,7.6394687,7.6394687,0,0,0,0,0,0,0,0,0,0,0,5.4891014,0,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4398,5369,9538,-9,9537,9540,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1013.3652,-9,2,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.432235,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4398,5369,9539,-9,9537,9540,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.24353,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4398,5369,9540,9537,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,9.5739813,9.6845312,0,7,4,-16.89599,0,2,2,2021,6,0,38,46,1,0,0,51.715641,51.715641,.05,.05,.05,0,0,0,0,0,0,0,0,5.5684152,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,8,9,5,1,949,441014.06,75132.164,303311.25,15038.357,4151.4614,0,4999.9946 +4399,5370,9541,9542,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.7648754,8.6896191,0,40,-2,-58.796616,0,2,2,2021,8,0,50,64,1,0,0,15.197589,15.197589,0,0,0,0,0,0,0,7,0,0,0,0,0,51.83,57.2,52.54,52.91,10,1,1,0,0,9,10,5,1,733,2683928,1545365.3,792059.88,0,0,0,5469.5498 +4399,5370,9542,9541,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.4587994,8.5900927,7.6144471,40,2,174.55525,0,3,3,2021,11,1,45,47,1,1,0,9.3167057,9.3167057,0,0,.05,0,0,0,0,2,0,0,0,2.4894812,7.7833867,52.54,52.91,51.83,57.2,6.666666666666667,1,1,0,0,6,10,5,1,733,2683928,1545365.3,792059.88,0,0,0,5469.5498 +4400,5371,9543,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.0707092,8.0953569,0,0,0,-885.83142,0,3,-9,2021,7,0,42,40,1,0,0,10.746275,10.746275,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,483,694182.75,566780.81,146832.42,93212.797,0,0,945.70569 +4401,5372,9544,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.1761041,7.1499157,0,0,0,-1012.0782,0,3,-9,2021,12,0,30,18,1,0,0,4.4334764,4.4334764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,9,11,2,1,2400.5,75960.75,18696.576,0,0,0,0,975.49371 +4401,5372,9545,-9,9544,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.4978,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,2400.5,75960.75,18696.576,0,0,0,0,975.49371 +4402,5373,9546,9547,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.6752901,8.6006718,2.9945107,32,-4,-18.542332,0,2,3,2021,8,0,50,40,1,0,0,11.749408,11.749408,.05,.05,0,0,0,0,0,0,0,0,0,0,3.3919039,57.16,56.15,49.97,56.66,10,1,1,0,0,9,2,5,0,691.5,543781,443422.81,156470.55,0,0,0,3905.3843 +4402,5373,9547,9546,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.1207285,8.1305475,0,32,4,20.048622,0,3,3,2021,8,0,37,37,1,0,0,10.467914,10.467914,.05,.05,0,0,0,0,0,0,0,0,0,6.6819425,0,49.97,56.66,57.16,56.15,6.666666666666667,1,1,0,0,9,2,5,0,691.5,543781,443422.81,156470.55,0,0,0,3905.3843 +4403,5374,9548,9549,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,6.4841409,6.4478178,43,1,-26.274584,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7650237,6.7913842,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,5,6,2,1,566.5,303033.88,262343.34,122850.78,0,0,2345.9189,1942.7688 +4403,5374,9549,9548,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.5338478,6.7130957,43,-1,20.047443,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9872806,6.5276394,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,7,6,2,1,566.5,303033.88,262343.34,122850.78,0,0,2345.9189,1942.7688 +4403,5375,9550,-9,9549,9548,1,1,34,0,0,0,2,2,-9,0,4,8.3589516,8.4192419,0,0,0,-1055.8384,-9,3,1,2021,10,0,60,0,1,0,0,7.5147529,7.5147529,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.14,46.44,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,144,-249712.81,-65027.859,0,0,0,0,944.38348 +4404,5376,9551,9554,-9,-9,1,1,35,0,2,0,3,3,-9,0,4,8.1954775,8.5244293,0,9,-7,-125.22864,0,2,2,2021,11,0,50,60,1,0,0,8.8405237,8.8405237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,25.07,47.84,8.333333333333334,1,1,0,0,10,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4404,5376,9552,-9,9554,9551,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.82397,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4404,5376,9553,-9,9554,9551,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9292,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4404,5376,9554,9551,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.6893549,7.6512814,0,9,7,51.761971,0,2,2,2021,17,5,30,30,1,5,0,9.7411842,9.7411842,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.07,47.84,52.48,54.33,6.666666666666667,1,1,0,0,10,7,4,1,973.25,334986.47,111451.9,258749.97,128841.28,0,4018.3452,2648.4048 +4405,5377,9555,9556,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.1695023,9.1634474,0,1,-2,20.013025,-9,-9,-9,2021,6,0,40,0,1,0,0,23.910139,23.910139,.05,.05,0,0,0,0,0,0,0,0,0,1.3606514,0,59.53,56.44,43.37,42.49,10,1,1,0,0,4,10,5,1,348.5,126824.96,41351.871,174927.78,139101.08,0,0,3490.8418 +4405,5377,9556,9555,-9,-9,1,0,31,0,0,0,2,2,-9,0,1,7.9514737,7.8344059,0,1,2,-9.7796412,0,-9,-9,2021,14,3,39,39,1,3,0,10.289556,10.289556,.05,.05,0,0,0,0,0,0,0,0,0,1.2992197,0,43.37,42.49,59.53,56.44,8.333333333333334,1,1,0,0,12,10,5,1,348.5,126824.96,41351.871,174927.78,139101.08,0,0,3490.8418 +4406,5378,9557,-9,-9,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-896.97522,0,3,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,12.34,35.18,-9,-9,0,1,1,0,1,5,4,1,0,738,24479.512,0,0,0,0,0,296.31015 +4406,5379,9558,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1041.5446,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.75,52.77,-9,-9,8.333333333333334,1,1,1,1,0,4,2,0,361,92420.25,0,0,0,0,0,2.7067013 +4407,5380,9559,9560,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,4.2504468,3.9598103,11,6,4.9974928,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0296664,4.4964466,57.78,40.89,47.15,56.66,6.666666666666667,1,1,0,0,0,2,2,1,227,319083.5,-58665.227,201134.25,0,0,0,1921.2175 +4407,5380,9560,9559,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,11,-6,-102.21774,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.15,56.66,57.78,40.89,8.333333333333334,1,1,0,0,0,2,2,1,227,319083.5,-58665.227,201134.25,0,0,0,1921.2175 +4408,5381,9561,9563,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.7748909,8.8236303,0,18,4,133.05025,0,2,2,2021,6,0,37,41,1,0,0,17.837114,17.837114,.05,.05,.05,0,0,0,0,0,1,1,0,6.096992,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,13,4,4,1,921.33331,742333.19,424861.44,208070.33,83956.828,4061.4922,0,3883.1204 +4408,5381,9562,-9,9563,9561,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.99115,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,921.33331,742333.19,424861.44,208070.33,83956.828,4061.4922,0,3883.1204 +4408,5381,9563,9561,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6371431,7.3478484,0,18,-4,-206.72121,0,3,2,2021,9,0,23,22,1,0,0,9.4090662,9.4090662,.05,.05,0,0,0,0,0,0,1,1,0,7.1086435,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,6,4,4,1,921.33331,742333.19,424861.44,208070.33,83956.828,4061.4922,0,3883.1204 +4409,5382,9564,9565,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.9602289,7.8111105,25,3,49.222637,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9345851,8.193902,53.09,39.08,57.33,53.46,6.666666666666667,1,1,0,0,7,8,4,1,276,1736761.9,1113422.4,513144.81,0,0,0,2834.1313 +4409,5382,9565,9564,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,8.0224171,7.5288877,6,-3,-36.719429,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2859623,7.2541757,57.33,53.46,53.09,39.08,8.333333333333334,1,1,0,0,4,8,4,1,276,1736761.9,1113422.4,513144.81,0,0,0,2834.1313 +4410,5383,9566,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-933.20435,0,3,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.82,33.12,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,167,28950.285,0,0,0,0,0,1424.189 +4411,5384,9567,9568,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.136652,8.3623152,0,12,1,14.133821,0,-9,-9,2021,13,1,32,38,1,1,0,15.652906,15.652906,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.05,39.98,21.72,22.57,5,1,1,0,0,13,10,4,0,451.5,155436.11,-16323.243,358446.69,36241.156,996.20392,0,972.75867 +4411,5384,9568,9567,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,3.474026,3.529912,12,-1,23.677385,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.75523537,3.3910542,21.72,22.57,43.05,39.98,1.666666666666667,1,1,1,0,12,10,4,0,451.5,155436.11,-16323.243,358446.69,36241.156,996.20392,0,972.75867 +4412,5385,9569,9570,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,7.1054287,7.10918,1,3,63.301956,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.7567859,6.9823289,50.59,55.13,52,45,10,1,1,0,0,0,1,2,0,299,532408.56,196264.72,55411.457,0,0,0,2189.7827 +4412,5385,9570,9569,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,1,-3,-50.471046,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,5.7885022,0,0,1,1,0,4.7717094,0,52,45,50.59,55.13,8,1,1,0,0,0,1,2,0,299,532408.56,196264.72,55411.457,0,0,0,2189.7827 +4413,5386,9571,9572,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.3384728,5.2831335,8,-3,-43.608715,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7868357,5.2757144,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,3,12,2,1,732,125236.84,-13080.201,0,0,0,-80.680786,1011.6591 +4413,5386,9572,9571,-9,-9,1,1,79,0,0,0,2,2,-9,0,5,0,4.1281943,4.2244225,8,3,145.75319,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0197601,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,1,12,2,1,732,125236.84,-13080.201,0,0,0,-80.680786,1011.6591 +4414,5387,9573,-9,9574,9576,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.1272,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4414,5387,9574,9576,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.6036148,8.631115,0,6,2,34.036575,0,-9,-9,2021,7,0,38,37,1,0,0,15.063327,15.063327,.05,.05,0,0,0,0,0,0,1,1,0,4.0017719,0,49.46,56.91,52,54.51,8.333333333333334,1,1,0,0,10,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4414,5387,9575,-9,9574,9576,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.61865,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4414,5387,9576,9574,-9,-9,1,1,34,0,2,0,1,1,-9,0,3,9.0438747,9.1060944,0,6,-2,195.29103,0,2,2,2021,7,1,47,50,1,1,0,25.207212,25.207212,.05,.05,0,0,0,0,0,0,1,1,0,3.4297106,0,52,54.51,49.46,56.91,8.333333333333334,1,1,0,0,10,6,5,1,709.5,508311.63,63093.992,278088.81,31139.857,6049.501,0,5010.2388 +4415,5388,9577,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.905808,5.9002738,0,0,-1018.8127,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0613446,5.6735802,42.9,54.57,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,968,200309.75,-128729.13,188510.53,0,0,1046.3257,1292.4288 +4416,5389,9578,-9,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,0,0,0,0,0,-872.12012,0,2,2,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.18203434,0,30.85,17.26,-9,-9,6.666666666666667,4,2,0,0,0,4,1,0,1352,-37362.875,64728.285,0,0,0,-238.60973,1284.5581 +4417,5390,9579,9580,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.9174833,8.0986776,0,20,-3,54.310467,0,3,3,2021,24,11,40,40,1,11,0,8.9256134,8.9256134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.49,40.5,52,55,5,4,5,0,0,11,8,4,0,526,568533.88,112593.24,414921.94,0,0,0,2165.5317 +4417,5390,9580,9579,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3705578,8.0589466,0,2,3,-4.3303747,0,-9,-9,2021,9,0,54,54,1,1,0,7.7248278,7.7248278,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,53.49,40.5,8,1,1,0,0,1,8,4,0,526,568533.88,112593.24,414921.94,0,0,0,2165.5317 +4417,5391,9581,-9,9579,9580,1,0,20,0,0,0,3,3,-9,0,4,6.9807777,6.9220691,0,0,0,-994.6637,0,2,2,2021,12,0,45,45,1,2,1,2.5739834,2.5739834,0,0,0,0,0,0,0,0,1,1,0,3.5253112,0,45,59,-9,-9,7,4,5,0,0,1,8,2,0,359,-120762.88,0,0,0,0,0,1008.2937 +4417,5392,9582,-9,9579,9580,1,0,22,0,0,0,2,2,-9,0,4,7.2574382,7.3117642,0,0,0,-926.68341,0,2,2,2021,12,0,40,20,1,2,1,3.2264769,3.2264769,0,0,0,0,0,0,0,0,1,1,0,1.7119482,0,45,58,-9,-9,7,4,5,0,0,1,8,3,0,225,0,0,0,0,0,0,879.56024 +4418,5393,9583,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.704649,8.5271521,7.9562798,0,0,-964.80798,0,3,3,2021,6,0,16,16,1,0,0,25.79788,25.79788,.05,.05,0,0,0,0,0,0,0,0,0,4.2713509,7.8050942,58.15,52.91,-9,-9,10,1,1,0,0,9,2,5,0,1344,139620.97,82516.719,0,0,0,0,3077.3435 +4419,5394,9584,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.2078123,6.4763265,0,0,-930.4859,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3955994,6.3486104,55,52,-9,-9,8.333333333333334,1,1,0,0,8,10,2,1,460,356973.72,-29244.07,0,0,512.49066,0,2483.6819 +4420,5395,9585,-9,9589,9587,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.2006,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9586,-9,9589,9587,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.66821,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9587,9589,-9,-9,1,1,45,0,4,0,2,2,-9,0,4,8.9465036,9.1303377,0,18,7,132.73375,0,-9,-9,2021,22,8,65,65,1,8,0,13.460351,13.460351,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.43,65.56,32.32,63.9,1.666666666666667,2,3,0,1,13,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9588,-9,9589,9587,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-894.30505,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5395,9589,9587,-9,-9,1,0,38,0,4,0,2,2,-9,0,4,0,0,0,18,-7,-129.92494,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.32,63.9,36.43,65.56,3.333333333333333,2,3,0,1,0,8,3,0,2167,332307.63,141008.05,543185.81,224193.3,0,0,5648.627 +4420,5396,9590,-9,9589,9587,1,0,20,0,4,1,2,0,0,0,5,0,0,0,0,0,-860.17847,-9,2,2,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.47,65.17,-9,-9,5,2,3,0,0,0,8,1,0,3346,-39112.688,0,0,0,0,0,0 +4420,5397,9591,-9,9589,9587,1,0,18,0,4,1,3,0,0,0,5,0,0,0,0,0,-959.32123,-9,2,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.8,64.11,-9,-9,3.333333333333333,2,3,0,1,0,8,1,0,630,-229202.2,-29262.217,0,0,0,78.007477,0 +4421,5398,9592,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.4729381,5.5218787,0,0,-1111.4172,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.78360838,5.3408599,52,45,-9,-9,8,1,1,0,0,0,10,2,0,1522,-142173.33,59955.023,0,0,0,0,1319.3229 +4422,5399,9593,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-940.44366,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.94,41.91,-9,-9,8.333333333333334,1,1,0,1,0,13,1,1,733,-14017.683,0,0,0,0,0,1059.1417 +4423,5400,9594,9597,-9,-9,1,0,43,0,2,0,3,3,-9,0,4,0,0,0,6,-26,109.44108,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.26,48.51,54.22,39.67,6.666666666666667,3,4,1,0,3,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5400,9595,-9,9594,9597,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-938.92261,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,4,2,-9,0,0,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5400,9596,-9,9594,9597,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2063,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5400,9597,9594,-9,-9,1,1,69,0,2,0,1,1,-9,0,3,0,7.2355661,7.6934934,24,26,-86.155083,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3578849,7.6380057,54.22,39.67,50.26,48.51,1.666666666666667,3,4,0,0,4,8,2,0,632,-3473.8408,0,0,0,0,0,1152.0137 +4423,5401,9598,-9,9594,9597,1,0,20,0,2,0,2,2,-9,0,2,0,0,0,0,0,-984.69379,1,2,2,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4926026,0,40.25,50.93,-9,-9,3.333333333333333,4,2,0,0,0,8,1,0,5597,-22969.387,0,0,0,0,0,-411.41342 +4424,5402,9599,9600,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,5.9970531,6.1555414,10,-10,.69133061,0,2,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,1.347131,6.5233588,20.694078,120,1,1,0,4.022037,5.8187776,39.68,29.19,44.92,21.04,6.666666666666667,1,1,0,0,1,10,2,0,264,384383.47,189543.44,237799.44,0,0,0,2121.865 +4424,5402,9600,9599,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,5.9704695,6.1652646,10,10,-91.319374,0,3,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,12.817199,34.970509,115.59605,0,1,1,0,0,6.0715885,44.92,21.04,39.68,29.19,3.333333333333333,1,1,0,0,0,10,2,0,264,384383.47,189543.44,237799.44,0,0,0,2121.865 +4425,5403,9601,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.549644,5.5491748,0,0,-917.49701,0,3,3,2021,6,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5072002,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,4,2,1,252,486214.16,177185.45,271647.56,0,0,610.5957,662.24353 +4426,5404,9602,9604,-9,-9,1,1,46,2,2,0,2,2,-9,0,3,8.7037048,9.0673389,0,14,12,-23.685425,0,2,2,2021,8,0,45,44,1,0,0,15.517026,15.517026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,54.79,55.86,6.666666666666667,1,1,0,0,14,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4426,5404,9603,-9,9604,9602,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.443,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4426,5404,9604,9602,-9,-9,1,0,34,2,2,0,1,1,-9,0,4,8.1958675,8.320426,0,14,-12,89.358208,0,3,2,2021,8,0,15,10,1,0,0,35.59211,35.59211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,58.32,50.22,8.333333333333334,1,1,0,0,13,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4426,5404,9605,-9,9604,9602,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.3817,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,5,1,598.5,-11272.074,-6535.7217,168778.72,113646.22,21526.926,0,4180.7378 +4427,5405,9606,9607,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,6.2896385,6.3977194,50,-1,-20.934484,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,12.377774,0,0,1,1,0,0,5.9592681,37.79,27.51,51.58,27.88,5,1,1,0,0,0,4,2,1,1011.5,691691.56,264412.09,188652.25,0,0,0,1785.1387 +4427,5405,9607,9606,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,50,1,-23.296907,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,4.4724994,0,0,1,1,0,3.4416738,0,51.58,27.88,37.79,27.51,10,1,1,0,0,6,4,2,1,1011.5,691691.56,264412.09,188652.25,0,0,0,1785.1387 +4428,5406,9608,-9,9611,9609,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.1952,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4428,5406,9609,9611,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.8559279,7.8937364,0,7,5,-.54108655,0,2,2,2021,8,0,42,39,1,0,0,6.3965368,6.3965368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4428,5406,9610,-9,9611,9609,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.2585,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4428,5406,9611,9609,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.050333,7.9660168,0,7,-5,-77.745621,0,-9,-9,2021,5,0,30,21,1,0,0,14.748672,14.748672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,6.666666666666667,1,1,0,0,8,7,4,1,653.75,88778.633,48211.793,0,0,0,0,2285.5474 +4429,5407,9612,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.9114714,5.2139115,0,0,-938.14893,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4588923,42.25,48.11,-9,-9,6.666666666666667,3,4,0,0,0,8,2,1,327,-28224.668,26662.115,95154.602,0,0,0,588.96863 +4430,5408,9613,9614,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-5,-76.475502,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7804852,0,58.15,52.91,51.05,41.44,10,1,1,0,0,0,13,4,1,786,1118599.3,572246,181382.38,0,1013.274,0,5314.9219 +4430,5408,9614,9613,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3067942,8.3661423,47,5,72.864151,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.7107153,8.522912,51.05,41.44,58.15,52.91,8.333333333333334,1,1,0,0,0,13,4,1,786,1118599.3,572246,181382.38,0,1013.274,0,5314.9219 +4431,5409,9615,-9,9618,9619,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.0576,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9616,-9,9618,9619,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1101.9246,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9617,-9,9618,9619,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.2189,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9618,9619,-9,-9,1,0,36,0,3,0,1,1,-9,0,5,8.4618959,8.5982723,0,16,-1,-3.3662734,0,2,2,2021,9,1,38,22,1,1,0,15.367666,15.367666,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,53.61,51.1,10,1,1,0,0,8,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4431,5409,9619,9618,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,8.9266233,9.0356741,0,15,1,79.967369,0,2,3,2021,10,0,35,42,1,0,0,30.434242,30.434242,.05,.05,0,0,0,0,0,0,0,0,0,3.7695074,0,53.61,51.1,60.02,56.42,8.333333333333334,1,1,0,0,8,12,5,1,514.20001,208957.92,159009.34,208451.23,170011.55,6513.0508,0,4479.6133 +4432,5410,9620,9621,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,0,0,0,14,2,-33.239929,0,-9,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9006181,0,58.71,40.92,53.07,52.7,8.333333333333334,1,1,0,0,6,9,4,1,1497,-28263.113,-2924.6074,0,0,0,0,3027.7676 +4432,5410,9621,9620,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.9528284,8.5601559,0,14,-2,28.550051,0,2,1,2021,6,0,45,45,1,0,0,17.420765,17.420765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.07,52.7,58.71,40.92,8.333333333333334,1,1,0,0,11,9,4,1,1497,-28263.113,-2924.6074,0,0,0,0,3027.7676 +4433,5411,9622,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,2,0,0,0,0,0,-901.66931,0,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,62.02,34.01,-9,-9,5,1,1,0,0,12,5,1,1,452,-61503.828,0,0,0,988.61273,1114.9557,1420.9038 +4433,5412,9623,-9,-9,9622,1,0,19,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1087.307,0,-9,3,2021,18,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,30.7,56.79,-9,-9,6.666666666666667,1,1,0,0,0,5,1,1,256,51008.605,0,0,0,0,0,705.86041 +4434,5413,9624,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,7.0139766,6.9284444,0,0,0,-1163.4458,0,-9,-9,2021,6,0,33,0,1,0,0,3.6870468,3.6870468,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,4,13,2,0,1243,-126552.14,0,0,0,0,0,688.03479 +4435,5414,9625,9626,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.5828657,8.4150133,6.3058348,7,10,54.642136,0,3,3,2021,12,0,40,40,1,0,0,10.177278,10.177278,0,0,0,1,0,0,0,0,1,1,0,6.3315935,6.7715931,47.55,47.03,62.39,56.71,6.666666666666667,1,1,0,0,7,13,5,1,1135,499030.97,388259.88,94302.289,0,0,0,4332.1821 +4435,5414,9626,9625,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.2756948,8.282238,0,7,-10,76.571922,0,3,3,2021,8,0,37,38,1,0,0,12.730417,12.730417,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,47.55,47.03,6.666666666666667,1,1,0,1,7,13,5,1,1135,499030.97,388259.88,94302.289,0,0,0,4332.1821 +4435,5415,9627,-9,9626,9625,1,1,23,0,0,0,2,2,-9,0,5,7.544035,7.4208999,0,0,0,-1057.4165,0,2,3,2021,6,0,40,8,1,0,1,5.2531037,5.2531037,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,0,6,13,3,1,1022,115791,0,0,0,0,0,1882.2692 +4436,5416,9628,9629,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.0293655,9.1194506,0,7,2,16.140972,0,2,2,2021,15,4,47,40,1,4,0,23.39712,23.39712,.05,.05,0,0,0,0,0,0,0,0,0,4.9226193,0,33.74,63,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1232,2397067.8,1913323.3,315042.75,45753.852,11126.398,0,5435.2412 +4436,5416,9629,9628,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.7929945,8.882103,0,7,-2,-37.965778,0,3,2,2021,7,0,37,31,1,0,0,29.28146,29.28146,.05,.05,0,0,0,0,0,7,0,0,0,5.7627506,0,57.16,56.15,33.74,63,6.666666666666667,1,1,0,0,8,12,5,1,1232,2397067.8,1913323.3,315042.75,45753.852,11126.398,0,5435.2412 +4437,5417,9630,9631,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,9.0345631,9.3353672,0,17,-1,71.614639,0,2,1,2021,8,2,34,33,1,2,0,38.324223,38.324223,.05,.05,0,0,0,0,0,0,1,1,0,3.6819575,0,48.96,60.26,59.29,49.68,8.333333333333334,1,1,0,0,9,1,5,1,630.33331,276442.09,10064.218,229131.75,53421.031,13566.571,-726.24872,3879.0349 +4437,5417,9631,9630,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,0,0,0,17,1,5.3271809,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,48.96,60.26,8.333333333333334,1,1,0,0,0,1,5,1,630.33331,276442.09,10064.218,229131.75,53421.031,13566.571,-726.24872,3879.0349 +4437,5417,9632,-9,9631,9630,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.3245,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,630.33331,276442.09,10064.218,229131.75,53421.031,13566.571,-726.24872,3879.0349 +4438,5418,9633,-9,-9,-9,1,0,46,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1068.2878,0,-9,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.95,49.98,-9,-9,1.666666666666667,1,1,0,0,3,4,2,0,1553.6666,-30164.307,0,0,0,1898.3358,138.50972,895.87097 +4438,5418,9634,-9,9633,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.62335,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,1553.6666,-30164.307,0,0,0,1898.3358,138.50972,895.87097 +4438,5418,9635,-9,9633,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.04681,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,2,0,1553.6666,-30164.307,0,0,0,1898.3358,138.50972,895.87097 +4438,5419,9636,-9,9633,-9,1,1,21,0,2,0,2,2,-9,0,1,6.8850436,6.8093505,0,0,0,-966.83429,0,3,-9,2021,16,5,24,24,1,5,1,4.5938315,4.5938315,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,40.91,-9,-9,5,4,2,0,0,4,4,2,0,534,39781.254,0,0,0,0,0,961.23779 +4439,5420,9637,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,8.2939062,8.4174957,0,0,-1019.158,0,3,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0149999,8.2745256,62.39,56.71,-9,-9,10,1,1,0,0,5,9,4,1,658,1123080.6,766518.94,444685.81,0,0,0,1878.4312 +4440,5421,9638,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6343679,8.9603815,0,0,0,-1140.4818,0,2,2,2021,21,9,47,81,1,9,0,9.998558,9.998558,.05,.05,0,0,0,0,0,2,0,0,0,0,0,26.78,53.92,-9,-9,3.333333333333333,1,1,0,0,13,12,5,1,2839,1333306.1,984031.63,138691.11,0,0,0,2618.853 +4441,5422,9639,9640,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.0969467,7.9841094,0,11,-13,-67.834335,0,2,1,2021,11,0,37,37,1,0,0,8.9450207,8.9450207,0,0,0,0,0,0,0,2,1,1,0,0,0,59.96,39.82,45.74,50.45,6.666666666666667,1,1,0,0,14,10,4,0,1125,953309.63,756645.31,207256.83,0,0,0,2665.1958 +4441,5422,9640,9639,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.0985107,7.0590849,11,13,.6235497,0,2,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.97928238,7.3278704,45.74,50.45,59.96,39.82,8.333333333333334,1,1,0,0,7,10,4,0,1125,953309.63,756645.31,207256.83,0,0,0,2665.1958 +4442,5423,9641,9642,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2914209,8.2144699,0,34,-1,98.971519,0,2,2,2021,16,5,39,40,1,5,0,12.115916,12.115916,0,0,0,0,0,0,0,0,0,0,0,0,0,52.93,52.64,36.02,48.16,3.333333333333333,1,1,0,0,13,2,4,1,241.5,649671.63,290477,93863.906,0,0,0,1547.679 +4442,5423,9642,9641,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.036952,7.15415,0,34,1,-9.173069,0,2,2,2021,22,10,15,20,1,10,0,9.2524271,9.2524271,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.02,48.16,52.93,52.64,6.666666666666667,1,1,0,0,13,2,4,1,241.5,649671.63,290477,93863.906,0,0,0,1547.679 +4443,5424,9643,9644,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.9447751,7.8751211,41,2,63.312031,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.8434741,7.877327,47.01,36.9,36.94,22.04,6.666666666666667,1,1,0,0,8,9,3,1,2699,873054.44,434321.5,288583.44,0,0,0,2461.532 +4443,5424,9644,9643,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,4.083662,3.6467819,41,-2,-17.571642,0,3,3,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8948138,3.8072836,36.94,22.04,47.01,36.9,1.666666666666667,4,2,0,1,7,9,3,1,2699,873054.44,434321.5,288583.44,0,0,0,2461.532 +4444,5425,9645,-9,9646,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.6154,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,952.66669,170608.78,208020.83,230191.3,192208.31,2432.4363,0,2433.9744 +4444,5425,9646,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,8.4128685,8.3642998,6.6208262,0,0,-1074.1526,0,2,2,2021,10,0,33,30,1,0,0,17.068493,17.068493,.05,.05,0,0,0,0,0,0,1,0,1,6.5913525,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,10,6,4,0,952.66669,170608.78,208020.83,230191.3,192208.31,2432.4363,0,2433.9744 +4444,5425,9647,-9,9646,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.3303,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,0,952.66669,170608.78,208020.83,230191.3,192208.31,2432.4363,0,2433.9744 +4445,5426,9648,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.6038265,8.2996397,0,0,0,-997.42657,0,3,3,2021,8,0,51,52,1,0,0,9.818203,9.818203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,13,4,5,0,5738,140673.31,298258.34,0,0,2272.1255,6250.2964,1698.8501 +4446,5427,9649,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,1,8.155426,8.0863008,0,0,0,-1044.9534,0,2,2,2021,27,10,35,38,1,10,0,13.014953,13.014953,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,-9,-9,0,1,1,0,0,9,12,4,1,269,213128.59,-25142.031,0,0,14041.353,0,1304.0155 +4447,5428,9650,-9,9652,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.61,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,555,-58489.473,0,0,0,0,0,1565.4147 +4447,5428,9651,-9,9652,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.5836,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,555,-58489.473,0,0,0,0,0,1565.4147 +4447,5428,9652,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,7.0968876,7.4810791,5.8073521,0,0,-1008.6845,0,2,3,2021,4,0,8,0,1,0,0,14.723878,14.723878,0,0,0,0,0,0,0,0,1,1,0,6.520803,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,10,2,0,555,-58489.473,0,0,0,0,0,1565.4147 +4448,5429,9653,9654,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9111257,7.4808316,0,32,2,19.499434,0,3,3,2021,14,2,38,38,1,2,0,6.2634678,6.2634678,0,0,0,0,0,0,0,0,0,0,0,1.5696763,0,35.16,48.81,64.88,42.16,5,1,1,0,0,8,11,3,1,2266,125729.95,-89118.453,65342.234,8627.2754,0,0,1645.6353 +4448,5429,9654,9653,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.8935747,6.70819,0,32,-2,216.75557,0,3,3,2021,12,1,3,20,1,1,0,35.174927,35.174927,0,0,0,0,0,0,0,0,0,0,0,0,0,64.88,42.16,35.16,48.81,10,1,1,0,0,8,11,3,1,2266,125729.95,-89118.453,65342.234,8627.2754,0,0,1645.6353 +4449,5430,9655,9656,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6481276,8.2309446,0,12,-8,-18.606192,0,-9,-9,2021,6,0,50,45,1,0,0,12.216405,12.216405,.05,.05,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,40.38,31.72,6.666666666666667,1,1,0,0,13,12,4,0,142,835326.44,624413.94,244907.34,21733.678,0,0,2928.9492 +4449,5430,9656,9655,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,12,8,181.73242,0,2,2,2021,28,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.38,31.72,62.49,55.09,3.333333333333333,1,1,0,0,9,12,4,0,142,835326.44,624413.94,244907.34,21733.678,0,0,2928.9492 +4450,5431,9657,-9,9659,9660,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.4261,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4450,5431,9658,-9,9659,9660,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.0322,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4450,5431,9659,9660,-9,-9,1,0,49,0,2,0,1,1,-9,1,3,6.2861075,6.3623185,0,16,-3,72.284782,0,3,2,2021,18,6,13,0,1,6,0,5.3351288,5.3351288,0,0,0,0,0,0,0,42,1,1,0,0,0,39.69,50.43,47.62,56.48,3.333333333333333,2,3,0,0,2,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4450,5431,9660,9659,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,8.0559807,7.8848362,0,7,3,7.8128052,-9,-9,-9,2021,12,1,44,0,1,1,0,7.1104174,7.1104174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.62,56.48,39.69,50.43,3.333333333333333,2,3,0,0,6,10,3,1,304.75,466649.44,461859.5,-16807.141,24443.391,3340.8022,5715.0972,2842.2815 +4451,5432,9661,9662,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.3816657,5.5226502,14,20,66.572769,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.4242718,2.1352956,25.053514,14.5,1,1,0,5.0420942,5.2083397,61.83,49.95,44.21,23.45,8.333333333333334,1,1,0,0,0,7,2,0,272.5,282044.38,24207.832,264655.44,0,0,0,1833.4131 +4451,5432,9662,9661,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,12,-20,-8.7514896,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.21,23.45,61.83,49.95,8.333333333333334,1,1,0,0,0,7,2,0,272.5,282044.38,24207.832,264655.44,0,0,0,1833.4131 +4451,5433,9663,-9,9662,9661,1,1,39,0,0,0,2,2,-9,0,4,8.3169136,8.4577942,0,0,0,-902.3595,0,3,3,2021,11,0,60,60,1,0,0,7.6193523,7.6193523,0,0,0,0,0,0,0,0,1,1,0,0,0,59.15,49.67,-9,-9,6.666666666666667,1,1,0,0,9,7,5,0,536,125410.72,0,0,0,0,4578.4663,2768.6646 +4452,5434,9664,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.2108393,6.9163041,0,0,-920.78693,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,14.906708,0,0,1,1,0,.0018916876,7.3744369,59.87,26.62,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,181,343778.84,131604.13,220983.45,0,0,0,1508.3662 +4453,5435,9665,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.2182493,6.6840534,0,0,-940.89758,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1559958,6.3666005,47.98,45.32,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,112,449689.75,332259.25,263471.59,0,0,0,1106.0841 +4454,5436,9666,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-912.15491,0,3,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.01,25.88,-9,-9,5,1,1,0,0,0,9,1,0,472,280607.66,99505.578,0,0,8412.3379,0,814.81714 +4455,5437,9667,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.0863147,4.7707133,0,0,-935.52765,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4273648,5.1513066,51.25,46.55,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,327,464339.66,0,278295.72,0,0,0,623.43567 +4456,5438,9668,-9,9670,9669,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.22266,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9669,9670,-9,-9,1,1,51,0,3,0,1,1,-9,0,4,9.7830105,9.8455677,0,10,-1,28.997047,0,-9,-9,2021,19,8,52,53,1,8,0,34.95787,34.95787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,46.29,48.81,3.333333333333333,1,1,0,1,12,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9670,9669,-9,-9,1,0,52,0,3,0,1,1,-9,0,3,9.6617203,9.5891485,0,29,1,-30.536259,0,-9,-9,2021,10,0,45,60,1,0,0,41.143631,41.143631,0,0,0,0,0,0,0,0,0,0,0,0,0,46.29,48.81,42.95,61.24,5,3,4,0,1,12,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9671,-9,9670,9669,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.06366,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4456,5438,9672,-9,9670,9669,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-718.88031,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,5,1,909.59998,1738997.9,93220.648,1585918,154058.8,0,0,9388.126 +4457,5439,9673,9674,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.4544802,8.4905167,0,8,0,171.41736,0,-9,-9,2021,9,0,40,37,1,0,0,12.074091,12.074091,.05,.05,0,0,0,0,0,0,0,0,0,7.3884306,0,50.8,45.44,38.12,49.17,6.666666666666667,1,1,0,0,11,4,4,1,604.5,262208.81,9263.3691,197839.23,77447.813,0,0,2848.7002 +4457,5439,9674,9673,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.5598063,7.5212502,0,8,0,-67.963348,0,-9,-9,2021,19,7,18,0,1,7,0,13.603336,13.603336,.05,.05,0,0,0,0,0,0,0,0,0,4.6069016,0,38.12,49.17,50.8,45.44,3.333333333333333,1,1,0,0,9,4,4,1,604.5,262208.81,9263.3691,197839.23,77447.813,0,0,2848.7002 +4458,5440,9675,9676,-9,-9,1,0,46,0,1,0,1,1,-9,1,1,8.5624657,8.7628956,0,17,-7,26.983736,0,2,2,2021,23,10,24,19,1,10,0,36.562073,36.562073,.05,.05,0,0,0,0,0,102,1,1,0,0,0,31.07,28,54.74,57.22,6.666666666666667,1,1,0,0,2,10,5,0,540.33331,919333.63,745849.94,265043.66,78094.563,4601.0117,1924.4653,5366.2095 +4458,5440,9676,9675,-9,-9,1,1,53,0,1,0,1,1,1,0,4,8.3036861,8.1048908,5.900785,17,7,-3.2019238,-9,2,2,2021,3,0,40,0,1,0,0,9.331213,9.331213,.05,.05,0,0,0,0,0,2,1,1,0,5.9074068,0,54.74,57.22,31.07,28,6.666666666666667,1,1,0,0,1,10,5,0,540.33331,919333.63,745849.94,265043.66,78094.563,4601.0117,1924.4653,5366.2095 +4458,5440,9677,-9,9675,9676,1,1,17,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1099.2681,0,1,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,0,10,5,0,540.33331,919333.63,745849.94,265043.66,78094.563,4601.0117,1924.4653,5366.2095 +4459,5441,9678,9679,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.0520763,8.337883,7.69946,8,2,80.215309,0,2,2,2021,18,6,20,18,1,6,0,14.012055,14.012055,.05,.05,0,0,0,0,0,0,0,0,0,7.3397532,7.6981072,47.72,40.04,51.25,46.55,3.333333333333333,1,1,0,0,9,10,5,1,112,632047,457555.88,218020.75,46158.59,0,0,2680.3203 +4459,5441,9679,9678,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.6195793,7.6427393,7.3526697,8,-2,143.69676,0,2,2,2021,10,0,30,30,1,0,0,2.5720129,2.5720129,.05,.05,0,0,0,0,0,0,0,0,0,1.962514,6.97685,51.25,46.55,47.72,40.04,8.333333333333334,1,1,0,0,9,10,5,1,112,632047,457555.88,218020.75,46158.59,0,0,2680.3203 +4459,5442,9680,-9,9679,9678,1,1,32,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1027.4846,1,2,2,2021,16,4,0,32,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.24,64.61,-9,-9,6.666666666666667,1,1,0,0,9,10,1,1,497,45258.129,0,0,0,0,0,0 +4460,5443,9681,-9,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,7.4967837,7.4166293,0,0,0,-963.49719,0,2,1,2021,6,0,20,0,1,0,0,10.1985,10.1985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.61,50.58,-9,-9,10,1,1,0,0,1,8,2,0,1686,-44590.758,6491.3462,0,0,0,0,2199.7266 +4460,5443,9682,-9,9681,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.9037,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,2,0,1686,-44590.758,6491.3462,0,0,0,0,2199.7266 +4460,5443,9683,-9,9681,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.54651,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,2,0,1686,-44590.758,6491.3462,0,0,0,0,2199.7266 +4461,5444,9684,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.4761877,8.4321184,0,0,0,-867.77527,0,2,1,2021,6,0,35,35,1,0,0,20.055868,20.055868,.05,.05,0,0,0,0,0,0,0,0,0,4.5203257,0,59.19,51.29,-9,-9,8.333333333333334,1,1,0,0,9,12,5,1,685,207631.28,121872.4,0,0,0,0,2866.9487 +4462,5445,9685,9686,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.6625004,8.8674583,0,12,-2,117.42351,0,2,2,2021,17,5,48,48,1,5,0,19.183167,19.183167,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,44.72,33.97,53.41,6.666666666666667,1,1,0,0,8,5,4,1,1985,166068.58,142077.69,110228.93,90168.016,2225.0557,0,3269.3303 +4462,5445,9686,9685,-9,-9,1,1,34,0,1,0,2,2,-9,0,3,6.5732007,6.3019476,0,11,2,19.767929,0,2,2,2021,21,8,16,16,1,8,0,3.3332961,3.3332961,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.97,53.41,46.54,44.72,5,1,1,0,1,8,5,4,1,1985,166068.58,142077.69,110228.93,90168.016,2225.0557,0,3269.3303 +4462,5445,9687,-9,9685,9686,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.9683,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1985,166068.58,142077.69,110228.93,90168.016,2225.0557,0,3269.3303 +4463,5446,9688,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1003.9885,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.45,60.79,-9,-9,5,3,4,1,1,3,8,1,0,176,-36046.625,0,0,0,0,0,295.14691 +4463,5447,9689,-9,9688,-9,1,0,26,0,0,0,2,2,-9,0,5,7.9256873,7.804193,0,0,0,-1055.5266,0,2,2,2021,9,0,35,16,1,0,1,7.9667897,7.9667897,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,-9,-9,8.333333333333334,3,4,0,0,5,8,3,0,175,44239.523,85570.352,0,0,0,0,778.89764 +4464,5448,9690,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,2,7.7580442,7.9281487,0,0,0,-994.63763,0,2,2,2021,16,4,25,30,1,4,0,9.3102951,9.3102951,.05,.05,0,0,0,0,0,7,1,1,0,0,0,36.03,55.74,-9,-9,5,1,1,0,0,9,13,3,0,809,2096.9597,-12507.828,0,0,0,0,1642.1985 +4464,5448,9691,-9,9690,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.0594,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,809,2096.9597,-12507.828,0,0,0,0,1642.1985 +4464,5448,9692,-9,9690,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.6109,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,809,2096.9597,-12507.828,0,0,0,0,1642.1985 +4465,5449,9693,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,6.1389642,5.8966374,0,0,-940.68658,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0436711,55,43,-9,-9,8,1,1,0,0,0,11,2,1,920,165066.67,-22479.391,228354.73,0,0,0,2169.9561 +4466,5450,9694,9695,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.7129006,8.0326157,44,6,49.080833,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3974276,7.4006786,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,0,8,3,1,1188,681829.5,192414.7,370806.75,0,0,0,2585.7844 +4466,5450,9695,9694,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.2795682,6.8923998,6.5320306,45,-6,37.240982,0,2,2,2021,9,1,10,8,1,1,0,6.5016418,6.5016418,0,0,0,0,0,0,0,0,1,1,0,4.3040276,6.5737557,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,13,8,3,1,1188,681829.5,192414.7,370806.75,0,0,0,2585.7844 +4467,5451,9696,9697,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.7836847,7.8681722,6.3990259,36,-21,-13.363105,0,-9,-9,2021,25,12,20,20,1,12,0,8.9710493,8.9710493,0,0,0,0,0,0,0,2,1,1,0,2.7571421,6.9359918,27.12,30.96,40.58,43.59,3.333333333333333,1,1,0,0,10,9,3,1,423.5,817474.88,27445.938,603480.5,0,0,0,2387.9922 +4467,5451,9697,9696,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.5984526,7.0033073,36,21,-8.5302277,0,-9,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.4393921,7.2655854,40.58,43.59,27.12,30.96,5,1,1,0,0,0,9,3,1,423.5,817474.88,27445.938,603480.5,0,0,0,2387.9922 +4468,5452,9698,9699,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,9.2911949,9.7098751,7.0223961,27,17,-5.0996761,0,2,3,2021,10,0,50,68,1,1,0,25.464094,25.464094,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.3331199,51,48,53.33,53.71,7,1,1,0,0,1,8,5,1,729.5,2536143,1282385.1,93139.969,0,0,0,7065.6494 +4468,5452,9699,9698,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6105413,8.7968454,0,27,-17,7.8195701,0,2,2,2021,8,0,18,20,1,0,0,39.928379,39.928379,0,0,0,0,0,0,0,2,0,0,0,0,0,53.33,53.71,51,48,8.333333333333334,1,1,0,0,13,8,5,1,729.5,2536143,1282385.1,93139.969,0,0,0,7065.6494 +4468,5453,9700,-9,9699,9698,1,0,24,0,0,0,1,1,-9,0,5,0,0,0,0,0,-939.84021,1,1,1,2021,13,2,0,40,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,7,1,1,0,0,8,8,1,1,570,-199577.72,0,0,0,0,0,679.80743 +4468,5454,9701,-9,9699,9698,1,1,22,0,0,0,1,1,-9,0,4,8.2402391,8.7036209,0,0,0,-1003.82,0,1,1,2021,5,0,60,0,1,0,1,8.6198387,8.6198387,.05,.05,0,0,0,0,0,0,0,0,0,4.2490978,0,48.85,58.56,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,514,257864.11,-42003.801,0,0,0,0,1239.943 +4468,5455,9702,-9,9699,9698,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-977.59674,-9,1,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1162479,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,223,125011.9,0,0,0,0,1445.0845,-479.85477 +4469,5456,9703,9704,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,43,-5,111.13393,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0315793,0,58.47,44.69,52.6,52.88,8.333333333333334,1,1,0,0,4,12,2,1,808.5,165876.06,50156.273,98389.211,0,0,0,2059.5842 +4469,5456,9704,9703,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.0988793,7.5156369,43,5,73.810921,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2562323,7.2369061,52.6,52.88,58.47,44.69,8.333333333333334,1,1,0,0,0,12,2,1,808.5,165876.06,50156.273,98389.211,0,0,0,2059.5842 +4470,5457,9705,9706,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2576246,8.0575151,0,6,-1,-.38836512,0,-9,-9,2021,6,0,38,38,1,0,0,11.945798,11.945798,.05,.05,0,0,0,0,0,0,0,0,0,2.7046194,0,51.73,58.82,49.84,48.57,8.333333333333334,1,1,0,0,7,5,4,0,388,3047.5454,74300.195,0,0,29035.195,3331.5381,1673.7166 +4470,5457,9706,9705,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.3132701,7.2578163,0,6,1,18.819239,0,-9,-9,2021,10,0,25,25,1,0,0,5.6594067,5.6594067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,48.57,51.73,58.82,8.333333333333334,1,1,0,0,3,5,4,0,388,3047.5454,74300.195,0,0,29035.195,3331.5381,1673.7166 +4471,5458,9707,-9,9711,9709,1,1,16,0,3,0,2,2,-9,0,2,0,0,0,0,0,-946.24414,-9,1,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,-9,-9,5,1,1,1,0,0,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9708,-9,9711,9709,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.1182,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9709,9711,-9,-9,1,1,51,0,3,0,2,2,-9,0,3,8.7105427,8.6994762,0,21,11,-52.585793,0,2,2,2021,8,0,35,35,1,0,0,23.223085,23.223085,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,43.2,59.97,8.333333333333334,1,1,0,0,8,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9710,-9,9711,9709,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.2737,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5458,9711,9709,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.2929745,8.0332556,0,21,-11,54.819191,0,2,2,2021,12,0,24,24,1,0,0,18.348806,18.348806,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,49.04,55.86,5,1,1,0,1,8,9,4,1,746.40002,1891448.9,1093660.9,708538.94,0,0,0,4471.3301 +4471,5459,9712,-9,9711,9709,1,1,18,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1123.9095,0,1,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,59.1,-9,-9,10,1,1,1,0,0,9,1,1,156,-109814,0,0,0,0,0,0 +4472,5460,9713,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,6.1908512,5.7911582,0,0,-946.76849,0,3,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9607916,6.1398201,48.96,25.27,-9,-9,0,1,1,0,0,7,5,2,1,92,71734.211,207449.05,0,0,0,0,1406.6464 +4473,5461,9714,9715,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.7944736,8.0353165,12,0,-31.722427,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.342658,53.37,45.61,57.33,53.46,8.333333333333334,1,1,0,0,13,9,3,1,388,172643.03,-50580.063,271630.69,0,2955.636,0,1525.4648 +4473,5461,9715,9714,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,12,0,-72.395599,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,53.37,45.61,10,1,1,0,0,7,9,3,1,388,172643.03,-50580.063,271630.69,0,2955.636,0,1525.4648 +4474,5462,9716,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.4013638,7.4121356,0,0,0,-984.69171,0,2,1,2021,7,0,33,30,1,0,0,7.4176488,7.4176488,0,0,0,0,0,0,0,0,0,0,0,1.0543336,0,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,15,9,3,1,780,0,0,0,0,0,0,713.04541 +4475,5463,9717,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,7.3880167,7.8359318,0,0,0,-988.3974,0,2,2,2021,6,0,20,20,1,0,0,11.900746,11.900746,0,0,0,0,0,0,0,0,1,1,0,6.388124,0,61.68,49.95,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,272,-12854.927,-32608.182,82727.953,0,0,0,260.79837 +4476,5464,9718,9719,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,59,-4,-60.171688,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,2.7519863,33.28038,22.255709,0,1,1,0,0,0,29.66,49.31,55.83,54.24,1.666666666666667,1,1,0,0,0,12,3,1,296.5,1538288,390701.31,258629.94,0,3561.1929,0,3326.7144 +4476,5464,9719,9718,-9,-9,1,1,83,0,0,0,1,1,-9,0,5,0,7.9620028,8.2793999,59,4,-39.820198,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.2768872,8.2658405,55.83,54.24,29.66,49.31,6.666666666666667,1,1,0,0,0,12,3,1,296.5,1538288,390701.31,258629.94,0,3561.1929,0,3326.7144 +4477,5465,9720,-9,9721,9722,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.98492,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4477,5465,9721,9722,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.3468046,6.9125805,0,6,0,26.288153,0,2,1,2021,11,0,15,15,1,0,0,9.6346025,9.6346025,.05,.05,0,0,0,0,0,0,1,1,0,2.0355744,0,50.6,53.68,46.44,59.62,8.333333333333334,1,1,0,0,7,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4477,5465,9722,9721,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.9850321,9.2712412,0,6,0,86.590843,0,1,1,2021,10,1,50,55,1,1,0,20.12907,20.12907,.05,.05,0,0,0,0,0,0,1,1,0,3.0778825,0,46.44,59.62,50.6,53.68,8.333333333333334,1,1,0,0,7,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4477,5465,9723,-9,9721,9722,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.33655,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,832.5,420089.44,259965.95,58050.063,20655.559,543.79236,0,4131.0332 +4478,5466,9724,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.7711415,7.7116323,0,0,-950.81348,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2701907,7.7615895,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,1065,494275.19,303875.22,146495.75,0,0,7898.9995,1183.4099 +4479,5467,9725,-9,-9,-9,1,1,77,0,1,0,2,2,-9,0,2,0,7.7217913,7.2502112,0,0,-902.46509,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,28.902239,0,0,1,1,0,.74881464,7.4413919,43.34,45.18,-9,-9,5,1,1,0,0,0,9,3,1,779,1336542.4,422503.13,182872.19,0,0,0,1701.239 +4479,5468,9726,9727,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,7.1775951,6.9506412,0,1,0,3.3301969,-9,-9,-9,2021,10,0,25,0,1,1,0,6.4915829,6.4915829,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,8,4,6,0,0,1,9,4,1,352,64215.609,54857.488,209360.38,114180.99,7544.9229,1010.3117,3612.6296 +4479,5468,9727,9726,-9,9725,1,1,39,0,1,0,2,2,-9,0,4,8.4435549,8.6029968,0,1,0,-125.43533,-9,-9,2,2021,9,0,35,0,1,1,0,26.122746,26.122746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,6,0,0,1,9,4,1,352,64215.609,54857.488,209360.38,114180.99,7544.9229,1010.3117,3612.6296 +4480,5469,9728,9729,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,5.4317613,5.3139005,49,-1,6.0950742,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7611918,45.52,55.96,43.37,57.28,6.666666666666667,1,1,0,0,6,9,3,0,373,687250.5,523467.19,364365.53,0,0,0,2840.8315 +4480,5469,9729,9728,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.7319527,7.9127378,5.944037,49,1,-62.355278,0,3,3,2021,12,0,40,51,1,0,0,6.7129183,6.7129183,.05,.05,0,0,0,0,0,2,1,1,0,6.3248606,6.3691897,43.37,57.28,45.52,55.96,3.333333333333333,1,1,0,0,6,9,3,0,373,687250.5,523467.19,364365.53,0,0,0,2840.8315 +4481,5470,9730,9731,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.1597385,7.0132108,8,5,-22.653833,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,39.008125,0,0,1,1,0,6.8954773,6.9550428,48.15,33.2,58.3,52.91,6.666666666666667,1,1,0,0,0,5,2,1,792,431755.88,197330.31,123626.52,0,0,0,1589.7646 +4481,5470,9731,9730,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,8,-5,-8.2830524,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9156301,0,58.3,52.91,48.15,33.2,10,1,1,0,0,0,5,2,1,792,431755.88,197330.31,123626.52,0,0,0,1589.7646 +4482,5471,9732,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,8.4752359,8.5971317,6.722878,0,0,-1068.5413,0,3,3,2021,9,0,37,37,1,0,0,18.949503,18.949503,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0138106,51.94,40.74,-9,-9,6.666666666666667,1,1,0,0,12,1,5,1,2713,-101281.54,91200.117,0,0,5648.9868,237.13644,2487.3428 +4483,5472,9733,9734,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,9.1234665,8.8547993,0,13,5,45.144547,0,2,2,2021,10,0,37,37,1,1,0,23.573217,23.573217,.05,.05,0,0,0,0,0,0,1,1,0,2.669239,0,51,56,48.77,60.16,7,1,1,0,0,1,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4483,5472,9734,9733,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,0,0,0,12,-5,8.6799479,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,51,56,8.333333333333334,1,1,0,0,3,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4483,5472,9735,-9,9734,9733,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.14264,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4483,5472,9736,-9,9734,9733,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-846.06207,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,1,1,-9,0,0,8,4,1,539.75,58360.324,24733.857,0,0,9227.3525,0,3177.0815 +4484,5473,9737,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.9024639,5.6667676,0,0,-896.54834,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7365403,57.33,53.46,-9,-9,5,1,1,0,0,0,12,2,1,1057,136179.36,184287.48,109873.79,35959.59,0,0,976.99237 +4485,5474,9738,-9,9740,9741,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-900.03619,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50.54,55.04,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4485,5474,9739,-9,9740,9741,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.6485,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4485,5474,9740,9741,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.6464615,8.8256454,0,21,-7,50.669792,0,3,2,2021,7,0,24,24,1,0,0,21.957315,21.957315,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.94,23.15,54.77,39.97,8.333333333333334,1,1,0,0,9,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4485,5474,9741,9740,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.8508711,8.4459019,0,21,7,79.391174,0,2,2,2021,11,2,42,43,1,2,0,18.340382,18.340382,.05,.05,0,0,0,0,0,0,1,1,0,2.5213175,0,54.77,39.97,55.94,23.15,5,1,1,0,0,9,2,5,1,1328,343859.91,193698.75,172516.03,102007.32,0,21068.613,3509.6885 +4486,5475,9742,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.2401323,7.8717775,0,0,0,-1035.1221,0,-9,-9,2021,7,0,38,40,1,0,0,7.9773593,7.9773593,0,0,0,0,0,0,0,2,0,0,0,1.6760645,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,604,204514.95,0,0,0,0,0,2007.5977 +4487,5476,9743,-9,9745,9744,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.55133,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,0,641,157559.06,-85449.359,99018.836,89446.688,0,1668.087,2086.5376 +4487,5476,9744,9745,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.5102921,8.4415665,0,6,0,-4.1182055,0,3,3,2021,7,0,48,42,1,0,0,13.354904,13.354904,.05,.05,0,0,0,0,0,0,1,1,0,3.2378519,0,48.48,49.45,42.24,52.48,8.333333333333334,1,1,0,0,10,2,4,0,641,157559.06,-85449.359,99018.836,89446.688,0,1668.087,2086.5376 +4487,5476,9745,9744,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.6970925,7.4783254,0,6,0,-60.122402,0,-9,-9,2021,6,0,22,24,1,0,0,11.2134,11.2134,.05,.05,0,0,0,0,0,0,1,1,0,4.4774704,0,42.24,52.48,48.48,49.45,5,1,1,0,0,4,2,4,0,641,157559.06,-85449.359,99018.836,89446.688,0,1668.087,2086.5376 +4488,5477,9746,-9,9748,-9,1,1,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1021.7953,1,2,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.22,48.82,-9,-9,8.333333333333334,4,2,0,0,0,8,1,1,169,0,0,0,0,0,0,0 +4488,5478,9747,9748,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.2546434,8.3128633,0,6,3,-6.7425966,0,-9,-9,2021,8,0,36,40,1,0,0,12.85905,12.85905,.05,.05,0,0,0,0,0,0,1,1,0,2.6099195,0,55,53,45.17,41.54,8,3,4,0,0,1,8,5,1,1540,129811.36,148305.66,0,0,0,0,3734.9731 +4488,5478,9748,9747,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1715479,7.9677763,0,6,-3,52.944645,0,2,2,2021,14,2,30,20,1,2,0,14.209047,14.209047,0,0,0,0,0,0,0,0,1,1,0,0,0,45.17,41.54,55,53,6.666666666666667,3,4,0,0,7,8,5,1,1540,129811.36,148305.66,0,0,0,0,3734.9731 +4489,5479,9749,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1124.3845,0,2,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,24.183489,0,0,1,1,0,0,0,42.03,24.15,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,572,-36562.98,0,0,0,0,0,392.7179 +4490,5480,9750,9752,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,7.9648833,8.0749855,0,8,-1,93.276199,0,2,2,2021,18,6,37,30,1,6,0,8.1002092,8.1002092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.79,62.9,52.23,55.6,3.333333333333333,1,1,0,1,9,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4490,5480,9751,-9,9750,9752,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.392,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4490,5480,9752,9750,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.9685106,9.0488749,0,8,1,-45.046703,0,3,1,2021,9,0,42,43,1,0,0,24.904827,24.904827,.05,.05,0,0,0,0,0,0,1,1,0,3.3217487,0,52.23,55.6,27.79,62.9,5,1,1,0,0,9,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4490,5480,9753,-9,9750,9752,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1057.673,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,5,1,1260,756705.31,208706.25,635825.25,149017.09,0,6711.04,4560.6665 +4491,5481,9754,9755,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5361586,8.7428789,0,4,5,-103.6478,0,2,2,2021,10,0,36,37,1,0,0,20.448925,20.448925,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52,54.51,35.91,63.19,8.333333333333334,1,1,0,0,11,5,5,1,438.5,817506.88,918272.25,121593.76,71872.805,22731.227,1140.5105,3249.541 +4491,5481,9755,9754,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.9599152,8.2579794,0,4,-5,57.408504,0,-9,-9,2021,10,0,29,51,1,0,0,9.7589741,9.7589741,0,0,0,0,0,0,0,0,0,0,0,1.8292164,0,35.91,63.19,52,54.51,8.333333333333334,1,1,0,0,2,5,5,1,438.5,817506.88,918272.25,121593.76,71872.805,22731.227,1140.5105,3249.541 +4492,5482,9756,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2508707,8.1452827,0,0,0,-991.73682,0,2,2,2021,7,0,30,40,1,0,0,14.717101,14.717101,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,9,4,4,1,449,87732.227,25140.584,0,0,-168.5052,0,1547.2965 +4493,5483,9757,9758,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,6.0611806,6.5070133,58,6,56.513798,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1419239,57.57,49.69,55.77,47.78,8.333333333333334,3,4,0,0,0,9,2,1,475.5,750722.13,5494.2495,559516.56,0,0,0,1145.811 +4493,5483,9758,9757,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,4.5308681,4.172296,57,-6,-48.115952,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7491984,4.5916142,55.77,47.78,57.57,49.69,8.333333333333334,3,4,0,0,0,9,2,1,475.5,750722.13,5494.2495,559516.56,0,0,0,1145.811 +4494,5484,9759,9760,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.6871843,7.6176624,0,11,0,-55.26984,0,3,3,2021,6,0,38,35,1,0,0,8.9088984,8.9088984,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.06,52.92,65.90000000000001,45.38,10,2,3,0,0,12,9,4,1,681.5,303104.28,151883.47,188157.88,11014.617,0,0,2330.3076 +4494,5484,9760,9759,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.6401148,7.6402831,0,11,0,-41.689606,0,3,3,2021,7,0,38,20,1,0,0,5.8048038,5.8048038,0,0,0,0,0,0,0,0,0,0,0,0,0,65.90000000000001,45.38,55.06,52.92,8.333333333333334,2,3,0,0,12,9,4,1,681.5,303104.28,151883.47,188157.88,11014.617,0,0,2330.3076 +4495,5485,9761,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.216218,8.4628658,0,0,0,-1130.8466,0,3,2,2021,9,0,37,37,1,0,0,11.421911,11.421911,.05,.05,0,0,0,0,0,0,0,0,0,5.3003783,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,9,9,4,0,190,2125054,1785625.6,143710.86,17770.883,-1176.3944,0,424.41568 +4496,5486,9762,9763,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.1176281,9.1403751,0,5,-1,138.86905,0,-9,-9,2021,8,0,41,40,1,0,0,24.00938,24.00938,.05,.05,0,0,0,0,0,7,1,1,0,6.496006,0,51.83,57.2,55.6,27.13,8.333333333333334,1,1,0,0,5,2,5,1,1026,117027.82,-29879.877,228064.19,178632.19,0,0,5581.1582 +4496,5486,9763,9762,-9,-9,1,0,36,0,0,0,1,1,-9,1,2,8.8986454,8.4236422,0,5,1,53.970345,0,2,2,2021,15,5,38,40,1,5,0,21.476507,21.476507,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.6,27.13,51.83,57.2,1.666666666666667,1,1,0,0,10,2,5,1,1026,117027.82,-29879.877,228064.19,178632.19,0,0,5581.1582 +4497,5487,9764,-9,9767,9766,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.664,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4497,5487,9765,-9,9767,9766,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.7397,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4497,5487,9766,9767,-9,-9,1,1,42,0,2,0,2,2,-9,0,1,0,0,0,10,3,-49.272541,0,2,2,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.21,31.62,45.12,58.81,8.333333333333334,1,1,0,0,0,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4497,5487,9767,9766,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.7812538,8.9432516,0,10,-3,166.92856,0,1,1,2021,8,0,47,52,1,0,0,14.355991,14.355991,0,0,0,0,0,0,0,0,1,1,0,0,0,45.12,58.81,53.21,31.62,8.333333333333334,1,1,0,0,8,7,4,1,900.25,148063.64,65414.672,320507.09,162267.2,0,837.42395,2798.3643 +4498,5488,9768,9769,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.982131,8.1481647,0,26,-2,145.02817,0,2,2,2021,9,0,35,36,1,0,0,9.1889715,9.1889715,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.54,52.35,49.04,55.86,1.666666666666667,1,1,0,0,12,12,5,1,687.5,479648.59,211363.5,215314.66,0,19434.871,0,3182.0291 +4498,5488,9769,9768,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.490016,8.4159431,0,26,2,10.694146,0,-9,2,2021,12,0,35,35,1,0,0,13.157156,13.157156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,53.54,52.35,6.666666666666667,1,1,0,0,9,12,5,1,687.5,479648.59,211363.5,215314.66,0,19434.871,0,3182.0291 +4498,5489,9770,-9,9768,9769,1,1,24,0,0,0,2,2,-9,0,3,8.0523891,8.0367689,0,0,0,-924.40222,0,2,2,2021,10,0,35,18,1,0,1,8.9200268,8.9200268,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,102,-80798.234,0,0,0,0,0,1848.7194 +4499,5490,9771,9772,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,3.9790437,3.6092875,8,5,-31.527021,0,2,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,25.369324,30.391964,244.38594,0,1,1,0,0,3.9456477,41.15,25.78,42.62,30.76,8.333333333333334,1,1,0,0,0,9,2,0,659,86101.727,-7807.582,0,0,1406.637,0,2700.5156 +4499,5490,9772,9771,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,4.9558768,5.4857969,62,-5,30.816303,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,4.7926345,42.62,30.76,41.15,25.78,3.333333333333333,1,1,0,0,0,9,2,0,659,86101.727,-7807.582,0,0,1406.637,0,2700.5156 +4500,5491,9773,9774,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,39,-1,-129.80708,-9,3,-9,2021,19,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.16,63.25,57.16,56.15,3.333333333333333,1,1,0,0,10,12,5,1,940.5,1353681.5,336298.72,383104.25,0,0,0,4774.6958 +4500,5491,9774,9773,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6269188,9.2854624,7.6666675,39,1,-35.598068,0,3,2,2021,5,0,45,48,1,0,0,16.322851,16.322851,.05,.05,0,0,0,0,0,0,0,0,0,8.214694,0,57.16,56.15,21.16,63.25,8.333333333333334,1,1,0,0,12,12,5,1,940.5,1353681.5,336298.72,383104.25,0,0,0,4774.6958 +4501,5492,9775,9776,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,53,-4,-46.912842,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0593271,0,49.27,47.49,57.16,56.15,8.333333333333334,1,1,0,0,0,8,3,1,366,673156.81,536856,193402.23,0,1467.3728,0,3601.6938 +4501,5492,9776,9775,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,8.2164707,7.9449301,53,4,40.193386,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9531999,57.16,56.15,49.27,47.49,8.333333333333334,1,1,0,0,0,8,3,1,366,673156.81,536856,193402.23,0,1467.3728,0,3601.6938 +4502,5493,9777,9778,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.1035118,8.3298855,0,5,7,13.253036,0,-9,-9,2021,20,8,40,40,1,8,0,9.9505253,9.9505253,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.64,55.03,51.41,56.15,8.333333333333334,1,1,0,0,9,1,4,1,115,35128.281,136839.56,0,0,12766.004,2601.2559,2428.0044 +4502,5493,9778,9777,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.1495733,8.0649834,0,5,-7,79.157204,-9,-9,-9,2021,8,1,37,0,1,1,0,10.116997,10.116997,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.41,56.15,38.64,55.03,3.333333333333333,1,1,0,0,7,1,4,1,115,35128.281,136839.56,0,0,12766.004,2601.2559,2428.0044 +4503,5494,9779,9780,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.4715242,8.0848436,0,8,1,-23.113253,0,-9,-9,2021,6,0,38,44,1,0,0,10.670164,10.670164,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,10,4,4,1,331,-108931.29,-64460.047,0,0,4377.2173,0,2567.6123 +4503,5494,9780,9779,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,7.8632126,7.5862908,0,8,-1,81.199883,0,-9,-9,2021,9,0,33,38,1,0,0,10.195701,10.195701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,10,4,4,1,331,-108931.29,-64460.047,0,0,4377.2173,0,2567.6123 +4504,5495,9781,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,7.3756828,7.4513435,0,0,-1003.6686,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7254521,7.6058016,58.09,40.6,-9,-9,10,1,1,0,0,0,2,3,1,1973,40517.715,139122.16,184718.63,0,0,0,1918.5889 +4505,5496,9782,9783,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,9.0735626,9.2588167,40,4,36.257988,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4586296,8.6112194,58.15,52.91,54.79,55.86,1.666666666666667,1,1,0,0,7,7,5,1,1034.5,2039827.8,1333329.8,462710.56,0,0,0,6722.3169 +4505,5496,9783,9782,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,0,0,39,-4,38.703114,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8796525,0,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,9,7,5,1,1034.5,2039827.8,1333329.8,462710.56,0,0,0,6722.3169 +4506,5497,9784,9785,-9,-9,1,1,92,0,0,0,1,1,-9,0,3,0,0,0,66,6,37.736801,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2371671,0,56,44,32.93,35.08,8,1,1,0,0,0,9,3,1,1073.5,1274830.9,202304.16,541310.25,0,0,0,2287.2285 +4506,5497,9785,9784,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,8.1121597,8.1327744,66,-6,-20.712776,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,8.7237873,0,86.278625,120,1,1,0,3.5,8.321104,32.93,35.08,56,44,5,1,1,0,0,0,9,3,1,1073.5,1274830.9,202304.16,541310.25,0,0,0,2287.2285 +4507,5498,9786,9787,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,6.3510814,6.165834,0,1,0,20.845503,-9,3,3,2021,15,4,10,0,1,4,0,6.7165556,6.7165556,0,0,0,0,0,0,0,116,0,0,0,5.3594589,0,48.45,51.96,52.64,30.25,5,1,1,0,0,8,5,3,1,782,-1958.4219,35691.418,184181.63,0,0,5175.6133,2642.3145 +4507,5498,9787,9786,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.96139,8.0026455,0,1,0,-93.433693,-9,-9,-9,2021,13,4,40,0,1,4,0,7.6531558,7.6531558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.64,30.25,48.45,51.96,8.333333333333334,1,1,0,0,4,5,3,1,782,-1958.4219,35691.418,184181.63,0,0,5175.6133,2642.3145 +4507,5499,9788,-9,9786,9787,1,1,21,0,1,0,2,2,-9,0,3,7.4819303,7.5871029,0,0,0,-1047.6172,-9,3,2,2021,8,0,9,0,1,0,1,23.740816,23.740816,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,5,3,1,7322,0,0,0,0,0,0,695.27136 +4507,5500,9789,-9,9786,9787,1,0,18,0,1,1,2,0,-9,0,4,0,0,0,0,0,-989.50708,-9,3,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,5,1,1,1439,-38493,0,0,0,0,0,0 +4508,5501,9790,9791,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.8223081,8.1360941,50,2,56.93914,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8519025,60.86,50.49,46.08,57.2,8.333333333333334,1,1,0,0,0,6,4,1,675.5,1398115.6,1024223,431804.13,123389.17,0,0,2616.7778 +4508,5501,9791,9790,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.2076001,7.0277362,50,-2,15.242461,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0114477,7.1116347,46.08,57.2,60.86,50.49,8.333333333333334,1,1,0,0,0,6,4,1,675.5,1398115.6,1024223,431804.13,123389.17,0,0,2616.7778 +4509,5502,9792,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,8.0029116,8.4403143,7.8524718,0,0,-1216.832,0,3,3,2021,22,10,60,60,1,10,0,5.6376123,5.6376123,.05,.05,.05,0,0,0,0,0,1,1,0,2.7861407,8.0524797,36.4,33.57,-9,-9,3.333333333333333,1,1,0,0,10,5,5,0,379,-24717.535,31561.389,0,0,0,0,4039.6094 +4510,5503,9793,9794,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.3385448,8.2582474,0,8,-6,-249.76755,0,3,3,2021,10,0,44,42,1,0,0,8.5516186,8.5516186,0,0,0,0,0,0,0,0,1,1,0,0,0,50.05,46.15,36.87,25.22,6.666666666666667,1,1,0,0,13,12,4,0,670.5,1436636.1,877046.06,408375.59,0,0,0,3295.25 +4510,5503,9794,9793,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,8.1413355,8.0852156,0,8,6,-21.256685,0,-9,-9,2021,20,8,25,40,1,8,0,14.383842,14.383842,0,0,0,0,0,0,0,0,1,1,0,0,0,36.87,25.22,50.05,46.15,3.333333333333333,1,1,0,1,6,12,4,0,670.5,1436636.1,877046.06,408375.59,0,0,0,3295.25 +4511,5504,9795,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.5511351,8.3565817,0,0,0,-1061.589,0,3,3,2021,6,0,40,40,1,0,0,16.611715,16.611715,.05,.05,0,0,0,0,0,0,1,1,0,7.13203,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,5,2,5,1,1872.5,573205.5,434899.94,138773.63,90633.688,0,0,2954.0405 +4511,5504,9796,-9,9795,-9,1,1,16,0,0,1,2,0,-9,0,4,0,7.037961,6.9305606,0,0,-1053.5929,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7217841,0,43.92,59.79,-9,-9,8.333333333333334,2,3,0,0,0,2,5,1,1872.5,573205.5,434899.94,138773.63,90633.688,0,0,2954.0405 +4511,5505,9797,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-963.86212,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,2610,-106909.19,0,0,0,0,0,0 +4511,5506,9798,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,5.9443216,6.2493534,0,0,-1050.2349,-9,-9,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9906316,0,51.83,57.2,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,5052,211659.91,46071.523,0,0,4226.4844,0,46.594906 +4512,5507,9799,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.7782741,7.6645803,0,0,0,-1050.6372,0,3,3,2021,12,0,38,31,1,0,0,6.561605,6.561605,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,5,1,1,0,1,6,4,3,0,240,131206.91,-14101.94,98967.742,0,0,0,1365.684 +4513,5508,9800,9801,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,9.083498,8.684227,0,8,1,22.560812,0,2,3,2021,7,0,41,37,1,0,0,20.025379,20.025379,.05,.05,0,0,0,0,0,0,0,0,0,1.8459853,0,49.84,59.62,48.28,60.18,8.333333333333334,1,1,0,0,9,1,5,1,883,1465166.6,1126172.9,217397.95,54154.539,0,4937.1309,6959.7783 +4513,5508,9801,9800,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,9.6469374,9.2297421,0,8,-1,152.60925,0,3,3,2021,18,6,53,83,1,6,0,24.042501,24.042501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.84,59.62,8.333333333333334,1,1,0,0,9,1,5,1,883,1465166.6,1126172.9,217397.95,54154.539,0,4937.1309,6959.7783 +4513,5508,9802,-9,9801,9800,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1032.1941,-9,1,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,5,1,1,0,0,0,1,5,1,883,1465166.6,1126172.9,217397.95,54154.539,0,4937.1309,6959.7783 +4514,5509,9803,-9,-9,-9,1,1,37,0,0,0,3,3,-9,0,4,8.2281771,8.2691469,0,0,0,-1005.5203,0,2,-9,2021,6,0,38,38,1,0,0,12.359521,12.359521,0,0,0,0,0,0,0,0,0,0,0,.49717855,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,103,288919.31,0,0,0,0,0,1988.5614 +4515,5510,9804,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,7.4059501,7.4493489,0,0,-922.90778,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8182383,60.29,52.11,-9,-9,10,1,1,0,0,11,2,3,1,1584,543423.38,324310.84,22469.092,0,0,0,2183.6514 +4516,5511,9805,9806,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,4,-1,92.110603,0,-9,-9,2021,23,8,0,42,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.46,56.1,54.2,57.49,8.333333333333334,1,1,1,1,3,7,3,1,1236,693926.06,-8548.4375,670050.63,0,0,0,2043.2368 +4516,5511,9806,9805,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.1387529,8.4028635,0,4,1,-14.274883,0,2,2,2021,6,0,35,38,1,0,0,12.087648,12.087648,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,39.46,56.1,8.333333333333334,1,1,0,0,5,7,3,1,1236,693926.06,-8548.4375,670050.63,0,0,0,2043.2368 +4517,5512,9807,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1026.9825,-9,3,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,1,0,5,1,0,1364,-74788.344,0,0,0,3059.499,1007.2689,439.83011 +4518,5513,9808,-9,9809,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.423,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,2,0,233,-96778.406,0,0,0,5530.3418,0,1246.7642 +4518,5513,9809,-9,-9,-9,1,0,36,0,2,0,2,2,0,0,4,0,6.2961345,6.5933924,0,0,-991.03424,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3429422,0,47,57,-9,-9,7,1,1,0,1,2,6,2,0,233,-96778.406,0,0,0,5530.3418,0,1246.7642 +4519,5514,9810,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,5.0824862,4.8073072,0,0,-1075.5302,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1341691,37.41,26.64,-9,-9,5,1,1,0,0,0,9,2,0,278,688285.5,-102523.57,510639.09,0,0,0,1475.5748 +4520,5515,9811,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.4378886,7.2775669,0,0,-889.32397,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7361193,7.5013824,52.47,40.47,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,418,135600.63,174153.41,0,0,0,0,1801.103 +4521,5516,9812,9813,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.6463041,8.584836,0,13,3,20.013916,-9,-9,-9,2021,9,0,40,0,1,1,0,14.43679,14.43679,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53,54,43.84,47.84,8,1,1,0,0,1,7,4,1,426,928123.13,366351.47,656906.13,117646.2,0,0,3127.7139 +4521,5516,9813,9812,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,7.543891,7.3659797,0,13,-3,-67.686836,0,2,2,2021,12,0,20,0,1,0,0,9.979353,9.979353,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,47.84,53,54,8.333333333333334,1,1,0,0,1,7,4,1,426,928123.13,366351.47,656906.13,117646.2,0,0,3127.7139 +4522,5517,9814,9815,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,58,-2,87.673698,0,3,3,2021,14,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.29,49.1,62.27,34.71,8.333333333333334,1,1,0,0,0,6,3,1,321,376390.97,249020.34,109999.61,0,0,0,2456.5327 +4522,5517,9815,9814,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.5779667,7.721242,58,2,29.003336,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6937022,62.27,34.71,34.29,49.1,8.333333333333334,1,1,0,0,0,6,3,1,321,376390.97,249020.34,109999.61,0,0,0,2456.5327 +4523,5518,9816,9817,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.6472836,7.036849,59,-6,-52.457462,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.9505334,6.7063456,52.17,25.93,50.14,37.92,5,1,1,0,0,0,2,2,1,821,632647.25,272820.19,192287.53,0,0,0,1935.9575 +4523,5518,9817,9816,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.7086811,5.8034506,59,6,-8.9082642,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.5558264,0,0,1,1,0,0,5.6088252,50.14,37.92,52.17,25.93,6.666666666666667,1,1,0,0,0,2,2,1,821,632647.25,272820.19,192287.53,0,0,0,1935.9575 +4524,5519,9818,9819,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.1397209,7.4861255,45,6,-33.671703,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1390624,7.5078745,57.16,56.15,42.2,25.93,8.333333333333334,1,1,0,0,0,6,2,1,1767,601463.63,495409.31,173238.72,0,0,0,3693.1479 +4524,5519,9819,9818,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,45,-6,-41.420574,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.24944,0,42.2,25.93,57.16,56.15,3.333333333333333,1,1,0,0,4,6,2,1,1767,601463.63,495409.31,173238.72,0,0,0,3693.1479 +4525,5520,9820,9821,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,8.3107042,7.9914546,36,1,61.257187,-9,1,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2863035,7.7439208,54.69,57.47,57.06,57.76,10,1,1,0,0,6,9,5,1,366,2472783.8,1787901,475325.06,0,0,0,8382.209 +4525,5520,9821,9820,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,8.7462101,8.981391,1,-1,-64.235077,-9,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0011168,8.8952999,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,9,5,1,366,2472783.8,1787901,475325.06,0,0,0,8382.209 +4526,5521,9822,9823,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.1133862,6.8811073,44,0,-135.76636,0,2,2,2021,11,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1526699,7.2135811,57.16,56.15,52.58,47.36,8.333333333333334,1,1,0,0,9,7,4,1,249,1194948,703318.5,223427.5,0,0,0,3628.167 +4526,5521,9823,9822,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8659062,8.0108337,44,0,12.154503,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1358714,8.4819689,52.58,47.36,57.16,56.15,6.666666666666667,1,1,0,0,0,7,4,1,249,1194948,703318.5,223427.5,0,0,0,3628.167 +4527,5522,9824,9826,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.2981386,8.2064629,0,3,4,15.880951,0,-9,-9,2021,12,1,39,45,1,1,0,12.890335,12.890335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.19,64.7,54.96,53.17,3.333333333333333,1,1,0,0,3,10,4,1,840.66669,52382.453,-50871.613,0,0,0,11189.457,2111.4724 +4527,5522,9825,-9,9826,9824,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.417,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,840.66669,52382.453,-50871.613,0,0,0,11189.457,2111.4724 +4527,5522,9826,9824,-9,-9,1,0,24,1,1,0,1,1,-9,0,3,7.3730249,7.4275846,0,3,-4,-41.915867,0,-9,-9,2021,6,0,22,24,1,0,0,6.3976893,6.3976893,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,26.19,64.7,10,1,1,0,0,6,10,4,1,840.66669,52382.453,-50871.613,0,0,0,11189.457,2111.4724 +4528,5523,9827,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.9484463,7.3155274,0,0,-940.51569,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,7.9665899,0,0,1,1,0,5.5380783,6.8561769,63.67,24.99,-9,-9,5,1,1,0,0,3,9,2,1,955,644260.94,294139,257407.27,50358.691,0,0,1985.3193 +4529,5524,9828,-9,9829,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.17401,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,624.66669,-103868.73,0,0,0,0,0,934.36493 +4529,5524,9829,-9,-9,-9,1,0,29,1,2,0,2,2,-9,0,3,0,0,0,0,0,-877.08295,0,2,2,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.69,50.51,-9,-9,8.333333333333334,3,4,1,0,9,8,1,0,624.66669,-103868.73,0,0,0,0,0,934.36493 +4529,5524,9830,-9,9829,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.3499,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,624.66669,-103868.73,0,0,0,0,0,934.36493 +4530,5525,9831,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.7638407,4.9274268,0,0,-1011.8489,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8689618,52.49,23.28,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,118,208823.02,0,149982.75,0,0,0,1270.4955 +4531,5526,9832,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.52069,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,-9,-9,6.666666666666667,1,1,0,0,0,5,1,0,2839,66733.469,0,0,0,-415.36176,0,1597.6871 +4532,5527,9833,9834,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.1783485,5.8765297,7,0,-42.405914,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.2449129,0,0,1,1,0,2.2170548,5.3447051,58.08,40.76,61.62,34.96,10,1,1,0,0,0,1,2,1,450.5,940341.5,0,566987.63,0,0,0,2256.0132 +4532,5527,9834,9833,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.0102501,7.0126367,7,9,59.393486,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1939623,7.0776978,61.62,34.96,58.08,40.76,8.333333333333334,1,1,0,0,0,1,2,1,450.5,940341.5,0,566987.63,0,0,0,2256.0132 +4533,5528,9835,9836,-9,-9,1,1,53,0,2,0,2,2,-9,1,1,0,0,0,28,3,0,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,29.12,22.13,30.08,51.09,1.666666666666667,1,1,0,0,0,7,1,0,592.5,32718.619,0,0,0,2158.1277,0,1179.0242 +4533,5528,9836,9835,-9,-9,1,0,50,0,2,0,2,2,-9,1,3,0,0,0,28,-3,0,0,2,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.08,51.09,29.12,22.13,6.666666666666667,1,1,0,0,0,7,1,0,592.5,32718.619,0,0,0,2158.1277,0,1179.0242 +4533,5529,9837,-9,9838,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.7377,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,355.33334,-66991.063,0,0,0,0,0,899.25317 +4533,5529,9838,-9,9836,9835,1,0,25,0,2,0,2,2,-9,0,3,0,5.5000591,5.3762369,0,0,-994.93494,0,2,2,2021,31,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5215597,0,15.39,57.91,-9,-9,0,1,1,0,1,3,7,2,0,355.33334,-66991.063,0,0,0,0,0,899.25317 +4533,5529,9839,-9,9838,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-852.88605,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,355.33334,-66991.063,0,0,0,0,0,899.25317 +4533,5530,9840,-9,9836,9835,1,0,23,0,2,0,2,2,-9,0,4,7.7635651,7.6333141,0,0,0,-1072.7029,0,2,2,2021,6,0,35,35,1,0,1,7.7889848,7.7889848,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,3,0,2006,0,0,0,0,0,0,1559.3525 +4534,5531,9841,-9,9842,9843,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-984.52228,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4534,5531,9842,9843,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.6173639,8.3428631,0,2,-6,81.346062,0,-9,-9,2021,10,2,37,42,1,2,0,15.468988,15.468988,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,54.91,46.08,57.2,8.333333333333334,1,1,0,0,9,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4534,5531,9843,9842,-9,-9,1,1,38,2,2,0,2,2,-9,0,3,8.4056797,8.6541166,0,2,6,-62.60054,0,-9,-9,2021,11,0,42,42,1,0,0,9.487175,9.487175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,50.85,54.91,8.333333333333334,1,1,0,0,3,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4534,5531,9844,-9,9842,9843,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.0245,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,337.25,-33628.977,10246.111,0,0,0,0,2913.1638 +4535,5532,9845,-9,9846,9848,1,0,18,0,2,0,2,2,1,0,4,8.1194315,7.8969908,0,0,0,-1031.5387,-9,2,2,2021,4,0,45,0,1,0,1,9.938653,9.938653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.33,47.36,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,159,-4357.1206,-78893.25,0,0,4866.001,-528.1228,2245.532 +4535,5533,9846,9848,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,8.3891926,8.5365705,5.2789054,10,-3,71.539932,0,2,2,2021,11,0,39,40,1,0,0,15.076546,15.076546,.05,.05,0,0,0,0,0,2,1,1,0,5.414269,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,11,2,4,1,903.33331,867337.88,683187.25,131097.27,73863.008,164.59969,-83.205185,2933.3665 +4535,5533,9847,-9,9846,9848,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.1533,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,903.33331,867337.88,683187.25,131097.27,73863.008,164.59969,-83.205185,2933.3665 +4535,5533,9848,9846,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,7.9618726,7.819345,0,10,3,-14.795219,0,-9,-9,2021,9,1,45,40,1,1,0,6.2066717,6.2066717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,6.666666666666667,1,1,0,0,11,2,4,1,903.33331,867337.88,683187.25,131097.27,73863.008,164.59969,-83.205185,2933.3665 +4536,5534,9849,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,6.9396677,7.0559506,0,0,-942.15527,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.3095255,61.06,46.42,-9,-9,10,3,4,0,0,4,8,2,0,876,334618.28,217120.44,286012.5,242891.3,0,0,81.799263 +4537,5535,9850,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7625666,7.86654,0,0,0,-1055.5839,0,2,-9,2021,15,4,37,37,1,4,0,6.8336344,6.8336344,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,4,2,0,0,12,11,3,1,164,43647.676,28118.813,262015.92,154632.55,5551.6016,3760.9717,925.15515 +4538,5536,9851,9852,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.085103,9.2252083,0,7,-1,172.35098,0,2,3,2021,14,4,37,35,1,4,0,26.304815,26.304815,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.45,57.49,30.75,61.56,6.666666666666667,1,1,0,0,7,1,5,1,488,1855805,1352340.8,268325.5,0,0,0,5643.978 +4538,5536,9852,9851,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.7632771,8.7778931,0,7,1,-1.601012,0,2,2,2021,19,8,40,38,1,8,0,18.593428,18.593428,.05,.05,0,0,0,0,0,0,0,0,0,4.4079957,0,30.75,61.56,48.45,57.49,3.333333333333333,1,1,0,0,7,1,5,1,488,1855805,1352340.8,268325.5,0,0,0,5643.978 +4539,5537,9853,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1000.9639,-9,3,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.2,33.75,-9,-9,10,1,1,0,0,0,6,1,0,345,165823.89,0,0,0,0,0,760.67358 +4540,5538,9854,9855,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.084363,8.2717314,0,5,-2,-94.533554,0,3,3,2021,7,0,43,47,1,0,0,8.4813681,8.4813681,.05,.05,0,0,0,0,0,2,0,0,0,6.3290505,0,48.81,59.91,50.06,55.28,8.333333333333334,1,1,0,0,6,11,5,1,642.5,456865,391755,110335.58,25779.49,0,9861.707,3736.6646 +4540,5538,9855,9854,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.9995918,8.4698048,0,5,2,-99.735817,0,2,2,2021,6,0,40,40,1,0,0,18.467752,18.467752,.05,.05,0,0,0,0,0,0,0,0,0,6.6524658,0,50.06,55.28,48.81,59.91,0,1,1,0,0,6,11,5,1,642.5,456865,391755,110335.58,25779.49,0,9861.707,3736.6646 +4541,5539,9856,9857,-9,-9,1,0,53,0,2,0,2,2,-9,1,3,0,6.4914851,6.9471278,36,-4,-30.896578,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.5163331,56.18,48.68,44.5,21.95,5,1,1,0,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4541,5539,9857,9856,-9,-9,1,1,57,0,2,0,3,3,-9,1,1,0,0,0,35,4,-87.112213,0,2,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,21.95,56.18,48.68,3.333333333333333,1,1,0,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4541,5539,9858,-9,9856,9857,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.8767,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4541,5539,9859,-9,9856,9857,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.5835,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,1,788.75,31488.945,0,0,0,0,1047.9711,2982.0952 +4542,5540,9860,-9,9862,9863,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.2817,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4542,5540,9861,-9,9862,9863,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-833.70184,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4542,5540,9862,9863,-9,-9,1,0,25,1,2,0,2,2,-9,0,2,0,0,0,4,-5,44.997173,0,-9,-9,2021,11,0,0,16,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.27,42.39,51.43,37.05,6.666666666666667,1,1,1,0,0,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4542,5540,9863,9862,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,7.0980883,7.5453877,0,4,5,34.821445,0,3,2,2021,25,9,23,0,1,9,0,7.7316604,7.7316604,.05,.05,0,0,0,0,0,0,1,1,0,2.7734795,0,51.43,37.05,41.27,42.39,1.666666666666667,1,1,0,1,8,12,2,0,733.5,46331.047,28374.979,67154.438,71862.234,0,0,1089.5363 +4543,5541,9864,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,6.7684603,6.8522673,0,0,-962.99762,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5509756,6.6424551,57.88,28.89,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1139,221090.81,99868.992,229840.39,0,0,0,1213.4691 +4544,5542,9865,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.4561157,7.7350941,0,0,-1032.7369,0,3,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,10.149515,0,0,1,1,0,0,7.6051197,49.58,39.53,-9,-9,5,1,1,0,0,0,9,3,1,378,123605.75,308329.38,0,0,0,0,1206.3491 +4545,5543,9866,9867,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,9.3589125,9.3752317,0,9,1,-36.490993,0,3,2,2021,6,0,9,42,1,0,0,137.62708,137.62708,0,0,0,0,0,0,0,0,0,0,0,3.5813837,0,57.73,54.53,58.08,43.46,8.333333333333334,1,1,0,0,10,9,5,1,612,2069817.8,1206879.5,855210.88,0,2378.9307,0,4553.583 +4545,5543,9867,9866,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.0174894,7.2581358,9,-1,60.787502,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2400417,7.4525585,58.08,43.46,57.73,54.53,8.333333333333334,1,1,0,0,3,9,5,1,612,2069817.8,1206879.5,855210.88,0,2378.9307,0,4553.583 +4546,5544,9868,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.1875353,7.9757943,2.7053361,0,0,-990.48108,0,3,3,2021,20,8,42,37,1,8,0,8.7686901,8.7686901,.05,.05,0,0,0,0,0,7,0,0,0,2.661926,0,22.89,60.29,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,631,279773.78,85215.859,96816.805,39170.43,-1687.8348,2396.1221,1527.4706 +4547,5545,9869,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1485586,8.1630507,0,0,0,-821.34003,0,2,2,2021,9,0,32,37,1,0,0,12.654926,12.654926,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,15,8,4,0,3463,413219.25,60513.492,341918.84,0,0,0,1044.0037 +4548,5546,9870,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1021.2286,0,1,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,3,4,0,0,0,8,1,0,587,0,0,0,0,0,0,903.36646 +4549,5547,9871,-9,9873,9872,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.56531,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4549,5547,9872,9873,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.4877243,8.7361107,0,7,3,-3.6804316,0,-9,-9,2021,8,0,55,55,1,0,0,15.195601,15.195601,.05,.05,0,0,0,0,0,0,1,1,0,1.326786,0,57.06,57.76,55.76,52.64,8.333333333333334,1,1,0,0,10,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4549,5547,9873,9872,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.3095312,8.1758347,0,7,-3,181.77562,0,-9,-9,2021,12,1,32,30,1,1,0,13.979798,13.979798,.05,.05,0,0,0,0,0,0,1,1,0,6.5718546,0,55.76,52.64,57.06,57.76,8.333333333333334,1,1,0,0,11,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4549,5547,9874,-9,9873,9872,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.6006,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,392.75,404898,99056.234,31132.285,48144.914,9132.2725,0,3957.0562 +4550,5548,9875,9877,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3265991,8.8576021,0,10,3,-137.83873,0,3,3,2021,9,0,46,46,1,0,0,11.954684,11.954684,.05,.05,0,0,0,0,0,0,1,1,0,3.5445557,0,52.91,55.33,59.43,58.05,8.333333333333334,1,1,0,0,11,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4550,5548,9876,-9,9877,9875,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1021.2886,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4550,5548,9877,9875,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.0009441,8.0741835,0,10,-3,-66.238846,0,2,2,2021,7,0,35,33,1,0,0,8.2550793,8.2550793,0,0,0,0,0,0,0,0,1,1,0,3.459265,0,59.43,58.05,52.91,55.33,10,1,1,0,0,11,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4550,5548,9878,-9,9877,9875,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.80432,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,443.75,441207.38,223957.27,107535.19,62748.902,0,0,3308.0708 +4551,5549,9879,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.6453381,9.9171734,0,0,0,-888.12512,0,3,3,2021,9,1,53,50,1,1,0,29.709734,29.709734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,8,5,1,938,357170.38,106133.87,454716.91,192357.2,11328.612,0,4437.897 +4552,5550,9880,-9,-9,-9,1,1,26,0,0,0,2,2,-9,1,2,8.0878582,8.1455917,4.422492,0,0,-1040.1653,0,2,2,2021,19,7,42,37,1,7,0,8.7930651,8.7930651,0,0,0,0,0,0,0,0,1,1,0,4.1924663,0,32.24,26.09,-9,-9,1.666666666666667,1,1,0,0,8,9,4,1,1421,79075.859,-66614.703,0,0,0,1640.6096,2191.467 +4553,5551,9881,9882,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,0,0,0,39,0,-35.039623,0,2,2,2021,18,8,0,40,4,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.9979048,0,43.86,63.67,34.27,63.91,8.333333333333334,1,1,0,0,12,12,4,1,574,546254.63,322677.25,168260.06,0,0,0,5065.6016 +4553,5551,9882,9881,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.6707191,8.6930246,0,38,0,-80.491547,0,2,2,2021,21,9,35,37,1,9,0,19.676447,19.676447,0,0,0,0,0,0,0,0,0,0,0,0,0,34.27,63.91,43.86,63.67,8.333333333333334,1,1,0,0,13,12,4,1,574,546254.63,322677.25,168260.06,0,0,0,5065.6016 +4553,5552,9883,-9,9881,9882,1,0,23,0,0,1,2,0,0,0,5,0,0,0,0,0,-1079.9753,-9,1,1,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2305608,0,38.77,63.46,-9,-9,8.333333333333334,1,1,0,0,6,12,1,1,2430,0,0,0,0,0,0,-150.33676 +4554,5553,9884,-9,9887,-9,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-868.89917,-9,2,-9,2021,21,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.76,62.64,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4554,5553,9885,-9,9887,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-754.11285,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4554,5553,9886,-9,9887,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.20374,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4554,5553,9887,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,5,7.9526315,8.1097403,5.1793423,0,0,-1048.0342,0,3,-9,2021,6,0,39,39,1,0,0,7.6339412,7.6339412,.05,.05,0,0,0,0,0,0,1,1,0,5.8089657,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,1094,16705.797,-28159.107,102320.38,21139.082,0,0,2130.1826 +4555,5554,9888,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.6808748,5.4581938,0,0,-1098.6036,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6141214,52,45,-9,-9,8,1,1,0,0,0,6,2,1,681,80818.789,60711.09,116020,0,0,0,584.75488 +4556,5555,9889,9890,-9,-9,1,1,66,0,0,0,3,3,-9,1,2,0,0,0,11,11,0,0,-9,-9,2021,11,3,0,0,3,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.24,30.08,57.68,42.36,6.666666666666667,1,1,0,1,0,12,1,0,577,108317.35,0,0,0,0,0,668.88416 +4556,5555,9890,9889,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,0,0,0,11,-11,0,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.68,42.36,52.24,30.08,8.333333333333334,1,1,0,0,2,12,1,0,577,108317.35,0,0,0,0,0,668.88416 +4557,5556,9891,9892,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.8579721,8.5789146,0,4,2,149.46632,0,2,-9,2021,19,7,55,60,1,7,0,16.365154,16.365154,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.66,34.78,58.15,52.91,3.333333333333333,1,1,0,0,8,9,5,1,1846,-78224.797,39921.324,0,0,-56.811279,2571.7134,3454.4688 +4557,5556,9892,9891,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.7623982,7.780633,0,4,-2,-2.4183292,0,-9,-9,2021,8,0,44,62,1,0,0,7.8492494,7.8492494,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,33.66,34.78,8.333333333333334,1,1,0,0,6,9,5,1,1846,-78224.797,39921.324,0,0,-56.811279,2571.7134,3454.4688 +4558,5557,9893,9894,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,64,2,23.801287,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.7,43.29,62.17,41.71,6.666666666666667,1,1,0,0,0,2,2,1,546.5,-45664.727,0,0,0,0,0,1366.4982 +4558,5557,9894,9893,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,3.9570558,3.7781749,64,-2,-132.07309,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3277431,4.086545,62.17,41.71,46.7,43.29,8.333333333333334,1,1,0,0,0,2,2,1,546.5,-45664.727,0,0,0,0,0,1366.4982 +4559,5558,9895,9896,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,69,-4,0,0,3,3,2021,13,0,0,0,4,2,0,0,0,0,0,0,1,0,22.883997,0,42,1,1,0,0,0,34.06,38.71,56,44,6.666666666666667,1,1,0,0,0,1,1,0,256,177509.41,-56426.031,70407.648,30676.525,0,0,1567.2893 +4559,5558,9896,9895,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,0,0,69,4,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,123.38181,0,0,1,1,0,0,0,56,44,34.06,38.71,8,1,1,0,0,0,1,1,0,256,177509.41,-56426.031,70407.648,30676.525,0,0,1567.2893 +4560,5559,9897,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,6.4701958,7.1606598,6.2869711,0,0,-1139.9348,0,-9,-9,2021,10,1,4,10,1,1,0,30.555368,30.555368,.05,.05,0,0,0,0,0,0,0,0,0,3.3339376,6.0103631,46.82,28.67,-9,-9,5,1,1,0,0,14,8,3,1,184,393050.19,213958.08,194696.3,2341.96,2073.8303,0,919.7713 +4561,5560,9898,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.9663467,8.0517159,0,0,-1236.3783,0,2,2,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1153708,6.2152429,50.36,41.54,-9,-9,3.333333333333333,1,1,0,0,11,8,4,1,2314,1135507.4,225435.91,574097.19,0,0,0,4606.1118 +4562,5561,9899,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6742911,7.534524,0,0,0,-1026.3286,0,-9,-9,2021,10,0,39,40,1,0,0,4.7695847,4.7695847,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.23,29.63,-9,-9,5,1,1,0,0,8,4,3,0,898,-10097.761,32586.303,0,0,0,-667.57031,365.03546 +4563,5562,9900,9902,-9,-9,1,0,32,0,3,0,2,2,-9,1,4,0,0,0,5,-7,-17.088024,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.02,58.85,55.19,54.26,5,4,2,0,0,0,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4563,5562,9901,-9,9900,9902,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.60327,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4563,5562,9902,9900,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,7.9854393,8.1562443,0,5,7,2.0315866,-9,-9,-9,2021,9,0,40,0,1,0,0,6.9362516,6.9362516,0,0,0,0,0,0,0,0,1,0,1,0,0,55.19,54.26,38.02,58.85,6.666666666666667,1,1,0,0,3,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4563,5562,9903,-9,9900,9902,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.8703,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,4,2,-9,0,0,6,2,0,702,108624.98,0,0,0,0,0,2774.9558 +4564,5563,9904,-9,9905,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.3492,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,760.66669,-42224.941,21188.666,0,0,0,1375.5786,1803.5974 +4564,5563,9905,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,5,6.884511,7.3849988,0,0,0,-1077.5153,0,-9,-9,2021,11,1,13,25,1,1,0,9.912199,9.912199,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.1,63.11,-9,-9,8.333333333333334,1,1,0,0,13,4,2,0,760.66669,-42224.941,21188.666,0,0,0,1375.5786,1803.5974 +4564,5563,9906,-9,9905,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.3789,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,760.66669,-42224.941,21188.666,0,0,0,1375.5786,1803.5974 +4565,5564,9907,-9,9908,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-974.44727,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.35,59.99,-9,-9,5,4,2,0,1,0,7,4,0,1114,188675.88,-22443.234,143102.38,56647.961,0,0,1875.2252 +4565,5564,9908,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.3767633,8.3402529,0,0,0,-963.77057,0,2,3,2021,20,7,48,48,1,7,0,9.7844524,9.7844524,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.73,50.3,-9,-9,1.666666666666667,4,2,0,1,10,7,4,0,1114,188675.88,-22443.234,143102.38,56647.961,0,0,1875.2252 +4566,5565,9909,-9,9910,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.4368,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,621,388998.97,175013.97,140728.63,70319.859,0,397.13214,2518.4824 +4566,5565,9910,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,8.8386421,8.5655041,6.5081158,0,0,-990.02112,0,2,3,2021,8,0,38,38,1,0,0,22.333162,22.333162,.05,.05,0,0,0,0,0,0,1,1,0,6.6996799,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,5,5,1,621,388998.97,175013.97,140728.63,70319.859,0,397.13214,2518.4824 +4567,5566,9911,-9,9912,9914,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.74854,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,1,0,1101.6666,-31119.939,0,0,0,0,0,801.58746 +4567,5566,9912,-9,-9,-9,1,0,35,0,2,0,2,2,0,0,3,0,0,0,0,0,-1020.6038,-9,2,2,2021,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.07,54.2,-9,-9,0,1,1,0,0,0,12,1,0,1101.6666,-31119.939,0,0,0,0,0,801.58746 +4567,5566,9913,-9,9912,9914,1,0,14,0,2,1,3,0,-9,0,1,0,0,0,0,0,-974.03778,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30,32,-9,-9,3,1,1,-9,0,0,12,1,0,1101.6666,-31119.939,0,0,0,0,0,801.58746 +4567,5567,9914,-9,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1036.6327,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,33.37,60.58,-9,-9,5,1,1,1,1,2,12,1,0,830,-150253.44,189009.81,0,0,0,0,73.122246 +4568,5568,9915,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1028.3469,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,60.23,-9,-9,6.666666666666667,1,1,0,1,2,8,1,0,576,17667.215,0,0,0,0,0,1007.9547 +4568,5569,9916,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,5,8.2318535,7.6525483,0,0,0,-884.28772,0,-9,-9,2021,13,3,50,45,1,3,0,7.4043775,7.4043775,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,1,6,8,4,0,576,-138087.42,0,0,0,1403.4927,0,1366.3766 +4569,5570,9917,9918,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.6679249,8.6682749,0,7,-1,-51.559467,0,2,2,2021,11,2,47,45,1,2,0,18.654633,18.654633,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,61.77,18.7,57.06,57.76,6.666666666666667,1,1,0,0,9,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4569,5570,9918,9917,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.863184,9.1489868,0,7,1,-3.404017,0,2,1,2021,11,0,44,35,1,0,0,16.129623,16.129623,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,61.77,18.7,8.333333333333334,1,1,0,0,10,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4569,5570,9919,-9,9918,9917,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.54987,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4569,5570,9920,-9,9918,9917,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.5787,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1270.25,650065.56,459343.5,339688.66,181979.66,3518.395,0,5312.1772 +4570,5571,9921,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.2552433,7.4123883,0,0,0,-950.17554,0,3,3,2021,12,1,25,22,1,1,0,6.106595,6.106595,0,0,0,0,0,0,0,0,1,1,0,0,0,38.61,43.02,-9,-9,6.666666666666667,2,3,0,0,4,1,2,0,874,-10831.846,0,110904.61,23876.443,1226.6863,0,1496.3259 +4571,5572,9922,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.2510529,8.3006887,0,0,0,-933.09039,0,2,2,2021,7,0,37,37,1,0,0,13.948842,13.948842,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,10,13,4,0,1005.5,646549.75,272305.78,222329.7,0,0,0,2822.2583 +4571,5572,9923,-9,9922,-9,1,0,17,0,0,0,3,3,-9,0,5,0,0,0,0,0,-985.51666,1,2,-9,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,1,13,4,0,1005.5,646549.75,272305.78,222329.7,0,0,0,2822.2583 +4572,5573,9924,9925,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,49,3,-74.804054,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,46.232513,0,0,1,1,0,4.4717941,0,50,47,52,48,7,1,1,0,0,6,6,3,1,543,871289.25,417023.38,207703.14,0,0,0,2672.606 +4572,5573,9925,9924,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.7682099,7.9375567,49,-3,57.979557,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.3143497,7.8791766,52,48,50,47,7,1,1,0,0,9,6,3,1,543,871289.25,417023.38,207703.14,0,0,0,2672.606 +4573,5574,9926,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2918415,8.2436028,0,0,0,-899.92255,0,3,2,2021,12,0,45,45,1,2,0,9.9451199,9.9451199,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,4,2,0,0,13,8,5,1,1474,557954.5,85911.781,419665.03,0,0,0,1800.526 +4573,5575,9927,-9,9926,-9,1,0,24,0,0,0,1,1,-9,0,4,7.8539572,7.9229498,0,0,0,-917.5979,0,2,1,2021,12,0,37,37,1,2,1,8.368124,8.368124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,5,0,0,5,8,4,1,404,-17830.365,-80778.555,0,0,0,0,1624.3065 +4573,5576,9928,-9,9926,-9,1,0,28,0,0,0,2,2,-9,0,3,8.01717,8.261982,0,0,0,-1108.0076,0,2,2,2021,11,0,38,37,1,0,1,8.5337133,8.5337133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,5,3,4,0,0,7,8,4,1,214,-105038.91,-17309.846,0,0,0,323.37622,1253.1997 +4573,5577,9929,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.9060163,5.6451974,0,0,-918.86072,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0801873,51,46,-9,-9,7,3,4,0,0,0,8,2,1,1483,308445.19,240661.91,214753.75,0,0,0,1170.8026 +4574,5578,9930,9931,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,9.540576,9.5425634,0,1,6,19.745317,-9,-9,-9,2021,9,0,40,0,1,1,0,64.277275,64.277275,.05,.05,0,0,0,0,0,0,1,1,0,4.1690426,0,53,55,46.63,59.72,8,1,1,0,0,1,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9931,9930,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,7.7240086,7.6397061,0,1,-6,57.489201,-9,2,2,2021,11,0,26,0,1,0,0,7.2411113,7.2411113,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,53,55,8.333333333333334,1,1,0,0,5,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9932,-9,9931,9930,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-836.7453,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9933,-9,9931,9930,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.699,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4574,5578,9934,-9,9931,9930,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.1075,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,705.40002,577764.38,595213.38,339011.56,260595.34,8722.3066,0,177654.53 +4575,5579,9935,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.1476293,5.1237097,0,0,-1066.9445,0,3,3,2021,12,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9893804,5.1584525,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,4,4,2,1,562,425974.25,42974.617,264818.53,0,0,-173.47382,1223.0898 +4576,5580,9936,9937,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.2555351,9.4247246,0,1,-5,-156.88199,0,-9,2,2021,6,0,45,44,1,0,0,33.567932,33.567932,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,43.67,23.7,8.333333333333334,1,1,0,0,15,12,5,1,659.5,1200291.3,768451.81,290790.63,73721.008,0,0,6512.2979 +4576,5580,9937,9936,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.0975876,9.2012138,7.9096799,1,5,-1.0334963,-9,-9,-9,2021,12,0,49,0,1,0,0,6.1605873,6.1605873,.05,.05,0,0,0,0,.33481896,0,1,1,0,0,7.9864554,43.67,23.7,59.43,49.68,8.333333333333334,1,1,0,0,15,12,5,1,659.5,1200291.3,768451.81,290790.63,73721.008,0,0,6512.2979 +4577,5581,9938,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,8.2306786,7.8938322,0,0,-1099.7461,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.6693296,8.5067072,61.04,39.41,-9,-9,10,1,1,0,0,0,10,4,1,317,994497,439966.06,541505.69,0,0,0,3153.1375 +4578,5582,9939,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.3565841,5.3329344,0,0,-996.02368,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.6840304,0,1,1,0,0,5.3914824,53.22,52.37,-9,-9,8.333333333333334,1,1,0,0,4,13,2,0,786,-97272.859,0,0,0,0,0,561.28577 +4579,5583,9940,9941,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,0,0,38,-3,19.039885,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0741196,0,48.06,45.53,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,313.5,1951612.8,1835624.4,134554.44,33074.438,0,0,4363.1885 +4579,5583,9941,9940,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,9.0277014,8.7248249,11,3,17.449713,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2525997,9.208189,57.16,56.15,48.06,45.53,8.333333333333334,1,1,0,0,11,10,5,1,313.5,1951612.8,1835624.4,134554.44,33074.438,0,0,4363.1885 +4580,5584,9942,-9,9944,9946,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.6178,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9943,-9,9944,9946,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.2849,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9944,9946,-9,-9,1,0,22,1,3,0,3,3,-9,0,3,0,0,0,1,-1,0,-9,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,.22972405,0,1,1,0,0,0,22.88,66.41,41.19,57.08,5,1,1,1,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9945,-9,9944,9946,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.8682,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4580,5584,9946,9944,-9,-9,1,1,23,1,3,0,2,2,-9,0,3,0,0,0,1,1,0,-9,1,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.19,57.08,22.88,66.41,8.333333333333334,1,1,1,0,2,7,1,0,909,-1044.2976,0,0,0,0,0,1139.0552 +4581,5585,9947,9948,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.2143488,8.3726034,0,1,7,19.733507,0,-9,-9,2021,10,0,40,40,1,0,0,11.351384,11.351384,.05,.05,.05,0,0,0,0,0,0,0,0,7.5582194,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,4,4,5,0,243,91430.352,114932.22,0,0,0,0,3761.2036 +4581,5585,9948,9947,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2271833,8.1672649,0,1,-7,-32.031494,-9,-9,-9,2021,9,0,40,0,1,0,0,9.0309334,9.0309334,0,0,.05,0,0,0,0,0,0,0,0,3.0166724,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,0,243,91430.352,114932.22,0,0,0,0,3761.2036 +4582,5586,9949,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.9858408,8.2566509,0,0,0,-952.29706,0,-9,-9,2021,10,0,48,0,1,0,0,5.3117681,5.3117681,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,42.63,35.75,-9,-9,5,1,1,0,0,3,1,3,0,1187,390414.31,127854.91,137156.88,0,0,0,1598.9832 +4583,5587,9950,9951,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,11,1,-76.27137,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.411448,0,54.79,55.86,58.3,52.91,10,1,1,0,0,0,6,2,1,1944.5,361147.5,294520.38,186103.91,0,0,0,1816.4683 +4583,5587,9951,9950,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.6266088,6.6063404,11,-1,-89.430733,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2029123,6.5307746,58.3,52.91,54.79,55.86,8.333333333333334,1,1,0,0,12,6,2,1,1944.5,361147.5,294520.38,186103.91,0,0,0,1816.4683 +4584,5588,9952,9953,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.1472559,8.2610512,44,2,69.485268,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8659601,8.0816383,53.7,44.99,57.73,54.53,8.333333333333334,1,1,0,0,9,10,3,1,977,1772579.8,404242,459758.38,0,0,0,3694.7737 +4584,5588,9953,9952,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,4.9198561,5.393219,44,-2,85.391258,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.729243,4.5739403,57.73,54.53,53.7,44.99,8.333333333333334,1,1,0,0,0,10,3,1,977,1772579.8,404242,459758.38,0,0,0,3694.7737 +4585,5589,9954,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1011.3813,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,1,1,0,1,0,12,1,0,198,342899.53,-88969.195,289540.91,0,0,0,3402.604 +4585,5590,9955,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,3,0,0,0,0,0,-962.07758,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46,50,-9,-9,7,1,1,0,1,0,12,1,0,529,-287.90366,0,0,0,0,0,1203.4158 +4586,5591,9956,-9,-9,-9,1,0,99,0,0,0,3,3,-9,0,1,0,0,0,0,0,-997.58203,0,3,3,2021,27,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,29.61,21.77,-9,-9,5,1,1,0,0,0,5,1,0,911,126474.1,0,0,0,0,0,385.67627 +4587,5592,9957,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.2316751,7.8866262,0,0,0,-1091.1433,0,-9,2,2021,11,0,16,-9,1,0,0,30.174206,30.174206,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.88,44.63,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,1052,227291.27,238680.63,30009.65,19885.834,0,0,1424.6925 +4588,5593,9958,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.7506161,9.7997503,0,0,0,-1139.3533,0,2,1,2021,9,0,60,40,1,0,0,40.417595,40.417595,.05,.05,0,0,0,0,0,0,0,0,0,9.8976202,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,10,9,5,0,447,268572.09,174851.72,0,0,0,0,12454.837 +4589,5594,9959,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.0849,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.3402147,0,0,1,1,0,0,0,60.05,42.65,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,445,302389,0,218096.36,0,0,0,817.97955 +4590,5595,9960,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,0,0,0,0,0,-933.63519,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,5,1,0,957,466468.09,-38482.023,190399.47,0,0,0,271.94171 +4591,5596,9961,9962,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5263386,7.8214178,45,3,-124.63549,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4111304,7.671277,41.17,59.31,58.07,35.76,10,1,1,0,0,8,12,4,1,801,1520351.3,1168788.3,199806.11,0,0,0,2584.6711 +4591,5596,9962,9961,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.7157059,7.986588,7.1604891,45,-3,-43.106323,0,3,3,2021,7,0,25,36,1,0,0,7.4380288,7.4380288,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7797189,58.07,35.76,41.17,59.31,5,1,1,0,0,12,12,4,1,801,1520351.3,1168788.3,199806.11,0,0,0,2584.6711 +4592,5597,9963,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.873827,8.7393475,0,0,0,-920.1922,0,2,2,2021,7,0,49,44,1,0,0,15.369671,15.369671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.27,45.68,-9,-9,5,1,1,0,0,9,5,5,0,341,191522.97,-75817.438,117499.3,35708.078,0,0,1812.2588 +4593,5598,9964,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1058.8911,0,2,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.21,37.05,-9,-9,3.333333333333333,1,1,1,0,2,6,1,0,926,0,0,0,0,0,0,-39.601585 +4593,5599,9965,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.9313755,7.6194563,0,0,0,-1090.4824,0,-9,-9,2021,12,0,40,45,1,0,0,8.6838293,8.6838293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.14,54.83,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,566,114601.35,95942.859,0,0,0,0,1375.0061 +4594,5600,9966,9967,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,6.8861814,7.1555238,11,-1,45.641541,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2249599,6.8811722,66.37,38.36,63.2,27.39,10,1,1,0,0,0,12,2,1,2693,685025.5,78973.203,326867.06,0,0,0,1943.6367 +4594,5600,9967,9966,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,11,1,112.09028,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,.95281208,0,0,1,1,0,0,0,63.2,27.39,66.37,38.36,8.333333333333334,1,1,0,0,0,12,2,1,2693,685025.5,78973.203,326867.06,0,0,0,1943.6367 +4595,5601,9968,-9,9970,9971,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-953.44604,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4595,5601,9969,-9,9970,9971,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.1879,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4595,5601,9970,9971,-9,-9,1,0,42,1,2,0,2,2,-9,0,3,8.4861593,8.2184296,0,7,3,151.53494,0,2,2,2021,14,3,35,28,1,3,0,14.996296,14.996296,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,49.52,56.95,3.333333333333333,1,1,0,1,10,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4595,5601,9971,9970,-9,-9,1,1,39,1,2,0,1,1,-9,0,3,0,0,0,7,-3,-15.16326,0,2,-9,2021,19,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,44.7,53.68,6.666666666666667,1,1,0,1,3,1,3,1,930,198316.83,34033.219,224230.66,117946.2,4555.4854,0,1741.4146 +4596,5602,9972,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.0166,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,6,1,0,127,-125593.69,0,0,0,0,0,1314.9441 +4597,5603,9973,9974,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.1390944,7.8817568,0,19,4,-35.951397,0,-9,-9,2021,11,3,60,40,1,3,0,9.1679726,9.1679726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32,54.53,50.53,50.08,6.666666666666667,2,3,0,0,7,8,3,0,886.5,489669.63,310208.03,344275.69,154536.58,0,0,1748.6322 +4597,5603,9974,9973,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,19,-4,-139.46027,0,-9,-9,2021,17,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.53,50.08,32,54.53,10,2,3,0,0,0,8,3,0,886.5,489669.63,310208.03,344275.69,154536.58,0,0,1748.6322 +4597,5604,9975,-9,9974,9973,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-878.49133,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,3,8,1,0,280,152992.42,0,0,0,0,0,-35.038651 +4597,5605,9976,-9,9974,9973,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-887.32202,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,1,8,1,0,347,-116894.67,0,0,0,0,0,232.87701 +4598,5606,9977,9979,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,7.9656911,7.9497161,0,7,4,65.839417,0,2,2,2021,11,0,37,37,1,0,0,11.529622,11.529622,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,34.72,44.91,6.666666666666667,1,1,0,0,6,9,3,0,580,849694.56,457601.03,492783.88,24597.752,-880.86975,0,1313.8628 +4598,5606,9978,-9,9979,9977,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.43146,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,580,849694.56,457601.03,492783.88,24597.752,-880.86975,0,1313.8628 +4598,5606,9979,9977,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,0,0,0,7,-4,105.54045,0,2,3,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.72,44.91,50.03,52.62,1.666666666666667,1,1,0,1,0,9,3,0,580,849694.56,457601.03,492783.88,24597.752,-880.86975,0,1313.8628 +4598,5607,9980,-9,9979,9977,1,1,18,0,1,0,2,2,-9,0,3,6.8376145,6.5965929,0,0,0,-950.96069,0,2,1,2021,4,0,20,0,1,0,1,4.9174643,4.9174643,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,527,-185943.91,74460.563,0,0,0,0,167.64799 +4599,5608,9981,9982,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5636787,8.6109304,0,27,6,-2.2442958,0,3,3,2021,8,0,54,44,1,0,0,11.512252,11.512252,.05,.05,0,0,0,0,0,0,0,0,0,4.0224514,0,57.33,53.46,45.91,59.89,8.333333333333334,1,1,0,0,12,9,5,1,1119,2183331,1345988.1,613459.13,0,0,10719.643,5818.7949 +4599,5608,9982,9981,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,9.2722206,9.4555788,0,27,-6,-2.2803817,0,2,3,2021,10,0,41,43,1,0,0,32.885788,32.885788,.05,.05,0,0,0,0,0,0,0,0,0,4.131187,0,45.91,59.89,57.33,53.46,6.666666666666667,1,1,0,0,12,9,5,1,1119,2183331,1345988.1,613459.13,0,0,10719.643,5818.7949 +4600,5609,9983,9984,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,7.8906527,7.958838,1,3,-42.965691,-9,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.4110403,7.9723892,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,13,13,4,1,565,215042.67,81893.961,148073.97,38350.746,0,-259.23111,4338.6069 +4600,5609,9984,9983,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.1811676,7.8300176,0,1,-3,-74.458405,-9,3,2,2021,8,0,40,0,1,0,0,11.058833,11.058833,0,0,0,0,0,0,0,0,1,1,0,1.4602507,0,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,13,13,4,1,565,215042.67,81893.961,148073.97,38350.746,0,-259.23111,4338.6069 +4601,5610,9985,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.5251532,8.6830912,0,0,0,-1010.2629,0,2,2,2021,16,5,40,50,1,5,0,14.293468,14.293468,.05,.05,0,0,0,0,0,0,0,0,0,6.5773635,0,34.64,56.28,-9,-9,8.333333333333334,1,1,0,0,13,10,5,1,1167,46543.512,-82889.922,0,0,15845.027,6430.3188,2915.0442 +4602,5611,9986,9987,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,8.1458769,8.0723925,2,7,106.71636,0,2,2,2021,13,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.9864435,40.5,23.48,26.95,37.97,6.666666666666667,1,1,0,0,6,2,3,1,671.5,707192.5,315761.75,166247.66,0,0,0,1689.0681 +4602,5611,9987,9986,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,2,-7,104.34922,0,3,2,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,26.95,37.97,40.5,23.48,3.333333333333333,1,1,1,0,3,2,3,1,671.5,707192.5,315761.75,166247.66,0,0,0,1689.0681 +4603,5612,9988,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.3307333,8.5689507,0,0,0,-955.68921,0,3,2,2021,7,0,44,43,1,0,0,9.8259335,9.8259335,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,9,5,4,1,1013,347054.44,242365.08,218251.72,67188.664,0,0,1650.4276 +4604,5613,9989,9991,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.4862576,8.4178934,0,7,4,-38.386475,0,2,3,2021,6,0,40,40,1,0,0,14.039152,14.039152,.05,.05,0,0,0,0,0,0,1,1,0,5.9093757,0,61.12,51.57,55.53,51.55,8.333333333333334,1,1,0,0,7,5,4,1,549.33331,813338.75,611716.13,232721.38,35173.598,0,0,2512.8994 +4604,5613,9990,-9,9991,9989,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.11865,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,549.33331,813338.75,611716.13,232721.38,35173.598,0,0,2512.8994 +4604,5613,9991,9989,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.4200544,7.2004328,0,7,-4,131.36607,0,2,2,2021,8,0,32,27,1,0,0,4.8591185,4.8591185,.05,.05,0,0,0,0,0,7,1,1,0,0,0,55.53,51.55,61.12,51.57,6.666666666666667,1,1,0,0,4,5,4,1,549.33331,813338.75,611716.13,232721.38,35173.598,0,0,2512.8994 +4605,5614,9992,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.0509624,7.2704763,0,0,-1089.376,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,5.3798394,6.519206,41.39304,0,1,1,0,4.3822722,7.43782,66.67,16.76,-9,-9,6.666666666666667,1,1,0,0,0,4,3,0,497,430482.59,244228.63,0,0,0,25864.34,2624.1157 +4606,5615,9993,9994,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.6061783,7.8512306,12,7,67.432831,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.8428702,7.8264761,51.25,48.45,55.24,37.92,8.333333333333334,1,1,0,0,5,11,3,1,1417.5,347474.5,189633.66,84185.438,0,0,0,1747.4807 +4606,5615,9994,9993,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,5.1815629,5.4057302,12,-7,-100.85669,0,2,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.18725106,5.2632074,55.24,37.92,51.25,48.45,6.666666666666667,1,1,0,0,4,11,3,1,1417.5,347474.5,189633.66,84185.438,0,0,0,1747.4807 +4607,5616,9995,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5795193,8.8182764,0,0,0,-1167.7421,0,2,2,2021,6,0,37,38,1,0,0,21.257404,21.257404,.05,.05,0,0,0,0,0,0,1,1,0,4.3814988,0,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,500,57764.355,26395.363,0,0,0,1119.3015,2633.4622 +4608,5617,9996,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,8.0465279,8.3108368,0,0,0,-1115.7927,0,2,2,2021,9,0,37,37,1,0,0,10.535243,10.535243,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,163,10090.467,-47979.102,0,0,6095.8872,0,1959.6284 +4609,5618,9997,9998,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.39117,7.6601038,0,27,-6,-40.884041,0,2,2,2021,15,4,32,32,1,4,0,6.436316,6.436316,.05,.05,0,0,0,0,0,0,1,1,0,2.3745253,0,51.77,58.57,54,53,10,1,1,0,0,10,9,5,1,634.5,1807716,859455.44,829125.13,145552.53,0,0,6447.8311 +4609,5618,9998,9997,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.9085217,9.5477934,0,27,6,33.430813,0,2,1,2021,8,0,50,55,1,0,0,38.153912,38.153912,.05,.05,0,0,0,0,0,0,1,1,0,4.4626708,0,54,53,51.77,58.57,8,1,1,0,0,10,9,5,1,634.5,1807716,859455.44,829125.13,145552.53,0,0,6447.8311 +4609,5619,9999,-9,9997,9998,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1043.3157,1,1,1,2021,11,0,0,14,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,2,9,1,1,2513,141139.42,0,0,0,0,0,452.16342 +4609,5620,10000,-9,-9,-9,1,0,26,0,0,1,1,0,0,0,4,0,4.5668273,4.3454018,0,0,-1027.8612,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6342854,0,47,58,-9,-9,7,3,4,0,0,3,9,2,1,886,63813.391,163701.11,0,0,0,0,913.21509 +4610,5621,10001,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,0,0,0,0,-937.98779,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8577075,0,60.87,42.1,-9,-9,8.333333333333334,1,1,0,0,12,13,1,1,1622,-69909.484,0,0,0,0,1541.4454,330.39984 +4611,5622,10002,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.108819,8.4376001,0,0,0,-899.94684,0,-9,-9,2021,11,1,48,43,1,1,0,7.2079625,7.2079625,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.04,56.46,-9,-9,6.666666666666667,1,1,0,0,4,9,4,0,303,17558.725,-38506.27,0,0,0,0,694.66742 +4612,5623,10003,10004,-9,-9,1,1,31,0,0,0,1,1,-9,0,2,9.1769438,9.3413811,0,2,3,-39.487007,0,3,3,2021,4,0,48,45,1,0,0,23.023531,23.023531,.05,.05,0,0,0,0,0,0,0,0,0,5.4834709,0,50.35,50.22,46,57,6.666666666666667,1,1,0,0,10,7,5,0,1162.5,64758.922,-2409.3306,350432.72,291852.63,3908.6482,190.01633,4965.0771 +4612,5623,10004,10003,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6258383,8.433075,0,2,-3,-165.45821,-9,-9,-9,2021,11,0,40,0,1,2,0,13.250015,13.250015,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46,57,50.35,50.22,7,1,1,0,0,1,7,5,0,1162.5,64758.922,-2409.3306,350432.72,291852.63,3908.6482,190.01633,4965.0771 +4613,5624,10005,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.9751563,7.9468188,0,0,-905.37872,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8599434,7.4941149,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,423,441085,230478.73,77203.461,0,0,0,2783.2461 +4614,5625,10006,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,9.3733883,9.2020407,0,0,0,-853.62097,0,1,1,2021,9,1,54,41,1,1,0,25.770672,25.770672,.05,.05,0,0,0,0,0,0,0,0,0,8.2806511,0,46.06,60.24,-9,-9,8.333333333333334,4,2,0,0,9,8,5,1,1116,586701.56,-37813.867,491049.78,0,0,0,4637.4341 +4615,5626,10007,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.6951146,8.8278494,8.4206409,0,0,-1020.8298,0,3,3,2021,8,0,18,15,1,0,0,14.416101,14.416101,0,0,0,0,0,0,0,0,1,0,1,3.0808363,8.8352394,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,13,13,5,1,318,2093516,1358021.6,164533.48,0,0,0,4786.54 +4615,5627,10008,-9,-9,10007,1,1,35,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1029.2837,0,1,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.64,49.14,-9,-9,5,1,1,1,0,3,13,2,1,214,-145360.41,0,0,0,0,0,977.54602 +4616,5628,10009,10010,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.7863789,8.1660957,6.4627256,6,2,97.211227,0,3,3,2021,7,0,19,19,1,0,0,16.986135,16.986135,.05,.05,0,0,0,0,0,0,0,0,0,8.0122652,0,56.94,49.53,59.53,56.44,8.333333333333334,1,1,0,0,8,10,5,1,583.5,17659.559,-32479.539,187686.84,103443.14,0,0,3888.2563 +4616,5628,10010,10009,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1395702,8.3859606,5.78269,6,-2,12.168006,0,3,-9,2021,6,0,42,40,1,0,0,10.815817,10.815817,.05,.05,0,0,0,0,0,0,0,0,0,7.3070197,0,59.53,56.44,56.94,49.53,8.333333333333334,1,1,0,0,8,10,5,1,583.5,17659.559,-32479.539,187686.84,103443.14,0,0,3888.2563 +4616,5629,10011,-9,10009,-9,1,1,22,0,0,0,1,1,-9,0,5,6.4823847,6.6041899,0,0,0,-921.16675,0,1,2,2021,7,0,8,8,1,0,1,11.762182,11.762182,0,0,0,0,0,0,0,0,0,0,0,9.9638109,0,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,618,191543.91,0,0,0,0,0,13013.026 +4617,5630,10012,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,3,7.4696202,7.4817829,0,0,0,-966.96222,-9,-9,-9,2021,29,11,12,0,1,11,0,16.945274,16.945274,0,0,0,0,0,0,0,0,0,0,0,0,0,17.51,65.2,-9,-9,3.333333333333333,1,1,0,1,4,12,3,0,332,40090.402,0,0,0,0,0,1465.7399 +4618,5631,10013,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,8.1097469,8.0867147,0,0,0,-1113.9731,0,2,2,2021,11,3,35,35,1,3,0,10.249423,10.249423,0,0,0,0,0,0,0,2,0,0,0,0,0,28.65,54.35,-9,-9,6.666666666666667,1,1,0,0,10,8,4,0,825,770167.19,11772.144,522777.63,0,0,0,1281.3363 +4619,5632,10014,10015,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,23,-1,45.612843,0,3,3,2021,10,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0791759,0,48.76,53.24,51.14,60.45,6.666666666666667,2,3,1,0,14,9,5,1,2342.5,11980.133,35369.621,0,0,0,750.49817,8622.4277 +4619,5632,10015,10014,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,9.5893621,9.4256582,0,22,1,30.674528,0,2,1,2021,11,1,45,50,1,1,0,33.604336,33.604336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.76,53.24,10,1,1,0,0,11,9,5,1,2342.5,11980.133,35369.621,0,0,0,750.49817,8622.4277 +4619,5633,10016,-9,10014,10015,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-885.73975,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6607127,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,0,9,1,1,565,-82908.414,0,0,0,0,0,402.44363 +4620,5634,10017,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3489094,8.2516298,0,0,0,-885.34399,0,3,2,2021,11,1,38,39,1,1,0,12.309821,12.309821,0,0,0,0,0,0,0,0,0,0,0,6.4764543,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,14,5,4,1,560,297036.84,229179.42,121455.88,30029.547,541.55682,0,2365.3652 +4621,5635,10018,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,6.481915,6.5293407,0,0,-1016.4197,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.5938015,60.29,52.11,-9,-9,10,1,1,0,0,0,12,2,0,613,126457.91,129596.23,0,0,0,0,1382.8445 +4622,5636,10019,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6600256,8.4977932,0,0,0,-1033.6431,0,-9,-9,2021,8,0,56,60,1,0,0,14.167791,14.167791,0,0,0,0,0,0,0,0,1,1,0,7.1633139,0,59.46,46.99,-9,-9,10,1,1,0,0,10,12,5,1,1043,59571.969,0,184621.31,45383.012,0,995.51599,3121.1218 +4623,5637,10020,10021,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.4267745,6.578866,35,7,28.811512,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9569902,6.4849448,54.27,42.38,54.2,57.49,8.333333333333334,1,1,0,0,5,6,3,1,623,536406.88,289851.88,263635.13,0,0,0,2004.275 +4623,5637,10021,10020,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.4949021,7.3368888,36,-7,76.417763,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5392635,7.4100804,54.2,57.49,54.27,42.38,8.333333333333334,1,1,0,0,8,6,3,1,623,536406.88,289851.88,263635.13,0,0,0,2004.275 +4624,5638,10022,10023,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.9299054,7.8547335,12,-5,32.860874,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.83039,54.79,55.86,54.57,49.24,8.333333333333334,1,1,0,0,4,13,4,1,274.5,1377940.9,806178.69,299500.88,0,22248.027,0,5457.3291 +4624,5638,10023,10022,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.2718754,8.3245497,12,5,6.1412663,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2800241,8.412056,54.57,49.24,54.79,55.86,8.333333333333334,1,1,0,0,0,13,4,1,274.5,1377940.9,806178.69,299500.88,0,22248.027,0,5457.3291 +4624,5639,10024,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-897.03772,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8401103,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,2,13,1,1,687,17393.916,0,0,0,0,0,568.91351 +4625,5640,10025,-9,10030,10026,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-905.46503,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10026,10030,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.414115,8.3850031,0,19,2,72.052719,0,2,3,2021,8,0,40,40,1,0,0,13.024635,13.024635,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.87,50.46,40.95,24.93,6.666666666666667,1,1,0,0,10,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10027,-9,10030,10026,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.23511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10028,-9,10030,10026,1,0,17,0,3,0,2,2,1,0,3,0,0,0,0,0,-970.95709,-9,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.54,43.28,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10029,-9,10030,10026,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1145.9279,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10030,10026,-9,-9,1,0,39,0,3,0,2,2,-9,0,1,0,0,0,19,-2,-18.493271,0,2,2,2021,19,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.95,24.93,49.87,50.46,5,1,1,0,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4625,5640,10031,-9,10030,10026,1,1,16,0,3,0,2,2,-9,0,4,0,0,0,0,0,-992.78876,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,0,0,0,10,3,1,1057.1428,155300.81,10094.119,323177.97,206957.33,7483.4346,4547.4497,2540.7214 +4626,5641,10032,10034,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.2600908,8.9588175,0,11,3,73.796646,0,2,3,2021,10,0,70,70,1,0,0,14.998245,14.998245,.05,.05,0,0,0,0,0,0,1,1,0,2.0518937,0,52.12,50.33,52.82,53.97,5,1,1,0,0,13,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4626,5641,10033,-9,10034,10032,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.75183,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4626,5641,10034,10032,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,0,0,0,14,-3,-78.004822,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.972287,0,52.82,53.97,52.12,50.33,8.333333333333334,1,1,0,0,9,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4626,5641,10035,-9,10034,10032,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.8757,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,520.5,742589.88,554759.25,255083.3,72611.211,8719.9883,229.32164,3635.3755 +4627,5642,10036,10037,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.9347849,9.0924339,0,8,-1,-55.315342,0,-9,-9,2021,11,2,48,42,1,2,0,20.994246,20.994246,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47.07,53.97,37.82,39.57,6.666666666666667,1,1,0,0,12,2,4,1,265,555633.38,431633.28,233443.88,2833.499,0,4150.3232,2839.3374 +4627,5642,10037,10036,-9,10038,1,0,43,0,1,0,2,2,-9,1,2,0,0,0,17,1,16.55308,0,2,3,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,37.82,39.57,47.07,53.97,6.666666666666667,1,1,0,0,2,2,4,1,265,555633.38,431633.28,233443.88,2833.499,0,4150.3232,2839.3374 +4627,5643,10038,-9,-9,-9,1,1,68,0,1,0,1,1,-9,0,1,0,8.0729504,8.1781578,0,0,-976.13605,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,60.485733,0,0,1,1,0,.97326785,8.1128263,35.17,15.39,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,841,834641.5,643026.88,0,0,0,0,3394.5103 +4628,5644,10039,-9,-9,-9,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1018.0725,-9,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,1,0,3,5,2,0,132,45182.023,0,0,0,0,0,0 +4629,5645,10040,10042,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.6591659,7.6363921,0,23,-3,1.7364432,0,3,3,2021,6,0,21,22,1,0,0,11.325999,11.325999,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,38.05,49.97,10,1,1,0,0,9,13,5,1,633.33331,126220,90945.102,142105.94,12429.047,0,0,3803.4639 +4629,5645,10041,-9,10040,10042,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1004.6592,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1445055,0,57.16,56.15,-9,-9,10,1,1,0,0,0,13,5,1,633.33331,126220,90945.102,142105.94,12429.047,0,0,3803.4639 +4629,5645,10042,10040,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.9888077,9.1915159,0,9,3,-100.01743,0,-9,-9,2021,13,1,47,40,1,1,0,19.312986,19.312986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.05,49.97,57.16,56.15,3.333333333333333,1,1,0,0,7,13,5,1,633.33331,126220,90945.102,142105.94,12429.047,0,0,3803.4639 +4629,5646,10043,-9,10040,10042,1,1,19,0,0,0,2,2,-9,0,3,0,5.5630903,5.9566031,0,0,-948.57916,1,2,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6602559,0,44.25,56.64,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1740,23538.309,0,0,0,0,0,14.094445 +4630,5647,10044,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.0623465,9.2194471,0,0,0,-1000.9818,0,3,3,2021,15,4,37,37,1,4,0,33.587059,33.587059,.05,.05,0,0,0,0,0,2,0,0,0,7.4650421,0,42.62,54.51,-9,-9,3.333333333333333,1,1,0,0,12,2,5,0,537,1378780,505437.69,267043.66,0,0,0,4004.3127 +4631,5648,10045,10046,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.02707,7.974772,0,13,2,-21.085676,0,-9,-9,2021,9,1,37,44,1,1,0,8.6097269,8.6097269,0,0,0,0,0,0,0,0,0,0,0,0,0,65.63,39.96,49,50,8.333333333333334,1,1,0,0,14,4,4,1,986,419265.5,293927.09,150205.13,5281.2749,8569.5195,0,3023.0283 +4631,5648,10046,10045,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.2379198,8.4067211,0,13,-2,61.656567,0,-9,2,2021,12,0,40,48,1,0,0,11.023559,11.023559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,50,65.63,39.96,5,1,1,0,0,12,4,4,1,986,419265.5,293927.09,150205.13,5281.2749,8569.5195,0,3023.0283 +4632,5649,10047,10048,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,7.6007242,8.4180908,7.7409115,19,14,23.331919,0,2,2,2021,12,0,28,34,1,0,0,9.3170328,9.3170328,0,0,.05,0,0,0,0,0,1,1,0,5.3596392,7.9699607,40.07,41.34,45.28,52.56,5,1,1,0,0,7,8,3,1,636.66669,841075.94,342921.47,362808.25,0,0,0,2679.634 +4632,5649,10048,10047,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,2.9156113,2.9000738,0,19,-14,40.210743,0,2,2,2021,11,1,28,16,1,1,0,.063416779,.063416779,0,0,0,0,0,0,0,0,1,1,0,1.860132,0,45.28,52.56,40.07,41.34,10,1,1,0,0,6,8,3,1,636.66669,841075.94,342921.47,362808.25,0,0,0,2679.634 +4632,5649,10049,-9,10048,10047,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1055.7319,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,8,3,1,636.66669,841075.94,342921.47,362808.25,0,0,0,2679.634 +4633,5650,10050,10051,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,9,-6,139.99785,0,2,2,2021,24,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,0,40.06,41.03,39.12,60.58,3.333333333333333,1,1,0,0,4,10,4,1,203.66667,90425.016,-47317.891,245635.84,83839.422,69410.367,0,2317.8254 +4633,5650,10051,10050,10053,-9,1,0,55,0,1,0,1,1,-9,0,4,8.5506573,8.9928617,0,9,6,-7.3829527,0,2,2,2021,14,3,45,45,1,3,0,17.471752,17.471752,0,0,0,0,0,0,0,27,1,1,0,0,0,39.12,60.58,40.06,41.03,3.333333333333333,1,1,0,0,10,10,4,1,203.66667,90425.016,-47317.891,245635.84,83839.422,69410.367,0,2317.8254 +4633,5650,10052,-9,10051,10050,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-978.45892,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,203.66667,90425.016,-47317.891,245635.84,83839.422,69410.367,0,2317.8254 +4633,5651,10053,-9,-9,-9,1,0,90,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1003.311,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.7754788,15.91386,66.649918,0,1,1,0,6.24507,0,53,44,-9,-9,8,1,1,0,0,0,10,1,1,689,-78182.367,3704.7588,0,0,0,1583.337,664.56567 +4634,5652,10054,-9,10055,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.0156,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,1464.5,126971.4,-38056.617,153036.09,56560.188,0,0,1624.8011 +4634,5652,10055,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.0067291,7.9287238,0,0,0,-942.7467,0,3,-9,2021,6,0,32,30,1,0,0,9.4063206,9.4063206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,1464.5,126971.4,-38056.617,153036.09,56560.188,0,0,1624.8011 +4635,5653,10056,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,2,7.6622453,7.8007946,6.0448728,0,0,-990.27814,0,2,2,2021,14,3,15,22,1,3,0,14.226207,14.226207,.05,.05,0,0,0,0,0,0,1,1,0,6.0141144,0,43.75,39.82,-9,-9,6.666666666666667,1,1,0,0,13,12,3,1,456.66666,278254.28,32367.168,371884.94,76739.914,0,0,1911.1062 +4635,5653,10057,-9,10056,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.9893,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,3,1,456.66666,278254.28,32367.168,371884.94,76739.914,0,0,1911.1062 +4635,5653,10058,-9,10056,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.995,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,456.66666,278254.28,32367.168,371884.94,76739.914,0,0,1911.1062 +4636,5654,10059,10060,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.0149784,8.9508266,0,4,2,21.809933,0,2,2,2021,5,0,44,41,1,0,0,22.750292,22.750292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,6,5,1,1119.3334,269360.81,139133.19,271616.22,205170.44,1333.8799,0,3391.0476 +4636,5654,10060,10059,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,7.8662724,8.0616808,0,4,-2,62.953972,0,-9,-9,2021,8,0,23,23,1,0,0,14.844957,14.844957,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,7,6,5,1,1119.3334,269360.81,139133.19,271616.22,205170.44,1333.8799,0,3391.0476 +4636,5654,10061,-9,10060,10059,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.5961,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1119.3334,269360.81,139133.19,271616.22,205170.44,1333.8799,0,3391.0476 +4637,5655,10062,10063,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.4414301,7.790597,10,11,200.12186,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6221261,7.2930994,48.6,31.69,46.22,56.92,8.333333333333334,1,1,0,0,0,12,3,1,1161.5,668476.88,158778.63,350618.81,0,0,0,2677.0288 +4637,5655,10063,10062,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.8171225,7.1891069,10,-11,-6.6362987,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8347769,7.0351243,46.22,56.92,48.6,31.69,8.333333333333334,1,1,0,0,3,12,3,1,1161.5,668476.88,158778.63,350618.81,0,0,0,2677.0288 +4638,5656,10064,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.543076,7.6200423,0,0,0,-977.08575,0,-9,2,2021,15,3,18,17,1,3,0,14.947835,14.947835,0,0,0,0,0,0,0,0,0,0,0,5.1261582,0,35.32,64.83,-9,-9,3.333333333333333,1,1,0,0,13,2,3,1,302,-22317.816,-46316.711,0,0,0,0,1096.7452 +4639,5657,10065,-9,-9,-9,1,1,24,0,0,0,2,2,1,1,2,0,0,0,0,0,-1055.3872,-9,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,4.26,66.34999999999999,-9,-9,1.666666666666667,1,1,0,1,1,12,1,0,225,-6532.3467,0,0,0,0,0,866.98859 +4640,5658,10066,-9,10067,10068,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-923.04175,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4640,5658,10067,10068,-9,-9,1,0,36,0,2,0,2,2,-9,1,3,0,0,0,4,0,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,31.27,23.46,68.89,35.82,3.333333333333333,1,1,0,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4640,5658,10068,10067,-9,-9,1,1,45,0,2,0,3,3,-9,1,3,0,0,0,4,9,0,0,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,68.89,35.82,31.27,23.46,10,1,1,1,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4640,5658,10069,-9,10067,10068,1,0,16,0,2,0,2,2,-9,0,2,0,5.8473759,5.4008455,0,0,-1101.7926,-9,2,3,2021,21,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.7631135,0,22.48,41.35,-9,-9,0,1,1,1,0,0,2,1,0,708,138690.55,152983.66,59038.301,24324.041,0,0,2260.6113 +4641,5659,10070,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.1175351,7.0575624,0,0,-960.27618,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2461228,7.2189331,41.06,48.63,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,900,294155.22,147713.78,0,0,0,0,1103.0109 +4642,5660,10071,10072,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.2157092,7.7077637,52,0,-48.258224,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4775281,7.4192019,47.38,57.75,46.73,54.33,8.333333333333334,1,1,0,0,0,11,3,1,785.5,1430414.8,760715.38,445789.31,0,0,0,3860.1621 +4642,5660,10072,10071,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,8.0539627,7.8701,52,0,-59.798256,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5799232,7.8030534,46.73,54.33,47.38,57.75,8.333333333333334,1,1,0,0,0,11,3,1,785.5,1430414.8,760715.38,445789.31,0,0,0,3860.1621 +4643,5661,10073,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.8278108,6.572062,0,0,-1089.8097,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1686301,6.6633115,48.74,50.46,-9,-9,1.666666666666667,1,1,0,0,9,9,2,1,917,721602.06,121229.11,467480.88,0,2930.2524,0,2089.7761 +4644,5662,10074,-9,10077,10075,1,0,14,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.60132,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5662,10075,10077,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,9.1649094,8.9126472,0,2,0,148.71828,0,-9,-9,2021,8,0,50,55,1,0,0,19.296173,19.296173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,57.9,51.84,8.333333333333334,1,1,0,0,2,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5662,10076,-9,10077,10075,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.1558,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5662,10077,10075,-9,-9,1,0,37,1,2,0,2,2,-9,0,3,7.8892941,7.6223755,0,2,0,14.670504,0,2,2,2021,7,0,18,18,1,0,0,13.039959,13.039959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,58.3,52.91,8.333333333333334,1,1,0,0,9,9,5,1,342.25,-36291.164,11469.775,0,0,5359.5054,3217.3774,4339.6045 +4644,5663,10078,-9,10077,10075,1,0,22,1,2,0,2,2,-9,0,2,7.3454218,7.0918369,0,0,0,-1006.4152,-9,3,3,2021,10,0,30,0,1,0,0,6.1570354,6.1570354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.99,46.53,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,781,49820.664,-137951.02,0,0,0,0,947.30621 +4645,5664,10079,10081,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.3866701,8.0251226,0,7,-1,66.243942,0,-9,-9,2021,7,0,28,23,1,0,0,20.36422,20.36422,.05,.05,0,0,0,0,0,2,0,0,0,8.8824453,0,54.1,59.11,51.55,53.44,10,1,1,0,0,6,10,5,1,1783.3334,5355706.5,3647409,147917.91,0,2745.0098,0,11068.903 +4645,5664,10080,-9,10079,10081,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-932.30084,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.94875079,0,46,59,-9,-9,7,1,1,0,0,0,10,5,1,1783.3334,5355706.5,3647409,147917.91,0,2745.0098,0,11068.903 +4645,5664,10081,10079,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.5554228,9.9335861,0,27,1,-98.991837,0,2,2,2021,13,3,60,65,1,3,0,34.813225,34.813225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.55,53.44,54.1,59.11,8.333333333333334,1,1,0,0,8,10,5,1,1783.3334,5355706.5,3647409,147917.91,0,2745.0098,0,11068.903 +4646,5665,10082,10083,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.1348186,5.7907562,10,-3,-55.530495,0,2,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9950514,6.1036367,57.91,43.45,58.15,52.91,8.333333333333334,1,1,0,0,1,6,2,1,1031.5,103870.19,116696.66,0,0,0,0,2133.3604 +4646,5665,10083,10082,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,10,3,50.292713,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8024807,0,58.15,52.91,57.91,43.45,8.333333333333334,1,1,0,0,5,6,2,1,1031.5,103870.19,116696.66,0,0,0,0,2133.3604 +4647,5666,10084,10085,-9,-9,1,0,41,1,3,0,1,1,-9,0,5,7.3911777,7.2667599,0,3,-2,-31.216213,0,2,2,2021,7,0,5,14,1,0,0,32.171772,32.171772,0,0,0,0,0,0,0,0,1,1,0,1.887521,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,6,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10085,10084,-9,-9,1,1,43,1,3,0,1,1,-9,0,4,6.9552722,6.8913159,0,3,2,-77.751411,0,2,3,2021,9,0,40,40,1,0,0,3.0378265,3.0378265,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,9,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10086,-9,10084,10085,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.1504,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10087,-9,10084,10085,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.812,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4647,5666,10088,-9,10084,10085,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.6432,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,1,627.20001,1281531.1,409253.16,949579.13,234098.66,0,0,1108.7557 +4648,5667,10089,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.4950657,6.731441,0,0,-1080.2095,0,1,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.31288,6.507112,51,46,-9,-9,7,1,1,0,0,2,9,2,1,302,241271.58,119971.99,122503.05,0,0,716.46777,703.34106 +4649,5668,10090,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.0625706,7.8525281,0,0,-1059.9883,0,1,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4425607,8.0496378,59.43,58.05,-9,-9,0,1,1,0,0,8,8,4,1,1072,1099860.9,439253.78,244442.28,0,0,0,2583.8647 +4650,5669,10091,10092,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,9.7147026,9.7939062,0,4,3,4.761785,0,2,2,2021,9,0,70,55,1,1,0,26.146173,26.146173,.05,.05,0,0,0,0,0,0,0,0,0,7.240489,0,53,55,39.58,57.61,8,1,1,0,0,1,11,5,1,359,1530849,602472.5,715690.38,0,0,0,11122.795 +4650,5669,10092,10091,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.0854177,8.0515137,0,4,-3,25.696358,0,1,1,2021,14,2,38,38,1,2,0,8.7861071,8.7861071,0,0,0,0,0,0,0,0,0,0,0,0,0,39.58,57.61,53,55,6.666666666666667,1,1,0,0,7,11,5,1,359,1530849,602472.5,715690.38,0,0,0,11122.795 +4650,5670,10093,-9,10092,10091,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-932.63953,-9,1,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.23,46.77,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,253,-27152.115,0,0,0,0,0,0 +4651,5671,10094,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,7.2193904,7.2707281,0,0,-803.50647,0,2,1,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,3.8160613,0,23.412996,0,1,1,0,4.4048219,7.5988731,26.4,28.64,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,504,570077.94,252391.98,189210.77,0,0,0,1883.9298 +4652,5672,10095,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-898.75317,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,5.5957503,0,0,1,1,0,1.9127507,0,43.77,31.37,-9,-9,10,1,1,0,0,0,9,1,0,1120,352068.03,0,199678.58,0,0,0,275.26437 +4653,5673,10096,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,0,0,-922.02386,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,53,-9,-9,8,2,3,1,1,0,5,1,1,330,247126.22,0,0,0,0,0,-6.2318048 +4654,5674,10097,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,0,6.3191266,6.0008979,0,0,-1023.0519,1,2,1,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2367349,0,25.64,46.88,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,2582.5,92589.703,0,0,0,6155.8066,0,134.07974 +4654,5674,10098,-9,10097,-9,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-997.91614,-9,2,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,6,2,1,2582.5,92589.703,0,0,0,6155.8066,0,134.07974 +4655,5675,10099,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.8172278,7.6680841,0,0,-887.31396,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2016871,8.0333147,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,104,608469.75,272961.94,300727,0,0,0,2116.5203 +4656,5676,10100,-9,10101,10102,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4252,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4656,5676,10101,10102,-9,-9,1,0,39,1,2,0,2,2,-9,0,5,7.538641,7.9057918,0,4,4,-12.827796,0,-9,-9,2021,4,0,27,21,1,0,0,7.7654266,7.7654266,.05,.05,0,0,0,0,0,0,0,0,0,1.9742202,0,51.73,58.82,39.33,58.88,6.666666666666667,1,1,0,0,8,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4656,5676,10102,10101,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,8.0353842,7.5821352,0,4,-4,-13.013972,0,2,2,2021,9,0,30,30,1,0,0,10.135015,10.135015,.05,.05,0,0,0,0,0,0,0,0,0,1.5367389,0,39.33,58.88,51.73,58.82,6.666666666666667,1,1,0,0,12,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4656,5676,10103,-9,10101,-9,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.03485,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1241.5,239353.16,165772.72,218974.34,162818.56,-55.19331,10443.223,2359.9167 +4657,5677,10104,10105,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.8802795,8.7480631,0,2,2,-50.875061,0,-9,-9,2021,11,0,55,50,1,0,0,13.258104,13.258104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,49.93,51.72,8.333333333333334,1,1,0,0,10,1,4,1,144,108251.99,89918.453,151095.14,93164.109,8623.0059,0,2660.2065 +4657,5677,10105,10104,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,0,0,0,2,-2,-135.01799,-9,-9,-9,2021,11,1,0,0,2,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.93,51.72,60.12,54.8,8.333333333333334,1,1,0,0,5,1,4,1,144,108251.99,89918.453,151095.14,93164.109,8623.0059,0,2660.2065 +4658,5678,10106,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1764803,8.2745733,0,0,0,-1030.2295,-9,-9,-9,2021,8,0,37,0,1,0,0,12.725274,12.725274,0,0,.05,0,0,0,0,0,0,0,0,8.1696978,0,57.1,41.16,-9,-9,8.333333333333334,1,1,0,0,10,5,4,0,806,1055019.6,586822.56,221449.84,0,11299.307,0,3269.5288 +4659,5679,10107,10110,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.8179479,8.1443481,0,6,5,-163.58423,0,2,2,2021,9,0,35,35,1,0,0,11.266809,11.266809,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,54.77,45.56,60.26,3.333333333333333,2,3,0,0,12,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4659,5679,10108,-9,10110,10107,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0579,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4659,5679,10109,-9,10110,10107,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.119,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4659,5679,10110,10107,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,0,0,6,-5,26.558874,0,-9,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.56,60.26,48.15,54.77,8.333333333333334,2,3,0,0,5,4,3,1,824.5,69288.141,0,0,0,7467.6694,0,1416.4055 +4660,5680,10111,10112,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.0915632,7.6462755,42,-2,65.765297,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5026481,8.2589121,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,14,5,3,1,341,909259.31,737356.75,257909.84,0,0,0,1800.4458 +4660,5680,10112,10111,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.068378,6.8118286,41,2,31.504084,0,2,1,2021,8,0,0,30,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.6335902,7.0994444,57.16,56.15,58.15,52.91,10,1,1,0,0,14,5,3,1,341,909259.31,737356.75,257909.84,0,0,0,1800.4458 +4661,5681,10113,10115,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.7523489,9.8437271,0,18,-1,5.9232817,0,2,2,2021,9,1,46,46,1,1,0,40.879463,40.879463,.05,.05,0,0,0,0,0,0,0,0,0,4.6065631,0,52.82,53.97,46.89,54.32,6.666666666666667,1,1,0,0,13,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4661,5681,10114,-9,10115,10113,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1187.5624,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4661,5681,10115,10113,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.443562,7.7076778,0,18,1,73.854301,0,2,3,2021,10,1,10,10,1,1,0,23.635065,23.635065,.05,.05,0,0,0,0,0,0,0,0,0,10.00044,0,46.89,54.32,52.82,53.97,8.333333333333334,1,1,0,0,10,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4661,5681,10116,-9,10115,10113,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-955.48383,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,502.75,600349.31,492414.75,348416.13,194022.27,0,0,14894.334 +4662,5682,10117,-9,10118,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.5553,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,1,720.5,-53012.734,-57851.328,0,0,0,0,2692.856 +4662,5682,10118,-9,-9,-9,1,0,31,1,3,0,2,2,-9,0,3,7.1322927,7.269238,6.3999715,0,0,-1026.259,0,2,2,2021,10,0,18,18,1,0,0,8.7470102,8.7470102,0,0,0,0,0,0,0,0,1,1,0,6.1305728,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,10,2,2,1,720.5,-53012.734,-57851.328,0,0,0,0,2692.856 +4663,5683,10119,10120,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,46,-1,-21.510565,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.48,49.45,51.61,50.58,8.333333333333334,1,1,0,0,0,7,3,1,553.5,256502.11,354872.69,0,0,10085.93,6124.001,2534.0156 +4663,5683,10120,10119,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.3460922,8.5491476,7,1,93.003311,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.371314,51.61,50.58,48.48,49.45,6.666666666666667,1,1,0,0,7,7,3,1,553.5,256502.11,354872.69,0,0,10085.93,6124.001,2534.0156 +4663,5684,10121,-9,10119,10120,1,1,32,0,0,0,2,2,-9,0,2,7.9636998,7.6996059,0,0,0,-899.76447,0,2,3,2021,18,7,40,40,1,7,0,6.5121179,6.5121179,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.49,51.61,-9,-9,6.666666666666667,1,1,0,0,15,7,3,1,2275,66343.125,-65139.516,0,0,0,0,586.95508 +4664,5685,10122,10123,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.1274004,8.4944487,6.5231814,7,-1,-129.83932,0,3,3,2021,22,7,18,32,1,7,0,24.827881,24.827881,0,0,0,0,0,0,0,0,1,1,0,7.5992017,4.7586741,34.11,42.2,41.23,51.32,6.666666666666667,1,1,0,0,6,9,5,1,286,2550553,1577232.5,614438.25,76988.125,3884.4805,0,7362.8066 +4664,5685,10123,10122,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.311121,9.3665314,5.6240487,7,1,25.497505,0,-9,-9,2021,17,5,30,50,1,5,0,36.680527,36.680527,.05,.05,0,0,0,0,0,0,1,1,0,9.4461565,6.3063889,41.23,51.32,34.11,42.2,6.666666666666667,1,1,0,0,9,9,5,1,286,2550553,1577232.5,614438.25,76988.125,3884.4805,0,7362.8066 +4665,5686,10124,10125,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.0569735,8.2877274,0,3,0,63.372204,0,-9,-9,2021,7,1,38,40,1,1,0,17.107903,17.107903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.78,53.38,36.62,58.96,8.333333333333334,1,1,0,0,7,9,5,1,1345,206442.58,92911.359,365864.44,139223.8,0,0,4270.958 +4665,5686,10125,10124,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8494492,8.7454557,0,3,0,58.64909,0,-9,-9,2021,15,5,41,41,1,5,0,26.833124,26.833124,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.62,58.96,48.78,53.38,8.333333333333334,1,1,0,0,6,9,5,1,1345,206442.58,92911.359,365864.44,139223.8,0,0,4270.958 +4666,5687,10126,10127,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.7121553,7.798645,0,10,4,-11.023444,0,2,2,2021,23,10,35,40,1,10,0,7.3059645,7.3059645,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.67,40.72,22.07,57.66,3.333333333333333,1,1,0,1,14,8,4,1,1969,146699.44,84387.406,265146.63,0,430.75049,0,2305.7866 +4666,5687,10127,10126,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0023355,7.901391,0,10,-4,135.55014,-9,-9,-9,2021,16,4,25,0,1,4,0,14.790385,14.790385,0,0,0,0,0,0,0,0,0,0,0,0,0,22.07,57.66,32.67,40.72,3.333333333333333,1,1,0,0,14,8,4,1,1969,146699.44,84387.406,265146.63,0,430.75049,0,2305.7866 +4667,5688,10128,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.3723559,7.4746513,0,0,0,-930.62531,0,2,2,2021,35,12,50,50,1,12,0,4.2375207,4.2375207,0,0,0,0,0,0,0,0,0,0,0,0,0,38.04,64.75,-9,-9,0,1,1,0,1,10,7,3,1,565,-116545.51,108969.28,0,0,0,0,767.92609 +4668,5689,10129,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,8.0848475,7.9839983,0,0,0,-868.68781,0,3,3,2021,6,0,70,70,1,0,0,6.6458464,6.6458464,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,11,10,4,0,390,143051.69,149390.34,0,0,-403.612,0,2291.5474 +4669,5690,10130,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.7463293,7.799716,6.2350225,0,0,-1142.3142,0,3,3,2021,12,0,60,60,1,0,0,3.8594201,3.8594201,0,0,0,0,0,0,1.2228081,2,0,0,0,6.4016423,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,13,13,4,0,2107,811835.13,66869.438,125361.41,0,0,0,1671.673 +4670,5691,10131,10132,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,5.629169,6.0155878,65,-1,91.558792,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,5.8681998,61.53,31.55,49.69,18.65,8.333333333333334,1,1,0,0,5,9,3,1,2067.5,338388.25,94709.391,279930.81,0,0,0,1613.0916 +4670,5691,10132,10131,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,7.325501,7.0894575,65,1,-75.427368,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,74.749458,0,0,1,1,0,0,7.1841021,49.69,18.65,61.53,31.55,10,1,1,0,0,0,9,3,1,2067.5,338388.25,94709.391,279930.81,0,0,0,1613.0916 +4671,5692,10133,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.647191,8.5130348,0,0,0,-941.08325,0,2,2,2021,8,0,54,49,1,0,0,12.105591,12.105591,.05,.05,0,0,0,0,0,0,1,1,0,5.1600547,0,52.62,54.33,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,233,118652.76,23332.123,270832.38,22319.5,0,0,2078.1138 +4672,5693,10134,10135,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,6.8945093,6.7536192,0,11,2,93.47213,0,2,2,2021,14,3,9,12,1,3,0,11.407228,11.407228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.89,56.25,52.43,55.57,5,1,1,0,0,9,11,4,1,568,489852.19,244984.23,147163.56,0,0,-.37894693,3050.3967 +4672,5693,10135,10134,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.0215693,9.0760355,0,11,-2,-90.660942,0,2,3,2021,16,4,40,49,1,4,0,26.766403,26.766403,.05,.05,0,0,0,0,0,0,1,1,0,6.0593109,0,52.43,55.57,47.89,56.25,8.333333333333334,1,1,0,0,12,11,4,1,568,489852.19,244984.23,147163.56,0,0,-.37894693,3050.3967 +4672,5693,10136,-9,10134,10135,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1047.2419,-9,2,2,2021,21,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,5,1,1,0,0,0,11,4,1,568,489852.19,244984.23,147163.56,0,0,-.37894693,3050.3967 +4672,5694,10137,-9,10134,10135,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1070.321,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9472165,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1359,13713.614,0,0,0,0,0,-223.06908 +4673,5695,10138,10139,-9,-9,1,1,65,1,1,0,1,1,-9,0,1,0,0,0,3,1,0,0,2,1,2021,23,10,0,0,4,10,0,0,0,0,0,.05,1,0,14.761031,0,0,1,1,0,0,0,45.02,37.95,38.84,26.9,3.333333333333333,2,3,0,0,5,7,1,1,713.5,-46162.883,19847.67,0,0,0,0,1079.0203 +4673,5695,10139,10138,-9,-9,1,0,64,1,1,0,1,1,-9,0,1,0,0,0,3,-1,0,0,-9,-9,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.84,26.9,45.02,37.95,5,2,3,1,0,0,7,1,1,713.5,-46162.883,19847.67,0,0,0,0,1079.0203 +4673,5696,10140,10142,10139,10138,1,1,33,1,1,0,2,2,-9,0,3,8.0075607,7.9529095,0,3,5,-24.156818,0,1,2,2021,11,0,40,96,1,0,0,8.163928,8.163928,.05,.05,0,0,0,0,0,0,1,1,0,2.6698463,0,30.25,56.52,58.47,50.22,5,2,3,0,0,8,7,5,1,591.66669,799585.19,625011.44,454781.97,207458.02,0,0,4247.8091 +4673,5696,10141,-9,10142,10140,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.1064,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,7,5,1,591.66669,799585.19,625011.44,454781.97,207458.02,0,0,4247.8091 +4673,5696,10142,10140,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,8.8274088,8.8749866,0,3,-5,-66.523285,0,-9,-9,2021,12,0,40,0,1,0,0,22.938059,22.938059,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,30.25,56.52,8.333333333333334,2,3,0,0,1,7,5,1,591.66669,799585.19,625011.44,454781.97,207458.02,0,0,4247.8091 +4674,5697,10143,-9,-9,-9,1,0,70,0,1,0,3,3,-9,0,2,0,6.2753959,6.0042348,0,0,-1008.801,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3445811,0,43.3,48.12,-9,-9,5,1,1,0,0,0,10,2,1,1504,459150.53,92119.109,402659.91,0,0,0,681.36951 +4674,5698,10144,10145,10143,-9,1,1,46,0,1,0,2,2,-9,0,2,9.0771399,9.301219,0,7,-6,-36.23595,0,2,2,2021,11,0,43,40,1,0,0,22.6537,22.6537,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.77,42.67,57.16,56.15,5,1,1,0,0,8,10,5,1,1852.6666,172689.83,37805.457,241825.16,121848.63,0,0,5839.0454 +4674,5698,10145,10144,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,8.9095011,9.0320749,0,7,6,-29.616154,0,2,2,2021,9,0,40,40,1,0,0,23.562338,23.562338,0,0,0,0,0,0,0,0,1,1,0,2.5964434,0,57.16,56.15,54.77,42.67,8.333333333333334,1,1,0,0,8,10,5,1,1852.6666,172689.83,37805.457,241825.16,121848.63,0,0,5839.0454 +4674,5698,10146,-9,10145,10144,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1033.9319,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,5,1,1852.6666,172689.83,37805.457,241825.16,121848.63,0,0,5839.0454 +4675,5699,10147,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,4.6930933,4.5393896,0,0,-896.02515,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8167274,4.3519597,35.85,40.95,-9,-9,10,1,1,0,1,0,7,2,0,2392,96675.641,0,0,0,0,0,1223.656 +4676,5700,10148,10149,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.2286892,8.0168734,0,4,-1,-22.536011,0,-9,-9,2021,11,0,38,41,1,0,0,10.723437,10.723437,0,0,0,0,0,0,0,0,0,0,0,3.6297431,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,10,9,5,1,1494,0,0,0,0,0,0,3144.3364 +4676,5700,10149,10148,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.086154,8.1276302,0,4,1,89.012825,0,-9,-9,2021,14,2,40,40,1,2,0,12.264064,12.264064,0,0,0,0,0,0,0,0,0,0,0,2.8688543,0,45.91,59.89,45.91,59.89,8.333333333333334,1,1,0,0,4,9,5,1,1494,0,0,0,0,0,0,3144.3364 +4677,5701,10150,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.1061373,6.4848113,0,0,-950.45154,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5068884,60.35,18.88,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,373,243475.89,83799.539,204662.56,0,0,0,1408.0134 +4678,5702,10151,10152,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.0930099,7.1970048,20,-5,-28.098354,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7097745,6.9783115,45.23,48.33,45.18,57.44,8.333333333333334,1,1,0,0,4,4,5,1,268,1953789.5,1755889.9,210313.88,0,5752.5273,0,4582.4229 +4678,5702,10152,10151,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.5773258,8.3333311,22,5,-6.0558944,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4357386,45.18,57.44,45.23,48.33,10,1,1,0,0,0,4,5,1,268,1953789.5,1755889.9,210313.88,0,5752.5273,0,4582.4229 +4679,5703,10153,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.7632875,7.1402531,0,0,-888.90814,0,2,1,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4143767,7.4130349,26,35.44,-9,-9,1.666666666666667,1,1,0,0,0,12,3,1,917,459578.19,170152.42,249484.13,0,0,0,1281.5885 +4680,5704,10154,10155,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.9876404,7.6133599,0,6,-1,45.531887,0,-9,-9,2021,5,0,25,16,1,0,0,13.990498,13.990498,0,0,0,0,0,0,0,0,0,0,0,.75991148,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,635,2066615,1667255,145963.89,0,8721.8066,0,3049.3779 +4680,5704,10155,10154,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.9692187,8.0514898,40,1,93.902214,0,-9,-9,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7519021,8.1328239,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,10,4,4,1,635,2066615,1667255,145963.89,0,8721.8066,0,3049.3779 +4681,5705,10156,10157,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,0,0,0,22,1,29.837959,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.7154217,0,45.04,53.77,46.16,58.62,5,1,1,1,0,11,10,2,1,730.66669,290493,110514.77,244059.98,81210.938,4371.5903,5960.2129,1476.8081 +4681,5705,10157,10156,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.4460921,7.3372874,0,25,-1,98.372131,0,3,3,2021,12,0,14,14,1,0,0,15.205613,15.205613,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,45.04,53.77,1.666666666666667,1,1,0,0,12,10,2,1,730.66669,290493,110514.77,244059.98,81210.938,4371.5903,5960.2129,1476.8081 +4681,5705,10158,-9,10157,10156,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.8954,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,730.66669,290493,110514.77,244059.98,81210.938,4371.5903,5960.2129,1476.8081 +4682,5706,10159,10162,-9,-9,1,1,36,1,2,0,2,2,-9,0,3,8.3401709,8.5296631,0,14,1,23.463011,0,2,2,2021,11,0,40,40,1,0,0,12.006665,12.006665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.74,48.37,51.14,60.45,6.666666666666667,1,1,0,0,10,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4682,5706,10160,-9,10162,10159,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-898.64252,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4682,5706,10161,-9,10162,10159,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4851,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4682,5706,10162,10159,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.4790363,8.1176176,0,14,-1,-2.1022232,0,2,3,2021,12,0,38,35,1,0,0,11.623644,11.623644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,44.74,48.37,8.333333333333334,1,1,0,0,8,6,4,1,1617.25,162453.2,15464.025,298584.22,188454.61,3769.1563,0,3201.9673 +4683,5707,10163,10165,-9,-9,1,0,34,1,3,0,3,3,-9,0,3,0,0,0,7,-2,-49.809967,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.12,58.55,57.16,56.15,5,1,1,0,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10164,-9,10163,10165,1,0,10,1,3,1,3,0,-9,0,5,0,0,0,0,0,-945.58154,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10165,10163,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,7.8849454,7.9327621,0,7,2,64.731293,-9,-9,-9,2021,7,0,40,0,1,0,0,8.5892591,8.5892591,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.12,58.55,6.666666666666667,1,1,0,1,2,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10166,-9,10163,10165,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.2405,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4683,5707,10167,-9,10163,10165,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.5144,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,2,0,471.20001,77215.242,0,0,0,0,0,1979.8763 +4684,5708,10168,10169,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,5.5396118,5.5176797,49,2,57.733208,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.81319,5.5788174,56,52,57.06,57.76,8.333333333333334,1,1,0,0,0,10,2,1,1363,-102506.2,0,0,0,0,0,1185.0835 +4684,5708,10169,10168,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,6.0175972,6.1134496,49,-2,-8.4603424,0,1,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8020658,6.0579214,57.06,57.76,56,52,10,1,1,0,0,0,10,2,1,1363,-102506.2,0,0,0,0,0,1185.0835 +4685,5709,10170,10171,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.3943744,6.4306231,10,1,-56.185329,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4281359,6.3886127,59.46,46.99,53,52,8.333333333333334,1,1,0,0,5,11,2,1,1475,283507.72,178699.63,121047.67,52707.227,0,0,1446.6909 +4685,5709,10171,10170,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,10,-1,64.943741,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,59.46,46.99,8.333333333333334,1,1,0,0,5,11,2,1,1475,283507.72,178699.63,121047.67,52707.227,0,0,1446.6909 +4686,5710,10172,-9,-9,-9,1,1,47,0,4,0,1,1,-9,0,5,6.7157307,7.0128932,0,0,0,-1033.4423,0,3,3,2021,7,0,17,16,1,0,0,6.0989895,6.0989895,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,3,4,0,1,3,5,2,0,393,-126541.64,0,0,0,12236.478,0,2758.1255 +4686,5711,10173,-9,-9,10172,1,0,20,0,4,1,2,0,0,0,5,0,0,0,0,0,-1019.3768,-9,3,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,0,5,1,0,167,-35227.344,0,0,0,1975.5782,0,0 +4686,5712,10174,-9,-9,10172,1,0,18,0,4,1,2,0,0,0,5,0,0,0,0,0,-939.76855,-9,-9,1,2021,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,3,4,0,0,0,5,1,0,787,-35266.883,0,0,0,0,0,0 +4687,5713,10175,10176,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,0,0,0,2,0,0,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,6.0580373,0,57.16,56.15,49.05,47.47,6.666666666666667,1,1,0,0,0,9,1,1,790,1101431.5,301127,647030.5,53213.383,1937.6492,0,3787.3364 +4687,5713,10176,10175,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,26,0,0,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7419357,0,49.05,47.47,57.16,56.15,6.666666666666667,1,1,0,0,0,9,1,1,790,1101431.5,301127,647030.5,53213.383,1937.6492,0,3787.3364 +4688,5714,10177,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1050.1409,0,3,2,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.34,20.98,-9,-9,0,1,1,0,1,2,8,1,0,422,-36494.707,0,0,0,0,0,608.36902 +4689,5715,10178,-9,10179,10180,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-998.00702,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,733.33331,4865091,2572413,1104086.1,159880.16,0,0,4943.4053 +4689,5715,10179,10180,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.5967455,8.4884701,0,26,-10,-77.572441,0,2,2,2021,11,0,23,23,1,0,0,24.393602,24.393602,0,0,0,0,0,0,0,0,0,0,0,3.2846556,0,48.87,58.55,41.85,59.52,8.333333333333334,1,1,0,0,13,7,5,1,733.33331,4865091,2572413,1104086.1,159880.16,0,0,4943.4053 +4689,5715,10180,10179,-9,-9,1,1,59,0,1,0,1,1,-9,0,5,9.1175814,9.4127798,0,26,10,128.93561,0,2,1,2021,18,7,45,50,1,7,0,30.916697,30.916697,.05,.05,0,0,0,0,0,0,0,0,0,2.4359813,0,41.85,59.52,48.87,58.55,8.333333333333334,1,1,0,0,13,7,5,1,733.33331,4865091,2572413,1104086.1,159880.16,0,0,4943.4053 +4689,5716,10181,-9,10179,10180,1,0,24,0,1,0,1,1,-9,0,5,8.2814941,8.3613968,0,0,0,-993.31458,0,2,1,2021,7,0,40,38,1,0,1,8.9956322,8.9956322,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,5,7,4,1,423,68468.523,130430.88,0,0,-1256.8093,0,2464.2209 +4689,5717,10182,-9,10179,10180,1,0,21,0,1,0,2,2,-9,0,3,5.7007051,5.6740861,0,0,0,-1136.6503,0,2,1,2021,15,3,10,-9,1,3,1,3.0177219,3.0177219,0,0,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,-9,-9,8.333333333333334,1,1,0,0,4,7,2,1,430,-44428.293,0,0,0,0,-234.57166,-196.72343 +4690,5718,10183,10184,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.3176813,8.1561346,0,29,0,7.1961803,0,2,2,2021,0,0,38,0,1,0,0,11.029905,11.029905,0,0,0,0,0,0,0,0,0,0,0,5.8125963,0,56.68,21.84,62.49,55.09,8.333333333333334,1,1,0,0,9,2,4,1,2818,1957672,1416845.1,172820.47,0,0,0,2979.9434 +4690,5718,10184,10183,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.2915115,8.0070744,0,29,0,-176.48064,0,3,3,2021,3,0,43,44,1,0,0,11.525783,11.525783,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,56.68,21.84,8.333333333333334,1,1,0,0,5,2,4,1,2818,1957672,1416845.1,172820.47,0,0,0,2979.9434 +4691,5719,10185,10186,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.2981672,8.2875671,51,-2,3.9115746,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.173656,8.1985865,58.3,52.91,50,47,8.333333333333334,1,1,0,0,12,5,4,1,669.5,1268740,454563.28,187736.66,0,0,0,5148.5317 +4691,5719,10186,10185,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.677392,6.6130238,51,2,-117.84319,0,1,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9216809,6.2866197,50,47,58.3,52.91,7,1,1,0,0,0,5,4,1,669.5,1268740,454563.28,187736.66,0,0,0,5148.5317 +4692,5720,10187,10188,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.9015498,7.0274358,0,39,0,-143.07094,0,2,3,2021,15,4,15,18,1,4,0,8.0396109,8.0396109,0,0,0,0,0,0,0,0,0,0,0,0,0,33.69,53.53,58.23,37.93,8.333333333333334,1,1,0,0,13,6,4,1,404.5,92019.922,-37875.813,197480.81,141426.95,0,355.96313,2778.8237 +4692,5720,10188,10187,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.625392,8.6958084,0,39,0,2.6384609,0,3,3,2021,9,1,35,35,1,1,0,14.45043,14.45043,.05,.05,0,0,0,0,0,0,0,0,0,3.4393768,0,58.23,37.93,33.69,53.53,6.666666666666667,1,1,0,0,13,6,4,1,404.5,92019.922,-37875.813,197480.81,141426.95,0,355.96313,2778.8237 +4693,5721,10189,10190,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.9748363,8.5812073,0,19,-2,-9.1157951,0,2,-9,2021,24,12,39,38,1,12,0,21.082064,21.082064,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.42,40.27,33.01,63.17,5,1,1,0,0,14,2,5,1,301,762242.25,56861.133,709727.75,177875.28,0,0,5156.873 +4693,5721,10190,10189,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6472139,8.7092371,6.9707422,19,2,56.913116,0,3,2,2021,20,7,40,39,1,7,0,18.387838,18.387838,.05,.05,0,0,0,0,0,0,0,0,0,3.7494359,7.3945799,33.01,63.17,45.42,40.27,8.333333333333334,1,1,0,0,14,2,5,1,301,762242.25,56861.133,709727.75,177875.28,0,0,5156.873 +4694,5722,10191,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7262225,7.6610069,0,0,0,-1000.0435,0,3,3,2021,14,3,26,26,1,3,0,12.356837,12.356837,.05,.05,0,0,0,0,0,7,0,0,0,1.5519196,0,48.27,45.05,-9,-9,8.333333333333334,1,1,0,1,9,6,3,1,170,363664.03,205293.94,176123.58,29397.986,0,0,1003.2311 +4694,5723,10192,-9,10191,-9,1,0,21,0,0,0,2,2,0,0,2,0,0,0,0,0,-1080.76,-9,2,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,0,0,0,1.6367949,0,65.78,29.46,-9,-9,10,1,1,0,0,3,6,1,1,270,4409.5615,0,0,0,0,0,-98.125717 +4694,5724,10193,-9,10191,-9,1,0,18,0,0,0,2,2,1,0,4,7.8179884,7.6841807,0,0,0,-896.83673,-9,2,-9,2021,12,0,40,0,1,2,1,6.4048939,6.4048939,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,1,6,3,1,189,55757.074,0,0,0,8939.2822,0,1490.8412 +4695,5725,10194,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.0284805,7.1159773,0,0,-1030.7246,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1745248,49.28,52.09,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,1087,380460.16,12413.814,265812.91,0,0,0,1360.314 +4696,5726,10195,10196,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.6023731,4.3705759,9,2,-156.6152,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,3.636945,5.7894073,23.206612,0,1,1,0,0,4.305625,19.5,41.67,49.68,50.49,3.333333333333333,1,1,0,0,0,13,2,0,494,398754.5,0,304887.16,0,0,0,1344.7002 +4696,5726,10196,10195,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,9,-2,-5.6468444,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,49.68,50.49,19.5,41.67,5,1,1,0,0,0,13,2,0,494,398754.5,0,304887.16,0,0,0,1344.7002 +4697,5727,10197,10198,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2486277,8.3540964,0,6,3,57.600449,0,3,2,2021,11,1,30,30,1,1,0,13.463609,13.463609,0,0,0,0,0,0,0,0,0,0,0,3.712399,0,52.25,53.24,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,1379,420659.69,297868.75,112197.63,124781.27,0,0,4165.3306 +4697,5727,10198,10197,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,8.9410887,8.7428102,0,6,-3,30.595089,0,3,2,2021,10,0,44,41,1,0,0,20.760477,20.760477,.05,.05,0,0,0,0,0,0,0,0,0,6.3030515,0,57.06,57.76,52.25,53.24,8.333333333333334,1,1,0,0,9,8,5,1,1379,420659.69,297868.75,112197.63,124781.27,0,0,4165.3306 +4698,5728,10199,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,1,0,0,0,0,0,-890.12732,0,3,2,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4607294,0,28.8,33.15,-9,-9,3.333333333333333,1,1,1,0,6,5,1,1,1135,71287.133,0,0,0,0,0,235.32501 +4699,5729,10200,10201,-9,-9,1,1,38,0,1,0,2,2,-9,0,3,8.4923973,8.0586176,0,1,0,8.5675278,-9,-9,-9,2021,24,10,42,0,1,10,0,14.585585,14.585585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.31,54.62,33.47,48.38,5,1,1,0,0,6,7,4,0,312.5,316061.22,277774.63,139609.17,106913.68,26826.453,0,5563.1436 +4699,5729,10201,10200,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,8.5064182,8.4240284,0,1,0,-54.587017,-9,2,3,2021,20,8,48,0,1,8,0,10.515985,10.515985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.47,48.38,28.31,54.62,3.333333333333333,4,2,0,0,9,7,4,0,312.5,316061.22,277774.63,139609.17,106913.68,26826.453,0,5563.1436 +4700,5730,10202,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.3106804,7.4462333,0,0,-1093.5575,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5868273,7.5238872,45.13,29.34,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,4927,90785.227,243892.19,0,0,0,805.62262,2367.9951 +4701,5731,10203,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,8.2898417,8.1355038,0,0,0,-872.73438,0,-9,-9,2021,16,6,15,15,1,6,0,22.825764,22.825764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.39,40.89,-9,-9,5,1,1,0,0,7,7,4,0,241,518944.38,61172.262,287123.25,0,0,0,1923.7303 +4702,5732,10204,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,4,0,6.9982071,7.0695162,0,0,-855.76019,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7836759,6.9723492,65.88,16.46,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,327,264411.81,12190.02,88717.695,0,0,0,2223.4612 +4703,5733,10205,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,6.3133235,6.0845251,0,0,-1002.9951,0,-9,-9,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0252452,31.74,37.19,-9,-9,1.666666666666667,1,1,0,0,5,7,2,1,529,805822.88,225819.28,0,0,0,0,1116.0675 +4704,5734,10206,-9,10209,10208,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.7159,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10207,-9,10209,10208,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.4485,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10208,10209,-9,-9,1,1,35,0,3,0,1,1,-9,0,3,8.0412798,8.0141373,0,8,-1,43.765018,0,3,3,2021,14,2,50,40,1,2,0,7.5392685,7.5392685,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.27,52.67,23.29,50.99,1.666666666666667,1,1,0,0,6,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10209,10208,-9,-9,1,0,36,0,3,0,2,2,0,1,2,0,0,0,8,1,50.532684,-9,3,-9,2021,25,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.29,50.99,38.27,52.67,1.666666666666667,1,1,0,0,1,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5734,10210,-9,10209,10208,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.65796,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,669.40002,581028.69,564268.56,141418.91,91575.484,660.20935,0,3071.6565 +4704,5735,10211,-9,10209,10208,1,0,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1054.0212,-9,2,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,2,11,1,1,878,-34149.355,0,0,0,0,0,0 +4705,5736,10212,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.5723634,7.3047223,0,0,-1035.5767,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2729967,7.186511,57.73,27.89,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,1508,380385.16,322509.41,62822.367,0,0,0,1574.345 +4706,5737,10213,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.8752904,7.9629946,0,0,0,-906.5506,-9,-9,-9,2021,15,5,50,0,1,5,0,5.582788,5.582788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,-9,-9,8.333333333333334,3,4,0,0,2,8,3,1,662,135710.63,-40435.344,0,0,0,0,888.23047 +4706,5738,10214,10215,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.4711266,6.4654732,0,3,1,6.4301682,0,-9,-9,2021,11,2,55,0,1,2,0,1.4191828,1.4191828,.05,.05,.05,0,0,0,0,0,0,0,0,2.8662994,0,50.63,50.99,42.58,54.92,1.666666666666667,4,4,0,0,1,8,5,1,470.5,379898,277847.13,267866.25,94591.906,-810.14417,1481.8965,4229.2729 +4706,5738,10215,10214,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.6498404,8.6933317,0,3,-1,18.770552,0,2,2,2021,3,0,40,52,1,0,0,17.92886,17.92886,0,0,0,0,0,0,0,2,0,0,0,8.6672935,0,42.58,54.92,50.63,50.99,8.333333333333334,3,4,0,0,10,8,5,1,470.5,379898,277847.13,267866.25,94591.906,-810.14417,1481.8965,4229.2729 +4707,5739,10216,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.4979429,8.341608,0,0,0,-980.76355,0,3,2,2021,15,3,60,38,1,3,0,7.0432539,7.0432539,.05,.05,0,0,0,0,0,7,1,1,0,0,0,41.93,43,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,1848,196925.73,90151.25,0,0,842.90332,2069.0562,2107.0413 +4708,5740,10217,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.8651114,5.9536209,0,0,-1053.9152,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.880599,40.46,63.68,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,776,50491.262,-64214.598,119049.66,0,0,0,704.00781 +4709,5741,10218,10219,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.0571198,6.1923985,44,4,-56.949196,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,6.4370365,0,74.5,1,1,0,0,6.0301948,45.15,51.17,34.32,19.62,10,1,1,0,0,0,6,2,1,776,1616089.3,702338.44,631109.19,0,0,0,2079.6052 +4709,5741,10219,10218,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,44,-4,135.9391,0,2,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.32,19.62,45.15,51.17,10,1,1,0,0,0,6,2,1,776,1616089.3,702338.44,631109.19,0,0,0,2079.6052 +4710,5742,10220,10222,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.5294619,8.3431435,0,17,-4,38.938587,-9,3,2,2021,12,0,33,0,1,0,0,19.844255,19.844255,.05,.05,0,0,0,0,0,0,1,1,0,8.0287342,0,45.91,59.89,53.56,49.66,8.333333333333334,1,1,0,0,14,10,4,1,558.66669,1365988.5,926485.5,293139.72,155452.48,0,0,4836.6436 +4710,5742,10221,-9,10220,10222,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.99109,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,558.66669,1365988.5,926485.5,293139.72,155452.48,0,0,4836.6436 +4710,5742,10222,10220,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,7.8701019,7.6335287,0,17,4,-1.2048926,-9,-9,-9,2021,12,0,40,0,1,0,0,7.6611924,7.6611924,.05,.05,0,0,0,0,0,0,1,1,0,7.397378,0,53.56,49.66,45.91,59.89,8.333333333333334,1,1,0,0,14,10,4,1,558.66669,1365988.5,926485.5,293139.72,155452.48,0,0,4836.6436 +4710,5743,10223,-9,10220,10222,1,1,20,0,1,0,2,2,-9,0,3,0,0,0,0,0,-975.63495,-9,1,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,3,10,1,1,2988,-31303.238,0,0,0,0,0,-350.20462 +4710,5744,10224,-9,10220,10222,1,0,18,0,1,0,2,2,-9,0,5,7.3859963,7.3195076,0,0,0,-1011.4361,-9,1,2,2021,6,0,34,0,1,0,1,7.1246371,7.1246371,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,1,2,10,3,1,768,27018.889,0,0,0,0,0,713.22797 +4711,5745,10225,10226,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,12,6,-85.07576,0,2,2,2021,17,5,0,0,4,5,0,0,0,.05,.05,.05,0,0,0,0,14.5,0,0,0,3.3525348,0,44.95,58.82,54.2,57.49,8.333333333333334,1,1,0,0,13,2,5,1,962.5,1781429,650712.75,792130.13,0,0,0,5398.0015 +4711,5745,10226,10225,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.3613672,9.964469,0,12,-6,.062582336,0,2,2,2021,12,0,80,80,1,0,0,19.009447,19.009447,0,0,0,0,0,0,0,7,0,0,0,6.614501,0,54.2,57.49,44.95,58.82,8.333333333333334,1,1,0,0,14,2,5,1,962.5,1781429,650712.75,792130.13,0,0,0,5398.0015 +4712,5746,10227,10228,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.3328705,8.6954975,0,24,-3,-78.523308,0,3,3,2021,10,0,23,23,1,1,0,21.229689,21.229689,.05,.05,0,0,0,0,0,0,1,1,0,.63269323,0,39.58,57.61,37.38,48.9,7,2,3,0,0,9,5,4,1,3428.5,18314.348,17564.16,0,0,4906.9526,0,2561.0215 +4712,5746,10228,10227,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.5023661,7.7638741,0,15,3,-99.431885,0,3,3,2021,14,2,42,38,1,2,0,6.2687607,6.2687607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.38,48.9,39.58,57.61,3.333333333333333,2,3,0,1,6,5,4,1,3428.5,18314.348,17564.16,0,0,4906.9526,0,2561.0215 +4712,5747,10229,-9,10227,10228,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-946.46503,-9,2,2,2021,32,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.26702935,0,5.45,59.85,-9,-9,0,2,3,1,1,0,5,1,1,620,-53614.137,0,0,0,0,0,-782.67102 +4713,5748,10230,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.7231431,7.2029757,0,0,-945.21423,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0363107,6.996716,45.59,22.89,-9,-9,6.666666666666667,1,1,0,0,6,10,2,1,1148,375007.53,154205.88,278196.5,0,0,0,1285.7141 +4714,5749,10231,10232,-9,-9,1,1,61,0,1,0,2,2,-9,0,2,0,5.7806025,5.5285711,33,5,-94.293098,0,3,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.733974,5.5308156,37.96,24.76,48.28,60.18,6.666666666666667,1,1,0,0,0,4,2,1,360.33334,129723.92,77281.852,0,0,0,667.17511,1199.0663 +4714,5749,10232,10231,-9,-9,1,0,56,0,1,0,2,2,-9,1,4,0,0,0,33,-5,45.652084,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.62308675,0,48.28,60.18,37.96,24.76,8.333333333333334,1,1,0,0,0,4,2,1,360.33334,129723.92,77281.852,0,0,0,667.17511,1199.0663 +4714,5749,10233,-9,10232,10231,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1066.073,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,2,1,360.33334,129723.92,77281.852,0,0,0,667.17511,1199.0663 +4715,5750,10234,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,8.3411884,8.5734873,0,0,0,-980.18634,0,-9,-9,2021,13,1,40,44,1,1,0,13.468482,13.468482,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.98,41.39,-9,-9,6.666666666666667,1,1,0,0,8,2,5,1,871,320222,31594.07,0,0,0,0,1737.2137 +4716,5751,10235,10236,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.6208925,6.7083778,17,6,99.545753,0,2,1,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3078136,0,49,48,56.19,43.46,5,1,1,1,0,9,8,5,1,546,2972686,0,1178379.1,0,0,0,4873.6855 +4716,5751,10236,10235,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.4737892,9.6086922,0,17,-6,-103.124,0,2,2,2021,7,0,41,50,1,0,0,37.13467,37.13467,0,0,0,0,0,0,0,0,0,0,0,4.7531004,0,56.19,43.46,49,48,5,1,1,0,0,10,8,5,1,546,2972686,0,1178379.1,0,0,0,4873.6855 +4717,5752,10237,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,7.6516905,7.4173231,0,0,0,-881.29895,-9,1,2,2021,4,1,33,0,1,1,0,7.6662645,7.6662645,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,11,5,3,0,392,-207200.84,-117987.05,0,0,0,0,724.32068 +4718,5753,10238,-9,10240,10239,1,1,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-970.74915,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,5,10,1,1,2219,0,0,0,0,0,0,-211.8362 +4718,5754,10239,10240,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.4243584,8.2857714,0,5,1,-124.78349,0,-9,-9,2021,9,0,40,45,1,0,0,15.265803,15.265803,.05,.05,0,0,0,0,0,0,1,1,0,2.5986269,0,49.04,55.86,55.95,47.23,8.333333333333334,1,1,0,0,12,10,4,1,563.66669,317158,61194.672,241932.28,181331.61,8027.2583,0,3226.0002 +4718,5754,10240,10239,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.6912732,7.6993017,0,5,-1,38.399906,0,-9,-9,2021,9,0,42,42,1,0,0,4.9655743,4.9655743,0,0,0,0,0,0,0,0,1,1,0,.63084346,0,55.95,47.23,49.04,55.86,8.333333333333334,1,1,0,0,12,10,4,1,563.66669,317158,61194.672,241932.28,181331.61,8027.2583,0,3226.0002 +4718,5754,10241,-9,10240,10239,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0942,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,563.66669,317158,61194.672,241932.28,181331.61,8027.2583,0,3226.0002 +4719,5755,10242,-9,10244,10245,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-920.58984,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4719,5755,10243,-9,10244,10245,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.4141,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4719,5755,10244,10245,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,6,0,13.371084,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.8934298,0,42.11,57.44,43.54,59.6,8.333333333333334,1,1,0,0,4,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4719,5755,10245,10244,-9,-9,1,1,38,1,2,0,2,2,-9,0,4,8.7039165,8.757412,0,6,0,-40.007271,0,2,2,2021,11,0,39,37,1,0,0,12.411723,12.411723,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,42.11,57.44,6.666666666666667,1,1,0,0,10,6,3,1,1190.25,70093.836,152680.08,52138.156,49114.813,18271.867,2362.0923,2770.0979 +4720,5756,10246,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.1702628,6.2961793,0,0,-914.5462,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.0345263,59.7,53.75,-9,-9,10,1,1,0,0,0,12,2,1,339,375542.19,49805.871,175401,0,0,0,1222.1056 +4721,5757,10247,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.5895,0,-9,-9,2021,14,5,0,0,4,5,0,0,0,0,0,0,1,6.2879438,0,61.780735,0,1,1,0,0,0,64.09999999999999,14.67,-9,-9,10,2,3,0,0,0,8,1,0,335,44974.855,0,0,0,0,0,248.0282 +4722,5758,10248,-9,10250,10249,1,1,31,0,0,0,1,1,-9,0,2,0,0,0,0,0,-832.62744,0,1,1,2021,34,11,0,50,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.39,43.93,-9,-9,0,1,1,1,1,8,5,1,1,189,72458.328,-78501.367,0,0,4908.1538,-24.748123,627.30652 +4722,5759,10249,10250,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,4,0,4.5781069,0,-9,-9,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.4408042,0,43.33,55.57,44,38,8.333333333333334,1,1,0,0,0,5,4,1,244.5,2620646.5,1577939.3,408882.06,0,0,0,3145.542 +4722,5759,10250,10249,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,8.6774683,8.9244452,4,0,-63.088959,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,8.7994547,44,38,43.33,55.57,5,1,1,0,0,0,5,4,1,244.5,2620646.5,1577939.3,408882.06,0,0,0,3145.542 +4723,5760,10251,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3769693,8.6198215,0,0,0,-1042.3979,0,1,1,2021,9,0,40,40,1,0,0,10.742653,10.742653,.05,.05,0,0,0,0,0,2,0,0,0,4.3149171,0,38.46,59.39,-9,-9,5,1,1,0,0,12,8,5,1,669,369076.75,104010.75,227262.22,98954.539,0,0,2040.3263 +4724,5761,10252,-9,10254,10253,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.8892,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4724,5761,10253,10254,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,7.6700864,7.9827347,0,11,6,-32.407104,0,2,3,2021,5,0,33,0,1,0,0,10.295351,10.295351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,45.19,46.74,8.333333333333334,1,1,0,0,7,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4724,5761,10254,10253,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.9698257,8.4781876,0,11,-6,-201.06239,0,2,2,2021,10,2,48,47,1,2,0,14.35897,14.35897,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.19,46.74,49.04,55.86,8.333333333333334,1,1,0,0,10,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4724,5761,10255,-9,10254,10253,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.5831,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,1100.25,345763.75,193343.39,133356.97,18646.688,0,32.598198,3756.1838 +4725,5762,10256,10257,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,5.3188019,5.1797137,41,3,73.152901,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2604094,4.8489699,60.12,54.8,37.64,38.46,10,1,1,0,0,0,13,2,1,1094,311083,141499.69,214558.31,0,0,481.65955,1149.0911 +4725,5762,10257,10256,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,41,-3,-85.437431,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,15.864882,0,0,1,1,0,0,0,37.64,38.46,60.12,54.8,8.333333333333334,1,1,0,0,0,13,2,1,1094,311083,141499.69,214558.31,0,0,481.65955,1149.0911 +4726,5763,10258,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1129.1991,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.43,16.78,-9,-9,5,1,1,1,0,1,4,1,0,327,-253391,0,0,0,-962.00385,-240.27435,1120.6934 +4727,5764,10259,10261,-9,-9,1,1,51,0,1,0,1,1,-9,0,2,0,0,0,2,2,32.902649,-9,2,2,2021,16,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.8398626,0,34.44,48.18,51,54,3.333333333333333,1,1,1,0,6,9,2,1,1390.6666,1072270.6,641682.56,787354,263138.91,19679.391,0,1022.9671 +4727,5764,10260,-9,10261,10259,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-851.8042,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,9,2,1,1390.6666,1072270.6,641682.56,787354,263138.91,19679.391,0,1022.9671 +4727,5764,10261,10259,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.9404311,8.0338717,0,2,-2,-160.52036,0,3,2,2021,10,0,16,17,1,1,0,18.587351,18.587351,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,34.44,48.18,8,1,1,0,0,7,9,2,1,1390.6666,1072270.6,641682.56,787354,263138.91,19679.391,0,1022.9671 +4728,5765,10262,10263,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.4424791,8.5142841,50,7,55.805206,0,2,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1093102,8.6590805,51.94,45.35,57.86,39.96,10,1,1,0,0,0,8,5,1,730,1753973.8,483088.19,867677.5,0,0,0,5140.2314 +4728,5765,10263,10262,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.6393461,7.857955,50,-7,-19.576311,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5476584,7.5424924,57.86,39.96,51.94,45.35,10,1,1,0,0,3,8,5,1,730,1753973.8,483088.19,867677.5,0,0,0,5140.2314 +4729,5766,10264,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,6.9736748,7.1690416,0,0,-923.2525,0,-9,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,1,1.8248912,0,28.132689,0,1,1,0,7.3151212,7.0380998,57.87,38.63,-9,-9,1.666666666666667,1,1,0,0,0,10,3,0,857,287382,148553.39,208424.5,0,0,0,1665.6541 +4730,5767,10265,10266,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.8236561,7.7477303,0,30,0,19.564117,0,3,-9,2021,10,0,36,36,1,1,0,5.9505768,5.9505768,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,55,53,8,2,3,0,0,9,8,4,1,930,573084.63,13968.661,688148.38,32286.023,0,0,1573.9155 +4730,5767,10266,10265,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.8291702,8.0327711,0,6,0,62.013363,0,-9,-9,2021,8,0,40,40,1,0,0,6.7265105,6.7265105,0,0,0,0,0,0,0,0,1,1,0,0,0,55,53,53,52,8,2,3,0,0,9,8,4,1,930,573084.63,13968.661,688148.38,32286.023,0,0,1573.9155 +4730,5768,10267,-9,10265,10266,1,1,28,0,0,0,2,2,-9,0,4,7.1261864,6.7865334,0,0,0,-1223.1357,0,3,3,2021,10,0,35,20,1,1,1,3.2648141,3.2648141,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,6,8,2,1,588,-183071.17,0,0,0,0,0,766.10706 +4730,5769,10268,-9,10265,10266,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1011.4732,0,3,3,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,2,3,1,0,0,8,1,1,811,0,0,0,0,0,0,399.00345 +4731,5770,10269,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,5,7.951026,8.0427074,0,0,0,-1008.8364,0,2,2,2021,5,0,56,40,1,0,0,5.7398391,5.7398391,0,0,0,0,0,0,0,0,1,1,0,0,0,26.52,51.7,-9,-9,0,2,3,0,0,6,8,4,0,489,203134.92,0,166048,125172.2,4448.1533,0,753.13776 +4732,5771,10270,10271,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,8.2565813,8.6602249,0,9,1,-104.54917,0,1,2,2021,10,0,52,45,1,0,0,11.652446,11.652446,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,58.47,23.43,5,1,1,0,0,10,5,5,0,672,144446.69,70159.094,0,0,0,0,3536.9392 +4732,5771,10271,10270,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.3456335,8.214591,5.2065148,9,-1,10.480819,0,2,2,2021,9,0,40,40,1,0,0,9.4138746,9.4138746,.05,.05,0,0,0,0,0,0,0,0,0,0,5.9158711,58.47,23.43,54.37,54.8,6.666666666666667,1,1,0,0,8,5,5,0,672,144446.69,70159.094,0,0,0,0,3536.9392 +4733,5772,10272,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.8719234,8.7868805,0,14,-4,-24.108183,0,2,3,2021,19,7,63,45,1,7,0,10.204008,10.204008,.05,.05,0,0,0,0,0,2,0,0,0,4.9900732,0,46.85,51.26,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,1688,312335.16,86851.375,83150.797,120092.56,0,0,1666.0046 +4733,5773,10273,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2188368,7.9280105,0,14,4,-1.3523897,0,-9,-9,2021,10,0,44,41,1,0,0,9.4808254,9.4808254,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,46.85,51.26,6.666666666666667,1,1,0,0,7,4,5,1,1527,716510.81,469333.22,45681.086,59374.805,0,0,1079.6447 +4734,5774,10274,-9,10275,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-903.22736,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,263.66666,56444.691,0,0,0,0,0,1589.99 +4734,5774,10275,-9,-9,-9,1,0,30,1,3,0,2,2,-9,0,5,0,5.9310446,5.6523004,0,0,-1127.0925,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6450925,0,48.49,58.82,-9,-9,10,1,1,0,0,5,10,2,0,263.66666,56444.691,0,0,0,0,0,1589.99 +4734,5774,10276,-9,10275,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.8944,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,263.66666,56444.691,0,0,0,0,0,1589.99 +4735,5775,10277,10278,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.3429837,7.7969179,5.466085,47,-4,25.082594,0,-9,-9,2021,12,0,24,31,1,0,0,8.5344362,8.5344362,0,0,0,0,0,0,0,0,1,1,0,0,5.5585709,39.51,43.84,41.36,39.55,6.666666666666667,1,1,0,0,12,10,3,1,1203,1271533.6,466364.22,205071.53,0,0,0,2406.6851 +4735,5775,10278,10277,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.1130199,7.2868853,45,4,-7.171926,0,3,3,2021,19,7,0,0,4,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1487985,41.36,39.55,39.51,43.84,3.333333333333333,1,1,0,0,8,10,3,1,1203,1271533.6,466364.22,205071.53,0,0,0,2406.6851 +4736,5776,10279,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.1676555,7.018259,0,0,-1044.2112,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.1203814,0,0,1,1,0,1.0722302,7.2172818,53.52,37.9,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,298,230518.17,106335.04,113311.83,0,0,0,1341.2681 +4737,5777,10280,10281,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,4.4386539,4.2370353,57,-3,36.073124,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.6339163,0,17.606577,74.5,1,1,0,4.1928215,4.2853084,60.54,34.78,46.45,39.56,10,1,1,0,0,0,6,2,1,704.5,276725.94,284407,160794.13,0,0,0,2205.0391 +4737,5777,10281,10280,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.0033674,7.1115222,57,3,91.593513,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,18.508455,0,0,1,1,0,4.2641554,6.8548756,46.45,39.56,60.54,34.78,10,1,1,0,0,0,6,2,1,704.5,276725.94,284407,160794.13,0,0,0,2205.0391 +4738,5778,10282,-9,10284,10283,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1008.3724,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,5,4,1,621.66669,1925401.6,966953.75,848684.5,0,0,0,2413.7666 +4738,5778,10283,10284,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.0762897,6.2478538,22,7,82.858391,0,3,3,2021,8,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5109545,5.9534669,63.98,38.08,49.97,56.66,8.333333333333334,1,1,0,0,5,5,4,1,621.66669,1925401.6,966953.75,848684.5,0,0,0,2413.7666 +4738,5778,10284,10283,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.4558725,8.54214,0,21,-7,100.11237,0,3,2,2021,10,0,41,47,1,0,0,14.796664,14.796664,0,0,0,0,0,0,0,0,1,1,0,0,0,49.97,56.66,63.98,38.08,6.666666666666667,1,1,0,0,8,5,4,1,621.66669,1925401.6,966953.75,848684.5,0,0,0,2413.7666 +4738,5779,10285,-9,10284,10283,1,1,19,0,0,0,2,2,-9,0,4,7.3010125,7.2503848,0,0,0,-927.0401,0,2,2,2021,13,4,35,25,1,4,1,5.3542366,5.3542366,.05,.05,0,0,0,0,0,0,1,1,0,2.0093629,0,36.16,61.92,-9,-9,5,1,1,0,0,3,5,3,1,501,205890.31,-95267.445,0,0,0,0,732.37036 +4739,5780,10286,-9,10288,10287,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-891.52386,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10287,10288,-9,-9,1,1,35,1,3,0,1,1,-9,0,5,8.8906946,9.0638676,0,13,3,-27.390074,0,2,2,2021,6,0,37,39,1,0,0,25.168371,25.168371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,54.2,57.49,8.333333333333334,1,1,0,0,10,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10288,10287,-9,-9,1,0,32,1,3,0,1,1,-9,0,4,7.5551147,7.4818635,0,13,-3,-48.220104,0,2,2,2021,7,0,20,21,1,0,0,11.186665,11.186665,.05,.05,0,0,0,0,0,0,1,1,0,2.9871023,0,54.2,57.49,54.69,57.47,8.333333333333334,1,1,0,0,10,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10289,-9,10288,10287,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-947.15613,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4739,5780,10290,-9,10288,10287,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-953.05017,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,748.20001,505793.81,177912.94,463196.38,200880.94,4530.0796,0,3833.1787 +4740,5781,10291,10292,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.9029608,8.5025024,0,4,5,-4.2107105,-9,1,2,2021,10,0,62,0,1,1,0,13.442362,13.442362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,7,3,4,0,0,10,8,5,0,804.66669,157208.31,149152.44,326821.13,230576.72,0,0,3388.8584 +4740,5781,10292,10291,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,7.9721975,7.8995066,0,4,-5,63.762352,-9,-9,-9,2021,11,0,32,0,1,2,0,7.9355183,7.9355183,.05,.05,0,0,0,0,0,0,1,1,0,2.1460702,0,47,57,50,57,7,4,4,0,0,1,8,5,0,804.66669,157208.31,149152.44,326821.13,230576.72,0,0,3388.8584 +4740,5781,10293,-9,10292,10291,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.9851,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,804.66669,157208.31,149152.44,326821.13,230576.72,0,0,3388.8584 +4741,5782,10294,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.2140303,8.1766796,0,0,0,-1032.9559,0,1,1,2021,12,0,35,35,1,0,0,11.423872,11.423872,.05,.05,0,0,0,0,0,0,0,0,0,4.4416914,0,48.7,56.22,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,1016,426036.59,420698.47,137331.11,0,0,0,2010.0939 +4742,5783,10295,-9,10297,10296,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.76758,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,8,4,0,2050,189951.2,-17788.715,394767.94,310583.69,20711.496,565.28149,4005.5532 +4742,5783,10296,10297,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.0265808,8.4453087,0,3,2,10.612636,-9,-9,-9,2021,18,5,40,0,1,5,0,8.8556719,8.8556719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.51,62.83,47.47,55.04,1.666666666666667,1,1,0,0,6,8,4,0,2050,189951.2,-17788.715,394767.94,310583.69,20711.496,565.28149,4005.5532 +4742,5783,10297,10296,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,8.4634609,8.7571821,0,3,-2,65.173599,0,-9,-9,2021,12,2,42,42,1,2,0,13.417458,13.417458,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.47,55.04,30.51,62.83,6.666666666666667,3,4,0,0,8,8,4,0,2050,189951.2,-17788.715,394767.94,310583.69,20711.496,565.28149,4005.5532 +4743,5784,10298,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,7.223165,7.2435632,0,0,-970.12451,0,-9,-9,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.231427,7.1640387,47.51,44.08,-9,-9,8,1,1,0,0,0,5,2,1,1020,-52280.77,-45034.074,0,0,0,0,1365.7012 +4744,5785,10299,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.9137321,7.6197791,0,0,-1129.9812,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1329236,8.0899248,57.21,42.51,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,2206,756409.13,340603.25,338478.47,0,0,0,1844.7275 +4745,5786,10300,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.6385236,5.4027243,0,0,-946.9657,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7563064,5.8182907,47.08,43.23,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,850,120575.13,75205.563,227450.77,0,0,0,725.26172 +4746,5787,10301,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.7219954,7.4545856,0,0,-1089.8513,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9511528,7.1591644,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,10,3,1,301,786495.13,393934.66,116646.39,0,0,0,2169.6934 +4747,5788,10302,10305,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,0,0,0,18,-3,-43.671741,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,32.75,57.7,51.14,60.45,5,1,1,0,0,5,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4747,5788,10303,-9,10302,10305,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.34283,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4747,5788,10304,-9,10302,10305,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.2124,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4747,5788,10305,10302,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.2079124,8.2020617,0,19,3,-10.061349,0,2,2,2021,12,0,39,40,1,0,0,11.238695,11.238695,.05,.05,0,0,0,0,0,27,1,1,0,0,0,51.14,60.45,32.75,57.7,5,1,1,0,0,12,6,3,0,436.25,48270.152,9317.7773,0,0,11991.23,0,2372.4204 +4748,5789,10306,10307,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.097024,8.4950495,0,34,4,-29.045771,0,2,2,2021,6,0,35,34,1,0,0,10.28565,10.28565,0,0,.05,0,0,0,0,0,0,0,0,2.105335,0,62.66,52.4,53.32,43.34,8.333333333333334,1,1,0,0,15,10,4,1,361.5,340224.25,-17692.68,249782.81,0,18533.908,0,2517.9116 +4748,5789,10307,10306,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8099365,7.6921206,0,30,-4,-55.326328,0,-9,-9,2021,13,1,40,30,1,1,0,6.4525189,6.4525189,0,0,0,0,0,0,0,0,0,0,0,2.3415027,0,53.32,43.34,62.66,52.4,8.333333333333334,1,1,0,0,14,10,4,1,361.5,340224.25,-17692.68,249782.81,0,18533.908,0,2517.9116 +4749,5790,10308,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.5777893,8.8795929,6.6858244,0,0,-1078.1047,0,3,3,2021,6,0,21,25,1,0,0,36.626442,36.626442,.05,.05,0,0,0,0,0,0,1,1,0,2.9686325,6.8949203,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,2006,432071.88,129435.16,145915.31,0,0,0,4320.5107 +4750,5791,10309,10310,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,7.5689464,7.6952801,0,6,-3,54.221142,0,2,2,2021,6,0,18,18,1,0,0,12.93502,12.93502,0,0,0,0,0,0,0,14.5,1,1,0,0,0,64.55,36.47,13.91,43.87,8.333333333333334,1,1,0,0,9,1,2,1,385,134143.81,99404.172,124745.74,45075.652,0,0,1487.1335 +4750,5791,10310,10309,-9,-9,1,1,44,0,2,0,2,2,-9,1,2,0,5.6418962,5.1446099,21,3,96.634315,0,3,2,2021,36,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,5.4712729,13.91,43.87,64.55,36.47,1.666666666666667,1,1,0,0,7,1,2,1,385,134143.81,99404.172,124745.74,45075.652,0,0,1487.1335 +4751,5792,10311,10312,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.1898603,5.6648645,31,6,-7.7816381,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4307632,6.1742992,57.73,54.53,43.65,26.18,8.333333333333334,1,1,0,0,0,7,2,1,618.5,239217.22,0,299823.06,0,0,0,1889.5701 +4751,5792,10312,10311,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,6.2595363,6.4374204,31,-6,-6.8874621,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,1.0979915,0,0,1,1,0,.90709233,6.2837749,43.65,26.18,57.73,54.53,10,1,1,0,0,0,7,2,1,618.5,239217.22,0,299823.06,0,0,0,1889.5701 +4752,5793,10313,10314,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,6.4275985,6.5688148,50,10,-46.146454,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5110908,59.89,42.51,52.34,49.07,8.333333333333334,1,1,0,0,0,7,4,1,780,1677404.8,315407.5,860519.31,0,25641.469,0,3111.0649 +4752,5793,10314,10313,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.4528065,8.3196259,50,-10,-122.96713,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.572247,8.1498718,52.34,49.07,59.89,42.51,8.333333333333334,1,1,0,0,11,7,4,1,780,1677404.8,315407.5,860519.31,0,25641.469,0,3111.0649 +4753,5794,10315,10316,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.2464066,9.3740425,0,7,0,35.549118,0,-9,-9,2021,10,0,45,40,1,0,0,35.750793,35.750793,.05,.05,0,0,0,0,0,74.5,0,0,0,0,0,47.3,53.21,41.88,30.96,8.333333333333334,1,1,0,0,12,12,5,0,1176.5,1661641.8,1401750,335849.44,40596.914,0,0,4408.3892 +4753,5794,10316,10315,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,7.8027601,7.6456676,0,7,0,15.736654,0,2,2,2021,20,8,28,27,1,8,0,9.0718384,9.0718384,0,0,0,0,0,0,0,74.5,0,0,0,0,0,41.88,30.96,47.3,53.21,6.666666666666667,1,1,0,0,10,12,5,0,1176.5,1661641.8,1401750,335849.44,40596.914,0,0,4408.3892 +4753,5795,10317,-9,10316,10315,1,1,24,0,0,0,2,2,-9,0,4,7.7960343,8.0077877,0,0,0,-1148.6117,-9,2,2,2021,10,0,38,0,1,1,1,8.1844912,8.1844912,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,4,0,1840,111356.32,38042.156,0,0,0,0,749.74072 +4754,5796,10318,10319,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.6054001,8.6620064,0,7,-19,-116.53756,0,2,2,2021,24,12,38,37,1,12,0,16.719147,16.719147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.8,52.21,54.2,57.49,3.333333333333333,1,1,0,0,9,1,5,1,307,383368.38,269552.5,103877.41,104980.11,13709.395,0,4613.8281 +4754,5796,10319,10318,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,9.3667164,9.1633158,0,7,19,-38.69812,0,2,2,2021,7,0,38,47,1,0,0,24.706722,24.706722,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,34.8,52.21,8.333333333333334,1,1,0,0,6,1,5,1,307,383368.38,269552.5,103877.41,104980.11,13709.395,0,4613.8281 +4755,5797,10320,10321,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,-3,77.513916,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,56.91,49.54,19.45,28.04,5,1,1,0,0,0,9,2,0,1101.5,1250414.3,135744.56,539975.44,0,0,0,1844.6898 +4755,5797,10321,10320,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,7.2907977,7.2182078,61,3,74.02523,0,3,3,2021,23,8,0,0,4,8,0,0,0,0,0,0,1,0,13.951135,0,0,1,1,0,0,7.4339657,19.45,28.04,56.91,49.54,1.666666666666667,1,1,0,0,0,9,2,0,1101.5,1250414.3,135744.56,539975.44,0,0,0,1844.6898 +4756,5798,10322,10325,-9,-9,1,0,23,2,2,0,2,2,-9,0,5,7.7010217,7.6339788,0,4,-1,31.820808,0,-9,-9,2021,12,0,25,25,1,0,0,9.7595024,9.7595024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,42.12,61.5,10,1,1,0,0,4,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4756,5798,10323,-9,10322,10325,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-967.3869,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4756,5798,10324,-9,10322,10325,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.2893,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4756,5798,10325,10322,-9,-9,1,1,24,2,2,0,2,2,-9,0,4,8.452033,8.3677568,0,4,1,-26.340775,0,-9,-9,2021,12,0,38,36,1,0,0,13.362261,13.362261,.05,.05,0,0,0,0,0,0,1,1,0,3.0824206,0,42.12,61.5,57.63,56.14,5,1,1,0,0,8,4,4,1,1201,157821.63,18014.088,229185.86,81593.508,0,1437.5676,2710.8701 +4757,5799,10326,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,6.781116,6.6483431,0,0,-991.72687,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3013053,7.0143485,64,38.07,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,449,186344.91,124081.45,135646.19,0,0,0,781.49207 +4758,5800,10327,-9,10331,10328,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.42505,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10328,10331,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,9.706418,9.694191,0,9,3,-28.737106,0,3,3,2021,11,0,65,55,1,0,0,25.30954,25.30954,.05,.05,0,0,0,0,0,0,0,0,0,8.1480017,0,50.51,56.39,59.43,58.05,6.666666666666667,1,1,0,0,9,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10329,-9,10331,10328,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.20624,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10330,-9,10331,10328,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-884.77594,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4758,5800,10331,10328,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,9.0820713,8.8283119,0,9,-3,-77.187523,0,1,2,2021,9,0,42,35,1,0,0,24.878496,24.878496,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,50.51,56.39,0,1,1,0,0,9,9,5,1,621.20001,604272,341401.47,404597.56,198817.75,0,0,8074.7456 +4759,5801,10332,10333,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.2523947,7.4032049,54,3,227.36784,0,1,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9119828,7.4583478,59.53,56.44,58.3,42.18,10,1,1,0,0,0,10,2,1,875.5,722001,413512.13,195352.66,0,0,0,1837.918 +4759,5801,10333,10332,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,54,-3,-56.750866,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1367593,0,58.3,42.18,59.53,56.44,6.666666666666667,1,1,0,0,7,10,2,1,875.5,722001,413512.13,195352.66,0,0,0,1837.918 +4760,5802,10334,10335,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.3025017,8.1461496,21,-8,-.035820249,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0321541,7.9499445,54.79,55.86,56.77,52.22,8.333333333333334,1,1,0,0,8,12,4,1,299,934864.75,567111.94,144225.52,0,0,0,2592.502 +4760,5802,10335,10334,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.2141805,7.0273166,21,8,89.658112,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4191957,6.9299703,56.77,52.22,54.79,55.86,10,1,1,0,0,0,12,4,1,299,934864.75,567111.94,144225.52,0,0,0,2592.502 +4761,5803,10336,10337,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4853258,8.2821426,0,2,-1,-62.934261,-9,-9,-9,2021,7,0,50,0,1,0,0,12.410807,12.410807,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.1,47.5,43.9,57.01,5,1,1,0,0,4,4,5,1,1759,444772.69,109960.16,274859.47,186682.75,0,0,4469.1772 +4761,5803,10337,10336,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.5840359,8.3248844,0,2,1,-49.447281,0,-9,-9,2021,14,2,40,-9,1,2,0,16.338686,16.338686,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.9,57.01,55.1,47.5,6.666666666666667,1,1,0,0,11,4,5,1,1759,444772.69,109960.16,274859.47,186682.75,0,0,4469.1772 +4762,5804,10338,10339,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6726208,8.361702,0,4,2,-19.203762,-9,-9,-9,2021,9,0,60,0,1,1,0,10.487911,10.487911,.05,.05,0,0,0,0,0,0,0,0,0,4.0744243,0,54,54,55.09,55.87,8,1,1,0,0,1,9,4,1,282,677817,195587.92,418466.88,36265.984,0,0,2751.0049 +4762,5804,10339,10338,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,5.6868391,5.8387222,0,4,-2,.9626348,0,2,2,2021,8,0,10,10,1,0,0,3.1808789,3.1808789,.05,.05,0,0,0,0,0,0,0,0,0,4.7998018,0,55.09,55.87,54,54,8.333333333333334,1,1,0,0,3,9,4,1,282,677817,195587.92,418466.88,36265.984,0,0,2751.0049 +4763,5805,10340,-9,10341,10342,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.5803,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1148.3334,626779.31,209633.27,460058.16,92976.188,0,0,4270.5859 +4763,5805,10341,10342,-9,-9,1,0,44,0,3,0,1,1,-9,0,4,8.9257565,9.4178648,0,9,0,92.940536,0,2,2,2021,11,0,35,33,1,0,0,28.25304,28.25304,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,52.23,55.6,6.666666666666667,1,1,0,0,3,9,4,1,1148.3334,626779.31,209633.27,460058.16,92976.188,0,0,4270.5859 +4763,5805,10342,10341,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,0,0,0,9,0,-122.92393,0,2,2,2021,17,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,45.91,59.89,3.333333333333333,1,1,1,1,8,9,4,1,1148.3334,626779.31,209633.27,460058.16,92976.188,0,0,4270.5859 +4764,5806,10343,-9,10344,10345,1,1,17,0,0,1,2,0,0,0,4,0,3.4366484,3.499778,0,0,-1037.5061,-9,2,2,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0697851,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,934,434614.53,67520.742,230288.48,110585.16,0,0,5473.7495 +4764,5806,10344,10345,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.8744555,8.8023567,0,26,-1,-11.633403,0,2,2,2021,5,0,42,47,1,0,0,19.227404,19.227404,.05,.05,0,0,0,0,0,0,0,0,0,2.90818,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,5,5,1,934,434614.53,67520.742,230288.48,110585.16,0,0,5473.7495 +4764,5806,10345,10344,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.3698349,9.1888876,0,26,1,-80.334175,0,2,2,2021,7,0,55,60,1,0,0,21.802114,21.802114,.05,.05,0,0,0,0,0,0,0,0,0,6.8225684,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,5,5,1,934,434614.53,67520.742,230288.48,110585.16,0,0,5473.7495 +4764,5807,10346,-9,10344,10345,1,0,22,0,0,0,1,1,1,0,4,8.383007,8.3133211,0,0,0,-1046.1804,-9,2,2,2021,6,0,40,0,1,0,1,11.005712,11.005712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41,63.4,-9,-9,10,1,1,0,0,6,5,4,1,110,66558.547,-4856.751,0,0,6884.0132,0,1221.6245 +4765,5808,10347,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1467776,7.0127397,0,0,-911.07776,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.2744765,7.288074,46.63,59.72,-9,-9,3.333333333333333,1,1,0,0,8,8,2,1,791,749496.44,254205.56,495322.03,0,0,0,1090.6719 +4766,5809,10348,10349,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,0,0,8,3,-64.822151,0,2,2,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.92,51.87,57.15,45.78,8.333333333333334,1,1,0,0,0,12,5,1,811.5,1105336.6,853721.19,136379.66,-3582.095,0,0,3287.6826 +4766,5809,10349,10348,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,9.1326799,8.9477577,0,8,-3,-21.087358,0,2,-9,2021,7,0,38,38,1,0,0,27.166771,27.166771,0,0,0,0,0,0,0,0,1,1,0,4.8465586,0,57.15,45.78,36.92,51.87,8.333333333333334,1,1,0,0,9,12,5,1,811.5,1105336.6,853721.19,136379.66,-3582.095,0,0,3287.6826 +4766,5810,10350,-9,10349,10348,1,0,19,0,0,0,2,2,-9,0,4,6.1787639,6.4342532,0,0,0,-946.27661,0,1,2,2021,12,0,12,0,1,2,1,5.1818943,5.1818943,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,1,12,2,1,317,125769.66,0,0,0,0,0,270.70105 +4767,5811,10351,-9,10354,10352,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.8744,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4767,5811,10352,10354,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,8.45854,8.8722696,0,16,4,-19.298197,0,2,2,2021,18,6,49,51,1,6,0,11.566194,11.566194,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.43,64.75,51.77,58.57,6.666666666666667,1,1,0,0,8,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4767,5811,10353,-9,10354,10352,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.92554,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4767,5811,10354,10352,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.795361,7.6046891,0,16,-4,37.000137,0,2,2,2021,14,3,32,32,1,3,0,10.111007,10.111007,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,41.43,64.75,6.666666666666667,1,1,0,0,9,4,4,1,646.25,14787.225,-20654.906,167193.66,99307.063,17958.846,1983.7,3262.4358 +4768,5812,10355,-9,10356,10357,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.8371,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,1,1020.3333,477431.44,52618.891,574625.31,126812.65,0,0,3253.0647 +4768,5812,10356,10357,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.6585608,7.6681981,0,9,-1,-9.532773,0,2,3,2021,19,8,25,24,1,8,0,13.077744,13.077744,0,0,0,0,0,0,0,0,1,1,0,0,0,32.84,60.85,33.46,57.87,3.333333333333333,1,1,0,0,7,8,4,1,1020.3333,477431.44,52618.891,574625.31,126812.65,0,0,3253.0647 +4768,5812,10357,10356,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,8.5780878,9.0632162,0,9,1,44.259827,0,2,2,2021,12,1,35,40,1,1,0,23.419333,23.419333,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,33.46,57.87,32.84,60.85,6.666666666666667,2,3,0,0,10,8,4,1,1020.3333,477431.44,52618.891,574625.31,126812.65,0,0,3253.0647 +4769,5813,10358,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.4192052,7.783843,0,0,-991.12988,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4672332,7.8993244,51.73,58.82,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,1333,733064.75,264029.78,227489.08,0,0,0,1524.0038 +4770,5814,10359,10360,-9,-9,1,0,70,0,0,0,1,1,-9,0,5,0,7.6214323,7.2099571,24,-2,62.608143,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5600615,7.4954886,57.06,57.76,58.62,52.91,10,1,1,0,0,13,11,4,1,1078,1628828.9,593069.44,192774.59,0,0,0,2995.281 +4770,5814,10360,10359,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,8.416502,8.2322206,12,2,83.434425,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7850971,58.62,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,11,4,1,1078,1628828.9,593069.44,192774.59,0,0,0,2995.281 +4771,5815,10361,10362,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,7.291441,7.2273831,46,2,80.807816,0,2,2,2021,12,1,0,0,4,1,0,0,0,.05,.05,.05,1,0,16.040258,0,0,1,1,0,6.8963552,7.6977234,47,37,45.73,50.31,6.666666666666667,1,1,0,0,2,9,3,1,495,1282388.8,438717,529354.81,0,0,0,3597.6221 +4771,5815,10362,10361,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.3604779,7.6823626,46,-2,63.565861,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6625776,7.3684134,45.73,50.31,47,37,8.333333333333334,1,1,0,0,0,9,3,1,495,1282388.8,438717,529354.81,0,0,0,3597.6221 +4772,5816,10363,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9513764,7.8245592,0,0,0,-952.42163,0,1,1,2021,8,0,40,30,1,0,0,9.7095633,9.7095633,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,13,4,1,311,27611.758,124549.32,0,0,0,0,366.07111 +4773,5817,10364,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.8260083,7.1827888,21,10,-13.250795,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5959315,43.42,62.33,52.26,47.71,10,1,1,0,0,11,9,5,1,510,25092.814,-83644.289,0,0,2309.5342,0,952.99005 +4773,5818,10365,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.0114555,9.0568686,0,21,-10,-31.699522,0,2,3,2021,12,0,37,74,1,0,0,30.089241,30.089241,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.26,47.71,43.42,62.33,6.666666666666667,1,1,0,0,11,9,5,1,1067,635332,481256.63,245678.27,70779.383,0,0,3523.2632 +4774,5819,10366,10367,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.073514,7.7715287,8,3,-30.507809,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7266943,7.7584796,60.65,35.48,52.23,55.6,6.666666666666667,1,1,0,0,0,5,4,1,631,1132726.9,648806.88,300551.59,0,0,0,3358.3296 +4774,5819,10367,10366,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.9473739,8.0400362,8,-3,14.958166,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9756421,7.9501691,52.23,55.6,60.65,35.48,8.333333333333334,1,1,0,0,0,5,4,1,631,1132726.9,648806.88,300551.59,0,0,0,3358.3296 +4775,5820,10368,10370,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,9.4719229,9.3055954,0,12,-3,39.193348,0,1,1,2021,15,6,64,30,1,6,0,17.60298,17.60298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.64,55.33,33.01,63.17,8.333333333333334,1,1,0,0,7,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4775,5820,10369,-9,10368,10370,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8547,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4775,5820,10370,10368,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.7049332,9.8087282,0,12,3,15.768071,0,2,2,2021,19,7,65,60,1,7,0,32.488377,32.488377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.01,63.17,36.64,55.33,3.333333333333333,1,1,0,0,9,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4775,5820,10371,-9,10368,10370,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1164.4716,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,634,751830.81,192602.78,1104471.5,738260.69,0,0,26634.922 +4776,5821,10372,10373,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,6.6785975,6.9353671,17,2,-64.039078,0,2,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.7774887,6.1946206,49.97,53.99,54.2,57.49,5,1,1,0,0,12,9,5,1,513.5,1544643.3,904188.81,252338.03,0,23028.129,0,3568.2371 +4776,5821,10373,10372,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.828352,9.3275251,7.8295622,17,-2,54.207947,0,3,3,2021,11,0,38,38,1,0,0,21.379189,21.379189,.05,.05,0,0,0,0,0,0,0,0,0,0,8.3614273,54.2,57.49,49.97,53.99,8.333333333333334,1,1,0,0,15,9,5,1,513.5,1544643.3,904188.81,252338.03,0,23028.129,0,3568.2371 +4777,5822,10374,-9,10376,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.9617,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,696.66669,-96416.742,0,0,0,0,0,1239.8778 +4777,5822,10375,-9,10376,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.3004,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,696.66669,-96416.742,0,0,0,0,0,1239.8778 +4777,5822,10376,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.7922835,7.4633517,0,0,0,-1028.4794,0,2,2,2021,11,0,18,0,1,2,0,15.470101,15.470101,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,3,5,3,1,696.66669,-96416.742,0,0,0,0,0,1239.8778 +4778,5823,10377,-9,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1148.7622,-9,-9,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.41,25.55,-9,-9,1.666666666666667,2,3,0,0,1,7,1,0,1033,176283.67,0,0,0,0,0,1004.8518 +4779,5824,10378,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1592045,8.1465302,0,0,-945.74988,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.5897307,8.0014601,55.76,44.76,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,972,421567.84,44091.195,121429.4,0,0,0,3805.3235 +4780,5825,10379,10380,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4271793,8.2629166,0,6,0,7.8771524,0,-9,-9,2021,12,0,36,38,1,0,0,15.418584,15.418584,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,59.46,46.99,6.666666666666667,1,1,0,0,12,5,4,1,661.5,376283.47,277427,112329.64,0,0,0,2196.2141 +4780,5825,10380,10379,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.1315074,6.718739,0,6,0,-59.332546,-9,3,2,2021,12,0,40,0,1,0,0,3.6632879,3.6632879,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,59.46,46.99,50,54,5,1,1,0,0,12,5,4,1,661.5,376283.47,277427,112329.64,0,0,0,2196.2141 +4781,5826,10381,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.0869279,7.35289,0,0,-878.20709,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1274309,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,227,127723.23,164868.16,0,0,0,0,1000.6268 +4782,5827,10382,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,7.1973825,7.3466277,0,0,-1054.7399,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.65176338,7.1867962,49.09,33.36,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,864,394509.16,213498.42,216674.34,0,0,0,1190.6649 +4783,5828,10383,10384,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,9.4627695,9.3765554,0,7,-2,1.62325,0,2,2,2021,10,0,42,37,1,0,0,26.713936,26.713936,.05,.05,0,0,0,0,0,0,1,1,0,1.4798843,0,38.94,60.48,55.17,38.37,8.333333333333334,1,1,0,0,11,10,5,1,842.33331,126883.54,96056.563,0,0,8038.9448,0,4667.084 +4783,5828,10384,10383,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.6042981,7.9545803,0,7,2,-28.758919,0,-9,-9,2021,13,3,21,19,1,3,0,10.430831,10.430831,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.17,38.37,38.94,60.48,8.333333333333334,1,1,0,0,7,10,5,1,842.33331,126883.54,96056.563,0,0,8038.9448,0,4667.084 +4783,5828,10385,-9,10384,10383,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.2674,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,1,842.33331,126883.54,96056.563,0,0,8038.9448,0,4667.084 +4784,5829,10386,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.2990303,8.5163803,0,0,-1165.0138,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1218157,8.6919746,52.32,44.73,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,275,1486962,812172.63,482304.97,0,0,0,3105.8245 +4785,5830,10387,10388,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,6.8420706,6.8858075,8,-10,73.77356,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.5513325,6.8390341,57.16,56.15,56.92,49.39,8.333333333333334,1,1,0,0,10,2,2,1,596.5,509759.13,155343.44,99513,0,0,0,2020.5652 +4785,5830,10388,10387,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,34,10,49.229954,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3332977,0,56.92,49.39,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,596.5,509759.13,155343.44,99513,0,0,0,2020.5652 +4785,5831,10389,-9,10387,10388,1,0,29,0,0,0,3,3,-9,1,5,0,0,0,0,0,-1073.7159,0,1,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.25,51.7,-9,-9,10,1,1,0,0,0,2,1,1,1134,-83813.953,0,0,0,0,0,1835.8286 +4786,5832,10390,10391,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.6140127,5.5542235,54,-2,-119.41776,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,21.937073,0,0,1,1,0,3.863821,5.7140627,60.87,42.1,48.28,60.18,10,1,1,0,0,0,10,3,1,893.5,1976510.3,761086.13,706336.19,0,0,0,2514.4861 +4786,5832,10391,10390,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.9404364,7.8042064,54,2,98.941887,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1863904,7.8554673,48.28,60.18,60.87,42.1,8.333333333333334,1,1,0,0,0,10,3,1,893.5,1976510.3,761086.13,706336.19,0,0,0,2514.4861 +4787,5833,10392,10393,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.7431922,8.0928669,55,-1,-55.306957,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9688754,8.0747967,57.16,56.15,64.75,30.9,10,1,1,0,0,0,4,4,1,1005.5,2183286.5,686453.75,483854.63,0,0,0,3575.6821 +4787,5833,10393,10392,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.6284547,7.7223625,55,1,-84.021194,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9000783,64.75,30.9,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,1005.5,2183286.5,686453.75,483854.63,0,0,0,3575.6821 +4788,5834,10394,10395,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.7706585,8.7564821,0,5,5,14.577723,0,-9,-9,2021,10,0,42,42,1,0,0,21.894716,21.894716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,38.69,61.75,8.333333333333334,1,1,0,0,10,4,5,1,659,315671.06,167518.11,0,0,0,0,3684.9077 +4788,5834,10395,10394,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.8608456,8.6655741,0,5,-5,86.056702,0,3,3,2021,11,0,32,32,1,0,0,20.120621,20.120621,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,54.2,57.49,8.333333333333334,1,1,0,0,10,4,5,1,659,315671.06,167518.11,0,0,0,0,3684.9077 +4789,5835,10396,-9,10397,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.51398,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,170,255241.7,-6449.5342,191444.78,0,0,0,1603.5706 +4789,5835,10397,-9,-9,-9,1,0,43,0,1,0,1,1,-9,1,4,0,6.7810068,6.1782136,0,0,-1131.3669,0,3,3,2021,13,5,0,24,3,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9833131,0,21.93,63.94,-9,-9,8.333333333333334,1,1,1,0,8,10,2,0,170,255241.7,-6449.5342,191444.78,0,0,0,1603.5706 +4790,5836,10398,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1013.1907,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7074366,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,10,1,1,1993,476866.75,0,160925.25,0,0,295.20453,952.87244 +4791,5837,10399,10400,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.4335027,6.3267493,62,-3,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3239388,64.58,30.92,58.34,42.51,8.333333333333334,2,3,0,0,0,7,2,1,887,1052351.4,453011.63,439120.25,0,0,0,2084.8179 +4791,5837,10400,10399,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.2697892,6.4595127,62,3,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4175034,58.34,42.51,64.58,30.92,8.333333333333334,2,3,0,0,0,7,2,1,887,1052351.4,453011.63,439120.25,0,0,0,2084.8179 +4792,5838,10401,10403,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,7.9079494,8.0831823,0,17,4,-56.987484,-9,3,2,2021,13,1,24,0,1,1,0,10.649082,10.649082,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.03,52.5,28.72,46.89,3.333333333333333,2,3,0,0,12,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4792,5838,10402,-9,10403,10401,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.4984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4792,5838,10403,10401,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,17,-4,19.895624,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.72,46.89,37.03,52.5,5,2,3,0,0,4,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4792,5838,10404,-9,10403,10401,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-912.96814,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,679,71448.313,-54971.164,0,0,0,3626.3611,2848.3047 +4793,5839,10405,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.7091408,7.8263717,0,0,0,-1065.4513,0,3,3,2021,18,6,38,62,1,6,0,5.8848581,5.8848581,.05,.05,0,0,0,0,0,2,1,1,0,0,0,31.47,51.2,-9,-9,3.333333333333333,1,1,0,0,13,12,3,1,558,-39464.027,56083.961,0,0,0,0,622.04327 +4794,5840,10406,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,1,0,7.23597,7.7095928,0,0,-985.43121,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,1.001744,3.4835715,21.595453,0,1,1,0,7.1470556,7.4260974,45.33,23.72,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,351,413579.63,139790.13,221223.14,0,0,0,2367.2271 +4794,5841,10407,-9,10406,-9,1,0,57,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.8589,0,2,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.9282179,0,53.71,44.13,-9,-9,5,1,1,0,0,4,6,1,1,629,-109871.16,0,0,0,0,1197.0814,332.16562 +4795,5842,10408,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.7254634,4.7445021,0,0,-969.37341,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,6.107513,3.9784195,42.484222,0,1,1,0,0,4.8146935,58.13,23.79,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,1844,106491.59,-384.97757,0,0,0,0,1465.7184 +4796,5843,10409,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4091606,8.0236931,0,0,0,-1075.7115,0,2,2,2021,13,2,32,30,1,2,0,13.711483,13.711483,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,53.82,45.47,-9,-9,5,1,1,0,0,12,11,4,1,74,194936.03,37863.566,62913.004,0,0,0,1186.6797 +4796,5844,10410,-9,10409,-9,1,0,31,0,0,0,2,2,-9,0,4,7.8235011,7.6700406,0,0,0,-1052.8682,-9,2,-9,2021,12,0,27,0,1,0,1,9.4471464,9.4471464,0,0,0,0,0,0,0,2,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,13,11,3,1,543,-88299.258,0,0,0,0,1436.6089,-4.5455608 +4796,5845,10411,-9,10409,-9,1,1,29,0,0,0,2,2,-9,0,4,7.4726572,7.8598657,0,0,0,-1043.8724,0,2,-9,2021,19,7,40,35,1,7,1,7.4925456,7.4925456,0,0,0,0,0,0,0,2,0,0,0,0,0,35.85,51.13,-9,-9,6.666666666666667,1,1,0,0,13,11,3,1,1138,-155571.05,0,0,0,0,0,395.75668 +4796,5846,10412,-9,10409,-9,1,0,26,0,0,0,2,2,-9,0,3,7.5213928,7.1592383,0,0,0,-930.05286,0,2,-9,2021,14,2,47,25,1,2,1,3.9484086,3.9484086,0,0,0,0,0,0,0,2,0,0,0,0,0,40.32,53.3,-9,-9,3.333333333333333,1,1,0,0,5,11,3,1,18,40916.723,-50416.148,0,0,0,0,455.77563 +4797,5847,10413,10414,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.9802861,5.9179015,10,-1,-30.665358,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5364347,5.8059406,57.33,53.46,51.88,41.51,8.333333333333334,1,1,0,0,0,2,2,1,462.5,354134.16,84394.969,208960.13,0,0,0,1599.4845 +4797,5847,10414,10413,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.7534966,5.5061669,10,1,10.620539,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6284423,5.5449581,51.88,41.51,57.33,53.46,8.333333333333334,1,1,0,0,0,2,2,1,462.5,354134.16,84394.969,208960.13,0,0,0,1599.4845 +4798,5848,10415,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.3775887,6.964129,0,0,-937.16553,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.1719928,7.0194888,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,5,2,1,155,313886.38,234220.67,0,0,0,0,553.74188 +4799,5849,10416,10417,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.1444254,7.9458165,0,32,-7,37.773731,0,2,2,2021,7,0,30,40,1,0,0,14.34174,14.34174,0,0,0,0,0,0,0,0,0,0,0,6.9077229,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,882.5,854517.75,607824.5,330483.75,18049.037,0,0,5961.6152 +4799,5849,10417,10416,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.6686516,9.0231361,10,7,86.04673,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4092045,8.9500093,57.16,56.15,55.19,54.26,10,1,1,0,0,0,5,5,1,882.5,854517.75,607824.5,330483.75,18049.037,0,0,5961.6152 +4799,5850,10418,-9,10416,10417,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-857.01019,-9,1,1,2021,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,1,5,1,1,200,0,0,0,0,0,0,-444.9693 +4799,5851,10419,-9,10416,10417,1,1,20,0,0,0,1,1,1,0,5,8.6893759,8.5543623,4.8616719,0,0,-887.84991,-9,1,1,2021,3,0,48,0,1,0,1,11.977987,11.977987,.05,.05,0,0,0,0,0,0,0,0,0,4.6190739,0,54.1,59.11,-9,-9,10,1,1,0,0,3,5,5,1,1899,71737.703,98886.078,0,0,0,0,2939.8496 +4800,5852,10420,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9964914,7.9929829,0,0,-1062.0635,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.6780725,62.4,48.33,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,161,242632.97,212290.86,104200.81,0,0,0,1801.5548 +4801,5853,10421,-9,10422,10423,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.33282,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1576,508249.22,379580.69,287286.06,110634.28,0,0,5180.8276 +4801,5853,10422,10423,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,7.3271656,7.3818865,0,6,2,-28.85947,0,3,3,2021,17,5,21,21,1,5,0,8.4742594,8.4742594,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.06,58.99,57.06,57.76,6.666666666666667,1,1,0,0,6,12,5,1,1576,508249.22,379580.69,287286.06,110634.28,0,0,5180.8276 +4801,5853,10423,10422,-9,-9,1,1,42,0,1,0,2,2,-9,0,5,9.3892422,9.7713614,7.5124898,6,-2,30.006964,0,-9,-9,2021,6,0,42,42,1,0,0,29.693129,29.693129,.05,.05,0,0,0,0,0,0,0,0,0,0,7.7175536,57.06,57.76,40.06,58.99,8.333333333333334,1,1,0,0,6,12,5,1,1576,508249.22,379580.69,287286.06,110634.28,0,0,5180.8276 +4802,5854,10424,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,4,8.8322144,8.6439161,0,0,0,-1098.2432,0,2,3,2021,9,0,55,49,1,0,0,15.014449,15.014449,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,4585,-222146.05,17705.197,0,0,7934.5957,0,2458.5032 +4802,5855,10425,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,8.6679306,9.0004988,0,0,0,-901.29907,0,3,3,2021,9,1,42,45,1,1,0,19.095434,19.095434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.44,45.12,-9,-9,8.333333333333334,1,1,0,0,7,5,5,1,790,-147952.92,-125536.56,93057.414,0,4614.9165,0,2918.4316 +4803,5856,10426,10427,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.8036509,8.3450747,7,10,-53.168522,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1900778,58.15,52.91,62.39,56.71,10,1,1,0,0,9,5,4,1,2168.5,1426882.3,930928,328644.5,0,0,0,2682.3931 +4803,5856,10427,10426,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.4435511,7.3734021,0,7,-10,-42.352268,0,3,3,2021,5,0,23,24,1,0,0,8.2797728,8.2797728,0,0,0,0,0,0,0,2,0,0,0,3.8395152,0,62.39,56.71,58.15,52.91,8.333333333333334,1,1,0,0,9,5,4,1,2168.5,1426882.3,930928,328644.5,0,0,0,2682.3931 +4804,5857,10428,10429,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.7598977,8.1441956,0,1,4,17.641705,-9,-9,-9,2021,7,0,34,0,1,0,0,7.8704228,7.8704228,0,0,0,0,0,0,0,0,1,1,0,3.6027248,0,45.7,47.83,51.83,57.2,8.333333333333334,1,1,0,0,5,7,4,1,1774.5,116285.77,67690.547,95325.977,22211.748,0,0,1898.5222 +4804,5857,10429,10428,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,7.5257597,7.5472589,0,1,-4,-49.979431,-9,2,2,2021,4,0,35,0,1,0,0,5.7304115,5.7304115,0,0,0,0,0,0,0,0,1,1,0,2.7956722,0,51.83,57.2,45.7,47.83,8.333333333333334,1,1,0,0,9,7,4,1,1774.5,116285.77,67690.547,95325.977,22211.748,0,0,1898.5222 +4805,5858,10430,10431,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.2944269,8.5198193,0,19,2,-80.72049,0,2,2,2021,19,6,38,38,1,6,0,10.476109,10.476109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.18,59.32,27.55,51.07,1.666666666666667,1,1,0,0,14,6,5,1,306,346427.88,341821.94,310351.44,163336.88,6336.8999,1103.3856,3770.0454 +4805,5858,10431,10430,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.6396761,8.4003363,0,19,-2,-.28188539,0,2,2,2021,22,10,48,45,1,10,0,18.904016,18.904016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.55,51.07,32.18,59.32,5,1,1,0,0,14,6,5,1,306,346427.88,341821.94,310351.44,163336.88,6336.8999,1103.3856,3770.0454 +4806,5859,10432,-9,10435,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.4717,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4806,5859,10433,-9,10435,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2892,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4806,5859,10434,10435,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.3830357,8.2444868,0,1,2,127.74599,-9,-9,-9,2021,10,0,50,0,1,1,0,10.348897,10.348897,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,54.79,55.86,10,1,1,0,0,0,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4806,5859,10435,10434,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,7.9009318,8.2196245,0,1,-2,-164.41954,0,2,1,2021,9,0,38,46,1,0,0,9.2727976,9.2727976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,41.17,59.31,1.666666666666667,1,1,0,0,6,5,4,0,666.25,68208.086,16071.159,134851.5,76610.32,5639.6274,0,2864.2417 +4807,5860,10436,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.7269306,8.724637,0,0,0,-963.61945,0,-9,-9,2021,8,1,38,38,1,1,0,20.014345,20.014345,.05,.05,0,0,0,0,0,0,1,1,0,5.7717633,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,1163,275570.56,37139.324,0,0,0,0,1886.1625 +4808,5861,10437,10438,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7524977,8.8213673,0,3,17,136.37386,0,3,3,2021,9,0,70,60,1,0,0,12.608836,12.608836,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.69,50.51,65.2,47.14,8.333333333333334,1,1,0,0,8,10,5,1,541.5,801632.88,637358.25,0,0,0,0,2809.9653 +4808,5861,10438,10437,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.0182695,8.0742559,0,3,-17,51.416233,0,-9,-9,2021,1,0,63,0,1,0,0,4.8370004,4.8370004,.05,.05,0,0,0,0,0,0,1,1,0,.2352166,0,65.2,47.14,60.69,50.51,8.333333333333334,1,1,0,0,3,10,5,1,541.5,801632.88,637358.25,0,0,0,0,2809.9653 +4808,5862,10439,-9,10438,-9,1,1,23,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1041.3636,0,2,-9,2021,33,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.08,40.88,-9,-9,0,1,1,1,0,0,10,1,1,1070,2573.1321,0,0,0,0,0,1499.1677 +4809,5863,10440,10441,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.2695646,8.1840382,46,2,-97.289658,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4092388,8.0518303,45.46,52.15,57.16,56.15,8.333333333333334,1,1,0,0,4,11,4,1,1401.5,1436481,1139863.5,252968.31,0,0,0,3440.2485 +4809,5863,10441,10440,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.4246011,7.2844324,46,-2,-42.987377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0236382,7.3468857,57.16,56.15,45.46,52.15,8.333333333333334,1,1,0,0,0,11,4,1,1401.5,1436481,1139863.5,252968.31,0,0,0,3440.2485 +4810,5864,10442,10443,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.3529029,6.3669896,57,0,-49.086254,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1155543,52,47,54.67,22.22,7,1,1,0,0,0,2,2,1,801.5,669187.69,264104.88,239746.84,10653.842,0,5456.7607,2291.4021 +4810,5864,10443,10442,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.8140836,6.6607585,57,0,69.663765,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,68.863701,0,0,1,1,0,.77325171,6.5821981,54.67,22.22,52,47,8.333333333333334,1,1,0,0,0,2,2,1,801.5,669187.69,264104.88,239746.84,10653.842,0,5456.7607,2291.4021 +4811,5865,10444,10445,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.1666555,8.2573843,0,2,-6,53.329449,0,-9,-9,2021,2,0,40,40,1,0,0,10.954932,10.954932,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,51.83,57.2,10,1,1,0,0,5,8,5,1,944,265697.75,53450.152,296854.19,72003.641,0,0,4465.7852 +4811,5865,10445,10444,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.8298349,8.6154346,0,2,6,25.449497,0,-9,-9,2021,6,0,45,45,1,0,0,18.153746,18.153746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.73,58.82,8.333333333333334,1,1,0,0,4,8,5,1,944,265697.75,53450.152,296854.19,72003.641,0,0,4465.7852 +4811,5865,10446,-9,10444,10445,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.55182,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,944,265697.75,53450.152,296854.19,72003.641,0,0,4465.7852 +4812,5866,10447,10448,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,7.5023065,7.3417759,0,1,4,60.04694,-9,-9,-9,2021,7,0,30,0,1,0,0,6.5900474,6.5900474,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.89,54.92,45.96,51.96,8.333333333333334,1,1,0,0,0,2,4,0,480,176983.16,-271.68799,182600.72,101851.5,0,0,3494.2163 +4812,5866,10448,10447,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.6345787,8.6145334,0,1,-4,164.38008,-9,-9,-9,2021,11,3,52,0,1,3,0,10.615074,10.615074,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.96,51.96,39.89,54.92,8.333333333333334,1,1,0,0,2,2,4,0,480,176983.16,-271.68799,182600.72,101851.5,0,0,3494.2163 +4812,5867,10449,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1058.9312,-9,-9,-9,2021,32,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,22.05,56.49,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,1114,19163.582,0,0,0,0,0,0 +4812,5868,10450,10451,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.6906109,7.9176536,0,1,2,39.912846,-9,-9,-9,2021,25,11,38,0,1,11,0,7.1309614,7.1309614,0,0,0,0,0,0,0,0,0,0,0,0,0,37.3,58.69,12.12,67.62,3.333333333333333,1,1,0,0,0,2,3,0,2234.5,11968.146,0,0,0,0,0,904.92163 +4812,5868,10451,10450,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,1,-2,-38.233418,-9,-9,-9,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,67.62,37.3,58.69,3.333333333333333,1,1,1,0,0,2,3,0,2234.5,11968.146,0,0,0,0,0,904.92163 +4813,5869,10452,10453,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,9.0077887,8.3737135,49,1,-29.948393,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.421104,9.0468302,58.9,45.74,51.23,43.7,8.333333333333334,1,1,0,0,0,8,5,1,646.5,1651096.8,551388.63,847709.75,0,0,0,4842.8984 +4813,5869,10453,10452,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.4543076,5.679697,49,-1,116.77827,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.6263013,51.23,43.7,58.9,45.74,8.333333333333334,1,1,0,0,0,8,5,1,646.5,1651096.8,551388.63,847709.75,0,0,0,4842.8984 +4814,5870,10454,10455,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.0687923,8.1263523,0,10,-4,-35.928246,-9,3,3,2021,10,1,45,0,1,1,0,8.561841,8.561841,0,0,0,0,0,0,0,0,0,0,0,1.2357082,0,44.17,55.16,44.44,55.46,8.333333333333334,1,1,0,0,13,8,4,1,654.5,589603.5,232910.16,308639.31,0,0,0,2408.8696 +4814,5870,10455,10454,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.4553223,7.3675094,0,10,4,31.440077,0,3,3,2021,12,0,30,35,1,0,0,6.3765059,6.3765059,0,0,0,0,0,0,0,0,0,0,0,1.6407007,0,44.44,55.46,44.17,55.16,5,1,1,0,0,13,8,4,1,654.5,589603.5,232910.16,308639.31,0,0,0,2408.8696 +4815,5871,10456,-9,10458,10459,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.5187,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5871,10457,-9,10458,10459,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.9309,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5871,10458,10459,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,0,0,0,21,-2,-17.759827,0,3,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.75,34.71,40.21,30.35,8.333333333333334,4,2,0,0,0,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5871,10459,10458,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,7.7288108,7.5310402,0,7,2,109.23826,0,2,2,2021,18,7,35,45,1,7,0,7.8844337,7.8844337,0,0,0,0,0,0,0,0,1,1,0,0,0,40.21,30.35,42.75,34.71,1.666666666666667,2,3,0,0,9,5,2,1,1253.75,538423.31,177468.31,390935.59,0,0,0,1557.3452 +4815,5872,10460,-9,10458,10459,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-989.12964,-9,2,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,54.38,-9,-9,8.333333333333334,2,3,0,0,0,5,1,1,463,80763.766,0,0,0,0,0,0 +4816,5873,10461,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.5159574,6.7811165,0,0,-1001.3938,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6167049,57.06,57.76,-9,-9,10,1,1,0,0,3,2,2,1,279,379897.34,54957.535,325058.78,0,0,2279.9675,694.7066 +4817,5874,10462,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.2817783,7.3626566,0,0,0,-1021.6522,0,2,-9,2021,7,0,22,27,1,0,0,7.2088089,7.2088089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,9,10,2,1,441.33334,84585.25,181301.08,221497.73,164668.89,0,0,1158.896 +4817,5874,10463,-9,10462,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-989.7937,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,.05563641,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,2,1,441.33334,84585.25,181301.08,221497.73,164668.89,0,0,1158.896 +4817,5874,10464,-9,10462,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.1804,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,1,441.33334,84585.25,181301.08,221497.73,164668.89,0,0,1158.896 +4818,5875,10465,10466,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.1807413,6.3475142,52,2,17.689903,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1170282,6.7445092,52.88,51.14,58.32,50.22,6.666666666666667,1,1,0,0,3,6,2,1,1814,318572.41,68729.578,217141.91,0,0,0,1327.4834 +4818,5875,10466,10465,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.0845098,4.1146641,52,-2,42.139244,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8037536,4.2447286,58.32,50.22,52.88,51.14,0,1,1,0,0,6,6,2,1,1814,318572.41,68729.578,217141.91,0,0,0,1327.4834 +4819,5876,10467,10468,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.3639741,7.2286973,0,11,3,145.73993,-9,2,2,2021,8,0,50,0,1,0,0,4.018146,4.018146,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.53,56.44,6.666666666666667,1,1,0,0,11,12,5,0,1084.5,1119807.5,855027.38,297669.28,780.04492,0,0,3666.4524 +4819,5876,10468,10467,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.9431581,9.1807394,0,11,-3,40.290089,0,2,2,2021,8,1,45,105,1,1,0,22.239634,22.239634,0,0,0,0,0,0,0,0,0,0,0,2.4937825,0,59.53,56.44,57.16,56.15,6.666666666666667,1,1,0,0,11,12,5,0,1084.5,1119807.5,855027.38,297669.28,780.04492,0,0,3666.4524 +4820,5877,10469,10470,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,8.0499763,8.265707,10,6,106.76457,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4542699,0,57.31,45.44,62.25,48.33,8.333333333333334,1,1,0,0,6,10,3,1,560,799331.81,530071.63,207342.78,0,0,0,2307.0654 +4820,5877,10470,10469,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,0,0,0,10,-6,-65.709473,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9533753,0,62.25,48.33,57.31,45.44,8.333333333333334,1,1,0,0,6,10,3,1,560,799331.81,530071.63,207342.78,0,0,0,2307.0654 +4821,5878,10471,10472,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,36,6,0,0,3,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,3.6095452,0,0,1,1,0,0,0,40.35,29.91,42.1,37.58,5,1,1,0,0,0,11,1,1,546.5,-98254.977,0,0,0,0,0,650.61499 +4821,5878,10472,10471,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,36,-6,0,0,3,3,2021,28,12,0,30,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,37.58,40.35,29.91,5,1,1,1,0,13,11,1,1,546.5,-98254.977,0,0,0,0,0,650.61499 +4822,5879,10473,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1049.5535,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0493555,0,49.56,50.07,-9,-9,3.333333333333333,1,1,0,0,0,7,1,1,803,-95999.859,0,0,0,0,0,6603.6855 +4823,5880,10474,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.9019141,7.8251448,0,0,0,-880.78723,-9,3,3,2021,20,8,39,0,1,8,0,7.1991057,7.1991057,0,0,0,0,0,0,0,0,1,1,0,0,0,29.57,58.13,-9,-9,5,1,1,0,0,9,6,3,1,609,-75236.367,0,0,0,8423.2695,0,1136.7603 +4824,5881,10475,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.3149176,6.7620254,0,0,-1126.1334,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1771917,0,0,1,1,0,0,6.1744318,46.44,29.03,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,208,262557.78,152221.25,115845.87,0,0,0,444.0144 +4825,5882,10476,10478,-9,-9,1,1,33,2,2,0,1,1,-9,0,4,8.159317,8.4887991,0,8,-2,6.4347992,0,2,2,2021,11,1,35,41,1,1,0,16.22636,16.22636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,43.37,57.28,8.333333333333334,1,1,0,0,8,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4825,5882,10477,-9,10478,10476,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1136.8417,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4825,5882,10478,10476,-9,-9,1,0,35,2,2,0,2,2,-9,0,3,7.5103102,7.5867982,0,8,2,40.952648,0,1,2,2021,14,2,24,22,1,2,0,8.1946287,8.1946287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,43.54,59.6,8.333333333333334,1,1,0,0,9,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4825,5882,10479,-9,10478,10476,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.3437,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,417.75,163224.13,117433.27,280421.84,175592.91,0,0,3154.8054 +4826,5883,10480,10481,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.5194387,7.5586109,0,32,2,-115.77847,0,-9,-9,2021,12,0,35,38,1,0,0,6.5077829,6.5077829,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,11,9,5,0,102,616051.13,572221.38,0,0,-1073.2852,1095.9487,2584.0676 +4826,5883,10481,10480,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.6719322,8.6820555,0,32,-2,110.30958,0,3,2,2021,10,0,40,46,1,0,0,15.563569,15.563569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,10,9,5,0,102,616051.13,572221.38,0,0,-1073.2852,1095.9487,2584.0676 +4826,5884,10482,-9,10480,10481,1,1,25,0,0,0,2,2,-9,0,4,8.3756456,8.4901285,0,0,0,-955.58081,0,2,2,2021,12,0,35,39,1,0,1,11.285562,11.285562,.05,.05,0,0,0,0,0,0,0,0,0,.64145762,0,49.52,55.68,-9,-9,5,1,1,0,0,10,9,5,0,401,138378.14,191745.03,0,0,0,0,1972.7384 +4827,5885,10483,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,7.9747181,8.0963211,0,0,0,-976.76727,0,2,1,2021,10,0,33,48,1,0,0,10.107437,10.107437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.54,58.94,-9,-9,1.666666666666667,1,1,0,0,5,12,4,1,1227,29943.713,45145.895,106964.13,99485.195,0,2930.2415,63.811066 +4828,5886,10484,10485,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,10,-7,41.4118,0,2,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5013337,0,39.75,54.92,33.18,49.96,8.333333333333334,1,1,0,0,2,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4828,5886,10485,10484,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.3017883,9.2510395,0,10,7,-83.837288,0,2,3,2021,11,0,98,53,1,0,0,8.4943962,8.4943962,.05,.05,0,0,0,0,0,0,1,1,0,4.5335279,0,33.18,49.96,39.75,54.92,5,1,1,0,0,11,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4828,5886,10486,-9,10484,10485,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.8965,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4828,5886,10487,-9,10484,10485,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.11133,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1110,613848.5,523796.81,173039.42,6667.2319,0,35.545792,3459.7458 +4829,5887,10488,10489,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,0,0,0,9,6,-83.671669,0,3,3,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.35,43.93,57.16,56.15,3.333333333333333,1,1,1,1,1,13,3,1,583.5,534932.25,411291.47,183470.81,0,9460.3145,0,1307.5808 +4829,5887,10489,10488,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1545134,8.0531197,0,9,-6,-24.115875,0,3,3,2021,11,0,38,38,1,0,0,9.1087017,9.1087017,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.35,43.93,8.333333333333334,1,1,0,0,10,13,3,1,583.5,534932.25,411291.47,183470.81,0,9460.3145,0,1307.5808 +4830,5888,10490,10491,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.9379196,7.8168035,6,2,57.078018,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2468443,7.766993,47.07,56.64,43.36,44.85,8.333333333333334,1,1,0,0,1,4,3,1,609,759304.75,635039.5,190710.59,0,5162.5483,2282.7883,3444.5601 +4830,5888,10491,10490,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,6,-2,-60.466259,0,2,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1864119,0,43.36,44.85,47.07,56.64,8.333333333333334,1,1,0,0,0,4,3,1,609,759304.75,635039.5,190710.59,0,5162.5483,2282.7883,3444.5601 +4830,5889,10492,-9,10491,10490,1,1,32,0,0,0,2,2,-9,0,5,8.0090551,7.7744465,0,0,0,-965.17932,0,2,1,2021,6,0,35,15,1,0,0,9.7214718,9.7214718,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,5,1,1,0,0,4,4,3,1,1363,75856.758,18325.211,0,0,0,0,1384.0831 +4831,5890,10493,-9,10495,10494,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.8504,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4831,5890,10494,10495,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,8.4519424,8.2494364,0,25,2,22.836765,0,2,2,2021,7,0,48,48,1,0,0,9.0610104,9.0610104,0,0,.05,0,0,0,0,0,1,1,0,6.595108,0,49.25,61.25,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4831,5890,10495,10494,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.4908571,8.7058611,0,25,-2,-92.933609,0,2,1,2021,8,0,27,27,1,0,0,29.058355,29.058355,0,0,.05,0,0,0,0,0,1,1,0,5.1887035,0,57.06,57.76,49.25,61.25,8.333333333333334,1,1,0,0,8,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4831,5890,10496,-9,10495,10494,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.9543,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,691,435467.06,58332.125,129252.69,-7672.6055,0,0,4586.9365 +4832,5891,10497,10498,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.7702146,8.029439,8,0,145.26627,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.3040013,8.0738497,58.32,50.22,55.36,51.57,8.333333333333334,1,1,0,0,5,7,5,0,344.5,3190862,2714181.5,502999.94,95893.453,10260.475,17202.891,4507.3076 +4832,5891,10498,10497,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7392273,8.9935131,0,8,0,-97.539902,-9,2,2,2021,6,0,45,0,1,0,0,12.219941,12.219941,0,0,0,0,0,0,0,2,0,0,0,.72682744,0,55.36,51.57,58.32,50.22,8.333333333333334,1,1,0,0,11,7,5,0,344.5,3190862,2714181.5,502999.94,95893.453,10260.475,17202.891,4507.3076 +4833,5892,10499,10500,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5596123,8.5288782,0,34,-3,16.150396,0,2,2,2021,9,0,60,55,1,0,0,8.9907637,8.9907637,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,53.61,52.37,3.333333333333333,1,1,0,0,13,7,5,1,1301.5,442761.53,310053.78,0,0,7147.4941,3564.146,2775.1753 +4833,5892,10500,10499,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.5303736,7.8321376,34,3,-25.486885,0,1,3,2021,9,0,0,17,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,3.2467976,7.6658397,53.61,52.37,49.58,55.59,8.333333333333334,1,1,1,0,11,7,5,1,1301.5,442761.53,310053.78,0,0,7147.4941,3564.146,2775.1753 +4834,5893,10501,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.6917915,8.7148762,8.3519564,0,0,-874.37573,0,2,1,2021,12,0,47,40,1,0,0,4.8944945,4.8944945,0,0,0,0,0,0,0,0,1,1,0,9.6231546,5.6793404,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,1850,1382150.4,641099.19,531249.56,0,0,0,6858.2109 +4835,5894,10502,-9,10504,10503,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.01788,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,6,5,1,757.33331,-255737.61,65224.055,166352.44,406148.97,0,0,4428.6191 +4835,5894,10503,10504,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.5226316,8.658803,0,16,0,-89.885895,0,2,2,2021,9,0,40,43,1,0,0,19.125259,19.125259,0,0,.05,0,0,0,0,0,1,1,0,4.3045001,0,57.06,57.76,50.68,49.72,8.333333333333334,1,1,0,0,8,6,5,1,757.33331,-255737.61,65224.055,166352.44,406148.97,0,0,4428.6191 +4835,5894,10504,10503,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6569204,8.5218143,0,5,0,-61.396725,0,1,3,2021,11,1,50,50,1,1,0,15.631827,15.631827,0,0,.05,0,0,0,0,0,1,1,0,0,0,50.68,49.72,57.06,57.76,8.333333333333334,1,1,0,0,6,6,5,1,757.33331,-255737.61,65224.055,166352.44,406148.97,0,0,4428.6191 +4836,5895,10505,10506,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.5826206,5.5753074,44,-4,-231.93219,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,9.2901335,0,0,1,1,0,3.0662768,5.5702991,63.77,25.77,60.05,26.59,8.333333333333334,1,1,0,0,0,9,2,1,629,26203.719,58898.055,0,0,2221.2466,0,1207.5026 +4836,5895,10506,10505,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.5505424,6.373889,44,4,-16.346298,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.23583509,6.8087463,60.05,26.59,63.77,25.77,10,1,1,0,0,0,9,2,1,629,26203.719,58898.055,0,0,2221.2466,0,1207.5026 +4837,5896,10507,-9,10509,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.54517,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,3,0,483.33334,223664.09,185656.11,129531.76,41854.977,0,0,1729.7961 +4837,5896,10508,-9,10509,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.557,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,483.33334,223664.09,185656.11,129531.76,41854.977,0,0,1729.7961 +4837,5896,10509,-9,-9,-9,1,0,45,0,2,0,1,1,1,0,5,7.7121601,7.8578267,0,0,0,-1030.4952,-9,1,1,2021,4,0,24,0,1,0,0,10.676859,10.676859,.05,.05,0,0,0,0,0,2,1,1,0,2.5711389,0,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,1,11,3,0,483.33334,223664.09,185656.11,129531.76,41854.977,0,0,1729.7961 +4838,5897,10510,-9,10512,10511,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0585,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4838,5897,10511,10512,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.1832323,9.1194439,0,11,3,141.35362,0,2,2,2021,12,0,60,47,1,0,0,21.7216,21.7216,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,11,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4838,5897,10512,10511,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.5373859,9.5484896,0,11,-3,-10.143034,0,-9,-9,2021,11,0,40,45,1,0,0,30.093037,30.093037,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,12,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4838,5897,10513,-9,10512,10511,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.895,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,1098.75,402122.97,194839.09,287340.16,141479.19,-713.78845,0,6740.5732 +4839,5898,10514,10519,-9,-9,1,1,44,2,5,0,1,1,-9,0,2,7.8657355,8.2221508,0,4,3,-23.693296,0,3,2,2021,14,2,60,70,1,2,0,5.2082782,5.2082782,0,0,0,0,0,0,0,0,1,1,0,0,0,39.39,40.36,42.93,39.53,6.666666666666667,2,3,0,0,11,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10515,-9,10519,10514,1,1,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-991.51117,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10516,-9,10519,10514,1,0,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-938.62329,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10517,-9,10519,10514,1,0,3,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.4352,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10518,-9,10519,10514,1,0,13,2,5,1,3,0,-9,0,2,0,0,0,0,0,-963.56708,-9,-9,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10519,10514,-9,-9,1,0,41,2,5,0,2,2,-9,0,4,6.7225947,6.6806126,0,4,-3,63.708492,0,-9,-9,2021,10,0,36,-9,1,0,0,2.3195,2.3195,0,0,0,0,0,0,0,0,1,1,0,0,0,42.93,39.53,39.39,40.36,8.333333333333334,2,3,0,0,5,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4839,5898,10520,-9,10519,10514,1,0,11,2,5,1,3,0,-9,0,2,0,0,0,0,0,-971.97906,-9,-9,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,2,2,1,772.57141,-30113.063,0,0,0,29385.881,996.78967,1929.1813 +4840,5899,10521,-9,10523,10522,1,1,17,0,0,1,2,0,-9,0,4,0,5.2953844,5.2771082,0,0,-915.10657,-9,1,3,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0556617,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,2408.3333,4630229.5,3931633,428727.94,225333.5,6240.8838,0,4757.6826 +4840,5899,10522,10523,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0192356,8.2470865,0,27,5,9.4113951,0,3,2,2021,6,0,38,38,1,0,0,8.6808643,8.6808643,.05,.05,0,0,0,0,0,0,1,1,0,4.4833636,0,54.61,49.13,55.96,49.93,8.333333333333334,1,1,0,0,12,11,5,1,2408.3333,4630229.5,3931633,428727.94,225333.5,6240.8838,0,4757.6826 +4840,5899,10523,10522,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.2596207,9.2993555,0,27,-5,-31.809109,0,2,3,2021,6,0,38,38,1,0,0,27.379751,27.379751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,54.61,49.13,8.333333333333334,1,1,0,0,11,11,5,1,2408.3333,4630229.5,3931633,428727.94,225333.5,6240.8838,0,4757.6826 +4840,5900,10524,-9,10523,10522,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1027.1069,-9,1,3,2021,16,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.05,46.98,-9,-9,6.666666666666667,1,1,0,0,2,11,1,1,353,44145.117,0,0,0,-518.14233,0,0 +4841,5901,10525,10526,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.2533159,9.2679367,0,18,2,-53.981022,0,2,1,2021,8,0,60,50,1,0,0,18.445505,18.445505,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.94,58.01,54.2,57.49,8.333333333333334,1,1,0,0,12,5,5,0,2380,245378.03,174624.84,0,0,0,0,3569.4246 +4841,5901,10526,10525,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,0,0,0,28,-2,-67.200745,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.94,58.01,8.333333333333334,1,1,1,0,3,5,5,0,2380,245378.03,174624.84,0,0,0,0,3569.4246 +4842,5902,10527,10528,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,7.6985378,7.5824423,29,5,-35.08165,0,3,2,2021,11,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3176818,7.7430253,50.51,53.71,52.82,53.97,8.333333333333334,1,1,0,0,10,13,4,1,511.5,713510.88,789988.5,0,0,0,1409.9181,2055.897 +4842,5902,10528,10527,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2618895,8.4032698,0,29,-5,-30.360453,0,2,2,2021,12,0,37,37,1,0,0,10.070521,10.070521,0,0,0,0,0,0,0,0,0,0,0,.62018007,0,52.82,53.97,50.51,53.71,8.333333333333334,1,1,0,0,11,13,4,1,511.5,713510.88,789988.5,0,0,0,1409.9181,2055.897 +4843,5903,10529,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,8.5920401,8.3917265,5.8103037,0,0,-1011.0887,0,3,3,2021,8,0,50,50,1,0,0,9.3519106,9.3519106,.05,.05,0,0,0,0,0,0,1,1,0,5.3821864,0,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,124,87196.508,8548.4121,31512.846,16864.047,0,0,1826.2001 +4843,5904,10530,-9,10529,-9,1,1,23,0,1,0,3,3,-9,0,3,8.4928961,8.5541506,0,0,0,-952.0321,0,1,2,2021,4,0,41,51,1,0,1,14.060248,14.060248,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,292,239.62999,0,0,0,0,0,901.94025 +4844,5905,10531,-9,10533,10532,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.4292,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,0,940.66669,1234891.9,184803,428576.75,112749.13,0,0,4437.3999 +4844,5905,10532,10533,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,8.3854713,8.4319916,0,21,5,-23.541456,0,1,2,2021,10,0,50,40,1,0,0,10.302064,10.302064,.05,.05,0,0,0,0,0,0,1,1,0,3.5957589,0,46.67,55.57,58.15,52.91,8.333333333333334,1,1,0,0,8,7,5,0,940.66669,1234891.9,184803,428576.75,112749.13,0,0,4437.3999 +4844,5905,10533,10532,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.5030336,8.744091,0,18,-5,86.586197,0,2,2,2021,11,0,40,40,1,0,0,23.057354,23.057354,.05,.05,0,0,0,0,0,0,1,1,0,3.5727708,0,58.15,52.91,46.67,55.57,8.333333333333334,1,1,0,0,11,7,5,0,940.66669,1234891.9,184803,428576.75,112749.13,0,0,4437.3999 +4845,5906,10534,-9,10535,10536,1,1,21,0,0,0,2,2,-9,0,5,7.7207017,7.4282231,0,0,0,-982.57782,0,2,2,2021,8,0,40,37,1,0,1,6.9254932,6.9254932,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,11,3,1,1445,51307.082,0,0,0,0,0,716.05975 +4845,5907,10535,10536,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.8134007,7.7133079,0,9,-7,-140.56694,0,2,2,2021,9,0,28,28,1,0,0,7.7961636,7.7961636,0,0,0,0,0,0,0,0,0,0,0,0,0,54.81,47.49,44.53,56.37,8.333333333333334,1,1,0,0,10,11,4,1,796,-1571.4434,-92629.609,0,0,0,0,2514.7632 +4845,5907,10536,10535,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3870001,8.4444551,0,9,7,-38.020378,0,-9,-9,2021,11,0,118,55,1,0,0,4.1797624,4.1797624,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.53,56.37,54.81,47.49,8.333333333333334,1,1,0,0,10,11,4,1,796,-1571.4434,-92629.609,0,0,0,0,2514.7632 +4846,5908,10537,10538,-9,-9,1,0,21,0,0,0,2,2,-9,0,5,7.7934399,8.2457876,0,2,-2,26.97788,0,3,3,2021,8,0,37,7,1,0,0,9.2532721,9.2532721,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,49,58,10,1,1,0,0,5,2,5,1,494.5,-76072.203,7203.5527,185856.75,183685.53,0,0,2949.0591 +4846,5908,10538,10537,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.3275108,8.5196648,0,2,2,70.684784,0,-9,-9,2021,10,0,40,45,1,2,0,14.896632,14.896632,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49,58,51.73,58.82,7,1,1,0,0,1,2,5,1,494.5,-76072.203,7203.5527,185856.75,183685.53,0,0,2949.0591 +4847,5909,10539,10540,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.2221794,7.7741585,0,3,-8,30.321863,0,-9,-9,2021,10,2,37,44,1,2,0,11.550582,11.550582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.96,61.14,10,1,1,0,0,10,7,5,0,629,888178.56,607085.81,251073.19,49015.828,0,8152.4868,3257.5454 +4847,5909,10540,10539,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.9304495,9.0503769,0,3,8,17.569595,0,-9,-9,2021,18,6,60,50,1,6,0,10.024148,10.024148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.96,61.14,57.16,56.15,5,1,1,0,0,8,7,5,0,629,888178.56,607085.81,251073.19,49015.828,0,8152.4868,3257.5454 +4848,5910,10541,10544,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.3174343,9.7207355,0,14,5,50.772934,0,1,1,2021,7,0,41,41,1,0,0,41.714569,41.714569,.05,.05,0,0,0,0,0,0,1,1,0,9.1279745,0,57.16,56.15,35.79,48.98,8.333333333333334,2,3,0,0,11,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4848,5910,10542,-9,10544,10541,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.3071,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4848,5910,10543,-9,10544,10541,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.1853,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4848,5910,10544,10541,-9,-9,1,0,36,1,2,0,1,1,-9,0,2,0,0,0,14,-5,-66.639984,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.79,48.98,57.16,56.15,6.666666666666667,2,3,1,0,0,9,5,1,1319.5,325275.63,165354.3,161307.47,91158.523,5499.6914,2757.7173,7570.6089 +4849,5911,10545,-9,-9,-9,1,0,56,0,0,0,1,1,-9,1,1,0,0,0,0,0,-958.59912,0,3,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,2,6,1,0,445,54135.035,0,0,0,0,0,1252.3312 +4850,5912,10546,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.5425549,8.0034838,0,0,0,-953.4104,0,-9,-9,2021,6,0,45,53,1,0,0,11.314027,11.314027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.63,37.05,-9,-9,8.333333333333334,1,1,0,0,14,12,5,1,528,7731.9614,57074.914,0,0,0,0,1909.6367 +4851,5913,10547,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,5,0,7.7706819,7.4324818,0,0,-871.75714,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5238705,52.27,58.55,-9,-9,10,1,1,0,0,0,11,3,0,1070,316195.53,299997.47,-36005.402,0,0,0,875.0271 +4852,5914,10548,10549,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.7373705,8.8393278,0,4,-3,6.0221281,0,2,2,2021,9,0,42,42,1,0,0,16.509045,16.509045,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.34,47.5,61.11,48.86,8.333333333333334,1,1,0,0,10,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4852,5914,10549,10548,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.6753311,7.5731835,5.9546704,4,3,-19.298296,0,-9,-9,2021,10,1,20,25,1,1,0,10.174561,10.174561,.05,.05,0,0,0,0,0,2,1,1,0,5.7054067,0,61.11,48.86,49.34,47.5,10,1,1,0,0,4,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4852,5914,10550,-9,10549,10548,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.37329,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4852,5914,10551,-9,10549,10548,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1021.5811,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,0,921,124969.84,-46943.48,182504.69,144235.61,0,896.88434,3254.5789 +4853,5915,10552,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.4277554,8.4317446,0,0,0,-959.14362,0,3,3,2021,11,1,37,37,1,1,0,14.19681,14.19681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1166,83966.594,50901.512,0,0,0,818.22412,1478.7855 +4853,5915,10553,-9,10552,-9,1,0,16,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1059.4817,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,3,4,0,0,12,7,5,1,1166,83966.594,50901.512,0,0,0,818.22412,1478.7855 +4853,5916,10554,-9,10552,-9,1,1,22,0,0,0,2,2,-9,0,3,8.0655499,8.1664486,0,0,0,-1014.9579,0,2,-9,2021,20,7,34,49,1,7,1,9.7732887,9.7732887,0,0,0,0,0,0,0,0,1,1,0,0,0,26.08,55.45,-9,-9,1.666666666666667,3,4,0,0,4,7,4,1,340,235439.09,0,0,0,0,1386.1151,1185.2903 +4854,5917,10555,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.2355213,7.3081532,0,0,-925.49506,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1973152,7.1975946,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,732,144391.27,112649.8,0,0,0,0,1294.8594 +4855,5918,10556,10557,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.201704,8.4770832,0,4,-2,-33.756371,0,-9,-9,2021,13,1,50,55,1,1,0,10.810671,10.810671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,14.69,66.59999999999999,32.47,46.29,5,1,1,0,0,12,11,5,1,589.5,186400.03,130400.53,175205.28,143720.63,2987.647,0,3695.2764 +4855,5918,10557,10556,-9,-9,1,1,33,0,0,0,3,3,-9,0,2,8.31178,8.1870928,0,4,2,-13.933138,0,2,-9,2021,15,4,50,50,1,4,0,10.136051,10.136051,.05,.05,0,0,0,0,0,0,0,0,0,3.2367105,0,32.47,46.29,14.69,66.59999999999999,6.666666666666667,1,1,0,0,10,11,5,1,589.5,186400.03,130400.53,175205.28,143720.63,2987.647,0,3695.2764 +4856,5919,10558,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,8.1009722,8.0671234,0,0,0,-878.12372,0,2,2,2021,6,0,82,40,1,0,0,3.9879062,3.9879062,.05,.05,0,0,0,0,0,0,1,1,0,5.0869117,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,1374,393995.56,-25720.602,141760.95,0,0,0,1358.4451 +4857,5920,10559,10560,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,12,-8,122.21237,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,55.71,57.16,56.15,5,1,1,0,0,7,12,2,1,776.5,127409.35,47725.234,0,0,-1926.0667,2699.7246,1427.9133 +4857,5920,10560,10559,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,5.5624342,5.2670112,12,8,-58.93322,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7565427,57.16,56.15,43.2,55.71,8.333333333333334,1,1,0,0,7,12,2,1,776.5,127409.35,47725.234,0,0,-1926.0667,2699.7246,1427.9133 +4858,5921,10561,-9,10564,10563,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.71381,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4858,5921,10562,-9,10564,10563,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.0087,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4858,5921,10563,10564,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.1400127,9.3058901,0,13,4,-23.808289,0,2,1,2021,11,0,37,40,1,0,0,26.46213,26.46213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,60.6,43.75,6.666666666666667,2,3,0,0,7,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4858,5921,10564,10563,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,13,-4,133.00478,0,3,1,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.6,43.75,54.79,55.86,8.333333333333334,2,3,0,0,1,2,4,1,899.25,311056.69,170041.59,115477.78,59473.063,9641.585,0,3001.3813 +4859,5922,10565,10566,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.7217979,9.0675316,0,4,2,-37.094498,0,2,2,2021,22,10,38,37,1,10,0,14.890244,14.890244,.05,.05,0,0,0,0,0,0,1,0,1,0,0,32.38,61.1,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,1319,2374975.5,2234457.5,235048.23,0,0,0,3745.2651 +4859,5922,10566,10565,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.8072987,7.7319345,0,4,-2,25.278149,0,3,3,2021,6,0,30,30,1,0,0,6.4238386,6.4238386,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,32.38,61.1,10,1,1,0,0,8,12,5,1,1319,2374975.5,2234457.5,235048.23,0,0,0,3745.2651 +4859,5923,10567,-9,10566,10565,1,0,28,0,0,0,1,1,-9,0,5,8.3190174,8.0688601,0,0,0,-1091.3912,0,2,1,2021,10,0,46,0,1,0,1,10.639342,10.639342,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,295,-21042.766,0,0,0,0,0,1856.141 +4859,5924,10568,-9,10566,10565,1,0,23,0,0,0,1,1,-9,0,5,6.0044069,5.6880941,0,0,0,-1082.8942,0,3,1,2021,4,0,22,5,1,0,1,1.7495555,1.7495555,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,12,2,1,918,-168383.38,0,0,0,0,0,-110.45129 +4860,5925,10569,10570,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.4250803,9.5624723,0,9,-2,-114.07509,0,-9,-9,2021,7,0,38,38,1,0,0,38.342621,38.342621,.05,.05,.05,0,0,0,0,0,0,0,0,5.2068143,0,55.19,54.26,37.4,44.13,8.333333333333334,1,1,0,0,10,12,5,1,798,671523.19,209324.69,291437.5,0,14198.217,0,5626.6943 +4860,5925,10570,10569,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,7.3664074,7.5078402,9,2,-39.23196,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.7319663,7.3006425,37.4,44.13,55.19,54.26,8.333333333333334,1,1,0,0,9,12,5,1,798,671523.19,209324.69,291437.5,0,14198.217,0,5626.6943 +4861,5926,10571,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-985.92566,0,2,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.23,12.94,-9,-9,3.333333333333333,1,1,0,0,3,11,2,1,360,-137561.38,0,0,0,0,946.15326,1114.9106 +4862,5927,10572,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,4,0,7.8472371,7.8921719,0,0,-1080.7727,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.0667138,7.5820947,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1311,650714.69,191508.91,571161.25,0,0,0,1705.7554 +4862,5928,10573,-9,-9,10572,1,0,58,0,0,0,2,2,-9,1,1,0,5.9980011,6.1963558,0,0,-962.03149,0,-9,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.3106184,0,16.44,27.92,-9,-9,0,1,1,0,0,0,7,2,1,509,1493075.1,4207.8184,0,0,0,0,43.770004 +4863,5929,10574,-9,10575,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1038.7377,-9,2,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,53.85,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,275,63519.145,78585.852,0,0,0,0,2025.905 +4863,5929,10575,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.2479877,7.7901673,6.9796839,0,0,-1100.1326,0,3,2,2021,8,0,14,18,1,0,0,14.564818,14.564818,.05,.05,.05,0,0,0,0,0,1,1,0,7.3507242,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,275,63519.145,78585.852,0,0,0,0,2025.905 +4864,5930,10576,10577,-9,-9,1,0,45,0,0,0,2,2,-9,1,2,0,0,0,7,-3,87.544258,0,2,2,2021,20,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.82,25.5,50.96,47.26,3.333333333333333,1,1,1,0,0,11,4,0,618,-96629.906,-18396.42,0,0,0,0,2433.0508 +4864,5930,10577,10576,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,9.0150518,8.8823833,0,7,3,-23.534395,0,2,3,2021,12,2,54,51,1,2,0,11.193484,11.193484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.96,47.26,35.82,25.5,3.333333333333333,1,1,0,0,9,11,4,0,618,-96629.906,-18396.42,0,0,0,0,2433.0508 +4864,5931,10578,-9,10576,10577,1,1,20,0,0,0,2,2,-9,0,3,8.3316545,8.2183695,0,0,0,-967.32849,0,2,3,2021,6,0,37,56,1,0,1,9.7304783,9.7304783,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,3,11,4,0,574,0,0,0,0,0,0,1672.4338 +4864,5932,10579,-9,10576,10577,1,0,18,0,0,0,2,2,-9,0,2,0,4.6585531,4.3318062,0,0,-982.67267,1,2,3,2021,28,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5880308,0,25.93,43.93,-9,-9,1.666666666666667,1,1,0,0,0,11,2,0,479,-171321.48,0,0,0,0,0,400.89267 +4865,5933,10580,10581,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.9036808,8.8302097,0,3,1,79.295738,0,3,3,2021,10,0,80,70,1,1,0,12.503134,12.503134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,40.55,41.06,7,1,1,0,0,11,13,5,1,473.5,229405.69,-5132.8799,101585.31,0,0,0,4564.0791 +4865,5933,10581,10580,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,7.1248026,7.2996516,3,-1,-49.120316,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2888265,40.55,41.06,50,49,6.666666666666667,1,1,0,0,0,13,5,1,473.5,229405.69,-5132.8799,101585.31,0,0,0,4564.0791 +4865,5934,10582,-9,10581,10580,1,1,23,0,0,0,2,2,-9,0,4,7.8549523,8.2143717,0,0,0,-1028.5332,0,2,2,2021,10,0,38,35,1,1,1,11.078559,11.078559,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,7,13,4,1,4589,-29869.025,-20510.715,0,0,0,0,272.51013 +4865,5935,10583,-9,10581,10580,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-929.63269,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,1,0,13,1,1,594,0,0,0,0,0,0,0 +4866,5936,10584,10585,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.8503509,8.0700788,0,3,8,5.502605,0,3,3,2021,20,8,55,53,1,8,0,9.1867695,9.1867695,.05,.05,0,0,0,0,0,2,0,0,0,0,0,45.35,29.55,46.98,59.35,3.333333333333333,1,1,0,0,10,10,4,0,554.5,911868.13,488655.44,334785.63,0,0,0,3200.8374 +4866,5936,10585,10584,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1594143,7.9736948,0,3,-8,-43.009991,0,-9,-9,2021,11,1,35,35,1,1,0,8.8726997,8.8726997,0,0,0,0,0,0,0,0,0,0,0,8.0624247,0,46.98,59.35,45.35,29.55,10,1,1,0,0,7,10,4,0,554.5,911868.13,488655.44,334785.63,0,0,0,3200.8374 +4867,5937,10586,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.3838768,7.3343873,0,0,-886.98865,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3707643,7.7543898,55.68,46.02,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,1296,633924.44,269462.44,376467.34,0,0,0,1722.6533 +4868,5938,10587,10589,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3834429,8.2135725,0,16,-3,-68.737175,0,3,3,2021,4,0,47,47,1,0,0,12.25176,12.25176,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.54,41.38,47.84,49.53,8.333333333333334,2,3,0,0,9,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4868,5938,10588,-9,10587,10589,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-934.84827,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4868,5938,10589,10587,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,8.1161518,7.8343492,0,16,3,40.707516,0,3,3,2021,11,0,42,46,1,2,0,7.9235926,7.9235926,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.84,49.53,45.54,41.38,8.333333333333334,2,3,0,0,8,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4868,5938,10590,-9,10587,10589,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.49866,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,683.25,487741.69,319833.78,219781.5,104158.06,3940.7979,1517.6241,2446.1956 +4869,5939,10591,10592,10594,-9,1,0,49,0,0,0,2,2,-9,0,4,0,5.5616298,6.0285864,11,-5,-24.855669,0,2,2,2021,17,5,0,42,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4816136,0,41.29,56.37,28.77,55.6,3.333333333333333,1,1,0,0,13,6,5,1,317.66666,389873.22,370443.75,201074.02,116072.56,30193.576,4976.5439,3381.7803 +4869,5939,10592,10591,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,9.5761967,9.0570288,0,11,5,-1.3905505,0,2,2,2021,17,6,53,93,1,6,0,20.332869,20.332869,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,28.77,55.6,41.29,56.37,8.333333333333334,1,1,0,0,14,6,5,1,317.66666,389873.22,370443.75,201074.02,116072.56,30193.576,4976.5439,3381.7803 +4869,5939,10593,-9,10591,10592,1,0,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-946.56909,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,3.1915689,0,1,1,0,5.5168667,0,34.21,46.41,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,317.66666,389873.22,370443.75,201074.02,116072.56,30193.576,4976.5439,3381.7803 +4869,5940,10594,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.3526425,7.2898898,0,0,-1094.2883,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9466543,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,201,223938.86,202863.66,0,0,0,0,1199.0347 +4870,5941,10595,10596,-9,-9,1,1,56,0,2,0,1,1,-9,0,4,9.3164139,9.2567816,0,9,10,37.7999,0,3,3,2021,11,0,30,40,1,0,0,39.926418,39.926418,.05,.05,0,0,0,0,0,0,0,0,0,7.631392,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,10,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4870,5941,10596,10595,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.5207872,9.4105806,0,9,-10,10.797518,0,2,2,2021,8,0,39,38,1,0,0,36.993732,36.993732,0,0,0,0,0,0,0,0,0,0,0,2.0138621,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4870,5941,10597,-9,10596,10595,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.57935,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4870,5941,10598,-9,10596,10595,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1269.2069,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,505.75,4905579.5,2631237.5,1125679.8,167907.64,0,0,8387.957 +4871,5942,10599,10600,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,9.024869,8.7212629,0,24,-1,32.511116,0,2,2,2021,15,3,62,62,1,3,0,14.856018,14.856018,.05,.05,0,0,0,0,0,0,0,0,0,2.8929324,0,43.65,58.28,48.87,58.55,8.333333333333334,1,1,0,0,6,5,5,1,549.5,1315028.5,1024878,310170.69,31433.813,3913.022,0,5905.6309 +4871,5942,10600,10599,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.0590096,8.7234287,0,24,1,-41.254364,0,2,3,2021,10,0,58,58,1,0,0,14.375367,14.375367,.05,.05,0,0,0,0,0,0,0,0,0,.55961227,0,48.87,58.55,43.65,58.28,6.666666666666667,1,1,0,0,9,5,5,1,549.5,1315028.5,1024878,310170.69,31433.813,3913.022,0,5905.6309 +4872,5943,10601,10602,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.487812,8.6949406,0,2,-7,-12.034548,0,-9,-9,2021,9,0,40,45,1,0,0,19.911224,19.911224,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,35.91,63.19,8.333333333333334,1,1,0,0,4,12,5,1,867.5,-48978.297,-44562.992,135412.97,98227.625,863.28406,0,4166.6704 +4872,5943,10602,10601,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7606058,8.6323757,0,2,7,34.02142,0,1,1,2021,12,1,38,38,1,1,0,17.226627,17.226627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,46.63,59.72,8.333333333333334,1,1,0,0,7,12,5,1,867.5,-48978.297,-44562.992,135412.97,98227.625,863.28406,0,4166.6704 +4873,5944,10603,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.2543159,4.9082208,0,0,-961.77441,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5347981,5.0847759,55.51,51.57,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,1132,176630.25,0,219907.78,0,0,0,1046.9038 +4874,5945,10604,10605,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,6.0611882,6.4072046,0,32,-3,106.73383,0,3,2,2021,12,0,8,8,1,0,0,5.6413722,5.6413722,0,0,0,0,0,0,0,118,1,1,0,0,0,46.32,35.27,57.33,53.46,5,1,1,0,0,11,6,4,1,759,-84644.828,0,0,0,0,4237.5615,3027.2383 +4874,5945,10605,10604,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4824915,8.9016314,5.4821,33,3,-84.530281,0,2,-9,2021,6,0,44,44,1,0,0,12.538741,12.538741,0,0,0,0,0,0,0,2,1,1,0,6.2385669,5.6933832,57.33,53.46,46.32,35.27,8.333333333333334,1,1,0,0,10,6,4,1,759,-84644.828,0,0,0,0,4237.5615,3027.2383 +4874,5946,10606,-9,10604,10605,1,1,23,0,0,0,2,2,-9,0,3,7.8098574,7.9296575,0,0,0,-1016.5574,0,2,2,2021,12,0,47,44,1,0,1,5.9646649,5.9646649,.05,.05,0,0,0,0,0,2,1,1,0,0,0,37.97,47.27,-9,-9,5,1,1,0,0,3,6,3,1,329,-21476.264,70789.508,0,0,0,0,803.98853 +4875,5947,10607,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1027.1151,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,48.62,-9,-9,6.666666666666667,1,1,1,0,0,8,1,0,687,-31271.242,0,0,0,0,0,-45.087315 +4876,5948,10608,10610,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.4505167,9.0703573,0,8,0,-93.988014,0,1,1,2021,9,0,55,50,1,0,0,24.781303,24.781303,.05,.05,0,0,0,0,0,0,1,1,0,1.3922163,0,49.41,58.28,54.79,55.86,6.666666666666667,1,1,0,0,9,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4876,5948,10609,-9,10610,10608,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-793.00085,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4876,5948,10610,10608,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,8,0,94.282692,0,2,1,2021,9,0,0,15,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.81003505,0,54.79,55.86,49.41,58.28,8.333333333333334,1,1,0,0,9,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4876,5948,10611,-9,10610,10608,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.09186,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,354.75,1098946.8,945164.63,211026.19,56068.898,5844.1509,860.79407,3661.6143 +4877,5949,10612,10613,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7002497,8.9639091,0,6,0,-.37048456,0,-9,-9,2021,6,0,40,50,1,0,0,16.201199,16.201199,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.55,49.25,8.333333333333334,1,1,0,0,7,8,5,1,1212,1195318.3,664809.44,607842.25,36905.273,0,0,5172.8311 +4877,5949,10613,10612,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.7100306,9.076952,0,6,0,86.850586,0,-9,-9,2021,12,0,60,60,1,0,0,15.88788,15.88788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.55,49.25,57.33,53.46,5,1,1,0,0,15,8,5,1,1212,1195318.3,664809.44,607842.25,36905.273,0,0,5172.8311 +4878,5950,10614,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.413188,8.5634422,0,0,0,-1072.9611,0,1,2,2021,5,0,43,48,1,0,0,12.334311,12.334311,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,276,73738.18,0,0,0,0,0,1442.775 +4879,5951,10615,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.5940003,6.884728,0,0,-1037.6497,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,4.0683169,0,0,1,1,0,0,6.2208061,45.48,31,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1130,364588.72,33640.996,256369.92,0,0,0,988.73871 +4880,5952,10616,10617,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9819193,9.036809,0,24,4,90.439095,0,1,2,2021,8,0,37,37,1,0,0,25.333792,25.333792,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,1433.5,381129.94,289201.31,226793.86,136691.66,9647.4424,2148.8667,7475.9448 +4880,5952,10617,10616,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.1620388,9.2913485,5.4923739,24,-4,67.911644,0,2,1,2021,6,0,37,37,1,0,0,28.951887,28.951887,.05,.05,0,0,0,0,0,0,0,0,0,0,5.1192513,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,12,2,5,1,1433.5,381129.94,289201.31,226793.86,136691.66,9647.4424,2148.8667,7475.9448 +4881,5953,10618,-9,10620,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.42834,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.6935406,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,4,2,1,334.66666,19432.238,0,0,0,-1189.3765,579.09583,1091.7944 +4881,5953,10619,-9,10620,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.2875,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,4,2,1,334.66666,19432.238,0,0,0,-1189.3765,579.09583,1091.7944 +4881,5953,10620,-9,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,6.9259915,6.6002121,0,0,0,-1081.8071,0,2,2,2021,14,2,16,16,1,2,0,7.1494884,7.1494884,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,47.82,-9,-9,5,2,3,0,0,2,4,2,1,334.66666,19432.238,0,0,0,-1189.3765,579.09583,1091.7944 +4882,5954,10621,10622,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2828178,8.1853695,0,35,-4,-101.42585,0,3,2,2021,6,0,70,70,1,0,0,5.4325671,5.4325671,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,45.48,58.55,10,1,1,0,0,8,4,5,1,929,423031.75,109786.58,520373.31,167743.45,0,3557.2388,3462.9385 +4882,5954,10622,10621,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.7802582,8.7235432,0,35,4,-3.4085472,0,2,2,2021,10,1,40,40,1,1,0,17.180681,17.180681,.05,.05,0,0,0,0,0,0,0,0,0,1.6184973,0,45.48,58.55,54.37,54.8,10,1,1,0,0,12,4,5,1,929,423031.75,109786.58,520373.31,167743.45,0,3557.2388,3462.9385 +4883,5955,10623,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5252943,6.6827784,0,0,-926.50763,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,18.193438,0,0,1,1,0,0,6.407877,49.6,21.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1127,241721.83,-12643.571,110097.44,0,0,0,2238.6394 +4884,5956,10624,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.7151484,7.4645624,0,0,0,-1056.8705,0,-9,-9,2021,6,0,39,39,1,0,0,6.9345565,6.9345565,.05,.05,0,0,0,0,0,0,0,0,0,4.3712807,0,58.05,54.52,-9,-9,10,1,1,0,0,10,6,3,1,290,-180808.23,173394.2,0,0,0,0,164.19206 +4885,5957,10625,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1015.1842,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.29,25.79,-9,-9,8.333333333333334,4,5,0,1,0,5,1,1,906,162487.52,0,0,0,0,0,505.18787 +4886,5958,10626,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.0987778,8.1546078,0,0,0,-1087.8073,0,2,2,2021,12,2,69,39,1,2,0,6.9999704,6.9999704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,6.666666666666667,1,1,0,0,6,12,4,0,850,-15682.315,-21206.76,0,0,0,0,1114.5061 +4887,5959,10627,-9,10630,10631,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1031.041,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,8,1,1,-9,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10628,-9,10630,10631,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1036.2935,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10629,-9,10630,10631,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1025.4502,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10630,10631,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,0,0,0,11,-1,-66.637138,0,2,3,2021,12,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.6074972,0,45.88,51.75,51.4,46.95,8.333333333333334,1,1,0,0,0,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4887,5959,10631,10630,-9,-9,1,1,47,0,3,0,1,1,-9,0,2,9.1645708,9.5092554,0,11,1,47.764595,0,1,2,2021,10,3,39,41,1,3,0,26.106632,26.106632,.05,.05,0,0,0,0,0,2,1,1,0,5.4647226,0,51.4,46.95,45.88,51.75,8.333333333333334,1,1,0,0,14,13,4,1,697.40002,415828.44,266877.41,427810.44,256648.13,0,0,3930.3823 +4888,5960,10632,10633,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,9.3800392,8.8457756,0,5,7,14.928413,0,-9,-9,2021,7,0,37,37,1,0,0,32.734562,32.734562,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,50.1,45.88,27.82,8.333333333333334,2,3,0,0,10,9,5,0,180.5,313079.19,184088.61,107273.7,56310.914,10559.058,2827.209,4082.0403 +4888,5960,10633,10632,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,7.5569277,7.4829993,0,5,-7,61.79694,0,-9,-9,2021,19,7,45,40,1,7,0,4.1809845,4.1809845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.88,27.82,61.68,50.1,3.333333333333333,2,3,0,0,3,9,5,0,180.5,313079.19,184088.61,107273.7,56310.914,10559.058,2827.209,4082.0403 +4889,5961,10634,10635,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,0,5.2486897,5.3680711,8,5,9.3189306,0,2,1,2021,15,3,0,45,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2245913,0,44.02,60.7,45.73,57.57,3.333333333333333,1,1,1,0,8,10,4,1,1086,590246.88,307164.75,262481.03,72948.961,0,0,2241.1833 +4889,5961,10635,10634,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.6667442,8.72297,0,8,-5,-2.3899162,0,-9,-9,2021,18,7,38,38,1,7,0,16.669497,16.669497,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,44.02,60.7,5,1,1,0,0,7,10,4,1,1086,590246.88,307164.75,262481.03,72948.961,0,0,2241.1833 +4889,5961,10636,-9,10635,10634,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1101.4207,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,1086,590246.88,307164.75,262481.03,72948.961,0,0,2241.1833 +4890,5962,10637,10638,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,9.0508928,9.1414604,0,12,6,.3541635,-9,2,2,2021,11,0,40,0,1,0,0,29.758316,29.758316,.05,.05,0,0,0,0,0,0,1,1,0,2.4224019,0,54.1,59.11,54.35,57.84,8.333333333333334,1,1,0,0,10,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4890,5962,10638,10637,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,8.7202549,8.9254265,0,12,-6,-11.55127,-9,2,2,2021,7,0,23,0,1,0,0,24.994482,24.994482,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4890,5962,10639,-9,10638,10637,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4884,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4890,5962,10640,-9,10638,10637,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.73651,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,885.25,1037634,812217.75,584012.56,291763.94,21082.023,4340.0811,5552.8813 +4891,5963,10641,10642,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,9.4719124,9.2583218,4.1023469,6,-1,64.59668,0,3,3,2021,8,0,15,6,1,0,0,99.887009,99.887009,0,0,0,0,0,0,0,0,1,1,0,5.0571747,4.1527519,57.33,53.46,61.11,48.86,8.333333333333334,1,1,0,0,7,2,5,1,2348,1345969.5,287743.22,950411.94,0,0,0,8968.7246 +4891,5963,10642,10641,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.6822019,7.4963379,4.4313369,6,1,1.033326,0,3,3,2021,7,1,45,30,1,1,0,5.018261,5.018261,0,0,0,0,0,0,0,0,1,1,0,4.6405821,4.3462014,61.11,48.86,57.33,53.46,1.666666666666667,1,1,0,0,7,2,5,1,2348,1345969.5,287743.22,950411.94,0,0,0,8968.7246 +4892,5964,10643,10644,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.8089457,8.8507767,0,10,-1,89.266563,0,3,3,2021,11,1,44,43,1,1,0,17.533634,17.533634,0,0,.05,0,0,0,0,0,0,0,0,0,0,46.67,55.57,57.06,57.76,6.666666666666667,1,1,0,0,12,4,5,1,442,945931.63,311723.25,273395.25,0,0,0,3308.5674 +4892,5964,10644,10643,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,7.5512018,7.8114443,0,43,1,-76.20385,0,3,3,2021,7,0,6,24,1,0,0,40.525028,40.525028,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,46.67,55.57,8.333333333333334,1,1,0,0,12,4,5,1,442,945931.63,311723.25,273395.25,0,0,0,3308.5674 +4893,5965,10645,10648,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,7.2857022,7.3718491,0,4,-5,115.92987,0,-9,-9,2021,10,0,27,19,1,0,0,7.6847053,7.6847053,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,43.02,57.64,8.333333333333334,1,1,0,0,10,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4893,5965,10646,-9,10645,10648,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-885.05676,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4893,5965,10647,-9,10645,10648,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.32825,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4893,5965,10648,10645,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.1195869,7.2179546,0,4,5,45.623577,0,-9,-9,2021,11,3,20,17,1,3,0,7.2836132,7.2836132,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.02,57.64,41.17,59.31,5,1,1,0,0,8,9,3,0,511.75,16817.215,252.83154,160129.38,103021.35,0,1659.5696,2282.614 +4894,5966,10649,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,2.6955385,3.0581088,0,0,-868.02228,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,2.8920484,61.42,35.65,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,315,150518.06,0,0,0,0,0,294.7847 +4895,5967,10650,10651,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,8.7585564,9.0819492,0,2,-5,-80.195061,0,2,2,2021,10,1,45,40,1,1,0,21.74361,21.74361,.05,.05,0,0,0,0,0,0,0,0,0,6.7407417,0,47.26,38.33,49.04,55.86,8.333333333333334,1,1,0,0,9,9,5,1,694.5,695231,284123.44,397783.06,133220.17,0,4150.4321,4492.3301 +4895,5967,10651,10650,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.1181116,8.0608597,0,2,5,-16.91399,0,-9,-9,2021,9,1,40,38,1,1,0,9.8624506,9.8624506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,47.26,38.33,6.666666666666667,4,2,0,0,2,9,5,1,694.5,695231,284123.44,397783.06,133220.17,0,4150.4321,4492.3301 +4896,5968,10652,10653,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,3.0281341,3.2304115,46,1,46.431515,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,1.269779,0,18.342871,2,1,1,0,3.7942598,3.4662786,38.36,48.5,53.93,20.27,3.333333333333333,1,1,0,0,0,10,3,1,247,425113.16,0,435142,0,0,0,4590.5713 +4896,5968,10653,10652,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,7.9668131,7.6395917,45,-1,-11.671345,0,3,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,2.1226759,0,2,1,1,0,0,8.0663738,53.93,20.27,38.36,48.5,8.333333333333334,1,1,0,0,0,10,3,1,247,425113.16,0,435142,0,0,0,4590.5713 +4897,5969,10654,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.9288349,8.5097561,0,0,0,-1050.5831,0,2,2,2021,11,0,45,44,1,0,0,15.794976,15.794976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.1,56.62,-9,-9,8.333333333333334,1,1,0,0,12,9,5,1,580,20898.609,56020.93,0,0,0,0,2421.8914 +4898,5970,10655,-9,10657,10656,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.2121,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4898,5970,10656,10657,-9,-9,1,1,27,1,2,0,2,2,-9,0,2,8.2480564,8.0161581,0,6,-1,-65.02742,0,-9,-9,2021,6,0,55,65,1,0,0,7.4116488,7.4116488,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.85,48.6,46,57,8.333333333333334,1,1,0,0,8,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4898,5970,10657,10656,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,7.1485138,7.1869793,0,6,1,25.408396,0,3,2,2021,10,1,20,25,1,1,0,5.8033538,5.8033538,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,57,53.85,48.6,8.333333333333334,1,1,0,0,10,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4898,5970,10658,-9,10657,10656,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.4965,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,787.5,-49016.234,8896.2031,0,0,8460.7705,0,2531.3003 +4899,5971,10659,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1095.4762,0,1,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,36.99,-9,-9,3.333333333333333,1,1,0,1,11,4,1,1,1453,149019.7,0,0,0,0,0,0 +4900,5972,10660,10661,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,55,-6,-20.412859,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.9,33.86,57.16,56.15,10,1,1,0,0,0,9,4,1,372,2734750.3,541739.44,1765877,0,0,0,2946.2051 +4900,5972,10661,10660,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.4204931,8.0562325,7,6,10.488527,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5238221,8.4729843,57.16,56.15,54.9,33.86,8.333333333333334,1,1,0,0,0,9,4,1,372,2734750.3,541739.44,1765877,0,0,0,2946.2051 +4900,5973,10662,-9,10660,10661,1,1,45,0,0,0,2,2,-9,0,4,7.6111431,7.4068394,0,0,0,-1110.3319,-9,2,1,2021,18,6,39,0,1,6,0,6.675066,6.675066,0,0,0,0,0,0,0,0,1,1,0,3.1856177,0,39.73,57.61,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,665,-110735.16,0,0,0,0,0,1560.8157 +4901,5974,10663,10665,-9,-9,1,0,35,0,2,0,1,1,-9,0,2,7.9236126,7.6587868,0,5,0,145.06822,0,2,1,2021,11,1,30,32,1,1,0,9.9057541,9.9057541,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.17,50.73,47.74,55.03,6.666666666666667,1,1,0,0,7,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4901,5974,10664,-9,10663,10665,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.3183,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4901,5974,10665,10663,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.126915,9.012846,0,5,9,111.69017,0,-9,-9,2021,10,0,48,50,1,0,0,18.759705,18.759705,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.74,55.03,43.17,50.73,6.666666666666667,1,1,0,0,7,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4901,5974,10666,-9,10663,10665,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.8875,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,551.5,565110.13,426354.69,274353.03,71601.984,0,0,4782.7817 +4902,5975,10667,10668,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.9448347,7.2387609,6,1,-74.396141,0,-9,-9,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9822631,36.88,42.04,54.61,51.04,8.333333333333334,1,1,0,0,8,6,3,1,716,1728248.3,1405971.3,386270.25,107471.64,0,0,2593.1338 +4902,5975,10668,10667,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,8.2916851,7.3269711,9,-1,24.09284,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7006865,7.775569,54.61,51.04,36.88,42.04,8.333333333333334,1,1,0,0,8,6,3,1,716,1728248.3,1405971.3,386270.25,107471.64,0,0,2593.1338 +4903,5976,10669,10670,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,6,0,0,0,3,3,2021,34,12,0,60,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.82,27.02,34.49,26.36,6.666666666666667,1,1,0,1,8,12,1,0,721.5,0,0,0,0,0,0,946.12866 +4903,5976,10670,10669,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,6,9,0,0,3,3,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,34.49,26.36,26.82,27.02,3.333333333333333,1,1,0,1,0,12,1,0,721.5,0,0,0,0,0,0,946.12866 +4904,5977,10671,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.0888658,6.7331009,0,0,0,-1138.7083,0,3,3,2021,12,1,18,12,1,1,0,6.4617352,6.4617352,0,0,0,0,0,0,0,0,1,0,1,2.4055374,0,52.4,52.91,-9,-9,5,1,1,0,1,14,10,2,1,202,294699.56,49795.68,-17771.252,17880.506,-488.45724,0,497.93719 +4904,5978,10672,-9,10671,-9,1,1,25,0,0,0,2,2,-9,0,2,0,0,0,0,0,-935.97736,0,3,-9,2021,25,9,0,32,3,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.1052345,0,26.88,57.97,-9,-9,1.666666666666667,1,1,1,0,6,10,1,1,5005,32825.27,0,0,0,0,0,-433.57898 +4904,5979,10673,-9,10671,-9,1,1,25,0,0,0,2,2,-9,0,3,7.6225758,7.9155955,0,0,0,-1045.2756,0,3,-9,2021,10,0,15,21,1,0,1,20.230167,20.230167,0,0,0,0,0,0,0,0,1,0,1,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,6,10,3,1,496,-22103.068,-4598.4839,0,0,0,0,1050.0986 +4905,5980,10674,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,4.7451,5.2455692,0,0,-995.38281,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9655218,5.174418,49.98,15.36,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,432,136713.2,-38289.949,0,0,0,0,2497.0923 +4906,5981,10675,10676,-9,-9,1,1,48,0,1,0,1,1,-9,0,3,8.625536,8.2050819,0,6,-1,-4.6236935,0,-9,-9,2021,6,0,20,10,1,0,0,25.016916,25.016916,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,49.22,54.23,6.666666666666667,1,1,0,0,6,4,4,1,274,470024.31,278253.94,179675.91,0,0,0,2501.5991 +4906,5981,10676,10675,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.3417063,8.2848043,0,6,1,-27.874012,0,3,2,2021,7,0,38,38,1,0,0,10.549864,10.549864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.22,54.23,52,54.51,8.333333333333334,1,1,0,0,14,4,4,1,274,470024.31,278253.94,179675.91,0,0,0,2501.5991 +4907,5982,10677,-9,-9,10678,1,0,13,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1039.2612,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,5,1,1711,2509555,1915909.5,445274.53,0,0,0,5369.7754 +4907,5982,10678,10679,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.5200129,9.6594591,5.9052334,7,-4,-119.81931,0,1,2,2021,4,0,40,40,1,0,0,47.492989,47.492989,.05,.05,0,0,0,0,0,42,1,1,0,6.4643188,0,57.24,52.21,37.43,17,10,1,1,0,0,8,10,5,1,1711,2509555,1915909.5,445274.53,0,0,0,5369.7754 +4907,5982,10679,10678,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,7.0873823,7.5415745,7,4,99.143753,0,2,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4065081,7.3460693,37.43,17,57.24,52.21,3.333333333333333,1,1,0,0,4,10,5,1,1711,2509555,1915909.5,445274.53,0,0,0,5369.7754 +4908,5983,10680,10681,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1819687,7.9922948,0,17,10,3.796859,0,2,2,2021,7,0,26,25,1,0,0,15.243251,15.243251,.05,.05,0,0,0,0,0,0,0,0,0,5.419971,0,52,54.51,54.1,59.11,8.333333333333334,1,1,0,0,12,10,5,1,614,-6905.6152,-40332.281,208394.34,119110.18,0,0,2844.9153 +4908,5983,10681,10680,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.0639582,7.8004355,0,18,-10,58.886372,0,2,3,2021,11,0,80,80,1,0,0,5.2961249,5.2961249,.05,.05,0,0,0,0,0,0,0,0,0,3.2065983,0,54.1,59.11,52,54.51,8.333333333333334,1,1,0,0,13,10,5,1,614,-6905.6152,-40332.281,208394.34,119110.18,0,0,2844.9153 +4909,5984,10682,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2123518,8.25739,0,0,0,-990.34784,0,3,3,2021,10,0,40,40,1,0,0,7.5881386,7.5881386,.05,.05,0,0,0,0,0,0,0,0,0,4.3199797,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,0,2368,208295.31,240046.45,0,0,0,0,1626.0502 +4910,5985,10683,10684,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7911701,8.6966305,0,4,-1,-.39734679,0,2,2,2021,12,2,67,65,1,2,0,13.196301,13.196301,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,7,2,5,0,1760.5,215137.28,149624.09,191050.11,108502.78,24446.357,0,3455.8125 +4910,5985,10684,10683,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.0129223,7.7238278,0,4,1,-14.253799,0,-9,-9,2021,15,3,42,42,1,3,0,9.8435469,9.8435469,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,57.16,56.15,5,1,1,0,0,9,2,5,0,1760.5,215137.28,149624.09,191050.11,108502.78,24446.357,0,3455.8125 +4911,5986,10685,10686,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,28,1,-133.8259,0,2,3,2021,7,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4186254,0,53.98,50.87,56.95,46.69,8.333333333333334,1,1,1,0,11,6,5,1,621,388410.44,326092.81,257581.84,94079.734,0,0,2594.5479 +4911,5986,10686,10685,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.0381927,9.1330652,0,28,-1,63.574715,0,2,2,2021,6,0,37,52,1,0,0,21.605671,21.605671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.95,46.69,53.98,50.87,8.333333333333334,1,1,0,0,12,6,5,1,621,388410.44,326092.81,257581.84,94079.734,0,0,2594.5479 +4911,5987,10687,-9,10685,10686,1,0,22,0,0,0,2,2,-9,0,4,7.6652451,7.9354587,0,0,0,-900.35284,0,1,1,2021,8,2,45,30,1,2,1,5.257709,5.257709,0,0,0,0,0,0,0,0,0,0,0,0,0,51.7,43.64,-9,-9,6.666666666666667,1,1,0,0,5,6,3,1,635,-97471.313,0,0,0,0,0,790.97766 +4912,5988,10688,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1033.1807,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.41073123,0,53,44,-9,-9,8,1,1,0,0,0,11,1,1,347,327832.16,97641.82,174178.47,0,0,0,1071.009 +4913,5989,10689,10690,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.8160963,7.0199142,49,-3,-135.41579,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6278214,7.0663576,48.87,58.55,60.29,52.11,8.333333333333334,1,1,0,0,0,5,2,1,871,603315.19,236892.84,342515.38,0,0,0,1079.5918 +4913,5989,10690,10689,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,49,3,51.595917,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,48.87,58.55,8.333333333333334,1,1,0,0,0,5,2,1,871,603315.19,236892.84,342515.38,0,0,0,1079.5918 +4914,5990,10691,-9,10692,10694,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.9567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4914,5990,10692,10694,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,9.5077782,9.3137655,0,8,-2,-11.507128,0,2,2,2021,3,0,39,38,1,0,0,34.216408,34.216408,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.9,56.66,10,1,1,0,0,9,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4914,5990,10693,-9,10692,10694,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.49072,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4914,5990,10694,10692,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.8574657,9.1700745,0,8,2,109.04772,0,-9,-9,2021,10,2,37,37,1,2,0,33.379105,33.379105,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,54.79,55.86,8.333333333333334,1,1,0,0,9,12,5,1,674.5,340945.5,62788.664,0,0,0,0,8153.1162 +4915,5991,10695,-9,10696,10698,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-857.50012,-9,2,2,2021,12,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.67,62.33,-9,-9,3.333333333333333,1,1,0,0,0,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5991,10696,10698,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,7.7861743,7.8837748,0,7,-4,45.757698,0,-9,-9,2021,9,0,40,0,1,0,0,6.8887,6.8887,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,40.82,45.35,54.2,57.49,10,1,1,0,0,0,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5991,10697,-9,10696,10698,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.58893,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5991,10698,10696,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.4643898,8.7490988,0,7,4,53.414619,0,-9,1,2021,9,0,40,40,1,0,0,16.603167,16.603167,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,40.82,45.35,6.666666666666667,4,2,0,0,9,4,3,0,243.25,21158.293,-42405.633,103894.63,74980.727,12472.078,1184.4155,3115.3242 +4915,5992,10699,-9,10696,10698,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1055.9806,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,1596,-230258.66,0,0,0,750.48932,0,295.30911 +4915,5993,10700,-9,10696,10698,1,1,19,0,2,0,2,2,-9,0,4,7.1911311,7.0837288,0,0,0,-940.18054,0,2,2,2021,7,0,38,0,1,0,1,3.3163378,3.3163378,0,0,0,0,0,0,0,0,1,0,1,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,4,2,0,1340,133964.14,0,0,0,0,0,952.46216 +4915,5994,10701,-9,10696,10698,1,1,18,0,2,0,2,2,1,0,3,0,0,0,0,0,-984.36847,-9,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,55.53,51.55,-9,-9,5,1,1,1,0,0,4,1,0,68,109147.04,0,0,0,0,0,0 +4915,5995,10702,-9,10696,10698,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-938.48956,-9,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.74,50.77,-9,-9,1.666666666666667,4,2,1,0,0,4,1,0,707,46165.848,0,0,0,0,0,135.36316 +4916,5996,10703,10704,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,6.6309409,6.3218541,7,7,-33.549133,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8208222,63.24,42.39,57.9,51.84,10,1,1,0,0,6,7,4,0,1289,1747160.8,969204,446409.59,0,0,0,2561.7124 +4916,5996,10704,10703,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4189453,8.3091583,0,7,-7,32.267822,0,2,2,2021,10,1,40,40,1,1,0,12.269717,12.269717,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,63.24,42.39,5,1,1,0,0,8,7,4,0,1289,1747160.8,969204,446409.59,0,0,0,2561.7124 +4917,5997,10705,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1053.0247,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,760,104910.53,23234.113,0,0,-94.554611,0,685.09363 +4918,5998,10706,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.7772779,5.8808856,0,0,-966.90808,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1657453,67.36,24.59,-9,-9,10,1,1,0,0,0,8,2,0,668,301473.84,-11920.95,224436.53,0,0,0,1356.8795 +4919,5999,10707,10708,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.2081714,6.9252896,0,21,1,67.601028,0,2,3,2021,12,1,10,30,1,1,0,12.467713,12.467713,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,57.63,56.14,8.333333333333334,2,3,0,0,10,8,5,1,396,595078.25,137274.5,315027.63,17817.457,14163.576,1062.7412,3515.7661 +4919,5999,10708,10707,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,9.3621979,9.3476353,0,21,-1,61.788818,0,1,1,2021,6,0,55,56,1,0,0,19.029716,19.029716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,41,56.99,8.333333333333334,2,3,0,0,11,8,5,1,396,595078.25,137274.5,315027.63,17817.457,14163.576,1062.7412,3515.7661 +4920,6000,10709,10710,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,0,0,0,19,-1,37.949131,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4838188,0,44,52.68,55.78,50.28,5,1,1,0,0,5,9,2,1,1807.5,723420.13,380308.06,282493.06,0,0,0,1542.1521 +4920,6000,10710,10709,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,6.7437758,6.8623786,0,19,1,-14.132884,0,3,2,2021,6,0,2,3,1,0,0,40.88459,40.88459,0,0,0,0,0,0,0,2,0,0,0,7.7865396,0,55.78,50.28,44,52.68,5,1,1,0,1,8,9,2,1,1807.5,723420.13,380308.06,282493.06,0,0,0,1542.1521 +4921,6001,10711,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.1511688,7.7935214,0,0,0,-1015.1539,0,2,2,2021,7,0,32,23,1,0,0,8.9260874,8.9260874,.05,.05,0,0,0,0,0,0,1,1,0,7.3295031,0,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,12,10,4,0,738,230081.31,57531.508,254480.39,35383.5,12869.201,0,2267.0203 +4922,6002,10712,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.1441536,7.2145119,0,0,0,-1092.6353,0,2,-9,2021,12,0,14,25,1,0,0,10.839879,10.839879,0,0,0,0,0,0,0,2,0,0,0,7.3248143,0,55.69,40.48,-9,-9,5,1,1,0,0,10,10,2,1,243,24769.158,0,0,0,0,0,1553.8475 +4923,6003,10713,10714,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,11,5,30.920429,0,3,3,2021,32,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,64.96000000000001,21.62,0,1,1,0,0,0,2,3,1,532.5,314749.94,186513.53,103762.11,0,0,417.27368,2194.8142 +4923,6003,10714,10713,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,8.3583145,8.520483,11,-5,68.397362,0,3,3,2021,9,0,0,55,4,0,0,0,0,.05,.05,.05,0,0,0,0,7,1,1,0,7.9215446,8.329195,64.96000000000001,21.62,16.04,23.99,8.333333333333334,1,1,0,0,11,2,3,1,532.5,314749.94,186513.53,103762.11,0,0,417.27368,2194.8142 +4924,6004,10715,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,7.8735428,7.9648638,0,0,0,-1213.5774,0,-9,-9,2021,20,5,43,0,1,5,0,9.1469707,9.1469707,.05,.05,0,0,0,0,0,0,0,0,0,0,0,13.73,54.95,-9,-9,5,1,1,0,0,2,9,3,0,629,24481.395,-74862.859,0,0,0,0,1377.6575 +4925,6005,10716,10717,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.6430178,8.4695702,0,24,2,100.9688,0,3,3,2021,6,0,37,37,1,0,0,15.137275,15.137275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.15,52.9,43.38,60.06,8.333333333333334,1,1,0,0,9,13,5,1,919.5,1327583.1,1096882.3,208577.09,61863.563,9411.2656,0,4707.0625 +4925,6005,10717,10716,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9821463,9.232481,0,24,-2,30.65274,0,-9,-9,2021,10,0,37,41,1,0,0,20.560793,20.560793,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.38,60.06,52.15,52.9,10,1,1,0,0,9,13,5,1,919.5,1327583.1,1096882.3,208577.09,61863.563,9411.2656,0,4707.0625 +4926,6006,10718,10719,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.8849421,8.4853458,6.4116836,9,4,23.841906,0,3,3,2021,10,0,43,42,1,0,0,6.8933306,6.8933306,.05,.05,0,0,0,0,0,0,0,0,0,0,6.069644,59.46,46.99,48,48,6.666666666666667,1,1,0,0,10,11,4,1,863.5,42044.598,63463.039,0,0,0,0,2258.4741 +4926,6006,10719,10718,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.1348429,7.6654458,0,9,-4,-73.132828,0,2,2,2021,10,0,40,45,1,0,0,5.2830486,5.2830486,.05,.05,0,0,0,0,0,0,0,0,0,1.7445452,0,48,48,59.46,46.99,6.666666666666667,1,1,0,0,10,11,4,1,863.5,42044.598,63463.039,0,0,0,0,2258.4741 +4927,6007,10720,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5167608,7.1268973,0,0,0,-905.10486,0,2,2,2021,13,2,26,-9,1,2,0,8.1268167,8.1268167,0,0,0,0,0,0,0,0,1,1,0,.36622733,0,42.12,45.4,-9,-9,1.666666666666667,1,1,0,0,14,7,3,1,308,233419.41,87444.516,0,0,1462.9723,0,1106.8567 +4928,6008,10721,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.8756704,6.7615523,0,0,-896.91071,0,2,2,2021,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9947624,6.7783937,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,993,-86569.359,12038.054,0,0,4962.144,0,1129.7103 +4929,6009,10722,10723,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.9024343,7.9759493,0,24,8,-27.988251,0,3,3,2021,6,0,55,58,1,0,0,6.2152562,6.2152562,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.93,46.29,55.11,22.3,6.666666666666667,1,1,0,0,6,4,4,0,817.5,264535.34,405874.75,0,0,0,0,2068.332 +4929,6009,10723,10722,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.3906717,7.6994233,0,24,-8,-45.693073,0,3,3,2021,8,0,24,30,1,0,0,6.8384995,6.8384995,0,0,0,0,0,0,0,14.5,0,0,0,0,0,55.11,22.3,57.93,46.29,8.333333333333334,1,1,0,0,5,4,4,0,817.5,264535.34,405874.75,0,0,0,0,2068.332 +4930,6010,10724,10725,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.6104403,6.8115811,7,5,94.004959,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.284286,6.6525245,59.29,49.68,61.43,43.34,8.333333333333334,1,1,0,0,0,6,2,1,898,708466.38,511152.63,130121.23,0,0,1335.7981,1582.1711 +4930,6010,10725,10724,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.6123962,6.8604488,7,-5,-191.97429,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,3.5883451,0,7,1,1,0,4.8533354,6.7309346,61.43,43.34,59.29,49.68,6.666666666666667,1,1,0,0,0,6,2,1,898,708466.38,511152.63,130121.23,0,0,1335.7981,1582.1711 +4931,6011,10726,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1090.7245,-9,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.43,28.27,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,552,0,0,0,0,0,0,895.63934 +4932,6012,10727,10728,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.9872079,7.8618317,0,10,-1,-30.511461,0,3,3,2021,7,0,30,26,1,0,0,10.020351,10.020351,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,55.09,55.87,8.333333333333334,1,1,0,0,8,4,4,1,3580,263164.63,68795.664,250694.58,99501.273,4388.0122,0,3736.28 +4932,6012,10728,10727,-9,-9,1,1,45,0,2,0,2,2,-9,0,5,8.6160536,8.5327797,0,10,1,-50.221813,-9,-9,-9,2021,8,0,40,0,1,0,0,14.68967,14.68967,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.09,55.87,57.73,54.53,6.666666666666667,1,1,0,0,11,4,4,1,3580,263164.63,68795.664,250694.58,99501.273,4388.0122,0,3736.28 +4932,6012,10729,-9,10727,10728,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.74579,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,3580,263164.63,68795.664,250694.58,99501.273,4388.0122,0,3736.28 +4933,6013,10730,10731,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,6.5022926,6.6755247,30,4,36.488251,0,2,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8710175,24.39,20.22,40.91,38.44,1.666666666666667,1,1,0,0,0,13,2,1,652.5,117834.42,82125.563,0,0,0,0,1598.3306 +4933,6013,10731,10730,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,30,-4,-14.229142,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,40.91,38.44,24.39,20.22,5,1,1,0,0,0,13,2,1,652.5,117834.42,82125.563,0,0,0,0,1598.3306 +4934,6014,10732,-9,10734,10733,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.6461,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,839,483374.41,495472.25,195103.55,58394.117,0,0,3432.6548 +4934,6014,10733,10734,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.5638094,8.5104895,0,8,0,-61.825527,0,2,2,2021,12,3,44,42,1,3,0,10.597123,10.597123,.05,.05,0,0,0,0,0,7,1,1,0,3.2075713,0,51.21,52.15,45.4,56.19,8.333333333333334,1,1,0,0,8,13,4,1,839,483374.41,495472.25,195103.55,58394.117,0,0,3432.6548 +4934,6014,10734,10733,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.0863962,7.8887906,0,8,0,-28.257208,0,-9,-9,2021,9,0,30,30,1,0,0,11.893232,11.893232,0,0,0,0,0,0,0,0,1,1,0,0,0,45.4,56.19,51.21,52.15,8.333333333333334,1,1,0,0,8,13,4,1,839,483374.41,495472.25,195103.55,58394.117,0,0,3432.6548 +4935,6015,10735,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,8.0769901,8.0992117,0,0,-921.57983,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,8.2998161,61.67,39.58,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,594,593527.69,218224.16,218232.95,0,0,0,2824.0293 +4936,6016,10736,10737,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.4799662,8.5915136,5.6434937,41,-4,24.948277,0,-9,-9,2021,11,0,42,42,1,0,0,13.348126,13.348126,.05,.05,0,0,0,0,0,2,0,0,0,0,5.8285027,54.37,54.8,51.08,43.29,10,1,1,0,0,9,10,5,1,799,948276.25,672534,0,0,0,0,3759.9478 +4936,6016,10737,10736,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,8.6896353,8.3159704,4.0444803,41,4,-84.490486,0,3,-9,2021,9,0,42,42,1,0,0,14.189197,14.189197,.05,.05,0,0,0,0,0,0,0,0,0,0,4.4771886,51.08,43.29,54.37,54.8,8.333333333333334,1,1,0,0,6,10,5,1,799,948276.25,672534,0,0,0,0,3759.9478 +4937,6017,10738,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,6.5044632,6.8754106,6.115581,0,0,-945.96832,0,2,1,2021,7,0,18,18,1,0,0,4.6409268,4.6409268,0,0,.05,0,0,0,0,2,1,1,0,5.0360098,6.1645803,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,5,2,1,2347,426119.59,63668.203,146753.02,0,0,0,1224.3313 +4938,6018,10739,10740,10742,-9,1,0,26,0,1,0,1,1,1,0,5,7.7942185,7.6682005,0,1,-4,-101.10181,-9,2,1,2021,9,2,38,0,1,2,0,8.5681105,8.5681105,0,0,0,0,0,0,0,0,1,1,0,0,0,46.59,59.97,53.2,56.67,6.666666666666667,1,1,0,0,4,12,2,1,521.5,73759.016,48499.871,0,0,3295.5054,2603.9719,1201.8413 +4938,6018,10740,10739,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,0,0,0,1,4,-134.67918,-9,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.2,56.67,46.59,59.97,10,1,1,1,0,0,12,2,1,521.5,73759.016,48499.871,0,0,3295.5054,2603.9719,1201.8413 +4938,6019,10741,10742,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,8.1239595,8.571311,0,6,1,62.739067,0,-9,-9,2021,10,1,40,40,1,1,0,12.927917,12.927917,.05,.05,0,0,0,0,0,0,1,1,0,2.906553,0,55.53,51.55,49.52,55.68,8.333333333333334,1,1,0,0,13,12,4,1,499,585573.63,96951.773,298165.22,0,0,0,4397.9766 +4938,6019,10742,10741,-9,-9,1,0,59,0,1,0,2,2,-9,0,4,8.2203865,8.8875914,8.0533552,6,-1,-91.946701,0,2,2,2021,12,4,42,30,1,4,0,9.183135,9.183135,.05,.05,0,0,0,0,0,2,1,1,0,8.1697292,0,49.52,55.68,55.53,51.55,10,1,1,0,0,14,12,4,1,499,585573.63,96951.773,298165.22,0,0,0,4397.9766 +4938,6019,10743,-9,10742,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1064.4862,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,4,1,499,585573.63,96951.773,298165.22,0,0,0,4397.9766 +4939,6020,10744,-9,10746,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.82361,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,1,0,1220.6666,-39315.684,0,0,0,2932.8499,0,1738.3008 +4939,6020,10745,-9,10746,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.52124,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,1,0,1220.6666,-39315.684,0,0,0,2932.8499,0,1738.3008 +4939,6020,10746,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,2,0,0,0,0,0,-960.94275,0,2,-9,2021,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,43,-9,-9,6.666666666666667,1,1,1,0,5,5,1,0,1220.6666,-39315.684,0,0,0,2932.8499,0,1738.3008 +4940,6021,10747,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,7.2839937,7.1036935,0,0,-927.0592,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6992335,7.2066474,54.79,55.86,-9,-9,10,1,1,0,0,0,5,3,1,923,588519.81,268653.31,99679.148,0,0,0,1681.9971 +4941,6022,10748,10749,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.5167122,8.4907532,20,1,110.06054,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6336579,8.6938114,48.87,58.55,55.79,52.62,8.333333333333334,1,1,0,0,8,10,5,1,867,4958340.5,793369.63,737080.25,0,0,0,5665.1333 +4941,6022,10749,10748,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.6738501,8.6183739,20,-1,-24.343782,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.6311617,55.79,52.62,48.87,58.55,6.666666666666667,1,1,0,0,6,10,5,1,867,4958340.5,793369.63,737080.25,0,0,0,5665.1333 +4942,6023,10750,10751,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.5845337,8.5449877,47,2,151.43889,0,2,3,2021,5,2,0,0,4,2,0,0,0,0,0,0,0,0,0,1.0939368,0,1,1,0,4.4258018,8.3807936,48.54,46.62,62.03,36.18,8.333333333333334,1,1,0,0,0,9,4,1,628.5,1778257.1,1046754.1,610311.88,0,0,0,3875.2979 +4942,6023,10751,10750,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,47,-2,-104.682,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8460367,0,62.03,36.18,48.54,46.62,8.333333333333334,1,1,0,0,8,9,4,1,628.5,1778257.1,1046754.1,610311.88,0,0,0,3875.2979 +4943,6024,10752,10753,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.9228253,8.2572727,0,23,7,-28.847174,0,2,1,2021,17,5,85,32,1,5,0,5.1682696,5.1682696,.05,.05,0,0,0,0,0,0,0,0,0,1.4950993,0,38.97,56.46,49.58,55.59,3.333333333333333,2,3,0,0,13,10,5,1,414,488298.72,53178.898,503861.19,135202.17,0,4170.8613,4258.6406 +4943,6024,10753,10752,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.0124998,8.8324652,0,23,-7,-74.058006,0,1,1,2021,10,0,38,0,1,0,0,19.554745,19.554745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,38.97,56.46,6.666666666666667,1,1,0,0,12,10,5,1,414,488298.72,53178.898,503861.19,135202.17,0,4170.8613,4258.6406 +4944,6025,10754,10755,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,6.0191212,6.1168289,0,1,-6,-30.570917,-9,-9,-9,2021,11,1,40,0,1,1,0,1.1694078,1.1694078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,38.94,60.48,8.333333333333334,1,1,0,0,7,2,4,1,336.5,73366.609,-33657,123108.52,56067.25,0,0,2418.3235 +4944,6025,10755,10754,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.4125824,8.3213215,0,1,6,15.3696,0,2,2,2021,13,3,40,50,1,3,0,11.44028,11.44028,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,41.06,62.04,5,1,1,0,0,9,2,4,1,336.5,73366.609,-33657,123108.52,56067.25,0,0,2418.3235 +4945,6026,10756,10759,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.8422379,7.7709074,0,18,-6,-3.0939338,0,2,2,2021,10,0,30,10,1,0,0,8.0810909,8.0810909,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.42,50.19,46.53,50.34,3.333333333333333,1,1,0,0,8,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4945,6026,10757,-9,10756,10759,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.67462,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4945,6026,10758,-9,10756,10759,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.8786,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,-9,0,0,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4945,6026,10759,10756,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.8541679,8.7823753,0,16,6,-53.223846,0,2,1,2021,10,0,38,43,1,0,0,25.834736,25.834736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.53,50.34,49.42,50.19,8.333333333333334,1,1,0,0,9,4,4,1,966.5,305739.25,200389.59,135068.83,98265.039,18758.721,0,3656.6724 +4946,6027,10760,10761,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.4282146,7.3485489,40,-1,-2.3862989,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.1392307,0,1,1,0,6.654532,7.2484708,54.96,53.17,47.07,53.97,8.333333333333334,1,1,0,0,0,2,3,1,1943,813247.25,558338.75,148977.13,0,1846.332,0,2290.4487 +4946,6027,10761,10760,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.1321936,6.6713572,40,1,-124.67083,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3509393,6.5749888,47.07,53.97,54.96,53.17,8.333333333333334,1,1,0,0,0,2,3,1,1943,813247.25,558338.75,148977.13,0,1846.332,0,2290.4487 +4947,6028,10762,10763,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,8.2661438,8.2381124,58,-2,120.49048,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.9070725,8.1232243,55,45,53,44,8,1,1,0,0,0,8,3,1,723,987790.25,575441.69,182432.91,0,0,0,2875.6221 +4947,6028,10763,10762,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,58,2,-107.56986,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,121.18286,0,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,3,1,723,987790.25,575441.69,182432.91,0,0,0,2875.6221 +4948,6029,10764,10765,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.8990178,8.0892601,6,0,127.13819,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5520535,7.6958656,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,1083,434277.25,355135.06,91338.406,0,0,0,2357.2795 +4948,6029,10765,10764,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,4.7970657,4.3343081,6,0,56.008358,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7747293,4.7582445,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,2,1,3,1,1083,434277.25,355135.06,91338.406,0,0,0,2357.2795 +4949,6030,10766,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.9167209,8.1175451,0,0,0,-907.04541,0,2,2,2021,18,7,50,50,1,7,0,5.5830536,5.5830536,.05,.05,0,0,0,0,0,0,0,0,0,8.2576342,0,39.78,56.25,-9,-9,6.666666666666667,1,1,0,0,11,8,4,1,1611,128541.81,105781.86,0,0,0,0,1916.8507 +4950,6031,10767,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.9067388,6.4896736,0,0,0,-983.2807,0,2,-9,2021,12,1,13,0,1,1,0,6.123807,6.123807,0,0,0,0,0,0,0,0,0,0,0,0,0,28.33,62.63,-9,-9,5,1,1,0,0,5,4,2,0,600,56634.258,0,0,0,0,0,990.34729 +4951,6032,10768,10769,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.7011557,8.7329512,0,8,3,22.444836,-9,-9,-9,2021,9,0,40,0,1,1,0,18.708267,18.708267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,55,50.03,52.62,8,1,1,0,0,1,10,5,1,1351,1404860.3,897557.63,405384.25,0,0,0,3291.9175 +4951,6032,10769,10768,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7498436,8.1713572,0,30,-3,57.837212,0,2,2,2021,16,4,34,33,1,4,0,9.7164621,9.7164621,0,0,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,53,55,6.666666666666667,1,1,0,0,8,10,5,1,1351,1404860.3,897557.63,405384.25,0,0,0,3291.9175 +4951,6033,10770,-9,10769,10768,1,1,19,0,0,0,3,3,-9,0,5,7.7649865,7.412508,0,0,0,-974.44989,0,2,2,2021,12,2,45,48,1,2,1,5.7520738,5.7520738,0,0,0,0,0,0,0,0,0,0,0,0,0,41.72,58.06,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,1140,74632.984,0,0,0,0,0,1049.4374 +4952,6034,10771,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.1909685,8.1927891,4.9764738,0,0,-940.01672,-9,3,3,2021,10,0,41,0,1,0,0,11.447882,11.447882,0,0,0,0,0,0,0,2,1,1,0,5.28967,5.5462193,41.75,45.53,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,434,623762.06,291326.38,119072.7,0,0,0,2125.1824 +4953,6035,10772,10773,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,8.1155643,8.6408615,58,1,186.52377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8165331,7.9687996,62.25,48.33,56.79,38.59,8.333333333333334,1,1,0,0,0,9,4,1,1523.5,771711.19,572389,219027.56,0,0,0,3512.0044 +4953,6035,10773,10772,-9,-9,1,0,83,0,0,0,1,1,-9,0,3,0,6.9469647,7.1294775,58,-1,-59.371441,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9621735,56.79,38.59,62.25,48.33,8.333333333333334,1,1,0,0,0,9,4,1,1523.5,771711.19,572389,219027.56,0,0,0,3512.0044 +4954,6036,10774,-9,10777,10775,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.30322,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4954,6036,10775,10777,-9,-9,1,1,71,0,2,0,3,3,-9,0,4,0,0,0,14,26,0,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,47.36,63.48,49.15,10,2,3,0,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4954,6036,10776,-9,10777,10775,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.3393,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4954,6036,10777,10775,-9,-9,1,0,45,0,2,0,3,3,-9,0,4,0,0,0,14,-26,0,0,3,3,2021,4,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,49.15,58.47,47.36,0,2,3,0,0,0,5,1,1,640.75,456668.13,173824.92,168538.55,0,0,0,1859.3121 +4955,6037,10778,10779,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,30,-2,38.030956,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,29.21,30.16,53,54,6.666666666666667,1,1,0,0,0,5,4,1,1956.5,506335.63,348468.44,136297.77,0,0,0,2508.6504 +4955,6037,10779,10778,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8632755,8.8148441,0,30,2,95.225235,0,2,2,2021,9,0,40,47,1,1,0,22.250145,22.250145,0,0,.05,0,0,0,0,0,1,1,0,0,0,53,54,29.21,30.16,8,1,1,0,0,1,5,4,1,1956.5,506335.63,348468.44,136297.77,0,0,0,2508.6504 +4955,6038,10780,-9,10778,10779,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1007.5671,0,3,2,2021,10,0,0,36,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,5,1,1,121,128030.35,0,0,0,0,0,0 +4955,6039,10781,-9,10778,10779,1,1,18,0,0,0,2,2,-9,0,4,8.2344732,7.9225097,0,0,0,-985.72821,0,3,2,2021,11,0,37,0,1,2,1,9.0247946,9.0247946,.05,.05,0,0,0,0,0,0,1,1,0,.68511719,0,48,59,-9,-9,7,1,1,0,0,1,5,4,1,122,-86207.453,45744.484,0,0,0,0,1864.7258 +4956,6040,10782,10783,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,8.3464327,8.1617966,9,-4,11.75857,0,-9,-9,2021,7,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3972957,8.2775002,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,14,9,5,1,856.5,2585878,1530007.6,771717.13,0,0,0,3505.541 +4956,6040,10783,10782,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5134411,8.5613594,0,9,4,-61.38028,0,3,3,2021,6,0,38,38,1,0,0,15.05144,15.05144,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,15,9,5,1,856.5,2585878,1530007.6,771717.13,0,0,0,3505.541 +4957,6041,10784,-9,-9,-9,1,0,33,0,1,0,1,1,-9,1,2,0,0,0,0,0,-1068.6971,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.51,49.13,-9,-9,0,4,2,0,0,5,7,1,1,522,64731.078,0,0,0,9190.3643,0,926.59723 +4957,6041,10785,-9,10784,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.3851,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,1,1,522,64731.078,0,0,0,9190.3643,0,926.59723 +4958,6042,10786,10787,-9,-9,1,1,57,1,2,0,2,2,-9,0,3,8.4515619,8.5352087,5.5406971,31,3,-193.64963,0,2,-9,2021,8,0,45,48,1,0,0,11.286578,11.286578,0,0,0,0,0,0,0,2,1,1,0,5.4203887,5.7029295,54.37,54.8,46.66,47.19,8.333333333333334,1,1,0,0,8,6,4,1,891,57870.215,32502.637,139013.22,96026.688,0,0,2958.3325 +4958,6042,10787,10786,-9,-9,1,0,54,1,2,0,3,3,-9,1,4,6.1776919,6.0724554,0,30,-3,-112.18774,0,3,2,2021,17,5,8,10,1,5,0,6.2122235,6.2122235,0,0,0,0,0,0,0,27,1,1,0,0,0,46.66,47.19,54.37,54.8,5,1,1,0,0,9,6,4,1,891,57870.215,32502.637,139013.22,96026.688,0,0,2958.3325 +4958,6043,10788,-9,10789,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6929,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,487.5,-71759.609,43040.965,0,0,0,0,1051.5883 +4958,6043,10789,-9,10787,10786,1,0,27,1,2,0,2,2,-9,0,5,7.7707782,7.87075,0,0,0,-1027.1995,0,2,2,2021,4,1,35,45,1,1,1,9.1246119,9.1246119,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.8,50.59,-9,-9,8.333333333333334,1,1,0,0,9,6,3,1,487.5,-71759.609,43040.965,0,0,0,0,1051.5883 +4958,6044,10790,-9,10787,10786,1,1,21,1,2,0,2,2,-9,1,2,0,0,0,0,0,-1064.5848,0,2,2,2021,15,3,0,8,3,3,1,0,0,0,0,0,0,0,0,0,2,1,1,0,2.120014,0,56.74,36.53,-9,-9,5,1,1,0,0,2,6,1,1,5587,57298.285,0,0,0,0,0,-20.830107 +4959,6045,10791,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.2317677,8.3380804,0,0,0,-1039.6194,0,1,1,2021,11,0,38,40,1,0,0,11.022126,11.022126,.05,.05,0,0,0,0,0,0,0,0,0,2.3773279,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,458,75137.648,-55116.801,138578.75,0,0,0,3165.0012 +4960,6046,10792,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.883657,7.223834,0,0,-1124.0313,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.2522308,6.9814639,54.22,39.67,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,597,768466.44,37990.445,597057.19,0,0,0,1061.6732 +4961,6047,10793,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1155.3158,-9,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7269518,0,40.97,30.08,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,448,48603.922,0,0,0,0,0,1015.0341 +4962,6048,10794,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.012929,8.2092886,0,0,-979.24902,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0240273,8.1431942,47.04,40.62,-9,-9,10,1,1,0,0,0,12,4,1,252,460671.88,57362.32,191651.75,0,0,0,1817.6396 +4963,6049,10795,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1053.332,0,3,3,2021,19,5,0,16,3,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,30.59,53.54,-9,-9,0,2,3,1,0,4,6,1,0,1231,0,0,0,0,0,0,1594.014 +4963,6049,10796,-9,10795,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-986.08325,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,6,1,0,1231,0,0,0,0,0,0,1594.014 +4963,6049,10797,-9,10795,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-909.18481,-9,2,-9,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,53.7,-9,-9,3.333333333333333,2,3,0,0,0,6,1,0,1231,0,0,0,0,0,0,1594.014 +4963,6050,10798,-9,10795,-9,1,1,20,0,1,0,2,2,-9,0,3,6.8016911,6.5751796,0,0,0,-1053.7523,0,2,2,2021,12,0,16,6,1,0,1,5.8275189,5.8275189,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.57,54.66,-9,-9,5,2,3,0,0,4,6,2,0,530,233171.91,107196.06,0,0,0,0,1459.9061 +4964,6051,10799,10800,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.0065546,9.005311,0,26,3,-49.472271,0,3,3,2021,11,0,54,48,1,0,0,16.844168,16.844168,.05,.05,0,0,0,0,0,0,1,1,0,4.3784785,0,60.87,39.43,25.84,65.07000000000001,8.333333333333334,3,4,0,0,9,8,5,1,1567,2158034.8,1199733.5,640341.56,16717.645,0,0,4962.1997 +4964,6051,10800,10799,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6385269,8.5263414,0,26,-3,-26.824404,0,2,3,2021,23,11,40,40,1,11,0,12.374987,12.374987,.05,.05,.05,0,0,0,0,0,1,1,0,5.9610391,0,25.84,65.07000000000001,60.87,39.43,3.333333333333333,3,4,0,0,9,8,5,1,1567,2158034.8,1199733.5,640341.56,16717.645,0,0,4962.1997 +4964,6051,10801,-9,10799,10800,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.89587,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,5,1,1567,2158034.8,1199733.5,640341.56,16717.645,0,0,4962.1997 +4964,6052,10802,-9,10799,10800,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1080.8971,-9,1,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1348722,0,49.58,55.59,-9,-9,8.333333333333334,3,4,0,0,1,8,1,1,1358,98709.32,0,0,0,0,0,54.907635 +4965,6053,10803,10804,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,8.4653044,8.5855436,0,1,-4,-77.561279,0,-9,-9,2021,12,0,43,45,1,0,0,14.877845,14.877845,.05,.05,0,0,0,0,0,0,0,0,0,2.0631912,0,57.33,53.46,48,59,10,1,1,0,0,8,9,5,0,2323.5,117842.01,-1116.2969,227816.73,140802.16,2262.0884,-533.24664,4290.752 +4965,6053,10804,10803,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.7869482,8.8542976,0,1,4,-28.085459,-9,-9,-9,2021,11,0,40,0,1,2,0,12.258115,12.258115,.05,.05,0,0,0,0,0,0,0,0,0,1.8709977,0,48,59,57.33,53.46,7,4,1,0,0,1,9,5,0,2323.5,117842.01,-1116.2969,227816.73,140802.16,2262.0884,-533.24664,4290.752 +4966,6054,10805,-9,10806,10807,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.56506,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4966,6054,10806,10807,-9,-9,1,0,54,0,2,0,2,2,-9,1,3,0,6.5599418,6.7040868,37,-4,106.12392,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.6291056,53.05,44.84,38.13,22.07,6.666666666666667,1,1,0,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4966,6054,10807,10806,-9,-9,1,1,58,0,2,0,3,3,-9,1,1,0,0,0,36,4,-67.010117,0,2,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,22.07,53.05,44.84,1.666666666666667,1,1,0,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4966,6054,10808,-9,10806,10807,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1121.5647,-9,2,3,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.96,53.17,-9,-9,10,1,1,0,0,0,8,2,1,1128,-12323.689,0,0,0,0,0,1827.3606 +4967,6055,10809,10810,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.6845083,9.6028624,0,26,2,-23.627838,0,-9,-9,2021,7,0,60,60,1,0,0,33.019787,33.019787,0,0,0,0,0,0,0,0,0,0,0,9.1941586,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,10,8,5,1,1071.5,1119406.6,376881.75,386462.59,0,0,4631.9077,13553.271 +4967,6055,10810,10809,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.5471258,9.8235283,0,26,-2,104.59937,0,2,2,2021,7,0,36,39,1,0,0,47.191902,47.191902,0,0,.05,0,0,0,0,0,0,0,0,3.9734082,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,1071.5,1119406.6,376881.75,386462.59,0,0,4631.9077,13553.271 +4967,6056,10811,-9,10809,10810,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-997.21082,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.8256982,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,250,0,0,0,0,0,0,-773.99048 +4968,6057,10812,10813,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,7.6949611,7.8427391,0,7,-2,-108.62268,0,2,3,2021,6,0,65,50,1,0,0,3.226856,3.226856,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.28,47.53,59.53,56.44,8.333333333333334,1,1,0,0,9,5,3,1,440,350596.88,306621.31,0,0,0,0,2197.428 +4968,6057,10813,10812,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,6.6260123,6.7585697,0,7,2,117.54917,0,-9,-9,2021,6,0,30,20,1,0,0,3.0420012,3.0420012,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,56.28,47.53,6.666666666666667,1,1,0,0,2,5,3,1,440,350596.88,306621.31,0,0,0,0,2197.428 +4969,6058,10814,-9,10817,10815,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.8126,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4969,6058,10815,10817,-9,-9,1,1,38,0,2,0,3,3,-9,0,3,7.8925047,7.9142017,0,2,6,116.38435,-9,3,-9,2021,14,4,43,0,1,4,0,7.9317675,7.9317675,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,51.24,58.84,8.333333333333334,1,1,0,0,8,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4969,6058,10816,-9,10817,10815,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.33356,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4969,6058,10817,10815,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,6.9095101,6.7948751,0,2,-6,-21.408478,0,3,3,2021,12,4,16,16,1,4,0,7.2545824,7.2545824,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,40.75,58.26,8.333333333333334,1,1,0,0,8,5,3,0,420.75,275819.41,328778.38,0,0,2355.2371,4743.3486,2031.5676 +4970,6059,10818,10819,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.9261365,8.222537,0,23,-3,-158.23785,0,-9,-9,2021,10,0,42,0,1,0,0,10.120951,10.120951,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.76,52.64,55.53,51.55,8.333333333333334,1,1,0,0,8,4,5,1,699,514087.44,432540,90259.344,38725.906,0,0,3619.0308 +4970,6059,10819,10818,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.4857321,8.543767,0,6,3,-88.98307,0,-9,-9,2021,4,0,50,42,1,0,0,14.003056,14.003056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.53,51.55,55.76,52.64,8.333333333333334,1,1,0,0,1,4,5,1,699,514087.44,432540,90259.344,38725.906,0,0,3619.0308 +4970,6060,10820,-9,10818,10819,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1086.8391,-9,2,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,47.62,-9,-9,6.666666666666667,1,1,0,0,8,4,1,1,147,91698.961,0,0,0,0,0,0 +4971,6061,10821,10823,-9,-9,1,0,30,0,2,0,3,3,-9,0,3,6.2372222,6.3092499,0,9,-2,32.380642,0,2,2,2021,9,0,5,0,1,0,0,8.562748,8.562748,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.61,47.23,57.06,57.76,8.333333333333334,1,1,0,0,1,11,4,1,500,116087.89,14572.226,72136.109,49989.953,0,1292.2169,2572.678 +4971,6061,10822,-9,10821,10823,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1436,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,4,1,500,116087.89,14572.226,72136.109,49989.953,0,1292.2169,2572.678 +4971,6061,10823,10821,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.8291941,8.6584425,0,9,2,-62.111115,0,-9,-9,2021,10,0,50,55,1,0,0,13.776814,13.776814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38.61,47.23,8.333333333333334,1,1,0,0,10,11,4,1,500,116087.89,14572.226,72136.109,49989.953,0,1292.2169,2572.678 +4972,6062,10824,10825,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.3938236,6.3083363,11,5,-113.16021,0,3,3,2021,23,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7996283,6.6197186,35.24,35.57,51,48,5,2,3,0,0,0,4,5,1,524,622631.75,229213.53,315566.38,83500,0,2984.085,12690.445 +4972,6062,10825,10824,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.394537,10.27673,9.7182646,11,-5,-22.035101,0,3,3,2021,10,0,40,42,1,1,0,11.116689,11.116689,0,0,0,1,0,0,0,0,1,1,0,6.4983139,9.3810997,51,48,35.24,35.57,7,1,1,0,0,1,4,5,1,524,622631.75,229213.53,315566.38,83500,0,2984.085,12690.445 +4973,6063,10826,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.9939027,8.2425861,0,0,0,-986.17615,0,-9,3,2021,9,1,38,40,1,1,0,11.309114,11.309114,0,0,0,0,0,0,0,0,0,0,0,0,0,31.56,43.62,-9,-9,5,3,4,0,0,8,8,4,1,1072,834460.5,393730.09,324976.88,0,0,0,613.1933 +4973,6064,10827,-9,10826,-9,1,1,34,0,0,0,2,2,-9,0,4,8.595192,8.5493994,0,0,0,-939.27759,0,1,-9,2021,10,0,40,36,1,1,1,18.198212,18.198212,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,3,4,0,0,1,8,5,1,2357,-66885.359,-84710.953,0,0,0,0,1669.2095 +4973,6065,10828,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3265915,8.5301809,0,0,0,-1052.6814,-9,-9,-9,2021,7,0,60,0,1,0,0,10.112185,10.112185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,965,1038881.6,858404.94,261533.59,118465.13,0,0,2904.1936 +4974,6066,10829,-9,10831,10830,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.99109,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,0,1919.6666,49925.473,28915.826,191571.08,125035.7,11178.092,0,2321.0884 +4974,6066,10830,10831,-9,-9,1,1,23,1,1,0,1,1,-9,0,4,7.9533672,7.4931183,0,3,-1,-63.759426,0,2,2,2021,3,0,35,26,1,0,0,8.0803146,8.0803146,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.62,57.19,6.666666666666667,1,1,0,0,4,1,4,0,1919.6666,49925.473,28915.826,191571.08,125035.7,11178.092,0,2321.0884 +4974,6066,10831,10830,-9,-9,1,0,24,1,1,0,1,1,-9,0,4,7.5685892,7.901269,0,3,1,-13.88933,0,-9,-9,2021,12,2,35,0,1,2,0,10.663895,10.663895,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.62,57.19,57.16,56.15,8.333333333333334,1,1,0,0,1,1,4,0,1919.6666,49925.473,28915.826,191571.08,125035.7,11178.092,0,2321.0884 +4975,6067,10832,10833,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.1240025,7.9874263,5.8154016,10,4,-25.595318,0,3,3,2021,12,0,43,43,1,0,0,6.8292947,6.8292947,.05,.05,0,1,0,.63185024,0,0,1,1,0,0,6.0508399,50.6,51,49.97,53.99,5,1,1,0,0,11,11,4,1,189.5,-71626.531,1970.9316,0,0,0,0,2337.0847 +4975,6067,10833,10832,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.136899,6.9950371,0,10,-4,-39.932266,0,2,2,2021,10,0,40,40,1,0,0,4.976625,4.976625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.97,53.99,50.6,51,8.333333333333334,1,1,0,0,11,11,4,1,189.5,-71626.531,1970.9316,0,0,0,0,2337.0847 +4976,6068,10834,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.4622927,8.6859512,5.4774537,0,0,-883.21954,0,1,2,2021,7,0,35,37,1,0,0,15.173925,15.173925,.05,.05,0,0,0,0,0,0,1,1,0,6.9336562,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,104,492653.94,539314.88,0,0,0,0,2488.9521 +4977,6069,10835,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,8.5000248,8.1054964,0,0,0,-1016.1069,0,2,3,2021,26,12,37,37,1,12,0,10.489967,10.489967,.05,.05,0,0,0,0,0,0,1,1,0,.35281801,0,17.75,35.24,-9,-9,1.666666666666667,1,1,0,0,10,6,4,1,87,792757.75,606708.19,278925.69,95811.805,4267.2319,0,1790.4303 +4978,6070,10836,10837,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.5025444,9.5283804,0,32,1,110.0729,0,2,1,2021,13,2,45,38,1,2,0,50.106953,50.106953,0,0,0,0,0,0,0,0,0,0,0,.96118152,0,45.15,57.46,50.63,50.99,8.333333333333334,1,1,0,0,9,6,5,1,960.5,676327.5,212405.47,397012.38,72079.336,1179.3367,0,7738.8193 +4978,6070,10837,10836,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.5382576,8.7817631,0,32,-1,-53.070782,0,2,2,2021,8,0,38,37,1,0,0,12.749784,12.749784,0,0,0,0,0,0,0,0,0,0,0,2.6655114,0,50.63,50.99,45.15,57.46,8.333333333333334,1,1,0,0,7,6,5,1,960.5,676327.5,212405.47,397012.38,72079.336,1179.3367,0,7738.8193 +4978,6071,10838,-9,10837,10836,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-893.91675,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9493742,0,46.39,60.99,-9,-9,10,1,1,1,0,3,6,1,1,593,-192415.64,0,0,0,0,0,785.08099 +4978,6072,10839,-9,10837,10836,1,0,26,0,0,0,1,1,-9,0,3,7.7204194,7.7585845,0,0,0,-1020.148,0,2,2,2021,4,1,38,30,1,1,1,7.4150391,7.4150391,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,51.81,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,144,154754.72,0,0,0,0,0,303.78497 +4979,6073,10840,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,5,6.3644319,6.4365358,0,0,0,-924.46674,0,2,2,2021,12,0,38,39,1,0,0,1.8867816,1.8867816,0,0,0,0,0,0,0,0,1,1,0,0,0,30.67,65.95,-9,-9,8.333333333333334,1,1,0,0,6,2,2,0,2102,158236.06,0,0,0,0,0,1190.1963 +4980,6074,10841,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,8.1294794,8.2258625,5.0074625,0,0,-926.49884,0,-9,-9,2021,14,3,38,38,1,3,0,10.103775,10.103775,0,0,0,0,0,0,0,0,0,0,0,4.5549202,0,56.05,48.44,-9,-9,1.666666666666667,1,1,0,0,3,4,4,0,661,29932.381,0,0,0,3291.6753,0,1642.9287 +4981,6075,10842,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,3,0,0,0,0,0,-961.12189,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,3.2513828,0,23.176249,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,11,1,0,658,270663.69,0,201815.14,0,0,0,1544.6234 +4982,6076,10843,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.8829832,7.6628103,0,0,0,-1017.2908,0,-9,-9,2021,17,5,38,38,1,5,0,7.8485084,7.8485084,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,2,8,4,0,2686,-143531.64,0,0,0,0,0,1102.3984 +4983,6077,10844,10845,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.445591,8.3515587,0,3,9,135.31847,0,1,1,2021,14,3,40,42,1,3,0,14.50651,14.50651,.05,.05,0,0,0,0,0,0,0,0,0,6.5698333,0,45.99,57.05,50.6,53.68,6.666666666666667,1,1,0,0,7,1,5,1,1116.5,63829.57,102199.88,155160.86,98347.688,12308.73,0,3059.5776 +4983,6077,10845,10844,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.8922286,7.7838449,0,3,0,66.222816,0,-9,-9,2021,10,1,38,37,1,1,0,8.2122278,8.2122278,.05,.05,0,0,0,0,0,0,0,0,0,1.2056119,0,50.6,53.68,45.99,57.05,8.333333333333334,1,1,0,0,2,1,5,1,1116.5,63829.57,102199.88,155160.86,98347.688,12308.73,0,3059.5776 +4984,6078,10846,10847,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5970521,7.8438973,6.5887771,15,0,37.560665,0,3,-9,2021,8,0,60,60,1,0,0,3.8832338,3.8832338,0,0,0,0,0,0,0,14.5,0,0,0,0,6.5125003,62.27,42.94,37.77,37.9,10,1,1,0,0,6,5,4,1,631,1549564.5,765989.38,521718.81,0,1289.9297,0,3966.8726 +4984,6078,10847,10846,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6912761,7.6196384,15,9,5.23911,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7896442,7.7259049,37.77,37.9,62.27,42.94,6.666666666666667,1,1,0,0,0,5,4,1,631,1549564.5,765989.38,521718.81,0,1289.9297,0,3966.8726 +4985,6079,10848,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3297048,7.23453,0,0,-1134.7256,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9853296,7.428761,45.23,56.21,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,528,669845,250631.61,274799.56,0,0,0,1067.835 +4985,6080,10849,10850,-9,10848,1,1,40,0,0,0,1,1,-9,0,4,8.7375278,8.7770414,0,1,5,52.926247,0,2,2,2021,10,0,35,35,1,1,0,21.683512,21.683512,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,56,47,57,7,1,1,0,0,1,7,5,1,280.5,726698,541423.88,229178.75,24578.043,0,0,2670.0654 +4985,6080,10850,10849,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,6.8434558,6.7622671,0,1,-5,-48.586952,-9,-9,-9,2021,11,0,8,0,1,2,0,12.689137,12.689137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,50,56,7,4,1,0,0,1,7,5,1,280.5,726698,541423.88,229178.75,24578.043,0,0,2670.0654 +4986,6081,10851,10852,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.9889259,8.2757292,7.1110668,35,1,-124.27334,0,-9,-9,2021,11,1,15,15,1,1,0,27.748318,27.748318,0,0,0,0,0,0,0,0,0,0,0,7.687355,7.2458987,50.03,52.62,49.28,52.09,8.333333333333334,1,1,0,0,10,1,5,1,156.5,1649969.4,831988.25,372556.38,0,0,0,3218.3772 +4986,6081,10852,10851,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.7644577,7.8941565,5.8255162,35,-1,-84.711517,0,3,3,2021,8,0,9,15,1,0,0,34.582138,34.582138,0,0,.05,0,0,0,0,0,0,0,0,6.7475481,5.8427734,49.28,52.09,50.03,52.62,8.333333333333334,1,1,0,0,10,1,5,1,156.5,1649969.4,831988.25,372556.38,0,0,0,3218.3772 +4987,6082,10853,10854,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.8110805,7.8017426,0,9,8,18.733603,0,-9,-9,2021,9,0,50,0,1,1,0,5.6532693,5.6532693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,39.98,50.61,8,2,3,0,0,1,8,3,0,402,729722.75,367920.13,315901.31,0,0,0,2411.8813 +4987,6082,10854,10853,-9,-9,1,0,44,0,0,0,3,3,-9,0,5,0,0,0,27,-8,-24.620382,0,-9,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,50.61,53,55,8.333333333333334,2,3,1,0,0,8,3,0,402,729722.75,367920.13,315901.31,0,0,0,2411.8813 +4987,6083,10855,-9,10854,10853,1,1,22,0,0,0,2,2,-9,0,5,8.1944065,8.4067774,0,0,0,-1066.6877,0,3,3,2021,7,0,54,35,1,0,1,9.5345421,9.5345421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,1979,-19708.137,39181.523,0,0,0,0,1817.283 +4987,6084,10856,-9,10854,10853,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1023.6862,-9,3,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.19,52.71,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,846,-145804.06,0,0,0,0,0,0 +4988,6085,10857,10858,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4056606,7.8345504,52,0,-8.5259352,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3125203,8.2837429,41.06,62.04,47.95,32.2,8.333333333333334,1,1,0,0,0,5,3,1,3241,1083343.8,622013.13,263096.19,0,0,0,2577.4636 +4988,6085,10858,10857,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,12,0,163.88121,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1345844,0,0,1,1,0,2.6345234,0,47.95,32.2,41.06,62.04,6.666666666666667,1,1,0,0,0,5,3,1,3241,1083343.8,622013.13,263096.19,0,0,0,2577.4636 +4989,6086,10859,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6908236,8.4730673,0,0,0,-1030.8107,0,3,3,2021,11,0,38,78,1,0,0,14.151253,14.151253,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.56,45.13,-9,-9,5,2,3,0,0,10,6,5,1,179,98549.125,-8314.2012,44263.027,31805.111,6804.9209,8305.3604,1849.2026 +4990,6087,10860,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,2,7.5034146,7.5705123,0,0,0,-915.91272,0,1,2,2021,17,5,25,30,1,5,0,8.3805103,8.3805103,0,0,0,0,0,0,0,0,1,1,0,2.8525901,0,30.46,58.06,-9,-9,3.333333333333333,1,1,0,0,7,7,3,1,516,-128081.22,0,0,0,0,0,1780.9617 +4990,6087,10861,-9,10860,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.5886,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,516,-128081.22,0,0,0,0,0,1780.9617 +4991,6088,10862,10864,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,0,0,0,1,6,0,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,56,47,57,7,2,3,1,1,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4991,6088,10863,-9,10864,10862,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.43073,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4991,6088,10864,10862,-9,-9,1,0,34,0,2,0,1,1,0,0,4,0,0,0,1,-6,0,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,56,7,2,3,0,1,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4991,6088,10865,-9,10864,10862,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.224,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,434.5,46566.551,0,0,0,0,557.91907,851.22699 +4992,6089,10866,10867,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.838726,9.2282572,0,40,3,-155.99977,-9,3,3,2021,6,0,56,0,1,0,0,15.658502,15.658502,.05,.05,0,0,0,0,0,0,1,1,0,4.244133,0,60.12,54.8,62.43,40.11,8.333333333333334,1,1,0,0,9,12,5,1,590.5,1579337.8,1366800.8,426414.25,27693.848,0,0,4144.354 +4992,6089,10867,10866,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.1050482,7.9437752,0,40,-3,72.817039,-9,3,3,2021,6,0,38,0,1,0,0,9.9993038,9.9993038,0,0,0,0,0,0,0,0,1,1,0,0,0,62.43,40.11,60.12,54.8,8.333333333333334,1,1,0,0,9,12,5,1,590.5,1579337.8,1366800.8,426414.25,27693.848,0,0,4144.354 +4992,6090,10868,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1003.9818,-9,3,-9,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,56.59,-9,-9,8.333333333333334,1,1,1,0,5,12,1,1,165,72865.977,0,0,0,0,0,0 +4992,6091,10869,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.4488659,7.6718898,0,0,0,-891.66406,-9,-9,-9,2021,6,0,46,0,1,0,0,4.3384571,4.3384571,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,539,-109238.95,0,0,0,9108.2559,0,1683.6152 +4992,6092,10870,-9,-9,-9,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-967.86334,-9,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,-9,-9,10,1,1,0,0,0,12,1,1,300,169981.16,0,0,0,0,0,248.01738 +4993,6093,10871,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.2974157,8.5796337,0,0,0,-925.22235,0,-9,-9,2021,14,2,38,35,1,2,0,13.252871,13.252871,0,0,0,0,0,0,0,0,0,0,0,.68569875,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,765,-5863.8687,0,0,0,0,0,1698.3901 +4994,6094,10872,10873,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.5207939,8.3738127,0,40,0,27.90357,0,2,2,2021,5,0,84,84,1,0,0,7.8527646,7.8527646,0,0,0,0,0,0,0,42,1,1,0,0,0,57.32,38.32,43.96,32.95,8.333333333333334,1,1,0,0,10,7,5,1,736.5,1710992.6,1429650,352778.25,0,1730.4716,0,5156.0723 +4994,6094,10873,10872,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,7.6646276,7.6854982,11,9,-19.7612,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,64.654884,0,0,1,1,0,0,7.8073297,43.96,32.95,57.32,38.32,3.333333333333333,1,1,0,0,0,7,5,1,736.5,1710992.6,1429650,352778.25,0,1730.4716,0,5156.0723 +4995,6095,10874,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.3224154,8.6586227,0,0,0,-1038.0609,0,3,2,2021,11,0,48,48,1,0,0,10.017342,10.017342,.05,.05,0,0,0,0,0,0,0,0,0,6.1034665,0,48.42,60.53,-9,-9,0,1,1,0,0,12,7,5,1,668,-43543.949,109675.38,0,0,0,5625.8804,1419.1932 +4996,6096,10875,-9,10876,10878,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.2458,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4996,6096,10876,10878,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.0558543,7.6133924,0,11,-1,-119.85663,0,-9,-9,2021,14,2,18,16,1,2,0,8.384182,8.384182,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,56.47,59.4,8.333333333333334,1,1,0,0,13,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4996,6096,10877,-9,10876,10878,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.85657,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4996,6096,10878,10876,-9,-9,1,1,35,0,2,0,2,2,-9,0,5,6.6571231,6.9437814,0,11,1,-106.24863,0,2,2,2021,9,0,60,60,1,0,0,1.5216672,1.5216672,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,51.83,57.2,10,1,1,0,0,13,5,2,1,807.25,-26667.971,0,0,0,0,0,1088.0745 +4997,6097,10879,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.2359114,9.2903957,0,0,0,-1122.2054,0,2,1,2021,12,0,60,60,1,0,0,23.897703,23.897703,0,0,0,0,0,0,0,0,0,0,0,0,0,50.22,52.72,-9,-9,5,2,3,0,0,11,13,5,1,114,1666528.4,932308.06,597185.88,110679.83,0,0,4531.8633 +4998,6098,10880,10881,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.3661318,8.0238562,0,23,-2,-7.6063781,0,3,3,2021,10,0,30,30,1,0,0,12.882126,12.882126,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.68,55.12,54.8,42.45,8.333333333333334,1,1,0,0,8,4,5,1,1455,206321.98,159678.08,192054.64,59751.727,4435.0103,2844.2195,4009.9036 +4998,6098,10881,10880,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.67206,8.9151955,0,23,2,64.139244,0,3,3,2021,5,1,40,39,1,1,0,16.936966,16.936966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.8,42.45,47.68,55.12,8.333333333333334,1,1,0,0,7,4,5,1,1455,206321.98,159678.08,192054.64,59751.727,4435.0103,2844.2195,4009.9036 +4998,6099,10882,-9,10880,10881,1,1,21,0,0,0,2,2,-9,0,4,7.7623425,8.0166311,0,0,0,-937.05347,0,1,2,2021,11,0,40,0,1,2,1,7.4932637,7.4932637,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,3,1,897,-222633.06,-153008.36,0,0,0,0,908.7356 +4998,6100,10883,-9,10880,10881,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.6605,1,1,2,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.46,54.85,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,1099,91407.578,0,0,0,0,0,0 +4999,6101,10884,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.4743419,7.4786143,0,0,-996.20422,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.1451263,7.8988686,50.01,52.64,-9,-9,5,1,1,0,0,10,1,3,1,768,324424.91,574690.69,0,0,0,0,873.40173 +5000,6102,10885,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,7.0486898,7.782702,6.1787052,0,0,-841.30731,0,1,1,2021,8,0,25,25,1,0,0,6.1530967,6.1530967,0,0,0,0,0,0,0,0,1,1,0,1.5337023,6.414382,48.96,60.26,-9,-9,6.666666666666667,1,1,0,0,7,1,3,1,234,1024583.6,441978.34,237928.78,0,0,0,1243.7124 +5001,6103,10886,10887,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.5917182,7.680316,9,1,90.235321,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0283332,7.8229442,58.56,41.85,54.26,50.74,8.333333333333334,1,1,0,0,0,4,3,1,887.5,439956.81,302480.25,196546.44,0,0,0,3106.3384 +5001,6103,10887,10886,-9,-9,1,0,77,0,0,0,2,2,-9,0,5,0,6.5986171,6.8343453,9,-1,87.007095,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.41487083,6.6228132,54.26,50.74,58.56,41.85,8.333333333333334,1,1,0,0,0,4,3,1,887.5,439956.81,302480.25,196546.44,0,0,0,3106.3384 +5002,6104,10888,10889,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.1911201,8.4306078,60,4,80.898544,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3448696,62.18,36.18,56.55,42.76,8.333333333333334,1,1,0,0,0,7,4,1,610,1598277.5,535989.5,836785,0,0,0,3460.3569 +5002,6104,10889,10888,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,60,-4,-82.682556,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,9.0994978,0,0,1,1,0,6.9903398,0,56.55,42.76,62.18,36.18,0,1,1,0,0,0,7,4,1,610,1598277.5,535989.5,836785,0,0,0,3460.3569 +5003,6105,10890,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.801096,8.1450109,6.4259782,0,0,-1078.4534,0,3,2,2021,8,0,37,0,1,0,0,7.4778547,7.4778547,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8599663,35.5,54.11,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,475,133892.94,171126.22,0,0,0,0,1830.2949 +5004,6106,10891,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.0842876,8.3388968,0,0,-1162.7865,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2595062,8.3269596,53.22,47.16,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,278,556255,273597,104264.34,5585.0063,0,0,1572.1356 +5005,6107,10892,10894,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.6142397,8.7079182,0,11,-6,128.77292,0,-9,-9,2021,11,0,50,50,1,0,0,9.7380466,9.7380466,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.33,53.46,6.666666666666667,1,1,0,0,12,8,4,0,301,1130705.5,268567.03,449719.06,0,0,0,3121.1011 +5005,6107,10893,-9,10894,10892,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1054.3643,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,301,1130705.5,268567.03,449719.06,0,0,0,3121.1011 +5005,6107,10894,10892,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9089994,7.7998667,0,15,6,201.51974,0,2,3,2021,10,0,28,30,1,0,0,9.4144249,9.4144249,.05,.05,0,0,0,0,0,0,1,1,0,1.3921491,0,57.33,53.46,55.96,49.93,8.333333333333334,1,1,0,0,11,8,4,0,301,1130705.5,268567.03,449719.06,0,0,0,3121.1011 +5006,6108,10895,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.0433331,7.9138827,0,0,0,-1098.8971,0,-9,-9,2021,4,1,43,35,1,1,0,9.3913946,9.3913946,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,8,8,4,0,147,207124.19,-153275.95,222747.88,77630.094,0,0,673.65564 +5007,6109,10896,10897,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.6914911,8.4707212,0,5,1,-97.956429,0,-9,-9,2021,20,9,50,50,1,9,0,14.478881,14.478881,.05,.05,0,0,0,0,0,0,0,0,0,2.6500342,0,41.06,62.04,41.59,61.77,6.666666666666667,1,1,0,0,10,8,5,1,510,99477.992,42916.172,0,0,4709.3159,6013.3613,4986.6602 +5007,6109,10897,10896,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.6167622,8.6959667,0,5,-1,79.106506,0,-9,-9,2021,16,4,37,40,1,4,0,19.338171,19.338171,.05,.05,0,0,0,0,0,0,0,0,0,3.3932791,0,41.59,61.77,41.06,62.04,8.333333333333334,1,1,0,0,4,8,5,1,510,99477.992,42916.172,0,0,4709.3159,6013.3613,4986.6602 +5008,6110,10898,-9,10899,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.875,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,2546,-811.77441,22910.699,0,0,0,0,1173.7913 +5008,6110,10899,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.3903446,6.8517213,5.8567362,0,0,-985.06714,0,3,3,2021,8,0,37,35,1,0,0,1.9364679,1.9364679,.05,.05,0,0,0,0,0,0,1,1,0,5.6169128,0,50.12,53.99,-9,-9,8.333333333333334,1,1,0,0,6,11,2,0,2546,-811.77441,22910.699,0,0,0,0,1173.7913 +5009,6111,10900,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.7743268,7.9596801,0,0,0,-1092.8191,0,-9,-9,2021,10,0,35,30,1,1,0,8.5279694,8.5279694,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,7,1,1,0,0,9,1,3,0,841,90436.242,48578.207,0,0,0,0,1297.0757 +5010,6112,10901,10902,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.9262695,8.919261,0,27,5,-74.273369,0,3,2,2021,6,0,35,35,1,0,0,22.717548,22.717548,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,2,3,0,0,14,8,4,1,688,-29667.561,17791.152,0,0,2040.3678,0,3604.8906 +5010,6112,10902,10901,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,27,-5,1.3899269,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,2,3,0,0,0,8,4,1,688,-29667.561,17791.152,0,0,2040.3678,0,3604.8906 +5010,6113,10903,-9,10902,10901,1,0,25,0,0,0,1,1,-9,0,4,8.1348381,8.199276,0,0,0,-914.88464,0,2,1,2021,12,0,40,40,1,0,1,8.8053751,8.8053751,0,0,0,0,0,0,0,0,0,0,0,0,0,40.58,46.26,-9,-9,5,2,3,0,0,5,8,4,1,350,33889.609,0,0,0,0,0,1874.6006 +5010,6114,10904,-9,10902,10901,1,0,22,0,0,0,2,2,-9,0,4,7.812192,8.2094631,0,0,0,-1170.58,0,2,1,2021,9,0,32,12,1,0,1,7.2007957,7.2007957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.44,56.39,-9,-9,10,2,3,0,0,3,8,3,1,711,-3446.0378,-9982.3164,0,0,0,0,1319.62 +5010,6115,10905,-9,10902,10901,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1071.1774,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2042093,0,53.94,50.75,-9,-9,10,2,3,0,0,0,8,1,1,876,15802.236,0,0,0,0,0,679.86664 +5011,6116,10906,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.7003279,8.8611546,0,0,0,-943.40155,0,2,3,2021,9,1,47,55,1,1,0,16.816135,16.816135,.05,.05,.05,0,0,0,0,0,0,0,0,3.8862832,0,57.17,48.12,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,546,2029983.6,613925.44,1465032.4,400760.03,0,0,2224.332 +5012,6117,10907,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6081681,7.3296947,0,0,0,-1022.01,0,3,2,2021,9,0,40,36,1,0,0,5.4831185,5.4831185,0,0,0,0,0,0,0,0,0,0,0,0,0,50.42,53.85,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,1105,-14089.153,-47593.297,0,0,0,0,567.61444 +5012,6118,10908,-9,10907,-9,1,1,30,0,0,0,3,3,-9,0,2,7.5673294,7.5167809,0,0,0,-1036.5276,0,2,-9,2021,7,0,24,0,1,0,1,8.7125473,8.7125473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.34,48.86,-9,-9,6.666666666666667,1,1,0,0,1,11,3,0,112,168283.44,7696.3442,0,0,0,1312.9319,1045.1896 +5013,6119,10909,10910,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.2798319,7.8318868,0,4,3,71.773285,0,-9,-9,2021,11,0,45,45,1,0,0,8.4183197,8.4183197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.73,42.44,54.79,55.86,6.666666666666667,1,1,0,0,11,10,5,1,977,934404.88,814088.75,232258.42,143862.52,6379.6846,12212.59,3950.9209 +5013,6119,10910,10909,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.6857653,8.6228504,0,4,-3,69.344711,0,1,2,2021,6,0,43,45,1,0,0,18.053307,18.053307,.05,.05,0,0,0,0,0,0,0,0,0,3.9989483,0,54.79,55.86,45.73,42.44,8.333333333333334,1,1,0,0,9,10,5,1,977,934404.88,814088.75,232258.42,143862.52,6379.6846,12212.59,3950.9209 +5014,6120,10911,-9,10914,10912,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.1853,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5014,6120,10912,10914,-9,-9,1,1,33,1,2,0,2,2,-9,0,4,8.0483837,8.1036911,0,10,5,37.573292,0,-9,2,2021,6,0,40,27,1,0,0,13.26365,13.26365,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.48,56.4,8.333333333333334,1,1,0,0,7,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5014,6120,10913,-9,10914,10912,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.1758,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5014,6120,10914,10912,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,10,-5,1.3878518,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,0,887.5,41567.152,-16543.316,100408.87,94813.039,0,0,2433.7505 +5015,6121,10915,10916,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.6695137,10.008999,0,6,-2,-11.504567,0,-9,-9,2021,9,0,40,72,1,1,0,48.179424,48.179424,.05,.05,0,0,0,0,0,0,0,0,0,6.6845469,0,52,55,65.06,41.58,8,1,1,0,0,1,13,5,1,1303,571772.75,68973.828,191419.11,111918.92,0,0,44354.492 +5015,6121,10916,10915,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.8802195,7.5313115,0,6,2,1.3731524,0,3,3,2021,9,0,35,40,1,0,0,8.1192846,8.1192846,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,65.06,41.58,52,55,8.333333333333334,1,1,0,0,7,13,5,1,1303,571772.75,68973.828,191419.11,111918.92,0,0,44354.492 +5016,6122,10917,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.9243164,6.266304,0,0,-1103.751,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1884432,61.02,42.13,-9,-9,8.333333333333334,1,1,0,0,4,4,2,0,760,185940.03,80378.563,0,0,0,0,882.83661 +5017,6123,10918,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.2321415,7.3127241,0,0,-960.47534,0,-9,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,7.0529008,43.64,32.54,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1507,49567.18,33181.363,10200.534,0,0,0,1941.1208 +5017,6124,10919,-9,10918,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5879455,7.6519027,0,0,0,-1076.2294,0,3,-9,2021,12,0,20,37,1,0,0,10.896809,10.896809,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.97,50.31,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,559,438875.47,385855.59,66253.289,0,0,0,1652.379 +5018,6125,10920,10921,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,8.1770468,8.3354607,0,9,1,-27.661837,0,3,2,2021,12,0,58,45,1,0,0,6.4243464,6.4243464,.05,.05,0,0,0,0,0,0,1,1,0,6.0929551,0,48.87,58.55,49.04,55.86,8.333333333333334,1,1,0,0,11,5,4,1,804.66669,-119141.32,-70684.242,236653.69,150983.39,521.7226,588.91107,2358.8684 +5018,6125,10921,10920,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.3839097,7.2260022,0,9,-1,-38.887306,0,2,2,2021,10,1,26,30,1,1,0,7.3305025,7.3305025,0,0,0,0,0,0,0,0,1,1,0,2.6783226,0,49.04,55.86,48.87,58.55,8.333333333333334,1,1,0,0,11,5,4,1,804.66669,-119141.32,-70684.242,236653.69,150983.39,521.7226,588.91107,2358.8684 +5018,6125,10922,-9,10921,10920,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.6669,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,804.66669,-119141.32,-70684.242,236653.69,150983.39,521.7226,588.91107,2358.8684 +5019,6126,10923,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,3.2887065,2.5402074,0,0,-996.98474,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8596406,3.1810904,38.37,33.04,-9,-9,3.333333333333333,1,1,0,0,7,4,2,0,3178,199680.28,-18801.619,0,0,-2353.3577,0,70.815384 +5020,6127,10924,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.4656525,7.8220634,0,0,0,-1039.7549,0,2,2,2021,17,7,12,13,1,7,0,18.331905,18.331905,0,0,0,0,0,0,0,14.5,0,0,0,0,0,50.94,53.44,-9,-9,6.666666666666667,1,1,0,1,14,12,3,1,2231,-46684.855,137498.59,82006.516,0,0,-1094.1818,472.48169 +5021,6128,10925,10926,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,10,0,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7097926,0,52,47,51,49.37,7,1,1,0,0,0,2,1,1,1291.5,116450.51,61469.75,103427.98,0,0,0,2081.9795 +5021,6128,10926,10925,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,54,0,0,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0340632,0,51,49.37,52,47,6.666666666666667,1,1,0,0,0,2,1,1,1291.5,116450.51,61469.75,103427.98,0,0,0,2081.9795 +5022,6129,10927,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.6108575,7.8287387,6.8066106,0,0,-928.10016,0,3,3,2021,26,11,50,-9,1,11,0,5.9859524,5.9859524,0,0,0,0,0,0,0,0,0,0,0,7.5503879,6.7466269,25.46,55.01,-9,-9,0,1,1,0,0,8,8,4,1,1081,897267.5,72587.539,787549.69,56383.297,0,0,2334.9465 +5023,6130,10928,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,7.4190087,7.422996,0,0,0,-924.37396,0,2,2,2021,13,3,45,12,1,3,0,4.8691921,4.8691921,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,43.67,-9,-9,3.333333333333333,1,1,0,0,9,5,3,0,1122,69572.094,0,0,0,6731.4341,0,1235.7678 +5024,6131,10929,10931,-9,-9,1,1,39,1,1,0,1,1,-9,0,2,9.4387455,9.5409498,0,16,0,-81.472725,0,2,2,2021,7,0,40,42,1,0,0,40.80254,40.80254,.05,.05,0,0,0,0,0,0,0,0,0,8.447855,0,56.19,46.16,46.14,51.88,6.666666666666667,2,3,0,0,10,8,5,1,557,690693.31,346764.66,526306.88,279939.59,0,0,10204.93 +5024,6131,10930,-9,10931,10929,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.2418,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,1,557,690693.31,346764.66,526306.88,279939.59,0,0,10204.93 +5024,6131,10931,10929,-9,-9,1,0,39,1,1,0,1,1,-9,0,3,9.1455288,9.1987629,0,11,0,.17799079,0,-9,-9,2021,9,1,41,42,1,1,0,28.001163,28.001163,.05,.05,0,0,0,0,0,0,0,0,0,9.2876987,0,46.14,51.88,56.19,46.16,6.666666666666667,2,3,0,0,7,8,5,1,557,690693.31,346764.66,526306.88,279939.59,0,0,10204.93 +5025,6132,10932,10933,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,13,-8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,63.86,27.54,10,1,1,0,0,4,2,1,1,1586,197333.59,0,169445.53,0,0,0,1372.4338 +5025,6132,10933,10932,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,13,8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.86,27.54,62.49,55.09,8.333333333333334,1,1,0,0,0,2,1,1,1586,197333.59,0,169445.53,0,0,0,1372.4338 +5026,6133,10934,-9,10936,10935,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1073.2657,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10935,10936,-9,-9,1,1,47,0,3,0,2,2,-9,1,2,0,0,0,12,13,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.78,24.54,51.57,37.05,5,1,1,0,1,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10936,10935,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,0,0,0,13,-13,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.57,37.05,58.78,24.54,5,1,1,0,0,2,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10937,-9,10936,10935,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.4624,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5026,6133,10938,-9,10936,10935,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.0968,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,1,0,776.20001,249435.23,52130.27,106776.78,22252.959,0,0,2568.2063 +5027,6134,10939,10940,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.0078115,5.9712076,7,-4,96.582298,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.9801948,6.0720296,52.31,58.29,61.91,40.48,8.333333333333334,1,1,0,0,3,12,2,1,521,602088.94,233540.11,203334.42,0,0,0,2211.5115 +5027,6134,10940,10939,-9,-9,1,1,74,0,0,0,3,3,-9,0,5,0,6.6252003,6.6644483,7,4,-46.106339,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.95456254,6.4444571,61.91,40.48,52.31,58.29,8.333333333333334,1,1,0,0,0,12,2,1,521,602088.94,233540.11,203334.42,0,0,0,2211.5115 +5028,6135,10941,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.3435922,7.5596108,0,0,-906.17249,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.4778819,7.7546072,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,293,865352.88,400216.88,433960.78,0,0,0,1913.9691 +5029,6136,10942,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1041.1323,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.6480618,0,43.84,37.11,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,846,39300.137,0,156109.91,0,0,0,1196.4376 +5029,6137,10943,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-912.52356,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.67,53.03,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,1021,150461.31,0,0,0,0,0,762.63544 +5030,6138,10944,-9,-9,-9,1,0,31,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1048.337,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,1,1,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5030,6138,10945,-9,10944,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.5337,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5030,6138,10946,-9,10944,-9,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.5751,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5030,6138,10947,-9,10944,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1161.5559,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,1,1,684.5,11220.088,0,0,0,0,0,1279.6759 +5031,6139,10948,-9,10950,10949,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.1072,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1113.6666,145847.89,110702.83,0,0,4325.9106,0,3601.0779 +5031,6139,10949,10950,-9,-9,1,1,37,1,1,0,1,1,-9,0,5,8.0127859,7.8706212,0,2,-1,116.95684,0,2,1,2021,8,1,2,1,1,1,0,212.39992,212.39992,.05,.05,0,0,0,0,0,0,1,1,0,7.8827162,0,51.14,60.45,59.31,44.28,5,1,1,0,0,10,7,3,1,1113.6666,145847.89,110702.83,0,0,4325.9106,0,3601.0779 +5031,6139,10950,10949,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,0,0,0,2,1,-9.5204172,0,-9,-9,2021,10,0,0,50,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.1754098,0,59.31,44.28,51.14,60.45,8.333333333333334,1,1,0,0,4,7,3,1,1113.6666,145847.89,110702.83,0,0,4325.9106,0,3601.0779 +5032,6140,10951,10952,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.9119372,5.4354763,9,-3,84.916107,0,2,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7050595,63.46,23.18,60.12,54.8,10,1,1,0,0,1,6,2,1,1406.5,494086.63,89605.906,325048.56,0,0,0,1484.2139 +5032,6140,10952,10951,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,9,3,52.49332,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6715541,0,60.12,54.8,63.46,23.18,10,1,1,0,0,5,6,2,1,1406.5,494086.63,89605.906,325048.56,0,0,0,1484.2139 +5033,6141,10953,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.9862051,9.5763559,7.8457422,0,0,-1008.9856,0,2,2,2021,6,0,40,40,1,0,0,29.783726,29.783726,0,0,0,0,0,0,0,0,1,1,0,7.7673893,7.9474306,60.3,46.58,-9,-9,8.333333333333334,1,1,0,0,10,7,5,0,181,831267.63,0,540842.5,0,0,0,5562.3789 +5034,6142,10954,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.5519357,7.4271612,0,0,-939.92224,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2011662,7.7653542,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,473,387252.75,276378.22,62009.387,0,0,0,1919.6263 +5035,6143,10955,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.9269004,8.0132294,0,4,3,22.0646,0,-9,-9,2021,8,0,36,37,1,0,0,9.1949282,9.1949282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,62.49,55.09,5,1,1,0,1,10,4,3,1,300,51382.031,31559.066,0,0,9808.8115,0,838.71899 +5035,6144,10956,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,4,-3,-58.60931,0,-9,-9,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.67,55.57,6.666666666666667,1,1,1,1,2,4,3,1,654,71585.156,0,0,0,0,0,0 +5036,6145,10957,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,5,0,5.8205719,6.2908993,0,0,-1005.0922,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4856846,6.1832876,57.65,56.13,-9,-9,10,1,1,0,0,0,7,2,1,1254,401256.81,75947.344,165419.59,0,0,0,676.59625 +5037,6146,10958,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,9.3947573,9.9043131,7.2350512,0,0,-864.32025,0,2,2,2021,10,0,30,34,1,0,0,41.735081,41.735081,.05,.05,0,0,0,0,0,0,1,1,0,6.8261709,7.940681,45.49,58.84,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,721,489268.06,309335.5,296311.88,36191.023,0,0,4935.1016 +5038,6147,10959,10960,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,7.7907977,7.5935764,0,1,0,-14.455144,-9,-9,-9,2021,14,3,35,0,1,3,0,7.9434781,7.9434781,.05,.05,0,0,0,0,0,0,0,0,0,2.1522243,0,37.9,51.46,55.19,54.26,6.666666666666667,1,1,0,0,0,10,4,1,632,63421.871,-27598.73,241178.72,179794.81,-318.87167,5119.4253,2255.7676 +5038,6147,10960,10959,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.6242332,8.0274897,0,1,0,7.4465976,0,2,2,2021,10,2,40,22,1,2,0,6.1142411,6.1142411,.05,.05,0,0,0,0,0,0,0,0,0,1.7817235,0,55.19,54.26,37.9,51.46,8.333333333333334,1,1,0,0,10,10,4,1,632,63421.871,-27598.73,241178.72,179794.81,-318.87167,5119.4253,2255.7676 +5039,6148,10961,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,6.9059801,6.7273264,0,0,0,-1074.4553,0,2,2,2021,12,0,14,14,1,0,0,8.5663929,8.5663929,0,0,0,0,0,0,0,0,1,0,1,0,0,44.35,23.51,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,383,101539.3,0,0,0,0,387.79559,1042.3522 +5039,6149,10962,-9,10961,-9,1,1,20,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1109.6718,-9,2,-9,2021,15,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,24.14,55.16,-9,-9,1.666666666666667,1,1,1,1,0,9,1,0,809,35989.402,0,0,0,0,0,651.07874 +5040,6150,10963,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,6.5066028,7.4585009,6.8915186,0,0,-941.70129,0,3,2,2021,14,3,55,60,1,3,0,2.2058618,2.2058618,.05,.05,0,0,0,0,0,0,1,1,0,3.692178,6.9699159,43.25,51.98,-9,-9,8.333333333333334,1,1,0,0,13,10,3,1,327,192385.48,28313.547,162488.91,0,0,0,1974.9166 +5041,6151,10964,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,4.0955853,3.7646072,0,0,-1023.3704,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6420116,3.7043726,45.58,42.43,-9,-9,6.666666666666667,1,1,0,0,3,10,2,1,372,201864.34,146005.06,120715.67,0,0,0,978.10242 +5042,6152,10965,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.8696594,7.9265833,0,0,0,-938.98102,0,2,2,2021,6,0,33,33,1,0,0,11.015199,11.015199,0,0,0,0,0,0,0,0,1,0,1,0,0,55.57,48.59,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,529.33331,19198.578,68914.805,62483.586,15046.556,0,0,2519.7344 +5042,6152,10966,-9,10965,-9,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-998.99426,0,2,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,58.63,54,-9,-9,10,1,1,0,0,1,13,3,1,529.33331,19198.578,68914.805,62483.586,15046.556,0,0,2519.7344 +5042,6152,10967,-9,10965,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1208.801,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.82147044,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,529.33331,19198.578,68914.805,62483.586,15046.556,0,0,2519.7344 +5042,6153,10968,-9,10965,-9,1,1,20,0,1,0,2,2,-9,0,5,6.4005857,6.2740846,0,0,0,-966.55371,0,2,-9,2021,6,0,29,12,1,0,1,2.3644331,2.3644331,0,0,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,13,2,1,470,-9716.873,4396.5303,0,0,0,0,110.12358 +5043,6154,10969,10970,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.463356,6.2558441,8,1,5.2550321,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.1346221,6.4286809,53.13,25.94,47.94,48.26,6.666666666666667,1,1,0,0,3,13,2,1,274,344749.75,182284.44,156071.06,0,0,0,1623.1709 +5043,6154,10970,10969,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.4691687,5.674221,8,-1,21.597868,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.7065468,47.94,48.26,53.13,25.94,8.333333333333334,1,1,0,0,5,13,2,1,274,344749.75,182284.44,156071.06,0,0,0,1623.1709 +5044,6155,10971,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1012.8472,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,3,4,1,0,0,8,1,0,968,-49757.559,0,0,0,0,0,737.1662 +5045,6156,10972,10973,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2647281,6.83356,10,-4,-55.102779,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.301414,7.1753211,54.2,57.49,40.94,58.35,8.333333333333334,1,1,0,0,7,4,2,1,552,549592.19,430463.84,148349.58,0,425.57037,0,1669.5947 +5045,6156,10973,10972,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,10,4,-9.3990192,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.94,58.35,54.2,57.49,5,1,1,0,0,0,4,2,1,552,549592.19,430463.84,148349.58,0,425.57037,0,1669.5947 +5046,6157,10974,10975,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.1076498,8.41716,12,2,-51.578571,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4936676,8.1550951,55.87,53.99,46.44,59.62,8.333333333333334,1,1,0,0,1,9,3,1,1235,1415270,687383,498894.63,0,0,0,3378.2148 +5046,6157,10975,10974,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,0,0,12,-2,37.010422,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,55.87,53.99,8.333333333333334,1,1,0,0,3,9,3,1,1235,1415270,687383,498894.63,0,0,0,3378.2148 +5047,6158,10976,10977,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.7610779,8.7448282,0,1,-1,-9.3519812,-9,-9,-9,2021,9,0,46,0,1,0,0,14.198208,14.198208,0,0,0,0,0,0,0,0,0,0,0,5.5846763,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,1,5,5,0,568,-17290.955,-46470.875,152199.25,87054.289,2067.2937,0,5077.5068 +5047,6158,10977,10976,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.9077625,8.8783064,0,1,1,4.0277495,0,-9,-9,2021,7,0,48,45,1,0,0,16.273735,16.273735,.05,.05,0,0,0,0,0,0,0,0,0,5.1518054,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,2,5,5,0,568,-17290.955,-46470.875,152199.25,87054.289,2067.2937,0,5077.5068 +5048,6159,10978,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,0,0,-963.26477,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.18,19.54,-9,-9,5,1,1,0,1,0,12,1,0,589,-6926.9829,0,0,0,0,0,660.64392 +5049,6160,10979,10980,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,2,11,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.935585,9.5442228,61.751198,0,1,1,0,0,0,62.81,42.67,52,46,8.333333333333334,1,1,0,0,0,10,1,0,313.5,365316.56,34632.5,229870.59,0,0,0,2149.1282 +5049,6160,10980,10979,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,2,-11,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52,46,62.81,42.67,8.333333333333334,1,1,0,0,0,10,1,0,313.5,365316.56,34632.5,229870.59,0,0,0,2149.1282 +5050,6161,10981,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,7.8506756,7.9547458,0,0,0,-1003.8824,0,1,2,2021,9,0,50,40,1,0,0,6.1734104,6.1734104,.05,.05,0,0,0,0,0,0,0,0,0,9.4554176,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,404,-61690.621,17298.008,0,0,5946.3208,0,3900.7932 +5051,6162,10982,-9,10983,10984,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.3169,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5051,6162,10983,10984,-9,-9,1,0,25,1,2,0,2,2,-9,0,3,0,0,0,3,-1,18.61866,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.28,42.87,51.73,58.82,0,4,3,0,0,0,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5051,6162,10984,10983,-9,-9,1,1,26,1,2,0,2,2,-9,0,5,7.4534488,7.0594258,0,3,1,101.00386,0,-9,-9,2021,6,0,30,35,1,0,0,6.8999343,6.8999343,0,0,0,0,0,0,0,0,1,1,0,.1625488,0,51.73,58.82,47.28,42.87,10,2,3,0,0,7,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5051,6162,10985,-9,10983,10984,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-889.65631,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,0,557,-41314.898,0,0,0,0,0,1914.511 +5052,6163,10986,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.6076555,5.8858519,0,0,-948.01538,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8413844,5.7367897,63.42,34.17,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,347,946672.5,496640.84,141459.61,0,0,0,1333.745 +5053,6164,10987,10988,-9,-9,1,1,47,0,1,0,2,2,-9,0,1,7.8747005,8.1208534,0,19,2,22.8985,-9,2,2,2021,13,1,42,0,1,1,0,8.8449259,8.8449259,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.38,44.41,27,37.88,5,1,1,0,1,8,10,3,0,1050.6666,88766.883,172218.06,109804.91,81600.5,0,3493.6992,2222.7771 +5053,6164,10988,10987,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,19,-2,-111.85275,-9,2,1,2021,20,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,27,37.88,54.38,44.41,5,1,1,0,1,1,10,3,0,1050.6666,88766.883,172218.06,109804.91,81600.5,0,3493.6992,2222.7771 +5053,6164,10989,-9,10988,10987,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.1667,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,1050.6666,88766.883,172218.06,109804.91,81600.5,0,3493.6992,2222.7771 +5053,6165,10990,-9,10988,10987,1,1,20,0,1,0,2,2,-9,0,2,5.4102631,5.4909115,0,0,0,-989.41888,-9,2,2,2021,31,11,7,0,1,11,1,2.9850061,2.9850061,0,0,0,0,0,0,0,0,1,0,1,3.1717856,0,39,45,-9,-9,0,1,1,0,1,2,10,2,0,647,8649.0117,0,0,0,0,0,195.17516 +5054,6166,10991,10992,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,50,-2,-14.516121,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9574876,0,51,46,54.2,57.49,7,1,1,0,0,0,9,4,1,676,882633.19,351735.34,401077.75,0,0,0,5674.9609 +5054,6166,10992,10991,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.7059269,8.3662796,50,2,125.71956,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4390574,8.5249043,54.2,57.49,51,46,8.333333333333334,1,1,0,0,7,9,4,1,676,882633.19,351735.34,401077.75,0,0,0,5674.9609 +5055,6167,10993,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.0823851,7.8412142,0,0,0,-908.51465,0,2,2,2021,8,0,10,40,1,0,0,30.214527,30.214527,0,0,0,0,0,0,0,27,1,1,0,0,0,54.94,53.18,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,335,459522.97,351714.38,-21829.826,0,0,0,1278.524 +5055,6168,10994,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-994.21326,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,27.05,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,791,379956.19,65209.387,195499.78,0,0,0,2017.6511 +5056,6169,10995,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,7.9417253,7.8364282,0,0,0,-957.07385,0,2,2,2021,9,0,40,37,1,0,0,11.645761,11.645761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,971,94395.75,-68614.992,0,0,0,0,1361.7601 +5057,6170,10996,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.0829687,5.0162301,0,0,-1191.3496,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2546577,5.0053015,62.84,46.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,739,175295.06,158396.55,120466.91,0,0,0,1498.1436 +5058,6171,10997,-9,-9,-9,1,0,55,0,1,0,3,3,-9,0,4,8.1370335,8.0159798,0,0,0,-913.78864,0,-9,-9,2021,11,0,32,32,1,0,0,9.0805416,9.0805416,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,52.77,55.33,-9,-9,5,1,1,0,0,8,4,3,1,1968,285705,56706.32,145505.16,0,2678.4307,0,1399.1646 +5058,6171,10998,-9,10997,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.75201,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,4,3,1,1968,285705,56706.32,145505.16,0,2678.4307,0,1399.1646 +5059,6172,10999,-9,11002,11000,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1130.9271,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5059,6172,11000,11002,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6346426,8.7203312,0,7,0,-102.05008,0,-9,3,2021,12,0,50,40,1,0,0,14.562554,14.562554,.05,.05,0,0,0,0,0,0,1,1,0,7.2479911,0,59.32,46.98,58.32,50.22,6.666666666666667,1,1,0,0,9,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5059,6172,11001,-9,11002,11000,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-990.27209,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5059,6172,11002,11000,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.5026379,7.551198,0,7,0,-56.537064,0,2,3,2021,11,0,24,12,1,0,0,8.0074139,8.0074139,0,0,0,0,0,0,0,0,1,1,0,.88120639,0,58.32,50.22,59.32,46.98,8.333333333333334,1,1,0,0,6,9,4,1,707,664729.13,352194.97,0,0,0,0,3576.969 +5060,6173,11003,11005,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.5593724,7.7275286,0,8,2,45.99033,0,-9,-9,2021,11,0,25,25,1,2,0,12.354795,12.354795,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,51.24,58.84,7,1,1,0,0,1,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5060,6173,11004,-9,11003,11005,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.16724,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5060,6173,11005,11003,-9,-9,1,1,32,0,2,0,3,3,-9,0,4,6.8871088,6.5707874,0,10,-2,-126.37656,0,2,2,2021,12,2,77,47,1,2,0,1.280333,1.280333,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48,56,6.666666666666667,1,1,0,0,9,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5060,6173,11006,-9,11003,11005,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.4695,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,826,238234.44,0,114837.98,86733.531,0,0,2071.1641 +5061,6174,11007,11008,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,7.8585138,8.1344194,3.8265052,18,0,75.12468,0,-9,-9,2021,20,9,30,-9,1,9,0,10.399508,10.399508,.05,.05,0,0,0,0,0,0,1,1,0,8.1628408,3.9688435,43.83,48.44,45,37,6.666666666666667,1,1,0,0,12,5,3,1,388.5,1216837.3,639746.13,357837.44,0,0,0,3868.3828 +5061,6174,11008,11007,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.0782304,7.2788854,20,0,-89.455627,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4205203,7.047636,45,37,43.83,48.44,10,1,1,0,0,6,5,3,1,388.5,1216837.3,639746.13,357837.44,0,0,0,3868.3828 +5062,6175,11009,11010,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.8738933,5.8483329,59,-7,-64.947998,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9629531,63.26,29.17,52.53,39.11,8.333333333333334,1,1,0,0,0,10,2,1,56.5,563789.38,143942.91,275020.31,0,0,0,1608.4553 +5062,6175,11010,11009,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,59,7,-45.427475,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.53,39.11,63.26,29.17,6.666666666666667,1,1,0,0,0,10,2,1,56.5,563789.38,143942.91,275020.31,0,0,0,1608.4553 +5063,6176,11011,11012,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.7718863,7.4994965,25,-2,-74.240631,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7614427,57.71,38.64,52.81,49.13,10,1,1,0,0,0,9,3,1,531,1017235.2,810573.63,211422.95,0,0,0,2594.1292 +5063,6176,11012,11011,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.7653828,6.9768677,25,2,-3.7804737,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,3.9851799,0,0,1,1,0,4.4370766,6.8837762,52.81,49.13,57.71,38.64,8.333333333333334,1,1,0,0,0,9,3,1,531,1017235.2,810573.63,211422.95,0,0,0,2594.1292 +5064,6177,11013,11016,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.321393,8.598484,0,11,-1,-194.3033,0,-9,-9,2021,17,5,15,15,1,5,0,45.227123,45.227123,.05,.05,0,0,0,0,0,0,1,1,0,6.9166312,0,48.77,60.16,54.1,59.11,8.333333333333334,1,1,0,0,10,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11014,-9,11013,11016,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.4464,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11015,-9,11013,11016,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.2635,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11016,11013,-9,-9,1,1,43,0,3,0,1,1,-9,0,5,9.0126324,9.01723,0,11,1,73.618935,0,2,2,2021,6,0,90,50,1,0,0,11.385901,11.385901,.05,.05,0,0,0,0,0,0,1,1,0,5.8348103,0,54.1,59.11,48.77,60.16,10,1,1,0,0,12,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5064,6177,11017,-9,11013,11016,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-910.03156,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,5,1,921.20001,318177.34,157326.48,215855.64,155805.05,16832.227,0,6681.2476 +5065,6178,11018,11019,-9,-9,1,0,28,1,2,0,1,1,-9,0,4,0,0,0,8,-5,-73.595657,0,2,2,2021,13,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.16,42.18,47.77,56.48,8.333333333333334,4,5,0,0,0,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5065,6178,11019,11018,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,8.8183002,8.7078953,0,8,5,-5.2377782,0,2,2,2021,11,1,40,42,1,1,0,19.048822,19.048822,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.77,56.48,58.16,42.18,6.666666666666667,4,5,0,0,9,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5065,6178,11020,-9,11018,11019,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1128.1281,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5065,6178,11021,-9,11018,11019,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-881.4314,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,5,4,1,708,704721.06,625634,232540.84,108056.7,9907.624,937.25635,2995.5129 +5066,6179,11022,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5276027,5.7333655,0,0,-1092.1791,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3826094,5.8329868,58.07,46.29,-9,-9,0,1,1,0,0,0,11,2,1,1786,287518.47,116399.26,127199.15,0,0,0,950.17743 +5067,6180,11023,-9,-9,-9,1,0,44,1,1,0,3,3,-9,0,5,7.0989809,7.3445735,3.5453897,0,0,-941.31537,0,2,3,2021,10,0,40,40,1,0,0,4.3842969,4.3842969,0,0,0,0,0,0,0,0,1,1,0,3.4471064,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,8,1,2,1,802.5,107341.78,118830.58,155913.2,0,0,0,753.42249 +5067,6180,11024,-9,11023,-9,1,1,17,1,1,1,2,0,0,0,3,0,0,0,0,0,-913.86511,-9,3,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,802.5,107341.78,118830.58,155913.2,0,0,0,753.42249 +5067,6181,11025,-9,11023,-9,1,1,23,1,1,0,3,3,-9,0,4,7.581037,7.7185311,0,0,0,-1097.3936,0,3,-9,2021,10,0,40,0,1,1,1,6.8802075,6.8802075,.05,.05,0,0,0,0,0,0,1,1,0,2.5456357,0,49,58,-9,-9,7,1,1,0,0,1,1,3,1,224,23837.316,11335.213,0,0,0,0,1059.3297 +5068,6182,11026,-9,-9,-9,1,0,43,0,2,0,2,2,-9,1,5,6.7629023,6.6402378,0,0,0,-1021.5137,0,3,3,2021,6,0,16,0,1,0,0,6.5067334,6.5067334,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,2,3,0,0,6,11,2,0,386,-108350.68,0,0,0,0,0,2814.97 +5069,6183,11027,11028,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,8.9163723,8.6362362,0,25,5,40.970249,0,2,2,2021,7,0,40,0,1,0,0,16.1952,16.1952,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.81,54.17,59.07,43.05,8.333333333333334,1,1,0,1,8,9,4,1,234.5,1026463.3,410372.88,452618.94,0,2048.8284,0,3067.5835 +5069,6183,11028,11027,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,0,0,0,23,-5,-37.194012,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,46.81,54.17,8.333333333333334,1,1,0,0,7,9,4,1,234.5,1026463.3,410372.88,452618.94,0,2048.8284,0,3067.5835 +5069,6184,11029,-9,11028,11027,1,1,19,0,1,0,2,2,0,0,4,0,0,0,0,0,-938.2392,-9,2,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,618,33248.566,0,0,0,0,0,-79.34549 +5070,6185,11030,11031,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2975578,8.1916094,0,11,3,106.64581,0,-9,-9,2021,9,0,44,44,1,0,0,8.3876371,8.3876371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,34.79,47.81,8.333333333333334,1,1,0,0,13,12,3,1,2396,78250.688,39293.023,0,0,-858.36676,0,2286.657 +5070,6185,11031,11030,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,6.8184285,6.4232345,0,11,-3,46.293495,0,-9,-9,2021,11,0,12,12,1,0,0,7.8580985,7.8580985,.05,.05,0,0,0,0,0,42,1,1,0,0,0,34.79,47.81,56.35,51.16,6.666666666666667,1,1,0,0,5,12,3,1,2396,78250.688,39293.023,0,0,-858.36676,0,2286.657 +5070,6185,11032,-9,11031,11030,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.32397,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,2396,78250.688,39293.023,0,0,-858.36676,0,2286.657 +5071,6186,11033,11034,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,7.5124969,7.8315835,0,12,1,-43.778683,0,2,3,2021,11,0,52,60,1,0,0,4.3540874,4.3540874,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,40.07,54.57,3.333333333333333,4,2,0,0,9,8,5,1,465,881507.69,759851.38,0,0,3786.8823,20400.324,2605.5889 +5071,6186,11034,11033,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6084385,8.6506033,0,12,-1,118.17322,0,2,3,2021,14,2,52,60,1,2,0,12.059099,12.059099,.05,.05,0,0,0,0,0,0,0,0,0,3.7940392,0,40.07,54.57,46.39,60.99,8.333333333333334,4,5,0,0,13,8,5,1,465,881507.69,759851.38,0,0,3786.8823,20400.324,2605.5889 +5072,6187,11035,11036,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,8.7297602,8.7928524,0,25,-6,39.474346,0,-9,-9,2021,10,0,45,45,1,0,0,17.340965,17.340965,0,0,0,0,0,0,0,0,0,0,0,3.6172929,0,47.28,59.36,55.96,49.93,6.666666666666667,1,1,0,0,11,8,5,1,1059.5,334136.09,92984.984,419182,154047.38,0,0,3760.1665 +5072,6187,11036,11035,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.64151,8.1906023,0,23,6,47.684742,0,2,2,2021,7,0,38,43,1,0,0,14.368833,14.368833,.05,.05,0,0,0,0,0,0,0,0,0,3.3669713,0,55.96,49.93,47.28,59.36,6.666666666666667,3,4,0,0,11,8,5,1,1059.5,334136.09,92984.984,419182,154047.38,0,0,3760.1665 +5072,6188,11037,-9,11035,11036,1,0,21,0,0,0,2,2,-9,0,4,7.7839694,8.0148144,0,0,0,-972.48438,0,1,2,2021,16,4,31,40,1,4,1,8.4447556,8.4447556,0,0,0,0,0,0,0,0,0,0,0,0,0,33.55,62.9,-9,-9,8.333333333333334,4,2,0,0,3,8,4,1,1171,-61122.637,0,0,0,0,0,743.66803 +5072,6189,11038,-9,11035,11036,1,0,21,0,0,0,2,2,-9,0,4,7.8192368,7.7142496,0,0,0,-895.2995,0,1,2,2021,5,0,25,25,1,0,1,10.578758,10.578758,.05,.05,0,0,0,0,0,0,0,0,0,1.9345645,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,4,8,3,1,824,273427.66,31265.85,0,0,0,0,600.44366 +5073,6190,11039,11041,-9,-9,1,1,33,0,1,0,1,1,-9,0,3,8.7750359,8.7005739,0,8,-14,105.96365,0,2,2,2021,8,1,44,46,1,1,0,11.54343,11.54343,.05,.05,.05,0,0,0,0,0,1,1,0,3.464175,0,51.41,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,2,4,0,863,-26846.299,68020.992,92727.383,103337.13,2394.5466,0,2645.4688 +5073,6190,11040,-9,11041,11039,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.92786,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,863,-26846.299,68020.992,92727.383,103337.13,2394.5466,0,2645.4688 +5073,6190,11041,11039,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.9092174,7.3145366,0,8,14,-60.747688,0,2,3,2021,7,0,22,20,1,0,0,7.024538,7.024538,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.41,56.15,8.333333333333334,1,1,0,0,11,2,4,0,863,-26846.299,68020.992,92727.383,103337.13,2394.5466,0,2645.4688 +5074,6191,11042,11043,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,7.673461,7.5063486,0,12,-1,33.82053,0,1,1,2021,6,0,26,40,1,0,0,7.5787311,7.5787311,.05,.05,0,0,0,0,0,0,1,1,0,8.0600796,0,51.83,57.2,35.8,59.5,8.333333333333334,1,1,0,0,6,9,5,1,794,250245.38,100554.53,263171.88,134591.41,2752.2197,0,5794.6021 +5074,6191,11043,11042,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,8.8399439,8.7365313,0,7,1,63.330246,0,2,2,2021,16,4,57,47,1,4,0,18.957005,18.957005,.05,.05,0,0,0,0,0,0,1,1,0,7.881361,0,35.8,59.5,51.83,57.2,6.666666666666667,1,1,0,0,8,9,5,1,794,250245.38,100554.53,263171.88,134591.41,2752.2197,0,5794.6021 +5074,6191,11044,-9,11042,11043,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.4044,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,794,250245.38,100554.53,263171.88,134591.41,2752.2197,0,5794.6021 +5075,6192,11045,11047,-9,-9,1,1,53,0,3,0,3,3,-9,0,4,8.0214109,7.7677059,0,7,8,-22.196867,-9,-9,-9,2021,9,0,80,0,1,1,0,3.4854417,3.4854417,.05,.05,0,0,0,0,0,0,1,1,0,7.1424203,0,53,54,59.43,58.05,8,1,1,0,0,1,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11046,-9,11047,11045,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-1091.1289,-9,1,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11047,11045,-9,-9,1,0,45,0,3,0,1,1,-9,0,5,6.5453806,6.5928984,0,12,-8,-112.69656,0,3,3,2021,4,0,15,15,1,0,0,5.8181467,5.8181467,0,0,0,0,0,0,0,0,1,1,0,6.5320225,0,59.43,58.05,53,54,8.333333333333334,1,1,0,1,9,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11048,-9,11047,11045,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.49475,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11049,-9,11047,11045,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.49994,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5075,6192,11050,-9,11047,11045,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.71991,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,1729,226797.5,74031.695,231146.41,49597.359,0,0,3657.5325 +5076,6193,11051,11052,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.8450589,8.1748848,0,31,-1,-27.413668,0,3,3,2021,9,0,30,30,1,0,0,11.142652,11.142652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,49.35,59.64,8.333333333333334,1,1,0,0,14,13,4,1,531.5,686302.5,141704.78,270140.31,0,0,0,2075.062 +5076,6193,11052,11051,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.6767206,7.6923847,31,1,-57.6367,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9199328,7.4771967,49.35,59.64,55.19,54.26,8.333333333333334,1,1,0,0,8,13,4,1,531.5,686302.5,141704.78,270140.31,0,0,0,2075.062 +5076,6194,11053,-9,11052,11051,1,0,24,0,0,1,1,0,0,0,5,0,0,0,0,0,-1073.5435,-9,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,575,0,0,0,0,0,0,535.54956 +5076,6195,11054,-9,11052,11051,1,0,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1054.3226,-9,2,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9410176,0,47.95,59.09,-9,-9,10,1,1,1,0,0,13,1,1,552,132259.48,0,0,0,0,0,476.98184 +5077,6196,11055,11056,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.6609812,8.6829615,0,7,1,-94.536591,0,2,3,2021,15,3,40,40,1,3,0,20.826551,20.826551,.05,.05,.05,0,0,0,0,2,1,1,0,3.611109,0,37.75,56.99,52,54.51,6.666666666666667,1,1,0,0,8,12,5,1,571.33331,425715.78,221339.58,250290.03,0,23257.082,0,3813.7483 +5077,6196,11056,11055,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.1358442,8.4739399,0,7,-1,3.7851212,0,2,2,2021,6,0,28,28,1,0,0,10.796262,10.796262,0,0,.05,0,0,0,0,2,1,1,0,0,0,52,54.51,37.75,56.99,8.333333333333334,1,1,0,0,8,12,5,1,571.33331,425715.78,221339.58,250290.03,0,23257.082,0,3813.7483 +5077,6196,11057,-9,11056,11055,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.2579,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,571.33331,425715.78,221339.58,250290.03,0,23257.082,0,3813.7483 +5078,6197,11058,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1103.3672,-9,3,3,2021,14,1,0,0,4,1,0,0,0,0,0,0,1,2.9031432,0,23.537859,0,1,1,0,0,0,30.09,21.59,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,48,-3578.6274,0,0,0,0,0,1618.7314 +5079,6198,11059,-9,11060,11062,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.49585,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5079,6198,11060,11062,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.7000532,8.2390728,0,15,-2,24.457727,0,2,2,2021,4,0,38,38,1,0,0,18.969406,18.969406,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,60.12,54.8,10,2,3,0,0,10,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5079,6198,11061,-9,11060,11062,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1023.5369,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5079,6198,11062,11060,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.0032969,8.3278475,0,14,2,-14.303146,0,2,2,2021,10,0,38,50,1,0,0,22.447695,22.447695,.05,.05,.05,0,0,0,0,0,1,1,0,2.7942848,0,60.12,54.8,59.43,58.05,8.333333333333334,2,3,0,0,10,11,5,1,578,332764.69,292069.19,242828.23,181858.86,0,0,4435.3574 +5080,6199,11063,-9,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.198699,8.6580458,7.804285,0,0,-947.15552,0,2,2,2021,16,4,37,38,1,4,0,11.455843,11.455843,.05,.05,0,0,0,0,0,0,1,1,0,7.7694359,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,582.66669,679203.31,434946.94,346069.66,89064.32,0,0,2958.8989 +5080,6199,11064,-9,11063,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.28766,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,582.66669,679203.31,434946.94,346069.66,89064.32,0,0,2958.8989 +5080,6199,11065,-9,11063,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1023.4481,-9,1,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1801729,0,31.52,63.65,-9,-9,5,1,1,0,0,0,10,4,1,582.66669,679203.31,434946.94,346069.66,89064.32,0,0,2958.8989 +5081,6200,11066,11067,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.6280603,6.5832958,29,-5,149.9912,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.785203,56.26,38.87,35.7,23.15,6.666666666666667,1,1,0,0,11,2,2,1,598.5,381965.91,264818.66,134429.77,0,3483.6243,0,2025.7832 +5081,6200,11067,11066,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,12,5,-66.955124,0,-9,-9,2021,14,3,0,10,4,3,0,0,0,0,0,0,1,0,10.777482,0,0,1,1,0,0,0,35.7,23.15,56.26,38.87,1.666666666666667,1,1,0,0,13,2,2,1,598.5,381965.91,264818.66,134429.77,0,3483.6243,0,2025.7832 +5082,6201,11068,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.611701,8.2682877,0,0,0,-1082.6285,-9,3,3,2021,8,0,60,0,1,0,0,7.1478744,7.1478744,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,44.77,58.06,-9,-9,10,2,3,0,1,13,8,4,0,427,36881.629,-76003.281,0,0,0,0,1874.8495 +5083,6202,11069,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,9.3286867,8.7741976,0,0,0,-975.25507,0,3,3,2021,20,8,46,40,1,8,0,19.521416,19.521416,.05,.05,0,0,0,0,0,0,0,0,0,4.8276558,0,27.36,54.89,-9,-9,5,2,3,0,0,8,8,5,1,336,650224.75,34309.195,224826.03,51259.867,0,0,2821.2622 +5084,6203,11070,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.4054117,8.3673773,0,0,0,-1023.0896,-9,1,-9,2021,10,1,35,0,1,1,0,12.007,12.007,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,1152,-157645.38,0,0,0,5490.1636,0,1543.5419 +5085,6204,11071,11073,-9,-9,1,1,61,0,1,0,1,1,-9,0,4,7.3056908,7.1378675,0,34,6,-7.2231107,0,3,3,2021,11,1,1,1,1,1,0,161.75949,161.75949,0,0,0,0,0,0,0,0,1,1,0,0,0,51.53,51.8,29.24,57.03,1.666666666666667,1,1,0,0,8,10,3,1,1257.6666,2498142.8,1690916.5,465724.88,57787.332,0,0,2143.498 +5085,6204,11072,-9,11073,11071,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-893.72021,-9,1,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,60.49,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,1257.6666,2498142.8,1690916.5,465724.88,57787.332,0,0,2143.498 +5085,6204,11073,11071,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.1902809,8.3595915,0,36,-6,12.653695,0,2,1,2021,17,4,51,56,1,4,0,6.9556336,6.9556336,0,0,0,0,0,0,0,0,1,1,0,0,0,29.24,57.03,51.53,51.8,1.666666666666667,1,1,0,0,7,10,3,1,1257.6666,2498142.8,1690916.5,465724.88,57787.332,0,0,2143.498 +5086,6205,11074,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,5.7821422,5.8121562,0,0,-996.73242,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,5.5589037,0,0,1,1,0,.78601617,6.0622458,57,43,-9,-9,8,1,1,0,0,0,11,2,1,223,663645.13,33740.508,252780.5,0,0,0,839.53125 +5087,6206,11075,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,5.1805911,4.8923554,0,0,-1140.074,0,2,2,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,4.9720697,24.61,36.34,-9,-9,3.333333333333333,1,1,0,0,8,9,2,0,1974,590941.38,0,225276.14,0,0,0,388.09048 +5088,6207,11076,-9,-9,-9,1,0,39,0,0,0,3,3,-9,0,2,7.2963862,7.3393083,0,0,0,-1030.6342,0,3,2,2021,7,0,35,22,1,0,0,4.7496347,4.7496347,0,0,0,0,0,0,0,2,1,1,0,0,0,65.68000000000001,28.56,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,1144,-215038.16,93635.43,0,0,0,0,923.41632 +5089,6208,11077,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,7.6661997,8.1648102,0,0,0,-966.0119,-9,-9,-9,2021,8,2,38,0,1,2,0,5.086544,5.086544,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,1,3,6,3,1,256,-67633.102,0,0,0,0,0,1419.6659 +5089,6209,11078,11079,-9,-9,1,1,32,0,0,0,1,1,1,0,3,8.2148685,8.0906277,0,7,3,-147.46492,-9,-9,-9,2021,14,3,72,0,1,3,0,6.3292756,6.3292756,.05,.05,0,0,0,0,0,0,0,0,0,7.0818691,0,38.6,56.72,49.04,55.86,6.666666666666667,1,1,0,0,6,6,5,1,645,269504.97,84938.32,116943.33,79249,0,2180.9297,4325.2207 +5089,6209,11079,11078,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.646369,8.6211786,0,7,-3,-38.185459,0,1,2,2021,9,0,63,53,1,0,0,11.956603,11.956603,0,0,0,0,0,0,0,0,0,0,0,3.1937542,0,49.04,55.86,38.6,56.72,6.666666666666667,1,1,0,0,8,6,5,1,645,269504.97,84938.32,116943.33,79249,0,2180.9297,4325.2207 +5090,6210,11080,-9,11081,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1007.0315,-9,1,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,8.333333333333334,4,2,0,0,0,6,5,1,934.5,599629.63,411702.72,129143.54,90275.789,0,0,3085.6418 +5090,6210,11081,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.7701778,9.1135778,0,0,0,-1001.3521,0,2,2,2021,12,0,44,60,1,0,0,17.880472,17.880472,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.82,33.71,-9,-9,6.666666666666667,3,4,0,0,9,6,5,1,934.5,599629.63,411702.72,129143.54,90275.789,0,0,3085.6418 +5090,6211,11082,-9,11081,-9,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-969.44971,-9,1,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5024891,0,31.93,58.41,-9,-9,3.333333333333333,4,2,0,0,0,6,1,1,564,99542.711,0,0,0,0,0,1236.863 +5091,6212,11083,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.0551147,6.6361656,0,0,0,-1031.3079,0,2,2,2021,10,2,15,0,1,2,0,10.053576,10.053576,.05,.05,0,0,0,0,0,0,0,0,0,7.3932261,0,49.45,46.54,-9,-9,6.666666666666667,1,1,0,0,12,9,2,1,187,-82637.438,-21906.041,0,0,0,581.03583,1506.7311 +5092,6213,11084,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.9996495,8.1448841,0,0,0,-1051.856,0,-9,-9,2021,6,0,34,35,1,0,0,12.942005,12.942005,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,10,12,4,0,500,121814.37,-80477.578,0,0,598.42633,0,1597.944 +5093,6214,11085,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.576046,8.4735756,4.3259449,0,0,-899.32385,-9,-9,-9,2021,0,0,28,0,1,0,0,22.498264,22.498264,0,0,0,0,0,0,0,0,1,1,0,4.886857,4.6034389,54.2,57.49,-9,-9,10,1,1,0,0,9,5,5,1,218,476229.09,228554.75,0,0,0,0,1803.947 +5094,6215,11086,11087,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,11,-16,-192.88206,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50.69,45.31,10,1,1,0,0,3,10,2,1,412,476269.44,143776.78,160760.89,0,0,0,2564.5051 +5094,6215,11087,11086,-9,-9,1,1,87,0,0,0,3,3,-9,0,4,0,7.2534657,7.4193425,11,16,36.161968,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5455861,6.8619361,50.69,45.31,51.83,57.2,10,1,1,0,0,0,10,2,1,412,476269.44,143776.78,160760.89,0,0,0,2564.5051 +5095,6216,11088,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.0164447,6.6605949,0,0,-870.23547,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0977833,6.8625927,58.87,37.89,-9,-9,1.666666666666667,1,1,0,0,11,5,2,1,741,676130.81,193951.83,130616.02,0,0,0,.64211458 +5096,6217,11089,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,6.3315268,6.4465957,0,0,-1110.3533,0,3,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4098446,6.3626571,51.85,36.92,-9,-9,8.333333333333334,2,3,0,0,0,11,2,1,688,5232472,3817174.5,1390316.4,0,0,0,1146.635 +5097,6218,11090,-9,11092,11091,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.4879,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,954.66669,39298.273,-58821.203,162871.33,64698.742,14010.675,-48.533752,3056.9629 +5097,6218,11091,11092,-9,-9,1,1,28,1,1,0,1,1,-9,0,1,8.5006762,8.3306093,0,3,2,-90.6035,-9,-9,-9,2021,36,12,20,0,1,12,0,21.779587,21.779587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.72,37.22,44.28,45.81,1.666666666666667,1,1,0,0,15,11,4,1,954.66669,39298.273,-58821.203,162871.33,64698.742,14010.675,-48.533752,3056.9629 +5097,6218,11092,11091,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.2454085,7.3332438,0,3,-2,-140.05652,0,-9,-9,2021,14,3,26,0,1,3,0,9.0393991,9.0393991,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.28,45.81,45.72,37.22,8.333333333333334,1,1,0,0,7,11,4,1,954.66669,39298.273,-58821.203,162871.33,64698.742,14010.675,-48.533752,3056.9629 +5098,6219,11093,11094,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.7133865,7.0784755,4,-6,50.349056,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6236725,6.8900609,55.59,43.19,54.13,48.04,8.333333333333334,1,1,0,0,0,2,3,1,815.5,714315.63,170576.91,250036.27,0,0,0,5162.5918 +5098,6219,11094,11093,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,7.5876908,7.4299417,4,6,10.491212,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6997995,7.7230959,54.13,48.04,55.59,43.19,8.333333333333334,1,1,0,0,0,2,3,1,815.5,714315.63,170576.91,250036.27,0,0,0,5162.5918 +5099,6220,11095,11097,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,8.7599192,8.7697849,5.0240936,28,-1,-82.548851,0,2,2,2021,14,3,50,55,1,3,0,13.002349,13.002349,.05,.05,0,0,0,0,0,0,1,1,0,8.0599174,0,40.61,64.02,23.05,65.12,1.666666666666667,1,1,0,0,9,12,4,0,909.66669,920525.38,537966.63,226190.84,0,0,0,3210.6111 +5099,6220,11096,-9,11097,11095,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1060.1105,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,0,909.66669,920525.38,537966.63,226190.84,0,0,0,3210.6111 +5099,6220,11097,11095,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,5.2516222,5.0863428,0,28,1,-120.67148,-9,1,1,2021,19,6,25,0,1,6,0,.97424996,.97424996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.05,65.12,40.61,64.02,5,1,1,0,0,7,12,4,0,909.66669,920525.38,537966.63,226190.84,0,0,0,3210.6111 +5099,6221,11098,-9,11097,11095,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1003.6617,0,1,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,1,0,0,12,2,0,389,3674.9263,0,0,0,0,0,0 +5100,6222,11099,-9,11101,11100,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.8465,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1357,289815.88,44052.598,665237.69,459425,0,0,4031.9893 +5100,6222,11100,11101,-9,-9,1,1,32,0,1,0,1,1,-9,0,5,9.6129246,9.8278275,0,12,-1,-21.780954,0,1,1,2021,12,1,50,53,1,1,0,42.224213,42.224213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,51.83,57.2,6.666666666666667,2,3,0,0,7,8,5,1,1357,289815.88,44052.598,665237.69,459425,0,0,4031.9893 +5100,6222,11101,11100,-9,-9,1,0,33,0,1,0,1,1,-9,0,4,0,0,0,12,1,23.453297,0,1,1,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.73,58.82,8.333333333333334,2,3,1,0,0,8,5,1,1357,289815.88,44052.598,665237.69,459425,0,0,4031.9893 +5101,6223,11102,-9,-9,-9,1,0,60,1,0,0,2,2,-9,1,2,0,7.1238747,7.1406221,0,0,-990.22589,0,2,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.6735868,7.0158644,26.38,39.59,-9,-9,1.666666666666667,1,1,0,0,0,6,3,0,186,82737.266,44891.313,0,0,0,0,2022.8516 +5101,6223,11103,-9,11102,-9,1,0,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-984.01923,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,6,-9,0,0,6,3,0,186,82737.266,44891.313,0,0,0,0,2022.8516 +5102,6224,11104,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.7465687,8.8615055,0,0,0,-984.50134,0,2,2,2021,5,0,35,35,1,0,0,26.79446,26.79446,.05,.05,0,0,0,0,0,0,0,0,0,2.7493577,0,58.05,54.52,-9,-9,10,1,1,0,0,7,8,5,1,106,11357.121,112460.1,85626.625,83923.352,812.00659,0,2875.9807 +5102,6225,11105,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.0110903,8.2104683,0,0,0,-946.32446,0,2,2,2021,11,0,35,35,1,0,0,10.634914,10.634914,.05,.05,0,0,0,0,0,0,0,0,0,3.1831977,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,8,8,3,1,883,-48645.684,-11238.458,0,0,23999.162,0,927.31555 +5103,6226,11106,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.9710069,7.9044585,0,0,-894.52765,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.274189,7.9700642,53.01,34.07,-9,-9,10,1,1,0,0,0,12,4,1,369,766262.75,709317.19,182200.19,0,0,0,1475.4939 +5104,6227,11107,11108,-9,-9,1,0,76,0,0,0,1,1,-9,0,1,0,5.9274831,6.1527658,11,-7,99.4058,0,1,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.2982893,5.8444161,40.32,18.64,55,45,6.666666666666667,1,1,0,0,11,8,3,1,412,1659286.6,292756.5,1338868.5,0,0,0,3549.5547 +5104,6227,11108,11107,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.8909926,8.0709686,8,7,215.52277,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4254675,55,45,40.32,18.64,8,1,1,0,0,0,8,3,1,412,1659286.6,292756.5,1338868.5,0,0,0,3549.5547 +5105,6228,11109,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.4700823,8.2751522,0,0,0,-978.94543,0,-9,-9,2021,7,0,48,48,1,0,0,9.7171783,9.7171783,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,12,5,4,1,308,-83448.117,25384.965,0,0,0,0,2018.4244 +5106,6229,11110,-9,11111,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1052.1919,-9,1,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,5,1,946,308965.88,156668.67,191038.19,93047.563,5771.7349,0,1806.0193 +5106,6229,11111,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.6676779,9.3642445,0,0,0,-952.87939,0,3,3,2021,13,2,40,44,1,2,0,16.187807,16.187807,.05,.05,0,0,0,0,0,0,1,1,0,2.9322052,0,41.79,57.73,-9,-9,5,1,1,0,0,10,13,5,1,946,308965.88,156668.67,191038.19,93047.563,5771.7349,0,1806.0193 +5107,6230,11112,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,4.5190921,4.541944,0,0,0,-980.97479,-9,3,2,2021,5,1,65,0,1,1,0,.15303525,.15303525,0,0,0,0,0,0,0,0,0,0,0,0,0,49.55,34.34,-9,-9,6.666666666666667,4,2,0,0,3,6,2,0,199,327293.91,132988.11,0,0,0,0,-186.66359 +5108,6231,11113,-9,11117,11115,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1103.609,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11114,-9,11117,11115,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-958.65637,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11115,11117,-9,-9,1,1,44,1,4,0,3,3,-9,0,4,7.9595399,7.6566415,0,7,6,6.5486465,0,-9,-9,2021,9,0,24,18,1,1,0,14.740211,14.740211,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,8,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11116,-9,11117,11115,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-981.48248,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11117,11115,-9,-9,1,0,38,1,4,0,2,2,-9,0,4,0,0,0,25,-6,-3.1089852,0,3,3,2021,11,0,0,11,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,10,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6231,11118,-9,11117,11115,1,1,16,1,4,1,2,0,-9,0,4,0,0,0,0,0,-981.58081,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,564,219770.66,0,376642.25,89196.375,0,0,1902.7991 +5108,6232,11119,-9,11117,11115,1,1,19,1,4,1,1,0,-9,0,4,0,0,0,0,0,-959.39282,-9,2,3,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,223,-229252.7,0,0,0,0,0,-191.08504 +5109,6233,11120,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,5.1542506,5.3715477,0,0,-1081.8285,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3320503,5.2587519,54.17,39.63,-9,-9,10,1,1,0,0,0,10,2,1,949,151061.48,-111377.92,151241.73,0,0,0,20.987869 +5110,6234,11121,11125,-9,-9,1,1,41,0,3,0,1,1,-9,0,2,8.6813345,8.5477142,0,12,1,12.696169,0,2,2,2021,17,5,25,25,1,5,0,20.317759,20.317759,.05,.05,0,0,0,0,0,0,1,1,0,4.9438462,0,22.07,59.56,50.82,23.29,3.333333333333333,1,1,0,0,14,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11122,-9,11125,11121,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.28943,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11123,-9,11125,11121,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.33502,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11124,-9,11125,11121,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-894.62958,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5110,6234,11125,11121,-9,-9,1,0,40,0,3,0,1,1,-9,0,2,8.0783625,8.1958628,0,12,-1,-61.052357,0,1,1,2021,10,2,18,24,1,2,0,14.851018,14.851018,.05,.05,0,0,0,0,0,0,1,1,0,4.458447,0,50.82,23.29,22.07,59.56,3.333333333333333,1,1,0,0,14,9,4,1,989.79999,56256.223,111585.16,0,0,0,0,3851.6692 +5111,6235,11126,11127,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,0,0,8,6,51.329952,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3850074,0,60.02,56.42,55.51,35.51,0,1,1,0,0,0,5,2,1,504.5,433134.06,264700.63,218743.42,0,0,-487.25357,1335.5132 +5111,6235,11127,11126,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.7449613,6.5476093,8,-6,-23.226376,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8824077,6.1593685,55.51,35.51,60.02,56.42,10,1,1,0,0,0,5,2,1,504.5,433134.06,264700.63,218743.42,0,0,-487.25357,1335.5132 +5112,6236,11128,11129,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,7.4075146,7.2094512,47,-1,61.217724,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,143.49983,0,0,1,1,0,0,6.9504461,59.15,4.64,53.61,59.13,10,1,1,0,0,0,1,2,1,1541,721579,260686.52,468979.47,0,0,0,2118.4048 +5112,6236,11129,11128,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,47,1,83.691177,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,53.61,59.13,59.15,4.64,5,1,1,0,0,0,1,2,1,1541,721579,260686.52,468979.47,0,0,0,2118.4048 +5112,6237,11130,11131,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.2845707,8.285634,6.139039,3,0,95.067398,0,-9,-9,2021,9,0,40,40,1,0,0,9.9749784,9.9749784,.05,.05,.05,0,0,0,0,0,1,1,0,6.4839191,0,49.86,55.31,51.02,44.19,8.333333333333334,1,1,0,0,10,1,4,1,1729.5,927061.38,616169.75,203777.28,18961.83,0,0,3427.3679 +5112,6237,11131,11130,11129,11128,1,0,45,0,0,0,2,2,-9,0,3,7.43613,7.4570131,0,3,0,-7.8631191,0,3,2,2021,7,0,32,24,1,0,0,6.3925619,6.3925619,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,51.02,44.19,49.86,55.31,8.333333333333334,1,1,0,0,10,1,4,1,1729.5,927061.38,616169.75,203777.28,18961.83,0,0,3427.3679 +5113,6238,11132,11133,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.9828,7.9173522,6.376215,51,0,-66.582344,0,3,3,2021,11,0,45,40,1,0,0,6.6744246,6.6744246,.05,.05,0,0,0,0,0,81,1,1,0,4.5608263,6.1862979,50.86,47.22,34.65,37.08,6.666666666666667,1,1,0,0,8,9,3,0,601.5,853730,567778.94,264169.66,0,5769.3613,0,2918.1631 +5113,6238,11133,11132,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.5147491,5.3969512,51,0,-38.678989,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,31.092022,0,0,1,1,0,0,5.5923772,34.65,37.08,50.86,47.22,5,1,1,0,0,6,9,3,0,601.5,853730,567778.94,264169.66,0,5769.3613,0,2918.1631 +5114,6239,11134,-9,11136,11135,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.598,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5114,6239,11135,11136,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,8.5594435,8.2710361,0,9,-8,-9.3156691,0,-9,-9,2021,12,1,50,50,1,1,0,9.3387356,9.3387356,.05,.05,0,0,0,0,0,2,1,0,1,0,0,40.94,58.35,55.35,36.43,3.333333333333333,1,1,0,0,14,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5114,6239,11136,11135,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.3396068,7.5980177,0,9,8,-122.7291,0,2,3,2021,10,2,17,20,1,2,0,12.312772,12.312772,0,0,0,0,0,0,0,109,1,0,1,0,0,55.35,36.43,40.94,58.35,6.666666666666667,1,1,0,0,14,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5114,6239,11137,-9,11136,11135,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.7925,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1564.75,15876.521,-204.48999,0,0,3907.446,3105.9641,3803.6831 +5115,6240,11138,11140,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.7616386,8.8843422,0,5,0,144.80571,0,-9,-9,2021,12,1,30,30,1,1,0,21.570856,21.570856,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,34.94,53.21,8.333333333333334,3,4,0,0,7,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5115,6240,11139,-9,11138,11140,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.6198,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5115,6240,11140,11138,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.2784348,8.9877653,0,5,0,-92.418594,0,2,2,2021,12,1,45,52,1,1,0,33.405319,33.405319,.05,.05,0,0,0,0,0,2,1,1,0,5.6808014,0,34.94,53.21,46.16,58.62,8.333333333333334,2,3,0,0,7,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5115,6240,11141,-9,11138,11140,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.8218,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,5,1,1003.25,799514.31,542895.63,290094.97,118195.09,0,0,6605.9717 +5116,6241,11142,11143,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.9202137,8.5764275,7,-1,101.71966,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0769265,8.6995277,59.15,49.67,55.19,51.55,8.333333333333334,1,1,0,0,7,12,4,1,512.5,402661.88,213675.84,126149.51,0,2989.0386,0,4630.042 +5116,6241,11143,11142,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.6215668,6.8543777,0,43,1,98.663994,0,2,2,2021,8,0,14,14,1,0,0,7.8531222,7.8531222,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,51.55,59.15,49.67,8.333333333333334,1,1,0,0,9,12,4,1,512.5,402661.88,213675.84,126149.51,0,2989.0386,0,4630.042 +5117,6242,11144,11145,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,7.9181089,7.9245353,0,4,1,71.105125,0,1,1,2021,12,2,45,45,1,2,0,6.1791401,6.1791401,.05,.05,0,0,0,0,0,0,0,0,0,4.5853868,0,51.41,56.15,54.43,49.12,6.666666666666667,2,3,0,0,9,8,4,1,1177.5,426878.5,203409.22,535693,203683.78,0,0,2331.6155 +5117,6242,11145,11144,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.776247,8.1141357,0,4,-1,58.199059,0,-9,-9,2021,12,0,40,40,1,0,0,8.5514488,8.5514488,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.43,49.12,51.41,56.15,5,2,3,0,0,2,8,4,1,1177.5,426878.5,203409.22,535693,203683.78,0,0,2331.6155 +5118,6243,11146,11147,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,59,-5,0,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,38.08,55,45,8.333333333333334,1,1,0,0,0,9,1,1,3217.5,192606.19,-15160.791,236833.55,0,0,0,8.4635391 +5118,6243,11147,11146,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,7,5,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76158148,0,55,45,58.89,38.08,8,1,1,0,0,0,9,1,1,3217.5,192606.19,-15160.791,236833.55,0,0,0,8.4635391 +5119,6244,11148,11149,-9,-9,1,1,54,0,1,0,2,2,-9,0,1,8.1154327,8.3769026,0,9,2,16.313564,-9,-9,-9,2021,19,7,55,0,1,7,0,8.8480997,8.8480997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.62,24.97,40.83,59.68,3.333333333333333,1,1,0,0,12,1,5,1,1015,464307.94,132941.58,302132.5,166206.11,0,0,4095.4421 +5119,6244,11149,11148,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.4950523,9.3434734,0,9,-2,9.8645067,0,2,2,2021,12,2,45,50,1,2,0,27.806562,27.806562,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,59.68,46.62,24.97,6.666666666666667,1,1,0,0,10,1,5,1,1015,464307.94,132941.58,302132.5,166206.11,0,0,4095.4421 +5119,6245,11150,-9,11149,11148,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1159.9119,-9,1,2,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8694134,0,51.05,54.79,-9,-9,10,1,1,0,0,0,1,1,1,212,0,0,0,0,0,0,-569.30505 +5120,6246,11151,11152,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,40,-6,0,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.78,25.84,31.74,27.73,0,2,3,0,1,0,4,1,0,426,55590.922,-13941.491,47378.914,46131.508,-227.18221,0,1293.6824 +5120,6246,11152,11151,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,40,6,0,0,3,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.74,27.73,29.78,25.84,1.666666666666667,2,3,0,0,0,4,1,0,426,55590.922,-13941.491,47378.914,46131.508,-227.18221,0,1293.6824 +5120,6247,11153,-9,11151,11152,1,1,19,0,0,0,2,2,1,0,4,6.7659655,7.1823816,0,0,0,-1004.2253,-9,3,3,2021,16,4,15,0,1,4,1,9.0185823,9.0185823,0,0,0,0,0,0,0,0,1,1,0,0,0,37.15,52.96,-9,-9,6.666666666666667,2,3,0,1,0,4,2,0,1233,-46709.867,0,0,0,0,0,-94.340286 +5121,6248,11154,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.3416748,8.2347994,0,0,0,-915.83032,0,2,2,2021,6,0,39,37,1,0,0,10.234344,10.234344,.05,.05,0,0,0,0,0,14.5,1,1,0,.5751757,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,625,-94560.836,187181.61,158141.38,232.23839,0,678.25391,1245.3168 +5122,6249,11155,-9,11157,11156,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.73737,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,923.66669,478060.63,238155.88,327234.41,142353.05,0,0,4656.9316 +5122,6249,11156,11157,-9,-9,1,1,34,0,1,0,1,1,-9,0,5,9.0639973,8.9848156,0,9,0,-18.580185,0,1,1,2021,9,0,51,40,1,0,0,22.448631,22.448631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.61,48.14,8.333333333333334,1,1,0,0,9,7,5,1,923.66669,478060.63,238155.88,327234.41,142353.05,0,0,4656.9316 +5122,6249,11157,11156,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.6312866,8.4053831,0,9,0,-44.79414,0,-9,-9,2021,11,0,30,32,1,0,0,16.103582,16.103582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.61,48.14,54.1,59.11,8.333333333333334,1,1,0,0,7,7,5,1,923.66669,478060.63,238155.88,327234.41,142353.05,0,0,4656.9316 +5123,6250,11158,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.5352368,4.5184007,0,0,-955.93091,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5551207,4.6734171,46.31,58.29,-9,-9,5,1,1,0,0,3,6,2,1,711,97819.852,72922.688,178005.25,0,0,0,956.99963 +5124,6251,11159,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.4015493,6.5746775,0,0,-990.65942,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,8.5934582,6.3825607,59.3,44.14,-9,-9,10,1,1,0,0,0,10,2,1,509,389950.88,27964.1,138065.28,0,0,-226.75536,1683.8492 +5125,6252,11160,11161,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,52,-1,-81.172516,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.206027,0,52,46,54.2,57.49,7,1,1,0,0,4,10,3,1,1359,992093.63,246907.53,415193.81,0,0,0,2122.9688 +5125,6252,11161,11160,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.1611061,7.4305606,52,1,-137.1386,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.4061046,7.8412662,54.2,57.49,52,46,10,1,1,0,0,2,10,3,1,1359,992093.63,246907.53,415193.81,0,0,0,2122.9688 +5126,6253,11162,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.7343779,8.8382454,4.4486251,0,0,-1103.2417,0,1,1,2021,11,1,37,38,1,1,0,25.979029,25.979029,.05,.05,0,0,0,0,0,0,1,1,0,4.5084682,0,47.44,56.39,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,714,118325.58,84731.359,0,0,0,0,2899.645 +5127,6254,11163,-9,11164,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.90094,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1123.5,126039.28,0,0,0,345.93393,0,1226.3943 +5127,6254,11164,-9,11165,-9,1,0,33,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1064.2225,0,3,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.08,54.47,-9,-9,1.666666666666667,1,1,1,0,0,4,1,0,1123.5,126039.28,0,0,0,345.93393,0,1226.3943 +5127,6255,11165,-9,-9,-9,1,0,63,0,1,0,3,3,-9,0,1,7.295826,7.6019216,0,0,0,-1065.1484,0,3,3,2021,16,4,40,0,1,4,0,4.2914047,4.2914047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.4,25.3,-9,-9,8.333333333333334,1,1,0,0,9,4,3,0,1069,4403.7944,145351.84,0,0,0,0,783.65149 +5128,6256,11166,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.340127,8.2639322,0,0,0,-1105.894,0,2,3,2021,8,0,86,86,1,0,0,7.0629282,7.0629282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,-9,-9,8.333333333333334,3,4,0,0,11,9,4,0,380,43621.656,169031.94,0,0,0,1221.0558,2480.7517 +5129,6257,11167,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.8364654,5.8116646,0,0,-999.15192,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6220388,5.1981177,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,468,311212.81,19663.367,0,0,0,0,1467.0613 +5130,6258,11168,11170,-9,-9,1,1,55,0,2,0,1,1,-9,0,4,9.0914679,9.0781183,0,22,-1,99.181808,0,2,3,2021,9,0,40,40,1,0,0,22.727739,22.727739,.05,.05,0,0,0,0,0,0,1,1,0,6.861588,0,54.77,55.87,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5130,6258,11169,-9,11170,11168,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.91907,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5130,6258,11170,11168,-9,-9,1,0,56,0,2,0,3,3,-9,0,4,5.9606895,6.2115984,4.3374991,21,1,134.65334,0,3,3,2021,7,0,4,5,1,0,0,11.047025,11.047025,0,0,0,0,0,0,0,0,1,1,0,4.5832124,4.0412002,57.16,56.15,54.77,55.87,10,3,4,0,0,6,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5130,6258,11171,-9,11170,11168,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.9245,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,1,946,1661204,1110273.8,432864.56,0,0,0,4614.5649 +5131,6259,11172,11173,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.328979,7.3269792,10,8,28.339155,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,6.9293504,7.1893783,53.28,47.04,57.32,47.78,8.333333333333334,1,1,0,0,3,12,4,1,771.5,299163.09,113249.75,327979.13,0,21456.83,0,4288.7246 +5131,6259,11173,11172,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,4.4154582,8.6687326,8.7669449,10,-8,7.8376064,0,2,1,2021,6,0,9,20,1,0,0,1.0623263,1.0623263,0,0,.05,0,0,0,0,0,1,1,0,0,8.7142115,57.32,47.78,53.28,47.04,8.333333333333334,1,1,0,0,11,12,4,1,771.5,299163.09,113249.75,327979.13,0,21456.83,0,4288.7246 +5132,6260,11174,11175,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,0,0,6,6,-74.854706,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0007377,0,59.73,50.87,61.1,41.19,8.333333333333334,1,1,0,0,0,5,2,1,578.5,409261.44,181230.09,140685.81,0,0,0,1895.9272 +5132,6260,11175,11174,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.5599933,6.4376926,6,-6,-46.693634,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9615207,6.5462894,61.1,41.19,59.73,50.87,0,1,1,0,0,0,5,2,1,578.5,409261.44,181230.09,140685.81,0,0,0,1895.9272 +5133,6261,11176,11177,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,9.1747665,9.813632,0,12,-1,42.787884,0,1,2,2021,10,2,40,40,1,2,0,29.536514,29.536514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.8,49.1,25.42,42.75,6.666666666666667,4,2,0,0,14,7,5,0,2096,879415.31,136161.19,579904.63,255929.7,0,0,5450.752 +5133,6261,11177,11176,-9,-9,1,0,39,0,1,0,2,2,-9,0,1,7.7608085,7.9696436,0,12,1,-132.27567,0,1,2,2021,34,12,20,25,1,12,0,11.852875,11.852875,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.42,42.75,48.8,49.1,0,4,2,0,1,14,7,5,0,2096,879415.31,136161.19,579904.63,255929.7,0,0,5450.752 +5134,6262,11178,11179,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.8515239,7.3916521,49,3,4.971559,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8028488,7.0121155,67.61,20.62,68.73999999999999,28.12,8.333333333333334,1,1,0,0,0,13,3,1,2362.5,661917.25,343266.59,286093.56,0,0,0,2584.8247 +5134,6262,11179,11178,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.1544523,7.2062111,49,-3,56.146481,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0613751,68.73999999999999,28.12,67.61,20.62,10,1,1,0,0,0,13,3,1,2362.5,661917.25,343266.59,286093.56,0,0,0,2584.8247 +5135,6263,11180,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,6.0388565,5.4028835,0,0,-1120.865,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96332514,5.7301865,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,155,300794.31,184572.64,193140.52,0,0,0,670.89496 +5136,6264,11181,-9,-9,-9,1,0,21,0,0,1,2,0,-9,0,3,0,0,0,0,0,-973.10046,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4434257,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,5,2,0,94,-23771.6,0,0,0,0,0,639.1554 +5137,6265,11182,11183,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.3279696,8.5751915,50,3,-30.450932,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.4469175,8.2050314,53.53,36.31,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,752,2039267.4,959879.13,493085.38,0,0,0,3729.2798 +5137,6265,11183,11182,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.1337581,7.0083838,50,-3,-106.90793,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5114698,7.1689959,57.16,56.15,53.53,36.31,10,1,1,0,0,0,7,4,1,752,2039267.4,959879.13,493085.38,0,0,0,3729.2798 +5138,6266,11184,11185,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,37,2,87.303139,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.32,50.22,57.33,53.46,0,1,1,0,0,2,10,2,1,989.5,485470.13,352166.53,149470.14,0,18057.348,0,1425.4766 +5138,6266,11185,11184,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.5631509,7.5302291,37,-2,56.608292,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4787035,57.33,53.46,58.32,50.22,10,1,1,0,0,8,10,2,1,989.5,485470.13,352166.53,149470.14,0,18057.348,0,1425.4766 +5139,6267,11186,11187,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.688405,9.0738344,0,12,1,-36.891861,0,-9,-9,2021,6,0,40,40,1,0,0,17.68956,17.68956,.05,.05,0,0,0,0,0,0,1,1,0,2.046813,0,57.06,57.76,53,54,8.333333333333334,1,1,0,0,8,8,5,1,522,151135.48,111390.61,0,0,8764.1621,0,2673.3398 +5139,6267,11187,11186,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.1694827,7.5950618,0,12,-1,-2.6799631,0,-9,-9,2021,9,0,37,0,1,1,0,4.6970849,4.6970849,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,57.06,57.76,8,1,1,0,0,1,8,5,1,522,151135.48,111390.61,0,0,8764.1621,0,2673.3398 +5140,6268,11188,11189,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3794765,6.6889443,12,-5,-38.594219,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.8073115,6.305048,41.62,60.42,40.59,54.19,0,1,1,0,0,0,5,3,1,345,782219,628629.75,148931.34,0,0,0,2629.2668 +5140,6268,11189,11188,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.6924949,7.2863688,43,5,-4.3067384,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5512829,7.6500525,40.59,54.19,41.62,60.42,6.666666666666667,1,1,0,0,1,5,3,1,345,782219,628629.75,148931.34,0,0,0,2629.2668 +5141,6269,11190,11191,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.9880214,6.2659163,6,0,-18.951691,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7114105,62.38,25.08,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,1856,552951.13,308856.13,180429.34,0,0,0,1451.2203 +5141,6269,11191,11190,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.5298719,6.673233,6,0,75.699226,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2712238,6.4051237,57.33,53.46,62.38,25.08,8.333333333333334,1,1,0,0,0,4,2,1,1856,552951.13,308856.13,180429.34,0,0,0,1451.2203 +5142,6270,11192,11193,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.4409838,8.2636614,0,17,-6,178.87271,0,2,3,2021,11,0,30,25,1,0,0,18.932379,18.932379,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.19,47.9,1.666666666666667,1,1,0,0,9,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5142,6270,11193,11192,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,9.0076599,9.0901079,0,7,6,-40.531464,0,2,2,2021,7,0,42,35,1,0,0,19.623091,19.623091,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.19,47.9,48.87,58.55,8.333333333333334,1,1,0,0,9,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5142,6270,11194,-9,11192,11193,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1151.3831,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5142,6270,11195,-9,11192,11193,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.491,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,503,904808.81,728744.06,133201.33,46023.668,0,0,4339.606 +5143,6271,11196,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.5999842,8.4048834,0,0,0,-1023.4337,0,3,3,2021,11,1,37,35,1,1,0,18.408052,18.408052,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,35.03,45.86,-9,-9,0,4,2,0,0,11,8,5,0,621,-81157.25,1633.9413,0,0,0,0,2388.1128 +5144,6272,11197,11198,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.5836177,6.6642566,42,-5,-8.5167542,0,2,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.396131,6.8288865,51.49,37.25,61.03,31.71,3.333333333333333,1,1,0,0,0,10,3,1,403.5,499834.13,16371.517,477484.44,0,0,0,3461.3169 +5144,6272,11198,11197,-9,-9,1,1,87,0,0,0,1,1,-9,0,2,0,7.833847,7.7781706,42,5,-86.004372,0,2,2,2021,11,3,0,0,4,3,0,0,0,.05,.05,0,1,0,4.8156242,0,0,1,1,0,6.5437565,8.1708794,61.03,31.71,51.49,37.25,6.666666666666667,1,1,0,0,0,10,3,1,403.5,499834.13,16371.517,477484.44,0,0,0,3461.3169 +5145,6273,11199,11200,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.8835287,8.8156853,0,5,-1,190.04008,0,-9,-9,2021,9,0,40,53,1,0,0,20.407389,20.407389,.05,.05,0,0,0,0,0,0,0,0,0,1.4429524,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,6,2,5,1,1080,412857.19,278964.44,221663.11,105550.89,-833.30853,1263.2795,5669.4922 +5145,6273,11200,11199,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7888813,8.6286898,0,5,1,18.839363,0,1,1,2021,5,1,60,48,1,1,0,14.200598,14.200598,.05,.05,0,0,0,0,0,0,0,0,0,1.0693456,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,5,2,5,1,1080,412857.19,278964.44,221663.11,105550.89,-833.30853,1263.2795,5669.4922 +5146,6274,11201,-9,11202,11204,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.8729,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5146,6274,11202,11204,-9,-9,1,0,43,0,2,0,2,2,-9,1,1,8.3760099,8.1920443,0,15,3,9.3512383,0,2,2,2021,17,5,32,28,1,5,0,15.255885,15.255885,.05,.05,0,0,0,0,0,2,1,1,0,0,0,32.26,23.4,49.16,42.18,6.666666666666667,1,1,0,0,9,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5146,6274,11203,-9,11202,11204,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1144.7488,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5146,6274,11204,11202,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.2736893,8.176013,0,15,-3,-157.51233,0,2,2,2021,13,1,39,39,1,1,0,10.429953,10.429953,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49.16,42.18,32.26,23.4,6.666666666666667,1,1,0,0,9,5,4,1,801.75,176493.55,-80947.609,176550.28,29724.158,0,0,3240.72 +5147,6275,11205,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.3444605,8.2782803,0,0,0,-1005.2451,0,3,3,2021,8,3,38,35,1,3,0,10.795657,10.795657,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.3,45.88,-9,-9,8.333333333333334,1,1,0,0,12,8,4,1,589,571276.06,346264.59,0,0,0,0,2209.0042 +5148,6276,11206,-9,11207,11208,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1131.2615,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,1,3,1,772,16827.188,-28548.074,163874.53,88135.016,0,0,1782.0082 +5148,6276,11207,11208,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,6.7474933,6.9894986,0,18,-3,-56.180122,0,2,2,2021,7,0,14,25,1,0,0,10.345693,10.345693,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.61,57.22,8.333333333333334,1,1,0,0,10,1,3,1,772,16827.188,-28548.074,163874.53,88135.016,0,0,1782.0082 +5148,6276,11208,11207,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.0216007,7.9027882,0,16,3,18.539597,0,2,2,2021,11,0,44,46,1,0,0,9.6896753,9.6896753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.61,57.22,49.04,55.86,5,1,1,0,0,11,1,3,1,772,16827.188,-28548.074,163874.53,88135.016,0,0,1782.0082 +5149,6277,11209,11210,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,6.6832957,6.5194612,0,48,-3,-17.883287,0,3,3,2021,26,9,12,16,1,9,0,6.5098181,6.5098181,0,0,0,0,0,0,0,0,1,1,0,0,0,20.84,65.29000000000001,47.1,45.96,0,1,1,0,0,4,4,2,1,578,-33280.277,11141.33,0,0,0,0,810.50903 +5149,6277,11210,11209,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,4.7182546,4.6961455,46,3,-45.726757,0,3,3,2021,11,4,0,0,4,4,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,0,4.8183994,47.1,45.96,20.84,65.29000000000001,6.666666666666667,1,1,0,0,2,4,2,1,578,-33280.277,11141.33,0,0,0,0,810.50903 +5150,6278,11211,-9,-9,11212,1,1,22,0,0,0,2,2,-9,0,4,7.8003316,7.3092022,0,0,0,-1145.7263,0,-9,2,2021,9,0,48,0,1,0,1,5.2819467,5.2819467,0,0,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,3,4,3,0,1859,59535.832,59137.102,0,0,3681.1252,0,398.78946 +5150,6279,11212,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.9007273,8.0607729,0,0,0,-920.46295,0,-9,-9,2021,13,1,40,38,1,1,0,8.2820339,8.2820339,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.32,40.8,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,513,159201.22,-94564.867,54680.41,0,233.60008,0,1224.2983 +5151,6280,11213,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.0238619,7.903976,0,0,0,-972.94617,0,2,2,2021,12,0,23,23,1,0,0,11.896432,11.896432,.05,.05,0,0,0,0,0,0,1,1,0,5.6361604,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,3289,-21625.713,-42791.27,0,0,-1067.4795,0,1372.8387 +5152,6281,11214,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,6.1939325,6.2834139,0,0,-1003.814,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.752563,6.3197207,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,63,135231.81,-12476.028,212213.14,0,0,0,189.42889 +5153,6282,11215,11216,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,9.4021454,9.3955774,0,11,-7,-164.64813,0,2,2,2021,9,0,30,30,1,0,0,40.752636,40.752636,0,0,0,0,0,0,0,0,0,0,0,3.0470655,0,54.1,59.11,46.53,47.78,8.333333333333334,1,1,0,0,13,10,5,1,1615.5,1762928.3,177112.97,584058,0,0,0,4704.978 +5153,6282,11216,11215,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.3840652,7.615942,6.4822063,11,7,57.049858,0,3,3,2021,11,0,30,25,1,0,0,5.5989194,5.5989194,.05,.05,0,0,0,0,0,0,0,0,0,5.6647754,6.5863609,46.53,47.78,54.1,59.11,3.333333333333333,1,1,0,0,13,10,5,1,1615.5,1762928.3,177112.97,584058,0,0,0,4704.978 +5154,6283,11217,11218,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.9243712,7.1162915,0,6,-7,-149.7215,0,-9,-9,2021,12,0,14,15,1,0,0,8.8053293,8.8053293,.05,.05,0,0,0,0,0,0,0,0,0,2.1929445,0,51.25,50.81,46.74,49.92,10,1,1,0,0,3,7,5,1,580.5,1118335,603411,378599.59,0,0,0,6949.0518 +5154,6283,11218,11217,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.6875944,9.7949533,6.115128,6,7,-89.163437,0,3,2,2021,12,1,40,40,1,1,0,54.156193,54.156193,.05,.05,0,0,0,0,0,0,0,0,0,4.5826712,6.7943625,46.74,49.92,51.25,50.81,8.333333333333334,1,1,0,0,8,7,5,1,580.5,1118335,603411,378599.59,0,0,0,6949.0518 +5155,6284,11219,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8124847,8.7351513,0,0,0,-1078.8999,0,-9,2,2021,7,0,45,45,1,0,0,16.289631,16.289631,0,0,0,0,0,0,0,2,1,1,0,0,0,53.07,52.7,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,1661,1026261.3,0,538750.75,0,0,0,1171.0291 +5156,6285,11220,11221,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.3075399,9.3303251,0,8,1,.53956151,0,1,1,2021,14,4,36,36,1,4,0,26.956694,26.956694,.05,.05,0,0,0,0,0,0,1,1,0,5.290617,0,48.71,51.81,54.69,57.47,8.333333333333334,1,1,0,0,10,11,5,1,607.33331,1029211.9,210609.34,403567.22,131332,0,0,4620.1709 +5156,6285,11221,11220,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.2165537,7.9788423,0,8,-1,-94.583374,0,2,1,2021,9,0,23,22,1,0,0,18.950953,18.950953,.05,.05,0,0,0,0,0,0,1,1,0,4.6951442,0,54.69,57.47,48.71,51.81,8.333333333333334,1,1,0,0,9,11,5,1,607.33331,1029211.9,210609.34,403567.22,131332,0,0,4620.1709 +5156,6285,11222,-9,11221,11220,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.8686,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,607.33331,1029211.9,210609.34,403567.22,131332,0,0,4620.1709 +5157,6286,11223,11224,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.2703648,8.5248184,0,32,-1,57.880882,0,3,3,2021,17,5,38,39,1,5,0,17.573454,17.573454,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.38,22.54,42.1,37.58,6.666666666666667,2,3,0,0,11,8,5,1,562.5,745573.56,477145.53,282595.5,79035.078,7939.1758,26.215668,3678.3484 +5157,6286,11224,11223,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.1754332,7.998518,0,32,1,114.24642,0,2,2,2021,14,4,48,48,1,4,0,9.5952225,9.5952225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.1,37.58,45.38,22.54,6.666666666666667,2,3,0,0,9,8,5,1,562.5,745573.56,477145.53,282595.5,79035.078,7939.1758,26.215668,3678.3484 +5158,6287,11225,11226,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,2,0,111.3622,1,1,-9,2021,12,3,0,32,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.6,53.68,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,415,-1982.8799,45429.895,231664.66,135909.13,0,0,3344.2959 +5158,6287,11226,11225,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.9343314,7.940927,0,2,0,30.880701,0,-9,-9,2021,6,1,37,38,1,1,0,10.701355,10.701355,.05,.05,0,0,0,0,1.3983685,0,0,0,0,0,0,57.16,56.15,50.6,53.68,8.333333333333334,1,1,0,0,3,10,3,1,415,-1982.8799,45429.895,231664.66,135909.13,0,0,3344.2959 +5159,6288,11227,11228,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,6,-7,-26.822523,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,41.26,23.05,29.84,22.86,5,1,1,0,0,0,13,2,0,568.5,44661.813,116381.69,0,0,0,0,2013.8977 +5159,6288,11228,11227,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,6.5921907,6.8631587,6,7,3.1438549,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6513033,0,29.84,22.86,41.26,23.05,1.666666666666667,1,1,0,0,0,13,2,0,568.5,44661.813,116381.69,0,0,0,0,2013.8977 +5159,6289,11229,-9,11227,11228,1,0,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-969.51971,0,2,3,2021,18,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,47.81,-9,-9,5,1,1,0,0,3,13,1,0,473,0,0,0,0,0,0,527.81091 +5159,6290,11230,-9,11227,11228,1,0,23,0,0,0,2,2,-9,0,3,8.079175,8.2419701,0,0,0,-849.29236,-9,3,3,2021,9,1,50,0,1,1,1,7.5450587,7.5450587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,10,1,1,0,0,1,13,4,0,851,143210.05,13400.759,0,0,10687.694,-563.85767,1114.2375 +5160,6291,11231,-9,-9,-9,1,0,33,1,1,0,1,1,-9,0,3,8.5528316,8.5336618,0,0,0,-1036.6476,0,2,3,2021,22,10,45,50,1,10,0,10.859104,10.859104,0,0,0,0,0,0,0,0,1,1,0,0,0,28.44,58.44,-9,-9,1.666666666666667,3,4,0,0,9,8,4,0,871.5,88962.352,0,116777.2,107138.5,0,0,1920.3429 +5160,6291,11232,-9,11231,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.43872,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,871.5,88962.352,0,116777.2,107138.5,0,0,1920.3429 +5161,6292,11233,-9,11235,11238,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-905.79663,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11234,-9,11235,11238,1,1,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.842,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11235,11238,-9,-9,1,0,38,1,4,0,1,1,-9,0,3,7.083209,7.0501094,0,11,1,106.75495,0,2,2,2021,14,3,18,10,1,3,0,5.4550538,5.4550538,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,60.42,46,61.6,8.333333333333334,1,1,0,0,11,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11236,-9,11235,11238,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1141.7179,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11237,-9,11235,11238,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-965.96722,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5161,6292,11238,11235,-9,-9,1,1,37,1,4,0,1,1,-9,0,5,8.5650377,8.8148146,0,11,-1,-92.707787,0,2,2,2021,8,0,39,37,1,0,0,19.206758,19.206758,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,61.6,38.8,60.42,8.333333333333334,1,1,0,0,11,2,3,1,1026.1666,72751.563,37216.688,101569.23,75192.93,11539.923,14458.744,3302.5955 +5162,6293,11239,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7693267,8.7825127,8.0048399,0,0,-984.99176,0,2,2,2021,12,0,10,0,1,0,0,30.402317,30.402317,.05,.05,0,0,0,0,0,0,0,0,0,5.0170455,8.4444857,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,10,5,1,2812,338847.06,123093.99,0,0,0,694.00244,2416.9167 +5163,6294,11240,11241,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,6.9952555,6.8813767,0,2,-5,-5.7110767,-9,-9,-9,2021,10,0,50,0,1,1,0,2.6605146,2.6605146,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,34.64,15.66,8,4,1,0,0,1,7,2,1,1504,-30747.789,-21773.736,0,0,0,0,2151.9661 +5163,6294,11241,11240,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,2,5,154.91978,0,2,1,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.64,15.66,51,54,0,1,1,0,1,6,7,2,1,1504,-30747.789,-21773.736,0,0,0,0,2151.9661 +5164,6295,11242,11243,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,9,-5,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,26.01,39.84,21.56,29.66,1.666666666666667,1,1,0,0,0,13,1,1,658,19757.848,0,70825.906,0,0,466.98923,3801.6831 +5164,6295,11243,11242,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,9,5,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,18.616026,0,0,1,1,0,0,0,21.56,29.66,26.01,39.84,1.666666666666667,1,1,0,0,0,13,1,1,658,19757.848,0,70825.906,0,0,466.98923,3801.6831 +5165,6296,11244,11245,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,6,15,0,0,-9,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,36.51,47.85,27.03,8.333333333333334,1,1,0,0,0,7,1,0,3430.5,16536.389,108610.14,0,0,0,0,947.12347 +5165,6296,11245,11244,-9,-9,1,0,49,0,0,0,3,3,-9,0,1,0,0,0,6,-15,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.85,27.03,47.46,36.51,6.666666666666667,1,1,0,1,0,7,1,0,3430.5,16536.389,108610.14,0,0,0,0,947.12347 +5166,6297,11246,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.3081999,6.2441158,0,0,-976.61731,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8442454,53.24,36.78,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1314,316800.94,160018.33,201872.73,0,0,0,3925.8362 +5167,6298,11247,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1994085,7.8425674,0,0,0,-1083.4902,0,2,2,2021,8,0,37,37,1,0,0,11.204124,11.204124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,3,4,0,0,14,6,4,0,1913,76189.43,236368.91,156881.97,74310.797,0,1005.0196,1524.774 +5168,6299,11248,-9,-9,-9,1,1,18,0,0,0,3,3,-9,0,5,7.8845439,8.0973988,0,0,0,-1095.6473,0,-9,-9,2021,0,0,32,0,1,0,0,10.779159,10.779159,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,10,1,1,0,0,2,5,4,0,830,-141509.14,0,0,0,0,0,1529.9236 +5169,6300,11249,11250,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.2831717,8.3012619,0,41,2,103.84444,0,2,2,2021,8,0,37,37,1,0,0,15.138062,15.138062,0,0,0,0,0,0,0,0,0,0,0,0,0,50.47,43.29,47.31,47.37,8.333333333333334,1,1,0,0,14,7,5,1,706.5,2356131.5,1606482,466458.94,0,5970.6787,0,3872.2534 +5169,6300,11250,11249,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,8.5717888,8.4822683,0,41,-2,149.58694,0,3,1,2021,10,0,87,42,1,0,0,7.0933771,7.0933771,0,0,0,0,0,0,0,0,0,0,0,0,0,47.31,47.37,50.47,43.29,8.333333333333334,4,2,0,0,14,7,5,1,706.5,2356131.5,1606482,466458.94,0,5970.6787,0,3872.2534 +5170,6301,11251,11252,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,6.9494233,7.2763376,6,8,-67.469704,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.1385269,48,37,33.19,21.53,6.666666666666667,1,1,0,1,0,2,2,0,739,534188.25,195123.09,287586.94,0,0,0,1831.4285 +5170,6301,11252,11251,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,6,-8,25.226099,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.19,21.53,48,37,8.333333333333334,1,1,0,1,0,2,2,0,739,534188.25,195123.09,287586.94,0,0,0,1831.4285 +5171,6302,11253,11254,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.7466478,8.4062023,0,6,5,-33.442173,0,3,3,2021,6,0,40,40,1,0,0,14.556937,14.556937,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,57.33,53.46,8.333333333333334,1,1,0,0,7,13,4,1,420,499519.34,128979.86,439841.06,0,2869.387,0,3390.1733 +5171,6302,11254,11253,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,6.9564867,7.422595,0,6,-5,38.048595,0,3,3,2021,11,0,20,0,1,0,0,7.4456224,7.4456224,0,0,0,0,0,0,0,0,1,1,0,7.7251773,0,57.33,53.46,57.9,51.84,8.333333333333334,1,1,0,0,5,13,4,1,420,499519.34,128979.86,439841.06,0,2869.387,0,3390.1733 +5171,6303,11255,-9,11254,11253,1,0,24,0,0,0,1,1,-9,0,5,7.8921647,7.8517776,0,0,0,-975.39459,0,2,1,2021,6,0,38,38,1,0,1,6.8203778,6.8203778,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,241,-104735.66,0,0,0,0,0,938.53363 +5171,6304,11256,-9,11254,11253,1,1,23,0,0,0,1,1,1,0,4,7.6577244,8.1305094,0,0,0,-913.66821,-9,2,1,2021,6,0,40,0,1,0,1,5.6998372,5.6998372,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,497,28063.287,0,0,0,0,0,1462.9196 +5171,6305,11257,-9,11254,11253,1,0,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-929.26129,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,1,1,1,0,4,13,1,1,907,0,0,0,0,0,0,0 +5171,6306,11258,-9,11254,11253,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1018.4171,-9,2,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.74,48.37,-9,-9,5,1,1,0,0,0,13,1,1,5349,0,0,0,0,0,0,0 +5172,6307,11259,11260,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.8695254,6.0795202,10,-11,-36.620342,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7327204,51.77,58.57,59.63,41.44,8.333333333333334,1,1,0,0,0,10,2,1,1140,569056.56,196617.03,307805.19,0,0,0,1731.5985 +5172,6307,11260,11259,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.1313825,6.5274796,10,11,84.774849,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3107944,6.4542813,59.63,41.44,51.77,58.57,8.333333333333334,1,1,0,0,7,10,2,1,1140,569056.56,196617.03,307805.19,0,0,0,1731.5985 +5173,6308,11261,-9,-9,-9,1,0,96,0,0,0,1,1,-9,0,3,0,7.6902366,7.7528515,0,0,-1055.3363,-9,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,28.131231,0,273.71783,0,1,1,0,5.8200188,7.6465302,57.55,22.72,-9,-9,5,1,1,0,0,5,7,3,1,280,164931.3,86645.422,0,0,0,0,1628.3315 +5174,6309,11262,11263,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.7374077,8.476449,42,3,145.61877,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8665948,8.2967472,54.94,53.18,54.79,55.86,8.333333333333334,1,1,0,0,0,9,4,1,481.5,2070205.3,1243646.1,545987.56,0,0,0,5932.9014 +5174,6309,11263,11262,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.1458831,7.2286673,42,-3,-65.088417,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5657935,7.3924589,54.79,55.86,54.94,53.18,10,1,1,0,0,0,9,4,1,481.5,2070205.3,1243646.1,545987.56,0,0,0,5932.9014 +5175,6310,11264,11265,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,9.0967398,8.8583813,54,3,43.173252,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,8.7180357,6.658833,57.57,49.69,49,48,8.333333333333334,1,1,0,0,7,12,5,0,867.5,3697496.5,1177823.5,404090.75,0,0,0,5225.4624 +5175,6310,11265,11264,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,52,-3,45.809795,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49,48,57.57,49.69,5,1,1,0,1,7,12,5,0,867.5,3697496.5,1177823.5,404090.75,0,0,0,5225.4624 +5176,6311,11266,-9,11267,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.67493,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,3,0,1017,116938.45,-17090.955,149979.39,36460.359,4600.2275,0,1873.7368 +5176,6311,11267,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.1779575,8.0608263,0,0,0,-1024.0411,-9,-9,3,2021,5,0,32,0,1,0,0,12.638554,12.638554,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,15,8,3,0,1017,116938.45,-17090.955,149979.39,36460.359,4600.2275,0,1873.7368 +5176,6312,11268,-9,11267,-9,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-891.74524,-9,1,-9,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.4892426,0,37.36,58.26,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,2038,-77475.375,0,0,0,0,0,-157.64009 +5177,6313,11269,11270,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.3206825,6.2859974,7,0,68.548203,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0515642,34.75,46.14,31.92,23.76,5,1,1,0,0,0,10,2,1,301,316758.69,37014.828,314553.5,0,0,0,379.37146 +5177,6313,11270,11269,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,4.375021,4.2790937,7,0,-33.952927,0,3,3,2021,20,10,0,0,4,10,0,0,0,0,0,0,1,0,24.330311,0,0,1,1,0,0,3.8685777,31.92,23.76,34.75,46.14,3.333333333333333,1,1,0,0,0,10,2,1,301,316758.69,37014.828,314553.5,0,0,0,379.37146 +5178,6314,11271,11273,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.0812483,7.8138905,0,1,-4,-27.323202,-9,-9,-9,2021,13,4,45,0,1,4,0,6.9173265,6.9173265,0,0,0,0,0,0,0,0,1,1,0,0,0,44.56,59.1,39.5,58.86,1.666666666666667,3,4,0,0,11,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5178,6314,11272,-9,11271,11273,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.1692,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5178,6314,11273,11271,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.5648432,7.7045836,0,1,4,-103.13972,-9,-9,-9,2021,22,7,23,0,1,7,0,11.679019,11.679019,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.5,58.86,44.56,59.1,1.666666666666667,1,1,0,0,13,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5178,6314,11274,-9,11271,11273,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.6385,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,3,0,2697.25,89634.078,9075.0703,0,0,9236.2373,4404.8018,2155.0386 +5179,6315,11275,11276,-9,-9,1,0,52,0,1,0,3,3,-9,1,1,0,0,0,21,0,0,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,29.78,25.84,34.66,22.06,3.333333333333333,1,1,0,0,0,7,1,0,518.5,61255.797,0,0,0,0,755.04834,2795.1367 +5179,6315,11276,11275,-9,-9,1,1,52,0,1,0,3,3,-9,1,2,0,0,0,20,0,0,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.66,22.06,29.78,25.84,1.666666666666667,1,1,0,0,0,7,1,0,518.5,61255.797,0,0,0,0,755.04834,2795.1367 +5179,6316,11277,-9,11275,11276,1,0,21,0,1,0,2,2,-9,0,1,7.8517985,7.8861046,0,0,0,-1037.0242,0,3,3,2021,19,6,38,48,1,6,1,9.2163029,9.2163029,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.44,51.88,-9,-9,8.333333333333334,1,1,0,0,5,7,4,0,190,-64172.152,-15739.841,0,0,7771.0317,0,1022.0281 +5179,6317,11278,-9,11275,11276,1,0,19,0,1,0,2,2,1,0,4,7.8566656,7.6128168,0,0,0,-982.77728,-9,3,3,2021,14,1,34,0,1,1,1,7.4899631,7.4899631,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,4,7,3,0,737,-68788.445,-129582.16,0,0,5065.5225,0,906.664 +5180,6318,11279,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.4429264,8.5854912,6.4373441,0,0,-1123.1925,0,2,-9,2021,15,5,39,39,1,5,0,12.098682,12.098682,.05,.05,0,0,0,0,0,0,1,1,0,6.1310296,0,27.98,63,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,1286,99638.352,34452.727,0,0,0,0,2286.0725 +5181,6319,11280,11281,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.4681768,7.0099406,0,10,-2,-120.81606,0,3,3,2021,7,0,20,30,1,0,0,8.7652969,8.7652969,.05,.05,0,0,0,0,0,0,0,0,0,2.3532505,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1832,294057.09,328022.38,150383.69,137950.23,0,5233.54,3554.48 +5181,6319,11281,11280,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.7038755,8.5919676,0,10,2,-42.375668,0,3,3,2021,6,0,38,37,1,0,0,18.857706,18.857706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1832,294057.09,328022.38,150383.69,137950.23,0,5233.54,3554.48 +5182,6320,11282,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,8.2829914,8.3583479,0,0,0,-1141.3505,0,-9,-9,2021,12,0,42,48,1,0,0,10.492659,10.492659,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,11,12,4,0,351,-67480.781,-29013.775,92337.961,49878.66,2756.1797,0,1799.546 +5183,6321,11283,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,6.7156816,7.1382008,6.2008243,0,0,-964.89386,0,2,2,2021,9,0,16,16,1,0,0,6.1457043,6.1457043,0,0,0,0,0,0,0,74.5,0,0,0,4.9938245,6.1993599,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,553,858436.44,217271.88,552649.88,0,0,0,916.15942 +5184,6322,11284,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.5020208,8.5880108,0,0,0,-975.49219,0,-9,-9,2021,10,1,35,39,1,1,0,18.314819,18.314819,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.5,52.88,-9,-9,3.333333333333333,1,1,0,0,6,6,5,0,991,63932.684,-44833.645,0,0,0,0,2265.0891 +5185,6323,11285,11286,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,4.83254,4.893199,52,3,50.286232,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.861928,4.9916282,56.77,52.22,67.45,34.18,8.333333333333334,1,1,0,0,0,11,2,1,191.5,258445.88,147658.31,107296.69,18478.633,388.86926,0,1285.5889 +5185,6323,11286,11285,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,3.5066776,3.3437917,52,-3,-84.783531,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.4415224,67.45,34.18,56.77,52.22,8.333333333333334,1,1,0,0,8,11,2,1,191.5,258445.88,147658.31,107296.69,18478.633,388.86926,0,1285.5889 +5186,6324,11287,11288,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.4743462,8.7195396,0,21,1,-112.37613,0,3,3,2021,7,0,44,45,1,0,0,10.864092,10.864092,0,0,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,44.56,59.44,8.333333333333334,1,1,0,0,10,6,5,1,2161,1377858,550059.25,385065.75,0,0,0,3373.0713 +5186,6324,11288,11287,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,8.4993401,8.3768892,5.8001595,21,-1,6.9364491,0,3,3,2021,14,2,70,55,1,2,0,7.4329624,7.4329624,0,0,0,0,0,0,0,14.5,0,0,0,6.5596104,5.0462766,44.56,59.44,59.29,49.68,8.333333333333334,1,1,0,0,10,6,5,1,2161,1377858,550059.25,385065.75,0,0,0,3373.0713 +5187,6325,11289,-9,11290,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.57556,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,1,0,1172.5,-59782.25,0,0,0,0,257.82132,2011.27 +5187,6325,11290,-9,-9,-9,1,0,34,0,3,0,2,2,-9,1,4,0,0,0,0,0,-1080.8131,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.04,64.75,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1172.5,-59782.25,0,0,0,0,257.82132,2011.27 +5188,6326,11291,11292,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.820509,8.719595,0,25,-6,133.58896,0,2,2,2021,6,2,45,41,1,2,0,16.998659,16.998659,0,0,0,0,0,0,0,0,1,1,0,0,0,49.33,51.63,45.99,51.88,8.333333333333334,1,1,0,0,9,6,5,1,1179.5,1009603,400797.25,412791.25,0,0,0,5605.502 +5188,6326,11292,11291,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,9.1542463,9.2134695,0,7,6,4.8303642,0,-9,-9,2021,11,2,48,45,1,2,0,20.947317,20.947317,0,0,0,0,0,0,0,0,1,1,0,4.0229707,0,45.99,51.88,49.33,51.63,6.666666666666667,1,1,0,0,9,6,5,1,1179.5,1009603,400797.25,412791.25,0,0,0,5605.502 +5188,6327,11293,-9,11291,11292,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1096.1288,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.150773,0,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,718,47499.121,0,0,0,0,0,-154.74667 +5189,6328,11294,11295,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.9339943,8.8911295,5.7396183,9,0,-46.163471,0,2,3,2021,12,1,25,30,1,1,0,30.568157,30.568157,0,0,0,0,0,0,0,0,1,1,0,4.1143575,5.9649839,44.59,59.08,54.22,39.67,6.666666666666667,1,1,0,0,10,9,5,1,1622.5,821592.38,504620.19,291939.72,0,0,0,3436.9331 +5189,6328,11295,11294,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.2238212,5.3270311,9,9,-32.370918,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0560117,5.5866747,54.22,39.67,44.59,59.08,8.333333333333334,1,1,0,0,5,9,5,1,1622.5,821592.38,504620.19,291939.72,0,0,0,3436.9331 +5190,6329,11296,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1009.8184,0,-9,-9,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,9.0902443,0,0,1,1,0,0,0,46.31,21,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,6710,0,0,0,0,0,0,625.47736 +5191,6330,11297,-9,11299,11298,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.02643,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11298,11299,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,7.2338028,7.1516671,0,15,2,31.368729,-9,2,2,2021,8,0,40,0,1,0,0,4.0005531,4.0005531,.05,.05,0,0,0,0,0,0,1,1,0,9.041091,0,57.06,57.76,59.53,56.44,6.666666666666667,1,1,0,0,7,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11299,11298,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.9406977,7.9983635,0,15,-2,-8.4115725,-9,2,2,2021,6,0,22,0,1,0,0,13.09036,13.09036,0,0,0,0,0,0,0,0,1,1,0,5.447258,0,59.53,56.44,57.06,57.76,10,1,1,0,0,10,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11300,-9,11299,11298,1,0,16,0,2,1,2,0,-9,0,1,0,0,0,0,0,-1038.678,-9,2,1,2021,20,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.81,51.25,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6330,11301,-9,11299,11298,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.05347,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,581.20001,498396.16,34002.199,410008.88,278068.38,0,0,4884.4629 +5191,6331,11302,-9,11299,11298,1,1,19,0,2,1,2,0,-9,0,1,0,6.9742899,6.7259445,0,0,-1106.3276,-9,2,1,2021,27,9,0,0,2,9,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.3357811,0,4.94,63.41,-9,-9,0,1,1,0,0,2,9,2,1,258,30534.049,-56503.359,0,0,238.34306,0,311.42514 +5192,6332,11303,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,5.9294076,5.9588165,0,0,-1054.9829,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,26.776463,0,0,1,1,0,0,5.645196,30.36,40.25,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,970,360851.56,192644.34,274037.38,0,0,0,1320.2468 +5193,6333,11304,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.1036367,8.2001934,6.2864318,0,0,-801.83527,0,2,2,2021,10,0,40,37,1,0,0,10.064192,10.064192,.05,.05,0,0,0,0,0,0,1,1,0,6.2176347,0,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,9,5,3,1,495.5,144659.78,45148.273,119890.05,117130.8,0,0,3093.7424 +5193,6333,11305,-9,11304,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.4433,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,5,3,1,495.5,144659.78,45148.273,119890.05,117130.8,0,0,3093.7424 +5193,6334,11306,-9,11304,-9,1,0,18,0,1,0,2,2,-9,0,4,0,3.0900156,3.3412955,0,0,-986.23981,1,2,-9,2021,21,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1148994,0,33.14,64.63,-9,-9,3.333333333333333,1,1,0,0,2,5,2,1,403,-85128.078,0,0,0,0,-538.79181,-129.37048 +5194,6335,11307,11308,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,5.8244715,5.8807096,7,-1,16.518736,0,3,3,2021,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9903569,57.06,57.76,52.93,55.31,8.333333333333334,1,1,0,0,7,13,3,1,1098,862492.56,667357.88,157993.97,0,2177.2791,0,2045.9686 +5194,6335,11308,11307,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.2860713,7.4575424,7,1,-100.38882,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6560025,52.93,55.31,57.06,57.76,10,1,1,0,0,6,13,3,1,1098,862492.56,667357.88,157993.97,0,2177.2791,0,2045.9686 +5195,6336,11309,-9,11310,11313,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1060.209,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11310,11313,-9,-9,1,0,45,0,3,0,2,2,-9,1,2,0,0,0,23,-7,0,0,3,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.66,34.54,55.6,47.8,3.333333333333333,1,1,0,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11311,-9,11310,11313,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-913.62988,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11312,-9,11310,11313,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-971.85175,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6336,11313,11310,-9,-9,1,1,52,0,3,0,2,2,-9,0,2,0,0,0,23,7,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.6,47.8,54.66,34.54,6.666666666666667,1,1,0,0,0,7,1,0,380.39999,-28464.244,0,0,0,0,0,2894.0269 +5195,6337,11314,-9,11310,11313,1,1,19,0,3,0,2,2,-9,0,5,7.9812255,8.0562496,0,0,0,-987.5672,0,2,2,2021,5,0,60,25,1,0,1,4.9079251,4.9079251,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,2,7,4,0,940,-67078.344,93653.406,0,0,0,0,736.67877 +5196,6338,11315,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.7054024,8.6237974,0,0,0,-831.44299,0,2,3,2021,5,0,35,35,1,0,0,20.095596,20.095596,0,0,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,294,215982.7,15492.772,286318,110149.54,-111.89587,-966.70203,1986.3517 +5197,6339,11316,-9,-9,-9,1,0,35,0,1,0,3,3,-9,1,3,0,6.7656636,6.5187426,0,0,-1008.8159,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.5284467,0,42.31,49.45,-9,-9,5,1,1,0,0,4,12,2,0,869,-66319.688,0,0,0,0,0,2114.8711 +5197,6339,11317,-9,11316,-9,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-971.62323,-9,3,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,869,-66319.688,0,0,0,0,0,2114.8711 +5197,6339,11318,-9,11316,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1103.8207,-9,3,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,2,0,869,-66319.688,0,0,0,0,0,2114.8711 +5198,6340,11319,11320,-9,-9,1,1,64,0,0,0,3,3,-9,1,1,0,0,0,41,3,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.77,39.56,49,48,6.666666666666667,2,3,0,1,0,7,1,1,1995.5,164508.69,0,211936.38,0,0,0,1717.981 +5198,6340,11320,11319,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,44.77,39.56,7,2,3,0,0,0,7,1,1,1995.5,164508.69,0,211936.38,0,0,0,1717.981 +5199,6341,11321,11322,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.2989454,8.22647,0,42,1,-72.507149,0,3,3,2021,8,0,40,37,1,0,0,11.450314,11.450314,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.92,31.61,55.96,49.93,10,1,1,0,0,9,1,4,0,1116.5,304056.88,183898.92,170572.16,0,4437.7461,9048.7559,2222.1233 +5199,6341,11322,11321,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.0740709,6.9675059,5.0944228,42,-1,-19.863235,0,2,2,2021,8,0,17,18,1,0,0,7.6250768,7.6250768,.05,.05,0,0,0,0,0,7,0,0,0,0,4.9064698,55.96,49.93,60.92,31.61,10,1,1,0,0,11,1,4,0,1116.5,304056.88,183898.92,170572.16,0,4437.7461,9048.7559,2222.1233 +5200,6342,11323,11324,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2121305,8.2794838,0,9,-1,-63.601948,0,2,2,2021,8,0,44,44,1,0,0,11.897294,11.897294,.05,.05,.05,0,0,0,0,0,1,1,0,2.9790821,0,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,10,12,4,1,300,440044.56,103993.2,306401.56,15316.607,0,0,3383.1147 +5200,6342,11324,11323,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.4684849,7.8761172,0,9,1,131.09331,0,3,3,2021,6,0,30,30,1,0,0,14.093586,14.093586,0,0,0,0,0,0,0,0,1,1,0,.42877856,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,10,12,4,1,300,440044.56,103993.2,306401.56,15316.607,0,0,3383.1147 +5200,6343,11325,-9,11324,11323,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-918.76709,-9,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6096289,0,47.01,58,-9,-9,6.666666666666667,1,1,0,0,1,12,1,1,1166,37867.773,0,0,0,0,0,-442.82825 +5201,6344,11326,11327,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,9.015995,8.784811,0,9,4,23.7188,0,2,1,2021,12,0,38,40,1,0,0,25.685034,25.685034,.05,.05,0,0,0,0,0,0,1,1,0,7.4586535,0,58.32,50.22,44.19,58.01,8.333333333333334,1,1,0,0,10,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5201,6344,11327,11326,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.6507597,8.8055134,0,9,-4,42.854511,0,2,2,2021,19,8,45,40,1,8,0,15.573799,15.573799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,58.32,50.22,8.333333333333334,1,1,0,0,10,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5201,6344,11328,-9,11327,11326,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1043.9641,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5201,6344,11329,-9,11327,11326,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.0115,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,698.25,1086639,-3940.0718,686783.38,0,0,0,4554.7852 +5202,6345,11330,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.8520699,8.7792931,0,0,0,-1028.5195,0,-9,-9,2021,10,0,43,42,1,0,0,20.260311,20.260311,.05,.05,0,0,0,0,0,0,1,1,0,2.6435294,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,1237,497429.69,46215.516,215169.34,0,0,0,2006.0717 +5202,6346,11331,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,7.8876491,7.7682471,0,0,0,-1055.0011,0,-9,-9,2021,11,0,32,31,1,1,0,9.5295944,9.5295944,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,7,1,1,0,0,1,10,3,1,465,-40192.059,29666.338,0,0,0,0,956.38196 +5203,6347,11332,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1000.321,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.63,48.56,-9,-9,3.333333333333333,1,1,0,1,3,7,1,0,354,127554.66,0,0,0,0,0,1363.4653 +5204,6348,11333,11336,-9,-9,1,1,59,0,1,0,2,2,-9,0,2,7.7575998,7.7737622,0,27,13,-45.848183,0,3,3,2021,10,0,65,65,1,0,0,3.962606,3.962606,.05,.05,.05,0,0,0,0,0,1,1,0,6.8021765,0,54.61,51.04,51.93,49.21,6.666666666666667,1,1,0,0,7,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5204,6348,11334,-9,11336,11333,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.07324,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5204,6348,11335,-9,11336,11333,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1183.2699,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0365264,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,1,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5204,6348,11336,11333,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,9.0095921,8.9928751,0,29,-13,-35.952698,0,2,2,2021,12,0,49,49,1,0,0,14.537151,14.537151,0,0,0,0,0,0,0,0,1,1,0,2.2737002,0,51.93,49.21,54.61,51.04,8.333333333333334,1,1,0,0,6,7,5,1,387,1182145.6,357316.44,597881.94,210279.81,6569.231,0,4132.6543 +5205,6349,11337,11338,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,7.84975,7.6467447,10,1,46.49575,0,2,2,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.2206602,34.91,34.48,58.56,46.45,6.666666666666667,1,1,0,1,7,7,5,1,764.5,-1171.9858,0,0,0,0,0,3105.1577 +5205,6349,11338,11337,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.6930275,8.5926008,0,10,-1,-60.906494,0,2,2,2021,6,0,55,50,1,0,0,12.251152,12.251152,0,0,0,0,0,0,0,0,1,1,0,1.8831464,0,58.56,46.45,34.91,34.48,8.333333333333334,1,1,0,0,13,7,5,1,764.5,-1171.9858,0,0,0,0,0,3105.1577 +5206,6350,11339,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,5.7154126,5.96771,0,0,-968.33405,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7268758,0,49.12,57.28,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,1474,52515.793,0,0,0,0,0,1019.6246 +5207,6351,11340,11342,-9,-9,1,0,32,1,1,0,2,2,-9,0,2,7.1061459,6.9872775,0,9,-2,2.4306555,0,-9,-9,2021,10,0,16,0,1,0,0,8.1140776,8.1140776,0,0,0,0,0,0,0,0,1,1,0,0,0,39.88,52.43,57.16,56.15,3.333333333333333,1,1,0,0,8,7,5,0,566.66669,41759.383,1459.5804,273994.94,192419.73,0,-172.02774,3166.6919 +5207,6351,11341,-9,11340,11342,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.9458,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,0,566.66669,41759.383,1459.5804,273994.94,192419.73,0,-172.02774,3166.6919 +5207,6351,11342,11340,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,9.0922461,8.8682461,0,9,2,14.759283,0,2,2,2021,6,0,58,60,1,0,0,16.913565,16.913565,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.88,52.43,6.666666666666667,1,1,0,0,10,7,5,0,566.66669,41759.383,1459.5804,273994.94,192419.73,0,-172.02774,3166.6919 +5208,6352,11343,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.0088902,8.1438122,0,0,0,-826.69281,0,2,2,2021,9,0,40,50,1,0,0,10.107254,10.107254,0,0,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,617,125064.02,0,0,0,0,0,1882.5192 +5209,6353,11344,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.6370859,6.6713915,0,0,-1034.927,0,3,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,4.5569687,6.0556855,46.855904,0,1,1,0,1.8052291,6.6481004,36.61,17.55,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,311,136191.52,82994.023,0,0,3967.6326,0,2547.7021 +5210,6354,11345,-9,11346,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1011.4101,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,8,4,1,1182,-76262.242,58958.086,0,0,6081.8315,0,1710.573 +5210,6354,11346,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.8780622,8.4254875,0,0,0,-1121.8994,0,1,2,2021,10,0,45,49,1,0,0,14.36673,14.36673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,10,4,2,0,0,9,8,4,1,1182,-76262.242,58958.086,0,0,6081.8315,0,1710.573 +5211,6355,11347,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.4264364,6.3480334,0,0,-991.4718,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,4.322937,0,0,1,1,0,2.1567571,6.2082272,51.84,35.77,-9,-9,10,1,1,0,0,0,1,2,1,745,156600.58,70300.516,283239.47,0,0,0,828.82599 +5212,6356,11348,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1021.1666,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.28,46.17,-9,-9,1.666666666666667,1,1,0,0,2,6,1,1,868,0,0,0,0,0,0,1997.1229 +5213,6357,11349,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.1226974,6.7521725,0,0,-974.15802,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1691322,6.8760905,60.95,16.59,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,83,291137.09,-26293.299,0,0,0,0,1527.9977 +5214,6358,11350,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,0,7.3760142,7.5602789,0,0,-1015.5254,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,6.1682835,7.591835,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,198,0,0,0,0,0,0,882.25543 +5215,6359,11351,11354,-9,-9,1,1,34,0,3,0,1,1,-9,0,5,8.4718237,8.5391455,0,3,-1,36.69672,0,-9,-9,2021,0,0,40,40,1,0,0,17.748758,17.748758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,63.99,43.47,10,3,4,0,0,5,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11352,-9,11354,11351,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1090.0494,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,3,4,-9,0,0,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11353,-9,11354,11351,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.87585,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11354,11351,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.8875375,8.1958437,0,3,1,30.90225,0,-9,-9,2021,6,0,50,35,1,0,0,5.7360787,5.7360787,.05,.05,0,0,0,0,0,42,0,0,0,.70352948,0,63.99,43.47,62.39,56.71,10,3,4,0,0,7,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5215,6359,11355,-9,11354,11351,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.47491,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,4,0,832,208800,136016.63,276288.25,173712.61,5920.4155,0,4186.6406 +5216,6360,11356,-9,11359,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-887.03186,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5216,6360,11357,-9,11359,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.6658,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5216,6360,11358,-9,11359,-9,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-977.08911,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5216,6360,11359,-9,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,9.4377832,9.5204935,0,0,0,-1111.3031,0,1,1,2021,9,1,38,38,1,1,0,46.05365,46.05365,0,0,0,0,0,0,0,0,0,0,0,5.6178002,0,46.7,57.37,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,1645.5,-69892.148,0,117727.16,97203.531,-13.873432,2091.0669,3907.855 +5217,6361,11360,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.9906669,8.015686,0,0,0,-962.61633,0,2,2,2021,8,0,42,42,1,0,0,9.0203676,9.0203676,0,0,0,0,0,0,0,0,0,0,0,2.5240693,0,37.02,58.5,-9,-9,5,1,1,0,0,9,5,4,0,1338,-114273.32,0,0,0,0,0,1641.6442 +5218,6362,11361,11364,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.5577374,9.7693138,0,9,-3,78.765633,0,3,2,2021,21,8,55,55,1,8,0,30.489351,30.489351,0,0,0,0,0,0,0,7,0,0,0,7.7969456,0,48.53,58.91,61.88,28.48,6.666666666666667,1,1,0,0,11,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5218,6362,11362,-9,11364,11361,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-983.07947,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5218,6362,11363,-9,11364,11361,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6169,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5218,6362,11364,11361,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,7.0974641,6.8635073,0,13,3,-11.324865,0,2,3,2021,10,0,14,34,1,0,0,10.447785,10.447785,0,0,0,0,0,0,0,14.5,0,0,0,0,0,61.88,28.48,48.53,58.91,6.666666666666667,1,1,0,0,11,8,5,1,1339.25,28872.156,0,0,0,0,0,8322.6768 +5219,6363,11365,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.4072418,8.656352,0,0,0,-1001.9961,0,3,-9,2021,9,0,37,37,1,0,0,12.745578,12.745578,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,449,220393.22,-99768.656,120419.18,0,0,0,2216.4377 +5220,6364,11366,-9,-9,-9,1,0,56,0,1,0,3,3,-9,0,2,0,0,0,0,0,-861.336,-9,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.85,37.38,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,2289,95361.742,0,0,0,0,339.78506,1614.2878 +5221,6365,11367,11368,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8226171,6.8688426,11,-2,47.841473,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8876038,46.5,58.26,46.5,58.26,8.333333333333334,1,1,0,0,0,13,2,1,584.5,164335.64,186357.73,90526.117,0,0,0,1465.2512 +5221,6365,11368,11367,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,11,2,21.527662,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,46.5,58.26,8.333333333333334,1,1,0,0,0,13,2,1,584.5,164335.64,186357.73,90526.117,0,0,0,1465.2512 +5222,6366,11369,-9,11370,11371,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.5317,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5222,6366,11370,11371,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,9.0663853,8.7360229,0,14,0,8.0087996,0,2,1,2021,11,0,60,56,1,0,0,12.406883,12.406883,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,10,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5222,6366,11371,11370,-9,-9,1,1,41,0,2,0,2,2,-9,0,5,8.1184702,7.9509907,0,14,0,-112.68501,0,3,3,2021,9,1,40,40,1,1,0,7.5752664,7.5752664,.05,.05,0,0,0,0,0,0,1,1,0,6.7398882,0,54.1,59.11,57.06,57.76,8.333333333333334,4,5,0,0,10,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5222,6366,11372,-9,11370,11371,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.9193,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,5,1,911.5,463363.38,166714.69,242926.28,0,0,0,4296.2637 +5223,6367,11373,11374,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.5962152,8.3561649,0,5,-7,92.724556,-9,-9,-9,2021,6,0,52,0,1,0,0,11.111466,11.111466,.05,.05,0,0,0,0,0,0,0,0,0,5.6435595,0,57.06,57.76,57.16,56.15,10,1,1,0,0,1,12,4,1,516,292971.22,116616.8,162761.03,0,10406.794,544.74829,1662.0432 +5223,6367,11374,11373,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,5,7,103.98238,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,5,12,4,1,516,292971.22,116616.8,162761.03,0,10406.794,544.74829,1662.0432 +5224,6368,11375,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.3011398,7.1815319,0,0,-988.20758,0,3,2,2021,13,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9638476,41.11,38.91,-9,-9,6.666666666666667,3,4,0,0,2,8,3,0,245,728947.25,57791.609,362643.19,0,0,0,733.99585 +5225,6369,11376,-9,11378,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-995.8399,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,654.33331,24769.592,-18758.539,71920.945,65875.477,1033.1814,0,3551.6255 +5225,6369,11377,11378,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,7.7321458,7.8622937,0,1,4,139.41924,-9,-9,-9,2021,12,3,38,0,1,3,0,6.1098685,6.1098685,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52.58,47.36,8.333333333333334,1,1,0,0,1,12,3,0,654.33331,24769.592,-18758.539,71920.945,65875.477,1033.1814,0,3551.6255 +5225,6369,11378,11377,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,7.8313413,7.7487926,0,1,-4,66.060867,0,2,2,2021,7,0,41,0,1,0,0,6.5880208,6.5880208,0,0,0,0,0,0,0,0,1,1,0,0,0,52.58,47.36,49.04,55.86,10,1,1,0,0,5,12,3,0,654.33331,24769.592,-18758.539,71920.945,65875.477,1033.1814,0,3551.6255 +5226,6370,11379,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1035.1288,0,2,2,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.38,46.16,-9,-9,1.666666666666667,3,4,1,1,0,8,1,0,489,18842.359,0,0,0,0,0,773.91638 +5227,6371,11380,11381,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,7.8730063,8.1531763,5.0303311,3,-3,-15.733839,0,3,2,2021,0,0,40,36,1,0,0,7.6309948,7.6309948,0,0,0,0,0,0,0,0,1,1,0,5.2634625,0,59.43,58.05,53,55,10,1,1,0,0,6,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5227,6371,11381,11380,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,7.9226041,7.8337836,0,3,3,-82.670303,0,-9,-9,2021,9,0,22,37,1,1,0,14.254366,14.254366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,59.43,58.05,8,4,1,0,0,1,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5227,6371,11382,-9,11380,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.8812,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5227,6371,11383,-9,11380,-9,1,1,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-848.94196,-9,1,-9,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.6,48.03,-9,-9,1.666666666666667,1,1,0,1,0,6,3,0,663.5,513909.16,333836.66,215946.72,162833.2,0,0,3758.8315 +5228,6372,11384,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1024.6167,0,2,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.37,60.64,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,549,-75988.703,0,0,0,0,994.4809,-19.671846 +5229,6373,11385,11386,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.7359486,8.7059584,0,2,-3,24.827032,0,2,2,2021,16,5,53,49,1,5,0,11.133022,11.133022,0,0,0,0,0,0,0,0,0,0,0,6.5325584,0,31.77,61.1,46.44,59.62,5,1,1,0,0,7,1,5,0,360,27813.391,29795.541,15180.597,28772.279,0,0,2766.2793 +5229,6373,11386,11385,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.1088142,8.3272438,0,2,3,81.320831,0,-9,-9,2021,9,0,56,50,1,0,0,6.9760756,6.9760756,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,31.77,61.1,8.333333333333334,1,1,0,0,3,1,5,0,360,27813.391,29795.541,15180.597,28772.279,0,0,2766.2793 +5230,6374,11387,-9,11390,11388,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.36884,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5230,6374,11388,11390,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,8.9482985,8.8980408,0,6,7,14.78378,0,2,1,2021,15,3,39,39,1,3,0,19.121262,19.121262,0,0,0,0,0,0,0,0,1,1,0,2.2411482,0,51.14,60.45,52.02,57.3,6.666666666666667,1,1,0,0,6,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5230,6374,11389,-9,11390,11388,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.6825,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5230,6374,11390,11388,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.271946,8.0901155,0,6,-7,-27.838993,0,2,2,2021,6,0,31,31,1,0,0,14.497216,14.497216,0,0,0,0,0,0,0,0,1,1,0,0,0,52.02,57.3,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,710.25,828465.81,69778.422,748713.38,0,0,0,4007.7515 +5231,6375,11391,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,9.1313753,8.8508892,0,0,0,-881.80914,0,1,2,2021,10,0,41,40,1,0,0,25.567427,25.567427,.05,.05,0,0,0,0,0,0,0,0,0,3.0267644,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,9,9,5,0,1169,7436.8613,0,0,0,0,0,2954.7251 +5232,6376,11392,-9,11393,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1073.2512,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,3,4,-9,0,0,8,3,0,726.66669,106897.7,35106.859,0,0,0,0,2188.6494 +5232,6376,11393,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,5,8.0507479,8.1002464,0,0,0,-1001.3616,0,2,3,2021,5,0,31,47,1,0,0,9.9640427,9.9640427,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,4,2,0,0,5,8,3,0,726.66669,106897.7,35106.859,0,0,0,0,2188.6494 +5232,6376,11394,-9,11393,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.38507,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,0,726.66669,106897.7,35106.859,0,0,0,0,2188.6494 +5233,6377,11395,-9,11397,11398,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1021.9567,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5233,6377,11396,-9,11397,11398,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.69702,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5233,6377,11397,11398,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,8.3754244,8.3275776,0,7,2,82.059258,0,3,3,2021,10,0,36,23,1,0,0,15.404812,15.404812,0,0,.05,0,0,0,0,0,1,1,0,0,0,55.81,36.7,36.19,45.47,8.333333333333334,1,1,0,0,8,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5233,6377,11398,11397,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.702013,8.7261877,0,7,-2,-24.918959,0,1,1,2021,24,12,43,43,1,12,0,14.082747,14.082747,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,36.19,45.47,55.81,36.7,5,1,1,0,0,8,6,5,1,498,95159.422,196232.2,214333.66,133812.89,15876.324,0,3920.9541 +5234,6378,11399,11400,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0289021,7.7581468,0,7,6,39.141766,0,3,-9,2021,18,6,32,32,1,6,0,10.677289,10.677289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.52,41.71,43.18,52.17,6.666666666666667,1,1,0,0,8,11,5,1,1212,754364.38,503046.13,218268.44,129691.66,-863.0415,0,3525.833 +5234,6378,11400,11399,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,9.0701323,8.6092253,0,7,-6,-68.464134,0,-9,-9,2021,9,1,50,49,1,1,0,16.74659,16.74659,.05,.05,0,0,0,0,0,0,0,0,0,2.1912594,0,43.18,52.17,41.52,41.71,1.666666666666667,1,1,0,1,8,11,5,1,1212,754364.38,503046.13,218268.44,129691.66,-863.0415,0,3525.833 +5235,6379,11401,11404,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.5459127,8.3182163,0,16,-1,-49.509537,0,2,3,2021,8,0,25,17,1,0,0,21.120329,21.120329,.05,.05,0,0,0,0,0,0,0,0,0,2.3833036,0,51.24,58.84,51.24,58.84,8.333333333333334,1,1,0,0,8,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5235,6379,11402,-9,11401,11404,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.2397,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5235,6379,11403,-9,11401,11404,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9416,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5235,6379,11404,11401,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,9.5322762,9.7651987,0,16,1,154.2229,0,2,2,2021,7,0,46,47,1,0,0,34.069523,34.069523,.05,.05,0,0,0,0,0,0,0,0,0,4.5838313,0,51.24,58.84,51.24,58.84,6.666666666666667,1,1,0,0,8,6,5,1,780,126946.82,90359.633,333619.34,294350.41,0,0,6350.0513 +5236,6380,11405,-9,-9,-9,1,0,71,0,2,0,2,2,-9,0,4,0,7.1243482,6.9370289,0,0,-990.99194,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.429492,7.406909,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,467,408303.94,166053.86,179481.94,0,0,-25.661179,1043.3577 +5236,6381,11406,11409,11405,-9,1,0,41,0,2,0,1,1,-9,0,3,7.9118543,8.0982065,0,11,3,72.619171,-9,2,-9,2021,18,6,20,0,1,6,0,16.456377,16.456377,.05,.05,0,0,0,0,0,74.5,1,1,0,2.4393699,0,48.45,57.49,42.89,62.6,8.333333333333334,1,1,0,0,12,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5236,6381,11407,-9,11406,11409,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.14807,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5236,6381,11408,-9,11406,11409,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.5449,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5236,6381,11409,11406,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,9.3055382,9.4109421,0,11,-3,-115.68078,-9,-9,-9,2021,12,2,37,0,1,2,0,27.928495,27.928495,.05,.05,0,0,0,0,0,0,1,1,0,2.8381243,0,42.89,62.6,48.45,57.49,6.666666666666667,1,1,0,0,14,9,5,1,830.5,308281.16,332777.84,313953.63,185059.06,0,9857.8936,5218.4888 +5237,6382,11410,11411,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5358591,8.3327713,0,32,2,-16.252407,0,2,2,2021,10,0,42,38,1,0,0,10.918989,10.918989,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,50.66,47.59,8.333333333333334,4,2,0,0,9,4,4,1,952,440533.84,143776.88,166610.88,0,14605.777,0,2337.821 +5237,6382,11411,11410,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.1838951,7.0327673,0,32,-2,-62.792042,0,3,2,2021,14,2,20,20,1,2,0,8.3588734,8.3588734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.66,47.59,60.3,46.58,10,1,1,0,0,9,4,4,1,952,440533.84,143776.88,166610.88,0,14605.777,0,2337.821 +5237,6383,11412,-9,11411,11410,1,0,26,0,0,0,2,2,-9,0,3,8.1434069,7.7692375,0,0,0,-930.12598,0,2,2,2021,12,0,44,40,1,0,1,6.8576083,6.8576083,0,0,0,0,0,0,0,0,0,0,0,0,0,38.8,60.42,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,454,-41012.422,33803.16,84019.945,50627.91,0,-222.04384,451.19742 +5238,6384,11413,11414,-9,-9,1,0,69,1,3,0,2,2,-9,0,3,0,5.5517216,5.2500472,12,-2,93.653008,0,3,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2926455,5.4830461,31.25,53.29,47.15,56.66,3.333333333333333,1,1,0,0,8,12,3,1,1214.5,2544881.5,881552.38,273396.25,0,0,0,3771.1895 +5238,6384,11414,11413,-9,-9,1,1,71,1,3,0,1,1,-9,0,3,0,8.2854099,8.3288021,12,2,-22.944983,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0123472,47.15,56.66,31.25,53.29,5,1,1,0,0,6,12,3,1,1214.5,2544881.5,881552.38,273396.25,0,0,0,3771.1895 +5238,6385,11415,-9,11418,11416,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-901.14502,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11416,11418,-9,-9,1,1,45,1,3,0,1,1,-9,0,3,8.8339291,8.962615,0,12,6,115.84299,-9,-9,-9,2021,9,1,41,0,1,1,0,17.796021,17.796021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,50.93,42.62,6.666666666666667,4,1,0,0,13,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11417,-9,11418,11416,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-901.3418,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11418,11416,11413,11414,1,0,39,1,3,0,1,1,-9,0,3,8.4951,8.5309181,0,12,-6,40.406452,0,2,2,2021,8,0,37,37,1,0,0,17.11845,17.11845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.93,42.62,60.29,52.11,6.666666666666667,1,1,0,0,13,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5238,6385,11419,-9,11418,11416,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.01575,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,925.79999,511421.72,187745.8,427413.56,250945.08,0,0,5639.0645 +5239,6386,11420,11421,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.13732,7.2906866,59,6,-57.45927,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3490167,6.9409423,57.92,51.82,51.42,29.35,8.333333333333334,1,1,0,0,0,4,3,1,943,591159.63,141254.05,152546,0,0,0,2234.2068 +5239,6386,11421,11420,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.1796713,6.9758797,59,-6,137.81517,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,6.2319989,0,1,1,0,2.8657532,6.8543558,51.42,29.35,57.92,51.82,3.333333333333333,1,1,0,0,0,4,3,1,943,591159.63,141254.05,152546,0,0,0,2234.2068 +5240,6387,11422,11423,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.3781796,8.6406069,0,8,0,36.860012,0,-9,-9,2021,12,2,38,38,1,2,0,13.029853,13.029853,.05,.05,0,0,0,0,0,0,0,0,0,7.2624135,0,56.34,29.58,49.04,55.86,8.333333333333334,1,1,0,0,7,10,5,0,447.5,519954.22,126075.54,629001.5,199882.91,25074.262,1272.4948,6298.5068 +5240,6387,11423,11422,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.513443,9.4584227,7.348949,8,0,-23.975937,0,1,2,2021,12,0,8,44,1,0,0,165.24174,165.24174,.05,.05,0,0,0,0,0,0,0,0,0,7.3068604,0,49.04,55.86,56.34,29.58,6.666666666666667,1,1,0,0,13,10,5,0,447.5,519954.22,126075.54,629001.5,199882.91,25074.262,1272.4948,6298.5068 +5241,6388,11424,11425,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8281474,6.5202127,9,9,48.514549,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1448483,6.8905578,45.41,46.4,59.14,52.5,10,1,1,0,0,0,7,3,1,1151,852533,257221.91,401168,0,0,0,1492.4218 +5241,6388,11425,11424,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.8833823,7.224884,0,46,0,48.44701,0,3,3,2021,7,0,24,30,1,0,0,10.843912,10.843912,0,0,0,0,0,0,0,0,1,1,0,1.3492556,0,59.14,52.5,45.41,46.4,8.333333333333334,1,1,0,0,10,7,3,1,1151,852533,257221.91,401168,0,0,0,1492.4218 +5242,6389,11426,11427,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.2381449,8.8475132,0,8,-1,5.9247499,0,3,3,2021,17,5,46,40,1,5,0,28.559551,28.559551,.05,.05,0,0,0,0,0,7,0,0,0,4.2329812,0,50,50,51.24,58.84,6.666666666666667,1,1,0,0,9,13,5,1,1703,1989670.8,1326930.5,295210.06,51768.445,0,0,6770.1987 +5242,6389,11427,11426,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.2808905,8.914731,0,8,1,57.18388,0,-9,-9,2021,12,2,48,48,1,2,0,22.741459,22.741459,.05,.05,0,0,0,0,0,7,0,0,0,5.2654443,0,51.24,58.84,50,50,8.333333333333334,1,1,0,0,10,13,5,1,1703,1989670.8,1326930.5,295210.06,51768.445,0,0,6770.1987 +5242,6390,11428,-9,11427,11426,1,0,19,0,0,0,2,2,1,0,4,4.7647581,5.0380516,0,0,0,-983.69147,-9,1,1,2021,20,9,5,0,1,9,1,3.4592884,3.4592884,0,0,0,0,0,0,0,0,0,0,0,.17150581,0,39.52,58.98,-9,-9,10,1,1,0,0,2,13,2,1,263,-157666.55,0,0,0,61.532066,0,-481.71994 +5243,6391,11429,11430,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.3036242,8.5886326,0,34,0,57.761642,0,1,2,2021,10,0,45,40,1,0,0,12.718352,12.718352,0,0,.05,0,0,0,0,0,0,0,0,6.3754287,0,56.57,57.78,52.97,51.29,8.333333333333334,1,1,0,0,8,6,4,1,793,234214.72,143334.33,183303.72,0,0,0,3134.9028 +5243,6391,11430,11429,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.0568886,7.3003912,37,0,-7.999414,0,2,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1700997,6.9108057,52.97,51.29,56.57,57.78,8.333333333333334,1,1,0,0,7,6,4,1,793,234214.72,143334.33,183303.72,0,0,0,3134.9028 +5243,6392,11431,-9,11430,11429,1,0,23,0,0,0,1,1,1,0,4,7.8496256,7.5175433,0,0,0,-1081.8961,-9,1,1,2021,11,0,37,0,1,0,1,7.298295,7.298295,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,0,0,6,6,3,1,289,120205.58,0,0,0,21375.988,0,737.9873 +5244,6393,11432,11433,-9,-9,1,0,70,0,1,0,3,3,-9,0,3,0,0,0,27,14,-6.5121408,-9,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.7600229,0,41.85,37.29,53.49,14.07,0,1,1,0,0,0,11,3,1,573.5,51853.961,5821.5259,138349.09,82003.578,0,483.71378,2266.2153 +5244,6393,11433,11432,-9,-9,1,1,56,0,1,0,2,2,-9,1,1,7.6878533,7.7864289,0,27,-14,.30153731,-9,2,2,2021,11,1,19,0,1,1,0,16.030458,16.030458,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.49,14.07,41.85,37.29,5,1,1,0,0,10,11,3,1,573.5,51853.961,5821.5259,138349.09,82003.578,0,483.71378,2266.2153 +5244,6394,11434,-9,11432,11433,1,0,32,0,1,0,2,2,-9,1,3,0,6.0287886,5.8641496,0,0,-948.78876,-9,3,2,2021,29,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,120,1,1,0,5.5898724,0,9.800000000000001,53.67,-9,-9,0,1,1,0,0,7,11,2,1,415,65069.258,-49653.375,0,0,11666.806,0,1830.6199 +5245,6395,11435,11436,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,4.9231868,4.7068386,56,5,-36.942482,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8806374,4.8317003,54.55,49.1,60.3,43.72,8.333333333333334,1,1,0,0,9,5,2,1,224.5,104144.69,103827.13,0,0,0,0,1947.5652 +5245,6395,11436,11435,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.4858642,6.1949196,56,-5,-70.113617,0,-9,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6472831,6.6008668,60.3,43.72,54.55,49.1,8.333333333333334,1,1,0,0,0,5,2,1,224.5,104144.69,103827.13,0,0,0,0,1947.5652 +5246,6396,11437,-9,11438,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.0651,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,500,239166.59,225191.77,0,0,6430.9111,0,3058.0693 +5246,6396,11438,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.5240669,8.7396221,6.332612,0,0,-1014.566,0,2,3,2021,8,0,38,38,1,0,0,19.95059,19.95059,.05,.05,0,0,0,0,0,0,1,1,0,6.1898642,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,500,239166.59,225191.77,0,0,6430.9111,0,3058.0693 +5247,6397,11439,11440,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,0,0,2,-1,-49.971085,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,42.95,36.08,46.55,47.77,6.666666666666667,4,2,1,0,5,4,3,1,699,865520.63,558143.81,201856.08,0,0,0,1365.4846 +5247,6397,11440,11439,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,8.0117922,7.843143,2,1,52.57885,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4707088,8.0370188,46.55,47.77,42.95,36.08,6.666666666666667,1,1,0,0,1,4,3,1,699,865520.63,558143.81,201856.08,0,0,0,1365.4846 +5248,6398,11441,11442,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.3786621,7.3334446,0,8,0,28.97493,0,-9,2,2021,14,3,15,15,1,3,0,10.829691,10.829691,0,0,0,0,0,0,0,2,0,0,0,.2345697,0,32.92,58.01,54.1,59.11,8.333333333333334,1,1,0,0,8,12,4,1,627.5,1340233.5,1193712.3,103290.82,44675.492,0,0,2193.895 +5248,6398,11442,11441,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.4316645,8.6836367,0,8,0,116.84972,0,2,2,2021,11,0,37,37,1,0,0,14.869115,14.869115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,32.92,58.01,5,1,1,0,0,8,12,4,1,627.5,1340233.5,1193712.3,103290.82,44675.492,0,0,2193.895 +5249,6399,11443,-9,11446,11444,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.0555,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11444,11446,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.6119432,9.5066814,0,18,0,64.886467,0,2,2,2021,15,3,50,50,1,3,0,34.740723,34.740723,.05,.05,0,0,0,0,0,0,0,0,0,5.8004236,0,53.96,50.73,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11445,-9,11446,11444,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.772,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11446,11444,-9,-9,1,0,42,0,3,0,1,1,-9,0,5,8.9362936,9.1783886,0,18,0,-44.149609,0,2,2,2021,6,0,48,62,1,0,0,16.323311,16.323311,0,0,0,0,0,0,0,0,0,0,0,3.6028535,0,57.06,57.76,53.96,50.73,8.333333333333334,1,1,0,0,7,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5249,6399,11447,-9,11446,11444,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.8663,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,1060.2,889386,241328.02,634576.38,173087.53,0,0,6842.7676 +5250,6400,11448,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.4204493,8.751708,0,0,0,-939.60309,0,2,2,2021,13,1,36,-9,1,1,0,17.951097,17.951097,.05,.05,0,0,0,0,0,0,0,0,0,3.9683149,0,42.73,54.46,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,89,-67929.914,38206.414,0,0,0,0,2006.1547 +5251,6401,11449,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,7.9113522,8.0469475,0,0,0,-1042.3964,0,1,1,2021,12,0,50,36,1,0,0,9.215929,9.215929,.05,.05,0,0,0,0,0,0,0,0,0,1.6130103,0,40.72,54.38,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,2044,-40293.766,-42194.691,148017.56,94522.867,0,0,2531.0288 +5252,6402,11450,11451,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,5.9593334,6.3775139,3,5,167.80975,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.0981216,57.16,56.15,34.92,16.66,8.333333333333334,1,1,0,0,3,1,2,1,252,239283.73,77572.992,135527.33,0,0,0,-36.404221 +5252,6402,11451,11450,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,5.5518513,5.3192987,3,-5,-35.76553,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7985702,34.92,16.66,57.16,56.15,8.333333333333334,1,1,0,0,0,1,2,1,252,239283.73,77572.992,135527.33,0,0,0,-36.404221 +5253,6403,11452,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1079.2483,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,2,1,1,327,-71622.688,0,0,0,0,0,1151.0828 +5254,6404,11453,11454,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.9060078,8.8301134,0,33,3,25.81098,0,2,3,2021,7,0,50,55,1,0,0,18.482046,18.482046,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,53,6.666666666666667,1,1,0,0,7,12,5,1,459.5,451929.63,254810.72,243107.8,162205.47,0,0,3601.9001 +5254,6404,11454,11453,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0630441,6.9138179,0,33,-3,58.39394,0,3,3,2021,10,0,10,16,1,1,0,18.623272,18.623272,0,0,0,0,0,0,0,0,0,0,0,2.9044819,0,52,53,57.06,57.76,8,1,1,0,0,1,12,5,1,459.5,451929.63,254810.72,243107.8,162205.47,0,0,3601.9001 +5255,6405,11455,-9,11456,11458,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.40979,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5255,6405,11456,11458,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.9110146,9.1317482,0,19,-1,-53.113136,0,2,2,2021,9,1,83,42,1,1,0,12.897811,12.897811,0,0,0,0,0,0,0,0,0,0,0,3.5554521,0,51.83,57.2,27.32,55.13,8.333333333333334,1,1,0,0,15,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5255,6405,11457,-9,11456,11458,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-844.66711,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5255,6405,11458,11456,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,9.0939264,9.4699154,0,19,1,-47.733715,0,2,1,2021,18,6,60,60,1,6,0,14.144541,14.144541,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.32,55.13,51.83,57.2,8.333333333333334,1,1,0,0,15,6,5,1,584.5,972672.31,735210.38,481420.44,342057.44,17050.746,0,5440.3818 +5256,6406,11459,11460,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,0,0,0,21,-5,-70.372978,0,2,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.4695754,0,60.02,56.42,57.06,57.76,10,1,1,0,0,4,9,5,1,378.5,1424829.5,156393.84,1093776.3,189865.02,0,0,16022.633 +5256,6406,11460,11459,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,9.5216541,9.7230673,0,21,5,22.72261,0,2,2,2021,7,0,50,60,1,0,0,40.328625,40.328625,0,0,0,0,0,0,0,0,0,0,0,9.7444477,0,57.06,57.76,60.02,56.42,10,1,1,0,0,9,9,5,1,378.5,1424829.5,156393.84,1093776.3,189865.02,0,0,16022.633 +5257,6407,11461,11462,-9,-9,1,0,67,0,0,0,3,3,-9,1,1,0,0,0,42,-1,-45.138054,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,1,0,33.397354,0,0,1,1,0,0,0,34.6,17,35.19,35.48,1.666666666666667,1,1,0,0,0,2,3,1,1289,244636.94,369007.75,0,0,0,1502.5615,3373.9893 +5257,6407,11462,11461,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.4104004,8.0496454,7.2104883,42,1,135.56612,0,3,3,2021,14,2,24,24,1,2,0,8.8919077,8.8919077,.05,.05,0,0,0,0,0,7,1,1,0,4.2656608,7.4004107,35.19,35.48,34.6,17,6.666666666666667,1,1,0,0,14,2,3,1,1289,244636.94,369007.75,0,0,0,1502.5615,3373.9893 +5258,6408,11463,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3651233,7.7186742,0,0,-1070.1455,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4645019,7.5930524,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,2564,476315.97,196011.98,81499.531,0,0,0,1313.52 +5259,6409,11464,-9,11465,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1023.7223,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5259,6409,11465,-9,-9,-9,1,0,40,0,4,0,2,2,-9,1,1,0,0,0,0,0,-1070.3667,0,2,-9,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.25,20.77,-9,-9,0,1,1,0,1,3,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5259,6409,11466,-9,11465,-9,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.3593,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5259,6409,11467,-9,11465,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1008.876,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,1064.25,17314.881,0,0,0,1778.5084,0,4161.1733 +5260,6410,11468,11470,-9,-9,1,1,37,0,1,0,2,2,-9,0,4,8.2682142,8.134325,0,7,0,249.03804,0,-9,-9,2021,9,0,37,38,1,0,0,9.4713411,9.4713411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,1,5,1,469.33334,160250.81,64084.082,242657.02,124016.24,17152.832,0,3947.6499 +5260,6410,11469,-9,11470,11468,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.4141,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,469.33334,160250.81,64084.082,242657.02,124016.24,17152.832,0,3947.6499 +5260,6410,11470,11468,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.0576468,9.160964,0,7,0,-31.681162,0,2,2,2021,5,0,40,30,1,0,0,22.250877,22.250877,.05,.05,0,0,0,0,0,0,1,1,0,.98853397,0,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,9,1,5,1,469.33334,160250.81,64084.082,242657.02,124016.24,17152.832,0,3947.6499 +5261,6411,11471,11472,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,7.7768831,8.0679483,0,27,2,-89.882469,0,2,2,2021,6,0,17,15,1,0,0,17.318766,17.318766,0,0,0,0,0,0,0,0,0,0,0,3.7854681,0,57.06,57.76,58.15,52.91,8.333333333333334,1,1,0,0,9,8,5,1,511.5,1721713,0,1604275.5,35716.57,0,0,5637.0068 +5261,6411,11472,11471,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.5898533,9.3098001,0,6,-2,-32.736305,0,2,3,2021,6,0,43,44,1,0,0,30.509172,30.509172,0,0,0,0,0,0,0,0,0,0,0,5.18926,0,58.15,52.91,57.06,57.76,10,1,1,0,0,9,8,5,1,511.5,1721713,0,1604275.5,35716.57,0,0,5637.0068 +5261,6412,11473,-9,11471,11472,1,1,20,0,0,0,2,2,0,0,5,0,0,0,0,0,-1101.0334,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,.18835515,0,0,0,0,1.6389612,0,49.34,58.54,-9,-9,8.333333333333334,1,1,0,0,2,8,1,1,740,-157189.78,0,0,0,31947.949,0,181.49997 +5262,6413,11474,-9,11475,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.79657,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,0,645.5,38687.945,-15404.535,48469.762,15494.15,0,618.68634,2810.6626 +5262,6413,11475,-9,-9,-9,1,0,42,0,1,0,1,1,1,0,5,8.4857836,8.717989,0,0,0,-883.52924,-9,3,2,2021,5,1,48,0,1,1,0,11.752276,11.752276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,6,8,4,0,645.5,38687.945,-15404.535,48469.762,15494.15,0,618.68634,2810.6626 +5263,6414,11476,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.1759434,7.9600658,0,0,0,-1092.0225,0,2,2,2021,9,0,38,38,1,0,0,10.684298,10.684298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.77,33.6,-9,-9,6.666666666666667,1,1,0,0,8,5,3,0,317.5,-5920.8594,54747.5,0,0,0,758.09473,1822.501 +5263,6414,11477,-9,11476,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-863.60266,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,0,317.5,-5920.8594,54747.5,0,0,0,758.09473,1822.501 +5263,6415,11478,-9,11476,-9,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.8161,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,10,1,1,0,0,1,5,1,0,474,20608.598,0,0,0,0,1493.7118,247.77844 +5264,6416,11479,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.8103218,8.1740465,0,9,2,113.29665,0,1,2,2021,9,2,43,45,1,2,0,16.971798,16.971798,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,56.94,49.53,6.666666666666667,1,1,0,0,8,2,5,1,186,-6837.5679,48720.238,181009.5,77689.688,0,0,2010.2767 +5264,6417,11480,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.181757,8.3184595,0,9,-2,-132.85492,0,-9,-9,2021,9,1,39,40,1,1,0,14.16283,14.16283,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,38.51,59.43,8.333333333333334,1,1,0,0,7,2,5,1,649,-66608.875,41203.961,-8744.0488,53600.523,3773.2263,947.6543,1310.2236 +5265,6418,11481,11482,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,7.7728376,7.7924819,21,-5,119.77145,0,2,2,2021,29,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0244079,7.8111339,27.74,32.3,42.86,24.11,3.333333333333333,1,1,0,0,0,10,4,1,1079.5,1392396.3,803173.19,330383.69,0,17249.16,7532.1426,3942.7268 +5265,6418,11482,11481,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.7748857,7.0846286,20,5,29.485161,0,2,2,2021,16,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8399267,7.3641944,42.86,24.11,27.74,32.3,6.666666666666667,4,2,0,0,0,10,4,1,1079.5,1392396.3,803173.19,330383.69,0,17249.16,7532.1426,3942.7268 +5266,6419,11483,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1037.9103,0,-9,-9,2021,30,12,0,50,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.3,52.73,-9,-9,1.666666666666667,1,1,1,1,6,11,1,1,947,115127.48,0,0,0,0,0,331.17267 +5267,6420,11484,11486,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,5.3558898,5.2415357,0,21,10,5.0201612,0,2,2,2021,9,0,40,24,1,1,0,.53654647,.53654647,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,1,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11485,-9,11486,11484,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.4807,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11486,11484,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,8,-10,-91.837982,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11487,-9,11486,11484,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.074,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6420,11488,-9,11486,11484,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-986.5517,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,580.40002,12941.194,0,0,0,0,418.95364,1415.2813 +5267,6421,11489,-9,11486,11484,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-930.31299,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,1,8,2,0,431,0,0,0,0,0,0,136.4241 +5268,6422,11490,11491,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.9371433,6.1663694,52,0,-3.1186259,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,1.5186898,0,2,1,1,0,6.0950322,5.3957462,57.9,22.03,56.11,44.4,6.666666666666667,1,1,0,0,5,7,2,1,1184,374345.25,28105.438,314184.44,0,0,0,1492.2024 +5268,6422,11491,11490,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.5423074,4.7295303,51,0,-28.672232,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7244453,4.9588275,56.11,44.4,57.9,22.03,5,1,1,0,0,4,7,2,1,1184,374345.25,28105.438,314184.44,0,0,0,1492.2024 +5268,6423,11492,-9,11491,11490,1,1,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-985.83929,-9,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,28,-9,-9,1.666666666666667,1,1,0,1,0,7,2,1,725,462178.59,172328.97,0,0,0,0,719.75568 +5269,6424,11493,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.92873,8.6528463,7.3848977,0,0,-1120.7975,0,3,3,2021,16,4,40,38,1,4,0,6.8767843,6.8767843,.05,.05,0,0,0,0,0,0,0,0,0,.90244502,7.7197294,34.11,58.61,-9,-9,3.333333333333333,1,1,0,0,10,13,4,1,1616,237647.95,205723.92,209935.73,0,0,630.42328,1619.2982 +5269,6425,11494,-9,11493,-9,1,1,25,0,0,0,1,1,1,0,4,8.0485859,7.9355202,0,0,0,-917.19666,-9,2,-9,2021,13,1,37,0,1,1,1,10.266988,10.266988,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,51.79,-9,-9,6.666666666666667,1,1,0,0,9,13,4,1,1167,-137063.94,47942.543,0,0,0,-965.79926,2126.4099 +5270,6426,11495,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.2386351,8.2850933,0,0,0,-1030.3215,0,-9,-9,2021,12,0,21,21,1,0,0,20.423811,20.423811,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.2,64.19,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,2035,80781.766,-2060.7024,0,0,0,0,1907.9545 +5271,6427,11496,11497,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,5.2638302,5.5125327,8,2,-25.157486,0,2,2,2021,8,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6129918,0,55.36,51.57,60.29,52.11,8.333333333333334,1,1,0,0,13,4,2,1,675.5,109635.39,-22047.406,0,0,0,0,263.96365 +5271,6427,11497,11496,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,8,-2,119.35232,0,2,2,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1711903,0,60.29,52.11,55.36,51.57,8.333333333333334,1,1,0,0,13,4,2,1,675.5,109635.39,-22047.406,0,0,0,0,263.96365 +5272,6428,11498,-9,11499,11500,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.6968,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5272,6428,11499,11500,-9,-9,1,0,25,1,2,0,2,2,-9,0,3,0,0,0,3,-2,12.041434,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.64,41.62,33.43,59.21,10,1,1,0,0,0,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5272,6428,11500,11499,-9,-9,1,1,27,1,2,0,2,2,-9,0,3,7.8758507,8.0347919,0,3,2,-77.185707,0,-9,-9,2021,12,0,38,15,1,0,0,7.0656586,7.0656586,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,47.64,41.62,8.333333333333334,1,1,0,0,1,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5272,6428,11501,-9,11499,11500,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7771,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,906.75,24484.043,0,0,0,0,-68.776588,2211.5313 +5273,6429,11502,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.8991013,7.0094142,0,0,-1014.3359,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6612453,48.69,23.44,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,722,579060.81,294077.91,48056.945,0,0,0,1520.8844 +5274,6430,11503,-9,-9,-9,1,1,23,0,0,0,2,2,0,0,2,0,0,0,0,0,-921.51678,-9,1,1,2021,24,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.84,55.7,-9,-9,3.333333333333333,1,1,0,0,2,9,1,0,219,45827.613,0,0,0,0,0,0 +5275,6431,11504,11505,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.6358099,7.7566419,26,-16,47.590439,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4790635,7.9190063,54.96,53.17,54.78,34.44,8.333333333333334,1,1,0,0,6,7,4,1,529.5,2210309.5,815171.19,610637.94,0,0,0,3551.3677 +5275,6431,11505,11504,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,8.0108185,8.2294216,23,16,19.378517,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7650328,7.8879724,54.78,34.44,54.96,53.17,8.333333333333334,1,1,0,0,0,7,4,1,529.5,2210309.5,815171.19,610637.94,0,0,0,3551.3677 +5276,6432,11506,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.9534788,7.7881227,0,0,-971.22626,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.7089896,0,0,1,1,0,7.668139,7.9121709,55.6,39.56,-9,-9,10,1,1,0,0,1,2,4,1,331,684547.19,353362.97,282381,0,0,0,2662.4014 +5276,6433,11507,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.892498,8.0465679,0,0,0,-975.33112,0,-9,-9,2021,12,2,30,34,1,2,0,9.7968702,9.7968702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,9,2,3,1,99,-146934.13,-53684.109,0,0,0,0,1414.8395 +5277,6434,11508,11509,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,52,7,-72.016899,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,75.530548,0,0,1,1,0,1.6397713,0,54,46,53.95,50.89,7,1,1,0,0,0,10,2,1,1034.5,245092.06,35519.355,185271.03,0,0,0,2102.8455 +5277,6434,11509,11508,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,4.3935394,4.4565325,52,-7,22.047394,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1297231,4.2403326,53.95,50.89,54,46,6.666666666666667,1,1,0,0,0,10,2,1,1034.5,245092.06,35519.355,185271.03,0,0,0,2102.8455 +5278,6435,11510,11511,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.9737802,7.9743681,46,3,-40.58757,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3596687,8.24366,51.77,58.57,49.44,56.93,0,1,1,0,0,4,13,3,1,1355,1264578.9,427737.91,242777.16,0,0,0,2512.5825 +5278,6435,11511,11510,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,46,-3,-53.038513,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.44,56.93,51.77,58.57,8.333333333333334,1,1,0,0,0,13,3,1,1355,1264578.9,427737.91,242777.16,0,0,0,2512.5825 +5279,6436,11512,-9,11516,11513,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.09308,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11513,11516,-9,-9,1,1,41,1,3,0,3,3,-9,0,4,9.2833338,9.3311453,0,7,3,28.283197,0,-9,-9,2021,9,0,40,-9,1,1,0,25.50565,25.50565,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,56,33.25,57.5,8,1,1,0,0,1,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11514,-9,11516,11513,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-955.48016,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11515,-9,11516,11513,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.3801,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5279,6436,11516,11513,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,0,0,0,7,-3,-28.96843,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,51,56,6.666666666666667,1,1,0,0,0,12,4,1,1302.4,921365.69,592180.81,255769.23,10346.547,0,0,3329.4385 +5280,6437,11517,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,8.1620274,8.4249153,0,0,0,-1093.8068,0,3,2,2021,9,0,26,35,1,0,0,19.332958,19.332958,0,0,.05,0,0,0,0,0,1,1,0,2.8296533,0,58.3,34.18,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,2042,597192.5,519395.44,212436.89,252761.52,1074.743,0,1387.5612 +5280,6438,11518,-9,-9,11517,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.66565,0,-9,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,1,0,0,11,1,1,386,0,0,0,0,0,0,301.22571 +5280,6439,11519,-9,-9,11517,1,0,20,0,0,0,2,2,-9,0,4,6.799005,6.6499867,0,0,0,-1000.6949,-9,-9,2,2021,16,6,20,0,1,6,0,4.6530986,4.6530986,0,0,0,0,0,0,0,0,1,1,0,.57039917,0,41.28,60.79,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,1059,92768.07,0,0,0,0,0,1231.7683 +5281,6440,11520,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.2907295,8.3619003,0,17,1,176.56171,0,3,3,2021,7,0,41,38,1,0,0,11.107189,11.107189,.05,.05,0,0,0,0,0,0,0,0,0,4.3244414,0,59.43,58.05,43.59,59.64,10,1,1,0,0,11,7,5,1,258,1093332.1,596658.44,353652.06,0,0,0,1372.0249 +5281,6441,11521,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1224947,8.2001486,0,16,-1,30.593504,0,3,3,2021,7,0,11,11,1,0,0,32.598602,32.598602,.05,.05,0,0,0,0,0,0,0,0,0,3.8074319,0,43.59,59.64,59.43,58.05,8.333333333333334,1,1,0,0,11,7,5,1,404,-133656,108467.48,0,0,249.36247,0,1724.4697 +5282,6442,11522,11523,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.4588041,5.8396196,6,2,-95.045219,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,15.954696,0,0,1,1,0,5.9780388,5.8058524,44.11,18.02,53.46,39.14,3.333333333333333,1,1,0,0,0,11,2,1,519,557169.38,271725.56,194221.81,0,0,0,1021.6086 +5282,6442,11523,11522,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,-2,49.543724,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53.46,39.14,44.11,18.02,1.666666666666667,1,1,0,0,0,11,2,1,519,557169.38,271725.56,194221.81,0,0,0,1021.6086 +5283,6443,11524,11525,-9,-9,1,0,75,0,0,0,1,1,-9,0,5,0,0,0,55,-5,-144.21724,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.38,58.02,43.5,52.88,8.333333333333334,1,1,0,0,0,9,2,1,421,291315.94,124352.45,293702.03,0,0,0,1396.6552 +5283,6443,11525,11524,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.2394438,7.5032325,55,5,70.609299,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1783385,43.5,52.88,50.38,58.02,8.333333333333334,1,1,0,0,0,9,2,1,421,291315.94,124352.45,293702.03,0,0,0,1396.6552 +5284,6444,11526,11527,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.6242609,7.2801943,0,7,-10,43.665722,0,3,3,2021,9,1,3,10,1,1,0,39.305683,39.305683,0,0,0,0,0,0,0,0,0,0,0,6.1539707,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,0,1235,545478.31,295901.63,289409.31,97461.016,0,0,7911.6631 +5284,6444,11527,11526,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.6092405,9.6351757,0,7,10,184.82448,0,3,3,2021,3,0,62,50,1,0,0,25.634838,25.634838,0,0,0,0,0,0,0,0,0,0,0,5.1727557,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,7,10,5,0,1235,545478.31,295901.63,289409.31,97461.016,0,0,7911.6631 +5285,6445,11528,-9,11529,11530,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5851,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5285,6445,11529,11530,-9,-9,1,0,46,0,2,0,2,2,-9,1,4,8.2470121,8.1237268,0,18,-4,54.661156,0,2,2,2021,10,1,30,32,1,1,0,18.783062,18.783062,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,38.94,60.48,8.333333333333334,1,1,0,0,12,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5285,6445,11530,11529,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.4668598,8.8776512,0,18,4,-124.93005,0,2,2,2021,6,0,60,54,1,0,0,11.041658,11.041658,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.94,60.48,57.16,56.15,6.666666666666667,1,1,0,0,12,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5285,6445,11531,-9,11529,11530,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9562,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,891.5,435004.5,250707.16,132456.78,0,0,633.86084,4162.2607 +5286,6446,11532,11533,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.5644732,8.6344566,0,3,-1,114.87836,0,-9,-9,2021,9,0,24,24,1,0,0,28.875072,28.875072,.05,.05,0,0,0,0,0,0,1,1,0,2.6497531,0,49.63,54.22,53.14,51.28,5,1,1,0,0,3,4,5,1,1401,1183747.9,1005163.8,148981.44,84612.156,967.00983,6640.585,3010.6248 +5286,6446,11533,11532,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.1983185,8.2893581,0,3,1,19.627665,0,3,2,2021,7,0,42,43,1,0,0,9.4011211,9.4011211,.05,.05,0,0,0,0,0,0,1,1,0,4.3595495,0,53.14,51.28,49.63,54.22,6.666666666666667,1,1,0,0,11,4,5,1,1401,1183747.9,1005163.8,148981.44,84612.156,967.00983,6640.585,3010.6248 +5286,6446,11534,-9,11533,11532,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.7289,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,5,1,1401,1183747.9,1005163.8,148981.44,84612.156,967.00983,6640.585,3010.6248 +5287,6447,11535,11538,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,8.4863653,8.4101038,0,6,-4,71.433075,0,2,2,2021,7,0,41,40,1,0,0,13.991375,13.991375,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,67.93000000000001,17.44,8.333333333333334,1,1,0,0,8,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5287,6447,11536,-9,11535,11538,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1020.1593,-9,2,1,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5145843,0,57.06,57.76,-9,-9,10,4,2,0,0,3,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5287,6447,11537,-9,11535,11538,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.702,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5287,6447,11538,11535,-9,-9,1,1,54,0,1,0,1,1,-9,0,2,8.0447426,8.0504789,0,26,4,2.8268361,0,-9,-9,2021,11,0,40,40,1,0,0,8.7635069,8.7635069,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,67.93000000000001,17.44,57.06,57.76,6.666666666666667,1,1,0,0,4,8,4,0,470,958329.06,198818.27,755133.75,0,7398.915,0,2930.5947 +5288,6448,11539,-9,11542,11540,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6147,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5288,6448,11540,11542,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.1307859,8.3354387,0,18,1,-14.803164,0,2,2,2021,12,0,40,40,1,0,0,11.196626,11.196626,0,0,0,0,0,0,0,0,1,1,0,0,0,46.73,54.33,51.24,58.84,6.666666666666667,1,1,0,0,14,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5288,6448,11541,-9,11542,11540,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.5656,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5288,6448,11542,11540,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.2920313,8.5288305,0,18,-1,69.41835,0,2,3,2021,12,0,38,38,1,0,0,14.415751,14.415751,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.73,54.33,8.333333333333334,1,1,0,0,11,6,4,1,631.25,268259.91,28220.703,247645.59,0,0,110.06219,3260.3923 +5289,6449,11543,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.8004694,7.4862385,0,0,0,-932.97797,0,-9,3,2021,13,3,30,48,1,3,0,8.0994234,8.0994234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.46,48.95,-9,-9,6.666666666666667,1,1,0,0,14,7,3,1,152,-66891.023,-126242.77,0,0,0,0,1219.425 +5290,6450,11544,-9,-9,-9,1,1,44,1,1,0,2,2,-9,0,2,7.6164713,7.5433922,0,0,0,-1038.045,0,-9,-9,2021,11,0,36,35,1,0,0,7.820529,7.820529,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.79,46.83,-9,-9,1.666666666666667,1,1,0,1,2,11,3,0,900,110733.48,25907.375,0,0,3434.6213,2697.6118,878.03717 +5290,6451,11545,-9,11546,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-837.00513,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,551.5,-31974.73,39631.332,0,0,7433.1152,0,1541.3618 +5290,6451,11546,-9,-9,11544,1,0,26,1,1,0,2,2,-9,0,4,7.9192033,7.2956662,0,0,0,-977.82208,0,-9,2,2021,2,0,31,40,1,0,1,10.49186,10.49186,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,6,11,3,0,551.5,-31974.73,39631.332,0,0,7433.1152,0,1541.3618 +5291,6452,11547,-9,-9,-9,1,1,39,0,0,0,1,1,-9,1,4,0,0,0,0,0,-908.55713,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.6259284,0,49.41,58.28,-9,-9,10,1,1,0,0,7,12,1,1,563,-144415.08,-71794.719,0,0,1708.621,37.669861,-759.36865 +5292,6453,11548,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,5.5833254,5.4463906,0,0,-824.61615,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,1.7999501,0,18.277775,0,1,1,0,7.4105768,5.6463599,59.13,28.23,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,101,1071183.9,25409.574,514337.25,0,0,0,1945.1371 +5293,6454,11549,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.9809465,6.7661171,0,0,-1046.1763,0,3,3,2021,22,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8429952,32.87,35.28,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,326,269755.88,199104.53,0,0,0,-197.35385,1001.5414 +5294,6455,11550,-9,11555,11554,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-955.0603,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11551,-9,11555,11554,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-845.86859,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11552,-9,11555,11554,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.5559,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11553,-9,11555,11554,1,1,17,1,3,1,2,0,-9,0,5,0,0,0,0,0,-982.26831,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11554,11555,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,8.5473585,8.0334988,0,11,1,59.536774,-9,2,2,2021,9,0,39,0,1,0,0,10.583726,10.583726,.05,.05,0,0,0,0,0,0,1,1,0,1.6642582,0,54.2,57.49,26.26,59.84,8.333333333333334,1,1,0,0,7,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5294,6455,11555,11554,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,0,0,0,11,-1,38.314487,-9,2,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.26,59.84,54.2,57.49,8.333333333333334,1,1,0,0,0,7,3,0,954.66669,66418.789,29468.904,0,0,0,0,2850.6528 +5295,6456,11556,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1032.8131,-9,2,2,2021,17,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,25,-9,-9,10,1,1,0,0,0,8,1,0,262,114849.2,0,0,0,0,0,1495.84 +5296,6457,11557,11558,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.4052591,8.6348,0,5,1,-69.490738,0,-9,-9,2021,7,1,35,35,1,1,0,15.374824,15.374824,0,0,0,0,0,0,0,0,0,0,0,2.9568524,0,58.55,51.64,53.14,51.28,8.333333333333334,1,1,0,0,5,6,4,1,955,208869.42,7121.916,0,0,24482.918,6237.8955,2144.7563 +5296,6457,11558,11557,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,0,0,0,5,-1,121.73138,0,-9,-9,2021,12,0,0,32,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.799197,0,53.14,51.28,58.55,51.64,8.333333333333334,1,1,1,0,9,6,4,1,955,208869.42,7121.916,0,0,24482.918,6237.8955,2144.7563 +5297,6458,11559,11560,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.6406116,8.594615,0,6,0,3.5492864,0,2,1,2021,8,0,39,39,1,0,0,15.144668,15.144668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52.32,48.93,8.333333333333334,1,1,0,0,8,13,5,1,1889.3334,628579.13,191752.09,536882.5,276370.97,13681.399,6187.4385,4232.6006 +5297,6458,11560,11559,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.3037434,8.6022873,0,6,0,-36.666862,0,-9,-9,2021,14,4,39,39,1,4,0,12.358872,12.358872,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.32,48.93,60.12,54.8,8.333333333333334,1,1,0,0,3,13,5,1,1889.3334,628579.13,191752.09,536882.5,276370.97,13681.399,6187.4385,4232.6006 +5297,6458,11561,-9,11560,11559,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-983.78583,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,5,1,1889.3334,628579.13,191752.09,536882.5,276370.97,13681.399,6187.4385,4232.6006 +5298,6459,11562,11563,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.8600836,8.9103737,0,6,2,-176.11143,0,3,3,2021,3,0,37,37,1,0,0,20.932863,20.932863,0,0,0,0,0,0,0,0,1,1,0,0,0,46.94,59.6,49.86,55.31,8.333333333333334,1,1,0,0,7,13,5,1,428,759996.5,813629.63,0,0,0,0,5045.4912 +5298,6459,11563,11562,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5986099,8.6340837,0,6,-2,39.041019,0,2,2,2021,12,0,37,40,1,0,0,18.39225,18.39225,0,0,.05,0,0,0,0,0,1,1,0,0,0,49.86,55.31,46.94,59.6,8.333333333333334,1,1,0,0,7,13,5,1,428,759996.5,813629.63,0,0,0,0,5045.4912 +5299,6460,11564,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1020.3798,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,47.57,40.57,-9,-9,3.333333333333333,1,1,1,1,0,2,1,0,2751,93734.945,0,0,0,0,0,853.8233 +5300,6461,11565,11566,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.2871914,8.2880325,0,7,4,-23.753277,0,-9,-9,2021,9,0,38,38,1,0,0,12.565409,12.565409,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,62.49,55.09,8.333333333333334,1,1,0,0,8,12,5,1,403,114687.88,117938.41,401369.19,297380.13,8937.9365,0,4455.3491 +5300,6461,11566,11565,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.790926,8.9919872,0,7,-4,2.9448299,0,-9,-9,2021,6,0,37,42,1,0,0,22.72677,22.72677,.05,.05,.05,0,0,0,0,0,0,0,0,7.9641533,0,62.49,55.09,49.29,54.59,10,1,1,0,0,8,12,5,1,403,114687.88,117938.41,401369.19,297380.13,8937.9365,0,4455.3491 +5301,6462,11567,-9,11570,11571,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.1378,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11568,-9,11570,11571,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.1538,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11569,-9,11570,11571,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.64917,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11570,11571,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,0,0,0,16,0,-64.390694,0,3,2,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,55.01,36.8,8,2,3,0,0,3,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5301,6462,11571,11570,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,7.3774223,7.2911057,0,16,0,103.95032,0,2,2,2021,11,1,24,39,1,1,0,7.2376456,7.2376456,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.01,36.8,49,56,5,2,3,0,0,7,1,2,1,756,102784.08,29697.602,113724.08,10460.671,0,0,1361.8098 +5302,6463,11572,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,0,0,0,0,0,-921.66846,0,3,3,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9358234,0,24.07,62.16,-9,-9,3.333333333333333,1,1,1,1,10,12,1,1,5193,0,0,0,0,0,0,51.999649 +5303,6464,11573,-9,-9,-9,1,1,18,0,3,0,3,3,-9,0,5,7.5695968,7.735631,0,0,0,-888.41168,-9,1,2,2021,9,0,43,0,1,1,1,5.7446342,5.7446342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,0,0,1,10,3,0,353,-125505.1,0,0,0,0,0,1270.6157 +5304,6465,11574,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.8061018,8.4844799,0,0,0,-1054.3212,0,2,1,2021,8,0,35,40,1,0,0,19.256039,19.256039,0,0,0,0,0,0,0,0,0,0,0,.57627314,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,897,671679.13,160261.53,397895.31,0,0,0,2956.7607 +5305,6466,11575,-9,11578,11576,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.3782,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5305,6466,11576,11578,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.5094271,8.6878633,0,17,0,-34.148094,0,3,2,2021,9,0,39,39,1,0,0,17.886019,17.886019,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,49.51,46.42,45.08,48.01,6.666666666666667,1,1,0,0,10,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5305,6466,11577,-9,11578,11576,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.7166,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5305,6466,11578,11576,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.1393957,6.9788074,0,15,0,-14.627911,0,3,3,2021,12,1,24,22,1,1,0,6.3178754,6.3178754,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.08,48.01,49.51,46.42,5,1,1,0,0,10,5,4,1,1201,134516.06,118529.08,78032.711,54058.84,0,0,3247.0781 +5306,6467,11579,11580,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,29,1,0,0,2,2,2021,12,2,0,30,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,8,10,1,1,614,-22.59375,-17620.693,0,0,-1052.4941,472.4668,397.76038 +5306,6467,11580,11579,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,0,0,0,27,-1,0,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15137896,0,54.96,53.17,57.33,53.46,8.333333333333334,1,1,0,0,11,10,1,1,614,-22.59375,-17620.693,0,0,-1052.4941,472.4668,397.76038 +5306,6468,11581,-9,11579,11580,1,1,21,0,0,0,2,2,-9,0,3,7.9582844,8.016202,0,0,0,-955.62036,0,2,2,2021,15,3,42,39,1,3,0,8.4197502,8.4197502,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.66,49.1,-9,-9,5,1,1,0,0,2,10,3,1,401,56182.336,-44571.27,0,0,0,0,1639.809 +5306,6469,11582,-9,11579,11580,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-929.9834,-9,2,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,62.19,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1050,183653.53,0,0,0,0,0,0 +5307,6470,11583,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.2312412,8.4160843,0,0,0,-865.59558,0,3,3,2021,14,2,58,56,1,2,0,9.8533545,9.8533545,.05,.05,.05,0,0,0,0,0,0,0,0,7.6181664,0,46.3,43.84,-9,-9,5,1,1,0,0,14,9,4,1,149,574451.75,250751.8,122880.94,0,0,0,2287.8909 +5308,6471,11584,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,6.3283386,6.7510886,0,0,-865.55243,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3300757,46.35,15.52,-9,-9,0,1,1,0,1,0,1,2,1,257,298495.16,89268.93,151504.83,0,0,0,1107.4987 +5309,6472,11585,11590,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,0,0,0,21,4,-23.846994,0,3,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5850592,0,46,50,52.81,56.94,8.333333333333334,2,3,0,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11586,-9,11585,11590,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1136.7491,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11587,-9,11585,11590,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1121.976,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11588,-9,11585,11590,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.3302,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11589,-9,11585,11590,1,0,17,0,3,1,3,0,0,0,5,0,5.2703648,5.2408571,0,0,-896.58502,-9,1,1,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0640693,0,50.48,56.75,-9,-9,10,2,3,0,0,0,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5309,6472,11590,11585,-9,-9,1,1,40,0,3,0,1,1,-9,0,5,8.7215223,8.7540483,0,21,-4,139.48068,0,3,3,2021,5,0,40,50,1,0,0,22.635771,22.635771,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.81,56.94,46,50,10,2,3,0,0,12,2,3,1,445.5,315450.72,232972.39,171201.94,79468.945,8440.4795,0,3540.1362 +5310,6473,11591,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,4.6426673,4.296978,0,0,-957.90814,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,5.4618025,33.50547,46.85223,0,1,1,0,0,4.2771239,35.71,15.11,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,214,-91518.195,0,44730.754,0,0,0,2268.6575 +5311,6474,11592,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,9.0025473,8.9935884,0,0,0,-877.53986,0,-9,-9,2021,15,4,42,41,1,4,0,18.553286,18.553286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.89,54.92,-9,-9,6.666666666666667,1,1,0,0,7,7,5,0,641,282514.22,-58405.848,296248.44,88472.344,132.13914,0,2820.5356 +5312,6475,11593,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,2,0,7.6406713,7.9459314,0,0,-1018.0873,0,3,3,2021,29,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.2766619,7.4602957,27.12,32.42,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,807,246544.91,-39577.906,0,0,5812.7788,0,1565.9445 +5313,6476,11594,11595,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,3.5802491,3.7864425,48,-1,-3.2788858,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3494925,3.4266698,57.09,46.7,60.62,41.03,10,1,1,0,0,9,4,2,1,869,402349.94,177598.14,181930.14,0,0,0,1505.6533 +5313,6476,11595,11594,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.0020146,5.6854196,49,1,-43.114403,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9857717,5.5961914,60.62,41.03,57.09,46.7,10,1,1,0,0,6,4,2,1,869,402349.94,177598.14,181930.14,0,0,0,1505.6533 +5314,6477,11596,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.7521305,8.2158413,0,0,0,-1040.4138,0,-9,-9,2021,3,0,43,40,1,0,0,7.2376113,7.2376113,0,0,0,0,0,0,0,0,0,0,0,1.160092,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,6,11,3,0,1562,159203.64,0,0,0,0,0,980.5553 +5314,6478,11597,11598,11596,-9,1,0,22,0,0,0,2,2,-9,0,3,8.0228186,7.9335451,0,2,-4,57.823757,-9,2,2,2021,19,5,40,0,1,5,0,7.5260506,7.5260506,0,0,0,0,0,0,0,0,0,0,0,0,0,8.970000000000001,64.92,60.29,52.11,3.333333333333333,1,1,0,0,5,11,4,0,299,-57845.563,140528.52,0,0,2413.1868,0,2731.8816 +5314,6478,11598,11597,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.3221722,8.3769722,0,2,4,-118.03019,-9,-9,-9,2021,6,0,50,0,1,0,0,7.1606045,7.1606045,.05,.05,0,0,0,0,1.2138906,0,0,0,0,0,0,60.29,52.11,8.970000000000001,64.92,10,1,1,0,0,7,11,4,0,299,-57845.563,140528.52,0,0,2413.1868,0,2731.8816 +5315,6479,11599,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.1652293,6.5563412,0,0,-999.53076,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4219655,6.2943468,51,46,-9,-9,8.333333333333334,1,1,0,0,2,9,2,0,820,91303.102,134913.3,0,0,0,-38.898273,983.79993 +5316,6480,11600,11601,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.2814894,7.163692,6,-5,-20.717611,0,3,3,2021,21,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.8128982,7.2470245,54,51,51.83,57.2,3.333333333333333,1,1,0,0,0,11,3,1,240,1004887.9,559441.38,203967.53,0,9559.877,0,2080.8601 +5316,6480,11601,11600,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,6.9052978,6.8007736,6,5,2.3673365,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.9354477,7.0024886,51.83,57.2,54,51,8.333333333333334,1,1,0,0,4,11,3,1,240,1004887.9,559441.38,203967.53,0,9559.877,0,2080.8601 +5317,6481,11602,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.6501265,6.5896187,0,0,-716.37317,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5703239,6.4089699,53.63,51.24,-9,-9,10,1,1,0,0,4,9,2,1,2036,9364.6133,193025.66,0,0,0,0,774.32202 +5318,6482,11603,-9,11605,11604,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-995.17505,-9,1,1,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,6,5,1,626.33331,2897796.5,2397078.5,254400.44,0,0,0,6606.0972 +5318,6482,11604,11605,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.7438307,9.7269421,0,7,-2,41.701015,0,-9,-9,2021,11,2,43,43,1,2,0,43.869957,43.869957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.07,34.85,8.333333333333334,1,1,0,0,2,6,5,1,626.33331,2897796.5,2397078.5,254400.44,0,0,0,6606.0972 +5318,6482,11605,11604,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4361944,8.603898,0,22,2,-8.5207005,0,3,3,2021,23,11,43,43,1,11,0,12.418016,12.418016,.05,.05,0,0,0,0,0,0,0,0,0,1.6979643,0,42.07,34.85,54.2,57.49,5,1,1,0,0,7,6,5,1,626.33331,2897796.5,2397078.5,254400.44,0,0,0,6606.0972 +5318,6483,11606,-9,11605,11604,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-947.34222,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,6,1,1,2336,97749.992,0,0,0,0,0,0 +5319,6484,11607,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-967.73987,0,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,10,4,2,1,0,0,6,1,0,1471,310888.28,0,0,0,0,0,632.12598 +5320,6485,11608,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,6.9563718,6.8721747,0,0,-1095.9714,0,3,3,2021,10,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0690362,6.7133365,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,13,7,2,1,486,809377.31,335231.03,466914.59,0,0,3725.6924,423.599 +5321,6486,11609,-9,-9,-9,1,0,32,0,1,0,2,2,-9,1,5,7.7055812,7.8659911,0,0,0,-929.2511,0,2,2,2021,9,0,40,44,1,0,0,6.0894117,6.0894117,.05,.05,0,0,0,0,0,86,1,1,0,0,0,43.92,62.31,-9,-9,6.666666666666667,1,1,0,0,6,5,3,0,1821,-287627.75,93121.063,0,0,0,2095.8176,2454.2271 +5322,6487,11610,11611,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,0,0,0,5,-10,81.987434,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.263762,0,38.16,28.6,40.55,21,3.333333333333333,1,1,0,0,4,8,2,1,2260.5,335915.41,157575.94,308650.38,0,0,0,1528.5739 +5322,6487,11611,11610,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.3300471,6.6713271,5,10,-93.360695,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,29.107523,0,0,1,1,0,2.2961466,6.232945,40.55,21,38.16,28.6,3.333333333333333,1,1,0,0,5,8,2,1,2260.5,335915.41,157575.94,308650.38,0,0,0,1528.5739 +5323,6488,11612,11613,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.8414989,7.0613756,8,-1,12.20727,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2739112,6.6909146,45.91,59.89,61.27,46.03,10,1,1,0,0,0,6,3,1,464.5,686097.88,404996.75,298303.25,0,0,0,2669.9053 +5323,6488,11613,11612,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,7.3795633,7.2533751,56,1,24.482409,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1966128,6.9795494,61.27,46.03,45.91,59.89,10,1,1,0,0,0,6,3,1,464.5,686097.88,404996.75,298303.25,0,0,0,2669.9053 +5324,6489,11614,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-940.04407,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1028714,0,57.83,14.19,-9,-9,5,1,1,0,0,0,12,2,1,709,-84321.352,0,0,0,0,0,2179.8713 +5325,6490,11615,11616,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,5.498971,5.5366015,7,-5,-25.929956,0,2,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.763432,5.1017504,30.68,20.24,57.16,56.15,0,1,1,0,0,0,10,3,1,591.5,595010.63,345783.88,273544.06,0,0,0,2510.7275 +5325,6490,11616,11615,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,7.0852103,8.119853,7.3122401,7,5,-15.022525,0,3,3,2021,9,1,40,40,1,1,0,4.2069302,4.2069302,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9484372,57.16,56.15,30.68,20.24,8.333333333333334,1,1,0,0,7,10,3,1,591.5,595010.63,345783.88,273544.06,0,0,0,2510.7275 +5325,6491,11617,-9,11615,11616,1,0,31,0,0,0,3,3,-9,0,4,7.6021161,7.548306,0,0,0,-996.35736,0,2,2,2021,11,0,35,37,1,2,1,6.231389,6.231389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,1,10,3,1,267,123166.09,32335.996,0,0,0,0,867.3739 +5326,6492,11618,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.4960442,8.3928833,0,0,0,-981.18256,0,-9,-9,2021,12,0,50,40,1,0,0,8.6665916,8.6665916,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.11,57.99,-9,-9,3.333333333333333,1,1,0,0,7,5,4,0,295,86881.773,47265.906,92785.438,85178.43,0,0,1791.8035 +5327,6493,11619,11620,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,9.1080599,8.935751,0,42,-2,-52.123241,0,2,2,2021,33,12,60,50,1,12,0,14.962122,14.962122,0,0,0,0,0,0,0,2,1,1,0,.82620883,0,21.06,43.26,51.17,49.39,3.333333333333333,1,1,0,0,9,10,5,1,806.5,1764921.3,1163618.5,593779.75,0,0,0,3588.9792 +5327,6493,11620,11619,-9,-9,1,1,60,0,0,0,2,2,-9,1,3,0,7.2186041,7.3857303,9,2,40.732197,0,-9,-9,2021,20,8,0,43,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.6901481,6.8053851,51.17,49.39,21.06,43.26,6.666666666666667,1,1,1,0,8,10,5,1,806.5,1764921.3,1163618.5,593779.75,0,0,0,3588.9792 +5328,6494,11621,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.1208687,8.2399359,0,0,0,-1052.5759,0,-9,1,2021,12,0,20,44,1,2,0,18.798891,18.798891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,7,1,1,0,0,8,4,4,0,1198,235491.98,18994.076,210645.16,0,0,0,1335.2769 +5329,6495,11622,11623,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.5251732,8.4583426,52,7,-26.636417,0,3,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.273077,8.5569429,44.57,46.8,43.49,43.6,8.333333333333334,2,3,0,0,8,4,4,1,587.5,1763543.6,1128773.8,339855.94,0,0,0,3885.4478 +5329,6495,11623,11622,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,8,-7,20.50967,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7518785,0,43.49,43.6,44.57,46.8,8.333333333333334,2,3,0,0,0,4,4,1,587.5,1763543.6,1128773.8,339855.94,0,0,0,3885.4478 +5330,6496,11624,-9,11628,11630,1,0,6,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1101.6738,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11625,-9,11628,11630,1,1,8,2,5,1,3,0,-9,0,4,0,0,0,0,0,-908.75073,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11626,-9,11628,11630,1,0,4,2,5,1,3,0,-9,0,4,0,0,0,0,0,-994.11841,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.402528,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11627,-9,11628,11630,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-980.9267,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11628,11630,-9,-9,1,0,30,2,5,0,2,2,-9,0,4,0,0,0,7,2,-40.449905,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,54.35,55.32,8.333333333333334,1,1,0,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11629,-9,11628,11630,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1015.088,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5330,6496,11630,11628,-9,-9,1,1,28,2,5,0,2,2,-9,0,4,8.1353598,7.9385676,0,7,-2,-93.467812,0,-9,-9,2021,9,0,60,43,1,0,0,5.5212917,5.5212917,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.35,55.32,51.49,57.57,10,1,1,0,0,4,11,2,1,768.42859,-15637.712,2090.5662,0,0,3302.2415,-35.918026,2947.1787 +5331,6497,11631,11632,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,1.673995,1.6439182,44,0,-116.76295,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,2.4059412,1.5927656,55.15,45.23,59.48,33.74,10,1,1,0,0,7,10,3,1,323.5,720614,345694.56,230252.06,0,0,0,3041.1226 +5331,6497,11632,11631,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,8.2422237,8.2903252,5.5315042,44,0,46.671139,0,3,3,2021,11,0,40,38,1,0,0,9.3678265,9.3678265,.05,.05,0,0,0,0,0,0,1,1,0,5.9389544,5.6201005,59.48,33.74,55.15,45.23,10,1,1,0,0,9,10,3,1,323.5,720614,345694.56,230252.06,0,0,0,3041.1226 +5332,6498,11633,11634,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.0626135,9.1224451,0,5,-4,-1.779389,0,3,2,2021,3,0,37,55,1,0,0,25.005915,25.005915,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.16,56.15,10,1,1,0,0,11,13,5,1,1518,1251560.9,896374.38,79118.594,0,0,-79.249222,4427.498 +5332,6498,11634,11633,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.5122566,8.1324129,0,5,4,-37.659348,0,-9,-9,2021,6,0,42,40,1,0,0,11.539313,11.539313,.05,.05,0,0,0,0,0,0,0,0,0,4.5345359,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,11,13,5,1,1518,1251560.9,896374.38,79118.594,0,0,-79.249222,4427.498 +5333,6499,11635,11636,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.2499475,7.1811357,11,2,-44.961948,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.393342,48.28,60.18,57.39,19.57,10,1,1,0,0,0,5,2,1,1064.5,769321.94,382608.13,281367.47,0,0,0,2638.4565 +5333,6499,11636,11635,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,11,-2,23.194664,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,13.983543,0,0,1,1,0,1.5174112,0,57.39,19.57,48.28,60.18,10,1,1,0,0,0,5,2,1,1064.5,769321.94,382608.13,281367.47,0,0,0,2638.4565 +5334,6500,11637,11638,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,0,0,55,3,0,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,4.7645402,0,120,1,1,0,0,0,48.37,49.31,46.79,41.89,10,1,1,0,0,0,2,1,1,292,320273.19,-641.01953,179568.92,0,0,0,500.27319 +5334,6500,11638,11637,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,55,-3,0,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,46.79,41.89,48.37,49.31,10,1,1,0,0,0,2,1,1,292,320273.19,-641.01953,179568.92,0,0,0,500.27319 +5334,6501,11639,-9,11638,11637,1,1,49,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1054.9261,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.65,41.6,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,521,224153.63,0,0,0,0,0,0 +5335,6502,11640,11641,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,7.796752,8.0781345,0,1,-12,-76.389687,-9,-9,-9,2021,10,0,38,0,1,1,0,8.6456766,8.6456766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,51.73,58.82,7,4,2,0,0,1,4,4,1,1216.5,107790.42,28199.02,0,0,0,0,2527.6357 +5335,6502,11641,11640,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.0385208,7.9457049,0,1,12,-55.888054,0,3,-9,2021,3,0,38,38,1,0,0,7.8866372,7.8866372,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,10,1,1,0,0,6,4,4,1,1216.5,107790.42,28199.02,0,0,0,0,2527.6357 +5336,6503,11642,-9,-9,-9,1,0,38,0,1,0,1,1,-9,1,2,8.5279684,8.4196529,6.7157187,0,0,-1070.3025,0,2,3,2021,31,11,16,0,1,11,0,23.309921,23.309921,.05,.05,0,0,0,0,0,74.5,1,1,0,6.8244028,0,23.35,52.12,-9,-9,0,1,1,0,0,12,13,4,1,392.5,-21116.662,-50809.688,0,0,0,772.2757,1787.3481 +5336,6503,11643,-9,11642,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9561,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,392.5,-21116.662,-50809.688,0,0,0,772.2757,1787.3481 +5337,6504,11644,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-881.12567,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8148317,0,64.75,25.37,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,676,619390,0,501186.28,0,0,0,1892.8246 +5338,6505,11645,11646,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.2835031,7.6092377,8,-8,-55.072235,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.814465,7.3253126,51.41,56.15,53.82,13.72,6.666666666666667,1,1,0,0,2,2,2,1,549,745991.25,395164.31,259742.02,0,0,0,2081.4561 +5338,6505,11646,11645,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,8,8,-4.6627488,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,126.91302,0,0,1,1,0,0,0,53.82,13.72,51.41,56.15,8.333333333333334,1,1,0,0,0,2,2,1,549,745991.25,395164.31,259742.02,0,0,0,2081.4561 +5339,6506,11647,11648,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2018013,8.2418251,0,7,1,14.602202,0,-9,-9,2021,10,0,37,37,1,1,0,13.150326,13.150326,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,55.79,52.62,7,1,1,0,0,1,6,4,1,959,36628.25,74931.188,76438.875,41289.07,4055.0942,4829.6797,3000.2993 +5339,6506,11648,11647,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.0322113,7.1817808,0,32,-1,-15.727063,0,3,3,2021,11,0,19,19,1,0,0,9.720253,9.720253,.05,.05,0,0,0,0,0,0,0,0,0,6.4917469,0,55.79,52.62,51,49,6.666666666666667,1,1,0,0,9,6,4,1,959,36628.25,74931.188,76438.875,41289.07,4055.0942,4829.6797,3000.2993 +5339,6507,11649,-9,11648,11647,1,1,22,0,0,0,2,2,-9,0,4,8.0774403,7.8548393,0,0,0,-950.10284,0,2,2,2021,9,0,37,37,1,0,1,10.128163,10.128163,.05,.05,0,0,0,0,0,0,0,0,0,2.4556587,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,4,6,4,1,553,96318.633,-51931.313,0,0,0,0,1464.4116 +5340,6508,11650,-9,-9,-9,1,0,35,0,3,0,3,3,0,1,3,0,0,0,0,0,-1048.8401,-9,-9,-9,2021,23,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.19,53.08,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11651,-9,11650,-9,1,0,17,0,3,1,3,0,0,0,3,0,0,0,0,0,-1130.027,-9,3,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,27.33,-9,-9,5,1,1,0,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11652,-9,11650,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.40491,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11653,-9,11650,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.66681,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5340,6508,11654,-9,11650,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.06415,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,0,525.79999,-8171.5098,0,0,0,996.37189,0,3508.3813 +5341,6509,11655,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,6.8746471,6.8398223,5.7567592,0,0,-1023.0511,0,2,2,2021,16,6,27,40,1,6,0,4.1934819,4.1934819,.05,.05,0,0,0,0,0,0,1,1,0,0,5.644865,31.84,30.42,-9,-9,6.666666666666667,1,1,0,0,8,10,2,0,1941,225744.53,118262.07,0,0,21556.527,0,1640.6907 +5342,6510,11656,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,7.4499483,7.3862581,0,0,0,-873.78546,0,-9,-9,2021,5,1,30,40,1,1,0,6.2405901,6.2405901,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,6.666666666666667,2,3,0,0,7,8,3,0,614,0,0,0,0,0,0,918.99683 +5343,6511,11657,11658,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,5.7787127,5.5325155,41,-3,-61.568882,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1799564,5.8167086,59.07,16.26,54.79,55.86,8.333333333333334,1,1,0,0,0,5,5,1,447,2021078.3,1389488.6,402599.44,0,0,0,4103.6211 +5343,6511,11658,11657,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.8262167,8.802351,41,3,-2.377279,0,2,3,2021,6,0,0,20,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.8588676,54.79,55.86,59.07,16.26,8.333333333333334,1,1,0,0,9,5,5,1,447,2021078.3,1389488.6,402599.44,0,0,0,4103.6211 +5344,6512,11659,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.831234,9.13414,0,0,0,-949.90369,0,2,2,2021,12,2,40,44,1,2,0,22.815817,22.815817,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.61,54.24,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,832,100655.4,147725.52,0,0,0,0,2615.998 +5345,6513,11660,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.2415915,8.1829615,0,0,0,-913.89453,0,3,2,2021,16,4,48,43,1,4,0,10.599425,10.599425,.05,.05,0,0,0,0,0,0,1,1,0,.88524109,0,48.3,41.76,-9,-9,6.666666666666667,1,1,0,0,9,10,4,1,907,373811.47,224146.02,252898.25,79280.539,0,0,409.07144 +5346,6514,11661,11662,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,43,-3,-35.910545,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46.08,57.2,52,54.51,6.666666666666667,1,1,0,0,0,9,4,1,722.5,954352.13,610583.25,369233.81,0,7352.6191,0,2854.6514 +5346,6514,11662,11661,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.2434387,8.1922808,6.724587,42,3,3.3946657,0,3,3,2021,8,0,15,50,1,0,0,21.494102,21.494102,0,0,0,0,0,0,0,0,1,1,0,0,7.2304549,52,54.51,46.08,57.2,5,1,1,0,0,9,9,4,1,722.5,954352.13,610583.25,369233.81,0,7352.6191,0,2854.6514 +5347,6515,11663,11667,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,9.7194777,9.6014042,0,25,0,55.381798,0,2,1,2021,11,0,50,46,1,0,0,31.156904,31.156904,.05,.05,.05,0,0,0,0,0,0,0,0,3.5622306,0,45.82,54.73,60.13,49.27,6.666666666666667,1,1,0,0,10,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11664,-9,11667,11663,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.0913,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11665,-9,11667,11663,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.1558,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11666,-9,11667,11663,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.0712,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5347,6515,11667,11663,-9,-9,1,0,46,0,3,0,1,1,-9,0,4,6.4187822,7.1216612,0,23,0,115.92766,0,3,3,2021,6,0,12,12,1,0,0,8.1911907,8.1911907,0,0,0,0,0,0,0,0,0,0,0,1.7946333,0,60.13,49.27,45.82,54.73,8.333333333333334,1,1,0,0,11,10,5,1,464,2203118,677641.38,1687999.5,753095.63,0,0,5511.6006 +5348,6516,11668,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.6588793,6.3938618,0,0,-1102.516,-9,-9,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5754299,0,57.16,56.15,-9,-9,10,1,1,0,0,0,5,2,0,268,-83043.195,51846.145,0,0,0,0,117.85445 +5349,6517,11669,11670,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.8028383,7.6035838,0,1,4,-59.089733,-9,-9,-9,2021,12,0,35,0,1,0,0,9.2190847,9.2190847,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,29.8,54.36,3.333333333333333,4,1,0,0,8,13,2,0,311.5,-57222.633,-21688.785,0,0,0,0,1727.9373 +5349,6517,11670,11669,-9,-9,1,0,39,0,1,0,3,3,-9,0,2,0,0,0,1,-4,-4.5950384,-9,3,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.8,54.36,41,56.99,5,1,1,0,1,0,13,2,0,311.5,-57222.633,-21688.785,0,0,0,0,1727.9373 +5350,6518,11671,-9,11672,11674,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.05322,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5350,6518,11672,11674,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,5.3611321,5.4538932,0,19,-3,22.609407,0,3,3,2021,11,0,48,32,1,1,0,.5188387,.5188387,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,3,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5350,6518,11673,-9,11672,11674,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.5643,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5350,6518,11674,11672,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.7459965,8.5890141,0,7,3,26.833029,0,-9,-9,2021,9,0,43,42,1,1,0,15.444894,15.444894,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,1,2,4,1,2403.5,65527.414,158124.73,136714.55,122799.99,6776.7979,0,2352.4788 +5351,6519,11675,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.0878596,7.4081693,5.944581,0,0,-892.93695,0,1,1,2021,3,0,18,14,1,0,0,8.6971827,8.6971827,0,0,0,0,0,0,0,14.5,0,0,0,6.5313835,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,370,757202.38,56009.43,193278.23,0,0,0,1590.8967 +5352,6520,11676,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,6.1376543,6.3757758,0,0,-884.88098,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0922766,6.4918547,34.96,18.92,-9,-9,0,1,1,0,0,0,1,2,0,5632,365409.56,309849.31,0,0,0,0,2310.7161 +5353,6521,11677,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6557417,8.7549868,7.7214251,0,0,-979.86676,0,2,2,2021,14,3,55,47,1,3,0,12.724497,12.724497,0,0,0,0,0,0,0,0,0,0,0,4.8250127,7.9173832,40.33,58.26,-9,-9,5,1,1,0,0,9,7,5,1,232,251221.91,56132.578,0,0,0,0,3067.3569 +5353,6522,11678,-9,-9,11677,1,0,25,0,0,0,2,2,-9,0,4,6.9499235,7.4750223,0,0,0,-967.04797,-9,-9,2,2021,11,0,39,0,1,2,1,3.3122799,3.3122799,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,7,3,1,197,-72164.586,0,0,0,0,0,238.20992 +5354,6523,11679,11680,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.758112,8.8493156,0,16,0,25.727924,0,2,2,2021,15,3,38,38,1,3,0,16.407141,16.407141,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.48,53.45,55.36,51.57,5,1,1,0,0,13,6,5,1,1091,612048.69,617586.44,168803.45,84449.914,18614.316,1383.9607,4774.1875 +5354,6523,11680,11679,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.806963,8.436285,0,16,0,22.326935,0,2,2,2021,8,0,38,38,1,0,0,17.553963,17.553963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,33.48,53.45,8.333333333333334,1,1,0,0,11,6,5,1,1091,612048.69,617586.44,168803.45,84449.914,18614.316,1383.9607,4774.1875 +5355,6524,11681,-9,11682,11684,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.76074,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5355,6524,11682,11684,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.8051386,8.9336939,0,4,-2,-78.594238,0,-9,-9,2021,19,8,54,53,1,8,0,14.119985,14.119985,0,0,0,0,0,0,0,0,1,1,0,2.8949175,0,48.18,61.8,52.82,53.97,6.666666666666667,1,1,0,0,11,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5355,6524,11683,-9,11682,11684,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.0828,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5355,6524,11684,11682,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.0095377,7.8553615,0,4,2,-4.334938,0,-9,-9,2021,11,0,37,37,1,0,0,10.389119,10.389119,.05,.05,0,0,0,0,0,0,1,1,0,2.5168133,0,52.82,53.97,48.18,61.8,8.333333333333334,1,1,0,0,12,10,4,1,1608.5,373636.53,97852.078,263270.44,111291.46,0,0,3796.1072 +5356,6525,11685,11686,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.0101051,7.2621088,0,10,4,-128.28763,0,-9,-9,2021,6,0,21,20,1,0,0,8.3036404,8.3036404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,49,48,10,1,1,0,0,11,8,2,1,696,549456.88,78860.078,450845.38,134253.64,0,0,1217.2484 +5356,6525,11686,11685,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,39,-4,-78.300507,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,60.53,48.35,7,4,2,0,0,7,8,2,1,696,549456.88,78860.078,450845.38,134253.64,0,0,1217.2484 +5356,6526,11687,-9,11686,11685,1,0,27,0,0,0,1,1,-9,0,5,0,0,0,0,0,-948.84723,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,2,3,0,0,5,8,1,1,740,91096.008,0,0,0,0,0,-179.40411 +5357,6527,11688,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5528321,7.0374613,0,0,-993.53625,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8817253,56.84,42.76,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,605,572574,237901.19,160618.28,0,0,0,191.89987 +5358,6528,11689,-9,11692,11691,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.76721,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5358,6528,11690,-9,11692,11691,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.7262,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5358,6528,11691,11692,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.6332426,8.3214798,0,6,7,22.771334,0,-9,-9,2021,6,0,37,42,1,0,0,14.969379,14.969379,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,52.89,33.12,61.85,8.333333333333334,1,1,0,0,10,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5358,6528,11692,11691,-9,-9,1,0,36,1,2,0,2,2,0,0,3,0,0,0,6,-7,-11.558398,-9,2,2,2021,22,8,0,0,2,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.12,61.85,58.32,52.89,8.333333333333334,1,1,0,0,7,2,3,1,710.5,416544.16,193988.88,188911.67,12745.053,1469.7471,0,1975.1393 +5359,6529,11693,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.4096193,7.0820432,0,0,-1094.5057,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9965339,50.43,45.82,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,239,179220.17,155574.61,0,0,0,0,1086.5316 +5360,6530,11694,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.0208845,7.46664,0,0,-939.80695,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.69541246,6.8577623,61.85,44.55,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,2122,410481.25,150969.08,137611.78,0,0,9999.085,1073.2466 +5361,6531,11695,11696,-9,-9,1,0,54,0,1,0,2,2,-9,1,1,0,0,0,33,-3,0,0,3,2,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.9446039,0,39.14,25.52,29.78,17.81,8.333333333333334,1,1,0,0,0,7,1,1,327,9345.8438,141680.7,0,0,0,0,4141.5566 +5361,6531,11696,11695,-9,-9,1,1,57,0,1,0,3,3,-9,1,1,0,0,0,33,3,0,0,3,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.8428464,0,29.78,17.81,39.14,25.52,5,1,1,0,0,0,7,1,1,327,9345.8438,141680.7,0,0,0,0,4141.5566 +5361,6531,11697,-9,11695,11696,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-966.97589,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.017813,0,38.23,51.52,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,327,9345.8438,141680.7,0,0,0,0,4141.5566 +5361,6532,11698,-9,11695,11696,1,1,23,0,1,0,3,3,-9,1,4,0,0,0,0,0,-965.75348,0,2,3,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,1,1,1572,0,0,0,0,0,0,445.9248 +5362,6533,11699,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,0,0,0,0,0,-940.01904,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.8217111,0,60.02,56.42,-9,-9,10,1,1,0,0,9,13,1,1,1738,25451.49,206862.47,0,0,0,0,32.683311 +5363,6534,11700,11701,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5776501,8.7517433,0,3,-4,-53.19759,0,-9,-9,2021,6,0,38,38,1,0,0,22.132969,22.132969,.05,.05,0,0,0,0,0,0,0,0,0,1.7472284,0,54.2,57.49,57.16,56.15,10,2,3,0,0,15,5,5,1,508,208267,114254.16,197170.06,126770.73,42104.977,0,4369.418 +5363,6534,11701,11700,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.551158,9.0813417,0,3,4,-117.56757,0,-9,-9,2021,6,0,40,76,1,0,0,14.629352,14.629352,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,2,5,5,1,508,208267,114254.16,197170.06,126770.73,42104.977,0,4369.418 +5364,6535,11702,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.5684128,7.3377018,0,0,-976.73523,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6333444,7.6581616,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,403,829564,418217.13,300380.66,0,0,0,1508.1479 +5365,6536,11703,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.6230898,6.7619114,0,0,-978.43195,0,3,3,2021,7,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.4602578,6.5329967,56.05,45.76,-9,-9,8.333333333333334,1,1,0,0,12,7,2,1,409,460640.75,99713.836,284881,0,0,0,535.87805 +5366,6537,11704,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.7036924,8.8384218,0,17,-4,31.731174,0,2,3,2021,12,0,58,50,1,0,0,13.96529,13.96529,.05,.05,0,0,0,0,0,0,0,0,0,4.0710316,0,49.84,44.96,51.73,58.82,5,1,1,0,0,12,4,5,1,556,423032.81,363137.66,148440.95,0,0,5632.1646,975.88129 +5366,6538,11705,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0978651,7.9513097,0,17,4,-.30588236,-9,-9,-9,2021,12,0,58,0,1,0,0,6.8457017,6.8457017,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,49.84,44.96,8.333333333333334,1,1,0,0,10,4,5,1,1255,466338.53,488521.75,222584.73,0,2962.6448,0,906.21069 +5367,6539,11706,11707,-9,-9,1,0,52,0,0,0,1,1,-9,1,4,0,0,0,25,-5,-5.629282,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.3816521,0,55.3,55.6,57.73,54.53,8.333333333333334,1,1,0,0,0,11,3,1,473,684049.81,532745.44,193279.81,37722.949,0,0,1979.3438 +5367,6539,11707,11706,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.0412683,8.0206003,0,25,5,90.579033,0,2,1,2021,6,0,37,37,1,0,0,9.2671528,9.2671528,0,0,0,0,0,0,0,89,1,1,0,3.3891976,0,57.73,54.53,55.3,55.6,8.333333333333334,1,1,0,0,13,11,3,1,473,684049.81,532745.44,193279.81,37722.949,0,0,1979.3438 +5367,6539,11708,-9,11706,11707,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.5662,-9,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.54829276,0,56.82,56.51,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,473,684049.81,532745.44,193279.81,37722.949,0,0,1979.3438 +5367,6540,11709,-9,11706,11707,1,1,23,0,0,0,2,2,-9,1,4,0,0,0,0,0,-960.82288,0,1,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,11,1,1,193,5726.6685,0,0,0,0,0,765.34692 +5368,6541,11710,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.8458343,8.1349945,0,0,0,-1084.2177,0,-9,-9,2021,10,0,37,37,1,0,0,9.2058783,9.2058783,0,0,0,0,0,0,0,2,1,1,0,6.5730228,0,53.61,59.13,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,411,-7030.1528,0,0,0,0,0,1588.0637 +5369,6542,11711,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,9.3235493,9.1119442,0,0,0,-936.43677,0,2,-9,2021,14,4,96,30,1,4,0,9.3835344,9.3835344,0,0,0,0,0,0,0,0,0,0,0,0,0,47.78,48.12,-9,-9,6.666666666666667,2,3,0,1,10,8,5,0,569,-265778.06,0,0,0,25005.068,0,2211.6748 +5370,6543,11712,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.4254379,7.7664485,0,0,-930.28937,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3332076,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,124,526882.63,493586.16,208753.48,0,0,0,709.04987 +5371,6544,11713,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.4081235,5.5238366,0,0,-1033.8116,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7991648,5.4435887,62.49,55.09,-9,-9,10,1,1,0,0,0,6,2,1,245,-28.522419,0,0,0,0,0,587.45496 +5371,6545,11714,11715,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,8,11,66.776512,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,51.8,54.96,53.17,6.666666666666667,1,1,0,0,1,6,2,1,616,32055.635,0,0,0,2171.0938,57.613617,647.09265 +5371,6545,11715,11714,11713,-9,1,1,47,0,0,0,3,3,-9,0,3,6.9767337,7.0463171,0,8,-11,102.99072,0,2,2,2021,8,0,30,30,1,0,0,3.3064444,3.3064444,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,45.64,51.8,8.333333333333334,1,1,0,0,9,6,2,1,616,32055.635,0,0,0,2171.0938,57.613617,647.09265 +5372,6546,11716,11717,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,0,0,33,1,-71.366402,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,48.72,43.43,54.3,8.333333333333334,1,1,0,0,11,10,4,1,1934.5,601063.63,462613.91,306536.06,156025.88,11951.678,15131.066,4742.6895 +5372,6546,11717,11716,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,0,8.1181612,8.4354401,33,-1,-43.702133,0,2,2,2021,7,0,0,15,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.9404125,8.6000423,43.43,54.3,55.34,48.72,8.333333333333334,1,1,0,0,13,10,4,1,1934.5,601063.63,462613.91,306536.06,156025.88,11951.678,15131.066,4742.6895 +5372,6547,11718,-9,11716,11717,1,0,24,0,0,0,1,1,-9,0,5,8.0946674,8.1298714,0,0,0,-942.47827,0,1,2,2021,10,1,30,30,1,1,1,15.157495,15.157495,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.74,58.71,-9,-9,5,1,1,0,0,7,10,4,1,1248,48188.344,74276.242,0,0,0,0,1134.4087 +5373,6548,11719,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,0,0,0,0,-972.59113,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,9.8553877,0,2,1,1,0,0,0,46.03,27.51,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1085,-237760.33,0,0,0,0,872.08264,1096.1769 +5373,6549,11720,-9,11719,-9,1,0,39,0,0,0,2,2,-9,1,1,0,0,0,0,0,-930.60315,0,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.86,8.950000000000001,-9,-9,6.666666666666667,1,1,0,0,4,12,1,0,692,387493.34,0,415827.5,0,0,0,716.26685 +5374,6550,11721,11722,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,4.8989863,4.9815831,37,12,-66.110306,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.7586336,40.16,30.14,29.35,31.4,6.666666666666667,3,4,0,1,0,8,2,1,892,1095602.3,499231.81,0,0,0,0,1006.8964 +5374,6550,11722,11721,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,37,-12,46.231941,0,2,1,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.35,31.4,40.16,30.14,1.666666666666667,3,4,0,1,9,8,2,1,892,1095602.3,499231.81,0,0,0,0,1006.8964 +5374,6551,11723,-9,11722,11721,1,0,32,0,0,0,1,1,-9,0,1,8.544548,8.5958757,0,0,0,-943.24182,0,2,1,2021,28,10,37,38,1,10,1,20.033258,20.033258,.05,.05,0,0,0,0,0,7,1,1,0,0,0,32.26,34.13,-9,-9,1.666666666666667,3,4,0,0,9,8,5,1,566,70899.695,48244.559,494636.34,114305.09,0,0,2492.9233 +5375,6552,11724,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,6.3577399,6.534946,0,0,-1183.8567,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73368871,6.4928036,55.58,19.78,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,176,244175.86,165805.88,0,0,0,0,1273.5695 +5376,6553,11725,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-934.54285,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.19659691,0,38.58,48.57,-9,-9,8.333333333333334,1,1,0,0,1,4,1,0,560,-32795.551,0,0,0,0,0,182.0674 +5376,6554,11726,-9,-9,-9,1,1,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-920.41187,-9,-9,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.86,57.79,-9,-9,5,1,1,0,0,3,4,1,0,148,0,0,0,0,0,0,591.18268 +5377,6555,11727,11728,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1146927,7.8365173,0,2,-4,58.226593,0,1,1,2021,17,5,46,42,1,5,0,6.7148056,6.7148056,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.92,61.06,51.83,57.2,6.666666666666667,1,1,0,0,3,5,4,0,376,49626.043,45799.906,47138.207,39806,15280.201,0,2294.6995 +5377,6555,11728,11727,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,7.994082,8.2090616,0,2,4,30.425552,0,-9,-9,2021,8,0,40,40,1,0,0,10.24665,10.24665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,37.92,61.06,6.666666666666667,1,1,0,0,1,5,4,0,376,49626.043,45799.906,47138.207,39806,15280.201,0,2294.6995 +5378,6556,11729,11730,-9,-9,1,1,63,0,0,0,3,3,-9,1,3,0,0,0,8,11,0,0,-9,-9,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.57,30.98,59.21,43.05,8.333333333333334,1,1,0,1,0,12,1,0,201,183420.75,0,0,0,894.59412,-1252.1846,586.10291 +5378,6556,11730,11729,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,0,0,0,8,-11,0,0,3,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.21,43.05,55.57,30.98,8.333333333333334,1,1,0,0,2,12,1,0,201,183420.75,0,0,0,894.59412,-1252.1846,586.10291 +5379,6557,11731,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,9.0250015,8.9788113,0,0,-1040.4977,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.6992865,8.9534512,46.86,55.66,-9,-9,8.333333333333334,1,1,0,0,10,2,5,0,67,589008.44,196569.08,166542.33,0,0,0,4684.7632 +5380,6558,11732,11733,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.3333282,8.1876221,0,25,-4,53.156754,0,3,2,2021,12,0,40,40,1,0,0,10.600229,10.600229,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,35.78,44.58,39.21,40.06,5,1,1,0,0,8,2,4,1,608,316631.78,313117.03,261465.16,0,0,0,2069.3003 +5380,6558,11733,11732,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.6226206,7.6482601,0,27,4,-3.6891222,0,2,-9,2021,12,0,30,30,1,0,0,9.2974167,9.2974167,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.21,40.06,35.78,44.58,8.333333333333334,1,1,0,0,13,2,4,1,608,316631.78,313117.03,261465.16,0,0,0,2069.3003 +5380,6559,11734,-9,11733,11732,1,0,31,0,0,0,2,2,-9,0,4,7.8404932,7.9959269,0,0,0,-1045.8304,0,2,2,2021,12,0,35,35,1,0,1,9.823698,9.823698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,212,146249.61,87730.617,116243.47,79077.672,0,0,1963.8135 +5381,6560,11735,11736,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.853508,8.9536371,0,27,1,77.64077,0,-9,2,2021,14,4,58,60,1,4,0,14.753674,14.753674,.05,.05,0,0,0,0,0,0,1,1,0,4.0322208,0,48.57,53.15,48.88,50.52,8.333333333333334,1,1,0,0,9,10,5,1,714,716710.75,81738.313,388882.75,28242.74,0,0,3954.6548 +5381,6560,11736,11735,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.5773029,7.7232041,0,27,-1,1.4637624,0,2,2,2021,11,0,35,24,1,0,0,7.13519,7.13519,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,50.52,48.57,53.15,8.333333333333334,1,1,0,0,10,10,5,1,714,716710.75,81738.313,388882.75,28242.74,0,0,3954.6548 +5381,6561,11737,-9,11736,11735,1,1,23,0,0,0,2,2,-9,0,4,8.2275639,8.0122299,0,0,0,-1119.7361,0,2,2,2021,12,1,54,54,1,1,1,8.4228621,8.4228621,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,542,-177457.11,0,0,0,0,0,1849.7135 +5381,6562,11738,-9,11736,11735,1,0,18,0,0,0,2,2,1,0,4,7.517014,7.084085,0,0,0,-957.40906,-9,2,2,2021,5,0,34,0,1,0,1,5.1947207,5.1947207,0,0,0,0,0,0,2.0405762,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,2,10,3,1,727,-16823.918,0,0,0,8253.1904,0,1046.0865 +5382,6563,11739,11740,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.3271766,7.684545,0,8,0,25.766777,0,-9,-9,2021,9,0,30,33,1,0,0,7.3585181,7.3585181,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,43.05,41.57,6.666666666666667,2,3,0,0,9,9,2,1,1443.3334,-136928.33,-7332.7031,0,0,2906.301,4775.5996,2759.5027 +5382,6563,11740,11739,-9,-9,1,0,36,0,4,0,2,2,-9,0,2,6.975563,7.1975074,0,19,0,121.10673,0,3,2,2021,10,0,20,20,1,0,0,5.8488364,5.8488364,0,0,0,0,0,0,0,0,1,0,1,.50859135,0,43.05,41.57,54.2,57.49,6.666666666666667,2,3,0,0,4,9,2,1,1443.3334,-136928.33,-7332.7031,0,0,2906.301,4775.5996,2759.5027 +5382,6563,11741,-9,11740,11739,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-932.995,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2.193764,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,1443.3334,-136928.33,-7332.7031,0,0,2906.301,4775.5996,2759.5027 +5383,6564,11742,11743,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.0267763,6.2434077,49,3,3.7440124,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.881783,6.2338223,58.4,51.64,57.33,53.46,10,1,1,0,0,5,6,2,1,305,595238.5,321429.38,198894.95,0,0,0,2606.8655 +5383,6564,11743,11742,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.2560725,6.5982075,49,-3,-80.663101,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7545776,6.5584931,57.33,53.46,58.4,51.64,8.333333333333334,1,1,0,0,0,6,2,1,305,595238.5,321429.38,198894.95,0,0,0,2606.8655 +5384,6565,11744,-9,11746,11747,1,0,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1025.23,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.044548903,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11745,-9,11746,11747,1,0,16,0,4,1,2,0,-9,0,3,0,0,0,0,0,-1058.0441,-9,3,3,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.63,57.93,-9,-9,5,2,3,0,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11746,11747,-9,-9,1,0,47,0,4,0,3,3,-9,0,2,0,0,0,19,-13,9.4940357,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.82,45.37,50,49,8.333333333333334,2,3,0,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11747,11746,-9,-9,1,1,60,0,4,0,3,3,-9,0,3,7.4486494,7.4665675,0,19,13,22.829128,0,-9,-9,2021,10,0,40,38,1,1,0,7.0428967,7.0428967,0,0,0,0,0,0,0,0,1,1,0,2.1119335,0,50,49,46.82,45.37,7,2,3,0,0,1,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11748,-9,11746,11747,1,0,14,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1109.8867,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5384,6565,11749,-9,11746,11747,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1003.6713,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,5,2,1,1095.1666,60929.828,61394.117,0,0,0,1237.6288,1986.0391 +5385,6566,11750,11751,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,8.5437307,8.4221325,0,5,-17,-8.5699549,0,2,3,2021,13,3,55,60,1,3,0,8.7401056,8.7401056,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.15,57.46,42.75,61.95,10,1,1,0,0,8,7,4,0,1259.5,884442.25,422421.31,441606.88,57061.078,0,0,1540.9211 +5385,6566,11751,11750,-9,-9,1,0,57,0,0,0,3,3,-9,0,5,6.9611602,6.8860478,0,5,17,-11.567037,0,-9,-9,2021,17,7,10,15,1,7,0,9.7912474,9.7912474,0,0,0,0,0,0,0,0,0,0,0,0,0,42.75,61.95,45.15,57.46,1.666666666666667,1,1,0,0,4,7,4,0,1259.5,884442.25,422421.31,441606.88,57061.078,0,0,1540.9211 +5386,6567,11752,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1143.4918,0,2,2,2021,15,4,0,36,3,4,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,20.2,43.88,-9,-9,6.666666666666667,1,1,1,1,13,1,1,0,418,-104277.04,0,0,0,0,0,238.75299 +5387,6568,11753,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.0886183,8.128253,0,0,0,-971.94867,0,2,2,2021,12,1,41,40,1,1,0,9.4431973,9.4431973,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,13,9,4,0,943,1459292.1,516965.5,316184.25,0,0,0,432.9671 +5388,6569,11754,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,5.7947125,5.6892819,0,0,-1001.4474,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7885599,5.8743806,63.65,35.93,-9,-9,6.666666666666667,1,1,0,0,3,2,2,1,661,-164647.67,-73151.813,0,0,0,0,1007.3727 +5389,6570,11755,-9,11756,-9,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1052.7985,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11756,-9,-9,-9,1,0,31,0,4,0,3,3,-9,0,3,0,0,0,0,0,-947.26648,0,2,3,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.58,48.15,-9,-9,3.333333333333333,1,1,0,1,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11757,-9,11756,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-941.388,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11758,-9,11756,-9,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1070.679,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5389,6570,11759,-9,11756,-9,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-995.01404,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,512.40002,33661.559,0,141898.84,71846.008,12900.76,0,1574.051 +5390,6571,11760,11761,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.4649682,7.2561588,51,2,10.255571,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2736032,7.6339092,55.36,30.31,47,35,6.666666666666667,1,1,0,0,0,6,2,1,2995,326096,310213.19,184943.31,0,0,0,1299.5198 +5390,6571,11761,11760,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,47,-2,42.980415,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0932397,0,47,35,55.36,30.31,6.666666666666667,1,1,0,0,0,6,2,1,2995,326096,310213.19,184943.31,0,0,0,1299.5198 +5391,6572,11762,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-996.63464,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,8.8069887,0,67.412079,0,1,1,0,0,0,51,46,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,273,-2505.2366,0,0,0,0,0,1507.4672 +5392,6573,11763,-9,11764,11765,1,1,16,0,1,1,2,0,-9,0,4,0,4.285768,4.4907017,0,0,-1103.3195,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0270844,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,7,5,0,776,423478.22,353299.69,89913.938,56036.07,0,0,4292.0654 +5392,6573,11764,11765,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,0,7.231729,7.5861292,5,1,137.60075,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4981575,0,47.27,17.78,54.74,57.22,8.333333333333334,1,1,0,0,2,7,5,0,776,423478.22,353299.69,89913.938,56036.07,0,0,4292.0654 +5392,6573,11765,11764,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,9.5250483,9.0766878,0,5,-1,-33.213348,0,2,2,2021,10,0,45,45,1,0,0,30.068235,30.068235,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.74,57.22,47.27,17.78,8.333333333333334,1,1,0,0,10,7,5,0,776,423478.22,353299.69,89913.938,56036.07,0,0,4292.0654 +5392,6574,11766,-9,11764,11765,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-986.09863,0,2,2,2021,11,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.57,57.72,-9,-9,10,1,1,0,0,0,7,1,0,659,0,0,0,0,0,0,-155.04443 +5393,6575,11767,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.3331594,7.9556303,0,0,0,-897.44861,0,3,2,2021,8,0,40,43,1,0,0,10.679927,10.679927,.05,.05,0,0,0,0,0,0,1,1,0,2.8077953,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,756,182060.27,55092.289,0,0,2682.0046,0,1268.2875 +5393,6576,11768,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1127.1703,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.39,16.93,-9,-9,5,1,1,0,0,0,2,1,0,137,134203.8,0,0,0,439.22876,0,1776.1239 +5394,6577,11769,11770,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.3949785,8.4507895,0,25,-2,-69.117493,0,2,2,2021,14,3,37,42,1,3,0,14.919127,14.919127,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,60.42,44.19,58.01,8.333333333333334,1,1,0,0,14,4,5,1,481,180305.63,46112.086,233645.95,200576.3,9700.5137,520.35449,3872.8557 +5394,6577,11770,11769,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3745699,8.2700567,0,11,2,-76.291855,0,-9,-9,2021,11,2,37,37,1,2,0,12.082765,12.082765,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,38.8,60.42,6.666666666666667,1,1,0,0,14,4,5,1,481,180305.63,46112.086,233645.95,200576.3,9700.5137,520.35449,3872.8557 +5394,6577,11771,-9,11769,11770,1,0,17,0,0,1,3,0,0,0,5,0,0,0,0,0,-1083.8956,-9,1,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3296885,0,62.39,56.71,-9,-9,10,1,1,0,0,1,4,5,1,481,180305.63,46112.086,233645.95,200576.3,9700.5137,520.35449,3872.8557 +5394,6578,11772,-9,11769,11770,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-1056.235,-9,1,2,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0594749,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,4097,216241.3,0,0,0,0,0,-124.70236 +5395,6579,11773,11774,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.590642,7.4879451,55,1,150.54716,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,7.7062774,0,0,1,1,0,2.2568107,7.315022,57.16,56.15,59.29,46.97,10,1,1,0,0,0,7,3,1,360.5,836541.25,237739.66,508275.25,0,0,0,2393.3584 +5395,6579,11774,11773,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.0408664,6.794785,55,-1,-46.048126,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.5128856,7.2220826,59.29,46.97,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,360.5,836541.25,237739.66,508275.25,0,0,0,2393.3584 +5396,6580,11775,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.345665,8.3328838,0,0,0,-972.39594,0,3,2,2021,11,0,46,44,1,0,0,11.783908,11.783908,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,365,-66059.563,0,0,0,0,0,2827.2754 +5397,6581,11776,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.131391,7.1244922,0,0,-1010.0717,0,-9,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4460001,7.3647633,60.12,54.8,-9,-9,10,1,1,0,0,0,6,3,1,797,599643.13,305514,0,0,0,0,1104.4861 +5398,6582,11777,11778,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,3.3700626,3.5723639,35,21,91.944359,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.3811169,0,0,1,1,0,3.1417196,3.3374498,53.45,49.53,54.36,41.57,10,1,1,0,0,4,6,2,1,358.5,169693.44,19639.398,38192.699,0,0,0,502.91306 +5398,6582,11778,11777,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.0632272,6.1262155,0,35,-21,38.747532,0,3,3,2021,12,0,32,40,1,0,0,1.6027075,1.6027075,0,0,0,0,0,0,0,0,1,1,0,0,0,54.36,41.57,53.45,49.53,3.333333333333333,1,1,0,0,9,6,2,1,358.5,169693.44,19639.398,38192.699,0,0,0,502.91306 +5399,6583,11779,11781,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.4287624,9.4433489,0,16,1,-154.98573,0,2,1,2021,8,0,49,48,1,0,0,27.582417,27.582417,.05,.05,0,0,0,0,0,0,0,0,0,3.6243806,0,58.72,51.29,35.62,57.79,8.333333333333334,1,1,0,0,5,9,5,1,305,1396230.4,334686.66,929535.63,586753.75,0,0,5546.332 +5399,6583,11780,-9,11781,11779,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-956.76703,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,4,2,-9,0,0,9,5,1,305,1396230.4,334686.66,929535.63,586753.75,0,0,5546.332 +5399,6583,11781,11779,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.6748061,7.3890333,0,17,-1,-26.854033,0,3,3,2021,13,2,18,15,1,2,0,13.832255,13.832255,.05,.05,0,0,0,0,0,2,0,0,0,7.3614221,0,35.62,57.79,58.72,51.29,8.333333333333334,2,3,0,0,9,9,5,1,305,1396230.4,334686.66,929535.63,586753.75,0,0,5546.332 +5400,6584,11782,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,1,0,0,0,0,0,-949.17163,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.01,54.16,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,190,91350.695,0,0,0,0,0,1681.2415 +5401,6585,11783,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,6.5537033,6.779942,0,0,-1000.7143,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7288036,53,46,-9,-9,7,1,1,0,0,0,8,2,0,757,952909.5,65156.988,590230.5,0,0,0,2247.6582 +5402,6586,11784,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.6420159,8.0860939,0,0,0,-938.87292,0,2,2,2021,15,3,21,29,1,3,0,16.9042,16.9042,.05,.05,0,0,0,0,0,0,1,1,0,3.326762,0,54.2,57.49,-9,-9,6.666666666666667,4,2,0,0,10,9,3,1,1057,-26798.668,69398.992,0,0,0,1162.6215,925.94006 +5403,6587,11785,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.2043533,8.2007208,0,0,0,-1028.6543,-9,-9,-9,2021,6,0,48,0,1,0,0,8.7387199,8.7387199,0,0,0,0,0,0,0,0,0,0,0,0,0,29.33,51.25,-9,-9,8.333333333333334,1,1,0,0,11,11,4,0,640,21606.639,50048.945,0,0,8518.2471,0,1989.9535 +5404,6588,11786,11787,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.0041008,8.6396885,0,9,4,90.696404,0,-9,-9,2021,9,0,70,65,1,0,0,12.859699,12.859699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.58,45.49,52.11,38.34,8.333333333333334,1,1,0,0,11,5,5,1,686.5,2379847.5,1716091,389799.94,0,-1802.4113,0,3540.5342 +5404,6588,11787,11786,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,0,0,43,-4,-24.590355,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.11,38.34,56.58,45.49,8.333333333333334,1,1,0,0,7,5,5,1,686.5,2379847.5,1716091,389799.94,0,-1802.4113,0,3540.5342 +5405,6589,11788,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.7394338,7.9821944,0,0,0,-1024.7341,0,2,2,2021,9,0,35,35,1,0,0,8.1701517,8.1701517,.05,.05,0,0,0,0,0,14.5,0,0,0,.87707943,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,1238,461910.53,324302.78,154613.5,0,1734.6791,0,1594.6472 +5406,6590,11789,-9,11790,11791,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.4717,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5406,6590,11790,11791,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,7.4191871,7.6492605,0,16,0,-52.194504,0,1,1,2021,5,1,36,27,1,1,0,6.6130195,6.6130195,0,0,0,0,0,0,0,0,1,1,0,6.8629441,0,51.73,58.82,43.71,56.91,8.333333333333334,1,1,0,0,13,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5406,6590,11791,11790,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.3656225,8.7352581,7.5492301,15,0,-62.722382,0,2,2,2021,12,3,60,52,1,3,0,6.0708179,6.0708179,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5205531,43.71,56.91,51.73,58.82,6.666666666666667,1,1,0,0,14,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5406,6590,11792,-9,11790,11791,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.5766,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,640.75,38636.359,47771.703,213212.39,178699.42,0,3163.77,4831.4097 +5407,6591,11793,11794,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.3746533,7.3204374,0,22,-3,.31264567,0,2,2,2021,12,0,23,29,1,0,0,8.719924,8.719924,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.17,50.61,61.12,51.57,8.333333333333334,1,1,0,0,14,6,5,1,242.66667,1616802.5,1415006,192980.25,18373.816,0,-235.79477,2357.0632 +5407,6591,11794,11793,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.593564,8.4380102,0,22,3,-95.608673,0,2,2,2021,6,0,40,42,1,0,0,16.772055,16.772055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,57.17,50.61,8.333333333333334,1,1,0,0,14,6,5,1,242.66667,1616802.5,1415006,192980.25,18373.816,0,-235.79477,2357.0632 +5407,6591,11795,-9,11793,11794,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-891.55731,-9,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,1,6,5,1,242.66667,1616802.5,1415006,192980.25,18373.816,0,-235.79477,2357.0632 +5408,6592,11796,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.6669083,9.0121784,0,12,-3,106.25381,0,1,1,2021,12,4,38,78,1,4,0,21.170273,21.170273,.05,.05,0,0,0,0,0,0,0,0,0,3.3098655,0,54.2,57.49,38.09,63.39,5,1,1,0,0,12,4,5,1,197,364789.84,282789.72,0,0,0,0,2605.8823 +5408,6593,11797,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6916842,7.8701,0,12,3,-108.32625,0,2,2,2021,20,8,24,-9,1,8,0,7.7323461,7.7323461,.05,.05,0,0,0,0,0,0,0,0,0,1.1714964,0,38.09,63.39,54.2,57.49,6.666666666666667,1,1,0,0,14,4,5,1,856,72390.047,78395.609,209559.48,0,1496.7357,2463.1138,703.77533 +5409,6594,11798,11799,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.7999678,8.5059385,0,40,1,-45.684025,0,3,3,2021,5,0,38,46,1,0,0,20.490988,20.490988,.05,.05,0,0,0,0,0,7,0,0,0,7.4608288,0,57.06,57.76,52.82,53.97,8.333333333333334,1,1,0,0,9,9,5,1,230,2418715.5,646380.19,837224,0,0,0,3917.5791 +5409,6594,11799,11798,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,6.8272705,6.5191159,0,40,-1,33.549221,0,3,2,2021,10,0,20,21,1,0,0,5.4264021,5.4264021,0,0,0,0,0,0,0,7,0,0,0,3.7719276,0,52.82,53.97,57.06,57.76,1.666666666666667,1,1,0,0,6,9,5,1,230,2418715.5,646380.19,837224,0,0,0,3917.5791 +5410,6595,11800,11801,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.2827187,8.1070566,0,3,6,-51.004227,0,-9,-9,2021,10,0,44,40,1,0,0,9.2131767,9.2131767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,16.27,56.51,6.666666666666667,1,1,0,0,2,6,4,0,909,86854.406,85729.844,151302.58,85451.039,12513.517,0,2108.2651 +5410,6595,11801,11800,-9,-9,1,0,26,1,1,0,2,2,-9,0,1,7.296154,7.3923712,0,3,-6,-115.88911,0,2,2,2021,19,5,22,38,1,5,0,7.1605315,7.1605315,0,0,0,0,0,0,0,0,1,1,0,0,0,16.27,56.51,58.89,48.6,3.333333333333333,1,1,0,0,8,6,4,0,909,86854.406,85729.844,151302.58,85451.039,12513.517,0,2108.2651 +5410,6595,11802,-9,11801,11800,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.4503,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,0,909,86854.406,85729.844,151302.58,85451.039,12513.517,0,2108.2651 +5411,6596,11803,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4544291,7.7812386,0,0,0,-1057.2581,0,-9,-9,2021,11,1,37,3,1,1,0,5.2630467,5.2630467,.05,.05,0,0,0,0,0,0,0,0,0,6.3883061,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,11,6,3,1,873,-39123.547,157421.09,0,0,0,0,585.01141 +5411,6597,11804,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.3054018,8.576581,0,0,0,-948.54462,-9,-9,-9,2021,10,0,40,0,1,1,0,15.023247,15.023247,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,6,0,0,1,6,4,1,318,248055.64,0,320237,0,0,0,2506.3298 +5412,6598,11805,-9,11806,-9,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1047.011,1,1,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.7178625,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,908.5,422721.38,137138.95,291415.88,0,0,0,1527.9955 +5412,6598,11806,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.9915347,8.4268236,0,0,0,-1006.6061,0,3,2,2021,11,1,30,30,1,1,0,12.508065,12.508065,.05,.05,0,0,0,0,0,0,1,0,1,2.023556,0,41.65,60.41,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,908.5,422721.38,137138.95,291415.88,0,0,0,1527.9955 +5413,6599,11807,11808,-9,-9,1,0,29,0,0,0,2,2,1,0,4,8.1679173,8.2146568,0,7,0,29.790388,-9,2,3,2021,8,2,40,0,1,2,0,9.5814857,9.5814857,0,0,0,0,0,0,0,0,0,0,0,0,0,57.88,44.79,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,1033.5,123153.75,29366.996,69963.023,77870.688,0,0,4822.686 +5413,6599,11808,11807,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,9.3996334,9.1359224,0,7,0,49.603432,0,1,2,2021,9,0,55,40,1,0,0,28.324802,28.324802,.05,.05,0,0,0,0,0,0,0,0,0,6.4004202,0,57.06,57.76,57.88,44.79,8.333333333333334,1,1,0,0,6,12,5,1,1033.5,123153.75,29366.996,69963.023,77870.688,0,0,4822.686 +5414,6600,11809,11810,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,48,-4,-.50833452,0,3,3,2021,10,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,30.64,62.63,33.08,8.333333333333334,1,1,0,0,15,12,2,1,2699,221932.38,57705.922,190071.06,0,0,0,1262.0981 +5414,6600,11810,11809,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,6.1870146,6.2961864,4.9561582,48,4,92.476341,0,3,3,2021,6,0,45,50,1,0,0,1.189239,1.189239,0,0,0,0,0,0,0,0,1,1,0,4.4626665,5.1925135,62.63,33.08,62.18,30.64,8.333333333333334,1,1,0,0,15,12,2,1,2699,221932.38,57705.922,190071.06,0,0,0,1262.0981 +5415,6601,11811,11813,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,8.7962341,8.6447821,0,11,-5,-42.49493,0,2,2,2021,8,0,40,39,1,0,0,22.879507,22.879507,0,0,0,0,0,0,0,0,1,1,0,3.7060847,0,59.46,46.99,58.15,52.91,8.333333333333334,1,1,0,0,12,7,5,1,512,354558.38,406232.97,150187.64,104335.96,0,0,4104.5 +5415,6601,11812,-9,11811,11813,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1113.0841,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,5,1,512,354558.38,406232.97,150187.64,104335.96,0,0,4104.5 +5415,6601,11813,11811,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.3860817,8.2227917,0,11,5,-125.7832,0,2,3,2021,6,0,49,50,1,0,0,10.422259,10.422259,.05,.05,0,0,0,0,0,0,1,1,0,2.8045406,0,58.15,52.91,59.46,46.99,8.333333333333334,1,1,0,0,12,7,5,1,512,354558.38,406232.97,150187.64,104335.96,0,0,4104.5 +5415,6602,11814,-9,11811,11813,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-965.39722,-9,2,2,2021,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.07,49.95,-9,-9,8.333333333333334,1,1,1,0,1,7,1,1,737,-169854.88,0,0,0,0,0,0 +5416,6603,11815,-9,11817,11816,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.91113,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5416,6603,11816,11817,-9,-9,1,1,35,1,2,0,2,2,-9,0,4,9.1098318,8.7588415,0,8,-2,29.56823,0,3,2,2021,7,0,52,48,1,0,0,18.711319,18.711319,0,0,0,0,0,0,0,0,0,0,0,4.9554734,0,51.83,57.2,45.91,59.89,8.333333333333334,1,1,0,0,11,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5416,6603,11817,11816,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,7.9547129,8.0500822,0,8,2,65.774933,0,-9,-9,2021,12,1,25,24,1,1,0,14.391931,14.391931,0,0,0,0,0,0,0,0,0,0,0,7.1623807,0,45.91,59.89,51.83,57.2,8.333333333333334,1,1,0,0,12,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5416,6603,11818,-9,11817,11816,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.32819,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,5,1,625.5,-19656.238,0,0,0,89775.359,10590.29,4527.9248 +5417,6604,11819,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,6.9682536,6.9453096,0,0,0,-980.77502,0,-9,-9,2021,8,0,20,20,1,0,0,5.8351483,5.8351483,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,1796,5559.9414,-62891.305,0,0,0,1300.4091,722.69641 +5417,6605,11820,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1009.5244,0,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,0,13,1,0,434,23569.02,0,0,0,0,0,2063.0376 +5418,6606,11821,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.1675196,7.3486619,0,0,0,-1063.5651,0,3,3,2021,12,0,16,-9,1,0,0,10.091766,10.091766,0,0,0,0,0,0,0,0,1,1,0,2.3681343,0,40.31,43.37,-9,-9,3.333333333333333,1,1,0,1,9,7,3,0,1146,-3600.115,0,0,0,0,8576.2803,1416.0745 +5418,6607,11822,-9,11821,-9,1,0,30,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1051.14,0,3,-9,2021,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.44,32.42,-9,-9,3.333333333333333,4,2,0,1,0,7,1,0,1341,-153935.33,0,0,0,0,0,1400.9805 +5418,6608,11823,-9,11821,-9,1,1,21,0,0,0,2,2,-9,0,3,8.2009573,8.403266,0,0,0,-1122.0923,0,3,-9,2021,6,0,30,30,1,0,1,12.57696,12.57696,.05,.05,0,0,0,0,0,0,1,1,0,.66860849,0,57.33,53.46,-9,-9,5,4,2,0,0,10,7,4,0,3150,97385.359,-114233.3,0,0,0,0,1734.6444 +5419,6609,11824,11825,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1849661,7.1047049,46,2,-25.527557,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0190368,7.3234625,60.12,54.8,62.49,55.09,8.333333333333334,1,1,0,0,0,4,3,1,615.5,1081000.4,769969.25,290007.03,0,0,0,3351.3789 +5419,6609,11825,11824,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.219039,7.316072,46,-2,-18.578625,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.008883,7.59692,62.49,55.09,60.12,54.8,10,1,1,0,0,0,4,3,1,615.5,1081000.4,769969.25,290007.03,0,0,0,3351.3789 +5420,6610,11826,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.1639261,7.6464195,0,0,0,-931.81067,0,2,2,2021,6,0,50,30,1,0,0,5.930995,5.930995,.05,.05,0,0,0,0,0,0,0,0,0,3.1783187,0,50.54,62.09,-9,-9,10,1,1,0,0,5,4,4,0,296,24542.758,-43744.402,0,0,0,0,1977.3954 +5420,6611,11827,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.6323724,7.4674821,0,0,0,-1034.0573,-9,2,2,2021,10,0,30,0,1,1,0,5.6470437,5.6470437,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,7,4,3,0,754,-281515.09,0,0,0,0,0,806.47467 +5421,6612,11828,11829,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.4837551,5.136229,8,1,29.720442,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3082452,5.0603485,34.73,60.93,55.79,52.62,6.666666666666667,1,1,0,0,0,11,3,1,1830.5,1096316.9,776230.38,259839.2,0,0,0,2408.8735 +5421,6612,11829,11828,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.8733754,8.2314262,8,-1,-38.319885,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.710103,7.912313,55.79,52.62,34.73,60.93,8.333333333333334,1,1,0,0,0,11,3,1,1830.5,1096316.9,776230.38,259839.2,0,0,0,2408.8735 +5422,6613,11830,-9,11833,11831,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.60205,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5422,6613,11831,11833,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,8.4897852,8.1533413,0,3,1,41.733284,0,2,1,2021,15,4,55,58,1,4,0,10.144115,10.144115,.05,.05,0,0,0,0,0,0,1,1,0,2.7449424,0,49.04,55.86,48.18,61.8,8.333333333333334,1,1,0,0,9,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5422,6613,11832,-9,11833,11831,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.5115,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5422,6613,11833,11831,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,0,0,0,3,-1,-11.007458,0,2,1,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.9818609,0,48.18,61.8,49.04,55.86,8.333333333333334,1,1,0,0,2,5,3,0,1111,309857.53,56755.32,171893.03,90999.242,21616.637,0,2309.5313 +5423,6614,11834,-9,11837,11838,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1032.6527,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11835,-9,11837,11838,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.61462,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11836,-9,11837,11838,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-919.9458,-9,1,3,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,46,-9,-9,5,2,3,-9,0,0,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11837,11838,-9,-9,1,0,41,0,3,0,1,1,-9,0,4,8.0029211,8.1044827,0,17,-10,48.581512,0,3,2,2021,9,0,37,0,1,0,0,11.300114,11.300114,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,54.45,56.22,3.333333333333333,2,3,0,1,6,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5423,6614,11838,11837,-9,-9,1,1,51,0,3,0,3,3,-9,0,4,6.7025967,6.6825485,0,17,10,-41.927013,0,3,-9,2021,10,1,30,30,1,1,0,3.0512161,3.0512161,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,55.79,52.62,5,2,3,0,0,10,8,3,0,1153,625174.06,96641.18,523607.13,0,0,0,2024.9937 +5424,6615,11839,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.6229343,7.3554397,0,0,-1006.2227,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2283111,7.7626619,38.5,44.29,-9,-9,5,1,1,0,0,8,11,3,1,2942,1026878.1,661495.56,485371.78,0,0,0,2567.865 +5425,6616,11840,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.7762,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,7.4331517,0,68.620628,0,1,1,0,0,0,56,44,-9,-9,8,1,1,0,0,0,6,1,0,490,199616.77,0,192378.75,0,0,0,1603.2603 +5426,6617,11841,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1072.7596,0,-9,-9,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,759,-172227.25,21924.52,0,0,0,0,1089.2031 +5426,6618,11842,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.4888439,6.707603,0,0,-919.88251,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.6457591,47.94,48.26,-9,-9,8.333333333333334,1,1,0,0,2,5,2,0,977,-132922.11,52506.207,0,0,0,0,823.6897 +5427,6619,11843,11844,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,9.2438202,9.2767963,0,26,-3,-57.189373,0,2,2,2021,7,0,70,50,1,0,0,17.868933,17.868933,.05,.05,0,0,0,0,0,0,0,0,0,1.5949211,0,51.14,60.45,54.73,49.35,8.333333333333334,3,4,0,0,9,5,5,1,1015,1307556.8,1052403.6,228925.7,106231.52,0,0,4439.2905 +5427,6619,11844,11843,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,7.4175601,7.3452177,0,27,3,-29.752737,0,2,1,2021,7,0,40,57,1,0,0,4.393836,4.393836,.05,.05,0,0,0,0,0,2,0,0,0,.59140104,0,54.73,49.35,51.14,60.45,6.666666666666667,4,2,0,0,8,5,5,1,1015,1307556.8,1052403.6,228925.7,106231.52,0,0,4439.2905 +5427,6620,11845,-9,11843,11844,1,0,22,0,0,0,1,1,-9,0,4,7.7142811,7.8895321,0,0,0,-1092.3882,-9,1,1,2021,10,0,37,0,1,0,1,9.4407969,9.4407969,0,0,0,0,0,0,0,0,0,0,0,0,0,42.3,57.54,-9,-9,8.333333333333334,3,4,0,0,1,5,4,1,118,-77684.578,0,0,0,0,0,1553.3251 +5428,6621,11846,11847,-9,-9,1,1,43,1,1,0,2,2,-9,0,3,7.942441,8.0604792,0,4,-1,70.58609,0,1,2,2021,7,0,40,40,1,0,0,10.134766,10.134766,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.87,37.28,46.5,58.26,5,1,1,0,0,11,7,4,1,776,241926.67,107551.16,82362.938,30767.248,0,3546.4109,3056.4629 +5428,6621,11847,11846,-9,-9,1,0,44,1,1,0,1,1,-9,0,4,7.6539717,7.9201865,0,4,1,-9.9940214,0,2,3,2021,9,0,40,40,1,0,0,7.7950578,7.7950578,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,62.87,37.28,6.666666666666667,1,1,0,0,11,7,4,1,776,241926.67,107551.16,82362.938,30767.248,0,3546.4109,3056.4629 +5428,6621,11848,-9,11847,11846,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.5447,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,776,241926.67,107551.16,82362.938,30767.248,0,3546.4109,3056.4629 +5428,6622,11849,-9,11847,11846,1,1,20,1,1,0,2,2,-9,0,5,7.7126255,7.6795583,0,0,0,-1051.0703,-9,1,2,2021,10,1,35,0,1,1,1,7.4992619,7.4992619,0,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,5,1,1,0,0,3,7,3,1,271,-21604.49,0,0,0,0,0,1257.6338 +5428,6623,11850,-9,11847,11846,1,1,18,1,1,1,2,0,-9,0,4,0,0,0,0,0,-1031.7158,-9,1,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,7,1,1,692,0,0,0,0,0,0,0 +5429,6624,11851,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.9545355,5.0467615,0,0,-1023.1692,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4909754,5.4101362,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1293,107443.81,113623.67,0,0,0,0,838.99219 +5430,6625,11852,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.4069448,7.4740324,5.3583655,0,0,-939.83673,0,3,3,2021,17,6,27,35,1,6,0,6.5505729,6.5505729,.05,.05,0,0,0,0,0,0,0,0,0,5.9434085,0,45.82,54.73,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,707,-15595.693,3238.3462,0,0,0,1813.9111,1581.3146 +5430,6626,11853,-9,11852,-9,1,1,24,0,0,0,2,2,-9,0,3,7.9166656,7.8867054,0,0,0,-977.34344,0,3,-9,2021,24,10,40,0,1,10,1,7.2443209,7.2443209,0,0,0,0,0,0,0,0,0,0,0,0,0,25.61,62.71,-9,-9,1.666666666666667,1,1,0,0,4,9,4,1,941,-34498.902,0,0,0,0,0,1354.6483 +5430,6627,11854,-9,11852,-9,1,1,20,0,0,0,2,2,-9,0,3,8.0175571,8.1007233,0,0,0,-966.55408,0,3,-9,2021,8,0,42,40,1,0,1,9.7760906,9.7760906,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,3452,14349.922,-68393.734,0,0,0,0,1337.3157 +5431,6628,11855,11856,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.3686323,9.3756952,0,6,1,-97.990456,0,3,2,2021,9,0,58,56,1,0,0,25.779213,25.779213,0,0,0,0,0,0,0,2,0,0,0,4.7674623,0,61.43,43.34,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,394,3380149.3,975779.5,954448.69,60173.668,0,0,5478.4023 +5431,6628,11856,11855,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.1053734,8.4832573,0,6,-1,-80.444908,0,1,1,2021,6,0,36,46,1,0,0,12.576762,12.576762,0,0,0,0,0,0,0,0,0,0,0,3.6900797,0,57.06,57.76,61.43,43.34,8.333333333333334,1,1,0,0,7,9,5,1,394,3380149.3,975779.5,954448.69,60173.668,0,0,5478.4023 +5431,6629,11857,-9,11856,11855,1,1,20,0,0,0,2,2,-9,0,5,0,6.6792593,6.7059798,0,0,-979.92584,1,1,1,2021,2,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9326668,0,54.57,60.2,-9,-9,0,1,1,0,0,1,9,2,1,1563,-227360.41,-26751.297,0,0,0,0,415.78384 +5432,6630,11858,11859,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,8.2481947,7.5680957,6,-2,54.135227,0,2,2,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4268141,7.5775099,62.39,56.71,58.89,48.6,10,1,1,0,0,2,9,3,1,1539,1024191,456505.63,548585.75,0,0,0,3124.7861 +5432,6630,11859,11858,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.0424337,6.905304,6,2,-33.441692,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1840181,7.4397063,58.89,48.6,62.39,56.71,10,1,1,0,0,1,9,3,1,1539,1024191,456505.63,548585.75,0,0,0,3124.7861 +5433,6631,11860,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.5325894,7.2851081,0,0,-1023.7515,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3038762,7.3096242,52,45,-9,-9,8,1,1,0,0,0,11,3,1,174,437715.16,199249.3,76292.359,0,0,0,1759.5394 +5434,6632,11861,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1221695,8.1153975,0,0,0,-977.97559,0,3,-9,2021,15,5,46,0,1,5,0,8.2343407,8.2343407,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.13,32.71,-9,-9,3.333333333333333,4,2,0,1,1,8,4,0,308,1125089,698355.5,510929.13,132643.16,0,0,1537.437 +5434,6633,11862,-9,11861,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1023.3858,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,55.21,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,103,8687.5654,0,0,0,0,0,198.6768 +5435,6634,11863,-9,-9,-9,1,0,34,0,1,0,2,2,-9,1,3,0,5.4340086,5.1329422,0,0,-955.00055,0,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.2724566,0,52.97,51.29,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,653,52401.27,0,0,0,0,0,1991.0117 +5435,6634,11864,-9,11863,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1061.1707,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,6,2,0,653,52401.27,0,0,0,0,0,1991.0117 +5436,6635,11865,11866,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.0379663,7.179297,46,2,-48.367287,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,.98722827,0,0,1,1,0,6.8957238,6.5765553,33.47,36.29,46.37,50.17,1.666666666666667,1,1,0,0,9,10,2,1,568.5,19850.156,44483.738,0,0,0,0,2131.197 +5436,6635,11866,11865,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,46,-2,-23.406843,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.7350471,0,46.37,50.17,33.47,36.29,8.333333333333334,1,1,0,0,0,10,2,1,568.5,19850.156,44483.738,0,0,0,0,2131.197 +5437,6636,11867,11868,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.5304108,7.5587964,7,3,-33.14941,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1770782,7.3348055,44.02,60.7,51.61,34.65,8.333333333333334,1,1,0,0,6,11,3,1,360,1331269.4,480192.78,353252.38,0,0,0,3864.3782 +5437,6636,11868,11867,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.0505996,6.218668,7,-3,-160.16573,0,1,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4632741,6.0004597,51.61,34.65,44.02,60.7,8.333333333333334,1,1,0,0,6,11,3,1,360,1331269.4,480192.78,353252.38,0,0,0,3864.3782 +5438,6637,11869,-9,11870,-9,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-927.82837,-9,2,-9,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64,54.36,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,1677.5,-15157.943,92286.625,99859.227,28942.563,0,0,973.17572 +5438,6637,11870,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5512924,7.5706468,6.1378746,0,0,-1023.7205,0,2,2,2021,12,1,30,0,1,1,0,6.6663837,6.6663837,.05,.05,0,0,0,0,0,0,1,1,0,6.3504791,0,47.84,45.32,-9,-9,6.666666666666667,1,1,0,0,8,10,3,1,1677.5,-15157.943,92286.625,99859.227,28942.563,0,0,973.17572 +5439,6638,11871,-9,11873,11872,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-949.2962,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,0,846.33331,232954.5,26282.949,272629.69,182869.58,6518.665,4172.2651,2569.0107 +5439,6638,11872,11873,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,8.3688402,8.2975721,0,3,0,33.635983,0,-9,-9,2021,6,0,48,50,1,0,0,12.874637,12.874637,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.29,46.01,10,1,1,0,0,11,13,4,0,846.33331,232954.5,26282.949,272629.69,182869.58,6518.665,4172.2651,2569.0107 +5439,6638,11873,11872,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.3453369,7.27281,0,3,0,-37.138969,0,2,2,2021,4,0,21,24,1,0,0,9.0555058,9.0555058,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.29,46.01,57.16,56.15,10,1,1,0,0,6,13,4,0,846.33331,232954.5,26282.949,272629.69,182869.58,6518.665,4172.2651,2569.0107 +5440,6639,11874,11875,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.445601,5.1432419,44,-1,-17.538355,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6433582,5.2911596,57.16,56.15,58.87,51.29,8.333333333333334,1,1,0,0,12,5,3,1,670.5,1352828.5,1049285.8,163518.25,0,0,0,2545.4946 +5440,6639,11875,11874,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,7.7180095,7.3822184,44,1,83.773262,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9285436,7.9106007,58.87,51.29,57.16,56.15,10,1,1,0,0,12,5,3,1,670.5,1352828.5,1049285.8,163518.25,0,0,0,2545.4946 +5441,6640,11876,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,6.9388967,6.5782261,0,0,0,-903.7356,0,-9,-9,2021,3,0,24,20,1,0,0,4.3897791,4.3897791,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,-9,-9,1.666666666666667,1,1,0,0,4,6,2,0,483,-106257.37,0,0,0,0,0,755.16412 +5442,6641,11877,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.2543902,7.3265014,0,0,-943.92926,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.3697069,7.5228009,54.37,44.27,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,263,389615.91,304168.63,217752.58,0,0,0,2113.6536 +5443,6642,11878,11879,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.7282991,9.0758181,0,9,-1,-15.057996,0,2,1,2021,7,0,50,60,1,0,0,19.625463,19.625463,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,71.10000000000001,28.41,8.333333333333334,1,1,0,0,7,9,5,1,1256.5,947520.19,205064.31,447179.97,0,0,430.04156,2938.4951 +5443,6642,11879,11878,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,33,1,12.957811,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,71.10000000000001,28.41,57.16,56.15,8.333333333333334,1,1,0,0,1,9,5,1,1256.5,947520.19,205064.31,447179.97,0,0,430.04156,2938.4951 +5443,6643,11880,-9,11879,11878,1,0,27,0,0,0,2,2,-9,0,4,7.81043,7.7299371,0,0,0,-884.65186,0,2,1,2021,11,0,40,0,1,2,1,6.6542196,6.6542196,.05,.05,0,0,0,0,0,0,1,1,0,.22061782,0,47,58,-9,-9,7,1,1,0,0,1,9,3,1,930,-18944.041,-61291.23,0,0,0,0,435.63846 +5443,6644,11881,-9,11879,11878,1,0,24,0,0,0,2,2,-9,0,4,6.5929132,6.5533957,0,0,0,-857.70685,0,2,1,2021,11,0,60,40,1,2,1,1.6626521,1.6626521,.05,.05,0,0,0,0,0,0,1,1,0,2.3072114,0,46,58,-9,-9,7,1,1,0,0,1,9,2,1,876,29591.145,0,0,0,0,0,-288.74319 +5443,6645,11882,-9,11879,11878,1,0,21,0,0,1,2,0,0,1,3,0,0,0,0,0,-942.48358,-9,2,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.85763496,0,53.35,26.74,-9,-9,6.666666666666667,1,1,0,0,5,9,1,1,477,-20087.373,0,0,0,0,0,573.36176 +5443,6646,11883,-9,11879,11878,1,1,18,0,0,0,2,2,1,0,5,7.7247009,7.7172327,0,0,0,-1010.6357,-9,2,1,2021,10,0,55,0,1,0,1,5.2312279,5.2312279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.34,58.54,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,514,-92216.375,-59658.25,0,0,0,3382.3926,481.69168 +5444,6647,11884,11885,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.5184069,8.3666506,0,19,15,-45.696732,0,3,2,2021,9,1,38,38,1,1,0,15.73219,15.73219,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.17,43.9,60.3,46.58,8.333333333333334,1,1,0,0,12,8,5,1,270,996682.5,2661.4292,843063.44,0,0,0,3678.7554 +5444,6647,11885,11884,11886,-9,1,0,52,0,0,0,1,1,-9,0,3,8.3604689,8.4706297,0,19,-15,-1.5298127,0,3,3,2021,8,0,43,44,1,0,0,12.441078,12.441078,0,0,0,0,0,0,0,2,1,1,0,0,0,60.3,46.58,55.17,43.9,8.333333333333334,3,4,0,0,12,8,5,1,270,996682.5,2661.4292,843063.44,0,0,0,3678.7554 +5444,6648,11886,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,5.4492216,5.7283907,0,0,-1010.2449,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3979616,63.1,37.54,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,949,5021.354,18024.303,0,0,0,0,500.77591 +5445,6649,11887,11888,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.5510545,6.6048288,9,4,11.415051,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8845539,6.4907775,51.95,24.82,52.37,56.93,5,1,1,0,0,1,10,2,1,985,248925.84,78402.453,190557.55,0,0,3569.8542,1954.1296 +5445,6649,11888,11887,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,0,0,9,-4,-159.41621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,51.95,24.82,8.333333333333334,1,1,0,0,1,10,2,1,985,248925.84,78402.453,190557.55,0,0,3569.8542,1954.1296 +5446,6650,11889,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,4.3950195,4.3670387,0,0,-989.50818,0,2,2,2021,26,9,0,0,4,9,0,0,0,0,0,0,1,0,10.27598,0,0,1,1,0,1.4079212,4.0200701,44.9,18.89,-9,-9,1.666666666666667,1,1,0,0,1,12,2,1,1778,377939.84,-13265.467,47293.664,0,0,0,373.64752 +5447,6651,11890,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-913.83429,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.82,46.06,-9,-9,5,1,1,0,0,0,7,1,0,806,-101565.77,0,0,0,0,0,1247.1406 +5448,6652,11891,11892,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.4910259,8.3850317,0,13,5,39.480118,0,-9,-9,2021,9,0,38,37,1,0,0,13.253108,13.253108,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,57.16,56.15,8.333333333333334,1,1,0,0,15,8,4,1,504.5,3685033.8,3390627,437380.5,118216.8,0,7875.2617,3948.0266 +5448,6652,11892,11891,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.5766497,8.1980982,0,13,-5,130.91362,0,3,3,2021,8,0,60,48,1,0,0,6.0294104,6.0294104,0,0,0,0,0,0,0,0,1,1,0,7.1432467,0,57.16,56.15,49.86,55.31,8.333333333333334,1,1,0,0,15,8,4,1,504.5,3685033.8,3390627,437380.5,118216.8,0,7875.2617,3948.0266 +5449,6653,11893,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,0,0,0,0,0,-901.94983,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,563,0,0,0,0,0,0,0 +5450,6654,11894,-9,11895,11896,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1034.8574,-9,1,1,2021,6,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,566,6159057.5,636960.88,364175.09,0,0,0,11837.604 +5450,6654,11895,11896,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,0,0,0,28,0,-80.959206,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,12,1,5,1,566,6159057.5,636960.88,364175.09,0,0,0,11837.604 +5450,6654,11896,11895,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.8503017,9.8478365,0,13,0,52.164848,0,-9,-9,2021,5,0,46,46,1,0,0,51.445717,51.445717,.05,.05,0,0,0,0,0,0,0,0,0,6.6300731,0,62.39,56.71,57.06,57.76,10,1,1,0,0,11,1,5,1,566,6159057.5,636960.88,364175.09,0,0,0,11837.604 +5451,6655,11897,-9,11898,11899,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1043.7467,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11898,11899,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,0,6.082562,6.0463715,1,3,41.649517,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7503371,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11899,11898,-9,-9,1,1,42,0,3,0,2,2,-9,0,4,8.7913885,8.675972,0,1,-3,-68.384605,-9,2,2,2021,10,0,50,0,1,0,0,10.636819,10.636819,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,10,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11900,-9,11898,11899,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.5265,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5451,6655,11901,-9,11898,11899,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-962.646,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,1253.2,64735.219,108265.62,95665.695,24691.373,1769.9323,0,3458.877 +5452,6656,11902,-9,-9,-9,1,0,33,0,4,0,2,2,-9,1,2,0,0,0,0,0,-1050.739,0,2,-9,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,30.65,40.19,-9,-9,5,1,1,0,1,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5452,6656,11903,-9,11902,-9,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.3011,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5452,6656,11904,-9,11902,-9,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-912.51025,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5452,6656,11905,-9,11902,-9,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1042.7747,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,1,0,580.75,-98041.125,0,0,0,0,0,2861.699 +5453,6657,11906,11907,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2105932,6.6085258,8,4,-87.594879,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2715666,6.4132538,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,4,7,3,1,708.5,1245684.9,469506.25,428893,0,0,0,1672.0753 +5453,6657,11907,11906,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.3349733,7.4245071,8,-4,70.702499,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9088449,7.4983377,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,9,7,3,1,708.5,1245684.9,469506.25,428893,0,0,0,1672.0753 +5454,6658,11908,11909,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.0640106,7.9963808,0,18,8,-158.75134,0,2,2,2021,12,0,35,36,1,0,0,10.507549,10.507549,.05,.05,0,0,0,0,0,0,0,0,0,4.9523187,0,48.87,58.55,42.62,43.78,6.666666666666667,1,1,0,0,10,2,5,1,1927,1003775.6,898969,0,0,9825.7432,0,4066.6331 +5454,6658,11909,11908,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.9273634,9.1032333,0,18,-8,-10.500703,0,2,2,2021,23,11,40,43,1,11,0,19.594704,19.594704,.05,.05,0,0,0,0,0,0,0,0,0,4.7675953,0,42.62,43.78,48.87,58.55,6.666666666666667,1,1,0,0,8,2,5,1,1927,1003775.6,898969,0,0,9825.7432,0,4066.6331 +5455,6659,11910,-9,-9,-9,1,0,30,1,3,0,2,2,-9,0,1,6.9007468,6.6508002,0,0,0,-858.80847,-9,2,2,2021,25,10,18,0,1,10,0,5.3848701,5.3848701,0,0,0,0,0,0,0,108,1,1,0,0,0,16.46,56.6,-9,-9,1.666666666666667,1,1,0,0,3,12,2,0,1441,-29528.646,0,0,0,9112.0244,0,1339.1591 +5455,6659,11911,-9,11910,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-929.50256,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,1441,-29528.646,0,0,0,9112.0244,0,1339.1591 +5455,6659,11912,-9,11910,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-981.25659,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1441,-29528.646,0,0,0,9112.0244,0,1339.1591 +5456,6660,11913,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-945.58545,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,2.4471953,0,21.996544,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,4,1,0,738,19914.963,0,0,0,0,0,1143.4491 +5457,6661,11914,-9,-9,-9,1,1,21,0,0,0,2,2,-9,1,3,8.3145676,8.5934753,0,0,0,-924.48895,0,-9,-9,2021,16,4,38,0,1,4,0,12.05676,12.05676,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,51.16,-9,-9,8.333333333333334,1,1,0,0,4,9,4,0,366,145730.25,182044.53,0,0,0,-1031.7606,2266.2778 +5458,6662,11915,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.3154974,8.1568804,2.0901325,0,0,-932.67432,0,3,3,2021,9,0,38,38,1,0,0,10.262079,10.262079,0,0,0,0,0,0,0,0,0,0,0,0,2.2339256,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,240,-134281.95,0,0,0,2125.3965,0,1950.7639 +5458,6663,11916,-9,-9,11915,1,1,33,0,0,0,2,2,-9,0,3,7.7026033,7.6040397,0,0,0,-955.0144,0,-9,3,2021,9,0,40,39,1,0,1,5.6787176,5.6787176,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,13,2,3,1,412,50545.559,38596.656,0,0,7859.7715,3380.6069,1350.2498 +5459,6664,11917,11918,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,8.0405769,8.2088737,46,0,-62.898773,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7474732,8.3677301,62.49,55.09,37.77,24.67,8.333333333333334,1,1,0,0,4,7,4,1,274,2753296.8,1431970.8,479543.75,0,0,0,3992.4404 +5459,6664,11918,11917,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.5533562,6.900228,46,0,-99.92205,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0980191,37.77,24.67,62.49,55.09,3.333333333333333,1,1,0,0,3,7,4,1,274,2753296.8,1431970.8,479543.75,0,0,0,3992.4404 +5460,6665,11919,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.6299801,8.7484856,0,0,0,-994.57617,0,-9,-9,2021,13,3,35,35,1,3,0,18.799078,18.799078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,11,4,5,0,949,-16025.076,30077.996,0,0,0,0,1181.3263 +5461,6666,11920,11921,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,7.6314206,7.7590618,26,5,-76.254364,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,8.7328682,0,60.02,56.42,52.31,58.29,10,1,1,0,0,3,9,5,1,1993,2151438,1009678.4,758193.31,0,0,0,4757.3018 +5461,6666,11921,11920,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.3333988,9.2960682,0,25,-5,-14.581932,0,3,3,2021,8,1,45,53,1,1,0,24.641588,24.641588,0,0,0,0,0,0,0,0,0,0,0,3.7544265,0,52.31,58.29,60.02,56.42,8.333333333333334,1,1,0,0,14,9,5,1,1993,2151438,1009678.4,758193.31,0,0,0,4757.3018 +5462,6667,11922,-9,-9,-9,1,1,27,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1110.1329,0,3,-9,2021,31,11,0,37,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.94,24,-9,-9,1.666666666666667,1,1,0,1,2,8,1,0,625,-69072.711,0,0,0,0,0,1072.7316 +5463,6668,11923,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,6.8486104,7.6930733,6.9690228,0,0,-1048.9911,0,3,2,2021,6,0,60,60,1,0,0,1.9311204,1.9311204,0,0,0,0,0,0,0,0,1,1,0,4.2522616,7.3054762,45.63,53.02,-9,-9,10,1,1,0,0,10,10,3,1,993,0,0,0,0,0,0,923.56897 +5464,6669,11924,-9,-9,-9,1,0,58,0,1,0,1,1,-9,0,4,9.2334003,9.103075,0,0,0,-1034.4655,0,3,2,2021,12,2,30,32,1,2,0,41.135845,41.135845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.32,53.91,-9,-9,8.333333333333334,1,1,0,0,15,6,5,1,1298,140810.47,103716.09,0,0,9883.5313,0,3121.9243 +5465,6670,11925,11926,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.6282377,7.6773934,8,-3,64.216652,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0378933,47.97,48.24,60.11,39.83,8.333333333333334,1,1,0,0,1,4,4,1,993.5,797242.38,475633.59,339238.25,0,3642.8877,0,2525.2563 +5465,6670,11926,11925,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.938457,7.8676915,0,8,3,-69.266357,0,3,3,2021,6,0,38,38,1,0,0,9.4567308,9.4567308,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.11,39.83,47.97,48.24,6.666666666666667,1,1,0,0,9,4,4,1,993.5,797242.38,475633.59,339238.25,0,3642.8877,0,2525.2563 +5465,6671,11927,-9,11925,11926,1,1,22,0,0,0,2,2,-9,0,4,7.7397327,7.9083347,0,0,0,-1034.8268,0,2,2,2021,7,0,45,44,1,0,1,5.9364829,5.9364829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.62,56.48,-9,-9,6.666666666666667,1,1,0,0,5,4,3,1,184,-140610.45,-34964.492,0,0,0,0,782.5918 +5465,6672,11928,-9,11925,11926,1,0,19,0,0,0,2,2,-9,0,2,7.932312,7.7926345,0,0,0,-1027.489,0,2,2,2021,15,3,25,20,1,3,1,12.772469,12.772469,0,0,0,0,0,0,0,0,0,0,0,0,0,37.87,42.28,-9,-9,6.666666666666667,1,1,0,0,2,4,4,1,343,-283543.59,0,0,0,607.54321,1649.1177,1159.3623 +5466,6673,11929,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.5731573,7.9328489,0,0,-1139.9879,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5874457,7.57932,50.89,46.77,-9,-9,6.666666666666667,3,4,0,0,1,8,3,1,1394,1177222.8,670653.81,486395,20690.422,0,0,2347.5642 +5466,6674,11930,-9,11931,-9,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1087.0524,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,4,1,769.5,735678.25,159125.16,429531.56,0,0,0,1755.354 +5466,6674,11931,-9,11929,-9,1,0,40,0,0,0,1,1,-9,0,3,8.2130642,8.1877518,0,0,0,-1009.5446,0,1,1,2021,18,6,35,41,1,6,0,10.911861,10.911861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.54,54.48,-9,-9,3.333333333333333,3,4,0,0,4,8,4,1,769.5,735678.25,159125.16,429531.56,0,0,0,1755.354 +5467,6675,11932,-9,-9,-9,1,0,40,0,0,0,2,2,-9,1,1,7.5022502,7.5348177,5.7833257,0,0,-1011.6822,-9,3,2,2021,28,11,32,0,1,11,0,7.5461903,7.5461903,.05,.05,0,0,0,0,0,0,1,0,1,5.2872109,0,39.63,18.58,-9,-9,3.333333333333333,1,1,0,0,11,1,3,0,191,113537.8,-97729.008,0,0,0,153.87172,1613.2753 +5467,6676,11933,-9,11932,-9,1,1,18,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1045.7578,-9,2,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,434,0,0,0,0,0,0,0 +5468,6677,11934,11935,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.0518551,6.8800406,43,-1,17.209366,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.3827848,7.6108298,46.28,62.6,52.39,45.21,8.333333333333334,1,1,0,0,5,10,5,1,139.5,979598.56,540052.38,490226.06,0,0,417.11414,4694.2598 +5468,6677,11935,11934,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.9998798,8.9332237,0,42,1,-12.728874,0,2,3,2021,10,0,20,25,1,0,0,42.369972,42.369972,.05,.05,0,0,0,0,0,0,0,0,0,4.0342369,0,52.39,45.21,46.28,62.6,6.666666666666667,1,1,0,0,11,10,5,1,139.5,979598.56,540052.38,490226.06,0,0,417.11414,4694.2598 +5469,6678,11936,11937,-9,-9,1,1,25,1,1,0,2,2,-9,0,2,8.1765652,7.9143844,0,1,3,42.827095,-9,-9,-9,2021,21,7,55,0,1,7,0,10.142101,10.142101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.81,40.59,52.6,52.88,5,1,1,0,0,8,6,4,0,738,173848.73,-11333.934,239618.22,140213.66,16872.096,0,2246.2646 +5469,6678,11937,11936,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,7.0229111,7.3672862,0,1,-3,46.812107,-9,-9,-9,2021,6,0,25,0,1,0,0,6.1248159,6.1248159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,26.81,40.59,8.333333333333334,1,1,0,0,5,6,4,0,738,173848.73,-11333.934,239618.22,140213.66,16872.096,0,2246.2646 +5469,6678,11938,-9,11937,11936,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.0325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,738,173848.73,-11333.934,239618.22,140213.66,16872.096,0,2246.2646 +5470,6679,11939,11940,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.2327337,8.2512102,0,19,16,-35.677197,0,2,3,2021,17,5,32,30,1,5,0,14.161101,14.161101,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.69,23.86,48.21,53.41,3.333333333333333,1,1,0,0,14,10,4,0,563,563591,467955.88,344149.44,0,4043.9072,0,2529.3752 +5470,6679,11940,11939,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.0375357,8.5082884,0,19,-16,-110.38937,0,3,2,2021,13,2,38,38,1,2,0,10.309681,10.309681,.05,.05,0,0,0,0,0,7,0,0,0,0,0,48.21,53.41,33.69,23.86,8.333333333333334,1,1,0,0,14,10,4,0,563,563591,467955.88,344149.44,0,4043.9072,0,2529.3752 +5471,6680,11941,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,1,0,6.7638664,7.248343,0,0,-940.13818,-9,2,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,1.631713,0,20.317795,0,1,1,0,4.4023066,6.785749,41.64,15.05,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,656,400832.09,168068.67,0,0,0,0,520.59595 +5472,6681,11942,11943,-9,-9,1,0,66,1,3,0,3,3,-9,0,1,0,0,0,8,-17,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,10.330074,0,0,1,1,0,0,0,53.07,23.39,60.89,44.94,10,2,3,0,0,0,5,1,1,1416,155246.53,75787.063,0,0,0,0,448.61996 +5472,6681,11943,11942,-9,-9,1,1,83,1,3,0,2,2,-9,0,3,0,0,0,8,17,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.72459984,0,0,1,1,0,0,0,60.89,44.94,53.07,23.39,10,2,3,0,0,0,5,1,1,1416,155246.53,75787.063,0,0,0,0,448.61996 +5472,6682,11944,11945,-9,-9,1,0,48,1,3,0,1,1,-9,0,2,6.6222963,6.7724423,0,8,1,11.141684,0,-9,-9,2021,11,0,14,12,1,0,0,6.5952387,6.5952387,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,32.49,63.55,29.17,6.666666666666667,2,3,0,0,3,5,2,1,632,100208.61,0,85861.055,0,1676.0687,0,2968.8142 +5472,6682,11945,11944,11942,11943,1,1,47,1,3,0,2,2,-9,0,2,7.2110939,7.011816,0,26,-1,27.158714,0,2,2,2021,10,0,22,24,1,0,0,8.8174524,8.8174524,0,0,0,0,0,0,0,0,1,1,0,6.9629555,0,63.55,29.17,59.7,32.49,5,2,3,0,0,10,5,2,1,632,100208.61,0,85861.055,0,1676.0687,0,2968.8142 +5472,6683,11946,11947,-9,-9,1,0,36,1,3,0,3,3,-9,0,3,0,0,0,8,0,-23.67466,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,42.42,50.43,8.333333333333334,2,3,0,0,0,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6683,11947,11946,11942,11943,1,1,36,1,3,0,2,2,-9,0,4,7.1232319,7.380527,0,8,0,-98.931923,0,3,2,2021,12,0,40,45,1,0,0,3.0868084,3.0868084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.42,50.43,57.33,53.46,5,2,3,0,0,9,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6683,11948,-9,11946,11947,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-977.57745,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6683,11949,-9,11946,11947,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.7092,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,1,686.25,72976.688,-41752.668,141776.33,62125.953,0,0,1158.6775 +5472,6684,11950,-9,11944,11945,1,0,20,1,3,1,2,0,0,0,1,0,0,0,0,0,-1041.233,-9,1,2,2021,30,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.78,33.65,-9,-9,1.666666666666667,2,3,0,0,0,5,1,1,1548,65989.773,0,0,0,0,184.80867,0 +5473,6685,11951,11952,-9,-9,1,1,49,1,1,0,2,2,-9,0,3,9.7170696,9.6305828,0,3,14,-50.77541,0,-9,-9,2021,23,9,55,60,1,9,0,34.600407,34.600407,.05,.05,0,0,0,0,.50390917,0,1,1,0,0,0,24.94,61.65,26.56,54.71,1.666666666666667,1,1,0,1,3,9,5,0,456.66666,753170.31,-47085.324,665089.19,0,12617.386,0,9994.624 +5473,6685,11952,11951,-9,-9,1,0,35,1,1,0,2,2,-9,0,2,6.9088759,7.0768814,0,3,-14,-3.6451149,0,2,2,2021,19,7,16,0,1,7,0,7.0976686,7.0976686,0,0,0,0,0,0,0,0,1,1,0,0,0,26.56,54.71,24.94,61.65,1.666666666666667,1,1,0,1,6,9,5,0,456.66666,753170.31,-47085.324,665089.19,0,12617.386,0,9994.624 +5473,6685,11953,-9,11952,11951,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.9154,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,456.66666,753170.31,-47085.324,665089.19,0,12617.386,0,9994.624 +5474,6686,11954,11955,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,4.7585168,5.3024602,51,-2,20.585592,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.1570978,4.9727302,55.34,54.26,55.03,11.91,8.333333333333334,1,1,0,0,3,5,2,0,441.5,642811.25,219707.25,225676.44,0,0,0,2000.3623 +5474,6686,11955,11954,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7501607,7.011404,51,2,-17.288364,0,3,3,2021,11,4,0,0,4,4,0,0,0,0,0,0,1,0,121.87712,0,0,1,1,0,5.4635639,6.9476171,55.03,11.91,55.34,54.26,8.333333333333334,1,1,0,0,0,5,2,0,441.5,642811.25,219707.25,225676.44,0,0,0,2000.3623 +5475,6687,11956,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.5861,-9,-9,2,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,4.719501,0,45.83,54.52,-9,-9,5,1,1,1,0,0,11,1,0,310,-38761.316,0,0,0,0,0,748.65137 +5475,6688,11957,-9,-9,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-936.5224,0,-9,-9,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.18,22.84,-9,-9,0,1,1,0,1,0,11,1,0,440,-114529.35,23993.473,0,0,-61.123421,0,1513.74 +5476,6689,11958,11959,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,9.7644386,9.5487862,0,20,0,-78.649582,0,3,2,2021,12,0,40,44,1,0,0,30.237206,30.237206,.05,.05,0,0,0,0,0,0,0,0,0,3.986393,0,40.38,61.66,54.2,57.49,6.666666666666667,1,1,0,0,13,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5476,6689,11959,11958,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.78862,8.5722809,0,20,0,6.621654,0,1,1,2021,2,0,47,45,1,0,0,15.927616,15.927616,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,40.38,61.66,8.333333333333334,2,3,0,0,13,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5476,6689,11960,-9,11959,11958,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.2524,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5476,6689,11961,-9,11959,11958,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.43005,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,412.5,4962903,2601725.8,1079920.4,159628.2,0,0,9279.0586 +5477,6690,11962,11964,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,0,0,0,7,3,54.97562,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,0,0,0,2.7578413,0,57.06,57.76,51,56,10,1,1,0,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11963,-9,11962,11964,1,0,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-984.07733,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,10,1,1,0,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11964,11962,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.7095375,9.4197454,0,7,-3,24.440857,0,-9,-9,2021,9,0,70,65,1,1,0,19.948151,19.948151,.05,.05,0,0,0,0,0,0,0,0,0,4.3351064,0,51,56,57.06,57.76,8,1,1,0,0,1,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11965,-9,11962,11964,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.5002,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5477,6690,11966,-9,11962,11964,1,0,14,0,3,1,3,0,-9,0,5,0,0,0,0,0,-950.84485,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,4,1,931.79999,259120.47,75647.703,333146.25,269208.44,0,0,4283.1162 +5478,6691,11967,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.6000328,8.4976168,0,0,0,-918.22821,0,3,1,2021,13,1,15,55,1,1,0,40.542297,40.542297,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,1,11,1,5,0,632,-12192.563,-196.72406,0,0,0,0,2594.791 +5479,6692,11968,-9,11970,11969,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-905.22235,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,10,2,1,427,165238.84,126116.13,249255.23,90335.875,2701.8853,5908.7617,1265.7238 +5479,6692,11969,11970,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,1.7633198,1.9419862,0,10,2,-3.045404,0,-9,-9,2021,11,0,40,45,1,0,0,.017015772,.017015772,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.75,49.75,33.49,64.26000000000001,8.333333333333334,1,1,0,1,12,10,2,1,427,165238.84,126116.13,249255.23,90335.875,2701.8853,5908.7617,1265.7238 +5479,6692,11970,11969,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.3606267,7.3876557,0,23,-2,22.698587,0,-9,-9,2021,12,0,24,14,1,0,0,6.1752014,6.1752014,0,0,0,0,0,0,0,0,1,1,0,.9074074,0,33.49,64.26000000000001,53.75,49.75,8.333333333333334,1,1,0,1,12,10,2,1,427,165238.84,126116.13,249255.23,90335.875,2701.8853,5908.7617,1265.7238 +5479,6693,11971,-9,11970,11969,1,0,18,0,1,0,2,2,-9,0,4,6.893621,6.8715515,0,0,0,-1030.8484,0,2,3,2021,12,0,21,0,1,2,1,6.1142793,6.1142793,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.8,57.89,-9,-9,6,1,1,0,0,1,10,2,1,162,74498.258,-66669.273,0,0,0,1398.8826,1611.5299 +5480,6694,11972,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.5286155,6.6797924,0,0,-919.26703,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5029483,43.09,34.34,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,244,598533.13,12905.157,260488.27,0,0,0,124.21722 +5481,6695,11973,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-997.88727,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.17,30.87,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1495,14688.162,0,0,0,0,0,1601.5782 +5482,6696,11974,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.5858908,7.8464594,0,0,0,-1017.9394,0,-9,-9,2021,10,0,40,39,1,0,0,8.7580547,8.7580547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.40000000000001,36.46,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,322,142771.02,126434.94,0,0,0,0,1737.3607 +5483,6697,11975,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,1,8.5752687,8.0679674,0,0,0,-1017.6516,0,1,1,2021,14,2,61,0,1,2,0,6.9081578,6.9081578,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.58,51.33,-9,-9,3.333333333333333,1,1,0,1,10,8,4,0,313,19511.602,29321.449,0,0,19077.479,0,1948.491 +5484,6698,11976,11977,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.4556122,7.7422662,0,27,-8,46.489067,0,-9,-9,2021,11,0,25,20,1,0,0,9.9740705,9.9740705,0,0,0,0,0,0,0,0,0,0,0,0,0,53.73,52.79,21.01,51.73,8.333333333333334,1,1,0,0,10,5,4,0,3071,-22111.529,-29572.219,22160.195,-704.479,15020.072,0,2600.7656 +5484,6698,11977,11976,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.0516825,8.084631,0,27,8,76.949699,0,-9,-9,2021,26,12,60,45,1,12,0,4.8804383,4.8804383,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.01,51.73,53.73,52.79,3.333333333333333,1,1,0,0,9,5,4,0,3071,-22111.529,-29572.219,22160.195,-704.479,15020.072,0,2600.7656 +5484,6699,11978,-9,11976,11977,1,0,22,0,0,0,2,2,-9,0,5,8.0164051,7.3264027,0,0,0,-1007.2913,0,2,2,2021,21,8,40,16,1,8,1,8.1537313,8.1537313,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.4,56.89,-9,-9,10,1,1,0,0,1,5,3,0,391,-73790.789,116706.69,0,0,5243.9414,0,997.9361 +5485,6700,11979,11980,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.3263717,5.7729998,30,-3,30.348053,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4336858,68.2,36.22,53,47,10,1,1,0,0,0,10,2,0,2623.5,656866.38,210424.89,240702.56,0,0,0,1406.7206 +5485,6700,11980,11979,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.8641524,6.68893,30,3,20.881088,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,5.8014693,0,0,1,1,0,0,6.4805093,53,47,68.2,36.22,10,1,1,0,0,3,10,2,0,2623.5,656866.38,210424.89,240702.56,0,0,0,1406.7206 +5486,6701,11981,-9,11983,-9,1,1,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.38959,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5486,6701,11982,-9,11983,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.3391,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5486,6701,11983,-9,-9,-9,1,0,40,1,3,0,3,3,-9,1,4,0,0,0,0,0,-1060.6727,0,3,3,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,58.15,52.91,-9,-9,5,1,1,0,0,1,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5486,6701,11984,-9,11983,-9,1,1,16,1,3,1,3,0,-9,0,3,0,0,0,0,0,-821.41742,-9,3,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.93,44.84,-9,-9,10,1,1,0,0,0,7,1,0,1359.5,-141191.72,0,0,0,0,0,2337.9141 +5487,6702,11985,11986,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,6.8988347,6.7422471,0,29,-2,31.900223,0,2,2,2021,6,0,12,15,1,0,0,7.3441763,7.3441763,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,12,4,4,1,739.5,-27835.348,30491.367,0,0,5073.4648,0,1676.906 +5487,6702,11986,11985,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.7796907,8.1587601,0,9,2,-148.45168,0,-9,-9,2021,6,0,45,40,1,0,0,7.4015536,7.4015536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,12,4,4,1,739.5,-27835.348,30491.367,0,0,5073.4648,0,1676.906 +5487,6703,11987,-9,11985,11986,1,0,21,0,0,0,2,2,0,0,5,0,0,0,0,0,-998.69403,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,8.333333333333334,2,3,0,0,3,4,1,1,702,-53894.555,0,0,0,0,0,0 +5487,6704,11988,-9,11985,11986,1,1,23,0,0,0,2,2,-9,0,5,8.2089691,8.0195789,0,0,0,-909.89258,0,2,2,2021,5,0,37,36,1,0,1,7.7182226,7.7182226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,67.92,41.85,-9,-9,10,2,3,0,0,9,4,4,1,447,-218462.47,7811.1729,0,0,0,0,677.47766 +5488,6705,11989,11990,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,7.9904718,7.5222211,38,5,160.69943,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3776155,7.2401834,51.73,58.82,62.49,55.09,8.333333333333334,1,1,0,0,8,12,4,1,1382.5,626897.25,825577.88,0,0,0,576.30487,2296.5667 +5488,6705,11990,11989,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.3385067,7.7906642,6.9020648,38,-5,14.597087,0,2,2,2021,1,0,18,25,1,0,0,11.074574,11.074574,0,0,0,0,0,0,0,0,0,0,0,4.5186934,7.0307813,62.49,55.09,51.73,58.82,10,1,1,0,0,10,12,4,1,1382.5,626897.25,825577.88,0,0,0,576.30487,2296.5667 +5489,6706,11991,11993,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.6540403,8.555048,0,3,10,-143.83865,0,1,2,2021,6,0,50,49,1,0,0,14.58111,14.58111,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.84,49.17,8.333333333333334,1,1,0,0,9,7,4,0,1721,135873.17,-7860.98,0,0,0,0,2490.3469 +5489,6706,11992,-9,11993,11991,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.2434,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,1721,135873.17,-7860.98,0,0,0,0,2490.3469 +5489,6706,11993,11991,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,6.4818482,6.4371409,0,3,-10,81.806862,0,2,1,2021,14,2,12,30,1,2,0,5.8608284,5.8608284,0,0,0,0,0,0,0,0,1,1,0,.19336081,0,51.84,49.17,57.16,56.15,10,1,1,0,0,6,7,4,0,1721,135873.17,-7860.98,0,0,0,0,2490.3469 +5490,6707,11994,11995,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8963642,9.0340357,0,31,5,-44.670177,0,3,3,2021,12,0,52,48,1,0,0,14.39014,14.39014,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.17,47.9,58.75,37.87,6.666666666666667,1,1,0,0,11,6,5,1,1111.5,896394.75,744782.69,339250,0,2049.2576,79.888748,3584.1021 +5490,6707,11995,11994,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9042339,7.8027539,0,31,-5,60.178257,0,3,-9,2021,8,0,32,34,1,0,0,8.5115509,8.5115509,.05,.05,0,0,0,0,0,7,0,0,0,5.3723884,0,58.75,37.87,37.17,47.9,6.666666666666667,1,1,0,0,11,6,5,1,1111.5,896394.75,744782.69,339250,0,2049.2576,79.888748,3584.1021 +5491,6708,11996,-9,11997,-9,1,1,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1079.041,-9,2,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,5,0,686.66669,203627.91,99878.797,293812.59,139396.81,45991.477,18333.402,2155.335 +5491,6708,11997,11998,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.0920582,8.1837587,0,4,4,71.576401,0,3,3,2021,12,0,39,32,1,0,0,10.390933,10.390933,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,52.88,57.33,53.46,6.666666666666667,1,1,0,0,9,12,5,0,686.66669,203627.91,99878.797,293812.59,139396.81,45991.477,18333.402,2155.335 +5491,6708,11998,11997,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.4229574,8.4001379,0,4,-4,-74.282097,0,-9,-9,2021,12,0,46,46,1,0,0,10.969882,10.969882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.11,52.88,6.666666666666667,1,1,0,0,4,12,5,0,686.66669,203627.91,99878.797,293812.59,139396.81,45991.477,18333.402,2155.335 +5491,6709,11999,-9,11997,-9,1,0,20,0,0,0,2,2,-9,0,4,7.8136506,8.0562601,0,0,0,-1015.7363,-9,2,-9,2021,10,0,24,0,1,0,1,12.324114,12.324114,0,0,0,0,0,0,0,0,0,0,0,0,0,44.05,55.39,-9,-9,10,1,1,0,0,4,12,3,0,171,-136776.77,0,0,0,0,0,1731.8859 +5492,6710,12000,-9,12001,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-951.7309,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,6,5,1,953.5,220778.89,156417.19,291137.94,86785.453,0,-320.90039,8200.0088 +5492,6710,12001,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,10.021194,9.6952133,7.346508,0,0,-1071.8319,0,2,2,2021,12,0,40,40,1,0,0,52.513,52.513,.05,.05,0,0,0,0,0,0,1,1,0,8.1835337,0,51.24,58.84,-9,-9,5,1,1,0,0,15,6,5,1,953.5,220778.89,156417.19,291137.94,86785.453,0,-320.90039,8200.0088 +5493,6711,12002,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9367948,8.060751,0,0,0,-920.14301,0,3,-9,2021,6,0,32,40,1,0,0,6.9705901,6.9705901,0,0,0,0,0,0,0,27,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,14,12,3,0,204,-40069.48,0,87468.344,0,779.05078,0,805.35583 +5494,6712,12003,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.139287,8.0029287,0,0,0,-984.20789,0,3,2,2021,8,0,39,39,1,0,0,7.2328286,7.2328286,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,3.333333333333333,1,1,0,0,6,12,3,1,1397,194884.75,0,0,0,0,0,900.09595 +5495,6713,12004,12005,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.4947028,7.234211,0,2,3,106.34457,0,-9,-9,2021,12,0,22,22,1,0,0,7.2791705,7.2791705,0,0,0,0,0,0,0,0,1,1,0,1.2849553,0,37.17,31.84,49.25,61.25,5,1,1,0,1,12,11,3,0,421,227342.7,-19867.494,174213.06,92870.383,0,1338.3037,1572.7788 +5495,6713,12005,12004,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,7.6916876,7.0653281,0,2,-3,55.398064,0,2,2,2021,9,0,33,33,1,0,0,6.0793209,6.0793209,.05,.05,0,0,0,0,0,0,1,1,0,2.7734232,0,49.25,61.25,37.17,31.84,8.333333333333334,1,1,0,0,12,11,3,0,421,227342.7,-19867.494,174213.06,92870.383,0,1338.3037,1572.7788 +5496,6714,12006,12007,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1433725,8.2089596,0,13,7,16.813507,0,2,2,2021,9,0,45,45,1,0,0,7.6813293,7.6813293,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,9,7,4,1,443.5,894203.5,492495.63,336231.19,0,1953.3303,0,2648.1189 +5496,6714,12007,12006,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1191607,8.18783,0,14,-7,94.993896,0,2,2,2021,10,0,38,45,1,0,0,11.817158,11.817158,0,0,0,0,0,0,0,0,0,0,0,4.3767581,0,54.2,57.49,54.79,55.86,8.333333333333334,1,1,0,0,9,7,4,1,443.5,894203.5,492495.63,336231.19,0,1953.3303,0,2648.1189 +5497,6715,12008,12009,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.2144318,6.1310701,63,-4,65.763405,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3946748,6.5808105,44.72,36.6,29.12,23.03,5,1,1,0,0,0,4,2,1,531,203530.77,213692.98,132670.58,0,0,0,2535.3965 +5497,6715,12009,12008,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.8688517,6.6933928,63,4,-26.289246,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,0,10.407656,0,0,1,1,0,7.019455,6.6924868,29.12,23.03,44.72,36.6,5,1,1,0,0,0,4,2,1,531,203530.77,213692.98,132670.58,0,0,0,2535.3965 +5498,6716,12010,-9,-9,-9,1,1,48,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1065.7759,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,33.73,21.25,-9,-9,5,1,1,0,0,0,5,1,0,243,170845.77,0,0,0,0,0,2136.1072 +5499,6717,12011,-9,12012,12013,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-909.81348,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,5,1,277.66666,292240.78,134282.06,221158.41,91292.484,0,17822.145,4484.4355 +5499,6717,12012,12013,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,0,0,0,10,0,-124.60849,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,3,11,5,1,277.66666,292240.78,134282.06,221158.41,91292.484,0,17822.145,4484.4355 +5499,6717,12013,12012,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.0941057,8.8441124,0,10,9,-7.8778586,0,2,2,2021,12,0,60,60,1,0,0,16.128777,16.128777,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,11,11,5,1,277.66666,292240.78,134282.06,221158.41,91292.484,0,17822.145,4484.4355 +5500,6718,12014,12015,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.8663311,8.8314066,0,10,-1,-44.874393,0,-9,-9,2021,22,10,45,40,1,10,0,10.697103,10.697103,0,0,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,44.01,45.59,6.666666666666667,1,1,0,0,5,12,5,1,680.5,367280.69,233999.03,232320.84,83194.75,0,0,2211.4336 +5500,6718,12015,12014,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.804811,7.7885656,0,10,1,6.2366009,0,3,3,2021,13,3,30,30,1,3,0,10.841224,10.841224,0,0,.05,0,0,0,0,0,0,0,0,0,0,44.01,45.59,32.95,64.54000000000001,5,1,1,0,0,14,12,5,1,680.5,367280.69,233999.03,232320.84,83194.75,0,0,2211.4336 +5501,6719,12016,12017,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.1706038,6.7872362,0,11,-7,-90.183929,0,2,2,2021,9,1,17,19,1,1,0,7.3417029,7.3417029,0,0,0,0,0,0,0,2,0,0,0,0,0,54.37,54.8,54.96,53.17,6.666666666666667,1,1,0,0,14,10,3,1,721.5,137812.03,56491.406,266974.75,144275.44,0,2744.176,1474.1606 +5501,6719,12017,12016,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.9538698,7.9703083,0,11,7,-82.435776,0,-9,-9,2021,6,0,44,43,1,0,0,7.9437013,7.9437013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.37,54.8,5,1,1,0,0,14,10,3,1,721.5,137812.03,56491.406,266974.75,144275.44,0,2744.176,1474.1606 +5501,6720,12018,-9,12016,12017,1,0,23,0,0,0,2,2,-9,0,4,7.4942541,7.6444387,0,0,0,-1078.0753,0,2,2,2021,18,6,26,40,1,6,1,7.6829886,7.6829886,0,0,0,0,0,0,0,0,0,0,0,4.9866786,0,46.56,57.02,-9,-9,8.333333333333334,1,1,0,0,6,10,3,1,424,45114.848,0,0,0,0,0,1025.3555 +5501,6721,12019,-9,12016,12017,1,0,20,0,0,0,2,2,-9,0,5,7.4553199,7.5026116,0,0,0,-1121.5469,0,2,2,2021,24,8,25,25,1,8,1,6.39364,6.39364,0,0,0,0,0,0,0,0,0,0,0,.37651062,0,27.75,69.57000000000001,-9,-9,6.666666666666667,1,1,0,0,3,10,3,1,924,97537.992,0,0,0,0,0,461.60962 +5502,6722,12020,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.4513121,8.3136225,0,0,-827.07538,0,-9,1,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1053414,8.5245771,54.74,57.22,-9,-9,10,1,1,0,0,0,10,4,0,390,716634.63,810709.06,155172.66,44998.008,3777.0901,0,2869.9346 +5503,6723,12021,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-920.65894,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,4.2386761,0,2,1,1,0,0,0,49.93,16.26,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,569,-211148.86,0,0,0,0,0,1974.0863 +5504,6724,12022,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.923491,7.7570992,0,0,0,-999.42969,-9,3,3,2021,18,6,43,0,1,6,0,4.7386985,4.7386985,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.55,33.8,-9,-9,8.333333333333334,1,1,0,1,8,11,3,0,1174,-104268.95,34653.801,0,0,0,0,757.84045 +5504,6725,12023,-9,12022,-9,1,0,33,0,0,0,2,2,-9,0,3,8.0567846,8.0061121,0,0,0,-946.83142,-9,2,3,2021,13,2,35,0,1,2,1,11.251414,11.251414,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.54,41.09,-9,-9,6.666666666666667,1,1,0,0,7,11,4,0,1122,156861.91,2335.0459,0,0,0,0,1655.2018 +5505,6726,12024,12025,-9,-9,1,0,27,0,0,0,2,2,0,0,2,0,0,0,6,0,97.115311,-9,-9,-9,2021,25,10,0,0,2,10,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,11.06,63.02,38.82,63.21,3.333333333333333,1,1,0,0,1,8,4,0,382,-43503.715,61894.766,203845,134803.58,-257.75299,0,1783.5876 +5505,6726,12025,12024,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.5382595,8.5640955,0,6,0,-9.0685472,0,1,1,2021,6,0,40,41,1,0,0,16.306383,16.306383,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.82,63.21,11.06,63.02,6.666666666666667,1,1,0,0,6,8,4,0,382,-43503.715,61894.766,203845,134803.58,-257.75299,0,1783.5876 +5506,6727,12026,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.4255304,8.7131758,0,0,0,-1080.5009,0,1,1,2021,15,3,36,90,1,3,0,13.432594,13.432594,0,0,.05,0,0,0,0,0,0,0,0,3.8687515,0,32.67,63.54,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,73,710868.56,370217.41,290733.94,0,0,0,1512.9075 +5507,6728,12027,12028,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.4049921,9.4455099,0,2,0,24.64887,0,2,2,2021,7,0,41,42,1,0,0,31.75127,31.75127,.05,.05,0,0,0,0,0,0,0,0,0,1.8034036,0,60.13,49.27,29.36,67.77,8.333333333333334,1,1,0,0,13,2,5,1,951,1258088.3,694634.81,527658.94,1272.8442,0,0,5054.582 +5507,6728,12028,12027,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.5184383,8.8037186,0,2,0,-146.72086,0,3,2,2021,28,12,50,45,1,12,0,12.648483,12.648483,.05,.05,0,0,0,0,0,0,0,0,0,4.7530632,0,29.36,67.77,60.13,49.27,1.666666666666667,1,1,0,0,13,2,5,1,951,1258088.3,694634.81,527658.94,1272.8442,0,0,5054.582 +5508,6729,12029,12030,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,0,0,0,11,0,62.673157,0,3,-9,2021,19,4,0,40,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,37.43,35.56,5,1,1,1,0,11,11,4,0,716,340711.88,13861.971,86472.875,50129.516,0,570.59454,1162.4705 +5508,6729,12030,12029,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3697271,8.7238131,0,11,0,51.596664,0,3,-9,2021,14,2,12,12,1,2,0,56.964569,56.964569,0,0,0,0,0,0,0,0,0,0,0,.30650607,0,37.43,35.56,48.45,57.49,5,1,1,0,1,12,11,4,0,716,340711.88,13861.971,86472.875,50129.516,0,570.59454,1162.4705 +5509,6730,12031,-9,12032,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1091.7888,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,62,-9,-9,7,4,2,-9,0,0,2,1,0,1006.5,-18339.688,0,0,0,0,0,609.29242 +5509,6730,12032,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1019.4858,0,3,3,2021,18,6,0,16,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.35,52.14,-9,-9,0,4,2,1,1,3,2,1,0,1006.5,-18339.688,0,0,0,0,0,609.29242 +5510,6731,12033,12034,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,45,-5,11.8271,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.93713576,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,0,9,3,1,328,708129.38,384319.28,209012.78,0,0,0,2417.6211 +5510,6731,12034,12033,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.7625103,7.7953672,45,5,101.58771,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.412497,7.6713901,57.06,57.76,54.37,54.8,8.333333333333334,1,1,0,0,0,9,3,1,328,708129.38,384319.28,209012.78,0,0,0,2417.6211 +5510,6732,12035,-9,12033,12034,1,1,29,0,0,0,2,2,-9,0,4,8.4213839,8.700676,0,0,0,-1135.3019,0,3,2,2021,10,0,40,48,1,1,0,15.28269,15.28269,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,9,5,1,969,-163062.41,-73404.82,0,0,0,0,2061.8621 +5511,6733,12036,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.9203367,6.4931583,0,0,-880.63721,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.8604832,6.5948572,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,591,463296.03,77630.359,236858.33,0,0,0,2102.9172 +5512,6734,12037,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1063.4108,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1334596,0,57.16,56.15,-9,-9,10,1,1,0,0,0,12,1,0,863,103789.39,0,106489.59,93030.641,0,0,1618.2874 +5513,6735,12038,12039,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.5999269,7.9788885,7.2126126,23,0,80.471054,0,3,1,2021,10,0,27,27,1,0,0,8.6587744,8.6587744,0,0,0,0,0,0,0,0,0,0,0,6.6228514,0,51.83,57.2,51.83,57.2,6.666666666666667,2,3,0,0,11,4,3,1,803.5,422539.13,334991.16,186443.73,33728.719,8351.4453,0,1416.8782 +5513,6735,12039,12038,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,3,0,41.8862,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,2,3,1,0,0,4,3,1,803.5,422539.13,334991.16,186443.73,33728.719,8351.4453,0,1416.8782 +5513,6736,12040,-9,12038,12039,1,1,25,0,0,0,2,2,-9,0,4,8.2649565,7.9687605,0,0,0,-963.96643,0,2,2,2021,10,0,37,37,1,0,1,10.341046,10.341046,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,3,4,4,1,848,241000.63,0,0,0,0,0,1488.8977 +5513,6737,12041,-9,12038,12039,1,1,24,0,0,0,2,2,-9,0,4,6.9248261,7.0958552,0,0,0,-993.31592,0,2,2,2021,9,0,28,28,1,0,1,4.7552967,4.7552967,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,7,4,2,1,361,128996.14,58220.609,0,0,0,0,316.13763 +5513,6738,12042,-9,12038,12039,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-1020.9819,-9,2,3,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1596298,0,25.83,62.57,-9,-9,3.333333333333333,2,3,0,0,0,4,1,1,371,-78136.477,0,0,0,0,0,382.57941 +5514,6739,12043,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,6.9066181,6.8431911,0,0,0,-1098.0902,0,3,2,2021,11,0,16,16,1,0,0,6.6214452,6.6214452,0,0,.05,0,0,0,0,0,1,1,0,.020101059,0,40.25,54.22,-9,-9,5,1,1,0,0,3,10,2,1,650,-47339.25,-1511.7263,0,0,0,0,1528.4865 +5514,6739,12044,-9,12043,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.6178,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,650,-47339.25,-1511.7263,0,0,0,0,1528.4865 +5514,6739,12045,-9,12043,-9,1,1,16,0,2,1,2,0,-9,0,5,0,3.6759698,4.0088754,0,0,-1199.8635,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8510752,0,40.99,58.35,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,650,-47339.25,-1511.7263,0,0,0,0,1528.4865 +5515,6740,12046,12047,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.8089051,7.7350755,32,-2,-62.705757,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8880906,55.54,46.02,57.16,56.15,8.333333333333334,1,1,0,0,0,2,4,1,972.5,1601325.4,1028606.3,310930,0,0,0,3722.1089 +5515,6740,12047,12046,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.1908484,8.0986223,32,2,-89.296227,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5985494,8.0103035,57.16,56.15,55.54,46.02,8.333333333333334,1,1,0,0,1,2,4,1,972.5,1601325.4,1028606.3,310930,0,0,0,3722.1089 +5516,6741,12048,12049,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.9096265,6.0963745,44,8,-4.6784959,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.4421668,0,0,1,1,0,7.5477862,5.8732386,65.28,34.83,50.16,56.75,10,1,1,0,0,0,2,2,1,345,354277.28,113800.7,151321.77,0,0,0,2233.001 +5516,6741,12049,12048,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,44,-8,-3.9998612,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.16,56.75,65.28,34.83,8.333333333333334,1,1,0,0,5,2,2,1,345,354277.28,113800.7,151321.77,0,0,0,2233.001 +5517,6742,12050,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.2971334,7.5265975,0,0,0,-973.61688,0,1,1,2021,6,0,14,18,1,0,0,15.315084,15.315084,0,0,0,0,0,0,0,14.5,0,0,0,3.2324631,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,12,3,1,1539,357730.5,63912.086,391697.97,0,0,0,1157.1545 +5518,6743,12051,12052,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,7.0797324,6.9581699,61,2,-83.177444,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,95.327812,0,0,1,1,0,0,7.4833903,40.47,18.64,44.83,33.87,6.666666666666667,1,1,0,0,0,1,2,1,1320.5,498899.31,74952.648,256855.5,0,0,0,2755.9644 +5518,6743,12052,12051,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,61,-2,-132.11894,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,44.83,33.87,40.47,18.64,6.666666666666667,1,1,0,0,0,1,2,1,1320.5,498899.31,74952.648,256855.5,0,0,0,2755.9644 +5519,6744,12053,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,9.37819,9.4815502,0,0,0,-993.60034,0,3,3,2021,8,0,40,40,1,0,0,50.216778,50.216778,.05,.05,0,0,0,0,0,0,0,0,0,8.8347111,0,44.78,56.37,-9,-9,5,1,1,0,0,10,12,5,1,1410,351076.25,123617.17,172895.47,158992.92,20021.23,4569.125,7012.7334 +5520,6745,12054,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.2521472,5.844799,0,0,-995.30719,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2976546,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,950,507182.03,197730.08,122156.49,0,0,0,932.51031 +5521,6746,12055,-9,-9,-9,1,1,89,0,0,0,1,1,-9,0,4,0,9.065733,9.0665817,0,0,-1050.8342,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3151031,8.6680632,58.5,41.81,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,494,1077138.8,395727.25,442678.31,0,0,0,4152.8623 +5522,6747,12056,12057,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.2860317,8.3402071,0,8,11,-35.097801,0,-9,-9,2021,0,0,54,49,1,0,0,9.311512,9.311512,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.31,32.15,62.39,56.71,8.333333333333334,2,3,0,0,11,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5522,6747,12057,12056,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.1804438,8.2672863,0,13,-11,-25.696335,0,2,2,2021,6,0,40,45,1,0,0,10.644646,10.644646,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,47.31,32.15,8.333333333333334,2,3,0,0,8,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5522,6747,12058,-9,12057,12056,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1187.7839,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.77852684,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5522,6747,12059,-9,12057,12056,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.3331,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,1170.5,74037.922,-26811.342,0,0,0,5156.3589,3225.6606 +5523,6748,12060,12061,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9815912,7.6810899,0,5,1,-123.25618,0,3,2,2021,9,0,36,38,1,0,0,12.5039,12.5039,.05,.05,0,0,0,0,0,0,0,0,0,.63014328,0,48.28,60.18,49.04,55.86,8.333333333333334,1,1,0,0,9,8,4,0,437,1390490.1,564588.13,720395.75,0,0,0,2561.9709 +5523,6748,12061,12060,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.0486631,7.9906521,0,5,-1,-21.772139,0,-9,-9,2021,14,3,39,41,1,3,0,8.874877,8.874877,.05,.05,0,0,0,0,0,7,0,0,0,3.8032706,0,49.04,55.86,48.28,60.18,8.333333333333334,1,1,0,0,9,8,4,0,437,1390490.1,564588.13,720395.75,0,0,0,2561.9709 +5524,6749,12062,12063,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.9659834,7.3319106,10,7,33.616737,0,3,3,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,7.1854348,7.2509718,42.14,51.58,51,54,8.333333333333334,1,1,0,0,8,4,3,1,837.5,2530.2815,-847.92969,149117.39,0,0,0,2573.6692 +5524,6749,12063,12062,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.332375,8.0277891,7.1069427,10,-7,85.725952,0,2,2,2021,5,0,16,38,1,0,0,9.5458574,9.5458574,0,0,0,0,0,0,0,14.5,1,1,0,.35629889,7.2486672,51,54,42.14,51.58,8.333333333333334,1,1,0,0,11,4,3,1,837.5,2530.2815,-847.92969,149117.39,0,0,0,2573.6692 +5525,6750,12064,12065,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,0,0,45,0,-24.976852,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3230801,0,54.79,55.86,54.1,59.11,8.333333333333334,1,1,0,0,10,9,2,1,495,470067.31,265661.03,229754.27,0,0,0,2012.8586 +5525,6750,12065,12064,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.1537685,7.4584246,44,0,-26.539776,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2693443,7.2937641,54.1,59.11,54.79,55.86,8.333333333333334,1,1,0,0,11,9,2,1,495,470067.31,265661.03,229754.27,0,0,0,2012.8586 +5526,6751,12066,12067,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,8,-3,29.065382,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,47,53,47,7,1,1,0,0,9,13,5,1,1019.5,2300620.5,1392251.3,257606.73,0,0,0,5193.1543 +5526,6751,12067,12066,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,9.1292191,8.6442842,8,3,178.92853,-9,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1612883,9.1051092,53,47,51,47,7,1,1,0,0,9,13,5,1,1019.5,2300620.5,1392251.3,257606.73,0,0,0,5193.1543 +5527,6752,12068,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,6.1587267,6.4938159,0,0,-905.14679,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.944489,52,48,-9,-9,7,1,1,0,0,2,13,2,1,825,-84611.82,131258,0,0,0,0,257.52621 +5528,6753,12069,-9,-9,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-927.57916,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1724029,0,47,60,-9,-9,7,3,4,0,0,0,8,1,1,2084,0,0,0,0,0,0,906.31494 +5529,6754,12070,12071,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.4298334,8.9228506,0,22,-8,111.10519,0,2,-9,2021,22,11,34,36,1,11,0,21.538162,21.538162,.05,.05,0,0,0,0,0,0,1,1,0,3.7020562,0,24.85,67.03,41.65,36.47,1.666666666666667,1,1,0,0,13,7,4,1,559.5,1231690,1112982.5,221917.81,28513.996,0,0,2953.5752 +5529,6754,12071,12070,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.0674682,5.9059763,22,8,-98.795525,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1456771,5.8913889,41.65,36.47,24.85,67.03,6.666666666666667,1,1,0,0,11,7,4,1,559.5,1231690,1112982.5,221917.81,28513.996,0,0,2953.5752 +5530,6755,12072,12073,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,6.6845326,6.8810668,27,30,.050959989,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5917168,6.5832238,54.69,57.47,57.16,56.15,8.333333333333334,1,1,0,0,5,9,3,1,745.5,1662995.5,545698.25,672186.75,0,0,0,3128.4033 +5530,6755,12073,12072,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.1170025,8.2987881,0,27,-30,-52.741146,0,3,2,2021,7,0,30,70,1,0,0,13.492983,13.492983,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,0,14,9,3,1,745.5,1662995.5,545698.25,672186.75,0,0,0,3128.4033 +5531,6756,12074,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.7536507,8.4714231,0,0,0,-1050.0138,0,2,2,2021,13,3,37,40,1,3,0,17.960672,17.960672,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,855,362944.25,-46257.281,193255.17,0,0,0,1798.5504 +5532,6757,12075,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-998.18896,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6827013,0,54.79,55.86,-9,-9,10,1,1,0,0,12,9,2,1,580,139685.97,0,0,0,0,0,1136.3573 +5533,6758,12076,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1029.5352,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3690343,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,6,12,1,0,1969,-32448.033,0,0,0,0,0,109.53844 +5534,6759,12077,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,0,0,0,0,0,-989.05634,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.22,52.13,-9,-9,3.333333333333333,1,1,1,1,0,1,1,0,182,-42032.129,0,0,0,0,0,-163.90428 +5535,6760,12078,12079,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.3451996,8.3306341,49,-1,53.101406,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.3277073,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,0,4,4,1,815.5,1621125.6,1430244.8,226843.58,-13521.522,0,0,4784.5986 +5535,6760,12079,12078,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,6.4900432,7.8350077,7.3792119,49,1,-107.42538,0,1,1,2021,6,0,40,45,1,0,0,2.193526,2.193526,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4198999,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,4,4,1,815.5,1621125.6,1430244.8,226843.58,-13521.522,0,0,4784.5986 +5536,6761,12080,-9,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,8.3206997,8.2423534,0,0,0,-964.07935,-9,3,3,2021,8,0,45,0,1,0,0,8.1576166,8.1576166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,-9,-9,6.666666666666667,2,3,0,0,10,8,4,0,190,201034.2,57870.738,36065.039,36415.965,0,0,1342.8462 +5537,6762,12081,12082,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,52,6,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,2.4494045,10.377564,17.104921,0,1,1,0,0,0,54,46,47,36,8,1,1,0,0,0,13,1,1,1938.5,331193.75,0,219206.69,0,0,0,2066.4519 +5537,6762,12082,12081,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,52,-6,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,3.9800191,0,7,1,1,0,0,0,47,36,54,46,6.666666666666667,1,1,0,0,0,13,1,1,1938.5,331193.75,0,219206.69,0,0,0,2066.4519 +5538,6763,12083,12086,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,10,-5,-77.931458,0,2,3,2021,10,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,54.2,57.49,6.666666666666667,1,1,0,0,11,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5538,6763,12084,-9,12083,12086,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.15253,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5538,6763,12085,-9,12083,12086,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.02502,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5538,6763,12086,12083,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,7.0836687,7.1308708,0,10,5,1.9694098,0,-9,-9,2021,12,0,55,55,1,0,0,1.6933718,1.6933718,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.37,54.8,6.666666666666667,1,1,0,1,11,8,2,1,2103.75,-96223.563,69743.563,0,0,0,0,146.76077 +5539,6764,12087,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,7.3576398,7.5135665,0,0,0,-933.00574,0,1,2,2021,13,5,7,24,1,5,0,30.053335,30.053335,0,0,0,0,0,0,0,0,1,1,0,0,0,30.47,66.97,-9,-9,8.333333333333334,1,1,0,0,3,12,3,0,118,-10669.063,0,0,0,0,0,1250.3221 +5540,6765,12088,12089,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,7.1991649,7.1482449,0,19,9,14.841917,0,2,2,2021,12,2,15,16,1,2,0,9.2002258,9.2002258,.05,.05,0,0,0,0,0,111,1,1,0,0,0,58.29,34.19,33.39,54.83,8.333333333333334,1,1,0,0,7,10,4,1,241,995065.56,645187.44,227826.61,68807.039,0,0,3607.5308 +5540,6765,12089,12088,-9,-9,1,0,42,0,1,0,1,1,-9,1,3,8.7613888,8.6086607,0,19,0,34.701363,0,2,2,2021,15,4,55,55,1,4,0,16.077173,16.077173,.05,.05,0,0,0,0,0,2,1,1,0,0,0,33.39,54.83,58.29,34.19,5,1,1,0,0,7,10,4,1,241,995065.56,645187.44,227826.61,68807.039,0,0,3607.5308 +5540,6765,12090,-9,12089,12088,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.90503,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,241,995065.56,645187.44,227826.61,68807.039,0,0,3607.5308 +5541,6766,12091,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9364262,7.2916932,0,0,-961.31354,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3355994,5.148334,49,48,-9,-9,7,3,4,0,0,8,8,2,0,925,124501.7,53110.996,0,0,0,4104.6709,2350.6804 +5542,6767,12092,12093,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6810217,8.6290064,0,31,1,36.593399,0,-9,-9,2021,12,0,35,35,1,0,0,18.182173,18.182173,0,0,0,0,0,0,0,2,0,0,0,0,0,56.95,46.69,53,54,6.666666666666667,1,1,0,0,8,6,5,1,175.5,431685.13,448141.56,134097.03,34731.453,8362.0371,0,2304.1443 +5542,6767,12093,12092,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,7.3444881,7.7752924,0,31,-1,-55.082367,0,2,2,2021,9,0,30,30,1,1,0,8.9188232,8.9188232,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,56.95,46.69,8,1,1,0,0,1,6,5,1,175.5,431685.13,448141.56,134097.03,34731.453,8362.0371,0,2304.1443 +5543,6768,12094,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1151.585,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.161351,0,52,48,-9,-9,7,1,1,0,0,0,2,1,0,2117,-194600.55,0,0,0,0,0,2205.384 +5544,6769,12095,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,5.9125638,5.3929,0,0,-1119.1986,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5372329,5.3613501,63.51,35.73,-9,-9,8.333333333333334,3,4,0,0,5,8,2,1,710,1214757.9,112917.22,948208.44,0,0,0,1982.4863 +5545,6770,12096,12097,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,32,7,0,0,-9,-9,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,41.313377,43.032288,385.73608,0,1,1,0,0,0,30.77,22.6,15.05,29.93,5,1,1,0,0,0,2,1,0,806,65734.828,0,0,0,13100.5,0,2007.6287 +5545,6770,12097,12096,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,32,-7,0,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,15.05,29.93,30.77,22.6,5,1,1,0,0,0,2,1,0,806,65734.828,0,0,0,13100.5,0,2007.6287 +5546,6771,12098,12099,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,6,-2,16.758518,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.08,49.24,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,1140,168010.73,60969.672,200052.78,0,0,0,2056.9829 +5546,6771,12099,12098,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.6282239,7.4068508,6,2,119.94057,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7359781,7.791225,57.16,56.15,51.08,49.24,8.333333333333334,1,1,0,0,0,12,3,1,1140,168010.73,60969.672,200052.78,0,0,0,2056.9829 +5547,6772,12100,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.0878515,7.2824659,0,0,0,-915.93542,0,2,2,2021,9,1,12,15,1,1,0,9.9500809,9.9500809,.05,.05,0,0,0,0,0,0,1,1,0,2.1692667,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,13,11,3,0,868,348315.25,54088.922,279040.28,0,0,0,2045.9806 +5548,6773,12101,-9,-9,-9,1,1,32,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1071.5974,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.01,36.82,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,391,-31612.504,0,0,0,0,0,1275.606 +5549,6774,12102,12103,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,5.9118762,5.8199668,0,15,-2,17.680101,0,3,3,2021,6,0,50,55,1,0,0,1.0028815,1.0028815,.05,.05,.05,0,0,0,0,7,0,0,0,4.4097476,0,57.06,57.76,61.44,22.08,0,1,1,0,0,12,9,3,1,1583.5,941530.44,362941.88,475844.56,0,0,0,728.20154 +5549,6774,12103,12102,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.464241,6.960887,0,15,2,94.123238,0,2,2,2021,20,8,26,26,1,8,0,7.2223516,7.2223516,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,61.44,22.08,57.06,57.76,8.333333333333334,1,1,0,0,11,9,3,1,1583.5,941530.44,362941.88,475844.56,0,0,0,728.20154 +5550,6775,12104,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.8845167,8.7976217,0,0,0,-903.04712,0,2,2,2021,22,10,42,47,1,10,0,19.552097,19.552097,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.99,59.25,-9,-9,5,1,1,0,1,11,6,5,0,1320,-75756.734,27267.553,0,0,0,5588.2168,2017.2947 +5551,6776,12105,12107,-9,-9,1,0,41,0,1,0,3,3,-9,0,2,7.2572465,7.4381933,0,8,-17,-146.18768,0,2,2,2021,13,3,19,14,1,3,0,9.9814901,9.9814901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.65,43.16,54.37,54.8,5,1,1,0,0,9,12,4,0,554.33331,891781.5,764322.94,188557.03,64512.75,0,1175.8281,2260.2439 +5551,6776,12106,-9,12105,12107,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-945.15295,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,554.33331,891781.5,764322.94,188557.03,64512.75,0,1175.8281,2260.2439 +5551,6776,12107,12105,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,8.767683,8.8979111,0,8,17,19.364836,0,3,2,2021,8,0,48,60,1,0,0,11.439342,11.439342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,36.65,43.16,8.333333333333334,1,1,0,0,9,12,4,0,554.33331,891781.5,764322.94,188557.03,64512.75,0,1175.8281,2260.2439 +5552,6777,12108,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1116.1796,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,6.666666666666667,4,2,0,1,0,5,1,0,538,-131828.48,0,0,0,0,0,595.45099 +5553,6778,12109,12110,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,9.238224,8.8917809,7,-2,-108.04815,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.9860005,8.8395252,50.67,34.62,46.39,60.99,8.333333333333334,1,1,0,0,0,12,5,1,956,3904818,2646973.8,618327.38,0,0,0,6400.0298 +5553,6778,12110,12109,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.397016,7.5067043,7,2,85.138863,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8567743,7.3218198,46.39,60.99,50.67,34.62,8.333333333333334,1,1,0,0,0,12,5,1,956,3904818,2646973.8,618327.38,0,0,0,6400.0298 +5554,6779,12111,12112,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.230216,6.9751859,0,40,-4,-43.323654,0,2,3,2021,6,0,10,10,1,0,0,15.304801,15.304801,0,0,0,0,0,0,0,0,0,0,0,0,0,61.29,43.34,56.94,33.46,8.333333333333334,1,1,0,0,9,13,5,1,789.5,340092.44,213721.06,141136.23,55912.895,5838.7275,0,2399.2747 +5554,6779,12112,12111,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.5704155,8.4958181,0,40,4,12.795817,0,3,3,2021,12,3,60,60,1,3,0,12.193882,12.193882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,33.46,61.29,43.34,6.666666666666667,1,1,0,0,9,13,5,1,789.5,340092.44,213721.06,141136.23,55912.895,5838.7275,0,2399.2747 +5555,6780,12113,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,2,0,7.5076914,7.2174773,0,0,-949.12238,0,2,-9,2021,16,7,0,0,4,7,0,0,0,0,0,0,1,2.3247888,0,20.375286,0,1,1,0,6.7810035,7.0179219,60.91,20.77,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,374,376344.13,202167.09,186368.22,0,0,0,2924.4031 +5556,6781,12114,12115,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.291914,8.1569557,11,-6,-94.354271,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1735983,60.12,54.8,57.16,56.15,10,1,1,0,0,6,12,4,1,479,1686867.4,704731.13,228170.44,0,0,0,4423.0552 +5556,6781,12115,12114,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.9311543,8.238369,11,6,3.0193269,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0502443,8.0002661,57.16,56.15,60.12,54.8,10,1,1,0,0,6,12,4,1,479,1686867.4,704731.13,228170.44,0,0,0,4423.0552 +5557,6782,12116,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.5245094,7.4135766,6.4257417,0,0,-992.66724,-9,2,2,2021,12,2,25,0,1,2,0,6.6155829,6.6155829,0,0,0,0,0,0,0,0,1,1,0,6.2934632,0,20.76,64.84999999999999,-9,-9,6.666666666666667,1,1,0,0,10,10,3,1,810,108774.75,0,0,0,0,0,1674.7067 +5558,6783,12117,12120,-9,-9,1,0,48,0,2,0,1,1,-9,0,2,9.0236263,9.1370344,0,21,-3,-81.774719,0,3,3,2021,12,0,8,38,1,0,0,95.303352,95.303352,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,44.06,34.48,61.03,3.333333333333333,2,3,0,0,11,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6783,12118,-9,12117,12120,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.8207,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6783,12119,-9,12117,12120,1,0,16,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1122.9539,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,2,3,0,0,0,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6783,12120,12117,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,8.7432117,9.0282631,0,21,3,90.584961,0,3,2,2021,12,0,40,38,1,0,0,22.414066,22.414066,.05,.05,0,0,0,0,0,0,1,1,0,8.1468544,0,34.48,61.03,49.28,44.06,8.333333333333334,2,3,0,0,10,9,5,1,483.25,207269.45,142574.05,0,0,2569.9934,0,6376.8516 +5558,6784,12121,-9,12117,12120,1,1,19,0,2,0,2,2,-9,0,5,0,0,0,0,0,-950.63495,1,1,1,2021,6,0,0,18,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,47.6,-9,-9,8.333333333333334,2,3,0,0,2,9,2,1,214,-8502.1328,0,0,0,0,0,0 +5559,6785,12122,12124,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,0,0,0,14,1,-21.445843,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7964344,0,58.15,52.91,51.14,60.45,8.333333333333334,1,1,0,0,7,8,5,1,640.33331,568248,111387.61,520305.16,162068.52,0,0,4036.0881 +5559,6785,12123,-9,12122,12124,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.79211,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,640.33331,568248,111387.61,520305.16,162068.52,0,0,4036.0881 +5559,6785,12124,12122,-9,-9,1,1,49,0,1,0,1,1,-9,0,5,9.1803255,8.916399,0,15,-1,80.569084,0,3,2,2021,8,0,43,46,1,0,0,28.214624,28.214624,.05,.05,0,0,0,0,0,0,0,0,0,4.6867266,0,51.14,60.45,58.15,52.91,8.333333333333334,1,1,0,0,8,8,5,1,640.33331,568248,111387.61,520305.16,162068.52,0,0,4036.0881 +5560,6786,12125,12126,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,7.7695732,7.6941605,0,17,-12,-19.346909,0,3,3,2021,12,0,38,38,1,0,0,6.2092538,6.2092538,0,0,0,0,0,0,0,2,0,0,0,0,0,35.97,46.72,57.16,56.15,6.666666666666667,1,1,0,0,8,7,5,1,595.5,1786710.8,1005620.9,346331.75,0,0,0,2694.2742 +5560,6786,12126,12125,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.5169373,8.2398367,0,17,12,-10.082105,0,-9,2,2021,8,0,48,48,1,0,0,13.390616,13.390616,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,35.97,46.72,10,1,1,0,0,8,7,5,1,595.5,1786710.8,1005620.9,346331.75,0,0,0,2694.2742 +5561,6787,12127,-9,12129,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.11975,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,301.66666,0,0,0,0,0,0,2887.95 +5561,6787,12128,-9,12129,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7375,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,301.66666,0,0,0,0,0,0,2887.95 +5561,6787,12129,-9,-9,-9,1,0,50,0,2,0,3,3,-9,1,1,0,0,0,0,0,-1094.7249,0,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,52,15.44,-9,-9,5,1,1,0,0,0,9,2,0,301.66666,0,0,0,0,0,0,2887.95 +5561,6788,12130,-9,12129,-9,1,1,28,0,2,0,2,2,-9,0,3,8.5608721,8.4821119,0,0,0,-822.65759,0,2,3,2021,8,1,45,38,1,1,1,12.974921,12.974921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,725,25205.693,-12626.384,0,0,0,0,2440.1204 +5562,6789,12131,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,4,0,5.9941835,6.137013,0,0,-949.28723,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.9865518,59.15,49.67,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,269,404987.5,-10591.953,293386.09,0,0,4209.2129,241.2169 +5563,6790,12132,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.9337201,6.6192183,0,0,-1011.8121,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8429265,6.7747831,55.19,54.26,-9,-9,10,1,1,0,0,6,7,2,1,1839,476849.69,324358.84,250825.27,0,0,0,3021.1499 +5564,6791,12133,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-863.23956,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.089323655,0,1,1,0,0,0,37.56,35.77,-9,-9,6.666666666666667,1,1,0,1,8,6,1,0,865,34236.379,0,32446.795,0,0,0,2303.5068 +5565,6792,12134,-9,-9,-9,1,0,44,0,0,0,1,1,1,0,5,0,0,0,0,0,-988.41382,-9,2,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,48.67,59.26,-9,-9,10,3,4,1,1,0,2,1,0,1178,78321.844,23760.721,0,0,0,0,1414.3597 +5565,6793,12135,-9,12134,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-971.58429,-9,1,-9,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.87,54.35,-9,-9,3.333333333333333,3,4,0,0,0,2,2,0,784,0,0,0,0,0,0,0 +5566,6794,12136,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.3359146,4.9138865,0,0,-1042.9679,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.052052,53.8,35.16,-9,-9,3.333333333333333,1,1,0,0,7,2,2,0,844,202530.52,0,101620.68,0,0,0,1830.027 +5567,6795,12137,12138,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,8.0412445,8.3344545,7.2276473,45,-3,-22.113623,0,2,2,2021,7,0,15,18,1,0,0,22.175478,22.175478,0,0,0,0,0,0,0,0,1,1,0,4.864593,6.7995906,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,11,10,4,1,2646,171046.72,105115.74,437440.13,259284.13,0,29606.381,4927.0757 +5567,6795,12138,12137,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.735455,7.7944441,45,3,53.117935,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1435962,8.1217413,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,2646,171046.72,105115.74,437440.13,259284.13,0,29606.381,4927.0757 +5568,6796,12139,-9,12142,12141,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.1058,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5568,6796,12140,-9,12142,12141,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1120.6925,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5568,6796,12141,12142,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.7921009,8.4919481,0,9,6,60.005119,0,2,2,2021,7,0,38,37,1,0,0,24.100903,24.100903,.05,.05,0,0,0,0,0,0,1,1,0,7.6193838,0,54.2,57.49,56.47,59.4,6.666666666666667,1,1,0,0,11,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5568,6796,12142,12141,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.8548021,7.923439,0,9,-6,37.22049,0,2,2,2021,8,0,30,32,1,0,0,10.72689,10.72689,.05,.05,0,0,0,0,0,0,1,1,0,4.6627712,0,56.47,59.4,54.2,57.49,8.333333333333334,1,1,0,0,11,10,4,1,252.5,839318.44,297139.28,343020,0,5741.2896,0,3977.561 +5569,6797,12143,12144,-9,-9,1,1,25,0,0,0,1,1,1,0,5,8.2564631,8.2571554,0,2,2,-91.487381,-9,2,2,2021,10,1,38,0,1,1,0,9.9432707,9.9432707,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.88,60.96,28.23,61.73,8.333333333333334,1,1,0,0,4,11,4,0,583.5,-44827.266,-32462.348,0,0,0,0,2762.9761 +5569,6797,12144,12143,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.9977269,8.2475033,0,2,-2,-11.805987,0,-9,-9,2021,28,10,41,40,1,10,0,10.488004,10.488004,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.23,61.73,46.88,60.96,5,1,1,0,0,2,11,4,0,583.5,-44827.266,-32462.348,0,0,0,0,2762.9761 +5570,6798,12145,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.3489695,8.1953964,7.3195553,0,0,-1115.5588,0,3,3,2021,10,0,30,33,1,0,0,5.6707807,5.6707807,.05,.05,0,0,0,0,0,0,1,1,0,6.2215605,6.9158697,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,5,10,4,1,350,436846.5,167078.11,199231.13,0,0,0,1253.7478 +5571,6799,12146,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4094114,6.5486813,0,0,-1018.5374,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,.81910288,0,0,1,1,0,5.6455431,6.4778557,42.67,41.29,-9,-9,8.333333333333334,1,1,0,0,10,7,2,1,1354,466908.88,99955.781,0,0,0,0,707.94507 +5572,6800,12147,12148,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.1283493,6.846632,45,4,1.0955594,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.620512,58.16,48.06,50,47,8.333333333333334,1,1,0,0,0,7,2,0,200,145518.69,93337.609,0,0,0,0,1430.7646 +5572,6800,12148,12147,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,-4,54.817547,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.16,48.06,7,1,1,0,0,0,7,2,0,200,145518.69,93337.609,0,0,0,0,1430.7646 +5572,6801,12149,-9,12148,12147,1,0,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-946.68695,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,7,1,0,286,-76995.883,0,0,0,0,0,498.31799 +5573,6802,12150,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.5067086,7.6341691,0,0,-984.85938,0,2,-9,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7143059,58.72,51.29,-9,-9,6.666666666666667,3,4,0,0,8,8,3,1,631,1252264.3,558012.31,554838.88,0,0,0,431.9707 +5574,6803,12151,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1011.3795,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,3,7,1,1,666,15733.563,0,0,0,0,0,738.55829 +5575,6804,12152,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.6111393,5.4204054,0,0,-1035.6471,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7168636,60.3,46.58,-9,-9,10,1,1,0,0,0,4,2,0,1323,251722.7,21791.197,135763.25,0,0,0,628.35822 +5576,6805,12153,12154,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.4307995,8.6364126,50,4,-73.415611,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5358181,8.4715414,57.16,56.15,66.37,38.36,8.333333333333334,1,1,0,0,2,10,4,1,1156.5,2549688.5,574512.5,564802.5,0,0,0,3558.4629 +5576,6805,12154,12153,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.6993971,5.9492035,50,-4,-71.761681,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4339254,5.9553261,66.37,38.36,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,1156.5,2549688.5,574512.5,564802.5,0,0,0,3558.4629 +5577,6806,12155,-9,-9,-9,1,0,40,1,2,0,2,2,-9,0,2,0,6.591217,6.8949924,0,0,-885.17828,0,-9,-9,2021,18,6,0,17,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,6.0356007,0,29.75,41.96,-9,-9,6.666666666666667,1,1,0,0,10,4,2,0,1129.5,148957.33,11710.805,136629.02,42054.688,0,448.97717,1705.2009 +5577,6806,12156,-9,12155,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.8231,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,2,0,1129.5,148957.33,11710.805,136629.02,42054.688,0,448.97717,1705.2009 +5578,6807,12157,-9,12159,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-862.49542,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5578,6807,12158,-9,12159,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.81598,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5578,6807,12159,-9,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,8.4795122,8.4618454,0,0,0,-1032.7319,0,2,3,2021,5,0,30,30,1,0,0,22.778309,22.778309,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.06,52.59,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5578,6807,12160,-9,12159,-9,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1020.8282,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,3,1,643.75,23860.996,80802.773,0,0,0,0,2375.5571 +5579,6808,12161,12162,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.6414123,6.0139389,44,-1,-151.08466,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,5.6899424,55.79,52.62,59.63,41.44,8.333333333333334,1,1,0,0,6,13,5,1,392,212720.75,235403.38,138739.84,0,0,0,2097.6538 +5579,6808,12162,12161,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.8895044,8.8849754,0,44,1,81.224983,0,3,3,2021,10,0,40,41,1,0,0,17.772604,17.772604,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,59.63,41.44,55.79,52.62,6.666666666666667,1,1,0,0,10,13,5,1,392,212720.75,235403.38,138739.84,0,0,0,2097.6538 +5580,6809,12163,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.8402858,7.6937127,0,0,-980.80847,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.4678059,8.0537643,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,147,644654.31,306196.47,219669.66,0,0,0,6548.1509 +5581,6810,12164,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.3768606,8.2907848,0,0,0,-1007.1897,0,2,2,2021,9,0,42,42,1,0,0,12.786021,12.786021,0,0,0,0,0,0,0,0,1,1,0,1.7288069,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,14,12,5,1,805,619408.13,462801.81,247251.08,89753.273,3249.9185,0,1721.4327 +5581,6811,12165,-9,12164,-9,1,1,21,0,0,0,2,2,1,0,4,8.5228205,8.2707901,0,0,0,-1022.0601,-9,1,-9,2021,12,0,38,0,1,0,1,14.404255,14.404255,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,808,33598.488,7242.2549,0,0,4466.7666,0,1823.5769 +5582,6812,12166,12167,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,4.1201653,4.3247075,42,0,58.7579,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7116945,49.86,55.31,58.47,50.22,5,1,1,0,0,0,11,3,1,728.5,1294103.8,725305.13,183298.44,0,0,0,1329.4911 +5582,6812,12167,12166,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.0143681,8.1308413,42,0,-174.32085,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0068913,58.47,50.22,49.86,55.31,8.333333333333334,1,1,0,0,0,11,3,1,728.5,1294103.8,725305.13,183298.44,0,0,0,1329.4911 +5582,6813,12168,-9,12166,12167,1,1,35,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1105.368,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4229395,0,51,56,-9,-9,7,1,1,0,0,0,11,1,1,1606,-328814.91,0,0,0,0,0,401.61606 +5583,6814,12169,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,6.7758865,6.8841195,0,0,0,-980.80621,0,3,-9,2021,15,5,16,16,1,5,0,6.0167432,6.0167432,0,0,0,0,0,0,0,0,1,0,1,0,0,28.09,60.4,-9,-9,8.333333333333334,1,1,0,0,15,2,2,1,546,66960.586,0,0,0,0,0,250.68523 +5583,6815,12170,-9,12169,-9,1,1,18,0,0,1,2,0,0,0,4,0,4.691391,4.0847864,0,0,-887.88263,-9,2,-9,2021,7,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.5454235,0,40.14,51.59,-9,-9,8.333333333333334,1,1,0,0,1,2,2,1,441,55400.582,0,0,0,0,0,405.55435 +5584,6816,12171,12172,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.31987,6.8494973,53,2,33.480362,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.2577906,63.24,42.39,39.81,36.04,10,2,3,0,0,0,5,2,1,2393.5,508027.22,245232.06,109796.16,0,0,0,2119.3923 +5584,6816,12172,12171,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,53,-2,-21.292904,0,3,3,2021,13,0,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6438835,0,39.81,36.04,63.24,42.39,10,2,3,0,0,0,5,2,1,2393.5,508027.22,245232.06,109796.16,0,0,0,2119.3923 +5585,6817,12173,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,6.8383784,7.8169084,7.3414588,0,0,-861.44672,0,3,3,2021,11,1,9,0,1,1,0,9.5690136,9.5690136,.05,.05,0,0,0,0,0,0,1,1,0,4.1756244,7.1867757,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,3,6,3,1,1271,276517.72,109871.77,133628.53,79909.203,0,0,1225.6952 +5586,6818,12174,12175,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.6841259,6.5842476,0,4,-7,182.12874,0,3,-9,2021,3,0,15,-9,1,0,0,4.6683517,4.6683517,0,0,0,0,0,0,0,0,1,1,0,1.5263458,0,59.04,45.74,52.47,40.47,1.666666666666667,1,1,0,0,11,13,2,1,593,312441.31,325859.94,155499.13,0,0,0,2437.0791 +5586,6818,12175,12174,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7982092,6.7471852,4,7,-21.639473,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8815985,7.214067,52.47,40.47,59.04,45.74,8.333333333333334,1,1,0,0,0,13,2,1,593,312441.31,325859.94,155499.13,0,0,0,2437.0791 +5587,6819,12176,-9,12178,12177,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.81555,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,1,0,1194,9220.1846,0,0,0,0,0,3020.0334 +5587,6819,12177,12178,-9,-9,1,1,29,0,1,0,3,3,-9,1,3,0,0,0,7,2,0,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.67,55.57,26.09,32.89,8.333333333333334,1,1,0,0,2,7,1,0,1194,9220.1846,0,0,0,0,0,3020.0334 +5587,6819,12178,12177,-9,-9,1,0,27,0,1,0,2,2,-9,1,1,0,0,0,7,-2,0,0,-9,-9,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,26.09,32.89,46.67,55.57,0,1,1,0,0,0,7,1,0,1194,9220.1846,0,0,0,0,0,3020.0334 +5588,6820,12179,12180,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3811235,7.7101216,51,-1,14.443701,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1509371,0,0,1,1,0,0,7.6425328,48.28,60.18,37.14,51.58,10,1,1,0,0,7,7,3,0,531.5,414895.94,267462.78,168975.02,0,0,0,2210.4814 +5588,6820,12180,12179,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,5.80474,5.8667855,51,1,80.456627,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8952923,37.14,51.58,48.28,60.18,8.333333333333334,1,1,0,0,7,7,3,0,531.5,414895.94,267462.78,168975.02,0,0,0,2210.4814 +5589,6821,12181,12182,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,9,-1,-16.57852,0,2,2,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44,38,48.01,49.91,0,1,1,0,1,0,12,2,1,579,533008.38,384718.06,72354.773,0,986.72809,0,1302.4348 +5589,6821,12182,12181,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.4243217,6.2102137,9,1,49.661972,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6771402,48.01,49.91,44,38,5,1,1,0,0,0,12,2,1,579,533008.38,384718.06,72354.773,0,986.72809,0,1302.4348 +5590,6822,12183,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.7100844,7.6330295,0,0,-949.48181,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2323656,7.5165277,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,301,324496.81,-49086.988,250462.34,0,0,0,2131.0642 +5591,6823,12184,12186,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.8482351,7.7808986,0,7,0,99.576118,0,3,2,2021,3,0,35,42,1,0,0,8.9567728,8.9567728,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.32,59.62,57.16,56.15,10,1,1,0,0,8,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6823,12185,-9,12184,12186,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-834.3374,-9,2,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6823,12186,12184,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.651988,8.7950125,0,7,0,-55.118465,0,3,2,2021,9,0,50,42,1,0,0,13.182854,13.182854,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,30.32,59.62,8.333333333333334,1,1,0,0,8,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6823,12187,-9,12184,12186,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.7452,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,519,223743.16,64418.023,252783.81,124130.33,0,0,3938.6428 +5591,6824,12188,-9,12184,12186,1,0,18,0,1,0,2,2,-9,0,4,6.7136469,6.6864462,0,0,0,-1007.2146,0,2,1,2021,10,0,30,0,1,0,1,3.4241762,3.4241762,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,671,0,0,0,0,0,0,1028.0327 +5592,6825,12189,12190,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.5439854,6.6310291,0,35,2,-37.742668,0,2,1,2021,8,0,68,60,1,0,0,.88802034,.88802034,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.77,55.87,6.666666666666667,1,1,0,0,10,4,2,1,329,133192.41,-9816.5996,156594.25,10776.413,1393.1844,709.91772,572.37811 +5592,6825,12190,12189,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,6.4506044,6.5831461,0,35,-2,-74.78183,0,-9,-9,2021,9,0,70,60,1,0,0,.8895635,.8895635,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,54.79,55.86,8.333333333333334,1,1,0,0,13,4,2,1,329,133192.41,-9816.5996,156594.25,10776.413,1393.1844,709.91772,572.37811 +5593,6826,12191,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,7.6633897,7.3874674,0,0,-900.95752,0,2,2,2021,28,12,0,37,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.6239451,7.6162181,22.91,39.29,-9,-9,1.666666666666667,1,1,0,0,8,6,3,1,1702,248080.91,303584.5,8335.7021,0,0,0,1284.7028 +5594,6827,12192,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.3122587,6.5714955,0,0,-846.35339,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1846704,44.96,50.74,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1584,303260.91,139651.78,206511.42,0,0,0,761.20978 +5595,6828,12193,-9,12194,-9,1,0,29,0,0,0,1,1,-9,0,3,8.9811268,8.6980429,0,0,0,-980.26306,0,2,2,2021,11,2,48,42,1,2,1,13.77305,13.77305,.05,.05,0,0,0,0,0,0,1,0,1,2.6778347,0,47.08,45.94,-9,-9,8.333333333333334,3,4,0,0,5,8,5,0,346,144525.89,106173.77,0,0,0,0,2445.864 +5595,6829,12194,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0235081,7.7648807,0,0,0,-927.03064,0,-9,-9,2021,10,2,37,37,1,2,0,10.043382,10.043382,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,14,8,4,0,933,937462.75,216455.34,763789.88,0,0,0,1137.2668 +5595,6830,12195,-9,12194,-9,1,0,26,0,0,0,1,1,-9,0,3,8.4109974,8.4141369,0,0,0,-948.46503,-9,1,-9,2021,4,0,30,0,1,0,1,11.871186,11.871186,0,0,0,0,0,0,0,0,1,0,1,0,0,55.22,46.37,-9,-9,6.666666666666667,3,4,0,0,6,8,4,0,410,-63472.035,0,0,0,0,0,918.51501 +5596,6831,12196,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.5456872,7.4324365,0,0,0,-1051.4781,-9,2,2,2021,18,6,45,0,1,6,0,4.4020147,4.4020147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,5,1,1,0,0,8,6,3,0,336,170432.48,88995.195,0,0,167.71378,307.88028,176.22942 +5597,6832,12197,12198,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.8044066,7.9109354,0,10,-3,-60.157505,0,1,1,2021,12,0,72,35,1,0,0,3.9201124,3.9201124,0,0,0,0,0,0,0,0,0,0,0,0,0,38.95,46.86,51.24,58.84,8.333333333333334,1,1,0,0,13,6,5,0,691.5,98212.891,152258.06,215941.59,182888.91,-786.72668,6291.7007,2910.6343 +5597,6832,12198,12197,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.6697931,8.6589661,0,10,3,85.9757,0,-9,-9,2021,11,0,45,43,1,0,0,11.283145,11.283145,.05,.05,0,0,0,0,0,0,0,0,0,4.5944843,0,51.24,58.84,38.95,46.86,8.333333333333334,1,1,0,0,11,6,5,0,691.5,98212.891,152258.06,215941.59,182888.91,-786.72668,6291.7007,2910.6343 +5598,6833,12199,12200,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.7634444,6.6160569,0,27,5,20.011011,0,3,3,2021,10,1,15,15,1,1,0,5.7900128,5.7900128,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,54.2,57.49,10,1,1,0,0,12,10,5,1,1776.5,1145862,1082853,248045.63,86322.625,0,0,3918.4146 +5598,6833,12200,12199,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.0327406,9.3281679,0,27,-5,78.69194,0,3,3,2021,7,0,46,78,1,0,0,20.164289,20.164289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52,54.51,10,1,1,0,0,12,10,5,1,1776.5,1145862,1082853,248045.63,86322.625,0,0,3918.4146 +5599,6834,12201,12202,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,6.7539024,6.6822705,0,9,-5,97.453133,0,3,3,2021,20,9,70,70,1,9,0,1.2775624,1.2775624,0,0,0,1,0,0,0,27,1,1,0,7.7576046,0,53.87,40.03,41.52,20.45,6.666666666666667,1,1,0,0,11,10,2,1,1573,835725.38,340322.91,222328.34,0,0,0,3438.7686 +5599,6834,12202,12201,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9033537,6.0775719,9,5,114.78324,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,12.436732,0,0,1,1,0,5.5628147,5.8565521,41.52,20.45,53.87,40.03,5,1,1,0,0,4,10,2,1,1573,835725.38,340322.91,222328.34,0,0,0,3438.7686 +5600,6835,12203,-9,12204,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-969.91724,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,4,6,-9,0,0,2,1,0,1637.3334,-6111.3159,0,0,0,0,157.92537,3013.926 +5600,6835,12204,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,0,0,0,0,0,-979.41547,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.88,60.39,-9,-9,1.666666666666667,4,2,0,0,11,2,1,0,1637.3334,-6111.3159,0,0,0,0,157.92537,3013.926 +5600,6835,12205,-9,12204,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-899.84399,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,6,-9,0,0,2,1,0,1637.3334,-6111.3159,0,0,0,0,157.92537,3013.926 +5601,6836,12206,-9,12208,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.64581,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,1,0,3291.3333,28148.217,0,0,0,0,0,2100.7952 +5601,6836,12207,-9,12208,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.3186,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,1,0,3291.3333,28148.217,0,0,0,0,0,2100.7952 +5601,6836,12208,-9,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,0,0,-1006.472,0,2,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,5,1,1,0,0,0,8,1,0,3291.3333,28148.217,0,0,0,0,0,2100.7952 +5602,6837,12209,12210,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,47,-3,-68.654678,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2539186,0,50.18,47.09,51.28,50.73,8.333333333333334,1,1,0,0,4,7,4,1,712,263766.69,234596.78,0,0,0,0,3780.3164 +5602,6837,12210,12209,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.6557961,8.6739979,49,3,-45.276279,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.2389288,8.5991125,51.28,50.73,50.18,47.09,8.333333333333334,1,1,0,0,8,7,4,1,712,263766.69,234596.78,0,0,0,0,3780.3164 +5603,6838,12211,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-930.37299,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,54,-9,-9,8,1,1,0,0,0,13,1,0,1494,174374.75,0,0,0,0,0,1137.73 +5603,6839,12212,-9,12211,-9,1,0,24,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1130.2214,0,3,-9,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,29.65,28.9,-9,-9,1.666666666666667,1,1,0,0,6,13,1,0,110,0,0,0,0,0,0,967.04938 +5603,6840,12213,-9,12211,-9,1,1,23,0,0,0,2,2,-9,1,1,0,0,0,0,0,-965.17816,0,3,-9,2021,18,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,17.53,41.05,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,269,86880.977,0,0,0,-871.93951,0,-72.924843 +5604,6841,12214,12215,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.8710661,8.1058207,0,7,-3,-1.4901358,0,2,3,2021,17,5,38,35,1,5,0,6.4845557,6.4845557,0,0,0,0,0,0,0,0,0,0,0,0,0,39.86,38.75,45.17,39.64,1.666666666666667,1,1,0,0,8,9,4,1,997.5,1383119.3,1333993.8,334357.69,115018.44,351.79276,1900.4268,2916.479 +5604,6841,12215,12214,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.264142,8.3785419,0,7,3,-9.2830524,0,3,3,2021,13,1,42,47,1,1,0,8.2463217,8.2463217,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.17,39.64,39.86,38.75,5,1,1,0,0,8,9,4,1,997.5,1383119.3,1333993.8,334357.69,115018.44,351.79276,1900.4268,2916.479 +5604,6842,12216,-9,12214,12215,1,0,22,0,0,0,2,2,-9,0,4,7.7236867,8.8168211,7.8067117,0,0,-1017.1736,0,3,2,2021,10,1,38,18,1,1,1,5.9198246,5.9198246,.05,.05,0,0,0,0,0,0,0,0,0,7.8145938,0,40.13,59.62,-9,-9,8.333333333333334,1,1,0,0,4,9,5,1,915,41019.566,70929.781,0,0,0,0,2984.6396 +5605,6843,12217,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,2,7.735888,7.736239,0,0,0,-1058.8865,0,3,3,2021,27,10,36,49,1,10,0,6.3155093,6.3155093,.05,.05,0,0,0,0,0,0,0,0,0,0,0,8.550000000000001,50.47,-9,-9,1.666666666666667,1,1,0,1,13,5,3,1,2490,58312.059,-80601.875,0,0,0,8062.5078,1779.4205 +5606,6844,12218,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6662626,8.7272291,0,0,0,-959.5238,0,2,2,2021,10,0,41,41,1,0,0,13.332977,13.332977,.05,.05,0,0,0,0,0,0,0,0,0,3.7347128,0,52.99,51.28,-9,-9,5,1,1,0,0,9,6,5,1,688,-21920.293,84122.563,141197.03,78182.813,0,0,1491.3188 +5607,6845,12219,12221,-9,-9,1,1,54,0,3,0,1,1,-9,0,3,9.6616812,9.8075304,0,13,-1,-40.842861,0,-9,-9,2021,9,1,48,48,1,1,0,34.902134,34.902134,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.79,55.86,6.666666666666667,1,1,0,0,15,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5607,6845,12220,-9,12221,12219,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-862.24133,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5607,6845,12221,12219,-9,-9,1,0,55,0,3,0,1,1,-9,0,4,9.482934,9.8043385,0,32,1,102.89298,0,-9,-9,2021,6,0,50,45,1,0,0,37.305229,37.305229,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.79,55.86,54.96,53.17,6.666666666666667,3,4,0,0,15,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5607,6845,12222,-9,12221,12219,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1157.048,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,735.75,1327986.6,1185577.5,313311.13,116315.17,21434.203,0,9449.5 +5608,6846,12223,-9,12224,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1020.2434,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,2,0,1510,426935,56286.406,244522.59,0,0,0,1024.1841 +5608,6846,12224,-9,-9,-9,1,0,54,0,2,0,2,2,-9,0,5,6.9035859,7.0025067,0,0,0,-1161.5829,0,2,2,2021,7,0,16,16,1,0,0,6.2141995,6.2141995,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,1,10,5,2,0,1510,426935,56286.406,244522.59,0,0,0,1024.1841 +5608,6846,12225,-9,12224,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-976.6402,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,2,0,1510,426935,56286.406,244522.59,0,0,0,1024.1841 +5609,6847,12226,12227,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,5.9393325,5.9083958,7,-3,-15.748941,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.7423115,55.33,50.05,44.67,32.3,10,1,1,0,0,0,4,2,1,1449.5,982999.63,291053.5,300638.91,0,0,0,1858.8116 +5609,6847,12227,12226,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.3858571,7.1433668,48,3,-16.416422,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2432699,44.67,32.3,55.33,50.05,8.333333333333334,1,1,0,0,0,4,2,1,1449.5,982999.63,291053.5,300638.91,0,0,0,1858.8116 +5610,6848,12228,12230,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.6048374,8.7237043,0,23,-10,68.426575,0,2,2,2021,13,1,23,23,1,1,0,15.128652,15.128652,.05,.05,0,0,0,0,0,0,1,1,0,3.1346519,0,54.2,57.49,51.41,56.15,8.333333333333334,1,1,0,0,10,7,5,1,1150.3334,2096146.3,1280562.5,665369.81,151234.86,1498.0563,0,5582.4351 +5610,6848,12229,-9,12228,12230,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1059.5911,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,1150.3334,2096146.3,1280562.5,665369.81,151234.86,1498.0563,0,5582.4351 +5610,6848,12230,12228,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,9.5964928,9.3771601,0,23,10,9.4819574,0,2,1,2021,11,0,45,43,1,0,0,33.636433,33.636433,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,54.2,57.49,6.666666666666667,1,1,0,0,10,7,5,1,1150.3334,2096146.3,1280562.5,665369.81,151234.86,1498.0563,0,5582.4351 +5610,6849,12231,-9,12228,12230,1,0,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-1092.2898,-9,2,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,10,1,1,0,0,2,7,1,1,792,-79411.867,0,0,0,0,0,0 +5610,6850,12232,-9,12228,12230,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1096.8068,1,2,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,53.24,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,106,190989.59,0,0,0,0,0,4235.7266 +5611,6851,12233,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2729721,7.974153,0,0,0,-908.28735,0,2,2,2021,25,12,37,42,1,12,0,7.7773724,7.7773724,.05,.05,0,0,0,0,0,0,0,0,0,1.9396414,0,25.44,65.40000000000001,-9,-9,3.333333333333333,1,1,0,0,9,7,4,0,289,699521.25,211712.16,219785.48,0,0,0,1816.104 +5612,6852,12234,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,8.2355309,8.2736931,0,0,-1120.3453,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1361456,8.2346039,60.69,53.18,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,801,2920659.3,2887478,0,0,0,0,2595.0815 +5613,6853,12235,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5898066,8.4049978,0,0,0,-1069.7889,0,3,3,2021,9,0,38,49,1,0,0,17.557026,17.557026,.05,.05,0,0,0,0,0,7,0,0,0,0,0,58.33,44.69,-9,-9,8.333333333333334,1,1,0,0,12,13,5,1,5261,233926.58,-5057.8647,-31997.648,19773.061,0,2978.511,1702.4011 +5614,6854,12236,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.986927,6.6982784,0,0,-1076.3033,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2740884,67.12,15.13,-9,-9,10,1,1,0,0,0,12,3,1,589,434949.41,160011.47,51825.895,0,5052.2773,0,1836.2183 +5615,6855,12237,12238,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.4967108,9.0672283,0,12,2,69.271996,0,-9,-9,2021,12,0,30,30,1,0,0,22.152275,22.152275,.05,.05,0,0,0,0,0,14.5,0,0,0,8.3545628,0,63.41,39.7,62.27,42.94,8.333333333333334,1,1,0,0,11,4,4,1,1250.5,1500142.5,864848.25,225027,0,0,0,7960.4326 +5615,6855,12238,12237,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.82832,7.2550745,12,-2,-6.0180097,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.4418049,6.6283841,62.27,42.94,63.41,39.7,8.333333333333334,1,1,0,0,0,4,4,1,1250.5,1500142.5,864848.25,225027,0,0,0,7960.4326 +5616,6856,12239,12240,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,7.0110593,7.0372362,0,2,-4,85.372169,0,-9,-9,2021,6,0,16,15,1,0,0,6.2503958,6.2503958,0,0,0,0,0,0,0,0,1,1,0,3.1296399,0,56.35,51,48.81,59.91,10,1,1,0,0,7,7,3,1,258.5,-28360.82,0,0,0,0,0,1540.5968 +5616,6856,12240,12239,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,6.8404083,6.9479628,0,2,4,110.94308,0,1,1,2021,11,0,37,38,1,0,0,2.5693462,2.5693462,0,0,0,0,0,0,0,0,1,1,0,1.9826697,0,48.81,59.91,56.35,51,6.666666666666667,1,1,0,0,5,7,3,1,258.5,-28360.82,0,0,0,0,0,1540.5968 +5617,6857,12241,12242,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.8374825,6.1788898,46,2,-9.9161139,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7896228,53.91,39.8,58.32,50.22,8.333333333333334,1,1,0,0,0,2,5,1,929,1050427.5,0,855115.5,0,0,0,3579.1221 +5617,6857,12242,12241,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.7850399,8.9250479,0,14,-2,-156.77715,0,3,2,2021,7,0,56,65,1,0,0,14.644501,14.644501,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.91,39.8,10,1,1,0,0,8,2,5,1,929,1050427.5,0,855115.5,0,0,0,3579.1221 +5618,6858,12243,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-890.07739,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,25.43,29.19,-9,-9,1.666666666666667,1,1,0,1,0,9,1,1,816,-55947.551,0,0,0,0,0,625.23456 +5619,6859,12244,-9,12246,12245,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.8956,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,377,308527.69,72785.359,306711.88,145701.34,0,0,4027.2988 +5619,6859,12245,12246,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,8.9321318,8.7733593,0,9,5,42.672352,0,-9,-9,2021,17,5,40,40,1,5,0,18.673077,18.673077,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,33.07,55.18,42.61,54.85,6.666666666666667,1,1,0,0,13,11,5,1,377,308527.69,72785.359,306711.88,145701.34,0,0,4027.2988 +5619,6859,12246,12245,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.335391,8.4706459,0,9,-5,-110.83664,0,-9,-9,2021,10,0,40,40,1,0,0,16.400164,16.400164,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,33.07,55.18,6.666666666666667,1,1,0,0,11,11,5,1,377,308527.69,72785.359,306711.88,145701.34,0,0,4027.2988 +5620,6860,12247,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.4550152,8.2847548,6.6644311,0,0,-973.62897,0,3,3,2021,12,0,37,37,1,0,0,11.95936,11.95936,0,0,0,0,0,0,0,0,1,1,0,0,6.6340475,48.4,29.56,-9,-9,5,1,1,0,1,8,4,5,1,830,547423.81,46027.262,313464,0,0,0,2316.7815 +5620,6861,12248,-9,12247,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-978.01013,-9,2,-9,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.78968138,0,47.38,49.72,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,783,-148536.77,0,0,0,0,0,54.267357 +5621,6862,12249,12250,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.520503,7.9628949,7,-1,15.049366,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.387351,8.4792719,57.16,56.15,65.38,41.59,10,1,1,0,0,5,9,4,1,91.5,2037835.3,651886.13,858045.5,0,0,0,4350.0166 +5621,6862,12250,12249,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.6204438,7.1425915,7,1,-49.448143,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5976038,7.3066211,65.38,41.59,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,91.5,2037835.3,651886.13,858045.5,0,0,0,4350.0166 +5622,6863,12251,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-916.36719,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.13,36.96,-9,-9,6.666666666666667,1,1,0,0,1,13,1,0,243,34223.348,83892.438,0,0,0,-810.62012,1375.9174 +5623,6864,12252,-9,12253,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-978.89789,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,4,0,678,-21176,60056.445,0,0,0,995.18695,1746.491 +5623,6864,12253,-9,12254,-9,1,0,30,1,1,0,1,1,-9,0,2,8.1497431,8.5683956,0,0,0,-1031.2872,0,2,2,2021,21,9,37,37,1,9,1,10.719251,10.719251,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.98,53.93,-9,-9,1.666666666666667,1,1,0,0,10,11,4,0,678,-21176,60056.445,0,0,0,995.18695,1746.491 +5623,6865,12254,-9,-9,-9,1,0,52,1,1,0,2,2,-9,1,1,0,0,0,0,0,-898.52478,0,3,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.05,29.93,-9,-9,1.666666666666667,1,1,1,1,0,11,1,0,195,0,0,0,0,0,0,280.02823 +5624,6866,12255,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1110.2395,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.4703007,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,7,1,0,640,233695.69,0,0,0,0,0,1350.0018 +5625,6867,12256,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.1481314,6.1370745,0,0,-975.8623,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8367782,5.6190295,42.86,28.06,-9,-9,5,1,1,0,0,10,9,2,1,382,-144895.52,30367.941,0,0,0,0,1441.349 +5626,6868,12257,12258,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,49,2,28.99234,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8951883,0,51.06,35.25,57.16,56.15,5,1,1,0,0,6,6,3,1,369.5,758846.44,413385.44,292462.09,0,0,0,4912.2388 +5626,6868,12258,12257,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.925312,7.9767008,49,-2,67.876839,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8702621,7.9733024,57.16,56.15,51.06,35.25,8.333333333333334,1,1,0,0,0,6,3,1,369.5,758846.44,413385.44,292462.09,0,0,0,4912.2388 +5626,6869,12259,-9,12257,12258,1,1,36,0,0,0,1,1,-9,0,2,8.0214977,8.3414488,0,0,0,-1045.8175,0,2,1,2021,12,3,50,50,1,3,0,8.2913628,8.2913628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,39.8,-9,-9,6.666666666666667,1,1,0,0,4,6,4,1,205,-19115.834,47455.793,0,0,0,0,1444.6283 +5627,6870,12260,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,5,0,5.640739,5.4249701,0,0,-1037.0479,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3947945,5.8405952,59.43,58.05,-9,-9,10,3,4,0,0,5,8,2,1,128,874248.44,92795.695,365257.44,0,0,0,58.568935 +5628,6871,12261,12262,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.4627581,6.2892356,60,-4,-54.951607,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,2.6188674,0,0,1,1,0,5.6748447,5.9878726,54.08,33.14,48.45,57.49,8.333333333333334,1,1,0,0,0,2,4,1,797,524945.19,299082.78,170321.22,0,0,0,3883.6235 +5628,6871,12262,12261,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,8.6047764,8.2412205,60,4,11.676222,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.360291,0,0,1,1,0,8.2841158,8.8501215,48.45,57.49,54.08,33.14,10,1,1,0,0,0,2,4,1,797,524945.19,299082.78,170321.22,0,0,0,3883.6235 +5629,6872,12263,12264,-9,-9,1,1,41,1,4,0,3,3,-9,1,2,0,0,0,7,4,0,0,3,-9,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.72,49.09,35.93,24.23,1.666666666666667,1,1,0,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12264,12263,-9,-9,1,0,37,1,4,0,2,2,-9,1,2,0,0,0,7,-4,0,0,3,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.93,24.23,11.72,49.09,3.333333333333333,1,1,0,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12265,-9,12264,12263,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-955.05719,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12266,-9,12264,12263,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-854.04669,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12267,-9,12264,12263,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-971.21307,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5629,6872,12268,-9,12264,12263,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1073.744,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,1369.8334,67815.664,0,0,0,0,0,2939.5579 +5630,6873,12269,12270,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,53,-4,83.726067,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,14.458855,15.481349,121.42747,0,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,9,2,1,630,394429.5,300912.44,247519.75,0,0,0,2650.2302 +5630,6873,12270,12269,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.2463102,6.8135409,7,4,10.415133,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6855092,6.8036456,53,46,51,46,8,1,1,0,0,0,9,2,1,630,394429.5,300912.44,247519.75,0,0,0,2650.2302 +5631,6874,12271,12272,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.4482436,7.2308578,6,-6,54.819252,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.9015355,7.186646,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,0,8,5,1,390.5,847392.5,0,991434.94,93457.906,0,2070.7354,9285.6563 +5631,6874,12272,12271,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,9.4244947,9.524189,19,6,-110.3862,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.8249931,9.428731,52,54.51,57.16,56.15,8.333333333333334,1,1,0,0,0,8,5,1,390.5,847392.5,0,991434.94,93457.906,0,2070.7354,9285.6563 +5631,6875,12273,-9,12271,12272,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-951.96069,0,1,1,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4972954,0,26.82,55.72,-9,-9,0,1,1,0,0,1,8,1,1,1312,-108272.93,0,0,0,0,0,137.36018 +5632,6876,12274,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.1025152,8.3492489,0,0,0,-958.34625,0,3,3,2021,6,0,36,36,1,0,0,9.1434078,9.1434078,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,13,13,4,1,373,165599.08,0,0,0,0,0,1482.4871 +5633,6877,12275,12276,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.8964214,9.721981,0,8,3,86.63633,-9,2,2,2021,13,4,53,0,1,4,0,27.293699,27.293699,.05,.05,.05,0,0,0,0,0,0,0,0,2.3995833,0,50.34,56.4,49.41,47.57,5,1,1,0,0,10,11,5,1,516.5,1191057.3,1151495,0,0,0,5331.7026,8771.7051 +5633,6877,12276,12275,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.5159521,8.1760664,0,8,-3,79.154816,0,1,1,2021,11,1,43,50,1,1,0,15.935225,15.935225,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,47.57,50.34,56.4,5,1,1,0,0,11,11,5,1,516.5,1191057.3,1151495,0,0,0,5331.7026,8771.7051 +5634,6878,12277,12279,-9,-9,1,1,55,0,1,0,2,2,-9,0,5,8.5764675,8.8377218,0,9,-1,52.736217,0,-9,-9,2021,12,0,45,50,1,0,0,14.562741,14.562741,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,481,438501.63,199236.38,285998.91,89309.75,6352.0322,16996.914,3940.9951 +5634,6878,12278,-9,12279,12277,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.3022,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,481,438501.63,199236.38,285998.91,89309.75,6352.0322,16996.914,3940.9951 +5634,6878,12279,12277,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,7.7419152,7.8909364,0,9,1,-117.013,0,2,2,2021,12,0,6,20,1,0,0,45.76218,45.76218,0,0,0,0,0,0,0,0,1,1,0,4.5548434,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,9,4,1,481,438501.63,199236.38,285998.91,89309.75,6352.0322,16996.914,3940.9951 +5635,6879,12280,12281,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8303251,8.5316658,0,33,0,-78.429451,0,3,2,2021,7,0,37,37,1,0,0,18.856239,18.856239,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,55.79,52.62,8.333333333333334,1,1,0,0,9,7,5,1,734.5,673130.63,123769.73,420472.19,127619.66,0,0,2744.248 +5635,6879,12281,12280,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,7.9034781,7.7886405,0,8,0,70.994942,0,3,3,2021,6,0,37,60,1,0,0,7.6354699,7.6354699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,60.12,54.8,0,1,1,0,0,7,7,5,1,734.5,673130.63,123769.73,420472.19,127619.66,0,0,2744.248 +5636,6880,12282,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.0630379,8.2147579,0,0,0,-1105.64,-9,2,2,2021,2,0,50,0,1,0,0,5.8949475,5.8949475,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,1976,-72188.414,2800.2522,0,0,0,0,1187.7257 +5637,6881,12283,12285,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.2738876,8.1102495,0,17,0,-42.571335,0,3,3,2021,7,0,29,21,1,0,0,12.472527,12.472527,.05,.05,0,0,0,0,0,0,1,1,0,2.4697547,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,14,12,4,1,722.66669,2752589.8,2065868.6,434467,0,0,0,3085.5122 +5637,6881,12284,-9,12283,12285,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.3454,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,722.66669,2752589.8,2065868.6,434467,0,0,0,3085.5122 +5637,6881,12285,12283,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6072645,8.2235956,0,17,0,-74.401825,0,2,2,2021,6,0,52,52,1,0,0,10.704856,10.704856,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,14,12,4,1,722.66669,2752589.8,2065868.6,434467,0,0,0,3085.5122 +5638,6882,12286,12287,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.8098717,8.6517868,0,13,3,-80.575798,0,2,2,2021,8,0,38,40,1,0,0,18.911789,18.911789,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.86,49.95,55.77,31.2,8.333333333333334,1,1,0,0,8,6,5,1,1054,2346560.8,2265191,157167,204547.19,11030.361,11048.475,5492.4395 +5638,6882,12287,12286,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.3376255,9.2258005,0,13,-3,-45.837818,0,2,2,2021,11,0,32,32,1,0,0,36.702091,36.702091,0,0,0,0,0,0,0,0,0,0,0,0,0,55.77,31.2,58.86,49.95,8.333333333333334,1,1,0,0,7,6,5,1,1054,2346560.8,2265191,157167,204547.19,11030.361,11048.475,5492.4395 +5638,6883,12288,-9,12287,12286,1,0,22,0,0,0,3,3,-9,0,4,6.9677134,6.9352493,0,0,0,-1070.6554,0,2,2,2021,14,2,16,36,1,2,1,9.8651953,9.8651953,0,0,0,0,0,0,0,0,0,0,0,0,0,35.09,62.46,-9,-9,6.666666666666667,1,1,0,0,5,6,3,1,956,-18378.229,0,0,0,0,0,394.30682 +5639,6884,12289,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,4.1735578,4.064394,0,0,-986.45581,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,2.5823517,5.642457,23.037548,0,1,1,0,3.5559888,4.0055485,42.1,32.87,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,2233,-162585.17,19691.572,0,0,0,0,442.3255 +5640,6885,12290,12291,-9,-9,1,1,57,0,0,0,1,1,-9,0,1,7.444211,7.9482918,6.6774588,10,0,-2.4960017,0,2,1,2021,22,10,35,40,1,10,0,7.5294442,7.5294442,.05,.05,.05,0,0,0,0,0,1,1,0,6.7260098,6.8935752,37.3,39.98,33.96,38.28,5,1,1,0,1,10,12,3,1,2404.5,221309.28,240829.56,0,0,0,0,1842.8137 +5640,6885,12291,12290,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.0722642,4.8972206,10,9,83.750755,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9200158,4.8227396,33.96,38.28,37.3,39.98,6.666666666666667,1,1,0,0,7,12,3,1,2404.5,221309.28,240829.56,0,0,0,0,1842.8137 +5641,6886,12292,12293,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,5.4297013,5.4095297,27,-5,-77.543022,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6321896,5.5319386,46.01,52.88,47.87,46.65,8.333333333333334,1,1,0,0,2,9,2,1,655.5,407981.16,259738.59,232912.09,0,0,0,1693.3809 +5641,6886,12293,12292,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.3637509,5.4602904,30,5,4.3733463,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4885159,47.87,46.65,46.01,52.88,5,1,1,0,0,5,9,2,1,655.5,407981.16,259738.59,232912.09,0,0,0,1693.3809 +5642,6887,12294,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,8.1614265,8.2991886,0,0,0,-1006.673,0,3,2,2021,10,1,40,37,1,1,0,11.893975,11.893975,.05,.05,0,0,0,0,0,2,0,0,0,2.8003597,0,52.15,48.98,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,184,902722.31,744863.25,149284.61,0,0,0,1738.6415 +5643,6888,12295,-9,-9,-9,1,0,45,0,2,0,3,3,-9,1,3,6.7591825,6.5574212,0,0,0,-1085.3582,0,3,2,2021,22,8,20,0,1,8,0,6.1093645,6.1093645,0,0,0,0,0,0,0,106,1,1,0,0,0,28.46,43.55,-9,-9,1.666666666666667,2,3,0,1,1,6,2,1,840,28307.996,60189.672,0,0,10095.857,0,1006.7802 +5643,6888,12296,-9,12295,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.15887,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,840,28307.996,60189.672,0,0,10095.857,0,1006.7802 +5643,6889,12297,-9,12295,-9,1,1,22,0,2,0,2,2,-9,0,3,7.8940907,7.8580747,0,0,0,-1106.1165,0,3,-9,2021,10,0,39,44,1,0,1,7.9519176,7.9519176,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,52,54.51,-9,-9,5,2,3,0,0,4,6,4,1,108,-25582.277,41581.23,0,0,0,0,1122.3706 +5644,6890,12298,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,5.1857376,5.1493511,0,0,-1012.3123,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,.7240774,0,0,1,1,0,0,5.3438621,49.55,39.88,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,356,173805.55,143287.53,28173.584,0,0,0,733.43842 +5645,6891,12299,12300,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,51,1,44.100521,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5356755,0,60.45,41.05,44.19,56.73,5,1,1,0,0,0,2,3,1,1576,535277,316918.63,145358.09,0,0,0,3121.0645 +5645,6891,12300,12299,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.9744782,7.7809124,51,-1,-13.30656,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8997803,7.7857418,44.19,56.73,60.45,41.05,6.666666666666667,1,1,0,0,0,2,3,1,1576,535277,316918.63,145358.09,0,0,0,3121.0645 +5646,6892,12301,-9,12302,-9,1,0,33,0,0,0,1,1,0,0,4,0,0,0,0,0,-1109.6837,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,5,1,1,0,0,10,8,1,0,1596,6910.0825,90582.742,0,0,0,0,0 +5646,6893,12302,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1021.2994,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.09,27.08,-9,-9,6.666666666666667,1,1,0,0,0,8,1,0,465,-58454.422,0,0,0,0,0,1633.2697 +5646,6894,12303,-9,12302,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-960.8009,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.95,56.4,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,157,82721.125,0,0,0,0,0,0 +5646,6895,12304,-9,12302,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7253771,8.5327492,0,0,0,-980.86542,0,3,-9,2021,12,0,52,47,1,0,1,11.71967,11.71967,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,584,110069.44,7317.7217,0,0,0,0,2082.4861 +5647,6896,12305,12308,-9,-9,1,1,34,0,3,0,2,2,-9,0,2,8.1352158,7.9977164,0,14,1,-50.546967,0,2,2,2021,8,0,39,39,1,0,0,8.6841021,8.6841021,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,56.28,42,14.25,61.15,5,1,1,0,0,5,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12306,-9,12308,12305,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-830.22864,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12307,-9,12308,12305,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.7876,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12308,12305,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,14,-1,-104.04488,0,2,2,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,14.25,61.15,56.28,42,6.666666666666667,1,1,0,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5647,6896,12309,-9,12308,12305,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-905.79602,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,7,3,0,1524.6,169973.45,18406.502,253520,149179.23,4838.5366,0,2297.8257 +5648,6897,12310,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1090.5607,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9198318,0,62.25,48.33,-9,-9,1.666666666666667,1,1,0,0,0,6,1,1,1528,0,0,0,0,0,0,218.81694 +5649,6898,12311,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.9168382,6.7874484,0,0,-1036.4425,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0384102,6.8062162,52.71,47.23,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,1315,133066.22,0,110966.48,0,0,0,2262.094 +5650,6899,12312,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.87607,8.2429581,7.0794082,0,0,-958.73065,0,3,3,2021,22,9,33,33,1,9,0,8.3144426,8.3144426,0,0,0,0,0,0,0,93,0,0,0,1.6162711,6.9066963,25.9,63.7,-9,-9,3.333333333333333,1,1,0,0,14,7,4,1,923,2064646.4,268215.25,1455385.5,0,0,0,1611.6361 +5651,6900,12313,-9,12315,12314,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.5314,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5651,6900,12314,12315,-9,-9,1,1,35,0,2,0,2,2,-9,0,2,8.4770412,8.555809,0,10,-3,-62.981205,0,2,2,2021,16,5,40,40,1,5,0,16.986784,16.986784,.05,.05,0,0,0,0,0,0,1,1,0,7.0360274,0,41.74,37.84,37.82,61.4,6.666666666666667,1,1,0,0,7,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5651,6900,12315,12314,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,6.0147867,6.5509262,5.9077106,10,3,-137.75772,0,2,3,2021,17,7,30,42,1,7,0,1.2764955,1.2764955,.05,.05,0,0,0,0,0,0,1,1,0,5.6253729,0,37.82,61.4,41.74,37.84,6.666666666666667,1,1,0,1,9,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5651,6900,12316,-9,12315,12314,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.52014,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,792,262831.22,67247.406,140527.08,95302.445,0,0,2748.248 +5652,6901,12317,12318,-9,-9,1,0,32,0,0,0,2,2,-9,1,2,0,0,0,7,-20,0,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.2,46.39,44,24.14,3.333333333333333,1,1,1,0,0,4,1,0,1477,109774.69,0,0,0,0,0,2362.3599 +5652,6901,12318,12317,-9,-9,1,1,52,0,0,0,2,2,-9,1,3,0,0,0,7,20,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,24.14,29.2,46.39,5,4,2,0,0,0,4,1,0,1477,109774.69,0,0,0,0,0,2362.3599 +5653,6902,12319,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1145.2996,-9,-9,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,27,-9,-9,4,1,1,0,0,0,9,2,0,1101,159331.58,0,0,0,0,1366.9578,696.56927 +5654,6903,12320,-9,-9,-9,1,0,38,0,3,0,3,3,-9,0,4,6.8354225,6.8953862,0,0,0,-1056.4318,0,3,3,2021,11,0,16,0,1,2,0,8.2876215,8.2876215,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,55,-9,-9,7,2,3,0,1,1,8,2,0,801,41332.242,0,0,0,0,0,1699.2739 +5654,6903,12321,-9,12320,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-951.26965,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,2,0,801,41332.242,0,0,0,0,0,1699.2739 +5654,6903,12322,-9,12320,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-941.80896,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,8,2,0,801,41332.242,0,0,0,0,0,1699.2739 +5655,6904,12323,-9,-9,-9,1,1,58,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1044.562,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,38,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,1635,-13055.014,0,0,0,0,0,1014.1694 +5656,6905,12324,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.26614,8.1873388,0,0,0,-989.48804,-9,-9,-9,2021,11,0,40,0,1,0,0,11.578369,11.578369,.05,.05,0,0,0,0,0,42,0,0,0,0,0,56.94,41.29,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,393,118151.79,-4512.0464,0,0,0,0,1371.5316 +5657,6906,12325,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.2226663,7.3355098,0,0,0,-977.21216,0,3,2,2021,10,0,3,3,1,0,0,51.947296,51.947296,0,0,0,0,0,0,0,2,0,0,0,0,0,43,39,-9,-9,6.666666666666667,1,1,0,0,14,11,3,1,1833,-26527.691,0,0,0,2568.2527,1048.402,791.75348 +5657,6907,12326,-9,12325,-9,1,1,27,0,0,0,2,2,-9,0,4,8.0009985,7.6722002,0,0,0,-871.72552,0,2,3,2021,10,1,38,38,1,1,1,7.7063646,7.7063646,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,1451,161337.91,-83321.383,0,0,0,0,1417.8645 +5658,6908,12327,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1047.5288,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,209,259771.89,274716.91,27172.467,0,0,0,255.09325 +5659,6909,12328,12329,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.5759373,8.5757008,0,5,-1,105.9789,0,-9,-9,2021,14,4,53,50,1,4,0,9.9785204,9.9785204,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.96,50.73,37.68,53.96,10,1,1,0,0,6,9,5,1,565.5,610225.13,189027.3,254260.16,0,0,3964.8574,4842.7661 +5659,6909,12329,12328,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.9729795,8.9896383,0,5,1,-52.382027,0,-9,-9,2021,16,5,85,45,1,5,0,10.435012,10.435012,.05,.05,0,0,0,0,0,0,0,0,0,.072650947,0,37.68,53.96,53.96,50.73,8.333333333333334,2,3,0,0,8,9,5,1,565.5,610225.13,189027.3,254260.16,0,0,3964.8574,4842.7661 +5660,6910,12330,12331,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,7.5785441,6.9847126,34,-5,-66.251472,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4987693,7.5201082,47.25,48.42,57.33,53.46,5,1,1,0,0,0,2,4,0,1237.5,1589101,1520073.5,0,0,0,0,4597.2148 +5660,6910,12331,12330,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,8.2643394,8.4075985,3,5,-62.229111,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2454867,8.235918,57.33,53.46,47.25,48.42,8.333333333333334,1,1,0,0,0,2,4,0,1237.5,1589101,1520073.5,0,0,0,0,4597.2148 +5661,6911,12332,12333,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,8,-8,71.391243,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,47.61,50.53,8.333333333333334,1,1,0,0,8,4,5,1,1232,749737.63,183247.14,381846.19,13749.146,0,1992.6382,3006.7073 +5661,6911,12333,12332,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,9.0266018,9.6629324,5.8591151,8,8,-24.891697,0,2,2,2021,9,0,43,48,1,0,0,25.156517,25.156517,.05,.05,0,0,0,0,0,0,0,0,0,6.2646065,6.6927795,47.61,50.53,57.16,56.15,1.666666666666667,1,1,0,0,9,4,5,1,1232,749737.63,183247.14,381846.19,13749.146,0,1992.6382,3006.7073 +5661,6911,12334,-9,12332,12333,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.69183,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,5,1,1232,749737.63,183247.14,381846.19,13749.146,0,1992.6382,3006.7073 +5662,6912,12335,12336,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.8244257,8.4736938,0,1,0,-2.309762,-9,-9,-9,2021,8,0,42,0,1,0,0,20.917192,20.917192,.05,.05,0,0,0,0,0,0,0,0,0,3.5909088,0,52.48,54.33,54.97,47.63,8.333333333333334,1,1,0,0,8,7,5,1,1806.5,102959.88,124101.82,0,0,1584.2607,1368.5227,4148.8262 +5662,6912,12336,12335,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.5960703,8.3102608,0,1,0,-5.2767429,-9,2,-9,2021,11,0,50,0,1,0,0,10.966075,10.966075,0,0,0,0,0,0,0,0,0,0,0,0,0,54.97,47.63,52.48,54.33,8.333333333333334,1,1,0,0,8,7,5,1,1806.5,102959.88,124101.82,0,0,1584.2607,1368.5227,4148.8262 +5663,6913,12337,12338,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,7.8828092,7.482584,0,1,9,118.908,-9,-9,-9,2021,15,3,42,0,1,3,0,6.0445714,6.0445714,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.42,49,29.03,64.5,8.333333333333334,1,1,0,0,3,11,3,0,490.66666,26091.291,-15033.431,0,0,3533.6902,1427.6923,1889.6759 +5663,6913,12338,12337,-9,-9,1,0,20,1,1,0,2,2,-9,0,5,0,0,0,1,0,7.6079855,0,-9,-9,2021,12,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,29.03,64.5,37.42,49,8.333333333333334,1,1,0,0,3,11,3,0,490.66666,26091.291,-15033.431,0,0,3533.6902,1427.6923,1889.6759 +5663,6913,12339,-9,12338,12337,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1094.5935,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,0,490.66666,26091.291,-15033.431,0,0,3533.6902,1427.6923,1889.6759 +5664,6914,12340,12342,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.6731453,8.9146452,0,21,2,-66.830917,0,2,2,2021,11,1,26,36,1,1,0,27.267597,27.267597,.05,.05,0,0,0,0,0,0,1,1,0,.7594412,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1288.6666,2032585.1,1586296.8,598368.94,119097.16,0,0,3667.8022 +5664,6914,12341,-9,12342,12340,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.2218,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,1288.6666,2032585.1,1586296.8,598368.94,119097.16,0,0,3667.8022 +5664,6914,12342,12340,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,7.8481331,7.8430562,0,21,-2,-4.9837298,0,2,2,2021,6,0,25,29,1,0,0,11.050562,11.050562,0,0,0,0,0,0,0,0,1,1,0,1.643368,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,10,5,1,1288.6666,2032585.1,1586296.8,598368.94,119097.16,0,0,3667.8022 +5665,6915,12343,12344,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,8.7321892,8.9259005,0,19,-6,-98.968399,0,2,-9,2021,19,5,50,50,1,5,0,16.228092,16.228092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.28,54.75,53.5,51.02,6.666666666666667,1,1,0,0,11,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5665,6915,12344,12343,-9,-9,1,1,47,0,3,0,1,1,-9,0,3,9.2625074,8.9993029,0,19,6,-99.269173,0,1,2,2021,8,0,50,55,1,0,0,18.530785,18.530785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,42.28,54.75,6.666666666666667,1,1,0,0,14,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5665,6915,12345,-9,12343,12344,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1157.463,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5665,6915,12346,-9,12343,12344,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.7061,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,867,367792.63,138986.72,269053.19,125177.98,503.4689,0,5182.502 +5666,6916,12347,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1073.1747,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.67,41.08,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,518,110881.28,124871.07,0,0,14440.319,0,1868.8176 +5667,6917,12348,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,2,8.6604786,8.6774664,0,0,0,-885.87946,-9,1,1,2021,8,1,41,0,1,1,0,11.679698,11.679698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.8,45.89,-9,-9,8.333333333333334,4,2,0,0,4,9,5,0,1445,132196.47,5205.4512,95705.766,124098.34,0,0,2347.5906 +5668,6918,12349,12350,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.6224122,7.8952575,0,26,-4,-52.456886,0,-9,-9,2021,11,2,32,30,1,2,0,6.4647217,6.4647217,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,58.29,51,54,8.333333333333334,1,1,0,0,9,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5668,6918,12350,12349,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,8.6058474,8.681757,0,7,4,-86.343369,0,-9,-9,2021,10,0,45,49,1,1,0,11.796181,11.796181,0,0,0,0,0,0,0,0,1,1,0,6.93436,0,51,54,52.77,58.29,8,2,3,0,0,1,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5668,6918,12351,-9,12350,12349,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.47516,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5668,6918,12352,-9,12350,12349,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-866.94513,-9,2,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.77,60.77,-9,-9,8.333333333333334,4,2,0,0,0,8,3,1,1761.75,504434.56,244087.53,400212.72,180088.77,0,0,2978.1877 +5669,6919,12353,12355,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.2704563,8.2727137,0,20,2,47.612553,0,2,2,2021,10,0,60,80,1,0,0,8.1451826,8.1451826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,50,54,8.333333333333334,1,1,0,0,9,7,4,1,1996,276945.75,90612.758,379994.59,135688.23,0,0,3297.3901 +5669,6919,12354,-9,12355,12353,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.58075,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1996,276945.75,90612.758,379994.59,135688.23,0,0,3297.3901 +5669,6919,12355,12353,-9,-9,1,0,47,0,2,0,3,3,-9,0,4,7.9108052,8.2117691,0,7,-2,-22.040125,0,-9,-9,2021,10,0,20,0,1,1,0,16.028059,16.028059,0,0,0,0,0,0,0,0,1,1,0,.56905979,0,50,54,48.87,58.55,8,1,1,0,0,1,7,4,1,1996,276945.75,90612.758,379994.59,135688.23,0,0,3297.3901 +5670,6920,12356,12357,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,9.0004635,8.9485197,0,10,0,-62.708305,0,3,3,2021,7,0,40,40,1,0,0,18.395939,18.395939,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,37.08,57.26,10,1,1,0,0,11,13,5,1,574,96538.313,90533.039,0,0,13065.295,0,3351.9688 +5670,6920,12357,12356,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7292814,8.0305147,0,10,9,-121.32638,0,2,2,2021,17,5,33,33,1,5,0,8.7266588,8.7266588,0,0,0,0,0,0,0,7,1,1,0,1.4843533,0,37.08,57.26,57.33,53.46,1.666666666666667,3,4,0,0,11,13,5,1,574,96538.313,90533.039,0,0,13065.295,0,3351.9688 +5670,6921,12358,-9,12357,12356,1,0,21,0,0,0,3,3,0,1,4,0,0,0,0,0,-1127.3334,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.75,54.92,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,581,214955.06,0,0,0,0,0,757.42383 +5670,6922,12359,-9,12357,12356,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1002.7924,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,27,1,1,0,.78099543,0,41.39,62.48,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,485,70945.82,0,0,0,0,0,523.25049 +5671,6923,12360,12361,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,48,2,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,31.451845,0,2,1,1,0,.87109625,0,49.16,51.67,62.66,52.4,8.333333333333334,1,1,0,0,8,7,1,1,237.5,420955.84,0,145463.13,0,0,0,412.32114 +5671,6923,12361,12360,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,48,-2,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,49.16,51.67,10,1,1,0,0,0,7,1,1,237.5,420955.84,0,145463.13,0,0,0,412.32114 +5671,6924,12362,-9,12360,12361,1,0,28,0,0,0,2,2,-9,0,4,8.2578497,8.2312231,0,0,0,-928.42114,0,3,2,2021,11,0,39,39,1,2,0,12.248801,12.248801,0,0,0,0,0,0,0,0,1,1,0,6.7703156,0,48,57,-9,-9,7,1,1,0,0,1,7,4,1,606,-34877.164,0,0,0,0,0,2530.7551 +5672,6925,12363,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.4035621,6.0957785,0,0,0,-1042.5199,0,-9,-9,2021,22,9,8,8,1,9,0,9.5145741,9.5145741,0,0,0,0,0,0,0,0,1,1,0,0,0,37.9,50.3,-9,-9,3.333333333333333,1,1,0,1,10,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5672,6925,12364,-9,12363,-9,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1099.5536,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5672,6925,12365,-9,12363,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-931.9574,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5672,6925,12366,-9,12363,-9,1,0,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-970.91992,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,594.5,272576.88,60826.059,0,0,0,0,1905.7788 +5673,6926,12367,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.6715298,7.4772515,0,0,0,-913.30542,0,3,3,2021,8,0,38,39,1,0,0,5.4224477,5.4224477,.05,.05,0,0,0,0,0,7,0,0,0,0,0,48.77,22.19,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,175,180856.61,-23263.967,0,0,0,0,1368.3804 +5674,6927,12368,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,7.8358054,7.6826057,0,0,-1099.7667,0,2,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3451724,43.66,29.92,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,863,676231.69,284923.53,450798.88,0,0,0,1372.342 +5675,6928,12369,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,7.8920317,7.8725762,0,0,0,-912.69196,0,2,-9,2021,28,11,25,25,1,11,0,14.710555,14.710555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.45,43.61,-9,-9,5,1,1,0,0,14,7,4,0,417,16049.378,-44437.461,0,0,0,0,1407.0471 +5676,6929,12370,-9,12372,12371,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1080.0613,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,907.33331,830049.06,358604.41,684636.06,226769.61,0,0,7616.4111 +5676,6929,12371,12372,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.9696999,9.3058214,0,13,1,-59.562,0,1,1,2021,12,0,55,60,1,0,0,22.371613,22.371613,.05,.05,.05,0,0,0,0,0,0,0,0,7.2373743,0,45.43,53.5,57.16,56.15,8.333333333333334,1,1,0,0,10,8,5,1,907.33331,830049.06,358604.41,684636.06,226769.61,0,0,7616.4111 +5676,6929,12372,12371,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.3400192,9.2381496,0,13,-1,-64.950485,0,1,1,2021,8,0,48,44,1,0,0,30.6185,30.6185,.05,.05,0,0,0,0,0,0,0,0,0,4.8937197,0,57.16,56.15,45.43,53.5,8.333333333333334,1,1,0,0,10,8,5,1,907.33331,830049.06,358604.41,684636.06,226769.61,0,0,7616.4111 +5677,6930,12373,-9,12375,12374,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1104.567,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,2,1,854.33331,1786597.4,1163731.8,224578.56,69367.109,0,0,697.42609 +5677,6930,12374,12375,-9,-9,1,1,57,0,1,0,2,2,-9,0,4,0,0,0,12,8,-41.945724,-9,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,44.13,57.97,8.333333333333334,1,1,0,0,14,2,2,1,854.33331,1786597.4,1163731.8,224578.56,69367.109,0,0,697.42609 +5677,6930,12375,12374,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.3728428,7.6903749,0,12,-8,-64.587868,0,-9,-9,2021,10,0,20,20,1,0,0,9.7208252,9.7208252,0,0,0,0,0,0,0,0,1,1,0,1.3901391,0,44.13,57.97,52.82,53.97,6.666666666666667,1,1,0,0,14,2,2,1,854.33331,1786597.4,1163731.8,224578.56,69367.109,0,0,697.42609 +5678,6931,12376,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,5.651648,5.0494146,0,0,-891.40131,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.147192,0,37.792393,0,1,1,0,0,5.4566903,50.1,38.91,-9,-9,0,1,1,0,0,0,2,2,1,87,29020.232,-10432.845,125003.16,0,0,0,1076.0979 +5679,6932,12377,12378,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,6.2369666,6.2273173,0,7,-7,-2.1795743,0,3,2,2021,12,1,20,20,1,1,0,2.1203954,2.1203954,0,0,0,0,0,0,0,0,1,1,0,1.7058811,0,42.85,60.33,50,49,3.333333333333333,1,1,0,0,3,13,3,1,259.33334,442583.09,73376.867,422942.97,22504.393,6661.4902,0,1829.7516 +5679,6932,12378,12377,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.4778385,8.2857828,0,7,7,-8.869833,0,3,3,2021,10,0,40,40,1,1,0,12.212748,12.212748,0,0,0,0,0,0,0,0,1,1,0,4.5335369,0,50,49,42.85,60.33,7,1,1,0,0,1,13,3,1,259.33334,442583.09,73376.867,422942.97,22504.393,6661.4902,0,1829.7516 +5679,6932,12379,-9,12377,12378,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.51373,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,259.33334,442583.09,73376.867,422942.97,22504.393,6661.4902,0,1829.7516 +5679,6933,12380,-9,12377,12378,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1104.8286,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,516,5403.6021,0,0,0,0,0,0 +5680,6934,12381,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.6403465,7.7627068,0,0,0,-1018.8506,0,3,2,2021,11,0,32,31,1,0,0,7.1676531,7.1676531,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.47,45.9,-9,-9,8.333333333333334,1,1,0,1,6,6,3,0,1676,-129491.59,-8585.1709,0,0,0,0,925.22693 +5680,6935,12382,-9,12381,-9,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1011.9044,1,2,-9,2021,12,0,0,10,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,1,0,398,0,0,0,0,0,0,0 +5681,6936,12383,-9,12386,12385,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-977.49597,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,58.45,-9,-9,6.666666666666667,1,1,0,1,5,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5681,6936,12384,-9,12386,12385,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-978.44958,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5681,6936,12385,12386,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,9.5032368,9.6069565,0,4,5,2.5798674,0,-9,-9,2021,12,2,55,45,1,2,0,34.008732,34.008732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.86,51.1,60.02,56.42,6.666666666666667,1,1,0,0,12,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5681,6936,12386,12385,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,7.5437927,7.6401005,0,4,-5,32.350914,0,2,2,2021,6,0,44,42,1,0,0,5.4538965,5.4538965,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,53.86,51.1,10,1,1,0,0,10,7,5,1,988.25,1250686.8,281501.34,712898.25,94205.109,0,0,7380.2065 +5682,6937,12387,-9,12389,12388,1,0,20,0,2,0,2,2,-9,0,3,7.6797538,7.9160805,0,0,0,-1098.6121,0,2,2,2021,15,4,38,35,1,4,1,7.9888024,7.9888024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.62,42.22,-9,-9,8.333333333333334,1,1,0,0,2,12,4,0,1219,212712.97,-78253.445,0,0,8494.6416,0,1754.1667 +5682,6938,12388,12389,-9,-9,1,1,50,0,2,0,2,2,-9,1,2,0,0,0,5,1,0,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,56.83,28.16,28.14,43.9,3.333333333333333,1,1,0,1,0,12,1,0,570,35519.371,47159.191,0,0,0,0,2052.6953 +5682,6938,12389,12388,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,0,0,0,5,-1,0,0,3,3,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.14,43.9,56.83,28.16,3.333333333333333,1,1,0,1,0,12,1,0,570,35519.371,47159.191,0,0,0,0,2052.6953 +5683,6939,12390,-9,12391,12393,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-851.8335,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5683,6939,12391,12393,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.5812225,8.8126688,0,19,-7,-20.807974,0,2,2,2021,11,2,45,45,1,2,0,19.828119,19.828119,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,54.37,54.8,8.333333333333334,1,1,0,0,14,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5683,6939,12392,-9,12391,12393,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-994.82855,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5683,6939,12393,12391,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,9.2479849,9.1632605,0,18,7,-83.412796,0,2,2,2021,11,1,45,35,1,1,0,22.733458,22.733458,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.37,54.8,38.34,62.12,8.333333333333334,1,1,0,0,14,9,5,1,711.25,2593506.3,1739560.6,1281046.3,520902.44,5684.4009,0,4917.7266 +5684,6940,12394,12395,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.8469143,9.702528,0,27,-1,-92.962135,0,2,2,2021,11,0,57,52,1,0,0,33.848282,33.848282,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,51.77,58.57,8.333333333333334,1,1,0,0,9,6,5,1,1650.3334,4009952.8,3089932.5,362215.63,0,0,0,8546.9238 +5684,6940,12395,12394,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,26,1,-8.6554852,1,2,3,2021,11,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.77,58.57,49.86,55.31,1.666666666666667,1,1,0,0,2,6,5,1,1650.3334,4009952.8,3089932.5,362215.63,0,0,0,8546.9238 +5684,6940,12396,-9,12394,12395,1,1,17,0,0,1,2,0,0,0,4,0,4.7558613,4.5809221,0,0,-947.664,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8599024,0,59.15,49.67,-9,-9,1.666666666666667,1,1,0,0,0,6,5,1,1650.3334,4009952.8,3089932.5,362215.63,0,0,0,8546.9238 +5684,6941,12397,-9,12394,12395,1,1,19,0,0,1,3,0,-9,0,4,0,0,0,0,0,-877.71759,-9,1,1,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,6,1,1,1137,43733.063,0,0,0,0,0,301.23819 +5685,6942,12398,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1019.069,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0449409,0,47.14,46.13,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,621,-6077.228,0,0,0,2524.6501,0,80.614456 +5686,6943,12399,12400,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.950367,9.023468,0,13,2,-18.074507,0,2,2,2021,11,3,37,38,1,3,0,18.379744,18.379744,0,0,0,0,0,0,0,7,0,0,0,4.8945851,0,36.92,64.01000000000001,54.98,37.25,8.333333333333334,1,1,0,0,11,6,5,1,306.5,843585.88,630478.13,229942.25,0,0,78.299164,5946.083 +5686,6943,12400,12399,-9,-9,1,1,52,0,0,0,2,2,-9,0,1,9.6109953,9.5602837,0,13,-2,-110.86373,0,2,2,2021,11,0,60,51,1,0,0,26.987568,26.987568,.05,.05,0,0,0,0,0,0,0,0,0,5.9488726,0,54.98,37.25,36.92,64.01000000000001,8.333333333333334,1,1,0,0,11,6,5,1,306.5,843585.88,630478.13,229942.25,0,0,78.299164,5946.083 +5687,6944,12401,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,5.8362041,6.0690889,0,0,-907.9693,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2480961,5.8269801,59.97,19.97,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,363,733830.44,19824.385,626561.31,0,0,0,1547.1978 +5688,6945,12402,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,7.185226,7.3315306,0,0,0,-979.55072,0,-9,-9,2021,12,0,20,23,1,0,0,7.5249739,7.5249739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,5,1,1,0,0,12,8,3,1,523,76210.594,317865.09,0,0,0,0,923.09009 +5689,6946,12403,12404,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.5441928,7.6621318,0,6,0,156.87166,0,-9,-9,2021,30,12,39,39,1,12,0,5.7984648,5.7984648,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.92,43.07,50.16,34.87,1.666666666666667,1,1,0,0,6,12,4,1,1544,94617.438,131314.11,208325.52,83261.859,11123.558,0,2929.9526 +5689,6946,12404,12403,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.4060593,8.3175621,0,6,9,23.781738,0,3,2,2021,9,0,14,45,1,0,0,43.375328,43.375328,.05,.05,0,0,0,0,0,2,0,0,0,.26206526,0,50.16,34.87,23.92,43.07,10,1,1,0,0,6,12,4,1,1544,94617.438,131314.11,208325.52,83261.859,11123.558,0,2929.9526 +5690,6947,12405,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.3170481,7.50811,0,0,0,-915.0459,0,-9,-9,2021,12,0,54,48,1,0,0,3.0663705,3.0663705,0,0,0,0,0,0,0,0,0,0,0,0,0,35.2,48.71,-9,-9,0,2,3,0,0,9,9,3,0,185,95805.813,48180.016,0,0,0,0,1683.052 +5691,6948,12406,12407,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,6.9574037,6.8750954,40,-5,60.45076,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9392147,62.42,32.41,60.13,49.27,8.333333333333334,1,1,0,0,4,12,3,1,269,1385719,824775,164768.97,0,0,0,1856.0481 +5691,6948,12407,12406,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.873168,7.6248198,40,5,101.12753,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9923177,7.6828365,60.13,49.27,62.42,32.41,8.333333333333334,1,1,0,0,8,12,3,1,269,1385719,824775,164768.97,0,0,0,1856.0481 +5692,6949,12408,12409,-9,-9,1,1,94,0,0,0,3,3,-9,0,1,0,5.5152488,5.2698207,50,23,-29.279797,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,15.403413,0,0,1,1,0,2.9496837,5.0654697,40.84,22,44.79,55.04,6.666666666666667,1,1,0,0,0,10,3,1,626,2913163.8,200601.28,430650.84,0,0,0,2179.2888 +5692,6949,12409,12408,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.416719,7.8632464,50,-23,-81.234711,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3892119,7.6437821,44.79,55.04,40.84,22,8.333333333333334,1,1,0,0,0,10,3,1,626,2913163.8,200601.28,430650.84,0,0,0,2179.2888 +5693,6950,12410,12411,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.1448431,6.3675985,10,1,-60.178024,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,14.815537,0,0,1,1,0,0,6.9026046,38.91,36.56,41.43,27.12,3.333333333333333,1,1,0,0,0,2,2,1,803.5,350955,3789.9824,98371.922,0,0,0,1642.9597 +5693,6950,12411,12410,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,10,-1,88.515526,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,17.205479,0,0,1,1,0,1.0662388,0,41.43,27.12,38.91,36.56,6.666666666666667,1,1,0,0,0,2,2,1,803.5,350955,3789.9824,98371.922,0,0,0,1642.9597 +5694,6951,12412,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.7732592,4.9847865,0,0,-1187.8608,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.2196925,17.717869,28.417885,2,1,1,0,4.3499274,5.0315633,48.94,23.76,-9,-9,5,1,1,0,1,0,13,2,1,4071,172413.52,20302.658,0,0,0,0,1750.7396 +5694,6952,12413,-9,12412,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1025.7233,0,2,3,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,29.87,-9,-9,1.666666666666667,1,1,0,0,7,13,1,1,720,3582.0801,20597.096,0,0,4005.5303,0,961.05493 +5694,6953,12414,-9,12412,-9,1,0,51,0,0,0,2,2,-9,1,1,8.0197859,7.849751,0,0,0,-907.76721,0,2,3,2021,35,12,27,30,1,12,0,10.638775,10.638775,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,26.21,39.88,-9,-9,1.666666666666667,1,1,0,1,12,13,3,1,2184,670109.25,574094.56,83143.938,0,4379.2251,0,1218.7877 +5695,6954,12415,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.5026531,8.6695671,0,0,0,-1061.5421,0,1,2,2021,20,6,49,45,1,6,0,10.019608,10.019608,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.84,59.58,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,357,514623.25,-12754.958,0,0,0,0,2404.344 +5696,6955,12416,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1246748,7.0538726,0,0,-1001.6395,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3057742,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,4,3,0,529,514649.47,290553.63,0,0,0,2126.7617,1595.9486 +5697,6956,12417,12418,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,9.0252028,9.0642614,0,29,1,-111.33923,0,2,1,2021,7,0,44,54,1,0,0,21.651354,21.651354,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.57,49.24,58.32,50.22,8.333333333333334,1,1,0,0,12,13,5,1,707.5,1068387,1109406.5,0,0,0,6223.4043,7150.8804 +5697,6956,12418,12417,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.1719074,9.5092173,0,29,-1,14.662353,0,1,2,2021,8,0,45,42,1,0,0,26.729557,26.729557,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.32,50.22,54.57,49.24,8.333333333333334,1,1,0,0,12,13,5,1,707.5,1068387,1109406.5,0,0,0,6223.4043,7150.8804 +5697,6957,12419,-9,12417,12418,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1164.6498,-9,1,1,2021,11,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.81,60.52,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,219,-15122.894,0,0,0,0,0,0 +5698,6958,12420,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.6040945,6.3571267,0,0,0,-961.23053,0,3,2,2021,14,3,18,18,1,3,0,4.1556883,4.1556883,0,0,0,0,0,0,0,0,1,1,0,0,0,49.75,38.05,-9,-9,5,2,3,0,0,7,9,2,0,1331,-85863.891,0,0,0,0,3843.5669,1220.3854 +5699,6959,12421,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1076.4559,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,50.69,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,295,59825.191,0,0,0,0,0,0 +5700,6960,12422,12423,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.1200972,8.2175741,0,6,-5,25.593578,0,3,3,2021,11,2,43,44,1,2,0,13.304135,13.304135,0,0,.05,0,0,0,0,2,0,0,0,0,0,51.41,56.15,51.83,57.2,8.333333333333334,1,1,0,0,4,2,5,0,703,541261.13,342462.16,294270.69,133203.03,0,0,3307.2661 +5700,6960,12423,12422,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.007575,9.0996742,0,6,5,30.213736,0,-9,-9,2021,8,0,43,42,1,0,0,19.21546,19.21546,0,0,.05,0,0,0,0,2,0,0,0,0,0,51.83,57.2,51.41,56.15,8.333333333333334,1,1,0,0,8,2,5,0,703,541261.13,342462.16,294270.69,133203.03,0,0,3307.2661 +5701,6961,12424,12425,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,8.6755991,8.9410229,10,6,-35.226078,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4402676,8.9038305,60.12,54.8,59.84,33.48,8.333333333333334,1,1,0,0,3,13,4,1,295,696703.5,365528.75,0,0,0,0,4273.0186 +5701,6961,12425,12424,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,10,-6,39.744354,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8524089,0,59.84,33.48,60.12,54.8,8.333333333333334,1,1,0,0,0,13,4,1,295,696703.5,365528.75,0,0,0,0,4273.0186 +5702,6962,12426,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,8.3533125,8.6210585,0,3,2,-46.070328,0,2,-9,2021,5,0,60,50,1,0,0,7.8732457,7.8732457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,49,56,8.333333333333334,1,1,0,0,10,2,3,1,444,347681.72,329091.91,212453.94,138393.88,8231.6719,0,825.33624 +5703,6963,12427,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.3607473,9.0757999,0,0,0,-839.2403,0,-9,-9,2021,14,2,45,44,1,2,0,23.103148,23.103148,.05,.05,0,0,0,0,0,0,0,0,0,3.1830928,0,51.96,43.66,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,969,514952.69,390330.75,104349.69,218793.48,0,0,3311.2607 +5704,6964,12428,12429,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,60,-3,101.04602,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,49.46,29.96,35.79,44.37,5,1,1,0,0,0,6,2,1,1065.5,421182.09,180214.7,85187.664,0,0,0,1810.2974 +5704,6964,12429,12428,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.1143064,7.0356154,60,3,55.804752,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,25.936949,0,0,1,1,0,0,6.9820824,35.79,44.37,49.46,29.96,5,1,1,0,0,0,6,2,1,1065.5,421182.09,180214.7,85187.664,0,0,0,1810.2974 +5705,6965,12430,12431,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,7.7188373,7.76372,6,-1,-41.051285,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.2065129,7.4759989,57.06,57.76,54.12,34.81,10,1,1,0,0,0,11,3,1,1791,704362.5,380113.84,183306.81,0,0,0,2896.8262 +5705,6965,12431,12430,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.1184006,7.4303679,6,1,217.4994,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.426767,0,0,1,1,0,6.5290351,7.1222219,54.12,34.81,57.06,57.76,8.333333333333334,1,1,0,0,0,11,3,1,1791,704362.5,380113.84,183306.81,0,0,0,2896.8262 +5706,6966,12432,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.2380676,8.0322552,0,0,0,-997.39349,0,1,1,2021,10,0,53,42,1,0,0,7.4477267,7.4477267,0,0,0,0,0,0,0,0,0,0,0,3.855577,0,49,54.49,-9,-9,6.666666666666667,4,2,0,0,6,9,4,0,533,-131838.23,-41292.496,0,0,6864.1265,0,1472.2045 +5706,6967,12433,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1864605,8.1983385,0,0,0,-995.75946,0,-9,-9,2021,13,1,50,60,1,1,0,9.4786921,9.4786921,0,0,0,0,0,0,0,0,0,0,0,0,0,37.28,55.9,-9,-9,5,4,2,0,0,3,9,4,0,2556,-36420.922,0,0,0,0,0,1567.9402 +5707,6968,12434,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,5.3259583,5.2716255,0,0,-1057.986,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3693285,42.34,31.91,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,699,48740.711,0,74603.32,0,0,0,354.80548 +5708,6969,12435,12436,-9,-9,1,0,56,0,0,0,2,2,-9,1,2,0,0,0,31,-4,43.117153,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,38.49,38.18,30.6,18.53,5,1,1,0,0,0,13,2,1,2738,624581.94,316882.38,175996.41,0,0,0,1773.2131 +5708,6969,12436,12435,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,7.2499285,7.549253,31,4,89.181168,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3792477,30.6,18.53,38.49,38.18,1.666666666666667,1,1,0,0,0,13,2,1,2738,624581.94,316882.38,175996.41,0,0,0,1773.2131 +5709,6970,12437,-9,12440,12438,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1031.5109,-9,2,1,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,0,0,0,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5709,6970,12438,12440,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,7.3824692,7.4144683,0,22,15,21.19385,0,3,2,2021,6,0,25,25,1,0,0,7.2208104,7.2208104,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,56.35,51,8.333333333333334,2,3,0,1,12,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5709,6970,12439,-9,12440,12438,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-929.3161,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5709,6970,12440,12438,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,22,-15,31.898296,0,3,1,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51,62.49,55.09,10,2,3,0,0,1,7,2,0,1483.25,55144.574,0,0,0,0,0,1755.4677 +5710,6971,12441,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,1,8.2305193,8.1087513,0,0,0,-999.20197,0,2,2,2021,27,12,40,40,1,12,0,11.156306,11.156306,0,0,.05,0,0,0,0,2,0,0,0,0,0,29.93,23.01,-9,-9,0,1,1,0,1,11,5,4,1,502,75345.211,-16752.42,98208.219,-6702.4922,5029.208,0,1348.6058 +5711,6972,12442,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.606576,8.6110897,0,0,0,-1014.2453,0,2,2,2021,4,0,47,49,1,0,0,12.508929,12.508929,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,10,3,4,0,0,10,8,4,0,434,-44003.781,119445,0,0,0,0,2267.595 +5712,6973,12443,12444,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,47,-2,-86.63279,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,41.652676,0,0,1,1,0,0,0,34.19,29.44,68.32000000000001,45.78,5,2,3,0,1,12,4,2,1,1307,421827.56,304828.34,217698.09,0,0,25.411285,658.72937 +5712,6973,12444,12443,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,6.0299129,5.4738741,40,2,-110.22188,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.3505685,0,2,1,1,0,5.9508219,5.9702005,68.32000000000001,45.78,34.19,29.44,8.333333333333334,2,3,0,0,8,4,2,1,1307,421827.56,304828.34,217698.09,0,0,25.411285,658.72937 +5713,6974,12445,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1057.9833,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,17.448919,0,0,1,1,0,0,0,67.71000000000001,10.82,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,2053,74912.547,0,0,0,0,0,2397.0613 +5714,6975,12446,12447,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,5.3109512,5.3581033,50,-3,97.720558,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.041454297,5.0425076,39.31,33.38,44.41,56.75,6.666666666666667,1,1,0,0,10,6,2,1,658,180327.55,117775.88,273839.84,0,0,0,1406.4568 +5714,6975,12447,12446,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.6271749,6.106071,50,3,-30.513634,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.1696143,6.1344924,44.41,56.75,39.31,33.38,5,1,1,0,0,6,6,2,1,658,180327.55,117775.88,273839.84,0,0,0,1406.4568 +5715,6976,12448,-9,12450,12451,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.6611,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5715,6976,12449,-9,12450,12451,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1200.5521,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5715,6976,12450,12451,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,7.1114006,7.2246618,0,7,-3,-37.090233,0,3,3,2021,10,0,23,23,1,0,0,6.1645155,6.1645155,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,28.22,53.7,6.666666666666667,1,1,0,0,8,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5715,6976,12451,12450,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,0,0,0,7,3,30.449245,-9,2,2,2021,23,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.22,53.7,46.16,58.62,1.666666666666667,1,1,1,1,8,12,2,1,561,237630.36,159626.89,87211.484,0,1399.1548,0,2305.7463 +5716,6977,12452,12453,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.7896471,8.7471027,0,35,1,-23.718052,0,2,2,2021,5,0,35,30,1,0,0,21.185654,21.185654,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,10,11,4,1,666,370531.22,249104.56,116380.77,0,0,0,2400.8503 +5716,6977,12453,12452,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,6.6648293,6.8113918,7,-1,-34.028347,0,2,2,2021,6,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9011526,57.16,56.15,57.06,57.76,10,1,1,0,0,9,11,4,1,666,370531.22,249104.56,116380.77,0,0,0,2400.8503 +5717,6978,12454,12455,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8020296,8.5440569,0,8,2,-109.69236,0,-9,-9,2021,11,1,60,56,1,1,0,15.53675,15.53675,0,0,.05,0,0,0,0,0,0,0,0,7.4954395,0,52.23,55.6,43.92,31.59,8.333333333333334,1,1,0,0,10,12,5,1,1121,807940.25,200781.84,330081.19,186744.84,0,0,5111.0898 +5717,6978,12455,12454,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.0172501,8.460721,0,8,-2,-129.25017,0,2,2,2021,14,2,20,20,1,2,0,18.690369,18.690369,0,0,.05,0,0,0,0,0,0,0,0,0,0,43.92,31.59,52.23,55.6,6.666666666666667,1,1,0,0,10,12,5,1,1121,807940.25,200781.84,330081.19,186744.84,0,0,5111.0898 +5718,6979,12456,12458,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.7430038,8.7827969,0,12,8,19.381691,0,2,2,2021,0,0,40,40,1,0,0,17.671089,17.671089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,51.24,58.84,8.333333333333334,1,1,0,0,13,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6979,12457,-9,12458,12456,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1021.5377,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6979,12458,12456,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.9164844,8.216794,0,12,-8,41.960705,0,3,-9,2021,10,0,62,30,1,0,0,4.9408851,4.9408851,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.77,55.87,8.333333333333334,1,1,0,0,2,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6979,12459,-9,12458,12456,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.89941,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1095,773392.25,221122.11,314416.16,50254.648,0,0,3470.3521 +5718,6980,12460,-9,12458,12456,1,1,23,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1090.1398,0,2,2,2021,9,1,0,40,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,1,0,13,9,1,1,171,133156.89,0,0,0,0,0,0 +5718,6981,12461,-9,12458,12456,1,1,20,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1057.5663,0,2,2,2021,10,2,0,38,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,918,-49793.242,0,0,0,0,0,0 +5719,6982,12462,12463,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.2065697,9.1401873,0,11,0,76.280991,0,2,2,2021,15,4,40,77,1,4,0,25.908978,25.908978,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,31.35,66.34,3.333333333333333,1,1,0,0,13,4,5,1,1478,1507625,1301257.3,223202.64,81486.672,1917.7025,12206.378,5309.7764 +5719,6982,12463,12462,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.7386885,8.7363901,0,27,0,-38.675739,0,3,2,2021,17,6,40,42,1,6,0,21.306566,21.306566,.05,.05,0,0,0,0,0,0,0,0,0,2.6143739,0,31.35,66.34,46.33,55.93,8.333333333333334,1,1,0,0,13,4,5,1,1478,1507625,1301257.3,223202.64,81486.672,1917.7025,12206.378,5309.7764 +5720,6983,12464,12465,-9,-9,1,1,43,0,1,0,3,3,-9,0,4,8.0025663,8.1191683,0,6,-1,4.0757742,0,-9,-9,2021,9,0,40,40,1,1,0,8.6189795,8.6189795,.05,.05,0,0,0,0,0,0,1,1,0,8.3160706,0,52,55,45.83,30.64,7,1,1,0,0,1,9,3,0,639,128025.67,142840.7,0,0,-808.32532,0,3573.1006 +5720,6983,12465,12464,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,6,1,12.40133,0,-9,-9,2021,21,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.83,30.64,52,55,1.666666666666667,1,1,1,0,0,9,3,0,639,128025.67,142840.7,0,0,-808.32532,0,3573.1006 +5721,6984,12466,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1076.2659,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.11,46.78,-9,-9,7,1,1,1,0,2,2,1,0,286,58941.016,0,0,0,0,0,693.09607 +5722,6985,12467,12468,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.5063486,8.4385281,0,5,10,28.220865,0,3,-9,2021,9,0,46,38,1,0,0,14.468415,14.468415,0,0,.05,0,0,0,0,0,0,0,0,7.6124167,0,46.68,50.04,49.63,54.22,10,1,1,0,0,10,2,5,1,447.5,900564.13,366564.44,289300.88,0,0,0,3521.1987 +5722,6985,12468,12467,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2369175,8.2581892,0,5,-10,60.588604,0,-9,-9,2021,12,2,30,30,1,2,0,12.820362,12.820362,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,46.68,50.04,6.666666666666667,1,1,0,0,10,2,5,1,447.5,900564.13,366564.44,289300.88,0,0,0,3521.1987 +5722,6986,12469,-9,12468,12467,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1033.0121,-9,2,3,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,6,2,1,1,666,0,0,0,0,0,0,0 +5723,6987,12470,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.897995,7.088419,0,0,-1002.2029,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9302135,6.8195887,58.87,51.29,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,342,116859.37,83732.141,0,0,-1279.9463,0,418.66156 +5724,6988,12471,12472,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,10,0,-77.229538,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.53,36.06,58.15,52.91,8.333333333333334,1,1,0,0,4,12,3,1,2256.5,1298066.4,806322.88,203195.34,0,0,0,2774.446 +5724,6988,12472,12471,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.0711756,8.3221207,10,0,-110.36382,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8906732,58.15,52.91,65.53,36.06,10,1,1,0,0,10,12,3,1,2256.5,1298066.4,806322.88,203195.34,0,0,0,2774.446 +5725,6989,12473,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.6034279,8.7637968,0,0,0,-943.8407,-9,1,1,2021,11,0,40,0,1,0,0,17.215862,17.215862,.05,.05,0,0,0,0,0,0,0,0,0,2.9992733,0,46.06,60.24,-9,-9,6.666666666666667,1,1,0,0,7,8,5,0,654,-18487.621,99817.43,0,0,0,0,1489.9132 +5726,6990,12474,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.5844436,7.2887101,0,0,-931.18805,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1476929,7.5346589,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,323,563500.56,309822.41,79387.398,0,0,0,1482.7216 +5727,6991,12475,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.5945053,6.5352564,0,0,-984.44513,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7426406,6.6834359,64.78,32.7,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,769,86547.672,145373.75,0,0,0,0,2097.3091 +5728,6992,12476,12478,-9,-9,1,1,37,1,1,0,2,2,-9,0,5,8.2899427,8.2967453,0,6,0,-12.315986,0,-9,-9,2021,10,0,40,40,1,0,0,8.5234547,8.5234547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,44.72,57.73,8.333333333333334,1,1,0,0,10,5,4,1,846,-34968.27,58495.23,143127.75,91011.094,0,-65.487823,2262.03 +5728,6992,12477,-9,12478,12476,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.0096,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,846,-34968.27,58495.23,143127.75,91011.094,0,-65.487823,2262.03 +5728,6992,12478,12476,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,7.6569996,7.6073942,0,6,0,36.542084,0,1,1,2021,8,0,25,25,1,0,0,9.1521301,9.1521301,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,57.73,58.05,54.52,6.666666666666667,1,1,0,0,10,5,4,1,846,-34968.27,58495.23,143127.75,91011.094,0,-65.487823,2262.03 +5729,6993,12479,12480,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.0039501,6.2706056,35,-2,34.438652,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9539094,6.441721,55.59,43.19,61.2,9.790000000000001,8.333333333333334,1,1,0,0,0,9,2,1,507,687159.63,269250.34,381658.56,0,0,0,2715.6606 +5729,6993,12480,12479,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.5760431,6.5103946,35,2,-57.328106,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4355161,6.6082711,61.2,9.790000000000001,55.59,43.19,0,1,1,0,0,0,9,2,1,507,687159.63,269250.34,381658.56,0,0,0,2715.6606 +5730,6994,12481,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.7187648,8.0778065,0,0,0,-1093.3495,0,2,2,2021,13,2,37,37,1,2,0,9.6099272,9.6099272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.7,41.66,-9,-9,5,1,1,0,1,12,5,3,1,1053,236240.13,173249.48,198553.52,124966.93,0,0,1396.9081 +5730,6995,12482,-9,12481,-9,1,0,18,0,1,1,2,0,0,0,3,0,7.5034308,7.2004614,0,0,-893.6037,-9,2,-9,2021,12,0,0,0,2,0,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.95015,0,36.65,58.88,-9,-9,8.333333333333334,1,1,0,0,1,5,3,1,857,81008.297,100008.85,0,0,1563.2673,0,511.11661 +5731,6996,12483,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.0807953,8.1860237,7.121758,0,0,-1022.8852,0,3,2,2021,10,0,37,37,1,1,0,9.4726648,9.4726648,0,0,.05,0,0,0,0,0,0,0,0,3.5545609,7.1888776,52,53,-9,-9,8,1,1,0,0,9,7,4,1,645,-62757.551,34156.512,0,0,0,0,1437.5176 +5732,6997,12484,-9,12485,12487,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1175.8108,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5732,6997,12485,12487,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.2685976,6.9671235,0,6,-8,91.1119,0,-9,-9,2021,22,9,10,8,1,9,0,15.805739,15.805739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.25,55.98,48.07,40.65,3.333333333333333,1,1,0,0,3,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5732,6997,12486,-9,12485,12487,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.95264,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5732,6997,12487,12485,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,7.6788483,7.9320245,0,6,8,-149.19785,-9,-9,-9,2021,12,1,20,0,1,1,0,15.624096,15.624096,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.07,40.65,37.25,55.98,6.666666666666667,1,1,0,0,15,12,3,0,913,130746.91,33518.926,185463.7,34569.434,9884.3301,3301.6299,2218.9341 +5733,6998,12488,12492,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,6.9247284,6.9904933,0,19,-4,-14.540324,0,3,3,2021,11,1,18,24,1,1,0,9.4548531,9.4548531,0,0,0,0,0,0,0,0,1,1,0,0,0,38.25,42.59,43.57,62.68,6.666666666666667,1,1,0,0,6,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12489,-9,12488,12492,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.54999,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.0067415722,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12490,-9,12488,12492,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.17914,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12491,-9,12488,12492,1,0,17,0,3,1,3,0,0,0,4,0,0,0,0,0,-822.37573,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.26012102,0,46,59,-9,-9,7,1,1,0,1,0,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6998,12492,12488,-9,-9,1,1,43,0,3,0,2,2,-9,0,5,7.534646,7.3090181,0,19,4,119.01793,0,-9,-9,2021,12,3,16,16,1,3,0,10.591574,10.591574,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,38.25,42.59,6.666666666666667,1,1,0,1,3,4,2,1,1257,69633.188,72317.5,135693.73,102223.19,0,0,2817.5261 +5733,6999,12493,-9,12488,12492,1,1,19,0,3,1,2,0,0,0,5,0,0,0,0,0,-1034.8113,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,1,0,4,1,1,1019,75528.492,0,0,0,0,0,0 +5734,7000,12494,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,4,0,0,0,0,0,-885.74365,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.6318119,0,43.27,47.53,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1572,-28334.125,0,0,0,0,920.54077,691.13068 +5735,7001,12495,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.6287918,8.4744024,0,0,0,-1004.0074,0,2,2,2021,11,0,37,38,1,0,0,17.978012,17.978012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,41.12,-9,-9,5,3,4,0,0,9,8,4,1,1424,638932.44,49808.035,427670.19,0,0,0,2196.728 +5736,7002,12496,12497,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,45,-3,-82.309509,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.5838418,0,35.88,56.66,40.47,55.65,8.333333333333334,1,1,0,0,8,5,4,1,414,2030399.3,1496224,492802.06,71899.344,0,0,4977.46 +5736,7002,12497,12496,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.7968092,8.7043104,7,3,5.1758542,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.5847664,8.6203604,40.47,55.65,35.88,56.66,8.333333333333334,1,1,0,0,4,5,4,1,414,2030399.3,1496224,492802.06,71899.344,0,0,4977.46 +5736,7003,12498,-9,12496,12497,1,1,36,0,0,0,2,2,-9,0,3,8.7837753,8.8705139,0,0,0,-1161.0129,0,1,1,2021,16,5,47,42,1,5,0,10.577846,10.577846,.05,.05,0,0,0,0,0,2,1,1,0,0,0,20.93,60.89,-9,-9,3.333333333333333,1,1,0,0,7,5,5,1,364,-31018.547,-77472.07,0,0,5544.9922,0,2094.5623 +5736,7004,12499,-9,12496,12497,1,1,33,0,0,0,2,2,-9,0,2,8.4154806,8.2714195,0,0,0,-910.05389,0,1,1,2021,13,2,37,35,1,2,0,13.805568,13.805568,0,0,0,0,0,0,0,14.5,1,1,0,2.2121596,0,38.38,52.96,-9,-9,5,1,1,0,0,6,5,4,1,354,-101560.86,0,0,0,0,0,1034.1836 +5736,7005,12500,-9,12496,12497,1,1,31,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1068.1206,0,1,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4617687,0,50,57,-9,-9,7,1,1,0,0,0,5,1,1,418,0,0,0,0,0,0,565.73175 +5737,7006,12501,-9,-9,-9,1,0,46,0,1,0,3,3,-9,1,2,0,0,0,0,0,-947.72809,0,3,-9,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.52,47.81,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,185,243477.23,0,0,0,0,0,1646.814 +5738,7007,12502,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9925842,8.2248011,0,0,0,-980.93463,0,1,2,2021,14,2,46,46,1,2,0,8.188055,8.188055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.25,57.5,-9,-9,8.333333333333334,1,1,0,0,4,10,4,0,486,22206.578,8383.2061,0,0,6259.228,0,1152.7383 +5739,7008,12503,-9,12504,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.57574,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1271.6666,12992.757,0,0,0,0,0,2237.856 +5739,7008,12504,-9,-9,-9,1,0,29,0,2,0,2,2,-9,1,3,0,5.8160734,6.3586044,0,0,-933.09436,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.3009071,0,46.07,44.77,-9,-9,5,1,1,0,0,0,12,2,0,1271.6666,12992.757,0,0,0,0,0,2237.856 +5739,7008,12505,-9,12504,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.42877,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1271.6666,12992.757,0,0,0,0,0,2237.856 +5740,7009,12506,-9,-9,-9,1,1,54,0,1,0,2,2,-9,1,1,0,0,0,0,0,-799.58014,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.99,25.25,-9,-9,5,1,1,0,0,0,13,1,0,736,-49343.105,23162.373,0,0,0,0,1706.6135 +5741,7010,12507,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,0,0,-944.93317,-9,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.06,49.02,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,491,-88374.781,0,0,0,0,0,1082.2689 +5741,7011,12508,-9,12509,-9,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-973.09973,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,4,0,464,20330.285,19785.021,0,0,8907.4795,0,1743.759 +5741,7011,12509,-9,12507,-9,1,0,28,0,0,0,2,2,-9,0,3,7.9633198,7.7442412,0,0,0,-942.54498,-9,3,3,2021,13,2,35,0,1,2,1,10.035954,10.035954,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.47,49.86,-9,-9,5,1,1,0,0,9,12,4,0,464,20330.285,19785.021,0,0,8907.4795,0,1743.759 +5742,7012,12510,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.6361771,5.1690464,0,0,-966.27655,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.191783,52,46,-9,-9,8,1,1,0,0,0,2,2,0,462,145406.63,71464.102,106163.55,0,0,0,1492.4501 +5743,7013,12511,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.1914287,7.4980102,0,0,-1149.7491,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.0664767,7.7189069,57.08,39,-9,-9,10,1,1,0,0,0,11,3,1,1335,291604.56,176689.05,40832.996,0,0,0,1437.0758 +5744,7014,12512,12513,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,32,-8,-35.62812,0,3,3,2021,17,5,0,30,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.04,41.01,42.61,54.85,3.333333333333333,1,1,1,0,14,9,2,1,421,602848.44,263037.69,345696.41,0,0,745.94476,1004.4678 +5744,7014,12513,12512,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.64533,7.3626575,0,31,8,-43.564526,0,3,3,2021,14,2,45,45,1,2,0,5.0339808,5.0339808,0,0,0,0,0,0,0,0,0,0,0,0,0,42.61,54.85,35.04,41.01,5,2,3,0,0,14,9,2,1,421,602848.44,263037.69,345696.41,0,0,745.94476,1004.4678 +5744,7015,12514,-9,12512,12513,1,0,27,0,0,0,2,2,-9,0,4,7.9746408,8.0764866,0,0,0,-1112.0759,0,2,3,2021,6,0,40,40,1,0,1,9.1805868,9.1805868,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,10,9,4,1,1867,-48992.168,22261.756,0,0,0,0,1054.576 +5745,7016,12515,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.3898182,7.1922531,0,0,0,-1010.2495,0,3,2,2021,16,5,35,35,1,5,0,5.339829,5.339829,0,0,0,0,0,0,0,2,1,0,1,0,0,45.81,52.23,-9,-9,5,1,1,0,0,8,9,3,1,268,298502.56,0,317292.53,110920.48,0,0,920.31464 +5746,7017,12516,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,6.7838507,6.8312111,0,0,-1044.6785,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,7.9708166,0,73.098351,0,1,1,0,4.6433907,7.1349745,60.54,32.08,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,381,664943.56,90926.922,543370.94,0,0,0,1885.693 +5747,7018,12517,12518,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.4604206,8.956214,6.091372,6,13,-61.29493,0,3,3,2021,10,0,60,55,1,0,0,11.207544,11.207544,0,0,0,0,0,0,0,0,1,1,0,5.8044848,5.903275,54.2,57.49,46.39,60.99,8.333333333333334,4,2,0,0,7,2,5,1,855.5,-20237.008,5253.6543,144715.73,97345.891,1607.1079,0,6933.8125 +5747,7018,12518,12517,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.4908495,8.7063856,0,6,-13,-65.881935,0,3,3,2021,8,0,54,40,1,0,0,8.3674459,8.3674459,0,0,0,0,0,0,0,72,1,1,0,7.5187473,0,46.39,60.99,54.2,57.49,8.333333333333334,1,1,0,0,7,2,5,1,855.5,-20237.008,5253.6543,144715.73,97345.891,1607.1079,0,6933.8125 +5748,7019,12519,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,0,0,-995.57434,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.17,30.56,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1482,0,0,0,0,0,0,1528.7811 +5749,7020,12520,-9,12522,12521,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-992.39465,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,152.33333,-128615.07,-6150.4956,0,0,0,0,1008.7222 +5749,7020,12521,12522,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,7.8351283,7.6576734,0,6,1,116.76556,0,2,2,2021,7,0,48,50,1,0,0,6.2968745,6.2968745,0,0,0,0,0,0,0,0,1,1,0,3.7784512,0,62.39,56.71,62.39,56.71,10,1,1,0,0,11,7,3,1,152.33333,-128615.07,-6150.4956,0,0,0,0,1008.7222 +5749,7020,12522,12521,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,0,0,0,6,-1,-32.985157,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6967402,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,152.33333,-128615.07,-6150.4956,0,0,0,0,1008.7222 +5750,7021,12523,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.7171822,7.5848198,0,0,-963.52161,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.445972,7.8248587,50.99,52.23,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1465,587142.31,116336.3,378023.72,0,0,0,1978.1375 +5751,7022,12524,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,7.2528386,7.4110603,0,0,-1027.2295,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1349287,65.95,39.97,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,645,106410.86,0,300017.56,0,0,0,445.21036 +5751,7023,12525,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,1,0,7.5257387,7.3679385,0,0,-1078.5081,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.3885474,7.2819452,64.42,26.08,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,219,752014.81,303313.56,228323.88,0,0,0,1693.9877 +5752,7024,12526,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.5418139,7.9245653,0,0,0,-1027.6124,0,-9,-9,2021,10,0,40,40,1,0,0,6.4680023,6.4680023,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,12,1,3,0,1681,57219.207,178637.7,115413.63,45871.305,0,0,409.19748 +5753,7025,12527,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.033,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.65,24.04,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,3454,64518.102,0,0,0,0,0,1061.1743 +5754,7026,12528,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,1,7.2954078,7.4661622,0,0,0,-1054.6091,0,2,2,2021,35,12,30,40,1,12,0,5.0430913,5.0430913,0,0,0,0,0,0,0,0,0,0,0,0,0,11.34,41.27,-9,-9,0,4,2,0,1,3,12,3,0,483,83671.133,-5715.9902,0,0,0,0,878.19476 +5755,7027,12529,12530,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.6167288,8.7212305,0,7,3,37.863018,0,-9,-9,2021,13,1,59,80,1,1,0,17.363504,17.363504,.05,.05,0,0,0,0,0,0,0,0,0,7.2789907,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,5,5,1,1829.5,269921,110904.88,579799.13,343607.66,0,0,5820.9312 +5755,7027,12530,12529,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.5740814,8.6197863,0,7,-3,-24.576252,0,2,3,2021,9,0,37,53,1,0,0,19.875311,19.875311,0,0,0,0,0,0,0,0,0,0,0,7.4141359,0,54.13,48.04,48.28,60.18,8.333333333333334,1,1,0,0,10,5,5,1,1829.5,269921,110904.88,579799.13,343607.66,0,0,5820.9312 +5756,7028,12531,12532,-9,-9,1,1,45,0,2,0,3,3,-9,0,3,7.5332465,7.7018366,0,10,-5,-22.746523,-9,3,-9,2021,10,0,48,0,1,0,0,6.0948644,6.0948644,0,0,0,0,0,0,0,0,1,1,0,0,0,45.35,50.81,51,44.2,6.666666666666667,2,3,0,0,11,9,2,1,700.5,113977.66,8420.708,0,0,0,0,1043.1295 +5756,7028,12532,12531,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,0,0,18,5,-35.729122,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,44.2,45.35,50.81,8.333333333333334,2,3,0,0,0,9,2,1,700.5,113977.66,8420.708,0,0,0,0,1043.1295 +5757,7029,12533,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1045.7115,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.02,23.4,-9,-9,1.666666666666667,1,1,1,1,0,1,1,0,727,69668.516,112547.2,0,0,0,0,1144.6105 +5758,7030,12534,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.4136333,8.4636555,7.2685452,0,0,-1130.5685,0,3,3,2021,10,1,37,37,1,1,0,11.343306,11.343306,0,0,0,0,0,0,0,0,1,1,0,0,7.1918855,36.97,54.63,-9,-9,10,1,1,0,0,12,13,5,1,273,551882.81,531271.56,0,0,0,0,2177.866 +5759,7031,12535,12536,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.1257086,9.408905,8.5042896,8,2,111.99704,0,-9,2,2021,9,1,48,45,1,1,0,19.777109,19.777109,.05,.05,0,0,0,0,0,0,0,0,0,0,8.9544601,55.36,51.57,62.49,55.09,8.333333333333334,1,1,0,0,9,2,5,1,1085,992560.88,815309.63,128155.1,0,15133.52,0,7862.9082 +5759,7031,12536,12535,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,0,6.2726169,6.3801317,8,-2,71.434341,0,2,2,2021,6,0,0,11,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6394134,62.49,55.09,55.36,51.57,10,1,1,0,0,9,2,5,1,1085,992560.88,815309.63,128155.1,0,15133.52,0,7862.9082 +5760,7032,12537,12538,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6583443,8.1127262,0,6,-3,78.75737,0,-9,-9,2021,13,2,44,44,1,2,0,12.466857,12.466857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,54.45,56.22,8.333333333333334,1,1,0,0,6,5,5,1,2292.5,1400463.9,1343202.9,202171.14,108620.84,4701.7563,0,3543.9121 +5760,7032,12538,12537,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2037325,7.9821329,0,6,3,50.179726,0,-9,-9,2021,9,0,35,35,1,0,0,11.810381,11.810381,0,0,0,0,0,0,0,0,0,0,0,2.3066664,0,54.45,56.22,51.24,58.84,8.333333333333334,1,1,0,0,6,5,5,1,2292.5,1400463.9,1343202.9,202171.14,108620.84,4701.7563,0,3543.9121 +5761,7033,12539,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,1,0,0,0,0,0,-948.70227,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.06,24.75,-9,-9,1.666666666666667,1,1,1,1,1,12,1,0,2624,44169.379,0,0,0,0,0,1347.2196 +5762,7034,12540,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.2356682,7.8775029,0,0,0,-949.89948,-9,3,3,2021,6,0,40,0,1,0,0,11.232296,11.232296,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.08,55.93,-9,-9,8.333333333333334,1,1,0,0,9,7,4,0,343,51083.758,-6468.2178,0,0,0,0,782.89868 +5763,7035,12541,12542,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.1564169,6.0718346,50,0,-55.9011,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6838636,6.2138448,59.71,50.89,53.33,53.71,10,1,1,0,0,6,4,5,1,127.5,2207355,1767710.5,362821.5,0,0,0,6373.2686 +5763,7035,12542,12541,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.9696245,8.7257214,50,0,-137.71053,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.863348,8.6512756,53.33,53.71,59.71,50.89,10,1,1,0,0,5,4,5,1,127.5,2207355,1767710.5,362821.5,0,0,0,6373.2686 +5764,7036,12543,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.4926071,8.1482086,0,0,0,-1023.1295,0,2,3,2021,6,0,37,37,1,0,0,11.90214,11.90214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,2056,610657.25,596764,46139.945,78548.547,0,0,2004.0214 +5765,7037,12544,12545,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.7992029,8.5513477,0,37,-4,54.576473,0,2,2,2021,18,6,43,42,1,6,0,17.931553,17.931553,0,0,0,0,0,0,0,0,0,0,0,0,0,42.85,62.85,52,54.51,6.666666666666667,1,1,0,0,9,7,5,1,268,523606.56,434530.38,182731.53,0,0,0,4701.3066 +5765,7037,12545,12544,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.7368469,8.8791332,0,35,4,-68.038292,0,3,3,2021,12,0,50,50,1,0,0,14.993072,14.993072,0,0,0,0,0,0,0,0,0,0,0,1.1571324,0,52,54.51,42.85,62.85,6.666666666666667,1,1,0,0,9,7,5,1,268,523606.56,434530.38,182731.53,0,0,0,4701.3066 +5766,7038,12546,12547,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,9.570981,9.4318924,0,5,0,-136.87247,0,3,3,2021,12,0,41,40,1,2,0,44.468517,44.468517,0,0,.05,0,0,0,0,0,0,0,0,0,0,46.4,39.55,24.62,38.05,3.333333333333333,1,1,0,0,14,12,5,1,550,1649487.3,1018862.6,267388.44,0,0,0,5386.6934 +5766,7038,12547,12546,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.6238375,7.6394668,0,5,0,89.072403,0,-9,-9,2021,30,10,30,-9,1,10,0,6.6252255,6.6252255,0,0,.05,0,0,0,0,0,0,0,0,2.0592349,0,24.62,38.05,46.4,39.55,3.333333333333333,1,1,0,0,14,12,5,1,550,1649487.3,1018862.6,267388.44,0,0,0,5386.6934 +5766,7039,12548,-9,12546,12547,1,0,27,0,0,0,2,2,-9,0,4,8.1920395,8.0354948,0,0,0,-953.27087,0,1,3,2021,5,0,38,38,1,0,1,12.447543,12.447543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.93,52.62,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,692,-98790.414,-27880.354,0,0,0,0,1149.2083 +5767,7040,12549,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.4268012,4.8379107,0,0,-895.69116,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.1335984,0,1,1,0,0,5.0460157,61.43,43.34,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,144,168698.89,27303.936,0,0,702.77429,0,623.8111 +5768,7041,12550,12551,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.3455777,7.8328614,6,6,25.494635,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0553641,7.7290587,51.84,42.21,54.48,42.8,8.333333333333334,1,1,0,0,0,4,3,1,660.5,469838.47,107133.57,122357.66,0,0,0,2211.9463 +5768,7041,12551,12550,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.8789186,6.9869552,6,-6,44.27282,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.350549,7.184227,54.48,42.8,51.84,42.21,8.333333333333334,1,1,0,0,0,4,3,1,660.5,469838.47,107133.57,122357.66,0,0,0,2211.9463 +5769,7042,12552,12553,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.4350247,7.1766424,0,4,6,19.393661,0,2,2,2021,8,0,98,12,1,0,0,1.4534255,1.4534255,0,0,0,0,0,0,0,28,1,1,0,7.8073273,0,57.16,56.15,37.93,54.93,8.333333333333334,1,1,0,0,11,11,3,1,515,553650,300241.22,206088.38,140576.53,1647.5973,0,2346.9976 +5769,7042,12553,12552,-9,-9,1,1,51,0,0,0,3,3,-9,0,2,6.9283409,7.5121641,0,4,-6,-150.21906,0,-9,-9,2021,14,2,40,40,1,2,0,5.7351465,5.7351465,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.93,54.93,57.16,56.15,3.333333333333333,1,1,0,0,7,11,3,1,515,553650,300241.22,206088.38,140576.53,1647.5973,0,2346.9976 +5769,7043,12554,-9,12552,-9,1,1,27,0,0,0,1,1,-9,0,4,7.6151834,7.9534817,0,0,0,-988.69452,0,1,-9,2021,12,0,35,40,1,0,1,6.8861189,6.8861189,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,1,4,11,3,1,237,-18847.984,0,0,0,0,0,638.17505 +5769,7044,12555,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,0,0,0,0,0,-980.64166,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.56,51.53,-9,-9,10,1,1,1,0,0,11,1,1,223,-44998.395,-76487.617,0,0,0,8340.4678,455.38391 +5769,7045,12556,-9,-9,-9,1,1,24,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1201.6144,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,1.8875705,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,0,11,1,1,2101,75518.539,0,0,0,0,0,2087.3538 +5770,7046,12557,12558,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.918128,8.2595968,50,2,-149.15222,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.41833425,8.112009,49.34,31.31,54.13,31.98,8.333333333333334,4,2,0,0,0,10,3,1,636,1018833.9,308991.38,438926,0,0,0,2790.1099 +5770,7046,12558,12557,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,5,-2,-64.420517,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.13,31.98,49.34,31.31,8.333333333333334,1,1,0,0,11,10,3,1,636,1018833.9,308991.38,438926,0,0,0,2790.1099 +5771,7047,12559,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.9928827,8.8438787,1.4537892,0,0,-1049.1531,-9,3,2,2021,13,1,47,0,1,1,0,18.831699,18.831699,.05,.05,0,0,0,0,0,7,0,0,0,2.3190436,1.8092775,36.73,36.37,-9,-9,5,1,1,0,0,13,7,5,1,448,774979.75,626001.31,332033.06,68900.367,0,0,2066.1113 +5772,7048,12560,12561,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.7699962,6.7925687,8,4,79.216919,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.5188258,0,27,1,1,0,6.7764511,6.5362129,52.65,40.91,51.42,13.45,8.333333333333334,1,1,0,0,0,9,2,1,998,194431.25,148550.53,76655.328,0,0,0,1786.0994 +5772,7048,12561,12560,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.7722101,6.0766306,50,-4,-138.18082,0,3,3,2021,19,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0706615,5.7972012,51.42,13.45,52.65,40.91,8.333333333333334,1,1,0,0,4,9,2,1,998,194431.25,148550.53,76655.328,0,0,0,1786.0994 +5773,7049,12562,12565,-9,-9,1,1,55,0,2,0,2,2,-9,0,2,8.1584406,7.8572049,0,9,8,-7.9594755,0,-9,-9,2021,18,6,36,36,1,6,0,11.704075,11.704075,.05,.05,0,0,0,0,0,0,1,1,0,6.7081017,0,26.75,48.94,41.94,48.3,3.333333333333333,1,1,0,1,11,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5773,7049,12563,-9,12565,12562,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6394,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5773,7049,12564,-9,12565,12562,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.9068,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5773,7049,12565,12562,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.8127985,7.7069411,0,9,-8,-5.4020572,0,3,3,2021,11,0,28,28,1,0,0,9.1642399,9.1642399,0,0,0,0,0,0,0,0,1,1,0,6.8144255,0,41.94,48.3,26.75,48.94,3.333333333333333,1,1,0,0,11,13,4,1,455.5,805369.19,122651.46,211277.38,0,0,1152.5184,2862.7039 +5774,7050,12566,-9,-9,-9,1,0,27,1,2,0,2,2,-9,1,4,0,0,0,0,0,-958.22998,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.01,33.33,-9,-9,1.666666666666667,1,1,1,0,2,13,1,0,438.66666,38446.43,0,0,0,165.29523,0,1362.833 +5774,7050,12567,-9,12566,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.1356,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,6,-9,0,0,13,1,0,438.66666,38446.43,0,0,0,165.29523,0,1362.833 +5774,7050,12568,-9,12566,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.4654,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,6,-9,0,0,13,1,0,438.66666,38446.43,0,0,0,165.29523,0,1362.833 +5775,7051,12569,12570,-9,-9,1,1,70,0,0,0,3,3,-9,0,5,0,3.5152266,3.2862122,9,10,28.768242,0,2,3,2021,6,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,3.1658542,58.05,54.52,60.02,56.42,8.333333333333334,1,1,0,0,7,9,3,1,485.5,720423.94,176389.22,210062.78,0,577.0257,0,1859.2156 +5775,7051,12570,12569,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,7.823401,7.6783619,6.1178465,9,-10,89.308418,0,-9,-9,2021,6,0,8,8,1,0,0,32.863403,32.863403,0,0,0,0,0,0,0,2,1,1,0,4.8399024,5.8105874,60.02,56.42,58.05,54.52,10,1,1,0,0,12,9,3,1,485.5,720423.94,176389.22,210062.78,0,577.0257,0,1859.2156 +5776,7052,12571,12572,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.644948,8.5590038,0,7,4,-137.60191,0,3,3,2021,14,2,52,54,1,2,0,13.577062,13.577062,.05,.05,0,0,0,0,0,0,0,0,0,7.3594251,0,38.71,47.54,54.79,55.86,3.333333333333333,1,1,0,1,12,9,5,1,854,2782851,999200.25,821848.75,121309.82,5338.1377,0,4501.8145 +5776,7052,12572,12571,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.614233,8.6513119,0,7,-4,-55.411983,0,-9,-9,2021,8,0,37,37,1,0,0,16.421921,16.421921,.05,.05,0,0,0,0,0,0,0,0,0,1.0114428,0,54.79,55.86,38.71,47.54,8.333333333333334,1,1,0,0,9,9,5,1,854,2782851,999200.25,821848.75,121309.82,5338.1377,0,4501.8145 +5777,7053,12573,-9,-9,-9,1,0,102,0,0,0,3,3,-9,0,2,0,0,0,0,0,-875.48566,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9253371,0,51.97,27.61,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,699,-147537.09,0,0,0,0,3392.8936,2304.3403 +5778,7054,12574,12575,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,55,-1,-17.430531,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,66.23,35.65,10,1,1,0,0,0,4,2,1,982.5,683562.25,292454.5,254510.27,0,0,0,1207.7838 +5778,7054,12575,12574,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.8032384,7.6148891,55,1,132.05745,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3723235,7.8726172,66.23,35.65,52,45,10,1,1,0,0,0,4,2,1,982.5,683562.25,292454.5,254510.27,0,0,0,1207.7838 +5779,7055,12576,-9,12577,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-794.66663,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,8,1,0,2167,0,0,0,0,0,0,2964.5801 +5779,7055,12577,-9,-9,-9,1,0,38,1,2,0,2,2,-9,1,4,0,0,0,0,0,-839.3949,0,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.37,48.04,-9,-9,5,1,1,1,1,0,8,1,0,2167,0,0,0,0,0,0,2964.5801 +5779,7056,12578,-9,12577,-9,1,0,20,1,2,0,2,2,-9,0,4,7.9233017,8.0024309,0,0,0,-953.71674,0,2,-9,2021,14,2,50,0,1,2,1,7.023993,7.023993,0,0,0,0,0,0,0,0,1,1,0,0,0,34.13,58.69,-9,-9,0,1,1,0,0,1,8,4,0,620.5,14594.848,0,0,0,107.17395,0,2357.1924 +5779,7056,12579,-9,12578,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.77399,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,0,620.5,14594.848,0,0,0,107.17395,0,2357.1924 +5780,7057,12580,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1471748,8.188612,0,0,0,-932.84875,0,-9,-9,2021,12,0,40,38,1,0,0,10.19697,10.19697,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,9,7,4,1,1793,101930.4,0,0,0,0,0,488.60889 +5781,7058,12581,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,8.1061249,7.999774,0,0,0,-1004.829,0,-9,-9,2021,26,11,39,40,1,11,0,7.7277551,7.7277551,.05,.05,0,0,0,0,0,0,1,1,0,1.6269805,0,41.58,52.86,-9,-9,1.666666666666667,1,1,0,0,6,6,3,1,813,-128007.12,37031.66,0,0,0,0,987.5871 +5781,7059,12582,12583,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.3213906,6.8123269,5,3,49.5942,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7866409,6.7257257,53.97,37.32,42.94,37.17,6.666666666666667,1,1,0,0,0,6,2,1,154.5,177388.59,108432.94,197591.58,0,0,2269.6233,1306.9385 +5781,7059,12583,12582,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.2179508,6.2071104,5,-3,52.934048,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7998508,6.3068452,42.94,37.17,53.97,37.32,8.333333333333334,1,1,0,0,0,6,2,1,154.5,177388.59,108432.94,197591.58,0,0,2269.6233,1306.9385 +5782,7060,12584,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1102.0363,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.48,24.02,-9,-9,5,1,1,0,0,0,2,1,0,350,18082.25,-8390.6387,0,0,0,0,536.35645 +5783,7061,12585,12586,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.4645476,6.9896312,7,3,65.238091,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4323096,7.8672619,58.23,43.46,56.92,49.39,8.333333333333334,1,1,0,0,0,6,3,1,545,946822.63,603666.13,365625.13,0,0,0,4624.665 +5783,7061,12586,12585,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5388937,7.4741001,7,-3,-2.400594,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1617641,7.3900418,56.92,49.39,58.23,43.46,10,1,1,0,0,0,6,3,1,545,946822.63,603666.13,365625.13,0,0,0,4624.665 +5784,7062,12587,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.7876854,6.5132127,0,0,-1009.3049,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3979518,6.5199924,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1021,298575.53,9204.9678,215228.41,0,0,0,1775.243 +5785,7063,12588,12589,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.9773159,8.9224224,0,6,5,22.109043,0,-9,-9,2021,11,0,42,46,1,0,0,18.185717,18.185717,.05,.05,0,0,0,0,0,0,0,0,0,3.8754184,0,46.44,59.62,52.5,46.44,8.333333333333334,1,1,0,0,7,7,5,1,984,160135.44,-18554.215,373699.81,229892.94,0,243.23923,5370.1333 +5785,7063,12589,12588,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.8959465,9.3948336,0,6,-5,3.4753821,0,-9,-9,2021,9,0,41,43,1,0,0,25.517048,25.517048,0,0,0,0,0,0,0,0,0,0,0,5.5737548,0,52.5,46.44,46.44,59.62,8.333333333333334,1,1,0,0,9,7,5,1,984,160135.44,-18554.215,373699.81,229892.94,0,243.23923,5370.1333 +5786,7064,12590,12591,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.7951956,7.4916406,0,3,3,15.28099,0,3,3,2021,23,11,45,40,1,11,0,5.5947003,5.5947003,0,0,0,0,0,0,0,0,0,0,0,0,0,32.2,38.17,47.21,28.63,3.333333333333333,1,1,0,1,10,4,3,1,245,552650.13,368485.38,131934.02,0,0,0,1218.225 +5786,7064,12591,12590,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.1995206,7.0978718,0,3,-3,-46.56094,0,3,3,2021,13,2,20,20,1,2,0,6.951839,6.951839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.21,28.63,32.2,38.17,3.333333333333333,1,1,0,1,8,4,3,1,245,552650.13,368485.38,131934.02,0,0,0,1218.225 +5787,7065,12592,-9,12593,-9,1,0,18,0,0,0,2,2,-9,0,5,7.2673802,7.4255285,0,0,0,-1071.3368,0,2,-9,2021,6,0,35,0,1,0,1,4.910203,4.910203,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,1,5,3,1,392,0,0,0,0,0,0,860.21222 +5787,7066,12593,12594,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.1522455,7.94872,0,2,-6,31.572912,0,3,2,2021,6,0,37,0,1,0,0,8.2488623,8.2488623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,53,54,10,1,1,0,0,9,5,5,1,903.5,1091125.8,837694.38,128671.48,6625.4658,3571.0835,0,3119.6387 +5787,7066,12594,12593,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.6694317,8.3989277,0,2,6,9.8755226,0,-9,-9,2021,9,0,37,38,1,1,0,15.500464,15.500464,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,60.02,56.42,8,1,1,0,0,1,5,5,1,903.5,1091125.8,837694.38,128671.48,6625.4658,3571.0835,0,3119.6387 +5788,7067,12595,12597,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.8124161,8.0261173,0,10,-5,107.70242,0,-9,-9,2021,5,0,30,24,1,0,0,8.9050016,8.9050016,.05,.05,0,0,0,0,0,0,1,1,0,1.1923524,0,60.1,54.82,55.2,49.4,6.666666666666667,1,1,0,0,11,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5788,7067,12596,-9,12595,12597,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1022.2184,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5788,7067,12597,12595,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,7.9008889,7.8660765,0,10,5,-69.15033,0,2,2,2021,8,0,41,41,1,0,0,8.1228247,8.1228247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.2,49.4,60.1,54.82,8.333333333333334,1,1,0,0,11,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5788,7067,12598,-9,12595,12597,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.5118,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,951.25,579758.69,217656.28,351196.66,68166.055,6487.5337,1789.9731,2281.2651 +5789,7068,12599,12600,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-16.118469,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,47.38,50.99,58.06,46.15,10,1,1,0,0,0,11,4,1,917,1675928.8,1276864.1,231349.06,0,0,0,2520.3027 +5789,7068,12600,12599,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.3472538,8.4592953,10,2,76.88269,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,12.470318,0,120,1,1,0,0,8.6028948,58.06,46.15,47.38,50.99,8.333333333333334,1,1,0,0,0,11,4,1,917,1675928.8,1276864.1,231349.06,0,0,0,2520.3027 +5789,7069,12601,-9,12599,12600,1,0,42,0,0,0,3,3,-9,1,2,0,0,0,0,0,-939.28143,0,3,2,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.66,42.99,-9,-9,5,1,1,0,0,0,11,1,1,339,109615.16,0,0,0,0,0,-66.796188 +5790,7070,12602,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.8040886,5.7020979,0,0,-854.271,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.877511,41.13,29.75,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,596,269094.19,126125.32,0,0,0,0,1058.9823 +5791,7071,12603,12604,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,4.9834566,4.9411769,5,-4,-67.072769,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8323369,4.8554616,60.13,41.04,49.76,54.41,8.333333333333334,1,1,0,0,0,2,2,0,672,262844.44,262110.33,0,0,0,151.65936,1103.9625 +5791,7071,12604,12603,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,3.8049664,3.7554238,5,4,1.8148479,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3201737,3.5124264,49.76,54.41,60.13,41.04,8.333333333333334,1,1,0,0,0,2,2,0,672,262844.44,262110.33,0,0,0,151.65936,1103.9625 +5792,7072,12605,-9,-9,-9,1,0,21,0,1,0,2,2,1,0,3,7.6377459,7.5329957,0,0,0,-1000.7021,-9,-9,3,2021,14,4,40,0,1,4,1,5.3795505,5.3795505,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.81,41.99,-9,-9,8.333333333333334,2,3,0,0,1,8,3,1,771,166108.58,-115547.27,0,0,4914.0347,0,1004.3331 +5793,7073,12606,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1045.4113,0,2,2,2021,25,12,0,0,4,12,0,0,0,0,0,0,1,0,21.48859,0,0,1,1,0,0,0,32.51,25.74,-9,-9,3.333333333333333,1,1,0,1,0,1,1,0,609,-68912.953,0,0,0,1926.2703,0,1102.4824 +5794,7074,12607,12609,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.7746572,9.0641403,0,24,-13,-39.650429,0,3,2,2021,6,0,43,48,1,0,0,16.680561,16.680561,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,1.666666666666667,1,1,0,0,12,9,4,1,1468.6666,657751.31,234336.66,223391.27,14174.339,0,0,4348.9824 +5794,7074,12608,-9,12607,12609,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-910.95172,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,1,1468.6666,657751.31,234336.66,223391.27,14174.339,0,0,4348.9824 +5794,7074,12609,12607,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,7.038476,7.6879587,0,21,13,-44.782017,0,2,1,2021,9,0,50,60,1,0,0,2.9361665,2.9361665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,12,9,4,1,1468.6666,657751.31,234336.66,223391.27,14174.339,0,0,4348.9824 +5794,7075,12610,-9,12607,12609,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1096.9092,-9,1,2,2021,13,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,0,0,0,9,1,1,299,-20452.568,0,0,0,6964.3833,0,0 +5795,7076,12611,12612,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.4755073,7.2048826,0,7,-10,-122.84637,0,-9,-9,2021,5,0,34,39,1,0,0,6.3536081,6.3536081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,37.38,50.66,8.333333333333334,1,1,0,0,9,2,4,1,1490.5,390930.59,44309.508,322022.19,0,0,6898.7153,2974.5122 +5795,7076,12612,12611,-9,-9,1,1,40,0,0,0,3,3,-9,0,4,8.4603672,8.6961193,0,7,10,-32.098099,0,-9,-9,2021,5,0,60,60,1,0,0,9.982152,9.982152,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.38,50.66,54.2,57.49,10,1,1,0,0,7,2,4,1,1490.5,390930.59,44309.508,322022.19,0,0,6898.7153,2974.5122 +5796,7077,12613,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.1601253,6.4394126,0,0,-983.96564,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2378144,58.91,45.88,-9,-9,8.333333333333334,1,1,0,1,0,1,2,0,1607,275529.56,103943.22,141153.69,0,0,1506.9052,741.30719 +5797,7078,12614,-9,12618,12616,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.03888,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12615,-9,12618,12616,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.9735,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12616,12618,-9,-9,1,1,38,1,3,0,2,2,-9,0,4,8.522213,8.547226,0,10,-1,12.898562,0,1,1,2021,11,0,36,36,1,0,0,14.225803,14.225803,0,0,0,0,0,0,0,0,1,1,0,0,0,41.53,63.13,57.06,57.76,10,1,1,0,0,11,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12617,-9,12618,12616,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.5671,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5797,7078,12618,12616,-9,-9,1,0,39,1,3,0,1,1,-9,0,5,0,0,0,10,1,105.75951,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8069305,0,57.06,57.76,41.53,63.13,10,1,1,0,0,4,12,3,1,844,623870.63,0,0,0,0,0,3092.958 +5798,7079,12619,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.7118506,6.6344643,0,0,-978.42828,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,7.7797408,3.9739459,64.755478,0,1,1,0,1.303802,6.5843296,54,44,-9,-9,8,1,1,0,0,0,5,2,0,1002,12472.432,107122.41,145493.63,0,0,0,1550.9614 +5799,7080,12620,-9,12621,12622,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.59222,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5799,7080,12621,12622,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,6.9205198,7.332252,0,12,-3,90.247902,0,3,3,2021,8,1,30,30,1,1,0,3.4113805,3.4113805,0,0,0,0,0,0,0,0,1,1,0,0,0,43.48,60.97,51.66,54.88,6.666666666666667,1,1,0,0,13,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5799,7080,12622,12621,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,0,0,0,12,3,-12.036497,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,43.48,60.97,5,1,1,1,0,6,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5799,7080,12623,-9,12621,12622,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.89502,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,507.75,45399.352,15017.288,0,0,4808.3218,0,901.87152 +5800,7081,12624,12625,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.895771,8.587225,0,1,16,20.448576,-9,-9,-9,2021,9,0,50,0,1,1,0,17.288836,17.288836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,33.38,56.39,8.333333333333334,1,1,0,0,9,2,4,1,990,256230.75,122458.79,131049.91,0,0,0,1835.3907 +5800,7081,12625,12624,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,1,-16,-23.772243,0,2,3,2021,12,2,0,49,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.38,56.39,54.79,55.86,6.666666666666667,1,1,1,0,7,2,4,1,990,256230.75,122458.79,131049.91,0,0,0,1835.3907 +5801,7082,12626,12627,-9,-9,1,1,68,0,2,0,1,1,-9,1,3,6.5123363,6.417398,0,7,20,-311.4895,0,3,2,2021,12,4,16,16,1,4,0,4.6231775,4.6231775,0,0,0,1,0,158.00423,0,0,1,1,0,0,0,52.08,18.58,50.62,20.39,6.666666666666667,2,3,0,1,10,6,2,0,726.66669,662542,148321.63,384037.03,0,0,0,1821.2002 +5801,7082,12627,12626,-9,-9,1,0,48,0,2,0,2,2,-9,0,1,0,0,0,7,-20,-48.955769,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50.62,20.39,52.08,18.58,8.333333333333334,2,3,0,0,0,6,2,0,726.66669,662542,148321.63,384037.03,0,0,0,1821.2002 +5801,7082,12628,-9,12627,12626,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.4065,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,726.66669,662542,148321.63,384037.03,0,0,0,1821.2002 +5802,7083,12629,12631,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,8.2516022,8.1038361,0,4,1,-204.19839,0,2,2,2021,9,0,42,8,1,0,0,10.323456,10.323456,.05,.05,0,0,0,0,0,2,1,1,0,1.4773688,0,54.1,59.11,37.31,50.35,8.333333333333334,1,1,0,0,11,12,4,1,605.33331,1481167.6,1113850.1,357925.53,149531.89,3413.4265,0,4472.6763 +5802,7083,12630,-9,12631,12629,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1078.5106,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,605.33331,1481167.6,1113850.1,357925.53,149531.89,3413.4265,0,4472.6763 +5802,7083,12631,12629,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.7354012,8.6907368,0,4,-1,-22.228048,0,2,-9,2021,16,4,38,1,1,4,0,14.776073,14.776073,.05,.05,0,0,0,0,0,0,1,1,0,8.187583,0,37.31,50.35,54.1,59.11,5,1,1,0,0,11,12,4,1,605.33331,1481167.6,1113850.1,357925.53,149531.89,3413.4265,0,4472.6763 +5802,7084,12632,-9,12631,12629,1,0,20,0,1,1,2,0,0,0,4,0,6.4189162,6.591198,0,0,-983.46198,-9,2,2,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7719293,0,36.45,62.92,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,1023,155703.97,-10338.891,0,0,-764.16925,0,173.1922 +5802,7085,12633,-9,12631,12629,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1006.2124,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3236058,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,12,1,1,408,276842.47,0,0,0,0,0,289.08228 +5803,7086,12634,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,7.6734004,8.1099091,0,0,-964.07074,0,2,1,2021,24,12,0,45,4,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8745632,7.712729,37.36,45.03,-9,-9,6.666666666666667,1,1,0,0,12,9,4,1,590,-85178.133,66105.07,0,0,0,0,813.67944 +5804,7087,12635,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,6.8256779,6.7828121,0,0,-961.00043,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.57188636,6.7852273,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,495,288178.81,-97384.445,194969.39,0,0,0,1294.2939 +5805,7088,12636,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.8135014,8.5692978,0,0,0,-985.71808,0,2,1,2021,7,0,42,42,1,0,0,17.804657,17.804657,.05,.05,0,0,0,0,0,0,0,0,0,2.8509288,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,8,4,5,0,979,109068.8,103567.32,0,0,0,0,2997.2261 +5806,7089,12637,12638,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,43,2,29.12734,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2963929,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,1,4,3,1,659,694981.38,479541.66,131034.66,0,429.02423,0,2119.6018 +5806,7089,12638,12637,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.9047527,7.6118908,10,-2,-28.413347,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6508379,57.16,56.15,51.24,58.84,10,1,1,0,0,0,4,3,1,659,694981.38,479541.66,131034.66,0,429.02423,0,2119.6018 +5807,7090,12639,12640,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,21,9,0,-9,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.26,18.9,56.5,48.33,1.666666666666667,1,1,0,0,5,8,1,0,1105.3334,-112954.78,-6174.1099,0,0,162059.19,0,2969.1772 +5807,7090,12640,12639,-9,-9,1,0,44,0,0,0,3,3,-9,1,3,0,0,0,21,0,0,0,1,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,56.5,48.33,30.26,18.9,6.666666666666667,1,1,0,0,2,8,1,0,1105.3334,-112954.78,-6174.1099,0,0,162059.19,0,2969.1772 +5807,7090,12641,-9,12640,12639,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-873.70593,0,3,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2938221,0,9.870000000000001,71.02,-9,-9,1.666666666666667,1,1,1,0,0,8,1,0,1105.3334,-112954.78,-6174.1099,0,0,162059.19,0,2969.1772 +5808,7091,12642,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,6.2578239,6.5136733,0,0,-1043.3682,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,2.2304647,0,0,1,1,0,0,6.4572139,23.04,34.09,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,332,138020.78,-13496.837,200408.55,0,0,0,414.30518 +5808,7092,12643,-9,12642,-9,1,0,61,0,0,0,2,2,-9,0,5,8.2482414,8.3177872,0,0,0,-1031.0519,0,3,2,2021,6,0,30,30,1,0,0,19.24662,19.24662,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,11,5,4,1,913,22605.348,0,31278.732,27609.369,36.642651,0,1739.4951 +5809,7093,12644,12646,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.7652445,9.118268,0,16,7,-64.96006,0,2,1,2021,9,0,43,43,1,0,0,21.719093,21.719093,.05,.05,0,0,0,0,0,0,1,1,0,.69824064,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,8,10,5,1,1985.3334,480270.72,266254.34,617395.13,396321.28,11235.004,0,6042.9404 +5809,7093,12645,-9,12646,12644,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.19019,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,5,1,1985.3334,480270.72,266254.34,617395.13,396321.28,11235.004,0,6042.9404 +5809,7093,12646,12644,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,9.1214428,8.9365749,0,17,-7,-64.104202,0,2,2,2021,9,0,48,47,1,0,0,26.255667,26.255667,.05,.05,0,0,0,0,0,0,1,1,0,4.0027208,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,10,10,5,1,1985.3334,480270.72,266254.34,617395.13,396321.28,11235.004,0,6042.9404 +5810,7094,12647,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-914.08276,0,-9,-9,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.59,47.27,-9,-9,0,1,1,1,0,0,12,2,0,552,88456.672,0,0,0,-1670.2166,0,1425.7336 +5811,7095,12648,-9,-9,12649,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.22864,-9,-9,-9,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,673,897362.25,219397.77,464784.66,76824.406,0,0,7070.8335 +5811,7095,12649,12650,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.8579407,9.6601248,0,6,-4,-57.529346,0,3,2,2021,13,2,50,50,1,2,0,37.418518,37.418518,.05,.05,0,0,0,0,0,2,0,0,0,0,0,32.55,66.27,42.61,54.85,3.333333333333333,1,1,0,0,8,12,5,1,673,897362.25,219397.77,464784.66,76824.406,0,0,7070.8335 +5811,7095,12650,12649,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.7572231,8.4239979,0,6,4,-2.0676348,0,3,3,2021,16,4,53,51,1,4,0,11.696995,11.696995,0,0,0,0,0,0,0,27,0,0,0,0,0,42.61,54.85,32.55,66.27,8.333333333333334,1,1,0,0,7,12,5,1,673,897362.25,219397.77,464784.66,76824.406,0,0,7070.8335 +5812,7096,12651,12652,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-7,11.136417,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,38.67,45.86,43.8,44.58,6.666666666666667,2,3,0,0,0,4,4,1,592,1788282.4,1127900.8,316670.38,0,0,0,3891.3159 +5812,7096,12652,12651,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.6085796,8.458663,53,7,40.412148,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3950896,8.444459,43.8,44.58,38.67,45.86,8.333333333333334,2,3,0,0,8,4,4,1,592,1788282.4,1127900.8,316670.38,0,0,0,3891.3159 +5813,7097,12653,-9,12654,-9,1,1,56,0,0,0,1,1,-9,0,5,8.330287,8.4933243,0,0,0,-955.71771,0,2,-9,2021,12,0,37,37,1,0,0,12.614056,12.614056,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,14,11,5,1,541,322796.44,187692.69,167807.53,48655.145,0,0,1490.6869 +5813,7098,12654,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,6.8086081,6.6654902,0,0,-1060.2076,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,8.8205309,4.7274561,68.910896,0,1,1,0,5.5255561,6.8569984,29.86,20.5,-9,-9,5,1,1,0,0,0,11,2,1,215,4711.397,-51623.703,0,0,0,0,884.75061 +5814,7099,12655,12656,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.768528,7.0770884,57,-1,-74.045784,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9133763,47.49,29.63,46.09,51.67,3.333333333333333,1,1,0,0,0,10,2,1,989,595302.94,280385.56,367188.94,0,0,0,1526.0804 +5814,7099,12656,12655,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,1,78.438759,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.09,51.67,47.49,29.63,8.333333333333334,1,1,0,0,0,10,2,1,989,595302.94,280385.56,367188.94,0,0,0,1526.0804 +5814,7100,12657,-9,12656,12655,1,1,51,0,0,0,3,3,-9,0,2,8.0384207,7.8225727,0,0,0,-952.99084,0,3,3,2021,23,8,38,40,1,8,0,9.4354639,9.4354639,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.4,40.86,-9,-9,1.666666666666667,1,1,0,0,14,10,4,1,200,444263.72,-66026.57,134733.95,35426.074,0,1208.4006,1567.7035 +5815,7101,12658,12659,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,7.5454679,7.8440661,5.5874815,30,2,41.858963,0,2,2,2021,11,0,2,4,1,1,0,105.34346,105.34346,0,0,0,0,0,0,0,0,1,1,0,0,5.5919642,51,46,41.88,54.89,7,1,1,0,0,1,7,5,1,1339.5,1496754.8,423876.5,600331.75,0,0,0,6027.79 +5815,7101,12659,12658,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.6495285,8.967865,7.7265563,30,-2,-16.08819,0,2,2,2021,12,0,30,30,1,0,0,24.746084,24.746084,.05,.05,0,0,0,0,0,0,1,1,0,7.7677269,7.6923914,41.88,54.89,51,46,5,1,1,0,0,8,7,5,1,1339.5,1496754.8,423876.5,600331.75,0,0,0,6027.79 +5816,7102,12660,12662,-9,-9,1,0,39,1,1,0,1,1,-9,0,4,8.6769705,8.5851707,0,2,1,6.0087771,0,2,2,2021,12,1,28,21,1,1,0,17.456015,17.456015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.95,58.45,54.67,57.49,8.333333333333334,1,1,0,0,14,12,5,1,788.66669,350116.16,265147.22,427688.47,334031.66,18172.217,2133.397,5095.4922 +5816,7102,12661,-9,12660,12662,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.0438,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,5,1,788.66669,350116.16,265147.22,427688.47,334031.66,18172.217,2133.397,5095.4922 +5816,7102,12662,12660,-9,-9,1,1,38,1,1,0,1,1,-9,0,5,9.3041267,9.256443,0,2,-1,28.471184,-9,2,2,2021,12,2,45,0,1,2,0,30.269707,30.269707,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.67,57.49,43.95,58.45,8.333333333333334,1,1,0,0,14,12,5,1,788.66669,350116.16,265147.22,427688.47,334031.66,18172.217,2133.397,5095.4922 +5817,7103,12663,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,7.8565993,7.7819295,0,0,0,-899.75775,0,-9,-9,2021,12,2,40,32,1,2,0,7.6626644,7.6626644,0,0,0,0,0,0,0,0,1,0,1,0,0,29.41,36.67,-9,-9,6.666666666666667,1,1,0,0,12,6,3,0,673,-137530.34,20714.262,98693.688,22812.807,0,0,996.12445 +5817,7104,12664,-9,12663,-9,1,0,29,0,1,0,3,3,-9,0,3,7.3900714,7.4160433,0,0,0,-994.88409,-9,2,-9,2021,17,5,25,0,1,5,1,5.8744035,5.8744035,.05,.05,0,0,0,0,0,0,1,0,1,0,0,31.38,58.58,-9,-9,6.666666666666667,1,1,0,0,12,6,3,0,274.5,-10973.697,797.46484,0,0,0,1763.3516,991.24719 +5817,7104,12665,-9,12664,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1070.8701,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,63,-9,-9,7,1,1,-9,0,0,6,3,0,274.5,-10973.697,797.46484,0,0,0,1763.3516,991.24719 +5818,7105,12666,12667,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.3886948,8.192606,49,-1,-88.886086,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4941797,8.2073669,63.48,49.15,38.91,60.5,8.333333333333334,1,1,0,0,6,4,4,1,329,950042.25,788869.13,163601,0,0,0,4186.8433 +5818,7105,12667,12666,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.3831577,7.7559652,49,1,-69.493263,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5338373,7.0982947,38.91,60.5,63.48,49.15,8.333333333333334,1,1,0,0,0,4,4,1,329,950042.25,788869.13,163601,0,0,0,4186.8433 +5819,7106,12668,12669,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.3514576,8.3848305,34,3,18.191381,0,3,1,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.0659428,8.3057833,59.29,49.68,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,294.5,1561820.8,950233,364872.88,19457.02,0,0,4902.9609 +5819,7106,12669,12668,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.2151341,7.5967593,5.8322124,8,-3,97.12896,0,3,3,2021,8,0,8,12,1,0,0,25.533947,25.533947,0,0,0,0,0,0,0,0,1,1,0,3.270278,6.6223831,58.15,52.91,59.29,49.68,8.333333333333334,1,1,0,0,10,5,4,1,294.5,1561820.8,950233,364872.88,19457.02,0,0,4902.9609 +5819,7107,12670,-9,12669,12668,1,0,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-830.16504,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,3,5,1,1,1922,-164005.56,0,0,0,0,0,0 +5820,7108,12671,12672,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.1010847,9.4142675,7.5868883,38,0,87.382278,0,2,1,2021,8,0,47,48,1,0,0,21.060722,21.060722,0,0,0,0,0,0,0,7,0,0,0,6.7267327,7.8362665,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,700,1406669.8,963315.5,361953.56,0,0,0,8223.2451 +5820,7108,12672,12671,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7535057,8.8070107,38,0,192.08997,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,7.1688604,8.8040209,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,4,6,5,1,700,1406669.8,963315.5,361953.56,0,0,0,8223.2451 +5821,7109,12673,12677,-9,-9,1,1,30,0,3,0,1,1,-9,0,5,8.6384239,8.3100357,0,10,0,-30.520979,0,1,2,2021,9,0,45,48,1,0,0,14.004027,14.004027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,42.58,54.92,8.333333333333334,1,1,0,0,9,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12674,-9,12677,12673,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.19104,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12675,-9,12677,12673,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-975.62653,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12676,-9,12677,12673,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1034.3207,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5821,7109,12677,12673,-9,-9,1,0,30,0,3,0,1,1,1,0,4,0,0,0,10,0,38.972912,-9,1,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.58,54.92,51.73,58.82,6.666666666666667,1,1,0,0,3,2,3,1,785,35698.25,68433.5,0,0,6624.1357,912.51971,2416.1428 +5822,7110,12678,12679,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,0,0,0,10,3,-6.4928198,0,-9,-9,2021,10,0,0,52,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.4884887,0,48.43,53.15,41.06,62.04,6.666666666666667,1,1,1,0,13,7,3,1,1122.6666,1054989.8,674957.5,277293.19,0,0,1990.9059,2693.2114 +5822,7110,12679,12678,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.791626,8.6195011,7.6762295,10,-3,-90.502228,-9,1,1,2021,12,0,50,0,1,0,0,6.400208,6.400208,0,0,0,0,0,0,0,0,1,1,0,8.4131746,0,41.06,62.04,48.43,53.15,8.333333333333334,1,1,0,0,12,7,3,1,1122.6666,1054989.8,674957.5,277293.19,0,0,1990.9059,2693.2114 +5822,7110,12680,-9,12679,12678,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-944.23175,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1122.6666,1054989.8,674957.5,277293.19,0,0,1990.9059,2693.2114 +5823,7111,12681,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.28033,0,-9,-9,2021,7,1,0,48,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.95,57.9,-9,-9,8.333333333333334,1,1,1,0,7,12,1,0,444,0,0,0,0,0,0,-58.323792 +5824,7112,12682,12683,-9,-9,1,1,28,1,1,0,2,2,-9,1,3,0,0,0,1,1,-48.929649,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,62.49,55.09,5,1,1,1,0,0,4,3,0,292,67674,0,0,0,862.04877,0,1881.1736 +5824,7112,12683,12682,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.6960316,8.0799227,0,1,-1,88.572212,-9,-9,-9,2021,6,0,50,0,1,0,0,5.6380835,5.6380835,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.33,53.46,10,1,1,0,0,6,4,3,0,292,67674,0,0,0,862.04877,0,1881.1736 +5824,7112,12684,-9,12683,12682,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.13385,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,292,67674,0,0,0,862.04877,0,1881.1736 +5825,7113,12685,12686,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.796504,8.7573919,5.4749532,6,-1,80.737358,0,3,3,2021,7,0,36,36,1,0,0,20.440271,20.440271,.05,.05,0,0,0,0,0,0,0,0,0,5.8789415,0,55.19,54.26,58.32,50.22,8.333333333333334,1,1,0,0,7,13,5,1,593.5,543206.25,76887.219,485228.75,0,4942.0396,0,2578.6001 +5825,7113,12686,12685,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.6221461,6.8071342,0,6,1,54.120605,0,2,2,2021,6,0,10,14,1,0,0,9.4632673,9.4632673,0,0,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,55.19,54.26,8.333333333333334,1,1,0,0,7,13,5,1,593.5,543206.25,76887.219,485228.75,0,4942.0396,0,2578.6001 +5826,7114,12687,12688,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,49,0,110.26559,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,46.56,60,41.18,8.333333333333334,1,1,0,0,0,6,2,1,760,178127.31,0,177357.47,0,0,0,1200.1075 +5826,7114,12688,12687,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.699976,4.6610394,49,0,-24.041002,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0806502,4.8228064,60,41.18,49.28,46.56,10,1,1,0,0,0,6,2,1,760,178127.31,0,177357.47,0,0,0,1200.1075 +5827,7115,12689,12690,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.3570447,7.5300331,8,2,-82.873657,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.28969,62.49,55.09,57.16,56.15,10,1,1,0,0,0,10,3,1,352.5,856885.44,445462.06,243357.19,0,0,680.08722,2639.1763 +5827,7115,12690,12689,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.1586957,7.2540898,8,-2,-9.3409519,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8142056,6.9011679,57.16,56.15,62.49,55.09,10,1,1,0,0,0,10,3,1,352.5,856885.44,445462.06,243357.19,0,0,680.08722,2639.1763 +5828,7116,12691,12692,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.4091587,5.2428455,8,1,-45.994808,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4666839,39.39,48.18,57.16,56.15,6.666666666666667,1,1,0,0,0,2,2,1,1397.5,676671.44,279534.28,256387.2,0,0,0,1663.5024 +5828,7116,12692,12691,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.7942944,6.9073973,8,-1,47.669258,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0008245,6.6591816,57.16,56.15,39.39,48.18,8.333333333333334,1,1,0,0,1,2,2,1,1397.5,676671.44,279534.28,256387.2,0,0,0,1663.5024 +5829,7117,12693,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.7854948,8.7624807,0,0,0,-949.46466,0,1,2,2021,5,0,43,43,1,0,0,15.789514,15.789514,.05,.05,0,0,0,0,0,0,0,0,0,4.6383967,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,5,5,0,2092,19700.107,101571.45,171575.72,111852.83,17960.549,0,1734.6639 +5830,7118,12694,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,7.7973628,7.9688573,0,0,0,-934.33472,0,-9,-9,2021,12,2,38,37,1,2,0,10.361547,10.361547,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,8,13,4,0,391,-74304.594,-11696.293,0,0,0,0,1390.5195 +5831,7119,12695,12696,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,8.4264326,8.3245716,40,-3,-70.813904,0,2,1,2021,6,0,0,85,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,5.8697882,8.3243732,59.53,56.44,45.75,53.15,10,1,1,0,0,12,10,4,1,2748,512050.69,276519.75,297656.25,0,0,0,2324.3733 +5831,7119,12696,12695,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.4042411,7.011282,38,3,9.141222,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6979747,45.75,53.15,59.53,56.44,8.333333333333334,1,1,0,0,13,10,4,1,2748,512050.69,276519.75,297656.25,0,0,0,2324.3733 +5832,7120,12697,-9,12701,12699,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.47565,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12698,-9,12701,12699,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.02454,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12699,12701,-9,-9,1,1,38,0,3,0,1,1,-9,0,4,8.7447357,8.9101372,0,17,0,86.242813,0,2,1,2021,13,3,39,39,1,3,0,19.775305,19.775305,.05,.05,0,0,0,0,0,0,1,1,0,5.2448516,0,55.19,54.26,39.66,47.83,8.333333333333334,1,1,0,0,11,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12700,-9,12701,12699,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.32428,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5832,7120,12701,12699,-9,-9,1,0,38,0,3,0,1,1,-9,1,3,0,0,0,17,0,-74.25354,-9,1,1,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.1185863,0,39.66,47.83,55.19,54.26,6.666666666666667,1,1,0,0,6,2,3,1,441.39999,61661.793,72071.781,206450.8,72633.445,0,0,2562.8438 +5833,7121,12702,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.5461016,8.9490738,0,0,0,-1036.2977,0,2,2,2021,12,0,37,37,1,0,0,15.55404,15.55404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,3.333333333333333,1,1,0,0,10,9,5,1,831,37351.242,23311.406,0,0,0,4214.9951,2590.1599 +5834,7122,12703,-9,12704,12705,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-918.62817,-9,2,2,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.33,59.49,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,375.66666,144133.13,51616.688,200657.92,51207.68,6538.9746,543.22754,1796.2953 +5834,7122,12704,12705,-9,-9,1,0,58,0,1,0,2,2,-9,0,2,0,0,0,38,-1,57.93206,0,2,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6893802,0,46.38,42.58,52,54.51,6.666666666666667,1,1,0,1,0,12,3,1,375.66666,144133.13,51616.688,200657.92,51207.68,6538.9746,543.22754,1796.2953 +5834,7122,12705,12704,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,0,7.8373957,7.6689696,10,1,39.926495,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2294025,8.0014753,52,54.51,46.38,42.58,6.666666666666667,1,1,1,0,0,12,3,1,375.66666,144133.13,51616.688,200657.92,51207.68,6538.9746,543.22754,1796.2953 +5835,7123,12706,12707,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,56,2,102.04741,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.8364474,30.949987,21.931805,0,1,1,0,0,0,53,44,55,45,8,1,1,0,0,0,8,2,1,569.5,644050.81,122132.46,402012.88,0,0,0,1869.4047 +5835,7123,12707,12706,-9,-9,1,1,86,0,0,0,2,2,-9,0,3,0,7.3793273,7.6865726,56,-2,7.640729,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.926826,0,25.678986,14.5,1,1,0,4.3088622,7.3249416,55,45,53,44,8,1,1,0,0,0,8,2,1,569.5,644050.81,122132.46,402012.88,0,0,0,1869.4047 +5836,7124,12708,12711,-9,-9,1,1,42,0,1,0,3,3,-9,0,4,6.6176562,6.7614884,0,8,-8,130.04485,0,-9,-9,2021,9,0,11,49,1,1,0,9.1483364,9.1483364,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,28.91,35.16,8,1,1,0,0,1,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5836,7124,12709,-9,12711,12708,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1102.864,-9,3,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5836,7124,12710,-9,12711,12708,1,1,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1012.719,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5836,7124,12711,12708,-9,-9,1,0,50,0,1,0,3,3,-9,1,1,0,0,0,8,8,11.062444,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.91,35.16,51,56,3.333333333333333,1,1,0,1,5,4,2,0,1006,-29079.859,0,0,0,0,0,1914.6416 +5837,7125,12712,12713,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.1858716,5.7729654,50,2,86.757263,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,5.1580839,5.9496408,62.6,34.56,55.8,40.33,8.333333333333334,2,3,0,0,0,5,2,1,776.5,382135.94,251584.84,145688.22,0,0,0,2096.4675 +5837,7125,12713,12712,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,7,-2,69.165611,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,3.0834746,0,55.8,40.33,62.6,34.56,10,2,3,0,0,0,5,2,1,776.5,382135.94,251584.84,145688.22,0,0,0,2096.4675 +5838,7126,12714,12715,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.9089441,7.3605995,61,-3,52.006741,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2396588,6.9081807,51.77,58.57,65.22,41.45,10,1,1,0,0,0,2,3,1,1158,196534.28,190428.17,117596.16,11774.752,897.59521,0,2762.1775 +5838,7126,12715,12714,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.5683947,7.1044145,61,3,22.595457,0,2,2,2021,13,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8910427,65.22,41.45,51.77,58.57,6.666666666666667,1,1,0,0,4,2,3,1,1158,196534.28,190428.17,117596.16,11774.752,897.59521,0,2762.1775 +5839,7127,12716,-9,-9,-9,1,1,24,0,0,0,1,1,1,0,3,0,0,0,0,0,-1126.8934,-9,-9,-9,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.51,65.2,-9,-9,1.666666666666667,4,2,1,1,5,5,1,1,2032,-92115.82,0,0,0,0,0,0 +5840,7128,12717,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,5,0,7.4917479,7.3501768,0,0,-1092.7633,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9361598,7.7749104,48.77,60.16,-9,-9,5,1,1,0,0,8,9,3,1,328,974764.94,294959.81,129394.66,0,0,0,1563.2131 +5840,7129,12718,-9,12717,-9,1,1,53,0,0,0,2,2,-9,0,4,8.784111,8.3701401,0,0,0,-994.81488,0,1,2,2021,7,0,43,45,1,0,0,20.812572,20.812572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,1171,699916.69,515847.44,276951.75,0,0,2437.5923,1436.33 +5841,7130,12719,-9,-9,-9,1,0,72,0,1,0,3,3,-9,0,1,0,5.6913805,5.6751633,0,0,-856.89783,0,3,3,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,2.0617085,0,0,1,1,0,0,5.880703,16.04,23.99,-9,-9,0,1,1,0,0,0,1,2,1,769,178296.13,5208.1748,215265.95,0,0,0,1060.8384 +5842,7131,12720,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,8.7443819,8.7089653,6.84059,0,0,-855.83325,0,3,3,2021,6,0,25,40,1,0,0,34.588051,34.588051,0,0,0,0,0,0,0,0,1,1,0,3.6521058,7.0192432,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,242,390775.69,-24112.559,211861.84,15057.11,0,0,2604.7988 +5843,7132,12721,12722,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.2598252,7.5266099,10,1,-28.530622,0,2,2,2021,13,2,0,21,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7143116,7.4620676,47.62,44.34,36.29,52.23,8.333333333333334,1,1,0,0,10,7,3,0,385,693717.75,262238.03,513968.78,0,-1086.8833,0,2115.667 +5843,7132,12722,12721,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,10,-1,10.118419,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,52.23,47.62,44.34,6.666666666666667,1,1,0,0,8,7,3,0,385,693717.75,262238.03,513968.78,0,-1086.8833,0,2115.667 +5844,7133,12723,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.2425632,4.6117659,0,0,-980.68738,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,1.6906685,4.7945476,23.475576,0,1,1,0,0,4.7164788,31.67,54.34,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,852,204104.09,-69002.758,0,0,0,0,187.32141 +5845,7134,12724,12725,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,6.7422729,6.6157289,0,4,-2,-53.961102,0,-9,-9,2021,19,7,30,36,1,7,0,3.2312667,3.2312667,0,0,0,0,0,0,0,7,0,0,0,0,0,38.45,39.53,30.87,56.1,8.333333333333334,1,1,0,0,5,11,3,0,299.5,-90808.75,0,0,0,0,558.88513,1411.9307 +5845,7134,12725,12724,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.7741294,7.7899895,0,4,2,-141.03413,0,-9,-9,2021,20,8,39,31,1,8,0,6.3053675,6.3053675,0,0,0,0,0,0,0,7,0,0,0,0,0,30.87,56.1,38.45,39.53,3.333333333333333,1,1,0,0,3,11,3,0,299.5,-90808.75,0,0,0,0,558.88513,1411.9307 +5846,7135,12726,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,7.5740023,7.1295433,0,0,0,-910.76947,-9,1,1,2021,6,0,22,0,1,0,0,9.1379709,9.1379709,0,0,0,0,0,0,0,0,0,0,0,0,0,46.88,58.45,-9,-9,8.333333333333334,2,3,0,0,14,8,3,1,1520,79772.898,-104795.5,191535.75,58600.695,3313.686,0,506.14642 +5847,7136,12727,12728,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.0223374,7.3932023,55,3,-95.338554,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4981346,7.2662344,59.53,56.44,66.76000000000001,42.29,10,1,1,0,0,0,7,3,1,1091,436010.06,90548.484,631557.19,471005.78,0,0,4708.7446 +5847,7136,12728,12727,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,7.0161657,7.1056023,55,-3,8.4011526,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7728047,6.9594283,66.76000000000001,42.29,59.53,56.44,10,1,1,0,0,0,7,3,1,1091,436010.06,90548.484,631557.19,471005.78,0,0,4708.7446 +5848,7137,12729,12730,-9,-9,1,1,62,0,1,0,1,1,-9,0,2,5.8862643,6.4048753,5.0496531,41,1,-147.89738,0,3,2,2021,13,1,37,7,1,1,0,1.2086768,1.2086768,.05,.05,.05,0,0,0,0,2,1,1,0,0,4.8442197,38.8,39.16,12.89,63.58,5,1,1,0,1,10,5,3,1,961,500232.47,449603.47,123254.25,0,528.52533,415.15677,1173.4309 +5848,7137,12730,12729,-9,-9,1,0,61,0,1,0,1,1,-9,0,2,0,7.8067846,7.7921953,41,-1,94.904503,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6716661,12.89,63.58,38.8,39.16,0,1,1,0,1,12,5,3,1,961,500232.47,449603.47,123254.25,0,528.52533,415.15677,1173.4309 +5848,7138,12731,-9,12733,12732,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.71112,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1077.3334,68673.102,-18250.213,148909.5,110216.62,5696.0454,2604.4294,2515.7048 +5848,7138,12732,12733,12730,12729,1,1,28,0,1,0,2,2,-9,1,4,0,0,0,9,0,31.243162,0,1,1,2021,6,0,0,20,3,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,50.02,48.88,8.333333333333334,1,1,0,0,1,5,3,1,1077.3334,68673.102,-18250.213,148909.5,110216.62,5696.0454,2604.4294,2515.7048 +5848,7138,12733,12732,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,7.8582993,7.9096489,0,9,0,12.141329,0,-9,-9,2021,6,1,43,42,1,1,0,9.8968592,9.8968592,0,0,0,0,0,0,0,83,1,1,0,0,0,50.02,48.88,54.79,55.86,6.666666666666667,1,1,0,0,6,5,3,1,1077.3334,68673.102,-18250.213,148909.5,110216.62,5696.0454,2604.4294,2515.7048 +5849,7139,12734,12735,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.7236977,9.7671309,0,6,2,46.5368,0,3,3,2021,4,0,70,45,1,0,0,27.312284,27.312284,.05,.05,0,0,0,0,0,0,1,1,0,6.92593,0,57.33,53.46,38.11,62.27,8.333333333333334,2,3,0,0,7,6,5,1,909.66669,1817138.9,1566310.8,402771.63,188682.94,7787.9995,0,7737.6777 +5849,7139,12735,12734,-9,-9,1,0,42,0,1,0,1,1,-9,0,5,8.939105,8.8518124,0,6,-2,67.261635,0,3,3,2021,8,0,65,42,1,0,0,12.829153,12.829153,.05,.05,0,0,0,0,0,0,1,1,0,5.9872828,0,38.11,62.27,57.33,53.46,1.666666666666667,2,3,0,0,7,6,5,1,909.66669,1817138.9,1566310.8,402771.63,188682.94,7787.9995,0,7737.6777 +5849,7139,12736,-9,12735,12734,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1040.5052,-9,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1453947,0,63.97,49.13,-9,-9,10,2,3,0,0,0,6,5,1,909.66669,1817138.9,1566310.8,402771.63,188682.94,7787.9995,0,7737.6777 +5849,7140,12737,-9,12735,12734,1,0,22,0,1,0,2,2,1,0,3,8.0264759,7.8841143,0,0,0,-1052.6549,-9,1,1,2021,15,3,37,0,1,3,1,8.4981394,8.4981394,.05,.05,0,0,0,0,0,0,1,1,0,3.5024223,0,37.92,53.03,-9,-9,6.666666666666667,2,3,0,0,5,6,4,1,368,-44590.43,-10885.892,0,0,0,0,1243.9281 +5850,7141,12738,12739,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.7456236,8.7516251,0,31,-7,24.877422,0,2,-9,2021,14,3,41,41,1,3,0,16.22031,16.22031,0,0,0,0,0,0,0,2,0,0,0,0,0,43.14,61.33,57.16,56.15,8.333333333333334,1,1,0,0,9,9,5,1,1745.5,431564.13,312490.78,223778.53,26490.283,0,0,3690.8298 +5850,7141,12739,12738,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.6407442,8.8187675,0,31,7,-4.4189496,0,2,3,2021,8,0,38,38,1,0,0,13.431934,13.431934,.05,.05,.05,0,0,0,0,0,0,0,0,.80292678,0,57.16,56.15,43.14,61.33,8.333333333333334,1,1,0,0,9,9,5,1,1745.5,431564.13,312490.78,223778.53,26490.283,0,0,3690.8298 +5851,7142,12740,-9,12743,12741,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.70789,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12741,12743,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.8549128,8.9867401,0,7,-2,-61.227089,0,-9,-9,2021,9,0,50,48,1,1,0,16.459913,16.459913,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,53.92,52.23,8,1,1,0,0,1,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12742,-9,12743,12741,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.14288,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12743,12741,-9,-9,1,0,45,0,3,0,1,1,-9,0,3,9.3484554,9.1335049,0,13,2,76.512955,0,2,3,2021,11,0,49,49,1,0,0,21.547619,21.547619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.92,52.23,52,56,8.333333333333334,1,1,0,0,7,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5851,7142,12744,-9,12743,12741,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.14667,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.20001,666279.81,411618.53,341201.66,94725.742,0,0,5683.6343 +5852,7143,12745,12747,-9,-9,1,0,34,1,1,0,2,2,-9,0,3,7.2987633,7.3269658,0,4,1,-128.73724,0,3,1,2021,17,5,17,15,1,5,0,13.624352,13.624352,0,0,0,0,0,0,0,0,1,1,0,.73415768,0,41.23,48.62,36.68,58.87,8.333333333333334,1,1,0,0,12,6,4,1,712.33331,95649.008,-10393.602,380738.91,224789.2,10181.095,0,1985.0852 +5852,7143,12746,-9,12745,12747,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-943.40009,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,1,712.33331,95649.008,-10393.602,380738.91,224789.2,10181.095,0,1985.0852 +5852,7143,12747,12745,-9,-9,1,1,33,1,1,0,1,1,-9,0,3,8.4663429,8.4579964,0,4,-1,63.877228,0,-9,-9,2021,12,0,35,35,1,0,0,15.471293,15.471293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.68,58.87,41.23,48.62,5,1,1,0,0,6,6,4,1,712.33331,95649.008,-10393.602,380738.91,224789.2,10181.095,0,1985.0852 +5853,7144,12748,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,2,0,4.9295697,4.924552,0,0,-1122.5747,-9,3,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2603054,0,30,32.46,-9,-9,3.333333333333333,1,1,0,1,0,2,2,0,358,-244603.14,-19007.904,0,0,0,0,1609.4452 +5853,7145,12749,-9,12748,-9,1,0,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-954.64612,-9,2,-9,2021,23,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.61,59.47,-9,-9,5,1,1,0,0,0,2,1,0,343,50397.496,0,0,0,0,0,0 +5854,7146,12750,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1106.017,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.59,29.33,-9,-9,10,1,1,0,0,10,5,1,1,356,134482.94,0,0,0,-564.86908,0,725.41376 +5854,7147,12751,-9,12750,-9,1,1,26,0,0,0,2,2,-9,0,3,7.5685382,7.5383534,0,0,0,-975.57098,0,2,-9,2021,23,9,20,15,1,9,0,7.4327655,7.4327655,0,0,0,0,0,0,0,0,1,1,0,0,0,33.61,54.91,-9,-9,1.666666666666667,1,1,0,0,3,5,3,1,298,23279.717,0,0,0,0,0,1312.9318 +5855,7148,12752,12753,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,7.6683731,7.1991992,0,2,-1,18.187838,0,-9,-9,2021,12,0,35,0,1,0,0,6.6833329,6.6833329,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.97,53.06,43.79,43.55,3.333333333333333,1,1,0,0,0,10,4,1,1477.5,1768596.8,715625.13,584122.81,0,0,0,3396.4363 +5855,7148,12753,12752,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,7.9783106,7.8398314,0,2,1,33.785835,0,1,2,2021,12,0,30,31,1,0,0,11.142396,11.142396,0,0,0,0,0,0,0,27,1,1,0,0,0,43.79,43.55,46.97,53.06,3.333333333333333,1,1,0,0,12,10,4,1,1477.5,1768596.8,715625.13,584122.81,0,0,0,3396.4363 +5855,7149,12754,-9,12753,12752,1,0,20,0,0,0,2,2,-9,0,3,0,5.0241051,5.4557724,0,0,-916.83002,1,1,1,2021,11,1,0,20,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6389418,0,30.6,62.02,-9,-9,1.666666666666667,1,1,0,0,1,10,2,1,1162,68786.93,0,0,0,0,1086.181,377.89365 +5855,7150,12755,-9,12753,12752,1,1,18,0,0,0,2,2,-9,1,3,0,0,0,0,0,-905.9903,1,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,1.666666666666667,1,1,0,0,11,10,2,1,698,0,0,0,0,0,0,231.60698 +5856,7151,12756,12757,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.7052956,8.427269,0,22,7,-49.760815,0,2,1,2021,17,6,32,42,1,6,0,21.279249,21.279249,0,0,0,0,0,0,0,0,0,0,0,0,0,43.84,47.84,52.75,50.49,3.333333333333333,2,3,0,0,12,10,4,1,759.5,1715196.3,882312.88,650772.44,0,0,0,2331.188 +5856,7151,12757,12756,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,0,0,0,22,-7,13.688524,0,1,1,2021,21,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.1255031,0,52.75,50.49,43.84,47.84,6.666666666666667,1,1,1,0,11,10,4,1,759.5,1715196.3,882312.88,650772.44,0,0,0,2331.188 +5857,7152,12758,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.70331,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,42.85,43.05,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,552,5687.4604,0,0,0,0,2934.0618,583.88336 +5857,7153,12759,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,4,0,0,0,0,0,-942.30377,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,11,1,0,1800,48392.523,0,0,0,0,0,974.62726 +5858,7154,12760,12761,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.824811,5.4369087,48,-1,29.43961,0,-9,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4711366,5.6322722,52.69,48.71,62.39,56.71,8.333333333333334,1,1,0,0,0,8,3,1,982,956635.81,631919.88,233938.06,0,0,0,4762.835 +5858,7154,12761,12760,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,8.3252983,8.1258812,48,1,-207.53668,0,-9,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0276818,7.8329086,62.39,56.71,52.69,48.71,10,1,1,0,0,0,8,3,1,982,956635.81,631919.88,233938.06,0,0,0,4762.835 +5859,7155,12762,12765,-9,-9,1,1,54,1,2,0,3,3,-9,0,2,8.5320482,8.3330326,0,19,9,55.003521,0,3,3,2021,18,6,56,66,1,6,0,11.240781,11.240781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.03,57.05,33.51,56.37,3.333333333333333,1,1,0,0,9,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5859,7155,12763,-9,12765,12762,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.4011,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5859,7155,12764,-9,12765,12762,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-950.88855,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5859,7155,12765,12762,-9,-9,1,0,45,1,2,0,2,2,-9,1,3,7.8903351,7.9651642,0,19,0,-98.273422,0,1,1,2021,14,5,20,25,1,5,0,14.934278,14.934278,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.51,56.37,24.03,57.05,8.333333333333334,4,2,0,0,6,9,4,1,1087.25,901175.13,759845,205468.88,65667.008,1215.395,0,3729.8882 +5860,7156,12766,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1012.9331,0,3,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.74,43.48,-9,-9,8.333333333333334,1,1,1,0,1,13,2,0,524,239232.06,0,273319.09,8202.3252,0,0,1163.1239 +5861,7157,12767,12768,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,57,-3,8.6853294,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.61,31.53,61.28,35.65,8.333333333333334,2,3,0,0,0,7,2,1,942.5,-2757.3281,76922.602,0,0,0,0,1814.1895 +5861,7157,12768,12767,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,6.6725631,6.4284725,57,3,-41.941269,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5210829,61.28,35.65,55.61,31.53,8.333333333333334,2,3,0,0,0,7,2,1,942.5,-2757.3281,76922.602,0,0,0,0,1814.1895 +5862,7158,12769,-9,12773,12771,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-891.53925,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12770,-9,12773,12771,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.72229,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12771,12773,-9,-9,1,1,44,1,3,0,1,1,-9,0,4,8.19382,8.0046415,0,10,4,88.167427,0,-9,2,2021,7,1,40,16,1,1,0,8.3504419,8.3504419,0,0,.05,0,0,0,0,0,1,1,0,0,0,47.89,46.76,58.33,44.69,8.333333333333334,3,4,0,0,2,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12772,-9,12773,12771,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.4504,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5862,7158,12773,12771,-9,-9,1,0,40,1,3,0,1,1,-9,0,3,0,0,0,10,-4,66.662544,0,3,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.33,44.69,47.89,46.76,6.666666666666667,3,4,0,0,2,7,2,0,955.79999,270944.66,-34768.305,255605.41,73623.5,0,0,3849.115 +5863,7159,12774,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,8.2841663,8.1661129,0,0,-1084.4769,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.2895679,61.43,48.88,-9,-9,10,1,1,0,0,0,5,4,1,749,572848.69,0,358728.47,0,0,0,2358.7195 +5864,7160,12775,-9,12776,12778,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.5424,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5864,7160,12776,12778,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.9960952,7.9387784,5.4316406,14,-2,118.61311,0,2,2,2021,6,0,36,1,1,0,0,11.239055,11.239055,0,0,0,0,0,0,0,0,1,1,0,4.953783,0,60.12,54.8,37.11,55.92,8.333333333333334,1,1,0,0,10,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5864,7160,12777,-9,12776,12778,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.75439,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5864,7160,12778,12776,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.4474325,8.6981335,6.9543157,14,2,145.36494,-9,2,2,2021,13,1,43,0,1,1,0,13.609065,13.609065,.05,.05,.05,0,0,0,0,0,1,1,0,7.8389411,0,37.11,55.92,60.12,54.8,5,1,1,0,0,10,10,4,1,348.25,250579.64,116633.85,203678.63,104557.27,6941.7349,8145.8906,3878.0364 +5865,7161,12779,-9,12781,12780,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1036.3291,-9,2,3,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,0,9,4,1,690.33331,869349.25,430752,294048.81,208.61784,17894.355,4651.8013,3230.7668 +5865,7161,12780,12781,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.662941,8.2150354,0,9,2,-58.975983,0,-9,-9,2021,11,0,35,43,1,0,0,15.216755,15.216755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,52.45,41.95,10,1,1,0,0,14,9,4,1,690.33331,869349.25,430752,294048.81,208.61784,17894.355,4651.8013,3230.7668 +5865,7161,12781,12780,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5298953,7.4972486,0,9,-2,-233.94157,0,-9,2,2021,12,0,23,24,1,0,0,10.789919,10.789919,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.45,41.95,52.91,55.33,8.333333333333334,1,1,0,0,10,9,4,1,690.33331,869349.25,430752,294048.81,208.61784,17894.355,4651.8013,3230.7668 +5866,7162,12782,12783,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,5.3452377,5.6968784,11,4,44.624207,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.3948236,56.34,40.63,53.63,29.98,8.333333333333334,1,1,0,0,0,9,2,1,869.5,190269.25,196669.88,110235.27,0,0,0,813.51941 +5866,7162,12783,12782,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,0,0,11,-4,-92.729774,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,29.98,56.34,40.63,8.333333333333334,1,1,0,0,0,9,2,1,869.5,190269.25,196669.88,110235.27,0,0,0,813.51941 +5867,7163,12784,-9,12787,12786,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.18695,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5867,7163,12785,-9,12787,12786,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1022.5114,-9,2,1,2021,24,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9033793,0,36.37,60.23,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5867,7163,12786,12787,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,8.8614864,8.602047,0,26,5,95.366119,0,2,2,2021,6,0,30,30,1,0,0,28.064209,28.064209,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5867,7163,12787,12786,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.1348181,8.2703009,0,26,-5,-39.56789,0,2,2,2021,7,0,48,75,1,0,0,9.4831543,9.4831543,0,0,0,0,0,0,0,0,1,1,0,6.6640568,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,9,9,4,1,350.5,2018942.3,145329.94,780009.19,52582.762,0,0,4851.3184 +5868,7164,12788,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,5.4248719,5.2335148,0,0,-991.51898,0,-9,-9,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1997938,5.5062809,31.01,21.33,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,750,61543.676,-2231.4966,0,0,0,0,340.11975 +5869,7165,12789,12790,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.3688269,9.5072908,0,10,0,-118.22322,0,-9,-9,2021,6,0,40,40,1,0,0,31.478449,31.478449,.05,.05,.05,0,0,0,0,0,0,0,0,7.9373388,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,12,9,5,1,212,1138231.5,162487.06,499362.72,0,0,0,9462.248 +5869,7165,12790,12789,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.3179903,9.4831896,6.1433368,20,0,-85.484818,0,1,2,2021,5,1,16,20,1,1,0,69.297646,69.297646,0,0,.05,0,0,0,0,7,0,0,0,7.7324004,6.4981494,62.39,56.71,57.16,56.15,10,1,1,0,0,12,9,5,1,212,1138231.5,162487.06,499362.72,0,0,0,9462.248 +5870,7166,12791,12792,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.3798633,7.7541938,0,7,1,-51.443699,0,-9,-9,2021,13,1,24,20,1,1,0,7.4921436,7.4921436,.05,.05,0,0,0,0,0,0,0,0,0,.12837923,0,32.83,45.72,55.34,54.26,6.666666666666667,1,1,0,0,6,9,4,1,1364,38238.152,15486.137,352845.44,271142.5,0,0,2763.2615 +5870,7166,12792,12791,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.5214319,8.5414,0,7,-1,25.681595,0,-9,-9,2021,8,0,43,40,1,0,0,12.548488,12.548488,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,32.83,45.72,10,1,1,0,0,10,9,4,1,1364,38238.152,15486.137,352845.44,271142.5,0,0,2763.2615 +5871,7167,12793,12794,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,5,-18,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.55,46.23,47.07,53.97,5,1,1,1,1,5,10,1,0,898,208899.66,35168.906,303663.09,0,0,0,1333.0365 +5871,7167,12794,12793,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,5,18,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.07,53.97,47.55,46.23,5,1,1,0,1,1,10,1,0,898,208899.66,35168.906,303663.09,0,0,0,1333.0365 +5872,7168,12795,12796,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,7.8789148,8.0910597,0,24,3,49.339279,0,3,3,2021,6,0,40,42,1,0,0,8.8550978,8.8550978,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,63.53,53.47,44.67,35.01,8.333333333333334,2,3,0,0,8,8,4,1,1904.5,199093.56,23594.68,174766.72,137536.41,0,0,2202.5598 +5872,7168,12796,12795,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.5177612,7.5709729,0,24,-3,-127.35621,0,3,2,2021,20,6,20,20,1,6,0,11.378249,11.378249,0,0,0,0,0,0,0,0,1,1,0,1.7852117,0,44.67,35.01,63.53,53.47,8.333333333333334,2,3,0,0,8,8,4,1,1904.5,199093.56,23594.68,174766.72,137536.41,0,0,2202.5598 +5872,7169,12797,-9,12796,12795,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-957.60193,-9,2,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.34,60.31,-9,-9,0,2,3,0,0,0,8,1,1,294,-111132.59,0,0,0,0,0,0 +5873,7170,12798,12799,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.1247072,7.7189393,36,2,45.669998,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,6.3788786,8.1429682,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,1,3,1,1139.5,1040746.5,678175.38,288542.44,0,0,0,1885.3291 +5873,7170,12799,12798,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.1431394,4.7624507,36,-2,23.818789,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2575703,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,1139.5,1040746.5,678175.38,288542.44,0,0,0,1885.3291 +5874,7171,12800,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,8.1223612,8.4623041,0,0,0,-921.34644,0,2,2,2021,9,0,39,37,1,0,0,14.071778,14.071778,0,0,0,0,0,0,0,0,0,0,0,3.9295313,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,309,87531.672,0,0,0,3412.9592,0,1270.2861 +5875,7172,12801,12803,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.0995932,9.3639841,0,8,4,-83.153763,0,-9,-9,2021,6,0,38,38,1,0,0,36.955254,36.955254,.05,.05,.05,0,0,0,0,0,0,0,0,1.8920391,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,9,11,5,1,1198,2934556,667606.13,1238613.5,0,0,0,12306.882 +5875,7172,12802,-9,12803,12801,1,1,17,0,1,0,2,2,1,0,5,0,4.7147088,4.587945,0,0,-1052.5345,-9,1,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7233787,0,59.43,58.05,-9,-9,10,1,1,1,0,0,11,5,1,1198,2934556,667606.13,1238613.5,0,0,0,12306.882 +5875,7172,12803,12801,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,9.7724791,9.6377487,0,28,-4,25.810904,0,1,1,2021,9,1,46,50,1,1,0,40.912788,40.912788,0,0,.05,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,9,11,5,1,1198,2934556,667606.13,1238613.5,0,0,0,12306.882 +5875,7173,12804,-9,12803,12801,1,1,19,0,1,0,2,2,1,0,5,6.6080451,6.4393053,0,0,0,-1002.6772,-9,1,1,2021,6,0,40,0,1,0,1,2.5369668,2.5369668,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,4,11,2,1,941,0,0,0,0,0,0,-296.75543 +5876,7174,12805,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1078.485,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,.36608386,0,0,1,1,0,0,0,38.24,25.76,-9,-9,5,1,1,0,0,0,4,1,0,596,95018.227,0,128258.02,0,0,0,1832.7438 +5876,7174,12806,-9,-9,12805,1,0,16,0,0,1,2,0,-9,0,3,0,0,0,0,0,-925.78766,-9,-9,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,23.43,62.51,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,596,95018.227,0,128258.02,0,0,0,1832.7438 +5877,7175,12807,12809,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.7158232,8.4095345,0,12,0,-120.58969,0,1,1,2021,14,3,38,37,1,3,0,16.478827,16.478827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,51.49,57.57,8.333333333333334,1,1,0,0,12,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5877,7175,12808,-9,12809,12807,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.8562,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5877,7175,12809,12807,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.9274535,8.0970297,0,12,0,-158.15009,0,-9,-9,2021,7,0,30,29,1,0,0,13.394282,13.394282,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.49,57.57,58.32,50.22,8.333333333333334,1,1,0,0,10,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5877,7175,12810,-9,12809,12807,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.39594,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,545.75,147752.14,63591.973,197216.63,151645.13,970.54675,0,3184.134 +5878,7176,12811,12812,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,7.2693806,7.4971075,0,4,2,39.236675,0,-9,-9,2021,6,0,25,21,1,0,0,6.1936817,6.1936817,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,35.96,53.04,6.666666666666667,1,1,0,0,3,12,4,0,172,17751.168,-31583.855,115999.17,134572.47,8138.0454,0,2527.8125 +5878,7176,12812,12811,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.4673195,8.1738939,0,4,-2,-81.723953,0,-9,-9,2021,23,11,38,34,1,11,0,12.292529,12.292529,.05,.05,0,0,0,0,0,7,0,0,0,0,0,35.96,53.04,62.39,56.71,3.333333333333333,1,1,0,0,7,12,4,0,172,17751.168,-31583.855,115999.17,134572.47,8138.0454,0,2527.8125 +5879,7177,12813,-9,12816,12814,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.8342,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5879,7177,12814,12816,-9,-9,1,1,40,1,2,0,2,2,-9,0,3,0,0,0,5,13,-59.148655,0,-9,-9,2021,17,5,0,17,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.59,46.91,50.9,51.17,6.666666666666667,2,3,1,0,1,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5879,7177,12815,-9,12816,12814,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.7081,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5879,7177,12816,12814,-9,-9,1,0,27,1,2,0,2,2,-9,0,4,7.7972021,7.727066,0,5,-13,-2.0550635,0,-9,-9,2021,6,0,30,24,1,0,0,8.1160765,8.1160765,0,0,0,0,0,0,0,0,1,1,0,0,0,50.9,51.17,39.59,46.91,8.333333333333334,2,3,0,0,7,6,2,1,420,67989.266,0,0,0,0,0,2009.9022 +5880,7178,12817,-9,12818,12820,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1116.7279,-9,2,3,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.06,55.03,-9,-9,5,2,3,0,0,1,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12818,12820,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.3458872,6.6623936,0,25,-5,23.737822,0,2,2,2021,11,0,6,5,1,0,0,17.934618,17.934618,0,0,0,0,0,0,0,2,1,1,0,0,0,54.96,53.17,46.92,43.44,8.333333333333334,2,3,0,0,4,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12819,-9,12818,12820,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.88226,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12820,12818,-9,-9,1,1,47,0,2,0,3,3,-9,0,2,7.2156162,7.6740851,0,25,5,-30.98617,0,3,3,2021,19,7,30,30,1,7,0,7.7372365,7.7372365,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,43.44,54.96,53.17,3.333333333333333,2,3,0,0,11,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7178,12821,-9,12818,12820,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1181.0682,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,0,2386,-5615.3433,0,0,0,0,0,2882.718 +5880,7179,12822,12823,-9,-9,1,0,24,0,2,0,1,1,-9,0,4,8.2573404,7.7174873,0,1,2,-160.60609,-9,-9,-9,2021,8,0,38,0,1,0,0,11.337319,11.337319,0,0,0,0,0,0,0,0,1,1,0,2.6587768,0,51.83,57.2,40.46,51.25,8.333333333333334,2,3,0,0,3,6,3,0,680,-45512.055,97947.875,94333.266,85846.328,0,392.23547,2448.104 +5880,7179,12823,12822,12818,12820,1,1,22,0,2,0,2,2,-9,0,4,7.3701053,7.3775368,0,1,-2,-86.96032,0,2,2,2021,15,2,18,24,1,2,0,10.372423,10.372423,0,0,.05,0,0,0,0,0,1,1,0,0,0,40.46,51.25,51.83,57.2,5,2,3,0,0,6,6,3,0,680,-45512.055,97947.875,94333.266,85846.328,0,392.23547,2448.104 +5881,7180,12824,12825,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.4695692,8.461628,0,28,-3,-45.214092,0,3,2,2021,10,1,58,60,1,1,0,7.2035098,7.2035098,0,0,0,0,0,0,0,7,0,0,0,7.9109507,0,57.16,56.15,56.32,48.68,8.333333333333334,1,1,0,0,9,9,4,1,1879.5,1336103.8,1044972.1,359689.22,0,0,0,3736.5452 +5881,7180,12825,12824,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,6.2329221,5.9998436,0,28,3,-87.313744,0,2,2,2021,9,0,42,45,1,0,0,1.5019585,1.5019585,.05,.05,0,0,0,0,0,14.5,0,0,0,5.9409623,0,56.32,48.68,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,1879.5,1336103.8,1044972.1,359689.22,0,0,0,3736.5452 +5882,7181,12826,-9,12828,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-905.49774,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12827,-9,12828,-9,1,1,17,0,3,0,3,3,1,0,5,0,0,0,0,0,-972.97241,-9,2,-9,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.34,67.01000000000001,-9,-9,10,1,1,1,1,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12828,12830,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,6.9827619,6.9411097,5.4804969,4,-5,34.720612,0,2,2,2021,16,4,17,17,1,4,0,5.0921082,5.0921082,0,0,0,0,0,0,0,0,1,1,0,4.9874582,0,46.08,57.2,58.47,31.46,6.666666666666667,1,1,0,0,3,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12829,-9,12828,-9,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1070.1263,-9,2,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12830,12828,-9,-9,1,1,41,0,3,0,2,2,-9,0,2,8.5807695,8.6593342,0,4,5,104.84056,0,-9,-9,2021,9,0,37,41,1,0,0,17.619267,17.619267,0,0,0,0,0,0,0,0,1,1,0,0,0,58.47,31.46,46.08,57.2,8.333333333333334,1,1,0,1,12,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5882,7181,12831,-9,12828,12830,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.24072,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,774,-34859.84,0,0,0,4024.5725,171.47713,3078.4395 +5883,7182,12832,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.0774727,8.4699678,0,0,-1037.7954,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2989855,8.1735096,50,47,-9,-9,7,1,1,0,0,0,12,4,1,1227,764624.31,558734.75,379890.78,0,3267.4453,0,1318.8108 +5884,7183,12833,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.8552418,8.5834026,0,0,0,-865.59637,0,-9,3,2021,8,0,50,50,1,0,0,11.610582,11.610582,0,0,0,0,0,0,0,2,0,0,0,0,0,55.69,43.19,-9,-9,6.666666666666667,3,4,0,1,10,8,5,1,467,780311.44,41881.48,879229.31,62458.023,0,0,2596.8774 +5885,7184,12834,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7883682,7.9310694,0,0,0,-1101.069,0,3,2,2021,11,1,38,35,1,1,0,7.8790684,7.8790684,.05,.05,0,0,0,0,0,0,0,0,0,1.1651165,0,50.2,55.41,-9,-9,8.333333333333334,1,1,0,0,10,1,3,1,864,264373.81,43251.313,52596.086,0,0,0,828.38019 +5886,7185,12835,-9,12837,12839,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.9731,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12836,-9,12837,12839,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.6651,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12837,12839,-9,-9,1,0,31,0,3,0,2,2,-9,1,3,0,0,0,9,-5,0,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,33.82,53.21,32.04,53.19,3.333333333333333,1,1,0,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12838,-9,12837,12839,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.55835,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5886,7185,12839,12837,-9,-9,1,1,36,0,3,0,2,2,-9,1,2,0,0,0,9,5,0,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,32.04,53.19,33.82,53.21,5,1,1,1,0,5,6,2,0,456.60001,23671.965,79473.516,0,0,0,0,3725.7935 +5887,7186,12840,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,7.7440281,7.9085126,0,0,0,-1100.818,0,-9,-9,2021,22,7,38,37,1,7,0,7.0005546,7.0005546,0,0,0,0,0,0,0,2,0,0,0,0,0,33.07,41.95,-9,-9,5,1,1,0,1,13,9,3,0,1293,67807.422,-47060.91,0,0,0,0,1777.8539 +5888,7187,12841,-9,-9,-9,1,0,27,0,3,0,1,1,-9,0,2,7.1540046,7.2441564,0,0,0,-1056.4061,0,2,-9,2021,13,2,20,20,1,2,1,6.2042174,6.2042174,0,0,0,0,0,0,0,7,1,1,0,0,0,42.11,29.55,-9,-9,6.666666666666667,3,4,0,0,6,6,3,0,744,79817.125,0,0,0,0,0,1113.6096 +5889,7188,12842,12843,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.798986,8.4608116,0,29,-8,-47.26218,-9,2,3,2021,6,0,25,0,1,0,0,16.448999,16.448999,0,0,0,0,0,0,0,0,0,0,0,.63141853,0,57.16,56.15,58.15,52.91,6.666666666666667,1,1,0,0,10,12,4,1,661,17294.129,-62130.574,0,0,10584.971,-328.12396,2134.699 +5889,7188,12843,12842,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.2587457,7.3938274,0,29,8,-42.826107,-9,2,2,2021,6,0,80,0,1,0,0,1.7338018,1.7338018,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,10,12,4,1,661,17294.129,-62130.574,0,0,10584.971,-328.12396,2134.699 +5889,7189,12844,-9,12842,12843,1,1,24,0,0,0,2,2,-9,0,4,8.4990559,8.0516768,0,0,0,-1096.2308,-9,2,2,2021,7,0,44,0,1,0,1,10.43048,10.43048,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,57,-163667.48,15279.614,54826.191,96586.875,6993.6694,0,2148.8035 +5890,7190,12845,12848,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.7030754,8.4736814,0,4,-1,20.628262,0,2,-9,2021,8,2,48,36,1,2,0,16.83197,16.83197,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,34.75,65,8.333333333333334,3,4,0,0,14,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5890,7190,12846,-9,12848,12845,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1145.4631,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5890,7190,12847,-9,12848,12845,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.18945,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5890,7190,12848,12845,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.2243776,8.3073788,0,3,1,-105.93469,-9,-9,-9,2021,17,4,33,0,1,4,0,13.348044,13.348044,.05,.05,0,0,0,0,0,0,1,1,0,1.1282704,0,34.75,65,52.23,55.6,8.333333333333334,3,4,0,1,12,8,4,1,318,330035.06,139522.81,331785,222781.98,17063.105,0,3483.7778 +5891,7191,12849,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,3,8.7190428,8.829567,0,4,-18,93.863678,0,2,3,2021,14,2,45,45,1,2,0,16.055546,16.055546,.05,.05,0,0,0,0,0,0,0,0,0,7.8410158,0,50.03,52.62,59.53,56.44,3.333333333333333,2,3,0,0,10,10,5,1,293,-118241.94,9653.3955,0,0,0,0,2765.0273 +5891,7192,12850,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.6609678,9.4923887,0,4,18,-49.049549,0,-9,-9,2021,6,0,40,40,1,0,0,41.497932,41.497932,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,50.03,52.62,8.333333333333334,1,1,0,0,7,10,5,1,1415,455809.69,406555.84,245750.69,177393.31,1462.4987,1405.1001,4784.6309 +5892,7193,12851,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.8874855,7.7566943,0,0,-1113.7609,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.2999229,8.0529766,44.19,58.01,-9,-9,5,1,1,0,0,0,9,4,1,1004,1112006.9,381264.09,470731.56,0,0,0,6908.5122 +5893,7194,12852,12853,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,9.2914658,9.3513298,0,9,3,-47.420341,0,2,1,2021,13,2,50,40,1,2,0,23.492609,23.492609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.02,42.12,54.2,57.49,8.333333333333334,2,3,0,0,7,6,5,0,984,416561.25,-18223.457,257500.47,25723.785,6029.4609,0,5372.3521 +5893,7194,12853,12852,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.7272358,8.5724764,0,9,-3,62.9557,0,2,1,2021,10,1,35,45,1,1,0,20.086792,20.086792,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,58.02,42.12,8.333333333333334,2,3,0,0,5,6,5,0,984,416561.25,-18223.457,257500.47,25723.785,6029.4609,0,5372.3521 +5893,7194,12854,-9,12853,12852,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.5587,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,0,984,416561.25,-18223.457,257500.47,25723.785,6029.4609,0,5372.3521 +5894,7195,12855,12856,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,8.1322489,8.6821394,35,0,-38.026512,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2943692,8.5762291,51.24,58.84,56.18,53.85,8.333333333333334,1,1,0,0,0,9,5,1,861,2266242.3,754135,911125.38,0,0,0,5832.4268 +5894,7195,12856,12855,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.4951916,8.0889187,28,9,40.461029,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7265563,8.4105024,56.18,53.85,51.24,58.84,8.333333333333334,1,1,0,0,0,9,5,1,861,2266242.3,754135,911125.38,0,0,0,5832.4268 +5895,7196,12857,-9,12860,12858,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-931.90869,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5895,7196,12858,12860,-9,-9,1,1,47,1,2,0,2,2,-9,0,4,8.3377581,8.2825527,0,15,10,-50.623089,0,2,2,2021,4,0,48,44,1,0,0,10.975261,10.975261,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,57.16,56.15,44.08,41.97,10,1,1,0,0,9,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5895,7196,12859,-9,12860,12858,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.2842,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5895,7196,12860,12858,-9,-9,1,0,37,1,2,0,2,2,-9,1,3,7.177146,7.1224132,0,16,-10,-80.022659,0,3,-9,2021,10,0,22,21,1,0,0,8.9181423,8.9181423,0,0,0,0,0,0,0,27,1,1,0,0,0,44.08,41.97,57.16,56.15,8.333333333333334,1,1,0,0,9,4,3,1,1465.5,1468008,968235,157792.19,0,0,0,3068.6785 +5896,7197,12861,12862,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,8.0109549,7.3146472,10,4,73.490585,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8098589,7.2491689,52.54,54.24,58.88,40.91,8.333333333333334,1,1,0,0,0,10,2,1,698.5,699193.75,12132.871,604882.75,0,0,0,1583.7136 +5896,7197,12862,12861,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,10,-4,-196.31442,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.88,40.91,52.54,54.24,8.333333333333334,1,1,0,0,0,10,2,1,698.5,699193.75,12132.871,604882.75,0,0,0,1583.7136 +5897,7198,12863,-9,-9,-9,1,0,74,0,1,0,1,1,-9,0,3,0,8.4358435,8.4477425,0,0,-778.4519,-9,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,7.3541164,0,0,1,1,0,0,8.3428917,39.15,41.42,-9,-9,6.666666666666667,2,3,0,0,0,5,4,1,209,723131.25,515667.91,243155.97,0,0,0,3027.3481 +5897,7199,12864,12865,12863,-9,1,1,49,0,1,0,1,1,-9,0,3,9.2931871,9.1460886,0,7,3,1.6315818,0,1,-9,2021,18,6,50,50,1,6,0,21.597349,21.597349,.05,.05,0,0,0,0,0,0,1,1,0,8.7512445,0,32.71,49.9,38.5,44.29,3.333333333333333,2,3,0,0,15,5,5,1,419,868863,615286.88,175644.52,119610.63,0,0,5910.457 +5897,7199,12865,12864,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,7.8625708,7.8260274,0,7,-3,-83.316666,-9,-9,-9,2021,21,9,20,0,1,9,0,10.974672,10.974672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.5,44.29,32.71,49.9,5,2,3,0,0,15,5,5,1,419,868863,615286.88,175644.52,119610.63,0,0,5910.457 +5897,7200,12866,-9,12865,12864,1,0,19,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1101.4486,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,-9,-9,5,2,3,0,1,0,5,1,1,352,75807.406,0,0,0,0,0,0 +5898,7201,12867,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.0661173,8.0033875,0,0,0,-1057.7118,0,2,3,2021,6,0,50,45,1,0,0,7.3626523,7.3626523,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,5,4,0,324,-15348.534,0,0,0,0,0,1329.3881 +5899,7202,12868,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,6.7758169,7.7012019,7.4765687,0,0,-1110.5986,-9,2,2,2021,11,1,8,0,1,1,0,13.119464,13.119464,0,0,0,0,0,0,0,0,1,1,0,7.0075059,0,41.63,49.72,-9,-9,8.333333333333334,1,1,0,0,4,8,3,0,145,828463.44,372348.09,436062.56,4994.7603,0,0,506.50745 +5900,7203,12869,12871,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.35149,9.3938999,0,17,4,13.688006,0,2,3,2021,9,0,65,55,1,0,0,17.264635,17.264635,.05,.05,0,0,0,0,0,0,1,1,0,1.5461953,0,57.16,56.15,43.92,62.31,10,1,1,0,0,5,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5900,7203,12870,-9,12871,12869,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1103.7283,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5900,7203,12871,12869,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,9.139987,9.0778236,0,17,-4,60.248806,0,1,1,2021,10,0,50,56,1,0,0,20.121164,20.121164,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5900,7203,12872,-9,12871,12869,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.9119,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,1114,319526.59,100152.05,345243.56,306136.66,0,0,6247.624 +5901,7204,12873,12874,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,7,-1,0,0,2,1,2021,12,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.8333818,0,47.79,53.79,57.16,56.15,8.333333333333334,1,1,0,0,8,11,1,1,1809.5,-16678.023,113.17041,0,0,0,0,-598.26563 +5901,7204,12874,12873,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,0,0,7,1,0,0,1,3,2021,2,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.552362,0,57.16,56.15,47.79,53.79,8.333333333333334,1,1,0,0,7,11,1,1,1809.5,-16678.023,113.17041,0,0,0,0,-598.26563 +5902,7205,12875,12876,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.8869581,8.5323772,7.9285893,39,4,-86.020096,0,-9,-9,2021,8,0,23,20,1,0,0,17.517429,17.517429,.05,.05,0,0,0,0,0,0,1,1,0,5.1480308,7.5726643,55.76,52.64,61.04,39.41,8.333333333333334,1,1,0,0,11,5,4,1,1583.5,1536864,1417267.8,69842.023,4193.4434,0,3190.6157,3821.1011 +5902,7205,12876,12875,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.9823074,7.2180557,39,-4,30.278055,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1613431,6.8509974,61.04,39.41,55.76,52.64,10,1,1,0,0,4,5,4,1,1583.5,1536864,1417267.8,69842.023,4193.4434,0,3190.6157,3821.1011 +5903,7206,12877,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1039.0646,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2684112,0,54.63,58.83,-9,-9,10,1,1,0,0,8,12,2,1,1307,-82876.633,0,0,0,0,0,621.10156 +5904,7207,12878,12879,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,30,-4,-57.460381,0,3,3,2021,22,10,0,19,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8810322,0,31.64,45.11,31.32,45.47,3.333333333333333,1,1,0,0,14,9,4,1,313,1793457.3,996580.13,585253,0,0,0,2046.9388 +5904,7207,12879,12878,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.8170128,8.8509359,0,2,4,-33.747879,0,-9,-9,2021,30,11,47,40,1,11,0,14.658194,14.658194,0,0,0,0,0,0,0,2,1,1,0,1.4961454,0,31.32,45.47,31.64,45.11,5,1,1,0,0,12,9,4,1,313,1793457.3,996580.13,585253,0,0,0,2046.9388 +5905,7208,12880,12881,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.5824738,8.473526,0,18,-4,40.699409,0,2,2,2021,11,1,40,35,1,1,0,13.272381,13.272381,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.16,58.62,52,55,8.333333333333334,1,1,0,0,7,6,5,1,685,79928.203,217263.83,94434.422,78639.93,18107.77,11240.472,4148.7148 +5905,7208,12881,12880,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.7696199,8.3870144,0,18,4,101.85799,0,-9,-9,2021,9,0,38,38,1,1,0,18.005835,18.005835,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,46.16,58.62,8,1,1,0,0,1,6,5,1,685,79928.203,217263.83,94434.422,78639.93,18107.77,11240.472,4148.7148 +5905,7208,12882,-9,12880,12881,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.5028,-9,2,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,0,6,5,1,685,79928.203,217263.83,94434.422,78639.93,18107.77,11240.472,4148.7148 +5906,7209,12883,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.123436,8.4265509,0,0,0,-980.28119,0,2,3,2021,14,2,40,42,1,2,0,7.2646766,7.2646766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,6.666666666666667,1,1,0,0,7,6,4,1,706,39111.488,23828.426,0,0,0,7086.0054,1062.3278 +5907,7210,12884,12885,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.8442187,7.7700486,10,10,-108.1412,0,3,2,2021,10,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.856101,48.87,58.55,48.28,60.18,8.333333333333334,1,1,0,0,11,5,4,1,740,617647,470133.31,137045.69,0,0,0,3735.0005 +5907,7210,12885,12884,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.1166124,8.1500216,0,10,-10,-23.710724,0,3,3,2021,12,3,50,24,1,3,0,7.788415,7.788415,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.87,58.55,6.666666666666667,1,1,0,0,12,5,4,1,740,617647,470133.31,137045.69,0,0,0,3735.0005 +5908,7211,12886,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1048.9705,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.01,21.09,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,682,90149.469,0,0,0,0,0,1576.0491 +5909,7212,12887,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.2634664,7.5711894,0,0,0,-1039.49,0,-9,-9,2021,7,1,25,25,1,1,0,8.9727173,8.9727173,0,0,0,0,0,0,0,0,0,0,0,.9604938,0,55.68,54.24,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,606,98902.078,126361.12,361548.47,11437.915,0,0,1446.8796 +5910,7213,12888,12889,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,7.4882045,7.5082088,5.0279808,33,-6,121.91489,0,3,3,2021,11,0,20,20,1,0,0,10.31036,10.31036,0,0,0,0,0,0,0,0,1,1,0,6.5846043,5.6436429,57.16,56.15,53,47,8.333333333333334,1,1,0,0,10,9,3,1,771,954818,641515.56,223664.73,0,0,0,1914.897 +5910,7213,12889,12888,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.1170568,5.8713412,28,6,-87.036705,0,3,3,2021,8,0,0,26,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9077806,5.9401212,53,47,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,771,954818,641515.56,223664.73,0,0,0,1914.897 +5910,7214,12890,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.4076815,8.3540602,0,0,0,-1055.6232,0,2,2,2021,10,1,60,60,1,1,0,9.4110317,9.4110317,0,0,0,0,0,0,0,0,1,1,0,.81038183,0,56.19,46.16,-9,-9,5,1,1,0,0,10,9,4,1,229,440783.59,133403.44,336063.47,78777.93,0,0,995.09552 +5911,7215,12891,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,6.9688244,6.9409471,0,0,0,-964.07111,0,-9,-9,2021,7,0,20,43,1,0,0,6.9617972,6.9617972,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,-9,-9,10,1,1,0,0,3,11,2,0,214,-101652.49,0,0,0,11171.376,0,626.34888 +5911,7216,12892,12893,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,3,-27.877314,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,1.6120851,0,0,1,1,0,0,0,56.67,26.59,39.69,62.39,8.333333333333334,1,1,0,0,0,11,2,0,436.5,479223.63,219184.59,294549.5,0,0,0,1392.7472 +5911,7216,12893,12892,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,7.0437822,6.947588,8,-3,118.79147,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0027728,39.69,62.39,56.67,26.59,0,1,1,0,0,9,11,2,0,436.5,479223.63,219184.59,294549.5,0,0,0,1392.7472 +5912,7217,12894,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,5.686976,6.3900957,0,0,-907.71887,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9617043,49,48,-9,-9,7,2,3,0,1,0,2,2,1,1451,1081853.9,50320.855,452985.16,0,0,0,201.56799 +5912,7218,12895,-9,-9,-9,1,1,42,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1050.3694,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,16.04,23.99,-9,-9,0,2,3,1,1,0,2,1,1,469,257034.39,0,0,0,0,-56.434601,282.36087 +5913,7219,12896,-9,12897,12899,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.6116,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5913,7219,12897,12899,-9,-9,1,0,39,1,2,0,1,1,-9,0,5,8.8378983,8.4656343,0,10,-1,55.122459,0,2,2,2021,13,2,25,26,1,2,0,28.328093,28.328093,.05,.05,0,0,0,0,0,0,0,0,0,2.2384121,0,46.61,39.87,48.81,59.91,6.666666666666667,2,3,0,0,7,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5913,7219,12898,-9,12897,12899,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.16901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5913,7219,12899,12897,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.4474182,9.16399,0,10,1,-33.862591,0,1,1,2021,11,2,49,50,1,2,0,28.839985,28.839985,.05,.05,0,0,0,0,0,0,0,0,0,3.8496463,0,48.81,59.91,46.61,39.87,8.333333333333334,2,3,0,0,7,10,5,1,1244.5,1097657.8,851355.25,431161.5,325520.06,5344.7583,0,6789.4419 +5914,7220,12900,12901,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.322504,8.1059265,0,30,-6,41.171593,0,-9,-9,2021,16,5,36,66,1,5,0,10.547145,10.547145,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.85,61.26,59.22,31.99,8.333333333333334,1,1,0,0,10,7,5,1,958,646340.88,100684.34,344921.63,0,0,0,2724.5908 +5914,7220,12901,12900,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4539871,8.2787476,5.4771833,30,6,-23.376907,0,-9,-9,2021,10,0,55,35,1,0,0,10.079592,10.079592,.05,.05,0,0,0,0,0,0,1,0,1,5.966321,5.8637819,59.22,31.99,45.85,61.26,5,1,1,0,0,12,7,5,1,958,646340.88,100684.34,344921.63,0,0,0,2724.5908 +5914,7221,12902,-9,12900,12901,1,1,20,0,0,0,2,2,-9,0,4,8.0007534,7.7844362,0,0,0,-986.70691,0,2,2,2021,12,0,35,40,1,0,1,9.4745712,9.4745712,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.07,48.48,-9,-9,5,1,1,0,0,4,7,4,1,240,-92490.789,107400.47,0,0,0,132.76314,901.02606 +5914,7222,12903,12904,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,7.8137798,7.6442413,0,1,3,-20.217957,-9,-9,-9,2021,7,1,41,0,1,1,0,6.2148581,6.2148581,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.81,61.51,38.62,54.2,8.333333333333334,1,1,0,0,1,7,4,1,877.5,13534.219,-10187.045,0,0,3433.6685,0,3251.2778 +5914,7222,12904,12903,12900,12901,1,0,28,0,0,0,2,2,-9,0,2,8.6003218,8.3247395,0,1,-3,57.426758,0,2,2,2021,18,5,37,38,1,5,0,12.534135,12.534135,.05,.05,0,0,0,0,0,0,1,0,1,0,0,38.62,54.2,45.81,61.51,6.666666666666667,1,1,0,0,9,7,4,1,877.5,13534.219,-10187.045,0,0,3433.6685,0,3251.2778 +5915,7223,12905,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.640975,8.4095716,0,0,0,-1123.6747,0,2,2,2021,4,0,37,37,1,0,0,16.56208,16.56208,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,1878,129863.68,152442.45,76424.172,142707.47,0,0,2415.334 +5916,7224,12906,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.0509892,7.3322773,6.6149259,0,0,-1022.6402,0,2,2,2021,13,3,21,19,1,3,0,4.3404865,4.3404865,0,0,0,0,0,0,0,0,1,0,1,7.1532717,0,34.94,53.21,-9,-9,8.333333333333334,1,1,0,0,4,10,2,1,3356,109781.39,0,0,0,0,0,1556.3359 +5917,7225,12907,12908,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7592454,6.6458082,7,1,-54.433041,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,7.31323,0,0,1,1,0,4.9861035,6.6526561,51.47,53.17,43.42,62.33,8.333333333333334,1,1,0,0,0,2,3,1,646.5,1068189.6,771023.75,197207.84,0,8591.5684,-691.73657,1870.953 +5917,7225,12908,12907,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.620966,7.1709547,7,-1,76.141457,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0037665,7.4737453,43.42,62.33,51.47,53.17,8.333333333333334,1,1,0,0,0,2,3,1,646.5,1068189.6,771023.75,197207.84,0,8591.5684,-691.73657,1870.953 +5918,7226,12909,-9,-9,-9,1,1,20,0,2,1,2,0,-9,0,5,0,5.6293778,5.836884,0,0,-865.94287,-9,1,1,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4381952,0,49.02,58.89,-9,-9,6.666666666666667,3,4,0,0,0,4,2,1,433,6684.9683,0,0,0,0,0,496.71527 +5918,7227,12910,-9,-9,-9,1,0,18,0,2,1,2,0,-9,0,3,0,3.4508858,3.5495265,0,0,-924.4339,-9,1,1,2021,16,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9970801,0,33.08,59.58,-9,-9,3.333333333333333,3,4,0,0,0,4,2,1,1389,13057.735,0,0,0,0,0,-117.77779 +5919,7228,12911,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1135.8046,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,852,53507.711,0,0,0,0,0,392.0202 +5920,7229,12912,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4580688,8.3118277,0,0,0,-1003.2066,-9,-9,-9,2021,11,0,50,0,1,0,0,10.104315,10.104315,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.97,53.97,-9,-9,5,1,1,0,0,8,4,5,0,731,-105263.98,8141.7554,0,0,1602.795,0,2197.2947 +5921,7230,12913,12915,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,8.9027185,9.0223322,0,6,5,-67.87896,0,-9,-9,2021,23,11,40,48,1,11,0,23.022198,23.022198,0,0,0,0,0,0,0,0,1,1,0,0,0,43.52,38.05,54.2,57.49,6.666666666666667,1,1,0,1,8,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12914,-9,12915,12913,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.0826,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12915,12913,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,7.0450511,6.8011613,0,6,-5,75.360405,0,-9,-9,2021,10,0,33,38,1,0,0,4.0831556,4.0831556,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,43.52,38.05,8.333333333333334,1,1,0,0,3,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12916,-9,12915,12913,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-980.02527,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7230,12917,-9,12915,12913,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.6983,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,653,218750.83,3938.2537,279438.97,94436.93,0,0,3720.564 +5921,7231,12918,-9,-9,-9,1,0,79,0,3,0,3,3,-9,0,3,0,6.4651179,6.319757,0,0,-1047.0333,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,25.672647,0,0,1,1,0,3.8327873,6.4757843,52,45,-9,-9,8,1,1,0,0,0,9,2,1,668,434091.94,190273.08,394455.63,0,2865.2476,947.99823,1403.9373 +5922,7232,12919,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2740202,7.9439073,0,0,-1093.7382,0,1,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8433957,7.9831252,51.83,57.2,-9,-9,10,1,1,0,0,0,12,4,1,349,1044740.6,549379.31,110688.55,0,0,0,2378.4282 +5923,7233,12920,12921,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.5352321,7.4460149,0,9,-6,-14.60463,0,-9,-9,2021,6,0,18,21,1,0,0,13.201049,13.201049,.05,.05,0,0,0,0,0,0,1,1,0,7.9204407,0,60.29,52.11,55.76,52.64,10,1,1,0,0,14,8,4,1,578,289322.13,-33453.578,262120.53,41217.227,0,0,3528.2737 +5923,7233,12921,12920,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.1079321,8.1712112,0,21,6,98.298325,0,-9,2,2021,9,0,43,45,1,0,0,9.842761,9.842761,.05,.05,0,0,0,0,0,0,1,1,0,4.0686769,0,55.76,52.64,60.29,52.11,8.333333333333334,1,1,0,0,9,8,4,1,578,289322.13,-33453.578,262120.53,41217.227,0,0,3528.2737 +5923,7233,12922,-9,12920,12921,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5962,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,578,289322.13,-33453.578,262120.53,41217.227,0,0,3528.2737 +5924,7234,12923,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.6508408,8.5630808,0,0,0,-1127.3822,0,2,2,2021,9,0,33,42,1,0,0,19.76745,19.76745,.05,.05,0,0,0,0,0,0,1,1,0,4.2791109,0,56.35,43.13,-9,-9,6.666666666666667,1,1,0,0,9,7,5,1,240,54778.441,140281.55,0,0,0,0,1287.9355 +5925,7235,12924,12925,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,0,0,0,2,3,0,0,2,1,2021,6,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.4628973,0,60.02,56.42,54.1,59.11,10,1,1,1,0,5,4,2,0,573,-119625.05,27509.563,0,0,0,0,-226.10567 +5925,7235,12925,12924,-9,-9,1,0,24,0,0,0,1,1,1,0,5,0,0,0,2,-3,0,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.2236391,0,54.1,59.11,60.02,56.42,8.333333333333334,1,1,1,0,1,4,2,0,573,-119625.05,27509.563,0,0,0,0,-226.10567 +5926,7236,12926,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.0283451,8.1159,0,0,0,-906.11261,-9,1,2,2021,11,0,40,0,1,0,0,8.4447441,8.4447441,.05,.05,0,0,0,0,0,0,0,0,0,6.8513236,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,222,24861.414,-36177.281,0,0,0,0,2025.6124 +5927,7237,12927,12928,-9,-9,1,1,41,0,1,0,2,2,-9,1,4,7.8317509,8.0366173,0,6,-8,64.729271,0,2,2,2021,14,2,46,40,1,2,0,7.7468185,7.7468185,0,0,0,0,0,0,0,0,1,1,0,0,0,47.38,57.75,50.97,29.49,8.333333333333334,1,1,0,0,7,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5927,7237,12928,12927,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.2640877,7.3974996,0,6,8,60.232754,0,2,2,2021,7,0,30,29,1,0,0,5.5072088,5.5072088,0,0,0,0,0,0,0,0,1,1,0,2.7290962,0,50.97,29.49,47.38,57.75,8.333333333333334,1,1,0,0,5,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5927,7237,12929,-9,12928,12927,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1032.9108,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.76710087,0,45.2,57.55,-9,-9,8.333333333333334,1,1,0,0,1,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5927,7237,12930,-9,12928,12927,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.93451,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,404.75,-108151.41,40593.816,233219.89,227885.02,286.11664,0,3771.4214 +5928,7238,12931,12932,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,9,0,-74.171997,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.12,19.76,53.93,23.19,3.333333333333333,1,1,0,0,0,11,2,0,671.5,479832.53,168153.17,201812.34,0,0,0,2743.0176 +5928,7238,12932,12931,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,6.491322,6.3954091,9,9,-33.499741,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,7.9448805,0,0,1,1,0,0,6.7119393,53.93,23.19,42.12,19.76,6.666666666666667,1,1,0,0,0,11,2,0,671.5,479832.53,168153.17,201812.34,0,0,0,2743.0176 +5929,7239,12933,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.9168215,8.9246626,0,0,0,-1097.0198,0,2,2,2021,7,0,37,43,1,0,0,32.525703,32.525703,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,239,6899056.5,6411718,228881.98,0,0,0,3205.9688 +5929,7240,12934,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,8.4325895,8.5756588,0,0,0,-992.73438,0,-9,-9,2021,15,2,37,37,1,2,0,15.597046,15.597046,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.28,69.3,-9,-9,3.333333333333333,1,1,0,0,4,5,5,1,783,50494.582,297234.19,0,0,4822.1841,1054.5653,1945.2614 +5930,7241,12935,12937,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,6.9922447,7.1137033,0,22,-7,6.6427002,0,3,2,2021,10,0,15,18,1,0,0,10.000461,10.000461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.79,58.34,49.29,54.59,5,2,3,0,0,10,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12936,-9,12935,12937,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-880.50586,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12937,12935,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,6.8039021,6.9255161,0,7,7,100.01321,-9,-9,-9,2021,14,2,70,0,1,2,0,1.8742378,1.8742378,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,34.79,58.34,3.333333333333333,2,3,0,1,10,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12938,-9,12935,12937,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.31293,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5930,7241,12939,-9,12935,12937,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-986.94214,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,770,98679.039,48642.777,0,0,7106.709,0,1996.0966 +5931,7242,12940,12941,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.3254757,7.6062493,12,-13,-17.839363,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8502045,43.35,52.88,36.12,48.42,5,4,2,0,0,8,4,4,1,451,1563643.5,961283.31,381900.13,0,2294.1299,0,2967.7261 +5931,7242,12941,12940,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6212234,8.1709347,39,13,87.88662,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0945644,36.12,48.42,43.35,52.88,8.333333333333334,1,1,0,0,8,4,4,1,451,1563643.5,961283.31,381900.13,0,2294.1299,0,2967.7261 +5931,7243,12942,-9,12940,12941,1,1,23,0,0,0,2,2,-9,0,3,0,5.1166153,4.7108655,0,0,-938.5813,0,1,1,2021,18,7,0,34,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8720226,0,24.32,60.54,-9,-9,3.333333333333333,4,2,0,0,2,4,2,1,325,-60459.992,0,0,0,0,0,671.50018 +5932,7244,12943,12944,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,8.6035585,8.3542633,10,0,-86.90242,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9377818,8.4684753,53,47,40.06,32.53,8,1,1,0,0,0,6,4,1,696,1163554,686617.44,343572.81,0,0,0,2852.5439 +5932,7244,12944,12943,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,10,0,-76.449905,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,16.946802,0,0,1,1,0,1.9148531,0,40.06,32.53,53,47,6.666666666666667,1,1,0,0,0,6,4,1,696,1163554,686617.44,343572.81,0,0,0,2852.5439 +5932,7245,12945,-9,12944,12943,1,1,47,0,0,0,2,2,-9,0,3,8.5132093,8.3562984,0,0,0,-1050.7568,0,2,2,2021,10,0,42,44,1,0,0,13.649648,13.649648,.05,.05,0,0,0,0,0,0,1,1,0,.39069936,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,11,6,4,1,573,495590.66,142977.19,53472.875,61207.414,0,0,1571.9526 +5933,7246,12946,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.9179406,4.8745313,0,0,-985.03137,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,14.658642,15.509806,127.97797,0,1,1,0,5.2093706,5.4809117,48.38,49.66,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,415,-55309.551,0,0,0,0,0,768.63086 +5933,7247,12947,-9,12946,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-935.72906,0,2,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.02,20.85,-9,-9,6.666666666666667,1,1,0,0,6,13,1,1,300,54097.777,125088.23,157996.27,84743.961,15374.673,0,112.73253 +5933,7248,12948,-9,12946,-9,1,0,47,0,0,0,2,2,-9,1,1,7.1878319,7.0840468,0,0,0,-984.89648,0,2,3,2021,30,12,27,27,1,12,0,5.4463177,5.4463177,.05,.05,0,0,0,0,0,7,1,1,0,0,0,23.01,37.17,-9,-9,0,1,1,0,1,8,13,3,1,591,117163.32,-116825.7,0,0,9480.8506,0,856.72571 +5934,7249,12949,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.5157194,8.117631,0,0,0,-965.7038,0,-9,-9,2021,5,0,45,40,1,0,0,9.7228508,9.7228508,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,15,7,5,1,534,501765.16,60676.145,291281.59,0,0,0,2089.5867 +5935,7250,12950,12951,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,0,0,0,36,-2,-51.306225,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,0,0,0,7.7684908,0,53.23,55.33,53,54,8.333333333333334,1,1,0,0,0,10,5,1,1298,2850669.5,1773879,686821.63,0,0,0,4207.6079 +5935,7250,12951,12950,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4699974,8.825139,7.8684478,9,2,89.473373,0,-9,-9,2021,9,0,40,20,1,1,0,11.840563,11.840563,0,0,0,0,0,0,0,0,0,0,0,0,7.7333469,53,54,53.23,55.33,8,1,1,0,0,1,10,5,1,1298,2850669.5,1773879,686821.63,0,0,0,4207.6079 +5936,7251,12952,12953,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,7.6373596,7.5805974,0,7,2,80.472832,0,2,2,2021,21,7,23,23,1,7,0,10.739018,10.739018,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.73,47.1,51.83,57.2,5,1,1,0,0,8,11,5,1,304.5,1211234.3,1211252.3,107714.97,94204.07,7526.8848,13239.908,2905.906 +5936,7251,12953,12952,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.9178276,8.810195,0,7,-2,132.42056,0,3,3,2021,7,0,60,50,1,0,0,14.137844,14.137844,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,36.73,47.1,5,1,1,0,0,8,11,5,1,304.5,1211234.3,1211252.3,107714.97,94204.07,7526.8848,13239.908,2905.906 +5937,7252,12954,12955,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,8.5353432,8.6249294,0,19,-1,54.272739,0,1,1,2021,9,0,38,43,1,0,0,20.219748,20.219748,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,54.21,51.96,8.333333333333334,1,1,0,0,11,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12955,12954,-9,-9,1,1,41,0,3,0,2,2,-9,0,4,8.9559832,9.1877518,0,19,1,29.057499,0,2,2,2021,10,0,50,45,1,0,0,21.286997,21.286997,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.21,51.96,44.02,60.7,8.333333333333334,1,1,0,0,11,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12956,-9,12954,12955,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.66003,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12957,-9,12954,12955,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.90411,-9,1,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5937,7252,12958,-9,12954,12955,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1067.2961,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,749.79999,550781.75,496137.63,209699.08,93790.594,0,0,6010.9668 +5938,7253,12959,12960,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,38,5,73.680168,0,2,2,2021,9,1,0,16,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.67,45.88,60.02,56.42,5,2,3,0,0,10,8,3,0,2567,98951.266,61338.578,0,0,0,0,976.90295 +5938,7253,12960,12959,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,7.5564427,7.8464789,0,38,-5,-133.51949,0,-9,1,2021,8,0,33,33,1,0,0,7.9276533,7.9276533,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,49.67,45.88,10,1,1,0,0,6,8,3,0,2567,98951.266,61338.578,0,0,0,0,976.90295 +5938,7254,12961,-9,12959,12960,1,1,32,0,0,0,1,1,-9,0,3,7.6030884,7.7307811,0,0,0,-1083.7979,0,2,1,2021,13,2,38,36,1,2,1,6.5996737,6.5996737,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.03,53.83,-9,-9,5,4,2,0,0,10,8,4,0,186,40361.992,73561.57,0,0,0,0,1516.9435 +5939,7255,12962,-9,-9,12964,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1030.4584,-9,-9,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,5,1,1123,151603.11,103144.29,0,0,0,0,3409.8401 +5939,7255,12963,-9,-9,12964,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.68604,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,1123,151603.11,103144.29,0,0,0,0,3409.8401 +5939,7255,12964,-9,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,9.2315779,9.5418711,0,0,0,-1085.7324,0,3,3,2021,6,0,40,45,1,0,0,28.105375,28.105375,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,1123,151603.11,103144.29,0,0,0,0,3409.8401 +5940,7256,12965,12968,-9,-9,1,1,29,2,2,0,2,2,-9,0,4,8.8393145,9.0616989,0,5,2,-113.20438,-9,-9,2,2021,7,0,48,0,1,0,0,19.08094,19.08094,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,46.08,57.2,10,4,2,0,0,9,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5940,7256,12966,-9,12968,12965,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.347,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5940,7256,12967,-9,12968,12965,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-907.20166,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5940,7256,12968,12965,-9,-9,1,0,27,2,2,0,1,1,-9,0,3,0,0,0,5,-2,-77.627129,0,-9,-9,2021,10,0,0,16,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,62.49,55.09,8.333333333333334,1,1,0,0,5,4,4,1,2172.25,148912.78,-32577.371,125317.51,96896.344,0,342.6181,2159.5715 +5941,7257,12969,-9,12971,12970,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.33948,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,569.33331,1148671.4,186787.81,427232.75,0,0,0,6340.5054 +5941,7257,12970,12971,-9,-9,1,1,61,0,1,0,1,1,-9,0,5,8.8471937,8.6082926,0,9,12,19.496099,0,-9,-9,2021,7,0,10,40,1,0,0,69.249916,69.249916,.05,.05,.05,0,0,0,0,0,1,1,0,3.1927247,0,58.05,54.52,51.83,57.2,0,1,1,0,0,8,9,5,1,569.33331,1148671.4,186787.81,427232.75,0,0,0,6340.5054 +5941,7257,12971,12970,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.9642758,8.8074198,8.0250759,25,-12,117.8297,0,2,1,2021,11,0,20,19,1,0,0,20.518658,20.518658,0,0,.05,0,0,0,0,0,1,1,0,6.6304827,8.6066761,51.83,57.2,58.05,54.52,6.666666666666667,1,1,0,0,11,9,5,1,569.33331,1148671.4,186787.81,427232.75,0,0,0,6340.5054 +5942,7258,12972,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1084.131,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,9,1,0,3147,384214,0,325379.34,0,0,0,875.04517 +5943,7259,12973,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.0227852,8.1400166,0,0,0,-985.9444,0,-9,-9,2021,9,1,40,48,1,1,0,9.4146404,9.4146404,0,0,0,0,0,0,0,0,0,0,0,0,0,48.26,47.91,-9,-9,6.666666666666667,1,1,0,1,7,1,4,0,423,61402.004,0,0,0,0,0,1348.8322 +5944,7260,12974,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5442042,7.5593929,0,0,-927.45081,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,27,1,1,0,4.1880012,7.8401833,57.27,35.61,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,309,1240384.1,327797.75,428250.53,0,0,0,1154.3397 +5945,7261,12975,12976,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.5127974,8.3159103,0,12,-2,66.800873,0,2,2,2021,7,0,64,30,1,0,0,8.1879883,8.1879883,0,0,0,0,0,0,0,2,0,0,0,7.6432271,0,51.73,58.82,60.52,53.2,8.333333333333334,1,1,0,0,10,8,5,1,735,3445110,590563.25,540409.75,0,0,0,9215.5781 +5945,7261,12976,12975,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.5351162,9.8585491,0,12,2,-14.014338,0,2,2,2021,7,0,55,55,1,0,0,27.326366,27.326366,0,0,0,0,0,0,0,0,0,0,0,5.479763,0,60.52,53.2,51.73,58.82,8.333333333333334,1,1,0,0,11,8,5,1,735,3445110,590563.25,540409.75,0,0,0,9215.5781 +5946,7262,12977,12978,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,9.2368813,9.3591242,0,7,3,10.355533,0,-9,-9,2021,7,0,35,40,1,0,0,35.233376,35.233376,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,42.63,35.75,8.333333333333334,1,1,0,0,10,8,5,1,1393,38931.246,41902.617,0,0,1254.5958,1483.3213,4356.4639 +5946,7262,12978,12977,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.2878094,8.0388269,0,7,-3,24.822031,0,2,2,2021,22,9,42,15,1,9,0,7.0875607,7.0875607,0,0,0,0,0,0,0,0,0,0,0,2.5857821,0,42.63,35.75,57.06,57.76,6.666666666666667,1,1,0,0,8,8,5,1,1393,38931.246,41902.617,0,0,1254.5958,1483.3213,4356.4639 +5947,7263,12979,-9,12980,12981,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.0731,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5947,7263,12980,12981,-9,-9,1,0,25,2,2,0,2,2,-9,0,5,6.9325037,6.9933124,3.2029371,4,-7,-90.170013,0,-9,-9,2021,17,6,16,12,1,6,0,8.819294,8.819294,.05,.05,0,0,0,0,0,0,1,1,0,2.9384198,0,46.06,60.24,51.24,58.84,6.666666666666667,1,1,0,0,3,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5947,7263,12981,12980,-9,-9,1,1,32,2,2,0,2,2,-9,0,4,8.4032288,8.3826456,0,4,7,-78.213524,0,2,2,2021,7,0,60,80,1,0,0,10.22388,10.22388,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.06,60.24,6.666666666666667,1,1,0,0,9,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5947,7263,12982,-9,12980,12981,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-862.11572,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,589.5,264988.69,167925.61,176985.38,145663.75,8381.2979,0,3088.9849 +5948,7264,12983,12984,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.5133457,7.3731165,7,-4,-6.7818589,0,3,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2076039,7.2154469,54.2,57.49,60.28,43.74,1.666666666666667,1,1,0,0,7,10,4,1,522,1051650.9,560856.38,485096.25,0,14116.191,0,3458.1807 +5948,7264,12984,12983,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,8.0008917,7.6173768,7,4,-118.64264,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5559292,8.0774593,60.28,43.74,54.2,57.49,8.333333333333334,1,1,0,0,9,10,4,1,522,1051650.9,560856.38,485096.25,0,14116.191,0,3458.1807 +5948,7265,12985,-9,12983,12984,1,1,47,0,0,0,1,1,-9,0,4,8.120882,8.4093046,0,0,0,-1033.8749,0,2,2,2021,6,0,50,43,1,0,0,8.4366598,8.4366598,0,0,.05,0,0,0,0,0,1,1,0,0,0,61.12,51.57,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,640,489890.28,119859.6,601402.75,273798.41,0,0,1084.3575 +5949,7266,12986,12987,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.1539516,5.8512354,53,-3,-57.911228,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3551652,5.585731,57.16,56.15,61.12,51.57,10,1,1,0,0,0,11,2,1,497,364972.09,201959.89,122003.38,0,3891.5996,0,2273.2261 +5949,7266,12987,12986,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.3495455,7.3721733,53,3,-19.206528,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2497125,61.12,51.57,57.16,56.15,10,1,1,0,0,0,11,2,1,497,364972.09,201959.89,122003.38,0,3891.5996,0,2273.2261 +5950,7267,12988,12989,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.6296749,8.3279657,0,7,-1,45.705872,0,2,3,2021,6,0,48,55,1,0,0,13.800451,13.800451,.05,.05,0,0,0,0,0,0,0,0,0,3.2642932,0,57.06,57.76,51.25,50.81,8.333333333333334,1,1,0,0,8,1,5,1,1332.5,251595.03,94567.523,76835.383,0,1037.8905,3289.064,3669.5825 +5950,7267,12989,12988,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1741886,8.2152596,0,7,1,-6.3063092,0,1,2,2021,12,2,35,35,1,2,0,16.167465,16.167465,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,50.81,57.06,57.76,6.666666666666667,1,1,0,0,8,1,5,1,1332.5,251595.03,94567.523,76835.383,0,1037.8905,3289.064,3669.5825 +5951,7268,12990,12991,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,8.272027,8.3071957,9,0,-24.07723,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2798033,52.33,34.34,50.75,39.21,8.333333333333334,1,1,0,0,0,13,4,1,789.5,1225002,903380,74472.68,0,0,0,4040.6895 +5951,7268,12991,12990,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,9,0,-87.042236,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,39.21,52.33,34.34,8.333333333333334,1,1,0,0,9,13,4,1,789.5,1225002,903380,74472.68,0,0,0,4040.6895 +5952,7269,12992,12993,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,7.8796244,8.1135302,0,1,2,-33.240643,-9,-9,-9,2021,10,2,39,0,1,2,0,10.312727,10.312727,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,43.42,62.33,8.333333333333334,1,1,0,0,3,5,4,1,308.5,11367.844,0,0,0,458.42673,0,2145.7146 +5952,7269,12993,12992,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.7860699,8.0262947,0,1,-2,26.280493,-9,-9,-9,2021,14,2,42,0,1,2,0,7.520359,7.520359,0,0,0,0,0,0,0,2,0,0,0,0,0,43.42,62.33,54.1,59.11,6.666666666666667,1,1,0,1,3,5,4,1,308.5,11367.844,0,0,0,458.42673,0,2145.7146 +5953,7270,12994,12995,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.8910174,6.4612408,48,-1,63.219017,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3573408,6.464509,45.97,51.9,56.86,50.75,0,1,1,0,0,0,9,2,1,620,480846.25,145522.7,279230.5,0,0,0,3126.7166 +5953,7270,12995,12994,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,2.0201101,2.011327,45,1,-89.557961,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.77566,2.0039794,56.86,50.75,45.97,51.9,8.333333333333334,1,1,0,0,8,9,2,1,620,480846.25,145522.7,279230.5,0,0,0,3126.7166 +5954,7271,12996,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.4485254,7.6276126,0,0,-996.09167,0,-9,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1068602,7.2589321,51.64,49.54,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,837,738043.94,269273.5,223275.91,0,0,0,4949.3047 +5955,7272,12997,12998,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.1020451,9.3798456,0,19,-1,87.59758,0,3,3,2021,6,0,38,38,1,0,0,28.85519,28.85519,.05,.05,0,0,0,0,0,0,0,0,0,8.1403112,0,58.75,51.28,49.92,44.62,8.333333333333334,2,3,0,0,8,12,5,1,549.5,896352.13,478553,334467.78,93764.648,8840.625,0,4982.5811 +5955,7272,12998,12997,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.2338085,8.2591562,0,19,1,-22.828451,0,2,2,2021,10,0,39,38,1,0,0,11.128041,11.128041,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.92,44.62,58.75,51.28,8.333333333333334,2,3,0,0,7,12,5,1,549.5,896352.13,478553,334467.78,93764.648,8840.625,0,4982.5811 +5956,7273,12999,13000,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,8.0148811,8.0642891,0,4,3,-65.599792,0,2,2,2021,6,0,42,40,1,0,0,6.857996,6.857996,0,0,0,0,0,0,0,2,1,0,1,.11249166,0,53.36,53.7,59.56,37.69,8.333333333333334,1,1,0,0,12,9,3,1,1055,86520.453,68341.93,0,0,0,0,834.79407 +5956,7273,13000,12999,-9,-9,1,0,36,1,1,0,2,2,-9,0,2,0,0,0,4,-3,155.83598,0,-9,-9,2021,7,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.56,37.69,53.36,53.7,8.333333333333334,1,1,0,0,3,9,3,1,1055,86520.453,68341.93,0,0,0,0,834.79407 +5956,7273,13001,-9,13000,12999,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.67181,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,1,1055,86520.453,68341.93,0,0,0,0,834.79407 +5957,7274,13002,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.1414318,7.0717282,0,0,-1000.6557,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7226411,7.116611,53,44,-9,-9,8,1,1,0,0,0,11,2,0,805,84851.789,25814.328,146678.44,0,0,0,1132.297 +5958,7275,13003,13004,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,6.927145,6.9456701,51,2,-20.634647,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.268095,53,46,51,46,8,2,3,0,0,7,4,3,1,1254.5,133888.98,5978.5518,143235.89,25980.305,0,0,2659.2424 +5958,7275,13004,13003,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.975986,6.4056001,51,-2,-42.574993,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.7623487,51,46,53,46,8,1,1,0,0,0,4,3,1,1254.5,133888.98,5978.5518,143235.89,25980.305,0,0,2659.2424 +5959,7276,13005,13007,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,7.6628046,7.7428503,0,2,5,-12.370837,0,2,2,2021,12,0,52,38,1,0,0,5.7788992,5.7788992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.27,55.41,46,58,5,1,1,0,0,8,4,3,0,318.33334,39654.734,-49381.582,0,0,8485.9492,0,1981.1622 +5959,7276,13006,-9,13007,13005,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.27081,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,3,0,318.33334,39654.734,-49381.582,0,0,8485.9492,0,1981.1622 +5959,7276,13007,13005,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,7.5881267,7.4125457,0,2,-5,.41186801,0,-9,-9,2021,12,0,33,24,1,2,0,6.0640278,6.0640278,.05,.05,0,0,0,0,0,0,1,1,0,2.6046073,0,46,58,47.27,55.41,7,4,1,0,0,1,4,3,0,318.33334,39654.734,-49381.582,0,0,8485.9492,0,1981.1622 +5960,7277,13008,13009,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.574501,7.46627,0,25,-7,-83.908142,0,2,2,2021,8,0,30,30,1,0,0,7.5915384,7.5915384,0,0,0,0,0,0,0,2,1,1,0,0,0,60.69,50.51,36.96,26.57,8.333333333333334,1,1,0,0,8,1,2,0,467.5,21017.109,0,-17318.902,47650.523,5496.3145,435.1123,947.40961 +5960,7277,13009,13008,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,0,0,25,7,-60.378437,0,3,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.96,26.57,60.69,50.51,0,1,1,1,1,0,1,2,0,467.5,21017.109,0,-17318.902,47650.523,5496.3145,435.1123,947.40961 +5961,7278,13010,13011,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,9.6092691,8.8602018,48,3,-66.978905,0,3,-9,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,1,0,7.7533913,0,0,1,1,0,9.098753,4.3077459,60.11,17.32,62.26,42.8,6.666666666666667,1,1,0,0,0,10,5,1,1211.5,1787621.8,1645731.4,185780.88,0,0,0,7248.8369 +5961,7278,13011,13010,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.874671,8.1967831,4.7185521,48,-3,142.63005,0,2,2,2021,10,1,31,38,1,1,0,9.9113483,9.9113483,0,0,0,0,0,0,0,2,1,1,0,4.4792371,4.9246883,62.26,42.8,60.11,17.32,8.333333333333334,1,1,0,0,14,10,5,1,1211.5,1787621.8,1645731.4,185780.88,0,0,0,7248.8369 +5962,7279,13012,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9744267,7.538012,0,0,0,-1027.2123,0,3,2,2021,18,6,39,52,1,6,0,8.6743536,8.6743536,.05,.05,0,0,0,0,0,7,1,1,0,0,0,31.17,58.5,-9,-9,3.333333333333333,1,1,0,0,11,12,4,0,761,86762.656,161116.45,0,0,52.920155,0,1149.5652 +5963,7280,13013,13014,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,5.931951,5.9063301,8,2,7.3652639,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6091237,5.8638167,60.47,41.03,54.79,55.86,8.333333333333334,1,1,0,0,1,7,4,1,406,2934496.8,1301708.5,832571.13,0,0,0,4197.1592 +5963,7280,13014,13013,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.6864481,8.8067884,8,-2,92.028389,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4845529,8.3502035,54.79,55.86,60.47,41.03,8.333333333333334,1,1,0,0,4,7,4,1,406,2934496.8,1301708.5,832571.13,0,0,0,4197.1592 +5964,7281,13015,13016,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.8080802,7.7660146,6,2,64.312805,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.511754,8.059886,37.93,56.64,51,52.08,6.666666666666667,1,1,0,0,0,4,4,1,1115,2777617.3,1360570.8,407093.53,0,0,0,4269.0181 +5964,7281,13016,13015,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.394309,8.2578859,6,-2,-74.444176,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.826591,8.3202887,51,52.08,37.93,56.64,8.333333333333334,1,1,0,0,0,4,4,1,1115,2777617.3,1360570.8,407093.53,0,0,0,4269.0181 +5965,7282,13017,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,5.514163,5.154604,0,0,-1084.7931,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,12.589614,0,0,1,1,0,3.9132359,5.1607919,29.02,23.4,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,694,163965.5,0,0,0,0,0,2049.9067 +5966,7283,13018,13019,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.5642462,8.395853,0,11,0,-71.740936,0,2,2,2021,10,1,40,69,1,1,0,16.295664,16.295664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,49.27,56.95,1.666666666666667,1,1,0,0,12,2,5,1,634.5,236173,225455.31,228943.06,158270.34,61127.055,0,2559.0305 +5966,7283,13019,13018,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.8230972,7.7060881,0,11,0,65.188217,-9,2,2,2021,12,2,28,0,1,2,0,5.9444361,5.9444361,.05,.05,0,0,0,0,0,0,0,0,0,3.5194106,0,49.27,56.95,51.24,58.84,8.333333333333334,1,1,0,0,12,2,5,1,634.5,236173,225455.31,228943.06,158270.34,61127.055,0,2559.0305 +5967,7284,13020,13023,-9,-9,1,1,44,0,2,0,2,2,-9,0,5,9.1124296,8.8369875,0,19,0,42.635246,0,2,2,2021,12,3,44,42,1,3,0,23.687857,23.687857,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.06,60.24,51.14,60.45,8.333333333333334,1,1,0,0,12,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5967,7284,13021,-9,13023,13020,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.92999,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5967,7284,13022,-9,13023,13020,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.7645,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5967,7284,13023,13020,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.7067146,8.3455095,0,19,0,-146.76015,0,2,3,2021,9,0,32,30,1,0,0,21.945854,21.945854,0,0,0,0,0,0,0,0,1,1,0,1.7959218,0,51.14,60.45,46.06,60.24,10,1,1,0,0,12,9,5,1,658,832740,145179.16,396229.31,0,0,0,4538.335 +5968,7285,13024,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,6.9066701,6.9151449,0,0,-966.28717,0,-9,-9,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,0,14.510838,0,14.5,1,1,0,0,6.8391886,43.85,27.32,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,433,477378.88,-13394.682,132046.36,0,0,0,1613.0284 +5968,7286,13025,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.1244268,8.3943052,0,0,0,-1046.4387,-9,-9,-9,2021,10,0,40,0,1,1,0,11.718309,11.718309,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,2,4,1,143,-163278.61,0,0,0,5371.2896,0,812.11133 +5969,7287,13026,13027,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,3.8066506,3.9171653,12,3,-46.358776,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1359868,62.1,51.16,57.06,57.76,8.333333333333334,1,1,0,0,1,11,2,1,1212,15679.43,64545.836,0,0,0,0,1377.7889 +5969,7287,13027,13026,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,5.5138254,5.1737328,12,-3,-6.915597,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4474959,57.06,57.76,62.1,51.16,8.333333333333334,1,1,0,0,3,11,2,1,1212,15679.43,64545.836,0,0,0,0,1377.7889 +5970,7288,13028,13031,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,7.4297881,10.323249,9.913909,18,0,135.68272,0,2,1,2021,1,0,40,40,1,0,0,5.1281557,5.1281557,.05,.05,0,0,0,0,0,0,1,1,0,10.395297,0,60.29,52.11,52,54.51,8.333333333333334,1,1,0,0,13,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5970,7288,13029,-9,13031,13028,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-978.57556,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,4,2,-9,0,0,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5970,7288,13030,-9,13031,13028,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.0947,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5970,7288,13031,13028,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.132103,8.4622488,0,18,0,33.616642,0,2,2,2021,8,1,30,30,1,1,0,10.025087,10.025087,.05,.05,0,0,0,0,0,0,1,1,0,7.2385216,0,52,54.51,60.29,52.11,6.666666666666667,3,4,0,0,13,8,5,1,619.5,1566926.8,49688.047,1080212.6,474118.59,0,0,18452.803 +5971,7289,13032,13033,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.021841,9.3010111,0,6,-2,-14.824611,0,2,2,2021,13,1,50,48,1,1,0,20.019327,20.019327,.05,.05,.05,0,0,0,0,0,1,1,0,6.0225334,0,37.07,47.79,50.21,41.87,3.333333333333333,1,1,0,0,9,4,5,1,600,1942287.3,715430.19,343061.31,35758.852,0,0,5318.6611 +5971,7289,13033,13032,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,8.4872208,8.3859339,0,6,2,110.28748,0,2,2,2021,12,4,37,41,1,4,0,12.902775,12.902775,0,0,0,0,0,0,0,0,1,1,0,0,0,50.21,41.87,37.07,47.79,8.333333333333334,1,1,0,0,8,4,5,1,600,1942287.3,715430.19,343061.31,35758.852,0,0,5318.6611 +5972,7290,13034,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,5,0,7.281621,6.8013678,0,0,-1017.9594,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5518332,7.3217387,57.06,57.76,-9,-9,10,1,1,0,0,0,11,2,1,5499,202737.3,37314.375,118194.32,0,0,0,2204.2454 +5973,7291,13035,13036,-9,-9,1,0,61,0,0,0,3,3,-9,1,3,0,0,0,9,-1,-20.751385,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,54.79,55.86,7,1,1,0,0,0,5,2,0,426.5,655426.75,404447.19,280000,0,0,0,2548.6956 +5973,7291,13036,13035,-9,-9,1,1,62,0,0,0,3,3,-9,1,4,7.036036,6.969326,0,9,1,43.343136,0,3,3,2021,8,0,12,12,1,0,0,13.9933,13.9933,0,0,0,0,0,0,0,114,1,1,0,0,0,54.79,55.86,48,48,10,1,1,0,0,10,5,2,0,426.5,655426.75,404447.19,280000,0,0,0,2548.6956 +5974,7292,13037,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.8886137,7.8634591,0,0,0,-1006.756,0,2,3,2021,10,0,40,40,1,0,0,7.6620727,7.6620727,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.94,37.34,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,210,129952.61,-25553.809,0,0,0,0,1190.0906 +5975,7293,13038,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,8.044425,7.576417,0,0,0,-1010.8611,-9,-9,-9,2021,12,0,35,0,1,2,0,9.4531898,9.4531898,.05,.05,0,0,0,0,0,0,0,0,0,.96327001,0,45,59,-9,-9,7,1,1,0,0,2,9,4,1,3223,117312.98,49358.168,0,0,5841.4868,1754.6915,594.1156 +5976,7294,13039,13040,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.5571909,8.6109161,0,3,-1,61.649117,0,-9,2,2021,8,0,37,38,1,0,0,16.118202,16.118202,0,0,0,0,0,0,0,0,1,1,0,.13860442,0,49.96,56.89,44.02,60.7,8.333333333333334,1,1,0,0,6,9,3,1,2442.3333,1082058.3,724736,353795.47,34849.754,0,0,2019.8804 +5976,7294,13040,13039,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,0,0,0,21,1,45.373596,0,3,2,2021,14,2,0,18,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.02,60.7,49.96,56.89,8.333333333333334,1,1,0,0,8,9,3,1,2442.3333,1082058.3,724736,353795.47,34849.754,0,0,2019.8804 +5976,7294,13041,-9,13040,13039,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.56116,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,3,1,2442.3333,1082058.3,724736,353795.47,34849.754,0,0,2019.8804 +5976,7295,13042,-9,13040,13039,1,1,18,0,1,0,2,2,-9,0,4,5.2749448,5.2959809,0,0,0,-1047.0033,-9,2,2,2021,11,0,37,0,1,2,1,.61100316,.61100316,0,0,0,0,0,0,0,0,1,1,0,3.2378228,0,48,59,-9,-9,7,1,1,0,0,1,9,2,1,709,-73181.039,0,0,0,35691.719,0,1068.1799 +5977,7296,13043,13044,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,23,-1,148.05716,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30124,0,41,42.2,37.3,31.79,8.333333333333334,1,1,0,0,0,12,2,1,1700.5,319402,-34779.805,163653.61,0,0,0,1721.452 +5977,7296,13044,13043,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.5065527,6.4943218,13,1,-31.462328,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8833132,6.2866297,37.3,31.79,41,42.2,8.333333333333334,1,1,0,0,0,12,2,1,1700.5,319402,-34779.805,163653.61,0,0,0,1721.452 +5978,7297,13045,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.9279919,8.8329191,6.0910211,0,0,-982.79028,0,3,2,2021,12,0,47,53,1,0,0,14.391238,14.391238,0,0,0,0,0,0,0,0,0,0,0,4.6888843,6.6210289,37.13,55.9,-9,-9,6.666666666666667,1,1,0,0,9,1,5,1,1750,866825.44,828446.06,70564.563,0,1803.5894,0,2901.1746 +5978,7298,13046,-9,-9,13045,1,0,21,0,0,0,2,2,1,0,4,7.19455,7.225534,0,0,0,-1084.7424,-9,1,1,2021,11,0,48,0,1,2,1,3.528836,3.528836,.05,.05,0,0,0,0,0,0,0,0,0,1.8130783,0,46,58,-9,-9,7,1,1,0,0,1,1,3,1,375,121448.98,-20739.391,0,0,0,0,873.31537 +5979,7299,13047,13048,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,0,0,16,3,-58.169525,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,7.4066792,0,0,1,1,0,4.987401,0,48.22,21.45,60.87,18.17,8.333333333333334,1,1,0,0,0,5,2,1,829.5,291411.25,51865.066,247130.53,0,0,0,1973.8289 +5979,7299,13048,13047,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.9705787,6.2793746,18,-3,119.51021,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,3.8944182,10.448675,20.426008,2,1,1,0,.39080209,6.034996,60.87,18.17,48.22,21.45,8.333333333333334,1,1,0,0,0,5,2,1,829.5,291411.25,51865.066,247130.53,0,0,0,1973.8289 +5980,7300,13049,-9,13050,13052,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.5245,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5980,7300,13050,13052,-9,-9,1,0,43,1,2,0,1,1,-9,0,4,0,0,0,6,5,-25.077351,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5543671,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,5,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5980,7300,13051,-9,13050,13052,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.62885,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5980,7300,13052,13050,-9,-9,1,1,38,1,2,0,1,1,-9,0,5,8.6228342,8.8095121,0,6,-5,20.109753,0,-9,-9,2021,8,0,38,37,1,0,0,17.542192,17.542192,.05,.05,0,0,0,0,0,0,1,1,0,.55256593,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,6,10,3,1,989.25,572974.13,399727.09,323651.06,177787.95,0,0,2152.136 +5981,7301,13053,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6412501,7.2616405,0,0,0,-1072.9086,0,2,3,2021,8,0,36,29,1,0,0,5.0882173,5.0882173,.05,.05,0,0,0,0,0,7,1,1,0,0,0,61.19,42.11,-9,-9,8.333333333333334,1,1,0,0,9,7,3,0,544,-17758.186,46893.629,0,0,0,0,362.66449 +5982,7302,13054,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,9.1242313,9.1521807,0,0,0,-1027.5859,0,2,1,2021,10,0,40,50,1,0,0,35.141682,35.141682,.05,.05,0,0,0,0,0,0,1,1,0,1.0756572,0,52.26,51.57,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,353,1009992.8,196603.06,890943.25,417188.78,22955.939,0,2604.7839 +5983,7303,13055,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,6.9802642,7.6021214,6.3964319,0,0,-1132.7128,-9,2,-9,2021,13,1,25,0,1,1,0,6.8459258,6.8459258,0,0,0,0,0,0,0,0,1,1,0,4.5115571,6.4941425,42.22,45.38,-9,-9,8.333333333333334,1,1,0,0,8,11,3,0,495,189173.78,365879.19,166247.53,0,329.70801,-447.79242,1595.8459 +5984,7304,13056,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,6.0653749,5.8434358,0,0,-979.55981,0,3,1,2021,31,11,0,0,4,11,0,0,0,0,0,0,1,73.630051,69.965164,743.0683,0,1,1,0,0,5.6747484,30.85,17.26,-9,-9,1.666666666666667,1,1,0,1,0,11,2,0,2500,85703.797,-18086.479,0,0,0,0,1628.9999 +5984,7305,13057,-9,13056,-9,1,1,42,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1065.3718,-9,2,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.0838418,0,23.13,63.87,-9,-9,3.333333333333333,1,1,0,1,9,11,1,0,2592,148576.97,0,0,0,0,0,-674.27289 +5985,7306,13058,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,6.7963629,7.0917253,0,0,-948.1593,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8573318,57.06,57.76,-9,-9,10,1,1,0,0,0,9,2,1,534,531948.31,239681.8,275971.53,0,0,0,969.1557 +5986,7307,13059,13061,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,8.669589,8.5769749,0,10,-1,75.671959,0,2,2,2021,5,0,44,40,1,0,0,11.996811,11.996811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,46.03,34.48,10,1,1,0,0,10,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5986,7307,13060,-9,13061,13059,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.2249,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5986,7307,13061,13059,-9,-9,1,0,36,1,2,0,2,2,-9,0,2,8.0853291,7.8691177,0,10,1,56.259232,0,2,2,2021,17,6,19,18,1,6,0,16.783619,16.783619,0,0,0,0,0,0,0,0,1,1,0,0,0,46.03,34.48,60.02,56.42,8.333333333333334,1,1,0,0,10,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5986,7307,13062,-9,13061,13059,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.0313,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,0,308.75,276347.38,-17262.238,328150.25,125764.84,2510.4263,1618.3206,3630.8789 +5987,7308,13063,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1754274,8.3271379,0,0,0,-963.58063,0,2,2,2021,15,4,37,37,1,4,0,11.799683,11.799683,0,0,0,0,0,0,0,0,0,0,0,0,0,32.01,62.01,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,1213,0,0,0,0,0,0,779.54767 +5988,7309,13064,13065,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.6517081,4.5276999,4,3,-48.991745,0,-9,-9,2021,6,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.61869,52.48,55.6,60.12,54.8,8.333333333333334,1,1,0,0,11,7,2,0,352,1324409.3,902259.75,372672.16,0,0,0,1613.399 +5988,7309,13065,13064,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.4040613,7.3515563,0,4,-3,41.253006,0,3,3,2021,6,0,30,30,1,0,0,6.0421567,6.0421567,0,0,.05,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52.48,55.6,8.333333333333334,1,1,0,0,10,7,2,0,352,1324409.3,902259.75,372672.16,0,0,0,1613.399 +5989,7310,13066,-9,13068,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-963.43146,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5989,7310,13067,-9,13068,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1070.5094,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,3,4,-9,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5989,7310,13068,-9,-9,-9,1,0,36,0,3,0,1,1,-9,1,4,0,0,0,0,0,-995.37677,0,3,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5989,7310,13069,-9,13068,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.39313,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,480.75,-12656.269,0,0,0,17086.457,0,1800.3123 +5990,7311,13070,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,0,0,-919.88483,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,-9,-9,5,4,5,0,0,9,8,1,0,767,-25014.459,0,0,0,0,0,116.81072 +5990,7312,13071,-9,13070,-9,1,1,29,0,0,0,1,1,-9,0,3,0,0,0,0,0,-870.487,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.4433081,0,39.14,52.49,-9,-9,5,4,5,0,0,4,8,1,0,742,0,0,0,0,0,0,196.23183 +5990,7313,13072,-9,13070,-9,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-976.2655,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,3.3001411,0,35.2,48.71,-9,-9,5,4,5,1,0,2,8,1,0,4027,0,0,0,0,0,0,1529.4631 +5990,7314,13073,-9,13070,-9,1,0,28,0,0,0,2,2,-9,0,3,7.1234217,7.0279527,0,0,0,-991.54199,0,2,2,2021,6,0,32,-9,1,0,1,3.6153655,3.6153655,.05,.05,0,0,0,0,0,0,1,0,1,1.6516143,0,50.53,47.38,-9,-9,8.333333333333334,4,5,0,0,5,8,2,0,529,-7353.3462,19541.002,0,0,0,0,463.36615 +5990,7315,13074,-9,13070,-9,1,0,26,0,0,0,1,1,-9,0,4,6.8122663,6.7670531,0,0,0,-859.85803,0,2,1,2021,6,0,8,-9,1,0,1,15.915709,15.915709,0,0,0,0,0,0,0,0,1,0,1,1.9317528,0,45.09,60.15,-9,-9,8.333333333333334,4,5,0,0,7,8,2,0,521,22191.619,0,0,0,0,0,252.49843 +5991,7316,13075,13078,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,.72266817,.82961017,0,5,3,-17.229248,0,2,3,2021,10,0,90,55,1,0,0,.0021199081,.0021199081,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,44.58,51.2,8.333333333333334,1,1,0,0,9,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5991,7316,13076,-9,13078,13075,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.3307,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5991,7316,13077,-9,13078,13075,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.6141,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5991,7316,13078,13075,-9,-9,1,0,33,1,2,0,2,2,-9,0,3,8.1585302,8.2307148,4.8546491,5,-3,-3.1426849,0,-9,-9,2021,12,1,35,30,1,1,0,12.340771,12.340771,0,0,0,0,0,0,0,0,1,1,0,5.1265812,0,44.58,51.2,57.16,56.15,8.333333333333334,1,1,0,0,10,13,3,1,620.75,16376.987,15917.232,0,0,0,0,1584.2209 +5992,7317,13079,13080,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,8.713604,8.7582369,0,14,2,-73.476372,0,2,1,2021,10,1,55,50,1,1,0,14.089768,14.089768,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.22,53.26,55.68,54.24,8.333333333333334,4,5,0,0,7,10,5,0,1129,24947478,684881.94,16338381,0,0,0,4347.9023 +5992,7317,13080,13079,-9,-9,1,0,34,0,1,0,1,1,-9,0,5,8.9260731,9.1845722,6.4256406,14,-2,12.520673,0,2,2,2021,12,3,47,44,1,3,0,15.655467,15.655467,0,0,0,0,0,0,0,0,1,1,0,6.6619048,0,55.68,54.24,52.22,53.26,8.333333333333334,4,5,0,0,6,10,5,0,1129,24947478,684881.94,16338381,0,0,0,4347.9023 +5992,7317,13081,-9,13080,13079,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.58356,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,10,5,0,1129,24947478,684881.94,16338381,0,0,0,4347.9023 +5993,7318,13082,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.6398335,8.737483,6.4334979,0,0,-978.10846,0,2,2,2021,10,1,40,39,1,1,0,15.109716,15.109716,.05,.05,0,0,0,0,0,2,0,0,0,0,6.6561337,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,131,353268.31,172325.66,55851.809,0,0,-403.60318,2552.3071 +5994,7319,13083,13085,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,8.4098482,8.5110569,0,7,1,-42.325138,0,-9,-9,2021,13,1,5,46,1,1,0,95.10157,95.10157,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.32,55.37,43.54,59.6,8.333333333333334,1,1,0,0,9,4,5,1,924.33331,362931.19,120513,529813.25,224628.78,0,0,4448.9482 +5994,7319,13084,-9,13083,13085,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-969.72491,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,5,1,924.33331,362931.19,120513,529813.25,224628.78,0,0,4448.9482 +5994,7319,13085,13083,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.866148,8.8308344,0,7,-1,-92.164719,0,-9,-9,2021,12,1,41,43,1,1,0,18.780354,18.780354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,47.32,55.37,5,1,1,0,0,8,4,5,1,924.33331,362931.19,120513,529813.25,224628.78,0,0,4448.9482 +5995,7320,13086,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,6.8271236,6.9990258,0,0,-1002.3239,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3412561,61.27,46.03,-9,-9,10,1,1,0,0,0,12,2,1,164,84328.516,-43157.305,0,0,0,0,713.1037 +5996,7321,13087,13088,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3848519,7.4868374,0,26,6,109.46012,0,2,2,2021,11,0,24,26,1,0,0,7.4298582,7.4298582,0,0,0,0,0,0,0,7,0,0,0,2.6377378,0,56.52,48.31,48.26,47.97,8.333333333333334,1,1,0,0,14,5,5,1,1277,441722.25,280364,200885.97,57896.508,0,0,2559.6267 +5996,7321,13088,13087,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0368404,9.3604841,0,11,-6,-56.917782,0,-9,-9,2021,11,0,50,50,1,0,0,17.526628,17.526628,0,0,.05,0,0,0,0,0,0,0,0,6.1966605,0,48.26,47.97,56.52,48.31,6.666666666666667,1,1,0,0,14,5,5,1,1277,441722.25,280364,200885.97,57896.508,0,0,2559.6267 +5997,7322,13089,13090,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.5889473,8.7010317,0,4,1,-7.1060157,0,-9,-9,2021,10,0,38,39,1,0,0,15.353739,15.353739,0,0,0,0,0,0,0,0,0,0,0,0,0,35.92,56.78,58.55,19.83,6.666666666666667,2,3,0,0,2,7,5,1,428,15985.307,40793.883,12479.012,65464.906,1038.9355,0,4299.5488 +5997,7322,13090,13089,13091,-9,1,1,31,0,0,0,1,1,-9,0,1,8.7410173,8.6693516,0,4,-1,53.987808,0,3,2,2021,3,0,50,37,1,0,0,18.196486,18.196486,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.55,19.83,35.92,56.78,6.666666666666667,2,3,0,0,6,7,5,1,428,15985.307,40793.883,12479.012,65464.906,1038.9355,0,4299.5488 +5997,7323,13091,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.8212428,7.2272983,6.7467647,0,0,-986.12512,0,-9,-9,2021,20,7,20,20,1,7,0,7.0097871,7.0097871,0,0,0,0,0,0,0,0,0,0,0,0,6.4906454,47.55,28.27,-9,-9,8.333333333333334,2,3,0,0,12,7,3,1,2831,310530.47,330271.78,268716.34,0,0,2032.1154,291.96246 +5998,7324,13092,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.9081025,7.8208127,0,0,0,-961.61365,0,2,2,2021,10,0,43,40,1,0,0,6.9252834,6.9252834,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,5,1,1,0,0,7,2,3,1,251,509047.44,142858.14,196005.92,0,0,0,757.2616 +5999,7325,13093,-9,13096,-9,1,0,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1118.5798,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +5999,7325,13094,-9,13096,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.4701,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +5999,7325,13095,-9,13096,-9,1,0,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-795.24402,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +5999,7325,13096,-9,-9,-9,1,0,32,1,3,0,2,2,-9,1,4,0,6.3947277,6.4924617,0,0,-1053.011,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6442313,0,21.14,55.21,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,371.25,-106149.66,-24304.902,0,0,4813.5518,0,1792.2825 +6000,7326,13097,-9,13098,13099,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1078.2045,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,5,0,412.66666,1375189.8,366836.47,923509.5,36081.715,0,0,6198.1689 +6000,7326,13098,13099,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.6962881,8.5046043,0,11,-15,-69.041557,0,-9,-9,2021,8,0,39,39,1,0,0,16.923056,16.923056,0,0,.05,0,0,0,0,0,1,1,0,1.0371881,0,57.16,56.15,45.78,54.48,6.666666666666667,1,1,0,0,8,8,5,0,412.66666,1375189.8,366836.47,923509.5,36081.715,0,0,6198.1689 +6000,7326,13099,13098,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.2007303,8.9973507,0,11,15,-61.271561,0,3,3,2021,14,4,30,30,1,4,0,41.305649,41.305649,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.78,54.48,57.16,56.15,5,3,4,0,0,13,8,5,0,412.66666,1375189.8,366836.47,923509.5,36081.715,0,0,6198.1689 +6001,7327,13100,13101,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.9640989,8.7903528,0,32,-3,10.890797,0,3,3,2021,15,4,36,36,1,4,0,18.6252,18.6252,.05,.05,.05,0,0,0,0,0,0,0,0,5.7447028,0,31.68,50.21,40.76,48.77,1.666666666666667,1,1,0,0,9,11,5,1,597,1331194.8,1092779.5,156526.86,25004.992,9427.8799,5905.6206,2990.522 +6001,7327,13101,13100,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.8090539,7.5977273,0,32,3,8.7657833,0,2,2,2021,18,7,36,32,1,7,0,6.1787047,6.1787047,.05,.05,0,0,0,0,0,0,0,0,0,.70760971,0,40.76,48.77,31.68,50.21,3.333333333333333,1,1,0,0,9,11,5,1,597,1331194.8,1092779.5,156526.86,25004.992,9427.8799,5905.6206,2990.522 +6002,7328,13102,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.4703341,5.1618199,0,0,-971.43219,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4022503,5.0977292,66.37,38.36,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,643,91139.68,-23307.473,0,0,0,0,442.05466 +6003,7329,13103,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.1136475,9.092411,0,0,0,-1071.0201,0,2,1,2021,26,10,50,45,1,10,0,19.928806,19.928806,.05,.05,0,0,0,0,0,0,0,0,0,7.1171103,0,30.53,65.61,-9,-9,3.333333333333333,1,1,0,0,6,8,5,0,175,143918,13142.002,0,0,0,0,3104.79 +6004,7330,13104,-9,13105,13107,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.2605,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6004,7330,13105,13107,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,0,6.5895615,6.460423,8,-5,-132.6254,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.1575308,49.66,55.68,57.33,53.46,8.333333333333334,2,3,0,0,5,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6004,7330,13106,-9,13105,13107,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-980.22528,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6004,7330,13107,13105,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.1274862,8.011651,0,8,5,39.840473,0,2,2,2021,7,1,35,35,1,1,0,8.6391907,8.6391907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.66,55.68,6.666666666666667,2,3,0,0,14,4,3,1,762,83770.547,78095.156,125824.13,164044.19,0,0,1679.4919 +6005,7331,13108,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.7831697,7.5403981,0,0,-950.57587,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,3.5692246,6.7326274,24.766869,0,1,0,1,3.1139114,7.7997007,44.3,29.54,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,63,162293.11,241871.78,0,0,0,0,1887.7507 +6005,7332,13109,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.7421231,7.6439362,0,0,0,-1045.1921,-9,-9,-9,2021,15,3,30,0,1,3,0,6.5020771,6.5020771,0,0,0,0,0,0,0,0,1,0,1,0,0,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,293,1176.0222,48473.75,0,0,0,0,1647.2628 +6006,7333,13110,-9,13111,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.42682,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,493.66666,64315.426,0,0,0,636.53204,0,1460.1759 +6006,7333,13111,-9,-9,-9,1,0,34,0,2,0,2,2,-9,1,1,0,0,0,0,0,-918.9931,0,2,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.52,28.99,-9,-9,6.666666666666667,1,1,0,1,2,5,2,0,493.66666,64315.426,0,0,0,636.53204,0,1460.1759 +6006,7333,13112,-9,13111,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1013.2473,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,2,0,493.66666,64315.426,0,0,0,636.53204,0,1460.1759 +6007,7334,13113,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-962.55096,0,2,2,2021,16,4,0,33,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.0384786,0,33.64,53.56,-9,-9,6.666666666666667,1,1,1,1,13,2,1,1,355,130954.3,0,0,0,0,0,70.507248 +6008,7335,13114,13115,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.1145277,7.8080945,0,13,-1,77.239098,0,2,2,2021,11,0,40,37,1,0,0,11.473307,11.473307,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,49.29,54.59,8.333333333333334,1,1,0,0,14,7,5,1,605,467665.56,208084.16,328053.94,0,478.90607,0,4179.812 +6008,7335,13115,13114,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4246597,8.4839249,0,13,1,27.506783,0,2,2,2021,11,0,58,55,1,0,0,13.027184,13.027184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,52.4,52.91,8.333333333333334,1,1,0,0,15,7,5,1,605,467665.56,208084.16,328053.94,0,478.90607,0,4179.812 +6009,7336,13116,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.7692261,5.4698386,0,0,-958.86053,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3807378,58.92,31.07,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,503,-61095.555,0,0,0,0,0,1080.9963 +6010,7337,13117,13118,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.338232,8.6116791,0,3,-3,40.951908,0,-9,-9,2021,4,0,40,48,1,0,0,17.273678,17.273678,.05,.05,0,0,0,0,0,0,0,0,0,2.298912,0,59.14,52.5,45.77,53.13,8.333333333333334,1,1,0,0,3,7,5,0,283,200745.23,165351.09,0,0,0,0,4965.1875 +6010,7337,13118,13117,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,9.4709435,9.1831026,0,3,3,44.400173,0,2,3,2021,8,0,37,38,1,0,0,36.447693,36.447693,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.77,53.13,59.14,52.5,6.666666666666667,1,1,0,0,8,7,5,0,283,200745.23,165351.09,0,0,0,0,4965.1875 +6011,7338,13119,13120,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.3092847,5.0965528,9,-3,-89.946823,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8868585,5.2308564,60.87,44.96,59.13,44.84,0,1,1,0,0,5,8,2,1,735,950486.25,350116.69,515165.56,0,0,0,1748.9498 +6011,7338,13120,13119,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.7594547,6.7513576,9,3,164.07236,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9984088,6.971034,59.13,44.84,60.87,44.96,10,1,1,0,0,5,8,2,1,735,950486.25,350116.69,515165.56,0,0,0,1748.9498 +6012,7339,13121,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.1989546,7.429502,0,0,-1088.3363,0,-9,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,7.7298689,0,0,1,1,0,0,7.0230594,39.94,34.35,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,2836,259968.14,144812,141553.31,0,0,0,1092.6418 +6013,7340,13122,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,5.1645188,5.7988348,0,0,-999.01404,0,1,1,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5509419,0,38.84,20.12,-9,-9,3.333333333333333,1,1,0,1,0,10,2,0,388,138209,80394.68,157969,0,0,0,976.4021 +6013,7341,13123,-9,-9,-9,1,0,65,0,0,0,3,3,-9,1,4,0,0,0,0,0,-990.56299,0,-9,-9,2021,15,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.81,49.24,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,453,257031.61,0,179116.73,0,0,30.862656,13.457473 +6014,7342,13124,13125,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.1447392,8.2005444,0,12,2,34.221729,-9,-9,-9,2021,9,0,43,0,1,1,0,10.266834,10.266834,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,27.51,33.68,8,1,1,0,1,12,12,4,1,1221.5,-85266.141,6517.1436,0,0,0,0,2105.5193 +6014,7342,13125,13124,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,0,0,0,35,-2,11.733922,0,-9,-9,2021,17,5,0,46,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.51,33.68,52,55,0,1,1,1,1,6,12,4,1,1221.5,-85266.141,6517.1436,0,0,0,0,2105.5193 +6015,7343,13126,-9,13127,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-998.84351,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,55.64,-9,-9,6.666666666666667,3,4,0,0,0,8,3,0,566.66669,730142.13,607021.81,76369.656,77668.719,2332.5137,-363.47638,2645.9927 +6015,7343,13127,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,7.6200428,7.9542408,0,0,0,-888.16547,-9,1,-9,2021,8,0,44,0,1,0,0,6.5379095,6.5379095,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.89,47.88,-9,-9,6.666666666666667,3,4,0,0,7,8,3,0,566.66669,730142.13,607021.81,76369.656,77668.719,2332.5137,-363.47638,2645.9927 +6015,7343,13128,-9,13127,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1091.7205,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,566.66669,730142.13,607021.81,76369.656,77668.719,2332.5137,-363.47638,2645.9927 +6016,7344,13129,13130,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.8646417,7.3049798,59,0,-118.45764,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8435168,57.16,56.15,54.21,47.1,10,1,1,0,0,3,7,3,1,1316.5,1343286.5,617943.44,617824.06,0,3871.1833,0,2857.8789 +6016,7344,13130,13129,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,7.4993343,7.3965445,59,0,-64.468002,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3643074,7.1362572,54.21,47.1,57.16,56.15,10,1,1,0,0,0,7,3,1,1316.5,1343286.5,617943.44,617824.06,0,3871.1833,0,2857.8789 +6017,7345,13131,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1034.1302,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.173914,0,46.62,55.32,-9,-9,8.333333333333334,1,1,0,0,5,4,1,0,557,-11833.951,0,0,0,0,0,67.547096 +6018,7346,13132,13133,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2716484,8.2164383,0,10,3,26.735086,0,2,2,2021,9,0,35,40,1,0,0,10.633969,10.633969,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.73,54.53,8.333333333333334,4,2,0,0,11,5,5,1,682,148435.3,72626.078,181587.88,140007.61,1688.5242,0,5626.4321 +6018,7346,13133,13132,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.0820665,9.0907125,0,10,-3,-69.033371,0,2,2,2021,7,1,60,60,1,1,0,13.344967,13.344967,.05,.05,0,0,0,0,0,0,0,0,0,1.9572004,0,57.73,54.53,54.2,57.49,8.333333333333334,1,1,0,0,11,5,5,1,682,148435.3,72626.078,181587.88,140007.61,1688.5242,0,5626.4321 +6019,7347,13134,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,7.5372057,7.6875811,0,0,0,-878.28204,0,3,2,2021,20,9,30,30,1,9,0,8.5763798,8.5763798,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.56,25.22,-9,-9,5,1,1,0,0,12,2,3,0,194,-9101.665,745.05981,0,0,0,3875.8831,739.02905 +6020,7348,13135,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.5998573,6.9338088,0,0,-1059.4084,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8453441,47.01,58,-9,-9,6.666666666666667,4,2,0,0,4,10,2,1,1068,206606.5,0,98032.773,0,0,0,972.67889 +6021,7349,13136,13137,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4391642,7.9403901,7,2,34.23111,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9735122,8.2766428,57.16,56.15,57.16,56.15,10,1,1,0,0,0,10,4,1,817,1305845.5,376928.06,239499.84,0,0,0,3235.9631 +6021,7349,13137,13136,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.6511989,4.7544875,7,-2,22.399164,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5719929,4.6009188,57.16,56.15,57.16,56.15,0,1,1,0,0,5,10,4,1,817,1305845.5,376928.06,239499.84,0,0,0,3235.9631 +6022,7350,13138,13139,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,6.6181612,7.0072412,46,3,20.710472,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5703044,6.7785182,60.7,47.65,52.65,51.64,8.333333333333334,1,1,0,0,0,10,2,1,894,282892.91,111888.42,163079.81,0,0,0,2123.0864 +6022,7350,13139,13138,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,0,0,10,-3,-1.1463289,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,60.7,47.65,6.666666666666667,1,1,0,0,0,10,2,1,894,282892.91,111888.42,163079.81,0,0,0,2123.0864 +6023,7351,13140,13141,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.1143217,8.1350355,0,6,-4,-5.0290465,0,1,1,2021,10,0,55,70,1,0,0,8.0342684,8.0342684,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,8,7,5,1,685,162040.63,60139.703,651979.63,539212.38,0,0,4435.8994 +6023,7351,13141,13140,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.2038469,9.3246737,0,6,4,9.6300497,0,-9,-9,2021,7,0,50,50,1,0,0,22.422068,22.422068,.05,.05,0,0,0,0,0,0,0,0,0,2.825902,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,685,162040.63,60139.703,651979.63,539212.38,0,0,4435.8994 +6024,7352,13142,13143,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.6205802,7.3206735,0,6,-1,-89.075104,0,-9,-9,2021,11,0,45,-9,1,0,0,6.2137923,6.2137923,.05,.05,0,0,0,0,0,0,0,0,0,7.2219296,0,44.05,38.12,58.87,37.89,8.333333333333334,1,1,0,0,4,5,4,1,968.5,320815.5,276817.59,189466.33,57050.719,0,0,3249.1802 +6024,7352,13143,13142,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,6.5887036,8.0585985,7.7905178,6,1,-160.05969,0,3,2,2021,5,0,70,70,1,0,0,1.0759574,1.0759574,.05,.05,0,0,0,0,0,0,0,0,0,3.0275557,7.9689999,58.87,37.89,44.05,38.12,6.666666666666667,1,1,0,0,6,5,4,1,968.5,320815.5,276817.59,189466.33,57050.719,0,0,3249.1802 +6024,7353,13144,-9,13142,13143,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1136.2742,1,3,2,2021,22,8,0,15,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.55,50.67,-9,-9,5,1,1,0,0,5,5,1,1,2795,-5931.418,0,0,0,0,0,0 +6025,7354,13145,13146,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6380148,9.4775419,0,35,2,71.24778,0,-9,-9,2021,9,0,58,55,1,0,0,30.561598,30.561598,.05,.05,0,0,0,0,0,0,0,0,0,6.5124693,0,54,54,31.24,64.34,8,1,1,0,0,10,12,5,1,255,987643.38,200051.75,470388.97,44951.586,0,0,8125.8057 +6025,7354,13146,13145,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.593657,7.7287798,0,35,-2,35.842209,0,2,2,2021,22,9,13,13,1,9,0,14.996954,14.996954,0,0,0,0,0,0,0,0,0,0,0,0,0,31.24,64.34,54,54,8.333333333333334,1,1,0,0,10,12,5,1,255,987643.38,200051.75,470388.97,44951.586,0,0,8125.8057 +6026,7355,13147,13150,-9,-9,1,0,40,2,3,0,3,3,-9,0,4,8.0838652,8.3543634,6.2956209,4,-10,-79.856659,0,1,1,2021,8,0,40,40,1,0,0,10.961474,10.961474,.05,.05,0,0,0,0,0,0,1,1,0,6.2868505,0,57.16,56.15,33.41,62.84,8.333333333333334,1,1,0,0,11,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13148,-9,13147,13150,1,0,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-847.35211,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13149,-9,13147,-9,1,1,12,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.6642,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13150,13147,-9,-9,1,1,50,2,3,0,1,1,-9,0,3,8.9937439,8.5777025,0,4,10,13.533034,0,-9,-9,2021,13,4,37,37,1,4,0,20.858534,20.858534,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.41,62.84,57.16,56.15,8.333333333333334,1,1,0,0,11,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13151,-9,13147,-9,1,1,17,2,3,0,2,2,1,0,3,0,0,0,0,0,-996.74799,-9,3,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30302933,0,44.38,58.1,-9,-9,5,1,1,0,0,1,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6026,7355,13152,-9,13147,13150,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.2444,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,4,4,1,785.16669,1730336.5,1467511.9,338013.31,98689.039,9285.9014,40907.922,4830.6724 +6027,7356,13153,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.5899496,7.7833729,0,0,-977.2052,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.4136648,7.6435242,63.33,22.52,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,422,419186.94,-26653.617,0,0,6018.6709,0,1345.3301 +6028,7357,13154,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.1127033,7.8849182,0,0,0,-1007.9796,-9,-9,-9,2021,7,0,42,0,1,0,0,8.9032545,8.9032545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,6.666666666666667,1,1,0,0,4,10,4,0,96,-22796.969,-51822.422,0,0,0,0,1293.6387 +6028,7358,13155,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.6234617,8.3952541,0,0,0,-946.82678,0,1,2,2021,3,0,37,45,1,0,0,16.81666,16.81666,.05,.05,0,0,0,0,0,0,0,0,0,3.2099328,0,54.2,57.49,-9,-9,10,1,1,0,0,7,10,5,0,435,-146150.88,116415.24,0,0,7971.6318,0,1305.1855 +6029,7359,13156,13159,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,8.3091497,8.4102993,0,7,0,5.0870972,0,-9,-9,2021,9,0,37,37,1,1,0,15.174703,15.174703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,58.33,47.36,8,1,1,0,0,1,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6029,7359,13157,-9,13159,13156,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.39282,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6029,7359,13158,-9,13159,13156,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.6187,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6029,7359,13159,13156,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.3162594,7.9337502,0,22,0,-82.04763,0,2,2,2021,9,0,26,20,1,0,0,15.512202,15.512202,0,0,0,0,0,0,0,2,1,1,0,.54701406,0,58.33,47.36,52,55,8.333333333333334,1,1,0,0,9,10,4,1,980.75,232467.81,-17602.566,513529.13,209418.64,0,0,3193.6292 +6030,7360,13160,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,0,0,-955.82867,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.07,53.97,-9,-9,5,1,1,0,0,0,13,1,0,66,46334.344,0,0,0,0,0,1520.7587 +6030,7361,13161,-9,13160,-9,1,1,22,0,1,0,2,2,-9,0,3,0,0,0,0,0,-983.07928,0,2,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.08,57.81,-9,-9,5,1,1,1,0,0,13,1,0,1074,-169566.72,0,0,0,0,0,250.53806 +6031,7362,13162,13164,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.4806175,8.4486103,0,7,-3,38.460201,0,-9,-9,2021,12,0,45,40,1,0,0,10.650339,10.650339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,32.65,59.14,8.333333333333334,1,1,0,0,7,12,5,1,2187,21422.607,69049.703,205682.95,158369.73,11298.919,0,4220.1694 +6031,7362,13163,-9,13162,13164,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.51807,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,2187,21422.607,69049.703,205682.95,158369.73,11298.919,0,4220.1694 +6031,7362,13164,13162,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.6524696,8.8736143,0,7,3,24.53598,0,2,2,2021,11,0,42,38,1,0,0,19.037317,19.037317,.05,.05,0,0,0,0,0,0,1,1,0,6.0866027,0,32.65,59.14,57.73,54.53,8.333333333333334,1,1,0,0,8,12,5,1,2187,21422.607,69049.703,205682.95,158369.73,11298.919,0,4220.1694 +6032,7363,13165,13166,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.1435614,8.1494923,0,12,2,70.82019,0,2,2,2021,24,10,74,44,1,10,0,6.0693884,6.0693884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.82,54.74,59.48,44.27,5,1,1,0,0,12,9,5,1,812,794213.31,289094.81,287570.38,0,6088.7686,0,3464.6636 +6032,7363,13166,13165,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5407534,8.4118376,0,12,-2,82.09005,0,2,1,2021,9,1,44,43,1,1,0,13.430446,13.430446,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.48,44.27,32.82,54.74,6.666666666666667,1,1,0,0,13,9,5,1,812,794213.31,289094.81,287570.38,0,6088.7686,0,3464.6636 +6033,7364,13167,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.6670637,6.3935394,0,0,-1117.2168,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7907619,35.56,48.42,-9,-9,3.333333333333333,1,1,0,1,14,2,2,0,520,374942.59,10026.618,124907.03,0,0,0,1027.3823 +6034,7365,13168,13169,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.4097943,4.2842355,15,2,-39.648769,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6300659,57.16,56.15,61.28,35.65,8.333333333333334,1,1,0,0,0,10,2,1,483,248274.94,140631.67,215967.97,0,0,0,1577.2769 +6034,7365,13169,13168,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,2.6291814,3.1647656,15,-2,-48.721272,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7668593,3.0734978,61.28,35.65,57.16,56.15,8.333333333333334,1,1,0,0,4,10,2,1,483,248274.94,140631.67,215967.97,0,0,0,1577.2769 +6035,7366,13170,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.0093966,8.9575739,0,1,0,46.600449,0,3,3,2021,18,6,47,52,1,6,0,22.713217,22.713217,.05,.05,0,0,0,0,0,0,0,0,0,3.7972286,0,32.33,59.49,51,56,6.666666666666667,1,1,0,0,11,10,5,1,369,612062.81,181499.69,299723.13,122362.52,13695.173,0,2998.501 +6036,7367,13171,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.2992892,6.1878381,0,0,-1036.1604,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7191453,6.0006542,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,3,2,2,0,763,270448.66,410802.28,0,0,0,0,1786.5034 +6037,7368,13172,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.4741631,8.4644012,0,0,0,-1155.9609,0,2,2,2021,10,0,24,24,1,0,0,17.154808,17.154808,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,44.4,-9,-9,5,4,5,0,0,2,8,4,0,138,214767.67,0,0,0,0,0,1905.7937 +6038,7369,13173,13174,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.1974416,7.6177921,6,-2,-19.942314,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5223308,6.9269586,61.41,46.03,54.79,55.86,8.333333333333334,1,1,0,0,7,4,4,1,745,1049569.5,607413.5,339545.84,0,0,0,2906.9248 +6038,7369,13174,13173,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,8.092556,8.0866756,6,2,-119.86971,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3251767,7.9711251,54.79,55.86,61.41,46.03,8.333333333333334,1,1,0,0,3,4,4,1,745,1049569.5,607413.5,339545.84,0,0,0,2906.9248 +6039,7370,13175,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,8.0171537,8.3159475,0,0,0,-1145.3531,0,2,3,2021,22,10,38,38,1,10,0,10.281227,10.281227,0,0,0,0,0,0,0,0,1,0,1,0,0,37.3,47.85,-9,-9,3.333333333333333,1,1,0,0,11,10,4,1,299,927895.81,687462.81,245817.25,0,0,0,1592.9785 +6039,7371,13176,-9,13175,-9,1,1,32,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1048.7484,-9,1,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,30.08,60.21,-9,-9,3.333333333333333,1,1,1,1,0,10,1,1,478,-24908.793,0,0,0,0,0,580.69275 +6040,7372,13177,13178,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,34,-2,47.838291,0,1,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82868606,0,49.35,59.64,60.02,56.42,8.333333333333334,1,1,0,0,8,9,2,1,373,1407255.3,375004.19,604563.38,0,0,0,925.09363 +6040,7372,13178,13177,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,2.939189,3.0657563,0,33,2,-6.6710582,0,3,3,2021,6,0,40,-9,1,0,0,.062910467,.062910467,0,0,0,0,0,0,0,0,1,1,0,3.5085928,0,60.02,56.42,49.35,59.64,1.666666666666667,1,1,0,1,12,9,2,1,373,1407255.3,375004.19,604563.38,0,0,0,925.09363 +6041,7373,13179,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.2103424,8.2556601,0,0,0,-1066.4404,-9,1,1,2021,11,1,38,0,1,1,0,9.984539,9.984539,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.37,61.5,-9,-9,1.666666666666667,1,1,0,0,3,12,4,1,1152,-135377.14,21884.043,0,0,0,0,1266.4402 +6042,7374,13180,13181,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3605499,8.5038624,0,26,-5,4.7544699,0,2,2,2021,13,1,55,48,1,1,0,7.7533522,7.7533522,.05,.05,0,0,0,0,0,2,0,0,0,2.1838319,0,50.72,51.02,48.7,56.22,6.666666666666667,1,1,0,0,11,7,4,1,926,637001.88,303440.06,543171.31,160715.81,0,0,2597.4165 +6042,7374,13181,13180,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.1719136,7.0865169,0,26,5,-63.858383,0,2,2,2021,10,0,6,6,1,0,0,22.614798,22.614798,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,48.7,56.22,50.72,51.02,8.333333333333334,1,1,0,0,11,7,4,1,926,637001.88,303440.06,543171.31,160715.81,0,0,2597.4165 +6042,7375,13182,-9,13181,13180,1,1,20,0,0,0,2,2,1,0,3,7.262383,7.1619267,0,0,0,-1097.2328,-9,2,2,2021,15,4,30,0,1,4,1,5.0295882,5.0295882,0,0,0,0,0,0,0,0,0,0,0,2.0900428,0,30.7,62.92,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,293,183864.47,0,0,0,0,0,327.03043 +6043,7376,13183,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.4777012,7.4312348,0,0,-970.1004,0,2,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.17981921,7.6436195,57.17,50.61,-9,-9,8.333333333333334,3,4,0,0,8,8,3,1,99,399268.38,196676.2,367117.53,0,0,0,545.37268 +6044,7377,13184,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.9280725,8.2323399,0,0,0,-1021.7854,0,3,3,2021,11,0,38,0,1,0,0,8.9288635,8.9288635,0,0,0,0,0,0,0,0,0,0,0,.71470582,0,43.6,56.78,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,2498,357125.38,136739.89,346875.25,0,0,0,2572.8276 +6045,7378,13185,13186,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.1579518,6.3071756,0,33,-4,45.881126,-9,3,3,2021,12,0,6,0,1,2,0,9.264842,9.264842,0,0,0,0,0,0,0,0,0,0,0,2.790519,0,48,49,45.82,46.7,7,2,3,0,0,1,2,3,1,390,977156.63,593265.13,263331.06,0,0,0,1787.2947 +6045,7378,13186,13185,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.5912366,7.2899895,0,33,4,-6.6767864,0,3,3,2021,12,0,6,6,1,0,0,34.13522,34.13522,0,0,0,0,0,0,0,0,0,0,0,7.5993686,0,45.82,46.7,48,49,6.666666666666667,2,3,0,0,9,2,3,1,390,977156.63,593265.13,263331.06,0,0,0,1787.2947 +6045,7379,13187,-9,13185,13186,1,1,27,0,0,0,1,1,-9,0,5,8.0495167,7.9741607,0,0,0,-1066.3546,0,3,1,2021,15,3,38,38,1,3,1,9.1738386,9.1738386,.05,.05,0,0,0,0,0,0,0,0,0,1.1224067,0,41.12,59.69,-9,-9,8.333333333333334,2,3,0,0,4,2,4,1,2021,-29291.32,7058.4795,0,0,0,0,1104.7922 +6046,7380,13188,-9,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,0,5.2560639,5.1365881,0,0,-973.20905,-9,2,-9,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.3992257,0,25.39,66.76000000000001,-9,-9,6.666666666666667,3,4,0,1,2,1,2,0,1766.5,123896.3,0,0,0,0,85.045944,758.90015 +6046,7380,13189,-9,13188,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.1989,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,3,4,-9,0,0,1,2,0,1766.5,123896.3,0,0,0,0,85.045944,758.90015 +6047,7381,13190,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,6.8735623,7.0911751,0,0,0,-1034.4498,0,3,2,2021,9,0,20,0,1,0,0,6.7734971,6.7734971,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,2,9,2,0,417.5,61097.102,76567.328,0,0,0,0,975.61859 +6047,7381,13191,-9,13190,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-893.91656,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,417.5,61097.102,76567.328,0,0,0,0,975.61859 +6048,7382,13192,13194,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,0,0,0,21,0,-2.5337222,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.28,54.65,48.28,49.45,6.666666666666667,2,3,0,0,0,2,2,0,983,141942.89,10184.376,148200.3,43788.277,0,0,2081.8257 +6048,7382,13193,-9,13192,13194,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1119.7902,-9,2,1,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,64.48,-9,-9,6.666666666666667,2,3,0,0,0,2,2,0,983,141942.89,10184.376,148200.3,43788.277,0,0,2081.8257 +6048,7382,13194,13192,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,7.852664,8.0350027,0,21,9,-20.888994,0,3,3,2021,11,1,40,37,1,1,0,7.2207355,7.2207355,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,49.45,40.28,54.65,6.666666666666667,2,3,0,0,12,2,2,0,983,141942.89,10184.376,148200.3,43788.277,0,0,2081.8257 +6049,7383,13195,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.4876413,5.311717,0,0,-1075.4196,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2111669,0,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,385,283123.47,0,328426.22,0,0,0,934.19196 +6050,7384,13196,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,7.0859871,7.1850023,0,0,-985.98651,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4984922,42.43,21.33,-9,-9,6.666666666666667,1,1,0,0,0,12,3,0,237,473602,186564.66,228889.59,0,0,0,1286.9702 +6051,7385,13197,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9520183,8.214901,0,0,0,-928.40369,0,3,3,2021,32,11,36,36,1,11,0,10.621687,10.621687,.05,.05,0,0,0,0,0,0,0,0,0,6.4334717,0,5.15,68.21000000000001,-9,-9,3.333333333333333,1,1,0,0,12,9,4,1,566,405277.72,387323.84,0,0,0,0,1882.8387 +6051,7386,13198,13199,13197,-9,1,1,28,0,0,0,1,1,-9,0,5,8.8175316,8.8518419,0,2,1,19.720938,-9,2,2,2021,7,0,46,0,1,0,0,18.456066,18.456066,.05,.05,.05,0,0,0,0,0,0,0,0,3.5268371,0,55.34,54.6,54.2,57.49,10,1,1,0,0,11,9,4,1,405,-113702.33,-6153.1914,0,0,6454.9297,0,2184.8047 +6051,7386,13199,13198,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,2,-1,109.33598,-9,-9,-9,2021,6,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,55.34,54.6,8.333333333333334,1,1,0,0,0,9,4,1,405,-113702.33,-6153.1914,0,0,6454.9297,0,2184.8047 +6052,7387,13200,-9,13201,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.5507,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,0,794.66669,48496.941,0,42603.32,118984.96,0,0,2508.9814 +6052,7387,13201,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.9674826,8.8513727,0,0,0,-967.24548,0,2,2,2021,12,0,50,50,1,0,0,16.866909,16.866909,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,60.95,-9,-9,5,1,1,0,0,6,4,4,0,794.66669,48496.941,0,42603.32,118984.96,0,0,2508.9814 +6052,7387,13202,-9,13201,-9,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.7836,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,794.66669,48496.941,0,42603.32,118984.96,0,0,2508.9814 +6053,7388,13203,-9,13204,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.0745,-9,1,-9,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.27,67.29000000000001,-9,-9,5,4,2,0,0,1,9,4,0,425,408320.03,52948.59,693268.81,291769.25,2625.4626,1194.2239,2177.4402 +6053,7388,13204,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.4979649,8.646966,0,0,0,-955.7948,0,2,-9,2021,10,0,38,38,1,1,0,16.537247,16.537247,0,0,.05,0,0,0,0,7,1,1,0,0,0,50,55,-9,-9,8,3,4,0,0,10,9,4,0,425,408320.03,52948.59,693268.81,291769.25,2625.4626,1194.2239,2177.4402 +6053,7388,13205,-9,13204,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.1514,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,9,4,0,425,408320.03,52948.59,693268.81,291769.25,2625.4626,1194.2239,2177.4402 +6054,7389,13206,13207,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,8.217391,8.49156,0,7,0,72.215607,0,-9,-9,2021,10,1,40,40,1,1,0,12.790497,12.790497,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.15,52.91,39.15,41.42,10,1,1,0,0,10,11,4,1,679,281503.06,250304.55,108267.13,59847.883,0,0,2226.9214 +6054,7389,13207,13206,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,6.7642608,7.278502,0,7,0,132.07457,0,-9,-9,2021,11,0,18,26,1,0,0,7.5673003,7.5673003,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,41.42,58.15,52.91,6.666666666666667,1,1,0,0,10,11,4,1,679,281503.06,250304.55,108267.13,59847.883,0,0,2226.9214 +6054,7390,13208,-9,13207,13206,1,0,24,0,0,0,2,2,-9,0,4,7.6673574,7.538362,0,0,0,-888.08044,0,3,3,2021,11,0,40,36,1,2,1,4.6830316,4.6830316,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,1,1,0,0,1,11,3,1,894,47434.422,0,0,0,0,0,124.98454 +6055,7391,13209,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.505928,8.5251112,6.1031656,0,0,-921.27039,0,3,3,2021,17,5,43,47,1,5,0,11.745417,11.745417,0,0,0,0,0,0,0,0,1,1,0,7.448297,6.4128127,38.31,41.83,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,1207,366711.53,0,250961.63,11907.272,0,134.72897,2468.373 +6056,7392,13210,13211,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,6.2033811,6.3897562,0,30,-4,-80.516037,0,3,2,2021,6,0,8,10,1,0,0,6.3396993,6.3396993,0,0,0,0,0,0,0,2,0,0,0,6.3662734,0,57.16,56.15,48.45,57.49,8.333333333333334,1,1,0,0,9,7,5,1,168.5,1928127.5,854607.25,498909.88,0,0,0,4531.0488 +6056,7392,13211,13210,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,9.1513777,9.0987511,30,4,66.366966,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.5265322,8.9475594,48.45,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,7,5,1,168.5,1928127.5,854607.25,498909.88,0,0,0,4531.0488 +6057,7393,13212,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2531023,8.2486401,0,0,0,-979.57867,0,-9,-9,2021,6,0,38,38,1,0,0,8.9062815,8.9062815,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,660,155759.23,39143.625,208492.48,78761.719,18781.166,0,1036.015 +6058,7394,13213,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2028666,7.9861679,0,0,0,-1014.7873,0,3,3,2021,12,0,37,37,1,0,0,12.53715,12.53715,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.82,46.7,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,629,281653.78,192686.81,129446.86,52261.84,4027.8362,1122.7786,1361.3411 +6059,7395,13214,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.4134874,8.1330853,0,0,0,-935.96765,0,3,2,2021,2,0,46,49,1,0,0,10.386224,10.386224,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,3246,-114057.7,-32994.188,0,0,0,8950.6738,1900.3071 +6060,7396,13215,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.1210709,6.8048167,0,0,0,-1082.2416,0,2,2,2021,12,0,16,17,1,0,0,7.6109319,7.6109319,0,0,0,0,0,0,0,0,1,1,0,0,0,51.94,55.88,-9,-9,3.333333333333333,3,4,0,0,2,6,2,0,214,98452.781,0,184522.55,44502.16,1521.1187,0,1436.968 +6060,7396,13216,-9,13215,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-962.32532,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,4,2,-9,0,0,6,2,0,214,98452.781,0,184522.55,44502.16,1521.1187,0,1436.968 +6061,7397,13217,13218,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8779082,6.5487442,0,38,0,10.918363,0,3,3,2021,8,0,20,18,1,0,0,5.808526,5.808526,0,0,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,54.04,47.89,10,1,1,0,0,7,7,4,1,188.5,691871.13,256548.5,327237.5,0,0,0,1951.8229 +6061,7397,13218,13217,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5954704,8.7605219,0,38,0,5.3486662,0,3,3,2021,12,2,50,55,1,2,0,14.104204,14.104204,0,0,0,0,0,0,0,0,0,0,0,0,0,54.04,47.89,54.9,54.53,8.333333333333334,1,1,0,0,9,7,4,1,188.5,691871.13,256548.5,327237.5,0,0,0,1951.8229 +6061,7398,13219,-9,13217,13218,1,0,32,0,0,0,2,2,-9,0,2,8.3973312,8.2890062,0,0,0,-999.53998,0,2,2,2021,22,6,45,45,1,6,1,8.7702408,8.7702408,0,0,0,0,0,0,0,0,0,0,0,0,0,36.19,55.28,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,255,34080.73,0,0,0,0,0,374.29346 +6062,7399,13220,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.8992376,7.8011165,0,0,-904.66327,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.3245888,8.1609983,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1139,466794.72,325277.56,114160.13,0,0,0,6913.938 +6063,7400,13221,13222,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.5452938,9.0562496,0,24,4,79.518814,0,2,3,2021,11,0,40,39,1,0,0,20.48415,20.48415,.05,.05,0,0,0,0,0,0,1,1,0,2.9643579,0,51.18,42.92,52.88,56.68,5,2,3,0,0,12,9,4,1,731,291183.34,268709,304325.25,179958.38,0,647.17883,4172.8652 +6063,7400,13222,13221,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.8103533,7.8898268,0,24,-4,63.202576,0,3,3,2021,11,0,25,33,1,0,0,10.573801,10.573801,.05,.05,0,0,0,0,0,0,1,1,0,3.019578,0,52.88,56.68,51.18,42.92,8.333333333333334,2,3,0,0,13,9,4,1,731,291183.34,268709,304325.25,179958.38,0,647.17883,4172.8652 +6064,7401,13223,13224,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,6.4615626,6.8009005,0,7,9,19.617517,0,1,1,2021,15,5,16,5,1,5,0,6.9077468,6.9077468,0,0,0,0,0,0,0,7,1,1,0,0,0,47.56,48.93,52.37,56.93,6.666666666666667,1,1,0,0,8,12,3,1,136.5,258045.25,234874.19,0,0,17930.105,0,2634.728 +6064,7401,13224,13223,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.106823,8.2327394,0,7,0,-115.90772,0,-9,-9,2021,9,0,30,30,1,0,0,11.683235,11.683235,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,47.56,48.93,8.333333333333334,1,1,0,0,8,12,3,1,136.5,258045.25,234874.19,0,0,17930.105,0,2634.728 +6065,7402,13225,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1062.1375,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,1.8657488,0,0,1,1,0,0,0,41.25,50.19,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,1505,166691.69,0,0,0,0,0,134.54964 +6066,7403,13226,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,3,0,0,0,0,0,-970.33295,0,2,-9,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.23,35.53,-9,-9,5,1,1,0,0,0,4,1,0,736,99356.07,0,131099.34,34355.574,0,0,1080.6493 +6067,7404,13227,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2487249,8.5921755,0,0,0,-928.65942,0,3,-9,2021,2,0,44,38,1,0,0,9.7564173,9.7564173,.05,.05,0,0,0,0,0,0,1,1,0,7.1063352,0,62.66,52.4,-9,-9,10,3,4,0,0,9,8,4,1,707,399868.69,525169.19,0,0,0,0,1656.8452 +6068,7405,13228,13229,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.8393755,9.1461143,5.4411383,10,-5,-8.3448496,0,2,2,2021,9,0,42,42,1,0,0,26.006147,26.006147,0,0,0,0,0,0,0,0,1,1,0,5.4769559,5.9249115,58.72,51.29,59.54,46.05,10,1,1,0,0,12,9,5,1,456,350864.53,0,361807.5,0,0,0,3971.313 +6068,7405,13229,13228,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,5.2671084,5.7593393,10,5,6.5289464,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6279049,59.54,46.05,58.72,51.29,8.333333333333334,1,1,0,0,7,9,5,1,456,350864.53,0,361807.5,0,0,0,3971.313 +6069,7406,13230,13231,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.925036,7.2429457,0,4,6,-26.680695,-9,-9,-9,2021,8,0,72,0,1,0,0,4.289979,4.289979,0,0,0,0,0,0,0,0,0,0,0,7.1537213,0,57.16,56.15,35.93,55.1,8.333333333333334,1,1,0,0,5,12,3,0,711.5,185966.81,6604.6719,0,0,0,3380.2705,3509.3274 +6069,7406,13231,13230,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.1158166,7.1118135,0,4,-6,12.68545,0,2,2,2021,8,0,40,40,1,0,0,3.782094,3.782094,0,0,0,0,0,0,0,0,0,0,0,6.9118047,0,35.93,55.1,57.16,56.15,8.333333333333334,1,1,0,0,11,12,3,0,711.5,185966.81,6604.6719,0,0,0,3380.2705,3509.3274 +6070,7407,13232,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,9.1911001,9.1154795,0,0,0,-1032.3411,0,2,2,2021,10,0,72,84,1,0,0,18.42149,18.42149,0,0,0,0,0,0,0,0,1,1,0,5.2573805,0,53.12,53.98,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,401,93755.781,0,138382.88,98967.992,0,0,3914.6707 +6071,7408,13233,13235,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.4845877,8.5568161,0,20,-1,-39.151863,0,3,2,2021,8,0,45,50,1,0,0,11.865448,11.865448,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.15,52.91,17.63,68.89,8.333333333333334,1,1,0,0,10,1,5,1,541,212975.56,73907.961,222778.97,57720.742,14399.469,312.44443,3749.4065 +6071,7408,13234,-9,13235,13233,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-768.51263,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.57348001,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,5,1,541,212975.56,73907.961,222778.97,57720.742,14399.469,312.44443,3749.4065 +6071,7408,13235,13233,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.841363,9.0275068,0,20,1,-135.29311,0,2,2,2021,26,12,50,60,1,12,0,16.661737,16.661737,.05,.05,0,0,0,0,0,2,1,1,0,0,0,17.63,68.89,58.15,52.91,3.333333333333333,1,1,0,0,10,1,5,1,541,212975.56,73907.961,222778.97,57720.742,14399.469,312.44443,3749.4065 +6072,7409,13236,13237,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,35,-7,0,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.6568971,0,33.13,48.09,32.81,43.81,0,1,1,0,0,6,5,1,1,1824.5,561909.13,148679.89,378526.63,0,0,0,843.63684 +6072,7409,13237,13236,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,34,7,0,0,-9,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,16.866793,0,27,1,1,0,2.8380485,0,32.81,43.81,33.13,48.09,0,1,1,0,0,6,5,1,1,1824.5,561909.13,148679.89,378526.63,0,0,0,843.63684 +6072,7410,13238,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-932.82037,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,158.08141,0,0,1,1,0,0,0,66.44,47.81,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,2510,65948.273,0,0,0,0,0,1203.0977 +6073,7411,13239,13240,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.5977149,6.5173302,44,0,-43.793026,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1636243,54.37,54.8,48.38,45.18,8.333333333333334,1,1,0,0,7,7,2,1,527.5,1681220.5,635627,935011.38,0,4391.9595,0,1279.1511 +6073,7411,13240,13239,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.4545121,6.1939683,44,0,-49.989822,0,3,3,2021,6,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7112551,48.38,45.18,54.37,54.8,8.333333333333334,1,1,0,0,9,7,2,1,527.5,1681220.5,635627,935011.38,0,4391.9595,0,1279.1511 +6074,7412,13241,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.899003,9.0644598,0,0,0,-984.90045,0,-9,-9,2021,13,2,48,45,1,2,0,21.453238,21.453238,.05,.05,0,0,0,0,0,0,0,0,0,3.4427118,0,38.45,60.79,-9,-9,6.666666666666667,1,1,0,0,11,8,5,0,738,-74726.031,108884.4,0,0,1584.0598,2465.8811,3010.4407 +6075,7413,13242,13243,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.6108508,6.5858264,51,-4,66.058777,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,9.5530167,0,0,1,1,0,0,6.6281857,58.05,25.05,51.36,41.98,6.666666666666667,1,1,0,0,5,2,2,0,685.5,388565.25,339671.34,79436.375,0,0,0,2516.824 +6075,7413,13243,13242,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,7.2965403,7.0621095,51,4,-91.010353,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2788391,6.911418,51.36,41.98,58.05,25.05,10,1,1,0,0,0,2,2,0,685.5,388565.25,339671.34,79436.375,0,0,0,2516.824 +6076,7414,13244,13245,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.9919605,7.006454,49,0,-84.047997,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4409795,0,0,1,1,0,0,6.8416405,56.28,47.53,58.3,52.91,6.666666666666667,1,1,0,0,4,11,2,1,429.5,766618.88,326468.88,193834.78,0,17.073608,0,1778.8954 +6076,7414,13245,13244,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,49,0,52.236561,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.3,52.91,56.28,47.53,8.333333333333334,1,1,0,0,0,11,2,1,429.5,766618.88,326468.88,193834.78,0,17.073608,0,1778.8954 +6077,7415,13246,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8669815,8.5271578,0,0,0,-1045.5753,0,2,2,2021,10,0,41,43,1,0,0,17.872242,17.872242,0,0,0,0,0,0,0,0,0,0,0,7.3181424,0,47.75,41.56,-9,-9,6.666666666666667,1,1,0,0,12,9,5,0,1773,-19550.563,0,0,0,0,0,2583.093 +6078,7416,13247,13248,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,8.7696495,8.8634701,38,9,-140.64665,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,76.13929,0,0,1,1,0,0,8.7757587,62.81,36.34,57.73,54.53,8.333333333333334,1,1,0,0,0,8,5,1,427.5,1880246,1116944.5,507034,0,0,0,7559.4336 +6078,7416,13248,13247,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8337097,8.2443724,40,0,-114.8159,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3129702,8.2644224,57.73,54.53,62.81,36.34,8.333333333333334,1,1,0,0,9,8,5,1,427.5,1880246,1116944.5,507034,0,0,0,7559.4336 +6079,7417,13249,13250,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.6158371,7.6831098,0,37,-1,-6.4102917,0,3,2,2021,10,0,40,40,1,0,0,5.3989029,5.3989029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,48.82,47.62,3.333333333333333,2,3,0,0,11,8,3,1,843.5,363301.06,-13469.582,290697.75,48371.117,0,0,1409.3521 +6079,7417,13250,13249,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.52595,7.5791926,0,37,1,15.242182,0,3,2,2021,10,0,25,20,1,0,0,9.5063457,9.5063457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.82,47.62,55.36,51.57,6.666666666666667,2,3,0,0,13,8,3,1,843.5,363301.06,-13469.582,290697.75,48371.117,0,0,1409.3521 +6079,7418,13251,-9,13250,13249,1,0,29,0,0,0,2,2,-9,0,2,6.4462905,6.6417494,0,0,0,-979.45325,0,2,2,2021,11,4,7,0,1,4,1,10.052897,10.052897,0,0,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,-9,-9,6.666666666666667,2,3,0,0,8,8,2,1,889,16446.43,0,0,0,0,0,178.9848 +6079,7419,13252,-9,13250,13249,1,0,21,0,0,0,2,2,-9,0,4,7.47014,7.5108967,4.8703403,0,0,-907.08344,0,3,3,2021,22,8,38,44,1,8,1,6.4230056,6.4230056,0,0,0,0,0,0,0,0,0,0,0,4.3502855,0,57.06,55.24,-9,-9,10,2,3,0,0,5,8,3,1,2034,-150379.41,0,0,0,0,0,849.77625 +6080,7420,13253,13254,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.9174771,8.0212746,5.4097214,11,0,34.3153,0,3,3,2021,7,0,30,30,1,0,0,12.967897,12.967897,.05,.05,0,0,0,0,0,0,0,0,0,0,5.3811111,57.33,53.46,54.58,46.41,1.666666666666667,1,1,0,0,11,12,5,1,2581,1455875.3,1047021.4,168510.97,0,0,0,2945.4468 +6080,7420,13254,13253,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3205185,8.2950592,0,11,0,-123.16077,0,3,3,2021,7,0,35,38,1,0,0,13.662509,13.662509,0,0,0,0,0,0,0,7,0,0,0,7.171061,0,54.58,46.41,57.33,53.46,6.666666666666667,1,1,0,0,12,12,5,1,2581,1455875.3,1047021.4,168510.97,0,0,0,2945.4468 +6081,7421,13255,13256,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.2934961,7.912951,0,12,-8,79.651169,0,2,3,2021,23,10,38,38,1,10,0,14.428111,14.428111,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.64,60.82,46.56,50.26,3.333333333333333,1,1,0,1,12,5,4,1,794.5,1168229.5,1079601.9,167303.48,8688.6152,34662.734,0,2671.7373 +6081,7421,13256,13255,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.393198,8.0684872,0,12,8,-32.831841,0,2,3,2021,12,0,40,47,1,0,0,10.218745,10.218745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.56,50.26,23.64,60.82,6.666666666666667,1,1,0,0,12,5,4,1,794.5,1168229.5,1079601.9,167303.48,8688.6152,34662.734,0,2671.7373 +6081,7422,13257,-9,13255,13256,1,1,25,0,0,0,1,1,-9,0,4,7.7879987,7.6281691,0,0,0,-997.64154,0,2,2,2021,14,3,38,38,1,3,1,7.7074394,7.7074394,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,60.82,-9,-9,6.666666666666667,1,1,0,1,10,5,3,1,291,187983.78,83964.508,0,0,0,0,1313.8666 +6081,7423,13258,-9,13255,13256,1,0,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-965.31946,-9,2,2,2021,34,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,7.49,55.32,-9,-9,3.333333333333333,1,1,0,1,0,5,1,1,1810,121919.87,0,0,0,0,0,0 +6081,7424,13259,-9,13255,13256,1,0,18,0,0,1,3,0,0,0,3,0,0,0,0,0,-931.88824,-9,2,2,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.54,54.48,-9,-9,1.666666666666667,1,1,0,0,0,5,1,1,79,-25615.684,0,0,0,0,0,0 +6082,7425,13260,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.3193054,8.5726337,0,0,-1104.3884,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5625653,8.4608583,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,1051,975580.5,729671.5,353770.66,0,0,0,2982.7139 +6083,7426,13261,13263,-9,-9,1,0,51,1,2,0,2,2,-9,0,3,0,0,0,7,-7,-169.21773,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,50,49,7,2,3,0,0,1,8,5,1,219.66667,467016.94,324940.25,398399.84,188199.27,0,1245.4497,4300.9004 +6083,7426,13262,-9,13261,13263,1,0,14,1,2,1,3,0,-9,0,5,0,0,0,0,0,-821.1756,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,5,1,219.66667,467016.94,324940.25,398399.84,188199.27,0,1245.4497,4300.9004 +6083,7426,13263,13261,-9,-9,1,1,58,1,2,0,2,2,-9,0,3,9.2828493,9.1355782,0,32,7,-118.64988,0,-9,-9,2021,10,0,50,20,1,1,0,26.992163,26.992163,0,0,.05,0,0,0,0,0,1,1,0,0,0,50,49,47,49,7,2,3,0,0,12,8,5,1,219.66667,467016.94,324940.25,398399.84,188199.27,0,1245.4497,4300.9004 +6084,7427,13264,13265,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.4685326,8.266901,0,5,-4,-22.156122,0,-9,-9,2021,8,0,44,35,1,0,0,7.7661452,7.7661452,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,52.08,55.93,8.333333333333334,1,1,0,0,5,11,4,1,1395.3334,297297.66,78155.984,294950.88,81286.922,13779.34,0,4691.9995 +6084,7427,13265,13264,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.7069893,8.5353613,0,5,4,50.661079,0,2,2,2021,12,0,40,45,1,0,0,14.73179,14.73179,.05,.05,0,0,0,0,0,0,1,1,0,4.1367617,0,52.08,55.93,47.46,52.7,6.666666666666667,1,1,0,0,10,11,4,1,1395.3334,297297.66,78155.984,294950.88,81286.922,13779.34,0,4691.9995 +6084,7427,13266,-9,-9,13265,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.78821,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,1395.3334,297297.66,78155.984,294950.88,81286.922,13779.34,0,4691.9995 +6084,7428,13267,-9,-9,13265,1,1,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1007.5966,0,2,1,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,4,11,1,1,1227,0,0,0,0,0,0,-133.797 +6085,7429,13268,13270,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.6000767,9.032835,0,29,6,-33.714745,0,-9,2,2021,11,0,45,50,1,0,0,15.454,15.454,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,49.86,55.31,8.333333333333334,1,1,0,0,10,4,5,1,1545,2843254.3,2279258.3,464760.88,67.501305,25.811941,3555.2708,4102.5034 +6085,7429,13269,-9,13270,13268,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-933.77429,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,1,4,5,1,1545,2843254.3,2279258.3,464760.88,67.501305,25.811941,3555.2708,4102.5034 +6085,7429,13270,13268,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8474703,8.388299,0,30,-6,-10.22351,0,2,2,2021,8,0,42,43,1,0,0,18.467031,18.467031,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.86,55.31,44.02,60.7,8.333333333333334,1,1,0,0,10,4,5,1,1545,2843254.3,2279258.3,464760.88,67.501305,25.811941,3555.2708,4102.5034 +6085,7430,13271,-9,13270,13268,1,1,24,0,0,0,1,1,-9,0,5,8.0692492,7.6181898,0,0,0,-990.94159,0,1,2,2021,14,3,35,35,1,3,1,8.1939154,8.1939154,0,0,0,0,0,0,0,0,1,1,0,0,0,35.53,63.81,-9,-9,3.333333333333333,1,1,0,0,2,4,3,1,193,-71598.078,0,0,0,0,0,393.68689 +6086,7431,13272,-9,13273,-9,1,1,28,0,0,0,2,2,-9,0,4,7.5538564,7.5076981,0,0,0,-1111.0372,0,2,-9,2021,10,0,48,20,1,1,1,5.1883698,5.1883698,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,2,0,0,1,8,3,0,185,-112164.9,0,0,0,0,0,1752.6774 +6086,7432,13273,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.2919922,8.2717724,0,0,0,-908.6427,0,3,-9,2021,10,1,43,40,1,1,0,8.7854662,8.7854662,0,0,0,0,0,0,0,0,0,0,0,0,0,55.7,26.92,-9,-9,6.666666666666667,4,2,0,0,4,8,4,0,761,497855.75,143974.73,322741.84,77078.602,0,0,1479.9435 +6086,7433,13274,-9,13273,-9,1,0,24,0,0,0,2,2,-9,0,4,7.9119711,7.9068742,0,0,0,-1058.8929,0,2,-9,2021,13,3,41,65,1,3,1,9.4947147,9.4947147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.33,47.96,-9,-9,6.666666666666667,4,2,0,0,3,8,4,0,888,-148624.25,123733.73,0,0,0,0,883.96777 +6087,7434,13275,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-932.5589,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.69,44.14,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,211,102025.2,0,0,0,0,0,1039.2933 +6088,7435,13276,13277,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,7.8600893,7.8532834,25,-5,10.115285,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.031867,7.7831426,56.74,33.83,27.64,32.64,8.333333333333334,1,1,0,0,0,10,3,1,835.5,931348.13,690068.31,268523.06,12103.575,0,4100.8379,3385.1274 +6088,7435,13277,13276,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.3959789,7.4069433,24,5,30.484392,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2164237,7.2582192,27.64,32.64,56.74,33.83,1.666666666666667,4,2,0,0,0,10,3,1,835.5,931348.13,690068.31,268523.06,12103.575,0,4100.8379,3385.1274 +6089,7436,13278,13279,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.0925946,6.1923738,0,33,-8,-118.55401,0,2,3,2021,10,1,35,35,1,1,0,2.2866983,2.2866983,0,0,0,0,0,0,0,2,0,0,0,0,0,52.4,52.91,58.32,50.22,6.666666666666667,1,1,0,0,14,12,4,1,905,530776.13,615220.63,0,0,3202.7029,760.9126,1871.8 +6089,7436,13279,13278,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.2042866,7.8967996,0,33,8,-.70890623,0,2,2,2021,7,0,40,72,1,0,0,10.983941,10.983941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,52.4,52.91,8.333333333333334,1,1,0,0,14,12,4,1,905,530776.13,615220.63,0,0,3202.7029,760.9126,1871.8 +6090,7437,13280,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,6.9452434,7.6282701,6.8732562,0,0,-982.48871,0,2,2,2021,6,0,20,20,1,0,0,6.0456605,6.0456605,0,0,0,0,0,0,0,0,1,1,0,0,7.0214043,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,540,605652.63,313124.25,251174.81,0,0,0,1863.8163 +6091,7438,13281,13282,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.341661,7.3753071,0,11,-12,13.887155,0,-9,-9,2021,13,1,24,24,1,1,0,8.5071669,8.5071669,0,0,0,0,0,0,0,0,1,1,0,0,0,40.88,59.72,44.02,28.89,3.333333333333333,1,1,0,1,7,6,3,0,628,203362.06,107476.29,178850.84,35195.547,0,807.67328,2206.7739 +6091,7438,13282,13281,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.8673763,6.900291,11,12,-32.16254,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,1,0,9.830554,0,7,1,1,0,0,6.6645236,44.02,28.89,40.88,59.72,5,1,1,0,1,8,6,3,0,628,203362.06,107476.29,178850.84,35195.547,0,807.67328,2206.7739 +6092,7439,13283,13284,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2548428,8.0299149,0,27,-1,31.401392,0,3,3,2021,9,0,40,45,1,0,0,9.6398764,9.6398764,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,54.1,59.11,8.333333333333334,1,1,0,0,13,9,3,1,686,603036.75,338132.25,256807.69,3361.0959,0,5634.8232,1388.0427 +6092,7439,13284,13283,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,0,0,27,1,12.839769,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.37,54.8,1.666666666666667,1,1,0,0,11,9,3,1,686,603036.75,338132.25,256807.69,3361.0959,0,5634.8232,1388.0427 +6093,7440,13285,13286,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8161821,7.9605923,0,8,3,-6.3327413,0,-9,-9,2021,17,5,30,30,1,5,0,8.2472391,8.2472391,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.1,40.84,45.59,42.88,8.333333333333334,2,3,0,0,10,8,3,0,1603,353210.09,-33795.945,370926.34,0,0,0,1864.5789 +6093,7440,13286,13285,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,0,0,0,31,-3,-80.041763,0,3,3,2021,11,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.59,42.88,44.1,40.84,8.333333333333334,2,3,1,0,1,8,3,0,1603,353210.09,-33795.945,370926.34,0,0,0,1864.5789 +6093,7441,13287,-9,13286,13285,1,0,25,0,0,0,1,1,-9,0,4,0,0,0,0,0,-848.44525,0,3,2,2021,10,1,0,40,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.38,54.89,-9,-9,10,2,3,1,0,3,8,1,0,145,62696.563,0,0,0,0,0,0 +6093,7442,13288,-9,13286,13285,1,1,19,0,0,0,2,2,-9,0,4,7.7445598,7.8697019,0,0,0,-980.20624,0,3,2,2021,7,0,25,20,1,0,1,12.130801,12.130801,0,0,0,0,0,0,0,0,1,1,0,0,0,54.19,53.75,-9,-9,8.333333333333334,2,3,0,0,2,8,3,0,3877,-70705.344,0,0,0,0,0,493.72162 +6094,7443,13289,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.4016366,6.5651288,0,0,-991.64526,0,2,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9230571,6.5257654,28.74,42.27,-9,-9,3.333333333333333,1,1,0,0,9,9,2,1,1737,261470.44,245498.19,0,0,0,0,1379.7968 +6095,7444,13290,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.7347279,7.7667637,0,0,-1098.0369,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,.53483796,0,27.818205,0,1,1,0,0,7.3787775,67.5,21.89,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,614,389026.75,94820.797,302187.31,0,0,0,1149.1117 +6096,7445,13291,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,8.0934572,7.9708295,0,0,-1026.2958,0,-9,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6923599,7.8528166,46.22,31.87,-9,-9,8.333333333333334,1,1,0,0,6,8,4,1,637,2166426.8,392729.22,1247849.5,0,0,0,1283.3494 +6097,7446,13292,13293,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.6922712,8.3418322,0,11,0,-138.17735,0,-9,-9,2021,11,2,107,-9,1,2,0,7.555521,7.555521,.05,.05,0,0,0,0,0,19,0,0,0,0,0,60.29,52.11,30.1,43.29,8.333333333333334,1,1,0,0,13,5,5,0,1361,361017.44,28736.961,283713.72,179128.5,0,0,3728.3801 +6097,7446,13293,13292,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,7.120697,6.8988757,0,11,0,10.552439,0,-9,-9,2021,19,7,20,20,1,7,0,7.0885458,7.0885458,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.1,43.29,60.29,52.11,1.666666666666667,1,1,0,1,7,5,5,0,1361,361017.44,28736.961,283713.72,179128.5,0,0,3728.3801 +6098,7447,13294,-9,-9,13295,1,1,54,0,0,0,2,2,-9,0,4,7.9315214,8.1063194,0,0,0,-1017.8572,0,3,3,2021,10,0,40,40,1,0,0,9.2840996,9.2840996,0,0,0,0,0,0,0,0,1,1,0,3.0844491,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,414,177701.16,0,0,0,0,0,1018.0888 +6098,7448,13295,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.21393,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.846406,0,55,45,-9,-9,8,1,1,0,0,0,2,1,1,494,-68178.852,0,0,0,17331.113,0,352.78479 +6099,7449,13296,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.2332172,7.0714488,0,0,-1120.099,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0593939,6.9691882,59.18,38.87,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,326,10889.345,0,0,0,0,0,1054.7684 +6100,7450,13297,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.9804845,6.5081534,0,0,-1088.4315,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.25145492,6.9123282,55.75,29.63,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,333,291281.28,82312.688,138104.02,0,0,0,913.09216 +6101,7451,13298,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.8557024,7.7821999,0,0,0,-1092.9153,0,2,2,2021,10,1,45,40,1,1,0,6.6752243,6.6752243,0,0,0,0,0,0,0,0,0,0,0,0,0,54.94,53.18,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,1214,162673.03,0,0,0,0,0,1113.9728 +6102,7452,13299,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,8.0920601,7.8441105,0,0,-872.33716,0,3,2,2021,10,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.318131,7.5803833,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,9,2,3,1,332,1055656.6,847670.38,154377.36,0,0,0,1574.1021 +6103,7453,13300,13301,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,7.3897085,6.9476342,7,-10,-3.8843198,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.357856,1.9277809,20.283243,0,1,1,0,0,7.3038321,52.14,38.32,55,45,6.666666666666667,1,1,0,0,0,13,3,1,501.5,546777.19,384131.25,128224.67,0,0,0,2962.0649 +6103,7453,13301,13300,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.2232966,7.3489399,7,10,-55.926231,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.437017,0,19.659798,14.5,1,1,0,0,7.5524468,55,45,52.14,38.32,8,1,1,0,0,3,13,3,1,501.5,546777.19,384131.25,128224.67,0,0,0,2962.0649 +6104,7454,13302,-9,13303,-9,1,1,42,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1054.2307,-9,3,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.51,35.73,-9,-9,10,1,1,1,0,0,13,1,1,338,-201890.19,0,0,0,2546.4299,0,1408.6427 +6104,7455,13303,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-993.2655,0,3,3,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.7,35.28,-9,-9,1.666666666666667,1,1,0,0,0,13,1,1,1158,-20188.188,0,0,0,0,0,1026.6595 +6105,7456,13304,13305,-9,-9,1,1,63,0,3,0,2,2,-9,0,3,8.2451658,8.2356939,4.9092789,40,3,-58.897812,0,2,3,2021,11,3,40,40,1,3,0,11.010011,11.010011,.05,.05,0,0,0,0,0,2,1,1,0,6.3724656,5.0048199,61.1,27.44,49.35,59.64,8.333333333333334,1,1,0,0,9,2,3,1,634,344974.91,335361.75,0,0,1248.1199,18839.746,2692.6104 +6105,7456,13305,13304,-9,-9,1,0,60,0,3,0,1,1,-9,0,4,7.42623,7.5571232,5.1226544,40,-3,-83.384758,0,3,3,2021,10,0,17,20,1,0,0,14.168109,14.168109,.05,.05,0,0,0,0,0,27,1,1,0,3.6910739,4.9917226,49.35,59.64,61.1,27.44,8.333333333333334,1,1,0,0,9,2,3,1,634,344974.91,335361.75,0,0,1248.1199,18839.746,2692.6104 +6105,7457,13306,-9,13305,13304,1,1,33,0,3,0,2,2,-9,1,5,6.6924448,6.7808814,0,0,0,-1028.7524,0,1,2,2021,3,0,19,21,1,0,1,5.0737033,5.0737033,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,9,2,2,1,1944,-1434.0696,4354.6123,0,0,0,100.56402,1536.0587 +6105,7458,13307,-9,13308,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.2477,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6105,7458,13308,-9,13305,13304,1,0,35,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1087.8018,0,1,2,2021,20,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.68,20.24,-9,-9,1.666666666666667,1,1,0,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6105,7458,13309,-9,13308,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.84857,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6105,7458,13310,-9,13308,-9,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.73627,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,1,430.5,0,0,0,0,0,0,1354.9862 +6106,7459,13311,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.2656164,8.0643473,0,0,0,-795.38879,0,2,1,2021,11,0,12,12,1,0,0,33.883301,33.883301,.05,.05,0,0,0,0,0,0,0,0,0,7.5008593,0,32.76,57.87,-9,-9,5,1,1,0,0,7,5,4,1,389,-2426.679,-65005.504,96592.734,57375.074,0,452.37704,2682.1543 +6107,7460,13312,13313,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.6948166,8.7617111,6.5935879,8,-1,-49.353516,0,2,1,2021,9,0,36,35,1,0,0,12.700084,12.700084,.05,.05,.05,0,0,0,0,0,0,0,0,4.8010368,6.7552462,54,54,39.76,53.33,8,1,1,0,0,1,12,5,0,402,1187250,1139618.8,195357.16,33353.605,9012.0098,7332.6865,4067.8599 +6107,7460,13313,13312,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.0304632,8.1183529,0,40,1,-77.635658,0,2,1,2021,12,3,32,31,1,3,0,11.655499,11.655499,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.76,53.33,54,54,8.333333333333334,1,1,0,0,10,12,5,0,402,1187250,1139618.8,195357.16,33353.605,9012.0098,7332.6865,4067.8599 +6108,7461,13314,13315,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.3334446,8.0433521,0,8,2,-20.79917,0,2,2,2021,7,0,37,37,1,0,0,10.323729,10.323729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,38.41,52.67,8.333333333333334,1,1,0,0,8,13,5,1,1733.5,479104.63,364426.16,79512.469,0,2308.7646,2949.4893,3948.9775 +6108,7461,13315,13314,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.9146738,9.0152626,0,8,-2,59.209499,0,3,2,2021,13,1,38,37,1,1,0,19.036346,19.036346,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.41,52.67,54.96,53.17,1.666666666666667,1,1,0,0,8,13,5,1,1733.5,479104.63,364426.16,79512.469,0,2308.7646,2949.4893,3948.9775 +6108,7462,13316,-9,13315,13314,1,1,20,0,0,0,2,2,-9,0,3,7.7268291,7.4546428,0,0,0,-896.79108,0,1,1,2021,12,0,40,0,1,0,1,6.8487706,6.8487706,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,868,-287312.41,-5844.7793,0,0,8196.585,1454.5406,1265.8608 +6108,7463,13317,-9,13315,13314,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-936.94012,-9,1,1,2021,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.95,56.31,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,354,0,0,0,0,0,0,0 +6109,7464,13318,-9,-9,-9,1,0,19,1,0,1,2,0,-9,0,4,0,5.2425632,5.453496,0,0,-1139.8273,-9,-9,-9,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1708159,0,29.72,41.83,-9,-9,5,1,1,0,0,2,1,2,0,511,7239.0879,0,0,0,0,0,13.900797 +6109,7464,13319,-9,13318,-9,1,0,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1000.3325,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,1,2,0,511,7239.0879,0,0,0,0,0,13.900797 +6110,7465,13320,13321,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.5962801,8.5141945,0,12,-3,-67.905548,0,3,1,2021,8,0,22,22,1,0,0,28.36433,28.36433,.05,.05,0,0,0,0,0,42,1,1,0,0,0,44.7,53.68,42.43,49.22,8.333333333333334,1,1,0,0,14,9,5,1,1344,391455.81,21055.59,424740.16,0,3430.4822,0,4491.3521 +6110,7465,13321,13320,-9,-9,1,0,46,0,2,0,1,1,-9,1,3,8.5302401,8.3547812,0,12,3,5.4610701,0,2,3,2021,9,0,31,27,1,0,0,20.166269,20.166269,.05,.05,0,0,0,0,0,2,1,1,0,0,0,42.43,49.22,44.7,53.68,8.333333333333334,1,1,0,0,14,9,5,1,1344,391455.81,21055.59,424740.16,0,3430.4822,0,4491.3521 +6110,7465,13322,-9,13321,13320,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.0452,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1344,391455.81,21055.59,424740.16,0,3430.4822,0,4491.3521 +6111,7466,13323,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,6.8633571,6.6975951,0,0,-976.82562,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,3.6586995,0,0,1,1,0,4.0611062,6.5985312,58.71,20.26,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1376,69383.477,210398.56,0,0,0,0,1245.0879 +6112,7467,13324,13325,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.635437,8.0517874,10,2,102.49715,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2539101,7.4613132,57.73,54.53,46.03,50.54,8.333333333333334,1,1,0,0,0,2,3,1,945.5,1196849.1,648203.25,453344.94,0,0,0,1499.3943 +6112,7467,13325,13324,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,10,-2,-13.598399,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3246324,0,46.03,50.54,57.73,54.53,8.333333333333334,1,1,0,0,3,2,3,1,945.5,1196849.1,648203.25,453344.94,0,0,0,1499.3943 +6113,7468,13326,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.1788077,7.2300334,0,0,-953.06415,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.268949,7.2741327,64.38,15.22,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,445,-43621.707,127865.16,0,0,0,0,1658.3663 +6114,7469,13327,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,5,0,7.3736143,7.3450122,0,0,-992.13348,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6462994,7.688683,59.64,46.95,-9,-9,10,1,1,0,0,0,6,3,1,453,660653,188639.64,377680.81,0,0,0,463.58069 +6115,7470,13328,13329,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,56,-3,-109.77166,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38625634,0,51.98,28.98,59.86,42.52,8.333333333333334,1,1,0,0,0,1,3,1,350.5,681825.63,495481.25,300973.19,0,0,0,2990.9878 +6115,7470,13329,13328,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.1243238,7.9838419,56,3,50.024796,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6519322,8.2036505,59.86,42.52,51.98,28.98,8.333333333333334,1,1,0,0,0,1,3,1,350.5,681825.63,495481.25,300973.19,0,0,0,2990.9878 +6116,7471,13330,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1081.001,0,3,3,2021,25,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23.81,53.02,-9,-9,3.333333333333333,1,1,1,0,2,5,1,0,501,96475.391,28097.572,0,0,0,0,2031.2933 +6117,7472,13331,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.0880923,7.2170587,0,0,0,-1033.7407,0,2,2,2021,10,1,55,37,1,1,0,2.7007124,2.7007124,.05,.05,0,0,0,0,0,0,0,0,0,7.8087282,0,54.61,43.6,-9,-9,8.333333333333334,1,1,0,0,4,1,2,1,1245,-36854.719,24264.375,0,0,0,0,1900.8636 +6118,7473,13332,13333,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.5524554,7.1044188,0,11,15,44.211758,0,2,2,2021,10,1,24,25,1,1,0,6.5299416,6.5299416,0,0,0,0,0,0,0,0,0,0,0,3.9297302,0,48.28,53.42,48.87,58.55,8.333333333333334,1,1,0,0,14,5,4,1,509.5,174529.38,63057.801,194581.59,0,0,0,2359.4956 +6118,7473,13333,13332,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.4854794,8.4847565,0,11,-15,-38.083405,0,3,3,2021,12,0,58,50,1,0,0,8.2918215,8.2918215,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,48.28,53.42,8.333333333333334,1,1,0,0,13,5,4,1,509.5,174529.38,63057.801,194581.59,0,0,0,2359.4956 +6119,7474,13334,13335,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.0484734,8.4117241,46,0,37.882515,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.005692,8.1505938,54.2,57.49,51.65,52.38,8.333333333333334,1,1,0,0,7,10,4,1,110,1192006,839451.13,567269.19,186117.94,20002.016,4878.7842,3213.0847 +6119,7474,13335,13334,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,6.9184651,7.0119934,44,0,-67.72435,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8491569,7.1131873,51.65,52.38,54.2,57.49,10,1,1,0,0,6,10,4,1,110,1192006,839451.13,567269.19,186117.94,20002.016,4878.7842,3213.0847 +6120,7475,13336,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1026.1912,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.64,44.13,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,462,41156.734,0,0,0,0,0,1326.3068 +6121,7476,13337,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,2,7.7614222,8.0753937,0,0,0,-1009.0181,0,3,3,2021,11,0,30,30,1,0,0,10.649443,10.649443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.55,45.62,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,817,131200,112689.9,0,0,0,0,1274.3529 +6122,7477,13338,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4680262,8.5730762,0,0,0,-950.74921,0,-9,-9,2021,12,0,32,30,1,0,0,18.249529,18.249529,.05,.05,0,0,0,0,0,0,0,0,0,1.3548247,0,38.18,54.1,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,714,135426.16,82998.883,0,0,0,0,1755.2083 +6123,7478,13339,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,8.0678453,8.0116358,0,0,-954.31073,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6789093,8.1754608,56.35,51.16,-9,-9,10,1,1,0,0,0,2,4,1,374,678488.06,534039.44,162368.53,0,0,0,2040.7662 +6124,7479,13340,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.9474707,6.7097826,0,0,-891.14368,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.4014173,0,46.602238,0,1,1,0,6.1115084,7.3521414,54,51,-9,-9,10,1,1,0,0,0,5,3,1,403,1061523.6,215847.48,195092.64,0,0,0,918.29224 +6125,7480,13341,13342,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,10,0,-19.691357,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0635571,0,42.61,38.79,48.74,50.46,6.666666666666667,1,1,0,0,8,10,2,1,490.5,700172,93579.422,324090.81,0,0,0,1032.9252 +6125,7480,13342,13341,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.6097717,5.5931897,10,9,123.11092,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0025458,5.203371,48.74,50.46,42.61,38.79,8.333333333333334,1,1,0,0,12,10,2,1,490.5,700172,93579.422,324090.81,0,0,0,1032.9252 +6126,7481,13343,13345,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.0820394,6.92663,0,6,4,16.187838,-9,-9,-9,2021,9,0,20,0,1,0,0,5.4451303,5.4451303,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.77,57.75,27.95,47.88,10,2,3,0,0,8,8,2,0,486,406745.28,68766.641,188461.98,0,0,0,1371.1504 +6126,7481,13344,-9,13345,13343,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1003.2089,-9,3,2,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,1,8,2,0,486,406745.28,68766.641,188461.98,0,0,0,1371.1504 +6126,7481,13345,13343,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,29,-4,-151.3905,0,3,3,2021,17,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.95,47.88,41.77,57.75,6.666666666666667,2,3,0,0,0,8,2,0,486,406745.28,68766.641,188461.98,0,0,0,1371.1504 +6127,7482,13346,13347,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,6.4659491,6.4100895,11,-1,-127.41057,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0259051,6.2753363,43.41,50.06,29.78,17.81,6.666666666666667,1,1,0,0,0,11,3,1,523.5,548992.94,452018.06,172496.47,0,0,-84.092293,2452.9944 +6127,7482,13347,13346,-9,-9,1,1,77,0,0,0,1,1,-9,0,1,0,7.8693342,7.8864126,11,1,68.305206,0,3,3,2021,28,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0743103,8.3041134,29.78,17.81,43.41,50.06,1.666666666666667,1,1,0,0,0,11,3,1,523.5,548992.94,452018.06,172496.47,0,0,-84.092293,2452.9944 +6128,7483,13348,13349,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,9.5303812,9.6521406,0,8,1,61.498089,0,3,2,2021,19,7,55,50,1,7,0,35.846779,35.846779,0,0,0,0,0,0,0,0,0,0,0,6.5927987,0,35.22,56.72,46.98,59.35,6.666666666666667,1,1,0,0,10,11,5,1,809,2185411.8,907939.94,854560.63,370061.5,0,0,7736.873 +6128,7483,13349,13348,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.6107101,8.6754522,0,10,-1,-18.985542,0,1,1,2021,9,0,40,37,1,0,0,19.442879,19.442879,.05,.05,.05,0,0,0,0,0,0,0,0,1.7770888,0,46.98,59.35,35.22,56.72,8.333333333333334,1,1,0,0,10,11,5,1,809,2185411.8,907939.94,854560.63,370061.5,0,0,7736.873 +6128,7483,13350,-9,13348,13349,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.0369,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,809,2185411.8,907939.94,854560.63,370061.5,0,0,7736.873 +6129,7484,13351,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-981.97736,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.9347548,0,49.92,34.09,-9,-9,5,1,1,0,0,0,6,1,1,389,42059.277,0,0,0,0,0,1972.8784 +6129,7485,13352,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,4.0670948,3.7806649,0,0,-1029.7235,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7114589,4.1339092,48.67,32.02,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,775,351588,9955.4277,156947.16,0,0,0,1557.1053 +6130,7486,13353,13354,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,6.3269501,6.7683811,58,8,8.0112495,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6197972,55,45,52,45,8,2,3,0,0,0,8,2,1,271,208692.16,-10382.215,134655.16,0,0,0,1746.2043 +6130,7486,13354,13353,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,58,-8,88.273224,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52,45,55,45,8,2,3,0,0,0,8,2,1,271,208692.16,-10382.215,134655.16,0,0,0,1746.2043 +6130,7487,13355,-9,13354,13353,1,1,56,0,0,0,2,2,-9,0,3,8.327981,8.2300615,0,0,0,-1054.7161,0,3,3,2021,10,0,37,38,1,0,0,11.732014,11.732014,.05,.05,0,0,0,0,0,7,1,1,0,6.5074234,0,48.45,57.49,-9,-9,6.666666666666667,2,3,0,0,4,8,4,1,322,836283.81,801126.88,0,0,0,0,2346.2529 +6131,7488,13356,13357,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,44,-2,12.292667,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7586238,0,54.96,53.17,51.83,57.2,8.333333333333334,1,1,0,0,0,9,3,1,340,1136929,724916,334808.63,0,1875.1313,0,1120.8107 +6131,7488,13357,13356,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.5731854,7.8409362,44,2,42.862103,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0803757,7.8347526,51.83,57.2,54.96,53.17,8.333333333333334,1,1,0,0,0,9,3,1,340,1136929,724916,334808.63,0,1875.1313,0,1120.8107 +6132,7489,13358,13359,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,15,-1,23.849993,0,2,1,2021,30,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.87,21.25,52.99,51.28,1.666666666666667,1,1,0,0,4,4,4,1,489,172621.09,25892.148,0,0,0,5695.6636,3968.1294 +6132,7489,13359,13358,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7903013,8.9220781,0,15,1,-50.247124,0,2,2,2021,9,0,63,0,1,0,0,14.239352,14.239352,.05,.05,0,0,0,0,0,42,1,1,0,0,0,52.99,51.28,33.87,21.25,8.333333333333334,1,1,0,0,9,4,4,1,489,172621.09,25892.148,0,0,0,5695.6636,3968.1294 +6133,7490,13360,-9,13362,13361,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1125.1931,-9,2,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,0,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6133,7490,13361,13362,-9,-9,1,1,43,0,1,0,2,2,-9,0,5,9.0636444,8.9866247,0,7,3,-48.454517,0,-9,-9,2021,8,0,52,80,1,0,0,21.490137,21.490137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,60.12,54.8,8.333333333333334,1,1,0,0,5,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6133,7490,13362,13361,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.7178392,7.1893725,0,21,-3,10.75923,0,3,3,2021,6,0,24,24,1,0,0,7.8368106,7.8368106,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,51.73,58.82,10,1,1,0,0,7,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6133,7490,13363,-9,13362,13361,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.5637,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1717.75,497464.75,351799.69,209623.25,166968.2,12336.441,0,4323.6938 +6134,7491,13364,13365,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,7.5230427,7.0102015,48,-2,-100.77458,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3446851,67.65000000000001,19.06,54.63,58.83,8.333333333333334,1,1,0,0,0,7,4,1,1083.5,1241051.5,655260.19,337896.5,0,0,0,3731.6738 +6134,7491,13365,13364,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.3147917,7.8608699,48,2,107.81346,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4817238,8.1445227,54.63,58.83,67.65000000000001,19.06,8.333333333333334,1,1,0,0,8,7,4,1,1083.5,1241051.5,655260.19,337896.5,0,0,0,3731.6738 +6135,7492,13366,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.0098453,7.1583633,0,0,0,-1059.7411,0,2,1,2021,6,0,35,40,1,0,0,3.9067957,3.9067957,0,0,0,0,0,0,.55855453,0,1,1,0,0,0,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,8,10,2,0,109,61485.367,0,162037.97,0,0,0,764.94305 +6136,7493,13367,13371,-9,-9,1,0,39,1,3,0,1,1,-9,0,3,8.9381628,8.9807711,0,6,-2,-28.567238,0,-9,1,2021,9,0,12,5,1,0,0,65.594925,65.594925,.05,.05,.05,0,0,0,0,2,0,0,0,.7250632,0,50.18,47.09,44.85,48.15,8.333333333333334,1,1,0,0,8,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13368,-9,13367,13371,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1085.9097,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13369,-9,13367,13371,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-962.74146,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13370,-9,13367,13371,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.9946,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6136,7493,13371,13367,-9,-9,1,1,41,1,3,0,1,1,-9,0,3,9.5349884,9.8831253,0,6,2,18.231356,0,2,2,2021,11,0,50,45,1,0,0,40.550148,40.550148,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,44.85,48.15,50.18,47.09,6.666666666666667,1,1,0,0,8,9,5,1,612.40002,1273045,454084.56,512287.84,0,10981.785,0,7548.7876 +6137,7494,13372,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,0,0,0,0,0,-800.91852,1,2,2,2021,13,1,0,38,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.16,61.04,-9,-9,6.666666666666667,3,4,0,0,7,5,1,1,1095,0,0,0,0,0,0,320.05139 +6137,7495,13373,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,7.5968218,7.3082705,0,0,0,-984.97064,-9,3,-9,2021,7,0,20,0,1,0,1,11.04949,11.04949,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,7,5,3,1,2137,60910.211,0,0,0,0,0,712.61908 +6138,7496,13374,13377,-9,-9,1,1,44,0,2,0,2,2,-9,1,1,7.7058887,7.939806,0,1,1,85.718628,-9,2,2,2021,17,5,40,0,1,5,0,7.0370979,7.0370979,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,35.9,26.98,54.2,57.49,3.333333333333333,1,1,0,0,9,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7496,13375,-9,13377,13374,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.8264,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7496,13376,-9,13377,13374,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.21326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7496,13377,13374,-9,-9,1,0,43,0,2,0,2,2,-9,1,4,0,0,0,1,-1,-94.22496,-9,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,35.9,26.98,8.333333333333334,1,1,0,0,0,1,2,1,1288.5,14389.31,26581.238,83269.344,56957.992,0,3038.0491,2984.4153 +6138,7497,13378,-9,13377,13374,1,0,21,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1006.9302,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,1041,-49120.656,0,0,0,0,-150.95767,0 +6138,7498,13379,-9,13377,13374,1,0,20,0,2,1,2,0,-9,0,4,0,0,0,0,0,-863.92078,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.71,56.06,-9,-9,8.333333333333334,1,1,0,0,3,1,1,1,609,68340.102,0,0,0,0,-1333.5295,0 +6139,7499,13380,13381,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.0710821,7.8255973,0,7,-2,-54.387444,0,2,2,2021,20,9,30,32,1,9,0,12.959349,12.959349,0,0,0,0,0,0,0,0,0,0,0,4.5489931,0,33.64,63.93,32.89,65.90000000000001,8.333333333333334,1,1,0,0,9,2,3,1,751.5,263378.88,85324.5,426751.63,275459.69,0,0,2071.3076 +6139,7499,13381,13380,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,6.544662,6.4726987,0,7,2,-28.859287,0,2,2,2021,18,5,35,42,1,5,0,1.9836789,1.9836789,0,0,0,0,0,0,0,0,0,0,0,6.5138826,0,32.89,65.90000000000001,33.64,63.93,5,1,1,0,0,9,2,3,1,751.5,263378.88,85324.5,426751.63,275459.69,0,0,2071.3076 +6140,7500,13382,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.7785611,7.569087,0,0,0,-965.19916,0,3,2,2021,10,2,30,40,1,2,0,9.5363474,9.5363474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8.333333333333334,1,1,0,0,14,1,3,1,609,-19146.328,-101222.85,0,0,0,0,235.10962 +6141,7501,13383,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,7.9280062,7.8047919,0,0,0,-949.50549,0,2,3,2021,7,0,30,80,1,0,0,10.113083,10.113083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,9,13,3,1,110,16060.928,-51443.473,0,0,0,0,1733.423 +6142,7502,13384,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,6.9916821,7.7210922,6.3574486,0,0,-932.04169,0,2,2,2021,11,1,17,17,1,1,0,9.2203341,9.2203341,.05,.05,0,0,0,0,0,14.5,1,1,0,6.4168782,0,55.96,47.07,-9,-9,6.666666666666667,1,1,0,0,9,6,2,0,411,42010.695,57801.043,124325.73,45355.398,0,0,1251.0565 +6142,7502,13385,-9,13384,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-837.05096,-9,2,-9,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9494398,0,27.9,50.9,-9,-9,1.666666666666667,1,1,0,0,1,6,2,0,411,42010.695,57801.043,124325.73,45355.398,0,0,1251.0565 +6143,7503,13386,13387,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,0,0,45,-6,0,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.27,56.66,66.52,32.82,0,2,3,0,0,0,9,1,1,1588.5,447535.66,0,422006.63,0,0,0,1430.4384 +6143,7503,13387,13386,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,45,6,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2252536,0,66.52,32.82,47.27,56.66,6.666666666666667,2,3,0,0,0,9,1,1,1588.5,447535.66,0,422006.63,0,0,0,1430.4384 +6144,7504,13388,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,3,7.6509557,7.1523142,0,0,0,-962.27094,0,-9,-9,2021,15,3,20,16,1,3,0,11.279961,11.279961,0,0,0,0,0,0,0,0,1,1,0,0,0,45.18,44.04,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,1065.5,-115445.25,0,0,0,-1095.2671,0,1758.7373 +6144,7504,13389,-9,13388,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.1243,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,1065.5,-115445.25,0,0,0,-1095.2671,0,1758.7373 +6145,7505,13390,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,0,0,-913.39514,0,3,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.53,48.35,-9,-9,10,1,1,1,0,0,6,1,0,1019,-5866.4336,0,0,0,0,-702.52808,1384.9966 +6145,7505,13391,-9,13390,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1057.9885,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,1,0,1019,-5866.4336,0,0,0,0,-702.52808,1384.9966 +6145,7506,13392,-9,13390,-9,1,1,21,0,1,0,3,3,-9,0,4,0,0,0,0,0,-948.01685,0,3,-9,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.98,65.19,-9,-9,8.333333333333334,4,2,1,0,0,6,1,0,195,78204.68,0,0,0,0,0,850.28479 +6146,7507,13393,13394,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,8.6826239,8.793191,0,5,0,101.71173,0,2,2,2021,6,0,35,35,1,0,0,23.067751,23.067751,.05,.05,0,0,0,0,0,0,0,0,0,7.1781874,0,63.48,51.85,55.96,49.93,10,1,1,0,0,12,7,5,1,240.5,1038943.9,221918.89,577093.69,0,0,0,5652.4546 +6146,7507,13394,13393,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.5388775,8.4675303,0,5,0,-62.58419,0,-9,-9,2021,9,0,38,38,1,0,0,16.08404,16.08404,0,0,0,0,0,0,0,0,0,0,0,6.8658462,0,55.96,49.93,63.48,51.85,8.333333333333334,1,1,0,0,12,7,5,1,240.5,1038943.9,221918.89,577093.69,0,0,0,5652.4546 +6147,7508,13395,13396,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,9.6884375,9.7691231,0,7,-3,-2.166671,0,1,1,2021,5,0,43,65,1,0,0,41.262299,41.262299,0,0,0,0,0,0,0,0,0,0,0,0,0,60.1,54.82,57.06,57.76,8.333333333333334,1,1,0,0,8,8,5,1,836,299398.69,122088.39,544325.06,384650.5,3237.2134,0,9227.7363 +6147,7508,13396,13395,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,9.5469761,9.443574,0,7,3,25.992634,0,2,3,2021,9,1,50,58,1,1,0,29.683069,29.683069,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.1,54.82,8.333333333333334,1,1,0,0,9,8,5,1,836,299398.69,122088.39,544325.06,384650.5,3237.2134,0,9227.7363 +6148,7509,13397,13398,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.8604174,7.9088016,6.3987393,39,4,-80.281586,0,3,3,2021,12,0,49,44,1,0,0,5.0929747,5.0929747,.05,.05,.05,0,0,0,0,2,1,1,0,0,5.9861064,43.31,40.08,43.7,33.88,8.333333333333334,1,1,0,0,11,2,5,1,907.5,2500624,1629677.5,0,0,4977.2764,0,5803.2764 +6148,7509,13398,13397,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6368728,9.2147093,8.8904057,39,-4,124.48804,0,1,2,2021,18,5,20,22,1,5,0,8.1396265,8.1396265,0,0,.05,0,0,0,0,7,1,1,0,0,8.7584524,43.7,33.88,43.31,40.08,8.333333333333334,1,1,0,0,11,2,5,1,907.5,2500624,1629677.5,0,0,4977.2764,0,5803.2764 +6149,7510,13399,13400,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.5494432,7.0751257,0,11,-6,-11.32244,0,-9,-9,2021,12,0,10,6,1,0,0,7.4089651,7.4089651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.25,49.63,57.33,53.46,6.666666666666667,1,1,0,0,11,9,4,1,1037,1008833.6,623720.19,365673.81,0,0,0,2013.0745 +6149,7510,13400,13399,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.5170145,8.5711584,0,11,6,133.88191,0,3,3,2021,9,0,40,-9,1,0,0,15.733773,15.733773,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,33.25,49.63,8.333333333333334,1,1,0,0,12,9,4,1,1037,1008833.6,623720.19,365673.81,0,0,0,2013.0745 +6150,7511,13401,13402,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.3225799,7.31707,56,2,5.4553394,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.2810864,58.07,35.08,35.01,39.9,10,1,1,0,0,0,5,3,1,1126,755527.63,385381.81,191882,0,0,0,2203.5313 +6150,7511,13402,13401,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,7.6165438,7.1333337,9,-2,-51.939419,0,-9,-9,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,5.7725205,0,63.159397,0,1,1,0,5.8108134,7.7641597,35.01,39.9,58.07,35.08,8.333333333333334,1,1,0,0,0,5,3,1,1126,755527.63,385381.81,191882,0,0,0,2203.5313 +6151,7512,13403,13404,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,6.9855633,7.3267941,0,42,-3,46.048382,0,3,2,2021,12,1,18,18,1,1,0,8.1022587,8.1022587,0,0,0,0,0,0,0,0,0,0,0,0,0,49.8,56.68,58.56,41.85,8.333333333333334,1,1,0,0,10,5,4,1,297,134235.91,-16882.068,93619.109,0,0,0,1620.6036 +6151,7512,13404,13403,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.845201,8.1651268,6.6378279,42,3,-56.57785,0,3,3,2021,12,0,49,40,1,0,0,5.5598507,5.5598507,0,0,0,0,0,0,0,0,0,0,0,0,6.7056613,58.56,41.85,49.8,56.68,8.333333333333334,1,1,0,0,9,5,4,1,297,134235.91,-16882.068,93619.109,0,0,0,1620.6036 +6152,7513,13405,-9,13408,13407,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.44318,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6152,7513,13406,-9,13408,13407,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.49945,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6152,7513,13407,13408,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.6265044,7.8315916,0,10,1,33.816612,0,3,2,2021,12,0,38,38,1,0,0,9.0461855,9.0461855,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.64,52.96,54.13,48.04,0,2,3,0,0,9,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6152,7513,13408,13407,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.8510885,7.7116365,0,10,-1,-109.96857,0,2,2,2021,6,0,38,38,1,0,0,7.7113948,7.7113948,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.13,48.04,40.64,52.96,6.666666666666667,1,1,0,0,9,1,3,0,739,21924.521,24509.611,0,0,11530.5,0,2086.1797 +6153,7514,13409,-9,13411,13412,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.5295,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6153,7514,13410,-9,13411,13412,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-901.50635,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6153,7514,13411,13412,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.6071577,8.6262999,0,9,-2,186.29352,0,-9,-9,2021,16,5,50,50,1,5,0,15.720586,15.720586,0,0,0,0,0,0,0,0,1,1,0,2.0115705,0,32.01,62.01,46.51,44.85,6.666666666666667,1,1,0,0,9,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6153,7514,13412,13411,-9,-9,1,1,34,1,2,0,2,2,-9,0,3,0,0,0,9,2,-156.93596,0,2,2,2021,14,3,0,48,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.51,44.85,32.01,62.01,5,1,1,0,0,10,6,3,1,737.5,113622.01,-8850.7617,160633.38,84324.734,0,0,1561.5029 +6154,7515,13413,13414,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.3109064,8.2017651,0,14,-6,-20.220198,0,2,2,2021,8,2,50,50,1,2,0,7.622138,7.622138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.54,57.19,49.24,50.26,8.333333333333334,1,1,0,0,9,8,4,0,1775,643850.13,183700.69,482446.41,188122.41,0,0,3128.5906 +6154,7515,13414,13413,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.6719522,7.7346587,0,14,6,-118.98338,0,2,2,2021,8,1,60,50,1,1,0,3.8062153,3.8062153,.05,.05,0,0,0,0,0,0,0,0,0,1.2717998,0,49.24,50.26,45.54,57.19,8.333333333333334,1,1,0,0,9,8,4,0,1775,643850.13,183700.69,482446.41,188122.41,0,0,3128.5906 +6155,7516,13415,13416,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.3790846,9.47647,0,2,-2,16.565434,-9,-9,-9,2021,11,0,40,0,1,2,0,40.163403,40.163403,.05,.05,0,0,0,0,0,0,0,0,0,4.9796062,0,48,56,40.88,49.19,7,1,1,0,0,1,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6155,7516,13416,13415,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.728076,8.8946915,0,7,2,-12.169129,0,3,2,2021,16,4,35,35,1,4,0,22.622131,22.622131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.88,49.19,48,56,3.333333333333333,1,1,0,0,9,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6155,7516,13417,-9,13415,13416,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.81274,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6155,7516,13418,-9,13415,13416,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.4883,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,661,1015663.9,432718.81,563188.88,122879.35,0,0,7036.7988 +6156,7517,13419,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1013.0892,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,1853,23137.078,0,0,0,0,0,107.3103 +6156,7518,13420,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-919.13483,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.59,38.96,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,491,221892.36,0,0,0,0,0,156.0571 +6157,7519,13421,-9,-9,13422,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.81561,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,0,1309.5,-5277.3315,0,0,0,0,0,1497.1392 +6157,7519,13422,-9,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,8.1291094,8.0387096,0,0,0,-1067.7089,0,-9,-9,2021,14,2,38,60,1,2,0,8.9817219,8.9817219,0,0,0,0,0,0,0,0,0,0,0,0,0,37.92,53.03,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,1309.5,-5277.3315,0,0,0,0,0,1497.1392 +6158,7520,13423,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.1435242,7.1912727,0,0,-829.94739,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6961808,6.8324013,29.23,45.05,-9,-9,6.666666666666667,1,1,0,0,2,9,2,1,1017,226905.38,3224.03,44724.137,0,7880.3213,0,1545.4006 +6159,7521,13424,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.5649719,8.4314804,0,0,0,-943.31219,0,-9,-9,2021,15,3,49,37,1,3,0,11.486587,11.486587,.05,.05,0,0,0,0,0,0,0,0,0,2.7450471,0,37.81,62.39,-9,-9,5,1,1,0,0,10,5,5,1,131,-131562.02,115670.87,0,0,0,0,2492.1133 +6160,7522,13425,13426,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.6951399,8.8533669,0,3,1,-25.414745,0,2,3,2021,16,5,37,39,1,5,0,19.220161,19.220161,.05,.05,0,0,0,0,0,0,1,1,0,7.1636825,0,40.77,61.04,62.39,56.71,3.333333333333333,1,1,0,0,12,2,5,1,1304.6666,161592.88,32119.479,195779.66,47819.715,0,0,5810.4795 +6160,7522,13426,13425,-9,-9,1,1,43,0,1,0,1,1,-9,0,5,8.9614334,8.8650513,0,3,-1,-79.177139,0,-9,-9,2021,1,0,43,48,1,0,0,26.174229,26.174229,.05,.05,0,0,0,0,0,0,1,1,0,7.1734533,0,62.39,56.71,40.77,61.04,8.333333333333334,2,3,0,0,12,2,5,1,1304.6666,161592.88,32119.479,195779.66,47819.715,0,0,5810.4795 +6160,7522,13427,-9,13425,13426,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.51508,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,1304.6666,161592.88,32119.479,195779.66,47819.715,0,0,5810.4795 +6161,7523,13428,13429,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,6,4,-39.41127,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.15,25.17,50.41,53.71,8.333333333333334,1,1,0,0,0,6,2,1,1106,425011.22,-13748.661,266682.78,0,0,0,1258.0999 +6161,7523,13429,13428,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,5.1654563,5.1635695,6,-4,-46.128174,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,.79832441,5.3034782,50.41,53.71,48.15,25.17,8.333333333333334,1,1,0,0,4,6,2,1,1106,425011.22,-13748.661,266682.78,0,0,0,1258.0999 +6162,7524,13430,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.4821739,6.5213079,0,0,-1103.8501,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1282654,6.5877976,66.25,12.88,-9,-9,10,1,1,0,0,7,5,2,1,252,-125142.72,96266.563,0,0,0,0,2245.5022 +6163,7525,13431,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1160.9082,-9,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.45,31.37,-9,-9,5,1,1,0,0,2,8,1,0,181,-870.32104,56069.836,0,0,0,0,1254.9791 +6164,7526,13432,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.1511126,4.904119,0,0,-927.10052,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.511219,4.6344566,31.99,48.33,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,1343,249553.5,4647.9355,0,0,0,0,754.51184 +6165,7527,13433,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,5.8386922,5.7069974,0,0,-901.95593,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,29.677704,0,0,1,1,0,7.1117373,5.234252,56,44,-9,-9,8,1,1,0,0,0,4,2,0,1680,138004.66,-97988.148,232610.06,0,0,0,3345.708 +6166,7528,13434,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-965.05737,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.02,37.42,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,431,0,0,0,0,0,0,1325.8356 +6166,7529,13435,-9,13434,-9,1,0,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1021.8002,0,3,-9,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,1,1,0,13,1,0,1882,-53232.805,0,0,0,0,0,1075.1074 +6166,7530,13436,-9,-9,-9,1,0,21,0,0,0,3,3,-9,1,4,0,0,0,0,0,-990.65784,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,1,1,0,13,1,0,813,0,0,0,0,0,0,606.25085 +6167,7531,13437,13438,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.6520319,7.9304819,7,8,-99.077988,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7108593,7.8977609,53.49,32.28,42.06,26.84,8.333333333333334,1,1,0,0,0,12,3,1,1313,2054711.5,966500.63,361243.44,0,0,0,2426.9009 +6167,7531,13438,13437,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,0,0,7,-8,2.9693651,0,2,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7590084,0,42.06,26.84,53.49,32.28,3.333333333333333,1,1,0,0,1,12,3,1,1313,2054711.5,966500.63,361243.44,0,0,0,2426.9009 +6168,7532,13439,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.071907,7.0677271,0,0,-901.46313,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9261875,59.15,44.82,-9,-9,8.333333333333334,3,4,0,0,0,6,2,1,1857,417214.31,305444.94,156995.8,0,3172.5833,0,819.67706 +6169,7533,13440,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.1756644,7.2182775,0,0,0,-994.66846,0,2,2,2021,9,1,30,30,1,1,0,4.5160894,4.5160894,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.71,46.52,-9,-9,8.333333333333334,1,1,0,0,9,11,2,1,470.33334,51597.758,106527.74,135077.44,68092.453,0,0,1377.2135 +6169,7533,13441,-9,13440,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1125.9263,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,2,1,470.33334,51597.758,106527.74,135077.44,68092.453,0,0,1377.2135 +6169,7533,13442,-9,13440,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.6629,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,470.33334,51597.758,106527.74,135077.44,68092.453,0,0,1377.2135 +6169,7534,13443,-9,13440,-9,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-976.44025,-9,2,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,11,1,1,302,50794.082,0,0,0,2562.9663,0,-365.36722 +6170,7535,13444,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.1664591,8.0554056,0,0,0,-1120.9908,0,2,3,2021,16,4,46,42,1,4,0,7.0137434,7.0137434,0,0,0,0,0,0,0,0,0,0,0,0,0,37.76,55.72,-9,-9,5,1,1,0,0,9,13,4,0,1776,-82841.75,-98404.109,0,0,0,0,969.8277 +6171,7536,13445,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-862.77533,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,43,39,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,417,0,0,0,0,0,0,1375.4259 +6171,7537,13446,-9,13445,-9,1,0,23,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1077.5249,0,3,-9,2021,23,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.14,51.17,-9,-9,6.666666666666667,4,5,0,1,0,13,1,0,162,-109095.86,0,0,0,0,1339.3308,394.22205 +6171,7538,13447,-9,13445,-9,1,0,22,0,0,0,3,3,-9,1,2,0,0,0,0,0,-945.54187,0,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.95,56.51,-9,-9,3.333333333333333,4,5,0,1,0,13,1,0,72,-198615.08,0,0,0,0,0,-451.51318 +6172,7539,13448,-9,13449,13451,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.49536,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13449,13451,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,8.103302,8.028101,0,11,-4,-62.74976,0,3,1,2021,9,1,41,0,1,1,0,10.301786,10.301786,0,0,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,44.81,58.17,6.666666666666667,3,4,0,1,3,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13450,-9,13449,13451,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.09894,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13451,13449,-9,-9,1,1,45,0,3,0,1,1,-9,0,5,0,0,0,11,4,-28.09729,0,-9,2,2021,7,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.81,58.17,52.65,51.64,6.666666666666667,3,4,0,0,3,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6172,7539,13452,-9,13449,13451,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-962.99573,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,7,3,0,401,-11587.954,-26732.098,0,0,0,0,2222.7466 +6173,7540,13453,13455,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,8.3355408,8.5250196,0,7,-2,23.359673,0,-9,-9,2021,18,7,23,30,1,7,0,20.90296,20.90296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.09,60.15,57.16,56.15,3.333333333333333,1,1,0,1,8,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6173,7540,13454,-9,13453,13455,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-907.34784,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6173,7540,13455,13453,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.2631693,8.4992447,0,7,2,38.185047,0,3,2,2021,3,0,40,40,1,0,0,14.113162,14.113162,.05,.05,0,0,0,0,0,0,1,1,0,2.8838947,0,57.16,56.15,39.09,60.15,10,1,1,0,0,7,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6173,7540,13456,-9,13453,13455,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.01477,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,789.75,652675.88,341807.72,289778.5,95622.445,17120.293,1811.5634,3771.9355 +6174,7541,13457,13458,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.4320469,8.3576508,0,2,1,-15.50472,-9,-9,-9,2021,6,0,38,0,1,0,0,14.986907,14.986907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.43,58.05,6.666666666666667,1,1,0,0,4,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6174,7541,13458,13457,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,8.9154806,8.8690901,0,8,-1,-36.982357,-9,1,2,2021,6,0,43,0,1,0,0,25.871874,25.871874,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6174,7541,13459,-9,13457,13458,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.7753,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6174,7541,13460,-9,13457,13458,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.4884,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,600.75,367209.66,-11752.288,425156.16,81286.055,12738.611,4263.042,4857.3809 +6175,7542,13461,13462,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9354587,8.0196171,0,8,-4,86.448807,0,2,3,2021,7,0,39,36,1,0,0,8.3225527,8.3225527,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.07,60.93,8.333333333333334,1,1,0,0,9,5,3,1,768,836637.06,147926.02,345032,0,0,0,1507.1567 +6175,7542,13462,13461,-9,-9,1,1,58,0,0,0,3,3,-9,0,5,6.9768381,6.9314108,0,8,4,-57.484467,0,2,2,2021,6,0,39,39,1,0,0,2.6225672,2.6225672,0,0,.05,0,0,0,0,0,0,0,0,0,0,41.07,60.93,57.16,56.15,10,1,1,0,0,9,5,3,1,768,836637.06,147926.02,345032,0,0,0,1507.1567 +6175,7543,13463,-9,13461,13462,1,1,22,0,0,0,2,2,-9,0,5,7.2546873,7.2700229,0,0,0,-996.4856,0,2,3,2021,6,0,32,40,1,0,1,5.227067,5.227067,0,0,0,0,0,0,0,0,0,0,0,2.623914,0,62.39,56.71,-9,-9,10,1,1,0,0,4,5,3,1,272,36174.895,0,0,0,0,0,-46.242355 +6176,7544,13464,13465,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,8.8175659,8.6046705,5.9370904,30,5,32.338833,0,-9,-9,2021,8,0,35,30,1,0,0,16.80073,16.80073,.05,.05,0,0,0,0,0,0,0,0,0,5.5450974,6.1551886,57.33,53.46,50.75,39.21,8.333333333333334,1,1,0,0,12,2,4,0,789.5,911959.38,741273.81,236592.09,0,0,0,2210.7568 +6176,7544,13465,13464,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,30,-5,-96.396774,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.75,39.21,57.33,53.46,8.333333333333334,1,1,0,0,10,2,4,0,789.5,911959.38,741273.81,236592.09,0,0,0,2210.7568 +6176,7545,13466,-9,13465,13464,1,0,30,0,0,0,1,1,-9,0,4,7.9284225,7.8610201,0,0,0,-1021.3984,0,2,2,2021,12,1,38,38,1,1,0,10.530888,10.530888,.05,.05,0,0,0,0,0,0,0,0,0,3.215914,0,42.52,59.9,-9,-9,8.333333333333334,1,1,0,0,4,2,4,0,2267,-128893.59,109416.87,0,0,0,0,1315.4019 +6176,7546,13467,-9,13465,13464,1,0,29,0,0,0,1,1,-9,0,4,8.0958929,8.2639465,0,0,0,-1088.1532,0,2,2,2021,18,6,38,-9,1,6,0,7.7210975,7.7210975,.05,.05,0,0,0,0,0,0,0,0,0,4.9655299,0,27.23,62.9,-9,-9,6.666666666666667,1,1,0,0,7,2,4,0,913,25017.217,-14112.474,0,0,0,0,1440.4645 +6177,7547,13468,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.9633679,8.040102,0,0,0,-977.40326,0,2,3,2021,34,12,38,38,1,12,0,9.1049776,9.1049776,0,0,0,0,0,0,0,0,0,0,0,0,0,16.07,49.81,-9,-9,0,1,1,0,0,7,4,4,0,352,883657.44,445969,177348.72,0,0,0,1775.9723 +6178,7548,13469,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.9516177,6.9411426,0,0,-894.54541,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,8.2998629,0,0,1,1,0,3.4608843,7.4693828,38.24,25.76,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,165,135589.41,0,140400.92,0,0,0,3283.3369 +6179,7549,13470,13471,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.5967979,7.6708589,56,-2,68.797302,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8580089,7.8167467,51.24,58.84,48.03,37.39,8.333333333333334,1,1,0,0,0,7,3,1,899,2353916.3,701139.38,590095.75,0,0,0,2696.481 +6179,7549,13471,13470,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.3648424,7.5249152,56,2,-91.034172,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1350565,48.03,37.39,51.24,58.84,8.333333333333334,1,1,0,0,0,7,3,1,899,2353916.3,701139.38,590095.75,0,0,0,2696.481 +6180,7550,13472,13473,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.6157784,7.582736,0,15,2,24.087246,0,1,1,2021,7,0,15,16,1,0,0,15.767259,15.767259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,6,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6180,7550,13473,13472,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.8201056,8.8723717,0,16,-2,-187.03,0,-9,-9,2021,10,0,37,35,1,0,0,25.005617,25.005617,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6180,7550,13474,-9,13472,13473,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-934.53723,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6180,7550,13475,-9,13472,13473,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-911.76697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,890.75,-12074.846,33769.035,0,0,3288.9561,7835.6738,3498.1401 +6181,7551,13476,13477,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,7.1573396,7.842453,6.9112506,13,5,82.272476,0,-9,-9,2021,14,2,12,13,1,2,0,11.913249,11.913249,0,0,0,0,0,0,0,2,1,1,0,0,6.7916136,38.4,35.36,51,48,3.333333333333333,1,1,0,0,12,11,3,1,1294.5,792463.94,413174.63,143237.86,0,0,0,1249.0337 +6181,7551,13477,13476,-9,-9,1,1,64,0,0,0,2,2,-9,1,3,0,6.1589994,6.1530766,13,-5,40.48114,0,-9,-9,2021,10,0,0,37,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.5722103,51,48,38.4,35.36,7,1,1,0,0,0,11,3,1,1294.5,792463.94,413174.63,143237.86,0,0,0,1249.0337 +6182,7552,13478,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1046.3228,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,53,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,746,-9945.7998,0,0,0,0,0,1438.6115 +6182,7553,13479,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1118.7229,0,-9,-9,2021,12,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.7,37.65,-9,-9,5,1,1,0,0,3,11,1,0,404,751.96716,-24612.988,212864.23,0,0,0,687.94922 +6182,7554,13480,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-925.92816,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,61.71,47.23,-9,-9,5,1,1,0,1,0,11,1,0,1106,62119.656,0,0,0,0,0,1301.4838 +6183,7555,13481,13482,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6636982,8.8619137,0,12,-1,-7.0513215,0,-9,-9,2021,9,0,37,37,1,0,0,20.240728,20.240728,.05,.05,.05,0,0,0,0,0,0,0,0,.41236085,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,14,11,5,1,1753,1186184.8,735411.44,279877,0,0,0,5514.502 +6183,7555,13482,13481,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.9894571,8.8594494,0,12,1,65.201797,0,2,2,2021,6,0,37,37,1,0,0,20.239712,20.239712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,14,11,5,1,1753,1186184.8,735411.44,279877,0,0,0,5514.502 +6184,7556,13483,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.2860746,8.01612,0,0,0,-955.45868,0,2,-9,2021,6,0,40,38,1,0,0,10.009478,10.009478,.05,.05,0,0,0,0,0,0,0,0,0,2.2721612,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,684,135315.77,91194.07,50937.777,22697.945,0,0,1517.818 +6185,7557,13484,13486,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,8.8572807,9.139842,0,22,-6,34.661133,0,2,2,2021,2,0,40,40,1,0,0,24.665829,24.665829,.05,.05,0,0,0,0,0,0,0,0,0,3.1678083,0,57.06,57.76,47.72,55.04,8.333333333333334,1,1,0,0,12,6,5,1,767.66669,707955.5,427253.78,190122.5,16889.701,0,0,7244.4883 +6185,7557,13485,-9,13486,13484,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-968.15186,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,6,5,1,767.66669,707955.5,427253.78,190122.5,16889.701,0,0,7244.4883 +6185,7557,13486,13484,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.9523106,9.1564684,0,24,6,138.3472,0,3,3,2021,9,1,29,23,1,1,0,27.558115,27.558115,.05,.05,0,0,0,0,0,0,0,0,0,8.2685919,0,47.72,55.04,57.06,57.76,6.666666666666667,1,1,0,0,10,6,5,1,767.66669,707955.5,427253.78,190122.5,16889.701,0,0,7244.4883 +6186,7558,13487,13488,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,0,0,0,7,-3,-4.2857862,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.83,45.72,47.46,39,5,1,1,0,0,0,6,4,0,554.33331,100803.11,14004.087,108361.84,57724.949,0,0,2547.2441 +6186,7558,13488,13487,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.5802412,8.6081734,0,7,3,-44.752716,0,2,3,2021,12,1,45,40,1,1,0,12.624857,12.624857,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.46,39,32.83,45.72,6.666666666666667,1,1,0,0,10,6,4,0,554.33331,100803.11,14004.087,108361.84,57724.949,0,0,2547.2441 +6186,7558,13489,-9,13487,13488,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.8735,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,0,554.33331,100803.11,14004.087,108361.84,57724.949,0,0,2547.2441 +6187,7559,13490,13491,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.2787528,5.4311852,10,-1,-16.463615,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3829479,5.2560019,43.43,55.57,46.93,49.88,8.333333333333334,1,1,0,0,0,11,2,1,393.5,459974.38,170732.14,155215.89,0,0,0,2495.469 +6187,7559,13491,13490,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.4553719,7.3353796,10,1,35.359722,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0037241,46.93,49.88,43.43,55.57,10,1,1,0,0,0,11,2,1,393.5,459974.38,170732.14,155215.89,0,0,0,2495.469 +6188,7560,13492,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6700039,8.6893272,0,0,0,-1069.6479,0,2,3,2021,6,0,36,41,1,0,0,17.35714,17.35714,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,3,4,0,0,10,8,5,1,839,4117974.8,116850.7,753880,0,0,0,2972.916 +6189,7561,13493,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.5218272,6.6638942,0,0,-1078.5737,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3407888,6.6939564,48.53,50.88,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,892,177076.52,0,0,0,0,896.46912,1260.0931 +6190,7562,13494,13495,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.3315697,6.1626334,52,-3,18.34437,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.4314404,6.2358465,53.9,52.09,54.56,22.9,8.333333333333334,1,1,0,0,0,12,2,1,2672.5,334126.66,151485.78,202273.23,0,0,0,1822.8521 +6190,7562,13495,13494,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,0,0,52,3,15.804294,0,2,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,12.998383,0,0,1,1,0,5.0415931,0,54.56,22.9,53.9,52.09,6.666666666666667,1,1,0,0,0,12,2,1,2672.5,334126.66,151485.78,202273.23,0,0,0,1822.8521 +6191,7563,13496,13497,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.2197289,7.3930264,48,1,124.95889,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4690323,7.1219397,40.87,44.58,53.73,52.44,8.333333333333334,1,1,0,0,5,6,2,1,888.5,818168.63,417955.22,272012.94,0,0,0,1445.4083 +6191,7563,13497,13496,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,5.6000762,5.7789068,48,-1,-37.841732,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0162168,5.6867151,53.73,52.44,40.87,44.58,8.333333333333334,1,1,0,0,5,6,2,1,888.5,818168.63,417955.22,272012.94,0,0,0,1445.4083 +6192,7564,13498,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.6580081,5.746891,0,0,-1032.772,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8510871,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,909,512811.75,0,333463.44,0,0,0,2729.2024 +6193,7565,13499,13500,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.4915857,7.5973644,8,6,-17.641037,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6950083,7.5979996,54.2,57.49,55.2,49.4,8.333333333333334,1,1,0,0,0,10,3,1,462,2092723.6,1014232.7,465152.5,0,0,0,2972.8569 +6193,7565,13500,13499,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,7.5770793,7.6781645,37,-6,-67.344009,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.404592,8.0106707,55.2,49.4,54.2,57.49,8.333333333333334,1,1,0,0,10,10,3,1,462,2092723.6,1014232.7,465152.5,0,0,0,2972.8569 +6194,7566,13501,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.858799,8.7146244,0,6,-6,80.514122,0,2,1,2021,13,3,50,50,1,3,0,19.063478,19.063478,0,0,0,0,0,0,0,0,0,0,0,0,0,25.9,62.43,51,56,6.666666666666667,1,1,0,0,10,9,5,0,606,-35378.262,0,0,0,0,0,3190.6536 +6195,7567,13502,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,9.7064018,9.8766623,5.2206073,34,2,-72.739365,0,3,3,2021,13,2,35,35,1,2,0,52.825565,52.825565,0,0,0,0,0,0,0,0,1,1,0,6.5721903,5.4138947,49.35,59.64,54.2,57.49,8.333333333333334,1,1,0,0,13,9,5,1,101,305508.66,0,193608.34,0,0,0,9698.4385 +6195,7568,13503,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.829082,7.842134,34,-2,-101.87109,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4558295,7.5236788,54.2,57.49,49.35,59.64,8.333333333333334,1,1,0,0,8,9,5,1,881,916463.88,183069.97,120175.8,0,0,0,2016.1476 +6196,7569,13504,13506,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,6.290123,6.4237728,0,17,0,-43.158939,0,2,2,2021,13,2,12,23,1,2,0,5.0316944,5.0316944,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.71,48.14,59.9,48.18,8.333333333333334,1,1,0,0,10,2,4,1,290,304697.56,86344.094,326221.66,144868.58,0,0,2948.4153 +6196,7569,13505,-9,13504,13506,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1162.2108,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,290,304697.56,86344.094,326221.66,144868.58,0,0,2948.4153 +6196,7569,13506,13504,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.7987432,8.828084,0,17,0,-111.71902,0,2,2,2021,6,0,47,41,1,0,0,17.903259,17.903259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.9,48.18,44.71,48.14,8.333333333333334,1,1,0,0,12,2,4,1,290,304697.56,86344.094,326221.66,144868.58,0,0,2948.4153 +6197,7570,13507,13508,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,4.7351408,4.6239562,51,-2,-107.75341,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.209856,4.6211534,55.76,28.7,53,46,6.666666666666667,1,1,0,0,0,1,3,1,1394.5,987587.25,610699.31,324138.81,0,2683.3411,-773.29242,2916.1914 +6197,7570,13508,13507,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.7409582,7.9184313,51,2,24.540348,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,26.071026,0,0,1,1,0,0,7.6613193,53,46,55.76,28.7,8,1,1,0,0,0,1,3,1,1394.5,987587.25,610699.31,324138.81,0,2683.3411,-773.29242,2916.1914 +6198,7571,13509,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-947.67767,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,59,-9,-9,7,1,1,0,0,0,12,2,1,248,-141055.06,0,0,0,0,0,0 +6198,7572,13510,13511,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,5.8345556,5.7645102,0,1,-4,12.746771,-9,3,2,2021,10,1,55,0,1,1,0,.75568402,.75568402,.05,.05,0,0,0,0,0,7,0,0,0,0,0,51.06,56.51,49,48,6.666666666666667,1,1,0,0,10,12,4,1,599.5,1170300.8,574256,388545.81,0,0,0,2457.8608 +6198,7572,13511,13510,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8449097,8.631917,0,1,4,-50.232803,-9,3,3,2021,11,0,24,0,1,2,0,26.378748,26.378748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,48,51.06,56.51,7,1,1,0,0,1,12,4,1,599.5,1170300.8,574256,388545.81,0,0,0,2457.8608 +6199,7573,13512,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1134.9869,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.09,36.81,-9,-9,3.333333333333333,1,1,0,1,8,13,1,1,871,223539.53,0,192387.7,19913.242,0,0,782.02502 +6200,7574,13513,13514,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,9.3494225,9.3590631,0,3,2,-122.71721,0,3,2,2021,11,0,42,42,1,0,0,30.523899,30.523899,0,0,0,0,0,0,0,0,0,0,0,4.1125021,0,46.98,59.35,49.27,43.54,8.333333333333334,1,1,0,0,9,8,5,1,192.5,3217464.5,1949025.3,1651676.3,390342.38,0,0,6158.6914 +6200,7574,13514,13513,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.5427952,8.8321238,0,3,-2,-9.2423477,0,-9,-9,2021,10,2,36,45,1,2,0,17.378538,17.378538,0,0,0,0,0,0,0,14.5,0,0,0,0,0,49.27,43.54,46.98,59.35,8.333333333333334,1,1,0,0,2,8,5,1,192.5,3217464.5,1949025.3,1651676.3,390342.38,0,0,6158.6914 +6201,7575,13515,13516,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,7.6485515,7.6307445,0,23,-15,182.34862,0,2,1,2021,13,1,12,12,1,1,0,19.498581,19.498581,0,0,0,0,0,0,0,0,0,0,0,0,0,42.39,50.87,54.37,54.8,6.666666666666667,1,1,0,0,11,9,5,1,706.5,183391.28,0,0,0,0,0,5501.1895 +6201,7575,13516,13515,-9,-9,1,1,58,0,2,0,1,1,-9,0,3,9.6809959,9.6605396,0,11,15,34.289616,0,-9,-9,2021,9,0,50,45,1,0,0,38.277012,38.277012,0,0,0,0,0,0,0,0,0,0,0,5.1597395,0,54.37,54.8,42.39,50.87,6.666666666666667,1,1,0,0,12,9,5,1,706.5,183391.28,0,0,0,0,0,5501.1895 +6202,7576,13517,13518,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,7.9294934,7.9349837,0,10,2,-209.47429,0,-9,2,2021,13,1,40,45,1,1,0,7.2715187,7.2715187,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,48.45,57.49,6.666666666666667,1,1,0,0,11,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7576,13518,13517,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,0,0,0,10,-2,22.237555,1,1,1,2021,14,2,0,37,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4251459,0,48.45,57.49,48.53,58.91,8.333333333333334,1,1,0,0,11,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7576,13519,-9,13517,13518,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.22711,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7576,13520,-9,13517,13518,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.83813,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,2190.25,311010.94,17510.23,159783.78,22015.68,0,0,3948.9629 +6202,7577,13521,-9,13517,13518,1,0,23,0,2,0,2,2,-9,0,5,7.8765421,8.1928997,0,0,0,-989.79803,0,3,2,2021,11,1,38,38,1,1,1,8.3061867,8.3061867,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1650,114437.7,0,0,0,0,0,953.09912 +6203,7578,13522,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.9393578,8.8600693,0,0,0,-1006.5814,0,1,2,2021,16,5,35,35,1,5,0,25.746296,25.746296,.05,.05,0,0,0,0,0,0,0,0,0,4.2839656,0,37.23,59.61,-9,-9,6.666666666666667,1,1,0,0,9,8,5,1,556,1225497.1,775123.13,0,0,3594.2986,4724.0313,1652.7656 +6203,7579,13523,-9,13522,-9,1,0,29,0,0,0,1,1,-9,0,4,8.9645414,9.0796032,0,0,0,-1096.0309,0,1,-9,2021,18,7,30,25,1,7,1,26.277153,26.277153,.05,.05,0,0,0,0,0,0,0,0,0,.21426226,0,23.47,63.51,-9,-9,3.333333333333333,1,1,0,0,5,8,5,1,133,137600.73,-37919.871,0,0,0,0,2412.3418 +6204,7580,13524,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1886787,7.7805557,0,0,0,-1071.0695,-9,-9,-9,2021,13,1,60,0,1,1,0,6.7626066,6.7626066,0,0,0,0,0,0,0,0,0,0,0,0,0,54.11,33.01,-9,-9,8.333333333333334,3,4,0,0,4,5,4,0,1573,88702.086,0,0,0,0,0,1203.7721 +6205,7581,13525,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.0157003,6.3789759,0,0,-1042.5865,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7925777,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,551,258374.38,224275.69,127964.81,0,0,0,565.59216 +6206,7582,13526,13527,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.8051195,7.3258033,49,4,-18.281429,0,3,3,2021,10,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9226141,43.36,46.07,35.05,26.02,0,2,3,0,0,0,5,2,1,678,1254614.3,0,730021.75,0,0,0,1682.0568 +6206,7582,13527,13526,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,49,-4,12.156508,0,3,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,12.454743,0,0,1,1,0,0,0,35.05,26.02,43.36,46.07,6.666666666666667,2,3,0,1,0,5,2,1,678,1254614.3,0,730021.75,0,0,0,1682.0568 +6207,7583,13528,-9,13530,13531,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.7786,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6207,7583,13529,-9,13530,13531,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.59924,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6207,7583,13530,13531,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,7.3270197,7.3929582,0,12,-1,-5.5974703,0,3,3,2021,8,0,16,22,1,0,0,10.111742,10.111742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,9,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6207,7583,13531,13530,-9,-9,1,1,36,1,2,0,1,1,-9,0,4,8.4383297,9.0319233,0,12,1,28.664089,0,3,3,2021,5,0,51,44,1,0,0,12.398595,12.398595,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,9,11,4,1,1474.25,152123.45,107957.75,268601.19,151436.13,650.88239,0,2969.8604 +6208,7584,13532,13533,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.7608614,8.7282448,0,10,1,-131.13576,0,2,3,2021,10,2,41,37,1,2,0,16.662388,16.662388,.05,.05,0,0,0,0,0,0,0,0,0,5.8633809,0,44.35,61.13,46.16,58.62,10,1,1,0,0,8,12,5,0,762,142256.58,236896.45,67872.133,42454.285,842.56049,1355.1763,3820.1201 +6208,7584,13533,13532,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.9230957,8.3000736,0,10,-1,75.34436,0,1,2,2021,16,6,38,40,1,6,0,9.658289,9.658289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,44.35,61.13,6.666666666666667,1,1,0,0,10,12,5,0,762,142256.58,236896.45,67872.133,42454.285,842.56049,1355.1763,3820.1201 +6209,7585,13534,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.9808807,6.5894508,0,0,-1003.7263,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0045714,47.15,29.99,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,860,70231.414,87699.164,0,0,0,0,1286.4811 +6210,7586,13535,13536,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.5355654,8.5669937,0,9,5,-4.3214016,-9,3,3,2021,9,0,35,0,1,1,0,19.627289,19.627289,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,56.57,57.78,8,1,1,0,0,1,9,4,1,943,811764.5,230102.78,447508.84,0,16505.139,0,2714.6597 +6210,7586,13536,13535,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.0043383,6.973496,0,9,-5,32.880234,0,2,3,2021,7,0,16,16,1,0,0,7.6669626,7.6669626,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,52,56,8.333333333333334,1,1,0,0,3,9,4,1,943,811764.5,230102.78,447508.84,0,16505.139,0,2714.6597 +6210,7587,13537,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.80579,-9,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1810718,0,50,47,-9,-9,7,4,6,0,0,0,9,1,1,621,-228950.81,0,0,0,0,0,1560.3367 +6211,7588,13538,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.181591,7.8059053,0,0,0,-994.42218,0,2,2,2021,11,0,41,41,1,0,0,11.394935,11.394935,0,0,0,0,0,0,2.2086473,0,0,0,0,0,0,49.26,33.34,-9,-9,5,1,1,0,0,10,12,4,1,114,79931.469,0,0,0,0,0,1528.3595 +6212,7589,13539,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4469461,8.7298384,0,0,0,-1027.1752,0,3,2,2021,13,1,45,44,1,1,0,10.371276,10.371276,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,32.28,58.05,-9,-9,3.333333333333333,1,1,0,0,13,12,5,1,1444,380291.75,238589.95,177787.7,0,0,0,2043.5958 +6213,7590,13540,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.6364508,7.5728798,0,0,0,-956.52588,-9,-9,-9,2021,13,1,31,0,1,1,0,7.2747483,7.2747483,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.75,54.92,-9,-9,3.333333333333333,1,1,0,1,10,6,3,1,486.66666,138176.28,8608.9229,104548.58,68019.117,0,0,1637.455 +6213,7590,13541,-9,13540,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.74304,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,486.66666,138176.28,8608.9229,104548.58,68019.117,0,0,1637.455 +6213,7590,13542,-9,13540,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.55872,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,486.66666,138176.28,8608.9229,104548.58,68019.117,0,0,1637.455 +6214,7591,13543,13544,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.4726243,6.3823848,61,4,-106.15249,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8010817,6.301064,52.6,52.88,59.31,49.81,10,1,1,0,0,0,4,2,1,856.5,327371.91,77399.547,241380.19,0,0,0,1777.2075 +6214,7591,13544,13543,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,61,-4,-9.5492249,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.31,49.81,52.6,52.88,8.333333333333334,1,1,0,0,0,4,2,1,856.5,327371.91,77399.547,241380.19,0,0,0,1777.2075 +6215,7592,13545,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.8103576,6.9754267,0,0,-975.02368,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9595871,54.07,36.17,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,345,218057.81,1429.8042,99550.344,0,0,0,1910.3806 +6216,7593,13546,-9,13547,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1171.709,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,1959,3682.8242,-191.07552,0,0,0,1881.5208,1472.092 +6216,7593,13547,-9,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.9277639,6.8583722,0,0,0,-1028.7667,0,2,2,2021,14,2,16,14,1,2,0,6.3355069,6.3355069,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.11,41.95,-9,-9,3.333333333333333,1,1,0,0,9,6,2,0,1959,3682.8242,-191.07552,0,0,0,1881.5208,1472.092 +6216,7593,13548,-9,13547,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.3479,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,1959,3682.8242,-191.07552,0,0,0,1881.5208,1472.092 +6217,7594,13549,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,9.2713509,8.9594307,0,0,0,-1000.7828,0,2,3,2021,28,11,50,50,1,11,0,28.245356,28.245356,.05,.05,0,0,0,0,0,0,0,0,0,.64020556,0,21.56,56.45,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,968,-183410.66,-20082.193,46224.984,93653.797,0,2388.6106,3941.5122 +6218,7595,13550,13551,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.7166576,8.9324417,0,7,2,-185.81419,0,3,3,2021,6,0,38,38,1,0,0,16.132788,16.132788,.05,.05,0,0,0,0,0,0,1,1,0,7.1785765,0,51.22,49.35,13.55,59.26,8.333333333333334,1,1,0,0,9,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6218,7595,13551,13550,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,8.6198778,8.427393,0,7,-2,161.03265,0,2,2,2021,16,4,32,30,1,4,0,17.776739,17.776739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,13.55,59.26,51.22,49.35,3.333333333333333,1,1,0,0,9,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6218,7595,13552,-9,13551,13550,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.4136,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6218,7595,13553,-9,13551,13550,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-868.43164,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,500.25,1127884,739756.13,423138.47,71046.234,3756.0422,0,4435.1973 +6219,7596,13554,13555,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,58,-3,14.530184,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,46,54,46,8,1,1,0,0,0,11,2,0,884.5,612349.44,232573.81,325687.66,0,0,434.5578,1343.0588 +6219,7596,13555,13554,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.7163186,6.1409717,58,3,-30.129168,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4760771,5.8970337,54,46,52,46,8,1,1,0,0,8,11,2,0,884.5,612349.44,232573.81,325687.66,0,0,434.5578,1343.0588 +6220,7597,13556,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.3942008,6.3353987,0,0,-989.8869,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0883489,52,47,-9,-9,7,1,1,0,0,0,11,2,1,543,329656.63,183716.97,122535.54,0,0,0,854.40686 +6221,7598,13557,13559,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,0,0,0,8,-1,64.92382,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,46.67,55.57,5,1,1,0,0,3,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6221,7598,13558,-9,13557,13559,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-936.35669,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6221,7598,13559,13557,-9,-9,1,1,29,1,2,0,2,2,-9,0,3,8.1384525,7.813117,0,8,1,22.825907,0,2,2,2021,7,0,39,39,1,0,0,9.7631769,9.7631769,0,0,.05,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.33,53.46,6.666666666666667,1,1,0,0,7,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6221,7598,13560,-9,13557,13559,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.4902,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,601,197158.36,47732.484,136047.47,0,11610.5,0,2446.4971 +6222,7599,13561,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6090279,7.5721955,0,0,-993.98602,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9189606,7.7680798,60.29,52.11,-9,-9,10,1,1,0,0,3,5,3,1,636,461381.59,352282.41,123841.41,0,0,0,316.21735 +6223,7600,13562,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.7552547,8.9480057,0,0,0,-1118.2518,0,2,3,2021,24,11,65,70,1,11,0,9.1978836,9.1978836,.05,.05,0,0,0,0,0,0,0,0,0,3.9424424,0,45.32,61.53,-9,-9,3.333333333333333,1,1,0,0,13,2,5,1,271,513863.75,291776.69,159321.86,66203.961,4152.0244,0,2108.2144 +6224,7601,13563,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.8889,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,1961,0,0,0,0,0,0,1194.913 +6224,7602,13564,-9,13563,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.2464,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.83,25.08,-9,-9,0,1,1,0,1,0,1,1,1,110,1243.7098,0,0,0,0,1160.3353,501.50592 +6225,7603,13565,13566,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,8.1119776,7.651885,0,29,-5,-44.564869,0,3,-9,2021,7,0,28,27,1,0,0,12.824627,12.824627,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,21.04,61.27,46.03,8.333333333333334,1,1,0,0,13,8,4,1,328.5,909436,223900,609025.06,0,0,0,3575.5439 +6225,7603,13566,13565,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.2881365,8.464179,29,5,74.240562,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,7.079042,8.0570068,61.27,46.03,34.79,21.04,8.333333333333334,1,1,0,0,7,8,4,1,328.5,909436,223900,609025.06,0,0,0,3575.5439 +6226,7604,13567,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.1624384,8.0877857,0,0,0,-1021.2847,0,1,1,2021,11,0,37,50,1,2,0,10.967384,10.967384,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,6,4,4,0,443,164960.88,0,0,0,0,0,1166.1686 +6227,7605,13568,13569,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,10,2,-35.825127,0,3,3,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,.24301833,0,0,1,1,0,.7909041,0,30.26,18.9,56.03,36.16,1.666666666666667,1,1,0,1,0,6,2,1,1375,-95652.617,0,0,0,0,0,1203.423 +6227,7605,13569,13568,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,6.6292629,6.8896527,0,10,-2,99.365921,0,3,3,2021,9,0,10,10,1,0,0,9.5388641,9.5388641,0,0,0,1,0,0,0,2,1,1,0,0,0,56.03,36.16,30.26,18.9,8.333333333333334,1,1,0,1,11,6,2,1,1375,-95652.617,0,0,0,0,0,1203.423 +6228,7606,13570,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.1666508,6.2756324,0,0,-1046.8417,0,3,3,2021,24,7,0,0,4,7,0,0,0,0,0,0,1,3.0488567,0,16.936932,7,1,1,0,4.6070762,6.1369905,19.63,42.8,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,169,63836.078,180108.11,129134.88,0,0,0,1012.5781 +6229,7607,13571,13572,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.6489277,8.5988569,0,4,-4,93.023102,0,1,1,2021,8,0,12,12,1,0,0,57.584209,57.584209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,6,7,5,1,441.5,203480.42,55724.363,631702.13,544716.13,0,0,4799.3623 +6229,7607,13572,13571,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.6153641,8.9294615,0,4,4,169.116,0,-9,-9,2021,8,0,47,45,1,0,0,20.494883,20.494883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,54.1,59.11,8.333333333333334,1,1,0,0,6,7,5,1,441.5,203480.42,55724.363,631702.13,544716.13,0,0,4799.3623 +6230,7608,13573,13574,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.0070257,8.1613779,0,6,-1,-6.287653,0,1,1,2021,23,10,47,52,1,10,0,7.1895595,7.1895595,0,0,0,0,0,0,0,2,0,0,0,1.6090113,0,43.12,58.55,46.08,57.2,8.333333333333334,1,1,0,0,6,7,5,1,2693.5,22736.133,0,0,0,0,0,3015.8467 +6230,7608,13574,13573,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.377182,8.3777437,0,6,1,60.25499,0,2,2,2021,13,2,39,37,1,2,0,13.933778,13.933778,0,0,0,0,0,0,0,7,0,0,0,1.8263218,0,46.08,57.2,43.12,58.55,6.666666666666667,1,1,0,0,6,7,5,1,2693.5,22736.133,0,0,0,0,0,3015.8467 +6231,7609,13575,13576,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4465237,8.1702623,0,9,6,37.342064,0,2,1,2021,13,1,47,36,1,1,0,10.422928,10.422928,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.07,43.05,51.02,49.39,8.333333333333334,1,1,0,0,8,1,5,0,411,722792.38,531949.5,167742.41,0,0,0,3651.022 +6231,7609,13576,13575,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.5606546,8.3725967,0,9,-6,111.31091,0,2,2,2021,12,0,60,61,1,0,0,8.5832119,8.5832119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.02,49.39,59.07,43.05,6.666666666666667,1,1,0,0,11,1,5,0,411,722792.38,531949.5,167742.41,0,0,0,3651.022 +6232,7610,13577,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.8007221,8.5978003,0,0,0,-954.53851,0,1,-9,2021,9,0,38,38,1,0,0,19.782585,19.782585,0,0,.05,0,0,0,0,0,1,1,0,0,0,50.03,52.62,-9,-9,8.333333333333334,3,4,0,0,11,8,4,0,423,120190.84,-8506.3838,0,0,1525.1989,559.52258,2777.4539 +6233,7611,13578,13579,-9,-9,1,1,47,0,1,0,3,3,-9,0,2,7.8534923,7.7192011,0,8,-3,101.48766,0,-9,-9,2021,20,8,41,37,1,8,0,7.0364904,7.0364904,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27,42.14,54.62,53.53,1.666666666666667,1,1,0,0,4,4,3,0,606,45361.387,-11922.725,107784.62,62550.777,4111.5786,0,1719.6975 +6233,7611,13579,13578,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.1409788,5.8830552,0,8,3,107.9856,0,3,3,2021,13,3,15,9,1,3,0,3.8548694,3.8548694,0,0,0,0,0,0,0,0,1,1,0,.92172652,0,54.62,53.53,27,42.14,5,1,1,0,0,2,4,3,0,606,45361.387,-11922.725,107784.62,62550.777,4111.5786,0,1719.6975 +6233,7611,13580,-9,13579,13578,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-881.44568,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,606,45361.387,-11922.725,107784.62,62550.777,4111.5786,0,1719.6975 +6233,7612,13581,-9,13579,13578,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-941.79358,-9,2,3,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,2836,18539.801,0,0,0,0,661.24182,0 +6234,7613,13582,13583,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0351357,7.3321233,48,1,23.886358,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.954638,7.0649815,57.9,51.84,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,1382.5,912873.88,493810.69,385688.63,0,0,0,4214.8799 +6234,7613,13583,13582,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.0748844,7.8936291,48,-1,-138.05952,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6856866,8.1815653,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,0,12,4,1,1382.5,912873.88,493810.69,385688.63,0,0,0,4214.8799 +6235,7614,13584,13585,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,8.3394566,8.2323599,0,10,-5,-80.365532,0,-9,-9,2021,10,0,42,40,1,0,0,9.7686205,9.7686205,.05,.05,0,0,0,0,0,7,1,1,0,0,0,48.87,58.55,60.12,54.8,6.666666666666667,1,1,0,0,12,11,5,1,1740.6666,581952.25,160951.55,318437.03,98834.758,0,876.89374,4943.8438 +6235,7614,13585,13584,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1722708,9.1528702,0,10,5,94.679596,0,-9,-9,2021,8,0,45,40,1,0,0,25.955032,25.955032,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,48.87,58.55,8.333333333333334,1,1,0,0,13,11,5,1,1740.6666,581952.25,160951.55,318437.03,98834.758,0,876.89374,4943.8438 +6235,7614,13586,-9,13584,13585,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0521,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,1740.6666,581952.25,160951.55,318437.03,98834.758,0,876.89374,4943.8438 +6236,7615,13587,13588,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.1895704,7.7438536,40,-7,-128.91617,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8075514,43.03,55.9,56.5,45.47,8.333333333333334,1,1,0,0,0,6,5,1,1368,1549201.5,1109753.8,429230.72,0,0,0,6105.7798 +6236,7615,13588,13587,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,8.3696575,8.8310957,45,7,-22.68269,0,2,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8794138,8.4908934,56.5,45.47,43.03,55.9,10,1,1,0,0,0,6,5,1,1368,1549201.5,1109753.8,429230.72,0,0,0,6105.7798 +6237,7616,13589,-9,13592,13590,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.6295,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6237,7616,13590,13592,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.1418476,9.1379108,0,7,3,-62.70298,0,3,-9,2021,10,0,40,48,1,0,0,21.690462,21.690462,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,49.46,56.91,8.333333333333334,1,1,0,0,8,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6237,7616,13591,-9,13592,13590,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.00854,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6237,7616,13592,13590,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.5603428,8.3701754,0,7,-3,-94.823235,0,2,3,2021,14,2,40,40,1,2,0,11.564989,11.564989,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.24,58.84,8.333333333333334,1,1,0,0,5,9,5,0,983,411365.69,22686.221,716476.63,385493.06,0,0,4778.8711 +6238,7617,13593,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.7415,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0157158,0,53,40.54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,1052,216164.67,0,0,0,0,0,592.98901 +6239,7618,13594,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.5238686,8.3673906,0,0,0,-1030.8311,-9,2,2,2021,13,1,39,0,1,1,0,12.165462,12.165462,.05,.05,0,0,0,0,0,0,1,1,0,2.7607546,0,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,6,4,4,0,463,139309.86,93077.867,155932.69,13651.728,8821.3789,0,1862.8898 +6240,7619,13595,-9,13596,13597,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.5483,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6240,7619,13596,13597,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,16,3,40.970116,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,42.04,56.46,6.666666666666667,3,4,0,0,6,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6240,7619,13597,13596,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.6998253,8.5559063,0,16,-3,96.64077,0,-9,-9,2021,12,3,60,55,1,3,0,11.981009,11.981009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.04,56.46,48.87,58.55,3.333333333333333,1,1,0,1,11,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6240,7619,13598,-9,13596,13597,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.6669,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,3,0,1161.75,74934.031,57994.313,202091.06,57476.941,1399.4622,3055.3052,2738.4307 +6241,7620,13599,13600,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.2162938,7.1888041,44,2,4.2696595,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8007751,7.2833633,59.53,56.44,50,47,8.333333333333334,4,5,0,0,3,4,2,1,994,274426.25,400663.63,0,0,0,0,1227.0566 +6241,7620,13600,13599,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-2,-88.735107,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0755432,0,50,47,59.53,56.44,7,1,1,0,0,0,4,2,1,994,274426.25,400663.63,0,0,0,0,1227.0566 +6242,7621,13601,13603,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.6510453,8.0496807,0,7,0,74.41433,0,2,2,2021,6,0,28,23,1,0,0,8.8269806,8.8269806,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,56.92,49.39,8.333333333333334,1,1,0,0,8,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6242,7621,13602,-9,13601,13603,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.55756,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6242,7621,13603,13601,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,8.4063749,8.3807697,0,7,0,118.42886,0,2,2,2021,8,0,40,48,1,0,0,12.277498,12.277498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.92,49.39,49.46,56.91,8.333333333333334,1,1,0,0,8,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6242,7621,13604,-9,13601,13603,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.6877,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,1835.75,90907.719,-27677.234,0,0,0,0,2959.9084 +6243,7622,13605,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,5.879807,5.8867288,0,0,0,-1007.5101,0,3,3,2021,6,0,51,65,1,0,0,.91274279,.91274279,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,10,10,2,1,163,0,0,0,0,0,0,1385.8693 +6244,7623,13606,-9,13607,-9,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.4296,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,1,0,1045.6666,15904.828,0,0,0,3417.8291,-262.68735,1262.8369 +6244,7623,13607,-9,-9,-9,1,0,37,1,2,0,2,2,-9,1,1,0,0,0,0,0,-949.98651,0,2,3,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,1.666666666666667,1,1,0,1,0,10,1,0,1045.6666,15904.828,0,0,0,3417.8291,-262.68735,1262.8369 +6244,7623,13608,-9,13607,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.6497,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1045.6666,15904.828,0,0,0,3417.8291,-262.68735,1262.8369 +6245,7624,13609,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-891.32214,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,6.5471826,0,71.177032,0,1,1,0,0,0,53,45,-9,-9,8,2,3,0,0,0,8,1,0,777,36718.73,0,0,0,696.26874,0,1043.4309 +6246,7625,13610,-9,-9,13611,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1022.1213,-9,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,9,1,0,2958.5,-99183.453,0,0,0,0,0,665.09729 +6246,7625,13611,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1104.0316,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.12,36.71,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,2958.5,-99183.453,0,0,0,0,0,665.09729 +6247,7626,13612,13613,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.0927982,7.9774823,0,9,-8,37.318592,0,-9,-9,2021,10,0,38,38,1,0,0,9.1273012,9.1273012,0,0,0,0,0,0,0,14.5,1,1,0,2.5782259,0,47.47,49.84,57.33,53.46,8.333333333333334,1,1,0,0,14,1,4,1,602,924337.69,397971.06,327487.19,17407.258,11509.17,8701.6211,2646.7744 +6247,7626,13613,13612,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.5943842,7.8604431,0,9,8,124.41221,0,2,2,2021,12,0,40,40,1,0,0,5.6080537,5.6080537,.05,.05,.05,0,0,0,0,0,1,1,0,.77045155,0,57.33,53.46,47.47,49.84,8.333333333333334,1,1,0,0,14,1,4,1,602,924337.69,397971.06,327487.19,17407.258,11509.17,8701.6211,2646.7744 +6248,7627,13614,13615,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,7.638504,7.8535647,0,1,-5,-80.171455,-9,-9,-9,2021,7,0,30,0,1,0,0,10.719172,10.719172,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,55,10,1,1,0,0,8,4,5,1,1164.5,1181414.9,789903.63,105289.88,0,0,0,7741.4404 +6248,7627,13615,13614,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.7640524,9.7514925,0,1,5,167.67554,-9,2,3,2021,9,0,58,0,1,1,0,34.051182,34.051182,.05,.05,0,0,0,0,0,0,0,0,0,2.0586126,0,52,55,57.06,57.76,8,1,1,0,0,1,4,5,1,1164.5,1181414.9,789903.63,105289.88,0,0,0,7741.4404 +6249,7628,13616,13617,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.5603361,5.1434159,26,4,-44.188007,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1658521,58.32,50.22,56.19,46.16,8.333333333333334,1,1,0,0,0,11,3,1,621,165563.39,216845.05,0,0,0,0,1736.8368 +6249,7628,13617,13616,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,8.2287798,8.1329565,4.8836594,26,-4,-38.141914,0,-9,-9,2021,9,0,41,40,1,0,0,8.425518,8.425518,0,0,0,0,0,0,0,0,1,1,0,0,5.2164121,56.19,46.16,58.32,50.22,8.333333333333334,1,1,0,0,9,11,3,1,621,165563.39,216845.05,0,0,0,0,1736.8368 +6250,7629,13618,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.8055673,6.8197961,0,0,-1101.1188,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,1.3974531,0,16.77561,0,1,1,0,2.2831941,6.7249265,62.42,32.41,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,1561,95202.984,69065.281,87619.023,0,0,0,975.88544 +6251,7630,13619,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-997.01965,0,2,2,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9622779,0,3.14,61.5,-9,-9,0,1,1,0,1,0,8,1,1,1729,-166500.2,0,0,0,0,-1037.3103,782.6861 +6251,7631,13620,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,7.3451958,7.0988498,0,0,0,-1051.6699,0,-9,-9,2021,9,0,35,-9,1,1,0,5.2810307,5.2810307,0,0,0,0,0,0,0,0,1,1,0,.72864586,0,51,56,-9,-9,8,4,6,0,0,1,8,3,1,492,-91147.164,0,0,0,0,0,632.88342 +6252,7632,13621,13622,-9,-9,1,0,52,0,0,0,3,3,-9,1,3,8.4660892,8.1787443,0,10,1,7.4053631,0,3,3,2021,24,11,48,0,1,11,0,13.372667,13.372667,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39,36.22,49.14,39.45,1.666666666666667,1,1,0,0,1,13,5,1,685,889765.75,588754.81,209012.5,-10343.625,18876.984,3472.0801,3772.6375 +6252,7632,13622,13621,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.7765684,7.6334176,0,10,-1,-72.856674,0,2,3,2021,10,0,29,34,1,0,0,11.143074,11.143074,.05,.05,0,0,0,0,0,0,1,1,0,4.4738441,0,49.14,39.45,39,36.22,8.333333333333334,1,1,0,0,11,13,5,1,685,889765.75,588754.81,209012.5,-10343.625,18876.984,3472.0801,3772.6375 +6252,7633,13623,-9,13621,13622,1,1,26,0,0,0,1,1,-9,0,4,8.5213537,8.2709646,0,0,0,-999.34943,0,3,2,2021,7,0,40,40,1,0,1,18.420555,18.420555,.05,.05,0,0,0,0,0,0,1,1,0,5.092165,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,13,5,1,2134,27448.08,70807.938,0,0,18453.482,1204.0074,1741.6713 +6253,7634,13624,13625,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.6675158,8.703619,0,23,9,73.529999,0,-9,-9,2021,9,0,20,-9,1,0,0,38.347347,38.347347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.6,52.88,51.41,56.15,8.333333333333334,2,3,0,0,10,2,5,1,509.5,2654804.3,2193067.5,446722.88,0,5049.0586,9651.9883,5251.1152 +6253,7634,13625,13624,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.946784,8.6423206,0,23,0,-128.11746,0,-9,-9,2021,11,2,40,-9,1,2,0,21.184431,21.184431,0,0,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,52.6,52.88,8.333333333333334,2,3,0,0,13,2,5,1,509.5,2654804.3,2193067.5,446722.88,0,5049.0586,9651.9883,5251.1152 +6253,7635,13626,-9,13625,13624,1,1,23,0,0,0,1,1,1,0,4,0,0,0,0,0,-933.08966,-9,1,3,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,1,5,2,1,1,535,101252.93,0,0,0,0,0,0 +6253,7636,13627,-9,13625,13624,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-956.53876,-9,1,3,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,989,-59181.691,0,0,0,0,0,385.84979 +6254,7637,13628,13629,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,8,5,0,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,1,0,17.067818,0,0,1,1,0,0,0,31.44,22.39,39.39,37.66,3.333333333333333,1,1,0,1,0,13,1,1,1320.5,43250.039,0,0,0,9047.1348,0,1989.4928 +6254,7637,13629,13628,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,8,-5,0,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.39,37.66,31.44,22.39,1.666666666666667,1,1,0,1,0,13,1,1,1320.5,43250.039,0,0,0,9047.1348,0,1989.4928 +6255,7638,13630,13633,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.0704594,7.3831749,0,1,0,111.3769,-9,3,3,2021,19,7,16,0,1,7,0,10.919281,10.919281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.69,58.7,51.24,58.84,5,1,1,0,0,6,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6255,7638,13631,-9,13633,13630,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.1914,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6255,7638,13632,-9,13633,13630,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.7339,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6255,7638,13633,13630,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,1,0,104.34482,-9,-9,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,37.69,58.7,8.333333333333334,1,1,0,0,0,11,2,1,796.75,23669.537,15684.586,87035.109,65273.652,0,0,1433.4823 +6256,7639,13634,13637,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,7.817481,7.5731721,0,7,-6,87.064537,0,1,3,2021,12,2,28,27,1,2,0,7.9796457,7.9796457,0,0,0,0,0,0,0,0,1,1,0,0,0,37.02,57.23,43.54,59.6,8.333333333333334,1,1,0,0,9,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6256,7639,13635,-9,13634,13637,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.40662,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6256,7639,13636,-9,13634,13637,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-958.62158,-9,1,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6256,7639,13637,13634,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,5.4370999,5.0907426,0,7,6,116.53077,0,2,2,2021,11,1,10,8,1,1,0,3.2530472,3.2530472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,37.02,57.23,8.333333333333334,1,1,0,0,9,6,2,1,606.75,79749.922,127858.95,60724.953,48921.617,-350.7529,0,1495.7235 +6257,7640,13638,13639,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.8132467,7.9584107,46,6,-17.764402,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7453704,60.29,52.11,40.75,58.26,10,1,1,0,0,6,1,3,1,1241.5,935209.75,508617.63,256397.56,0,0,0,2491.3464 +6257,7640,13639,13638,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9410572,6.9096484,46,-6,23.31657,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9402304,40.75,58.26,60.29,52.11,3.333333333333333,1,1,0,0,11,1,3,1,1241.5,935209.75,508617.63,256397.56,0,0,0,2491.3464 +6258,7641,13640,-9,13642,-9,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.318,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,2,0,472,53903.535,0,0,0,0,0,882.19751 +6258,7641,13641,-9,13642,-9,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-981.81982,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,472,53903.535,0,0,0,0,0,882.19751 +6258,7641,13642,-9,-9,-9,1,0,20,2,2,0,2,2,-9,0,4,0,0,0,0,0,-987.53137,0,-9,-9,2021,18,6,0,7,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.24,54.81,-9,-9,6.666666666666667,1,1,1,0,2,13,2,0,472,53903.535,0,0,0,0,0,882.19751 +6259,7642,13643,13644,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7663097,7.481638,0,7,0,109.32623,0,-9,-9,2021,8,0,20,19,1,0,0,10.990202,10.990202,0,0,0,0,0,0,0,0,0,0,0,1.4548051,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,5,6,3,1,411,245360.77,83595.586,220477.97,-5381.7217,0,0,1672.4292 +6259,7642,13644,13643,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.3930173,7.2354331,34,0,162.89296,0,3,-9,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.69099599,7.382782,55.96,49.93,57.16,56.15,10,1,1,0,0,0,6,3,1,411,245360.77,83595.586,220477.97,-5381.7217,0,0,1672.4292 +6260,7643,13645,-9,13646,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0742054,8.1216927,0,0,0,-887.30389,0,3,3,2021,7,0,37,37,1,0,0,8.0958185,8.0958185,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,6,4,0,245,-5833.8687,0,0,0,0,0,1335.9735 +6260,7644,13646,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1020.689,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,.98829103,7.7424636,20.423429,0,1,1,0,0,0,55,43,-9,-9,8,1,1,0,0,0,6,1,0,304,0,0,0,0,0,0,849.23279 +6261,7645,13647,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.1014819,7.2985749,0,0,-958.62946,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,.85003424,9.8617811,22.851755,0,1,1,0,0,6.7132344,62.66,52.4,-9,-9,10,1,1,0,0,0,2,3,1,602,6330.9229,136888.17,0,0,0,0,1067.0929 +6262,7646,13648,13649,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.6838961,8.5965891,0,14,2,-127.23575,0,3,2,2021,14,4,40,40,1,4,0,15.455716,15.455716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.99,60.71,51.43,45.6,10,1,1,0,0,9,2,5,1,1223,201363.44,-12853.813,125183.11,41816.93,1189.9305,0,3925.9072 +6262,7646,13649,13648,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.6997671,8.7087526,0,14,-2,-117.80331,0,2,-9,2021,10,0,42,40,1,0,0,10.834363,10.834363,0,0,0,0,0,0,0,0,0,0,0,0,0,51.43,45.6,43.99,60.71,8.333333333333334,1,1,0,0,9,2,5,1,1223,201363.44,-12853.813,125183.11,41816.93,1189.9305,0,3925.9072 +6263,7647,13650,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1041.3781,0,2,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.52,26.2,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,106,-126107.49,0,0,0,0,0,1230.972 +6264,7648,13651,-9,13654,13652,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-927.71893,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6264,7648,13652,13654,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3692579,8.4415302,0,12,7,-45.687469,0,3,3,2021,6,0,45,51,1,0,0,10.8697,10.8697,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.64,55.4,54.2,57.49,10,1,1,0,0,13,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6264,7648,13653,-9,13654,13652,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-928.49371,-9,2,2,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.8,59.7,-9,-9,6.666666666666667,1,1,0,0,1,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6264,7648,13654,13652,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.3171244,8.0766134,0,12,-7,-35.60836,0,3,2,2021,12,0,40,40,1,0,0,17.403267,17.403267,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.64,55.4,8.333333333333334,1,1,0,0,13,2,4,1,625.75,-112819.72,-1765.4316,0,0,0,0,3353.8906 +6265,7649,13655,13656,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,8,9,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,51,47,8,1,1,0,0,0,13,1,1,1131.5,306061.38,-9777.2227,245342.44,-2124.7949,0,0,1271.6117 +6265,7649,13656,13655,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,8,0,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51,47,54,46,7,1,1,0,0,0,13,1,1,1131.5,306061.38,-9777.2227,245342.44,-2124.7949,0,0,1271.6117 +6266,7650,13657,13658,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,4.9657288,5.2983832,24,-5,8.933569,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5340204,57.16,56.15,54.13,45.34,8.333333333333334,1,1,0,0,2,9,2,1,400.5,445147.75,188095.06,279421.38,0,0,0,2118.8528 +6266,7650,13658,13657,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.7843394,5.5435338,27,5,22.053461,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.7415433,54.13,45.34,57.16,56.15,6.666666666666667,1,1,0,0,3,9,2,1,400.5,445147.75,188095.06,279421.38,0,0,0,2118.8528 +6267,7651,13659,13661,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,9.8273582,9.7495041,0,7,3,-59.815166,0,2,2,2021,15,3,5,7,1,3,0,390.64871,390.64871,0,0,0,0,0,0,0,0,1,1,0,5.0951672,0,38.86,59.06,51.77,58.57,3.333333333333333,1,1,0,0,5,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7651,13660,-9,13659,13661,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.44366,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7651,13661,13659,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.3581533,9.4992323,0,7,-3,7.2875228,0,1,1,2021,11,0,40,55,1,0,0,37.194756,37.194756,0,0,0,0,0,0,0,0,1,1,0,5.7314644,0,51.77,58.57,38.86,59.06,8.333333333333334,1,1,0,0,9,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7651,13662,-9,13659,13661,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-951.67468,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,818,406632.41,18768.051,506026.63,287502.81,0,0,10716.368 +6267,7652,13663,-9,13659,13661,1,0,19,0,2,0,2,2,-9,0,1,0,0,0,0,0,-962.94611,1,2,1,2021,21,7,0,45,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31,31,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,798,66197.32,0,0,0,0,0,0 +6268,7653,13664,-9,13666,13665,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.22009,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6268,7653,13665,13666,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,8.8631544,8.5913658,0,7,4,15.709189,0,-9,2,2021,10,1,40,40,1,1,0,19.568401,19.568401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,47.49,55.02,8.333333333333334,1,1,0,0,8,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6268,7653,13666,13665,-9,-9,1,0,47,0,2,0,3,3,-9,0,4,7.0529728,6.5274229,0,7,-4,-76.76873,0,2,-9,2021,10,0,15,15,1,0,0,6.9305544,6.9305544,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,55.02,52,54.51,8.333333333333334,1,1,0,0,4,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6268,7653,13667,-9,13666,13665,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.17645,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1205,499917.44,499147.88,122623.96,87849.664,0,0,3023.689 +6269,7654,13668,-9,13671,13669,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1090.8701,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6269,7654,13669,13671,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.5613174,8.5531864,0,12,2,-18.652662,0,2,2,2021,13,2,46,44,1,2,0,14.600253,14.600253,.05,.05,0,0,0,0,0,0,1,1,0,7.5116835,0,52.25,37.78,40.07,42.46,8.333333333333334,1,1,0,0,12,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6269,7654,13670,-9,13671,13669,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.35132,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6269,7654,13671,13669,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,8.6475792,8.8268051,0,12,-2,-75.367378,0,3,2,2021,18,6,35,35,1,6,0,17.969398,17.969398,0,0,0,0,0,0,0,2,1,1,0,2.5983329,0,40.07,42.46,52.25,37.78,3.333333333333333,1,1,0,0,12,2,5,1,659,39286.121,-14118.952,0,0,0,0,5431.064 +6270,7655,13672,13673,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.0818119,7.2357569,53,2,-39.181213,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.2165034,7.5978842,60.05,37.77,30.71,26.64,10,4,5,0,0,0,4,2,1,719.5,542181.5,215319.25,193295.89,0,0,0,751.66589 +6270,7655,13673,13672,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,53,-2,-15.747866,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,4.1015821,72.375191,14.397338,0,1,1,0,1.5016388,0,30.71,26.64,60.05,37.77,3.333333333333333,1,1,0,0,0,4,2,1,719.5,542181.5,215319.25,193295.89,0,0,0,751.66589 +6271,7656,13674,13675,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.3591623,8.7247744,0,28,-1,-53.169338,0,2,2,2021,7,0,42,46,1,0,0,17.838795,17.838795,.05,.05,0,0,0,0,0,0,0,0,0,1.0104947,0,62.39,56.71,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,598,796842.88,577852.5,277593.13,0,1973.4978,0,7674.2725 +6271,7656,13675,13674,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.9592314,9.4537201,0,28,1,-89.799187,0,2,2,2021,8,0,55,60,1,0,0,36.347195,36.347195,.05,.05,0,0,0,0,0,0,0,0,0,5.7467012,0,57.16,56.15,62.39,56.71,10,1,1,0,0,11,5,5,1,598,796842.88,577852.5,277593.13,0,1973.4978,0,7674.2725 +6271,7657,13676,-9,13674,13675,1,0,24,0,0,0,1,1,-9,0,4,8.3300161,8.536869,0,0,0,-1024.4331,0,2,2,2021,12,2,40,40,1,2,1,11.599196,11.599196,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,8,5,4,1,216,164304.83,-61967.355,0,0,18828.523,0,2052.5581 +6271,7658,13677,-9,13674,13675,1,1,19,0,0,1,2,0,0,0,5,0,6.5806894,6.4390869,0,0,-1009.9482,-9,2,2,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6729245,0,34.8,63.98,-9,-9,10,1,1,0,0,2,5,2,1,1410,-130632.23,-95107.453,0,0,0,0,881.35284 +6272,7659,13678,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.161201,7.1512804,0,0,0,-842.90564,0,2,2,2021,6,0,50,50,1,0,0,3.1238861,3.1238861,0,0,0,0,0,0,0,0,1,1,0,7.7969546,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,889,-30355.576,-11050.567,0,0,0,0,3002.582 +6273,7660,13679,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.5527892,7.4092102,0,0,0,-897.30353,0,1,1,2021,2,0,20,20,1,0,0,10.85172,10.85172,0,0,0,0,0,0,0,0,0,0,0,2.8663189,0,58.3,52.91,-9,-9,8.333333333333334,4,2,0,0,12,5,3,0,801,115941.56,0,0,0,0,4819.3735,588.8725 +6274,7661,13680,-9,13681,13683,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1076.1675,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6274,7661,13681,13683,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.5139093,8.3185015,0,12,0,16.981329,0,-9,-9,2021,32,12,34,34,1,12,0,19.571602,19.571602,.05,.05,0,0,0,0,0,0,1,1,0,3.0939498,0,25.98,65.13,57.16,56.15,5,1,1,0,0,15,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6274,7661,13682,-9,13681,13683,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4534,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6274,7661,13683,13681,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.5979433,8.8134727,0,12,0,-134.5952,0,2,2,2021,10,0,40,40,1,0,0,18.046951,18.046951,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,25.98,65.13,8.333333333333334,1,1,0,0,15,9,5,1,717.75,702877.19,270373.78,485435.81,161339.13,0,7090.3135,4989.8667 +6275,7662,13684,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,7.209662,7.3560534,0,0,0,-939.00671,0,2,3,2021,25,12,25,25,1,12,0,5.7550426,5.7550426,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.95,36.74,-9,-9,1.666666666666667,1,1,0,1,9,2,3,0,170,37564.953,91426.367,152425.58,0,0,0,625.66058 +6276,7663,13685,-9,-9,13686,1,0,22,0,0,0,2,2,-9,0,3,7.7207317,8.275033,0,0,0,-1109.9714,0,-9,1,2021,14,4,35,35,1,4,1,9.5273457,9.5273457,.05,.05,0,0,0,0,0,0,0,0,0,2.8772733,0,36.18,48.3,-9,-9,3.333333333333333,4,2,0,1,5,9,4,1,458,145200.81,44225.746,0,0,6959.3452,359.63184,775.50885 +6276,7664,13686,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,8.1145811,8.0962563,5.2370534,0,0,-933.65277,0,-9,-9,2021,12,0,45,50,1,0,0,8.7867632,8.7867632,0,0,0,0,0,0,0,0,0,0,0,0,5.6581645,42.38,36.42,-9,-9,5,1,1,0,0,6,9,4,1,626,1434758.3,917649.13,271760.75,-13416.687,0,0,1382.6956 +6277,7665,13687,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.1165905,8.2302351,0,0,-1027.6556,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.4587412,7.9304857,39.15,48.86,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,2463,1082171.1,-27792.797,188280.34,0,0,0,1372.8956 +6278,7666,13688,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.7220254,7.810338,0,0,-947.70947,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1262755,8.0317259,36.89,57.17,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,1211,807659.56,493415.28,129288.48,-13849.95,0,0,1705.4175 +6279,7667,13689,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,9.8561354,10.081925,0,0,0,-989.52026,-9,1,2,2021,6,0,45,0,1,0,0,58.838318,58.838318,.05,.05,0,0,0,0,0,0,0,0,0,4.2971344,0,57.06,57.76,-9,-9,10,1,1,0,0,7,5,5,1,813,195548.63,85788.063,152294.95,93313,3847.2864,3635.1826,6749.6963 +6280,7668,13690,13691,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,6.7381387,6.636713,10,0,-34.756226,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.574522,49.96,16.82,42.99,23.54,3.333333333333333,1,1,0,0,4,10,2,1,695.5,348662.31,55049.633,292357.13,0,0,0,1347.2191 +6280,7668,13691,13690,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,0,0,0,11,0,-69.29039,0,2,2,2021,9,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,42.99,23.54,49.96,16.82,10,1,1,0,0,2,10,2,1,695.5,348662.31,55049.633,292357.13,0,0,0,1347.2191 +6281,7669,13692,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1090.0044,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.85,49.42,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,2345,216234.98,0,0,0,0,0,328.90872 +6282,7670,13693,-9,13694,13695,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.60516,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,2,0,1068.6666,343508.09,164431.61,116160.67,-642.41919,1194.4071,0,1310.1289 +6282,7670,13694,13695,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,6.8977442,7.1488814,0,3,-12,51.287964,0,2,2,2021,16,4,26,24,1,4,0,6.3515186,6.3515186,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.81,54.1,52.07,22.22,6.666666666666667,1,1,0,0,6,11,2,0,1068.6666,343508.09,164431.61,116160.67,-642.41919,1194.4071,0,1310.1289 +6282,7670,13695,13694,-9,-9,1,1,57,0,1,0,2,2,-9,0,1,0,0,0,3,12,43.88657,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.07,22.22,41.81,54.1,6.666666666666667,1,1,1,0,0,11,2,0,1068.6666,343508.09,164431.61,116160.67,-642.41919,1194.4071,0,1310.1289 +6283,7671,13696,-9,13697,13698,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-865.64325,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6283,7671,13697,13698,-9,-9,1,0,32,1,2,0,2,2,-9,1,1,0,0,0,5,-19,0,0,-9,-9,2021,17,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44.74,15.29,47.46,35.18,8.333333333333334,1,1,0,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6283,7671,13698,13697,-9,-9,1,1,51,1,2,0,3,3,-9,1,2,0,0,0,5,19,0,0,-9,3,2021,17,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47.46,35.18,44.74,15.29,1.666666666666667,1,1,0,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6283,7671,13699,-9,13697,13698,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-979.05951,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,678.75,-12904.825,20241.094,0,0,0,0,3265.5159 +6284,7672,13700,13701,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,6,7,0,0,-9,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.01,42.51,41.13,22.99,5,1,1,1,0,0,12,1,0,1083,-107078.16,0,120419.09,92592.188,0,0,1654.3538 +6284,7672,13701,13700,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,6,-7,0,0,3,3,2021,25,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,22.99,43.01,42.51,0,1,1,0,1,0,12,1,0,1083,-107078.16,0,120419.09,92592.188,0,0,1654.3538 +6284,7673,13702,-9,13701,13700,1,0,26,0,0,0,2,2,-9,0,4,7.3170195,7.5865889,0,0,0,-1058.6152,0,3,3,2021,12,0,38,40,1,0,1,5.7995629,5.7995629,.05,.05,0,0,0,0,0,27,1,1,0,0,0,53.22,55.2,-9,-9,8.333333333333334,1,1,0,0,7,12,3,0,1542,-37439.707,170610.86,0,0,2682.8381,0,1735.8472 +6285,7674,13703,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,2,7.3196092,7.214839,0,0,0,-1006.9111,0,-9,2,2021,15,3,21,21,1,3,0,10.451353,10.451353,.05,.05,0,0,0,0,0,2,1,1,0,0,0,38.6,40.53,-9,-9,5,1,1,0,1,11,12,2,0,1872,-63642.652,-74680.281,0,0,3641.5996,-39.355469,1835.3118 +6286,7675,13704,-9,13706,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.5845,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,2,0,1276.3334,11526.011,0,0,0,0,0,1360.8353 +6286,7675,13705,-9,13706,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.49677,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,2,0,1276.3334,11526.011,0,0,0,0,0,1360.8353 +6286,7675,13706,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,0,0,-945.79553,0,3,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.91,55.39,-9,-9,8.333333333333334,3,4,1,0,0,8,2,0,1276.3334,11526.011,0,0,0,0,0,1360.8353 +6286,7676,13707,-9,13706,-9,1,1,19,0,2,1,2,0,0,0,3,0,5.7620335,5.9902449,0,0,-830.76263,-9,2,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0988793,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,1,8,2,0,960,-89341.484,0,0,0,0,0,251.53494 +6287,7677,13708,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.4789672,5.5121641,0,0,-1004.7621,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.8691182,40.87,44.58,-9,-9,5,1,1,0,0,0,5,2,0,713,368711.34,0,147576.94,0,0,0,672.86353 +6287,7678,13709,-9,13708,-9,1,1,44,0,0,0,2,2,-9,0,3,0,0,0,0,0,-974.93298,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.4,51.37,-9,-9,3.333333333333333,1,1,1,0,0,5,1,0,708,-153666.14,0,0,0,0,4522.02,769.68732 +6288,7679,13710,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.2660327,7.3555741,0,0,-942.3584,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1911902,7.2332859,62.25,48.33,-9,-9,10,1,1,0,0,7,6,3,1,968,681208.5,275619.66,543924.63,0,0,0,840.01093 +6289,7680,13711,13712,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.7336264,8.0745325,13,10,128.88025,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.231841,7.7614803,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,13,9,3,0,528,644045.13,118621.61,277701.06,0,2210.6128,0,2878.0591 +6289,7680,13712,13711,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.7112932,7.6805964,0,13,-10,-116.40456,0,3,3,2021,6,0,30,30,1,0,0,7.0051703,7.0051703,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,12,9,3,0,528,644045.13,118621.61,277701.06,0,2210.6128,0,2878.0591 +6289,7681,13713,-9,13712,13711,1,1,19,0,0,0,2,2,1,1,4,0,0,0,0,0,-1085.5592,-9,3,3,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,1,0,0,9,1,0,561,-148184.66,0,0,0,0,0,-169.22775 +6290,7682,13714,13715,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.7519584,7.8886309,0,13,-2,-7.1625476,0,2,2,2021,15,6,12,12,1,6,0,19.476831,19.476831,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53.14,45.74,52.24,50.75,10,1,1,0,0,13,10,3,0,689.5,444691.03,182779.84,183912.95,0,9722.4688,0,2067.3018 +6290,7682,13715,13714,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9302068,6.9067678,0,13,2,69.895844,0,2,2,2021,7,0,16,16,1,0,0,9.8900995,9.8900995,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52.24,50.75,53.14,45.74,10,1,1,0,0,13,10,3,0,689.5,444691.03,182779.84,183912.95,0,9722.4688,0,2067.3018 +6291,7683,13716,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.6697974,8.0317974,5.5594759,0,0,-1006.3077,0,2,2,2021,10,0,42,40,1,0,0,6.8011217,6.8011217,.05,.05,0,0,0,0,0,0,1,1,0,5.6460905,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,513,68677.484,-29875.652,148865.03,56553.598,0,0,2217.9929 +6291,7683,13717,-9,13716,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-924.80963,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,3,1,513,68677.484,-29875.652,148865.03,56553.598,0,0,2217.9929 +6291,7683,13718,-9,13716,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1112.7914,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,513,68677.484,-29875.652,148865.03,56553.598,0,0,2217.9929 +6292,7684,13719,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.705637,8.5411148,0,0,0,-984.09119,0,2,2,2021,14,2,38,38,1,2,0,14.137898,14.137898,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.09,61.63,-9,-9,8.333333333333334,1,1,0,0,9,8,5,0,258,-109635.33,4575.2129,0,0,0,0,3090.4846 +6293,7685,13720,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,7.7436152,7.4507999,0,0,-997.58795,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6758256,59.47,33.39,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,118,667155.88,188717.63,420807.94,0,0,0,1723.0369 +6293,7686,13721,-9,13720,-9,1,1,58,0,0,0,2,2,-9,0,4,0,7.1909194,6.8036356,0,0,-811.24817,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9266238,7.0605769,60.12,54.8,-9,-9,5,1,1,0,0,10,4,2,1,337,488525.47,323516.47,8490.6875,0,0,0,183.15608 +6294,7687,13722,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.3233719,8.0183859,0,0,0,-830.2605,0,3,3,2021,12,0,44,36,1,0,0,9.6940708,9.6940708,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.86,52.62,-9,-9,3.333333333333333,1,1,0,0,14,5,4,1,92,412215.19,208863.38,173176.34,24260.445,0,461.97488,1491.3632 +6295,7688,13723,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.3395395,8.585104,0,0,0,-863.61322,0,-9,-9,2021,10,0,40,40,1,0,0,13.372134,13.372134,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.11,56.11,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,797,513995.63,153163.34,293392.84,0,0,0,2018.4979 +6295,7689,13724,-9,13723,-9,1,1,21,0,0,0,2,2,-9,0,3,8.0272913,8.2109423,0,0,0,-977.08636,0,2,-9,2021,8,0,38,38,1,0,1,8.1504135,8.1504135,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,200,-82301.68,-59554.578,0,0,0,0,2048.114 +6296,7690,13725,-9,13727,13728,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1025.056,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13726,-9,13727,13728,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-952.74554,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13727,13728,-9,-9,1,0,42,0,3,0,2,2,-9,0,5,0,0,0,14,-1,26.86956,0,2,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,54.2,57.49,10,1,1,0,0,6,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13728,13727,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.6699877,8.9603386,0,14,1,-44.801117,0,-9,-9,2021,10,0,50,70,1,0,0,21.083139,21.083139,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.2,57.49,55.09,55.87,8.333333333333334,1,1,0,0,8,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6296,7690,13729,-9,13727,13728,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-881.19281,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,695.79999,558605.44,214970.77,303077.84,0,0,0,3740.0867 +6297,7691,13730,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-971.20728,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,5.5346298,0,49.600163,0,1,1,0,0,0,26.57,34.74,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,2637,-69758.555,0,0,0,0,0,963.04022 +6298,7692,13731,13732,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5719023,8.5651531,4.342711,5,2,.40906495,0,3,3,2021,12,0,30,30,1,0,0,23.988108,23.988108,.05,.05,0,0,0,0,0,0,0,0,0,5.0649099,4.4056745,52,54.51,46.33,55.93,6.666666666666667,1,1,0,0,6,5,4,1,856,128775.22,69453.969,172159.86,66120.914,0,0,2440.9255 +6298,7692,13732,13731,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.3654914,6.3925767,0,5,-2,-31.043137,0,3,3,2021,10,0,14,15,1,0,0,4.9580483,4.9580483,0,0,0,0,0,0,0,0,0,0,0,4.5977063,0,46.33,55.93,52,54.51,8.333333333333334,1,1,0,0,4,5,4,1,856,128775.22,69453.969,172159.86,66120.914,0,0,2440.9255 +6299,7693,13733,13734,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.6550283,7.6245742,33,6,-21.117676,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2329868,7.3974404,56.1,49.93,58.9,40.21,8.333333333333334,1,1,0,0,4,2,4,1,587.5,1928298.8,771393.5,351181.56,0,0,0,2945.9673 +6299,7693,13734,13733,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.9539399,7.8415289,31,-6,-138.56403,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.787096,7.7657266,58.9,40.21,56.1,49.93,8.333333333333334,1,1,0,0,6,2,4,1,587.5,1928298.8,771393.5,351181.56,0,0,0,2945.9673 +6300,7694,13735,13736,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,0,0,15,16,0,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.24,31.07,41.91,26.88,3.333333333333333,1,1,0,0,4,12,1,1,668.5,0,0,0,0,0,0,988.82806 +6300,7694,13736,13735,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,15,-16,0,0,-9,-9,2021,20,8,0,25,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.91,26.88,56.24,31.07,6.666666666666667,1,1,1,0,13,12,1,1,668.5,0,0,0,0,0,0,988.82806 +6301,7695,13737,13738,-9,-9,1,0,54,1,1,0,3,3,-9,0,3,7.8036475,7.8231144,0,40,-7,-4.2597194,0,3,3,2021,6,0,8,31,1,0,0,40.476158,40.476158,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.54,36.54,57.33,53.46,8.333333333333334,3,4,0,0,15,7,4,0,528.5,238942.31,185734.56,0,0,6334.3018,931.97443,3476.0894 +6301,7695,13738,13737,-9,-9,1,1,61,1,1,0,2,2,-9,0,3,8.3351374,8.6218758,0,13,7,-186.75627,0,3,3,2021,6,0,60,60,1,0,0,9.8164635,9.8164635,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,61.54,36.54,8.333333333333334,3,4,0,0,12,7,4,0,528.5,238942.31,185734.56,0,0,6334.3018,931.97443,3476.0894 +6301,7696,13739,-9,-9,-9,1,0,41,1,1,0,1,1,-9,0,5,0,0,0,0,0,-1063.5427,-9,-9,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,3,4,1,1,0,7,1,0,764.5,88378.805,0,392350,185475.28,0,0,-60.184326 +6301,7696,13740,-9,13739,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.5328,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,7,1,0,764.5,88378.805,0,392350,185475.28,0,0,-60.184326 +6301,7697,13741,-9,13737,13738,1,0,38,1,1,0,2,2,-9,0,5,8.0092669,8.0354834,0,0,0,-996.27466,0,3,2,2021,6,0,38,45,1,0,1,11.373123,11.373123,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,3,4,0,0,15,7,4,0,1646,-62898.32,0,0,0,0,0,1473.3466 +6302,7698,13742,13743,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.0648108,7.9888067,4.6066103,9,6,103.24295,0,3,3,2021,26,10,32,30,1,10,0,10.245624,10.245624,.05,.05,0,0,0,0,0,0,1,1,0,5.2046881,0,26.36,50.01,40.09,52.06,5,1,1,0,0,9,6,5,1,605.5,1262090.5,1115065,116396.27,80104.172,0,2654.8472,3664.8057 +6302,7698,13743,13742,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,9.1277781,8.7253304,0,9,-6,-18.883995,0,-9,-9,2021,9,1,59,64,1,1,0,18.239794,18.239794,.05,.05,0,0,0,0,0,0,1,1,0,4.3882575,0,40.09,52.06,26.36,50.01,6.666666666666667,1,1,0,0,11,6,5,1,605.5,1262090.5,1115065,116396.27,80104.172,0,2654.8472,3664.8057 +6303,7699,13744,13745,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.5268841,8.4822474,0,30,7,10.131905,0,3,3,2021,6,0,36,35,1,0,0,20.819952,20.819952,.05,.05,0,0,0,0,0,42,1,1,0,0,0,62.49,55.09,37.36,19.77,10,1,1,0,0,11,7,4,1,1049,1226858,814332.75,290149.88,0,0,0,3683.51 +6303,7699,13745,13744,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,30,-7,142.45461,-9,3,3,2021,32,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,62.49,55.09,6.666666666666667,1,1,0,1,0,7,4,1,1049,1226858,814332.75,290149.88,0,0,0,3683.51 +6304,7700,13746,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,4.6150064,4.5673575,0,0,-945.93616,0,3,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.9697771,35.97,23.7,-9,-9,5,1,1,0,0,0,11,2,0,476,32777.047,-46607.242,70195,0,0,0,1613.3915 +6305,7701,13747,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8969531,7.8051705,0,0,0,-1041.2936,0,3,3,2021,11,0,36,35,1,0,0,8.3911448,8.3911448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.09,42.51,-9,-9,5,1,1,0,0,15,2,4,1,1552,74996.766,84257.563,30164.039,67129.133,0,0,785.12054 +6306,7702,13748,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,9.9112568,9.6209908,0,0,0,-928.52191,0,-9,-9,2021,2,1,54,0,1,1,0,31.204601,31.204601,0,0,.05,0,0,0,0,0,0,0,0,0,0,59.68,56.78,-9,-9,6.666666666666667,3,4,0,0,2,8,5,0,1243,63800.844,36718.293,0,0,0,0,7641.8374 +6307,7703,13749,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,1,0,7.7052875,7.8117094,0,0,-961.88983,-9,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,6.8447328,74.850937,62.526127,0,1,1,0,0,7.2680449,24.93,19.95,-9,-9,1.666666666666667,1,1,0,0,0,11,3,1,152,31852.061,167506.61,0,0,0,0,2828.1174 +6307,7704,13750,13751,13749,-9,1,0,59,0,0,0,1,1,-9,0,3,9.2193851,9.285593,0,10,-1,-19.798986,0,3,2,2021,15,4,70,37,1,4,0,20.070368,20.070368,0,0,0,0,0,0,0,56,1,1,0,7.5316668,0,42.96,48.95,44.23,47.17,3.333333333333333,1,1,0,0,11,11,5,1,1547,2174437,1529583.5,342465.75,0,0,112.52798,4972.3799 +6307,7704,13751,13750,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.2682257,7.5787635,0,10,1,44.460598,0,3,3,2021,14,3,60,70,1,3,0,3.4586334,3.4586334,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.23,47.17,42.96,48.95,6.666666666666667,1,1,0,0,13,11,5,1,1547,2174437,1529583.5,342465.75,0,0,112.52798,4972.3799 +6308,7705,13752,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-931.52338,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,36.648945,0,0,1,1,0,0,0,43.52,11.62,-9,-9,10,1,1,0,0,0,13,1,0,248,80151.938,0,0,0,0,0,612.03735 +6309,7706,13753,13754,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.0788102,7.6005516,10,0,-101.21873,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8302153,0,0,1,1,0,6.7606606,7.2069092,51.08,54.77,37.72,33.13,8.333333333333334,1,1,0,0,0,7,3,1,849,927225.5,445916.88,279022.97,0,0,0,2752.8967 +6309,7706,13754,13753,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,7.5019484,7.3740978,10,0,19.077784,0,3,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,11.211593,0,0,1,1,0,4.4923081,7.5342364,37.72,33.13,51.08,54.77,3.333333333333333,1,1,0,0,9,7,3,1,849,927225.5,445916.88,279022.97,0,0,0,2752.8967 +6310,7707,13755,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2439919,8.6352062,0,0,0,-902.36639,0,3,3,2021,21,9,37,37,1,9,0,13.983499,13.983499,0,0,.05,0,0,0,0,0,1,1,0,0,0,26.55,57.97,-9,-9,5,1,1,0,0,9,4,4,1,1644,-162066.98,37737.516,0,0,0,0,2032.8517 +6311,7708,13756,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6483746,7.9181895,0,0,-1083.4585,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68992776,7.8594718,62.85,41.16,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,426,573775.69,455388.31,224218.11,0,0,0,1878.525 +6312,7709,13757,13758,-9,-9,1,1,49,0,3,0,3,3,-9,0,4,6.6790452,6.6420841,0,11,5,-21.976702,0,2,2,2021,7,0,25,30,1,0,0,4.6858826,4.6858826,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,3,4,0,0,12,8,2,0,1985.3334,42921.156,0,0,0,0,0,1559.2506 +6312,7709,13758,13757,-9,-9,1,0,44,0,3,0,2,2,-9,0,3,0,0,0,11,-5,69.464149,0,3,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5397148,0,57.33,53.46,57.16,56.15,10,3,4,0,0,0,8,2,0,1985.3334,42921.156,0,0,0,0,0,1559.2506 +6312,7709,13759,-9,13758,13757,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1027.8433,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,0,0,0,8,2,0,1985.3334,42921.156,0,0,0,0,0,1559.2506 +6312,7710,13760,-9,13758,13757,1,0,21,0,3,1,2,0,0,0,5,0,0,0,0,0,-992.90515,-9,2,3,2021,6,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.82,62.33,-9,-9,10,3,4,0,0,0,8,1,0,316,154346.8,0,0,0,0,0,0 +6312,7711,13761,-9,13758,13757,1,1,20,0,3,1,2,0,0,0,4,0,0,0,0,0,-1068.8585,-9,2,3,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,3,4,0,0,0,8,1,0,800,49616.969,0,0,0,2620.0103,164.14072,0 +6312,7712,13762,-9,13758,13757,1,0,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-954.29126,-9,2,3,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,3,4,0,0,0,8,1,0,1304,89482.5,0,0,0,0,0,0 +6313,7713,13763,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1043.6243,0,-9,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.34,23.87,-9,-9,1.666666666666667,3,4,1,1,0,5,1,0,4580,132225.5,0,0,0,0,0,804.19507 +6314,7714,13764,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,4.407372,4.1142721,0,0,-1088.9811,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,.11668586,0,0,1,1,0,0,4.2463455,45.83,41.17,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,543,369433.38,15623.097,110994.84,0,0,0,550.59747 +6315,7715,13765,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,8.4689684,8.2535353,5.2600532,25,0,61.675018,0,3,3,2021,9,0,12,12,1,0,0,49.633934,49.633934,.05,.05,0,0,0,0,0,114,1,1,0,.76183993,5.5874162,51.25,46.55,49,48,1.666666666666667,1,1,0,0,9,9,4,1,1495,143888.31,267713.13,0,0,0,0,4329.1011 +6315,7715,13766,-9,13765,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1095.9426,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,9,4,1,1495,143888.31,267713.13,0,0,0,0,4329.1011 +6316,7716,13767,13768,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,0,0,6,4,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,7.3208375,0,14.5,1,1,0,4.0972104,0,60.98,40.77,39.38,22.52,8.333333333333334,1,1,0,0,0,10,1,1,530.5,98661.625,6423.041,192546.66,0,0,0,1590.9231 +6316,7716,13768,13767,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,59,-4,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0023496,0,39.38,22.52,60.98,40.77,6.666666666666667,1,1,0,0,0,10,1,1,530.5,98661.625,6423.041,192546.66,0,0,0,1590.9231 +6317,7717,13769,13770,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.8812199,6.7362547,0,4,-3,16.71763,0,3,3,2021,11,0,37,36,1,2,0,2.8193023,2.8193023,0,0,0,0,0,0,0,0,1,1,0,.77596217,0,49,48,41.54,28.47,7,1,1,0,0,1,13,3,0,310.5,178759.5,202159.28,227362.41,43559.344,0,2214.385,1584.0259 +6317,7717,13770,13769,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,0,7.0063376,7.1340437,4,3,86.699768,0,3,3,2021,16,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5485988,7.0337934,41.54,28.47,49,48,3.333333333333333,1,1,0,0,7,13,3,0,310.5,178759.5,202159.28,227362.41,43559.344,0,2214.385,1584.0259 +6318,7718,13771,13772,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,6.3499155,6.3986368,37,5,52.511826,0,2,2,2021,17,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.41617915,6.5208716,39.15,17.49,49.58,50.05,5,1,1,0,0,11,10,3,1,582,-80076,22131.645,0,0,0,998.78674,1368.3257 +6318,7718,13772,13771,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4611864,7.6775775,0,37,-5,-150.99348,0,2,2,2021,8,1,40,39,1,1,0,4.1608291,4.1608291,0,0,0,0,0,0,0,14.5,1,1,0,2.5181086,0,49.58,50.05,39.15,17.49,6.666666666666667,1,1,0,0,15,10,3,1,582,-80076,22131.645,0,0,0,998.78674,1368.3257 +6319,7719,13773,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,7.6241446,7.7204895,0,0,-1113.0623,0,2,2,2021,11,3,0,18,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.75775343,7.5736337,60.08,40.24,-9,-9,6.666666666666667,1,1,0,0,14,4,3,1,405,136891.42,25788.309,0,0,0,0,1602.2719 +6320,7720,13774,-9,13777,13776,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1137.1204,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6320,7720,13775,-9,13777,13776,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.93433,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6320,7720,13776,13777,-9,-9,1,1,30,0,2,0,2,2,-9,0,5,8.6102686,8.9259949,0,7,2,76.851952,0,-9,-9,2021,7,0,40,40,1,0,0,19.141111,19.141111,.05,.05,0,0,0,0,.70194429,0,1,1,0,0,0,59.43,58.05,41.3,60.77,8.333333333333334,1,1,0,0,8,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6320,7720,13777,13776,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,7.5444784,7.6264663,0,7,-2,-61.518139,0,-9,-9,2021,8,0,22,22,1,0,0,9.2420301,9.2420301,.05,.05,0,0,0,0,0,0,1,1,0,1.1541263,0,41.3,60.77,59.43,58.05,10,1,1,0,0,8,9,4,1,1366.5,175334.03,107714.47,258324.19,161159.61,5965.8701,2723.4448,3764.8577 +6321,7721,13778,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,6.2802763,6.4082174,0,0,-1024.0023,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7104354,6.1716175,51.22,28.01,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,352,568796.06,-121073.26,226275.39,0,0,0,1710.5236 +6322,7722,13779,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.2900381,8.815134,0,0,0,-1005.3972,0,2,1,2021,20,9,46,45,1,9,0,25.889904,25.889904,.05,.05,0,0,0,0,0,0,1,1,0,4.6568508,0,32.82,63.08,-9,-9,3.333333333333333,2,3,0,0,7,6,5,1,494,20327.404,1760.8595,173852.97,85356.008,8550.8291,1491.6909,3302.123 +6323,7723,13780,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9282298,8.3520584,0,0,0,-1046.5459,0,3,3,2021,19,6,40,38,1,6,0,7.9828658,7.9828658,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.74,47.44,-9,-9,1.666666666666667,3,4,0,1,5,2,3,0,830,40268.598,5379.8086,107612.89,70338.313,0,0,1905.2882 +6324,7724,13781,13782,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.5183058,6.5160537,11,4,-202.0511,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.7481833,6.6292772,43.6,51.61,60.12,54.8,8.333333333333334,1,1,0,0,9,10,2,1,424,747695,179439.75,254699.38,0,0,0,1351.8457 +6324,7724,13782,13781,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.901113,7.1885839,40,-4,-205.83821,0,2,3,2021,6,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.12663461,6.6316385,60.12,54.8,43.6,51.61,10,1,1,0,0,13,10,2,1,424,747695,179439.75,254699.38,0,0,0,1351.8457 +6325,7725,13783,13784,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.0866117,9.4444818,7.7833295,12,-2,-154.00299,0,3,2,2021,9,2,38,43,1,2,0,24.315006,24.315006,0,0,0,0,0,0,0,27,0,0,0,0,8.1963091,51.24,58.84,57.54,58.85,1.666666666666667,1,1,0,0,12,12,5,1,1110,926543,381886.72,469428.81,26730.559,0,0,5365.2979 +6325,7725,13784,13783,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,12,2,-21.663391,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.3256063,0,57.54,58.85,51.24,58.84,1.666666666666667,1,1,0,0,8,12,5,1,1110,926543,381886.72,469428.81,26730.559,0,0,5365.2979 +6326,7726,13785,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.3925371,6.9371543,0,0,-912.62561,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9108131,7.3199916,57.73,30.59,-9,-9,5,1,1,0,0,0,1,2,1,235,477675.97,217638.64,200594.52,0,0,0,1703.6924 +6327,7727,13786,-9,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,0,0,0,0,0,-1101.5602,0,3,2,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.17,48.41,-9,-9,5,4,2,0,0,5,2,1,1,734.5,36191.922,83499.539,0,0,1891.7866,5824.4209,442.82593 +6327,7727,13787,-9,13786,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.6658,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,4,2,-9,0,0,2,1,1,734.5,36191.922,83499.539,0,0,1891.7866,5824.4209,442.82593 +6328,7728,13788,13789,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.4920025,8.0951633,0,6,1,37.520554,0,2,2,2021,6,0,37,37,1,0,0,12.096398,12.096398,.05,.05,.05,0,0,0,0,0,0,0,0,4.2826352,0,54.74,57.22,54.1,59.11,8.333333333333334,1,1,0,0,7,12,5,1,1123,1054233.5,627306.75,278218.66,0,0,5513.1396,3389.4604 +6328,7728,13789,13788,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.3604975,8.3869267,0,6,-1,-64.97612,0,2,2,2021,9,0,20,18,1,0,0,22.74975,22.74975,0,0,0,0,0,0,0,2,0,0,0,5.3496695,0,54.1,59.11,54.74,57.22,8.333333333333334,1,1,0,0,7,12,5,1,1123,1054233.5,627306.75,278218.66,0,0,5513.1396,3389.4604 +6329,7729,13790,13791,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,10,-1,71.016815,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7362659,0,54.79,55.86,51,48,8.333333333333334,1,1,0,0,0,11,2,1,1932,319954.09,161689.31,158015.52,0,0,0,947.43152 +6329,7729,13791,13790,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,5.469089,5.3500237,0,10,1,-24.557276,0,2,2,2021,10,0,40,50,1,1,0,.69392639,.69392639,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,54.79,55.86,7,1,1,0,0,1,11,2,1,1932,319954.09,161689.31,158015.52,0,0,0,947.43152 +6330,7730,13792,13793,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.4387426,8.6312304,0,2,0,13.143887,0,-9,-9,2021,13,1,45,38,1,1,0,12.210383,12.210383,0,0,0,0,0,0,0,0,0,0,0,0,0,36.92,51.87,46.32,53.44,8.333333333333334,1,1,0,0,14,5,5,0,626.5,-55540.402,0,96860.578,141991.58,10213.754,0,3218.8262 +6330,7730,13793,13792,-9,-9,1,1,29,0,0,0,1,1,-9,0,2,8.1096478,8.3735933,0,2,0,-78.043449,0,2,2,2021,13,1,52,38,1,1,0,9.5477858,9.5477858,0,0,0,0,0,0,0,0,0,0,0,1.2550799,0,46.32,53.44,36.92,51.87,6.666666666666667,1,1,0,0,10,5,5,0,626.5,-55540.402,0,96860.578,141991.58,10213.754,0,3218.8262 +6331,7731,13794,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9903808,8.0888987,0,0,0,-1110.1904,0,-9,-9,2021,4,0,38,40,1,0,0,12.41767,12.41767,.05,.05,0,0,0,0,0,0,1,1,0,1.2639351,0,54.94,50.33,-9,-9,8.333333333333334,4,2,0,0,3,6,4,0,170,-99999.758,51859.668,0,0,1992.1895,0,1891.7141 +6332,7732,13795,-9,13797,13796,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.23718,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2640483,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,5,5,1,3088.6667,1099434.6,333229.88,601987,85505.664,2164.2749,0,4795.7759 +6332,7732,13796,13797,-9,-9,1,1,60,0,1,0,2,2,-9,0,4,9.2737885,9.2942591,0,9,9,21.05312,0,-9,-9,2021,8,0,43,40,1,0,0,24.741348,24.741348,0,0,.05,0,0,0,0,0,0,0,0,4.2329059,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,3088.6667,1099434.6,333229.88,601987,85505.664,2164.2749,0,4795.7759 +6332,7732,13797,13796,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,7.6096444,7.9378209,0,23,0,9.2405281,0,2,2,2021,6,0,25,29,1,0,0,8.6337214,8.6337214,0,0,.05,0,0,0,0,0,0,0,0,4.5228186,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,3088.6667,1099434.6,333229.88,601987,85505.664,2164.2749,0,4795.7759 +6333,7733,13798,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,8.9882154,8.4613991,0,0,-1122.3982,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.0033989,58.3,47.38,-9,-9,10,1,1,0,0,0,12,5,1,3748,637384.56,286092.34,225430.89,0,0,0,4819.4478 +6334,7734,13799,13800,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.927568,7.9568987,0,36,1,-52.368332,0,3,-9,2021,12,0,30,30,1,0,0,15.767288,15.767288,0,0,0,0,0,0,0,0,0,0,0,0,0,49.88,44.92,51.41,35.88,8.333333333333334,1,1,0,0,13,9,4,1,754,1359365.4,846115.75,471247.94,0,0,0,2847.7905 +6334,7734,13800,13799,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,7.9915257,7.9590683,0,36,-1,111.37256,0,2,-9,2021,14,2,42,42,1,2,0,6.6385207,6.6385207,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.41,35.88,49.88,44.92,6.666666666666667,1,1,0,0,15,9,4,1,754,1359365.4,846115.75,471247.94,0,0,0,2847.7905 +6335,7735,13801,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1016.0142,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,75.264229,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,10,1,0,1286,179231,0,178187.2,0,0,0,1614.8495 +6335,7736,13802,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3597383,8.2711926,0,0,0,-921.82538,0,3,2,2021,13,2,45,38,1,2,0,11.335398,11.335398,.05,.05,0,0,0,0,0,74.5,1,1,0,.14614406,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,9,10,4,0,822,-140335.86,-49995.727,0,0,0,0,1558.9431 +6336,7737,13803,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.8644023,7.8866587,0,0,0,-1087.2831,0,2,2,2021,8,0,33,0,1,0,0,10.382013,10.382013,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.66,39.54,-9,-9,8.333333333333334,3,4,0,0,11,8,4,0,786,249384.16,49376.617,169990.75,58316.801,384.25125,110.07198,1497.8452 +6336,7738,13804,-9,13803,-9,1,1,25,0,0,0,2,2,-9,0,3,5.9036756,5.9126534,0,0,0,-998.33923,0,2,-9,2021,14,2,10,7,1,2,1,4.3063049,4.3063049,0,0,0,0,0,0,0,0,1,0,1,0,0,44.83,55.13,-9,-9,6.666666666666667,3,4,0,0,1,8,2,0,868,-160816.38,0,0,0,0,0,-26.116341 +6337,7739,13805,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1151857,7.689393,0,0,0,-1024.2395,-9,-9,-9,2021,9,0,43,0,1,0,0,7.1762362,7.1762362,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.73,57.61,-9,-9,5,2,3,0,0,11,6,4,1,1318,-70714.305,78470.172,0,0,0,0,414.46609 +6337,7740,13806,-9,13805,-9,1,0,33,0,0,0,2,2,-9,0,5,6.5365419,6.7775292,0,0,0,-1081.6788,0,2,-9,2021,5,0,12,14,1,0,1,7.678134,7.678134,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,11,6,2,1,114,101496.81,-75795.945,0,0,0,0,882.46216 +6338,7741,13807,-9,13810,13808,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.883,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6338,7741,13808,13810,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.0175543,8.7666616,0,9,5,-44.355507,0,3,-9,2021,13,1,40,37,1,1,0,20.975988,20.975988,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,57.06,57.76,8.333333333333334,1,1,0,0,10,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6338,7741,13809,-9,13810,13808,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.43921,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6338,7741,13810,13808,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.2088594,7.1842051,0,9,-5,47.42207,0,2,-9,2021,7,0,25,25,1,0,0,7.8658457,7.8658457,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.55,60.42,10,1,1,0,0,8,2,4,1,440.5,147175.05,50285.828,177402.28,81826.813,0,0,2935.7554 +6339,7742,13811,13812,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.1925306,8.2995377,0,9,-12,8.9524946,0,1,2,2021,25,10,35,0,1,10,0,12.588842,12.588842,.05,.05,0,0,0,0,0,7,1,1,0,3.864058,0,25.56,52.21,24.46,63.1,1.666666666666667,1,1,0,0,10,8,4,1,446.5,540011.06,322017.63,0,0,0,0,2683.0928 +6339,7742,13812,13811,13813,-9,1,0,53,0,0,0,1,1,-9,0,4,7.6771998,7.5872784,0,9,12,51.109573,0,2,3,2021,17,7,15,35,1,7,0,13.210583,13.210583,.05,.05,0,0,0,0,0,27,1,1,0,6.1915088,0,24.46,63.1,25.56,52.21,8.333333333333334,1,1,0,0,11,8,4,1,446.5,540011.06,322017.63,0,0,0,0,2683.0928 +6339,7743,13813,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.2549038,6.8665805,0,0,-946.49396,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,10.028305,23.425085,92.670227,0,1,1,0,5.1125956,6.9810233,45.76,19.71,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,270,22230.283,-18552.57,0,0,0,0,1948.8572 +6340,7744,13814,-9,13816,13815,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-988.41162,-9,1,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,8.333333333333334,1,1,1,0,0,9,4,1,387,1663812.8,954734.69,526111.69,0,0,5345.0278,3741.2842 +6340,7744,13815,13816,13817,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.8510857,8.5402441,20,13,74.611191,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.3957233,55.36,54.24,35.61,65.82000000000001,8.333333333333334,1,1,0,0,13,9,4,1,387,1663812.8,954734.69,526111.69,0,0,5345.0278,3741.2842 +6340,7744,13816,13815,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,6.6280732,6.5863199,0,20,-13,39.46508,0,2,3,2021,16,6,70,40,1,6,0,1.4016554,1.4016554,0,0,0,0,0,0,0,7,1,1,0,3.4307988,0,35.61,65.82000000000001,55.36,54.24,8.333333333333334,1,1,0,0,11,9,4,1,387,1663812.8,954734.69,526111.69,0,0,5345.0278,3741.2842 +6340,7745,13817,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,7.8295827,7.8846917,0,0,-1152.2487,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,17.164816,11.536331,174.87726,0,1,1,0,0,7.6743407,47.45,25.61,-9,-9,6.666666666666667,1,1,0,1,0,9,3,1,1775,548346.19,242937.2,281932.59,0,0,0,3259.8398 +6341,7746,13818,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,2.8615868,2.9196506,0,0,-1027.5835,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,2.889426,44.34,44.89,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,625,36716.656,0,0,0,0,0,1840.101 +6342,7747,13819,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.9297276,9.3796196,0,0,0,-974.18036,0,3,3,2021,10,0,40,40,1,0,0,28.515898,28.515898,.05,.05,0,0,0,0,0,0,0,0,0,3.0179965,0,43.38,62.58,-9,-9,8.333333333333334,4,5,0,0,8,8,5,0,245,166451.86,93861.016,0,0,0,0,2917.3064 +6343,7748,13820,13821,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,7.9795742,7.7892766,0,4,3,-5.8310761,0,2,2,2021,7,0,30,39,1,0,0,14.094295,14.094295,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53.56,49.66,43.37,57.28,8.333333333333334,1,1,0,0,11,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6343,7748,13821,13820,-9,-9,1,0,32,1,2,0,2,2,-9,0,3,7.9577823,7.8337049,5.4253507,4,-3,9.4838285,0,-9,-9,2021,14,4,30,30,1,4,0,10.914057,10.914057,0,0,0,0,0,0,0,0,1,0,1,6.1812901,0,43.37,57.28,53.56,49.66,10,1,1,0,0,4,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6343,7748,13822,-9,13821,13820,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.9833,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6343,7748,13823,-9,13821,13820,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.53729,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,0,405.75,-58676.055,8994.3271,0,0,0,1923.8651,4567.2939 +6344,7749,13824,13825,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.4466906,7.5300274,29,2,-157.20551,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2268538,7.5450788,50.57,52.35,50.41,48.86,8.333333333333334,1,1,0,0,0,11,2,1,885,1045705.8,-32133.168,227396.03,0,0,0,2809.9019 +6344,7749,13825,13824,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,5.5199895,5.2670031,29,-2,-17.116186,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5601902,4.9264607,50.41,48.86,50.57,52.35,8.333333333333334,1,1,0,0,0,11,2,1,885,1045705.8,-32133.168,227396.03,0,0,0,2809.9019 +6345,7750,13826,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.1688004,8.1697941,0,0,0,-894.07904,0,2,1,2021,3,0,40,0,1,0,0,9.4318447,9.4318447,.05,.05,0,0,0,0,0,2,1,1,0,1.5807718,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,1574,-63704.93,-77107.656,0,0,0,0,1256.4464 +6346,7751,13827,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,4.9023356,5.5310321,0,0,-1134.1704,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,4.8710289,0,0,1,1,0,.42106688,5.4370856,52,46,-9,-9,8,1,1,0,0,0,7,2,1,1199,370557.44,243124.91,146853.63,0,0,0,686.81488 +6347,7752,13828,13829,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,4,-5,67.33567,0,2,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,17.92,58.75,37.17,50.6,1.666666666666667,1,1,0,1,4,10,2,0,160,989884.88,562330.13,400624.25,0,0,0,727.95044 +6347,7752,13829,13828,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,7.4126091,7.4533701,0,4,5,55.997623,0,2,2,2021,13,2,36,36,1,2,0,6.3241048,6.3241048,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,50.6,17.92,58.75,6.666666666666667,1,1,0,0,9,10,2,0,160,989884.88,562330.13,400624.25,0,0,0,727.95044 +6348,7753,13830,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,6.3106246,6.2650995,0,0,-943.41382,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8373451,6.3150067,45.57,53.5,-9,-9,10,1,1,0,1,7,5,2,1,1070,568026.81,-80880.078,294266.44,0,0,0,-62.823612 +6349,7754,13831,13832,-9,-9,1,1,47,1,1,0,2,2,-9,0,2,0,0,0,9,-1,0,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,15.72,39.25,33.02,25.49,0,1,1,1,1,0,10,1,0,429.5,107154.69,0,0,0,3650.0315,2829.9543,1741.0852 +6349,7754,13832,13831,-9,-9,1,0,48,1,1,0,3,3,-9,1,1,0,0,0,9,1,0,0,-9,-9,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.02,25.49,15.72,39.25,5,1,1,0,1,0,10,1,0,429.5,107154.69,0,0,0,3650.0315,2829.9543,1741.0852 +6350,7755,13833,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,7.0448289,6.7409959,0,0,0,-948.26178,0,2,-9,2021,8,0,16,16,1,0,0,6.9920974,6.9920974,0,0,0,0,0,0,0,0,1,0,1,0,0,55.39,16.88,-9,-9,8.333333333333334,2,3,0,0,9,9,2,1,936,-20974.168,0,0,0,0,0,1701.7064 +6350,7755,13834,-9,13833,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2297,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,2,1,936,-20974.168,0,0,0,0,0,1701.7064 +6351,7756,13835,13836,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,6.0142355,5.6203003,51,-3,-13.160583,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,62.004482,0,0,1,1,0,3.1801007,6.0015435,51.46,18.52,36.03,40.6,6.666666666666667,1,1,0,0,0,13,2,1,330,316859.5,98582.5,141473.63,0,0,0,2107.7959 +6351,7756,13836,13835,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,3,3,119.36757,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,40.6,51.46,18.52,5,1,1,0,0,0,13,2,1,330,316859.5,98582.5,141473.63,0,0,0,2107.7959 +6352,7757,13837,-9,13839,13840,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-894.12299,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,63,-9,-9,7,1,1,-9,0,0,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6352,7757,13838,-9,13839,13840,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.1284,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6352,7757,13839,13840,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,7.718719,7.5863981,0,11,-10,91.425079,0,-9,-9,2021,12,0,22,22,1,0,0,9.3276587,9.3276587,0,0,0,0,0,0,0,0,1,0,1,0,0,40.4,58.62,33.76,56.35,6.666666666666667,1,1,0,0,13,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6352,7757,13840,13839,-9,-9,1,1,40,1,2,0,1,1,-9,0,2,5.8660145,6.2184606,0,11,10,40.863197,0,2,2,2021,14,3,69,40,1,3,0,.78254861,.78254861,.05,.05,0,0,0,0,0,0,1,0,1,0,0,33.76,56.35,40.4,58.62,3.333333333333333,1,1,0,0,14,4,2,1,1287,122388.58,-61807.5,121185.27,67958.82,7914.2715,2448.1023,3301.3899 +6353,7758,13841,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.7903271,8.7882318,0,0,0,-1096.5735,0,2,2,2021,11,0,50,52,1,0,0,12.965659,12.965659,0,0,0,0,0,0,0,0,0,0,0,1.5529571,0,52.05,55.95,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,1201,590484.75,203304.59,280285.03,0,0,0,2375.4658 +6353,7759,13842,-9,13841,-9,1,1,29,0,0,0,1,1,-9,0,3,8.6192865,8.8884821,0,0,0,-834.64716,-9,2,-9,2021,12,0,44,0,1,0,1,15.926439,15.926439,.05,.05,0,0,0,0,0,0,0,0,0,3.6645842,0,41.23,59.35,-9,-9,5,1,1,0,0,3,9,5,1,346,42402.121,-36964.516,0,0,0,3825.5637,1943.6716 +6354,7760,13843,13844,-9,-9,1,0,47,0,3,0,3,3,-9,0,3,0,0,0,29,-2,-86.623222,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.82,33.06,45.69,48.04,10,2,3,0,0,0,2,2,1,615.66669,1059781.8,652886.69,260224.23,6572.5093,139.12448,0,1797.5659 +6354,7760,13844,13843,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,7.7126145,7.6633673,0,8,2,-206.13507,0,3,3,2021,10,2,31,36,1,2,0,8.1389551,8.1389551,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,48.04,59.82,33.06,5,2,3,0,0,6,2,2,1,615.66669,1059781.8,652886.69,260224.23,6572.5093,139.12448,0,1797.5659 +6354,7760,13845,-9,13843,13844,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.8621,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,1,615.66669,1059781.8,652886.69,260224.23,6572.5093,139.12448,0,1797.5659 +6355,7761,13846,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,7.8513231,7.785316,0,0,0,-1081.4656,-9,1,1,2021,12,1,88,0,1,1,0,4.0449233,4.0449233,.05,.05,0,0,0,0,0,0,1,1,0,2.1940362,0,37.19,58.61,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,954,286445.03,-2903.6538,0,0,0,0,644.67273 +6356,7762,13847,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4445896,8.496768,0,0,0,-1037.0115,0,2,2,2021,8,0,43,41,1,0,0,13.501047,13.501047,0,0,0,0,0,0,0,0,0,0,0,0,0,47.92,40.33,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,272,632453.31,587611.75,132149.13,35767.164,0,303.33911,2399.2119 +6357,7763,13848,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,1,0,7.7629299,8.0185642,0,0,-1023.2149,0,3,2,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9605055,43.34,22.96,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,1790,579927.5,215342.38,541172.38,0,0,0,1563.202 +6358,7764,13849,13850,-9,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,1,0,-59.583,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.09,49.2,55.2,49.4,10,1,1,1,0,0,5,4,1,370,-8113.582,-517.27344,0,0,0,0,2412.2397 +6358,7764,13850,13849,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.3587065,8.5088749,0,1,9,89.897194,0,-9,-9,2021,6,0,38,38,1,0,0,14.078315,14.078315,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.2,49.4,50.09,49.2,8.333333333333334,1,1,0,0,11,5,4,1,370,-8113.582,-517.27344,0,0,0,0,2412.2397 +6358,7765,13851,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,2,7.862823,7.9557295,0,0,0,-1062.835,-9,-9,-9,2021,12,1,37,0,1,1,0,9.0877838,9.0877838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.09,55.3,-9,-9,3.333333333333333,1,1,0,0,7,5,3,1,353,-192388.28,119698.44,0,0,5250.5088,0,945.58173 +6359,7766,13852,13853,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,6.6457262,7.9092126,8.0295916,49,-1,42.583961,0,2,2,2021,8,0,10,10,1,0,0,8.20963,8.20963,0,0,0,0,0,0,0,2,1,1,0,6.4389825,7.4770784,55.19,54.26,49.44,33,8.333333333333334,1,1,0,0,10,2,4,1,457,1720385.5,839937.88,462077.66,0,0,0,4017.8713 +6359,7766,13853,13852,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.2791624,7.973772,7,1,77.956924,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4822578,8.047307,49.44,33,55.19,54.26,5,1,1,0,0,6,2,4,1,457,1720385.5,839937.88,462077.66,0,0,0,4017.8713 +6360,7767,13854,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.2613783,7.261467,0,0,-971.28625,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4444761,37.26,46.83,-9,-9,3.333333333333333,3,4,0,1,0,8,3,0,525,366350.53,330281.22,0,0,0,0,1283.7563 +6361,7768,13855,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.5899849,5.6400399,0,0,-923.5697,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.0048400722,5.4644017,56.12,39.31,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,1136,138019.73,44057.641,96827.469,40385.984,0,0,712.86761 +6362,7769,13856,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1056.3002,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.9393325,3.2475319,21.004,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,0,791,14284.405,0,0,0,0,0,1690.8219 +6363,7770,13857,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.2038631,8.1209679,0,0,-1106.9821,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1921916,7.9935627,61.28,48.88,-9,-9,10,1,1,0,0,5,11,4,1,100,889752.63,835445.31,40527.93,27789.125,0,0,2566.6772 +6364,7771,13858,13859,-9,-9,1,0,49,0,2,0,3,3,-9,1,4,0,0,0,29,0,0,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,50,54,52,55,8,2,3,0,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7771,13859,13858,-9,-9,1,1,49,0,2,0,2,2,-9,1,4,0,0,0,29,0,0,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52,55,50,54,8,2,3,1,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7771,13860,-9,13858,13859,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.7461,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7771,13861,-9,13858,13859,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.41351,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1224.5,-18131.295,17267.834,0,0,0,0,3923.2847 +6364,7772,13862,-9,13858,13859,1,1,24,0,2,0,2,2,-9,0,4,0,0,0,0,0,-949.76849,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,340,0,0,0,0,0,0,0 +6364,7773,13863,-9,13858,13859,1,0,19,0,2,0,3,3,-9,1,4,0,0,0,0,0,-960.17218,-9,3,3,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.67120051,0,46,58,-9,-9,7,2,3,0,0,0,8,1,0,1474,173897.56,0,0,0,0,317.53467,-370.55493 +6365,7774,13864,13865,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,6.8926525,7.0674973,0,12,2,90.769463,0,2,2,2021,10,0,16,18,1,0,0,7.5500755,7.5500755,0,0,0,0,0,0,0,0,1,0,1,0,0,49.28,52.09,63.25,32,10,1,1,0,0,12,10,2,0,472.5,1270707.5,184752.05,347714.06,0,719.66687,0,1313.974 +6365,7774,13865,13864,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,6.8640985,6.3611665,0,12,-2,31.760416,0,2,2,2021,6,0,12,12,1,0,0,7.9706788,7.9706788,0,0,0,0,0,0,0,0,1,0,1,0,0,63.25,32,49.28,52.09,10,1,1,0,0,12,10,2,0,472.5,1270707.5,184752.05,347714.06,0,719.66687,0,1313.974 +6366,7775,13866,-9,13867,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.6176,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6366,7775,13867,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,6.6625433,6.4797301,0,0,0,-1063.8868,0,2,2,2021,10,0,20,20,1,0,0,4.4868107,4.4868107,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.99,52.21,-9,-9,6.666666666666667,1,1,0,1,15,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6366,7775,13868,-9,13867,-9,1,1,16,0,2,0,3,3,-9,0,2,0,0,0,0,0,-918.37018,-9,2,-9,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.84,49.29,-9,-9,6.666666666666667,1,1,0,0,15,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6366,7775,13869,-9,13867,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.5656,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,2,1,985.75,-1390.6005,2198.8303,0,0,0,0,1808.8639 +6367,7776,13870,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.6798115,7.4186363,0,0,0,-1094.8975,0,2,2,2021,11,1,60,40,1,1,0,2.7194099,2.7194099,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,55.77,31.2,-9,-9,1.666666666666667,1,1,0,0,10,1,3,1,2466,46615.258,26798.146,0,0,0,1853.2255,56.58313 +6368,7777,13871,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-835.74713,0,1,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,8,1,0,523,0,0,0,0,0,0,1641.2094 +6369,7778,13872,13873,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.0860858,7.5615087,51,0,-54.582092,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9315233,7.3883886,45.49,58.84,56.35,51,10,1,1,0,0,6,7,2,1,1170.5,898170.63,388152.19,464683,0,0,0,1864.9607 +6369,7778,13873,13872,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,51,0,18.653223,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.35,51,45.49,58.84,8.333333333333334,1,1,0,0,7,7,2,1,1170.5,898170.63,388152.19,464683,0,0,0,1864.9607 +6370,7779,13874,13875,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.1385689,8.8412514,0,10,2,13.936934,0,3,2,2021,8,0,40,40,1,0,0,18.953913,18.953913,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,70.39,40.52,48.77,60.16,10,1,1,0,0,11,12,5,1,826.33331,226810.84,130636.02,170197.97,77114.719,20210.32,719.97754,4616.9561 +6370,7779,13875,13874,-9,-9,1,0,45,0,0,0,2,2,1,0,5,8.0328283,7.8877511,0,10,-2,-179.99675,-9,2,3,2021,8,0,36,0,1,0,0,8.4091797,8.4091797,0,0,0,0,0,0,0,0,0,0,0,2.0165436,0,48.77,60.16,70.39,40.52,6.666666666666667,1,1,0,0,7,12,5,1,826.33331,226810.84,130636.02,170197.97,77114.719,20210.32,719.97754,4616.9561 +6370,7779,13876,-9,13875,13874,1,1,17,0,0,1,2,0,0,0,5,0,5.4511361,5.230341,0,0,-1099.0806,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6739879,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,0,12,5,1,826.33331,226810.84,130636.02,170197.97,77114.719,20210.32,719.97754,4616.9561 +6370,7780,13877,-9,13875,13874,1,0,22,0,0,0,1,1,1,0,5,8.0667782,8.2495337,0,0,0,-932.28424,-9,2,2,2021,3,0,50,0,1,0,1,8.6381273,8.6381273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,12,4,1,1280,6416.209,-42520.309,0,0,5520.1699,0,1087.8153 +6371,7781,13878,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,0,0,-989.43219,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9077306,0,47.72,55.04,-9,-9,6.666666666666667,4,2,1,0,5,8,1,1,239,632080.81,0,724474.56,0,0,0,957.99335 +6371,7782,13879,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3904629,8.4475365,0,0,0,-1091.7177,0,3,3,2021,11,0,45,35,1,0,0,13.77329,13.77329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,3.333333333333333,3,4,0,0,12,8,5,1,242,295966.78,139373.98,290781.56,138821.69,0,0,1266.1411 +6372,7783,13880,13881,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,0,0,0,4,10,27.435057,0,3,3,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,45.63,21.21,8.333333333333334,2,3,0,0,0,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6372,7783,13881,13880,-9,-9,1,0,37,0,2,0,2,2,-9,0,1,7.5528636,7.5591836,0,4,-10,73.284241,0,-9,-9,2021,11,0,30,35,1,0,0,6.8439841,6.8439841,0,0,0,0,0,0,0,0,1,1,0,0,0,45.63,21.21,41,56.99,6.666666666666667,2,3,0,0,8,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6372,7783,13882,-9,13881,13880,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-944.43268,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6372,7783,13883,-9,13881,13880,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3447,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,1,841,234822.86,98076.461,205929.56,0,0,0,1182.7151 +6373,7784,13884,13885,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.7631865,8.5297575,0,29,0,4.3284159,0,2,2,2021,21,9,37,38,1,9,0,17.958288,17.958288,0,0,0,0,0,0,0,0,0,0,0,4.2918835,0,33.37,60.58,47.49,45.69,3.333333333333333,1,1,0,0,8,2,5,1,819,2020314.3,1610973.8,350097.75,114918.91,0,0,2928.3975 +6373,7784,13885,13884,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.0745049,7.9679036,0,30,0,-66.756126,0,2,1,2021,12,0,40,40,1,0,0,7.1224022,7.1224022,.05,.05,0,0,0,0,0,2,0,0,0,2.6825159,0,47.49,45.69,33.37,60.58,8.333333333333334,1,1,0,0,11,2,5,1,819,2020314.3,1610973.8,350097.75,114918.91,0,0,2928.3975 +6374,7785,13886,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.3422165,8.1793642,0,0,-986.11804,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7351904,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,1681,550894.19,207442.52,125546.38,0,0,0,3359.3301 +6375,7786,13887,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,8.1458645,8.5998955,7.6630301,0,0,-1106.0145,0,3,3,2021,11,0,40,29,1,0,0,6.831409,6.831409,0,0,0,0,0,0,0,0,1,1,0,0,7.4624591,54.1,59.11,-9,-9,8.333333333333334,3,4,0,0,8,8,4,1,919,845850.44,60537.016,788415.44,0,0,0,1793.1444 +6376,7787,13888,13889,-9,-9,1,1,41,0,1,0,2,2,-9,0,2,8.0639887,7.9898901,0,7,-1,41.350086,0,2,1,2021,12,0,45,45,1,0,0,7.2596173,7.2596173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.17,51.34,40.87,44.58,5,1,1,0,0,8,1,3,0,503,203062.86,125967.12,169614.8,85973.922,0,0,2421.4656 +6376,7787,13889,13888,-9,-9,1,0,42,0,1,0,3,3,-9,1,3,0,0,0,7,1,37.618786,0,3,3,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,36.17,51.34,6.666666666666667,1,1,1,0,0,1,3,0,503,203062.86,125967.12,169614.8,85973.922,0,0,2421.4656 +6376,7787,13890,-9,13889,13888,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-992.7832,-9,3,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,0,1,3,0,503,203062.86,125967.12,169614.8,85973.922,0,0,2421.4656 +6377,7788,13891,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.1552792,7.9487343,0,0,0,-1015.5258,0,3,-9,2021,6,0,43,45,1,0,0,8.2994299,8.2994299,0,0,0,0,0,0,0,0,1,1,0,.23095925,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,674.5,-77553.125,-7345.3457,0,0,0,0,1549.2092 +6377,7788,13892,-9,13891,-9,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-992.86578,-9,2,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5351903,0,55.53,51.55,-9,-9,10,1,1,1,0,0,5,4,0,674.5,-77553.125,-7345.3457,0,0,0,0,1549.2092 +6378,7789,13893,-9,13895,13896,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1018.1559,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6378,7789,13894,-9,13895,13896,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.80847,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6378,7789,13895,13896,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7121353,7.595758,0,15,1,-149.20082,0,3,3,2021,8,0,37,38,1,0,0,7.2147565,7.2147565,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,7,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6378,7789,13896,13895,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6850929,8.7596855,0,15,-1,-3.0760849,0,2,2,2021,8,0,41,7,1,0,0,15.383738,15.383738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,7,7,4,1,540,550486.19,262724.16,297085.84,46478.09,0,0,3615.209 +6379,7790,13897,13899,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,7.9862981,8.3017912,0,19,8,19.022709,0,2,2,2021,7,0,37,47,1,0,0,10.960138,10.960138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,31.77,61.1,8.333333333333334,1,1,0,0,9,9,5,1,813.66669,780600.38,573895.31,314186.34,132470.19,4412.3228,0,3990.5627 +6379,7790,13898,-9,13899,13897,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.1746,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,813.66669,780600.38,573895.31,314186.34,132470.19,4412.3228,0,3990.5627 +6379,7790,13899,13897,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,9.2969742,9.2941036,0,19,-8,103.24502,0,3,3,2021,17,7,42,52,1,7,0,28.899544,28.899544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.77,61.1,58.15,52.91,6.666666666666667,1,1,0,0,8,9,5,1,813.66669,780600.38,573895.31,314186.34,132470.19,4412.3228,0,3990.5627 +6380,7791,13900,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.4130878,8.4105501,0,13,-7,-37.88269,0,2,2,2021,18,6,50,45,1,6,0,8.1549664,8.1549664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.46,58.13,57.16,56.15,5,1,1,0,0,9,9,5,1,211,188429.16,11967.156,121119.35,97054.07,0,0,2042.3431 +6380,7792,13901,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,8.4130754,8.4690475,0,13,7,-30.606752,0,2,2,2021,9,0,50,45,1,0,0,7.4150424,7.4150424,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,35.46,58.13,8.333333333333334,1,1,0,0,9,9,5,1,528,1323228.5,777408.06,696714.81,10564.533,742.05627,0,1404.0236 +6381,7793,13902,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1096.4054,0,3,2,2021,18,7,0,30,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,44.94,-9,-9,6.666666666666667,1,1,0,0,5,10,1,1,173,64626.383,-18656.996,0,0,0,0,0 +6382,7794,13903,13904,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,7.9975467,7.9678521,5.7054057,11,1,-57.010479,0,2,1,2021,8,0,37,38,1,0,0,12.313103,12.313103,.05,.05,0,0,0,0,0,7,1,1,0,6.0671077,0,52.43,55.57,51.83,57.2,8.333333333333334,1,1,0,0,10,6,5,1,1639,214136.81,7317.8638,212419.09,20173.859,0,7872.9736,4548.1494 +6382,7794,13904,13903,-9,-9,1,0,38,0,1,0,1,1,-9,1,4,8.8875141,8.8546505,0,13,-1,-37.039864,0,2,2,2021,9,0,53,53,1,0,0,16.994743,16.994743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.43,55.57,8.333333333333334,1,1,0,0,8,6,5,1,1639,214136.81,7317.8638,212419.09,20173.859,0,7872.9736,4548.1494 +6382,7794,13905,-9,13904,13903,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.1611,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,1639,214136.81,7317.8638,212419.09,20173.859,0,7872.9736,4548.1494 +6383,7795,13906,13907,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,47,2,-7.3258934,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.3102779,0,0,1,1,0,.52647281,0,43.03,53.23,54.37,54.8,6.666666666666667,1,1,0,0,0,9,2,1,1028.5,45707.094,238602.91,0,0,0,0,1292.9404 +6383,7795,13907,13906,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5814719,6.7395668,47,-2,9.1595297,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6673012,54.37,54.8,43.03,53.23,8.333333333333334,1,1,0,0,0,9,2,1,1028.5,45707.094,238602.91,0,0,0,0,1292.9404 +6384,7796,13908,13909,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,58,-4,76.73127,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,126.55177,0,0,1,1,0,0,0,52,45,57.06,57.76,8,1,1,0,0,0,12,3,1,1729,1022207,262347.88,404060.75,0,0,0,2703.1914 +6384,7796,13909,13908,-9,-9,1,1,82,0,0,0,1,1,-9,0,5,0,7.4711123,7.6547947,58,4,-52.621765,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.7654576,7.3899908,57.06,57.76,52,45,8.333333333333334,1,1,0,0,0,12,3,1,1729,1022207,262347.88,404060.75,0,0,0,2703.1914 +6385,7797,13910,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,8.0666533,8.2290344,0,0,0,-968.71405,0,3,3,2021,12,3,77,54,1,3,0,4.2311368,4.2311368,0,0,0,0,0,0,0,0,1,1,0,0,0,45.74,46.84,-9,-9,6.666666666666667,3,4,0,0,13,2,4,1,1068,371080.72,122010.16,215288.97,0,0,0,2056.6265 +6386,7798,13911,13912,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,9.5532579,9.8411551,0,9,2,17.002605,0,-9,-9,2021,10,0,56,55,1,1,0,33.686905,33.686905,.05,.05,0,0,0,0,0,0,1,1,0,5.591341,0,50,57,49.36,58.53,7,1,1,0,0,1,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6386,7798,13912,13911,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,8.6584473,8.8268147,0,9,-2,130.31377,0,2,2,2021,10,0,55,50,1,0,0,15.431481,15.431481,.05,.05,0,0,0,0,0,0,1,1,0,1.728435,0,49.36,58.53,50,57,6.666666666666667,1,1,0,0,10,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6386,7798,13913,-9,13912,13911,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.092,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6386,7798,13914,-9,13912,13911,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.25635,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,593.5,124688.43,107710.33,187445.14,111494.1,50451.453,0,18144.219 +6387,7799,13915,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1039.0402,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,1.5213637,0,21.20014,0,1,1,0,0,0,50,46,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,3612,-55985.676,0,0,0,0,0,1676.4703 +6388,7800,13916,13917,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.2575588,8.1503754,0,21,-1,-37.635677,0,2,2,2021,15,5,38,38,1,5,0,13.765578,13.765578,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.05,50.32,49.38,58.29,5,1,1,0,0,10,11,4,1,821.5,812764.88,644424.06,124538.47,61022.797,8469.9326,0,2812.606 +6388,7800,13917,13916,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.3820701,8.0432386,8.3107395,21,1,-72.315918,0,2,2,2021,12,1,28,26,1,1,0,6.7541447,6.7541447,.05,.05,0,0,0,0,0,7,0,0,0,2.8426206,7.6651988,49.38,58.29,49.05,50.32,5,1,1,0,0,9,11,4,1,821.5,812764.88,644424.06,124538.47,61022.797,8469.9326,0,2812.606 +6388,7801,13918,-9,13917,13916,1,1,24,0,0,0,2,2,-9,0,4,7.6621375,7.8389678,0,0,0,-947.04248,0,2,2,2021,12,0,50,45,1,0,1,5.3424191,5.3424191,0,0,0,0,0,0,0,0,0,0,0,4.2890978,0,41.78,61.86,-9,-9,3.333333333333333,1,1,0,0,5,11,4,1,1577,36879.484,0,0,0,0,0,640.72491 +6388,7802,13919,-9,13917,13916,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-912.71631,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.31,43.19,-9,-9,3.333333333333333,1,1,0,0,1,11,1,1,503,-75824.477,0,0,0,0,0,713.1994 +6389,7803,13920,13921,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.6332121,6.3534737,11,-13,-28.048731,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36345866,6.7131143,57.17,25.09,55.61,26.33,10,1,1,0,0,0,13,3,1,122.5,647010.19,163147.27,341021.06,0,0,0,2402.2485 +6389,7803,13921,13920,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,7.085813,7.1865602,11,13,-76.826462,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.314115,55.61,26.33,57.17,25.09,10,1,1,0,0,0,13,3,1,122.5,647010.19,163147.27,341021.06,0,0,0,2402.2485 +6390,7804,13922,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2678165,8.1806583,0,0,0,-974.06506,-9,2,2,2021,5,0,45,0,1,0,0,9.8424959,9.8424959,.05,.05,0,0,0,0,0,0,0,0,0,3.7113569,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,456,-127123.53,9925.999,0,0,0,0,1558.5128 +6391,7805,13923,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.4412541,8.0453243,6.958931,0,0,-940.05414,0,3,3,2021,11,0,20,20,1,0,0,11.410152,11.410152,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9412551,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,9,4,3,0,216,223863.23,14774.18,0,0,2458.7454,1205.335,569.58661 +6392,7806,13924,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,7.6110902,7.5834394,0,0,-989.94885,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.764564,51.88,42.11,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,246,395597.44,53552.813,420675.25,0,0,0,1637.7799 +6393,7807,13925,-9,13928,13926,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2393,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6393,7807,13926,13928,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,5.5371571,5.6471376,0,9,2,29.05484,0,2,2,2021,12,0,20,45,1,0,0,1.896337,1.896337,.05,.05,.05,0,0,0,0,0,1,1,0,.75835085,0,54.2,57.49,54.37,54.8,6.666666666666667,1,1,0,0,9,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6393,7807,13927,-9,13928,13926,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1028.074,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6393,7807,13928,13926,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.7155342,8.8846664,0,9,-2,32.340061,0,1,1,2021,10,1,47,50,1,1,0,16.891405,16.891405,0,0,0,0,0,0,0,0,1,1,0,2.2523804,0,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,9,1,4,1,733.25,250768.73,74760.578,155279.27,67782.453,0,0,2396.4839 +6394,7808,13929,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.7726698,8.2392254,0,0,-1107.2499,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.71663761,8.1474791,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,449,561263.38,294947.41,135375.06,0,0,0,1871.7651 +6395,7809,13930,13931,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.49404,7.4301944,0,29,1,-40.777515,0,2,2,2021,7,0,25,25,1,0,0,5.2651291,5.2651291,.05,.05,0,0,0,0,0,2,1,1,0,.89283937,0,50.34,56.4,27.34,64.59,8.333333333333334,1,1,0,0,10,10,5,1,771,970392.63,869452,0,0,6210.9521,0,3488.4343 +6395,7809,13931,13930,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9823961,8.7031326,0,29,-1,1.4618107,0,2,2,2021,21,9,48,50,1,9,0,21.609783,21.609783,.05,.05,0,0,0,0,0,2,1,1,0,6.7528172,0,27.34,64.59,50.34,56.4,6.666666666666667,1,1,0,0,10,10,5,1,771,970392.63,869452,0,0,6210.9521,0,3488.4343 +6395,7810,13932,-9,13930,13931,1,0,20,0,0,0,2,2,1,0,2,7.5642147,7.5242186,0,0,0,-1045.5903,-9,1,2,2021,13,2,41,0,1,2,1,4.8163457,4.8163457,0,0,0,0,0,0,0,0,1,1,0,0,0,35.4,46.29,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,439,-73702.664,0,0,0,30664.104,0,1439.8116 +6395,7811,13933,-9,13930,13931,1,1,18,0,0,0,2,2,-9,0,3,7.1893883,7.2283635,0,0,0,-944.37408,0,1,2,2021,8,0,18,0,1,0,1,5.2728906,5.2728906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,2,10,2,1,120,-146298.59,-192235.75,0,0,0,0,1151.1196 +6396,7812,13934,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.2642221,8.5453863,0,0,0,-1053.4191,0,2,3,2021,6,0,45,40,1,0,0,11.947487,11.947487,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,8,4,1,2857,22328.029,-67293.563,0,0,0,0,1801.1542 +6397,7813,13935,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.6563,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,9.57092,7.4521089,86.450844,0,1,1,0,0,0,56.19,38.86,-9,-9,10,1,1,0,0,0,1,1,0,243,282262.06,0,0,0,0,0,898.96075 +6398,7814,13936,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2217879,7.1138396,0,0,-951.72186,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7121501,7.2592144,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,1004,1265972.4,348713.25,326530.53,0,7036.4063,0,2214.8977 +6399,7815,13937,13938,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,7.9691777,7.9025865,0,12,4,-80.832222,0,-9,-9,2021,11,0,35,0,1,2,0,9.9346781,9.9346781,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,50,57,7,2,3,0,0,1,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13938,13937,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,7.9912825,8.0050545,0,2,-4,97.558533,0,-9,-9,2021,10,0,24,25,1,1,0,16.158661,16.158661,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,49,55,7,2,3,0,0,1,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13939,-9,13937,13938,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.9681,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13940,-9,13937,13938,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.2147,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,2,3,-9,0,0,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6399,7815,13941,-9,13937,13938,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.1339,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,2,3,-9,0,0,6,3,1,974,368703.56,413383.56,147862.47,88078.789,0,1672.806,3544.7314 +6400,7816,13942,-9,13943,13944,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.5112,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1002,-20200.928,46446.813,157320.89,142863.77,0,1418.6331,2784.0591 +6400,7816,13943,13944,-9,-9,1,0,22,1,1,0,2,2,-9,0,5,7.8596892,7.8353124,0,1,-3,-47.751419,0,1,2,2021,20,7,42,12,1,7,0,5.8925939,5.8925939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.42,67.22,49,58,8.333333333333334,1,1,0,0,5,2,4,1,1002,-20200.928,46446.813,157320.89,142863.77,0,1418.6331,2784.0591 +6400,7816,13944,13943,-9,-9,1,1,25,1,1,0,1,1,-9,0,4,8.3313999,8.4637814,0,1,3,-16.94368,-9,-9,-9,2021,10,0,40,0,1,1,0,11.122169,11.122169,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,30.42,67.22,7,4,1,0,0,1,2,4,1,1002,-20200.928,46446.813,157320.89,142863.77,0,1418.6331,2784.0591 +6401,7817,13945,13946,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.5080671,7.556705,0,10,1,-111.09749,0,2,2,2021,31,10,14,16,1,10,0,13.362981,13.362981,.05,.05,0,0,0,0,0,2,0,0,0,.65240878,0,22.35,66.68000000000001,36.69,57.54,8.333333333333334,1,1,0,0,14,7,4,1,479,595968.44,271300.56,226581.97,0,0,0,2818.4587 +6401,7817,13946,13945,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.6661081,8.5670624,0,10,-1,-49.4729,0,-9,-9,2021,30,10,40,40,1,10,0,15.517751,15.517751,.05,.05,0,0,0,0,0,0,0,0,0,1.2747282,0,36.69,57.54,22.35,66.68000000000001,3.333333333333333,1,1,0,0,14,7,4,1,479,595968.44,271300.56,226581.97,0,0,0,2818.4587 +6402,7818,13947,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.3205814,8.5556803,0,0,0,-1020.327,0,3,3,2021,10,1,40,39,1,1,0,18.141449,18.141449,0,0,0,0,0,0,0,0,1,1,0,0,0,40.73,61.29,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,457.5,170430.63,43998.145,217856.75,25824.395,0,0,2472.5393 +6402,7818,13948,-9,13947,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.8601,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,457.5,170430.63,43998.145,217856.75,25824.395,0,0,2472.5393 +6403,7819,13949,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1012.7369,-9,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,3,4,1,0,0,8,1,0,1572,0,0,0,0,0,0,1220.0118 +6404,7820,13950,13951,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.9604888,7.7786341,45,6,-83.201332,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8139434,7.6411872,56.57,57.78,60.12,54.8,1.666666666666667,1,1,0,0,6,4,4,1,1183.5,1462551.9,1334587.8,252070.91,0,0,3162.7878,3578.7676 +6404,7820,13951,13950,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.3438783,7.5506272,45,-6,-39.66069,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2576418,7.6425724,60.12,54.8,56.57,57.78,10,1,1,0,0,12,4,4,1,1183.5,1462551.9,1334587.8,252070.91,0,0,3162.7878,3578.7676 +6405,7821,13952,13955,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,30,-1,0,0,3,-9,2021,20,8,0,35,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.8,56.68,48.94,49.1,8.333333333333334,1,1,0,0,6,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7821,13953,-9,13952,13955,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1028.5787,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7821,13954,-9,13952,13955,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1065.9064,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7821,13955,13952,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,0,0,0,29,1,0,0,-9,-9,2021,10,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.94,49.1,49.8,56.68,5,1,1,0,0,10,2,1,1,894,-14306.313,0,0,0,831.91211,0,3186.1777 +6405,7822,13956,-9,13952,13955,1,0,20,0,2,0,2,2,0,0,3,0,0,0,0,0,-1019.743,-9,2,2,2021,18,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.32,61.81,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,812,103802.1,-70121.766,0,0,0,0,0 +6406,7823,13957,13958,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,32,-8,-102.06474,-9,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.26,44.13,55.87,30.05,8.333333333333334,1,1,0,0,4,5,2,1,794.5,643451.81,355925.94,144699.94,0,0,0,1364.5471 +6406,7823,13958,13957,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,7.0030532,6.8358769,32,8,34.648918,-9,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7333188,55.87,30.05,37.26,44.13,5,1,1,0,0,12,5,2,1,794.5,643451.81,355925.94,144699.94,0,0,0,1364.5471 +6407,7824,13959,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.169353,7.0594172,0,0,-1000.0225,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.423411,7.4328308,57.13,33.56,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1237,502177.03,193358.67,199349.48,0,0,0,13.172605 +6408,7825,13960,13961,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.4211221,7.0028772,12,-1,33.020714,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2589698,7.4102249,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,1078,1200928.6,670922.56,401471.63,0,2208.3708,0,3944.915 +6408,7825,13961,13960,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,8.2178583,8.0860653,12,1,-.009730719,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.089922,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,3,7,4,1,1078,1200928.6,670922.56,401471.63,0,2208.3708,0,3944.915 +6409,7826,13962,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,7.9589114,8.0225573,0,0,0,-990.94543,0,2,2,2021,29,10,38,37,1,10,0,8.3093634,8.3093634,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38,27,-9,-9,1.666666666666667,1,1,0,1,12,11,4,0,266,214298.19,26653.33,0,0,0,0,853.58142 +6410,7827,13963,-9,-9,-9,1,1,19,0,0,1,2,0,0,0,5,0,6.820272,7.0371752,0,0,-1029.4581,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3683963,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,4,4,2,0,921,-80780.125,0,0,0,0,0,945.52197 +6411,7828,13964,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1028.5632,-9,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2965332,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,3,7,2,0,667,140160.67,0,0,0,0,0,530.72607 +6412,7829,13965,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1009.2234,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.52,21.13,-9,-9,5,1,1,0,0,0,11,1,0,1238,-28527.568,0,0,0,0,0,2253.3755 +6413,7830,13966,13967,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,7.6021514,7.460228,0,21,-10,-20.543682,0,3,3,2021,2,1,126,90,1,1,0,1.8338917,1.8338917,.05,.05,0,0,0,0,0,0,0,0,0,6.3484578,0,45.81,61.51,19.55,42.8,6.666666666666667,1,1,0,0,12,7,4,1,395.5,635604.69,268574.31,448013.44,164298.06,0,0,3265.458 +6413,7830,13967,13966,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.4704113,8.2712669,0,21,10,-44.536266,0,2,3,2021,21,9,70,60,1,9,0,5.5705552,5.5705552,.05,.05,0,0,0,0,0,27,0,0,0,6.717607,0,19.55,42.8,45.81,61.51,3.333333333333333,1,1,0,0,9,7,4,1,395.5,635604.69,268574.31,448013.44,164298.06,0,0,3265.458 +6413,7831,13968,-9,13967,13966,1,0,25,0,0,0,2,2,-9,0,3,8.0434732,8.2960844,0,0,0,-1078.5853,0,1,3,2021,11,1,37,37,1,1,1,13.662516,13.662516,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.95,46.67,-9,-9,6.666666666666667,1,1,0,0,8,7,4,1,1894,67760.68,148855.94,0,0,819.7243,0,1742.5508 +6414,7832,13969,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.858335,8.2274847,5.6458631,0,0,-1024.6223,0,-9,-9,2021,10,0,35,35,1,0,0,9.6886864,9.6886864,0,0,.05,0,0,0,0,0,0,0,0,6.0844269,6.0431013,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,8,6,4,1,148,75077.102,104535.16,157505.06,68173.398,4322.5645,0,1586.7181 +6415,7833,13970,13971,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,52,-1,38.320992,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,33.62,54.53,26.45,8.333333333333334,1,1,0,0,0,5,2,1,1055.5,48672.031,89185.008,0,0,0,718.81635,1718.6511 +6415,7833,13971,13970,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.3793311,6.3607392,52,1,88.503014,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6982288,6.4136424,54.53,26.45,51.66,33.62,6.666666666666667,1,1,0,0,0,5,2,1,1055.5,48672.031,89185.008,0,0,0,718.81635,1718.6511 +6416,7834,13972,13973,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,24,-4,56.473068,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,55,53,55,8,2,3,0,0,1,8,2,0,651.5,170863.69,83131.453,302172.53,56780.707,0,0,996.89587 +6416,7834,13973,13972,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,6.7794824,6.8508286,0,25,4,12.83444,0,-9,-9,2021,9,0,16,16,1,1,0,6.8792491,6.8792491,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53,55,50,55,8,2,3,0,0,10,8,2,0,651.5,170863.69,83131.453,302172.53,56780.707,0,0,996.89587 +6416,7835,13974,-9,13972,13973,1,1,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-904.63861,-9,2,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,707,72119.898,0,0,0,0,0,552.44269 +6417,7836,13975,13976,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,0,0,12,-8,49.968056,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.76,54.51,61.23,31.03,10,1,1,0,0,0,12,3,1,257,539958,65646.711,221050.34,0,0,0,2169.1865 +6417,7836,13976,13975,-9,-9,1,1,94,0,0,0,2,2,-9,0,3,0,7.2923193,7.2974982,12,8,18.886293,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2738361,7.6988711,61.23,31.03,57.76,54.51,10,1,1,0,0,0,12,3,1,257,539958,65646.711,221050.34,0,0,0,2169.1865 +6418,7837,13977,-9,13979,13980,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-974.66095,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6418,7837,13978,-9,13979,13980,1,1,17,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1048.6671,0,1,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2672672,0,66.09999999999999,39.96,-9,-9,1.666666666666667,1,1,0,0,3,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6418,7837,13979,13980,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.6337795,8.5100965,0,23,2,-16.648207,0,-9,2,2021,7,0,30,30,1,0,0,18.867405,18.867405,0,0,0,0,0,0,0,0,1,1,0,2.7685802,0,51.02,52.22,33.34,41.59,8.333333333333334,1,1,0,0,9,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6418,7837,13980,13979,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,8.6327915,8.5865822,0,23,-2,68.439674,0,-9,2,2021,26,10,45,45,1,10,0,13.853916,13.853916,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.34,41.59,51.02,52.22,1.666666666666667,1,1,0,0,12,7,5,1,488.5,1214909.8,1058851.5,196874.19,38960.09,0,23760.936,3881.0181 +6419,7838,13981,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4414988,8.009119,0,0,0,-1070.2994,0,3,2,2021,10,0,37,0,1,0,0,8.4074278,8.4074278,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.24,44.82,-9,-9,5,1,1,0,1,5,2,4,1,434,452728.16,460074.72,118636.96,42373.234,0,0,927.58887 +6420,7839,13982,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1080.1967,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.26,44.68,-9,-9,6.666666666666667,1,1,0,0,7,6,1,1,4195,67164.609,0,38825.602,0,0,0,389.85666 +6421,7840,13983,13984,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,9.5395737,9.6637001,0,6,-4,-76.729271,0,3,3,2021,8,0,55,50,1,0,0,32.407478,32.407478,.05,.05,0,0,0,0,0,0,1,1,0,8.2210169,0,55,52,46,36,8,1,1,0,0,1,7,5,1,1742.5,548156.19,360122.59,263388.44,81947.5,9734.2871,3252.9231,10163.488 +6421,7840,13984,13983,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,6.9857907,6.6649156,39,4,125.52724,0,3,3,2021,22,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,4.4292779,7.0650249,46,36,55,52,5,1,1,0,0,2,7,5,1,1742.5,548156.19,360122.59,263388.44,81947.5,9734.2871,3252.9231,10163.488 +6422,7841,13985,13986,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5624485,7.2637424,0,16,-3,-54.07925,0,3,3,2021,10,1,32,32,1,1,0,6.0507441,6.0507441,0,0,0,0,0,0,0,0,0,0,0,0,0,59.47,35.89,60.55,42.48,6.666666666666667,1,1,0,0,12,2,4,1,690,127206.9,-52917.711,133662.27,99912.531,0,0,2127.8164 +6422,7841,13986,13985,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,7.6467824,8.1018839,0,16,3,12.242262,0,3,3,2021,7,0,40,44,1,0,0,10.008325,10.008325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.55,42.48,59.47,35.89,10,1,1,0,0,12,2,4,1,690,127206.9,-52917.711,133662.27,99912.531,0,0,2127.8164 +6423,7842,13987,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1557951,8.4111862,0,0,0,-1086.1963,0,-9,-9,2021,8,0,10,15,1,0,0,35.267147,35.267147,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.13,49.27,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,2693,345005.28,97732.438,157736.47,91382.336,4717.2207,0,1474.5265 +6424,7843,13988,13989,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,28,-5,0,0,3,3,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.04,27.42,44.25,23.22,5,1,1,0,0,0,10,1,0,288,332633.25,111082.71,0,0,12314.814,2133.7388,2313.9143 +6424,7843,13989,13988,-9,-9,1,1,57,0,1,0,3,3,-9,1,1,0,0,0,28,5,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.25,23.22,47.04,27.42,1.666666666666667,1,1,0,0,0,10,1,0,288,332633.25,111082.71,0,0,12314.814,2133.7388,2313.9143 +6425,7844,13990,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.6004429,7.6550322,0,0,-1008.7305,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,6.0189834,7.2765288,42.147179,0,1,1,0,.42409858,7.7400789,50.27,29.56,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,791,659044.5,149227.38,256647.77,0,0,0,2301.6951 +6426,7845,13991,13993,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.7268324,9.1411867,0,7,-1,-34.292896,0,-9,-9,2021,6,0,32,30,1,0,0,19.942572,19.942572,0,0,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,54.79,55.86,8.333333333333334,1,1,0,0,8,11,5,1,381.66666,565891.5,526387.5,326723.38,154659.8,2170.1655,21200.834,3123.2466 +6426,7845,13992,-9,13991,13993,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.91229,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,381.66666,565891.5,526387.5,326723.38,154659.8,2170.1655,21200.834,3123.2466 +6426,7845,13993,13991,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,7.2706652,7.5359206,0,7,1,-106.14933,0,2,2,2021,7,0,32,0,1,0,0,6.6883473,6.6883473,.05,.05,0,0,0,0,0,0,1,1,0,6.54491,0,54.79,55.86,43.2,59.97,8.333333333333334,1,1,0,0,9,11,5,1,381.66666,565891.5,526387.5,326723.38,154659.8,2170.1655,21200.834,3123.2466 +6427,7846,13994,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,7.7466292,7.8635345,0,0,0,-992.81378,0,-9,-9,2021,5,0,35,25,1,0,0,8.2759562,8.2759562,0,0,.05,0,0,0,0,7,1,0,1,0,0,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,5,6,3,0,99,113275.61,-37942.078,0,0,13420.402,0,1231.1302 +6428,7847,13995,13996,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.1110735,8.4347754,0,6,0,33.880348,0,3,3,2021,19,8,29,29,1,8,0,15.219991,15.219991,0,0,0,0,0,0,0,0,0,0,0,4.2880192,0,40.83,59.68,47.79,53.79,8.333333333333334,1,1,0,0,7,9,4,1,730,1536863.9,1240922,330354.28,0,0,0,3050.3408 +6428,7847,13996,13995,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,8.0023088,7.6652207,6,9,21.718596,0,3,3,2021,11,0,0,37,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.6961937,47.79,53.79,40.83,59.68,8.333333333333334,1,1,0,0,6,9,4,1,730,1536863.9,1240922,330354.28,0,0,0,3050.3408 +6428,7848,13997,-9,13995,13996,1,1,23,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1020.2593,1,1,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7404299,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,4,9,1,1,189,87991.641,0,0,0,0,0,-190.63184 +6428,7849,13998,-9,13995,13996,1,1,21,0,0,0,2,2,-9,0,2,7.8103728,7.716887,0,0,0,-1034.6362,0,1,2,2021,22,8,32,0,1,8,1,9.024642,9.024642,0,0,0,0,0,0,0,0,0,0,0,0,0,25.13,46.93,-9,-9,5,1,1,0,0,5,9,3,1,1483,-228183.78,0,0,0,0,0,762.12109 +6429,7850,13999,14000,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.2627869,8.1729317,0,18,3,5.473526,0,-9,3,2021,12,0,38,38,1,0,0,11.355604,11.355604,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,45.31,56.19,46.16,5,1,1,0,0,13,12,5,0,181.5,3528522.8,2855037.8,443149.66,0,0,0,2277.9199 +6429,7850,14000,13999,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.1488762,8.2032814,0,18,-3,-16.331703,0,1,3,2021,8,0,38,38,1,0,0,12.331441,12.331441,0,0,0,0,0,0,0,0,0,0,0,0,0,56.19,46.16,49.06,45.31,5,1,1,0,0,13,12,5,0,181.5,3528522.8,2855037.8,443149.66,0,0,0,2277.9199 +6430,7851,14001,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,4,7.1770592,7.3341227,0,0,0,-1013.627,0,-9,-9,2021,9,0,40,40,1,1,0,4.133203,4.133203,0,0,.05,0,0,0,0,0,0,0,0,0,0,52,55,-9,-9,7,1,1,0,0,6,10,3,1,570,191329.83,147717.14,0,0,0,0,1696.0068 +6431,7852,14002,14003,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.2101355,8.8777342,0,9,2,-50.921173,0,2,2,2021,12,0,42,44,1,0,0,13.966183,13.966183,0,0,0,0,0,0,0,0,1,1,0,0,0,40.58,60.95,52.23,55.6,8.333333333333334,1,1,0,1,11,7,3,1,263.66666,-56711.484,0,0,0,0,0,1919.776 +6431,7852,14003,14002,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,0,0,0,9,-2,-40.253403,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52.23,55.6,40.58,60.95,8.333333333333334,1,1,0,1,4,7,3,1,263.66666,-56711.484,0,0,0,0,0,1919.776 +6431,7852,14004,-9,14003,14002,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.65686,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,263.66666,-56711.484,0,0,0,0,0,1919.776 +6432,7853,14005,14006,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,7.2579069,7.6965699,7.0688481,4,0,-66.726707,0,3,2,2021,10,0,16,4,1,0,0,9.3768225,9.3768225,.05,.05,0,0,0,0,0,0,0,0,0,0,6.982976,54.21,49.46,57.16,56.15,6.666666666666667,1,1,0,0,10,4,4,1,113.5,346280.41,508474.53,359670.63,283047.16,0,0,2882.9968 +6432,7853,14006,14005,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.6479592,8.4171152,6.4923515,4,0,91.043068,0,-9,-9,2021,9,0,32,30,1,0,0,9.1623392,9.1623392,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9009109,57.16,56.15,54.21,49.46,10,1,1,0,0,10,4,4,1,113.5,346280.41,508474.53,359670.63,283047.16,0,0,2882.9968 +6433,7854,14007,-9,14010,14009,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.4327,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14008,-9,14010,14009,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.209,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14009,14010,-9,-9,1,1,49,0,3,0,3,3,-9,0,3,6.7797699,6.9557705,0,7,11,-75.749313,0,2,1,2021,11,1,32,32,1,1,0,4.6843238,4.6843238,0,0,.05,0,0,0,0,0,1,0,1,0,0,41.64,54.12,42.17,38.71,3.333333333333333,3,4,0,1,13,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14010,14009,-9,-9,1,0,38,0,3,0,1,1,-9,0,3,0,0,0,5,-11,21.283627,0,-9,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.17,38.71,41.64,54.12,3.333333333333333,4,5,0,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6433,7854,14011,-9,14010,14009,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.64471,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,2,0,1205.4,333393.75,156452.86,262895.94,80631.086,8174.9434,1351.0015,2183.8096 +6434,7855,14012,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.4700584,7.6696205,5.5296102,0,0,-947.05792,0,2,2,2021,15,4,30,24,1,4,0,5.8807492,5.8807492,.05,.05,0,0,0,0,0,0,1,1,0,5.1065831,0,41.67,56.78,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,2184,69703.703,-56796.559,0,0,0,0,1802.6443 +6434,7855,14013,-9,14012,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.1614,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,2184,69703.703,-56796.559,0,0,0,0,1802.6443 +6435,7856,14014,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1014.7966,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.17,15.39,-9,-9,0,1,1,0,0,0,10,1,0,1290,-6070.9053,0,0,0,6669.5786,1161.9689,3142.6199 +6436,7857,14015,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.1415691,7.9801993,0,0,0,-926.90186,-9,3,3,2021,8,1,40,0,1,1,0,11.117786,11.117786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,8,4,0,990,459219.75,330791.38,0,0,0,0,2686.6072 +6437,7858,14016,-9,14017,-9,1,1,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-963.93658,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,0,8,1,0,175,6738.3101,0,0,0,0,0,926.1604 +6437,7859,14017,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1048.3464,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,-9,-9,8,2,3,0,0,0,8,1,0,357,123164.13,0,0,0,0,0,1082.8202 +6437,7860,14018,-9,14017,-9,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-985.03387,-9,3,-9,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,1,0,0,8,1,0,739,83136.742,0,0,0,0,0,292.0242 +6437,7861,14019,-9,14017,-9,1,0,28,0,0,0,1,1,-9,0,5,9.0522099,9.1459608,0,0,0,-987.40875,0,3,-9,2021,6,0,40,35,1,0,1,22.740211,22.740211,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,10,2,3,0,0,2,8,5,0,820,186601.38,118352.78,319913.53,358626.34,2505.8665,0,2269.5806 +6438,7862,14020,-9,14021,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1130.0454,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,478.5,141019.02,84673.844,0,0,3988.9131,60.667007,1454.8491 +6438,7862,14021,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.0969801,7.0628567,0,0,0,-977.04004,0,-9,-9,2021,10,0,19,16,1,0,0,8.9379406,8.9379406,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.38,38.92,-9,-9,6.666666666666667,1,1,0,0,8,13,2,0,478.5,141019.02,84673.844,0,0,3988.9131,60.667007,1454.8491 +6439,7863,14022,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,7.7580175,8.250536,0,0,0,-1036.8125,0,-9,-9,2021,20,6,38,50,1,6,0,10.784564,10.784564,0,0,0,0,0,0,0,0,0,0,0,0,0,1.59,60.66,-9,-9,1.666666666666667,1,1,0,0,4,12,4,0,1054,686.97894,0,0,0,0,0,1024.2983 +6440,7864,14023,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-978.06927,-9,3,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.78,35.25,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,70,9267.375,0,0,0,0,0,1599.2236 +6440,7865,14024,-9,14023,-9,1,1,21,0,0,0,2,2,-9,0,3,7.7915821,7.6507449,0,0,0,-1060.4878,0,3,-9,2021,8,2,35,0,1,2,1,7.7392402,7.7392402,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.05,46.63,-9,-9,8.333333333333334,1,1,0,0,2,6,3,0,1653,-50026.254,-60198.605,0,0,0,0,1239.4832 +6441,7866,14025,14028,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.5897846,9.1896009,0,10,0,87.450897,0,1,2,2021,12,2,39,42,1,2,0,19.937153,19.937153,.05,.05,0,0,0,0,0,0,1,1,0,2.2570369,0,54.13,48.04,36.35,53.49,6.666666666666667,1,1,0,0,10,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6441,7866,14026,-9,14028,14025,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.7805,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6441,7866,14027,-9,14028,14025,1,0,17,0,1,1,2,0,0,0,3,0,3.7453897,4.1347156,0,0,-936.36633,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2590179,0,55.61,50.3,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6441,7866,14028,14025,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.8212347,8.7326889,0,10,0,123.65332,0,2,2,2021,12,0,30,28,1,2,0,27.345755,27.345755,0,0,0,0,0,0,0,0,1,1,0,7.7935529,0,36.35,53.49,54.13,48.04,5,1,1,0,0,10,8,5,1,653.5,610519.88,194788.5,538837.5,241789.72,0,0,5756.1309 +6442,7867,14029,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1080.7434,0,3,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7892244,0,34.78,52.7,-9,-9,6.666666666666667,1,1,0,0,5,7,2,1,1054,1398118.8,448050.13,809331.81,0,0,0,1345.4551 +6443,7868,14030,-9,14031,14032,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.00989,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,620.33331,66583.664,-31611.703,0,0,3027.9531,-271.98718,2282.4924 +6443,7868,14031,14032,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,8.1326561,7.7624116,0,6,2,-25.936621,0,-9,-9,2021,7,0,30,32,1,0,0,14.859638,14.859638,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,57.06,57.76,8.333333333333334,4,1,0,0,5,13,3,1,620.33331,66583.664,-31611.703,0,0,3027.9531,-271.98718,2282.4924 +6443,7868,14032,14031,-9,-9,1,1,28,0,2,0,2,2,-9,0,5,7.5661683,7.4336987,0,6,-2,-69.24086,0,-9,-9,2021,8,0,50,45,1,0,0,2.9004905,2.9004905,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.73,54.53,8.333333333333334,1,1,0,0,9,13,3,1,620.33331,66583.664,-31611.703,0,0,3027.9531,-271.98718,2282.4924 +6444,7869,14033,14034,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.8037424,6.0192709,41,-10,-137.03072,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6712036,5.7789569,52,46,48.89,36.77,8,1,1,0,0,0,9,2,1,903.5,640749.94,55186.832,614984.13,0,0,0,3642.103 +6444,7869,14034,14033,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,7.1876316,7.4492002,41,10,80.486076,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,1.1266595,0,18.446608,120,1,1,0,6.2537384,7.482543,48.89,36.77,52,46,5,1,1,0,0,0,9,2,1,903.5,640749.94,55186.832,614984.13,0,0,0,3642.103 +6445,7870,14035,14036,-9,-9,1,1,35,0,0,0,2,2,-9,0,5,8.946249,8.9603424,0,7,7,-61.341545,0,2,2,2021,8,0,67,60,1,0,0,16.608009,16.608009,.05,.05,0,0,0,0,0,0,0,0,0,3.6485262,0,54.1,59.11,56.25,52.62,8.333333333333334,1,1,0,0,12,4,5,1,946.5,988304.31,1043220.2,186161.73,177674.69,543.7749,22397.668,4092.7578 +6445,7870,14036,14035,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.1291265,8.2326918,0,7,-7,28.400993,0,-9,-9,2021,6,0,44,41,1,0,0,8.5659122,8.5659122,.05,.05,0,0,0,0,0,0,0,0,0,2.667588,0,56.25,52.62,54.1,59.11,8.333333333333334,1,1,0,0,10,4,5,1,946.5,988304.31,1043220.2,186161.73,177674.69,543.7749,22397.668,4092.7578 +6446,7871,14037,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.2371879,6.0973797,0,0,-914.58185,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9456553,6.30269,51.76,47.75,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,276,104793.71,93671.289,77092.852,0,0,0,655.81201 +6447,7872,14038,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,7.6714044,7.9540844,0,0,0,-1032.1591,0,3,2,2021,10,0,39,37,1,0,0,8.2206078,8.2206078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,843,478003.25,352164.34,0,0,0,0,730.46826 +6448,7873,14039,14040,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,7.6803546,7.9720073,6.8058634,44,-3,.025548566,0,2,2,2021,21,8,24,24,1,8,0,9.2769861,9.2769861,0,0,0,0,0,0,0,7,1,1,0,2.7537823,7.1216011,43.67,37.13,45.77,32,3.333333333333333,1,1,0,0,9,2,3,1,336,250807.78,68711.609,143821.14,21375.627,8088.6992,-223.70923,2563.1504 +6448,7873,14040,14039,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,3.645869,3.3691835,44,3,-21.166523,0,-9,2,2021,15,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,3.2598109,45.77,32,43.67,37.13,3.333333333333333,1,1,0,0,7,2,3,1,336,250807.78,68711.609,143821.14,21375.627,8088.6992,-223.70923,2563.1504 +6449,7874,14041,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,6.9946041,7.1104631,0,0,-1002.716,0,3,3,2021,9,3,0,0,4,3,0,0,0,0,0,0,1,0,12.137971,0,0,1,1,0,0,7.0601239,59,25.99,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,413,212806.97,53138.785,112096.32,0,0,0,1090.5745 +6450,7875,14042,14043,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.1949239,7.1334553,32,0,-57.884266,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9108334,7.325459,58.72,51.29,55.3,55.6,8.333333333333334,1,1,0,0,5,4,3,1,689.5,689591.88,547726.63,154502.13,0,-477.19327,0,3700.7163 +6450,7875,14043,14042,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.2356172,6.8485293,33,0,20.937094,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8420923,6.8924742,55.3,55.6,58.72,51.29,8.333333333333334,1,1,0,0,7,4,3,1,689.5,689591.88,547726.63,154502.13,0,-477.19327,0,3700.7163 +6451,7876,14044,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,4,7.5988121,7.0861988,0,0,0,-950.92236,0,2,2,2021,10,0,37,0,1,1,0,5.5603213,5.5603213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,685,61447.363,88740.438,0,0,0,0,2636.7297 +6452,7877,14045,14046,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.5588465,7.6958795,49,1,-20.763802,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9863977,7.5462389,50.65,60.47,64.40000000000001,31.26,10,1,1,0,0,10,2,3,1,2674.5,868708,429766.38,366235.38,0,-161.87756,0,2048.5601 +6452,7877,14046,14045,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.0102873,6.0191407,49,-1,-78.308693,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9352705,5.8701119,64.40000000000001,31.26,50.65,60.47,10,1,1,0,0,6,2,3,1,2674.5,868708,429766.38,366235.38,0,-161.87756,0,2048.5601 +6453,7878,14047,14048,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,7.2086825,7.5994267,0,11,-5,52.122898,0,2,2,2021,12,0,18,18,1,0,0,11.096852,11.096852,0,0,0,0,0,0,0,0,1,1,0,0,0,37.28,55.9,44.5,54.04,8.333333333333334,1,1,0,0,11,11,3,1,617.66669,413656.28,0,444982.47,105936.68,0,0,2003.3335 +6453,7878,14048,14047,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.3349781,8.1981478,0,11,5,-100.07439,-9,-9,-9,2021,12,0,38,0,1,0,0,12.906018,12.906018,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,54.04,37.28,55.9,8.333333333333334,1,1,0,1,12,11,3,1,617.66669,413656.28,0,444982.47,105936.68,0,0,2003.3335 +6453,7878,14049,-9,14047,14048,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.8389,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,1,617.66669,413656.28,0,444982.47,105936.68,0,0,2003.3335 +6454,7879,14050,14052,-9,-9,1,0,36,0,3,0,3,3,-9,0,4,0,0,0,17,-7,37.266144,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48,56,51,56,7,2,3,0,1,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14051,-9,14050,14052,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.001,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14052,14050,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.580307,8.3543825,0,17,7,42.888798,0,-9,-9,2021,9,0,60,53,1,1,0,11.784324,11.784324,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,48,56,8,2,3,0,1,10,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14053,-9,14050,14052,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.66925,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6454,7879,14054,-9,14050,14052,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-954.87512,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,1,438.20001,99225.25,0,375004.31,277120.13,0,15798.134,2467.8591 +6455,7880,14055,14056,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.3930211,5.2390561,60,-4,15.496149,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.6628056,0,0,1,1,0,0,5.4544454,54.9,38.15,57.33,53.46,10,1,1,0,0,0,9,2,0,2024,629148.25,73202.578,500240.03,0,0,0,1893.802 +6455,7880,14056,14055,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,59,4,-53.617081,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.9,38.15,10,1,1,0,0,0,9,2,0,2024,629148.25,73202.578,500240.03,0,0,0,1893.802 +6456,7881,14057,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.6350336,7.5032954,0,0,-1081.9705,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6790571,7.4484563,57.06,57.76,-9,-9,10,1,1,0,0,0,7,3,1,1208,582452.69,207608.89,406824.69,0,0,0,1506.9302 +6457,7882,14058,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.9686251,8.0753794,0,0,0,-1038.7036,0,-9,-9,2021,12,1,40,55,1,1,0,9.1675043,9.1675043,0,0,0,0,0,0,0,0,0,0,0,0,0,45.19,48.64,-9,-9,5,1,1,0,0,3,9,4,0,328,41282.039,140818.13,0,0,4032.6238,0,1725.5863 +6458,7883,14059,14060,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8903303,9.1078854,0,9,-11,63.899998,0,-9,-9,2021,11,0,40,50,1,2,0,22.264452,22.264452,.05,.05,0,0,0,0,0,0,0,0,0,4.2165332,0,49,48,53.61,52.37,7,2,3,0,0,1,5,5,1,2980.5,443493.88,134300.75,107570.64,0,0,0,4665.9326 +6458,7883,14060,14059,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,7.5279703,7.7793331,0,34,11,29.446917,0,2,2,2021,7,0,40,40,1,0,0,7.9969296,7.9969296,.05,.05,0,0,0,0,0,0,0,0,0,2.8643975,0,53.61,52.37,49,48,8.333333333333334,2,3,0,0,12,5,5,1,2980.5,443493.88,134300.75,107570.64,0,0,0,4665.9326 +6459,7884,14061,14062,-9,-9,1,0,31,0,2,0,2,2,-9,0,1,0,0,0,4,1,-8.3751068,0,2,2,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.6,35.96,43,54.57,5,1,1,0,1,0,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6459,7884,14062,14061,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.6833253,7.7130785,0,4,-1,44.418835,0,-9,-9,2021,10,2,48,48,1,2,0,5.5285101,5.5285101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43,54.57,25.6,35.96,6.666666666666667,1,1,0,0,12,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6459,7884,14063,-9,14061,14062,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.56073,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6459,7884,14064,-9,14061,14062,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-840.88507,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,893.5,36307.555,112203.84,0,0,0,802.7746,2001.7417 +6460,7885,14065,14066,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,0,0,9,5,0,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.350224,0,60.02,56.42,32.13,23.18,8.333333333333334,1,1,0,0,8,12,1,1,1218.5,734073.5,607984.44,166033.88,0,0,405.36267,294.05804 +6460,7885,14066,14065,-9,-9,1,0,55,0,0,0,2,2,-9,0,1,0,0,0,9,-5,0,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.13,23.18,60.02,56.42,3.333333333333333,1,1,0,0,7,12,1,1,1218.5,734073.5,607984.44,166033.88,0,0,405.36267,294.05804 +6461,7886,14067,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.9655328,7.542913,0,0,-1009.5495,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0103605,7.9946184,48.78,37.32,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,1211,585446.25,349451.34,217876.58,0,0,6873.7422,2608.3508 +6462,7887,14068,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-931.03094,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.37,39.25,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,2307,270204.63,171718.31,160162.88,0,0,0,1410.0626 +6463,7888,14069,14070,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,9,-3,-119.46656,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.43,55.57,8.333333333333334,1,1,0,0,9,13,3,1,1249.5,373458.69,193547.88,128841.5,0,0,0,2693.7529 +6463,7888,14070,14069,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.5532074,7.8082976,9,3,170.11113,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.35265183,8.1327076,52.43,55.57,54.79,55.86,8.333333333333334,1,1,0,0,0,13,3,1,1249.5,373458.69,193547.88,128841.5,0,0,0,2693.7529 +6464,7889,14071,14072,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1991091,8.0667295,0,38,-2,-89.410019,0,3,3,2021,11,0,42,45,1,0,0,10.591882,10.591882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,43.1,36.84,1.666666666666667,1,1,0,0,9,2,4,1,1301,559247.63,455339.75,86881.766,14467.749,8474.1377,0,2131.8945 +6464,7889,14072,14071,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.0255146,7.1631694,0,39,2,83.53215,0,3,3,2021,11,0,15,15,1,0,0,6.8496404,6.8496404,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.1,36.84,54.96,53.17,5,1,1,0,0,9,2,4,1,1301,559247.63,455339.75,86881.766,14467.749,8474.1377,0,2131.8945 +6465,7890,14073,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,0,0,-959.26605,0,-9,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,1.666666666666667,1,1,0,0,3,11,1,0,1821,-156860.28,0,0,0,0,0,2072.1763 +6465,7891,14074,-9,14073,-9,1,1,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-1047.7966,-9,2,-9,2021,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,11,1,0,443,0,0,0,0,0,0,-409.30508 +6466,7892,14075,14076,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,8,-1,-12.919215,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0627048,0,51,46,47.07,34.11,7,1,1,0,0,0,5,2,1,438,316190.5,78451.234,260135.5,0,0,0,1577.2551 +6466,7892,14076,14075,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.1099758,6.3339262,51,1,-15.929047,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.900722,6.2219725,47.07,34.11,51,46,8.333333333333334,1,1,0,0,5,5,2,1,438,316190.5,78451.234,260135.5,0,0,0,1577.2551 +6467,7893,14077,-9,14079,14078,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.02185,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,574,491813.91,307542.91,392124.34,101191.49,2430.7,0,5305.4653 +6467,7893,14078,14079,-9,-9,1,1,44,0,1,0,1,1,-9,0,5,8.6304216,8.5513687,0,15,6,-185.86342,0,2,2,2021,6,0,47,37,1,0,0,13.774939,13.774939,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,44.09,58.35,46.44,59.62,10,1,1,0,0,10,9,5,1,574,491813.91,307542.91,392124.34,101191.49,2430.7,0,5305.4653 +6467,7893,14079,14078,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,9.1928015,9.0026693,0,14,-6,-30.513687,0,1,1,2021,13,2,50,52,1,2,0,27.680338,27.680338,.05,.05,.05,0,0,0,0,0,0,0,0,.25458208,0,46.44,59.62,44.09,58.35,8.333333333333334,1,1,0,0,11,9,5,1,574,491813.91,307542.91,392124.34,101191.49,2430.7,0,5305.4653 +6468,7894,14080,-9,14081,14082,1,0,21,0,0,0,2,2,-9,0,3,6.4882689,6.3554459,0,0,0,-975.82379,0,2,2,2021,10,1,48,48,1,1,1,1.7505444,1.7505444,0,0,0,0,0,0,0,0,0,0,0,0,0,40.31,57.72,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,2020,4247.9541,0,0,0,0,-87.358704,830.48187 +6468,7895,14081,14082,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4275913,8.3977566,0,12,5,-10.991628,0,-9,-9,2021,13,1,57,88,1,1,0,11.55473,11.55473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.01,56.89,60.02,56.42,6.666666666666667,1,1,0,0,13,11,4,1,329,419858.5,484428.31,82907.469,87716.141,96805.055,3558.3066,2458.8169 +6468,7895,14082,14081,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,6.8798895,7.3110309,0,12,-5,-80.260483,0,3,-9,2021,10,1,37,74,1,1,0,3.4384766,3.4384766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,39.01,56.89,6.666666666666667,1,1,0,0,13,11,4,1,329,419858.5,484428.31,82907.469,87716.141,96805.055,3558.3066,2458.8169 +6469,7896,14083,14084,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,7.6202192,7.8300915,2,4,-110.45712,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.7302508,7.6504383,57.16,56.15,44.3,55.28,8.333333333333334,1,1,0,0,0,2,4,1,1298,121960.19,205021.89,0,0,2212.7688,1958.0114,2757.2876 +6469,7896,14084,14083,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,0,7.6299877,7.6514788,2,-4,-24.506998,0,2,1,2021,9,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.5849476,8.1361732,44.3,55.28,57.16,56.15,8.333333333333334,1,1,0,0,10,2,4,1,1298,121960.19,205021.89,0,0,2212.7688,1958.0114,2757.2876 +6469,7897,14085,-9,-9,14083,1,1,21,0,0,1,1,0,0,0,4,0,0,0,0,0,-997.43878,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1359,-12228.255,0,0,0,0,0,-914.49585 +6470,7898,14086,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,7.8289738,7.9854107,0,0,0,-946.48987,0,2,2,2021,11,0,40,40,1,0,0,8.4764271,8.4764271,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.78,41.83,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,470,172739.06,129464.99,0,0,0,0,928.39197 +6471,7899,14087,14088,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,8.3361521,8.2128735,0,4,0,-18.930389,0,3,3,2021,22,11,35,35,1,11,0,11.291674,11.291674,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,32.53,47.75,54.61,51.04,1.666666666666667,1,1,0,1,10,12,4,1,813.5,308764.13,254557,77582.766,0,0,0,2681.241 +6471,7899,14088,14087,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.4887266,8.3290243,0,4,0,46.016518,0,2,2,2021,11,0,44,48,1,0,0,9.7873993,9.7873993,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.61,51.04,32.53,47.75,3.333333333333333,1,1,0,1,12,12,4,1,813.5,308764.13,254557,77582.766,0,0,0,2681.241 +6472,7900,14089,14090,-9,-9,1,1,50,0,3,0,2,2,-9,0,3,7.9775138,7.4324746,0,20,5,59.562695,0,2,2,2021,7,1,34,40,1,1,0,7.5371008,7.5371008,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52,54.51,58.63,37,5,1,1,0,0,14,2,2,1,1260.3334,96508.125,5983.2725,115401.07,79082.672,0,0,3195.2205 +6472,7900,14090,14089,-9,-9,1,0,45,0,3,0,2,2,-9,1,1,0,0,0,19,-5,29.355545,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,58.63,37,52,54.51,8.333333333333334,1,1,0,0,0,2,2,1,1260.3334,96508.125,5983.2725,115401.07,79082.672,0,0,3195.2205 +6472,7900,14091,-9,14090,14089,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-999.59399,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1260.3334,96508.125,5983.2725,115401.07,79082.672,0,0,3195.2205 +6473,7901,14092,-9,14094,14095,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1087.6149,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6473,7901,14093,-9,14094,14095,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.00519,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6473,7901,14094,14095,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.3128319,7.2748137,0,6,-6,25.98518,0,3,1,2021,7,0,25,25,1,0,0,6.7539272,6.7539272,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,51.11,50.75,1.666666666666667,1,1,0,0,9,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6473,7901,14095,14094,-9,-9,1,1,47,0,2,0,3,3,-9,0,3,7.669395,7.5935688,0,6,6,78.161827,0,2,2,2021,12,0,40,40,1,0,0,7.1929088,7.1929088,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.11,50.75,51.24,58.84,3.333333333333333,1,1,0,0,2,10,3,0,942.25,407821.75,-1573.498,378320.72,48494.008,0,0,3102.8794 +6474,7902,14096,14098,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.621932,8.4738798,0,28,0,-33.813419,0,2,2,2021,10,0,40,40,1,0,0,16.075962,16.075962,.05,.05,0,0,0,0,0,0,1,1,0,4.3843126,0,57.16,56.15,46.48,50.24,8.333333333333334,1,1,0,0,9,2,5,1,805,2745771.5,2332375,377511.91,23689.801,0,0,4753.4639 +6474,7902,14097,-9,14098,14096,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-875.7995,-9,1,1,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.71,61.53,-9,-9,10,1,1,0,0,2,2,5,1,805,2745771.5,2332375,377511.91,23689.801,0,0,4753.4639 +6474,7902,14098,14096,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.6351423,8.6649933,0,28,0,36.416088,0,2,2,2021,8,0,50,60,1,0,0,14.028827,14.028827,0,0,0,0,0,0,0,0,1,1,0,0,0,46.48,50.24,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,805,2745771.5,2332375,377511.91,23689.801,0,0,4753.4639 +6474,7903,14099,-9,14098,14096,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1123.667,-9,1,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7326908,0,41.85,59.52,-9,-9,8.333333333333334,1,1,0,0,4,2,1,1,1112,17509.959,0,0,0,0,0,382.64203 +6475,7904,14100,-9,14102,14101,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1059.6581,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14101,14102,-9,-9,1,1,40,1,4,0,1,1,-9,0,4,8.8973665,8.9502201,0,14,2,-67.208076,0,2,2,2021,11,0,82,42,1,0,0,11.055915,11.055915,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,14,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14102,14101,-9,-9,1,0,38,1,4,0,1,1,-9,0,4,6.9206662,6.4532986,0,14,-2,-3.2960606,0,2,2,2021,10,0,15,15,1,0,0,8.1930485,8.1930485,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14103,-9,14102,14101,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.65808,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6475,7904,14104,-9,14102,14101,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-945.36597,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,918,72092.555,0,0,0,0,0,3284.2168 +6476,7905,14105,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1124.1957,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.7,24.9,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,958,100576.26,0,0,0,0,0,1669.087 +6477,7906,14106,14107,-9,-9,1,1,56,0,1,0,1,1,-9,0,3,8.6413889,8.3886404,0,11,1,5.8383007,0,3,2,2021,19,8,50,45,1,8,0,11.955776,11.955776,.05,.05,0,0,0,0,0,2,1,1,0,3.7758818,0,31.04,62.55,60.12,19.97,3.333333333333333,1,1,0,0,12,2,4,1,387.66666,741388.94,437210.63,151319.09,0,5150.0537,3155.0266,5329.582 +6477,7906,14107,14106,-9,-9,1,0,55,0,1,0,1,1,-9,0,1,0,7.8113418,7.7897577,11,-1,30.213863,0,2,2,2021,15,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3928928,0,60.12,19.97,31.04,62.55,3.333333333333333,1,1,0,0,5,2,4,1,387.66666,741388.94,437210.63,151319.09,0,5150.0537,3155.0266,5329.582 +6477,7906,14108,-9,14107,14106,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.1521,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,387.66666,741388.94,437210.63,151319.09,0,5150.0537,3155.0266,5329.582 +6477,7907,14109,-9,14107,14106,1,1,23,0,1,0,1,1,-9,0,5,7.9669466,7.7628441,0,0,0,-1078.9894,0,1,1,2021,6,0,15,0,1,0,1,20.298929,20.298929,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,215,0,0,0,0,0,0,1631.0302 +6477,7908,14110,-9,14107,14106,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1155.3951,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5522294,0,59.53,56.44,-9,-9,1.666666666666667,1,1,0,0,4,2,1,1,1458,0,0,0,0,0,0,868.12549 +6478,7909,14111,14112,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8472652,8.9579992,0,6,-1,-89.606499,0,3,3,2021,8,0,30,30,1,0,0,23.824663,23.824663,0,0,0,0,0,0,0,2,0,0,0,8.5067816,0,54.2,57.49,63.09,47.92,8.333333333333334,1,1,0,0,7,13,4,1,796,1399733.5,341439.88,558185.38,0,0,0,4894.5439 +6478,7909,14112,14111,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,6.656765,6.7199097,0,6,1,-30.380993,0,2,3,2021,6,0,70,60,1,0,0,1.2202137,1.2202137,0,0,0,0,0,0,0,0,0,0,0,7.0738077,0,63.09,47.92,54.2,57.49,10,1,1,0,0,7,13,4,1,796,1399733.5,341439.88,558185.38,0,0,0,4894.5439 +6479,7910,14113,-9,14114,14115,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-880.48895,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6479,7910,14114,14115,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,6.6834593,6.7442961,0,4,-7,-32.399864,0,2,2,2021,21,6,8,9,1,6,0,11.32635,11.32635,0,0,0,0,0,0,0,0,1,1,0,0,0,29.22,58.49,68.42,44.16,3.333333333333333,1,1,0,0,7,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6479,7910,14115,14114,-9,-9,1,1,41,1,2,0,2,2,-9,0,4,8.2863932,8.2570534,0,4,7,-71.893204,0,-9,-9,2021,5,0,42,45,1,0,0,14.210474,14.210474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,68.42,44.16,29.22,58.49,10,1,1,0,0,8,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6479,7910,14116,-9,14114,14115,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4891,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,727.25,202393.52,162845.56,54789.621,31394.275,1092.6731,0,2603.6357 +6480,7911,14117,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,4.3649998,4.5479803,0,0,-964.79443,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.6588922,4.1342382,57.74,49,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,801,238694.25,203221.42,0,0,0,0,2156.4705 +6481,7912,14118,14119,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.536171,8.5811758,0,21,-2,118.89002,0,2,2,2021,8,0,60,60,1,0,0,13.142152,13.142152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.76,37.11,8.333333333333334,1,1,0,0,11,4,4,1,650,364003.06,146157.75,197597.47,65032.473,0,795.55652,3026.7659 +6481,7912,14119,14118,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.6757865,7.4076977,0,21,2,-48.906483,0,2,2,2021,11,0,27,27,1,0,0,7.5958056,7.5958056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.76,37.11,58.15,52.91,8.333333333333334,1,1,0,0,11,4,4,1,650,364003.06,146157.75,197597.47,65032.473,0,795.55652,3026.7659 +6482,7913,14120,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.728199,8.485795,0,0,0,-924.3288,0,3,3,2021,10,0,49,48,1,0,0,9.3932886,9.3932886,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.66,55.01,-9,-9,6.666666666666667,1,1,0,0,14,2,5,1,1640,142821.22,30588.277,92405.438,0,0,0,966.04187 +6483,7914,14121,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.9134336,8.1504402,0,0,0,-959.38647,0,3,2,2021,6,0,39,39,1,0,0,9.7597837,9.7597837,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,8,3,0,1005,138640.11,18212.596,0,0,0,0,-66.544594 +6484,7915,14122,14123,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,9.2413349,9.084918,0,21,-8,-11.121884,0,1,2,2021,8,0,36,35,1,0,0,32.522408,32.522408,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,54.69,57.47,8.333333333333334,1,1,0,0,13,13,5,1,455,876169.75,697970.81,268535.5,80040.969,5503.2529,3941.054,4976.4282 +6484,7915,14123,14122,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.4497843,8.3236914,0,12,8,-12.40723,0,-9,-9,2021,8,0,36,40,1,0,0,17.446898,17.446898,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.96,53.17,8.333333333333334,1,1,0,0,13,13,5,1,455,876169.75,697970.81,268535.5,80040.969,5503.2529,3941.054,4976.4282 +6485,7916,14124,14125,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.9218512,9.7200117,0,1,-2,-92.924736,-9,-9,-9,2021,8,1,54,0,1,1,0,46.477142,46.477142,.05,.05,0,0,0,0,0,0,0,0,0,6.0345287,0,57.33,53.46,51.94,55.88,10,4,5,0,0,9,7,5,1,905.66669,340772.44,226470.06,536847.75,397747.25,6818.127,-381.13025,6966.291 +6485,7916,14125,14124,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,6.4251571,6.6793823,0,10,2,-54.009636,-9,2,1,2021,9,1,30,0,1,1,0,2.554708,2.554708,.05,.05,0,0,0,0,0,2,0,0,0,1.673779,0,51.94,55.88,57.33,53.46,8.333333333333334,1,1,0,0,11,7,5,1,905.66669,340772.44,226470.06,536847.75,397747.25,6818.127,-381.13025,6966.291 +6485,7916,14126,-9,14125,14124,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.5563,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,7,5,1,905.66669,340772.44,226470.06,536847.75,397747.25,6818.127,-381.13025,6966.291 +6486,7917,14127,-9,14130,14129,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-904.1532,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14128,-9,14130,14129,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-972.81207,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14129,14130,-9,-9,1,1,42,0,3,0,2,2,-9,1,2,8.327342,8.261301,0,1,8,97.771332,-9,-9,-9,2021,12,1,75,0,1,1,0,6.4194307,6.4194307,.05,.05,0,0,0,0,0,27,1,1,0,0,0,52.24,50.75,29.71,52.4,5,3,4,0,0,10,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14130,14129,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,0,0,0,1,-8,97.689667,-9,2,2,2021,30,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,29.71,52.4,52.24,50.75,3.333333333333333,1,1,0,0,3,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6486,7917,14131,-9,14130,14129,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.04895,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,4,3,0,832,264133.38,200087.3,129118.58,50231.992,495.03513,8217.7578,2574.0457 +6487,7918,14132,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1080.4355,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,5,12,1,0,477,542188.38,78439.063,199057.75,0,0,0,1862.6438 +6488,7919,14133,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1042.4274,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,52.61,32.32,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,525,273399.56,0,0,0,0,0,1635.161 +6488,7920,14134,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-921.69116,0,2,-9,2021,17,5,0,12,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,42.95,61.24,-9,-9,3.333333333333333,1,1,1,1,2,12,1,0,358,-108969.21,0,0,0,1917.1113,0,1062.7737 +6488,7920,14135,-9,14134,-9,1,1,10,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1010.5174,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,1,0,358,-108969.21,0,0,0,1917.1113,0,1062.7737 +6489,7921,14136,14138,-9,-9,1,0,36,0,4,0,2,2,-9,0,3,6.9616923,7.1140642,0,17,1,137.9061,0,2,2,2021,10,2,20,20,1,2,0,6.9338384,6.9338384,.05,.05,0,0,0,0,.61153328,0,1,1,0,0,0,43.92,47.65,50,57,8.333333333333334,1,1,0,0,5,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14137,-9,14136,14138,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.3369,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14138,14136,-9,-9,1,1,35,0,4,0,1,1,-9,0,4,8.8600836,9.064476,0,7,-1,-72.007744,0,-9,-9,2021,10,0,40,40,1,1,0,26.242212,26.242212,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,43.92,47.65,7,1,1,0,0,1,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14139,-9,14136,14138,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1045.1759,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14140,-9,14136,14138,1,1,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1092.1035,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6489,7921,14141,-9,14136,14138,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-976.73065,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,576.33331,202755.97,112563.52,0,0,0,0,3981.6045 +6490,7922,14142,-9,14143,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.7906,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,0,251,119068.99,29279.094,247136.3,106611.98,0,0,1894.3713 +6490,7922,14143,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,8.3950624,8.3201418,5.9021959,0,0,-951.00049,0,2,2,2021,20,8,38,38,1,8,0,16.183605,16.183605,0,0,0,0,0,0,0,0,1,1,0,5.7753963,0,37.83,40.74,-9,-9,6.666666666666667,1,1,0,0,7,5,3,0,251,119068.99,29279.094,247136.3,106611.98,0,0,1894.3713 +6491,7923,14144,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1036.3641,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4717274,0,51,46,-9,-9,8,1,1,0,0,0,12,1,0,351,83938.906,0,75081.07,0,0,0,1450.2246 +6492,7924,14145,14146,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.3599339,6.2216206,2,-3,-95.339478,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1431088,6.462554,55.3,55.6,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,433,159850.27,93217.758,0,0,0,0,1689.9871 +6492,7924,14146,14145,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.5932026,4.7463274,22,3,-9.2915506,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5658131,4.5957928,57.16,56.15,55.3,55.6,10,1,1,0,0,0,9,2,1,433,159850.27,93217.758,0,0,0,0,1689.9871 +6493,7925,14147,-9,14148,14149,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1017.8054,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,11,2,0,475.33334,165668.03,59121.441,0,0,0,0,1441.2229 +6493,7925,14148,14149,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.7669196,7.7724657,0,8,-4,-104.1044,0,3,-9,2021,22,10,33,33,1,10,0,7.9298444,7.9298444,0,0,0,0,0,0,0,0,1,1,0,0,0,43.67,47.86,36.42,48.15,3.333333333333333,4,2,0,1,7,11,2,0,475.33334,165668.03,59121.441,0,0,0,0,1441.2229 +6493,7925,14149,14148,-9,-9,1,1,40,0,1,0,2,2,-9,0,2,0,0,0,8,4,-59.249554,0,2,2,2021,23,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.42,48.15,43.67,47.86,1.666666666666667,1,1,0,1,3,11,2,0,475.33334,165668.03,59121.441,0,0,0,0,1441.2229 +6494,7926,14150,-9,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,7.4421024,7.2752647,0,0,0,-1062.0853,0,-9,-9,2021,13,1,30,32,1,1,0,6.0900636,6.0900636,.05,.05,0,0,0,0,0,0,1,1,0,1.2061313,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,1477,-164122.06,-9568.9307,0,0,0,0,709.4649 +6495,7927,14151,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1075.281,0,2,-9,2021,16,4,0,60,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,41.3,-9,-9,1.666666666666667,1,1,0,0,5,10,1,1,1647,16483.996,0,0,0,0,1047.4677,956.77753 +6496,7928,14152,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,5,7.912683,8.1580925,0,0,0,-1198.9165,0,-9,-9,2021,7,2,37,37,1,2,0,9.009902,9.009902,.05,.05,0,0,0,0,0,0,0,0,0,3.0869091,0,59.43,58.05,-9,-9,10,1,1,0,0,6,10,4,0,236,-273729.13,-62812.082,0,0,0,0,1767.6454 +6496,7929,14153,14154,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.9925632,8.0669498,0,2,-3,64.562958,0,2,2,2021,3,0,37,37,1,0,0,11.961758,11.961758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,59.62,52.31,58.29,10,1,1,0,0,13,10,5,0,1083.5,292847.63,-19248.9,247357.69,101760.8,0,0,3357.522 +6496,7929,14154,14153,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3774719,8.425971,0,2,3,130.2359,0,-9,-9,2021,4,0,72,60,1,0,0,9.4637632,9.4637632,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,49.84,59.62,10,1,1,0,0,1,10,5,0,1083.5,292847.63,-19248.9,247357.69,101760.8,0,0,3357.522 +6497,7930,14155,14156,-9,-9,1,1,86,0,0,0,1,1,-9,0,5,0,6.7576413,6.974257,10,1,49.019295,0,3,1,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6703925,6.8728881,56.47,59.4,51.43,35.46,8.333333333333334,1,1,0,0,6,12,3,1,537.5,172771.03,-14595.637,65527.164,0,0,0,2700.177 +6497,7930,14156,14155,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.6657166,7.5815597,10,-1,92.203545,0,2,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,1.6884747,0,0,1,1,0,5.3835692,7.7463727,51.43,35.46,56.47,59.4,8.333333333333334,1,1,0,0,0,12,3,1,537.5,172771.03,-14595.637,65527.164,0,0,0,2700.177 +6498,7931,14157,14158,-9,-9,1,1,52,0,2,0,2,2,-9,1,4,8.1416397,7.752665,0,12,7,-6.545856,-9,2,3,2021,8,0,45,0,1,0,0,7.4919705,7.4919705,0,0,0,0,0,0,0,2,1,0,1,0,0,55.76,52.64,43.03,53.23,8.333333333333334,1,1,0,1,13,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7931,14158,14157,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,7.6008539,7.5460901,0,12,-7,52.141415,0,2,2,2021,13,2,23,25,1,2,0,9.1351566,9.1351566,0,0,0,0,0,0,0,74.5,1,0,1,0,0,43.03,53.23,55.76,52.64,6.666666666666667,1,1,0,0,9,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7931,14159,-9,14158,14157,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-979.4458,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7931,14160,-9,14158,14157,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.66235,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,411.5,638632.44,35468.711,348500.22,0,0,0,4365.5088 +6498,7932,14161,-9,14158,14157,1,0,19,0,2,0,2,2,-9,0,3,6.845365,6.8929725,0,0,0,-945.89099,-9,1,2,2021,11,1,36,0,1,1,1,3.1852858,3.1852858,.05,.05,0,0,0,0,0,0,1,0,1,6.6507592,0,38.45,60.79,-9,-9,5,1,1,0,0,3,9,2,0,400,-26541.822,107786.3,0,0,4162.9629,-1162.8873,1950.5863 +6499,7933,14162,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1031.562,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,71.86,28.94,-9,-9,10,3,4,0,0,0,8,1,0,249,42724.297,0,0,0,0,0,1187.3717 +6500,7934,14163,14164,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,8.9208775,8.8577547,5.5572028,7,2,-15.261839,0,2,2,2021,9,1,50,50,1,1,0,16.663349,16.663349,0,0,0,0,0,0,0,0,1,1,0,0,5.7961855,49.04,55.86,67.93000000000001,17.44,6.666666666666667,1,1,0,0,12,12,5,1,880.5,1397024.6,993570,186868.56,0,3130.6025,0,4724.3813 +6500,7934,14164,14163,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,3.9625311,4.1560316,7,-2,-40.999878,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0923386,67.93000000000001,17.44,49.04,55.86,8.333333333333334,1,1,0,0,8,12,5,1,880.5,1397024.6,993570,186868.56,0,3130.6025,0,4724.3813 +6501,7935,14165,14167,-9,-9,1,0,32,1,2,0,1,1,-9,0,3,8.5336351,8.4603386,0,9,0,116.63152,0,-9,-9,2021,12,1,58,58,1,1,0,10.522603,10.522603,.05,.05,0,0,0,0,0,0,1,1,0,.61072087,0,40.65,57.36,62.66,52.4,8.333333333333334,1,1,0,0,7,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6501,7935,14166,-9,14165,14167,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.86951,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6501,7935,14167,14165,-9,-9,1,1,32,1,2,0,1,1,-9,0,3,8.468935,8.4026918,0,9,0,60.588181,0,1,1,2021,8,0,37,27,1,0,0,16.122492,16.122492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,40.65,57.36,10,1,1,0,0,9,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6501,7935,14168,-9,14165,14167,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.2533,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1790.75,354995.56,236514.58,290611.56,75023.313,0,0,4926.9854 +6502,7936,14169,14170,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,6.5782828,6.8382177,6,2,31.047005,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1869307,6.4811578,57.16,24.34,54.2,57.49,8.333333333333334,1,1,0,0,3,8,2,1,1611,1736309.3,849274.25,715671.5,0,0,3261.7534,2156.0635 +6502,7936,14170,14169,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,6,-2,-77.237,0,-9,-9,2021,9,0,0,52,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4512014,0,54.2,57.49,57.16,24.34,8.333333333333334,1,1,0,0,6,8,2,1,1611,1736309.3,849274.25,715671.5,0,0,3261.7534,2156.0635 +6503,7937,14171,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,8.3205757,8.3513288,0,0,-926.64935,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1429596,46.81,37.48,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,229,440635.59,93596.172,88365.539,0,0,0,2563.5146 +6504,7938,14172,14173,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.96311,6.9955282,39,6,-40.293171,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48086247,7.0230198,52.22,53.26,57.73,54.53,8.333333333333334,1,1,0,0,0,5,3,1,866.5,415647.94,280783.75,67954.289,0,0,0,2848.5188 +6504,7938,14173,14172,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.9788871,7.1486878,39,-6,73.770844,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9403086,7.1284556,57.73,54.53,52.22,53.26,8.333333333333334,1,1,0,0,3,5,3,1,866.5,415647.94,280783.75,67954.289,0,0,0,2848.5188 +6505,7939,14174,14175,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.3408303,5.4528341,49,0,8.4312801,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,5.0948553,5.407166,53.62,46.84,53,47,8.333333333333334,1,1,0,0,0,7,2,1,687.5,1175705.5,771878.25,237030.97,0,1206.0046,0,1928.8557 +6505,7939,14175,14174,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.3525677,6.9235449,6,0,-90.638786,0,-9,-9,2021,10,0,0,120,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.782686,7.0687661,53,47,53.62,46.84,7,1,1,0,0,0,7,2,1,687.5,1175705.5,771878.25,237030.97,0,1206.0046,0,1928.8557 +6506,7940,14176,14178,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.2915754,8.2408657,4.0060964,15,15,-36.042942,0,3,2,2021,20,7,37,40,1,7,0,12.430037,12.430037,.05,.05,0,0,0,0,0,0,1,0,1,0,4.0614181,46.57,46.63,46.75,56.99,3.333333333333333,1,1,0,1,9,9,3,1,435.66666,600279.69,177727.77,176501.19,92977.719,765.22583,9945.2275,3463.7139 +6506,7940,14177,-9,14178,14176,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.5229,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,435.66666,600279.69,177727.77,176501.19,92977.719,765.22583,9945.2275,3463.7139 +6506,7940,14178,14176,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,6.8777995,7.3571129,0,14,-15,-43.198353,0,2,1,2021,9,0,8,2,1,0,0,17.039495,17.039495,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.75,56.99,46.57,46.63,6.666666666666667,1,1,0,0,6,9,3,1,435.66666,600279.69,177727.77,176501.19,92977.719,765.22583,9945.2275,3463.7139 +6507,7941,14179,14180,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.2155972,9.0944815,7.3019991,8,1,-8.0237608,-9,-9,-9,2021,9,0,40,0,1,0,0,24.927235,24.927235,0,0,0,1,0,4.0456767,0,0,1,1,0,9.0943804,7.341073,57.33,53.46,62.49,55.09,0,1,1,0,0,9,9,5,1,1318.5,1098174.8,365029.38,346747.16,0,0,0,10147.635 +6507,7941,14180,14179,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.3066807,7.3735681,53,-1,-40.529499,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5736766,7.2305574,62.49,55.09,57.33,53.46,8.333333333333334,1,1,0,0,0,9,5,1,1318.5,1098174.8,365029.38,346747.16,0,0,0,10147.635 +6508,7942,14181,14182,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.7385139,7.6582394,52,4,55.906937,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.6405997,0,0,1,1,0,3.7808042,7.7502089,36.27,39.33,55.93,49.95,6.666666666666667,1,1,0,0,0,9,3,1,608,3852624,332095.56,1045124,0,0,0,2363.1172 +6508,7942,14182,14181,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,4.4777532,4.2355714,52,-4,99.456985,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5627036,0,0,1,1,0,5.1607885,4.5367393,55.93,49.95,36.27,39.33,8.333333333333334,1,1,0,0,0,9,3,1,608,3852624,332095.56,1045124,0,0,0,2363.1172 +6509,7943,14183,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.1663647,9.4423199,0,0,0,-1056.0164,0,2,1,2021,7,0,42,40,1,0,0,25.220245,25.220245,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.63,45.09,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,296,832092.06,424127.59,351638.25,0,3460.1711,0,2957.4197 +6510,7944,14184,14185,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.7407961,9.0597849,0,7,6,-192.02809,0,2,2,2021,7,0,51,50,1,0,0,13.533238,13.533238,.05,.05,0,0,0,0,0,0,0,0,0,6.4269066,0,57.16,56.15,33.89,56.25,8.333333333333334,1,1,0,0,8,4,5,0,277.5,182006.02,155941.45,0,0,0,1652.1511,5146.8916 +6510,7944,14185,14184,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,8.7788801,8.9618788,0,7,-6,-94.554695,0,-9,-9,2021,16,6,50,55,1,6,0,16.349905,16.349905,0,0,0,0,0,0,0,0,0,0,0,1.549826,0,33.89,56.25,57.16,56.15,6.666666666666667,1,1,0,0,8,4,5,0,277.5,182006.02,155941.45,0,0,0,1652.1511,5146.8916 +6511,7945,14186,14187,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,7.1137385,7.0430055,44,4,-4.555337,0,-9,-9,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4904752,7.0855284,57.16,56.15,36.78,41.13,8.333333333333334,1,1,0,0,9,5,2,1,1827,234324.94,293165.53,127924.94,0,9023.417,0,1151.5469 +6511,7945,14187,14186,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,4.1609344,4.2205625,44,-4,-63.598331,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8166802,3.9730992,36.78,41.13,57.16,56.15,5,1,1,0,0,8,5,2,1,1827,234324.94,293165.53,127924.94,0,9023.417,0,1151.5469 +6512,7946,14188,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,8.4032459,8.9196272,5.6798782,0,0,-913.70813,0,3,2,2021,15,6,43,41,1,6,0,14.316439,14.316439,.05,.05,0,0,0,0,0,0,1,1,0,5.5151634,0,44.15,50.21,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,1013.5,267049.25,5560.7734,175526.84,32246.465,0,0,3208.3884 +6512,7946,14189,-9,14188,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.188,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,2,4,1,1013.5,267049.25,5560.7734,175526.84,32246.465,0,0,3208.3884 +6512,7947,14190,-9,14188,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1037.42,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1624074,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,393,0,0,0,0,0,0,220.97371 +6513,7948,14191,-9,14193,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.6653,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,2,0,2125.6667,-41216.336,0,0,0,0,0,521.07269 +6513,7948,14192,-9,14193,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.4299,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,2,0,2125.6667,-41216.336,0,0,0,0,0,521.07269 +6513,7948,14193,-9,-9,-9,1,0,49,0,2,0,2,2,-9,0,5,7.2106609,7.5292745,6.4470577,0,0,-966.64166,0,2,2,2021,12,4,13,0,1,4,0,9.3551397,9.3551397,0,0,0,0,0,0,0,0,1,1,0,6.2318983,0,52.13,57.22,-9,-9,6.666666666666667,1,1,0,1,5,5,2,0,2125.6667,-41216.336,0,0,0,0,0,521.07269 +6514,7949,14194,14195,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,8.1173811,8.0051584,0,2,-5,12.638633,0,2,2,2021,12,0,40,37,1,0,0,9.3546114,9.3546114,0,0,0,0,0,0,0,0,0,0,0,0,0,42.88,40,40.1,53.28,8.333333333333334,2,3,0,0,10,11,5,1,549.5,1232491,582914.31,170281.25,0,2146.8081,1248.9673,3246.6006 +6514,7949,14195,14194,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.4664021,8.410923,0,2,5,4.6265054,0,-9,-9,2021,12,0,38,38,1,0,0,15.844242,15.844242,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.1,53.28,42.88,40,5,1,1,0,0,3,11,5,1,549.5,1232491,582914.31,170281.25,0,2146.8081,1248.9673,3246.6006 +6515,7950,14196,-9,14197,14198,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-927.66211,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,0,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7950,14197,14198,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.2961235,8.2103596,0,19,-3,-84.184547,0,3,3,2021,8,0,43,43,1,0,0,9.7941494,9.7941494,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,41.76,44.61,6.666666666666667,2,3,0,0,11,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7950,14198,14197,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,8.2978659,8.0545254,0,19,3,-104.65454,0,3,3,2021,13,1,55,58,1,1,0,6.2987928,6.2987928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.76,44.61,48.87,58.55,6.666666666666667,2,3,0,0,12,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7950,14199,-9,14197,14198,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1099.2104,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,4,4,1,662,264957.5,347004.44,176765.44,62985.82,0,2666.9836,3200.3679 +6515,7951,14200,-9,14197,14198,1,1,20,0,2,0,2,2,-9,0,3,8.0791559,8.110116,0,0,0,-1006.8619,0,2,2,2021,9,0,48,53,1,0,1,5.5690684,5.5690684,0,0,0,0,0,0,0,0,1,1,0,3.244514,0,45.32,54.77,-9,-9,8.333333333333334,2,3,0,0,4,4,4,1,1156,-81566.672,64249.434,0,0,0,0,1665.7445 +6516,7952,14201,14202,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.4279213,8.571991,0,10,1,56.547977,0,2,3,2021,12,0,51,45,1,0,0,11.465948,11.465948,.05,.05,0,0,0,0,0,0,1,1,0,7.3684797,0,48.87,58.55,45.32,54.77,8.333333333333334,1,1,0,0,14,12,5,1,239.5,1088911.5,772695.5,171227.67,92328.789,0,0,4960.6064 +6516,7952,14202,14201,-9,-9,1,1,58,0,0,0,2,2,1,0,3,8.7247658,9.1541309,0,10,-1,8.1617727,-9,-9,-9,2021,13,1,42,0,1,1,0,24.272602,24.272602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.32,54.77,48.87,58.55,8.333333333333334,1,1,0,0,14,12,5,1,239.5,1088911.5,772695.5,171227.67,92328.789,0,0,4960.6064 +6517,7953,14203,14204,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2142448,8.0970325,36,4,-27.014502,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,0,0,0,7.4330378,8.236887,51.83,57.2,35.62,49.76,8.333333333333334,1,1,0,0,5,9,4,1,309,1003723.8,678412.44,228735.98,0,0,0,2213.3711 +6517,7953,14204,14203,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,4.8932929,5.3973217,36,-4,-.72496378,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,27,0,0,0,4.3944879,5.2931824,35.62,49.76,51.83,57.2,3.333333333333333,1,1,0,0,6,9,4,1,309,1003723.8,678412.44,228735.98,0,0,0,2213.3711 +6518,7954,14205,-9,14207,-9,1,1,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.8134,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,1,0,546.33331,82868.883,0,0,0,0,0,2272.7622 +6518,7954,14206,-9,14207,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.9376,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,546.33331,82868.883,0,0,0,0,0,2272.7622 +6518,7954,14207,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1007.8573,-9,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,1,3,8,1,0,546.33331,82868.883,0,0,0,0,0,2272.7622 +6519,7955,14208,14209,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.1781397,8.1383762,43,2,-39.899792,0,3,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1213303,54.37,54.8,44.34,44.44,8.333333333333334,1,1,0,0,11,4,4,1,1462.5,193676.19,-15302.041,100399.66,33633.609,35386.055,0,3114.6958 +6519,7955,14209,14208,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.3750024,6.7221909,43,-2,116.16383,0,-9,3,2021,22,11,0,0,4,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,6.5313201,44.34,44.44,54.37,54.8,5,1,1,0,0,0,4,4,1,1462.5,193676.19,-15302.041,100399.66,33633.609,35386.055,0,3114.6958 +6520,7956,14210,-9,14212,14211,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1061.4678,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6520,7956,14211,14212,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9713278,8.8677387,0,9,5,-226.74451,0,-9,-9,2021,19,9,60,52,1,9,0,11.573175,11.573175,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.28,60.18,45.85,61.26,8.333333333333334,1,1,0,0,8,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6520,7956,14212,14211,-9,-9,1,0,38,0,2,0,1,1,1,0,4,8.2123089,8.0911131,0,15,-5,8.940033,-9,2,2,2021,9,0,47,0,1,0,0,9.8489208,9.8489208,0,0,0,0,0,0,0,0,1,1,0,0,0,45.85,61.26,48.28,60.18,8.333333333333334,1,1,0,0,5,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6520,7956,14213,-9,14212,14211,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.77728,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1028,764231.94,162660.23,359094.13,0,0,0,3870.4409 +6521,7957,14214,14215,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.9091139,8.4893885,0,32,-7,-16.0173,0,2,3,2021,19,8,42,43,1,8,0,16.771418,16.771418,0,0,0,0,0,0,0,2,0,0,0,0,0,35,59.32,40.25,42.7,6.666666666666667,1,1,0,0,12,4,5,1,1525,6323250.5,3696751,1930562.3,372379.56,0,0,4393.8848 +6521,7957,14215,14214,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.2086296,8.1530027,32,7,-69.17849,0,2,1,2021,19,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1334705,40.25,42.7,35,59.32,1.666666666666667,1,1,0,0,6,4,5,1,1525,6323250.5,3696751,1930562.3,372379.56,0,0,4393.8848 +6522,7958,14216,-9,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,6.7524199,6.6399159,0,0,0,-980.64209,0,3,2,2021,16,5,19,15,1,5,0,5.3771443,5.3771443,0,0,0,0,0,0,0,0,1,1,0,0,0,49.32,49.01,-9,-9,5,2,3,0,1,1,5,2,0,1963,28853.598,0,0,0,1063.5699,0,1938.4144 +6523,7959,14217,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,4.459341,4.4662428,0,0,-792.17981,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.8812232,48.498478,24.193419,0,1,1,0,0,4.9845967,44.25,16.75,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,491,112375.83,-9572.6338,0,0,0,0,1415.7738 +6524,7960,14218,14219,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,8.3641462,8.1311731,7,0,-142.33289,0,3,3,2021,13,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1199589,7.7674866,45.13,49.45,36.7,61.65,8.333333333333334,1,1,0,0,2,2,4,1,776.5,1703413.1,1098622.1,244130.72,0,0,0,3214.928 +6524,7960,14219,14218,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,7.0189714,7.085897,7,0,-78.47937,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3859439,6.7902064,36.7,61.65,45.13,49.45,8.333333333333334,1,1,0,0,5,2,4,1,776.5,1703413.1,1098622.1,244130.72,0,0,0,3214.928 +6525,7961,14220,14221,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.4735522,6.6900854,44,-5,124.20351,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6058273,6.5290279,40.32,53.3,53.3,55.06,6.666666666666667,2,3,0,0,0,8,4,1,507.5,1140175,825572.13,267288.22,0,0,0,5170.96 +6525,7961,14221,14220,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.4624071,8.578433,44,5,104.00461,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9208527,8.0402641,53.3,55.06,40.32,53.3,10,2,3,0,0,6,8,4,1,507.5,1140175,825572.13,267288.22,0,0,0,5170.96 +6526,7962,14222,14225,-9,-9,1,0,57,0,1,0,3,3,-9,0,3,6.1323857,6.1901369,4.1439199,22,1,1.4828655,0,3,3,2021,11,2,4,4,1,2,0,13.237221,13.237221,0,0,0,0,0,0,0,0,0,0,0,4.8168163,4.2526722,58.32,50.22,57.16,56.15,10,3,4,0,0,7,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6526,7962,14223,-9,14222,14225,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1007.2921,-9,3,1,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,4,2,0,0,0,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6526,7962,14224,-9,14222,14225,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1053.9946,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,4,2,-9,0,0,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6526,7962,14225,14222,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.0456858,9.1090889,0,23,-1,-85.815315,0,2,3,2021,6,0,40,40,1,0,0,24.673157,24.673157,0,0,0,0,0,0,0,0,0,0,0,7.5903807,0,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,10,9,4,1,1081.75,654280.25,62770.211,400979.25,104096.55,0,0,4825.5127 +6527,7963,14226,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,8.1429596,7.920752,0,0,0,-1029.6171,0,-9,-9,2021,6,0,36,38,1,0,0,10.424113,10.424113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,11,13,4,1,539,-31285.594,251924.52,0,0,0,0,917.54865 +6528,7964,14227,-9,14228,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-963.82269,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,5,0,556,629846.56,163258.2,501695.69,0,0,0,3006.4146 +6528,7964,14228,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,9.0677519,9.0274696,0,0,0,-1000.449,0,2,3,2021,15,3,51,60,1,3,0,18.083006,18.083006,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,37.32,46.97,-9,-9,6.666666666666667,3,4,0,0,13,8,5,0,556,629846.56,163258.2,501695.69,0,0,0,3006.4146 +6529,7965,14229,-9,-9,-9,1,0,65,0,0,0,2,2,-9,1,2,7.8627348,7.8765688,0,0,0,-1111.3126,0,3,3,2021,10,0,30,30,1,0,0,10.258825,10.258825,0,0,0,1,0,1.9868025,0,0,1,1,0,0,0,64.64,21.97,-9,-9,5,1,1,0,0,10,12,4,0,237,-128460,0,223088.22,0,0,1518.9384,2290.8347 +6530,7966,14230,14231,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.8126488,8.6359329,0,17,-3,-54.672405,-9,2,1,2021,24,11,48,0,1,11,0,17.266216,17.266216,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.74,65.41,57.16,56.15,6.666666666666667,1,1,0,0,10,12,5,1,544.5,941570.5,839364.75,328291.19,164394.95,5460.7393,7710.0635,6225.1577 +6530,7966,14231,14230,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.2381992,9.3758411,0,15,3,-87.893311,0,2,1,2021,8,0,40,41,1,0,0,33.716377,33.716377,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,25.74,65.41,8.333333333333334,1,1,0,0,13,12,5,1,544.5,941570.5,839364.75,328291.19,164394.95,5460.7393,7710.0635,6225.1577 +6531,7967,14232,-9,-9,-9,1,0,59,0,3,0,3,3,-9,0,3,0,0,0,0,0,-946.04468,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,2,3,0,0,0,8,1,1,279,-129719.65,0,0,0,0,2217.9097,0 +6531,7968,14233,-9,14235,14234,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-991.92017,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14234,14235,14232,-9,1,1,40,0,3,0,2,2,-9,0,4,7.6924958,7.5732112,0,17,4,27.539085,0,3,3,2021,12,0,38,39,1,0,0,4.8802176,4.8802176,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.35,47,57,5,2,3,0,0,13,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14235,14234,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.9097123,7.5794892,0,17,-4,130.44693,0,3,3,2021,11,0,37,20,1,2,0,7.4625878,7.4625878,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,37.99,47.35,7,2,3,0,0,1,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14236,-9,14235,14234,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-871.90173,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7968,14237,-9,14235,14234,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.2889,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,3,1,580.59998,361541.53,0,429803.41,20756.982,0,0,3322.0925 +6531,7969,14238,-9,14232,-9,1,0,37,0,3,0,1,1,-9,0,4,8.0278587,8.0835962,0,0,0,-1054.075,0,2,2,2021,11,0,38,40,1,2,1,9.4028702,9.4028702,0,0,0,0,0,0,0,0,1,1,0,7.8627186,0,48,57,-9,-9,7,2,3,0,0,1,8,4,1,420,-222311.17,0,0,0,15448.126,3727.3982,3162.2422 +6532,7970,14239,-9,14241,14240,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.9054,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,551.66669,167737.64,-36138.922,173541.5,96457.375,3973.1746,675.13947,2859.3577 +6532,7970,14240,14241,-9,-9,1,1,34,0,2,0,2,2,-9,0,4,8.2903776,8.2588043,0,4,1,72.581894,0,-9,-9,2021,6,0,55,62,1,0,0,7.2113137,7.2113137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,40.06,44.64,6.666666666666667,1,1,0,0,8,11,4,1,551.66669,167737.64,-36138.922,173541.5,96457.375,3973.1746,675.13947,2859.3577 +6532,7970,14241,14240,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.235981,8.1835527,0,4,-1,-24.583576,0,2,2,2021,14,3,50,50,1,3,0,6.4009404,6.4009404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.06,44.64,51.83,57.2,6.666666666666667,1,1,0,0,11,11,4,1,551.66669,167737.64,-36138.922,173541.5,96457.375,3973.1746,675.13947,2859.3577 +6533,7971,14242,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-906.92413,0,3,3,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.31,26.36,-9,-9,5,1,1,0,0,10,13,1,0,573,-243224.09,0,0,0,0,0,602.37158 +6534,7972,14243,-9,14245,14244,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.07574,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,7,4,1,1061.3334,1015672,966878,340133.84,159382.73,29453.482,0,3070.9531 +6534,7972,14244,14245,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,8.1458282,8.1066008,0,30,5,155.38455,0,-9,-9,2021,12,2,38,39,1,2,0,11.456403,11.456403,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.45,46.21,52.4,55.58,8.333333333333334,1,1,0,0,13,7,4,1,1061.3334,1015672,966878,340133.84,159382.73,29453.482,0,3070.9531 +6534,7972,14245,14244,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.0959377,8.2095566,0,30,-5,106.31101,-9,3,2,2021,10,2,40,0,1,2,0,9.8618698,9.8618698,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,55.58,46.45,46.21,8.333333333333334,1,1,0,0,13,7,4,1,1061.3334,1015672,966878,340133.84,159382.73,29453.482,0,3070.9531 +6535,7973,14246,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.7428827,8.8478613,0,0,0,-1060.5151,0,-9,-9,2021,11,0,50,50,1,0,0,15.162143,15.162143,.05,.05,0,0,0,0,0,0,0,0,0,3.4474504,0,49.04,55.86,-9,-9,8.333333333333334,2,3,0,0,7,2,5,1,140,200206.91,-96823.031,0,0,0,920.43475,1856.2992 +6536,7974,14247,-9,-9,-9,1,0,28,0,2,0,2,2,-9,0,2,7.4169135,7.7989616,6.2828188,0,0,-1051.0538,0,2,2,2021,8,0,30,30,1,0,0,5.6322284,5.6322284,.05,.05,0,0,0,0,0,0,1,1,0,5.9947901,0,54.7,34.63,-9,-9,8.333333333333334,1,1,0,0,9,2,2,1,770,25574.26,0,109017.59,90846.164,10098.153,0,2487.3777 +6536,7974,14248,-9,14247,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.5851,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,1,770,25574.26,0,109017.59,90846.164,10098.153,0,2487.3777 +6536,7974,14249,-9,14247,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.087,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,1,770,25574.26,0,109017.59,90846.164,10098.153,0,2487.3777 +6537,7975,14250,14251,-9,-9,1,0,49,0,0,0,2,2,-9,0,1,8.6092939,8.6273422,0,10,-2,-98.836159,0,2,2,2021,29,11,38,38,1,11,0,16.605913,16.605913,0,0,0,0,0,0,0,0,0,0,0,5.2439919,0,24.95,44.36,48.69,41.49,6.666666666666667,1,1,0,0,11,13,5,1,1117.5,934259.38,990144.13,0,0,0,-978.51624,4731.7046 +6537,7975,14251,14250,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.96561,8.9334478,7.8377843,10,2,32.451786,0,2,2,2021,11,0,38,38,1,0,0,7.6636147,7.6636147,.05,.05,0,0,0,0,0,0,0,0,0,4.7786026,8.1835585,48.69,41.49,24.95,44.36,6.666666666666667,1,1,0,0,10,13,5,1,1117.5,934259.38,990144.13,0,0,0,-978.51624,4731.7046 +6537,7976,14252,-9,14250,14251,1,0,23,0,0,0,2,2,-9,0,3,7.9602599,7.9218779,0,0,0,-941.36896,0,2,2,2021,7,0,42,40,1,0,1,8.1967096,8.1967096,.05,.05,0,0,0,0,0,0,0,0,0,2.6714733,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,2,13,4,1,2951,-11158.318,-20826.768,0,0,0,0,1497.5027 +6537,7977,14253,-9,14250,14251,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.6014,0,2,2,2021,27,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,26.37,55.33,-9,-9,1.666666666666667,1,1,0,1,2,13,1,1,957,66946.672,0,0,0,0,0,0 +6538,7978,14254,14255,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.868515,7.9548674,27,-4,-47.302731,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,17.217091,0,0,1,1,0,0,7.4562488,46.6,41.33,53.82,45.47,8.333333333333334,1,1,0,0,7,6,3,1,1145,950220.38,585376.5,135087.48,0,0,0,2526.6265 +6538,7978,14255,14254,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9137678,6.2975659,27,4,2.5361714,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,2.1487288,0,17.824152,0,1,1,0,5.983428,6.078238,53.82,45.47,46.6,41.33,8.333333333333334,1,1,0,0,0,6,3,1,1145,950220.38,585376.5,135087.48,0,0,0,2526.6265 +6539,7979,14256,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,0,0,-883.97711,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.39,46.45,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,195,120266.6,0,0,0,0,0,1268.5135 +6540,7980,14257,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5689392,8.5575161,0,0,0,-1037.6809,0,3,3,2021,18,6,37,38,1,6,0,15.929181,15.929181,.05,.05,0,0,0,0,0,0,0,0,0,.24235338,0,40.58,60.95,-9,-9,3.333333333333333,1,1,0,0,10,2,5,1,569,159237.41,5554.9443,96472.672,58887.563,0,3063.76,1984.051 +6541,7981,14258,14259,-9,-9,1,1,29,0,0,0,3,3,-9,0,4,8.255455,8.242341,0,2,3,-9.8857632,0,-9,-9,2021,12,0,37,37,1,0,0,11.017725,11.017725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.36,59.54,55.39,54.22,5,1,1,0,0,11,13,5,1,298.5,366054.19,350212.38,139759.19,104731.48,6408.7749,2153.7256,3823.9023 +6541,7981,14259,14258,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.3333216,8.6252661,0,2,-3,42.492729,0,2,2,2021,12,0,42,42,1,0,0,11.762101,11.762101,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.39,54.22,47.36,59.54,5,1,1,0,0,12,13,5,1,298.5,366054.19,350212.38,139759.19,104731.48,6408.7749,2153.7256,3823.9023 +6542,7982,14260,14261,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,9.7646618,9.7135715,0,9,0,100.71555,0,-9,-9,2021,8,0,55,46,1,0,0,33.242699,33.242699,.05,.05,0,0,0,0,0,0,0,0,0,6.1433177,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,6,8,5,1,2192.5,2196722.5,109736.91,1615949.1,236682.47,0,0,13236.53 +6542,7982,14261,14260,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,9.5263987,9.2706814,0,25,0,-33.687218,0,2,1,2021,10,2,43,46,1,2,0,31.972347,31.972347,.05,.05,0,0,0,0,0,0,0,0,0,1.1723732,0,51.83,57.2,51.83,57.2,8.333333333333334,2,3,0,0,10,8,5,1,2192.5,2196722.5,109736.91,1615949.1,236682.47,0,0,13236.53 +6543,7983,14262,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,8.3303661,8.0935383,0,0,-858.96503,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5107527,8.0935812,56.34,40.63,-9,-9,10,1,1,0,0,0,7,4,1,581,43205.465,-33929.727,0,0,8662.1582,0,2082.7351 +6543,7984,14263,-9,14262,-9,1,0,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-972.3606,0,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.10859905,0,64.07000000000001,47.52,-9,-9,6.666666666666667,1,1,1,0,1,7,1,1,1487,-135276.31,0,0,0,0,-158.9243,96.156662 +6544,7985,14264,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.8007135,7.702466,0,0,0,-987.83075,0,3,3,2021,14,3,35,40,1,3,0,7.9619021,7.9619021,0,0,0,0,0,0,0,7,1,1,0,0,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,557,151656.14,0,163109.41,23445.936,709.45032,1156.2887,1959.3624 +6545,7986,14265,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.7642775,7.4391222,0,0,-1025.9557,0,2,2,2021,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0430679,7.2602897,25.31,44.08,-9,-9,3.333333333333333,1,1,0,1,8,1,3,1,1110,758696.56,119035.32,104567.41,0,0,0,1054.8641 +6545,7987,14266,-9,14265,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2792635,8.3308764,0,0,0,-927.46692,0,1,1,2021,11,0,38,37,1,2,0,11.23495,11.23495,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,1,4,1,44,112277,0,0,0,0,0,2015.9645 +6546,7988,14267,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.1537414,7.3392491,0,0,-954.34332,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3314109,7.4512949,52.23,55.6,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,520,-74678.375,0,0,0,0,0,2586.4949 +6547,7989,14268,14269,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,7.8396492,7.8976445,0,7,4,54.79969,0,-9,-9,2021,12,0,44,20,1,0,0,8.8088503,8.8088503,.05,.05,0,0,0,0,0,2,1,1,0,0,0,38.65,34.09,22.06,65.69,6.666666666666667,1,1,0,0,7,2,4,1,426,224575.19,1365.667,116230.47,13735.135,0,0,1899.8646 +6547,7989,14269,14268,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.5565019,7.9105587,0,7,-4,60.459221,0,3,3,2021,22,8,39,39,1,8,0,8.043499,8.043499,0,0,0,0,0,0,0,0,1,1,0,0,0,22.06,65.69,38.65,34.09,1.666666666666667,1,1,0,0,9,2,4,1,426,224575.19,1365.667,116230.47,13735.135,0,0,1899.8646 +6548,7990,14270,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,7.6293354,7.5008245,5.2117801,0,0,-955.61395,0,3,-9,2021,16,4,21,23,1,4,0,12.608965,12.608965,.05,.05,0,0,0,0,0,0,1,1,0,5.0037804,5.2074161,47.8,28.27,-9,-9,5,1,1,0,0,11,10,3,1,2407,332795.38,1989.6047,0,0,0,0,2179.301 +6549,7991,14271,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,7.7993865,7.8205848,0,0,0,-1017.3107,0,1,1,2021,11,1,35,35,1,1,0,8.8199968,8.8199968,0,0,0,0,0,0,0,0,0,0,0,6.6713324,0,47.69,50.26,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,888,90319.531,0,0,0,0,0,1927.825 +6550,7992,14272,14273,-9,-9,1,0,51,0,0,0,1,1,-9,1,1,0,5.4759188,5.6418905,27,0,105.11737,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84853458,5.188242,28.9,27.59,59.29,49.68,3.333333333333333,1,1,0,0,0,9,5,1,523,3621957,1916944,899093.44,0,0,0,4547.7754 +6550,7992,14273,14272,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.4998274,9.4663763,0,27,0,33.90731,0,2,3,2021,5,0,50,43,1,0,0,34.059521,34.059521,.05,.05,0,0,0,0,0,76,1,1,0,1.8071361,0,59.29,49.68,28.9,27.59,8.333333333333334,1,1,0,0,9,9,5,1,523,3621957,1916944,899093.44,0,0,0,4547.7754 +6551,7993,14274,14275,-9,-9,1,1,61,0,1,0,2,2,-9,0,3,8.3405943,8.7715578,5.5269618,11,17,120.27103,-9,3,2,2021,14,2,40,0,1,2,0,16.606361,16.606361,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7352891,51.41,56.15,43.9,57.01,6.666666666666667,1,1,0,0,12,12,4,0,2179,984004.88,837123.88,327798.63,0,0,-183.46085,3604.6121 +6551,7993,14275,14274,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,7.2018037,7.9927187,0,11,-17,11.285943,0,2,2,2021,14,4,25,25,1,4,0,8.0871372,8.0871372,0,0,0,0,0,0,0,0,1,1,0,0,0,43.9,57.01,51.41,56.15,8.333333333333334,1,1,0,0,12,12,4,0,2179,984004.88,837123.88,327798.63,0,0,-183.46085,3604.6121 +6552,7994,14276,14277,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.3483319,7.4352446,10,4,-59.536808,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5476804,7.1729956,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,1,275.5,1345082.4,576357.81,443697.59,0,0,0,1456.8828 +6552,7994,14277,14276,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.5926638,7.0240827,10,-4,83.121506,0,3,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.174345,6.6816716,57.16,56.15,60.02,56.42,10,1,1,0,0,9,9,3,1,275.5,1345082.4,576357.81,443697.59,0,0,0,1456.8828 +6553,7995,14278,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.4962683,8.6314592,0,0,0,-917.81195,0,2,3,2021,18,7,44,45,1,7,0,16.027929,16.027929,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.53,57.52,-9,-9,6.666666666666667,3,4,0,1,14,9,5,1,344,936914.94,68371.188,462306.22,0,0,0,1836.3153 +6554,7996,14279,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.252337,6.1986804,0,0,-1013.5984,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5826182,46.41,24.4,-9,-9,5,1,1,0,0,0,4,2,1,2845,239673.03,33667.262,153062.84,0,0,0,1752.3446 +6555,7997,14280,14281,-9,-9,1,0,33,2,2,0,2,2,-9,0,3,0,0,0,4,0,52.25771,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.87,43.99,53.21,36.79,6.666666666666667,1,1,0,0,2,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6555,7997,14281,14280,-9,-9,1,1,33,2,2,0,2,2,-9,0,2,8.1152229,8.2194929,0,4,0,-79.019257,0,2,2,2021,11,0,37,40,1,0,0,10.213075,10.213075,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53.21,36.79,50.87,43.99,5,1,1,0,0,5,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6555,7997,14282,-9,14280,14281,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-987.05219,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6555,7997,14283,-9,14280,14281,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-887.33862,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,555,298468.28,88079.289,131410.03,39638.457,920.89661,0,2084.4995 +6556,7998,14284,14287,-9,-9,1,1,41,1,4,0,3,3,-9,1,4,0,0,0,17,1,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,37.02,47.89,7,2,3,0,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14285,-9,14287,14284,1,1,14,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1011.68,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14286,-9,14287,14284,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-939.77844,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14287,14284,-9,-9,1,0,40,1,4,0,2,2,-9,1,3,0,0,0,17,-1,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,37.02,47.89,51,56,6.666666666666667,2,3,0,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14288,-9,14287,14284,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-910.37952,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7998,14289,-9,14287,14284,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-910.16632,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,1,1,864.16669,-42426.18,0,0,0,0,0,3548.6453 +6556,7999,14290,-9,14287,14284,1,0,18,1,4,1,2,0,0,0,4,0,0,0,0,0,-970.5127,-9,2,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,6,2,1,260,-14468.945,0,0,0,0,-488.21805,0 +6557,8000,14291,14292,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3562946,8.3989582,0,23,-7,-34.917042,0,3,2,2021,13,2,45,45,1,2,0,14.35308,14.35308,0,0,0,0,0,0,0,7,0,0,0,2.0621612,0,45.35,50.81,50.03,52.62,3.333333333333333,1,1,0,0,12,4,5,1,472.5,1095805.5,882212.19,149121.78,112677.45,1162.2441,0,4147.9839 +6557,8000,14292,14291,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.5536108,8.2686968,0,33,7,150.99335,0,2,2,2021,9,0,50,50,1,0,0,10.744425,10.744425,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,45.35,50.81,6.666666666666667,1,1,0,0,12,4,5,1,472.5,1095805.5,882212.19,149121.78,112677.45,1162.2441,0,4147.9839 +6557,8001,14293,-9,14291,14292,1,1,27,0,0,0,1,1,-9,0,3,8.0949764,7.9293413,0,0,0,-907.5943,0,2,2,2021,10,0,38,41,1,0,1,10.157795,10.157795,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,134,-62871.613,0,0,0,0,0,1775.1661 +6558,8002,14294,14295,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.0335236,8.6403351,6.9202557,22,1,-9.5498648,0,-9,-9,2021,9,0,45,45,1,0,0,8.3893108,8.3893108,0,0,0,0,0,0,0,0,0,0,0,7.5629315,7.2586679,50.08,44.8,64.37,53.06,6.666666666666667,1,1,0,0,11,4,4,1,1119.5,2061928,1834038.6,129035.13,0,0,0,2480.8484 +6558,8002,14295,14294,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,6.8172493,6.9638934,0,22,-1,-133.11308,0,3,3,2021,6,0,16,16,1,0,0,9.3347673,9.3347673,0,0,0,0,0,0,0,0,0,0,0,0,0,64.37,53.06,50.08,44.8,10,1,1,0,0,10,4,4,1,1119.5,2061928,1834038.6,129035.13,0,0,0,2480.8484 +6559,8003,14296,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.9961591,8.1875572,0,0,0,-983.86688,-9,2,2,2021,24,12,50,0,1,12,0,7.1116729,7.1116729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.91,51.64,-9,-9,3.333333333333333,1,1,0,1,8,1,4,0,245,145142.17,88542.664,203514.86,98596.625,0,3091.1357,828.37305 +6559,8004,14297,-9,14296,-9,1,0,23,0,0,0,2,2,-9,0,3,7.0706954,7.3523598,0,0,0,-892.08032,-9,2,3,2021,18,6,35,0,1,6,1,3.977668,3.977668,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.8,50.31,-9,-9,3.333333333333333,1,1,0,0,4,1,3,0,3223,-112833.62,4472.8071,0,0,5140.9116,0,171.2713 +6560,8005,14298,14299,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4442568,7.8573976,0,32,2,82.343338,0,2,2,2021,11,0,26,24,1,0,0,10.088331,10.088331,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.67,53.13,62.39,56.71,8.333333333333334,1,1,0,0,6,5,5,1,890,768629.25,566363.88,211440.97,0,6140.1895,0,3761.3306 +6560,8005,14299,14298,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.5074968,8.7715607,0,33,-2,135.13884,0,2,2,2021,7,0,43,43,1,0,0,27.449106,27.449106,.05,.05,0,0,0,0,0,0,0,0,0,6.0265183,0,62.39,56.71,45.67,53.13,8.333333333333334,1,1,0,0,9,5,5,1,890,768629.25,566363.88,211440.97,0,6140.1895,0,3761.3306 +6561,8006,14300,-9,-9,-9,1,0,49,1,1,0,2,2,-9,0,2,8.5985851,8.4740553,0,0,0,-1028.9161,0,2,2,2021,21,8,50,50,1,8,0,12.302266,12.302266,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.65,15.14,-9,-9,8.333333333333334,1,1,0,0,13,11,4,0,716,98331.555,19778.059,0,0,0,672.01831,1908.3374 +6561,8007,14301,-9,14302,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-882.44977,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,0,918.5,151821.44,64.721191,0,0,0,0,1798.473 +6561,8007,14302,-9,14300,-9,1,0,23,1,1,0,2,2,-9,0,3,7.6646104,7.8322115,0,0,0,-976.33228,-9,2,-9,2021,16,6,48,0,1,6,1,7.5301318,7.5301318,.05,.05,0,0,0,0,0,0,1,0,1,0,0,25.37,56.07,-9,-9,3.333333333333333,1,1,0,1,7,11,3,0,918.5,151821.44,64.721191,0,0,0,0,1798.473 +6562,8008,14303,14304,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.3098297,9.2876682,0,12,7,161.06396,0,2,2,2021,6,0,52,53,1,0,0,24.586794,24.586794,.05,.05,0,0,0,0,0,0,0,0,0,9.3274336,0,62.49,55.09,54.36,45.6,8.333333333333334,1,1,0,0,13,11,5,1,873,165963.28,93147.281,308172.31,125552.45,0,5567.6406,11403.392 +6562,8008,14304,14303,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.7730603,8.1093416,0,12,-7,-55.941494,0,3,3,2021,7,0,38,40,1,0,0,8.0597181,8.0597181,0,0,0,0,0,0,0,0,0,0,0,0,0,54.36,45.6,62.49,55.09,10,1,1,0,0,12,11,5,1,873,165963.28,93147.281,308172.31,125552.45,0,5567.6406,11403.392 +6562,8009,14305,-9,14304,-9,1,1,28,0,0,0,1,1,-9,0,5,8.2034025,8.3283148,0,0,0,-964.1098,0,2,-9,2021,11,0,40,40,1,0,1,13.402207,13.402207,.05,.05,0,0,0,0,0,0,0,0,0,.8927784,0,62.39,56.71,-9,-9,10,1,1,0,0,6,11,4,1,718,174944.38,62709.637,242795.02,144629.55,15780.415,0,2238.8838 +6563,8010,14306,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,5.8180261,5.9483504,0,0,-883.2066,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4091792,5.8916354,57.16,56.15,-9,-9,10,1,1,0,0,7,9,2,1,302,438635.97,22987.707,177182.8,0,0,943.25177,792.24072 +6564,8011,14307,14308,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.250473,7.4574361,0,9,19,172.98128,0,2,2,2021,14,5,40,40,1,5,0,2.9773607,2.9773607,0,0,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,46.08,57.2,6.666666666666667,1,1,0,0,8,1,4,1,151,130289.8,156385.94,163348.09,100174.11,0,3340.939,2444.8877 +6564,8011,14308,14307,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.8186722,8.8406992,0,9,-19,-69.88549,0,2,2,2021,8,1,44,37,1,1,0,14.465914,14.465914,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,52.99,51.28,6.666666666666667,1,1,0,0,11,1,4,1,151,130289.8,156385.94,163348.09,100174.11,0,3340.939,2444.8877 +6565,8012,14309,14310,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,0,0,23,7,0,-9,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.43,52.23,28.31,32.89,8.333333333333334,1,1,0,0,7,5,1,1,641,-40241.934,0,0,0,5927.6973,-29.140503,661.49603 +6565,8012,14310,14309,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,24,-7,0,-9,3,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.31,32.89,45.43,52.23,0,1,1,0,0,0,5,1,1,641,-40241.934,0,0,0,5927.6973,-29.140503,661.49603 +6566,8013,14311,14312,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.7286544,7.6712308,0,9,-4,51.904373,0,2,3,2021,12,1,7,39,1,1,0,45.989933,45.989933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.13,49.27,46.54,60.99,8.333333333333334,1,1,0,0,10,5,4,1,603.5,138638.97,-14405.896,100598.13,31600.537,0,-347.91034,2599.5181 +6566,8013,14312,14311,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,7.763885,7.7724776,0,9,4,198.08339,0,2,2,2021,5,0,9,9,1,0,0,24.325066,24.325066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.54,60.99,60.13,49.27,6.666666666666667,1,1,0,0,10,5,4,1,603.5,138638.97,-14405.896,100598.13,31600.537,0,-347.91034,2599.5181 +6566,8014,14313,-9,14311,14312,1,1,23,0,0,0,2,2,-9,0,5,7.5964489,7.5737505,0,0,0,-908.55957,0,2,3,2021,6,0,8,32,1,0,1,33.09478,33.09478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,5,5,3,1,812,-157550.58,-46120.977,0,0,0,0,911.95416 +6567,8015,14314,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.6196518,8.7480764,0,0,0,-1011.5956,0,1,1,2021,14,3,40,40,1,3,0,26.886135,26.886135,.05,.05,0,0,0,0,0,0,1,1,0,4.1541362,0,40.75,58.26,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,257,436675,-133406.75,207320.36,152546.55,0,3363.2068,2534.5962 +6568,8016,14315,-9,14318,14316,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.864,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14316,14318,-9,-9,1,1,33,0,3,0,3,3,-9,0,4,9.5421391,9.8613138,0,15,2,68.395294,0,3,3,2021,10,0,20,37,1,1,0,92.102669,92.102669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,49.46,56.91,7,2,3,0,0,10,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14317,-9,14318,14316,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.9036,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14318,14316,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,6.9722552,7.3601675,0,15,-2,63.807117,0,3,2,2021,8,0,11,0,1,0,0,13.02161,13.02161,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,49,57,8.333333333333334,2,3,0,0,4,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6568,8016,14319,-9,14318,14316,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1049.0056,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,5,1,759.79999,166804.63,93866.648,205467.77,171346.73,7627.584,3732.3645,13398.321 +6569,8017,14320,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,3.4942346,2.8721814,0,0,-1026.0342,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.4106441,3.2916765,46.56,42.23,-9,-9,5,1,1,0,0,0,7,2,1,1608,121604.64,22949.348,0,0,0,0,1213.3682 +6570,8018,14321,-9,14323,14324,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-882.20715,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6570,8018,14322,-9,14323,14324,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.13892,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6570,8018,14323,14324,-9,-9,1,0,42,0,2,0,2,2,-9,1,2,6.3011556,6.2504044,0,19,3,46.591747,0,2,2,2021,12,1,30,0,1,1,0,2.6328356,2.6328356,0,0,0,0,0,0,0,27,1,1,0,0,0,53.31,20.39,57.33,53.46,8.333333333333334,1,1,0,0,8,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6570,8018,14324,14323,-9,-9,1,1,39,0,2,0,3,3,-9,1,3,7.8106966,7.9456816,6.4021187,19,-3,50.876099,0,-9,-9,2021,9,0,25,32,1,0,0,8.5391903,8.5391903,.05,.05,0,0,0,0,0,0,1,1,0,6.6950474,0,57.33,53.46,53.31,20.39,8.333333333333334,1,1,0,0,9,2,3,0,1203.5,108789.53,57080.648,165532.27,91407.219,6529.0596,0,3479.2366 +6571,8019,14325,-9,14328,14326,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.9574,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6571,8019,14326,14328,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,8.4549828,8.2767115,0,12,3,-51.409321,0,-9,-9,2021,9,0,58,58,1,0,0,10.128772,10.128772,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.81,43.66,24.82,54.18,6.666666666666667,1,1,0,0,12,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6571,8019,14327,-9,14328,14326,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.9718,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6571,8019,14328,14326,-9,-9,1,0,34,1,2,0,2,2,-9,0,2,8.7712612,8.778327,0,12,-3,-38.54298,-9,2,2,2021,16,6,74,0,1,6,0,12.914015,12.914015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.82,54.18,43.81,43.66,8.333333333333334,1,1,0,0,12,12,5,1,729.5,623380.94,421647.44,261491.27,145593.33,0,4034.9529,4508.6792 +6572,8020,14329,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1016.6987,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,37.69,58.7,-9,-9,0,1,1,1,1,0,8,2,0,626,-22920.016,0,0,0,0,0,394.54874 +6572,8021,14330,-9,14329,-9,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-886.82819,0,3,-9,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,63.09,45.22,-9,-9,6.666666666666667,4,2,1,1,1,8,1,0,729,-50032.707,0,0,0,0,0,-476.23581 +6573,8022,14331,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,2,6.9761486,7.5652966,6.2867475,0,0,-1006.4813,-9,3,3,2021,9,2,16,0,1,2,0,8.1205492,8.1205492,0,0,.05,0,0,0,0,0,1,1,0,6.4810348,0,54.61,51.04,-9,-9,10,1,1,0,0,13,4,3,1,491,221325.19,21473.693,217421.31,0,0,0,2601.2827 +6574,8023,14332,14334,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.6961308,8.482522,0,17,-1,-57.10479,0,-9,-9,2021,10,0,45,45,1,0,0,19.711283,19.711283,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.78,38.47,58.15,52.91,8.333333333333334,1,1,0,0,12,4,5,1,1134.6666,628632.19,252055.61,675126.88,150818.16,0,6240.1484,4748.1953 +6574,8023,14333,-9,14334,14332,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.41406,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,1134.6666,628632.19,252055.61,675126.88,150818.16,0,6240.1484,4748.1953 +6574,8023,14334,14332,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.8125906,8.6840849,0,23,1,15.813113,0,2,2,2021,3,0,37,38,1,0,0,17.466784,17.466784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,53.78,38.47,8.333333333333334,1,1,0,0,12,4,5,1,1134.6666,628632.19,252055.61,675126.88,150818.16,0,6240.1484,4748.1953 +6575,8024,14335,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4345369,8.3755198,0,0,0,-992.44696,0,3,2,2021,9,0,36,65,1,0,0,14.928823,14.928823,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,49,-9,-9,8.333333333333334,3,4,0,0,9,9,5,0,698,466904.66,259190.02,148610.03,85256.813,0,0,1812.0649 +6576,8025,14336,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3784771,8.1083136,0,0,0,-993.7403,0,-9,-9,2021,13,4,35,45,1,4,0,13.251803,13.251803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.47,55.65,-9,-9,5,1,1,0,0,12,8,4,1,74,403639.41,66022.281,381778,56225.082,0,0,1059.7195 +6577,8026,14337,14338,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.2339878,5.6633015,49,6,-10.972285,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.6419415,6.2703052,48.01,46.74,30.6,18.53,8.333333333333334,1,1,0,0,1,5,2,1,996,121858.22,0,0,0,0,0,1564.6826 +6577,8026,14338,14337,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,49,-6,73.105507,0,2,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,0,127.7736,0,0,1,1,0,0,0,30.6,18.53,48.01,46.74,0,1,1,0,0,0,5,2,1,996,121858.22,0,0,0,0,0,1564.6826 +6578,8027,14339,-9,14343,14341,1,1,14,1,3,1,3,0,-9,0,3,0,0,0,0,0,-889.39374,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14340,-9,14343,14341,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-900.56433,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14341,14343,-9,-9,1,1,38,1,3,0,3,3,-9,1,1,0,0,0,17,2,0,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.47,19.01,10.11,37.75,3.333333333333333,1,1,0,0,7,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14342,-9,14343,14341,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-967.2514,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8027,14343,14341,-9,-9,1,0,36,1,3,0,2,2,-9,1,1,0,0,0,8,-2,0,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,10.11,37.75,41.47,19.01,0,1,1,0,0,0,9,1,0,1011.4,-53174.738,32007.781,0,0,0,0,2413.3308 +6578,8028,14344,-9,14343,14341,1,1,19,1,3,0,2,2,-9,0,3,0,0,0,0,0,-957.45697,1,2,3,2021,10,0,0,10,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.71,56.91,-9,-9,0,1,1,0,1,3,9,1,0,3467,0,0,0,0,0,0,0 +6579,8029,14345,-9,14349,14346,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-908.21118,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14346,14349,-9,-9,1,1,39,1,3,0,2,2,-9,0,3,7.9087915,7.9803805,0,6,3,-25.794689,0,3,3,2021,10,1,44,48,1,1,0,5.8335528,5.8335528,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.12,37.78,49.69,44.96,6.666666666666667,2,3,0,0,8,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14347,-9,14349,14346,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.5039,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14348,-9,14349,14346,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.85205,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6579,8029,14349,14346,-9,-9,1,0,36,1,3,0,2,2,-9,0,3,0,0,0,10,-3,13.654584,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.69,44.96,41.12,37.78,5,2,3,0,1,0,5,2,0,1036.2,68662.898,11342.961,83030.172,0,0,0,1238.2848 +6580,8030,14350,14351,-9,-9,1,1,62,0,0,0,3,3,-9,0,5,7.5768414,7.7991729,0,44,2,-3.3602595,0,3,3,2021,7,0,37,37,1,0,0,5.9110961,5.9110961,0,0,0,0,0,0,0,89,1,1,0,0,0,58.64,50.19,26.73,30.23,8.333333333333334,1,1,0,0,10,6,3,1,542.5,794511.81,383913.69,84263.094,0,5839.9121,0,1260.1799 +6580,8030,14351,14350,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,44,-2,103.4385,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.73,30.23,58.64,50.19,0,1,1,0,0,0,6,3,1,542.5,794511.81,383913.69,84263.094,0,5839.9121,0,1260.1799 +6581,8031,14352,-9,14354,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.93671,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,813.33331,-56049.523,0,0,0,-521.46124,0,1808.8757 +6581,8031,14353,-9,14354,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.5642,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,813.33331,-56049.523,0,0,0,-521.46124,0,1808.8757 +6581,8031,14354,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,2,7.1461344,7.181633,0,0,0,-1022.3499,0,-9,-9,2021,26,12,24,24,1,12,0,7.9106946,7.9106946,0,0,0,0,0,0,0,0,1,1,0,0,0,25.08,40.26,-9,-9,5,1,1,0,1,2,2,2,0,813.33331,-56049.523,0,0,0,-521.46124,0,1808.8757 +6582,8032,14355,14356,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.4824009,4.4933686,34,0,139.63855,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9060543,4.4167657,57.33,53.46,55.53,51.55,10,1,1,0,0,0,12,4,1,1161.5,1111074.4,936001.5,216741.41,0,8367.0918,0,3191.4697 +6582,8032,14356,14355,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.3055143,8.4591169,34,0,36.583981,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5099344,8.7115822,55.53,51.55,57.33,53.46,8.333333333333334,1,1,0,0,6,12,4,1,1161.5,1111074.4,936001.5,216741.41,0,8367.0918,0,3191.4697 +6583,8033,14357,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.1232805,8.3183079,0,0,0,-1098.1033,0,3,2,2021,12,0,37,37,1,0,0,10.77141,10.77141,0,0,0,0,0,0,0,0,1,1,0,3.819294,0,40.65,57.36,-9,-9,5,1,1,0,0,14,2,4,1,299,-109843.79,-10472.34,119626.76,75102.141,0,2329.2449,1557.359 +6584,8034,14358,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2619867,8.03967,0,0,0,-1027.4624,0,-9,-9,2021,8,1,30,46,1,1,0,14.110507,14.110507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,9,13,4,0,1209,142524.84,-175302.23,0,0,2626.1592,0,1330.9434 +6585,8035,14359,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1037.0671,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.45,24.42,-9,-9,5,3,4,0,1,0,8,1,0,1381,-16731.016,0,0,0,0,0,2899.3943 +6586,8036,14360,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.4115305,8.4364758,0,0,0,-1073.4607,0,2,2,2021,14,2,45,46,1,2,0,11.45243,11.45243,.05,.05,0,0,0,0,0,27,1,1,0,0,0,25.85,58.94,-9,-9,5,1,1,0,1,8,11,4,0,470,18119.613,149175.23,73871.281,73329.133,13103.731,1411.4186,2249.5105 +6586,8037,14361,-9,14360,-9,1,1,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.2319,0,1,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,1,11,1,0,4833,-15357.911,0,0,0,0,0,0 +6587,8038,14362,14363,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,2.5022101,2.3419967,9,1,-214.58121,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,1,0,11.502234,0,0,1,1,0,0,2.1660695,38.93,29.89,53.31,29.54,3.333333333333333,1,1,0,0,0,11,2,0,908,241696.75,0,179209.5,0,0,0,2215.4297 +6587,8038,14363,14362,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,0,0,9,-1,-1.7464718,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.31,29.54,38.93,29.89,8.333333333333334,1,1,0,0,0,11,2,0,908,241696.75,0,179209.5,0,0,0,2215.4297 +6588,8039,14364,14366,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.4689522,8.5996113,0,17,-1,-11.623881,0,2,2,2021,20,8,60,30,1,8,0,11.54653,11.54653,0,0,0,0,0,0,0,0,0,0,0,0,0,25.44,65.40000000000001,41.3,60.77,3.333333333333333,1,1,0,0,9,8,5,1,957,2645004,1787626.3,1212732.6,260216.98,6251.3135,0,3261.7 +6588,8039,14365,-9,14364,14366,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.3396,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,5,1,957,2645004,1787626.3,1212732.6,260216.98,6251.3135,0,3261.7 +6588,8039,14366,14364,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.5095072,9.5611391,0,17,1,-10.277581,0,2,2,2021,11,0,42,43,1,0,0,31.855734,31.855734,.05,.05,0,0,0,0,0,0,0,0,0,8.7212095,0,41.3,60.77,25.44,65.40000000000001,6.666666666666667,1,1,0,0,8,8,5,1,957,2645004,1787626.3,1212732.6,260216.98,6251.3135,0,3261.7 +6589,8040,14367,14368,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2892895,8.2235518,0,3,6,-162.66248,0,-9,-9,2021,4,0,35,35,1,0,0,11.238551,11.238551,.05,.05,0,0,0,0,0,0,0,0,0,1.0163364,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,15,11,5,1,621.5,208622.5,228626.16,113248,66801.141,10382.777,0,3944.8701 +6589,8040,14368,14367,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.8161058,8.9617491,0,3,-6,-59.145042,0,-9,-9,2021,8,0,50,42,1,0,0,14.782824,14.782824,.05,.05,0,0,0,0,0,0,0,0,0,2.40166,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,13,11,5,1,621.5,208622.5,228626.16,113248,66801.141,10382.777,0,3944.8701 +6590,8041,14369,14370,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.5723572,9.2918158,0,32,0,36.169304,0,3,3,2021,10,0,38,40,1,0,0,36.183891,36.183891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,44.63,18.77,3.333333333333333,1,1,0,0,10,8,5,1,317.5,2048735.5,1728297.3,183818.91,0,0,0,3174.8833 +6590,8041,14370,14369,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,33,0,25.087992,0,3,3,2021,28,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.63,18.77,48.28,60.18,0,4,5,0,0,0,8,5,1,317.5,2048735.5,1728297.3,183818.91,0,0,0,3174.8833 +6590,8042,14371,-9,14370,14369,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-998.74054,0,2,1,2021,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.5,44.01,-9,-9,3.333333333333333,4,2,1,0,0,8,1,1,227,0,0,0,0,0,0,0 +6591,8043,14372,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.3226905,7.6431737,0,0,-1029.2952,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4955826,7.3636084,56.49,40.63,-9,-9,10,3,4,0,0,0,8,3,1,477,386746.03,163676.55,288720.91,0,0,0,870.21033 +6592,8044,14373,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.319334,8.2443886,0,0,0,-887.46454,0,3,2,2021,9,1,38,42,1,1,0,9.3972893,9.3972893,.05,.05,0,0,0,0,0,0,1,1,0,4.2215538,0,57.01,32.23,-9,-9,8.333333333333334,1,1,0,0,13,9,4,0,294,-249431.88,5005.0308,0,0,0,2047.8574,1640.9908 +6593,8045,14374,14376,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,9.4668064,9.8585577,0,8,-2,-204.14124,0,2,2,2021,12,3,50,40,1,3,0,33.979439,33.979439,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,40.73,61.29,8.333333333333334,1,1,0,0,9,9,5,0,2638.6667,1973476.8,1160421,1175374.8,330245.19,11348.14,0,8865.6484 +6593,8045,14375,-9,14376,14374,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-871.1485,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,0,9,5,0,2638.6667,1973476.8,1160421,1175374.8,330245.19,11348.14,0,8865.6484 +6593,8045,14376,14374,-9,-9,1,0,52,0,2,0,1,1,-9,0,5,8.2966576,8.5214434,0,22,2,-97.968468,0,1,2,2021,21,9,45,50,1,9,0,13.09306,13.09306,0,0,0,0,0,0,0,7,0,0,0,2.7818573,0,40.73,61.29,48.7,56.22,3.333333333333333,1,1,0,0,11,9,5,0,2638.6667,1973476.8,1160421,1175374.8,330245.19,11348.14,0,8865.6484 +6593,8046,14377,-9,14376,14374,1,0,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-858.25671,-9,1,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,0,758,-75666.891,0,0,0,128.54143,0,0 +6594,8047,14378,14379,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.7386708,5.4856963,7,2,.4822931,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1948442,5.5333638,60.12,54.8,57.33,53.46,10,1,1,0,0,0,11,2,0,1198.5,112807.24,10921.631,150272.53,0,0,0,1461.7319 +6594,8047,14379,14378,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.2190056,6.1200919,7,-2,7.2444239,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0162621,6.0870113,57.33,53.46,60.12,54.8,10,1,1,0,0,2,11,2,0,1198.5,112807.24,10921.631,150272.53,0,0,0,1461.7319 +6595,8048,14380,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.5002437,6.364172,0,0,-1011.8124,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,3.8560457,0,28.560532,2,1,1,0,0,6.6892309,42.95,29.14,-9,-9,6.666666666666667,1,1,0,1,0,5,2,0,1908,172015.45,118460.25,141435,0,0,0,2005.6851 +6596,8049,14381,14382,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,9.1566515,9.17381,23,2,64.661484,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.8717957,57.06,57.76,54.1,59.11,10,1,1,0,0,0,2,5,1,3199,2293915.5,1001459.6,381577.94,0,0,0,6593.8057 +6596,8049,14382,14381,-9,-9,1,0,73,0,0,0,1,1,-9,0,5,0,6.5468011,6.7984328,23,-2,36.755802,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3338966,6.4819894,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,0,2,5,1,3199,2293915.5,1001459.6,381577.94,0,0,0,6593.8057 +6597,8050,14383,14384,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,3.9909878,4.3535972,52,-1,27.230629,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.0190349,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,9,7,2,1,834.5,358954.75,-7702.3789,278913,0,0,0,1566.1234 +6597,8050,14384,14383,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.8662047,5.9058561,52,1,93.37735,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1945944,6.3119454,58.15,52.91,54.79,55.86,8.333333333333334,1,1,0,0,9,7,2,1,834.5,358954.75,-7702.3789,278913,0,0,0,1566.1234 +6598,8051,14385,14387,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,8.0643148,8.0690823,26,-5,114.2383,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.2880497,0,48.71,27.87,59.46,46.99,6.666666666666667,1,1,0,0,5,6,4,1,511.33334,808388.31,478430.38,449630.47,174356.86,3030.2175,0,2879.9639 +6598,8051,14386,-9,14385,14387,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1108.5756,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,511.33334,808388.31,478430.38,449630.47,174356.86,3030.2175,0,2879.9639 +6598,8051,14387,14385,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,7.9363718,8.1398764,0,26,5,-6.4110479,0,2,2,2021,8,0,40,35,1,0,0,9.4301071,9.4301071,.05,.05,.05,0,0,0,0,7,1,1,0,4.4292874,0,59.46,46.99,48.71,27.87,5,1,1,0,0,6,6,4,1,511.33334,808388.31,478430.38,449630.47,174356.86,3030.2175,0,2879.9639 +6599,8052,14388,14389,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.9921784,7.9861526,0,6,2,-147.61623,0,3,3,2021,18,6,58,58,1,6,0,5.9647732,5.9647732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.01,53.24,60.3,46.58,6.666666666666667,1,1,0,0,7,13,4,1,816,28407.51,-3506.7207,0,0,0,0,2754.334 +6599,8052,14389,14388,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.003891,8.1693602,0,6,-2,.49123895,0,3,2,2021,9,0,35,35,1,0,0,12.247551,12.247551,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,43.01,53.24,8.333333333333334,1,1,0,0,7,13,4,1,816,28407.51,-3506.7207,0,0,0,0,2754.334 +6599,8053,14390,-9,14389,14388,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-936.15875,-9,2,2,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.65,58.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,869,63322.363,0,0,0,0,0,789.72186 +6600,8054,14391,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.7425046,7.6667137,0,0,-987.94495,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0284309,58.46,35.09,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,1036,362775.84,185343.91,101047.57,0,0,0,2397.3733 +6600,8055,14392,-9,14391,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.5054173,7.4421425,0,0,-970.64343,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.5324154,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,183,380294.31,31304.568,101899.25,0,0,0,1389.9945 +6601,8056,14393,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.189743,6.2076278,0,0,-1031.4353,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5887241,6.2518191,55.9,52.64,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,183,208389.67,41816.543,59641.527,0,2097.0493,0,3868.156 +6602,8057,14394,14395,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,6.6169381,6.8687482,0,7,-4,73.289635,0,3,2,2021,11,0,12,8,1,0,0,10.640013,10.640013,0,0,0,0,0,0,0,0,1,1,0,7.3149257,0,44.26,59.43,58.74,52.92,6.666666666666667,1,1,0,0,8,9,2,1,1411,233902.64,23519.695,246002.02,29273.309,0,0,2139.2014 +6602,8057,14395,14394,-9,-9,1,1,46,0,1,0,3,3,-9,0,5,0,7.2825999,7.6622353,7,4,137.0061,0,3,3,2021,9,0,0,84,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.531477,58.74,52.92,44.26,59.43,10,1,1,1,0,8,9,2,1,1411,233902.64,23519.695,246002.02,29273.309,0,0,2139.2014 +6602,8057,14396,-9,14394,14395,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1023.4406,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,9,2,1,1411,233902.64,23519.695,246002.02,29273.309,0,0,2139.2014 +6602,8058,14397,-9,14394,14395,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-947.10504,-9,2,3,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,1,1,410,-78668.531,0,0,0,0,0,0 +6603,8059,14398,14399,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.3427329,7.9084244,0,31,-2,146.01588,0,2,2,2021,11,0,28,30,1,0,0,10.942848,10.942848,.05,.05,0,0,0,0,0,7,0,0,0,0,0,46.44,59.62,46.67,55.57,8.333333333333334,1,1,0,0,14,9,4,1,974,78267.438,139862.08,0,0,0,-11.028191,2558.2898 +6603,8059,14399,14398,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.0700092,8.2288113,0,31,2,54.146645,0,2,3,2021,12,3,37,37,1,3,0,11.800946,11.800946,.05,.05,0,0,0,0,0,2,0,0,0,1.5770406,0,46.67,55.57,46.44,59.62,3.333333333333333,1,1,0,0,14,9,4,1,974,78267.438,139862.08,0,0,0,-11.028191,2558.2898 +6603,8060,14400,-9,14398,14399,1,1,18,0,0,0,2,2,1,0,4,6.0982237,6.0497255,0,0,0,-1017.9908,-9,2,2,2021,16,6,8,0,1,6,1,6.7050853,6.7050853,0,0,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,1,9,2,1,167,66691.273,0,0,0,0,0,39.349335 +6604,8061,14401,-9,14402,14403,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.68463,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,422.66666,291754.44,4462.3179,151901.73,160345.64,9096.6162,0,3778.4175 +6604,8061,14402,14403,-9,-9,1,0,34,0,1,0,1,1,-9,0,4,8.7243567,8.5309105,0,7,0,-52.281925,0,2,2,2021,6,0,37,37,1,0,0,18.531006,18.531006,.05,.05,0,0,0,0,0,0,1,1,0,6.785264,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,8,13,5,1,422.66666,291754.44,4462.3179,151901.73,160345.64,9096.6162,0,3778.4175 +6604,8061,14403,14402,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,8.0936289,7.7269087,0,7,0,98.129242,0,-9,-9,2021,10,0,32,36,1,1,0,11.140181,11.140181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,13,5,1,422.66666,291754.44,4462.3179,151901.73,160345.64,9096.6162,0,3778.4175 +6605,8062,14404,14405,-9,-9,1,1,48,0,0,0,2,2,-9,0,1,8.6417408,8.5194416,0,30,0,99.113533,0,3,3,2021,36,12,64,80,1,12,0,11.079994,11.079994,.05,.05,0,0,0,0,0,0,0,0,0,0,0,5.19,56.28,43.65,58.28,0,1,1,0,1,12,7,5,1,476,954617.25,716020.56,220764.47,180173.59,10957.76,3706.5286,3439.3865 +6605,8062,14405,14404,-9,-9,1,0,48,0,0,0,3,3,-9,0,3,7.8992286,7.9731021,0,30,0,-10.560505,0,3,3,2021,23,11,25,25,1,11,0,11.820886,11.820886,0,0,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,5.19,56.28,3.333333333333333,1,1,0,1,12,7,5,1,476,954617.25,716020.56,220764.47,180173.59,10957.76,3706.5286,3439.3865 +6606,8063,14406,14407,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.4830909,7.6268325,44,0,103.78963,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.9423819,42.56,42.65,57.16,56.15,6.666666666666667,1,1,0,0,10,10,3,0,621,1019559.9,666033.5,335891.94,0,0,0,2394.7551 +6606,8063,14407,14406,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9284015,6.1028996,44,0,-20.402679,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2015109,57.16,56.15,42.56,42.65,8.333333333333334,1,1,0,0,0,10,3,0,621,1019559.9,666033.5,335891.94,0,0,0,2394.7551 +6607,8064,14408,14409,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,6.1786885,6.2146893,7,2,86.806084,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1254683,6.2869258,51.1,52.08,55.94,36.38,8.333333333333334,1,1,0,0,6,9,4,1,1574,1938409.6,1486404.8,314966.34,0,0,0,3453.2207 +6607,8064,14409,14408,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.4740181,8.0935059,7,-2,-.40386218,0,2,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6309509,8.2666912,55.94,36.38,51.1,52.08,8.333333333333334,1,1,0,0,8,9,4,1,1574,1938409.6,1486404.8,314966.34,0,0,0,3453.2207 +6608,8065,14410,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.1806,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.06,32.2,-9,-9,1.666666666666667,1,1,0,0,7,12,1,0,1635,-26022.014,0,0,0,1109.3735,0,832.53534 +6609,8066,14411,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,2,0,0,0,0,0,-694.95392,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.35,38.4,-9,-9,5,1,1,1,0,0,1,1,0,767,130319.66,0,0,0,0,739.9729,2073.4968 +6610,8067,14412,14413,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,7.4687104,7.1202035,0,8,1,63.400295,0,2,2,2021,17,5,24,20,1,5,0,7.7171059,7.7171059,.05,.05,0,0,0,0,0,27,0,0,0,0,0,25.83,50.93,43.65,58.28,3.333333333333333,1,1,0,1,11,1,4,1,396.5,290132.69,248011.19,0,0,519.60095,2167.6228,2006.6626 +6610,8067,14413,14412,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.0279436,7.9911199,0,8,-1,-111.78384,0,-9,-9,2021,12,0,45,45,1,0,0,7.1325054,7.1325054,.05,.05,0,0,0,0,0,2,0,0,0,.23578741,0,43.65,58.28,25.83,50.93,5,1,1,0,0,11,1,4,1,396.5,290132.69,248011.19,0,0,519.60095,2167.6228,2006.6626 +6611,8068,14414,14415,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,9.3422585,9.2189732,44,4,44.786213,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1218181,9.1781693,57.16,56.15,53.14,51.28,1.666666666666667,1,1,0,0,0,12,5,1,1439.5,1809033.3,1098346.5,444734.44,0,0,0,8894.9883 +6611,8068,14415,14414,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,8.5982761,8.349309,44,-4,67.341766,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8043718,8.4003067,53.14,51.28,57.16,56.15,10,1,1,0,0,0,12,5,1,1439.5,1809033.3,1098346.5,444734.44,0,0,0,8894.9883 +6612,8069,14416,14418,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.3875074,6.745769,0,4,5,-80.06028,0,3,3,2021,6,0,14,14,1,0,0,5.8813262,5.8813262,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,42.03,53.28,8.333333333333334,1,1,0,0,14,12,3,0,383.33334,107221.77,76182.656,101500.95,61570.605,0,0,2424.8215 +6612,8069,14417,-9,14416,14418,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.11981,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,0,383.33334,107221.77,76182.656,101500.95,61570.605,0,0,2424.8215 +6612,8069,14418,14416,-9,-9,1,1,35,0,2,0,2,2,-9,1,4,8.3508158,8.4632616,0,4,-5,3.2439079,-9,-9,-9,2021,12,0,53,0,1,0,0,10.441933,10.441933,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.03,53.28,60.12,54.8,5,1,1,0,0,14,12,3,0,383.33334,107221.77,76182.656,101500.95,61570.605,0,0,2424.8215 +6613,8070,14419,14420,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,6,-7,71.935188,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,3.5762801,0,0,1,1,0,3.0885859,0,47.2,34.16,58.89,51.28,8.333333333333334,1,1,0,0,0,1,3,1,1004.5,676553.81,359404.38,297448.63,0,0,0,1890.4475 +6613,8070,14420,14419,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,8.2293901,7.8812218,6,7,-84.855865,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1872969,58.89,51.28,47.2,34.16,8.333333333333334,1,1,0,0,0,1,3,1,1004.5,676553.81,359404.38,297448.63,0,0,0,1890.4475 +6614,8071,14421,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1094.8296,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.16,62.84,-9,-9,8.333333333333334,1,1,0,0,1,10,1,0,1334,-19566.557,0,0,0,31359.256,0,-578.72272 +6615,8072,14422,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.4428792,7.4617529,0,0,0,-890.71301,0,3,3,2021,24,12,40,30,1,12,0,5.3609567,5.3609567,.05,.05,0,0,0,0,0,0,1,0,1,0,0,35.32,54.45,-9,-9,3.333333333333333,1,1,0,1,9,6,3,0,2564,-6258.3687,86079.203,0,0,0,-185.23767,1016.4584 +6616,8073,14423,-9,14424,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.77136,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,1,0,484.5,-85666.172,0,0,0,853.26788,1839.788,938.16064 +6616,8073,14424,-9,-9,-9,1,0,42,1,1,0,2,2,-9,0,2,0,0,0,0,0,-918.03058,0,3,3,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.23,21.92,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,484.5,-85666.172,0,0,0,853.26788,1839.788,938.16064 +6617,8074,14425,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,6.8879337,7.1564937,0,0,-906.12732,0,1,1,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,7.5965219,0,68.04232,0,1,1,0,6.8869991,0,49,47,-9,-9,7,1,1,0,0,4,7,2,0,619,723195.38,193041.81,539830.25,0,0,0,1286.6732 +6618,8075,14426,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,6.2915902,6.3717079,0,0,-958.78754,0,3,-9,2021,15,3,0,30,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4983087,6.4213157,47,20.34,-9,-9,6.666666666666667,1,1,0,0,7,5,2,1,1334,32590.984,272776.81,0,0,0,0,1173.8656 +6619,8076,14427,14428,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.7596464,8.8230648,0,11,-5,-53.291786,0,-9,-9,2021,12,2,50,50,1,2,0,14.875593,14.875593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,47.61,53.7,8.333333333333334,1,1,0,0,13,11,4,1,565.5,298875,188396.78,220943.97,16811.633,0,0,4047.0879 +6619,8076,14428,14427,-9,-9,1,0,50,0,2,0,2,2,-9,1,3,7.2111845,7.1148129,0,11,5,53.819008,0,-9,3,2021,11,0,24,21,1,0,0,6.8218298,6.8218298,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,41.47,58.08,8.333333333333334,1,1,0,0,8,11,4,1,565.5,298875,188396.78,220943.97,16811.633,0,0,4047.0879 +6620,8077,14429,14430,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,61,-2,42.966335,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,43,23,8,1,1,0,0,0,7,2,0,432,109609.23,-23822.955,0,0,0,0,1765.5771 +6620,8077,14430,14429,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,4.2954693,4.2096915,61,2,-55.572395,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,49.158649,0,120,1,1,0,4.7796097,3.972425,43,23,52,45,10,1,1,0,0,0,7,2,0,432,109609.23,-23822.955,0,0,0,0,1765.5771 +6621,8078,14431,14432,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.6192107,6.5171843,59,-1,-28.140118,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.322839,7.6795306,21.243782,0,1,1,0,1.816684,7.0465732,48.27,30.92,40.81,47.41,8.333333333333334,1,1,0,0,0,1,3,1,551.5,378839.56,121143.45,159930.38,0,0,0,1881.6147 +6621,8078,14432,14431,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.5393634,7.3549476,59,1,-145.12566,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.4321225,7.3461709,40.81,47.41,48.27,30.92,6.666666666666667,1,1,0,0,3,1,3,1,551.5,378839.56,121143.45,159930.38,0,0,0,1881.6147 +6622,8079,14433,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.0892315,8.0687876,0,0,0,-1086.3942,0,-9,-9,2021,7,0,42,35,1,0,0,9.5424995,9.5424995,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.05,56.68,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,424,78453.82,-101758.99,58054.125,87129.883,5040.5337,0,1026.1388 +6623,8080,14434,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,7.1299505,7.3285718,0,0,-970.7522,0,2,1,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2237158,7.4060555,50.22,39.49,-9,-9,10,1,1,0,0,2,10,3,1,1569,644185.13,95823.063,138376.22,0,0,0,421.59543 +6624,8081,14435,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.7576981,8.2706594,6.8644414,0,0,-909.54889,0,2,2,2021,14,2,40,37,1,2,0,7.0579195,7.0579195,0,0,0,0,0,0,0,0,1,1,0,7.303823,0,47.93,42.61,-9,-9,5,1,1,0,1,9,10,3,0,406.5,-73936.313,0,0,0,-928.40686,0,1480.3881 +6624,8081,14436,-9,14435,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.7499,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,0,406.5,-73936.313,0,0,0,-928.40686,0,1480.3881 +6625,8082,14437,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,9.0295639,8.9812431,6.2753243,0,0,-973.3783,0,2,3,2021,6,0,34,34,1,0,0,19.441235,19.441235,.05,.05,0,0,0,0,0,0,1,1,0,7.0198727,0,42.01,57.81,-9,-9,8.333333333333334,1,1,0,0,11,11,5,1,5024,1311719,1115984,179432.33,0,2113.1394,0,2537.3264 +6626,8083,14438,14439,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.1918716,7.9988494,0,5,1,35.93578,0,3,-9,2021,7,0,40,39,1,0,0,9.016284,9.016284,.05,.05,0,0,0,0,0,0,0,0,0,1.2666826,0,53.98,50.87,42.85,45.55,8.333333333333334,1,1,0,0,11,9,5,1,545,2042090.8,1624406.3,303754.5,30092.637,0,0,2938.5454 +6626,8083,14439,14438,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.5710697,8.5765944,0,5,-1,104.29369,0,2,-9,2021,12,0,70,70,1,0,0,9.115139,9.115139,.05,.05,0,0,0,0,0,0,0,0,0,.85927153,0,42.85,45.55,53.98,50.87,6.666666666666667,1,1,0,0,11,9,5,1,545,2042090.8,1624406.3,303754.5,30092.637,0,0,2938.5454 +6627,8084,14440,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,5.8634682,6.0755067,0,0,-897.99854,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6082664,46.33,55.93,-9,-9,6.666666666666667,1,1,0,1,0,13,2,1,336,198962.69,187401.41,130729.77,0,0,0,598.50873 +6628,8085,14441,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-910.24652,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.9,54.57,-9,-9,8.333333333333334,1,1,0,0,5,12,1,0,1087,-22967.844,0,0,0,0,0,1204.1171 +6629,8086,14442,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,7.8068881,8.0791979,0,0,0,-1039.6063,0,3,3,2021,7,1,14,15,1,1,0,30.307329,30.307329,0,0,0,0,0,0,0,0,1,1,0,7.2659593,0,55.53,41.02,-9,-9,8.333333333333334,1,1,0,0,12,10,4,1,167,1414157.8,545387.19,495098.03,0,0,0,1557.8274 +6630,8087,14443,14444,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,6,-3,-66.339447,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2674878,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,7,13,5,1,525,1191261,925978.69,110742.51,-13550.46,0,1168.2727,15337.163 +6630,8087,14444,14443,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,9.8706274,9.9772081,8.2079563,6,3,-65.953369,0,2,3,2021,7,0,65,70,1,0,0,31.563513,31.563513,.05,.05,0,0,0,0,0,0,1,1,0,8.4093094,8.1323729,57.33,53.46,54.2,57.49,10,1,1,0,0,7,13,5,1,525,1191261,925978.69,110742.51,-13550.46,0,1168.2727,15337.163 +6631,8088,14445,-9,14448,14447,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-913.24542,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14446,-9,14448,14447,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1154.2219,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14447,14448,-9,-9,1,1,39,1,4,0,2,2,-9,0,4,8.3494501,8.5568056,0,8,3,-58.183411,0,-9,-9,2021,10,0,55,50,1,1,0,10.376477,10.376477,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,44,52,7,1,1,0,0,1,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14448,14447,-9,-9,1,0,36,1,4,0,2,2,-9,0,3,0,0,0,8,-3,23.03513,0,2,3,2021,17,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44,52,50,57,5,1,1,0,1,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14449,-9,14448,14447,1,1,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-899.02924,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6631,8088,14450,-9,14448,14447,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-959.63019,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,3,0,1300.3334,72023,-1051.9845,191347.44,113312.31,7072.4585,346.00925,3741.5554 +6632,8089,14451,-9,14453,14454,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.0962,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6632,8089,14452,-9,14453,14454,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.2401,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6632,8089,14453,14454,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,0,0,0,6,-4,72.744415,0,2,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,47.83,62.16,7,1,1,0,0,0,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6632,8089,14454,14453,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,7.840313,7.6976595,0,6,4,80.18103,0,-9,-9,2021,9,1,42,41,1,1,0,6.2898002,6.2898002,0,0,0,0,0,0,0,2,1,1,0,0,0,47.83,62.16,48,57,10,1,1,0,0,9,6,2,0,580.25,-36981.563,0,0,0,0,0,2349.2158 +6633,8090,14455,14456,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,5.3579197,5.3958545,8,1,.8830151,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,7.0591469,5.0567546,64.988533,14.5,1,1,0,7.9731445,5.3254414,54.7,54.95,53,45,8.333333333333334,2,3,0,0,0,2,2,1,146,540450,243232.78,194204.28,0,0,0,2362.79 +6633,8090,14456,14455,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,4.1675849,3.7391491,8,-1,-49.668858,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,8.59095,0,69.443581,0,1,1,0,4.0626225,3.8864002,53,45,54.7,54.95,8,4,5,0,0,0,2,2,1,146,540450,243232.78,194204.28,0,0,0,2362.79 +6634,8091,14457,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.9933019,6.6979561,0,0,0,-880.50958,0,-9,-9,2021,8,0,10,20,1,0,0,11.296286,11.296286,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,31.56,-9,-9,5,1,1,0,0,13,8,2,1,1796,-35597.398,0,0,0,0,0,226.24832 +6635,8092,14458,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,3,7.1490984,7.061862,0,0,0,-922.57001,-9,3,3,2021,15,2,16,0,1,2,0,9.4800119,9.4800119,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,19.71,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,475,55298.789,0,0,0,0,0,1882.4099 +6635,8092,14459,-9,14458,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1114.3933,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,2,0,475,55298.789,0,0,0,0,0,1882.4099 +6635,8093,14460,-9,14458,-9,1,0,19,0,1,0,2,2,-9,0,4,8.3782101,8.2415266,0,0,0,-1100.3397,-9,2,-9,2021,12,0,16,0,1,2,1,28.17556,28.17556,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,1,8,4,0,64,22774.801,130543.46,0,0,8385.9248,0,2796.1121 +6636,8094,14461,14462,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.655406,7.7164245,0,7,-2,14.823749,0,3,3,2021,8,0,20,20,1,0,0,11.239612,11.239612,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,58.14,42.54,5,1,1,0,0,8,6,4,1,926,50723.734,80644.789,45921.773,54308.297,4320.8506,0,1922.8655 +6636,8094,14462,14461,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.2888994,8.0118647,0,7,2,-131.24626,0,3,3,2021,12,1,38,40,1,1,0,9.4457664,9.4457664,0,0,0,0,0,0,0,0,0,0,0,3.7139432,0,58.14,42.54,52,54.51,8.333333333333334,1,1,0,0,8,6,4,1,926,50723.734,80644.789,45921.773,54308.297,4320.8506,0,1922.8655 +6637,8095,14463,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.8189793,9.0194178,4.9321084,0,0,-991.86328,0,3,3,2021,11,0,36,30,1,0,0,19.948179,19.948179,0,0,0,0,0,0,0,0,1,1,0,0,5.2336493,43.92,62.31,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,973,1122049.4,846041.88,285873.16,0,10216.973,9703.2002,2720.9316 +6638,8096,14464,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.1833897,7.9756613,3.6463559,0,0,-1078.0411,0,3,3,2021,20,8,30,30,1,8,0,10.433699,10.433699,.05,.05,0,0,0,0,0,0,0,0,0,0,3.7887397,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,14,6,4,1,287,663863.5,440363.81,181646.22,-17118.756,4611.481,-432.1142,1758.1511 +6639,8097,14465,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1002.0372,0,1,1,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6876037,0,51.08,49.24,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,345,255616.83,77380.086,0,0,0,0,771.76459 +6640,8098,14466,-9,14467,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1068.6136,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,3,1,1202.5,193604.31,-1448.0872,230850.16,0,0,0,1966.769 +6640,8098,14467,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.3435974,8.4604959,0,0,0,-1022.8777,0,3,2,2021,10,0,33,34,1,0,0,16.065023,16.065023,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,10,10,3,1,1202.5,193604.31,-1448.0872,230850.16,0,0,0,1966.769 +6640,8099,14468,-9,14467,-9,1,1,18,0,1,1,2,0,-9,0,3,0,0,0,0,0,-954.31726,-9,1,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,687,49544.438,0,0,0,0,0,538.34973 +6641,8100,14469,-9,-9,-9,1,1,91,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1018.0415,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,3.4239674,0,40.795979,0,1,1,0,1.4071844,0,64.54000000000001,20.06,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,1118,-191346.48,0,0,0,0,0,56.727436 +6642,8101,14470,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-973.67682,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,35.24,24.84,-9,-9,5,1,1,0,0,0,2,1,0,133,83522.297,0,59797.605,0,2396.802,0,1336.2914 +6643,8102,14471,14472,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6909738,8.0730362,0,4,-4,1.7133491,0,-9,-9,2021,7,0,42,30,1,0,0,6.8900938,6.8900938,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,40.89,53.59,8.333333333333334,1,1,0,0,8,4,4,0,751,57721.898,11138.914,0,0,0,7182.7588,2266.8169 +6643,8102,14472,14471,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,8.1367731,7.9467311,0,4,4,120.78717,0,-9,-9,2021,12,0,45,38,1,0,0,7.1022873,7.1022873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.89,53.59,48.87,58.55,5,1,1,0,0,9,4,4,0,751,57721.898,11138.914,0,0,0,7182.7588,2266.8169 +6644,8103,14473,14474,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,3.7009511,4.068954,19,-2,87.176384,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1548328,3.9868536,54.2,57.49,56.35,51.16,8.333333333333334,1,1,0,0,10,4,2,1,956,230347.28,0,185756.06,0,0,0,353.66656 +6644,8103,14474,14473,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,18,2,-7.1111331,0,3,3,2021,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.587208,0,56.35,51.16,54.2,57.49,10,1,1,0,0,10,4,2,1,956,230347.28,0,185756.06,0,0,0,353.66656 +6645,8104,14475,14476,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.909884,7.9014049,28,13,78.44088,0,1,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8361626,7.7802052,47.55,49.86,63.41,39.7,6.666666666666667,1,1,0,0,10,10,5,1,479.5,2063246.8,787309,732698.38,0,0,0,5482.4521 +6645,8104,14476,14475,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.9867234,8.5928526,7.3297858,28,-13,128.53427,0,3,3,2021,7,0,13,12,1,0,0,23.94809,23.94809,0,0,0,0,0,0,0,0,1,1,0,5.9466486,7.5946317,63.41,39.7,47.55,49.86,8.333333333333334,4,2,0,0,9,10,5,1,479.5,2063246.8,787309,732698.38,0,0,0,5482.4521 +6646,8105,14477,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,4,8.102623,8.0249672,0,0,0,-1072.5272,0,2,2,2021,12,2,36,30,1,2,0,11.547713,11.547713,.05,.05,0,0,0,0,0,0,0,0,0,1.3757045,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,0,11,5,4,0,1838,-50679.449,14089.574,0,0,0,0,1743.5032 +6647,8106,14478,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.1410332,7.5395098,0,0,-1019.7263,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2209468,7.1110473,56.25,40.2,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,705,379114.25,184497.69,195562.25,0,2917.1592,0,2141.4956 +6648,8107,14479,14480,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.0235376,5.6455045,43,1,-33.548569,0,3,3,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,137.25529,0,0,1,1,0,0,5.7134562,41,24,47.32,52.7,5,1,1,0,0,0,4,2,0,615,299640.41,53640.926,174892.83,0,0,0,2884.3323 +6648,8107,14480,14479,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,44,-1,-27.151184,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47.32,52.7,41,24,6.666666666666667,1,1,0,0,9,4,2,0,615,299640.41,53640.926,174892.83,0,0,0,2884.3323 +6649,8108,14481,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,9.025876,8.907115,0,0,0,-1021.1484,0,3,3,2021,11,1,37,37,1,1,0,27.859379,27.859379,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,4,2,0,0,9,9,5,1,2322,513697.63,169569.08,219395.45,0,0,0,3117.7988 +6650,8109,14482,14483,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.3048744,8.283186,0,30,-16,44.723125,0,2,2,2021,9,0,44,44,1,0,0,8.3557072,8.3557072,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.3,55.6,63.98,38.08,8.333333333333334,1,1,0,0,11,2,4,1,1008.5,518630.34,516317.09,241425.8,78342.219,708.5658,4428.499,2469.4199 +6650,8109,14483,14482,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.1784773,6.0807004,30,16,35.334324,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8642299,6.266479,63.98,38.08,55.3,55.6,6.666666666666667,1,1,0,0,8,2,4,1,1008.5,518630.34,516317.09,241425.8,78342.219,708.5658,4428.499,2469.4199 +6651,8110,14484,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.5704536,8.4960728,0,0,0,-926.60059,0,2,2,2021,13,2,36,37,1,2,0,13.267771,13.267771,.05,.05,0,0,0,0,0,2,0,0,0,3.3284698,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,11,8,5,0,3114,284644.53,-33583.473,518954.41,45224.883,0,0,2556.3105 +6652,8111,14485,14486,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,9,-2,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,28.494064,87.280556,248.70677,14.5,1,1,0,0,0,48.78,37.32,52,47,6.666666666666667,1,1,0,0,0,13,1,1,517,198972.91,71405.461,193472.81,0,0,0,1971.2783 +6652,8111,14486,14485,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,0,0,9,2,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,48.78,37.32,7,1,1,0,0,0,13,1,1,517,198972.91,71405.461,193472.81,0,0,0,1971.2783 +6653,8112,14487,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.7887325,8.8786135,0,0,0,-990.72223,0,1,3,2021,10,1,37,37,1,1,0,20.364841,20.364841,.05,.05,0,0,0,0,0,2,1,1,0,3.0065637,0,52.42,47.69,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,127,467478.28,241873.48,267312.03,0,45504.16,0,1847.0707 +6654,8113,14488,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.6092634,8.2723627,0,0,0,-958.12726,-9,3,2,2021,17,6,40,0,1,6,0,10.830997,10.830997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.59,35.7,-9,-9,10,1,1,0,0,14,10,4,1,4108,-227317.92,-43116.047,0,0,0,0,1611.3435 +6655,8114,14489,-9,14491,14492,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.34,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6655,8114,14490,-9,14491,14492,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.46393,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6655,8114,14491,14492,-9,-9,1,0,32,0,2,0,1,1,1,0,5,8.279645,8.096941,0,16,-5,172.38342,-9,2,2,2021,4,0,55,0,1,0,0,7.8761125,7.8761125,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,7,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6655,8114,14492,14491,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,7.973876,7.9623127,0,16,5,-20.251049,0,2,3,2021,9,0,16,20,1,0,0,18.656973,18.656973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.06,57.76,6.666666666666667,1,1,0,0,7,10,4,1,708.25,219566.28,80349.32,260574.11,113282.49,11436.652,17723.359,2962.2229 +6656,8115,14493,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.6662636,8.8163824,0,0,0,-897.06708,0,-9,-9,2021,5,0,49,42,1,0,0,18.829325,18.829325,.05,.05,0,0,0,0,0,0,0,0,0,6.2235141,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,367,24655.51,18928.484,0,0,0,0,1749.6241 +6656,8116,14494,14495,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.0487127,8.7481394,0,2,3,105.28592,-9,-9,-9,2021,8,1,50,0,1,1,0,15.795399,15.795399,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.97,57.71,51.41,56.15,8.333333333333334,1,1,0,0,3,9,5,1,511,161712.06,57494.941,329189.84,134104.75,0,0,3852.2603 +6656,8116,14495,14494,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,8.0185652,8.1444445,0,2,-3,-7.0164428,-9,-9,-9,2021,12,0,48,0,1,0,0,7.9084091,7.9084091,.05,.05,0,0,0,0,0,0,0,0,0,4.9340968,0,51.41,56.15,44.97,57.71,8.333333333333334,1,1,0,0,0,9,5,1,511,161712.06,57494.941,329189.84,134104.75,0,0,3852.2603 +6657,8117,14496,14497,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.5630088,7.3390379,7,3,-71.126259,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.56566,7.3906336,59.06,48.59,50.65,60.47,8.333333333333334,1,1,0,0,0,11,3,1,619.5,107111.85,0,0,0,0,0,1984.7944 +6657,8117,14497,14496,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,7,-3,73.589592,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,59.06,48.59,10,1,1,0,0,0,11,3,1,619.5,107111.85,0,0,0,0,0,1984.7944 +6658,8118,14498,14499,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.165472,7.9797506,0,8,1,111.2467,0,-9,-9,2021,12,0,38,38,1,0,0,9.958765,9.958765,0,0,0,0,0,0,0,14.5,0,0,0,2.4098167,0,38.42,59.28,58.62,44.69,5,1,1,0,0,9,5,4,1,738,1251907.6,742669.25,327694.97,0,0,0,2860.1792 +6658,8118,14499,14498,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.8993301,7.6981363,0,8,-1,12.696715,0,2,2,2021,8,0,26,38,1,0,0,10.265471,10.265471,.05,.05,0,0,0,0,0,2,0,0,0,4.0155568,0,58.62,44.69,38.42,59.28,8.333333333333334,1,1,0,0,8,5,4,1,738,1251907.6,742669.25,327694.97,0,0,0,2860.1792 +6659,8119,14500,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,8.2049456,8.3214483,0,0,0,-1078.4517,0,2,2,2021,13,1,37,37,1,1,0,12.716078,12.716078,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,44.03,59.58,-9,-9,3.333333333333333,1,1,0,1,10,12,4,1,606,-110902.25,-67740.117,265943.22,68477.188,3223.7087,0,2340.6863 +6660,8120,14501,14502,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.2664738,8.0822048,37,1,77.657005,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3649836,52.98,43.26,61.04,39.41,10,1,1,0,0,7,11,4,1,1060,1557028.8,926245.25,408236.66,0,18.832397,0,2257.2056 +6660,8120,14502,14501,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.1526933,7.3070178,37,-1,-19.13942,0,1,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1524773,7.3002739,61.04,39.41,52.98,43.26,10,1,1,0,0,6,11,4,1,1060,1557028.8,926245.25,408236.66,0,18.832397,0,2257.2056 +6661,8121,14503,14504,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,7.3842745,8.3521624,7.348237,47,-4,-61.126465,0,-9,3,2021,12,0,30,30,1,0,0,6.0742373,6.0742373,0,0,0,0,0,0,0,0,1,1,0,7.2468381,7.2987657,57.33,53.46,57.27,41.15,8.333333333333334,1,1,0,0,12,9,3,1,806,1040222.2,573092.13,355691.75,0,0,0,2940.3242 +6661,8121,14504,14503,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.8701625,5.9369702,48,4,-98.746765,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6565366,5.746254,57.27,41.15,57.33,53.46,10,1,1,0,0,8,9,3,1,806,1040222.2,573092.13,355691.75,0,0,0,2940.3242 +6662,8122,14505,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.2873745,7.2667961,0,0,-969.23914,0,2,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2377286,7.5534129,43.93,31.44,-9,-9,5,1,1,0,0,5,10,3,1,1165,286898.13,110779.08,161790.36,0,0,0,1926.6166 +6663,8123,14506,14507,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,8.3285761,8.2238007,0,9,9,21.523331,0,3,3,2021,8,0,40,40,1,0,0,15.173238,15.173238,.05,.05,.05,0,0,0,0,0,1,1,0,.44550645,0,57.06,57.76,59.04,48.6,8.333333333333334,1,1,0,0,10,8,5,1,1517,1700722.8,611123.56,668627.38,0,0,0,4015.4185 +6663,8123,14507,14506,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.0728807,8.0278044,0,9,0,48.178123,0,3,3,2021,6,0,32,32,1,0,0,14.275027,14.275027,0,0,0,0,0,0,0,0,1,1,0,1.4884527,0,59.04,48.6,57.06,57.76,10,1,1,0,0,10,8,5,1,1517,1700722.8,611123.56,668627.38,0,0,0,4015.4185 +6664,8124,14508,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.5504742,8.9387655,6.6519074,0,0,-997.11731,0,2,3,2021,24,12,37,37,1,12,0,17.28586,17.28586,.05,.05,0,0,0,0,0,0,1,1,0,7.174552,0,19.63,45.5,-9,-9,1.666666666666667,1,1,0,0,12,13,5,1,1186,319428.47,147675.94,357996.31,117407.94,0,0,2758.0198 +6665,8125,14509,14510,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.9615464,7.5590291,6,1,20.765236,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0592471,7.5005207,62.57,40.11,53.61,59.13,0,1,1,0,0,0,4,3,1,546,837639.5,443394.25,205015.72,0,0,0,1843.7803 +6665,8125,14510,14509,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.6954565,5.9289951,6,-1,37.599659,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1542881,6.3468151,53.61,59.13,62.57,40.11,10,1,1,0,0,0,4,3,1,546,837639.5,443394.25,205015.72,0,0,0,1843.7803 +6666,8126,14511,14512,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.2989483,8.3940086,0,1,3,-30.186804,0,2,2,2021,12,1,45,47,1,1,0,11.642499,11.642499,.05,.05,0,0,0,0,0,0,0,0,0,3.2272158,0,57.33,53.46,57.81,33.88,8.333333333333334,1,1,0,0,13,7,5,0,1853.5,576332.63,216549.53,371999.78,0,4051.6182,0,2764.5154 +6666,8126,14512,14511,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.6818733,8.4911556,0,1,-3,-105.33509,-9,-9,-9,2021,11,0,74,0,1,0,0,6.8663368,6.8663368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.81,33.88,57.33,53.46,6.666666666666667,1,1,0,0,1,7,5,0,1853.5,576332.63,216549.53,371999.78,0,4051.6182,0,2764.5154 +6666,8127,14513,-9,14511,-9,1,1,29,0,0,0,2,2,-9,0,4,7.7183075,7.7804365,0,0,0,-1042.8738,-9,2,-9,2021,17,4,36,0,1,4,1,7.3595057,7.3595057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,13,7,3,0,275,11774.326,-28973.635,0,0,5345.4063,470.91397,139.25772 +6667,8128,14514,14515,-9,-9,1,1,59,0,0,0,3,3,-9,1,1,0,0,0,6,0,0,0,-9,-9,2021,29,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.217387,0,24.31,23.06,38.82,39.27,0,1,1,0,1,11,5,1,1,610.5,45850.516,46903.426,0,0,0,0,1179.2043 +6667,8128,14515,14514,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,6,0,0,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.82,39.27,24.31,23.06,5,1,1,1,0,0,5,1,1,610.5,45850.516,46903.426,0,0,0,0,1179.2043 +6667,8129,14516,-9,-9,-9,1,0,18,0,0,1,1,0,0,1,5,0,0,0,0,0,-956.80206,-9,-9,-9,2021,18,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4858744,0,44.37,51.44,-9,-9,5,1,1,0,0,0,5,1,1,452,69621.672,0,0,0,0,0,905.84949 +6668,8130,14517,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,8.1163855,8.2144976,0,2,3,-30.993301,0,3,3,2021,8,0,48,42,1,0,0,7.9135885,7.9135885,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,56.44,40.67,8.333333333333334,1,1,0,0,10,5,4,1,63,-56311.934,0,0,0,0,0,2171.604 +6668,8131,14518,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,7.8763866,7.7173223,0,2,-3,-2.6193736,0,-9,-9,2021,9,1,39,37,1,1,0,8.1260691,8.1260691,.05,.05,0,0,0,0,0,0,0,0,0,2.7575011,0,56.44,40.67,48.77,60.16,6.666666666666667,1,1,0,0,3,5,4,1,1991,59983.438,8121.4688,0,0,0,0,1364.3193 +6669,8132,14519,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.98878,8.1742201,0,0,0,-1172.632,0,2,3,2021,12,0,37,37,1,0,0,9.3383179,9.3383179,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,5,1,1,0,0,9,7,4,0,3608,21102.01,115451.23,0,0,2272.3828,0,634.5321 +6670,8133,14520,14521,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.8487453,8.1242142,0,16,1,74.455833,0,3,3,2021,12,0,35,21,1,0,0,7.7843528,7.7843528,0,0,0,0,0,0,0,0,0,0,0,0,0,38.28,57.07,60.29,52.11,3.333333333333333,2,3,0,0,6,12,3,0,302,-94.234375,98323.648,153591.22,112697.95,3464.4148,12013.729,2427.0247 +6670,8133,14521,14520,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,6.8908896,6.4848967,0,16,-1,45.417465,0,3,2,2021,3,0,22,16,1,0,0,3.9302058,3.9302058,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,38.28,57.07,10,2,3,0,0,7,12,3,0,302,-94.234375,98323.648,153591.22,112697.95,3464.4148,12013.729,2427.0247 +6671,8134,14522,14523,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.6910381,8.5931959,0,25,-5,85.610588,0,3,2,2021,25,12,65,48,1,12,0,12.381845,12.381845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.68,50.64,29.95,48.83,6.666666666666667,2,3,0,0,11,6,4,1,1694.6666,204990.45,27788.777,286088.88,0,0,0,2324.5642 +6671,8134,14523,14522,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,0,0,0,25,5,110.01402,0,3,3,2021,26,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.95,48.83,39.68,50.64,3.333333333333333,2,3,1,0,7,6,4,1,1694.6666,204990.45,27788.777,286088.88,0,0,0,2324.5642 +6671,8134,14524,-9,14522,14523,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.73279,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,1694.6666,204990.45,27788.777,286088.88,0,0,0,2324.5642 +6671,8135,14525,-9,14522,14523,1,1,19,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1186.7429,1,1,2,2021,17,4,0,20,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8536296,0,31.38,38.69,-9,-9,5,2,3,0,0,2,6,1,1,224,0,0,0,0,0,0,829.73346 +6672,8136,14526,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,6.9650898,7.7706246,7.2254333,0,0,-910.6463,0,3,3,2021,10,0,20,20,1,0,0,6.0573974,6.0573974,.05,.05,0,0,0,0,0,0,1,1,0,6.378509,7.6565604,40.98,56.66,-9,-9,8.333333333333334,1,1,0,0,12,4,4,0,196,145981.7,45172.887,0,0,4429.7197,-217.21982,2157.0759 +6673,8137,14527,14528,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.1639423,8.4238749,0,21,0,-112.48895,0,1,2,2021,25,12,33,26,1,12,0,10.827045,10.827045,0,0,0,0,0,0,0,0,1,1,0,1.3429185,0,20.8,37.96,54.96,50.46,6.666666666666667,3,4,0,0,12,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6673,8137,14528,14527,-9,-9,1,1,51,0,2,0,2,2,-9,0,5,8.1811314,8.5040483,0,10,9,37.162815,-9,-9,-9,2021,8,1,42,0,1,1,0,11.732282,11.732282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,50.46,20.8,37.96,6.666666666666667,3,4,0,0,13,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6673,8137,14529,-9,14527,14528,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1076.4924,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6673,8137,14530,-9,14527,14528,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1135.0431,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,4,1,1603.5,510807.63,433314.75,252644.72,58769.77,0,0,3607.7856 +6674,8138,14531,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,5.4433813,5.6015458,0,0,-980.01563,0,2,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.6818433,5.4328718,32.07,44.87,-9,-9,6.666666666666667,1,1,0,0,8,9,2,1,1795,764383.19,143501.36,741991.19,65867.164,0,564.43512,1177.1852 +6675,8139,14532,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,5.91188,5.7512617,0,0,-982.31158,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,3.4302604,0,20.922136,0,1,1,0,1.364349,5.8138752,24.54,50.04,-9,-9,6.666666666666667,3,4,0,0,0,7,2,0,235,34691.402,36324.766,154723.59,0,0,0,1068.4213 +6676,8140,14533,-9,14536,14534,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.7167,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6676,8140,14534,14536,-9,-9,1,1,60,0,2,0,2,2,-9,0,4,8.5189552,8.9068985,7.0221267,7,21,-26.081661,0,-9,-9,2021,9,1,39,42,1,1,0,16.020033,16.020033,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3060517,50.97,53.42,51.77,58.57,8.333333333333334,1,1,0,0,8,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6676,8140,14535,-9,14536,14534,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.8357,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6676,8140,14536,14534,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.8073416,8.4295626,0,16,-21,74.131599,0,2,2,2021,11,1,38,38,1,1,0,15.010444,15.010444,.05,.05,0,0,0,0,0,0,1,1,0,2.3492136,0,51.77,58.57,50.97,53.42,8.333333333333334,1,1,0,0,8,11,5,1,487.25,685220.63,408792.72,252511.61,39535.09,14210.553,0,4961.9292 +6677,8141,14537,14538,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.3314514,7.6404896,41,-12,-52.461327,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7145772,7.0777717,49.84,44.96,61.19,36.58,8.333333333333334,1,1,0,0,11,5,4,1,244,1294165.1,688458.88,326501.63,0,0,0,2985.3159 +6677,8141,14538,14537,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.6606154,8.0301561,41,12,-55.396317,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1917233,7.8051262,61.19,36.58,49.84,44.96,8.333333333333334,1,1,0,0,5,5,4,1,244,1294165.1,688458.88,326501.63,0,0,0,2985.3159 +6678,8142,14539,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.7654924,5.7521024,0,0,-1158.5785,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9890819,5.8647485,53.47,31.7,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,706,374735.75,98347.602,122478.63,0,0,0,1117.4155 +6679,8143,14540,14541,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,4,-3,-47.7757,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.83,23.56,51.9,43.08,8.333333333333334,1,1,0,0,0,4,5,1,684.5,466517.66,138920.56,107610.66,0,0,0,2363.2007 +6679,8143,14541,14540,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.7351141,9.2381058,0,4,3,165.41051,0,-9,-9,2021,8,1,39,47,1,1,0,16.209103,16.209103,.05,.05,0,0,0,0,0,74.5,0,0,0,0,0,51.9,43.08,43.83,23.56,8.333333333333334,1,1,0,0,13,4,5,1,684.5,466517.66,138920.56,107610.66,0,0,0,2363.2007 +6680,8144,14542,14543,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,5.0826135,4.9789443,0,36,-2,-10.30833,0,2,3,2021,9,0,23,25,1,0,0,.73421329,.73421329,0,0,0,0,0,0,0,2,0,0,0,1.2095742,0,54.79,55.86,52.48,55.6,8.333333333333334,1,1,0,0,11,13,3,1,549.5,115867.3,-47798.609,88797.047,0,0,0,1272.9487 +6680,8144,14543,14542,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5316963,7.6914558,0,10,2,-45.675495,0,-9,-9,2021,7,0,45,40,1,0,0,4.8357067,4.8357067,.05,.05,0,0,0,0,0,0,0,0,0,.99545813,0,52.48,55.6,54.79,55.86,10,1,1,0,0,11,13,3,1,549.5,115867.3,-47798.609,88797.047,0,0,0,1272.9487 +6681,8145,14544,14545,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.1463871,6.5303826,0,43,0,121.37681,0,-9,2,2021,6,0,30,30,1,0,0,1.9872367,1.9872367,0,0,0,0,0,0,0,0,1,1,0,3.0763659,0,61.28,48.88,57.51,42.37,8.333333333333334,1,1,0,0,10,9,2,1,1511.5,719060.75,0,432750.03,0,0,0,2059.3154 +6681,8145,14545,14544,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,43,0,58.78307,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1558034,0,57.51,42.37,61.28,48.88,8.333333333333334,1,1,0,0,4,9,2,1,1511.5,719060.75,0,432750.03,0,0,0,2059.3154 +6682,8146,14546,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,8.9136839,8.8937769,0,0,-960.1311,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1559861,8.7248535,61.82,34.04,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,904,780258.25,159713.25,402361.31,0,0,0,3906.823 +6683,8147,14547,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.4653177,8.5309048,6.5556231,0,0,-954.38855,0,3,3,2021,6,0,51,51,1,0,0,10.862323,10.862323,0,0,0,0,0,0,0,0,0,0,0,7.2770963,6.6484647,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,7,5,1,735,383377.31,0,0,0,0,0,1932.9878 +6684,8148,14548,14549,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.5670204,6.3523712,55,1,-19.683151,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5153537,6.687654,55.79,52.62,59.22,40.22,8.333333333333334,1,1,0,0,0,9,2,1,1094.5,627717.5,45107.801,398027.44,0,0,0,2209.0718 +6684,8148,14549,14548,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,55,-1,-.34582123,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.9893654,0,59.22,40.22,55.79,52.62,6.666666666666667,1,1,0,0,0,9,2,1,1094.5,627717.5,45107.801,398027.44,0,0,0,2209.0718 +6685,8149,14550,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.6817946,7.7038488,0,0,-872.17249,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8700089,8.1346483,42.06,37.37,-9,-9,5,1,1,0,0,0,4,4,1,384,534908.94,153740.95,0,0,0,0,2030.4829 +6686,8150,14551,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.4945984,8.671627,0,0,0,-1022.7421,0,3,3,2021,12,1,36,41,1,1,0,16.759623,16.759623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.95,52.41,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,1254,53182.488,-18345.832,0,0,0,0,2467.2803 +6687,8151,14552,14553,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,0,0,0,34,1,0,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6820779,0,60.02,56.42,58.72,51.29,8.333333333333334,1,1,0,0,11,7,1,1,284,438603.88,0,428918.31,0,0,0,2742.5776 +6687,8151,14553,14552,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,0,0,34,-1,0,0,1,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3796091,0,58.72,51.29,60.02,56.42,10,1,1,0,0,12,7,1,1,284,438603.88,0,428918.31,0,0,0,2742.5776 +6687,8152,14554,-9,14553,14552,1,0,22,0,0,0,1,1,-9,0,4,0,10.114924,9.9301348,0,0,-896.56488,1,1,1,2021,20,8,0,38,2,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.7849417,9.9579668,48.81,59.91,-9,-9,6.666666666666667,1,1,0,0,3,7,5,1,187,135041.92,-52598.566,0,0,0,0,9641.5479 +6687,8153,14555,-9,14553,14552,1,1,20,0,0,0,2,2,-9,0,4,7.5622625,7.6240063,0,0,0,-1086.6028,0,1,1,2021,12,3,38,42,1,3,0,7.0059052,7.0059052,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.6,55.82,-9,-9,6.666666666666667,1,1,0,0,2,7,3,1,342,-112665.75,-47343.859,0,0,0,0,926.09167 +6688,8154,14556,14557,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.1385756,7.2127733,0,7,-13,79.380508,0,-9,-9,2021,6,0,20,20,1,0,0,9.3703346,9.3703346,.05,.05,0,0,0,0,0,0,1,1,0,3.8247192,0,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,5,4,1,1263.5,2052557.8,376056.81,575221.75,349150.06,0,0,3382.147 +6688,8154,14557,14556,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.1584687,7.9872665,8.1569633,7,13,39.685036,0,2,3,2021,7,0,24,20,1,0,0,5.4207339,5.4207339,.05,.05,0,0,0,0,0,0,1,1,0,.91399419,7.9973106,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,11,5,4,1,1263.5,2052557.8,376056.81,575221.75,349150.06,0,0,3382.147 +6689,8155,14558,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.8992119,8.0683651,0,0,-881.48499,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.442585,57.16,56.15,-9,-9,0,1,1,0,0,0,11,4,1,1548,844027.94,391321.47,157658.83,0,0,0,2522.2913 +6690,8156,14559,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.3141813,8.5828104,0,0,0,-1017.5878,0,-9,-9,2021,12,2,43,45,1,2,0,10.895569,10.895569,0,0,0,0,0,0,0,0,0,0,0,0,0,43.12,58.55,-9,-9,8.333333333333334,3,4,0,0,10,8,5,1,866,1404218.1,1113833.3,325397.97,59470.492,2131.7358,0,1950.6129 +6691,8157,14560,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.8085461,6.6161542,0,0,-920.8089,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9571781,6.8989997,52.77,55.33,-9,-9,3.333333333333333,1,1,0,0,8,2,2,1,486,170248.3,104877.66,0,0,0,0,1122.6603 +6692,8158,14561,14562,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,7.0560913,6.5005059,6,-11,-87.989334,0,3,3,2021,2,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9510791,6.6450438,61.12,51.57,59.46,46.99,10,1,1,0,0,6,12,3,1,508.5,793025.25,523181.69,153821.44,0,0,0,2638.8179 +6692,8158,14562,14561,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.8633437,7.9268656,6,11,15.791696,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.417089,7.5858793,59.46,46.99,61.12,51.57,8.333333333333334,1,1,0,0,0,12,3,1,508.5,793025.25,523181.69,153821.44,0,0,0,2638.8179 +6693,8159,14563,14564,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.2328987,8.5664177,0,13,4,-73.434074,0,2,2,2021,7,0,35,35,1,0,0,12.840181,12.840181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.51,47.91,57.16,56.15,8.333333333333334,1,1,0,0,12,12,4,1,443,367040.94,190632.89,193414.02,29353.191,20571.219,2084.9346,2166.8528 +6693,8159,14564,14563,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.4197197,7.5699096,0,13,-4,35.540527,0,-9,-9,2021,6,0,30,30,1,0,0,9.4135113,9.4135113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.51,47.91,6.666666666666667,1,1,0,1,12,12,4,1,443,367040.94,190632.89,193414.02,29353.191,20571.219,2084.9346,2166.8528 +6694,8160,14565,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0104456,8.7029352,0,0,0,-1060.713,0,3,-9,2021,6,0,37,53,1,0,0,21.904081,21.904081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,12,8,5,0,1205,506638.84,126315.94,0,0,0,0,1997.7183 +6694,8161,14566,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.6269045,8.7991953,0,0,0,-954.38916,0,2,2,2021,7,1,37,37,1,1,0,26.194843,26.194843,.05,.05,0,0,0,0,0,0,0,0,0,5.2722907,0,45.8,55.86,-9,-9,8.333333333333334,2,3,0,0,12,8,5,0,621,279508.59,156598.52,465213.31,90986.594,0,0,2073.3914 +6694,8162,14567,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7051344,8.5245581,0,0,0,-939.09528,0,3,3,2021,20,7,37,42,1,7,0,22.641184,22.641184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,52.9,-9,-9,8.333333333333334,2,3,0,0,12,8,5,0,706,696942.56,270593.41,354952.31,143608.88,0,0,2800.7456 +6694,8163,14568,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6768284,8.6346254,0,0,0,-1076.08,0,2,2,2021,6,0,40,-9,1,0,0,20.571712,20.571712,.05,.05,0,0,0,0,0,0,0,0,0,2.1347399,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,11,8,5,0,1330,432023.91,209242.06,341336,147780.58,0,0,3067.0347 +6695,8164,14569,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.6128163,6.8046432,0,0,-1047.7711,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4672757,7.3793554,60.12,54.8,-9,-9,10,1,1,0,0,0,2,2,0,1388,126099.66,120621.54,151691.44,0,0,0,1172.1157 +6696,8165,14570,14573,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.972373,10.034848,0,12,-2,80.712784,0,2,3,2021,12,1,35,33,1,1,0,45.251415,45.251415,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.54,46.82,53.98,50.87,6.666666666666667,1,1,0,0,15,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6696,8165,14571,-9,14573,14570,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.34784,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6696,8165,14572,-9,14573,14570,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.7429,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6696,8165,14573,14570,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,0,0,0,12,2,-11.488479,1,-9,-9,2021,8,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.98,50.87,53.54,46.82,6.666666666666667,1,1,0,0,2,12,5,1,923.25,1760411.3,1155809.4,558971.56,116004.45,0,0,4967.3574 +6697,8166,14574,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1007.827,0,3,3,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,16.58,-9,-9,0,1,1,1,0,0,12,1,0,397,-232001.61,0,0,0,0,0,1261.2723 +6698,8167,14575,14576,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.5627027,7.8609567,43,0,-84.943573,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6522279,8.2103701,54.2,57.49,57.97,37.36,8.333333333333334,1,1,0,0,12,8,5,1,1501.5,1023917.9,0,739364.13,0,0,0,6053.147 +6698,8167,14576,14575,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,8.5012627,8.5629196,41,9,64.789574,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.3594723,57.97,37.36,54.2,57.49,8.333333333333334,1,1,0,0,0,8,5,1,1501.5,1023917.9,0,739364.13,0,0,0,6053.147 +6699,8168,14577,14578,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,8.226387,8.1258068,7,-2,106.30087,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,5.4071517,8.1518536,43.59,59.64,51.83,57.2,6.666666666666667,2,3,0,0,7,8,4,1,188,3866864,894808.38,1937705.9,0,0,0,2654.9185 +6699,8168,14578,14577,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.7961221,8.3292751,7,2,-109.4148,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1036224,8.2220459,51.83,57.2,43.59,59.64,8.333333333333334,1,1,0,0,0,8,4,1,188,3866864,894808.38,1937705.9,0,0,0,2654.9185 +6700,8169,14579,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.3137732,9.1878633,0,0,0,-921.4707,0,1,1,2021,1,0,47,108,1,0,0,25.770554,25.770554,.05,.05,0,0,0,0,0,0,0,0,0,7.4785242,0,48.53,58.91,-9,-9,10,3,4,0,0,8,4,5,0,501,153603.39,13183.645,0,0,0,0,4279.4209 +6700,8170,14580,-9,14579,-9,1,1,25,0,0,0,2,2,-9,0,5,8.1702576,8.0748634,0,0,0,-955.08704,-9,1,2,2021,9,0,50,0,1,0,1,6.7506104,6.7506104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,3,4,0,0,6,4,4,0,430,-12900.577,-39138.406,0,0,0,0,2167.2061 +6700,8171,14581,-9,14579,-9,1,0,23,0,0,0,1,1,-9,0,2,7.9269671,7.7002854,0,0,0,-1137.5182,0,1,-9,2021,15,5,30,0,1,5,1,10.972579,10.972579,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.81,33.95,-9,-9,8.333333333333334,4,2,0,0,1,4,3,0,1008,129544.54,-82135.672,0,0,0,0,1324.7946 +6701,8172,14582,-9,14584,14585,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1156.167,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6701,8172,14583,-9,14584,14585,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.7611,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6701,8172,14584,14585,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.6535463,8.7590561,0,11,-2,65.385033,0,-9,-9,2021,12,1,37,30,1,1,0,21.562084,21.562084,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,58.88,56.08,52.63,8.333333333333334,1,1,0,1,12,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6701,8172,14585,14584,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,9.488555,9.2865791,0,11,2,33.354717,0,-9,-9,2021,12,1,70,50,1,1,0,14.45738,14.45738,0,0,0,0,0,0,0,2,1,1,0,8.6040258,0,56.08,52.63,39.8,58.88,5,1,1,0,1,12,12,5,1,1071,151718.73,0,280939.72,29047.658,0,0,9697.3887 +6702,8173,14586,14587,-9,-9,1,0,59,0,0,0,3,3,-9,1,4,0,0,0,43,-5,0,0,3,3,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.49,55.09,44.59,11.08,10,2,3,0,0,0,8,1,1,282,-92302.477,0,0,0,0,0,1353.0909 +6702,8173,14587,14586,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,43,5,0,0,-9,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.59,11.08,62.49,55.09,10,2,3,0,0,0,8,1,1,282,-92302.477,0,0,0,0,0,1353.0909 +6702,8174,14588,-9,14586,14587,1,1,22,0,0,0,2,2,-9,0,3,8.1325674,8.2585382,0,0,0,-884.13947,0,3,3,2021,16,4,39,39,1,4,1,10.084734,10.084734,0,0,0,0,0,0,0,2,1,1,0,0,0,28.57,61.36,-9,-9,3.333333333333333,2,3,0,0,5,8,4,1,554,46400.094,0,0,0,791.55359,0,1351.2168 +6703,8175,14589,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.5825801,6.8464627,0,0,-1036.9446,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,19.561527,0,0,1,1,0,5.8702178,6.1221714,57.38,36.96,-9,-9,0,1,1,0,0,0,10,2,1,1857,416176.59,-161916.3,210746.34,0,0,918.32672,1615.3484 +6703,8176,14590,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,6.3792048,6.4442725,0,0,-1015.1393,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5494766,67.63,32.28,-9,-9,10,1,1,0,0,0,10,2,1,2690,152361.33,89405.172,290757.19,0,0,-45.58931,1305.0093 +6704,8177,14591,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.8722796,7.7544422,0,0,-1027.1359,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.946341,7.7951927,59.71,21.75,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,2114,674048,437187.38,142903.39,0,0,0,1953.8658 +6705,8178,14592,14593,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,8.6772785,8.8269167,64,1,-2.7911162,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.666007,8.9066896,49.12,53.02,62.1,51.16,10,1,1,0,0,0,9,4,1,314,1047763.1,465726,480010.75,0,0,0,4352.0313 +6705,8178,14593,14592,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,64,-1,65.696266,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.8104694,0,62.1,51.16,49.12,53.02,8.333333333333334,1,1,0,0,0,9,4,1,314,1047763.1,465726,480010.75,0,0,0,4352.0313 +6706,8179,14594,14596,-9,-9,1,1,36,1,2,0,1,1,-9,0,3,8.5787096,8.4610214,0,5,2,15.92265,0,-9,-9,2021,9,1,36,36,1,1,0,16.091696,16.091696,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,47,57,8.333333333333334,1,1,0,0,12,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6706,8179,14595,-9,14596,14594,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.5864,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6706,8179,14596,14594,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.6794224,8.6251736,0,5,-2,48.514553,0,2,2,2021,11,0,38,38,1,2,0,13.938231,13.938231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,50.57,52.35,7,1,1,0,0,11,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6706,8179,14597,-9,14596,14594,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.8937,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,5,1,635.5,286814.75,136366.7,187217.59,73480.398,4562.9595,1183.1357,3495.7388 +6707,8180,14598,14599,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,38,-3,-11.936391,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,49.95,59.6,52.5,8.333333333333334,1,1,0,0,8,7,2,1,1008.5,622711.44,257077.66,417734.63,0,0,0,1268.2551 +6707,8180,14599,14598,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.2530828,6.1702638,38,3,37.194782,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4727976,6.22545,59.6,52.5,61.68,49.95,10,1,1,0,0,2,7,2,1,1008.5,622711.44,257077.66,417734.63,0,0,0,1268.2551 +6708,8181,14600,14601,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.0753651,7.9447851,0,8,9,13.765588,0,3,3,2021,6,0,38,38,1,0,0,7.3936148,7.3936148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,27.39,58.77,6.666666666666667,1,1,0,0,14,6,4,1,592,1001842.1,787595.88,270470.16,28723.055,0,0,3017.7832 +6708,8181,14601,14600,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.0381222,8.3486214,0,8,0,-2.8237329,0,2,2,2021,26,11,79,42,1,11,0,4.6754389,4.6754389,0,0,0,0,0,0,0,0,0,0,0,1.3762985,0,27.39,58.77,61.28,48.88,3.333333333333333,1,1,0,0,14,6,4,1,592,1001842.1,787595.88,270470.16,28723.055,0,0,3017.7832 +6709,8182,14602,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,6.8869948,6.9406981,0,0,-1041.8696,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5932302,6.8806767,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,393,-26523.379,133844.86,0,0,0,0,284.47314 +6710,8183,14603,14604,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,8.0123806,8.4167643,0,3,2,-47.676075,0,-9,-9,2021,12,2,37,60,1,2,0,9.9353724,9.9353724,0,0,0,0,0,0,0,0,0,0,0,0,0,41.62,56.81,57.16,56.15,5,3,4,0,0,9,8,5,1,1141.5,219195.92,51514.199,219493.28,181930.91,0,0,3988.9705 +6710,8183,14604,14603,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.7576923,8.9129162,0,3,-2,-104.32075,0,2,-9,2021,11,0,40,45,1,0,0,20.431795,20.431795,.05,.05,0,0,0,0,0,0,0,0,0,4.9087939,0,57.16,56.15,41.62,56.81,8.333333333333334,1,1,0,0,6,8,5,1,1141.5,219195.92,51514.199,219493.28,181930.91,0,0,3988.9705 +6711,8184,14605,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1052.7952,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1038,15753.835,0,0,0,0,0,1429.2059 +6712,8185,14606,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,0,0,-984.00616,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,44.58,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,1103,1203942.6,687718.5,346425.22,0,0,0,2206.7046 +6713,8186,14607,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.2320986,7.8042688,0,0,0,-1062.0902,-9,-9,-9,2021,12,0,40,0,1,0,0,13.169208,13.169208,0,0,0,0,0,0,0,0,0,0,0,0,0,41.41,59.45,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,192,31018.834,-44475.777,0,0,0,0,1157.0165 +6714,8187,14608,-9,14610,-9,1,0,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-941.1958,-9,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.37,59.66,-9,-9,6.666666666666667,1,1,0,0,2,7,2,0,929.66669,-46208.293,26749.393,0,0,0,0,2118.0132 +6714,8187,14609,-9,14610,-9,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-869.73431,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,2,0,929.66669,-46208.293,26749.393,0,0,0,0,2118.0132 +6714,8187,14610,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,2,0,6.3176246,6.3045654,0,0,-1044.1636,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0645804,0,31.35,33.26,-9,-9,1.666666666666667,1,1,0,1,0,7,2,0,929.66669,-46208.293,26749.393,0,0,0,0,2118.0132 +6715,8188,14611,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,8.6484632,8.5188923,0,0,0,-944.24646,0,2,1,2021,7,1,15,35,1,1,0,48.569748,48.569748,.05,.05,0,0,0,0,0,0,0,0,0,4.8790164,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,1546,303314.13,351133.28,112574.71,35258.016,0,0,2125.3081 +6716,8189,14612,14613,-9,-9,1,1,63,0,1,0,1,1,-9,0,5,8.8428125,9.4717226,8.6818447,11,12,-53.251247,0,-9,-9,2021,9,1,40,40,1,1,0,25.736378,25.736378,.05,.05,0,0,0,0,0,0,1,1,0,0,8.8870544,55.09,55.87,51.83,57.2,8.333333333333334,1,1,0,0,10,9,5,1,465.33334,4517419,3515918.8,778309.88,0,0,910.82202,6931.4961 +6716,8189,14613,14612,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,0,7.6798067,7.6785688,27,-12,.63649547,0,2,1,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0919509,8.0637197,51.83,57.2,55.09,55.87,8.333333333333334,1,1,0,0,12,9,5,1,465.33334,4517419,3515918.8,778309.88,0,0,910.82202,6931.4961 +6716,8189,14614,-9,14613,14612,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.0936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,465.33334,4517419,3515918.8,778309.88,0,0,910.82202,6931.4961 +6717,8190,14615,14616,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.2593985,8.4189129,0,27,0,77.469482,-9,2,3,2021,10,0,36,0,1,0,0,12.155938,12.155938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,55.36,51.57,8.333333333333334,1,1,0,0,9,13,5,1,166,577553.75,332076.19,188647.39,41511.156,0,0,3972.9575 +6717,8190,14616,14615,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.3864908,9.3999739,0,27,0,-46.889294,-9,2,2,2021,9,0,40,0,1,0,0,32.023392,32.023392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.37,54.8,6.666666666666667,1,1,0,0,9,13,5,1,166,577553.75,332076.19,188647.39,41511.156,0,0,3972.9575 +6718,8191,14617,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,6.587007,6.3852358,0,0,-881.04315,0,3,3,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.82999355,6.4319038,45,38,-9,-9,5,1,1,0,0,4,6,2,1,1604,210161.94,33293.613,0,0,0,0,489.30896 +6719,8192,14618,14619,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,6.8883491,7.0981021,0,31,0,123.45345,0,2,2,2021,11,1,24,24,1,1,0,6.6527576,6.6527576,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.32,53.5,46.98,59.35,8.333333333333334,1,1,0,0,9,12,5,1,1327,999393.38,793009.88,202720.78,69356.438,0,0,4634.5508 +6719,8192,14619,14618,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.3995066,9.30301,0,31,0,-50.740387,0,2,2,2021,8,0,40,40,1,0,0,27.457392,27.457392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,45.32,53.5,8.333333333333334,1,1,0,0,9,12,5,1,1327,999393.38,793009.88,202720.78,69356.438,0,0,4634.5508 +6720,8193,14620,14621,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.0899487,6.0939407,7,1,4.2044506,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4666772,6.2918763,49.52,50.14,51.28,35.77,10,1,1,0,0,0,2,2,1,238.5,110537.62,62646.582,0,0,0,0,1555.5087 +6720,8193,14621,14620,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,56,-1,7.5252008,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51.28,35.77,49.52,50.14,10,1,1,0,0,0,2,2,1,238.5,110537.62,62646.582,0,0,0,0,1555.5087 +6721,8194,14622,14623,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.386344,8.4711351,0,5,1,-146.60887,0,-9,-9,2021,12,1,38,49,1,1,0,12.101147,12.101147,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.69,45.7,37.02,47.89,8.333333333333334,1,1,0,0,12,13,5,1,610,881673.5,745440.38,231059.88,0,1776.8738,16544.334,2972.8152 +6721,8194,14623,14622,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1776724,8.0937481,0,5,-1,75.187416,0,2,2,2021,24,12,30,30,1,12,0,10.354236,10.354236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.02,47.89,48.69,45.7,5,1,1,0,0,10,13,5,1,610,881673.5,745440.38,231059.88,0,1776.8738,16544.334,2972.8152 +6722,8195,14624,14625,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,0,0,0,15,3,-63.013985,0,2,2,2021,11,2,0,15,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.15,38.45,45.98,56.3,6.666666666666667,1,1,0,0,7,4,3,1,322.5,449405.25,231604.41,153649.75,0,0,0,1320.0569 +6722,8195,14625,14624,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.7850685,8.2086382,0,15,-3,-74.465218,0,2,2,2021,11,0,70,40,1,0,0,4.72089,4.72089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.98,56.3,52.15,38.45,5,1,1,0,0,6,4,3,1,322.5,449405.25,231604.41,153649.75,0,0,0,1320.0569 +6723,8196,14626,-9,14627,14628,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-956.59045,-9,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.44,53.27,-9,-9,10,1,1,1,0,0,6,4,1,1225.6666,444071.44,411140.19,247916.31,96553.313,2165.6838,1209.0537,2635.6736 +6723,8196,14627,14628,-9,-9,1,0,44,0,1,0,3,3,-9,0,4,8.1554365,8.4243698,0,8,-3,72.007248,0,3,-9,2021,6,0,53,52,1,0,0,8.9814844,8.9814844,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.61,50.3,8.333333333333334,1,1,0,0,10,6,4,1,1225.6666,444071.44,411140.19,247916.31,96553.313,2165.6838,1209.0537,2635.6736 +6723,8196,14628,14627,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.9800725,7.8408089,0,8,3,77.102402,0,-9,-9,2021,8,0,47,42,1,0,0,5.5910306,5.5910306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.61,50.3,60.12,54.8,8.333333333333334,1,1,0,0,10,6,4,1,1225.6666,444071.44,411140.19,247916.31,96553.313,2165.6838,1209.0537,2635.6736 +6724,8197,14629,-9,14630,-9,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.65265,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14630,14633,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.7753968,7.6534162,4.8814616,6,-7,-146.41185,0,2,2,2021,10,0,39,39,1,0,0,4.8075109,4.8075109,0,0,0,0,0,0,0,2,1,1,0,5.0025649,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,7,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14631,-9,14630,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1022.7612,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14632,-9,14630,-9,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1076.5563,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6724,8197,14633,14630,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,7.4457192,7.4515691,0,6,7,53.411602,0,-9,-9,2021,7,0,27,28,1,0,0,4.9337873,4.9337873,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,4,5,3,0,649.59998,95390.602,72263.102,72170.781,10938.492,2557.9207,2713.6294,2409.7673 +6725,8198,14634,14635,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.5886393,8.9667854,44,-7,-27.236427,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6858263,9.0320148,57.28,51.96,58.72,51.29,8.333333333333334,1,1,0,0,0,9,5,1,1986,12520202,2313616.5,878668.81,0,0,0,10707.411 +6725,8198,14635,14634,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,9.2042551,9.2242937,44,7,-.2586101,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6583018,9.3536253,58.72,51.29,57.28,51.96,8.333333333333334,1,1,0,0,2,9,5,1,1986,12520202,2313616.5,878668.81,0,0,0,10707.411 +6726,8199,14636,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,7.3741894,7.2794805,0,0,-1013.9572,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4333348,59.04,54.12,-9,-9,10,1,1,0,0,0,6,3,1,469,358492.69,41768.652,260107.83,0,0,0,1967.8373 +6727,8200,14637,14638,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.5062513,7.3234234,0,28,-1,63.99052,0,3,2,2021,12,0,30,30,1,0,0,6.4126024,6.4126024,0,0,0,0,0,0,0,0,1,0,1,0,0,35.04,41.01,42.97,30.66,3.333333333333333,1,1,0,0,7,2,2,0,498.5,61514.641,0,147432.34,0,0,0,920.36743 +6727,8200,14638,14637,-9,-9,1,1,54,0,0,0,3,3,-9,0,1,0,0,0,28,1,-35.480965,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.97,30.66,35.04,41.01,3.333333333333333,1,1,1,1,0,2,2,0,498.5,61514.641,0,147432.34,0,0,0,920.36743 +6727,8201,14639,-9,14637,14638,1,0,31,0,0,0,2,2,-9,0,4,7.3938446,7.2339263,0,0,0,-1096.0829,0,2,3,2021,8,0,40,40,1,0,1,4.2519298,4.2519298,0,0,0,0,0,0,0,0,1,0,1,0,0,44.3,54.12,-9,-9,8.333333333333334,1,1,0,0,12,2,3,0,942,43262.227,0,0,0,4030.6238,0,1096.8453 +6727,8202,14640,-9,14637,14638,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.7035,0,2,3,2021,12,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.21,55.18,-9,-9,3.333333333333333,1,1,1,1,4,2,1,0,438,-161733.28,0,0,0,0,0,-821.59644 +6728,8203,14641,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.0895662,8.4132452,0,0,0,-1074.1553,-9,3,3,2021,7,1,58,0,1,1,0,9.0403128,9.0403128,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.88,43.54,-9,-9,6.666666666666667,3,4,0,0,12,8,3,0,1239,-104490.97,48256.305,0,0,0,314.67523,1688.8826 +6728,8203,14642,-9,14641,-9,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-884.93738,-9,1,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,8,3,0,1239,-104490.97,48256.305,0,0,0,314.67523,1688.8826 +6729,8204,14643,14644,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4989548,8.7789516,7.208931,45,0,5.0930362,0,3,3,2021,13,4,37,37,1,4,0,16.517744,16.517744,0,0,0,0,0,0,0,89,1,1,0,6.8639646,7.4672966,35.75,56.45,50,47,8.333333333333334,1,1,0,0,10,8,5,1,277.5,1960599.3,813788.81,486201.56,0,0,0,4337.0479 +6729,8204,14644,14643,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.5361605,5.4347067,7,0,26.494204,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3098879,50,47,35.75,56.45,7,1,1,0,0,0,8,5,1,277.5,1960599.3,813788.81,486201.56,0,0,0,4337.0479 +6730,8205,14645,14646,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7817163,7.7534862,0,3,0,15.500541,0,-9,-9,2021,11,0,33,-9,1,2,0,8.4476938,8.4476938,.05,.05,0,0,0,0,0,0,0,0,0,2.9576111,0,47,59,44.25,32.68,7,1,1,0,0,7,7,4,0,3159.5,141238.69,84253.117,198907.08,141150.78,3955.3516,-387.97986,2814.0425 +6730,8205,14646,14645,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,7.8864799,7.6049466,0,3,0,-74.093529,0,-9,-9,2021,23,10,39,38,1,10,0,7.2351441,7.2351441,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.25,32.68,47,59,6.666666666666667,1,1,0,0,3,7,4,0,3159.5,141238.69,84253.117,198907.08,141150.78,3955.3516,-387.97986,2814.0425 +6731,8206,14647,14648,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.7750158,8.5748281,0,8,-1,40.379246,0,2,2,2021,24,10,36,49,1,10,0,17.029751,17.029751,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,58.15,52.91,8.333333333333334,1,1,0,0,9,1,5,1,725.66669,720431.69,220332.06,330352.94,44993.66,0,0,4490.1875 +6731,8206,14648,14647,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,8.5692778,8.7180996,0,8,1,-17.707544,0,3,3,2021,6,0,42,42,1,0,0,14.204607,14.204607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.54,59.6,8.333333333333334,1,1,0,0,9,1,5,1,725.66669,720431.69,220332.06,330352.94,44993.66,0,0,4490.1875 +6731,8206,14649,-9,14647,14648,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-920.21301,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,1,5,1,725.66669,720431.69,220332.06,330352.94,44993.66,0,0,4490.1875 +6732,8207,14650,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.1154833,8.5629206,0,0,0,-969.78436,0,2,1,2021,2,0,48,30,1,0,0,9.3928385,9.3928385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,4,10,4,0,384,-137826.13,34949.047,0,0,0,0,739.53644 +6733,8208,14651,-9,14654,14652,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.0598,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6733,8208,14652,14654,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,7.0361905,6.8715153,0,3,6,73.853813,0,3,-9,2021,6,0,20,30,1,0,0,6.2133665,6.2133665,.05,.05,0,0,0,0,0,0,1,1,0,6.4205194,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6733,8208,14653,-9,14654,14652,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.7027,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6733,8208,14654,14652,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.2371283,7.9841261,0,3,-6,-20.510654,0,-9,-9,2021,7,0,38,20,1,0,0,7.2579031,7.2579031,0,0,0,0,0,0,0,0,1,1,0,7.9635444,0,57.06,57.76,57.16,56.15,10,1,1,0,0,3,7,3,1,860.5,356690.19,-4184.7729,393231.28,0,0,0,2879.8311 +6734,8209,14655,14656,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.5687761,7.2368393,8,-1,52.17371,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1445885,7.2733417,65.15000000000001,29.3,62.39,56.71,8.333333333333334,1,1,0,0,0,12,3,1,875.5,530468.56,99237.07,307929.16,0,0,0,2655.6152 +6734,8209,14656,14655,-9,-9,1,1,84,0,0,0,1,1,-9,0,5,0,6.3977365,6.4516983,8,1,-2.4494162,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8934503,6.6664996,62.39,56.71,65.15000000000001,29.3,10,1,1,0,0,6,12,3,1,875.5,530468.56,99237.07,307929.16,0,0,0,2655.6152 +6735,8210,14657,14658,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5630016,7.7241602,0,7,3,31.511894,0,3,2,2021,9,0,40,44,1,0,0,5.88204,5.88204,0,0,0,0,0,0,0,2,0,0,0,2.755764,0,54.96,53.17,51.7,49.11,6.666666666666667,1,1,0,0,8,11,2,1,590,75779.781,0,102171.63,33202.5,0,0,811.45239 +6735,8210,14658,14657,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,7,-3,175.47678,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54945445,0,51.7,49.11,54.96,53.17,8.333333333333334,1,1,0,0,1,11,2,1,590,75779.781,0,102171.63,33202.5,0,0,811.45239 +6736,8211,14659,14660,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,41,-3,68.034645,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.84222847,0,35.6,47.42,52.23,55.6,6.666666666666667,1,1,0,0,0,13,3,1,437,1026853.5,699570,219870.44,0,0,0,1860.4617 +6736,8211,14660,14659,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.25982,8.1612692,41,3,67.720062,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5314353,8.38904,52.23,55.6,35.6,47.42,5,1,1,0,0,6,13,3,1,437,1026853.5,699570,219870.44,0,0,0,1860.4617 +6737,8212,14661,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1029.0962,0,-9,-9,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.91,48.18,-9,-9,0,1,1,0,1,3,7,1,0,236,-162574.73,0,0,0,0,0,-171.66893 +6738,8213,14662,14664,-9,-9,1,0,41,0,1,0,3,3,-9,0,4,0,0,0,24,-8,-28.998259,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50,55,53,54,8,2,3,0,0,0,8,2,0,641.33331,131536.06,0,344440.66,186028.11,2396.522,0,2566.0286 +6738,8213,14663,-9,14662,14664,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1042.8815,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,2,3,-9,0,0,8,2,0,641.33331,131536.06,0,344440.66,186028.11,2396.522,0,2566.0286 +6738,8213,14664,14662,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,7.3720818,7.228128,0,6,8,-125.31523,0,-9,-9,2021,9,0,25,25,1,1,0,6.0746384,6.0746384,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,50,55,8,2,3,0,0,8,8,2,0,641.33331,131536.06,0,344440.66,186028.11,2396.522,0,2566.0286 +6738,8214,14665,-9,14662,14664,1,0,20,0,1,0,1,1,1,0,4,6.644979,6.6008959,0,0,0,-994.57465,-9,3,3,2021,11,0,17,0,1,2,1,6.6519289,6.6519289,.05,.05,0,0,0,0,0,0,1,1,0,.88772756,0,47,58,-9,-9,7,2,3,0,0,2,8,2,0,328,-72241.695,73883.133,0,0,0,0,596.7821 +6738,8215,14666,-9,14662,14664,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-975.70172,1,3,3,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,1,0,704,159910.36,0,0,0,0,0,0 +6739,8216,14667,14668,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.6646266,7.6685276,0,11,-1,-9.5292549,0,-9,-9,2021,7,0,31,40,1,0,0,7.4325013,7.4325013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,13,4,4,1,659,252149.47,80427.234,0,0,100.24321,0,2960.2793 +6739,8216,14668,14667,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4217691,8.4862919,0,11,1,38.106022,0,-9,-9,2021,6,0,43,44,1,0,0,12.114347,12.114347,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.87,58.55,6.666666666666667,1,1,0,0,13,4,4,1,659,252149.47,80427.234,0,0,100.24321,0,2960.2793 +6740,8217,14669,14670,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.0309348,7.5388551,56,1,-146.6266,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.37254,7.5444961,61.62,34.96,60.12,54.8,10,1,1,0,0,0,9,3,1,281,556836.94,231392.81,286923.63,0,0,0,2904.0369 +6740,8217,14670,14669,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3003292,6.7758446,56,-1,-54.871601,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8732812,6.8770075,60.12,54.8,61.62,34.96,8.333333333333334,1,1,0,0,0,9,3,1,281,556836.94,231392.81,286923.63,0,0,0,2904.0369 +6741,8218,14671,14672,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,6,1,-82.788437,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47347686,0,67.75,25.82,57.16,56.15,6.666666666666667,1,1,0,0,0,4,2,1,920.5,2136664,1263712.5,0,0,0,0,1804.7498 +6741,8218,14672,14671,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,7.4006,7.2145343,0,6,-1,6.9564033,0,2,2,2021,7,0,16,8,1,0,0,13.541608,13.541608,0,0,0,0,0,0,0,0,1,1,0,1.5880686,0,57.16,56.15,67.75,25.82,8.333333333333334,1,1,0,0,7,4,2,1,920.5,2136664,1263712.5,0,0,0,0,1804.7498 +6742,8219,14673,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.0025172,5.9590011,0,0,-953.28223,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,1.8145605,0,1,1,0,5.6003528,0,48.09,44.05,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,454,503623.63,0,520490.41,0,0,0,900.40265 +6743,8220,14674,14675,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4321918,8.4031534,0,12,-5,97.305908,0,-9,-9,2021,13,3,42,27,1,3,0,12.608863,12.608863,.05,.05,0,0,0,0,0,0,0,0,0,9.0171747,0,47.79,46.82,27.51,61.9,3.333333333333333,1,1,0,0,11,9,5,1,1073,1405218.3,969772.69,343363.34,0,0,0,7428.5859 +6743,8220,14675,14674,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.5516052,9.1900387,0,12,5,-65.531799,0,3,3,2021,22,9,58,53,1,9,0,27.849272,27.849272,.05,.05,0,0,0,0,0,0,0,0,0,4.7884874,0,27.51,61.9,47.79,46.82,1.666666666666667,1,1,0,0,12,9,5,1,1073,1405218.3,969772.69,343363.34,0,0,0,7428.5859 +6744,8221,14676,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.0077572,7.9693403,0,0,0,-1032.4448,0,-9,-9,2021,13,2,45,24,1,2,0,6.2321868,6.2321868,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,3,7,4,0,87,-270526.03,-4041.8101,0,0,0,0,1235.5236 +6745,8222,14677,-9,14679,14678,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.2834,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,830,891601.5,710544.88,285909.41,0,0,0,1995.2699 +6745,8222,14678,14679,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.509593,8.4489679,0,15,1,62.33326,0,2,2,2021,9,0,44,46,1,0,0,10.709561,10.709561,.05,.05,0,0,0,0,0,0,1,1,0,3.8724787,0,44.17,49.99,52.99,51.28,8.333333333333334,1,1,0,0,6,9,4,1,830,891601.5,710544.88,285909.41,0,0,0,1995.2699 +6745,8222,14679,14678,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,0,0,0,15,-1,22.519651,0,1,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5145464,0,52.99,51.28,44.17,49.99,8.333333333333334,1,1,0,0,0,9,4,1,830,891601.5,710544.88,285909.41,0,0,0,1995.2699 +6746,8223,14680,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,2,0,5.8717084,5.7087493,0,0,-1064.9313,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,26.591356,0,0,1,1,0,0,5.4290366,29.44,39.92,-9,-9,6.666666666666667,3,4,0,0,0,6,2,1,1032,253451.55,30610.223,131991.22,0,0,0,323.45255 +6747,8224,14681,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,6.9464798,6.762557,0,0,-968.50574,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8561935,51.99,46.14,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,718,232631.78,158900.84,0,0,0,0,1236.3256 +6748,8225,14682,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,7.6056528,7.6727953,0,0,0,-1031.5061,0,2,2,2021,6,0,27,27,1,0,0,9.0497026,9.0497026,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,237,118896.9,86352.477,0,0,0,0,1311.463 +6748,8226,14683,-9,14682,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1034.6934,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,11,2,1,10672,204658.84,0,0,0,0,0,438.75336 +6749,8227,14684,14685,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,6.8739262,6.5665169,0,49,-1,95.735329,0,-9,-9,2021,8,0,15,15,1,0,0,6.048358,6.048358,0,0,0,0,0,0,0,0,1,1,0,0,0,50.39,48.87,44.82,41.56,1.666666666666667,1,1,0,0,14,11,2,1,735,338842.56,130303.47,148021.27,0,0,0,1677.769 +6749,8227,14685,14684,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,49,1,-77.724312,0,-9,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.82,41.56,50.39,48.87,6.666666666666667,1,1,0,0,0,11,2,1,735,338842.56,130303.47,148021.27,0,0,0,1677.769 +6750,8228,14686,14688,-9,-9,1,0,31,1,1,0,2,2,-9,0,4,8.8507557,8.741683,0,7,-4,-32.198448,0,2,2,2021,18,7,26,0,1,7,0,26.300852,26.300852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,51.83,57.2,8.333333333333334,1,1,0,0,8,10,5,1,1063.3334,436786,171228.3,326833.47,134627.78,0,1232.843,3938.5522 +6750,8228,14687,-9,14686,14688,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.25897,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1063.3334,436786,171228.3,326833.47,134627.78,0,1232.843,3938.5522 +6750,8228,14688,14686,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.8991985,8.4958115,0,7,4,76.434502,0,-9,-9,2021,9,0,38,37,1,0,0,19.828203,19.828203,.05,.05,.05,0,0,0,0,0,1,1,0,.17470811,0,51.83,57.2,44.02,60.7,8.333333333333334,1,1,0,0,7,10,5,1,1063.3334,436786,171228.3,326833.47,134627.78,0,1232.843,3938.5522 +6751,8229,14689,14690,-9,-9,1,0,49,0,2,0,3,3,-9,0,4,3.4546998,3.587867,0,32,-4,-11.383159,0,3,2,2021,10,0,24,24,1,1,0,.14751692,.14751692,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,53,55,8,3,4,0,0,3,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8229,14690,14689,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,5.3238974,5.2971797,0,32,4,67.876167,0,3,3,2021,9,0,24,24,1,1,0,1.0653292,1.0653292,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,50,55,8,3,4,0,1,4,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8229,14691,-9,14689,14690,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-933.12335,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8229,14692,-9,14689,14690,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.66235,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,718.5,87188.328,131753.89,0,0,0,0,1614.6448 +6751,8230,14693,-9,14689,14690,1,1,21,0,2,0,2,2,-9,0,4,0,0,0,0,0,-984.56531,0,3,2,2021,11,0,0,24,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,1,0,0,8,1,0,367,0,0,0,0,0,0,0 +6751,8231,14694,-9,14689,14690,1,0,19,0,2,0,2,2,1,0,1,0,0,0,0,0,-981.94135,-9,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.74,25.6,-9,-9,5,3,4,1,0,1,8,1,0,267,-36625.926,0,0,0,0,513.65277,0 +6751,8232,14695,-9,14689,14690,1,0,18,0,2,1,2,0,0,1,2,0,0,0,0,0,-981.73608,-9,3,2,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.12,27.86,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,396,-35844.68,0,0,0,0,948.26892,416.1749 +6751,8233,14696,-9,14689,14690,1,1,28,0,2,0,2,2,-9,0,4,0,0,0,0,0,-969.89203,0,3,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,1,0,0,8,1,0,788,0,0,0,0,0,0,-222.39452 +6752,8234,14697,14698,-9,-9,1,0,24,0,0,0,1,1,1,0,3,7.9827971,7.9338818,0,1,1,103.11222,-9,-9,-9,2021,13,3,40,0,1,3,0,9.803422,9.803422,0,0,0,0,0,0,0,0,0,0,0,0,0,43.71,56.91,57.33,53.46,8.333333333333334,1,1,0,0,8,5,5,1,1075,251540,-50200.871,109553.95,70132.477,0,0,4421.2158 +6752,8234,14698,14697,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.5380926,8.5774565,0,1,-1,23.70215,-9,-9,-9,2021,9,0,50,0,1,0,0,14.507938,14.507938,.05,.05,0,0,0,0,0,0,0,0,0,1.8822798,0,57.33,53.46,43.71,56.91,8.333333333333334,1,1,0,0,2,5,5,1,1075,251540,-50200.871,109553.95,70132.477,0,0,4421.2158 +6753,8235,14699,14700,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.7449336,6.8628025,27,3,-19.931641,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6859317,57.92,51.82,50.65,60.47,8.333333333333334,1,1,0,0,10,11,3,1,434,759092.56,731207.94,166998.14,0,0,0,1688.022 +6753,8235,14700,14699,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.0265007,7.9935513,4.2005987,27,-3,62.059925,-9,-9,-9,2021,7,0,40,0,1,0,0,8.4589243,8.4589243,.05,.05,0,0,0,0,0,0,0,0,0,4.3688936,4.5365324,50.65,60.47,57.92,51.82,1.666666666666667,1,1,0,0,11,11,3,1,434,759092.56,731207.94,166998.14,0,0,0,1688.022 +6754,8236,14701,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.434082,8.4662247,0,0,0,-1076.2512,0,-9,2,2021,6,0,50,60,1,0,0,15.427239,15.427239,0,0,.05,0,0,0,0,2,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,1304,-23085.098,-77644.883,0,0,0,0,2405.3428 +6755,8237,14702,14703,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.390214,8.1810989,48,2,22.32122,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7443118,8.4415569,48.28,60.18,57.16,56.15,10,1,1,0,0,0,6,5,1,650,1824933.8,1318417.1,364937.25,0,0,0,5376.4795 +6755,8237,14703,14702,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.8433237,7.9655061,48,-2,54.347301,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.777009,7.8612251,57.16,56.15,48.28,60.18,8.333333333333334,1,1,0,0,0,6,5,1,650,1824933.8,1318417.1,364937.25,0,0,0,5376.4795 +6756,8238,14704,14708,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,9.7853918,9.2907124,0,12,2,45.521206,0,-9,-9,2021,15,3,43,43,1,3,0,43.934582,43.934582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.06,57.76,8.333333333333334,1,1,0,0,10,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14705,-9,14708,14704,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.39496,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14706,-9,14708,14704,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-986.77582,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14707,-9,14708,14704,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1073.5479,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6756,8238,14708,14704,-9,-9,1,0,44,0,3,0,1,1,-9,0,5,8.7854061,8.9953775,0,21,-2,-23.49464,0,2,3,2021,6,0,55,50,1,0,0,16.791452,16.791452,.05,.05,0,0,0,0,0,2,0,0,0,4.8113737,0,57.06,57.76,51.24,58.84,8.333333333333334,1,1,0,0,13,7,5,1,1086.2,887147.38,251765.91,824868.94,228254.19,0,0,7717.3247 +6757,8239,14709,14710,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.6671953,7.2654123,0,23,3,-90.096954,-9,-9,-9,2021,9,0,20,0,1,1,0,11.11711,11.11711,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,35.5,54.11,7,2,3,0,0,1,11,2,1,1268,355123.47,291625.16,0,0,0,0,1729.1511 +6757,8239,14710,14709,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,0,0,0,24,-3,30.258404,-9,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.5,54.11,52,55,8.333333333333334,2,3,0,0,0,11,2,1,1268,355123.47,291625.16,0,0,0,0,1729.1511 +6757,8240,14711,-9,14710,14709,1,0,21,0,2,0,2,2,1,0,4,6.9774828,7.0312219,0,0,0,-938.08936,-9,2,2,2021,11,0,20,0,1,2,1,6.1947675,6.1947675,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,1,11,2,1,783,59652.297,0,0,0,0,0,1363.5143 +6757,8241,14712,-9,14710,14709,1,1,19,0,2,0,2,2,-9,0,4,0,0,0,0,0,-744.98218,-9,3,2,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,1,0,0,11,2,1,2177,176131.55,0,0,0,0,0,0 +6758,8242,14713,-9,-9,-9,1,0,64,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1027.0627,0,3,3,2021,14,1,0,0,3,1,0,0,0,0,0,0,1,0,77.931992,0,0,1,1,0,0,0,27.07,21.49,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,312,-7367.4116,0,0,0,0,1171.0612,679.63776 +6759,8243,14714,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7190981,8.8954382,0,0,0,-1023.8976,0,-9,2,2021,8,0,45,50,1,0,0,18.713188,18.713188,.05,.05,0,0,0,0,0,7,0,0,0,8.9240055,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,2,5,1,151,269814.63,13357.052,84864.141,114050.31,0,1169.3323,6304.2241 +6760,8244,14715,14718,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,12,0,113.52964,0,2,1,2021,21,9,0,50,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.34,61.24,62.49,55.09,3.333333333333333,1,1,1,0,8,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6760,8244,14716,-9,14715,14718,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.2697,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,6,4,2,-9,0,0,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6760,8244,14717,-9,14715,14718,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1189,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,4,2,-9,0,0,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6760,8244,14718,14715,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,6.3677616,6.0119276,0,12,0,-48.513596,0,3,3,2021,7,0,10,8,1,0,0,7.2103467,7.2103467,0,0,0,0,0,0,0,0,1,1,0,6.9611301,0,62.49,55.09,46.34,61.24,8.333333333333334,4,5,0,0,8,11,2,1,619.5,-5647.9766,0,0,0,0,0,702.16992 +6761,8245,14719,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-986.85455,0,2,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,739,38999.477,0,0,0,0,433.03317,1571.5027 +6762,8246,14720,14721,-9,-9,1,0,50,0,1,0,3,3,-9,0,2,0,0,0,31,-4,0,0,3,3,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.89,38.35,36.48,33.84,5,2,3,1,0,0,8,1,0,675,189889.97,47033.164,0,0,4663.4995,0,769.94958 +6762,8246,14721,14720,-9,-9,1,1,54,0,1,0,3,3,-9,0,1,0,0,0,29,4,0,0,-9,-9,2021,11,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.48,33.84,51.89,38.35,6.666666666666667,2,3,1,0,8,8,1,0,675,189889.97,47033.164,0,0,4663.4995,0,769.94958 +6762,8247,14722,-9,14720,14721,1,0,28,0,1,0,1,1,-9,0,3,8.2927198,8.016366,0,0,0,-981.37793,0,3,3,2021,13,1,37,39,1,1,1,12.143989,12.143989,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.31,50.67,-9,-9,8.333333333333334,2,3,0,1,9,8,5,0,454,-117599.02,37461.781,0,0,40519.137,4412.7744,1821.304 +6762,8248,14723,-9,14720,14721,1,0,33,0,1,0,1,1,-9,0,4,8.1960363,8.1248741,0,0,0,-1009.0726,0,3,3,2021,10,2,61,36,1,2,1,5.7195559,5.7195559,.05,.05,0,0,0,0,0,0,1,1,0,4.0234361,0,58.15,52.91,-9,-9,1.666666666666667,2,3,0,0,9,8,4,0,351,-82903.891,43765.742,0,0,-414.1821,1811.4297,2474.603 +6762,8249,14724,-9,14720,14721,1,1,21,0,1,0,1,1,1,0,3,0,0,0,0,0,-1010.3943,-9,3,3,2021,15,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.18,50.38,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,1017,-16005.409,0,0,0,0,3585.3303,0 +6763,8250,14725,14726,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,50,2,-68.828682,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9367883,0,56.5,48.33,53.1,52.62,8.333333333333334,1,1,0,0,0,2,2,1,837.5,460724.19,158728.92,186195.34,0,0,0,1594.2168 +6763,8250,14726,14725,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.8010879,6.9659324,50,-2,-84.555817,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.7151222,53.1,52.62,56.5,48.33,8.333333333333334,1,1,0,0,0,2,2,1,837.5,460724.19,158728.92,186195.34,0,0,0,1594.2168 +6764,8251,14727,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.9060073,7.9826441,0,0,0,-1069.7152,0,1,1,2021,24,10,70,4,1,10,0,4.0155702,4.0155702,0,0,0,0,0,0,0,0,0,0,0,0,0,31.38,61.38,-9,-9,5,1,1,0,0,5,7,3,1,190,174315.75,0,0,0,0,0,1431.7703 +6765,8252,14728,14730,-9,-9,1,0,25,1,3,0,2,2,-9,0,5,0,0,0,3,-6,15.855454,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,48,58,10,1,1,0,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14729,-9,14728,14730,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.3699,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14730,14728,-9,-9,1,1,31,1,3,0,3,3,-9,0,4,7.3599753,7.5876498,0,3,6,158.93715,0,-9,-9,2021,11,0,37,38,1,2,0,5.0225883,5.0225883,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48,58,62.39,56.71,7,4,1,0,0,1,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14731,-9,14728,14730,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.536,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6765,8252,14732,-9,14728,14730,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6548,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,659.40002,-33284.285,-12446.379,0,0,0,331.77182,1633.1886 +6766,8253,14733,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.0066786,7.1856256,0,0,-1016.0652,0,3,-9,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.4136977,7.0844851,38.39,40.89,-9,-9,5,1,1,0,0,0,7,2,1,2513,333165.72,227504.2,0,0,0,0,1773.7379 +6767,8254,14734,14735,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3106079,7.4567556,22,2,-71.540421,-9,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.8103137,7.17242,57.03,48.06,59.43,58.05,8.333333333333334,1,1,0,0,11,12,4,1,679.5,1652995.6,882697,138674.5,0,0,0,4985.1577 +6767,8254,14735,14734,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,8.129324,8.2614775,0,1,-2,-35.414627,-9,2,2,2021,9,0,45,0,1,0,0,8.7375154,8.7375154,0,0,0,0,0,0,0,0,1,1,0,7.094491,0,59.43,58.05,57.03,48.06,10,1,1,0,0,12,12,4,1,679.5,1652995.6,882697,138674.5,0,0,0,4985.1577 +6768,8255,14736,14737,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.1899776,7.3262472,22,12,95.662224,0,3,-9,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8273978,7.0205383,42,24,53,52,6.666666666666667,2,3,0,0,0,8,2,1,431.5,2124085,470800.13,641427.19,0,0,0,1097.7981 +6768,8255,14737,14736,-9,-9,1,0,59,0,0,0,1,1,-9,1,4,0,0,0,3,-12,-9.6587124,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,42,24,8,2,3,0,0,0,8,2,1,431.5,2124085,470800.13,641427.19,0,0,0,1097.7981 +6769,8256,14738,-9,14740,14739,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-913.521,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6769,8256,14739,14740,-9,-9,1,1,37,1,2,0,1,1,-9,0,4,8.3640451,8.1319599,0,8,1,-75.553719,0,2,2,2021,12,2,25,25,1,2,0,14.285101,14.285101,.05,.05,0,0,0,0,0,0,1,1,0,3.5546741,0,48.81,59.91,57.1,35.96,5,1,1,0,0,10,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6769,8256,14740,14739,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,8.4614382,8.3586931,0,8,-1,92.155869,0,1,1,2021,10,3,28,25,1,3,0,15.506405,15.506405,.05,.05,0,0,0,0,0,0,1,1,0,2.8578603,0,57.1,35.96,48.81,59.91,8.333333333333334,1,1,0,0,10,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6769,8256,14741,-9,14740,14739,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.35321,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,495.5,210332.17,84979.242,0,0,0,0,3113.9646 +6770,8257,14742,14743,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9124222,8.9222431,0,9,4,47.40546,0,-9,-9,2021,9,0,42,43,1,0,0,22.483732,22.483732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.75,56.99,8.333333333333334,1,1,0,0,7,2,5,1,1726.5,1615927.4,1449695.5,170218.66,68049.938,7023.5303,0,4430.0444 +6770,8257,14743,14742,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.2332926,8.2384872,0,31,-4,-85.193604,0,2,2,2021,10,0,40,45,1,0,0,13.869806,13.869806,.05,.05,0,0,0,0,0,0,0,0,0,4.3094521,0,46.75,56.99,57.16,56.15,8.333333333333334,1,1,0,0,10,2,5,1,1726.5,1615927.4,1449695.5,170218.66,68049.938,7023.5303,0,4430.0444 +6770,8258,14744,-9,14743,14742,1,0,21,0,0,0,1,1,1,0,4,0,0,0,0,0,-835.06525,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.52190679,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,2,1,1,800,-276437.38,0,0,0,0,828.40009,465.63776 +6771,8259,14745,-9,14746,-9,1,0,59,0,0,0,2,2,-9,0,5,0,7.6597061,7.5092521,0,0,-1125.7106,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4080915,57.06,57.76,-9,-9,10,1,1,0,0,0,5,3,1,1325,258447.45,-13324.841,0,0,0,0,1115.5868 +6771,8260,14746,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.8707256,8.1517506,0,0,-916.04407,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,3.4802835,0,0,1,1,0,8.7072468,7.7594571,65,29.3,-9,-9,10,1,1,0,0,0,5,4,1,489,338204.81,335914.47,218016.25,0,0,0,2020.3273 +6772,8261,14747,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.4292173,7.3617396,0,0,-1000.4056,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.35318342,7.376349,59.18,38.87,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,130,530622.63,210752.89,274023.53,0,0,0,2315.6013 +6773,8262,14748,14749,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.3062692,7.1416917,44,9,2.0544643,0,1,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2759795,7.548274,49.44,43.52,53.14,45.74,6.666666666666667,1,1,0,0,8,8,3,1,890.5,272771.09,0,321730.75,0,0,0,2719.2642 +6773,8262,14749,14748,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,6.634232,7.0063214,5.9403176,44,0,-44.394531,0,2,1,2021,9,0,15,15,1,0,0,6.2149568,6.2149568,0,0,0,0,0,0,0,0,1,1,0,6.3303609,0,53.14,45.74,49.44,43.52,8.333333333333334,1,1,0,0,13,8,3,1,890.5,272771.09,0,321730.75,0,0,0,2719.2642 +6774,8263,14750,14752,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,4,3,-8.829689,0,-9,-9,2021,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,54.1,49.39,8.333333333333334,1,1,0,0,3,8,4,0,559.66669,476299.16,9377.3115,948331.63,469237.59,0,0,2731.2097 +6774,8263,14751,-9,14750,14752,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.6791,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,8,4,0,559.66669,476299.16,9377.3115,948331.63,469237.59,0,0,2731.2097 +6774,8263,14752,14750,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.0184107,8.9790373,0,4,-3,15.72358,0,1,1,2021,10,0,37,36,1,0,0,30.410524,30.410524,0,0,0,0,0,0,0,0,1,1,0,4.5083785,0,54.1,49.39,54.74,57.22,8.333333333333334,4,2,0,0,12,8,4,0,559.66669,476299.16,9377.3115,948331.63,469237.59,0,0,2731.2097 +6775,8264,14753,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.7733955,9.1444035,0,0,0,-986.20105,0,2,2,2021,12,1,38,38,1,1,0,22.663273,22.663273,.05,.05,0,0,0,0,0,0,1,1,0,3.2446289,0,36.52,56.27,-9,-9,5,1,1,0,0,12,8,5,1,370,419456.28,131638.92,0,0,0,0,2542.8005 +6776,8265,14754,14755,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5080099,8.5935116,0,28,-7,-68.932755,0,3,-9,2021,11,0,19,58,1,0,0,28.973156,28.973156,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.96,34.45,10,1,1,0,0,7,11,5,1,293.5,309010.44,360880.81,131216.05,73178.125,-141.06067,0,3851.5308 +6776,8265,14755,14754,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.8682504,8.1108932,0,16,7,-122.10347,0,3,3,2021,8,0,38,37,1,0,0,8.3385429,8.3385429,.05,.05,0,0,0,0,0,0,1,1,0,.26553249,0,58.96,34.45,57.16,56.15,6.666666666666667,1,1,0,0,6,11,5,1,293.5,309010.44,360880.81,131216.05,73178.125,-141.06067,0,3851.5308 +6777,8266,14756,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,2,8.1191854,8.1432991,0,0,0,-990.02002,0,-9,-9,2021,10,0,40,40,1,0,0,7.736805,7.736805,0,0,0,0,0,0,0,0,0,0,0,0,0,28.32,60.13,-9,-9,5,1,1,0,0,6,11,4,0,428,-285002,0,0,0,0,0,1904.215 +6778,8267,14757,14758,-9,-9,1,0,34,0,0,0,2,2,-9,1,2,8.4454889,8.1286392,0,11,-12,-85.884178,0,2,2,2021,9,0,50,45,1,0,0,8.47258,8.47258,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.71,19.33,54.96,53.17,8.333333333333334,1,1,0,0,12,9,5,1,918,1736201.1,1264795.3,295347.81,86644.781,0,2044.9733,4048.0503 +6778,8267,14758,14757,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.7945776,8.9108381,0,11,12,-35.596573,0,2,2,2021,6,0,37,38,1,0,0,21.455841,21.455841,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.96,53.17,55.71,19.33,8.333333333333334,1,1,0,0,13,9,5,1,918,1736201.1,1264795.3,295347.81,86644.781,0,2044.9733,4048.0503 +6779,8268,14759,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.9560099,8.9011421,0,0,0,-1077.734,0,2,2,2021,6,0,37,80,1,0,0,23.613667,23.613667,.05,.05,0,0,0,0,0,0,1,1,0,4.6843643,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,316,740784.5,659831.69,135680.39,0,0,419.97348,3140.0886 +6780,8269,14760,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,7.0300193,7.7229781,0,0,-925.84741,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,31.485071,0,0,1,1,0,0,7.131372,51.32,37.6,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,639,466679.91,185241.95,134640.81,33623.871,0,0,1975.2926 +6781,8270,14761,14762,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.7200561,8.1789846,6.7700086,43,2,-12.645695,0,3,3,2021,7,1,37,37,1,1,0,6.2758074,6.2758074,0,0,0,0,0,0,0,0,0,0,0,0,7.1838193,57.18,45.76,44.53,54.03,8.333333333333334,1,1,0,0,9,7,5,0,654,2057495.8,1310856.4,374967.34,0,0,0,3177.6143 +6781,8270,14762,14761,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.4012136,8.5003452,0,43,-2,56.973434,0,3,3,2021,15,3,40,43,1,3,0,17.860626,17.860626,0,0,0,0,0,0,0,2,0,0,0,2.3633933,0,44.53,54.03,57.18,45.76,6.666666666666667,1,1,0,0,9,7,5,0,654,2057495.8,1310856.4,374967.34,0,0,0,3177.6143 +6781,8271,14763,-9,14762,14761,1,1,35,0,0,0,2,2,-9,0,3,7.7181768,7.7014108,0,0,0,-1103.051,0,2,3,2021,11,0,60,52,1,0,1,4.495532,4.495532,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,7,3,0,243,-83907.063,118752.37,0,0,0,0,1847.5027 +6782,8272,14764,14765,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9762292,5.8697338,44,2,17.230015,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9758582,5.7419982,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,0,10,4,1,655,1303967.3,729446.63,235954.78,0,0,0,3803.7778 +6782,8272,14765,14764,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.5250416,8.7690811,7,-2,-218.41429,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2679486,8.3581543,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,5,10,4,1,655,1303967.3,729446.63,235954.78,0,0,0,3803.7778 +6783,8273,14766,14767,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.1341524,7.0498815,0,33,2,-48.551933,0,3,3,2021,16,5,28,30,1,5,0,4.578229,4.578229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.38,41.43,54,53,8.333333333333334,1,1,0,1,9,4,4,1,615,411752.19,277575.25,0,0,0,0,2263.3035 +6783,8273,14767,14766,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.003562,8.0820608,0,6,-2,-105.87997,0,-9,-9,2021,9,0,77,77,1,0,0,3.6812327,3.6812327,.05,.05,0,0,0,0,0,0,0,0,0,5.1140647,0,54,53,51.38,41.43,8,1,1,0,0,1,4,4,1,615,411752.19,277575.25,0,0,0,0,2263.3035 +6784,8274,14768,14769,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,42,8,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.83,43.24,38.91,52.63,5,1,1,0,0,0,12,1,0,428.5,273473.06,28450.002,133864,0,0,0,1103.1443 +6784,8274,14769,14768,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,42,-8,0,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.91,52.63,43.83,43.24,5,1,1,0,0,0,12,1,0,428.5,273473.06,28450.002,133864,0,0,0,1103.1443 +6785,8275,14770,14772,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,10.048882,9.8028412,0,7,4,-165.79367,0,3,3,2021,12,0,45,12,1,0,0,46.477829,46.477829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.18,53.5,38.28,57.07,5,1,1,0,0,7,9,5,1,900.66669,114143.31,0,271958.84,154228.67,0,0,14156.567 +6785,8275,14771,-9,14772,14770,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.69977,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,900.66669,114143.31,0,271958.84,154228.67,0,0,14156.567 +6785,8275,14772,14770,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,8.2801962,8.0204649,0,7,-4,24.876675,0,2,2,2021,12,0,45,35,1,0,0,9.8272591,9.8272591,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.28,57.07,45.18,53.5,3.333333333333333,4,2,0,0,7,9,5,1,900.66669,114143.31,0,271958.84,154228.67,0,0,14156.567 +6786,8276,14773,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,8.1270647,8.1115694,0,0,-983.75574,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9953356,8.2646456,57.16,56.15,-9,-9,10,1,1,0,0,0,6,4,1,2435,1019604.3,345630,330913,0,0,0,4591.2856 +6787,8277,14774,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.4084864,8.478735,0,0,0,-995.22455,0,2,3,2021,15,5,45,45,1,5,0,11.673276,11.673276,.05,.05,0,0,0,0,0,0,1,1,0,8.7678528,0,43.76,50.48,-9,-9,8.333333333333334,1,1,0,0,10,5,5,0,63,161327.94,-10616.249,132008.38,72058.234,0,2207.3535,4457.7212 +6788,8278,14775,14776,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.3787436,6.3748164,60,3,81.421539,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2874718,53,46,48.67,21.29,0,2,3,0,1,0,7,2,1,1545.5,485575.5,-51649.289,500343.78,0,0,0,992.9458 +6788,8278,14776,14775,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,60,-3,-57.433636,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,21.29,53,46,8.333333333333334,2,3,0,0,0,7,2,1,1545.5,485575.5,-51649.289,500343.78,0,0,0,992.9458 +6789,8279,14777,14778,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.5371404,6.4364653,9,0,53.257133,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,1.432448,0,20.746498,42,1,1,0,6.5943508,6.5693502,50.31,22.09,21.72,22.57,8.333333333333334,1,1,0,0,0,4,2,1,346.5,859174,306226.44,122935.03,0,0,0,4035.2583 +6789,8279,14778,14777,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.4140434,6.2964807,51,0,-122.35828,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,3.2353642,0,20.694782,0,1,1,0,5.8683195,6.45889,21.72,22.57,50.31,22.09,3.333333333333333,1,1,0,0,5,4,2,1,346.5,859174,306226.44,122935.03,0,0,0,4035.2583 +6790,8280,14779,14780,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.385541,8.1989202,0,4,0,23.576887,0,-9,-9,2021,10,0,84,44,1,0,0,5.3761649,5.3761649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.15,54.77,8.333333333333334,1,1,0,0,2,4,5,1,1970,55243.473,8836.3213,83110.492,55515.063,0,0,3911.1599 +6790,8280,14780,14779,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.2705374,8.0129519,0,4,0,62.681641,0,2,2,2021,6,0,90,103,1,0,0,4.8297029,4.8297029,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,48.15,54.77,54.2,57.49,6.666666666666667,1,1,0,0,6,4,5,1,1970,55243.473,8836.3213,83110.492,55515.063,0,0,3911.1599 +6791,8281,14781,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.4839854,7.6251297,0,0,-821.69653,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1062608,7.678638,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,293,502889.72,438097.13,108685.63,0,0,0,1930.2092 +6792,8282,14782,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,8.0281544,7.6983824,0,0,-917.33289,0,2,2,2021,6,0,0,44,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,7.7676053,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,872,220362.97,-25291.422,601010,392657.25,0,137.49124,909.36432 +6793,8283,14783,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1068.4828,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,2.5730381,28.912071,18.445536,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,1,0,1,1,1,1331,56648.66,0,0,0,0,0,1085.1849 +6794,8284,14784,14785,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,6.7830968,6.9273548,7,-3,-17.287361,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.2279782,6.9491873,66.54000000000001,14.4,55.85,27.24,8.333333333333334,1,1,0,0,0,4,2,1,1233,352782.94,172682.08,223715.56,0,0,0,1664.116 +6794,8284,14785,14784,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,7,3,-5.7688756,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,1.9885805,0,19.113726,0,1,1,0,0,0,55.85,27.24,66.54000000000001,14.4,10,1,1,0,0,0,4,2,1,1233,352782.94,172682.08,223715.56,0,0,0,1664.116 +6795,8285,14786,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,5.2852674,4.8319688,0,0,-929.74805,0,3,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.9421384,1.1631939,20.287146,0,1,1,0,0,5.4630494,49.01,28.07,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,3965,55600.656,62942.676,0,0,0,0,2035.649 +6796,8286,14787,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,8.3820925,8.625843,0,0,0,-1171.3448,0,-9,-9,2021,10,1,20,16,1,1,0,25.496323,25.496323,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,42.31,-9,-9,5,2,3,0,0,7,2,4,0,150,3359137.5,2173531.5,1241748,75668.07,0,0,2886.1333 +6796,8286,14788,-9,14787,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-933.41052,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,4,0,150,3359137.5,2173531.5,1241748,75668.07,0,0,2886.1333 +6796,8287,14789,-9,14787,-9,1,0,25,0,1,0,1,1,-9,0,3,8.0614967,8.0106401,0,0,0,-1058.4196,0,2,-9,2021,9,0,38,35,1,0,1,7.5879574,7.5879574,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,0,0,4,2,4,0,848,3130.6714,-9062.8438,0,0,0,0,1702.2377 +6796,8288,14790,-9,14787,-9,1,1,21,0,1,0,1,1,-9,0,4,7.5392046,7.5468802,0,0,0,-891.06274,0,2,-9,2021,6,1,38,6,1,1,1,6.9715762,6.9715762,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.11,56.11,-9,-9,10,2,3,0,0,5,2,3,0,684,58026.66,57186.445,0,0,0,0,2788.0103 +6797,8289,14791,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.4111347,8.5660133,0,0,0,-985.01544,0,-9,-9,2021,11,1,50,50,1,1,0,11.139267,11.139267,0,0,0,0,0,0,0,0,1,1,0,0,0,58.56,46.45,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,497,-101929.8,0,0,0,0,0,1578.6952 +6798,8290,14792,14794,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3931742,8.12679,0,9,-7,-69.356049,0,2,2,2021,7,0,36,36,1,0,0,15.078167,15.078167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,54.15,48.02,8.333333333333334,1,1,0,0,7,7,5,1,322.33334,-67963.125,-4003.4167,0,0,0,0,5167.5391 +6798,8290,14793,-9,14792,14794,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1047.2643,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,322.33334,-67963.125,-4003.4167,0,0,0,0,5167.5391 +6798,8290,14794,14792,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.4388561,8.2690582,0,9,7,-67.371696,0,2,1,2021,8,1,43,44,1,1,0,10.234283,10.234283,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.15,48.02,55.79,52.62,8.333333333333334,1,1,0,0,9,7,5,1,322.33334,-67963.125,-4003.4167,0,0,0,0,5167.5391 +6799,8291,14795,14796,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,0,0,0,9,-5,-70.657387,0,1,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.77,58.91,36.18,45.6,6.666666666666667,2,3,0,0,0,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6799,8291,14796,14795,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.3117018,9.4501143,0,6,5,43.242332,0,-9,-9,2021,14,2,60,45,1,2,0,19.2271,19.2271,.05,.05,0,0,0,0,0,0,1,1,0,7.5842385,0,36.18,45.6,42.77,58.91,3.333333333333333,2,3,0,0,9,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6799,8291,14797,-9,14795,14796,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.40826,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6799,8291,14798,-9,14795,14796,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.80408,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,5,1,657,270152.09,111520,305742.34,65030.73,2122.1243,0,4809.207 +6800,8292,14799,14800,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.0224543,8.7496777,0,9,-2,60.65461,-9,-9,-9,2021,12,2,40,0,1,2,0,21.048203,21.048203,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,35.01,54.34,8.333333333333334,1,1,0,0,9,11,5,1,660,-12104.724,-61752.449,60385.117,0,0,0,2743.6809 +6800,8292,14800,14799,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,9,2,143.99269,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.01,54.34,54.37,54.8,8.333333333333334,1,1,0,0,0,11,5,1,660,-12104.724,-61752.449,60385.117,0,0,0,2743.6809 +6800,8293,14801,-9,14800,14799,1,1,23,0,0,0,1,1,1,0,4,0,0,0,0,0,-963.41907,-9,2,2,2021,14,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.23,64.78,-9,-9,1.666666666666667,1,1,1,1,1,11,1,1,442,115679.36,0,0,0,0,0,745.65778 +6800,8294,14802,-9,14800,14799,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1095.1531,-9,2,2,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.76,59.08,-9,-9,6.666666666666667,1,1,0,0,2,11,1,1,4910,-48911.039,0,0,0,0,0,0 +6801,8295,14803,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.1477995,8.4312019,0,0,0,-1063.6981,0,2,2,2021,9,0,50,50,1,0,0,10.083796,10.083796,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,12,4,0,125,115914.59,40712.914,0,0,-817.85315,0,1094.9449 +6802,8296,14804,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,5.9118576,6.1914372,0,0,0,-851.604,0,3,2,2021,11,0,20,25,1,0,0,2.6915004,2.6915004,0,0,0,0,0,0,0,0,1,1,0,0,0,43.98,58.43,-9,-9,3.333333333333333,3,4,0,1,7,8,2,0,241,200223.59,69068.336,0,0,0,0,870.5199 +6803,8297,14805,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,0,0,-908.6322,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.32,46.98,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1354,95514.414,0,0,0,0,0,918.11078 +6804,8298,14806,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,6.5755901,6.4155598,0,0,-1077.5957,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,.63258606,6.7369637,52.15,15.61,-9,-9,5,1,1,0,0,0,10,2,1,174,868816.63,487699.03,260909.66,0,0,0,941.70978 +6804,8299,14807,-9,14806,-9,1,1,34,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1118.7828,0,3,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,42,1,1,0,2.2565274,0,25.03,56.31,-9,-9,3.333333333333333,1,1,1,0,0,10,1,1,855,0,0,0,0,0,0,-96.497787 +6804,8300,14808,-9,14806,-9,1,1,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-953.98639,0,3,2,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,2,1,1,0,1.2781653,0,32.19,34.56,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,475,28450.977,0,0,0,0,0,946.62988 +6804,8301,14809,14810,14806,-9,1,1,37,0,0,0,3,3,-9,0,3,8.2819681,7.9074244,0,2,1,-20.383997,0,3,-9,2021,15,2,42,41,1,2,0,9.002552,9.002552,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,45.91,59.89,1.666666666666667,1,1,0,0,11,10,4,1,752.5,13798.484,-68384.281,0,0,12163.536,3756.0803,2696.6172 +6804,8301,14810,14809,-9,-9,1,0,36,0,0,0,2,2,-9,0,4,7.7597651,7.8539748,0,2,-1,-87.881676,0,2,2,2021,11,0,39,37,1,0,0,9.1470432,9.1470432,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,46.08,57.2,1.666666666666667,1,1,0,0,12,10,4,1,752.5,13798.484,-68384.281,0,0,12163.536,3756.0803,2696.6172 +6805,8302,14811,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1009.4171,0,3,3,2021,36,12,0,31,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.14,61.5,-9,-9,0,1,1,0,1,8,13,1,1,557,-3916.9792,0,0,0,0,0,0 +6806,8303,14812,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,8.9980383,8.7594004,0,0,0,-1008.468,0,2,2,2021,7,1,47,44,1,1,0,20.440063,20.440063,.05,.05,0,0,0,0,0,0,1,1,0,1.2458349,0,55.2,57.22,-9,-9,10,1,1,0,0,7,12,5,1,507,290743.13,152406.45,73449.242,95439.844,2295.5371,3366.9768,3107.0083 +6807,8304,14813,-9,14815,14817,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.51093,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14814,-9,14815,14817,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-947.80579,-9,1,1,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14815,14817,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.4907646,8.3574724,0,20,-3,9.3553181,0,2,2,2021,21,9,15,11,1,9,0,34.979198,34.979198,0,0,0,0,0,0,0,0,1,1,0,0,0,28.65,57.05,54.2,57.49,8.333333333333334,1,1,0,0,6,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14816,-9,14815,14817,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1067.6012,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6807,8304,14817,14815,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.0019941,9.1531992,0,20,3,-10.226953,0,2,2,2021,11,0,52,52,1,0,0,16.103844,16.103844,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,28.65,57.05,8.333333333333334,1,1,0,0,8,1,4,1,1053.4,1179507.3,534473.44,489481.09,79386.938,5941.8184,0,5012.3687 +6808,8305,14818,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,8.1298075,8.4356585,0,0,-965.8266,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3757372,8.197546,47.97,56.11,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1471,729090.25,239526.8,382656.44,0,0,0,3641.7239 +6809,8306,14819,14820,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.8362336,7.0027161,58,-3,1.3181437,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8637743,6.8690319,29.48,53.65,53,47,6.666666666666667,1,1,0,0,13,4,3,1,784,494888.56,358391.88,180467.03,0,0,0,2016.3037 +6809,8306,14820,14819,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.8286977,7.2086926,58,3,84.810654,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7209198,7.2675586,53,47,29.48,53.65,7,1,1,0,0,0,4,3,1,784,494888.56,358391.88,180467.03,0,0,0,2016.3037 +6810,8307,14821,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-988.6543,0,2,2,2021,28,12,0,0,4,12,0,0,0,0,0,0,1,0,40.544155,0,0,1,1,0,0,0,30.01,20.17,-9,-9,1.666666666666667,1,1,0,1,0,11,1,1,668,56258.859,0,0,0,0,0,1325.5973 +6811,8308,14822,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-868.60492,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5649128,0,56.29,23.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,433,15963.773,0,0,0,0,0,949.36133 +6812,8309,14823,-9,-9,-9,1,1,59,0,0,0,1,1,-9,1,2,0,0,0,0,0,-827.55768,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,14.6,-9,-9,5,1,1,0,1,0,4,1,0,84,153919.73,365222.5,0,0,0,0,142.46698 +6813,8310,14824,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.8410811,7.4420671,0,0,-905.62799,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.313314,51.5,24.61,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,2234,783125.25,230735.56,466541.22,0,0,0,1651.5944 +6814,8311,14825,-9,14826,14828,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.55127,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6814,8311,14826,14828,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.6361942,7.5309048,0,13,2,-12.598913,0,-9,-9,2021,12,0,23,23,1,0,0,8.3977518,8.3977518,.05,.05,0,0,0,0,0,0,1,1,0,2.2855184,0,52.51,54.26,45.91,59.89,8.333333333333334,1,1,0,0,14,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6814,8311,14827,-9,14826,14828,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1012.3724,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6814,8311,14828,14826,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.0739536,8.0667086,0,15,-2,-51.642456,0,2,2,2021,12,0,75,75,1,0,0,4.3051667,4.3051667,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,52.51,54.26,3.333333333333333,1,1,0,0,14,4,3,0,734,225583.33,51462.336,125920,29552.033,4863.4854,2495.623,2044.3019 +6815,8312,14829,14830,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.2259941,7.3818865,8,-5,-135.63754,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2096186,49.41,58.28,56.56,45.35,10,1,1,0,0,0,10,3,1,804.5,2351327.5,511059.81,591616,0,0,0,4284.6582 +6815,8312,14830,14829,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.8597031,7.5942798,8,5,-37.096981,0,2,2,2021,8,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6786447,7.9208989,56.56,45.35,49.41,58.28,8.333333333333334,1,1,0,0,11,10,3,1,804.5,2351327.5,511059.81,591616,0,0,0,4284.6582 +6816,8313,14831,-9,14834,14833,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.3606,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14832,-9,14834,14833,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.40735,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14833,14834,-9,-9,1,1,43,0,3,0,3,3,-9,0,5,4.747632,5.1347656,0,15,9,-60.510426,0,-9,-9,2021,7,0,16,16,1,0,0,.84370691,.84370691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,58,45.32,54.77,10,1,1,0,1,10,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14834,14833,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,4.4383397,4.8845115,0,15,0,-61.638798,0,1,2,2021,11,0,2,2,1,0,0,7.4394422,7.4394422,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,54.77,54,58,8.333333333333334,1,1,0,0,10,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6816,8313,14835,-9,14834,14833,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1072.6202,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,2,0,1287,-11381.629,34709.078,0,0,0,0,1119.0024 +6817,8314,14836,14837,-9,-9,1,1,52,0,0,0,3,3,-9,1,3,0,0,0,2,-2,0,0,3,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,49.04,55.86,40.31,14.24,5,1,1,0,0,0,13,1,0,506,-15537.807,0,0,0,0,0,1818.8877 +6817,8314,14837,14836,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,2,2,0,0,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.31,14.24,49.04,55.86,3.333333333333333,1,1,0,0,0,13,1,0,506,-15537.807,0,0,0,0,0,1818.8877 +6818,8315,14838,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.8211527,8.1251097,5.9631739,0,0,-1025.3763,0,2,3,2021,14,4,8,12,1,4,0,60.940651,60.940651,.05,.05,0,0,0,0,0,0,1,1,0,7.3322201,0,43.7,47.64,-9,-9,1.666666666666667,4,2,0,0,7,9,3,1,1029,664937.25,284044.66,422469.53,29483.139,0,0,2630.1169 +6819,8316,14839,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.9021511,4.0079393,0,0,-943.26465,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4353676,3.6419752,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,9,9,2,1,1930,90590.695,0,192245.8,0,0,0,-33.702362 +6820,8317,14840,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,9.2854128,9.0943708,0,0,0,-1078.4269,0,2,1,2021,10,0,39,38,1,0,0,26.632008,26.632008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,1616,601448.5,538410.63,0,0,542.63971,0,3252.7412 +6820,8317,14841,-9,14840,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1189.0784,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,5,1,1616,601448.5,538410.63,0,0,542.63971,0,3252.7412 +6821,8318,14842,-9,-9,14843,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-840.57343,0,-9,2,2021,6,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.29,43.31,-9,-9,10,1,1,1,0,0,2,1,0,624.5,56659.164,9879.4492,0,0,0,0,929.36755 +6821,8318,14843,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1129.0299,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.14,24.96,-9,-9,5,1,1,1,0,0,2,1,0,624.5,56659.164,9879.4492,0,0,0,0,929.36755 +6822,8319,14844,14845,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,8.2142324,8.1341095,0,6,2,-45.953266,0,-9,-9,2021,11,0,45,40,1,0,0,9.5026474,9.5026474,0,0,.05,0,0,0,0,0,0,0,0,0,0,53.22,55.2,22.42,51.76,8.333333333333334,1,1,0,0,12,9,5,1,741,768422.25,77346.055,743564.13,86988.156,0,8070.7822,3053.3936 +6822,8319,14845,14844,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7098446,8.1883297,0,6,-2,71.098602,0,2,2,2021,23,9,76,39,1,9,0,4.8718891,4.8718891,0,0,0,0,0,0,0,0,0,0,0,0,0,22.42,51.76,53.22,55.2,1.666666666666667,1,1,0,1,12,9,5,1,741,768422.25,77346.055,743564.13,86988.156,0,8070.7822,3053.3936 +6823,8320,14846,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.4151525,6.9757748,0,0,-973.45569,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3274088,51,48,-9,-9,7,1,1,0,0,2,13,3,1,1424,700972.31,460497.94,106630.24,-10509.895,0,0,1593.7025 +6824,8321,14847,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-939.98541,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.2,25.69,-9,-9,10,1,1,0,0,3,9,1,0,343,419192.38,0,147462.88,0,0,0,2538.886 +6825,8322,14848,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.9591427,8.8693876,0,0,0,-1021.5361,0,2,2,2021,7,0,47,47,1,0,0,17.312975,17.312975,.05,.05,0,0,0,0,0,0,0,0,0,.79495621,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,414,228983.83,170704.8,317572.22,185752.08,0,0,3669.325 +6826,8323,14849,14850,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.2857456,8.0245533,53,3,22.348057,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1394482,8.0333261,52.62,54.33,55.12,42.1,8.333333333333334,1,1,0,0,4,9,4,1,1205.5,862443.25,536971.13,314908.75,0,0,0,4026.0854 +6826,8323,14850,14849,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.8009176,6.81916,53,-3,-25.051523,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9475584,6.5489531,55.12,42.1,52.62,54.33,6.666666666666667,1,1,0,0,0,9,4,1,1205.5,862443.25,536971.13,314908.75,0,0,0,4026.0854 +6827,8324,14851,-9,-9,-9,1,1,32,0,0,0,3,3,-9,1,2,0,0,0,0,0,-901.92322,0,2,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.18,60.36,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,364,0,0,0,0,0,0,440.05374 +6828,8325,14852,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.7705922,5.5951147,0,0,-893.39154,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4320927,5.7926869,58.22,40.76,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,189,1196953.3,69895.195,607963.69,0,0,0,732.08807 +6829,8326,14853,14854,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.2351446,6.5259781,47,-3,15.191331,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5573974,6.3925505,42.22,56.11,62.27,48.47,3.333333333333333,1,1,0,0,0,5,2,1,386.5,371119.53,257296.38,86349.703,0,0,0,2227.3877 +6829,8326,14854,14853,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.9392152,5.7516456,47,3,-46.46973,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9147534,6.0351338,62.27,48.47,42.22,56.11,8.333333333333334,1,1,0,0,9,5,2,1,386.5,371119.53,257296.38,86349.703,0,0,0,2227.3877 +6830,8327,14855,14856,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.8457332,7.8716416,43,-1,-63.177235,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5948572,58.67,39.12,60.02,56.42,8.333333333333334,1,1,0,0,11,6,3,1,1170,1825372.1,1162514.5,442170.88,0,0,600.83484,3371.5022 +6830,8327,14856,14855,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,6.5174117,6.5092835,43,1,28.375032,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8643947,60.02,56.42,58.67,39.12,8.333333333333334,1,1,0,0,3,6,3,1,1170,1825372.1,1162514.5,442170.88,0,0,600.83484,3371.5022 +6831,8328,14857,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1037.5775,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2892032,0,56.18,45.61,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,1111,469339.22,91479.484,474282.84,176115.34,0,5871.439,131.58899 +6832,8329,14858,14859,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,9.2922812,8.8033037,0,7,3,25.632851,0,-9,-9,2021,5,0,45,43,1,0,0,22.57946,22.57946,.05,.05,0,0,0,0,0,0,0,0,0,1.8758588,0,57.06,57.76,54.79,55.86,10,1,1,0,0,9,7,5,1,1287.5,162560.11,-10045.672,392924.84,337198.69,0,0,5937.2236 +6832,8329,14859,14858,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.0167332,8.839097,0,7,-3,77.779091,0,1,1,2021,5,0,35,35,1,0,0,29.690006,29.690006,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,2,3,0,0,6,7,5,1,1287.5,162560.11,-10045.672,392924.84,337198.69,0,0,5937.2236 +6833,8330,14860,14861,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4348259,6.091269,10,-6,-7.8999057,0,3,2,2021,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6797314,6.1202965,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,10,5,2,1,603.5,675977.25,20179.057,262962,0,0,0,1758.1697 +6833,8330,14861,14860,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.8969269,4.8217945,10,6,188.71855,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4292884,4.964324,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,3,5,2,1,603.5,675977.25,20179.057,262962,0,0,0,1758.1697 +6834,8331,14862,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,8.2650347,8.5838079,0,0,-1017.1,0,2,1,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.2734513,8.6611824,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,775,221076.55,-29458.381,366037.19,59001.113,11786.608,0,3517.2891 +6835,8332,14863,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1116.9728,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9206986,0,45.4,29.58,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1557,-5297.4204,0,0,0,0,0,1794.9695 +6836,8333,14864,14865,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.1442785,8.30548,41,0,58.520859,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8090868,8.4858532,49.2,47.5,57.34,50.6,6.666666666666667,1,1,0,0,6,9,4,1,1190,2073768.5,818437.94,984095.5,0,0,0,4989.623 +6836,8333,14865,14864,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7843924,6.5802798,41,0,11.99561,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2920332,6.7456155,57.34,50.6,49.2,47.5,8.333333333333334,1,1,0,0,0,9,4,1,1190,2073768.5,818437.94,984095.5,0,0,0,4989.623 +6837,8334,14866,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,9.4972849,9.4582815,0,0,0,-909.08447,-9,2,2,2021,20,8,70,0,1,8,0,23.49966,23.49966,.05,.05,0,0,0,0,0,0,1,1,0,.18625863,0,28.33,62.63,-9,-9,1.666666666666667,1,1,0,1,6,4,5,0,525,411894.72,192343.78,130869.95,120251.08,0,0,8175.6357 +6838,8335,14867,-9,14869,14868,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.98889,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,733,137672.19,-9648.9658,129327.62,22818.148,13161.295,0,1786.1462 +6838,8335,14868,14869,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,8.283246,8.4271851,0,13,16,20.473763,0,-9,-9,2021,9,0,43,37,1,0,0,9.4075365,9.4075365,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.75,48.57,52.54,48.71,10,1,1,0,0,15,2,3,1,733,137672.19,-9648.9658,129327.62,22818.148,13161.295,0,1786.1462 +6838,8335,14869,14868,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,17,-16,27.9764,0,3,3,2021,10,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,52.54,48.71,58.75,48.57,5,1,1,0,0,14,2,3,1,733,137672.19,-9648.9658,129327.62,22818.148,13161.295,0,1786.1462 +6839,8336,14870,-9,14871,14874,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-863.47552,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14871,14874,-9,-9,1,0,27,1,3,0,3,3,-9,0,2,0,0,0,2,-13,77.655327,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.69,33.87,52.82,53.97,5,1,1,0,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14872,-9,14871,14874,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-930.95215,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14873,-9,14871,14874,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-851.75861,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6839,8336,14874,14871,-9,-9,1,1,40,1,3,0,2,2,-9,0,4,8.9582062,8.7751236,0,2,13,91.346672,0,2,2,2021,9,0,48,41,1,0,0,17.383718,17.383718,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,44.69,33.87,6.666666666666667,1,1,0,0,4,2,4,0,1403,233411.81,198005.27,108301.62,77371.797,301.51682,0,4185.1406 +6840,8337,14875,14876,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.7443628,7.5521274,34,6,-85.332474,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,45.601601,0,0,1,1,0,0,7.6841731,37.6,14.31,27.09,51.08,0,1,1,0,0,0,6,3,0,1158,406789.5,335475.94,141362.69,0,0,0,2592.9863 +6840,8337,14876,14875,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,33,-6,56.832867,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.09,51.08,37.6,14.31,1.666666666666667,1,1,0,0,2,6,3,0,1158,406789.5,335475.94,141362.69,0,0,0,2592.9863 +6841,8338,14877,14878,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.245285,7.6624022,54,0,-60.304176,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5656323,50.14,36.45,62.42,32.41,6.666666666666667,1,1,0,0,0,5,3,1,619,797887.38,438351.28,229082.88,0,0,1151.2815,1796.4447 +6841,8338,14878,14877,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,54,0,-126.46939,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9413753,0,62.42,32.41,50.14,36.45,10,1,1,0,0,0,5,3,1,619,797887.38,438351.28,229082.88,0,0,1151.2815,1796.4447 +6842,8339,14879,14880,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,62,-3,-99.607635,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0501144,0,52,45,38.33,46.98,8,1,1,0,0,0,10,2,1,1009,355738.91,27766.369,220528.75,0,0,0,1537.126 +6842,8339,14880,14879,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,6.1062803,5.9518018,62,3,-20.041445,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2899418,6.0905542,38.33,46.98,52,45,10,1,1,0,0,0,10,2,1,1009,355738.91,27766.369,220528.75,0,0,0,1537.126 +6843,8340,14881,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.5216255,8.760931,0,0,0,-1063.4094,0,3,-9,2021,8,0,37,38,1,0,0,16.480783,16.480783,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,145,65064.242,64473.605,0,0,742.16467,0,2121.8477 +6844,8341,14882,14884,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,9.2260199,9.215559,0,6,1,15.721279,0,2,2,2021,6,0,40,40,1,0,0,28.738297,28.738297,0,0,0,0,0,0,0,0,1,1,0,8.777914,0,57.06,57.76,62.39,56.71,0,1,1,0,0,6,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6844,8341,14883,-9,14882,14884,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4578,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6844,8341,14884,14882,-9,-9,1,1,39,0,2,0,3,3,-9,0,5,0,0,0,6,-1,52.472519,0,3,2,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5301828,0,62.39,56.71,57.06,57.76,10,1,1,0,0,0,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6844,8341,14885,-9,14882,14884,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.62048,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,1068.25,-77925.711,18160.156,231574.19,145755.78,79143.688,0,7283.6973 +6845,8342,14886,14887,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,40,2,37.122265,0,3,2,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,43.447384,0,0,1,1,0,0,0,51.26,36.16,45.07,38.73,0,1,1,0,0,0,1,2,0,766,62178.5,115397.19,0,0,0,0,946.72791 +6845,8342,14887,14886,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.8458724,6.033772,40,-2,76.278168,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.8693438,5.9541626,45.07,38.73,51.26,36.16,5,1,1,0,0,0,1,2,0,766,62178.5,115397.19,0,0,0,0,946.72791 +6846,8343,14888,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.6743999,7.4519224,0,0,-887.09631,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5140705,8.0926228,40.87,46.49,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1419,812285.19,254994.31,313946.09,0,0,0,2195.5923 +6847,8344,14889,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.9733458,7.9257088,5.6646399,0,0,-977.17395,0,2,1,2021,10,0,50,60,1,0,0,7.5682077,7.5682077,.05,.05,0,0,0,0,0,0,1,1,0,0,6.3032727,51.47,53.17,-9,-9,5,1,1,0,0,8,7,4,1,321,294930.22,-35290.359,288686.84,168306.63,0,0,1636.9817 +6847,8344,14890,-9,14889,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1102.4066,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1616371,0,48,59,-9,-9,7,1,1,0,0,0,7,4,1,321,294930.22,-35290.359,288686.84,168306.63,0,0,1636.9817 +6848,8345,14891,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,9.7388353,9.3179274,0,0,0,-985.52203,0,2,1,2021,11,4,42,49,1,4,0,53.293674,53.293674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.7,60.44,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,880,351517.56,57087.879,269613.63,34336.145,0,0,6247.5098 +6849,8346,14892,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.8918467,5.8380651,0,0,-972.34662,0,3,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9173808,34.17,58.8,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,614,265126.5,-81939.688,0,0,0,0,-100.93694 +6850,8347,14893,-9,14896,14894,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1178.3322,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6850,8347,14894,14896,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,9.3875809,9.3801298,0,10,4,20.459005,0,2,2,2021,10,2,43,37,1,2,0,28.955173,28.955173,.05,.05,0,0,0,0,0,0,1,1,0,7.7504082,0,40.75,58.26,43.67,61.06,8.333333333333334,1,1,0,0,11,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6850,8347,14895,-9,14896,14894,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.8311,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6850,8347,14896,14894,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.1844063,7.3778653,0,10,-4,113.0397,0,2,2,2021,9,1,25,16,1,1,0,6.8048368,6.8048368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.67,61.06,40.75,58.26,10,1,1,0,0,10,2,5,1,1010.25,-6382.3438,26797.813,228840.11,159170.67,29158.348,0,4614.979 +6851,8348,14897,-9,14898,14899,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-879.63159,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,1,1438.3334,341467.34,151474.19,209429.56,68467.633,0,0,1289.9099 +6851,8348,14898,14899,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.5327487,7.3581839,0,27,-1,75.749268,0,2,2,2021,8,1,25,25,1,1,0,9.3517008,9.3517008,0,0,0,0,0,0,0,0,1,1,0,0,0,41.4,47.36,44.53,56.37,6.666666666666667,1,1,0,0,9,9,2,1,1438.3334,341467.34,151474.19,209429.56,68467.633,0,0,1289.9099 +6851,8348,14899,14898,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,27,1,19.79455,0,-9,-9,2021,7,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.53,56.37,41.4,47.36,8.333333333333334,1,1,1,0,9,9,2,1,1438.3334,341467.34,151474.19,209429.56,68467.633,0,0,1289.9099 +6851,8349,14900,-9,14898,14899,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-964.9408,-9,3,2,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,3,9,1,1,256,0,0,0,0,0,0,302.59448 +6852,8350,14901,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.0147438,8.6062737,0,0,0,-918.24121,0,3,3,2021,8,1,43,37,1,1,0,18.355076,18.355076,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,13,10,5,1,564,629162.25,500603.56,145834.25,0,0,0,1675.9385 +6853,8351,14902,14903,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.111949,7.8521366,0,9,0,-89.754295,0,2,1,2021,13,1,42,47,1,1,0,10.050143,10.050143,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,42.71,54.48,5,1,1,0,0,12,9,4,0,708,45360.078,99979.766,0,0,10771.299,6253.3169,2388.7588 +6853,8351,14903,14902,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.6833801,7.5044532,0,9,0,-7.2709646,0,-9,-9,2021,15,3,40,40,1,3,0,6.3854098,6.3854098,.05,.05,0,0,0,0,0,2,0,0,0,0,0,42.71,54.48,38.22,58.43,5,1,1,0,0,8,9,4,0,708,45360.078,99979.766,0,0,10771.299,6253.3169,2388.7588 +6854,8352,14904,14905,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.7436857,8.7670317,0,1,-1,-12.162302,0,2,2,2021,6,1,40,42,1,1,0,15.317187,15.317187,0,0,0,0,0,0,0,0,0,0,0,4.7149239,0,47.23,58.08,54.2,57.49,10,1,1,0,0,10,5,5,1,903,139685.2,73039.109,160473.72,130668.72,8025.248,1129.0486,4115.4375 +6854,8352,14905,14904,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5355787,8.8981848,0,1,1,60.230953,-9,-9,-9,2021,13,2,36,0,1,2,0,18.389071,18.389071,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,47.23,58.08,8.333333333333334,1,1,0,0,2,5,5,1,903,139685.2,73039.109,160473.72,130668.72,8025.248,1129.0486,4115.4375 +6855,8353,14906,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.6013107,8.5937643,0,0,0,-983.60468,0,1,3,2021,6,0,37,43,1,0,0,19.341003,19.341003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,151,390591.78,109682.42,440314.44,80856.797,0,0,2148.0396 +6855,8353,14907,-9,14906,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-971.29053,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,9,4,1,151,390591.78,109682.42,440314.44,80856.797,0,0,2148.0396 +6856,8354,14908,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.2278104,4.9007025,0,0,-1087.5829,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.204262,5.0506353,53.97,35.74,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,503,184495.19,29381.715,166970.06,0,0,0,456.52158 +6857,8355,14909,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,7.1516623,7.1812472,0,0,0,-936.57196,0,2,-9,2021,6,0,1,32,1,0,0,162.37239,162.37239,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,1,3,0,2183,-47871.578,37237.539,0,0,0,0,1458.054 +6858,8356,14910,14911,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,0,0,0,10,-8,-80.834724,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,50.03,52.62,6.666666666666667,2,3,1,0,3,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6858,8356,14911,14910,-9,-9,1,1,58,0,1,0,1,1,-9,0,3,7.1786652,7.3607159,0,10,8,1.1786797,0,2,2,2021,11,0,30,8,1,0,0,5.9900775,5.9900775,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52.65,51.64,6.666666666666667,2,3,0,0,13,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6858,8356,14912,-9,14910,14911,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-955.49036,-9,3,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6858,8356,14913,-9,14910,14911,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-883.74225,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,6,2,1,1282,52311.715,-23599.855,109294.85,12367.227,0,525.42493,1582.1147 +6859,8357,14914,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.299027,7.2375894,0,0,-992.02362,0,1,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.5954847,7.6228137,40.19,42.36,-9,-9,6.666666666666667,4,2,0,0,0,9,3,1,298,391689.34,128606.8,83775.023,0,0,0,1250.0453 +6860,8358,14915,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.6961207,7.9577765,0,0,-1001.4963,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.4981527,50.41,53.71,-9,-9,10,1,1,0,0,0,7,4,1,186,1211241.5,257737.86,970947.94,0,0,0,1643.7295 +6861,8359,14916,-9,14918,14917,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.9175,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,10,5,1,504.66666,68912.133,53504.371,176268.63,143985.34,3847.0278,0,3981.2336 +6861,8359,14917,14918,-9,-9,1,1,30,1,1,0,2,2,-9,0,3,8.6958017,8.5886612,0,6,-1,-85.012367,0,3,2,2021,12,0,55,65,1,0,0,16.836121,16.836121,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,34.27,50.22,8.333333333333334,1,1,0,0,9,10,5,1,504.66666,68912.133,53504.371,176268.63,143985.34,3847.0278,0,3981.2336 +6861,8359,14918,14917,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,7.7255721,8.1679554,0,6,1,43.415775,0,2,1,2021,22,9,37,39,1,9,0,9.7294254,9.7294254,0,0,0,0,0,0,0,0,1,1,0,0,0,34.27,50.22,30.94,61.65,8.333333333333334,1,1,0,0,8,10,5,1,504.66666,68912.133,53504.371,176268.63,143985.34,3847.0278,0,3981.2336 +6862,8360,14919,14920,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.5103197,8.572422,45,5,79.225624,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0437317,8.6767654,60.12,54.8,60.12,54.8,10,1,1,0,0,0,6,4,1,659.5,1920082.8,930394.88,250463.41,0,0,0,4719.0981 +6862,8360,14920,14919,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.9403067,7.6268282,45,-5,104.44542,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4599881,60.12,54.8,60.12,54.8,10,1,1,0,0,0,6,4,1,659.5,1920082.8,930394.88,250463.41,0,0,0,4719.0981 +6863,8361,14921,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.49897,8.1733961,0,0,0,-1086.1686,0,1,2,2021,9,2,42,0,1,2,0,9.6249781,9.6249781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.44,56.93,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,2734,-27611.129,27961.641,0,0,2990.2939,7550.6304,1524.6536 +6864,8362,14922,14923,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,12,0,-118.84299,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,56.82,41.72,54.69,45.05,8.333333333333334,1,1,0,0,2,12,2,1,4098,264714.53,0,243900.38,0,0,0,1846.3665 +6864,8362,14923,14922,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.27565,4.0487251,12,0,41.044041,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,4.5927787,4.5180016,54.69,45.05,56.82,41.72,10,1,1,0,0,5,12,2,1,4098,264714.53,0,243900.38,0,0,0,1846.3665 +6865,8363,14924,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,6.2130623,6.3428602,0,0,-1075.5018,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,6.9222574,0,67.121788,0,1,1,0,3.0419216,5.7506194,39.49,14.5,-9,-9,10,1,1,0,0,3,12,2,1,237,771.48431,-4297.5483,0,0,0,0,1406.0525 +6866,8364,14925,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,3,0,7.9755678,8.0964422,0,0,-903.41986,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9908795,54,43,-9,-9,7,1,1,0,0,0,2,4,1,310,803423.56,65507.5,525063.56,0,0,0,2890.408 +6867,8365,14926,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.4593782,9.3651619,0,0,0,-1066.267,0,1,1,2021,12,0,46,40,1,0,0,32.046124,32.046124,.05,.05,0,0,0,0,0,0,0,0,0,8.0593433,0,41.53,63.13,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,834,1550111.5,1183133.9,319399.47,60632.371,0,0,3525.9612 +6868,8366,14927,14928,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.9788623,8.0632668,51,1,-58.297192,0,3,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8826027,52.4,52.91,43.48,60.97,8.333333333333334,1,1,0,0,7,5,4,1,726.5,1273625.4,562129.13,248974.08,0,0,0,3160.8379 +6868,8366,14928,14927,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8880501,8.1123495,51,-1,-17.253983,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0912352,7.6357079,43.48,60.97,52.4,52.91,5,1,1,0,0,4,5,4,1,726.5,1273625.4,562129.13,248974.08,0,0,0,3160.8379 +6869,8367,14929,14932,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.7208986,8.6754904,0,23,4,-41.364841,0,-9,-9,2021,12,0,48,40,1,0,0,12.529665,12.529665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,43.95,53.15,5,1,1,0,0,14,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6869,8367,14930,-9,14932,14929,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1043.101,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9875093,0,48.72,53.15,-9,-9,8.333333333333334,1,1,1,0,0,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6869,8367,14931,-9,14932,14929,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.13611,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6869,8367,14932,14929,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,7.7458105,7.8141999,0,23,-4,-4.3919101,0,2,2,2021,12,1,22,22,1,1,0,8.8788977,8.8788977,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,35.2,48.71,8.333333333333334,1,1,0,0,14,8,4,1,1717.75,542206.81,175748.66,497067.5,0,0,0,3236.3818 +6870,8368,14933,14934,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.254117,8.0082073,5.1862154,38,-4,-20.3508,0,2,3,2021,6,0,36,38,1,0,0,12.082394,12.082394,.05,.05,0,0,0,0,0,14.5,1,1,0,0,5.4035926,61.12,51.57,43.12,49.06,8.333333333333334,1,1,0,0,12,10,4,1,1124,811890.5,530625.81,201649,0,771.23663,879.77338,2203.873 +6870,8368,14934,14933,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.3900552,5.2626376,9,4,17.95887,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.330195,43.12,49.06,61.12,51.57,8.333333333333334,1,1,0,0,9,10,4,1,1124,811890.5,530625.81,201649,0,771.23663,879.77338,2203.873 +6871,8369,14935,14936,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.0110669,7.3621993,20,13,47.749111,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5817266,7.4899278,54.53,40.91,51.39,59.18,8.333333333333334,1,1,0,0,0,2,2,1,673,483350.25,72141.305,189560.19,0,0,0,2745.3174 +6871,8369,14936,14935,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,5.3455868,5.0576715,22,-13,-71.299751,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7367492,5.1304808,51.39,59.18,54.53,40.91,8.333333333333334,1,1,0,0,2,2,2,1,673,483350.25,72141.305,189560.19,0,0,0,2745.3174 +6872,8370,14937,14939,-9,-9,1,1,36,1,1,0,2,2,-9,0,2,7.7113905,7.84588,0,5,5,-83.603439,0,-9,-9,2021,10,0,42,0,1,0,0,7.2385316,7.2385316,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.5,46.83,28.22,30.53,8.333333333333334,1,1,0,0,2,8,3,0,1066.6666,342140.97,83329.391,332052.75,191600.48,0,7403.9453,1843.5704 +6872,8370,14938,-9,14939,14937,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-897.86798,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,3,0,1066.6666,342140.97,83329.391,332052.75,191600.48,0,7403.9453,1843.5704 +6872,8370,14939,14937,-9,-9,1,0,31,1,1,0,2,2,-9,0,2,0,0,0,5,-5,-51.305809,0,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.22,30.53,40.5,46.83,5,1,1,0,0,4,8,3,0,1066.6666,342140.97,83329.391,332052.75,191600.48,0,7403.9453,1843.5704 +6873,8371,14940,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.9862113,7.9751782,0,0,0,-985.80017,-9,2,2,2021,16,5,37,0,1,5,0,7.8194513,7.8194513,0,0,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,758,80693.969,0,0,0,0,0,1063.882 +6874,8372,14941,-9,14942,14943,1,1,18,0,1,1,2,0,0,1,3,0,0,0,0,0,-1036.0197,-9,3,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.34,53.08,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,588,-23992.963,0,0,0,0,0,574.42944 +6874,8373,14942,14943,-9,-9,1,0,46,0,1,0,3,3,-9,0,3,7.659833,7.5753713,3.9323967,6,-3,100.06645,0,3,3,2021,10,0,10,7,1,0,0,23.118454,23.118454,.05,.05,0,0,0,0,0,2,1,1,0,3.4707625,0,53.32,40.19,40.66,49.32,6.666666666666667,1,1,0,0,7,6,4,1,613,570821.81,410473.16,132540.91,62526.406,0,563.63324,4074.4902 +6874,8373,14943,14942,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7643957,8.8821554,0,6,3,-24.931362,0,-9,-9,2021,12,0,55,51,1,0,0,20.038504,20.038504,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.66,49.32,53.32,40.19,5,1,1,0,0,7,6,4,1,613,570821.81,410473.16,132540.91,62526.406,0,563.63324,4074.4902 +6874,8373,14944,-9,14942,14943,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.99384,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,613,570821.81,410473.16,132540.91,62526.406,0,563.63324,4074.4902 +6875,8374,14945,14946,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,0,0,0,5,21,-139.03575,0,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.87,51.67,51.06,38.27,5,1,1,0,1,0,9,2,0,901.5,16598.234,18991.168,0,0,0,0,1403.6738 +6875,8374,14946,14945,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.2040386,7.2789955,0,5,-21,-7.9366202,0,-9,-9,2021,12,0,24,0,1,0,0,4.9938369,4.9938369,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.06,38.27,29.87,51.67,6.666666666666667,1,1,0,1,0,9,2,0,901.5,16598.234,18991.168,0,0,0,0,1403.6738 +6876,8375,14947,14948,-9,-9,1,0,56,0,0,0,1,1,-9,1,5,9.4610081,9.7974501,0,25,-1,22.981535,-9,-9,-9,2021,6,1,85,0,1,1,0,18.937313,18.937313,0,0,0,0,0,0,0,27,1,1,0,6.9091368,0,57.06,57.76,48.37,9.470000000000001,8.333333333333334,1,1,0,0,8,9,5,1,875,1235294.6,116987.34,1283408.8,223251.06,0,0,7794.7046 +6876,8375,14948,14947,-9,-9,1,1,57,0,0,0,1,1,-9,0,1,0,8.1512814,8.2173643,25,1,14.762868,-9,-9,-9,2021,12,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,8.1860456,48.37,9.470000000000001,57.06,57.76,5,1,1,0,0,4,9,5,1,875,1235294.6,116987.34,1283408.8,223251.06,0,0,7794.7046 +6876,8376,14949,-9,14947,14948,1,1,26,0,0,0,3,3,-9,1,4,0,0,0,0,0,-861.7749,-9,1,1,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,33.66,56.35,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,515,-126718.22,0,0,0,0,0,276.57083 +6877,8377,14950,14951,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3500156,8.207345,0,11,-3,-81.452271,0,-9,3,2021,7,0,39,39,1,0,0,8.6976013,8.6976013,0,0,.05,0,0,0,0,0,1,0,1,0,0,55.79,52.62,55.61,50.3,8.333333333333334,1,1,0,0,11,8,4,0,262.5,298465.34,155171.09,296959.88,0,0,0,2868.522 +6877,8377,14951,14950,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.776958,8.0587101,0,11,3,75.324776,0,-9,-9,2021,11,1,38,38,1,1,0,7.6930995,7.6930995,0,0,0,0,0,0,0,0,1,0,1,0,0,55.61,50.3,55.79,52.62,6.666666666666667,1,1,0,0,12,8,4,0,262.5,298465.34,155171.09,296959.88,0,0,0,2868.522 +6877,8378,14952,-9,14951,14950,1,1,31,0,0,0,3,3,-9,1,3,0,0,0,0,0,-917.16382,-9,2,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,1,0,0,8,2,0,874,37333.777,0,0,0,0,0,414.44284 +6878,8379,14953,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,7.2809229,7.1568604,0,0,0,-1111.4042,0,2,2,2021,10,0,16,16,1,0,0,6.7673655,6.7673655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,71.13,36.21,-9,-9,5,1,1,0,0,8,13,2,0,766.66669,126465.43,-9212.0518,0,0,0,0,1826.5599 +6878,8379,14954,-9,14953,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.6031,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,766.66669,126465.43,-9212.0518,0,0,0,0,1826.5599 +6878,8379,14955,-9,14953,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-934.20532,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,2,0,766.66669,126465.43,-9212.0518,0,0,0,0,1826.5599 +6879,8380,14956,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1117.8767,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.27,25.37,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,2033,68794.422,0,0,0,0,0,1683.3552 +6880,8381,14957,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.8426113,7.5771527,0,0,-942.51282,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4420342,6.2901745,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,392,654702.5,238502,237038.48,0,0,0,2860.3403 +6881,8382,14958,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,7.7680326,7.3431993,5.2029605,0,0,-946.9776,0,-9,-9,2021,4,0,30,24,1,0,0,6.6181149,6.6181149,.05,.05,0,0,0,7.4949946,0,0,1,1,0,5.8286467,5.4596062,62.39,56.71,-9,-9,10,1,1,0,0,8,7,3,1,627,154036.94,107537.05,7801.2866,0,0,0,1119.1067 +6882,8383,14959,14960,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,7.8912754,7.9185672,0,8,1,123.38216,0,3,3,2021,17,5,46,41,1,5,0,6.919982,6.919982,.05,.05,0,0,0,0,0,0,1,1,0,3.1718006,0,40.44,35.55,45.91,59.89,6.666666666666667,1,1,0,0,9,7,4,1,1948.5,951887.56,516461.88,297200,0,858.20483,0,3341.7229 +6882,8383,14960,14959,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1187248,8.2677031,0,8,-1,-34.768642,0,3,3,2021,15,3,38,38,1,3,0,13.574637,13.574637,.05,.05,0,0,0,0,0,2,1,1,0,3.0852239,0,45.91,59.89,40.44,35.55,6.666666666666667,1,1,0,0,9,7,4,1,1948.5,951887.56,516461.88,297200,0,858.20483,0,3341.7229 +6883,8384,14961,14962,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.7477589,8.2817402,53,5,181.81023,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2759428,53.07,52.7,52,45,8.333333333333334,1,1,0,0,0,13,4,1,507,580306.25,184266.94,194795.38,0,0,0,3658.6445 +6883,8384,14962,14961,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,-5,-106.4888,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,53.07,52.7,8,4,1,0,0,0,13,4,1,507,580306.25,184266.94,194795.38,0,0,0,3658.6445 +6884,8385,14963,14964,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,9.2752895,9.0572882,0,6,1,-.021279592,0,-9,-9,2021,11,0,40,48,1,0,0,24.348043,24.348043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,49.04,55.86,8.333333333333334,1,1,0,0,5,8,5,0,1051.5,453596.03,-5575.0127,0,0,21067.939,0,5145.8809 +6884,8385,14964,14963,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.794754,8.572444,0,6,-1,73.952637,0,2,2,2021,10,0,45,43,1,0,0,15.259588,15.259588,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.06,57.76,5,1,1,0,0,8,8,5,0,1051.5,453596.03,-5575.0127,0,0,21067.939,0,5145.8809 +6885,8386,14965,14966,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.3255024,8.4705267,0,40,1,18.94569,0,3,3,2021,3,0,38,38,1,0,0,11.758868,11.758868,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,42.57,49.62,10,1,1,0,0,7,1,4,0,973.5,1481306.8,1026626.4,170716.81,0,0,0,2613.3267 +6885,8386,14966,14965,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,6.860929,7.1072531,0,40,-1,-10.738937,0,2,2,2021,8,0,18,18,1,0,0,7.6446686,7.6446686,0,0,0,0,0,0,0,0,0,0,0,0,0,42.57,49.62,60.12,54.8,10,1,1,0,0,9,1,4,0,973.5,1481306.8,1026626.4,170716.81,0,0,0,2613.3267 +6886,8387,14967,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,5.1056347,5.1595187,0,0,-1139.9487,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.95579,63.82,33.09,-9,-9,10,1,1,0,0,0,12,2,0,245,-106934.66,79420.711,0,0,0,0,1681.3993 +6887,8388,14968,14969,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,9.0569687,9.1844397,0,7,7,104.8618,0,2,2,2021,10,2,35,45,1,2,0,30.133242,30.133242,.05,.05,0,0,0,0,0,0,0,0,0,7.880126,0,41.53,63.13,56.92,49.39,8.333333333333334,1,1,0,0,11,8,5,1,777.5,310545.88,230344,257493.47,100923.09,30151.445,0,6113.7412 +6887,8388,14969,14968,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.1224594,8.8881674,0,7,-7,-40.852451,0,-9,-9,2021,6,0,50,55,1,0,0,15.576317,15.576317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.92,49.39,41.53,63.13,8.333333333333334,1,1,0,0,6,8,5,1,777.5,310545.88,230344,257493.47,100923.09,30151.445,0,6113.7412 +6888,8389,14970,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.751812,7.8878937,0,0,-934.7514,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1145508,8.1859722,49,47,-9,-9,7,1,1,0,0,0,9,4,1,305,1094447.6,244287.41,578034.31,0,0,0,1824.017 +6889,8390,14971,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.264605,6.9020176,0,0,-1172.6047,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4683924,6.8905244,44.34,44.44,-9,-9,5,1,1,0,0,4,2,3,1,382,401626.66,123691.76,207055.72,0,0,0,1017.7137 +6890,8391,14972,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.8132801,6.9083209,0,0,-1010.3337,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.1240258,7.3488784,63.1,45.09,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,880,108387.02,91960.383,0,0,-2773.5212,0,1383.2095 +6891,8392,14973,-9,14974,-9,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1086.1599,-9,3,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,17.39,57.4,-9,-9,1.666666666666667,1,1,1,1,0,10,2,0,281.5,224151.06,21673.82,0,0,0,-446.84155,59.260849 +6891,8392,14974,-9,-9,-9,1,0,41,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1166.9218,0,-9,2,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.1,29.96,-9,-9,0,1,1,0,0,0,10,2,0,281.5,224151.06,21673.82,0,0,0,-446.84155,59.260849 +6892,8393,14975,14977,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.7775612,8.3433189,0,29,0,-8.2180433,0,-9,-9,2021,9,0,36,35,1,0,0,13.586462,13.586462,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.47,59.4,8.333333333333334,1,1,0,0,9,9,4,1,432,589903.13,172014.31,473549.78,19654.346,4323.8789,3371.6121,3444.6938 +6892,8393,14976,-9,14977,14975,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1052.829,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9395669,0,60.02,56.42,-9,-9,10,1,1,0,0,0,9,4,1,432,589903.13,172014.31,473549.78,19654.346,4323.8789,3371.6121,3444.6938 +6892,8393,14977,14975,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.9185815,6.9351373,0,29,0,-95.756516,0,-9,-9,2021,9,0,18,17,1,0,0,7.6854672,7.6854672,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,57.33,53.46,10,1,1,0,0,9,9,4,1,432,589903.13,172014.31,473549.78,19654.346,4323.8789,3371.6121,3444.6938 +6892,8394,14978,-9,14977,14975,1,0,18,0,1,0,2,2,1,0,3,7.827713,7.7522073,0,0,0,-1033.4445,-9,2,2,2021,9,2,38,0,1,2,1,9.2099266,9.2099266,.05,.05,0,0,0,0,0,0,1,1,0,2.0210073,0,49.92,47.32,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,192,-4945.9316,17461.652,0,0,-903.6568,0,1249.0148 +6893,8395,14979,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.1449156,8.1235294,0,0,0,-1001.1628,0,-9,-9,2021,15,3,40,40,1,3,0,8.0932245,8.0932245,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.06,64.42,-9,-9,5,1,1,0,0,7,6,4,1,743,-57343.957,10372.784,0,0,0,0,1056.7786 +6894,8396,14980,14982,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,8.6781864,8.7068396,0,7,4,-53.334839,0,2,2,2021,7,0,43,37,1,0,0,16.5881,16.5881,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.4,59.87,8.333333333333334,1,1,0,0,7,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6894,8396,14981,-9,14982,14980,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.566,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6894,8396,14982,14980,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,7.9366932,8.027277,0,7,-4,-58.988659,0,2,2,2021,10,0,21,25,1,0,0,17.592421,17.592421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.4,59.87,51.24,58.84,5,1,1,0,0,7,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6894,8396,14983,-9,14982,14980,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.70313,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1109,279021.41,150014.06,152966.19,153729.22,17667.574,0,4049.7546 +6895,8397,14984,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,4.8223147,5.2337117,0,0,-1087.28,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4079866,5.2162094,32.15,35.46,-9,-9,1.666666666666667,1,1,0,0,2,10,2,1,398,274867.03,0,124841.02,0,0,0,682.65607 +6896,8398,14985,14986,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.133872,8.1125011,0,25,7,-79.528786,0,-9,-9,2021,12,0,40,40,1,0,0,12.326623,12.326623,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,51.14,60.45,6.666666666666667,1,1,0,0,13,10,4,1,565,1558412,1320584.1,303364.31,133574.75,2389.8506,3108.113,2707.2163 +6896,8398,14986,14985,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.7624869,8.0151434,0,25,-7,90.823936,0,2,2,2021,9,0,30,25,1,0,0,10.396124,10.396124,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,46.9,56.66,8.333333333333334,1,1,0,0,13,10,4,1,565,1558412,1320584.1,303364.31,133574.75,2389.8506,3108.113,2707.2163 +6897,8399,14987,-9,14989,14988,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.5474,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,467.66666,88145.563,13346.208,221801.31,116750.09,10402.099,10898.141,6964.8882 +6897,8399,14988,14989,-9,-9,1,1,30,1,1,0,2,2,-9,0,5,9.4417133,9.5350246,0,8,0,-89.812981,0,1,2,2021,8,0,55,55,1,0,0,29.314339,29.314339,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.65,52.89,54.79,55.86,8.333333333333334,1,1,0,0,7,12,5,1,467.66666,88145.563,13346.208,221801.31,116750.09,10402.099,10898.141,6964.8882 +6897,8399,14989,14988,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,8.2654438,7.9034219,0,8,0,-84.913132,0,2,3,2021,6,0,37,40,1,0,0,11.33487,11.33487,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,58.65,52.89,8.333333333333334,1,1,0,0,11,12,5,1,467.66666,88145.563,13346.208,221801.31,116750.09,10402.099,10898.141,6964.8882 +6898,8400,14990,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.2043266,7.9119573,0,0,0,-1027.0713,0,-9,-9,2021,11,0,41,41,1,0,0,11.316247,11.316247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.51,53.94,-9,-9,6.666666666666667,1,1,0,0,13,11,4,0,155,91914.641,28990.74,0,0,0,0,1413.3239 +6899,8401,14991,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.0371943,6.1253929,0,0,-951.43414,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5673738,61.43,48.88,-9,-9,8.333333333333334,1,1,0,0,11,9,2,0,277,561522.13,121693.6,155869.25,0,0,1548.4518,991.37866 +6900,8402,14992,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.0539293,7.8025279,0,0,0,-913.50922,0,3,3,2021,11,0,37,37,1,0,0,9.42694,9.42694,0,0,0,0,0,0,0,0,0,0,0,4.6980124,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,120,-91699.844,0,0,0,0,0,1621.1193 +6901,8403,14993,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.2401295,5.3972926,0,0,-1041.2194,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,7.9313259,0,0,1,1,0,5.0950494,4.9860144,57.98,29.33,-9,-9,10,1,1,0,0,0,9,2,1,94,444803.19,0,455485.03,0,0,0,1155.7926 +6902,8404,14994,14995,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,9.7426109,9.6454449,0,6,4,114.39572,0,2,2,2021,11,0,40,40,1,0,0,35.043163,35.043163,.05,.05,0,0,0,0,0,0,0,0,0,7.421771,0,57.16,56.15,47.62,41.35,6.666666666666667,2,3,0,0,4,5,5,1,524.5,2918885.5,1109059.1,716517,332865.06,0,0,8454.2578 +6902,8404,14995,14994,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.3869348,7.1354351,0,25,-4,47.115955,0,3,3,2021,15,3,25,25,1,3,0,7.6674857,7.6674857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.62,41.35,57.16,56.15,5,2,3,0,0,9,5,5,1,524.5,2918885.5,1109059.1,716517,332865.06,0,0,8454.2578 +6902,8405,14996,-9,14995,14994,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1016.0065,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.97,53.69,-9,-9,10,2,3,0,0,0,5,1,1,285,83967.578,0,0,0,0,0,0 +6903,8406,14997,14998,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,2.8730702,2.4488552,59,6,-49.365993,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9403174,2.8327594,53.2,19.32,56.5,37.6,5,1,1,0,0,0,11,2,1,577.5,339671.44,117610.66,161896.7,0,0,0,2170.0542 +6903,8406,14998,14997,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.036304,6.9880176,59,-6,-86.246201,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6752086,7.0465312,56.5,37.6,53.2,19.32,6.666666666666667,1,1,0,0,0,11,2,1,577.5,339671.44,117610.66,161896.7,0,0,0,2170.0542 +6904,8407,14999,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.6397591,8.5692053,0,0,0,-903.41968,0,3,1,2021,10,0,45,18,1,1,0,14.241546,14.241546,0,0,0,0,0,0,0,0,0,0,0,7.9194355,0,50.93,54.77,-9,-9,6.666666666666667,2,3,0,0,12,8,5,1,893,384353.66,0,414519.59,89512.547,3915.0962,0,2974.2451 +6905,8408,15000,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.1443534,6.7833314,0,0,-1112.2397,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5296183,6.5017142,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,667,135374.47,193118.42,203270.84,0,7634.6777,0,1125.6622 +6906,8409,15001,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.2733378,7.2055502,0,0,-1059.3901,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0097847,7.2757702,52.2,48.95,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,302,452729.25,171126.02,143627.33,0,0,0,1457.1334 +6907,8410,15002,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-912.77966,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,21.76,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,629,83789.18,0,77447.289,0,0,2035.9303,942.33209 +6908,8411,15003,-9,-9,15005,1,0,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-928.1012,-9,-9,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,4,2,-9,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8411,15004,-9,-9,15005,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1034.7137,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8411,15005,-9,15008,15007,1,1,40,0,3,0,2,2,-9,0,3,0,0,0,0,0,-1053.6619,0,3,2,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,52,-9,-9,5,2,3,1,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8411,15006,-9,-9,15005,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1115.4949,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,4,1,0,2043.5,-64755.664,0,0,0,0,0,823.63727 +6908,8412,15007,15008,-9,-9,1,1,64,0,3,0,3,3,-9,0,3,0,0,0,4,-4,-158.97031,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,55.56,51.53,49,47,8.333333333333334,2,3,0,1,1,4,2,0,2860.5,481576.03,326265,149442.05,0,0,0,1972.1421 +6908,8412,15008,15007,-9,-9,1,0,68,0,3,0,3,3,-9,0,3,8.0320444,8.0006514,0,4,4,-85.907692,0,-9,-9,2021,11,0,16,40,1,2,0,19.825581,19.825581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,47,55.56,51.53,7,2,3,0,0,1,4,2,0,2860.5,481576.03,326265,149442.05,0,0,0,1972.1421 +6909,8413,15009,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,7.0960078,7.001718,0,0,-981.8764,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0094452,6.978076,55.42,51.42,-9,-9,1.666666666666667,4,2,0,0,0,9,2,1,1442,722249.25,125583.1,378515.03,0,-29.580029,0,1847.5266 +6910,8414,15010,15011,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,7.8330069,8.4607325,0,7,2,2.6963341,0,-9,-9,2021,11,1,55,55,1,1,0,7.5666833,7.5666833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,49.04,55.86,6.666666666666667,1,1,0,0,8,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6910,8414,15011,15010,-9,-9,1,0,28,0,2,0,2,2,-9,0,3,4.292182,4.264905,0,7,-2,-132.23009,0,-9,-9,2021,6,0,48,48,1,0,0,.16194259,.16194259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,51.17,49.39,8.333333333333334,1,1,0,0,3,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6910,8414,15012,-9,15011,15010,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.2091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6910,8414,15013,-9,15011,15010,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.3567,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,327,-12330.299,-39239.168,0,0,0,0,2480.9294 +6911,8415,15014,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.4527807,8.5280094,0,0,0,-1060.2543,0,3,3,2021,13,1,30,37,1,1,0,17.914572,17.914572,0,0,.05,0,0,0,0,0,1,1,0,4.3183818,0,52.06,41.16,-9,-9,8.333333333333334,1,1,0,0,11,11,4,1,379,111149.52,21612.631,69933.516,0,0,0,1155.4674 +6912,8416,15015,15018,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.3388643,8.998374,0,7,2,29.477564,0,2,2,2021,8,0,42,40,1,0,0,13.293362,13.293362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.26,37.61,49.71,55.64,8.333333333333334,1,1,0,0,8,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8416,15016,-9,15018,15015,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.01508,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8416,15017,-9,15018,15015,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1101.3196,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8416,15018,15015,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.8875279,7.8968325,0,7,-2,-63.925949,0,2,1,2021,6,0,40,40,1,0,0,8.5722561,8.5722561,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,55.64,59.26,37.61,8.333333333333334,1,1,0,0,8,2,4,1,1090.5,235957.7,151383.67,189816.08,105815.11,1001.9164,7268.1128,3340.1372 +6912,8417,15019,-9,15018,15015,1,0,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1167.9092,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.78,49.92,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,2246,0,0,0,0,0,0,0 +6913,8418,15020,-9,-9,-9,1,0,67,0,1,0,3,3,-9,0,2,0,.28785664,.33956552,0,0,-986.10498,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.40164483,43.84,37.11,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,231,161495.13,-113233.39,47130.16,0,-633.42993,14771.473,189.08586 +6913,8419,15021,-9,15020,-9,1,1,46,0,1,0,2,2,-9,0,4,8.267848,8.4972563,0,0,0,-1051.152,0,3,-9,2021,9,0,35,37,1,1,0,13.529971,13.529971,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,1,12,4,1,356,429901.44,142360.28,221949.34,112172.45,4532.5298,1442.3767,3133.7871 +6913,8420,15022,-9,-9,15021,1,1,18,0,1,0,2,2,1,0,4,7.1720185,7.1338224,0,0,0,-976.1582,-9,-9,2,2021,11,0,37,0,1,2,1,3.7358527,3.7358527,.05,.05,0,0,0,0,0,0,1,1,0,1.9801909,0,47,59,-9,-9,7,1,1,0,0,1,12,3,1,456,-40061.66,-7452.084,0,0,0,0,949.74231 +6914,8421,15023,-9,15024,15026,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.3647,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6914,8421,15024,15026,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,8.7231779,8.7854042,0,10,-5,-12.623549,0,2,2,2021,11,0,55,57,1,0,0,14.3314,14.3314,.05,.05,0,0,0,0,0,0,1,1,0,1.1228936,0,48.77,60.16,46.33,55.93,8.333333333333334,1,1,0,0,9,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6914,8421,15025,-9,15024,15026,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-874.30579,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6914,8421,15026,15024,-9,-9,1,1,43,1,2,0,1,1,-9,0,3,7.9852014,8.0853043,0,14,5,6.4943647,0,2,2,2021,13,3,37,43,1,3,0,8.7901764,8.7901764,.05,.05,0,0,0,0,0,0,1,1,0,.63992292,0,46.33,55.93,48.77,60.16,3.333333333333333,1,1,0,0,8,4,4,1,964.75,199836.92,-486.37891,376206.25,189876.53,0,0,3112.1235 +6915,8422,15027,-9,15028,15034,1,1,15,0,5,1,3,0,-9,0,3,0,0,0,0,0,-967.79126,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15028,15034,-9,-9,1,0,42,0,5,0,2,2,-9,1,3,0,0,0,6,9,116.60209,0,2,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.53,47.89,57.33,53.46,8.333333333333334,1,1,0,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15029,-9,15028,15034,1,1,13,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1113.7102,-9,2,3,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15030,-9,15028,15034,1,1,5,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1129.7755,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15031,-9,15028,15034,1,1,12,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1110.2328,-9,2,3,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15032,-9,15028,15034,1,0,17,0,5,1,3,0,0,0,4,0,0,0,0,0,-916.61786,-9,2,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15033,-9,15028,15034,1,0,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1069.1125,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6915,8422,15034,15028,-9,-9,1,1,33,0,5,0,3,3,-9,0,3,6.7991338,6.9587746,0,6,0,-101.44172,0,3,3,2021,11,0,16,40,1,0,0,6.7746601,6.7746601,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,57.53,47.89,8.333333333333334,1,1,0,0,5,6,2,0,402.125,0,0,0,0,0,0,2579.854 +6916,8423,15035,-9,15037,15038,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.55542,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6916,8423,15036,-9,15037,15038,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6916,8423,15037,15038,-9,-9,1,0,38,1,2,0,1,1,-9,0,5,9.0894156,9.3944559,6.8417392,6,-2,-58.010895,0,-9,-9,2021,13,5,32,27,1,5,0,32.572598,32.572598,0,0,.05,0,0,0,0,0,1,1,0,7.5695939,0,48.77,60.16,51.83,57.2,8.333333333333334,1,1,0,0,8,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6916,8423,15038,15037,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.0527372,8.8605261,0,6,2,-146.15984,0,2,2,2021,7,0,39,35,1,0,0,24.044416,24.044416,0,0,.05,0,0,0,0,0,1,1,0,8.0745306,0,51.83,57.2,48.77,60.16,8.333333333333334,1,1,0,0,9,2,5,0,479.25,1718463.3,790447.75,695365.94,50540.406,0,0,8049.3711 +6917,8424,15039,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.9979439,9.067421,0,0,0,-979.73541,-9,2,2,2021,6,1,60,0,1,1,0,15.263234,15.263234,.05,.05,0,0,0,0,0,0,0,0,0,4.2991261,0,55.44,35.5,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,2162,115983.57,-44693.398,0,0,4125.8018,0,2398.3359 +6918,8425,15040,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,7.0021915,6.912735,0,0,-1060.9393,0,2,1,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5356827,0,21.76,49.56,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,656,23917.447,-27293.902,0,0,2600.7764,-71.683502,558.68719 +6918,8425,15041,-9,15040,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.58978,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,656,23917.447,-27293.902,0,0,2600.7764,-71.683502,558.68719 +6919,8426,15042,15043,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.536684,8.7826662,0,33,-2,-92.004066,0,3,2,2021,8,0,46,40,1,0,0,12.381461,12.381461,.05,.05,0,0,0,0,0,0,0,0,0,5.734623,0,57.16,56.15,59.13,44.84,6.666666666666667,1,1,0,0,11,9,5,0,849.5,855260,542269.5,349619.5,96496.188,0,0,3195.9973 +6919,8426,15043,15042,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.83253,7.7534623,0,33,2,50.318317,0,-9,-9,2021,12,0,38,35,1,0,0,7.6498284,7.6498284,0,0,0,0,0,0,0,0,0,0,0,0,0,59.13,44.84,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,0,849.5,855260,542269.5,349619.5,96496.188,0,0,3195.9973 +6919,8427,15044,-9,15043,15042,1,1,26,0,0,0,2,2,-9,0,4,8.6923475,8.7156019,0,0,0,-860.74982,0,2,2,2021,13,1,40,35,1,1,1,16.277534,16.277534,0,0,0,0,0,0,0,0,0,0,0,3.379925,0,40.58,60.95,-9,-9,5,1,1,0,0,11,9,5,0,1384,0,0,0,0,0,0,3025.0195 +6920,8428,15045,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,5.2649035,5.6949363,0,0,-1052.4755,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.80971,5.7960696,62.27,42.94,-9,-9,6.666666666666667,1,1,0,0,6,12,2,1,4209,154087.47,101133.79,86445.742,0,0,0,2227.7507 +6921,8429,15046,15047,-9,-9,1,1,67,0,0,0,3,3,-9,1,1,0,0,0,12,8,0,0,3,3,2021,29,10,0,0,3,10,0,0,0,0,0,0,1,0,97.388161,0,0,1,0,1,0,0,37.75,21.54,28.01,22.58,0,1,1,0,0,0,13,1,0,857,299672.56,105445.28,192613.69,0,0,0,2542.0791 +6921,8429,15047,15046,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,12,-8,0,0,3,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,28.01,22.58,37.75,21.54,1.666666666666667,1,1,0,1,0,13,1,0,857,299672.56,105445.28,192613.69,0,0,0,2542.0791 +6921,8430,15048,-9,15047,15046,1,0,31,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1033.3516,0,2,3,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.7,48.01,-9,-9,5,1,1,1,0,3,13,1,0,1039,-19182.695,0,0,0,0,0,820.83728 +6922,8431,15049,-9,15050,-9,1,1,57,0,0,0,1,1,-9,0,2,0,8.1915712,7.9914303,0,0,-1142.8647,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1940904,7.7030001,41.71,54.32,-9,-9,8.333333333333334,1,1,1,0,6,5,3,1,373,0,0,0,0,0,0,1553.4495 +6922,8432,15050,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.8545499,6.7737203,0,0,-1215.0017,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,11.182698,0,0,1,1,0,0,6.8419337,58.48,33.96,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,159,278545.81,130104.66,159291.33,0,0,0,200.95239 +6923,8433,15051,15052,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1150789,8.0897808,0,26,-8,-58.010803,0,2,2,2021,11,0,31,31,1,0,0,10.552951,10.552951,.05,.05,0,0,0,0,0,2,1,0,1,0,0,52.99,51.28,44.42,39.11,6.666666666666667,2,3,0,0,8,8,5,1,882,878460.75,721240.25,253887.55,116540.01,660.84814,0,4023.2859 +6923,8433,15052,15051,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.5564508,8.834012,0,26,8,-17.635866,0,3,2,2021,13,2,55,25,1,2,0,15.269298,15.269298,.05,.05,0,0,0,0,0,0,1,0,1,4.2038836,0,44.42,39.11,52.99,51.28,5,2,3,0,1,8,8,5,1,882,878460.75,721240.25,253887.55,116540.01,660.84814,0,4023.2859 +6923,8434,15053,-9,15051,15052,1,0,23,0,0,0,1,1,-9,0,4,0,0,0,0,0,-848.86536,1,2,3,2021,8,0,0,30,2,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,48.87,58.55,-9,-9,6.666666666666667,2,3,0,0,6,8,1,1,1199,325290.38,0,0,0,0,0,-680.00812 +6923,8435,15054,-9,15051,15052,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1025.2915,-9,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,209,-183126.52,0,0,0,8981.3662,0,196.42014 +6924,8436,15055,15056,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.7361403,6.6745706,9,-1,-27.435698,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.543364,6.7801142,54.2,57.49,62.39,56.71,8.333333333333334,1,1,0,0,1,9,3,1,642,1728656.3,641488.25,520168.16,0,0,2055.2148,1527.3325 +6924,8436,15056,15055,-9,-9,1,1,64,0,0,0,2,2,-9,0,5,0,7.8048105,7.7013984,9,1,74.207748,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9263535,62.39,56.71,54.2,57.49,10,1,1,0,0,8,9,3,1,642,1728656.3,641488.25,520168.16,0,0,2055.2148,1527.3325 +6925,8437,15057,15058,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.9238172,6.7601104,11,3,-62.418606,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8976054,6.9435492,58.32,39.69,57.16,56.15,8.333333333333334,1,1,0,0,0,9,4,1,439,2282496,947067.13,678461.75,0,0,0,4404.332 +6925,8437,15058,15057,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.6856174,8.7374973,49,-3,24.794827,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,12.827878,0,0,1,1,0,2.8100042,8.4850416,57.16,56.15,58.32,39.69,8.333333333333334,1,1,0,0,11,9,4,1,439,2282496,947067.13,678461.75,0,0,0,4404.332 +6926,8438,15059,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.1293,0,3,3,2021,21,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,40.88,38.46,-9,-9,5,1,1,1,1,8,2,1,1,674,-28105.928,0,0,0,0,0,1254.5173 +6927,8439,15060,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.8520594,8.5998497,0,0,-964.33698,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.7162161,50.6,44.34,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,773,1097151.8,509119.47,171174.22,0,0,0,3667.3264 +6928,8440,15061,-9,15063,15062,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.8378,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15062,15063,-9,-9,1,1,35,0,3,0,2,2,-9,0,4,7.7523165,7.7619872,0,7,2,-39.437813,0,3,3,2021,8,0,40,40,1,0,0,6.8697958,6.8697958,.05,.05,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,40.18,55.92,8.333333333333334,1,1,0,0,8,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15063,15062,-9,-9,1,0,33,0,3,0,2,2,-9,1,3,7.625628,7.4283514,0,7,-2,35.348309,0,2,-9,2021,17,5,35,37,1,5,0,5.6956444,5.6956444,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,40.18,55.92,60.12,54.8,6.666666666666667,1,1,0,0,6,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15064,-9,15063,15062,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1028.5062,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6928,8440,15065,-9,15063,15062,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.7927,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,727.59998,192528.73,191353.19,164261.53,122549.8,0,0,2926.0945 +6929,8441,15066,15067,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,8.732789,8.8066092,39,3,-48.220009,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8964086,8.4399376,62.39,56.71,53.59,48.18,8.333333333333334,1,1,0,0,2,6,4,1,777,597648.44,276032.94,71071.047,0,0,0,2203.7319 +6929,8441,15067,15066,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,39,-3,-20.882019,0,3,3,2021,8,1,0,15,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7682309,0,53.59,48.18,62.39,56.71,10,1,1,0,0,8,6,4,1,777,597648.44,276032.94,71071.047,0,0,0,2203.7319 +6930,8442,15068,15069,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,0,5.612905,5.7207685,46,-5,-161.13551,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.4542077,5.9547296,60.99,53.2,42.33,33.53,10,1,1,0,0,0,1,2,1,408.5,522902.69,245487.33,175774.33,0,0,0,1730.7542 +6930,8442,15069,15068,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.7455592,6.9772053,46,5,51.095066,0,3,2,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,38.513981,0,0,1,1,0,0,7.1506,42.33,33.53,60.99,53.2,6.666666666666667,1,1,0,0,4,1,2,1,408.5,522902.69,245487.33,175774.33,0,0,0,1730.7542 +6931,8443,15070,-9,-9,-9,1,0,24,0,1,0,1,1,-9,0,5,8.010746,8.1128445,0,0,0,-979.54913,0,1,2,2021,3,0,40,39,1,0,1,8.8805513,8.8805513,.05,.05,0,0,0,0,0,0,1,1,0,2.0472069,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,5,8,4,0,470,69823.242,69890.031,0,0,0,0,1290.6379 +6932,8444,15071,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-853.94458,0,1,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50.72,13.39,-9,-9,5,1,1,0,0,6,8,2,0,335,11037.87,0,0,0,0,0,1219.6267 +6932,8445,15072,-9,15071,-9,1,1,22,0,0,0,2,2,-9,1,4,7.7411966,7.5667863,0,0,0,-982.62537,0,2,-9,2021,8,0,40,40,1,0,1,6.7814155,6.7814155,0,0,0,0,0,0,0,0,1,1,0,0,0,54.53,49.11,-9,-9,8.333333333333334,1,1,0,0,2,8,3,0,158,96964.125,0,0,0,0,0,1593.2593 +6933,8446,15073,15074,-9,-9,1,1,75,0,2,0,2,2,-9,0,3,0,7.1564498,6.9502611,54,3,-108.63926,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0469584,55.12,42.1,49.88,47.22,6.666666666666667,1,1,0,0,0,7,3,1,733.5,876898.13,534252.5,275814.5,0,0,-102.27576,2501.0854 +6933,8446,15074,15073,-9,-9,1,0,72,0,2,0,2,2,-9,0,3,7.4239841,7.6407566,0,54,-3,-99.889572,0,-9,-9,2021,6,0,7,10,1,0,0,27.292469,27.292469,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,47.22,55.12,42.1,8.333333333333334,1,1,0,0,11,7,3,1,733.5,876898.13,534252.5,275814.5,0,0,-102.27576,2501.0854 +6934,8447,15075,15077,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6413517,7.5313654,0,42,-2,-13.091437,0,3,-9,2021,10,0,38,40,1,0,0,5.8435655,5.8435655,0,0,0,0,0,0,0,7,1,1,0,0,0,37.34,55.42,60.06,37.11,8.333333333333334,1,1,0,0,10,11,3,0,1186.6666,904951.06,706698.75,257142.13,0,0,0,2187.7798 +6934,8447,15076,-9,15075,15077,1,1,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1039.2897,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,6,-9,0,0,11,3,0,1186.6666,904951.06,706698.75,257142.13,0,0,0,2187.7798 +6934,8447,15077,15075,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.4356933,6.1976795,42,2,-160.00117,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3165679,60.06,37.11,37.34,55.42,8.333333333333334,1,1,0,0,0,11,3,0,1186.6666,904951.06,706698.75,257142.13,0,0,0,2187.7798 +6935,8448,15078,15079,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3474154,7.441195,8,3,-82.993881,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6638269,7.7742734,54.2,57.49,58.5,44.67,8.333333333333334,1,1,0,0,0,6,4,1,383.5,1152656.5,594394.69,181470.22,0,0,0,5030.5181 +6935,8448,15079,15078,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.1236544,8.2585907,8,-3,-64.447739,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5163283,8.2901926,58.5,44.67,54.2,57.49,10,1,1,0,0,0,6,4,1,383.5,1152656.5,594394.69,181470.22,0,0,0,5030.5181 +6936,8449,15080,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,7.2485137,7.4050131,0,0,-986.37292,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,5.0096312,3.4833941,50.78344,0,1,1,0,0,7.1611347,63.81,20.79,-9,-9,8.333333333333334,1,1,0,0,0,12,3,0,709,145931.34,166366.42,-14374.872,0,0,0,1543.8794 +6937,8450,15081,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.2698288,7.7150893,0,0,-1110.6334,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.764195,1.9863133,29.14156,0,1,1,0,0,7.1685486,63.19,27.85,-9,-9,8.333333333333334,1,1,0,0,0,4,3,0,1140,410501.75,113621.63,161173.73,0,0,0,1670.5969 +6938,8451,15082,15083,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,23,7,9.4974298,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.7895656,0,59.47,20.19,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,656,560823.88,147936.83,117650.59,0,0,0,2447.6785 +6938,8451,15083,15082,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.6277599,8.8404074,0,23,-7,-65.280365,0,3,2,2021,8,0,55,55,1,0,0,15.625519,15.625519,.05,.05,0,0,0,0,0,2,1,1,0,3.6523275,0,57.16,56.15,59.47,20.19,8.333333333333334,1,1,0,0,8,13,4,1,656,560823.88,147936.83,117650.59,0,0,0,2447.6785 +6939,8452,15084,-9,15085,-9,1,0,41,0,1,0,2,2,-9,0,3,7.0035768,7.2393389,6.5786719,0,0,-792.83917,0,3,3,2021,12,0,17,16,1,0,0,10.657952,10.657952,.05,.05,.05,0,0,0,0,0,1,1,0,6.4308405,0,38.8,52.39,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,1293,155368.33,-83490.359,115936.98,23303.666,6783.5977,0,1758.0316 +6939,8453,15085,-9,-9,-9,1,0,75,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1075.6315,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.66,33.1,-9,-9,5,1,1,0,0,3,9,1,1,736,-30392.674,0,0,0,0,0,498.92328 +6940,8454,15086,15087,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.5915775,9.9439535,0,24,4,101.48074,0,2,3,2021,6,0,70,75,1,0,0,29.667051,29.667051,.05,.05,0,0,0,0,0,2,0,0,0,5.6482596,0,59.53,56.44,48.82,41.3,8.333333333333334,1,1,0,0,10,1,5,1,655,341189.88,104403.87,361584.94,0,0,0,7971.2212 +6940,8454,15087,15086,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,7.4332595,7.3184271,0,24,-4,32.400311,0,3,3,2021,13,2,10,10,1,2,0,17.403912,17.403912,.05,.05,0,0,0,0,0,2,0,0,0,2.5775995,0,48.82,41.3,59.53,56.44,8.333333333333334,1,1,0,0,10,1,5,1,655,341189.88,104403.87,361584.94,0,0,0,7971.2212 +6941,8455,15088,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,5,7.6835175,7.8332891,6.8351207,0,0,-1040.4506,0,3,3,2021,11,0,28,25,1,0,0,5.4150658,5.4150658,0,0,0,0,0,0,0,0,1,1,0,6.5539312,0,40.38,61.66,-9,-9,3.333333333333333,1,1,0,0,13,5,3,1,354.5,24635.191,4106.9141,70403.398,8612.0781,0,0,1303.082 +6941,8455,15089,-9,15088,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-974.08789,-9,2,-9,2021,9,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.52,51.4,-9,-9,3.333333333333333,1,1,0,0,2,5,3,1,354.5,24635.191,4106.9141,70403.398,8612.0781,0,0,1303.082 +6941,8456,15090,-9,15088,-9,1,1,18,0,1,0,2,2,-9,0,3,5.7970667,5.9073057,0,0,0,-996.20776,-9,2,-9,2021,12,2,8,0,1,2,1,6.249207,6.249207,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,398,-264201.97,48137.629,0,0,0,0,-90.093285 +6942,8457,15091,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9555678,6.730257,0,0,-991.25677,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7644019,6.8191309,52.24,34.16,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,996,247893.58,65607.672,18805.346,0,0,0,2419.5386 +6943,8458,15092,15093,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.2373495,4.0118961,43,-1,82.222244,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2213016,3.8707714,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,8,1,3,1,281.5,1385170.3,1232258.1,146749.44,0,18158.828,0,2044.0613 +6943,8458,15093,15092,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.2329159,8.1645079,43,1,-113.51427,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5730126,8.6457806,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,8,1,3,1,281.5,1385170.3,1232258.1,146749.44,0,18158.828,0,2044.0613 +6944,8459,15094,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,2,7.1665797,7.0788236,0,0,0,-952.51367,-9,2,2,2021,11,1,27,0,1,1,1,5.5126262,5.5126262,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.98,51.26,-9,-9,5,1,1,0,0,1,12,3,1,876,46447.746,3589.752,0,0,947.93414,0,118.1105 +6945,8460,15095,15096,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7751327,8.1428919,0,30,-12,-14.274837,0,3,-9,2021,9,0,50,53,1,0,0,5.7084684,5.7084684,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,34.75,26.16,8.333333333333334,1,1,0,0,9,6,3,0,1380.5,223769.28,82038.133,159668.59,55616.82,0,0,2611.5938 +6945,8460,15096,15095,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,30,12,73.275902,0,2,-9,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,23.030804,0,0,1,1,0,0,0,34.75,26.16,58.15,52.91,0,1,1,0,1,1,6,3,0,1380.5,223769.28,82038.133,159668.59,55616.82,0,0,2611.5938 +6945,8461,15097,-9,15095,15096,1,0,20,0,0,0,2,2,-9,0,2,7.5125813,7.5743012,0,0,0,-1028.0096,0,3,3,2021,16,4,30,21,1,4,1,6.2190228,6.2190228,0,0,0,0,0,0,0,0,1,1,0,0,0,35.75,35.19,-9,-9,5,1,1,0,0,2,6,3,0,487,-77663.336,0,0,0,0,0,1132.1567 +6945,8462,15098,-9,15095,15096,1,1,18,0,0,0,2,2,-9,0,4,8.3047657,8.3365898,0,0,0,-938.82709,0,3,3,2021,6,0,55,45,1,0,1,9.0310297,9.0310297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.29,52.15,-9,-9,8.333333333333334,1,1,0,0,4,6,4,0,549,65471.852,119848.38,0,0,0,0,1151.4229 +6946,8463,15099,-9,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,7.723536,8.0810452,0,0,-914.53644,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0194831,7.633975,56,44,-9,-9,8,1,1,0,0,0,5,3,1,1841,432206.13,188747.09,84883.883,0,0,0,1615.3308 +6947,8464,15100,-9,15102,15101,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1032.6296,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6947,8464,15101,15102,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.7478924,8.8120747,0,12,4,-73.881989,0,2,1,2021,8,0,37,38,1,0,0,18.162355,18.162355,.05,.05,0,0,0,0,0,0,1,1,0,1.9708985,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,13,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6947,8464,15102,15101,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4877901,8.3609991,0,12,-4,-55.701942,0,2,2,2021,8,0,37,37,1,0,0,11.260147,11.260147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,13,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6947,8464,15103,-9,15102,15101,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1005.6917,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,11,5,1,859.25,776391.81,679790.19,121149.71,101122,0,0,3708.4585 +6948,8465,15104,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1058.4625,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,1.5448576,10.853951,29.9547,0,1,1,0,0,0,46.81,39.19,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,522,-167014.92,0,0,0,0,614.10944,661.02362 +6949,8466,15105,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.7084141,8.4529467,0,6,-5,-45.733181,0,2,2,2021,11,1,38,53,1,1,0,20.532175,20.532175,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,41.23,51.32,6.666666666666667,1,1,0,0,7,7,5,1,1752,927880.69,616119.38,243112.11,0,0,0,2824.3462 +6949,8467,15106,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.1462202,8.4426098,0,6,5,69.716606,0,3,3,2021,23,11,38,44,1,11,0,10.363292,10.363292,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,51.32,60.29,52.11,6.666666666666667,1,1,0,0,8,7,5,1,1748,72513.242,0,0,0,0,0,1867.4681 +6950,8468,15107,15110,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.7496929,7.4810615,0,18,6,69.312851,0,3,3,2021,9,0,38,35,1,1,0,7.3067989,7.3067989,0,0,.05,0,0,0,0,0,1,1,0,3.6534319,0,53,55,51.72,51.9,8,2,3,0,0,1,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6950,8468,15108,-9,15110,15107,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.35559,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6950,8468,15109,-9,15110,15107,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-860.39911,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6950,8468,15110,15107,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6419973,8.4328032,0,18,-6,-37.244392,0,2,2,2021,9,0,50,38,1,0,0,12.274656,12.274656,0,0,0,0,0,0,0,0,1,1,0,0,0,51.72,51.9,53,55,8.333333333333334,2,3,0,0,9,2,4,1,1462,471426.94,403540.69,375885.47,266981.03,5455.5737,0,3069.5747 +6951,8469,15111,15112,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.6430173,7.2595401,0,6,1,-7.1257782,-9,-9,-9,2021,27,8,50,0,1,8,0,4.6400318,4.6400318,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.45,64.19,29.99,59.47,0,1,1,0,1,10,11,3,0,1012.6667,155947.5,-9788.7197,108075.64,40702.727,7577.3003,4731.2681,2814.6001 +6951,8469,15112,15111,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.7478967,7.5670376,5.2627163,6,-1,106.4165,-9,-9,-9,2021,12,0,40,0,1,0,0,5.2151875,5.2151875,0,0,0,0,0,0,0,0,1,1,0,5.3067651,0,29.99,59.47,30.45,64.19,1.666666666666667,1,1,0,1,9,11,3,0,1012.6667,155947.5,-9788.7197,108075.64,40702.727,7577.3003,4731.2681,2814.6001 +6951,8469,15113,-9,15112,15111,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.625,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,1012.6667,155947.5,-9788.7197,108075.64,40702.727,7577.3003,4731.2681,2814.6001 +6952,8470,15114,-9,15115,15116,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-963.91901,-9,1,2,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.49,60.87,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,846,255432.75,-4524.8916,396242.19,188600.16,27701.99,0,3756.5032 +6952,8470,15115,15116,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.0941486,8.3642864,0,6,-8,20.886517,0,3,3,2021,7,0,7,7,1,0,0,45.293919,45.293919,0,0,0,0,0,0,0,0,1,1,0,0,0,52.83,48.43,49.34,41.24,8.333333333333334,1,1,0,0,8,8,5,1,846,255432.75,-4524.8916,396242.19,188600.16,27701.99,0,3756.5032 +6952,8470,15116,15115,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.5870142,8.5758009,0,6,8,34.707077,0,3,3,2021,12,3,36,36,1,3,0,16.50252,16.50252,0,0,.05,0,0,0,0,0,1,1,0,0,0,49.34,41.24,52.83,48.43,1.666666666666667,1,1,0,0,8,8,5,1,846,255432.75,-4524.8916,396242.19,188600.16,27701.99,0,3756.5032 +6952,8471,15117,-9,15115,15116,1,1,26,0,0,0,2,2,-9,0,4,7.1649208,7.1313186,0,0,0,-966.84332,0,1,2,2021,7,0,16,16,1,0,1,9.7420273,9.7420273,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,7,8,2,1,2851,8937.9688,66461.461,0,0,0,0,243.58269 +6952,8472,15118,-9,15115,15116,1,0,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1022.1736,-9,1,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,6,8,1,1,427,-23315.516,0,0,0,0,0,-36.056522 +6953,8473,15119,15120,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.7979879,7.6558938,12,-1,39.949554,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0297747,7.5647316,63.74,25.79,53.14,51.28,5,1,1,0,0,8,13,4,1,1036,2112064.3,1573322.1,341529.94,0,0,0,5179.6338 +6953,8473,15120,15119,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.9060311,8.0518007,12,1,-25.849941,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7558656,7.9370265,53.14,51.28,63.74,25.79,8.333333333333334,1,1,0,0,9,13,4,1,1036,2112064.3,1573322.1,341529.94,0,0,0,5179.6338 +6954,8474,15121,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.5432768,8.4224606,0,0,0,-1094.9178,0,3,2,2021,9,0,72,75,1,0,0,6.5355492,6.5355492,0,0,0,0,0,0,0,0,0,0,0,0,0,58.5,39.14,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,1063,81953.195,119557.2,157726.41,115354.7,0,0,2005.7349 +6955,8475,15122,-9,15123,15124,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1056.5687,-9,2,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9027398,0,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,2036.3334,702458.44,589581.63,305452.5,159468.78,0,0,4239.1851 +6955,8475,15123,15124,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,6.8371024,6.6169729,0,6,-2,100.35058,0,2,2,2021,9,1,12,12,1,1,0,8.2413168,8.2413168,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.46,54.85,61.28,48.88,6.666666666666667,1,1,0,0,7,10,4,1,2036.3334,702458.44,589581.63,305452.5,159468.78,0,0,4239.1851 +6955,8475,15124,15123,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,7.2806344,8.6632481,8.6800117,6,2,-29.448526,0,-9,-9,2021,6,0,35,70,1,0,0,4.3601356,4.3601356,.05,.05,.05,0,0,0,0,0,1,1,0,8.0106611,0,61.28,48.88,42.46,54.85,8.333333333333334,1,1,0,0,8,10,4,1,2036.3334,702458.44,589581.63,305452.5,159468.78,0,0,4239.1851 +6956,8476,15125,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.4984179,6.3948708,0,0,-950.58636,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,6.673245,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,186,175443.14,91592.852,108820.59,0,0,0,1269.0768 +6956,8477,15126,-9,15125,-9,1,0,35,0,0,0,2,2,-9,0,4,8.1094971,8.346941,0,0,0,-964.80573,0,3,-9,2021,11,0,38,38,1,2,0,12.228435,12.228435,0,0,0,0,0,0,0,0,1,1,0,4.7979689,0,49,56,-9,-9,7,1,1,0,0,1,6,4,1,382,-13673.224,0,0,0,0,0,1052.3882 +6957,8478,15127,-9,15128,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.47644,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,396.66666,-23629.256,14835.523,0,0,0,0,2086.1487 +6957,8478,15128,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,7.9988785,8.1890059,6.1097946,0,0,-982.28473,-9,2,2,2021,12,0,35,0,1,0,0,9.5423994,9.5423994,.05,.05,0,0,0,0,0,0,1,1,0,6.0158257,0,44.49,61.79,-9,-9,5,1,1,0,0,3,6,3,0,396.66666,-23629.256,14835.523,0,0,0,0,2086.1487 +6957,8478,15129,-9,15128,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-934.92523,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,3,0,396.66666,-23629.256,14835.523,0,0,0,0,2086.1487 +6958,8479,15130,15131,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.0689092,5.6311955,6,-1,71.956444,0,-9,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1301661,5.5982776,36.03,35.07,51.77,58.57,8.333333333333334,1,1,0,0,0,7,2,1,595,72256.563,82764.945,0,0,0,0,1302.8467 +6958,8479,15131,15130,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,6,1,86.304169,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.1657491,0,51.77,58.57,36.03,35.07,10,1,1,0,0,0,7,2,1,595,72256.563,82764.945,0,0,0,0,1302.8467 +6959,8480,15132,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,7.6510205,7.7668476,0,0,0,-942.54694,0,3,3,2021,20,7,45,43,1,7,1,6.0025306,6.0025306,0,0,.05,0,0,0,0,2,1,1,0,0,0,26.34,50.67,-9,-9,3.333333333333333,2,3,0,0,4,7,3,1,655,-107238.5,66514.719,0,0,986.65332,0,1574.6266 +6960,8481,15133,15134,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.8364458,7.1058054,55,3,-4.2256918,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6500649,53,47,51,46,7,1,1,0,0,0,10,2,1,1662,192604.03,251223.86,0,0,0,5411.7695,1806.777 +6960,8481,15134,15133,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.3899879,6.2159266,55,-3,-94.481895,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,23.17909,0,0,1,1,0,0,6.1568203,51,46,53,47,7,1,1,0,0,0,10,2,1,1662,192604.03,251223.86,0,0,0,5411.7695,1806.777 +6961,8482,15135,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.9014692,8.9403076,0,0,0,-1031.5178,-9,1,3,2021,11,1,50,0,1,1,0,16.337938,16.337938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,5,3,4,0,0,9,8,5,1,458,333460.03,350306.41,238814.34,91942.734,0,0,2087.0081 +6962,8483,15136,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1109.0602,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,3.1032755,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,3,4,1,1,743,0,0,0,0,0,0,484.79828 +6963,8484,15137,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.9662771,6.7340198,0,0,-934.09924,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0767493,37.43,17,-9,-9,8.333333333333334,1,1,0,1,0,2,2,0,205,189980.64,15281.363,76765.273,0,0,0,991.62189 +6964,8485,15138,15139,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8106656,6.9873948,1,-1,14.692875,0,-9,-9,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3172584,7.3094187,54.79,55.86,57.73,41.12,6.666666666666667,1,1,0,0,0,12,4,1,563,1198322.5,587394.5,345455.88,0,0,0,3890.7427 +6964,8485,15139,15138,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.4291201,8.4756813,1,1,-60.057079,0,-9,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.9780102,0,20.63789,0,1,1,0,0,8.8725986,57.73,41.12,54.79,55.86,8.333333333333334,1,1,0,0,0,12,4,1,563,1198322.5,587394.5,345455.88,0,0,0,3890.7427 +6965,8486,15140,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3439341,5.9590044,0,0,-915.79193,0,3,2,2021,4,1,0,0,4,1,0,0,0,0,0,0,1,73.96405,0,676.45612,0,1,1,0,0,6.1948366,65.37,30.39,-9,-9,10,1,1,0,0,3,9,2,1,176,517118.38,315224,508574.25,0,0,2246.8225,1585.7708 +6966,8487,15141,15142,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.4689188,8.3775759,0,3,-16,-45.411423,0,2,2,2021,9,0,48,45,1,1,0,10.681549,10.681549,.05,.05,0,0,0,0,0,0,1,1,0,.16972689,0,52,55,37.75,35.42,8,1,1,0,0,1,4,4,1,192.5,234786.84,214234.5,94865.68,59497.125,0,0,1906.464 +6966,8487,15142,15141,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,3,16,147.70743,0,3,3,2021,15,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.766645,0,37.75,35.42,52,55,10,1,1,0,0,3,4,4,1,192.5,234786.84,214234.5,94865.68,59497.125,0,0,1906.464 +6967,8488,15143,-9,15144,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.54095,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,1,0,1738,-42444.859,0,0,0,0,0,912.28784 +6967,8488,15144,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,0,0,-901.04755,-9,-9,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17.53,67.98999999999999,-9,-9,1.666666666666667,4,2,1,1,3,2,1,0,1738,-42444.859,0,0,0,0,0,912.28784 +6968,8489,15145,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.2721348,8.5975771,7.3264399,0,0,-906.19879,0,3,2,2021,13,1,35,37,1,1,0,12.734258,12.734258,.05,.05,0,0,0,0,0,0,1,1,0,7.3507891,6.6906953,43.6,51.61,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,455,603010.88,451701.44,204397.59,2989.7571,6322.3467,0,1895.365 +6968,8489,15146,-9,15145,-9,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1097.4437,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,2,4,1,455,603010.88,451701.44,204397.59,2989.7571,6322.3467,0,1895.365 +6969,8490,15147,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-954.33923,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.36,50.58,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,768,44622.316,0,178833.34,0,0,0,258.74188 +6969,8491,15148,15149,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.0921545,8.2183294,0,1,-11,-43.141102,-9,-9,-9,2021,12,1,42,0,1,1,0,9.2746124,9.2746124,0,0,0,0,0,0,0,0,1,1,0,0,0,36.14,57.86,57.33,53.46,6.666666666666667,1,1,0,0,1,10,5,1,663.5,133218.91,41338.473,318284.75,43548.547,0,0,3797.0212 +6969,8491,15149,15148,15147,-9,1,1,42,0,0,0,2,2,-9,0,3,8.4722986,8.108119,0,1,11,-13.672887,0,2,2,2021,12,0,42,40,1,0,0,14.513152,14.513152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,36.14,57.86,8.333333333333334,1,1,0,0,11,10,5,1,663.5,133218.91,41338.473,318284.75,43548.547,0,0,3797.0212 +6970,8492,15150,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,7.8166933,7.5289574,0,0,-1041.9696,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4947014,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,407,2218064.5,0,354076.59,0,0,0,1969.6462 +6971,8493,15151,15152,-9,-9,1,1,45,0,2,0,2,2,-9,0,2,7.1504436,7.3427629,0,21,-1,95.359177,0,3,3,2021,17,4,40,40,1,4,0,2.9651845,2.9651845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.92,32.75,42.6,61.6,6.666666666666667,1,1,0,0,11,11,3,1,1115.3334,145690.17,-38518.762,105086.72,24801.33,3582.5813,1747.3644,2887.7563 +6971,8493,15152,15151,-9,-9,1,0,46,0,2,0,3,3,-9,0,4,8.0767536,8.367816,0,23,1,77.887802,0,3,3,2021,14,3,40,38,1,3,0,10.211742,10.211742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.6,61.6,31.92,32.75,5,1,1,0,0,11,11,3,1,1115.3334,145690.17,-38518.762,105086.72,24801.33,3582.5813,1747.3644,2887.7563 +6971,8493,15153,-9,15152,15151,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.4179,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,1115.3334,145690.17,-38518.762,105086.72,24801.33,3582.5813,1747.3644,2887.7563 +6971,8494,15154,-9,15152,15151,1,1,20,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1082.2091,0,3,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,1,1,0,11,1,1,370,0,0,0,0,0,0,0 +6972,8495,15155,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1787934,6.8338275,0,0,-981.87317,-9,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7790561,6.913425,47.38,41.84,-9,-9,8.333333333333334,4,2,0,0,13,7,2,0,385,249793.97,133585.25,0,0,0,0,111.09824 +6973,8496,15156,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,6.7809243,6.8387341,0,0,-965.59448,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,10.677064,0,0,1,1,0,0,6.9110761,42.37,15,-9,-9,5,1,1,0,0,2,10,2,1,3111,545788.06,158826.22,478557.97,0,0,0,1057.0974 +6974,8497,15157,-9,-9,-9,1,1,96,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1074.3672,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4364038,0,0,1,1,0,2.1452947,0,56.34,35.43,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,552,91976.375,0,-27122.078,0,0,0,1460.9976 +6974,8498,15158,-9,-9,15157,1,1,73,0,0,0,2,2,-9,0,2,0,7.9772983,7.828054,0,0,-1031.6965,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4206309,7.6851192,53.05,47.86,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,251,334896.03,327708.34,147073.14,0,0,0,2520.3682 +6975,8499,15159,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.0562901,6.1153917,0,0,-1072.5975,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0323315,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,5,10,2,1,340,191236.55,59335.621,97265.242,0,3153.561,0,618.72009 +6976,8500,15160,15161,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.6396141,8.1891041,0,37,-4,-43.268608,0,2,2,2021,11,0,30,60,1,0,0,7.8742762,7.8742762,0,0,0,0,0,0,0,0,0,0,0,0,0,54.19,36.07,53.47,52.37,6.666666666666667,1,1,0,0,10,2,4,1,324.5,229870.31,33073.578,138000.22,3968.541,9165.6084,0,2086.8906 +6976,8500,15161,15160,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.8924875,7.7732081,0,37,4,35.803909,0,2,2,2021,15,3,40,40,1,3,0,5.9761276,5.9761276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.47,52.37,54.19,36.07,5,1,1,0,1,8,2,4,1,324.5,229870.31,33073.578,138000.22,3968.541,9165.6084,0,2086.8906 +6977,8501,15162,-9,15163,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-856.59692,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.71,28.48,-9,-9,5,1,1,0,0,0,4,1,1,562,244707.72,0,137049.64,0,0,0,249.61732 +6977,8502,15163,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,3.5799592,3.3857737,0,0,-994.6604,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,12.269472,0,0,1,1,0,0,3.7589557,50.48,37.55,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,718,107668.26,77366.234,68194.609,0,0,0,1075.1536 +6978,8503,15164,-9,15167,15165,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1093.8527,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6978,8503,15165,15167,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.5256166,8.316906,0,16,-3,-9.1890945,0,1,1,2021,9,0,42,39,1,0,0,15.849819,15.849819,.05,.05,0,0,0,0,0,0,1,1,0,1.0339061,0,55.96,49.93,52.64,38.41,8.333333333333334,1,1,0,0,8,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6978,8503,15166,-9,15167,15165,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-955.94989,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6978,8503,15167,15165,-9,-9,1,0,43,0,2,0,1,1,-9,0,2,2.1167526,2.1597347,0,16,3,-17.731745,0,3,3,2021,12,0,2,0,1,0,0,.41668302,.41668302,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.64,38.41,55.96,49.93,5,1,1,0,1,5,9,3,1,556.25,380106.28,29454.545,205622.36,52212.016,11948.419,447.69308,2174.02 +6979,8504,15168,15169,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,7.8726516,7.6200356,5,5,-42.107307,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.8298693,7.6493177,60.02,56.42,47.42,14.98,1.666666666666667,1,1,0,0,0,5,3,1,928.5,766838.06,593672.13,65088.672,0,0,0,2797.2417 +6979,8504,15169,15168,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.1843615,6.0817618,5,-5,46.685585,0,2,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,1,0,44.459835,0,0,1,1,0,7.5364175,5.8507166,47.42,14.98,60.02,56.42,6.666666666666667,1,1,0,0,2,5,3,1,928.5,766838.06,593672.13,65088.672,0,0,0,2797.2417 +6980,8505,15170,15171,-9,-9,1,1,46,0,0,0,1,1,-9,0,2,0,0,0,10,8,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.5267973,0,42.9,49.72,41.84,60.5,8.333333333333334,1,1,0,0,0,9,1,1,354,298986.06,6679.3672,324821.31,0,35157.742,1322.73,8866.1113 +6980,8505,15171,15170,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,0,0,0,10,-8,0,0,1,1,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.73426139,0,41.84,60.5,42.9,49.72,8.333333333333334,2,3,1,0,7,9,1,1,354,298986.06,6679.3672,324821.31,0,35157.742,1322.73,8866.1113 +6981,8506,15172,15173,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,7.151103,7.0078082,0,12,-3,42.241051,0,2,2,2021,17,7,22,22,1,7,0,5.5117674,5.5117674,0,0,0,0,0,0,0,0,1,1,0,0,0,52.63,19.67,60.49,29.62,3.333333333333333,1,1,0,0,13,11,3,1,268.5,657335.13,381205.03,188513.31,22235.688,0,0,1804.3519 +6981,8506,15173,15172,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,7.2751441,7.4585967,6.1110263,12,3,127.21245,0,3,3,2021,10,1,25,0,1,1,0,5.5634041,5.5634041,.05,.05,0,0,0,0,0,0,1,1,0,0,6.5777917,60.49,29.62,52.63,19.67,6.666666666666667,1,1,0,0,13,11,3,1,268.5,657335.13,381205.03,188513.31,22235.688,0,0,1804.3519 +6982,8507,15174,15175,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,6.8760471,6.8318958,0,39,1,21.105061,0,3,3,2021,24,12,15,15,1,12,0,9.1406374,9.1406374,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.99,42.92,29.57,37.8,1.666666666666667,1,1,0,1,5,10,2,0,630,379872.25,356145.69,232318.56,0,0,0,721.66046 +6982,8507,15175,15174,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,4.8299365,4.9261088,39,-1,-17.040102,0,-9,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,5.0093408,0,29.57,37.8,36.99,42.92,5,1,1,1,1,0,10,2,0,630,379872.25,356145.69,232318.56,0,0,0,721.66046 +6982,8508,15176,15177,15175,15174,1,0,28,0,0,0,2,2,-9,0,4,7.855092,7.7907472,0,3,-6,-19.521576,0,3,3,2021,6,0,36,10,1,0,0,7.0937653,7.0937653,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,34.56,62.74,8.333333333333334,1,1,0,0,5,10,4,0,418,85630.055,-9033.2109,173282.53,143479.39,0,0,2635.1831 +6982,8508,15177,15176,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.6492825,7.893621,0,3,6,-63.639652,0,-9,-9,2021,18,5,36,10,1,5,0,6.8956985,6.8956985,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,34.56,62.74,54.2,57.49,1.666666666666667,1,1,0,0,2,10,4,0,418,85630.055,-9033.2109,173282.53,143479.39,0,0,2635.1831 +6983,8509,15178,15179,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.7360258,8.6050005,4.8733039,41,-2,35.045933,0,3,2,2021,10,0,55,60,1,0,0,11.03435,11.03435,.05,.05,0,0,0,0,0,0,0,0,0,5.2017012,5.1528902,58.32,50.22,52.65,48.94,6.666666666666667,1,1,0,0,11,9,5,1,1964,525449.13,446026.13,171300.69,0,0,0,3251.2356 +6983,8509,15179,15178,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.455337,6.8404832,0,41,2,-22.36409,0,2,2,2021,12,0,25,24,1,0,0,5.531858,5.531858,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.65,48.94,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,1964,525449.13,446026.13,171300.69,0,0,0,3251.2356 +6984,8510,15180,15181,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.7737942,9.4831314,0,9,3,-27.877817,0,2,1,2021,8,0,50,80,1,0,0,37.695049,37.695049,.05,.05,0,0,0,0,0,0,0,0,0,7.9413705,0,46.08,57.2,51.73,58.82,8.333333333333334,1,1,0,0,10,7,5,1,1270,1957824,375921.72,1904755.6,303003.22,8657.7617,14848.398,13536.651 +6984,8510,15181,15180,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.890871,9.1456699,0,9,-3,82.601776,0,2,-9,2021,7,0,45,40,1,0,0,21.24341,21.24341,0,0,0,0,0,0,0,2,0,0,0,7.7219725,0,51.73,58.82,46.08,57.2,8.333333333333334,1,1,0,0,10,7,5,1,1270,1957824,375921.72,1904755.6,303003.22,8657.7617,14848.398,13536.651 +6985,8511,15182,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4540634,8.4283648,0,0,0,-1093.313,0,2,2,2021,11,0,38,38,1,0,0,16.014341,16.014341,.05,.05,0,0,0,0,0,0,0,0,0,3.7730062,0,52.99,51.28,-9,-9,3.333333333333333,1,1,0,0,15,9,5,1,640,756814.63,487448.88,214726.72,0,0,0,1949.6862 +6986,8512,15183,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.1972094,7.9702268,0,0,0,-885.78925,0,2,2,2021,20,9,40,38,1,9,0,9.5838499,9.5838499,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.53,64.73,-9,-9,3.333333333333333,1,1,0,0,9,11,4,1,517,72016.844,-51096.09,0,0,0,0,1467.9521 +6987,8513,15184,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.478,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.39,40.89,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,262,-166006.73,0,0,0,-251.12074,0,2053.0408 +6987,8514,15185,-9,15184,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4135776,7.5290093,0,0,0,-926.86365,0,3,-9,2021,15,3,30,30,1,3,0,5.3244863,5.3244863,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,13,13,3,0,1451,137482.52,-114826.47,0,0,0,0,630.31238 +6987,8515,15186,-9,15184,-9,1,1,30,0,0,0,3,3,-9,1,3,0,0,0,0,0,-955.93536,0,3,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,53,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,526,136892.83,0,0,0,0,0,1019.9594 +6988,8516,15187,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,7.3352923,7.7565713,0,0,-1209.9037,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,7.4326105,54.45,30.7,-9,-9,8.333333333333334,1,1,0,0,3,11,3,0,201,534775.44,398934.13,103254.36,0,0,0,1808.0879 +6989,8517,15188,15189,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.315341,8.3814554,0,12,6,-31.757765,0,-9,-9,2021,8,1,32,40,1,1,0,12.93454,12.93454,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.77,37.66,49.04,55.86,8.333333333333334,1,1,0,0,13,4,4,1,1033.5,888825.06,598251.5,191554.09,0,0,1176.0919,2659.7109 +6989,8517,15189,15188,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.6355801,7.6283083,0,12,-6,33.432945,0,3,3,2021,12,0,30,15,1,0,0,8.2548351,8.2548351,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,58.77,37.66,6.666666666666667,1,1,0,0,13,4,4,1,1033.5,888825.06,598251.5,191554.09,0,0,1176.0919,2659.7109 +6989,8518,15190,-9,-9,15188,1,0,35,0,0,0,3,3,-9,0,3,7.9649887,7.9649591,0,0,0,-1039.2327,0,3,2,2021,10,0,35,35,1,0,1,7.9304948,7.9304948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,52,-9,-9,5,1,1,0,0,13,4,3,1,131,-17244.678,88866.703,0,0,0,0,1152.8132 +6990,8519,15191,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,4,0,7.5729594,7.2448363,0,0,-914.29486,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.312798,51.69,46.47,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,364,340868.25,213129.14,126075.59,0,0,0,2064.3613 +6991,8520,15192,15193,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.640028,8.6124725,0,18,1,19.39432,0,2,2,2021,11,0,43,48,1,0,0,10.964804,10.964804,.05,.05,0,0,0,0,0,7,1,1,0,0,0,53.92,34.27,32.2,24.76,6.666666666666667,1,1,0,0,12,4,4,1,551,309049.69,123737.09,96942.727,0,0,2066.6072,2518.3208 +6991,8520,15193,15192,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,18,-1,-65.645241,0,2,1,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.2,24.76,53.92,34.27,5,1,1,1,0,4,4,4,1,551,309049.69,123737.09,96942.727,0,0,2066.6072,2518.3208 +6992,8521,15194,-9,15196,15197,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.23956,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6992,8521,15195,-9,15196,15197,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.5215,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6992,8521,15196,15197,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.5373607,7.6699648,0,11,0,-10.430965,0,2,2,2021,8,0,40,32,1,0,0,5.2912726,5.2912726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49,58,8.333333333333334,1,1,0,0,13,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6992,8521,15197,15196,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.0501919,8.1161757,0,11,0,55.661198,-9,2,2,2021,12,0,39,0,1,0,0,10.610885,10.610885,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,57.16,56.15,5,1,1,0,0,9,4,3,0,669.75,-23082.984,98198.25,0,0,-642.37183,857.67413,2989.583 +6993,8522,15198,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.0917449,7.813539,0,0,-1040.4751,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6062856,7.4141669,45.81,44.2,-9,-9,6.666666666666667,1,1,0,0,5,12,3,1,151,735500.31,538997.25,269073.66,0,7233.4155,0,1953.6075 +6994,8523,15199,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1035.4861,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,1,1,0,1,0,7,1,0,761,-130153.98,0,0,0,0,0,1871.0575 +6995,8524,15200,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,1,0,7.1265526,7.616241,0,0,-1044.6716,0,2,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4819994,35.99,16.11,-9,-9,0,1,1,0,0,5,2,3,1,637,848850,822295.56,95018.75,0,0,0,1347.853 +6996,8525,15201,15202,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.8795695,8.0307913,46,-2,9.8963652,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1570449,7.8593497,55.77,47.78,47.53,36.31,8.333333333333334,1,1,0,0,4,8,3,1,512.5,1380093.8,242180.25,847650.63,0,0,0,2261.9487 +6996,8525,15202,15201,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,0,0,11,2,-96.439545,0,3,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.53,36.31,55.77,47.78,3.333333333333333,1,1,0,0,7,8,3,1,512.5,1380093.8,242180.25,847650.63,0,0,0,2261.9487 +6997,8526,15203,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.1463699,7.9844365,4.8637686,0,0,-1011.7941,0,3,2,2021,6,0,42,45,1,0,0,8.2262287,8.2262287,.05,.05,0,0,0,0,0,0,0,0,0,6.2728171,5.5758781,61.61,37.79,-9,-9,8.333333333333334,1,1,0,0,10,6,4,1,106,272189.38,256418.91,0,0,0,0,2753.668 +6998,8527,15204,-9,15206,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-797.08032,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,4,2,-9,0,0,9,2,0,1475.3334,118131.71,60298.133,0,0,0,10019.664,1703.438 +6998,8527,15205,-9,15206,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.61469,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,4,2,-9,0,0,9,2,0,1475.3334,118131.71,60298.133,0,0,0,10019.664,1703.438 +6998,8527,15206,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.2543597,6.9461293,0,0,0,-981.92651,0,3,2,2021,19,6,16,20,1,6,0,9.7739792,9.7739792,0,0,0,0,0,0,0,0,1,0,1,0,0,24.13,60.45,-9,-9,3.333333333333333,4,2,0,0,6,9,2,0,1475.3334,118131.71,60298.133,0,0,0,10019.664,1703.438 +6999,8528,15207,15208,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,48,1,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.6,32.85,48.23,50.71,8.333333333333334,1,1,0,0,0,10,1,0,759.5,36927.586,0,179539.27,0,0,0,1019.1116 +6999,8528,15208,15207,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,49,-1,0,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.23,50.71,49.6,32.85,5,1,1,0,0,0,10,1,0,759.5,36927.586,0,179539.27,0,0,0,1019.1116 +7000,8529,15209,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.25842,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.64,45.7,-9,-9,10,1,1,0,0,0,2,2,0,895,28654.178,0,123467.02,0,0,0,236.22325 +7001,8530,15210,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,4.825181,4.9984708,0,0,-898.18048,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5178623,44.35,38.91,-9,-9,6.666666666666667,1,1,0,0,4,12,2,0,371,28005.441,126738.05,139590.91,17096.768,0,0,1204.4518 +7002,8531,15211,15212,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.0327606,7.8902659,0,2,0,93.300697,0,-9,-9,2021,10,1,37,35,1,1,0,8.5547428,8.5547428,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,54.2,57.49,10,1,1,0,0,6,6,4,0,2282,77068.578,109299.28,0,0,6244.8271,0,1579.3982 +7002,8531,15212,15211,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7650623,7.7538671,0,2,0,-49.487152,0,2,3,2021,7,0,37,38,1,0,0,6.6081767,6.6081767,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.47,59.4,8.333333333333334,1,1,0,0,5,6,4,0,2282,77068.578,109299.28,0,0,6244.8271,0,1579.3982 +7003,8532,15213,-9,15215,15214,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1193.7795,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,4,1,1172,534233.94,35971.324,307973.28,0,0,0,3447.7925 +7003,8532,15214,15215,-9,-9,1,1,57,0,1,0,3,3,-9,0,3,8.618289,8.4751253,0,10,2,28.922497,0,3,3,2021,10,1,37,38,1,1,0,16.558685,16.558685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.99,51.26,36.88,29.34,8.333333333333334,1,1,0,1,11,8,4,1,1172,534233.94,35971.324,307973.28,0,0,0,3447.7925 +7003,8532,15215,15214,-9,-9,1,0,55,0,1,0,2,2,-9,0,2,7.7526336,7.9972486,6.0301142,10,-2,-71.407303,0,3,3,2021,24,10,43,36,1,10,0,6.1600885,6.1600885,.05,.05,0,0,0,0,0,0,1,1,0,0,6.1651402,36.88,29.34,46.99,51.26,8.333333333333334,1,1,0,1,11,8,4,1,1172,534233.94,35971.324,307973.28,0,0,0,3447.7925 +7003,8533,15216,-9,15215,15214,1,0,25,0,1,0,1,1,-9,0,5,7.9084902,8.0336313,0,0,0,-1015.9017,0,2,2,2021,9,1,37,40,1,1,1,12.365823,12.365823,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,8,4,1,395,94250.617,0,0,0,0,0,1405.1904 +7003,8534,15217,15218,-9,-9,1,0,20,0,1,0,2,2,-9,0,3,6.8846612,7.1066647,0,3,0,-11.416252,0,-9,-9,2021,8,0,12,12,1,0,0,11.322994,11.322994,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.74,55.09,6.666666666666667,1,1,0,0,4,8,2,1,900,32153.664,0,0,0,0,0,1061.922 +7003,8534,15218,15217,15215,15214,1,1,20,0,1,1,3,0,0,0,3,0,0,0,3,0,16.768908,-9,2,3,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,57.33,53.46,8.333333333333334,1,1,0,0,13,8,2,1,900,32153.664,0,0,0,0,0,1061.922 +7004,8535,15219,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.635623,6.4572692,0,0,-1104.5815,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5713453,62.05,40.82,-9,-9,10,1,1,0,0,4,7,2,0,1015,230974.33,187108.16,106973.98,0,-451.95175,0,1024.2227 +7005,8536,15220,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,6.764924,6.5941706,19,12,177.07553,0,-9,3,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.3293228,6.8198342,11.96,51.7,45.98,45.77,0,1,1,1,1,8,6,2,1,3871,194449.05,0,0,0,0,0,1165.2039 +7005,8537,15221,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,6.2999964,6.2301145,0,9,-12,-55.206654,-9,-9,-9,2021,9,0,10,0,1,0,0,6.8243613,6.8243613,0,0,0,0,0,0,0,0,1,1,0,0,0,45.98,45.77,11.96,51.7,5,1,1,0,0,8,6,2,1,1469,85075.984,30643.465,0,0,0,0,647.2644 +7006,8538,15222,15223,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.1514473,9.4518785,8.5414982,27,-1,-39.938103,0,2,2,2021,8,1,90,63,1,1,0,10.935681,10.935681,0,0,0,0,0,0,0,0,0,0,0,6.4442196,8.7445297,51.24,58.84,57.46,45.44,8.333333333333334,1,1,0,0,13,12,5,1,319.5,202095.88,59637.203,229751.09,0,39256.336,2129.9878,6955.9453 +7006,8538,15223,15222,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.6659937,8.379982,0,27,1,184.25085,0,2,2,2021,5,0,40,37,1,0,0,20.31189,20.31189,.05,.05,0,0,0,0,0,0,0,0,0,3.1610882,0,57.46,45.44,51.24,58.84,8.333333333333334,1,1,0,0,14,12,5,1,319.5,202095.88,59637.203,229751.09,0,39256.336,2129.9878,6955.9453 +7007,8539,15224,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,9.1991463,9.2136602,6.5401077,19,-18,61.918854,0,1,2,2021,7,0,45,60,1,0,0,21.846613,21.846613,.05,.05,0,0,0,0,0,0,1,1,0,.21170664,6.8799877,58.05,54.52,53.1,32.4,8.333333333333334,1,1,0,0,11,7,5,1,358,149154.58,-93661.766,365608.47,101242.52,4362.936,4230.0244,2948.5547 +7007,8540,15225,-9,-9,-9,1,0,65,0,1,0,3,3,-9,0,2,1.6238695,2.8173749,1.9846557,19,18,-136.99925,0,-9,-9,2021,11,0,37,38,1,0,0,.013937764,.013937764,0,0,0,1,0,.34000963,0,0,1,1,0,0,2.1106732,53.1,32.4,58.05,54.52,3.333333333333333,1,1,0,0,14,7,5,1,2319,52349.285,0,150356.08,0,0,0,84.804253 +7008,8541,15226,15227,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.2494822,8.3808823,0,28,1,-90.551598,0,3,3,2021,2,0,60,50,1,0,0,12.459435,12.459435,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,47.79,56.46,57.53,21.22,8.333333333333334,1,1,0,0,9,8,4,1,786.5,493612.66,305991.69,308265.25,24249.68,0,0,3259.9575 +7008,8541,15227,15226,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.2896347,6.9547305,0,28,-1,137.47983,0,2,2,2021,14,3,4,15,1,3,0,34.109341,34.109341,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.53,21.22,47.79,56.46,6.666666666666667,2,3,0,0,8,8,4,1,786.5,493612.66,305991.69,308265.25,24249.68,0,0,3259.9575 +7009,8542,15228,-9,-9,-9,1,0,54,0,1,0,3,3,-9,1,4,7.5527134,7.5241861,5.5172944,0,0,-916.14825,0,2,-9,2021,8,0,21,20,1,0,0,10.518776,10.518776,.05,.05,0,0,0,0,0,0,1,1,0,5.7492223,0,58.87,51.29,-9,-9,6.666666666666667,1,1,0,0,8,4,3,1,1906,133939.47,134575.95,0,0,653.03693,484.12445,2499.7358 +7009,8542,15229,-9,15228,-9,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1136.3424,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,3,1,1906,133939.47,134575.95,0,0,653.03693,484.12445,2499.7358 +7010,8543,15230,15231,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,8.480278,8.6273785,11,-2,-26.896877,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.5461559,8.5077591,54.19,39.69,59.46,46.99,8.333333333333334,1,1,0,0,8,12,5,1,2271,1947298.5,1768769,169495.33,0,2021.0914,3376.2874,3760.4812 +7010,8543,15231,15230,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.1746435,8.3302813,11,2,-14.190864,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4151134,59.46,46.99,54.19,39.69,8.333333333333334,1,1,0,0,1,12,5,1,2271,1947298.5,1768769,169495.33,0,2021.0914,3376.2874,3760.4812 +7011,8544,15232,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.3833847,8.3601713,0,0,0,-1038.8014,0,3,3,2021,9,1,46,40,1,1,0,12.571459,12.571459,.05,.05,0,0,0,0,0,0,0,0,0,5.1750197,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,1,752,867088.5,361250.81,196627.47,0,0,0,1811.0883 +7012,8545,15233,-9,15234,15235,1,0,38,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1032.4341,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.13,57.85,-9,-9,0,1,1,1,1,5,8,1,0,1322,0,0,0,0,0,0,223.99889 +7012,8546,15234,15235,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,3,-3,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.44,55.06,43.34,33.08,10,2,3,0,0,0,8,1,0,568,198116,3495.6113,166781.41,0,0,0,1609.1538 +7012,8546,15235,15234,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,0,0,3,3,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,14.812767,0,0,1,1,0,0,0,43.34,33.08,47.44,55.06,8.333333333333334,1,1,0,0,0,8,1,0,568,198116,3495.6113,166781.41,0,0,0,1609.1538 +7013,8547,15236,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,7.9145589,7.8626494,0,0,-1045.8787,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2010479,7.624125,53.63,35.18,-9,-9,6.666666666666667,1,1,0,0,13,4,3,0,1279,902995.63,844031.63,127646.44,0,3426.6001,0,1030.5366 +7013,8548,15237,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1736574,8.5467844,0,0,0,-1048.5637,-9,-9,-9,2021,16,5,45,0,1,5,0,13.627198,13.627198,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.69,58.35,-9,-9,8.333333333333334,1,1,0,0,3,4,5,0,380,77608,-100795.15,0,0,-709.53717,0,1837.7263 +7014,8549,15238,15239,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,5.7420135,5.9953961,0,41,-2,-27.086296,0,3,3,2021,16,4,25,25,1,4,0,1.9755344,1.9755344,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.08,49.23,45.42,41.86,3.333333333333333,1,1,0,1,4,9,3,0,798.5,604703.63,507834.56,0,0,0,0,1561.0903 +7014,8549,15239,15238,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,7.8956013,7.8764625,6.0117326,41,2,-154.37929,0,-9,3,2021,15,4,36,39,1,4,0,8.9320631,8.9320631,.05,.05,0,0,0,0,0,0,1,1,0,0,6.4993153,45.42,41.86,37.08,49.23,3.333333333333333,1,1,0,1,11,9,3,0,798.5,604703.63,507834.56,0,0,0,0,1561.0903 +7014,8550,15240,-9,15238,15239,1,0,32,0,0,0,2,2,-9,0,3,8.0459795,7.9740047,0,0,0,-975.64178,0,2,3,2021,11,0,54,51,1,0,1,6.032516,6.032516,0,0,0,0,0,0,0,0,1,1,0,0,0,41.57,45.88,-9,-9,5,1,1,0,0,10,9,4,0,889,67794.781,0,0,0,0,0,958.54297 +7014,8551,15241,-9,15238,15239,1,1,25,0,0,0,2,2,-9,0,3,4.629745,4.5290384,0,0,0,-908.00623,0,2,3,2021,15,3,35,40,1,3,1,.31161875,.31161875,0,0,0,0,0,0,0,0,1,1,0,0,0,49.27,39.58,-9,-9,1.666666666666667,1,1,0,0,7,9,2,0,232,-127338.32,0,0,0,0,0,392.84238 +7015,8552,15242,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,0,0,0,0,-947.26489,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.33,49.24,-9,-9,8.333333333333334,1,1,0,0,7,10,1,0,219,86107.023,0,0,0,0,0,785.92224 +7016,8553,15243,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.6122904,6.1231017,0,0,-1106.5714,0,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0613084,5.8331895,50,47,-9,-9,7,1,1,0,0,0,4,2,0,1943,29635.422,70429.016,0,0,0,0,1448.2963 +7017,8554,15244,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.2278614,8.1044483,0,0,-1104.2084,-9,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4092774,8.245491,55.51,51.57,-9,-9,6.666666666666667,1,1,0,0,4,5,4,1,194,484366.47,118923.2,27983.424,0,0,0,2684.6221 +7018,8555,15245,-9,15246,15247,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.8564,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,446.33334,349417.81,171325.83,120692.13,0,0,2716.8071,2748.5581 +7018,8555,15246,15247,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.4331903,7.7830076,0,23,-4,-14.727637,0,3,2,2021,12,0,25,25,1,0,0,8.9650049,8.9650049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52.4,52.91,5,1,1,0,0,14,2,3,1,446.33334,349417.81,171325.83,120692.13,0,0,2716.8071,2748.5581 +7018,8555,15247,15246,-9,-9,1,1,52,0,1,0,2,2,-9,0,3,8.0359106,8.1435137,0,11,4,-16.981293,0,2,2,2021,9,0,40,40,1,0,0,6.574214,6.574214,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,50.03,52.62,8.333333333333334,1,1,0,0,9,2,3,1,446.33334,349417.81,171325.83,120692.13,0,0,2716.8071,2748.5581 +7018,8556,15248,-9,15246,15247,1,1,19,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1009.282,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0458236,0,39,45,-9,-9,5,1,1,0,0,0,2,1,1,691,125267.25,0,105115.37,0,0,0,581.80865 +7019,8557,15249,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.6683288,7.6540203,0,0,0,-998.91461,0,2,3,2021,10,0,24,23,1,0,0,8.3051233,8.3051233,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,8,13,3,0,219,25967.088,-36900.762,0,0,0,0,1873.239 +7019,8558,15250,-9,15249,-9,1,1,18,0,0,0,2,2,-9,0,4,6.8578558,6.7445726,0,0,0,-969.42023,0,1,-9,2021,19,8,18,0,1,8,1,5.0686393,5.0686393,.05,.05,0,0,0,0,0,2,1,1,0,0,0,29.09,63.45,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,514,-139860.53,-25695.646,0,0,0,0,890.68921 +7020,8559,15251,-9,-9,-9,1,0,56,1,1,0,2,2,-9,0,4,8.0321026,8.1966047,0,0,0,-1043.9763,-9,3,3,2021,6,0,36,0,1,0,0,9.631073,9.631073,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,1895,384262.22,143005.36,94193.039,113110.59,5298.0918,0,1769.0223 +7020,8560,15252,-9,15251,-9,1,0,22,1,1,0,2,2,-9,0,4,7.8830452,8.0132256,0,0,0,-1101.162,-9,2,-9,2021,6,0,38,0,1,0,1,11.368983,11.368983,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,1,5,3,1,499,-98457.625,-43152.941,0,0,0,0,705.59418 +7021,8561,15253,15256,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,8.8438911,9.0605621,0,19,11,5.1266575,0,2,2,2021,24,10,39,42,1,10,0,25.500334,25.500334,0,0,0,0,0,0,0,14.5,1,1,0,4.6716743,0,48.14,53.42,29.15,62.08,3.333333333333333,1,1,0,0,8,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7021,8561,15254,-9,15256,15253,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.9192,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7021,8561,15255,-9,15256,15253,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.4716,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7021,8561,15256,15253,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,7.302052,7.0770984,0,19,-11,13.110606,0,3,-9,2021,24,12,8,10,1,12,0,20.578566,20.578566,0,0,0,0,0,0,0,7,1,1,0,0,0,29.15,62.08,48.14,53.42,8.333333333333334,1,1,0,0,8,2,4,1,1045.5,554945.63,406826.47,285994.31,69400.125,0,0,3416.4771 +7022,8562,15257,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.9294677,6.3048129,0,0,-1053.5835,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2430439,6.6198373,52.1,50.19,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,447,415645.81,144102.39,94610.695,0,0,0,-668.3728 +7023,8563,15258,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.6451373,6.5605092,0,0,-1008.7657,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4626241,7.1496005,70.64,17.02,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,543,36194.344,98658.07,46936.738,0,0,0,1325.8513 +7024,8564,15259,15260,-9,-9,1,0,47,0,0,0,2,2,-9,1,3,6.5722747,6.6610436,0,23,-6,-57.521553,0,2,2,2021,12,0,12,14,1,0,0,8.3504581,8.3504581,0,0,0,0,0,0,0,114,1,1,0,0,0,52,54.51,36.51,28.13,8.333333333333334,1,1,0,0,4,10,2,1,1106,131728.83,0,0,0,3951.5676,137.30139,811.56921 +7024,8564,15260,15259,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,11,6,40.097717,-9,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.51,28.13,52,54.51,5,1,1,0,0,0,10,2,1,1106,131728.83,0,0,0,3951.5676,137.30139,811.56921 +7025,8565,15261,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.9984374,8.0479603,0,0,0,-1093.5865,0,2,3,2021,18,6,41,46,1,6,0,8.6895552,8.6895552,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.74,38.46,-9,-9,1.666666666666667,1,1,0,0,8,10,4,0,656,157252.47,-75325.344,314910.53,0,0,0,2442.7029 +7026,8566,15262,15263,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.278017,7.2689662,49,-1,-40.369785,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2509267,7.3155088,58.31,42.52,39.88,50.52,8.333333333333334,1,1,0,0,3,13,2,1,357,414399.28,338740.44,93572.094,0,0,0,1317.3755 +7026,8566,15263,15262,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.0033803,4.8392415,49,1,43.176239,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4380689,4.9871373,39.88,50.52,58.31,42.52,8.333333333333334,1,1,0,0,0,13,2,1,357,414399.28,338740.44,93572.094,0,0,0,1317.3755 +7027,8567,15264,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,6.7608485,6.8304448,0,0,-1019.5288,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,1.1854187,4.7191143,25.909637,0,1,1,0,2.4664865,6.6809287,34.29,30.34,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,793,-158628.64,-18818.094,0,0,0,0,1629.761 +7028,8568,15265,15266,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.1664915,8.0311203,0,17,-1,-84.932487,0,3,3,2021,12,0,78,38,1,0,0,6.371655,6.371655,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,57.16,56.15,8.333333333333334,1,1,0,0,15,10,5,1,252.5,531309.75,209358.08,228467.53,0,10832.104,0,3610.1873 +7028,8568,15266,15265,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.433814,8.6132383,0,16,1,.16056436,0,2,2,2021,6,0,39,37,1,0,0,17.969461,17.969461,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.28,60.18,10,1,1,0,0,15,10,5,1,252.5,531309.75,209358.08,228467.53,0,10832.104,0,3610.1873 +7029,8569,15267,15268,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,9.0807285,8.9726572,0,11,1,87.029076,0,1,1,2021,9,1,39,39,1,1,0,23.164022,23.164022,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.19,46.16,55.96,49.93,8.333333333333334,1,1,0,0,12,7,5,0,1162.5,1031903.5,417148,238824.5,77815.711,0,0,5245.9883 +7029,8569,15268,15267,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.685133,9.1053085,0,11,-1,49.286991,0,2,2,2021,9,0,45,55,1,0,0,21.950014,21.950014,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,56.19,46.16,8.333333333333334,1,1,0,0,14,7,5,0,1162.5,1031903.5,417148,238824.5,77815.711,0,0,5245.9883 +7030,8570,15269,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1047.0165,0,2,-9,2021,11,0,0,13,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,7,4,1,0,234,-181610.33,0,0,0,0,0,-70.558746 +7031,8571,15270,15271,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,9.045722,9.1983118,0,10,-3,13.232158,0,2,-9,2021,7,0,42,38,1,0,0,19.459009,19.459009,0,0,0,0,0,0,0,0,0,0,0,4.2679486,0,61.28,35.65,46.56,50.26,8.333333333333334,1,1,0,0,11,12,5,1,1132.5,2258386,1647607.8,388227,0,0,0,2751.9707 +7031,8571,15271,15270,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,0,0,10,3,.0011797885,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,4.1374331,0,46.56,50.26,61.28,35.65,8.333333333333334,1,1,0,0,0,12,5,1,1132.5,2258386,1647607.8,388227,0,0,0,2751.9707 +7032,8572,15272,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.6306596,7.6390176,0,0,0,-976.23694,0,-9,-9,2021,6,0,48,59,1,0,0,6.4466214,6.4466214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,6,5,4,0,1446,-41439.438,-7605.5337,0,0,0,0,1787.849 +7033,8573,15273,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.8882246,7.4440222,0,0,0,-1055.485,0,2,2,2021,10,1,33,38,1,1,0,8.0460577,8.0460577,.05,.05,0,0,0,0,0,0,0,0,0,0,0,66.34,49.42,-9,-9,5,1,1,0,0,11,1,3,1,2806,34327.91,78831.617,0,0,2795.8887,0,1378.1765 +7033,8574,15274,-9,15273,-9,1,1,25,0,0,0,2,2,-9,0,4,8.4377632,8.2597713,0,0,0,-901.12109,0,2,2,2021,9,3,53,44,1,3,1,9.2067623,9.2067623,.05,.05,0,0,0,0,0,0,0,0,0,7.0327902,0,56.18,42.45,-9,-9,0,1,1,0,0,9,1,4,1,682,83160.852,75925.688,0,0,4595.5796,0,766.27362 +7034,8575,15275,-9,-9,-9,1,0,49,0,0,0,1,1,-9,1,2,7.8326058,7.9236913,0,0,0,-1046.7861,0,2,2,2021,15,3,38,38,1,3,0,7.6658845,7.6658845,0,0,.05,0,0,0,0,0,1,1,0,0,0,37.02,37.37,-9,-9,5,1,1,0,0,10,6,3,1,893,-141656.97,-32037.086,0,0,9675.833,0,1846.6293 +7035,8576,15276,15277,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.987525,7.2404232,54,-3,6.5388193,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.4228413,7.2060184,55.36,54.24,45.14,31.84,8.333333333333334,1,1,0,0,4,9,2,1,2294,725010.5,271437.88,432371.44,0,0,0,1918.1128 +7035,8576,15277,15276,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,54,3,88.384315,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8071129,0,45.14,31.84,55.36,54.24,8.333333333333334,1,1,0,0,0,9,2,1,2294,725010.5,271437.88,432371.44,0,0,0,1918.1128 +7036,8577,15278,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,7.2278814,7.2559996,0,0,-986.90057,0,2,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,2.8477728,0,21.377165,0,1,1,0,5.0612683,6.9290533,60.64,24.61,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,686,755026.81,20602.596,671875.75,0,0,0,1094.48 +7037,8578,15279,-9,15280,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1147.0483,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1283.5,192578.38,40984.852,178947.28,0,0,0,2169.8511 +7037,8578,15280,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.637495,8.3435268,0,0,0,-898.65326,0,1,1,2021,9,0,25,40,1,0,0,23.574184,23.574184,0,0,0,0,0,0,0,0,1,1,0,4.7786417,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,1283.5,192578.38,40984.852,178947.28,0,0,0,2169.8511 +7038,8579,15281,-9,15282,15283,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.6332,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,5,1,656,406461.47,132222.31,432193.81,230532.81,656.36688,1414.2467,5461.7192 +7038,8579,15282,15283,-9,-9,1,0,39,1,1,0,1,1,-9,1,1,8.4645491,8.7687302,0,7,2,-68.092072,0,2,2,2021,19,8,40,40,1,8,0,13.939852,13.939852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.09,23.78,35.8,59.5,8.333333333333334,1,1,0,0,12,2,5,1,656,406461.47,132222.31,432193.81,230532.81,656.36688,1414.2467,5461.7192 +7038,8579,15283,15282,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,9.0536804,9.322299,0,7,-2,48.475746,0,-9,-9,2021,11,3,37,40,1,3,0,31.35281,31.35281,.05,.05,0,0,0,0,0,2,1,1,0,6.5310359,0,35.8,59.5,46.09,23.78,6.666666666666667,1,1,0,0,7,2,5,1,656,406461.47,132222.31,432193.81,230532.81,656.36688,1414.2467,5461.7192 +7039,8580,15284,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,7.6923008,7.7951636,0,0,-857.22931,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8446841,7.5211892,53.56,36.43,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,2812,699248.5,451385.19,345910.25,0,2752.4783,0,1244.8751 +7040,8581,15285,15287,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,9.0687323,9.2558575,0,21,1,16.765507,0,2,2,2021,17,5,45,45,1,5,0,21.904703,21.904703,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.99,57.05,54.67,57.49,6.666666666666667,1,1,0,0,13,2,5,1,565,483277.28,449948.81,234473.23,38613.246,9434.0293,2565.7307,4175.1826 +7040,8581,15286,-9,15287,15285,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.5065,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,565,483277.28,449948.81,234473.23,38613.246,9434.0293,2565.7307,4175.1826 +7040,8581,15287,15285,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,9.1314211,8.7895412,0,21,-1,-30.86454,0,1,1,2021,10,0,38,40,1,0,0,19.917131,19.917131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.67,57.49,31.99,57.05,8.333333333333334,1,1,0,0,13,2,5,1,565,483277.28,449948.81,234473.23,38613.246,9434.0293,2565.7307,4175.1826 +7040,8582,15288,-9,15287,15285,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1014.5948,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,5,1,1,0,0,1,2,1,1,239,314276.25,0,152589.23,0,0,0,-5.7922363 +7041,8583,15289,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.6518087,9.4968948,0,0,0,-982.08759,0,2,1,2021,11,0,45,47,1,0,0,32.147526,32.147526,0,0,0,0,0,0,0,0,0,0,0,4.012917,0,52.97,51.29,-9,-9,6.666666666666667,1,1,0,0,13,1,5,1,249,1011527.6,594520.06,0,0,1588.1306,0,3730.9622 +7042,8584,15290,-9,-9,-9,1,0,43,0,3,0,2,2,-9,0,3,0,0,0,0,0,-980.9068,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.15000000000001,23.76,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7042,8584,15291,-9,15290,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1007.5095,-9,2,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.01,43.11,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7042,8584,15292,-9,15290,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1153.9475,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7042,8584,15293,-9,15290,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.60773,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,1,0,1640,-71718.875,0,0,0,7365.8652,0,1202.7972 +7043,8585,15294,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.6739254,7.5645504,0,0,0,-994.34363,-9,2,2,2021,9,0,39,0,1,0,0,5.8358135,5.8358135,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,6,3,1,1499,-86976.227,80676.547,0,0,0,6437.4224,1084.1447 +7044,8586,15295,15296,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.8331347,8.3824577,0,14,-1,-49.370529,0,2,2,2021,10,0,37,53,1,0,0,24.179373,24.179373,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,47.49,55.02,6.666666666666667,1,1,0,0,9,6,5,1,693.33331,450331.44,221195.89,138547.22,0,3147.5315,0,4815.3394 +7044,8586,15296,15295,-9,-9,1,1,40,0,1,0,1,1,-9,1,4,8.593132,8.6709042,6.7610588,12,1,-77.00779,0,2,1,2021,9,1,37,37,1,1,0,14.150784,14.150784,.05,.05,0,0,0,0,0,2,1,1,0,7.6750026,0,47.49,55.02,49.86,55.31,8.333333333333334,1,1,0,0,11,6,5,1,693.33331,450331.44,221195.89,138547.22,0,3147.5315,0,4815.3394 +7044,8586,15297,-9,15295,15296,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.53967,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,693.33331,450331.44,221195.89,138547.22,0,3147.5315,0,4815.3394 +7045,8587,15298,15299,-9,-9,1,1,43,0,3,0,2,2,-9,0,5,7.933238,7.99891,0,10,4,75.531822,0,3,3,2021,11,0,40,40,1,0,0,8.0650692,8.0650692,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.57,52.88,51.1,38.32,3.333333333333333,2,3,0,0,12,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15299,15298,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,0,0,0,14,-4,67.524979,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.1,38.32,49.57,52.88,1.666666666666667,2,3,1,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15300,-9,15299,15298,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-995.29669,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15301,-9,15299,15298,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.948,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7045,8587,15302,-9,15299,15298,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-869.08624,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,5,2,0,942,-11533.592,90207.234,0,0,0,-168.52167,2002.4984 +7046,8588,15303,-9,-9,-9,1,0,31,0,3,0,2,2,-9,0,5,0,0,0,0,0,-976.60052,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,27.9,67.39,-9,-9,0,3,4,0,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7046,8588,15304,-9,15303,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-899.85498,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7046,8588,15305,-9,15303,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.6816,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7046,8588,15306,-9,15303,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.65826,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,0,0,0,0,0,0,1784.5094 +7047,8589,15307,15308,-9,-9,1,1,51,0,1,0,2,2,-9,0,5,9.9964113,9.9183731,0,8,0,-37.193367,0,2,1,2021,6,0,40,35,1,0,0,64.942696,64.942696,.05,.05,0,0,0,0,0,0,1,1,0,7.7354388,0,58.05,54.52,57.06,57.76,8.333333333333334,1,1,0,0,10,5,5,1,1175.5,1177723.1,443392.28,268264.19,0,0,0,8719.9551 +7047,8589,15308,15307,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,6.1649218,6.0312123,0,8,0,11.56782,0,2,3,2021,6,0,10,7,1,0,0,4.9765015,4.9765015,.05,.05,0,0,0,0,0,0,1,1,0,7.1516514,0,57.06,57.76,58.05,54.52,8.333333333333334,1,1,0,0,10,5,5,1,1175.5,1177723.1,443392.28,268264.19,0,0,0,8719.9551 +7048,8590,15309,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.7359972,8.7798071,0,0,0,-1010.6017,0,2,2,2021,9,0,60,55,1,0,0,13.174129,13.174129,.05,.05,0,0,0,0,0,0,0,0,0,6.0312223,0,50.03,39.39,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,2148,609808.5,338804.34,284239.91,56834.836,0,0,2200.1443 +7048,8591,15310,-9,15309,-9,1,0,26,0,0,0,2,2,-9,0,3,8.2323122,8.5413799,0,0,0,-989.3905,0,1,-9,2021,12,2,37,45,1,2,1,10.762084,10.762084,.05,.05,0,0,0,0,0,0,0,0,0,.44276652,0,38.86,59.06,-9,-9,6.666666666666667,1,1,0,0,7,9,4,1,521,92676.766,-9212.0557,0,0,0,0,1215.3489 +7048,8592,15311,-9,-9,-9,1,0,25,0,0,0,3,3,-9,0,4,7.5124245,7.8812742,0,0,0,-1044.2255,0,-9,-9,2021,11,0,45,45,1,2,0,5.9583473,5.9583473,0,0,0,0,0,0,0,0,0,0,0,0,0,42.08,53.5,-9,-9,5,1,1,0,0,1,9,3,1,313,163248.41,0,0,0,1700.8777,0,810.36517 +7049,8593,15312,15313,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,33,-2,-158.68449,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3147571,0,51.77,58.57,62.39,56.71,8.333333333333334,1,1,0,0,7,9,2,1,945.5,1105743.5,697060.19,361476.72,0,0,0,1764.385 +7049,8593,15313,15312,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,6.911808,6.7138038,0,32,2,32.59219,0,3,3,2021,7,0,40,40,1,0,0,2.0268304,2.0268304,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,51.77,58.57,8.333333333333334,1,1,0,1,11,9,2,1,945.5,1105743.5,697060.19,361476.72,0,0,0,1764.385 +7050,8594,15314,15315,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.1436138,6.7162995,35,-3,18.106771,0,1,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3609514,6.7219739,38.26,60.7,57.33,53.46,6.666666666666667,1,1,0,0,10,9,2,1,1258,708738.5,452329.66,219548.05,0,0,0,851.28442 +7050,8594,15315,15314,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.2620668,5.8518424,35,3,-94.248367,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9213843,6.2964826,57.33,53.46,38.26,60.7,1.666666666666667,1,1,0,0,7,9,2,1,1258,708738.5,452329.66,219548.05,0,0,0,851.28442 +7051,8595,15316,-9,15317,15318,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-976.72083,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,0,473,126899.89,60470.996,95035.258,0,0,0,2257.3022 +7051,8595,15317,15318,-9,-9,1,0,44,1,1,0,1,1,-9,0,4,7.7071757,8.0281515,0,2,-3,-24.140821,0,-9,-9,2021,10,1,32,44,1,1,0,8.5335102,8.5335102,.05,.05,0,0,0,0,0,2,1,0,1,0,0,39.69,58.96,41.07,49.75,10,1,1,0,0,5,11,4,0,473,126899.89,60470.996,95035.258,0,0,0,2257.3022 +7051,8595,15318,15317,-9,-9,1,1,47,1,1,0,2,2,-9,0,3,7.8884006,7.6600752,0,2,3,-26.689043,0,1,-9,2021,12,0,32,37,1,0,0,7.5608244,7.5608244,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.07,49.75,39.69,58.96,6.666666666666667,1,1,0,1,6,11,4,0,473,126899.89,60470.996,95035.258,0,0,0,2257.3022 +7051,8596,15319,-9,15317,15318,1,1,25,1,1,0,1,1,-9,0,2,0,5.2257533,5.5722699,0,0,-967.80066,0,1,2,2021,23,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,0,1,5.4580989,0,24.92,53.82,-9,-9,1.666666666666667,1,1,1,1,0,11,2,0,539,-33129.469,0,0,0,0,0,764.79944 +7052,8597,15320,-9,-9,15321,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0345,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,758.66669,504308.88,62709.125,417503.34,262449.5,0,0,3857.127 +7052,8597,15321,15322,-9,-9,1,1,33,0,1,0,1,1,-9,0,3,8.5338478,8.8876467,0,7,3,-27.044369,0,-9,-9,2021,21,9,43,44,1,9,0,19.020149,19.020149,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.06,44.61,43.67,61.06,5,1,1,0,0,10,9,5,0,758.66669,504308.88,62709.125,417503.34,262449.5,0,0,3857.127 +7052,8597,15322,15321,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.3956242,8.4785662,0,7,-3,-71.372116,0,2,2,2021,12,0,45,43,1,0,0,14.641941,14.641941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,26.06,44.61,8.333333333333334,1,1,0,0,9,9,5,0,758.66669,504308.88,62709.125,417503.34,262449.5,0,0,3857.127 +7053,8598,15323,15324,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.4307342,7.1812963,0,27,-8,78.91433,0,3,3,2021,11,0,50,38,1,0,0,3.5206723,3.5206723,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.2,39.09,60.29,52.11,3.333333333333333,1,1,0,0,9,9,5,1,1286.5,2426116,1066287.8,632935.5,0,0,0,7689.7852 +7053,8598,15324,15323,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,10.042955,9.6048298,0,26,8,-38.166138,0,3,3,2021,11,0,35,54,1,0,0,62.542904,62.542904,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.2,39.09,5,2,3,0,1,9,9,5,1,1286.5,2426116,1066287.8,632935.5,0,0,0,7689.7852 +7053,8599,15325,-9,15323,15324,1,0,22,0,0,0,2,2,-9,0,3,7.4910517,7.3612437,0,0,0,-966.70361,-9,2,3,2021,12,0,42,0,1,0,1,5.6840034,5.6840034,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.78,38.99,-9,-9,5,4,2,0,0,5,9,3,1,448,-32788.027,46187.625,0,0,0,0,921.25635 +7054,8600,15326,15327,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.5507193,7.5333414,0,14,10,81.18853,0,3,3,2021,8,0,48,46,1,0,0,5.3687658,5.3687658,0,0,.05,0,0,0,0,0,1,1,0,0,0,58.32,50.22,45.43,53.5,8.333333333333334,1,1,0,0,10,9,3,1,332.5,412403.34,200553.78,163736.31,0,0,4887.8955,2691.4141 +7054,8600,15327,15326,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,7.4542847,7.3737102,14,-10,-41.343113,0,3,3,2021,9,0,0,43,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6319818,0,45.43,53.5,58.32,50.22,8.333333333333334,1,1,0,0,9,9,3,1,332.5,412403.34,200553.78,163736.31,0,0,4887.8955,2691.4141 +7055,8601,15328,-9,15329,15330,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.5734,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,0,1571.6666,30920.459,65006.219,261842.95,148093.33,27505.754,5663.3242,12272.97 +7055,8601,15329,15330,-9,-9,1,0,32,1,1,0,2,2,-9,0,3,9.5967112,9.5793066,0,9,-2,-25.471674,0,3,-9,2021,24,11,16,-9,1,11,0,102.92875,102.92875,.05,.05,0,0,0,0,0,0,0,0,0,6.9937968,0,42.12,46.65,52,54.51,3.333333333333333,1,1,0,0,11,5,5,0,1571.6666,30920.459,65006.219,261842.95,148093.33,27505.754,5663.3242,12272.97 +7055,8601,15330,15329,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.2339869,9.1909857,0,9,2,11.38434,0,-9,-9,2021,8,0,48,60,1,0,0,24.517464,24.517464,.05,.05,0,0,0,0,0,0,0,0,0,7.0917749,0,52,54.51,42.12,46.65,8.333333333333334,1,1,0,0,14,5,5,0,1571.6666,30920.459,65006.219,261842.95,148093.33,27505.754,5663.3242,12272.97 +7056,8602,15331,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.6778045,6.3957348,0,0,-1009.7626,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5212779,6.5668602,59.84,43.22,-9,-9,10,1,1,0,0,0,6,2,1,1011,284110.19,148836.34,118699.67,0,0,0,975.49091 +7057,8603,15332,-9,15333,15334,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1052.8564,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,8,5,1,1543,793664.88,493506.91,258116.61,71511.555,0,0,10638.732 +7057,8603,15333,15334,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,9.3157635,9.5565042,0,9,0,42.047108,0,-9,-9,2021,9,0,5,20,1,0,0,285.85065,285.85065,.05,.05,0,0,0,0,0,0,0,0,0,8.8389006,0,57.33,53.46,61.68,50.1,8.333333333333334,1,1,0,0,7,8,5,1,1543,793664.88,493506.91,258116.61,71511.555,0,0,10638.732 +7057,8603,15334,15333,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.6571264,9.5773258,0,27,0,-8.2967739,0,2,1,2021,7,0,47,45,1,0,0,42.880016,42.880016,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,50.1,57.33,53.46,8.333333333333334,1,1,0,0,12,8,5,1,1543,793664.88,493506.91,258116.61,71511.555,0,0,10638.732 +7057,8604,15335,-9,15333,15334,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1087.9949,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7570415,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,1558,0,0,0,0,0,0,103.99269 +7058,8605,15336,-9,15339,15337,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-994.42023,-9,1,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8605,15337,15339,-9,-9,1,1,48,0,2,0,3,3,-9,0,3,8.8290825,8.6821566,0,26,-1,49.748753,0,3,3,2021,11,1,60,58,1,1,0,11.222702,11.222702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.93,50.55,51.25,26.87,8.333333333333334,1,1,0,0,13,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8605,15338,-9,15339,15337,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1004.7166,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8605,15339,15337,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,8.1936588,8.5131111,0,26,1,-22.686539,0,3,3,2021,12,0,35,35,1,0,0,15.329404,15.329404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.25,26.87,48.93,50.55,8.333333333333334,1,1,0,0,13,12,4,1,1636.75,630226.69,363345.69,242492.16,142602.66,10582.304,0,4755.9111 +7058,8606,15340,-9,15339,15337,1,0,18,0,2,0,2,2,1,0,4,6.5751071,6.3515229,0,0,0,-1065.8285,-9,1,3,2021,11,3,26,0,1,3,1,2.694484,2.694484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.71,48.99,-9,-9,8.333333333333334,1,1,0,0,2,12,2,1,693,-15829.217,26197.291,0,0,0,0,37.467293 +7059,8607,15341,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,9.0217371,8.9399109,0,0,0,-960.68231,0,3,2,2021,7,0,43,43,1,0,0,25.919252,25.919252,.05,.05,0,0,0,0,.59333813,0,1,1,0,.90704358,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,9,7,5,1,149,749445.75,718707.5,213910.05,119264.88,0,10657.69,2754.5693 +7060,8608,15342,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.8730164,8.1203365,0,0,0,-1078.4014,0,2,1,2021,6,0,40,51,1,0,0,8.9613657,8.9613657,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,273,162723.25,-7997.8555,0,0,0,0,1178.4039 +7061,8609,15343,-9,15344,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.4358,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,5,0,534,444165.34,200382.53,214957.44,1619.712,0,0,2351.9858 +7061,8609,15344,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.6979408,8.6431484,0,0,0,-972.23718,-9,2,2,2021,11,0,42,0,1,1,0,19.19589,19.19589,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,3,4,0,0,13,8,5,0,534,444165.34,200382.53,214957.44,1619.712,0,0,2351.9858 +7062,8610,15345,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,5.5882196,5.5392456,0,0,-1093.7883,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3729024,36.78,41.13,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,363,23948.574,0,0,0,0,0,776.79199 +7063,8611,15346,15347,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.0770168,7.2360077,48,-1,-12.938025,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4664488,7.0623589,57.5,37.38,53,47,6.666666666666667,1,1,0,0,4,2,3,1,1760.5,574455.94,315439.59,221913.25,0,0,0,2680.4736 +7063,8611,15347,15346,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.2982593,7.0371418,9,1,-62.821838,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3326015,7.0891223,53,47,57.5,37.38,7,1,1,0,0,0,2,3,1,1760.5,574455.94,315439.59,221913.25,0,0,0,2680.4736 +7064,8612,15348,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1051.3124,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,28.15,27.84,-9,-9,1.666666666666667,2,3,0,1,0,6,1,1,811,-12949.881,0,0,0,0,0,597.13531 +7065,8613,15349,15350,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.8855343,6.8902736,5,12,138.65242,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1366014,7.005672,46.83,40.55,55.44,52.99,8.333333333333334,1,1,0,0,0,4,2,1,425,289330,149780.66,213149.5,0,0,0,1703.1185 +7065,8613,15350,15349,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,5,-12,-35.607742,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.44,52.99,46.83,40.55,8.333333333333334,1,1,0,0,11,4,2,1,425,289330,149780.66,213149.5,0,0,0,1703.1185 +7066,8614,15351,15352,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,26,-6,9.7280464,-9,-9,-9,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.79,37.49,55.36,51.57,1.666666666666667,1,1,0,0,12,6,2,0,2166.5,91243.805,0,0,0,727.12494,0,210.51825 +7066,8614,15352,15351,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,6.3104353,6.3655419,0,12,6,35.689903,0,-9,-9,2021,11,0,50,50,1,0,0,1.6037437,1.6037437,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,30.79,37.49,8.333333333333334,1,1,0,0,8,6,2,0,2166.5,91243.805,0,0,0,727.12494,0,210.51825 +7067,8615,15353,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-965.34839,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.7727026,0,1,1,0,6.0748401,0,49.47,41.45,-9,-9,10,1,1,0,0,7,12,1,1,246,-30071.229,0,0,0,0,0,642.76117 +7068,8616,15354,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,0,0,0,0,-973.84265,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.44,51.82,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,931,218323.95,0,-2700.1743,0,0,0,1259.0808 +7069,8617,15355,15356,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,6.2785134,6.1787205,49,-2,-2.6888449,-9,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2105079,5.6713209,54.27,37.84,23.01,44.11,3.333333333333333,1,1,0,0,0,10,2,1,928,1420066.8,509164.75,480795.19,0,8538.375,0,1928.0586 +7069,8617,15356,15355,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.0657673,5.9147062,49,2,35.699867,-9,-9,-9,2021,23,9,0,0,4,9,0,0,0,0,0,0,1,0,1.7900597,0,0,1,1,0,0,5.8792615,23.01,44.11,54.27,37.84,5,1,1,0,0,0,10,2,1,928,1420066.8,509164.75,480795.19,0,8538.375,0,1928.0586 +7070,8618,15357,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,8.1580429,8.2499075,6.7966809,0,0,-973.8299,0,2,2,2021,11,1,42,44,1,1,0,12.209751,12.209751,.05,.05,0,0,0,0,0,0,0,0,0,0,6.7784076,51.44,32.2,-9,-9,6.666666666666667,1,1,0,0,12,11,4,0,1027,580993.88,80044.492,79701.086,0,0,0,1457.5143 +7071,8619,15358,15359,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,8.0036116,7.9939995,0,2,0,113.60416,0,3,3,2021,6,0,47,41,1,0,0,8.1706791,8.1706791,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,57.33,53.46,8.333333333333334,1,1,0,0,10,6,5,0,842.5,64358.93,16058.637,0,0,0,3301.2949,3289.3848 +7071,8619,15359,15358,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.4218531,8.1767435,0,2,0,86.878304,0,-9,-9,2021,7,0,46,43,1,0,0,8.7626104,8.7626104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,46.98,59.35,10,1,1,0,0,1,6,5,0,842.5,64358.93,16058.637,0,0,0,3301.2949,3289.3848 +7072,8620,15360,15361,-9,-9,1,1,32,0,0,0,2,2,-9,1,2,0,0,0,6,1,-75.246056,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.22,26.94,44.81,57.83,5,1,1,0,0,0,13,3,1,697.5,-49230.5,0,0,0,-69.277618,0,3453.5205 +7072,8620,15361,15360,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,7.8411646,7.7218442,0,6,-1,-65.333969,0,3,2,2021,10,0,39,38,1,0,0,8.5150032,8.5150032,0,0,0,0,0,0,0,0,1,1,0,4.0768814,0,44.81,57.83,39.22,26.94,6.666666666666667,1,1,0,0,8,13,3,1,697.5,-49230.5,0,0,0,-69.277618,0,3453.5205 +7073,8621,15362,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2199607,7.2804489,0,0,0,-958.78876,0,2,2,2021,8,0,28,0,1,0,0,6.5279841,6.5279841,.05,.05,0,0,0,0,0,7,1,1,0,3.5102375,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,512,211138.8,252888.3,0,0,7592.8853,166.80891,445.58997 +7074,8622,15363,15364,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.6695957,7.7633152,0,35,-4,92.06163,0,2,2,2021,12,0,30,32,1,2,0,9.5214863,9.5214863,0,0,0,0,0,0,0,0,0,0,0,0,0,48,49,50,49,7,1,1,0,0,13,10,3,0,827.5,473605.44,346695.81,211851.75,0,6890.2275,0,1276.0723 +7074,8622,15364,15363,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,11,4,-22.119385,0,2,2,2021,10,0,0,10,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,49,48,49,7,1,1,1,0,13,10,3,0,827.5,473605.44,346695.81,211851.75,0,6890.2275,0,1276.0723 +7075,8623,15365,15366,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.9364252,7.922061,0,11,-2,.6318267,0,-9,-9,2021,21,9,55,45,1,9,0,6.8253002,6.8253002,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.51,50.03,50.34,56.4,3.333333333333333,1,1,0,0,14,11,5,1,864.5,836808.63,874190,276199.28,87261.539,5251.0249,972.35468,3225.8193 +7075,8623,15366,15365,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.5389833,8.5621395,0,33,2,31.575809,0,2,2,2021,10,0,38,63,1,0,0,13.525519,13.525519,.05,.05,0,0,0,0,0,0,0,0,0,3.5360353,0,50.34,56.4,34.51,50.03,8.333333333333334,1,1,0,0,14,11,5,1,864.5,836808.63,874190,276199.28,87261.539,5251.0249,972.35468,3225.8193 +7076,8624,15367,15368,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.1507635,8.3453026,0,3,6,14.764751,0,3,3,2021,11,0,57,58,1,0,0,6.8431883,6.8431883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.83,50.63,38.22,58.43,6.666666666666667,1,1,0,0,5,4,4,0,365,23612.289,-56527.621,0,0,0,0,2265.7847 +7076,8624,15368,15367,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.5862775,7.8278389,0,3,-6,67.360527,0,-9,-9,2021,10,2,25,0,1,2,0,9.268651,9.268651,0,0,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,45.83,50.63,6.666666666666667,1,1,0,0,1,4,4,0,365,23612.289,-56527.621,0,0,0,0,2265.7847 +7077,8625,15369,15370,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.7248759,7.1850438,0,7,1,49.642105,0,2,3,2021,12,0,50,70,1,0,0,3.2345011,3.2345011,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,13,4,1,781.5,654197.63,489187.06,321117.91,0,1043.7996,0,3535.4155 +7077,8625,15370,15369,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,8.2166004,8.1797581,0,7,-1,64.434753,0,3,3,2021,6,0,25,30,1,0,0,18.203806,18.203806,0,0,0,0,0,0,0,0,0,0,0,7.6316624,0,57.06,57.76,57.16,56.15,10,1,1,0,0,8,13,4,1,781.5,654197.63,489187.06,321117.91,0,1043.7996,0,3535.4155 +7078,8626,15371,15372,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,7.1710863,7.4099255,3,-5,-53.362312,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.7815113,7.0072384,60.17,50.88,59.43,58.05,10,1,1,0,0,0,10,3,1,520.5,681811.38,360518.31,199740.63,0,0,0,7039.9824 +7078,8626,15372,15371,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,7.2955012,7.0303187,3,5,-40.934673,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1182861,7.3966246,59.43,58.05,60.17,50.88,10,1,1,0,0,6,10,3,1,520.5,681811.38,360518.31,199740.63,0,0,0,7039.9824 +7079,8627,15373,15374,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.8191681,8.5492754,0,6,1,108.99636,0,3,2,2021,9,0,40,41,1,0,0,17.73406,17.73406,.05,.05,0,0,0,0,0,0,0,0,0,3.0199308,0,51.83,49.33,54.23,49.6,8.333333333333334,1,1,0,0,9,12,5,1,1624,580473.19,49957.539,210824.56,124078.03,0,0,4142.8652 +7079,8627,15374,15373,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.4857464,8.5028248,0,6,-1,-142.66068,0,2,3,2021,17,6,12,10,1,6,0,49.253693,49.253693,.05,.05,0,0,0,0,0,7,0,0,0,3.7101047,0,54.23,49.6,51.83,49.33,5,1,1,0,0,9,12,5,1,1624,580473.19,49957.539,210824.56,124078.03,0,0,4142.8652 +7080,8628,15375,-9,-9,-9,1,1,29,0,0,0,1,1,1,0,2,8.0091057,8.2817869,5.9841361,4,3,.94531453,-9,2,2,2021,9,0,37,0,1,0,0,10.128511,10.128511,.05,.05,0,0,0,0,0,0,0,0,0,6.2888956,0,36.03,55.74,41.49,60.87,6.666666666666667,1,1,0,0,8,2,4,0,847,-220953.16,-15505.498,0,0,0,0,2177.554 +7080,8629,15376,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,7.8547435,8.1382427,0,4,-3,-11.273511,0,-9,-9,2021,2,0,40,35,1,0,0,8.9004955,8.9004955,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.49,60.87,36.03,55.74,8.333333333333334,1,1,0,0,4,2,4,0,414,-99742.32,48497.957,0,0,0,0,1270.2206 +7081,8630,15377,-9,15380,15378,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.468,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7081,8630,15378,15380,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,8.3613214,8.2363338,0,16,1,-16.013931,0,2,1,2021,17,5,40,46,1,5,0,13.969823,13.969823,.05,.05,0,0,0,0,0,0,1,1,0,.52681935,0,41.08,54.15,43.12,58.55,5,1,1,0,0,9,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7081,8630,15379,-9,15380,15378,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1176.5129,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7081,8630,15380,15378,-9,-9,1,0,34,0,2,0,1,1,-9,0,3,8.2971315,8.0519543,0,16,-1,6.2639565,0,1,1,2021,12,2,37,30,1,2,0,11.698956,11.698956,0,0,0,0,0,0,0,0,1,1,0,4.733664,0,43.12,58.55,41.08,54.15,8.333333333333334,1,1,0,0,8,1,4,1,477.25,213560.28,53209.367,235676.13,154641.41,10523.02,0,3069.8984 +7082,8631,15381,15383,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,9.6986771,9.943984,0,23,2,79.388329,0,2,1,2021,10,0,60,50,1,0,0,35.281696,35.281696,.05,.05,0,0,0,0,0,2,0,0,0,7.1780014,0,51.81,57.22,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,302,1491151.3,435230.59,798589.56,98802.586,5695.3799,0,12357.662 +7082,8631,15382,-9,15383,15381,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1099.3511,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,302,1491151.3,435230.59,798589.56,98802.586,5695.3799,0,12357.662 +7082,8631,15383,15381,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,9.2208576,9.2928925,0,23,-2,-36.694214,0,2,2,2021,9,0,24,10,1,0,0,46.250999,46.250999,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.1,59.11,51.81,57.22,8.333333333333334,1,1,0,0,2,9,5,1,302,1491151.3,435230.59,798589.56,98802.586,5695.3799,0,12357.662 +7082,8632,15384,-9,15383,15381,1,0,19,0,1,1,2,0,0,0,4,0,5.3775473,5.3870764,0,0,-971.35626,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9741464,0,48.87,58.55,-9,-9,10,1,1,0,0,2,9,2,1,1150,69495.57,0,0,0,0,0,64.762321 +7082,8633,15385,-9,15383,15381,1,0,18,0,1,1,2,0,0,0,3,0,3.7621315,3.3293269,0,0,-934.68896,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3334928,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,1,0,9,2,1,1750,153580.25,0,0,0,0,0,35.331665 +7083,8634,15386,15387,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.5731792,8.7129498,0,1,13,68.959198,-9,-9,-9,2021,13,3,37,0,1,3,0,18.24721,18.24721,.05,.05,0,0,0,0,0,0,0,0,0,5.6366181,0,49.82,54.1,57.16,56.15,6.666666666666667,1,1,0,0,4,1,5,0,588,1297010.9,925482.44,190811.59,0,0,0,3827.9346 +7083,8634,15387,15386,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2055321,8.2876244,0,1,-13,82.878677,-9,-9,-9,2021,6,0,37,0,1,0,0,12.352171,12.352171,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.82,54.1,8.333333333333334,1,1,0,0,6,1,5,0,588,1297010.9,925482.44,190811.59,0,0,0,3827.9346 +7084,8635,15388,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.39166,0,3,3,2021,26,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,34.45,31.91,-9,-9,1.666666666666667,1,1,0,0,0,4,1,1,1224,71644.68,0,34207.695,0,320.2717,0,598.23535 +7085,8636,15389,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1107.406,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.03,22.13,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,66,64448.535,0,0,0,0,1514.9811,677.95392 +7086,8637,15390,-9,15392,15391,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-924.00488,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7086,8637,15391,15392,-9,-9,1,1,59,1,2,0,2,2,-9,0,3,8.8030825,9.0090618,0,12,17,-36.390114,0,2,3,2021,17,6,48,49,1,6,0,16.583002,16.583002,.05,.05,0,0,0,0,0,0,0,0,0,5.1300631,0,43.18,53.23,24.19,61.89,6.666666666666667,1,1,0,0,12,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7086,8637,15392,15391,-9,-9,1,0,42,1,2,0,1,1,-9,0,4,9.0594778,9.0635872,0,12,-17,19.676918,0,2,1,2021,21,9,45,45,1,9,0,17.872839,17.872839,0,0,0,0,0,0,0,0,0,0,0,0,0,24.19,61.89,43.18,53.23,6.666666666666667,1,1,0,0,14,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7086,8637,15393,-9,15392,15391,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.5166,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,607,1485941.3,974835.88,538544.5,65119.793,1798.5438,7463.2881,5258.3721 +7087,8638,15394,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-995.14728,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.46668109,0,0,1,1,0,0,0,60.27,45.07,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,1384,-214248.39,0,0,0,0,0,1479.8134 +7088,8639,15395,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,0,0,-991.4809,0,2,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3944097,0,50,55,-9,-9,8,4,2,0,0,0,8,1,0,442.5,16112.828,0,0,0,-467.74216,0,840.89185 +7088,8639,15396,-9,15395,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0369,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,442.5,16112.828,0,0,0,-467.74216,0,840.89185 +7088,8640,15397,-9,15395,-9,1,0,22,0,2,1,2,0,0,0,3,0,0,0,0,0,-944.91241,-9,2,-9,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.1,54.44,-9,-9,5,3,4,0,0,4,8,2,0,149,68147.141,0,0,0,0,1388.9569,0 +7089,8641,15398,15399,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,5.0238113,5.0852656,55,6,36.129211,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,38.020203,0,0,1,1,0,3.6984594,4.6493745,50.53,19.16,35.43,42.24,6.666666666666667,1,1,0,0,0,6,2,1,748,0,0,0,0,0,0,1837.4072 +7089,8641,15399,15398,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,55,-6,21.818439,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.883074,0,35.43,42.24,50.53,19.16,3.333333333333333,1,1,0,0,0,6,2,1,748,0,0,0,0,0,0,1837.4072 +7090,8642,15400,15402,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,7.6321936,7.7230148,0,6,-2,19.219149,0,2,1,2021,17,6,28,28,1,6,0,6.1294785,6.1294785,.05,.05,0,0,0,0,0,2,1,1,0,0,0,42.24,58.9,53.75,41.28,8.333333333333334,1,1,0,0,8,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7090,8642,15401,-9,15400,15402,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.3278,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7090,8642,15402,15400,-9,-9,1,1,37,1,2,0,1,1,-9,0,3,8.5651941,8.5866776,0,6,2,36.054142,0,-9,-9,2021,12,1,49,48,1,1,0,14.89941,14.89941,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.75,41.28,42.24,58.9,6.666666666666667,1,1,0,0,10,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7090,8642,15403,-9,15400,15402,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.3379,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,868.75,355997.88,13891.953,201911.03,139036,12866.528,0,3072.981 +7091,8643,15404,15406,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,7.1402435,6.9682217,0,10,0,-46.109398,0,-9,-9,2021,10,1,45,53,1,1,0,2.7297921,2.7297921,0,0,0,0,0,0,0,0,1,1,0,5.7141938,0,33.9,60.31,32.42,32.71,5,1,1,0,0,11,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8643,15405,-9,15406,15404,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1055.634,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8643,15406,15404,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,7.57828,7.3533654,0,22,0,7.0378332,0,2,2,2021,24,11,15,15,1,11,0,11.95605,11.95605,0,0,0,0,0,0,0,0,1,1,0,0,0,32.42,32.71,33.9,60.31,3.333333333333333,1,1,0,0,12,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8643,15407,-9,15406,15404,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1017.3714,-9,1,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.520072,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,669.75,72795.852,0,0,0,4511.6704,0,2205.1218 +7091,8644,15408,-9,15406,15404,1,1,19,0,2,0,2,2,1,0,3,7.3247604,7.3999405,0,0,0,-1030.1619,-9,1,1,2021,18,7,30,0,1,7,1,5.1142182,5.1142182,0,0,0,0,0,0,0,0,1,1,0,3.9420111,0,41.23,59.35,-9,-9,10,1,1,0,0,2,6,3,1,540,35946.961,26095.777,0,0,0,0,-118.44054 +7092,8645,15409,15410,-9,-9,1,0,76,0,0,0,1,1,-9,0,4,0,7.1515856,7.3494077,6,-3,-43.601292,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3373232,6.6530623,50.93,43.84,39.24,53.39,8.333333333333334,1,1,0,0,0,12,2,1,558.5,905260.81,255413.75,740067.94,0,0,0,4166.8481 +7092,8645,15410,15409,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,6,3,-12.745055,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,21.716284,0,0,1,1,0,7.8932981,0,39.24,53.39,50.93,43.84,8.333333333333334,1,1,0,0,0,12,2,1,558.5,905260.81,255413.75,740067.94,0,0,0,4166.8481 +7093,8646,15411,15412,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,4.911212,5.1471944,57,-4,-42.975628,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,13.777065,0,0,1,1,0,0,5.0721846,60.31,43.75,60.72,47.63,10,1,1,0,0,0,4,3,1,526.5,381466.97,297663.06,238834.81,0,0,0,1995.4285 +7093,8646,15412,15411,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.371593,6.9627056,57,4,28.663837,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.720623,60.72,47.63,60.31,43.75,10,1,1,0,0,0,4,3,1,526.5,381466.97,297663.06,238834.81,0,0,0,1995.4285 +7094,8647,15413,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,1,0,0,0,0,0,-904.42883,-9,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,28.801968,30.313982,286.37744,0,1,1,0,0,0,38.46,17.31,-9,-9,6.666666666666667,1,1,0,1,4,10,2,1,3691,278701.03,0,226593.55,0,0,0,492.08218 +7095,8648,15414,15415,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,6.4047794,6.6255097,44,-6,94.496651,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9195414,6.5311151,54.2,57.49,54.97,37.11,8.333333333333334,1,1,0,0,9,2,4,1,632,1833175.5,1329322.8,276180.56,0,0,0,6674.8018 +7095,8648,15415,15414,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.2776976,8.0188065,43,6,-91.296951,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2164953,8.2221918,54.97,37.11,54.2,57.49,8.333333333333334,1,1,0,0,5,2,4,1,632,1833175.5,1329322.8,276180.56,0,0,0,6674.8018 +7096,8649,15416,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3054266,8.3626423,0,0,0,-1081.422,0,2,2,2021,20,9,38,38,1,9,0,14.17629,14.17629,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,1,6,11,4,1,870,48668.168,0,0,0,0,0,2035.3632 +7097,8650,15417,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,0,5.9062991,5.8000002,0,0,-883.81635,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0824194,5.722168,45.86,50.87,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,987,-44706.473,-36337.477,0,0,0,0,477.08337 +7098,8651,15418,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.3956952,7.2480659,0,0,-1039.6759,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4258962,56.35,48.3,-9,-9,10,1,1,0,0,0,9,3,1,568,430721.75,279462.91,192299.13,0,0,0,670.32031 +7099,8652,15419,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,9.0123215,8.8782988,0,0,0,-1069.9777,0,2,2,2021,11,0,40,39,1,0,1,22.030235,22.030235,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49,60,-9,-9,8.333333333333334,1,1,0,0,10,8,5,0,547,-149380.59,27887.752,0,0,0,0,2069.3149 +7099,8653,15420,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4075708,8.1952705,0,0,0,-1007.1031,0,-9,-9,2021,15,4,90,90,1,4,1,7.7355027,7.7355027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.47,55.65,-9,-9,3.333333333333333,1,1,0,0,3,8,5,0,265,65284.438,37767.211,0,0,0,0,2237.4189 +7100,8654,15421,15422,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.7274733,7.429059,50,6,212.28227,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1828437,7.4354172,59.46,46.99,40.46,39.95,6.666666666666667,1,1,0,0,4,2,3,1,589,558409.31,378091.63,211966,0,0,0,2901.8718 +7100,8654,15422,15421,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2783575,7.2475634,50,-6,29.88331,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1989985,6.9817939,40.46,39.95,59.46,46.99,3.333333333333333,1,1,0,0,4,2,3,1,589,558409.31,378091.63,211966,0,0,0,2901.8718 +7101,8655,15423,15424,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,4,19,0,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,35,27,10,1,1,0,0,1,10,1,0,944.5,-69636.609,0,0,0,0,2157.2502,81.413574 +7101,8655,15424,15423,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,4,-19,0,0,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,52.4,52.91,1.666666666666667,1,1,0,1,5,10,1,0,944.5,-69636.609,0,0,0,0,2157.2502,81.413574 +7102,8656,15425,-9,15426,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.3442,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,729.5,67705.398,66580.797,0,0,0,0,1811.7498 +7102,8656,15426,-9,-9,-9,1,0,21,0,1,0,3,3,-9,0,3,7.0346303,6.4375496,0,0,0,-933.65741,0,2,3,2021,9,2,18,16,1,2,0,5.8235378,5.8235378,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.56,60.67,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,729.5,67705.398,66580.797,0,0,0,0,1811.7498 +7103,8657,15427,15428,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.7414255,4.9320579,43,-4,18.829359,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0388784,66.09999999999999,37.14,53,46,8.333333333333334,1,1,0,0,0,9,3,1,471.5,1229739.3,639234.63,626280.94,0,0,0,4015.0776 +7103,8657,15428,15427,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,8.2677937,8.3571644,0,5,4,93.127617,0,-9,-9,2021,10,0,25,30,1,1,0,17.331381,17.331381,0,0,0,0,0,0,0,0,1,1,0,7.4447045,0,53,46,66.09999999999999,37.14,7,1,1,0,0,1,9,3,1,471.5,1229739.3,639234.63,626280.94,0,0,0,4015.0776 +7104,8658,15429,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.9869146,6.5033479,0,0,-1094.0774,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.576859,48,37,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,1026,219080.72,0,91950.656,0,0,0,417.18173 +7105,8659,15430,15431,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.7287588,6.4009681,49,2,61.808647,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5056129,6.7389097,50.06,55.28,44.06,49.86,8.333333333333334,1,1,0,0,7,4,3,1,648.5,281706.66,-2589.2285,199227.66,0,0,0,3482.0671 +7105,8659,15431,15430,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.2067032,7.9621367,49,-2,60.709641,0,3,3,2021,13,1,0,24,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6349692,8.3668232,44.06,49.86,50.06,55.28,8.333333333333334,1,1,0,0,9,4,3,1,648.5,281706.66,-2589.2285,199227.66,0,0,0,3482.0671 +7106,8660,15432,15433,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.2990284,9.7127914,0,29,1,-40.338795,0,2,2,2021,7,0,45,55,1,0,0,37.39286,37.39286,0,0,0,0,0,0,0,0,0,0,0,5.6185822,0,57.16,56.15,57.06,57.76,10,1,1,0,0,12,5,5,1,353.5,51399.586,45557.91,0,0,0,9277.8457,5780.7002 +7106,8660,15433,15432,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.6190252,9.0053329,0,29,-1,38.141403,0,2,2,2021,8,0,45,42,1,0,0,14.548153,14.548153,0,0,0,0,0,0,0,0,0,0,0,.74231035,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,5,5,1,353.5,51399.586,45557.91,0,0,0,9277.8457,5780.7002 +7106,8661,15434,-9,15433,15432,1,0,25,0,0,0,1,1,-9,0,3,8.387145,8.8923006,0,0,0,-992.62219,0,2,2,2021,13,2,40,40,1,2,1,17.860554,17.860554,.05,.05,0,0,0,0,0,0,0,0,0,3.803077,0,43.96,55.64,-9,-9,10,1,1,0,0,8,5,5,1,815,319240.09,100096.13,246107.78,185058.66,0,0,1497.8617 +7106,8662,15435,-9,15433,15432,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-854.80865,-9,2,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1855509,0,57.06,57.76,-9,-9,10,1,1,0,0,2,5,1,1,291,0,0,0,0,0,0,32.86269 +7107,8663,15436,15437,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.0765562,9.3342113,7.3666492,10,-3,1.7416785,0,3,3,2021,17,5,39,39,1,5,0,24.04311,24.04311,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5268583,39.14,38.93,68.3,21.52,3.333333333333333,1,1,0,0,12,2,5,1,600.5,1472467,945843.81,411904.03,31424.797,0,0,2749.6472 +7107,8663,15437,15436,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,2.1353309,2.27894,10,3,117.41192,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.4636195,1.8712139,68.3,21.52,39.14,38.93,8.333333333333334,1,1,0,0,4,2,5,1,600.5,1472467,945843.81,411904.03,31424.797,0,0,2749.6472 +7108,8664,15438,15439,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,6.7836552,7.0695963,0,20,-14,6.9153523,0,3,3,2021,7,0,10,10,1,0,0,8.9589853,8.9589853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.9,57.87,49,50,8.333333333333334,2,3,0,0,12,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15439,15438,-9,-9,1,1,51,0,3,0,3,3,-9,0,3,7.5376263,8.6861076,8.2189636,20,14,-63.027039,0,3,3,2021,11,0,35,35,1,2,0,6.2472115,6.2472115,.05,.05,0,0,0,0,0,0,1,1,0,0,8.2355661,49,50,32.9,57.87,7,2,3,0,0,1,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15440,-9,15438,15439,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.51978,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15441,-9,15438,15439,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.3905,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7108,8664,15442,-9,15438,15439,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1052.7933,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,0,0,0,4,3,1,839.59998,411912.94,99866.102,172610.81,0,0,0,4149.4048 +7109,8665,15443,15444,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,2.8926296,3.0793459,9,4,-35.272919,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,107.72849,0,0,1,1,0,0,2.9023325,50,47,60.02,56.42,7,1,1,0,0,0,4,2,1,1397,732684.63,387986.5,163661.19,0,0,0,1983.7798 +7109,8665,15444,15443,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.6440639,7.0457821,45,-4,-16.989872,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6182942,7.0006061,60.02,56.42,50,47,6.666666666666667,1,1,0,0,9,4,2,1,1397,732684.63,387986.5,163661.19,0,0,0,1983.7798 +7110,8666,15445,15446,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.3476667,8.5432177,0,6,5,-128.19315,0,2,2,2021,15,3,36,36,1,3,0,13.439815,13.439815,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.9,54.57,35.32,64.83,8.333333333333334,1,1,0,0,11,10,5,0,1380,1257325,944711.69,330914.31,0,0,2468.3386,2935.4065 +7110,8666,15446,15445,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.9738746,8.1411457,0,6,-5,73.804146,0,2,3,2021,24,12,53,50,1,12,0,6.7545385,6.7545385,.05,.05,0,0,0,0,0,7,0,0,0,0,0,35.32,64.83,42.9,54.57,3.333333333333333,1,1,0,0,5,10,5,0,1380,1257325,944711.69,330914.31,0,0,2468.3386,2935.4065 +7111,8667,15447,-9,-9,-9,1,0,101,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1050.6681,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,16.754013,0,0,1,1,0,.40738273,0,63.41,34.5,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,71,97093.438,0,0,0,0,0,794.1123 +7112,8668,15448,15449,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,8.5478992,8.6102381,32,6,24.614767,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.5802169,12.533426,22.199224,0,1,1,0,7.5886617,8.4509363,60.21,34.28,36.43,30.97,8.333333333333334,1,1,0,0,8,9,4,1,802.5,868856.75,423109,482421.13,0,0,0,6902.4912 +7112,8668,15449,15448,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,5.328095,5.9059005,31,-6,28.977488,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4801168,5.4513664,36.43,30.97,60.21,34.28,8.333333333333334,1,1,0,0,0,9,4,1,802.5,868856.75,423109,482421.13,0,0,0,6902.4912 +7113,8669,15450,15451,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.5566463,8.4128761,0,12,-5,-12.180228,0,2,3,2021,18,5,34,37,1,5,0,19.388557,19.388557,0,0,0,0,0,0,0,2,1,1,0,0,0,46.38,35.15,57.33,53.46,6.666666666666667,1,1,0,0,14,4,4,1,530,340908.75,188811,441374.81,188028.69,0,0,3813.9949 +7113,8669,15451,15450,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.6032515,8.6589413,0,12,5,-40.754539,0,2,2,2021,6,0,42,52,1,0,0,15.009352,15.009352,.05,.05,0,0,0,0,0,0,1,1,0,.85981929,0,57.33,53.46,46.38,35.15,8.333333333333334,1,1,0,0,14,4,4,1,530,340908.75,188811,441374.81,188028.69,0,0,3813.9949 +7113,8670,15452,-9,15450,15451,1,0,18,0,1,0,2,2,1,0,4,6.0863185,5.9462037,0,0,0,-1081.6229,-9,1,1,2021,12,2,12,0,1,2,1,4.5522242,4.5522242,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,58.26,-9,-9,8.333333333333334,4,2,0,0,2,4,2,1,2107,211102.25,0,0,0,0,0,-484.37589 +7114,8671,15453,15454,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,0,0,36,16,1.235749,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1642747,0,51.83,57.2,45.64,45.13,8.333333333333334,1,1,0,0,9,9,2,1,471,1528351.1,21137.867,568345.5,0,0,0,1283.6129 +7114,8671,15454,15453,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,7.4192386,7.5709729,0,36,-16,83.935478,0,2,1,2021,13,1,38,30,1,1,0,4.7645121,4.7645121,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,45.13,51.83,57.2,3.333333333333333,1,1,0,0,3,9,2,1,471,1528351.1,21137.867,568345.5,0,0,0,1283.6129 +7115,8672,15455,15456,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,6.65204,6.8251133,0,19,-3,109.81103,0,-9,-9,2021,12,0,8,8,1,0,0,11.460215,11.460215,0,0,0,0,0,0,0,2,1,1,0,3.0010734,0,53.63,40.71,32.08,47.89,6.666666666666667,1,1,0,0,4,9,4,1,920.66669,356605.59,195637.16,308944.75,88704.672,0,0,2974.5295 +7115,8672,15456,15455,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.4505606,8.3952093,0,19,3,4.2580242,0,2,-9,2021,18,6,37,37,1,6,0,17.151255,17.151255,.05,.05,0,0,0,0,0,0,1,1,0,4.0043569,0,32.08,47.89,53.63,40.71,3.333333333333333,1,1,0,0,9,9,4,1,920.66669,356605.59,195637.16,308944.75,88704.672,0,0,2974.5295 +7115,8672,15457,-9,15455,15456,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.9186,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,920.66669,356605.59,195637.16,308944.75,88704.672,0,0,2974.5295 +7116,8673,15458,15459,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.9234228,9.0229654,0,12,-5,-133.96611,0,-9,-9,2021,12,0,100,52,1,0,0,8.0893898,8.0893898,0,0,0,0,0,0,0,0,0,0,0,1.1791414,0,44.19,58.01,57.33,53.46,6.666666666666667,1,1,0,0,14,9,5,1,466.5,126135.86,80270.906,0,0,11921.254,0,6179.0889 +7116,8673,15459,15458,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,9.1586466,9.090395,0,12,5,-38.265289,0,2,2,2021,11,0,70,80,1,0,0,12.819424,12.819424,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,44.19,58.01,8.333333333333334,1,1,0,0,13,9,5,1,466.5,126135.86,80270.906,0,0,11921.254,0,6179.0889 +7117,8674,15460,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-926.56244,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,-9,-9,3.333333333333333,3,4,1,0,6,6,1,0,1212,195743.45,0,124475.8,0,0,0,-157.97115 +7118,8675,15461,15462,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,0,0,61,0,-128.49872,0,3,3,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,122.51151,0,0,1,1,0,0,0,38.88,43.03,49.16,32.35,8.333333333333334,1,1,0,0,0,6,3,1,1796,1591363.5,551000.06,622114.88,0,0,0,4075.3076 +7118,8675,15462,15461,-9,-9,1,1,85,0,0,0,1,1,-9,0,4,0,7.9748325,8.3532257,61,0,119.63648,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,60.979374,0,120,1,1,0,8.2624207,8.4824371,49.16,32.35,38.88,43.03,8.333333333333334,1,1,0,0,0,6,3,1,1796,1591363.5,551000.06,622114.88,0,0,0,4075.3076 +7119,8676,15463,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.0160255,8.195158,0,0,0,-842.04431,0,3,3,2021,7,1,38,44,1,1,0,7.1673188,7.1673188,.05,.05,.05,0,0,0,0,2,1,1,0,2.2599151,0,49.52,56.95,-9,-9,6.666666666666667,1,1,0,0,13,9,4,0,1579,265706.5,87982.531,245822.27,0,0,0,1086.3157 +7120,8677,15464,-9,15465,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.3436,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,524.5,339245.78,115368.72,354722.69,48715.031,7577.1152,2526.5615,2787.887 +7120,8677,15465,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.2921629,8.4379282,0,0,0,-900.54053,0,2,2,2021,11,0,30,30,1,0,0,14.830155,14.830155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,12,9,3,0,524.5,339245.78,115368.72,354722.69,48715.031,7577.1152,2526.5615,2787.887 +7121,8678,15466,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1062.8812,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6692538,0,54.77,31.94,-9,-9,5,1,1,0,0,3,7,1,1,623,48834.328,0,0,0,0,0,949.68011 +7122,8679,15467,15470,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,9.3439074,9.2561321,0,7,-1,-2.4486125,0,-9,-9,2021,8,0,46,50,1,0,0,29.548954,29.548954,.05,.05,0,0,0,0,0,0,1,1,0,6.6139135,0,41.91,55.01,12.12,67.62,0,1,1,0,0,9,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7122,8679,15468,-9,15470,15467,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.608,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7122,8679,15469,-9,15470,15467,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.1385,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7122,8679,15470,15467,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.8258934,6.519268,0,7,1,-10.584192,0,2,2,2021,22,9,12,12,1,9,0,7.8277502,7.8277502,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.12,67.62,41.91,55.01,8.333333333333334,1,1,0,0,5,10,5,0,1007.5,183660.44,70938.172,174340.45,157204.39,5626.9941,0,4844.0972 +7123,8680,15471,15472,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6331482,9.0952454,0,36,0,53.723686,0,2,2,2021,6,0,70,70,1,0,0,10.035796,10.035796,0,0,0,0,0,0,0,56,1,1,0,0,0,59.15,49.67,50.31,27.29,8.333333333333334,1,1,0,0,6,7,5,1,1380.5,2196064.8,1367083,635946.38,0,0,0,5112.4385 +7123,8680,15472,15471,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.810617,7.9939065,7,9,32.263279,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7475047,50.31,27.29,59.15,49.67,3.333333333333333,1,1,0,0,0,7,5,1,1380.5,2196064.8,1367083,635946.38,0,0,0,5112.4385 +7123,8681,15473,-9,15471,15472,1,0,22,0,0,0,1,1,0,0,4,0,8.2613783,7.2746401,0,0,-963.23547,-9,2,2,2021,8,0,0,0,2,0,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.7570648,0,45.34,57.55,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,881,-117435.52,-153234.42,0,0,27109.396,0,1495.3708 +7124,8682,15474,-9,15475,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-984.17651,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7124,8682,15475,-9,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,0,0,0,0,0,-865.17261,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7124,8682,15476,-9,15475,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.75415,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7124,8682,15477,-9,15475,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.2626,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,769.25,13789.701,0,111213.31,137988.72,0,0,1254.178 +7125,8683,15478,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.1671381,9.3298054,0,0,0,-932.95068,0,2,2,2021,11,0,60,60,1,0,0,17.597227,17.597227,.05,.05,0,0,0,0,0,0,0,0,0,5.5220022,0,35.63,62.19,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,2752,616987.63,413659.22,241170.45,104416.3,7059.894,0,3544.624 +7125,8684,15479,-9,15478,-9,1,0,21,0,0,0,1,1,1,0,4,7.0192928,7.2179475,0,0,0,-920.03955,-9,1,2,2021,10,0,41,0,1,0,1,3.7644842,3.7644842,0,0,0,0,0,0,0,0,0,0,0,1.2656914,0,34.06,54.62,-9,-9,10,1,1,0,0,4,9,2,1,901,-43784.922,0,0,0,0,0,748.68506 +7126,8685,15480,15481,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,6.5121222,6.0661182,6,-3,-55.943947,0,-9,-9,2021,14,3,0,45,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0533242,52.3,47.48,43.68,56.8,6.666666666666667,1,1,0,0,0,8,4,1,666.5,1225614.4,615766,425566.81,0,2733.8281,0,2235.6062 +7126,8685,15481,15480,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,8.3291121,8.2366848,39,3,-15.842589,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.356308,7.9381156,43.68,56.8,52.3,47.48,8.333333333333334,1,1,0,0,0,8,4,1,666.5,1225614.4,615766,425566.81,0,2733.8281,0,2235.6062 +7127,8686,15482,15483,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,0,0,0,1,1,0,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.2647967,0,54.66,47.77,57.06,57.76,6.666666666666667,1,1,0,0,0,10,1,1,962.5,-9659.8086,71973.867,0,0,0,729.60083,1111.4502 +7127,8686,15483,15482,-9,-9,1,1,25,0,0,0,2,2,-9,0,5,0,0,0,1,-1,0,1,-9,-9,2021,6,0,0,45,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.9100475,0,57.06,57.76,54.66,47.77,6.666666666666667,1,1,0,0,8,10,1,1,962.5,-9659.8086,71973.867,0,0,0,729.60083,1111.4502 +7128,8687,15484,15485,-9,-9,1,0,37,0,0,0,1,1,-9,1,1,0,0,0,8,-6,50.958595,0,-9,-9,2021,23,9,0,44,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3693547,0,43.63,31.86,35.63,62.19,5,1,1,0,0,9,2,5,1,954,595759.38,329426.09,189382.67,130161.83,0,0,4043.8262 +7128,8687,15485,15484,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.9291639,8.9224176,0,8,6,40.672916,0,2,2,2021,15,6,40,48,1,6,0,23.47571,23.47571,.05,.05,0,0,0,0,0,14.5,0,0,0,2.9325485,0,35.63,62.19,43.63,31.86,6.666666666666667,2,3,0,0,14,2,5,1,954,595759.38,329426.09,189382.67,130161.83,0,0,4043.8262 +7129,8688,15486,15487,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,9.3682022,9.5473671,0,5,0,23.49897,-9,-9,-9,2021,6,0,45,0,1,0,0,26.635576,26.635576,0,0,0,0,0,0,0,0,1,1,0,5.5134792,0,54.69,57.47,43.84,47.84,10,1,1,0,0,5,8,5,1,533,415170.22,187938.19,366986.56,316261.63,0,0,5606.3306 +7129,8688,15487,15486,-9,-9,1,1,27,0,0,0,1,1,1,0,2,7.8934245,8.062191,0,5,0,75.919952,-9,-9,-9,2021,18,6,95,0,1,6,0,3.7061942,3.7061942,0,0,0,0,0,0,0,0,1,1,0,2.3198667,0,43.84,47.84,54.69,57.47,3.333333333333333,1,1,0,0,7,8,5,1,533,415170.22,187938.19,366986.56,316261.63,0,0,5606.3306 +7130,8689,15488,-9,15489,15490,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1065.7692,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7130,8689,15489,15490,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.4586525,8.4571438,0,27,0,-135.54309,0,2,1,2021,13,3,28,28,1,3,0,21.817219,21.817219,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,55.93,51,56,6.666666666666667,1,1,0,0,15,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7130,8689,15490,15489,-9,-9,1,1,50,0,2,0,1,1,-9,0,4,6.6665177,6.6918526,0,27,0,-88.366524,0,1,3,2021,10,0,50,45,1,1,0,1.4939724,1.4939724,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,36.33,55.93,8,1,1,0,0,15,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7130,8689,15491,-9,15489,15490,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1005.3727,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,12,3,1,412,621597.88,152547.02,200402.05,0,0,0,2151.5005 +7131,8690,15492,15493,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,9,7,-40.446987,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0746374,0,45.97,41.17,32.62,36.55,6.666666666666667,1,1,0,0,0,9,3,1,767.5,1226177.9,666300.75,450248.63,0,0,0,2771.634 +7131,8690,15493,15492,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,8.3396769,8.3425035,41,-7,121.14529,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,5.3538017,0,7,1,1,0,2.5345814,8.3186388,32.62,36.55,45.97,41.17,6.666666666666667,1,1,0,0,0,9,3,1,767.5,1226177.9,666300.75,450248.63,0,0,0,2771.634 +7132,8691,15494,15495,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,6.1426082,5.8728485,66,6,-14.808471,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5957916,5.7514505,55,45,52,45,8,1,1,0,0,6,2,2,0,589.5,410149.38,142702.09,211357,0,0,0,3103.1423 +7132,8691,15495,15494,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,9,-6,-50.119793,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,55,45,8,1,1,0,0,0,2,2,0,589.5,410149.38,142702.09,211357,0,0,0,3103.1423 +7133,8692,15496,15497,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,0,0,0,36,-3,-174.3343,-9,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,0,50.02,36.37,46.61,56.93,5,1,1,1,0,1,11,5,1,762,2996743.5,1982315.6,695321,0,0,0,3655.7114 +7133,8692,15497,15496,-9,-9,1,1,62,0,1,0,1,1,-9,0,3,9.1846409,9.4808817,0,1,3,-111.2283,-9,-9,-9,2021,6,0,40,0,1,0,0,24.916142,24.916142,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,50.02,36.37,8.333333333333334,1,1,0,0,9,11,5,1,762,2996743.5,1982315.6,695321,0,0,0,3655.7114 +7134,8693,15498,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1070.5558,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.48,43.81,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,269,185916.98,0,280463.5,0,0,0,745.09705 +7135,8694,15499,15500,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.1345291,6.8507566,0,16,-3,-59.209072,0,2,3,2021,18,6,15,25,1,6,0,10.341682,10.341682,0,0,0,0,0,0,0,0,0,0,0,0,0,38.76,58.16,50.22,52.72,3.333333333333333,1,1,0,1,8,7,3,1,708,1457771.5,439466.72,173209.97,0,0,0,1933.8019 +7135,8694,15500,15499,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,7.5500793,8.0417624,6.672359,9,3,86.890007,0,-9,-9,2021,16,4,12,12,1,4,0,15.477558,15.477558,.05,.05,0,0,0,0,0,0,0,0,0,.043944836,7.0075235,50.22,52.72,38.76,58.16,6.666666666666667,1,1,0,1,10,7,3,1,708,1457771.5,439466.72,173209.97,0,0,0,1933.8019 +7136,8695,15501,15503,-9,-9,1,0,47,0,3,0,1,1,-9,0,5,0,0,0,16,5,-46.198082,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,57.06,57.76,45.69,50.77,10,1,1,0,0,3,13,5,1,368.66666,-31882.49,87529.828,0,0,27984.271,5703.687,5087.8833 +7136,8695,15502,-9,15501,15503,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.51038,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,5,1,368.66666,-31882.49,87529.828,0,0,27984.271,5703.687,5087.8833 +7136,8695,15503,15501,-9,-9,1,1,42,0,3,0,1,1,-9,1,3,9.5634756,9.5218687,0,16,-5,28.001966,0,3,3,2021,8,2,40,40,1,2,0,33.434761,33.434761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.69,50.77,57.06,57.76,8.333333333333334,1,1,0,0,10,13,5,1,368.66666,-31882.49,87529.828,0,0,27984.271,5703.687,5087.8833 +7137,8696,15504,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.3128834,8.3533154,0,0,0,-994.80194,0,2,2,2021,6,0,41,40,1,0,0,11.00584,11.00584,.05,.05,0,0,0,0,0,0,0,0,0,6.6847038,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,14,7,5,1,1580,-160721.97,52630.176,0,0,0,0,1780.2866 +7138,8697,15505,15506,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.4413195,8.8174152,0,9,0,-67.24968,0,-9,-9,2021,11,0,41,8,1,0,0,15.219912,15.219912,.05,.05,0,0,0,0,0,0,0,0,0,5.7596693,0,27.53,58.27,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,1,889.5,1149364.6,938582.81,252451.38,58133,5781.6465,0,3382.3718 +7138,8697,15506,15505,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5901785,7.6700993,0,26,0,148.48495,0,2,-9,2021,6,0,21,18,1,0,0,13.053388,13.053388,.05,.05,0,0,0,0,0,0,0,0,0,.79072976,0,54.2,57.49,27.53,58.27,6.666666666666667,1,1,0,0,12,4,5,1,889.5,1149364.6,938582.81,252451.38,58133,5781.6465,0,3382.3718 +7139,8698,15507,15508,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.7178221,5.8335795,50,3,21.930094,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5375907,5.5789661,62.12,32.01,39.74,39.79,8.333333333333334,1,1,0,0,0,12,2,1,269,1749436.9,122054.41,348823.69,0,0,0,2183.9304 +7139,8698,15508,15507,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.410152,7.384141,50,-3,16.306005,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.300736,7.1721954,39.74,39.79,62.12,32.01,6.666666666666667,1,1,0,0,0,12,2,1,269,1749436.9,122054.41,348823.69,0,0,0,2183.9304 +7140,8699,15509,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.3798819,9.0257597,0,0,0,-975.21545,0,2,-9,2021,7,0,40,38,1,0,0,33.18729,33.18729,0,0,0,0,0,0,0,0,0,0,0,5.7610116,0,68.2,37.54,-9,-9,8.333333333333334,1,1,0,0,6,9,5,0,1007,481377.72,94827.625,280585.66,0,130.83217,0,5066.7358 +7141,8700,15510,15511,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,4.98353,5.2053394,32,17,-39.650562,0,3,3,2021,6,0,0,37,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,5.5028882,63.91,15.57,48.18,61.8,8.333333333333334,1,1,0,0,8,11,5,0,205,2478280,2012238.4,217829.59,0,380.0238,0,3802.0027 +7141,8700,15511,15510,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.9973049,8.8136826,0,32,-17,-72.864334,0,3,3,2021,5,0,30,49,1,0,0,27.441935,27.441935,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,63.91,15.57,10,1,1,0,0,10,11,5,0,205,2478280,2012238.4,217829.59,0,380.0238,0,3802.0027 +7142,8701,15512,15513,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.6373177,8.3922749,35,13,-38.645302,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1669488,8.3702946,52.82,51.63,49.04,50.63,8.333333333333334,1,1,0,0,0,6,5,1,3178.5,1993083.5,964323.75,256014.84,0,0,0,3818.2405 +7142,8701,15513,15512,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.9623961,7.9427881,35,-13,5.3570657,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.95999807,8.0491028,49.04,50.63,52.82,51.63,8.333333333333334,1,1,0,0,0,6,5,1,3178.5,1993083.5,964323.75,256014.84,0,0,0,3818.2405 +7143,8702,15514,-9,15516,15517,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.5494,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7143,8702,15515,-9,15516,15517,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.96185,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7143,8702,15516,15517,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,7.7041407,7.4999475,0,4,-3,-87.555252,0,1,1,2021,12,1,31,0,1,1,0,7.9734974,7.9734974,0,0,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,57.06,57.76,8.333333333333334,1,1,0,0,3,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7143,8702,15517,15516,-9,-9,1,1,50,0,2,0,1,1,-9,0,5,6.5289712,6.6555476,0,4,3,-110.51972,0,2,2,2021,9,0,38,55,1,0,0,2.4344096,2.4344096,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.67,55.57,6.666666666666667,1,1,0,0,7,10,3,1,475.25,828564.13,750177.88,162602.59,98155.125,5265.8872,0,1696.1971 +7144,8703,15518,15519,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,8.546052,8.6574154,62,-4,134.94493,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.7056341,0,65.88,17.14,56.19,5.98,10,1,1,0,0,0,9,4,1,934.5,1168401,408287.56,485309.56,0,0,0,3740.9629 +7144,8703,15519,15518,-9,-9,1,1,93,0,0,0,2,2,-9,0,1,0,7.04668,6.7485976,62,4,5.194829,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.00771,0,0,1,1,0,3.137459,6.7286515,56.19,5.98,65.88,17.14,8.333333333333334,1,1,0,0,0,9,4,1,934.5,1168401,408287.56,485309.56,0,0,0,3740.9629 +7144,8704,15520,-9,15518,15519,1,1,58,0,0,0,1,1,-9,0,3,0,7.5304308,7.5484605,0,0,-1064.2878,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,8.0448332,7.7674308,44.58,51.2,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,421,622792.38,240152.42,279406.69,106080.49,0,0,4093.4417 +7145,8705,15521,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1030.4426,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0687947,0,57,49,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,398,84601.094,0,0,0,0,0,1021.738 +7146,8706,15522,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,7.3701754,8.5090122,8.159955,0,0,-936.55164,0,3,3,2021,8,0,30,29,1,0,0,5.4286489,5.4286489,0,0,0,0,0,0,0,0,1,1,0,0,8.1134996,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,4,4,1,191,595676.88,324795.78,171652.63,0,0,0,2917.9663 +7147,8707,15523,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.5444255,7.4366446,0,0,0,-989.88593,0,3,2,2021,3,0,35,34,1,0,0,5.1147213,5.1147213,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,469.5,604791.75,0,552640.25,125666.02,0,0,1581.0222 +7147,8707,15524,-9,15523,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.66632,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,469.5,604791.75,0,552640.25,125666.02,0,0,1581.0222 +7147,8708,15525,-9,15523,-9,1,1,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1008.9147,1,1,-9,2021,12,0,0,12,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4248316,0,37.61,56.99,-9,-9,6.666666666666667,1,1,0,0,5,10,1,1,418,-56349.98,0,0,0,0,0,539.88989 +7147,8709,15526,-9,15523,-9,1,1,19,0,1,0,2,2,-9,0,3,7.3322558,7.6059203,0,0,0,-1032.1188,0,1,-9,2021,5,0,40,40,1,0,1,4.819407,4.819407,0,0,0,0,0,0,0,0,1,1,0,.049720969,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,3,10,3,1,878,171576.83,0,0,0,0,0,39.696133 +7148,8710,15527,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,8.0195818,8.1103554,0,0,-960.29657,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.2081523,0,0,1,1,0,0,7.847116,53,44,-9,-9,8,1,1,0,0,0,12,4,1,884,1447499.4,106087.93,326378.34,0,0,0,2643.6389 +7149,8711,15528,15529,-9,-9,1,0,28,0,1,0,1,1,-9,0,3,8.2910566,8.2425499,0,7,-1,-9.5010967,0,2,2,2021,9,0,60,56,1,0,0,9.9093399,9.9093399,0,0,0,0,0,0,0,2,1,1,0,0,0,54.37,54.8,46.33,55.93,8.333333333333334,1,1,0,0,8,9,5,0,1222,151581.5,78439.641,311113.22,257840.58,10847.994,0,3515.7395 +7149,8711,15529,15528,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,8.2163153,8.4453068,0,7,1,-26.972557,0,-9,-9,2021,10,1,82,45,1,1,0,7.2592893,7.2592893,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,54.37,54.8,6.666666666666667,1,1,0,0,8,9,5,0,1222,151581.5,78439.641,311113.22,257840.58,10847.994,0,3515.7395 +7149,8711,15530,-9,15528,15529,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.5239,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1222,151581.5,78439.641,311113.22,257840.58,10847.994,0,3515.7395 +7150,8712,15531,15532,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,0,0,0,12,-2,-36.125519,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.53,37.66,35.13,58.44,5,2,3,0,0,0,2,4,1,816,-124753.88,4310.9355,0,0,0,0,3571.7832 +7150,8712,15532,15531,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5226755,8.8600245,0,28,2,-105.48416,0,3,3,2021,32,12,30,30,1,12,0,28.70941,28.70941,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.13,58.44,39.53,37.66,5,2,3,0,1,13,2,4,1,816,-124753.88,4310.9355,0,0,0,0,3571.7832 +7150,8713,15533,-9,15531,15532,1,1,24,0,0,0,1,1,-9,0,3,8.1475916,8.2100773,0,0,0,-849.32117,0,2,2,2021,8,0,35,35,1,0,1,12.377533,12.377533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.37,43.51,-9,-9,5,2,3,0,0,4,2,4,1,554,118588.24,-128102.17,0,0,0,0,1142.78 +7150,8714,15534,-9,15531,15532,1,0,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-890.32019,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.81,41.04,-9,-9,10,2,3,0,0,2,2,1,1,653,-1154.6769,0,0,0,0,0,0 +7150,8715,15535,-9,15531,15532,1,0,20,0,0,0,2,2,1,0,3,0,0,0,0,0,-1128.0496,-9,2,2,2021,12,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.83,54.5,-9,-9,6.666666666666667,2,3,1,0,0,2,1,1,396,0,0,0,0,0,0,0 +7151,8716,15536,15537,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.7870851,8.0501156,0,2,-2,-108.89062,0,3,3,2021,12,0,37,37,1,0,0,8.389101,8.389101,0,0,0,0,0,0,0,0,0,0,0,2.1905849,0,41.47,56.81,38.47,57.72,8.333333333333334,1,1,0,0,9,2,4,1,1138,80334.844,-78608.617,125929.86,136804.95,0,0,2439.0652 +7151,8716,15537,15536,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4050226,8.2428331,0,2,2,-9.3058138,0,-9,-9,2021,12,0,47,40,1,0,0,10.438675,10.438675,.05,.05,0,0,0,0,0,0,0,0,0,2.8353639,0,38.47,57.72,41.47,56.81,1.666666666666667,1,1,0,0,9,2,4,1,1138,80334.844,-78608.617,125929.86,136804.95,0,0,2439.0652 +7152,8717,15538,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-918.87024,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,8,1,1,0,0,9,13,1,1,89,17702.705,0,127273.87,0,0,0,736.20343 +7153,8718,15539,15540,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,18,-5,9.4868679,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,22.228422,0,0,1,1,0,7.6186066,0,66.62,21.03,55.57,48.59,10,1,1,0,0,0,7,2,1,1220,341351.94,127983.51,213520.34,0,0,0,1852.4792 +7153,8718,15540,15539,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.4634333,6.7892509,19,5,-221.22949,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4855385,55.57,48.59,66.62,21.03,8.333333333333334,1,1,0,0,0,7,2,1,1220,341351.94,127983.51,213520.34,0,0,0,1852.4792 +7154,8719,15541,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,5,7.6922894,8.0673227,5.348094,0,0,-1112.4896,0,3,3,2021,6,0,40,40,1,0,0,7.2194376,7.2194376,0,0,0,0,0,0,0,0,1,1,0,3.7401941,5.5549393,50.54,62.09,-9,-9,10,1,1,0,0,10,4,4,0,221,46512.582,0,125508.41,0,0,0,1873.422 +7155,8720,15542,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1081.3011,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.56,62.74,-9,-9,10,1,1,0,0,6,8,1,0,3468,0,0,0,0,0,0,1185.0822 +7156,8721,15543,-9,15545,15546,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.3151,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7156,8721,15544,-9,15545,15546,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.81958,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7156,8721,15545,15546,-9,-9,1,0,45,0,2,0,3,3,-9,0,3,8.0160666,8.2064505,0,19,-14,-39.666679,0,2,3,2021,14,4,53,32,1,4,0,6.664124,6.664124,0,0,0,0,0,0,0,0,1,1,0,0,0,37.23,51.73,44.83,41.9,8.333333333333334,1,1,0,0,9,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7156,8721,15546,15545,-9,-9,1,1,59,0,2,0,2,2,-9,0,2,8.212286,8.2310963,0,19,14,-13.196383,0,3,3,2021,24,12,48,48,1,12,0,7.6533566,7.6533566,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.83,41.9,37.23,51.73,3.333333333333333,1,1,0,0,9,5,4,0,1072.25,350968.5,40058.246,255043.81,0,0,0,2624.1982 +7157,8722,15547,15548,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.6578932,8.5092487,0,35,-3,-28.364506,0,2,3,2021,7,0,40,40,1,0,0,16.245417,16.245417,0,0,.05,0,0,0,0,2,0,0,0,0,0,56.77,52.22,60.54,42.81,8.333333333333334,1,1,0,0,12,9,5,1,526,678594.69,430974.63,240695.16,40104.266,5054.7305,3163.7153,4053.5825 +7157,8722,15548,15547,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.0504446,8.2591858,0,10,3,97.077744,0,-9,-9,2021,6,0,46,47,1,0,0,10.515415,10.515415,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.54,42.81,56.77,52.22,6.666666666666667,1,1,0,0,9,9,5,1,526,678594.69,430974.63,240695.16,40104.266,5054.7305,3163.7153,4053.5825 +7158,8723,15549,-9,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.5912685,8.6017857,5.0893006,0,0,-929.72418,-9,2,2,2021,0,0,70,0,1,0,0,7.7351155,7.7351155,.05,.05,0,0,0,0,0,0,1,1,0,7.6173882,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,355,285933.22,-30014.266,350630.47,140424.22,0,0,3218.1267 +7159,8724,15550,15551,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,12,-3,0,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,30.464212,0,120,1,1,0,0,0,16.94,42.53,49.26,27.68,3.333333333333333,1,1,0,0,0,6,1,1,260,23840.043,-6433.9346,0,0,0,0,2359.1333 +7159,8724,15551,15550,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,0,0,12,3,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.26,27.68,16.94,42.53,5,1,1,0,0,0,6,1,1,260,23840.043,-6433.9346,0,0,0,0,2359.1333 +7160,8725,15552,15553,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.7232742,8.3219767,0,4,3,-134.20264,-9,-9,-9,2021,10,0,40,0,1,1,0,16.95437,16.95437,0,0,0,0,0,0,0,0,1,1,0,5.4974084,0,51,57,57.33,53.46,7,4,1,0,0,1,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7160,8725,15553,15552,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,8.0103922,8.3473444,5.8785992,4,-3,84.923149,0,2,2,2021,8,0,36,30,1,0,0,9.1375265,9.1375265,0,0,0,0,0,0,0,0,1,1,0,6.156404,0,57.33,53.46,51,57,8.333333333333334,1,1,0,0,3,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7160,8725,15554,-9,15553,15552,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7663,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7160,8725,15555,-9,15553,15552,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.1429,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,700,-51010.906,0,116696.59,52115.852,15919.755,0,3871.3235 +7161,8726,15556,15557,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,7.9441519,8.4333496,6.3884501,33,1,83.416893,0,3,3,2021,11,0,38,42,1,0,0,14.061171,14.061171,.05,.05,0,0,0,0,0,0,1,1,0,7.6564164,6.6790519,56.34,40.63,22.87,23.73,3.333333333333333,1,1,0,0,14,4,4,1,347,607244.75,209603.72,372055.31,24265.016,0,0,3506 +7161,8726,15557,15556,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,33,-1,-60.819817,0,2,2,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,22.87,23.73,56.34,40.63,1.666666666666667,1,1,0,0,0,4,4,1,347,607244.75,209603.72,372055.31,24265.016,0,0,3506 +7161,8727,15558,-9,15557,15556,1,0,19,0,0,1,2,0,0,0,2,0,8.1737881,8.0581045,0,0,-1101.103,-9,2,2,2021,20,8,0,0,2,8,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,9.0863476,0,28.38,42.84,-9,-9,6.666666666666667,1,1,0,0,2,4,5,1,2178,-119224.97,32084.33,203478.27,69071.18,0,494.1936,3004.6392 +7162,8728,15559,15560,-9,-9,1,0,35,1,2,0,2,2,-9,0,3,7.2535548,7.2080774,0,10,-13,26.058388,0,2,-9,2021,12,0,20,19,1,0,0,8.2944908,8.2944908,0,0,0,0,0,0,0,0,1,1,0,0,0,37.9,50.3,60.45,43.75,5,1,1,0,1,11,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7162,8728,15560,15559,-9,-9,1,1,48,1,2,0,2,2,-9,0,3,6.2306232,6.130815,0,10,13,-8.1081066,0,-9,-9,2021,10,2,50,50,1,2,0,1.6728441,1.6728441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.45,43.75,37.9,50.3,8.333333333333334,1,1,0,0,11,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7162,8728,15561,-9,15559,15560,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.5515,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7162,8728,15562,-9,15559,15560,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.6511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,530.25,127624.91,89126.156,128697.61,94043.859,8867.8213,0,1860.6064 +7163,8729,15563,15564,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.0478954,7.7993217,0,9,3,-.97571558,0,-9,-9,2021,8,0,44,44,1,0,0,8.5644808,8.5644808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,14.63,55.48,8.333333333333334,1,1,0,0,11,12,3,1,700.33331,186892.88,132592.97,0,0,0,0,1634.1769 +7163,8729,15564,15563,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,0,0,9,-3,-6.6996884,0,-9,-9,2021,22,10,0,16,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.63,55.48,54.37,54.8,5,1,1,1,0,4,12,3,1,700.33331,186892.88,132592.97,0,0,0,0,1634.1769 +7163,8729,15565,-9,15564,15563,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.9425,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,3,1,700.33331,186892.88,132592.97,0,0,0,0,1634.1769 +7163,8730,15566,-9,15564,15563,1,0,19,0,1,0,2,2,-9,0,4,7.5830407,7.4367437,0,0,0,-988.51245,-9,2,2,2021,11,0,40,0,1,0,1,6.1249518,6.1249518,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,1447,-49631.949,-22848.947,0,0,-534.19379,0,1472.2866 +7164,8731,15567,15568,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.1316442,5.7944732,49,2,90.925613,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.965271,44.7,53.68,57.18,42.93,10,1,1,0,0,0,2,5,1,1675,1181394.4,809526.06,238986.38,0,5080.0264,0,4850.6699 +7164,8731,15568,15567,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,8.9260645,9.0850639,0,17,-2,67.33831,0,3,2,2021,5,0,47,54,1,0,0,18.574924,18.574924,0,0,0,0,0,0,0,0,1,1,0,0,0,57.18,42.93,44.7,53.68,8.333333333333334,1,1,0,0,11,2,5,1,1675,1181394.4,809526.06,238986.38,0,5080.0264,0,4850.6699 +7165,8732,15569,15571,-9,-9,1,1,50,1,2,0,2,2,-9,0,4,8.1630573,7.891912,0,2,18,-73.989342,0,2,1,2021,12,0,40,50,1,0,0,10.205026,10.205026,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.23,55.6,45.09,57.73,8.333333333333334,1,1,0,0,10,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15570,-9,15571,15569,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.87939,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15571,15569,-9,-9,1,0,32,1,2,0,2,2,-9,0,5,7.9813023,8.0713701,0,2,-18,23.791233,0,-9,-9,2021,18,6,24,27,1,6,0,16.641558,16.641558,.05,.05,0,0,0,0,0,0,1,1,0,6.594296,0,45.09,57.73,52.23,55.6,6.666666666666667,1,1,0,0,5,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15572,-9,-9,15569,1,1,17,1,2,0,2,2,-9,0,3,0,0,0,0,0,-969.50977,-9,-9,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7186375,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,1,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7165,8732,15573,-9,15571,15569,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.2627,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,1021.4,1176946.8,797313.56,254914,0,0,0,3431.1729 +7166,8733,15574,15575,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.7688274,8.7116804,46,4,-67.802391,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,25.511061,0,0,1,1,0,0,8.8292074,56.18,45.82,57.16,56.15,10,1,1,0,0,0,10,5,1,836.5,1556205.9,1222735.6,149377.92,0,0,0,4644.4355 +7166,8733,15575,15574,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.4240208,7.0483418,46,-4,97.210205,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2438073,7.2894368,57.16,56.15,56.18,45.82,8.333333333333334,1,1,0,0,0,10,5,1,836.5,1556205.9,1222735.6,149377.92,0,0,0,4644.4355 +7167,8734,15576,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.7920742,5.6594558,0,0,-1076.0282,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.41238835,5.5786653,55.27,44.81,-9,-9,8.333333333333334,1,1,0,0,10,11,2,0,522,225241.52,-53543.129,0,0,0,0,1539.8116 +7168,8735,15577,15578,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.2772532,9.557394,0,9,-3,242.78381,0,-9,-9,2021,9,0,45,45,1,0,0,24.486589,24.486589,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.25,52.33,54.43,49.12,8.333333333333334,1,1,0,0,8,2,5,1,727,163844.47,79586.969,207157.39,182493.78,6553.6836,0,5479.0938 +7168,8735,15578,15577,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.6166401,8.4610615,0,9,3,-45.413174,0,2,2,2021,8,0,45,45,1,0,0,10.893745,10.893745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.43,49.12,47.25,52.33,0,1,1,0,0,10,2,5,1,727,163844.47,79586.969,207157.39,182493.78,6553.6836,0,5479.0938 +7169,8736,15579,-9,-9,-9,1,0,53,1,2,0,2,2,-9,0,2,7.9268537,7.7856555,0,0,0,-995.79987,0,-9,-9,2021,12,0,38,38,1,0,0,8.2504587,8.2504587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.95,43.11,-9,-9,5,1,1,0,0,12,10,3,1,1620,1014025.4,656994.81,185309.25,0,0,0,914.50928 +7169,8737,15580,-9,15579,-9,1,0,27,1,2,0,2,2,-9,0,4,7.8755655,7.8583117,0,0,0,-885.93323,0,2,2,2021,10,1,23,23,1,1,1,9.5756159,9.5756159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.46,45.94,-9,-9,8.333333333333334,1,1,0,1,11,10,3,1,846.66669,25307.693,24229.748,0,0,1227.8669,0,1611.1602 +7169,8737,15581,-9,15580,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.22473,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,3,1,846.66669,25307.693,24229.748,0,0,1227.8669,0,1611.1602 +7169,8737,15582,-9,15580,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-933.12488,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,3,1,846.66669,25307.693,24229.748,0,0,1227.8669,0,1611.1602 +7170,8738,15583,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.3571424,8.0466518,0,0,0,-976.53601,0,1,1,2021,10,0,37,38,1,0,0,12.860065,12.860065,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.12,56.92,-9,-9,6.666666666666667,3,4,0,0,10,8,3,0,1348,634147.13,559803.31,443353.84,254974.13,17911.143,5802.0693,1618.7773 +7170,8739,15584,-9,15583,-9,1,1,21,0,1,0,2,2,1,0,5,7.2061458,7.4373651,0,0,0,-1108.4879,-9,1,-9,2021,8,0,25,0,1,0,1,7.7137523,7.7137523,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,62.31,-9,-9,6.666666666666667,3,4,0,0,2,8,3,0,152,67009.219,0,0,0,0,-1332.0018,965.10425 +7170,8740,15585,-9,-9,-9,1,0,20,0,1,0,2,2,1,0,4,8.711277,8.3569708,0,0,0,-1040.5792,-9,-9,-9,2021,4,1,38,0,1,1,0,11.611067,11.611067,0,0,0,0,0,0,0,0,1,1,0,7.4060721,0,45.73,46.02,-9,-9,5,3,4,0,0,2,8,4,0,1018,-8669.5166,-14566.271,0,0,2489.7808,0,3831.6196 +7171,8741,15586,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.2349124,6.9812894,0,0,-957.38245,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2792044,7.4153814,55.9,51.29,-9,-9,8.333333333333334,1,1,0,0,13,11,2,1,801,314439.97,192816.98,103524.23,0,0,0,1803.2902 +7172,8742,15587,-9,-9,-9,1,0,60,1,1,0,3,3,-9,1,1,0,5.8603082,5.828485,0,0,-931.24091,0,-9,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6355968,34.07,17.28,-9,-9,0,1,1,0,0,0,6,2,0,1240,231482.88,53363.359,12594.78,0,0,0,666.51178 +7172,8743,15588,-9,15587,-9,1,1,27,1,1,0,2,2,-9,0,4,7.8062778,7.6381936,0,0,0,-1094.156,0,3,-9,2021,9,1,42,40,1,1,1,5.9813361,5.9813361,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,3,6,3,0,504,-226546.33,-15177.299,0,0,0,0,160.41779 +7172,8744,15589,-9,15587,-9,1,0,26,1,1,0,2,2,-9,0,2,7.7945018,7.847002,0,0,0,-1098.0748,0,3,2,2021,15,4,30,30,1,4,1,9.5506525,9.5506525,0,0,0,0,0,0,0,0,1,1,0,0,0,37.09,46.85,-9,-9,5,1,1,0,0,7,6,3,0,1074,77086.695,0,0,0,0,0,1342.2096 +7172,8744,15590,-9,15589,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1113.1813,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,1074,77086.695,0,0,0,0,0,1342.2096 +7173,8745,15591,15592,-9,15593,1,0,67,0,0,0,1,1,-9,0,4,7.3462496,7.7071242,0,7,-6,78.504631,0,2,2,2021,8,0,30,35,1,0,0,5.5800772,5.5800772,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.15,52.91,57.33,53.46,8.333333333333334,1,1,0,0,10,9,3,1,824,1281658.5,875579.31,325912.44,0,0,0,3420.241 +7173,8745,15592,15591,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.8349738,7.8551764,7,6,43.559898,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.1819353,7.719769,57.33,53.46,58.15,52.91,8.333333333333334,1,1,0,0,0,9,3,1,824,1281658.5,875579.31,325912.44,0,0,0,3420.241 +7173,8746,15593,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,6.3923941,5.9897447,0,0,-1089.4802,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,2.627773,14.256931,19.908297,0,1,1,0,0,6.2226195,43.25,26.11,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,133,402268.41,-16642.941,142297.19,0,0,0,787.24921 +7174,8747,15594,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.3265829,6.113564,0,0,-1004.9892,0,-9,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4653049,6.3655462,43.08,37.18,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1257,429379.47,30536.045,227513.02,0,0,0,1639.6292 +7175,8748,15595,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-931.76825,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.66,44.52,-9,-9,8.333333333333334,1,1,0,0,10,13,1,1,113,-76696.984,0,98414.836,0,0,2103.9204,423.14264 +7175,8749,15596,-9,15595,-9,1,0,35,0,0,0,1,1,-9,1,3,0,5.2197399,5.4087834,0,0,-947.59271,0,3,3,2021,14,7,0,35,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1756639,5.5635476,39.99,51.87,-9,-9,6.666666666666667,1,1,0,0,12,13,2,1,552,43062.926,-50578.98,0,0,0,0,-833.25916 +7175,8750,15597,-9,15595,-9,1,0,35,0,0,0,1,1,-9,0,4,7.5941153,7.6175785,0,0,0,-796.61768,0,3,3,2021,12,1,37,35,1,1,0,6.8558741,6.8558741,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,1378,163933.34,0,53577.344,33172.41,0,0,791.48016 +7176,8751,15598,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,4,7.4083147,7.5159826,0,0,0,-973.70166,-9,-9,-9,2021,11,0,20,0,1,0,0,10.847899,10.847899,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.39,52.94,-9,-9,6.666666666666667,1,1,0,0,5,2,3,0,381,-17708.867,10409.504,0,0,0,0,528.88208 +7177,8752,15599,15600,15602,15603,1,1,53,0,0,0,1,1,-9,0,4,8.1362514,8.3652315,0,34,6,-28.031174,0,3,2,2021,6,0,33,33,1,0,0,14.852441,14.852441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,41.47,58.08,10,2,3,0,0,8,2,4,1,538.33331,499607.84,239221,184687.92,60723.543,8298.3721,0,2600.0825 +7177,8752,15600,15599,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,6.8467627,6.8734899,0,34,-6,-117.61056,0,3,2,2021,10,0,19,20,1,0,0,6.2885337,6.2885337,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,58.08,59.14,52.5,10,2,3,0,0,8,2,4,1,538.33331,499607.84,239221,184687.92,60723.543,8298.3721,0,2600.0825 +7177,8752,15601,-9,15600,15599,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-972.33441,-9,2,1,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.36,62.77,-9,-9,8.333333333333334,2,3,0,0,0,2,4,1,538.33331,499607.84,239221,184687.92,60723.543,8298.3721,0,2600.0825 +7177,8753,15602,15603,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,3,0,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,46,8,2,3,0,0,0,2,1,1,659.5,149714.45,0,217095.94,0,0,0,0 +7177,8753,15603,15602,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,3,0,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,51,46,8,2,3,0,0,0,2,1,1,659.5,149714.45,0,217095.94,0,0,0,0 +7178,8754,15604,15605,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.6029696,7.5858636,18,5,70.966766,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.743475,39.39,37.66,44.44,41.83,6.666666666666667,1,1,0,0,0,4,3,1,684,667535.88,748739.13,84522.93,0,0,0,908.56873 +7178,8754,15605,15604,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,18,-5,77.44268,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.44,41.83,39.39,37.66,1.666666666666667,1,1,0,0,12,4,3,1,684,667535.88,748739.13,84522.93,0,0,0,908.56873 +7179,8755,15606,15607,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2897863,8.44666,0,2,-4,5.2505279,-9,-9,-9,2021,19,8,41,0,1,8,0,9.4775848,9.4775848,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.26,35.16,56.07,55.46,8.333333333333334,1,1,0,0,1,4,5,1,699,567778.25,166658.94,265184.81,94347.602,0,1788.9773,3507.5605 +7179,8755,15607,15606,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.7299156,8.5308151,0,2,4,-18.546513,0,-9,-9,2021,10,0,57,47,1,0,0,10.839965,10.839965,.05,.05,0,0,0,0,0,0,0,0,0,7.9724855,0,56.07,55.46,46.26,35.16,8.333333333333334,1,1,0,0,12,4,5,1,699,567778.25,166658.94,265184.81,94347.602,0,1788.9773,3507.5605 +7180,8756,15608,15609,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.8801112,8.0833817,8,7,20.398167,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,8.2446508,36.44,23.85,42.86,34.81,3.333333333333333,1,1,0,0,0,2,4,1,1347,849067.25,244345.31,193608.06,0,0,0,3586.3936 +7180,8756,15609,15608,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,7.5333233,7.2432165,58,-7,-18.063421,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.9559259,7.3480005,42.86,34.81,36.44,23.85,6.666666666666667,1,1,0,0,0,2,4,1,1347,849067.25,244345.31,193608.06,0,0,0,3586.3936 +7181,8757,15610,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,8.9718285,8.8481483,3.6494505,0,0,-1068.2744,0,2,3,2021,10,0,30,30,1,0,0,18.13015,18.13015,0,0,0,0,0,0,0,0,0,0,0,8.8679628,3.6128399,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,1082,1049271.8,597845.38,445521.47,0,0,0,5134.9609 +7182,8758,15611,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,4.0171037,4.2889142,0,0,-988.88586,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0031404,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,214,108276.5,25021.639,0,0,0,0,1299.439 +7182,8759,15612,-9,-9,15611,1,1,23,0,0,0,2,2,-9,0,3,7.9866457,8.1788063,0,0,0,-1058.8268,0,-9,3,2021,12,0,5,39,1,0,0,72.421669,72.421669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.8,49.93,-9,-9,3.333333333333333,1,1,0,0,5,7,4,0,730,-45699.344,179538.41,0,0,0,0,964.99774 +7183,8760,15613,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9680343,8.0699701,0,0,0,-1052.8568,0,2,2,2021,9,0,35,36,1,0,0,9.9646959,9.9646959,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,12,4,1,189,154622.39,26722.1,75064.68,0,0,0,342.97873 +7183,8761,15614,-9,15613,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-943.79425,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.75,63.69,-9,-9,6.666666666666667,1,1,0,0,6,12,1,1,346,151686.45,0,0,0,0,0,-241.27509 +7184,8762,15615,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.4881926,8.3315001,0,0,0,-1101.3942,0,2,1,2021,15,3,45,44,1,3,0,12.284408,12.284408,0,0,0,0,0,0,0,0,0,0,0,0,0,36.08,60.5,-9,-9,6.666666666666667,3,4,0,0,7,8,5,0,1346,295707.81,0,0,0,4672.9805,0,2484.1118 +7185,8763,15616,15617,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,0,0,8,-10,113.9978,0,1,1,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,28.62,44.99,57.16,56.15,1.666666666666667,4,5,0,0,0,5,5,0,568,57439.91,-31824.963,217030.66,187270.3,17477.537,3447.8586,14983.364 +7185,8763,15617,15616,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,9.6767168,9.6152573,0,8,10,8.0790224,0,3,3,2021,10,0,9,8,1,0,0,190.07484,190.07484,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,28.62,44.99,8.333333333333334,1,1,0,0,10,5,5,0,568,57439.91,-31824.963,217030.66,187270.3,17477.537,3447.8586,14983.364 +7185,8763,15618,-9,15616,15617,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.1824,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,5,0,568,57439.91,-31824.963,217030.66,187270.3,17477.537,3447.8586,14983.364 +7186,8764,15619,-9,15623,-9,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-981.80243,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15620,-9,15623,-9,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1139.3165,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15621,-9,15623,-9,1,0,12,1,4,1,3,0,-9,0,4,0,0,0,0,0,-922.41699,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15622,-9,15623,-9,1,1,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1023.7392,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7186,8764,15623,-9,-9,-9,1,0,35,1,4,0,2,2,-9,0,2,0,6.4466319,6.2063088,0,0,-1040.9662,0,2,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2109022,0,12.34,58.59,-9,-9,5,1,1,0,0,0,10,2,0,1350.6,812370.25,85980.539,848186.94,231626.44,-16.418274,0,2309.2104 +7187,8765,15624,15625,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.5561886,9.8075705,4.5434947,7,-4,100.76929,0,3,3,2021,7,0,48,52,1,0,0,39.225273,39.225273,.05,.05,.05,0,0,0,0,0,1,1,0,3.5947442,4.2862053,60.42,54.81,54.2,57.49,8.333333333333334,1,1,0,0,8,11,5,1,423,1616123.5,1356256.5,385738.25,0,0,0,8332.0801 +7187,8765,15625,15624,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,6.6161842,6.628653,7,4,-10.878688,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2273893,6.4353895,54.2,57.49,60.42,54.81,8.333333333333334,1,1,0,0,4,11,5,1,423,1616123.5,1356256.5,385738.25,0,0,0,8332.0801 +7188,8766,15626,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.4044971,8.5371265,0,0,0,-831.61737,0,1,1,2021,18,6,37,38,1,6,0,21.040245,21.040245,.05,.05,0,0,0,0,0,0,0,0,0,1.2643805,0,22.78,65.51000000000001,-9,-9,3.333333333333333,1,1,0,0,2,9,5,0,297,225158.05,54555.348,186205.78,108848.2,9853.0977,0,2624.9807 +7189,8767,15627,15628,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,5.2700953,5.121654,45,8,-15.5502,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,22.397459,0,0,1,1,0,7.4086251,5.0775166,65.04000000000001,28.07,44.49,61.79,10,1,1,0,0,0,2,2,1,411,174453.11,43808.078,107694.89,0,0,0,2749.6709 +7189,8767,15628,15627,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.4206886,6.4262156,45,-8,-45.410084,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.2943397,6.2600298,44.49,61.79,65.04000000000001,28.07,8.333333333333334,1,1,0,0,5,2,2,1,411,174453.11,43808.078,107694.89,0,0,0,2749.6709 +7190,8768,15629,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-995.25714,0,2,2,2021,27,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.66,41.52,-9,-9,0,1,1,0,0,0,4,1,1,293,265101.69,0,0,0,-350.77216,0,1023.4993 +7191,8769,15630,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-842.46344,0,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.72,22.57,-9,-9,0,1,1,0,1,0,8,2,0,798,-40474.73,0,0,0,0,0,2194.283 +7191,8769,15631,-9,15630,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-898.80573,-9,2,-9,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,49.41,58.28,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,798,-40474.73,0,0,0,0,0,2194.283 +7192,8770,15632,15633,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0581903,7.8213301,0,11,9,19.434637,0,-9,-9,2021,8,0,43,38,1,0,0,9.4284973,9.4284973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.06,48.59,36.99,54.9,6.666666666666667,1,1,0,0,13,9,4,0,553.66669,14375.703,101554.06,0,0,0,0,2356.1001 +7192,8770,15633,15632,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.3914104,7.7684355,0,11,0,-45.074883,0,-9,-9,2021,10,0,15,15,1,0,0,17.111912,17.111912,0,0,0,0,0,0,0,0,1,1,0,0,0,36.99,54.9,59.06,48.59,6.666666666666667,1,1,0,0,12,9,4,0,553.66669,14375.703,101554.06,0,0,0,0,2356.1001 +7192,8770,15634,-9,15633,15632,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1045.4257,-9,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,1,9,4,0,553.66669,14375.703,101554.06,0,0,0,0,2356.1001 +7192,8771,15635,-9,15633,15632,1,1,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-988.4342,0,2,3,2021,20,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.86,62.75,-9,-9,3.333333333333333,1,1,1,0,0,9,1,0,1084,-168004.73,0,0,0,0,0,0 +7193,8772,15636,-9,-9,-9,1,0,21,0,0,0,2,2,0,0,3,0,0,0,0,0,-1071.8484,-9,-9,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.43,54.04,-9,-9,8.333333333333334,1,1,0,0,3,12,1,0,336,-116524.42,0,0,0,0,0,-144.24757 +7194,8773,15637,15638,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.3590412,7.9056907,7.2474017,25,1,87.587654,0,3,3,2021,11,3,15,15,1,3,0,10.392196,10.392196,0,0,0,0,0,0,0,2,1,1,0,7.3260779,0,53.61,21.96,54.37,54.8,8.333333333333334,1,1,0,0,9,6,5,1,262,562180.44,131044.65,353552.72,0,20750.898,0,4593.5479 +7194,8773,15638,15637,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,0,9.0118885,8.6899529,25,-1,34.242294,0,2,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,9.0174837,0,54.37,54.8,53.61,21.96,8.333333333333334,1,1,0,0,10,6,5,1,262,562180.44,131044.65,353552.72,0,20750.898,0,4593.5479 +7195,8774,15639,15642,-9,-9,1,0,38,2,3,0,1,1,-9,0,4,8.0161085,8.4824686,0,5,-6,-39.522652,0,-9,-9,2021,9,0,30,30,1,0,0,19.883455,19.883455,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,9,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15640,-9,15639,15642,1,1,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-912.3064,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15641,-9,15639,15642,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-997.98804,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15642,15639,-9,-9,1,1,44,2,3,0,2,2,-9,0,4,8.8297062,8.6726713,0,5,6,-50.230186,0,2,1,2021,12,0,40,40,1,0,0,19.443876,19.443876,.05,.05,0,0,0,0,0,0,1,1,0,6.429009,0,48.87,58.55,54.2,57.49,6.666666666666667,1,1,0,0,12,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7195,8774,15643,-9,15639,15642,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-971.92377,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1373.6,408556.91,122941.84,221366.28,106886.58,35761.613,635.28351,4679.7222 +7196,8775,15644,15645,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.2106094,6.0192142,65,2,71.345161,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,5.0424619,48.411346,42.384304,42,1,1,0,0,5.9114461,55,45,52,45,8,1,1,0,0,0,4,2,1,550.5,385576.75,10695.244,163976.53,0,0,0,1609.8645 +7196,8775,15645,15644,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.2228537,5.8290687,65,-2,93.349373,0,-9,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,5.6980824,33.258308,49.84285,120,1,1,0,0,6.2552867,52,45,55,45,8,1,1,0,0,0,4,2,1,550.5,385576.75,10695.244,163976.53,0,0,0,1609.8645 +7197,8776,15646,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,8.9628553,8.9221792,0,0,-870.16144,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4032402,9.1852636,47.52,57.75,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,536,1266354.9,644399.31,553751,0,0,0,5998.8706 +7198,8777,15647,15648,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.7743578,8.6854076,0,9,3,-64.743164,0,-9,-9,2021,9,0,38,38,1,1,0,22.449333,22.449333,.05,.05,0,0,0,0,0,0,1,1,0,.62521803,0,53,54,43.13,44.98,8,1,1,0,0,1,12,5,1,2823,147894.05,226417.41,0,0,0,0,3521.729 +7198,8777,15648,15647,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.9569387,8.052268,0,32,-3,-24.753853,0,3,3,2021,13,2,40,44,1,2,0,10.40256,10.40256,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43.13,44.98,53,54,8.333333333333334,1,1,0,0,8,12,5,1,2823,147894.05,226417.41,0,0,0,0,3521.729 +7198,8778,15649,-9,15648,15647,1,0,28,0,0,0,2,2,-9,0,3,7.916162,7.8508701,0,0,0,-888.98523,0,3,2,2021,27,12,30,42,1,12,1,8.9316435,8.9316435,0,0,0,0,0,0,0,0,1,1,0,0,0,26.31,48.54,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,1607,-248156.91,0,0,0,5396.8071,0,1131.406 +7198,8779,15650,-9,15648,15647,1,0,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-926.41388,-9,3,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,5,12,1,1,1543,-18362.385,0,0,0,0,0,0 +7199,8780,15651,-9,15652,15653,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-876.42969,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,1,0,1180.6666,107232.73,0,0,0,2073.7781,0,893.60706 +7199,8780,15652,15653,-9,-9,1,0,25,1,1,0,2,2,-9,0,2,0,0,0,3,-2,0,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.34,44.9,41,44,10,1,1,1,0,0,13,1,0,1180.6666,107232.73,0,0,0,2073.7781,0,893.60706 +7199,8780,15653,15652,-9,-9,1,1,27,1,1,0,3,3,-9,0,2,0,0,0,3,2,0,0,2,2,2021,13,1,0,60,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,44,47.34,44.9,6.666666666666667,1,1,1,0,4,13,1,0,1180.6666,107232.73,0,0,0,2073.7781,0,893.60706 +7200,8781,15654,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,5.6442285,6.0274253,0,0,-936.98944,0,3,3,2021,23,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7817497,37.43,18.27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,519,287752.78,-42530.488,0,0,0,1874.3556,2873.3813 +7201,8782,15655,15656,-9,-9,1,1,81,0,0,0,1,1,-9,0,4,0,8.2372723,8.3930149,13,9,12.085486,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,11.219915,0,0,1,1,0,1.8121771,8.2639055,56.05,48.44,48.75,37.34,8.333333333333334,1,1,0,0,0,1,4,1,566.5,1389353.8,461556.25,358305.13,0,0,0,4004.249 +7201,8782,15656,15655,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.1777544,6.2096853,13,0,84.257217,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0220022,48.75,37.34,56.05,48.44,3.333333333333333,1,1,0,0,0,1,4,1,566.5,1389353.8,461556.25,358305.13,0,0,0,4004.249 +7202,8783,15657,15658,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,7.4691515,7.523159,0,8,1,147.53311,0,-9,-9,2021,6,0,25,25,1,0,0,8.4710569,8.4710569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,30.6,18.53,8.333333333333334,1,1,0,0,12,2,4,1,1760.5,167084.33,34266.309,151771.09,24983.719,0,0,2929.7832 +7202,8783,15658,15657,-9,-9,1,0,48,0,0,0,1,1,-9,0,1,8.3835897,8.0105124,0,8,-1,-199.11832,0,-9,-9,2021,24,11,36,36,1,11,0,10.992084,10.992084,.05,.05,0,0,0,0,0,0,0,0,0,2.8768101,0,30.6,18.53,54.79,55.86,1.666666666666667,1,1,0,0,12,2,4,1,1760.5,167084.33,34266.309,151771.09,24983.719,0,0,2929.7832 +7203,8784,15659,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.0870733,8.6695147,7.5902615,0,0,-937.89691,0,2,2,2021,15,3,36,38,1,3,0,9.8342247,9.8342247,.05,.05,0,0,0,0,0,0,1,1,0,1.9887805,7.3647089,47.16,28.87,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,265,1048792.8,633327.63,405089.28,0,11970.418,0,2596.9146 +7204,8785,15660,15661,-9,-9,1,1,34,1,4,0,2,2,-9,0,3,8.2271614,8.0474091,0,7,7,38.827137,0,-9,-9,2021,15,3,49,49,1,3,0,7.1688247,7.1688247,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,28.57,61.36,6.666666666666667,1,1,0,1,6,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15661,15660,-9,-9,1,0,27,1,4,0,3,3,-9,0,3,0,0,0,7,-7,-51.824284,0,2,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.57,61.36,46.08,57.2,8.333333333333334,1,1,0,1,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15662,-9,15661,15660,1,0,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-945.46722,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15663,-9,15661,15660,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1069.1158,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15664,-9,15661,15660,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-914.50232,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7204,8785,15665,-9,15661,15660,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1058.7793,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1573,262492.72,0,344834.56,161057.56,0,0,2607.875 +7205,8786,15666,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,6.970243,7.0205297,0,0,-1001.4473,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,2.3710294,0,0,1,1,0,0,7.1380353,51.68,38.14,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,200,171093.64,75559.031,271066.19,0,0,0,777.40558 +7206,8787,15667,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.195168,3.9368136,0,0,-953.06,0,2,-9,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.38098,4.0509801,31.11,44.46,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,1193,82317.578,-52117.922,0,0,0,0,1227.5823 +7207,8788,15668,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1393099,7.8217273,0,0,0,-1097.6682,0,2,1,2021,16,5,80,85,1,5,0,4.1555123,4.1555123,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,36.3,48.72,-9,-9,3.333333333333333,1,1,0,0,9,10,3,0,225,-174624.08,68574.359,29025.908,1830.1321,0,0,1705.8729 +7208,8789,15669,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.3547106,8.3747797,0,0,0,-937.74695,-9,1,1,2021,11,0,38,0,1,0,0,10.740667,10.740667,.05,.05,0,0,0,0,0,0,0,0,0,5.2068772,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,505,-34545.895,51754.852,0,0,0,0,2022.0313 +7209,8790,15670,15672,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,8.8342323,8.8846302,0,6,1,-59.861004,0,2,2,2021,12,0,55,40,1,0,0,16.421307,16.421307,.05,.05,0,0,0,0,0,0,1,1,0,3.3329556,0,48.77,60.16,35.05,60.2,1.666666666666667,1,1,0,0,9,9,5,1,1397.3334,264609.69,50840.488,419541,248802.42,0,2264.9087,5076.0664 +7209,8790,15671,-9,15672,15670,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.99908,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1397.3334,264609.69,50840.488,419541,248802.42,0,2264.9087,5076.0664 +7209,8790,15672,15670,-9,-9,1,0,31,1,1,0,1,1,-9,0,4,7.7999759,7.7692513,0,6,-1,2.8237784,0,-9,-9,2021,8,0,30,30,1,0,0,10.282583,10.282583,.05,.05,0,0,0,0,0,0,1,1,0,.3786799,0,35.05,60.2,48.77,60.16,8.333333333333334,1,1,0,0,8,9,5,1,1397.3334,264609.69,50840.488,419541,248802.42,0,2264.9087,5076.0664 +7210,8791,15673,-9,15675,-9,1,0,25,0,0,0,2,2,-9,0,5,0,7.1962171,7.0330114,0,0,-955.65747,-9,2,-9,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.510725,0,35.28,65.08,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,356,-48333.012,0,0,0,0,0,375.95923 +7210,8792,15674,-9,15675,-9,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1055.626,-9,2,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,4,6,0,0,0,2,4,1,610,105879.37,71058.906,31995.465,35348.969,1341.498,0,1470.183 +7210,8792,15675,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.2960291,8.1257381,0,0,0,-970.39606,-9,-9,-9,2021,10,0,40,0,1,1,0,10.271916,10.271916,.05,.05,.05,0,0,0,0,0,0,0,0,6.2554088,0,51,54,-9,-9,8,4,6,0,0,1,2,4,1,610,105879.37,71058.906,31995.465,35348.969,1341.498,0,1470.183 +7211,8793,15676,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.7156577,7.1860876,0,0,-1061.0062,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.9297235,7.5691438,57.16,56.15,-9,-9,3.333333333333333,1,1,0,0,9,4,2,0,502,375602.06,146528.92,225441.09,0,0,0,1531.9552 +7212,8794,15677,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.76161,7.5941586,0,0,-983.85999,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3946962,7.7902131,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,3195,232089.23,231434.66,0,0,0,0,2996.9163 +7213,8795,15678,15679,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.4284286,8.2028017,0,2,-5,43.686905,0,-9,-9,2021,5,0,60,50,1,0,0,5.1175146,5.1175146,.05,.05,0,0,0,0,0,0,0,0,0,1.1412697,0,57.16,56.15,54.1,59.11,10,1,1,0,0,2,9,5,0,225,155114.59,34769.262,275249.75,149548.97,0,73.640999,4851.4336 +7213,8795,15679,15678,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.8388262,8.7963047,0,2,5,17.52561,0,1,2,2021,8,0,43,40,1,0,0,17.535385,17.535385,.05,.05,0,0,0,0,0,0,0,0,0,7.8743339,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,0,225,155114.59,34769.262,275249.75,149548.97,0,73.640999,4851.4336 +7214,8796,15680,-9,15685,15683,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-986.02905,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15681,-9,15685,15683,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-935.98749,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15682,-9,15685,15683,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-942.40063,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15683,15685,-9,-9,1,1,42,1,4,0,1,1,-9,0,4,8.5854168,8.74613,0,2,1,87.207115,0,-9,-9,2021,9,1,46,47,1,1,0,17.274542,17.274542,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.13,57.97,46.65,55.59,6.666666666666667,1,1,0,0,11,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15684,-9,15685,15683,1,1,12,1,4,1,3,0,-9,0,3,0,0,0,0,0,-1083.6676,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7214,8796,15685,15683,-9,-9,1,0,41,1,4,0,1,1,-9,0,3,7.8675623,7.4714127,0,2,-1,79.69397,0,2,3,2021,12,0,25,25,1,0,0,15.842762,15.842762,0,0,0,0,0,0,0,0,1,1,0,0,0,46.65,55.59,44.13,57.97,6.666666666666667,1,1,0,1,11,5,4,1,1826.8334,356989.69,103446.53,235391.73,137896.92,0,0,3546.408 +7215,8797,15686,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.0679874,9.0388212,0,0,0,-1001.7664,0,2,1,2021,13,2,40,40,1,2,0,24.169477,24.169477,.05,.05,0,0,0,0,0,0,1,1,0,3.7668309,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,515,256489.69,-52058.961,0,0,0,0,2280.5278 +7216,8798,15687,15688,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.3784246,8.6031494,11,-1,1.5057489,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6145654,8.2021427,56.79,38.59,57.76,54.51,8.333333333333334,1,1,0,0,0,1,5,1,707.5,1059405.5,773066.63,235985.91,0,0,0,6332.9424 +7216,8798,15688,15687,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.7537975,8.4330435,11,1,-17.817226,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5294142,57.76,54.51,56.79,38.59,10,1,1,0,0,0,1,5,1,707.5,1059405.5,773066.63,235985.91,0,0,0,6332.9424 +7217,8799,15689,15690,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,8,-12,0,0,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.6,23.15,37.65,27.39,1.666666666666667,1,1,0,0,0,4,1,0,1579,-4517.8008,0,0,0,0,0,2489.5562 +7217,8799,15690,15689,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,8,12,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.65,27.39,41.6,23.15,5,1,1,0,0,0,4,1,0,1579,-4517.8008,0,0,0,0,0,2489.5562 +7218,8800,15691,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,4,7.5937309,8.0029316,0,0,0,-1124.8378,0,-9,-9,2021,11,0,37,37,1,2,0,10.269429,10.269429,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,0,0,5,6,3,0,261,-134914.42,32329.668,0,0,0,0,1613.057 +7219,8801,15692,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.9832668,8.8524427,0,0,0,-1041.5431,0,-9,-9,2021,10,0,52,60,1,0,0,20.099564,20.099564,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,976,578494.69,213058.25,529626.5,259694.13,113.54256,0,2471.7708 +7220,8802,15693,15694,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,56,3,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.68,36.42,41.34,56.62,8.333333333333334,1,1,0,0,0,8,2,1,562,655782.56,162222.66,344854.34,0,0,0,771.6687 +7220,8802,15694,15693,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,11,-3,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.34,56.62,48.68,36.42,10,1,1,0,0,1,8,2,1,562,655782.56,162222.66,344854.34,0,0,0,771.6687 +7221,8803,15695,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.92276,7.0235767,0,0,-891.58698,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.1925151,7.4990463,51,46,-9,-9,7,2,3,0,0,0,8,2,1,772,590021.44,183976.63,597678.75,0,0,0,1784.5818 +7222,8804,15696,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.3449659,4.6243963,0,0,-1029.1575,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3299563,4.4670553,47.89,56.25,-9,-9,6.666666666666667,1,1,0,0,10,12,2,1,781,679968.31,0,216978.47,0,0,0,1339.744 +7223,8805,15697,15698,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,2.8030727,2.9381323,27,3,100.14045,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2370703,2.9971952,58.87,51.29,46.24,33.56,8.333333333333334,1,1,0,0,3,9,2,1,584.5,-52898.563,0,0,0,0,0,828.59729 +7223,8805,15698,15697,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,27,-3,38.345585,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.24,33.56,58.87,51.29,3.333333333333333,1,1,0,0,12,9,2,1,584.5,-52898.563,0,0,0,0,0,828.59729 +7224,8806,15699,15700,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,22,-13,-125.20036,0,2,3,2021,11,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,41.7,60.44,68.66,12.79,10,1,1,0,0,7,12,3,1,395,886718,573892,192586.69,0,0,0,2073.3567 +7224,8806,15700,15699,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6258349,7.8306131,7,13,-73.522484,0,-9,-9,2021,7,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.46005362,7.7343173,68.66,12.79,41.7,60.44,6.666666666666667,1,1,0,0,9,12,3,1,395,886718,573892,192586.69,0,0,0,2073.3567 +7225,8807,15701,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.4315538,8.2113838,0,0,0,-1028.942,0,1,1,2021,3,0,32,38,1,0,0,13.987913,13.987913,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,11,5,4,1,5434,451235.22,290648.19,88426.375,0,0,0,860.90265 +7226,8808,15702,15703,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.0877633,7.1638083,49,-6,23.733763,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0573387,7.1568866,60.12,54.8,61.68,47.24,10,1,1,0,0,0,7,3,1,412.5,817201.75,353296.06,277582.94,0,6235.1631,0,2613.9165 +7226,8808,15703,15702,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.4180431,6.7249889,49,6,63.360405,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6604967,6.8965755,61.68,47.24,60.12,54.8,6.666666666666667,1,1,0,0,0,7,3,1,412.5,817201.75,353296.06,277582.94,0,6235.1631,0,2613.9165 +7227,8809,15704,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,1,0,0,0,0,0,-917.20282,0,1,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.19,5.98,-9,-9,5,1,1,0,0,0,9,1,0,461,346357.16,107871.39,433284.56,0,0,0,752.3429 +7228,8810,15705,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.1196461,8.9278955,0,0,0,-1014.0637,0,3,3,2021,10,0,50,50,1,0,0,19.628658,19.628658,0,0,0,0,0,0,0,0,0,0,0,0,0,58.24,46.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,1540,29373.668,-66354.672,0,0,0,7681.6948,2729.075 +7229,8811,15706,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,4,0,7.7438407,7.7118964,0,0,-1071.0339,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1129217,7.7550874,54.4,51.93,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1141,507655.81,142824.83,294598.09,0,0,0,3839.0183 +7230,8812,15707,15708,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,8.5958948,8.5156488,0,6,8,-134.93005,0,2,2,2021,7,0,42,52,1,0,0,15.684163,15.684163,.05,.05,0,0,0,0,0,0,1,1,0,4.8035998,0,58.32,50.22,46.39,52.95,6.666666666666667,3,4,0,0,7,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15708,15707,-9,-9,1,0,43,0,3,0,1,1,-9,0,4,7.4784489,7.4706049,0,6,-8,13.072686,0,2,2,2021,12,0,39,30,1,0,0,6.2655945,6.2655945,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,52.95,58.32,50.22,8.333333333333334,1,1,0,0,8,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15709,-9,15708,15707,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.78186,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,2,-9,0,0,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15710,-9,15708,15707,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1056.7954,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7230,8812,15711,-9,15708,15707,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.72284,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,1479.8,1082408.6,830576.13,312754.91,87369.984,1895.4646,0,3233.7566 +7231,8813,15712,15713,-9,-9,1,0,29,0,0,0,2,2,-9,1,2,0,0,0,2,0,43.062981,0,2,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.21,55.36,51.83,38.4,1.666666666666667,1,1,0,0,1,12,3,1,779.5,476214.94,358831.84,0,0,0,0,1474.5486 +7231,8813,15713,15712,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.5096908,7.6601005,0,2,0,67.302917,-9,-9,-9,2021,11,0,42,0,1,0,0,4.5212469,4.5212469,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,38.4,22.21,55.36,6.666666666666667,1,1,0,0,0,12,3,1,779.5,476214.94,358831.84,0,0,0,0,1474.5486 +7232,8814,15714,15715,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.6463728,4.7161956,48,0,77.247253,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8505354,4.2680511,57.33,53.46,59.46,36.46,0,1,1,0,0,0,5,4,1,3858,788085.5,821671.31,0,0,14495.672,13416.992,2865.5024 +7232,8814,15715,15714,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,8.1955814,8.6278553,6.87325,38,0,106.64256,0,-9,2,2021,6,0,22,21,1,0,0,20.85005,20.85005,.05,.05,0,0,0,0,0,0,1,1,0,5.1098514,7.4298987,59.46,36.46,57.33,53.46,8.333333333333334,1,1,0,0,13,5,4,1,3858,788085.5,821671.31,0,0,14495.672,13416.992,2865.5024 +7233,8815,15716,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,7.3498182,7.3298464,0,0,0,-966.9101,0,-9,-9,2021,9,0,26,32,1,0,0,6.171412,6.171412,0,0,0,0,0,0,0,0,1,1,0,0,0,59.04,54.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,941,41250.41,0,0,0,0,0,2209.5725 +7234,8816,15717,-9,15718,-9,1,0,40,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1023.446,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,1,0,0,2,1,0,1013,28658.418,0,0,0,0,0,213.54161 +7234,8817,15718,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-999.52802,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,937,-126586.22,0,0,0,0,0,807.89832 +7235,8818,15719,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,9.2045059,9.0363665,0,0,0,-990.13318,0,-9,-9,2021,6,0,35,38,1,0,0,30.036386,30.036386,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,9,5,1,1143,49579.965,127925.04,188304.22,202131.3,0,0,3826.7036 +7236,8819,15720,-9,15721,15722,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1143.6123,-9,2,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.78,55.17,-9,-9,10,1,1,0,0,0,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7236,8819,15721,15722,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,0,0,0,22,4,-17.426832,0,3,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,64.84999999999999,30.81,50.74,51,10,1,1,0,0,10,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7236,8819,15722,15721,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,9.5053482,9.752739,0,21,-4,169.0883,0,3,2,2021,10,0,35,40,1,0,0,41.134243,41.134243,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.74,51,64.84999999999999,30.81,6.666666666666667,1,1,0,0,15,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7236,8819,15723,-9,15721,15722,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.39539,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,1512,3262247.5,2128474.5,734148,0,0,0,3951.3403 +7237,8820,15724,15725,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.0548944,7.8699946,0,7,2,-122.10487,0,-9,-9,2021,11,0,40,40,1,0,0,9.2916346,9.2916346,.05,.05,0,0,0,0,0,0,0,0,0,2.3936026,0,48.53,58.91,63.06,53.47,8.333333333333334,1,1,0,0,4,10,4,0,1356.5,190415.75,-16134.489,122044.23,0,15277.016,0,1991.2473 +7237,8820,15725,15724,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,7.9719419,8.0590706,0,7,-2,-30.819717,0,-9,-9,2021,7,0,42,40,1,0,0,8.165904,8.165904,.05,.05,0,0,0,0,0,0,0,0,0,1.4715592,0,63.06,53.47,48.53,58.91,6.666666666666667,1,1,0,0,7,10,4,0,1356.5,190415.75,-16134.489,122044.23,0,15277.016,0,1991.2473 +7238,8821,15726,15727,-9,-9,1,1,45,0,2,0,3,3,-9,0,5,8.7073059,9.347146,7.3478651,6,4,-72.610886,0,3,3,2021,9,1,84,32,1,1,0,9.6599541,9.6599541,.05,.05,.05,0,0,0,0,0,1,1,0,6.8845501,7.5822186,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,7,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7238,8821,15727,15726,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,6.3907332,6.417347,0,6,-4,12.311754,0,3,2,2021,3,0,8,32,1,0,0,10.162397,10.162397,0,0,0,0,0,0,0,0,1,1,0,7.2353325,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,7,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7238,8821,15728,-9,15727,15726,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.827,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7238,8821,15729,-9,15727,15726,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1090.1212,-9,2,3,2021,5,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,9,4,1,541.25,999138.31,626215.06,443741.56,90197.828,0,0,5835.6602 +7239,8822,15730,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-993.8833,0,-9,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.6,45.61,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,223,0,0,0,0,0,0,1427.2528 +7240,8823,15731,15732,-9,-9,1,0,30,1,1,0,1,1,-9,0,3,7.5331779,7.5662951,0,5,-3,-135.56328,0,2,1,2021,11,0,55,50,1,0,0,3.9443862,3.9443862,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,53.42,30.59,64.25,8.333333333333334,1,1,0,0,12,12,3,1,1669,26054.277,8282.7891,210056.69,101936.88,2446.551,0,2328.5063 +7240,8823,15732,15731,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,7.9025588,7.5147934,0,5,3,-27.931564,0,-9,-9,2021,14,2,30,30,1,2,0,12.728305,12.728305,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.59,64.25,48.28,53.42,8.333333333333334,1,1,0,1,4,12,3,1,1669,26054.277,8282.7891,210056.69,101936.88,2446.551,0,2328.5063 +7240,8823,15733,-9,15731,15732,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.2062,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,1,1669,26054.277,8282.7891,210056.69,101936.88,2446.551,0,2328.5063 +7241,8824,15734,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.9550686,8.8133497,0,0,0,-1012.4454,0,2,3,2021,25,10,45,45,1,10,0,18.734621,18.734621,.05,.05,0,0,0,0,0,7,0,0,0,6.0347347,0,20.98,42.34,-9,-9,1.666666666666667,1,1,0,0,12,11,5,1,1293,1533582.9,1180194,111641.05,0,0,0,2870.1501 +7241,8825,15735,-9,15734,-9,1,0,27,0,0,0,2,2,-9,0,4,7.935082,8.3265944,0,0,0,-965.86456,-9,1,-9,2021,14,4,41,0,1,4,1,9.7902327,9.7902327,.05,.05,0,0,0,0,0,2,0,0,0,0,0,46.73,57.01,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,1489,-67376.578,52710.766,0,0,0,0,893.65045 +7242,8826,15736,15737,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,9.4897537,9.0095739,45,1,-75.731842,0,2,1,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.8935575,9.1980944,51.59,50.44,58.15,52.91,8.333333333333334,1,1,0,0,3,2,5,1,434.5,631987.63,348443.91,397823.09,21423.551,0,20728.154,7023.6426 +7242,8826,15737,15736,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,0,0,45,-1,-120.80988,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0091448,0,58.15,52.91,51.59,50.44,8.333333333333334,1,1,0,0,9,2,5,1,434.5,631987.63,348443.91,397823.09,21423.551,0,20728.154,7023.6426 +7243,8827,15738,15739,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,9.1887035,9.0338907,9,6,-60.118073,0,3,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.1631594,9.0042868,39.15,41.42,37.94,33.12,1.666666666666667,4,5,0,0,3,8,5,1,481,1363476.5,783305.63,593695.69,0,0,0,6595.9282 +7243,8827,15739,15738,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,5.1737728,5.4572101,58,-6,66.225342,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,2.1169486,9.5584011,23.560049,0,1,1,0,1.612072,5.0755258,37.94,33.12,39.15,41.42,3.333333333333333,4,5,0,0,0,8,5,1,481,1363476.5,783305.63,593695.69,0,0,0,6595.9282 +7244,8828,15740,15741,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,31,11,0,0,-9,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.9758286,0,56.23,52.63,55.19,54.26,10,1,1,0,0,0,1,1,1,387.5,82191.43,0,0,0,0,0,502.07446 +7244,8828,15741,15740,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,0,0,0,31,-11,0,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.1087627,0,55.19,54.26,56.23,52.63,8.333333333333334,1,1,0,0,0,1,1,1,387.5,82191.43,0,0,0,0,0,502.07446 +7245,8829,15742,15743,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.9274364,5.8016357,47,1,94.61779,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4587989,6.3408604,57.16,56.15,57.76,48.98,10,1,1,0,0,5,5,2,1,377,466726.06,166828.5,117081.36,0,0,0,1732.5222 +7245,8829,15743,15742,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,47,-1,-26.326351,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3262849,0,57.76,48.98,57.16,56.15,8.333333333333334,1,1,0,0,6,5,2,1,377,466726.06,166828.5,117081.36,0,0,0,1732.5222 +7246,8830,15744,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,9.1534624,9.0874195,0,0,0,-1076.5845,0,3,3,2021,10,0,40,40,1,0,0,22.559727,22.559727,.05,.05,0,0,0,0,0,0,0,0,0,2.531476,0,56.47,59.4,-9,-9,3.333333333333333,1,1,0,0,9,4,5,1,951,1355666.1,1425468.5,0,0,0,0,3484.1548 +7246,8831,15745,-9,-9,15744,1,0,24,0,0,0,2,2,-9,0,3,8.1802044,8.1814547,0,0,0,-1109.7655,0,2,2,2021,9,0,41,47,1,0,1,10.149283,10.149283,.05,.05,0,0,0,0,0,0,0,0,0,1.7446725,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,1983,-139544.8,70655.594,0,0,0,0,1489.6494 +7247,8832,15746,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.6573,0,3,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,29.12,54.23,-9,-9,1.666666666666667,1,1,0,0,9,9,1,1,398,-8851.0322,0,0,0,0,0,0 +7247,8833,15747,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,5.1666412,5.0517688,0,0,-1063.9153,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.4598832,3.6677725,14.519073,0,1,1,0,0,5.2388096,47.96,32.67,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,173,576694.06,-18296.789,508367.84,0,0,0,1486.5131 +7248,8834,15748,-9,15749,15750,1,0,43,0,0,0,1,1,-9,0,3,8.5102005,8.651866,0,0,0,-1029.0955,-9,2,3,2021,10,0,53,0,1,0,0,12.483909,12.483909,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,1,10,5,0,452,266626.31,199075.09,268935.88,68304.961,0,5513.8618,1919.7794 +7248,8835,15749,15750,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,8.0561666,7.7719984,0,9,-8,-96.236778,0,2,1,2021,6,0,15,25,1,0,0,21.962158,21.962158,0,0,0,1,0,0,0,0,1,1,0,6.5676708,0,67.51000000000001,29.59,44.61,59.06,8.333333333333334,1,1,0,0,11,10,5,0,140,2326917.5,1160190.3,816075.25,0,0,0,4936.5903 +7248,8835,15750,15749,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,8.6100225,8.3644972,0,9,8,-174.50414,0,3,2,2021,18,6,22,20,1,6,0,25.269709,25.269709,0,0,0,1,0,7.2142806,0,0,1,1,0,0,0,44.61,59.06,67.51000000000001,29.59,0,1,1,0,0,11,10,5,0,140,2326917.5,1160190.3,816075.25,0,0,0,4936.5903 +7249,8836,15751,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.8930798,7.7426538,0,0,0,-839.45349,0,2,3,2021,11,1,80,40,1,1,0,4.9348011,4.9348011,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.11,59.76,-9,-9,6.666666666666667,1,1,0,0,9,12,4,1,111,225834.53,29917.248,0,0,11087.457,0,1315.6471 +7250,8837,15752,15754,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,24,-3,0,0,3,3,2021,18,7,0,22,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,46.63,53,55,5,4,5,0,1,7,8,1,0,1842,96030.281,0,0,0,0,0,1384.6373 +7250,8837,15753,-9,15752,15754,1,0,16,0,1,1,3,0,0,0,4,0,0,0,0,0,-952.45874,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,5,0,0,0,8,1,0,1842,96030.281,0,0,0,0,0,1384.6373 +7250,8837,15754,15752,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,0,0,0,6,3,0,-9,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,31.1,46.63,8,1,1,1,0,0,8,1,0,1842,96030.281,0,0,0,0,0,1384.6373 +7250,8838,15755,-9,15752,15754,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1011.0635,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,5,0,0,0,8,1,0,817,-13222.384,0,0,0,0,0,0 +7251,8839,15756,15757,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1621284,8.1325312,0,29,-8,-27.521481,0,3,3,2021,14,3,48,12,1,3,0,7.0015168,7.0015168,0,0,0,0,0,0,0,7,1,1,0,0,0,47.86,24.17,51,48,3.333333333333333,1,1,0,0,10,4,4,0,185,981550.38,643091.63,215526.44,0,0,1393.8777,3576.5315 +7251,8839,15757,15756,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,8.1077566,8.0832319,5.3121138,29,8,-14.835532,0,3,3,2021,7,0,48,48,1,0,0,7.5902915,7.5902915,.05,.05,0,0,0,0,0,0,1,1,0,0,5.5872774,51,48,47.86,24.17,6.666666666666667,1,1,0,0,11,4,4,0,185,981550.38,643091.63,215526.44,0,0,1393.8777,3576.5315 +7252,8840,15758,-9,15759,15760,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.0505,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,816.33331,625049.56,233526.86,584577.44,136289.3,47441.602,0,4607.915 +7252,8840,15759,15760,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.9122143,8.9420185,0,17,0,-129.88893,0,2,2,2021,9,0,47,52,1,0,0,17.258751,17.258751,0,0,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,42.17,56.08,6.666666666666667,3,4,0,0,10,8,5,1,816.33331,625049.56,233526.86,584577.44,136289.3,47441.602,0,4607.915 +7252,8840,15760,15759,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.3599243,8.5643005,0,17,9,53.534973,0,2,1,2021,6,0,48,48,1,0,0,11.352772,11.352772,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.17,56.08,46.06,60.24,10,3,4,0,0,10,8,5,1,816.33331,625049.56,233526.86,584577.44,136289.3,47441.602,0,4607.915 +7253,8841,15761,15763,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.6825767,7.6231418,0,19,-5,-11.213974,0,2,3,2021,10,2,25,15,1,2,0,10.973288,10.973288,.05,.05,0,0,0,0,0,0,1,1,0,3.0444643,0,49.46,56.91,62.82,46.71,8.333333333333334,1,1,0,0,9,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7253,8841,15762,-9,15761,15763,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1052.1592,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,0,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7253,8841,15763,15761,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.5743876,8.460144,0,19,5,58.317245,0,2,2,2021,7,0,56,55,1,0,0,8.0971642,8.0971642,.05,.05,0,0,0,0,0,0,1,1,0,2.0859582,0,62.82,46.71,49.46,56.91,6.666666666666667,1,1,0,0,10,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7253,8841,15764,-9,15761,15763,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.8586,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,587,209573.23,61069.129,210959.92,164864.28,0,196.55725,2676.9922 +7254,8842,15765,15766,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,8.4613991,8.4493637,0,38,1,-58.291454,0,2,2,2021,4,0,37,40,1,0,0,11.579468,11.579468,0,0,0,0,0,0,0,0,0,0,0,1.7416867,0,58.99,34.1,43.34,60.31,10,1,1,0,0,11,7,5,1,762,662196.5,269904.31,236403.31,0,0,0,3303.0576 +7254,8842,15766,15765,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.5948572,8.7743597,0,38,-1,-24.239029,0,3,1,2021,17,5,50,47,1,5,0,12.273731,12.273731,0,0,0,0,0,0,0,0,0,0,0,1.7538832,0,43.34,60.31,58.99,34.1,8.333333333333334,4,2,0,0,11,7,5,1,762,662196.5,269904.31,236403.31,0,0,0,3303.0576 +7255,8843,15767,15768,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,14,-5,116.33354,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.56,34.97,53.41,32.47,8.333333333333334,3,4,0,0,2,6,2,0,477,178839.25,0,0,0,-895.01941,0,1034.3938 +7255,8843,15768,15767,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,7.0708323,7.0563707,0,13,5,-14.539434,0,2,-9,2021,6,0,17,20,1,0,0,7.3457332,7.3457332,0,0,0,0,0,0,0,2,1,1,0,3.2896397,0,53.41,32.47,39.56,34.97,10,4,2,0,0,10,6,2,0,477,178839.25,0,0,0,-895.01941,0,1034.3938 +7256,8844,15769,15770,-9,-9,1,0,70,0,1,0,2,2,-9,0,3,0,0,0,53,-4,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,52.05,48.08,7,2,3,0,1,0,8,1,1,865,4249247,2311477.5,1206343.1,0,0,0,1433.0925 +7256,8844,15770,15769,-9,-9,1,1,74,0,1,0,1,1,-9,0,3,0,0,0,53,4,0,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,5.9266486,0,0,1,1,0,0,0,52.05,48.08,51,46,1.666666666666667,2,3,0,0,0,8,1,1,865,4249247,2311477.5,1206343.1,0,0,0,1433.0925 +7256,8845,15771,-9,15774,15772,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1027.338,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7256,8845,15772,15774,15769,15770,1,1,48,0,1,0,1,1,-9,0,3,8.5145521,8.3267822,0,6,4,-10.198284,0,3,2,2021,27,12,45,45,1,12,0,16.222403,16.222403,.05,.05,0,0,0,0,0,7,1,1,0,2.8410065,0,28.02,61.65,50,54,6.666666666666667,2,3,0,1,8,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7256,8845,15773,-9,15774,15772,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-826.32892,-9,1,1,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.13,58.64,-9,-9,3.333333333333333,2,3,0,0,1,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7256,8845,15774,15772,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.4316387,8.3936338,0,6,-4,25.900702,0,-9,-9,2021,10,0,60,39,1,1,0,7.3160815,7.3160815,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,54,28.02,61.65,8,2,3,0,0,1,8,5,1,655,121059.76,163610.5,0,0,0,0,3287.9243 +7257,8846,15775,15776,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,7,-3,.63631546,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.2636504,0,30.75,36.7,40.6,53.06,5,1,1,0,0,0,1,2,1,980,-65143.039,113469.06,87747.57,55747.074,2957.0911,262.29132,2154.7507 +7257,8846,15776,15775,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,6.8841367,6.7508979,7,3,.69355929,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.8091273,40.6,53.06,30.75,36.7,10,1,1,0,0,0,1,2,1,980,-65143.039,113469.06,87747.57,55747.074,2957.0911,262.29132,2154.7507 +7258,8847,15777,15778,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.8664083,6.7869272,6,9,-104.36084,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4749289,60.03,45.37,56.94,49.53,8.333333333333334,1,1,0,0,0,9,4,1,333.5,1098863.8,498668.78,540607.81,0,0,0,2708.8193 +7258,8847,15778,15777,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.5374403,8.4285574,0,6,0,-8.1813841,0,3,3,2021,6,0,38,38,1,0,0,13.50814,13.50814,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,49.53,60.03,45.37,8.333333333333334,1,1,0,0,8,9,4,1,333.5,1098863.8,498668.78,540607.81,0,0,0,2708.8193 +7259,8848,15779,-9,15780,15781,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.0353,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,1,948,1050544.5,624780.94,276755.09,67606.242,0,1628.5247,2949.5146 +7259,8848,15780,15781,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,6.7509952,6.7663517,0,6,-3,83.1698,0,3,-9,2021,29,11,8,14,1,11,0,12.418434,12.418434,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.24,65.53,46.28,62.6,5,1,1,0,0,7,11,4,1,948,1050544.5,624780.94,276755.09,67606.242,0,1628.5247,2949.5146 +7259,8848,15781,15780,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,8.6080074,8.5297117,0,6,3,-5.7367058,0,-9,-9,2021,12,1,47,40,1,1,0,13.164157,13.164157,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,33.24,65.53,8.333333333333334,1,1,0,0,7,11,4,1,948,1050544.5,624780.94,276755.09,67606.242,0,1628.5247,2949.5146 +7260,8849,15782,-9,15783,15784,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.4741,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7260,8849,15783,15784,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.1812286,8.0266609,0,18,0,44.565449,0,1,1,2021,6,0,24,21,1,0,0,17.558109,17.558109,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.67,39.58,51.84,46.5,10,1,1,0,0,11,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7260,8849,15784,15783,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,9.7027121,9.5785637,0,18,0,87.442978,0,2,2,2021,17,7,57,52,1,7,0,34.532368,34.532368,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.84,46.5,61.67,39.58,6.666666666666667,1,1,0,0,9,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7260,8849,15785,-9,15783,15784,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.72284,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,500.25,4213687.5,427041.78,1114435.3,199292.56,0,0,6105.7334 +7261,8850,15786,-9,15787,15789,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.51611,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7261,8850,15787,15789,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,0,0,0,12,2,-.63979405,1,2,-9,2021,11,0,0,24,2,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.0984492,0,42.87,50.41,36.13,56.64,6.666666666666667,1,1,0,0,13,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7261,8850,15788,-9,15787,15789,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.33502,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7261,8850,15789,15787,-9,-9,1,1,35,0,2,0,1,1,-9,0,2,8.8541946,8.7839289,2.8588314,12,-2,42.588413,0,3,2,2021,16,5,49,85,1,5,0,14.981858,14.981858,.05,.05,0,0,0,0,0,0,1,1,0,3.7573981,0,36.13,56.64,42.87,50.41,5,1,1,0,0,14,5,4,1,1262.75,363101.03,224366.34,217951,161560.25,0,4339.2725,3168.644 +7262,8851,15790,15791,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.4175744,7.5301046,0,6,5,-53.169792,0,3,3,2021,1,0,35,50,1,0,0,8.0929413,8.0929413,0,0,.05,0,0,0,0,0,0,0,0,0,0,60.29,52.11,32.84,46.5,8.333333333333334,1,1,0,0,7,1,5,1,490,772204.44,221580.39,269670.59,78031.422,0,0,4062.0244 +7262,8851,15791,15790,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.9791813,9.244523,0,6,-5,71.990417,0,3,2,2021,17,7,46,47,1,7,0,20.35273,20.35273,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,46.5,60.29,52.11,8.333333333333334,1,1,0,0,7,1,5,1,490,772204.44,221580.39,269670.59,78031.422,0,0,4062.0244 +7262,8852,15792,-9,15791,15790,1,0,20,0,0,0,2,2,1,0,4,7.6525645,7.6528497,0,0,0,-860.67865,-9,2,2,2021,11,0,40,0,1,2,1,7.0752316,7.0752316,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,1,3,1,471,-105662.97,0,0,0,0,0,1549.6779 +7263,8853,15793,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.9859724,8.1455822,0,0,0,-1010.4312,0,-9,-9,2021,11,0,38,37,1,0,0,12.860203,12.860203,0,0,0,0,0,0,0,0,0,0,0,0,0,37.16,33.75,-9,-9,6.666666666666667,1,1,0,0,13,2,4,0,378,170104.69,-8545.5342,0,0,0,0,2469.6475 +7264,8854,15794,15795,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.1743231,9.2786074,0,9,0,-60.828381,0,-9,-9,2021,7,0,55,55,1,0,0,21.624094,21.624094,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,39.73,58.55,8.333333333333334,1,1,0,0,10,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7264,8854,15795,15794,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.2851343,8.2271452,0,9,0,39.830162,0,2,2,2021,12,1,35,26,1,1,0,13.187223,13.187223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.73,58.55,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7264,8854,15796,-9,15795,15794,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.5896,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7264,8854,15797,-9,15795,15794,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1121.8795,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,516.5,734292.13,395993.69,542296.69,275504.91,0,4851.7935,4933.2183 +7265,8855,15798,-9,15799,15800,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1010.8996,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7265,8855,15799,15800,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.2038345,8.4542799,0,8,-2,-23.870193,0,-9,-9,2021,9,0,49,47,1,0,0,8.2561283,8.2561283,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.77,52.22,8.333333333333334,1,1,0,0,8,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7265,8855,15800,15799,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.3476171,8.1498451,0,8,2,91.538048,0,-9,3,2021,10,0,39,37,1,0,0,12.476101,12.476101,.05,.05,0,0,0,0,0,14.5,1,1,0,6.9720759,0,56.77,52.22,58.15,52.91,6.666666666666667,1,1,0,0,9,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7265,8855,15801,-9,15799,15800,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.71191,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,787.75,338132.63,86930.648,229493.81,0,0,3365.437,3596.2656 +7266,8856,15802,-9,-9,-9,1,0,45,0,1,0,3,3,-9,1,4,0,0,0,0,0,-916.4353,0,3,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,42.83,54.56,-9,-9,5,1,1,0,0,2,10,1,0,604.5,-1282.6904,0,0,0,0,0,1398.323 +7266,8856,15803,-9,15802,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1069.0686,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,59,-9,-9,7,1,1,-9,0,0,10,1,0,604.5,-1282.6904,0,0,0,0,0,1398.323 +7267,8857,15804,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.6636105,6.8720632,0,0,-1095.4733,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.620152,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,880,353231.13,156255.83,174579.72,0,0,0,471.091 +7268,8858,15805,15809,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,8.4814034,8.664979,0,11,0,78.24308,0,-9,-9,2021,12,0,44,48,1,0,0,17.914694,17.914694,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.48,60.41,42.85,62.85,8.333333333333334,1,1,0,0,12,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15806,-9,15809,15805,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.02954,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15807,-9,15809,15805,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-834.36023,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15808,-9,15809,15805,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.03448,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7268,8858,15809,15805,-9,-9,1,0,36,1,3,0,2,2,-9,0,5,8.1425457,8.5963182,0,11,0,51.54977,0,2,2,2021,18,7,24,24,1,7,0,23.812811,23.812811,0,0,0,0,0,0,0,0,1,1,0,7.3653545,0,42.85,62.85,35.48,60.41,8.333333333333334,1,1,0,0,12,13,4,1,1143.4,211193.81,52710.848,84720.242,31238.32,2933.7222,0,4754.1611 +7269,8859,15810,15811,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.9717627,5.0817342,49,-5,125.40598,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1839838,57.16,56.15,58.08,40.76,8.333333333333334,1,1,0,0,3,7,4,1,596.5,1660928.6,1325863,0,0,0,0,3396.6885 +7269,8859,15811,15810,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6559811,8.1764545,49,5,-64.702957,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4710631,8.4736567,58.08,40.76,57.16,56.15,8.333333333333334,1,1,0,0,0,7,4,1,596.5,1660928.6,1325863,0,0,0,0,3396.6885 +7270,8860,15812,15813,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.4944477,8.7477665,0,31,0,-23.188839,0,3,2,2021,8,0,65,55,1,0,0,9.138773,9.138773,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.12,57.28,57.16,56.15,8.333333333333334,1,1,0,0,15,5,5,1,614.5,1183483.8,761819.63,255457.44,0,0,0,3575.4282 +7270,8860,15813,15812,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.5641737,8.2837439,0,13,0,93.268066,0,-9,-9,2021,6,0,54,64,1,0,0,9.2944956,9.2944956,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.12,57.28,8.333333333333334,1,1,0,0,15,5,5,1,614.5,1183483.8,761819.63,255457.44,0,0,0,3575.4282 +7270,8861,15814,-9,15812,15813,1,0,29,0,0,0,1,1,-9,0,4,7.9875536,8.1832485,0,0,0,-1071.9634,0,1,2,2021,12,0,40,38,1,0,1,9.4168444,9.4168444,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,9,5,4,1,1055,-219596.95,-157859.48,0,0,0,0,1262.1727 +7270,8862,15815,-9,15812,15813,1,0,27,0,0,0,1,1,-9,0,4,8.3965511,8.1486597,0,0,0,-957.8728,0,1,2,2021,13,1,50,50,1,1,1,11.557386,11.557386,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.62,60.42,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,52,118106.09,-120578.52,0,0,-301.34213,0,2302.0618 +7271,8863,15816,15817,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,8.0142326,7.655478,52,-5,109.92408,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6167483,7.8443108,51.83,57.2,54.43,43.95,8.333333333333334,1,1,0,0,0,2,5,1,389.5,2910643.5,799574.38,706402.75,0,0,0,5748.5654 +7271,8863,15817,15816,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.0473814,8.6876249,52,5,24.573271,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3108692,8.3597097,54.43,43.95,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,389.5,2910643.5,799574.38,706402.75,0,0,0,5748.5654 +7272,8864,15818,15820,-9,-9,1,1,32,1,1,0,1,1,-9,0,2,8.6782207,8.3129034,0,1,3,-64.245003,-9,-9,-9,2021,20,8,37,0,1,8,0,13.705322,13.705322,.05,.05,0,0,0,0,0,0,1,1,0,6.7568483,0,31.09,45.59,52,54.51,5,1,1,0,0,7,4,5,1,1123,365220.25,255096.81,124406.28,66618.703,0,3048.9836,5439.3184 +7272,8864,15819,-9,15820,15818,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-993.5639,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,1123,365220.25,255096.81,124406.28,66618.703,0,3048.9836,5439.3184 +7272,8864,15820,15818,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,8.8899908,8.9411573,0,1,-3,35.687325,0,2,2,2021,10,0,41,44,1,0,0,24.066612,24.066612,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,31.09,45.59,6.666666666666667,1,1,0,0,12,4,5,1,1123,365220.25,255096.81,124406.28,66618.703,0,3048.9836,5439.3184 +7273,8865,15821,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7532272,8.5635672,0,0,0,-1012.1261,0,2,-9,2021,12,0,34,35,1,0,0,22.397673,22.397673,0,0,0,0,0,0,0,0,1,1,0,7.4194493,0,38.69,61.75,-9,-9,1.666666666666667,1,1,0,0,12,6,5,1,2306,117485.45,0,0,0,0,0,3630.3472 +7274,8866,15822,15823,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.9174385,9.0533915,0,11,0,31.621084,0,-9,-9,2021,6,0,40,40,1,0,0,27.202871,27.202871,.05,.05,0,0,0,0,0,0,0,0,0,6.730248,0,57.33,53.46,62.39,56.71,8.333333333333334,1,1,0,0,13,9,5,1,690.5,2033042.6,1363788.8,400173.78,0,0,0,4672.4063 +7274,8866,15823,15822,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,7.6394076,7.6985173,6.3261852,21,0,30.255091,0,1,2,2021,2,0,20,16,1,0,0,8.2812319,8.2812319,0,0,0,0,0,0,0,0,0,0,0,7.3326774,6.2885218,62.39,56.71,57.33,53.46,10,1,1,0,0,13,9,5,1,690.5,2033042.6,1363788.8,400173.78,0,0,0,4672.4063 +7275,8867,15824,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,8.1808405,8.2559729,0,0,0,-909.92957,0,3,2,2021,15,3,24,22,1,3,0,18.009645,18.009645,.05,.05,0,0,0,0,0,2,1,1,0,5.7991171,0,36.58,41.5,-9,-9,6.666666666666667,2,3,0,0,9,8,4,1,235,397409.94,18284.941,397376.28,147850.91,0,0,2937.3398 +7275,8867,15825,-9,15824,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.714,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,235,397409.94,18284.941,397376.28,147850.91,0,0,2937.3398 +7276,8868,15826,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.3029919,5.7988691,0,0,-1061.1517,0,3,3,2021,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2266486,6.1341758,60.29,52.11,-9,-9,10,1,1,0,0,12,5,2,1,533,103271.24,119472.48,63723.211,0,0,0,454.65286 +7277,8869,15827,15828,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.9574051,8.0884752,48,7,-113.0382,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9918971,54.9,44,55.19,34.27,6.666666666666667,1,1,0,0,0,7,3,1,428.5,1284861.5,844827.88,431697.13,0,0,0,3761.8057 +7277,8869,15828,15827,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,5.8147082,5.8716826,48,-7,-48.987183,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,.54966116,0,0,1,1,0,7.8656068,5.7774572,55.19,34.27,54.9,44,6.666666666666667,1,1,0,0,0,7,3,1,428.5,1284861.5,844827.88,431697.13,0,0,0,3761.8057 +7278,8870,15829,15830,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,8.2766352,8.4372368,0,27,-10,98.842743,0,2,2,2021,10,0,23,23,1,0,0,23.852865,23.852865,.05,.05,0,0,0,0,0,0,0,0,0,2.8881626,0,57.16,56.15,40.96,61.14,8.333333333333334,1,1,0,0,14,7,5,1,370.5,2974355.5,1933511.9,776994.25,0,0,328.66577,5143.0195 +7278,8870,15830,15829,-9,-9,1,1,60,0,1,0,1,1,-9,0,4,9.4078531,9.2258596,0,27,10,41.893688,0,2,1,2021,11,0,42,45,1,0,0,33.773289,33.773289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.96,61.14,57.16,56.15,8.333333333333334,1,1,0,0,14,7,5,1,370.5,2974355.5,1933511.9,776994.25,0,0,328.66577,5143.0195 +7278,8871,15831,-9,15829,15830,1,0,25,0,1,0,1,1,-9,0,5,8.4339924,8.5758266,0,0,0,-1040.5598,0,2,1,2021,5,0,40,40,1,0,1,14.721796,14.721796,.05,.05,0,0,0,0,0,0,0,0,0,3.9171164,0,57.06,57.76,-9,-9,10,1,1,0,0,6,7,5,1,1119,-70962.867,-67042.32,0,0,38705.555,0,1663.5851 +7278,8872,15832,-9,15829,15830,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-930.59619,1,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3128953,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,718,174825.45,0,0,0,0,0,198.9946 +7279,8873,15833,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,7.6826458,7.9872255,0,0,0,-1046.6738,-9,-9,3,2021,15,3,37,0,1,3,0,8.4749823,8.4749823,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.8,51.52,-9,-9,5,1,1,0,0,11,4,4,1,778,91832.016,43050.5,0,0,0,0,1031.3507 +7280,8874,15834,-9,-9,-9,1,0,18,0,2,1,2,0,0,0,5,0,0,0,0,0,-960.35223,-9,2,2,2021,3,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,27,1,1,0,.57971919,0,56.47,59.4,-9,-9,10,1,1,0,0,0,13,1,1,485,55017.246,0,0,0,0,0,-99.372711 +7281,8875,15835,-9,15837,15838,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.14453,-9,1,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,0,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8875,15836,-9,15837,15838,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.52246,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8875,15837,15838,-9,-9,1,0,46,0,2,0,1,1,-9,0,2,5.1449852,4.8671498,0,27,1,74.192413,0,1,2,2021,5,0,35,13,1,0,0,.56836778,.56836778,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.45,35.63,41.76,59.08,8.333333333333334,1,1,0,0,6,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8875,15838,15837,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.7282829,9.7876577,0,27,-1,6.5154128,0,2,1,2021,14,4,45,45,1,4,0,44.159988,44.159988,.05,.05,0,0,0,0,0,0,0,0,0,.43724149,0,41.76,59.08,61.45,35.63,6.666666666666667,1,1,0,0,10,2,5,1,688,899590.06,702160.38,243462.27,106991.73,502.84979,9480.0371,5281.2769 +7281,8876,15839,-9,15837,15838,1,0,21,0,2,0,1,1,-9,0,4,7.3608789,7.4501357,0,0,0,-1003.5944,-9,1,1,2021,10,1,40,0,1,1,1,4.1781592,4.1781592,0,0,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,-9,-9,8.333333333333334,1,1,0,0,1,2,3,1,135,-385045.16,0,0,0,0,1657.1093,1145.1617 +7281,8877,15840,-9,15837,15838,1,0,18,0,2,1,2,0,0,0,3,0,5.9029551,5.5712414,0,0,-841.31989,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4134488,0,34.77,62.31,-9,-9,5,1,1,0,0,1,2,2,1,862,144766.69,74068.563,0,0,2696.9932,-814.80676,.72835892 +7282,8878,15841,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,7.714818,7.258647,0,0,-1087.751,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8399336,7.4292049,63.24,42.39,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,380,249156.67,163088.86,199160.86,0,0,0,1909.4736 +7283,8879,15842,-9,-9,-9,1,0,31,0,0,0,2,2,-9,1,4,7.239058,7.3009605,0,0,0,-1012.6747,0,-9,-9,2021,16,4,8,0,1,4,0,23.51088,23.51088,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.81,57.49,-9,-9,10,1,1,0,0,1,11,3,0,369,23005.375,-137300.63,0,0,0,0,1105.0101 +7284,8880,15843,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,1,0,0,0,0,0,-995.81384,0,2,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.32,23.88,-9,-9,0,1,1,1,1,0,11,1,1,964,-129617.69,3851.6257,0,0,5436.8203,0,-419.11841 +7285,8881,15844,15846,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.2824116,8.5670881,0,11,0,16.137403,0,2,2,2021,10,0,30,34,1,0,0,14.153106,14.153106,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,55.19,54.26,46.16,58.62,8.333333333333334,1,1,0,0,9,12,3,1,515.33331,311769.5,118887.61,281964.16,45296.102,0,0,1786 +7285,8881,15845,-9,15844,15846,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.50714,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,1,515.33331,311769.5,118887.61,281964.16,45296.102,0,0,1786 +7285,8881,15846,15844,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,1.1132623,.79241794,0,11,0,19.714275,0,3,-9,2021,10,0,40,50,1,0,0,.006319067,.006319067,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,46.16,58.62,55.19,54.26,8.333333333333334,1,1,0,0,7,12,3,1,515.33331,311769.5,118887.61,281964.16,45296.102,0,0,1786 +7286,8882,15847,-9,15848,15851,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.5516,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.42641258,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15848,15851,-9,-9,1,0,27,1,3,0,2,2,-9,0,1,0,2.8078034,2.9926789,3,5,-68.260292,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4416599,0,53.61,24.23,58.76,52.91,8.333333333333334,1,1,0,0,1,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15849,-9,15848,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-912.59613,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15850,-9,15848,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1155.4752,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7286,8882,15851,15848,-9,-9,1,1,22,1,3,0,2,2,-9,0,5,0,0,0,3,-5,18.011671,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.76,52.91,53.61,24.23,8.333333333333334,1,1,1,0,4,2,2,0,763,37977.324,0,0,0,0,0,1386.4722 +7287,8883,15852,15853,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6300354,8.8051834,0,32,1,-52.373531,0,2,3,2021,7,0,42,46,1,0,0,15.847242,15.847242,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,38.38,56.81,8.333333333333334,1,1,0,0,10,6,5,1,612,406359.06,304230.53,334154.63,0,0,860.75757,3657.1138 +7287,8883,15853,15852,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8612719,7.8691258,0,32,-1,.73806041,0,3,-9,2021,12,2,39,40,1,2,0,9.0514002,9.0514002,.05,.05,0,0,0,0,0,0,0,0,0,7.3370509,0,38.38,56.81,60.12,54.8,6.666666666666667,1,1,0,0,10,6,5,1,612,406359.06,304230.53,334154.63,0,0,860.75757,3657.1138 +7287,8884,15854,-9,15853,15852,1,1,28,0,0,0,2,2,-9,0,3,8.4481468,8.3005447,0,0,0,-941.85901,-9,2,2,2021,10,0,40,0,1,0,1,17.412682,17.412682,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.57,53.14,-9,-9,8.333333333333334,1,1,0,0,5,6,5,1,906,102667.26,43778.859,0,0,0,0,2160.1201 +7288,8885,15855,15856,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.6330442,8.8646736,0,3,4,-81.442184,0,2,2,2021,6,0,33,48,1,0,0,19.582201,19.582201,.05,.05,0,0,0,0,0,0,0,0,0,2.1421268,0,57.16,56.15,52.32,57.18,10,1,1,0,0,9,5,5,1,875.5,734060.56,504019.44,143698.77,0,4661.334,0,5153.0186 +7288,8885,15856,15855,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,8.8807154,9.0906849,0,3,-4,95.785591,0,-9,-9,2021,6,0,40,40,1,0,0,24.171804,24.171804,.05,.05,0,0,0,0,0,14.5,0,0,0,7.8072762,0,52.32,57.18,57.16,56.15,8.333333333333334,1,1,0,0,1,5,5,1,875.5,734060.56,504019.44,143698.77,0,4661.334,0,5153.0186 +7289,8886,15857,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,6.0149183,6.4182429,0,0,-941.02338,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8039044,6.5288758,60.12,54.8,-9,-9,10,1,1,0,0,0,11,2,1,3288,384901.84,170535.09,38741.996,0,0,0,1476.4841 +7290,8887,15858,-9,15859,15860,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1080.9326,-9,1,2,2021,25,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.83,60.29,-9,-9,3.333333333333333,1,1,0,0,0,13,4,1,561.33331,1179620.1,776965.06,287273.41,0,0,0,3962.8677 +7290,8887,15859,15860,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.2191734,8.015871,0,7,-13,-39.013268,0,2,2,2021,16,4,36,36,1,4,0,12.048308,12.048308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,58.91,35.36,5,1,1,0,0,14,13,4,1,561.33331,1179620.1,776965.06,287273.41,0,0,0,3962.8677 +7290,8887,15860,15859,-9,-9,1,1,59,0,1,0,2,2,-9,0,2,0,8.0860853,8.3000469,7,13,-84.589287,-9,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.7821226,8.042758,58.91,35.36,40.48,60.05,8.333333333333334,1,1,0,0,13,13,4,1,561.33331,1179620.1,776965.06,287273.41,0,0,0,3962.8677 +7290,8888,15861,-9,15859,15860,1,1,23,0,1,0,2,2,-9,0,4,7.7836666,8.0072651,0,0,0,-955.62,0,1,2,2021,7,1,36,37,1,1,1,8.8800182,8.8800182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,330,66531.203,13424.514,0,0,0,0,835.87103 +7290,8889,15862,-9,15859,15860,1,0,20,0,1,1,2,0,-9,0,5,0,0,0,0,0,-990.17413,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7512779,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,1,1,390,-76131.766,0,0,0,0,0,585.55231 +7291,8890,15863,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,6.6244478,6.6992421,0,0,0,-1037.4906,0,3,3,2021,7,1,35,35,1,1,0,2.3146753,2.3146753,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,25.97,-9,-9,5,3,4,0,0,10,8,2,1,918,102114.57,0,0,0,0,0,140.39531 +7292,8891,15864,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.1787863,7.6952968,0,0,-1053.9427,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9847777,7.2972522,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1529,479900.78,73047.422,335526.66,0,0,0,1764.1718 +7293,8892,15865,15867,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.3018131,8.3591585,0,1,-2,-5.1340585,-9,-9,-9,2021,10,0,40,0,1,1,0,12.117487,12.117487,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,43.35,50.18,7,4,1,0,0,1,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7293,8892,15866,-9,15867,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.4138,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7293,8892,15867,15865,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5784569,7.3897338,0,1,2,35.700962,-9,-9,-9,2021,11,1,20,0,1,1,0,7.4482737,7.4482737,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,50.18,51,56,8.333333333333334,1,1,0,0,2,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7293,8892,15868,-9,15867,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1074.5229,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,10,1,1,0,0,0,12,3,0,1016,483860.16,392322.25,203970.48,191092.09,14421.715,0,2517.5967 +7294,8893,15869,15870,-9,-9,1,1,40,0,3,0,1,1,-9,0,4,9.0237637,9.0293274,0,16,1,-39.69249,0,2,1,2021,11,1,55,55,1,1,0,19.977692,19.977692,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.76,45.08,47.9,52.43,10,2,3,0,0,12,6,4,1,927,448141.44,319274.09,131328.16,48821.105,0,516.73126,3435.0176 +7294,8893,15870,15869,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,0,0,0,16,-1,12.0458,0,2,2,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.9,52.43,42.76,45.08,10,2,3,1,0,0,6,4,1,927,448141.44,319274.09,131328.16,48821.105,0,516.73126,3435.0176 +7294,8893,15871,-9,15870,15869,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1099.5585,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,6,4,1,927,448141.44,319274.09,131328.16,48821.105,0,516.73126,3435.0176 +7295,8894,15872,-9,15876,15873,1,1,17,0,2,1,3,0,0,0,5,0,0,0,0,0,-1157.5081,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.88527173,0,57.6,56.16,-9,-9,5,1,1,0,0,0,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15873,15876,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.6138935,9.7645283,0,22,3,61.014153,0,1,1,2021,14,4,50,80,1,4,0,47.86256,47.86256,.05,.05,0,0,0,0,0,0,0,0,0,6.0626822,0,45.56,60.26,51.67,60.18,6.666666666666667,1,1,0,0,11,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15874,-9,15876,15873,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.4545,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15875,-9,15876,15873,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-996.11292,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8894,15876,15873,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.8147078,9.0637646,0,22,-3,42.795734,0,2,2,2021,16,6,26,36,1,6,0,32.325722,32.325722,0,0,0,0,0,0,0,0,0,0,0,7.3060918,0,51.67,60.18,45.56,60.26,8.333333333333334,1,1,0,0,8,9,5,1,992.59998,313215.34,107762.41,0,0,3015.4011,0,15219.404 +7295,8895,15877,-9,15876,15873,1,0,19,0,2,1,2,0,0,0,3,0,4.5656557,4.5677571,0,0,-1045.6719,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0620546,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,363,-72340.813,0,0,0,0,0,-796.67017 +7296,8896,15878,-9,15883,15881,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-934.94763,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15879,-9,15883,15881,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-919.36914,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15880,-9,15883,15881,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.96674,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15881,15883,-9,-9,1,1,36,0,4,0,1,1,-9,0,4,9.1098728,8.8417625,0,11,3,16.538668,0,3,3,2021,10,0,35,48,1,1,0,30.407015,30.407015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46.71,48.99,7,2,3,0,0,7,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15882,-9,15883,15881,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-830.71301,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7296,8896,15883,15881,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,8.0072165,7.9867949,0,11,-3,-97.091423,0,2,3,2021,6,0,34,0,1,0,0,7.567246,7.567246,0,0,0,0,0,0,0,0,1,1,0,.57836074,0,46.71,48.99,51,56,1.666666666666667,2,3,0,0,6,8,4,0,428.16666,333146.81,62204.457,422875,265442.16,0,0,3959.9331 +7297,8897,15884,15885,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.2354727,8.4713898,0,10,4,77.872513,0,2,2,2021,9,0,37,37,1,0,0,12.196229,12.196229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,43.08,57.18,8.333333333333334,1,1,0,0,11,11,5,1,441.5,1337340.3,1279383.6,304586.13,43390.375,11050.032,9516.2813,4139.7676 +7297,8897,15885,15884,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.7873974,8.7010212,0,10,-4,83.576973,0,2,2,2021,12,0,40,35,1,0,0,17.338936,17.338936,0,0,0,0,0,0,0,0,0,0,0,0,0,43.08,57.18,54.79,55.86,6.666666666666667,1,1,0,0,9,11,5,1,441.5,1337340.3,1279383.6,304586.13,43390.375,11050.032,9516.2813,4139.7676 +7297,8898,15886,-9,15885,15884,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1122.4459,-9,1,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,1406,0,0,0,0,0,0,414.62177 +7298,8899,15887,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.8466678,6.7150278,0,0,-920.94714,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3465755,6.9253788,55.82,44.62,-9,-9,10,1,1,0,0,0,6,2,1,569,350128.38,92329.523,223620.34,0,0,0,2221.1333 +7299,8900,15888,-9,15891,15890,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.5628,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7299,8900,15889,-9,15891,15890,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-945.43677,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7299,8900,15890,15891,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,9.0797796,9.1699009,0,6,0,107.37714,0,-9,-9,2021,6,0,40,45,1,0,0,30.626122,30.626122,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,63.58,39.68,8.333333333333334,2,3,0,0,11,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7299,8900,15891,15890,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,7.9201136,7.9962707,0,6,0,.77788401,0,-9,-9,2021,6,0,40,42,1,0,0,7.0159836,7.0159836,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.58,39.68,60.12,54.8,8.333333333333334,2,3,0,0,4,8,5,0,1405,308445.19,178748.19,269516.59,195598.98,14909.003,11714.505,4569.6611 +7300,8901,15892,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.8711286,7.5916762,37,0,40.408638,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3332908,7.6697869,50.09,49.8,51,48,10,1,1,0,0,9,7,3,1,491,174362.2,211902.98,109116.1,0,0,0,2196.2976 +7301,8902,15893,-9,-9,-9,1,0,68,0,0,0,3,3,-9,1,3,5.7912855,6.0547185,4.8776522,0,0,-926.86157,0,3,3,2021,6,0,6,6,1,0,0,7.1436501,7.1436501,0,0,0,0,0,0,0,0,1,1,0,0,4.5042892,63.65,46.46,-9,-9,10,1,1,0,0,7,2,2,1,381,54576.504,184444.86,96448.648,0,0,0,1079.9054 +7302,8903,15894,15895,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,52,-3,-86.08461,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,0,9,3,1,1058.5,636922.38,271865.09,312634.25,0,0,0,1960.9563 +7302,8903,15895,15894,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.0192795,7.6205311,52,3,-55.646149,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4283023,7.9925342,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,0,9,3,1,1058.5,636922.38,271865.09,312634.25,0,0,0,1960.9563 +7303,8904,15896,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-978.23871,0,3,3,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.32,17.47,-9,-9,5,2,3,0,0,3,12,1,0,406,99700.992,0,0,0,0,-603.68481,745.32019 +7304,8905,15897,15898,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,44,0,1.4003758,0,2,-9,2021,11,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.37,44.27,52,48,5,1,1,0,0,11,8,3,1,483,247777.83,42208.738,362616.72,0,0,0,2434.4868 +7304,8905,15898,15897,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.0414467,7.8002677,0,44,0,-28.460035,0,2,-9,2021,10,0,40,35,1,1,0,9.4336624,9.4336624,.05,.05,.05,0,0,0,0,14.5,1,1,0,3.9617426,0,52,48,54.37,44.27,7,1,1,0,0,12,8,3,1,483,247777.83,42208.738,362616.72,0,0,0,2434.4868 +7304,8906,15899,-9,15897,15898,1,1,32,0,0,0,1,1,-9,1,4,8.5479507,8.1294012,0,0,0,-959.42065,0,2,2,2021,10,0,40,40,1,1,0,10.041131,10.041131,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,1,1,0,0,6,8,4,1,592,239368.86,68923.836,0,0,0,0,1448.0623 +7305,8907,15900,15901,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,7.6107879,7.6955013,0,1,-6,26.976341,-9,-9,-9,2021,7,0,30,0,1,0,0,7.3565445,7.3565445,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,51.25,48.45,8.333333333333334,1,1,0,0,15,13,3,0,483.5,304617.69,183827.72,126844.58,21094.781,11131.426,9791.0469,1795.7126 +7305,8907,15901,15900,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.2718644,7.3475151,0,1,6,-39.495586,-9,2,3,2021,12,1,22,0,1,1,0,7.0155487,7.0155487,0,0,0,0,0,0,0,14.5,0,0,0,0,0,51.25,48.45,54.96,53.17,8.333333333333334,1,1,0,0,5,13,3,0,483.5,304617.69,183827.72,126844.58,21094.781,11131.426,9791.0469,1795.7126 +7306,8908,15902,15903,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,9.4194021,9.1755238,0,24,1,79.667702,0,3,3,2021,6,0,25,40,1,0,0,42.318737,42.318737,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.64,57.24,57.06,57.76,10,1,1,0,0,8,13,4,1,1167,616740.56,332285.94,285702.72,109035.67,0,0,4171.3032 +7306,8908,15903,15902,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,24,-1,19.342903,0,3,3,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.64,57.24,10,1,1,0,0,0,13,4,1,1167,616740.56,332285.94,285702.72,109035.67,0,0,4171.3032 +7306,8908,15904,-9,15903,15902,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3002,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,1167,616740.56,332285.94,285702.72,109035.67,0,0,4171.3032 +7306,8909,15905,-9,15903,15902,1,0,20,0,2,1,2,0,0,0,5,0,0,0,0,0,-957.92474,-9,2,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1485,-192568.78,0,0,0,0,0,758.64697 +7306,8910,15906,-9,15903,15902,1,0,19,0,2,1,2,0,0,0,5,0,0,0,0,0,-933.26318,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,0,13,1,1,658,-80608.336,0,0,0,0,0,656.50757 +7307,8911,15907,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-942.64832,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.88,50.52,-9,-9,8.333333333333334,1,1,0,1,0,10,1,0,1409,312855.88,150255.09,276910.38,91885.031,10811.9,0,1424.7325 +7308,8912,15908,15909,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,0,0,31,-11,133.54468,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,47.76,38.49,40.89,8.333333333333334,1,1,0,0,6,1,3,1,916.5,736109.44,539583.88,308601.5,0,0,0,2066.844 +7308,8912,15909,15908,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.7353077,7.5647278,31,11,19.997574,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7067845,7.4580503,38.49,40.89,45.42,47.76,6.666666666666667,1,1,0,0,0,1,3,1,916.5,736109.44,539583.88,308601.5,0,0,0,2066.844 +7309,8913,15910,15911,15915,15914,1,1,38,1,2,0,1,1,-9,0,2,8.5490065,8.6424961,0,13,1,120.08684,0,3,3,2021,9,0,37,37,1,0,0,13.261962,13.261962,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.42,26.88,54.37,54.8,8.333333333333334,2,3,0,0,8,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8913,15911,15910,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.7136364,8.76476,0,13,-1,6.7947388,0,2,2,2021,12,0,50,41,1,0,0,15.102337,15.102337,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,62.42,26.88,8.333333333333334,2,3,0,0,8,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8913,15912,-9,15911,15910,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.6119,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8913,15913,-9,15911,15910,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-912.08905,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,5,1,418.25,31575.039,69249.344,215967.06,181234.78,13224.064,2802.4968,4917.8574 +7309,8914,15914,15915,-9,-9,1,1,64,1,2,0,3,3,-9,0,4,7.9493284,7.6179619,0,43,5,25.452192,0,3,2,2021,7,0,45,45,1,0,0,5.9829354,5.9829354,0,0,0,0,0,0,0,0,1,1,0,6.2445779,0,35.86,64.55,59.7,53.75,8.333333333333334,2,3,0,0,8,5,3,1,574.5,23296.914,0,167699.97,35076.516,0,0,1598.5288 +7309,8914,15915,15914,-9,-9,1,0,59,1,2,0,2,2,-9,0,3,6.8584356,7.0603862,0,43,-5,14.531661,0,3,3,2021,12,0,20,20,1,0,0,5.697114,5.697114,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,35.86,64.55,8.333333333333334,2,3,0,0,8,5,3,1,574.5,23296.914,0,167699.97,35076.516,0,0,1598.5288 +7310,8915,15916,15917,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.2315197,9.3082695,0,4,1,90.362923,0,1,1,2021,8,0,46,45,1,0,0,28.525953,28.525953,.05,.05,0,0,0,0,0,0,0,0,0,5.6798229,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,6,4,5,1,439,423564.94,148205.66,0,0,0,0,6056.9258 +7310,8915,15917,15916,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.5210619,8.9571676,0,4,-1,-46.746975,0,-9,-9,2021,12,0,45,45,1,0,0,19.070826,19.070826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,6,4,5,1,439,423564.94,148205.66,0,0,0,0,6056.9258 +7311,8916,15918,-9,15919,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.2928,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,1944,-19228.156,0,0,0,16682.605,4628.9106,1022.1436 +7311,8916,15919,-9,-9,-9,1,0,39,1,2,0,2,2,-9,0,4,4.9418645,4.8343129,0,0,0,-1003.5817,0,-9,-9,2021,8,0,40,20,1,0,0,.38270321,.38270321,0,0,0,0,0,0,0,0,1,1,0,2.5576544,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,13,13,2,1,1944,-19228.156,0,0,0,16682.605,4628.9106,1022.1436 +7312,8917,15920,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,6.3980584,6.5066819,0,0,-940.87512,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.3054831,2.9381859,13.171706,0,1,1,0,3.1687601,6.1256242,60.42,39.53,-9,-9,10,1,1,0,0,0,9,2,1,433,38856.371,79895.078,0,0,0,0,969.79315 +7313,8918,15921,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.9788752,8.9715986,0,0,0,-1133.8278,0,2,2,2021,12,1,40,40,1,1,0,24.634996,24.634996,.05,.05,0,0,0,0,0,0,0,0,0,2.0571926,0,40.47,55.65,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,1248,16032.679,-43523.258,0,0,0,0,3193.2917 +7314,8919,15922,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,7.7133131,7.1950097,0,0,0,-1004.8303,0,2,3,2021,6,0,30,34,1,0,0,7.839107,7.839107,0,0,.05,0,0,0,0,0,1,1,0,2.324811,0,53,40.54,-9,-9,6.666666666666667,1,1,0,0,10,7,3,0,544,462681.25,-26667.898,212825.94,0,0,0,461.7627 +7314,8920,15923,-9,15922,-9,1,1,25,0,0,0,2,2,-9,1,2,0,0,0,0,0,-892.64801,1,1,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.2,44.8,-9,-9,3.333333333333333,1,1,0,0,2,7,1,0,3399,0,0,0,0,0,0,648.85077 +7315,8921,15924,15925,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,0,0,36,1,11.045121,0,3,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,33.15,53.23,47.51,8.333333333333334,1,1,0,0,4,10,2,1,176.5,274357.88,0,141830.61,0,0,0,106.64725 +7315,8921,15925,15924,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,5.7126846,5.7445297,0,7,-1,21.673697,0,-9,-9,2021,10,1,40,40,1,1,0,.8515054,.8515054,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,55.19,33.15,6.666666666666667,1,1,0,0,8,10,2,1,176.5,274357.88,0,141830.61,0,0,0,106.64725 +7316,8922,15926,15927,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.5766001,8.4453754,0,11,0,-83.889954,0,2,1,2021,7,0,38,38,1,0,0,12.936233,12.936233,0,0,0,0,0,0,0,7,1,1,0,0,0,57.57,49.69,45.18,54.77,3.333333333333333,1,1,0,0,12,2,5,1,373,1064122,197040.86,305148.41,0,0,0,3681.9517 +7316,8922,15927,15926,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4584875,8.4764566,0,11,0,-14.606727,0,3,3,2021,15,4,35,39,1,4,0,14.81496,14.81496,0,0,.05,0,0,0,0,2,1,1,0,0,0,45.18,54.77,57.57,49.69,5,1,1,0,0,12,2,5,1,373,1064122,197040.86,305148.41,0,0,0,3681.9517 +7317,8923,15928,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.6348152,7.6292796,0,0,0,-943.72339,0,3,2,2021,10,1,38,32,1,1,0,7.3776493,7.3776493,0,0,.05,0,0,0,0,0,0,0,0,0,0,35.5,55.32,-9,-9,8.333333333333334,4,2,0,0,1,2,3,0,508,58500.402,-14397.296,0,0,0,0,1393.8547 +7318,8924,15929,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,9.1003399,8.5515213,0,0,0,-1045.806,0,2,2,2021,7,0,59,55,1,0,0,11.843637,11.843637,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,364,266169.81,-26744.223,0,0,8077.5488,0,2656.4248 +7319,8925,15930,15931,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,8.2926941,8.2525539,30,6,19.833353,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8761735,8.5197744,48.28,60.18,51,54,8.333333333333334,1,1,0,0,11,4,4,1,1355,1216674.5,981138.44,192927.56,0,0,0,2419.311 +7319,8925,15931,15930,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,0,0,0,30,-6,-15.343981,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,.35262701,0,51,54,48.28,60.18,8.333333333333334,2,3,0,0,1,4,4,1,1355,1216674.5,981138.44,192927.56,0,0,0,2419.311 +7320,8926,15932,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,8.1671371,8.0192299,0,0,0,-956.80731,-9,1,2,2021,12,1,40,0,1,1,0,9.4861937,9.4861937,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.06,57.15,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,414,29241.297,-125397.38,0,0,0,0,1785.3525 +7321,8927,15933,-9,15935,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.32684,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,705.66669,17219.76,90138.203,0,0,1473.314,2861.1714,2035.9513 +7321,8927,15934,-9,15935,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.4619,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,705.66669,17219.76,90138.203,0,0,1473.314,2861.1714,2035.9513 +7321,8927,15935,-9,-9,-9,1,0,26,0,2,0,2,2,-9,0,4,7.6995225,7.8652434,0,0,0,-1066.5872,0,-9,-9,2021,8,0,37,37,1,0,0,9.5656357,9.5656357,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,6,3,0,705.66669,17219.76,90138.203,0,0,1473.314,2861.1714,2035.9513 +7322,8928,15936,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,7.9732323,7.7407503,0,0,0,-1011.3002,0,3,1,2021,20,8,35,25,1,8,0,8.7517633,8.7517633,0,0,0,0,0,0,0,0,0,0,0,0,0,23.95,64.59999999999999,-9,-9,1.666666666666667,1,1,0,1,13,10,3,0,170,197651.36,0,0,0,0,0,1314.1926 +7323,8929,15937,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,0,0,-993.25336,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.67,53.83,-9,-9,10,1,1,0,0,0,8,1,0,267,59602.73,0,0,0,0,0,1710.8929 +7324,8930,15938,15939,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.4149323,8.6766701,0,8,-15,6.9972029,0,3,3,2021,12,0,50,38,1,0,0,10.324155,10.324155,.05,.05,.05,0,0,0,0,0,0,0,0,7.7746496,0,54.1,59.11,29.14,59.74,8.333333333333334,1,1,0,0,10,5,4,1,456,192115.02,123412.47,141392.84,76439.133,0,0,2857.9575 +7324,8930,15939,15938,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.4668899,7.2795229,0,8,15,-49.094547,0,2,2,2021,16,5,31,20,1,5,0,5.8471298,5.8471298,0,0,0,0,0,0,0,0,0,0,0,.14260297,0,29.14,59.74,54.1,59.11,8.333333333333334,1,1,0,0,11,5,4,1,456,192115.02,123412.47,141392.84,76439.133,0,0,2857.9575 +7325,8931,15940,-9,-9,-9,1,1,100,0,0,0,3,3,-9,0,4,0,0,0,0,0,-919.35486,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,4.4658208,0,50.795425,0,1,1,0,0,0,58.22,22.18,-9,-9,8.333333333333334,1,1,0,0,1,7,2,0,1513,-40293.898,0,89931.586,0,0,0,2177.5845 +7326,8932,15941,15942,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.7812877,7.2910919,0,11,-10,6.492662,0,-9,-9,2021,8,0,44,39,1,0,0,7.9300351,7.9300351,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52,54.51,62.49,55.09,8.333333333333334,1,1,0,0,12,11,4,0,3103,280108.38,217660.72,128360.69,23412.723,4584.7847,373.82373,2888.6167 +7326,8932,15942,15941,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.1616001,8.3574419,0,11,10,143.75751,0,2,-9,2021,7,0,51,51,1,0,0,10.416434,10.416434,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,62.49,55.09,52,54.51,10,1,1,0,0,12,11,4,0,3103,280108.38,217660.72,128360.69,23412.723,4584.7847,373.82373,2888.6167 +7327,8933,15943,-9,15944,15945,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-925.13257,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7327,8933,15944,15945,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,6.3394747,6.1341457,0,28,0,29.173912,0,-9,3,2021,10,0,9,9,1,0,0,6.7038865,6.7038865,0,0,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,54.1,59.11,8.333333333333334,1,1,0,0,8,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7327,8933,15945,15944,-9,-9,1,1,55,0,2,0,2,2,-9,0,5,8.5121832,8.3311415,0,28,9,-14.355503,0,2,2,2021,12,1,37,37,1,1,0,11.294024,11.294024,.05,.05,0,0,0,0,0,2,1,1,0,1.846808,0,54.1,59.11,43.71,56.91,8.333333333333334,1,1,0,0,11,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7327,8933,15946,-9,15944,15945,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1072.0505,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,1,739.25,307390.94,140297.69,167845.78,55754.633,4247.1182,2982.8501,1987.8992 +7328,8934,15947,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1013.7209,0,-9,3,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.25,35.09,-9,-9,0,1,1,1,1,0,8,1,0,567,-8083.4927,0,0,0,0,0,1626.3131 +7328,8935,15948,-9,15947,-9,1,0,20,0,0,0,2,2,-9,0,5,7.6813035,7.5239916,0,0,0,-1030.1078,0,3,-9,2021,7,0,45,40,1,0,1,3.0786803,3.0786803,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,10,1,1,0,0,10,8,3,0,412,-103366.09,0,0,0,0,0,562.80798 +7329,8936,15949,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-967.31982,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.79,22.28,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,161,318366.13,107859.8,0,0,0,0,789.40601 +7330,8937,15950,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.2001681,7.1034594,0,0,0,-959.05719,0,3,2,2021,13,1,16,16,1,1,0,8.6407394,8.6407394,0,0,0,0,0,0,0,0,1,1,0,0,0,47.38,39.14,-9,-9,6.666666666666667,3,4,0,0,6,8,2,0,690.5,-225152,0,0,0,4754.2666,0,1859.0183 +7330,8937,15951,-9,15950,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-921.86658,-9,2,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,0,0,0,8,2,0,690.5,-225152,0,0,0,4754.2666,0,1859.0183 +7330,8938,15952,-9,15950,-9,1,0,24,0,1,0,1,1,-9,0,4,0,0,0,0,0,-990.41553,1,2,1,2021,12,0,0,35,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,60.01,-9,-9,8.333333333333334,3,4,0,0,5,8,1,0,591,-217965.84,0,0,0,0,0,0 +7330,8939,15953,-9,15950,-9,1,1,23,0,1,0,2,2,1,0,4,7.5719371,7.4152403,0,0,0,-1160.751,-9,2,-9,2021,5,0,20,0,1,0,1,9.5735636,9.5735636,0,0,0,0,0,0,0,0,1,1,0,0,0,60.63,54.55,-9,-9,8.333333333333334,3,4,0,0,7,8,3,0,1091,83840.141,0,0,0,0,-1764.5424,441.56995 +7330,8940,15954,-9,15950,-9,1,1,21,0,1,1,2,0,0,0,4,0,0,0,0,0,-1148.8634,-9,2,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,398,0,0,0,0,0,0,0 +7331,8941,15955,-9,15956,-9,1,0,17,0,1,1,2,0,0,0,4,0,5.3489237,5.2750392,0,0,-1028.4437,-9,2,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9423189,0,54.2,57.49,-9,-9,10,2,3,0,0,0,9,3,0,991.33331,-283.83301,95912.711,0,0,5827.7358,0,3024.4585 +7331,8941,15956,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.9038749,8.0881042,6.9182925,0,0,-1010.302,0,2,2,2021,5,0,29,29,1,0,0,10.685026,10.685026,.05,.05,0,0,0,0,0,0,1,1,0,6.7887993,0,55.19,54.26,-9,-9,8.333333333333334,2,3,0,0,6,9,3,0,991.33331,-283.83301,95912.711,0,0,5827.7358,0,3024.4585 +7331,8941,15957,-9,15956,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.13501,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,3,0,991.33331,-283.83301,95912.711,0,0,5827.7358,0,3024.4585 +7331,8942,15958,-9,15956,-9,1,1,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-895.92456,-9,2,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,4,2,0,0,0,9,1,0,402,35504.801,0,0,0,0,0,0 +7332,8943,15959,-9,15962,15961,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.2417,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15960,-9,15962,15961,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.725,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15961,15962,-9,-9,1,1,23,2,3,0,2,2,-9,0,3,0,0,0,1,-1,111.53791,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,50.91,46.91,8.333333333333334,1,1,1,0,1,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15962,15961,-9,-9,1,0,24,2,3,0,3,3,-9,0,3,0,5.3208694,4.8721519,1,1,113.43501,-9,2,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4960046,0,50.91,46.91,56.74,55.09,8.333333333333334,1,1,0,1,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7332,8943,15963,-9,15962,15961,1,0,5,2,3,1,3,0,-9,0,4,0,0,0,0,0,-862.552,-9,3,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,3.6378868,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,2,0,919.20001,0,0,0,0,0,0,1969.4851 +7333,8944,15964,15965,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,8,-6,0,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,43.26,58.26,51.15,14.45,8.333333333333334,1,1,0,0,0,7,1,1,456,191761.5,18710.809,229309.8,0,0,0,445.3443 +7333,8944,15965,15964,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,56,6,0,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,18.07213,0,2,1,1,0,0,0,51.15,14.45,43.26,58.26,8.333333333333334,1,1,0,0,7,7,1,1,456,191761.5,18710.809,229309.8,0,0,0,445.3443 +7334,8945,15966,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3364296,8.385788,6.756372,4,0,50.230095,0,-9,2,2021,12,3,24,37,1,3,0,14.927122,14.927122,.05,.05,0,0,0,0,0,0,0,0,0,7.4093428,0,46.39,60.99,51,56,6.666666666666667,1,1,0,0,12,2,4,1,899,342285.16,127688.16,224556.02,91463.328,15088.405,0,2593.2439 +7335,8946,15967,15968,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.6719847,7.4532142,0,42,-2,-69.627052,0,2,2,2021,11,0,32,32,1,0,0,6.186389,6.186389,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.34,60.95,55,53,8.333333333333334,1,1,0,0,8,9,5,1,1179,2259460,1788132.8,345424.13,0,3935.5786,0,4358.7227 +7335,8946,15968,15967,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.1792793,9.0776606,6.6309252,5,2,-89.501289,0,-9,-9,2021,9,0,50,50,1,0,0,22.234825,22.234825,.05,.05,0,0,0,0,0,0,0,0,0,4.8972015,6.7807298,55,53,37.34,60.95,8,1,1,0,0,1,9,5,1,1179,2259460,1788132.8,345424.13,0,3935.5786,0,4358.7227 +7336,8947,15969,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1006.2759,0,2,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.08,66.28,-9,-9,1.666666666666667,1,1,1,1,0,1,1,0,1692,0,0,0,0,0,0,659.00629 +7337,8948,15970,15971,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.990365,8.1117191,0,7,-1,50.283707,0,2,2,2021,7,1,38,39,1,1,0,12.215339,12.215339,.05,.05,0,0,0,0,0,2,0,0,0,0,0,64.21000000000001,31.14,48.8,47.64,8.333333333333334,1,1,0,0,8,5,4,1,909,981398,511292.47,391984.91,0,0,0,2790.9294 +7337,8948,15971,15970,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9585395,7.9063182,0,7,1,-34.838284,0,-9,-9,2021,17,6,38,37,1,6,0,8.4946089,8.4946089,0,0,0,0,0,0,0,14.5,0,0,0,0,0,48.8,47.64,64.21000000000001,31.14,8.333333333333334,1,1,0,0,8,5,4,1,909,981398,511292.47,391984.91,0,0,0,2790.9294 +7338,8949,15972,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1083.7142,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,13.708871,0,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,1,886,66970.5,0,141968.67,0,0,0,1498.6115 +7339,8950,15973,15974,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.4710202,7.5822349,0,1,0,-53.147591,-9,-9,2,2021,9,0,41,0,1,0,0,4.0514021,4.0514021,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53.51,52.37,8.333333333333334,1,1,0,0,8,1,4,1,145.5,188121.2,60347.965,35296.551,92794.32,1082.0526,0,2936.7402 +7339,8950,15974,15973,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.2555637,8.2013578,0,1,0,-178.2802,-9,-9,-9,2021,7,0,50,0,1,0,0,12.037079,12.037079,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,52.37,48.28,60.18,8.333333333333334,1,1,0,0,3,1,4,1,145.5,188121.2,60347.965,35296.551,92794.32,1082.0526,0,2936.7402 +7340,8951,15975,15976,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.0251851,6.7843628,45,0,27.614079,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,2.9544821,0,0,1,1,0,0,6.4743571,49.71,30.25,60.12,54.8,6.666666666666667,1,1,0,0,3,7,4,1,1162,1834970.5,1060521.8,556750,0,0,0,2234.5571 +7340,8951,15976,15975,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,8.137928,8.1725664,45,0,-108.02532,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.86189187,8.4277363,60.12,54.8,49.71,30.25,8.333333333333334,1,1,0,0,4,7,4,1,1162,1834970.5,1060521.8,556750,0,0,0,2234.5571 +7341,8952,15977,15978,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.6581316,7.4887195,28,-4,63.825333,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.4774485,62.07,43.3,46.71,44.73,8.333333333333334,1,1,0,0,12,5,3,1,627.5,2260428,1420647.5,328130,0,0,0,2611.4546 +7341,8952,15978,15977,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.8773766,7.8429461,28,4,-12.937218,0,2,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7356348,7.5512414,46.71,44.73,62.07,43.3,8.333333333333334,1,1,0,0,11,5,3,1,627.5,2260428,1420647.5,328130,0,0,0,2611.4546 +7342,8953,15979,15981,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,6.9126182,7.0452905,0,5,-4,8.1303787,0,2,2,2021,12,0,16,14,1,0,0,8.9663448,8.9663448,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,37.13,55.9,8.333333333333334,1,1,0,0,6,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7342,8953,15980,-9,15979,15981,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.3808,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7342,8953,15981,15979,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.3666487,8.3864422,0,5,4,27.24617,0,-9,-9,2021,15,4,40,33,1,4,0,11.352978,11.352978,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,55.9,57.33,53.46,8.333333333333334,1,1,0,0,5,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7342,8953,15982,-9,15979,15981,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.0793,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,302.25,15747.674,22182.316,0,0,0,0,2254.5154 +7343,8954,15983,15986,15987,15988,1,1,36,0,2,0,1,1,-9,0,5,8.4519415,8.4060965,0,4,-3,-128.94034,-9,2,2,2021,0,0,40,0,1,0,0,11.159376,11.159376,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.38,53.47,6.666666666666667,2,3,0,0,10,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8954,15984,-9,15986,15983,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.19,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8954,15985,-9,15986,15983,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.89032,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8954,15986,15983,-9,-9,1,0,39,0,2,0,3,3,-9,0,5,0,0,0,4,3,-63.240772,0,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,62.39,56.71,8.333333333333334,2,3,0,0,0,2,3,1,720.75,77805.508,-26640.725,161534.95,15345.844,0,0,1865.5686 +7343,8955,15987,15988,-9,-9,1,0,59,0,2,0,2,2,-9,0,5,0,0,0,40,-15,0,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,49.05,47.49,8.333333333333334,2,3,0,0,0,2,1,1,920,346850.75,142654.41,221663.25,0,0,0,1231.7593 +7343,8955,15988,15987,-9,-9,1,1,74,0,2,0,2,2,-9,0,3,0,0,0,37,15,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.05,47.49,52.72,55.58,8.333333333333334,2,3,0,0,0,2,1,1,920,346850.75,142654.41,221663.25,0,0,0,1231.7593 +7344,8956,15989,15990,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.1143055,7.762135,9,1,-50.81435,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,3.8220427,7.7703924,56.35,48.33,51.01,44.05,10,1,1,0,0,0,11,4,1,959.5,1369489.3,841877.88,309378.5,0,0,0,4143.9878 +7344,8956,15990,15989,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.974093,8.029624,9,-1,26.440634,0,2,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,3.1531167,0,0,1,1,0,5.8667655,7.6883864,51.01,44.05,56.35,48.33,10,1,1,0,0,0,11,4,1,959.5,1369489.3,841877.88,309378.5,0,0,0,4143.9878 +7345,8957,15991,15992,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,0,0,0,6,-3,-34.015369,0,2,1,2021,11,0,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,51,49,7,1,1,0,0,0,4,3,1,656.66669,271633.13,203390.98,170912.34,138248.41,7771.6221,683.78522,3183.9807 +7345,8957,15992,15991,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,0,8.2882462,8.4987478,6,3,40.671024,0,2,2,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5359714,8.3227005,51,49,49,48,7,1,1,0,0,6,4,3,1,656.66669,271633.13,203390.98,170912.34,138248.41,7771.6221,683.78522,3183.9807 +7345,8957,15993,-9,15991,15992,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.7934,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,656.66669,271633.13,203390.98,170912.34,138248.41,7771.6221,683.78522,3183.9807 +7345,8958,15994,-9,15991,15992,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-951.73431,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,0,4,1,1,1900,-63464.18,0,0,0,0,0,0 +7346,8959,15995,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,7.2478995,7.2361937,0,4,4,37.889988,0,-9,-9,2021,6,0,23,22,1,0,0,8.15942,8.15942,0,0,0,0,0,0,0,0,0,0,0,4.3737192,0,61.28,35.65,40.83,59.68,6.666666666666667,1,1,0,0,5,8,5,1,4374,-64223.211,0,0,0,0,0,642.62921 +7346,8960,15996,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.974762,9.3028698,7.6404982,4,-4,25.252069,0,-9,-9,2021,10,3,39,45,1,3,0,19.506954,19.506954,0,0,0,0,0,0,0,0,0,0,0,8.9497576,0,40.83,59.68,61.28,35.65,8.333333333333334,1,1,0,0,7,8,5,1,875,84043.867,0,0,0,102.9105,0,4695.7158 +7347,8961,15997,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,6.3816233,6.6431875,0,0,0,-931.72736,0,3,3,2021,10,0,10,43,1,0,0,7.0160136,7.0160136,0,0,0,0,0,0,0,2,1,0,1,0,0,49.87,50.46,-9,-9,3.333333333333333,1,1,0,0,9,2,2,1,195,-77839.922,-102595.91,0,0,0,0,1062.0702 +7348,8962,15998,15999,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.0782809,6.8443131,40,10,35.715355,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5311298,57.16,56.15,49,48,8.333333333333334,1,1,0,0,0,4,3,1,1083,2515129,1387853.3,457025.5,0,0,0,2910.3101 +7348,8962,15999,15998,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.9146194,8.178133,40,-10,78.805229,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1204445,8.0946503,49,48,57.16,56.15,7,1,1,0,0,0,4,3,1,1083,2515129,1387853.3,457025.5,0,0,0,2910.3101 +7348,8963,16000,-9,15999,15998,1,1,22,0,0,0,2,2,-9,0,4,8.33955,7.9600587,0,0,0,-972.61121,0,2,1,2021,10,0,40,0,1,1,0,11.09771,11.09771,0,0,0,0,0,0,0,0,1,1,0,.35286385,0,48,59,-9,-9,7,1,1,0,0,1,4,4,1,250,-34439.969,0,0,0,0,0,1767.8257 +7348,8964,16001,-9,15999,15998,1,1,27,0,0,0,1,1,-9,0,4,8.1662197,8.2940254,0,0,0,-897.84216,0,2,1,2021,10,0,37,0,1,1,0,8.3691874,8.3691874,0,0,0,0,0,0,0,0,1,1,0,1.3534237,0,49,58,-9,-9,7,1,1,0,0,1,4,4,1,796,103337.77,0,0,0,2664.7434,0,1861.9667 +7349,8965,16002,16003,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,6.3767805,6.7233176,0,8,-2,-167.77034,0,-9,-9,2021,12,0,10,10,1,0,0,7.9374976,7.9374976,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,44.2,50,49,6.666666666666667,1,1,0,0,8,7,3,1,358,71020.922,0,0,0,0,0,1326.0901 +7349,8965,16003,16002,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.76963,7.7102766,0,8,2,-77.171562,0,-9,-9,2021,10,0,60,60,1,1,0,4.9952002,4.9952002,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,45.81,44.2,7,1,1,0,0,1,7,3,1,358,71020.922,0,0,0,0,0,1326.0901 +7350,8966,16004,16005,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.1739388,8.2455549,0,8,-1,-22.06012,0,-9,-9,2021,36,12,40,48,1,12,0,9.6480274,9.6480274,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.31,43.68,38.28,63.48,8.333333333333334,2,3,0,0,6,9,5,1,1234,327054.63,53750.641,365337.94,142102.31,0,0,3446.4795 +7350,8966,16005,16004,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.7596188,8.8260164,0,8,1,-134.23019,0,1,1,2021,14,3,52,49,1,3,0,15.646209,15.646209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.28,63.48,45.31,43.68,6.666666666666667,2,3,0,0,13,9,5,1,1234,327054.63,53750.641,365337.94,142102.31,0,0,3446.4795 +7351,8967,16006,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,5.1014361,5.439755,0,0,-901.85675,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0202003,5.2897596,54.53,41.24,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,348,-52703.73,10478.222,0,0,0,0,613.13373 +7352,8968,16007,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.9621673,8.1459332,4.0685115,0,0,-1078.0908,0,2,2,2021,19,7,36,44,1,7,0,7.865973,7.865973,0,0,0,0,0,0,0,0,1,1,0,0,4.4501624,37.42,35.77,-9,-9,6.666666666666667,3,4,0,1,6,8,4,0,575,423854.34,15003.083,490942.66,14142.272,0,0,1352.9344 +7352,8969,16008,-9,16007,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9319816,8.0682545,0,0,0,-927.76941,0,2,2,2021,11,0,36,40,1,2,1,9.6330681,9.6330681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,585,-249899.13,135537.08,0,0,0,0,915.95801 +7352,8970,16009,-9,16007,-9,1,1,18,0,0,0,2,2,1,0,5,7.2780724,7.1606989,0,0,0,-974.12775,-9,2,-9,2021,12,3,25,0,1,3,1,8.2369814,8.2369814,0,0,0,0,0,0,0,0,1,1,0,0,0,51.69,51.82,-9,-9,10,3,4,0,0,1,8,3,0,835,178322.53,0,0,0,0,0,848.1618 +7352,8971,16010,-9,16007,-9,1,1,28,0,0,0,1,1,-9,0,4,8.2054863,7.8184476,0,0,0,-991.82501,-9,2,-9,2021,10,0,36,0,1,1,1,8.1069632,8.1069632,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,3,0,481,-107604.67,11821.604,0,0,0,0,1655.1145 +7352,8972,16011,-9,16007,-9,1,0,25,0,0,0,1,1,-9,0,4,8.1268444,8.0338993,0,0,0,-1141.3936,0,2,-9,2021,11,0,36,0,1,2,1,9.7151442,9.7151442,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,4,0,714,3124.5684,0,0,0,0,0,1571.3644 +7353,8973,16012,16013,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8231955,8.4584093,0,9,0,-43.290352,-9,2,2,2021,12,0,35,0,1,0,0,19.836191,19.836191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,38.8,59.15,6.666666666666667,1,1,0,0,9,4,5,1,698.5,-29562.633,47126.336,0,0,11997.962,0,3518.436 +7353,8973,16013,16012,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6274099,7.5538464,0,9,0,-1.9847622,0,2,1,2021,18,6,28,25,1,6,0,7.3411479,7.3411479,.05,.05,0,0,0,0,0,0,0,0,0,3.1692436,0,38.8,59.15,51.41,56.15,6.666666666666667,1,1,0,0,9,4,5,1,698.5,-29562.633,47126.336,0,0,11997.962,0,3518.436 +7354,8974,16014,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,7.9536552,7.7577753,0,0,-1081.238,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.7685108,0,23.020754,0,1,1,0,4.1229982,8.1581097,45.63,46.6,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,3006,784302.38,131554.83,283073.88,0,0,0,1824.1278 +7355,8975,16015,16016,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.7669497,6.7087135,49,0,-80.036827,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6100721,7.1122675,58.32,50.22,62.66,52.4,10,1,1,0,0,0,9,5,1,693.5,2189852.5,1004013.6,600882.75,0,0,0,4926.8174 +7355,8975,16016,16015,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.7004366,8.7799368,49,0,25.888292,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3561313,8.4296236,62.66,52.4,58.32,50.22,10,1,1,0,0,0,9,5,1,693.5,2189852.5,1004013.6,600882.75,0,0,0,4926.8174 +7356,8976,16017,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.1497297,8.357502,0,0,0,-987.57825,0,2,-9,2021,8,0,35,40,1,0,0,13.768053,13.768053,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,7,12,4,0,2236,-195867.86,-118622.46,0,0,0,5677.0015,1218.4185 +7357,8977,16018,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.5664105,6.6479192,0,0,-1015.8429,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4964576,37.02,37.37,-9,-9,1.666666666666667,1,1,0,0,0,11,2,1,154,249758.23,275031.28,197219.84,0,0,0,1579.0953 +7358,8978,16019,-9,16022,16021,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-992.06274,-9,1,1,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,4,2,-9,0,0,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7358,8978,16020,-9,16022,16021,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.749,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7358,8978,16021,16022,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.70858,9.4824982,0,8,0,-68.222542,0,-9,-9,2021,8,0,46,55,1,0,0,37.262959,37.262959,0,0,0,0,0,0,0,0,0,0,0,6.6564145,0,55.36,54.24,48.18,61.8,8.333333333333334,1,1,0,0,5,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7358,8978,16022,16021,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,9.7362061,9.6993465,0,24,0,7.7323718,0,2,1,2021,10,1,46,40,1,1,0,32.208595,32.208595,0,0,0,0,0,0,0,0,0,0,0,5.5448022,0,48.18,61.8,55.36,54.24,8.333333333333334,2,3,0,0,9,8,5,1,423.5,336637.63,32021.846,661990.5,479113.53,0,0,12719.119 +7359,8979,16023,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,6.1700978,6.5049868,0,0,-943.31238,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2564826,60.02,56.42,-9,-9,10,1,1,0,0,0,12,2,0,376,84985.336,-70372.398,0,0,0,0,1236.5895 +7360,8980,16024,16025,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,0,0,0,20,1,-47.610828,0,3,3,2021,26,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.14,39.53,57.16,56.15,3.333333333333333,1,1,1,0,12,9,2,0,2098.5,114657.69,123343.03,0,0,0,234.07901,1007.9562 +7360,8980,16025,16024,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,7.8141289,7.5536256,0,31,-1,-30.695454,0,3,3,2021,10,0,50,40,1,0,0,3.9887116,3.9887116,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,32.14,39.53,6.666666666666667,1,1,0,0,12,9,2,0,2098.5,114657.69,123343.03,0,0,0,234.07901,1007.9562 +7361,8981,16026,16027,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,6,5,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,38.13,29.95,7,1,1,0,0,0,13,1,1,481,361894.06,40911.328,64660.578,0,0,0,2405.46 +7361,8981,16027,16026,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,6,-5,0,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.13,29.95,52,47,6.666666666666667,1,1,0,0,0,13,1,1,481,361894.06,40911.328,64660.578,0,0,0,2405.46 +7362,8982,16028,16029,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,5.4467378,5.7467251,37,6,-97.935493,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,16.78743,0,0,1,1,0,0,5.4485021,49.36,14.27,45.83,19.9,1.666666666666667,1,1,0,1,0,11,2,0,492.5,98824.078,-42735.406,0,0,0,0,1591.1494 +7362,8982,16029,16028,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,0,0,41,-6,105.38486,0,2,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.83,19.9,49.36,14.27,0,1,1,0,1,0,11,2,0,492.5,98824.078,-42735.406,0,0,0,0,1591.1494 +7363,8983,16030,16031,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,7.7913737,7.3735437,0,48,2,10.672881,0,2,-9,2021,9,1,24,24,1,1,0,9.9015732,9.9015732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,64.97,24.32,47.96,52.66,8.333333333333334,1,1,0,0,7,5,4,1,832,776775.19,528154.5,169425.5,0,0,0,2100.0571 +7363,8983,16031,16030,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.9565859,7.8276935,0,48,-2,72.546494,0,-9,-9,2021,12,0,27,25,1,0,0,8.8842402,8.8842402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.96,52.66,64.97,24.32,8.333333333333334,1,1,0,0,11,5,4,1,832,776775.19,528154.5,169425.5,0,0,0,2100.0571 +7364,8984,16032,16033,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.3322124,8.47258,11,1,6.5190215,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8212109,8.0823603,59.88,48.04,51.86,38.05,10,1,1,0,0,1,12,4,1,811,1109847.5,630956.13,300675.81,0,7383.9116,0,3364.5439 +7364,8984,16033,16032,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8358641,7.3509355,11,-1,163.89075,0,2,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5869575,7.2224579,51.86,38.05,59.88,48.04,8.333333333333334,1,1,0,0,2,12,4,1,811,1109847.5,630956.13,300675.81,0,7383.9116,0,3364.5439 +7365,8985,16034,16035,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5395389,6.6593475,12,-2,-85.758575,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7257807,6.5079427,58.15,52.91,58.05,54.52,8.333333333333334,1,1,0,0,0,2,2,1,1408.5,627314.38,76413.406,202971.28,0,0,0,1347.5776 +7365,8985,16035,16034,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,5.2087317,5.2950158,12,2,15.40801,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1645093,5.4258451,58.05,54.52,58.15,52.91,8.333333333333334,1,1,0,0,0,2,2,1,1408.5,627314.38,76413.406,202971.28,0,0,0,1347.5776 +7366,8986,16036,16037,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,7.9327636,7.678514,9,16,-8.2470655,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,6.0528083,0,0,1,1,0,7.6761436,7.684402,60.72,47.63,55,54,10,1,1,0,0,0,10,3,1,710.5,515009.38,280373.91,191551.94,0,0,0,3268.7354 +7366,8986,16037,16036,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,9,-16,-16.108643,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2740815,0,55,54,60.72,47.63,5,1,1,0,0,3,10,3,1,710.5,515009.38,280373.91,191551.94,0,0,0,3268.7354 +7367,8987,16038,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.284524,8.5669565,0,0,0,-863.07501,0,-9,-9,2021,9,1,38,37,1,1,0,11.957698,11.957698,.05,.05,0,0,0,0,0,0,0,0,0,2.6828253,0,38.09,63.39,-9,-9,8.333333333333334,1,1,0,0,5,11,4,0,221,233720.05,3668.3958,0,0,0,0,1318.2396 +7368,8988,16039,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,7.5830069,7.6034684,0,0,0,-970.66821,0,1,1,2021,9,2,32,40,1,2,1,7.0948925,7.0948925,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,417,-113428.58,-1832.7919,0,0,0,1607.1359,491.7504 +7369,8989,16040,16041,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,50,1,29.692982,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.63,43.21,60.71,37.26,6.666666666666667,1,1,0,0,6,1,2,1,328,535259.25,44545.188,418769.69,0,0,0,2197.3862 +7369,8989,16041,16040,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,6.9361148,6.8381877,0,50,-1,-40.230003,0,3,-9,2021,8,0,24,24,1,0,0,4.3827147,4.3827147,0,0,0,0,0,0,0,0,1,1,0,0,0,60.71,37.26,53.63,43.21,6.666666666666667,1,1,0,0,12,1,2,1,328,535259.25,44545.188,418769.69,0,0,0,2197.3862 +7370,8990,16042,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.8776989,9.3769369,0,0,-931.09723,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6184907,9.0835524,49.12,57.28,-9,-9,5,1,1,0,0,6,6,5,1,404,3883887,3920809.8,0,0,0,0,4587.7598 +7371,8991,16043,16044,-9,-9,1,1,57,0,2,0,2,2,-9,0,3,9.0241604,9.24265,0,4,8,96.733032,0,2,2,2021,11,1,45,70,1,1,0,29.610895,29.610895,.05,.05,0,0,0,0,0,0,1,1,0,2.740119,0,49.11,49.21,45.95,51.79,8.333333333333334,1,1,0,0,14,6,4,1,553.5,135758.02,-76230.258,0,0,0,6941.6313,4362.6196 +7371,8991,16044,16043,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,6.8663206,6.8376389,0,4,-8,-42.950611,0,2,3,2021,24,12,15,22,1,12,0,7.4393449,7.4393449,0,0,0,0,0,0,0,0,1,1,0,.26828483,0,45.95,51.79,49.11,49.21,8.333333333333334,1,1,0,0,11,6,4,1,553.5,135758.02,-76230.258,0,0,0,6941.6313,4362.6196 +7371,8992,16045,-9,16044,16043,1,0,24,0,2,0,1,1,-9,0,4,8.34163,8.4200554,0,0,0,-1015.5873,0,2,2,2021,13,2,40,40,1,2,1,10.962302,10.962302,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,38.16,-9,-9,6.666666666666667,1,1,0,0,5,6,4,1,451,164045.75,-52158.754,0,0,0,0,861.11957 +7372,8993,16046,16047,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.5003567,9.4063129,0,6,-1,-48.266582,0,2,2,2021,10,0,40,44,1,1,0,21.811171,21.811171,.05,.05,0,0,0,0,0,0,0,0,0,8.3374004,0,52,53,51.77,58.57,8,1,1,0,0,1,10,5,1,401,604293.5,465490.78,293878.97,105561.53,0,0,9657.3623 +7372,8993,16047,16046,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.2666683,8.7185011,0,6,1,15.505861,0,3,2,2021,10,2,50,0,1,2,0,19.71924,19.71924,.05,.05,0,0,0,0,0,0,0,0,0,3.2861087,0,51.77,58.57,52,53,8.333333333333334,1,1,0,0,6,10,5,1,401,604293.5,465490.78,293878.97,105561.53,0,0,9657.3623 +7373,8994,16048,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,7.9879856,8.0654411,0,0,0,-1095.2235,-9,-9,-9,2021,13,3,50,0,1,3,0,7.5480742,7.5480742,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.11,51.29,-9,-9,3.333333333333333,1,1,0,0,3,12,4,0,452,-141218.16,-68819.805,0,0,0,0,2091.8086 +7374,8995,16049,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.524024,7.3620348,0,0,0,-952.87958,0,3,3,2021,9,0,45,48,1,0,0,4.4987912,4.4987912,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,5,3,1,222,175965.02,-40216.234,151507.88,38059.516,0,0,458.4375 +7375,8996,16050,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-939.20636,0,3,2,2021,26,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.07,28.92,-9,-9,6.666666666666667,1,1,0,1,0,9,1,0,3190,71938.414,0,243733.17,0,0,516.26465,1079.2532 +7376,8997,16051,16052,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,6.4036489,5.9919934,0,12,-3,77.032616,0,2,2,2021,15,4,35,35,1,4,0,1.9621532,1.9621532,0,0,0,0,0,0,0,0,1,1,0,0,0,51.01,29.18,47.1,48.75,1.666666666666667,3,4,0,0,13,8,2,0,736,7823.8315,-6689.6978,0,0,0,0,1766.3099 +7376,8997,16052,16051,-9,-9,1,0,54,0,1,0,2,2,-9,0,3,7.4555173,8.0506496,0,12,3,-24.860067,0,2,2,2021,13,2,10,10,1,2,0,20.939077,20.939077,0,0,0,0,0,0,0,2,1,1,0,0,0,47.1,48.75,51.01,29.18,8.333333333333334,1,1,0,0,3,8,2,0,736,7823.8315,-6689.6978,0,0,0,0,1766.3099 +7376,8997,16053,-9,16052,16051,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-883.91882,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,8,2,0,736,7823.8315,-6689.6978,0,0,0,0,1766.3099 +7377,8998,16054,-9,16055,16057,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1184.6266,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7377,8998,16055,16057,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,9.4040289,9.3915091,0,16,-3,-109.75784,0,2,2,2021,12,4,43,34,1,4,0,32.164547,32.164547,0,0,0,0,0,0,0,0,1,1,0,7.7780647,0,43.55,51.57,36.96,49.34,8.333333333333334,1,1,0,0,12,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7377,8998,16056,-9,16055,16057,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.1016,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7377,8998,16057,16055,-9,-9,1,1,42,1,2,0,1,1,-9,0,2,7.4215508,7.6644912,0,17,3,-23.870354,0,2,2,2021,9,1,35,40,1,1,0,5.2374616,5.2374616,.05,.05,0,0,0,0,0,0,1,1,0,5.2193317,0,36.96,49.34,43.55,51.57,6.666666666666667,1,1,0,0,12,9,5,1,1903.75,824018.13,188071.19,756375,186266.91,0,0,5669.9839 +7378,8999,16058,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1041.8809,0,2,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,51.511246,0,0,1,1,0,0,0,40.65,26.16,-9,-9,1.666666666666667,1,1,0,0,0,9,1,1,147,21245.146,0,0,0,0,0,836.86841 +7379,9000,16059,-9,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,8.225194,8.109087,0,0,-984.69757,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5137129,8.3829956,65.06,41.58,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,331,588283.81,184976.13,206759.45,0,0,0,2545.6895 +7380,9001,16060,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.2671423,8.1282158,0,1,-30,63.474743,0,3,2,2021,12,1,35,35,1,1,0,8.6612062,8.6612062,.05,.05,.05,0,0,0,0,91,1,1,0,0,0,27.14,45,47.5,40.03,0,1,1,0,1,13,12,3,1,2030,496122.75,19132.676,0,0,0,0,1503.8401 +7380,9002,16061,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,5.6915426,5.7984557,1,30,-67.85466,-9,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,72.789268,74.563652,690.46106,0,1,1,0,0,5.782733,47.5,40.03,27.14,45,6.666666666666667,1,1,0,0,0,12,3,1,13945,103509.14,-64621.824,162095.38,0,0,0,1491.7156 +7381,9003,16062,-9,16063,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9036,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7381,9003,16063,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.0861263,7.1791849,0,0,0,-1066.5813,0,2,2,2021,8,0,30,30,1,0,0,5.2432919,5.2432919,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7381,9003,16064,-9,16063,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.0103,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7381,9003,16065,-9,16063,-9,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1141.9269,-9,2,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1010.75,-65612.32,0,0,0,-712.83191,605.13855,3192.0254 +7382,9004,16066,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1173.2043,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,39.52,23.86,-9,-9,3.333333333333333,1,1,0,1,0,1,1,1,1955,125818.39,0,0,0,0,0,1477.208 +7383,9005,16067,16068,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.4592695,8.3278227,0,6,1,-29.117453,0,2,3,2021,11,0,35,35,1,0,0,16.603546,16.603546,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,28.97,46.53,6.666666666666667,1,1,0,0,9,13,4,1,1130.3334,665984.56,575504.81,155903.3,124688.25,0,0,2290.7305 +7383,9005,16068,16067,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,7.8580251,7.5359941,0,6,-1,-8.1491737,0,3,3,2021,25,10,23,23,1,10,0,13.757179,13.757179,.05,.05,0,0,0,0,0,0,1,1,0,.98117328,0,28.97,46.53,49.04,55.86,6.666666666666667,1,1,0,0,9,13,4,1,1130.3334,665984.56,575504.81,155903.3,124688.25,0,0,2290.7305 +7383,9005,16069,-9,16068,16067,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1046.9183,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1130.3334,665984.56,575504.81,155903.3,124688.25,0,0,2290.7305 +7384,9006,16070,16071,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,8.5176926,8.6576614,0,9,9,-71.314346,0,2,2,2021,6,0,45,45,1,0,0,10.825109,10.825109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.68,49.75,43.1,47.55,8.333333333333334,1,1,0,0,9,9,5,1,1275,702424.44,16627.059,745267.19,0,14842.473,0,5452.9375 +7384,9006,16071,16070,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.0531979,9.0233641,4.9427748,9,0,6.6298833,0,3,2,2021,11,0,35,29,1,0,0,26.202156,26.202156,0,0,0,0,0,0,0,0,1,1,0,5.1864491,0,43.1,47.55,50.68,49.75,8.333333333333334,1,1,0,0,11,9,5,1,1275,702424.44,16627.059,745267.19,0,14842.473,0,5452.9375 +7384,9006,16072,-9,16071,16070,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.33246,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1275,702424.44,16627.059,745267.19,0,14842.473,0,5452.9375 +7385,9007,16073,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,8.0856361,7.9588199,0,0,0,-925.28967,0,-9,-9,2021,12,0,45,48,1,0,0,5.9410033,5.9410033,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,5,1,1,0,0,3,13,4,0,53,-51585.66,-11619.705,0,0,3405.5452,0,721.08826 +7385,9008,16074,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,4,7.7209644,8.1050196,0,0,0,-996.72266,-9,-9,-9,2021,9,0,66,0,1,0,0,5.0231781,5.0231781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,10,1,1,0,0,2,13,3,0,387,103107.07,65787.297,0,0,0,0,194.80948 +7386,9009,16075,16076,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.9063015,8.6560459,0,32,0,-22.467852,0,3,3,2021,7,0,45,44,1,0,0,20.995737,20.995737,0,0,0,0,0,0,0,0,0,0,0,3.1332886,0,58.15,52.91,32.26,50.01,6.666666666666667,1,1,0,0,10,13,5,1,1182,1529570.5,984279.88,479816.19,0,6961.0898,0,3976.9351 +7386,9009,16076,16075,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,7.766418,7.8560014,0,32,0,-27.587772,0,2,3,2021,10,0,23,39,1,1,0,12.205377,12.205377,0,0,0,0,0,0,0,0,0,0,0,0,0,32.26,50.01,58.15,52.91,6.666666666666667,1,1,0,0,10,13,5,1,1182,1529570.5,984279.88,479816.19,0,6961.0898,0,3976.9351 +7386,9010,16077,-9,16076,16075,1,1,26,0,0,0,1,1,-9,0,3,8.2807798,8.509181,0,0,0,-1153.7649,0,2,2,2021,12,0,38,40,1,0,1,12.304379,12.304379,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,5,1,1,0,0,8,13,4,1,157,3517.1123,-68450.008,124179.08,62533.496,0,0,1128.9934 +7387,9011,16078,16079,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,9.4089699,9.2831211,0,22,1,71.397537,0,-9,-9,2021,12,3,60,60,1,3,0,24.967556,24.967556,.05,.05,.05,0,0,0,0,0,0,0,0,4.0899754,0,51.49,57.57,51.81,57.22,8.333333333333334,1,1,0,0,13,8,5,1,406.66666,1394151,480893.44,908034.63,20970.549,0,0,9008.4697 +7387,9011,16079,16078,-9,-9,1,0,52,0,1,0,1,1,-9,0,4,9.1021633,9.1876469,0,22,-1,-70.22403,0,-9,-9,2021,13,3,14,50,1,3,0,70.363487,70.363487,0,0,.05,0,0,0,0,0,0,0,0,1.3162482,0,51.81,57.22,51.49,57.57,8.333333333333334,1,1,0,0,13,8,5,1,406.66666,1394151,480893.44,908034.63,20970.549,0,0,9008.4697 +7387,9011,16080,-9,16079,16078,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-967.18402,-9,1,1,2021,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.86,47.99,-9,-9,5,1,1,0,0,0,8,5,1,406.66666,1394151,480893.44,908034.63,20970.549,0,0,9008.4697 +7387,9012,16081,-9,16079,16078,1,1,19,0,1,0,2,2,1,0,5,7.9603219,7.9080429,0,0,0,-998.48383,-9,1,1,2021,4,0,35,0,1,0,1,10.245131,10.245131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,1,8,4,1,537,183775.45,4133.7188,0,0,0,0,843.55914 +7388,9013,16082,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-858.49774,0,2,-9,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.75,41.96,-9,-9,3.333333333333333,3,4,0,1,0,8,1,0,1271,375271.16,144204.8,0,0,0,0,797.42212 +7388,9014,16083,-9,16082,-9,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-987.32666,-9,3,-9,2021,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.9,57.01,-9,-9,3.333333333333333,3,4,1,0,0,8,1,0,391,-13453.326,0,0,0,0,0,-77.717468 +7389,9015,16084,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,6.669353,6.6021276,0,0,-895.29785,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2791343,6.7758121,54.85,29.1,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1192,688256.88,227690.52,242140.8,0,0,0,764.94098 +7390,9016,16085,16086,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.3533735,8.2568865,0,6,-7,87.433075,0,2,2,2021,11,0,40,46,1,2,0,11.791938,11.791938,0,0,0,0,0,0,0,0,0,0,0,8.9730825,0,49,56,55.5,52.9,7,1,1,0,0,1,5,4,1,1713.5,40344.918,-14483.629,180000.38,57059.09,0,0,5828.4551 +7390,9016,16086,16085,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,7.6430335,7.3398137,0,6,7,17.878113,0,3,2,2021,7,1,45,48,1,1,0,3.8005085,3.8005085,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.5,52.9,49,56,10,1,1,0,0,9,5,4,1,1713.5,40344.918,-14483.629,180000.38,57059.09,0,0,5828.4551 +7391,9017,16087,-9,16088,-9,1,1,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-975.45587,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,4,5,1,1,4524,0,0,0,0,0,0,941.62073 +7391,9018,16088,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1021.2845,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,5,1,1,1417,-102411.8,0,0,0,0,0,-807.09418 +7392,9019,16089,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.1925974,8.2653942,0,0,0,-1026.7188,0,1,1,2021,10,1,55,55,1,1,0,10.255282,10.255282,0,0,0,0,0,0,0,0,0,0,0,0,0,53.38,52.51,-9,-9,1.666666666666667,1,1,0,0,8,9,4,1,510,-32810.969,0,0,0,0,0,1464.3367 +7393,9020,16090,16091,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.3706722,7.9930882,55,4,5.9029593,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5225501,60.05,42.65,60.69,53.18,10,1,1,0,0,0,10,3,1,1685.5,310658.5,128506.17,0,0,1311.5266,0,1915.9868 +7393,9020,16091,16090,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,55,-4,-81.317184,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9512291,0,60.69,53.18,60.05,42.65,10,1,1,0,0,0,10,3,1,1685.5,310658.5,128506.17,0,0,1311.5266,0,1915.9868 +7394,9021,16092,16093,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.1524229,7.4796715,11,-1,-82.188339,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4295325,48.48,37.25,35.9,26.98,6.666666666666667,1,1,0,0,0,6,2,0,177,664875.75,182459.45,211803.53,0,0,777.08301,1642.4321 +7394,9021,16093,16092,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,52,1,16.409107,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.5626602,0,0,1,1,0,.008097861,0,35.9,26.98,48.48,37.25,6.666666666666667,1,1,0,0,0,6,2,0,177,664875.75,182459.45,211803.53,0,0,777.08301,1642.4321 +7394,9022,16094,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.2019811,7.3838134,0,0,0,-886.38776,-9,-9,-9,2021,12,0,40,0,1,2,0,4.8308606,4.8308606,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,4,6,0,0,1,6,3,0,1594,-121417.77,0,0,0,0,0,1262.6058 +7395,9023,16095,16096,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.7190199,9.7501831,0,9,4,-97.007538,0,2,1,2021,11,0,40,40,1,0,0,39.726246,39.726246,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.72,48.03,6.666666666666667,2,3,0,0,11,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7395,9023,16096,16095,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.1428146,8.2109556,0,15,-4,-18.065742,0,1,1,2021,12,0,20,0,1,0,0,15.549186,15.549186,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.72,48.03,57.16,56.15,6.666666666666667,2,3,0,0,2,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7395,9023,16097,-9,16096,16095,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.5714,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7395,9023,16098,-9,16096,16095,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-936.54974,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,5,1,729.25,1445268.3,408633.63,961667.06,446194.78,0,0,8051.0107 +7396,9024,16099,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.2841768,8.288064,0,0,0,-1105.8573,0,2,2,2021,17,4,55,52,1,4,0,7.5764384,7.5764384,0,0,0,0,0,0,0,27,0,0,0,0,0,34.71,42.42,-9,-9,1.666666666666667,1,1,0,0,9,4,4,1,585,753468.56,0,7475.3892,0,1476.4561,0,1480.3467 +7397,9025,16100,16103,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.8698406,8.7699776,0,16,0,-50.45517,0,2,1,2021,10,0,42,41,1,0,0,19.538258,19.538258,.05,.05,0,0,0,0,0,2,1,1,0,5.9819708,0,56.47,59.4,57.06,57.76,8.333333333333334,1,1,0,0,8,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7397,9025,16101,-9,16103,16100,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1868,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7397,9025,16102,-9,16103,16100,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.138,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7397,9025,16103,16100,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.0588236,8.3734255,0,17,0,-11.354692,0,3,2,2021,7,0,25,23,1,0,0,18.249029,18.249029,0,0,0,0,0,0,0,2,1,1,0,6.9771023,0,57.06,57.76,56.47,59.4,8.333333333333334,1,1,0,0,8,10,4,1,414.5,741488.25,500939.13,449798.63,164907.48,0,0,4441.5503 +7398,9026,16104,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1035.2773,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.81,40.59,-9,-9,1.666666666666667,1,1,0,1,8,5,1,1,180,4395.6182,0,0,0,-1367.4353,1452.9495,773.37164 +7399,9027,16105,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.90382,8.6014433,0,0,0,-980.89893,0,2,2,2021,12,0,30,30,1,0,0,33.297489,33.297489,.05,.05,0,0,0,0,0,0,0,0,0,8.9976234,0,65.06,41.58,-9,-9,6.666666666666667,1,1,0,0,7,11,5,1,354,30479.559,91110.43,111427.41,85634.664,7817.9565,0,5481.0278 +7400,9028,16106,-9,16107,16108,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.16266,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,349,665364.38,136833.66,337155.72,144483.19,-258.93405,0,4453.5186 +7400,9028,16107,16108,-9,-9,1,0,29,1,1,0,1,1,-9,0,5,8.5635357,8.5136347,0,6,-3,-29.285841,0,-9,-9,2021,8,0,40,40,1,0,0,15.494257,15.494257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,49.86,55.31,8.333333333333334,1,1,0,0,6,12,5,1,349,665364.38,136833.66,337155.72,144483.19,-258.93405,0,4453.5186 +7400,9028,16108,16107,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,9.1326437,9.4489012,0,6,3,113.63326,0,2,2,2021,11,2,38,40,1,2,0,23.79093,23.79093,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,51.73,58.82,8.333333333333334,1,1,0,0,7,12,5,1,349,665364.38,136833.66,337155.72,144483.19,-258.93405,0,4453.5186 +7401,9029,16109,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-899.4151,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.61532843,0,54.73,38.17,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,282,-20906.309,0,0,0,2329.9275,0,545.48724 +7402,9030,16110,-9,16111,16112,1,1,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-936.53308,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7402,9030,16111,16112,-9,-9,1,0,35,0,2,0,1,1,0,0,4,0,0,0,2,-2,-56.675846,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1379614,0,33.49,64.26000000000001,34.79,58.34,6.666666666666667,1,1,0,0,9,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7402,9030,16112,16111,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.4880848,8.4539175,0,2,2,-87.258682,0,-9,-9,2021,12,0,43,38,1,0,0,12.70111,12.70111,.05,.05,0,0,0,0,0,2,1,1,0,0,0,34.79,58.34,33.49,64.26000000000001,8.333333333333334,1,1,0,0,10,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7402,9030,16113,-9,16111,16112,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.89868,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,956,213561.09,-63277.844,349086.63,200542.28,17153.477,0,1596.1106 +7403,9031,16114,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.5858383,6.3578868,0,0,-1023.601,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3518796,6.3038664,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,768,441953.03,289093.66,236240.69,0,0,0,361.49606 +7404,9032,16115,16116,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.7833509,8.2053375,0,41,-3,-38.950745,0,3,3,2021,12,0,25,25,1,0,0,11.428738,11.428738,.05,.05,0,0,0,0,0,0,0,0,0,.29754746,0,54.74,57.22,57.16,56.15,8.333333333333334,1,1,0,0,13,9,5,1,452,845372.44,245263.05,351094.06,0,0,-762.53314,3423.7651 +7404,9032,16116,16115,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.6506243,8.726737,0,12,3,-36.657413,0,-9,-9,2021,8,0,50,40,1,0,0,13.269341,13.269341,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.74,57.22,8.333333333333334,1,1,0,0,13,9,5,1,452,845372.44,245263.05,351094.06,0,0,-762.53314,3423.7651 +7404,9033,16117,-9,16115,16116,1,0,31,0,0,0,2,2,-9,0,3,7.8028703,7.7520771,0,0,0,-1004.3281,0,2,2,2021,12,2,41,40,1,2,1,6.9422407,6.9422407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,13,9,3,1,490,90250.039,-29842.912,0,0,0,0,1351.2811 +7405,9034,16118,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0642405,8.1129293,0,0,0,-1032.7538,0,1,2,2021,12,1,38,38,1,1,1,8.5715141,8.5715141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.76,57.81,-9,-9,8.333333333333334,1,1,0,0,3,9,4,0,987,-69950.25,-66228.07,0,0,0,0,1324.743 +7405,9035,16119,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1004.6677,0,1,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0907041,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,9,1,0,1971,230486.03,0,0,0,0,0,-253.81404 +7406,9036,16120,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,8.1883917,8.1716671,0,0,-1154.4668,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7193527,7.7637506,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1535,335895.81,109071.05,105414.38,0,0,0,1700.2227 +7407,9037,16121,16122,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,6.3437028,6.2017536,0,1,-4,-98.143303,-9,-9,-9,2021,12,0,12,0,1,0,0,5.8095021,5.8095021,0,0,0,0,0,0,0,0,0,0,0,1.6114279,0,32.61,51.57,54.1,59.11,3.333333333333333,1,1,0,0,0,12,4,1,570,184260.83,166.83398,145650.84,82062.094,0,557.82471,4087.5022 +7407,9037,16122,16121,-9,-9,1,1,31,0,0,0,1,1,1,0,5,8.9979477,8.5374594,0,1,4,-94.975166,-9,1,1,2021,5,0,48,0,1,0,0,12.439248,12.439248,.05,.05,0,0,0,0,0,0,0,0,0,8.4472742,0,54.1,59.11,32.61,51.57,8.333333333333334,1,1,0,0,3,12,4,1,570,184260.83,166.83398,145650.84,82062.094,0,557.82471,4087.5022 +7407,9038,16123,-9,-9,-9,1,1,24,0,0,1,1,0,0,0,4,0,0,0,0,0,-1218.9039,-9,-9,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.87,64.32000000000001,-9,-9,5,1,1,0,0,0,12,1,1,563,-135289.53,0,0,0,0,0,0 +7408,9039,16124,16125,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,0,0,0,1,-10,0,-9,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,37.25,57.25,62.4,25.39,3.333333333333333,4,2,1,1,5,9,1,0,835,44278.234,80791.211,0,0,0,0,221.00832 +7408,9039,16125,16124,-9,-9,1,0,43,0,0,0,2,2,-9,0,2,0,0,0,1,10,0,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,62.4,25.39,37.25,57.25,5,1,1,1,1,0,9,1,0,835,44278.234,80791.211,0,0,0,0,221.00832 +7409,9040,16126,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.9341893,6.9617739,0,0,-1031.1672,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9817283,6.7782426,58.32,50.22,-9,-9,10,1,1,0,0,0,2,2,1,1056,653333.44,470078.59,97424.25,0,0,0,508.84845 +7410,9041,16127,-9,16128,16129,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.75208,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1041.3334,1729428,230718.78,953646.06,0,0,0,4283.3037 +7410,9041,16128,16129,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,7.9940925,8.1240511,0,4,2,73.420181,0,-9,-9,2021,11,1,30,31,1,1,0,19.404636,19.404636,0,0,0,0,0,0,0,2,1,1,0,0,0,55.2,43.52,33.55,62.9,8.333333333333334,1,1,0,0,4,10,5,1,1041.3334,1729428,230718.78,953646.06,0,0,0,4283.3037 +7410,9041,16129,16128,-9,-9,1,1,32,1,1,0,1,1,-9,0,4,8.9985886,9.0445795,0,4,-2,-59.051571,0,2,2,2021,18,8,37,38,1,8,0,21.403027,21.403027,.05,.05,0,0,0,0,0,0,1,1,0,2.3312514,0,33.55,62.9,55.2,43.52,8.333333333333334,1,1,0,0,8,10,5,1,1041.3334,1729428,230718.78,953646.06,0,0,0,4283.3037 +7411,9042,16130,-9,16132,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.47443,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,523.33331,89843.219,8899.25,225727.81,157825.83,0,0,1613.594 +7411,9042,16131,-9,16132,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6018,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,523.33331,89843.219,8899.25,225727.81,157825.83,0,0,1613.594 +7411,9042,16132,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.0324106,7.7066669,0,0,0,-1054.3882,0,2,2,2021,15,3,29,35,1,3,0,13.223505,13.223505,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.09,51.81,-9,-9,6.666666666666667,1,1,0,0,13,2,3,0,523.33331,89843.219,8899.25,225727.81,157825.83,0,0,1613.594 +7412,9043,16133,16134,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,48,-2,-103.89658,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.135653,0,48.87,58.55,55.76,44.76,8.333333333333334,1,1,0,0,9,2,2,1,590,350483.63,124973.91,167436.11,0,0,0,2087.8069 +7412,9043,16134,16133,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.2962666,7.4733768,48,2,30.680273,0,3,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1938252,7.0189848,55.76,44.76,48.87,58.55,8.333333333333334,1,1,0,0,0,2,2,1,590,350483.63,124973.91,167436.11,0,0,0,2087.8069 +7413,9044,16135,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.1005201,7.9056292,0,0,0,-956.44141,0,-9,-9,2021,6,0,40,40,1,0,0,10.88436,10.88436,0,0,0,0,0,0,0,0,1,1,0,0,0,51.31,49.39,-9,-9,8.333333333333334,1,1,0,0,6,11,4,1,591,92262.445,0,0,0,0,0,788.03979 +7414,9045,16136,-9,16137,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.75977,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,693.66669,609859.81,372686.81,341524.53,40960.379,0,0,1358.5258 +7414,9045,16137,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.9388185,8.1392431,0,0,0,-1056.3733,0,2,2,2021,6,0,40,37,1,0,0,7.4630666,7.4630666,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,1,8,10,3,0,693.66669,609859.81,372686.81,341524.53,40960.379,0,0,1358.5258 +7414,9045,16138,-9,16137,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-914.1535,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,10,3,0,693.66669,609859.81,372686.81,341524.53,40960.379,0,0,1358.5258 +7415,9046,16139,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.1417675,8.0903654,0,0,-1003.4868,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8580279,8.0780544,54.04,33.04,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,447,546736.31,401150.31,191711.08,0,654.82898,0,1828.6968 +7416,9047,16140,16141,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,8.9137135,9.2084866,0,9,0,-47.297997,0,-9,-9,2021,7,0,43,43,1,0,0,19.341423,19.341423,.05,.05,0,0,0,0,0,0,0,0,0,8.7004147,0,57.92,51.82,60.12,54.8,8.333333333333334,2,3,0,0,5,8,5,1,1616,1501741.4,1280996.5,678450.31,460565.06,0,0,8411.2051 +7416,9047,16141,16140,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.4978895,9.0049047,0,14,0,-33.340267,0,2,2,2021,8,0,42,45,1,0,0,34.084118,34.084118,.05,.05,0,0,0,0,0,0,0,0,0,4.9288988,0,60.12,54.8,57.92,51.82,8.333333333333334,2,3,0,0,7,8,5,1,1616,1501741.4,1280996.5,678450.31,460565.06,0,0,8411.2051 +7417,9048,16142,16143,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6386175,7.9349475,0,40,-3,27.80492,0,3,3,2021,23,11,35,30,1,11,0,9.1018286,9.1018286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.8,45.51,50,49,6.666666666666667,1,1,0,0,8,9,4,1,494,518869.28,306708.41,183967.88,0,0,0,2610.5889 +7417,9048,16143,16142,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.7495599,8.3691263,5.5141459,40,3,15.357996,0,3,3,2021,10,0,40,45,1,1,0,9.2009325,9.2009325,.05,.05,0,0,0,0,0,0,0,0,0,0,5.5546041,50,49,33.8,45.51,7,1,1,0,0,1,9,4,1,494,518869.28,306708.41,183967.88,0,0,0,2610.5889 +7418,9049,16144,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.435039,6.5784774,0,0,-944.81824,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2779217,6.4584851,47.79,53.79,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2489,253676.08,-99780.328,0,0,0,0,1108.0339 +7419,9050,16145,-9,16147,16146,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-913.26447,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,2,3,-9,0,0,8,1,0,475.33334,637296.56,72149.219,349221.5,0,0,0,2036.2178 +7419,9050,16146,16147,-9,-9,1,1,54,0,1,0,3,3,-9,0,2,0,0,0,34,4,0,0,2,1,2021,24,12,0,0,3,12,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,36.52,22.6,51,54,1.666666666666667,2,3,1,1,0,8,1,0,475.33334,637296.56,72149.219,349221.5,0,0,0,2036.2178 +7419,9050,16147,16146,-9,-9,1,0,50,0,1,0,3,3,-9,1,4,0,0,0,34,-4,0,0,2,1,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51,54,36.52,22.6,8,2,3,0,1,0,8,1,0,475.33334,637296.56,72149.219,349221.5,0,0,0,2036.2178 +7419,9051,16148,-9,16147,16146,1,0,26,0,1,0,2,2,-9,0,4,8.3955393,8.3981295,0,0,0,-849.8136,0,1,2,2021,11,0,43,43,1,2,1,9.0667782,9.0667782,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,1,3,8,4,0,1005,145340.08,0,0,0,-846.255,0,1185.5355 +7419,9052,16149,-9,16147,16146,1,1,25,0,1,0,2,2,1,0,3,8.1575718,8.2985125,0,0,0,-1036.579,-9,2,2,2021,12,0,50,0,1,0,1,10.785395,10.785395,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,2,3,0,0,4,8,4,0,1109,348440.78,0,386574.88,98171.289,0,0,2101.8225 +7420,9053,16150,16151,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,8.8188047,9.0967512,7.5548611,6,-2,171.03909,-9,-9,-9,2021,8,0,45,0,1,0,0,12.847249,12.847249,0,0,0,0,0,0,0,0,1,1,0,7.2421508,7.9831634,56,52,48.25,45.62,8,1,1,0,0,1,9,5,1,1208.5,823196,-3849.7188,453609.13,0,0,9026.5371,5111.2002 +7420,9053,16151,16150,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,4.3729177,4.1711593,45,2,43.767685,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.79373646,4.4141526,48.25,45.62,56,52,8.333333333333334,1,1,0,0,0,9,5,1,1208.5,823196,-3849.7188,453609.13,0,0,9026.5371,5111.2002 +7420,9054,16152,-9,16151,16150,1,0,33,0,0,0,2,2,-9,0,4,7.5087452,7.4775991,0,0,0,-1082.6382,-9,2,2,2021,11,0,40,0,1,2,1,5.9809752,5.9809752,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,9,3,1,5431,-61640.602,0,0,0,0,0,1544.3578 +7421,9055,16153,16155,-9,-9,1,0,44,0,2,0,2,2,-9,0,1,0,0,0,1,-21,-54.737972,-9,-9,-9,2021,20,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.62,22.93,51,49,5,2,3,0,0,2,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16154,-9,16153,16155,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-989.99512,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16155,16153,-9,-9,1,1,65,0,2,0,2,2,-9,0,3,6.4892006,6.4804988,0,1,21,51.875031,-9,2,2,2021,10,0,40,0,1,1,0,1.6626393,1.6626393,0,0,0,0,0,0,0,0,1,0,1,7.9350791,0,51,49,30.62,22.93,7,2,3,0,0,1,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16156,-9,16153,16155,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.47247,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9055,16157,-9,16153,16155,1,0,17,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1163.7487,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,-9,-9,8.333333333333334,2,3,0,1,0,8,2,0,1298.8,909579.31,214914.14,499375.53,0,0,0,1808.8771 +7421,9056,16158,-9,16153,16155,1,0,25,0,2,0,3,3,-9,0,4,7.6849251,7.7260337,0,0,0,-1034.8907,-9,2,2,2021,7,0,35,0,1,0,1,8.4466362,8.4466362,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,5,8,3,0,1775,70240.672,0,0,0,0,0,463.25195 +7421,9057,16159,-9,16153,16155,1,0,21,0,2,0,2,2,-9,0,4,8.0693874,8.2996292,0,0,0,-963.24969,-9,2,2,2021,11,2,20,0,1,2,1,14.817789,14.817789,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.92,58.3,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,1206,99237.195,73803.031,0,0,0,0,1536.4128 +7421,9058,16160,-9,16153,16155,1,0,19,0,2,0,2,2,-9,0,3,6.6487312,6.9158058,0,0,0,-1143.848,-9,2,2,2021,6,0,15,0,1,0,1,5.6640253,5.6640253,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,8.333333333333334,2,3,0,0,2,8,2,0,1020,-15012.438,0,0,0,0,2068.0498,-372.65787 +7422,9059,16161,16162,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.8917642,7.7052932,0,4,3,87.078369,0,3,3,2021,11,2,26,23,1,2,0,8.9128113,8.9128113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.73,53.98,55.3,55.6,8.333333333333334,1,1,0,0,11,11,4,1,1536.5,463298.25,181100.06,234773.81,0,18055.16,0,2474.3071 +7422,9059,16162,16161,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3756733,8.3199301,0,4,-3,-43.729866,0,3,2,2021,9,0,44,44,1,0,0,11.428653,11.428653,.05,.05,0,0,0,0,0,0,0,0,0,1.2993594,0,55.3,55.6,55.73,53.98,8.333333333333334,1,1,0,0,11,11,4,1,1536.5,463298.25,181100.06,234773.81,0,18055.16,0,2474.3071 +7422,9060,16163,-9,16161,16162,1,0,22,0,0,0,2,2,-9,0,4,7.7757106,7.6854544,0,0,0,-902.87726,-9,2,2,2021,12,0,39,0,1,0,1,7.3165421,7.3165421,0,0,0,0,0,0,0,0,0,0,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,345,112544.55,0,0,0,0,1545.8616,637.86829 +7423,9061,16164,16165,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,6.2488604,6.3782301,31,14,64.688576,0,1,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4884448,6.2590809,29.76,48.39,65.54000000000001,33.23,8.333333333333334,1,1,0,0,11,10,3,1,1077,1025326.3,96179.398,454193.06,0,0,0,3690.6587 +7423,9061,16165,16164,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,8.1219006,7.5911188,31,-14,12.094573,0,3,3,2021,8,1,0,13,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4995918,8.0457287,65.54000000000001,33.23,29.76,48.39,6.666666666666667,4,2,0,0,12,10,3,1,1077,1025326.3,96179.398,454193.06,0,0,0,3690.6587 +7424,9062,16166,-9,-9,-9,1,1,26,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1022.0192,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,10,1,1,1,0,0,5,1,0,297,-54822.762,0,0,0,0,0,676.23285 +7425,9063,16167,16168,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,6.9458323,6.6270061,8,10,-90.148064,0,-9,-9,2021,9,0,0,40,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.180325,6.5747476,52.24,50.75,40.38,34.42,6.666666666666667,3,4,0,0,7,10,3,1,497.5,853080.75,769819.25,183342.78,9141.2207,4802.4502,0,1795.4474 +7425,9063,16168,16167,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.314146,8.0353003,0,37,-10,40.764858,0,3,3,2021,22,10,37,37,1,10,0,8.2313557,8.2313557,0,0,0,0,0,0,0,2,1,1,0,0,0,40.38,34.42,52.24,50.75,5,3,4,0,0,9,10,3,1,497.5,853080.75,769819.25,183342.78,9141.2207,4802.4502,0,1795.4474 +7426,9064,16169,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4647436,7.2006121,0,0,-998.40906,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1364732,7.6406612,55.26,42.1,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,618,594549.44,105575.94,597780.56,0,0,0,1760.1699 +7427,9065,16170,16171,-9,-9,1,0,51,0,0,0,1,1,-9,1,4,0,0,0,6,-17,-8.0928326,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9298385,0,18.62,65.65000000000001,57.8,50.59,6.666666666666667,1,1,0,0,0,4,2,1,182,607426.75,308712.19,198459.47,0,0,0,1381.176 +7427,9065,16171,16170,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,6.2901597,6.672852,6,17,-83.459282,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0018325,6.4209704,57.8,50.59,18.62,65.65000000000001,8.333333333333334,1,1,0,0,7,4,2,1,182,607426.75,308712.19,198459.47,0,0,0,1381.176 +7428,9066,16172,16173,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,0,0,1,1,0,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,52,57.16,56.15,8,1,1,0,0,0,12,1,0,289.5,69856.742,0,0,0,0,0,1337.3496 +7428,9066,16173,16172,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,41,-1,0,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56,52,8.333333333333334,1,1,0,0,8,12,1,0,289.5,69856.742,0,0,0,0,0,1337.3496 +7429,9067,16174,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,5.7669549,5.9613366,0,0,-927.52338,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5792346,5.9783273,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,12,5,2,1,1266,323060.97,127098.01,63530.297,0,0,0,1255.3823 +7430,9068,16175,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,7.3512044,7.321753,0,0,0,-935.29193,0,2,2,2021,21,9,50,58,1,9,0,2.9355931,2.9355931,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.44,60.02,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,1096,-172511.03,26387.553,0,0,0,0,895.51508 +7430,9068,16176,-9,16175,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1034.4095,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,5,2,1,1096,-172511.03,26387.553,0,0,0,0,895.51508 +7431,9069,16177,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,2.8037336,2.854254,0,0,-982.75336,0,3,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2.5221348,25.07,32.4,-9,-9,5,1,1,0,0,0,9,2,0,541,21143.168,-6080.9702,0,0,0,0,1601.5934 +7432,9070,16178,16179,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.7937093,6.0336838,45,2,-37.053799,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,6.02033,6.1930246,60.2,39.82,56.41,15.43,8.333333333333334,1,1,0,0,4,7,2,1,1595,1207903.3,110018.03,989163,0,0,0,2875.8953 +7432,9070,16179,16178,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,45,-2,-3.5711577,0,-9,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.41,15.43,60.2,39.82,8.333333333333334,1,1,0,0,0,7,2,1,1595,1207903.3,110018.03,989163,0,0,0,2875.8953 +7433,9071,16180,16181,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.8131819,9.4975138,8.6184416,31,-10,28.343668,0,3,3,2021,9,0,30,20,1,0,0,30.404926,30.404926,.05,.05,0,0,0,0,0,0,1,1,0,3.3915579,8.5147905,45.49,58.84,57.33,53.46,8.333333333333334,3,4,0,0,9,10,5,1,1513,1820792.6,612167.25,260039.91,0,0,0,6534.9355 +7433,9071,16181,16180,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.5386519,7.8482542,7.2375646,31,10,-33.414349,0,-9,-9,2021,7,0,30,30,1,0,0,6.8212323,6.8212323,.05,.05,0,0,0,0,0,0,1,1,0,6.9828825,6.8929577,57.33,53.46,45.49,58.84,8.333333333333334,1,1,0,0,9,10,5,1,1513,1820792.6,612167.25,260039.91,0,0,0,6534.9355 +7434,9072,16182,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,2,7.7497053,7.7171597,0,0,0,-1050.6105,0,3,3,2021,17,5,38,0,1,5,0,8.4042635,8.4042635,0,0,0,0,0,0,0,0,0,0,0,0,0,37.44,35.75,-9,-9,8.333333333333334,2,3,0,0,5,8,3,0,148,269037.06,96935.82,404709.5,42474.207,0,6879.9497,1092.6273 +7435,9073,16183,-9,16184,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1038.6555,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,0,547.5,43291.586,73356.227,0,0,0,0,836.65405 +7435,9073,16184,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,1,7.1903496,7.0505323,4.9425559,0,0,-1105.5566,0,2,2,2021,18,6,21,27,1,6,0,5.6756744,5.6756744,0,0,0,0,0,0,0,105,1,1,0,4.9116054,0,31.86,35.73,-9,-9,5,1,1,0,0,7,13,2,0,547.5,43291.586,73356.227,0,0,0,0,836.65405 +7435,9074,16185,-9,16184,-9,1,1,22,0,1,0,2,2,-9,1,3,6.998251,6.8719759,0,0,0,-1039.9978,0,2,-9,2021,13,3,40,16,1,3,1,3.1435702,3.1435702,0,0,0,0,0,0,0,0,1,1,0,0,0,47.72,43.4,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,300,0,0,0,0,0,0,891.42865 +7436,9075,16186,16187,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.6001668,7.7964249,41,-2,59.008949,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9067428,7.2667928,57.16,56.15,56.77,52.22,10,1,1,0,0,0,10,4,1,171.5,1967133,1080118.3,374790.38,0,0,0,4003.7898 +7436,9075,16187,16186,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.8647361,8.7449923,41,2,-11.095589,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.6491623,0,0,1,1,0,3.3704166,8.1451712,56.77,52.22,57.16,56.15,10,1,1,0,0,0,10,4,1,171.5,1967133,1080118.3,374790.38,0,0,0,4003.7898 +7437,9076,16188,16189,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.5770817,8.8568201,0,30,-2,-41.082371,0,2,3,2021,7,0,43,41,1,0,0,19.610771,19.610771,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,55.19,54.26,8.333333333333334,1,1,0,0,12,1,5,1,619.5,1160139.3,95226.148,688950.38,195877.61,0,0,5727.9531 +7437,9076,16189,16188,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.0691147,9.0496016,0,12,2,-31.672754,0,-9,-9,2021,8,1,48,47,1,1,0,24.1369,24.1369,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,51.73,58.82,5,1,1,0,0,13,1,5,1,619.5,1160139.3,95226.148,688950.38,195877.61,0,0,5727.9531 +7438,9077,16190,-9,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.7435775,7.4612656,0,0,0,-1017.1751,0,3,2,2021,6,0,16,16,1,0,0,13.965623,13.965623,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,43.47,-9,-9,8.333333333333334,3,4,0,0,2,7,2,0,1021.3333,50291.758,0,0,0,0,1353.5018,1969.3718 +7438,9077,16191,-9,16190,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.5715,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,7,2,0,1021.3333,50291.758,0,0,0,0,1353.5018,1969.3718 +7438,9077,16192,-9,16190,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.07208,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,2,0,1021.3333,50291.758,0,0,0,0,1353.5018,1969.3718 +7439,9078,16193,16196,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.8788357,8.7857285,0,26,-2,89.78183,0,2,-9,2021,9,0,37,37,1,0,0,24.821672,24.821672,0,0,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,54.44,51.82,8.333333333333334,4,2,0,0,8,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7439,9078,16194,-9,16193,16196,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1165.595,-9,1,1,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.75,59.47,-9,-9,10,4,2,0,0,3,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7439,9078,16195,-9,16193,16196,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.781,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7439,9078,16196,16193,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.2771339,9.0827112,0,19,2,-71.757179,0,2,2,2021,7,1,60,60,1,1,0,20.161034,20.161034,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.44,51.82,52.23,55.6,6.666666666666667,4,2,0,0,7,6,5,1,328.5,962928.31,493520.91,647302.81,215936.59,0,0,6271.9668 +7440,9079,16197,16199,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.9672937,8.9928331,0,23,0,109.74558,0,2,-9,2021,12,1,44,40,1,1,0,17.64645,17.64645,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.51,47.53,62.49,55.09,6.666666666666667,1,1,0,0,12,8,5,1,374,1152338,249411.83,700349.75,95156.289,0,0,5192.4956 +7440,9079,16198,-9,16197,16199,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-966.25629,-9,2,2,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.404654,0,57.06,57.76,-9,-9,10,1,1,1,0,0,8,5,1,374,1152338,249411.83,700349.75,95156.289,0,0,5192.4956 +7440,9079,16199,16197,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.4065924,8.4197683,0,23,0,125.95567,0,3,2,2021,6,0,38,39,1,0,0,12.999376,12.999376,.05,.05,0,0,0,0,0,0,1,1,0,4.0490961,0,62.49,55.09,37.51,47.53,8.333333333333334,1,1,0,0,12,8,5,1,374,1152338,249411.83,700349.75,95156.289,0,0,5192.4956 +7440,9080,16200,-9,16197,16199,1,0,19,0,1,0,2,2,-9,0,2,8.127306,7.8529882,0,0,0,-989.48633,-9,2,2,2021,12,1,45,0,1,1,1,8.3981924,8.3981924,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.17,51.35,-9,-9,5,1,1,0,0,1,8,4,1,1765,-40873.922,-82642.023,0,0,7617.9385,0,1408.478 +7441,9081,16201,16202,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.7341781,7.7032666,0,1,-5,-65.326599,-9,3,3,2021,14,4,38,0,1,4,0,7.3263659,7.3263659,0,0,0,0,0,0,0,2,1,1,0,0,0,50.15,48.44,52.46,28.38,8.333333333333334,1,1,0,0,8,5,3,1,300,388336.38,47523.375,242914.75,0,0,0,1809.9199 +7441,9081,16202,16201,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.7757792,6.3938327,1,5,-24.428389,-9,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.387785,6.5394936,52.46,28.38,50.15,48.44,8.333333333333334,1,1,0,0,9,5,3,1,300,388336.38,47523.375,242914.75,0,0,0,1809.9199 +7442,9082,16203,16204,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,6.8968987,7.012013,0,1,-1,100.28365,0,3,-9,2021,6,0,23,0,1,0,0,5.2598581,5.2598581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.19,46.16,52,55,10,1,1,0,0,1,11,3,0,497,45290.48,45853.375,0,0,2819.5029,1199.123,1737.7222 +7442,9082,16204,16203,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.2005167,7.8515048,0,1,1,-30.491341,-9,-9,-9,2021,9,0,40,0,1,1,0,6.7939982,6.7939982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,56.19,46.16,8,4,1,0,0,1,11,3,0,497,45290.48,45853.375,0,0,2819.5029,1199.123,1737.7222 +7443,9083,16205,16206,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4519138,8.8277245,0,5,2,4.3773518,0,2,2,2021,11,0,38,37,1,0,0,18.094925,18.094925,.05,.05,0,0,0,0,0,0,0,0,0,6.9154639,0,51.24,58.84,49.04,55.86,1.666666666666667,1,1,0,0,14,13,5,1,344.5,549152.88,63806.93,332510.09,0,0,0,6321.7544 +7443,9083,16206,16205,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.6475887,8.889061,0,5,-2,-106.60882,0,-9,-9,2021,9,0,40,0,1,0,0,25.072992,25.072992,.05,.05,0,0,0,0,0,0,0,0,0,7.4588428,0,49.04,55.86,51.24,58.84,8.333333333333334,1,1,0,0,13,13,5,1,344.5,549152.88,63806.93,332510.09,0,0,0,6321.7544 +7443,9084,16207,-9,16205,16206,1,0,24,0,0,0,1,1,-9,0,4,7.7810783,7.6772656,0,0,0,-977.065,0,2,1,2021,10,2,37,34,1,2,1,8.0860748,8.0860748,0,0,0,0,0,0,0,0,0,0,0,0,0,33.24,65.53,-9,-9,10,1,1,0,0,5,13,3,1,750,122063.74,0,0,0,0,0,627.28613 +7444,9085,16208,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,8.8722763,8.7247944,0,0,0,-934.51636,0,2,2,2021,6,0,40,42,1,0,0,19.541006,19.541006,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,833,625432,500317.19,142713.91,68586.109,0,0,2031.1252 +7445,9086,16209,16210,-9,-9,1,1,45,0,0,0,3,3,-9,0,3,7.9425302,8.1718855,0,7,0,-58.780407,0,3,3,2021,10,0,40,40,1,0,0,9.0653515,9.0653515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.24,46.7,6.666666666666667,1,1,0,0,8,8,4,0,788,402341.69,302813.56,205300.11,61209.188,16973.543,0,2771.1855 +7445,9086,16210,16209,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.2228308,8.0427389,0,7,0,71.339897,0,2,3,2021,10,0,48,48,1,0,0,7.0880213,7.0880213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.24,46.7,57.33,53.46,8.333333333333334,1,1,0,0,8,8,4,0,788,402341.69,302813.56,205300.11,61209.188,16973.543,0,2771.1855 +7445,9087,16211,-9,16210,16209,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1070.3719,0,-9,3,2021,8,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,1,0,1,8,1,0,701,-2878.3069,0,0,0,0,0,0 +7446,9088,16212,-9,-9,-9,1,1,28,0,0,1,1,0,0,0,3,0,0,0,0,0,-1071.4303,-9,1,1,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2092595,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,2,9,1,0,298,-228520.77,0,0,0,0,0,745.16724 +7447,9089,16213,-9,16214,16215,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1121.9442,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,1404.6666,-14530.527,12820.826,50678.449,67685.117,0,5686.3984,1613.4563 +7447,9089,16214,16215,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,5.1047816,4.8337059,0,7,2,54.582104,0,2,3,2021,12,0,15,15,1,0,0,.88646919,.88646919,0,0,0,0,0,0,0,0,1,1,0,0,0,47.19,45.82,45.3,52.04,6.666666666666667,1,1,0,0,4,2,3,0,1404.6666,-14530.527,12820.826,50678.449,67685.117,0,5686.3984,1613.4563 +7447,9089,16215,16214,-9,-9,1,1,27,0,1,0,2,2,-9,0,3,8.0101147,8.2514973,0,7,-2,-119.83379,0,-9,-9,2021,11,0,42,43,1,0,0,7.5869336,7.5869336,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.3,52.04,47.19,45.82,8.333333333333334,1,1,0,0,6,2,3,0,1404.6666,-14530.527,12820.826,50678.449,67685.117,0,5686.3984,1613.4563 +7448,9090,16216,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.5092373,6.0745502,0,0,-1015.8915,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,9.9140434,0,0,1,1,0,0,6.5753098,51,35,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,227,143028.91,121678.06,0,0,0,0,1103.5348 +7449,9091,16217,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1481962,8.0341825,0,0,0,-1051.2562,0,1,2,2021,11,0,45,60,1,0,0,9.4508209,9.4508209,.05,.05,0,0,0,0,0,0,0,0,0,2.7705879,0,48.28,60.18,-9,-9,5,1,1,0,0,9,9,4,1,869,-92403.992,8344.3525,0,0,0,0,419.89597 +7450,9092,16218,16219,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8716965,8.8926668,0,8,12,135.93005,0,3,3,2021,6,1,60,55,1,1,0,11.911701,11.911701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,38.39,48.48,10,1,1,0,0,9,6,5,1,707.5,378328.88,189979.25,88686.984,0,0,0,2964.5952 +7450,9092,16219,16218,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6760545,7.7294555,0,8,-12,-58.79858,0,3,3,2021,19,7,37,0,1,7,0,7.6797142,7.6797142,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.39,48.48,61.28,48.88,8.333333333333334,1,1,0,0,8,6,5,1,707.5,378328.88,189979.25,88686.984,0,0,0,2964.5952 +7450,9093,16220,-9,16219,16218,1,1,20,0,0,0,2,2,-9,0,5,7.2421699,7.3892713,0,0,0,-943.24756,0,2,2,2021,7,0,32,27,1,0,1,5.2838454,5.2838454,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,6,3,1,234,6522.8809,0,0,0,7018.0811,0,997.36969 +7450,9094,16221,-9,16219,16218,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-1044.2098,-9,2,2,2021,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.64,59.49,-9,-9,6.666666666666667,1,1,0,0,3,6,1,1,2914,0,0,0,0,0,0,0 +7451,9095,16222,16223,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,45,5,-105.32597,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2404449,0,53.04,40.76,57.57,49.69,8.333333333333334,1,1,0,0,0,1,2,1,1534,114538.44,29755.893,113202.66,0,0,0,1614.7468 +7451,9095,16223,16222,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.7109756,6.0444689,12,-5,-15.219726,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1705546,5.7273612,57.57,49.69,53.04,40.76,10,1,1,0,0,12,1,2,1,1534,114538.44,29755.893,113202.66,0,0,0,1614.7468 +7452,9096,16224,16225,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.1131043,6.1378131,49,-2,83.980713,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6705127,5.8256555,57.16,56.15,57.16,56.15,10,1,1,0,0,13,10,5,1,578,1746842.3,1148263.8,276793.03,0,12815.809,0,5204.082 +7452,9096,16225,16224,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,8.6828356,8.8959808,7.2343955,49,2,-25.382484,0,3,2,2021,6,0,20,20,1,0,0,35.425289,35.425289,0,0,0,1,0,0,0,0,1,1,0,7.450223,7.148684,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,1,578,1746842.3,1148263.8,276793.03,0,12815.809,0,5204.082 +7453,9097,16226,16227,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.028574,8.0120583,0,6,-14,69.657249,0,-9,-9,2021,3,0,38,40,1,0,0,7.9973149,7.9973149,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,58.3,52.91,10,2,3,0,0,9,8,4,1,838.5,617771.38,421149.94,256330.25,72735.289,996.3277,0,2710.0337 +7453,9097,16227,16226,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.1834049,8.2561598,0,27,14,3.2905955,0,3,3,2021,6,0,42,40,1,0,0,8.913517,8.913517,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.3,52.91,60.12,54.8,10,2,3,0,0,9,8,4,1,838.5,617771.38,421149.94,256330.25,72735.289,996.3277,0,2710.0337 +7453,9098,16228,-9,16226,16227,1,0,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-1041.2267,-9,2,3,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.35,57.84,-9,-9,1.666666666666667,2,3,0,0,1,8,1,1,195,-76134.375,0,0,0,0,0,57.365948 +7453,9099,16229,-9,16226,16227,1,1,21,0,0,1,1,0,0,0,5,0,0,0,0,0,-1079.0082,-9,2,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,164,-161166.59,0,0,0,0,0,-58.802563 +7454,9100,16230,16231,-9,-9,1,0,43,0,1,0,2,2,-9,0,5,6.3274779,6.4743099,0,23,1,-91.205627,0,3,-9,2021,11,2,6,12,1,2,0,10.976051,10.976051,0,0,0,0,0,0,0,2,1,1,0,1.9967194,0,60.6,46.43,53.56,49.66,8.333333333333334,1,1,0,0,5,10,3,1,715.33331,199714.53,-39687.906,163049,107256.18,1978.8572,0,1649.8037 +7454,9100,16231,16230,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.190012,8.5416231,0,23,-1,86.017151,0,2,2,2021,5,0,47,47,1,0,0,11.389394,11.389394,0,0,.05,0,0,0,0,2,1,1,0,1.1658012,0,53.56,49.66,60.6,46.43,8.333333333333334,1,1,0,0,5,10,3,1,715.33331,199714.53,-39687.906,163049,107256.18,1978.8572,0,1649.8037 +7454,9100,16232,-9,16230,16231,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-951.37427,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,715.33331,199714.53,-39687.906,163049,107256.18,1978.8572,0,1649.8037 +7455,9101,16233,-9,-9,-9,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-924.36212,-9,1,1,2021,23,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,864,32217.477,0,0,0,0,0,0 +7456,9102,16234,16235,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,8.6035357,8.858386,8,-1,.58890992,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0840101,8.2139997,48.99,49.19,59.46,46.99,8.333333333333334,1,1,0,0,5,4,5,1,769,1100151.3,997254.94,123474.23,0,0,0,5180.7817 +7456,9102,16235,16234,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5170116,7.7036171,8,1,-22.786524,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8754973,7.1599865,59.46,46.99,48.99,49.19,8.333333333333334,1,1,0,0,7,4,5,1,769,1100151.3,997254.94,123474.23,0,0,0,5180.7817 +7457,9103,16236,16238,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.2227554,8.1797056,0,25,9,83.40239,0,-9,2,2021,12,0,46,43,1,0,0,8.6556454,8.6556454,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.88,47.84,30.94,61.65,3.333333333333333,1,1,0,0,9,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9103,16237,-9,16238,16236,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1045.3824,-9,2,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9103,16238,16236,-9,-9,1,0,39,0,1,0,2,2,-9,0,3,7.8181777,7.9481473,0,5,0,119.86273,0,-9,-9,2021,17,5,38,38,1,5,0,9.0071268,9.0071268,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,48.88,47.84,3.333333333333333,1,1,0,1,9,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9103,16239,-9,16238,16236,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.93494,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,277.25,306418.16,188844,78944.484,38832.262,1932.3116,0,3158.4412 +7457,9104,16240,-9,16238,16236,1,1,21,0,1,0,2,2,0,0,4,0,0,0,0,0,-951.79456,-9,2,2,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,1205,-22348.605,0,0,0,0,0,1019.1471 +7458,9105,16241,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.7950668,8.5282869,0,0,0,-1028.1997,0,3,3,2021,10,0,40,40,1,0,0,12.248711,12.248711,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.97,59.14,-9,-9,5,1,1,0,0,11,13,5,1,880,694487,752342.56,227365.45,0,0,0,1777.2927 +7458,9106,16242,-9,16241,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-994.69135,-9,1,-9,2021,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,58.89,-9,-9,10,1,1,0,0,0,13,1,1,1636,-103798.7,0,0,0,0,0,0 +7459,9107,16243,16244,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.0966043,5.9998951,58,-3,-2.4750514,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.7359538,5.7612753,57.09,46.7,61.43,48.88,8.333333333333334,1,1,0,0,5,2,3,1,215,1362999.3,724350.44,274127.78,0,0,0,3296.1392 +7459,9107,16244,16243,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.9473305,8.0111303,58,3,-138.03886,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.3588219,8.3092184,61.43,48.88,57.09,46.7,10,1,1,0,0,7,2,3,1,215,1362999.3,724350.44,274127.78,0,0,0,3296.1392 +7460,9108,16245,16246,-9,-9,1,1,43,0,0,0,3,3,-9,0,4,8.3845243,8.1833801,0,2,-6,42.399143,0,-9,-9,2021,10,0,30,30,1,0,0,16.107687,16.107687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.37,55.06,36.73,34.91,6.666666666666667,1,1,0,0,10,13,4,0,802,85715.891,893.92969,0,0,0,506.10416,1062.9993 +7460,9108,16246,16245,-9,-9,1,0,49,0,0,0,3,3,-9,0,2,0,0,0,2,6,126.19032,0,2,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.73,34.91,50.37,55.06,3.333333333333333,1,1,1,0,1,13,4,0,802,85715.891,893.92969,0,0,0,506.10416,1062.9993 +7460,9109,16247,-9,16246,16245,1,0,21,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1043.2013,0,3,3,2021,8,0,0,21,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,1,0,1,13,1,0,1562,-85252.656,0,0,0,674.25562,0,565.52155 +7461,9110,16248,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.8806434,8.1823635,6.2954359,0,0,-1015.4751,-9,3,-9,2021,6,1,24,0,1,1,0,15.092561,15.092561,.05,.05,0,0,0,0,0,0,1,1,0,5.8234596,0,47.24,48.72,-9,-9,8.333333333333334,3,4,0,0,3,11,4,0,670,52209.605,65728.945,0,0,13124.847,0,1904.9271 +7462,9111,16249,16250,-9,-9,1,0,78,0,0,0,1,1,-9,0,1,0,8.0118999,7.908216,9,-4,64.932434,-9,2,2,2021,18,0,0,0,4,5,0,0,0,0,0,0,1,2.9175422,0,21.625109,0,1,1,0,7.0062094,8.2446032,40,23,57,51,5,1,1,0,0,0,12,3,1,413,657541.88,427153.75,201010.13,0,1866.845,0,3353.5581 +7462,9111,16250,16249,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,6.2504144,6.3633156,9,4,-42.739693,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.6305522,0,20.752598,120,1,1,0,5.5880008,6.2907238,57,51,40,23,8.333333333333334,1,1,0,0,0,12,3,1,413,657541.88,427153.75,201010.13,0,1866.845,0,3353.5581 +7463,9112,16251,16252,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,0,0,0,30,-21,78.969322,0,3,2,2021,20,8,0,32,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.6829614,0,32.97,32.23,47.38,37.76,1.666666666666667,1,1,0,0,6,4,2,1,989,276183.34,127313.76,157642.53,0,0,0,699.45728 +7463,9112,16252,16251,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2187347,5.6916451,30,21,58.764614,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,3.5139961,0,0,1,1,0,5.2688775,6.21907,47.38,37.76,32.97,32.23,8.333333333333334,1,1,0,0,0,4,2,1,989,276183.34,127313.76,157642.53,0,0,0,699.45728 +7464,9113,16253,-9,16254,16255,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-857.12573,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,5,1,1178.3334,375667.53,100451.38,267111.44,116622.35,1172.7975,0,3862.4583 +7464,9113,16254,16255,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.6497812,8.9289322,0,1,-3,-18.483389,-9,2,2,2021,8,0,35,0,1,0,0,24.018862,24.018862,.05,.05,0,0,0,0,0,2,1,1,0,0,0,61.28,48.88,57.16,56.15,8.333333333333334,2,3,0,0,7,9,5,1,1178.3334,375667.53,100451.38,267111.44,116622.35,1172.7975,0,3862.4583 +7464,9113,16255,16254,-9,-9,1,1,37,0,1,0,1,1,-9,0,4,8.4015455,8.530673,0,1,3,-16.944674,-9,2,2,2021,6,0,39,0,1,0,0,12.310047,12.310047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,61.28,48.88,0,2,3,0,0,8,9,5,1,1178.3334,375667.53,100451.38,267111.44,116622.35,1172.7975,0,3862.4583 +7465,9114,16256,16257,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,8.0111427,8.1576328,21,4,35.705013,0,3,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.5632081,8.1875162,57.16,56.15,39.63,51.79,10,1,1,0,0,9,7,4,1,306.5,241436.16,371528.19,0,0,0,4959.4268,2536.7632 +7465,9114,16257,16256,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.005549,6.8892608,21,-4,-63.35183,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0559793,39.63,51.79,57.16,56.15,1.666666666666667,1,1,0,0,13,7,4,1,306.5,241436.16,371528.19,0,0,0,4959.4268,2536.7632 +7466,9115,16258,16259,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,6.9769769,6.7364078,25,1,10.945439,0,3,2,2021,11,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9346633,57.33,53.46,50.51,48.51,8.333333333333334,1,1,0,0,14,4,2,1,332,752371.5,501876.75,163752.16,0,0,481.37079,1352.9824 +7466,9115,16259,16258,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.0625896,5.9740815,24,-1,3.3986723,0,1,1,2021,12,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7478094,5.7252159,50.51,48.51,57.33,53.46,8.333333333333334,1,1,0,0,14,4,2,1,332,752371.5,501876.75,163752.16,0,0,481.37079,1352.9824 +7467,9116,16260,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.1357765,8.5183439,0,0,0,-1003.6689,0,-9,-9,2021,13,4,8,40,1,4,0,37.337341,37.337341,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,9,7,4,1,110,99961.734,29116.83,0,0,0,0,1185.7772 +7468,9117,16261,-9,16262,16263,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.5663,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7468,9117,16262,16263,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,0,0,0,10,0,0,0,2,1,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3538463,0,16.89,46.92,51.14,60.45,3.333333333333333,1,1,0,0,8,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7468,9117,16263,16262,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,0,0,0,10,0,0,0,2,2,2021,11,0,0,72,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0191617,0,51.14,60.45,16.89,46.92,6.666666666666667,1,1,1,0,11,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7468,9117,16264,-9,16262,16263,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1079.8629,-9,1,2,2021,27,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.54,64.56,-9,-9,0,1,1,0,0,0,7,1,1,682,-36305.652,0,0,0,831.18219,680.92303,-1743.9994 +7469,9118,16265,16266,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,6,1,0,0,-9,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,41.21,51.34,27.23,23.84,6.666666666666667,1,1,0,0,0,2,1,1,762.5,198964.52,-16976.684,204640.86,0,0,0,286.54114 +7469,9118,16266,16265,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,6,-1,0,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,41.938679,0,0,1,1,0,0,0,27.23,23.84,41.21,51.34,5,1,1,0,0,0,2,1,1,762.5,198964.52,-16976.684,204640.86,0,0,0,286.54114 +7470,9119,16267,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.4551082,7.7303538,5.3319626,0,0,-948.73975,0,3,-9,2021,12,2,30,35,1,2,0,5.4822936,5.4822936,.05,.05,0,0,0,0,0,7,1,1,0,5.0942168,0,38.01,50.19,-9,-9,3.333333333333333,4,2,0,1,11,4,3,0,379,13937.249,100464.89,0,0,0,74.84156,1303.9343 +7471,9120,16268,16269,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,0,0,0,8,-5,15.086875,0,3,2,2021,13,3,0,27,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.3305571,0,41.29,56.37,48.87,58.55,6.666666666666667,1,1,1,0,7,5,4,1,682,-39587.652,-39512.059,0,0,17503.373,7541.0195,1993.7776 +7471,9120,16269,16268,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4170198,8.4015265,0,8,5,10.149155,0,3,3,2021,11,0,36,38,1,0,0,16.497599,16.497599,.05,.05,0,0,0,0,0,0,0,0,0,3.1859202,0,48.87,58.55,41.29,56.37,8.333333333333334,1,1,0,0,10,5,4,1,682,-39587.652,-39512.059,0,0,17503.373,7541.0195,1993.7776 +7472,9121,16270,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,6.1697016,6.0430126,0,0,-1038.327,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.710093,63.1,37.54,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,473,26217.924,12118.691,50421.422,0,0,0,1302.4075 +7473,9122,16271,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.676075,5.6635976,0,0,-1033.1213,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3742106,5.6334639,61.68,49.95,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1983,156004.2,-43925.914,82357.992,0,0,0,1053.7754 +7474,9123,16272,16273,-9,-9,1,0,60,0,0,0,1,1,-9,0,1,7.2806745,7.13943,0,41,-6,6.093482,0,3,2,2021,17,5,22,22,1,5,0,6.296989,6.296989,0,0,0,0,0,0,0,7,1,1,0,0,0,32.32,32.77,41.34,56.62,5,1,1,0,0,6,11,3,1,518.5,284587.13,242772.41,151697.34,0,0,0,1235.5841 +7474,9123,16273,16272,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.3741622,6.3545218,41,6,100.13315,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4203205,41.34,56.62,32.32,32.77,8.333333333333334,1,1,0,0,7,11,3,1,518.5,284587.13,242772.41,151697.34,0,0,0,1235.5841 +7474,9124,16274,-9,16272,16273,1,1,35,0,0,0,2,2,-9,0,5,9.4889736,9.8564501,0,0,0,-1047.0774,-9,1,2,2021,7,0,84,0,1,0,1,27.218573,27.218573,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,2,11,5,1,1539,130751.88,-21627.855,0,0,15775.17,0,6018.7437 +7475,9125,16275,16280,-9,-9,1,1,37,0,4,0,2,2,-9,1,4,0,0,0,3,4,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,20.33,36.87,8.333333333333334,1,1,1,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16276,-9,-9,16275,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-984.68304,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16277,-9,16280,-9,1,0,15,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1030.8165,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16278,-9,-9,16275,1,0,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1001.942,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16279,-9,-9,16275,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-963.93671,-9,-9,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7475,9125,16280,16275,-9,-9,1,0,33,0,4,0,2,2,-9,1,2,0,0,0,3,-4,0,0,2,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.33,36.87,54.79,55.86,3.333333333333333,1,1,0,0,0,1,1,0,458.33334,-70196.719,0,0,0,0,658.34393,2652.8071 +7476,9126,16281,-9,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.5419264,7.400147,0,0,-1110.0327,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.7765621,0,22.898594,0,1,1,0,6.2484164,7.5567183,58.45,42.21,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,471,751842,301769.34,707057.25,0,0,0,1389.082 +7477,9127,16282,16283,-9,-9,1,1,36,0,3,0,1,1,-9,0,4,7.0536985,7.3873963,0,10,6,63.782661,0,1,1,2021,9,0,35,40,1,0,0,4.5001025,4.5001025,.05,.05,0,0,0,0,0,0,1,1,0,1.0724242,0,57.16,56.15,48.87,58.55,6.666666666666667,3,4,0,0,9,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16283,16282,-9,-9,1,0,30,0,3,0,1,1,-9,0,4,8.7225971,8.4850626,0,10,-6,20.053028,-9,-9,-9,2021,10,2,42,0,1,2,0,14.313933,14.313933,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,10,1,1,0,0,9,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16284,-9,16283,16282,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-890.51306,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16285,-9,16283,16282,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.4431,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7477,9127,16286,-9,16283,16282,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-903.00647,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,4,0,1296.8,426771.56,189549.14,239865.66,86505.242,5677.7427,0,3215.2092 +7478,9128,16287,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1030.3528,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,-9,-9,10,1,1,0,0,1,5,1,1,374,-47528.84,0,0,0,0,0,479.87253 +7479,9129,16288,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.7517366,7.5744519,0,0,0,-965.20276,0,2,2,2021,9,0,40,40,1,0,1,7.2923951,7.2923951,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,9,3,0,541,-134437.11,0,0,0,0,0,239.52629 +7480,9130,16289,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.4073105,6.3026457,0,0,-1030.9996,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5493932,56.35,21.87,-9,-9,10,1,1,0,0,0,6,2,0,588,303341.06,-26165.988,177697.94,0,0,0,2033.2902 +7481,9131,16290,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1079.4063,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.96,56.44,-9,-9,8.333333333333334,1,1,0,0,12,12,1,1,274,462771.13,61391.258,139783.48,0,0,0,0 +7482,9132,16291,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.914825,5.845355,0,0,-943.45514,0,3,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5036583,5.7842479,41,56.99,-9,-9,6.666666666666667,1,1,0,1,0,4,2,0,724,294574.16,106600.87,0,0,0,0,395.02606 +7483,9133,16292,-9,16293,-9,1,0,17,1,1,0,2,2,1,0,2,0,5.5442986,5.4105058,0,0,-1047.639,-9,2,-9,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6922727,0,27.83,55.3,-9,-9,5,1,1,0,1,0,9,3,0,2204.5,382757.38,225948.33,367775.47,0,0,0,1773.5078 +7483,9133,16293,-9,-9,-9,1,0,50,1,1,0,2,2,-9,0,5,7.6195917,7.8227201,0,0,0,-982.54193,0,3,3,2021,20,9,27,26,1,9,0,8.3714867,8.3714867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.88,66.73999999999999,-9,-9,3.333333333333333,1,1,0,1,7,9,3,0,2204.5,382757.38,225948.33,367775.47,0,0,0,1773.5078 +7483,9134,16294,-9,16293,-9,1,0,25,1,1,0,2,2,-9,0,4,7.6784797,7.9626179,0,0,0,-1143.5568,0,2,-9,2021,7,0,42,43,1,0,1,7.583436,7.583436,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,513,-23849.854,-97328.516,0,0,6103.0903,1632.4159,1654.6591 +7483,9135,16295,-9,16293,-9,1,1,24,1,1,0,2,2,-9,0,5,0,0,0,0,0,-998.56964,0,2,-9,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.059185,0,53.51,60.74,-9,-9,6.666666666666667,1,1,1,0,7,9,2,0,473,-13399.795,0,0,0,0,0,230.57651 +7484,9136,16296,16297,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,8.2564039,8.3339901,0,6,-6,7.6274924,0,2,2,2021,9,0,35,35,1,0,0,11.548284,11.548284,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,59.92,57.06,57.76,8.333333333333334,1,1,0,0,7,11,4,1,226,394456.63,87166.68,314239.25,-3786.0825,0,0,3405.5684 +7484,9136,16297,16296,-9,-9,1,1,50,0,1,0,2,2,-9,0,5,8.4739494,8.4303379,0,6,6,-118.6318,0,2,2,2021,7,0,40,40,1,0,0,14.438642,14.438642,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,49.11,59.92,8.333333333333334,1,1,0,0,7,11,4,1,226,394456.63,87166.68,314239.25,-3786.0825,0,0,3405.5684 +7485,9137,16298,16299,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.9877052,7.6896749,0,8,-15,91.756966,0,-9,-9,2021,8,0,40,37,1,0,0,9.4472818,9.4472818,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,49.07,57.66,3.333333333333333,3,4,0,0,1,7,4,0,524.5,826360.13,721926.88,422126.63,192892.11,342.03461,16701.137,2564.7612 +7485,9137,16299,16298,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,7.9482198,7.5220504,0,16,15,-34.591667,0,2,2,2021,19,7,60,8,1,7,0,6.2760711,6.2760711,.05,.05,0,0,0,0,0,0,0,0,0,.78635079,0,49.07,57.66,51.77,58.57,3.333333333333333,1,1,0,0,10,7,4,0,524.5,826360.13,721926.88,422126.63,192892.11,342.03461,16701.137,2564.7612 +7486,9138,16300,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,0,0,0,0,0,-721.33752,1,2,2,2021,12,0,0,42,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2304573,0,46.65,55.59,-9,-9,8.333333333333334,1,1,0,0,10,6,2,0,2381,-105517.05,42361.734,0,0,0,0,831.2489 +7487,9139,16301,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-966.67175,0,2,1,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,25.68,-9,-9,1.666666666666667,4,2,0,1,0,8,1,0,968,6280.4746,70845.297,176277.45,2680.3594,16.68326,0,2210.6135 +7488,9140,16302,16303,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.0549078,8.3641748,0,9,-4,79.68512,0,2,2,2021,11,2,37,30,1,2,0,13.715351,13.715351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.85,51.26,49.86,55.31,8.333333333333334,1,1,0,0,10,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7488,9140,16303,16302,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.5799789,8.9870768,0,9,4,-95.485855,0,2,1,2021,9,0,38,38,1,0,0,21.880014,21.880014,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.86,55.31,46.85,51.26,8.333333333333334,1,1,0,0,10,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7488,9140,16304,-9,16302,16303,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.1149,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7488,9140,16305,-9,16302,16303,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-873.61859,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,11,5,1,720.75,390133.69,217253.34,208334.33,134272.14,5447.0298,2034.0479,3772.2739 +7489,9141,16306,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.7021136,7.9774494,0,0,0,-996.76318,0,3,3,2021,8,1,25,0,1,1,0,9.9331408,9.9331408,0,0,0,0,0,0,0,0,1,0,1,6.4509139,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,1,6,8,3,0,370,-31051.309,0,0,0,0,0,1852.0433 +7490,9142,16307,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.7183714,8.4150028,0,0,0,-1094.6075,0,2,2,2021,8,0,40,40,1,0,0,15.43356,15.43356,.05,.05,0,0,0,0,0,7,1,1,0,0,0,67.19,37.81,-9,-9,10,1,1,0,0,12,9,5,1,279,132276.89,-73152.445,0,0,0,0,2064.8848 +7491,9143,16308,16311,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,8.5062647,8.7004738,0,6,0,115.0805,0,-9,-9,2021,11,0,24,37,1,1,0,24.135927,24.135927,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,38.24,63.73,7,1,1,0,0,1,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7491,9143,16309,-9,16308,16311,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1138.2656,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7491,9143,16310,-9,16308,16311,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-862.44629,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7491,9143,16311,16308,-9,-9,1,1,39,1,2,0,1,1,-9,0,5,8.4728498,8.8950424,0,12,0,139.70215,0,2,2,2021,20,8,40,45,1,8,0,17.717907,17.717907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.24,63.73,50,55,6.666666666666667,1,1,0,0,7,10,5,1,1007.25,838842.63,707025.63,182287.19,96411.469,0,0,4763.606 +7492,9144,16312,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.3312893,6.5323963,0,0,-1095.7164,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1679723,6.4344354,54.1,59.11,-9,-9,0,1,1,0,0,6,4,2,0,333,285576.81,-3551.5723,0,0,0,0,1024.2864 +7493,9145,16313,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-972.55994,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.34,41.24,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,608,42696.957,0,0,0,0,0,218.47639 +7494,9146,16314,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.675621,8.6958494,0,0,0,-974.94513,0,2,2,2021,6,1,44,45,1,1,0,15.873019,15.873019,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.62,53.79,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,1322,-16371.078,254728.55,87932.688,0,0,0,2396.8574 +7495,9147,16315,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3692217,8.1414604,0,0,0,-1076.3359,0,-9,-9,2021,14,3,44,40,1,3,0,9.0455151,9.0455151,0,0,.05,0,0,0,0,0,0,0,0,2.1632872,0,45.82,54.57,-9,-9,8.333333333333334,1,1,0,0,7,11,4,0,476,-107428.64,39828.27,0,0,0,1338.0178,1595.1073 +7496,9148,16316,16317,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.9911561,6.0838108,51,6,-184.64151,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6953678,6.1326227,49.35,59.64,47.89,56.25,3.333333333333333,1,1,0,0,0,5,2,1,2184.5,352959.03,331391.5,180166.42,0,0,0,1458.8735 +7496,9148,16317,16316,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.1175141,5.1642528,51,-6,51.610706,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6911068,5.1881299,47.89,56.25,49.35,59.64,8.333333333333334,1,1,0,0,0,5,2,1,2184.5,352959.03,331391.5,180166.42,0,0,0,1458.8735 +7497,9149,16318,16320,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.1582651,8.3745098,0,15,9,-104.56035,0,2,2,2021,5,0,35,42,1,0,0,9.7130156,9.7130156,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,1,749.33331,-75619.961,21996.939,0,0,2562.127,366.21338,2767.1025 +7497,9149,16319,-9,16320,16318,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.9402,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,749.33331,-75619.961,21996.939,0,0,2562.127,366.21338,2767.1025 +7497,9149,16320,16318,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.6161766,7.8027844,0,13,0,34.366928,0,2,3,2021,9,0,21,21,1,0,0,9.0424919,9.0424919,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,52.99,51.28,6.666666666666667,1,1,0,0,13,4,4,1,749.33331,-75619.961,21996.939,0,0,2562.127,366.21338,2767.1025 +7498,9150,16321,16322,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,6.2583447,6.4758921,0,7,3,58.042,0,3,3,2021,12,0,11,11,1,0,0,5.5042114,5.5042114,0,0,0,0,0,0,0,27,1,1,0,0,0,47.96,36.6,47.55,33.8,6.666666666666667,1,1,0,0,8,11,2,0,2831.5,311250.25,42411.684,159395,0,1649.8586,0,1573.5757 +7498,9150,16322,16321,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,6.747612,6.8733735,0,7,-3,-11.260024,0,3,-9,2021,6,0,30,0,1,0,0,3.7688069,3.7688069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,33.8,47.96,36.6,6.666666666666667,1,1,0,0,1,11,2,0,2831.5,311250.25,42411.684,159395,0,1649.8586,0,1573.5757 +7498,9151,16323,-9,16321,16322,1,1,39,0,0,0,3,3,-9,1,2,0,0,0,0,0,-960.88116,0,3,2,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.24,56.58,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,1064,32169.854,0,0,0,0,0,698.1391 +7499,9152,16324,16325,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.1897249,7.8402028,6,3,140.25882,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0849106,8.1480579,45.04,52.16,70.39,40.52,8.333333333333334,1,1,0,0,0,13,5,1,1085,1041310.3,851188.94,333818.09,128723.49,0,0,5561.8311 +7499,9152,16325,16324,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,8.2453575,8.5781336,6.2039437,6,-3,-44.409237,0,3,3,2021,6,0,42,48,1,0,0,9.2685556,9.2685556,.05,.05,0,0,0,0,0,0,1,1,0,7.6379662,6.6194777,70.39,40.52,45.04,52.16,8.333333333333334,1,1,0,0,7,13,5,1,1085,1041310.3,851188.94,333818.09,128723.49,0,0,5561.8311 +7500,9153,16326,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.7552481,8.6390638,0,0,0,-1011.5981,0,2,2,2021,6,0,45,42,1,0,1,17.964293,17.964293,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,11,5,5,1,589,28010.275,121258.56,0,0,0,0,2654.4922 +7501,9154,16327,16328,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.6141872,8.7620573,0,35,0,-88.271194,0,3,3,2021,9,0,34,34,1,0,0,15.845958,15.845958,0,0,0,0,0,0,0,0,0,0,0,0,0,51.92,53.03,59.31,44.28,8.333333333333334,1,1,0,0,10,8,5,1,1000.5,271225,72573.078,637605.13,269518.09,10109.701,13053.01,6330.0566 +7501,9154,16328,16327,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5911131,8.9314566,8.2146988,35,0,-147.30826,0,3,3,2021,9,0,36,42,1,0,0,20.463657,20.463657,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8681898,59.31,44.28,51.92,53.03,8.333333333333334,1,1,0,0,6,8,5,1,1000.5,271225,72573.078,637605.13,269518.09,10109.701,13053.01,6330.0566 +7501,9155,16329,-9,16327,16328,1,1,27,0,0,0,2,2,-9,0,4,8.7026157,8.7670727,0,0,0,-987.4093,0,2,2,2021,12,0,42,49,1,0,1,14.901598,14.901598,0,0,0,0,0,0,0,0,0,0,0,0,0,43.14,61.33,-9,-9,6.666666666666667,1,1,0,0,8,8,5,1,1182,24749.289,0,0,0,0,0,1658.4423 +7501,9156,16330,-9,16327,16328,1,0,24,0,0,0,1,1,1,0,4,8.5025835,8.4297123,0,0,0,-930.63837,-9,2,2,2021,5,0,38,0,1,0,1,14.17242,14.17242,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,4,8,4,1,926,-71519.992,89552.117,0,0,26895.961,0,1321.8379 +7502,9157,16331,16332,-9,-9,1,1,89,0,0,0,2,2,-9,0,2,0,9.3007507,9.2816954,39,17,-31.148373,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,15.071879,8.5684881,133.26384,0,1,1,0,7.687655,9.2455845,47.39,34.26,60.87,44.96,6.666666666666667,1,1,0,0,0,7,5,1,353.5,2056326.5,0,1447447.6,0,0,0,7092.1689 +7502,9157,16332,16331,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,40,-17,-10.428786,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5458827,0,60.87,44.96,47.39,34.26,8.333333333333334,1,1,0,0,0,7,5,1,353.5,2056326.5,0,1447447.6,0,0,0,7092.1689 +7503,9158,16333,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,0,6.8328457,7.0709157,0,0,-952.49103,0,3,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7130027,40.48,45.26,-9,-9,3.333333333333333,1,1,0,1,7,7,2,1,194,2488973.5,0,1729201.4,0,0,0,729.16187 +7504,9159,16334,16335,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,63,2,13.775339,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.5,13.1,61.04,28.88,10,1,1,0,0,0,4,2,1,1137.5,100600.91,23239.289,140650.78,0,0,0,1872.816 +7504,9159,16335,16334,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,4.8842278,4.5292163,63,-2,-10.593307,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4862161,4.8838992,61.04,28.88,57.5,13.1,8.333333333333334,1,1,0,0,0,4,2,1,1137.5,100600.91,23239.289,140650.78,0,0,0,1872.816 +7505,9160,16336,16337,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,8.8029289,8.5882626,0,6,1,-29.849285,0,-9,-9,2021,12,1,80,80,1,1,0,6.8698702,6.8698702,.05,.05,0,0,0,0,0,0,1,1,0,5.115006,0,49.63,54.22,28.52,55.04,6.666666666666667,1,1,0,0,11,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7505,9160,16337,16336,-9,-9,1,0,31,1,2,0,2,2,-9,0,3,7.0286579,7.0566273,0,6,-1,62.437981,0,2,2,2021,21,10,24,24,1,10,0,5.4308958,5.4308958,.05,.05,0,0,0,0,0,2,1,1,0,0,0,28.52,55.04,49.63,54.22,8.333333333333334,1,1,0,0,10,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7505,9160,16338,-9,16337,16336,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.23,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7505,9160,16339,-9,16337,16336,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.0271,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,448.5,135972.92,-43403.918,188948.47,153216.45,0,3782.0413,3280.1021 +7506,9161,16340,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.3950815,8.7521553,0,0,0,-1012.9092,0,2,3,2021,24,12,36,36,1,12,0,19.617365,19.617365,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.99,34.34,-9,-9,1.666666666666667,1,1,0,0,12,7,5,0,763,847997.81,300738.13,531473.31,149882.67,0,0,2063.8347 +7507,9162,16341,16342,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.4157391,8.0162945,0,1,-2,111.01768,-9,2,2,2021,12,1,37,0,1,1,0,11.996259,11.996259,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.67,51.26,57.16,56.15,8.333333333333334,1,1,0,0,15,9,5,1,323.5,50575.363,20251.322,0,0,7105.4863,0,3301.9497 +7507,9162,16342,16341,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1066084,8.4311314,0,1,2,2.1113379,-9,-9,-9,2021,7,0,40,0,1,0,0,14.246504,14.246504,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.67,51.26,6.666666666666667,1,1,0,0,15,9,5,1,323.5,50575.363,20251.322,0,0,7105.4863,0,3301.9497 +7508,9163,16343,16344,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,4.3834586,4.7449346,6,-1,55.777267,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.8733063,49.91,31.75,52.3,57.2,10,1,1,0,0,0,1,2,1,268,252032.47,90721.047,118818.41,0,0,0,2066.5698 +7508,9163,16344,16343,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,4.3423405,3.9821076,50,1,-41.484604,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.6604123,4.3000169,52.3,57.2,49.91,31.75,8.333333333333334,1,1,0,0,0,1,2,1,268,252032.47,90721.047,118818.41,0,0,0,2066.5698 +7509,9164,16345,-9,16347,16346,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1172.4727,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,680,-50567.711,22651.025,235184.11,162152.34,12243.759,3314.8574,6672.5635 +7509,9164,16346,16347,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,9.3120518,9.512249,0,8,2,-143.89897,0,-9,-9,2021,5,0,40,40,1,0,0,38.178051,38.178051,.05,.05,0,0,0,0,0,0,0,0,0,4.3788519,0,57.16,56.15,56.68,42.62,8.333333333333334,1,1,0,0,11,10,5,1,680,-50567.711,22651.025,235184.11,162152.34,12243.759,3314.8574,6672.5635 +7509,9164,16347,16346,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.4758005,8.7085581,0,8,-2,-37.342873,0,2,2,2021,11,1,38,38,1,1,0,15.276027,15.276027,0,0,0,0,0,0,0,0,0,0,0,.37415698,0,56.68,42.62,57.16,56.15,8.333333333333334,1,1,0,0,9,10,5,1,680,-50567.711,22651.025,235184.11,162152.34,12243.759,3314.8574,6672.5635 +7510,9165,16348,-9,16349,16351,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.5713,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9165,16349,16351,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.5584974,8.6817493,0,18,0,-73.489677,0,3,3,2021,12,2,34,30,1,2,0,15.820866,15.820866,0,0,0,0,0,0,0,7,1,1,0,0,0,44.81,57.83,57.16,56.15,8.333333333333334,2,3,0,0,9,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9165,16350,-9,16349,16351,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.65118,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9165,16351,16349,16352,-9,1,1,43,0,2,0,2,2,-9,0,4,8.5636473,8.3306932,0,7,0,-65.298012,0,3,3,2021,7,0,30,30,1,0,0,16.176886,16.176886,.05,.05,0,0,0,0,0,2,1,1,0,7.5611625,0,57.16,56.15,44.81,57.83,8.333333333333334,2,3,0,0,9,8,4,0,440,224743.06,1670.6895,456709.81,252853.44,5102.5151,27218.709,4403.8813 +7510,9166,16352,-9,-9,-9,1,0,74,0,2,0,3,3,-9,0,1,0,0,0,0,0,-1010.6043,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,73.94281,155.20871,654.11542,0,1,1,0,0,0,28.2,29.4,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,3650,0,0,0,0,0,0,1009.2229 +7511,9167,16353,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.4779978,8.6786852,0,0,0,-963.91791,0,2,2,2021,7,1,38,20,1,1,0,16.458826,16.458826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.85,41.57,-9,-9,8.333333333333334,3,4,0,0,1,8,5,0,317,888427.56,720094.31,230854.36,35805.621,941.34607,0,1045.0424 +7512,9168,16354,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,9.4709435,9.4223347,0,0,0,-962.76056,0,2,2,2021,18,7,56,50,1,7,0,21.7034,21.7034,.05,.05,0,0,0,0,0,0,0,0,0,.86454058,0,41.73,51.28,-9,-9,5,2,3,0,0,12,7,5,1,5332.5,140232.52,-46183.273,406709.78,112812.5,7624.6392,3680.3535,3762.8486 +7512,9168,16355,-9,16354,-9,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-971.26508,-9,1,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.44,48.84,-9,-9,10,2,3,0,0,0,7,5,1,5332.5,140232.52,-46183.273,406709.78,112812.5,7624.6392,3680.3535,3762.8486 +7512,9169,16356,-9,16354,-9,1,0,19,0,1,0,2,2,-9,0,5,7.4847264,7.5122113,0,0,0,-876.44354,0,1,-9,2021,20,8,35,37,1,8,1,6.4708982,6.4708982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.92,68.08,-9,-9,6.666666666666667,2,3,0,0,1,7,3,1,406,121294.94,-42069.375,0,0,-390.13876,0,508.45007 +7513,9170,16357,16358,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,7.0874333,7.1712017,59,-2,4.0851526,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1628327,7.0859227,59.04,45.74,54.7,43.56,8.333333333333334,1,1,0,0,0,12,4,1,579.5,844000,353711.19,121420.36,0,0,0,2825.2007 +7513,9170,16358,16357,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,8.008913,7.9627929,59,2,83.983139,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,7.8880658,7.8360338,54.7,43.56,59.04,45.74,8.333333333333334,1,1,0,0,0,12,4,1,579.5,844000,353711.19,121420.36,0,0,0,2825.2007 +7514,9171,16359,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,5.420372,5.4626899,0,0,-969.47363,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,.22784303,9.1298513,25.356133,0,1,1,0,4.211082,5.2641673,62.34,25.79,-9,-9,10,1,1,0,0,0,8,2,1,2227,478239.31,165082.64,253185.88,0,0,0,1300.475 +7515,9172,16360,16361,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.756403,4.5972319,27,1,-34.283924,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7546005,4.76547,54.77,42.67,37.32,62.1,8.333333333333334,1,1,0,0,0,10,2,1,351.5,156859.69,48126.813,113437.66,0,0,0,1891.5103 +7515,9172,16361,16360,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,6.7669802,6.9414282,27,-1,-78.005241,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,6.2093549,6.3913569,37.32,62.1,54.77,42.67,10,1,1,0,0,5,10,2,1,351.5,156859.69,48126.813,113437.66,0,0,0,1891.5103 +7516,9173,16362,16363,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7349205,7.4151707,7,4,71.481453,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2890539,54.2,57.49,60.1,28.98,8.333333333333334,1,1,0,0,0,6,2,1,328.5,607728.5,575683.63,74920.867,0,0,834.12317,1734.0029 +7516,9173,16363,16362,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,.68934071,.38148883,7,-4,-78.894974,0,3,3,2021,1,0,0,0,4,0,0,0,0,0,0,0,1,0,28.111546,0,2,1,1,0,0,.64889276,60.1,28.98,54.2,57.49,8.333333333333334,2,3,0,0,5,6,2,1,328.5,607728.5,575683.63,74920.867,0,0,834.12317,1734.0029 +7517,9174,16364,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.4815769,8.5678234,0,0,0,-876.75104,0,-9,-9,2021,8,0,41,41,1,0,0,12.263669,12.263669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.19,51.29,-9,-9,8.333333333333334,1,1,0,0,13,9,4,0,205,565007.25,-72825.414,385078.63,14596.694,0,0,1490.9269 +7518,9175,16365,16366,-9,-9,1,1,41,1,1,0,2,2,-9,0,3,9.6283169,9.7073908,0,6,7,-61.775692,0,2,2,2021,8,1,43,44,1,1,0,30.544138,30.544138,.05,.05,0,0,0,0,0,0,1,1,0,3.9929612,0,52,54.51,50.78,45.45,8.333333333333334,1,1,0,0,8,4,5,1,958.66669,506025.5,435420.56,124972.21,77961.961,0,0,5552.2505 +7518,9175,16366,16365,-9,-9,1,0,34,1,1,0,1,1,-9,0,3,8.3638678,8.5583658,0,6,-7,-36.499199,0,2,1,2021,13,3,38,38,1,3,0,16.197332,16.197332,0,0,0,0,0,0,0,0,1,1,0,2.5120208,0,50.78,45.45,52,54.51,6.666666666666667,1,1,0,0,5,4,5,1,958.66669,506025.5,435420.56,124972.21,77961.961,0,0,5552.2505 +7518,9175,16367,-9,16366,16365,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-929.08649,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,958.66669,506025.5,435420.56,124972.21,77961.961,0,0,5552.2505 +7519,9176,16368,16369,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.0878639,6.9612069,46,-1,-27.242453,0,3,3,2021,6,2,0,0,4,2,0,0,0,0,0,0,1,0,10.088871,0,74.5,1,1,0,0,6.6120448,65.17,21.38,35.21,32.44,3.333333333333333,1,1,0,0,7,7,2,0,970,731077.25,294871.34,293449.06,0,0,0,1527.3997 +7519,9176,16369,16368,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.0871592,6.4775934,46,1,-115.03554,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.9669847,35.21,32.44,65.17,21.38,3.333333333333333,1,1,0,0,7,7,2,0,970,731077.25,294871.34,293449.06,0,0,0,1527.3997 +7520,9177,16370,16372,-9,-9,1,0,27,1,1,0,1,1,-9,0,3,7.9003797,8.2345238,0,3,-2,-58.663624,0,-9,-9,2021,27,11,42,42,1,11,0,8.6854086,8.6854086,.05,.05,0,0,0,0,0,0,1,1,0,6.4547629,0,33.18,60.48,25.4,58.67,3.333333333333333,1,1,0,1,4,11,4,1,661.66669,195804.98,213634.25,0,0,11761.678,0,3778.2422 +7520,9177,16371,-9,16370,16372,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2142,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,661.66669,195804.98,213634.25,0,0,11761.678,0,3778.2422 +7520,9177,16372,16370,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,7.8446226,8.3306589,0,3,2,-22.630083,0,-9,-9,2021,16,4,42,43,1,4,0,9.4804544,9.4804544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.4,58.67,33.18,60.48,5,1,1,0,1,2,11,4,1,661.66669,195804.98,213634.25,0,0,11761.678,0,3778.2422 +7521,9178,16373,16374,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,7.8813396,7.9771848,45,0,143.56618,0,3,2,2021,18,6,0,19,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2382126,8.0401945,60.6,38.22,49.95,52.47,8.333333333333334,1,1,0,0,7,5,4,1,230.5,520729.81,274508.47,285516.41,0,12283.066,0,4110.9556 +7521,9178,16374,16373,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,8.325881,7.9912124,45,0,56.281925,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4099655,7.960546,49.95,52.47,60.6,38.22,10,1,1,0,0,4,5,4,1,230.5,520729.81,274508.47,285516.41,0,12283.066,0,4110.9556 +7522,9179,16375,-9,-9,-9,1,0,23,0,0,0,3,3,-9,0,3,6.7517371,6.6490798,0,0,0,-878.75861,0,-9,2,2021,7,0,15,14,1,0,0,7.233695,7.233695,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,490,-37155.938,0,0,0,0,0,198.70503 +7522,9180,16376,16377,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,-4,31.457811,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48.26,36.14,53,46,3.333333333333333,1,1,0,0,0,4,2,1,2042,306185.5,52887.133,139416.59,0,0,1894.5154,960.33948 +7522,9180,16377,16376,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,5.9889979,5.8186083,6,4,83.922935,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1538386,53,46,48.26,36.14,8,4,1,0,0,0,4,2,1,2042,306185.5,52887.133,139416.59,0,0,1894.5154,960.33948 +7523,9181,16378,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,6.98177,7.0010238,0,0,0,-896.5564,0,-9,-9,2021,12,0,8,8,1,0,0,21.909546,21.909546,.05,.05,0,0,0,0,0,0,1,0,1,2.6176612,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,10,11,3,0,3400,-49246.762,16894.133,0,0,0,0,480.65616 +7523,9182,16379,-9,16378,-9,1,0,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-1011.1108,-9,3,-9,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.38,63.46,-9,-9,8.333333333333334,1,1,0,0,6,11,1,0,507,0,0,0,0,0,0,0 +7523,9183,16380,-9,16378,-9,1,0,31,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1094.4147,0,3,-9,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39,42,-9,-9,6.666666666666667,1,1,0,1,0,11,1,0,247,26178.186,0,0,0,0,0,452.48285 +7524,9184,16381,16382,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.9753284,7.7120957,0,4,0,12.585815,0,-9,-9,2021,7,0,22,29,1,0,0,20.652121,20.652121,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,36.37,61.5,6.666666666666667,1,1,0,0,8,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7524,9184,16382,16381,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.1768608,8.6634626,0,4,0,-129.07391,-9,1,1,2021,17,6,44,0,1,6,0,11.151942,11.151942,.05,.05,0,0,0,0,0,0,1,1,0,1.9633421,0,36.37,61.5,45.91,59.89,3.333333333333333,1,1,0,0,10,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7524,9184,16383,-9,16381,16382,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8226,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7524,9184,16384,-9,16381,16382,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.0265,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,560.25,99394.344,54785.973,171879.63,122129.75,0,2311.1665,2865.2456 +7525,9185,16385,16387,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.0121241,7.9997988,0,3,0,20.568621,0,-9,-9,2021,23,11,30,41,1,11,0,10.959287,10.959287,0,0,0,0,0,0,0,0,1,1,0,0,0,23.12,51.6,54.79,55.86,3.333333333333333,1,1,0,0,3,9,5,1,333.66666,-82956.438,34718.664,0,0,0,0,4198.0474 +7525,9185,16386,-9,16385,16387,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.5862,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,5,1,333.66666,-82956.438,34718.664,0,0,0,0,4198.0474 +7525,9185,16387,16385,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.673089,8.5760889,0,3,0,63.441029,0,2,1,2021,8,0,35,35,1,0,0,17.771269,17.771269,.05,.05,0,0,0,0,1.8432318,0,1,1,0,3.0112538,0,54.79,55.86,23.12,51.6,6.666666666666667,1,1,0,0,8,9,5,1,333.66666,-82956.438,34718.664,0,0,0,0,4198.0474 +7526,9186,16388,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,8.1895523,8.015624,0,0,0,-1061.0817,0,2,2,2021,23,8,35,35,1,8,0,14.003076,14.003076,.05,.05,0,1,0,5.1163149,0,0,0,0,0,.1068279,0,37,25,-9,-9,1.666666666666667,1,1,0,0,11,2,4,1,1943,1331782.5,1111594.1,282067.59,0,0,0,1347.7428 +7526,9187,16389,-9,16388,-9,1,0,32,0,0,0,1,1,-9,0,2,7.8475657,7.9176846,4.908462,0,0,-1010.0378,0,2,1,2021,26,11,38,0,1,11,0,7.1079946,7.1079946,.05,.05,0,0,0,0,0,0,0,0,0,4.917254,0,39.72,23.74,-9,-9,5,1,1,0,0,11,2,3,1,552,260854.33,62304.715,111918.41,0,0,1442.4648,1136.9985 +7527,9188,16390,-9,16391,16392,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.93427,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,684,113360.36,190730.69,149840.47,103664.23,14148.28,0,3916.2214 +7527,9188,16391,16392,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.5342922,7.8499308,0,5,-2,-59.029892,0,2,2,2021,6,0,16,20,1,0,0,12.999652,12.999652,.05,.05,0,0,0,0,0,0,1,1,0,3.8992348,0,45.63,58.55,57.16,56.15,8.333333333333334,1,1,0,0,6,9,5,1,684,113360.36,190730.69,149840.47,103664.23,14148.28,0,3916.2214 +7527,9188,16392,16391,-9,-9,1,1,33,0,1,0,3,3,-9,0,4,8.9170341,9.3109798,0,5,2,-131.95557,0,-9,-9,2021,9,0,50,56,1,0,0,15.172669,15.172669,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.63,58.55,8.333333333333334,1,1,0,0,6,9,5,1,684,113360.36,190730.69,149840.47,103664.23,14148.28,0,3916.2214 +7528,9189,16393,16394,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.8729792,10.057324,0,3,-6,71.822678,0,-9,-9,2021,8,2,60,40,1,2,0,48.199104,48.199104,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,28.95,62.45,6.666666666666667,1,1,0,0,11,4,5,0,777.5,531956.88,101369.6,374820.91,135369.44,83365.438,0,12689.857 +7528,9189,16394,16393,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.0525723,8.1846275,0,3,6,75.854767,0,-9,-9,2021,27,12,38,0,1,12,0,10.032193,10.032193,.05,.05,0,0,0,0,0,0,0,0,0,9.2270975,0,28.95,62.45,54.2,57.49,1.666666666666667,1,1,0,0,1,4,5,0,777.5,531956.88,101369.6,374820.91,135369.44,83365.438,0,12689.857 +7529,9190,16395,-9,16396,16398,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-936.66803,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16396,16398,-9,-9,1,0,38,1,4,0,1,1,-9,0,2,0,0,0,14,-5,-50.775726,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.032939795,0,1,1,0,0,0,58.56,46.45,58.32,50.22,6.666666666666667,2,3,0,1,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16397,-9,16396,16398,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-998.06561,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16398,16396,-9,-9,1,1,43,1,4,0,3,3,-9,0,3,7.7179551,7.6553464,0,10,5,-97.981354,0,-9,-9,2021,7,0,42,40,1,0,0,5.4644704,5.4644704,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,58.56,46.45,6.666666666666667,2,3,0,1,3,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7529,9190,16399,-9,16396,16398,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-990.5271,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,12,2,1,1002.2,102258.02,41786.418,195452.66,78333.773,3683.1873,287.83173,2256.092 +7530,9191,16400,16401,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.9062233,7.7312322,0,19,-5,11.282313,0,3,3,2021,10,0,36,32,1,0,0,8.8439703,8.8439703,.05,.05,0,0,0,0,0,0,1,1,0,2.365675,0,56.58,49.75,52.38,55.6,8.333333333333334,1,1,0,0,9,7,4,1,2935,555595.5,314949.25,314514.06,98273.719,3055.0171,1008.2308,4814.8237 +7530,9191,16401,16400,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.5450106,8.6076069,6.8806224,16,5,108.12633,0,3,3,2021,12,0,38,37,1,0,0,16.026106,16.026106,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7279811,52.38,55.6,56.58,49.75,6.666666666666667,1,1,0,0,12,7,4,1,2935,555595.5,314949.25,314514.06,98273.719,3055.0171,1008.2308,4814.8237 +7531,9192,16402,16403,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,31,16,53.289402,0,3,3,2021,13,5,0,0,4,5,0,0,0,.05,.05,0,1,0,36.547882,0,2,1,1,0,0,0,47.59,17.43,48.45,36.23,10,1,1,0,1,0,7,2,0,439.5,212302.13,118392.13,237000.47,29841.816,113.26233,0,2050.9924 +7531,9192,16403,16402,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,7.0743065,6.9126396,0,31,-16,88.225822,0,-9,-9,2021,20,8,15,15,1,8,0,9.1129551,9.1129551,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.45,36.23,47.59,17.43,5,1,1,0,0,12,7,2,0,439.5,212302.13,118392.13,237000.47,29841.816,113.26233,0,2050.9924 +7532,9193,16404,16405,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.360817,8.4395227,0,39,2,-102.27294,0,3,3,2021,8,0,48,48,1,0,0,14.937077,14.937077,0,0,0,0,0,0,0,0,0,0,0,0,0,51.64,55.4,48.28,60.18,10,1,1,0,0,9,10,5,1,229.5,1948899.4,552966,1053675.8,0,0,0,3258.0605 +7532,9193,16405,16404,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.0990639,8.3406343,0,38,-2,-89.247108,0,2,3,2021,7,0,45,44,1,0,0,9.5777988,9.5777988,0,0,0,0,0,0,0,0,0,0,0,2.6968629,0,48.28,60.18,51.64,55.4,8.333333333333334,1,1,0,0,9,10,5,1,229.5,1948899.4,552966,1053675.8,0,0,0,3258.0605 +7533,9194,16406,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.7013931,8.9578905,0,0,0,-1022.978,0,2,1,2021,10,0,43,27,1,0,0,16.338087,16.338087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.92,53.1,-9,-9,5,1,1,0,0,9,8,5,1,144,438469.09,-26763.518,550225.44,167429.88,0,3006.4299,2712.2942 +7534,9195,16407,16408,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,8.2035189,7.8994598,5,0,-7.2367363,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0622368,40.71,47.62,46.41,42.57,8.333333333333334,1,1,0,0,2,7,3,1,1263,1579998.5,1006694.4,345384.22,0,0,0,1845.3569 +7534,9195,16408,16407,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,0,0,5,0,-38.176163,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.41,42.57,40.71,47.62,8.333333333333334,1,1,0,0,7,7,3,1,1263,1579998.5,1006694.4,345384.22,0,0,0,1845.3569 +7535,9196,16409,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.689929,7.8628998,5.4572744,0,0,-946.95508,0,2,2,2021,6,0,34,34,1,0,0,7.2839909,7.2839909,0,0,0,0,0,0,0,0,1,1,0,0,5.1346893,64.16,35.24,-9,-9,10,1,1,0,0,12,11,3,1,600,347470.91,1553.6699,293926.56,134065.91,10573.844,1302.5798,1263.0325 +7536,9197,16410,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,5.7051702,5.8437271,0,0,0,-998.53912,0,2,2,2021,10,1,30,30,1,1,0,1.1749988,1.1749988,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,3.333333333333333,1,1,0,1,9,12,2,0,861,541044.5,5693.6416,492535.94,24058.73,0,0,1072.3853 +7537,9198,16411,16412,-9,-9,1,0,57,0,1,0,3,3,-9,0,3,0,0,0,7,1,-79.692459,0,3,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.99,53.98,21.78,41.87,0,1,1,0,1,0,13,3,1,2255.6667,793748.13,454803.13,300360.38,0,0,0,1510.1993 +7537,9198,16412,16411,-9,-9,1,1,56,0,1,0,1,1,-9,0,1,8.1085358,8.2001238,0,7,-1,59.454086,0,2,3,2021,29,12,37,77,1,12,0,9.260107,9.260107,0,0,0,0,0,0,0,0,1,0,1,0,0,21.78,41.87,33.99,53.98,1.666666666666667,1,1,0,1,8,13,3,1,2255.6667,793748.13,454803.13,300360.38,0,0,0,1510.1993 +7537,9198,16413,-9,16411,16412,1,0,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1094.895,-9,3,1,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,1,0,0,13,3,1,2255.6667,793748.13,454803.13,300360.38,0,0,0,1510.1993 +7537,9199,16414,-9,16411,16412,1,0,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1014.9102,0,3,1,2021,2,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.35,59.84,-9,-9,10,1,1,1,0,0,13,1,1,321,105882.26,0,0,0,0,0,-1145.0593 +7537,9200,16415,-9,16411,16412,1,1,19,0,1,0,1,1,1,0,4,0,0,0,0,0,-1008.994,-9,3,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,1,1,1,0,0,13,2,1,2064,-135897.16,158187.48,0,0,0,0,0 +7538,9201,16416,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.0064373,8.3472137,0,0,0,-910.96777,0,2,2,2021,7,0,36,35,1,0,0,13.684533,13.684533,.05,.05,0,0,0,0,0,0,1,1,0,4.9877472,0,55.79,52.62,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,549,130743.47,177165.09,0,0,0,0,869.58838 +7539,9202,16417,-9,16420,16419,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-833.97357,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16418,-9,16420,16419,1,1,16,0,3,1,3,0,0,0,4,0,0,0,0,0,-875.87268,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,58.15,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16419,16420,-9,-9,1,1,53,0,3,0,2,2,-9,0,4,8.2369251,8.1239796,0,8,9,-23.888678,0,2,2,2021,9,0,60,78,1,0,0,6.953784,6.953784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,30.77,64.34,8.333333333333334,1,1,0,0,8,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16420,16419,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,6.5876737,6.6434956,0,8,0,18.791122,0,2,2,2021,20,8,16,16,1,8,0,6.2688885,6.2688885,0,0,0,0,0,0,.58794791,0,1,1,0,0,0,30.77,64.34,48.28,60.18,3.333333333333333,1,1,0,0,5,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7539,9202,16421,-9,16420,16419,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.32642,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,1,982.20001,262482.97,115946.7,307475.25,76234.742,0,0,2142.9341 +7540,9203,16422,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1012.103,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9282227,0,0,1,1,0,0,0,40.14,16.93,-9,-9,5,1,1,0,0,0,7,1,1,268,-108131.25,0,0,0,0,0,333.45697 +7541,9204,16423,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,0,0,0,0,0,-969.2796,-9,2,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,7,11,1,1,447,-145477.83,0,0,0,0,1552.5811,2819.1299 +7542,9205,16424,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.265358,8.2505531,0,0,0,-920.89044,-9,3,3,2021,12,1,40,0,1,1,0,11.07427,11.07427,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,5,1,1,0,0,9,8,4,0,238,-2337.4465,65534.488,0,0,0,0,1709.0103 +7543,9206,16425,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.8884668,8.5236959,0,0,0,-927.62146,0,1,1,2021,12,1,46,45,1,1,0,21.668562,21.668562,.05,.05,0,0,0,0,0,0,0,0,0,1.5269178,0,49.97,53.99,-9,-9,6.666666666666667,1,1,0,0,7,8,5,0,1902,16522.275,-245503.77,0,0,0,0,2612.1519 +7544,9207,16426,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1001.5168,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.43,52.78,-9,-9,5,4,2,1,0,0,10,2,0,660,-46220.133,0,0,0,0,0,929.40009 +7545,9208,16427,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.0340109,7.9348049,0,0,0,-956.7876,0,2,2,2021,5,0,13,12,1,0,0,34.579121,34.579121,.05,.05,0,0,0,0,0,2,0,0,0,7.5906696,0,51.19,52.17,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,472,241336.16,71429.234,202471.08,86306.344,0,1482.8438,1833.5746 +7546,9209,16428,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.7583551,8.6520786,0,0,0,-1044.7555,0,3,3,2021,8,0,60,48,1,0,0,14.679401,14.679401,0,0,.05,0,0,0,0,2,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,10,1,5,1,232,-17551.932,-53582.301,0,0,0,0,2635.9355 +7547,9210,16429,-9,16430,-9,1,1,57,0,0,0,2,2,-9,0,3,5.8853478,5.6927161,0,0,0,-1001.4187,0,2,1,2021,4,0,40,6,1,0,0,1.0817261,1.0817261,0,0,.05,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,10,8,2,1,379,117872.81,31450.549,321536.13,208995.36,0,0,-84.841164 +7547,9211,16430,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.9409361,5.8702669,0,0,-995.44257,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8834682,5.6796923,57.41,29.95,-9,-9,10,1,1,0,0,0,8,2,1,413,62963.137,-73752.617,165166.56,0,0,0,1907.9905 +7548,9212,16431,16434,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.5364437,8.3172579,0,7,-4,88.753334,0,2,2,2021,5,0,46,38,1,0,0,10.323953,10.323953,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,48.87,58.55,8.333333333333334,1,1,0,0,6,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7548,9212,16432,-9,16431,16434,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.59485,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7548,9212,16433,-9,16431,16434,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.87799,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7548,9212,16434,16431,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,9.2625437,9.297802,0,7,4,42.478344,0,2,2,2021,10,0,45,45,1,0,0,21.499792,21.499792,.05,.05,0,0,0,0,0,0,1,1,0,6.9461708,0,48.87,58.55,56.33,51.02,8.333333333333334,1,1,0,0,8,10,5,1,708.75,-9271.5039,-13788.414,249185.73,188710.55,0,4760.3643,5448.3174 +7549,9213,16435,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1190.5101,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,28.39,-9,-9,0,1,1,0,1,0,5,1,0,284,62741.457,96586.93,0,0,0,0,292.61932 +7550,9214,16436,-9,16437,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.01038,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,921.5,34781.672,28875.621,0,0,0,396.87097,1402.907 +7550,9214,16437,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.7329845,8.643137,0,0,0,-1017.1101,0,2,2,2021,10,0,37,37,1,0,0,18.505831,18.505831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.88,53.01,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,921.5,34781.672,28875.621,0,0,0,396.87097,1402.907 +7551,9215,16438,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,4,0,6.6931748,6.5356064,0,0,-1109.7177,0,3,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,4.6743131,0,0,1,1,0,0,6.6435695,42,41.4,-9,-9,10,1,1,0,0,0,5,2,1,236,165151.02,152342.05,155043.63,0,0,0,1147.2648 +7552,9216,16439,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,6.8983021,6.7037754,0,0,0,-1054.1257,0,-9,2,2021,11,1,50,55,1,1,0,1.9737164,1.9737164,0,0,.05,0,0,0,0,0,1,1,0,0,0,58.9,37.87,-9,-9,8.333333333333334,1,1,0,0,12,9,2,0,596,-87614.453,16233.941,0,0,3756.4448,0,527.41119 +7552,9216,16440,-9,-9,16439,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1105.8358,-9,-9,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,596,-87614.453,16233.941,0,0,3756.4448,0,527.41119 +7553,9217,16441,16442,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.1626215,5.847692,42,3,25.901745,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5221024,6.1776371,55.44,52.99,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,641.5,453874.28,156790.17,252542.25,0,0,0,1552.8711 +7553,9217,16442,16441,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7790289,7.1088924,42,-3,56.286652,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5642104,7.0456214,57.16,56.15,55.44,52.99,8.333333333333334,1,1,0,0,6,10,2,1,641.5,453874.28,156790.17,252542.25,0,0,0,1552.8711 +7554,9218,16443,16445,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,7.2112937,7.5473728,0,9,-1,61.769066,0,-9,-9,2021,13,2,20,20,1,2,0,12.774137,12.774137,.05,.05,0,0,0,0,0,0,0,0,0,6.6878958,0,45.69,53.27,47.15,56.66,8.333333333333334,1,1,0,0,9,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7554,9218,16444,-9,16443,16445,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.429,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7554,9218,16445,16443,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.8301449,8.6875448,0,9,1,-33.683216,0,2,3,2021,11,0,1,40,1,0,0,803.96112,803.96112,.05,.05,0,0,0,0,0,0,0,0,0,2.7194934,0,47.15,56.66,45.69,53.27,8.333333333333334,1,1,0,0,10,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7554,9218,16446,-9,16443,16445,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.649,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,368.25,930732.13,658012.19,351706.72,135151.75,0,0,3667.8884 +7555,9219,16447,16448,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,6.8816605,6.8380966,0,15,11,43.050346,0,3,2,2021,12,0,36,30,1,0,0,3.431742,3.431742,0,0,.05,0,0,0,0,0,1,1,0,0,0,40.63,48.56,40.64,52.96,5,2,3,0,0,10,2,2,1,556.66669,-9226.1279,84540.422,122664.94,65681.742,0,0,2184.749 +7555,9219,16448,16447,-9,-9,1,0,30,0,2,0,3,3,-9,0,3,0,0,0,15,-11,-88.32653,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.64,52.96,40.63,48.56,5,2,3,0,0,0,2,2,1,556.66669,-9226.1279,84540.422,122664.94,65681.742,0,0,2184.749 +7555,9219,16449,-9,16448,16447,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.8511,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,556.66669,-9226.1279,84540.422,122664.94,65681.742,0,0,2184.749 +7556,9220,16450,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,8.8706369,8.8214989,0,0,0,-1047.8615,0,2,2,2021,9,0,37,37,1,0,0,20.498821,20.498821,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.56,47.56,-9,-9,3.333333333333333,1,1,0,0,12,9,5,1,1366,385947.84,109010.52,250918.89,113763.5,0,0,1806.4908 +7557,9221,16451,-9,16452,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-925.77332,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,2,1,1072,385110.44,139876.16,0,0,0,651.89966,1519.5637 +7557,9221,16452,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,4,7.2841139,7.2266755,5.7157974,0,0,-984.18066,0,2,-9,2021,12,0,22,21,1,0,0,7.7569151,7.7569151,0,0,0,0,0,0,0,2,1,1,0,5.3147259,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,9,4,2,1,1072,385110.44,139876.16,0,0,0,651.89966,1519.5637 +7558,9222,16453,-9,16455,16454,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-970.08844,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,3,0,608.33331,10834.079,0,107990.02,79564.797,4984.0391,0,1723.3243 +7558,9222,16454,16455,-9,-9,1,1,30,1,1,0,2,2,-9,0,4,7.9714341,8.166049,0,6,-7,55.332703,0,1,3,2021,11,2,55,60,1,2,0,6.4829764,6.4829764,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.79,55.04,6.666666666666667,1,1,0,0,5,6,3,0,608.33331,10834.079,0,107990.02,79564.797,4984.0391,0,1723.3243 +7558,9222,16455,16454,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,6.7522321,7.0894146,0,6,7,89.587753,0,2,3,2021,13,2,22,13,1,2,0,3.803021,3.803021,0,0,0,0,0,0,0,0,1,1,0,0,0,44.79,55.04,54.2,57.49,5,4,2,0,0,5,6,3,0,608.33331,10834.079,0,107990.02,79564.797,4984.0391,0,1723.3243 +7559,9223,16456,-9,16457,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.1458,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,1655.3334,80092.531,0,0,0,0,0,1818.1351 +7559,9223,16457,-9,-9,-9,1,0,41,0,2,0,1,1,-9,1,3,0,5.9336252,6.0366049,0,0,-865.97034,0,2,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,42,1,0,1,5.3995013,0,42.12,34.54,-9,-9,3.333333333333333,1,1,0,0,10,11,2,0,1655.3334,80092.531,0,0,0,0,0,1818.1351 +7559,9223,16458,-9,16457,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.50439,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,1655.3334,80092.531,0,0,0,0,0,1818.1351 +7560,9224,16459,16460,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,33,-16,0,0,-9,-9,2021,33,12,0,15,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,13.77,30.46,42.55,25.21,0,1,1,0,0,13,7,1,0,187,88590.977,0,0,0,0,722.05646,1243.1304 +7560,9224,16460,16459,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,33,16,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,35.166348,0,0,1,0,1,0,0,42.55,25.21,13.77,30.46,6.666666666666667,1,1,0,0,0,7,1,0,187,88590.977,0,0,0,0,722.05646,1243.1304 +7561,9225,16461,16462,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5019646,8.5181627,0,26,3,35.966938,0,3,3,2021,10,1,52,60,1,1,0,14.275336,14.275336,0,0,.05,0,0,0,0,0,0,0,0,4.1553063,0,41.4,55.39,54.1,50.87,8.333333333333334,1,1,0,0,9,2,5,1,1526.5,1141455.8,556998.25,212636.97,49756.492,0,0,3655.875 +7561,9225,16462,16461,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.2900791,8.2614069,0,26,-3,111.22302,0,2,3,2021,18,6,37,37,1,6,0,13.700272,13.700272,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,50.87,41.4,55.39,6.666666666666667,1,1,0,0,9,2,5,1,1526.5,1141455.8,556998.25,212636.97,49756.492,0,0,3655.875 +7561,9226,16463,-9,16462,16461,1,1,18,0,0,0,2,2,-9,0,4,7.6792092,7.4650006,0,0,0,-1002.5714,0,2,2,2021,7,0,25,0,1,0,1,12.578966,12.578966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,9,2,3,1,974,62163.703,8246.1904,0,0,0,0,808.12103 +7561,9227,16464,-9,16462,16461,1,1,18,0,0,0,2,2,-9,0,5,7.8079991,7.9837251,0,0,0,-964.42511,0,2,2,2021,6,0,40,0,1,0,1,8.2737284,8.2737284,.05,.05,0,0,0,0,0,0,0,0,0,1.3105686,0,48.65,53.42,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,211,101633.2,-73810.133,0,0,3278.386,0,1406.1821 +7562,9228,16465,16467,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,8.8222961,8.910573,0,27,4,14.009519,0,1,1,2021,6,0,43,40,1,0,0,20.067574,20.067574,.05,.05,0,0,0,0,0,0,1,1,0,2.9663775,0,62.39,56.71,62.39,56.71,10,2,3,0,0,7,10,4,1,616,197393.5,104540.89,247219.67,147316.91,0,0,4934.8174 +7562,9228,16466,-9,16467,16465,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-865.83691,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,10,4,1,616,197393.5,104540.89,247219.67,147316.91,0,0,4934.8174 +7562,9228,16467,16465,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,7.0547423,7.5809779,0,27,-4,79.31501,0,1,1,2021,6,0,24,22,1,0,0,6.4990768,6.4990768,0,0,0,0,0,0,0,0,1,1,0,7.1478238,0,62.39,56.71,62.39,56.71,10,2,3,0,0,8,10,4,1,616,197393.5,104540.89,247219.67,147316.91,0,0,4934.8174 +7562,9229,16468,-9,16467,16465,1,1,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1031.5127,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,-9,-9,5,2,3,0,0,0,10,1,1,263,18383.936,0,0,0,0,0,0 +7563,9230,16469,16470,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,8.4653444,8.7047462,0,11,2,36.009953,0,2,2,2021,10,2,56,56,1,2,0,8.7304916,8.7304916,.05,.05,0,0,0,0,0,0,1,1,0,1.8017671,0,49.17,45.98,55.36,54.24,6.666666666666667,1,1,0,0,12,6,4,1,908.33331,373885.59,92833.875,302373.28,0,194.51965,0,4407.3916 +7563,9230,16470,16469,-9,-9,1,0,34,1,2,0,2,2,-9,0,4,8.6085663,8.4189959,0,11,-2,-65.156883,0,-9,-9,2021,4,0,50,50,1,0,0,12.881693,12.881693,.05,.05,0,0,0,0,0,0,1,1,0,2.4664288,0,55.36,54.24,49.17,45.98,6.666666666666667,1,1,0,0,11,6,4,1,908.33331,373885.59,92833.875,302373.28,0,194.51965,0,4407.3916 +7563,9230,16471,-9,16470,16469,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1195.3601,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,908.33331,373885.59,92833.875,302373.28,0,194.51965,0,4407.3916 +7564,9231,16472,-9,16475,16474,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.3716,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16473,-9,16475,16474,1,1,4,2,3,1,3,0,-9,0,4,0,0,0,0,0,-901.33398,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16474,16475,-9,-9,1,1,38,2,3,0,1,1,-9,0,4,9.5952969,9.7078266,0,11,2,-53.66898,0,2,2,2021,6,0,53,60,1,0,0,36.155373,36.155373,.05,.05,0,0,0,0,0,0,0,0,0,3.0367589,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16475,16474,-9,-9,1,0,36,2,3,0,1,1,-9,0,4,7.4545369,7.2907171,0,11,-2,-17.783958,0,2,1,2021,11,0,26,38,1,0,0,9.4677811,9.4677811,0,0,0,0,0,0,0,0,0,0,0,4.8518353,0,54.2,57.49,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7564,9231,16476,-9,16475,16474,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-939.75574,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,725,217240.19,-3322.5593,340113.91,160767.09,31537.137,0,7358.8218 +7565,9232,16477,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.2951565,8.2884159,5.9679222,0,0,-1066.6223,0,2,2,2021,14,2,37,26,1,2,0,12.929609,12.929609,.05,.05,0,0,0,0,0,0,1,1,0,6.1353927,0,41.3,60.77,-9,-9,3.333333333333333,1,1,0,0,7,11,4,0,801,365002.28,194456.08,169036.59,0,0,0,2090.5247 +7565,9232,16478,-9,16477,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.65503,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,0,801,365002.28,194456.08,169036.59,0,0,0,2090.5247 +7565,9232,16479,-9,16477,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.49481,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,4,0,801,365002.28,194456.08,169036.59,0,0,0,2090.5247 +7566,9233,16480,16481,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.6008968,8.6219072,0,33,-1,-143.86905,0,2,2,2021,7,1,48,54,1,1,0,15.33598,15.33598,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,49.67,51.26,8.333333333333334,1,1,0,0,13,5,5,1,1069.5,1032992.1,414952.03,356058.75,0,0,0,4408.5894 +7566,9233,16481,16480,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.643302,8.3275566,0,12,1,151.90886,0,-9,-9,2021,10,1,62,55,1,1,0,11.038071,11.038071,0,0,0,0,0,0,0,0,0,0,0,.70723283,0,49.67,51.26,58.15,52.91,8.333333333333334,1,1,0,0,10,5,5,1,1069.5,1032992.1,414952.03,356058.75,0,0,0,4408.5894 +7566,9234,16482,-9,16481,16480,1,0,23,0,0,0,1,1,-9,0,3,8.1588125,7.9239926,0,0,0,-1085.6857,0,1,1,2021,9,0,40,45,1,0,1,9.1249237,9.1249237,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,56.95,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,229,-46154.246,0,0,0,0,0,353.83243 +7567,9235,16483,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,2,8.4350986,8.9265451,0,0,0,-951.57617,0,1,1,2021,12,0,37,38,1,0,0,17.653845,17.653845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.78,37.32,-9,-9,6.666666666666667,2,3,0,0,14,1,5,1,2106,839209.19,610033.06,270528.59,54102.68,0,1590.7727,2473.7893 +7568,9236,16484,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,8.1418076,7.9070845,0,0,0,-1016.7941,0,-9,-9,2021,14,3,46,40,1,3,0,10.421154,10.421154,0,0,0,0,0,0,1.2758231,0,0,0,0,0,0,46.29,60.08,-9,-9,5,1,1,0,0,3,2,4,1,516,-97314.313,0,0,0,1465.382,0,1055.0203 +7568,9236,16485,-9,16484,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-925.42645,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,516,-97314.313,0,0,0,1465.382,0,1055.0203 +7569,9237,16486,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,7.6346693,7.8519878,5.8047042,0,0,-1044.929,-9,-9,2,2021,27,11,41,0,1,11,0,5.8901196,5.8901196,0,0,0,0,0,0,0,0,1,0,1,5.9507866,0,16.98,65.47,-9,-9,3.333333333333333,1,1,0,0,11,4,3,0,1147.6666,83069.891,0,0,0,0,0,2145.3953 +7569,9237,16487,-9,16486,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1212.429,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,3,0,1147.6666,83069.891,0,0,0,0,0,2145.3953 +7569,9237,16488,-9,16486,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.20465,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,1147.6666,83069.891,0,0,0,0,0,2145.3953 +7570,9238,16489,16492,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,27,0,0,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,51,54,8,2,3,1,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16490,-9,16492,16489,1,0,17,0,2,0,3,3,-9,1,4,0,0,0,0,0,-942.66339,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16491,-9,16492,16489,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.30597,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,-9,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16492,16489,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,27,0,0,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51,54,53,55,8,2,3,1,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9238,16493,-9,16492,16489,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.35248,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1255.8,459265.44,417128.53,242505.83,125291.32,0,0,3467.9375 +7570,9239,16494,-9,16492,16489,1,1,22,0,2,0,2,2,-9,0,4,0,0,0,0,0,-965.06219,0,2,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,1,0,0,8,1,0,874,103207.88,0,0,0,0,0,307.40659 +7571,9240,16495,-9,-9,-9,1,0,39,0,2,0,2,2,-9,1,2,0,5.8549576,6.2068605,0,0,-986.36932,0,2,2,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9924741,0,19.5,46.87,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,708,352729.44,105402.8,345521.56,220377.09,0,3612.0442,1505.8805 +7572,9241,16496,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1037.5875,0,3,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,10.206261,0,0,1,1,0,4.9608989,0,43.61,40.28,-9,-9,5,1,1,0,0,0,10,1,1,261,230487.38,0,275677.88,0,0,0,897.53601 +7573,9242,16497,16498,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.5999794,7.8756189,45,0,-116.04935,0,3,2,2021,4,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.9106488,7.7262349,64.97,37.52,32.81,25.91,10,2,3,0,0,13,6,3,1,504.5,1347376,554673.31,436154,0,6115.6245,0,1198.0837 +7573,9242,16498,16497,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,45,0,203.46284,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,32.81,25.91,64.97,37.52,8.333333333333334,2,3,1,0,0,6,3,1,504.5,1347376,554673.31,436154,0,6115.6245,0,1198.0837 +7574,9243,16499,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.7712908,8.1032925,0,0,-973.58887,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2704248,8.263998,45.42,40.27,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,359,1493283.5,180418.75,559070.19,0,0,0,2535.72 +7575,9244,16500,-9,16502,16501,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.38965,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,761.66669,2073285.1,1432834.9,482515.88,0,0,0,3513.4417 +7575,9244,16501,16502,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.3091488,9.1771889,0,9,2,-2.1645815,0,3,3,2021,20,9,78,43,1,9,0,16.197943,16.197943,.05,.05,.05,0,0,0,0,2,1,1,0,2.2644894,0,30.77,64.34,44.62,57.73,3.333333333333333,1,1,0,0,9,7,5,1,761.66669,2073285.1,1432834.9,482515.88,0,0,0,3513.4417 +7575,9244,16502,16501,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.5962453,7.7313247,0,9,-2,99.555046,0,3,2,2021,11,0,22,24,1,0,0,9.7393074,9.7393074,.05,.05,0,0,0,0,0,14.5,1,1,0,2.6029253,0,44.62,57.73,30.77,64.34,3.333333333333333,1,1,0,0,9,7,5,1,761.66669,2073285.1,1432834.9,482515.88,0,0,0,3513.4417 +7575,9245,16503,-9,16502,16501,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-934.54626,-9,2,2,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9897269,0,33.49,64.26000000000001,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,965,0,0,0,0,0,0,-289.06808 +7576,9246,16504,16505,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.2224956,7.7498579,38,1,-85.188896,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.7079177,7.3124356,55.61,50.3,54.79,55.86,8.333333333333334,1,1,0,0,0,10,3,1,812.5,1469557.4,988360.63,350783.06,77151.297,0,2082.8013,1535.6768 +7576,9246,16505,16504,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3275023,7.5686803,0,38,-1,-92.109062,0,3,3,2021,9,0,21,21,1,0,0,9.4914827,9.4914827,0,0,0,0,0,0,0,2,0,0,0,5.5130029,0,54.79,55.86,55.61,50.3,8.333333333333334,1,1,0,0,10,10,3,1,812.5,1469557.4,988360.63,350783.06,77151.297,0,2082.8013,1535.6768 +7577,9247,16506,16507,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.8928227,7.2491479,7,13,-1.6098982,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8120093,57.16,56.15,50.65,60.47,1.666666666666667,1,1,0,0,7,12,4,1,445.5,-78573.625,99175.266,0,0,0,7492.6787,2054.9829 +7577,9247,16507,16506,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3031597,8.0674725,0,7,-13,48.79211,0,3,3,2021,9,1,40,43,1,1,0,9.4332085,9.4332085,0,0,0,0,0,0,0,0,0,0,0,1.0642756,0,50.65,60.47,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,445.5,-78573.625,99175.266,0,0,0,7492.6787,2054.9829 +7578,9248,16508,16509,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.5616689,5.3039618,6,6,46.897102,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5390911,5.4977756,54,46,37.73,54.15,8,1,1,0,0,0,13,2,1,367,392635.09,197099.63,83483.727,0,4607.8276,0,2539.6045 +7578,9248,16509,16508,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9666605,7.0662446,6,-6,-24.813986,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,.49732602,0,1,1,0,0,7.0778561,37.73,54.15,54,46,10,1,1,0,0,0,13,2,1,367,392635.09,197099.63,83483.727,0,4607.8276,0,2539.6045 +7579,9249,16510,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.1459999,5.860095,0,0,-989.94489,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8090191,61.19,39.41,-9,-9,8.333333333333334,4,2,0,0,0,8,2,0,1305,342516.41,39159,237406.91,0,0,0,1198.8724 +7580,9250,16511,16512,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.9222369,7.4459095,0,9,-12,102.04887,0,-9,-9,2021,3,0,39,45,1,0,0,7.6579871,7.6579871,0,0,0,0,0,0,0,0,1,1,0,0,0,47.49,35.16,53,47,8.333333333333334,3,4,0,0,7,8,4,0,453.5,1217611.9,587910,445388.97,0,0,0,3626.4531 +7580,9250,16512,16511,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,7.5075259,8.0771885,6.4878206,13,12,127.9521,0,3,3,2021,10,0,36,49,1,1,0,5.3575249,5.3575249,0,0,0,0,0,0,0,0,1,1,0,3.9646921,6.5935721,53,47,47.49,35.16,7,3,4,0,0,1,8,4,0,453.5,1217611.9,587910,445388.97,0,0,0,3626.4531 +7581,9251,16513,16514,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,7.9515357,8.0082312,0,13,0,65.119186,0,3,3,2021,12,0,33,39,1,0,0,9.686883,9.686883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.5,54.11,57.33,53.46,5,1,1,0,0,15,2,4,1,1380,308707.63,27232.873,0,0,5094.127,2576.3276,2167.3267 +7581,9251,16514,16513,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.5104818,7.837851,0,13,0,49.159718,0,2,2,2021,7,0,36,0,1,0,0,7.0759816,7.0759816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,35.5,54.11,8.333333333333334,1,1,0,0,14,2,4,1,1380,308707.63,27232.873,0,0,5094.127,2576.3276,2167.3267 +7582,9252,16515,16516,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.0447617,7.2229462,55,8,106.68731,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2447081,7.1835818,51.88,30.78,52,54.51,8.333333333333334,2,3,0,0,0,8,2,1,584.5,254375.25,86576.508,169802.63,0,0,0,1306.6689 +7582,9252,16516,16515,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,55,-8,166.07397,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,1.8532281,0,52,54.51,51.88,30.78,8.333333333333334,2,3,0,0,0,8,2,1,584.5,254375.25,86576.508,169802.63,0,0,0,1306.6689 +7583,9253,16517,16518,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.6064806,7.963593,6.75667,36,4,-11.602923,0,2,2,2021,11,0,20,28,1,0,0,10.447496,10.447496,0,0,0,0,0,0,0,0,0,0,0,0,7.2063851,50.03,52.62,44.01,41.98,6.666666666666667,1,1,0,0,10,1,3,0,2800,1753382,1210739.5,328542.28,0,3107.9482,0,2145.5708 +7583,9253,16518,16517,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,0,0,0,36,-4,-158.799,0,2,2,2021,13,2,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7613883,0,44.01,41.98,50.03,52.62,8.333333333333334,1,1,0,0,8,1,3,0,2800,1753382,1210739.5,328542.28,0,3107.9482,0,2145.5708 +7584,9254,16519,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,5.2989879,5.8766456,0,0,-1005.4774,0,3,3,2021,27,9,0,0,4,9,0,0,0,0,0,0,1,15.226974,5.2424812,120.47101,0,1,1,0,0,5.4577136,33.05,20.24,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,838,-219320.08,0,43590.273,0,0,0,1361.8151 +7585,9255,16520,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,6.0965157,5.6516209,0,0,-1069.4956,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5498281,52.97,31.31,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,393,167438.16,140725.58,179695.52,0,0,0,2005.998 +7585,9256,16521,-9,16520,-9,1,0,40,0,0,0,2,2,-9,0,4,7.4829321,7.1319103,0,0,0,-1030.5526,0,2,-9,2021,11,0,40,40,1,1,0,4.1752825,4.1752825,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,-9,-9,7,1,1,0,0,1,2,3,0,682,-18873.654,174855.92,0,0,0,641.55286,1070.3551 +7586,9257,16522,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.0071826,6.3514605,0,0,-953.01636,0,2,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,9.3136711,0,0,1,1,0,0,6.532856,44.78,19.33,-9,-9,5,1,1,0,0,0,12,2,0,1934,493113.03,102339.5,180062.64,0,0,0,1303.6206 +7587,9258,16523,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.7249269,8.5864525,0,0,0,-1013.4061,0,3,3,2021,12,1,37,37,1,1,0,18.703524,18.703524,.05,.05,0,0,0,0,0,0,1,1,0,6.618587,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,272,654554.81,537265.69,69070.789,107901.38,0,0,2348.9575 +7588,9259,16524,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.1555653,6.5741296,0,0,-939.03204,0,3,2,2021,16,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2185841,5.7107687,38.76,40.19,-9,-9,10,1,1,0,0,0,12,2,1,437,163979.45,15551.616,166772.41,0,0,0,1126.2684 +7589,9260,16525,-9,16527,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-994.21631,-9,2,-9,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,9,1,1,350,0,0,0,0,0,0,0 +7589,9261,16526,16527,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.6384239,8.8163671,0,3,8,62.848557,0,-9,-9,2021,6,0,40,60,1,0,0,16.565393,16.565393,0,0,0,0,0,0,0,0,0,0,0,7.1117125,0,57.16,56.15,47.15,56.66,8.333333333333334,1,1,0,0,2,9,5,1,807,638658.38,0,965014,544815.19,0,0,4586.1768 +7589,9261,16527,16526,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.81812,8.8746643,0,3,-8,26.230391,0,3,2,2021,7,0,40,40,1,0,0,17.513433,17.513433,0,0,0,0,0,0,0,0,0,0,0,3.7743161,0,47.15,56.66,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,807,638658.38,0,965014,544815.19,0,0,4586.1768 +7590,9262,16528,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.3356462,7.3905177,0,0,0,-1009.5057,0,-9,2,2021,10,0,30,-9,1,0,0,5.8185472,5.8185472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.11,44.4,-9,-9,10,1,1,0,0,12,4,3,0,205,-122406.27,101025.58,0,0,0,0,1154.7208 +7591,9263,16529,16530,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,11,5,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,51,48,37.81,30.29,7,1,1,0,0,0,13,1,1,527,231346.34,0,147731.19,0,0,0,1377.8678 +7591,9263,16530,16529,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,40,-5,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.81,30.29,51,48,8.333333333333334,1,1,0,0,0,13,1,1,527,231346.34,0,147731.19,0,0,0,1377.8678 +7592,9264,16531,16532,-9,-9,1,1,49,0,2,0,2,2,-9,0,5,9.7657804,9.6817226,0,14,17,-28.698452,0,3,2,2021,10,2,50,50,1,2,0,29.793655,29.793655,.05,.05,0,0,0,0,0,0,1,1,0,4.7187467,0,55.09,55.87,45.92,51.86,8.333333333333334,1,1,0,0,10,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7592,9264,16532,16531,-9,-9,1,0,32,0,2,0,3,3,-9,0,4,8.0651894,8.1257772,0,14,-17,10.276119,0,2,2,2021,15,4,40,16,1,4,0,6.9323516,6.9323516,.05,.05,0,0,0,0,0,0,1,1,0,4.1733451,0,45.92,51.86,55.09,55.87,6.666666666666667,1,1,0,0,5,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7592,9264,16533,-9,16532,16531,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.43341,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7592,9264,16534,-9,16532,16531,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.9907,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,898.75,312006.75,-12499.254,228571.91,102433.59,-545.25995,3998.9702,5311.2891 +7593,9265,16535,16537,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.2541227,8.1370325,0,3,-1,-120.38559,-9,-9,-9,2021,9,0,58,0,1,1,0,9.8255911,9.8255911,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,44.4,41.62,8,4,1,0,0,1,9,4,1,1055.3334,200158.28,-90.625,202388.64,55430.543,8692.7305,-17.625898,2493.4021 +7593,9265,16536,-9,16537,16535,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1068.3591,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1055.3334,200158.28,-90.625,202388.64,55430.543,8692.7305,-17.625898,2493.4021 +7593,9265,16537,16535,-9,-9,1,0,42,1,1,0,2,2,-9,0,3,7.6289611,7.851213,0,3,1,19.789236,0,3,3,2021,11,1,16,40,1,1,0,18.012142,18.012142,0,0,0,0,0,0,0,2,1,1,0,0,0,44.4,41.62,51,56,3.333333333333333,1,1,0,0,9,9,4,1,1055.3334,200158.28,-90.625,202388.64,55430.543,8692.7305,-17.625898,2493.4021 +7594,9266,16538,-9,16540,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.1222,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,6,2,1,531.66669,45925.793,0,0,0,0,872.83704,1901.0133 +7594,9266,16539,-9,16540,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.0487,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,-9,0,0,6,2,1,531.66669,45925.793,0,0,0,0,872.83704,1901.0133 +7594,9266,16540,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.8039942,7.8584924,0,0,0,-1100.0251,0,3,3,2021,9,0,35,35,1,0,0,7.9472232,7.9472232,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,-9,-9,8.333333333333334,2,3,0,0,8,6,2,1,531.66669,45925.793,0,0,0,0,872.83704,1901.0133 +7595,9267,16541,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1021.8491,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.4,26.53,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,1119,141786.27,0,113660.44,0,0,0,2039.2261 +7596,9268,16542,-9,-9,-9,1,1,61,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1019.1539,0,3,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.36,18.88,-9,-9,8.333333333333334,1,1,0,1,0,4,1,0,1408,23855.605,0,0,0,0,2823.196,710.6936 +7597,9269,16543,16545,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,6.4261265,6.7592621,0,3,-4,-74.76371,0,-9,-9,2021,16,4,11,20,1,4,0,8.322217,8.322217,0,0,0,0,0,0,0,0,1,1,0,0,0,49.26,54.61,38.57,58.06,6.666666666666667,1,1,0,0,4,2,2,1,887.33331,-43645.941,21301.25,0,0,0,0,280.0271 +7597,9269,16544,-9,16543,16545,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-904.91656,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,887.33331,-43645.941,21301.25,0,0,0,0,280.0271 +7597,9269,16545,16543,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,5.3751407,5.2179451,0,3,4,-40.581383,0,2,2,2021,13,2,42,42,1,2,0,.59705961,.59705961,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,49.26,54.61,6.666666666666667,1,1,0,0,7,2,2,1,887.33331,-43645.941,21301.25,0,0,0,0,280.0271 +7598,9270,16546,16547,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5708265,8.7002516,0,34,0,27.034838,0,3,3,2021,6,0,48,50,1,0,0,17.41868,17.41868,.05,.05,0,0,0,0,0,0,0,0,0,.75236392,0,61.12,46.03,54.2,57.49,10,1,1,0,0,8,4,5,1,1636.5,1493766,1103637.9,420423.69,20693.809,0,0,2710.0249 +7598,9270,16547,16546,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8692484,8.1994658,0,6,0,-32.70924,0,-9,-9,2021,12,1,37,39,1,1,0,8.4273396,8.4273396,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,61.12,46.03,6.666666666666667,1,1,0,0,6,4,5,1,1636.5,1493766,1103637.9,420423.69,20693.809,0,0,2710.0249 +7598,9271,16548,-9,16547,16546,1,0,29,0,0,0,2,2,-9,0,4,7.8656764,8.1344051,0,0,0,-824.74957,0,2,2,2021,10,3,30,30,1,3,1,11.195032,11.195032,0,0,0,0,0,0,0,7,0,0,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,1408,76615.234,0,0,0,0,0,1255.434 +7599,9272,16549,16550,-9,-9,1,1,38,0,1,0,3,3,-9,0,4,8.1687746,8.0902376,0,9,0,-19.584185,0,-9,-9,2021,6,0,48,37,1,0,0,9.5909452,9.5909452,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,63.63,51.86,8.333333333333334,1,1,0,0,10,2,4,1,1019,75441.484,15272.198,145831.61,91102.336,4912.3672,3984.4854,3024.7205 +7599,9272,16550,16549,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.6619234,7.8254814,0,9,0,47.584976,0,2,2,2021,8,1,35,32,1,1,0,8.7781839,8.7781839,0,0,0,0,0,0,0,0,1,1,0,0,0,63.63,51.86,62.49,55.09,8.333333333333334,1,1,0,0,5,2,4,1,1019,75441.484,15272.198,145831.61,91102.336,4912.3672,3984.4854,3024.7205 +7599,9272,16551,-9,16550,16549,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.48212,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1019,75441.484,15272.198,145831.61,91102.336,4912.3672,3984.4854,3024.7205 +7600,9273,16552,16553,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,4.2957411,4.45399,12,9,-.79371738,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,125.19859,0,2,1,1,0,4.3999782,4.6565571,38.75,18.3,27.89,18.61,10,2,3,0,0,0,2,2,0,604,308585.47,-2122.29,0,0,0,0,4089.1655 +7600,9273,16553,16552,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,3.3960848,3.7182887,12,0,81.287827,-9,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,131.89722,0,120,1,1,0,3.55531,3.4684615,27.89,18.61,38.75,18.3,5,2,3,0,0,0,2,2,0,604,308585.47,-2122.29,0,0,0,0,4089.1655 +7601,9274,16554,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.8858814,7.8169069,0,0,0,-943.21661,0,-9,-9,2021,12,2,43,-9,1,2,0,5.8257298,5.8257298,0,0,0,0,0,0,0,0,0,0,0,0,0,45.35,50.81,-9,-9,6.666666666666667,1,1,0,0,5,8,3,0,238,-185043,63996.328,0,0,8117.1919,942.92377,1518.26 +7602,9275,16555,16556,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,6.8497276,7.1697512,0,8,5,38.428288,0,-9,-9,2021,9,0,35,40,1,0,0,3.6521807,3.6521807,.05,.05,0,0,0,0,0,0,1,1,0,2.5397854,0,60.14,44.41,59.75,37.25,6.666666666666667,1,1,0,0,10,2,4,1,2784.5,452154.28,429198.19,0,0,0,805.18835,2605.7603 +7602,9275,16556,16555,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1271019,8.4038467,0,25,-5,-26.80065,0,3,2,2021,9,0,30,27,1,0,0,14.531166,14.531166,.05,.05,0,0,0,0,0,0,1,1,0,4.7454143,0,59.75,37.25,60.14,44.41,8.333333333333334,1,1,0,0,10,2,4,1,2784.5,452154.28,429198.19,0,0,0,805.18835,2605.7603 +7603,9276,16557,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.8021193,8.0164089,0,0,0,-921.55817,-9,-9,-9,2021,10,0,42,0,1,0,0,8.1107836,8.1107836,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,4,4,0,499,-111858.38,0,0,0,3709.5198,0,904.56329 +7604,9277,16558,16559,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,4,-3,-59.54784,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.7,28.27,53.85,22.4,6.666666666666667,1,1,0,0,0,7,2,1,481,473804.94,107864.42,234487.44,0,0,0,1786.6963 +7604,9277,16559,16558,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,4.8295622,5.3266263,4,3,4.7482171,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3535833,53.85,22.4,47.7,28.27,8.333333333333334,1,1,0,0,0,7,2,1,481,473804.94,107864.42,234487.44,0,0,0,1786.6963 +7605,9278,16560,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-920.03876,-9,-9,-9,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.36,49.9,-9,-9,3.333333333333333,1,1,1,1,4,13,2,0,445,6238.9204,0,0,0,0,0,0 +7606,9279,16561,16562,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,1,-3,120.56236,-9,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50.43,37.79,34.09,31.98,6.666666666666667,1,1,0,0,4,6,3,1,848.5,698295.25,385637.53,277933.91,0,0,0,2302.147 +7606,9279,16562,16561,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,7.6174617,8.1104126,1,3,14.360562,-9,-9,-9,2021,20,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8022637,34.09,31.98,50.43,37.79,0,1,1,0,1,0,6,3,1,848.5,698295.25,385637.53,277933.91,0,0,0,2302.147 +7607,9280,16563,16564,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.0866823,8.7439356,0,2,0,-148.73993,-9,3,3,2021,9,0,70,0,1,1,0,9.3981094,9.3981094,.05,.05,0,0,0,0,0,56,1,1,0,0,0,53,54,48,49,8,1,1,0,0,10,13,5,1,295,-23742.668,-56476.031,104464.39,0,0,0,3873.3828 +7607,9280,16564,16563,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,7.316256,7.3144341,2,0,-21.069696,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1789608,48,49,53,54,7,1,1,0,0,0,13,5,1,295,-23742.668,-56476.031,104464.39,0,0,0,3873.3828 +7607,9281,16565,-9,16564,16563,1,1,22,0,0,0,2,2,-9,0,4,7.4495625,7.7230763,0,0,0,-992.8916,-9,2,2,2021,10,0,35,0,1,1,1,6.7754698,6.7754698,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,6,13,3,1,578,24102.451,-27635.65,0,0,0,0,1294.5852 +7607,9282,16566,-9,16564,16563,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-967.77246,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,.39382714,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,171,68041.375,0,0,0,0,0,0 +7608,9283,16567,16568,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,8.1816206,8.2173958,0,17,-2,-5.2826948,0,2,2,2021,6,0,40,45,1,0,0,10.696726,10.696726,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,13,9,4,0,1662,287777.81,97905.141,329014.81,170509.19,0,2527.9924,2650.3169 +7608,9283,16568,16567,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,7.9934859,7.708602,0,18,2,-133.77789,0,-9,2,2021,1,0,48,48,1,0,0,6.5875173,6.5875173,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,10,1,1,0,0,14,9,4,0,1662,287777.81,97905.141,329014.81,170509.19,0,2527.9924,2650.3169 +7609,9284,16569,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.3592544,7.4414592,0,0,-1050.915,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.676118,0,0,1,1,0,0,7.9156566,57.17,34.71,-9,-9,10,1,1,0,0,0,8,3,1,304,725972.25,272720.19,316958.53,0,0,0,1973.7781 +7610,9285,16570,16571,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.6903372,8.7510757,0,30,1,-132.66653,0,1,2,2021,14,4,42,40,1,4,0,20.070768,20.070768,.05,.05,0,0,0,0,0,0,0,0,0,6.3028979,0,55.24,55.87,51.94,55.88,8.333333333333334,1,1,0,0,11,4,5,1,835,2790355.8,2263486.5,385481.03,37557.051,0,0,3713.5669 +7610,9285,16571,16570,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.8128443,8.5192814,0,30,-1,28.001574,0,2,1,2021,9,0,20,20,1,0,0,25.213619,25.213619,0,0,0,0,0,0,0,0,0,0,0,5.9266667,0,51.94,55.88,55.24,55.87,8.333333333333334,1,1,0,0,11,4,5,1,835,2790355.8,2263486.5,385481.03,37557.051,0,0,3713.5669 +7611,9286,16572,16573,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.6443129,6.268465,8,8,-175.36919,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3878951,6.2350783,71.62,19.47,55.25,39.29,8.333333333333334,1,1,0,0,0,11,2,1,722.5,376532.13,146585.84,143859.27,0,0,0,1513.7585 +7611,9286,16573,16572,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,8,-8,-56.966572,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.25,39.29,71.62,19.47,10,1,1,0,0,0,11,2,1,722.5,376532.13,146585.84,143859.27,0,0,0,1513.7585 +7612,9287,16574,16575,-9,-9,1,0,41,1,1,0,1,1,-9,0,5,8.1956491,8.0579548,0,2,14,-49.040524,0,-9,-9,2021,6,0,40,38,1,0,0,11.176604,11.176604,0,0,0,0,0,0,.093984246,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,2,11,4,1,1040.6666,-2505.0664,53394.609,0,0,4006.4873,0,3806.8655 +7612,9287,16575,16574,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.6650734,8.4060106,0,2,-14,116.65314,0,-9,-9,2021,6,0,45,45,1,0,0,17.134432,17.134432,.05,.05,0,0,0,0,0,0,1,1,0,2.7349277,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,10,11,4,1,1040.6666,-2505.0664,53394.609,0,0,4006.4873,0,3806.8655 +7612,9287,16576,-9,16574,16575,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.54181,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,4,1,1040.6666,-2505.0664,53394.609,0,0,4006.4873,0,3806.8655 +7613,9288,16577,16578,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.4893537,7.366169,0,7,3,34.986313,0,2,2,2021,9,0,20,20,1,0,0,8.9732227,8.9732227,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,42.53,52.15,8.333333333333334,1,1,0,0,8,9,5,1,401,130771.82,43209.637,217924.83,42683.078,0,0,3822.3325 +7613,9288,16578,16577,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.9587975,8.9181967,0,7,-3,5.0646176,0,3,-9,2021,20,8,38,44,1,8,0,26.605429,26.605429,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.53,52.15,59.53,56.44,3.333333333333333,1,1,0,0,8,9,5,1,401,130771.82,43209.637,217924.83,42683.078,0,0,3822.3325 +7614,9289,16579,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.4784756,8.2552853,0,16,-13,104.91512,0,-9,3,2021,10,0,45,45,1,0,0,12.463582,12.463582,0,0,0,0,0,0,0,0,0,0,0,0,0,41.15,54.82,43.6,24.97,5,1,1,0,0,10,1,4,0,66,-216680.84,0,0,0,0,0,1714.5786 +7614,9290,16580,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,0,0,16,13,8.4119291,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,24.97,41.15,54.82,3.333333333333333,1,1,1,0,7,1,3,0,551,279921.28,0,0,0,0,0,0 +7615,9291,16581,16582,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9870501,8.2007399,0,29,-4,-111.5654,0,3,3,2021,11,0,40,40,1,0,0,10.209527,10.209527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,36.07,52.49,6.666666666666667,2,3,0,0,13,8,5,1,1264.5,312668.81,224782.28,210942.53,87207.578,0,13905.938,3248.6855 +7615,9291,16582,16581,16583,-9,1,1,52,0,0,0,1,1,-9,0,3,8.464263,8.6054525,0,11,4,-117.67018,0,2,-9,2021,17,5,42,42,1,5,0,14.40193,14.40193,.05,.05,.05,0,0,0,0,2,1,1,0,3.2638862,0,36.07,52.49,56.57,57.78,6.666666666666667,2,3,0,0,13,8,5,1,1264.5,312668.81,224782.28,210942.53,87207.578,0,13905.938,3248.6855 +7615,9292,16583,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,0,0,0,0,-998.26062,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47,35,-9,-9,5,2,3,0,0,0,8,1,1,214,-103411.38,0,0,0,0,0,966.73077 +7616,9293,16584,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1133.5837,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,779,0,0,0,0,0,0,1068.2804 +7617,9294,16585,16586,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,5.163569,4.8791323,0,14,-1,4.7226815,0,2,2,2021,10,0,40,40,1,1,0,.42790276,.42790276,.05,.05,0,0,0,0,0,0,1,1,0,3.4040864,0,51,56,49,55,7,1,1,0,0,7,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7617,9294,16586,16585,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.6523294,8.5375462,0,14,1,61.483143,-9,1,2,2021,11,0,37,0,1,2,0,16.078432,16.078432,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,56,7,1,1,0,0,8,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7617,9294,16587,-9,16586,16585,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.4183,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7617,9294,16588,-9,16586,16585,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.84949,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,2,4,1,545.25,302590.56,144194.52,223806.44,60916.465,0,0,2452.5952 +7618,9295,16589,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.9849949,8.4611397,0,0,-960.07227,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.301609,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,166,1294697.4,715039.56,361833.44,0,0,0,3018.4133 +7619,9296,16590,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.3591909,8.9255285,0,0,0,-1099.9255,0,2,2,2021,10,0,38,38,1,0,0,15.203214,15.203214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,8,2,5,0,176,49696.27,59044.879,0,0,0,0,2251.2178 +7620,9297,16591,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,8.3868227,7.9218006,0,0,-1012.3764,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,4.5857759,7.9887633,49.97,48.78,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,1910,807801.31,205074.7,506549.53,0,0,0,2191.4929 +7621,9298,16592,16593,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.9580269,6.0530286,54,-3,-47.02792,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.7135286,56.33,51.02,66.27,28.89,5,1,1,0,0,0,9,2,1,1485,538535.19,35063.758,281314.84,0,0,0,2330.4116 +7621,9298,16593,16592,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.5437422,5.7701292,54,3,-69.070412,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,76.804176,0,0,1,1,0,6.0448442,5.7032719,66.27,28.89,56.33,51.02,1.666666666666667,1,1,0,0,0,9,2,1,1485,538535.19,35063.758,281314.84,0,0,0,2330.4116 +7622,9299,16594,16595,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.8076982,8.3354397,36,1,-27.622252,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1399341,8.2880144,58.15,52.91,53.08,52.64,8.333333333333334,1,1,0,0,0,9,4,1,3386.5,2643273,1078176,1070281.9,0,0,0,3975.5918 +7622,9299,16595,16594,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,7.7728138,7.4580879,36,-1,79.929359,0,2,2,2021,7,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7296262,7.4158993,53.08,52.64,58.15,52.91,8.333333333333334,1,1,0,0,13,9,4,1,3386.5,2643273,1078176,1070281.9,0,0,0,3975.5918 +7622,9300,16596,-9,16595,16594,1,0,28,0,0,0,1,1,-9,0,4,8.1251411,8.1990433,0,0,0,-1004.1108,0,1,1,2021,10,1,37,40,1,1,0,10.973673,10.973673,.05,.05,0,0,0,0,0,0,0,0,0,1.1401584,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,292,0,0,0,0,0,0,2266.7073 +7623,9301,16597,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.6736422,7.6771278,5.5352225,0,0,-1030.9304,0,-9,-9,2021,11,0,23,-9,1,2,0,9.5195236,9.5195236,0,0,0,0,0,0,0,0,1,1,0,5.2038379,0,49,56,-9,-9,7,1,1,0,0,12,13,3,0,764,105797.03,69140.391,108332.3,17417.736,0,2880.3735,1757.0083 +7623,9301,16598,-9,16597,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.45441,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,764,105797.03,69140.391,108332.3,17417.736,0,2880.3735,1757.0083 +7624,9302,16599,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,8.1599026,8.1106787,0,0,-985.68243,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7737589,7.6077919,46.45,46.21,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,334,996478.69,214126.86,544483.5,0,0,0,1655.299 +7625,9303,16600,-9,-9,-9,1,0,94,0,0,0,2,2,-9,0,2,0,3.4674416,3.563884,0,0,-1021.5025,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,1.958797,11.217489,15.506238,0,1,1,0,0,3.3134544,51.45,19.85,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,1310,134688.8,-124563.1,167874.02,0,0,0,1475.7317 +7626,9304,16601,-9,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,7.5470295,7.8353481,7.0017095,0,0,-1023.9346,0,3,3,2021,11,0,31,32,1,0,0,5.3489327,5.3489327,.05,.05,0,0,0,0,0,0,1,0,1,6.7967758,0,49.98,47.46,-9,-9,6.666666666666667,1,1,0,0,10,5,3,1,397,190431,-30879.457,62577.707,0,0,2576.7437,2406.4917 +7626,9304,16602,-9,16601,-9,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1137.5623,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,397,190431,-30879.457,62577.707,0,0,2576.7437,2406.4917 +7627,9305,16603,16604,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.0103645,7.838726,0,1,-6,40.779148,-9,-9,-9,2021,5,0,35,0,1,0,0,8.6983128,8.6983128,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.76,59.08,44.49,55.37,8.333333333333334,1,1,0,0,7,7,4,0,414.5,134014.13,72397.766,197534.63,139967.7,23892.617,0,2260.4614 +7627,9305,16604,16603,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.0121746,7.9166265,0,1,6,84.000282,-9,-9,-9,2021,9,1,39,0,1,1,0,6.9804964,6.9804964,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.49,55.37,41.76,59.08,3.333333333333333,1,1,0,0,9,7,4,0,414.5,134014.13,72397.766,197534.63,139967.7,23892.617,0,2260.4614 +7627,9306,16605,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.010499,7.5086708,0,0,0,-941.62573,-9,-9,-9,2021,11,0,25,0,1,0,0,11.130584,11.130584,0,0,0,0,0,0,0,0,1,0,1,0,0,47.34,55.48,-9,-9,6.666666666666667,1,1,0,0,0,7,3,0,154,-162811.89,0,0,0,0,0,1055.3429 +7628,9307,16606,16607,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.2545385,8.3688498,0,2,1,55.070351,0,1,-9,2021,8,1,48,48,1,1,0,11.272694,11.272694,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,42,53,6.666666666666667,1,1,0,0,12,9,5,1,301.5,0,0,0,0,0,0,2747.3369 +7628,9307,16607,16606,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1727333,8.5685587,0,2,-1,19.295212,0,-9,-9,2021,13,0,38,37,1,3,0,13.377865,13.377865,0,0,0,0,0,0,0,0,1,1,0,1.2601311,0,42,53,51.17,49.39,6,1,1,0,0,2,9,5,1,301.5,0,0,0,0,0,0,2747.3369 +7628,9308,16608,-9,-9,-9,1,1,20,0,0,0,1,1,-9,0,4,0,0,0,0,0,-764.47266,-9,-9,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,1,0,0,9,1,1,1116,38470.141,-221540.94,0,0,0,0,0 +7629,9309,16609,16611,-9,-9,1,0,38,0,3,0,3,3,-9,0,4,7.2611904,7.8681464,0,19,-6,-53.612556,0,3,2,2021,11,0,28,28,1,2,0,10.609503,10.609503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,52,55,7,3,4,0,0,3,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16610,-9,16609,16611,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-978.59564,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,3,4,-9,0,0,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16611,16609,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,7.1562643,7.39399,0,6,6,46.32222,0,-9,-9,2021,9,0,37,22,1,1,0,4.6443057,4.6443057,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,50,55,7,4,2,0,0,3,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16612,-9,16609,16611,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1018.335,-9,3,2,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.36,56.72,-9,-9,8.333333333333334,3,4,0,0,0,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9309,16613,-9,16609,16611,1,0,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1054.8145,-9,3,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,3,4,-9,0,0,8,3,0,839.20001,385778.53,118431.34,303765.41,120575.49,27079.156,0,3255.5544 +7629,9310,16614,-9,16609,16611,1,0,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-1120.3071,-9,3,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,0,8,1,0,259,-41143.758,0,0,0,0,0,1018.1034 +7630,9311,16615,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.7841692,9.6770105,0,0,0,-1035.8665,0,3,1,2021,18,5,35,35,1,5,0,44.796467,44.796467,0,0,0,0,0,0,0,0,1,1,0,4.3736091,0,43.06,59.91,-9,-9,5,1,1,0,0,13,11,5,1,1206,768367.69,193855.3,469553.03,312009.38,0,4843.1714,4418.2495 +7631,9312,16616,16617,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.7628527,7.8856821,0,21,1,-84.082649,0,3,3,2021,11,0,40,0,1,0,0,9.3269119,9.3269119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.67,52.58,42.72,52.25,8.333333333333334,1,1,0,0,13,9,4,0,670.5,1251458,669183.88,476412.63,0,0,0,2120.2119 +7631,9312,16617,16616,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,7.670444,7.6029453,0,32,-1,-16.582722,0,3,3,2021,12,0,50,50,1,0,0,5.0295,5.0295,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.72,52.25,50.67,52.58,6.666666666666667,1,1,0,0,13,9,4,0,670.5,1251458,669183.88,476412.63,0,0,0,2120.2119 +7632,9313,16618,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.9646287,7.7826123,0,0,-1070.8931,0,3,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7137027,7.315351,54.78,45.49,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,238,129206.14,-20602.68,0,0,0,0,1940.1964 +7633,9314,16619,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3040109,6.5731363,0,0,-930.10059,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6630788,53.58,46.94,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,827,461625.06,95917.461,172179.97,0,0,0,1476.8187 +7634,9315,16620,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.8464203,8.3923864,0,0,-979.30756,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2337093,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,83,1027932.4,462208.94,239652.69,0,1584.7985,0,2966.8506 +7635,9316,16621,16622,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,8.7257986,8.5935659,0,7,-1,138.46552,-9,-9,-9,2021,9,0,45,0,1,1,0,14.133989,14.133989,.05,.05,0,0,0,0,0,0,0,0,0,5.5619273,0,53,55,58.15,52.91,8,4,1,0,0,1,12,5,1,316.5,880338.13,837753.38,0,0,0,0,4145.8276 +7635,9316,16622,16621,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.3866081,8.5856237,0,7,1,-25.992741,0,3,-9,2021,6,0,36,37,1,0,0,18.882004,18.882004,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,53,55,8.333333333333334,1,1,0,0,8,12,5,1,316.5,880338.13,837753.38,0,0,0,0,4145.8276 +7636,9317,16623,16624,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,7.4372849,7.1035256,0,11,-1,40.738899,0,3,3,2021,11,0,20,20,1,0,0,9.2520924,9.2520924,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,67.33,46.18,8.333333333333334,1,1,0,0,12,11,2,0,1501.5,774852.75,278584.38,299879.13,0,0,0,1884.8071 +7636,9317,16624,16623,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,4.9697208,5.5125971,5.1821556,11,1,-20.223906,0,3,2,2021,7,0,8,8,1,0,0,2.2417729,2.2417729,0,0,0,0,0,0,0,0,1,1,0,4.9875822,5.3502359,67.33,46.18,48.87,58.55,0,1,1,0,0,12,11,2,0,1501.5,774852.75,278584.38,299879.13,0,0,0,1884.8071 +7636,9318,16625,-9,16623,16624,1,1,43,0,0,0,3,3,-9,0,2,6.1865911,6.4447651,0,0,0,-1026.2035,0,3,3,2021,10,1,25,25,1,1,0,2.8382969,2.8382969,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,36.17,-9,-9,5,1,1,0,1,11,11,2,0,3587,159423.08,35181.527,253820.05,92953.344,0,998.40875,-338.67004 +7637,9319,16626,-9,-9,-9,1,1,22,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1012.6859,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,10,1,1,0,0,0,2,1,1,1405,0,0,0,0,0,0,0 +7638,9320,16627,16628,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,39,-6,0,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.48,31.93,60.69,29.25,5,1,1,0,0,0,4,1,0,411,78998.445,0,98085.266,0,0,0,2991.7896 +7638,9320,16628,16627,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,38,6,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.69,29.25,48.48,31.93,3.333333333333333,3,4,0,0,0,4,1,0,411,78998.445,0,98085.266,0,0,0,2991.7896 +7639,9321,16629,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.9257703,7.7277861,0,0,-1015.7642,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0588989,8.1908903,38.16,44.66,-9,-9,5,1,1,0,0,0,6,4,1,229,723524.75,351725.94,172731.53,0,0,0,2021.8818 +7640,9322,16630,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,5.2434263,5.2494702,0,0,-964.60962,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5703182,5.0537205,62.59,18.99,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,172,342959.19,119377.46,397127.91,0,0,0,813.888 +7641,9323,16631,16632,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.71874,7.5355988,0,45,2,17.900715,0,3,3,2021,16,6,38,37,1,6,0,7.2777009,7.2777009,.05,.05,0,0,0,0,0,88,1,1,0,0,0,51,48,27.72,21.58,10,1,1,0,0,11,6,3,1,522.5,437769.06,212055.64,133064.69,0,0,0,1906.3905 +7641,9323,16632,16631,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,45,-2,-96.370186,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.311692,0,27.72,21.58,51,48,1.666666666666667,1,1,0,0,0,6,3,1,522.5,437769.06,212055.64,133064.69,0,0,0,1906.3905 +7642,9324,16633,16634,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,3.4636068,3.3016057,47,3,-92.701195,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0456882,3.5578523,60.12,54.8,54.79,55.86,8.333333333333334,1,1,0,0,7,2,2,1,338,103256.43,185855.5,0,0,0,0,3233.6548 +7642,9324,16634,16633,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.6836972,6.6678653,47,-3,26.515482,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9348845,6.3991103,54.79,55.86,60.12,54.8,8.333333333333334,1,1,0,0,10,2,2,1,338,103256.43,185855.5,0,0,0,0,3233.6548 +7643,9325,16635,-9,16637,16636,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.9117,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,3,1,338.33334,149690.55,-15685.026,232817.36,153663.23,1265.8616,0,3090.3826 +7643,9325,16636,16637,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.2864847,8.1623611,0,6,-4,20.772034,0,2,2,2021,11,0,30,30,1,0,0,15.119356,15.119356,.05,.05,0,0,0,0,0,0,1,1,0,.76314628,0,37.92,53.03,43.73,54.31,6.666666666666667,1,1,0,0,14,7,3,1,338.33334,149690.55,-15685.026,232817.36,153663.23,1265.8616,0,3090.3826 +7643,9325,16637,16636,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.5409722,7.4186206,0,6,4,-10.4158,0,-9,-9,2021,9,1,25,25,1,1,0,9.1356707,9.1356707,.05,.05,0,0,0,0,0,0,1,1,0,2.508616,0,43.73,54.31,37.92,53.03,8.333333333333334,1,1,0,0,10,7,3,1,338.33334,149690.55,-15685.026,232817.36,153663.23,1265.8616,0,3090.3826 +7644,9326,16638,16639,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,0,0,0,3,-6,0,0,3,3,2021,34,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3915234,0,25.75,19.69,60.9,36.71,5,1,1,0,0,6,11,1,1,1688,482032.09,-14143.306,269030.78,0,11898.467,0,3204.2593 +7644,9326,16639,16638,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,3,6,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,8.3755198,0,60.9,36.71,25.75,19.69,8.333333333333334,1,1,0,0,8,11,1,1,1688,482032.09,-14143.306,269030.78,0,11898.467,0,3204.2593 +7645,9327,16640,-9,16641,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.3251,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,2,0,1793.5,-6487.9453,0,0,0,0,0,1685.0132 +7645,9327,16641,-9,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,6.5568295,6.8752694,0,0,0,-985.3468,0,1,1,2021,11,0,14,0,1,2,0,11.08347,11.08347,0,0,0,0,0,0,0,0,1,1,0,3.0253732,0,47,57,-9,-9,7,2,3,0,0,10,9,2,0,1793.5,-6487.9453,0,0,0,0,0,1685.0132 +7646,9328,16642,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.1653419,7.4999299,5.2842383,0,0,-1054.1548,0,3,3,2021,10,0,20,20,1,0,0,6.9608769,6.9608769,.05,.05,0,0,0,0,0,0,0,0,0,0,5.3247991,55.94,47.09,-9,-9,6.666666666666667,1,1,0,0,9,12,3,1,3503,334020.72,203643.25,256581.55,0,0,0,943.34009 +7647,9329,16643,16644,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,6.4707575,6.7895589,6,4,-91.755753,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6227498,6.5667763,52,48,49,48,7,1,1,0,0,0,4,3,1,470.5,1288274.6,338655.81,451510.81,0,0,0,1755.4697 +7647,9329,16644,16643,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.3242979,7.4031205,6,-4,-45.424828,0,2,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2647285,7.1322713,49,48,52,48,7,1,1,0,0,4,4,3,1,470.5,1288274.6,338655.81,451510.81,0,0,0,1755.4697 +7648,9330,16645,-9,16646,16647,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.7478,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7648,9330,16646,16647,-9,-9,1,0,48,0,2,0,2,2,-9,1,4,8.2610016,8.1088638,0,7,-2,11.540812,0,2,2,2021,12,0,19,19,1,0,0,21.379709,21.379709,0,0,0,0,0,0,0,107,1,1,0,0,0,49.06,58.64,49.35,59.64,8.333333333333334,1,1,0,0,8,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7648,9330,16647,16646,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.0172024,8.320857,0,7,2,-2.0531492,0,2,2,2021,13,1,40,40,1,1,0,14.612681,14.612681,.05,.05,.05,0,0,0,0,86,1,1,0,0,0,49.35,59.64,49.06,58.64,8.333333333333334,1,1,0,0,8,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7648,9330,16648,-9,16646,16647,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.21643,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,566.75,496065.19,259366.66,353668.97,43303.488,7489.438,0,4053.7209 +7649,9331,16649,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1088.542,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,0,53,45,-9,-9,8,2,3,0,0,0,8,1,0,685,168252.33,0,0,0,0,0,0 +7650,9332,16650,-9,16652,16651,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-975.54822,-9,1,1,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5848937,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7650,9332,16651,16652,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,9.5068922,9.08811,0,20,2,-25.757635,0,2,1,2021,12,0,45,46,1,0,0,23.975334,23.975334,.05,.05,0,0,0,0,0,0,1,1,0,.014465079,0,38.79,44.82,52,54.51,3.333333333333333,1,1,0,0,11,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7650,9332,16652,16651,-9,-9,1,0,47,0,2,0,1,1,-9,0,3,8.005764,7.9559407,0,22,-2,95.693649,0,2,2,2021,11,0,24,23,1,0,0,17.467463,17.467463,0,0,0,0,0,0,.15734215,0,1,1,0,4.7828913,0,52,54.51,38.79,44.82,8.333333333333334,1,1,0,0,11,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7650,9332,16653,-9,16652,16651,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.0421,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,1126.75,259583.11,146288.67,382362.69,298456.94,13921.075,0,5192.0332 +7651,9333,16654,16655,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.21843,7.3265057,0,28,-10,125.73933,0,-9,2,2021,12,1,32,35,1,1,0,5.1222334,5.1222334,0,0,0,0,0,0,0,0,1,1,0,7.1667547,0,54.2,57.49,49.11,45,6.666666666666667,1,1,0,0,12,9,5,1,2002.3334,314466.28,68069.023,350855.59,103661.64,0,0,5095.8169 +7651,9333,16655,16654,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.4748411,8.9752846,8.1517916,28,10,-11.953918,0,3,3,2021,14,2,28,40,1,2,0,16.077101,16.077101,.05,.05,0,0,0,0,0,0,1,1,0,2.9366319,8.4570551,49.11,45,54.2,57.49,3.333333333333333,1,1,0,0,13,9,5,1,2002.3334,314466.28,68069.023,350855.59,103661.64,0,0,5095.8169 +7651,9333,16656,-9,16654,16655,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-987.98053,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.55,56.21,-9,-9,6.666666666666667,1,1,0,0,0,9,5,1,2002.3334,314466.28,68069.023,350855.59,103661.64,0,0,5095.8169 +7651,9334,16657,-9,16654,16655,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-922.76263,-9,2,2,2021,27,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.02,64.34,-9,-9,3.333333333333333,1,1,0,0,2,9,1,1,301,16674.227,0,0,0,0,0,0 +7652,9335,16658,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.88611,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0694308,0,60.42,43.74,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,545,11561.249,0,0,0,0,0,1815.8002 +7653,9336,16659,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.8779955,9.485342,0,0,0,-897.85101,0,1,-9,2021,0,0,37,37,1,0,0,37.666885,37.666885,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,681,182160.5,301888.56,0,0,0,0,2061.9971 +7654,9337,16660,16662,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.3505001,8.5171738,0,9,0,-38.876511,0,-9,-9,2021,11,1,42,45,1,1,0,9.5115604,9.5115604,.05,.05,0,0,0,0,0,84,1,1,0,.69264096,0,28.41,64.05,33.31,51.41,8.333333333333334,1,1,0,0,9,10,4,1,846.33331,35703.992,95215.547,0,0,18424.48,343.707,1931.234 +7654,9337,16661,-9,16662,16660,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.4445,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,846.33331,35703.992,95215.547,0,0,18424.48,343.707,1931.234 +7654,9337,16662,16660,-9,-9,1,0,29,1,1,0,1,1,-9,0,2,8.0842619,8.0443678,0,9,0,-32.559952,0,-9,-9,2021,17,5,45,49,1,5,0,8.5295353,8.5295353,0,0,0,0,0,0,0,81,1,1,0,0,0,33.31,51.41,28.41,64.05,6.666666666666667,1,1,0,0,12,10,4,1,846.33331,35703.992,95215.547,0,0,18424.48,343.707,1931.234 +7655,9338,16663,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.4147081,4.645155,0,0,-1048.5215,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0332251,47.21,55.3,-9,-9,8.333333333333334,1,1,0,0,1,11,2,1,389,543263.06,0,227155.91,0,0,0,207.33235 +7656,9339,16664,16665,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.8714256,6.6325212,55,4,-11.535173,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2677093,6.611124,53.67,51.01,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,517,662177.44,59518.715,207235.34,0,0,0,1051.6611 +7656,9339,16665,16664,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,5.1900163,5.2548633,55,-4,4.9465294,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2150993,5.3928533,57.16,56.15,53.67,51.01,8.333333333333334,1,1,0,0,0,4,2,1,517,662177.44,59518.715,207235.34,0,0,0,1051.6611 +7657,9340,16666,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.0227761,7.2434673,0,0,-1000.332,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3261485,7.0344825,29.52,58.03,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,871,268565.03,184973.98,0,0,0,0,763.2771 +7658,9341,16667,16670,-9,-9,1,0,36,2,2,0,2,2,-9,0,2,9.2358637,9.0424986,0,10,2,-8.4037905,0,-9,-9,2021,21,9,38,38,1,9,0,22.27743,22.27743,0,0,0,0,0,0,0,0,1,1,0,0,0,32.78,43.65,58.15,52.91,6.666666666666667,1,1,0,0,9,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7658,9341,16668,-9,16667,16670,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.4467,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7658,9341,16669,-9,16667,16670,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.2775,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7658,9341,16670,16667,-9,-9,1,1,34,2,2,0,2,2,-9,0,4,8.9327984,8.6186237,0,10,-2,36.477909,0,-9,-9,2021,7,0,45,50,1,0,0,13.319897,13.319897,.05,.05,0,0,0,0,0,0,1,1,0,1.5904725,0,58.15,52.91,32.78,43.65,8.333333333333334,1,1,0,0,15,6,5,1,1018.25,163417.95,66395.32,228115.72,152721.75,114.44296,16819.158,5928.6104 +7659,9342,16671,16672,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,0,0,0,21,-8,-15.6744,0,2,2,2021,8,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,27.98,61.72,6.666666666666667,1,1,0,0,8,11,5,1,446.5,728562.75,213707.75,322186.88,0,0,0,4120.918 +7659,9342,16672,16671,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,9.3539209,9.4833612,21,8,-72.900688,0,3,3,2021,21,8,0,0,4,8,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,9.1088572,27.98,61.72,51.14,60.45,1.666666666666667,1,1,0,0,8,11,5,1,446.5,728562.75,213707.75,322186.88,0,0,0,4120.918 +7660,9343,16673,16677,-9,-9,1,1,38,1,4,0,2,2,-9,0,4,7.2216072,7.5789614,0,15,3,23.194761,0,3,2,2021,6,0,16,25,1,0,0,11.761835,11.761835,0,0,0,0,0,0,0,0,1,1,0,0,0,48.23,42.78,51.25,52.08,8.333333333333334,2,3,0,0,9,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16674,-9,16677,16673,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.3618,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16675,-9,16677,16673,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-927.69849,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16676,-9,16677,16673,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-943.11328,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7660,9343,16677,16673,-9,-9,1,0,35,1,4,0,3,3,-9,0,3,0,0,0,15,-3,-11.690727,0,2,2,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,52.08,48.23,42.78,8.333333333333334,2,3,1,0,0,8,2,0,738,14516.748,0,0,0,0,0,2302.6357 +7661,9344,16678,16679,-9,-9,1,1,55,0,1,0,2,2,-9,0,2,7.8002663,7.6353178,0,36,3,18.577127,0,-9,-9,2021,9,1,36,42,1,1,0,5.9668775,5.9668775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,40,47,50,6.666666666666667,2,3,0,0,13,10,2,1,872,133544.45,113351.59,154395.06,31248.59,4779.2241,0,698.099 +7661,9344,16679,16678,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,0,0,0,36,-3,75.310326,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,45,40,7,2,3,0,0,0,10,2,1,872,133544.45,113351.59,154395.06,31248.59,4779.2241,0,698.099 +7661,9345,16680,-9,16679,16678,1,1,27,0,1,0,1,1,-9,0,2,8.4934225,8.3395309,0,0,0,-835.63361,0,3,2,2021,10,0,37,35,1,0,1,14.182932,14.182932,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.22,53.46,-9,-9,8.333333333333334,2,3,0,0,11,10,5,1,155,-71554.852,61728.16,0,0,0,0,1518.4263 +7661,9346,16681,-9,16679,16678,1,0,19,0,1,0,2,2,-9,0,4,7.8554206,7.9756174,0,0,0,-1094.8368,0,3,2,2021,10,2,42,8,1,2,1,7.1635389,7.1635389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.44,55.06,-9,-9,8.333333333333334,2,3,0,0,3,10,3,1,2898,28562.264,-41394.75,0,0,10254.98,1195.5804,1592.5754 +7662,9347,16682,-9,-9,-9,1,0,28,0,2,0,1,1,-9,0,4,7.4983592,7.3279505,6.0685487,0,0,-1095.2274,0,-9,-9,2021,13,1,33,27,1,1,0,6.3014293,6.3014293,.05,.05,0,0,0,0,0,0,1,1,0,6.0756035,0,40.18,62.68,-9,-9,3.333333333333333,4,2,0,0,2,4,3,0,323.66666,-47389.266,-34411.195,0,0,368.6058,0,2154.0803 +7662,9347,16683,-9,16682,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.13489,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,4,3,0,323.66666,-47389.266,-34411.195,0,0,368.6058,0,2154.0803 +7662,9347,16684,-9,16682,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.18695,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,3,0,323.66666,-47389.266,-34411.195,0,0,368.6058,0,2154.0803 +7663,9348,16685,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1128.7369,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.62,41.35,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,96,436646.72,0,185224.05,0,0,0,195.19472 +7664,9349,16686,16688,-9,-9,1,1,30,1,1,0,1,1,-9,0,5,8.8070955,8.9603806,0,6,0,8.4137669,0,2,1,2021,9,1,48,53,1,1,0,15.611115,15.611115,.05,.05,.05,0,0,0,0,0,1,1,0,1.2757927,0,54.1,59.11,41.47,59.33,8.333333333333334,1,1,0,0,6,7,5,1,1284.6666,428075.53,434670.47,425477.28,343545.97,30181.57,0,4577.2397 +7664,9349,16687,-9,16688,16686,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1118.1179,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,1284.6666,428075.53,434670.47,425477.28,343545.97,30181.57,0,4577.2397 +7664,9349,16688,16686,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,8.1835814,8.4324656,0,6,0,-61.153511,-9,-9,-9,2021,12,3,47,0,1,3,0,8.6682425,8.6682425,.05,.05,0,0,0,0,0,0,1,1,0,.33175531,0,41.47,59.33,54.1,59.11,10,1,1,0,0,3,7,5,1,1284.6666,428075.53,434670.47,425477.28,343545.97,30181.57,0,4577.2397 +7665,9350,16689,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.5918083,6.7479892,0,0,-999.08484,0,-9,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,7.7741737,0,0,1,1,0,0,7.0810118,53,46,-9,-9,8,1,1,0,0,0,12,2,1,1259,518647.81,249031.19,155828.66,0,0,0,1655.2917 +7666,9351,16690,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,5.7837963,5.875421,0,0,0,-936.37354,0,2,-9,2021,22,9,1,1,1,9,0,41.538094,41.538094,0,0,0,0,0,0,0,0,1,0,1,0,0,30.02,32.44,-9,-9,5,4,2,0,1,2,8,2,0,479,0,0,0,0,0,0,1465.4299 +7667,9352,16691,16692,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.0737658,8.5887918,0,20,-2,-60.29784,0,2,1,2021,11,0,42,40,1,0,0,21.57864,21.57864,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.28,60.18,48.87,58.55,8.333333333333334,1,1,0,0,8,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16692,16691,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,7.3506627,7.3454704,0,20,2,-24.506145,0,2,2,2021,11,0,14,0,1,0,0,10.69484,10.69484,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.28,60.18,8.333333333333334,1,1,0,0,2,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16693,-9,16692,16691,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.43768,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16694,-9,16692,16691,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.47589,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7667,9352,16695,-9,16692,16691,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-951.77789,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,701.40002,311545.25,332239.06,0,0,9815.4531,0,3223.9351 +7668,9353,16696,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.3970098,8.5550299,0,0,0,-1043.2019,-9,-9,-9,2021,12,3,37,0,1,3,0,12.013572,12.013572,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,63.03,22.21,-9,-9,6.666666666666667,3,4,0,0,4,8,4,0,336,281974.56,-21580.492,323695.41,58855.074,1559.85,2621.6235,1439.7739 +7668,9354,16697,-9,16696,-9,1,0,20,0,1,0,2,2,-9,0,4,7.7007093,7.7437406,0,0,0,-832.74115,-9,2,-9,2021,12,0,14,0,1,2,1,21.63867,21.63867,0,0,0,0,0,0,0,0,1,1,0,.91537368,0,46,59,-9,-9,7,3,4,0,0,1,8,3,0,248,116781.34,0,0,0,-2944.1555,0,1400.229 +7669,9355,16698,-9,16700,16699,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1037.5609,-9,1,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,754.66669,165853.81,51360.523,241956.25,116893.45,9734.8506,3603.9321,3602.6221 +7669,9355,16699,16700,-9,-9,1,1,55,0,1,0,3,3,-9,0,5,8.2925816,8.4565086,5.9972711,1,9,95.359756,-9,-9,-9,2021,15,2,45,0,1,2,0,10.967097,10.967097,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7751837,51.65,49.55,51.97,27.61,8.333333333333334,1,1,0,0,13,4,4,1,754.66669,165853.81,51360.523,241956.25,116893.45,9734.8506,3603.9321,3602.6221 +7669,9355,16700,16699,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.1219358,8.3564968,6.7241096,1,0,17.320089,0,-9,-9,2021,12,0,37,37,1,0,0,13.845367,13.845367,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0351167,51.97,27.61,51.65,49.55,8.333333333333334,1,1,0,0,10,4,4,1,754.66669,165853.81,51360.523,241956.25,116893.45,9734.8506,3603.9321,3602.6221 +7670,9356,16701,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.5251427,8.4956493,0,0,0,-921.09259,0,2,1,2021,12,1,40,40,1,1,0,14.275289,14.275289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,597,621966.56,-38075.336,403735.22,0,0,0,2195.1133 +7670,9357,16702,-9,16701,-9,1,1,25,0,0,0,1,1,-9,0,3,8.1091242,8.0846586,0,0,0,-850.03064,0,2,2,2021,13,2,45,45,1,2,1,9.4424829,9.4424829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,6,7,4,1,322,128996.67,-148253.14,0,0,0,0,1956.484 +7670,9358,16703,-9,16701,-9,1,1,22,0,0,0,2,2,-9,0,2,6.6418943,6.7992506,0,0,0,-1168.2434,0,2,-9,2021,12,1,20,12,1,1,1,4.3214335,4.3214335,0,0,0,0,0,0,0,0,0,0,0,0,0,43.89,54.51,-9,-9,3.333333333333333,1,1,0,0,3,7,2,1,534,386.03403,0,0,0,0,0,-356.66138 +7671,9359,16704,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,5,0,3.1955705,3.2560802,0,0,-1016.7627,-9,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7567959,59.93,44.12,-9,-9,10,1,1,0,0,0,7,2,0,432,40668.84,-11488.706,0,0,0,0,606.22571 +7672,9360,16705,-9,16707,16706,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.8737,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,3,0,1807.6666,201244.16,197336.55,0,0,0,0,1549.6628 +7672,9360,16706,16707,-9,-9,1,1,41,0,1,0,3,3,-9,0,4,0,0,0,5,7,47.321442,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,41.85,56.37,5,1,1,1,1,0,11,3,0,1807.6666,201244.16,197336.55,0,0,0,0,1549.6628 +7672,9360,16707,16706,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.8111005,8.1423168,0,5,-7,3.4378946,0,-9,-9,2021,12,0,38,38,1,0,0,8.9780092,8.9780092,0,0,0,0,0,0,0,0,1,1,0,0,0,41.85,56.37,50,57,8.333333333333334,1,1,0,1,9,11,3,0,1807.6666,201244.16,197336.55,0,0,0,0,1549.6628 +7673,9361,16708,-9,16709,-9,1,0,40,0,0,0,1,1,-9,0,2,8.0663633,7.9381995,0,0,0,-895.04211,0,1,1,2021,9,1,38,35,1,1,0,9.8003654,9.8003654,0,0,0,0,0,0,0,0,1,1,0,5.1218657,0,56,35.8,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,421,166069.66,0,0,0,6702.8237,0,1174.4021 +7673,9362,16709,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.7364335,6.4596896,0,0,-1076.2448,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9253654,6.6312079,47.07,48.77,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,736,1155662.8,334564.84,592634.81,0,0,0,784.59296 +7674,9363,16710,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1055.1324,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,30.63,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,3844,0,0,0,0,0,0,1177.6139 +7675,9364,16711,-9,16715,16712,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.2341,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16712,16715,-9,-9,1,1,39,1,3,0,2,2,-9,0,4,8.8736134,8.9471674,0,6,3,98.65374,0,-9,-9,2021,9,0,21,44,1,0,0,42.39204,42.39204,.05,.05,0,0,0,0,0,0,1,1,0,6.6240268,0,59.29,49.68,55.79,52.62,8.333333333333334,1,1,0,0,8,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16713,-9,16715,16712,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.8995,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16714,-9,16715,16712,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-992.25732,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7675,9364,16715,16712,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.1221504,8.1175156,0,6,-3,-35.613029,0,2,2,2021,8,0,33,38,1,0,0,10.921887,10.921887,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,59.29,49.68,8.333333333333334,1,1,0,0,6,13,4,1,617,641468.06,192246.33,263619.06,13195.957,521.99493,0,5078.1108 +7676,9365,16716,16717,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8174939,5.813684,48,0,142.80464,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0343037,5.7280359,61.28,48.88,56.92,49.39,10,1,1,0,0,3,1,3,1,597.5,1044507.9,661723.25,273373.22,0,0,0,2348.9893 +7676,9365,16717,16716,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.4771781,7.2467499,48,0,132.88066,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8451657,7.6315246,56.92,49.39,61.28,48.88,8.333333333333334,1,1,0,0,0,1,3,1,597.5,1044507.9,661723.25,273373.22,0,0,0,2348.9893 +7677,9366,16718,-9,16719,16720,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1075.3621,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7677,9366,16719,16720,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.9029818,7.9446998,0,8,7,-4.7075186,0,-9,-9,2021,12,1,39,39,1,1,0,8.1890879,8.1890879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.58,53.69,47.05,56.66,8.333333333333334,1,1,0,0,11,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7677,9366,16720,16719,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,9.1041803,9.1104288,0,8,-7,-106.59207,0,2,2,2021,12,1,44,44,1,1,0,20.154411,20.154411,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,47.05,56.66,50.58,53.69,6.666666666666667,1,1,0,0,9,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7677,9366,16721,-9,16719,16720,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1031.9844,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,11,12,5,1,310.5,373186.06,102116.56,335928.78,153055.75,0,0,3955.6206 +7678,9367,16722,16723,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,48,-2,-38.3853,-9,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,44.88,14.7,8,1,1,0,0,0,4,2,0,435.5,349704.88,138286.66,210259.94,0,0,0,1196.939 +7678,9367,16723,16722,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,5.6322799,5.4398899,48,2,-50.431107,-9,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,2.6690214,0,2,1,1,0,0,5.5309057,44.88,14.7,53,47,8.333333333333334,1,1,0,0,0,4,2,0,435.5,349704.88,138286.66,210259.94,0,0,0,1196.939 +7679,9368,16724,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.3538885,7.9754362,0,0,-1017.8724,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,3.7538314,8.1841879,60.12,54.8,-9,-9,10,1,1,0,0,0,4,4,1,1708,855806.13,613112.81,308715.91,0,0,0,2578.6987 +7680,9369,16725,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,7.5956044,7.5149708,0,0,0,-990.32355,0,-9,-9,2021,7,0,35,16,1,0,0,7.1222596,7.1222596,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,10,1,1,0,0,7,9,3,0,2095,-96506.852,0,0,0,0,0,1327.9855 +7681,9370,16726,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-937.72156,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7827067,0,50.33,41.27,-9,-9,10,1,1,0,0,0,7,1,1,717,-77863.797,0,0,0,0,0,836.37714 +7682,9371,16727,16728,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,7.6514831,7.5016847,11,-5,39.069084,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5330052,57.16,56.15,62.43,40.11,8.333333333333334,1,1,0,0,12,5,3,1,1093.5,1610178.5,1266777.8,277502.53,0,0,0,1579.0642 +7682,9371,16728,16727,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.7708783,7.3321962,33,5,1.6987625,0,1,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.7393932,62.43,40.11,57.16,56.15,8.333333333333334,1,1,0,0,12,5,3,1,1093.5,1610178.5,1266777.8,277502.53,0,0,0,1579.0642 +7683,9372,16729,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,1,0,0,0,0,0,-882.44073,0,3,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,19.01,22.64,-9,-9,0,2,3,0,1,0,8,1,0,147,68939.57,0,0,0,0,0,1149.3287 +7684,9373,16730,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1164.1122,1,3,3,2021,13,1,0,13,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.11,37.64,-9,-9,5,2,3,0,0,4,8,2,0,647,81697.023,0,0,0,0,0,-237.2628 +7685,9374,16731,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,5.3928332,5.3760734,0,0,-964.28638,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2636826,5.3692312,61.87,34.01,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,301,121971.85,55283.984,0,0,0,702.63062,1168.683 +7685,9375,16732,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,0,0,0,0,0,-891.17163,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.77457917,0,57.78,38.59,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,894,480559.34,0,297121.66,0,0,0,1527.8538 +7686,9376,16733,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.9842577,5.7026792,0,0,-873.40582,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1137123,5.5738339,52,45,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,188,138978.88,111884.3,0,0,0,0,454.42743 +7687,9377,16734,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.457335,6.3129454,0,0,-1068.6874,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2762961,6.6417427,54.2,57.49,-9,-9,5,1,1,0,0,4,6,2,1,750,1690063.9,1341255.8,145835.02,0,0,0,1059.2352 +7688,9378,16735,16738,-9,-9,1,1,50,0,3,0,3,3,-9,0,4,8.005125,7.7353563,0,8,12,-61.525284,0,-9,-9,2021,9,0,60,60,1,1,0,5.7414012,5.7414012,0,0,0,0,0,0,0,0,1,1,0,5.6818748,0,53,55,54.1,59.11,8,4,1,0,0,1,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9378,16736,-9,16738,16735,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.34888,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9378,16737,-9,16738,16735,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.9478,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9378,16738,16735,16739,-9,1,0,38,0,3,0,2,2,-9,0,5,0,0,0,18,-12,88.012192,0,1,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.1,59.11,53,55,10,1,1,0,0,1,13,2,1,988.75,249657.69,668.50781,178658.84,7518.6138,0,0,2797.717 +7688,9379,16739,-9,-9,-9,1,0,67,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1123.1304,-9,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0662897,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,483,2692.6538,83029.57,0,0,0,0,-105.95554 +7689,9380,16740,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,3,0,7.535841,7.5026512,0,0,-1044.3969,-9,2,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5770264,42.75,50.64,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,561,253024.77,2752.7019,109882.44,0,0,0,1022.6387 +7690,9381,16741,16742,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.7476797,9.0318108,0,6,1,-25.140724,-9,-9,-9,2021,9,0,39,0,1,1,0,18.908926,18.908926,.05,.05,0,0,0,0,0,0,1,1,0,3.9182305,0,53,55,54.2,57.49,8,1,1,0,0,1,12,4,1,1123,320112.53,43387.828,217219.7,133102.61,1882.3656,5224.8208,3181.5496 +7690,9381,16742,16741,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.4558096,7.8696842,0,20,-1,-52.749847,0,2,2,2021,8,0,27,33,1,0,0,10.053679,10.053679,.05,.05,0,0,0,0,0,0,1,1,0,3.2626004,0,54.2,57.49,53,55,8.333333333333334,1,1,0,0,7,12,4,1,1123,320112.53,43387.828,217219.7,133102.61,1882.3656,5224.8208,3181.5496 +7690,9381,16743,-9,16742,16741,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-945.53204,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,12,4,1,1123,320112.53,43387.828,217219.7,133102.61,1882.3656,5224.8208,3181.5496 +7691,9382,16744,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,8.6649599,8.7844048,4.8812218,0,0,-1008.1797,0,3,3,2021,6,0,65,72,1,0,0,11.150687,11.150687,.05,.05,0,0,0,0,0,0,0,0,0,6.1657486,5.5343266,56.37,24.71,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,290,190417.08,204954.89,0,0,0,0,1768.4849 +7692,9383,16745,16746,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.4240618,8.8034372,0,10,2,-16.438643,0,2,3,2021,12,2,35,35,1,2,0,16.866852,16.866852,.05,.05,0,0,0,0,0,2,0,0,0,3.6584332,0,49.06,43.85,22.94,65.05,6.666666666666667,3,4,0,0,10,2,5,1,554.5,1184352.8,705961.13,398113.5,46032.531,6651.7842,0,3457.1089 +7692,9383,16746,16745,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.7933531,8.7669678,0,10,-2,-102.36957,0,2,3,2021,18,7,43,44,1,7,0,18.405844,18.405844,.05,.05,0,0,0,0,0,0,0,0,0,5.3775225,0,22.94,65.05,49.06,43.85,1.666666666666667,1,1,0,0,12,2,5,1,554.5,1184352.8,705961.13,398113.5,46032.531,6651.7842,0,3457.1089 +7693,9384,16747,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1647501,6.9985662,0,0,-867.10974,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9952555,61.44,40.48,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,390,358018.5,97687.367,75349.547,0,6602.8853,0,1375.5713 +7694,9385,16748,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,7.4150691,7.5542989,0,0,0,-1024.858,0,3,3,2021,24,11,30,30,1,11,0,8.1534481,8.1534481,.05,.05,0,1,3.1249182,9.5250683,18.845064,0,1,0,1,0,0,31.04,33.39,-9,-9,3.333333333333333,1,1,0,0,15,12,3,0,553,286018.59,132649.72,0,0,0,0,844.95087 +7695,9386,16749,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,9.3958769,9.3252125,0,0,0,-1081.24,0,2,1,2021,24,12,57,52,1,12,0,21.918234,21.918234,.05,.05,0,0,0,0,0,0,0,0,0,4.7115555,0,28.3,65.67,-9,-9,3.333333333333333,1,1,0,0,9,6,5,1,189,1011724.1,933431.13,214711.59,0,0,0,3701.4177 +7696,9387,16750,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,9.2174988,9.2344933,0,0,0,-1027.0208,0,-9,-9,2021,18,5,40,28,1,5,0,35.827671,35.827671,.05,.05,0,0,0,0,0,0,0,0,0,.12332018,0,22.73,65.47,-9,-9,1.666666666666667,1,1,0,0,4,10,5,1,712,-35660.879,-22336.338,0,0,5597.9766,0,4103.4644 +7697,9388,16751,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1059.7037,0,2,2,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.42,32.69,-9,-9,0,1,1,0,0,0,7,1,0,259,-44711.797,0,0,0,0,0,509.16861 +7698,9389,16752,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.1795192,4.6100836,0,0,-1101.537,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5151043,5.0507545,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1235,-64289.023,54119.461,99903.633,3145.9246,446.01563,0,366.35974 +7699,9390,16753,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,7.0145025,6.8481698,0,0,-864.63464,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5117936,6.9409499,52.58,50.04,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1542,534103.94,53874.664,225484.25,0,0,0,935.66254 +7700,9391,16754,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.027154,8.3476715,0,0,0,-1114.3832,0,1,2,2021,11,0,45,23,1,0,0,7.8290658,7.8290658,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.49,60.87,-9,-9,8.333333333333334,1,1,0,0,10,5,4,0,750,76729.656,13125.209,132847.09,73509.5,0,0,1087.6049 +7701,9392,16755,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,9.4339848,9.0724516,0,0,0,-1074.955,0,2,2,2021,4,0,47,55,1,0,0,32.213409,32.213409,.05,.05,0,0,0,0,0,0,0,0,0,2.0669212,0,59.43,58.05,-9,-9,10,1,1,0,0,11,7,5,1,201,591812.88,100040.8,442134.44,0,0,0,3382.6826 +7702,9393,16756,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.3960996,6.3381886,0,0,-953.01752,0,3,3,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,2.1769333,8.0701571,18.847588,0,1,1,0,3.7403388,6.3702984,36.57,29.27,-9,-9,10,1,1,0,0,0,10,2,0,789,199060.98,111717.93,207142.97,3523.0154,0,0,2120.6328 +7703,9394,16757,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,7.6668234,7.1776218,0,0,0,-961.12439,0,3,3,2021,9,0,42,40,1,0,0,6.0294399,6.0294399,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,542,18107.631,61772.879,0,0,0,0,494.44077 +7704,9395,16758,-9,-9,-9,1,0,38,0,0,0,3,3,-9,1,1,0,4.6274695,4.4919515,0,0,-1118.4944,0,2,2,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6652274,0,21.73,26.97,-9,-9,0,4,2,0,0,2,2,2,0,520,-50038.59,0,0,0,0,0,1860.8152 +7704,9395,16759,-9,16758,-9,1,1,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-880.13043,-9,3,-9,2021,29,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.77,37.78,-9,-9,3.333333333333333,4,2,0,0,0,2,2,0,520,-50038.59,0,0,0,0,0,1860.8152 +7705,9396,16760,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,8.3410931,8.2701044,2.9833512,0,0,-933.15643,0,3,3,2021,9,0,42,47,1,0,0,11.990891,11.990891,.05,.05,.05,0,0,0,0,2,1,1,0,3.2985244,3.250257,44.94,49.91,-9,-9,8.333333333333334,1,1,0,0,10,9,4,0,318,1401076.6,620625.31,487206,0,0,0,1987.9679 +7706,9397,16761,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1018.2746,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.2,20.24,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,622,0,0,0,0,0,0,1345.644 +7707,9398,16762,16763,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,37,-1,-17.794031,0,-9,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.96,33.25,44.8,25.67,1.666666666666667,1,1,0,1,0,10,2,0,955.5,630150.75,341074.5,262850.06,0,0,0,447.49341 +7707,9398,16763,16762,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,6.7233295,7.0917425,0,37,1,88.746384,0,3,3,2021,20,7,15,15,1,7,0,6.8559132,6.8559132,0,0,0,0,0,0,0,0,1,1,0,0,0,44.8,25.67,45.96,33.25,3.333333333333333,1,1,0,1,3,10,2,0,955.5,630150.75,341074.5,262850.06,0,0,0,447.49341 +7707,9399,16764,16765,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,0,0,0,1,6,113.4474,-9,-9,-9,2021,15,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.49,49.38,41.58,52.86,3.333333333333333,1,1,1,0,0,10,2,0,1735,7023.3809,-21619.717,0,0,0,5599.3281,1006.9658 +7707,9399,16765,16764,16762,16763,1,0,26,0,0,0,2,2,-9,0,2,7.3705754,7.6813631,0,1,-6,-59.707115,0,3,3,2021,9,2,15,35,1,2,0,13.874801,13.874801,0,0,0,0,0,0,0,0,1,1,0,0,0,41.58,52.86,36.49,49.38,8.333333333333334,1,1,0,0,3,10,2,0,1735,7023.3809,-21619.717,0,0,0,5599.3281,1006.9658 +7708,9400,16766,16767,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3578091,8.2349377,0,19,-3,84.276505,0,3,3,2021,9,0,77,40,1,0,0,6.3849592,6.3849592,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.06,49.19,57.16,56.15,6.666666666666667,1,1,0,0,13,9,5,1,507.5,216659.75,135444.98,404276.56,275950.13,8450.6055,5026.0762,5355.166 +7708,9400,16767,16766,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.028471,9.3691807,0,19,3,-26.998785,0,3,3,2021,6,0,40,40,1,0,0,23.743471,23.743471,.05,.05,.05,0,0,0,0,0,0,0,0,6.1950488,0,57.16,56.15,46.06,49.19,8.333333333333334,1,1,0,0,13,9,5,1,507.5,216659.75,135444.98,404276.56,275950.13,8450.6055,5026.0762,5355.166 +7709,9401,16768,16769,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8593893,8.1383286,10,2,90.005257,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1750298,58.72,51.29,47.55,44.33,8.333333333333334,1,1,0,0,0,5,3,1,1223,970479.31,710580.5,291091.31,0,0,-527.80237,2550.7769 +7709,9401,16769,16768,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,10,-2,121.52729,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,44.33,58.72,51.29,8.333333333333334,1,1,0,0,5,5,3,1,1223,970479.31,710580.5,291091.31,0,0,-527.80237,2550.7769 +7710,9402,16770,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-982.50476,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,4.4788575,0,0,1,1,0,0,0,54,45,-9,-9,8,1,1,0,0,0,13,1,1,508,264235.47,0,262752.38,0,0,0,902.72266 +7711,9403,16771,-9,16773,16772,1,0,16,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1055.8013,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,72.56,35.67,-9,-9,10,2,3,0,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16772,16773,-9,-9,1,1,39,0,4,0,1,1,-9,0,4,9.0734196,9.0188074,0,20,-4,-71.945,0,3,3,2021,6,0,50,50,1,0,0,21.718803,21.718803,.05,.05,0,0,0,0,0,0,1,1,0,3.6173005,0,52.48,54.33,44.83,42.7,8.333333333333334,2,3,0,0,11,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16773,16772,-9,-9,1,0,43,0,4,0,1,1,-9,0,3,0,0,0,20,4,-31.874453,0,3,1,2021,13,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.83,42.7,52.48,54.33,8.333333333333334,2,3,0,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16774,-9,16773,16772,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-995.93573,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16775,-9,16773,16772,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-945.88245,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7711,9403,16776,-9,16773,16772,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-987.46936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,402.5,37886.684,72340.086,124399.39,69784.961,8777.1797,4851.3652,2930.9172 +7712,9404,16777,16779,-9,-9,1,0,39,0,1,0,3,3,-9,0,5,6.6964664,6.2208905,0,17,-8,-164.38358,0,-9,-9,2021,5,0,6,6,1,0,0,13.003189,13.003189,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,62.39,56.71,10,2,3,0,0,8,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7712,9404,16778,-9,16777,16779,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-867.01514,-9,3,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,2,3,0,0,1,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7712,9404,16779,16777,-9,-9,1,1,47,0,1,0,3,3,-9,0,5,7.7516851,7.4769559,0,17,8,-9.5936947,0,-9,-9,2021,5,0,37,37,1,0,0,6.2732625,6.2732625,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,60.02,56.42,10,2,3,0,0,10,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7712,9404,16780,-9,16777,16779,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.1967,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,1088.25,184066.83,0,144479.98,60377.445,0,0,1969.8213 +7713,9405,16781,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1024.0679,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.52,45.11,-9,-9,6.666666666666667,3,4,0,0,0,8,1,1,1146,145774.14,-3088.1409,0,0,0,0,2064.8025 +7714,9406,16782,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.1091318,6.32375,0,0,-1038.7848,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7692289,6.1143398,51.02,30.96,-9,-9,5,1,1,0,0,0,2,2,1,2370,198216.11,34777.789,130140.57,0,0,0,1483.6122 +7715,9407,16783,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1078.6315,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5144873,0,49.86,55.31,-9,-9,5,1,1,0,0,3,10,1,1,175,-22669.785,0,0,0,0,0,665.18927 +7716,9408,16784,16785,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,47,2,-41.39333,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0122571,0,54.62,48,54.74,57.22,5,1,1,0,0,6,6,3,1,374,1281586.9,586969.75,296083.5,0,0,0,20296.439 +7716,9408,16785,16784,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.2236528,7.9878306,47,-2,28.312994,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.7741795,7.7517028,54.74,57.22,54.62,48,8.333333333333334,1,1,0,0,0,6,3,1,374,1281586.9,586969.75,296083.5,0,0,0,20296.439 +7716,9409,16786,-9,16784,16785,1,1,34,0,0,0,1,1,-9,0,2,7.5878968,7.6819553,0,0,0,-985.23584,0,2,1,2021,11,0,20,35,1,0,0,11.337035,11.337035,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.07,44.05,-9,-9,5,1,1,0,0,2,6,3,1,758,-48043.535,21950.33,120889,0,785.89465,-69.617401,960.72968 +7717,9410,16787,16788,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,9.0543041,8.8002367,36,2,123.49226,0,2,2,2021,2,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0599017,8.7571917,58.62,52.91,49.86,55.31,10,1,1,0,0,9,12,5,1,442,2924608.3,2254053,235205.75,0,0,0,5020.4253 +7717,9410,16788,16787,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,8.2590265,7.6915483,36,-2,.95915955,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.7604575,8.0452251,49.86,55.31,58.62,52.91,10,1,1,0,0,9,12,5,1,442,2924608.3,2254053,235205.75,0,0,0,5020.4253 +7718,9411,16789,16790,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9793854,7.4690938,49,4,-29.336449,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.394084,8.0605869,61.61,37.79,51.37,35.92,8.333333333333334,1,1,0,0,0,7,3,1,1083,791591.88,378418.56,231972.05,0,0,0,2405.5151 +7718,9411,16790,16789,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,49,-4,8.6164589,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9946384,0,51.37,35.92,61.61,37.79,8.333333333333334,1,1,0,0,0,7,3,1,1083,791591.88,378418.56,231972.05,0,0,0,2405.5151 +7719,9412,16791,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,0,0,-923.8913,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,10.987801,0,0,1,1,0,0,0,38.4,35.36,-9,-9,5,1,1,0,0,0,9,1,1,406,12899.478,0,0,0,0,0,344.62787 +7719,9413,16792,-9,16791,-9,1,0,56,0,0,0,2,2,-9,0,3,7.5240798,7.2022929,0,0,0,-984.9256,0,3,-9,2021,8,0,28,40,1,0,0,8.0619278,8.0619278,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.14,51.28,-9,-9,5,1,1,0,0,3,9,3,1,1026,74917.586,82345.875,0,0,0,0,64.675652 +7719,9414,16793,-9,16792,-9,1,1,32,0,0,0,2,2,-9,0,4,7.782568,7.7286434,0,0,0,-1176.2499,-9,2,-9,2021,10,0,55,0,1,1,1,3.9996409,3.9996409,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,9,3,1,452,5136.3779,0,96360.328,31624.279,0,0,1489.7705 +7720,9415,16794,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-958.17145,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.04,54.65,-9,-9,8.333333333333334,1,1,1,0,0,2,2,0,476,7448.1279,0,0,0,0,0,239.27725 +7721,9416,16795,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1094.0737,0,3,2,2021,13,0,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.5,32.35,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,4086,322637.81,0,284200.84,0,0,0,1824.5714 +7722,9417,16796,-9,16797,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1072.6133,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,1,548.5,-92154.859,29874.678,89995.063,128802.28,0,0,838.00842 +7722,9417,16797,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,8.200985,8.1272297,0,0,0,-1099.8525,0,-9,2,2021,6,0,34,30,1,0,0,12.405173,12.405173,0,0,0,0,0,0,0,0,0,0,0,3.1323214,0,57.06,57.76,-9,-9,10,1,1,0,0,8,10,3,1,548.5,-92154.859,29874.678,89995.063,128802.28,0,0,838.00842 +7723,9418,16798,-9,16799,16800,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.24615,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,0,820.33331,472704.41,192797,348752.41,207770.08,0,0,4630.0791 +7723,9418,16799,16800,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,9.4115191,9.0914536,0,7,3,34.782684,0,1,1,2021,9,3,47,50,1,3,0,22.238981,22.238981,0,0,0,0,0,0,0,0,1,1,0,0,0,46.27,51.76,44.66,57.83,8.333333333333334,1,1,0,0,8,4,5,0,820.33331,472704.41,192797,348752.41,207770.08,0,0,4630.0791 +7723,9418,16800,16799,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,8.2215681,8.3239212,0,16,-3,4.2508497,0,2,1,2021,11,0,41,19,1,0,0,9.4666471,9.4666471,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.66,57.83,46.27,51.76,8.333333333333334,1,1,0,0,5,4,5,0,820.33331,472704.41,192797,348752.41,207770.08,0,0,4630.0791 +7724,9419,16801,-9,16802,16803,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.87769,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,799,473786.03,316413.53,209367.88,108014.48,0,0,13095.943 +7724,9419,16802,16803,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.9085045,8.871748,0,6,0,-.58390129,0,2,2,2021,6,0,60,45,1,0,0,14.465028,14.465028,.05,.05,0,0,0,0,0,0,1,1,0,6.1927156,0,61.27,46.03,49.35,59.64,8.333333333333334,1,1,0,0,6,4,5,1,799,473786.03,316413.53,209367.88,108014.48,0,0,13095.943 +7724,9419,16803,16802,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.8658457,9.7282524,0,6,0,86.752464,0,2,2,2021,15,4,80,80,1,4,0,26.440271,26.440271,.05,.05,.05,0,0,0,0,0,1,1,0,1.4591284,0,49.35,59.64,61.27,46.03,6.666666666666667,1,1,0,1,5,4,5,1,799,473786.03,316413.53,209367.88,108014.48,0,0,13095.943 +7725,9420,16804,16805,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.2406349,8.589179,0,12,5,-155.15054,0,3,1,2021,12,0,39,-9,1,0,0,9.0220127,9.0220127,0,0,0,0,0,0,0,0,1,1,0,0,0,29.97,53.91,35.92,56.78,5,2,3,0,0,10,8,3,0,975.66669,476760.94,0,555245.88,123248.16,0,0,2083.8481 +7725,9420,16805,16804,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,6.2533302,6.3961463,0,12,-5,81.24662,0,3,2,2021,12,0,8,-9,1,0,0,8.8634348,8.8634348,0,0,0,0,0,0,0,0,1,1,0,0,0,35.92,56.78,29.97,53.91,5,2,3,0,0,10,8,3,0,975.66669,476760.94,0,555245.88,123248.16,0,0,2083.8481 +7725,9420,16806,-9,16805,16804,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1000.606,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,3,0,975.66669,476760.94,0,555245.88,123248.16,0,0,2083.8481 +7726,9421,16807,16808,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,38,8,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8515358,0,57.57,49.69,55.79,52.62,8.333333333333334,1,1,0,0,7,5,1,1,1684,316252.09,0,140061.38,22631.604,0,0,633.32367 +7726,9421,16808,16807,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,39,-8,0,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.020500761,0,1,1,0,0,0,55.79,52.62,57.57,49.69,8.333333333333334,1,1,0,0,0,5,1,1,1684,316252.09,0,140061.38,22631.604,0,0,633.32367 +7727,9422,16809,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.5273438,9.5150347,6.5404935,0,0,-870.06482,0,2,2,2021,7,0,30,27,1,0,0,47.929958,47.929958,0,0,0,0,0,0,0,0,0,0,0,6.8147407,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,12,9,5,1,372,587533.94,20744.955,590763.13,199793.44,0,0,7092.9775 +7727,9423,16810,-9,16809,-9,1,1,19,0,0,0,2,2,1,0,4,7.5868711,7.5656056,0,0,0,-1064.8452,-9,2,-9,2021,9,1,35,0,1,1,1,8.4642172,8.4642172,0,0,0,0,0,0,0,0,0,0,0,1.1112354,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,12,9,3,1,211,371277.72,0,0,0,0,0,771.84595 +7728,9424,16811,16812,-9,-9,1,1,25,0,1,0,1,1,-9,0,3,8.265296,8.2333298,0,1,-4,35.483192,0,1,2,2021,16,5,46,48,1,5,0,12.437976,12.437976,0,0,0,0,0,0,0,0,1,1,0,2.6989083,0,34.71,56.98,39.96,46.57,5,1,1,0,0,5,9,4,0,2399.6667,35565.594,39260.867,0,0,0,0,3436.8525 +7728,9424,16812,16811,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,8.0707855,7.9262385,0,1,4,16.736803,-9,-9,-9,2021,9,0,30,0,1,0,0,10.474032,10.474032,0,0,0,0,0,0,0,0,1,1,0,0,0,39.96,46.57,34.71,56.98,8.333333333333334,2,3,0,0,9,9,4,0,2399.6667,35565.594,39260.867,0,0,0,0,3436.8525 +7728,9424,16813,-9,16812,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.3173,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,9,4,0,2399.6667,35565.594,39260.867,0,0,0,0,3436.8525 +7729,9425,16814,16815,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,7.8987904,9.3146629,9.4143991,48,2,-3.2340167,0,2,2,2021,3,0,10,16,1,0,0,31.781057,31.781057,0,0,0,1,0,0,0,0,1,1,0,7.4343123,8.8997784,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,12,10,5,1,528.5,1872085,392508.63,946355.88,0,0,0,9338.4609 +7729,9425,16815,16814,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.833178,7.3493695,12,-2,-82.268372,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1833506,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,12,10,5,1,528.5,1872085,392508.63,946355.88,0,0,0,9338.4609 +7730,9426,16816,-9,16817,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.72522,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,1130,32116.154,90918,0,0,0,0,1710.5139 +7730,9426,16817,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.6247997,7.5085602,0,0,0,-798.94989,-9,2,2,2021,12,0,50,0,1,2,0,3.8405235,3.8405235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,51,-9,-9,7,3,4,0,0,12,8,2,0,1130,32116.154,90918,0,0,0,0,1710.5139 +7731,9427,16818,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,8.0551891,7.8918633,0,0,-997.56854,0,2,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,7.8276358,0,0,1,1,0,0,8.1680593,49.49,26.89,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,550,245963.94,107665.27,0,0,0,0,1814.9519 +7732,9428,16819,16820,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,5.9195147,5.9271951,39,5,87.195198,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9596286,5.8451304,62.25,48.33,54.2,57.49,10,1,1,0,0,4,10,3,1,451,608218.63,389516.25,169986.84,0,-1247.3328,0,2076.2021 +7732,9428,16820,16819,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.4435091,7.4548216,39,-5,4.3504157,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2985392,7.7007375,54.2,57.49,62.25,48.33,10,1,1,0,0,6,10,3,1,451,608218.63,389516.25,169986.84,0,-1247.3328,0,2076.2021 +7733,9429,16821,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,7.8518057,8.1081219,0,0,0,-1095.761,0,3,-9,2021,6,0,40,34,1,0,0,8.728446,8.728446,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,12,9,3,1,235,-22780.422,108941.17,169393.23,72298.414,0,1869.3627,557.11462 +7734,9430,16822,-9,16824,16823,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-891.89984,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,5,1,857,511832.78,263232.41,417268.09,153903.08,0,0,2418.1509 +7734,9430,16823,16824,-9,-9,1,1,58,0,1,0,2,2,-9,0,4,9.2315035,9.481679,0,7,1,176.98213,0,3,3,2021,7,0,50,50,1,0,0,23.186527,23.186527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,47.19,44.55,8.333333333333334,1,1,0,0,8,12,5,1,857,511832.78,263232.41,417268.09,153903.08,0,0,2418.1509 +7734,9430,16824,16823,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,5.5185986,5.9544444,7,-1,-3.9021189,0,3,3,2021,15,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7003622,47.19,44.55,56.57,57.78,0,1,1,0,0,0,12,5,1,857,511832.78,263232.41,417268.09,153903.08,0,0,2418.1509 +7735,9431,16825,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-929.33295,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.43,58.05,-9,-9,10,1,1,1,0,2,2,1,0,730,-68221.438,0,0,0,0,0,304.81052 +7736,9432,16826,16827,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,6.0806675,5.8808994,43,-7,-26.329323,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.51980978,5.8565097,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,5,4,1,708,1473908,1212394,246586.44,0,0,0,2848.709 +7736,9432,16827,16826,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.0071087,8.3833971,43,7,160.83075,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.653388,8.2763815,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,4,5,4,1,708,1473908,1212394,246586.44,0,0,0,2848.709 +7737,9433,16828,16829,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.6975842,8.6961308,0,8,0,91.197556,0,1,2,2021,5,0,12,10,1,0,0,76.529266,76.529266,.05,.05,0,0,0,0,0,0,0,0,0,8.2447519,0,55.96,49.93,52.31,58.29,10,1,1,0,0,9,8,5,1,564.5,2183365.5,1150822.8,694352.38,33346.203,0,0,5749.2388 +7737,9433,16829,16828,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.156992,8.3509798,0,8,0,-8.557662,0,1,1,2021,7,0,15,15,1,0,0,29.356968,29.356968,0,0,0,0,0,0,0,0,0,0,0,2.8712401,0,52.31,58.29,55.96,49.93,0,1,1,0,0,9,8,5,1,564.5,2183365.5,1150822.8,694352.38,33346.203,0,0,5749.2388 +7737,9434,16830,-9,16829,16828,1,0,20,0,0,1,1,0,0,0,3,0,6.55756,6.3516731,0,0,-957.67792,-9,1,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.43536,0,36.01,53.85,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,625,-195896.95,0,0,0,0,0,979.58057 +7738,9435,16831,16832,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.7948093,7.7452278,0,7,-5,-205.73076,0,-9,2,2021,0,0,40,50,1,0,0,7.2332129,7.2332129,0,0,0,0,0,0,0,0,0,0,0,0,0,60.2,45.35,61.28,46.17,8.333333333333334,1,1,0,0,7,5,4,0,1247,590906.75,400148.88,246938.89,103555.7,0,0,2739.0266 +7738,9435,16832,16831,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.3753843,8.0826874,0,7,5,-34.710167,0,3,3,2021,8,0,37,37,1,0,0,13.065976,13.065976,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,46.17,60.2,45.35,8.333333333333334,1,1,0,0,9,5,4,0,1247,590906.75,400148.88,246938.89,103555.7,0,0,2739.0266 +7739,9436,16833,-9,16836,16835,1,0,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-990.0484,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7739,9436,16834,-9,16836,16835,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.5333,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7739,9436,16835,16836,-9,-9,1,1,42,2,2,0,2,2,-9,0,2,8.525774,8.5919809,0,6,3,20.665678,0,-9,-9,2021,10,2,48,48,1,2,0,17.505827,17.505827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.21,47.46,45.91,59.89,0,1,1,0,0,11,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7739,9436,16836,16835,-9,-9,1,0,39,2,2,0,1,1,-9,0,4,8.5903072,8.3957405,0,6,-3,73.887238,0,2,2,2021,12,2,38,38,1,2,0,13.801412,13.801412,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,38.21,47.46,6.666666666666667,1,1,0,1,11,5,5,1,1030,421935.88,233350.75,114340.75,61622.508,0,7190.6924,3560.5249 +7740,9437,16837,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.9316874,8.6584883,0,0,0,-1050.0847,0,2,2,2021,18,7,30,30,1,7,0,26.051517,26.051517,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.33,58.88,-9,-9,3.333333333333333,1,1,0,0,8,8,5,0,228,28491.77,118958.48,0,0,0,431.70609,4037.0798 +7741,9438,16838,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.483511,8.2748489,0,0,0,-925.49036,0,3,2,2021,6,0,35,35,1,0,0,10.592422,10.592422,0,0,0,0,0,0,0,0,0,0,0,3.6277742,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,10,4,1,2351,2683.624,0,0,0,0,216.44234,1850.8619 +7742,9439,16839,16840,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.3052964,7.9279513,6.1783271,13,-2,-37.598557,0,-9,-9,2021,8,0,20,15,1,0,0,9.2203817,9.2203817,0,0,0,0,0,0,0,0,1,1,0,6.1654186,6.412674,55.79,52.62,57.06,57.76,8.333333333333334,1,1,0,0,15,2,5,1,1058.5,5662515,4233730,509397.38,0,0,0,7186.9253 +7742,9439,16840,16839,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,9.3407574,9.4848928,6.2545247,41,2,-22.143866,0,3,3,2021,8,0,25,25,1,0,0,45.936588,45.936588,0,0,0,1,0,9.2447014,0,0,1,1,0,6.8697662,6.7412939,57.06,57.76,55.79,52.62,8.333333333333334,1,1,0,0,15,2,5,1,1058.5,5662515,4233730,509397.38,0,0,0,7186.9253 +7743,9440,16841,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.3314257,8.4710102,0,0,0,-879.14282,0,1,1,2021,23,10,35,35,1,10,0,15.863966,15.863966,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.62,47.06,-9,-9,3.333333333333333,1,1,0,0,11,2,5,1,203,247525.58,149885.92,211614.19,36138.492,20979.756,0,1398.2604 +7744,9441,16842,16843,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,63,-2,27.794451,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,47.73,29.63,61.04,39.41,8.333333333333334,1,1,0,0,0,11,2,1,344,167524.55,4385.5195,110773.09,0,0,0,1952.2252 +7744,9441,16843,16842,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.9455523,6.9854245,63,2,38.726738,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.7689528,61.04,39.41,47.73,29.63,10,1,1,0,0,0,11,2,1,344,167524.55,4385.5195,110773.09,0,0,0,1952.2252 +7745,9442,16844,-9,16845,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-840.65143,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,3583.6667,362089.03,230728.36,185363.08,96688.148,7275.814,0,3225.8152 +7745,9442,16845,-9,-9,-9,1,0,42,0,2,0,1,1,-9,1,2,8.2417173,8.4639425,7.2223206,0,0,-1005.7548,0,-9,-9,2021,21,7,37,43,1,7,0,11.343643,11.343643,.05,.05,0,0,0,0,0,0,1,1,0,3.8255506,6.9398355,41.12,27.25,-9,-9,5,1,1,0,0,6,4,4,1,3583.6667,362089.03,230728.36,185363.08,96688.148,7275.814,0,3225.8152 +7745,9442,16846,-9,16845,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1021.2638,-9,1,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,4,4,1,3583.6667,362089.03,230728.36,185363.08,96688.148,7275.814,0,3225.8152 +7746,9443,16847,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,2,0,5.5109572,5.3789701,0,0,-912.8205,0,1,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.2776885,0,48.76,38.46,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,1676,-257992.56,0,0,0,16174.514,5676.0605,1443.447 +7747,9444,16848,-9,16850,16851,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.06982,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7747,9444,16849,-9,16850,16851,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.9073,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7747,9444,16850,16851,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,8.4314461,8.2417707,0,3,-2,-15.995726,0,3,2,2021,12,0,40,40,1,0,0,14.888132,14.888132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,50.54,62.09,8.333333333333334,1,1,0,0,8,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7747,9444,16851,16850,-9,-9,1,1,39,0,2,0,2,2,-9,0,5,9.1682034,9.5094957,0,3,2,-104.92979,0,-9,-9,2021,9,0,40,40,1,1,0,30.429373,30.429373,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,57.06,57.76,8.333333333333334,1,1,0,0,4,11,5,1,1054.75,496171.88,278914.88,342905.16,203534.22,2527.6223,0,6855.4224 +7748,9445,16852,16853,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.5352736,8.6985188,0,4,3,29.791628,0,-9,-9,2021,9,0,53,39,1,0,0,9.9101343,9.9101343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.3,55.6,49.63,54.22,6.666666666666667,1,1,0,0,13,7,5,1,3019.5,98863.141,125200.75,220363.16,220388.45,1965.9301,0,4399.4775 +7748,9445,16853,16852,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.1926117,8.527401,0,4,-3,-9.5925064,0,-9,-9,2021,10,0,37,38,1,0,0,16.601517,16.601517,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,55.3,55.6,6.666666666666667,1,1,0,0,13,7,5,1,3019.5,98863.141,125200.75,220363.16,220388.45,1965.9301,0,4399.4775 +7749,9446,16854,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,8.0498743,8.0933628,0,0,-1068.9164,-9,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0868692,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,10,4,4,1,97,2053727.8,1142009,202965.72,86361.398,0,0,1694.5869 +7749,9447,16855,-9,16854,-9,1,0,22,0,0,0,1,1,1,0,4,7.9240489,7.9313278,0,0,0,-940.75793,-9,2,-9,2021,15,3,38,0,1,3,0,7.9972501,7.9972501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.13,54.42,-9,-9,6.666666666666667,4,2,0,0,3,4,3,1,382,-211401.72,81722.875,0,0,9109.5996,0,1653.517 +7750,9448,16856,16859,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,7.9695458,7.7392554,0,9,5,-114.78783,0,2,2,2021,11,0,41,39,1,0,0,8.1712074,8.1712074,.05,.05,0,0,0,0,0,0,1,1,0,.39156628,0,55.2,49.4,57.16,56.15,8.333333333333334,1,1,0,0,10,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7750,9448,16857,-9,16859,16856,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1125.7347,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7750,9448,16858,-9,16859,16856,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.12152,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7750,9448,16859,16856,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.27425,7.884264,0,9,-5,47.138073,0,-9,-9,2021,4,0,24,25,1,0,0,13.623888,13.623888,0,0,0,0,0,0,0,0,1,1,0,.26213881,0,57.16,56.15,55.2,49.4,8.333333333333334,1,1,0,0,10,7,4,1,1481.5,280474.28,206811.52,292078.81,112232.38,0,7479.6265,2649.6091 +7751,9449,16860,16861,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.0751324,8.2251701,0,24,3,124.05436,0,2,2,2021,7,0,38,42,1,0,0,10.779156,10.779156,.05,.05,0,0,0,0,0,2,1,1,0,0,0,63.09,47.92,51,54,8.333333333333334,1,1,0,0,8,10,5,1,793,689327.19,385825.19,129271.05,81791.242,0,0,4267.251 +7751,9449,16861,16860,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.7579498,8.9579964,0,24,-3,106.82681,0,2,2,2021,10,0,38,38,1,1,0,26.674793,26.674793,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,63.09,47.92,8,1,1,0,0,8,10,5,1,793,689327.19,385825.19,129271.05,81791.242,0,0,4267.251 +7752,9450,16862,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-937.08875,0,3,3,2021,16,4,0,8,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.96,39.87,-9,-9,6.666666666666667,1,1,0,1,2,8,1,0,549,342015.25,0,435785.91,29643.283,0,0,1593.2886 +7753,9451,16863,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.9558659,7.066854,0,0,-997.49689,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.082232,7.2306271,57.16,56.15,-9,-9,10,1,1,0,0,0,7,2,1,529,76113.133,137496.23,0,0,7200.3818,0,2176.7573 +7754,9452,16864,16865,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,9.1442146,9.038271,0,3,3,28.427553,0,-9,-9,2021,10,0,50,50,1,0,0,24.789133,24.789133,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.93,52.64,50.68,48.16,10,1,1,0,0,14,10,5,1,573.5,3357949,2794736.8,382460.38,0,0,0,4321.0195 +7754,9452,16865,16864,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.4610515,7.2857203,0,3,-3,.049118232,0,3,3,2021,13,2,24,22,1,2,0,8.1025925,8.1025925,0,0,0,0,0,0,0,2,0,0,0,0,0,50.68,48.16,52.93,52.64,5,1,1,0,0,14,10,5,1,573.5,3357949,2794736.8,382460.38,0,0,0,4321.0195 +7755,9453,16866,16867,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.0990438,8.6201868,0,40,2,-69.446541,0,2,2,2021,12,0,60,60,1,0,0,14.147656,14.147656,.05,.05,0,0,0,0,0,0,0,0,0,4.3847275,0,57.34,47.92,39.5,56.19,8.333333333333334,1,1,0,0,9,12,5,1,521.5,1314759.5,1065638.3,184122.8,7746.3545,8753.0039,1374.74,3270.3696 +7755,9453,16867,16866,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1448488,8.2846527,0,40,-2,-35.319324,0,3,3,2021,13,2,33,33,1,2,0,14.196417,14.196417,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,39.5,56.19,57.34,47.92,5,1,1,0,0,9,12,5,1,521.5,1314759.5,1065638.3,184122.8,7746.3545,8753.0039,1374.74,3270.3696 +7756,9454,16868,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.3199987,7.1228185,0,0,0,-866.79175,-9,3,3,2021,12,0,18,0,1,0,0,8.3870811,8.3870811,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.53,44.95,-9,-9,8.333333333333334,1,1,0,0,8,1,2,1,722,90846.508,7550.5981,143765.06,31174.793,0,0,618.44824 +7757,9455,16869,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.7078724,7.9659591,0,0,0,-1019.5974,0,2,1,2021,24,12,40,30,1,12,0,6.4296665,6.4296665,0,0,0,0,0,0,0,0,1,1,0,0,0,11.71,55.68,-9,-9,3.333333333333333,1,1,0,0,4,8,3,0,895.66669,105959.73,0,0,0,497.86166,801.26819,1082.7412 +7757,9455,16870,-9,16869,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.32135,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,895.66669,105959.73,0,0,0,497.86166,801.26819,1082.7412 +7757,9455,16871,-9,16869,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9109,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,895.66669,105959.73,0,0,0,497.86166,801.26819,1082.7412 +7758,9456,16872,16873,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.8650317,7.7789927,0,8,5,67.802078,0,-9,-9,2021,22,10,16,20,1,10,0,21.338699,21.338699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,18.37,64.58,25.37,63.98,3.333333333333333,4,2,0,0,12,4,3,0,2864,35266.242,-22699.816,0,0,3882.4839,516.76288,1885.2218 +7758,9456,16873,16872,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,7.1836443,7.2303185,0,8,-5,-94.322044,0,2,-9,2021,16,4,18,18,1,4,0,8.6088295,8.6088295,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.37,63.98,18.37,64.58,8.333333333333334,1,1,0,0,8,4,3,0,2864,35266.242,-22699.816,0,0,3882.4839,516.76288,1885.2218 +7759,9457,16874,16875,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.5230236,8.65417,0,32,-5,141.92142,0,3,3,2021,12,0,37,75,1,0,0,14.985731,14.985731,0,0,0,0,0,0,0,2,0,0,0,0,0,7.52,68.5,44.67,52.97,1.666666666666667,1,1,0,0,8,7,5,1,723.5,444752.22,71367.023,265521.75,0,0,0,2312.8296 +7759,9457,16875,16874,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,7.3359017,7.3720446,32,5,-117.07616,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,.92028946,7.5826225,44.67,52.97,7.52,68.5,6.666666666666667,1,1,0,0,2,7,5,1,723.5,444752.22,71367.023,265521.75,0,0,0,2312.8296 +7760,9458,16876,16877,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,19,1,49.441547,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,59.27,44.84,30.26,18.9,6.666666666666667,1,1,0,0,6,10,2,1,798,301683,247336.38,142211.23,0,0,0,1827.1345 +7760,9458,16877,16876,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,6.4813857,6.521832,12,-1,-193.09384,0,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,1,0,12.192099,0,0,1,1,0,0,6.4122648,30.26,18.9,59.27,44.84,0,1,1,0,0,3,10,2,1,798,301683,247336.38,142211.23,0,0,0,1827.1345 +7761,9459,16878,16879,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.7940845,7.5253181,43,8,-55.594448,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,5.3278341,7.2344484,51.47,53.17,58.15,52.91,8.333333333333334,1,1,0,0,10,11,3,1,1061.5,660408.5,328334.88,227298.63,-1335.8448,11591.75,3661.2813,2300.3953 +7761,9459,16879,16878,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.3319526,7.3704567,5.4426088,43,-8,57.282982,0,2,2,2021,8,0,17,16,1,0,0,12.181962,12.181962,0,0,0,0,0,0,0,0,1,1,0,0,5.2101192,58.15,52.91,51.47,53.17,10,1,1,0,0,12,11,3,1,1061.5,660408.5,328334.88,227298.63,-1335.8448,11591.75,3661.2813,2300.3953 +7762,9460,16880,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.4132099,8.1483498,0,0,0,-875.60907,0,2,2,2021,12,0,48,48,1,0,0,9.3761702,9.3761702,0,0,0,0,0,0,0,0,0,0,0,.74105239,0,32.84,42.88,-9,-9,5,1,1,0,0,1,4,4,0,1295,-234757.63,0,0,0,0,0,1143.6035 +7763,9461,16881,16882,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,49,-2,-111.02067,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,50.54,62.09,10,1,1,0,0,0,12,3,1,373,570034,535383.69,110673.64,0,0,0,2775.5288 +7763,9461,16882,16881,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,8.0879002,7.6785402,49,2,69.425613,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8243284,50.54,62.09,62.39,56.71,10,1,1,0,0,5,12,3,1,373,570034,535383.69,110673.64,0,0,0,2775.5288 +7764,9462,16883,16886,-9,-9,1,1,48,0,2,0,3,3,-9,0,2,8.3903894,8.5596533,0,8,5,-123.59775,0,2,-9,2021,8,1,47,46,1,1,0,12.703569,12.703569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.82,48.42,56.79,51.02,10,1,1,0,0,11,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7764,9462,16884,-9,16886,16883,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1145.6593,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7764,9462,16885,-9,16886,16883,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-893.77692,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7764,9462,16886,16883,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.3436389,7.3050451,0,8,-5,-86.057953,0,3,3,2021,9,0,23,20,1,0,0,7.0581064,7.0581064,0,0,0,0,0,0,0,0,1,1,0,5.8672113,0,56.79,51.02,57.82,48.42,8.333333333333334,1,1,0,0,11,9,4,0,415,522135.03,88314.914,508976.63,119814.5,0,0,2365.0769 +7765,9463,16887,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,6.9421725,7.0191121,0,0,-1032.1498,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,10.01828,0,2,1,1,0,0,6.767993,41.17,39.45,-9,-9,3.333333333333333,1,1,0,0,5,7,2,1,1200,187872.09,200768.94,0,0,0,566.49164,1148.36 +7766,9464,16888,16889,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.3928752,6.7679148,53,2,32.71273,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7653041,6.4537573,51.9,43.08,41.12,54.83,8.333333333333334,1,1,0,0,0,4,2,1,272,276687.03,-1322.9121,173341.19,0,0,0,1028.4412 +7766,9464,16889,16888,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,4.809824,4.9380784,53,-2,-80.949341,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6047158,4.8049011,41.12,54.83,51.9,43.08,8.333333333333334,1,1,0,0,0,4,2,1,272,276687.03,-1322.9121,173341.19,0,0,0,1028.4412 +7767,9465,16890,-9,16892,16891,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1086.1716,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7767,9465,16891,16892,-9,-9,1,1,40,2,3,0,2,2,-9,0,3,0,0,0,7,7,115.07617,0,3,3,2021,12,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.49,58.84,52.82,53.97,5,1,1,1,0,6,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7767,9465,16892,16891,-9,-9,1,0,33,2,3,0,2,2,-9,0,4,7.1726871,7.0059752,0,7,-7,2.296792,0,2,2,2021,6,0,23,23,1,0,0,7.3593144,7.3593144,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,45.49,58.84,8.333333333333334,1,1,0,0,4,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7767,9465,16893,-9,16892,16891,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.3238,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,909.75,95500.984,-1852.8632,0,0,0,0,1203.1406 +7768,9466,16894,-9,16895,16896,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1019.5966,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,1,0,0,12,1,0,977,-55967.617,0,0,0,0,0,536.54059 +7768,9466,16895,16896,-9,-9,1,0,60,0,1,0,3,3,-9,0,5,0,0,0,20,10,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.32,63.88,28.52,46.26,8.333333333333334,1,1,1,1,0,12,1,0,977,-55967.617,0,0,0,0,0,536.54059 +7768,9466,16896,16895,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,0,0,0,20,-10,0,0,2,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.52,46.26,34.32,63.88,5,1,1,1,1,1,12,1,0,977,-55967.617,0,0,0,0,0,536.54059 +7769,9467,16897,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.875473,6.8127189,0,0,-846.98309,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9831791,59.52,41.3,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,3014,-53061.918,11475.009,0,0,0,0,1547.9674 +7770,9468,16898,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1009.7762,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1594067,0,43.6,53.51,-9,-9,10,1,1,0,0,0,10,1,1,1436,-5915.5933,0,0,0,0,0,773.77643 +7771,9469,16899,16902,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.0515041,7.8465462,0,13,0,42.901779,0,3,3,2021,8,0,18,20,1,0,0,21.189583,21.189583,0,0,0,0,0,0,0,0,1,1,0,2.9145977,0,51.77,58.57,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7771,9469,16900,-9,16899,16902,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.1135,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7771,9469,16901,-9,16899,16902,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.62646,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7771,9469,16902,16899,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.9023085,8.705781,0,13,0,14.932005,0,2,2,2021,6,0,59,52,1,0,0,15.050813,15.050813,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.77,58.57,8.333333333333334,1,1,0,0,10,12,5,1,809.25,149372.41,-8805.9727,298871.91,173998.69,8969.0645,1912.7781,3202.8206 +7772,9470,16903,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1154.5164,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,1.6464548,2.5415146,27.643534,0,1,1,0,7.2210636,0,56.31,20.2,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,309,12052.357,0,0,0,0,0,1621.2832 +7773,9471,16904,16905,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,7.6898575,7.9434328,0,4,4,88.516708,0,-9,-9,2021,11,0,34,24,1,0,0,7.5805764,7.5805764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.62,47.44,65.06,41.58,10,2,3,0,1,11,2,3,1,456.5,14500.723,-8011.998,0,0,0,0,1836.3657 +7773,9471,16905,16904,-9,-9,1,0,34,0,0,0,3,3,-9,0,4,0,0,0,11,-4,-65.952797,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.06,41.58,46.62,47.44,10,2,3,0,0,0,2,3,1,456.5,14500.723,-8011.998,0,0,0,0,1836.3657 +7774,9472,16906,-9,16907,16909,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-928.96527,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16907,16909,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,7.8355517,8.0392551,0,20,-1,13.039045,0,2,2,2021,0,0,40,30,1,0,0,8.7256203,8.7256203,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.49,55.09,56.47,59.4,10,3,4,0,0,4,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16908,-9,16907,16909,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.4457,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16909,16907,-9,-9,1,1,45,0,3,0,2,2,-9,0,5,6.3745999,6.2390046,0,22,1,-11.944984,0,3,2,2021,8,0,10,12,1,0,0,5.6729894,5.6729894,0,0,.05,0,0,0,0,0,0,0,0,0,0,56.47,59.4,62.49,55.09,1.666666666666667,3,4,0,0,6,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7774,9472,16910,-9,16907,16909,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1165.646,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,2,0,1292.2,130940,68485.938,246246.19,143616.45,0,0,2116.1792 +7775,9473,16911,-9,16913,16914,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1021.1685,-9,1,1,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7775,9473,16912,-9,16913,16914,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-905.66327,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7775,9473,16913,16914,-9,-9,1,0,47,0,2,0,1,1,-9,0,5,8.721365,8.5819931,0,10,1,7.0642905,0,-9,-9,2021,6,0,50,52,1,0,0,11.530505,11.530505,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.06,57.76,10,1,1,0,0,12,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7775,9473,16914,16913,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,8.8725424,8.7261295,0,22,-1,-139.99583,0,1,1,2021,9,0,40,40,1,0,0,19.163492,19.163492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,9,10,5,1,1250.5,654904.81,427714.63,503613.25,355255.81,0,0,4338.8257 +7776,9474,16915,16916,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.0711155,8.1260834,0,2,0,-18.170153,-9,-9,-9,2021,8,0,45,0,1,0,0,7.9420443,7.9420443,.05,.05,0,0,0,0,0,0,0,0,0,1.1176105,0,43.76,55.68,62.39,56.71,8.333333333333334,1,1,0,0,0,4,5,1,485.5,-4156.2578,294.57617,0,0,0,0,4079.9438 +7776,9474,16916,16915,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6149559,8.1103039,0,2,0,8.4995222,0,2,2,2021,7,0,37,47,1,0,0,13.635489,13.635489,.05,.05,0,0,0,0,0,0,0,0,0,1.5036851,0,62.39,56.71,43.76,55.68,10,1,1,0,0,5,4,5,1,485.5,-4156.2578,294.57617,0,0,0,0,4079.9438 +7777,9475,16917,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.7768345,7.5099244,0,0,0,-936.58252,0,2,-9,2021,13,3,50,45,1,3,0,5.8578467,5.8578467,.05,.05,0,0,0,0,0,0,0,0,0,3.8598828,0,44.25,56.64,-9,-9,5,1,1,0,1,11,8,3,1,2427,44871.695,41478.367,0,0,0,0,1309.7449 +7778,9476,16918,16920,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,7.4577942,7.5641189,0,8,-6,85.971443,0,2,2,2021,10,1,20,39,1,1,0,10.45475,10.45475,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.83,57.2,6.666666666666667,1,1,0,0,9,12,4,1,1095.6666,605920.88,173718.17,288245.75,45052.879,0,0,2852.5139 +7778,9476,16919,-9,16918,16920,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-806.84271,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,1095.6666,605920.88,173718.17,288245.75,45052.879,0,0,2852.5139 +7778,9476,16920,16918,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.6090155,8.5057135,0,8,6,-24.364208,0,-9,-9,2021,6,0,82,42,1,0,0,7.3556633,7.3556633,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,9,12,4,1,1095.6666,605920.88,173718.17,288245.75,45052.879,0,0,2852.5139 +7779,9477,16921,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.9795794,7.6344032,0,0,0,-995.96448,-9,-9,-9,2021,20,7,29,0,1,7,0,11.229688,11.229688,0,0,0,0,0,0,0,0,0,0,0,1.0429301,0,24.87,49.21,-9,-9,3.333333333333333,1,1,0,0,8,5,4,0,707,-25253.148,0,0,0,0,0,1086.1814 +7780,9478,16922,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1014.2511,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,5,1,1,0,0,0,7,1,0,595,-69108.805,0,0,0,31905.906,0,33.768372 +7781,9479,16923,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.547513,8.9288883,0,10,-3,92.067055,0,3,3,2021,17,4,43,40,1,4,0,27.820999,27.820999,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,46.09,43.64,57.66,50.59,3.333333333333333,1,1,0,0,11,13,5,1,251,268231.59,390575.63,111986.47,53966.121,20677.168,3548.4741,3487.3235 +7781,9480,16924,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,9.0566044,9.1096954,0,10,3,17.517324,0,3,3,2021,7,0,43,43,1,0,0,21.19117,21.19117,0,0,0,0,0,0,0,0,0,0,0,5.5737548,0,57.66,50.59,46.09,43.64,10,1,1,0,0,11,13,5,1,516,145354.66,0,133973.14,973.68475,2581.2783,0,3703.3826 +7782,9481,16925,16926,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.6028123,7.9629598,0,9,5,103.81171,0,2,2,2021,6,0,25,26,1,0,0,8.949955,8.949955,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,43.6,51.61,8.333333333333334,1,1,0,0,12,2,5,1,456,172531.39,406079.63,0,0,31660.979,5932.8096,2966.8479 +7782,9481,16926,16925,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.9925337,9.1344261,0,9,-5,14.41214,0,-9,-9,2021,11,0,48,48,1,0,0,21.320719,21.320719,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,456,172531.39,406079.63,0,0,31660.979,5932.8096,2966.8479 +7782,9481,16927,-9,16925,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1030.0403,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,5,1,456,172531.39,406079.63,0,0,31660.979,5932.8096,2966.8479 +7783,9482,16928,16929,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.5703239,8.5001822,0,2,20,-117.93201,0,1,1,2021,6,0,40,38,1,0,0,18.051525,18.051525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.32,44.13,49.65,57.01,8.333333333333334,4,2,0,0,9,7,5,1,1830,78545.773,22622.492,0,0,6192.9761,0,3246.5437 +7783,9482,16929,16928,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.2354803,8.4435482,0,2,-20,216.75916,0,-9,-9,2021,11,0,45,50,1,0,0,7.4773021,7.4773021,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.65,57.01,59.32,44.13,6.666666666666667,1,1,0,0,1,7,5,1,1830,78545.773,22622.492,0,0,6192.9761,0,3246.5437 +7784,9483,16930,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.6994905,7.6207399,0,0,-1076.1194,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.1972675,7.4041157,56.01,51.37,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,344,733030.5,428333.94,143068,0,0,0,2088.8159 +7784,9484,16931,-9,16930,-9,1,0,30,0,0,0,2,2,-9,0,2,8.3885336,8.5224199,0,0,0,-996.14392,0,1,-9,2021,11,2,20,50,1,2,0,26.049438,26.049438,.05,.05,0,0,0,0,0,0,1,1,0,7.9017491,0,50.32,24.46,-9,-9,6.666666666666667,1,1,0,1,6,4,4,1,90,34495.711,16241.987,0,0,0,0,2553.624 +7785,9485,16932,16934,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.6563435,8.1030493,0,20,-2,-48.238853,0,2,2,2021,19,7,37,41,1,7,0,15.883994,15.883994,.05,.05,0,0,0,0,0,0,1,1,0,2.0715086,0,42.67,55.98,52,55,6.666666666666667,1,1,0,0,9,4,4,1,1324.6666,382358.47,277713.78,87336.367,42154.191,7833.8931,-163.6053,3603.4458 +7785,9485,16933,-9,16932,16934,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-987.18121,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,4,4,1,1324.6666,382358.47,277713.78,87336.367,42154.191,7833.8931,-163.6053,3603.4458 +7785,9485,16934,16932,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.2387733,8.3250475,0,6,2,11.65237,0,-9,-9,2021,9,0,37,40,1,1,0,12.439591,12.439591,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,42.67,55.98,7,1,1,0,0,1,4,4,1,1324.6666,382358.47,277713.78,87336.367,42154.191,7833.8931,-163.6053,3603.4458 +7786,9486,16935,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.8121109,6.7142158,0,0,-1068.1879,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0374811,7.2502737,62.6,31.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1696,328179.66,51210.152,176544.59,0,0,0,724.66846 +7787,9487,16936,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,9.0236654,8.9457245,0,0,0,-1079.2367,0,2,2,2021,10,0,40,42,1,0,0,21.567724,21.567724,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.85,52.08,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,1236,-151551.8,197861.17,0,0,0,0,2643.5115 +7788,9488,16937,16938,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,40,-7,-21.665903,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,5,3,1,1775,959746.13,88753.875,306023.13,0,0,0,2274.4143 +7788,9488,16938,16937,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9990845,8.0376329,40,7,20.7138,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7256427,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,4,5,3,1,1775,959746.13,88753.875,306023.13,0,0,0,2274.4143 +7789,9489,16939,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.8200593,7.7653337,0,0,0,-1068.532,0,-9,-9,2021,22,9,29,29,1,9,0,10.325885,10.325885,0,0,0,0,0,0,0,0,0,0,0,0,0,30.33,57.95,-9,-9,5,1,1,0,0,10,13,3,1,554,61362.613,0,0,0,0,562.9234,840.56384 +7790,9490,16940,-9,-9,-9,1,0,19,0,2,0,2,2,0,0,4,0,0,0,0,0,-987.21332,-9,3,2,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.9100858,0,36.45,62.92,-9,-9,6.666666666666667,2,3,0,0,3,8,1,0,268,-79828.664,0,0,0,0,0,264.59991 +7791,9491,16941,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7978344,7.8123159,6.3932328,0,0,-953.58002,0,3,3,2021,31,12,33,32,1,12,0,7.5275936,7.5275936,0,0,0,0,0,0,0,2,0,0,0,1.9330763,6.0474677,21.36,61.89,-9,-9,5,1,1,0,0,13,7,3,1,1109,0,0,0,0,0,0,1231.882 +7792,9492,16942,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,0,0,0,0,-916.302,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.074399,0,58.44,30.31,-9,-9,0,1,1,0,0,0,10,1,0,586,465646.81,0,215161.77,0,0,0,410.5546 +7793,9493,16943,16944,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.2969675,7.9584107,10,0,-3.35063,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.2857533,8.3564882,51,48,47.21,52.57,7,1,1,0,0,0,9,4,1,1768.5,2105880.5,1398383,757271.63,0,0,0,7951.5762 +7793,9493,16944,16943,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.5023227,7.8240528,45,0,-15.441369,0,2,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.9101391,7.8109994,47.21,52.57,51,48,8.333333333333334,1,1,0,0,11,9,4,1,1768.5,2105880.5,1398383,757271.63,0,0,0,7951.5762 +7793,9494,16945,-9,16944,16943,1,0,31,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1077.7975,0,1,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,0,9,1,1,1249,20910.875,123751.49,0,0,0,7.5616169,542.82196 +7794,9495,16946,16947,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.8057685,5.9647498,13,1,-13.403247,0,-9,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,4.6047463,0,0,1,1,0,6.1648722,5.9089279,49.31,26.45,54.84,51.94,5,1,1,0,0,5,8,2,1,450.5,761615,136523.25,541537.13,0,0,0,2246.9011 +7794,9495,16947,16946,-9,-9,1,0,76,0,0,0,3,3,-9,0,5,0,6.5362978,6.3181276,59,-1,-93.317589,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.1858044,54.84,51.94,49.31,26.45,8.333333333333334,1,1,0,0,0,8,2,1,450.5,761615,136523.25,541537.13,0,0,0,2246.9011 +7795,9496,16948,16949,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.7570705,8.3969755,0,7,-4,-43.21043,0,2,2,2021,11,2,48,45,1,2,0,15.781896,15.781896,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.14,53.97,57.16,56.15,8.333333333333334,1,1,0,0,8,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7795,9496,16949,16948,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,0,0,0,7,4,-23.996246,0,-9,-9,2021,8,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.14,53.97,8.333333333333334,1,1,0,0,4,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7795,9496,16950,-9,16949,16948,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.69965,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7795,9496,16951,-9,16949,16948,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.062,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,342.75,290427.81,261886.61,128973.99,62519.828,13291.935,0,2363.3809 +7796,9497,16952,-9,-9,-9,1,0,25,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1071.4518,-9,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.11,51.96,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,243,-57762.375,0,0,0,0,0,-607.32385 +7797,9498,16953,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,9.0357733,8.917963,0,0,-1111.4751,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.8077517,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,4,13,5,1,159,1497208.3,760190.25,425234.72,0,0,0,4358.1045 +7798,9499,16954,16955,-9,-9,1,1,62,0,0,0,2,2,-9,1,4,0,0,0,9,-1,0,0,3,3,2021,17,5,0,42,3,5,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,36.18,52.56,49,48,5,1,1,0,0,9,12,1,0,632.5,133661.58,-31903.781,6641.0356,0,0,0,869.31415 +7798,9499,16955,16954,-9,-9,1,0,63,0,0,0,2,2,-9,1,3,0,0,0,9,1,0,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,48,36.18,52.56,7,1,1,0,0,0,12,1,0,632.5,133661.58,-31903.781,6641.0356,0,0,0,869.31415 +7799,9500,16956,16957,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.1246996,8.6729708,49,0,15.767237,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9688878,8.4297075,64.23,44.69,61.85,47.26,8.333333333333334,1,1,0,0,6,9,4,1,1114.5,1285849.6,761222,293147.31,0,0,0,4043.3892 +7799,9500,16957,16956,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.0564651,5.8781195,49,0,-100.0422,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0505524,5.9530654,61.85,47.26,64.23,44.69,10,1,1,0,0,5,9,4,1,1114.5,1285849.6,761222,293147.31,0,0,0,4043.3892 +7800,9501,16958,16959,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.0380745,8.9955873,0,11,-1,-112.29914,0,3,2,2021,14,4,40,40,1,4,0,26.315786,26.315786,0,0,.05,0,0,0,0,7,1,1,0,0,0,45.81,58.99,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7800,9501,16959,16958,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,6.3529367,6.2936163,0,11,1,-28.755756,0,2,2,2021,5,0,16,8,1,0,0,3.3342128,3.3342128,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,45.81,58.99,6.666666666666667,1,1,0,0,6,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7800,9501,16960,-9,16959,16958,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.93542,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7800,9501,16961,-9,16959,16958,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-826.34564,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,1145.25,1003167.3,90310.734,528571.75,16570.551,0,0,4762.6494 +7801,9502,16962,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.4891157,5.7469397,0,0,-1020.3884,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7999587,5.3491716,60.31,11.75,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,269,-44865.77,70535.523,0,0,2228.7964,0,681.12244 +7802,9503,16963,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1069.2605,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8987682,0,49.23,45.42,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,1234,0,0,0,0,0,0,914.854 +7803,9504,16964,16965,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.3432922,7.9115691,0,1,4,88.536263,0,1,1,2021,9,2,35,55,1,2,0,11.950315,11.950315,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.16,56.15,6.666666666666667,1,1,0,0,5,5,5,0,1734,205763.09,311250.41,0,0,943.85358,0,2916.3379 +7803,9504,16965,16964,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3395691,8.3443346,0,1,-4,-94.260414,-9,-9,-9,2021,6,0,39,0,1,0,0,10.955765,10.955765,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,1,0,5,5,0,1734,205763.09,311250.41,0,0,943.85358,0,2916.3379 +7804,9505,16966,16967,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.9751506,8.1016064,41,-7,62.820625,0,3,2,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,7.6873841,51.39,59.18,37.19,23.94,8.333333333333334,1,1,0,0,7,12,4,1,209,1373426.5,1119116.3,437723.78,171698.75,0,0,4502.1563 +7804,9505,16967,16966,-9,-9,1,1,69,0,0,0,1,1,-9,0,1,0,8.1827593,8.3835182,41,7,87.904999,0,2,2,2021,20,7,0,0,4,7,0,0,0,.05,.05,0,1,0,30.868027,0,0,1,1,0,7.5012817,8.1429729,37.19,23.94,51.39,59.18,3.333333333333333,1,1,0,0,2,12,4,1,209,1373426.5,1119116.3,437723.78,171698.75,0,0,4502.1563 +7805,9506,16968,-9,16969,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.1226,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7805,9506,16969,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,5,6.9242082,7.145771,0,0,0,-1066.1951,0,3,-9,2021,12,1,20,19,1,1,0,6.4465852,6.4465852,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7805,9506,16970,-9,16969,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-995.10876,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7805,9506,16971,-9,16969,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.53741,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,283.25,-16647.975,-7005.5059,0,0,1545.5463,0,2717.4343 +7806,9507,16972,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-958.82013,-9,3,3,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.31,42.02,-9,-9,3.333333333333333,1,1,0,1,0,13,2,0,2654,23101.768,0,0,0,0,0,1186.4996 +7806,9508,16973,-9,16972,-9,1,1,20,0,0,0,2,2,-9,0,4,5.8919129,6.1153235,0,0,0,-902.08545,-9,2,-9,2021,0,0,30,0,1,0,1,1.3695188,1.3695188,0,0,0,0,0,0,0,0,1,1,0,0,0,31.31,56.38,-9,-9,10,1,1,0,0,0,13,2,0,995,0,0,0,0,0,0,513.84894 +7807,9509,16974,16975,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.2914867,8.2426958,0,43,0,-15.283876,0,3,3,2021,9,0,30,30,1,0,0,14.059977,14.059977,0,0,0,0,0,0,0,0,0,0,0,8.1886959,0,48.45,57.49,54.37,41.1,8.333333333333334,1,1,0,0,12,7,5,1,725,2978420,1474738,1115594.9,-2969.4121,0,-435.20514,5478.2646 +7807,9509,16975,16974,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.9228301,8.445713,43,0,13.034039,0,3,3,2021,7,1,0,25,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.812748,8.0198326,54.37,41.1,48.45,57.49,8.333333333333334,1,1,0,0,11,7,5,1,725,2978420,1474738,1115594.9,-2969.4121,0,-435.20514,5478.2646 +7808,9510,16976,16977,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.3483906,6.6604023,47,-4,107.49366,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8717518,6.582788,57.16,56.15,53,47,6.666666666666667,2,3,0,0,3,8,3,1,285,4752413.5,1756834.3,1995774.8,0,0,0,3106.9741 +7808,9510,16977,16976,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.8477478,7.9920526,7,4,138.06065,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6890955,53,47,57.16,56.15,7,2,3,0,0,0,8,3,1,285,4752413.5,1756834.3,1995774.8,0,0,0,3106.9741 +7809,9511,16978,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1005.6683,0,2,1,2021,11,0,0,55,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4208479,0,36.03,61.86,-9,-9,6.666666666666667,1,1,0,0,10,1,1,1,280,20465.971,0,0,0,0,-196.93858,-165.55583 +7810,9512,16979,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.7371559,7.6794562,0,0,-1140.2769,0,3,2,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,7.4889441,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,629,600813.06,349167.19,210839.27,41088.488,0,0,389.57462 +7811,9513,16980,-9,16983,16981,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-858.61017,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7811,9513,16981,16983,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,9.3735027,9.42132,0,11,3,45.438259,0,-9,-9,2021,7,0,40,35,1,0,0,44.837082,44.837082,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,24.04,61.89,8.333333333333334,1,1,0,0,14,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7811,9513,16982,-9,16983,16981,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.4585,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7811,9513,16983,16981,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,0,0,0,11,-3,57.089745,0,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.04,61.89,48.87,58.55,5,1,1,0,0,9,9,5,1,506,53238.617,29027.135,0,0,0,0,3340.3127 +7812,9514,16984,16987,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.4864545,7.5819836,0,21,-5,-48.29425,0,2,1,2021,13,2,15,-9,1,2,0,13.083429,13.083429,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,49.59,58.37,8.333333333333334,2,3,0,0,13,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7812,9514,16985,-9,16984,16987,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1091.7936,-9,1,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,2,3,0,0,0,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7812,9514,16986,-9,16984,16987,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.954,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7812,9514,16987,16984,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.502429,9.0531874,0,21,5,-80.604988,0,3,2,2021,6,0,35,35,1,0,0,31.53293,31.53293,.05,.05,0,0,0,0,0,0,1,1,0,4.4797812,0,49.59,58.37,30.22,61.83,8.333333333333334,2,3,0,0,12,8,5,1,776.25,435971.03,339561.66,0,0,6594.5854,0,5069.6782 +7813,9515,16988,16989,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.8836999,7.1047478,2,-4,101.78481,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4102073,6.7748857,60.12,54.8,58.33,39.49,10,1,1,0,0,0,6,3,1,981.5,842797,475381.13,174541.73,0,0,0,2475.6489 +7813,9515,16989,16988,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,6.5294113,7.0883017,2,4,-27.038681,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8137136,6.975389,58.33,39.49,60.12,54.8,8.333333333333334,1,1,0,0,0,6,3,1,981.5,842797,475381.13,174541.73,0,0,0,2475.6489 +7814,9516,16990,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-987.71326,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.81,35.37,-9,-9,10,1,1,0,0,0,4,1,1,679,117986.66,0,0,0,0,0,1174.2384 +7815,9517,16991,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.8774605,8.7839127,0,0,0,-895.59406,0,2,3,2021,7,0,38,38,1,0,0,23.480312,23.480312,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,10,13,5,1,1471,194565.7,298821.22,0,0,10661.289,0,2031.2893 +7816,9518,16992,16993,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,7.7163401,7.8310962,48,5,-110.18159,0,-9,-9,2021,21,8,0,0,4,8,0,0,0,.05,.05,0,1,0,4.7618046,0,2,1,1,0,8.85009,7.8991327,42.73,36.65,49,48,3.333333333333333,1,1,0,0,5,6,4,1,180,374539.56,14126.58,217131.72,100392.66,5170.9414,490.68985,5730.7646 +7816,9518,16993,16992,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.6957936,7.9473767,0,48,-5,-161.81146,0,2,2,2021,10,0,16,18,1,0,0,16.313265,16.313265,0,0,0,0,0,0,0,0,1,1,0,2.0960739,0,49,48,42.73,36.65,8.333333333333334,1,1,0,0,12,6,4,1,180,374539.56,14126.58,217131.72,100392.66,5170.9414,490.68985,5730.7646 +7817,9519,16994,-9,16995,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.49188,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,12,3,1,933.5,32505.525,-61130.625,169254.88,11737.805,0,3023.2341,1312.3258 +7817,9519,16995,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.7736044,7.918571,0,0,0,-1064.8182,0,2,2,2021,12,2,27,25,1,2,0,9.2650118,9.2650118,0,0,0,0,0,0,0,0,1,0,1,0,0,41.87,59.15,-9,-9,6.666666666666667,1,1,0,0,12,12,3,1,933.5,32505.525,-61130.625,169254.88,11737.805,0,3023.2341,1312.3258 +7818,9520,16996,-9,16998,16997,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1142.5479,-9,2,1,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.43294162,0,40.55,43.66,-9,-9,6.666666666666667,1,1,0,0,1,10,5,1,300.66666,1539393.3,1460514.1,249876.98,68088.32,54985.477,0,5324.5034 +7818,9520,16997,16998,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.7507982,9.9014492,0,26,7,8.5144434,0,2,2,2021,9,0,48,50,1,0,0,31.79178,31.79178,.05,.05,0,0,0,0,0,0,0,0,0,.93214488,0,57.84,34,58.15,52.91,8.333333333333334,1,1,0,0,11,10,5,1,300.66666,1539393.3,1460514.1,249876.98,68088.32,54985.477,0,5324.5034 +7818,9520,16998,16997,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,0,0,0,25,-7,-1.8574588,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.84,34,10,1,1,0,0,5,10,5,1,300.66666,1539393.3,1460514.1,249876.98,68088.32,54985.477,0,5324.5034 +7818,9521,16999,-9,16998,16997,1,1,20,0,0,0,2,2,-9,0,4,7.987679,8.3027306,0,0,0,-1096.1921,0,2,1,2021,7,0,42,35,1,0,1,12.585623,12.585623,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,1181,138364.95,91068.125,0,0,0,0,1622.5906 +7819,9522,17000,17001,-9,-9,1,0,34,1,2,0,1,1,-9,0,5,8.290596,7.9785819,0,13,-1,69.058182,0,1,2,2021,10,1,38,19,1,1,0,8.3491077,8.3491077,.05,.05,0,0,0,0,0,0,1,1,0,.71029443,0,57.06,57.76,46.61,56.93,8.333333333333334,1,1,0,0,8,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7819,9522,17001,17000,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,8.5967226,8.5592804,0,13,1,29.583725,0,2,2,2021,16,5,45,40,1,5,0,16.706312,16.706312,.05,.05,0,0,0,0,0,0,1,1,0,1.2121137,0,46.61,56.93,57.06,57.76,8.333333333333334,1,1,0,0,7,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7819,9522,17002,-9,17000,17001,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-899.04053,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7819,9522,17003,-9,17000,17001,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.77698,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,484,442502.38,147694.8,229021.66,0,0,0,2991.9482 +7820,9523,17004,17005,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,9.1222725,9.0223999,41,0,-66.148705,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.281167,9.1382227,42.39,56.1,33.32,50.55,8.333333333333334,1,1,0,0,9,9,5,1,590.5,2774879.8,1849547.3,682170.06,0,0,0,3894.562 +7820,9523,17005,17004,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,6.7942848,6.7406855,43,0,88.644745,0,3,2,2021,25,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8589759,7.0717597,33.32,50.55,42.39,56.1,5,1,1,0,0,8,9,5,1,590.5,2774879.8,1849547.3,682170.06,0,0,0,3894.562 +7821,9524,17006,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.0119925,6.4250236,0,0,-947.5921,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7785854,6.3040633,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,653,252662.7,-5523.5005,128922.53,0,0,0,1038.0325 +7822,9525,17007,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.3223181,8.6450415,0,0,0,-1057.3954,-9,-9,-9,2021,11,1,41,0,1,1,0,10.318807,10.318807,0,0,0,0,0,0,0,0,0,0,0,0,0,40.42,61.41,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,632,105555.08,0,0,0,623.68707,0,1662.9943 +7823,9526,17008,17009,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.6322365,9.6607971,0,27,7,-77.190742,0,2,2,2021,8,1,50,60,1,1,0,34.408394,34.408394,.05,.05,.05,0,0,0,0,2,0,0,0,6.3517842,0,54.86,47.5,57.06,57.76,8.333333333333334,1,1,0,0,10,5,5,1,737,898601.63,385933.75,414973.13,3755.6367,3658.7163,0,7664.7466 +7823,9526,17009,17008,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.6930628,7.4363985,0,28,-7,58.608543,0,-9,3,2021,9,0,25,30,1,0,0,8.8402348,8.8402348,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.86,47.5,10,1,1,0,0,9,5,5,1,737,898601.63,385933.75,414973.13,3755.6367,3658.7163,0,7664.7466 +7824,9527,17010,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,4.3052015,4.3292031,0,0,-970.36511,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,3.9603684,0,18.691595,0,1,1,0,5.0024576,4.0265779,52.76,35,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2259,181237.39,172778.14,61065.609,0,0,0,607.26758 +7825,9528,17011,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.5215616,7.4652338,0,0,0,-1001.6613,0,-9,-9,2021,13,2,20,20,1,2,0,11.994231,11.994231,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.72,33.18,-9,-9,5,1,1,0,1,12,8,3,1,1218,256770.61,22846.5,135094.58,0,0,2428.8503,1338.8364 +7826,9529,17012,17013,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,8.3375444,8.3531542,0,6,-3,-18.192911,0,2,2,2021,14,2,43,44,1,2,0,11.13898,11.13898,.05,.05,0,0,0,0,0,7,0,0,0,3.8146331,0,42.5,53.5,39.16,62.84,3.333333333333333,1,1,0,0,11,11,5,1,3107,114238.23,10166.23,76584.133,197.15674,2792.7397,0,3280.9106 +7826,9529,17013,17012,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.975894,8.2549343,0,6,3,-59.331638,0,-9,-9,2021,8,0,43,61,1,0,0,10.934706,10.934706,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,39.16,62.84,42.5,53.5,5,1,1,0,0,5,11,5,1,3107,114238.23,10166.23,76584.133,197.15674,2792.7397,0,3280.9106 +7827,9530,17014,17015,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5079823,8.4024038,0,2,3,-39.355209,0,-9,-9,2021,11,1,48,73,1,1,0,9.1714325,9.1714325,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,49.11,42.17,8.333333333333334,1,1,0,0,4,4,4,0,1030.5,139123.03,43392.066,135320.56,0,3680.2759,6676.9048,1451.4731 +7827,9530,17015,17014,-9,-9,1,0,22,0,0,1,2,0,0,0,3,0,0,0,2,-3,66.231163,-9,-9,-9,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.11,42.17,62.49,55.09,8.333333333333334,1,1,0,0,0,4,4,0,1030.5,139123.03,43392.066,135320.56,0,3680.2759,6676.9048,1451.4731 +7828,9531,17016,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1055.2998,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,52.22,-9,-9,8.333333333333334,1,1,0,0,8,9,1,1,256,-60410.711,0,0,0,0,0,941.08069 +7829,9532,17017,17018,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,3.1787429,3.065697,10,-3,37.090992,0,3,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.9034526,2.8634064,69.90000000000001,22.19,41.88,22.93,8.333333333333334,1,1,0,0,0,5,2,0,866,-63603.145,0,0,0,0,0,1849.6499 +7829,9532,17018,17017,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,3.8249137,3.557889,10,3,57.4021,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,31.611341,0,27,1,1,0,4.7241015,3.5242038,41.88,22.93,69.90000000000001,22.19,8.333333333333334,1,1,0,0,0,5,2,0,866,-63603.145,0,0,0,0,0,1849.6499 +7829,9533,17019,-9,17017,17018,1,0,27,0,0,0,2,2,-9,0,4,7.9090796,7.7392745,0,0,0,-1009.6473,0,2,3,2021,13,1,41,38,1,1,1,7.6536813,7.6536813,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43,45.99,-9,-9,6.666666666666667,1,1,0,0,10,5,4,0,480,45622.09,-6735.2236,0,0,4413.9336,0,1299.8197 +7830,9534,17020,17021,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,68,-3,134.12656,0,3,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0417571,0,48.55,28.3,43.5,38.28,10,1,1,0,0,0,2,2,1,410,37428.156,64801.84,0,0,0,0,1797.1101 +7830,9534,17021,17020,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,6.1256061,6.1569724,68,3,-46.140057,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.032619,43.5,38.28,48.55,28.3,10,1,1,0,0,0,2,2,1,410,37428.156,64801.84,0,0,0,0,1797.1101 +7831,9535,17022,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,7.7315774,7.2796063,0,0,-1141.3645,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4174919,52.3,43.16,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,3552,339371,188540,71000.383,0,0,0,1374.7703 +7832,9536,17023,-9,-9,-9,1,0,21,0,1,0,2,2,0,0,3,0,0,0,0,0,-1024.9718,-9,1,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5063677,0,31.86,59.67,-9,-9,6.666666666666667,4,2,0,1,5,2,1,1,396,74052.055,0,0,0,0,0,488.54849 +7833,9537,17024,17025,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.0126629,9.210557,0,30,0,16.167252,0,3,2,2021,9,0,38,40,1,0,0,25.459293,25.459293,.05,.05,0,0,0,0,0,0,1,1,0,5.4070158,0,48.87,58.55,49.04,55.86,8.333333333333334,1,1,0,0,15,5,5,1,1413.5,1138083.4,703371.25,514403.75,225494.61,0,0,3916.4429 +7833,9537,17025,17024,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.764401,7.8348403,0,30,0,-30.47641,0,2,2,2021,10,0,16,13,1,0,0,20.447676,20.447676,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,48.87,58.55,8.333333333333334,1,1,0,0,15,5,5,1,1413.5,1138083.4,703371.25,514403.75,225494.61,0,0,3916.4429 +7833,9538,17026,-9,17025,17024,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1042.2184,0,1,1,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,-9,-9,5,1,1,1,0,0,5,1,1,688,137075.52,0,0,0,0,0,0 +7834,9539,17027,17028,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.8789072,8.7556849,0,18,0,-70.55278,0,-9,1,2021,11,0,40,40,1,0,0,25.656649,25.656649,.05,.05,0,0,0,0,0,0,0,0,0,7.0710325,0,58.15,52.91,56.11,44.4,10,1,1,0,0,14,7,5,1,1116.5,687443.38,274450.5,312347.38,88672.148,0,0,5936.79 +7834,9539,17028,17027,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.3710384,8.1234331,0,18,0,70.124847,0,2,3,2021,9,0,37,37,1,0,0,11.262875,11.262875,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.11,44.4,58.15,52.91,8.333333333333334,1,1,0,0,14,7,5,1,1116.5,687443.38,274450.5,312347.38,88672.148,0,0,5936.79 +7835,9540,17029,17030,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,7,-5,67.891579,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,52,54.51,8,1,1,0,0,0,10,3,0,1027.5,435570.63,0,537794.5,0,0,0,1556.7887 +7835,9540,17030,17029,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.5966625,8.1929312,0,7,5,4.7664871,0,3,2,2021,10,0,60,52,1,0,0,7.3460784,7.3460784,0,0,0,0,0,0,0,7,1,1,0,0,0,52,54.51,52,53,6.666666666666667,1,1,0,1,7,10,3,0,1027.5,435570.63,0,537794.5,0,0,0,1556.7887 +7836,9541,17031,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.9346895,9.1597891,0,1,6,-20.551865,-9,2,2,2021,8,0,41,0,1,0,0,23.289589,23.289589,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,39.16,62.84,8.333333333333334,1,1,0,0,9,5,5,1,140,298891.84,-16524.361,128672.37,10590.3,0,0,2493.53 +7836,9542,17032,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.4215784,8.3401833,0,1,-6,-174.82275,-9,-9,-9,2021,12,2,37,0,1,2,0,17.042627,17.042627,.05,.05,0,0,0,0,0,0,0,0,0,.41226694,0,39.16,62.84,51.49,57.57,5,1,1,0,0,2,5,5,1,123,-34863.809,75963.766,0,0,0,0,923.87378 +7837,9543,17033,-9,17034,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.61041,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,3,0,317.5,102895.69,-22393.764,98744.648,91438.531,0,0,1654.302 +7837,9543,17034,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,3,7.5215011,7.3403301,0,0,0,-1027.1626,-9,-9,-9,2021,12,0,30,0,1,0,0,8.3841696,8.3841696,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.54,53.32,-9,-9,6.666666666666667,1,1,0,0,4,2,3,0,317.5,102895.69,-22393.764,98744.648,91438.531,0,0,1654.302 +7838,9544,17035,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.3060231,7.2418637,0,0,0,-1080.4296,0,3,3,2021,20,8,50,40,1,8,0,2.8340051,2.8340051,0,0,0,0,0,0,0,2,0,0,0,0,0,38.51,51.4,-9,-9,6.666666666666667,1,1,0,0,14,2,3,1,387,543899.06,225946.14,373727.59,89620.266,0,0,296.10425 +7839,9545,17036,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,2,8.3475828,8.1733704,6.126482,0,0,-922.40381,0,2,3,2021,36,12,30,0,1,12,0,14.41628,14.41628,.05,.05,0,0,0,0,0,96,1,0,1,5.7406259,0,16.85,31.81,-9,-9,1.666666666666667,1,1,0,1,1,9,4,0,548.33331,222461.72,-38011.75,230753.38,110546.65,0,10379.297,2885.5376 +7839,9545,17037,-9,17036,17039,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1113.4496,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,0,548.33331,222461.72,-38011.75,230753.38,110546.65,0,10379.297,2885.5376 +7839,9545,17038,-9,17036,17039,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.7095,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,0,548.33331,222461.72,-38011.75,230753.38,110546.65,0,10379.297,2885.5376 +7839,9546,17039,-9,-9,-9,1,1,27,0,2,0,2,2,-9,0,2,0,0,0,0,0,-944.06543,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.44,48.18,-9,-9,6.666666666666667,1,1,1,0,3,9,1,0,1659,35249.465,0,0,0,0,0,534.34015 +7840,9547,17040,17041,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.6891479,7.8831134,47,2,-105.87234,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4393992,7.3772545,60.7,47.65,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,857,1108250.4,668211.63,270016.88,0,0,0,3093.1641 +7840,9547,17041,17040,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,7.0458589,7.1462216,47,-2,73.160896,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3048887,7.0376172,57.16,56.15,60.7,47.65,8.333333333333334,1,1,0,0,0,10,3,1,857,1108250.4,668211.63,270016.88,0,0,0,3093.1641 +7841,9548,17042,-9,17043,17044,1,0,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-923.92413,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,0,696.33331,1982166.3,1611458.1,189483.09,0,0,0,6159.937 +7841,9548,17043,17044,-9,-9,1,0,53,1,2,0,3,3,-9,0,2,7.2668781,7.5138984,0,31,-12,24.621738,0,2,2,2021,19,6,32,45,1,6,0,6.0989294,6.0989294,0,0,0,0,0,0,0,0,1,1,0,0,0,45.88,41.51,52,47,3.333333333333333,1,1,0,1,6,2,5,0,696.33331,1982166.3,1611458.1,189483.09,0,0,0,6159.937 +7841,9548,17044,17043,-9,-9,1,1,65,1,2,0,2,2,-9,0,3,8.5448542,8.8789816,8.441638,5,12,75.620499,0,-9,-9,2021,10,0,50,50,1,1,0,10.963722,10.963722,0,0,0,1,0,0,0,0,1,1,0,0,8.4290085,52,47,45.88,41.51,7,1,1,0,0,1,2,5,0,696.33331,1982166.3,1611458.1,189483.09,0,0,0,6159.937 +7841,9549,17045,-9,17046,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.144,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,2,2,0,437.5,97389.664,0,0,0,0,0,1057.5646 +7841,9549,17046,-9,17043,17044,1,0,22,1,2,0,2,2,-9,0,2,6.7563033,7.0762396,0,0,0,-1083.1096,0,3,2,2021,8,1,20,20,1,1,1,4.5716276,4.5716276,0,0,0,0,0,0,0,0,1,1,0,0,0,52.89,47.88,-9,-9,10,1,1,0,0,3,2,2,0,437.5,97389.664,0,0,0,0,0,1057.5646 +7842,9550,17047,17048,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.4928894,6.2532396,0,34,-3,-186.43398,0,3,2,2021,13,2,8,10,1,2,0,9.1369467,9.1369467,0,0,0,0,0,0,0,2,1,1,0,0,0,50.08,55.33,50.59,29.61,8.333333333333334,1,1,0,0,12,10,3,1,1024.5,631722.94,310602.56,245556.59,0,0,0,1743.7198 +7842,9550,17048,17047,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.2075343,7.2214203,34,3,-39.560715,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3280416,7.3643851,50.59,29.61,50.08,55.33,10,1,1,0,0,10,10,3,1,1024.5,631722.94,310602.56,245556.59,0,0,0,1743.7198 +7843,9551,17049,-9,-9,-9,1,1,25,0,0,0,2,2,-9,1,1,7.0644989,7.5956507,0,0,0,-902.72815,0,-9,-9,2021,9,0,24,0,1,0,0,6.6394324,6.6394324,0,0,0,0,0,0,0,0,1,1,0,0,0,50.48,35.33,-9,-9,3.333333333333333,1,1,0,0,3,7,3,0,104,-92465.836,0,0,0,0,0,617.76331 +7844,9552,17050,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1197.4448,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,23.78,47.59,-9,-9,5,1,1,0,0,0,6,1,0,808,30785.447,0,0,0,0,0,941.19977 +7845,9553,17051,17052,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,22,6,40.276966,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.54,46.62,57.59,46.65,8.333333333333334,1,1,0,0,0,2,2,0,1555,201274.16,144663.63,94119.234,0,0,0,1752.8882 +7845,9553,17052,17051,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,5.4113288,5.7268968,17,-6,84.006844,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0675101,5.8226442,57.59,46.65,48.54,46.62,8.333333333333334,1,1,0,0,7,2,2,0,1555,201274.16,144663.63,94119.234,0,0,0,1752.8882 +7846,9554,17053,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,4,0,6.9476137,7.0868554,0,0,-952.56042,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0807667,67.34,37.81,-9,-9,10,1,1,0,0,0,12,2,0,1460,121817.66,-14941.683,0,0,0,0,1879.6122 +7847,9555,17054,17055,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.1126671,8.384798,0,3,1,-69.552879,0,-9,-9,2021,10,1,88,41,1,1,0,5.2534342,5.2534342,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,33.17,56.08,8.333333333333334,1,1,0,0,4,10,5,0,544.5,212353.06,256231.33,110104.23,99003.594,15411.52,6738.1265,3814.3916 +7847,9555,17055,17054,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.3245687,8.2402315,0,3,-1,20.640425,0,-9,-9,2021,16,4,60,0,1,4,0,7.2334828,7.2334828,0,0,0,0,0,0,0,0,0,0,0,0,0,33.17,56.08,52.23,55.6,6.666666666666667,1,1,0,0,7,10,5,0,544.5,212353.06,256231.33,110104.23,99003.594,15411.52,6738.1265,3814.3916 +7848,9556,17056,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1023.1503,0,2,2,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,19.35,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,378,0,0,0,0,0,0,970.80408 +7849,9557,17057,17058,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,8.5891714,8.6114912,29,-1,-27.168285,0,2,2,2021,18,6,0,40,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.6926532,8.5098104,37.12,51.5,54.2,57.49,6.666666666666667,1,1,0,0,10,6,5,1,309,2995924,2331769.5,441738.94,43613.164,0,0,3536.7295 +7849,9557,17058,17057,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.1885653,8.1945381,0,29,1,83.03318,0,2,2,2021,10,0,24,24,1,0,0,21.693171,21.693171,0,0,0,0,0,0,0,0,1,1,0,4.8641787,0,54.2,57.49,37.12,51.5,8.333333333333334,1,1,0,0,9,6,5,1,309,2995924,2331769.5,441738.94,43613.164,0,0,3536.7295 +7849,9558,17059,-9,17058,17057,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-984.04596,-9,1,2,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6649313,0,47.45,54.03,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,1174,-24941.027,0,0,0,0,0,-736.35004 +7849,9559,17060,-9,17058,17057,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-936.50873,-9,1,2,2021,20,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6499786,0,30.07,63.04,-9,-9,8.333333333333334,1,1,1,0,1,6,1,1,1154,0,0,0,0,0,0,-851.49139 +7850,9560,17061,17062,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.4616103,7.5223894,48,-4,-99.916351,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.310164,7.6388655,55.19,54.26,56,51,6.666666666666667,1,1,0,0,9,9,3,1,2168,1277473.8,667086.19,343540.25,0,0,0,3392.166 +7850,9560,17062,17061,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.4082513,7.5492406,10,4,-41.717136,0,-9,-9,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.502336,56,51,55.19,54.26,3.333333333333333,1,1,0,0,10,9,3,1,2168,1277473.8,667086.19,343540.25,0,0,0,3392.166 +7851,9561,17063,17064,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,53,3,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,38.16,44.66,49.14,35.82,5,2,3,0,1,3,8,2,1,394.5,1109608,458473.38,508506.53,0,0,0,894.62244 +7851,9561,17064,17063,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,0,0,53,-3,0,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.14,35.82,38.16,44.66,7,2,3,0,0,0,8,2,1,394.5,1109608,458473.38,508506.53,0,0,0,894.62244 +7852,9562,17065,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.0229611,6.9954133,0,0,-1069.7565,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.64009428,0,1,1,0,3.6187847,6.9315939,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1512,804473.88,191638.52,698458.44,0,0,0,1651.7256 +7853,9563,17066,-9,17068,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.32336,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,350.66666,1839473.6,186310.75,1408311.5,0,0,0,2756.0276 +7853,9563,17067,-9,17068,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.1113,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,5,0,350.66666,1839473.6,186310.75,1408311.5,0,0,0,2756.0276 +7853,9563,17068,-9,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,9.0957212,8.739809,0,0,0,-958.82477,-9,2,2,2021,17,5,47,0,1,5,0,20.046103,20.046103,.05,.05,.05,0,0,0,0,0,1,1,0,2.5888286,0,44,52,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,350.66666,1839473.6,186310.75,1408311.5,0,0,0,2756.0276 +7854,9564,17069,-9,17070,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.4516,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,0,1424,168612.13,81629.766,224368.36,197765.83,0,0,2424.7559 +7854,9564,17070,-9,-9,-9,1,0,23,0,1,0,1,1,1,0,4,8.7984486,8.9684,6.4832458,0,0,-909.70477,-9,-9,-9,2021,13,2,26,0,1,2,0,20.932304,20.932304,.05,.05,0,0,0,0,0,0,1,1,0,6.203279,0,47.38,57.75,-9,-9,8.333333333333334,1,1,0,0,1,13,5,0,1424,168612.13,81629.766,224368.36,197765.83,0,0,2424.7559 +7855,9565,17071,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,9.4607229,9.5778866,0,0,0,-1012.8165,0,-9,-9,2021,12,1,40,45,1,1,0,40.818974,40.818974,.05,.05,0,0,0,0,0,0,0,0,0,5.5628972,0,48.7,56.22,-9,-9,1.666666666666667,1,1,0,0,11,10,5,0,2048,166529.64,1977.1462,0,0,0,0,5038.7759 +7856,9566,17072,17073,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.2464552,8.3640594,0,5,4,6.6918464,0,3,3,2021,16,4,48,48,1,4,0,10.814455,10.814455,0,0,0,0,0,0,0,0,0,0,0,0,0,41.2,49.96,44.84,53.55,3.333333333333333,2,3,0,0,10,10,5,1,160.5,3878284.8,1274146.8,737866.63,717.86011,0,0,3122.6223 +7856,9566,17073,17072,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.3933802,8.5119629,0,5,-4,5.0609059,0,3,2,2021,11,0,50,50,1,0,0,10.853521,10.853521,0,0,0,0,0,0,0,0,0,0,0,0,0,44.84,53.55,41.2,49.96,6.666666666666667,2,3,0,0,10,10,5,1,160.5,3878284.8,1274146.8,737866.63,717.86011,0,0,3122.6223 +7857,9567,17074,17075,-9,-9,1,1,34,0,0,0,3,3,-9,1,4,0,0,0,2,-2,0,0,-9,-9,2021,6,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,57.17,47.91,35.97,36.43,8.333333333333334,1,1,1,0,2,13,1,0,750.5,0,0,0,0,0,0,2491.7568 +7857,9567,17075,17074,-9,-9,1,0,36,0,0,0,3,3,-9,1,2,0,0,0,2,2,0,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,36.43,57.17,47.91,6.666666666666667,1,1,0,0,0,13,1,0,750.5,0,0,0,0,0,0,2491.7568 +7858,9568,17076,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1006.3708,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,2111,1240053.1,0,942866.81,0,0,0,2057.4275 +7859,9569,17077,17078,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.1454239,8.1031113,0,1,0,14.608456,-9,-9,-9,2021,9,0,37,0,1,0,0,10.76757,10.76757,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.71,61.53,6.666666666666667,1,1,0,0,1,8,4,0,1111.5,55032.914,-120824.71,0,0,0,0,3171.6626 +7859,9569,17078,17077,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.0109959,8.2068615,0,1,0,-51.038956,-9,-9,-9,2021,10,2,42,0,1,2,0,7.985599,7.985599,0,0,0,0,0,0,0,0,0,0,0,0,0,48.71,61.53,54.2,57.49,8.333333333333334,1,1,0,0,5,8,4,0,1111.5,55032.914,-120824.71,0,0,0,0,3171.6626 +7860,9570,17079,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-985.9472,0,-9,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2423282,0,25.64,46.2,-9,-9,6.666666666666667,1,1,0,0,9,9,1,1,337,41281.625,0,178904.19,0,0,0,556.74152 +7861,9571,17080,17081,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,8,-6,158.74577,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5247061,0,50.35,50.22,43.49,43.6,8.333333333333334,1,1,0,0,0,12,2,1,388.5,209757.47,158771.47,166110.44,0,0,0,3249.8687 +7861,9571,17081,17080,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.2885356,7.1192341,8,6,-63.779892,0,1,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.557673,7.3171048,43.49,43.6,50.35,50.22,8.333333333333334,1,1,0,0,2,12,2,1,388.5,209757.47,158771.47,166110.44,0,0,0,3249.8687 +7862,9572,17082,17083,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,7.1264982,7.4871874,51,4,1.5296854,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,7.4589548,7.4293804,55,45,53,45,8,1,1,0,0,0,11,3,1,1066,210477.06,0,0,0,0,0,3752.8379 +7862,9572,17083,17082,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.7432837,5.7512822,51,-4,-94.302254,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3234482,5.6623211,53,45,55,45,8,1,1,0,0,0,11,3,1,1066,210477.06,0,0,0,0,0,3752.8379 +7863,9573,17084,17085,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.7095242,8.8342638,0,10,2,-45.846684,0,2,2,2021,7,0,39,39,1,0,0,16.995951,16.995951,0,0,0,0,0,0,0,0,0,0,0,2.4326448,0,60.12,54.8,36.37,61.5,10,1,1,0,0,11,5,5,1,880.66669,275318.88,-11104.994,156355.5,0,39887.633,2344.7429,6358.6143 +7863,9573,17085,17084,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.3895521,9.7124805,0,10,-2,-121.25272,0,2,2,2021,21,9,54,87,1,9,0,30.633402,30.633402,.05,.05,0,0,0,0,0,0,0,0,0,4.2355905,0,36.37,61.5,60.12,54.8,5,1,1,0,0,11,5,5,1,880.66669,275318.88,-11104.994,156355.5,0,39887.633,2344.7429,6358.6143 +7863,9573,17086,-9,17084,17085,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-907.32727,-9,1,1,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4897664,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,1,4,5,5,1,880.66669,275318.88,-11104.994,156355.5,0,39887.633,2344.7429,6358.6143 +7864,9574,17087,17088,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,6.7948709,7.0780649,0,3,-12,127.47307,0,2,1,2021,11,0,20,20,1,0,0,6.3729224,6.3729224,0,0,0,0,0,0,0,0,1,1,0,0,0,49.07,38.32,60.6,43.75,6.666666666666667,1,1,0,0,10,4,3,1,982.5,34799.711,0,123063.83,12664.425,644.54285,0,2536.8279 +7864,9574,17088,17087,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.6871443,7.6260705,3,12,42.14323,0,3,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.6596451,7.3211513,60.6,43.75,49.07,38.32,8.333333333333334,1,1,0,0,0,4,3,1,982.5,34799.711,0,123063.83,12664.425,644.54285,0,2536.8279 +7865,9575,17089,17090,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.800869,8.8377914,0,31,-4,-42.647869,0,2,2,2021,10,0,38,37,1,0,0,23.153786,23.153786,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,1,499,685106,44524.941,369124.31,62326.188,0,0,10854.68 +7865,9575,17090,17089,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.5956144,9.7592983,0,31,4,1.7007569,0,3,3,2021,5,0,46,40,1,0,0,43.208511,43.208511,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,1,499,685106,44524.941,369124.31,62326.188,0,0,10854.68 +7865,9576,17091,-9,17089,17090,1,1,19,0,0,0,2,2,-9,0,4,7.9083114,8.1456203,0,0,0,-983.6731,0,2,2,2021,11,0,44,45,1,0,1,8.9761515,8.9761515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.55,51.64,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,388,71888.094,-74433.094,0,0,0,0,1865.7548 +7866,9577,17092,-9,17093,17094,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-915.83875,-9,3,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,6,2,0,829.66669,937594.06,392553.44,243846.69,0,0,0,2247.7532 +7866,9577,17093,17094,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,6.710063,6.6893663,0,33,-24,-16.366726,0,-9,-9,2021,12,0,16,16,1,2,0,6.3501525,6.3501525,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,53,47,7,4,2,0,0,1,6,2,0,829.66669,937594.06,392553.44,243846.69,0,0,0,2247.7532 +7866,9577,17094,17093,-9,-9,1,1,76,0,1,0,2,2,-9,0,3,0,7.1666417,6.9959207,33,24,17.258318,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2227449,53,47,47,49,7,1,1,0,0,0,6,2,0,829.66669,937594.06,392553.44,243846.69,0,0,0,2247.7532 +7866,9578,17095,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,3,0,4.4767895,4.7207365,0,0,-937.95642,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7645283,0,46.67,55.57,-9,-9,8.333333333333334,4,2,0,0,2,6,2,0,265,-94020.398,0,0,0,20677.838,4000.3367,1685.0508 +7867,9579,17096,17097,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.492732,8.4047384,0,6,1,-44.32481,0,-9,-9,2021,8,1,53,52,1,1,0,9.3586397,9.3586397,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,46.4,42.22,8.333333333333334,1,1,0,0,10,13,5,1,647.5,-115721.41,0,0,0,0,0,3556.7708 +7867,9579,17097,17096,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.0259991,7.9422441,0,6,-1,-4.7803159,0,2,2,2021,12,2,38,37,1,2,0,9.5222473,9.5222473,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,42.22,58.3,52.91,10,1,1,0,0,8,13,5,1,647.5,-115721.41,0,0,0,0,0,3556.7708 +7868,9580,17098,17099,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.9385448,7.909358,25,5,-5.1753712,0,2,2,2021,8,1,0,17,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6603265,7.8641124,55.96,49.93,32.02,49.25,8.333333333333334,1,1,0,0,6,10,3,1,700,1737648.8,0,988617.5,0,0,0,2214.9121 +7868,9580,17099,17098,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,0,0,0,25,-5,-22.215031,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3764687,0,32.02,49.25,55.96,49.93,6.666666666666667,1,1,0,0,0,10,3,1,700,1737648.8,0,988617.5,0,0,0,2214.9121 +7868,9581,17100,-9,17098,17099,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1064.1903,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.756175,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,4,10,1,1,259,36991.652,0,0,0,0,0,124.16025 +7869,9582,17101,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,5.5681224,5.6268635,0,0,-979.97418,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.8832035,0,0,1,1,0,0,5.7374291,54,44,-9,-9,8,1,1,0,0,0,6,2,1,218,296943.03,150605.06,273137.09,0,0,0,314.71228 +7870,9583,17102,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.6305494,9.443305,0,0,0,-874.68378,0,2,2,2021,11,0,53,53,1,0,0,42.091587,42.091587,.05,.05,0,0,0,0,0,0,1,1,0,4.3218775,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,145,224700.27,35600.477,0,0,0,0,11378.14 +7871,9584,17103,17104,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,7.863934,8.0356722,0,3,-12,-133.22047,0,2,2,2021,6,0,30,36,1,0,0,10.145661,10.145661,0,0,0,0,0,0,0,0,0,0,0,1.0940267,0,60.12,54.8,53.89,41.28,10,1,1,0,0,13,10,5,1,590.5,1264631.3,232429.38,0,0,0,0,4520.4971 +7871,9584,17104,17103,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.7207623,9.4416714,0,3,12,89.455933,0,2,3,2021,12,3,45,48,1,3,0,21.412361,21.412361,0,0,0,0,0,0,0,0,0,0,0,0,0,53.89,41.28,60.12,54.8,8.333333333333334,1,1,0,0,13,10,5,1,590.5,1264631.3,232429.38,0,0,0,0,4520.4971 +7872,9585,17105,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,7.4103522,7.084969,0,0,0,-941.30133,0,2,2,2021,34,12,15,15,1,12,0,10.967615,10.967615,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,9,4,3,0,1192,258714.75,43204.988,239502.25,0,0,0,646.75372 +7873,9586,17106,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,8.6055279,8.6875095,0,0,0,-947.64008,0,2,2,2021,10,0,40,40,1,0,0,19.517124,19.517124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.78,37.88,-9,-9,5,1,1,0,0,9,6,5,0,536,337976.19,25552.211,0,0,0,0,1829.8414 +7874,9587,17107,17110,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.3378134,8.3904266,0,10,1,120.23065,0,-9,-9,2021,14,3,39,37,1,3,0,11.238307,11.238307,.05,.05,0,0,0,0,0,0,1,1,0,4.82797,0,40.58,60.95,54.2,57.49,6.666666666666667,1,1,0,0,9,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7874,9587,17108,-9,17110,17107,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.63959,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7874,9587,17109,-9,17110,17107,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.65344,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7874,9587,17110,17107,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4122458,8.4960098,0,10,-1,62.948704,0,-9,-9,2021,4,0,30,30,1,0,0,18.287317,18.287317,.05,.05,0,0,0,0,0,0,1,1,0,5.2039638,0,54.2,57.49,40.58,60.95,10,1,1,0,0,11,1,4,1,607.25,818570.63,851565.13,148762.67,109530.13,12041.301,0,3223.6233 +7875,9588,17111,-9,17112,-9,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1143.3385,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,4,2,-9,0,0,12,2,0,342,593160.94,660014.63,0,0,0,0,2291.52 +7875,9588,17112,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,3,7.6214161,7.7245693,2.6710703,0,0,-1081.4368,0,2,1,2021,14,3,32,28,1,3,0,5.5187945,5.5187945,.05,.05,0,0,0,0,0,0,1,1,0,2.2317402,0,39.87,50.74,-9,-9,6.666666666666667,1,1,0,0,9,12,2,0,342,593160.94,660014.63,0,0,0,0,2291.52 +7876,9589,17113,17114,-9,-9,1,1,82,0,0,0,2,2,-9,0,1,0,8.0058727,8.0142736,58,4,29.238369,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,33.584427,0,0,1,1,0,0,7.9479136,23.94,23.19,54.37,54.8,3.333333333333333,1,1,0,0,0,7,4,1,404,1026462.1,418463.09,526616.25,0,0,0,3349.6421 +7876,9589,17114,17113,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.027411,6.6070085,58,-4,-40.916386,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,6.539124,54.37,54.8,23.94,23.19,8.333333333333334,1,1,0,0,0,7,4,1,404,1026462.1,418463.09,526616.25,0,0,0,3349.6421 +7877,9590,17115,17116,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,6.9556093,7.3789721,6,4,27.021025,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.0293249,7.3636565,42.19,32.17,48.98,57.22,5,1,1,0,0,0,12,4,1,1211.5,1549532.5,528133.06,695903.25,0,0,0,3570.3706 +7877,9590,17116,17115,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,8.2150135,8.0188761,5.2646518,6,-4,-102.64146,0,3,3,2021,8,1,35,35,1,1,0,11.793942,11.793942,0,0,0,0,0,0,0,0,1,1,0,0,5.125617,48.98,57.22,42.19,32.17,8.333333333333334,1,1,0,0,6,12,4,1,1211.5,1549532.5,528133.06,695903.25,0,0,0,3570.3706 +7878,9591,17117,17121,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,6.6042953,6.8837495,0,9,0,-70.890579,0,-9,-9,2021,11,0,16,16,1,0,0,5.5377755,5.5377755,0,0,0,0,0,0,0,0,1,1,0,0,0,38.9,48.23,45.97,51.9,5,2,3,0,0,12,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17118,-9,17121,17117,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.105,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17119,-9,17121,17117,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.1975,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17120,-9,17121,17117,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.47168,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7878,9591,17121,17117,-9,-9,1,0,36,0,3,0,3,3,-9,0,3,0,0,0,15,0,13.55549,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.97,51.9,38.9,48.23,5,2,3,0,0,0,4,2,0,1170.4,-16583.01,0,0,0,983.56488,0,1679.8232 +7879,9592,17122,17123,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,8.9592237,9.3139353,0,9,1,-22.842607,0,-9,-9,2021,7,0,47,60,1,0,0,22.801809,22.801809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,13,7,5,1,523,55929.742,126353.38,0,0,0,0,4968.1689 +7879,9592,17123,17122,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.4423375,7.5243893,5.3034992,9,-1,60.376232,0,2,3,2021,10,1,22,21,1,1,0,7.9544759,7.9544759,.05,.05,0,0,0,0,0,0,1,1,0,4.9072046,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,11,7,5,1,523,55929.742,126353.38,0,0,0,0,4968.1689 +7880,9593,17124,17125,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.3605452,8.3813314,0,3,3,-122.13621,0,-9,-9,2021,18,6,40,38,1,6,0,10.383352,10.383352,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.72,55.84,57.76,54.51,6.666666666666667,1,1,0,0,3,11,5,1,1423.5,88153.938,-67507.805,0,0,2072.8818,-629.23865,3591.1509 +7880,9593,17125,17124,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5041113,8.4857321,0,3,-3,28.452616,0,1,1,2021,8,2,37,38,1,2,0,19.479307,19.479307,0,0,0,0,0,0,0,0,0,0,0,1.9950548,0,57.76,54.51,45.72,55.84,10,1,1,0,0,9,11,5,1,1423.5,88153.938,-67507.805,0,0,2072.8818,-629.23865,3591.1509 +7881,9594,17126,17128,-9,-9,1,0,43,1,1,0,3,3,-9,0,2,6.8664193,7.038487,0,14,-18,20.590481,0,3,3,2021,18,8,16,16,1,8,0,7.7653804,7.7653804,0,0,0,0,0,0,0,0,1,1,0,0,0,44.5,31.41,56.46,49.68,5,2,3,0,0,12,2,3,1,1281.3334,96932.836,47626.57,0,0,6639.8071,3452.9663,2245.2393 +7881,9594,17127,-9,17126,17128,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.22119,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,3,1,1281.3334,96932.836,47626.57,0,0,6639.8071,3452.9663,2245.2393 +7881,9594,17128,17126,-9,-9,1,1,61,1,1,0,2,2,-9,0,3,0,7.7520723,7.8956032,14,18,11.977551,0,3,3,2021,13,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.5057631,7.4275322,56.46,49.68,44.5,31.41,6.666666666666667,2,3,0,0,6,2,3,1,1281.3334,96932.836,47626.57,0,0,6639.8071,3452.9663,2245.2393 +7882,9595,17129,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,7.3493667,8.053751,0,0,-902.26917,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5492773,33.64,18.89,-9,-9,5,1,1,0,1,0,12,3,0,406,1006705.8,211075.31,392322.25,0,0,1131.1364,2003.8146 +7883,9596,17130,17131,17132,-9,1,0,68,0,0,0,2,2,-9,0,2,8.389883,8.1207819,0,31,10,45.155827,0,2,1,2021,12,0,50,50,1,0,0,9.3537483,9.3537483,0,0,0,0,0,0,0,14.5,1,1,0,0,0,55.89,38.06,46.61,56.93,8.333333333333334,1,1,0,0,11,11,5,1,1271.5,267869.59,249304.13,221549.47,81487.484,0,0,3957.7715 +7883,9596,17131,17130,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.8253145,8.7200193,0,31,-10,-184.67865,0,2,2,2021,12,0,60,60,1,0,0,10.728598,10.728598,0,0,.05,0,0,0,0,2,1,1,0,0,0,46.61,56.93,55.89,38.06,8.333333333333334,1,1,0,0,13,11,5,1,1271.5,267869.59,249304.13,221549.47,81487.484,0,0,3957.7715 +7883,9597,17132,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1026.2856,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,44,-9,-9,8,1,1,0,0,0,11,1,1,2278,-146545.38,0,0,0,0,0,1009.4395 +7884,9598,17133,17134,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,7.1672845,7.7233944,55,0,26.781631,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3406062,7.3453364,60.7,39.78,49,42.07,8.333333333333334,1,1,0,0,0,13,3,1,332,520614.13,122280.22,160754.78,0,0,0,1762.4834 +7884,9598,17134,17133,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,5.5482903,5.8360634,55,0,43.158321,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0410333,5.555028,49,42.07,60.7,39.78,8.333333333333334,1,1,0,0,0,13,3,1,332,520614.13,122280.22,160754.78,0,0,0,1762.4834 +7885,9599,17135,17136,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,8.0720663,8.2271824,56,2,-61.847473,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9571013,8.1053791,52.26,35.6,57.16,56.15,10,1,1,0,0,9,10,4,1,278,1163641.8,662535.81,408944.5,0,954.66913,0,3561.8213 +7885,9599,17136,17135,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.1817446,7.0552182,56,-2,56.306343,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2807226,7.2064896,57.16,56.15,52.26,35.6,8.333333333333334,1,1,0,0,0,10,4,1,278,1163641.8,662535.81,408944.5,0,954.66913,0,3561.8213 +7886,9600,17137,17138,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.2375717,7.1584077,45,-1,-31.803772,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4455132,7.2378178,46.28,62.6,50.18,52.62,8.333333333333334,1,1,0,0,5,10,2,1,814,396137.94,165281.47,0,0,0,0,1737.0975 +7886,9600,17138,17137,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,0,0,44,1,11.813622,0,2,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4942012,0,50.18,52.62,46.28,62.6,8.333333333333334,1,1,0,0,12,10,2,1,814,396137.94,165281.47,0,0,0,0,1737.0975 +7887,9601,17139,17140,-9,-9,1,0,85,0,0,0,1,1,-9,0,4,0,6.3347058,6.6465302,52,10,-68.599991,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0591524,7.0087123,67.94,30.64,50.78,35.96,8.333333333333334,1,1,0,0,0,7,4,1,667.5,3071137.3,583126.13,2370956.5,91434.781,0,0,4001.4104 +7887,9601,17140,17139,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,8.3313141,8.662487,52,-10,5.4410639,0,2,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1234446,8.8238087,50.78,35.96,67.94,30.64,8.333333333333334,1,1,0,0,13,7,4,1,667.5,3071137.3,583126.13,2370956.5,91434.781,0,0,4001.4104 +7888,9602,17141,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1015.4417,0,2,1,2021,11,0,0,22,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,53.25,36.56,-9,-9,5,1,1,1,1,14,10,1,0,246,161059.61,0,0,0,0,0,1089.7555 +7889,9603,17142,-9,17143,17144,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-930.11212,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,739,622421.19,280076.75,162380.7,0,0,0,3023.3481 +7889,9603,17143,17144,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.6229057,7.9714451,0,28,-2,-56.537498,0,3,3,2021,10,0,24,24,1,0,0,14.963103,14.963103,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.58,55.59,57.59,43.82,6.666666666666667,1,1,0,0,11,2,4,1,739,622421.19,280076.75,162380.7,0,0,0,3023.3481 +7889,9603,17144,17143,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.3679876,8.57652,0,28,2,-59.085789,0,3,3,2021,6,0,45,42,1,0,0,11.50008,11.50008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.59,43.82,49.58,55.59,8.333333333333334,1,1,0,0,11,2,4,1,739,622421.19,280076.75,162380.7,0,0,0,3023.3481 +7890,9604,17145,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.3300905,8.6047506,0,0,0,-1085.1096,0,2,2,2021,11,0,44,45,1,0,0,17.558109,17.558109,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,403,-75455.148,0,0,0,0,0,3079.3804 +7891,9605,17146,-9,17147,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1058.7422,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,3448.5,75216.563,0,0,0,0,0,949.25989 +7891,9605,17147,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,0,0,0,0,0,-956.74988,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,60.23,-9,-9,5,1,1,1,1,9,4,1,0,3448.5,75216.563,0,0,0,0,0,949.25989 +7892,9606,17148,17149,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.9243188,7.9731603,0,7,-1,-106.80695,0,2,2,2021,8,0,27,27,1,0,0,12.780182,12.780182,.05,.05,0,0,0,0,0,0,1,1,0,3.2281947,0,57.16,56.15,51.14,60.45,10,1,1,0,0,9,4,5,0,447.33334,53970.238,19150.576,170335.53,148325.58,10976.078,0,4334.4526 +7892,9606,17149,17148,-9,-9,1,1,31,1,1,0,1,1,-9,0,5,9.3120003,9.0787144,0,7,1,9.3639145,0,2,2,2021,4,0,68,62,1,0,0,21.453943,21.453943,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,0,447.33334,53970.238,19150.576,170335.53,148325.58,10976.078,0,4334.4526 +7892,9606,17150,-9,17148,17149,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.03693,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,447.33334,53970.238,19150.576,170335.53,148325.58,10976.078,0,4334.4526 +7893,9607,17151,-9,17154,-9,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1148.0405,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7893,9607,17152,-9,17154,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.0529,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7893,9607,17153,-9,17154,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.34,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7893,9607,17154,-9,-9,-9,1,0,32,0,3,0,2,2,-9,1,3,0,6.6036234,6.6617513,0,0,-1050.924,0,2,2,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2013459,0,22.65,64.05,-9,-9,3.333333333333333,1,1,0,0,8,9,2,0,966.5,-5280.2104,0,0,0,0,0,2396 +7894,9608,17155,17156,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.4390192,6.318985,41,-1,1.9830353,-9,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5864906,6.3319283,56.47,51.02,51,48,8.333333333333334,1,1,0,0,4,8,3,1,1639.5,1066316.8,445585.31,403989.56,0,0,0,2321.7817 +7894,9608,17156,17155,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.1850986,7.2381401,1,1,.79796726,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4622302,7.2385178,51,48,56.47,51.02,7,1,1,0,0,0,8,3,1,1639.5,1066316.8,445585.31,403989.56,0,0,0,2321.7817 +7895,9609,17157,17158,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,8.9935999,9.0532694,7.516521,40,7,-54.157196,0,3,3,2021,7,0,25,31,1,0,0,37.351284,37.351284,0,0,0,0,0,0,0,0,1,1,0,6.8501568,7.5632586,57.33,53.46,59.38,41.3,8.333333333333334,1,1,0,0,14,9,5,0,1221.5,2709616.8,1231297.8,423961.25,0,0,0,5316.7231 +7895,9609,17158,17157,-9,-9,1,0,65,0,0,0,3,3,-9,1,4,5.8121257,6.8149996,6.7084846,40,-7,15.550056,0,2,3,2021,12,0,28,28,1,0,0,1.424934,1.424934,0,0,0,0,0,0,0,0,1,1,0,5.8032503,6.5032959,59.38,41.3,57.33,53.46,5,1,1,0,0,14,9,5,0,1221.5,2709616.8,1231297.8,423961.25,0,0,0,5316.7231 +7896,9610,17159,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.3802166,8.3429203,0,0,0,-996.01031,0,-9,-9,2021,12,0,42,38,1,2,0,11.669051,11.669051,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,1,3,13,4,0,930,-257460.42,0,0,0,0,0,1435.6206 +7897,9611,17160,17161,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,7.5533676,7.7032843,24,-16,-60.678085,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5141029,7.3932891,58.73,43.76,60.29,52.11,8.333333333333334,1,1,0,0,6,7,4,1,411,1646115,622435.5,613967.75,0,0,0,2416.4648 +7897,9611,17161,17160,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.2433453,7.8021564,21,16,-88.257317,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4076605,8.0411186,60.29,52.11,58.73,43.76,8.333333333333334,1,1,0,0,0,7,4,1,411,1646115,622435.5,613967.75,0,0,0,2416.4648 +7898,9612,17162,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.8268566,6.8917751,0,0,-1031.366,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,12.313345,0,0,1,1,0,2.0465174,6.6498733,53.74,31.32,-9,-9,5,1,1,0,0,0,6,2,1,5852,90370.508,55585.121,-72925.289,0,0,0,1791.1744 +7899,9613,17163,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.1266856,6.75985,0,0,-914.01184,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,13.137192,0,0,1,1,0,0,6.8294864,42.28,16.13,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,585,586865.56,356397.63,55820.645,0,6231.2495,0,1589.7924 +7900,9614,17164,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.7829514,7.5164723,0,0,0,-893.13904,0,2,2,2021,6,0,45,40,1,0,0,5.8861246,5.8861246,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,10,1,1,0,0,7,12,4,0,1169,-75949.328,-32393.363,0,0,12268.296,0,1071.7157 +7901,9615,17165,-9,17168,17167,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1077.6027,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7901,9615,17166,-9,17168,17167,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.99799,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,4,2,-9,0,0,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7901,9615,17167,17168,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,8.6865759,8.5072222,0,5,1,69.032219,0,2,2,2021,11,0,42,35,1,0,0,15.285886,15.285886,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.05,59.16,49,55,3.333333333333333,2,3,0,0,5,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7901,9615,17168,17167,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.9783297,8.5500555,0,5,-1,-12.159215,0,-9,-9,2021,11,0,45,18,1,2,0,17.294586,17.294586,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,39.05,59.16,7,1,1,0,0,8,6,5,1,1123,1143217,510888.31,531319.5,83673.672,5656.9229,0,4718.7148 +7902,9616,17169,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.6522141,6.6021919,0,0,-1006.8869,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3189368,33.23,25.84,-9,-9,5,1,1,0,1,0,2,2,1,2530,234066.44,337235.66,0,0,0,0,1730.3326 +7903,9617,17170,17171,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.9542341,9.0735722,0,10,9,-34.752747,0,-9,-9,2021,5,0,40,55,1,0,0,23.873728,23.873728,.05,.05,.05,0,0,0,0,0,1,1,0,.99696887,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,11,2,5,1,524,509531.13,143168.44,347660.19,75571.922,0,0,4701.1563 +7903,9617,17171,17170,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.5799513,8.639699,0,16,0,-118.78726,0,3,2,2021,5,0,37,29,1,0,0,10.697789,10.697789,0,0,.05,0,0,0,0,0,1,1,0,5.7488623,0,51.73,58.82,57.16,56.15,10,1,1,0,0,11,2,5,1,524,509531.13,143168.44,347660.19,75571.922,0,0,4701.1563 +7903,9618,17172,-9,17171,17170,1,0,30,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1033.1107,0,1,1,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,1458,-130615.94,0,0,0,0,0,1605.0629 +7904,9619,17173,17174,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1947193,8.4627934,0,15,-4,-17.766171,0,2,2,2021,21,9,26,30,1,9,0,17.218449,17.218449,.05,.05,0,0,0,0,0,0,1,1,0,7.7782559,0,25.37,63.98,32.82,56.45,5,1,1,0,1,10,12,4,1,1336,268850.31,96574.586,191019.61,145306.97,0,0,3716.1667 +7904,9619,17174,17173,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,7.4245248,7.2360263,0,9,4,-26.002981,0,-9,-9,2021,22,10,85,70,1,10,0,2.5550478,2.5550478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.82,56.45,25.37,63.98,6.666666666666667,1,1,0,1,10,12,4,1,1336,268850.31,96574.586,191019.61,145306.97,0,0,3716.1667 +7904,9619,17175,-9,17173,17174,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1111.3635,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3916227,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,1336,268850.31,96574.586,191019.61,145306.97,0,0,3716.1667 +7905,9620,17176,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1034.058,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,30,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,442,-53351.859,0,0,0,0,0,2841.1323 +7906,9621,17177,17178,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,59,1,-1.8778208,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.73,49.07,57.18,45.76,8.333333333333334,1,1,0,0,0,2,2,1,592,-17183.82,7160.085,85292.523,0,0,0,1408.2366 +7906,9621,17178,17177,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.0952964,3.9085331,59,-1,-13.63823,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4814639,4.1988144,57.18,45.76,36.73,49.07,6.666666666666667,1,1,0,0,0,2,2,1,592,-17183.82,7160.085,85292.523,0,0,0,1408.2366 +7907,9622,17179,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.8885612,8.9738445,0,0,0,-1007.5574,0,2,2,2021,9,0,42,42,1,0,0,20.235807,20.235807,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,12,1,5,1,128,294753,2398.6301,226519.09,3651.8711,0,0,2595.2507 +7908,9623,17180,17182,-9,-9,1,0,31,1,2,0,2,2,-9,0,4,7.0941682,7.3351631,4.0074396,8,1,23.677452,0,2,2,2021,13,2,14,15,1,2,0,9.7654743,9.7654743,0,0,0,0,0,0,0,0,1,1,0,4.4995375,0,44.42,51.06,50.03,52.62,3.333333333333333,1,1,0,0,9,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7908,9623,17181,-9,17180,17182,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.3375,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7908,9623,17182,17180,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.6519289,8.407073,0,8,-1,108.10838,0,1,2,2021,11,0,12,12,1,0,0,48.463177,48.463177,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,44.42,51.06,8.333333333333334,1,1,0,0,11,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7908,9623,17183,-9,17180,17182,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-943.50342,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,732,-20929.93,-31694.525,122074.92,105814.61,876.70245,0,3685.8567 +7909,9624,17184,17185,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.0936947,5.4124651,45,-4,-11.713805,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.9472742,0,2,1,1,0,5.0971189,5.2434363,62.6,24.03,62.42,45.64,8.333333333333334,1,1,0,0,0,13,2,1,1388,-12406.098,41978.043,0,0,2106.5281,3056.2793,909.60754 +7909,9624,17185,17184,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,0,0,45,4,41.993965,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,62.42,45.64,62.6,24.03,8.333333333333334,1,1,0,0,0,13,2,1,1388,-12406.098,41978.043,0,0,2106.5281,3056.2793,909.60754 +7910,9625,17186,17187,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.5553951,7.5022855,0,10,-1,-8.3426743,0,2,2,2021,12,0,12,16,1,0,0,21.670431,21.670431,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,13,9,5,1,390.5,395422.59,201615.19,415337.06,213943.45,0,10910.67,9121.8652 +7910,9625,17187,17186,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,9.6885386,9.5796413,0,10,1,12.616693,0,2,3,2021,6,0,40,40,1,0,0,42.87928,42.87928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,10,1,1,0,0,13,9,5,1,390.5,395422.59,201615.19,415337.06,213943.45,0,10910.67,9121.8652 +7910,9626,17188,-9,17186,17187,1,0,22,0,1,0,2,2,-9,0,3,7.5256877,7.556931,0,0,0,-1052.9858,0,2,2,2021,14,3,32,40,1,3,1,6.7307491,6.7307491,0,0,0,0,0,0,0,0,1,1,0,0,0,19.32,59.08,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,230,-105193.41,0,0,0,0,-275.56778,1048.9792 +7911,9627,17189,17190,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3779716,8.2112751,0,10,4,43.26659,0,2,2,2021,12,0,37,37,1,0,0,13.028927,13.028927,0,0,0,0,0,0,0,0,0,0,0,1.779924,0,48,48,51.3,42.81,1.666666666666667,1,1,0,0,11,10,5,1,1145.5,4615501,512133.53,1455711.5,395948.56,0,6599.3916,2899.4312 +7911,9627,17190,17189,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.9079456,7.9286041,0,10,-4,-16.118122,-9,2,2,2021,17,5,24,0,1,5,0,12.686123,12.686123,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.3,42.81,48,48,3.333333333333333,1,1,0,0,11,10,5,1,1145.5,4615501,512133.53,1455711.5,395948.56,0,6599.3916,2899.4312 +7912,9628,17191,17192,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.188673,8.1549168,0,5,6,-21.886404,0,-9,-9,2021,13,1,42,45,1,1,0,8.1112032,8.1112032,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.58,42.99,59.14,52.5,5,1,1,0,0,10,11,5,1,440,410918.97,614484.31,0,0,2061.5596,119.59131,2816.4707 +7912,9628,17192,17191,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.3174486,8.2252245,0,5,-6,73.533539,0,2,2,2021,10,2,40,43,1,2,0,11.079408,11.079408,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.14,52.5,50.58,42.99,8.333333333333334,1,1,0,0,10,11,5,1,440,410918.97,614484.31,0,0,2061.5596,119.59131,2816.4707 +7913,9629,17193,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.5561938,7.3662634,0,0,-986.20404,0,2,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3065648,7.0928378,48.24,46.4,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1177,605206.88,306827.25,308771.25,0,0,0,2518.6355 +7914,9630,17194,-9,17197,17196,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-849.55878,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7914,9630,17195,-9,17197,17196,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.4561,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7914,9630,17196,17197,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.9971418,9.048996,0,18,0,84.950844,0,3,2,2021,12,2,42,43,1,2,0,22.09741,22.09741,.05,.05,0,0,0,0,0,0,0,0,0,5.1218438,0,39.98,57.28,60.02,56.42,8.333333333333334,1,1,0,0,12,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7914,9630,17197,17196,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.7337866,8.4354258,0,20,0,53.774227,0,3,3,2021,8,0,30,18,1,0,0,20.22934,20.22934,.05,.05,0,0,0,0,0,0,0,0,0,5.1517339,0,60.02,56.42,39.98,57.28,8.333333333333334,1,1,0,0,10,12,5,1,511.25,891066.88,737689.19,198576.47,189086.28,0,449.39972,5386.3291 +7915,9631,17198,17200,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.0243282,8.129446,0,6,5,-52.375008,0,2,1,2021,10,0,43,45,1,1,0,9.2425194,9.2425194,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,48.06,50.73,7,1,1,0,0,1,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7915,9631,17199,-9,17200,17198,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.6971,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7915,9631,17200,17198,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,5.6922383,5.4672561,0,6,-5,6.3259044,0,2,2,2021,13,2,12,0,1,2,0,2.8649771,2.8649771,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,50.73,51,56,8.333333333333334,1,1,0,1,1,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7915,9631,17201,-9,17200,17198,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.79022,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,744.5,-55628.883,-448.45032,181211.64,124738.08,0,0,1986.3752 +7916,9632,17202,-9,17203,17204,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1038.9998,-9,2,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.55,62.9,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,951.33331,521449.44,54186.906,467248.22,39333.246,0,0,2084.5906 +7916,9632,17203,17204,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.2145462,8.2851467,0,31,-5,-81.387695,0,3,2,2021,6,0,21,40,1,0,0,15.717156,15.717156,0,0,0,0,0,0,0,0,1,1,0,0,0,58.75,48.57,53.11,40.77,6.666666666666667,1,1,0,0,14,7,3,1,951.33331,521449.44,54186.906,467248.22,39333.246,0,0,2084.5906 +7916,9632,17204,17203,-9,-9,1,1,56,0,1,0,3,3,-9,0,2,7.2217469,7.3139739,0,31,5,54.085518,0,-9,-9,2021,13,2,38,38,1,2,0,4.5633159,4.5633159,.05,.05,0,0,0,0,0,0,1,1,0,1.8751934,0,53.11,40.77,58.75,48.57,6.666666666666667,1,1,0,0,14,7,3,1,951.33331,521449.44,54186.906,467248.22,39333.246,0,0,2084.5906 +7917,9633,17205,-9,-9,-9,1,0,54,1,2,0,2,2,-9,0,2,7.7028337,7.4899216,0,0,0,-975.77399,0,-9,-9,2021,14,4,20,16,1,4,0,11.379188,11.379188,0,0,0,0,0,0,0,0,1,1,0,0,0,39.83,48.26,-9,-9,5,1,1,0,1,7,1,2,0,567,115804.6,98156.273,0,0,0,0,1436.084 +7917,9634,17206,-9,17207,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-856.53461,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,4,6,-9,0,0,1,3,0,697,-92218.5,0,0,0,5066.2324,0,503.31061 +7917,9634,17207,-9,17205,-9,1,0,25,1,2,0,2,2,-9,0,5,7.3427901,7.1147799,0,0,0,-1037.7201,-9,2,-9,2021,3,0,27,0,1,0,1,6.3152418,6.3152418,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,697,-92218.5,0,0,0,5066.2324,0,503.31061 +7918,9635,17208,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1038.1353,0,3,2,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.92,16.66,-9,-9,1.666666666666667,1,1,0,0,2,8,1,0,186,-5579.3784,0,0,0,0,0,2238.0876 +7919,9636,17209,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1129.0192,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,13,1,1,857,75377.07,0,0,0,0,0,-184.38632 +7920,9637,17210,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5908632,8.6681557,0,0,0,-1005.4551,0,2,2,2021,10,0,40,40,1,0,0,13.259306,13.259306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,6.666666666666667,1,1,0,1,10,9,5,0,1315,57208.367,-36895.676,0,0,0,84.9403,1824.4435 +7921,9638,17211,17212,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.3835993,7.6803579,2,4,-42.189602,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.29490602,7.1973214,59.43,58.05,31.98,30.27,10,1,1,0,0,5,13,3,1,392.5,216450.17,173208.23,0,0,0,0,819.36896 +7921,9638,17212,17211,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,6.573247,6.5336494,0,2,-4,128.68661,0,2,3,2021,24,12,19,0,1,12,0,3.9903433,3.9903433,0,0,0,0,0,0,0,0,0,0,0,1.9798212,0,31.98,30.27,59.43,58.05,1.666666666666667,1,1,0,0,6,13,3,1,392.5,216450.17,173208.23,0,0,0,0,819.36896 +7922,9639,17213,17214,-9,-9,1,0,52,0,2,0,1,1,-9,0,1,8.9864111,9.163763,0,3,-2,-49.48959,0,1,1,2021,3,1,40,37,1,1,0,25.90744,25.90744,0,0,0,0,0,0,0,0,0,0,0,0,0,55.09,21.54,57.33,53.46,8.333333333333334,1,1,0,0,11,8,5,1,1106.5,4848939,2572670.5,1132014.9,171292.22,0,0,22426.391 +7922,9639,17214,17213,-9,-9,1,1,54,0,2,0,1,1,-9,0,3,9.7175941,9.3103075,0,3,2,64.184387,0,-9,-9,2021,8,0,42,40,1,0,0,40.251854,40.251854,.05,.05,0,0,0,0,0,0,0,0,0,8.8272934,0,57.33,53.46,55.09,21.54,6.666666666666667,1,1,0,0,12,8,5,1,1106.5,4848939,2572670.5,1132014.9,171292.22,0,0,22426.391 +7923,9640,17215,17216,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,7.0006499,7.2478976,0,8,1,43.948235,0,2,2,2021,35,12,50,48,1,12,0,3.7082179,3.7082179,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,40.53,44.95,39.15,41.42,3.333333333333333,1,1,0,0,7,4,3,1,659.5,653026.75,237799.45,357573.25,31477.623,176.26312,298.01962,1645.766 +7923,9640,17216,17215,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.5195465,7.6802154,0,8,-1,-93.954666,0,2,1,2021,22,10,60,25,1,10,0,3.2366974,3.2366974,.05,.05,0,0,0,0,0,0,0,0,0,5.3955655,0,39.15,41.42,40.53,44.95,5,1,1,0,0,13,4,3,1,659.5,653026.75,237799.45,357573.25,31477.623,176.26312,298.01962,1645.766 +7923,9641,17217,-9,17216,17215,1,0,20,0,0,0,2,2,-9,0,3,6.5632434,6.7494373,0,0,0,-970.2807,0,2,2,2021,15,3,25,14,1,3,1,3.6654956,3.6654956,0,0,0,0,0,0,0,0,0,0,0,5.955255,0,30.94,61.65,-9,-9,5,1,1,0,0,5,4,2,1,1461,-12892.825,0,0,0,0,0,1203.106 +7924,9642,17218,-9,17219,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.67981,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,3,0,590.66669,66537.773,-98847.477,0,0,0,0,2032.1912 +7924,9642,17219,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.6267858,8.1637497,6.6981812,0,0,-1000.9678,0,-9,3,2021,16,5,30,30,1,5,0,7.6460867,7.6460867,.05,.05,0,0,0,0,0,0,1,1,0,6.9034224,0,43.81,52.59,-9,-9,8.333333333333334,1,1,0,0,12,12,3,0,590.66669,66537.773,-98847.477,0,0,0,0,2032.1912 +7924,9642,17220,-9,17219,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.6604,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,590.66669,66537.773,-98847.477,0,0,0,0,2032.1912 +7925,9643,17221,17222,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.0164404,6.2450385,0,9,-4,13.837776,0,-9,2,2021,9,0,8,2,1,0,0,5.9815984,5.9815984,0,0,0,0,0,0,0,14.5,0,0,0,3.1759415,0,58.15,52.91,47.12,46,8.333333333333334,1,1,0,0,10,7,2,1,2663.5,407957,0,204168.78,17456.287,0,0,-336.84512 +7925,9643,17222,17221,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,0,0,0,9,4,34.515427,0,-9,-9,2021,16,4,0,38,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1916964,0,47.12,46,58.15,52.91,5,1,1,1,0,9,7,2,1,2663.5,407957,0,204168.78,17456.287,0,0,-336.84512 +7926,9644,17223,-9,-9,-9,1,0,55,0,2,0,3,3,-9,0,3,0,0,0,0,0,-989.97998,0,3,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,2,3,0,0,0,2,2,1,635,-122612.95,0,0,0,0,4049.2488,-799.69867 +7926,9645,17224,17226,-9,-9,1,0,33,0,2,0,3,3,-9,1,2,0,0,0,5,-1,8.7834969,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,59.54,46.05,49,57,8.333333333333334,2,3,0,0,0,2,3,1,695.33331,-72831.258,21499.734,0,0,1786.2106,2127.8374,1574.4952 +7926,9645,17225,-9,17224,17226,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.38275,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,3,1,695.33331,-72831.258,21499.734,0,0,1786.2106,2127.8374,1574.4952 +7926,9645,17226,17224,17223,-9,1,1,34,0,2,0,2,2,-9,0,4,8.0415964,8.0954933,0,5,1,-64.267754,0,3,-9,2021,10,0,25,25,1,1,0,12.539118,12.539118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,59.54,46.05,7,2,3,0,0,1,2,3,1,695.33331,-72831.258,21499.734,0,0,1786.2106,2127.8374,1574.4952 +7927,9646,17227,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,6.105392,5.9434462,0,0,-1104.8408,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.1522961,5.8417029,53,47,-9,-9,7,2,3,0,0,0,8,2,1,1894,966512.19,101591.66,767129.13,0,0,0,1952.8651 +7928,9647,17228,-9,17229,-9,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-912.33691,-9,1,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,1,1,-9,0,0,2,3,1,1337.6666,-2022.8424,-38884.594,162213.89,150849.22,0,0,1434.6249 +7928,9647,17229,-9,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.9929495,8.3335352,0,0,0,-1012.2161,0,3,2,2021,6,0,43,24,1,0,0,9.1908798,9.1908798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.24,50.01,-9,-9,8.333333333333334,1,1,0,0,13,2,3,1,1337.6666,-2022.8424,-38884.594,162213.89,150849.22,0,0,1434.6249 +7928,9647,17230,-9,17229,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1012.6331,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,3,1,1337.6666,-2022.8424,-38884.594,162213.89,150849.22,0,0,1434.6249 +7929,9648,17231,17232,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.1239405,6.191977,12,-6,-10.362129,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7601216,6.8867688,54.2,57.49,51.55,51.94,8.333333333333334,1,1,0,0,9,10,2,1,623.5,387751.53,161077.75,261863.84,0,5533.5806,0,2348.6765 +7929,9648,17232,17231,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,12,6,-43.090496,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.13269,0,51.55,51.94,54.2,57.49,5,1,1,0,0,11,10,2,1,623.5,387751.53,161077.75,261863.84,0,5533.5806,0,2348.6765 +7930,9649,17233,17234,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,.23235707,0,0,7,2,52.383785,0,3,3,2021,14,3,35,42,1,3,0,.00064548379,.00064548379,0,0,0,0,0,0,0,27,0,0,0,0,0,43.12,56.93,48.39,33.39,8.333333333333334,1,1,0,0,14,13,2,1,595.5,193962.05,33104.688,159918.34,57082.016,14195.301,0,19.61731 +7930,9649,17234,17233,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,0,0,0,7,-2,-91.671669,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.39,33.39,43.12,56.93,8.333333333333334,1,1,1,0,0,13,2,1,595.5,193962.05,33104.688,159918.34,57082.016,14195.301,0,19.61731 +7931,9650,17235,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,6.0885744,6.3115783,0,0,-997.03192,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7547232,6.0656104,58.72,30.19,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,1838,491734.09,-17707.068,53212.305,0,0,0,863.71918 +7932,9651,17236,17237,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.8238678,6.4988575,11,4,44.157047,0,2,1,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7376757,32.82,35.19,64,24.84,8.333333333333334,1,1,0,0,6,7,3,1,291,1567729.6,668863.44,867733.13,0,0,0,2443.1387 +7932,9651,17237,17236,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.7576518,7.5909886,11,-4,23.123188,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3983636,7.5757885,64,24.84,32.82,35.19,8.333333333333334,1,1,0,0,10,7,3,1,291,1567729.6,668863.44,867733.13,0,0,0,2443.1387 +7933,9652,17238,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.1085348,8.0251122,6.4054551,0,0,-881.89966,0,-9,-9,2021,6,0,32,33,1,0,0,10.810011,10.810011,0,0,0,0,0,0,0,0,1,1,0,4.4735489,6.4677906,60.69,45.31,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,1019,426490.47,168709.69,191202.7,60287.035,3596.0823,0,2583.4063 +7934,9653,17239,17241,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,8.7223482,8.8474321,0,6,-2,127.20963,0,-9,-9,2021,10,0,36,36,1,0,0,18.237999,18.237999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,7,13,4,1,1069.3334,567836.75,431342.66,143345.92,53880.391,0,0,3935.1985 +7934,9653,17240,-9,17241,17239,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.07941,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,1069.3334,567836.75,431342.66,143345.92,53880.391,0,0,3935.1985 +7934,9653,17241,17239,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.8020244,7.844451,0,6,2,131.66405,0,2,2,2021,7,0,30,19,1,0,0,9.0361214,9.0361214,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,7,13,4,1,1069.3334,567836.75,431342.66,143345.92,53880.391,0,0,3935.1985 +7934,9654,17242,-9,17241,17239,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1033.9943,-9,2,1,2021,4,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,13,1,1,1041,76440.383,0,0,0,0,0,0 +7935,9655,17243,17244,-9,-9,1,1,84,0,0,0,1,1,-9,0,1,0,7.9250798,8.175705,64,1,176.79379,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9967966,0,2,1,1,0,4.3448572,8.2297869,37.43,41.44,34.91,35.39,5,1,1,0,0,0,7,3,1,733,471854.19,223220.53,0,0,0,-1.1793232,2535.4165 +7935,9655,17244,17243,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,4.9791698,5.0235653,64,-1,57.940163,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,6.6801944,0,7,1,1,0,5.3842931,5.1977654,34.91,35.39,37.43,41.44,6.666666666666667,1,1,0,0,0,7,3,1,733,471854.19,223220.53,0,0,0,-1.1793232,2535.4165 +7936,9656,17245,17246,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.5943542,7.4427075,0,45,-7,65.849747,0,3,3,2021,19,7,37,45,1,7,0,6.0597305,6.0597305,0,0,0,0,0,0,0,0,1,1,0,0,0,44.51,49.63,62.84,30.79,6.666666666666667,1,1,0,0,9,7,3,1,487.5,1388348.8,556396.94,641746.13,0,0,0,1634.29 +7936,9656,17246,17245,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.6377435,6.6093488,45,7,67.264519,0,3,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,6.8131967,62.84,30.79,44.51,49.63,8.333333333333334,1,1,0,0,4,7,3,1,487.5,1388348.8,556396.94,641746.13,0,0,0,1634.29 +7937,9657,17247,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,7.8811073,7.9117737,0,0,0,-1062.7887,-9,-9,-9,2021,11,0,50,0,1,0,0,7.3265109,7.3265109,0,0,0,0,0,0,0,0,0,0,0,5.1992812,0,62.62,48.33,-9,-9,10,1,1,0,0,3,11,4,1,1253,-145594.02,0,0,0,0,0,1527.4192 +7938,9658,17248,17251,-9,-9,1,1,35,1,2,0,1,1,-9,0,3,9.3803406,9.3571625,0,6,0,107.52332,0,1,1,2021,6,0,45,45,1,0,0,26.510281,26.510281,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50.03,52.62,51.73,58.82,6.666666666666667,4,2,0,0,12,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7938,9658,17249,-9,17251,17248,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.3196,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7938,9658,17250,-9,17251,17248,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4246,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7938,9658,17251,17248,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.5630569,8.7040462,0,6,0,-103.46059,0,-9,-9,2021,7,0,30,38,1,0,0,22.685486,22.685486,0,0,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50.03,52.62,8.333333333333334,1,1,0,0,9,10,5,1,1130.5,263883.03,266057.38,228699.95,199041.17,22516.324,45458.922,6123.1577 +7939,9659,17252,17253,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.5119824,6.5169191,0,12,-5,-16.245115,0,2,3,2021,4,0,12,-9,1,0,0,6.0814266,6.0814266,.05,.05,0,0,0,0,0,0,0,0,0,3.2634904,0,59.53,56.44,57.16,56.15,8.333333333333334,1,1,0,0,5,12,5,1,1058.5,435078.38,250855.31,238509.13,98342.594,0,0,2542.009 +7939,9659,17253,17252,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.9888144,8.6339636,0,12,5,63.949589,0,3,3,2021,6,0,72,40,1,0,0,11.9765,11.9765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.53,56.44,8.333333333333334,1,1,0,0,14,12,5,1,1058.5,435078.38,250855.31,238509.13,98342.594,0,0,2542.009 +7940,9660,17254,17255,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.8644948,7.9834776,48,2,131.91196,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.1732569,58.07,46.29,50,47,3.333333333333333,1,1,0,0,4,5,3,1,733,723888.38,369770.47,182957,0,0,0,2265.4888 +7940,9660,17255,17254,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,48,-2,-90.28157,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,50,47,58.07,46.29,5,1,1,0,0,0,5,3,1,733,723888.38,369770.47,182957,0,0,0,2265.4888 +7941,9661,17256,17257,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,7.9019799,7.8945885,0,12,-11,165.91115,0,3,3,2021,10,0,40,45,1,1,0,7.8095751,7.8095751,.05,.05,0,0,0,0,0,0,0,0,0,1.422577,0,50,56,50.38,58.02,7,2,3,0,0,1,2,5,0,744,642145.25,321845.44,294088.5,108353.11,0,0,3884.1125 +7941,9661,17257,17256,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6920404,8.7460213,0,12,11,42.119343,0,3,3,2021,8,1,55,56,1,1,0,10.576807,10.576807,0,0,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,50,56,8.333333333333334,1,1,0,0,11,2,5,0,744,642145.25,321845.44,294088.5,108353.11,0,0,3884.1125 +7942,9662,17258,17259,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6526327,7.9561348,0,39,0,14.202725,0,2,2,2021,8,0,84,70,1,0,0,7.6954513,7.6954513,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,45.74,42.03,25.43,8.333333333333334,1,1,0,0,9,7,5,1,1134,995657.38,636285.88,193876.45,0,0,0,4750.3179 +7942,9662,17259,17258,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,7.6181951,7.6058502,10,9,-116.09629,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,80.811913,0,0,1,1,0,0,7.5851974,42.03,25.43,53.14,45.74,3.333333333333333,1,1,0,1,0,7,5,1,1134,995657.38,636285.88,193876.45,0,0,0,4750.3179 +7943,9663,17260,-9,17261,17262,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1154.2101,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,7,4,1,1047,361414.53,303207.94,188386.56,92125.484,0,1856.1071,2717.0996 +7943,9663,17261,17262,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.7927756,7.8198457,0,7,-2,37.59359,0,-9,-9,2021,11,0,37,37,1,0,0,7.8460536,7.8460536,0,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,38.75,59.06,10,4,2,0,0,15,7,4,1,1047,361414.53,303207.94,188386.56,92125.484,0,1856.1071,2717.0996 +7943,9663,17262,17261,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.2913151,8.3761988,0,7,2,-44.868885,0,-9,-9,2021,21,7,40,37,1,7,0,10.156219,10.156219,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.75,59.06,49.06,58.64,5,1,1,0,0,15,7,4,1,1047,361414.53,303207.94,188386.56,92125.484,0,1856.1071,2717.0996 +7943,9664,17263,-9,17261,17262,1,0,19,0,1,0,2,2,-9,0,3,4.4530101,4.4934511,0,0,0,-959.1687,0,3,2,2021,28,10,30,20,1,10,1,.30829397,.30829397,0,0,0,0,0,0,0,0,1,1,0,0,0,27.12,51.19,-9,-9,1.666666666666667,4,2,0,1,3,7,2,1,554,-7299.5747,0,0,0,0,0,-507.48083 +7944,9665,17264,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.2472763,8.28825,0,0,0,-998.39142,0,-9,-9,2021,5,0,38,37,1,0,0,11.065036,11.065036,.05,.05,0,0,0,0,0,0,0,0,0,1.2987297,0,53.65,51.02,-9,-9,10,1,1,0,0,10,2,4,0,215,403034.09,42503.074,348176.13,0,-1047.1937,3931.7295,1183.5089 +7945,9666,17265,17266,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.7691326,8.8104439,0,7,-6,75.764336,0,-9,-9,2021,9,0,50,55,1,0,0,17.825457,17.825457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.13,58.45,25.34,42.76,8.333333333333334,1,1,0,0,11,6,5,1,1320.5,-17394.348,78684.5,154031.42,90861.891,19454.77,0,3539.29 +7945,9666,17266,17265,-9,-9,1,0,40,0,0,0,1,1,1,0,1,0,0,0,7,6,-50.464924,-9,-9,-9,2021,27,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.5912712,0,25.34,42.76,41.13,58.45,6.666666666666667,1,1,0,0,8,6,5,1,1320.5,-17394.348,78684.5,154031.42,90861.891,19454.77,0,3539.29 +7946,9667,17267,-9,-9,-9,1,0,54,1,1,0,2,2,-9,1,2,0,6.8271198,6.8158164,0,0,-863.62573,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,7.3546848,0,41.42,32.65,-9,-9,1.666666666666667,3,4,0,0,1,8,2,0,787,-41034.555,0,0,0,0,1440.7629,1785.8003 +7947,9668,17268,17269,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.1151829,8.0802145,0,4,8,-66.98365,-9,-9,-9,2021,9,0,35,0,1,1,0,12.492862,12.492862,.05,.05,0,0,0,0,0,0,0,0,0,2.1719062,0,53,54,57.16,56.15,8,4,2,0,0,1,9,5,1,530,1406150,866706.06,427033.19,-5984.2227,0,-79.506088,3493.1802 +7947,9668,17269,17268,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.4614906,8.7383852,0,4,-8,-37.247707,0,3,3,2021,11,0,10,75,1,0,0,67.947105,67.947105,.05,.05,0,0,0,0,0,0,0,0,0,1.5204035,0,57.16,56.15,53,54,8.333333333333334,4,2,0,0,11,9,5,1,530,1406150,866706.06,427033.19,-5984.2227,0,-79.506088,3493.1802 +7948,9669,17270,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,7.4562659,7.7543302,0,0,-951.74213,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,150.59251,0,0,1,0,1,0,7.5760818,48,34,-9,-9,5,3,4,0,0,0,12,3,1,604,144876.63,60448.098,0,0,0,0,1929.7577 +7948,9670,17271,-9,17270,-9,1,1,49,0,0,0,2,2,-9,0,3,0,0,0,0,0,-934.72064,0,2,2,2021,8,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,53.1,52.62,-9,-9,6.666666666666667,3,4,1,0,12,12,1,1,936,6899.9121,0,0,0,0,0,1179.7948 +7949,9671,17272,17273,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.7498403,7.7340469,0,2,2,35.686615,0,2,2,2021,3,0,35,35,1,0,0,7.1157665,7.1157665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41,39.03,8.333333333333334,1,1,0,0,1,5,4,0,1233.5,19438.641,-14989.267,183642.03,96157.5,19140.367,15403.272,1976.6516 +7949,9671,17273,17272,-9,-9,1,0,24,0,0,0,2,2,-9,0,3,7.3073921,7.2130051,0,2,-2,123.77625,-9,-9,-9,2021,9,2,25,0,1,2,0,8.125226,8.125226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41,39.03,57.06,57.76,6.666666666666667,1,1,0,0,0,5,4,0,1233.5,19438.641,-14989.267,183642.03,96157.5,19140.367,15403.272,1976.6516 +7950,9672,17274,17275,-9,-9,1,0,44,0,1,0,2,2,-9,0,5,8.3225784,8.5381222,0,11,-4,26.96699,0,2,2,2021,19,7,74,80,1,7,0,6.3757639,6.3757639,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.1,65.8,48.52,57.47,8.333333333333334,1,1,0,0,12,4,5,1,1272.6666,123129.81,50858.973,44269.75,50746.73,-1078.7941,384.52237,3829.9917 +7950,9672,17275,17274,-9,-9,1,1,48,0,1,0,2,2,-9,0,5,8.6290903,8.0956402,0,11,4,33.662876,0,3,3,2021,14,1,40,40,1,1,0,9.7620687,9.7620687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.52,57.47,36.1,65.8,8.333333333333334,1,1,0,0,12,4,5,1,1272.6666,123129.81,50858.973,44269.75,50746.73,-1078.7941,384.52237,3829.9917 +7950,9672,17276,-9,17274,17275,1,1,17,0,1,0,2,2,1,0,3,0,0,0,0,0,-905.60828,-9,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.14979148,0,43.12,58.55,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,1272.6666,123129.81,50858.973,44269.75,50746.73,-1078.7941,384.52237,3829.9917 +7951,9673,17277,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,5.7190638,5.7777424,0,0,-950.13599,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8673372,5.5664778,57.16,56.15,-9,-9,10,1,1,0,0,0,6,2,1,509,382614.06,-3166.4795,189525.61,0,0,0,1952.3584 +7952,9674,17278,17279,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,9.4035387,8.9868212,0,4,-1,-16.110893,0,-9,-9,2021,9,1,52,52,1,1,0,26.513933,26.513933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,55.36,51.57,10,1,1,0,0,4,6,5,1,533.66669,691073.81,407162.28,156702.84,13164.414,0,0,5755.0088 +7952,9674,17279,17278,-9,-9,1,0,41,0,1,0,1,1,-9,0,3,8.5241308,8.6684284,0,4,1,14.222522,0,1,2,2021,10,0,37,37,1,0,0,20.42631,20.42631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.69,57.47,8.333333333333334,1,1,0,0,12,6,5,1,533.66669,691073.81,407162.28,156702.84,13164.414,0,0,5755.0088 +7952,9674,17280,-9,-9,17278,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1138.5238,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,533.66669,691073.81,407162.28,156702.84,13164.414,0,0,5755.0088 +7953,9675,17281,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.7155952,8.4807396,0,0,0,-1003.0804,0,3,2,2021,31,11,32,32,1,11,0,15.529273,15.529273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.65,64.05,-9,-9,1.666666666666667,1,1,0,0,12,12,5,1,3566,1244469,893125.75,198387.17,0,0,0,1568.8612 +7954,9676,17282,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,7.5589705,7.6897221,0,0,-1021.6206,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,4.6324863,0,22.709103,2,1,1,0,0,7.3155727,58.9,40.21,-9,-9,10,1,1,0,0,0,9,3,1,357,1117450.9,185872.77,203324.25,0,0,0,1512.3461 +7955,9677,17283,17284,-9,-9,1,0,38,0,1,0,1,1,-9,0,5,8.366046,8.5810881,0,6,-2,70.622025,0,2,2,2021,10,1,28,28,1,1,0,23.467882,23.467882,0,0,0,0,0,0,0,0,1,1,0,0,0,44.39,63.4,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,456.33334,230969.98,86205.875,291703.81,114269.06,0,0,4260.4009 +7955,9677,17284,17283,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,8.5502558,8.5512152,0,6,2,-22.064905,0,2,2,2021,4,1,25,15,1,1,0,27.88134,27.88134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.39,63.4,8.333333333333334,1,1,0,0,7,12,5,1,456.33334,230969.98,86205.875,291703.81,114269.06,0,0,4260.4009 +7955,9677,17285,-9,17283,17284,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1115.3162,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,456.33334,230969.98,86205.875,291703.81,114269.06,0,0,4260.4009 +7956,9678,17286,-9,17288,17287,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1122.9446,-9,2,1,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.97,46.18,-9,-9,8.333333333333334,2,3,0,0,0,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7956,9678,17287,17288,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.2161484,8.1083908,0,21,4,-73.512863,0,-9,-9,2021,12,0,54,60,1,0,0,6.7333064,6.7333064,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.41,42.78,60.14,46.44,1.666666666666667,2,3,0,0,8,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7956,9678,17288,17287,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.8884764,8.2943134,0,21,-4,4.0487537,0,2,2,2021,7,1,30,35,1,1,0,13.260909,13.260909,0,0,0,0,0,0,0,0,1,1,0,0,0,60.14,46.44,45.41,42.78,8.333333333333334,2,3,0,0,7,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7956,9678,17289,-9,17288,17287,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.6496,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,11,4,1,498,239149.94,2362.021,171901.61,142567.69,2701.9824,0,2713.9497 +7957,9679,17290,-9,17291,17292,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-930.79639,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,1,0,748,69160.273,0,0,0,0,0,2072.2734 +7957,9679,17291,17292,-9,-9,1,0,26,1,1,0,2,2,-9,1,2,0,0,0,6,-2,0,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.61,36.14,49.04,55.86,1.666666666666667,1,1,1,0,0,7,1,0,748,69160.273,0,0,0,0,0,2072.2734 +7957,9679,17292,17291,-9,-9,1,1,28,1,1,0,3,3,-9,1,3,0,0,0,6,2,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.04,55.86,33.61,36.14,5,1,1,1,0,2,7,1,0,748,69160.273,0,0,0,0,0,2072.2734 +7958,9680,17293,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.0763397,8.2942419,0,0,0,-994.83441,0,2,2,2021,6,0,40,43,1,0,0,9.2513952,9.2513952,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,1123,158753.83,-76408.32,137631.95,58652.203,9611.3281,0,1323.3605 +7959,9681,17294,-9,-9,-9,1,1,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1018.5065,0,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.636168,0,51,56,-9,-9,7,4,5,1,0,0,8,1,0,238,0,0,0,0,0,0,1066.7708 +7960,9682,17295,17296,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.4686613,8.2850409,0,4,-5,25.251621,0,3,3,2021,9,2,37,39,1,2,0,17.265833,17.265833,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.89,30.4,51,49,8.333333333333334,1,1,0,0,9,8,4,1,410.5,1338598.8,759094.25,635418.5,0,2269.8418,0,2694.02 +7960,9682,17296,17295,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.0683088,8.0144987,0,4,5,1.1887597,0,3,3,2021,10,0,32,39,1,1,0,9.1837254,9.1837254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,50.89,30.4,7,1,1,0,0,1,8,4,1,410.5,1338598.8,759094.25,635418.5,0,2269.8418,0,2694.02 +7961,9683,17297,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.9752445,8.8050508,0,0,-932.78888,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3666372,8.7372475,59.32,46.98,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,3521,942447.5,124153.27,500787.44,0,0,0,5406.1123 +7962,9684,17298,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,7.0653133,7.2087283,0,0,0,-1002.1498,0,-9,3,2021,30,11,26,15,1,11,0,6.0384555,6.0384555,0,0,0,0,0,0,0,0,1,1,0,0,0,12.11,63.22,-9,-9,1.666666666666667,1,1,0,1,8,10,2,0,937.5,68706.063,0,0,0,-848.32483,0,541.23804 +7962,9684,17299,-9,17298,-9,1,1,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-971.93268,-9,2,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,5,1,1,0,0,0,10,2,0,937.5,68706.063,0,0,0,-848.32483,0,541.23804 +7963,9685,17300,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,4,0,0,0,0,0,-999.74036,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.1,47.5,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,463,12367.813,0,0,0,23356.162,0,866.95233 +7964,9686,17301,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.7065439,8.6228523,0,0,0,-990.05914,-9,2,1,2021,13,1,44,0,1,1,0,16.819323,16.819323,0,0,0,0,0,0,0,0,0,0,0,1.1665708,0,46.45,51.59,-9,-9,5,1,1,0,0,12,10,5,1,719,0,0,0,0,0,0,1834.4706 +7965,9687,17302,-9,17304,17305,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.0645,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7965,9687,17303,-9,17304,17305,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.7743,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7965,9687,17304,17305,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,0,0,0,1,-1,-73.893967,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,53.59,49.64,8.333333333333334,1,1,0,0,0,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7965,9687,17305,17304,-9,-9,1,1,25,1,2,0,2,2,-9,0,3,8.5062208,8.4101458,0,1,1,62.388771,-9,-9,-9,2021,9,0,78,0,1,0,0,5.7615442,5.7615442,0,0,0,0,0,0,0,0,1,1,0,0,0,53.59,49.64,46.33,55.93,10,1,1,0,0,7,5,3,0,384.25,113238.8,0,0,0,-210.6871,0,2012.2102 +7966,9688,17306,17307,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.0419197,7.8968186,0,13,-19,59.251431,0,-9,-9,2021,11,0,20,0,1,0,0,16.798744,16.798744,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,49.46,41.06,30.23,3.333333333333333,2,3,0,0,8,6,3,1,1217.5,1443403.3,844114.94,169069.36,0,0,0,1891.0897 +7966,9688,17307,17306,-9,-9,1,1,67,0,2,0,2,2,-9,0,1,0,7.2358761,7.3464055,13,19,110.99574,0,-9,-9,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4030061,41.06,30.23,48.6,49.46,5,1,1,0,0,10,6,3,1,1217.5,1443403.3,844114.94,169069.36,0,0,0,1891.0897 +7967,9689,17308,17309,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.4611254,8.6271458,0,1,9,-97.238808,-9,-9,-9,2021,9,0,46,0,1,0,0,11.117063,11.117063,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.34,56.4,10,1,1,0,0,7,6,5,0,3422,-151962.2,0,0,0,19630.729,0,3539.5896 +7967,9689,17309,17308,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,7.8889017,7.9461956,0,1,0,11.534332,0,2,2,2021,9,1,37,33,1,1,0,10.260523,10.260523,0,0,0,0,0,0,0,0,0,0,0,.072360575,0,50.34,56.4,54.1,59.11,8.333333333333334,1,1,0,0,5,6,5,0,3422,-151962.2,0,0,0,19630.729,0,3539.5896 +7968,9690,17310,-9,-9,-9,1,0,38,0,4,0,3,3,-9,1,2,0,5.8349447,5.7522459,0,0,-908.07715,0,3,3,2021,24,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,74.5,1,1,0,5.7547107,0,21.55,51.46,-9,-9,3.333333333333333,1,1,0,0,0,5,2,0,1073.6666,-31722.041,15436.604,0,0,-923.55249,0,3771.439 +7968,9690,17311,-9,17310,17315,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1071.8492,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,1073.6666,-31722.041,15436.604,0,0,-923.55249,0,3771.439 +7968,9690,17312,-9,17310,17315,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-937.85199,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,1073.6666,-31722.041,15436.604,0,0,-923.55249,0,3771.439 +7968,9691,17313,-9,17310,17315,1,1,19,0,4,0,2,2,1,0,5,0,0,0,0,0,-1008.9828,-9,3,2,2021,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,54.25,53.57,-9,-9,6.666666666666667,1,1,1,0,0,5,2,0,254,0,0,0,0,0,0,635.06433 +7968,9692,17314,-9,17310,17315,1,0,18,0,4,1,2,0,-9,0,3,0,0,0,0,0,-973.21307,-9,3,2,2021,16,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,41.99,53.75,-9,-9,3.333333333333333,1,1,0,0,0,5,1,0,2127,235507.98,0,0,0,948.90497,0,-244.03854 +7968,9693,17315,-9,-9,-9,1,1,36,0,4,0,2,2,-9,1,2,0,0,0,0,0,-919.88171,0,-9,-9,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,25.99,49.01,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,531,-16263.624,116825.91,0,0,0,0,1775.6138 +7969,9694,17316,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.7740297,6.8628149,0,0,-1056.835,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,4.8810663,0,46.529282,0,1,1,0,5.1696715,6.891573,62.65,38.83,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,608,681552,133663.22,345035.66,0,0,0,1586.502 +7970,9695,17317,17318,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,37,-4,-9.846446,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.3791096,0,54.96,53.17,57.92,51.82,10,1,1,0,0,0,7,2,1,1493,697793.63,219610.63,297930,0,0,0,1443.171 +7970,9695,17318,17317,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,6.5030131,6.3850179,37,4,-22.278522,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.44984871,6.629889,57.92,51.82,54.96,53.17,10,1,1,0,0,0,7,2,1,1493,697793.63,219610.63,297930,0,0,0,1443.171 +7971,9696,17319,17320,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1037083,7.5476103,0,7,-3,-50.198071,0,2,2,2021,13,2,34,25,1,2,0,7.4769492,7.4769492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.84,50.73,57.57,49.69,10,1,1,0,0,8,11,4,1,866,864750.44,688164,111332.05,0,5345.8691,0,1972.7203 +7971,9696,17320,17319,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.9441652,8.3358307,6.1224518,7,3,-45.050407,0,3,3,2021,9,0,60,60,1,0,0,4.6697164,4.6697164,.05,.05,0,0,0,0,0,2,0,0,0,0,6.5807333,57.57,49.69,42.84,50.73,5,1,1,0,0,8,11,4,1,866,864750.44,688164,111332.05,0,5345.8691,0,1972.7203 +7972,9697,17321,-9,17323,17324,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.42676,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7972,9697,17322,-9,17323,17324,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.50336,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7972,9697,17323,17324,-9,-9,1,0,33,0,2,0,1,1,-9,0,1,7.6350403,7.6995711,0,11,-3,48.016769,0,2,2,2021,8,0,37,23,1,0,0,6.9393349,6.9393349,0,0,0,0,0,0,0,2,1,1,0,0,0,54.89,24.95,51,56,6.666666666666667,1,1,0,0,6,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7972,9697,17324,17323,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5635405,8.4547234,0,6,3,-173.45076,0,-9,-9,2021,10,0,50,60,1,1,0,13.372376,13.372376,.05,.05,0,0,0,0,0,0,1,1,0,.23396862,0,51,56,54.89,24.95,7,1,1,0,0,1,2,4,1,1125,272871.38,110720.25,205046.09,87436.453,0,0,3356.8682 +7973,9698,17325,17326,-9,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,7,-1,0,0,-9,-9,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.56,39.16,39.88,26.59,1.666666666666667,1,1,0,0,0,1,1,0,364.5,120036.56,0,0,0,12129.803,0,2092.937 +7973,9698,17326,17325,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,7,1,0,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.88,26.59,15.56,39.16,3.333333333333333,1,1,0,0,0,1,1,0,364.5,120036.56,0,0,0,12129.803,0,2092.937 +7974,9699,17327,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.8381739,8.6880865,0,0,0,-997.39392,0,2,3,2021,9,0,55,67,1,0,0,12.798645,12.798645,.05,.05,0,0,0,0,0,0,0,0,0,5.7370162,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,880,357956.16,82609.148,266569.44,44565.09,0,0,1960.1375 +7975,9700,17328,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-932.67688,-9,-9,-9,2021,4,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,69.45,42.54,-9,-9,10,1,1,0,0,2,2,1,1,363,-55651.938,0,0,0,0,0,0 +7976,9701,17329,17330,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,4.679853,5.0546536,8,4,159.44656,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2222323,4.8716245,54.95,45.15,47.64,48.39,8.333333333333334,1,1,0,0,0,4,2,1,1397,207776.28,98289.719,96210.141,0,0,0,1838.9927 +7976,9701,17330,17329,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,5.4777207,5.3830795,8,-4,3.5373073,0,1,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5316272,47.64,48.39,54.95,45.15,6.666666666666667,1,1,0,0,5,4,2,1,1397,207776.28,98289.719,96210.141,0,0,0,1838.9927 +7977,9702,17331,-9,17334,17333,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-900.50781,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7977,9702,17332,-9,17334,17333,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-906.55084,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7977,9702,17333,17334,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.1221094,8.2100916,0,10,2,-97.413406,0,2,2,2021,12,0,45,43,1,0,0,9.2658997,9.2658997,.05,.05,0,0,0,0,0,0,1,1,0,8.177227,0,59.29,49.68,53.23,47.51,8.333333333333334,1,1,0,0,11,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7977,9702,17334,17333,-9,-9,1,0,44,0,2,0,1,1,-9,0,2,9.5922728,9.7978897,0,10,-2,-160.21071,0,3,2,2021,11,0,35,30,1,0,0,43.958282,43.958282,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,59.29,49.68,8.333333333333334,1,1,0,0,10,2,5,1,611.75,749314.69,135412,624143.69,144949.81,0,5613.6816,7347.1797 +7978,9703,17335,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,8.0025682,7.870008,0,0,-1001.7905,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,1.8251588,0,17.574938,0,1,1,0,8.3704605,6.3217802,66.14,26.06,-9,-9,8.333333333333334,1,1,0,0,0,7,4,0,316,915160.5,141294.56,409731.19,0,0,0,2549.7063 +7979,9704,17336,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1082.3208,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.78,26.65,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,44,134598.75,0,0,0,0,0,2113.99 +7980,9705,17337,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.3063917,8.3784027,0,0,-846.30078,0,3,2,2021,26,11,0,0,4,11,0,0,0,0,0,0,1,2.7148373,0,26.644384,0,1,1,0,5.7915249,8.5837049,36.02,37.9,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,317,1290729.8,514696.41,544214.31,0,0,0,2714.4502 +7981,9706,17338,17339,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,5.9077559,5.6026335,12,-4,51.612892,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9114838,5.4521012,57.33,53.46,46.69,35.01,8.333333333333334,1,1,0,0,7,10,4,1,305,1274961.5,634653.63,383224,0,0,0,2840.5989 +7981,9706,17339,17338,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,8.6241064,8.6866779,12,4,-4.1421952,0,3,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.8772049,8.2879477,46.69,35.01,57.33,53.46,8.333333333333334,1,1,0,0,10,10,4,1,305,1274961.5,634653.63,383224,0,0,0,2840.5989 +7982,9707,17340,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.3351569,7.0839834,0,0,0,-985.31641,0,-9,2,2021,6,0,25,25,1,0,0,7.1623898,7.1623898,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.3,55.6,-9,-9,8.333333333333334,1,1,0,0,12,13,2,0,204.5,-26659.328,6995.8672,0,0,1025.7139,665.1709,1339.5583 +7982,9707,17341,-9,17340,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.6897,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,2,0,204.5,-26659.328,6995.8672,0,0,1025.7139,665.1709,1339.5583 +7983,9708,17342,17343,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.5303488,8.488431,0,3,8,-44.978714,0,-9,-9,2021,9,0,50,40,1,1,0,9.5104647,9.5104647,.05,.05,0,0,0,0,0,0,1,1,0,4.9248095,0,52,55,44.63,18.77,8,1,1,0,0,1,9,4,0,284,1087752.3,728611.31,348815.69,0,0,0,1754.7238 +7983,9708,17343,17342,-9,-9,1,0,42,0,0,0,1,1,-9,1,2,0,0,0,7,-8,-125.8387,0,2,2,2021,14,4,0,55,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.63,18.77,52,55,3.333333333333333,1,1,0,1,11,9,4,0,284,1087752.3,728611.31,348815.69,0,0,0,1754.7238 +7984,9709,17344,17345,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,54,5,10.580888,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,9.1182508,0,7,1,1,0,0,0,55.17,31.58,37.78,22.44,3.333333333333333,1,1,0,1,8,5,3,1,217.5,1219040.5,408045.91,274146.38,0,0,0,1445.3818 +7984,9709,17345,17344,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.9905119,7.9442239,54,-5,61.176445,0,3,3,2021,31,11,0,0,4,11,0,0,0,0,0,0,1,1.6160225,49.017262,28.495699,27,1,1,0,8.0600138,7.5445685,37.78,22.44,55.17,31.58,3.333333333333333,1,1,0,0,2,5,3,1,217.5,1219040.5,408045.91,274146.38,0,0,0,1445.3818 +7985,9710,17346,17347,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,9.044342,8.8471289,0,8,0,23.083513,0,2,2,2021,5,1,44,41,1,1,0,21.279787,21.279787,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,51.77,58.57,5,1,1,0,0,9,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7985,9710,17347,17346,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.1084909,8.9568272,0,8,0,-23.526718,0,3,3,2021,1,0,40,37,1,0,0,28.45257,28.45257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,46.5,58.26,6.666666666666667,1,1,0,1,9,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7985,9710,17348,-9,17346,17347,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.60132,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7985,9710,17349,-9,17346,17347,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.2964,-9,1,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.9,60.31,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,626.25,863139.94,250470.69,871535.38,271658.97,0,0,5427.4258 +7986,9711,17350,17351,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,8.692791,8.637084,0,2,6,.64450926,0,-9,-9,2021,7,0,45,39,1,0,0,15.026492,15.026492,.05,.05,0,0,0,0,0,0,1,1,0,7.0355501,0,52.31,58.29,51.79,30.21,10,1,1,0,0,15,4,5,1,810.5,395042.69,146719.47,252808.5,0,0,0,6919.1377 +7986,9711,17351,17350,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,8.4180965,8.9038601,2,-6,10.234913,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.6361351,8.4649115,51.79,30.21,52.31,58.29,8.333333333333334,1,1,0,0,0,4,5,1,810.5,395042.69,146719.47,252808.5,0,0,0,6919.1377 +7987,9712,17352,17353,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.9319334,6.5238013,11,2,61.397533,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7806501,43.41,51.96,48.97,47.62,6.666666666666667,1,1,0,0,9,4,2,1,882.5,270823.38,145008.84,143117.06,0,0,0,1146.226 +7987,9712,17353,17352,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-2,-55.727196,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.97,47.62,43.41,51.96,8.333333333333334,1,1,0,0,0,4,2,1,882.5,270823.38,145008.84,143117.06,0,0,0,1146.226 +7988,9713,17354,17355,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,45,-8,0,0,3,3,2021,10,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6869545,0,49.34,47.5,58.46,39.69,8.333333333333334,1,1,0,0,4,13,1,1,626,-44668.688,0,0,0,0,0,933.33496 +7988,9713,17355,17354,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,45,8,0,0,3,3,2021,8,0,0,30,4,0,0,0,0,0,0,0,1,0,41.607208,0,0,1,1,0,0,0,58.46,39.69,49.34,47.5,6.666666666666667,1,1,0,0,11,13,1,1,626,-44668.688,0,0,0,0,0,933.33496 +7989,9714,17356,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,8.2952032,7.6841836,0,0,0,-1146.2091,0,-9,-9,2021,9,1,45,45,1,1,0,7.9260283,7.9260283,0,0,0,0,0,0,0,0,0,0,0,0,0,42.77,58.91,-9,-9,8.333333333333334,1,1,0,0,3,6,4,1,378,-189291.66,0,0,0,0,0,1485.8069 +7990,9715,17357,17358,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,10,9,-32.572697,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,27.50325,39.659004,254.18993,0,1,1,0,2.156539,0,20.73,25.8,43.28,48.9,1.666666666666667,1,1,0,1,0,12,3,1,179.5,647743.75,428053.69,198879.11,0,0,0,2438.8059 +7990,9715,17358,17357,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,7.9343796,8.0261278,0,10,0,66.820908,0,3,3,2021,9,0,44,35,1,0,0,5.7073631,5.7073631,0,0,0,0,0,0,0,42,1,1,0,2.1520932,0,43.28,48.9,20.73,25.8,6.666666666666667,2,3,0,1,11,12,3,1,179.5,647743.75,428053.69,198879.11,0,0,0,2438.8059 +7991,9716,17359,17360,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.340313,8.1616392,0,2,-1,-23.086906,-9,-9,-9,2021,12,0,38,0,1,0,0,11.410289,11.410289,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.83,57.2,8.333333333333334,1,1,0,0,5,4,5,1,357,72502.609,1224.499,152364.09,108815.27,7389.3296,0,2670.52 +7991,9716,17360,17359,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.5339699,8.5146227,0,2,1,170.38971,0,-9,-9,2021,11,0,38,43,1,0,0,12.477544,12.477544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,5,4,5,1,357,72502.609,1224.499,152364.09,108815.27,7389.3296,0,2670.52 +7992,9717,17361,17362,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,3.1181712,3.1820242,31,9,-24.456352,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9986625,3.9685805,53.5,53.7,57.16,56.15,10,1,1,0,0,0,7,3,1,390.5,679621.88,470920.5,237859.52,0,0,0,1823.6292 +7992,9717,17362,17361,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.6018167,7.616076,31,0,83.606934,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4675875,7.5470476,57.16,56.15,53.5,53.7,10,1,1,0,0,5,7,3,1,390.5,679621.88,470920.5,237859.52,0,0,0,1823.6292 +7993,9718,17363,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,6.6195226,6.5539532,0,0,-1025.2028,0,3,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4570146,7.0753679,58,52,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1657,575097.69,190074.56,235642.02,0,0,0,1562.1414 +7994,9719,17364,17365,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-11.93593,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9890494,0,54.96,53.17,64.40000000000001,42,8.333333333333334,1,1,0,0,0,12,2,1,595,385311.88,212060.55,144422.02,0,3255.6543,0,1477.981 +7994,9719,17365,17364,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.1205034,7.270937,9,3,53.249584,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5578504,7.2534599,64.40000000000001,42,54.96,53.17,10,1,1,0,0,0,12,2,1,595,385311.88,212060.55,144422.02,0,3255.6543,0,1477.981 +7995,9720,17366,17367,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.4300871,8.0564337,0,9,-2,-39.679035,0,2,1,2021,11,0,37,0,1,0,0,14.213171,14.213171,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52.01,48.98,5,1,1,0,0,12,7,4,1,875.66669,-96167.313,68884.445,0,0,0,2275.2444,2050.9097 +7995,9720,17367,17366,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.0042639,7.9645147,0,9,2,-156.55762,0,2,2,2021,7,0,28,31,1,0,0,11.497692,11.497692,.05,.05,0,0,0,0,0,0,1,1,0,2.2650502,0,52.01,48.98,46.08,57.2,6.666666666666667,1,1,0,0,11,7,4,1,875.66669,-96167.313,68884.445,0,0,0,2275.2444,2050.9097 +7995,9720,17368,-9,17367,17366,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,875.66669,-96167.313,68884.445,0,0,0,2275.2444,2050.9097 +7995,9721,17369,-9,17367,17366,1,1,18,0,1,0,2,2,1,0,4,6.9725513,6.9258533,0,0,0,-1014.932,-9,2,2,2021,10,0,47,0,1,0,1,2.6912024,2.6912024,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,517,192174.89,0,0,0,0,257.65961,293.78674 +7996,9722,17370,17371,17372,-9,1,1,34,0,0,0,1,1,-9,0,3,9.3777208,9.4187002,0,5,6,-42.375092,0,3,2,2021,12,1,40,41,1,1,0,33.245571,33.245571,0,0,0,0,0,0,0,0,1,1,0,9.3788815,0,55.19,46.38,52.48,54.33,8.333333333333334,2,3,0,0,9,8,5,0,1235,197098.23,21464.656,268988.56,234681.36,0,0,8917.2246 +7996,9722,17371,17370,-9,-9,1,0,28,0,0,0,1,1,1,0,4,8.77596,8.5142345,0,5,-6,41.791294,-9,-9,-9,2021,9,0,37,0,1,0,0,16.133823,16.133823,0,0,0,0,0,0,0,14.5,1,1,0,4.9278326,0,52.48,54.33,55.19,46.38,8.333333333333334,2,3,0,0,4,8,5,0,1235,197098.23,21464.656,268988.56,234681.36,0,0,8917.2246 +7996,9723,17372,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.1498551,6.3596554,0,0,-963.02954,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1977901,52,45,-9,-9,8,2,3,0,0,0,8,2,0,1209,377836.88,232739.52,350688.19,0,0,0,1345.108 +7997,9724,17373,-9,-9,-9,1,0,77,0,2,0,2,2,-9,0,4,0,6.3048978,6.4445648,0,0,-953.87408,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.776053,6.411284,58.15,52.91,-9,-9,0,1,1,0,0,0,2,2,1,204,252496.11,28503.207,233168.5,0,0,0,1316.7533 +7997,9725,17374,-9,17375,17376,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.4983,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,516.66669,1094886.1,892116.06,451904.63,305926.28,12214.629,0,3781.8123 +7997,9725,17375,17376,17373,-9,1,0,47,0,2,0,2,2,-9,0,5,8.1646261,8.2044945,0,21,-2,1.7706422,-9,2,2,2021,10,0,45,0,1,0,0,10.028905,10.028905,.05,.05,0,0,0,0,0,0,1,1,0,3.7360151,0,49.17,58.56,32.01,53.98,8.333333333333334,1,1,0,0,13,2,4,1,516.66669,1094886.1,892116.06,451904.63,305926.28,12214.629,0,3781.8123 +7997,9725,17376,17375,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.8341427,8.7193661,0,17,2,110.23605,0,2,2,2021,8,0,45,39,1,0,0,18.823009,18.823009,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,32.01,53.98,49.17,58.56,8.333333333333334,1,1,0,0,15,2,4,1,516.66669,1094886.1,892116.06,451904.63,305926.28,12214.629,0,3781.8123 +7998,9726,17377,17378,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.2145844,8.0924101,0,9,3,-89.724075,0,2,2,2021,6,0,37,37,1,0,0,10.464822,10.464822,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.86,55.31,38.34,62.12,8.333333333333334,1,1,0,0,10,11,5,1,586.5,664372.75,586636.63,147470.95,25248.871,0,0,2491.0049 +7998,9726,17378,17377,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.4447985,8.5768051,0,9,-3,-41.07439,0,2,2,2021,12,0,35,35,1,0,0,19.284445,19.284445,0,0,0,0,0,0,0,0,0,0,0,4.5274782,0,38.34,62.12,49.86,55.31,3.333333333333333,1,1,0,0,8,11,5,1,586.5,664372.75,586636.63,147470.95,25248.871,0,0,2491.0049 +7998,9727,17379,-9,17378,17377,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1084.1927,-9,1,2,2021,5,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,10,1,1,0,0,0,11,1,1,1289,-52948.648,0,0,0,0,0,169.49542 +7999,9728,17380,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1031.311,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,1,0,6,2,0,3270,11859.891,0,0,0,0,0,1271.5081 +8000,9729,17381,-9,17384,17383,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-977.37567,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8000,9729,17382,-9,17384,17383,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-938.50317,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8000,9729,17383,17384,-9,-9,1,1,32,1,2,0,2,2,-9,1,3,8.6374311,8.2254429,0,5,1,112.17192,0,-9,-9,2021,7,0,42,42,1,0,0,11.976869,11.976869,.05,.05,0,0,0,0,0,2,1,1,0,3.0869288,0,52.4,52.91,37.46,55.55,8.333333333333334,1,1,0,0,12,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8000,9729,17384,17383,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,8.2427092,8.1799259,0,5,-1,-33.533443,0,-9,-9,2021,12,1,38,41,1,1,0,10.506119,10.506119,0,0,0,0,0,0,0,2,1,1,0,2.4136236,0,37.46,55.55,52.4,52.91,6.666666666666667,1,1,0,0,9,4,4,1,578.5,414920.75,123504.02,276064.44,76179.164,0,0,3080.4446 +8001,9730,17385,17388,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.0350294,7.6971388,0,11,0,-95.754372,0,-9,-9,2021,11,0,34,34,1,0,0,10.947788,10.947788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,33.7,54.1,6.666666666666667,2,3,0,0,12,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9730,17386,-9,17388,17385,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.70264,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9730,17387,-9,17388,17385,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-952.75464,-9,2,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,0,0,0,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9730,17388,17385,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.1131716,6.9137955,0,22,0,-29.829023,0,3,2,2021,12,1,15,10,1,1,0,9.1904879,9.1904879,.05,.05,0,0,0,0,0,42,1,1,0,0,0,33.7,54.1,52,54.51,6.666666666666667,2,3,0,0,7,9,3,1,532.75,34049.535,37402.586,0,0,0,0,3306.7051 +8001,9731,17389,-9,17388,17385,1,1,18,0,2,0,2,2,-9,0,4,6.8370156,6.4719296,0,0,0,-1039.8531,-9,2,2,2021,11,1,10,0,1,1,1,7.5014005,7.5014005,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,0,1,9,2,1,1283,-50396.461,0,0,0,0,0,937.67847 +8002,9732,17390,17391,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.607018,6.2022376,53,0,-4.6725354,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3889084,6.7032752,49.26,54.61,62.42,42.94,6.666666666666667,1,1,0,0,7,9,2,1,352.5,221395.58,172980.09,199633.8,0,0,0,782.12848 +8002,9732,17391,17390,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,53,0,-82.68293,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,42.94,49.26,54.61,8.333333333333334,1,1,0,0,0,9,2,1,352.5,221395.58,172980.09,199633.8,0,0,0,782.12848 +8003,9733,17392,17393,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.5216808,8.5952644,0,11,-3,31.805946,0,3,2,2021,16,6,37,37,1,6,0,13.936622,13.936622,0,0,0,0,0,0,0,2,0,0,0,3.6397314,0,21.24,59.82,43.14,35.81,5,1,1,0,0,11,10,5,1,687.5,60306.531,-26020.941,302874.47,209828.22,37954.777,0,4597.3555 +8003,9733,17393,17392,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.8267679,9.17202,6.0405774,11,3,7.8609381,0,3,2,2021,18,6,37,40,1,6,0,19.101805,19.101805,0,0,0,0,0,0,0,2,0,0,0,6.3727903,0,43.14,35.81,21.24,59.82,5,1,1,0,0,12,10,5,1,687.5,60306.531,-26020.941,302874.47,209828.22,37954.777,0,4597.3555 +8004,9734,17394,17396,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.7386541,8.3538313,0,3,-2,-29.26487,0,-9,-9,2021,10,0,38,49,1,0,0,16.291475,16.291475,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,10,11,5,1,560,1348495.8,1260648,109743.44,51096.215,0,0,3642.6948 +8004,9734,17395,-9,17394,17396,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.9657,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,560,1348495.8,1260648,109743.44,51096.215,0,0,3642.6948 +8004,9734,17396,17394,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.4597139,8.3620262,0,3,2,36.619995,0,2,2,2021,7,0,42,41,1,0,0,10.068789,10.068789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,8,11,5,1,560,1348495.8,1260648,109743.44,51096.215,0,0,3642.6948 +8005,9735,17397,17398,-9,-9,1,0,46,0,0,0,1,1,-9,0,2,8.874136,8.7020378,0,27,0,51.610199,0,2,3,2021,25,10,45,42,1,10,0,17.817261,17.817261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.42,42.75,48.46,41.43,8.333333333333334,1,1,0,0,11,4,5,1,4275.5,154939.09,34926.051,64531.898,64961.734,856.56946,741.16815,3489.251 +8005,9735,17398,17397,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.2763939,8.3056183,0,27,0,-116.45406,0,1,2,2021,9,0,38,38,1,0,0,11.577967,11.577967,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.46,41.43,34.42,42.75,6.666666666666667,1,1,0,0,12,4,5,1,4275.5,154939.09,34926.051,64531.898,64961.734,856.56946,741.16815,3489.251 +8005,9736,17399,-9,17397,17398,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1100.9135,-9,1,2,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.08,58.42,-9,-9,5,1,1,0,0,0,4,1,1,346,-5174.3203,0,0,0,0,0,0 +8006,9737,17400,-9,17402,17401,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-806.01221,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,963.33331,214165.2,-24583.674,225455.86,33546.125,4472.8208,0,4049.4321 +8006,9737,17401,17402,-9,-9,1,1,33,0,1,0,1,1,-9,0,4,8.7780552,8.7972088,0,9,1,-43.05048,0,2,2,2021,9,0,57,62,1,0,0,17.989199,17.989199,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,4,5,0,963.33331,214165.2,-24583.674,225455.86,33546.125,4472.8208,0,4049.4321 +8006,9737,17402,17401,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,8.1068878,7.9599338,0,9,-1,54.42202,0,2,2,2021,10,1,30,27,1,1,0,9.3673639,9.3673639,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,0,963.33331,214165.2,-24583.674,225455.86,33546.125,4472.8208,0,4049.4321 +8007,9738,17403,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.5828619,7.6084538,0,0,0,-1004.3535,0,1,2,2021,11,0,30,30,1,0,0,5.6897511,5.6897511,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,425,58824.137,125337.93,0,0,0,0,1289.9999 +8008,9739,17404,17405,-9,-9,1,1,55,0,1,0,1,1,-9,0,5,9.1226912,9.2023926,0,10,-3,63.97176,0,3,1,2021,11,0,38,46,1,0,0,33.827526,33.827526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.79,63.29,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,698,783853,593418.31,333901.75,89351.328,13263.796,17308.068,5837.0908 +8008,9739,17405,17404,-9,-9,1,0,58,0,1,0,1,1,-9,0,5,8.778759,8.9193697,0,10,3,-137.3009,0,2,2,2021,6,0,35,35,1,0,0,27.10585,27.10585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,39.79,63.29,8.333333333333334,1,1,0,0,7,12,5,1,698,783853,593418.31,333901.75,89351.328,13263.796,17308.068,5837.0908 +8008,9739,17406,-9,17405,17404,1,0,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1012.6949,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,1,0,0,12,5,1,698,783853,593418.31,333901.75,89351.328,13263.796,17308.068,5837.0908 +8008,9740,17407,-9,17405,17404,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1056.8901,-9,1,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,160,4948.1499,0,0,0,0,0,0 +8009,9741,17408,17409,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.0564528,9.3921385,0,2,0,-117.34026,0,-9,-9,2021,9,0,63,63,1,0,0,19.490967,19.490967,.05,.05,0,0,0,0,0,0,0,0,0,3.5432043,0,48.28,60.18,41.3,60.77,8.333333333333334,1,1,0,0,4,5,5,1,1310.5,1271906.4,340024.69,503484.13,70632.188,0,0,8927.7988 +8009,9741,17409,17408,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,9.2048273,8.8323679,0,2,0,57.813896,0,1,2,2021,7,0,50,53,1,0,0,25.000597,25.000597,.05,.05,0,0,0,0,0,0,0,0,0,3.6004424,0,41.3,60.77,48.28,60.18,6.666666666666667,1,1,0,0,14,5,5,1,1310.5,1271906.4,340024.69,503484.13,70632.188,0,0,8927.7988 +8010,9742,17410,17411,-9,-9,1,1,29,1,1,0,2,2,-9,0,3,8.2809238,8.4498711,0,4,0,7.7485218,0,2,3,2021,9,0,46,47,1,0,0,14.389495,14.389495,0,0,0,0,0,0,0,0,1,1,0,2.2539649,0,57.33,53.46,51.77,58.57,8.333333333333334,1,1,0,0,12,5,4,1,471.66666,122799.35,-762.35547,257441.59,116859.86,0,8513.5,3893.2444 +8010,9742,17411,17410,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.0249805,7.9880753,0,4,0,-99.439972,0,-9,-9,2021,10,0,26,30,1,0,0,13.901711,13.901711,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,57.33,53.46,8.333333333333334,1,1,0,0,8,5,4,1,471.66666,122799.35,-762.35547,257441.59,116859.86,0,8513.5,3893.2444 +8010,9742,17412,-9,17411,17410,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.3065,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,4,1,471.66666,122799.35,-762.35547,257441.59,116859.86,0,8513.5,3893.2444 +8011,9743,17413,-9,17414,17415,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5984,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,758,311238.09,97981.969,139153.61,-2752.7761,0,0,2767.0872 +8011,9743,17414,17415,-9,-9,1,0,51,0,1,0,3,3,-9,0,4,8.0791922,8.0395107,0,5,1,155.0363,0,2,3,2021,7,0,55,50,1,0,0,6.7708426,6.7708426,.05,.05,0,0,0,0,0,0,1,1,0,5.0905447,0,55.19,54.26,55.91,39.23,8.333333333333334,1,1,0,0,14,4,4,1,758,311238.09,97981.969,139153.61,-2752.7761,0,0,2767.0872 +8011,9743,17415,17414,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.127429,8.1324282,0,5,-1,142.85048,0,2,3,2021,12,2,55,55,1,2,0,7.567349,7.567349,.05,.05,0,0,0,0,0,0,1,1,0,4.7881484,0,55.91,39.23,55.19,54.26,8.333333333333334,1,1,0,0,12,4,4,1,758,311238.09,97981.969,139153.61,-2752.7761,0,0,2767.0872 +8012,9744,17416,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.1111741,5.7128754,0,0,-966.29211,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7648182,6.1514401,57.16,56.15,-9,-9,10,1,1,0,0,2,11,2,1,1821,255257.81,92804.422,21066.824,0,0,0,617.73608 +8013,9745,17417,17418,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.9774957,8.9207764,8.6316385,6,5,-5.5053062,0,2,2,2021,6,0,33,32,1,0,0,9.8723879,9.8723879,.05,.05,0,0,0,0,0,7,0,0,0,5.8422217,7.9401073,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,7,11,5,1,1005.5,135264.58,134953.56,86336.125,-1797.3322,0,0,3251.4834 +8013,9745,17418,17417,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.803565,7.8392024,0,6,-5,70.246605,0,2,2,2021,8,0,33,33,1,0,0,7.3119669,7.3119669,.05,.05,0,0,0,0,0,7,0,0,0,.10341156,0,57.73,54.53,57.16,56.15,10,1,1,0,0,7,11,5,1,1005.5,135264.58,134953.56,86336.125,-1797.3322,0,0,3251.4834 +8014,9746,17419,17420,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,67,-1,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4601457,0,53,44,66.55,16.75,8,1,1,0,0,0,9,1,1,723.5,226987.88,71997.563,310302.75,0,14164.014,0,1688.9623 +8014,9746,17420,17419,-9,-9,1,1,88,0,0,0,3,3,-9,0,2,0,0,0,67,1,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,3.8796487,.47784126,22.487167,120,1,1,0,2.3789387,0,66.55,16.75,53,44,10,1,1,0,0,0,9,1,1,723.5,226987.88,71997.563,310302.75,0,14164.014,0,1688.9623 +8015,9747,17421,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,3,8.3312836,8.2400484,0,0,0,-1115.6011,0,2,1,2021,3,0,50,40,1,0,0,8.217433,8.217433,.05,.05,0,0,0,0,0,0,1,1,0,2.062717,0,53.47,52.37,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,700,265986.53,162794.64,172961.92,97221.836,0,0,1408.8119 +8016,9748,17422,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,2,8.2851267,8.4592552,0,0,0,-1034.168,0,2,2,2021,12,4,38,43,1,4,0,9.2606964,9.2606964,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.81,35.99,-9,-9,8.333333333333334,1,1,0,0,3,6,4,0,272,283990,-5191.9736,0,0,8154.2002,-243.86279,1670.8656 +8017,9749,17423,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.9526863,9.2299871,0,0,-904.31726,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1763182,8.6198368,58.01,33.98,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,204,417694.25,320090.5,91757.133,0,0,0,5390.0552 +8018,9750,17424,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4867048,8.4787846,0,0,0,-943.90167,0,2,2,2021,6,0,45,55,1,0,0,15.944152,15.944152,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,8,8,5,0,315,-84976.602,0,0,0,0,0,1027.517 +8019,9751,17425,17426,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,0,0,0,19,-1,12.37796,0,2,3,2021,17,6,0,35,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.991137,0,58.47,50.22,39,55.12,8.333333333333334,1,1,1,0,11,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8019,9751,17426,17425,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.9362822,8.0872421,0,18,1,-71.403503,0,3,2,2021,18,6,23,17,1,6,0,18.450436,18.450436,0,0,0,0,0,0,0,0,1,1,0,3.8957071,0,39,55.12,58.47,50.22,6.666666666666667,1,1,0,0,2,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8019,9751,17427,-9,17426,17425,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.6571,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8019,9751,17428,-9,17426,17425,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.0691,-9,2,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,3,1,339.5,362902.25,140639.97,268690.38,25812.793,0,0,1716.2158 +8020,9752,17429,17430,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,5.1024103,4.9629049,0,1,27,-55.359688,0,2,2,2021,10,0,10,20,1,1,0,1.5042958,1.5042958,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,49,58,8,1,1,0,1,6,5,2,0,456.5,15791.426,0,0,0,0,0,-66.982117 +8020,9752,17430,17429,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,1,-27,-27.701145,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,51,54,7,1,1,1,0,0,5,2,0,456.5,15791.426,0,0,0,0,0,-66.982117 +8021,9753,17431,-9,17432,17434,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.5696,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8021,9753,17432,17434,-9,-9,1,0,44,0,1,0,1,1,1,0,4,7.9653583,7.7683659,0,9,-5,-20.240429,-9,3,3,2021,7,1,37,0,1,1,0,9.3901539,9.3901539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,61.28,48.88,6.666666666666667,1,1,0,0,10,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8021,9753,17433,-9,17432,17434,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-933.90942,-9,1,3,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.19,63.78,-9,-9,5,1,1,0,0,0,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8021,9753,17434,17432,-9,-9,1,1,49,0,1,0,3,3,-9,1,3,7.7001047,8.0660152,0,9,5,-2.1089058,0,3,3,2021,1,0,43,0,1,0,0,5.5459704,5.5459704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,62.49,55.09,8.333333333333334,1,1,0,0,4,13,3,1,639.5,324540.06,134803.67,105790.91,40168.973,0,0,3412.9333 +8022,9754,17435,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.3388467,7.3213906,0,0,-1084.6243,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8802595,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,467,613574.56,137277.14,317294.88,0,0,0,1757.7323 +8023,9755,17436,17438,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,8.5270605,8.4122438,0,10,-1,16.312954,0,3,2,2021,0,0,30,0,1,0,0,13.688792,13.688792,0,0,0,0,0,0,0,0,1,1,0,6.80198,0,57.06,57.76,35.03,52.67,10,1,1,0,0,7,12,3,1,1525.3334,117235.45,69045.438,0,0,13230.215,1212.5348,3554.5032 +8023,9755,17437,-9,17436,17438,1,1,16,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1011.0583,-9,2,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,1,12,3,1,1525.3334,117235.45,69045.438,0,0,13230.215,1212.5348,3554.5032 +8023,9755,17438,17436,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,0,0,0,10,1,-136.90309,0,2,2,2021,22,9,0,36,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.6003094,0,35.03,52.67,57.06,57.76,5,1,1,1,0,10,12,3,1,1525.3334,117235.45,69045.438,0,0,13230.215,1212.5348,3554.5032 +8023,9756,17439,-9,17436,17438,1,1,18,0,1,0,2,2,1,0,5,0,0,0,0,0,-984.91254,-9,2,1,2021,14,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,377,94240.367,0,0,0,0,0,0 +8024,9757,17440,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,2,8.3494997,8.5359449,0,3,9,47.458515,0,2,2,2021,22,9,39,40,1,9,0,14.446103,14.446103,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.21,48.67,10.64,60.69,1.666666666666667,1,1,0,1,11,4,5,0,185,57621.914,155564.14,127216.8,113233.67,0,3232.8811,2097.6377 +8024,9758,17441,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,2,8.4268436,8.3554344,0,3,0,-3.9025104,-9,-9,-9,2021,24,8,36,0,1,8,0,13.830408,13.830408,.05,.05,0,0,0,0,0,0,0,0,0,5.5226493,0,10.64,60.69,24.21,48.67,1.666666666666667,1,1,0,1,13,4,5,0,240,-113658.51,-1024.053,0,0,0,627.96667,2476.6487 +8025,9759,17442,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,6.5710802,6.7515135,0,0,-1081.101,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4213662,6.5075474,44.99,43.48,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1176,835447.38,206810.91,641327.38,0,0,0,414.88284 +8026,9760,17443,17444,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,0,0,0,3,6,-31.593859,-9,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.54,35.38,43.97,53.97,8.333333333333334,1,1,1,0,5,11,4,0,713.33331,367078.03,36186.238,226576.42,213419.84,0,1628.8372,3436.646 +8026,9760,17444,17443,-9,-9,1,1,23,0,1,0,3,3,-9,0,3,8.79109,9.0287676,0,3,-6,-88.327606,-9,-9,-9,2021,8,0,30,0,1,0,0,28.084082,28.084082,.05,.05,0,0,0,0,0,0,1,1,0,1.9469087,0,43.97,53.97,60.54,35.38,8.333333333333334,1,1,0,0,1,11,4,0,713.33331,367078.03,36186.238,226576.42,213419.84,0,1628.8372,3436.646 +8026,9760,17445,-9,17443,17444,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.8314,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,0,713.33331,367078.03,36186.238,226576.42,213419.84,0,1628.8372,3436.646 +8027,9761,17446,17447,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.1832504,6.8269782,54,2,97.613235,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,1.0516449,0,1,1,0,1.4994062,7.1375484,52.39,28.63,46,37,6.666666666666667,1,1,0,0,10,2,2,1,546.5,479395.63,146855.3,205466.53,0,0,0,1051.3286 +8027,9761,17447,17446,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,54,-2,27.218479,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,37,52.39,28.63,8.333333333333334,1,1,0,0,0,2,2,1,546.5,479395.63,146855.3,205466.53,0,0,0,1051.3286 +8028,9762,17448,17451,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,7.857985,7.85289,0,6,1,-154.81396,0,-9,-9,2021,6,0,40,40,1,0,0,6.6656799,6.6656799,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.69,57.47,10,1,1,0,0,9,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8028,9762,17449,-9,17451,17448,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.6499,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8028,9762,17450,-9,17451,17448,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.8606,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8028,9762,17451,17448,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.7000418,9.0124588,0,18,-1,5.971405,0,2,2,2021,7,0,39,0,1,0,0,24.880726,24.880726,.05,.05,0,0,0,0,0,0,0,0,0,8.224453,0,54.69,57.47,62.49,55.09,8.333333333333334,1,1,0,0,2,7,4,1,1859.5,744594.44,259818.19,692321.56,221622.53,0,0,6027.7861 +8029,9763,17452,17453,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,7.9886632,7.841413,0,29,-3,-52.781567,0,-9,-9,2021,16,4,31,31,1,4,0,12.851096,12.851096,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.71,15.11,56.64,28.07,1.666666666666667,1,1,0,0,10,5,4,1,1114.5,733798,531680.25,150620.72,84774.297,8895.3379,0,3853.5535 +8029,9763,17453,17452,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,8.237752,8.3942738,0,29,3,-15.190721,0,-9,-9,2021,11,1,40,40,1,1,0,9.8814049,9.8814049,.05,.05,0,0,0,0,0,86,1,1,0,0,0,56.64,28.07,35.71,15.11,5,1,1,0,0,9,5,4,1,1114.5,733798,531680.25,150620.72,84774.297,8895.3379,0,3853.5535 +8030,9764,17454,17456,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.9664865,7.6051984,0,9,-1,15.485174,0,2,2,2021,11,0,42,41,1,0,0,7.469861,7.469861,0,0,0,0,0,0,0,0,1,1,0,0,0,38.1,47.48,58.32,50.22,6.666666666666667,1,1,0,0,10,5,3,1,718,325775.41,61509.746,380201.22,170240.22,0,0,2917.5588 +8030,9764,17455,-9,17456,17454,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1041.5256,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,5,3,1,718,325775.41,61509.746,380201.22,170240.22,0,0,2917.5588 +8030,9764,17456,17454,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,6.8540201,7.0468912,0,9,1,-136.77267,0,2,2,2021,7,0,16,16,1,0,0,8.4615021,8.4615021,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,38.1,47.48,10,1,1,0,0,3,5,3,1,718,325775.41,61509.746,380201.22,170240.22,0,0,2917.5588 +8030,9765,17457,-9,17456,17454,1,0,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-865.4787,-9,2,2,2021,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.12,56.68,-9,-9,8.333333333333334,1,1,0,0,4,5,1,1,1239,16757.598,0,0,0,0,0,287.38571 +8031,9766,17458,-9,17460,17459,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-967.98822,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8031,9766,17459,17460,-9,-9,1,1,39,2,2,0,2,2,-9,0,4,8.306201,8.431344,0,14,2,-63.67664,0,2,2,2021,7,0,37,37,1,0,0,13.691253,13.691253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.24,44.87,8.333333333333334,1,1,0,0,11,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8031,9766,17460,17459,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.6644182,8.8607101,0,14,-2,-119.7261,0,2,1,2021,17,5,42,36,1,5,0,19.175575,19.175575,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.24,44.87,51.83,57.2,8.333333333333334,1,1,0,0,9,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8031,9766,17461,-9,17460,17459,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.3304,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,5,1,1219.75,113190.74,33943.648,308488.31,185409.42,4637.395,0,3721.2979 +8032,9767,17462,17464,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,7.1874046,7.480916,0,3,0,-157.27708,0,2,2,2021,9,0,14,45,1,0,0,12.892984,12.892984,0,0,0,0,0,0,0,0,1,1,0,.22302303,0,59.04,54.12,54.79,55.86,8.333333333333334,1,1,0,0,8,2,4,1,352.66666,24765.268,-66235.367,95456.484,21040.973,0,0,1796.4116 +8032,9767,17463,-9,17462,17464,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.0682,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,352.66666,24765.268,-66235.367,95456.484,21040.973,0,0,1796.4116 +8032,9767,17464,17462,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.7005711,8.3186693,0,3,0,-16.605627,0,-9,-9,2021,6,0,15,15,1,0,0,31.443525,31.443525,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,59.04,54.12,8.333333333333334,1,1,0,0,8,2,4,1,352.66666,24765.268,-66235.367,95456.484,21040.973,0,0,1796.4116 +8033,9768,17465,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,4.8710485,4.881393,0,0,-1146.4659,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2613692,5.1403503,59.15,49.67,-9,-9,0,1,1,0,0,0,11,2,0,1372,37297.301,-96113.875,17103.307,0,0,-401.24268,1223.0773 +8034,9769,17466,17467,-9,-9,1,0,62,0,0,0,2,2,0,0,4,0,0,0,10,-1,-11.314109,-9,3,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,24.26,51.38,8.333333333333334,1,1,0,0,9,11,4,1,308,576079.5,156948.75,278759.66,0,0,5237.0508,2248.0029 +8034,9769,17467,17466,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.3285227,8.6615696,6.6755338,10,1,8.6789322,0,3,3,2021,20,8,37,37,1,8,0,14.285465,14.285465,0,0,0,0,0,0,0,0,0,0,0,0,7.065269,24.26,51.38,55.19,54.26,3.333333333333333,1,1,0,0,11,11,4,1,308,576079.5,156948.75,278759.66,0,0,5237.0508,2248.0029 +8035,9770,17468,17469,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,49,-4,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,4.8538671,0,22.689791,0,1,1,0,3.1443644,0,52.44,27.29,51.94,55.88,3.333333333333333,1,1,0,0,0,7,1,1,484,0,0,0,0,0,0,661.10742 +8035,9770,17469,17468,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,0,0,49,4,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8011746,0,51.94,55.88,52.44,27.29,8.333333333333334,1,1,0,0,5,7,1,1,484,0,0,0,0,0,0,661.10742 +8036,9771,17470,-9,17471,17472,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1026.5239,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8036,9771,17471,17472,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.4642086,8.1165047,0,26,-3,32.399544,0,2,2,2021,18,7,20,20,1,7,0,25.9629,25.9629,0,0,0,0,0,0,0,2,1,1,0,5.9033904,0,43.28,61.68,36.97,58.59,8.333333333333334,1,1,0,0,12,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8036,9771,17472,17471,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,0,0,0,26,3,-42.49041,1,2,2,2021,17,5,0,0,2,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5218706,0,36.97,58.59,43.28,61.68,3.333333333333333,1,1,0,0,13,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8036,9771,17473,-9,17471,17472,1,0,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1008.4244,-9,1,1,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2483803,0,28,68.3,-9,-9,1.666666666666667,1,1,0,0,0,1,3,1,1153.5,292912,113284.7,150978.75,110588.77,16917.803,0,2456.415 +8037,9772,17474,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,7.2974439,6.9707761,0,0,-1085.4635,0,-9,-9,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.844898,7.1438088,56.13,43.36,-9,-9,10,1,1,0,0,0,2,3,1,296,41890.738,203018.22,0,0,0,0,1556.7948 +8038,9773,17475,17476,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,6.8764286,6.4297867,30,5,24.844624,0,-9,2,2021,14,5,0,0,4,5,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.9604034,6.937314,52.86,24.73,42.73,51.79,8.333333333333334,1,1,0,0,11,12,4,1,1280,77237.859,151350.94,0,0,0,-37.158997,2640.5898 +8038,9773,17476,17475,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.0966568,8.3143616,6.9754391,27,-5,18.029373,0,2,1,2021,18,6,17,21,1,6,0,20.571463,20.571463,0,0,0,0,0,0,0,27,1,1,0,0,7.3342404,42.73,51.79,52.86,24.73,3.333333333333333,1,1,0,0,12,12,4,1,1280,77237.859,151350.94,0,0,0,-37.158997,2640.5898 +8039,9774,17477,17478,-9,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,6,-6,-65.892998,0,2,2,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.66,10.47,15.08,66.28,8.333333333333334,1,1,0,1,0,12,4,0,610,270082.91,289445.69,0,0,0,0,3182.3066 +8039,9774,17478,17477,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.2759113,8.2484903,6.3270683,6,6,15.166781,0,-9,-9,2021,31,12,49,49,1,12,0,9.07586,9.07586,.05,.05,0,0,0,0,0,27,1,1,0,6.4115,0,15.08,66.28,48.66,10.47,3.333333333333333,1,1,0,1,9,12,4,0,610,270082.91,289445.69,0,0,0,0,3182.3066 +8040,9775,17479,-9,17482,17480,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0874,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8040,9775,17480,17482,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.1965828,9.4333315,0,6,4,-64.05925,0,-9,-9,2021,12,0,60,54,1,0,0,16.710352,16.710352,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.42,52.94,51.24,58.84,8.333333333333334,1,1,0,0,14,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8040,9775,17481,-9,17482,17480,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.31335,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8040,9775,17482,17480,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,0,0,0,6,-4,-32.550377,0,2,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.3500662,0,51.24,58.84,46.42,52.94,8.333333333333334,1,1,0,0,9,13,5,1,517.25,474116.84,168574.75,328859.94,90444.523,5417.2207,19715.828,4642.5508 +8041,9776,17483,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.5678916,8.06106,6.8013206,0,0,-946.76471,0,2,1,2021,28,10,1,67,1,10,0,220.31474,220.31474,.05,.05,0,0,0,0,0,0,1,0,1,4.9163585,6.2303691,60.45,24.99,-9,-9,6.666666666666667,1,1,0,0,10,8,4,1,392,3439.9797,147094.27,0,0,0,259.14621,2749.3271 +8042,9777,17484,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.0269547,6.6541729,0,0,-1018.2648,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,3.1697121,12.474104,22.049023,0,1,1,0,1.3079849,6.8840032,52.88,18.4,-9,-9,8.333333333333334,1,1,0,0,3,7,2,0,528,308030.22,116704.16,199496.25,0,0,0,1962.1193 +8043,9778,17485,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,7.2869143,8.110631,7.6026545,0,0,-1077.3049,0,2,2,2021,14,2,15,15,1,2,0,11.480651,11.480651,.05,.05,0,0,0,0,0,0,1,1,0,7.4883599,7.5292716,50.96,24.42,-9,-9,1.666666666666667,1,1,0,1,5,9,4,0,1344,162005.78,67465.953,95233.648,-4049.7913,0,0,1788.0061 +8044,9779,17486,17487,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.7144699,8.7600842,0,25,0,-9.5716982,0,-9,-9,2021,8,0,20,20,1,0,0,39.719521,39.719521,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,47.56,36.3,8.333333333333334,1,1,0,0,10,4,5,1,2805.5,492931.44,341408.25,184693.09,14407.354,0,2228.7007,3295.8687 +8044,9779,17487,17486,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.8511133,7.8966041,0,24,0,35.17717,0,-9,-9,2021,11,2,5,5,1,2,0,53.388458,53.388458,.05,.05,0,0,0,0,0,0,0,0,0,3.1372232,0,47.56,36.3,57.06,57.76,8.333333333333334,1,1,0,0,8,4,5,1,2805.5,492931.44,341408.25,184693.09,14407.354,0,2228.7007,3295.8687 +8045,9780,17488,17489,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,0,8.0053825,7.7899728,7,2,127.46549,0,1,3,2021,8,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7254355,7.6233063,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,197.5,1899123.3,1778222.1,0,0,4498.0239,0,3148.3003 +8045,9780,17489,17488,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.7774806,8.221159,7.3579555,7,-2,-149.2607,0,2,1,2021,7,0,16,20,1,0,0,19.485369,19.485369,0,0,0,0,0,0,0,2,0,0,0,1.3602561,7.6903281,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,12,4,1,197.5,1899123.3,1778222.1,0,0,4498.0239,0,3148.3003 +8046,9781,17490,-9,17491,17492,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-928.67096,-9,1,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6796693,0,42.3,57.54,-9,-9,6.666666666666667,1,1,0,0,2,6,1,1,658,-44581.172,0,0,0,0,0,517.99817 +8046,9782,17491,17492,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.2287598,9.2682819,0,2,-7,-2.4249244,0,2,2,2021,11,0,57,47,1,0,0,21.328873,21.328873,0,0,0,0,0,0,0,0,0,0,0,4.4509554,0,60.06,37.11,49.75,50.01,8.333333333333334,1,1,0,0,9,6,5,1,1062.5,1080546.5,748204.88,284958.03,0,0,0,6974.1836 +8046,9782,17492,17491,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0943089,8.9229774,0,2,7,115.76668,0,-9,-9,2021,14,4,38,40,1,4,0,29.455523,29.455523,0,0,.05,0,0,0,0,0,0,0,0,7.7306643,0,49.75,50.01,60.06,37.11,8.333333333333334,1,1,0,0,9,6,5,1,1062.5,1080546.5,748204.88,284958.03,0,0,0,6974.1836 +8047,9783,17493,17494,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.8820639,8.018054,65,6,19.07164,0,-9,-9,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,26.958559,20.941795,231.43468,120,1,1,0,4.0927219,7.7541318,34.68,35.89,53,44,3.333333333333333,1,1,0,0,0,12,3,1,441.5,731345.75,250132.23,19404.887,0,0,0,2802.7148 +8047,9783,17494,17493,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,0,0,65,-6,41.368053,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53,44,34.68,35.89,8,1,1,0,0,0,12,3,1,441.5,731345.75,250132.23,19404.887,0,0,0,2802.7148 +8048,9784,17495,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.5181,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.65,27.39,-9,-9,3.333333333333333,1,1,0,0,0,2,1,1,1838,59342.398,0,0,0,0,0,665.43817 +8049,9785,17496,17497,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,8.2737722,7.8435464,7,9,-63.223225,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,14.069469,17.93507,128.39879,0,1,1,0,4.81144,7.8860002,42.86,31.98,54.2,57.49,3.333333333333333,1,1,0,0,0,11,4,1,1869.5,2139409.5,662458.63,201510.28,0,0,0,4075.2471 +8049,9785,17497,17496,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.7414322,6.9003539,7,0,65.589157,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.277431,6.6338687,54.2,57.49,42.86,31.98,8.333333333333334,1,1,0,0,2,11,4,1,1869.5,2139409.5,662458.63,201510.28,0,0,0,4075.2471 +8050,9786,17498,-9,17499,17500,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.84344,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,2079.3333,559299.06,242717.56,245105,57802.77,208.29948,0,6354.9194 +8050,9786,17499,17500,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,7.3351626,7.3998575,0,17,2,48.019638,0,2,2,2021,5,0,40,0,1,0,0,4.1165652,4.1165652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,53.99,48.04,6.666666666666667,1,1,0,0,8,4,5,1,2079.3333,559299.06,242717.56,245105,57802.77,208.29948,0,6354.9194 +8050,9786,17500,17499,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,9.7827644,9.7273912,0,17,-2,52.594597,0,2,2,2021,6,0,60,70,1,0,0,27.9492,27.9492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.99,48.04,52.99,51.28,6.666666666666667,1,1,0,0,7,4,5,1,2079.3333,559299.06,242717.56,245105,57802.77,208.29948,0,6354.9194 +8051,9787,17501,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.0417204,8.4279346,4.3429599,0,0,-1079.507,0,3,3,2021,12,0,35,40,1,0,0,11.063593,11.063593,0,0,0,0,0,0,0,0,0,0,0,5.8009481,4.4501834,43.99,60.71,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,296,-17587.777,-106623.09,0,0,534.11328,0,989.43121 +8052,9788,17502,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,4,0,8.667016,8.7238083,0,0,-1024.6034,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4500055,8.3982296,65.21000000000001,44.28,-9,-9,10,1,1,0,0,0,7,5,1,530,417728.31,38407.523,121877.05,0,0,0,3696.7615 +8053,9789,17503,17504,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.6316905,6.6107216,49,-3,-29.918453,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.131923,0,0,1,1,0,0,6.3160548,62.17,41.71,57.16,56.15,10,1,1,0,0,8,12,3,1,1597.5,663220.38,264840,251683.44,0,0,0,2581.9741 +8053,9789,17504,17503,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.4407754,7.3447456,49,3,-109.41246,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6849856,57.16,56.15,62.17,41.71,10,1,1,0,0,0,12,3,1,1597.5,663220.38,264840,251683.44,0,0,0,2581.9741 +8054,9790,17505,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4414577,8.4803276,0,0,0,-936.26715,0,-9,-9,2021,11,0,37,38,1,0,1,11.607125,11.607125,.05,.05,0,0,0,0,0,2,0,0,0,3.6227384,0,37.76,55.72,-9,-9,6.666666666666667,1,1,0,0,12,2,5,1,213,112816.92,171644.42,84301.914,57476.406,0,0,2186.782 +8055,9791,17506,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1074.8604,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,51,-9,-9,5,1,1,0,0,0,7,1,0,306,0,0,0,0,0,0,824.27496 +8056,9792,17507,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,6.9646363,6.8889151,0,0,0,-1128.4725,0,2,2,2021,8,1,16,16,1,1,0,8.840188,8.840188,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,47.27,-9,-9,10,4,2,0,0,6,9,2,0,1607,-107885.82,0,0,0,0,0,1312.6348 +8057,9793,17508,17510,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.4722157,9.2405176,0,8,2,18.405029,-9,2,1,2021,11,1,40,0,1,1,0,38.6329,38.6329,.05,.05,0,0,0,0,0,0,0,0,0,7.5668216,0,41.06,62.04,46.44,59.62,8.333333333333334,1,1,0,0,12,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8057,9793,17509,-9,17510,17508,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.3162,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8057,9793,17510,17508,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.1160583,9.3940802,0,8,-2,57.908039,-9,2,1,2021,10,0,38,0,1,0,0,25.058615,25.058615,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,41.06,62.04,8.333333333333334,1,1,0,0,12,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8057,9793,17511,-9,17510,17508,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.6849,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,457.75,478344.69,119326.16,464508.47,250108.38,77186.711,0,7228.4858 +8058,9794,17512,17513,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,7.0793643,6.8034444,0,11,3,47.60981,0,2,2,2021,7,0,18,27,1,0,0,6.8410106,6.8410106,0,0,0,0,0,0,0,2,1,0,1,0,0,60.53,48.35,43.2,49.01,8.333333333333334,1,1,0,0,11,10,3,0,1467.5,573243.63,179954.09,255361.2,0,0,0,884.66931 +8058,9794,17513,17512,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.1297073,7.1354923,0,11,-3,20.794758,0,2,2,2021,9,2,12,21,1,2,0,9.7171431,9.7171431,0,0,.05,0,0,0,0,0,1,0,1,0,0,43.2,49.01,60.53,48.35,10,1,1,0,0,11,10,3,0,1467.5,573243.63,179954.09,255361.2,0,0,0,884.66931 +8059,9795,17514,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-995.01575,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.62,33.26,-9,-9,6.666666666666667,1,1,0,0,4,13,1,1,1221,-24581.928,0,0,0,-1567.9871,0,680.22638 +8059,9796,17515,-9,-9,-9,1,1,51,0,0,0,3,3,-9,0,1,0,0,0,0,0,-963.91968,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,38.75,-9,-9,5,1,1,1,1,0,13,1,1,345,111437.64,27001.525,0,0,0,0,940.77814 +8060,9797,17516,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.8464499,8.9421587,0,0,0,-1038.5568,0,2,2,2021,7,0,38,39,1,0,0,23.295198,23.295198,0,0,0,0,0,0,0,0,1,1,0,2.6925907,0,59.53,56.44,-9,-9,10,1,1,0,0,11,7,5,1,3016,185003.06,105332.88,72557.344,88748.172,0,0,1984.2581 +8061,9798,17517,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,3,6.8187575,6.8836298,0,0,0,-984.98987,0,2,2,2021,8,0,16,16,1,0,0,8.7421541,8.7421541,0,0,0,0,0,0,0,0,1,1,0,0,0,50.71,52.35,-9,-9,8.333333333333334,1,1,0,1,7,12,2,0,843.5,3296.8496,0,0,0,9557.9316,0,2220.5625 +8061,9798,17518,-9,17517,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-889.80768,-9,3,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,2,0,843.5,3296.8496,0,0,0,9557.9316,0,2220.5625 +8062,9799,17519,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1056.6454,0,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.86,48.18,-9,-9,6.666666666666667,1,1,1,0,0,2,1,1,1131,-147180.19,0,0,0,0,0,1299.7339 +8063,9800,17520,-9,17523,17525,1,1,18,0,4,0,2,2,-9,0,4,7.354383,7.1087646,0,0,0,-963.4928,0,2,3,2021,9,2,24,0,1,2,1,7.6842012,7.6842012,0,0,0,0,0,0,0,0,1,1,0,0,0,45.44,54.5,-9,-9,8.333333333333334,2,3,0,0,1,8,3,0,1603,184383.36,0,0,0,0,0,731.57428 +8063,9801,17521,-9,17523,17525,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1010.7625,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17522,-9,17523,17525,1,0,15,0,4,1,3,0,-9,0,2,0,0,0,0,0,-999.66565,-9,2,3,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17523,17525,-9,-9,1,0,36,0,4,0,2,2,-9,0,3,7.7713833,7.9067659,0,9,-12,4.0548244,0,3,2,2021,13,0,24,0,1,2,0,12.89196,12.89196,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,65.93000000000001,29.26,3.333333333333333,2,3,0,0,1,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17524,-9,17523,17525,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.8183,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17525,17523,-9,-9,1,1,48,0,4,0,3,3,-9,0,3,0,0,0,9,12,-83.944054,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.4254062,0,65.93000000000001,29.26,44,52,5,2,3,1,0,14,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8063,9801,17526,-9,17523,17525,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1025.8198,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,732.16669,399535.56,367437.75,0,0,0,1375.9778,2003.3833 +8064,9802,17527,-9,17528,17529,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1074.0073,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,428,745898.5,433742.22,96160.938,0,0,0,3662.1892 +8064,9802,17528,17529,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.9192562,8.6029205,0,16,-7,112.88098,-9,1,2,2021,10,0,42,0,1,0,0,13.213071,13.213071,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,52,54.51,8.333333333333334,1,1,0,0,8,5,5,1,428,745898.5,433742.22,96160.938,0,0,0,3662.1892 +8064,9802,17529,17528,-9,-9,1,1,53,0,1,0,2,2,-9,0,3,7.8357654,7.9832997,0,12,7,-50.724499,0,3,2,2021,11,0,53,38,1,0,0,5.928587,5.928587,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,54.51,57.16,56.15,6.666666666666667,1,1,0,0,9,5,5,1,428,745898.5,433742.22,96160.938,0,0,0,3662.1892 +8065,9803,17530,-9,-9,-9,1,0,32,1,2,0,2,2,-9,0,2,8.5201349,8.7865934,0,0,0,-993.51318,0,1,2,2021,33,11,38,0,1,11,0,26.831249,26.831249,0,0,0,0,0,0,0,0,1,0,1,0,0,17.74,50.51,-9,-9,0,3,4,0,1,11,8,4,0,548,-72837.688,0,0,0,0,0,3387.946 +8065,9803,17531,-9,17530,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1123,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,4,0,548,-72837.688,0,0,0,0,0,3387.946 +8065,9803,17532,-9,17530,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.9483,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,4,0,548,-72837.688,0,0,0,0,0,3387.946 +8066,9804,17533,17534,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.4044447,6.0314326,21,5,77.278084,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0645466,6.43325,51.24,58.84,55.11,47.63,8.333333333333334,1,1,0,0,0,4,2,1,731.5,135180.19,50790.051,0,0,0,0,3681.1187 +8066,9804,17534,17533,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,51,-5,-80.238205,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5664248,0,55.11,47.63,51.24,58.84,10,1,1,0,0,0,4,2,1,731.5,135180.19,50790.051,0,0,0,0,3681.1187 +8067,9805,17535,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.5481415,7.2832618,0,0,-1076.1426,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7824051,7.3314505,51.22,49.35,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,696,275755.53,87715.539,57536.293,0,0,0,832.35675 +8068,9806,17536,17537,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.504179,8.6261778,0,39,0,24.117785,0,2,3,2021,6,0,37,37,1,0,0,15.790892,15.790892,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.79,55.86,47.85,52.43,1.666666666666667,1,1,0,0,13,8,5,1,953.5,807854.38,315504.31,741407,92533.406,0,0,3182.9346 +8068,9806,17537,17536,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.3022499,7.7833815,0,39,0,76.149963,0,3,3,2021,9,0,20,20,1,0,0,9.960988,9.960988,0,0,0,0,0,0,0,0,0,0,0,3.6322594,0,47.85,52.43,54.79,55.86,6.666666666666667,3,4,0,0,13,8,5,1,953.5,807854.38,315504.31,741407,92533.406,0,0,3182.9346 +8069,9807,17538,17539,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.7297831,6.7048988,9,-1,-49.252296,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0030537,6.7386718,38.09,63.39,49.35,59.64,6.666666666666667,1,1,0,0,0,6,3,1,3029.5,595748.94,222683.41,227898.22,0,0,0,2954.6931 +8069,9807,17539,17538,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.1381078,7.4750772,9,1,5.9286938,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8634667,7.0798626,49.35,59.64,38.09,63.39,8.333333333333334,1,1,0,0,8,6,3,1,3029.5,595748.94,222683.41,227898.22,0,0,0,2954.6931 +8070,9808,17540,17541,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.8672991,9.7379389,0,13,5,-50.099602,0,-9,-9,2021,11,2,50,40,1,2,0,39.801674,39.801674,.05,.05,0,0,0,0,0,0,0,0,0,.37109417,0,40.16,59.89,50.5,38.58,3.333333333333333,1,1,0,0,12,9,5,0,918.5,1843866.6,307770.72,817016.75,252197.16,0,0,5587.6602 +8070,9808,17541,17540,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.4711714,8.6072826,0,13,-5,-128.56705,0,2,2,2021,13,2,48,50,1,2,0,12.475206,12.475206,0,0,0,0,0,0,.84268367,0,0,0,0,0,0,50.5,38.58,40.16,59.89,6.666666666666667,1,1,0,0,7,9,5,0,918.5,1843866.6,307770.72,817016.75,252197.16,0,0,5587.6602 +8071,9809,17542,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8331423,8.4443855,0,1,1,2.2490129,-9,1,1,2021,9,0,35,0,1,0,0,23.430853,23.430853,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.46,52.7,26,27.57,8.333333333333334,1,1,0,0,9,1,4,1,804,4898.8745,-15048.927,154673.89,148545.7,0,2041.3898,1975.2198 +8071,9810,17543,-9,-9,-9,1,1,35,0,0,0,2,2,-9,1,1,0,0,0,1,-1,98.646652,-9,2,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0463438,0,26,27.57,47.46,52.7,1.666666666666667,1,1,0,1,0,1,4,1,2424,-268986.47,0,0,0,-1413.8042,0,1278.9927 +8071,9811,17544,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.6900167,7.7657137,0,0,0,-1151.7773,-9,-9,-9,2021,10,1,40,0,1,1,0,6.6966596,6.6966596,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.91,49.9,-9,-9,3.333333333333333,1,1,0,0,0,1,3,1,240,113736.6,54344.816,51485.645,0,3120.8691,-328.44962,724.74042 +8072,9812,17545,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.6037045,6.6747837,0,0,-911.117,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.6433682,58.32,28.96,-9,-9,5,2,3,0,0,0,8,2,0,469,477933.59,72673.633,440170.44,0,0,0,1375.7802 +8072,9813,17546,-9,17545,-9,1,0,32,0,0,0,3,3,-9,1,3,0,0,0,0,0,-993.61395,-9,1,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.146234,0,43.83,40.54,-9,-9,6.666666666666667,2,3,0,0,0,8,1,0,420,0,0,0,0,0,0,615.66327 +8073,9814,17547,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.7824831,8.4159107,0,0,0,-1056.7104,0,3,3,2021,12,1,55,50,1,1,0,12.067861,12.067861,.05,.05,0,0,0,0,0,0,0,0,0,4.7825646,0,41.87,59.15,-9,-9,6.666666666666667,1,1,0,0,7,7,5,1,820,179774.42,19471.699,0,0,0,1674.6455,2087.5186 +8073,9815,17548,-9,17547,-9,1,0,26,0,0,0,1,1,-9,0,5,8.3689775,7.961184,0,0,0,-960.21637,0,2,2,2021,20,8,45,48,1,8,1,8.4224672,8.4224672,0,0,0,0,0,0,0,0,0,0,0,0,0,27.77,65.94,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,652,-42022.277,0,0,0,0,0,1145.1289 +8073,9816,17549,-9,17547,-9,1,1,18,0,0,1,2,0,0,0,2,0,6.7568083,6.9370494,0,0,-1007.3067,-9,2,-9,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.457788,0,56.14,36.8,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,139,-131841.77,0,0,0,0,0,-289.12778 +8074,9817,17550,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.9827852,8.2185678,0,0,0,-1020.5493,0,-9,-9,2021,9,0,74,42,1,0,0,4.2662706,4.2662706,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,5,10,4,0,343,221741.84,53968.84,-21436.797,0,-191.72667,0,1380.7632 +8075,9818,17551,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.7008381,7.5323167,0,0,-1077.2384,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.02202585,7.7901378,37.23,46.2,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,1753,766981.56,278080.03,349524.88,0,0,0,1635.949 +8076,9819,17552,-9,-9,-9,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1071.0311,0,2,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.64,54.91,-9,-9,3.333333333333333,1,1,0,0,2,8,1,0,540,-47050.195,0,0,0,0,0,362.01205 +8076,9820,17553,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.4317217,8.4174395,0,0,0,-1151.0275,0,-9,-9,2021,11,2,45,36,1,2,0,17.980621,17.980621,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,6.666666666666667,1,1,0,0,5,8,5,0,1039,30156.826,0,0,0,0,0,1773.8104 +8077,9821,17554,17555,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.0740395,8.1881618,0,2,0,63.24321,0,2,2,2021,10,0,44,49,1,0,0,8.5178013,8.5178013,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49.35,59.64,43,39,8.333333333333334,1,1,0,0,10,12,4,1,1056.5,424379.06,447232.94,230839.25,21775.207,-446.90094,0,3190.1357 +8077,9821,17555,17554,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,8.3008337,8.4999065,0,2,0,31.204239,0,3,3,2021,19,8,35,35,1,8,0,13.322666,13.322666,.05,.05,0,0,0,0,0,14.5,1,1,0,.030520322,0,43,39,49.35,59.64,1.666666666666667,1,1,0,1,8,12,4,1,1056.5,424379.06,447232.94,230839.25,21775.207,-446.90094,0,3190.1357 +8078,9822,17556,17558,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.0394258,8.0422878,0,12,-19,104.29407,-9,3,2,2021,12,0,40,0,1,2,0,8.3953276,8.3953276,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,55.86,43.17,7,3,4,0,1,10,8,3,0,694.33331,1388956.6,39748.91,842264.25,0,0,0,2237.46 +8078,9822,17557,-9,17556,17558,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-926.8468,-9,2,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.85,54.62,-9,-9,5,3,4,0,0,0,8,3,0,694.33331,1388956.6,39748.91,842264.25,0,0,0,2237.46 +8078,9822,17558,17556,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,6.1441846,6.2081094,13,19,-16.798964,-9,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0879612,55.86,43.17,46,50,8.333333333333334,3,4,0,1,10,8,3,0,694.33331,1388956.6,39748.91,842264.25,0,0,0,2237.46 +8079,9823,17559,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.2411246,7.0409093,0,0,0,-959.10229,0,3,3,2021,8,0,75,90,1,0,0,2.4804585,2.4804585,.05,.05,0,0,0,0,0,0,0,0,0,4.8054509,0,55,53,-9,-9,8,1,1,0,0,8,4,3,0,1834,-131359.22,-94264.945,0,0,0,0,750.69604 +8080,9824,17560,-9,17562,17561,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.7839,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8080,9824,17561,17562,-9,-9,1,1,28,1,2,0,2,2,-9,0,4,8.0761328,7.8233552,0,1,4,48.400692,0,2,-9,2021,12,0,42,64,1,0,0,6.9771519,6.9771519,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.44,57.54,53.82,42.86,8.333333333333334,1,1,0,0,11,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8080,9824,17562,17561,-9,-9,1,0,24,1,2,0,2,2,-9,0,3,6.5631595,6.9287882,6.0358415,1,-4,94.795822,-9,-9,-9,2021,9,0,16,0,1,0,0,4.5291214,4.5291214,.05,.05,0,0,0,0,.018041892,0,1,1,0,5.8310299,0,53.82,42.86,42.44,57.54,8.333333333333334,1,1,0,0,0,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8080,9824,17563,-9,17562,17561,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-965.05225,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,653.75,-6371.8423,-22556.471,0,0,25912.703,0,2319.2405 +8081,9825,17564,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.2537823,6.2764535,0,0,-792.13287,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2111797,43.15,55.67,-9,-9,10,1,1,0,0,0,10,2,0,597,273394.22,-39317.852,307680.84,0,0,0,764.68805 +8081,9826,17565,-9,17564,-9,1,1,50,0,0,0,2,2,-9,0,4,0,0,0,0,0,-984.02942,0,2,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,1,0,0,10,1,0,317,221042.63,50283.281,0,0,0,0,287.34967 +8082,9827,17566,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,3.1052556,3.3014829,0,0,-1122.5959,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,41.910522,0,0,1,1,0,0,3.2387402,54,44,-9,-9,8,1,1,0,1,0,5,2,1,454,-14389.573,-18498.199,64780.566,0,0,0,1850.89 +8082,9828,17567,-9,17566,-9,1,1,65,0,0,0,3,3,-9,1,3,0,0,0,0,0,-852.33154,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,1,0,0,0,42,1,1,0,0,0,52,48,-9,-9,7,1,1,0,1,0,5,1,1,441,48706.965,0,0,0,0,604.38025,-358.7175 +8083,9829,17568,17569,-9,-9,1,0,51,0,3,0,3,3,-9,0,3,4.5795755,4.5954962,0,7,-3,-48.858223,0,3,3,2021,12,0,9,6,1,2,0,1.0786644,1.0786644,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,54.15,48.02,7,1,1,0,0,1,13,3,1,1184.5,597721,26341.307,434127.28,24490.285,8735.123,0,5379.5288 +8083,9829,17569,17568,-9,-9,1,1,54,0,3,0,2,2,-9,0,3,8.1653862,8.3541622,0,7,3,-107.6048,0,3,3,2021,7,0,48,48,1,0,0,8.4240952,8.4240952,0,0,0,0,0,0,0,0,1,1,0,0,0,54.15,48.02,48,49,5,1,1,0,0,8,13,3,1,1184.5,597721,26341.307,434127.28,24490.285,8735.123,0,5379.5288 +8084,9830,17570,17571,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.3731499,8.2821131,48,-1,23.82053,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6973004,8.0730705,56.5,48.33,56.86,50.75,8.333333333333334,1,1,0,0,9,9,3,1,245.5,1123115,574691.75,419058.06,0,0,191.48218,3040.2095 +8084,9830,17571,17570,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.4069586,5.0150514,48,1,31.045668,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.788856,5.4213958,56.86,50.75,56.5,48.33,8.333333333333334,1,1,0,0,5,9,3,1,245.5,1123115,574691.75,419058.06,0,0,191.48218,3040.2095 +8085,9831,17572,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.1475506,8.2669306,0,0,0,-1062.391,-9,2,-9,2021,9,0,42,0,1,0,0,8.6040754,8.6040754,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.42,50.8,-9,-9,5,1,1,0,0,9,4,4,0,1056,269830.41,108085.36,0,0,0,0,1909.0743 +8086,9832,17573,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.2483807,8.3064699,0,0,0,-942.46204,0,3,2,2021,8,1,42,44,1,1,0,11.077054,11.077054,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,1441,-90265.578,19279.932,0,0,0,0,1342.2755 +8087,9833,17574,17576,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.0649595,8.2392302,0,10,8,13.112444,0,-9,-9,2021,8,0,30,31,1,0,0,10.617244,10.617244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,40.64,52.96,8.333333333333334,1,1,0,0,13,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8087,9833,17575,-9,17574,17576,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.1925,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8087,9833,17576,17574,-9,-9,1,1,32,0,2,0,3,3,-9,0,3,8.1081915,8.182291,0,10,-8,-60.261761,0,3,3,2021,13,1,39,40,1,1,0,11.087126,11.087126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.64,52.96,62.49,55.09,5,1,1,0,0,11,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8087,9833,17577,-9,17574,17576,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.9402,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,688.5,-11993.464,139423.38,73446.906,42001.352,0,978.8891,3106.8413 +8088,9834,17578,-9,17581,17580,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.31793,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8088,9834,17579,-9,17581,17580,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1039.3315,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8088,9834,17580,17581,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6696148,8.3944759,0,21,1,-84.87722,0,1,1,2021,21,9,37,37,1,9,0,13.679703,13.679703,.05,.05,0,0,0,0,1.4326656,0,0,0,0,2.9979203,0,26.41,62.18,53.75,54.92,8.333333333333334,1,1,0,0,13,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8088,9834,17581,17580,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,9.3504143,8.7944822,0,21,-1,-41.815384,0,2,2,2021,10,0,36,35,1,0,0,34.482147,34.482147,0,0,0,0,0,0,0,0,0,0,0,2.9062316,0,53.75,54.92,26.41,62.18,8.333333333333334,1,1,0,0,13,1,5,1,688.5,1609979.6,1107010.3,0,0,12923.6,0,5100.8037 +8089,9835,17582,-9,17584,17583,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-984.48285,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8089,9835,17583,17584,-9,-9,1,1,51,0,2,0,1,1,-9,0,3,8.7792826,8.6191425,0,13,9,27.663313,0,2,1,2021,23,9,41,37,1,9,0,15.044187,15.044187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.7,36.42,43.43,54.3,8.333333333333334,2,3,0,0,11,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8089,9835,17584,17583,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.4163618,8.5992327,0,13,0,18.250002,0,3,2,2021,12,2,70,60,1,2,0,8.5699549,8.5699549,.05,.05,0,0,0,0,0,2,1,1,0,.94188499,0,43.43,54.3,23.7,36.42,6.666666666666667,2,3,0,0,7,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8089,9835,17585,-9,17584,17583,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.27,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,0,1827.75,1368358.4,644738.13,777056.69,16970.33,3077.7104,0,5003.6655 +8090,9836,17586,17587,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.7281866,8.3239689,0,6,0,25.310066,0,-9,-9,2021,10,0,42,44,1,0,0,11.98763,11.98763,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.67,57.49,48.85,58.56,8.333333333333334,1,1,0,0,6,10,5,1,669.5,-61207.266,-34072.434,0,0,0,0,3486.5688 +8090,9836,17587,17586,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.5115223,8.4555264,0,6,0,47.748852,0,1,1,2021,11,0,55,50,1,0,0,10.53833,10.53833,.05,.05,0,0,0,0,0,0,0,0,0,3.4388578,0,48.85,58.56,54.67,57.49,8.333333333333334,1,1,0,0,8,10,5,1,669.5,-61207.266,-34072.434,0,0,0,0,3486.5688 +8091,9837,17588,17589,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.1574826,6.2380223,56,0,30.986,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1558709,6.2433329,55.88,38.99,64.55,36.47,8.333333333333334,1,1,0,0,0,13,3,1,819.5,341320.56,147923.52,129892.75,0,0,0,2958.7939 +8091,9837,17589,17588,-9,-9,1,0,81,0,0,0,1,1,-9,0,3,0,7.5038242,7.6516266,56,0,58.729546,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2287579,7.5135498,64.55,36.47,55.88,38.99,6.666666666666667,1,1,0,0,0,13,3,1,819.5,341320.56,147923.52,129892.75,0,0,0,2958.7939 +8092,9838,17590,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1138.1804,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.97,52.14,-9,-9,5,1,1,0,0,0,2,1,1,567,-104857.77,0,0,0,0,0,0 +8093,9839,17591,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.2890844,8.9552164,0,0,0,-924.29352,0,2,2,2021,9,0,39,39,1,0,0,17.807808,17.807808,.05,.05,0,0,0,0,0,2,0,0,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,14,5,4,1,453,108564.52,125220.28,245174.48,79708.5,2598.9458,0,2129.1941 +8094,9840,17592,-9,17593,17595,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-910.07031,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8094,9840,17593,17595,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.3323812,7.9170208,0,7,-14,66.402115,0,1,2,2021,14,4,24,21,1,4,0,16.422297,16.422297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.49,63.38,55.09,55.87,8.333333333333334,1,1,0,0,8,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8094,9840,17594,-9,17593,17595,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2687,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8094,9840,17595,17593,-9,-9,1,1,51,1,2,0,1,1,-9,0,5,8.671175,8.6480122,0,7,14,-22.67687,0,-9,-9,2021,15,4,37,37,1,4,0,18.85597,18.85597,.05,.05,0,0,0,0,0,0,1,1,0,7.0640187,0,55.09,55.87,41.49,63.38,8.333333333333334,1,1,0,0,8,4,4,1,781.25,896454.25,611593.31,343515.25,44660.672,0,0,3518.3879 +8095,9841,17596,17597,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,0,0,0,14,-7,0,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6301589,0,58.15,52.91,49.98,51.13,8.333333333333334,1,1,0,0,10,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8095,9841,17597,17596,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,0,0,0,14,7,0,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21563214,0,49.98,51.13,58.15,52.91,6.666666666666667,1,1,1,0,7,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8095,9841,17598,-9,17596,17597,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-838.76611,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8095,9841,17599,-9,17596,17597,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.99786,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,1,1,728.5,-77899.406,0,0,0,1505.2017,0,917.85236 +8096,9842,17600,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.1432586,6.6266451,0,0,0,-1002.1908,-9,3,3,2021,23,10,20,0,1,10,0,6.3587699,6.3587699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.37,36.9,-9,-9,5,2,3,0,0,12,8,2,1,283,172443.41,-34488.398,0,0,0,0,-240.80916 +8097,9843,17601,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,7.2564459,7.3518491,0,0,-858.9129,0,3,-9,2021,32,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.087203,7.3767004,37.16,30.49,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,485,428597.03,164595.08,130763.34,0,0,0,2530.1719 +8098,9844,17602,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,8.7029743,8.4191647,0,0,-951.28601,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2938066,8.4666109,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,9,5,1,1936,1257189.8,370843.03,253895.94,0,0,0,2995.4087 +8099,9845,17603,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1067.1259,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,24.5,-9,-9,5,1,1,0,0,0,12,1,0,726,176010.48,0,0,0,0,0,1402.3003 +8100,9846,17604,-9,17606,17607,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-966.4809,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17605,-9,17606,17607,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-937.5423,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17606,17607,-9,-9,1,0,36,0,4,0,2,2,-9,0,4,7.9833245,8.2485466,0,2,-5,31.971006,0,2,2,2021,26,12,35,48,1,12,0,8.8330946,8.8330946,0,0,0,0,0,0,0,0,1,1,0,0,0,27.34,64.59,23.15,48.66,6.666666666666667,1,1,0,0,11,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17607,17606,-9,-9,1,1,41,0,4,0,2,2,-9,0,3,5.2618756,4.9089508,0,2,5,83.169586,0,-9,-9,2021,23,9,90,-9,1,9,0,.25968575,.25968575,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.15,48.66,27.34,64.59,3.333333333333333,1,1,0,1,13,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8100,9846,17608,-9,-9,17607,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.7589,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,1256.4,142545.89,83760.93,182254.25,137697.91,664.99249,1722.7229,2288.2512 +8101,9847,17609,17610,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.5640926,6.7091045,62,3,-31.679419,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7971239,6.5756588,53,46,52.62,28.06,8.333333333333334,1,1,0,0,13,13,2,1,815.5,219284.25,45401.68,119450.11,0,0,0,2200.0972 +8101,9847,17610,17609,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,62,-3,-2.1142039,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,11.705921,0,0,1,1,0,7.2129169,0,52.62,28.06,53,46,8.333333333333334,1,1,0,0,11,13,2,1,815.5,219284.25,45401.68,119450.11,0,0,0,2200.0972 +8102,9848,17611,17612,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.5857153,6.7727041,50,0,-124.27863,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1211319,55.3,55.6,53.34,45.71,8.333333333333334,1,1,0,0,7,9,2,1,417,529065.88,52286.172,534637.75,0,0,600.80988,1598.5676 +8102,9848,17612,17611,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,50,0,51.457405,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.34,45.71,55.3,55.6,8.333333333333334,1,1,0,0,0,9,2,1,417,529065.88,52286.172,534637.75,0,0,600.80988,1598.5676 +8103,9849,17613,17614,-9,-9,1,0,55,0,1,0,2,2,-9,0,1,0,5.969831,5.7634773,20,-8,-122.77765,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0942028,5.8408628,15.05,27.23,49.98,43.25,1.666666666666667,1,1,0,0,0,4,2,0,924,58264.68,64451.477,0,0,0,0,2055.4065 +8103,9849,17614,17613,-9,-9,1,1,63,0,1,0,3,3,-9,0,3,0,6.6187277,7.0490751,20,8,-14.257533,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,.05,0,0,0,0,120,1,1,0,5.4698615,6.8802919,49.98,43.25,15.05,27.23,3.333333333333333,1,1,0,0,6,4,2,0,924,58264.68,64451.477,0,0,0,0,2055.4065 +8104,9850,17615,17616,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.4002275,7.9985666,0,7,-4,59.023602,0,-9,-9,2021,15,4,40,40,1,4,0,11.751486,11.751486,.05,.05,0,0,0,0,0,2,0,0,0,6.7310524,0,36.07,52.49,54.77,55.87,8.333333333333334,1,1,0,0,13,12,5,1,888.5,348113.28,328708.53,0,0,0,2713.2329,4312.8848 +8104,9850,17616,17615,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.5553789,8.588026,0,7,4,-28.653034,0,2,2,2021,6,0,38,39,1,0,0,13.273929,13.273929,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,36.07,52.49,8.333333333333334,1,1,0,0,11,12,5,1,888.5,348113.28,328708.53,0,0,0,2713.2329,4312.8848 +8105,9851,17617,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,5,0,7.121243,7.0110192,0,0,-900.18774,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0711813,60.02,56.42,-9,-9,10,1,1,0,0,0,7,3,1,885,228280.48,49185.281,86539.258,0,0,0,1454.1339 +8106,9852,17618,17619,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,6,-3,88.13633,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4497986,0,39.93,57.19,54.96,53.17,6.666666666666667,1,1,0,0,0,12,3,1,789,642449.06,230587.73,162164.13,0,0,0,2818.4478 +8106,9852,17619,17618,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.1825275,8.1292858,6,3,-92.313278,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8559361,8.0905218,54.96,53.17,39.93,57.19,10,1,1,0,0,0,12,3,1,789,642449.06,230587.73,162164.13,0,0,0,2818.4478 +8107,9853,17620,17621,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,57,-2,78.199562,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.05,53.56,60.89,44.94,10,1,1,0,0,0,10,4,1,2596,1355914.4,550769.5,394152.38,0,0,0,3613.1526 +8107,9853,17621,17620,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.9469252,8.972868,57,2,25.465937,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5920644,8.2003927,60.89,44.94,48.05,53.56,8.333333333333334,1,1,0,0,0,10,4,1,2596,1355914.4,550769.5,394152.38,0,0,0,3613.1526 +8108,9854,17622,-9,17624,17623,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.3622,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,685.33331,406645.13,260173.34,159691.22,0,0,0,2588.0239 +8108,9854,17623,17624,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.3904839,8.1341848,0,22,1,-113.98273,0,2,2,2021,6,0,38,50,1,0,0,14.910846,14.910846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,51.83,57.2,10,1,1,0,0,9,4,4,1,685.33331,406645.13,260173.34,159691.22,0,0,0,2588.0239 +8108,9854,17624,17623,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.1177278,7.1482778,0,20,-1,79.060242,0,2,2,2021,9,0,40,12,1,0,0,2.6403267,2.6403267,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,59.43,58.05,8.333333333333334,1,1,0,0,7,4,4,1,685.33331,406645.13,260173.34,159691.22,0,0,0,2588.0239 +8109,9855,17625,17626,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.9466314,6.4151745,7,5,70.990089,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2809439,6.8184319,33.26,48.25,47.54,39,8.333333333333334,2,3,0,0,0,5,2,1,1870.5,515649.25,0,241830.34,0,0,0,1359.2374 +8109,9855,17626,17625,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,4.0413251,3.8310325,43,-5,-7.8739867,0,-9,-9,2021,13,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.8066025,47.54,39,33.26,48.25,0,2,3,0,0,0,5,2,1,1870.5,515649.25,0,241830.34,0,0,0,1359.2374 +8110,9856,17627,-9,17629,17628,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.67444,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8110,9856,17628,17629,-9,-9,1,1,56,0,2,0,2,2,-9,0,1,0,0,0,4,0,-13.729928,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.85,17.26,58.77,31.13,3.333333333333333,1,1,0,0,4,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8110,9856,17629,17628,-9,-9,1,0,56,0,2,0,1,1,-9,1,3,0,8.052578,8.1128006,5,0,106.88321,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.7831216,8.188818,58.77,31.13,30.85,17.26,5,1,1,0,0,0,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8110,9856,17630,-9,17629,17628,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.64966,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,561.5,391242.06,193991.47,186497.47,125656.67,10795.129,0,3286.6064 +8111,9857,17631,17632,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,5.5981255,5.5269351,0,19,3,67.666649,0,2,3,2021,10,0,24,15,1,0,0,1.0373291,1.0373291,0,0,0,0,0,0,0,2,0,0,0,0,0,54.21,46.79,47.24,27.28,6.666666666666667,1,1,0,0,11,7,2,1,312.5,-28475.984,0,0,0,0,0,1650.4189 +8111,9857,17632,17631,-9,-9,1,0,37,0,0,0,2,2,-9,1,2,0,0,0,19,-3,-83.502419,0,2,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.160244,0,47.24,27.28,54.21,46.79,8.333333333333334,1,1,0,0,10,7,2,1,312.5,-28475.984,0,0,0,0,0,1650.4189 +8112,9858,17633,17634,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.5304642,8.6662235,0,7,-3,36.545006,0,-9,-9,2021,10,0,37,37,1,1,0,17.372744,17.372744,.05,.05,0,0,0,0,0,0,0,0,0,5.8282666,0,52,53,51.77,58.57,8,1,1,0,0,1,9,5,1,1232,1002881.1,567190.13,367878.91,72767.305,8088.7461,7477.9082,6825.2104 +8112,9858,17634,17633,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.9916925,9.1039009,7.9087434,34,3,-118.77129,0,2,2,2021,6,0,43,37,1,0,0,25.180994,25.180994,.05,.05,0,0,0,0,0,0,0,0,0,1.6548185,7.7893639,51.77,58.57,52,53,8.333333333333334,1,1,0,0,8,9,5,1,1232,1002881.1,567190.13,367878.91,72767.305,8088.7461,7477.9082,6825.2104 +8113,9859,17635,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,7.6385388,7.7781148,0,2,19,9.5291004,0,3,3,2021,1,0,37,50,1,0,0,6.5197978,6.5197978,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,36.75,54.56,10,2,3,0,0,12,6,4,1,2126,216258.63,0,0,0,0,0,1324.6893 +8113,9860,17636,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2674618,7.8881521,0,2,-19,17.769709,0,-9,-9,2021,15,3,57,61,1,3,0,6.1959691,6.1959691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.75,54.56,59.14,52.5,6.666666666666667,2,3,0,0,2,6,4,1,480,164944.67,-25848.922,0,0,0,0,1275.0028 +8114,9861,17637,17638,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.8154583,8.8108568,0,31,2,-116.57346,0,2,2,2021,8,0,45,42,1,0,0,14.651499,14.651499,0,0,0,0,0,0,0,0,0,0,0,4.8887348,0,55.19,54.26,46.38,59.89,8.333333333333334,1,1,0,0,10,1,5,1,693.5,1161098.5,966815,200256.72,0,0,9463.7246,5410.5107 +8114,9861,17638,17637,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.7112694,9.0497551,0,31,-2,-30.428108,0,2,1,2021,13,1,49,50,1,1,0,14.7693,14.7693,0,0,0,0,0,0,0,0,0,0,0,0,0,46.38,59.89,55.19,54.26,8.333333333333334,1,1,0,0,10,1,5,1,693.5,1161098.5,966815,200256.72,0,0,9463.7246,5410.5107 +8115,9862,17639,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,7.831706,7.8977909,0,0,0,-1064.5538,0,3,2,2021,7,0,40,43,1,0,0,5.9398623,5.9398623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.78,53.3,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,122,224032.94,-34598.488,65394.742,0,10974.596,0,974.93127 +8116,9863,17640,17641,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.1216946,7.2748055,37,-1,44.052631,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3064103,7.7889738,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1616.5,1917286.3,1277344.8,368060.31,0,0,0,2319.9658 +8116,9863,17641,17640,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.6712985,7.4886203,37,1,9.1595392,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7496285,7.7538257,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,1,4,1,1616.5,1917286.3,1277344.8,368060.31,0,0,0,2319.9658 +8117,9864,17642,17643,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,0,0,9,15,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,6.3232198,141.39687,65.643196,0,1,1,0,0,0,54,46,50,47,8,2,3,0,0,0,8,1,0,151.5,930596.75,301981.44,460989.38,0,0,0,1601.4321 +8117,9864,17643,17642,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,51,-15,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,5.9962935,0,120,1,1,0,0,0,50,47,54,46,7,2,3,0,0,0,8,1,0,151.5,930596.75,301981.44,460989.38,0,0,0,1601.4321 +8117,9865,17644,-9,17643,17642,1,0,27,0,0,0,2,2,-9,0,4,7.8822942,7.7790532,0,0,0,-1014.1228,0,3,-9,2021,11,0,35,38,1,2,0,8.8267326,8.8267326,0,0,0,0,0,0,0,0,1,1,0,6.0384674,0,47,58,-9,-9,7,2,3,0,0,1,8,3,0,791,65237.035,-34043.234,0,0,5406.6011,0,1150.576 +8118,9866,17645,17646,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.7160215,8.6641226,46,6,-46.331139,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3074937,9.0842152,59.43,58.05,52.4,52.91,10,1,1,0,0,4,10,5,1,760,1906811.8,860473.31,516860.13,0,0,0,4539.7046 +8118,9866,17646,17645,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,4.3668571,4.2685542,46,-6,-70.052765,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.1153817,4.3108797,52.4,52.91,59.43,58.05,10,1,1,0,0,0,10,5,1,760,1906811.8,860473.31,516860.13,0,0,0,4539.7046 +8119,9867,17647,-9,17648,-9,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-959.17841,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,1,0,376.33334,-113494.18,0,0,0,0,0,1483.8195 +8119,9867,17648,-9,-9,-9,1,0,20,2,2,0,2,2,-9,0,4,0,0,0,0,0,-993.73065,0,-9,-9,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.95,26.83,-9,-9,8.333333333333334,1,1,0,0,3,12,1,0,376.33334,-113494.18,0,0,0,0,0,1483.8195 +8119,9867,17649,-9,17648,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.7814,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,1,0,376.33334,-113494.18,0,0,0,0,0,1483.8195 +8120,9868,17650,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.6491556,8.8453245,0,0,0,-1039.5637,0,1,2,2021,12,3,43,43,1,3,0,18.58144,18.58144,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,-9,-9,6.666666666666667,1,1,0,0,12,5,5,1,293,300004.91,347737.94,0,0,5990.9365,242.6976,2152.356 +8121,9869,17651,-9,-9,-9,1,1,35,0,0,0,3,3,-9,0,4,9.3957806,9.4489174,0,0,0,-1029.8442,-9,2,2,2021,12,0,45,0,1,0,0,30.760382,30.760382,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,13,6,5,0,90,-30860.738,214565.28,0,0,0,378.65964,3794.0454 +8122,9870,17652,17653,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.4656353,8.5575485,0,7,-1,-2.7648332,0,-9,-9,2021,9,0,70,60,1,1,0,8.262536,8.262536,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,47.33,54.26,8,1,1,0,0,1,5,5,0,1130,-35751.762,49317.961,0,0,10250.177,2580.7371,3176.9041 +8122,9870,17653,17652,-9,-9,1,0,45,0,0,0,3,3,-9,1,2,7.9940953,7.5865254,0,7,1,174.36823,0,3,3,2021,13,1,34,30,1,1,0,11.337965,11.337965,0,0,0,0,0,0,0,0,1,1,0,0,0,47.33,54.26,52,55,6.666666666666667,1,1,0,0,6,5,5,0,1130,-35751.762,49317.961,0,0,10250.177,2580.7371,3176.9041 +8122,9871,17654,-9,17653,17652,1,1,22,0,0,0,2,2,-9,0,4,5.620656,5.6173158,0,0,0,-900.3266,0,3,2,2021,10,0,32,28,1,1,1,1.0732012,1.0732012,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,5,2,0,420,-6546.792,0,0,0,0,0,37.789932 +8122,9872,17655,-9,17653,17652,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-916.24066,-9,3,2,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,0,329,-48893.027,0,0,0,0,0,-362.41766 +8123,9873,17656,17658,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,9.1225672,9.2536526,0,18,9,56.546886,0,3,3,2021,12,0,24,30,1,0,0,53.175552,53.175552,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.34,38.05,48,57,6.666666666666667,2,3,0,0,11,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17657,-9,17658,17656,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-978.66663,-9,3,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17658,17656,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,0,0,0,9,0,97.379051,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,46.34,38.05,7,2,3,0,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17659,-9,17658,17656,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.59552,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8123,9873,17660,-9,17658,17656,1,1,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-996.69653,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,2,4,1,733,89328.773,34135.32,161103.63,86411.914,0,0,4691.0049 +8124,9874,17661,17662,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.8673153,8.4723558,0,7,-13,-101.98051,0,-9,-9,2021,7,0,45,45,1,0,0,13.822412,13.822412,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.68,49.38,48.53,58.91,8.333333333333334,1,1,0,0,10,9,4,1,1561.5,55667.078,70113.266,91622.898,-881.52344,6562.2749,0,2740.5837 +8124,9874,17662,17661,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,4.8514113,4.865448,7,13,-158.98518,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.019001,4.3407841,48.53,58.91,50.68,49.38,8.333333333333334,1,1,0,0,5,9,4,1,1561.5,55667.078,70113.266,91622.898,-881.52344,6562.2749,0,2740.5837 +8125,9875,17663,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.7435918,5.8534455,0,0,-1014.4355,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1521678,5.4669528,55.36,54.24,-9,-9,10,1,1,0,0,0,11,2,1,832,-175102.2,81426.672,0,0,0,0,1210.7845 +8126,9876,17664,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.7589622,8.2245588,0,0,0,-1099.6615,0,3,3,2021,8,0,40,48,1,0,0,8.9962158,8.9962158,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,3,4,0,0,11,2,4,0,1233,518255.47,383701,0,0,0,0,942.99011 +8127,9877,17665,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.4044428,8.7315702,0,0,0,-1026.941,0,-9,-9,2021,12,0,39,41,1,0,0,11.239229,11.239229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,5,1,1,0,0,6,9,5,1,718,-279653.59,47694.418,0,0,0,0,2051.4563 +8128,9878,17666,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-929.8717,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.11,49.64,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,778,-16348.322,0,0,0,0,-1118.6238,1122.9419 +8129,9879,17667,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-917.87482,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.6,39.53,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,332,118893.7,0,0,0,0,0,1881.228 +8130,9880,17668,17669,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,6.9420743,6.6983385,41,-1,-6.3873358,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1955104,52,47,51,47,7,4,5,0,0,0,4,2,1,583.5,688361.13,248231.92,311298.91,0,0,0,1679.7773 +8130,9880,17669,17668,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.2838697,4.257688,41,1,27.970188,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4106116,51,47,52,47,7,4,5,0,0,0,4,2,1,583.5,688361.13,248231.92,311298.91,0,0,0,1679.7773 +8131,9881,17670,17671,-9,-9,1,1,39,0,1,0,1,1,-9,0,5,8.4725971,8.0377979,0,20,4,26.340147,0,3,2,2021,9,1,53,51,1,1,0,8.9970293,8.9970293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.18,54.05,45.32,54.77,8.333333333333334,1,1,0,0,13,2,4,1,619,146906.38,232866.05,170562.98,122304.35,8191.6016,5475.5454,3409.6194 +8131,9881,17671,17670,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.4904795,8.3067274,0,20,-4,-65.952095,0,2,2,2021,13,1,42,41,1,1,0,12.099655,12.099655,.05,.05,0,0,0,0,0,0,1,1,0,2.7223768,0,45.32,54.77,44.18,54.05,8.333333333333334,1,1,0,0,11,2,4,1,619,146906.38,232866.05,170562.98,122304.35,8191.6016,5475.5454,3409.6194 +8131,9881,17672,-9,17671,17670,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.5826,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,619,146906.38,232866.05,170562.98,122304.35,8191.6016,5475.5454,3409.6194 +8131,9882,17673,-9,17671,17670,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1029.0742,-9,1,1,2021,25,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.31178349,0,18.97,54.58,-9,-9,5,1,1,0,0,1,2,1,1,555,75248.414,0,0,0,0,0,-231.55775 +8132,9883,17674,-9,-9,-9,1,0,20,0,0,1,1,0,0,0,4,0,6.3654037,6.012681,0,0,-1047.0807,-9,-9,-9,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9197907,0,56.97,33.02,-9,-9,8.333333333333334,1,1,0,0,2,4,2,0,446,32702.678,0,0,0,0,0,69.289558 +8133,9884,17675,17677,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,6.6626272,7.0552292,0,30,-13,-137.82159,0,-9,-9,2021,7,0,15,15,1,0,0,6.1859059,6.1859059,0,0,0,0,0,0,0,14.5,1,0,1,0,0,54.1,59.11,42.36,17.83,10,1,1,0,1,11,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8133,9884,17676,-9,17675,17677,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-953.73792,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,1,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8133,9884,17677,17675,-9,-9,1,1,63,0,1,0,2,2,-9,1,1,0,0,0,30,13,125.01232,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.8332105,0,42.36,17.83,54.1,59.11,1.666666666666667,1,1,0,1,13,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8133,9884,17678,-9,17675,17677,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1102.465,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,1,437.75,551284,298931.59,85875.031,0,0,0,1721.7034 +8134,9885,17679,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.9792757,6.8252611,0,0,0,-822.11328,0,2,-9,2021,12,0,6,14,1,0,0,17.065308,17.065308,0,0,0,0,0,0,0,2,1,1,0,4.1377683,0,47.3,49.86,-9,-9,6.666666666666667,1,1,0,0,11,10,2,1,36,78951.563,38648.613,0,0,8496.208,1265.436,809.65967 +8135,9886,17680,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-951.45319,0,3,2,2021,8,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.9150965,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,12,2,2,0,1791,-45088.047,0,0,0,0,0,1595.4875 +8136,9887,17681,17682,-9,-9,1,0,27,1,2,0,1,1,-9,0,2,0,0,0,6,-1,66.979027,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.1,51.9,52.54,54.24,8.333333333333334,1,1,0,0,2,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8136,9887,17682,17681,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,7.6519675,7.9423246,0,6,1,40.312252,0,2,2,2021,6,0,45,37,1,0,0,7.0710292,7.0710292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.54,54.24,47.1,51.9,6.666666666666667,1,1,0,0,7,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8136,9887,17683,-9,17681,17682,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.0668,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8136,9887,17684,-9,17681,17682,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.6051,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,912.25,-33449.121,-3866.5718,121807.7,94729.039,0,0,1709.4548 +8137,9888,17685,-9,17687,17686,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-938.84698,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17686,17687,-9,-9,1,1,32,0,4,0,2,2,-9,0,2,8.0996552,8.3797464,0,9,1,86.268692,0,-9,-9,2021,19,7,55,50,1,7,0,7.3618212,7.3618212,0,0,0,0,0,0,0,0,1,1,0,0,0,32.92,55.3,33.83,57.61,1.666666666666667,1,1,0,0,5,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17687,17686,-9,-9,1,0,31,0,4,0,2,2,-9,0,3,7.1806617,7.4157095,0,9,-1,29.995586,0,2,2,2021,17,5,32,0,1,5,0,5.3723574,5.3723574,0,0,0,0,0,0,0,0,1,1,0,0,0,33.83,57.61,32.92,55.3,5,1,1,0,0,3,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17688,-9,17687,17686,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-998.30066,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17689,-9,17687,17686,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-949.22491,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8137,9888,17690,-9,17687,17686,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1053.1746,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,0,770.16669,4200.9741,0,0,0,0,0,2294.9695 +8138,9889,17691,-9,17692,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.77362,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,472,86274.445,0,0,0,-30.486206,0,1250.5712 +8138,9889,17692,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,4,0,0,0,0,0,-897.91107,0,3,3,2021,10,0,0,18,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,1,1,0,0,7,11,1,0,472,86274.445,0,0,0,-30.486206,0,1250.5712 +8138,9890,17693,-9,17692,-9,1,1,25,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1028.9042,-9,2,-9,2021,26,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.28,54.7,-9,-9,5,1,1,1,1,0,11,2,0,103,-55477.324,0,0,0,0,0,316.91296 +8139,9891,17694,-9,17697,17698,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-988.23425,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17695,-9,17697,17698,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.86914,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17696,-9,17697,17698,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.77411,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17697,17698,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,8.7564535,8.5916576,6.6440344,7,0,-2.6227357,0,2,1,2021,6,0,35,34,1,0,0,14.322861,14.322861,0,0,0,0,0,0,0,0,1,1,0,6.7851415,0,51.14,60.45,44.41,56.75,6.666666666666667,1,1,0,0,9,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8139,9891,17698,17697,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.6465597,8.2875834,0,7,0,-11.446455,0,-9,3,2021,12,0,48,40,1,0,0,11.90353,11.90353,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.41,56.75,51.14,60.45,5,1,1,0,0,8,7,4,1,559.40002,539063.69,247463.94,143947.47,45691.145,0,0,4418.5967 +8140,9892,17699,-9,17701,17700,1,1,32,0,0,0,2,2,-9,0,2,7.357451,7.2313666,0,0,0,-973.65479,0,1,1,2021,8,0,60,75,1,0,0,2.9357986,2.9357986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.97,45.23,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,233,-259775.16,35694.711,0,0,0,0,71.723122 +8140,9893,17700,17701,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.2445116,8.519062,40,3,63.586712,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.42173,8.5880823,57.33,53.46,49.86,55.31,1.666666666666667,1,1,0,0,6,7,5,1,538.5,1772026.5,920399.25,643580.75,0,0,0,5130.2051 +8140,9893,17701,17700,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,8.5655975,8.346981,36,-3,24.503538,0,2,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3876638,49.86,55.31,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,538.5,1772026.5,920399.25,643580.75,0,0,0,5130.2051 +8141,9894,17702,17703,-9,-9,1,1,64,0,0,0,1,1,-9,0,1,0,0,0,5,5,0,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50,13.57,41.81,28.46,5,1,1,0,0,0,6,1,0,841.5,226138.02,125442.93,109449.95,42586.488,8713.2676,0,3172.0796 +8141,9894,17703,17702,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,0,0,29,-5,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.81,28.46,50,13.57,6.666666666666667,1,1,0,0,0,6,1,0,841.5,226138.02,125442.93,109449.95,42586.488,8713.2676,0,3172.0796 +8142,9895,17704,17705,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.4745293,8.6216335,6.3606482,44,1,.3565025,0,3,3,2021,6,0,37,35,1,0,0,13.04323,13.04323,.05,.05,0,0,0,0,0,0,0,0,0,8.4444313,6.6146612,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,11,7,5,1,451.5,274715.19,36277.684,184209.41,0,281.92456,0,3655.175 +8142,9895,17705,17704,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.0902824,8.1825504,7.5724053,10,-1,86.519882,0,-9,-9,2021,6,0,11,10,1,0,0,15.908466,15.908466,0,0,0,0,0,0,0,0,0,0,0,.67589641,7.6648631,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,11,7,5,1,451.5,274715.19,36277.684,184209.41,0,281.92456,0,3655.175 +8143,9896,17706,17707,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,7.8404512,7.446486,12,0,39.067368,0,-9,-9,2021,17,5,0,45,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0614042,7.8315167,39.97,38.85,57.16,56.15,6.666666666666667,1,1,0,0,14,7,3,1,320,1733226.3,0,803659.38,0,0,0,944.86938 +8143,9896,17707,17706,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.8182578,6.1469078,41,0,-160.41628,0,3,3,2021,9,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,5.8456287,57.16,56.15,39.97,38.85,10,1,1,0,0,14,7,3,1,320,1733226.3,0,803659.38,0,0,0,944.86938 +8144,9897,17708,17709,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.0042286,8.9795475,0,10,4,-51.762814,0,3,3,2021,9,0,48,24,1,0,0,19.870674,19.870674,.05,.05,0,0,0,0,0,0,0,0,0,2.8931737,0,57.16,56.15,49.96,56.89,8.333333333333334,1,1,0,0,12,12,5,1,1018,451221.97,207814.22,201866.5,0,0,0,3166.6309 +8144,9897,17709,17708,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,6.7165804,6.7822866,0,10,-4,-27.10393,0,2,3,2021,5,0,12,16,1,0,0,6.5909839,6.5909839,0,0,0,0,0,0,0,0,0,0,0,3.3037505,0,49.96,56.89,57.16,56.15,8.333333333333334,1,1,0,0,3,12,5,1,1018,451221.97,207814.22,201866.5,0,0,0,3166.6309 +8145,9898,17710,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,7.0652003,7.0228896,0,0,-1114.4832,0,2,2,2021,11,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9881368,6.9195685,48.93,26.59,-9,-9,8.333333333333334,1,1,0,0,12,11,3,1,673,126110.13,0,102760.63,0,0,0,1532.8761 +8146,9899,17711,17712,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.4036474,8.3760548,0,6,6,-109.23367,0,-9,-9,2021,7,0,54,54,1,0,0,8.7710295,8.7710295,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,52.33,48.81,10,1,1,0,0,7,4,4,1,1505,597007.63,169318.5,378698.69,163054.19,11300.19,0,2410.3801 +8146,9899,17712,17711,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.817378,8.1356688,0,6,-6,10.319122,0,3,3,2021,6,0,38,44,1,0,0,8.6215458,8.6215458,0,0,0,0,0,0,0,0,0,0,0,0,0,52.33,48.81,57.33,53.46,3.333333333333333,1,1,0,0,7,4,4,1,1505,597007.63,169318.5,378698.69,163054.19,11300.19,0,2410.3801 +8146,9900,17713,-9,17712,17711,1,0,29,0,0,0,3,3,-9,0,4,7.8126111,7.6175928,0,0,0,-860.03033,0,3,2,2021,19,7,33,43,1,7,1,7.2741976,7.2741976,0,0,0,0,0,0,0,2,0,0,0,0,0,34,53.28,-9,-9,6.666666666666667,1,1,0,0,7,4,3,1,360,68412.742,0,0,0,0,0,527.67474 +8146,9901,17714,-9,17712,17711,1,1,24,0,0,0,2,2,-9,0,4,7.8334665,7.9101934,0,0,0,-1016.4439,0,3,2,2021,5,0,45,45,1,0,1,8.2936878,8.2936878,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,10,1,1,0,0,3,4,4,1,551,109452.66,0,0,0,0,0,1460.7301 +8147,9902,17715,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.7661958,7.5804276,0,0,0,-951.2287,0,2,2,2021,22,10,35,30,1,10,0,7.5486212,7.5486212,0,0,0,0,0,0,0,0,1,1,0,.058224622,0,25.9,63.7,-9,-9,5,1,1,0,0,9,12,3,0,883,-35919.379,0,0,0,5832.6553,0,2467.626 +8148,9903,17716,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.913094,7.9395776,0,0,0,-963.76196,0,2,-9,2021,18,6,37,25,1,6,0,9.1394615,9.1394615,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.85,37.68,-9,-9,3.333333333333333,1,1,0,0,11,11,4,0,1448,-224908.05,67937.109,0,0,0,118.21195,1425.625 +8149,9904,17717,17718,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,8.0830297,7.9232826,39,2,146.32484,0,2,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4629562,8.3347311,39.97,49.59,54.2,57.49,6.666666666666667,1,1,0,0,8,9,5,1,1772.5,1762675,962495.88,346975.97,0,0,954.01123,4288.8081 +8149,9904,17718,17717,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8917246,8.9231462,7.7591386,13,-2,-26.796562,0,2,2,2021,12,0,48,46,1,0,0,17.454525,17.454525,0,0,0,0,0,0,0,0,0,0,0,0,8.0259647,54.2,57.49,39.97,49.59,6.666666666666667,1,1,0,0,14,9,5,1,1772.5,1762675,962495.88,346975.97,0,0,954.01123,4288.8081 +8150,9905,17719,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1007.6281,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,9,1,0,2460,-6393.4741,0,0,0,0,0,1718.9785 +8150,9906,17720,-9,17719,-9,1,1,49,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1054.1462,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,34.08,47.75,-9,-9,3.333333333333333,1,1,1,1,2,9,1,0,1646,-138530.53,-55419.332,0,0,-153.21581,0,339.34631 +8151,9907,17721,17722,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.2593536,8.6117916,0,7,7,19.713934,0,-9,-9,2021,15,5,37,38,1,5,0,10.034571,10.034571,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,52,55,6.666666666666667,1,1,0,0,9,6,5,1,346,364195.81,180375.06,74613.672,51356.43,1234.2974,0,3431.3276 +8151,9907,17722,17721,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.423317,8.5838928,0,7,-7,-23.942192,-9,2,3,2021,9,0,38,0,1,1,0,13.043678,13.043678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,55,43.61,56.01,8,1,1,0,0,1,6,5,1,346,364195.81,180375.06,74613.672,51356.43,1234.2974,0,3431.3276 +8151,9908,17723,-9,17721,17722,1,0,27,0,0,0,2,2,-9,0,4,8.2844992,8.0420141,0,0,0,-1015.8624,0,2,2,2021,11,0,41,46,1,0,1,8.0141439,8.0141439,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,174,-18204.275,-7153.3867,0,0,0,0,1755.7943 +8152,9909,17724,-9,17725,17726,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.5497,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,869,444428,282425.63,188578.94,79941.727,0,0,2526.5422 +8152,9909,17725,17726,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,7.6196027,7.4841437,0,10,-6,-126.76655,0,2,1,2021,12,0,20,20,1,0,0,9.443593,9.443593,0,0,0,0,0,0,0,0,1,1,0,0,0,42.11,37.38,39.59,57.55,6.666666666666667,1,1,0,1,7,7,4,1,869,444428,282425.63,188578.94,79941.727,0,0,2526.5422 +8152,9909,17726,17725,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.6033592,8.3123293,0,10,6,-141.55876,0,2,1,2021,15,4,47,45,1,4,0,11.911536,11.911536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.59,57.55,42.11,37.38,6.666666666666667,1,1,0,0,9,7,4,1,869,444428,282425.63,188578.94,79941.727,0,0,2526.5422 +8153,9910,17727,17728,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.2090359,6.5890155,50,-3,-37.308643,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4762487,6.9217987,52.4,49.92,59.88,48.2,8.333333333333334,1,1,0,0,11,2,3,1,817,850702.13,488767.56,273952.16,0,0,0,2655.9641 +8153,9910,17728,17727,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2405033,7.2717328,50,3,16.017414,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1729121,59.88,48.2,52.4,49.92,8.333333333333334,1,1,0,0,0,2,3,1,817,850702.13,488767.56,273952.16,0,0,0,2655.9641 +8154,9911,17729,17730,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,5.7280898,5.4386039,54,6,49.306889,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9469633,5.7268505,57.09,46.7,39.76,59.88,8.333333333333334,1,1,0,0,0,5,2,1,514,261801.13,0,284854.56,0,0,0,2281.7698 +8154,9911,17730,17729,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.1517401,5.1127582,54,-6,-88.58847,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3197818,5.3027091,39.76,59.88,57.09,46.7,6.666666666666667,1,1,0,0,0,5,2,1,514,261801.13,0,284854.56,0,0,0,2281.7698 +8155,9912,17731,-9,17733,17734,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-941.22156,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8155,9912,17732,-9,17733,17734,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1051.6189,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8155,9912,17733,17734,-9,-9,1,0,50,0,2,0,2,2,-9,0,4,7.6858087,7.5842652,0,13,-8,-13.454816,0,-9,-9,2021,4,0,38,25,1,0,0,5.7043576,5.7043576,.05,.05,0,0,0,0,0,0,1,1,0,3.283396,0,59.43,49.68,51.42,48.12,8.333333333333334,1,1,0,0,11,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8155,9912,17734,17733,-9,-9,1,1,58,0,2,0,2,2,-9,0,3,7.9967465,8.0464106,0,13,8,-34.115696,0,-9,-9,2021,12,0,40,37,1,0,0,10.338693,10.338693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,48.12,59.43,49.68,5,1,1,0,0,8,5,3,1,990.75,385888.63,160582.09,184786.55,0,0,0,2938.3638 +8156,9913,17735,17736,-9,-9,1,1,35,0,0,0,1,1,-9,0,2,8.3925934,8.5269861,0,4,-5,.97005588,0,-9,-9,2021,11,0,35,35,1,0,0,15.346426,15.346426,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.35,43.87,37.61,56.99,8.333333333333334,1,1,0,0,4,2,5,1,1128.5,197203.23,89747.969,111332.52,126230.5,-1357.7941,0,3513.7559 +8156,9913,17736,17735,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,7.5825925,7.7576728,5.5305495,4,5,34.331387,0,2,2,2021,11,0,45,45,1,0,0,8.1183128,8.1183128,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7683911,37.61,56.99,55.35,43.87,6.666666666666667,1,1,0,0,10,2,5,1,1128.5,197203.23,89747.969,111332.52,126230.5,-1357.7941,0,3513.7559 +8156,9914,17737,-9,17736,17735,1,1,18,0,0,0,2,2,-9,0,2,6.604311,7.1214213,0,0,0,-927.42499,0,3,1,2021,6,0,16,0,1,0,1,5.0328202,5.0328202,0,0,0,0,0,0,0,0,1,1,0,0,0,57.74,44.14,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,944,112389.48,0,0,0,0,0,850.25787 +8157,9915,17738,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,2,7.7105327,7.664927,0,0,0,-1011.262,0,-9,-9,2021,17,7,40,38,1,7,0,7.2597132,7.2597132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.05,54.95,-9,-9,6.666666666666667,1,1,0,0,3,4,4,0,1591,49447.559,16083.372,0,0,0,0,575.96185 +8158,9916,17739,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-954.35095,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,61.37,34.18,-9,-9,6.666666666666667,1,1,0,0,8,1,2,0,781,-139361.11,0,0,0,0,0,478.61932 +8159,9917,17740,-9,17742,17741,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.8563,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9917,17741,17742,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,7.8113346,7.8181734,0,21,3,11.332438,0,-9,-9,2021,11,0,60,60,1,0,0,6.3346596,6.3346596,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.25,51.98,58.47,50.22,5,1,1,0,0,14,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9917,17742,17741,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.0930882,9.3014956,0,21,-3,-24.014544,0,3,1,2021,4,0,20,20,1,0,0,32.372761,32.372761,0,0,0,0,0,0,0,0,1,0,1,0,0,58.47,50.22,43.25,51.98,8.333333333333334,1,1,0,0,9,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9917,17743,-9,17742,17741,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-998.39178,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,4,1,869.75,385705.38,131794.78,499585.16,252915.81,789.85901,886.57654,4734.9883 +8159,9918,17744,-9,17742,17741,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-995.112,-9,1,2,2021,23,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.76,64.44,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,298,1017.9064,0,0,0,0,0,0 +8160,9919,17745,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-822.67084,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.33,25.91,-9,-9,10,1,1,0,1,0,12,1,0,413,-80520.352,0,70277.141,24054.35,0,0,2100.7168 +8160,9920,17746,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-946.53601,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,1,0,0,12,1,0,306,245354.13,0,0,0,0,0,0 +8161,9921,17747,17748,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,6.1266427,6.3869901,0,31,-3,55.536999,0,3,2,2021,14,2,8,8,1,2,0,8.1285181,8.1285181,0,0,0,0,0,0,0,118,1,1,0,0,0,44.2,41.74,57.33,53.46,5,1,1,0,0,10,6,4,1,578,354655.69,399660.31,126834.7,89613.156,0,0,2306.1714 +8161,9921,17748,17747,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5599546,8.6052227,5.479197,32,3,19.401651,0,2,-9,2021,6,0,44,45,1,0,0,17.120083,17.120083,.05,.05,0,0,0,0,0,2,1,1,0,5.7200603,6.0763106,57.33,53.46,44.2,41.74,8.333333333333334,1,1,0,0,9,6,4,1,578,354655.69,399660.31,126834.7,89613.156,0,0,2306.1714 +8161,9922,17749,-9,17747,17748,1,1,22,0,0,0,2,2,-9,0,4,7.3237352,7.4823413,0,0,0,-1039.2521,0,2,2,2021,13,1,44,0,1,1,1,4.303122,4.303122,0,0,0,0,0,0,0,0,1,1,0,0,0,46.14,54.22,-9,-9,6.666666666666667,1,1,0,0,2,6,3,1,598,-28069.242,0,0,0,0,0,771.2149 +8162,9923,17750,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,7.9792724,8.2843666,0,0,0,-997.4577,0,1,1,2021,6,0,39,39,1,0,0,11.694613,11.694613,0,0,0,0,0,0,0,0,0,0,0,4.9622502,0,49.11,52.88,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,588,79035.328,-55632.047,72847.211,53104.414,-831.83569,0,1857.0945 +8163,9924,17751,17752,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.9847383,9.1232147,0,4,-2,2.7382936,0,-9,-9,2021,8,1,41,40,1,1,0,28.094904,28.094904,.05,.05,0,0,0,0,0,0,0,0,0,8.8555193,0,51.09,53.64,57.16,35.48,8.333333333333334,3,4,0,0,5,8,5,1,940.5,1090936.8,435543,626645.38,111674.83,-237.51422,0,7655.0156 +8163,9924,17752,17751,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5220194,8.4012852,6.2274518,4,2,12.286574,0,2,2,2021,6,0,35,35,1,0,0,16.296762,16.296762,0,0,0,0,0,0,0,0,0,0,0,6.070539,5.7771754,57.16,35.48,51.09,53.64,8.333333333333334,3,4,0,0,7,8,5,1,940.5,1090936.8,435543,626645.38,111674.83,-237.51422,0,7655.0156 +8163,9925,17753,-9,17752,17751,1,0,25,0,0,0,1,1,-9,0,3,8.84694,8.7383795,0,0,0,-1119.6516,0,2,1,2021,15,4,50,48,1,4,1,13.313985,13.313985,0,0,0,0,0,0,0,0,0,0,0,0,0,30.7,62.92,-9,-9,6.666666666666667,3,4,0,0,3,8,5,1,629,-92983.703,69833.758,0,0,0,0,2255.2136 +8164,9926,17754,17755,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,6.5760479,6.2601089,0,4,-12,67.750259,0,1,1,2021,8,0,36,36,1,0,0,2.4102705,2.4102705,0,0,0,0,0,0,0,0,0,0,0,1.2586136,0,51.02,52.22,54.37,54.8,8.333333333333334,1,1,0,0,10,8,3,0,342.5,74844.313,39657.578,182646.86,115644.22,0,20605.941,2120.8479 +8164,9926,17755,17754,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.2987223,8.065361,0,4,12,46.499088,0,-9,-9,2021,11,0,16,16,1,0,0,19.79512,19.79512,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.37,54.8,51.02,52.22,8.333333333333334,1,1,0,0,5,8,3,0,342.5,74844.313,39657.578,182646.86,115644.22,0,20605.941,2120.8479 +8165,9927,17756,17757,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.1160402,9.0581694,0,22,4,-63.937504,0,2,2,2021,13,1,40,40,1,1,0,24.325623,24.325623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.38,58.1,30.87,65.23999999999999,5,1,1,0,0,14,10,5,1,1504.3334,1543985.9,1096538.1,816772.44,535233.38,0,496.51099,6833.4727 +8165,9927,17757,17756,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,9.2116518,9.1979017,0,22,-4,-62.961597,0,2,-9,2021,15,3,38,35,1,3,0,28.523928,28.523928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.87,65.23999999999999,44.38,58.1,6.666666666666667,1,1,0,0,12,10,5,1,1504.3334,1543985.9,1096538.1,816772.44,535233.38,0,496.51099,6833.4727 +8165,9927,17758,-9,17757,17756,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.60266,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1504.3334,1543985.9,1096538.1,816772.44,535233.38,0,496.51099,6833.4727 +8166,9928,17759,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,0,5.8403635,5.9851928,0,0,-975.76331,0,2,2,2021,8,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4165983,0,51.83,57.2,-9,-9,6.666666666666667,1,1,1,0,8,6,2,1,774.5,30822.877,0,0,0,0,0,-262.55731 +8166,9928,17760,-9,17759,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.0548,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,1,774.5,30822.877,0,0,0,0,0,-262.55731 +8167,9929,17761,17762,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,8.60886,8.4994488,0,6,1,61.224682,-9,-9,-9,2021,8,0,37,0,1,0,0,13.129127,13.129127,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,6.666666666666667,1,1,0,0,5,10,4,1,709.33331,30835.805,-31929.521,0,0,0,0,3495.4517 +8167,9929,17762,17761,-9,-9,1,0,27,1,1,0,2,2,-9,0,4,7.6604242,7.3276525,0,6,-1,-13.929181,0,-9,-9,2021,12,1,15,15,1,1,0,12.820512,12.820512,0,0,0,0,0,0,0,0,1,1,0,1.1519742,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,5,10,4,1,709.33331,30835.805,-31929.521,0,0,0,0,3495.4517 +8167,9929,17763,-9,17762,17761,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.65149,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,1,709.33331,30835.805,-31929.521,0,0,0,0,3495.4517 +8168,9930,17764,17765,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.1470232,6.8830185,0,16,5,62.268162,0,3,2,2021,12,0,18,17,1,0,0,7.9049029,7.9049029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.13,50.73,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,1331,23732.484,-55299.094,73524.156,46619.555,0,0,1651.9768 +8168,9930,17765,17764,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,7.8892388,7.9751291,0,15,-5,40.497993,0,2,3,2021,10,1,35,30,1,1,0,9.0308466,9.0308466,.05,.05,0,0,0,0,0,2,0,0,0,1.9770163,0,57.16,56.15,51.13,50.73,8.333333333333334,1,1,0,0,9,13,4,1,1331,23732.484,-55299.094,73524.156,46619.555,0,0,1651.9768 +8169,9931,17766,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.3504725,8.2651196,0,0,0,-1058.6936,0,-9,3,2021,21,9,38,37,1,9,0,12.428816,12.428816,0,0,0,0,0,0,0,0,1,1,0,0,0,38.15,55.39,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,254,835699.25,39407.227,836953.81,155649,-1233.0098,-1919.6763,1382.5828 +8169,9932,17767,-9,17766,-9,1,0,24,0,0,0,2,2,-9,0,4,7.958837,7.9608006,0,0,0,-1064.4434,0,1,-9,2021,12,0,40,38,1,2,1,9.4238434,9.4238434,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,4,1,1397,-8430.0596,0,0,0,0,0,1590.1638 +8170,9933,17768,17769,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,5.951468,6.1702547,22,9,111.41755,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,1.853157,0,0,1,1,0,5.9593096,6.3404236,40.78,20.86,59.45,33.75,6.666666666666667,1,1,0,0,0,9,2,1,1705,448214.69,0,0,0,0,0,878.47058 +8170,9933,17769,17768,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,7,0,122.97122,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.45,33.75,40.78,20.86,8.333333333333334,1,1,0,0,7,9,2,1,1705,448214.69,0,0,0,0,0,878.47058 +8171,9934,17770,17771,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,7.9241772,7.7882452,0,5,0,-116.35056,0,-9,-9,2021,12,1,45,44,1,1,0,7.778748,7.778748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.79,56.27,57.65,56.13,8.333333333333334,1,1,0,0,3,9,5,1,930.5,44974.797,-86213.203,266160.56,217331.25,0,0,3649.5737 +8171,9934,17771,17770,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,8.9439201,9.1258202,0,5,0,17.444067,0,2,2,2021,6,0,55,45,1,0,0,17.902824,17.902824,.05,.05,0,0,0,0,0,0,0,0,0,3.2283278,0,57.65,56.13,50.79,56.27,8.333333333333334,1,1,0,0,5,9,5,1,930.5,44974.797,-86213.203,266160.56,217331.25,0,0,3649.5737 +8172,9935,17772,17774,-9,-9,1,1,48,0,0,0,3,3,-9,0,5,7.6403418,7.4394917,0,18,8,71.716187,0,-9,-9,2021,2,0,37,37,1,0,0,6.4225154,6.4225154,0,0,0,0,0,0,0,0,1,1,0,0,0,59.44,42.44,57.92,51.82,10,2,3,0,0,11,2,3,1,816,267298.91,76152.914,298711.84,69953.82,0,542.14508,1114.4818 +8172,9935,17773,-9,17774,17772,1,0,16,0,0,1,2,0,-9,0,5,0,0,0,0,0,-828.29974,-9,3,3,2021,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,1,2,3,1,816,267298.91,76152.914,298711.84,69953.82,0,542.14508,1114.4818 +8172,9935,17774,17772,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,.94974786,.56249726,0,18,-8,-71.85672,0,-9,-9,2021,0,0,11,6,1,0,0,.021596383,.021596383,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,59.44,42.44,10,2,3,0,0,9,2,3,1,816,267298.91,76152.914,298711.84,69953.82,0,542.14508,1114.4818 +8172,9936,17775,-9,17774,17772,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-925.19012,-9,3,3,2021,14,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,2,1,1,468,-103681.05,0,0,0,0,0,-368.48843 +8173,9937,17776,17779,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,8.6399899,9.1170197,0,7,0,-5.55053,0,-9,-9,2021,25,9,40,40,1,9,0,26.108114,26.108114,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.26,71.08,27.12,48.48,1.666666666666667,1,1,0,0,9,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17777,-9,17779,17776,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-944.72577,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17778,-9,17779,17776,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-889.44995,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17779,17776,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,7.5222373,7.863142,0,19,0,-97.006386,0,2,2,2021,25,11,11,12,1,11,0,19.529459,19.529459,0,0,0,0,0,0,0,0,1,1,0,0,0,27.12,48.48,22.26,71.08,1.666666666666667,1,1,0,0,9,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8173,9937,17780,-9,17779,17776,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.1355,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,925,-12412.764,81506.102,92975.672,106135.52,0,0,4017.1243 +8174,9938,17781,17783,-9,-9,1,0,31,0,1,0,1,1,-9,0,4,7.261488,7.1638899,0,7,-1,-76.403877,0,-9,-9,2021,9,1,33,17,1,1,0,4.7388368,4.7388368,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,8,2,4,1,1966,101982.36,27762.881,97905.813,100865.93,13321.648,742.99109,3105.4092 +8174,9938,17782,-9,17781,17783,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.9733,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1966,101982.36,27762.881,97905.813,100865.93,13321.648,742.99109,3105.4092 +8174,9938,17783,17781,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.6788521,8.6253128,0,7,1,-71.198402,0,-9,-9,2021,10,0,44,36,1,1,0,15.299023,15.299023,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,0,0,1,2,4,1,1966,101982.36,27762.881,97905.813,100865.93,13321.648,742.99109,3105.4092 +8175,9939,17784,17785,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.98703,7.8831806,0,4,0,-30.987175,0,-9,-9,2021,10,2,38,38,1,2,0,8.1835623,8.1835623,.05,.05,0,0,0,0,0,2,0,0,0,0,0,40.76,50.23,48,49,8.333333333333334,1,1,0,0,9,11,4,1,731.5,482981.97,364179.75,117129.34,-5299.3984,-477.81134,0,2603.8179 +8175,9939,17785,17784,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.9108262,8.2772131,5.4221263,4,0,-170.26155,0,-9,-9,2021,11,0,30,30,1,2,0,12.424194,12.424194,.05,.05,0,0,0,0,0,0,0,0,0,.37140766,5.1107426,48,49,40.76,50.23,7,1,1,0,0,1,11,4,1,731.5,482981.97,364179.75,117129.34,-5299.3984,-477.81134,0,2603.8179 +8176,9940,17786,-9,17789,17787,1,0,16,0,2,1,2,0,-9,0,2,0,0,0,0,0,-1025.582,-9,2,2,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,7.38,59.26,-9,-9,3.333333333333333,1,1,0,0,0,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8176,9940,17787,17789,-9,-9,1,1,39,0,2,0,2,2,-9,1,3,8.3397961,8.5315495,0,10,1,22.841797,0,2,3,2021,8,1,38,38,1,1,0,15.291225,15.291225,.05,.05,0,0,0,0,0,27,1,1,0,0,0,43.71,56.91,19.01,22.64,3.333333333333333,1,1,0,0,11,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8176,9940,17788,-9,17789,17787,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1026.036,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8176,9940,17789,17787,-9,-9,1,0,38,0,2,0,2,2,-9,1,1,0,0,0,10,-1,-121.0812,0,2,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0333185,0,19.01,22.64,43.71,56.91,6.666666666666667,1,1,0,0,5,7,3,1,643.5,78828.641,11467.794,0,0,0,180.4892,2442.6465 +8177,9941,17790,-9,17792,17791,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1149.2892,-9,3,2,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.85,45.17,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,427.66666,91652.727,60818.66,195929.89,121129.44,254.41568,0,2532.8511 +8177,9941,17791,17792,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.721242,8.502799,0,6,0,72.826378,0,-9,-9,2021,9,0,40,40,1,1,0,18.381922,18.381922,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,57.9,22.03,8,1,1,0,0,1,7,4,1,427.66666,91652.727,60818.66,195929.89,121129.44,254.41568,0,2532.8511 +8177,9941,17792,17791,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.1458068,7.2170887,0,23,0,-116.98985,0,2,2,2021,13,3,22,20,1,3,0,8.8549519,8.8549519,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,22.03,53,55,5,1,1,0,0,9,7,4,1,427.66666,91652.727,60818.66,195929.89,121129.44,254.41568,0,2532.8511 +8177,9942,17793,-9,17792,17791,1,0,19,0,0,0,2,2,1,0,3,8.0415888,8.0008688,0,0,0,-1124.2635,-9,3,2,2021,11,1,38,0,1,1,1,6.5728116,6.5728116,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,-9,-9,6.666666666666667,1,1,0,0,1,7,3,1,1294,86099.922,-55940,0,0,0,0,1469.7621 +8178,9943,17794,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,7.8784409,7.8041902,0,0,0,-1115.5378,0,2,2,2021,15,3,37,36,1,3,0,9.0029917,9.0029917,0,0,0,0,0,0,0,0,0,0,0,0,0,28.13,46.94,-9,-9,6.666666666666667,1,1,0,0,12,10,4,0,659,-280009.59,0,0,0,0,0,1434.6448 +8179,9944,17795,17796,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.1687269,8.6924477,0,15,-1,-48.596027,0,2,2,2021,10,1,45,44,1,1,0,11.76467,11.76467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,53,56,8.333333333333334,1,1,0,0,12,6,5,1,407,-97742.219,48363.195,182926.16,86556.93,0,0,3388.5869 +8179,9944,17796,17795,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.8933887,8.0365753,0,15,1,-104.68874,0,3,3,2021,9,0,34,33,1,0,0,9.2367935,9.2367935,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,56,54.2,57.49,6.666666666666667,1,1,0,0,13,6,5,1,407,-97742.219,48363.195,182926.16,86556.93,0,0,3388.5869 +8180,9945,17797,17798,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,4,-8,0,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,19.352877,0,7,1,1,0,0,0,51,48,51,46,7,1,1,0,0,0,11,1,0,773,125341.16,0,84001.406,0,0,0,1834.2323 +8180,9945,17798,17797,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,4,8,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,24.995441,0,27,1,1,0,0,0,51,46,51,48,7,1,1,0,0,0,11,1,0,773,125341.16,0,84001.406,0,0,0,1834.2323 +8181,9946,17799,17800,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.612112,9.5930557,0,3,6,-6.3457751,0,-9,-9,2021,8,0,80,47,1,0,0,26.193113,26.193113,0,0,.05,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.93,46.29,10,1,1,0,0,12,12,5,0,338,3641366.5,3179808.5,701431.19,376941.19,4170.5537,0,6635.0273 +8181,9946,17800,17799,-9,-9,1,0,32,0,0,0,1,1,1,0,3,8.3446751,8.2585278,0,3,-6,-34.684212,-9,-9,-9,2021,10,0,41,0,1,0,0,14.000632,14.000632,0,0,0,0,0,0,0,0,0,0,0,0,0,57.93,46.29,62.39,56.71,8.333333333333334,1,1,0,0,4,12,5,0,338,3641366.5,3179808.5,701431.19,376941.19,4170.5537,0,6635.0273 +8182,9947,17801,-9,17803,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.8584,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,901.66669,52051.086,0,0,0,0,828.72839,2490.1074 +8182,9947,17802,-9,17803,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.6727,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,901.66669,52051.086,0,0,0,0,828.72839,2490.1074 +8182,9947,17803,-9,-9,-9,1,0,54,0,2,0,3,3,-9,1,4,0,3.4358773,3.2687795,0,0,-1160.7385,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,3.407867,52.38,50.07,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,901.66669,52051.086,0,0,0,0,828.72839,2490.1074 +8183,9948,17804,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.1028581,7.221839,0,0,-909.12622,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,5.2083588,7.1712961,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,7,12,2,0,824,55077.086,-106704.26,0,0,0,0,1207.2092 +8184,9949,17805,17806,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.0259123,7.8815794,0,28,-6,-138.98067,0,2,2,2021,12,0,40,40,1,0,0,9.6911983,9.6911983,0,0,.05,0,0,0,0,0,0,0,0,0,0,51.59,47.74,37.7,59.45,6.666666666666667,1,1,0,0,12,6,4,1,1351.5,428791.69,270428.88,245930.8,0,0,1513.4342,1729.0031 +8184,9949,17806,17805,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.3995581,7.612009,0,28,6,-60.287857,0,2,2,2021,12,2,25,0,1,2,0,10.289327,10.289327,0,0,0,0,0,0,0,0,0,0,0,3.3342357,0,37.7,59.45,51.59,47.74,6.666666666666667,1,1,0,0,7,6,4,1,1351.5,428791.69,270428.88,245930.8,0,0,1513.4342,1729.0031 +8184,9950,17807,-9,17806,17805,1,1,20,0,0,1,2,0,0,0,5,0,7.7730575,7.5131593,0,0,-1052.7728,-9,2,2,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.232275,0,49,62,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,584,-118225.35,-42339.176,0,0,21344.508,2650.8384,2401.1558 +8184,9951,17808,-9,17806,17805,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-980.26617,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0892048,0,35.22,59.39,-9,-9,6.666666666666667,1,1,0,0,2,6,1,1,88,-40618.281,0,0,0,0,0,815.61469 +8185,9952,17809,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.3827562,6.79177,0,0,-898.59656,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3568106,7.2837939,57.03,34.83,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1249,367656.22,151612.25,248799.75,0,0,0,1478.1989 +8186,9953,17810,17811,-9,-9,1,0,79,0,0,0,1,1,-9,0,4,0,8.5316019,8.7008991,57,0,-22.206079,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4666376,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,0,7,5,1,293.5,3260003.5,1844289.3,1193662.5,0,0,0,5946.9268 +8186,9953,17811,17810,-9,-9,1,1,79,0,0,0,1,1,-9,0,5,0,8.0783863,8.358242,60,0,116.82715,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4823775,8.4844847,54.1,59.11,57.16,56.15,10,4,2,0,0,0,7,5,1,293.5,3260003.5,1844289.3,1193662.5,0,0,0,5946.9268 +8187,9954,17812,-9,17813,17815,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.8517,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8187,9954,17813,17815,-9,-9,1,0,31,0,2,0,2,2,-9,0,3,0,0,0,7,-12,-25.585752,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,54.85,53.17,48.87,6.666666666666667,1,1,0,0,1,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8187,9954,17814,-9,17813,17815,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.7372,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8187,9954,17815,17813,-9,-9,1,1,43,0,2,0,2,2,-9,0,2,7.5648975,7.7190309,0,7,12,60.736965,0,-9,-9,2021,9,0,40,30,1,0,0,6.6658077,6.6658077,.05,.05,0,0,0,0,0,0,1,1,0,4.4242759,0,53.17,48.87,42.61,54.85,6.666666666666667,1,1,0,0,8,10,2,0,780.25,383977.41,234378.47,177297.28,59507.883,0,873.66302,2031.7434 +8188,9955,17816,17818,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.1284332,8.1672764,0,11,2,-19.121233,0,2,-9,2021,10,2,47,47,1,2,0,7.6069808,7.6069808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.15,55.39,38.8,36.49,6.666666666666667,1,1,0,0,13,10,3,1,391.33334,146968.92,114918.17,0,0,0,0,1327.3031 +8188,9955,17817,-9,17818,17816,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.6032,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,3,1,391.33334,146968.92,114918.17,0,0,0,0,1327.3031 +8188,9955,17818,17816,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,6.8677893,6.7916718,0,11,-2,-.96447617,0,3,3,2021,21,8,16,19,1,8,0,7.8195782,7.8195782,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,36.49,47.15,55.39,1.666666666666667,1,1,0,0,9,10,3,1,391.33334,146968.92,114918.17,0,0,0,0,1327.3031 +8189,9956,17819,17821,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,8.9773359,8.9106007,0,6,1,37.135525,0,-9,-9,2021,6,0,37,-9,1,0,0,19.391132,19.391132,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.16,56.15,10,3,4,0,0,9,7,5,1,486,106760,9171.7783,499516.13,379931.78,9812.9932,4518.0845,5434.7896 +8189,9956,17820,-9,17819,17821,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.75439,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,486,106760,9171.7783,499516.13,379931.78,9812.9932,4518.0845,5434.7896 +8189,9956,17821,17819,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.8785448,8.5946426,0,6,-1,10.600204,0,2,2,2021,6,0,35,35,1,0,0,24.880566,24.880566,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,12,7,5,1,486,106760,9171.7783,499516.13,379931.78,9812.9932,4518.0845,5434.7896 +8190,9957,17822,17823,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.9745407,5.9081907,42,0,141.59938,0,3,-9,2021,11,0,0,27,4,0,0,0,0,0,0,0,0,0,0,.50412369,0,1,1,0,5.286274,5.736815,49.2,42.35,52.6,52.88,10,1,1,0,0,10,6,2,1,356.5,465717.81,119348.36,121547.94,0,0,0,2078.1658 +8190,9957,17823,17822,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,42,0,28.383017,0,3,3,2021,7,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,49.2,42.35,10,1,1,0,0,13,6,2,1,356.5,465717.81,119348.36,121547.94,0,0,0,2078.1658 +8191,9958,17824,17825,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0526152,7.9632235,0,8,9,185.94765,0,3,2,2021,11,1,14,14,1,1,0,17.84021,17.84021,.05,.05,.05,0,0,0,0,7,0,0,0,5.9971981,0,40.84,39.49,23.82,49.01,10,1,1,0,0,8,12,4,1,444,438117.94,405509.56,144907.31,22750.826,0,0,3271.1023 +8191,9958,17825,17824,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.8237381,7.5195894,0,8,0,122.08012,0,-9,-9,2021,24,11,35,0,1,11,0,6.267767,6.267767,0,0,0,0,0,0,0,0,0,0,0,0,0,23.82,49.01,40.84,39.49,6.666666666666667,1,1,0,1,8,12,4,1,444,438117.94,405509.56,144907.31,22750.826,0,0,3271.1023 +8192,9959,17826,17827,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,55,-6,-53.126282,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,51.25,46.55,41.7,39.18,8.333333333333334,1,1,0,0,0,5,3,1,994.5,724823.5,131868.73,292623.38,0,0,0,2226.1189 +8192,9959,17827,17826,-9,-9,1,1,78,0,0,0,1,1,-9,0,2,0,7.3736243,7.2519927,55,6,74.187302,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,3.6213963,0,0,1,1,0,6.9063272,7.6487417,41.7,39.18,51.25,46.55,5,1,1,0,0,0,5,3,1,994.5,724823.5,131868.73,292623.38,0,0,0,2226.1189 +8193,9960,17828,17829,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,8.5930891,8.3528976,0,8,0,-35.84589,0,2,2,2021,10,0,45,75,1,0,0,14.246939,14.246939,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,58.15,52.91,1.666666666666667,1,1,0,0,9,2,5,1,302,685503,426645.03,113302.93,60826.203,0,455.91351,3225.2034 +8193,9960,17829,17828,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.7557116,7.4334712,0,8,0,126.28529,0,2,2,2021,7,0,18,35,1,0,0,14.960121,14.960121,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,58.05,54.52,8.333333333333334,1,1,0,0,9,2,5,1,302,685503,426645.03,113302.93,60826.203,0,455.91351,3225.2034 +8194,9961,17830,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1069.5374,0,-9,-9,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.26,30.38,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,932,-108104.15,0,0,0,0,0,1442.2357 +8195,9962,17831,17832,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.9339733,6.3615317,49,-3,90.776489,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7278628,6.502243,60.72,47.63,56.35,51,8.333333333333334,1,1,0,0,10,2,2,1,612.5,419095.44,91261.609,187195.44,0,0,0,2387.5615 +8195,9962,17832,17831,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,2.6177731,2.4480958,49,3,10.904905,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.062181,2.482702,56.35,51,60.72,47.63,10,1,1,0,0,7,2,2,1,612.5,419095.44,91261.609,187195.44,0,0,0,2387.5615 +8196,9963,17833,17834,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.8378587,7.1304002,49,2,-103.69775,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4191661,7.3109913,58.61,40.49,54.61,43.01,10,1,1,0,0,0,6,4,1,399,1352307,1073630.8,384022.5,69928.258,0,0,2157.7271 +8196,9963,17834,17833,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.1223059,7.636673,49,-2,2.5662391,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2844434,7.7219038,54.61,43.01,58.61,40.49,10,1,1,0,0,3,6,4,1,399,1352307,1073630.8,384022.5,69928.258,0,0,2157.7271 +8197,9964,17835,-9,17837,17838,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.355,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8197,9964,17836,-9,17837,17838,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3989,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,2,3,-9,0,0,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8197,9964,17837,17838,-9,-9,1,0,36,0,2,0,2,2,-9,1,1,8.7567062,8.4728918,0,12,-1,-15.820024,0,2,3,2021,23,10,24,24,1,10,0,34.660488,34.660488,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.37,19.65,47.29,55.39,6.666666666666667,2,3,0,0,12,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8197,9964,17838,17837,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,7.6020637,7.7006755,0,11,1,-49.526306,0,-9,-9,2021,6,0,40,40,1,0,0,5.0158014,5.0158014,.05,.05,0,0,0,0,0,0,1,0,1,0,0,47.29,55.39,43.37,19.65,8.333333333333334,2,3,0,0,11,13,4,1,650,-12287.908,-43275.332,223572.34,154717.28,15157.405,3133.4258,4979.1079 +8198,9965,17839,17840,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-4,-62.811462,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2410558,0,59.31,49.81,57.91,48.98,8.333333333333334,1,1,0,0,0,10,2,1,1590.5,812762.75,273392.44,448107.5,0,0,0,2019.4058 +8198,9965,17840,17839,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,6.5609121,6.6594186,55,4,39.439198,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1309838,7.1197004,57.91,48.98,59.31,49.81,8.333333333333334,1,1,0,0,0,10,2,1,1590.5,812762.75,273392.44,448107.5,0,0,0,2019.4058 +8199,9966,17841,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.2615261,8.3864307,0,0,0,-1065.6068,0,2,3,2021,8,0,40,43,1,0,0,11.911732,11.911732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,13,1,4,1,669,311506,95921.336,0,0,5291.6245,0,2707.2656 +8200,9967,17842,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.2368965,8.2593908,0,0,0,-1069.5688,0,-9,-9,2021,7,0,50,50,1,0,0,11.404789,11.404789,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,1374,249268.17,0,0,0,0,0,1255.5913 +8201,9968,17843,17844,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.6522923,6.3508406,51,1,26.611418,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7644954,6.4189868,43.07,38.31,54.38,49.27,6.666666666666667,1,1,0,0,0,9,2,0,493.5,176021.25,110450.86,225039.83,0,0,0,1861.946 +8201,9968,17844,17843,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,51,-1,2.7144942,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,54.38,49.27,43.07,38.31,8.333333333333334,1,1,0,0,0,9,2,0,493.5,176021.25,110450.86,225039.83,0,0,0,1861.946 +8202,9969,17845,17846,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.028821,6.9227428,55,0,122.02484,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7550778,54.69,30.23,67.36,35.12,6.666666666666667,1,1,0,0,0,10,2,1,916.5,367912.75,0,256827.69,0,0,0,1472.9548 +8202,9969,17846,17845,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,0,-49.478096,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,67.36,35.12,54.69,30.23,10,1,1,0,0,0,10,2,1,916.5,367912.75,0,256827.69,0,0,0,1472.9548 +8203,9970,17847,17848,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,9.5881119,9.4140844,47,0,30.304361,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6346231,9.4555292,46.67,55.7,57.16,56.15,6.666666666666667,1,1,0,0,2,2,5,1,740.5,3780768.5,2947399,366393.34,0,0,0,9538.9805 +8203,9970,17848,17847,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.1900063,8.0798054,47,0,-89.889076,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.62836736,8.0195684,57.16,56.15,46.67,55.7,8.333333333333334,1,1,0,0,0,2,5,1,740.5,3780768.5,2947399,366393.34,0,0,0,9538.9805 +8204,9971,17849,-9,17852,17851,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.21997,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8204,9971,17850,-9,17852,17851,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-945.00891,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8204,9971,17851,17852,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.851881,8.9927845,0,8,4,144.1998,0,-9,2,2021,12,3,40,40,1,3,0,19.58963,19.58963,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.37,54.8,57.16,56.15,1.666666666666667,1,1,0,0,9,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8204,9971,17852,17851,-9,-9,1,0,48,0,2,0,3,3,-9,0,4,6.8050537,6.7679658,0,8,-4,-85.938614,0,2,-9,2021,9,0,14,15,1,0,0,5.9635353,5.9635353,.05,.05,0,0,0,0,0,0,1,1,0,1.8043658,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,6,1,4,1,941.5,146912.91,9815.6689,179985.75,0,0,0,3119.5044 +8205,9972,17853,17854,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,8.0382528,7.9313598,28,0,128.41708,0,-9,-9,2021,8,0,0,20,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8755889,36.62,44.17,46.96,45.96,10,1,1,0,0,7,10,4,0,737.5,936897.5,518461.06,383652.22,0,0,0,2543.5034 +8205,9972,17854,17853,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.5824609,7.870985,6.001811,22,9,95.192734,0,3,3,2021,9,0,46,45,1,0,0,5.4824209,5.4824209,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9101892,46.96,45.96,36.62,44.17,6.666666666666667,1,1,0,1,8,10,4,0,737.5,936897.5,518461.06,383652.22,0,0,0,2543.5034 +8206,9973,17855,17857,-9,-9,1,0,47,0,1,0,3,3,-9,0,2,7.5951972,7.7258801,0,7,13,61.802021,0,-9,-9,2021,11,0,21,21,1,0,0,11.189455,11.189455,0,0,0,0,0,0,0,7,1,1,0,0,0,48.44,48.29,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,896.33331,8245.0361,0,0,0,0,0,2211.8196 +8206,9973,17856,-9,17855,17857,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.09406,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,896.33331,8245.0361,0,0,0,0,0,2211.8196 +8206,9973,17857,17855,-9,-9,1,1,34,0,1,0,2,2,-9,0,4,7.9571757,7.645505,0,9,-13,-60.453583,0,-9,-9,2021,8,0,42,42,1,0,0,8.0921574,8.0921574,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.44,48.29,8.333333333333334,1,1,0,0,9,10,3,1,896.33331,8245.0361,0,0,0,0,0,2211.8196 +8206,9974,17858,-9,17855,17857,1,0,22,0,1,0,2,2,-9,0,3,8.1196566,8.4092884,0,0,0,-1006.8668,0,2,3,2021,11,0,50,46,1,0,1,7.9427772,7.9427772,0,0,0,0,0,0,0,0,1,1,0,3.2577584,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,703,-91428.797,43334.652,0,0,1823.0876,2408.3679,1189.1318 +8207,9975,17859,17860,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,5.5019369,5.9311876,19,4,75.210243,0,3,3,2021,7,0,0,39,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5544276,5.6402431,60.44,46.58,48,48,8.333333333333334,1,1,0,0,11,12,3,1,516.5,1081806.8,746072.94,143532.56,0,0,0,2764.6814 +8207,9975,17860,17859,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,7.8931136,8.0857925,5.2137375,15,-4,-105.18548,0,3,3,2021,25,11,38,37,1,11,0,12.319816,12.319816,0,0,0,0,0,0,0,0,1,1,0,5.5752082,5.8863945,48,48,60.44,46.58,3.333333333333333,1,1,0,0,13,12,3,1,516.5,1081806.8,746072.94,143532.56,0,0,0,2764.6814 +8208,9976,17861,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.3415174,8.4127035,0,0,0,-1128.2565,0,3,2,2021,5,0,46,50,1,0,0,9.5948677,9.5948677,0,0,0,0,0,0,0,0,0,0,0,0,0,42.17,56.08,-9,-9,8.333333333333334,3,4,0,0,9,8,4,0,217,318371.66,6636.7813,327037.56,97077.297,0,0,885.66284 +8209,9977,17862,17863,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4938192,8.3139963,5.3206325,7,-3,66.169586,0,3,3,2021,11,0,37,37,1,0,0,12.525319,12.525319,0,0,0,0,0,0,0,0,0,0,0,5.6168494,5.388535,51.64,44.01,54.2,57.49,8.333333333333334,1,1,0,0,10,12,4,1,2007,449113.81,306204.16,186684.56,0,0,0,2452.718 +8209,9977,17863,17862,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,0,7.3077912,7.6770163,7,3,-20.131296,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.0289965,7.5882254,54.2,57.49,51.64,44.01,8.333333333333334,1,1,0,0,8,12,4,1,2007,449113.81,306204.16,186684.56,0,0,0,2452.718 +8210,9978,17864,17865,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.6354275,8.6875343,0,17,-1,132.63498,0,2,2,2021,18,6,38,38,1,6,0,14.484719,14.484719,.05,.05,0,0,0,0,0,42,0,0,0,0,0,34.21,55.9,50.05,23.6,3.333333333333333,1,1,0,0,13,2,5,0,407.5,135375.98,131071.22,121731.47,38276.488,759.96423,-773.02673,3339.7788 +8210,9978,17865,17864,-9,-9,1,0,47,0,0,0,1,1,-9,0,1,7.9017034,8.3427181,0,17,1,-23.359354,0,2,1,2021,12,2,38,38,1,2,0,8.8040695,8.8040695,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.05,23.6,34.21,55.9,6.666666666666667,1,1,0,0,4,2,5,0,407.5,135375.98,131071.22,121731.47,38276.488,759.96423,-773.02673,3339.7788 +8210,9979,17866,-9,17865,17864,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-907.73859,-9,1,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9789741,0,51.61,61.54,-9,-9,10,1,1,0,0,0,2,2,0,706,-22894.379,0,0,0,0,0,229.98456 +8211,9980,17867,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.1929417,8.2632113,0,0,0,-1137.4667,0,2,2,2021,9,0,37,40,1,0,0,10.033528,10.033528,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,329,500675.84,448047.44,178632.61,22598.652,0,0,1544.5042 +8212,9981,17868,-9,17871,17869,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.35358,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8212,9981,17869,17871,-9,-9,1,1,55,0,2,0,1,1,-9,0,5,9.5283394,9.1535044,0,8,3,17.931683,0,-9,-9,2021,10,1,51,48,1,1,0,25.059778,25.059778,.05,.05,0,0,0,0,0,0,0,0,0,5.4014177,0,55.24,55.87,54.2,57.49,10,1,1,0,0,9,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8212,9981,17870,-9,17871,17869,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.712,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8212,9981,17871,17869,-9,-9,1,0,52,0,2,0,2,2,-9,0,4,7.784874,7.9406042,0,19,-3,-80.469574,0,3,2,2021,9,0,17,17,1,0,0,14.133722,14.133722,.05,.05,0,0,0,0,0,2,0,0,0,5.3570094,0,54.2,57.49,55.24,55.87,8.333333333333334,1,1,0,0,9,7,5,1,724.25,2029626.3,1269962.3,704592.38,141296.53,1657.5509,0,5898.9424 +8213,9982,17872,17873,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.970665,9.0839424,4.7811546,6,6,-51.886509,0,2,3,2021,12,0,96,84,1,0,0,14.796576,14.796576,.05,.05,0,0,0,0,0,0,1,1,0,5.8172441,4.7895064,37.69,58.7,39.81,52.1,6.666666666666667,1,1,0,0,7,12,5,1,1095.5,937097,894625.56,0,0,0,0,5369.8213 +8213,9982,17873,17872,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0718212,7.8691859,0,6,-6,-82.363869,0,2,2,2021,16,4,27,28,1,4,0,12.099753,12.099753,.05,.05,0,0,0,0,0,0,1,1,0,1.164507,0,39.81,52.1,37.69,58.7,3.333333333333333,1,1,0,0,7,12,5,1,1095.5,937097,894625.56,0,0,0,0,5369.8213 +8213,9983,17874,-9,17873,17872,1,1,25,0,0,0,2,2,-9,0,4,7.9481969,8.0154133,0,0,0,-986.12592,0,2,3,2021,5,0,49,59,1,0,1,6.4025507,6.4025507,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,12,4,1,1283,285092.28,-70151.484,0,0,0,0,1141.511 +8213,9984,17875,-9,17873,17872,1,1,20,0,0,0,2,2,-9,1,4,0,0,0,0,0,-874.94568,0,2,3,2021,23,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.85,62.81,-9,-9,1.666666666666667,1,1,1,0,0,12,1,1,621,51808.02,0,0,0,0,0,407.73322 +8214,9985,17876,17877,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.1817665,6.7112527,50,-1,43.242325,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6447859,7.1002402,61.28,35.65,52.88,32.74,8.333333333333334,1,1,0,0,10,2,2,1,524,224561.72,179908.61,132162.59,0,0,0,1864.5908 +8214,9985,17877,17876,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,50,1,-26.935976,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4992495,0,52.88,32.74,61.28,35.65,6.666666666666667,1,1,0,0,0,2,2,1,524,224561.72,179908.61,132162.59,0,0,0,1864.5908 +8215,9986,17878,17880,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,0,0,0,8,0,-50.467819,0,1,1,2021,8,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,53.4,47.49,8.333333333333334,1,1,1,1,10,4,4,1,1168.6666,273793.44,324006.38,0,0,12117.271,13615.065,2960.8018 +8215,9986,17879,-9,17878,17880,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.8987,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1168.6666,273793.44,324006.38,0,0,12117.271,13615.065,2960.8018 +8215,9986,17880,17878,-9,-9,1,1,42,0,1,0,1,1,-9,0,2,8.8096781,8.8421383,0,8,0,-21.91102,0,3,2,2021,7,0,45,43,1,0,0,13.732978,13.732978,.05,.05,0,0,0,0,0,0,1,1,0,6.6945009,0,53.4,47.49,58.15,52.91,8.333333333333334,1,1,0,0,8,4,4,1,1168.6666,273793.44,324006.38,0,0,12117.271,13615.065,2960.8018 +8216,9987,17881,17882,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,3.0310123,3.1999812,53,-5,145.86076,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2741911,3.1067495,47.01,58,52.48,43.75,8.333333333333334,1,1,0,0,0,4,2,1,289,456211.75,117659.53,104490.28,0,0,0,2763.1191 +8216,9987,17882,17881,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.4501638,5.8538523,23,5,-18.195353,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.506485,6.026844,52.48,43.75,47.01,58,8.333333333333334,1,1,0,0,0,4,2,1,289,456211.75,117659.53,104490.28,0,0,0,2763.1191 +8217,9988,17883,17884,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.4779253,8.4700537,0,6,-25,-22.18368,0,-9,2,2021,5,0,35,35,1,0,0,14.614139,14.614139,0,0,0,0,0,0,0,0,0,0,0,0,0,50.57,52.35,61.44,32.61,8.333333333333334,1,1,0,0,7,7,4,1,372.5,276109.03,0,371829.34,84495.273,0,0,1418.0154 +8217,9988,17884,17883,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,6,25,-66.971489,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.44,32.61,50.57,52.35,8.333333333333334,1,1,1,0,2,7,4,1,372.5,276109.03,0,371829.34,84495.273,0,0,1418.0154 +8218,9989,17885,17886,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,57,-4,61.680489,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5681245,0,45.39,51.79,53,47,8.333333333333334,1,1,0,0,0,10,2,1,461,281192.25,0,247479.44,0,0,0,1706.4524 +8218,9989,17886,17885,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,4.4203486,4.6923285,57,4,105.71246,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8850598,4.5287776,53,47,45.39,51.79,8.333333333333334,1,1,0,0,0,10,2,1,461,281192.25,0,247479.44,0,0,0,1706.4524 +8219,9990,17887,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.0659,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55,45,-9,-9,8,4,6,0,0,0,11,1,0,455,5913.1968,0,19037.797,0,0,0,2280.2126 +8219,9991,17888,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-955.91949,0,3,3,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.17,40.68,-9,-9,0,1,1,0,1,0,11,1,0,668,0,0,0,0,0,0,1232.8912 +8220,9992,17889,17890,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,7.3236074,7.460691,0,12,3,19.466299,0,1,1,2021,20,9,54,5,1,9,0,3.6698484,3.6698484,.05,.05,0,0,0,0,0,7,0,0,0,0,0,38.21,55.59,30.24,64.61,8.333333333333334,1,1,0,0,13,5,5,1,487.5,875947.38,627696.88,531915.19,235382.88,0,0,4734.6777 +8220,9992,17890,17889,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.2001362,9.3595629,0,12,-3,43.545094,0,2,2,2021,13,3,44,43,1,3,0,24.772324,24.772324,0,0,0,0,0,0,0,2,0,0,0,0,0,30.24,64.61,38.21,55.59,8.333333333333334,1,1,0,0,12,5,5,1,487.5,875947.38,627696.88,531915.19,235382.88,0,0,4734.6777 +8221,9993,17891,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,5.7124701,6.1270146,0,0,-968.32172,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9258618,53.94,45.89,-9,-9,6.666666666666667,1,1,0,0,6,2,2,1,344,-143898.72,56176.207,0,0,0,0,955.33154 +8222,9994,17892,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,6.5864301,6.5331011,0,0,-995.17438,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1678429,6.5660372,54.1,59.11,-9,-9,1.666666666666667,1,1,0,0,0,8,2,1,1474,185483.09,128485.76,55398.125,0,0,0,721.71729 +8223,9995,17893,-9,17894,17895,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-965.41931,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,585.33331,177675.94,79393.836,203201.75,25334.732,0,0,2664.343 +8223,9995,17894,17895,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,6.8533096,7.2247386,6.0987372,7,0,54.63599,0,2,2,2021,11,1,8,8,1,1,0,10.441694,10.441694,0,0,0,0,0,0,0,7,1,1,0,5.403893,0,52.97,48.43,46.32,53.44,8.333333333333334,1,1,0,0,8,10,4,1,585.33331,177675.94,79393.836,203201.75,25334.732,0,0,2664.343 +8223,9995,17895,17894,-9,-9,1,1,50,0,1,0,1,1,-9,0,2,8.9801941,8.2873545,0,7,9,86.183304,0,-9,-9,2021,17,8,41,40,1,8,0,13.857732,13.857732,.05,.05,0,0,0,0,0,2,1,1,0,3.0944207,0,46.32,53.44,52.97,48.43,1.666666666666667,4,1,0,0,7,10,4,1,585.33331,177675.94,79393.836,203201.75,25334.732,0,0,2664.343 +8224,9996,17896,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.9186864,6.943902,0,0,-1057.8777,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6990075,6.9008126,43.6,51.61,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1184,1100036.9,104875.4,961649.06,0,0,0,1242.0051 +8225,9997,17897,17898,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3392243,6.1661377,11,2,16.522339,0,3,3,2021,18,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0110984,52,53,42.97,42.82,8.333333333333334,1,1,0,0,5,11,4,1,492,1374858.1,1016046.5,276746.34,0,0,0,2992.325 +8225,9997,17898,17897,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,8.407176,8.6725273,11,-2,20.286057,-9,2,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7198491,8.3877668,42.97,42.82,52,53,8.333333333333334,1,1,0,0,0,11,4,1,492,1374858.1,1016046.5,276746.34,0,0,0,2992.325 +8226,9998,17899,17900,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.7819548,7.8527822,0,11,1,10.468967,0,3,3,2021,12,0,31,31,1,0,0,8.0268564,8.0268564,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.69,43.56,61.12,51.57,6.666666666666667,1,1,0,0,12,11,4,0,196,92091.063,72271.734,12178.752,-8966.916,9882.7588,2339.2715,2203.2327 +8226,9998,17900,17899,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.5033083,7.3821354,5.2057981,11,-1,-53.932365,0,2,2,2021,6,0,25,45,1,0,0,8.7137327,8.7137327,.05,.05,0,0,0,0,0,0,0,0,0,0,5.4874458,61.12,51.57,46.69,43.56,8.333333333333334,1,1,0,0,11,11,4,0,196,92091.063,72271.734,12178.752,-8966.916,9882.7588,2339.2715,2203.2327 +8227,9999,17901,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.5561104,8.8138103,0,0,0,-1017.6934,0,-9,-9,2021,3,0,47,40,1,0,0,14.574965,14.574965,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.94,49.1,-9,-9,8.333333333333334,1,1,0,0,2,5,5,0,157,22563.855,0,0,0,4061.6865,5625.5781,2322.1272 +8228,10000,17902,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.1257753,8.1487579,0,0,-869.33472,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.2197609,7.7720842,61.44,37.81,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,901,965189.06,831101.63,115870.84,0,0,0,4814.7476 +8229,10001,17903,-9,17905,17906,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.03,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8229,10001,17904,-9,17905,17906,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.9845,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8229,10001,17905,17906,-9,-9,1,0,44,0,2,0,3,3,-9,0,3,7.0425563,7.2489963,0,13,-10,-50.828384,0,2,2,2021,12,1,6,16,1,1,0,18.158993,18.158993,0,0,0,0,0,0,0,0,1,1,0,1.4622761,0,40.89,51.69,28.2,22.68,6.666666666666667,2,3,0,0,5,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8229,10001,17906,17905,-9,-9,1,1,54,0,2,0,1,1,-9,1,1,0,0,0,13,10,-83.602501,0,1,1,2021,24,12,0,0,3,12,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,0,28.2,22.68,40.89,51.69,0,1,1,0,1,0,8,2,0,810,1971862,585838.13,357812.09,0,0,0,2631.2781 +8230,10002,17907,-9,17908,17910,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.73523,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8230,10002,17908,17910,-9,-9,1,0,31,0,2,0,3,3,-9,0,4,0,0,0,11,-3,-108.23023,0,2,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.79,47.07,24.68,47.06,8.333333333333334,2,3,0,0,0,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8230,10002,17909,-9,17908,17910,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.3854,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8230,10002,17910,17908,-9,-9,1,1,34,0,2,0,2,2,-9,0,2,7.5370016,7.5662198,0,11,3,107.90099,0,3,2,2021,28,12,30,24,1,12,0,6.2685351,6.2685351,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.68,47.06,49.79,47.07,5,2,3,0,0,5,8,2,0,564,57462.785,43409.52,0,0,0,0,2026.3521 +8231,10003,17911,-9,17912,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.4412,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,2,2,0,671.5,-183588.2,24051.195,0,0,0,0,515.11084 +8231,10003,17912,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,1,0,5.2248321,5.929091,0,0,-1018.1974,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7902217,0,36.06,29.88,-9,-9,0,3,4,1,1,1,2,2,0,671.5,-183588.2,24051.195,0,0,0,0,515.11084 +8232,10004,17913,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,5,6.8309436,6.9978986,0,0,0,-895.99335,0,1,3,2021,17,5,40,40,1,5,0,3.918514,3.918514,.05,.05,0,0,0,0,0,86,1,1,0,0,0,44.58,50.95,-9,-9,1.666666666666667,1,1,0,0,9,11,2,1,1063,105883.13,78132.516,0,0,0,0,841.78888 +8233,10005,17914,17915,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.88412,8.8256502,0,12,-2,1.3742588,0,2,2,2021,7,0,43,37,1,0,0,29.014555,29.014555,0,0,.05,0,0,0,0,0,0,0,0,3.7439167,0,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,13,7,5,1,983,1385550.9,387756.97,919066.38,33362.598,0,0,8410.8037 +8233,10005,17915,17914,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.8424425,9.4692564,0,12,2,-30.873928,0,2,2,2021,7,0,50,55,1,0,0,36.257725,36.257725,.05,.05,.05,0,0,0,0,0,0,0,0,4.820004,0,54.2,57.49,51.83,57.2,10,1,1,0,0,13,7,5,1,983,1385550.9,387756.97,919066.38,33362.598,0,0,8410.8037 +8233,10005,17916,-9,17914,17915,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-946.50165,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,983,1385550.9,387756.97,919066.38,33362.598,0,0,8410.8037 +8234,10006,17917,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-931.53284,-9,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,43.528652,9.9436493,415.64175,0,1,1,0,0,0,45,37,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,959,180568.25,0,0,0,0,0,221.17009 +8235,10007,17918,17920,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.2936139,7.3561811,0,8,-1,86.606049,0,-9,2,2021,7,0,20,22,1,0,0,11.213585,11.213585,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,42.71,53.58,8.333333333333334,1,1,0,0,10,2,5,1,354.66666,121648.96,114750.73,0,0,824.70099,0,3032.9417 +8235,10007,17919,-9,17918,17920,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.27094,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,354.66666,121648.96,114750.73,0,0,824.70099,0,3032.9417 +8235,10007,17920,17918,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.8651867,9.0912132,0,8,1,-12.52994,0,-9,-9,2021,12,0,42,40,1,0,0,21.202526,21.202526,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.71,53.58,57.16,56.15,6.666666666666667,1,1,0,0,5,2,5,1,354.66666,121648.96,114750.73,0,0,824.70099,0,3032.9417 +8236,10008,17921,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.647182,6.559833,0,0,-1141.8,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5434489,52,47,-9,-9,7,1,1,0,0,0,8,2,0,642,640651.69,143939.2,380647.31,0,0,-596.60956,1894.8162 +8236,10009,17922,-9,-9,17921,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1042.4895,0,-9,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.39,37.66,-9,-9,5,1,1,1,0,0,8,1,0,621,-18183.311,0,0,0,2112.7878,788.89124,324.86746 +8237,10010,17923,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.7547002,6.9689555,0,0,-886.28259,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6991601,6.7212186,59.7,32.49,-9,-9,6.666666666666667,1,1,0,0,12,6,2,1,1243,-4226.2402,75437.5,0,0,0,1700.9615,977.11395 +8238,10011,17924,17925,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.5769796,6.5854087,10,-4,-77.993202,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3748932,54.1,59.11,58.56,46.45,8.333333333333334,1,1,0,0,0,12,3,1,702.5,569403.75,217259.75,310828.44,0,0,0,2270.5054 +8238,10011,17925,17924,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,7.4295192,7.3111839,10,4,-102.06326,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,19.966881,0,0,1,1,0,7.2299085,7.1419129,58.56,46.45,54.1,59.11,8.333333333333334,1,1,0,0,0,12,3,1,702.5,569403.75,217259.75,310828.44,0,0,0,2270.5054 +8239,10012,17926,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.7212582,8.3326941,0,0,-1188.1826,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.783556,8.5755234,46.81,43.46,-9,-9,6.666666666666667,1,1,0,0,5,1,5,1,189,-103394.33,-123257.14,0,0,8944.5791,0,3257.6099 +8240,10013,17927,17929,-9,-9,1,1,40,0,2,0,3,3,-9,0,3,8.1285992,8.2855339,0,9,6,-34.932434,0,-9,-9,2021,12,0,55,55,1,0,0,9.6757183,9.6757183,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,51.83,57.2,6.666666666666667,1,1,0,0,10,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8240,10013,17928,-9,17929,17927,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.9093,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8240,10013,17929,17927,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.8660169,7.8221416,0,9,-6,-29.490927,0,2,3,2021,12,0,38,28,1,0,0,8.2810659,8.2810659,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,46.08,57.2,8.333333333333334,1,1,0,0,10,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8240,10013,17930,-9,17929,17927,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-919.01721,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,8,4,1,563.25,480272.81,47530.57,442446,0,0,0,3139.2976 +8241,10014,17931,17932,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.6617436,6.1869373,52,2,48.059399,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0852404,6.0453606,57.16,56.15,47.07,53.97,8.333333333333334,1,1,0,0,4,9,2,1,931,557034.94,84233.391,320773.91,0,0,0,1468.6042 +8241,10014,17932,17931,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.2755609,6.0308318,52,-2,44.910835,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3505015,47.07,53.97,57.16,56.15,6.666666666666667,1,1,0,0,6,9,2,1,931,557034.94,84233.391,320773.91,0,0,0,1468.6042 +8242,10015,17933,17934,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.7466793,7.7835894,0,2,-11,29.68754,0,-9,-9,2021,8,0,37,37,1,0,0,7.1948161,7.1948161,0,0,0,0,0,0,0,0,1,0,1,0,0,61.94,37.61,56.19,46.16,8.333333333333334,1,1,0,0,1,13,3,0,2067,354587.22,287102.94,130650.4,43226.191,0,0,2092.5359 +8242,10015,17934,17933,-9,-9,1,1,50,0,0,0,3,3,-9,0,2,6.9928536,6.9355636,0,2,11,47.418488,0,3,3,2021,8,0,20,20,1,0,0,7.1548452,7.1548452,.05,.05,0,0,0,0,0,0,1,0,1,0,0,56.19,46.16,61.94,37.61,8.333333333333334,1,1,0,0,9,13,3,0,2067,354587.22,287102.94,130650.4,43226.191,0,0,2092.5359 +8243,10016,17935,-9,17938,-9,1,0,17,0,2,1,2,0,0,0,3,0,4.4278994,3.6345234,0,0,-1049.2546,-9,2,-9,2021,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0052924,0,51.36,36.04,-9,-9,5,1,1,0,0,2,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8243,10016,17936,-9,17938,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.5526,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8243,10016,17937,-9,17938,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1133.3138,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8243,10016,17938,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.8517756,6.8977809,0,0,0,-1110.057,0,2,2,2021,12,1,30,18,1,1,0,4.1395249,4.1395249,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,1,6,10,2,0,858,36398.563,14401.262,0,0,0,0,1713.5245 +8244,10017,17939,-9,-9,-9,1,0,34,0,1,0,2,2,-9,0,1,0,5.1913462,5.2518091,0,0,-923.10101,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,0,1,5.3835621,0,35.91,36.92,-9,-9,5,1,1,1,1,4,12,2,0,982,69478.289,0,0,0,0,0,418.78088 +8245,10018,17940,17941,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.0938454,7.919066,0,9,0,-80.733154,0,1,2,2021,3,0,12,12,1,0,0,25.650274,25.650274,.05,.05,0,0,0,0,0,0,0,0,0,7.3830528,0,54.96,53.17,50.08,55.33,8.333333333333334,1,1,0,0,10,8,4,1,334,490366.19,110111.34,245589.81,0,0,0,4389.5635 +8245,10018,17941,17940,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4611292,8.3633995,0,9,0,-117.39057,0,1,1,2021,8,0,20,15,1,0,0,21.984947,21.984947,0,0,0,0,0,0,0,0,0,0,0,0,0,50.08,55.33,54.96,53.17,10,1,1,0,0,10,8,4,1,334,490366.19,110111.34,245589.81,0,0,0,4389.5635 +8245,10019,17942,-9,17941,17940,1,1,24,0,0,0,1,1,-9,0,5,0,6.9643526,6.6717076,0,0,-1077.3062,1,1,1,2021,20,9,0,43,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3836646,0,36,64.90000000000001,-9,-9,10,1,1,0,0,3,8,2,1,187,136035.38,0,0,0,0,0,-176.51926 +8245,10020,17943,-9,17941,17940,1,0,21,0,0,1,1,0,0,0,3,0,0,0,0,0,-918.56775,-9,1,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.55,48.59,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,756,-72208.922,0,0,0,0,0,0 +8246,10021,17944,17945,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.6115623,7.2062049,0,29,-6,-108.50479,0,2,2,2021,13,2,24,0,1,2,0,7.2007141,7.2007141,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,46.67,55.57,8.333333333333334,1,1,0,0,8,8,5,1,265.33334,1028806,525187.19,370074.88,61652.473,0,0,3441.8877 +8246,10021,17945,17944,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.388545,8.5070944,0,29,6,-70.751129,0,3,3,2021,8,0,42,50,1,0,0,13.631936,13.631936,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.67,55.57,51.24,58.84,8.333333333333334,1,1,0,0,9,8,5,1,265.33334,1028806,525187.19,370074.88,61652.473,0,0,3441.8877 +8246,10021,17946,-9,17944,17945,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-962.31189,-9,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.04,56.72,-9,-9,5,1,1,0,0,1,8,5,1,265.33334,1028806,525187.19,370074.88,61652.473,0,0,3441.8877 +8246,10022,17947,-9,17944,17945,1,1,22,0,0,0,2,2,-9,0,4,7.8664923,8.2032356,0,0,0,-1031.442,0,2,2,2021,9,0,42,39,1,0,1,9.2007523,9.2007523,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,108,37581.91,63797.465,0,0,0,0,2144.6584 +8246,10023,17948,-9,17944,17945,1,0,19,0,0,0,2,2,1,0,5,7.9443903,8.1947365,0,0,0,-1060.0964,-9,2,2,2021,12,0,45,0,1,0,1,7.5543518,7.5543518,0,0,0,0,0,0,0,0,1,1,0,0,0,40.61,53.29,-9,-9,5,1,1,0,0,2,8,4,1,341,92118.094,0,0,0,0,0,1340.583 +8247,10024,17949,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.6820397,5.4472966,0,0,-1167.7854,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.9712377,0,28.454239,0,1,1,0,0,5.652843,64.48,41.06,-9,-9,10,1,1,0,0,0,4,2,0,556,89475.172,52705.699,0,0,0,0,1382.5056 +8248,10025,17950,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1001.1326,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,4.717515,0,0,1,1,0,0,0,51,46,-9,-9,8,1,1,0,0,0,13,1,0,461,106300.12,0,106405.83,0,0,0,1035.0123 +8249,10026,17951,17952,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.5419888,7.6285939,0,36,-1,63.412441,0,3,3,2021,12,0,60,30,1,0,0,4.0507822,4.0507822,0,0,0,0,0,0,0,0,0,0,0,0,0,39.59,54.7,60.21,36.96,6.666666666666667,1,1,0,0,13,5,5,1,1598,1699977.8,1183763.3,436928.34,30921.875,0,0,4353.521 +8249,10026,17952,17951,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.2094755,8.809247,7.5401902,36,1,28.74321,0,3,3,2021,10,0,40,-9,1,0,0,12.261102,12.261102,.05,.05,0,1,0,6.7320118,0,0,0,0,0,6.8283892,7.8838887,60.21,36.96,39.59,54.7,6.666666666666667,1,1,0,0,14,5,5,1,1598,1699977.8,1183763.3,436928.34,30921.875,0,0,4353.521 +8250,10027,17953,17954,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3849916,9.1835327,0,26,1,4.8271227,0,1,2,2021,8,0,31,32,1,0,0,33.105198,33.105198,0,0,0,0,0,0,0,7,0,0,0,2.0419264,0,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,13,12,5,1,525.5,764488,399290.5,539985.25,169431.25,1812.5596,16844.834,11106.861 +8250,10027,17954,17953,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.8136883,9.5639286,0,26,-1,-61.287457,0,2,2,2021,8,1,50,85,1,1,0,37.65551,37.65551,.05,.05,0,0,0,0,0,0,0,0,0,6.2821612,0,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,13,12,5,1,525.5,764488,399290.5,539985.25,169431.25,1812.5596,16844.834,11106.861 +8250,10028,17955,-9,17953,17954,1,0,21,0,0,1,2,0,-9,0,4,0,7.2291546,7.2842746,0,0,-1026.3457,-9,1,1,2021,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9288568,0,51.36,54.65,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,1675,146806.58,0,0,0,0,0,808.24872 +8251,10029,17956,17957,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.3177962,6.1506743,8,1,33.772827,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8935766,54.21,49.46,54.96,53.17,8.333333333333334,3,4,0,0,0,2,3,1,461,665249.25,566467.31,161164.84,0,0,917.41565,3292.0273 +8251,10029,17957,17956,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.6206346,7.5835404,8,-1,-180.13023,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8314509,7.3513141,54.96,53.17,54.21,49.46,10,1,1,0,0,0,2,3,1,461,665249.25,566467.31,161164.84,0,0,917.41565,3292.0273 +8252,10030,17958,17959,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.3657007,8.1082935,44,4,50.217178,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8340917,8.3296413,58.72,43.42,58.47,50.22,8.333333333333334,1,1,0,0,9,8,5,1,447.5,3294920.8,1824287.8,1189707,0,0,0,5885.2764 +8252,10030,17959,17958,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,8.617548,8.4272022,44,-4,37.872814,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.037734,8.6039286,58.47,50.22,58.72,43.42,8.333333333333334,1,1,0,0,9,8,5,1,447.5,3294920.8,1824287.8,1189707,0,0,0,5885.2764 +8253,10031,17960,17961,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.6786265,7.7544336,0,7,1,-31.00935,0,2,2,2021,10,0,45,65,1,0,0,8.1661186,8.1661186,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,52.57,36.83,8.333333333333334,1,1,0,0,8,4,5,1,746,1148562.8,859033,137263.91,0,4641.6899,0,3053.6191 +8253,10031,17961,17960,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.3709459,8.5199213,0,7,-1,-102.10918,0,3,2,2021,12,2,40,45,1,2,0,15.415173,15.415173,0,0,0,0,0,0,0,7,0,0,0,0,0,52.57,36.83,55.76,52.64,6.666666666666667,1,1,0,0,8,4,5,1,746,1148562.8,859033,137263.91,0,4641.6899,0,3053.6191 +8254,10032,17962,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.5119305,8.6128635,0,0,0,-989.35657,0,2,2,2021,8,0,47,45,1,0,0,9.4947081,9.4947081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,46.68,-9,-9,3.333333333333333,1,1,0,0,12,5,4,1,295,21734.479,-62492.383,18433.504,55215.387,0,0,1003.7351 +8255,10033,17963,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,5.3143563,5.4457211,0,0,-932.05994,-9,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.0933795,5.5333028,30.07,18.8,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,114,298186.22,142387.72,141038.92,0,0,0,1823.7999 +8255,10034,17964,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-963.14307,-9,-9,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.83,36.61,-9,-9,1.666666666666667,1,1,0,0,0,6,1,0,579,18042.113,0,0,0,0,0,1026.9132 +8256,10035,17965,17967,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,9.7476768,9.8922691,0,13,13,145.78044,0,2,1,2021,9,1,32,30,1,1,0,65.616386,65.616386,0,0,0,0,0,0,0,0,1,1,0,2.7505476,0,52.4,55.58,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8256,10035,17966,-9,17967,17965,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1099.4044,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8256,10035,17967,17965,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.8216209,7.6131368,0,14,-13,-42.065777,0,3,3,2021,7,1,10,10,1,1,0,22.883986,22.883986,0,0,0,0,0,0,0,0,1,1,0,4.4250402,0,57.06,57.76,52.4,55.58,8.333333333333334,1,1,0,0,5,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8256,10035,17968,-9,17967,17965,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.56458,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1115,916245.25,978855.25,122751.01,20014.861,0,0,29537.533 +8257,10036,17969,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.4010839,5.9446039,0,0,-955.28876,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.34129,62.9,48.63,-9,-9,8.333333333333334,3,4,0,0,11,8,2,0,739,541487.5,509621.69,107279.84,0,0,0,658.18488 +8258,10037,17970,17971,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,7.1596832,7.1972923,49,0,-19.278679,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9732876,0,0,1,1,0,0,6.9624038,41.42,32.65,62.49,55.09,3.333333333333333,1,1,0,0,3,7,3,1,829,1019732.6,492307.25,190135.8,0,0,0,2919.1704 +8258,10037,17971,17970,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.6937089,7.6851625,49,0,-63.667881,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0737715,7.5713782,62.49,55.09,41.42,32.65,8.333333333333334,1,1,0,0,4,7,3,1,829,1019732.6,492307.25,190135.8,0,0,0,2919.1704 +8259,10038,17972,17973,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,53,0,-212.12714,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3235917,0,41.17,60.71,57.33,53.46,8.333333333333334,1,1,0,0,0,9,3,1,386.5,1094326.8,576311.5,289100.16,0,0,0,2615.6572 +8259,10038,17973,17972,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.9607987,7.9108186,53,0,76.782402,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8725357,57.33,53.46,41.17,60.71,8.333333333333334,1,1,0,0,6,9,3,1,386.5,1094326.8,576311.5,289100.16,0,0,0,2615.6572 +8260,10039,17974,17975,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,5,-11,-9.7419538,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.53,47.65,57.33,40.23,6.666666666666667,1,1,0,1,0,13,2,0,781.5,196519.22,0,119482.3,0,2973.1223,0,1597.8015 +8260,10039,17975,17974,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,3.7282839,3.817395,5,11,26.041267,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7678287,57.33,40.23,40.53,47.65,8.333333333333334,1,1,0,1,0,13,2,0,781.5,196519.22,0,119482.3,0,2973.1223,0,1597.8015 +8261,10040,17976,17977,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.2799654,7.3449044,48,-3,39.906132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4655414,7.3202968,60.02,56.42,54.2,57.49,8.333333333333334,1,1,0,0,10,6,4,1,981,1704498,963356.88,268102.03,0,1001.3528,0,3122.8982 +8261,10040,17977,17976,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.8656731,7.8712258,48,3,-20.145023,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0264444,54.2,57.49,60.02,56.42,1.666666666666667,1,1,0,0,3,6,4,1,981,1704498,963356.88,268102.03,0,1001.3528,0,3122.8982 +8262,10041,17978,-9,17981,17979,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1028.1859,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17979,17981,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,9.1302252,9.2095423,0,8,-7,-67.942268,0,2,2,2021,12,1,40,40,1,1,0,31.412937,31.412937,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,48.4,40.09,6.666666666666667,1,1,0,0,10,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17980,-9,17981,17979,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.7045,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17981,17979,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,7.1872525,7.0234022,0,8,7,70.879143,0,-9,-9,2021,11,0,16,16,1,0,0,8.2851048,8.2851048,0,0,0,0,0,0,0,7,1,1,0,0,0,48.4,40.09,49.41,58.28,8.333333333333334,1,1,0,0,9,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8262,10041,17982,-9,17981,17979,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1173.0411,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,372.60001,101013.62,13627.124,175989.73,85825.016,10909.274,0,3636.8342 +8263,10042,17983,17986,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.6487579,8.5891905,0,18,1,20.600826,0,2,2,2021,15,3,37,42,1,3,0,21.368324,21.368324,.05,.05,0,0,0,0,0,0,1,1,0,1.6601263,0,43.54,59.6,55.19,54.26,5,1,1,0,0,8,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8263,10042,17984,-9,17986,17983,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3232,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8263,10042,17985,-9,17986,17983,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.7942,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8263,10042,17986,17983,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.5520163,7.499023,0,18,-1,-81.795197,0,2,3,2021,12,0,25,25,1,0,0,9.174921,9.174921,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,43.54,59.6,8.333333333333334,1,1,0,0,8,5,4,1,639,112984.2,43228.09,176036.25,138277.19,0,0,3426.2944 +8264,10043,17987,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.8474364,7.0837512,0,0,-1009.2932,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7203717,44.75,47.24,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,972,312678,128466.23,68311.211,0,0,0,2048.7024 +8264,10044,17988,-9,17987,-9,1,0,55,0,0,0,3,3,-9,0,4,7.6591239,7.6107821,0,0,0,-946.21729,0,2,-9,2021,8,0,37,40,1,0,0,6.1042762,6.1042762,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.4,42.8,-9,-9,8.333333333333334,1,1,0,0,4,2,3,1,631,367515.75,117239.01,169879.66,0,9422.6514,0,1676.4872 +8265,10045,17989,17990,-9,-9,1,1,40,0,1,0,2,2,-9,0,4,8.1542473,8.119319,0,1,2,15.240037,0,2,2,2021,6,0,45,38,1,0,0,7.8692536,7.8692536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.39,13.18,8.333333333333334,1,1,0,0,7,7,4,0,254.33333,141937.16,101741.43,247245.84,109145.2,5813.8931,0,3349.7883 +8265,10045,17990,17989,-9,-9,1,0,38,0,1,0,1,1,-9,0,2,8.5104866,8.4333477,5.6188745,1,-2,85.622589,-9,-9,-9,2021,8,0,36,0,1,0,0,14.299266,14.299266,0,0,0,0,0,0,0,2,1,1,0,5.4853692,0,51.39,13.18,57.16,56.15,10,1,1,0,0,8,7,4,0,254.33333,141937.16,101741.43,247245.84,109145.2,5813.8931,0,3349.7883 +8265,10045,17991,-9,17990,17989,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.33044,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,254.33333,141937.16,101741.43,247245.84,109145.2,5813.8931,0,3349.7883 +8266,10046,17992,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.3356876,8.5524435,0,0,0,-1026.006,0,2,2,2021,8,0,37,37,1,0,0,16.685896,16.685896,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,211,38007.602,78215.344,0,0,0,0,983.08533 +8267,10047,17993,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.116519,8.3030672,0,0,0,-970.0235,0,2,2,2021,23,8,38,37,1,8,0,9.465682,9.465682,.05,.05,0,0,0,0,0,0,0,0,0,1.0504242,0,43.47,36.46,-9,-9,6.666666666666667,1,1,0,0,8,5,4,1,1924,37604.762,0,96024.141,25149.652,0,0,1263.0908 +8268,10048,17994,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.690836,5.2759619,0,0,-910.58173,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1412673,34.81,28.72,-9,-9,6.666666666666667,1,1,0,0,4,11,2,1,1044,18607.924,-58298.836,0,0,0,0,473.80856 +8269,10049,17995,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,8.7346506,8.8751755,0,0,0,-882.60681,0,3,2,2021,32,12,50,50,1,12,0,15.136437,15.136437,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.29,27.04,-9,-9,0,1,1,0,0,10,5,5,0,459,126240.58,429760.56,8957.3057,57880.586,20548.061,2642.6367,1638 +8270,10050,17996,17997,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,0,3.7908638,3.8225956,41,-1,-23.674965,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0674829,3.6299856,62,41.73,57.41,54.88,8.333333333333334,1,1,0,0,8,1,3,1,1040,1208232.8,565146.13,334785.25,0,0,0,2088.8652 +8270,10050,17997,17996,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.0701294,8.2761078,41,1,123.05554,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.2085257,8.2809486,57.41,54.88,62,41.73,10,1,1,0,0,8,1,3,1,1040,1208232.8,565146.13,334785.25,0,0,0,2088.8652 +8271,10051,17998,17999,-9,-9,1,0,24,0,1,0,2,2,-9,0,4,8.1094112,8.0305548,0,1,-1,160.26944,-9,-9,-9,2021,0,0,38,0,1,0,0,10.274799,10.274799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,35.36,39.05,10,1,1,0,0,1,11,4,1,433.66666,-12494.414,-52527.773,137893.59,33899.844,0,0,3279.9973 +8271,10051,17999,17998,-9,-9,1,1,25,0,1,0,2,2,-9,0,4,7.9111485,8.01478,0,1,1,-44.064991,-9,-9,-9,2021,10,0,37,0,1,0,0,9.5080938,9.5080938,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.36,39.05,62.49,55.09,6.666666666666667,1,1,0,0,7,11,4,1,433.66666,-12494.414,-52527.773,137893.59,33899.844,0,0,3279.9973 +8271,10051,18000,-9,17998,17999,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.79053,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,433.66666,-12494.414,-52527.773,137893.59,33899.844,0,0,3279.9973 +8272,10052,18001,-9,18003,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.9294,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,902.66669,-23591.014,0,61730.141,113723.42,0,0,2166.4421 +8272,10052,18002,-9,18003,-9,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.90173,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,4,1,902.66669,-23591.014,0,61730.141,113723.42,0,0,2166.4421 +8272,10052,18003,-9,-9,-9,1,0,31,0,2,0,2,2,-9,0,4,8.600214,8.8335791,0,0,0,-933.66852,0,-9,-9,2021,15,3,46,45,1,3,0,12.686765,12.686765,0,0,0,0,0,0,0,0,1,1,0,0,0,33.74,63,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,902.66669,-23591.014,0,61730.141,113723.42,0,0,2166.4421 +8273,10053,18004,18005,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,6.8691812,6.8433094,0,1,-1,-37.850845,-9,-9,-9,2021,25,9,16,0,1,9,0,7.0549545,7.0549545,0,0,0,0,0,0,0,14.5,0,0,0,0,0,34.96,42.14,41.64,54.12,1.666666666666667,1,1,0,1,8,13,3,1,416.5,57327.109,0,133439.06,125305.79,6408.9736,0,1277.7816 +8273,10053,18005,18004,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.5832782,8.0878849,0,1,1,19.660786,-9,3,3,2021,11,4,33,0,1,4,0,7.5209098,7.5209098,0,0,0,0,0,0,0,0,0,0,0,0,0,41.64,54.12,34.96,42.14,3.333333333333333,1,1,0,1,4,13,3,1,416.5,57327.109,0,133439.06,125305.79,6408.9736,0,1277.7816 +8274,10054,18006,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.9366779,8.9255524,0,0,0,-1054.6105,0,2,1,2021,26,10,52,52,1,10,0,14.916098,14.916098,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.92,61.06,-9,-9,3.333333333333333,1,1,0,0,13,8,5,1,465,1035176.6,10352.999,339931.22,0,0,0,3686.9902 +8275,10055,18007,18008,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,30,2,38.405949,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0823219,0,46.56,37.03,40.51,55.74,8.333333333333334,1,1,0,0,0,2,3,1,437.5,1332597.4,700953.38,207551.06,0,0,0,2237.6023 +8275,10055,18008,18007,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,7.7447619,8.1107082,6.9574385,30,-2,5.1818027,0,2,3,2021,13,1,36,29,1,1,0,7.6348982,7.6348982,.05,.05,0,0,0,0,0,0,1,1,0,5.0512753,7.374711,40.51,55.74,46.56,37.03,5,1,1,0,0,9,2,3,1,437.5,1332597.4,700953.38,207551.06,0,0,0,2237.6023 +8276,10056,18009,18010,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,9,7,0,0,3,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.77,54.15,48.87,58.55,3.333333333333333,1,1,0,0,0,5,1,0,616,-155483.3,0,0,0,2617.2065,0,1113.3534 +8276,10056,18010,18009,-9,-9,1,1,41,0,0,0,3,3,-9,0,4,0,0,0,9,-7,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.87,58.55,15.77,54.15,6.666666666666667,1,1,1,0,0,5,1,0,616,-155483.3,0,0,0,2617.2065,0,1113.3534 +8277,10057,18011,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.4548078,7.5824027,0,0,0,-1045.979,0,-9,-9,2021,10,1,56,55,1,1,0,4.093905,4.093905,0,0,0,0,0,0,0,0,0,0,0,2.9611595,0,37.15,58.69,-9,-9,3.333333333333333,1,1,0,0,10,12,3,1,1183,0,0,0,0,0,0,1749.5182 +8278,10058,18012,18013,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.7980242,7.5923486,28,-5,138.81056,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3868742,7.7520194,48.33,38.96,39.06,49.8,6.666666666666667,2,3,0,0,0,8,4,1,473,1944213.9,618779.5,1410039.3,0,6714.6035,0,2517.3271 +8278,10058,18013,18012,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.0423489,7.278944,2,5,-207.46335,0,-9,-9,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0595665,7.6440663,39.06,49.8,48.33,38.96,6.666666666666667,1,1,0,0,0,8,4,1,473,1944213.9,618779.5,1410039.3,0,6714.6035,0,2517.3271 +8279,10059,18014,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.6570311,7.6201935,0,0,0,-945.54315,0,3,3,2021,6,0,35,30,1,0,0,6.8197522,6.8197522,0,0,0,0,0,0,0,0,0,0,0,4.5053368,0,55.36,51.57,-9,-9,8.333333333333334,2,3,0,0,13,8,3,1,81,375512.53,0,530146.44,119743.76,799.08655,7349.3228,1040.1273 +8280,10060,18015,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.1635771,8.2443676,0,0,0,-1030.8867,0,2,2,2021,11,0,54,60,1,0,0,8.7839041,8.7839041,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,1,8,4,4,1,307,82468.047,133505.05,110126.63,92015.516,0,0,759.37494 +8281,10061,18016,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.6745076,7.7742305,0,0,0,-1003.8149,0,-9,-9,2021,10,0,37,37,1,0,0,7.8533263,7.8533263,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.07,55.17,-9,-9,5,1,1,0,0,8,2,3,0,312,63698.223,-79544.227,0,0,0,0,1397.1924 +8282,10062,18017,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4241896,7.2235742,0,0,-992.50848,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4197712,7.4109793,54.2,57.49,-9,-9,10,1,1,0,0,3,5,3,1,1012,358203,356146.47,204761.45,0,0,0,1552.9795 +8283,10063,18018,-9,18022,18023,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1076.9929,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18019,-9,18022,18023,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.9742,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18020,-9,18022,18023,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-963.37213,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18021,-9,18022,18023,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.03687,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18022,18023,-9,-9,1,0,42,0,4,0,2,2,-9,0,3,8.4031143,8.399745,0,11,6,74.149323,0,2,2,2021,11,0,37,37,1,0,0,11.221619,11.221619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,45.92,49.51,6.666666666666667,1,1,0,0,8,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8283,10063,18023,18022,-9,-9,1,1,36,0,4,0,1,1,-9,0,2,8.0608616,7.9325752,0,11,-6,-54.507225,0,1,2,2021,13,3,38,38,1,3,0,7.8537736,7.8537736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.92,49.51,46.08,57.2,5,1,1,0,1,10,6,3,1,494.16666,82309.898,-96.215736,270211.09,212404.38,0,0,3147.1785 +8284,10064,18024,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.9910579,8.0313082,0,0,0,-1047.1716,0,1,1,2021,11,0,15,25,1,0,0,18.366943,18.366943,0,0,0,0,0,0,0,0,1,1,0,4.1918478,0,49.61,54.24,-9,-9,1.666666666666667,1,1,0,0,8,9,4,1,231,1703226.9,875139.31,435267.22,0,0,0,1462.7189 +8285,10065,18025,18026,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.8860769,9.0097017,0,4,1,-25.251137,0,-9,-9,2021,12,1,45,45,1,1,0,16.762793,16.762793,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,32.9,49.4,6.666666666666667,1,1,0,0,10,10,5,1,670,547788.63,128283.88,534454.88,154421.95,8458.042,0,4609.7295 +8285,10065,18026,18025,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.1667204,8.3555365,0,4,-1,-116.63547,0,2,3,2021,18,5,40,40,1,5,0,9.3352766,9.3352766,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.9,49.4,46.67,55.57,5,1,1,0,1,10,10,5,1,670,547788.63,128283.88,534454.88,154421.95,8458.042,0,4609.7295 +8286,10066,18027,18028,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.8361669,7.615293,0,6,-1,-170.80653,0,2,2,2021,11,0,40,42,1,0,0,7.6385469,7.6385469,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,56.47,59.4,1.666666666666667,1,1,0,0,6,6,5,1,2191,259332.11,82778.883,102052.81,84664.023,0,2265.6306,3722.5962 +8286,10066,18028,18027,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.9995975,8.9679365,0,6,1,-69.804848,0,2,2,2021,12,0,45,48,1,0,0,18.589882,18.589882,.05,.05,0,0,0,0,0,0,0,0,0,2.774765,0,56.47,59.4,48.28,60.18,8.333333333333334,1,1,0,0,9,6,5,1,2191,259332.11,82778.883,102052.81,84664.023,0,2265.6306,3722.5962 +8287,10067,18029,-9,18031,18032,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-936.77997,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18030,-9,18031,18032,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.6135,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18031,18032,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,4.6871052,4.6343603,0,7,-2,42.581795,0,-9,-9,2021,7,0,45,50,1,0,0,.28928927,.28928927,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.18,60.48,8.333333333333334,1,1,0,0,8,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18032,18031,-9,-9,1,1,37,0,3,0,1,1,-9,0,3,8.6918736,8.7355928,0,7,2,178.71432,0,2,1,2021,14,2,35,35,1,2,0,17.151724,17.151724,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.18,60.48,57.16,56.15,5,1,1,0,0,8,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8287,10067,18033,-9,18031,18032,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.9259,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,1093.8,105180.26,53614.215,159291.09,70636.648,0,1824.749,2259.8684 +8288,10068,18034,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,0,0,-860.69165,0,-9,2,2021,35,12,0,40,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.55,37.7,-9,-9,1.666666666666667,1,1,1,0,12,4,1,0,1836,-182328.94,0,0,0,11186.482,0,91.098778 +8289,10069,18035,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,7.4727235,7.738625,6.4575381,0,0,-901.6214,0,1,2,2021,9,0,10,0,1,0,0,14.412118,14.412118,.05,.05,0,0,0,0,0,0,1,1,0,6.3538547,0,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,802.66669,31089.107,-12609.801,0,0,0,0,1855.3015 +8289,10069,18036,-9,18035,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.3921,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,802.66669,31089.107,-12609.801,0,0,0,0,1855.3015 +8289,10069,18037,-9,18035,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.43378,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,802.66669,31089.107,-12609.801,0,0,0,0,1855.3015 +8290,10070,18038,-9,18039,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-973.18921,-9,1,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,924.5,1771091,635312.13,569068.38,0,0,0,1860.51 +8290,10070,18039,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.1170835,8.1541872,0,0,0,-1000.9073,0,3,2,2021,10,0,46,40,1,0,0,10.031297,10.031297,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,1,1,0,0,8,5,3,1,924.5,1771091,635312.13,569068.38,0,0,0,1860.51 +8290,10071,18040,-9,18039,-9,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-959.724,0,1,-9,2021,11,3,0,29,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3784211,0,18.44,63.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,1409,89979,0,0,0,0,973.60522,-503.37057 +8291,10072,18041,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.3132906,8.3489275,0,0,0,-1007.4786,0,-9,-9,2021,8,0,78,0,1,0,0,6.252286,6.252286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,4,9,4,0,173,70535.281,1006.8309,243245.08,98759.961,0,0,1336.6488 +8292,10073,18042,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4079914,8.2222281,0,0,0,-1082.4366,0,2,2,2021,12,0,35,38,1,0,0,9.9832535,9.9832535,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,309,-33893.309,-3577.8474,0,0,0,0,621.86108 +8293,10074,18043,18044,-9,-9,1,1,91,0,0,0,2,2,-9,0,3,0,7.2148037,7.5430636,9,8,-111.88373,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5733123,7.2935996,53.53,29.67,60.44,36.05,5,1,1,0,0,0,12,2,1,1273.5,426009.06,280838.13,128287.59,0,0,0,2192.7485 +8293,10074,18044,18043,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,0,0,9,-8,-27.020849,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.93671995,0,60.44,36.05,53.53,29.67,1.666666666666667,1,1,0,0,0,12,2,1,1273.5,426009.06,280838.13,128287.59,0,0,0,2192.7485 +8294,10075,18045,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.2836299,7.4700546,0,0,-806.58081,0,2,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,3.8954952,0,20.860586,0,1,1,0,7.9224839,7.4340057,56.75,25.8,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,942,987567.75,336667.19,608091.88,0,0,0,2969.9155 +8295,10076,18046,18049,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.2944746,8.0698862,6.5404639,7,4,47.953529,0,2,-9,2021,8,0,23,23,1,0,0,12.094976,12.094976,0,0,0,0,0,0,0,0,1,0,1,6.8175116,0,45.15,57.46,41.76,59.08,8.333333333333334,1,1,0,0,11,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8295,10076,18047,-9,18046,18049,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-867.33112,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8295,10076,18048,-9,18046,18049,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4398,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8295,10076,18049,18046,-9,-9,1,1,34,0,2,0,2,2,-9,0,3,7.9797282,7.9409513,6.4010572,7,-4,8.6837969,0,-9,-9,2021,8,0,38,37,1,0,0,8.3237152,8.3237152,.05,.05,0,0,0,0,0,0,1,0,1,6.5625367,0,41.76,59.08,45.15,57.46,6.666666666666667,1,1,0,0,8,1,3,0,1072.25,38450.414,15197.604,0,0,0,735.19434,3112.4919 +8296,10077,18050,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.6915617,7.7841101,0,0,-958.4032,0,3,3,2021,7,0,0,42,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.559072,59.14,52.5,-9,-9,1.666666666666667,1,1,0,0,10,10,3,1,586,461426.22,489008.44,119607.69,0,0,0,1471.2255 +8297,10078,18051,18052,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,8.4937754,8.0446758,0,8,-5,-43.883022,0,2,3,2021,6,0,37,39,1,0,0,14.566325,14.566325,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,60.12,54.8,8.333333333333334,1,1,0,0,9,12,5,1,339.5,418579.91,293459.72,208222.25,30858.469,9489.5244,0,3492.7036 +8297,10078,18052,18051,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.9781671,8.0806952,0,8,5,-81.125664,0,3,3,2021,6,0,36,40,1,0,0,9.5347919,9.5347919,.05,.05,0,0,0,0,0,0,0,0,0,1.2354149,0,60.12,54.8,58.05,54.52,8.333333333333334,1,1,0,0,9,12,5,1,339.5,418579.91,293459.72,208222.25,30858.469,9489.5244,0,3492.7036 +8298,10079,18053,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,5,6.5646162,7.013278,0,0,0,-964.86554,0,3,-9,2021,9,0,16,20,1,0,0,6.1172509,6.1172509,0,0,0,0,0,0,0,0,1,1,0,0,0,42.41,56.11,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,328,-234876.34,0,0,0,0,0,826.73444 +8299,10080,18054,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,2.8866148,3.1013615,0,0,0,-1100.0077,0,2,2,2021,12,0,12,12,1,0,0,.17421934,.17421934,0,0,0,0,0,0,0,2,0,0,0,0,0,32.48,59.49,-9,-9,8.333333333333334,1,1,0,0,12,5,2,0,2396,345181.97,0,118429.13,0,5251.3271,0,-264.0433 +8300,10081,18055,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.8454294,7.215735,0,0,-994.14404,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3044314,67.92,41.85,-9,-9,10,1,1,0,0,0,12,3,1,340,381007.66,212671.06,94273.531,0,9110.4736,0,1452.3698 +8301,10082,18056,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.6841221,8.6465063,0,0,0,-929.42133,0,1,1,2021,9,1,42,0,1,1,0,17.342653,17.342653,.05,.05,0,0,0,0,0,0,0,0,0,7.5042753,0,58.07,46.29,-9,-9,8.333333333333334,4,2,0,0,5,9,5,0,84,-32410.334,13739.209,0,0,0,0,2383.8591 +8302,10083,18057,18058,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.537076,8.6728134,0,34,2,-19.736521,0,3,2,2021,8,0,45,40,1,0,0,15.076628,15.076628,.05,.05,0,0,0,0,0,0,1,1,0,3.3063288,0,50.43,53.69,54.1,59.11,8.333333333333334,1,1,0,0,12,4,5,1,152.5,872243.63,729673.38,67201.719,0,0,0,2831.8003 +8302,10083,18058,18057,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.728209,7.3531709,0,34,-2,-166.23514,0,2,2,2021,6,0,20,20,1,0,0,9.0845041,9.0845041,.05,.05,0,0,0,0,0,7,1,1,0,3.1650302,0,54.1,59.11,50.43,53.69,10,1,1,0,0,12,4,5,1,152.5,872243.63,729673.38,67201.719,0,0,0,2831.8003 +8303,10084,18059,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,6.238081,6.4258828,0,0,-871.76849,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1058497,61.62,34.93,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,780,343202.69,24998.604,288245.5,28581.359,1676.4481,0,1011.6434 +8304,10085,18060,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1021.7588,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.73,37.22,-9,-9,5,1,1,0,0,0,2,1,1,1985,123749.55,0,0,0,0,0,1049.0314 +8305,10086,18061,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,9.0522795,9.1751404,0,0,0,-963.97815,-9,-9,-9,2021,6,0,42,0,1,0,0,24.852015,24.852015,.05,.05,0,0,0,0,0,0,0,0,0,2.5146399,0,58.55,51.64,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,1140,135509.2,137133.13,0,0,0,0,3452.8003 +8306,10087,18062,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1028.9995,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,28.484041,0,254.37231,0,1,1,0,0,0,52,45,-9,-9,8,1,1,0,0,0,10,2,0,478,59876.125,0,31121.783,0,0,0,3055.7219 +8307,10088,18063,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,1,0,7.059454,7.8860712,0,0,-1020.0952,0,2,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5757189,31.25,27.77,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,685,176274.5,209591.3,0,0,0,0,1905.4672 +8308,10089,18064,18065,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,9.269537,8.932766,0,26,-5,-62.345245,0,2,3,2021,15,5,38,38,1,5,0,25.367788,25.367788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.95,53.15,57.54,42.36,6.666666666666667,1,1,0,0,10,11,5,1,1362,558662.44,516630.5,239371.67,24665.672,9962.0918,1928.6594,4486.7979 +8308,10089,18065,18064,-9,-9,1,1,51,0,1,0,3,3,-9,0,3,8.2369108,8.0804634,0,26,5,-110.56539,0,3,2,2021,6,0,38,38,1,0,0,13.59001,13.59001,.05,.05,0,0,0,0,0,0,1,1,0,3.2341399,0,57.54,42.36,43.95,53.15,8.333333333333334,1,1,0,0,11,11,5,1,1362,558662.44,516630.5,239371.67,24665.672,9962.0918,1928.6594,4486.7979 +8308,10090,18066,-9,18064,18065,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-936.06061,-9,1,3,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.82,57.72,-9,-9,6.666666666666667,1,1,0,0,1,11,2,1,152,-3209.4211,0,0,0,0,0,0 +8309,10091,18067,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3263016,8.5690145,0,0,0,-999.04895,0,3,3,2021,6,0,41,41,1,0,0,13.372125,13.372125,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,11,1,4,1,824,-40305.777,100937.31,0,0,9960.9395,4395.084,1643.5316 +8310,10092,18068,18069,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,8.1303196,8.0783558,60,3,-9.830286,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9360309,8.3752356,55.58,52.99,54.2,57.49,8.333333333333334,1,1,0,0,0,10,3,1,432.5,1127065.5,674270,165482,0,0,0,2861.6582 +8310,10092,18069,18068,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,60,-3,-210.34995,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1976414,0,54.2,57.49,55.58,52.99,10,1,1,0,0,0,10,3,1,432.5,1127065.5,674270,165482,0,0,0,2861.6582 +8311,10093,18070,18071,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,4,-1,-48.119507,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,40.83,27.59,54,53,6.666666666666667,2,3,0,0,0,6,3,1,1257.5,110053.67,-68078.391,111618.75,0,0,0,2243.179 +8311,10093,18071,18070,-9,-9,1,1,61,0,0,0,3,3,-9,1,4,8.4451036,8.2522964,0,4,1,42.306221,0,-9,-9,2021,11,1,44,0,1,1,0,12.13633,12.13633,.05,.05,0,0,0,0,0,27,1,1,0,0,0,54,53,40.83,27.59,6.666666666666667,2,3,0,0,7,6,3,1,1257.5,110053.67,-68078.391,111618.75,0,0,0,2243.179 +8311,10094,18072,-9,18070,18071,1,1,23,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1034.7479,-9,3,3,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.58910751,0,49,58,-9,-9,7,2,3,0,0,0,6,1,1,3257,-77422.461,0,0,0,0,0,851.81 +8311,10095,18073,-9,18070,18071,1,1,28,0,0,0,1,1,-9,0,5,8.6877174,8.6552019,0,0,0,-1092.0558,0,3,3,2021,5,0,40,37,1,0,1,14.592266,14.592266,0,0,0,0,0,0,0,2,1,1,0,2.2023385,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,4,6,5,1,311,117043.55,0,0,0,0,0,2881.8225 +8312,10096,18074,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5377641,6.4922776,0,0,-1006.3717,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0838199,6.728549,58.15,52.91,-9,-9,10,1,1,0,0,0,10,2,1,2288,83665.398,249773.92,0,0,0,0,1546.8422 +8313,10097,18075,18076,-9,-9,1,1,91,0,0,0,1,1,-9,0,1,0,6.150281,6.1196976,49,16,-155.53101,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.4829679,5.7119827,47.3,15.55,34.84,29.3,5,1,1,0,0,0,4,3,1,594.5,709146.13,392170.56,130349.97,0,0,0,3377.9053 +8313,10097,18076,18075,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.8209763,8.2659063,47,-16,-29.553556,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,.82061452,4.897191,28.673124,120,1,1,0,0,8.1220274,34.84,29.3,47.3,15.55,1.666666666666667,1,1,0,0,0,4,3,1,594.5,709146.13,392170.56,130349.97,0,0,0,3377.9053 +8314,10098,18077,18078,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.8780079,8.0342245,0,1,0,-118.56187,-9,2,2,2021,23,10,40,0,1,10,0,9.0840044,9.0840044,0,0,0,0,0,0,0,0,0,0,0,0,0,17.63,68.89,41.07,60.93,5,1,1,0,0,8,2,5,0,935,7034.4531,21416.633,176514.33,91809.891,3167.0269,0,3384.6345 +8314,10098,18078,18077,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.8826542,8.8067617,0,1,0,-110.09756,-9,-9,-9,2021,6,0,40,0,1,0,0,17.160179,17.160179,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,17.63,68.89,8.333333333333334,1,1,0,0,0,2,5,0,935,7034.4531,21416.633,176514.33,91809.891,3167.0269,0,3384.6345 +8315,10099,18079,-9,18080,18081,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.2359,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,503.33334,1922410.1,1620874.6,293931.47,32174.047,8397.8018,8908.8955,4645.6807 +8315,10099,18080,18081,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.1646252,8.2742815,0,9,-8,46.698662,0,2,2,2021,14,2,25,25,1,2,0,16.377613,16.377613,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.37,49.31,60.44,36.05,8.333333333333334,1,1,0,0,11,1,5,1,503.33334,1922410.1,1620874.6,293931.47,32174.047,8397.8018,8908.8955,4645.6807 +8315,10099,18081,18080,-9,-9,1,1,50,0,1,0,2,2,-9,1,2,8.921525,8.9957228,0,9,8,-25.096998,0,2,2,2021,5,0,37,35,1,0,0,23.568733,23.568733,.05,.05,0,0,0,0,0,0,1,1,0,7.2959065,0,60.44,36.05,48.37,49.31,8.333333333333334,1,1,0,0,11,1,5,1,503.33334,1922410.1,1620874.6,293931.47,32174.047,8397.8018,8908.8955,4645.6807 +8316,10100,18082,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.2598257,8.1920137,0,1,6,-62.723606,0,3,3,2021,6,0,40,40,1,0,0,11.867601,11.867601,.05,.05,0,0,0,0,0,0,0,0,0,4.1682377,0,57.06,57.76,50,57,8.333333333333334,1,1,0,0,9,11,5,1,599,122688.6,-16775.266,129279.59,46870.57,0,0,1685.0532 +8316,10101,18083,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.7711697,8.3570671,0,1,-6,11.372665,-9,-9,-9,2021,10,0,40,0,1,1,0,17.291079,17.291079,.05,.05,0,0,0,0,0,0,0,0,0,4.4460201,0,50,57,57.06,57.76,7,1,1,0,0,1,11,5,1,279,-25125.434,97405.797,0,0,0,0,659.039 +8317,10102,18084,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.9191918,8.5222473,5.7287254,0,0,-1006.5032,0,2,2,2021,6,0,38,38,1,0,0,12.143933,12.143933,.05,.05,0,0,0,0,0,7,1,1,0,5.1042209,5.8567662,52.48,55.6,-9,-9,8.333333333333334,1,1,0,0,10,8,4,0,57,407530.34,46469.324,0,0,0,0,2074.0361 +8318,10103,18085,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.7068467,7.3692522,0,0,0,-1007.1282,0,2,2,2021,26,11,28,28,1,11,0,9.7172203,9.7172203,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,30.77,64.34,-9,-9,1.666666666666667,1,1,0,1,11,12,3,0,187,6028.9023,29486.428,0,0,1270.6411,2835.5811,1519.6113 +8318,10103,18086,-9,18085,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.7217,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,0,187,6028.9023,29486.428,0,0,1270.6411,2835.5811,1519.6113 +8319,10104,18087,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.4397593,7.4234056,0,0,-1094.3959,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.9951839,7.4178467,61.11,48.86,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,264,846136.5,277470.72,253618.8,0,0,0,3168.4404 +8320,10105,18088,-9,-9,-9,1,0,23,0,0,0,1,1,1,0,4,5.9555345,5.8830981,3.937438,0,0,-973.14697,-9,2,2,2021,6,0,8,0,1,0,0,7.8294449,7.8294449,0,0,0,0,0,0,0,0,0,0,0,5.0523667,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,3,10,2,0,2539,101533.03,0,0,0,0,0,838.50922 +8321,10106,18089,18090,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,42,-5,-86.426041,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,61.46,43.33,57.73,54.53,10,1,1,0,0,0,6,5,1,398.5,3098565,2000450.5,536836.5,0,0,0,6163.6191 +8321,10106,18090,18089,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,10.012098,10.124434,8.0441504,42,5,-70.127525,0,2,2,2021,10,0,47,47,1,0,0,35.725475,35.725475,0,0,0,0,0,0,0,0,0,0,0,6.2626762,8.7088184,57.73,54.53,61.46,43.33,8.333333333333334,1,1,0,0,10,6,5,1,398.5,3098565,2000450.5,536836.5,0,0,0,6163.6191 +8321,10107,18091,-9,18089,18090,1,0,19,0,0,1,2,0,0,0,4,0,6.6274276,6.155961,0,0,-971.62988,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0302691,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,1817,-168130.36,0,0,0,0,0,501.07343 +8322,10108,18092,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.3883162,9.3398695,0,0,0,-1028.5264,0,1,2,2021,6,0,40,40,1,0,0,32.555332,32.555332,.05,.05,0,0,0,0,0,0,0,0,0,6.1827807,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,346,880610,659888.19,295369.34,73303.906,13780.126,3231.0364,2653.6621 +8323,10109,18093,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.4706135,8.4728937,0,0,-1020.1466,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9272261,8.2279987,47.7,47.03,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,585,1032259.1,309523.97,477096.88,0,4284.1187,1171.0286,3538.1897 +8324,10110,18094,18095,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,9,-4,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,1.5415514,0,35.55,50.24,27.56,30.95,5,4,2,0,0,0,11,1,0,470,47834.797,0,0,0,2996.3491,0,2281.1633 +8324,10110,18095,18094,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,9,4,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.56,30.95,35.55,50.24,4,1,1,0,0,0,11,1,0,470,47834.797,0,0,0,2996.3491,0,2281.1633 +8324,10111,18096,-9,18095,18094,1,1,22,0,0,0,2,2,-9,0,3,8.3209467,8.3990126,0,0,0,-1040.5127,-9,2,2,2021,11,1,40,0,1,1,1,10.021445,10.021445,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,5,11,4,0,807,49537.324,-65550.906,0,0,1226.6926,0,2127.9634 +8325,10112,18097,18098,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,9.5769033,9.6709118,0,9,-3,36.793186,0,-9,-9,2021,6,0,50,85,1,0,0,38.900047,38.900047,.05,.05,0,0,0,0,0,0,1,1,0,.8087371,0,57.16,56.15,56.34,53.98,8.333333333333334,1,1,0,0,11,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8325,10112,18098,18097,-9,-9,1,1,52,0,2,0,2,2,-9,0,5,8.8729534,8.3993397,0,9,3,-16.099791,0,2,2,2021,11,0,82,40,1,0,0,8.6473389,8.6473389,.05,.05,0,0,0,0,0,0,1,1,0,1.7398092,0,56.34,53.98,57.16,56.15,8.333333333333334,1,1,0,0,13,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8325,10112,18099,-9,18097,18098,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.77826,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8325,10112,18100,-9,18097,18098,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.8268,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1037.5,1435450.8,654988.75,408821.63,0,0,0,6324.6943 +8326,10113,18101,18102,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.7805653,5.869329,48,-4,51.613312,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,1.5736271,30.02808,16.846903,0,1,1,0,5.897047,5.691927,63.17,32.94,54.02,37.2,6.666666666666667,1,1,0,0,4,9,2,1,345,495443.19,229692.34,347323.75,0,0,0,2780.7344 +8326,10113,18102,18101,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7774873,6.7222767,6,4,-25.796618,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.373415,6.8483186,54.02,37.2,63.17,32.94,8.333333333333334,1,1,0,0,0,9,2,1,345,495443.19,229692.34,347323.75,0,0,0,2780.7344 +8326,10114,18103,-9,18101,18102,1,1,41,0,0,0,2,2,-9,0,4,8.0111237,8.0606661,0,0,0,-944.66638,0,2,3,2021,11,1,37,37,1,1,0,9.7409935,9.7409935,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,9,4,1,573,0,0,0,0,0,0,1072.2018 +8327,10115,18104,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.355814,8.0781622,7.314908,0,0,-1152.7854,0,3,3,2021,11,0,12,22,1,2,0,15.093467,15.093467,.05,.05,.05,0,0,0,0,0,1,1,0,4.0741925,7.5877628,32.23,48.68,-9,-9,3.333333333333333,1,1,0,0,8,10,4,1,706,158925.41,136288.11,0,0,0,0,1613.5616 +8328,10116,18105,18106,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,7.101819,7.3070216,0,5,12,8.8875532,0,3,3,2021,7,0,30,40,1,0,0,5.4185748,5.4185748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.78,46.93,53.05,52.71,8.333333333333334,3,4,0,0,7,6,4,0,645,129381.72,32864.805,0,0,0,0,1908.1758 +8328,10116,18106,18105,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,7.8472581,7.9065399,0,5,-12,-76.78978,0,-9,-9,2021,10,1,37,40,1,1,0,8.5169935,8.5169935,0,0,0,0,0,0,0,0,0,0,0,0,0,53.05,52.71,42.78,46.93,8.333333333333334,3,4,0,0,3,6,4,0,645,129381.72,32864.805,0,0,0,0,1908.1758 +8329,10117,18107,18108,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,49,0,-60.642159,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.20225169,0,46.55,58.3,60.69,37.28,8.333333333333334,1,1,0,0,0,6,2,0,692.5,117033.98,63496.352,0,0,0,0,1838.6289 +8329,10117,18108,18107,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,5.1054201,5.2855802,49,9,82.375504,-9,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9035239,5.197741,60.69,37.28,46.55,58.3,1.666666666666667,1,1,0,0,0,6,2,0,692.5,117033.98,63496.352,0,0,0,0,1838.6289 +8330,10118,18109,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.4701986,7.8756585,0,0,0,-1119.1622,0,3,2,2021,7,0,50,50,1,0,0,4.6047964,4.6047964,.05,.05,0,0,0,0,0,0,0,0,0,3.2507584,0,57.33,53.46,-9,-9,10,1,1,0,0,13,6,3,1,277,106349.05,256765.91,0,0,0,0,282.24957 +8331,10119,18110,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,1,0,7.6637402,7.1617842,0,0,-881.73779,0,-9,-9,2021,28,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6012659,16.04,23.99,-9,-9,0,1,1,0,1,0,12,3,0,503,972325.63,419151.97,162821.69,0,0,0,972.27313 +8332,10120,18111,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.5153499,6.711688,0,0,-988.79468,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.7218731,7.1759725,54.95,44.79,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,909,128602.71,197596.5,319443.72,264625.97,0,0,663.20978 +8333,10121,18112,18113,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.7943335,8.9719372,0,13,0,97.335518,0,2,2,2021,13,3,43,45,1,3,0,18.172569,18.172569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.06,46.76,54.19,38.77,8.333333333333334,1,1,0,0,9,8,5,1,633,157696.94,35611.773,657380.69,513178.69,0,0,4803.0801 +8333,10121,18113,18112,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,9.0399542,8.8656006,0,7,0,29.313927,0,2,2,2021,5,1,40,40,1,1,0,18.986305,18.986305,.05,.05,0,0,0,0,0,0,0,0,0,2.3243647,0,54.19,38.77,54.06,46.76,8.333333333333334,1,1,0,0,6,8,5,1,633,157696.94,35611.773,657380.69,513178.69,0,0,4803.0801 +8334,10122,18114,18115,-9,-9,1,1,57,0,1,0,3,3,-9,0,3,8.3147888,8.4156637,0,17,4,-72.852615,0,1,1,2021,8,0,40,40,1,0,0,10.393653,10.393653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.19,51.24,30.67,65.95,10,1,1,0,0,15,13,4,1,972,1506535.3,1083070.6,358882.75,0,0,0,3793.9773 +8334,10122,18115,18114,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.4821367,8.5671034,0,17,-4,55.831493,0,1,2,2021,24,12,34,34,1,12,0,15.638157,15.638157,.05,.05,0,0,0,0,0,27,1,1,0,0,0,30.67,65.95,53.19,51.24,8.333333333333334,1,1,0,0,13,13,4,1,972,1506535.3,1083070.6,358882.75,0,0,0,3793.9773 +8334,10122,18116,-9,18115,18114,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-958.03577,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,4,1,972,1506535.3,1083070.6,358882.75,0,0,0,3793.9773 +8334,10123,18117,-9,18115,18114,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1077.8027,-9,1,3,2021,14,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37,58.52,-9,-9,5,1,1,0,0,0,13,1,1,451,0,0,0,0,0,0,0 +8335,10124,18118,18119,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,3.8520255,4.1605315,10,2,-8.3273067,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.228632,4.2104845,50.05,55.41,34.47,19.62,6.666666666666667,1,1,0,0,6,10,2,1,316.5,243264.77,-19244.092,283308.91,0,0,0,1769.3987 +8335,10124,18119,18118,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,10,-2,-32.764385,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,41.51564,0,0,1,1,0,0,0,34.47,19.62,50.05,55.41,1.666666666666667,1,1,0,0,3,10,2,1,316.5,243264.77,-19244.092,283308.91,0,0,0,1769.3987 +8336,10125,18120,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,6.8699713,6.3691859,0,0,-1054.801,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1846504,6.425488,57.06,29.28,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,936,119878.08,40789.215,0,0,0,-492.23602,1231.5815 +8337,10126,18121,18122,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.9064822,8.1785002,0,6,-2,-56.19352,0,3,2,2021,8,1,35,35,1,1,0,13.174094,13.174094,.05,.05,0,0,0,0,0,0,0,0,0,7.1773958,0,52,54.51,50.43,53.69,8.333333333333334,1,1,0,0,7,11,5,1,1070.5,1955290.4,1509238.3,184837.98,10731.883,-1017.4952,1109.0728,3866.3594 +8337,10126,18122,18121,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.7372904,8.9051018,7.0690708,6,2,-50.761665,0,3,2,2021,18,6,35,35,1,6,0,15.827366,15.827366,.05,.05,0,0,0,0,0,0,0,0,0,7.3520126,7.0530958,50.43,53.69,52,54.51,6.666666666666667,1,1,0,0,7,11,5,1,1070.5,1955290.4,1509238.3,184837.98,10731.883,-1017.4952,1109.0728,3866.3594 +8338,10127,18123,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,4.1321173,4.323987,0,0,-896.80585,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9581039,4.2829566,64.73,28.09,-9,-9,6.666666666666667,1,1,0,1,0,5,2,0,436,86372.016,74532.281,249026.69,0,0,0,1231.696 +8339,10128,18124,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,2,0,7.0603318,6.7372708,0,0,-1063.7809,0,3,2,2021,12,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7129159,0,31.49,33.59,-9,-9,8.333333333333334,2,3,0,0,5,9,2,1,950.66669,335829.44,11070.13,179708.63,0,0,0,2194.699 +8339,10128,18125,-9,18124,-9,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1125.7839,-9,2,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,56.16,44.25,-9,-9,8.333333333333334,2,3,0,0,0,9,2,1,950.66669,335829.44,11070.13,179708.63,0,0,0,2194.699 +8339,10128,18126,-9,18124,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.51654,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,9,2,1,950.66669,335829.44,11070.13,179708.63,0,0,0,2194.699 +8340,10129,18127,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-871.53119,0,2,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,26.77,-9,-9,3.333333333333333,1,1,0,0,0,9,1,0,2077,-71122.586,0,0,0,0,2184.2732,423.82968 +8341,10130,18128,18129,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.7855282,8.595252,0,8,3,39.887096,0,-9,-9,2021,8,0,39,39,1,0,0,19.867491,19.867491,.05,.05,0,0,0,0,0,0,0,0,0,2.0501523,0,54.1,59.11,54.1,49.39,10,1,1,0,0,9,9,5,1,682.5,24667.912,34458.465,0,0,14127.082,0,3352.2048 +8341,10130,18129,18128,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.744751,7.5685887,0,37,-3,3.8382766,0,3,3,2021,12,0,25,25,1,0,0,10.794643,10.794643,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,49.39,54.1,59.11,8.333333333333334,1,1,0,0,9,9,5,1,682.5,24667.912,34458.465,0,0,14127.082,0,3352.2048 +8341,10131,18130,-9,18129,18128,1,0,27,0,0,0,2,2,-9,0,3,7.7169743,7.8848381,0,0,0,-960.13037,0,2,2,2021,15,5,40,36,1,5,1,5.8912377,5.8912377,0,0,0,0,0,0,0,0,0,0,0,0,0,47.19,53.98,-9,-9,3.333333333333333,1,1,0,0,9,9,3,1,806,135963.08,0,0,0,0,0,1065.4951 +8342,10132,18131,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.2664285,7.1285214,0,0,0,-1088.0455,0,2,2,2021,25,10,20,40,1,10,0,7.066606,7.066606,0,0,0,0,0,0,0,0,1,1,0,0,0,29.48,62.52,-9,-9,1.666666666666667,1,1,0,1,5,4,3,0,546,43129.074,0,0,0,0,0,-232.24443 +8343,10133,18132,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,6.7913265,6.9633164,0,0,-884.64844,0,2,2,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,7.7987385,0,62.397964,0,1,1,0,0,6.3437047,40.25,19.86,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,1561,129435.03,6675.4097,244763.28,0,0,0,490.60443 +8344,10134,18133,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,7.2200818,6.801085,0,0,-1052.2861,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8548856,7.0814047,54,51,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,2050,632711.06,366148.31,238432.63,0,0,0,1090.2262 +8345,10135,18134,-9,-9,-9,1,1,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-857.79224,-9,-9,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.6,49.19,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,520,56409.559,0,0,0,0,0,801.50909 +8346,10136,18135,18136,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,8.188201,8.4504375,0,21,2,67.555618,0,3,3,2021,12,0,45,44,1,0,0,9.696414,9.696414,0,0,0,0,0,0,0,14.5,0,0,0,0,0,38.86,59.06,45.09,52.41,5,1,1,0,0,9,1,4,1,818,264703.53,-31260.447,171510.55,41094.402,0,0,3062.3989 +8346,10136,18136,18135,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.938396,8.013545,0,21,-2,119.0382,0,2,2,2021,11,0,37,42,1,0,0,12.507936,12.507936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.09,52.41,38.86,59.06,8.333333333333334,1,1,0,0,6,1,4,1,818,264703.53,-31260.447,171510.55,41094.402,0,0,3062.3989 +8347,10137,18137,18138,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,58,-6,93.051987,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8855057,0,57.33,53.46,47.94,53.79,10,1,1,0,0,10,1,2,1,747,230132.19,113814.26,151760.09,0,0,0,1898.7249 +8347,10137,18138,18137,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.7467308,6.9927411,58,6,-34.424026,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.78021,6.9517112,47.94,53.79,57.33,53.46,10,1,1,0,0,0,1,2,1,747,230132.19,113814.26,151760.09,0,0,0,1898.7249 +8348,10138,18139,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.4876823,6.7521849,0,0,-1023.176,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.833437,7.0334864,64.23999999999999,44.83,-9,-9,10,1,1,0,0,1,13,2,1,3015,74931.055,85081.43,0,0,5931.752,0,650.02075 +8349,10139,18140,18141,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.0999203,8.0256195,0,1,-4,109.38461,-9,-9,-9,2021,16,4,49,0,1,4,0,8.0368986,8.0368986,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.59,34.4,27.45,63.27,3.333333333333333,1,1,0,0,1,2,4,0,554,-7221.2285,-12225.683,130706.16,111099.67,0,0,2643.9766 +8349,10139,18141,18140,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9205861,8.0949593,0,1,4,-76.53862,0,3,3,2021,13,2,45,52,1,2,0,7.372519,7.372519,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.45,63.27,45.59,34.4,3.333333333333333,1,1,0,0,4,2,4,0,554,-7221.2285,-12225.683,130706.16,111099.67,0,0,2643.9766 +8350,10140,18142,18143,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-4,81.967125,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9294126,0,58.9,45.74,62,52.77,8.333333333333334,1,1,0,0,0,2,2,1,1367,390076.16,152994.41,153580.28,0,0,0,2918.4482 +8350,10140,18143,18142,-9,-9,1,1,81,0,0,0,2,2,-9,0,5,0,7.8543282,7.4504118,58,4,-15.676502,0,2,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9615083,7.2097416,62,52.77,58.9,45.74,8.333333333333334,1,1,0,0,0,2,2,1,1367,390076.16,152994.41,153580.28,0,0,0,2918.4482 +8351,10141,18144,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.5198355,6.5253296,0,0,-848.64935,0,2,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.0084839,6.086514,50.37,55.06,-9,-9,3.333333333333333,1,1,0,0,7,11,2,1,698,281781.5,0,204664.73,0,0,0,1013.8 +8352,10142,18145,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9600282,6.4751768,0,0,-1025.6724,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3617954,41.34,56.62,-9,-9,10,1,1,0,0,0,12,2,0,2729,47582.121,44789.957,79575.695,0,0,0,287.28845 +8353,10143,18146,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.3595614,7.2604313,0,0,-951.56128,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3999739,6.645927,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,214,15170.079,0,0,0,0,0,392.46393 +8354,10144,18147,18148,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.7215414,8.2695351,0,7,-1,64.077118,0,3,3,2021,7,0,55,60,1,0,0,13.328242,13.328242,.05,.05,0,0,0,0,0,0,0,0,0,1.4263784,0,67.33,43.48,44.08,59.33,8.333333333333334,1,1,0,0,7,9,5,1,311,382424.81,48274.156,240780.16,44071.406,0,0,3848.8179 +8354,10144,18148,18147,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.1767473,8.3116579,0,37,1,74.826401,0,3,3,2021,13,1,36,36,1,1,0,11.722289,11.722289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.08,59.33,67.33,43.48,6.666666666666667,1,1,0,1,10,9,5,1,311,382424.81,48274.156,240780.16,44071.406,0,0,3848.8179 +8355,10145,18149,18150,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,9.2229128,9.3965416,0,16,1,-63.98579,0,2,3,2021,9,0,35,30,1,0,0,34.832626,34.832626,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,48.98,49,50,5,2,3,0,0,5,8,5,1,636.33331,517759.41,356100.56,221521.11,92330.719,0,0,5418.3931 +8355,10145,18150,18149,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.1360455,8.4842625,0,12,-1,75.584938,-9,-9,-9,2021,11,0,70,0,1,2,0,6.674396,6.674396,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,57.76,48.98,7,2,3,0,0,1,8,5,1,636.33331,517759.41,356100.56,221521.11,92330.719,0,0,5418.3931 +8355,10145,18151,-9,18149,18150,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-899.8999,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,636.33331,517759.41,356100.56,221521.11,92330.719,0,0,5418.3931 +8355,10146,18152,-9,18149,18150,1,1,26,0,1,0,1,1,-9,0,4,8.548296,8.2270193,0,0,0,-1078.2372,0,2,2,2021,11,0,35,0,1,2,1,13.592861,13.592861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,4,1,400,-50717.797,29182,0,0,0,0,2049.3367 +8356,10147,18153,18154,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.3734932,8.0923462,0,17,4,-34.805168,0,3,3,2021,9,0,40,40,1,1,0,9.130928,9.130928,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,54,38.01,61.37,8,2,3,0,0,1,7,5,1,939.5,2213568.5,1030306.3,621509,0,0,0,4439.6084 +8356,10147,18154,18153,-9,18156,1,0,50,0,0,0,1,1,-9,0,5,8.8901234,9.0274429,0,16,-4,-19.458954,0,3,3,2021,20,8,64,60,1,8,0,13.854712,13.854712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.01,61.37,54,54,3.333333333333333,2,3,0,0,8,7,5,1,939.5,2213568.5,1030306.3,621509,0,0,0,4439.6084 +8356,10148,18155,-9,18154,18153,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-831.17883,-9,1,1,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,1,0,0,7,1,1,625,-88898.82,0,0,0,0,0,447.90622 +8356,10149,18156,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,0,0,0,0,-994.1203,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5.7418127,0,54,46,-9,-9,7,4,6,0,0,0,7,1,1,500,-179925.08,0,0,0,0,0,637.66156 +8356,10150,18157,-9,18154,18153,1,1,26,0,0,0,1,1,-9,0,4,7.9106874,7.5981464,0,0,0,-950.29095,0,1,1,2021,10,0,40,37,1,1,1,7.8656206,7.8656206,0,0,0,0,0,0,0,0,0,0,0,7.0063858,0,50,58,-9,-9,7,2,3,0,0,1,7,3,1,481,-109200.66,0,0,0,0,0,1205.7174 +8357,10151,18158,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.4837179,6.4424624,0,0,-970.45111,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7506223,6.8597836,56.39,40.2,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1008,668737.19,106796.92,388972.34,0,2377.5247,-421.24139,1584.2344 +8358,10152,18159,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,5.9182582,6.1881294,0,0,-904.66968,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4193451,6.2452655,52,45,-9,-9,8,1,1,0,0,0,4,2,1,1740,420053.84,0,417885.53,0,0,0,276.71533 +8359,10153,18160,18161,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,-109.02474,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.22,43.93,57.33,53.46,8.333333333333334,1,1,0,0,0,5,3,1,1118,629126.5,314837.34,397069.59,0,0,0,2688.8469 +8359,10153,18161,18160,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.9768949,7.653429,46,4,-.44225538,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3010273,7.7561822,57.33,53.46,45.22,43.93,8.333333333333334,1,1,0,0,0,5,3,1,1118,629126.5,314837.34,397069.59,0,0,0,2688.8469 +8360,10154,18162,-9,-9,-9,1,0,32,1,3,0,2,2,-9,0,3,0,0,0,0,0,-1045.9437,0,2,2,2021,21,10,0,30,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.67,62.26,-9,-9,6.666666666666667,1,1,1,0,12,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8360,10154,18163,-9,18162,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-914.64307,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8360,10154,18164,-9,18162,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.6321,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,63,-9,-9,7,1,1,-9,0,0,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8360,10154,18165,-9,18162,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.3386,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,1540,57659.75,0,0,0,0,246.46568,1052.028 +8361,10155,18166,-9,-9,-9,1,0,100,0,0,0,3,3,-9,0,3,0,0,0,0,0,-969.95599,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,25.742052,0,0,1,1,0,0,0,55,42,-9,-9,8,1,1,0,0,0,4,1,1,525,261666.13,0,0,0,0,0,703.29126 +8362,10156,18167,18168,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.0212555,8.8182049,0,1,16,14.414674,0,1,1,2021,12,0,42,40,1,0,0,17.439316,17.439316,0,0,0,0,0,0,0,0,0,0,0,.061634094,0,47.77,56.48,53.31,51.24,8.333333333333334,2,3,0,0,11,8,5,0,333,-11213.509,0,0,0,0,0,3626.8921 +8362,10156,18168,18167,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,7.9816294,8.374135,0,1,-16,9.8154631,-9,-9,-9,2021,7,1,37,0,1,1,0,9.6222296,9.6222296,0,0,0,0,0,0,0,0,0,0,0,0,0,53.31,51.24,47.77,56.48,6.666666666666667,2,3,0,0,1,8,5,0,333,-11213.509,0,0,0,0,0,3626.8921 +8363,10157,18169,-9,18172,18171,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.5848,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18170,-9,18172,18171,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.5108,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18171,18172,-9,-9,1,1,27,1,3,0,2,2,-9,1,3,7.2349253,7.2019377,0,5,-1,-71.977348,0,-9,-9,2021,20,6,24,0,1,6,0,6.9624414,6.9624414,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.97,28.18,19.82,53.15,5,1,1,0,0,1,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18172,18171,-9,-9,1,0,28,1,3,0,2,2,-9,0,4,0,0,0,5,1,-39.153755,-9,-9,-9,2021,25,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,19.82,53.15,40.97,28.18,5,1,1,1,1,4,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8363,10157,18173,-9,18172,18171,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.9531,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,451.39999,209.50089,18417.25,0,0,0,0,1427.0955 +8364,10158,18174,-9,18176,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4921,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,675,-56736.875,0,0,0,24.772635,11033.795,1249.4368 +8364,10158,18175,-9,18176,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.46484,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,675,-56736.875,0,0,0,24.772635,11033.795,1249.4368 +8364,10158,18176,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,6.7088985,7.1870337,4.9557157,0,0,-895.78577,0,2,2,2021,12,0,28,28,1,0,0,3.0549755,3.0549755,0,0,0,0,0,0,0,0,1,1,0,5.4302711,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,1,10,9,2,0,675,-56736.875,0,0,0,24.772635,11033.795,1249.4368 +8365,10159,18177,18178,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3845644,8.3904991,0,7,-2,-9.4040194,0,-9,-9,2021,8,1,40,42,1,1,0,18.753649,18.753649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,48.87,58.55,8.333333333333334,1,1,0,0,7,7,5,1,775.5,-96029.617,21049.488,346673.81,375894.19,0,950.46832,5309.3408 +8365,10159,18178,18177,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.7906609,9.194129,0,7,2,22.789314,0,2,3,2021,8,0,38,38,1,0,0,16.832336,16.832336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,59.53,56.44,8.333333333333334,1,1,0,0,12,7,5,1,775.5,-96029.617,21049.488,346673.81,375894.19,0,950.46832,5309.3408 +8366,10160,18179,18180,-9,-9,1,1,43,2,4,0,2,2,-9,0,3,7.2058649,7.3912168,0,6,11,11.285291,0,3,2,2021,16,4,24,0,1,4,0,6.7154851,6.7154851,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.12,43.31,37.28,45.17,3.333333333333333,1,1,0,1,12,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18180,18179,-9,-9,1,0,32,2,4,0,3,3,-9,0,3,0,0,0,6,-11,168.60719,0,3,1,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.28,45.17,41.12,43.31,3.333333333333333,2,3,0,1,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18181,-9,18180,18179,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-982.25983,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18182,-9,18180,18179,1,0,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.4097,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18183,-9,18180,18179,1,0,4,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1070.848,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8366,10160,18184,-9,18180,18179,1,0,5,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1001.0805,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,2,1,1431.6666,191405.08,10142.674,165293.78,80987.461,0,0,1278.4783 +8367,10161,18185,18186,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6548338,8.3245621,0,8,2,-73.450233,0,3,2,2021,8,0,49,45,1,0,0,9.7430277,9.7430277,.05,.05,0,0,0,0,0,0,0,0,0,2.9803972,0,56.33,51.02,50,55,8.333333333333334,1,1,0,0,11,11,5,1,200.5,338892.03,31471.385,177617.03,75298.891,23655.74,1106.8074,3552.0483 +8367,10161,18186,18185,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.2922697,8.1092339,0,8,-2,-3.5075705,0,3,2,2021,10,0,39,39,1,1,0,10.473301,10.473301,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,56.33,51.02,8,1,1,0,0,1,11,5,1,200.5,338892.03,31471.385,177617.03,75298.891,23655.74,1106.8074,3552.0483 +8368,10162,18187,18188,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,39,9,9.0214968,0,2,2,2021,29,11,0,0,4,11,0,0,0,0,0,0,1,0,10.720583,0,27,1,1,0,5.3806667,0,26.83,29.97,55.66,46.03,5,1,1,0,0,0,12,3,1,542,874181.06,604491.5,187347.28,0,0,0,3353.8037 +8368,10162,18188,18187,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.9846644,7.8328166,44,0,57.493717,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.4288549,8.2501688,55.66,46.03,26.83,29.97,8.333333333333334,1,1,0,0,6,12,3,1,542,874181.06,604491.5,187347.28,0,0,0,3353.8037 +8368,10163,18189,-9,18187,18188,1,0,54,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1021.3317,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,1,1,0,0,0,12,2,1,244,-1492.1868,0,0,0,0,0,412.72714 +8368,10164,18190,-9,18187,18188,1,0,53,0,0,0,2,2,-9,1,4,0,0,0,0,0,-829.22119,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6452322,0,52,53,-9,-9,8,1,1,0,0,0,12,1,1,915,8966.8994,0,103380.66,0,0,0,2102.8115 +8369,10165,18191,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-902.95374,0,3,2,2021,25,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.67,33.58,-9,-9,3.333333333333333,1,1,0,1,2,1,1,1,289,27684.428,0,0,0,0,-439.89447,981.97284 +8369,10166,18192,-9,18191,-9,1,0,25,0,0,0,2,2,-9,0,5,7.9327273,7.822566,0,0,0,-1146.9794,0,3,3,2021,9,0,42,40,1,0,0,6.2764182,6.2764182,0,0,0,0,0,0,0,27,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,638,8392.3213,0,0,0,8675.2373,0,1373.2498 +8370,10167,18193,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.753396,7.7486854,0,0,-1055.9546,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.176877,7.6891389,43.48,60.97,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,764,276055.34,362799.75,127655.23,0,2835.4829,2662.2173,1046.3008 +8371,10168,18194,18195,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.8754916,6.8394303,6,-2,-69.9188,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7862248,53,44,55,45,8,1,1,0,0,0,7,3,1,997,831977.69,-9566.6582,580338.63,0,0,0,2998.752 +8371,10168,18195,18194,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.8861532,8.0190086,6,2,-64.500366,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.4647117,7.6820526,55,45,53,44,8.333333333333334,1,1,0,0,0,7,3,1,997,831977.69,-9566.6582,580338.63,0,0,0,2998.752 +8372,10169,18196,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1041.1246,0,3,3,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.54,34.27,-9,-9,5,2,3,0,0,0,8,1,0,456,50341.895,74132.477,195448.55,59682.258,1664.5782,0,0 +8372,10170,18197,-9,18196,-9,1,0,24,0,0,0,1,1,-9,0,3,7.2900991,7.5025172,0,0,0,-993.29901,0,3,-9,2021,17,5,37,37,1,5,1,4.5381484,4.5381484,0,0,0,0,0,0,0,0,0,0,0,0,0,30.8,45.19,-9,-9,5,2,3,0,0,6,8,3,0,757,-120769.14,0,0,0,0,0,1171.818 +8373,10171,18198,18199,-9,-9,1,0,41,0,2,0,1,1,-9,0,2,8.545723,8.4920998,0,16,0,-14.503758,0,2,2,2021,32,12,35,35,1,12,0,20.336878,20.336878,0,0,0,0,0,0,0,0,1,1,0,0,0,21.01,49.03,60.85,44.82,1.666666666666667,2,3,0,0,11,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8373,10171,18199,18198,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6479874,8.8244486,0,16,0,-55.018478,0,3,1,2021,7,0,39,35,1,0,0,18.858168,18.858168,.05,.05,0,0,0,0,0,2,1,1,0,0,0,60.85,44.82,21.01,49.03,8.333333333333334,2,3,0,0,12,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8373,10171,18200,-9,18198,18199,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1125.1898,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8373,10171,18201,-9,18198,18199,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.15295,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,5,1,720.25,139002.5,47083.805,418127.78,305950.59,23735.027,0,5908.8662 +8374,10172,18202,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1020.1412,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,53.5,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,50,-223981.44,0,0,0,0,0,988.70605 +8375,10173,18203,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,0,0,-924.83606,0,2,3,2021,12,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4910973,0,43.72,31.36,-9,-9,3.333333333333333,1,1,1,0,12,11,2,1,1685,0,0,0,0,0,0,-628.55096 +8376,10174,18204,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,6.8170991,8.4004898,7.6376476,0,0,-889.3075,0,2,2,2021,11,0,37,37,1,0,0,2.7753546,2.7753546,.05,.05,0,0,0,0,0,0,0,0,0,5.0038176,8.1375027,38.34,62.12,-9,-9,6.666666666666667,1,1,0,0,7,11,4,0,100,309267.94,91118.742,10525.734,-13153.326,0,0,2237.5818 +8377,10175,18205,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,8.3012066,8.0087566,0,0,-1035.9955,0,2,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.4147854,8.0140238,47.01,55.33,-9,-9,5,1,1,0,0,0,9,4,1,1035,363405.72,407533.44,0,0,0,0,7228.4639 +8378,10176,18206,18207,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,6.0938845,6.5792713,8,5,42.123634,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,36.430607,0,0,1,1,0,0,6.416924,25.84,40.22,54.21,47.1,6.666666666666667,1,1,0,0,0,4,2,0,402.5,410856.38,124729.92,103968.66,0,0,0,1763.0542 +8378,10176,18207,18206,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,5.5949717,5.8594556,8,-5,-.78526306,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.1868477,6.1071191,54.21,47.1,25.84,40.22,8.333333333333334,1,1,0,0,4,4,2,0,402.5,410856.38,124729.92,103968.66,0,0,0,1763.0542 +8379,10177,18208,18209,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,5.8334212,5.5319519,10,5,-34.667309,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1157665,5.5214386,62.49,55.09,54.2,57.49,8.333333333333334,1,1,0,0,9,1,2,1,2932,321383.38,191349.59,201110.31,0,-259.07629,0,1662.1062 +8379,10177,18209,18208,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,10,-5,-40.647327,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,62.49,55.09,8.333333333333334,1,1,0,0,7,1,2,1,2932,321383.38,191349.59,201110.31,0,-259.07629,0,1662.1062 +8379,10178,18210,-9,18209,18208,1,1,33,0,0,0,1,1,-9,0,5,8.3242912,8.4048319,0,0,0,-995.48969,0,2,2,2021,7,0,30,30,1,0,0,13.605013,13.605013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,9,1,4,1,624,46263.445,-7950.5962,0,0,0,0,2724.5093 +8379,10179,18211,-9,18209,18208,1,1,26,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1100.7924,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.45,55.84,-9,-9,3.333333333333333,1,1,0,0,0,1,1,1,1642,233807.8,0,0,0,0,0,79.637711 +8380,10180,18212,-9,18214,18215,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.7423,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8380,10180,18213,-9,18214,18215,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.04938,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8380,10180,18214,18215,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.9442215,7.8782187,0,6,0,88.304565,0,3,2,2021,7,0,34,40,1,0,0,9.2200651,9.2200651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,48.53,58.91,8.333333333333334,1,1,0,0,6,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8380,10180,18215,18214,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,9.2892551,8.9091425,0,6,0,49.014107,0,2,2,2021,12,0,55,45,1,0,0,26.10721,26.10721,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,54.79,55.86,3.333333333333333,1,1,0,0,7,10,5,1,588.5,757228.44,569993.13,437275.5,302321.69,6291.2603,0,4477.2461 +8381,10181,18216,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.9058614,6.6900158,0,0,-1124.4005,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4123297,42.05,58.8,-9,-9,5,1,1,0,0,10,9,2,1,389,73304.141,0,0,0,0,0,644.5769 +8382,10182,18217,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.2941432,7.6405568,0,0,-1052.3282,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5968995,46.46,54.53,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,129,490185.34,209879.56,222604.36,0,0,0,2111.2402 +8383,10183,18218,18219,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.855772,8.3520718,11,4,129.62018,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1432137,8.1061039,57.33,53.46,35.2,50.61,8.333333333333334,1,1,0,0,6,2,3,1,312,1043350.4,758777.19,190780.84,0,0,0,2405.7305 +8383,10183,18219,18218,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,11,-4,138.80989,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.693697,0,35.2,50.61,57.33,53.46,5,1,1,0,0,11,2,3,1,312,1043350.4,758777.19,190780.84,0,0,0,2405.7305 +8384,10184,18220,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,5,9.4490242,9.5176497,0,0,0,-989.20258,0,1,1,2021,5,0,80,72,1,0,0,24.909281,24.909281,.05,.05,0,0,0,0,0,0,0,0,0,5.0299592,0,62.39,56.71,-9,-9,10,1,1,0,0,9,12,5,1,1281,993902.19,737040.38,293863.91,30266.193,0,0,5962.1504 +8385,10185,18221,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7675147,8.2321968,0,0,0,-852.50482,0,2,-9,2021,6,0,40,36,1,0,0,7.941134,7.941134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,2,3,0,0,8,7,4,0,797,424563.56,295672.56,288933.66,0,0,0,1278.2733 +8385,10186,18222,-9,18221,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-967.1767,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,0,1087,-90778.641,0,0,0,0,0,-357.27594 +8386,10187,18223,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,5.623055,5.4517274,0,0,-984.17175,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4048543,5.7126126,42.86,27.38,-9,-9,5,1,1,0,0,0,2,2,1,330,594011.75,83190.461,102750.23,0,0,0,255.61957 +8387,10188,18224,18225,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6524825,7.3720002,0,28,-5,76.914352,0,3,2,2021,12,0,32,30,1,0,0,7.7173119,7.7173119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.29,49.06,51.83,57.2,1.666666666666667,1,1,0,0,9,2,5,1,746.5,707620.38,588147.63,100366.28,0,5590.0029,0,3470.0806 +8387,10188,18225,18224,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,8.4951563,8.6193733,5.3907466,28,5,15.909074,0,-9,-9,2021,7,0,30,35,1,0,0,20.334072,20.334072,.05,.05,0,0,0,0,0,0,0,0,0,0,5.276855,51.83,57.2,49.29,49.06,6.666666666666667,1,1,0,0,10,2,5,1,746.5,707620.38,588147.63,100366.28,0,5590.0029,0,3470.0806 +8387,10189,18226,-9,18224,18225,1,0,28,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1032.0996,-9,2,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.374588,0,54.1,59.11,-9,-9,6.666666666666667,1,1,1,0,2,2,1,1,1513,-52774.066,0,0,0,0,23.902758,-265.3049 +8387,10190,18227,-9,18224,18225,1,0,27,0,0,0,1,1,-9,0,4,8.0635233,8.2282963,0,0,0,-948.58667,0,2,2,2021,16,5,38,37,1,5,1,9.1708317,9.1708317,.05,.05,0,0,0,0,0,0,0,0,0,1.8554132,0,46.63,59.72,-9,-9,6.666666666666667,1,1,0,0,5,2,4,1,169,-156488.03,23998.557,97410.352,71915.758,0,0,1113.4106 +8388,10191,18228,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-962.95184,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,8.333333333333334,3,4,0,0,0,7,1,0,332,-11850.631,0,0,0,0,0,0 +8389,10192,18229,18231,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.0736389,7.9436345,0,9,8,134.05467,0,2,3,2021,9,0,44,42,1,0,0,8.2381067,8.2381067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,38.16,52.53,8.333333333333334,1,1,0,0,10,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10192,18230,-9,18231,18229,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-942.44232,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10192,18231,18229,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8715501,8.4467306,0,9,-8,-101.19935,0,2,3,2021,18,6,38,38,1,6,0,9.7267485,9.7267485,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.16,52.53,58.15,52.91,6.666666666666667,1,1,0,0,9,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10192,18232,-9,18231,18229,1,0,15,0,2,1,3,0,-9,0,1,0,0,0,0,0,-978.07147,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,5,3,1,486.25,499354.34,201768.69,217315.69,0,0,0,2553.0171 +8389,10193,18233,-9,18231,18229,1,1,23,0,2,0,2,2,-9,0,4,7.6035576,8.1260824,0,0,0,-974.90179,0,2,2,2021,10,0,38,39,1,0,1,10.571165,10.571165,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.73,59.7,-9,-9,6.666666666666667,1,1,0,0,7,5,3,1,208,25475.807,-11530.529,0,0,6352.9644,0,408.98254 +8390,10194,18234,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,9.0542917,9.0798807,0,0,0,-949.34698,0,2,3,2021,14,5,52,49,1,5,0,21.411556,21.411556,.05,.05,0,0,0,0,0,0,0,0,0,7.8695025,0,45.81,61.51,-9,-9,6.666666666666667,1,1,0,0,8,6,5,1,229,84637.688,274373.19,57610.383,49672.391,14949.657,0,3406.1506 +8391,10195,18235,-9,18237,18236,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1077.8063,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,10,4,1,1360.6666,340754.03,148845.58,100798.68,54597.461,18534.541,5784.5742,3665.5688 +8391,10195,18236,18237,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.5811357,8.737277,0,8,-1,-87.789597,0,2,1,2021,7,0,38,37,1,0,0,18.027569,18.027569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,47.9,40.01,8.333333333333334,1,1,0,0,9,10,4,1,1360.6666,340754.03,148845.58,100798.68,54597.461,18534.541,5784.5742,3665.5688 +8391,10195,18237,18236,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,8.2688122,8.1840487,0,8,1,-43.546368,0,3,3,2021,17,6,42,35,1,6,0,13.816773,13.816773,.05,.05,0,0,0,0,0,0,1,1,0,3.8366823,0,47.9,40.01,61.12,51.57,6.666666666666667,1,1,0,0,8,10,4,1,1360.6666,340754.03,148845.58,100798.68,54597.461,18534.541,5784.5742,3665.5688 +8391,10196,18238,-9,18237,18236,1,1,27,0,1,0,2,2,-9,0,5,8.2055378,7.95191,0,0,0,-988.05945,-9,2,2,2021,4,0,38,0,1,0,1,8.2771158,8.2771158,0,0,0,0,0,0,0,0,1,1,0,0,0,64.96000000000001,43.19,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,714,41427.207,0,0,0,0,0,1138.9867 +8392,10197,18239,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.8363676,6.3999391,0,0,0,-1111.5977,0,3,2,2021,10,0,40,55,1,1,0,2.7492499,2.7492499,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,3,4,0,0,1,9,2,0,258,87370.422,70577.172,0,0,4679.5215,0,518.4444 +8392,10198,18240,-9,18239,-9,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1112.6979,-9,2,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,0,9,1,0,905,26201.682,0,0,0,0,0,0 +8392,10199,18241,-9,18239,-9,1,1,31,0,0,0,2,2,-9,0,4,8.6521502,8.2015753,0,0,0,-1086.7532,0,2,-9,2021,10,0,40,40,1,1,1,12.516612,12.516612,.05,.05,0,0,0,0,0,0,1,1,0,5.2017374,0,50,57,-9,-9,7,3,4,0,0,1,9,4,0,191,83754.836,58606.137,113004.13,95827.828,17262.67,0,1297.3373 +8393,10200,18242,18243,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,12,-3,-186.08865,0,2,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,34.22,20.89,38.91,23.49,5,1,1,0,0,1,12,2,0,271.5,-147839.73,0,0,0,0,0,2881.9077 +8393,10200,18243,18242,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,3.9001124,3.741854,12,3,40.978569,0,2,3,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.8555412,3.5986407,38.91,23.49,34.22,20.89,5,1,1,0,0,4,12,2,0,271.5,-147839.73,0,0,0,0,0,2881.9077 +8394,10201,18244,18245,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7601995,7.821846,0,29,-2,124.52359,0,2,2,2021,10,0,31,32,1,0,0,9.9777451,9.9777451,0,0,0,0,0,0,0,0,1,1,0,4.3724456,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,12,9,3,1,1835,762084.56,458955.47,305142.69,0,0,0,910.724 +8394,10201,18245,18244,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,0,.22381683,0,29,2,-6.2617493,0,2,2,2021,7,0,40,40,1,0,0,.000520445,.000520445,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,15,9,3,1,1835,762084.56,458955.47,305142.69,0,0,0,910.724 +8394,10201,18246,-9,18244,18245,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1086.4324,0,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,57.02,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,1835,762084.56,458955.47,305142.69,0,0,0,910.724 +8394,10202,18247,-9,18244,18245,1,0,20,0,0,0,2,2,-9,0,5,7.6206269,7.9949455,0,0,0,-1061.8679,0,2,3,2021,5,1,37,41,1,1,1,9.0332174,9.0332174,.05,.05,0,0,0,0,0,0,1,1,0,.17567632,0,56.47,59.4,-9,-9,10,1,1,0,0,4,9,3,1,689,76653.828,140799.08,0,0,0,-447.99005,1547.0968 +8395,10203,18248,18249,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,7,0,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,40.91,32.91,47.14,8.333333333333334,1,1,0,0,0,13,1,1,710,251507.81,-19456.521,240498.77,0,0,0,814.09479 +8395,10203,18249,18248,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,0,0,7,9,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.91,47.14,49.41,40.91,6.666666666666667,1,1,0,0,0,13,1,1,710,251507.81,-19456.521,240498.77,0,0,0,814.09479 +8396,10204,18250,-9,18251,18253,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-841.53442,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8396,10204,18251,18253,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,8.2948103,8.2510576,0,13,-1,-25.864624,-9,2,2,2021,11,0,30,0,1,2,0,15.726343,15.726343,.05,.05,0,0,0,0,0,0,1,1,0,6.836194,0,48,56,52,54.51,7,1,1,0,0,13,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8396,10204,18252,-9,18251,18253,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.0436,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8396,10204,18253,18251,-9,-9,1,1,40,1,3,0,1,1,-9,0,3,9.05474,8.6959028,0,13,1,-104.04052,0,2,3,2021,4,0,40,30,1,0,0,18.339437,18.339437,.05,.05,0,0,0,0,0,0,1,1,0,5.0347342,0,52,54.51,48,56,6.666666666666667,2,3,0,0,13,5,5,1,921,514204.5,261748.91,302266.56,133798.63,13776.633,0,5189.2471 +8397,10205,18254,-9,18256,18257,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.02435,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8397,10205,18255,-9,18256,18257,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-934.23193,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8397,10205,18256,18257,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,9.2930937,8.8881025,0,19,0,67.145782,0,1,2,2021,24,11,55,55,1,11,0,17.192472,17.192472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.33,45.47,40.32,56.92,5,1,1,0,0,9,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8397,10205,18257,18256,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,8.5201674,8.9515524,0,20,0,-22.076073,0,1,2,2021,12,0,40,37,1,0,0,12.304449,12.304449,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.32,56.92,36.33,45.47,6.666666666666667,1,1,0,0,12,6,5,0,477.25,130822.89,91898,344258.22,186541.5,0,0,4995.3579 +8398,10206,18258,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,0,0,-974.79822,0,3,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.61,30.89,-9,-9,1.666666666666667,1,1,0,1,0,5,1,0,2568,-243974.86,0,0,0,0,1198.214,1612.3938 +8399,10207,18259,18260,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.8111186,6.9985685,0,24,3,-111.91789,0,2,2,2021,8,0,10,35,1,0,0,9.2132998,9.2132998,0,0,.05,0,0,0,0,2,0,0,0,0,0,54.37,54.8,47,30.79,8.333333333333334,1,1,0,0,6,8,4,1,654,298817.81,107607.78,258036.06,44152.633,11276.844,13822.359,1833.873 +8399,10207,18260,18259,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.2552395,8.1380272,0,24,-3,53.320255,0,1,2,2021,8,0,21,35,1,0,0,20.624722,20.624722,0,0,0,0,0,0,0,0,0,0,0,0,0,47,30.79,54.37,54.8,8.333333333333334,1,1,0,0,8,8,4,1,654,298817.81,107607.78,258036.06,44152.633,11276.844,13822.359,1833.873 +8400,10208,18261,-9,18262,18263,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1044.528,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,2,1,260.66666,-20553.621,0,109121.63,89389.008,9508.7354,0,991.35742 +8400,10208,18262,18263,-9,-9,1,0,42,0,4,0,1,1,-9,0,5,7.6309228,7.7087483,0,11,0,-29.013487,0,2,1,2021,12,0,60,-9,1,0,0,2.9083114,2.9083114,0,0,0,0,0,0,0,14.5,0,0,0,0,0,36.33,53.82,36,29,5,1,1,0,0,12,13,2,1,260.66666,-20553.621,0,109121.63,89389.008,9508.7354,0,991.35742 +8400,10208,18263,18262,-9,-9,1,1,42,0,4,0,2,2,-9,0,1,3.141747,3.0461683,0,11,0,-38.558826,-9,2,3,2021,19,0,46,0,1,6,0,.05847694,.05847694,0,0,0,0,0,0,0,0,0,0,0,0,0,36,29,36.33,53.82,4,1,1,0,0,7,13,2,1,260.66666,-20553.621,0,109121.63,89389.008,9508.7354,0,991.35742 +8401,10209,18264,-9,18266,18265,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-830.18549,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,359,126772.09,-71785.172,265666.5,127537.29,2433.9766,611.64063,2910.1177 +8401,10209,18265,18266,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,8.1119919,7.8485031,0,4,4,14.833417,0,-9,-9,2021,7,0,45,45,1,0,0,8.2142286,8.2142286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50.21,48.32,6.666666666666667,1,1,0,0,3,13,3,0,359,126772.09,-71785.172,265666.5,127537.29,2433.9766,611.64063,2910.1177 +8401,10209,18266,18265,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.5813003,7.4961615,0,4,-4,-53.626667,0,2,-9,2021,11,0,21,21,1,0,0,9.050334,9.050334,0,0,0,0,0,0,0,0,1,1,0,0,0,50.21,48.32,57.06,57.76,6.666666666666667,1,1,0,0,8,13,3,0,359,126772.09,-71785.172,265666.5,127537.29,2433.9766,611.64063,2910.1177 +8402,10210,18267,-9,18269,18268,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.0475,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8402,10210,18268,18269,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.3276873,9.2346649,0,19,2,-58.620487,0,2,2,2021,6,0,72,37,1,0,0,16.395182,16.395182,0,0,0,0,0,0,0,0,0,0,0,6.0355377,0,57.16,56.15,54.37,54.8,8.333333333333334,1,1,0,0,12,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8402,10210,18269,18268,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,0,0,0,19,-2,11.373161,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.16,56.15,8.333333333333334,2,3,0,0,0,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8402,10210,18270,-9,18269,18268,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.254,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,5,1,451.75,495950.47,-7601.3813,586127.5,98912.594,156.16988,4025.4199,3556.9065 +8403,10211,18271,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.94806,0,-9,-9,2021,11,0,0,11,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1482265,0,45.49,58.84,-9,-9,8.333333333333334,1,1,1,0,14,6,1,1,371,0,0,0,0,0,0,-596.99548 +8404,10212,18272,18273,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,7.290369,7.3303447,0,24,0,24.435902,0,2,2,2021,8,0,10,10,1,0,0,13.736511,13.736511,0,0,0,0,0,0,0,0,0,0,0,6.9336543,0,54.2,57.49,45.04,53.77,8.333333333333334,1,1,0,0,12,2,2,1,3751,-38262.242,-15398.689,19426.852,50235.141,0,0,1610.4238 +8404,10212,18273,18272,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,24,9,58.194965,0,3,3,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.04,53.77,54.2,57.49,6.666666666666667,1,1,1,0,9,2,2,1,3751,-38262.242,-15398.689,19426.852,50235.141,0,0,1610.4238 +8405,10213,18274,-9,18277,18275,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.67877,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8405,10213,18275,18277,-9,-9,1,1,63,0,2,0,1,1,-9,0,4,0,3.9032564,4.2343774,23,23,3.2999012,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1759486,3.8907416,51.24,58.84,56.11,44.4,5,1,1,0,0,5,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8405,10213,18276,-9,18277,18275,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1059.7249,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8405,10213,18277,18275,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.1060123,8.7636566,7.9789748,24,-23,47.870907,0,3,3,2021,8,0,30,30,1,0,0,11.915899,11.915899,0,0,0,0,0,0,0,0,1,1,0,1.9580739,8.3311396,56.11,44.4,51.24,58.84,8.333333333333334,1,1,0,0,8,6,4,1,986.75,2045086,1564732.6,358104.59,274761.94,0,0,2856.8303 +8406,10214,18278,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.7899337,7.6348157,0,0,0,-959.57874,0,2,2,2021,6,0,37,37,1,0,0,7.7315736,7.7315736,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,3,0,560,-18883.582,99136.234,0,0,6891.6572,891.06952,2128.0081 +8406,10215,18279,-9,18278,-9,1,0,18,0,0,0,3,3,0,0,4,0,0,0,0,0,-856.9812,-9,2,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,1,0,141,-14101.657,0,0,0,0,0,309.38312 +8407,10216,18280,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-969.9173,1,2,1,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,1,9,1,0,254,-54683.941,0,0,0,14060.939,0,0 +8408,10217,18281,18282,-9,-9,1,0,55,0,0,0,3,3,-9,1,2,0,0,0,6,-3,0,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,23.61,41.07,60.93,5,1,1,0,0,0,1,1,0,587,-25405.291,0,0,0,0,0,2304.8428 +8408,10217,18282,18281,-9,-9,1,1,58,0,0,0,3,3,-9,1,5,0,0,0,6,3,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,41.07,60.93,43.1,23.61,10,1,1,0,0,0,1,1,0,587,-25405.291,0,0,0,0,0,2304.8428 +8409,10218,18283,18284,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,7.8747516,7.9029059,0,37,4,76.311714,0,3,3,2021,7,0,24,24,1,0,0,8.2770081,8.2770081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,51.47,53.17,8.333333333333334,2,3,0,0,14,5,3,1,645,249129.34,339325.19,141783,16966.762,2454.9446,0,3463.4661 +8409,10218,18284,18283,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.6005344,7.7246037,0,13,-4,155.18262,0,-9,-9,2021,11,0,25,16,1,0,0,10.091054,10.091054,0,0,0,0,0,0,0,0,0,0,0,8.2520285,0,51.47,53.17,54.1,59.11,6.666666666666667,2,3,0,0,14,5,3,1,645,249129.34,339325.19,141783,16966.762,2454.9446,0,3463.4661 +8410,10219,18285,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1062.6141,0,2,2,2021,16,6,0,40,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.43,42.77,-9,-9,8.333333333333334,3,4,1,1,4,4,1,1,1713,95629.094,13409.619,0,0,0,0,329.05963 +8411,10220,18286,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,4,0,5.1607761,4.9703026,0,0,-931.16064,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,14.898783,4.1582146,132.26277,0,1,1,0,1.9109585,5.3317704,58.26,37.88,-9,-9,1.666666666666667,1,1,0,0,0,1,2,1,1202,88816.5,45408.203,169791.2,0,0,0,510.3237 +8412,10221,18287,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-929.6781,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.34,23.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,703,251899.8,0,0,0,0,628.93909,2302.9812 +8412,10222,18288,-9,18287,-9,1,0,37,0,0,0,2,2,-9,1,1,0,0,0,0,0,-936.70178,0,2,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.26,12.2,-9,-9,3.333333333333333,1,1,0,0,4,12,1,0,84,-62784.719,0,0,0,0,0,866.62592 +8413,10223,18289,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,4,0,6.8969479,6.82057,0,0,-899.29718,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7375112,6.5346437,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,657,73334.516,1718.0636,65391.715,0,0,0,1555.5591 +8414,10224,18290,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.086081,6.1589332,0,0,-1044.262,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2519517,57.92,41.29,-9,-9,10,1,1,0,0,0,12,2,1,872,-14679.605,51760.953,0,0,0,0,84.639732 +8415,10225,18291,18292,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,5.4954896,5.3748617,0,3,-2,-62.446827,0,3,3,2021,8,0,75,60,1,0,0,.31046999,.31046999,.05,.05,0,0,0,0,0,0,0,0,0,3.126791,0,58.87,51.29,65.06,41.58,8.333333333333334,1,1,0,0,9,12,5,1,295.5,490663.25,503799.78,111746.3,0,0,0,3833.2383 +8415,10225,18292,18291,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,8.7821178,9.1405382,0,3,2,9.1831541,0,-9,-9,2021,9,0,29,34,1,0,0,32.112488,32.112488,.05,.05,0,0,0,0,0,0,0,0,0,8.140028,0,65.06,41.58,58.87,51.29,8.333333333333334,1,1,0,0,7,12,5,1,295.5,490663.25,503799.78,111746.3,0,0,0,3833.2383 +8415,10226,18293,-9,18292,18291,1,0,22,0,0,0,2,2,-9,0,4,7.8296657,7.6480927,0,0,0,-1000.7253,0,3,2,2021,11,0,40,25,1,2,1,6.4975429,6.4975429,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,12,3,1,2485,-102410.47,0,0,0,0,0,698.6532 +8416,10227,18294,18295,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,3.8093429,3.7261643,9,4,-34.696926,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3822618,3.8764336,66.93000000000001,23.51,55.43,45.88,10,1,1,0,0,4,7,2,1,465,520657.5,0,499976.66,0,0,0,2190.3108 +8416,10227,18295,18294,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,9,-4,68.399323,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9534073,0,55.43,45.88,66.93000000000001,23.51,6.666666666666667,1,1,0,0,0,7,2,1,465,520657.5,0,499976.66,0,0,0,2190.3108 +8417,10228,18296,18297,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,22,-1,124.62251,0,2,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.93,17.54,38.77,48.67,0,1,1,0,0,3,10,3,1,2366,566286.38,107361.58,296344.56,0,0,0,2134.0647 +8417,10228,18297,18296,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.1714878,7.7103934,0,22,1,-18.847237,0,-9,-9,2021,11,0,34,34,1,0,0,8.0879564,8.0879564,0,0,0,0,0,0,0,2,1,1,0,0,0,38.77,48.67,44.93,17.54,3.333333333333333,1,1,0,0,6,10,3,1,2366,566286.38,107361.58,296344.56,0,0,0,2134.0647 +8417,10229,18298,-9,18296,18297,1,0,22,0,0,0,2,2,-9,0,3,7.1218877,7.1618237,0,0,0,-1097.9164,0,2,2,2021,15,3,16,18,1,3,1,9.4540482,9.4540482,0,0,0,0,0,0,0,2,1,1,0,0,0,44.75,47.24,-9,-9,5,1,1,0,0,6,10,3,1,258,-111819.99,0,0,0,0,0,1273.9495 +8417,10230,18299,-9,18296,18297,1,1,27,0,0,0,2,2,-9,0,4,8.2571831,8.3160381,0,0,0,-1129.0188,0,3,2,2021,18,7,41,49,1,7,1,10.073663,10.073663,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.38,61.38,-9,-9,1.666666666666667,1,1,0,0,8,10,4,1,3781,-81290.844,45975.973,0,0,0,0,1886.4374 +8418,10231,18300,18301,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,26,-3,53.654018,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.08,30.23,64.93000000000001,45.93,3.333333333333333,1,1,0,0,11,9,2,1,387.5,683664.13,332258.78,372997.88,0,0,0,1782.4153 +8418,10231,18301,18300,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.377058,7.4960384,26,3,196.71915,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5036874,7.4667501,64.93000000000001,45.93,58.08,30.23,8.333333333333334,1,1,0,0,3,9,2,1,387.5,683664.13,332258.78,372997.88,0,0,0,1782.4153 +8419,10232,18302,18303,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.8427768,8.2427473,0,5,-5,-72.285774,0,-9,-9,2021,9,2,40,24,1,2,0,7.0683308,7.0683308,0,0,0,0,0,0,0,2,1,1,0,0,0,52.24,20.93,59.26,45.49,8.333333333333334,1,1,0,0,3,5,5,1,235.5,520005.16,128981.45,91761.281,0,0,0,4597.4634 +8419,10232,18303,18302,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.7779207,8.7613783,5.2384796,5,5,-34.2537,0,2,2,2021,7,0,60,48,1,0,0,12.355735,12.355735,.05,.05,0,0,0,0,0,2,1,1,0,7.2821169,5.5446682,59.26,45.49,52.24,20.93,8.333333333333334,1,1,0,0,11,5,5,1,235.5,520005.16,128981.45,91761.281,0,0,0,4597.4634 +8419,10233,18304,-9,18302,18303,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1105.7645,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.76,50.55,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,933,62150,0,0,0,0,0,0 +8420,10234,18305,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,6.4070554,6.3358502,0,0,0,-964.04669,-9,3,3,2021,7,0,37,0,1,0,0,2.0013523,2.0013523,0,0,0,0,0,0,0,0,1,1,0,0,0,57.56,49.35,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,619,70977.977,0,82043.391,0,0,0,-116.06251 +8421,10235,18306,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.8536983,7.6081142,0,0,-1036.715,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7577152,7.4433413,61.28,46.17,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,196,579414.88,263840.53,237267.11,0,0,0,1518.6211 +8422,10236,18307,18310,-9,-9,1,0,46,0,2,0,2,2,-9,1,3,0,0,0,2,-1,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.49,50.87,55.83,37.52,5,1,1,0,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8422,10236,18308,-9,18307,18310,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1054.3308,-9,2,2,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,22.63,51.83,-9,-9,5,1,1,0,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8422,10236,18309,-9,18307,18310,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.1255,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8422,10236,18310,18307,-9,-9,1,1,47,0,2,0,2,2,-9,1,3,0,0,0,2,1,0,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,55.83,37.52,36.49,50.87,10,1,1,0,0,0,12,1,0,979.75,-74107.289,-49514.441,0,0,2939.9082,0,3413.7256 +8423,10237,18311,18312,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.9074535,4.9017262,12,-1,-167.28273,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.911099,63.25,37.54,44.42,14.06,10,1,1,0,0,0,8,2,1,667.5,328059.94,79083.719,275219.16,0,0,0,1237.531 +8423,10237,18312,18311,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,6.7319922,6.4184818,12,1,36.893921,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6918731,6.8481584,44.42,14.06,63.25,37.54,6.666666666666667,1,1,0,0,0,8,2,1,667.5,328059.94,79083.719,275219.16,0,0,0,1237.531 +8424,10238,18313,18314,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.7436519,9.127243,8.1195621,2,3,179.23579,0,-9,-9,2021,6,0,60,25,1,0,0,4.0348277,4.0348277,0,0,.05,0,0,0,0,0,1,1,0,8.2077703,8.3222399,49.56,43.62,54.62,53.53,6.666666666666667,1,1,0,0,11,10,5,1,831,755238.38,251938.13,732218.88,200440.47,0,0,5865.4263 +8424,10238,18314,18313,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.9268861,6.9401479,0,2,-3,-50.030125,0,3,-9,2021,10,0,12,40,1,0,0,8.5108042,8.5108042,0,0,0,0,0,0,0,0,1,1,0,6.8463173,0,54.62,53.53,49.56,43.62,5,1,1,0,0,10,10,5,1,831,755238.38,251938.13,732218.88,200440.47,0,0,5865.4263 +8425,10239,18315,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.5047998,8.2910213,0,0,0,-1093.5339,0,2,2,2021,9,0,45,45,1,0,0,13.829073,13.829073,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.8,57.28,-9,-9,8.333333333333334,2,3,0,0,9,8,5,1,1422,-44757.309,36785.078,0,0,0,0,2128.2222 +8426,10240,18316,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.7043352,8.6857576,0,0,0,-845.84235,0,-9,1,2021,10,0,10,10,1,0,0,73.423401,73.423401,0,0,0,0,0,0,0,0,0,0,0,.55348492,0,35.91,58.14,-9,-9,6.666666666666667,1,1,0,0,5,8,5,0,849,50203.199,220806.36,130976.99,98586.836,12623.592,0,2555.675 +8427,10241,18317,18318,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.6585598,9.5793076,0,4,-3,112.60634,0,3,2,2021,7,1,24,24,1,1,0,75.245522,75.245522,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.24,58.84,52.23,55.6,8.333333333333334,1,1,0,0,14,10,5,1,1478,376320.63,120983.6,340573.06,201738.88,0,0,9409.2764 +8427,10241,18318,18317,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.0510063,7.8787956,0,4,3,19.474615,0,2,2,2021,12,0,16,16,1,0,0,17.89802,17.89802,0,0,.05,0,0,0,0,0,0,0,0,3.8574429,0,52.23,55.6,51.24,58.84,8.333333333333334,1,1,0,0,13,10,5,1,1478,376320.63,120983.6,340573.06,201738.88,0,0,9409.2764 +8428,10242,18319,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.1729784,7.300221,0,0,-996.71661,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1502099,7.1712222,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,572,520244.03,508118.25,228690.25,0,0,1282.8049,1774.7865 +8429,10243,18320,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.4683418,8.4768047,0,3,-3,-78.617203,-9,-9,-9,2021,4,0,37,0,1,0,0,12.571953,12.571953,.05,.05,0,0,0,0,0,0,0,0,0,.48043463,0,57.06,57.76,49.02,58.89,8.333333333333334,1,1,0,0,7,10,5,1,238,246043.22,122722.54,270812.13,128825.77,1587.4065,820.68695,2084.6079 +8429,10244,18321,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,9.0039463,8.9533796,0,3,3,24.890829,0,1,2,2021,6,0,38,43,1,0,0,23.779388,23.779388,.05,.05,0,0,0,0,0,0,0,0,0,6.3552094,0,49.02,58.89,57.06,57.76,8.333333333333334,1,1,0,0,12,10,5,1,416,92855.695,475276.91,0,0,0,0,3478.4243 +8430,10245,18322,18323,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.5853467,8.056406,51,2,-62.327511,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1495981,7.8451805,59.7,43.22,49.63,54.22,8.333333333333334,1,1,0,0,0,4,3,1,1833.5,984668.69,749571,198376.41,0,945.6153,0,1710.9857 +8430,10245,18323,18322,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.0771317,3.928437,51,-2,7.7957792,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2762551,4.1531625,49.63,54.22,59.7,43.22,8.333333333333334,1,1,0,0,0,4,3,1,1833.5,984668.69,749571,198376.41,0,945.6153,0,1710.9857 +8431,10246,18324,18325,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,9,-8,-94.658958,0,3,2,2021,22,7,0,0,4,7,0,0,0,0,0,0,1,0,12.522749,0,0,1,1,0,0,0,19.01,22.64,60.29,52.11,1.666666666666667,1,1,0,0,0,12,2,0,1041,276755.06,82681.008,151884.75,0,0,0,1855.4368 +8431,10246,18325,18324,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.8526058,5.9839568,9,8,101.21902,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7975883,5.569725,60.29,52.11,19.01,22.64,10,1,1,0,0,4,12,2,0,1041,276755.06,82681.008,151884.75,0,0,0,1855.4368 +8432,10247,18326,-9,-9,-9,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-943.0307,-9,-9,-9,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,18.33,65.93000000000001,-9,-9,1.666666666666667,1,1,0,0,1,12,1,1,4542,73941.148,0,0,0,0,0,0 +8433,10248,18327,18328,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.285006,6.0402341,49,-2,-102.69138,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.4075265,43.59,31.81,54,46,1.666666666666667,1,1,0,0,0,4,2,1,618,677321.19,400905.38,203127.66,0,0,0,2465.5293 +8433,10248,18328,18327,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.1153398,7.2530766,49,2,25.695173,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,3.1916721,126.49352,12.70343,0,1,1,0,3.7282543,7.4219966,54,46,43.59,31.81,8,2,3,0,0,0,4,2,1,618,677321.19,400905.38,203127.66,0,0,0,2465.5293 +8434,10249,18329,18330,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.777215,7.5778389,0,36,2,24.426676,0,3,2,2021,11,0,27,21,1,0,0,9.9706917,9.9706917,.05,.05,0,0,0,0,0,0,0,0,0,3.062253,0,54.2,57.49,54,54,8.333333333333334,1,1,0,0,9,9,5,1,1091.5,925014.88,575102.88,376689.91,60222.121,7493.3789,8054.5713,4603.4819 +8434,10249,18330,18329,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.2573586,9.0734806,0,7,-2,-49.218685,0,-9,-9,2021,8,0,40,45,1,0,0,27.19483,27.19483,.05,.05,0,0,0,0,0,0,0,0,0,.75457788,0,54,54,54.2,57.49,8,1,1,0,0,1,9,5,1,1091.5,925014.88,575102.88,376689.91,60222.121,7493.3789,8054.5713,4603.4819 +8435,10250,18331,18332,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,0,0,7,8,-58.644608,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,55.18,49.42,39.17,23,6.666666666666667,1,1,0,0,2,2,2,1,1283.5,634129.5,375509.19,172740.66,0,0,0,1479.8352 +8435,10250,18332,18331,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,6.900178,7.0236921,7,-8,-75.122581,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5398822,6.1054559,39.17,23,55.18,49.42,5,1,1,0,0,0,2,2,1,1283.5,634129.5,375509.19,172740.66,0,0,0,1479.8352 +8436,10251,18333,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,9.0724325,9.5641232,0,0,0,-1003.7325,-9,-9,-9,2021,11,0,40,0,1,2,0,36.74157,36.74157,0,0,0,0,0,0,0,0,0,0,0,3.0334654,0,46,58,-9,-9,7,4,6,0,0,1,8,5,0,1078,10420.721,0,0,0,0,0,3162.2852 +8436,10252,18334,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.835968,8.9362545,0,0,0,-909.14471,-9,-9,-9,2021,11,0,40,0,1,2,0,18.366251,18.366251,.05,.05,0,0,0,0,0,0,0,0,0,1.7396569,0,46,58,-9,-9,7,4,6,0,0,1,8,5,0,2458,-137572.53,94856.211,0,0,5905.9658,0,2738.1416 +8436,10253,18335,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.1083403,8.4105921,0,0,0,-1056.5588,-9,-9,-9,2021,11,0,40,0,1,2,0,11.38575,11.38575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,6,0,0,1,8,4,0,539,119937.57,60869.117,0,0,0,0,1935.5909 +8436,10254,18336,-9,-9,-9,1,0,25,0,0,0,2,2,0,0,3,0,0,0,0,0,-979.53979,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.31,56.51,-9,-9,6.666666666666667,1,1,0,0,7,8,1,0,1302,-104681.49,0,0,0,0,0,527.13141 +8437,10255,18337,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1068.6996,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7476974,0,52.24,38.11,-9,-9,10,1,1,0,0,0,1,1,1,512,-142925.95,0,0,0,0,0,1470.7051 +8438,10256,18338,18339,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,7.603579,7.5156121,63,5,-41.335106,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.6664801,8.0288219,58.33,39.49,54.21,45.2,8.333333333333334,1,1,0,0,0,6,3,1,416,538617.06,297427.31,264674.81,0,0,0,2848.6787 +8438,10256,18339,18338,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.51124,6.8867812,63,-5,-157.0788,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3555102,6.6775661,54.21,45.2,58.33,39.49,8.333333333333334,1,1,0,0,0,6,3,1,416,538617.06,297427.31,264674.81,0,0,0,2848.6787 +8439,10257,18340,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.3454952,8.4802437,0,0,0,-1070.8615,0,3,3,2021,11,2,28,28,1,2,0,16.505293,16.505293,.05,.05,0,0,0,0,0,98,0,0,0,1.0350561,0,49.47,27.45,-9,-9,8.333333333333334,2,3,0,0,11,8,4,1,827,1163532.8,327127.88,466395.72,50447.188,1547.9059,2896.4583,1376.2057 +8440,10258,18341,18342,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,9,0,-9.4531536,0,3,2,2021,3,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,42.94,58.32,50.22,10,1,1,0,0,0,4,2,1,445,213692.34,140613.81,0,0,0,0,2181.5769 +8440,10258,18342,18341,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.5896297,6.8531475,9,0,-10.445198,0,3,3,2021,2,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2959585,58.32,50.22,62.42,42.94,8.333333333333334,1,1,0,0,0,4,2,1,445,213692.34,140613.81,0,0,0,0,2181.5769 +8441,10259,18343,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.1919074,6.1956558,0,0,-962.0918,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,1.1764727,0,0,1,1,0,0,5.9729929,44.24,30.31,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,474,402746.38,131531.7,188452.55,0,0,0,1325.0321 +8442,10260,18344,18345,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.6820831,9.5267029,0,42,-2,17.015686,0,2,2,2021,10,0,40,40,1,1,0,38.552765,38.552765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,48,57.16,56.15,7,1,1,0,0,1,5,5,1,319,1450972.5,1358078.3,262676.88,0,0,0,6606.8784 +8442,10260,18345,18344,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.6957455,7.5428491,0,42,2,99.723587,0,2,2,2021,6,0,28,37,1,0,0,6.9801793,6.9801793,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,51,48,8.333333333333334,1,1,0,0,9,5,5,1,319,1450972.5,1358078.3,262676.88,0,0,0,6606.8784 +8443,10261,18346,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.1623526,9.3785133,7.949892,0,0,-1065.434,0,2,2,2021,12,0,90,55,1,0,0,8.050745,8.050745,.05,.05,0,0,0,0,0,0,0,0,0,8.7331352,0,46.98,59.35,-9,-9,8.333333333333334,4,5,0,0,11,2,5,1,189,1715854.5,1300877.1,433226,0,7239.3013,0,4594.2266 +8444,10262,18347,18348,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.1258373,7.9984131,0,8,-5,.78946918,0,2,-9,2021,2,0,40,40,1,0,0,9.2663708,9.2663708,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,48.53,49.04,55.86,8.333333333333334,1,1,0,0,10,4,4,1,93,500389.84,454627.63,128550.59,34752.223,-261.43805,0,2027.8567 +8444,10262,18348,18347,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.8817587,7.9844584,0,11,5,106.66618,0,3,3,2021,16,4,40,40,1,4,0,6.132762,6.132762,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.04,55.86,50.34,48.53,3.333333333333333,1,1,0,0,10,4,4,1,93,500389.84,454627.63,128550.59,34752.223,-261.43805,0,2027.8567 +8445,10263,18349,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,6.2930937,6.3514075,0,0,-1012.9481,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9845748,47.91,53.86,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,292,322018.09,0,270664.59,0,0,0,1499.7905 +8446,10264,18350,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,5.7031746,5.9569144,0,0,-925.06567,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7653966,6.0012493,52.4,47.71,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,928,172532.06,21665.037,321157.81,0,0,0,1064.877 +8447,10265,18351,-9,-9,-9,1,0,23,0,0,0,2,2,0,0,4,0,5.9534583,6.2593346,0,0,-1069.9805,-9,2,2,2021,29,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5977178,0,27.28,65.96000000000001,-9,-9,3.333333333333333,1,1,0,0,0,1,2,0,962,0,0,0,0,0,0,769.68787 +8448,10266,18352,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.2653656,8.2754068,0,0,0,-1122.5605,0,2,2,2021,10,0,48,58,1,0,0,9.5386915,9.5386915,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.74,50.46,-9,-9,5,1,1,0,0,14,9,4,1,515,277681.13,91121.203,251261.89,462.1221,0,1499.8793,646.35339 +8448,10267,18353,-9,18352,-9,1,1,24,0,0,0,1,1,-9,0,3,8.2794447,7.9509006,0,0,0,-956.7605,0,1,-9,2021,15,3,38,38,1,3,1,9.6790771,9.6790771,0,0,0,0,0,0,0,0,0,0,0,.54717457,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,716,-9605.6025,0,0,0,0,0,763.81812 +8448,10268,18354,-9,18352,-9,1,0,19,0,0,0,2,2,-9,0,3,5.0940166,5.7994699,4.5389109,0,0,-1097.5383,0,1,-9,2021,10,0,24,24,1,0,1,.94056308,.94056308,0,0,0,0,0,0,0,0,0,0,0,5.1057343,0,47.55,55.06,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1032,-38401.238,0,0,0,0,0,2.5488963 +8449,10269,18355,18356,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.5817089,8.6968002,0,15,-1,33.008816,0,3,-9,2021,9,2,40,38,1,2,0,19.009333,19.009333,.05,.05,0,0,0,0,0,0,1,1,0,3.4613972,0,53.77,47.24,38.51,59.43,6.666666666666667,1,1,0,0,11,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8449,10269,18356,18355,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,8.786891,8.7427378,0,15,1,-59.487556,0,2,-9,2021,14,3,42,45,1,3,0,16.461102,16.461102,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,53.77,47.24,6.666666666666667,1,1,0,0,11,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8449,10269,18357,-9,18355,18356,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3998,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8449,10269,18358,-9,18355,18356,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0052,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,217.75,272885.53,141906.23,281035.38,154716.84,1747.2345,0,4904.5137 +8450,10270,18359,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.5980196,8.7992144,6.0413527,0,0,-1030.6807,0,3,3,2021,22,10,40,38,1,10,0,18.678968,18.678968,.05,.05,0,0,0,0,0,0,1,1,0,6.0958519,0,40.71,62.41,-9,-9,3.333333333333333,1,1,0,1,5,8,4,0,676.5,609690.19,355704.16,267778.06,100496.8,0,0,2620.2441 +8450,10270,18360,-9,18359,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.85614,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,8,4,0,676.5,609690.19,355704.16,267778.06,100496.8,0,0,2620.2441 +8451,10271,18361,18362,-9,-9,1,0,43,0,2,0,3,3,-9,0,5,0,0,0,1,2,-6.1699905,-9,2,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,57.33,53.46,10,1,1,0,0,2,6,5,1,549,1240461.5,414709.94,746231.75,0,0,0,4581.377 +8451,10271,18362,18361,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,9.6725349,9.4416628,0,1,-2,20.281179,-9,2,2,2021,9,0,60,0,1,0,0,28.890125,28.890125,0,0,0,0,0,0,0,0,0,0,0,3.6587203,0,57.33,53.46,48.77,60.16,8.333333333333334,1,1,0,0,7,6,5,1,549,1240461.5,414709.94,746231.75,0,0,0,4581.377 +8452,10272,18363,18364,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.3628883,8.1716223,0,3,10,97.806595,0,-9,-9,2021,25,10,36,36,1,10,0,12.477496,12.477496,0,0,0,0,0,0,0,0,1,1,0,0,0,22.33,50.64,47.57,51.43,3.333333333333333,1,1,0,1,3,10,4,0,406,55283.871,0,164872.36,92023.75,2288.2791,0,3288.7056 +8452,10272,18364,18363,-9,-9,1,0,22,1,1,0,2,2,-9,0,3,7.3171296,7.4595013,0,3,-10,-23.610403,0,2,3,2021,17,5,23,24,1,5,0,7.0910711,7.0910711,0,0,0,0,0,0,0,0,1,1,0,0,0,47.57,51.43,22.33,50.64,1.666666666666667,1,1,0,0,5,10,4,0,406,55283.871,0,164872.36,92023.75,2288.2791,0,3288.7056 +8452,10272,18365,-9,18364,18363,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.06677,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,0,406,55283.871,0,164872.36,92023.75,2288.2791,0,3288.7056 +8453,10273,18366,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,8.4880304,8.5009317,0,0,0,-978.85156,0,2,2,2021,27,11,41,35,1,11,0,13.925117,13.925117,.05,.05,0,0,0,0,0,2,0,0,0,3.5380695,0,32.32,54.65,-9,-9,1.666666666666667,1,1,0,1,9,4,5,1,1275,486265.75,222116.22,183034.58,91260.516,0,0,1530.3586 +8454,10274,18367,-9,18368,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.5514,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,226,-27650.281,-16485.105,0,0,0,0,1651.5668 +8454,10274,18368,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.9396181,6.8220873,0,0,0,-1178.7893,0,-9,-9,2021,13,1,21,16,1,1,0,5.0712147,5.0712147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.21,51.34,-9,-9,5,4,2,0,0,3,6,2,0,226,-27650.281,-16485.105,0,0,0,0,1651.5668 +8455,10275,18369,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.371273,5.4829693,0,0,-970.50415,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9439473,5.2418895,55.39,54.22,-9,-9,10,1,1,0,0,0,6,2,1,503,98238.242,0,90912.891,0,0,0,1380.3829 +8456,10276,18370,-9,-9,-9,1,1,33,0,0,0,3,3,-9,1,3,0,6.2583275,6.1180058,0,0,-1023.2203,0,2,1,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2924752,0,37.94,57.43,-9,-9,10,4,2,0,0,0,4,2,0,633,96771.703,154587.83,0,0,0,1221.6636,437.9523 +8457,10277,18371,18372,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.8439722,8.000102,0,29,-12,-15.251558,0,3,-9,2021,9,0,53,0,1,0,0,7.0730996,7.0730996,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,38.34,20.38,8.333333333333334,1,1,0,0,8,6,3,0,2851.5,425228.19,171889.25,123309.9,0,0,0,2519.604 +8457,10277,18372,18371,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,29,12,-14.298461,0,2,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,43.061432,0,0,1,1,0,0,0,38.34,20.38,58.15,52.91,0,1,1,0,1,0,6,3,0,2851.5,425228.19,171889.25,123309.9,0,0,0,2519.604 +8457,10278,18373,-9,18371,18372,1,0,19,0,0,0,2,2,1,0,3,6.8351369,6.7999654,0,0,0,-932.24133,-9,3,3,2021,15,3,21,0,1,3,1,4.3429012,4.3429012,0,0,0,0,0,0,0,2,1,1,0,0,0,33.08,49.65,-9,-9,3.333333333333333,1,1,0,0,1,6,2,0,87,-7761.2061,0,0,0,0,0,772.68024 +8457,10279,18374,-9,18371,18372,1,1,18,0,0,0,2,2,-9,0,3,7.4225945,7.3577948,0,0,0,-957.04486,0,3,3,2021,11,1,45,0,1,1,1,4.7287931,4.7287931,0,0,0,0,0,0,0,0,1,1,0,5.1083455,0,53.56,49.66,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,778,168230.86,0,0,0,0,0,816.78619 +8458,10280,18375,18376,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.6573997,7.4342046,0,5,-2,-19.153496,-9,-9,2,2021,13,1,28,0,1,1,0,9.8370371,9.8370371,.05,.05,0,0,0,0,0,0,1,1,0,2.2920859,0,51.24,58.84,54.2,57.49,8.333333333333334,1,1,0,0,6,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8458,10280,18376,18375,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.7028742,9.0237246,0,5,2,-92.198608,-9,-9,-9,2021,11,0,43,0,1,0,0,12.222392,12.222392,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,51.24,58.84,10,1,1,0,0,10,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8458,10280,18377,-9,18375,18376,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1030.8145,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8458,10280,18378,-9,18375,18376,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1070.5875,-9,2,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,57.75,-9,-9,10,1,1,0,0,0,9,4,1,361.5,349625.81,102838.38,315398.03,158879.88,10262.182,0,2869.9746 +8459,10281,18379,18380,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0044193,8.9135218,0,8,3,77.346321,0,2,2,2021,10,1,35,35,1,1,0,26.457115,26.457115,.05,.05,0,0,0,0,0,0,0,0,0,7.1749496,0,55.79,52.62,54.51,44.28,8.333333333333334,1,1,0,0,13,6,5,1,1660.5,192606.94,-26284.311,102571.84,25860.162,0,0,6245.7915 +8459,10281,18380,18379,-9,-9,1,0,41,0,0,0,1,1,-9,0,2,8.3583097,8.2752724,0,8,-3,-39.601238,0,-9,-9,2021,11,0,25,22,1,0,0,21.594908,21.594908,.05,.05,0,0,0,0,0,0,0,0,0,6.7278237,0,54.51,44.28,55.79,52.62,5,1,1,0,0,14,6,5,1,1660.5,192606.94,-26284.311,102571.84,25860.162,0,0,6245.7915 +8460,10282,18381,-9,18382,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.991,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,2157,44848.949,0,0,0,0,-15.555603,2889.448 +8460,10282,18382,-9,-9,-9,1,0,40,0,2,0,2,2,-9,1,1,7.3873262,7.9763827,6.4782386,0,0,-925.35565,0,2,2,2021,23,11,53,58,1,11,0,4.0913358,4.0913358,0,0,0,0,0,0,0,0,1,1,0,7.13662,0,30.91,22.6,-9,-9,3.333333333333333,1,1,0,0,13,9,3,1,2157,44848.949,0,0,0,0,-15.555603,2889.448 +8461,10283,18383,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.6320734,8.7077465,0,0,0,-1101.1387,0,2,3,2021,6,0,75,38,1,0,0,7.0317831,7.0317831,.05,.05,0,0,0,0,0,0,0,0,0,7.0700412,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,5,5,1,1617,-77609.227,-31336.324,0,0,0,0,1720.8102 +8462,10284,18384,18385,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.2213764,8.1838713,0,20,2,36.028343,0,2,2,2021,12,0,40,39,1,0,0,10.585616,10.585616,.05,.05,0,0,0,0,0,0,0,0,0,7.8398733,0,50.51,42.98,60.12,54.8,8.333333333333334,2,3,0,0,9,12,5,1,1319,264227.28,217724.38,179209.16,151267.55,352.08926,5518.7368,4844.3086 +8462,10284,18385,18384,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.9676704,8.9226484,0,20,-2,62.598927,0,3,3,2021,6,0,39,38,1,0,0,22.280203,22.280203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,50.51,42.98,8.333333333333334,2,3,0,0,10,12,5,1,1319,264227.28,217724.38,179209.16,151267.55,352.08926,5518.7368,4844.3086 +8463,10285,18386,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.590487,7.6972775,0,0,-1017.7828,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0439095,7.5078201,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,247,1049460.5,135114.67,953072.25,0,0,0,2553.5808 +8464,10286,18387,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.1119795,7.0008426,0,0,0,-949.85596,0,2,2,2021,8,0,50,60,1,0,0,2.2663651,2.2663651,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.1,49.93,-9,-9,3.333333333333333,1,1,0,1,9,9,2,1,545,271818.16,38538.707,304077.53,0,0,0,-60.656269 +8465,10287,18388,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1069.089,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,40,-9,-9,5,1,1,0,0,0,5,1,0,1920,0,0,0,0,0,0,890.55109 +8466,10288,18389,18390,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.233408,7.8500237,0,2,0,61.679859,0,-9,-9,2021,8,0,40,39,1,0,0,10.359727,10.359727,.05,.05,0,0,0,0,0,0,0,0,0,5.8865886,0,63.98,40.76,45.91,59.89,10,1,1,0,0,1,2,5,1,873,98793.523,18515.904,116636.31,69732.156,-363.59775,-.011123657,3590.3865 +8466,10288,18390,18389,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.7599945,8.431551,0,2,0,44.653759,0,2,3,2021,12,0,46,45,1,0,0,11.655916,11.655916,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,63.98,40.76,8.333333333333334,1,1,0,0,15,2,5,1,873,98793.523,18515.904,116636.31,69732.156,-363.59775,-.011123657,3590.3865 +8467,10289,18391,18392,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.9208541,7.6128407,29,-16,-8.8503971,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5394998,7.4099836,58.32,50.22,57.33,53.46,8.333333333333334,1,1,0,0,6,7,4,1,1602.5,1708914.8,550620.5,840502.13,0,0,0,3757.6338 +8467,10289,18392,18391,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.8640804,8.2574186,26,16,-9.9519253,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7585777,8.1073408,57.33,53.46,58.32,50.22,8.333333333333334,1,1,0,0,0,7,4,1,1602.5,1708914.8,550620.5,840502.13,0,0,0,3757.6338 +8468,10290,18393,18394,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.9807415,8.3185778,33,1,26.956923,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3637452,8.3093004,60.27,49.27,57.16,56.15,8.333333333333334,1,1,0,0,5,7,5,1,601.5,2193502,173032.28,855478,0,0,0,4552.3818 +8468,10290,18394,18393,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.6408896,8.1054211,7.5109062,33,-1,-15.407196,0,3,3,2021,7,0,10,11,1,0,0,11.578019,11.578019,0,0,0,0,0,0,0,0,1,1,0,4.4114327,7.9581513,57.16,56.15,60.27,49.27,8.333333333333334,1,1,0,0,9,7,5,1,601.5,2193502,173032.28,855478,0,0,0,4552.3818 +8469,10291,18395,18396,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9984746,7.7218866,49,1,11.989558,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7307386,7.6992669,54.2,57.49,63.48,51.85,8.333333333333334,1,1,0,0,0,4,4,1,561,1208157.5,754912.63,304676.84,0,0,0,2951.7246 +8469,10291,18396,18395,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.764535,7.3661733,49,-1,-44.854416,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6156917,63.48,51.85,54.2,57.49,8.333333333333334,1,1,0,0,0,4,4,1,561,1208157.5,754912.63,304676.84,0,0,0,2951.7246 +8470,10292,18397,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.3045969,8.5530014,0,0,0,-941.28802,0,3,3,2021,10,0,42,35,1,0,0,12.656312,12.656312,0,0,0,0,0,0,0,2,1,1,0,0,0,37.47,56,-9,-9,3.333333333333333,1,1,0,0,8,7,5,1,409,251600.81,-35409.746,170324.67,0,0,0,2535.6548 +8471,10293,18398,-9,18402,18399,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-992.86395,-9,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,2,1,0,330,0,0,0,0,0,0,0 +8471,10294,18399,18402,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.6605024,8.3183107,0,2,7,92.361877,0,-9,-9,2021,12,1,60,55,1,1,0,9.4104052,9.4104052,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,45.18,54.77,5,1,1,0,0,2,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8471,10294,18400,-9,18402,18399,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1037.4321,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8471,10294,18401,-9,18402,18399,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.83453,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8471,10294,18402,18399,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.7804685,7.4832635,0,2,-7,46.634399,0,2,2,2021,12,0,30,30,1,0,0,10.040448,10.040448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,46.33,55.93,8.333333333333334,1,1,0,0,4,2,3,0,1376.75,114108.94,128544.11,0,0,0,578.5954,3806.658 +8472,10295,18403,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,7.1649342,7.0775404,0,0,-1057.6353,-9,-9,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7984004,0,40.72,54.38,-9,-9,10,1,1,0,0,3,4,3,0,169,-121780.77,131025.32,0,0,0,178.36526,910.93347 +8473,10296,18404,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-935.86145,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.9767403,0,55.65,41.83,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,651,20046.941,0,0,0,-1679.0109,0,607.87512 +8474,10297,18405,-9,-9,-9,1,1,23,0,0,1,1,0,0,0,3,0,0,0,0,0,-840.81165,-9,-9,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.277566,0,52.48,55.6,-9,-9,8.333333333333334,2,3,0,0,3,4,1,0,1456,60402.188,0,0,0,0,0,1426.5588 +8475,10298,18406,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,6.6095238,6.5078826,0,0,-1038.9147,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.756705,6.3832083,42.08,21.69,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,162,261406.77,-36271.93,385545.13,0,0,10163.448,1648.6996 +8476,10299,18407,18408,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,5.5291848,5.6688375,40,1,27.23748,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.7156105,0,0,1,1,0,0,5.6942353,42.35,36.31,38.41,28.6,8.333333333333334,1,1,0,0,0,11,3,1,344,104075.89,9981.0723,0,0,0,0,1949.0081 +8476,10299,18408,18407,-9,-9,1,1,63,0,0,0,3,3,-9,0,1,0,7.288229,7.3500834,5,-1,56.640671,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5006876,38.41,28.6,42.35,36.31,5,1,1,0,0,9,11,3,1,344,104075.89,9981.0723,0,0,0,0,1949.0081 +8477,10300,18409,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.0742707,8.3660355,8.1445141,0,0,-1065.7705,0,2,2,2021,8,0,25,25,1,0,0,5.1928811,5.1928811,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1984634,55.19,54.26,-9,-9,1.666666666666667,1,1,0,0,6,12,4,1,623,53101.438,-18333.674,0,0,8744.6455,0,1970.0345 +8478,10301,18410,18411,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,37,0,-63.221897,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7710576,0,66.09999999999999,42.66,60.12,54.8,10,1,1,0,0,0,9,3,1,678.5,1142269,624656.75,409222.25,0,0,0,2114.7266 +8478,10301,18411,18410,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8322625,7.7787995,37,0,-86.447792,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1549692,7.7016182,60.12,54.8,66.09999999999999,42.66,10,1,1,0,0,0,9,3,1,678.5,1142269,624656.75,409222.25,0,0,0,2114.7266 +8479,10302,18412,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,5.7881365,5.6276169,0,0,-1072.6516,0,2,2,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1815248,6.0247774,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,383,185379.78,11941.993,163346.59,20844.322,9114.6416,734.06012,2410.5808 +8480,10303,18413,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,5.7825727,5.4117899,0,0,-900.91199,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,.98714161,0,25.254732,0,1,1,0,0,5.4388871,37.56,21.57,-9,-9,5,1,1,0,0,0,13,2,1,1093,-51309.043,168914.39,0,0,0,0,1938.2208 +8481,10304,18414,18417,-9,-9,1,0,35,0,3,0,1,1,-9,0,4,6.9418516,7.1317568,0,8,1,93.93927,0,2,2,2021,6,0,16,0,1,0,0,6.6045828,6.6045828,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.69,57.47,10,1,1,0,0,8,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8481,10304,18415,-9,18414,18417,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1081.0188,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8481,10304,18416,-9,18414,18417,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-816.31824,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8481,10304,18417,18414,-9,-9,1,1,34,0,3,0,1,1,-9,0,5,9.1119833,8.9384069,0,8,-1,-4.2871265,0,2,2,2021,6,0,40,38,1,0,0,30.525631,30.525631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,48.87,58.55,8.333333333333334,1,1,0,0,8,2,4,1,478,88299.094,78024.914,148226.84,76614.156,9798.3506,5854.042,3834.4395 +8482,10305,18418,18419,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,8.9621754,9.2060575,6.4354005,26,-3,-73.477097,0,2,2,2021,8,0,30,35,1,0,0,28.977999,28.977999,.05,.05,0,0,0,0,0,0,1,1,0,6.4714456,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,10,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8482,10305,18419,18418,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.2283201,8.5628185,0,8,3,79.408028,0,-9,-9,2021,8,1,40,40,1,1,0,13.94793,13.94793,.05,.05,0,0,0,0,0,2,1,1,0,3.6855035,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,6,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8482,10305,18420,-9,18418,18419,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1142.1483,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8482,10305,18421,-9,18418,18419,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.6135,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,711.25,1573618.4,1392188,188460.08,78826.656,0,0,5180.5498 +8483,10306,18422,-9,-9,-9,1,0,26,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1023.8326,-9,-9,-9,2021,19,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.53797823,0,16.74,41.19,-9,-9,3.333333333333333,1,1,0,0,1,1,1,0,1300,78578.195,0,0,0,0,0,573.67303 +8483,10307,18423,18424,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,8.1787605,8.2260265,0,1,10,74.705902,-9,-9,-9,2021,4,0,70,0,1,0,0,3.6536102,3.6536102,.05,.05,0,0,0,0,0,0,1,1,0,6.2651014,0,47.07,61.06,41.17,52.68,10,1,1,0,0,3,1,5,0,2607.5,-71812.781,107402.89,144937.33,145571.69,7343.4878,0,4888.6553 +8483,10307,18424,18423,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.8369665,8.5449438,0,1,-10,31.79114,-9,-9,-9,2021,13,1,98,0,1,1,0,7.3419743,7.3419743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,52.68,47.07,61.06,6.666666666666667,1,1,0,0,2,1,5,0,2607.5,-71812.781,107402.89,144937.33,145571.69,7343.4878,0,4888.6553 +8484,10308,18425,18426,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.8824372,7.8840113,0,39,-1,10.605147,0,2,2,2021,10,1,37,38,1,1,0,11.098395,11.098395,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,0,235,603534.69,272288.84,286275.53,80500.289,10511.203,2705.2266,3486.4805 +8484,10308,18426,18425,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.6070061,8.5863266,0,39,1,-97.293449,0,3,3,2021,10,0,43,46,1,0,0,15.40097,15.40097,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,51.24,58.84,5,1,1,0,0,7,7,5,0,235,603534.69,272288.84,286275.53,80500.289,10511.203,2705.2266,3486.4805 +8485,10309,18427,18428,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,5.2932835,4.9804807,0,22,2,42.813709,0,2,1,2021,7,0,60,60,1,0,0,.27933294,.27933294,0,0,0,0,0,0,.78813988,0,1,1,0,1.1794116,0,50.03,52.62,51.41,56.15,6.666666666666667,4,2,0,0,6,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8485,10309,18428,18427,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,5.5847015,5.4680429,0,22,-2,-13.661525,0,2,2,2021,9,0,9,9,1,0,0,2.893867,2.893867,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,50.03,52.62,8.333333333333334,1,1,0,1,7,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8485,10309,18429,-9,18428,18427,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.25378,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8485,10309,18430,-9,18428,18427,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.88525,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,1,1371.25,-43206.375,-28229.225,104541.26,80551.43,14116.971,3265.5388,9.0958157 +8486,10310,18431,18432,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.5542746,9.8861885,7.2326856,38,1,-.9962967,0,2,2,2021,12,3,35,40,1,3,0,53.649654,53.649654,0,0,0,0,0,0,0,0,0,0,0,7.6192636,8.1225376,55.51,30.31,44.19,58.01,8.333333333333334,1,1,0,0,8,6,5,1,522.5,3410370.3,1806318,1035788,0,0,0,7036.2197 +8486,10310,18432,18431,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,0,0,38,-1,77.402405,0,3,2,2021,16,5,0,20,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7176738,0,44.19,58.01,55.51,30.31,8.333333333333334,1,1,0,0,6,6,5,1,522.5,3410370.3,1806318,1035788,0,0,0,7036.2197 +8487,10311,18433,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.759819,7.5530233,0,0,0,-914.58887,-9,-9,-9,2021,14,3,3,0,1,3,0,72.592911,72.592911,0,0,0,0,0,0,0,0,1,1,0,6.0356207,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,10,6,3,1,241,406733.31,0,528074.44,0,0,0,649.53223 +8488,10312,18434,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.5878968,7.7257962,5.520669,0,0,-997.53906,0,1,2,2021,10,0,16,17,1,0,0,15.845795,15.845795,.05,.05,0,0,0,0,0,2,1,1,0,5.9294372,0,48.2,44.16,-9,-9,8.333333333333334,1,1,0,0,10,13,3,0,1918.6666,51361.496,73293.617,0,0,0,0,1665.6382 +8488,10312,18435,-9,18434,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.48431,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,3,0,1918.6666,51361.496,73293.617,0,0,0,0,1665.6382 +8488,10312,18436,-9,18434,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.98505,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3319975,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,0,1918.6666,51361.496,73293.617,0,0,0,0,1665.6382 +8489,10313,18437,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1050.1252,0,2,2,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,20.59,47.81,-9,-9,5,1,1,0,1,0,7,1,0,2127.6667,54677.379,0,0,0,0,0,1036.4866 +8489,10313,18438,-9,18437,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.7562,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,1,0,2127.6667,54677.379,0,0,0,0,0,1036.4866 +8489,10313,18439,-9,18437,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.09314,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,1,0,2127.6667,54677.379,0,0,0,0,0,1036.4866 +8490,10314,18440,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,2.9738076,2.9890726,0,0,-1080.3745,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0562444,2.9531479,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,2323,-56149.934,-13065.036,0,0,0,0,1306.7875 +8491,10315,18441,18442,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,32,-1,0,0,1,1,2021,5,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3918762,0,58.15,52.91,60.12,54.8,8.333333333333334,1,1,0,0,12,7,1,1,1600,1260518.5,8160.5137,514432.69,0,0,0,3812.3623 +8491,10315,18442,18441,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,0,0,32,1,0,0,2,2,2021,4,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4923353,0,60.12,54.8,58.15,52.91,8.333333333333334,1,1,0,0,11,7,1,1,1600,1260518.5,8160.5137,514432.69,0,0,0,3812.3623 +8491,10316,18443,-9,18441,18442,1,0,20,0,0,0,1,1,1,0,4,8.2825537,8.4034452,0,0,0,-1002.6163,-9,1,1,2021,7,1,38,0,1,1,0,13.266737,13.266737,0,0,0,0,0,0,0,0,0,0,0,4.6555228,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,346,-161756.17,0,0,0,0,0,1214.4847 +8491,10317,18444,-9,18441,18442,1,1,18,0,0,0,2,2,1,0,2,0,0,0,0,0,-927.17157,-9,1,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5585468,0,37.07,46.74,-9,-9,5,1,1,1,0,0,7,1,1,409,0,0,0,0,0,0,-384.93469 +8492,10318,18445,18446,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.1865959,9.1781321,0,13,-4,165.15826,0,2,2,2021,16,4,41,40,1,4,0,27.586744,27.586744,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,51.32,28.97,59.76,8.333333333333334,1,1,0,0,14,11,5,1,912,374872.06,105460.71,73947.703,48918.535,24691.063,0,6220.6929 +8492,10318,18446,18445,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.0033188,9.0573416,0,3,4,-42.594013,0,-9,-9,2021,23,9,42,37,1,9,0,19.847515,19.847515,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.97,59.76,41.23,51.32,1.666666666666667,1,1,0,0,7,11,5,1,912,374872.06,105460.71,73947.703,48918.535,24691.063,0,6220.6929 +8493,10319,18447,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.0055332,9.2035961,7.2741838,0,0,-993.25861,0,1,2,2021,12,0,50,56,1,0,0,20.908598,20.908598,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8610091,48.71,61.53,-9,-9,3.333333333333333,1,1,0,0,11,13,5,1,991,1035506.1,809404,344646.25,184992.61,0,0,3076.3027 +8494,10320,18448,18449,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.0615377,9.3744555,0,7,-7,96.427048,0,2,2,2021,6,0,37,39,1,0,0,31.013393,31.013393,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,63.89,45.4,8.333333333333334,1,1,0,0,8,9,5,1,1321.5,1150987.8,177724.05,737927.63,66957.172,0,0,4682.3359 +8494,10320,18449,18448,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.8191247,6.6392179,0,7,7,56.069443,0,2,3,2021,7,0,72,56,1,0,0,1.6494299,1.6494299,.05,.05,0,1,0,0,0,0,1,1,0,6.8567019,0,63.89,45.4,61.01,53.18,6.666666666666667,1,1,0,0,8,9,5,1,1321.5,1150987.8,177724.05,737927.63,66957.172,0,0,4682.3359 +8494,10321,18450,-9,18449,18448,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-988.98248,-9,3,1,2021,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0761259,0,42.95,61.24,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,950,79422.609,0,0,0,0,0,-159.38751 +8495,10322,18451,18452,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.8659263,8.0747814,51,-3,-167.76578,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.1678693,7.7227354,48.85,51.81,47.31,37.56,8.333333333333334,1,1,0,0,0,2,3,1,802,681556.75,356006.44,16735.334,0,25128.555,0,2770.3071 +8495,10322,18452,18451,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.4590387,6.0536838,51,3,81.86338,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5198302,6.099165,47.31,37.56,48.85,51.81,3.333333333333333,1,1,0,0,0,2,3,1,802,681556.75,356006.44,16735.334,0,25128.555,0,2770.3071 +8496,10323,18453,-9,18456,18455,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.8421,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8496,10323,18454,-9,18456,18455,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.7558,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8496,10323,18455,18456,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.6370907,8.525568,0,6,0,-32.817371,0,2,2,2021,15,4,40,42,1,4,0,18.486357,18.486357,.05,.05,0,0,0,0,0,0,1,1,0,.51720166,0,43.6,54.11,51.24,58.84,3.333333333333333,4,2,0,0,7,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8496,10323,18456,18455,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.7787418,8.7255316,0,6,0,-36.192921,0,2,2,2021,12,2,50,28,1,2,0,13.008342,13.008342,.05,.05,0,0,0,0,.72778934,0,1,1,0,1.4545875,0,51.24,58.84,43.6,54.11,8.333333333333334,1,1,0,0,7,5,5,1,593.25,1072486.1,779334.75,282307.31,181055.34,0,0,4209.9131 +8497,10324,18457,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.917707,8.2859097,7.2157955,0,0,-924.4071,0,3,3,2021,10,0,24,24,1,0,0,18.677397,18.677397,.05,.05,0,0,0,0,0,7,0,0,0,7.2633119,7.0415349,58.15,52.91,-9,-9,10,1,1,0,0,13,6,5,1,2151,445365.81,-17350.096,133198.25,0,-165.18231,2372.5913,2252.8623 +8498,10325,18458,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-848.95135,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.78,49.39,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,461,152487.39,100083.15,0,0,0,0,1090.0872 +8499,10326,18459,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.6239014,7.4136276,0,0,0,-1139.1078,0,2,3,2021,10,1,40,40,1,1,0,5.4357104,5.4357104,.05,.05,0,0,0,0,0,0,1,1,0,1.0432363,0,53.39,52.35,-9,-9,8.333333333333334,3,4,0,0,9,5,3,0,1082.5,53544.352,-38341.281,0,0,0,0,1626.511 +8499,10326,18460,-9,18459,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-990.43579,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,3,0,1082.5,53544.352,-38341.281,0,0,0,0,1626.511 +8500,10327,18461,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.5277686,7.5720348,0,0,-982.13861,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3008785,53,47,-9,-9,8,1,1,0,0,0,13,3,1,772,473268.06,189361.88,41327.523,0,0,0,1639.8621 +8501,10328,18462,18465,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.7484951,9.0020237,0,15,-2,-59.140106,0,2,2,2021,9,0,35,35,1,0,0,20.19903,20.19903,.05,.05,0,0,0,0,0,0,1,1,0,1.3994484,0,54.96,53.17,48.28,60.18,8.333333333333334,2,3,0,0,10,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8501,10328,18463,-9,18465,18462,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.8324,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8501,10328,18464,-9,18465,18462,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.2148,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8501,10328,18465,18462,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.1648531,7.7457528,0,15,2,-5.7152257,0,2,2,2021,8,0,25,25,1,0,0,14.876877,14.876877,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,54.96,53.17,8.333333333333334,2,3,0,0,6,8,4,1,2361.5,323063.5,84147.461,550574.06,195968.22,3026.145,4669.9097,3542.4238 +8502,10329,18466,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4229088,8.728713,0,0,0,-946.30426,0,1,1,2021,11,2,35,36,1,2,0,17.991257,17.991257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,56.38,-9,-9,6.666666666666667,1,1,0,0,14,12,5,0,609,144942.94,143944.22,202277.67,0,19396.725,0,1291.2566 +8503,10330,18467,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.9803748,8.3253803,0,0,-966.47473,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.0772305,8.0420952,55.12,39.4,-9,-9,10,1,1,0,0,0,10,4,1,311,1806366.3,486154.22,995894.56,0,0,0,2431.0972 +8504,10331,18468,18469,-9,-9,1,0,51,0,2,0,2,2,-9,0,3,8.6973419,8.4838123,0,6,2,31.806561,0,2,2,2021,8,0,38,38,1,0,0,21.88912,21.88912,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,51.65,52.38,8.333333333333334,3,4,0,1,7,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8504,10331,18469,18468,-9,-9,1,1,49,0,2,0,2,2,-9,0,2,8.3828926,8.3890066,0,6,-2,-156.71854,0,3,3,2021,16,6,90,60,1,6,0,6.7570133,6.7570133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,58.47,50.22,5,3,4,0,0,7,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8504,10331,18470,-9,18468,18469,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.9908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8504,10331,18471,-9,18468,18469,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.1118,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,12,4,1,2259,366275.25,388120.06,213964.11,185343.61,13429.584,0,4253.6406 +8505,10332,18472,-9,18474,18473,1,1,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1089.1938,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,1,0,0,9,4,1,435.33334,1320193.9,742477.5,620149.69,188693.33,531.27081,0,3129.8127 +8505,10332,18473,18474,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,8.6109447,8.6138992,0,21,2,98.910805,0,2,1,2021,15,3,38,73,1,3,0,17.833403,17.833403,.05,.05,.05,0,0,0,0,0,1,1,0,4.255794,0,38.37,51.52,45.91,59.89,3.333333333333333,1,1,0,0,14,9,4,1,435.33334,1320193.9,742477.5,620149.69,188693.33,531.27081,0,3129.8127 +8505,10332,18474,18473,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,7.994194,7.8744154,0,21,-2,-26.301746,0,2,1,2021,12,1,24,27,1,1,0,14.762998,14.762998,.05,.05,0,0,0,0,0,0,1,1,0,5.9618297,0,45.91,59.89,38.37,51.52,5,1,1,0,0,13,9,4,1,435.33334,1320193.9,742477.5,620149.69,188693.33,531.27081,0,3129.8127 +8506,10333,18475,-9,18476,18477,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-948.63019,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,3,0,326.66666,174234.08,-16716.174,166949.73,0,-1124.7723,7068.6899,2510.73 +8506,10333,18476,18477,-9,-9,1,0,37,0,1,0,3,3,-9,1,3,0,6.014318,5.7570691,1,-7,18.10763,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,6.5518074,0,35.67,48.56,48.8,49.1,5,1,1,0,1,4,12,3,0,326.66666,174234.08,-16716.174,166949.73,0,-1124.7723,7068.6899,2510.73 +8506,10333,18477,18476,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.2117691,8.2435131,0,1,7,8.5174198,-9,-9,-9,2021,10,0,40,0,1,0,0,9.3838253,9.3838253,0,0,0,0,0,0,0,0,1,0,1,0,0,48.8,49.1,35.67,48.56,8.333333333333334,1,1,0,0,10,12,3,0,326.66666,174234.08,-16716.174,166949.73,0,-1124.7723,7068.6899,2510.73 +8507,10334,18478,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.680501,8.9640322,0,0,0,-1080.6526,0,2,2,2021,6,0,98,98,1,0,0,8.389863,8.389863,.05,.05,0,0,0,0,0,28,1,1,0,7.1501789,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,11,5,1,1655,1527369.4,1171553.8,116853.23,0,0,0,3100.6692 +8507,10335,18479,-9,18478,-9,1,1,28,0,0,0,1,1,-9,0,4,7.478157,7.3941174,0,0,0,-940.56348,0,1,-9,2021,12,0,30,35,1,0,1,6.7615337,6.7615337,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,384,42691.273,0,0,0,0,0,1372.0048 +8507,10336,18480,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1153.6342,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.39,54.22,-9,-9,10,1,1,0,0,0,11,1,1,296,-233998.33,0,0,0,240.63039,60.919838,1202.8979 +8507,10337,18481,-9,-9,-9,1,1,25,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1000.0663,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,49.68,-9,-9,10,1,1,0,0,0,11,1,1,970,17710.453,0,0,0,0,0,1921.1323 +8508,10338,18482,18483,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.7555375,7.8816147,0,4,-7,139.24423,0,-9,-9,2021,11,1,30,24,1,1,0,7.9226594,7.9226594,0,0,0,0,0,0,0,0,0,0,0,4.7004161,0,48.56,48.19,55.79,52.62,8.333333333333334,1,1,0,0,12,11,4,0,493,350393.06,185204.47,143658.69,0,12642.68,-319.16919,2038.2668 +8508,10338,18483,18482,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.8606586,8.1297436,0,4,7,-47.561218,0,3,2,2021,6,0,37,38,1,0,0,8.3134871,8.3134871,0,0,0,0,0,0,0,0,0,0,0,6.2190723,0,55.79,52.62,48.56,48.19,8.333333333333334,1,1,0,0,9,11,4,0,493,350393.06,185204.47,143658.69,0,12642.68,-319.16919,2038.2668 +8509,10339,18484,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,5.8831387,5.9999261,0,0,-1020.8988,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,8.0533113,0,0,1,1,0,0,5.8700876,68.94,17.02,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,211,362642.09,150100.36,248056.23,0,0,0,1333.5596 +8510,10340,18485,18487,-9,-9,1,1,36,1,1,0,1,1,-9,0,3,8.0949373,7.9777479,0,7,10,71.220573,0,2,2,2021,9,0,40,35,1,0,0,7.0596304,7.0596304,.05,.05,0,0,0,0,0,0,1,1,0,.95920342,0,58.32,50.22,48.18,61.8,10,1,1,0,0,10,4,4,1,947.66669,-28213.828,59283.801,57717.016,102577.69,0,0,2440.821 +8510,10340,18486,-9,18487,18485,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-947.1012,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,947.66669,-28213.828,59283.801,57717.016,102577.69,0,0,2440.821 +8510,10340,18487,18485,-9,-9,1,0,26,1,1,0,1,1,-9,0,5,7.8125081,8.0976582,0,7,-10,-21.62097,0,-9,-9,2021,11,0,22,38,1,0,0,12.453859,12.453859,.05,.05,0,0,0,0,0,0,1,1,0,1.365398,0,48.18,61.8,58.32,50.22,5,1,1,0,0,10,4,4,1,947.66669,-28213.828,59283.801,57717.016,102577.69,0,0,2440.821 +8511,10341,18488,18489,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,7.7370286,7.7593436,0,9,-4,82.532578,0,-9,-9,2021,24,12,25,26,1,12,0,7.1102862,7.1102862,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.02,37.37,42.61,49.31,5,1,1,0,0,9,4,3,1,3442,225214.67,-20094.445,173592.7,0,0,0,1663.5925 +8511,10341,18489,18488,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,7.3484473,7.4608045,0,9,4,-20.749531,0,3,2,2021,17,4,42,42,1,4,0,6.527741,6.527741,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.61,49.31,37.02,37.37,6.666666666666667,1,1,0,0,12,4,3,1,3442,225214.67,-20094.445,173592.7,0,0,0,1663.5925 +8511,10342,18490,-9,18488,18489,1,1,25,0,0,0,2,2,-9,0,3,8.2988873,8.3632765,0,0,0,-1101.6204,0,2,2,2021,14,3,47,40,1,3,1,9.1736174,9.1736174,.05,.05,0,0,0,0,0,0,0,0,0,.43637463,0,29.57,58.13,-9,-9,5,1,1,0,0,7,4,4,1,1944,-78891.039,-91084.438,0,0,5504.3223,0,2335.6006 +8512,10343,18491,18492,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,7.6381149,7.7842827,0,7,7,-44.815159,0,3,3,2021,20,6,50,40,1,6,0,6.7561202,6.7561202,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,52,46.54,52.96,6.666666666666667,1,1,0,0,5,11,4,0,244.5,-30248.693,11673.053,0,0,0,0,2043.7218 +8512,10343,18492,18491,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.8081198,7.7816596,0,7,-7,-114.44884,0,3,3,2021,12,0,40,50,1,0,0,6.6758466,6.6758466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.54,52.96,47,52,6.666666666666667,1,1,0,0,10,11,4,0,244.5,-30248.693,11673.053,0,0,0,0,2043.7218 +8513,10344,18493,18494,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.9729939,8.3252115,7.9219394,39,-5,59.555683,-9,3,3,2021,6,0,37,0,1,0,0,8.2592974,8.2592974,0,0,0,0,0,0,0,0,1,1,0,.81302279,7.5606804,58.5,47.34,57.76,54.51,10,3,4,0,0,13,6,5,1,268,539883.88,175062.5,292990.69,0,0,0,5145.999 +8513,10344,18494,18493,-9,-9,1,1,61,0,0,0,3,3,-9,0,4,9.0481186,8.5245657,0,38,5,-91.029045,-9,-9,-9,2021,6,0,40,0,1,0,0,23.884102,23.884102,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.76,54.51,58.5,47.34,10,3,4,0,0,13,6,5,1,268,539883.88,175062.5,292990.69,0,0,0,5145.999 +8513,10345,18495,-9,18493,18494,1,0,28,0,0,0,1,1,0,0,3,0,0,0,0,0,-920.10571,-9,2,3,2021,23,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.15,51.76,-9,-9,6.666666666666667,3,4,0,0,3,6,1,1,381,-81787.164,0,0,0,0,0,763.94067 +8514,10346,18496,18497,-9,-9,1,1,91,0,0,0,2,2,-9,0,2,0,7.6424642,7.1437149,69,3,-80.625015,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.8064675,7.6794634,54.61,51.04,29.77,41.95,5,1,1,0,0,0,6,2,1,1535,397016.66,47436.359,47705.953,0,0,0,2442.9932 +8514,10346,18497,18496,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,69,-3,-89.753342,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,18.820791,0,0,1,1,0,.84020537,0,29.77,41.95,54.61,51.04,6.666666666666667,1,1,0,0,0,6,2,1,1535,397016.66,47436.359,47705.953,0,0,0,2442.9932 +8515,10347,18498,18499,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,4.6946812,4.8403134,0,10,-2,19.430845,0,-9,-9,2021,12,0,13,11,1,0,0,.86700034,.86700034,0,0,0,0,0,0,0,0,0,0,0,0,0,34.96,54.38,50,49,5,1,1,0,0,10,7,2,1,601,35512.52,0,0,0,0,0,3716.1357 +8515,10347,18499,18498,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,7.4167628,7.1676559,0,10,2,-125.38433,0,-9,-9,2021,11,0,60,60,1,1,0,2.582067,2.582067,0,0,0,0,0,0,0,0,0,0,0,.91822767,0,50,49,34.96,54.38,7,1,1,0,0,1,7,2,1,601,35512.52,0,0,0,0,0,3716.1357 +8516,10348,18500,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.3786006,7.1441436,0,0,-992.91687,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0027652,6.8401141,62.11,48.33,-9,-9,10,1,1,0,0,0,13,2,1,429,417092.84,47356.066,203088.66,0,0,0,951.41309 +8517,10349,18501,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1017.5793,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,-9,-9,7,1,1,0,0,8,11,1,1,907,-59713.039,0,0,0,0,0,0 +8518,10350,18502,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.7465,8.9987116,0,0,0,-984.58215,0,1,2,2021,15,3,59,45,1,3,0,16.382612,16.382612,.05,.05,0,0,0,0,0,0,0,0,0,3.4664977,0,52.83,56.93,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,177,46855.785,-93200.445,0,0,0,0,2540.8694 +8519,10351,18503,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.8130665,7.6973734,0,0,0,-937.52545,-9,3,3,2021,10,0,36,0,1,1,0,6.1929507,6.1929507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,-9,-9,7,3,4,0,0,11,8,3,1,92,84585.047,73749.883,0,0,0,0,1408.962 +8520,10352,18504,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1062.1002,-9,2,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,1,0,0,12,1,1,1076,83341.867,0,0,0,0,0,-311.17291 +8521,10353,18505,18506,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.1477795,8.1403389,0,2,4,-42.914688,0,2,2,2021,6,0,44,44,1,0,0,10.572884,10.572884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,57.06,57.76,10,1,1,0,0,8,10,4,1,716.5,38947.746,70646.578,0,0,0,0,3057.8521 +8521,10353,18506,18505,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,8.1506596,7.8927546,0,2,-4,-61.142467,0,-9,-9,2021,9,0,22,38,1,0,0,15.89445,15.89445,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.34,56.62,10,1,1,0,0,8,10,4,1,716.5,38947.746,70646.578,0,0,0,0,3057.8521 +8522,10354,18507,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.787591,7.7955389,0,0,0,-1153.6428,0,3,2,2021,27,12,35,35,1,12,0,8.3534727,8.3534727,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.26,52.16,-9,-9,1.666666666666667,1,1,0,1,11,11,3,1,380,304776.16,186209.17,0,0,0,0,709.07709 +8523,10355,18508,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,9.2431021,9.2625723,0,0,0,-833.16296,0,2,2,2021,8,0,37,75,1,0,0,23.982988,23.982988,.05,.05,0,0,0,0,0,0,1,1,0,4.6990838,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,212,1011711.9,579564.5,257974.22,0,0,0,3992.8848 +8524,10356,18509,-9,18513,18510,1,1,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-1028.8102,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18510,18513,-9,-9,1,1,46,1,3,0,2,2,-9,0,2,9.1390076,9.32374,0,2,17,175.94987,0,-9,-9,2021,17,6,52,50,1,6,0,25.83672,25.83672,0,0,0,0,0,0,0,0,1,1,0,2.9896088,0,43.95,53.15,54.77,55.87,6.666666666666667,1,1,0,0,2,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18511,-9,18513,18510,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.90643,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18512,-9,18513,18510,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1013.2211,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8524,10356,18513,18510,-9,-9,1,0,29,1,3,0,2,2,-9,1,4,7.9486117,7.949616,0,2,-17,-149.54974,0,2,2,2021,9,0,25,15,1,0,0,10.00321,10.00321,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,43.95,53.15,8.333333333333334,1,1,0,0,1,10,5,0,680.20001,1023693.4,450010.88,561723,81484.273,6283.3789,3640.4282,5477.3828 +8525,10357,18514,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.0518508,7.0025826,0,0,0,-988.31909,-9,-9,-9,2021,10,0,27,0,1,0,0,6.4915004,6.4915004,0,0,0,0,0,0,.22045384,0,0,0,0,0,0,48.12,42.71,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,618,177775.41,0,0,0,-1618.0199,0,427.7861 +8526,10358,18515,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.8562713,7.6872082,0,0,0,-1027.7241,0,3,3,2021,6,0,36,36,1,0,0,8.8049192,8.8049192,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,11,13,3,1,322,199696.48,338817.66,0,0,0,0,876.79492 +8527,10359,18516,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.5998898,9.7555714,4.6581545,31,2,41.426899,0,3,3,2021,15,4,35,35,1,4,0,51.04171,51.04171,0,0,0,0,0,0,0,0,1,1,0,5.4600868,5.0775352,49.04,55.86,59.04,54.12,8.333333333333334,1,1,0,0,10,9,5,1,1274,2314983,1449210.5,436769.38,0,0,0,9250.6826 +8527,10360,18517,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,7.6071916,7.6865549,31,-2,-23.767904,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4315813,7.5886946,59.04,54.12,49.04,55.86,10,1,1,0,0,8,9,5,1,1328,681393.06,281798.91,330841.41,0,0,0,766.94397 +8528,10361,18518,18519,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2695093,8.3558836,0,3,-4,-68.078209,0,2,2,2021,13,2,37,37,1,2,0,11.310102,11.310102,0,0,0,0,0,0,0,0,0,0,0,2.3697855,0,46.85,60.98,25.37,63.98,3.333333333333333,1,1,0,0,6,10,5,1,662.5,194157.14,306405,0,0,0,0,3333.179 +8528,10361,18519,18518,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.169035,8.2610006,0,3,4,14.877286,0,-9,-9,2021,20,7,38,39,1,7,0,12.926438,12.926438,0,0,0,0,0,0,0,0,0,0,0,3.4415655,0,25.37,63.98,46.85,60.98,1.666666666666667,1,1,0,0,7,10,5,1,662.5,194157.14,306405,0,0,0,0,3333.179 +8529,10362,18520,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,6.9495544,6.9498329,0,0,-882.87494,0,2,3,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.632072,6.9366698,58.2,54.53,-9,-9,6.666666666666667,1,1,0,0,6,7,2,1,629,367675.88,32780.676,276671.59,254115.56,0,0,1948.0232 +8530,10363,18521,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.4568901,8.6912756,0,0,0,-1026.6366,0,3,3,2021,18,6,42,40,1,6,0,15.498775,15.498775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,6.666666666666667,1,1,0,0,9,13,4,0,1074,-44203.383,5719.8398,72503.023,69051.141,0,0,2615.2202 +8530,10363,18522,-9,18521,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.3445,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,0,1074,-44203.383,5719.8398,72503.023,69051.141,0,0,2615.2202 +8531,10364,18523,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.9237895,7.9661989,0,0,0,-992.64923,0,2,1,2021,15,3,35,5,1,3,0,8.322649,8.322649,0,0,.05,0,0,0,0,0,0,0,0,6.2469716,0,50.04,49.76,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,929,983735.19,-4999.9878,366689.88,0,0,1451.4218,1683.3594 +8532,10365,18524,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.7580132,7.9488044,0,0,0,-1128.5439,0,3,3,2021,12,2,40,44,1,2,0,7.8360763,7.8360763,0,0,0,0,0,0,0,0,1,1,0,0,0,39.85,55.83,-9,-9,3.333333333333333,1,1,0,0,10,7,4,0,895,-108860.76,0,0,0,0,0,1514.9036 +8533,10366,18525,18526,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,5.6494279,5.398035,61,3,-83.903351,0,-9,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.548202,5.3735704,66.77,36.75,60.12,54.8,10,1,1,0,0,0,10,2,1,1100.5,478703.56,150129.3,255323.13,0,0,0,845.05481 +8533,10366,18526,18525,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,61,-3,131.60457,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,60.12,54.8,66.77,36.75,8.333333333333334,1,1,0,0,0,10,2,1,1100.5,478703.56,150129.3,255323.13,0,0,0,845.05481 +8533,10367,18527,-9,18526,18525,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-997.82587,0,3,3,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1966431,0,44.07,32.5,-9,-9,5,1,1,0,0,0,10,1,1,486,107704.84,85756.938,0,0,0,1782.6967,641.07648 +8534,10368,18528,18529,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.607337,7.7055469,54,0,-62.818764,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7785354,57.03,45.36,44.93,31.16,8.333333333333334,1,1,0,0,11,11,3,1,570.5,876568.44,257304.17,111004.78,0,0,0,2737.4072 +8534,10368,18529,18528,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,6.0221753,6.347147,54,0,45.710278,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1783811,6.4233322,44.93,31.16,57.03,45.36,8.333333333333334,1,1,0,0,0,11,3,1,570.5,876568.44,257304.17,111004.78,0,0,0,2737.4072 +8535,10369,18530,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,6.862154,7.2081294,0,0,-945.18427,0,-9,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7200146,6.9234624,54.19,42.36,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,660,227040.88,156889.64,0,0,0,990.16559,-188.30202 +8536,10370,18531,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.8829155,8.834465,0,0,0,-930.90045,0,3,2,2021,12,0,40,45,1,0,0,19.840002,19.840002,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,403,111.72207,15562.614,0,0,0,-400.6535,2632.4546 +8536,10371,18532,-9,18531,-9,1,1,27,0,0,0,1,1,-9,0,5,7.6592121,7.488142,0,0,0,-996.40302,0,2,-9,2021,2,0,22,16,1,0,1,9.6063719,9.6063719,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.53,61.33,-9,-9,8.333333333333334,3,4,0,0,6,8,3,1,3217,-97566.922,30526.182,0,0,0,0,427.08456 +8536,10372,18533,-9,18531,-9,1,1,24,0,0,0,2,2,-9,0,4,8.0734978,7.9154077,0,0,0,-1222.4464,0,2,-9,2021,3,0,40,40,1,0,1,8.9175434,8.9175434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.58,45.78,-9,-9,10,3,4,0,0,3,8,4,1,1188,50425.004,128511.85,0,0,0,0,1614.6659 +8537,10373,18534,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,6.2620087,6.3721871,0,0,-968.01581,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.5884423,6.0897932,54,44,-9,-9,8,1,1,0,0,0,6,2,1,593,266335.31,9289.5137,0,0,0,0,1383.7717 +8538,10374,18535,18536,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9016523,7.9584513,0,22,0,-136.54512,-9,-9,-9,2021,8,0,20,0,1,0,0,13.318385,13.318385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,6.666666666666667,1,1,0,0,7,4,5,1,627,601661.13,399303.69,144570.16,20322.676,0,0,5426.1328 +8538,10374,18536,18535,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,8.8746548,9.0025978,0,21,0,128.38074,-9,-9,-9,2021,6,0,38,0,1,0,0,22.421192,22.421192,.05,.05,0,0,0,0,0,0,0,0,0,7.2947145,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,5,4,5,1,627,601661.13,399303.69,144570.16,20322.676,0,0,5426.1328 +8539,10375,18537,-9,-9,-9,1,1,18,0,0,0,2,2,-9,0,3,8.595109,8.5085859,0,0,0,-1100.6479,0,1,-9,2021,11,0,80,0,1,0,1,6.9759235,6.9759235,0,0,0,0,0,0,0,0,-9,-9,0,0,0,41.1,53.94,-9,-9,6.666666666666667,1,1,0,0,1,6,4,0,3384,-48464.484,0,0,0,0,0,2497.0798 +8540,10376,18538,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,3.628695,3.9506025,0,0,-1039.6697,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.8184326,0,29.69898,0,1,1,0,4.0652785,3.9037263,54,46,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1016,233636.64,4503.3052,336880.28,0,0,0,1319.2731 +8541,10377,18539,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.2384715,7.667212,0,0,-1094.7411,0,3,3,2021,15,5,0,27,4,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.2300396,37.45,51.94,-9,-9,5,1,1,0,0,12,12,3,0,427,480119,372924.91,250087.81,0,0,0,1165.688 +8542,10378,18540,18541,-9,-9,1,0,54,0,0,0,2,2,-9,1,1,0,0,0,7,-3,-50.989536,0,2,3,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,29.78,25.84,30.91,22.6,1.666666666666667,1,1,0,1,1,12,2,0,722,0,0,0,0,0,0,2015.1438 +8542,10378,18541,18540,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,3.8411009,3.8459256,7,3,11.40661,0,2,3,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7709844,3.8330877,30.91,22.6,29.78,25.84,0,1,1,0,1,4,12,2,0,722,0,0,0,0,0,0,2015.1438 +8543,10379,18542,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.4655948,7.4873357,5.2298474,0,0,-987.46948,0,2,2,2021,9,0,38,43,1,0,0,7.1328931,7.1328931,0,0,0,0,0,0,0,0,1,1,0,0,4.8634043,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,9,11,3,1,190,-70475.164,0,179995.94,0,0,0,1394.9469 +8544,10380,18543,18544,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.3571949,8.8034105,0,6,-4,-84.687317,0,-9,-9,2021,10,0,37,37,1,0,0,17.551828,17.551828,0,0,0,0,0,0,0,0,1,1,0,5.1504617,0,44.72,57.73,62.39,56.71,8.333333333333334,1,1,0,0,6,9,5,1,284,94314.523,142445.19,0,0,0,0,4846.0586 +8544,10380,18544,18543,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.9777708,8.9558363,0,6,4,-223.19859,0,2,2,2021,6,0,37,37,1,0,0,19.300743,19.300743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44.72,57.73,10,1,1,0,0,8,9,5,1,284,94314.523,142445.19,0,0,0,0,4846.0586 +8545,10381,18545,18546,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.4288392,7.9841323,32,-3,5.1274023,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.90554529,7.5337353,40.15,55.99,54.39,35.71,8.333333333333334,1,1,0,0,5,9,3,1,1985.5,1000072.5,610618.75,311609.75,0,4882.4521,1137.4633,2260.259 +8545,10381,18546,18545,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.6255994,6.7696676,13,3,25.811766,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7580314,6.4307952,54.39,35.71,40.15,55.99,6.666666666666667,1,1,0,0,10,9,3,1,1985.5,1000072.5,610618.75,311609.75,0,4882.4521,1137.4633,2260.259 +8546,10382,18547,18549,-9,-9,1,0,47,0,2,0,3,3,-9,1,4,0,0,0,11,3,43.812477,0,2,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.22,40.47,39.81,50.5,8.333333333333334,1,1,0,1,5,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8546,10382,18548,-9,18547,18549,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.0459,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8546,10382,18549,18547,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.5377855,8.4467154,0,11,-3,155.10947,0,2,2,2021,14,2,44,38,1,2,0,13.810306,13.810306,.05,.05,0,0,0,0,0,7,1,1,0,0,0,39.81,50.5,52.22,40.47,6.666666666666667,1,1,0,0,12,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8546,10382,18550,-9,18547,18549,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.7534,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,1,751.25,242807.39,75213.055,156945.97,57993.348,0,10079.693,3102.2012 +8547,10383,18551,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.0463171,8.4545298,5.7871799,0,0,-1011.7021,0,2,2,2021,9,2,48,58,1,2,0,9.3517952,9.3517952,.05,.05,0,0,0,0,0,0,1,1,0,0,5.9894853,57.18,42.58,-9,-9,8.333333333333334,1,1,0,0,11,4,4,1,577,75776.813,134758.17,0,0,0,0,2983.0684 +8548,10384,18552,-9,18553,18555,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.4078,-9,3,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8548,10384,18553,18555,-9,-9,1,0,45,0,2,0,3,3,-9,0,3,8.2347641,8.1191349,0,21,-22,-22.685535,0,3,3,2021,8,0,40,43,1,0,0,10.94629,10.94629,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.98,42.13,8.333333333333334,2,3,0,0,7,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8548,10384,18554,-9,18553,18555,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.1852,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8548,10384,18555,18553,-9,-9,1,1,67,0,2,0,2,2,-9,0,2,0,7.2565718,7.3510714,21,22,138.06761,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2266903,55.98,42.13,57.33,53.46,8.333333333333334,1,1,0,0,11,7,3,0,648.5,463229.56,96449.727,437343.63,50881.152,0,0,1937.6251 +8549,10385,18556,18557,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,8,-1,-46.43898,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3523369,0,57.16,56.15,52.77,55.33,1.666666666666667,1,1,0,0,6,7,2,1,1386.5,143447.66,132303.67,0,0,0,0,2094.9856 +8549,10385,18557,18556,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,5.9835925,5.9386678,8,1,43.705715,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1992555,5.7727642,52.77,55.33,57.16,56.15,8.333333333333334,1,1,0,0,4,7,2,1,1386.5,143447.66,132303.67,0,0,0,0,2094.9856 +8550,10386,18558,18559,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,0,7.9950571,8.095582,3,5,-72.370781,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4540663,55.6,7.62,46.4,57.35,3.333333333333333,1,1,0,0,0,1,3,1,1188,205388.56,7499.9551,231055.44,5140.2671,4289.5303,0,2771.9309 +8550,10386,18559,18558,-9,-9,1,0,52,0,0,0,2,2,-9,1,4,6.3567104,6.4569025,0,3,-5,157.40485,0,-9,-9,2021,8,0,8,0,1,0,0,9.7354393,9.7354393,0,0,0,0,0,0,0,7,1,1,0,0,0,46.4,57.35,55.6,7.62,8.333333333333334,1,1,0,0,2,1,3,1,1188,205388.56,7499.9551,231055.44,5140.2671,4289.5303,0,2771.9309 +8550,10387,18560,-9,18559,18558,1,0,29,0,0,0,2,2,-9,0,4,7.3587208,7.6178236,0,0,0,-1082.4843,-9,2,2,2021,11,0,37,0,1,2,1,5.0091853,5.0091853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,1,3,1,73,77306.547,86887.148,0,0,0,590.22137,629.48657 +8550,10388,18561,18562,18559,18558,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,3,0,-94.89415,0,2,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,15.95,55.57,49.3,59.89,3.333333333333333,1,1,1,0,1,1,3,1,1283,-8617.3477,-6818.998,0,0,1683.438,0,881.0755 +8550,10388,18562,18561,-9,-9,1,0,24,0,0,0,2,2,1,0,5,7.8246469,7.6069083,0,3,0,40.692486,-9,-9,-9,2021,11,0,53,0,1,0,0,5.4570904,5.4570904,0,0,0,0,0,0,0,0,1,1,0,0,0,49.3,59.89,15.95,55.57,6.666666666666667,3,4,0,0,5,1,3,1,1283,-8617.3477,-6818.998,0,0,1683.438,0,881.0755 +8551,10389,18563,18564,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2891541,8.1595211,0,9,-2,-61.792042,0,2,2,2021,9,0,39,39,1,0,0,9.0430765,9.0430765,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,55.6,40.14,52.54,5,1,1,0,0,10,11,3,1,493,-94449.281,225397.47,0,0,71.735962,0,1961.3773 +8551,10389,18564,18563,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.153141,6.9371233,0,9,2,-31.93189,0,3,2,2021,28,11,16,16,1,11,0,8.7795782,8.7795782,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,52.54,52.48,55.6,5,1,1,0,1,10,11,3,1,493,-94449.281,225397.47,0,0,71.735962,0,1961.3773 +8552,10390,18565,18568,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,7.9013548,8.3045111,0,5,-4,0,0,-9,-9,2021,11,0,37,37,1,0,0,10.505264,10.505264,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,57.16,56.15,8.333333333333334,1,1,0,0,7,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8552,10390,18566,-9,18568,18565,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.0206,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8552,10390,18567,-9,18568,18565,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.5708,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8552,10390,18568,18565,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,7.9365301,8.1797781,0,5,4,0,0,2,2,2021,8,0,20,20,1,0,0,16.282587,16.282587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.35,59.64,8.333333333333334,1,1,0,0,7,12,4,1,465.75,-81328.992,-31562.148,76500.398,57793.773,11428.56,0,3047.8538 +8553,10391,18569,18570,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.9274588,8.0589056,44,4,-174.20442,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4498968,7.7018285,54.2,57.49,55.19,54.26,8.333333333333334,1,1,0,0,4,6,3,1,514.5,1459749.6,843656.13,530891.44,0,373.00629,0,3036.6313 +8553,10391,18570,18569,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,6.5332074,6.6799107,8,-4,-39.511055,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1752105,6.8287468,55.19,54.26,54.2,57.49,8.333333333333334,1,1,0,0,7,6,3,1,514.5,1459749.6,843656.13,530891.44,0,373.00629,0,3036.6313 +8554,10392,18571,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.9171615,7.7591896,0,0,-1086.0698,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7563958,8.040185,46.81,43.46,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,756,786281.19,138633.58,623097.69,0,0,0,2900.2546 +8555,10393,18572,-9,18573,-9,1,0,16,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1088.7476,-9,2,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.52840483,0,33.77,65.26000000000001,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,435,267881.53,137803.5,303786.06,56038.164,0,2193.8477,2660.9312 +8555,10393,18573,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7800364,7.979538,0,0,0,-898.59692,0,-9,-9,2021,8,1,30,30,1,1,0,8.308135,8.308135,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,-9,-9,8.333333333333334,1,1,0,0,9,9,3,0,435,267881.53,137803.5,303786.06,56038.164,0,2193.8477,2660.9312 +8556,10394,18574,18576,-9,-9,1,1,52,0,1,0,2,2,-9,0,2,8.8316221,8.6977959,0,9,3,-38.453167,0,-9,2,2021,8,0,44,42,1,0,0,18.238707,18.238707,.05,.05,.05,0,0,0,0,2,1,1,0,4.199029,0,55.21,43.87,44.19,56.73,6.666666666666667,1,1,0,0,10,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10394,18575,-9,18576,18574,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.43707,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10394,18576,18574,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,9.5859976,9.8148422,0,9,-3,-34.99958,0,2,2,2021,11,1,35,31,1,1,0,61.682644,61.682644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,56.73,55.21,43.87,6.666666666666667,1,1,0,0,10,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10394,18577,-9,18576,18574,1,1,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-866.51434,-9,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.08,59.22,-9,-9,3.333333333333333,1,1,0,0,1,4,5,1,624,690275.63,556060.63,236638.67,85171,3655.2109,0,17589.506 +8556,10395,18578,-9,18576,18574,1,0,19,0,1,0,2,2,1,0,3,6.0286708,5.8697124,0,0,0,-1002.4907,-9,2,2,2021,20,8,6,0,1,8,1,5.5997753,5.5997753,0,0,0,0,0,0,0,2,1,1,0,.26056343,0,30.08,56.63,-9,-9,3.333333333333333,1,1,0,0,3,4,2,1,825,-92652.148,0,0,0,0,0,431.49863 +8557,10396,18579,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.6263962,7.785316,0,0,-988.82642,0,1,1,2021,25,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.5882845,7.6904426,32.78,52.15,-9,-9,6.666666666666667,1,1,0,0,0,11,4,1,456,954265.31,580989.63,353729.31,0,0,0,2329.5667 +8558,10397,18580,-9,-9,-9,1,0,38,0,0,0,2,2,-9,1,3,0,0,0,0,0,-942.64703,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.26,38.44,-9,-9,5,1,1,0,0,3,10,2,0,402,-2367.3259,0,0,0,0,0,1451.2075 +8559,10398,18581,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,5.0411439,5.0783653,0,0,0,-921.8089,0,2,2,2021,8,0,20,20,1,0,0,.88212913,.88212913,0,0,0,0,0,0,0,0,0,0,0,7.4099073,0,51.47,53.17,-9,-9,8.333333333333334,1,1,0,0,12,5,2,0,891,-175933.39,0,0,0,0,0,1258.5938 +8560,10399,18582,-9,-9,-9,1,0,75,0,2,0,2,2,-9,0,5,0,6.8248725,6.5584679,0,0,-963.21075,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3510342,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,3072,-60125.785,71220.859,0,0,0,-1277.0048,658.85736 +8560,10400,18583,-9,18585,18584,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1037.2911,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8560,10400,18584,18585,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,8.3863544,8.2197895,0,15,2,2.1142914,0,2,2,2021,10,2,35,80,1,2,0,15.69272,15.69272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.06,57.76,8.333333333333334,1,1,0,1,13,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8560,10400,18585,18584,18582,-9,1,0,45,0,2,0,2,2,-9,0,5,8.0557909,8.2368736,0,19,-2,138.63396,0,2,2,2021,12,0,45,50,1,0,0,9.6912355,9.6912355,0,0,0,0,0,0,0,0,1,1,0,2.5624833,0,57.06,57.76,49.04,55.86,8.333333333333334,1,1,0,0,11,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8560,10400,18586,-9,18585,18584,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1043.1556,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,4,1,578.5,323631.31,207986.7,257097.56,66627.008,0,0,3430.9866 +8561,10401,18587,18588,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.5092535,5.7492123,30,5,66.932785,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.8216596,5.7494369,61.04,39.41,60.12,54.8,8.333333333333334,1,1,0,0,6,4,5,1,848.5,1829981.4,1804493.5,163501.89,34067.953,362.59894,-364.42255,5004.9487 +8561,10401,18588,18587,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.2063704,9.225153,0,13,-5,-77.261391,0,3,3,2021,6,0,36,39,1,0,0,32.792656,32.792656,.05,.05,0,0,0,0,0,0,1,1,0,2.2537,0,60.12,54.8,61.04,39.41,8.333333333333334,1,1,0,0,15,4,5,1,848.5,1829981.4,1804493.5,163501.89,34067.953,362.59894,-364.42255,5004.9487 +8562,10402,18589,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4773741,8.5294514,0,0,0,-910.16492,0,2,2,2021,9,0,43,44,1,0,0,13.076098,13.076098,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,37.52,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,865,-14702.136,-19684.016,97784.063,12956.68,3311.6553,0,2147.542 +8563,10403,18590,18591,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.4687705,6.313056,34,-3,50.443993,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0284343,6.0934,43.42,62.33,58.15,52.91,8.333333333333334,1,1,0,0,6,4,2,1,1469,469823.47,325143.5,173583.31,0,0,0,2433.6199 +8563,10403,18591,18590,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.2326961,6.125659,8,3,-36.371315,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4742026,6.2744207,58.15,52.91,43.42,62.33,8.333333333333334,1,1,0,0,6,4,2,1,1469,469823.47,325143.5,173583.31,0,0,0,2433.6199 +8564,10404,18592,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.529624,8.4501562,0,0,0,-1038.9886,0,-9,-9,2021,12,1,40,40,1,1,0,12.950734,12.950734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.7,53.68,-9,-9,6.666666666666667,1,1,0,0,8,13,4,1,1140,-2061.0999,16692.76,0,0,3282.5862,0,1285.1047 +8565,10405,18593,18595,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.898181,9.0670395,0,9,-7,47.343174,0,2,3,2021,6,0,28,28,1,0,0,33.914425,33.914425,0,0,0,0,0,0,0,0,1,1,0,3.2004602,0,57.06,57.76,43.76,58.35,8.333333333333334,1,1,0,0,10,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8565,10405,18594,-9,18593,18595,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.8466,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8565,10405,18595,18593,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.0566864,9.298995,0,9,7,99.519966,0,2,1,2021,9,1,20,19,1,1,0,55.166107,55.166107,0,0,.05,0,0,0,0,0,1,1,0,5.8995347,0,43.76,58.35,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8565,10405,18596,-9,18593,18595,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.77289,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,763.75,2458867.5,1444960.3,440396.75,107308.59,0,0,6388.5981 +8566,10406,18597,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,5.8348756,5.9662437,0,0,-1074.1591,-9,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7547979,49.43,29.2,-9,-9,6.666666666666667,3,4,0,1,0,8,2,0,566,180416.3,156357.11,0,0,0,0,1021.1558 +8567,10407,18598,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,5,0,8.3589792,8.5810795,0,0,-964.20001,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9811554,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1264,623611.25,286317.72,297988.34,0,0,0,2858.8213 +8568,10408,18599,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1058.6869,1,2,2,2021,23,8,0,33,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.02,61.9,-9,-9,1.666666666666667,4,2,0,1,6,12,1,0,223,105381.53,0,0,0,0,0,1267.8788 +8569,10409,18600,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.854733,6.931335,0,0,-991.9577,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3820539,38.05,53.92,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1322,405748.53,70696.914,114117.04,0,0,0,1570.7638 +8570,10410,18601,-9,18605,18602,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1061.1473,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18602,18605,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.9962234,8.7589664,0,9,-2,-98.377487,0,3,3,2021,8,0,50,100,1,0,0,14.858703,14.858703,0,0,0,0,0,0,0,0,1,1,0,3.4302435,0,51.83,57.2,49.52,56.95,8.333333333333334,1,1,0,0,10,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18603,-9,18605,18602,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.9267,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18604,-9,18605,18602,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1116.2007,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8570,10410,18605,18602,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,8.3189907,8.1419125,0,9,2,-123.05902,0,1,2,2021,10,1,30,0,1,1,0,16.144644,16.144644,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,51.83,57.2,8.333333333333334,1,1,0,0,5,9,4,1,1020,514842.84,17346.111,371677.31,132982.09,10397.286,0,4873.147 +8571,10411,18606,-9,18607,18609,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.87604,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8571,10411,18607,18609,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.3637938,6.1771564,0,29,0,-66.89167,0,-9,3,2021,7,0,9,9,1,0,0,7.1334763,7.1334763,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8571,10411,18608,-9,18607,18609,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.8619,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8571,10411,18609,18607,-9,-9,1,1,56,0,2,0,2,2,-9,0,4,8.2846241,7.999784,0,29,9,10.742795,0,2,2,2021,11,1,37,37,1,1,0,13.166357,13.166357,.05,.05,0,0,0,0,0,2,1,1,0,1.6720744,0,54.2,57.49,52,54.51,6.666666666666667,1,1,0,0,12,5,3,1,474.75,199572.23,-1557.1227,199977.95,61703.547,622.29871,3601.8755,2028.3142 +8572,10412,18610,18611,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.0022373,7.9894652,0,34,5,149.39174,0,2,3,2021,8,0,8,8,1,0,0,55.07354,55.07354,.05,.05,0,0,0,0,0,0,0,0,0,3.9453251,0,41.34,56.62,57.33,53.46,6.666666666666667,1,1,0,0,11,2,5,1,1206,950756.63,564441.88,300506.5,0,0,0,3474.751 +8572,10412,18611,18610,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.6225624,8.6270657,0,34,-5,96.651932,0,3,3,2021,11,0,40,18,1,0,0,16.742485,16.742485,.05,.05,0,0,0,0,0,0,0,0,0,4.0113416,0,57.33,53.46,41.34,56.62,1.666666666666667,1,1,0,0,15,2,5,1,1206,950756.63,564441.88,300506.5,0,0,0,3474.751 +8573,10413,18612,18613,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,46,-4,0,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.47,51.38,44.05,59.35,8.333333333333334,1,1,0,0,0,12,1,1,646.5,629892.81,23384.414,470291.44,0,0,1016.8876,844.92285 +8573,10413,18613,18612,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,0,0,46,4,0,0,-9,1,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44.05,59.35,40.47,51.38,8.333333333333334,1,1,0,0,0,12,1,1,646.5,629892.81,23384.414,470291.44,0,0,1016.8876,844.92285 +8574,10414,18614,18615,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,7.392077,7.2253494,36,-8,-9.8259172,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1741331,7.1273689,55.36,51.57,57.33,53.46,8.333333333333334,1,1,0,0,5,7,3,1,372,1357826.8,674554.25,454758.72,0,0,0,2215.0776 +8574,10414,18615,18614,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.0928764,7.2206278,36,8,74.090515,0,-9,-9,2021,9,0,0,12,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9862764,7.3683648,57.33,53.46,55.36,51.57,8.333333333333334,1,1,0,0,9,7,3,1,372,1357826.8,674554.25,454758.72,0,0,0,2215.0776 +8575,10415,18616,-9,18619,18620,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-969.08636,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18617,-9,18619,18620,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1010.6929,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18618,-9,18619,18620,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-972.75586,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18619,18620,-9,-9,1,0,46,0,4,0,2,2,-9,0,3,8.3151112,8.1695671,0,15,6,72.942467,0,2,2,2021,12,0,40,42,1,0,0,11.299109,11.299109,.05,.05,0,0,0,0,0,0,1,1,0,1.9946971,0,49.04,55.86,46.32,53.44,6.666666666666667,1,1,0,0,12,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18620,18619,-9,-9,1,1,40,0,4,0,1,1,-9,0,2,8.647644,8.5794516,5.2826915,15,-6,-103.15948,0,1,2,2021,22,9,44,38,1,9,0,16.596157,16.596157,.05,.05,0,0,0,0,0,0,1,1,0,5.203867,0,46.32,53.44,49.04,55.86,6.666666666666667,1,1,0,0,14,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8575,10415,18621,-9,18619,18620,1,1,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-984.24237,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,4,1,613.5,656368.88,644094.63,197661.23,180519.61,0,0,3821.5903 +8576,10416,18622,18623,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,5.359695,5.0056601,14,6,-101.43928,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3143835,4.9905705,57.16,56.15,58.47,50.22,8.333333333333334,1,1,0,0,7,10,2,1,326.5,584246,0,481244.94,0,0,0,18430.27 +8576,10416,18623,18622,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.4601641,5.5845966,29,-6,36.384884,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6886683,5.3669815,58.47,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,326.5,584246,0,481244.94,0,0,0,18430.27 +8577,10417,18624,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.2946472,6.9325871,0,0,0,-942.08124,0,-9,2,2021,13,1,15,16,1,1,0,9.953434,9.953434,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.3,31.1,-9,-9,5,1,1,0,0,14,12,3,0,174,259691.5,17060.105,0,0,4624.3472,0,991.39868 +8578,10418,18625,-9,18626,18628,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.909,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8578,10418,18626,18628,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.5550795,8.7838736,0,3,0,-11.711123,0,-9,-9,2021,7,0,40,40,1,0,0,13.30628,13.30628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,46.98,59.35,8.333333333333334,3,4,0,0,2,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8578,10418,18627,-9,18626,18628,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-931.06604,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8578,10418,18628,18626,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,8.060956,8.0802813,0,3,0,132.71642,0,2,1,2021,9,0,38,40,1,0,0,11.828534,11.828534,.05,.05,0,0,0,0,0,0,1,1,0,1.9366159,0,46.98,59.35,62.49,55.09,8.333333333333334,3,4,0,0,6,6,4,1,1582.5,196186.16,88377.453,230838.33,101991.46,2351.3569,2127.6831,3590.6868 +8579,10419,18629,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.2866106,7.8864608,0,0,-1002.8467,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4316648,8.5477047,52,47,-9,-9,7,1,1,0,0,0,5,4,0,654,944600.5,783593.88,267900.56,0,17394.914,0,3256.6245 +8580,10420,18630,18631,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,9,-1,0,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.653811,0,57.16,56.15,57.33,53.46,10,1,1,0,0,5,13,1,1,590.5,47651.34,-63929.758,0,0,0,0,1048.7153 +8580,10420,18631,18630,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,9,1,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7675257,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,10,13,1,1,590.5,47651.34,-63929.758,0,0,0,0,1048.7153 +8581,10421,18632,-9,18638,18635,1,1,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1010.6817,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18633,-9,18638,18635,1,1,4,2,5,1,3,0,-9,0,4,0,0,0,0,0,-885.65466,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18634,-9,18638,18635,1,1,9,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1024.2954,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18635,18638,-9,-9,1,1,37,2,5,0,2,2,-9,0,4,8.6003923,8.5965652,0,16,0,100.25771,0,2,-9,2021,10,0,45,48,1,0,0,15.240108,15.240108,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.39,44.54,57.16,56.15,8.333333333333334,1,1,0,0,11,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18636,-9,18638,18635,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1060.4038,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18637,-9,18638,18635,1,1,6,2,5,1,3,0,-9,0,4,0,0,0,0,0,-943.80078,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8581,10421,18638,18635,-9,-9,1,0,37,2,5,0,2,2,-9,0,4,7.466548,7.4907069,0,16,0,6.4873443,0,-9,-9,2021,4,0,19,19,1,0,0,13.38661,13.38661,.05,.05,0,0,0,0,0,0,1,1,0,6.4386926,0,57.16,56.15,58.39,44.54,10,1,1,0,0,11,6,4,0,511.71429,199990.11,246987.44,204841.75,136368.13,3160.1868,555.42822,4303.8159 +8582,10422,18639,-9,-9,-9,1,0,84,0,0,0,1,1,-9,0,2,0,4.8631611,4.8960266,0,0,-1027.7369,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0501132,51.99,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,1481,104667.94,64113.316,194604.91,0,0,0,1388.9408 +8583,10423,18640,18642,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.5178547,8.2775888,0,7,4,-49.843658,0,3,3,2021,12,2,49,50,1,2,0,11.448103,11.448103,0,0,0,0,0,0,0,0,1,1,0,0,0,56.48,45.49,42.22,56.11,8.333333333333334,1,1,0,0,9,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8583,10423,18641,-9,18640,18642,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.7592,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8583,10423,18642,18640,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,7.8734016,7.9134054,0,7,-4,114.55219,0,3,3,2021,14,2,35,35,1,2,0,10.598601,10.598601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,56.11,56.48,45.49,8.333333333333334,1,1,0,0,9,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8583,10423,18643,-9,18640,18642,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.68262,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,1026.25,161674.86,-31986.447,171343.31,135504.05,6601.5693,0,3166.2756 +8584,10424,18644,18645,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,3.5042918,3.6009104,0,8,0,54.089817,0,2,2,2021,24,8,20,23,1,8,0,.27202144,.27202144,0,0,0,0,0,0,0,0,0,0,0,7.0400205,0,52.23,55.6,54.2,57.49,1.666666666666667,1,1,0,0,9,12,3,1,281.5,1297616.1,0,1432073.1,441411.03,0,29262.57,924.75958 +8584,10424,18645,18644,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.7843943,7.7227869,0,8,0,-86.290169,-9,1,2,2021,11,0,80,0,1,0,0,4.3650556,4.3650556,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.23,55.6,8.333333333333334,1,1,0,0,9,12,3,1,281.5,1297616.1,0,1432073.1,441411.03,0,29262.57,924.75958 +8585,10425,18646,18647,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,11,-7,55.513813,1,1,1,2021,18,6,0,25,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2706678,0,39.2,61.5,48.14,53.42,3.333333333333333,1,1,0,0,10,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8585,10425,18647,18646,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,7.4317837,7.1997213,0,11,7,94.611229,0,2,2,2021,12,0,40,40,1,0,0,4.7625332,4.7625332,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.14,53.42,39.2,61.5,6.666666666666667,1,1,0,0,12,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8585,10425,18648,-9,18646,18647,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.9176,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8585,10425,18649,-9,18646,18647,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.41046,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,2,1,660,46324.547,-10635.434,0,0,0,1173.6199,546.9845 +8586,10426,18650,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.6839514,4.2868972,0,0,-1121.8434,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,3.0576105,0,22.54187,0,1,1,0,4.9235301,4.5390024,46.05,27.8,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,61,-94242.313,-94117.508,0,0,1545.3495,0,257.88727 +8587,10427,18651,18653,-9,-9,1,0,57,0,1,0,1,1,-9,0,4,0,0,0,17,-1,-47.677563,-9,2,1,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,1.6901038,0,51,52.08,54.2,57.49,8.333333333333334,1,1,0,0,7,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8587,10427,18652,-9,18651,18653,1,1,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1065.3109,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3381624,0,58.05,54.52,-9,-9,10,1,1,0,0,8,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8587,10427,18653,18651,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.476469,9.2957821,0,17,1,57.47015,-9,1,1,2021,6,0,40,0,1,0,0,27.652719,27.652719,.05,.05,.05,0,0,0,0,2,0,0,0,3.5828307,0,54.2,57.49,51,52.08,8.333333333333334,1,1,0,0,8,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8587,10427,18654,-9,18651,18653,1,0,16,0,1,1,3,0,-9,0,3,0,5.51261,5.3624268,0,0,-1052.7147,-9,1,1,2021,24,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.657052,0,31.69,59.68,-9,-9,3.333333333333333,1,1,0,0,0,7,4,1,492.75,460305.97,294850.88,325519.59,188398.84,14066.39,4943.3472,3529.8164 +8588,10428,18655,18656,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.2035661,7.5603027,46,3,-147.91508,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9696755,7.3218479,57.06,57.76,61.11,48.86,8.333333333333334,1,1,0,0,5,9,3,1,831.5,773567.44,691081.19,217575.28,0,0,0,2740.3838 +8588,10428,18656,18655,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.9006124,5.7907405,46,-3,-81.091072,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6882992,6.3139071,61.11,48.86,57.06,57.76,0,1,1,0,0,5,9,3,1,831.5,773567.44,691081.19,217575.28,0,0,0,2740.3838 +8589,10429,18657,-9,18658,18659,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1037.6807,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.13,43.87,-9,-9,10,1,1,0,0,0,13,5,1,389,627798.13,469964.63,378403,179290.08,0,844.37457,4871.3062 +8589,10429,18658,18659,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.7636061,8.6723242,0,24,0,54.296288,0,3,3,2021,9,0,40,38,1,0,0,16.915243,16.915243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,58.15,52.91,10,1,1,0,0,14,13,5,1,389,627798.13,469964.63,378403,179290.08,0,844.37457,4871.3062 +8589,10429,18659,18658,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.6051855,8.7711954,0,13,0,40.256336,0,-9,-9,2021,8,1,88,40,1,1,0,7.8943672,7.8943672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.74,57.22,6.666666666666667,1,1,0,0,14,13,5,1,389,627798.13,469964.63,378403,179290.08,0,844.37457,4871.3062 +8590,10430,18660,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.1910887,8.178154,0,0,0,-976.01489,0,2,2,2021,5,1,38,38,1,1,0,9.9322319,9.9322319,.05,.05,0,0,0,0,0,0,0,0,0,1.0332692,0,43.9,57.01,-9,-9,8.333333333333334,1,1,0,0,3,8,4,0,1897,112543,-30038.094,278703.75,78755.633,0,0,755.81696 +8591,10431,18661,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1026.9521,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2745297,0,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,536,72576.422,0,0,0,0,341.4707,325.83978 +8592,10432,18662,18663,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.4046879,5.350461,49,-1,65.858955,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.0171614,5.4612432,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,6,6,2,1,1238,431541.75,303339.69,58639.828,2497.2661,0,0,2415.0103 +8592,10432,18663,18662,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.6538067,6.5669594,49,1,-159.92586,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.842648,6.6767588,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,6,6,2,1,1238,431541.75,303339.69,58639.828,2497.2661,0,0,2415.0103 +8593,10433,18664,-9,18665,18666,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2596,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8593,10433,18665,18666,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,8.0423841,8.3880816,0,7,2,60.071125,0,-9,-9,2021,6,0,40,40,1,0,0,8.8691187,8.8691187,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8593,10433,18666,18665,-9,-9,1,1,34,1,2,0,3,3,-9,0,4,8.1309414,8.4378767,0,7,-2,-11.909264,0,2,3,2021,7,0,48,45,1,0,0,8.7949409,8.7949409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8593,10433,18667,-9,18665,18666,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-844.02655,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,736.5,119800.97,149544.44,124249.06,36286.793,5318.7974,1093.9963,2831.7498 +8594,10434,18668,18669,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,8.156785,8.7945671,8.0943356,30,7,60.029732,0,3,2,2021,7,0,35,35,1,0,0,15.487103,15.487103,.05,.05,0,0,0,0,0,0,1,1,0,7.5329003,8.0428638,54.07,52.08,60.02,56.42,0,4,2,0,0,13,8,5,1,371,2090957.8,1255933.3,821537.63,295482.28,0,0,7894.7085 +8594,10434,18669,18668,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.7980299,8.7314434,0,10,-7,5.8248439,0,-9,-9,2021,6,0,45,45,1,0,0,20.439209,20.439209,.05,.05,0,0,0,0,0,0,1,1,0,4.5899472,0,60.02,56.42,54.07,52.08,10,3,4,0,0,13,8,5,1,371,2090957.8,1255933.3,821537.63,295482.28,0,0,7894.7085 +8595,10435,18670,18671,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8585067,7.7777615,11,-4,-39.011936,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8379021,8.0205526,49.41,58.28,59.44,39.94,8.333333333333334,1,1,0,0,3,5,3,1,1149.5,1207202.1,611970.88,267118.47,0,0,0,3768.9517 +8595,10435,18671,18670,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.8163199,6.6890793,11,4,15.166248,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5432243,7.2905655,59.44,39.94,49.41,58.28,8.333333333333334,1,1,0,0,4,5,3,1,1149.5,1207202.1,611970.88,267118.47,0,0,0,3768.9517 +8596,10436,18672,18673,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.2098675,8.3205547,0,8,-3,55.493889,0,2,3,2021,27,11,35,35,1,11,0,11.927942,11.927942,0,0,0,0,0,0,0,0,0,0,0,7.5909491,0,27.71,67.3,38.76,58.16,6.666666666666667,2,3,0,0,8,8,5,1,485.5,-87701.211,1604.9727,0,0,0,4405.1606,3704.4268 +8596,10436,18673,18672,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.3824463,8.3358479,0,8,3,-65.92244,0,2,2,2021,12,0,38,38,1,0,0,15.143913,15.143913,.05,.05,0,0,0,0,0,0,0,0,0,3.4912941,0,38.76,58.16,27.71,67.3,3.333333333333333,1,1,0,0,11,8,5,1,485.5,-87701.211,1604.9727,0,0,0,4405.1606,3704.4268 +8597,10437,18674,18675,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,7.0030246,7.2792549,0,4,0,-21.543465,0,-9,-9,2021,15,4,23,23,1,4,0,5.7481985,5.7481985,0,0,0,0,0,0,0,0,1,1,0,0,0,34.83,60.66,60.03,45.37,6.666666666666667,1,1,0,1,2,2,3,0,552,-11357.37,0,0,0,0,0,3058.1448 +8597,10437,18675,18674,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.1912451,8.3110466,0,4,0,63.906731,0,3,3,2021,9,0,42,41,1,0,0,10.032612,10.032612,0,0,0,0,0,0,0,0,1,1,0,0,0,60.03,45.37,34.83,60.66,6.666666666666667,1,1,0,0,8,2,3,0,552,-11357.37,0,0,0,0,0,3058.1448 +8597,10437,18676,-9,18674,18675,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.5085,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,552,-11357.37,0,0,0,0,0,3058.1448 +8598,10438,18677,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.5840492,7.2790051,0,0,-1115.6523,0,2,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1566911,7.5740385,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,5,13,3,1,1308,-51007.574,44214.07,0,0,0,0,1482.1495 +8598,10439,18678,-9,18677,-9,1,1,35,0,0,0,2,2,-9,0,4,8.1137819,8.1068459,0,0,0,-993.5116,-9,1,2,2021,6,0,36,0,1,0,0,14.34569,14.34569,.05,.05,0,0,0,0,0,0,1,1,0,.53984976,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,15,13,4,1,699,128038.46,35492.578,0,0,6381.2251,0,1403.7325 +8599,10440,18679,18680,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.0900059,7.0208497,0,7,-1,-54.474762,0,3,3,2021,6,0,21,41,1,0,0,7.5080729,7.5080729,0,0,0,0,0,0,0,0,1,1,0,4.3000069,0,62.25,48.33,45.32,61.53,10,1,1,0,0,8,13,4,1,474,196538.66,210009.14,85492.672,0,0,0,2860.2207 +8599,10440,18680,18679,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.2533607,8.2402439,4.8695531,7,1,-53.552731,0,3,-9,2021,9,0,46,45,1,0,0,8.5170441,8.5170441,0,0,.05,0,0,0,0,0,1,1,0,0,4.660388,45.32,61.53,62.25,48.33,1.666666666666667,1,1,0,0,8,13,4,1,474,196538.66,210009.14,85492.672,0,0,0,2860.2207 +8600,10441,18681,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,0,0,-997.5965,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.75,48.15,-9,-9,0,4,2,1,1,0,9,1,0,483,286746.59,0,390311.19,0,0,0,0 +8601,10442,18682,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.3895683,6.4086037,0,0,-962.38287,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1675987,6.5587702,48.52,41.11,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,1100,607769.88,139561,233038.03,0,0,0,1304.6007 +8602,10443,18683,18684,-9,-9,1,1,67,0,0,0,1,1,-9,0,1,0,6.8911743,6.9527235,49,-2,-143.74651,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2029557,6.7798376,47.86,41.84,51.77,58.57,8.333333333333334,1,1,0,0,0,10,3,1,1087,86884.516,143543.44,0,0,0,0,2490.7095 +8602,10443,18684,18683,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.5529752,6.6756601,49,2,-41.329655,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8017373,51.77,58.57,47.86,41.84,1.666666666666667,1,1,0,0,0,10,3,1,1087,86884.516,143543.44,0,0,0,0,2490.7095 +8603,10444,18685,-9,18686,-9,1,1,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-973.80164,-9,2,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36512813,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,950.5,85295.281,0,0,0,0,0,1423.0901 +8603,10444,18686,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-885.9353,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,48.43,22.56,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,950.5,85295.281,0,0,0,0,0,1423.0901 +8603,10445,18687,-9,18686,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1132.4886,-9,2,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,1,3101,0,0,0,0,0,0,-554.14282 +8604,10446,18688,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,5.4066033,7.3703694,7.222774,0,0,-1065.4435,0,3,3,2021,14,2,13,12,1,2,0,2.243027,2.243027,0,0,0,0,0,0,0,2,1,1,0,0,7.3243833,39.68,41.15,-9,-9,6.666666666666667,1,1,0,0,13,12,3,0,120,480121.22,-17015.354,242976.03,0,0,0,1702.2942 +8605,10447,18689,18690,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,7.9695921,8.192914,0,7,1,105.43623,0,2,2,2021,6,0,60,55,1,0,0,5.8153911,5.8153911,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,52,54.51,8.333333333333334,1,1,0,0,10,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8605,10447,18690,18689,-9,-9,1,0,29,1,2,0,1,1,-9,0,3,7.3770566,7.1317682,0,7,-1,20.379814,0,-9,-9,2021,9,0,23,29,1,0,0,7.6385016,7.6385016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,48.28,60.18,8.333333333333334,1,1,0,0,7,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8605,10447,18691,-9,18690,18689,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.51825,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8605,10447,18692,-9,18690,18689,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.26111,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,3,1,1007.5,81097.328,34639.668,134180.39,21559.762,1730.3088,7797.834,2658.5945 +8606,10448,18693,18694,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,0,0,11,-8,17.940231,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.53,51.79,8.333333333333334,1,1,0,0,5,10,2,1,1445,434294.03,123255.86,194052.7,0,0,0,636.80963 +8606,10448,18694,18693,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.8596573,6.0283775,11,8,30.492197,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6684251,5.5991225,45.53,51.79,57.16,56.15,3.333333333333333,1,1,0,0,0,10,2,1,1445,434294.03,123255.86,194052.7,0,0,0,636.80963 +8607,10449,18695,18696,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.4261417,6.7390447,42,4,59.678188,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,9.4218845,6.6251135,58.56,46.45,36.48,61.57,8.333333333333334,1,1,0,0,10,11,5,1,875.5,698895.13,542455.69,97956.688,56659.625,0,0,12332.255 +8607,10449,18696,18695,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.9348564,9.2964592,5.1218204,42,-4,-64.806213,0,2,2,2021,10,0,2,-9,1,0,0,531.91565,531.91565,.05,.05,0,0,0,0,0,0,1,1,0,8.4701052,5.3027077,36.48,61.57,58.56,46.45,6.666666666666667,1,1,0,0,10,11,5,1,875.5,698895.13,542455.69,97956.688,56659.625,0,0,12332.255 +8608,10450,18697,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,6.8145132,6.7659984,0,0,-937.93488,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6909199,6.9314952,56.8,13.83,-9,-9,8.333333333333334,1,1,0,0,6,13,2,1,388,217941.28,80782.383,0,0,0,0,670.91602 +8609,10451,18698,18699,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.1325655,7.676825,0,16,-6,58.456783,0,2,2,2021,11,1,22,19,1,1,0,14.803996,14.803996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.6,56.17,45.15,57.46,8.333333333333334,1,1,0,0,14,9,5,1,1050.6666,562776.63,153265.45,276758.88,147849.92,13049.224,698.91003,4062.4958 +8609,10451,18699,18698,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.6728573,8.6409216,0,16,6,3.9203298,0,2,1,2021,13,2,36,37,1,2,0,19.306684,19.306684,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.15,57.46,36.6,56.17,8.333333333333334,1,1,0,0,14,9,5,1,1050.6666,562776.63,153265.45,276758.88,147849.92,13049.224,698.91003,4062.4958 +8609,10451,18700,-9,18698,18699,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9417,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,1050.6666,562776.63,153265.45,276758.88,147849.92,13049.224,698.91003,4062.4958 +8610,10452,18701,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.2439127,8.0027723,0,0,0,-941.8761,0,3,3,2021,11,1,38,38,1,1,0,11.5395,11.5395,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.61,54.5,-9,-9,8.333333333333334,1,1,0,0,12,8,4,1,80,1036571.1,450804.16,502369.88,0,0,1950.4185,589.59021 +8611,10453,18702,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.211525,8.406909,0,0,-905.54315,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8119831,8.3633242,59.53,56.44,-9,-9,10,1,1,0,0,6,9,4,1,399,1009243.1,682452.44,0,0,0,0,3029.6995 +8612,10454,18703,18705,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,6.1324234,6.2474871,0,27,1,50.319073,0,3,3,2021,15,5,60,50,1,5,0,1.0650324,1.0650324,.05,.05,0,0,0,0,0,0,1,1,0,3.088618,0,51.24,58.84,51.14,60.45,8.333333333333334,1,1,0,0,8,11,4,1,905,537282.06,366669.25,0,0,0,0,2099.8459 +8612,10454,18704,-9,18705,18703,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1054.6575,-9,1,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60760343,0,35.75,66.17,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,905,537282.06,366669.25,0,0,0,0,2099.8459 +8612,10454,18705,18703,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.31215,8.0540476,0,26,-1,-14.800221,0,1,1,2021,12,1,35,35,1,1,0,10.390142,10.390142,.05,.05,0,0,0,0,0,0,1,1,0,4.6136994,0,51.14,60.45,51.24,58.84,8.333333333333334,1,1,0,0,9,11,4,1,905,537282.06,366669.25,0,0,0,0,2099.8459 +8613,10455,18706,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.8627586,8.9093876,0,0,0,-1130.4911,0,3,2,2021,8,0,50,0,1,0,0,11.901305,11.901305,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.51,37.28,-9,-9,5,1,1,0,0,7,4,5,0,351,168321.27,64976.184,0,0,0,0,1997.1498 +8614,10456,18707,-9,18710,18708,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.1311,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8614,10456,18708,18710,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,9.8064909,9.7642889,0,7,4,126.07907,0,-9,-9,2021,11,0,60,70,1,0,0,25.815704,25.815704,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.64,52.35,24.19,65.5,6.666666666666667,2,3,0,0,14,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8614,10456,18709,-9,18710,18708,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.3679,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8614,10456,18710,18708,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.7163572,7.930295,0,12,-4,98.942009,0,1,3,2021,16,3,55,35,1,3,0,5.3759627,5.3759627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.19,65.5,47.64,52.35,5,2,3,0,0,12,6,5,1,435.5,845129.38,321541.06,350307.69,0,17683.051,0,7137.2715 +8615,10457,18711,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.3606691,7.2180839,0,0,0,-1005.7108,0,3,3,2021,5,0,22,22,1,0,0,8.3239431,8.3239431,0,0,0,0,0,0,0,0,1,1,0,0,0,53.5,37.35,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,1032,903029.25,-17111.803,371559.22,33839.078,4329.4922,0,685.58893 +8616,10458,18712,18713,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,8.194169,8.6725569,0,9,-12,14.455616,0,2,2,2021,13,2,38,40,1,2,0,10.601582,10.601582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.78,24.44,50.27,48.86,8.333333333333334,1,1,0,0,10,9,5,1,709,1659061.8,1256351,372523.81,64340.941,0,2384.3359,3808.3601 +8616,10458,18713,18712,-9,-9,1,1,44,0,0,0,1,1,-9,0,2,8.816824,8.6614647,0,9,12,11.254062,0,2,2,2021,6,0,37,37,1,0,0,20.927095,20.927095,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.27,48.86,53.78,24.44,6.666666666666667,1,1,0,0,11,9,5,1,709,1659061.8,1256351,372523.81,64340.941,0,2384.3359,3808.3601 +8617,10459,18714,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,1,0,1.5072877,1.5509353,0,0,-1001.3952,0,2,1,2021,17,5,0,30,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6147127,0,46.26,28.04,-9,-9,0,2,3,1,1,6,8,2,0,1416,461161.56,0,496098.16,71558.438,0,0,1185.5688 +8617,10460,18715,-9,-9,18714,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1012.4022,-9,-9,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2442644,0,62.66,52.4,-9,-9,10,2,3,0,0,0,8,1,0,1163,138422.8,0,0,0,0,0,-367.96149 +8618,10461,18716,18717,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.8760037,7.1525059,5.7759252,2,3,-46.343384,0,2,1,2021,10,0,30,40,1,0,0,3.2621739,3.2621739,0,0,0,0,0,0,0,0,0,0,0,1.7170267,5.3790326,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,9,9,2,1,782.5,1085926,738843.13,342186.09,0,3096.2976,0,1029.863 +8618,10461,18717,18716,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,5.7022982,5.320704,0,2,-3,-90.70742,0,-9,-9,2021,8,0,30,48,1,0,0,1.3533974,1.3533974,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,54.2,57.49,10,3,4,0,0,9,9,2,1,782.5,1085926,738843.13,342186.09,0,3096.2976,0,1029.863 +8619,10462,18718,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.9303989,6.68859,0,0,0,-921.3327,0,2,-9,2021,7,0,50,60,1,0,0,1.9307934,1.9307934,.05,.05,0,0,0,0,0,0,0,0,0,1.611297,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,9,2,1,405,354149.56,-95206.336,119789.7,0,0,0,511.9794 +8620,10463,18719,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1008.3997,0,2,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.21,34.98,-9,-9,5,1,1,1,1,0,2,1,0,1360,70244.078,0,0,0,0,0,665.25568 +8621,10464,18720,-9,-9,-9,1,0,80,0,1,0,3,3,-9,0,2,0,7.3251157,7.4298654,0,0,-1065.5972,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9271779,7.6122179,56.35,29.9,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,1399,522868.41,142589.58,264736.59,0,0,0,2451.1809 +8622,10465,18721,18722,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.3755846,8.3929176,0,12,0,-51.483082,0,2,3,2021,4,0,37,40,1,0,0,16.546558,16.546558,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.73,54.53,54.1,59.11,10,1,1,0,0,8,7,5,1,878,1394258.1,830664.19,682997.38,39083.414,0,0,5628.9033 +8622,10465,18722,18721,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.9931736,9.262248,0,12,0,59.001717,0,-9,1,2021,12,0,40,40,1,0,0,18.790955,18.790955,.05,.05,.05,0,0,0,0,0,0,0,0,6.9977555,0,54.1,59.11,57.73,54.53,8.333333333333334,1,1,0,0,8,7,5,1,878,1394258.1,830664.19,682997.38,39083.414,0,0,5628.9033 +8622,10466,18723,-9,18721,18722,1,0,22,0,0,0,2,2,-9,0,3,8.0614986,7.9877305,0,0,0,-991.03473,0,1,2,2021,10,0,47,0,1,0,1,5.2611265,5.2611265,.05,.05,0,0,0,0,0,0,0,0,0,3.3516109,0,50.6,44.34,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,615,41833.012,-88407.648,0,0,1425.5862,0,735.62054 +8623,10467,18724,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.2628202,8.1926699,0,0,0,-938.15497,0,3,3,2021,11,0,44,44,1,2,0,8.6377697,8.6377697,.05,.05,0,0,0,0,0,7,0,0,0,0,0,49,48,-9,-9,7,3,4,0,0,8,7,4,1,355,465301.25,135829.95,261574.97,0,0,0,-15.660603 +8623,10468,18725,-9,18726,-9,1,0,13,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1062.1465,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8623,10468,18726,-9,18724,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1007.8428,1,1,-9,2021,7,0,0,40,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,10,3,4,0,0,4,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8623,10468,18727,-9,18726,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1051.3485,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8623,10468,18728,-9,18726,-9,1,0,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1069.2803,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,4,6,-9,0,0,7,1,1,999,-9015.5684,0,0,0,0,0,903.44763 +8624,10469,18729,18731,-9,-9,1,1,45,0,1,0,1,1,-9,0,3,8.8309412,8.8969879,0,12,0,-199.45354,0,2,2,2021,12,2,42,48,1,2,0,15.358919,15.358919,.05,.05,0,0,0,0,0,7,1,1,0,2.9254944,0,48.7,56.22,47.16,50.53,6.666666666666667,1,1,0,0,12,13,4,1,295.66666,863841.06,633860.88,207988.5,35434.035,4631.3574,0,3516.1028 +8624,10469,18730,-9,18731,18729,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.13611,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,295.66666,863841.06,633860.88,207988.5,35434.035,4631.3574,0,3516.1028 +8624,10469,18731,18729,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.9198651,7.8241134,0,12,0,-90.283501,0,-9,-9,2021,11,0,30,0,1,0,0,10.430291,10.430291,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.16,50.53,48.7,56.22,8.333333333333334,1,1,0,0,13,13,4,1,295.66666,863841.06,633860.88,207988.5,35434.035,4631.3574,0,3516.1028 +8625,10470,18732,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,1,0,5.9873481,6.2526217,0,0,-854.80042,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5106661,6.284687,47.15,23.24,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,499,391286.56,9437.4668,95909.227,0,0,0,587.31567 +8626,10471,18733,18734,-9,-9,1,1,46,0,1,0,3,3,-9,0,3,8.3727264,8.5524273,0,25,2,-1.3256011,0,3,3,2021,7,0,60,50,1,0,0,10.860702,10.860702,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,48.5,41.65,8.333333333333334,1,1,0,0,13,5,4,1,1037,297920.22,42063.164,224639.94,50303.836,0,0,3480.1702 +8626,10471,18734,18733,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.8968525,7.755477,0,22,-2,28.715101,0,3,3,2021,12,0,34,34,1,0,0,6.1203814,6.1203814,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.5,41.65,55.36,51.57,6.666666666666667,1,1,0,0,14,5,4,1,1037,297920.22,42063.164,224639.94,50303.836,0,0,3480.1702 +8626,10471,18735,-9,18734,18733,1,0,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1160.271,-9,2,3,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.24,63.73,-9,-9,10,1,1,0,0,0,5,4,1,1037,297920.22,42063.164,224639.94,50303.836,0,0,3480.1702 +8626,10472,18736,-9,18734,18733,1,0,20,0,1,0,2,2,1,0,5,7.3986511,7.4237885,0,0,0,-1032.2506,-9,2,3,2021,13,2,36,0,1,2,1,4.9771738,4.9771738,0,0,0,0,0,0,0,0,1,1,0,7.9324465,0,41.48,59.77,-9,-9,10,1,1,0,0,4,5,3,1,646,-37884.234,0,0,0,0,2297.6799,1795.2786 +8627,10473,18737,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.2575,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,14.6537,0,7,1,1,0,0,0,59.18,14.99,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,523,-175409.09,0,0,0,0,0,2234.7805 +8628,10474,18738,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,6.8877897,6.4126768,0,0,-1044.1857,0,2,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0525627,64.64,45.9,-9,-9,10,1,1,0,0,0,12,2,0,572,464681.28,131188.11,214698.39,0,0,0,2282.5593 +8629,10475,18739,18740,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.7146759,9.5971832,0,30,-1,52.643959,0,2,2,2021,9,1,44,44,1,1,0,38.685383,38.685383,.05,.05,0,0,0,0,0,0,1,1,0,8.5595074,0,48.96,60.26,60.3,46.58,8.333333333333334,1,1,0,0,9,7,5,1,471.5,92811.844,35240,259440.22,188720.19,0,0,13094.293 +8629,10475,18740,18739,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.0109415,8.2295275,0,29,1,13.949908,0,3,3,2021,6,0,50,17,1,0,0,5.4265542,5.4265542,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,48.96,60.26,8.333333333333334,1,1,0,0,9,7,5,1,471.5,92811.844,35240,259440.22,188720.19,0,0,13094.293 +8629,10476,18741,-9,18740,18739,1,0,22,0,0,0,2,2,-9,0,4,7.9249377,7.9220576,0,0,0,-1041.4313,0,1,1,2021,21,9,37,36,1,9,1,9.1279736,9.1279736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,6.666666666666667,1,1,0,1,8,7,3,1,1331,23338.543,-67884.922,0,0,1241.405,0,2114.0105 +8630,10477,18742,-9,18743,18744,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-879.95483,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8630,10477,18743,18744,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,8.0252581,7.6428547,0,7,-4,63.226402,0,2,2,2021,12,2,60,50,1,2,0,4.386374,4.386374,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,44.61,59.06,8.333333333333334,1,1,0,0,10,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8630,10477,18744,18743,-9,-9,1,1,38,1,2,0,1,1,-9,0,4,4.7287674,4.9053845,0,7,4,151.38243,0,2,1,2021,7,0,50,50,1,0,0,.36024949,.36024949,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.61,59.06,48.87,58.55,8.333333333333334,1,1,0,0,7,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8630,10477,18745,-9,18743,18744,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.37421,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,1,1152.5,-40068.012,29030.883,0,0,0,0,1380.9209 +8631,10478,18746,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,2,8.6084547,8.9206591,5.6141863,0,0,-879.37878,0,2,2,2021,16,4,50,45,1,4,0,12.313217,12.313217,0,0,.05,0,0,0,0,0,1,1,0,5.8151779,0,40.09,52.06,-9,-9,3.333333333333333,1,1,0,0,14,7,5,0,426,131560.16,71862.242,201340.75,137839.2,0,1894.0441,2358.5715 +8632,10479,18747,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.4016299,6.5856943,0,0,-1069.8638,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8488441,6.9232121,54.94,47.65,-9,-9,10,1,1,0,0,11,5,2,1,712,481599.09,226306.61,210180.48,0,0,0,1449.5657 +8633,10480,18748,18749,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.5157852,9.5092201,0,6,0,177.98108,0,2,3,2021,5,0,40,40,1,0,0,41.883747,41.883747,.05,.05,0,0,0,0,0,0,0,0,0,4.3433056,0,57.06,57.76,50.65,60.47,8.333333333333334,1,1,0,0,7,1,5,1,548.33331,1166369.8,760968.75,357396.91,0,0,0,7052.8628 +8633,10480,18749,18748,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,8.8492985,8.7577429,0,6,0,23.824402,0,2,1,2021,5,0,36,36,1,0,0,21.10257,21.10257,0,0,0,0,0,0,0,0,0,0,0,4.8260107,0,50.65,60.47,57.06,57.76,8.333333333333334,1,1,0,0,7,1,5,1,548.33331,1166369.8,760968.75,357396.91,0,0,0,7052.8628 +8633,10480,18750,-9,18749,18748,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.46246,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,5,1,548.33331,1166369.8,760968.75,357396.91,0,0,0,7052.8628 +8634,10481,18751,18753,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.3239002,8.2129574,0,5,1,-40.351307,0,-9,-9,2021,8,0,25,25,1,0,0,19.664562,19.664562,.05,.05,0,0,0,0,0,0,0,0,0,6.8740716,0,55.53,51.55,34.49,52.94,10,1,1,0,0,13,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8634,10481,18752,-9,18751,18753,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.27332,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8634,10481,18753,18751,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.5183887,9.7242918,0,5,-1,134.3777,0,2,2,2021,12,0,46,50,1,0,0,34.170601,34.170601,.05,.05,0,0,0,0,0,0,0,0,0,4.3856378,0,34.49,52.94,55.53,51.55,6.666666666666667,1,1,0,0,11,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8634,10481,18754,-9,18751,18753,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.48108,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,5,1,655.25,461358.38,363499.41,195876.88,33970.711,3228.1047,0,6306.5166 +8635,10482,18755,18756,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.9331388,8.3476152,0,14,3,131.35104,0,3,3,2021,6,0,37,37,1,0,0,10.518535,10.518535,.05,.05,0,0,0,0,0,0,0,0,0,2.2982535,0,57.33,53.46,38.28,63.48,8.333333333333334,1,1,0,0,11,6,5,1,404,647076.13,394674.47,194047.06,-7877.5132,18616.273,2598.9009,3980.9224 +8635,10482,18756,18755,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.6036644,8.4364738,0,14,-3,-163.0636,0,2,2,2021,18,7,39,37,1,7,0,12.170362,12.170362,.05,.05,0,0,0,0,0,0,0,0,0,4.0143142,0,38.28,63.48,57.33,53.46,6.666666666666667,1,1,0,0,11,6,5,1,404,647076.13,394674.47,194047.06,-7877.5132,18616.273,2598.9009,3980.9224 +8636,10483,18757,-9,18761,18760,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.5045,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18758,-9,18761,18760,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.6598,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18759,-9,18761,18760,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.506,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18760,18761,-9,-9,1,1,42,1,3,0,1,1,-9,0,4,7.7667089,7.9053988,0,2,4,-33.287437,0,-9,-9,2021,9,0,50,25,1,1,0,5.7637296,5.7637296,0,0,.05,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,4,5,0,0,3,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8636,10483,18761,18760,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,0,0,0,2,-4,142.29597,0,3,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,4,5,0,0,0,8,2,0,905.59998,84344.859,11993.406,215154.5,76630.703,0,0,2262.4028 +8637,10484,18762,-9,18765,18763,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.7349,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8637,10484,18763,18765,-9,-9,1,1,46,0,2,0,3,3,-9,0,5,0,0,0,5,5,0,0,3,3,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.92,60.42,24.12,50.38,3.333333333333333,1,1,1,1,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8637,10484,18764,-9,18765,18763,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.4707,-9,3,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8637,10484,18765,18763,-9,-9,1,0,41,0,2,0,3,3,-9,1,2,0,0,0,5,-5,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,24.12,50.38,35.92,60.42,3.333333333333333,1,1,0,0,0,12,1,0,819,144630.67,0,33808.902,35007.051,0,0,1610.8228 +8638,10485,18766,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.6006,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,37.87,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,941,246793.63,0,0,0,0,0,1092.0615 +8639,10486,18767,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.8760443,7.7985644,0,0,0,-949.12268,0,3,-9,2021,13,1,39,40,1,1,0,5.9692631,5.9692631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.51,52.17,-9,-9,5,1,1,0,0,6,12,3,0,347,54899.055,71577.141,0,0,4694.2905,1709.4928,1256.3589 +8640,10487,18768,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.3894877,5.3587341,0,0,-1055.321,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2634759,56.94,43.99,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,648,903.03741,0,69166.453,70224.156,0,0,2131.5054 +8641,10488,18769,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.73138,7.8032584,0,0,0,-886.60828,0,2,2,2021,12,0,50,40,1,0,0,6.0334139,6.0334139,.05,.05,0,0,0,0,0,0,0,0,0,1.1166037,0,58.15,52.91,-9,-9,5,1,1,0,0,10,4,4,1,1020,80118.742,163740.5,0,0,9747.9531,0,851.01703 +8642,10489,18770,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.4751692,8.3366728,0,0,0,-986.72778,0,2,2,2021,8,1,35,35,1,1,0,15.571055,15.571055,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,9,12,5,1,453,1020082.3,642113.5,315620.94,0,0,0,979.76849 +8643,10490,18771,18773,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,0,0,0,25,-2,-116.86742,0,2,3,2021,2,0,0,47,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,5.9610257,0,57.16,56.15,51.24,58.84,10,1,1,1,0,11,10,2,1,679.66669,254845.44,30160.73,251157.88,0,0,0,1262.3694 +8643,10490,18772,-9,18773,18771,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.56952,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,.78080106,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,679.66669,254845.44,30160.73,251157.88,0,0,0,1262.3694 +8643,10490,18773,18771,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.2121177,7.1691189,0,27,2,-44.912094,0,2,2,2021,12,1,20,24,1,1,0,6.9673209,6.9673209,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,6,10,2,1,679.66669,254845.44,30160.73,251157.88,0,0,0,1262.3694 +8643,10491,18774,-9,18773,18771,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-1018.3055,-9,2,2,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.53,55.51,-9,-9,8.333333333333334,1,1,1,0,0,10,1,1,439,0,0,0,0,0,0,-447.20203 +8644,10492,18775,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.798624,8.7564697,0,0,0,-1112.3162,0,2,-9,2021,11,2,40,35,1,2,0,20.575176,20.575176,.05,.05,0,0,0,0,0,0,0,0,0,2.9800885,0,43.86,63.67,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,814,-6741.1504,76004.82,0,0,0,0,1527.4905 +8645,10493,18776,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1012.6479,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.18059477,0,40.94,40.39,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,788,-28702.807,0,0,0,0,0,583.33173 +8646,10494,18777,-9,18779,18778,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.08435,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,2,5,1,376,604172.13,301263,569277.69,299073.41,11640.419,0,5818.7217 +8646,10494,18778,18779,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,9.2496243,8.8332624,0,5,-1,27.164026,0,-9,-9,2021,12,0,43,48,1,0,0,24.856346,24.856346,0,0,0,0,0,0,0,0,1,1,0,7.4602518,0,62.39,56.71,57.73,54.53,8.333333333333334,2,3,0,0,14,2,5,1,376,604172.13,301263,569277.69,299073.41,11640.419,0,5818.7217 +8646,10494,18779,18778,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.634902,8.5640192,0,5,1,-28.029161,0,2,3,2021,8,1,43,40,1,1,0,14.530193,14.530193,0,0,0,0,0,0,0,2,1,1,0,7.1103172,0,57.73,54.53,62.39,56.71,6.666666666666667,1,1,0,0,14,2,5,1,376,604172.13,301263,569277.69,299073.41,11640.419,0,5818.7217 +8647,10495,18780,18781,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.5366812,8.7934713,0,6,-1,-.81260318,0,1,3,2021,9,1,40,40,1,1,0,13.293089,13.293089,0,0,0,0,0,0,0,0,0,0,0,7.4238591,0,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,7,9,5,1,340,829141.5,420860,697221.19,299955.06,0,0,6752.3047 +8647,10495,18781,18780,-9,-9,1,1,45,0,0,0,1,1,-9,0,5,8.8912334,8.7971525,0,6,1,12.439949,0,1,1,2021,12,3,50,41,1,3,0,21.039011,21.039011,.05,.05,0,0,0,0,0,0,0,0,0,7.9031887,0,57.06,57.76,51.83,57.2,10,1,1,0,0,7,9,5,1,340,829141.5,420860,697221.19,299955.06,0,0,6752.3047 +8648,10496,18782,18783,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.2868481,7.9758677,0,8,-1,-8.8643274,0,2,2,2021,14,2,41,40,1,2,0,10.58387,10.58387,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.51,45.46,39.54,54.5,5,1,1,0,0,9,5,3,1,1042.6666,212376.05,105847.97,92821.117,0,13357.766,0,2015.2761 +8648,10496,18783,18782,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,6.8661094,6.6691537,0,8,1,-55.887699,0,2,2,2021,9,0,16,13,1,0,0,4.5062809,4.5062809,0,0,0,0,0,0,0,0,1,1,0,0,0,39.54,54.5,39.51,45.46,10,1,1,0,0,2,5,3,1,1042.6666,212376.05,105847.97,92821.117,0,13357.766,0,2015.2761 +8648,10496,18784,-9,18783,18782,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1051.8691,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,5,3,1,1042.6666,212376.05,105847.97,92821.117,0,13357.766,0,2015.2761 +8648,10497,18785,-9,18783,18782,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-1040.432,-9,2,2,2021,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.8,54.33,-9,-9,8.333333333333334,1,1,0,0,3,5,1,1,345,-201670.97,0,0,0,0,514.84344,164.36914 +8649,10498,18786,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.2964106,4.9378428,0,0,-920.75671,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3636789,51.47,42.8,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,526,77232.422,36613.262,0,0,0,0,1044.0623 +8650,10499,18787,18788,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,9.558856,10.222889,0,7,1,80.35955,0,3,1,2021,9,0,50,37,1,0,0,39.961739,39.961739,.05,.05,.05,0,0,0,0,0,0,0,0,5.9832458,0,62.42,45.64,51.73,56.3,8.333333333333334,2,3,0,0,9,7,5,1,1344.5,846364.13,394725.81,327164.88,34745.723,0,0,7451.0332 +8650,10499,18788,18787,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.5454035,8.5346298,0,7,-1,-109.6924,0,-9,-9,2021,10,0,28,28,1,0,0,23.996241,23.996241,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.73,56.3,62.42,45.64,8.333333333333334,2,3,0,0,9,7,5,1,1344.5,846364.13,394725.81,327164.88,34745.723,0,0,7451.0332 +8651,10500,18789,18790,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,9.4210396,9.2792397,0,7,3,88.626015,0,2,2,2021,10,0,35,36,1,0,0,34.482246,34.482246,.05,.05,0,0,0,0,0,0,0,0,0,7.3882265,0,57.1,43.84,57.16,56.15,8.333333333333334,1,1,0,0,8,10,5,1,342,1155804,661304.88,243386.69,46807.906,0,0,5749.9395 +8651,10500,18790,18789,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3318396,7.9529057,0,7,-3,-56.177849,0,2,2,2021,8,0,18,23,1,0,0,25.595783,25.595783,0,0,0,0,0,0,0,0,0,0,0,4.1121268,0,57.16,56.15,57.1,43.84,8.333333333333334,1,1,0,0,7,10,5,1,342,1155804,661304.88,243386.69,46807.906,0,0,5749.9395 +8652,10501,18791,-9,18795,18792,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.6548,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18792,18795,-9,-9,1,1,46,0,4,0,3,3,-9,0,3,7.5263267,7.1633339,0,23,5,54.693562,0,3,2,2021,6,0,24,24,1,0,0,5.6774025,5.6774025,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,50.21,48,56,5,2,3,0,0,9,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18793,-9,18795,18792,1,0,15,0,4,1,3,0,-9,0,5,0,0,0,0,0,-959.50873,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18794,-9,18795,18792,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-990.21497,-9,3,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18795,18792,-9,-9,1,0,41,0,4,0,3,3,-9,0,4,0,0,0,23,-5,-117.23159,0,3,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52.4,50.21,7,2,3,0,1,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10501,18796,-9,18795,18792,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.0394,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,374,-6721.5142,66191.445,0,0,0,163.24608,3233.6975 +8652,10502,18797,-9,18795,18792,1,1,18,0,4,1,2,0,0,0,3,0,0,0,0,0,-903.87341,-9,3,3,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,8.333333333333334,2,3,0,0,2,8,1,0,781,0,0,0,0,0,0,444.40866 +8653,10503,18798,18799,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8956943,8.4421225,8,-1,-34.169395,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0569134,8.1829395,53.98,50.87,46.1,59.99,8.333333333333334,1,1,0,0,0,8,4,1,2703.5,1985008.5,1027317.4,489226.28,0,0,0,4338.5781 +8653,10503,18799,18798,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.4243364,7.2379336,8,1,-152.5941,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,6.5637217,7.4087873,46.1,59.99,53.98,50.87,10,1,1,0,0,0,8,4,1,2703.5,1985008.5,1027317.4,489226.28,0,0,0,4338.5781 +8654,10504,18800,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1915731,8.0047321,0,0,0,-939.25403,0,2,2,2021,17,6,42,42,1,6,0,10.833704,10.833704,0,0,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,-9,-9,5,4,2,0,0,2,8,4,0,678,-116101.67,0,0,0,0,0,1959.0027 +8654,10505,18801,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.502346,8.626646,0,0,0,-886.86298,-9,-9,-9,2021,11,0,37,0,1,2,0,14.05261,14.05261,.05,.05,0,0,0,0,0,0,0,0,0,.89574772,0,47,57,-9,-9,7,4,6,0,0,1,8,5,0,537,-11956.574,46580.883,357685.59,179635.52,0,18.692162,1279.0579 +8654,10506,18802,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.5393763,8.1899748,0,0,0,-1080.5347,-9,-9,-9,2021,11,0,37,0,1,2,0,10.410448,10.410448,.05,.05,0,0,0,0,0,0,0,0,0,.99274373,0,47,57,-9,-9,7,4,6,0,0,1,8,4,0,218,177853.89,-19338.922,0,0,28314.764,0,1089.7798 +8654,10507,18803,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,8.9861498,9.0542641,0,0,0,-997.82233,-9,-9,-9,2021,10,0,37,0,1,1,0,19.152195,19.152195,0,0,0,0,0,0,0,0,0,0,0,2.8619618,0,49,58,-9,-9,7,4,6,0,0,1,8,5,0,344,-27346.236,0,0,0,0,0,2850.4209 +8655,10508,18804,18805,18807,-9,1,0,42,0,1,0,1,1,-9,0,4,7.8877974,7.8263469,0,18,1,-42.517559,0,2,3,2021,16,2,29,29,1,2,0,10.156693,10.156693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.99,62.58,57.06,57.76,5,2,3,0,0,7,8,5,1,744,1416113.9,1088556.1,354489.53,73744.609,0,0,3757.8447 +8655,10508,18805,18804,-9,-9,1,1,41,0,1,0,1,1,-9,0,5,9.1707535,9.0913553,0,18,-1,1.4012285,0,1,1,2021,6,0,62,60,1,0,0,19.007162,19.007162,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,39.99,62.58,8.333333333333334,2,3,0,0,8,8,5,1,744,1416113.9,1088556.1,354489.53,73744.609,0,0,3757.8447 +8655,10508,18806,-9,18804,18805,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.02557,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,744,1416113.9,1088556.1,354489.53,73744.609,0,0,3757.8447 +8655,10509,18807,-9,-9,-9,1,0,56,0,1,0,3,3,-9,0,3,0,0,0,0,0,-983.62671,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,2,3,1,0,0,8,1,1,169,98592.969,0,0,0,0,0,0 +8656,10510,18808,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,7.0269775,7.082716,0,0,-910.03931,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7893219,57.06,57.76,-9,-9,10,1,1,0,0,0,6,2,1,341,490030,260548.7,112424.25,0,0,0,1005.2621 +8657,10511,18809,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.1510887,7.5770168,0,0,0,-931.6972,0,-9,-9,2021,26,9,37,38,1,9,0,8.599453,8.599453,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.67,63.54,-9,-9,3.333333333333333,1,1,0,1,9,10,4,0,469,69810.211,61639.285,0,0,0,0,1029.2566 +8657,10512,18810,-9,18809,-9,1,0,23,0,0,0,2,2,-9,0,4,7.8559213,7.8987994,0,0,0,-1016.2493,0,2,-9,2021,10,1,20,35,1,1,1,17.845312,17.845312,.05,.05,0,0,0,0,0,0,0,0,0,2.042285,0,32.65,59.14,-9,-9,8.333333333333334,1,1,0,0,1,10,3,0,602,-18005.521,32610.811,0,0,3450.2297,0,1683.4205 +8657,10513,18811,-9,18809,-9,1,0,20,0,0,0,2,2,-9,0,3,7.7022505,7.4624987,0,0,0,-962.6767,0,3,-9,2021,11,0,42,45,1,0,1,7.5120783,7.5120783,0,0,0,0,0,0,0,0,0,0,0,0,0,38.57,58.06,-9,-9,5,1,1,0,0,4,10,3,0,483,155614.94,0,0,0,0,0,1619.9979 +8658,10514,18812,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,7.91363,7.6232247,0,0,0,-1025.2318,0,2,2,2021,12,1,40,0,1,1,0,7.3507361,7.3507361,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.65,54.59,-9,-9,3.333333333333333,1,1,0,1,10,2,3,1,520,-28881.178,309.56351,0,0,1024.6133,2638.2825,896.53363 +8659,10515,18813,18814,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.8789577,8.6758661,0,22,-1,-57.57238,0,-9,-9,2021,8,0,54,55,1,0,0,15.793271,15.793271,.05,.05,0,0,0,0,0,0,1,1,0,6.4231319,0,47.38,57.75,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8659,10515,18814,18813,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.6662621,7.7559409,0,22,1,39.822487,0,2,2,2021,8,0,40,44,1,0,0,6.7842822,6.7842822,.05,.05,0,0,0,0,0,0,1,1,0,6.9636655,0,57.16,56.15,47.38,57.75,8.333333333333334,1,1,0,0,13,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8659,10515,18815,-9,18813,18814,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1134.6827,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8659,10515,18816,-9,18813,18814,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.16571,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,0,433.25,510370.03,271695.97,304063.88,77706.57,3203.1855,989.52002,4437.0845 +8660,10516,18817,-9,18818,18820,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-998.03357,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18818,18820,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,0,0,0,10,-10,-99.359726,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,54.96,53.17,7,2,3,0,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18819,-9,18818,18820,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1119.1472,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18820,18818,-9,-9,1,1,46,1,4,0,2,2,-9,0,3,7.287724,7.5650907,0,10,10,-36.411259,0,-9,-9,2021,6,0,30,24,1,0,0,4.8097868,4.8097868,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,48,56,5,2,3,0,1,6,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18821,-9,18818,18820,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1124.6073,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8660,10516,18822,-9,18818,18820,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-912.77032,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,2,0,856.33331,-93741.18,0,0,0,0,0,3704.0022 +8661,10517,18823,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,3.7188513,3.6756294,0,0,-995.33759,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,3.0610662,3.3151295,19.12269,0,1,1,0,4.2650461,4.3694243,51,46,-9,-9,8,1,1,0,0,0,4,2,0,138,259786.33,0,168684.31,0,0,0,1369.1133 +8662,10518,18824,-9,18825,18826,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.4987,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8662,10518,18825,18826,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.2921867,8.3915014,0,20,2,91.52536,0,2,2,2021,7,0,25,30,1,0,0,20.003042,20.003042,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.16,55.59,5,2,3,0,0,11,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8662,10518,18826,18825,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.3981991,9.268446,0,20,-2,80.256439,0,2,2,2021,10,0,35,35,1,0,0,30.372938,30.372938,.05,.05,0,0,0,0,0,0,1,1,0,7.2576404,0,49.16,55.59,57.33,53.46,8.333333333333334,2,3,0,0,15,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8662,10518,18827,-9,18825,18826,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.08936,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.80105728,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,851.75,787225.38,251905.13,592215.19,93221.484,0,0,6229.1387 +8663,10519,18828,18829,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,51,1,2.9278891,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,12.378907,0,0,1,1,0,1.2513987,0,55.52,35.3,41.88,25.43,8.333333333333334,1,1,0,0,6,4,2,1,930.5,689818.5,175616.42,223295.41,0,0,0,1531.7635 +8663,10519,18829,18828,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,6.2369146,6.31003,51,-1,17.76296,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,7.1595192,0,120,1,1,0,1.3587824,6.2220583,41.88,25.43,55.52,35.3,10,1,1,0,0,0,4,2,1,930.5,689818.5,175616.42,223295.41,0,0,0,1531.7635 +8664,10520,18830,18831,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,3.9232898,3.8705652,45,-3,-41.594429,0,3,3,2021,23,10,0,22,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9109476,4.2092218,31.63,37.11,57.33,53.46,1.666666666666667,1,1,0,0,10,6,2,1,279.5,432396.69,102345.88,118807.53,0,798.07983,0,1530.3088 +8664,10520,18831,18830,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,6.3897719,6.1631937,45,3,32.982273,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6163187,6.4514647,57.33,53.46,31.63,37.11,8.333333333333334,1,1,0,0,6,6,2,1,279.5,432396.69,102345.88,118807.53,0,798.07983,0,1530.3088 +8665,10521,18832,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.8210397,8.357667,6.9566593,0,0,-1096.5177,0,3,2,2021,10,0,24,39,1,0,0,11.789343,11.789343,0,0,0,0,0,0,0,2,1,1,0,7.3246136,5.3820395,58.15,52.91,-9,-9,5,1,1,0,0,10,9,4,1,295,224456.69,0,0,0,0,0,1497.6954 +8666,10522,18833,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1057.3086,0,3,-9,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,23.98,27.24,-9,-9,0,1,1,1,1,0,2,1,1,281,55646.68,0,0,0,0,0,1331.7205 +8667,10523,18834,18835,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.2028327,6.4527426,51,-1,-28.812546,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1463099,6.4231648,60.05,42.65,57.06,57.76,6.666666666666667,1,1,0,0,0,9,4,1,388.5,1865457.8,1001926.9,671693.63,0,2364.4478,0,3907.4883 +8667,10523,18835,18834,-9,-9,1,1,71,0,0,0,2,2,-9,0,5,0,8.2710381,8.2922697,51,1,84.804825,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9961863,8.0399132,57.06,57.76,60.05,42.65,10,1,1,0,0,4,9,4,1,388.5,1865457.8,1001926.9,671693.63,0,2364.4478,0,3907.4883 +8668,10524,18836,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1037.4775,0,2,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,23.34,-9,-9,1.666666666666667,3,4,0,1,0,8,1,0,1041,0,0,0,0,0,0,1981.8795 +8668,10525,18837,-9,18836,-9,1,1,28,0,0,0,2,2,-9,0,4,7.0419993,6.7885499,0,0,0,-1107.4227,0,2,2,2021,10,1,16,0,1,1,1,6.8863544,6.8863544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,1.666666666666667,3,4,0,0,5,8,2,0,645,60782.699,-10944.03,0,0,0,0,714.17999 +8669,10526,18838,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.2794685,8.1249285,0,0,0,-994.07318,0,2,3,2021,6,0,50,50,1,0,0,8.8249922,8.8249922,0,0,0,0,0,0,0,7,0,0,0,6.4893165,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,203,1456.2019,-3815.103,62852.652,136074.55,3210.1204,0,1543.1378 +8670,10527,18839,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,6.4936838,6.5043125,0,0,-1031.4148,0,2,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.0801005,38.4,35.36,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,1926,0,0,0,0,0,0,905.38824 +8670,10528,18840,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,6.6223917,6.4033217,0,0,-1026.5393,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6022804,6.5605259,55,45,-9,-9,8,4,6,0,0,0,6,2,0,559,170702.02,255263.41,0,0,0,0,1163.7262 +8671,10529,18841,-9,18844,18845,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.00134,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18842,-9,18844,18845,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.25806,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18843,-9,18844,18845,1,0,17,0,2,0,2,2,1,0,2,0,0,0,0,0,-1028.9672,-9,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.45,50.26,-9,-9,3.333333333333333,1,1,0,0,1,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18844,18845,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,0,0,0,6,-3,-74.837326,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50.18,52.62,52.23,55.6,5,1,1,0,0,0,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10529,18845,18844,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,9.7189093,9.7230196,0,6,3,-18.974014,0,2,2,2021,9,0,43,40,1,0,0,37.178417,37.178417,.05,.05,0,0,0,0,0,0,0,0,0,4.221714,0,52.23,55.6,50.18,52.62,8.333333333333334,1,1,0,0,9,9,5,1,452.60001,1314577.8,872640.5,400848.69,5420.8516,0,0,4682.2681 +8671,10530,18846,-9,18844,18845,1,0,19,0,2,0,2,2,-9,0,3,6.97716,7.0267167,0,0,0,-1094.3824,0,2,2,2021,16,4,12,22,1,4,1,10.374135,10.374135,0,0,0,0,0,0,0,0,0,0,0,0,0,40.94,58.35,-9,-9,5,1,1,0,0,5,9,2,1,1056,-318021.06,0,0,0,0,0,752.30682 +8672,10531,18847,18849,-9,-9,1,1,27,1,1,0,2,2,-9,0,4,8.1246204,8.3117085,0,3,3,-23.870905,0,-9,-9,2021,10,0,47,39,1,0,0,9.5935221,9.5935221,0,0,0,0,0,0,0,0,1,1,0,.16017357,0,47.01,58,54.79,55.86,8.333333333333334,1,1,0,0,10,4,4,0,612,-106398.86,0,0,0,0,0,2094.8284 +8672,10531,18848,-9,18849,18847,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1681,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,0,612,-106398.86,0,0,0,0,0,2094.8284 +8672,10531,18849,18847,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,7.1590986,7.4541759,0,3,-3,132.25452,0,2,2,2021,7,0,30,30,1,0,0,5.0553684,5.0553684,0,0,0,0,0,0,0,0,1,1,0,4.4885044,0,54.79,55.86,47.01,58,8.333333333333334,1,1,0,0,8,4,4,0,612,-106398.86,0,0,0,0,0,2094.8284 +8673,10532,18850,-9,-9,-9,1,0,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1023.5159,0,-9,-9,2021,10,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.44,58.7,-9,-9,3.333333333333333,1,1,1,0,5,1,1,0,507,-249692.56,0,0,0,0,0,651.11316 +8673,10533,18851,-9,18850,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1027.6587,-9,3,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,810,327174.22,0,0,0,0,0,0 +8674,10534,18852,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,6.2658343,6.4773111,0,0,0,-876.75903,0,3,2,2021,21,7,16,16,1,7,0,4.0681033,4.0681033,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.02,64.34,-9,-9,1.666666666666667,1,1,0,1,6,2,2,0,171,-177745.48,-14626.416,209601.97,103957.81,0,0,1199.5237 +8674,10535,18853,-9,18852,-9,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1118.5538,-9,1,-9,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.26,58.67,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,280,17165.82,0,0,0,0,0,0 +8675,10536,18854,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.5960393,7.4600215,0,0,0,-1097.1136,0,3,2,2021,17,5,35,36,1,5,0,7.1676974,7.1676974,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.59,45.67,-9,-9,3.333333333333333,1,1,0,1,10,11,3,1,681,24223.352,69395.781,88270.563,25685.021,0,0,1210.4745 +8675,10537,18855,-9,18854,-9,1,1,32,0,0,0,2,2,-9,0,4,7.7842698,7.8152409,0,0,0,-859.03198,0,2,2,2021,6,0,35,55,1,0,1,7.5048013,7.5048013,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,734,54948.582,-21839.223,0,0,0,0,129.94905 +8676,10538,18856,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.7740049,7.6902823,0,0,0,-887.4436,0,3,3,2021,18,5,36,35,1,5,0,7.9906783,7.9906783,.05,.05,0,0,0,0,0,0,0,0,0,6.1603608,0,34.51,47.72,-9,-9,3.333333333333333,2,3,0,0,9,5,3,1,926,255754.14,122488.2,0,0,0,0,1248.8206 +8676,10539,18857,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.447845,7.6014237,0,0,0,-1004.7838,0,2,2,2021,8,2,38,38,1,2,0,7.1069703,7.1069703,0,0,.05,0,0,0,0,0,0,0,0,0,0,39.22,32.94,-9,-9,1.666666666666667,2,3,0,0,9,5,3,1,797,308716.47,65318.68,0,0,0,0,821.00677 +8677,10540,18858,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1028337,8.0692701,0,0,0,-1007.6426,0,-9,-9,2021,9,0,37,37,1,0,0,10.741846,10.741846,.05,.05,0,0,0,0,0,2,1,1,0,4.2415261,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,11,6,4,1,196,969369.94,845949.5,206623.92,0,-523.24377,2403.2454,2270.1069 +8678,10541,18859,18860,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,50,0,36.334354,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1748095,0,53.14,45.74,58.02,44.82,8.333333333333334,1,1,0,0,0,6,3,1,1000.5,1497139.5,499170.69,250079.47,0,0,0,2722.2532 +8678,10541,18860,18859,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.7615557,7.6049089,51,0,102.23732,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.4794331,7.940793,58.02,44.82,53.14,45.74,8.333333333333334,1,1,0,0,0,6,3,1,1000.5,1497139.5,499170.69,250079.47,0,0,0,2722.2532 +8679,10542,18861,18862,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.4579325,8.5916233,0,10,1,-45.033169,0,2,2,2021,11,0,55,50,1,0,0,12.122108,12.122108,0,0,0,0,0,0,0,0,0,0,0,0,0,47.64,50.3,39.93,57.19,6.666666666666667,1,1,0,0,12,7,5,1,1194.5,613109.13,301461.56,193575.13,0,0,0,3955.6333 +8679,10542,18862,18861,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.9734035,8.1730309,0,10,-1,-77.241318,0,2,2,2021,10,0,37,37,1,0,0,10.142418,10.142418,0,0,0,0,0,0,0,0,0,0,0,0,0,39.93,57.19,47.64,50.3,6.666666666666667,1,1,0,0,11,7,5,1,1194.5,613109.13,301461.56,193575.13,0,0,0,3955.6333 +8679,10543,18863,-9,18862,18861,1,0,28,0,0,0,1,1,-9,0,2,0,0,0,0,0,-993.2583,1,2,3,2021,12,1,0,38,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.3,48.12,-9,-9,6.666666666666667,1,1,0,1,7,7,1,1,277,-83874.016,15911.406,0,0,0,0,0 +8680,10544,18864,18865,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,12,-4,-63.766674,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.72,51.08,50.25,51.37,8.333333333333334,1,1,0,1,0,9,2,1,450,674453.13,322763.81,441371.38,0,586.20251,0,1938.8208 +8680,10544,18865,18864,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.2473831,7.281539,47,4,-140.78571,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4621758,7.3237672,50.25,51.37,41.72,51.08,5,1,1,0,1,3,9,2,1,450,674453.13,322763.81,441371.38,0,586.20251,0,1938.8208 +8681,10545,18866,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.8117743,8.8742924,0,0,0,-882.90833,0,2,1,2021,9,0,45,42,1,0,0,17.087847,17.087847,0,0,0,0,0,0,0,0,0,0,0,4.431581,0,57.16,56.15,-9,-9,6.666666666666667,4,5,0,0,6,8,5,0,487,-168.87131,0,0,0,22304.826,0,3455.0928 +8682,10546,18867,18868,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,0,0,45,4,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,59,54,57.16,56.15,10,1,1,0,0,0,4,1,1,432.5,75039.195,0,0,0,0,0,1071.9568 +8682,10546,18868,18867,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,45,-4,0,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,59,54,1.666666666666667,1,1,0,0,3,4,1,1,432.5,75039.195,0,0,0,0,0,1071.9568 +8683,10547,18869,-9,-9,-9,1,0,23,0,2,0,1,1,-9,0,4,7.8193946,7.7643633,0,0,0,-956.85938,-9,3,2,2021,11,0,37,0,1,0,1,9.7170439,9.7170439,.05,.05,0,0,0,0,0,0,1,1,0,4.8983941,0,45.91,59.89,-9,-9,6.666666666666667,2,3,0,0,2,6,3,0,406,-134205.17,-53122.895,0,0,5332.0864,0,2015.1846 +8684,10548,18870,18872,-9,-9,1,1,52,1,1,0,3,3,-9,0,4,7.1772628,7.3392396,0,24,10,-39.30732,0,-9,-9,2021,9,0,24,25,1,1,0,9.7522659,9.7522659,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,49,55,8,2,3,0,0,1,6,2,1,323.66666,457383.41,444920.25,100527.6,94842.016,4448.7246,0,1470.0596 +8684,10548,18871,-9,18872,18870,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.20325,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,2,1,323.66666,457383.41,444920.25,100527.6,94842.016,4448.7246,0,1470.0596 +8684,10548,18872,18870,-9,-9,1,0,42,1,1,0,2,2,-9,0,4,0,0,0,5,-10,-9.9438381,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,53,54,8,2,3,0,0,0,6,2,1,323.66666,457383.41,444920.25,100527.6,94842.016,4448.7246,0,1470.0596 +8684,10549,18873,-9,18872,18870,1,1,23,1,1,1,2,0,-9,0,4,0,0,0,0,0,-923.03162,-9,2,3,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,6,6,1,1,566,-194072.58,0,0,0,0,0,383.39035 +8684,10550,18874,-9,18872,18870,1,0,22,1,1,0,2,2,-9,0,4,0,0,0,0,0,-936.10626,-9,2,3,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,1,0,0,6,1,1,887,0,0,0,0,0,0,0 +8684,10551,18875,-9,18872,18870,1,1,18,1,1,1,2,0,0,0,4,0,0,0,0,0,-1273.3435,-9,2,3,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,6,1,1,185,-170784.45,0,0,0,0,0,0 +8685,10552,18876,-9,18877,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.6497,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,9,3,0,850.33331,56645.066,0,0,0,0,0,2281.7361 +8685,10552,18877,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,8.4721928,8.4795637,0,0,0,-1010.3066,0,3,2,2021,25,12,37,40,1,12,0,13.58956,13.58956,0,0,0,0,0,0,0,0,1,1,0,0,0,19.77,66.82000000000001,-9,-9,1.666666666666667,4,2,0,0,8,9,3,0,850.33331,56645.066,0,0,0,0,0,2281.7361 +8685,10552,18878,-9,18877,-9,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1024.9637,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,0,0,0,9,3,0,850.33331,56645.066,0,0,0,0,0,2281.7361 +8686,10553,18879,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.0405083,8.1674747,0,0,0,-912.46619,0,3,3,2021,11,0,40,42,1,0,0,9.9490585,9.9490585,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,2,3,0,0,7,6,4,1,1331,7055.8057,40847.453,0,0,0,0,36.793831 +8687,10554,18880,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.6510301,7.5453329,0,0,0,-905.35022,0,2,-9,2021,13,1,45,45,1,1,0,5.0970106,5.0970106,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,53.95,-9,-9,5,1,1,0,1,14,12,3,1,1046,211117.98,0,73424.391,0,0,0,1019.2695 +8687,10555,18881,-9,18880,-9,1,0,20,0,0,0,2,2,-9,0,3,6.4998136,6.191772,0,0,0,-1178.537,0,2,-9,2021,8,0,20,0,1,0,1,3.2290826,3.2290826,0,0,0,0,0,0,0,0,0,0,0,0,0,42.83,53.59,-9,-9,5,1,1,0,0,2,12,2,1,1545,65753.117,0,0,0,0,0,571.3913 +8688,10556,18882,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,2,7.7834382,7.8412938,0,0,0,-966.96686,0,3,3,2021,9,0,38,38,1,0,0,7.7865376,7.7865376,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.76,36.38,-9,-9,6.666666666666667,1,1,0,1,6,2,4,0,161,40720.086,-48102.059,0,0,0,-39.472187,1273.91 +8689,10557,18883,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.830914,7.539083,0,0,0,-1006.3427,0,-9,-9,2021,12,0,56,56,1,0,0,3.5927186,3.5927186,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.79,59.6,-9,-9,5,1,1,0,0,9,7,3,0,1587,-268140.66,-26287.717,0,0,0,0,1234.4653 +8690,10558,18884,18885,-9,-9,1,0,83,0,0,0,3,3,-9,0,4,0,5.2655182,5.3403835,64,-1,49.58292,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,5.1920047,60.45,43.72,53.05,39.99,8.333333333333334,1,1,0,0,0,6,2,1,281.5,81807.727,68518.758,218242,0,0,0,1113.7076 +8690,10558,18885,18884,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,6,1,-27.11219,0,-9,-9,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,0,14.108861,0,0,1,1,0,0,0,53.05,39.99,60.45,43.72,8.333333333333334,1,1,0,0,0,6,2,1,281.5,81807.727,68518.758,218242,0,0,0,1113.7076 +8691,10559,18886,18887,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.0559549,4.3988485,47,-4,68.287392,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.044755,4.296958,40.36,44.84,54.2,49.26,6.666666666666667,1,1,0,0,8,5,2,1,1139.5,775323.13,542406.06,232801.09,9348.7324,4327.8066,0,1639.6699 +8691,10559,18887,18886,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,6.9684982,7.0615911,47,4,-48.023766,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9440365,6.6126475,54.2,49.26,40.36,44.84,8.333333333333334,1,1,0,0,9,5,2,1,1139.5,775323.13,542406.06,232801.09,9348.7324,4327.8066,0,1639.6699 +8692,10560,18888,18890,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.7910385,8.4590597,0,8,-5,-21.016027,0,2,2,2021,11,0,47,50,1,0,0,14.233898,14.233898,.05,.05,0,0,0,0,0,0,1,1,0,.043866444,0,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,10,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8692,10560,18889,-9,18888,18890,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1228.5603,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8692,10560,18890,18888,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.6008081,8.8335924,0,8,5,82.961327,0,-9,-9,2021,9,0,36,36,1,0,0,17.98921,17.98921,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.79,55.86,8.333333333333334,1,1,0,0,10,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8692,10560,18891,-9,18888,18890,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.12317,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,1034,352789.78,175575.91,231205.22,133746.77,3122.2439,0,3890.823 +8693,10561,18892,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,0,0,0,0,-975.89264,0,-9,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,27.568514,0,237.9279,0,1,1,0,0,0,37.85,49.05,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,136,-79434.602,0,0,0,0,0,480.11826 +8694,10562,18893,-9,18896,18895,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.3185,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8694,10562,18894,-9,18896,18895,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1151.811,-9,2,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8694,10562,18895,18896,-9,-9,1,1,50,0,1,0,3,3,-9,0,4,7.84512,7.2639322,0,7,0,-36.252209,-9,-9,-9,2021,10,0,60,0,1,0,0,3.6326566,3.6326566,.05,.05,0,0,0,0,0,2,0,0,0,2.5454788,0,55.19,54.26,55.21,45.89,8.333333333333334,1,1,0,0,9,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8694,10562,18896,18895,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.5922828,7.8387637,0,7,0,98.504387,0,-9,3,2021,9,0,28,28,1,0,0,8.5724154,8.5724154,0,0,0,0,0,0,0,7,0,0,0,0,0,55.21,45.89,55.19,54.26,8.333333333333334,1,1,0,0,9,1,3,1,729,339385.88,252002.75,199732.05,9952.6465,656.91833,0,2267.0386 +8695,10563,18897,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,9.1964989,9.7636175,0,0,0,-879.12494,0,1,2,2021,3,0,40,40,1,0,0,26.47015,26.47015,.05,.05,0,0,0,0,0,0,0,0,0,1.8465679,0,54.1,59.11,-9,-9,10,1,1,0,0,7,8,5,0,457,80156.805,-47225.414,0,0,0,0,2699.7498 +8696,10564,18898,-9,-9,-9,1,1,29,0,0,1,1,0,0,0,3,0,0,0,0,0,-909.52478,-9,1,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4827843,0,47.4,55.39,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,652,35469.977,0,0,0,0,0,1149.9369 +8697,10565,18899,-9,-9,-9,1,0,44,0,0,0,3,3,-9,0,3,7.7808867,7.8878136,0,0,0,-970.68372,0,-9,-9,2021,11,0,36,26,1,0,0,6.7744684,6.7744684,.05,.05,0,0,0,0,0,7,0,0,0,0,0,40.75,58.26,-9,-9,5,1,1,0,0,6,6,3,0,149,-18873.9,60300.699,0,0,-250.07274,0,795.99969 +8698,10566,18900,18901,-9,-9,1,1,33,1,1,0,1,1,-9,0,4,8.434742,8.5439034,0,7,1,-83.957298,0,2,3,2021,10,0,38,35,1,1,0,13.85393,13.85393,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,60.02,56.42,7,2,3,0,0,1,4,3,1,1050,23439.385,153395.17,144538.84,95977.961,5487.5693,0,2196.4609 +8698,10566,18901,18900,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,6.5362844,6.731761,0,7,-1,-68.609665,0,2,2,2021,4,0,8,43,1,0,0,8.4715929,8.4715929,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,50,57,8.333333333333334,2,3,0,0,6,4,3,1,1050,23439.385,153395.17,144538.84,95977.961,5487.5693,0,2196.4609 +8698,10566,18902,-9,18901,18900,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.5465,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,1050,23439.385,153395.17,144538.84,95977.961,5487.5693,0,2196.4609 +8699,10567,18903,18904,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.788991,8.6194096,0,5,-4,12.428879,0,-9,-9,2021,11,0,85,57,1,0,0,6.1458406,6.1458406,0,0,0,0,0,0,0,0,0,0,0,3.1959283,0,59.15,49.67,55.77,42.25,8.333333333333334,1,1,0,0,9,12,5,1,857,209243.91,116340.16,311786.88,110574.66,0,0,7864.6221 +8699,10567,18904,18903,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,9.8206224,9.4357815,0,5,4,80.497063,0,3,3,2021,10,0,45,45,1,0,0,45.583813,45.583813,0,0,0,0,0,0,0,0,0,0,0,2.8893199,0,55.77,42.25,59.15,49.67,6.666666666666667,1,1,0,0,7,12,5,1,857,209243.91,116340.16,311786.88,110574.66,0,0,7864.6221 +8700,10568,18905,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,5.8659344,5.6081643,0,0,-1023.5645,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,5.6420221,46.64,47.43,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,452,462558.38,8371.7695,203038.84,0,0,1068.1434,875.18878 +8701,10569,18906,-9,18910,18908,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-977.37897,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18907,-9,18910,18908,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1116.9908,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18908,18910,-9,-9,1,1,41,1,4,0,1,1,-9,0,3,8.8808975,8.50632,0,1,1,-111.44904,-9,-9,-9,2021,10,0,47,0,1,0,0,14.495004,14.495004,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,40.66,52.94,8.333333333333334,1,1,0,0,10,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18909,-9,18910,18908,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-898.91577,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18910,18908,-9,-9,1,0,40,1,4,0,1,1,-9,0,3,7.8346839,7.9492116,0,1,-1,-159.86185,-9,2,3,2021,12,0,25,0,1,2,0,12.226432,12.226432,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.66,52.94,44.7,53.68,3.333333333333333,1,1,0,0,10,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8701,10569,18911,-9,18910,18908,1,1,11,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1046.163,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,823,422747.31,365013.31,212632.66,114983.8,3616.1948,6959.4219,3422.3447 +8702,10570,18912,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1010.6921,0,3,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.14,47.56,-9,-9,3.333333333333333,1,1,1,0,2,4,1,0,776,78551.891,248515.83,129601.25,87392.961,0,0,2042.3862 +8702,10571,18913,-9,18912,-9,1,1,27,0,0,0,3,3,-9,0,4,0,0,0,0,0,-889.52332,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,58,-9,-9,7,1,1,1,1,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8702,10571,18914,-9,-9,18913,1,1,11,0,0,1,3,0,-9,0,3,0,0,0,0,0,-960.58673,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8702,10571,18915,-9,-9,18913,1,0,12,0,0,1,3,0,-9,0,4,0,0,0,0,0,-940.54462,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8702,10571,18916,-9,-9,18913,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-952.58221,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,1,0,747.75,114733.79,0,0,0,0,0,610.76416 +8703,10572,18917,-9,18920,18919,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.90497,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8703,10572,18918,-9,18920,18919,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-987.71033,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8703,10572,18919,18920,-9,-9,1,1,30,1,2,0,1,1,-9,0,3,9.1637249,9.1416969,0,6,-8,-175.13675,0,1,1,2021,11,0,44,42,1,0,0,26.288815,26.288815,.05,.05,0,0,0,0,0,0,1,1,0,4.2549968,0,51.41,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8703,10572,18920,18919,-9,-9,1,0,38,1,2,0,2,2,-9,0,3,7.1325026,7.4850116,0,6,8,-39.597599,0,-9,-9,2021,6,0,16,21,1,0,0,8.6721287,8.6721287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.41,56.15,10,1,1,0,0,9,7,5,1,794.5,567987.63,56185.977,452809.81,259146.19,0,2808.8967,3323.4717 +8704,10573,18921,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.4961352,6.7140684,0,0,-993.53992,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8329011,6.8278627,62.49,55.09,-9,-9,8.333333333333334,3,4,0,0,9,8,2,1,152,422536.63,52919.07,331714.16,0,0,0,701.8623 +8705,10574,18922,18923,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,7.068047,7.533196,0,32,-3,112.54689,0,3,3,2021,14,3,17,15,1,3,0,11.754622,11.754622,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.39,32.12,36.09,34.95,5,1,1,0,0,12,11,4,1,871,-44736.336,-15621.113,31250.502,33922.117,8846.1563,0,2466.1868 +8705,10574,18923,18922,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.102354,8.4335747,0,32,3,42.348835,0,2,2,2021,20,8,80,58,1,8,0,6.6107802,6.6107802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.09,34.95,39.39,32.12,3.333333333333333,1,1,0,0,11,11,4,1,871,-44736.336,-15621.113,31250.502,33922.117,8846.1563,0,2466.1868 +8706,10575,18924,18925,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,9.3528385,9.1071339,0,25,5,.67446071,-9,-9,-9,2021,8,0,47,0,1,0,0,16.85214,16.85214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.53,36.87,58.32,50.22,10,1,1,0,0,15,6,5,1,390.5,2111366.8,1597538.9,480400.38,16271.714,0,0,4242.9336 +8706,10575,18925,18924,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.0969954,7.9757161,0,25,-5,14.428208,-9,2,3,2021,7,0,42,0,1,0,0,8.4247379,8.4247379,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,61.53,36.87,3.333333333333333,1,1,0,0,15,6,5,1,390.5,2111366.8,1597538.9,480400.38,16271.714,0,0,4242.9336 +8706,10576,18926,-9,18925,18924,1,0,25,0,0,0,2,2,-9,0,3,7.7767262,7.8040729,0,0,0,-982.63214,0,2,2,2021,9,0,37,38,1,0,1,9.4754295,9.4754295,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.32,54.77,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,224,-42448.414,58487.086,0,0,-1329.9427,0,380.57776 +8707,10577,18927,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.1011868,7.9604893,0,0,0,-1059.8176,0,2,2,2021,13,2,55,50,1,2,0,6.1563673,6.1563673,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.67,59.9,-9,-9,6.666666666666667,1,1,0,0,12,10,4,0,300,348020.47,137556.19,230662.91,26408.115,0,2671.8015,1368.8281 +8708,10578,18928,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.0643196,8.092948,0,0,-1038.8831,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7076352,8.1442261,59.13,34.1,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,572,1479387.4,898406.13,321565.22,0,2338.2437,0,3007.4719 +8709,10579,18929,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,2.0946715,2.4938123,0,0,-935.56171,-9,3,2,2021,30,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,2.3588862,33.64,18.89,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,851,41960.145,-85401.742,139779.38,0,0,0,318.17163 +8710,10580,18930,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.4211397,7.5479493,0,0,-1175.4805,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2200217,7.4793706,46.99,55.66,-9,-9,10,1,1,0,0,0,11,3,1,2481,751968.38,308649.56,374924.5,0,0,0,2649.6294 +8711,10581,18931,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,0,4.2829199,4.4493375,0,0,-1055.6523,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.2128954,0,33.87,54.68,-9,-9,3.333333333333333,1,1,1,0,3,7,2,0,530,-54883.23,0,0,0,0,0,50.354053 +8712,10582,18932,18934,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.182972,8.0357895,0,6,4,-71.837563,0,-9,-9,2021,8,0,39,37,1,0,0,12.572516,12.572516,0,0,0,0,0,0,0,0,1,1,0,.79317546,0,54.2,57.49,52,56,8.333333333333334,1,1,0,0,7,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8712,10582,18933,-9,18932,18934,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.11987,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8712,10582,18934,18932,-9,-9,1,1,43,0,2,0,3,3,-9,0,4,8.3965569,8.5607243,0,6,-4,35.774506,0,-9,-9,2021,9,0,40,40,1,1,0,13.437985,13.437985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,54.2,57.49,8,1,1,0,0,1,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8712,10582,18935,-9,18932,18934,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.06079,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,376.25,944414,654699,269089.59,0,1464.4336,0,3110.3616 +8713,10583,18936,18937,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.285718,5.2943163,10,-5,58.503639,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2250955,5.1762772,45.91,59.89,41.87,44.37,6.666666666666667,1,1,0,0,1,7,2,1,427,271464.91,124392.2,223435.59,0,0,0,1609 +8713,10583,18937,18936,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.1912818,6.4896369,10,5,47.723133,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6486158,6.354856,41.87,44.37,45.91,59.89,5,1,1,0,0,0,7,2,1,427,271464.91,124392.2,223435.59,0,0,0,1609 +8714,10584,18938,18939,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.1568727,8.2788086,0,36,1,-119.09336,0,3,2,2021,13,1,45,45,1,1,0,9.1186905,9.1186905,.05,.05,0,0,0,0,0,27,0,0,0,0,0,42.46,41.62,52.88,43.27,5,1,1,0,0,13,5,4,1,454.5,484160.75,58619.699,225869.91,8866.5645,0,1276.3785,2261.4495 +8714,10584,18939,18938,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.3095889,7.0910082,0,36,-1,9.3770761,0,3,-9,2021,11,0,20,20,1,0,0,6.5573549,6.5573549,0,0,0,0,0,0,0,74.5,0,0,0,0,0,52.88,43.27,42.46,41.62,6.666666666666667,1,1,0,0,13,5,4,1,454.5,484160.75,58619.699,225869.91,8866.5645,0,1276.3785,2261.4495 +8715,10585,18940,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,0,0,0,0,0,-944.16315,0,2,2,2021,10,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.7148511,0,53.37,52.37,-9,-9,6.666666666666667,3,4,1,0,10,8,1,1,259,-207205.64,77336.57,0,0,0,0,276.56238 +8716,10586,18941,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.1490173,7.9779234,0,0,0,-808.2384,0,3,3,2021,8,0,40,40,1,0,0,7.8887882,7.8887882,.05,.05,0,0,0,0,0,0,1,1,0,5.8116078,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,5,7,4,1,418,27782.973,-8659.5996,0,0,0,0,931.60059 +8717,10587,18942,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.827137,7.9209414,0,0,0,-1163.5304,0,2,2,2021,7,2,18,17,1,2,0,15.804481,15.804481,.05,.05,0,0,0,0,0,0,0,0,0,2.5695312,0,54.85,28.19,-9,-9,5,1,1,0,0,11,8,3,1,1791,-35952.629,-62890.848,0,0,0,0,1285.384 +8718,10588,18943,18944,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.1814184,6.1949263,49,1,-26.999533,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9662294,6.1668701,57.16,56.15,57.16,56.15,10,1,1,0,0,5,5,2,1,851.5,99950.242,151703.27,0,0,0,0,1757.8525 +8718,10588,18944,18943,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,49,-1,-43.53669,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.944555,0,57.16,56.15,57.16,56.15,10,1,1,0,0,6,5,2,1,851.5,99950.242,151703.27,0,0,0,0,1757.8525 +8719,10589,18945,18946,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.2649913,6.0750952,44,-2,13.207219,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.8279102,6.2234216,45.32,54.77,58.17,39.35,8.333333333333334,1,1,0,0,6,5,3,1,1326,768886.81,766079.06,131531.78,0,0,0,3512.0083 +8719,10589,18946,18945,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.1680746,7.7635016,44,2,-33.115906,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4790268,7.9402728,58.17,39.35,45.32,54.77,8.333333333333334,1,1,0,0,0,5,3,1,1326,768886.81,766079.06,131531.78,0,0,0,3512.0083 +8720,10590,18947,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-944.35632,0,-9,-9,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,21.01,28.39,-9,-9,1.666666666666667,2,3,0,1,0,2,1,0,793,-10757.299,-76125.266,0,0,1699.6036,0,392.79874 +8720,10591,18948,-9,18947,-9,1,0,26,0,0,0,1,1,-9,0,5,7.6249032,7.452457,0,0,0,-1021.4578,0,2,-9,2021,10,0,44,44,1,0,1,5.3455987,5.3455987,.05,.05,0,0,0,0,0,0,1,0,1,0,0,66.67,38.34,-9,-9,6.666666666666667,2,3,0,0,4,2,3,0,518,-179557.48,103396.25,0,0,41288.617,0,535.00519 +8720,10592,18949,-9,18947,-9,1,0,25,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1094.5726,0,3,-9,2021,16,0,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,43,-9,-9,5,2,3,1,0,0,2,1,0,927,77974.578,0,0,0,0,0,1383.9102 +8720,10593,18950,-9,18947,-9,1,1,24,0,0,0,1,1,-9,0,4,0,0,0,0,0,-905.56476,1,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,0,2,1,0,2101,-116539.6,0,0,0,0,0,0 +8720,10594,18951,-9,18947,-9,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1035.4044,-9,3,-9,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.9,56.09,-9,-9,6.666666666666667,2,3,0,0,0,2,1,0,1653,0,0,0,0,0,0,719.72845 +8720,10595,18952,-9,18947,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-869.12347,-9,3,-9,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.38,57.1,-9,-9,8.333333333333334,2,3,0,0,0,2,1,0,891,165809.39,0,0,0,0,0,0 +8721,10596,18953,18954,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.452302,8.3086166,9,3,111.15599,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.1088486,59.46,46.99,58.15,52.91,6.666666666666667,1,1,0,0,9,9,3,1,324,1294435.3,818164.63,312554,0,0,0,2742.5537 +8721,10596,18954,18953,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,9,-3,22.851059,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.0889015,0,58.15,52.91,59.46,46.99,6.666666666666667,1,1,0,0,4,9,3,1,324,1294435.3,818164.63,312554,0,0,0,2742.5537 +8722,10597,18955,18956,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.3101025,8.9423075,0,6,-1,-78.89827,0,3,3,2021,9,0,45,39,1,1,0,10.384808,10.384808,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54,54,52,53,8,1,1,0,0,6,12,4,1,587.5,653527.38,345012.75,370212.78,93601.125,3914.3447,0,2905.7747 +8722,10597,18956,18955,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.5195293,7.8267612,0,36,1,65.770248,0,3,3,2021,10,0,39,41,1,1,0,5.7749524,5.7749524,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,54,54,8,1,1,0,0,8,12,4,1,587.5,653527.38,345012.75,370212.78,93601.125,3914.3447,0,2905.7747 +8723,10598,18957,18958,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,5.4076505,5.4427185,34,5,-82.583466,0,2,1,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0682211,59.14,52.5,66.34,49.42,10,1,1,0,0,0,4,2,1,2466,194845.92,45042.719,203577.91,0,0,0,1274.6674 +8723,10598,18958,18957,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,33,-5,-111.8831,0,3,3,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.34,49.42,59.14,52.5,10,2,3,0,0,5,4,2,1,2466,194845.92,45042.719,203577.91,0,0,0,1274.6674 +8724,10599,18959,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1089.9551,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,73.200676,0,0,1,1,0,0,0,33.56,17.19,-9,-9,5,1,1,0,0,0,4,1,0,1008,55772.43,0,0,0,0,0,2099.5989 +8725,10600,18960,18961,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.080822,8.7459183,7.8236794,27,1,-84.592567,0,3,3,2021,13,2,35,38,1,2,0,13.689839,13.689839,.05,.05,0,0,0,0,0,2,0,0,0,2.0809584,8.1703234,41.7,39.18,43.24,34.14,8.333333333333334,1,1,0,0,10,2,5,1,1024.5,2321723.5,2084991.3,147370.33,0,0,9538.5225,4886.5498 +8725,10600,18961,18960,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,8.2257662,8.3393288,6.2939253,27,-1,-8.5354948,0,3,2,2021,12,1,35,35,1,1,0,10.31106,10.31106,0,0,0,0,0,0,0,7,0,0,0,6.5567951,6.6344333,43.24,34.14,41.7,39.18,8.333333333333334,1,1,0,0,10,2,5,1,1024.5,2321723.5,2084991.3,147370.33,0,0,9538.5225,4886.5498 +8725,10601,18962,-9,18961,18960,1,1,24,0,0,0,2,2,-9,0,4,8.3490705,8.5640793,0,0,0,-1009.9111,0,3,2,2021,10,0,40,38,1,1,1,10.16175,10.16175,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,4,1,901,-161202.89,0,0,0,0,0,1170.3868 +8726,10602,18963,-9,18965,18964,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1192.7837,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,2264.3333,271562.06,23015.313,141033.94,100019.9,0,0,2053.3848 +8726,10602,18964,18965,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,0,0,0,2,2,-15.922256,0,2,2,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,33.83,63.9,8.333333333333334,1,1,1,1,2,4,3,1,2264.3333,271562.06,23015.313,141033.94,100019.9,0,0,2053.3848 +8726,10602,18965,18964,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.4089146,8.4461908,0,2,-2,36.865849,0,2,3,2021,21,8,41,45,1,8,0,13.496657,13.496657,0,0,0,0,0,0,0,0,1,1,0,0,0,33.83,63.9,57.33,53.46,3.333333333333333,1,1,0,1,10,4,3,1,2264.3333,271562.06,23015.313,141033.94,100019.9,0,0,2053.3848 +8727,10603,18966,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-968.41199,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,54,-9,-9,3.333333333333333,1,1,1,0,0,13,1,0,197,-112561.47,0,0,0,0,0,397.98013 +8728,10604,18967,18968,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1197681,7.9813399,0,34,5,-57.352314,0,-9,-9,2021,8,0,41,38,1,0,0,9.5901423,9.5901423,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.07,55.46,8.333333333333334,1,1,0,0,13,8,4,1,603,562349.44,458634,149102.28,0,0,9251.166,3112.3313 +8728,10604,18968,18967,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.1098213,8.0872631,0,34,-5,-197.53508,0,2,2,2021,8,0,50,52,1,0,0,10.291557,10.291557,0,0,0,0,0,0,0,0,0,0,0,0,0,56.07,55.46,54.2,57.49,8.333333333333334,1,1,0,0,13,8,4,1,603,562349.44,458634,149102.28,0,0,9251.166,3112.3313 +8729,10605,18969,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,8.3479481,8.3831043,7.4185324,0,0,-938.46918,-9,1,2,2021,18,6,30,0,1,6,0,11.496025,11.496025,.05,.05,0,0,0,0,0,0,1,1,0,7.0913501,0,38.91,52.63,-9,-9,6.666666666666667,1,1,0,0,9,9,4,1,399.33334,34765.742,126325.23,0,0,0,951.29828,2080.1492 +8729,10605,18970,-9,18969,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1079.7277,-9,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.15797891,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,399.33334,34765.742,126325.23,0,0,0,951.29828,2080.1492 +8729,10605,18971,-9,18969,-9,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1166.4473,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,399.33334,34765.742,126325.23,0,0,0,951.29828,2080.1492 +8730,10606,18972,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7233763,7.6487269,0,0,0,-997.26349,0,3,3,2021,28,11,30,28,1,11,0,7.5813103,7.5813103,0,0,0,0,0,0,0,0,0,0,0,0,0,26.86,63.5,-9,-9,1.666666666666667,1,1,0,0,10,8,3,1,575,745083.5,278864.16,351269.63,0,0,0,419.11191 +8731,10607,18973,18974,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,62,-1,16.724619,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,47.62,26.56,27.55,25.55,6.666666666666667,1,1,0,0,0,2,2,1,870,46827.086,87729.461,0,0,0,0,1897.7766 +8731,10607,18974,18973,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,5.9752841,6.2446961,62,1,117.71215,0,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,0,8.5016947,0,0,1,1,0,0,5.6709604,27.55,25.55,47.62,26.56,8.333333333333334,1,1,0,0,0,2,2,1,870,46827.086,87729.461,0,0,0,0,1897.7766 +8732,10608,18975,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,8.0197582,7.870265,0,0,-976.96832,0,2,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3891702,7.8062763,57.06,57.76,-9,-9,10,1,1,0,0,11,10,3,1,1773,-2940.8701,0,0,0,0,0,1781.3396 +8733,10609,18976,-9,-9,18977,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.6683,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,4,0,1087.5,127114.97,0,0,0,0,0,1561.5317 +8733,10609,18977,-9,-9,-9,1,1,28,0,1,0,2,2,-9,0,3,8.0546942,7.9823799,0,0,0,-927.55225,0,-9,-9,2021,11,0,37,38,1,0,0,11.289165,11.289165,0,0,0,0,0,0,0,0,0,0,0,0,0,47.72,40.36,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,1087.5,127114.97,0,0,0,0,0,1561.5317 +8734,10610,18978,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1078.6082,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3103781,0,44.59,44.54,-9,-9,8.333333333333334,1,1,0,0,11,11,1,1,1657,160837.8,53426.016,121098.8,0,0,0,2144.415 +8735,10611,18979,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.4413481,9.5606546,0,0,0,-890.83344,0,3,2,2021,9,0,50,60,1,0,0,28.956934,28.956934,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,72,607235.81,421904,244266.22,45234.414,0,8711.9756,3993.6316 +8736,10612,18980,-9,18981,18982,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.8513,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8736,10612,18981,18982,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,0,0,0,9,-8,-104.84608,0,1,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,56.07,31.93,58.41,8.333333333333334,1,1,0,0,7,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8736,10612,18982,18981,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.5835605,7.1573682,0,9,8,62.856888,0,-9,3,2021,18,6,40,40,1,6,0,4.147377,4.147377,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,58.41,42.85,56.07,5,1,1,0,1,10,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8736,10612,18983,-9,18981,18982,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.8296,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,2,0,676,77044.477,0,114834.96,73429.141,7179.2207,0,1455.2886 +8737,10613,18984,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.3477459,8.6483564,0,0,0,-1075.8575,0,2,3,2021,25,11,39,37,1,11,0,12.475976,12.475976,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.26,58.67,-9,-9,8.333333333333334,1,1,0,0,8,9,5,0,4047,-26366.438,-31768.385,0,0,4063.6523,6891.5142,2309.7297 +8738,10614,18985,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,4.3760529,4.49541,0,0,-959.74884,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5174041,4.7217188,54.18,50.75,-9,-9,8.333333333333334,1,1,0,0,3,4,2,1,231,292573.53,120530.12,134129.97,0,0,81.603722,277.2933 +8739,10615,18986,18987,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.8871994,7.7091837,0,2,-5,47.694717,0,-9,-9,2021,12,0,38,39,1,0,0,6.6440802,6.6440802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,41.29,45.8,6.666666666666667,1,1,0,0,12,4,4,0,483,-125689.55,101216.8,0,0,0,0,2287.1743 +8739,10615,18987,18986,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,7.7678475,7.9466028,0,2,5,-52.780022,0,-9,-9,2021,12,2,35,37,1,2,0,9.4084826,9.4084826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.29,45.8,44.19,58.01,5,1,1,0,0,2,4,4,0,483,-125689.55,101216.8,0,0,0,0,2287.1743 +8740,10616,18988,18989,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.6743464,8.4098606,7.7248406,40,5,93.120926,0,2,3,2021,8,0,19,19,1,0,0,17.006023,17.006023,.05,.05,0,0,0,0,0,0,0,0,0,7.6074882,7.9603596,55.57,48.59,47.22,53.97,8.333333333333334,1,1,0,0,10,5,5,1,753,191138.73,23831.033,127032.33,72747.734,166.88765,5607.0537,4411.5605 +8740,10616,18989,18988,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.2853031,8.3977203,0,40,-5,-53.357178,0,3,3,2021,12,0,37,37,1,0,0,15.538179,15.538179,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.22,53.97,55.57,48.59,5,1,1,0,0,13,5,5,1,753,191138.73,23831.033,127032.33,72747.734,166.88765,5607.0537,4411.5605 +8740,10617,18990,-9,18989,18988,1,1,26,0,0,0,1,1,-9,0,4,8.8083754,8.6694946,0,0,0,-863.46649,-9,2,2,2021,10,0,60,0,1,0,1,12.835057,12.835057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,5,5,1,534,54605.336,-5131.9619,0,0,0,0,3165.613 +8741,10618,18991,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.4468555,5.9856648,0,0,-969.04901,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0541892,6.248271,60.28,43.74,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,323,47459.285,53903.914,65733.789,0,0,0,1145.2228 +8742,10619,18992,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.1350851,7.809567,0,0,-1049.8586,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.421515,7.9153652,54.33,42.47,-9,-9,10,1,1,0,0,6,9,3,1,568,174647,97573.969,0,0,0,0,2380.7996 +8743,10620,18993,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.9949,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,19.518881,0,0,1,1,0,0,0,35.61,20.5,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,547,69172.477,0,0,0,0,0,891.07623 +8744,10621,18994,18995,18996,18997,1,0,22,0,0,0,2,2,-9,0,3,8.2100382,8.5425024,0,2,-1,144.76028,0,3,3,2021,19,7,38,40,1,7,0,13.263261,13.263261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.43,62.51,33.13,55.72,5,1,1,0,0,6,11,4,1,544.5,117990.78,-109079.26,0,0,0,0,3210.946 +8744,10621,18995,18994,-9,-9,1,1,23,0,0,0,2,2,-9,0,2,7.9588909,7.9641209,0,2,1,-11.197179,-9,-9,-9,2021,10,0,40,0,1,0,0,5.9131942,5.9131942,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.13,55.72,23.43,62.51,3.333333333333333,1,1,0,0,5,11,4,1,544.5,117990.78,-109079.26,0,0,0,0,3210.946 +8744,10622,18996,18997,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,7.4444661,7.577786,0,10,7,55.751507,0,-9,-9,2021,24,12,27,35,1,12,0,8.4116001,8.4116001,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,40.05,57.26,47.93,49.39,6.666666666666667,1,1,0,0,10,11,5,1,157.5,376799.13,242770.11,80028.023,67305.266,0,1059.5555,2609.6826 +8744,10622,18997,18996,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,8.5802565,8.2539053,0,10,-7,106.32558,0,2,3,2021,13,1,38,41,1,1,0,17.270885,17.270885,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,47.93,49.39,40.05,57.26,5,1,1,0,0,11,11,5,1,157.5,376799.13,242770.11,80028.023,67305.266,0,1059.5555,2609.6826 +8745,10623,18998,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.5923338,8.7319994,.81479621,0,0,-1065.2415,0,1,1,2021,10,2,44,42,1,2,0,13.823877,13.823877,.05,.05,0,0,0,0,0,0,1,1,0,3.3469923,0,40.89,51.69,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,2121,157489.77,5797.0703,94494.773,142261.92,0,0,1744.1049 +8746,10624,18999,19000,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,0,0,0,4,-1,49.89986,-9,-9,2,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,50.81,34.62,10,1,1,1,0,8,11,2,0,827.5,-296.49023,-39333.336,0,0,0,0,657.73767 +8746,10624,19000,18999,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,4.9476838,4.8044477,0,18,1,23.625921,0,3,3,2021,11,0,41,40,1,0,0,.46107718,.46107718,0,0,0,0,0,0,0,0,1,0,1,0,0,50.81,34.62,62.49,55.09,5,1,1,0,0,7,11,2,0,827.5,-296.49023,-39333.336,0,0,0,0,657.73767 +8747,10625,19001,19002,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.3554482,5.0305433,6,0,91.575546,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1109163,5.1871433,53.56,49.66,57.18,45.76,10,1,1,0,0,0,9,2,1,2685.5,552547.63,86378.078,404526.97,0,0,0,1316.4514 +8747,10625,19002,19001,-9,-9,1,1,87,0,0,0,2,2,-9,0,2,0,6.931231,7.4772401,6,9,-.58624798,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8391032,57.18,45.76,53.56,49.66,6.666666666666667,1,1,0,0,0,9,2,1,2685.5,552547.63,86378.078,404526.97,0,0,0,1316.4514 +8748,10626,19003,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,3,8.6157122,8.6279068,0,0,0,-1068.7887,0,2,1,2021,10,0,37,37,1,0,0,20.734423,20.734423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.54,53.26,-9,-9,6.666666666666667,1,1,0,0,11,1,5,1,373,436898.59,187670.56,112532.91,66897.422,0,0,3019.3203 +8748,10627,19004,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1052.3121,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.43,52.88,-9,-9,5,1,1,1,0,6,1,2,1,633,-70391.625,0,0,0,0,0,0 +8749,10628,19005,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.7125897,8.5753469,7.8248119,0,0,-1044.0358,0,2,2,2021,19,7,36,36,1,7,0,7.8212171,7.8212171,.05,.05,0,0,0,0,0,7,0,0,0,8.0131817,6.038414,39.9,49.39,-9,-9,5,1,1,0,0,11,12,5,1,1185,1065659.4,902822.13,215009.3,-603.82947,0,0,3136.7422 +8749,10629,19006,-9,19005,-9,1,0,26,0,0,0,2,2,-9,0,4,8.0971575,8.2023697,0,0,0,-1008.117,-9,1,1,2021,10,0,36,0,1,0,1,11.718597,11.718597,.05,.05,0,0,0,0,0,0,0,0,0,1.2650843,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,918,16310.389,-8788.8301,0,0,0,0,973.15106 +8750,10630,19007,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.3967466,8.4962378,0,0,0,-875.64899,0,-9,-9,2021,8,0,40,40,1,0,0,10.894411,10.894411,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,8,4,4,0,949,18795.314,-55480.895,0,0,0,0,1817.0178 +8751,10631,19008,19009,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.9375696,8.770586,0,4,0,-97.948135,0,-9,-9,2021,7,0,44,40,1,0,0,18.068783,18.068783,.05,.05,0,0,0,0,0,0,0,0,0,6.6003823,0,59.43,58.05,54.63,58.83,8.333333333333334,2,3,0,0,5,12,5,1,985.5,530249.31,445780.69,314513,225990.05,4368.6719,0,5673.4414 +8751,10631,19009,19008,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,8.3971777,8.7759256,0,4,0,-67.488747,0,-9,-9,2021,9,1,41,39,1,1,0,14.654941,14.654941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.63,58.83,59.43,58.05,6.666666666666667,2,3,0,0,5,12,5,1,985.5,530249.31,445780.69,314513,225990.05,4368.6719,0,5673.4414 +8752,10632,19010,19011,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8178234,8.963335,0,1,4,-8.620409,-9,1,2,2021,10,1,48,0,1,1,0,20.054338,20.054338,.05,.05,0,0,0,0,0,0,0,0,0,5.4866381,0,57.33,53.46,51.14,60.45,5,1,1,0,0,10,9,5,0,379.5,-135983,-22003.219,0,0,0,0,3492.9644 +8752,10632,19011,19010,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,7.404798,7.2377596,0,1,-4,17.861437,-9,-9,-9,2021,7,0,42,0,1,0,0,3.2146375,3.2146375,0,0,0,0,0,0,0,0,0,0,0,1.7278097,0,51.14,60.45,57.33,53.46,8.333333333333334,1,1,0,0,0,9,5,0,379.5,-135983,-22003.219,0,0,0,0,3492.9644 +8753,10633,19012,19013,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,7.8250351,7.5803828,30,13,-27.316673,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.17416,8.0219584,58.15,52.91,53.39,28.41,10,1,1,0,0,0,10,3,1,630,947394,488186.47,295835.38,0,3953.1414,1419.0347,4540.6963 +8753,10633,19013,19012,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.3364387,6.3090363,30,-13,-64.256645,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.3854299,6.4626026,53.39,28.41,58.15,52.91,8.333333333333334,1,1,0,0,0,10,3,1,630,947394,488186.47,295835.38,0,3953.1414,1419.0347,4540.6963 +8754,10634,19014,-9,19015,19016,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1112.6729,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,770,80049.055,67029.484,334428.97,213936.06,0,0,5039.3301 +8754,10634,19015,19016,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.4517927,8.7541533,0,7,1,80.59687,0,2,2,2021,11,2,52,60,1,2,0,13.548748,13.548748,0,0,0,0,0,0,0,0,1,1,0,0,0,51.84,51.67,55.79,52.62,8.333333333333334,1,1,0,0,7,7,5,1,770,80049.055,67029.484,334428.97,213936.06,0,0,5039.3301 +8754,10634,19016,19015,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.8916388,8.8260679,0,7,-1,-135.50467,0,2,2,2021,5,0,47,45,1,0,0,18.393824,18.393824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,51.84,51.67,10,1,1,0,0,8,7,5,1,770,80049.055,67029.484,334428.97,213936.06,0,0,5039.3301 +8755,10635,19017,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.1285505,9.3126602,0,0,0,-1014.8745,0,1,1,2021,9,0,40,40,1,0,0,32.034855,32.034855,.05,.05,0,0,0,0,0,0,0,0,0,1.8625318,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,14,8,5,1,240,59984.586,-38018.555,0,0,0,0,4361.0342 +8756,10636,19018,-9,19020,19019,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.7262,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1311.3334,1691775.4,380154.34,1030142.4,0,0,0,7075.9556 +8756,10636,19019,19020,-9,-9,1,1,57,0,1,0,1,1,-9,0,2,9.4568825,9.3382759,0,12,4,-87.51268,0,2,2,2021,21,9,35,75,1,9,0,37.442398,37.442398,0,0,.05,0,0,0,0,0,0,0,0,0,0,33.07,57.08,48.87,58.55,6.666666666666667,1,1,0,0,13,9,5,1,1311.3334,1691775.4,380154.34,1030142.4,0,0,0,7075.9556 +8756,10636,19020,19019,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,8.5257378,8.500021,0,12,-4,83.373093,0,3,3,2021,8,0,38,42,1,0,0,14.487783,14.487783,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.87,58.55,33.07,57.08,8.333333333333334,1,1,0,0,13,9,5,1,1311.3334,1691775.4,380154.34,1030142.4,0,0,0,7075.9556 +8756,10637,19021,-9,19020,19019,1,1,24,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1058.1833,1,2,1,2021,8,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,922,102446.06,0,0,0,0,0,1308.3557 +8756,10638,19022,-9,19020,19019,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.02332,-9,2,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6671839,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,9,1,1,4408,-60381.375,0,0,0,0,0,539.14893 +8757,10639,19023,19024,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7887831,9.0967464,7.8784351,6,11,146.12694,0,2,3,2021,11,0,25,24,1,0,0,30.914587,30.914587,.05,.05,0,0,0,0,0,0,0,0,0,0,8.017045,51.02,49.39,51.24,58.84,8.333333333333334,1,1,0,0,11,9,5,1,1099.5,1654633.8,817211.69,367283.22,0,14436.497,0,2387.0837 +8757,10639,19024,19023,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,0,0,0,6,-11,-29.270542,0,-9,-9,2021,6,0,0,44,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,51.02,49.39,8.333333333333334,1,1,0,0,6,9,5,1,1099.5,1654633.8,817211.69,367283.22,0,14436.497,0,2387.0837 +8758,10640,19025,-9,19027,19026,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1099.2069,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.0329821,0,54.79,55.86,-9,-9,10,1,1,0,0,0,9,5,1,390,416905.69,104971.83,357534.94,36645.164,31134.594,0,16089.725 +8758,10640,19026,19027,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,9.5313463,9.4495001,0,29,-1,-79.311699,0,2,2,2021,12,2,20,25,1,2,0,95.134811,95.134811,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50.65,53.71,49.35,59.64,8.333333333333334,1,1,0,0,13,9,5,1,390,416905.69,104971.83,357534.94,36645.164,31134.594,0,16089.725 +8758,10640,19027,19026,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.3452864,8.2721825,0,29,1,29.184736,0,2,2,2021,12,2,20,20,1,2,0,15.044778,15.044778,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,50.65,53.71,8.333333333333334,1,1,0,0,13,9,5,1,390,416905.69,104971.83,357534.94,36645.164,31134.594,0,16089.725 +8758,10641,19028,-9,19027,19026,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1094.543,-9,1,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2626152,0,47.89,53.42,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,240,30649.807,0,0,0,0,0,508.32584 +8759,10642,19029,19030,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,8.420023,8.4621449,0,3,-1,-38.184319,0,1,1,2021,5,1,45,50,1,1,0,10.384419,10.384419,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.18,51.37,60.12,54.8,10,1,1,0,0,8,10,4,1,323.33334,-48184.551,20878.803,0,0,2889.8882,1434.6208,3069.3826 +8759,10642,19030,19029,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.8899016,7.9659944,0,3,1,48.447594,-9,-9,-9,2021,10,0,35,0,1,0,0,8.2477961,8.2477961,.05,.05,0,0,0,0,0,0,1,1,0,1.3467903,0,60.12,54.8,53.18,51.37,8.333333333333334,1,1,0,0,2,10,4,1,323.33334,-48184.551,20878.803,0,0,2889.8882,1434.6208,3069.3826 +8759,10642,19031,-9,19030,19029,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.93164,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,323.33334,-48184.551,20878.803,0,0,2889.8882,1434.6208,3069.3826 +8760,10643,19032,19033,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,0,0,0,1,-6,0,-9,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4324713,0,30.85,17.26,34.13,61.39,0,1,1,0,0,6,11,1,1,1283,2678931.8,944608.25,635958.13,0,0,0,2547.9377 +8760,10643,19033,19032,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,1,6,0,-9,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.5589123,0,34.13,61.39,30.85,17.26,1.666666666666667,1,1,0,0,7,11,1,1,1283,2678931.8,944608.25,635958.13,0,0,0,2547.9377 +8761,10644,19034,-9,19038,19035,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1070.0345,-9,2,2,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,58.08,-9,-9,8.333333333333334,1,1,0,0,1,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19035,19038,-9,-9,1,1,61,0,2,0,2,2,-9,0,4,7.1059732,7.2246418,0,35,9,-39.899803,0,-9,2,2021,12,0,20,20,1,0,0,6.759429,6.759429,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.08,40.76,8.333333333333334,1,1,0,0,11,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19036,-9,19038,19035,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.29785,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19037,-9,19038,19035,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.2421,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8761,10644,19038,19035,-9,-9,1,0,52,0,2,0,2,2,-9,0,3,7.6188622,7.299799,0,35,0,2.1928544,0,2,2,2021,6,0,25,25,1,0,0,9.4329405,9.4329405,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.08,40.76,58.15,52.91,8.333333333333334,1,1,0,0,11,10,2,1,1367.4,436957.53,280557.56,161562.5,0,0,0,2527.5063 +8762,10645,19039,19040,-9,-9,1,0,54,0,0,0,2,2,-9,1,3,8.6840801,8.8747454,0,7,-18,7.345067,0,2,3,2021,9,0,41,40,1,0,0,19.922129,19.922129,0,0,0,0,0,0,0,27,1,1,0,0,0,54.27,48.04,35.42,25.76,8.333333333333334,1,1,0,0,8,8,5,1,511.5,2334340.5,1235241.3,504481.88,0,0,0,4181.6143 +8762,10645,19040,19039,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.8464818,6.9275513,7,18,113.27198,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3769512,35.42,25.76,54.27,48.04,5,1,1,0,0,0,8,5,1,511.5,2334340.5,1235241.3,504481.88,0,0,0,4181.6143 +8762,10646,19041,19042,-9,-9,1,1,23,0,0,0,1,1,-9,0,3,0,0,0,2,0,0,0,-9,-9,2021,6,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.51,54.26,54.37,54.8,8.333333333333334,1,1,0,0,1,8,1,1,358.5,-84748.883,-39489.883,0,0,17741.031,0,0 +8762,10646,19042,19041,19039,19040,1,0,23,0,0,0,1,1,-9,0,3,0,0,0,2,0,0,0,2,3,2021,7,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.37,54.8,52.51,54.26,6.666666666666667,1,1,0,0,7,8,1,1,358.5,-84748.883,-39489.883,0,0,17741.031,0,0 +8763,10647,19043,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.1754599,8.1814318,0,0,0,-1022.4858,0,1,1,2021,31,11,42,42,1,11,0,8.6312208,8.6312208,0,0,0,0,0,0,0,0,0,0,0,0,0,9.77,70.12,-9,-9,3.333333333333333,1,1,0,1,12,12,4,0,1108,-291307.5,-85777.961,0,0,6813.7666,962.75751,1802.6405 +8764,10648,19044,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.3297091,8.1097088,0,0,0,-841.0498,0,-9,-9,2021,13,1,34,34,1,1,0,12.678821,12.678821,0,0,0,0,0,0,0,27,1,1,0,0,0,37.98,59.7,-9,-9,5,1,1,0,0,11,4,4,1,429,531690.88,314848.03,255721.86,98362.031,975.71094,0,2496.7893 +8764,10649,19045,-9,19044,-9,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-888.54626,1,3,-9,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.47,65.17,-9,-9,8.333333333333334,1,1,0,0,2,4,1,1,194,72051.648,0,0,0,0,0,0 +8765,10650,19046,19047,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.4539785,8.4875717,0,14,4,84.887192,0,2,2,2021,6,0,53,49,1,0,0,10.827866,10.827866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.83,57.2,10,1,1,0,0,6,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8765,10650,19047,19046,-9,-9,1,0,33,1,2,0,2,2,-9,0,4,7.9050155,7.8650393,0,14,-4,5.9625983,0,2,2,2021,10,0,31,32,1,0,0,9.4638624,9.4638624,.05,.05,0,0,0,0,0,0,1,1,0,2.5906577,0,51.83,57.2,57.06,57.76,6.666666666666667,1,1,0,0,7,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8765,10650,19048,-9,19047,19046,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.9596,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8765,10650,19049,-9,19047,19046,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1115.2416,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1377,245206.59,231284.94,102798.75,48136.555,336.01526,0,2886.6335 +8766,10651,19050,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,6.0494289,6.2105751,0,0,-1091.8474,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.0692811,55.34,30.32,-9,-9,8.333333333333334,1,1,0,0,9,11,2,0,193,510696.16,0,152703.8,0,0,0,1028.6116 +8767,10652,19051,-9,19054,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.60718,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8767,10652,19052,-9,19054,-9,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-924.17084,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,55.32,-9,-9,10,1,1,0,0,0,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8767,10652,19053,-9,19054,-9,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-822.83154,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8767,10652,19054,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,5,7.2679067,7.7231011,7.1981993,0,0,-961.49561,-9,2,3,2021,7,0,36,0,1,0,0,5.7717657,5.7717657,.05,.05,0,0,0,0,0,0,1,1,0,7.3419905,0,54.69,57.47,-9,-9,10,1,1,0,0,6,4,3,0,590.5,19904.174,0,0,0,0,0,2818.0942 +8768,10653,19055,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,5.239862,5.3131065,0,0,-871.89355,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.233407,52,48,-9,-9,7,1,1,0,0,0,11,2,0,911,76666.594,37879.078,0,0,0,0,1073.452 +8768,10654,19056,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-962.36682,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,0,11,1,0,1150,70390.813,0,92139.961,0,0,0,-828.25446 +8769,10655,19057,19058,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.3403983,6.9132195,46,5,-2.4457903,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1902564,7.2675362,48.87,58.55,41.04,26.17,8.333333333333334,1,1,0,0,0,2,2,1,1346.5,231570.27,322910.94,129883.78,0,0,0,2091.8218 +8769,10655,19058,19057,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,0,0,47,-5,-134.98706,0,2,3,2021,21,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.04,26.17,48.87,58.55,6.666666666666667,1,1,0,0,8,2,2,1,1346.5,231570.27,322910.94,129883.78,0,0,0,2091.8218 +8770,10656,19059,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.2287912,8.1738901,0,0,0,-910.15399,0,2,1,2021,7,0,38,43,1,0,0,9.9902391,9.9902391,.05,.05,0,0,0,0,0,0,1,1,0,2.0743675,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,1474,-51848.473,-45623.004,0,0,7914.4888,0,1796.3949 +8771,10657,19060,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-960.36084,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,1100,-49096.008,0,0,0,5666.167,0,540.47052 +8772,10658,19061,-9,19062,-9,1,1,33,0,0,0,2,2,-9,0,3,8.9043722,8.8333082,0,0,0,-847.93805,0,1,2,2021,12,1,41,51,1,1,1,21.410524,21.410524,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,53.23,-9,-9,6.666666666666667,2,3,0,0,7,5,5,1,1460,-277089.56,0,0,0,0,0,3454.0676 +8772,10659,19062,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,6.0706854,5.9383659,0,0,0,-938.20801,0,-9,-9,2021,24,11,16,4,1,11,0,2.1718442,2.1718442,.05,.05,0,0,0,0,0,0,0,0,0,1.7170358,0,46.76,23.57,-9,-9,1.666666666666667,2,3,0,0,4,5,2,1,867,355346.78,36583.23,186538.45,0,0,0,725.02289 +8773,10660,19063,19064,-9,-9,1,0,52,0,0,0,1,1,-9,0,1,8.9722052,8.5550566,0,13,-4,-54.798782,0,2,2,2021,30,10,35,35,1,10,0,32.653511,32.653511,.05,.05,0,0,0,0,0,0,0,0,0,6.6017661,0,25.34,49.8,43.09,61.58,1.666666666666667,1,1,0,0,13,8,5,1,433,3623926,2278257.8,1297635.4,87712.75,0,0,5394.9468 +8773,10660,19064,19063,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,8.3913488,8.5761614,0,13,4,-72.907547,0,2,2,2021,13,4,35,39,1,4,0,11.83059,11.83059,.05,.05,0,0,0,0,0,2,0,0,0,6.6080785,0,43.09,61.58,25.34,49.8,6.666666666666667,1,1,0,0,9,8,5,1,433,3623926,2278257.8,1297635.4,87712.75,0,0,5394.9468 +8774,10661,19065,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,2,0,0,0,0,0,-946.09644,-9,-9,-9,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.91,51.8,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,517,0,0,0,0,0,0,175.61151 +8775,10662,19066,19067,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.6575108,7.7454562,0,7,2,-52.122608,0,2,2,2021,14,3,22,31,1,3,0,9.6199427,9.6199427,.05,.05,0,0,0,0,0,7,0,0,0,5.0488191,0,49.53,48.56,49.29,54.59,8.333333333333334,1,1,0,0,10,7,5,1,263.5,3223693.5,2170339,668854.63,0,0,0,5123.8828 +8775,10662,19067,19066,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.4115849,9.7480211,0,27,-2,-37.981144,0,2,2,2021,7,0,38,43,1,0,0,35.894848,35.894848,.05,.05,0,0,0,0,0,0,0,0,0,5.7057142,0,49.29,54.59,49.53,48.56,8.333333333333334,1,1,0,0,10,7,5,1,263.5,3223693.5,2170339,668854.63,0,0,0,5123.8828 +8775,10663,19068,-9,19066,19067,1,1,22,0,0,0,1,1,1,0,4,0,6.3732443,6.0968513,0,0,-1015.6515,-9,1,1,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8648853,0,45.81,58.99,-9,-9,3.333333333333333,1,1,1,0,3,7,2,1,443,-108059.1,0,0,0,0,0,363.28564 +8775,10664,19069,-9,19066,19067,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-996.30542,-9,1,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.56615633,0,57.16,56.15,-9,-9,10,1,1,0,0,1,7,2,1,4802,51004.789,0,0,0,0,-105.49239,-457.32779 +8776,10665,19070,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.5280399,8.0487461,0,0,0,-918.77289,0,1,1,2021,12,0,42,42,1,0,1,12.386097,12.386097,.05,.05,0,0,0,0,0,0,0,0,0,.040701773,0,47.32,52.7,-9,-9,6.666666666666667,3,4,0,0,5,7,5,1,374,-103526.16,139378.8,0,0,0,0,2665.0818 +8777,10666,19071,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.0999346,8.2124901,0,0,0,-970.81366,0,2,2,2021,11,0,40,41,1,0,0,10.4972,10.4972,.05,.05,0,0,0,0,0,0,0,0,0,.067578308,0,51.83,57.2,-9,-9,5,1,1,0,0,5,13,4,1,495,-90071.234,-82595.156,0,0,4801.8682,0,1194.1466 +8778,10667,19072,-9,19074,19073,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.24567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8778,10667,19073,19074,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.7045631,8.8323402,0,13,3,89.952209,0,2,1,2021,10,0,39,38,1,0,0,18.400925,18.400925,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,55.35,41.97,8.333333333333334,2,3,0,0,7,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8778,10667,19074,19073,-9,-9,1,0,34,0,3,0,1,1,-9,0,3,0,0,0,13,-3,-69.888031,0,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.35,41.97,54.2,57.49,8.333333333333334,2,3,0,0,7,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8778,10667,19075,-9,19074,19073,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.83447,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,1229.75,258042.78,-10001.553,292494,76066.836,4435.7036,0,2543.6826 +8779,10668,19076,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,5.6031771,6.0125327,0,0,-952.23309,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4997382,0,0,1,1,0,0,5.8185058,59.56,32.49,-9,-9,8.333333333333334,3,4,0,0,0,8,2,1,818,167526.28,149091.75,124419.5,0,0,0,1024.9258 +8780,10669,19077,19078,-9,-9,1,1,35,2,2,0,2,2,-9,0,3,8.3316956,8.1324024,0,10,-1,-81.414963,0,2,2,2021,11,1,37,60,1,1,0,13.108464,13.108464,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,52.16,46.15,8.333333333333334,1,1,0,0,12,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8780,10669,19078,19077,-9,-9,1,0,36,2,2,0,1,1,-9,0,3,8.6065044,8.5831757,0,10,1,-15.566895,0,2,3,2021,11,0,42,77,1,0,0,9.8347435,9.8347435,.05,.05,0,0,0,0,0,0,1,1,0,.9344697,0,52.16,46.15,52,54.51,6.666666666666667,1,1,0,0,12,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8780,10669,19079,-9,19078,19077,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0385,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8780,10669,19080,-9,19078,19077,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5276,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,684.25,153352.28,13453.913,306414.13,180912.08,5853.9253,0,3264.1978 +8781,10670,19081,19082,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,7,1,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,21.251842,0,27,1,1,0,0,0,45.75,28.07,34.47,18.63,8.333333333333334,1,1,0,0,0,11,1,0,719.5,170525.52,0,261200.63,0,0,0,2550.9922 +8781,10670,19082,19081,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,64,-1,0,0,3,3,2021,19,4,0,0,4,4,0,0,0,0,0,0,1,0,46.502724,0,0,1,1,0,0,0,34.47,18.63,45.75,28.07,1.666666666666667,1,1,0,0,0,11,1,0,719.5,170525.52,0,261200.63,0,0,0,2550.9922 +8782,10671,19083,-9,-9,-9,1,0,33,1,4,0,2,2,-9,1,3,0,5.1084838,5.1253729,0,0,-812.57007,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.7131467,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,3,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8782,10671,19084,-9,19083,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.9009,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8782,10671,19085,-9,19083,-9,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.228,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8782,10671,19086,-9,19083,-9,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1102.8948,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,2,0,540.25,-73595.406,0,0,0,10244.198,0,3373.0889 +8783,10672,19087,19088,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,7.0641317,7.4860525,12,9,-85.343323,0,3,3,2021,10,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.343132,6.7449799,51,48,57.16,56.15,7,1,1,0,0,0,13,2,1,1686,213998.11,13092.754,148769,0,0,0,1553.374 +8783,10672,19088,19087,-9,-9,1,0,58,0,0,0,3,3,-9,1,4,6.1351948,6.0936065,0,12,0,61.966095,0,3,3,2021,9,0,7,8,1,0,0,7.781436,7.781436,0,0,0,0,0,0,0,42,1,1,0,0,0,57.16,56.15,51,48,10,1,1,0,0,8,13,2,1,1686,213998.11,13092.754,148769,0,0,0,1553.374 +8784,10673,19089,19090,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.0296698,7.0040622,39,18,28.488997,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1630778,61.04,39.41,54.1,59.11,5,1,1,0,0,8,6,2,1,371.5,371545.72,202346.72,164938.63,0,0,0,5140.4619 +8784,10673,19090,19089,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,4.6234689,4.5702362,0,39,-18,-74.871758,0,3,-9,2021,10,0,40,-9,1,0,0,.26902512,.26902512,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,61.04,39.41,10,1,1,0,0,10,6,2,1,371.5,371545.72,202346.72,164938.63,0,0,0,5140.4619 +8784,10674,19091,-9,19093,-9,1,0,15,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1035.8174,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,1374.3334,18894.791,-7561.6431,0,0,0,0,2231.3601 +8784,10674,19092,-9,19093,-9,1,0,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1026.2246,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,1374.3334,18894.791,-7561.6431,0,0,0,0,2231.3601 +8784,10674,19093,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.5203104,8.4347239,0,0,0,-1114.1304,0,-9,-9,2021,12,0,48,48,1,0,0,12.446397,12.446397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,6,4,1,1374.3334,18894.791,-7561.6431,0,0,0,0,2231.3601 +8785,10675,19094,-9,19096,19095,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.8359,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,936,1650934.8,1678505.5,198376.7,107637.31,4407.519,2818.356,4353.2314 +8785,10675,19095,19096,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.2823448,8.2099314,0,13,8,4.8532557,0,-9,3,2021,9,0,60,60,1,0,0,7.1429815,7.1429815,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.45,57.49,55.96,49.93,6.666666666666667,1,1,0,0,14,12,4,1,936,1650934.8,1678505.5,198376.7,107637.31,4407.519,2818.356,4353.2314 +8785,10675,19096,19095,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,8.4662695,7.9653816,0,13,-8,-33.080555,0,1,2,2021,6,0,30,40,1,0,0,15.542481,15.542481,.05,.05,0,0,0,0,0,7,1,0,1,0,0,55.96,49.93,48.45,57.49,10,1,1,0,0,11,12,4,1,936,1650934.8,1678505.5,198376.7,107637.31,4407.519,2818.356,4353.2314 +8786,10676,19097,-9,-9,-9,1,0,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-884.80212,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,32.42,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,268,0,0,0,0,0,0,1029.7338 +8786,10677,19098,-9,19097,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9039745,7.6736426,0,0,0,-989.76288,0,2,-9,2021,11,0,40,38,1,2,1,7.0395031,7.0395031,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,3,0,380,-77492.938,0,0,0,0,0,850.59137 +8786,10678,19099,-9,19097,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-908.52057,0,2,-9,2021,11,0,0,16,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.39789265,0,46,58,-9,-9,7,1,1,1,0,0,2,1,0,783,70289.938,0,0,0,0,0,-104.40469 +8787,10679,19100,19101,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7626638,6.6848888,24,-1,9.3794765,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5319605,6.9680996,60.3,46.58,53.33,53.71,10,1,1,0,0,5,9,2,1,211,864785,421645.28,267654.88,0,0,0,1497.7371 +8787,10679,19101,19100,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.8933134,5.1518149,24,1,91.272987,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9430327,5.6456089,53.33,53.71,60.3,46.58,8.333333333333334,1,1,0,0,5,9,2,1,211,864785,421645.28,267654.88,0,0,0,1497.7371 +8788,10680,19102,19103,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.539958,6.7430706,35,0,-59.437611,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3346243,6.7661471,48.28,60.18,57.33,53.46,6.666666666666667,1,1,0,0,0,10,3,1,327.5,996176,613161.88,301858.44,0,15080.947,0,1913.7853 +8788,10680,19103,19102,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.0774574,8.0569353,35,0,-66.244118,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6862254,8.1724834,57.33,53.46,48.28,60.18,8.333333333333334,1,1,0,0,11,10,3,1,327.5,996176,613161.88,301858.44,0,15080.947,0,1913.7853 +8789,10681,19104,19105,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.5172338,7.3016653,46,0,15.236926,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2268729,6.9219298,46.55,44.15,51.42,49.68,6.666666666666667,1,1,0,0,0,10,2,1,384.5,347350.38,350215.44,0,0,3692.2148,2541.7134,2351.9307 +8789,10681,19105,19104,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,5.2629442,5.0552068,46,9,-26.612297,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,3.8442204,0,0,1,1,0,0,5.0771875,51.42,49.68,46.55,44.15,10,1,1,0,0,0,10,2,1,384.5,347350.38,350215.44,0,0,3692.2148,2541.7134,2351.9307 +8790,10682,19106,19107,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.5205975,6.8179517,9,-3,-83.723969,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.797677,7.0681515,46.48,55.6,62.49,55.09,5,1,1,0,0,2,1,4,1,359.5,1165537.5,530815.75,234728.59,0,0,0,4331.998 +8790,10682,19107,19106,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.458395,8.593915,9,3,62.706314,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9965343,8.5726414,62.49,55.09,46.48,55.6,8.333333333333334,1,1,0,0,4,1,4,1,359.5,1165537.5,530815.75,234728.59,0,0,0,4331.998 +8791,10683,19108,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1018.578,0,2,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.04,48.15,-9,-9,5,2,3,0,0,0,7,1,0,6728,0,0,0,0,0,0,107.84496 +8791,10684,19109,-9,19108,-9,1,1,26,0,0,0,2,2,-9,0,4,7.927177,7.7709379,0,0,0,-1048.858,0,3,2,2021,10,0,24,0,1,1,1,8.6966791,8.6966791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,7,3,0,1037,248648.64,11331.543,0,0,0,0,1002.84 +8791,10685,19110,-9,19108,-9,1,1,24,0,0,0,2,2,-9,0,5,8.1391048,8.1837635,0,0,0,-970.55865,0,3,2,2021,0,0,40,40,1,0,1,10.0634,10.0634,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,7,4,0,836,-240838.25,-31480.691,0,0,0,0,1162.8525 +8791,10686,19111,-9,19108,-9,1,0,18,0,0,0,3,3,-9,0,4,0,0,0,0,0,-940.42188,1,3,-9,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.39,40.52,-9,-9,10,2,3,0,0,0,7,1,0,1663,51536.465,0,0,0,0,0,0 +8791,10687,19112,-9,19108,-9,1,0,29,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1018.02,0,3,-9,2021,4,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.58,55.81,-9,-9,8.333333333333334,2,3,1,0,0,7,2,0,351,-17435.266,0,0,0,0,0,610.93213 +8792,10688,19113,19114,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.6740551,6.7236743,12,0,-32.132587,0,-9,-9,2021,5,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2898502,6.5752225,54.2,57.49,65.54000000000001,35.93,10,1,1,0,0,12,4,2,1,504.5,643755.81,210693.58,153348.81,0,0,0,37.560974 +8792,10688,19114,19113,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,40,0,-144.29248,0,3,3,2021,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.54000000000001,35.93,54.2,57.49,8.333333333333334,1,1,0,0,14,4,2,1,504.5,643755.81,210693.58,153348.81,0,0,0,37.560974 +8793,10689,19115,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.8489599,7.803123,0,0,0,-1064.1198,0,2,3,2021,9,0,45,20,1,0,0,6.5877452,6.5877452,.05,.05,0,0,0,0,0,42,1,1,0,0,0,54.27,48.04,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,827,112350.6,189904.59,20924.971,0,0,0,2144.8335 +8794,10690,19116,19117,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,24,-7,75.716293,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.2640061,0,58.96,31.62,60.12,54.8,8.333333333333334,1,1,0,0,11,11,2,1,650,561532.06,462789.69,169171.13,0,0,0,1645.927 +8794,10690,19117,19116,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.2211428,7.3797588,0,24,7,-65.712616,0,1,3,2021,7,0,60,65,1,0,0,2.298918,2.298918,0,0,0,0,0,0,0,0,0,0,0,6.5899525,0,60.12,54.8,58.96,31.62,8.333333333333334,1,1,0,0,15,11,2,1,650,561532.06,462789.69,169171.13,0,0,0,1645.927 +8795,10691,19118,19119,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.5598702,6.3809891,31,9,3.579344,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1690402,6.5952711,51.41,56.15,44.85,53.68,8.333333333333334,1,1,0,0,0,4,2,1,429,461497.06,154237.08,78034.016,0,0,0,1774.8096 +8795,10691,19119,19118,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.4165487,6.2007842,31,0,131.36186,0,2,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.241631,44.85,53.68,51.41,56.15,3.333333333333333,1,1,0,0,0,4,2,1,429,461497.06,154237.08,78034.016,0,0,0,1774.8096 +8796,10692,19120,19121,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1393805,8.348299,0,27,-7,-20.21393,0,3,3,2021,7,0,30,33,1,0,0,14.914998,14.914998,0,0,.05,0,0,0,0,0,0,0,0,0,0,50.18,52.62,40.8,38.34,6.666666666666667,1,1,0,0,12,2,5,1,1256.5,2347372.5,1448191.5,0,0,4430.0635,0,3174.5518 +8796,10692,19121,19120,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,8.8118067,8.5408936,0,28,7,102.94983,0,3,2,2021,11,1,48,51,1,1,0,15.565637,15.565637,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,40.8,38.34,50.18,52.62,6.666666666666667,1,1,0,0,12,2,5,1,1256.5,2347372.5,1448191.5,0,0,4430.0635,0,3174.5518 +8797,10693,19122,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,5.3845048,6.5385203,6.3845801,0,0,-839.72522,0,2,1,2021,6,0,40,40,1,0,0,.86248463,.86248463,0,0,0,0,0,0,0,0,1,1,0,5.6015086,6.2064495,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,13,7,2,1,3282,533317.75,394675.22,0,0,0,0,1505.801 +8798,10694,19123,-9,19124,19125,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.6061,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,742.66669,2570514.3,1571359.1,1160142.5,422652.41,0,0,8862.2529 +8798,10694,19124,19125,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,9.2328892,9.817194,0,15,-3,98.012268,0,2,2,2021,12,2,34,30,1,2,0,36.991856,36.991856,0,0,0,0,0,0,0,0,1,1,0,7.3770924,0,47.24,53.95,36.38,53.47,6.666666666666667,1,1,0,0,11,9,5,1,742.66669,2570514.3,1571359.1,1160142.5,422652.41,0,0,8862.2529 +8798,10694,19125,19124,-9,-9,1,1,41,0,1,0,1,1,-9,0,3,9.4628973,9.7709799,0,16,3,56.74564,0,2,2,2021,13,2,40,45,1,2,0,36.405285,36.405285,.05,.05,0,0,0,0,0,0,1,1,0,3.6385021,0,36.38,53.47,47.24,53.95,5,1,1,0,0,11,9,5,1,742.66669,2570514.3,1571359.1,1160142.5,422652.41,0,0,8862.2529 +8799,10695,19126,19128,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.5044699,8.6277828,0,22,1,-63.570915,0,2,2,2021,12,1,30,30,1,1,0,17.387159,17.387159,0,0,0,0,0,0,0,2,1,1,0,7.6608953,0,40.38,59.14,30.2,62.35,8.333333333333334,1,1,0,0,13,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8799,10695,19127,-9,19128,19126,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1148.244,-9,2,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.83142614,0,47,61,-9,-9,10,1,1,0,0,0,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8799,10695,19128,19126,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,6.5876431,6.5786533,0,22,-1,100.04566,0,3,3,2021,22,10,10,10,1,10,0,9.6214819,9.6214819,0,0,0,0,0,0,0,2,1,1,0,6.8837438,0,30.2,62.35,40.38,59.14,5,1,1,0,0,10,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8799,10695,19129,-9,19128,19126,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.7916,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,1571.5,-16433.389,63839.32,0,0,4538.6431,0,3810.4878 +8800,10696,19130,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.3364835,7.6790085,0,0,0,-950.40271,0,2,3,2021,9,0,23,23,1,0,0,10.491606,10.491606,0,0,0,0,0,0,0,2,0,0,0,6.926837,0,57.9,51.84,-9,-9,1.666666666666667,1,1,0,0,11,13,3,1,176,82210.25,-13322.295,160370.09,11683.466,0,3207.1509,1551.6396 +8801,10697,19131,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,9.1190414,9.1946306,0,0,0,-1022.1567,0,1,2,2021,7,0,46,9,1,0,0,23.688499,23.688499,.05,.05,.05,0,0,0,0,0,0,0,0,5.9825411,0,27.43,58.92,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,647,565400.63,414213.22,0,0,0,0,3115.4617 +8802,10698,19132,19133,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,8.2660742,8.3551846,0,26,2,-142.27779,0,2,2,2021,17,5,20,25,1,5,0,25.843866,25.843866,0,0,0,0,0,0,0,0,1,1,0,0,0,34,61.21,33.2,63.27,6.666666666666667,1,1,0,0,12,6,5,1,536.5,291397.84,180470,360128,185863.34,0,14179.24,5173.0732 +8802,10698,19133,19132,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.2461596,9.232254,0,27,-2,2.8738141,0,2,2,2021,11,2,37,50,1,2,0,35.419346,35.419346,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,33.2,63.27,34,61.21,6.666666666666667,1,1,0,0,12,6,5,1,536.5,291397.84,180470,360128,185863.34,0,14179.24,5173.0732 +8802,10699,19134,-9,19132,19133,1,0,19,0,1,0,2,2,-9,0,3,5.2461743,5.1909113,0,0,0,-894.2688,-9,2,1,2021,32,12,40,0,1,12,1,.46576706,.46576706,0,0,0,0,0,0,0,0,1,1,0,2.3791966,0,14.49,55.48,-9,-9,6.666666666666667,1,1,0,0,3,6,2,1,783,19327.211,90288.586,0,0,0,0,5.1505327 +8803,10700,19135,-9,19136,19137,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.88812,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,517,205393.19,91520.398,272218.44,35164.52,2639.542,0,2992.9438 +8803,10700,19136,19137,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,6.3683543,6.3529525,0,4,-11,-1.1760405,0,-9,-9,2021,18,6,10,20,1,6,0,8.1498737,8.1498737,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,47.71,38.99,8.333333333333334,1,1,0,0,6,6,4,1,517,205393.19,91520.398,272218.44,35164.52,2639.542,0,2992.9438 +8803,10700,19137,19136,-9,-9,1,1,40,1,1,0,2,2,-9,0,3,8.6629829,8.7161999,0,4,11,72.528183,0,1,2,2021,11,0,46,50,1,0,0,14.929411,14.929411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.71,38.99,46.63,59.72,5,1,1,0,0,10,6,4,1,517,205393.19,91520.398,272218.44,35164.52,2639.542,0,2992.9438 +8804,10701,19138,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.7814884,7.8955669,0,0,0,-1045.8243,0,2,2,2021,12,0,38,23,1,0,0,7.5122447,7.5122447,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,57.73,-9,-9,6.666666666666667,1,1,0,0,9,2,3,0,403,28599.865,-45040.918,0,0,0,0,2031.004 +8804,10701,19139,-9,19138,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.75031,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,403,28599.865,-45040.918,0,0,0,0,2031.004 +8804,10702,19140,-9,19138,-9,1,1,19,0,1,0,3,3,-9,0,5,0,0,0,0,0,-927.83258,0,2,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,2,1,0,135,0,0,0,0,0,0,-360.28299 +8805,10703,19141,19142,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,0,0,0,8,1,-126.92342,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.49,55.09,10,2,3,0,0,0,4,2,1,722,20332.926,205179.41,0,0,2490.2559,0,1031.7587 +8805,10703,19142,19141,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,7.5787144,7.9232607,0,28,-1,73.359489,0,-9,-9,2021,6,0,15,16,1,0,0,13.338313,13.338313,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.39,56.71,8.333333333333334,2,3,0,0,11,4,2,1,722,20332.926,205179.41,0,0,2490.2559,0,1031.7587 +8805,10704,19143,-9,19141,19142,1,0,22,0,1,1,1,0,0,0,3,0,0,0,0,0,-970.82971,-9,-9,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,248,289240.78,0,0,0,0,0,0 +8805,10705,19144,-9,19141,19142,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1025.7478,-9,-9,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,0,4,1,1,333,45628.344,0,0,0,791.62177,0,0 +8806,10706,19145,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,2,7.7022257,7.4570704,0,0,0,-1026.1116,0,3,2,2021,28,11,30,30,1,11,0,7.6254058,7.6254058,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,15.72,50.17,-9,-9,5,2,3,0,0,6,2,2,1,964.33331,94517.992,-1809.2598,0,0,66.320221,0,1793.1923 +8806,10706,19146,-9,19145,-9,1,0,17,0,1,0,2,2,1,1,1,0,0,0,0,0,-951.21307,-9,2,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.07,27.63,-9,-9,0,2,3,0,0,0,2,2,1,964.33331,94517.992,-1809.2598,0,0,66.320221,0,1793.1923 +8806,10706,19147,-9,19145,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.50043,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,964.33331,94517.992,-1809.2598,0,0,66.320221,0,1793.1923 +8807,10707,19148,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.6511183,7.6952977,0,0,-929.95111,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6503701,41.47,58.08,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,641,890493.06,424124.75,109584.95,0,0,0,1601.3887 +8808,10708,19149,19150,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.105072,6.2349496,6,2,90.830925,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.522882,43.5,52.88,57.78,40.89,8.333333333333334,1,1,0,0,1,4,2,1,550,407171.81,281951.06,129954.45,0,1681.9783,0,1262.3098 +8808,10708,19150,19149,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,6,-2,34.993782,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.78,40.89,43.5,52.88,10,1,1,0,0,2,4,2,1,550,407171.81,281951.06,129954.45,0,1681.9783,0,1262.3098 +8809,10709,19151,19152,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.0443983,8.0946932,0,11,2,-83.345901,0,3,2,2021,11,0,22,22,1,0,0,16.932928,16.932928,0,0,0,0,0,0,0,0,1,1,0,0,0,56.74,52.23,56.9,49.4,10,1,1,0,0,13,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8809,10709,19152,19151,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.0477495,8.964016,0,11,-2,9.5774899,0,3,3,2021,8,0,45,40,1,0,0,21.512846,21.512846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.9,49.4,56.74,52.23,8.333333333333334,1,1,0,0,13,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8809,10709,19153,-9,19151,19152,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.05646,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8809,10709,19154,-9,19151,19152,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.5968,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,587,124677.17,-506.03925,214687.88,167484.2,13695.389,9934.4863,4824.2168 +8810,10710,19155,19157,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,0,0,0,9,-10,-70.868065,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19156,-9,19155,19157,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.51,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19157,19155,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.7815986,7.4966245,0,22,10,40.134609,0,2,2,2021,9,0,63,40,1,1,0,4.8167615,4.8167615,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,1,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19158,-9,19155,19157,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1012.3096,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10710,19159,-9,19155,19157,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.03876,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,597.20001,-965.09357,20746.248,0,0,0,10277.587,2797.0493 +8810,10711,19160,-9,19155,19157,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1089.5811,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,2,8,1,0,485,0,0,0,0,0,0,0 +8811,10712,19161,19162,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.9530802,7.0016222,57,3,18.567993,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.0761385,7.3432398,53.01,38.93,51,46,8.333333333333334,1,1,0,0,0,6,2,0,563,267143.41,200247.25,252077.72,0,0,0,2971.8191 +8811,10712,19162,19161,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-3,43.420601,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,13.434786,0,0,1,1,0,0,0,51,46,53.01,38.93,8,1,1,0,0,0,6,2,0,563,267143.41,200247.25,252077.72,0,0,0,2971.8191 +8812,10713,19163,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1138105,7.9525294,0,0,0,-1010.8287,0,-9,-9,2021,8,0,37,37,1,0,0,10.498174,10.498174,.05,.05,0,0,0,0,0,0,0,0,0,2.7771208,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,13,6,4,1,1270,-63978.668,-89887.289,0,0,0,0,1425.723 +8813,10714,19164,19165,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.4522076,7.6476054,9,1,2.2445931,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.7060366,7.3250136,46.03,55.71,54.55,49.25,8.333333333333334,1,1,0,0,0,8,4,1,325,2697981,1865925,858217.38,0,0,0,5033.542 +8813,10714,19165,19164,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9157577,8.5694618,9,-1,54.845036,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6130672,8.1950235,54.55,49.25,46.03,55.71,8.333333333333334,1,1,0,0,0,8,4,1,325,2697981,1865925,858217.38,0,0,0,5033.542 +8814,10715,19166,-9,19167,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.48395,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,0,684.5,-14163.883,85790.344,0,0,35916.684,0,1254.1936 +8814,10715,19167,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,5.5168834,5.6939406,0,0,0,-967.48907,0,-9,-9,2021,8,1,4,0,1,1,0,6.4417562,6.4417562,0,0,0,0,0,0,0,0,1,0,1,0,0,52.88,54,-9,-9,8.333333333333334,1,1,0,0,1,2,2,0,684.5,-14163.883,85790.344,0,0,35916.684,0,1254.1936 +8815,10716,19168,-9,19170,19171,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7235,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8815,10716,19169,-9,19170,19171,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9243,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,6,1,1,-9,0,0,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8815,10716,19170,19171,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.3732224,7.2446942,0,5,-7,-164.67395,0,1,2,2021,9,0,24,20,1,0,0,10.912233,10.912233,.05,.05,0,0,0,0,.33438775,0,0,0,0,0,0,55.52,38,52,55,8.333333333333334,1,1,0,0,8,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8815,10716,19171,19170,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.6232777,8.3121958,0,5,7,42.308605,0,3,-9,2021,9,0,40,46,1,1,0,13.713272,13.713272,.05,.05,0,0,0,0,0,0,0,0,0,.50484556,0,52,55,55.52,38,7,1,1,0,0,1,5,4,1,1148,623256.44,533240.75,100530.52,68702.938,6625.2378,0,3016.3445 +8816,10717,19172,19173,-9,-9,1,1,40,0,2,0,2,2,-9,1,3,0,0,0,13,-1,0,0,3,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,49.93,27.39,21.15,8.333333333333334,2,3,0,0,1,2,1,1,470,-100215.79,0,0,0,1507.1466,0,1169.6896 +8816,10717,19173,19172,-9,-9,1,0,41,0,2,0,2,2,-9,1,1,0,0,0,13,1,0,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.39,21.15,55.96,49.93,8.333333333333334,2,3,0,0,0,2,1,1,470,-100215.79,0,0,0,1507.1466,0,1169.6896 +8816,10717,19174,-9,19173,19172,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.74408,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,1,1,470,-100215.79,0,0,0,1507.1466,0,1169.6896 +8817,10718,19175,19176,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.1326609,9.3433847,0,5,-2,43.016624,0,1,1,2021,17,5,55,55,1,5,0,15.132284,15.132284,.05,.05,0,0,0,0,0,2,0,0,0,5.2037635,0,36.54,57.54,49.35,59.64,3.333333333333333,1,1,0,0,11,12,5,1,358.5,925816.19,772179.25,120109.87,23584.822,0,0,3013.5601 +8817,10718,19176,19175,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,5,2,51.296513,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.8107178,0,49.35,59.64,36.54,57.54,8.333333333333334,1,1,0,0,10,12,5,1,358.5,925816.19,772179.25,120109.87,23584.822,0,0,3013.5601 +8818,10719,19177,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.2533541,9.1901503,8.2789679,0,0,-995.05823,-9,2,2,2021,6,0,30,0,1,0,0,41.540867,41.540867,.05,.05,0,0,0,0,0,0,0,0,0,0,8.5071449,52.37,51.4,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,542,-52341.125,-69176.648,0,0,21937.559,6422.3286,5293.6577 +8818,10720,19178,-9,-9,19177,1,1,22,0,0,1,2,0,-9,0,4,0,0,0,0,0,-961.44037,-9,-9,2,2021,32,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,17.28,69.26000000000001,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,952,-13672.487,0,0,0,0,0,0 +8819,10721,19179,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,6.3330894,6.4859014,0,0,-1182.6298,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.609262,64.87,12.68,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,938,244733.73,-50986.242,209012.34,0,0,0,1618.8032 +8820,10722,19180,19181,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.2576447,8.4922047,0,7,-1,-83.668404,0,1,2,2021,13,2,37,38,1,2,0,14.526639,14.526639,.05,.05,0,0,0,0,0,0,0,0,0,3.7871132,0,46.39,60.99,52.23,55.6,3.333333333333333,4,5,0,0,6,8,5,1,725.5,115901.01,105071.92,315663.5,245419.59,0,0,3573.9661 +8820,10722,19181,19180,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.3578434,8.4490442,0,7,1,-33.774254,0,1,1,2021,7,0,40,20,1,0,0,12.124787,12.124787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,46.39,60.99,8.333333333333334,4,5,0,0,8,8,5,1,725.5,115901.01,105071.92,315663.5,245419.59,0,0,3573.9661 +8821,10723,19182,19183,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.8687906,9.0428848,0,36,0,71.97242,0,2,2,2021,9,0,8,8,1,0,0,115.66451,115.66451,.05,.05,0,0,0,0,0,118,1,1,0,4.8562307,0,48.77,60.16,54.1,59.11,8.333333333333334,1,1,0,0,13,4,5,1,208.5,3090032.5,2584455.8,527654,99574.25,0,0,7583.4087 +8821,10723,19183,19182,19185,-9,1,1,54,0,0,0,1,1,-9,0,5,9.4400177,9.448554,0,36,0,19.130978,0,2,2,2021,8,0,20,20,1,0,0,68.935547,68.935547,.05,.05,0,0,0,0,0,106,1,1,0,3.371212,0,54.1,59.11,48.77,60.16,10,1,1,0,0,13,4,5,1,208.5,3090032.5,2584455.8,527654,99574.25,0,0,7583.4087 +8821,10724,19184,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-999.14471,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.988245,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,454,112725.15,0,0,0,0,0,1033.3926 +8821,10725,19185,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,8.4026756,8.5123768,0,0,-946.85901,0,-9,-9,2021,13,0,0,0,4,3,0,0,0,0,0,0,1,0,14.801505,0,0,1,1,0,4.5981975,8.5288172,52.47,11.65,-9,-9,7,1,1,0,0,0,4,5,1,452,657028.19,447674.97,148958.09,0,0,0,3797.8416 +8822,10726,19186,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.2992487,8.3996019,0,0,0,-959.93512,0,1,1,2021,8,0,58,65,1,0,0,8.8063602,8.8063602,.05,.05,0,0,0,0,.035705119,0,1,1,0,5.9475431,0,44.83,57.81,-9,-9,8.333333333333334,1,1,0,0,9,4,5,1,3267,102634.27,66261.555,0,0,137.24847,0,1989.6382 +8823,10727,19187,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.5803156,7.422359,0,0,0,-1084.697,0,2,2,2021,12,1,26,26,1,1,0,7.4843206,7.4843206,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.88,41.04,-9,-9,1.666666666666667,1,1,0,0,11,7,3,1,1198,46165.094,32823.773,0,0,0,0,1196.5863 +8824,10728,19188,-9,19189,-9,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.7292,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,601,-79634.594,0,0,0,0,0,1426.0244 +8824,10728,19189,-9,-9,-9,1,0,33,0,1,0,2,2,-9,1,2,0,5.5165925,5.60425,0,0,-1043.5499,0,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.3880019,0,41.24,43.73,-9,-9,5,1,1,0,0,0,6,2,0,601,-79634.594,0,0,0,0,0,1426.0244 +8825,10729,19190,-9,19191,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.6332,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,9,3,1,326,463275.66,125642.03,321297.09,36439.164,8819.4082,2523.9648,2973.9722 +8825,10729,19191,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.3229003,8.3174896,7.5395684,0,0,-881.58502,0,2,1,2021,9,0,16,12,1,0,0,10.038306,10.038306,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1837525,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,12,9,3,1,326,463275.66,125642.03,321297.09,36439.164,8819.4082,2523.9648,2973.9722 +8825,10729,19192,-9,19191,-9,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1112.2098,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,3,1,326,463275.66,125642.03,321297.09,36439.164,8819.4082,2523.9648,2973.9722 +8826,10730,19193,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,6.6453538,6.3179603,0,0,0,-932.69086,-9,2,2,2021,14,2,8,0,1,2,0,9.5428925,9.5428925,.05,.05,0,0,0,0,0,118,1,1,0,0,0,46.33,55.93,-9,-9,5,1,1,0,0,2,9,2,0,2604,169307.8,-28089.066,0,0,0,0,906.16467 +8827,10731,19194,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.5499821,8.437788,0,0,0,-1064.6869,0,3,3,2021,11,0,38,38,1,0,0,13.068814,13.068814,0,0,0,0,0,0,0,0,0,0,0,2.5367501,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,184,190005.36,53346.973,103459.87,0,0,0,1542.7238 +8827,10732,19195,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.6626854,8.7700586,0,0,0,-1009.9769,0,-9,3,2021,7,0,50,38,1,0,0,12.406776,12.406776,.05,.05,0,0,0,0,0,0,0,0,0,2.824162,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,8,5,1,651,426386.31,101563.59,448325.97,82225.039,11282.771,0,2264.8054 +8828,10733,19196,19197,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.5535364,8.5943356,0,9,6,44.093208,0,2,2,2021,9,0,40,41,1,0,0,19.604156,19.604156,.05,.05,0,0,0,0,0,0,1,1,0,1.5327319,0,51.08,52.1,57.06,57.76,6.666666666666667,1,1,0,0,11,2,5,1,478.66666,463617.41,-679.19604,0,0,171.53259,17784.148,3934.5061 +8828,10733,19197,19196,-9,-9,1,0,30,1,1,0,2,2,-9,0,5,8.0633001,8.2278261,0,9,-6,-28.728981,0,-9,-9,2021,6,0,30,38,1,0,0,9.6405039,9.6405039,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.08,52.1,10,1,1,0,0,11,2,5,1,478.66666,463617.41,-679.19604,0,0,171.53259,17784.148,3934.5061 +8828,10733,19198,-9,19197,19196,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1135.507,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,5,1,478.66666,463617.41,-679.19604,0,0,171.53259,17784.148,3934.5061 +8829,10734,19199,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.5466156,7.8632684,0,0,0,-875.08765,0,2,2,2021,12,0,18,18,1,0,0,13.709221,13.709221,0,0,0,0,0,0,0,0,0,0,0,3.3958926,0,44.87,53.79,-9,-9,6.666666666666667,1,1,0,0,12,2,3,1,283,-77875.008,140130.47,0,0,0,0,-182.24763 +8830,10735,19200,-9,19203,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.91412,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8830,10735,19201,-9,19203,-9,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-924.8551,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8830,10735,19202,-9,19203,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.9777,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8830,10735,19203,-9,-9,-9,1,0,31,1,3,0,2,2,-9,1,4,0,0,0,0,0,-951.7019,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,48,57,-9,-9,7,1,1,0,0,3,6,1,0,980.5,-24833.26,0,120018.71,89060.32,0,0,2626.3594 +8831,10736,19204,19205,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,8.1184864,7.9203386,0,18,10,28.448055,0,3,3,2021,8,1,38,23,1,1,0,9.2263088,9.2263088,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.53,56.37,48,56,6.666666666666667,2,3,0,0,10,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19205,19204,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,0,0,0,18,-10,-68.636406,-9,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,44.53,56.37,7,2,3,0,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19206,-9,19205,19204,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-904.45776,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19207,-9,19205,19204,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.547,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8831,10736,19208,-9,19205,19204,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.65698,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,5,3,1,1208,325280.25,164702.16,184888.67,138932.11,0,0,998.48755 +8832,10737,19209,19210,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.0236311,8.1525965,12,3,48.647205,0,3,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.2052193,8.3226862,58.15,52.91,60.44,36.05,8.333333333333334,1,1,0,0,12,10,4,1,502.5,1884147.3,1058135.3,481567.09,0,0,0,7130.1421 +8832,10737,19210,19209,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,7.4122477,7.1700134,12,-3,12.189808,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4421558,7.0399613,60.44,36.05,58.15,52.91,8.333333333333334,1,1,0,0,8,10,4,1,502.5,1884147.3,1058135.3,481567.09,0,0,0,7130.1421 +8833,10738,19211,19212,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.1497922,7.4589667,0,10,5,129.01837,0,3,2,2021,9,0,45,40,1,0,0,4.2556729,4.2556729,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,59.46,46.99,54.48,42.8,8.333333333333334,1,1,0,0,12,2,4,1,251,956221.63,548235.38,272333.16,0,0,0,3289.3882 +8833,10738,19212,19211,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.3349657,8.1598873,0,10,-5,-134.01987,0,-9,-9,2021,8,1,40,45,1,1,0,9.0560932,9.0560932,0,0,0,0,0,0,0,2,0,0,0,7.2702761,0,54.48,42.8,59.46,46.99,8.333333333333334,1,1,0,0,10,2,4,1,251,956221.63,548235.38,272333.16,0,0,0,3289.3882 +8833,10739,19213,-9,19212,19211,1,1,30,0,0,0,2,2,-9,0,3,8.4051628,8.3517628,0,0,0,-1057.8007,0,1,2,2021,15,3,46,0,1,3,1,14.1496,14.1496,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.24,52.48,-9,-9,5,1,1,0,1,6,2,5,1,2768,53058.355,28859.43,0,0,0,0,2780.7446 +8834,10740,19214,19215,-9,-9,1,1,34,1,1,0,2,2,-9,0,3,7.6126852,7.7016187,0,3,5,-5.2783136,0,-9,-9,2021,12,0,20,15,1,0,0,11.615419,11.615419,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,52.99,51.28,5,1,1,0,0,3,13,3,0,526.33331,2681.9167,-28211.506,134016.88,90728.117,0,0,2885.8535 +8834,10740,19215,19214,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.5926504,7.6555638,0,3,-5,-40.244205,0,-9,-9,2021,10,1,30,30,1,1,0,8.0814724,8.0814724,0,0,0,0,0,0,0,0,1,1,0,1.4358515,0,52.99,51.28,41.34,56.62,8.333333333333334,1,1,0,0,7,13,3,0,526.33331,2681.9167,-28211.506,134016.88,90728.117,0,0,2885.8535 +8834,10740,19216,-9,19215,19214,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.5415,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,526.33331,2681.9167,-28211.506,134016.88,90728.117,0,0,2885.8535 +8835,10741,19217,19218,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,0,8.1963873,8.0381813,25,-1,-10.0479,0,1,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6882906,7.8336177,60.02,56.42,62.49,55.09,10,1,1,0,0,8,6,4,1,1337,1756314,1288344.8,373506.94,0,0,0,5561.3799 +8835,10741,19218,19217,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.9475894,8.2351465,28,1,-24.783737,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9863243,8.1203852,62.49,55.09,60.02,56.42,10,1,1,0,0,7,6,4,1,1337,1756314,1288344.8,373506.94,0,0,0,5561.3799 +8836,10742,19219,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,9.4387684,9.0955572,0,0,0,-1031.0636,0,2,-9,2021,12,0,46,47,1,0,0,18.73971,18.73971,.05,.05,0,0,0,0,0,0,0,0,0,2.2534471,0,52.53,47.24,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,376,418997.84,257481.78,543925.19,466352.63,22250.535,0,2691.8203 +8837,10743,19220,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,6,31,-59.389805,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,54.34,53.29,0,1,1,0,0,7,5,5,1,1621,-131383.7,0,0,0,0,0,760.27026 +8837,10744,19221,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,9.6014595,9.9025774,0,6,-31,17.612442,0,2,2,2021,9,0,40,35,1,0,0,51.659447,51.659447,0,0,.05,0,0,0,0,2,1,1,0,3.6056399,0,54.34,53.29,58.89,48.6,8.333333333333334,1,1,0,0,7,5,5,1,2993,-13200.291,-34065.543,0,0,0,0,5446.4717 +8838,10745,19222,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.1405187,7.1028805,0,0,0,-1018.5154,0,2,2,2021,6,0,20,25,1,0,0,8.5717802,8.5717802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,10,6,3,1,256,54092.5,-106873.38,144439.61,0,0,807.28998,1119.5431 +8839,10746,19223,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,8.5756664,8.7965517,0,0,0,-970.82782,0,2,1,2021,6,0,18,18,1,0,0,39.555492,39.555492,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,11,8,4,1,399,130347.08,96983.156,0,0,1372.9277,0,1977.7582 +8839,10746,19224,-9,19223,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-975.40967,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,8,4,1,399,130347.08,96983.156,0,0,1372.9277,0,1977.7582 +8839,10746,19225,-9,19223,-9,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1080.8536,-9,2,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.64,56.25,-9,-9,6.666666666666667,4,2,0,0,1,8,4,1,399,130347.08,96983.156,0,0,1372.9277,0,1977.7582 +8839,10747,19226,-9,19223,-9,1,0,21,0,1,0,2,2,-9,0,5,6.9559474,6.8840203,0,0,0,-998.60925,0,2,2,2021,8,1,24,24,1,1,1,5.6203809,5.6203809,0,0,0,0,0,0,0,0,1,1,0,0,0,66.64,46.59,-9,-9,10,4,2,0,0,2,8,2,1,1634,95884.141,0,0,0,0,0,778.39862 +8840,10748,19227,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.3803911,8.3296099,0,0,0,-1063.05,0,2,2,2021,22,10,40,40,1,10,0,15.153199,15.153199,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.88,54.48,-9,-9,6.666666666666667,1,1,0,0,13,4,5,1,274,455718.88,557524.44,0,0,0,0,1221.0465 +8841,10749,19228,19229,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,5.708878,5.5525217,12,-1,-158.98584,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.491014,5.6857734,44.02,55.16,54.73,40.87,8.333333333333334,1,1,0,0,7,9,5,1,645.5,1737488.4,1195541,345923,0,7166.8535,0,8030.7773 +8841,10749,19229,19228,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.9980221,8.7243967,12,1,-173.0703,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.6512995,8.6461382,54.73,40.87,44.02,55.16,8.333333333333334,1,1,0,0,11,9,5,1,645.5,1737488.4,1195541,345923,0,7166.8535,0,8030.7773 +8842,10750,19230,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1059.1588,-9,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,4.2384634,0,42.293884,0,1,1,0,0,0,55.45,9.790000000000001,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,2205,-267002.28,0,0,0,1493.5262,0,1633.8271 +8843,10751,19231,-9,-9,-9,1,1,60,0,0,0,1,1,-9,1,1,0,0,0,0,0,-994.83319,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.82,26.83,-9,-9,1.666666666666667,1,1,1,0,0,10,1,0,219,211838.61,0,69848.578,0,0,0,1549.9856 +8844,10752,19232,-9,19236,19235,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.98694,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19233,-9,19236,19235,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-950.94067,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19234,-9,19236,19235,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1112.3423,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19235,19236,-9,-9,1,1,35,1,3,0,2,2,-9,0,4,8.7202435,8.5204477,0,7,1,149.18309,0,-9,-9,2021,10,0,43,57,1,1,0,18.797953,18.797953,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,12.47,65.98,7,4,1,0,0,1,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8844,10752,19236,19235,-9,-9,1,0,34,1,3,0,2,2,-9,1,4,8.2645121,8.2371464,0,7,-1,-80.391342,0,3,3,2021,32,12,29,26,1,12,0,12.412949,12.412949,0,0,0,0,0,0,0,2,1,1,0,0,0,12.47,65.98,50,57,6.666666666666667,1,1,0,0,8,13,4,1,1973.8,124002.21,74215.844,141275.63,110480.87,24907.508,0,4304.9795 +8845,10753,19237,19238,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.2681236,8.0317602,0,33,-2,96.598717,0,2,3,2021,8,0,46,40,1,0,0,9.3936739,9.3936739,0,0,.05,0,0,0,0,2,0,0,0,0,0,55.51,51.57,40.01,44.17,8.333333333333334,1,1,0,0,6,5,5,1,502,964775.81,987975.13,148873.16,0,0,0,3160.3398 +8845,10753,19238,19237,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.4871721,8.5580263,0,33,2,-54.453018,0,-9,-9,2021,13,3,41,40,1,3,0,13.02834,13.02834,0,0,0,0,0,0,0,14.5,0,0,0,0,0,40.01,44.17,55.51,51.57,3.333333333333333,1,1,0,0,6,5,5,1,502,964775.81,987975.13,148873.16,0,0,0,3160.3398 +8845,10754,19239,-9,19238,19237,1,1,21,0,0,0,2,2,-9,0,4,7.5659814,7.9690161,0,0,0,-1211.5776,0,2,1,2021,8,0,37,38,1,0,1,7.5608406,7.5608406,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,5,3,1,671,126301.18,31871.873,0,0,0,0,1277.2999 +8846,10755,19240,-9,19241,19242,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.6052,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,687.33331,429550.72,270618.66,236109.56,99061.625,0,19366.775,3201.646 +8846,10755,19241,19242,-9,-9,1,0,33,0,2,0,2,2,-9,0,4,8.2416487,8.2342625,0,15,-15,-85.103554,0,2,2,2021,12,0,35,25,1,0,0,10.059802,10.059802,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,57.35,54.74,57.22,8.333333333333334,2,3,0,0,12,8,4,1,687.33331,429550.72,270618.66,236109.56,99061.625,0,19366.775,3201.646 +8846,10755,19242,19241,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.0288706,8.1913538,0,15,15,20.595274,0,2,2,2021,3,0,14,30,1,0,0,26.904602,26.904602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,46.4,57.35,8.333333333333334,2,3,0,0,12,8,4,1,687.33331,429550.72,270618.66,236109.56,99061.625,0,19366.775,3201.646 +8847,10756,19243,19244,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,8.0441847,8.2995949,0,27,-5,25.816103,-9,3,-9,2021,8,0,30,0,1,0,0,13.376145,13.376145,0,0,0,0,0,0,0,7,1,1,0,0,0,38.97,31.24,61.99,34.03,8.333333333333334,1,1,0,0,11,8,4,1,1051.5,473897.06,146830.48,188055.41,0,0,0,3973.7861 +8847,10756,19244,19243,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,8.3034449,8.1663761,27,5,11.87683,-9,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,.05,0,0,0,0,14.5,1,1,0,0,8.3014212,61.99,34.03,38.97,31.24,5,1,1,0,0,7,8,4,1,1051.5,473897.06,146830.48,188055.41,0,0,0,3973.7861 +8848,10757,19245,-9,19247,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.10931,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,1,0,599,38464.484,0,0,0,0,0,1314.3187 +8848,10757,19246,-9,19247,-9,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9379,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,1,0,599,38464.484,0,0,0,0,0,1314.3187 +8848,10757,19247,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,2,0,0,0,0,0,-884.83838,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.6,46.82,-9,-9,8.333333333333334,1,1,0,0,1,12,1,0,599,38464.484,0,0,0,0,0,1314.3187 +8849,10758,19248,19249,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.017683,9.2655058,0,19,13,-51.531075,0,2,2,2021,12,0,37,37,1,0,0,20.927738,20.927738,.05,.05,0,0,0,0,0,2,1,1,0,4.4325361,0,55.51,51.57,41.99,53.75,8.333333333333334,1,1,0,0,8,1,5,1,922.66669,580475.88,661901.5,319377.22,154775.83,0,2776.0256,4711.4492 +8849,10758,19249,19248,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.5785227,8.6623001,0,19,-13,-30.801491,0,2,2,2021,12,0,40,40,1,0,0,13.31229,13.31229,.05,.05,0,0,0,0,0,7,1,1,0,4.4904013,0,41.99,53.75,55.51,51.57,6.666666666666667,1,1,0,0,10,1,5,1,922.66669,580475.88,661901.5,319377.22,154775.83,0,2776.0256,4711.4492 +8849,10758,19250,-9,19248,19249,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1079.4639,-9,1,1,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,922.66669,580475.88,661901.5,319377.22,154775.83,0,2776.0256,4711.4492 +8850,10759,19251,-9,19254,19252,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.1993,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8850,10759,19252,19254,-9,-9,1,1,46,0,3,0,1,1,-9,0,4,8.614603,8.3214245,0,20,8,67.936523,0,3,3,2021,9,0,37,37,1,1,0,12.901754,12.901754,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,49,56,8,2,3,0,0,10,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8850,10759,19253,-9,19254,19252,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-892.35168,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8850,10759,19254,19252,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,0,0,0,20,-8,122.10696,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,52,55,7,2,3,0,0,0,6,3,1,852,706615.56,97191.68,269107.44,74888.625,0,0,1633.5198 +8851,10760,19255,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.986939,6.965487,0,0,0,-997.86475,0,2,2,2021,15,2,21,21,1,2,0,5.7408423,5.7408423,0,0,0,0,0,0,0,0,0,0,0,0,0,46.9,56.66,-9,-9,8.333333333333334,1,1,0,1,12,9,2,1,616,420419.31,101137.16,264670.19,98191.938,0,0,878.06305 +8852,10761,19256,19257,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,6.6208501,6.6391749,56,-3,57.453857,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6395111,6.4541073,56.35,43.13,57.93,46.29,8.333333333333334,1,1,0,0,3,4,2,1,387,790218,518622.19,228927.58,0,0,5442.5659,1788.8224 +8852,10761,19257,19256,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.9145274,5.7405281,56,3,-68.862991,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.2662292,0,23.233221,0,1,1,0,6.3995399,6.2888775,57.93,46.29,56.35,43.13,8.333333333333334,1,1,0,0,0,4,2,1,387,790218,518622.19,228927.58,0,0,5442.5659,1788.8224 +8853,10762,19258,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.9094434,7.1990771,0,0,0,-973.38831,0,3,-9,2021,12,0,21,16,1,0,0,5.211729,5.211729,0,0,0,0,0,0,0,2,1,1,0,0,0,48.18,53.42,-9,-9,6.666666666666667,4,2,0,1,4,9,2,0,288,101447.05,0,0,0,0,-383.14667,754.03265 +8854,10763,19259,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.2052927,8.1129541,0,0,0,-950.54407,-9,2,2,2021,8,0,37,0,1,0,0,11.194226,11.194226,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.07,46.29,-9,-9,6.666666666666667,1,1,0,0,10,12,3,0,710,64173.645,33686.242,0,0,28710.334,0,852.13208 +8854,10764,19260,-9,-9,19259,1,0,18,0,1,0,2,2,1,0,3,7.0503573,7.1567535,0,0,0,-980.6994,-9,-9,2,2021,20,8,20,0,1,8,1,5.1460752,5.1460752,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,45.07,-9,-9,1.666666666666667,1,1,0,0,1,12,2,0,138,-87218.055,0,0,0,1352.6984,0,731.21051 +8855,10765,19261,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.2804594,8.233819,0,0,0,-946.91797,0,2,2,2021,12,0,42,45,1,0,0,10.700621,10.700621,0,0,0,0,0,0,0,0,0,0,0,2.4085288,0,35.8,59.5,-9,-9,3.333333333333333,1,1,0,0,11,2,4,0,641,156386.45,31098.057,219704.8,161489.84,0,0,2221.6677 +8856,10766,19262,19263,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.7569752,6.9495802,55,-1,-8.0697088,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1444802,6.3781886,54.03,47.14,48.85,42.66,10,1,1,0,0,0,10,2,1,499.5,486528.56,41610.516,509248.97,0,0,0,2244.7537 +8856,10766,19263,19262,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.784225,6.7336345,55,1,25.44496,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4860301,6.703033,48.85,42.66,54.03,47.14,6.666666666666667,1,1,0,0,0,10,2,1,499.5,486528.56,41610.516,509248.97,0,0,0,2244.7537 +8857,10767,19264,19265,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,39,-3,-124.18853,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8902915,0,64.40000000000001,42,60.12,54.8,8.333333333333334,1,1,0,0,8,7,2,1,947.5,301803.19,161360.77,132380.73,0,4437.855,0,2548.9509 +8857,10767,19265,19264,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.014925,7.2820916,39,3,46.656784,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7409286,6.9477582,60.12,54.8,64.40000000000001,42,10,1,1,0,0,2,7,2,1,947.5,301803.19,161360.77,132380.73,0,4437.855,0,2548.9509 +8858,10768,19266,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1025.4009,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.19,34.68,-9,-9,6.666666666666667,1,1,0,0,4,10,1,1,643,105098.75,0,0,0,0,0,321.55719 +8859,10769,19267,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.0735784,6.9450836,0,0,0,-990.18091,0,2,2,2021,8,1,16,16,1,1,0,9.3178148,9.3178148,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,8.333333333333334,3,4,0,0,9,8,2,0,291,401953.44,-23215.666,327111.88,40095.539,0,0,1629.4658 +8860,10770,19268,19271,-9,-9,1,0,54,0,2,0,2,2,-9,0,5,6.3278542,6.2521124,0,17,6,74.499352,0,2,3,2021,9,1,8,9,1,1,0,9.1114578,9.1114578,.05,.05,0,0,0,0,0,7,1,0,1,0,0,48.77,60.16,60.12,54.8,6.666666666666667,1,1,0,1,6,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8860,10770,19269,-9,19268,19271,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-995.13818,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8860,10770,19270,-9,19268,19271,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.2244,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8860,10770,19271,19268,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,8.1977358,8.3874846,0,17,-6,85.139336,0,3,3,2021,7,0,60,50,1,0,0,7.4612498,7.4612498,.05,.05,0,0,0,0,0,2,1,0,1,1.975561,0,60.12,54.8,48.77,60.16,6.666666666666667,1,1,0,0,12,2,3,1,613.75,31883.783,74071.172,93427.617,60085.922,0,0,3793.9023 +8861,10771,19272,19273,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,5.7312703,5.7521315,65,2,-50.044605,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4360871,5.8666415,59.31,29.15,62.49,55.09,6.666666666666667,1,1,0,0,0,5,2,1,1582,428476.56,136874.22,149611.31,0,0,0,884.59021 +8861,10771,19273,19272,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,65,-2,10.929529,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,59.31,29.15,10,1,1,0,0,0,5,2,1,1582,428476.56,136874.22,149611.31,0,0,0,884.59021 +8862,10772,19274,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,7.7634563,7.4720483,0,0,-960.86749,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.153791,7.4085174,61.01,40.76,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,926,526325.69,380634.88,140614.69,0,0,0,681.83472 +8863,10773,19275,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8637252,7.6725464,0,0,0,-942.65485,0,3,3,2021,9,0,30,21,1,0,0,10.723328,10.723328,.05,.05,0,0,0,0,0,7,1,1,0,0,0,45.56,60.26,-9,-9,5,1,1,0,0,9,12,4,0,175,124814.16,266269.53,0,0,0,0,1342.6937 +8864,10774,19276,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.2412062,8.5422421,0,0,0,-1056.4506,0,2,2,2021,14,2,40,40,1,2,0,12.750769,12.750769,.05,.05,0,0,0,0,0,0,0,0,0,3.6432619,0,27.87,59.87,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,370,56804.758,38285.766,0,0,0,0,2245.4087 +8865,10775,19277,19278,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,3.3247454,3.3546662,8,-6,166.18925,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,3.0899425,50.71,39.12,45.56,24.24,10,1,1,0,0,0,11,3,1,1601.5,764230,393207.53,255680.59,0,0,0,2586.3691 +8865,10775,19278,19277,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,7.3780985,7.3719401,8,6,7.3028312,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,24.665224,0,0,1,1,0,0,7.466116,45.56,24.24,50.71,39.12,8.333333333333334,1,1,0,0,0,11,3,1,1601.5,764230,393207.53,255680.59,0,0,0,2586.3691 +8866,10776,19279,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.7379436,8.6125202,0,0,0,-1045.7511,0,1,2,2021,5,0,42,45,1,0,0,13.154776,13.154776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,8,6,5,1,559,-190756.63,-26020.316,0,0,0,-91.860947,2108.009 +8867,10777,19280,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,7.2986431,7.4180393,0,0,-1082.183,0,3,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.238883,7.5264206,28.94,36.18,-9,-9,5,1,1,0,0,0,9,3,1,195,615625.69,204099.61,299021.41,0,0,4484.4067,1635.6833 +8868,10778,19281,19282,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,25,0,93.686203,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.92,60.71,49,50,8.333333333333334,2,3,0,0,1,4,4,1,577.5,314382.09,6140.8887,152645.81,53571.199,0,0,2839.9253 +8868,10778,19282,19281,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.7379208,8.7788591,0,10,0,-27.139236,0,-9,-9,2021,11,0,50,20,1,1,0,19.631771,19.631771,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,50,46.92,60.71,7,2,3,0,0,1,4,4,1,577.5,314382.09,6140.8887,152645.81,53571.199,0,0,2839.9253 +8868,10779,19283,-9,19281,19282,1,1,33,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1008.5238,0,2,3,2021,6,0,0,35,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,2,3,1,0,4,4,1,1,332,68037.438,0,0,0,0,0,0 +8868,10780,19284,-9,19281,19282,1,1,28,0,0,0,1,1,-9,0,4,8.4289265,8.374795,0,0,0,-1013.6796,0,2,3,2021,6,0,37,37,1,0,1,14.910052,14.910052,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,6,4,4,1,899,26239.305,30540.779,0,0,0,0,2272.0491 +8869,10781,19285,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.9582367,9.0842066,0,0,0,-995.45026,0,2,2,2021,10,2,38,38,1,2,0,17.712729,17.712729,.05,.05,.05,0,0,0,0,0,0,0,0,2.9379413,0,28.41,64.05,-9,-9,5,1,1,0,0,12,8,5,0,896,449785,138630.86,317281.59,35647.734,2405.4695,0,2847.8828 +8870,10782,19286,-9,-9,-9,1,1,39,0,0,0,3,3,-9,0,3,0,0,0,0,0,-898.11255,-9,3,3,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.08,57.2,-9,-9,5,1,1,0,0,4,1,1,0,983,204790.8,0,0,0,0,0,613.17236 +8871,10783,19287,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.8081188,7.8534837,0,0,0,-980.78052,0,2,3,2021,12,3,38,38,1,3,0,8.5966749,8.5966749,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.36,56.72,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,730,-55957.586,61679.59,0,0,0,1076.5356,1297.9388 +8871,10783,19288,-9,19287,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-965.18976,-9,2,-9,2021,26,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.88,65.75,-9,-9,5,1,1,0,1,2,2,4,1,730,-55957.586,61679.59,0,0,0,1076.5356,1297.9388 +8872,10784,19289,19290,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,9.6040926,9.6527748,0,6,2,9.6254377,0,3,2,2021,13,2,6,12,1,2,0,302.68414,302.68414,0,0,0,0,0,0,0,0,1,1,0,0,0,46.86,39.2,51,48,1.666666666666667,1,1,0,0,7,13,5,1,1120,2372466.5,2245901.3,203582.45,0,3319.8926,0,6626.2344 +8872,10784,19290,19289,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.4337072,8.6530561,0,6,-2,118.03532,-9,-9,-9,2021,10,0,12,0,1,1,0,38.636795,38.636795,0,0,0,0,0,0,0,0,1,1,0,4.7899342,0,51,48,46.86,39.2,7,4,1,0,0,1,13,5,1,1120,2372466.5,2245901.3,203582.45,0,3319.8926,0,6626.2344 +8873,10785,19291,19292,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.8562193,9.0316057,7.3560205,18,-5,-32.291737,0,2,2,2021,18,6,41,40,1,6,0,20.289446,20.289446,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.8167114,37.85,54.28,49.92,34.09,8.333333333333334,1,1,0,0,14,10,5,1,394.5,2343874.5,1492112.8,534781.38,0,0,0,3225.0835 +8873,10785,19292,19291,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,18,5,58.220058,0,-9,3,2021,8,1,0,20,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.92,34.09,37.85,54.28,8.333333333333334,1,1,0,0,11,10,5,1,394.5,2343874.5,1492112.8,534781.38,0,0,0,3225.0835 +8874,10786,19293,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.4636583,8.1070242,0,0,0,-1000.8188,0,2,2,2021,9,2,24,24,1,2,0,15.287668,15.287668,.05,.05,0,0,0,0,0,14.5,0,0,0,2.6926265,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,502,132963.58,9739.3906,121048.67,0,0,0,1335.9141 +8875,10787,19294,19295,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.3112764,6.4248004,49,-2,-4.5014815,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2362015,6.4488468,35.03,63.83,38.6,52.76,6.666666666666667,1,1,0,0,4,6,3,1,241,935895.38,431845.53,293867.97,0,0,0,2474.7117 +8875,10787,19295,19294,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.0000515,7.7262645,49,2,-135.56316,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0531607,38.6,52.76,35.03,63.83,8.333333333333334,1,1,0,0,8,6,3,1,241,935895.38,431845.53,293867.97,0,0,0,2474.7117 +8876,10788,19296,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.7016611,8.4671831,0,0,0,-1010.3908,0,2,1,2021,13,1,40,40,1,1,0,13.798441,13.798441,.05,.05,0,0,0,0,0,0,0,0,0,.086350478,0,35.85,45.71,-9,-9,3.333333333333333,1,1,0,0,15,9,5,0,483,492701.91,230522.48,380181.41,3907.2202,0,0,2654.8115 +8877,10789,19297,19298,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.7857881,8.104538,10,1,1.714488,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8894739,57.06,57.76,59.15,49.67,10,1,1,0,0,5,13,3,1,859.5,1040256.6,620053.75,256053.19,0,0,0,3306.9995 +8877,10789,19298,19297,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,10,-1,-23.712961,0,2,1,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.15,49.67,57.06,57.76,8.333333333333334,1,1,0,0,6,13,3,1,859.5,1040256.6,620053.75,256053.19,0,0,0,3306.9995 +8878,10790,19299,19301,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.6302032,7.3193693,0,20,4,1.3272272,0,2,2,2021,5,0,30,30,1,0,0,7.6146307,7.6146307,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,50.5,52.77,10,1,1,0,0,10,5,5,0,501.33334,251673.13,335128,94917.25,0,2497.3982,0,3922.6716 +8878,10790,19300,-9,19299,19301,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1138.2382,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.14,59.14,-9,-9,1.666666666666667,1,1,0,0,0,5,5,0,501.33334,251673.13,335128,94917.25,0,2497.3982,0,3922.6716 +8878,10790,19301,19299,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.2522602,9.4072361,0,7,-4,45.14978,0,-9,-9,2021,9,1,40,50,1,1,0,25.636763,25.636763,.05,.05,.05,0,0,0,0,0,0,0,0,2.4803064,0,50.5,52.77,55.19,54.26,6.666666666666667,1,1,0,0,10,5,5,0,501.33334,251673.13,335128,94917.25,0,2497.3982,0,3922.6716 +8879,10791,19302,-9,19303,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.29095,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,1,0,542,75523.422,18210.898,0,0,0,0,854.78479 +8879,10791,19303,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,0,0,0,0,0,-978.59613,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.08,58.42,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,542,75523.422,18210.898,0,0,0,0,854.78479 +8880,10792,19304,-9,19305,19306,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.4945,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8880,10792,19305,19306,-9,-9,1,0,31,1,2,0,1,1,-9,1,3,5.0741186,5.497869,0,7,0,83.974411,0,2,3,2021,12,1,2,0,1,1,0,9.3244019,9.3244019,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,34.94,46.15,45.99,6.666666666666667,1,1,0,0,7,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8880,10792,19306,19305,-9,-9,1,1,31,1,2,0,3,3,-9,1,4,7.8234296,7.8833785,0,7,0,-115.35491,0,3,2,2021,13,2,38,39,1,2,0,7.7494674,7.7494674,0,0,0,0,0,0,0,0,1,1,0,0,0,46.15,45.99,52.48,34.94,5,1,1,0,0,8,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8880,10792,19307,-9,19305,19306,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.69843,-9,1,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,2233,108562.24,0,149532.63,62558.242,0,0,2676.9175 +8881,10793,19308,-9,19310,19309,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-761.16583,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8881,10793,19309,19310,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.0172462,9.1739922,0,11,0,87.94101,0,2,2,2021,10,0,35,35,1,0,0,30.737568,30.737568,.05,.05,0,0,0,0,0,0,1,1,0,3.8614526,0,43.54,59.6,39.26,60.13,6.666666666666667,1,1,0,0,13,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8881,10793,19310,19309,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.0157766,8.2103863,0,11,0,100.43713,0,2,2,2021,20,7,21,21,1,7,0,18.598215,18.598215,0,0,0,0,0,0,0,2,1,1,0,0,0,39.26,60.13,43.54,59.6,5,1,1,0,0,14,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8881,10793,19311,-9,19310,19309,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.14758,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,393.5,600398.13,22770.508,709358.13,284485.88,0,0,4389.3472 +8882,10794,19312,19313,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,8.0198898,7.6779494,0,2,-3,38.947002,0,-9,-9,2021,9,1,40,38,1,1,0,7.7298541,7.7298541,0,0,0,0,0,0,0,0,1,1,0,0,0,48.6,49.46,41.13,46.59,8.333333333333334,1,1,0,0,5,5,5,0,305,102159.63,0,0,0,0,0,3256.5313 +8882,10794,19313,19312,-9,-9,1,1,26,0,0,0,2,2,-9,1,2,8.37675,8.491663,0,2,3,-42.599506,0,2,2,2021,19,7,44,45,1,7,0,14.287952,14.287952,0,0,0,0,0,0,0,0,1,1,0,0,0,41.13,46.59,48.6,49.46,6.666666666666667,1,1,0,0,6,5,5,0,305,102159.63,0,0,0,0,0,3256.5313 +8883,10795,19314,19315,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.7925396,8.6790714,0,19,2,173.05962,-9,-9,-9,2021,8,0,45,0,1,0,0,19.252172,19.252172,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,33.85,41.94,8.333333333333334,1,1,0,0,12,11,5,1,578.5,752692.63,679738.5,221670.11,86288.469,3070.4277,5934.0161,3888.9888 +8883,10795,19315,19314,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,8.042923,7.7807441,0,16,-2,27.985836,0,-9,-9,2021,20,9,70,65,1,9,0,5.6243086,5.6243086,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.85,41.94,55.19,54.26,8.333333333333334,1,1,0,0,11,11,5,1,578.5,752692.63,679738.5,221670.11,86288.469,3070.4277,5934.0161,3888.9888 +8884,10796,19316,19317,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.527853,7.5177445,0,7,12,109.8717,0,2,-9,2021,6,0,20,20,1,0,0,10.378484,10.378484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,50,54,8.333333333333334,1,1,0,0,5,4,5,1,833.5,1652852.8,1544173.6,227114.38,109825.88,1414.594,0,2784.1885 +8884,10796,19317,19316,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,8.8904238,8.8158236,0,7,-12,-43.525127,0,2,2,2021,10,0,40,37,1,1,0,21.199574,21.199574,0,0,0,0,0,0,0,0,1,1,0,4.1856618,0,50,54,60.29,52.11,8,1,1,0,0,1,4,5,1,833.5,1652852.8,1544173.6,227114.38,109825.88,1414.594,0,2784.1885 +8885,10797,19318,19319,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,6.0480886,6.1258631,9,-1,-95.526688,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.9070616,47.96,34.1,36.35,40.14,6.666666666666667,1,1,0,0,4,8,2,0,309,383560.59,168246.69,120190.73,0,4069.2422,1220.4399,2564.8608 +8885,10797,19319,19318,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.0279517,4.975914,9,1,104.52584,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0093966,4.647418,36.35,40.14,47.96,34.1,5,1,1,0,0,0,8,2,0,309,383560.59,168246.69,120190.73,0,4069.2422,1220.4399,2564.8608 +8886,10798,19320,19321,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,57,-4,50.860111,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3083141,0,60.3,43.72,60.87,47.63,10,1,1,0,0,0,7,4,1,474,1646976.3,380856.66,1344775.5,0,0,0,3889.8174 +8886,10798,19321,19320,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,8.3705997,8.3054848,57,4,-19.598255,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9330626,8.577692,60.87,47.63,60.3,43.72,10,1,1,0,0,0,7,4,1,474,1646976.3,380856.66,1344775.5,0,0,0,3889.8174 +8887,10799,19322,-9,19327,19326,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1033.0035,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19323,-9,19327,19326,1,0,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1085.2678,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19324,-9,19327,19326,1,1,16,1,4,0,2,2,-9,0,5,0,0,0,0,0,-1112.4182,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19325,-9,19327,19326,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-955.52643,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19326,19327,-9,-9,1,1,56,1,4,0,2,2,-9,0,3,8.3487806,8.2103834,0,3,5,64.394081,0,1,2,2021,10,0,48,40,1,1,0,10.161714,10.161714,0,0,0,0,0,0,0,0,1,1,0,4.334022,0,50,49,49.53,58.64,7,1,1,0,0,1,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10799,19327,19326,-9,-9,1,0,51,1,4,0,2,2,-9,0,5,0,0,0,3,-5,64.394684,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4880023,0,49.53,58.64,50,49,8.333333333333334,1,1,0,0,0,13,3,0,880.33331,170100.91,121102.69,121007.78,19236.617,14964.947,0,4341.6333 +8887,10800,19328,-9,19329,-9,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1144.3325,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,0,385,7115.3018,2006.2715,0,0,1059.8948,0,1558.6428 +8887,10800,19329,-9,19327,19326,1,0,26,1,4,0,2,2,-9,0,4,7.5651112,7.4948764,0,0,0,-1136.1111,0,2,2,2021,13,2,30,30,1,2,1,6.7538009,6.7538009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.97,53.41,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,385,7115.3018,2006.2715,0,0,1059.8948,0,1558.6428 +8887,10801,19330,-9,19327,19326,1,1,24,1,4,0,1,1,-9,0,4,7.944314,7.9705849,0,0,0,-940.89478,0,2,2,2021,15,4,40,40,1,4,1,8.8059778,8.8059778,0,0,0,0,0,0,0,0,1,1,0,0,0,38.11,59.76,-9,-9,5,1,1,0,0,2,13,4,0,5776,100040.98,0,0,0,2613.1404,0,1119.3568 +8887,10802,19331,-9,19327,19326,1,1,22,1,4,0,2,2,-9,0,4,8.093852,8.1530161,0,0,0,-1068.2711,0,2,2,2021,10,0,37,40,1,1,1,8.5482244,8.5482244,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,4,0,477,27206.012,0,0,0,0,0,2281.0474 +8887,10803,19332,-9,19327,19326,1,1,21,1,4,0,2,2,-9,0,4,8.3412914,8.3820419,0,0,0,-990.36438,0,2,2,2021,6,1,40,58,1,1,1,14.613069,14.613069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,5,13,5,0,417,92232.656,-107521.18,0,0,1763.083,0,2529.0615 +8887,10804,19333,-9,19327,19326,1,0,19,1,4,0,2,2,-9,0,5,8.0147905,7.8158536,0,0,0,-1018.9124,0,2,2,2021,12,1,36,36,1,1,1,8.5798273,8.5798273,0,0,0,0,0,0,0,0,1,1,0,1.0432734,0,49.02,58.89,-9,-9,0,1,1,0,0,2,13,3,0,2668,-62941.539,0,74470.086,76373.805,0,0,1231.1077 +8888,10805,19334,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-963.62891,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.93,52.64,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,159,-59047.012,0,0,0,0,0,2078.623 +8889,10806,19335,19336,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.7338886,8.6186953,0,14,2,-56.310997,0,3,3,2021,9,0,47,43,1,0,0,17.101786,17.101786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.57,62.68,41.37,42.7,8.333333333333334,3,4,0,1,9,7,5,1,527.5,6362.8657,51015.133,0,0,4914.1611,2653.1963,2333.9646 +8889,10806,19336,19335,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,6.4964342,6.472806,0,14,-2,23.150599,0,3,3,2021,13,2,15,18,1,2,0,5.3356957,5.3356957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.37,42.7,43.57,62.68,3.333333333333333,1,1,0,1,8,7,5,1,527.5,6362.8657,51015.133,0,0,4914.1611,2653.1963,2333.9646 +8890,10807,19337,19338,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.8673501,6.9394765,53,0,9.5971489,0,3,-9,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.102788,29.47,53.27,41.74,44.5,3.333333333333333,1,1,0,0,3,11,2,1,502.5,381115.5,282067.06,224796.67,0,0,0,1816.5776 +8890,10807,19338,19337,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.735137,5.8314548,53,0,40.973988,0,3,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6414242,41.74,44.5,29.47,53.27,3.333333333333333,1,1,0,0,0,11,2,1,502.5,381115.5,282067.06,224796.67,0,0,0,1816.5776 +8891,10808,19339,-9,19340,19341,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-988.51276,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,1370.6666,1526060.6,1108759.5,254241.97,0,0,0,3125.1418 +8891,10808,19340,19341,-9,-9,1,0,45,1,2,0,2,2,-9,0,4,7.6122947,7.5861292,0,3,-11,-128.44801,0,-9,-9,2021,20,8,30,36,1,8,0,8.4820452,8.4820452,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,40.21,39.84,3.333333333333333,1,1,0,0,6,2,4,1,1370.6666,1526060.6,1108759.5,254241.97,0,0,0,3125.1418 +8891,10808,19341,19340,-9,-9,1,1,56,1,2,0,2,2,-9,0,2,8.1777344,8.2902889,0,3,11,-14.912049,-9,-9,-9,2021,24,12,38,0,1,12,0,12.352221,12.352221,.05,.05,.05,0,0,0,0,0,1,1,0,4.3381939,0,40.21,39.84,40.48,60.05,3.333333333333333,1,1,0,0,9,2,4,1,1370.6666,1526060.6,1108759.5,254241.97,0,0,0,3125.1418 +8891,10809,19342,19344,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,8.093708,8.1114187,0,1,0,67.848259,-9,-9,-9,2021,16,5,25,0,1,5,0,12.142365,12.142365,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.13,50.05,51.24,58.84,6.666666666666667,1,1,0,0,0,2,3,1,2029.3334,68962.344,29619.873,0,0,21963.646,610.58112,2723.4827 +8891,10809,19343,-9,19342,19344,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.98456,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,3,1,2029.3334,68962.344,29619.873,0,0,21963.646,610.58112,2723.4827 +8891,10809,19344,19342,19340,19341,1,1,25,1,2,0,2,2,-9,0,4,7.8591523,8.0832224,0,1,0,-48.44577,-9,2,2,2021,12,0,37,0,1,0,0,8.4506693,8.4506693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,38.13,50.05,8.333333333333334,1,1,0,0,8,2,3,1,2029.3334,68962.344,29619.873,0,0,21963.646,610.58112,2723.4827 +8892,10810,19345,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-879.62769,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.48047474,0,1,1,0,0,0,33.3,26.82,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,734,-177921.42,77500.117,0,0,0,0,789.90735 +8892,10811,19346,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1047.1282,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.29,21.51,-9,-9,5,1,1,0,0,0,12,1,0,2325,89567.188,61736.598,0,0,0,0,2102.1494 +8893,10812,19347,-9,-9,-9,1,0,34,1,1,0,2,2,-9,0,5,7.9054289,7.8706279,0,12,-10,46.239498,0,-9,2,2021,12,0,37,-9,1,0,0,11.056867,11.056867,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.44,61.22,53.44,55.06,10,1,1,0,0,13,5,4,1,1436.5,-111435.11,52766.762,0,0,0,0,1438.3253 +8893,10812,19348,-9,19347,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-916.02698,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,5,4,1,1436.5,-111435.11,52766.762,0,0,0,0,1438.3253 +8893,10813,19349,-9,-9,-9,1,0,44,1,1,0,1,1,-9,0,4,8.218873,7.8946409,0,12,10,-32.745342,0,3,2,2021,7,0,38,38,1,0,0,8.3360977,8.3360977,0,0,0,0,0,0,0,0,0,0,0,0,0,53.44,55.06,43.44,61.22,8.333333333333334,1,1,0,0,13,5,4,1,772,-89876.07,0,0,0,3808.6248,1686.292,1367.6357 +8894,10814,19350,19351,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.9663696,9.2674236,0,4,1,36.644905,0,-9,-9,2021,14,2,50,50,1,2,0,20.22876,20.22876,0,0,0,0,0,0,0,0,0,0,0,1.1904134,0,41.3,60.77,57.16,56.15,8.333333333333334,1,1,0,0,3,8,5,0,708,217051.38,-20438.553,279988.38,194930.75,2538.5325,-231.40955,5351.5771 +8894,10814,19351,19350,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,9.0433998,9.0307312,0,4,-1,-44.647926,0,1,1,2021,3,0,55,50,1,0,0,13.174879,13.174879,.05,.05,.05,0,0,0,0,0,0,0,0,5.1971278,0,57.16,56.15,41.3,60.77,8.333333333333334,1,1,0,0,6,8,5,0,708,217051.38,-20438.553,279988.38,194930.75,2538.5325,-231.40955,5351.5771 +8895,10815,19352,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.7280846,5.7990279,0,0,-1094.11,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0372791,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,362,329893.88,127164.91,143199.45,0,0,0,-320.08585 +8896,10816,19353,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.7002654,6.9282098,0,0,-1133.985,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5395637,7.0341988,49.35,59.64,-9,-9,5,1,1,0,0,0,11,2,1,1687,598077,9183.582,299660.88,0,0,0,1900.5466 +8897,10817,19354,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0566368,8.2206659,0,2,-8,130.90958,-9,-9,-9,2021,10,0,40,0,1,1,0,11.78495,11.78495,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,52.17,30.53,7,4,1,0,0,1,11,4,1,486,73069.328,142743.23,0,0,11346.298,0,1965.8296 +8897,10818,19355,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.8386269,7.7700019,0,2,8,3.4893882,0,2,2,2021,6,0,32,32,1,0,0,8.5656939,8.5656939,0,0,0,0,0,0,0,0,0,0,0,8.5204716,0,52.17,30.53,50,57,8.333333333333334,1,1,0,0,7,11,4,1,1275,-81564.297,0,0,0,2895.9592,0,2049.0735 +8898,10819,19356,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,6.2500105,5.9027185,0,0,-945.95032,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8532414,50.45,46.95,-9,-9,1.666666666666667,1,1,0,0,0,12,2,0,811,99587.758,139197.22,106168.57,0,0,0,111.72774 +8899,10820,19357,19358,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.5033054,7.7191138,0,25,-4,45.155106,0,3,3,2021,6,0,10,40,1,0,0,24.640902,24.640902,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.05,52.71,8.333333333333334,1,1,0,0,10,2,5,1,910.5,2672899.5,2246536.5,414407.56,23505.77,0,0,3929.1375 +8899,10820,19358,19357,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.1729174,9.1805639,0,8,4,103.85265,0,-9,-9,2021,8,0,47,46,1,0,0,23.734547,23.734547,.05,.05,0,0,0,0,0,2,0,0,0,8.243619,0,53.05,52.71,57.16,56.15,8.333333333333334,1,1,0,0,6,2,5,1,910.5,2672899.5,2246536.5,414407.56,23505.77,0,0,3929.1375 +8900,10821,19359,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,9.0789537,9.3422661,0,0,0,-957.27661,0,2,2,2021,21,9,36,36,1,9,0,22.155401,22.155401,.05,.05,0,0,0,0,0,0,1,1,0,5.0213599,0,20.17,66.48999999999999,-9,-9,3.333333333333333,1,1,0,0,10,8,5,1,828,280734.47,14456.089,0,0,0,0,3372.2585 +8901,10822,19360,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1075.442,0,3,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.23,51.37,-9,-9,1.666666666666667,1,1,1,1,0,4,1,0,1070,8017.2573,0,0,0,0,0,836.00629 +8902,10823,19361,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,8.0928144,8.227459,0,0,-938.26135,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5769219,8.3607655,56.76,39.94,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,765,1041696.8,264320.09,742307.31,0,0,0,2954.1421 +8903,10824,19362,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,5,0,8.1396894,8.0370922,0,0,-1018.3632,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0639653,8.1305189,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,248,1161629.3,549499.69,300241.59,0,0,0,1041.9023 +8904,10825,19363,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.8362236,8.8794651,0,0,0,-1006.5115,0,-9,-9,2021,16,4,38,38,1,4,0,22.139429,22.139429,0,0,0,0,0,0,0,0,0,0,0,0,0,43.43,54.3,-9,-9,5,1,1,0,0,9,2,5,1,734,47508.695,0,0,0,0,0,2832.127 +8905,10826,19364,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1044.797,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.76,54.68,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,567,0,0,0,0,0,0,395.81656 +8906,10827,19365,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.4842844,8.6857395,0,0,0,-922.43506,0,-9,-9,2021,12,0,42,42,1,0,0,15.024267,15.024267,.05,.05,0,0,0,0,0,0,0,0,0,3.4040122,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,9,5,1,280,-114469.88,95669.969,0,0,0,0,2438.9775 +8907,10828,19366,19367,-9,-9,1,0,46,0,1,0,1,1,-9,1,3,6.4260454,6.106235,0,18,1,39.46241,0,2,2,2021,11,1,5,7,1,1,0,8.866683,8.866683,.05,.05,.05,0,0,0,0,27,1,1,0,0,0,41.13,58.45,59.43,58.05,5,1,1,0,1,8,9,5,1,575.5,553603.56,344671.25,430297.59,95171.461,2581.5842,0,4599.3418 +8907,10828,19367,19366,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,9.528966,9.5899134,0,18,-1,8.2846603,0,2,2,2021,11,0,40,40,1,0,0,46.619743,46.619743,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,59.43,58.05,41.13,58.45,10,1,1,0,0,10,9,5,1,575.5,553603.56,344671.25,430297.59,95171.461,2581.5842,0,4599.3418 +8907,10829,19368,-9,19366,19367,1,0,21,0,1,1,2,0,0,0,5,0,0,0,0,0,-1139.2229,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,9,1,1,800,-36951.168,0,0,0,4052.0955,0,0 +8907,10830,19369,-9,19366,19367,1,0,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-973.69891,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,9,1,1,355,-21336.953,0,0,0,7455.8257,0,0 +8908,10831,19370,19371,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,61,-7,-3.9886405,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,9.6353102,0,27,1,1,0,0,0,61.85,44.55,43.82,23.43,8.333333333333334,2,3,0,0,0,8,2,1,1089.5,397319,73970.492,337747.84,0,0,0,918.80011 +8908,10831,19371,19370,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,6.2657928,6.3611488,61,7,47.270908,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,52.059685,0,0,1,1,0,0,6.3294578,43.82,23.43,61.85,44.55,8.333333333333334,2,3,0,0,0,8,2,1,1089.5,397319,73970.492,337747.84,0,0,0,918.80011 +8908,10832,19372,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,8.6978788,8.3283043,0,0,0,-1028.4391,0,-9,-9,2021,10,0,42,38,1,0,0,13.824807,13.824807,.05,.05,0,0,0,0,0,14.5,1,1,0,7.2690797,0,57.57,49.69,-9,-9,6.666666666666667,2,3,0,0,7,8,5,1,49,685521.13,255296.78,298163.13,0,0,0,2703.5286 +8909,10833,19373,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.7107983,6.7180252,0,0,-1095.6594,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2684088,6.619154,52.55,44.88,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1991,604770.13,206318.03,302014.47,0,0,0,1239.3424 +8910,10834,19374,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1389666,7.9302111,0,0,0,-1014.0362,0,3,3,2021,11,0,54,60,1,0,0,7.3370156,7.3370156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.85,52.43,-9,-9,8.333333333333334,1,1,0,0,9,13,4,1,91,419797.56,290457,0,0,13079.25,1926.9248,1063.4653 +8911,10835,19375,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,6.7486763,6.7419348,0,0,0,-905.80646,0,2,2,2021,10,0,40,42,1,0,0,2.4266698,2.4266698,0,0,0,0,0,0,0,0,0,0,0,7.5048976,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,746,-112043.38,0,0,0,0,302.99884,636.28497 +8912,10836,19376,19377,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,51,5,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,50.5,46.02,38.75,18.3,5,1,1,0,0,0,7,1,1,1522.5,401018.41,0,435250.94,0,0,0,2195.8774 +8912,10836,19377,19376,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,51,-5,0,0,3,3,2021,14,1,0,0,4,1,0,0,0,0,0,0,1,5.2932029,17.59054,48.281055,2,1,1,0,3.8044457,0,38.75,18.3,50.5,46.02,5,1,1,0,0,0,7,1,1,1522.5,401018.41,0,435250.94,0,0,0,2195.8774 +8913,10837,19378,-9,-9,-9,1,0,39,0,0,0,3,3,-9,1,1,0,4.4578743,4.3366151,0,0,-971.89771,0,2,2,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3795285,0,31.27,29.34,-9,-9,1.666666666666667,4,2,0,0,2,2,2,0,1125,-136085.69,0,0,0,0,0,1991.2955 +8913,10838,19379,-9,19378,-9,1,1,18,0,0,1,3,0,0,1,1,0,0,0,0,0,-993.21454,-9,3,-9,2021,24,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.57,38.46,-9,-9,0,4,2,0,1,0,2,1,0,688,0,0,0,0,0,0,-246.37987 +8914,10839,19380,19381,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.1257954,8.1103849,0,18,-5,40.615986,0,2,2,2021,11,0,42,16,1,0,0,9.4526806,9.4526806,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,42.07,25.52,8.333333333333334,1,1,0,0,14,11,4,1,1336.5,139918.13,139489.97,195727.34,65902.063,8441.9805,0,2099.7195 +8914,10839,19381,19380,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,8.1270313,8.0120182,0,18,5,7.2721896,-9,2,3,2021,12,0,37,0,1,0,0,10.891079,10.891079,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.07,25.52,51.83,57.2,5,1,1,0,0,14,11,4,1,1336.5,139918.13,139489.97,195727.34,65902.063,8441.9805,0,2099.7195 +8914,10840,19382,-9,19380,19381,1,0,18,0,0,0,2,2,-9,0,4,7.1317034,7.2132235,0,0,0,-898.84204,0,2,3,2021,24,9,26,0,1,9,1,6.9185576,6.9185576,.05,.05,0,0,0,0,0,0,1,0,1,0,0,23.58,63.74,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,486,24888.027,-46558.273,0,0,0,0,656.08832 +8915,10841,19383,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.1623702,5.3861918,0,0,-1077.5413,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0946622,64.98,34.69,-9,-9,10,4,2,0,0,0,2,2,0,916,123713.45,-78582.938,139935.13,0,0,963.82483,1482.9746 +8916,10842,19384,-9,19386,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.91089,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,941,-85572.289,0,0,0,0,2285.4329,2402.7234 +8916,10842,19385,-9,19386,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.2416,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,941,-85572.289,0,0,0,0,2285.4329,2402.7234 +8916,10842,19386,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.3645582,7.8414502,6.0055594,0,0,-979.37054,0,-9,-9,2021,16,4,25,24,1,4,0,8.4025002,8.4025002,.05,.05,0,0,0,0,0,0,1,1,0,6.4013391,0,43.83,52.7,-9,-9,3.333333333333333,1,1,0,0,7,9,3,0,941,-85572.289,0,0,0,0,2285.4329,2402.7234 +8917,10843,19387,-9,-9,-9,1,0,37,0,1,0,3,3,-9,1,2,0,0,0,0,0,-889.34369,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.47,32.32,-9,-9,1.666666666666667,4,2,0,1,2,2,1,0,645,85054.852,15145.822,0,0,-620.39008,0,1866.5787 +8917,10843,19388,-9,19387,-9,1,1,16,0,1,1,3,0,-9,1,2,0,0,0,0,0,-1113.627,-9,3,-9,2021,29,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.73,53.97,-9,-9,3.333333333333333,4,2,0,0,0,2,1,0,645,85054.852,15145.822,0,0,-620.39008,0,1866.5787 +8918,10844,19389,19390,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.030417,4.9314961,22,1,18.229784,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9571557,58.15,52.91,52.84,40.35,8.333333333333334,1,1,0,0,5,9,2,1,1247.5,182998.56,267296.94,56311.453,0,0,0,1573.6614 +8918,10844,19390,19389,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.1005254,6.7261033,22,-1,1.1079603,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,82.441162,0,0,1,1,0,7.4955039,7.0200176,52.84,40.35,58.15,52.91,8.333333333333334,1,1,0,0,5,9,2,1,1247.5,182998.56,267296.94,56311.453,0,0,0,1573.6614 +8919,10845,19391,19392,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,5.463572,5.376338,34,4,-58.571095,0,2,2,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,126.70784,128.94746,1141.2712,0,1,1,0,0,5.6571383,66.36,30.66,42.5,63.22,8.333333333333334,1,1,0,0,0,7,2,1,1058.5,-41702.992,66304.859,0,0,0,0,1314.2747 +8919,10845,19392,19391,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,34,-4,-96.556,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,42.5,63.22,66.36,30.66,10,1,1,0,0,0,7,2,1,1058.5,-41702.992,66304.859,0,0,0,0,1314.2747 +8920,10846,19393,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,7.4415145,7.4324832,0,0,0,-1026.4418,0,2,2,2021,13,1,25,25,1,1,0,6.3700333,6.3700333,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,-9,-9,5,1,1,0,0,10,7,3,0,595,159237.02,51312.965,0,0,0,1003.5531,523.66888 +8921,10847,19394,19395,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,3.4950216,2.9670844,6,-7,7.5368867,0,1,1,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.0626416,58.14,44.9,64.07000000000001,47.52,8.333333333333334,1,1,0,0,13,9,3,1,301,1730554,1234826.1,297727.31,0,0,0,3656.9285 +8921,10847,19395,19394,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.2042065,8.3315516,6,7,-85.782272,0,3,1,2021,8,1,0,0,4,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,8.3656445,7.5495534,64.07000000000001,47.52,58.14,44.9,8.333333333333334,1,1,0,0,11,9,3,1,301,1730554,1234826.1,297727.31,0,0,0,3656.9285 +8922,10848,19396,19397,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.4728227,7.8818688,12,-10,-29.86515,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6133614,7.7077651,45.32,53.5,50.21,50.22,8.333333333333334,1,1,0,0,12,4,4,1,541.5,1286192,773878.75,173061.8,0,0,0,5332.7607 +8922,10848,19397,19396,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.8912935,8.0786304,12,10,18.161972,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2840061,7.9356332,50.21,50.22,45.32,53.5,8.333333333333334,1,1,0,0,10,4,4,1,541.5,1286192,773878.75,173061.8,0,0,0,5332.7607 +8923,10849,19398,19399,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,8.7456121,8.7847614,8,1,38.568188,0,3,3,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9494524,8.7993498,59.07,43.05,57.33,53.46,8.333333333333334,1,1,0,0,9,2,4,1,912,1249542,774647.5,359019.72,0,0,508.38281,2723.3521 +8923,10849,19399,19398,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,0,6.7330995,7.0168486,8,-1,34.38773,0,3,3,2021,6,0,0,44,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.0161409,6.9656696,57.33,53.46,59.07,43.05,8.333333333333334,1,1,0,0,8,2,4,1,912,1249542,774647.5,359019.72,0,0,508.38281,2723.3521 +8924,10850,19400,19401,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.6988745,7.7630925,0,40,-6,-93.733475,0,3,-9,2021,8,0,40,48,1,0,0,5.1571259,5.1571259,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.02,58.57,8.333333333333334,1,1,0,0,8,4,3,1,701.5,321604.38,193296.91,135658.75,40497.496,0,0,2111.2681 +8924,10850,19401,19400,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.1416168,7.0169592,5.3119531,40,6,39.021469,0,3,3,2021,10,0,40,36,1,0,0,3.2016547,3.2016547,0,0,0,0,0,0,0,0,0,0,0,4.6346521,5.3291898,46.02,58.57,57.16,56.15,6.666666666666667,1,1,0,0,8,4,3,1,701.5,321604.38,193296.91,135658.75,40497.496,0,0,2111.2681 +8924,10851,19402,-9,19400,19401,1,1,28,0,0,0,2,2,-9,0,4,8.1371489,8.4056053,0,0,0,-1123.7504,0,3,2,2021,8,1,35,43,1,1,1,10.952203,10.952203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,-9,-9,5,1,1,0,0,5,4,4,1,1903,-208318.84,57570.512,0,0,0,0,1137.9163 +8925,10852,19403,19404,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.8362379,8.1695004,53,2,100.34501,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0205426,8.146821,51.41,56.15,54.96,53.17,6.666666666666667,1,1,0,0,2,4,4,1,868.5,1483150.3,1100735.9,328099.03,0,0,0,3495.5083 +8925,10852,19404,19403,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.5406795,7.5696807,53,-2,-29.387192,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1838179,7.5262332,54.96,53.17,51.41,56.15,8.333333333333334,1,1,0,0,0,4,4,1,868.5,1483150.3,1100735.9,328099.03,0,0,0,3495.5083 +8926,10853,19405,19406,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,8.4491501,8.5580702,0,1,-1,2.3045011,-9,-9,-9,2021,10,1,45,0,1,1,0,13.730601,13.730601,.05,.05,0,0,0,0,0,7,0,0,0,0,0,44.26,59.43,47.49,52.68,8.333333333333334,1,1,0,0,0,8,5,0,194,258368.06,106293.51,369892.47,164458.72,0,0,4159.9023 +8926,10853,19406,19405,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.4797449,8.4336681,0,1,1,67.136009,0,-9,-9,2021,10,1,45,45,1,1,0,14.227536,14.227536,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.49,52.68,44.26,59.43,8.333333333333334,1,1,0,0,6,8,5,0,194,258368.06,106293.51,369892.47,164458.72,0,0,4159.9023 +8927,10854,19407,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.9075851,8.9362278,0,0,0,-847.35052,-9,2,1,2021,12,3,35,0,1,3,0,26.180975,26.180975,.05,.05,0,0,0,0,0,0,0,0,0,8.7469749,0,42.84,55.93,-9,-9,6.666666666666667,2,3,0,0,7,8,5,0,1277,219639.16,62054.637,0,0,0,0,4603.3413 +8928,10855,19408,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,6.8453169,7.2291937,0,0,0,-926.93738,0,1,1,2021,4,0,38,37,1,0,0,2.9883184,2.9883184,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,12,2,0,993,311035.91,0,0,0,0,0,723.81451 +8929,10856,19409,-9,19410,19411,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-921.54553,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,4,0,814.66669,331481.38,199304.98,0,0,0,0,2186.9436 +8929,10856,19410,19411,-9,-9,1,0,43,0,1,0,1,1,-9,0,5,8.7051048,8.5848179,0,5,0,-6.127605,0,-9,-9,2021,6,0,35,35,1,0,0,22.269857,22.269857,.05,.05,0,0,0,0,0,0,0,0,0,3.1511281,0,62.39,56.71,50.01,55.31,10,1,1,0,0,9,8,4,0,814.66669,331481.38,199304.98,0,0,0,0,2186.9436 +8929,10856,19411,19410,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,0,0,0,5,0,-112.48721,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,62.39,56.71,5,4,2,1,0,5,8,4,0,814.66669,331481.38,199304.98,0,0,0,0,2186.9436 +8930,10857,19412,19413,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,63,-5,1.2120489,0,3,3,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.94,38.87,50.65,60.47,6.666666666666667,1,1,0,0,0,1,2,1,881.5,386545.75,222254.14,124359.73,0,0,0,1753.8621 +8930,10857,19413,19412,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,7.107419,7.0166907,63,5,-28.951353,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7062845,50.65,60.47,37.94,38.87,10,1,1,0,0,0,1,2,1,881.5,386545.75,222254.14,124359.73,0,0,0,1753.8621 +8931,10858,19414,19415,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.9443746,7.9456015,59,1,-8.1213074,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.843956,57.33,53.46,60.29,52.11,5,1,1,0,0,0,5,3,1,309,865229.88,250330.42,440470.97,0,0,0,2397.063 +8931,10858,19415,19414,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,59,-1,23.604313,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,57.33,53.46,10,1,1,0,0,4,5,3,1,309,865229.88,250330.42,440470.97,0,0,0,2397.063 +8932,10859,19416,19417,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.8648109,8.2924109,6.5127454,5,-4,-94.431236,0,-9,-9,2021,10,0,40,35,1,0,0,6.763351,6.763351,0,0,0,0,0,0,0,7,1,1,0,5.908524,0,57.06,57.76,50.82,29.76,8.333333333333334,1,1,0,0,4,4,3,1,620,304074.44,0,97927.234,3399.3765,0,0,2752.1543 +8932,10859,19417,19416,-9,-9,1,1,49,0,1,0,2,2,-9,1,1,0,6.1134572,5.9704595,5,4,19.665741,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2016358,6.2779503,50.82,29.76,57.06,57.76,5,1,1,0,0,0,4,3,1,620,304074.44,0,97927.234,3399.3765,0,0,2752.1543 +8932,10860,19418,-9,19416,19417,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1024.2898,-9,2,2,2021,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,2,4,1,1,306,-91089.078,0,0,0,0,0,0 +8933,10861,19419,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-962.5589,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,40.932022,0,0,0,0,0,0,0,54.5,30.27,-9,-9,5,1,1,0,0,0,8,1,0,188,49529.402,-62269.559,0,0,0,0,0 +8934,10862,19420,19421,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.6669064,5.8383102,2,1,127.22849,0,3,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1702352,0,58.15,52.91,56.78,49.38,0,1,1,0,0,0,10,2,0,856.5,369625.19,103689.81,178352.13,0,0,0,2918.0562 +8934,10862,19421,19420,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,2,-1,31.050686,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7810073,0,56.78,49.38,58.15,52.91,6.666666666666667,1,1,0,0,0,10,2,0,856.5,369625.19,103689.81,178352.13,0,0,0,2918.0562 +8935,10863,19422,-9,19423,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.5851,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,1,0,1624.3334,-69401.617,0,0,0,0,0,983.1618 +8935,10863,19423,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,5,0,0,0,0,0,-993.72168,-9,2,2,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.63,61.31,-9,-9,10,1,1,1,1,0,6,1,0,1624.3334,-69401.617,0,0,0,0,0,983.1618 +8935,10863,19424,-9,19423,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1169.3625,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,1,0,1624.3334,-69401.617,0,0,0,0,0,983.1618 +8936,10864,19425,19426,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.7715001,7.9312444,50,2,-32.872288,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6679144,58.3,52.91,60.63,27.47,8.333333333333334,1,1,0,0,8,7,3,1,1168,973005.5,449937.63,284744.16,0,0,204.01935,2353.3752 +8936,10864,19426,19425,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.1763887,6.5434937,50,-2,-10.618783,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,7.0024605,0,0,1,1,0,0,7.3536906,60.63,27.47,58.3,52.91,8.333333333333334,1,1,0,0,0,7,3,1,1168,973005.5,449937.63,284744.16,0,0,204.01935,2353.3752 +8937,10865,19427,19428,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.6226149,7.8829527,18,0,51.206722,-9,-9,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4693599,7.8032451,45.07,40.64,49.82,32.53,5,1,1,0,0,6,5,3,1,859,583741.25,418272,251129.63,52309.078,14948.619,0,3074.1899 +8937,10865,19428,19427,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,6.1328516,6.3523321,0,16,0,91.711784,-9,-9,-9,2021,20,8,30,0,1,8,0,1.9791094,1.9791094,0,0,0,0,0,0,0,0,1,1,0,8.3036184,0,49.82,32.53,45.07,40.64,6.666666666666667,1,1,0,0,10,5,3,1,859,583741.25,418272,251129.63,52309.078,14948.619,0,3074.1899 +8938,10866,19429,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.5251179,7.7226839,0,0,0,-879.90027,0,3,3,2021,6,0,30,30,1,0,0,7.3995543,7.3995543,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,8,13,3,0,795,-13927.614,-19042.488,0,0,0,0,-59.547417 +8938,10867,19430,-9,19429,-9,1,1,23,0,0,0,2,2,-9,0,5,8.5955133,8.7271957,0,0,0,-935.5528,0,2,-9,2021,9,0,47,55,1,0,1,14.436999,14.436999,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,6,13,5,0,2866,-119035.02,20815.307,0,0,0,0,2256.8701 +8939,10868,19431,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.3771811,7.5193257,0,0,0,-1066.8826,-9,3,2,2021,15,4,35,0,1,4,0,5.334456,5.334456,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,9,1,3,1,82,-47038.984,-1654.2723,36953.34,-9202.9893,0,0,1137.2546 +8940,10869,19432,19433,-9,-9,1,1,62,0,0,0,2,2,1,0,2,0,7.9048009,8.0875006,36,3,-92.992241,-9,3,3,2021,20,7,0,0,4,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.329936,7.5229535,29.2,40.86,52.31,25.68,8.333333333333334,1,1,0,0,6,6,3,1,410.5,152733.03,66442.219,86852.875,0,5333.6172,0,1729.8444 +8940,10869,19433,19432,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,6.4991512,6.2302623,0,36,-3,-33.41523,0,2,2,2021,11,0,10,12,1,0,0,7.9308238,7.9308238,0,0,0,0,0,0,0,14.5,1,1,0,4.3253107,0,52.31,25.68,29.2,40.86,3.333333333333333,1,1,0,0,5,6,3,1,410.5,152733.03,66442.219,86852.875,0,5333.6172,0,1729.8444 +8941,10870,19434,19435,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.9400873,9.0485945,0,5,-1,-44.557701,0,-9,-9,2021,29,12,38,0,1,12,0,27.378283,27.378283,.05,.05,0,0,0,0,0,0,0,0,0,6.274199,0,24.85,67.03,44.74,48.1,3.333333333333333,1,1,0,0,3,4,5,1,386.5,1100569.8,970431.81,188439.61,43811.102,10619.957,0,7578.9717 +8941,10870,19435,19434,-9,-9,1,1,50,0,0,0,1,1,-9,0,2,9.520175,9.8544836,0,23,1,-60.77623,0,-9,-9,2021,15,4,44,47,1,4,0,30.735655,30.735655,.05,.05,0,0,0,0,0,0,0,0,0,4.2882495,0,44.74,48.1,24.85,67.03,8.333333333333334,1,1,0,0,8,4,5,1,386.5,1100569.8,970431.81,188439.61,43811.102,10619.957,0,7578.9717 +8942,10871,19436,19437,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.0290051,5.3952327,6,0,-19.199537,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3725877,54.67,43.45,44.04,26.14,10,1,1,0,0,0,5,2,0,1124,394077.19,70099.586,260013.5,0,0,0,1150.3088 +8942,10871,19437,19436,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,5.7047248,5.3704181,6,0,53.653492,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7336178,44.04,26.14,54.67,43.45,8.333333333333334,1,1,0,0,0,5,2,0,1124,394077.19,70099.586,260013.5,0,0,0,1150.3088 +8943,10872,19438,19439,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.8687239,6.6479344,9,3,109.11124,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5045223,6.6289291,54.2,57.49,40.58,43.59,10,1,1,0,0,0,13,3,1,909,876619.38,607599.75,127485.81,0,0,0,2137.9565 +8943,10872,19439,19438,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2157035,7.471086,9,-3,-49.046806,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3198805,7.1442533,40.58,43.59,54.2,57.49,5,1,1,0,0,0,13,3,1,909,876619.38,607599.75,127485.81,0,0,0,2137.9565 +8944,10873,19440,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,6.9933529,6.7473998,0,0,-985.66467,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0255866,6.8787103,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,444,149813.48,49901.289,89529.5,0,0,0,878.04041 +8945,10874,19441,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,3,0,7.6946535,7.8439503,0,0,-1150.1335,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.5497198,0,0,1,1,0,0,7.5830169,59.87,15.89,-9,-9,1.666666666666667,1,1,0,0,0,8,3,1,720,437060.5,363775.78,87269.008,0,0,0,910.08215 +8945,10875,19442,-9,-9,19441,1,1,67,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1096.2618,0,-9,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,8,1,1,359,173448.69,-24090.383,325593.66,0,0,0,572.59467 +8946,10876,19443,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1229.7789,0,2,1,2021,10,0,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,-9,-9,8,1,1,0,0,8,8,1,1,780.5,433257.66,59883.164,382575.09,27491.141,12488.942,0,0 +8946,10876,19444,-9,19443,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1072.1117,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2.0183973,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,780.5,433257.66,59883.164,382575.09,27491.141,12488.942,0,0 +8946,10877,19445,-9,19443,-9,1,1,18,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1042.5682,-9,1,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,0,8,1,1,3021,0,0,0,0,0,0,0 +8947,10878,19446,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2785339,8.4239922,0,0,0,-1217.4933,0,-9,-9,2021,7,1,38,40,1,1,0,11.09507,11.09507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,6,7,4,1,280,-81262.414,41145.375,0,0,0,0,635.03632 +8948,10879,19447,19448,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,8.5364723,8.8613195,8.0922699,21,2,127.1866,0,2,-9,2021,14,3,37,36,1,3,0,14.143883,14.143883,0,0,0,0,0,0,0,2,1,1,0,0,8.2880278,51.67,60.18,46.22,53,6.666666666666667,1,1,0,0,8,2,5,1,213.5,1065577,675281.88,284974.03,0,0,0,5443.0127 +8948,10879,19448,19447,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.8295603,8.9481468,0,38,-2,-19.214436,0,3,2,2021,7,1,42,51,1,1,0,16.843729,16.843729,0,0,0,0,0,0,0,2,1,1,0,0,0,46.22,53,51.67,60.18,6.666666666666667,2,3,0,0,10,2,5,1,213.5,1065577,675281.88,284974.03,0,0,0,5443.0127 +8948,10880,19449,-9,19448,19447,1,1,33,0,0,0,1,1,-9,0,4,8.1945562,8.2484198,0,0,0,-974.46136,0,2,1,2021,13,1,25,22,1,1,0,14.662098,14.662098,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,3.333333333333333,4,2,0,1,7,2,4,1,970,-42591.836,0,0,0,0,0,2705.5356 +8949,10881,19450,19451,-9,-9,1,1,55,0,0,0,2,2,-9,0,1,0,6.946444,6.7635608,10,4,-55.926422,0,2,2,2021,19,7,0,37,3,7,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.18223681,6.6768036,29.88,38.26,47.36,43.76,1.666666666666667,1,1,1,0,11,10,3,1,1018,253305.44,-31215.477,213799.53,27276.684,6056.6445,0,1148.77 +8949,10881,19451,19450,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7731495,7.7438526,0,10,-4,-52.095661,0,2,3,2021,9,2,30,24,1,2,0,9.0363064,9.0363064,0,0,0,0,0,0,0,14.5,0,0,0,0,0,47.36,43.76,29.88,38.26,8.333333333333334,1,1,0,0,11,10,3,1,1018,253305.44,-31215.477,213799.53,27276.684,6056.6445,0,1148.77 +8950,10882,19452,19453,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,6.9408941,6.8335104,1,1,-12.428007,-9,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5081618,6.9510345,47,49,54.2,57.49,6.666666666666667,1,1,0,0,3,6,4,1,463,488452,264507.78,95693.195,13863.534,0,0,3099.699 +8950,10882,19453,19452,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.458806,8.2386847,0,23,-1,1.0175302,-9,3,3,2021,11,0,42,0,1,0,0,15.482921,15.482921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,47,49,5,1,1,0,0,13,6,4,1,463,488452,264507.78,95693.195,13863.534,0,0,3099.699 +8950,10883,19454,-9,19452,19453,1,1,26,0,0,0,2,2,-9,0,5,8.0955753,7.9482255,0,0,0,-1033.8339,-9,2,3,2021,6,0,20,0,1,0,1,20.435078,20.435078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,6.666666666666667,1,1,0,0,5,6,4,1,204,83421.969,-15065.814,0,0,0,0,1504.7062 +8951,10884,19455,19456,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.4248381,7.9970794,0,10,13,141.74524,0,3,3,2021,7,0,40,35,1,0,0,13.420337,13.420337,.05,.05,0,0,0,0,0,0,0,0,0,1.6731017,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,0,0,11,7,4,1,475,567257.63,115309.78,414101.94,0,0,0,3526.4229 +8951,10884,19456,19455,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.8539734,6.7599936,0,10,-13,21.03554,0,2,3,2021,9,0,42,40,1,0,0,2.5557222,2.5557222,0,0,0,0,0,0,0,0,0,0,0,7.9362106,0,49.41,58.28,57.16,56.15,6.666666666666667,1,1,0,0,11,7,4,1,475,567257.63,115309.78,414101.94,0,0,0,3526.4229 +8952,10885,19457,19458,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.6114511,8.3806944,0,11,-1,103.63678,0,2,2,2021,11,0,38,41,1,0,0,14.590454,14.590454,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,37,53.29,8.333333333333334,1,1,0,0,12,2,5,1,350,-37481.016,-95903.625,0,0,5977.7134,17361.059,3543.3796 +8952,10885,19458,19457,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.9847198,8.1826124,0,11,1,-162.77257,0,3,3,2021,14,3,53,43,1,3,0,7.1515298,7.1515298,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37,53.29,54.2,57.49,6.666666666666667,1,1,0,0,5,2,5,1,350,-37481.016,-95903.625,0,0,5977.7134,17361.059,3543.3796 +8953,10886,19459,19460,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,3.8238604,4.1129012,22,-11,-13.827754,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,4.58108,0,120,1,1,0,3.7150011,3.8041372,62.92,12.95,48.36,28.21,10,1,1,0,0,0,5,2,0,640.5,120703.55,-12337.374,113082.82,67526.063,0,0,1844.1804 +8953,10886,19460,19459,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.3352437,4.286684,21,11,66.059875,0,3,3,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.95121,48.36,28.21,62.92,12.95,3.333333333333333,1,1,0,0,0,5,2,0,640.5,120703.55,-12337.374,113082.82,67526.063,0,0,1844.1804 +8954,10887,19461,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,0,0,0,0,-999.14941,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3766881,0,53.53,22.75,-9,-9,5,1,1,0,0,0,2,1,0,306,121577.48,0,0,0,0,0,681.16052 +8955,10888,19462,19463,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,39,0,23.0581,0,-9,-9,2021,9,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.7456865,0,57.33,53.46,48,49,8.333333333333334,1,1,1,0,10,12,3,1,400,74211.742,0,44714.191,26825.205,8106.6504,0,669.57654 +8955,10888,19463,19462,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,7.7123642,8.0451889,0,9,0,65.233315,0,-9,-9,2021,12,0,15,16,1,2,0,17.258244,17.258244,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,57.33,53.46,7,1,1,0,0,1,12,3,1,400,74211.742,0,44714.191,26825.205,8106.6504,0,669.57654 +8955,10889,19464,-9,19463,19462,1,1,34,0,0,0,1,1,-9,0,4,8.4928799,8.2486954,0,0,0,-903.43628,0,-9,2,2021,10,0,40,50,1,1,1,11.532798,11.532798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,4,1,2030,49929.121,116958.37,0,0,0,0,1933.1637 +8956,10890,19465,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,6.3299041,6.3971481,0,0,-851.57416,0,-9,-9,2021,34,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2890692,0,20.09,38.61,-9,-9,1.666666666666667,1,1,0,0,7,2,2,0,2013,-42232.863,50819.945,0,0,-1096.6716,0,2585.4553 +8956,10891,19466,-9,-9,19467,1,1,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-980.26727,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,393.66666,72160.43,0,0,0,0,0,1419.927 +8956,10891,19467,19468,-9,-9,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,1,1,0,-9,-9,-9,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.03,55.95,25.81,49.24,3.333333333333333,1,1,0,0,0,2,1,0,393.66666,72160.43,0,0,0,0,0,1419.927 +8956,10891,19468,19467,19465,-9,1,0,26,0,0,0,2,2,-9,1,3,0,0,0,1,-1,0,-9,3,-9,2021,24,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,25.81,49.24,22.03,55.95,3.333333333333333,1,1,0,0,0,2,1,0,393.66666,72160.43,0,0,0,0,0,1419.927 +8957,10892,19469,-9,19471,19472,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1003.6126,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8957,10892,19470,-9,19471,19472,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.04303,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8957,10892,19471,19472,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.1874599,8.3008127,0,13,-6,-74.193054,0,2,2,2021,9,0,28,23,1,0,0,16.938452,16.938452,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,1,11,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8957,10892,19472,19471,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.5277929,8.4559069,0,13,6,41.169933,0,2,2,2021,12,0,40,40,1,0,0,14.443087,14.443087,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,8.333333333333334,1,1,0,0,11,9,4,1,420,485109.69,215193.28,479913.44,185855.56,0,0,3750.2095 +8958,10893,19473,19474,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,20,-1,0,0,3,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,26.08,26.32,53,54,1.666666666666667,1,1,0,0,0,5,1,0,980,-43946.445,0,0,0,0,0,1984.6318 +8958,10893,19474,19473,-9,-9,1,1,50,0,0,0,2,2,-9,1,4,0,0,0,20,1,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,26.08,26.32,8,1,1,0,0,0,5,1,0,980,-43946.445,0,0,0,0,0,1984.6318 +8959,10894,19475,19476,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.3663397,8.3758001,28,2,46.679974,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1793122,8.1293802,59.46,46.99,55.19,54.26,8.333333333333334,1,1,0,0,0,2,4,1,486,1792166.1,782361.13,391927.06,0,0,0,4188.8984 +8959,10894,19476,19475,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.2639136,7.5620456,28,-2,21.595482,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.3272834,7.4890571,55.19,54.26,59.46,46.99,10,1,1,0,0,0,2,4,1,486,1792166.1,782361.13,391927.06,0,0,0,4188.8984 +8960,10895,19477,19478,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,7.6403127,8.0491219,0,2,2,52.814972,0,-9,-9,2021,10,0,44,45,1,0,0,6.9438419,6.9438419,.05,.05,0,0,0,0,0,27,1,1,0,0,0,49.46,56.91,45,58,6.666666666666667,1,1,0,0,3,4,3,0,405.5,92949.75,201990.38,0,0,12480.109,42.736099,1708.5801 +8960,10895,19478,19477,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,6.7345114,6.8424706,0,2,-2,-50.864033,-9,-9,-9,2021,12,0,8,0,1,2,0,11.942156,11.942156,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45,58,49.46,56.91,7,4,1,0,0,1,4,3,0,405.5,92949.75,201990.38,0,0,12480.109,42.736099,1708.5801 +8961,10896,19479,19480,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.5576835,6.9620738,7,4,71.3078,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5907531,7.1931224,61.68,28.84,51.83,57.2,8.333333333333334,1,1,0,0,4,7,2,1,2497,856818.75,478552.81,472187.25,0,0,0,2636.1802 +8961,10896,19480,19479,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.3432131,5.2681284,7,-4,64.689743,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4059873,0,51.83,57.2,61.68,28.84,8.333333333333334,1,1,0,0,0,7,2,1,2497,856818.75,478552.81,472187.25,0,0,0,2636.1802 +8962,10897,19481,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.0522833,7.9645243,6.6549449,0,0,-1044.2748,0,3,-9,2021,12,0,38,38,1,0,0,7.140379,7.140379,0,0,0,0,0,0,0,0,0,0,0,4.6864705,6.2984643,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,12,6,4,1,1548,96623.922,48022.785,67129.164,0,0,0,1656.1281 +8963,10898,19482,19483,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,5.9158626,6.1294389,44,0,-.18447173,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,.76273805,0,0,0,0,6.2847753,5.8453794,57.91,46.31,54.96,53.17,8.333333333333334,1,1,0,0,0,5,5,1,721.5,459461,423083.47,21312.377,0,0,0,4257.0435 +8963,10898,19483,19482,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.8199129,8.8551617,44,0,2.2980113,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.4027371,8.636776,54.96,53.17,57.91,46.31,8.333333333333334,1,1,0,0,2,5,5,1,721.5,459461,423083.47,21312.377,0,0,0,4257.0435 +8964,10899,19484,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.0701427,6.7936673,0,0,-1050.5583,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9076042,7.0543237,37.12,38.27,-9,-9,10,1,1,0,0,0,12,3,1,1361,268307.34,-40808.355,108559.66,0,0,0,1610.9996 +8965,10900,19485,19486,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.5277557,8.4620008,0,3,-2,-112.56653,0,-9,-9,2021,24,9,62,49,1,9,0,7.7219296,7.7219296,0,0,0,0,0,0,0,0,0,0,0,0,0,21.39,56.34,45.1,46.88,6.666666666666667,1,1,0,0,4,9,5,1,1698,133724.75,0,0,0,0,0,2232.9253 +8965,10900,19486,19485,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.7456598,7.9315219,0,3,2,-154.6996,0,-9,-9,2021,12,1,50,45,1,1,0,7.8349085,7.8349085,0,0,0,0,0,0,0,0,0,0,0,0,0,45.1,46.88,21.39,56.34,8.333333333333334,1,1,0,0,5,9,5,1,1698,133724.75,0,0,0,0,0,2232.9253 +8966,10901,19487,-9,19488,19490,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-972.89618,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19488,19490,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,7.3413568,7.4094706,0,19,-5,-74.2397,0,2,2,2021,13,1,26,29,1,1,0,6.1563621,6.1563621,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,52,55,6.666666666666667,1,1,0,0,11,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19489,-9,19488,19490,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.1395,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19490,19488,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,8.1716337,8.4418764,0,19,5,-54.092411,0,-9,-9,2021,9,0,40,40,1,1,0,12.971908,12.971908,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,51.49,57.57,8,1,1,0,0,1,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8966,10901,19491,-9,19488,19490,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-985.50098,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,676.79999,-36792.527,38821.078,0,0,0,3290.7573,2379.2969 +8967,10902,19492,19493,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,10,3,0,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.76,28.13,58.32,50.22,5,1,1,0,0,0,13,1,0,613.5,-79537.648,0,0,0,0,0,2623.5798 +8967,10902,19493,19492,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,0,0,10,-3,0,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.32,50.22,30.76,28.13,8.333333333333334,1,1,0,0,0,13,1,0,613.5,-79537.648,0,0,0,0,0,2623.5798 +8967,10903,19494,-9,19493,19492,1,1,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1133.9761,-9,3,3,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,.18620026,0,1,1,0,0,0,56.74,55.09,-9,-9,8.333333333333334,1,1,1,1,2,13,2,0,1937,0,0,0,0,0,0,90.350273 +8968,10904,19495,19496,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,7.1928916,7.4800858,0,8,-2,22.683784,0,3,-9,2021,6,0,37,37,1,0,0,3.77723,3.77723,.05,.05,0,0,0,0,0,0,0,0,0,7.1369157,0,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,10,10,4,1,473.5,197207.42,108799.03,0,0,0,0,3062.4177 +8968,10904,19496,19495,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.0477934,8.0341272,6.7320204,8,2,-10.992625,0,3,3,2021,8,0,19,19,1,0,0,15.194868,15.194868,0,0,0,0,0,0,0,0,0,0,0,7.5243678,0,57.33,53.46,57.06,57.76,8.333333333333334,1,1,0,0,10,10,4,1,473.5,197207.42,108799.03,0,0,0,0,3062.4177 +8968,10905,19497,-9,19496,-9,1,1,24,0,0,0,1,1,-9,0,5,7.675076,7.9395466,0,0,0,-1171.0624,0,1,2,2021,6,0,48,8,1,0,1,6.4600029,6.4600029,.05,.05,0,0,0,0,0,0,0,0,0,9.8105965,0,54.1,59.11,-9,-9,10,1,1,0,0,3,10,3,1,909,134050.55,89253.555,0,0,0,0,7476.2437 +8969,10906,19498,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,7.6612072,8.5064697,7.6538281,0,0,-1011.5171,0,3,3,2021,7,0,39,41,1,0,0,7.8424125,7.8424125,0,0,.05,0,0,0,0,0,1,1,0,1.6226163,7.7153897,60.75,43.73,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,538,104098.48,76472.313,0,0,0,0,1910.646 +8970,10907,19499,-9,19501,19502,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-880.49969,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19500,-9,19501,19502,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1098.0808,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19501,19502,-9,-9,1,0,51,0,3,0,1,1,-9,0,4,6.0197411,5.9582009,0,18,-8,-141.88498,0,3,3,2021,12,0,80,8,1,0,0,.50666982,.50666982,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,57.02,51.41,56.15,8.333333333333334,1,1,0,0,14,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19502,19501,-9,-9,1,1,59,0,3,0,3,3,-9,0,3,6.8561602,6.8968554,0,13,8,69.779297,-9,-9,-9,2021,12,0,90,0,1,0,0,1.4459376,1.4459376,.05,.05,0,0,0,0,0,0,1,1,0,6.8647318,0,51.41,56.15,46.56,57.02,6.666666666666667,1,1,0,0,15,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10907,19503,-9,19501,19502,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-991.59698,-9,1,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,13,2,1,464,346745.94,127722.27,276187.5,0,0,3736.7456,1728.0088 +8970,10908,19504,-9,19501,19502,1,0,23,0,3,0,1,1,0,0,5,0,4.8121672,5.1142554,0,0,-896.79169,-9,1,3,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7855697,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,13,2,1,504,199261.36,0,0,0,0,0,596.67523 +8971,10909,19505,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,2,7.7386093,7.8378844,0,0,0,-929.57404,0,-9,-9,2021,11,0,30,25,1,0,0,9.7188721,9.7188721,0,0,0,0,0,0,0,0,1,1,0,0,0,35.34,46.41,-9,-9,6.666666666666667,1,1,0,1,8,5,3,0,279,-44391.383,0,0,0,11915.039,0,1269.3939 +8972,10910,19506,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.8578043,8.2501116,0,0,0,-1075.9022,0,2,1,2021,9,0,60,55,1,0,0,9.2251072,9.2251072,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,855,133469.36,74782.039,142311.66,58465.359,0,0,1592.3708 +8973,10911,19507,19508,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.7958918,8.6486244,0,2,-6,-14.901407,0,-9,-9,2021,7,1,43,47,1,1,0,16.148386,16.148386,0,0,0,0,0,0,0,0,1,1,0,3.9976697,0,44.02,60.7,54.2,57.49,8.333333333333334,1,1,0,0,1,8,4,1,746.5,-4685.2305,0,0,0,0,0,3530.1426 +8973,10911,19508,19507,-9,-9,1,0,34,0,0,0,1,1,1,0,4,5.8406076,6.0098858,0,2,6,48.086838,-9,1,2,2021,6,0,40,0,1,0,0,.92073596,.92073596,0,0,0,0,0,0,0,0,1,1,0,3.8693585,0,54.2,57.49,44.02,60.7,10,1,1,0,0,6,8,4,1,746.5,-4685.2305,0,0,0,0,0,3530.1426 +8974,10912,19509,-9,19510,19511,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.4006,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,946,460884.53,114977.27,224439.53,107072.5,0,0,2299.8254 +8974,10912,19510,19511,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.6047673,7.5873046,0,6,-1,26.392138,0,-9,-9,2021,24,12,15,15,1,12,0,12.962175,12.962175,0,0,0,0,0,0,0,0,1,1,0,3.3719428,0,26.58,59.49,34.9,58.41,8.333333333333334,1,1,0,0,5,9,4,1,946,460884.53,114977.27,224439.53,107072.5,0,0,2299.8254 +8974,10912,19511,19510,-9,-9,1,1,32,0,1,0,1,1,-9,0,4,8.2157125,8.3425837,0,6,1,-38.252197,-9,2,2,2021,11,0,42,0,1,0,0,10.760381,10.760381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.9,58.41,26.58,59.49,8.333333333333334,1,1,0,0,10,9,4,1,946,460884.53,114977.27,224439.53,107072.5,0,0,2299.8254 +8975,10913,19512,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,6.8349586,7.3140054,6.3824015,0,0,-989.34052,0,1,1,2021,5,1,13,25,1,1,0,8.8427076,8.8427076,0,0,0,0,0,0,0,2,1,1,0,2.4654834,6.3469787,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,743,149814.36,97627.305,177339.33,0,0,0,2016.663 +8976,10914,19513,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1046.3308,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,2.4247208,0,20.85914,0,1,1,0,2.6033804,0,52.08,26.8,-9,-9,5,1,1,0,0,0,10,1,0,136,816.04254,0,0,0,0,0,1491.0848 +8977,10915,19514,-9,19515,19516,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.1554,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,4,5,1,874,683485.13,410028.66,382495.88,126910.86,0,0,4791.4165 +8977,10915,19515,19516,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.9834404,8.9273701,0,17,0,-47.08144,0,3,2,2021,14,3,31,31,1,3,0,25.835932,25.835932,.05,.05,0,0,0,0,0,0,1,1,0,4.0464721,0,45.58,47.97,45.92,53.14,6.666666666666667,2,3,0,0,10,4,5,1,874,683485.13,410028.66,382495.88,126910.86,0,0,4791.4165 +8977,10915,19516,19515,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,8.8623171,8.7924871,0,17,9,59.213524,0,3,3,2021,10,0,50,40,1,0,0,12.8739,12.8739,.05,.05,0,0,0,0,0,2,1,1,0,5.6049328,0,45.92,53.14,45.58,47.97,10,2,3,0,0,10,4,5,1,874,683485.13,410028.66,382495.88,126910.86,0,0,4791.4165 +8978,10916,19517,19518,-9,-9,1,0,70,0,1,0,1,1,-9,0,3,0,6.0997176,6.3301544,48,1,50.969223,-9,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.6645255,51.61,50.58,53.44,55.06,8.333333333333334,1,1,0,0,5,9,3,1,810.5,1680169,928641.13,566558.56,0,0,0,2768.7678 +8978,10916,19518,19517,-9,-9,1,1,69,0,1,0,1,1,-9,0,4,0,8.1930809,8.1509142,48,-1,56.666271,-9,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.2962875,8.3078241,53.44,55.06,51.61,50.58,8.333333333333334,1,1,0,0,7,9,3,1,810.5,1680169,928641.13,566558.56,0,0,0,2768.7678 +8978,10917,19519,-9,19521,19520,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-810.0957,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,1,924,-40299.367,-29629.207,0,0,5512.6929,0,1207.2723 +8978,10917,19520,19521,-9,-9,1,1,32,0,1,0,2,2,-9,1,1,0,0,0,5,-5,66.306412,0,-9,-9,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.94,37.16,34.47,34.75,3.333333333333333,1,1,0,0,0,9,2,1,924,-40299.367,-29629.207,0,0,5512.6929,0,1207.2723 +8978,10917,19521,19520,19517,19518,1,0,37,0,1,0,2,2,-9,0,1,7.0827785,6.8360462,0,5,5,64.518745,0,1,1,2021,17,5,18,18,1,5,0,7.0191517,7.0191517,0,0,0,0,0,0,0,7,1,1,0,0,0,34.47,34.75,22.94,37.16,3.333333333333333,1,1,0,0,3,9,2,1,924,-40299.367,-29629.207,0,0,5512.6929,0,1207.2723 +8979,10918,19522,19523,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.9824615,7.0730829,0,18,0,11.159819,0,3,2,2021,16,7,17,17,1,7,0,6.6956058,6.6956058,0,0,0,0,0,0,0,0,1,1,0,0,0,34.49,41.76,52,55,5,2,3,0,1,5,4,2,1,1301.5,96612.625,0,0,0,0,0,1548.8503 +8979,10918,19523,19522,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,6.8965974,6.5999594,0,18,0,118.49035,0,3,3,2021,9,0,40,40,1,1,0,2.8669138,2.8669138,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,34.49,41.76,7,2,3,0,0,1,4,2,1,1301.5,96612.625,0,0,0,0,0,1548.8503 +8979,10919,19524,-9,19522,19523,1,0,21,0,2,0,2,2,-9,0,3,0,0,0,0,0,-870.5993,0,2,3,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.24,49.68,-9,-9,0,2,3,1,1,0,4,1,1,727,-83354.305,0,0,0,0,0,0 +8979,10920,19525,-9,19522,19523,1,0,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1043.3937,-9,2,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,4,1,1,1308,-68591.008,0,0,0,0,0,0 +8980,10921,19526,19527,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.3235035,6.4964881,54,2,-43.052212,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1716223,6.5005717,54.37,54.8,39.07,17.47,8.333333333333334,1,1,0,0,0,9,2,1,307.5,361795.94,77839.563,323863.56,0,0,0,1863.5961 +8980,10921,19527,19526,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.0605168,3.9008608,54,-2,134.7319,0,2,-9,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,2.4164548,25.069101,21.512154,0,1,1,0,4.4311004,3.9065003,39.07,17.47,54.37,54.8,5,1,1,0,0,0,9,2,1,307.5,361795.94,77839.563,323863.56,0,0,0,1863.5961 +8981,10922,19528,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.4024863,5.4278946,0,0,-921.10748,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.2747693,50.68,44.55,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,570,498177,102169.13,286957.13,119738.03,0,0,629.87671 +8982,10923,19529,19531,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.4819221,8.3627367,0,8,0,-49.657852,0,2,3,2021,10,0,40,40,1,1,0,14.718925,14.718925,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,57.06,57.76,7,1,1,0,0,1,2,4,1,1283.6666,143799.45,278706.53,170178.95,90375.008,0,20390.441,3197.8101 +8982,10923,19530,-9,19531,19529,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.5471,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1283.6666,143799.45,278706.53,170178.95,90375.008,0,20390.441,3197.8101 +8982,10923,19531,19529,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.2027216,8.494957,0,27,0,70.095528,0,2,3,2021,8,0,32,37,1,0,0,15.249066,15.249066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,49,10,1,1,0,0,10,2,4,1,1283.6666,143799.45,278706.53,170178.95,90375.008,0,20390.441,3197.8101 +8983,10924,19532,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.693644,6.3715854,0,0,-1042.0396,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6312709,58.32,52.89,-9,-9,10,1,1,0,0,0,1,2,1,359,41824.527,168524.16,0,0,0,0,1185.1326 +8984,10925,19533,19535,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,8.2929859,7.9934587,0,1,1,16.443933,-9,3,2,2021,16,5,24,0,1,5,0,10.900514,10.900514,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,59.43,58.05,8.333333333333334,1,1,0,0,14,1,4,1,592.33331,29047.273,-46515.727,0,0,0,0,3441.5176 +8984,10925,19534,-9,19533,19535,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.43561,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,4,1,592.33331,29047.273,-46515.727,0,0,0,0,3441.5176 +8984,10925,19535,19533,-9,-9,1,1,29,1,1,0,2,2,-9,0,5,8.0252275,8.555604,0,1,-1,94.299545,-9,-9,-9,2021,6,0,36,0,1,0,0,13.107871,13.107871,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,43.54,59.6,10,1,1,0,0,6,1,4,1,592.33331,29047.273,-46515.727,0,0,0,0,3441.5176 +8985,10926,19536,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,4,7.8831935,8.1173592,0,0,0,-990.67322,0,2,2,2021,6,0,30,29,1,0,0,10.478191,10.478191,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,12,7,3,1,1304,125827.39,-28554.719,0,0,0,3580.106,1105.9644 +8985,10926,19537,-9,19536,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.68152,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,3,1,1304,125827.39,-28554.719,0,0,0,3580.106,1105.9644 +8986,10927,19538,-9,19541,19540,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1098.4978,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8986,10927,19539,-9,19541,19540,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.01477,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8986,10927,19540,19541,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.4346781,8.3998003,0,11,-2,-47.906651,0,2,2,2021,25,12,40,43,1,12,0,15.996076,15.996076,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.27,61.56,35.61,65.82000000000001,5,1,1,0,0,10,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8986,10927,19541,19540,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,8.2086334,8.4744148,0,11,2,-28.545345,0,2,3,2021,15,5,35,30,1,5,0,12.566736,12.566736,0,0,0,0,0,0,0,0,1,1,0,0,0,35.61,65.82000000000001,27.27,61.56,8.333333333333334,1,1,0,0,10,5,4,1,455.5,279320.5,140878.92,177580.61,125235.68,0,0,2775.8584 +8987,10928,19542,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.7656775,7.942286,0,0,0,-1112.6167,0,-9,-9,2021,23,11,38,38,1,11,0,7.4322977,7.4322977,0,0,0,0,0,0,0,27,0,0,0,2.9715037,0,29.54,58.14,-9,-9,3.333333333333333,3,4,0,0,6,6,3,1,477,3252.9578,0,0,0,0,0,722.54718 +8988,10929,19543,19544,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,44,-16,-64.978142,0,-9,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,55,44,6.666666666666667,1,1,0,0,0,6,2,1,799.5,398305.63,91314.727,142487.47,0,0,0,2072.6299 +8988,10929,19544,19543,-9,-9,1,1,96,0,0,0,3,3,-9,0,3,0,6.4173622,6.5413556,44,16,-79.459534,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1028862,6.5107551,55,44,57.16,56.15,8,1,1,0,0,0,6,2,1,799.5,398305.63,91314.727,142487.47,0,0,0,2072.6299 +8989,10930,19545,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-871.70221,-9,-9,-9,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6812313,0,36.27,60.6,-9,-9,6.666666666666667,1,1,0,0,4,7,2,0,1509,200727.88,0,0,0,0,0,112.6956 +8990,10931,19546,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3886547,7.9332986,0,0,0,-1061.3846,0,3,3,2021,10,0,40,40,1,1,1,13.688848,13.688848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,-9,-9,7,2,3,0,0,2,6,4,1,2163,-122266.95,88572.297,0,0,9782.9873,0,779.76044 +8991,10932,19547,19548,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.3672953,6.5730338,7,6,5.5722146,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0740633,62.11,36.75,43.1,34.14,1.666666666666667,1,1,0,0,0,12,2,0,675,639958.38,110333.28,425302.97,0,0,0,1810.6157 +8991,10932,19548,19547,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.3428116,4.4856949,7,-6,-57.704086,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4156485,43.1,34.14,62.11,36.75,5,1,1,0,0,0,12,2,0,675,639958.38,110333.28,425302.97,0,0,0,1810.6157 +8992,10933,19549,-9,-9,-9,1,1,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-954.19299,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,31.71,19.27,-9,-9,1.666666666666667,1,1,0,1,4,9,1,0,5708,141615.11,183799.05,0,0,10237.772,0,1206.4926 +8993,10934,19550,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,6.8685732,7.5114756,6.5106511,0,0,-962.22223,0,3,3,2021,9,1,16,16,1,1,0,8.8094759,8.8094759,.05,.05,0,0,0,0,0,110,1,1,0,5.7344847,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,4,3,0,440.5,69837.094,-97878.172,71212.352,27431.684,0,0,2546.8765 +8993,10934,19551,-9,19550,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.4328,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,0,440.5,69837.094,-97878.172,71212.352,27431.684,0,0,2546.8765 +8994,10935,19552,19553,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2925797,6.4391198,8,1,-27.495539,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2765474,57.16,56.15,65.62,37.83,8.333333333333334,1,1,0,0,6,1,3,1,899.5,1329824.5,516435.06,258806.22,0,0,0,2247.6465 +8994,10935,19553,19552,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.6417484,7.5426116,8,-1,2.4235439,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3903668,7.7223597,65.62,37.83,57.16,56.15,8.333333333333334,1,1,0,0,6,1,3,1,899.5,1329824.5,516435.06,258806.22,0,0,0,2247.6465 +8995,10936,19554,19555,-9,-9,1,1,31,0,0,0,1,1,-9,0,2,7.2655964,7.1348858,0,3,3,63.935852,-9,-9,-9,2021,8,0,24,0,1,0,0,7.5900636,7.5900636,.05,.05,0,0,0,0,0,0,0,0,0,.73073214,0,48.29,18.73,57.06,57.76,6.666666666666667,1,1,0,0,1,12,3,1,1527,140329.25,75688.516,111769.24,70628.305,8843.707,0,1304.2721 +8995,10936,19555,19554,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,6.9161768,6.9377794,0,3,-3,109.87851,0,-9,-9,2021,5,0,15,28,1,0,0,7.7310905,7.7310905,0,0,0,0,0,0,0,0,0,0,0,.44460288,0,57.06,57.76,48.29,18.73,8.333333333333334,1,1,0,0,8,12,3,1,1527,140329.25,75688.516,111769.24,70628.305,8843.707,0,1304.2721 +8996,10937,19556,-9,19559,19558,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-991.20282,-9,3,2,2021,28,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.18,50.78,-9,-9,3.333333333333333,3,4,0,1,0,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10937,19557,-9,19559,19558,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-944.98395,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,3,4,-9,0,0,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10937,19558,19559,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.2968507,7.1164579,0,9,6,-63.688042,0,-9,-9,2021,8,2,30,30,1,2,0,4.3725281,4.3725281,0,0,0,0,0,0,0,0,1,1,0,0,0,39.79,42.84,42.99,39.78,5,4,2,0,0,6,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10937,19559,19558,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,7.7114987,7.4305863,0,22,-6,27.847977,0,3,2,2021,5,1,30,28,1,1,0,7.5962367,7.5962367,0,0,0,0,0,0,0,0,1,1,0,0,0,42.99,39.78,39.79,42.84,6.666666666666667,3,4,0,0,6,8,3,0,676.25,309364.16,0,387409.75,90864.031,0,0,1625.2417 +8996,10938,19560,-9,19559,19558,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-906.85706,-9,3,2,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9358697,0,38.46,59.39,-9,-9,5,3,4,0,0,0,8,1,0,403,-165946.88,0,0,0,0,0,636.47198 +8997,10939,19561,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.8285861,7.743855,0,0,-1140.9728,0,3,3,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8210421,7.8304224,57.91,46.31,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,346,556909.69,135423.95,278267.44,0,0,0,1916.7678 +8998,10940,19562,19563,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.297617,7.0808001,0,8,-12,-3.7127259,0,-9,-9,2021,12,0,25,40,1,2,0,5.512485,5.512485,0,0,0,0,0,0,0,0,0,0,0,0,0,46,50,50,49,7,3,4,0,0,6,6,2,0,734.5,117868.25,1408.8069,152372.34,0,0,0,762.15631 +8998,10940,19563,19562,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,0,0,0,8,12,-108.9381,0,3,3,2021,10,0,0,30,3,1,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,0,50,49,46,50,7,3,4,1,1,10,6,2,0,734.5,117868.25,1408.8069,152372.34,0,0,0,762.15631 +8999,10941,19564,19565,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.0603938,6.9783301,57,1,-10.782907,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1740618,7.2829752,53.23,42.9,34.57,46.49,8.333333333333334,1,1,0,0,0,5,4,1,4096,1488038.8,862132.88,248300.06,0,0,0,4040.658 +8999,10941,19565,19564,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,8.4110146,7.9239426,10,-1,-26.535841,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1712852,7.9318948,34.57,46.49,53.23,42.9,8.333333333333334,1,1,0,0,0,5,4,1,4096,1488038.8,862132.88,248300.06,0,0,0,4040.658 +9000,10942,19566,19567,-9,-9,1,1,43,1,4,0,3,3,-9,0,5,7.8878241,7.9568663,0,21,9,-52.808594,-9,3,3,2021,6,0,24,0,1,0,0,14.559964,14.559964,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54,57,46.76,31.57,8.333333333333334,2,3,0,0,4,8,3,0,1066.6666,137930.52,146744.47,0,0,0,0,5654.5166 +9000,10942,19567,19566,-9,-9,1,0,34,1,4,0,2,2,-9,0,4,8.0988035,8.4247389,0,1,0,-116.47384,-9,-9,-9,2021,6,0,25,0,1,0,0,16.755451,16.755451,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.76,31.57,54,57,8.333333333333334,2,3,0,0,4,8,3,0,1066.6666,137930.52,146744.47,0,0,0,0,5654.5166 +9000,10942,19568,-9,19567,19566,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-900.59717,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,1066.6666,137930.52,146744.47,0,0,0,0,5654.5166 +9001,10943,19569,19570,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.4713163,8.391222,0,4,3,54.067078,0,2,3,2021,15,4,45,55,1,4,0,12.34658,12.34658,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.39,56.58,45.03,37.58,5,1,1,0,1,10,9,5,0,1160.5,33268.125,-33462.773,210303.78,78806.453,0,0,2614.1313 +9001,10943,19570,19569,-9,-9,1,0,28,0,0,0,2,2,-9,0,2,7.8693724,7.4167662,0,4,-3,-31.334568,0,-9,-9,2021,12,3,39,35,1,3,0,6.7209601,6.7209601,0,0,0,0,0,0,0,0,0,0,0,2.5936024,0,45.03,37.58,30.39,56.58,3.333333333333333,1,1,0,0,3,9,5,0,1160.5,33268.125,-33462.773,210303.78,78806.453,0,0,2614.1313 +9002,10944,19571,19572,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.3546853,7.3244905,29,-6,57.90292,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.487412,128.72005,20.49996,0,1,1,0,6.2620893,7.2791381,62.62,21.31,56.64,53.85,10,1,1,0,0,0,5,4,1,969,534473.5,240913.91,196995.28,0,0,0,3852.0063 +9002,10944,19572,19571,-9,-9,1,1,83,0,0,0,3,3,-9,0,5,0,7.7137051,7.5873795,29,6,21.44232,0,3,2,2021,4,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,5.8789091,7.6217818,56.64,53.85,62.62,21.31,10,1,1,0,0,0,5,4,1,969,534473.5,240913.91,196995.28,0,0,0,3852.0063 +9003,10945,19573,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-952.18353,0,-9,-9,2021,19,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,19.74,-9,-9,3.333333333333333,4,2,0,0,0,9,1,0,331,123400.08,0,0,0,0,0,1240.4254 +9004,10946,19574,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-952.03571,0,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,6,4,1,1,520,0,0,0,0,0,0,537.11603 +9005,10947,19575,19576,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,36,-2,36.971645,0,-9,-9,2021,24,10,0,20,3,10,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.49,44.86,31.62,18.37,1.666666666666667,1,1,0,0,10,2,2,0,1285,29522.967,0,0,0,0,0,1596.302 +9005,10947,19576,19575,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,4.4593911,4.4419703,36,2,21.253515,0,-9,-9,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,29.364058,0,74.5,1,1,0,0,4.3858585,31.62,18.37,41.49,44.86,6.666666666666667,1,1,0,0,0,2,2,0,1285,29522.967,0,0,0,0,0,1596.302 +9005,10948,19577,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.6156168,7.9004993,0,0,0,-1016.7774,0,-9,-9,2021,11,0,51,32,1,0,0,5.2010837,5.2010837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.89,53.77,-9,-9,8.333333333333334,1,1,0,0,4,2,3,0,240,-34358.703,-18156.582,0,0,4609.1753,0,1232.4078 +9006,10949,19578,19579,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.2420816,8.3360186,0,19,-1,-124.01968,0,2,1,2021,11,0,35,35,1,0,0,11.247703,11.247703,.05,.05,0,0,0,0,0,0,0,0,0,1.6065809,0,48.87,58.55,51.77,58.57,8.333333333333334,1,1,0,0,9,10,5,1,657,281448.72,215199.78,210293.67,81989.328,4532.7588,4068.115,3110.9097 +9006,10949,19579,19578,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.5714788,8.8152361,0,20,1,-102.97003,0,2,2,2021,14,5,50,47,1,5,0,13.991342,13.991342,.05,.05,0,0,0,0,0,0,0,0,0,1.1976042,0,51.77,58.57,48.87,58.55,8.333333333333334,1,1,0,0,12,10,5,1,657,281448.72,215199.78,210293.67,81989.328,4532.7588,4068.115,3110.9097 +9007,10950,19580,19581,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.8087506,6.3028479,44,1,-108.74201,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2808366,53.64,52.35,59.67,52.23,8.333333333333334,1,1,0,0,10,12,2,1,1841.5,466989.13,36885.563,290385.38,0,61996.66,0,2346.7769 +9007,10950,19581,19580,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,5.828712,5.9528685,6,-1,36.408688,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0761538,59.67,52.23,53.64,52.35,8.333333333333334,1,1,0,0,12,12,2,1,1841.5,466989.13,36885.563,290385.38,0,61996.66,0,2346.7769 +9008,10951,19582,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,0,0,-834.3974,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.34,38.79,-9,-9,3.333333333333333,3,4,0,1,0,8,1,0,4316,40420.184,-129244.69,0,0,0,0,451.82089 +9009,10952,19583,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.7488861,6.6777115,0,0,-1004.8621,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9852829,61.2,31.05,-9,-9,10,1,1,0,0,0,12,2,1,481,258839.59,222467.63,0,0,0,0,1215.4335 +9010,10953,19584,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,5,0,7.3601813,7.1846237,0,0,-932.74268,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2282858,7.3548112,57.06,57.76,-9,-9,0,1,1,0,0,0,5,3,1,115,27655.498,146010.48,147133.72,0,0,3145.177,1204.6169 +9011,10954,19585,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.1292353,7.9638176,0,0,0,-902.85144,0,2,2,2021,14,2,38,30,1,2,0,10.784724,10.784724,.05,.05,0,0,0,0,0,7,0,0,0,3.6531811,0,47.77,56.48,-9,-9,5,1,1,0,0,2,8,4,0,437,370824.09,47565.18,497851.41,158356.5,0,604.44739,1978.2164 +9011,10955,19586,-9,19585,-9,1,1,22,0,0,0,2,2,-9,0,4,7.6689081,7.491487,0,0,0,-964.32544,0,2,-9,2021,10,0,35,35,1,1,1,6.1744199,6.1744199,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,3,0,256,192428.19,0,0,0,0,0,50.262222 +9012,10956,19587,19588,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,49,-2,107.12598,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.47,53.17,60.29,52.11,8.333333333333334,1,1,0,0,5,2,2,1,3242.5,933098.38,286550.13,433693.09,0,0,0,2176.7451 +9012,10956,19588,19587,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.2990017,7.3446426,49,2,-51.460598,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8780646,60.29,52.11,51.47,53.17,8.333333333333334,1,1,0,0,3,2,2,1,3242.5,933098.38,286550.13,433693.09,0,0,0,2176.7451 +9013,10957,19589,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1050.4707,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,.10451097,30.405348,20.357119,0,1,1,0,6.6862588,0,42.04,47.49,-9,-9,0,1,1,0,0,0,4,1,0,879,31573.742,0,0,0,0,0,1099.6528 +9014,10958,19590,19591,-9,-9,1,1,32,0,1,0,2,2,-9,0,4,8.2120152,8.5814457,0,6,-16,-120.9287,0,2,2,2021,8,0,40,40,1,0,0,11.117047,11.117047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,53.75,49.75,8.333333333333334,1,1,0,0,9,9,3,1,1011.6667,59309.875,6038.4673,244532.98,173113.47,0,0,2396.2532 +9014,10958,19591,19590,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.3850956,7.6840682,0,6,16,54.315697,0,3,3,2021,9,0,30,25,1,0,0,8.290432,8.290432,0,0,0,0,0,0,0,0,1,1,0,0,0,53.75,49.75,57.16,56.15,8.333333333333334,1,1,0,0,9,9,3,1,1011.6667,59309.875,6038.4673,244532.98,173113.47,0,0,2396.2532 +9014,10958,19592,-9,19591,19590,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.6729,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,1011.6667,59309.875,6038.4673,244532.98,173113.47,0,0,2396.2532 +9014,10959,19593,-9,19591,19590,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-942.57312,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,975,120234.6,0,0,0,0,0,0 +9015,10960,19594,-9,-9,-9,1,1,32,0,0,0,3,3,-9,0,4,7.7838602,7.7913384,0,0,0,-906.21869,-9,-9,-9,2021,31,12,20,0,1,12,0,18.993341,18.993341,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.62,49.25,-9,-9,3.333333333333333,4,2,0,0,1,6,3,0,2164,-74110.836,14611.438,0,0,0,0,1206.9883 +9016,10961,19595,19596,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.4065351,8.3018475,0,8,4,42.249577,0,3,3,2021,11,0,76,43,1,0,0,10.711987,10.711987,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,41.99,53.75,3.333333333333333,1,1,0,0,11,7,5,1,613,178234.36,62193.293,0,0,7451.9497,3305.075,2735.9412 +9016,10961,19596,19595,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.8026896,7.811058,0,8,-4,-56.305386,0,2,2,2021,12,0,50,45,1,0,0,4.6037159,4.6037159,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.99,53.75,49.12,57.28,3.333333333333333,1,1,0,0,11,7,5,1,613,178234.36,62193.293,0,0,7451.9497,3305.075,2735.9412 +9017,10962,19597,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,3.680541,3.608217,0,0,-1041.4388,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.6239076,67.04000000000001,42.15,-9,-9,10,1,1,0,0,2,4,2,0,507,493819.09,120904.95,191584.5,0,0,0,996.1889 +9018,10963,19598,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.6069722,7.8116426,0,0,-1079.5356,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.4465203,7.5895538,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,467,653428.69,412941.44,268060,0,0,959.17114,2245.5862 +9019,10964,19599,19601,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,9.8142452,9.4998369,0,3,3,-9.3472395,0,-9,-9,2021,5,0,49,49,1,0,0,31.659464,31.659464,.05,.05,0,0,0,0,0,0,0,0,0,2.5265639,0,53.96,50.73,30.59,64.25,8.333333333333334,1,1,0,0,8,7,5,1,535,327879.56,51104.426,321335.25,204842.83,0,0,4935.0278 +9019,10964,19600,-9,19601,19599,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-951.31915,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,535,327879.56,51104.426,321335.25,204842.83,0,0,4935.0278 +9019,10964,19601,19599,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,0,0,0,3,-3,188.92859,0,-9,-9,2021,22,9,0,5,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.59,64.25,53.96,50.73,8.333333333333334,1,1,0,0,2,7,5,1,535,327879.56,51104.426,321335.25,204842.83,0,0,4935.0278 +9020,10965,19602,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,6.4701824,6.8509865,0,0,0,-832.68011,0,2,-9,2021,12,0,30,20,1,0,0,2.8308816,2.8308816,0,0,0,0,0,0,0,2,1,1,0,0,0,45.52,57.21,-9,-9,3.333333333333333,1,1,0,1,7,11,2,0,768,-6478.6479,0,0,0,0,0,825.76178 +9021,10966,19603,-9,19605,19606,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1108.4912,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9021,10966,19604,-9,19605,19606,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.4176,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9021,10966,19605,19606,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.8605824,8.6335382,0,26,-3,105.53844,0,2,2,2021,10,0,50,46,1,0,0,15.623135,15.623135,.05,.05,0,0,0,0,0,0,1,1,0,4.5578098,0,51.83,57.2,57.33,53.46,10,1,1,0,0,9,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9021,10966,19606,19605,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,7.7630434,7.8998961,0,26,3,248.27628,0,1,1,2021,12,0,30,45,1,0,0,10.742811,10.742811,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.83,57.2,8.333333333333334,1,1,0,0,9,9,4,1,1857.25,660781.75,179527.31,410256.81,60880.852,14228.904,0,3257.688 +9022,10967,19607,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,6.0110826,5.921936,0,0,-869.89197,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.9347095,43.96,39.58,-9,-9,5,1,1,0,1,9,12,2,0,979,33632.637,0,98724.438,7425.4976,0,0,1114.7362 +9023,10968,19608,-9,19611,19612,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1143.472,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19609,-9,19611,19612,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1110.0392,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19610,-9,19611,19612,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.6195,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19611,19612,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,0,0,0,7,-1,-54.846603,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,51,56,8.333333333333334,1,1,0,0,0,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9023,10968,19612,19611,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.188798,9.2893448,0,7,1,-58.332306,0,3,3,2021,9,0,37,37,1,1,0,37.936253,37.936253,.05,.05,0,0,0,0,0,0,1,1,0,8.8822193,0,51,56,51.14,60.45,8,2,3,0,0,1,9,4,1,946.79999,1252074.4,711501,333248.03,264213.84,2266.0122,0,6233.7075 +9024,10969,19613,19616,-9,-9,1,0,38,1,3,0,3,3,-9,0,4,6.6191082,6.9934244,0,10,-1,70.46714,0,3,3,2021,11,0,18,18,1,2,0,5.4741459,5.4741459,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,41.98,44.15,8.333333333333334,1,1,0,0,7,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19614,-9,19613,19616,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.1795,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19615,-9,19613,19616,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-983.14349,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19616,19613,-9,-9,1,1,39,1,3,0,2,2,-9,0,3,8.3979492,8.4892864,0,10,1,-22.495499,0,-9,-9,2021,12,0,50,50,1,0,0,12.458801,12.458801,0,0,0,0,0,0,0,0,1,1,0,0,0,41.98,44.15,48,57,8.333333333333334,1,1,0,0,11,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9024,10969,19617,-9,19613,19616,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.7211,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,516.79999,67163.289,5243.1094,0,0,0,1.634845,2851.6245 +9025,10970,19618,19619,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1523371,8.139266,0,5,-8,-34.967045,0,-9,-9,2021,8,1,37,37,1,1,0,10.23813,10.23813,0,0,0,0,0,0,0,0,0,0,0,3.2105582,0,59.53,56.44,58.3,52.91,10,1,1,0,0,9,12,5,1,627,418671.06,120526.79,192185.97,26436.471,0,0,3659.8225 +9025,10970,19619,19618,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,8.6394558,9.0260534,0,5,8,-128.04506,0,3,3,2021,10,0,35,42,1,0,0,17.953434,17.953434,.05,.05,0,0,0,0,0,0,0,0,0,3.4672236,0,58.3,52.91,59.53,56.44,8.333333333333334,1,1,0,0,8,12,5,1,627,418671.06,120526.79,192185.97,26436.471,0,0,3659.8225 +9026,10971,19620,19621,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,9.4560242,9.3379669,0,30,6,112.52121,0,1,1,2021,11,0,70,60,1,0,0,19.217371,19.217371,0,0,0,0,0,0,0,0,0,0,0,0,0,46.94,47.09,41.69,56.83,5,4,5,0,0,11,7,5,1,765,3127861.3,1188378.5,1125565.5,0,0,0,3621.314 +9026,10971,19621,19620,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,30,-6,86.753845,0,2,1,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.69,56.83,46.94,47.09,5,4,5,0,0,0,7,5,1,765,3127861.3,1188378.5,1125565.5,0,0,0,3621.314 +9026,10972,19622,-9,19621,19620,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-999.64258,-9,1,1,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.04,57.07,-9,-9,5,4,5,0,1,0,7,1,1,877,228915.09,0,0,0,0,0,0 +9027,10973,19623,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,7.7724123,7.3095541,0,0,-947.77484,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1483713,7.6900764,40.61,33.04,-9,-9,5,1,1,0,0,0,5,3,1,305,192623.56,127121.28,68785.344,0,5079.6211,0,1667.1757 +9028,10974,19624,-9,19625,-9,1,1,16,0,1,1,2,0,-9,0,4,0,3.5747905,3.508219,0,0,-1085.6378,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8069201,0,49.35,59.64,-9,-9,10,1,1,0,0,0,7,2,0,1110,-7415.4063,0,0,0,8402.9219,0,1496.5443 +9028,10974,19625,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,6.9247952,7.0329885,0,0,0,-1084.2869,0,2,-9,2021,5,0,25,25,1,0,0,5.2716556,5.2716556,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,6,7,2,0,1110,-7415.4063,0,0,0,8402.9219,0,1496.5443 +9029,10975,19626,-9,19627,19629,1,1,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.9166,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9029,10975,19627,19629,-9,-9,1,0,31,1,2,0,2,2,-9,0,2,0,3.8830671,3.7780876,3,1,139.65077,0,2,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.5107296,0,41.06,28.62,52.97,53.97,8.333333333333334,1,1,0,0,2,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9029,10975,19628,-9,19627,19629,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.93256,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9029,10975,19629,19627,-9,-9,1,1,30,1,2,0,2,2,-9,0,4,8.1243191,8.4300547,0,3,-1,-84.21312,0,-9,-9,2021,10,1,42,37,1,1,0,8.3502846,8.3502846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.97,53.97,41.06,28.62,8.333333333333334,1,1,0,0,9,9,3,0,548.5,72511.125,57662.203,161843.48,107298.52,0,965.5318,1785.5087 +9030,10976,19630,19631,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,48,-1,0,0,3,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,18.53,40.2,34.77,3.333333333333333,1,1,0,0,3,4,1,0,623,78499.008,-68845.25,102075.88,0,0,0,2626.5791 +9030,10976,19631,19630,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,13,1,0,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,40.2,34.77,30.6,18.53,3.333333333333333,1,1,0,0,8,4,1,0,623,78499.008,-68845.25,102075.88,0,0,0,2626.5791 +9031,10977,19632,19633,-9,-9,1,1,62,0,0,0,2,2,-9,1,2,6.7581844,6.4972172,0,34,4,46.001152,0,-9,-9,2021,23,11,6,8,1,11,0,17.835474,17.835474,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,32.51,32.5,23.29,29.99,6.666666666666667,1,1,0,0,7,6,4,1,698.5,815273.88,375642.19,203101.78,0,0,0,1353.5115 +9031,10977,19633,19632,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1990118,7.9524794,0,34,-4,-30.622648,0,-9,-9,2021,30,11,35,36,1,11,0,10.849276,10.849276,.05,.05,0,0,0,0,0,0,1,1,0,1.4185505,0,23.29,29.99,32.51,32.5,5,1,1,0,0,11,6,4,1,698.5,815273.88,375642.19,203101.78,0,0,0,1353.5115 +9032,10978,19634,-9,-9,-9,1,0,50,0,1,0,2,2,-9,1,3,7.9973764,8.1595716,0,0,0,-923.54175,0,-9,-9,2021,8,0,28,28,1,0,0,12.486555,12.486555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.36,44.28,-9,-9,8.333333333333334,1,1,0,0,13,11,3,1,590,443437.84,104740.3,99996.984,21514.416,1587.196,0,2444.7134 +9033,10979,19635,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,6.2742457,6.3651829,0,0,0,-1078.7538,0,-9,-9,2021,16,4,8,16,1,4,0,7.6795144,7.6795144,0,0,0,0,0,0,0,0,0,0,0,0,0,36.78,53.77,-9,-9,6.666666666666667,1,1,0,0,4,1,2,0,693,-204956.97,779.25433,0,0,0,-726.34259,812.93414 +9034,10980,19636,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.4322133,6.2064595,0,0,-1041.0793,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8865997,6.5197415,39.3,42.85,-9,-9,1.666666666666667,1,1,0,0,5,4,2,1,1028,127729.74,182125.23,0,0,0,0,966.23389 +9035,10981,19637,-9,19638,-9,1,1,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1010.2116,-9,1,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,1,0,1360.5,322562.75,43344.672,484325.31,173389.19,0,6133.1904,2324.4277 +9035,10981,19638,-9,-9,-9,1,0,51,0,1,0,1,1,-9,1,3,0,0,0,0,0,-824.67224,0,2,2,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.95,54.89,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,1360.5,322562.75,43344.672,484325.31,173389.19,0,6133.1904,2324.4277 +9036,10982,19639,-9,19641,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.55743,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,1,0,608.66669,2024.6381,0,0,0,1332.5828,0,1094.9185 +9036,10982,19640,-9,19641,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0352,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,608.66669,2024.6381,0,0,0,1332.5828,0,1094.9185 +9036,10982,19641,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,0,0,0,0,0,-886.03821,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.69,26.26,-9,-9,5,1,1,1,0,0,5,1,0,608.66669,2024.6381,0,0,0,1332.5828,0,1094.9185 +9037,10983,19642,19643,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.3535595,8.3935041,6.4840903,11,1,90.793495,0,3,3,2021,14,3,38,37,1,3,0,10.219703,10.219703,0,0,0,0,0,0,0,7,1,1,0,1.8633467,6.4269924,40.69,59.62,57.16,56.15,6.666666666666667,1,1,0,0,14,13,4,1,934.5,1126973.5,848528.25,227077.73,0,0,0,3118.6702 +9037,10983,19643,19642,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,11,-1,63.96059,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.9687985,0,57.16,56.15,40.69,59.62,8.333333333333334,1,1,0,0,0,13,4,1,934.5,1126973.5,848528.25,227077.73,0,0,0,3118.6702 +9038,10984,19644,19645,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,21,0,55.251629,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.43,47.48,55.44,48.73,8.333333333333334,1,1,0,0,1,1,2,1,678.5,329129.38,337759.19,27416.523,0,0,3469.4182,2101.5669 +9038,10984,19645,19644,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.1605501,7.2652602,21,0,56.705208,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.729867,7.3682904,55.44,48.73,53.43,47.48,8.333333333333334,1,1,0,0,2,1,2,1,678.5,329129.38,337759.19,27416.523,0,0,3469.4182,2101.5669 +9039,10985,19646,-9,19648,19647,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-911.13928,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,10,3,0,791.33331,1236192.4,992111.63,283190.31,85069.664,0,752.02448,3295.4617 +9039,10985,19647,19648,-9,-9,1,1,42,0,1,0,2,2,-9,1,3,8.2854319,7.9698038,0,7,-8,-8.7409163,0,2,2,2021,14,2,44,46,1,2,0,9.6968765,9.6968765,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,56.52,48.31,52.09,30.08,8.333333333333334,1,1,0,0,8,10,3,0,791.33331,1236192.4,992111.63,283190.31,85069.664,0,752.02448,3295.4617 +9039,10985,19648,19647,-9,-9,1,0,50,0,1,0,1,1,-9,0,2,7.2379332,7.1042762,0,7,8,.088272192,0,2,2,2021,5,0,36,30,1,0,0,4.6563787,4.6563787,0,0,0,0,0,0,0,0,1,1,0,2.2774897,0,52.09,30.08,56.52,48.31,6.666666666666667,1,1,0,0,6,10,3,0,791.33331,1236192.4,992111.63,283190.31,85069.664,0,752.02448,3295.4617 +9039,10986,19649,-9,19648,19647,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1047.1849,-9,1,2,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.55132335,0,53.18,51.37,-9,-9,8.333333333333334,1,1,0,0,2,10,1,0,925,0,0,0,0,0,0,313.82553 +9040,10987,19650,19651,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2471247,8.2893429,0,4,0,-153.12292,0,1,1,2021,7,0,52,48,1,0,0,12.497813,12.497813,.05,.05,0,0,0,0,0,0,0,0,0,5.1476655,0,54.1,59.11,54.1,59.11,6.666666666666667,1,1,0,0,3,10,5,1,631.5,67085.391,-36177.73,0,0,0,0,4583.1836 +9040,10987,19651,19650,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.863616,8.6856947,0,4,0,37.821991,0,-9,-9,2021,8,0,47,43,1,0,0,16.781754,16.781754,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,54.1,59.11,10,1,1,0,0,5,10,5,1,631.5,67085.391,-36177.73,0,0,0,0,4583.1836 +9041,10988,19652,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1075.0026,0,3,3,2021,18,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.26,23.78,-9,-9,3.333333333333333,1,1,0,1,8,5,1,1,1310,0,0,0,0,0,0,974.8277 +9042,10989,19653,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0480423,8.3106747,0,0,0,-1009.3224,0,3,3,2021,9,0,38,38,1,0,0,9.147501,9.147501,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.17,50.61,-9,-9,10,1,1,0,0,11,4,4,1,702,195452.13,97946.891,57274.266,26870.32,0,0,1527.23 +9043,10990,19654,19655,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.9724579,8.8079605,0,25,-1,3.4332654,0,2,2,2021,16,6,40,0,1,6,0,30.122158,30.122158,.05,.05,0,0,0,0,0,0,0,0,0,6.5149188,0,54.2,57.49,43.46,40.88,8.333333333333334,1,1,0,0,12,8,5,1,1086.3334,114424.41,115702.2,670248.63,523073.44,19059.381,0,6613.1362 +9043,10990,19655,19654,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,9.4238405,9.3957176,0,25,1,-57.26836,0,2,2,2021,13,1,85,43,1,1,0,17.700968,17.700968,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.46,40.88,54.2,57.49,5,1,1,0,0,12,8,5,1,1086.3334,114424.41,115702.2,670248.63,523073.44,19059.381,0,6613.1362 +9043,10990,19656,-9,19655,19654,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1145.8844,-9,2,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.13,47.49,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,1086.3334,114424.41,115702.2,670248.63,523073.44,19059.381,0,6613.1362 +9043,10991,19657,-9,19655,19654,1,0,19,0,1,0,2,2,-9,0,3,7.6348047,7.729239,0,0,0,-973.05798,0,2,1,2021,12,0,35,43,1,0,1,8.648427,8.648427,.05,.05,0,0,0,0,0,0,0,0,0,.64048743,0,45.98,56.3,-9,-9,8.333333333333334,1,1,0,0,3,8,3,1,363,14487.652,87169.828,0,0,9717.8643,0,182.32126 +9044,10992,19658,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.603282,6.0050025,0,0,-889.87274,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.67820162,6.8999491,53,46,-9,-9,7,1,1,0,0,0,7,2,0,666,914128.81,280002.56,437512.75,0,0,93.132263,939.99286 +9045,10993,19659,19660,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,7.7258611,7.6848211,0,7,1,31.014662,0,-9,-9,2021,9,0,30,30,1,1,0,8.0129099,8.0129099,.05,.05,.05,0,0,0,0,0,0,0,0,4.1759944,0,53,54,46.48,53.76,8,1,1,0,0,1,8,4,1,1761,421822.63,328131.5,183444.47,0,0,0,1425.1599 +9045,10993,19660,19659,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.5410004,7.6749182,0,34,-1,-4.5931315,0,2,2,2021,9,0,21,21,1,0,0,9.4275961,9.4275961,.05,.05,0,0,0,0,0,0,0,0,0,2.9972184,0,46.48,53.76,53,54,6.666666666666667,4,2,0,0,8,8,4,1,1761,421822.63,328131.5,183444.47,0,0,0,1425.1599 +9046,10994,19661,19662,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7013974,7.8819509,0,8,-7,89.486084,-9,3,3,2021,7,0,29,0,1,0,0,11.831524,11.831524,0,0,0,0,0,0,0,0,1,1,0,.73591107,0,54.2,57.49,56.47,59.4,8.333333333333334,1,1,0,0,10,12,4,1,742.5,860184.75,620201,171950.16,0,0,284.27026,2351.5459 +9046,10994,19662,19661,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,7.6520228,7.3052316,50,7,-97.581848,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.27096441,7.4077311,56.47,59.4,54.2,57.49,8.333333333333334,1,1,0,0,11,12,4,1,742.5,860184.75,620201,171950.16,0,0,284.27026,2351.5459 +9047,10995,19663,-9,-9,-9,1,0,42,1,2,0,3,3,-9,1,2,0,0,0,0,0,-1015.5925,0,3,3,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.63,34.65,-9,-9,1.666666666666667,1,1,1,1,0,13,1,0,989,-71874.586,0,0,0,-423.44626,0,871.15497 +9047,10996,19664,-9,19663,-9,1,1,21,1,2,0,3,3,-9,0,5,0,0,0,0,0,-957.89581,-9,3,-9,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.37,52.7,-9,-9,5,1,1,1,0,0,13,1,0,463,5808.6084,0,0,0,0,0,25.532887 +9047,10997,19665,-9,19663,-9,1,0,23,1,2,0,3,3,-9,0,4,0,0,0,0,0,-947.59729,-9,3,-9,2021,11,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,-9,-9,5,1,1,1,0,0,13,1,0,1022.6667,86104.344,0,0,0,1144.4874,0,907.86969 +9047,10997,19666,-9,19665,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.5125,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,1022.6667,86104.344,0,0,0,1144.4874,0,907.86969 +9047,10997,19667,-9,19665,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.1586,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,1022.6667,86104.344,0,0,0,1144.4874,0,907.86969 +9047,10998,19668,-9,19663,-9,1,1,24,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1062.3066,0,3,-9,2021,15,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.35,39.53,-9,-9,1.666666666666667,1,1,1,1,0,13,1,0,204,70444.227,0,0,0,0,0,-69.670135 +9048,10999,19669,19670,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,0,0,4,-24,76.039833,0,-9,-9,2021,6,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,59.04,54.12,10,2,3,0,0,0,9,4,1,289.5,1075116.9,598973.75,399999.81,0,0,0,3510.6489 +9048,10999,19670,19669,-9,-9,1,1,90,0,0,0,1,1,-9,0,5,0,8.317215,8.356698,4,24,42.044529,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.2404213,8.582242,59.04,54.12,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,289.5,1075116.9,598973.75,399999.81,0,0,0,3510.6489 +9049,11000,19671,19672,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,8.0163059,8.1000528,26,11,-139.22119,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0285702,7.9410648,34.44,48.18,62.39,56.71,5,1,1,0,0,11,4,4,1,647.5,1694518.9,1095880.3,291396.69,0,0,0,3183.499 +9049,11000,19672,19671,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.0204234,7.0930338,0,25,-11,15.125313,0,2,1,2021,11,3,20,20,1,3,0,6.8539391,6.8539391,0,0,0,0,0,0,0,0,0,0,0,6.9444156,0,62.39,56.71,34.44,48.18,10,1,1,0,0,10,4,4,1,647.5,1694518.9,1095880.3,291396.69,0,0,0,3183.499 +9049,11001,19673,-9,19672,19671,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-993.76154,-9,2,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4992609,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,950,-24670.873,0,0,0,0,0,118.39039 +9049,11002,19674,-9,19672,19671,1,0,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-980.75964,-9,2,1,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.86,64.55,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,1544,-46785.656,0,0,0,0,0,0 +9050,11003,19675,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.4284906,8.3799238,0,0,0,-914.82794,0,2,2,2021,7,0,50,50,1,0,0,8.7099276,8.7099276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.58,49.75,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,303,222855.77,-47934.742,368922,125714.23,0,0,1852.9833 +9051,11004,19676,19677,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.6563234,6.7241693,54,-1,-45.270477,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2766426,6.7082081,43.21,47.68,55.71,40.47,8.333333333333334,1,1,0,0,0,10,3,1,6061.5,820786.38,229019.92,381397.06,0,0,22.537201,2984.7537 +9051,11004,19677,19676,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6819763,7.3221469,54,1,144.14133,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7605429,7.6996446,55.71,40.47,43.21,47.68,6.666666666666667,1,1,0,0,1,10,3,1,6061.5,820786.38,229019.92,381397.06,0,0,22.537201,2984.7537 +9052,11005,19678,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,7.6307106,7.846622,0,0,0,-972.60645,-9,-9,-9,2021,9,1,60,0,1,1,0,5.6571774,5.6571774,0,0,0,0,0,0,0,0,0,0,0,2.5953529,0,33.24,65.53,-9,-9,6.666666666666667,1,1,0,0,1,1,4,1,491,-104468.02,0,0,0,0,0,964.75153 +9053,11006,19679,19680,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.3248215,8.7789516,7.3457584,27,7,-42.88847,0,3,3,2021,11,0,40,35,1,0,0,12.686474,12.686474,.05,.05,0,0,0,0,0,0,0,0,0,.59354001,7.3149786,43.45,38.38,50.3,56.65,3.333333333333333,1,1,0,0,9,9,5,1,777,854688.88,809116.31,185145.31,0,0,6595.4644,4064.0552 +9053,11006,19680,19679,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.7762275,7.5194468,0,27,-7,18.26885,0,2,3,2021,11,0,40,35,1,0,0,5.5843983,5.5843983,.05,.05,0,0,0,0,0,0,0,0,0,.65856904,0,50.3,56.65,43.45,38.38,3.333333333333333,1,1,0,0,9,9,5,1,777,854688.88,809116.31,185145.31,0,0,6595.4644,4064.0552 +9054,11007,19681,19682,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,8.7212782,8.7588358,0,10,0,.13886906,0,-9,-9,2021,9,1,107,107,1,1,0,6.4318662,6.4318662,.05,.05,0,0,0,0,0,19,0,0,0,0,0,56.92,41.31,46.4,39.55,10,1,1,0,0,12,5,5,0,1132.5,362349.63,9183.4844,145771.72,2240.7378,0,0,3580.3223 +9054,11007,19682,19681,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.2858615,6.9895563,0,10,0,123.07514,0,-9,-9,2021,16,4,20,20,1,4,0,8.3337545,8.3337545,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.4,39.55,56.92,41.31,5,1,1,0,0,6,5,5,0,1132.5,362349.63,9183.4844,145771.72,2240.7378,0,0,3580.3223 +9055,11008,19683,-9,-9,-9,1,0,41,0,0,0,3,3,-9,1,3,0,0,0,0,0,-970.30176,0,3,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.08,42.03,-9,-9,3.333333333333333,4,2,1,0,0,8,1,0,810,251563.58,0,0,0,0,0,1888.5061 +9056,11009,19684,-9,19686,19688,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-883.33093,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19685,-9,19686,19688,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.50751,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19686,19688,-9,-9,1,0,36,1,3,0,1,1,-9,0,1,9.1076565,9.4316292,0,6,-12,95.950233,0,1,1,2021,33,12,120,60,1,12,0,8.2031965,8.2031965,0,0,0,0,0,0,0,0,0,0,0,3.0358431,0,11.24,45.24,49.44,56.93,3.333333333333333,1,1,0,0,7,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19687,-9,19686,19688,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.2937,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9056,11009,19688,19686,-9,-9,1,1,48,1,3,0,1,1,-9,0,4,9.4174204,9.5008583,0,6,12,.23445287,0,3,3,2021,12,2,46,45,1,2,0,38.530426,38.530426,.05,.05,0,0,0,0,0,0,0,0,0,1.7078643,0,49.44,56.93,11.24,45.24,5,1,1,0,0,7,9,5,1,860.79999,542872.13,49392.535,875042.19,419604.94,0,0,6506.4194 +9057,11010,19689,-9,19690,19692,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.312,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9057,11010,19690,19692,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,8.2811308,8.1794024,0,15,-3,79.379684,0,2,2,2021,18,6,32,31,1,6,0,13.176717,13.176717,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,31.93,45.18,8.333333333333334,1,1,0,0,10,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9057,11010,19691,-9,19690,19692,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.57275,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9057,11010,19692,19690,-9,-9,1,1,37,0,2,0,2,2,-9,0,2,8.8544893,8.7173061,0,15,3,-147.25493,0,1,1,2021,15,3,23,28,1,3,0,40.65844,40.65844,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,45.18,45.81,61.51,5,1,1,0,0,9,7,5,1,623,283843.88,24859.311,422812,189797.5,0,0,4339.7441 +9058,11011,19693,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.5556192,5.3997331,0,0,-948.32483,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5293651,63.56,36.87,-9,-9,10,1,1,0,0,0,9,2,1,312,-143723.67,0,0,0,0,0,1383.9976 +9059,11012,19694,-9,19695,19696,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.21014,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,5,1,1812,1012125.2,466119.88,360781.75,0,0,0,4514.0947 +9059,11012,19695,19696,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.685709,8.6421223,0,24,3,-66.654205,0,3,-9,2021,11,0,40,39,1,1,0,14.62795,14.62795,0,0,0,0,0,0,0,2,1,1,0,0,0,49,55,58.15,52.91,8.333333333333334,1,1,0,0,12,13,5,1,1812,1012125.2,466119.88,360781.75,0,0,0,4514.0947 +9059,11012,19696,19695,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.9960737,8.8532915,0,24,-3,30.447992,0,2,2,2021,6,0,47,49,1,0,0,16.422485,16.422485,.05,.05,.05,0,0,0,0,0,1,1,0,4.5446057,0,58.15,52.91,49,55,8.333333333333334,1,1,0,0,10,13,5,1,1812,1012125.2,466119.88,360781.75,0,0,0,4514.0947 +9060,11013,19697,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,5.9227242,5.8314891,0,0,-950.96051,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,3.7359314,.78632379,21.100367,0,1,1,0,0,5.9816866,44.35,23.51,-9,-9,5,1,1,0,0,0,5,2,1,1791,126876.52,-55862.887,57039.301,0,0,0,620.28583 +9061,11014,19698,19699,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.3934021,8.6879845,0,8,3,68.428696,0,-9,-9,2021,9,0,42,43,1,1,0,12.443537,12.443537,.05,.05,0,0,0,0,0,0,1,1,0,4.56392,0,51,56,57.06,57.76,8,1,1,0,0,1,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9061,11014,19699,19698,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.3577847,7.5196157,0,20,-3,105.81467,0,3,3,2021,7,0,36,48,1,0,0,5.3778787,5.3778787,0,0,0,0,0,0,0,14.5,1,1,0,2.9809875,0,57.06,57.76,51,56,8.333333333333334,1,1,0,0,4,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9061,11014,19700,-9,19699,19698,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0126,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9061,11014,19701,-9,19699,19698,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1050.5607,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,4,1,720,400353.69,449489.16,134870.05,132099.34,0,0,2641.9387 +9062,11015,19702,19703,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,9.2029133,8.8456049,0,10,-2,-72.582458,0,2,2,2021,9,0,50,44,1,0,0,16.488647,16.488647,0,0,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,38.16,44.66,5,1,1,0,0,11,9,5,1,932,1443251.3,75498.281,930801.75,0,0,0,5383.502 +9062,11015,19703,19702,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,7.9571571,7.9057708,36,2,37.247581,0,2,3,2021,21,9,0,0,4,9,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,4.6439705,8.3379726,38.16,44.66,46.61,56.93,3.333333333333333,1,1,0,0,8,9,5,1,932,1443251.3,75498.281,930801.75,0,0,0,5383.502 +9063,11016,19704,19705,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.1563911,7.8656397,0,2,-1,55.770164,0,-9,-9,2021,12,1,39,37,1,1,0,9.8036022,9.8036022,0,0,0,0,0,0,0,0,0,0,0,2.2517989,0,30.67,65.95,43.48,60.97,8.333333333333334,1,1,0,0,4,2,3,1,398,2764.3242,0,0,0,0,0,2122.0737 +9063,11016,19705,19704,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,2,1,-45.132675,1,-9,-9,2021,11,2,0,52,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.3290186,0,43.48,60.97,30.67,65.95,6.666666666666667,1,1,0,0,2,2,3,1,398,2764.3242,0,0,0,0,0,2122.0737 +9064,11017,19706,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,5,8.751812,9.1473293,0,0,0,-1002.4468,0,2,1,2021,8,0,40,41,1,0,0,22.505173,22.505173,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52.38,55.95,-9,-9,8.333333333333334,1,1,0,0,13,8,5,0,5171,364145.22,211950.7,301018.25,88793.445,0,4177.1196,2807.375 +9065,11018,19707,-9,-9,-9,1,0,50,0,0,0,2,2,1,0,3,7.7077937,7.7309284,0,0,0,-1094.6804,-9,2,1,2021,7,1,20,0,1,1,0,11.36865,11.36865,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.15,48.98,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1116,506088.81,120008.38,159143.16,0,0,0,788.133 +9065,11019,19708,-9,19707,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1076.9598,-9,2,-9,2021,7,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,6,1,1,339,4334.2852,0,0,0,0,0,-360.36545 +9066,11020,19709,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5619516,6.9364829,0,0,-892.25787,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8645644,57.16,56.15,-9,-9,10,1,1,0,0,0,12,2,1,529,242281.06,99968.508,190696.23,0,0,0,878.90466 +9067,11021,19710,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.3294024,6.5571799,0,0,0,-1029.0713,0,-9,-9,2021,12,0,7,8,1,0,0,8.0905724,8.0905724,0,0,0,0,0,0,0,2,1,0,1,0,0,40.09,50.73,-9,-9,5,1,1,0,0,15,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9067,11021,19711,-9,19710,-9,1,1,12,0,0,1,3,0,-9,0,2,0,0,0,0,0,-1116.7936,-9,-9,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,1,1,-9,0,0,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9067,11021,19712,-9,19710,-9,1,0,10,0,0,1,3,0,-9,0,3,0,0,0,0,0,-892.44379,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9067,11021,19713,-9,19710,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1038.3868,-9,-9,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,0,567.25,124535.3,187907.84,0,0,0,1597.6865,1008.8133 +9068,11022,19714,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.77643,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.29,19.42,-9,-9,5,1,1,0,0,0,13,1,0,3457,59622.637,0,0,0,0,0,1597.1654 +9068,11023,19715,-9,19714,-9,1,0,24,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1021.9417,0,2,-9,2021,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,22.08,62.06,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,793,21850.994,0,0,0,4714.0215,0,1118.2551 +9069,11024,19716,-9,19719,19717,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.4563,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9069,11024,19717,19719,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,9.4245214,9.5230627,0,21,12,85.831436,0,2,2,2021,8,1,42,42,1,1,0,37.302345,37.302345,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9069,11024,19718,-9,19719,19717,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.0065,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9069,11024,19719,19717,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.2216368,8.4640331,0,21,-12,41.492149,0,2,2,2021,9,0,40,40,1,0,0,9.6195593,9.6195593,0,0,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,665,1313883,374789.59,597732.88,17993.393,0,0,5331.6924 +9070,11025,19720,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.3783627,8.1065426,0,0,0,-1125.7675,0,-9,3,2021,25,10,52,51,1,10,0,9.0854816,9.0854816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,59.91,-9,-9,8.333333333333334,1,1,0,0,8,9,4,0,730,-33062.586,103233.46,0,0,0,0,1251.6459 +9071,11026,19721,19722,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,8.9759655,9.1958122,0,25,13,-4.532681,-9,-9,-9,2021,10,0,37,0,1,1,0,28.189644,28.189644,0,0,0,0,0,0,0,0,1,1,0,.4072102,0,53,52,56.55,42.76,8,1,1,0,0,1,9,5,1,524,1638642.4,573721.63,594745.94,695.40961,0,0,11422.201 +9071,11026,19722,19721,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,9.8927326,9.5111647,0,1,-13,-70.478073,-9,2,2,2021,7,0,47,0,1,0,0,42.918167,42.918167,.05,.05,.05,0,0,0,0,0,1,1,0,3.6463125,0,56.55,42.76,53,52,8.333333333333334,1,1,0,0,8,9,5,1,524,1638642.4,573721.63,594745.94,695.40961,0,0,11422.201 +9072,11027,19723,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.5219378,6.1555209,0,0,-1009.143,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.485713,32.53,48.19,-9,-9,5,1,1,0,0,0,11,2,1,654,272367.47,72675.813,282841.91,0,0,0,1641.7676 +9073,11028,19724,19726,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.8069801,7.716866,0,18,-1,-73.670166,0,2,3,2021,5,0,31,25,1,0,0,7.1764131,7.1764131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.44,52.99,48.87,58.55,6.666666666666667,1,1,0,0,12,10,5,1,265.33334,229441.53,31639.561,291753.81,188071.81,11749.969,-121.5731,4657.8604 +9073,11028,19725,-9,19724,19726,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-923.12103,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,265.33334,229441.53,31639.561,291753.81,188071.81,11749.969,-121.5731,4657.8604 +9073,11028,19726,19724,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,9.0147753,9.3490744,0,18,1,-116.10999,0,1,3,2021,11,1,42,55,1,1,0,30.50609,30.50609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,55.44,52.99,8.333333333333334,1,1,0,0,12,10,5,1,265.33334,229441.53,31639.561,291753.81,188071.81,11749.969,-121.5731,4657.8604 +9074,11029,19727,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.4030738,7.5322466,0,0,0,-1058.9794,0,3,3,2021,9,0,25,25,1,0,0,8.5869513,8.5869513,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,-9,-9,3.333333333333333,3,4,0,1,11,9,3,0,356,108164.02,-4651.8779,0,0,0,-812.90741,819.53888 +9075,11030,19728,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,4.4568391,5.0361738,0,0,-970.49622,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6549854,55.52,45.88,-9,-9,10,1,1,0,0,3,11,2,1,548,673637.19,0,299784.53,0,0,0,1227.6378 +9076,11031,19729,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,7.9678621,7.7672644,5.8244953,0,0,-915.74182,0,2,3,2021,6,0,4,10,1,0,0,58.918278,58.918278,0,0,0,0,0,0,0,0,1,1,0,0,6.1473193,64.64,45.93,-9,-9,10,1,1,0,1,14,9,3,1,324,1364579.6,595885.44,756447.75,0,0,0,2197.1646 +9077,11032,19730,-9,19731,-9,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-975.48077,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,3,4,-9,0,0,7,5,0,389.5,70502.359,5860.6123,0,0,3759.9954,132.92685,1997.4304 +9077,11032,19731,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.675436,8.7288847,5.4791856,0,0,-895.76599,0,2,2,2021,8,2,38,37,1,2,0,19.380663,19.380663,0,0,.05,0,0,0,0,0,1,1,0,5.5934076,0,51.24,58.84,-9,-9,8.333333333333334,3,4,0,0,13,7,5,0,389.5,70502.359,5860.6123,0,0,3759.9954,132.92685,1997.4304 +9078,11033,19732,-9,19733,19735,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-789.37921,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9078,11033,19733,19735,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.1085806,8.3549662,0,19,0,18.620235,0,2,2,2021,8,0,26,23,1,0,0,16.320086,16.320086,.05,.05,0,0,0,0,0,0,1,1,0,1.522485,0,57.16,56.15,57.33,53.46,8.333333333333334,3,4,0,0,12,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9078,11033,19734,-9,19733,19735,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1925,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9078,11033,19735,19733,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.3339005,8.515007,0,19,0,122.12092,0,2,3,2021,8,0,35,40,1,0,0,19.994732,19.994732,.05,.05,0,0,0,0,0,0,1,1,0,3.4408801,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,12,7,4,1,2401.25,206946.41,107842.26,235901.03,124230.52,0,0,3553.1821 +9079,11034,19736,-9,19737,19738,1,0,26,0,0,0,2,2,-9,0,3,8.2136354,8.1221437,0,0,0,-934.61169,0,2,3,2021,9,0,39,39,1,0,1,7.9309354,7.9309354,.05,.05,0,0,0,0,0,0,1,1,0,.64921767,0,46.55,58.3,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,2696,24172.012,35940.297,0,0,7789.2534,-483.38873,1155.2303 +9079,11035,19737,19738,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,9.3583889,9.2522907,0,9,-10,65.193962,0,-9,-9,2021,12,1,30,30,1,1,0,48.769367,48.769367,0,0,0,0,0,0,0,0,1,1,0,2.3460901,0,46.55,58.3,53.33,53.71,8.333333333333334,1,1,0,0,10,11,5,1,1668.5,505574.59,317423.31,129240.66,1270.5396,0,0,6680.0762 +9079,11035,19738,19737,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,0,8.0238676,7.892365,9,10,78.812157,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.4987326,8.0081882,53.33,53.71,46.55,58.3,5,1,1,0,0,7,11,5,1,1668.5,505574.59,317423.31,129240.66,1270.5396,0,0,6680.0762 +9080,11036,19739,19740,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,0,0,29,-5,30.398909,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.398283,0,30.52,47.21,59.46,46.99,5,1,1,0,0,0,10,3,1,629,1424615.5,517503.25,694671.88,0,0,0,5079.1396 +9080,11036,19740,19739,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.878056,7.7550573,29,5,11.080482,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5852609,7.4429483,59.46,46.99,30.52,47.21,8.333333333333334,1,1,0,0,6,10,3,1,629,1424615.5,517503.25,694671.88,0,0,0,5079.1396 +9081,11037,19741,-9,-9,-9,1,0,54,0,0,0,2,2,-9,1,2,0,5.3113093,5.3889174,0,0,-982.61896,0,2,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5585074,5.2603188,30.44,36.36,-9,-9,1.666666666666667,1,1,0,0,0,2,2,1,925,46506,-27217.363,0,0,0,0,864.47491 +9082,11038,19742,19743,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.204607,8.0008669,0,36,3,2.4101532,0,3,3,2021,10,0,35,40,1,0,0,13.762612,13.762612,.05,.05,.05,0,0,0,0,2,0,0,0,.92032534,0,49.63,54.22,44.84,44.4,5,1,1,0,0,12,9,4,1,299,953849.75,431454.13,411786.88,0,0,0,2136.8416 +9082,11038,19743,19742,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.2063613,7.1607203,0,36,-3,-98.04525,0,2,1,2021,19,7,23,23,1,7,0,7.3332653,7.3332653,0,0,.05,0,0,0,0,0,0,0,0,4.3766155,0,44.84,44.4,49.63,54.22,8.333333333333334,1,1,0,0,12,9,4,1,299,953849.75,431454.13,411786.88,0,0,0,2136.8416 +9082,11039,19744,-9,19743,19742,1,0,29,0,0,0,1,1,-9,0,3,8.0433102,7.787384,0,0,0,-925.81921,0,2,2,2021,15,4,38,39,1,4,1,9.5485344,9.5485344,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.2,57.77,-9,-9,3.333333333333333,1,1,0,0,8,9,4,1,229,-63983.961,-42577.176,0,0,0,0,1407.7686 +9083,11040,19745,-9,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.4244061,8.123353,0,0,0,-1079.7772,0,-9,-9,2021,12,0,40,37,1,0,0,11.253282,11.253282,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.58,58.88,-9,-9,6.666666666666667,1,1,0,0,8,12,4,0,1526,-211165.31,0,0,0,5344.2144,5038.7422,1396.399 +9084,11041,19746,19747,-9,-9,1,1,95,0,0,0,1,1,-9,0,3,0,8.3026514,8.3170042,42,21,75.507721,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,5.1552348,0,0,1,1,0,3.7979517,7.7437673,29.37,47.76,57.16,56.15,5,1,1,0,0,0,7,4,1,885,0,0,0,0,0,0,4331.8062 +9084,11041,19747,19746,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.257926,8.1329355,42,-21,-61.464272,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.6408248,8.2893572,57.16,56.15,29.37,47.76,10,1,1,0,0,0,7,4,1,885,0,0,0,0,0,0,4331.8062 +9085,11042,19748,-9,19749,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.8005,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,4,1,1392.5,-35942.934,30861.369,0,0,0,0,1889.2776 +9085,11042,19749,-9,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,8.3970118,8.7443275,0,0,0,-1115.4508,0,-9,-9,2021,12,0,45,45,1,2,0,12.358401,12.358401,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,10,4,4,1,1392.5,-35942.934,30861.369,0,0,0,0,1889.2776 +9086,11043,19750,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,7.4838185,7.6008005,0,0,0,-992.94336,0,-9,-9,2021,3,0,33,30,1,0,0,11.08392,11.08392,.05,.05,0,0,0,0,0,0,0,0,0,6.0663075,0,43.57,43.17,-9,-9,0,1,1,0,0,10,10,3,1,226,27097.244,12711.527,0,0,0,0,502.92484 +9087,11044,19751,19752,-9,-9,1,0,63,0,0,0,2,2,-9,1,2,7.8401318,7.9737096,0,38,-11,97.127731,0,3,3,2021,21,9,38,38,1,9,0,5.9542618,5.9542618,0,0,0,0,0,0,0,0,1,0,1,2.9534128,0,26.34,51.67,35.8,38.24,0,1,1,0,0,13,2,4,1,1295.5,1237120.1,1085297,171689.41,0,519.39313,0,4794.3276 +9087,11044,19752,19751,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,8.0956154,8.1241808,34,11,-46.01757,0,3,3,2021,22,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.6180148,7.853076,35.8,38.24,26.34,51.67,6.666666666666667,1,1,0,0,0,2,4,1,1295.5,1237120.1,1085297,171689.41,0,519.39313,0,4794.3276 +9088,11045,19753,19754,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,5.8185749,5.949904,38,0,14.825098,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,5.4760885,3.5361369,64.863808,7,1,1,0,0,6.5285759,51.5,26.51,43.21,22.28,6.666666666666667,1,1,0,0,0,10,2,1,601,603688.88,149136.33,286341.31,0,0,2133.7273,2206.0112 +9088,11045,19754,19753,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,38,0,-16.249193,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,2.0701134,0,2,1,1,0,0,0,43.21,22.28,51.5,26.51,8.333333333333334,1,1,0,0,0,10,2,1,601,603688.88,149136.33,286341.31,0,0,2133.7273,2206.0112 +9089,11046,19755,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1061.5985,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,36.86,-9,-9,5,1,1,0,0,0,4,1,0,1488,60969.914,0,0,0,0,0,761.65826 +9090,11047,19756,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,8.0185719,7.8639789,0,0,-943.84106,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9599123,56.58,45.49,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,845,720638.19,363424.66,286335.41,0,0,0,2584.0693 +9091,11048,19757,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,5,0,7.9706912,7.4563208,0,0,-1023.7008,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.450182,8.1124773,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1733,868275.19,250423.09,356094.88,0,0,0,2350.1575 +9092,11049,19758,19759,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.870183,8.7868299,0,35,-1,-199.33591,0,2,2,2021,7,0,38,38,1,0,0,22.520395,22.520395,.05,.05,0,0,0,0,0,27,0,0,0,0,0,58.76,52.91,54.96,53.17,8.333333333333334,1,1,0,0,14,11,5,1,518.5,930935.13,783513.25,265933.78,0,0,0,4244.0801 +9092,11049,19759,19758,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4651546,8.3897381,0,35,1,4.4476118,0,2,3,2021,8,0,38,38,1,0,0,14.361695,14.361695,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,58.76,52.91,8.333333333333334,1,1,0,0,14,11,5,1,518.5,930935.13,783513.25,265933.78,0,0,0,4244.0801 +9093,11050,19760,19761,-9,-9,1,1,58,0,3,0,3,3,-9,1,2,0,5.3478632,5.0905976,12,19,11.643825,0,-9,-9,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8275518,20.28,42.63,57.16,56.15,5,2,3,1,0,6,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19761,19760,-9,-9,1,0,39,0,3,0,3,3,-9,0,4,0,0,0,8,-19,-27.691687,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,20.28,42.63,10,2,3,0,0,1,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19762,-9,19761,19760,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1055.4696,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19763,-9,19761,19760,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-992.59564,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9093,11050,19764,-9,19761,19760,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.5163,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,2,1,838.20001,13351.086,0,0,0,2546.9817,0,2371.4956 +9094,11051,19765,19766,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,1,-12,0,-9,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.265655,0,46,50,50,49,7,1,1,0,1,0,4,1,0,721,145700.83,0,119515.75,0,0,0,2198.0054 +9094,11051,19766,19765,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,1,12,0,-9,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,49,46,50,6,1,1,0,0,0,4,1,0,721,145700.83,0,119515.75,0,0,0,2198.0054 +9095,11052,19767,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.8416657,7.7752995,0,0,-1042.8634,0,3,1,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5578351,41.24,45.79,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1520,565544.94,269643,179423.48,0,0,0,1507.7904 +9096,11053,19768,-9,19769,19772,1,0,10,1,3,1,3,0,-9,0,3,0,0,0,0,0,-939.12469,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19769,19772,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,7.908669,7.9671192,5.8961444,1,-1,21.257801,-9,1,1,2021,18,6,37,0,1,6,0,8.5228519,8.5228519,.05,.05,0,0,0,0,0,0,1,1,0,6.5469084,0,44.55,60.42,55.34,54.26,8.333333333333334,1,1,0,0,9,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19770,-9,19769,19772,1,0,16,1,3,1,3,0,-9,0,4,0,0,0,0,0,-908.37787,-9,2,2,2021,22,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.61,60.88,-9,-9,6.666666666666667,1,1,0,1,0,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19771,-9,19769,19772,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-907.62695,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9096,11053,19772,19769,-9,-9,1,1,39,1,3,0,2,2,-9,0,4,8.4659452,8.6665907,0,1,1,57.345428,-9,-9,-9,2021,6,1,37,0,1,1,0,21.461285,21.461285,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,44.55,60.42,6.666666666666667,1,1,0,0,6,2,4,1,1236,398539.84,173822.38,358214.16,104781.59,7831.8442,4410.0654,4089.7461 +9097,11054,19773,-9,19774,19775,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1073.9961,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,1,0,799,42954.816,0,0,0,2590.6045,0,3343.3826 +9097,11054,19774,19775,-9,-9,1,0,49,0,1,0,2,2,-9,1,4,0,0,0,28,-6,0,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50,54,53,54,8,2,3,0,1,0,8,1,0,799,42954.816,0,0,0,2590.6045,0,3343.3826 +9097,11054,19775,19774,-9,-9,1,1,55,0,1,0,3,3,-9,1,4,0,0,0,28,6,0,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,50,54,8,2,3,0,0,0,8,1,0,799,42954.816,0,0,0,2590.6045,0,3343.3826 +9097,11055,19776,-9,19774,19775,1,1,23,0,1,0,2,2,-9,0,4,8.0145264,7.8035202,0,0,0,-1024.4641,0,3,3,2021,10,0,15,15,1,1,1,21.225082,21.225082,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,1,8,3,0,375,63829.316,0,0,0,0,0,380.2001 +9097,11056,19777,-9,19774,19775,1,0,22,0,1,0,2,2,-9,0,3,7.9149961,8.0487547,0,0,0,-1069.2941,0,3,3,2021,11,0,39,10,1,0,1,10.33199,10.33199,0,0,0,0,0,0,0,0,1,1,0,0,0,54.07,49.4,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,479,209441.78,0,0,0,1334.6718,0,1482.9452 +9098,11057,19778,19779,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.8373489,8.7582798,0,1,0,0,-9,2,2,2021,6,0,45,0,1,0,0,13.326364,13.326364,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.77,57.64,8.333333333333334,1,1,0,0,3,7,5,1,962,1939794.8,1645665.8,321738.31,96394.047,1368.5377,0,4957.7461 +9098,11057,19779,19778,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9310293,8.9042902,0,22,0,0,-9,2,2,2021,12,0,50,0,1,0,0,20.612688,20.612688,0,0,0,0,0,0,0,0,0,0,0,3.0607669,0,48.77,57.64,57.16,56.15,1.666666666666667,1,1,0,0,9,7,5,1,962,1939794.8,1645665.8,321738.31,96394.047,1368.5377,0,4957.7461 +9098,11058,19780,-9,19779,19778,1,0,20,0,0,0,2,2,-9,0,4,8.1300631,7.6382852,0,0,0,-859.78094,-9,1,2,2021,12,0,60,0,1,0,1,5.4075756,5.4075756,.05,.05,0,0,0,0,0,0,0,0,0,1.9082303,0,41.49,60.87,-9,-9,6.666666666666667,1,1,0,0,2,7,4,1,242,29483.986,14712.742,0,0,0,0,1557.8639 +9099,11059,19781,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.5952959,4.9886179,0,0,-1045.3429,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.417944,4.6712651,51,46,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,604,568773.81,0,353241.47,0,0,0,450.89984 +9099,11060,19782,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.702795,6.6033773,0,0,-912.06848,-9,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3536277,53,46,-9,-9,7,1,1,0,0,0,5,2,0,563,349828.28,36359.395,0,0,0,0,2072.512 +9100,11061,19783,19784,-9,-9,1,1,34,0,0,0,1,1,-9,0,5,8.8662472,8.6517925,0,4,4,-15.194613,0,2,2,2021,10,1,37,40,1,1,0,17.482962,17.482962,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,42.73,58.53,8.333333333333334,1,1,0,0,6,9,5,1,1291,237103.72,66215.094,0,0,0,0,3864.7146 +9100,11061,19784,19783,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.7859745,8.6818962,0,4,-4,121.75307,0,-9,-9,2021,11,1,40,37,1,1,0,18.132519,18.132519,0,0,0,0,0,0,0,0,0,0,0,4.3054442,0,42.73,58.53,49.25,61.25,6.666666666666667,1,1,0,0,4,9,5,1,1291,237103.72,66215.094,0,0,0,0,3864.7146 +9101,11062,19785,19786,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.4250517,8.6020861,0,34,2,76.135788,0,3,3,2021,12,0,50,50,1,0,0,11.630177,11.630177,0,0,0,0,0,0,0,2,1,1,0,0,0,37.36,58.26,50.89,20.14,3.333333333333333,1,1,0,1,15,8,5,1,653.5,3441584.5,1110944,737799.13,0,0,0,3738.2441 +9101,11062,19786,19785,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,7.5487919,7.6701412,0,34,-2,63.188698,0,2,2,2021,12,1,20,20,1,1,0,10.557264,10.557264,0,0,0,0,0,0,0,2,1,1,0,6.4445481,0,50.89,20.14,37.36,58.26,8.333333333333334,2,3,0,0,14,8,5,1,653.5,3441584.5,1110944,737799.13,0,0,0,3738.2441 +9102,11063,19787,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.4149714,8.1532011,0,0,0,-1066.0587,0,-9,-9,2021,12,4,40,40,1,4,0,12.794471,12.794471,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.65,27.56,-9,-9,5,1,1,0,0,10,2,5,1,158,58752.313,64498.059,0,0,1403.4635,0,2768.7966 +9103,11064,19788,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.0576248,9.3954,0,0,0,-1014.0082,0,2,2,2021,7,0,40,37,1,0,0,31.889893,31.889893,.05,.05,0,0,0,0,1.435493,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,10,6,5,1,764,973379,769454.56,198675.77,54170.223,14229.242,0,4211.8838 +9104,11065,19789,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1030.3212,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.92,22.81,-9,-9,3.333333333333333,1,1,0,1,0,13,1,1,4089,102218.74,0,0,0,0,0,704.62756 +9105,11066,19790,19791,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,0,0,51,7,0,0,-9,3,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,24.717354,0,0,1,1,0,0,0,42,23,57.34,50.6,8.333333333333334,1,1,0,0,0,5,1,1,3784.5,341111.75,-16590.584,277959.75,0,0,0,715.97681 +9105,11066,19791,19790,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,51,-7,0,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,57.34,50.6,42,23,10,1,1,0,0,0,5,1,1,3784.5,341111.75,-16590.584,277959.75,0,0,0,715.97681 +9106,11067,19792,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,8.0108089,7.9354944,0,0,0,-1065.468,0,-9,-9,2021,32,12,52,46,1,12,0,5.3568888,5.3568888,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.98,53.63,-9,-9,3.333333333333333,1,1,0,1,8,6,4,0,1298,92387.867,98913.742,0,0,4064.2725,0,1118.9825 +9106,11068,19793,-9,19792,-9,1,1,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-863.26062,-9,3,-9,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28,52.45,-9,-9,5,1,1,0,0,0,6,1,0,97,-67257.992,0,0,0,0,0,0 +9107,11069,19794,19795,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.1978683,7.0689502,46,3,-66.059563,0,1,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7739661,6.8871861,35.52,53.53,32.54,55.45,6.666666666666667,1,1,0,0,0,10,3,1,513,1771474.1,904872.56,561320.25,0,0,0,3528.8699 +9107,11069,19795,19794,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.7946663,7.8369551,46,-3,36.934013,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.384583,7.840198,32.54,55.45,35.52,53.53,6.666666666666667,1,1,0,0,4,10,3,1,513,1771474.1,904872.56,561320.25,0,0,0,3528.8699 +9108,11070,19796,19797,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,53,0,0,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,39.3,35.89,39.26,18.84,3.333333333333333,1,1,0,0,0,7,1,0,3017,-143626.73,0,0,0,0,0,1773.7882 +9108,11070,19797,19796,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,0,0,53,0,0,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,126.4419,0,0,1,1,0,1.764693,0,39.26,18.84,39.3,35.89,3.333333333333333,1,1,0,0,0,7,1,0,3017,-143626.73,0,0,0,0,0,1773.7882 +9109,11071,19798,-9,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,0,0,-909.14429,0,3,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.44,23.66,-9,-9,0,1,1,0,0,0,12,1,0,856,-338666.38,0,0,0,0,0,1459.9742 +9110,11072,19799,19800,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,4.8861709,4.9172125,58,1,12.691506,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.0458913,4.8683252,48.45,57.49,57.92,51.82,10,1,1,0,0,0,9,2,1,1163,193912.61,-689.10742,209875.88,0,0,0,390.40845 +9110,11072,19800,19799,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,58,-1,78.109268,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.92,51.82,48.45,57.49,5,1,1,0,0,0,9,2,1,1163,193912.61,-689.10742,209875.88,0,0,0,390.40845 +9111,11073,19801,19802,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.1911397,6.7917094,55,7,-30.305414,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9278421,63.1,42.39,66.37,22.3,10,1,1,0,0,0,10,2,1,715,688814.88,94909.125,335491.56,0,0,0,2076.4707 +9111,11073,19802,19801,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,5.8301716,6.3483615,55,-7,-95.81926,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0224519,66.37,22.3,63.1,42.39,8.333333333333334,1,1,0,0,0,10,2,1,715,688814.88,94909.125,335491.56,0,0,0,2076.4707 +9112,11074,19803,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,9.758749,10.059817,8.394908,0,0,-1146.8507,0,3,2,2021,10,0,7,50,1,0,0,341.08978,341.08978,.05,.05,0,0,0,0,0,0,1,1,0,8.9029522,8.6522846,61.43,43.34,-9,-9,5,1,1,0,0,10,10,5,1,308,1638335.4,1400061.3,203877,120804.65,0,0,9311.4131 +9113,11075,19804,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-958.95093,1,-9,-9,2021,18,7,0,40,2,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,6.666666666666667,1,1,0,1,2,4,1,0,221,-177144.25,0,0,0,0,0,0 +9114,11076,19805,19806,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.9360189,8.3298054,6.7741227,31,6,-27.595181,0,3,2,2021,10,0,37,37,1,0,0,9.1704712,9.1704712,0,0,0,0,0,0,0,0,0,0,0,7.4450216,7.3366952,56.33,51.02,54.79,55.86,0,1,1,0,0,11,11,5,1,507,2466588,1937224.3,186776.84,0,0,0,4502.2295 +9114,11076,19806,19805,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,8.5497808,8.7984514,32,-6,93.512154,0,2,2,2021,8,0,0,40,4,0,0,0,0,0,0,0,0,0,0,1.3272917,0,0,0,0,8.4591293,8.5250988,54.79,55.86,56.33,51.02,8.333333333333334,1,1,0,0,10,11,5,1,507,2466588,1937224.3,186776.84,0,0,0,4502.2295 +9114,11077,19807,-9,19806,19805,1,1,21,0,0,0,2,2,-9,0,3,7.9131036,8.182395,0,0,0,-957.12274,0,1,1,2021,12,0,48,41,1,2,1,6.7807698,6.7807698,0,0,0,0,0,0,0,0,0,0,0,0,0,24.29,57.94,-9,-9,8.333333333333334,1,1,0,0,3,11,4,1,1115,80172.641,0,0,0,0,0,447.20169 +9115,11078,19808,19809,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3806438,8.3121796,0,2,-4,32.645447,-9,-9,-9,2021,7,0,35,0,1,0,0,15.323404,15.323404,0,0,0,0,0,0,0,0,0,0,0,0,0,64.64,45.9,60.29,52.11,10,1,1,0,0,12,2,5,1,1709.5,259561.7,-22529.449,84247.875,51219.07,1919.2653,0,2912.7979 +9115,11078,19809,19808,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5971279,7.9888248,0,2,4,-57.957981,0,3,2,2021,7,0,38,37,1,0,0,12.584141,12.584141,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,64.64,45.9,8.333333333333334,1,1,0,0,10,2,5,1,1709.5,259561.7,-22529.449,84247.875,51219.07,1919.2653,0,2912.7979 +9116,11079,19810,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,0,0,-913.41077,0,3,3,2021,12,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,0,0,49.14,51.53,-9,-9,6.666666666666667,1,1,0,0,14,13,1,1,182,411714.22,131490.84,249930.5,0,0,0,-38.145809 +9117,11080,19811,19812,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,6.7847533,6.8539863,5.1315804,6,-6,106.32525,0,-9,-9,2021,13,6,14,14,1,6,0,6.638474,6.638474,0,0,0,0,0,0,0,0,1,1,0,5.2844968,5.2663946,48.27,33.43,54,46,8.333333333333334,1,1,0,0,9,4,3,1,313,569412.38,438526.78,123499.5,0,0,0,6536.915 +9117,11080,19812,19811,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,8.0142279,8.1234589,6,6,-62.207344,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3747196,8.441412,54,46,48.27,33.43,8,4,1,0,0,0,4,3,1,313,569412.38,438526.78,123499.5,0,0,0,6536.915 +9118,11081,19813,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,7.7632122,7.8286347,0,0,0,-986.92352,0,-9,-9,2021,7,0,38,38,1,0,0,7.3785558,7.3785558,0,0,0,0,0,0,0,0,0,0,0,2.6033547,0,62.39,56.71,-9,-9,0,1,1,0,0,10,12,4,0,96,-37076.559,90585.07,0,0,0,0,1055.9178 +9119,11082,19814,19815,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,6.5780973,6.5906725,0,8,0,-97.299355,0,3,1,2021,9,0,40,30,1,0,0,2.5211427,2.5211427,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.03,52.62,8.333333333333334,1,1,0,0,13,13,3,1,610,241828.67,51690.508,0,0,5755.5566,2678.8853,889.38696 +9119,11082,19815,19814,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,0,7.4552164,7.4938588,8,0,22.604055,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,7.684238,50.03,52.62,57.16,56.15,5,1,1,0,0,13,13,3,1,610,241828.67,51690.508,0,0,5755.5566,2678.8853,889.38696 +9119,11083,19816,-9,19814,19815,1,1,20,0,0,0,2,2,1,0,2,7.0995889,7.2577014,0,0,0,-966.63,-9,1,1,2021,17,5,38,0,1,5,1,3.4959929,3.4959929,0,0,0,0,0,0,0,0,1,1,0,5.7300782,0,39.25,43.32,-9,-9,5,1,1,0,0,2,13,2,1,1814,6154.1284,0,0,0,0,0,237.49266 +9120,11084,19817,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,7.7240224,7.7020555,35,0,101.60302,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.1185217,7.6504903,58.44,35.51,52,48,10,1,1,0,0,9,7,4,1,817,721866.44,226980.56,262855.78,0,0,0,1674.8121 +9120,11085,19818,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.1601772,7.8992229,0,37,0,9.5199108,0,-9,-9,2021,10,0,40,41,1,1,0,10.984753,10.984753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,48,58.44,35.51,7,1,1,0,0,1,7,4,1,2229,358736.44,89963.641,0,0,0,0,2501.9319 +9121,11086,19819,19820,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,0,0,0,1,-6,77.232475,-9,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6380057,0,38.36,61,45.04,47.98,10,2,3,0,0,2,2,2,0,435.5,1043982.3,46338.676,415580.38,36044.891,0,0,1162.8179 +9121,11086,19820,19819,-9,-9,1,1,51,0,0,0,3,3,-9,0,5,7.202538,7.2127275,0,13,6,-34.235462,-9,3,3,2021,18,5,70,0,1,5,0,2.2668705,2.2668705,.05,.05,0,0,0,0,0,0,0,0,0,2.9271429,0,45.04,47.98,38.36,61,10,2,3,0,0,7,2,2,0,435.5,1043982.3,46338.676,415580.38,36044.891,0,0,1162.8179 +9122,11087,19821,19822,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,7.7627697,7.5221925,0,39,-3,54.895592,0,-9,2,2021,11,0,24,24,1,0,0,9.5002985,9.5002985,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,45.58,47.97,54.87,15.54,8.333333333333334,1,1,0,0,10,6,3,1,1342,1726077,1305470.5,313526.63,0,4867.6895,0,1904.1724 +9122,11087,19822,19821,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.0779581,6.8684254,39,3,-30.555475,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,2.2645197,9.5679693,18.964199,0,1,1,0,0,7.420804,54.87,15.54,45.58,47.97,6.666666666666667,1,1,0,0,0,6,3,1,1342,1726077,1305470.5,313526.63,0,4867.6895,0,1904.1724 +9123,11088,19823,-9,19825,19826,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.4009,-9,3,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19824,-9,19825,19826,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-997.01031,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19825,19826,-9,-9,1,0,38,1,3,0,3,3,-9,0,3,0,0,0,12,2,-91.886696,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,48.28,60.18,6.666666666666667,1,1,0,0,2,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19826,19825,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,9.6012516,9.6026497,0,14,-2,-5.7770605,0,2,3,2021,9,0,40,40,1,0,0,33.731873,33.731873,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,46.61,56.93,6.666666666666667,1,1,0,0,7,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9123,11088,19827,-9,19825,19826,1,0,12,1,3,1,3,0,-9,0,3,0,0,0,0,0,-919.25336,-9,3,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,2,5,1,936,175394,-2859.3889,252363.14,48287.555,4549.2222,0,4712.0923 +9124,11089,19828,-9,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.43335,0,-9,-9,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36,27,-9,-9,8.333333333333334,1,1,0,0,2,6,1,0,495,59323.188,-56908.523,58084.023,0,0,0,1245.3973 +9125,11090,19829,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,7.6370149,7.7548108,0,0,0,-1118.8013,0,2,2,2021,22,10,22,37,1,10,0,11.028958,11.028958,.05,.05,0,0,0,0,0,0,0,0,0,0,0,19.92,67.76000000000001,-9,-9,3.333333333333333,1,1,0,1,8,11,3,0,186,-135788.11,-158498.75,134208.94,0,0,0,1182.2725 +9126,11091,19830,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.9049864,8.8050632,0,0,0,-1042.6161,0,3,3,2021,15,4,44,41,1,4,0,17.6385,17.6385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,-9,-9,6.666666666666667,3,4,0,0,11,8,5,0,4312,-163513.58,114339.5,0,0,0,0,1645.9115 +9127,11092,19831,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-997.95483,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.83,55.42,-9,-9,6.666666666666667,1,1,0,0,3,9,1,0,178,-177127.56,0,0,0,0,0,0 +9128,11093,19832,-9,-9,-9,1,0,37,0,1,0,3,3,-9,0,5,7.0993123,7.3349748,0,0,0,-1041.285,0,2,2,2021,6,0,40,39,1,0,0,4.3491149,4.3491149,.05,.05,0,0,0,0,0,0,1,0,1,0,0,62.39,56.71,-9,-9,5,1,1,0,0,7,5,3,0,650.5,76004.039,80151.344,116619.26,72534.672,0,0,1730.9119 +9128,11093,19833,-9,19832,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-983.30139,-9,3,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,3,0,650.5,76004.039,80151.344,116619.26,72534.672,0,0,1730.9119 +9128,11094,19834,-9,19832,-9,1,0,20,0,1,0,2,2,-9,0,4,6.3218369,6.8730397,0,0,0,-960.32721,-9,3,-9,2021,6,1,40,0,1,1,1,1.8951839,1.8951839,0,0,0,0,0,0,0,0,1,0,1,0,0,66.68000000000001,39.44,-9,-9,6.666666666666667,1,1,0,0,4,5,2,0,209,90734.813,0,0,0,-349.22772,259.09149,412.19495 +9129,11095,19835,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,3.6123164,3.9167523,0,0,-1077.5043,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9631662,3.629096,60.02,56.42,-9,-9,10,1,1,0,0,0,13,2,1,386,174324.16,102567.94,22797.127,0,0,-457.81348,392.80426 +9130,11096,19836,19837,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.7356763,7.7530684,52,2,-52.108444,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.361886,7.615581,51.65,39.74,54.21,49.46,8.333333333333334,1,1,0,0,0,9,3,1,1067,1068180.5,399394.25,332839.53,0,0,0,3238.2434 +9130,11096,19837,19836,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.9121656,7.3180394,52,-2,64.021507,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.202466,7.5165577,54.21,49.46,51.65,39.74,8.333333333333334,1,1,0,0,0,9,3,1,1067,1068180.5,399394.25,332839.53,0,0,0,3238.2434 +9131,11097,19838,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.0866785,8.2391815,0,0,0,-927.66956,0,2,2,2021,6,0,28,28,1,0,0,10.236909,10.236909,.05,.05,0,0,0,0,0,0,1,1,0,3.1405883,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,12,4,1,2109,39325.156,115748.51,121689.45,58613.109,0,0,1819.3748 +9132,11098,19839,19840,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.3968854,7.8401875,47,-2,105.82093,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8784208,46.16,54.36,52,54.51,8.333333333333334,1,1,0,0,0,6,4,1,423.5,2034558.9,666046.5,596310.63,0,0,0,3419.5554 +9132,11098,19840,19839,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8796754,7.6688471,47,2,186.12538,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.0647638,7.7462721,52,54.51,46.16,54.36,5,1,1,0,0,0,6,4,1,423.5,2034558.9,666046.5,596310.63,0,0,0,3419.5554 +9133,11099,19841,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.9576554,7.811842,0,0,0,-1123.3607,0,2,-9,2021,6,0,40,38,1,0,0,8.7355433,8.7355433,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,5,3,0,1009,134310.22,2497.8667,61254.445,33740.129,0,0,1954.7217 +9134,11100,19842,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.6327887,7.8797631,6.2733855,0,0,-1092.85,0,1,3,2021,8,0,28,25,1,0,0,9.7247381,9.7247381,.05,.05,0,0,0,0,0,0,0,0,0,0,5.9087706,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,604,29151.818,-77013.664,0,0,0,0,1902.1332 +9135,11101,19843,-9,19844,19845,1,0,46,0,0,0,2,2,-9,0,3,7.4339538,7.8709188,0,0,0,-1166.9973,0,2,2,2021,18,7,43,45,1,7,0,4.2625427,4.2625427,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.59,41.04,-9,-9,3.333333333333333,1,1,0,0,8,9,3,1,673,53318.719,-52027.996,0,0,0,0,1275.8627 +9135,11102,19844,19845,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,4.6912355,4.673717,7,0,-74.596176,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1369457,4.5602694,61.43,43.34,62.18,36.18,8.333333333333334,1,1,0,0,0,9,2,1,2425,396292.53,108895.8,272221.31,0,0,0,1833.6416 +9135,11102,19845,19844,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,4.9782481,5.1376081,7,0,-94.533409,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,.10617376,0,1,1,0,4.5970917,5.0922279,62.18,36.18,61.43,43.34,8.333333333333334,1,1,0,0,0,9,2,1,2425,396292.53,108895.8,272221.31,0,0,0,1833.6416 +9136,11103,19846,19847,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.4235058,8.4385195,0,7,5,24.083923,0,-9,-9,2021,9,0,38,39,1,1,0,13.49159,13.49159,0,0,.05,0,0,0,0,0,0,0,0,4.5488334,0,53,54,46.67,55.57,8,1,1,0,0,1,10,5,1,1373.5,693305.75,221462,370165.5,68785.672,2301.8372,0,3800.3101 +9136,11103,19847,19846,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9017696,8.1598043,0,13,-5,-29.035625,0,3,2,2021,4,0,44,47,1,0,0,7.8953042,7.8953042,0,0,0,0,0,0,0,27,0,0,0,3.7821507,0,46.67,55.57,53,54,10,1,1,0,0,8,10,5,1,1373.5,693305.75,221462,370165.5,68785.672,2301.8372,0,3800.3101 +9137,11104,19848,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.8010206,9.140974,0,0,0,-976.4884,0,2,1,2021,11,0,43,43,1,0,0,25.475693,25.475693,.05,.05,0,0,0,0,0,0,0,0,0,4.7556014,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,9,5,1,630,1040859,853520.69,234302.34,0,18556.303,0,2198.5122 +9138,11105,19849,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,4,7.8185506,7.8065419,0,0,0,-978.58368,-9,-9,-9,2021,15,3,39,0,1,3,0,7.96663,7.96663,0,0,0,0,0,0,0,0,0,0,0,0,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,0,7,7,3,0,292,-246494.83,0,0,0,0,0,1504.3704 +9139,11106,19850,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,8.1541233,8.0199413,7,0,56.614223,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8506337,8.0606375,54.77,31.94,50.75,39.21,8.333333333333334,1,1,0,0,0,4,4,1,298,587549.13,333369.25,286733.84,0,0,0,1642.7828 +9139,11107,19851,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.5264139,7.9468675,7,0,13.083984,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6164374,7.1642313,50.75,39.21,54.77,31.94,10,1,1,0,0,7,4,4,1,1179,746284.56,623362.06,178539.91,0,6059.7661,3284.8049,1450.1965 +9140,11108,19852,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,3,8.5904608,8.6939964,0,0,0,-980.7655,0,1,1,2021,15,3,40,42,1,3,0,17.602648,17.602648,.05,.05,0,0,0,0,0,0,1,1,0,5.4711971,0,42.61,49.31,-9,-9,3.333333333333333,1,1,0,0,11,4,5,1,416,264453.09,307445.72,111254.66,0,0,6943.8643,2044.0039 +9141,11109,19853,-9,19854,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.8365,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,428.5,49186.656,46118.602,71925.016,15818.799,0,0,2707.8662 +9141,11109,19854,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.9868641,8.9958153,6.0748744,0,0,-1065.7966,0,2,3,2021,8,1,38,38,1,1,0,24.705368,24.705368,0,0,0,0,0,0,0,0,1,1,0,6.3595691,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,5,1,428.5,49186.656,46118.602,71925.016,15818.799,0,0,2707.8662 +9142,11110,19855,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.4986515,8.0090971,0,0,0,-1070.6655,0,2,2,2021,14,2,60,50,1,2,0,8.190484,8.190484,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,6.666666666666667,1,1,0,0,9,9,4,0,858,157413.91,0,0,0,0,0,1283.5406 +9143,11111,19856,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,5.6280208,5.5524693,0,0,-1018.2313,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7641563,5.9135027,50.06,44.82,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,1627,360192.84,138254.2,0,0,0,0,1314.8889 +9144,11112,19857,19859,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.5138483,8.3748264,0,8,1,23.007284,0,2,1,2021,6,1,39,21,1,1,0,12.244755,12.244755,0,0,0,0,0,0,0,0,1,1,0,0,0,54.49,50.46,42.22,56.11,8.333333333333334,1,1,0,0,10,10,5,1,473.33334,254573.13,179296.19,276326.66,116259.56,0,0,3918.9924 +9144,11112,19858,-9,19857,19859,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-945.46686,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,473.33334,254573.13,179296.19,276326.66,116259.56,0,0,3918.9924 +9144,11112,19859,19857,-9,-9,1,1,32,1,1,0,2,2,-9,0,3,8.7548265,8.632575,0,8,-1,-29.889336,0,3,2,2021,13,1,35,55,1,1,0,22.058168,22.058168,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,56.11,54.49,50.46,8.333333333333334,1,1,0,0,10,10,5,1,473.33334,254573.13,179296.19,276326.66,116259.56,0,0,3918.9924 +9145,11113,19860,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.1745358,7.9864278,0,0,0,-915.19025,-9,-9,-9,2021,23,11,41,0,1,11,0,8.4291706,8.4291706,0,0,0,0,0,0,0,0,1,1,0,0,0,1.94,70.82000000000001,-9,-9,5,1,1,0,0,3,12,4,0,421,161257.5,74516.773,0,0,0,0,746.25592 +9146,11114,19861,-9,19863,19864,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.5899,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9146,11114,19862,-9,19863,19864,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.98096,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9146,11114,19863,19864,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.6629758,7.4910097,0,22,-1,133.98479,0,2,2,2021,11,0,16,17,1,0,0,12.97261,12.97261,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.97,51.29,53.75,59.47,6.666666666666667,1,1,0,0,8,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9146,11114,19864,19863,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,9.1756411,8.927846,0,22,1,-7.272181,0,-9,-9,2021,7,0,60,60,1,0,0,16.520296,16.520296,.05,.05,0,0,0,0,0,2,1,1,0,3.184449,0,53.75,59.47,52.97,51.29,8.333333333333334,1,1,0,0,9,6,5,1,631.75,375799.41,378179.72,71254.609,49447.313,0,0,4028.7373 +9147,11115,19865,19866,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,4.0258875,4.3073015,10,6,111.83528,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.294631,4.2032495,53.17,43.67,57.33,53.46,6.666666666666667,1,1,0,0,0,2,2,1,890,131750.73,1330.75,120067.9,0,0,0,1586.476 +9147,11115,19866,19865,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,10,-6,44.861774,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1203771,0,57.33,53.46,53.17,43.67,6.666666666666667,1,1,0,0,0,2,2,1,890,131750.73,1330.75,120067.9,0,0,0,1586.476 +9148,11116,19867,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,5,0,7.6004262,7.7521319,0,0,-990.25836,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7721014,7.6199536,58.2,48.99,-9,-9,10,1,1,0,0,0,1,3,1,981,725581.56,165807.25,267513.34,0,0,0,2340.9192 +9149,11117,19868,19869,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,9.1385632,9.1657495,0,13,-4,-37.30294,-9,3,1,2021,11,1,55,0,1,1,0,21.648071,21.648071,.05,.05,0,0,0,0,0,0,0,0,0,1.2076261,0,51.49,57.57,34.51,38.58,6.666666666666667,1,1,0,0,13,9,5,1,298,551622.44,292178.44,433130.81,140000.7,0,4897.5249,5070.6782 +9149,11117,19869,19868,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,0,0,0,13,4,93.954071,-9,3,1,2021,21,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.084548,0,34.51,38.58,51.49,57.57,5,1,1,1,0,8,9,5,1,298,551622.44,292178.44,433130.81,140000.7,0,4897.5249,5070.6782 +9150,11118,19870,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-988.27014,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.76,40.54,-9,-9,5,1,1,0,0,8,12,2,1,215,147818.8,0,0,0,0,0,746.93524 +9151,11119,19871,19872,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5991974,8.4761019,0,19,5,-8.8539047,0,2,3,2021,14,4,38,38,1,4,0,14.396121,14.396121,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,41.34,37.2,46.98,59.35,8.333333333333334,1,1,0,0,14,10,5,1,541.5,1563427.8,1081595.4,441805.56,0,-463.42545,0,4383.2324 +9151,11119,19872,19871,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.8449612,9.0018053,0,19,-5,-.35173044,0,2,3,2021,11,0,3,41,1,0,0,262.77124,262.77124,0,0,0,0,0,0,0,0,0,0,0,3.076719,0,46.98,59.35,41.34,37.2,6.666666666666667,1,1,0,0,12,10,5,1,541.5,1563427.8,1081595.4,441805.56,0,-463.42545,0,4383.2324 +9152,11120,19873,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,1,8.1175117,8.2912369,0,0,0,-1090.5787,0,2,1,2021,11,0,35,35,1,0,0,10.434258,10.434258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.49,54.04,-9,-9,8.333333333333334,1,1,0,0,7,7,4,0,179,152295.05,-32640.266,633543.75,428427.09,0,561.66608,1274.9506 +9153,11121,19874,19875,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.8031464,7.2346702,0,10,-6,70.439415,0,-9,-9,2021,12,0,31,-9,1,0,0,7.7012401,7.7012401,.05,.05,0,0,0,0,0,0,0,0,0,1.9427183,0,28.3,22.31,54.58,46.41,1.666666666666667,4,5,0,1,2,7,5,0,1667.5,211421.63,202588.17,0,0,0,0,4668.7295 +9153,11121,19875,19874,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.5607033,8.6752214,7.2245932,10,6,95.070137,0,2,1,2021,12,0,43,-9,1,0,0,12.50426,12.50426,.05,.05,0,0,0,0,0,0,0,0,0,8.4422865,7.2833209,54.58,46.41,28.3,22.31,5,1,1,0,0,14,7,5,0,1667.5,211421.63,202588.17,0,0,0,0,4668.7295 +9154,11122,19876,-9,-9,-9,1,1,40,0,1,0,1,1,-9,1,2,8.1964378,8.1090384,0,0,0,-896.34717,0,2,2,2021,16,6,48,48,1,6,0,10.758152,10.758152,.05,.05,.05,0,0,0,0,0,1,1,0,1.3025832,0,23.64,47.83,-9,-9,3.333333333333333,1,1,0,1,13,4,4,1,1153,222870.91,97684.938,97924.234,43886.695,0,0,2476.0146 +9154,11122,19877,-9,19878,19876,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.69897,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1153,222870.91,97684.938,97924.234,43886.695,0,0,2476.0146 +9154,11123,19878,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,5,8.4403658,8.1273365,0,0,0,-943.88983,0,-9,-9,2021,23,11,53,38,1,11,0,9.9926672,9.9926672,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.39,64.96000000000001,-9,-9,3.333333333333333,1,1,0,0,12,4,4,1,457,72866.203,-11925.713,0,0,0,1537.7922,2806.7954 +9155,11124,19879,-9,19881,19880,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-911.53552,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,4,1,801.33331,111339.98,91938.805,125189.16,83876.695,0,0,3402.8179 +9155,11124,19880,19881,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,8.3989697,8.2726593,0,4,3,52.740627,0,-9,-9,2021,13,1,43,43,1,1,0,9.6893549,9.6893549,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,58.32,50.22,5,1,1,0,0,3,12,4,1,801.33331,111339.98,91938.805,125189.16,83876.695,0,0,3402.8179 +9155,11124,19881,19880,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,8.3105774,8.1169348,0,4,-3,6.2218342,0,2,1,2021,10,0,50,50,1,0,0,8.3814678,8.3814678,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,45.91,59.89,6.666666666666667,1,1,0,0,11,12,4,1,801.33331,111339.98,91938.805,125189.16,83876.695,0,0,3402.8179 +9156,11125,19882,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,3.9864438,3.9824996,0,0,-1051.8912,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3671885,4.2100744,59.31,33.75,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,381,-51365.773,-52709.316,112939.51,54723.648,0,0,1200.8834 +9157,11126,19883,19884,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.1027155,8.2244034,35,-2,76.47007,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7314682,7.84267,60.3,46.58,57.33,53.46,10,1,1,0,0,0,7,3,1,447.5,2633812.5,854155.5,1428585.8,0,0,0,3471.4482 +9157,11126,19884,19883,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,12,2,-72.53154,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5571709,0,57.33,53.46,60.3,46.58,10,1,1,0,0,0,7,3,1,447.5,2633812.5,854155.5,1428585.8,0,0,0,3471.4482 +9158,11127,19885,-9,19886,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.43024,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1599,421810.41,324160.78,174974,47010.586,0,476.30255,2877.3271 +9158,11127,19886,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.8989487,9.2423849,6.7240386,0,0,-1146.8558,0,2,3,2021,7,0,33,33,1,0,0,20.453102,20.453102,.05,.05,0,0,0,0,0,0,1,1,0,7.0128946,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,11,5,1,1599,421810.41,324160.78,174974,47010.586,0,476.30255,2877.3271 +9159,11128,19887,19891,-9,-9,1,1,58,0,3,0,3,3,-9,1,1,0,0,0,7,28,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,35.36,52.01,48.98,1.666666666666667,1,1,0,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19888,-9,19891,19887,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1001.0609,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19889,-9,19891,19887,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9631,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19890,-9,19891,19887,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.6725,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9159,11128,19891,19887,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,0,0,0,7,-28,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.01,48.98,32.43,35.36,6.666666666666667,1,1,0,0,0,11,1,0,685.20001,39465.543,80508.211,0,0,0,0,2407.5566 +9160,11129,19892,-9,19893,19894,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1128.2582,-9,3,3,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39,45,-9,-9,5,2,3,-9,0,0,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11129,19893,19894,-9,-9,1,0,45,0,2,0,3,3,-9,0,2,0,0,0,27,0,-44.333195,0,3,2,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,40,52.05,48.08,6,2,3,0,1,0,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11129,19894,19893,-9,-9,1,1,54,0,2,0,3,3,-9,0,3,7.1920366,7.356812,0,27,9,74.467003,0,3,3,2021,9,0,24,24,1,0,0,7.4693394,7.4693394,0,0,0,0,0,0,0,2,1,0,1,0,0,52.05,48.08,42,40,8.333333333333334,2,3,0,0,4,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11129,19895,-9,19893,19894,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-929.84808,-9,3,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,55,-9,-9,6,2,3,-9,0,0,7,2,0,293.5,66509.539,0,223943.41,160983.97,0,1590.1033,1881.9658 +9160,11130,19896,-9,19893,19894,1,0,20,0,2,1,2,0,0,0,5,0,0,0,0,0,-1055.0533,-9,3,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,2.906734,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,0,7,1,0,203,16728.922,0,0,0,0,638.28198,143.12212 +9160,11131,19897,-9,19893,19894,1,1,19,0,2,0,2,2,-9,0,4,7.0210934,7.1961122,0,0,0,-945.68256,0,3,3,2021,12,0,41,0,1,0,1,2.8699021,2.8699021,.05,.05,0,0,0,0,0,2,1,0,1,0,0,57.73,54.53,-9,-9,6.666666666666667,2,3,0,0,9,7,2,0,661,-148405.11,77184.336,0,0,0,0,-456.26947 +9161,11132,19898,19899,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,7.8631353,8.0932741,0,27,-1,44.496918,0,3,2,2021,8,0,37,37,1,0,0,9.1316442,9.1316442,.05,.05,0,0,0,0,0,27,1,1,0,0,0,41.17,59.31,47,50,5,2,3,0,0,11,5,3,1,911.5,46982.398,15912.758,112750.88,31010.023,0,0,2158.8103 +9161,11132,19899,19898,-9,-9,1,0,48,0,0,0,2,2,-9,1,3,0,0,0,28,1,94.7985,0,3,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,41.17,59.31,8.333333333333334,4,2,0,0,0,5,3,1,911.5,46982.398,15912.758,112750.88,31010.023,0,0,2158.8103 +9161,11133,19900,-9,19899,19898,1,1,22,0,0,0,2,2,-9,0,4,8.0440407,7.6505532,0,0,0,-1137.7679,0,2,2,2021,6,0,40,40,1,0,1,9.7133818,9.7133818,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,62.49,55.09,-9,-9,6.666666666666667,4,2,0,0,3,5,4,1,1068,-9765.1855,-54409.262,0,0,0,0,297.22363 +9162,11134,19901,-9,19902,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.2795,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,0,0,0,7,3,1,1495.5,12836.973,-64593.625,0,0,0,1419.4707,2301.6245 +9162,11134,19902,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.9843473,8.4060507,6.8913007,0,0,-1012.4911,0,-9,-9,2021,6,1,37,37,1,1,0,9.4219398,9.4219398,.05,.05,.05,0,0,0,0,0,1,1,0,7.0143795,0,53.61,39.14,-9,-9,5,2,3,0,0,7,7,3,1,1495.5,12836.973,-64593.625,0,0,0,1419.4707,2301.6245 +9163,11135,19903,19904,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,7.361886,7.7257576,0,2,-1,-15.831532,0,1,2,2021,9,0,22,11,1,0,0,9.6495018,9.6495018,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,48.81,59.91,8.333333333333334,1,1,0,0,9,8,4,1,1716.5,62009.031,2646.7429,0,0,0,0,3768.9514 +9163,11135,19904,19903,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.4637661,8.4247236,6.0276084,2,1,117.10562,0,-9,-9,2021,9,1,41,43,1,1,0,14.629913,14.629913,.05,.05,0,0,0,0,0,0,0,0,0,6.4493151,0,48.81,59.91,49.63,54.22,8.333333333333334,1,1,0,0,7,8,4,1,1716.5,62009.031,2646.7429,0,0,0,0,3768.9514 +9164,11136,19905,19906,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.5028381,8.4616623,0,1,-1,44.394356,0,2,3,2021,6,0,35,36,1,0,0,15.428825,15.428825,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.76,54.51,8.333333333333334,1,1,0,0,13,13,5,1,206,909259.69,339942.63,571915,30040.129,0,0,3458.8999 +9164,11136,19906,19905,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3715506,8.304287,0,1,1,-6.9997811,0,-9,-9,2021,7,0,37,38,1,0,0,12.558475,12.558475,.05,.05,0,0,0,0,0,0,0,0,0,.10942423,0,57.76,54.51,54.79,55.86,8.333333333333334,1,1,0,0,5,13,5,1,206,909259.69,339942.63,571915,30040.129,0,0,3458.8999 +9165,11137,19907,-9,19908,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1043.64,-9,2,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,1,8,4,0,456,-60147.867,0,0,0,0,385.65808,1880.426 +9165,11137,19908,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.674983,8.4946136,0,0,0,-1042.2979,0,2,2,2021,11,0,36,37,1,0,0,15.306859,15.306859,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,51.49,-9,-9,6.666666666666667,1,1,0,0,9,8,4,0,456,-60147.867,0,0,0,0,385.65808,1880.426 +9166,11138,19909,19911,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.7522221,8.4691248,0,10,-1,4.2295327,0,2,2,2021,11,0,40,0,1,0,0,18.547115,18.547115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,48.28,60.18,5,1,1,0,0,3,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9166,11138,19910,-9,19909,19911,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.4504,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9166,11138,19911,19909,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.4631138,8.4649944,0,10,1,41.446568,0,-9,-9,2021,10,0,43,50,1,0,0,13.932582,13.932582,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,55.36,51.57,6.666666666666667,1,1,0,0,12,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9166,11138,19912,-9,19909,19911,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.9929,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,5,1,510.75,730928.69,691299.5,142136.88,98613.773,2763.2832,0,3741.8655 +9167,11139,19913,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,6.7807469,6.7352996,0,0,-895.94519,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4541538,6.5803699,25.26,60.58,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,153,465885.16,112722.38,297835.03,0,0,0,1880.7458 +9168,11140,19914,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.4939299,8.5116386,0,0,0,-922.26862,0,2,2,2021,12,0,37,37,1,0,0,13.685327,13.685327,0,0,0,0,0,0,0,0,0,0,0,0,0,53.82,45.88,-9,-9,3.333333333333333,1,1,0,0,14,12,5,0,1500,-71134.25,0,0,0,0,0,1200.1722 +9169,11141,19915,19917,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,0,0,0,20,-2,-138.79639,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.19,51.55,54.1,59.11,8.333333333333334,2,3,1,0,0,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9169,11141,19916,-9,19915,19917,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-928.54169,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,55,-9,-9,6,4,2,-9,0,0,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9169,11141,19917,19915,-9,-9,1,1,43,0,2,0,2,2,-9,0,5,9.4018784,9.2793455,0,20,2,82.454742,0,2,2,2021,6,0,35,72,1,0,0,33.822708,33.822708,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,52.19,51.55,8.333333333333334,1,1,0,0,13,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9169,11141,19918,-9,19915,19917,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.5117,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,5,1,958,467009.94,242265.19,352079.09,94268.445,0,21616.313,3723.0251 +9170,11142,19919,-9,19920,19921,1,0,26,0,1,0,2,2,-9,0,4,8.7436438,8.4760685,0,0,0,-876.95874,0,3,3,2021,9,0,45,35,1,0,1,14.613623,14.613623,0,0,0,0,0,0,0,0,1,0,1,0,0,63.63,51.86,-9,-9,1.666666666666667,2,3,0,0,8,8,5,1,663,-264015.78,-99255.781,0,0,990.01178,0,2794.2908 +9170,11143,19920,19921,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,0,0,0,9,-7,52.685497,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50,55,53,55,8,2,3,0,0,0,8,3,1,943.5,351171.31,35761.547,186842.66,0,0,0,2530.2314 +9170,11143,19921,19920,-9,-9,1,1,53,0,1,0,3,3,-9,0,4,7.940208,7.8479333,0,9,7,-23.461336,0,-9,-9,2021,9,0,24,40,1,1,0,17.308142,17.308142,.05,.05,0,0,0,0,0,0,1,0,1,0,0,53,55,50,55,8,2,3,0,0,4,8,3,1,943.5,351171.31,35761.547,186842.66,0,0,0,2530.2314 +9170,11144,19922,-9,19920,19921,1,1,24,0,1,0,2,2,-9,0,4,7.9750261,7.6968756,0,0,0,-1097.505,0,3,3,2021,10,0,35,0,1,1,1,9.9495993,9.9495993,0,0,0,0,0,0,0,0,1,0,1,0,0,48,59,-9,-9,7,2,3,0,0,7,8,3,1,239,50053.383,0,0,0,0,0,2212.4104 +9170,11145,19923,-9,19920,19921,1,0,19,0,1,0,2,2,1,0,2,0,0,0,0,0,-772.89966,-9,3,3,2021,13,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.75,55.66,-9,-9,5,2,3,1,0,0,8,1,1,898,-44426.531,0,0,0,0,0,334.17392 +9171,11146,19924,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.6318521,6.612093,0,0,-874.76141,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.55259115,6.5723238,54.07,49.4,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1543,57554.793,-27949.115,93502.555,0,5105.6802,3797.0989,778.59332 +9172,11147,19925,19926,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,4.9001698,4.6546268,51,0,-103.55602,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9236755,4.9442844,57.1,30.43,42.7,46.47,10,1,1,0,0,0,2,2,1,362.5,103679.27,54445.383,66699.789,0,0,0,1168.2266 +9172,11147,19926,19925,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,51,0,26.347435,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.7,46.47,57.1,30.43,8.333333333333334,1,1,0,0,0,2,2,1,362.5,103679.27,54445.383,66699.789,0,0,0,1168.2266 +9173,11148,19927,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.3137512,9.8796635,0,0,0,-1090.2836,0,2,2,2021,8,1,70,96,1,1,0,22.777586,22.777586,0,0,0,0,0,0,0,0,0,0,0,7.7191277,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,150,1464544.1,419903.09,844849.81,0,0,0,4817.6675 +9174,11149,19928,19929,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,5.8531737,5.974,0,40,1,46.786579,0,2,2,2021,8,0,6,5,1,0,0,7.6817961,7.6817961,0,0,0,0,0,0,0,14.5,1,1,0,7.5679331,0,54.2,57.49,57.5,29.51,8.333333333333334,1,1,0,0,9,6,4,1,282,583069.44,326834.41,265681,46202.844,0,0,5223.27 +9174,11149,19929,19928,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,8.1959553,8.6420488,7.7179413,40,-1,79.090866,0,2,2,2021,6,0,12,10,1,0,0,33.091236,33.091236,.05,.05,0,0,0,0,0,2,1,1,0,7.3227191,7.849422,57.5,29.51,54.2,57.49,10,1,1,0,0,9,6,4,1,282,583069.44,326834.41,265681,46202.844,0,0,5223.27 +9175,11150,19930,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.1473293,8.2356806,0,0,0,-1074.4281,0,1,1,2021,12,3,48,18,1,3,1,8.3560858,8.3560858,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,65.09,-9,-9,3.333333333333333,1,1,0,0,4,7,4,1,630,65408.27,0,0,0,0,0,1072.6844 +9176,11151,19931,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1069.8099,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.83,54.46,-9,-9,5,4,2,1,0,0,4,1,0,197,-95690.953,0,0,0,0,0,-528.97607 +9176,11152,19932,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-932.11292,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4456234,0,33,29,-9,-9,6.666666666666667,1,1,1,0,0,4,1,0,1160,-141339.94,0,0,0,0,0,912.77271 +9177,11153,19933,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,0,0,0,0,0,-969.75311,1,3,2,2021,5,0,0,38,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.06,57.76,-9,-9,10,3,4,0,1,13,8,2,0,131,250119.39,0,0,0,0,0,-492.15439 +9178,11154,19934,19935,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,5.1915889,6.4204793,6.3630157,8,4,7.228097,0,1,2,2021,6,0,30,30,1,0,0,.54199743,.54199743,0,0,0,0,0,0,0,0,0,0,0,4.1264591,5.9420209,46.34,61.24,57.16,56.15,8.333333333333334,1,1,0,0,8,9,2,1,224.5,262911.47,0,0,0,0,0,1959.3149 +9178,11154,19935,19934,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,8,-4,99.195877,0,2,2,2021,8,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7549434,0,57.16,56.15,46.34,61.24,8.333333333333334,1,1,0,0,8,9,2,1,224.5,262911.47,0,0,0,0,0,1959.3149 +9179,11155,19936,19937,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.8225069,8.7321787,0,11,-2,16.655767,-9,-9,-9,2021,6,0,56,0,1,0,0,13.841294,13.841294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,6.666666666666667,1,1,0,0,14,5,4,1,1261,367393.97,143480.03,174122.31,24102.387,0,0,3137.915 +9179,11155,19937,19936,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.7679825,7.3521013,0,24,2,-64.13076,0,2,2,2021,12,0,20,18,1,0,0,9.2125263,9.2125263,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,14,5,4,1,1261,367393.97,143480.03,174122.31,24102.387,0,0,3137.915 +9179,11156,19938,-9,19937,19936,1,1,18,0,2,0,2,2,-9,0,3,0,0,0,0,0,-987.88324,0,2,2,2021,13,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,1,0,0,5,1,1,2027,-281905.81,0,0,0,0,0,0 +9180,11157,19939,-9,-9,-9,1,0,41,0,1,0,2,2,-9,1,1,0,0,0,0,0,-924.53717,0,3,3,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.8,20.65,-9,-9,3.333333333333333,2,3,1,1,0,8,1,0,557.5,-45210.32,0,0,0,1280.1532,0,2038.8267 +9180,11157,19940,-9,19939,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.0149,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,1,0,557.5,-45210.32,0,0,0,1280.1532,0,2038.8267 +9180,11158,19941,-9,19939,-9,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-968.25867,-9,2,-9,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.18,57.88,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,673,0,0,0,0,0,0,807.34241 +9181,11159,19942,19943,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.0847025,8.0659657,0,30,0,-4.484971,0,3,3,2021,9,1,47,50,1,1,0,7.510529,7.510529,0,0,0,0,0,0,0,0,0,0,0,5.8683219,0,55.36,51.57,46.62,48.9,3.333333333333333,1,1,0,0,3,8,5,1,969.5,526141.31,80049.992,518111.56,63975.781,0,0,3580.4229 +9181,11159,19943,19942,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.156992,8.4265852,0,30,0,-22.276768,0,3,3,2021,9,0,40,40,1,0,0,13.367442,13.367442,0,0,.05,0,0,0,0,0,0,0,0,5.9737301,0,46.62,48.9,55.36,51.57,8.333333333333334,1,1,0,0,9,8,5,1,969.5,526141.31,80049.992,518111.56,63975.781,0,0,3580.4229 +9181,11160,19944,-9,19942,19943,1,0,24,0,0,0,1,1,-9,0,3,7.9644551,7.7704921,0,0,0,-1147.4182,0,2,2,2021,8,1,42,46,1,1,1,8.7719765,8.7719765,0,0,0,0,0,0,0,0,0,0,0,2.9558139,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,420,-36387.609,0,0,0,19666.279,0,1536.8849 +9181,11161,19945,-9,19942,19943,1,1,20,0,0,0,2,2,-9,0,4,6.8221941,6.5840077,0,0,0,-894.0105,0,2,2,2021,9,0,40,40,1,0,1,3.1277871,3.1277871,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,3,8,2,1,1498,0,0,0,0,0,0,561.32056 +9182,11162,19946,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.6253319,9.6311169,0,0,0,-1024.1255,0,2,1,2021,12,0,42,40,1,0,0,37.946774,37.946774,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,582,1998219.4,700261,638394.38,0,0,0,3866.4902 +9183,11163,19947,-9,19949,19948,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.478,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9183,11163,19948,19949,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,8.7825727,8.9405785,0,9,-15,-18.245602,0,-9,-9,2021,21,8,37,37,1,8,0,20.877449,20.877449,.05,.05,0,0,0,0,0,0,1,1,0,2.1819298,0,40.89,46.15,57.16,56.15,3.333333333333333,1,1,0,1,11,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9183,11163,19949,19948,-9,-9,1,0,53,0,2,0,3,3,-9,0,4,7.7130046,7.8333354,0,9,15,-85.777145,0,2,3,2021,5,0,20,0,1,0,0,16.037729,16.037729,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,40.89,46.15,8.333333333333334,1,1,0,0,8,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9183,11163,19950,-9,19949,19948,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.38525,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,832.25,223429.63,139198.06,251974.53,157208.42,2186.9016,0,3431.0232 +9184,11164,19951,-9,19953,19952,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.7326,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,4,1,958.33331,133811.31,45687.902,121349.88,56428.359,0,0,3298.7312 +9184,11164,19952,19953,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.6235886,8.8794107,0,2,4,20.439346,0,2,2,2021,10,1,63,47,1,1,0,9.8214312,9.8214312,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,57.33,53.46,8.333333333333334,1,1,0,0,9,4,4,1,958.33331,133811.31,45687.902,121349.88,56428.359,0,0,3298.7312 +9184,11164,19953,19952,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,7.9822502,8.149888,0,2,-4,-86.466171,0,-9,-9,2021,12,0,25,25,1,0,0,16.59655,16.59655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,53.23,47.51,8.333333333333334,1,1,0,0,5,4,4,1,958.33331,133811.31,45687.902,121349.88,56428.359,0,0,3298.7312 +9185,11165,19954,19955,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.1589565,7.6683521,21,-4,-126.56212,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6260548,8.0181093,54.2,57.49,41.87,35.22,8.333333333333334,1,1,0,0,8,10,4,1,2567.5,2441719.8,1839137.1,414273.63,0,0,1134.8948,3410.5273 +9185,11165,19955,19954,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1085081,7.9965177,21,4,-29.18412,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6309557,8.0909128,41.87,35.22,54.2,57.49,5,1,1,0,0,6,10,4,1,2567.5,2441719.8,1839137.1,414273.63,0,0,1134.8948,3410.5273 +9186,11166,19956,19957,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,-5,-88.901039,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1547959,0,50,47,39.45,46.82,7,1,1,0,0,0,5,2,1,376.5,343714.38,109657.84,57728.566,0,5348.7686,0,1556.228 +9186,11166,19957,19956,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.4592886,7.4312205,47,5,-59.383629,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7374244,7.2162752,39.45,46.82,50,47,8.333333333333334,1,1,0,0,0,5,2,1,376.5,343714.38,109657.84,57728.566,0,5348.7686,0,1556.228 +9187,11167,19958,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.2526464,8.1828871,0,0,0,-1021.053,0,-9,-9,2021,9,0,38,38,1,0,0,11.619799,11.619799,.05,.05,0,0,0,0,0,0,0,0,0,2.1727965,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,334,405027.41,107469.98,268319.16,0,15058.008,0,1633.4165 +9187,11168,19959,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.9837923,8.0154448,0,0,0,-1122.6646,0,-9,-9,2021,12,1,39,35,1,1,0,9.2839756,9.2839756,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.63,54.22,-9,-9,8.333333333333334,4,2,0,0,2,4,4,0,423,-54825.902,21719.266,0,0,0,0,836.62976 +9188,11169,19960,-9,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.4994931,7.3666105,0,0,0,-976.20935,0,1,3,2021,7,0,35,35,1,0,0,6.8849859,6.8849859,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,13,3,1,6806,-3463.7617,0,0,0,0,0,715.48444 +9189,11170,19961,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-925.73029,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.84,43.22,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,932,-84834.203,0,0,0,0,0,1240.2365 +9190,11171,19962,-9,-9,-9,1,1,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-985.70343,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2202287,0,56,44,-9,-9,8,1,1,0,0,0,2,1,1,114,-122643.86,0,0,0,0,0,1954.4868 +9190,11172,19963,-9,-9,19962,1,1,59,0,0,0,2,2,-9,0,2,8.1457787,7.9580693,0,0,0,-1038.881,0,2,2,2021,17,5,12,12,1,5,0,27.51655,27.51655,.05,.05,0,0,0,0,0,14.5,1,1,0,1.8574257,0,40.85,39.8,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,332,418824.13,153550.72,0,0,0,0,1484.6295 +9191,11173,19964,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,8.0958891,7.884294,0,0,0,-1038.7826,0,2,2,2021,10,0,39,75,1,1,1,10.786284,10.786284,.05,.05,0,0,0,0,2.9237511,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,12,4,1,708,276442.53,22716.027,0,0,0,0,1731.8918 +9192,11174,19965,19966,-9,-9,1,1,45,0,1,0,3,3,-9,1,1,0,0,0,22,-3,-71.023941,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.11,27.77,57.06,57.76,6.666666666666667,1,1,0,0,5,6,3,1,1393.5,94295.234,21643.813,18322.764,23519.707,0,0,2056.3293 +9192,11174,19966,19965,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.819119,7.648932,0,22,3,101.00806,0,2,2,2021,6,0,42,35,1,0,0,8.327981,8.327981,0,0,0,0,0,0,0,84,1,1,0,1.711695,0,57.06,57.76,31.11,27.77,6.666666666666667,1,1,0,0,10,6,3,1,1393.5,94295.234,21643.813,18322.764,23519.707,0,0,2056.3293 +9193,11175,19967,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.5924015,7.7952313,0,0,0,-1130.0037,0,3,3,2021,20,8,45,42,1,8,0,6.1533556,6.1533556,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.92,31.03,-9,-9,5,1,1,0,0,4,11,3,0,1112,-10873.318,3681.8523,0,0,0,0,1188.2223 +9194,11176,19968,19969,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.7040305,6.749589,62,1,-21.094231,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1364775,60.29,52.11,62.63,34.54,0,1,1,0,0,0,4,2,1,1284.5,528254.06,190544.34,97255.828,0,0,0,2775.1997 +9194,11176,19969,19968,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.5333862,5.3515067,62,-1,68.930077,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8933172,5.4371357,62.63,34.54,60.29,52.11,8.333333333333334,1,1,0,0,0,4,2,1,1284.5,528254.06,190544.34,97255.828,0,0,0,2775.1997 +9195,11177,19970,19971,-9,-9,1,1,30,0,0,0,3,3,-9,0,3,8.0686531,8.048068,0,5,2,-194.2581,0,-9,-9,2021,12,0,37,37,1,0,0,9.9199753,9.9199753,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.62,55.66,30.9,57.35,5,1,1,0,0,9,10,5,0,740,340274.75,153882.64,200772.39,161483.72,0,0,2792.2583 +9195,11177,19971,19970,-9,-9,1,0,28,0,0,0,3,3,-9,0,3,8.4701672,8.6167498,0,5,-2,-138.03284,-9,-9,-9,2021,18,6,37,0,1,6,0,17.616945,17.616945,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.9,57.35,37.62,55.66,3.333333333333333,1,1,0,0,6,10,5,0,740,340274.75,153882.64,200772.39,161483.72,0,0,2792.2583 +9196,11178,19972,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,.062143069,.43279046,0,0,0,-906.93054,0,2,-9,2021,29,12,40,35,1,12,0,.00073076063,.00073076063,0,0,0,0,0,0,0,14.5,1,1,0,0,0,28.54,33.04,-9,-9,1.666666666666667,1,1,0,1,6,6,2,0,3010,48021.563,0,0,0,8039.8906,0,1117.8024 +9197,11179,19973,-9,19974,19977,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.2469,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19974,19977,-9,-9,1,0,35,3,3,0,1,1,-9,0,3,9.0324526,8.8065815,0,4,0,37.389763,0,2,2,2021,6,0,40,49,1,0,0,19.85718,19.85718,.05,.05,0,0,0,0,0,0,1,1,0,6.6974382,0,53.14,51.28,51,56,8.333333333333334,1,1,0,0,8,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19975,-9,19974,19977,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-910.36102,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19976,-9,19974,19977,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-987.0434,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9197,11179,19977,19974,-9,-9,1,1,35,3,3,0,1,1,-9,0,4,9.4746199,9.3466635,0,4,0,-54.20623,0,-9,-9,2021,10,0,40,45,1,1,0,31.554476,31.554476,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,53.14,51.28,7,1,1,0,0,1,9,5,0,1464.4,582532.5,216019.98,447214.03,142519.84,0,0,7365.4243 +9198,11180,19978,19979,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,0,0,6,1,0,0,3,3,2021,6,0,0,20,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,62.49,55.09,10,1,1,0,0,7,13,1,1,408.5,124122.18,112045.3,156287.03,0,0,0,1072.5155 +9198,11180,19979,19978,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,6,-1,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,57.76,54.51,10,1,1,0,0,5,13,1,1,408.5,124122.18,112045.3,156287.03,0,0,0,1072.5155 +9199,11181,19980,19981,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.2531939,8.6245375,8.2631197,34,-5,-46.302895,0,3,3,2021,9,0,28,29,1,0,0,17.367252,17.367252,.05,.05,0,0,0,0,0,0,1,1,0,8.3177071,0,59.47,42.13,23.97,45.78,6.666666666666667,1,1,0,0,11,13,5,1,573.5,1622468.8,1484989.4,152024.66,14544.342,0,0,4736.4971 +9199,11181,19981,19980,-9,-9,1,0,61,0,0,0,2,2,-9,1,3,0,0,0,33,5,-81.086624,0,2,3,2021,12,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,6.7765374,0,23.97,45.78,59.47,42.13,6.666666666666667,1,1,0,0,8,13,5,1,573.5,1622468.8,1484989.4,152024.66,14544.342,0,0,4736.4971 +9200,11182,19982,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1029.575,0,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9180319,0,37.22,63.68,-9,-9,6.666666666666667,1,1,0,0,3,9,1,1,793,893518.19,-1358.7673,544496.63,0,0,0,450.27139 +9201,11183,19983,-9,19985,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.4299,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,705.66669,-12261.425,0,0,0,0,0,1108.0541 +9201,11183,19984,-9,19985,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.98175,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,705.66669,-12261.425,0,0,0,0,0,1108.0541 +9201,11183,19985,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,1,0,0,0,0,0,-933.62164,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.35,15.58,-9,-9,5,1,1,0,0,0,4,2,1,705.66669,-12261.425,0,0,0,0,0,1108.0541 +9202,11184,19986,-9,19989,19987,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.04694,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19987,19989,-9,-9,1,1,36,1,3,0,2,2,-9,0,3,8.1319838,8.4207916,0,16,2,41.842327,0,3,3,2021,9,1,50,65,1,1,0,9.306181,9.306181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.92,40.35,43.48,60.97,1.666666666666667,1,1,0,0,6,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19988,-9,19989,19987,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-858.62317,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19989,19987,-9,-9,1,0,34,1,3,0,2,2,-9,0,4,7.3899484,7.7716165,0,16,-2,-52.324253,0,3,3,2021,12,0,21,21,1,0,0,10.409415,10.409415,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.48,60.97,58.92,40.35,8.333333333333334,1,1,0,0,10,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9202,11184,19990,-9,19989,19987,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.5223,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,3,1,448.79999,253895.05,284400.84,151264.89,114832.48,27778.785,0,2409.9775 +9203,11185,19991,19992,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.2053614,8.0216732,0,37,-2,98.434402,0,2,2,2021,12,0,40,40,1,2,0,10.908935,10.908935,0,0,0,0,0,0,0,0,0,0,0,0,0,48,48,50,49,7,2,3,0,0,14,8,3,1,520.5,759041.38,242994.91,425456.63,0,0,0,1429.4797 +9203,11185,19992,19991,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,37,2,45.540733,0,3,3,2021,10,0,0,12,3,1,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,50,49,48,48,7,2,3,1,1,4,8,3,1,520.5,759041.38,242994.91,425456.63,0,0,0,1429.4797 +9203,11186,19993,-9,19991,19992,1,1,25,0,0,0,2,2,1,0,3,0,0,0,0,0,-1039.2319,-9,2,2,2021,19,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,13.06,65.75,-9,-9,3.333333333333333,2,3,1,0,0,8,1,1,847,-171560.89,0,0,0,0,0,0 +9204,11187,19994,-9,19995,19998,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.8604,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19995,19998,-9,-9,1,0,32,0,3,0,1,1,-9,0,3,8.1016188,8.3022881,5.9262104,7,1,-59.4272,0,2,1,2021,12,0,40,13,1,0,0,9.3470268,9.3470268,.05,.05,0,0,0,0,0,0,1,1,0,6.0030751,0,46.33,55.93,40.65,57.36,6.666666666666667,4,2,0,0,4,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19996,-9,19995,19998,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.09198,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19997,-9,19995,19998,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1036.4325,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11187,19998,19995,-9,-9,1,1,31,0,3,0,2,2,-9,0,3,7.8420262,8.1196356,0,7,-1,25.223598,-9,-9,-9,2021,12,0,40,0,1,0,0,8.4316425,8.4316425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,46.33,55.93,6.666666666666667,1,1,0,0,5,6,4,0,478.39999,62848.5,66482.844,115377.95,49458.441,1291.4266,9107.7031,3407.1357 +9204,11188,19999,-9,-9,-9,1,0,28,0,3,0,2,2,-9,0,2,7.8066692,7.5812836,0,0,0,-954.55481,0,-9,-9,2021,14,2,45,45,1,2,0,6.4707069,6.4707069,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.41,44.7,-9,-9,1.666666666666667,1,1,0,0,5,6,3,0,324,21908.631,-48970.551,0,0,896.36127,10442.665,985.97705 +9205,11189,20000,20001,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,7.0979085,6.9501996,46,-3,-6.2333145,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.17174934,6.9660096,27.23,23.84,61.85,44.55,5,1,1,0,0,0,10,2,0,853.5,481464.5,-26553.852,158988.27,0,0,0,2584.1868 +9205,11189,20001,20000,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.5122299,6.3893037,46,3,70.184776,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.3580327,6.1082044,61.85,44.55,27.23,23.84,8.333333333333334,1,1,0,0,3,10,2,0,853.5,481464.5,-26553.852,158988.27,0,0,0,2584.1868 +9205,11190,20002,-9,-9,-9,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-960.25696,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,16.79,61.42,-9,-9,5,1,1,1,0,0,10,1,0,1066,-28517.553,0,0,0,0,0,24.929356 +9206,11191,20003,-9,-9,-9,1,1,27,0,0,0,3,3,-9,0,5,7.993825,8.2442999,0,0,0,-994.95703,0,-9,-9,2021,6,0,48,55,1,0,0,8.0193815,8.0193815,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,5,3,4,0,0,6,8,4,0,603,134524.72,0,0,0,0,0,640.13257 +9207,11192,20004,-9,20005,20006,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.4154,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11192,20005,20006,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,0,0,0,26,0,-34.763279,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,51,56,8,2,3,0,1,0,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11192,20006,20005,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,9.4211836,9.6422939,0,26,0,57.742901,0,3,3,2021,9,0,36,35,1,1,0,37.242779,37.242779,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51,56,50,55,8,2,3,0,1,9,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11192,20007,-9,20005,20006,1,0,16,0,2,0,2,2,-9,0,3,0,5.4371667,5.7012882,0,0,-997.0224,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2111311,0,36.88,47.89,-9,-9,6.666666666666667,2,3,0,0,0,8,5,0,1008,126162.37,-37048.785,296275.78,75584.047,0,0,4871.8018 +9207,11193,20008,-9,20005,20006,1,1,22,0,2,0,2,2,-9,0,4,7.4638352,7.3847842,0,0,0,-855.52661,0,2,3,2021,24,10,20,0,1,10,1,14.174434,14.174434,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,58.11,-9,-9,3.333333333333333,2,3,0,0,1,8,3,0,1476,21483.377,-54974.762,0,0,0,0,874.49341 +9207,11194,20009,-9,20005,20006,1,0,21,0,2,0,2,2,1,0,4,8.066659,8.2414331,0,0,0,-1009.0553,-9,2,3,2021,7,0,42,0,1,0,1,8.8576546,8.8576546,0,0,0,0,0,0,0,0,1,1,0,0,0,30.77,64.34,-9,-9,6.666666666666667,2,3,0,0,0,8,4,0,1266,21795.361,0,0,0,0,0,1020.5698 +9207,11195,20010,-9,20005,20006,1,1,19,0,2,0,2,2,-9,0,4,6.1010585,6.0848656,0,0,0,-1141.9755,0,2,3,2021,10,0,40,0,1,2,1,1.8323489,1.8323489,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,8,2,0,2346,51672.27,59807.238,0,0,3272.3894,0,670.49786 +9208,11196,20011,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0036879,7.8048148,0,0,0,-854.25909,0,2,2,2021,6,0,40,47,1,0,0,7.7573919,7.7573919,0,0,.05,0,0,0,0,0,1,1,0,0,0,55.8,44.26,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,121,909358.38,367508.88,243614.25,0,0,0,881.99475 +9209,11197,20012,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.7024698,7.9998484,6.671701,0,0,-1102.3517,0,3,3,2021,12,0,23,27,1,0,0,15.646873,15.646873,0,0,0,1,0,0,0,0,1,1,0,.96973616,6.846827,39.36,55.19,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,318,18581.416,0,0,0,0,81.10379,2081.0486 +9210,11198,20013,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.16956,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,-9,-9,6.666666666666667,1,1,0,0,0,10,1,0,583,325251.22,0,246770.67,0,0,0,-418.43823 +9211,11199,20014,-9,20017,20016,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.58838,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9211,11199,20015,-9,20017,20016,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-954.91113,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9211,11199,20016,20017,-9,-9,1,1,44,1,2,0,1,1,-9,0,4,0,0,0,14,10,122.63362,0,3,2,2021,10,0,0,43,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1592298,0,50.48,56.4,46.5,58.26,8.333333333333334,2,3,0,0,9,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9211,11199,20017,20016,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,7.458364,7.1147633,0,12,-10,-60.489616,0,1,2,2021,12,3,35,35,1,3,0,5.0037417,5.0037417,0,0,0,0,0,0,0,0,1,1,0,2.8878517,0,46.5,58.26,50.48,56.4,8.333333333333334,1,1,0,0,7,8,2,1,511,399838.94,19907.244,391782.38,54604.172,103.41917,0,394.06961 +9212,11200,20018,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-985.8551,0,3,3,2021,16,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.75,50.17,-9,-9,0,1,1,0,1,0,12,1,1,963,-360260.88,-44176.066,0,0,0,0,180.94133 +9213,11201,20019,20020,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.3740544,6.3976316,51,0,-109.69653,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3415163,6.7211518,58.32,50.22,64.40000000000001,42,10,1,1,0,0,0,9,4,1,828.5,1587271.3,747983.13,529182.5,0,0,0,4267.207 +9213,11201,20020,20019,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6768017,8.3884296,51,0,101.77605,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4965303,8.912055,64.40000000000001,42,58.32,50.22,8.333333333333334,1,1,0,0,0,9,4,1,828.5,1587271.3,747983.13,529182.5,0,0,0,4267.207 +9214,11202,20021,-9,20024,20022,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.095,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9214,11202,20022,20024,-9,-9,1,1,44,1,2,0,2,2,-9,0,3,9.1634245,9.0125961,0,5,10,189.59308,0,1,1,2021,9,0,38,77,1,0,0,25.545742,25.545742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.37,54.85,54.2,57.49,8.333333333333334,4,5,0,0,13,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9214,11202,20023,-9,20024,20022,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.7007,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9214,11202,20024,20022,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,4.7574201,4.7577987,0,5,-10,79.076775,0,-9,-9,2021,9,1,2,0,1,1,0,10.342223,10.342223,.05,.05,0,0,0,0,0,0,0,0,0,8.0885477,0,54.2,57.49,39.37,54.85,10,4,2,0,0,3,5,4,1,991.25,401930.47,90861.891,425941.41,221912.39,0,9028.8584,4782.5557 +9215,11203,20025,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-939.02856,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.61,25.13,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,890,36133.746,0,0,0,0,0,1187.0123 +9216,11204,20026,20027,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,7.6868472,7.6648493,38,0,13.212629,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7720113,49.51,46.42,50.84,45.33,8.333333333333334,1,1,0,0,0,9,4,1,735,1422002.5,239979.58,662100,0,0,0,3488.7646 +9216,11204,20027,20026,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.7081542,8.1059332,38,9,9.1112947,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1299211,8.085041,50.84,45.33,49.51,46.42,8.333333333333334,1,1,0,0,0,9,4,1,735,1422002.5,239979.58,662100,0,0,0,3488.7646 +9217,11205,20028,20029,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,7,-13,0,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,2.6809487,0,2,1,1,0,0,0,61.69,15.28,61.54,26.01,6.666666666666667,2,3,0,0,0,12,1,1,1535.5,3637.998,0,0,0,0,0,936.57849 +9217,11205,20029,20028,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,7,13,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.54,26.01,61.69,15.28,8.333333333333334,2,3,0,0,0,12,1,1,1535.5,3637.998,0,0,0,0,0,936.57849 +9217,11206,20030,20031,20028,20029,1,1,45,0,0,0,2,2,-9,0,3,8.3570375,8.1266928,0,7,-2,24.773048,0,3,3,2021,11,0,37,37,1,0,0,15.876051,15.876051,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,55.87,64.23999999999999,34.3,8.333333333333334,2,3,0,0,8,12,4,1,1670,61480.363,-10897.102,0,0,0,6608.1035,1847.5884 +9217,11206,20031,20030,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,4.7994676,5.036747,0,7,2,-5.3729844,0,2,2,2021,12,0,25,50,1,0,0,.44847018,.44847018,0,0,0,0,0,0,0,0,1,1,0,1.5082837,0,64.23999999999999,34.3,49.02,55.87,8.333333333333334,2,3,0,0,8,12,4,1,1670,61480.363,-10897.102,0,0,0,6608.1035,1847.5884 +9217,11207,20032,-9,20031,20030,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1018.3149,-9,2,2,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.33,55.91,-9,-9,6.666666666666667,2,3,0,0,3,12,1,1,479,30566.816,0,0,0,3020.5066,0,187.08743 +9217,11208,20033,-9,20031,20030,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1014.1539,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,-9,-9,6.666666666666667,2,3,0,0,0,12,1,1,975,-65721.266,0,0,0,0,0,-575.78809 +9218,11209,20034,20035,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,6,4,-1.5046698,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.3677207,0,58.25,22.01,57.16,56.15,5,1,1,1,0,7,7,4,1,569.5,1708330.8,1181566,313672.19,0,0,0,2576.6992 +9218,11209,20035,20034,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.7602158,8.6585016,0,28,-4,47.46949,0,2,3,2021,7,0,42,55,1,0,0,18.893654,18.893654,0,0,0,0,0,0,0,7,1,1,0,.34557572,0,57.16,56.15,58.25,22.01,8.333333333333334,1,1,0,0,9,7,4,1,569.5,1708330.8,1181566,313672.19,0,0,0,2576.6992 +9218,11210,20036,-9,20035,20034,1,1,24,0,0,0,2,2,-9,0,4,7.4784122,7.6442084,0,0,0,-934.75354,0,2,2,2021,6,0,43,37,1,0,1,5.1815934,5.1815934,0,0,0,0,0,0,0,0,1,1,0,3.121815,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,3,1,2122,-70177.586,0,0,0,0,0,804.66187 +9219,11211,20037,-9,20038,20039,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.3561,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,5,1,561.66669,-9262.7178,-56025.801,0,0,0,0,4866.2632 +9219,11211,20038,20039,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,8,2,107.40504,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.51,47.91,58.05,54.52,1.666666666666667,1,1,0,0,2,12,5,1,561.66669,-9262.7178,-56025.801,0,0,0,0,4866.2632 +9219,11211,20039,20038,-9,-9,1,1,39,1,1,0,1,1,-9,0,5,9.7772741,9.3369064,0,8,-2,-117.26563,0,2,3,2021,7,0,27,34,1,0,0,64.61731,64.61731,.05,.05,0,0,0,0,0,0,0,0,0,4.4605494,0,58.05,54.52,57.51,47.91,8.333333333333334,1,1,0,0,11,12,5,1,561.66669,-9262.7178,-56025.801,0,0,0,0,4866.2632 +9220,11212,20040,-9,-9,-9,1,0,60,0,2,0,3,3,-9,1,4,8.7016592,8.4693489,0,0,0,-980.54187,0,3,3,2021,9,0,120,120,1,0,0,6.1667433,6.1667433,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,687,-102656.55,-142275.8,0,0,7928.043,0,5890.8301 +9220,11213,20041,-9,20040,-9,1,1,36,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1049.7616,0,3,-9,2021,10,0,0,38,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5546746,0,51,56,-9,-9,7,1,1,1,0,0,2,1,1,205,-24133.717,0,0,0,0,0,1585.8712 +9221,11214,20042,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.4715967,6.5532913,0,0,-1032.2566,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4131043,6.3620224,51.37,46.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1411,155089.08,75729.094,0,0,0,0,512.4657 +9222,11215,20043,20044,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,7.1794362,7.4171071,0,7,7,43.101326,0,3,1,2021,11,0,16,16,1,0,0,6.7828312,6.7828312,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.43,53.5,36.62,60.23,8.333333333333334,1,1,0,0,8,9,5,1,697,752667.69,260277.72,428340.44,188183.39,19525.309,0,3569.4258 +9222,11215,20044,20043,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,9.6883678,9.4934464,0,7,-7,97.747292,0,-9,-9,2021,16,5,50,55,1,5,0,28.466133,28.466133,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.62,60.23,45.43,53.5,3.333333333333333,1,1,0,0,9,9,5,1,697,752667.69,260277.72,428340.44,188183.39,19525.309,0,3569.4258 +9222,11215,20045,-9,20043,20044,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.293,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,697,752667.69,260277.72,428340.44,188183.39,19525.309,0,3569.4258 +9223,11216,20046,-9,-9,-9,1,1,43,0,0,0,3,3,-9,0,5,8.2099791,8.5899572,0,0,0,-1015.0623,0,3,3,2021,6,0,50,40,1,0,0,8.8166265,8.8166265,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,11,4,4,1,372,90572.336,-39030.621,0,0,0,0,2123.0557 +9224,11217,20047,20048,-9,-9,1,1,39,0,1,0,3,3,-9,0,4,8.2065516,8.2818193,0,6,1,25.952999,-9,-9,2,2021,4,0,50,0,1,0,0,8.1776237,8.1776237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.92,51.94,1.666666666666667,1,1,0,0,11,1,5,0,758.5,270967.69,115973.84,238348.72,158855.41,0,0,4010.9604 +9224,11217,20048,20047,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,8.6057272,8.8490496,0,6,-1,-41.331764,-9,-9,-9,2021,16,4,37,0,1,4,0,20.776892,20.776892,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.92,51.94,57.16,56.15,5,1,1,0,0,6,1,5,0,758.5,270967.69,115973.84,238348.72,158855.41,0,0,4010.9604 +9224,11218,20049,-9,20048,20047,1,1,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1030.295,-9,1,3,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,1714,165314.5,0,0,0,0,0,-613.82233 +9225,11219,20050,20051,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,54,-3,-4.2765517,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,7.1488848,0,44.76,50.85,49.01,28.95,8.333333333333334,1,1,0,0,4,10,2,0,533.5,460462.72,146811.11,320701.44,0,0,0,2007.5688 +9225,11219,20051,20050,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.5920548,6.346736,54,3,157.48546,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.6517153,0,0,1,1,0,0,6.4927197,49.01,28.95,44.76,50.85,5,1,1,0,0,0,10,2,0,533.5,460462.72,146811.11,320701.44,0,0,0,2007.5688 +9226,11220,20052,20053,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.1864753,5.0872698,50,-2,62.917191,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3262153,5.0055671,62.5,49.56,35.82,51.7,8.333333333333334,1,1,0,0,0,5,3,1,992.5,890479.75,494996.06,236564.66,0,0,0,1782.7544 +9226,11220,20053,20052,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.7714863,7.7456727,50,2,67.016655,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8130932,7.4681244,35.82,51.7,62.5,49.56,8.333333333333334,1,1,0,0,0,5,3,1,992.5,890479.75,494996.06,236564.66,0,0,0,1782.7544 +9227,11221,20054,20055,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.457201,8.2741175,0,7,1,-22.855314,0,-9,-9,2021,9,0,47,48,1,0,0,9.5893373,9.5893373,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.69,57.47,8.333333333333334,1,1,0,0,14,12,5,1,1759,196308.66,118497.32,156556.98,101911.63,0,1137.9272,3698.438 +9227,11221,20055,20054,-9,-9,1,0,33,0,0,0,2,2,-9,0,5,8.5393543,8.7703247,0,7,-1,33.933372,0,2,3,2021,8,1,40,40,1,1,0,12.076702,12.076702,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,57.16,56.15,10,1,1,0,0,10,12,5,1,1759,196308.66,118497.32,156556.98,101911.63,0,1137.9272,3698.438 +9228,11222,20056,20057,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.4663239,8.4460707,0,3,5,78.851517,0,-9,-9,2021,8,0,38,38,1,0,0,13.929477,13.929477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,43.54,59.6,10,1,1,0,0,8,11,5,1,696,28586.609,-51803.559,0,0,0,1060.2893,3576.9722 +9228,11222,20057,20056,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.1921768,8.2553701,0,3,-5,38.724232,0,1,2,2021,19,8,46,0,1,8,0,7.8233542,7.8233542,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,51.83,57.2,6.666666666666667,1,1,0,0,4,11,5,1,696,28586.609,-51803.559,0,0,0,1060.2893,3576.9722 +9229,11223,20058,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.0890627,7.3306808,0,0,-1032.254,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.5684152,135.35144,12.939561,0,1,1,0,0,7.1968608,54,43,-9,-9,8,1,1,0,0,0,4,3,0,767,334562.47,10783.95,226338.08,0,0,0,1175.3672 +9230,11224,20059,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,9.320899,9.4359264,0,0,-1024.1425,0,1,1,2021,11,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.9625506,9.2069635,45.46,61.87,-9,-9,10,2,3,0,0,0,8,5,1,1543,445676.25,453608.47,0,0,0,0,6283.3848 +9231,11225,20060,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.2302299,6.0369525,0,0,-976.24554,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7941041,6.3290763,66.34,49.42,-9,-9,10,1,1,0,0,0,5,2,1,900,496861.75,39632.563,175241.63,0,0,0,-47.968231 +9232,11226,20061,20063,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.0805855,9.1833067,0,12,-2,-62.406544,0,2,1,2021,7,0,53,50,1,0,0,15.307356,15.307356,.05,.05,0,0,0,0,0,0,0,0,0,5.3444538,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,710,2781992,2034702.6,529405.81,9883.6377,0,0,6101.1484 +9232,11226,20062,-9,20061,20063,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1054.9147,-9,1,1,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,1,0,0,9,5,1,710,2781992,2034702.6,529405.81,9883.6377,0,0,6101.1484 +9232,11226,20063,20061,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.368906,9.3685875,0,12,2,-22.9711,0,1,2,2021,9,0,44,45,1,0,0,33.946499,33.946499,.05,.05,0,0,0,0,0,0,0,0,0,3.842248,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,710,2781992,2034702.6,529405.81,9883.6377,0,0,6101.1484 +9233,11227,20064,20065,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8503976,8.1047039,0,9,-7,60.42342,0,2,2,2021,5,0,38,38,1,0,0,9.0887814,9.0887814,0,0,0,0,0,0,0,7,1,1,0,0,0,55.39,54.22,54.45,50.69,8.333333333333334,1,1,0,0,10,4,3,1,977.5,190178.55,287941.84,0,0,0,0,1646.0731 +9233,11227,20065,20064,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,0,0,9,7,-38.307369,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.45,50.69,55.39,54.22,8.333333333333334,1,1,0,0,8,4,3,1,977.5,190178.55,287941.84,0,0,0,0,1646.0731 +9234,11228,20066,20067,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.3499594,8.4680309,0,9,0,46.752472,-9,3,2,2021,12,0,39,0,1,0,0,14.995521,14.995521,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,38.66,43.37,6.666666666666667,1,1,0,0,10,9,5,1,280,342112.16,218629.41,355388.69,248286.31,8850.5547,0,4351.3203 +9234,11228,20067,20066,-9,-9,1,1,42,0,1,0,1,1,-9,0,2,8.8486757,9.0044661,0,1,0,-75.989143,-9,-9,-9,2021,15,3,37,0,1,3,0,19.996149,19.996149,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.66,43.37,45.69,53.27,5,1,1,0,1,10,9,5,1,280,342112.16,218629.41,355388.69,248286.31,8850.5547,0,4351.3203 +9235,11229,20068,20069,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.0688057,9.2905674,0,1,8,35.786713,-9,-9,-9,2021,7,0,60,0,1,0,0,20.420286,20.420286,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.49,47.77,8.333333333333334,1,1,0,0,1,5,5,0,2699.5,721484.13,227184.41,369655,0,5434.0649,0,5470.2158 +9235,11229,20069,20068,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.9325581,8.837635,0,1,-8,-46.160583,0,2,2,2021,12,1,57,60,1,1,0,14.274568,14.274568,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.49,47.77,51.83,57.2,6.666666666666667,1,1,0,0,9,5,5,0,2699.5,721484.13,227184.41,369655,0,5434.0649,0,5470.2158 +9236,11230,20070,20071,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1563845,7.7925715,0,16,-1,-45.028599,0,2,2,2021,8,0,40,40,1,0,0,7.4806561,7.4806561,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.51,40.91,13.6,64.02,10,1,1,0,0,6,9,4,0,1237,78865.703,12043.27,208754.84,131496.7,1917.7021,194.28688,2216.2764 +9236,11230,20071,20070,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.0291977,7.9756718,0,17,1,58.463596,0,2,2,2021,26,9,40,38,1,9,0,8.2006559,8.2006559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,13.6,64.02,52.51,40.91,5,1,1,0,0,14,9,4,0,1237,78865.703,12043.27,208754.84,131496.7,1917.7021,194.28688,2216.2764 +9236,11231,20072,-9,20070,20071,1,1,25,0,0,0,2,2,-9,0,3,8.1575718,8.346488,0,0,0,-1000.5444,-9,2,2,2021,8,0,48,0,1,0,1,10.414745,10.414745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.2,31.05,-9,-9,8.333333333333334,1,1,0,0,2,9,4,0,1931,-600.03137,623.8681,0,0,0,0,1216.3356 +9237,11232,20073,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,9.6106882,9.36304,0,0,0,-979.99011,0,2,1,2021,22,7,50,55,1,7,0,32.286392,32.286392,.05,.05,0,0,0,0,0,0,0,0,0,.79177904,0,7.640000000000001,64.44,-9,-9,1.666666666666667,1,1,0,0,13,4,5,1,619,135400.34,71125.422,0,0,0,-834.49982,3490.4502 +9238,11233,20074,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,6.8029919,6.6668034,0,0,0,-1034.8679,-9,2,2,2021,6,2,16,0,1,2,0,5.2685966,5.2685966,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,-9,-9,8.333333333333334,4,2,0,0,4,9,2,0,198,-135238.88,0,0,0,0,0,1751.5701 +9239,11234,20075,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,0,0,0,0,-973.3457,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,7.1402001,13.212792,64.417984,0,1,1,0,0,0,61.75,14.86,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,274,-13812.408,427.8671,161092.58,0,0,0,1067.303 +9240,11235,20076,-9,20078,20077,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.8081,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,0,300.66666,-131530.63,-30141.705,0,0,0,0,1935.6891 +9240,11235,20077,20078,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,7.984509,8.0209312,0,5,0,-165.06642,0,3,3,2021,7,1,42,42,1,1,0,9.6133833,9.6133833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,33.43,59.21,8.333333333333334,1,1,0,0,9,2,3,0,300.66666,-131530.63,-30141.705,0,0,0,0,1935.6891 +9240,11235,20078,20077,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,7.1033177,7.1497483,0,5,0,-168.87767,0,-9,-9,2021,21,9,24,23,1,9,0,7.2307234,7.2307234,.05,.05,0,0,0,0,0,0,1,1,0,.8342666,0,33.43,59.21,55.36,51.57,3.333333333333333,1,1,0,0,3,2,3,0,300.66666,-131530.63,-30141.705,0,0,0,0,1935.6891 +9241,11236,20079,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.774919,6.6429262,0,0,-819.19995,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7347393,51.77,36.69,-9,-9,6.666666666666667,1,1,0,0,3,11,2,0,453,220727.16,18439.643,188820.97,0,0,0,2306.7302 +9242,11237,20080,20083,-9,-9,1,0,33,0,5,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.44,47.24,18.13,62.09,8.333333333333334,1,1,1,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20081,-9,20080,20083,1,0,6,0,5,1,3,0,-9,0,4,0,0,0,0,0,-873.29315,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20082,-9,20080,20083,1,0,3,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1109.7689,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20083,20080,-9,-9,1,1,33,0,5,0,2,2,-9,1,3,0,0,0,6,0,0,0,2,2,2021,20,5,0,40,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.13,62.09,41.44,47.24,5,1,1,0,0,6,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20084,-9,20080,20083,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-989.28326,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20085,-9,20080,20083,1,0,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-903.6073,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9242,11237,20086,-9,20080,20083,1,0,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-978.97052,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1366.8572,-17615.463,108022.57,0,0,3645.1431,0,2241.3584 +9243,11238,20087,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.0564404,5.7545996,0,0,-984.73615,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,13.776388,9.1308317,117.93002,0,1,0,1,0,6.0030928,52,48,-9,-9,7,1,1,0,0,0,8,2,1,182,92649.93,163856.02,0,0,0,0,2912.3337 +9244,11239,20088,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1107.2651,-9,-9,-9,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.22449346,0,56.47,59.4,-9,-9,10,1,1,1,0,6,4,1,0,533,153182.84,0,0,0,0,0,-304.03638 +9244,11239,20089,-9,20088,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.99536,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,533,153182.84,0,0,0,0,0,-304.03638 +9245,11240,20090,20091,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.0019865,7.5117149,58,7,59.923237,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.4371777,53,46,57.57,9.51,8.333333333333334,1,1,0,0,0,5,2,1,2255,392355.88,174722.5,181342.28,0,0,0,2054.4814 +9245,11240,20091,20090,-9,-9,1,0,76,0,0,0,3,3,-9,0,1,0,0,0,57,-7,-112.89613,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,9.51,53,46,5,1,1,0,0,0,5,2,1,2255,392355.88,174722.5,181342.28,0,0,0,2054.4814 +9246,11241,20092,20093,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.7390509,7.7558918,66,3,-3.6005487,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7641304,7.2483692,55.33,42.18,59.14,52.5,8.333333333333334,1,1,0,0,0,5,2,1,560,261320.22,77354.063,146350.19,0,0,0,1206.6461 +9246,11241,20093,20092,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,0,0,66,-3,48.313622,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1893494,0,59.14,52.5,55.33,42.18,6.666666666666667,1,1,0,0,0,5,2,1,560,261320.22,77354.063,146350.19,0,0,0,1206.6461 +9247,11242,20094,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,7.1535416,6.7052808,0,0,-885.17572,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.036911,58.72,43.42,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1108,138301.72,-20311.654,0,0,0,0,354.91922 +9248,11243,20095,20096,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,8.07512,7.9294558,0,9,7,170.88713,-9,-9,-9,2021,11,0,29,0,1,2,0,14.661657,14.661657,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,57.16,56.15,7,1,1,0,0,1,4,5,1,459.5,770109.5,579695.38,135433.41,28325.717,20151.082,677.25287,3949.2446 +9248,11243,20096,20095,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.0286388,8.5549717,0,9,-7,-170.09752,0,3,3,2021,6,0,59,59,1,0,0,16.394396,16.394396,.05,.05,0,0,0,0,0,0,0,0,0,1.2806596,0,57.16,56.15,49,48,8.333333333333334,1,1,0,0,11,4,5,1,459.5,770109.5,579695.38,135433.41,28325.717,20151.082,677.25287,3949.2446 +9249,11244,20097,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5424109,8.4573069,0,0,0,-1090.9147,0,2,-9,2021,6,0,47,87,1,0,0,17.997696,17.997696,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,6,8,5,1,1062,849656.75,526765.44,155730.22,40400.027,3468.4373,2095.0256,2480.5105 +9250,11245,20098,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,7.2189369,6.6611481,0,0,0,-1027.1627,-9,-9,-9,2021,6,0,6,0,1,0,0,22.471283,22.471283,0,0,0,0,0,0,0,0,0,0,0,2.3771138,0,62.49,55.09,-9,-9,10,4,6,0,0,14,13,2,1,270,-67349.742,0,150565.7,32003.832,0,0,-124.45624 +9250,11246,20099,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,6.8309622,6.9830842,0,0,0,-970.60382,0,3,3,2021,7,2,70,70,1,2,0,1.7556506,1.7556506,0,0,0,0,0,0,0,0,0,0,0,0,0,43.05,57.29,-9,-9,10,1,1,0,0,13,13,2,1,283,334757.22,130567.02,0,0,0,0,722.08582 +9251,11247,20100,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1041.595,-9,1,1,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,413,131211.5,0,0,0,0,0,175.93832 +9252,11248,20101,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,9.0700464,9.6000109,5.8423758,0,0,-1205.8031,0,2,2,2021,10,0,70,65,1,0,0,18.877489,18.877489,0,0,0,0,0,0,4.0287304,0,1,1,0,7.5513387,6.3057089,59.3,39.29,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,889,184725.61,-21045.574,0,0,1534.5416,1762.8408,3820.916 +9253,11249,20102,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.9425511,7.8550358,0,0,0,-1073.516,0,3,3,2021,11,0,37,39,1,0,0,9.5163507,9.5163507,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,5,1,1,0,0,11,7,4,0,3148,-23706.285,0,0,0,0,0,602.87183 +9254,11250,20103,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.6400466,5.8720474,0,0,-782.33063,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5807967,47.91,28.34,-9,-9,6.666666666666667,1,1,0,1,0,6,2,1,1097,-118343.87,244479.86,0,0,0,0,288.37308 +9255,11251,20104,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1008.6153,0,-9,-9,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,30.860929,0,0,1,1,0,1.2440624,0,56.19,5.98,-9,-9,10,1,1,0,0,0,5,1,0,1227,37408.293,0,12153.391,0,521.71332,0,1902.4869 +9256,11252,20105,20106,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.4559569,7.4753032,0,1,-1,95.557716,-9,3,2,2021,16,6,36,0,1,6,0,6.8517523,6.8517523,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.24,47.55,52.44,51.54,5,3,4,0,1,5,6,2,0,637,-145852.31,94140.789,0,0,0,0,1654.4048 +9256,11252,20106,20105,-9,-9,1,0,31,0,0,0,2,2,-9,0,5,0,0,0,1,1,-79.21225,-9,-9,-9,2021,17,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.44,51.54,43.24,47.55,3.333333333333333,3,4,0,0,0,6,2,0,637,-145852.31,94140.789,0,0,0,0,1654.4048 +9257,11253,20107,-9,-9,-9,1,1,58,0,1,0,2,2,-9,0,1,0,7.3875203,7.019691,0,0,-1068.0201,0,2,-9,2021,36,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,7.497211,18.01,25.88,-9,-9,0,1,1,0,0,8,12,2,0,649,352994.47,164274.88,0,0,20241.135,0,2956.6565 +9258,11254,20108,20109,-9,-9,1,0,54,1,1,0,3,3,-9,0,4,0,0,0,6,-18,0,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,53,57.16,56.15,8,2,3,0,0,0,9,1,1,1548,53022.504,0,0,0,0,0,1344.7299 +9258,11254,20109,20108,-9,-9,1,1,72,1,1,0,3,3,-9,0,4,0,0,0,6,18,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,53,8.333333333333334,2,3,0,0,0,9,1,1,1548,53022.504,0,0,0,0,0,1344.7299 +9258,11255,20110,-9,20108,20109,1,0,24,1,1,0,1,1,-9,0,4,8.1745186,7.9821177,0,0,0,-948.90186,0,3,3,2021,10,0,35,35,1,0,1,10.733086,10.733086,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,-9,-9,8.333333333333334,2,3,0,0,4,9,4,1,1064,-193163.17,0,0,0,0,0,1566.2977 +9258,11256,20111,-9,20108,20109,1,0,21,1,1,1,2,0,0,0,5,0,0,0,0,0,-1096.9832,-9,3,3,2021,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,2,3,0,0,0,9,2,1,1427,-183505.45,0,0,0,0,0,0 +9258,11257,20112,-9,20108,20109,1,0,18,1,1,1,2,0,0,0,5,0,0,0,0,0,-1016.4341,-9,3,3,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,828,-57386.059,0,0,0,0,0,0 +9258,11258,20113,20115,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.0914898,8.1972675,0,4,1,145.98888,0,-9,-9,2021,0,0,70,45,1,0,0,5.7035913,5.7035913,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,46.75,56.99,8.333333333333334,2,3,0,0,3,9,4,1,1016.6667,30364.875,50551.023,182120.98,168977.03,17982.471,0,3524.7305 +9258,11258,20114,-9,20115,20113,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-944.21704,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,4,1,1016.6667,30364.875,50551.023,182120.98,168977.03,17982.471,0,3524.7305 +9258,11258,20115,20113,20108,20109,1,0,26,1,1,0,1,1,-9,0,4,8.0066204,7.7604275,0,4,-1,-20.316099,0,3,3,2021,12,0,38,38,1,0,0,10.722179,10.722179,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.75,56.99,54.2,57.49,1.666666666666667,2,3,0,0,1,9,4,1,1016.6667,30364.875,50551.023,182120.98,168977.03,17982.471,0,3524.7305 +9259,11259,20116,20117,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,7.4249744,7.5905933,46,-8,-132.47993,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5481,7.670927,54.27,53.56,59,53,8.333333333333334,1,1,0,0,4,10,3,0,846,1156435.4,488068.19,530383.31,0,0,0,1766.9075 +9259,11259,20117,20116,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,6.4337792,6.441267,46,8,-26.168655,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1002359,6.9115725,59,53,54.27,53.56,9,1,1,0,0,10,10,3,0,846,1156435.4,488068.19,530383.31,0,0,0,1766.9075 +9260,11260,20118,20119,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.8546543,8.8046694,0,2,6,19.527626,0,3,3,2021,10,0,36,37,1,0,0,19.748444,19.748444,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.43,55.57,8.333333333333334,1,1,0,0,9,13,5,1,195,291384.31,104341.18,133500.67,35291.211,4745.1465,0,3689.209 +9260,11260,20119,20118,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2707376,8.2498579,0,2,-6,9.3448858,-9,-9,-9,2021,9,0,42,0,1,0,0,9.496254,9.496254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.43,55.57,57.06,57.76,8.333333333333334,1,1,0,0,2,13,5,1,195,291384.31,104341.18,133500.67,35291.211,4745.1465,0,3689.209 +9261,11261,20120,-9,20121,20123,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.3149,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9261,11261,20121,20123,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,0,0,0,12,1,-28.943995,0,1,1,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.15366186,0,54.96,53.17,54.37,54.8,6.666666666666667,1,1,0,0,6,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9261,11261,20122,-9,20121,20123,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.048,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9261,11261,20123,20121,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,9.164299,9.1655025,0,12,-1,30.802382,0,2,1,2021,10,0,42,43,1,0,0,20.20635,20.20635,.05,.05,0,0,0,0,0,0,1,1,0,1.304933,0,54.37,54.8,54.96,53.17,6.666666666666667,1,1,0,0,10,9,4,1,470,26416.318,65991,0,0,5196.3862,0,3019.1765 +9262,11262,20124,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1014.284,0,-9,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,30.77,26.8,-9,-9,0,1,1,0,0,0,12,1,0,926,106723.9,0,0,0,0,0,1946.7098 +9263,11263,20125,20126,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,0,0,23,6,-73.042496,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,.05,1,0,2.1401861,0,0,1,1,0,0,0,62.73,16.34,59.88,45.34,10,1,1,0,0,4,7,4,1,1558.5,708867.5,114381.16,434941.41,0,0,0,3108.4868 +9263,11263,20126,20125,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.6817741,8.5067663,5.2653155,23,-6,59.558079,0,1,1,2021,9,0,55,50,1,0,0,12.022068,12.022068,0,0,0,0,0,0,0,7,1,1,0,0,5.4953384,59.88,45.34,62.73,16.34,10,1,1,0,0,10,7,4,1,1558.5,708867.5,114381.16,434941.41,0,0,0,3108.4868 +9264,11264,20127,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.4467421,8.7465696,0,0,0,-1048.6232,0,1,1,2021,6,0,90,55,1,0,0,8.8598938,8.8598938,.05,.05,0,0,0,0,0,0,0,0,0,6.1310568,0,66.06,38.34,-9,-9,6.666666666666667,1,1,0,0,6,7,5,0,3524,-74105.867,-74353.773,0,0,0,0,2926.8096 +9265,11265,20128,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,1,0,5.0206075,5.142487,0,0,-1048.0514,0,-9,-9,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,6.5171275,0,0,1,1,0,.2351127,5.340414,34.71,18.35,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,501,116821.59,0,0,0,0,0,1042.7705 +9266,11266,20129,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1050.5946,-9,2,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,1,0,0,1,1,0,1074,77284.625,0,0,0,0,0,1089.2961 +9266,11267,20130,-9,-9,20129,1,1,31,0,0,0,1,1,-9,0,4,0,0,0,0,0,-961.46338,0,1,2,2021,6,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,0,1,1,1,0,3,1,1,0,302,-54746.539,0,0,0,0,0,162.21829 +9267,11268,20131,20133,-9,-9,1,1,41,1,3,0,2,2,-9,0,5,7.8543463,7.8119025,0,3,3,-84.477425,-9,-9,-9,2021,6,0,40,0,1,0,0,7.0274639,7.0274639,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,45.43,52.23,8.333333333333334,1,1,0,0,7,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9267,11268,20132,-9,20133,20131,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.0978,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9267,11268,20133,20131,-9,-9,1,0,38,1,3,0,2,2,-9,0,4,7.0789022,7.1289248,0,3,-3,2.1868062,-9,2,2,2021,9,0,19,0,1,0,0,8.3782854,8.3782854,0,0,0,0,0,0,0,0,1,0,1,0,0,45.43,52.23,60.02,56.42,5,1,1,0,1,9,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9267,11268,20134,-9,20133,20131,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.02118,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,1,3,0,900.75,164760.86,11925.853,278229.5,57722.289,0,-98.217079,2404.29 +9268,11269,20135,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.6279078,7.9138775,6.5865865,0,0,-914.42114,0,2,2,2021,12,3,35,25,1,3,0,6.8983903,6.8983903,0,0,0,0,0,0,0,0,1,1,0,6.597023,0,46.79,40.85,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,168,99079.305,0,0,0,0,0,3121.6174 +9269,11270,20136,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.0969639,6.8554063,0,0,0,-1069.793,0,-9,-9,2021,8,1,16,16,1,1,0,7.3707204,7.3707204,0,0,0,0,0,0,0,0,1,1,0,0,0,56.9,49.4,-9,-9,8.333333333333334,1,1,0,0,4,4,2,0,714,-217788.64,0,0,0,0,0,1238.2351 +9270,11271,20137,20139,-9,-9,1,1,57,2,1,0,2,2,-9,0,3,8.2785444,8.412447,0,28,8,64.034973,0,2,3,2021,11,0,30,16,1,0,0,13.981568,13.981568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.7,54.28,32.58,46.39,6.666666666666667,1,1,0,0,14,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11271,20138,-9,-9,20137,1,1,0,2,1,1,3,0,-9,0,4,0,0,0,0,0,-946.94562,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,4,6,-9,0,0,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11271,20139,20137,-9,-9,1,0,49,2,1,0,1,1,-9,0,2,8.6564322,8.7159595,0,26,-8,-57.62154,0,2,2,2021,22,8,98,98,1,8,0,5.4363928,5.4363928,.05,.05,0,0,0,0,0,28,1,1,0,0,0,32.58,46.39,37.7,54.28,1.666666666666667,1,1,0,0,11,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11271,20140,-9,20139,20137,1,0,15,2,1,1,3,0,-9,0,3,0,0,0,0,0,-1023.6809,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,4,1,981.25,237750.69,187889.63,0,0,0,0,7913.8037 +9270,11272,20141,-9,20139,20137,1,1,21,2,1,0,2,2,0,0,2,0,0,0,0,0,-957.46881,-9,1,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3047061,0,29.35,55.99,-9,-9,3.333333333333333,1,1,0,0,4,2,2,1,650.25,0,0,0,0,0,0,618.375 +9270,11272,20142,-9,-9,20141,1,1,13,2,1,1,3,0,-9,0,3,0,0,0,0,0,-961.51361,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,2,1,650.25,0,0,0,0,0,0,618.375 +9270,11272,20143,-9,-9,20141,1,1,12,2,1,1,3,0,-9,0,4,0,0,0,0,0,-988.18048,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,650.25,0,0,0,0,0,0,618.375 +9270,11272,20144,-9,-9,20141,1,0,1,2,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.6093,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,2,2,1,650.25,0,0,0,0,0,0,618.375 +9271,11273,20145,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.2536864,7.5857973,0,0,0,-1030.3572,0,-9,2,2021,8,1,38,38,1,1,0,4.2847881,4.2847881,0,0,0,0,0,0,0,0,0,0,0,5.0453939,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,2,3,0,965,-170878.78,185381.84,0,0,0,-374.52274,67.776344 +9272,11274,20146,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1360788,7.6796689,0,0,0,-1088.8387,0,-9,-9,2021,12,0,55,42,1,0,0,5.3503504,5.3503504,.05,.05,0,0,0,0,0,42,1,1,0,0,0,44.53,56.37,-9,-9,6.666666666666667,1,1,0,0,10,7,4,0,742,116438.05,114891.41,0,0,0,0,907.36151 +9272,11275,20147,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-968.31799,-9,-9,-9,2021,18,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.41,24.28,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,575,-51716.355,0,0,0,0,0,2133.5498 +9273,11276,20148,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.0900841,8.2676449,0,0,0,-1032.7916,0,2,-9,2021,7,0,50,53,1,0,0,5.9316421,5.9316421,0,0,0,0,0,0,0,0,0,0,0,7.5388665,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,2,4,0,1028,138854.28,-71971.055,110842.16,161563.81,0,0,2117.3552 +9274,11277,20149,20150,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,8.8415432,9.0865202,7.3608561,51,5,169.72046,0,3,2,2021,9,0,40,20,1,0,0,16.677769,16.677769,0,0,0,0,0,0,0,0,1,1,0,7.3605423,7.2611532,57.16,56.15,51.81,57.22,8.333333333333334,1,1,0,0,13,1,5,1,1112.5,746679.81,130102.52,143189.41,0,1242.282,0,6725.7295 +9274,11277,20150,20149,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,7.8219023,7.7298422,0,49,-5,33.262691,0,3,3,2021,7,0,17,17,1,0,0,19.920912,19.920912,0,0,0,0,0,0,0,0,1,1,0,7.1286745,0,51.81,57.22,57.16,56.15,8.333333333333334,1,1,0,0,13,1,5,1,1112.5,746679.81,130102.52,143189.41,0,1242.282,0,6725.7295 +9275,11278,20151,20152,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.0968513,8.2239914,0,1,-1,-28.55275,-9,-9,-9,2021,11,1,60,0,1,1,0,7.7521191,7.7521191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,32.85,56.43,6.666666666666667,1,1,0,0,0,2,4,1,537,44505.719,-1879.8547,0,0,5133.3062,0,2145.6357 +9275,11278,20152,20151,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,7.8105578,7.9052725,0,1,1,-4.3359218,-9,-9,-9,2021,9,1,40,0,1,1,0,7.4544148,7.4544148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.85,56.43,48.45,57.49,5,1,1,0,0,7,2,4,1,537,44505.719,-1879.8547,0,0,5133.3062,0,2145.6357 +9276,11279,20153,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1000.6909,0,-9,-9,2021,23,9,0,0,4,9,0,0,0,0,0,0,0,3.6810849,2.9173152,22.891518,0,1,1,0,0,0,27.26,38.11,-9,-9,5,1,1,0,0,0,9,1,0,84,65004.004,0,0,0,0,0,1050.1141 +9277,11280,20154,20155,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.0112557,6.8388052,0,9,0,59.259655,0,2,2,2021,13,2,45,45,1,2,0,2.6427655,2.6427655,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.94,54.05,53.19,51.24,8.333333333333334,1,1,0,0,10,13,4,1,616,98811.43,16452.43,100226.55,37552.078,0,0,2000.8442 +9277,11280,20155,20154,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2709637,8.3060808,0,9,0,7.5717607,0,1,2,2021,6,0,60,45,1,0,0,6.7162914,6.7162914,.05,.05,0,0,0,0,0,0,0,0,0,5.1006455,0,53.19,51.24,43.94,54.05,8.333333333333334,1,1,0,0,10,13,4,1,616,98811.43,16452.43,100226.55,37552.078,0,0,2000.8442 +9277,11281,20156,-9,20154,20155,1,0,23,0,1,0,1,1,-9,0,3,7.903378,8.0022421,0,0,0,-1034.439,0,2,2,2021,6,0,32,26,1,0,1,5.6146336,5.6146336,0,0,0,0,0,0,0,0,0,0,0,0,0,53.63,51.24,-9,-9,8.333333333333334,1,1,0,0,2,13,3,1,3114,-82877.211,0,0,0,0,0,595.70886 +9277,11282,20157,-9,20154,20155,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1110.2754,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,10,1,1,0,0,0,13,1,1,312,-10845.957,0,0,0,0,0,0 +9278,11283,20158,20159,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.6814127,6.4569073,60,-2,42.580826,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.6386828,61.64,16.18,40.14,16.93,6.666666666666667,1,1,0,0,0,12,2,0,910,238738.06,24826.791,169545.66,0,0,0,2254.6128 +9278,11283,20159,20158,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.3917646,4.2023029,60,2,-24.260464,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,29.099434,0,0,1,1,0,4.11725,3.8877089,40.14,16.93,61.64,16.18,5,1,1,0,0,0,12,2,0,910,238738.06,24826.791,169545.66,0,0,0,2254.6128 +9279,11284,20160,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-992.8974,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,1,0,1,1,0,734,185423.91,0,0,0,0,0,921.02881 +9280,11285,20161,20162,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.6473303,7.4579659,0,6,-8,48.210903,0,3,-9,2021,7,0,23,25,1,0,0,9.7536449,9.7536449,0,0,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,55.19,54.26,8.333333333333334,1,1,0,0,10,12,4,1,1008,505439.06,247188.05,100297.78,56014.125,0,0,2239.3115 +9280,11285,20162,20161,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1118145,8.4430351,6.5851059,6,8,83.52034,0,-9,-9,2021,9,0,37,41,1,0,0,9.1876631,9.1876631,.05,.05,0,0,0,0,0,0,0,0,0,0,7.1645598,55.19,54.26,56.33,51.02,10,1,1,0,0,7,12,4,1,1008,505439.06,247188.05,100297.78,56014.125,0,0,2239.3115 +9281,11286,20163,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.0214968,7.9431229,0,0,0,-905.51373,0,1,3,2021,12,0,15,-9,1,0,0,27.185295,27.185295,0,0,0,0,0,0,0,0,0,0,0,5.3137875,0,45.73,57.57,-9,-9,5,1,1,0,0,10,9,4,1,175,66328.406,170132.88,0,0,0,12270.765,1815.7455 +9282,11287,20164,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1114.871,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,10.583929,0,0,1,1,0,0,0,51.06,25.63,-9,-9,3.333333333333333,1,1,0,0,0,8,1,0,285,274427.19,0,229939.5,0,0,0,2194.7214 +9283,11288,20165,20166,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,7.9325018,8.0737591,0,10,-3,30.282551,0,2,1,2021,8,0,38,37,1,0,0,8.0206451,8.0206451,.05,.05,0,0,0,0,0,0,0,0,0,1.7049279,0,52.23,55.6,51.83,57.2,8.333333333333334,1,1,0,0,11,10,4,1,664,1727049,709277.13,613555.81,0,0,0,2054.6477 +9283,11288,20166,20165,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,7.7648964,7.7451205,0,10,3,90.687225,0,2,1,2021,12,0,36,0,1,0,0,7.1819921,7.1819921,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,52.23,55.6,8.333333333333334,1,1,0,0,11,10,4,1,664,1727049,709277.13,613555.81,0,0,0,2054.6477 +9284,11289,20167,20168,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,10,0,56.473209,0,3,3,2021,27,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.89,27.8,60.27,25.33,5,1,1,0,0,0,11,2,0,694.5,291954.63,50190.117,121098.73,0,0,0,3046.2847 +9284,11289,20168,20167,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.4763932,6.2656059,10,9,-95.42038,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,4.2819009,0,42,1,1,0,0,6.5086675,60.27,25.33,28.89,27.8,6.666666666666667,1,1,0,0,0,11,2,0,694.5,291954.63,50190.117,121098.73,0,0,0,3046.2847 +9285,11290,20169,-9,20171,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.5479,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,457.33334,41383.441,-23152.934,152068.61,99169.383,5812.9082,0,2463.2598 +9285,11290,20170,-9,20171,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.9429,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,457.33334,41383.441,-23152.934,152068.61,99169.383,5812.9082,0,2463.2598 +9285,11290,20171,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.0216689,7.7051964,6.7801337,0,0,-1020.3403,0,2,2,2021,13,1,20,20,1,1,0,6.923471,6.923471,.05,.05,0,0,0,0,0,42,1,1,0,6.9018912,0,25.61,62.71,-9,-9,5,1,1,0,0,8,6,3,1,457.33334,41383.441,-23152.934,152068.61,99169.383,5812.9082,0,2463.2598 +9286,11291,20172,-9,20175,-9,1,0,26,0,1,0,2,2,-9,0,5,8.2062063,8.1639023,0,0,0,-951.65027,0,3,3,2021,8,1,40,45,1,1,1,9.2048025,9.2048025,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,6.666666666666667,4,5,0,0,4,8,4,0,603,-100036.64,0,0,0,-45.595665,0,1742.0313 +9286,11292,20173,20175,-9,-9,1,1,61,0,1,0,3,3,-9,0,3,7.2924776,7.289629,0,7,12,172.03793,0,-9,-9,2021,10,0,25,20,1,1,0,6.110188,6.110188,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,50,54,7,1,1,0,0,7,8,2,0,966.66669,1703648.5,619171.13,407663.81,0,0,0,1427.7128 +9286,11292,20174,-9,20175,20173,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1152.7809,-9,3,3,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,1,0,8,2,0,966.66669,1703648.5,619171.13,407663.81,0,0,0,1427.7128 +9286,11292,20175,20173,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,7,-12,32.912464,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,51,48,8,4,5,0,0,0,8,2,0,966.66669,1703648.5,619171.13,407663.81,0,0,0,1427.7128 +9287,11293,20176,20177,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,6.8363934,7.1984954,45,2,-29.029501,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6998787,6.9853387,40.75,54.3,47.95,56.13,8.333333333333334,1,1,0,0,2,9,3,1,351.5,1630616,855231.5,582451.75,0,0,0,2574.5752 +9287,11293,20177,20176,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.292387,7.3072467,45,-2,-42.423641,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7927203,7.1220818,47.95,56.13,40.75,54.3,6.666666666666667,1,1,0,0,0,9,3,1,351.5,1630616,855231.5,582451.75,0,0,0,2574.5752 +9288,11294,20178,20179,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,7.8205371,7.9049821,61,2,-1.3178536,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.2378664,8.2047148,59.07,40.19,59.04,45.74,8.333333333333334,1,1,0,0,0,12,4,1,1288.5,1109827.9,587168.88,290020.09,0,-109.52059,0,2829.9778 +9288,11294,20179,20178,-9,-9,1,0,82,0,0,0,1,1,-9,0,4,0,7.4098277,7.2171125,61,-2,-39.318798,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5849214,7.3440638,59.04,45.74,59.07,40.19,8.333333333333334,1,1,0,0,0,12,4,1,1288.5,1109827.9,587168.88,290020.09,0,-109.52059,0,2829.9778 +9289,11295,20180,-9,20181,20182,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.39282,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,754.33331,824461.94,406757.81,280364.38,140219.25,0,0,10062.084 +9289,11295,20181,20182,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,8.9003744,8.9456749,0,5,0,28.053217,0,-9,-9,2021,10,1,43,43,1,1,0,21.377771,21.377771,0,0,0,0,0,0,0,0,1,1,0,8.2477798,0,64.16,27,46.08,57.2,8.333333333333334,1,1,0,0,6,9,5,1,754.33331,824461.94,406757.81,280364.38,140219.25,0,0,10062.084 +9289,11295,20182,20181,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.5001993,8.5071859,0,5,0,-82.707527,0,3,-9,2021,11,1,32,49,1,1,0,22.094034,22.094034,.05,.05,0,0,0,0,0,0,1,1,0,9.5320492,0,46.08,57.2,64.16,27,8.333333333333334,1,1,0,0,9,9,5,1,754.33331,824461.94,406757.81,280364.38,140219.25,0,0,10062.084 +9290,11296,20183,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.5127,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,25.458893,0,0,1,1,0,0,0,50.76,41.71,-9,-9,10,1,1,0,0,0,13,2,1,914,1633.2932,0,0,0,0,0,504.94299 +9291,11297,20184,20185,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,7.7584243,8.0509243,0,5,4,66.222839,0,-9,-9,2021,9,0,35,40,1,1,0,10.170527,10.170527,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51,56,43.84,58.37,8,2,3,0,0,1,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9291,11297,20185,20184,-9,-9,1,0,36,0,3,0,2,2,-9,0,3,7.3005033,7.2043347,0,16,-4,32.838833,0,-9,-9,2021,12,0,22,22,1,0,0,10.308931,10.308931,0,0,0,0,0,0,0,0,1,0,1,0,0,43.84,58.37,51,56,6.666666666666667,2,3,0,0,9,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9291,11297,20186,-9,20185,20184,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.03046,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9291,11297,20187,-9,20185,20184,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.2948,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,1,3,1,545.75,118957.88,82200.219,77845.953,23969.898,1674.9491,0,2875.947 +9292,11298,20188,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.3043108,7.3941016,0,0,-950.27972,0,3,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3848433,7.5679021,42.05,58.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,319,634957.56,185552.59,330169,0,0,0,1669.8367 +9293,11299,20189,20190,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.8729935,5.7223592,66,-1,-54.777729,0,-9,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.9977851,0,14.5,1,1,0,2.6787822,5.3914108,52.1,34.81,65.22,38.75,8.333333333333334,1,1,0,0,0,9,2,1,1806.5,456501.44,20397.926,0,0,0,0,838.41779 +9293,11299,20190,20189,-9,-9,1,1,86,0,0,0,2,2,-9,0,4,0,6.3662825,6.2942152,66,1,-15.70233,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.6720352,6.29914,65.22,38.75,52.1,34.81,8.333333333333334,1,1,0,0,0,9,2,1,1806.5,456501.44,20397.926,0,0,0,0,838.41779 +9294,11300,20191,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.0563011,8.444211,0,0,0,-897.74902,0,3,3,2021,12,1,46,56,1,1,0,13.043504,13.043504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,472,-4644.6035,74081.555,0,0,0,0,2429.6975 +9295,11301,20192,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7944956,7.9262185,0,0,-1063.3406,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0791159,8.0269852,54.97,47.63,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,1679,1133300.6,450468.63,352812.16,0,0,0,1080.309 +9296,11302,20193,20194,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.761735,8.5935001,7.8444457,10,-3,24.633472,0,3,3,2021,7,0,17,18,1,0,0,24.202374,24.202374,.05,.05,0,0,0,0,0,14.5,0,0,0,5.5434656,7.399488,60.7,39.78,60.3,36.05,8.333333333333334,1,1,0,0,13,13,4,1,488,657487.31,409496.81,198698.39,-3603.7927,1310.0667,20299.289,2848.7144 +9296,11302,20194,20193,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.5376301,7.4086385,0,10,3,1.5904683,0,-9,-9,2021,8,0,40,30,1,0,0,4.5389113,4.5389113,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.3,36.05,60.7,39.78,8.333333333333334,1,1,0,0,13,13,4,1,488,657487.31,409496.81,198698.39,-3603.7927,1310.0667,20299.289,2848.7144 +9297,11303,20195,20196,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,8.8640089,8.6173792,0,1,1,75.693581,-9,3,3,2021,11,0,15,0,1,0,0,43.79015,43.79015,.05,.05,.05,0,0,0,0,42,1,1,0,0,0,59.46,46.99,60.12,54.8,1.666666666666667,1,1,0,0,4,4,5,0,1686,576254.5,434038.31,202927.94,137405.38,0,1243.8529,4784.4355 +9297,11303,20196,20195,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.1055527,7.9944205,0,1,-1,66.175903,-9,-9,-9,2021,6,0,48,0,1,0,0,8.5500669,8.5500669,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,60.12,54.8,59.46,46.99,8.333333333333334,1,1,0,0,7,4,5,0,1686,576254.5,434038.31,202927.94,137405.38,0,1243.8529,4784.4355 +9297,11304,20197,-9,20195,20196,1,0,22,0,0,0,2,2,-9,0,3,7.4581785,7.5377312,0,0,0,-948.36328,-9,3,2,2021,11,0,35,0,1,0,1,5.981338,5.981338,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,-9,-9,6.666666666666667,1,1,0,0,4,4,3,0,1042,-46712.949,-1581.4982,0,0,0,0,660.8371 +9298,11305,20198,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1021.4542,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.16,37.37,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,1190,238374.45,-173480.11,0,0,0,0,473.59222 +9298,11306,20199,-9,20198,-9,1,0,32,0,0,0,2,2,-9,0,4,8.2594233,8.2130775,0,0,0,-1004.3963,0,3,-9,2021,21,9,37,36,1,9,1,22.689564,22.689564,.05,.05,0,0,0,0,0,7,1,0,1,0,0,33.26,61.9,-9,-9,6.666666666666667,2,3,0,0,10,8,5,0,371,155956.58,-10900.979,0,0,0,0,1760.4188 +9298,11307,20200,-9,20198,-9,1,0,28,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1154.6752,0,3,3,2021,9,1,0,44,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.81,59.91,-9,-9,10,2,3,1,0,6,8,1,0,582,112419.74,0,0,0,0,0,0 +9298,11308,20201,-9,20198,-9,1,0,25,0,0,0,2,2,-9,0,3,7.6438141,7.7840924,0,0,0,-1076.7781,0,3,3,2021,13,0,28,28,1,3,1,7.7951565,7.7951565,0,0,0,0,0,0,0,0,1,0,1,0,0,41.69,48.36,-9,-9,6.666666666666667,2,3,0,1,5,8,3,0,347,67823.477,0,0,0,0,0,1820.9084 +9299,11309,20202,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,6.6468201,6.7342362,0,0,-1059.3746,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4357022,7.0284362,49.61,37.25,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,298,157682.14,69897.5,0,0,5194.6206,0,1496.0087 +9300,11310,20203,20206,-9,-9,1,1,38,0,3,0,3,3,-9,1,4,0,0,0,9,4,0,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.28,60.18,38.5,26.21,10,1,1,1,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20204,-9,20206,20203,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-974.28015,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20205,-9,20206,20203,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1087.8071,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20206,20203,-9,-9,1,0,34,0,3,0,2,2,-9,1,2,0,0,0,9,-4,0,0,-9,-9,2021,15,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,38.5,26.21,48.28,60.18,10,1,1,0,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9300,11310,20207,-9,20206,20203,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-933.43939,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,7,1,0,599.20001,527728.38,0,820134.13,305697.88,0,0,2696.7996 +9301,11311,20208,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1120.3743,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,1,151.85318,0,1335.8141,0,1,1,0,1.6754061,0,40,25,-9,-9,0,1,1,0,0,0,5,2,0,395,-232569.94,0,0,0,0,0,685.39172 +9302,11312,20209,20210,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,0,0,0,9,-5,0,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.49,48.71,29.36,51.92,5,1,1,1,0,1,12,1,1,1537.5,-67880.031,-22083.418,0,0,0,7300.7549,1281.8055 +9302,11312,20210,20209,-9,-9,1,1,50,0,0,0,3,3,-9,1,2,0,0,0,9,5,0,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.36,51.92,35.49,48.71,3.333333333333333,1,1,0,0,0,12,1,1,1537.5,-67880.031,-22083.418,0,0,0,7300.7549,1281.8055 +9303,11313,20211,20212,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.4852343,8.677227,0,27,6,-12.287425,0,-9,-9,2021,3,0,45,30,1,0,0,15.176378,15.176378,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,58.56,46.45,8.333333333333334,1,1,0,0,13,12,5,1,1478.5,760229.13,442967.78,624269.38,213941.72,0,1332.4033,2824.9189 +9303,11313,20212,20211,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,8.1639585,8.0863056,0,27,-6,-23.428225,0,3,3,2021,7,0,28,28,1,0,0,12.731413,12.731413,0,0,0,0,0,0,0,2,0,0,0,6.7032127,0,58.56,46.45,59.43,49.68,8.333333333333334,1,1,0,0,13,12,5,1,1478.5,760229.13,442967.78,624269.38,213941.72,0,1332.4033,2824.9189 +9303,11314,20213,-9,20212,20211,1,0,20,0,0,1,2,0,-9,0,3,0,0,0,0,0,-988.39453,-9,2,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,-9,-9,1.666666666666667,1,1,0,0,2,12,1,1,2754,-96615.148,0,0,0,0,0,0 +9304,11315,20214,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.1318769,8.1934195,0,3,0,6.3733826,0,2,2,2021,7,0,40,37,1,0,0,11.226021,11.226021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,0,0,3,9,3,0,1379,-138974.48,-46810.746,73099.266,79012.453,20790.549,0,1553.4996 +9304,11316,20215,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,3,0,-6.9218731,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,1,1,1,0,0,9,3,0,707,182433.34,-69494.133,0,0,0,0,-160.07507 +9305,11317,20216,20217,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,6.5036569,6.4390898,0,41,1,-38.968014,0,3,3,2021,0,0,60,50,1,0,0,1.103568,1.103568,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.16,56.15,0,1,1,0,0,12,2,3,1,1083,387451.13,238135.5,82731.484,0,0,0,482.83923 +9305,11317,20217,20216,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.2407122,7.4538803,0,10,-1,143.66621,0,-9,-9,2021,6,0,8,12,1,0,0,20.239517,20.239517,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,62.39,56.71,8.333333333333334,1,1,0,0,7,2,3,1,1083,387451.13,238135.5,82731.484,0,0,0,482.83923 +9306,11318,20218,20219,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,7.4139719,7.7709613,5.7771478,21,11,24.65617,0,3,2,2021,7,0,30,30,1,0,0,8.3206673,8.3206673,0,0,0,0,0,0,0,0,1,1,0,8.8010101,5.9166923,57.91,46.15,60.04,39.68,8.333333333333334,1,1,0,0,11,9,3,1,1227.5,1006107,167246.03,509375.22,0,0,0,3534.5852 +9306,11318,20219,20218,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,21,-11,53.882206,0,2,3,2021,9,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9745317,0,60.04,39.68,57.91,46.15,8.333333333333334,1,1,0,0,10,9,3,1,1227.5,1006107,167246.03,509375.22,0,0,0,3534.5852 +9306,11319,20220,-9,20219,20218,1,0,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-990.97601,-9,1,1,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4068937,0,56.33,51.02,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,259,-22198.98,0,0,0,0,0,1791.8054 +9307,11320,20221,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,1,0,6.6440487,7.0354733,0,0,-1022.1741,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,1.9820073,0,1,1,0,5.4420629,6.6519299,59.18,14.93,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1282,919333.56,48526.859,131046.37,0,0,0,1422.8326 +9308,11321,20222,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.4483237,7.5249867,0,0,0,-986.24719,0,2,3,2021,8,0,40,48,1,0,0,5.3624053,5.3624053,0,0,0,0,0,0,0,7,0,0,0,0,0,50.52,47.59,-9,-9,6.666666666666667,1,1,0,1,11,9,3,0,540,77370.461,0,241041.02,0,0,0,511.4028 +9308,11322,20223,-9,-9,20222,1,1,25,0,0,0,2,2,-9,0,3,7.8033566,7.7709565,0,0,0,-987.27417,0,3,2,2021,11,0,39,37,1,0,1,8.5278416,8.5278416,0,0,0,0,0,0,0,0,0,0,0,2.0184774,0,56.67,48.31,-9,-9,6.666666666666667,1,1,0,0,5,9,4,0,275,-132986.31,0,0,0,0,0,590.90405 +9309,11323,20224,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.6110711,7.6450925,0,0,0,-1039.8547,0,3,2,2021,7,1,33,0,1,1,0,7.2072873,7.2072873,0,0,0,0,0,0,0,0,1,1,0,0,0,51.47,53.82,-9,-9,0,1,1,0,0,2,8,3,0,238,36606.605,0,0,0,5887.3696,0,2933.0037 +9309,11324,20225,-9,20224,-9,1,1,22,0,0,0,2,2,-9,0,5,7.9351797,8.2808943,0,0,0,-1087.5439,0,3,-9,2021,0,0,35,41,1,0,0,10.400899,10.400899,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,5,8,3,0,629,157260.09,0,0,0,0,0,888.71869 +9310,11325,20226,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.1349316,7.9721451,0,0,0,-1071.2455,0,2,3,2021,11,0,35,35,1,1,0,8.8620338,8.8620338,0,0,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,222,15628.93,0,0,0,0,0,1465.5162 +9311,11326,20227,20228,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,9.1551161,9.288147,7.6702123,5,22,-12.387097,0,-9,-9,2021,10,0,20,20,1,1,0,53.864822,53.864822,0,0,0,0,0,0,0,0,1,1,0,7.1698966,7.8706236,53,46,57.06,57.76,7,1,1,0,0,1,9,5,1,1047.5,1334821.5,0,486195.91,0,0,0,6872.6743 +9311,11326,20228,20227,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,7.9906416,7.9311056,0,26,-22,-87.8936,0,3,3,2021,8,0,20,0,1,0,0,19.864355,19.864355,0,0,0,0,0,0,0,0,1,1,0,4.4800882,0,57.06,57.76,53,46,10,1,1,0,0,1,9,5,1,1047.5,1334821.5,0,486195.91,0,0,0,6872.6743 +9312,11327,20229,20230,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.2894073,6.0955439,36,8,-72.237968,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.2709112,6.3930249,59.29,49.68,36.77,14.57,8.333333333333334,1,1,0,0,0,4,2,1,1172,415134.66,116498.12,308441.78,0,0,0,1342.3196 +9312,11327,20230,20229,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,36,-8,-43.819897,0,2,2,2021,27,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.77,14.57,59.29,49.68,6.666666666666667,1,1,0,0,0,4,2,1,1172,415134.66,116498.12,308441.78,0,0,0,1342.3196 +9313,11328,20231,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.37779,6.8216147,0,0,-953.10022,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8258238,6.7618752,62.49,55.09,-9,-9,10,1,1,0,0,0,12,2,1,819,335383.81,1159.1356,249721.53,0,0,0,238.2245 +9314,11329,20232,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-998.46893,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.71,54.32,-9,-9,6.666666666666667,1,1,0,0,1,5,1,1,556,0,0,0,0,0,0,431.40927 +9315,11330,20233,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,2,0,0,0,0,0,-922.24347,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.2,37.56,-9,-9,5,1,1,0,0,0,12,1,0,466,-39125.223,25813.994,74617.766,0,0,0,1562.7589 +9316,11331,20234,-9,20235,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.5838,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,1253,-158763.98,0,0,0,0,0,912.11145 +9316,11331,20235,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,5,5.8464656,5.987011,0,0,0,-978.00305,0,2,-9,2021,16,4,28,0,1,4,0,1.7308115,1.7308115,0,0,0,0,0,0,0,0,1,1,0,0,0,35.03,66.34999999999999,-9,-9,5,1,1,0,1,1,11,2,0,1253,-158763.98,0,0,0,0,0,912.11145 +9316,11331,20236,-9,20235,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.5714,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1253,-158763.98,0,0,0,0,0,912.11145 +9317,11332,20237,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-858.6275,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,0,13,1,0,558,179859.44,0,0,0,0,644.17834,2038.647 +9318,11333,20238,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,8.6717043,8.4840565,0,0,-992.20544,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.425108,8.597991,47.1,21.74,-9,-9,8.333333333333334,1,1,0,0,6,6,5,1,1821,2062579.9,1533965.5,111131.85,0,0,0,3016.4958 +9319,11334,20239,20240,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.6480374,7.8195596,36,5,140.89296,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8831062,7.3491178,47.05,37.79,66.14,26.06,6.666666666666667,1,1,0,0,0,9,4,1,592.5,1987937,1057082.5,626451.63,0,0,0,2060.7783 +9319,11334,20240,20239,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.7468119,7.7721601,2.7698364,36,-5,-24.579317,0,2,2,2021,7,0,26,31,1,0,0,10.486504,10.486504,0,0,0,0,0,0,0,2,0,0,0,2.2679,2.5150094,66.14,26.06,47.05,37.79,8.333333333333334,1,1,0,0,11,9,4,1,592.5,1987937,1057082.5,626451.63,0,0,0,2060.7783 +9319,11335,20241,-9,20240,20239,1,1,31,0,0,0,2,2,-9,0,3,7.8922296,7.6652164,0,0,0,-1117.561,0,2,1,2021,8,0,41,40,1,0,1,10.408366,10.408366,.05,.05,0,0,0,0,0,0,0,0,0,1.8582869,0,55.22,46.37,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,1358,1642.2937,-42357.863,0,0,0,0,2143.2217 +9320,11336,20242,20243,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,7.4301963,7.4149346,0,9,-2,-45.092182,0,-9,-9,2021,15,3,24,25,1,3,0,10.192021,10.192021,.05,.05,0,0,0,0,0,0,1,1,0,.32355157,0,36.87,58.96,59.43,58.05,8.333333333333334,1,1,0,0,11,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9320,11336,20243,20242,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.9128428,8.9837456,0,9,2,99.339233,0,-9,-9,2021,6,0,37,40,1,0,0,21.17408,21.17408,.05,.05,0,0,0,0,0,0,1,1,0,.45653591,0,59.43,58.05,36.87,58.96,1.666666666666667,1,1,0,0,10,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9320,11336,20244,-9,20242,20243,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1046.6448,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9320,11336,20245,-9,20242,20243,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.05762,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,526.5,329841.41,158863.17,238001.31,104853.77,0,0,3788.6799 +9321,11337,20246,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,4.6524258,4.7710738,0,0,-894.29797,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8929954,34.42,33.26,-9,-9,1.666666666666667,1,1,0,0,0,4,2,0,1020,215080.66,96834.438,0,0,0,0,352.11081 +9322,11338,20247,-9,20251,20248,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.40051,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20248,20251,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6640739,8.7555475,0,8,-2,-96.374893,0,2,-9,2021,14,2,42,46,1,2,0,16.332962,16.332962,.05,.05,0,0,0,0,0,0,1,1,0,2.2981386,0,51.49,53.31,57.59,46.65,8.333333333333334,1,1,0,0,11,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20249,-9,20251,20248,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1032.817,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20250,-9,20251,20248,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1052.1686,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.25,45.63,-9,-9,10,1,1,0,0,0,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9322,11338,20251,20248,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,8.2790413,8.3633013,0,8,2,-.54870409,0,2,3,2021,5,0,33,5,1,0,0,15.933982,15.933982,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.59,46.65,51.49,53.31,8.333333333333334,1,1,0,0,4,2,5,1,1020.8,209408.8,133981.61,202917.63,119895.98,-858.70551,4249.7456,4195.8403 +9323,11339,20252,20254,-9,-9,1,1,42,0,1,0,2,2,-9,0,4,6.7759318,6.9799385,0,8,6,13.106644,0,3,2,2021,9,2,18,15,1,2,0,7.323215,7.323215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.45,43.78,56.64,39.81,6.666666666666667,1,1,0,0,11,9,2,0,741.66669,135056.02,-16190.392,0,0,0,58.769947,1267.2179 +9323,11339,20253,-9,20254,20252,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-975.66718,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,741.66669,135056.02,-16190.392,0,0,0,58.769947,1267.2179 +9323,11339,20254,20252,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,0,0,0,8,-6,128.63582,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.64,39.81,51.45,43.78,6.666666666666667,1,1,0,0,9,9,2,0,741.66669,135056.02,-16190.392,0,0,0,58.769947,1267.2179 +9324,11340,20255,20256,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.6997967,7.8399277,54,1,84.286232,0,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8384109,54,46,40,23,8,1,1,0,0,0,7,3,1,752.5,791413.63,143876.06,445279.06,0,0,0,2187.0356 +9324,11340,20256,20255,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,54,-1,40.82806,0,2,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5320992,0,40,23,54,46,3.333333333333333,1,1,0,0,0,7,3,1,752.5,791413.63,143876.06,445279.06,0,0,0,2187.0356 +9325,11341,20257,20258,-9,-9,1,0,46,1,2,0,2,2,-9,0,3,6.6705475,6.5562944,0,6,5,-45.241436,0,-9,2,2021,14,3,11,11,1,3,0,7.9821424,7.9821424,0,0,0,0,0,0,0,2,1,1,0,6.1704669,0,43.71,56.91,52,54.51,8.333333333333334,1,1,0,0,5,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9325,11341,20258,20257,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,8.9091654,8.821249,0,6,-5,-71.145821,0,2,2,2021,8,0,53,47,1,0,0,15.488569,15.488569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,43.71,56.91,8.333333333333334,1,1,0,0,13,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9325,11341,20259,-9,20257,20258,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.11908,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9325,11341,20260,-9,20257,20258,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.63055,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,805.25,402731.22,53474.789,443830.19,202868.28,0,3719.8523,3730.0396 +9326,11342,20261,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,2,8.4183254,8.4921255,0,0,0,-1035.8002,0,1,3,2021,14,2,83,43,1,2,0,6.7586746,6.7586746,.05,.05,0,0,0,0,0,7,1,1,0,0,0,41.23,53.22,-9,-9,3.333333333333333,1,1,0,0,12,13,4,1,1726,46822.988,-335.11133,0,0,0,2528.2432,2081.4399 +9326,11342,20262,-9,20261,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-915.45404,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1726,46822.988,-335.11133,0,0,0,2528.2432,2081.4399 +9327,11343,20263,-9,-9,-9,1,0,46,1,2,0,2,2,0,0,2,0,0,0,0,0,-959.11017,-9,2,-9,2021,34,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,30.02,32.44,-9,-9,1.666666666666667,3,4,0,1,2,8,1,0,4035,0,0,0,0,0,0,-239.84752 +9327,11344,20264,-9,20263,-9,1,1,22,1,2,0,2,2,-9,0,5,9.0175505,8.3312712,0,0,0,-963.04156,0,2,-9,2021,4,1,90,50,1,1,1,6.601985,6.601985,0,0,0,0,0,0,0,0,1,0,1,2.47577,0,63.38,53.47,-9,-9,10,3,4,0,0,2,8,5,0,294,222713.95,0,283333.91,121185.64,0,0,2836.2002 +9327,11345,20265,-9,20263,-9,1,1,18,1,2,1,2,0,0,0,5,0,0,0,0,0,-885.09204,-9,2,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,31.06,49.22,-9,-9,5,3,4,0,0,0,8,1,0,63,-77031.555,0,0,0,0,0,0 +9327,11346,20266,-9,20268,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-850.33136,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,969.33331,0,0,0,0,0,0,1247.198 +9327,11346,20267,-9,20268,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.5333,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,969.33331,0,0,0,0,0,0,1247.198 +9327,11346,20268,-9,20263,-9,1,0,27,1,2,0,2,2,-9,0,5,0,0,0,0,0,-760.79114,-9,2,-9,2021,3,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.43,58.05,-9,-9,10,3,4,1,0,0,8,1,0,969.33331,0,0,0,0,0,0,1247.198 +9328,11347,20269,-9,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1004.5159,-9,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,1,1,0,6,1,0,522,0,0,0,0,0,0,176.14764 +9329,11348,20270,20271,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,6.7924609,7.0755453,21,-2,-58.175621,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.7542248,6.8048706,60.12,41.6,58.15,52.91,10,1,1,0,0,5,9,2,1,369.5,773591.38,333438.25,421766.94,0,0,0,1264.7305 +9329,11348,20271,20270,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.1937032,5.3616037,21,2,34.649487,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,4.9385262,58.15,52.91,60.12,41.6,8.333333333333334,1,1,0,0,5,9,2,1,369.5,773591.38,333438.25,421766.94,0,0,0,1264.7305 +9330,11349,20272,20273,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.9769735,8.9937735,0,6,3,-73.933678,0,-9,-9,2021,6,0,40,38,1,0,0,26.411114,26.411114,.05,.05,0,0,0,0,0,0,0,0,0,2.4511693,0,57.06,57.76,38.21,54.03,10,1,1,0,0,9,8,5,1,1046,411621.63,129281.34,209564.86,33629.656,2112.2039,0,3162.9277 +9330,11349,20273,20272,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,6.7352929,6.6215754,0,6,-3,30.994299,0,2,2,2021,23,11,15,0,1,11,0,6.3692074,6.3692074,0,0,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,57.06,57.76,5,1,1,0,0,7,8,5,1,1046,411621.63,129281.34,209564.86,33629.656,2112.2039,0,3162.9277 +9331,11350,20274,20275,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,6.2500544,6.4792252,24,7,49.753864,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,5.8326478,41.69,41.7,46.98,59.35,6.666666666666667,1,1,0,0,6,5,4,1,482.5,793657,576347.81,191499.92,0,-563.12268,0,1497.9827 +9331,11350,20275,20274,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.4869261,8.6400967,0,23,-7,-8.6086464,0,3,2,2021,9,0,49,47,1,0,0,12.201836,12.201836,0,0,0,0,0,0,0,2,0,0,0,2.2154436,0,46.98,59.35,41.69,41.7,5,1,1,0,0,10,5,4,1,482.5,793657,576347.81,191499.92,0,-563.12268,0,1497.9827 +9331,11351,20276,-9,20275,20274,1,1,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1172.6139,0,2,2,2021,10,0,0,41,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,1,52,0,0,0,0,0,0,-83.010399 +9332,11352,20277,-9,20278,-9,1,1,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-960.47375,-9,2,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.37,54.8,-9,-9,5,1,1,0,0,4,4,3,1,591.5,118073.02,31162.633,161609.19,19029.48,0,0,1635.8226 +9332,11352,20278,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.0951996,7.3105202,6.3664637,0,0,-941.22626,0,2,2,2021,9,0,20,24,1,0,0,8.2934113,8.2934113,.05,.05,0,0,0,0,0,0,1,0,1,6.7355013,0,51.42,48.12,-9,-9,5,1,1,0,0,14,4,3,1,591.5,118073.02,31162.633,161609.19,19029.48,0,0,1635.8226 +9332,11353,20279,-9,20278,-9,1,0,24,0,0,0,1,1,-9,0,4,8.4265079,8.4713707,0,0,0,-980.05316,0,2,-9,2021,12,0,39,41,1,0,1,12.926494,12.926494,0,0,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,7,4,5,1,856,-48090.516,0,0,0,0,0,2492.5051 +9332,11354,20280,-9,20278,-9,1,1,22,0,0,1,2,0,0,0,2,0,0,0,0,0,-1081.5115,-9,2,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,6.8442392,0,17.17,47.92,-9,-9,3.333333333333333,1,1,0,0,1,4,1,1,2375,0,0,0,0,0,0,250.1143 +9333,11355,20281,-9,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.9860888,7.0824413,0,0,0,-878.97589,0,3,-9,2021,19,7,17,0,1,7,0,7.3334475,7.3334475,0,0,0,0,0,0,0,0,1,0,1,0,0,42.44,57.54,-9,-9,3.333333333333333,1,1,0,0,0,8,2,0,535,113056.78,0,0,0,0,0,929.59595 +9333,11356,20282,-9,20281,-9,1,0,22,0,0,0,1,1,1,0,5,7.5872993,7.6492658,0,0,0,-878.89636,-9,2,-9,2021,16,4,30,0,1,4,1,7.6407237,7.6407237,0,0,0,0,0,0,0,0,1,0,1,.32907817,0,37.42,63,-9,-9,5,4,2,0,1,7,8,3,0,568,-106963.96,0,0,0,0,0,448.94736 +9334,11357,20283,20284,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.6881447,8.5970974,0,8,0,16.62677,0,2,2,2021,6,0,49,40,1,0,0,17.19998,17.19998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.58,52.86,8.333333333333334,1,1,0,0,10,9,5,0,1368.5,157200.16,100952.64,0,0,0,0,3113.7954 +9334,11357,20284,20283,-9,-9,1,0,32,0,0,0,2,2,-9,0,2,7.5002189,6.9280744,0,8,0,24.152805,0,2,2,2021,12,2,30,30,1,2,0,5.8573794,5.8573794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.58,52.86,57.33,53.46,5,1,1,0,0,10,9,5,0,1368.5,157200.16,100952.64,0,0,0,0,3113.7954 +9335,11358,20285,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,5.5846758,5.3237939,0,0,-1013.0936,0,-9,-9,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,0,25.036917,0,27,1,1,0,0,5.1457605,24.93,19.95,-9,-9,0,1,1,0,1,0,8,2,0,368,-101040.02,0,0,0,0,0,1743.2987 +9335,11359,20286,-9,20285,-9,1,1,43,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1080.9353,0,3,-9,2021,28,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,25.98,34.53,-9,-9,0,4,2,0,1,0,8,1,0,141,231323.41,0,0,0,0,0,7.0769582 +9336,11360,20287,20289,-9,-9,1,0,45,0,1,0,2,2,-9,1,1,0,0,0,9,14,0,0,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.83,36.36,46.8,57.03,0,1,1,0,0,0,2,1,0,1030,19883.205,0,0,0,0,0,2752.9692 +9336,11360,20288,-9,20287,20289,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1045.7958,-9,2,2,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.56,60.86,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,1030,19883.205,0,0,0,0,0,2752.9692 +9336,11360,20289,20287,-9,-9,1,1,31,0,1,0,2,2,-9,1,3,0,0,0,9,-14,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.8,57.03,24.83,36.36,5,1,1,1,0,3,2,1,0,1030,19883.205,0,0,0,0,0,2752.9692 +9336,11361,20290,-9,20287,20289,1,1,18,0,1,0,2,2,-9,1,4,0,0,0,0,0,-913.24243,1,2,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.26,56.73,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,642,0,0,0,0,0,0,218.97107 +9337,11362,20291,20292,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.7186804,8.6847944,0,5,-13,-28.92861,0,2,2,2021,6,0,37,37,1,0,0,16.000446,16.000446,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,48.28,60.18,8.333333333333334,1,1,0,0,9,10,5,1,674,1660893.5,959561.38,470150.06,93944.516,0,0,3861.062 +9337,11362,20292,20291,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4650774,8.4169016,6.7709579,5,13,-10.54128,0,-9,-9,2021,8,0,68,52,1,0,0,6.9297414,6.9297414,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.112906,48.28,60.18,49.86,55.31,8.333333333333334,1,1,0,0,9,10,5,1,674,1660893.5,959561.38,470150.06,93944.516,0,0,3861.062 +9338,11363,20293,20294,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,52,-1,-48.710182,0,1,1,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,17.955231,0,7,1,1,0,0,0,55.84,49.96,51.66,28.08,6.666666666666667,1,1,0,0,5,1,3,1,1309,668162.5,356854.06,238509.19,0,0,0,2073.9792 +9338,11363,20294,20293,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.961762,7.9161148,50,1,-1.0178185,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8536787,51.66,28.08,55.84,49.96,6.666666666666667,1,1,0,0,0,1,3,1,1309,668162.5,356854.06,238509.19,0,0,0,2073.9792 +9339,11364,20295,20296,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8046064,8.8810625,0,9,5,-3.6568217,-9,-9,-9,2021,10,1,37,0,1,1,0,21.107853,21.107853,.05,.05,.05,0,0,0,0,2,0,0,0,1.9509287,0,55.53,51.55,60.35,31.58,8.333333333333334,1,1,0,0,14,9,5,1,801,84277.297,99940.18,426769.94,277342.56,8354.543,5112.5889,5067.3975 +9339,11364,20296,20295,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.5387087,8.2169237,0,9,-5,-4.2444272,0,2,2,2021,10,2,37,37,1,2,0,14.793164,14.793164,.05,.05,0,0,0,0,0,0,0,0,0,.177424,0,60.35,31.58,55.53,51.55,6.666666666666667,2,3,0,0,13,9,5,1,801,84277.297,99940.18,426769.94,277342.56,8354.543,5112.5889,5067.3975 +9340,11365,20297,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,0,0,0,0,-930.00989,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,9.7784939,5.2981553,81.744949,0,1,1,0,0,0,49.09,22.96,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,386,112611.7,0,33995.254,0,0,0,203.04753 +9341,11366,20298,20299,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.0376644,8.3038015,0,17,2,-100.66117,0,2,2,2021,7,0,38,42,1,0,0,11.338243,11.338243,0,0,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,377,39620.555,44530.84,0,0,15441.775,0,1974.1621 +9341,11366,20299,20298,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.908102,7.7975168,0,17,-2,-1.3237089,0,3,3,2021,6,0,38,38,1,0,0,7.8406138,7.8406138,0,0,0,0,0,0,0,2,0,0,0,3.9240403,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,8,2,4,1,377,39620.555,44530.84,0,0,15441.775,0,1974.1621 +9342,11367,20300,20301,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,7.2984838,7.2771502,5,-2,-18.571817,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1726875,7.6876273,58.05,54.52,58.05,54.52,0,1,1,0,0,2,10,5,1,639.5,2009636.3,1259644.4,295517.72,0,0,0,5882.231 +9342,11367,20301,20300,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,0,8.4415092,8.6362009,5,2,92.9673,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6133075,8.9118099,58.05,54.52,58.05,54.52,10,1,1,0,0,0,10,5,1,639.5,2009636.3,1259644.4,295517.72,0,0,0,5882.231 +9343,11368,20302,20303,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.7194352,8.2137156,0,13,-3,-29.159615,0,-9,-9,2021,12,2,8,8,1,2,0,37.981972,37.981972,.05,.05,0,0,0,0,0,0,0,0,0,8.9735069,0,50.95,47.91,44.59,59.08,10,1,1,0,0,14,8,4,1,1510,38527.859,264162.84,0,0,0,0,8914.874 +9343,11368,20303,20302,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.1751242,8.1060238,0,33,3,-111.09203,0,2,2,2021,10,1,1,1,1,1,0,349.09805,349.09805,0,0,0,0,0,0,0,0,0,0,0,9.8383741,0,44.59,59.08,50.95,47.91,8.333333333333334,1,1,0,0,2,8,4,1,1510,38527.859,264162.84,0,0,0,0,8914.874 +9344,11369,20304,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,9.0622272,9.0249548,0,0,0,-1019.6185,0,2,3,2021,15,3,38,41,1,3,0,21.00536,21.00536,.05,.05,0,0,0,0,0,0,0,0,0,2.2564647,0,43.84,58.37,-9,-9,5,1,1,0,1,10,9,5,0,326,533716.31,527946.94,330714.75,181127.06,0,0,2931.5864 +9345,11370,20305,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.5741377,8.5654068,7.413394,0,0,-970.37933,0,2,2,2021,8,0,55,48,1,0,0,9.7536402,9.7536402,0,0,0,0,0,0,0,0,1,1,0,0,7.289073,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,168,-20961.457,0,45525.352,33594.289,0,0,4196.3115 +9346,11371,20306,20308,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,9.6745558,9.3375082,0,10,4,-38.604156,0,1,1,2021,6,0,40,50,1,0,0,43.954185,43.954185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,59.53,56.44,8.333333333333334,2,3,0,0,11,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9346,11371,20307,-9,20308,20306,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.7608,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9346,11371,20308,20306,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,0,0,0,10,-4,34.168613,0,1,1,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,60.12,54.8,10,2,3,0,0,0,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9346,11371,20309,-9,20308,20306,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.83691,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,1664.25,790652.69,200724.94,749481,349796.56,0,0,4258.6489 +9347,11372,20310,20311,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,9.1277971,9.008028,0,9,-1,85.212669,0,2,1,2021,14,3,46,45,1,3,0,23.012424,23.012424,0,0,.05,0,0,0,0,0,1,1,0,1.335407,0,31.57,58.67,36.13,54.74,3.333333333333333,1,1,0,0,8,10,5,1,638.33331,1690026.6,1025780.3,404076.22,0,0,0,5034.6475 +9347,11372,20311,20310,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,8.1275663,8.159544,0,29,1,45.353069,0,2,2,2021,22,10,38,23,1,10,0,10.698266,10.698266,0,0,.05,0,0,0,0,0,1,1,0,1.8970585,0,36.13,54.74,31.57,58.67,3.333333333333333,1,1,0,0,9,10,5,1,638.33331,1690026.6,1025780.3,404076.22,0,0,0,5034.6475 +9347,11372,20312,-9,20310,20311,1,1,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-936.18854,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,0,0,0,10,5,1,638.33331,1690026.6,1025780.3,404076.22,0,0,0,5034.6475 +9347,11373,20313,-9,20310,20311,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1039.731,-9,1,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,1,10,1,1,1973,-31372.803,0,0,0,0,0,0 +9348,11374,20314,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,5,0,6.7483139,6.5830765,0,0,-935.44733,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4079566,58.65,52.89,-9,-9,10,1,1,0,0,0,1,2,1,560,375099.88,-157886.84,123448.03,0,0,0,1100.726 +9349,11375,20315,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.3517365,7.3375316,0,0,-1015.1642,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8096364,0,0,1,1,0,3.4090791,7.8180141,55.93,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,211,381336.19,236316.22,145932.83,0,0,0,1559.8904 +9350,11376,20316,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,9.0071745,8.9964809,0,0,0,-935.92719,0,2,2,2021,7,0,39,40,1,0,0,23.403313,23.403313,0,0,0,0,0,0,0,0,0,0,0,7.184721,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,242,446430.41,252093.47,0,0,0,0,3644.2756 +9351,11377,20317,20318,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,12,-1,-28.32477,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,68.75,30.25,58.75,51.28,8.333333333333334,1,1,0,0,10,11,4,1,1768,1172908.1,767744.69,383910.94,0,0,0,2091.8801 +9351,11377,20318,20317,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,8.641716,8.5671663,0,12,1,41.773418,0,2,2,2021,10,0,48,74,1,0,0,14.240843,14.240843,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.75,51.28,68.75,30.25,8.333333333333334,1,1,0,0,13,11,4,1,1768,1172908.1,767744.69,383910.94,0,0,0,2091.8801 +9352,11378,20319,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7929006,7.701364,5.1133304,0,0,-1010.6984,0,3,3,2021,6,0,37,31,1,0,0,9.3868637,9.3868637,0,0,0,0,0,0,0,0,1,1,0,4.7935619,5.1423593,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1023,88741.977,47137.617,0,0,8155.4395,0,1514.8778 +9353,11379,20320,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.0018082,6.9374814,0,0,-968.7135,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.980958,0,0,1,1,0,0,6.6499834,69.48999999999999,28.65,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,417,-69719.406,89380.141,0,0,0,0,1773.4075 +9354,11380,20321,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.248426,7.3356385,0,0,0,-963.29382,0,2,1,2021,10,0,35,35,1,0,0,6.549603,6.549603,.05,.05,0,0,0,0,0,7,0,0,0,0,0,56.18,48.68,-9,-9,6.666666666666667,1,1,0,0,13,2,3,1,490,255734.88,60240.664,0,0,0,-289.33746,457.87384 +9354,11381,20322,-9,20321,-9,1,1,22,0,0,0,3,3,-9,0,4,0,0,0,0,0,-963.25824,0,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,-9,-9,6.666666666666667,1,1,1,1,2,2,1,1,645,0,0,0,0,0,0,0 +9355,11382,20323,20324,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,8.124629,8.1931963,53,-5,-12.329295,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8686419,43.1,34.14,39.53,27.92,6.666666666666667,1,1,0,0,0,8,5,1,395,3551906.8,594308.25,1169050.9,0,0,0,5498.2402 +9355,11382,20324,20323,-9,-9,1,1,85,0,0,0,1,1,-9,0,2,0,8.5144567,8.6149416,53,5,-122.8788,0,2,1,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.4425564,39.53,27.92,43.1,34.14,5,2,3,0,0,0,8,5,1,395,3551906.8,594308.25,1169050.9,0,0,0,5498.2402 +9356,11383,20325,20326,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.0007524,7.7470264,0,21,-4,-5.355999,0,2,3,2021,10,0,34,34,1,1,0,11.200689,11.200689,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,50.5,50.42,8,2,3,0,0,8,4,5,1,1291.3334,150100.78,174118.52,0,0,966.29364,3374.7236,3052.167 +9356,11383,20326,20325,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,8.3968964,8.330513,0,21,4,-27.02393,0,2,2,2021,15,2,47,37,1,2,0,10.949279,10.949279,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.5,50.42,49,55,5,2,3,0,1,9,4,5,1,1291.3334,150100.78,174118.52,0,0,966.29364,3374.7236,3052.167 +9356,11383,20327,-9,20325,20326,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-998.47418,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,4,5,1,1291.3334,150100.78,174118.52,0,0,966.29364,3374.7236,3052.167 +9356,11384,20328,-9,20325,20326,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1031.3245,-9,2,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,4,1,1,982,-400320.97,0,0,0,0,0,0 +9357,11385,20329,-9,20331,20330,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.1223,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9357,11385,20330,20331,-9,-9,1,1,24,1,2,0,2,2,-9,0,3,7.98524,8.1897182,0,5,-1,-142.14256,0,2,2,2021,12,3,45,50,1,3,0,7.2597194,7.2597194,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.23,41.93,48.45,57.21,6.666666666666667,1,1,0,0,6,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9357,11385,20331,20330,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,7.0927892,7.0992699,0,5,1,-54.382923,0,-9,-9,2021,6,0,24,18,1,0,0,4.9159284,4.9159284,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.21,43.23,41.93,10,1,1,0,0,2,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9357,11385,20332,-9,20331,20330,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.8993,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,355.75,244375.09,34102.184,283291.63,99128.719,0,0,2260.7366 +9358,11386,20333,20336,-9,-9,1,1,38,1,2,0,2,2,-9,1,4,8.0580616,8.0514593,0,8,-1,-66.982231,0,2,2,2021,11,0,40,-9,1,0,0,9.6262407,9.6262407,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.74,43.46,51.42,48.12,6.666666666666667,1,1,0,0,10,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9358,11386,20334,-9,20336,20333,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.6561,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9358,11386,20335,-9,20336,20333,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0543,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9358,11386,20336,20333,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,8,1,-48.658016,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.42,48.12,57.74,43.46,6.666666666666667,1,1,0,0,7,9,3,0,429,33521.691,45830.824,0,0,0,0,2611.1685 +9359,11387,20337,20338,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.9472041,6.8535943,48,-2,116.3898,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4963565,7.1289029,48.37,44.11,60.12,54.8,8.333333333333334,1,1,0,0,6,7,3,1,1125,467364.88,15096.771,384034.31,0,0,0,3259.6851 +9359,11387,20338,20337,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.6614037,7.2165737,6.3724785,48,2,35.59539,0,-9,-9,2021,5,0,10,16,1,0,0,10.493494,10.493494,.05,.05,.05,0,0,0,0,0,1,1,0,6.5589409,6.9629302,60.12,54.8,48.37,44.11,10,1,1,0,0,12,7,3,1,1125,467364.88,15096.771,384034.31,0,0,0,3259.6851 +9360,11388,20339,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.6179695,9.0030022,0,0,0,-1004.9335,0,2,2,2021,10,1,50,0,1,1,0,13.572763,13.572763,0,0,0,0,0,0,0,0,0,0,0,4.3260899,0,36.44,56.63,-9,-9,8.333333333333334,1,1,0,0,5,9,5,1,626,164084.8,0,0,0,0,0,2822.2488 +9361,11389,20340,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.4900599,7.4786434,0,0,-919.20612,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,2.2392142,0,18.197012,0,1,1,0,0,7.487999,40.38,23.69,-9,-9,3.333333333333333,1,1,0,0,0,4,3,0,2216,347639.28,164708.44,311509.72,0,0,0,1560.932 +9362,11390,20341,20342,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.1977301,7.3785806,0,6,-6,50.780132,0,-9,-9,2021,21,8,24,18,1,8,0,9.3172922,9.3172922,0,0,0,0,0,0,0,0,0,0,0,.024077045,0,29.08,51.96,42.72,36.19,6.666666666666667,1,1,0,0,13,9,4,1,281.5,518552.5,335091.69,135814.2,0,2196.8569,0,2771.99 +9362,11390,20342,20341,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,8.189332,7.8538251,0,6,6,-176.25954,0,3,3,2021,14,4,37,38,1,4,0,9.346468,9.346468,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.72,36.19,29.08,51.96,5,1,1,0,0,13,9,4,1,281.5,518552.5,335091.69,135814.2,0,2196.8569,0,2771.99 +9363,11391,20343,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.0033617,8.0232267,0,0,0,-946.52948,0,1,1,2021,14,2,42,38,1,2,0,8.0340176,8.0340176,0,0,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,8,13,4,1,136,-63973.066,0,0,0,0,0,666.11121 +9363,11392,20344,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.7992773,8.9700413,0,0,0,-927.12805,-9,-9,-9,2021,14,3,78,0,1,3,0,10.566501,10.566501,.05,.05,0,0,0,0,0,0,0,0,0,3.6009068,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,2,13,5,1,288,213404.66,-21724.85,179744.61,110616.77,7874.1665,0,1891.6201 +9364,11393,20345,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1011.4769,0,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,24.33,21.59,-9,-9,0,1,1,0,0,2,11,1,0,629,72358.406,0,155567.03,40921.828,0,0,-92.192009 +9364,11394,20346,-9,20345,-9,1,0,28,0,0,0,3,3,-9,0,4,7.5804701,7.9918332,0,0,0,-1065.3568,0,3,-9,2021,10,0,38,38,1,0,1,6.652205,6.652205,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,5,11,3,0,445,-130728.66,42944.5,0,0,-1061.472,0,1268.213 +9365,11395,20347,20348,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,0,0,48,6,0,0,2,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,44.19,58.01,19.01,22.64,5,1,1,0,0,0,10,1,0,265,-53468.137,0,0,0,0,0,1884.7927 +9365,11395,20348,20347,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,48,-6,0,0,2,2,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,123.25329,0,0,1,1,0,0,0,19.01,22.64,44.19,58.01,1.666666666666667,1,1,0,0,0,10,1,0,265,-53468.137,0,0,0,0,0,1884.7927 +9366,11396,20349,20350,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.1202946,7.9198656,0,6,-8,-136.40654,0,-9,-9,2021,19,5,50,43,1,5,0,7.8188829,7.8188829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.2,61.24,62.26,40.09,1.666666666666667,1,1,0,0,7,6,4,0,497,91705.406,38812.512,219497.84,126550.06,0,0,2103.2373 +9366,11396,20350,20349,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.7656398,7.8798327,0,6,8,-13.224474,0,2,2,2021,8,0,47,43,1,0,0,8.2855234,8.2855234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.26,40.09,37.2,61.24,8.333333333333334,1,1,0,0,7,6,4,0,497,91705.406,38812.512,219497.84,126550.06,0,0,2103.2373 +9367,11397,20351,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,5.6232967,6.7835307,6.4170451,0,0,-984.88763,0,2,1,2021,7,0,35,40,1,0,0,1.1105628,1.1105628,0,0,0,0,0,0,0,0,1,1,0,4.8176675,6.5476227,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,13,7,2,1,234,490590.81,453406.53,174968.3,0,0,0,1243.6808 +9368,11398,20352,20353,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,6.8731165,7.8130779,7.2635279,35,-3,55.880356,0,2,2,2021,8,1,22,6,1,1,0,7.5297909,7.5297909,0,0,0,0,0,0,0,0,1,1,0,1.8595724,7.7232895,56.34,40.63,55.09,55.87,8.333333333333334,1,1,0,0,12,9,4,1,242.5,3487020.5,1873109.8,378532.63,0,0,0,3873.9153 +9368,11398,20353,20352,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.48629,8.2637558,33,3,94.09082,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2692108,55.09,55.87,56.34,40.63,8.333333333333334,1,1,0,0,8,9,4,1,242.5,3487020.5,1873109.8,378532.63,0,0,0,3873.9153 +9369,11399,20354,20357,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,8.8922882,8.916441,0,11,-1,2.8760743,0,2,3,2021,8,1,60,60,1,1,0,15.871456,15.871456,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.05,54.52,46.63,59.72,8.333333333333334,1,1,0,0,13,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9369,11399,20355,-9,20357,20354,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.15082,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9369,11399,20356,-9,20357,20354,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.4187,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9369,11399,20357,20354,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.1272364,8.542697,0,11,1,-5.6418858,0,2,1,2021,13,3,40,50,1,3,0,9.2051783,9.2051783,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.63,59.72,58.05,54.52,8.333333333333334,1,1,0,0,11,10,5,1,1988.75,22344.068,83376.305,252194.48,142696.69,0,0,4291.3271 +9370,11400,20358,20359,-9,-9,1,0,86,0,0,0,2,2,-9,0,3,0,5.2317085,5.1897492,10,-1,33.776585,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0145707,5.1304512,52,45,57.16,56.15,8,1,1,0,0,0,4,4,1,2027.5,967540.25,198186.89,437201.41,0,0,0,2731.9504 +9370,11400,20359,20358,-9,-9,1,1,87,0,0,0,2,2,-9,0,4,0,8.0983248,8.120079,10,1,17.288342,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.0893002,57.16,56.15,52,45,8.333333333333334,1,1,0,0,0,4,4,1,2027.5,967540.25,198186.89,437201.41,0,0,0,2731.9504 +9371,11401,20360,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1481619,8.143364,0,0,0,-1015.051,0,2,2,2021,6,0,37,37,1,0,0,8.3268986,8.3268986,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,13,4,0,285,10170.847,-29986.57,0,0,0,193.52371,994.16663 +9372,11402,20361,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1069.1411,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.87,34.54,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,2134,293524.84,197281.08,119182.59,0,0,0,258.88123 +9373,11403,20362,20363,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,1,-1,0,-9,3,3,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.89,18.61,54.79,55.86,6.666666666666667,1,1,0,0,0,5,1,0,200,466910.53,0,285269,0,0,0,3221.521 +9373,11403,20363,20362,-9,-9,1,1,63,0,0,0,3,3,-9,1,4,0,0,0,1,1,0,-9,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,54.79,55.86,27.89,18.61,1.666666666666667,1,1,1,0,12,5,1,0,200,466910.53,0,285269,0,0,0,3221.521 +9374,11404,20364,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,3.546257,3.6138923,0,0,-1122.8328,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.873769,3.5236669,53.35,42.77,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,2474,234553.97,0,139682.09,0,0,0,1318.2572 +9375,11405,20365,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,8.173398,8.3757782,0,0,-1033.1431,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.7392912,8.0770569,48.68,38.59,-9,-9,8.333333333333334,1,1,0,1,6,2,4,1,194,1476655.4,851961,118864.31,0,0,0,1946.7651 +9376,11406,20366,20369,-9,-9,1,1,33,1,2,0,1,1,-9,0,4,7.278677,7.2740874,0,7,1,-28.657568,0,-9,-9,2021,0,0,36,84,1,0,0,4.7368984,4.7368984,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,10,2,3,0,0,7,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9376,11406,20367,-9,20369,20366,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.15521,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9376,11406,20368,-9,20369,20366,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-968.98767,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9376,11406,20369,20366,-9,-9,1,0,32,1,2,0,2,2,-9,0,4,9.411293,9.1107025,0,8,-1,-160.62897,0,2,3,2021,0,0,60,48,1,0,0,23.194317,23.194317,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,62.49,55.09,0,2,3,0,0,8,13,5,0,467.75,135732.3,93293.211,202043.95,157489.22,17571.229,0,4785.625 +9377,11407,20370,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.7212,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.99,28.62,-9,-9,6.666666666666667,1,1,0,0,5,11,1,0,1219,88791.672,0,0,0,0,0,462.23035 +9378,11408,20371,20372,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.0997782,8.270668,7,6,15.603559,0,-9,-9,2021,15,3,0,37,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7754253,7.6608634,39.52,58.98,51.83,57.2,3.333333333333333,1,1,0,0,5,2,3,1,1184.5,1227877.5,477155.84,251439.55,0,-1504.2963,0,2607.6902 +9378,11408,20372,20371,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,0,0,10,-6,-38.285957,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3490629,0,51.83,57.2,39.52,58.98,8.333333333333334,1,1,0,0,5,2,3,1,1184.5,1227877.5,477155.84,251439.55,0,-1504.2963,0,2607.6902 +9379,11409,20373,20374,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.2272549,6.2849121,37,-11,-15.921343,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8636408,6.3296347,54.2,57.49,57.33,37.4,8.333333333333334,1,1,0,0,12,9,3,1,1683,425822.94,294380.38,0,0,591.35632,373.67847,2385.9106 +9379,11409,20374,20373,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,8.1703873,8.2291059,37,11,40.291206,0,2,2,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.3968697,8.1980696,57.33,37.4,54.2,57.49,6.666666666666667,1,1,0,0,1,9,3,1,1683,425822.94,294380.38,0,0,591.35632,373.67847,2385.9106 +9379,11410,20375,-9,20373,20374,1,1,29,0,0,0,2,2,-9,0,4,7.499629,8.0059166,0,0,0,-1021.7722,0,2,2,2021,20,9,45,40,1,9,0,5.9218192,5.9218192,0,0,0,0,0,0,0,0,1,1,0,4.3164654,0,30.81,66.61,-9,-9,3.333333333333333,1,1,0,0,6,9,3,1,760,34540.383,0,0,0,0,1243.3152,1291.9602 +9380,11411,20376,20377,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.9800634,6.7299562,49,3,55.896713,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8675733,60.53,48.35,60.29,52.11,0,1,1,0,0,7,12,2,0,592,117555.59,18529.121,158523.59,0,0,0,1747.0858 +9380,11411,20377,20376,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,47,-3,-138.08466,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,60.53,48.35,10,1,1,0,0,7,12,2,0,592,117555.59,18529.121,158523.59,0,0,0,1747.0858 +9381,11412,20378,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,5.9193983,5.691021,0,0,-1107.8326,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2824874,6.0090857,61.78,37.78,-9,-9,10,1,1,0,0,0,9,2,0,470,533262.06,93739.07,178244.22,711.05432,12274.974,2333.1948,1183.4918 +9382,11413,20379,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1106.8282,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,4.0994291,46.828972,26.413862,0,1,1,0,6.8776479,0,42.12,46.37,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,148,247368.23,0,242529.95,0,0,0,2019.45 +9383,11414,20380,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,5.5041051,5.5725374,0,0,-1079.267,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,51.058533,0,0,1,0,1,0,5.6397309,46.98,22.01,-9,-9,5,1,1,0,0,13,5,2,1,240,199791.39,86419.078,99471.461,0,0,0,1586.6976 +9383,11415,20381,-9,20380,-9,1,1,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-996.64935,0,3,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,31.5,31.7,-9,-9,3.333333333333333,1,1,0,1,0,5,2,1,2307,-37247.309,-7922.1294,223509.66,84360.773,0,0,1380.8143 +9384,11416,20382,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,7.1670489,7.1801982,0,0,-1034.877,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9772549,41.07,60.93,-9,-9,10,1,1,0,0,0,12,2,1,109,331815.09,288243.31,144198.3,0,0,0,1460.5192 +9385,11417,20383,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,7.6301637,7.302289,0,0,-971.33923,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.9080992,7.6079659,46.4,57.35,-9,-9,8.333333333333334,1,1,0,0,5,9,3,1,285,1024199.8,536529.44,304538.97,0,0,8029.3242,669.15082 +9386,11418,20384,20385,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,5.0461974,4.9457054,32,-4,190.2774,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3420177,55.23,43.45,55.95,47.23,6.666666666666667,1,1,0,0,9,11,2,1,402.5,121206.08,108216.41,0,0,-423.95709,3290.4321,1624.5886 +9386,11418,20385,20384,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.2775493,5.2605357,32,4,-194.73576,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.805182,55.95,47.23,55.23,43.45,8.333333333333334,1,1,0,0,0,11,2,1,402.5,121206.08,108216.41,0,0,-423.95709,3290.4321,1624.5886 +9387,11419,20386,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.7813039,8.0530233,0,0,-942.18744,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1872215,8.256628,57.51,47.91,-9,-9,8.333333333333334,1,1,0,0,4,1,4,1,1482,769930.94,765059,196224.64,0,0,0,2134.1824 +9388,11420,20387,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.781527,7.8801589,5.5350137,0,0,-1049.8994,0,-9,2,2021,15,4,25,25,1,4,0,14.293414,14.293414,.05,.05,0,0,0,0,0,0,0,0,0,2.3910389,5.5221705,48.28,60.18,-9,-9,10,1,1,0,0,14,10,4,1,84,70960.742,75081.344,0,0,0,5102.8696,2274.834 +9389,11421,20388,20389,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.2890086,6.1079612,8,12,-7.4015684,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5924296,67.7,27.38,60.34,14.48,8.333333333333334,1,1,0,0,0,1,2,0,1118.5,1234552,147224.05,450579.25,0,0,0,2390.04 +9389,11421,20389,20388,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,6.3822098,6.7927909,8,-12,67.015488,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,6.1299334,0,2,1,1,0,3.6772962,6.7394648,60.34,14.48,67.7,27.38,10,1,1,0,0,0,1,2,0,1118.5,1234552,147224.05,450579.25,0,0,0,2390.04 +9390,11422,20390,-9,20392,20393,1,0,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.8617,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9390,11422,20391,-9,20392,20393,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1099.7478,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9390,11422,20392,20393,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,0,0,0,7,-5,-47.219597,0,1,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,53.71,51.24,58.84,8,2,3,0,0,0,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9390,11422,20393,20392,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,9.608139,9.4227629,0,4,5,-10.058271,0,-9,-9,2021,12,0,45,50,1,0,0,40.751003,40.751003,.05,.05,0,0,0,0,0,0,1,1,0,7.5956392,0,51.24,58.84,50.65,53.71,6.666666666666667,2,3,0,0,7,8,5,1,478,773685.5,571807.38,302193.88,95565.516,12702.699,0,4973.2124 +9391,11423,20394,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-999.72302,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.46,38.22,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,2118,32935.336,0,0,0,0,0,659.71069 +9391,11424,20395,-9,20394,-9,1,1,44,0,0,0,1,1,-9,0,4,8.2012339,8.2640247,0,0,0,-936.46771,-9,3,-9,2021,9,0,40,0,1,1,0,10.757467,10.757467,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,-9,-9,8,1,1,0,0,1,2,4,1,1699,43280.07,109021.17,66349.078,44070.809,0,0,1894.9829 +9391,11425,20396,-9,20394,-9,1,1,54,0,0,0,2,2,-9,0,3,7.9755287,7.9399047,0,0,0,-1036.7108,-9,3,-9,2021,10,0,40,0,1,1,0,10.369745,10.369745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,1,2,4,1,1023,121957.41,161237.81,0,0,1241.3036,0,1499.3575 +9392,11426,20397,20398,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,0,0,0,31,-2,0,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,50,51.25,13.47,7,2,3,0,0,0,4,1,1,1260.5,404178.56,286191.09,268316.75,8005.6289,0,0,558.27423 +9392,11426,20398,20397,-9,-9,1,1,49,0,1,0,2,2,-9,0,1,0,0,0,9,2,0,0,-9,-9,2021,11,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.25,13.47,47,50,5,2,3,1,0,0,4,1,1,1260.5,404178.56,286191.09,268316.75,8005.6289,0,0,558.27423 +9392,11427,20399,-9,20397,20398,1,1,20,0,1,0,2,2,-9,0,3,8.5573912,8.7044945,0,0,0,-981.61688,0,3,2,2021,5,1,40,48,1,1,1,16.00527,16.00527,0,0,0,0,0,0,0,0,1,1,0,0,0,46.02,58.57,-9,-9,5,2,3,0,0,2,4,5,1,523,60064.891,2903.6731,0,0,0,0,1436.8546 +9392,11428,20400,-9,20397,20398,1,1,19,0,1,0,2,2,-9,0,5,6.6023493,6.7516818,0,0,0,-1037.2048,0,3,2,2021,3,0,40,40,1,0,1,2.8463299,2.8463299,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,2,4,2,1,544,61836.102,0,0,0,0,0,-22.768576 +9393,11429,20401,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.4790215,6.4458189,0,0,-988.37738,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1376448,6.0040121,30.46,24.29,-9,-9,3.333333333333333,1,1,0,0,3,9,2,1,1131,365124.44,79782.57,0,0,0,0,58.040234 +9394,11430,20402,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,2,0,6.731636,6.6971021,0,0,-1040.4004,0,3,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6395683,63.88,16.59,-9,-9,10,1,1,0,0,0,11,2,1,389,81288.039,1015.5367,0,0,0,0,1152.8997 +9394,11431,20403,20404,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,7.9706144,8.04245,0,12,3,72.278915,0,3,3,2021,10,0,40,40,1,0,0,8.7577543,8.7577543,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,46.21,37.4,8.333333333333334,1,1,0,0,13,11,4,1,1591,1104417.3,870715.63,244002.25,0,0,0,2424.1187 +9394,11431,20404,20403,20402,-9,1,0,61,0,0,0,1,1,-9,0,2,7.968832,8.0031624,0,12,-3,201.37662,0,2,3,2021,9,0,37,38,1,0,0,9.112277,9.112277,0,0,0,0,0,0,0,14.5,1,1,0,0,0,46.21,37.4,54.37,54.8,10,1,1,0,0,13,11,4,1,1591,1104417.3,870715.63,244002.25,0,0,0,2424.1187 +9395,11432,20405,20406,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.3601298,7.6402721,9,2,105.7795,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4917164,7.7097826,55.3,55.6,57.16,56.15,10,1,1,0,0,0,10,3,1,514.5,1139970.6,664592.63,360302.63,0,0,0,2522.7852 +9395,11432,20406,20405,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.2350788,7.2955122,9,-2,-17.835819,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,2.4765258,0,0,1,1,0,4.3999028,7.2289991,57.16,56.15,55.3,55.6,10,1,1,0,0,0,10,3,1,514.5,1139970.6,664592.63,360302.63,0,0,0,2522.7852 +9396,11433,20407,20408,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,9.3375416,9.4858341,0,2,11,-88.831131,0,-9,-9,2021,12,1,45,45,1,1,0,30.829531,30.829531,0,0,.05,0,0,0,0,0,0,0,0,0,0,39.1,57.79,55.19,54.26,6.666666666666667,1,1,0,0,2,8,5,0,628.5,593027.44,57759.023,856571.13,550590.63,27995.648,0,5887.6006 +9396,11433,20408,20407,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.6723804,8.687748,0,2,-11,68.961418,0,1,2,2021,10,2,48,48,1,2,0,20.13151,20.13151,0,0,.05,0,0,0,0,0,0,0,0,0,0,55.19,54.26,39.1,57.79,8.333333333333334,1,1,0,0,11,8,5,0,628.5,593027.44,57759.023,856571.13,550590.63,27995.648,0,5887.6006 +9397,11434,20409,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.1753688,7.83953,0,0,-1076.434,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,41.485699,35.214039,418.32236,0,1,1,0,0,7.1789804,27.41,25.55,-9,-9,3.333333333333333,1,1,0,0,0,13,3,0,295,899672.94,798068.94,45769.305,0,0,0,1678.2179 +9398,11435,20410,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1001.7067,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.12,27.25,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,601,904.2475,0,0,0,0,0,1199.3843 +9399,11436,20411,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,6.1721363,6.4804134,0,0,0,-990.15118,0,-9,-9,2021,18,6,60,70,1,6,0,1.0304557,1.0304557,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,-9,-9,6.666666666666667,1,1,0,1,7,4,2,1,455,-85830.594,0,0,0,0,0,457.72287 +9399,11437,20412,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.0080605,8.1579714,0,0,0,-1108.6611,-9,-9,-9,2021,23,10,57,0,1,10,0,5.3735275,5.3735275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,21.9,45.56,-9,-9,1.666666666666667,1,1,0,1,9,4,4,1,737,-83870.805,0,0,0,0,0,314.98633 +9400,11438,20413,20414,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.4664459,9.5937614,0,21,1,-42.678898,0,2,-9,2021,6,0,57,57,1,0,0,20.387299,20.387299,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,55.02,40.87,10,1,1,0,0,14,12,5,1,3312.5,469509,7226.3125,487862.63,347528.56,0,0,4853.27 +9400,11438,20414,20413,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,6.9989038,7.0415945,0,22,-1,-77.434799,0,2,2,2021,8,1,35,37,1,1,0,4.3717818,4.3717818,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,40.87,62.49,55.09,8.333333333333334,1,1,0,0,10,12,5,1,3312.5,469509,7226.3125,487862.63,347528.56,0,0,4853.27 +9401,11439,20415,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,8.9461002,8.853199,0,0,0,-968.78595,0,-9,2,2021,6,0,38,40,1,0,0,15.141206,15.141206,0,0,0,0,0,0,0,0,1,1,0,6.2776947,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,5,11,5,1,383,-2498.2427,0,159019.7,123426.4,0,0,2673.884 +9402,11440,20416,-9,20418,20419,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.14594,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9402,11440,20417,-9,20418,20419,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1080.8842,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9402,11440,20418,20419,-9,-9,1,0,31,0,3,0,2,2,-9,0,4,7.5034819,7.3309193,0,2,-11,-45.271278,0,-9,-9,2021,6,0,23,23,1,0,0,9.3722563,9.3722563,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,38.06,38.9,8.333333333333334,1,1,0,0,5,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9402,11440,20419,20418,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,8.0171709,8.1737061,0,2,11,86.6418,0,3,3,2021,12,0,45,38,1,0,0,8.0074921,8.0074921,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.06,38.9,48.87,58.55,5,1,1,0,0,11,7,3,0,821.25,383882.75,59416.395,518223.94,238151,0,0,2863.7312 +9403,11441,20420,20421,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,26,21,-21.684505,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,22.975353,0,2,1,1,0,0,0,35.46,16.38,27.01,48.84,8.333333333333334,1,1,0,0,7,4,3,0,963,1176468.3,881293.75,243993.88,0,0,0,2544.9644 +9403,11441,20421,20420,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.7672911,8.290967,7.1474762,12,-21,-31.896458,0,-9,-9,2021,19,6,76,39,1,6,0,4.9743552,4.9743552,0,0,0,0,0,0,0,2,1,1,0,0,7.3232551,27.01,48.84,35.46,16.38,6.666666666666667,1,1,0,0,14,4,3,0,963,1176468.3,881293.75,243993.88,0,0,0,2544.9644 +9404,11442,20422,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.5804033,5.9842739,0,0,-904.52545,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0434976,5.7539606,48.55,40.5,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,213,-101325.55,126073.67,0,0,0,0,329.62189 +9405,11443,20423,20424,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,45,-1,-18.881443,0,3,3,2021,28,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.52,23.87,52.99,51.28,10,1,1,0,0,0,11,4,1,2058,1301316.6,518795.5,135644.75,0,0,0,3863.9187 +9405,11443,20424,20423,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.6054287,8.3972254,0,45,1,58.902229,0,3,3,2021,9,1,63,66,1,1,0,12.327312,12.327312,0,0,0,0,0,0,0,0,1,1,0,2.7727509,0,52.99,51.28,30.52,23.87,8.333333333333334,1,1,0,0,9,11,4,1,2058,1301316.6,518795.5,135644.75,0,0,0,3863.9187 +9406,11444,20425,20426,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,5.6674933,6.1316328,0,10,-2,25.567329,0,1,1,2021,6,0,4,4,1,0,0,11.991032,11.991032,0,0,0,0,0,0,0,0,0,0,0,0,0,51.25,52.08,53.46,44.67,8.333333333333334,2,3,0,0,12,8,4,1,1153,1506555.5,456270.84,215643.09,0,0,0,2199.2585 +9406,11444,20426,20425,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.1966581,8.114357,37,2,29.201372,0,2,1,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,8.0184507,8.4381933,53.46,44.67,51.25,52.08,8.333333333333334,2,3,0,0,10,8,4,1,1153,1506555.5,456270.84,215643.09,0,0,0,2199.2585 +9406,11445,20427,-9,20425,20426,1,1,28,0,0,0,1,1,-9,0,1,8.8673725,9.0038433,0,0,0,-1141.2643,0,1,1,2021,36,12,40,40,1,12,1,21.561899,21.561899,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.75,50.17,-9,-9,10,2,3,0,0,3,8,5,1,115,119430.88,114023.97,0,0,0,0,2440.4602 +9407,11446,20428,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,0,7.2289667,7.2026691,0,0,-1097.9775,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9746008,57.57,49.69,-9,-9,10,1,1,0,0,8,9,2,1,832,79510.555,220601.5,0,0,0,0,130.1321 +9407,11447,20429,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,8.7417803,8.564044,0,0,-1054.6664,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3272977,8.419919,60.14,38.88,-9,-9,8.333333333333334,1,1,0,0,4,9,5,1,195,907070.56,684596.69,272935.03,0,0,0,2091.9255 +9408,11448,20430,20431,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.8472857,7.701818,32,-10,36.525822,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7813931,7.5587945,54.51,50.6,63.01,41.3,10,1,1,0,0,6,7,3,1,2005,301662.78,247815.06,0,0,0,0,2466.5408 +9408,11448,20431,20430,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,32,10,-42.723701,0,2,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6870368,0,63.01,41.3,54.51,50.6,10,1,1,0,0,0,7,3,1,2005,301662.78,247815.06,0,0,0,0,2466.5408 +9409,11449,20432,-9,20436,20435,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1037.0734,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20433,-9,20436,20435,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-984.41125,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20434,-9,20436,20435,1,0,16,1,4,1,3,0,-9,0,4,0,0,0,0,0,-928.06006,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.1,57.51,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20435,20436,-9,-9,1,1,39,1,4,0,2,2,-9,0,2,8.4139853,8.2423439,0,19,5,86.340446,0,2,1,2021,11,1,38,38,1,1,0,11.439159,11.439159,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.58,52.86,57.06,57.76,5,1,1,0,0,8,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20436,20435,-9,-9,1,0,34,1,4,0,2,2,-9,0,5,7.0481277,7.4995546,0,19,-5,20.092896,0,2,2,2021,7,0,24,24,1,0,0,5.6293983,5.6293983,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.58,52.86,10,1,1,0,0,8,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9409,11449,20437,-9,20436,20435,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-987.01727,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,3,1,1003.6667,70648.234,28356.258,124345.94,56172.551,0,0,3034.0332 +9410,11450,20438,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.1170235,7.8778715,0,0,0,-1037.1796,0,-9,-9,2021,12,0,40,30,1,2,0,9.6362267,9.6362267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,50,-9,-9,7,1,1,0,0,13,11,4,1,277,208552.36,271008.56,56361.004,0,0,0,2070.9202 +9411,11451,20439,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,4.6591835,5.0291896,0,0,-1058.6049,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7711525,0,44.13,57.97,-9,-9,6.666666666666667,1,1,0,0,0,5,2,1,6459,-14981.219,76621.086,139109.38,36117.867,0,0,834.27789 +9412,11452,20440,20441,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6846209,8.9148245,0,33,1,-8.7993507,0,-9,-9,2021,11,0,40,40,1,0,0,19.6213,19.6213,.05,.05,.05,0,0,0,0,0,0,0,0,6.4944906,0,53.33,53.71,54.2,57.49,8.333333333333334,1,1,0,0,11,5,5,1,1488,1134419.5,775128.75,237713.59,0,0,0,5919.4951 +9412,11452,20441,20440,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.637104,8.5088577,0,33,-1,-6.858336,0,2,3,2021,10,1,38,38,1,1,0,16.14415,16.14415,.05,.05,0,0,0,0,0,0,0,0,0,7.5563641,0,54.2,57.49,53.33,53.71,8.333333333333334,1,1,0,0,9,5,5,1,1488,1134419.5,775128.75,237713.59,0,0,0,5919.4951 +9413,11453,20442,20443,-9,-9,1,0,62,0,0,0,1,1,-9,0,5,0,8.1104956,8.0538254,41,-5,76.531967,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9165745,8.0462084,57.06,57.76,57.16,56.15,10,1,1,0,0,7,5,4,1,1036.5,1768270.8,1204162.1,326604.63,0,0,0,3991.8618 +9413,11453,20443,20442,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.016758,7.9982128,41,5,-145.35542,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6208467,7.9475703,57.16,56.15,57.06,57.76,10,1,1,0,0,0,5,4,1,1036.5,1768270.8,1204162.1,326604.63,0,0,0,3991.8618 +9414,11454,20444,-9,20445,20446,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.8802,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,815.33331,202149.11,21500.188,365215.38,197151.92,4674.627,8064.9219,3742.8037 +9414,11454,20445,20446,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.4123898,8.2721472,0,3,-4,31.296471,0,-9,-9,2021,4,0,35,35,1,0,0,16.858181,16.858181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,51,56,10,2,3,0,0,4,8,4,1,815.33331,202149.11,21500.188,365215.38,197151.92,4674.627,8064.9219,3742.8037 +9414,11454,20446,20445,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.3070049,8.0613213,0,3,4,-84.895325,0,2,2,2021,10,0,80,60,1,1,0,5.2689061,5.2689061,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,60.02,56.42,7,2,3,0,0,1,8,4,1,815.33331,202149.11,21500.188,365215.38,197151.92,4674.627,8064.9219,3742.8037 +9415,11455,20447,20448,-9,-9,1,0,35,0,1,0,2,2,-9,0,2,6.6887603,6.5119572,0,5,-2,-19.667683,0,2,2,2021,31,12,16,16,1,12,0,5.8095436,5.8095436,0,0,0,0,0,0,0,0,1,1,0,0,0,10.62,59.12,39.43,32.24,6.666666666666667,1,1,0,1,5,4,3,0,1148.3334,-8162.7734,29636.035,0,0,953.80188,0,2585.1582 +9415,11455,20448,20447,-9,-9,1,1,37,0,1,0,2,2,-9,0,2,8.4540205,8.3400164,0,5,2,-46.815357,0,2,1,2021,22,10,43,38,1,10,0,12.112514,12.112514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.43,32.24,10.62,59.12,5,1,1,0,1,8,4,3,0,1148.3334,-8162.7734,29636.035,0,0,953.80188,0,2585.1582 +9415,11455,20449,-9,20447,20448,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.5129,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,1148.3334,-8162.7734,29636.035,0,0,953.80188,0,2585.1582 +9416,11456,20450,-9,20452,20451,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-905.45728,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3740053,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,772.66669,1057099.5,650509.25,394219.13,0,283.66544,2251.02,3477.3828 +9416,11456,20451,20452,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.1147318,8.7743826,0,7,0,25.486979,0,2,2,2021,5,0,40,42,1,0,0,24.26799,24.26799,.05,.05,0,0,0,0,0,0,1,1,0,1.5565771,0,58.15,52.91,54.04,60.47,8.333333333333334,1,1,0,0,8,2,5,1,772.66669,1057099.5,650509.25,394219.13,0,283.66544,2251.02,3477.3828 +9416,11456,20452,20451,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,6.7886372,6.6629243,0,7,0,7.4016652,0,3,2,2021,11,0,30,8,1,0,0,3.3059449,3.3059449,.05,.05,0,0,0,0,0,0,1,1,0,3.0653803,0,54.04,60.47,58.15,52.91,6.666666666666667,1,1,0,0,8,2,5,1,772.66669,1057099.5,650509.25,394219.13,0,283.66544,2251.02,3477.3828 +9416,11457,20453,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,8.2471848,7.7911363,0,0,0,-1067.7549,-9,-9,-9,2021,9,0,38,0,1,0,0,12.815845,12.815845,.05,.05,0,0,0,0,0,0,1,1,0,2.922576,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,698,-143611.83,32813.016,0,0,0,0,2817.636 +9417,11458,20454,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.3799887,8.46735,0,0,0,-929.7771,-9,3,3,2021,21,9,37,0,1,9,0,12.604439,12.604439,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.91,61.11,-9,-9,3.333333333333333,3,4,0,1,14,5,4,1,412,223058.59,75695.148,327074.88,43539.836,3784.2988,0,1586.0579 +9418,11459,20455,20456,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.3873796,9.6988363,7.3446012,38,1,72.664749,0,2,3,2021,13,4,84,84,1,4,0,15.958714,15.958714,.05,.05,0,0,0,0,0,0,0,0,0,0,7.4891839,57.16,56.15,54.2,57.49,5,1,1,0,0,13,2,5,1,368.5,1359954.4,1002203.6,149102.72,0,0,11749.139,5933.6074 +9418,11459,20456,20455,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1110635,6.701272,0,38,-1,-16.386492,0,3,3,2021,7,0,20,20,1,0,0,7.295579,7.295579,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,368.5,1359954.4,1002203.6,149102.72,0,0,11749.139,5933.6074 +9418,11460,20457,-9,20456,20455,1,0,26,0,0,0,2,2,-9,0,4,7.0040526,6.764215,0,0,0,-980.26923,0,2,1,2021,18,7,40,10,1,7,1,3.4065661,3.4065661,0,0,0,0,0,0,0,0,0,0,0,0,0,42.95,61.24,-9,-9,6.666666666666667,1,1,0,0,6,2,2,1,325,-44853.754,0,0,0,0,0,384.71997 +9419,11461,20458,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.6742787,5.0369716,0,0,-965.72589,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.1397743,0,0,1,1,0,.33677626,5.2928462,66.82000000000001,34.02,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,237,265694.84,0,41894.348,0,0,0,2086.8101 +9420,11462,20459,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.3268681,8.9468107,6.8336143,0,0,-979.66919,0,2,2,2021,22,9,41,35,1,9,0,11.520684,11.520684,.05,.05,0,0,0,0,0,0,1,1,0,6.4732542,6.7173634,28.72,55.83,-9,-9,3.333333333333333,1,1,0,0,8,1,5,1,309,-49188.156,-2412.2288,0,0,6934.7222,1461.0803,2753.873 +9421,11463,20460,-9,20462,-9,1,0,42,0,1,0,2,2,-9,0,4,7.1867323,7.3151588,5.5468178,0,0,-1051.5425,0,3,3,2021,12,0,17,17,1,0,0,7.3108034,7.3108034,.05,.05,0,0,0,0,0,2,1,1,0,6.8415365,0,43.74,55.28,-9,-9,8.333333333333334,1,1,0,0,11,9,2,1,1728.5,30199.621,105037.05,0,0,0,0,1022.6629 +9421,11463,20461,-9,20460,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-999.17035,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,9,2,1,1728.5,30199.621,105037.05,0,0,0,0,1022.6629 +9421,11464,20462,-9,-9,-9,1,0,76,0,1,0,3,3,-9,0,2,0,0,0,0,0,-932.27722,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.3249331,0,59.85,37.69,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,422,431334.34,0,446610.75,0,0,0,1228.4648 +9422,11465,20463,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-955.20624,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,11.991618,0,0,1,1,0,0,0,52,46,-9,-9,8,1,1,0,0,0,11,1,0,901,66956.773,0,0,0,0,0,1683.7992 +9423,11466,20464,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8599982,8.1103516,0,0,0,-805.901,0,2,2,2021,8,0,50,50,1,0,0,5.5807624,5.5807624,.05,.05,0,0,0,0,0,2,0,0,0,5.9713326,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,888,296126.38,19877.311,52978.086,26599.354,0,0,1315.5548 +9424,11467,20465,20466,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,0,0,0,24,-3,72.48925,0,2,-9,2021,12,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,54.2,57.49,1.666666666666667,1,1,0,0,4,1,4,0,513,381639.88,141244.16,222389.34,0,15799.379,0,2864.9729 +9424,11467,20466,20465,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6150608,8.2855568,0,5,3,8.3151169,-9,-9,-9,2021,10,0,37,0,1,0,0,17.200636,17.200636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.9,51.84,1.666666666666667,1,1,0,0,14,1,4,0,513,381639.88,141244.16,222389.34,0,15799.379,0,2864.9729 +9424,11467,20467,-9,20465,20466,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-1016.2638,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3262645,0,59.53,56.44,-9,-9,0,1,1,0,0,0,1,4,0,513,381639.88,141244.16,222389.34,0,15799.379,0,2864.9729 +9424,11468,20468,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1340418,7.5867476,0,0,0,-1119.7024,0,-9,-9,2021,12,0,34,30,1,0,0,11.268991,11.268991,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,6,1,3,0,667,95043.984,-37731.438,0,0,739.2807,0,1738.6981 +9425,11469,20469,20470,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,4.1045356,4.5669613,54,2,-24.720263,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3494205,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,7,7,2,0,285.5,277661.22,193799.95,0,0,0,0,1273.3859 +9425,11469,20470,20469,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,54,-2,7.0651307,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,0,7,2,0,285.5,277661.22,193799.95,0,0,0,0,1273.3859 +9426,11470,20471,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2958317,7.4871225,0,0,0,-1027.3008,0,3,3,2021,11,0,40,38,1,0,0,5.2999749,5.2999749,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.76,48.98,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1267,196280.36,0,276146.25,95712.148,0,0,744.00421 +9427,11471,20472,20473,-9,-9,1,1,49,1,3,0,1,1,-9,0,4,8.2125893,8.5427675,0,27,-1,-17.835258,0,3,3,2021,16,4,40,40,1,4,0,13.751637,13.751637,.05,.05,0,0,0,0,0,0,1,0,1,8.8020725,0,41.61,52.41,51.66,54.88,6.666666666666667,2,3,0,0,14,9,3,1,312,320526.59,190857.33,0,0,0,0,3739.6816 +9427,11471,20473,20472,-9,-9,1,0,50,1,3,0,3,3,-9,0,3,0,0,0,27,1,22.521145,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.66,54.88,41.61,52.41,6.666666666666667,2,3,0,0,0,9,3,1,312,320526.59,190857.33,0,0,0,0,3739.6816 +9427,11472,20474,20475,-9,-9,1,0,26,1,3,0,2,2,-9,0,3,0,0,0,4,0,11.237466,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.65,53.71,57.16,56.15,7,2,3,0,0,0,9,3,1,1968,140776.95,-839.33008,183362.88,157474.28,2413.1731,0,2371.3958 +9427,11472,20475,20474,20473,20472,1,1,26,1,3,0,1,1,-9,0,4,8.6392803,8.275013,0,4,0,1.7479715,0,3,1,2021,8,1,40,40,1,1,0,15.092265,15.092265,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,50.65,53.71,8,2,3,0,0,6,9,3,1,1968,140776.95,-839.33008,183362.88,157474.28,2413.1731,0,2371.3958 +9427,11473,20476,-9,20477,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-998.46106,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,2,3,-9,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9427,11473,20477,-9,-9,-9,1,0,24,1,3,0,2,2,-9,0,4,0,0,0,0,0,-920.73627,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.77,57.64,-9,-9,5,2,3,0,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9427,11473,20478,-9,20477,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.528,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9427,11473,20479,-9,20477,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.6592,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,2,3,-9,0,0,9,1,1,603.25,80898.891,0,0,0,0,0,626.69391 +9428,11474,20480,-9,20483,20482,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1152.3303,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9428,11474,20481,-9,20483,20482,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.1237,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9428,11474,20482,20483,-9,-9,1,1,51,0,2,0,2,2,-9,0,4,0,0,0,5,3,115.05033,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.15,40.86,42.52,57.56,8.333333333333334,3,4,1,1,0,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9428,11474,20483,20482,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.3170424,8.4030457,0,5,-3,-16.829744,0,3,2,2021,14,2,35,35,1,2,0,15.360626,15.360626,0,0,0,0,0,0,0,0,1,1,0,0,0,42.52,57.56,43.15,40.86,3.333333333333333,3,4,0,1,9,8,3,0,1070.5,328827.38,57431.773,338630.81,0,0,0,2806.6899 +9429,11475,20484,-9,20487,20488,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.0558,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20485,-9,20487,20488,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-929.68536,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20486,-9,20487,20488,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.93182,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20487,20488,-9,-9,1,0,46,0,3,0,1,1,-9,1,3,0,0,0,15,5,-37.748734,0,2,2,2021,9,0,0,9,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.04,55.86,44.54,51.51,8.333333333333334,1,1,0,0,3,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9429,11475,20488,20487,-9,-9,1,1,41,0,3,0,1,1,-9,0,2,8.1322498,8.2871113,0,15,-5,-36.17971,0,3,3,2021,18,7,40,40,1,7,0,11.259736,11.259736,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.54,51.51,49.04,55.86,6.666666666666667,1,1,0,0,9,13,3,1,949.79999,122057.55,146448.88,152832.5,127990.51,0,0,2080.7869 +9430,11476,20489,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.437027,7.5192757,6.4571366,0,0,-1025.903,0,2,2,2021,10,0,24,22,1,0,0,8.0581636,8.0581636,0,0,0,0,0,0,0,0,1,0,1,6.7091775,0,53.78,48.41,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,2622,1362.8014,112242.22,0,0,0,0,2692.7756 +9431,11477,20490,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,4.8913441,5.3263907,0,0,-1031.8435,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9235101,57.96,43.41,-9,-9,10,3,4,0,0,0,8,2,0,225,-116353.73,0,0,0,0,0,750.68109 +9432,11478,20491,20492,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.4938922,6.1567655,55,-1,-60.323837,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,3.7193949,140.09525,22.029821,0,1,1,0,6.5160136,6.1183701,29.85,28.86,52.71,36.71,5,1,1,0,0,3,2,2,1,302.5,437127.06,91148.531,68396.102,0,0,0,2015.168 +9432,11478,20492,20491,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,4.9846721,4.6786041,55,1,-6.0004654,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.5120158,4.6398096,52.71,36.71,29.85,28.86,5,1,1,0,0,2,2,2,1,302.5,437127.06,91148.531,68396.102,0,0,0,2015.168 +9433,11479,20493,20495,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.5488234,7.6338458,0,21,-3,32.053146,0,2,2,2021,8,0,26,24,1,0,0,6.8079548,6.8079548,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,56.5,48.33,1.666666666666667,1,1,0,0,11,10,5,1,2511.6667,433367.25,433669.78,213896.08,87217.445,5939.292,231.05307,2896.8215 +9433,11479,20494,-9,20493,20495,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-1027.7942,-9,2,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,10,5,1,2511.6667,433367.25,433669.78,213896.08,87217.445,5939.292,231.05307,2896.8215 +9433,11479,20495,20493,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.72826,8.887764,0,21,3,58.882088,0,2,2,2021,11,0,45,45,1,0,0,16.253847,16.253847,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,58.15,52.91,6.666666666666667,1,1,0,0,11,10,5,1,2511.6667,433367.25,433669.78,213896.08,87217.445,5939.292,231.05307,2896.8215 +9433,11480,20496,-9,20493,20495,1,1,18,0,0,0,2,2,1,0,4,7.20188,7.7365174,0,0,0,-1047.4353,-9,2,3,2021,7,0,20,0,1,0,1,9.0853777,9.0853777,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.08,54.77,-9,-9,10,1,1,0,0,4,10,3,1,854,34677.711,10140.601,0,0,0,0,316.32495 +9434,11481,20497,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,7.9579334,8.014513,0,0,0,-1058.6073,0,2,2,2021,7,0,40,40,1,0,1,9.792345,9.792345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,-9,-9,10,3,4,0,0,4,8,4,1,650,-132349.58,-42884.715,0,0,0,0,994.40704 +9434,11482,20498,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1025.4037,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,3,4,0,0,0,8,1,1,3700,-77774.5,0,0,0,0,915.52893,1455.168 +9435,11483,20499,20500,-9,-9,1,1,89,0,0,0,1,1,-9,0,2,0,8.2574778,8.2863264,68,-3,82.282928,0,1,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,13.511744,0,129.55185,0,1,1,0,0,8.5627441,64.83,29.96,47.81,31.99,6.666666666666667,1,1,0,0,0,9,4,0,308.5,1676169.8,106111.55,530230.75,0,0,0,3601.9722 +9435,11483,20500,20499,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,68,3,31.205643,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,2.3921661,10.804453,27.642529,2,1,1,0,0,0,47.81,31.99,64.83,29.96,8.333333333333334,1,1,0,0,7,9,4,0,308.5,1676169.8,106111.55,530230.75,0,0,0,3601.9722 +9436,11484,20501,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.6794496,7.6810155,0,0,-1027.7941,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,3.2757955,11.689512,17.698164,0,1,1,0,.59162664,7.9375606,50.66,28.63,-9,-9,5,1,1,0,0,0,13,3,1,734,328191.84,420190.38,266257.41,0,0,0,2353.4043 +9437,11485,20502,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,5.8952107,5.7254658,0,0,-1079.8569,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2044075,5.7580013,53.42,52.33,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,541,412082.78,135318.66,60966.625,0,0,0,1378.2917 +9438,11486,20503,20504,-9,-9,1,1,26,1,2,0,2,2,-9,0,3,7.9396806,7.7670622,0,7,-4,-29.979618,-9,-9,-9,2021,10,0,40,0,1,0,0,6.935523,6.935523,0,0,0,0,0,0,0,0,1,1,0,0,0,53.14,51.28,51.66,54.88,8.333333333333334,1,1,0,0,9,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9438,11486,20504,20503,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,8.2920179,8.7157183,0,7,4,-78.9618,0,1,2,2021,6,0,60,60,1,0,0,8.0344791,8.0344791,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,53.14,51.28,8.333333333333334,1,1,0,0,7,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9438,11486,20505,-9,20504,20503,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-856.30536,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9438,11486,20506,-9,20504,20503,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.13739,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,943.5,23650.738,0,127720.45,98265.859,0,0,3443.4695 +9439,11487,20507,20508,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.4257736,8.4137449,0,2,0,-64.320007,0,-9,-9,2021,9,0,40,45,1,1,0,11.833524,11.833524,0,0,0,0,0,0,0,0,0,0,0,0,0,52,55,35.25,55.37,8,1,1,0,0,1,8,5,1,1802,143298.55,0,305624.69,156181.7,21011.938,1175.1713,4079.7693 +9439,11487,20508,20507,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,8.0981874,8.2148676,0,2,0,-211.08363,0,2,2,2021,14,2,37,36,1,2,0,13.1007,13.1007,0,0,0,0,0,0,0,0,0,0,0,7.6776361,0,35.25,55.37,52,55,5,1,1,0,0,8,8,5,1,1802,143298.55,0,305624.69,156181.7,21011.938,1175.1713,4079.7693 +9439,11488,20509,-9,20508,20507,1,1,21,0,0,0,2,2,-9,0,4,8.21626,8.3345356,0,0,0,-999.59894,0,3,3,2021,11,0,45,40,1,0,1,7.9285965,7.9285965,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.11,51.96,-9,-9,5,1,1,0,0,4,8,4,1,2426,-51954.91,-91020.336,0,0,0,0,1068.8345 +9440,11489,20510,-9,20511,20513,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.13635,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9440,11489,20511,20513,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,6.8446317,6.9777598,0,9,-14,-38.023121,0,2,2,2021,6,0,24,24,1,0,0,4.42349,4.42349,0,0,0,0,0,0,0,27,1,1,0,0,0,46.28,62.6,45,39,6.666666666666667,1,1,0,0,10,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9440,11489,20512,-9,20511,20513,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.8602,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9440,11489,20513,20511,-9,-9,1,1,55,0,2,0,3,3,-9,1,2,0,0,0,9,14,53.186699,0,-9,3,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,39,46.28,62.6,3.333333333333333,1,1,0,0,0,12,2,0,507.5,19807.785,0,145968.42,45068.969,0,0,2301.9214 +9441,11490,20514,20516,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.1393738,8.7888412,0,2,-1,-89.885078,0,1,1,2021,1,0,40,40,1,0,0,29.992128,29.992128,.05,.05,0,0,0,0,0,0,0,0,0,4.514472,0,60.39,47.79,33.64,53.56,8.333333333333334,1,1,0,0,10,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9441,11490,20515,-9,-9,20516,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-856.79474,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9441,11490,20516,20514,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,9.3949537,9.8751764,0,2,1,-163.61748,0,-9,-9,2021,21,8,38,43,1,8,0,47.170158,47.170158,.05,.05,0,0,0,0,0,0,0,0,0,3.512367,0,33.64,53.56,60.39,47.79,3.333333333333333,1,1,0,0,2,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9441,11490,20517,-9,-9,20516,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.83929,-9,-9,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,2216.75,1342387.4,417888.44,831127.25,0,0,0,8651.5254 +9442,11491,20518,20520,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3488398,8.0166416,0,11,-1,-43.026798,0,2,1,2021,7,0,40,38,1,0,0,11.171289,11.171289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,51.61,23.91,8.333333333333334,1,1,0,0,12,10,5,1,1000,139709.55,-14166.827,177668.14,47895.996,10211.338,0,3300.0168 +9442,11491,20519,-9,20520,20518,1,0,17,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.51483,0,2,2,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,1,10,5,1,1000,139709.55,-14166.827,177668.14,47895.996,10211.338,0,3300.0168 +9442,11491,20520,20518,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,8.3228884,8.2354145,0,11,1,4.5328403,0,3,3,2021,22,10,48,56,1,10,0,10.282061,10.282061,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.61,23.91,60.12,54.8,3.333333333333333,1,1,0,0,11,10,5,1,1000,139709.55,-14166.827,177668.14,47895.996,10211.338,0,3300.0168 +9443,11492,20521,-9,20522,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1137.4917,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,3,4,-9,0,0,5,1,0,540,127177.09,0,0,0,3457.7302,0,0 +9443,11492,20522,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,0,0,-900.30536,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.49,57.57,-9,-9,5,3,4,0,0,4,5,1,0,540,127177.09,0,0,0,3457.7302,0,0 +9444,11493,20523,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.4786372,6.6933169,0,0,-956.58936,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5380545,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,7,11,2,1,517,693489,135214.17,137916.67,0,0,0,1580.7329 +9445,11494,20524,-9,20525,20527,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.07776,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9445,11494,20525,20527,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.7106104,8.6969204,0,9,-4,-102.50249,0,2,2,2021,14,3,42,2,1,3,0,16.719757,16.719757,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.14,64.63,51.67,60.18,6.666666666666667,1,1,0,0,10,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9445,11494,20526,-9,20525,20527,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.82111,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9445,11494,20527,20525,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.4256229,8.4920082,0,9,4,-86.220032,0,3,3,2021,7,0,40,40,1,0,0,15.068488,15.068488,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,33.14,64.63,8.333333333333334,1,1,0,0,10,4,4,1,963.25,1304765.3,484075.81,270620.81,158848.67,9157.2549,0,3794.168 +9446,11495,20528,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.3991041,7.5744648,0,0,-976.28375,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9190159,7.7926326,55.06,22.2,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,688,626348.94,222051.3,307436.84,0,0,0,1644.2827 +9447,11496,20529,20530,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.3259001,6.7860551,43,-2,19.51865,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.403455,6.67416,59.39,27.3,36.38,55.37,8.333333333333334,1,1,0,0,7,2,2,1,963,692383.25,370980.81,91436.141,0,0,0,781.11371 +9447,11496,20530,20529,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,0,5.2165279,5.7788372,43,2,-19.478428,0,3,2,2021,20,8,0,21,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.0265012,5.6253276,36.38,55.37,59.39,27.3,6.666666666666667,1,1,0,0,13,2,2,1,963,692383.25,370980.81,91436.141,0,0,0,781.11371 +9448,11497,20531,20532,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,9.3118343,8.7961149,0,6,2,-36.692993,0,1,2,2021,7,0,45,50,1,0,0,23.948557,23.948557,0,0,0,0,0,0,0,0,0,0,0,4.2661228,0,58.15,52.91,27.92,64.36,8.333333333333334,1,1,0,0,10,10,5,1,847,226780.91,0,526594.88,292872.09,114.46509,0,4881.4893 +9448,11497,20532,20531,-9,-9,1,0,27,0,0,0,2,2,-9,0,3,8.3017683,8.6009064,0,6,-2,6.3173904,0,-9,-9,2021,24,10,40,40,1,10,0,14.658113,14.658113,0,0,0,0,0,0,0,0,0,0,0,3.5379491,0,27.92,64.36,58.15,52.91,8.333333333333334,1,1,0,0,5,10,5,1,847,226780.91,0,526594.88,292872.09,114.46509,0,4881.4893 +9449,11498,20533,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6673155,8.6922064,0,3,1,79.913132,0,1,1,2021,13,3,37,35,1,3,0,19.38443,19.38443,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.78,55.1,34.64,24.8,8.333333333333334,1,1,0,0,11,1,4,1,1616,-11166.938,16863.889,50399.551,65665.336,6150.3862,0,2779.991 +9449,11499,20534,-9,-9,-9,1,1,37,0,0,0,2,2,-9,1,1,0,5.4757681,5.8703637,3,-1,11.953035,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.2157965,0,34.64,24.8,35.78,55.1,3.333333333333333,1,1,0,0,0,1,4,1,754,86599.242,26344.617,0,0,0,0,307.15607 +9450,11500,20535,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,9.6394882,9.5824175,6.7818837,0,0,-1054.14,0,2,1,2021,17,5,40,40,1,5,0,49.24585,49.24585,.05,.05,0,0,0,0,0,74.5,0,0,0,7.2352352,0,23.45,56.76,-9,-9,1.666666666666667,1,1,0,0,14,8,5,1,923.66669,208878.06,-42227.902,412443.69,127534.91,5902.1978,4139.7485,5654.1948 +9450,11500,20536,-9,20535,-9,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1076.9969,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,923.66669,208878.06,-42227.902,412443.69,127534.91,5902.1978,4139.7485,5654.1948 +9450,11500,20537,-9,20535,-9,1,0,17,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1078.2012,-9,1,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.1855033,0,36.33,59.23,-9,-9,6.666666666666667,1,1,0,0,0,8,5,1,923.66669,208878.06,-42227.902,412443.69,127534.91,5902.1978,4139.7485,5654.1948 +9451,11501,20538,20540,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,6,-12,7.5353751,0,-9,-9,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.36,46.66,61.86,20.46,5,1,1,1,1,3,11,2,0,1809,-31680.391,-88943.609,0,0,0,0,1903.557 +9451,11501,20539,-9,20538,20540,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.25171,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,0,1809,-31680.391,-88943.609,0,0,0,0,1903.557 +9451,11501,20540,20538,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.5446711,7.2051611,0,6,12,20.413273,0,-9,-9,2021,8,0,24,24,1,0,0,6.8831215,6.8831215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.86,20.46,27.36,46.66,8.333333333333334,1,1,0,1,4,11,2,0,1809,-31680.391,-88943.609,0,0,0,0,1903.557 +9452,11502,20541,20542,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.9303799,9.2307768,7.5183425,6,1,-84.469017,0,1,2,2021,11,0,55,50,1,0,0,14.99641,14.99641,.05,.05,0,0,0,0,0,0,0,0,0,7.2565975,0,54.1,59.11,51.82,25.25,8.333333333333334,1,1,0,0,7,5,5,1,754.5,727981.5,355721.94,211535.84,0,18937.439,0,5038.4902 +9452,11502,20542,20541,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1640368,7.7454648,0,6,-1,-41.663162,0,2,1,2021,18,6,30,35,1,6,0,15.353102,15.353102,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.82,25.25,54.1,59.11,8.333333333333334,1,1,0,0,6,5,5,1,754.5,727981.5,355721.94,211535.84,0,18937.439,0,5038.4902 +9452,11503,20543,-9,20542,20541,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1101.5103,1,2,1,2021,9,0,0,20,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,5,5,2,1,1433,0,0,0,0,0,0,0 +9452,11504,20544,-9,20542,20541,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1031.0352,-9,2,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,63.38,53.47,-9,-9,10,1,1,0,0,2,5,1,1,1169,38389.266,0,0,0,0,0,0 +9453,11505,20545,-9,20546,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.0215,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,1,0,528.5,-124393.52,32530.098,0,0,-319.84882,0,1392.998 +9453,11505,20546,-9,-9,-9,1,0,40,0,1,0,3,3,-9,1,2,0,0,0,0,0,-1044.7125,-9,3,3,2021,15,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,44.95,25.48,-9,-9,6.666666666666667,2,3,0,1,0,6,1,0,528.5,-124393.52,32530.098,0,0,-319.84882,0,1392.998 +9453,11506,20547,-9,20546,-9,1,0,19,0,1,1,2,0,0,0,3,0,0,0,0,0,-839.84973,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,6.916173,0,28.39,57.31,-9,-9,8.333333333333334,2,3,0,0,0,6,1,0,312,-91137.797,0,0,0,0,0,820.38202 +9454,11507,20548,20551,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,8.4413185,8.5987644,0,3,-11,21.242479,0,3,3,2021,35,12,38,37,1,12,0,14.073895,14.073895,0,0,0,0,0,0,0,0,1,1,0,1.3929522,0,20.13,58.37,41.7,60.44,6.666666666666667,1,1,0,0,8,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9454,11507,20549,-9,20548,-9,1,1,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-920.20825,-9,1,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.88,48.2,-9,-9,5,1,1,0,0,0,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9454,11507,20550,-9,20548,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1013.2473,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,1,1,-9,0,0,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9454,11507,20551,20548,-9,-9,1,1,65,0,1,0,3,3,-9,0,3,0,6.4894171,6.6435027,3,11,-21.289167,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7624359,41.7,60.44,20.13,58.37,0,1,1,0,0,0,4,3,1,804.25,228714.55,137025.36,94122.5,0,0,0,3039.7964 +9455,11508,20552,20553,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,6.4333215,6.4241362,8,0,151.14471,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8261275,6.6939988,36.91,38.64,57.09,46.7,1.666666666666667,3,4,0,0,0,8,2,1,398,779516.69,153170.02,588971,0,0,0,2376.146 +9455,11508,20553,20552,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,6.7667475,6.9456353,8,9,-179.48271,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.297883,6.711473,57.09,46.7,36.91,38.64,8.333333333333334,1,1,0,0,0,8,2,1,398,779516.69,153170.02,588971,0,0,0,2376.146 +9455,11509,20554,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,7.7853351,8.0293093,0,0,0,-1127.0704,0,-9,-9,2021,10,0,40,40,1,0,0,6.6779408,6.6779408,.05,.05,0,0,0,0,0,0,1,1,0,4.5007463,0,46.63,59.72,-9,-9,5,1,1,0,0,9,8,3,1,520,255926.05,-14600.275,0,0,0,0,759.46362 +9456,11510,20555,20556,-9,-9,1,0,49,0,1,0,1,1,-9,0,5,8.5154705,8.6919718,0,12,1,152.96207,0,-9,-9,2021,6,0,50,52,1,0,0,9.2570171,9.2570171,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,54.1,59.11,10,1,1,0,0,14,10,5,1,376,308196.88,28991.02,589686.25,243157,12150.487,13252.8,4809.9053 +9456,11510,20556,20555,-9,-9,1,1,48,0,1,0,1,1,-9,0,5,8.9433908,9.102478,0,24,-1,26.969744,0,1,1,2021,9,0,35,35,1,0,0,19.004135,19.004135,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.73,58.82,8.333333333333334,1,1,0,0,11,10,5,1,376,308196.88,28991.02,589686.25,243157,12150.487,13252.8,4809.9053 +9456,11510,20557,-9,20555,20556,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-910.08551,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,376,308196.88,28991.02,589686.25,243157,12150.487,13252.8,4809.9053 +9457,11511,20558,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.0254812,8.5261841,0,0,0,-1047.5559,0,3,2,2021,16,4,40,40,1,4,0,11.638738,11.638738,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,609,207520.22,83930.82,33478.945,-7938.0068,0,518.10327,2137.4207 +9457,11512,20559,-9,20558,-9,1,1,19,0,0,1,2,0,0,0,4,0,4.0010667,3.9590111,0,0,-862.33667,-9,1,-9,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,7,0,0,0,6.9957957,0,39.33,58.88,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1488,-126755.08,0,0,0,0,0,488.52997 +9458,11513,20560,20561,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,3.3569269,4.1126003,3.3742352,40,1,-13.281714,0,2,2,2021,14,0,9,12,1,3,0,.28964078,.28964078,0,0,0,0,0,0,0,2,0,0,0,0,3.154377,42.6,29.19,42.85,45.55,5,1,1,0,0,11,10,3,1,290.5,530344,169733.3,238941.56,0,0,0,1990.1086 +9458,11513,20561,20560,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,8.2568941,8.2210093,40,-1,72.102303,0,2,3,2021,25,11,0,30,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1198134,8.0275316,42.85,45.55,42.6,29.19,8.333333333333334,1,1,0,1,9,10,3,1,290.5,530344,169733.3,238941.56,0,0,0,1990.1086 +9458,11514,20562,-9,20560,20561,1,1,29,0,0,0,1,1,-9,0,3,7.6520391,7.722187,0,0,0,-1073.7268,0,2,1,2021,18,6,24,12,1,6,1,10.048955,10.048955,0,0,0,0,0,0,0,0,0,0,0,0,0,46,53,-9,-9,3.333333333333333,1,1,0,0,3,10,3,1,2294,-154695.77,0,0,0,0,0,1710.8354 +9459,11515,20563,20565,-9,-9,1,1,24,1,1,0,2,2,-9,0,5,8.6352501,8.4968958,0,4,-1,7.700459,0,-9,-9,2021,6,0,35,39,1,0,0,17.175516,17.175516,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,30.25,57.85,8.333333333333334,1,1,0,0,9,2,4,0,515.33331,116053.89,-28793.842,126694.47,121807.29,5500.7573,1011.7673,2632.9773 +9459,11515,20564,-9,20565,20563,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.9987,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,0,515.33331,116053.89,-28793.842,126694.47,121807.29,5500.7573,1011.7673,2632.9773 +9459,11515,20565,20563,-9,-9,1,0,25,1,1,0,1,1,-9,0,3,6.6915517,6.8669558,0,4,1,6.684751,0,-9,-9,2021,17,5,16,16,1,5,0,7.1964474,7.1964474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.25,57.85,57.06,57.76,1.666666666666667,1,1,0,0,3,2,4,0,515.33331,116053.89,-28793.842,126694.47,121807.29,5500.7573,1011.7673,2632.9773 +9460,11516,20566,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-869.68243,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,37,-9,-9,5,1,1,0,0,0,7,1,0,1378,-47296.551,0,0,0,0,0,2651.071 +9461,11517,20567,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1061.0916,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,4,2,0,235,0,0,0,0,0,0,-417.80298 +9462,11518,20568,20569,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,11,6,47.823593,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.08,43.13,37.99,47.35,6.666666666666667,1,1,0,0,1,13,3,1,859,1299623.6,1044525.1,243875.94,0,0,0,1259.2318 +9462,11518,20569,20568,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.1890259,8.1288319,0,11,-6,71.763199,0,3,3,2021,13,2,38,38,1,2,0,9.8243942,9.8243942,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.35,45.08,43.13,6.666666666666667,1,1,0,0,12,13,3,1,859,1299623.6,1044525.1,243875.94,0,0,0,1259.2318 +9462,11519,20570,-9,20569,20568,1,0,30,0,0,0,1,1,-9,0,3,8.4018478,8.3555136,0,1,-1,-9.7363367,0,3,3,2021,10,0,38,38,1,0,0,14.487062,14.487062,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,46,58,6.666666666666667,1,1,0,0,8,13,4,1,1442,-131225.97,3306.3269,157309.89,55652.758,0,0,1667.8916 +9463,11520,20571,20572,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.4291744,8.5984964,7.4315615,26,-12,47.709785,0,2,2,2021,9,0,36,36,1,0,0,15.853636,15.853636,.05,.05,0,0,0,0,0,2,0,0,0,0,7.5010943,46.98,59.35,58.63,40.57,1.666666666666667,1,1,0,0,14,9,5,1,594.5,873055.13,494478.78,349432.25,0,0,0,5313.4365 +9463,11520,20572,20571,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.5392742,8.7694502,7.7372613,25,12,68.71669,0,2,3,2021,8,0,40,40,1,0,0,15.019913,15.019913,.05,.05,0,0,0,0,0,0,0,0,0,8.0296545,8.2017431,58.63,40.57,46.98,59.35,6.666666666666667,1,1,0,0,14,9,5,1,594.5,873055.13,494478.78,349432.25,0,0,0,5313.4365 +9463,11521,20573,-9,20571,20572,1,1,22,0,0,0,1,1,-9,0,4,7.7191038,8.0654821,7.2293448,0,0,-927.8559,0,2,2,2021,9,3,40,0,1,3,1,5.872777,5.872777,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0163965,47,60,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,2478,47093.398,109510.48,0,0,0,0,1223.2941 +9463,11522,20574,-9,20571,20572,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-981.06592,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2114215,0,56.41,53.71,-9,-9,8.333333333333334,1,1,0,0,3,9,1,1,1588,-19999.318,0,0,0,0,0,2010.0732 +9464,11523,20575,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.267045,7.4416795,0,0,0,-1066.5824,0,2,-9,2021,35,12,15,15,1,12,0,12.809852,12.809852,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.72,39.2,-9,-9,3.333333333333333,3,4,0,1,4,8,2,0,308,30422.342,188758.13,0,0,0,0,226.75456 +9464,11524,20576,-9,20575,-9,1,1,24,0,2,0,2,2,-9,0,5,6.4599977,6.5266948,0,0,0,-1102.0604,0,2,-9,2021,6,1,40,30,1,1,1,2.0180452,2.0180452,0,0,0,0,0,0,0,0,0,0,0,0,0,70.29000000000001,42.14,-9,-9,10,3,4,0,0,4,8,2,0,2159,-23802.695,0,0,0,0,161.89459,459.77502 +9464,11525,20577,-9,20575,-9,1,1,20,0,2,0,2,2,1,0,3,0,0,0,0,0,-956.93817,-9,2,-9,2021,22,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.08,38.91,-9,-9,5,3,4,0,0,1,8,1,0,57,0,0,0,0,0,0,756.78009 +9465,11526,20578,20579,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,0,7.3289146,7.7463999,39,-6,68.870758,0,3,3,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.3285937,7.7234368,57.16,56.15,60.12,54.8,10,1,1,0,0,14,5,5,1,266,862578.88,238110.84,586230.88,79919.523,0,0,4395.6704 +9465,11526,20579,20578,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.425458,8.927659,38,6,31.52247,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,6.5244131,9.1455812,60.12,54.8,57.16,56.15,0,1,1,0,0,15,5,5,1,266,862578.88,238110.84,586230.88,79919.523,0,0,4395.6704 +9466,11527,20580,20581,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.5749216,5.3110671,59,-5,118.83839,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,16.804159,0,0,1,1,0,5.4168916,5.5185261,49.96,40.18,54.96,53.17,10,1,1,0,0,0,5,2,1,2328.5,138897.88,153639.05,0,0,0,0,1486.988 +9466,11527,20581,20580,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.1275077,6.2761383,10,5,171.53687,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0438066,0,54.96,53.17,49.96,40.18,6.666666666666667,1,1,0,0,0,5,2,1,2328.5,138897.88,153639.05,0,0,0,0,1486.988 +9466,11528,20582,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,6.9365911,6.8376217,0,0,-1051.1492,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8515761,6.6397424,52,47,-9,-9,7,4,6,0,0,0,5,2,1,1000,35142.805,261609.91,68396.18,0,4841.606,0,1213.3478 +9467,11529,20583,-9,20585,20587,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.28241,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20584,-9,20585,20587,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-979.55963,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20585,20587,-9,-9,1,0,33,1,3,0,1,1,-9,0,5,5.6329789,5.7157269,0,6,2,92.805038,0,1,1,2021,6,0,1,20,1,0,0,32.132851,32.132851,.05,.05,0,0,0,0,0,0,1,1,0,2.5597279,0,57.06,57.76,38.79,56.81,10,2,3,0,0,6,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20586,-9,20585,20587,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-892.50616,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,4,2,-9,0,0,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9467,11529,20587,20585,-9,-9,1,1,31,1,3,0,1,1,-9,0,3,8.8719149,9.0886145,0,6,-2,112.26959,0,-9,-9,2021,15,3,50,54,1,3,0,18.390123,18.390123,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.79,56.81,57.06,57.76,6.666666666666667,1,1,0,0,7,7,4,1,589.59998,216644.33,95955.281,323244.81,234831.7,9626.2578,1360.4258,3180.1611 +9468,11530,20588,20591,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,25,1,104.61724,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.32,50.22,10,1,1,0,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20589,-9,20588,20591,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.82629,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20590,-9,20588,20591,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1076.842,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20591,20588,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,8.2887793,8.4785938,0,7,-1,7.1566648,0,-9,-9,2021,11,0,43,40,1,0,0,11.088022,11.088022,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.16,56.15,6.666666666666667,1,1,0,0,8,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9468,11530,20592,-9,20588,20591,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-924.86383,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1148.4,-1934.8401,37439.805,109579.98,54516.324,0,0,2282.4211 +9469,11531,20593,20594,-9,-9,1,1,29,0,0,0,2,2,-9,0,2,8.2817688,7.9395962,0,3,4,-22.615009,0,3,3,2021,24,8,40,45,1,8,0,9.8822317,9.8822317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.35,52.43,29.55,44.58,1.666666666666667,1,1,0,0,6,2,4,0,315.5,91620.891,-13602.67,51263.063,70550.188,0,911.08527,2972.3362 +9469,11531,20594,20593,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.0112343,8.4289818,0,3,-4,-29.013695,0,-9,-9,2021,17,5,51,49,1,5,0,5.57621,5.57621,0,0,0,0,0,0,0,0,0,0,0,0,0,29.55,44.58,36.35,52.43,3.333333333333333,1,1,0,0,3,2,4,0,315.5,91620.891,-13602.67,51263.063,70550.188,0,911.08527,2972.3362 +9470,11532,20595,20596,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.0789108,8.0048733,0,10,0,69.86129,0,2,2,2021,14,4,37,35,1,4,0,10.995766,10.995766,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,57.33,53.46,8.333333333333334,1,1,0,0,11,9,5,1,283.33334,640598.44,395308.13,567905.56,268546.5,0,3952.24,5376.5576 +9470,11532,20596,20595,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.2907934,9.5877905,0,10,0,64.26873,0,-9,-9,2021,7,0,55,55,1,0,0,25.143877,25.143877,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,43.84,58.37,8.333333333333334,1,1,0,0,11,9,5,1,283.33334,640598.44,395308.13,567905.56,268546.5,0,3952.24,5376.5576 +9470,11532,20597,-9,20595,20596,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1013.2528,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,283.33334,640598.44,395308.13,567905.56,268546.5,0,3952.24,5376.5576 +9471,11533,20598,20599,-9,20600,1,0,60,0,0,0,1,1,-9,0,4,9.3371754,9.4295626,7.7946858,41,-4,-123.25885,0,1,1,2021,17,4,60,55,1,4,0,20.679825,20.679825,0,0,0,0,0,0,0,2,1,1,0,0,7.8683014,47.36,48.15,66.78,36.6,8.333333333333334,1,1,0,0,13,5,5,0,907.5,3473593.3,484495.06,557421.44,0,0,0,7979.8447 +9471,11533,20599,20598,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,8.8593283,9.4964447,7.8860855,41,4,-80.716606,0,2,2,2021,9,1,45,50,1,1,0,20.315744,20.315744,.05,.05,.05,0,0,0,0,2,1,1,0,.56541318,7.9019175,66.78,36.6,47.36,48.15,8.333333333333334,1,1,0,0,10,5,5,0,907.5,3473593.3,484495.06,557421.44,0,0,0,7979.8447 +9471,11534,20600,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.1002817,8.5420542,0,0,-934.15869,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,2.4465356,0,0,1,1,0,4.185554,7.8395276,65.89,22.13,-9,-9,6.666666666666667,1,1,0,0,0,5,4,0,3851,201825.69,221120.83,134607.39,0,0,0,3291.0193 +9472,11535,20601,-9,20604,20602,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1043.1986,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20602,20604,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.6432142,8.7691841,0,8,1,13.386912,0,-9,-9,2021,8,0,48,40,1,0,0,16.71825,16.71825,.05,.05,0,0,0,0,0,0,1,1,0,5.088294,0,54.77,55.87,49.35,59.64,6.666666666666667,1,1,0,0,10,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20603,-9,20604,20602,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-892.66479,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20604,20602,-9,-9,1,0,43,0,3,0,2,2,-9,0,4,8.0693865,7.7276988,0,19,-1,-19.084732,0,3,3,2021,7,0,10,8,1,0,0,24.253685,24.253685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,54.77,55.87,8.333333333333334,1,1,0,0,10,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9472,11535,20605,-9,20604,20602,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-826.51959,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,4,1,1167.4,2373534,457959.53,213389.94,0,0,0,3857.1348 +9473,11536,20606,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.9682531,7.7679839,0,0,-1149.1041,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1216235,7.4919395,39.95,42.04,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,1286,852795.94,289822.31,574072.25,0,0,0,1527.5343 +9474,11537,20607,20608,-9,-9,1,1,54,0,0,0,3,3,-9,0,5,8.0288124,8.2947922,0,21,3,-113.86806,0,-9,-9,2021,6,0,45,45,1,0,0,9.4106236,9.4106236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.07,51.88,6.666666666666667,2,3,0,0,14,6,4,1,774.5,542538.38,276545.53,192668.94,94512.328,0,2859.8457,1930.9006 +9474,11537,20608,20607,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.0458746,6.6872492,0,21,-3,-46.949837,0,-9,-9,2021,13,1,25,32,1,1,0,5.0741234,5.0741234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.07,51.88,57.06,57.76,8.333333333333334,2,3,0,0,14,6,4,1,774.5,542538.38,276545.53,192668.94,94512.328,0,2859.8457,1930.9006 +9474,11538,20609,-9,20608,20607,1,1,24,0,0,0,1,1,-9,0,4,8.3816423,8.6045942,0,0,0,-1108.9028,0,3,3,2021,8,0,40,38,1,0,1,11.494978,11.494978,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,2,3,0,0,6,6,5,1,7364,-165905.75,-64689.582,0,0,0,0,2626.3789 +9475,11539,20610,-9,20611,20612,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-970.36035,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,5,1,1741.3334,169760.47,139580.44,220182.16,113991.35,0,0,4483.5386 +9475,11539,20611,20612,-9,-9,1,0,39,0,1,0,1,1,-9,1,2,0,0,0,7,-7,43.983215,0,-9,-9,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,41,52,56,6.666666666666667,4,5,0,0,0,6,5,1,1741.3334,169760.47,139580.44,220182.16,113991.35,0,0,4483.5386 +9475,11539,20612,20611,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,9.2489281,9.2730713,0,7,7,152.07983,0,-9,-9,2021,9,0,50,42,1,1,0,25.398556,25.398556,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,56,41,41,8,4,2,0,0,1,6,5,1,1741.3334,169760.47,139580.44,220182.16,113991.35,0,0,4483.5386 +9476,11540,20613,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,0,0,0,0,0,-928.6275,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,-9,-9,8,1,1,1,1,0,13,2,1,556,-37236.102,0,0,0,0,0,310.95587 +9476,11541,20614,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1020.3506,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,55,-9,-9,8,1,1,0,1,0,13,1,1,283,-113636.71,0,0,0,0,0,-47.221779 +9477,11542,20615,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1004.1393,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6714797,0,63.97,43.62,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,477,364026.5,0,128825.39,0,0,0,2148.8608 +9478,11543,20616,20617,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.3517461,6.937572,0,37,-2,-39.268562,0,2,2,2021,6,0,37,37,1,0,0,5.0183616,5.0183616,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,2,3,0,0,6,5,4,0,694.5,497848.06,82448.539,318571.09,37869.719,0,0,2884.6533 +9478,11543,20617,20616,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.5652227,8.5033464,0,37,2,6.9154196,0,3,1,2021,8,1,19,39,1,1,0,25.59931,25.59931,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,1.666666666666667,2,3,0,0,11,5,4,0,694.5,497848.06,82448.539,318571.09,37869.719,0,0,2884.6533 +9479,11544,20618,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1110.0708,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.38,38.31,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,934,0,0,0,0,0,0,1896.2365 +9480,11545,20619,20620,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.6028719,9.5614862,0,29,3,131.24055,0,2,2,2021,11,1,50,50,1,1,0,35.879509,35.879509,.05,.05,0,0,0,0,0,0,0,0,0,.62964845,0,44.85,53.68,58.9,45.74,6.666666666666667,1,1,0,0,9,8,5,1,1322.3334,2357933,1496168.1,1166177,200289.59,0,0,8139.6084 +9480,11545,20620,20619,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,8.9294949,8.8967485,0,29,-3,54.887341,0,2,1,2021,8,0,28,28,1,0,0,18.262909,18.262909,.05,.05,0,0,0,0,0,0,0,0,0,4.934648,0,58.9,45.74,44.85,53.68,8.333333333333334,1,1,0,0,10,8,5,1,1322.3334,2357933,1496168.1,1166177,200289.59,0,0,8139.6084 +9480,11545,20621,-9,20620,20619,1,1,11,0,1,1,3,0,-9,0,1,0,0,0,0,0,-1013.3799,-9,1,1,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,31,33,-9,-9,3,1,1,-9,0,0,8,5,1,1322.3334,2357933,1496168.1,1166177,200289.59,0,0,8139.6084 +9480,11546,20622,-9,20620,20619,1,1,22,0,1,0,1,1,1,0,2,0,0,0,0,0,-1120.1614,-9,1,1,2021,15,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.04,50.19,-9,-9,3.333333333333333,1,1,1,1,3,8,1,1,813,-54980.801,0,0,0,0,1850.028,-872.20837 +9480,11547,20623,-9,20620,20619,1,0,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-984.92236,-9,1,1,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6104393,0,43.69,59.95,-9,-9,6.666666666666667,1,1,0,0,0,8,1,1,428,-44214.934,62597.684,0,0,0,320.87619,-377.96005 +9481,11548,20624,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,8.2106781,8.2979689,0,0,0,-1008.6248,0,2,2,2021,17,5,37,0,1,5,0,12.395911,12.395911,.05,.05,0,0,0,0,0,0,0,0,0,4.0693812,0,26.1,57.67,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,215,330038.53,113500.52,230562.38,22477.688,0,3784.1899,1637.5785 +9482,11549,20625,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.0837498,7.936758,0,0,0,-1039.9561,0,3,2,2021,12,0,37,37,1,0,0,10.5194,10.5194,.05,.05,0,0,0,0,0,0,1,1,0,1.741171,0,49.04,55.86,-9,-9,5,1,1,0,0,15,2,4,1,184,83365.734,-122119.7,0,0,13002.611,0,1332.745 +9483,11550,20626,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.8434258,7.1847167,0,0,-992.88892,0,2,2,2021,10,1,0,43,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9637125,7.2138505,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,494,350414.66,280408.03,190392.41,0,0,0,752.18787 +9484,11551,20627,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.3416104,7.0667706,0,0,0,-1076.4216,0,3,3,2021,9,0,25,15,1,0,0,6.7023091,6.7023091,.05,.05,0,0,0,0,0,7,0,0,0,.20042905,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,6,2,3,0,3553,43249.211,55791.953,0,0,0,0,212.21008 +9485,11552,20628,20629,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.8760433,8.1120529,0,9,0,-87.718552,0,3,3,2021,9,0,38,38,1,0,0,8.1237545,8.1237545,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,57.35,51.41,56.15,6.666666666666667,1,1,0,0,8,2,4,0,624,-9958.959,23267.5,0,0,33074.398,0,1710.2542 +9485,11552,20629,20628,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,7.7345834,7.8880329,0,9,0,-92.63765,0,-9,-9,2021,15,3,38,38,1,3,0,8.1266041,8.1266041,0,0,0,0,0,0,0,14.5,0,0,0,0,0,51.41,56.15,46.4,57.35,8.333333333333334,1,1,0,0,6,2,4,0,624,-9958.959,23267.5,0,0,33074.398,0,1710.2542 +9486,11553,20630,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,0,7.770968,7.9046645,0,0,-1005.9839,0,1,1,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.1105032,57.06,57.76,-9,-9,10,1,1,0,0,12,11,4,1,1499,-34611.367,-30479.975,0,0,0,0,1369.0028 +9487,11554,20631,-9,20633,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1157.0332,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,405.33334,1283.1742,70187.742,0,0,0,5116.1904,2360.3359 +9487,11554,20632,-9,20633,-9,1,0,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-954.13538,-9,2,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36,45,-9,-9,5,1,1,-9,0,0,12,2,0,405.33334,1283.1742,70187.742,0,0,0,5116.1904,2360.3359 +9487,11554,20633,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,2,6.8886986,7.4414473,6.0271602,0,0,-1065.3187,0,3,2,2021,18,8,12,17,1,8,0,9.341114,9.341114,.05,.05,0,0,0,0,0,27,1,0,1,6.35356,0,27.97,56.89,-9,-9,6.666666666666667,1,1,0,0,6,12,2,0,405.33334,1283.1742,70187.742,0,0,0,5116.1904,2360.3359 +9488,11555,20634,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.5117655,9.0230455,0,0,0,-856.81885,0,2,2,2021,14,2,41,41,1,2,0,19.105726,19.105726,.05,.05,0,0,0,0,0,2,0,0,0,1.6668599,0,40.62,51.79,-9,-9,5,1,1,0,0,10,6,5,1,271,290636.47,375521.19,171518.2,92705.406,3213.9048,1068.4521,1628.6115 +9489,11556,20635,20636,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.2533979,8.0202541,12,8,51.96373,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0701752,54.79,55.86,57.33,53.46,8.333333333333334,1,1,0,0,0,6,4,1,2286,978314.13,493016.69,161572.86,0,0,0,3339.8672 +9489,11556,20636,20635,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.2011056,6.7351246,26,-8,-41.808399,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.54422426,6.3584437,57.33,53.46,54.79,55.86,8.333333333333334,1,1,0,0,11,6,4,1,2286,978314.13,493016.69,161572.86,0,0,0,3339.8672 +9490,11557,20637,20638,-9,-9,1,1,49,0,0,0,2,2,-9,0,1,8.1386814,8.4655619,0,7,-12,46.891846,0,2,3,2021,11,2,36,36,1,2,0,14.648132,14.648132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.61,41.04,36.6,48.26,5,1,1,0,0,7,4,4,1,1001.5,238839.72,123047.31,113943.09,16429.447,0,0,2353.3594 +9490,11557,20638,20637,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.9797378,8.0058918,0,7,12,-6.71977,0,3,-9,2021,16,4,40,38,1,4,0,9.5607748,9.5607748,0,0,0,0,0,0,0,0,0,0,0,0,0,36.6,48.26,49.61,41.04,8.333333333333334,1,1,0,0,9,4,4,1,1001.5,238839.72,123047.31,113943.09,16429.447,0,0,2353.3594 +9491,11558,20639,20640,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,8.0767269,8.0512791,0,8,11,175.66632,0,3,2,2021,7,0,32,37,1,0,0,13.202934,13.202934,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,40.71,62.41,8.333333333333334,1,1,0,0,12,5,5,1,641,39880.703,121211.27,120428.81,86456.813,35342.559,19044.789,3110.1042 +9491,11558,20640,20639,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.2870865,8.3566084,0,8,-11,66.814056,0,2,2,2021,5,0,40,0,1,0,0,15.923099,15.923099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,55.96,49.93,10,1,1,0,0,12,5,5,1,641,39880.703,121211.27,120428.81,86456.813,35342.559,19044.789,3110.1042 +9492,11559,20641,20642,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,42,-1,-52.77898,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6826587,0,66.44,47.81,58.56,44.55,10,1,1,0,0,0,10,2,1,683,452956.28,313094.34,223355.59,0,0,0,1745.8997 +9492,11559,20642,20641,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.2659039,7.106842,0,42,1,-33.581276,0,3,3,2021,9,0,50,50,1,0,0,3.4158051,3.4158051,0,0,0,0,0,0,0,0,0,0,0,3.4041834,0,58.56,44.55,66.44,47.81,8.333333333333334,1,1,0,0,12,10,2,1,683,452956.28,313094.34,223355.59,0,0,0,1745.8997 +9493,11560,20643,20644,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,3,0,0,0,2,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.01,22.04,31.9,19.36,1.666666666666667,1,1,0,1,0,12,1,0,315.5,59278.406,-34639.211,0,0,0,10211.947,1639.9846 +9493,11560,20644,20643,-9,-9,1,0,52,0,0,0,2,2,-9,1,1,0,0,0,3,0,0,0,3,3,2021,32,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,31.9,19.36,26.01,22.04,3.333333333333333,1,1,0,1,0,12,1,0,315.5,59278.406,-34639.211,0,0,0,10211.947,1639.9846 +9494,11561,20645,20647,-9,-9,1,1,63,0,1,0,3,3,-9,0,3,8.9864054,8.7218637,6.7996354,9,10,65.212753,0,3,3,2021,6,0,38,38,1,0,0,21.53842,21.53842,0,0,0,0,0,0,0,0,1,1,0,3.1242769,7.2132254,48.91,50.44,37.2,56.1,8.333333333333334,1,1,0,0,11,9,4,0,412.66666,1901024.1,1801809.4,0,0,0,0,4242.874 +9494,11561,20646,-9,20647,20645,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.8483,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,0,412.66666,1901024.1,1801809.4,0,0,0,0,4242.874 +9494,11561,20647,20645,-9,-9,1,0,53,0,1,0,3,3,-9,1,2,6.6681514,7.0236945,0,9,-10,32.796432,0,3,3,2021,9,0,15,15,1,0,0,5.8247457,5.8247457,0,0,0,0,0,0,0,111,1,1,0,0,0,37.2,56.1,48.91,50.44,5,1,1,0,0,8,9,4,0,412.66666,1901024.1,1801809.4,0,0,0,0,4242.874 +9495,11562,20648,-9,20650,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1009.2552,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,913.66669,-2295.9661,-35716.027,0,0,0,0,1980.4204 +9495,11562,20649,-9,20650,-9,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1002.6755,-9,3,-9,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36,45,-9,-9,5,1,1,-9,0,0,7,3,1,913.66669,-2295.9661,-35716.027,0,0,0,0,1980.4204 +9495,11562,20650,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.5041137,7.6477232,6.7420211,0,0,-1017.7198,0,-9,-9,2021,11,0,29,29,1,0,0,7.9905453,7.9905453,.05,.05,0,0,0,0,0,0,1,0,1,7.0092077,0,55.76,52.64,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,913.66669,-2295.9661,-35716.027,0,0,0,0,1980.4204 +9496,11563,20651,20652,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.5130506,7.5622826,0,26,-5,23.352058,0,2,2,2021,9,0,29,34,1,0,0,7.7399707,7.7399707,0,0,0,0,0,0,0,14.5,0,0,0,2.8001282,0,58.32,50.22,61.01,50.48,8.333333333333334,1,1,0,0,11,4,5,1,207,726105.38,98487.375,444762.38,0,0,0,4297.5273 +9496,11563,20652,20651,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.9445505,9.3937654,5.5155983,27,5,110.30483,0,-9,-9,2021,7,0,35,37,1,0,0,38.087029,38.087029,0,0,0,0,0,0,0,0,0,0,0,5.8063321,5.8038931,61.01,50.48,58.32,50.22,10,1,1,0,0,10,4,5,1,207,726105.38,98487.375,444762.38,0,0,0,4297.5273 +9497,11564,20653,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.974184,7.3556981,0,0,-916.96124,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0298686,7.179729,45.38,47.41,-9,-9,10,1,1,0,0,0,9,3,1,1597,382708.94,350949.53,284226.25,0,0,0,1109.8102 +9498,11565,20654,20655,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.9710503,8.9268913,0,6,-4,44.592129,0,-9,-9,2021,22,9,33,32,1,9,0,28.620544,28.620544,0,0,0,0,0,0,0,93,1,1,0,0,0,37.52,61.39,51.83,57.2,3.333333333333333,1,1,0,0,7,6,4,1,280,489039.63,352315.31,67323.898,24115.156,7497.5488,0,3092.2534 +9498,11565,20655,20654,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,0,0,0,6,4,-55.500557,0,3,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,37.52,61.39,6.666666666666667,1,1,0,0,2,6,4,1,280,489039.63,352315.31,67323.898,24115.156,7497.5488,0,3092.2534 +9499,11566,20656,20657,-9,-9,1,1,78,0,1,0,1,1,-9,0,3,0,6.922008,6.6919079,16,24,71.610962,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8808112,6.7795467,47.13,48.65,53.23,42.31,8.333333333333334,1,1,0,0,12,10,2,1,630,655037.31,36642.676,439883.16,0,0,0,1840.3899 +9499,11566,20657,20656,-9,-9,1,0,54,0,1,0,1,1,-9,1,2,0,0,0,16,-24,-13.801474,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,42.31,47.13,48.65,6.666666666666667,1,1,0,1,5,10,2,1,630,655037.31,36642.676,439883.16,0,0,0,1840.3899 +9499,11566,20658,-9,20657,20656,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-963.8606,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,2,1,630,655037.31,36642.676,439883.16,0,0,0,1840.3899 +9500,11567,20659,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,9.2482347,9.1911888,0,0,0,-1048.5483,0,-9,3,2021,10,0,44,48,1,0,0,24.413675,24.413675,0,0,0,0,0,0,0,0,0,0,0,0,0,53.39,50.01,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,936,1372623.6,527275.19,534989.81,0,0,0,3245.5574 +9501,11568,20660,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.4409146,8.0991201,7.2154374,0,0,-1023.8292,0,3,3,2021,6,0,24,24,1,0,0,8.3865767,8.3865767,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2145739,58.89,48.6,-9,-9,1.666666666666667,3,4,0,0,13,8,4,1,115,926040.38,195587.64,743125.44,0,0,0,1974.1918 +9502,11569,20661,-9,20663,20664,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.0827,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9502,11569,20662,-9,20663,20664,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1123.4362,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9502,11569,20663,20664,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,8.2997103,8.3325834,0,8,-4,-34.317924,0,3,3,2021,13,2,38,38,1,2,0,7.1272874,7.1272874,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,33.21,53.72,8.333333333333334,1,1,0,0,11,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9502,11569,20664,20663,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.2653589,8.6434803,0,24,4,40.833515,0,3,3,2021,9,2,55,55,1,2,0,13.578072,13.578072,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.21,53.72,46.63,59.72,8.333333333333334,1,1,0,0,11,6,4,0,2023.5,808105.13,717591.38,247281.56,187060.02,3961.0928,3225.324,3542.0742 +9503,11570,20665,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.1794815,6.2390723,0,0,-979.39288,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,.43943048,0,0,1,1,0,5.6289387,6.531579,41.95,35.21,-9,-9,5,1,1,0,0,12,7,2,1,750,471189.53,158766.2,198150.95,0,2384.5068,0,1553.1337 +9504,11571,20666,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-969.09583,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.41,16.97,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,473,223893.16,0,201586.48,0,0,0,903.7478 +9505,11572,20667,-9,20668,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-932.21332,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9505,11572,20668,-9,-9,-9,1,0,37,0,2,0,3,3,-9,0,3,7.6228881,7.9349914,6.0488205,0,0,-953.25031,0,2,2,2021,12,1,36,39,1,1,0,5.5429225,5.5429225,.05,.05,0,0,0,0,0,0,1,1,0,5.623673,0,35.34,44.5,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9505,11572,20669,-9,20668,-9,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-891.16528,-9,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,0,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9505,11572,20670,-9,20668,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.06238,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,4,3,0,951,292.81055,2207.791,0,0,0,-245.04733,2992.5776 +9506,11573,20671,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,6.9758368,7.8183131,7.0926933,0,0,-878.20288,0,3,3,2021,10,0,32,24,1,0,0,5.6941018,5.6941018,.05,.05,0,0,0,0,0,0,0,0,0,2.3500977,7.2898655,46.05,33,-9,-9,8.333333333333334,1,1,0,0,5,5,3,0,1628,207406.88,8551.6914,0,0,15538.938,0,1228.7861 +9507,11574,20672,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.7979355,8.8673458,0,0,0,-934.10535,0,1,2,2021,10,0,45,59,1,0,0,18.136126,18.136126,.05,.05,0,0,0,0,0,0,0,0,0,3.2713194,0,42.34,59.15,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,1032,4361.6353,21930.262,416372.31,350468.06,1568.7899,0,2853.0151 +9508,11575,20673,20674,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,41,-3,0,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49.56,19.32,52.47,11.65,8.333333333333334,1,1,0,0,0,7,1,1,1209.5,35664.363,0,0,0,0,0,1986.3691 +9508,11575,20674,20673,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,41,3,0,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,79.065811,0,0,1,1,0,0,0,52.47,11.65,49.56,19.32,8.333333333333334,1,1,0,0,0,7,1,1,1209.5,35664.363,0,0,0,0,0,1986.3691 +9509,11576,20675,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.8454647,8.7452526,0,0,0,-935.9939,0,3,3,2021,13,1,57,40,1,1,0,12.157317,12.157317,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.86,41.35,-9,-9,5,1,1,0,0,7,1,5,1,1027,601360.25,569029.13,0,0,0,0,1533.9821 +9510,11577,20676,20677,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,9.1973734,8.9404001,6.2113667,5,0,-7.3500671,0,-9,-9,2021,7,0,40,48,1,0,0,31.432028,31.432028,.05,.05,0,0,0,0,0,0,1,1,0,6.5532665,0,54.2,57.49,47.55,57.73,8.333333333333334,1,1,0,0,12,2,5,1,399,1730956.5,951538.63,535025.81,15123.262,0,6526.2622,4445.9126 +9510,11577,20677,20676,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.8532548,7.6634102,0,5,0,69.621445,0,2,2,2021,7,0,30,30,1,0,0,9.6784754,9.6784754,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,57.73,54.2,57.49,8.333333333333334,1,1,0,0,10,2,5,1,399,1730956.5,951538.63,535025.81,15123.262,0,6526.2622,4445.9126 +9511,11578,20678,20679,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,7.0027719,7.4255786,9,1,-2.8213751,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0107422,7.4473333,54.36,39.67,55.19,54.26,8.333333333333334,1,1,0,0,0,9,4,1,993,963287.25,571969,189389.09,0,0,0,4384.2393 +9511,11578,20679,20678,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,8.4039068,8.4556551,9,-1,84.610405,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8210325,8.4903421,55.19,54.26,54.36,39.67,8.333333333333334,1,1,0,0,5,9,4,1,993,963287.25,571969,189389.09,0,0,0,4384.2393 +9512,11579,20680,20681,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.3864284,7.7371926,48,5,-3.570926,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9874694,7.823401,47.55,44.33,55.48,57.1,8.333333333333334,1,1,0,0,0,5,3,1,836.5,665196.88,343567.31,306819.72,0,4360.208,0,1227.7455 +9512,11579,20681,20680,-9,-9,1,0,68,0,0,0,3,3,-9,0,5,0,0,0,48,-5,72.288986,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0022426,0,55.48,57.1,47.55,44.33,8.333333333333334,1,1,0,0,0,5,3,1,836.5,665196.88,343567.31,306819.72,0,4360.208,0,1227.7455 +9513,11580,20682,20683,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,9.5730791,9.83358,0,11,8,-104.77583,0,1,1,2021,9,0,39,39,1,0,0,41.729809,41.729809,0,0,.05,0,0,0,0,0,0,0,0,4.1571174,0,51.83,57.2,55.79,52.62,8.333333333333334,1,1,0,0,11,7,5,1,351.5,2424764,231014.16,1060346.8,0,0,0,6177.1807 +9513,11580,20683,20682,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.7701998,8.7536545,0,11,-8,60.320488,0,1,1,2021,11,2,38,37,1,2,0,16.24848,16.24848,0,0,.05,0,0,0,0,0,0,0,0,6.7815804,0,55.79,52.62,51.83,57.2,8.333333333333334,1,1,0,0,11,7,5,1,351.5,2424764,231014.16,1060346.8,0,0,0,6177.1807 +9514,11581,20684,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-968.26855,0,3,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.6,35.22,-9,-9,5,1,1,0,0,0,12,1,0,713,-47942.016,0,0,0,0,0,1388.6149 +9515,11582,20685,20686,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,53,3,124.95821,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,56.36,45.47,7,1,1,0,0,0,4,2,1,1483,115947.38,-19849.518,99170.352,0,0,0,1999.3408 +9515,11582,20686,20685,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.4125085,4.685688,53,-3,174.14943,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3211193,4.443068,56.36,45.47,53,47,10,1,1,0,0,0,4,2,1,1483,115947.38,-19849.518,99170.352,0,0,0,1999.3408 +9516,11583,20687,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.9733515,6.0611176,0,0,-980.26154,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3605409,59.22,37.52,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2069,191216.83,217369.73,0,0,1039.0989,0,565.84167 +9517,11584,20688,-9,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,9.0257387,9.2879725,0,0,0,-1095.6931,0,2,2,2021,17,5,74,42,1,5,0,13.119664,13.119664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.21,54.62,-9,-9,1.666666666666667,1,1,0,0,14,10,5,1,421,873718,841566.94,169962.03,0,0,0,2492.8196 +9518,11585,20689,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.1529922,7.093235,0,0,-911.4939,0,3,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.38759285,7.1591964,46.93,37.9,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,2267,41761.063,-10964.169,0,0,0,0,396.92349 +9519,11586,20690,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,7.6453066,7.5962629,5.5538583,0,0,-1068.7887,0,3,3,2021,12,0,42,37,1,0,0,6.5617785,6.5617785,.05,.05,0,0,0,0,0,0,1,1,0,5.3699012,0,38.57,58.06,-9,-9,6.666666666666667,1,1,0,0,12,4,4,1,473,109838.52,165748.83,109634.98,-11493.203,3215.4307,0,1364.6493 +9519,11587,20691,-9,20690,-9,1,1,24,0,0,0,1,1,-9,0,4,8.3490772,8.4412766,0,0,0,-942.41528,-9,1,-9,2021,7,0,38,0,1,0,1,14.841499,14.841499,.05,.05,0,0,0,0,0,0,1,1,0,.27041313,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,4,4,5,1,1793,-131913.63,38292.883,62533.867,89134.422,1154.9935,3581.6235,1387.9026 +9519,11588,20692,-9,20690,-9,1,1,21,0,0,0,1,1,-9,0,4,0,0,0,0,0,-963.55328,-9,1,-9,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,0,4,1,1,1266,-265130.78,0,0,0,0,0,0 +9520,11589,20693,-9,20694,20695,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.7767,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,837,643895.25,107737.66,284778.53,0,6477.917,0,1049.5267 +9520,11589,20694,20695,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,6.20223,6.126307,0,8,-14,91.982475,0,3,2,2021,9,0,8,0,1,0,0,7.7338853,7.7338853,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,51.14,60.45,6.666666666666667,1,1,0,0,6,4,2,0,837,643895.25,107737.66,284778.53,0,6477.917,0,1049.5267 +9520,11589,20695,20694,-9,-9,1,1,41,1,1,0,2,2,-9,0,5,7.1491947,7.2745314,0,8,14,127.56692,0,2,2,2021,7,0,60,35,1,0,0,3.7925525,3.7925525,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,52,54.51,8.333333333333334,1,1,0,0,10,4,2,0,837,643895.25,107737.66,284778.53,0,6477.917,0,1049.5267 +9521,11590,20696,20697,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,0,0,19,-5,70.16375,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.65,28.19,60.02,56.42,8.333333333333334,4,2,0,0,9,9,5,0,994.5,1197198,463650.19,452883.06,0,0,0,3771.2026 +9521,11590,20697,20696,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,8.9845266,8.943965,0,13,5,70.175194,0,-9,-9,2021,6,0,53,50,1,0,0,19.951765,19.951765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,59.65,28.19,6.666666666666667,1,1,0,0,9,9,5,0,994.5,1197198,463650.19,452883.06,0,0,0,3771.2026 +9522,11591,20698,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1048.0157,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,1.9757879,3.395777,19.714535,0,1,1,0,0,0,44.72,21.01,-9,-9,6.666666666666667,1,1,0,1,5,7,2,0,5107,-12300.915,0,0,0,8102.1938,0,933.74042 +9523,11592,20699,20700,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.2051401,8.2908306,0,11,2,-104.43315,0,2,2,2021,15,3,40,40,1,3,0,12.694201,12.694201,.05,.05,0,0,0,0,0,0,1,1,0,4.3119717,0,38.89,52.49,41.78,52.4,8.333333333333334,1,1,0,0,12,6,4,0,216,481875.72,165709.53,358278.72,160383.19,0,0,3712.2358 +9523,11592,20700,20699,-9,-9,1,0,51,0,1,0,1,1,-9,0,5,8.0276623,8.3667927,0,11,-2,85.900948,0,2,2,2021,16,4,42,40,1,4,0,8.3045273,8.3045273,0,0,0,0,0,0,0,2,1,1,0,6.4913192,0,41.78,52.4,38.89,52.49,8.333333333333334,1,1,0,0,12,6,4,0,216,481875.72,165709.53,358278.72,160383.19,0,0,3712.2358 +9523,11592,20701,-9,20700,20699,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-887.99945,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,4,0,216,481875.72,165709.53,358278.72,160383.19,0,0,3712.2358 +9524,11593,20702,20703,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,7.2052803,7.4567628,52,3,31.00795,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0031214,7.3075199,59.7,32.49,59.53,56.44,8.333333333333334,1,1,0,0,0,10,2,0,2574,649654.25,-14393.45,298474.63,0,0,0,1821.499 +9524,11593,20703,20702,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.5282865,5.0725412,52,-3,24.976551,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2230043,5.4876146,59.53,56.44,59.7,32.49,10,1,1,0,0,0,10,2,0,2574,649654.25,-14393.45,298474.63,0,0,0,1821.499 +9525,11594,20704,20705,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,7.0236578,7.1032481,9,-2,108.4844,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9995971,6.5717363,59.63,41.44,58.75,51.28,8.333333333333334,1,1,0,0,0,12,4,1,679,1331142.8,751747.31,206130.45,0,22127.383,1516.3784,6271.5835 +9525,11594,20705,20704,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.3391399,8.3421392,9,2,-100.73579,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7058187,8.6256752,58.75,51.28,59.63,41.44,10,1,1,0,0,0,12,4,1,679,1331142.8,751747.31,206130.45,0,22127.383,1516.3784,6271.5835 +9526,11595,20706,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,6.7115197,7.1901455,6.3345833,0,0,-1080.0962,0,2,3,2021,15,3,10,0,1,3,0,9.4627419,9.4627419,0,0,0,0,0,0,0,0,0,0,0,6.8156819,0,21.17,57.13,-9,-9,1.666666666666667,1,1,0,1,13,7,3,1,579,589483.25,468179.88,243313.73,108141.18,0,0,680.27692 +9527,11596,20707,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,6.935843,7.2462091,0,0,0,-1061.1409,0,-9,-9,2021,5,0,24,20,1,0,0,7.3377566,7.3377566,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,6,3,0,352,498510.84,101997.64,250540.34,0,0,0,845.53503 +9528,11597,20708,20709,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,8.2667093,8.3779163,0,18,-18,36.973427,0,1,1,2021,6,0,39,38,1,0,0,11.160848,11.160848,0,0,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,52.84,43.58,6.666666666666667,1,1,0,0,12,10,4,1,936.5,2342444.8,1814992.6,402118.06,0,0,-189.21103,2277.8545 +9528,11597,20709,20708,-9,-9,1,1,62,0,1,0,1,1,-9,0,2,7.8586574,7.696959,5.6045856,18,18,-13.873543,0,3,1,2021,8,0,60,60,1,0,0,4.8846068,4.8846068,0,0,0,0,0,0,0,0,1,1,0,5.7826872,5.8611374,52.84,43.58,52.24,50.75,5,1,1,0,1,9,10,4,1,936.5,2342444.8,1814992.6,402118.06,0,0,-189.21103,2277.8545 +9529,11598,20710,20711,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.7864995,6.5220962,46,6,-35.594028,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.4806809,57.76,54.51,35.62,17.95,10,1,1,0,0,7,11,3,1,1124.5,243061.08,59323.109,197597.08,0,4707.1968,0,2240.9365 +9529,11598,20711,20710,-9,-9,1,0,65,0,0,0,1,1,-9,1,1,7.0633483,7.5841107,3.2402825,46,-6,-18.677635,0,3,2,2021,13,4,23,23,1,4,0,8.0724487,8.0724487,0,0,0,0,0,0,0,2,1,1,0,0,2.9373608,35.62,17.95,57.76,54.51,10,1,1,0,0,11,11,3,1,1124.5,243061.08,59323.109,197597.08,0,4707.1968,0,2240.9365 +9530,11599,20712,-9,20714,20715,1,1,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1073.4664,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9530,11599,20713,-9,20714,20715,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.23279,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9530,11599,20714,20715,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.3579712,8.3734798,0,22,-3,-14.774258,0,1,1,2021,12,0,45,45,1,0,0,11.649835,11.649835,.05,.05,0,0,0,0,0,0,0,0,0,3.2867482,0,40.02,49.16,62.66,52.4,5,1,1,0,0,8,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9530,11599,20715,20714,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,9.4363089,9.3559027,0,22,3,66.177589,0,1,1,2021,12,0,60,60,1,0,0,24.195669,24.195669,.05,.05,.05,0,0,0,0,0,0,0,0,4.4900956,0,62.66,52.4,40.02,49.16,8.333333333333334,1,1,0,0,9,12,5,1,620.5,1311527,586363.88,574046.88,50465.539,0,0,5306.2012 +9531,11600,20716,20717,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.7160053,6.9687696,49,-1,56.088596,0,3,2,2021,13,3,0,10,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8480444,6.8905172,50.91,40.78,54.87,40.87,6.666666666666667,1,1,0,0,10,9,2,0,2062.5,747174.63,119259.07,299417.81,0,132.67566,0,1994.9995 +9531,11600,20717,20716,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,6.3856311,6.1417303,48,1,13.12671,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.1124091,54.87,40.87,50.91,40.78,8.333333333333334,1,1,0,0,7,9,2,0,2062.5,747174.63,119259.07,299417.81,0,132.67566,0,1994.9995 +9532,11601,20718,20719,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.0300446,6.6754103,0,6,-7,17.737816,0,-9,-9,2021,13,2,16,16,1,2,0,7.1562824,7.1562824,0,0,0,0,0,0,0,0,0,0,0,5.3417611,0,43.44,49.45,46.73,54.33,5,1,1,0,0,7,10,3,1,158.5,615353,324287.88,366988.06,45349.359,0,0,1031.5325 +9532,11601,20719,20718,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,7.1217299,6.8635907,6,7,23.166763,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9631333,6.9060011,46.73,54.33,43.44,49.45,1.666666666666667,1,1,0,0,3,10,3,1,158.5,615353,324287.88,366988.06,45349.359,0,0,1031.5325 +9533,11602,20720,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.7500553,7.7356033,0,0,0,-1000.9283,0,3,3,2021,12,0,30,30,1,0,0,8.6738386,8.6738386,0,0,0,0,0,0,0,0,0,0,0,0,0,44.08,41.97,-9,-9,8.333333333333334,1,1,0,0,13,13,3,1,583,270489.84,67381.344,263969.41,135127.81,10525.166,3930.5779,895.55621 +9534,11603,20721,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.4626303,5.4357352,0,0,-986.07837,-9,-9,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.757874,0,57.06,57.76,-9,-9,10,1,1,0,0,0,12,2,0,690,58492.184,0,0,0,0,0,630.32159 +9535,11604,20722,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,7.3155589,7.4710746,0,0,-1008.9921,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4708414,64.37,53.06,-9,-9,8.333333333333334,1,1,0,0,11,8,3,0,301,558036.06,373813.28,0,0,0,0,1534.5149 +9535,11605,20723,-9,20722,-9,1,0,30,0,0,0,2,2,-9,0,4,8.6955557,8.4170666,0,0,0,-1003.2337,0,2,2,2021,12,0,44,49,1,0,0,12.715609,12.715609,0,0,0,0,0,0,0,0,1,1,0,2.0755768,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,8,5,0,2308,-110816.07,50605.57,0,0,3290.2119,968.19708,1867.0258 +9536,11606,20724,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.7209425,7.5090032,0,0,-1116.949,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.8494086,7.3116646,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,5,5,3,1,406,539600.81,292856.22,184057.8,0,0,0,1965.1635 +9537,11607,20725,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.588172,8.4796839,0,0,0,-1040.1239,0,2,2,2021,14,3,70,65,1,3,0,9.8321781,9.8321781,0,0,0,0,0,0,0,7,0,0,0,0,0,34.99,54.36,-9,-9,6.666666666666667,1,1,0,0,14,10,5,1,816,735579.63,504859.34,111570.13,0,0,0,1900.61 +9538,11608,20726,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.3040047,7.1545424,0,0,-926.32513,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3449292,6.8178983,49.91,39.62,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,528,527139.63,12126.677,215978.3,0,7834.5283,4917.2866,1334.6471 +9539,11609,20727,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6380377,8.6085415,4.9327483,0,0,-982.26392,0,2,2,2021,8,0,38,37,1,0,0,15.657595,15.657595,0,0,0,0,0,0,0,2,0,0,0,5.4089918,5.7644463,52.58,51.28,-9,-9,10,1,1,0,0,9,8,5,1,729,3661152.8,1286868.9,1829880.9,0,0,0,1606.1626 +9540,11610,20728,20729,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.4047413,9.0284605,8.8140507,11,-2,98.293846,0,-9,-9,2021,7,0,15,14,1,0,0,35.882065,35.882065,.05,.05,0,0,0,0,0,0,0,0,0,0,8.6079845,60.03,45.37,57.07,46.71,8.333333333333334,1,1,0,0,13,8,5,1,2126.5,1846786.9,799311.88,824327.13,0,0,0,5825.6509 +9540,11610,20729,20728,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,5.4506879,5.5853581,0,43,2,51.920673,0,2,1,2021,10,0,4,2,1,0,0,7.5072675,7.5072675,0,0,0,0,0,0,0,0,0,0,0,7.7194614,0,57.07,46.71,60.03,45.37,8.333333333333334,1,1,0,0,13,8,5,1,2126.5,1846786.9,799311.88,824327.13,0,0,0,5825.6509 +9541,11611,20730,-9,20731,20733,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1014.9562,-9,3,1,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.79,57.73,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20731,20733,-9,-9,1,0,40,0,2,0,3,3,-9,1,2,0,0,0,20,-5,84.651199,0,3,3,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.28,44.47,53.14,51.28,6.666666666666667,2,3,0,0,6,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20732,-9,20731,20733,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1075.1,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20733,20731,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,6.4532547,6.4892478,0,10,5,-31.046766,0,-9,-9,2021,11,0,24,24,1,0,0,3.4474516,3.4474516,0,0,0,0,0,0,0,14.5,1,1,0,0,0,53.14,51.28,45.28,44.47,6.666666666666667,2,3,0,0,12,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9541,11611,20734,-9,20731,20733,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.01721,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,6,2,1,1121.8,11698.91,0,0,0,0,0,1535.2567 +9542,11612,20735,20736,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.1400318,8.3483334,0,2,1,-104.28437,0,-9,-9,2021,8,0,60,55,1,0,0,8.053483,8.053483,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,41.65,60.41,8.333333333333334,1,1,0,0,9,2,5,0,1194.5,122807.84,32703.879,0,0,4784.7925,0,2700.5874 +9542,11612,20736,20735,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.1022768,8.1220284,0,2,-1,-64.166916,0,2,1,2021,19,8,44,47,1,8,0,9.8404169,9.8404169,0,0,0,0,0,0,0,0,0,0,0,.19242568,0,41.65,60.41,57.33,53.46,6.666666666666667,1,1,0,0,9,2,5,0,1194.5,122807.84,32703.879,0,0,4784.7925,0,2700.5874 +9543,11613,20737,20738,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4462881,8.4284191,0,8,-1,48.669487,0,-9,-9,2021,11,0,37,37,1,0,0,16.206591,16.206591,.05,.05,0,0,0,0,0,0,0,0,0,1.0166943,0,51.83,57.2,54.79,55.86,10,1,1,0,0,10,11,5,1,642,1640915,1194561.3,435410.63,200645.47,1619.385,0,4118.8643 +9543,11613,20738,20737,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.7930565,8.8676023,0,8,1,-68.373718,0,2,2,2021,8,0,37,37,1,0,0,24.71623,24.71623,.05,.05,0,0,0,0,0,0,0,0,0,1.5504538,0,54.79,55.86,51.83,57.2,10,1,1,0,0,10,11,5,1,642,1640915,1194561.3,435410.63,200645.47,1619.385,0,4118.8643 +9544,11614,20739,-9,-9,-9,1,1,55,1,1,0,2,2,-9,0,2,8.5964222,8.8508806,7.4482641,0,0,-987.65991,0,3,2,2021,27,10,38,38,1,10,0,16.604544,16.604544,.05,.05,.05,0,0,0,0,0,1,0,1,0,7.1321115,36.72,21.24,-9,-9,1.666666666666667,1,1,0,0,8,2,5,1,1128,203884.03,71422.656,0,0,0,0,2902.7515 +9544,11615,20740,20742,-9,-9,1,1,23,1,1,0,2,2,-9,0,3,7.6560965,7.8783503,0,2,-1,99.068962,0,-9,-9,2021,6,0,43,38,1,0,0,5.4994302,5.4994302,0,0,0,0,0,0,0,0,1,0,1,0,0,59.04,48.6,38.39,48.48,10,1,1,0,0,4,2,3,1,664,30186.318,0,0,0,2134.0898,0,2151.5195 +9544,11615,20741,-9,20742,20740,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.43549,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,664,30186.318,0,0,0,2134.0898,0,2151.5195 +9544,11615,20742,20740,-9,20739,1,0,24,1,1,0,2,2,-9,0,3,6.4145923,6.5958819,0,2,1,7.9742584,0,3,2,2021,11,2,20,15,1,2,0,3.6134968,3.6134968,0,0,0,0,0,0,0,0,1,0,1,0,0,38.39,48.48,59.04,48.6,6.666666666666667,1,1,0,0,6,2,3,1,664,30186.318,0,0,0,2134.0898,0,2151.5195 +9544,11616,20743,-9,-9,20739,1,1,29,1,1,0,2,2,-9,0,3,0,0,0,0,0,-831.64832,-9,-9,2,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.31,49.81,-9,-9,3.333333333333333,1,1,1,0,0,2,1,1,201,-13813.403,0,0,0,0,0,-56.703754 +9545,11617,20744,20745,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,8.7103634,9.1012268,0,36,-1,56.445663,0,3,3,2021,6,0,38,38,1,0,0,22.49193,22.49193,0,0,0,0,0,0,0,0,1,1,0,0,0,57.13,44.09,55.76,52.64,10,1,1,0,0,11,6,5,1,544,356602.63,203403.59,319706.72,0,19108.547,0,4042.7046 +9545,11617,20745,20744,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.2525349,8.2246609,7.8868632,36,1,-.31568396,0,2,3,2021,13,2,40,6,1,2,0,3.9609544,3.9609544,.05,.05,0,0,0,0,0,2,1,1,0,0,8.087923,55.76,52.64,57.13,44.09,8.333333333333334,1,1,0,0,12,6,5,1,544,356602.63,203403.59,319706.72,0,19108.547,0,4042.7046 +9545,11618,20746,-9,20744,20745,1,1,31,0,0,0,2,2,-9,0,4,8.1064711,8.0756388,0,0,0,-972.65442,0,2,1,2021,12,0,46,42,1,0,1,6.9063001,6.9063001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,5,1,1,0,0,6,6,4,1,302,-129114.2,-56875.723,0,0,0,0,1144.4158 +9546,11619,20747,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,4,7.0347962,7.1366835,0,0,0,-973.71368,0,2,-9,2021,10,0,90,50,1,0,0,1.4822454,1.4822454,.05,.05,0,0,0,0,0,36,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,3,0,180,55656.453,-64864.859,0,0,7446.4702,0,1064.2976 +9547,11620,20748,-9,20751,20750,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-946.24609,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9547,11620,20749,-9,20751,20750,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.6066,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9547,11620,20750,20751,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,7.2388582,6.9900255,0,17,-4,-12.293039,0,3,2,2021,8,0,40,40,1,0,0,3.779897,3.779897,.05,.05,0,0,0,0,0,0,1,1,0,1.1362784,0,54.2,57.49,54.96,53.17,6.666666666666667,1,1,0,0,11,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9547,11620,20751,20750,-9,-9,1,0,50,0,2,0,2,2,-9,0,3,0,0,0,18,4,-199.89284,0,3,2,2021,8,0,0,3,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7474384,0,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,7,7,2,1,952.25,-14457.443,66117.648,0,0,0,0,780.49725 +9548,11621,20752,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.242651,8.0872602,0,0,0,-995.49084,-9,1,1,2021,17,5,40,0,1,5,0,10.161386,10.161386,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.47,66.09,-9,-9,1.666666666666667,1,1,0,0,7,4,4,0,499,264429.28,206658.52,253096.64,0,1192.0986,3562.3789,1033.6731 +9549,11622,20753,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1018.4991,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50170106,0,56.18,48.32,-9,-9,0,1,1,0,0,0,9,1,0,1784,-71568.156,0,0,0,0,0,1487.9946 +9550,11623,20754,20756,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,9.4081717,9.340826,0,3,-7,-.40154824,0,-9,-9,2021,11,1,30,30,1,1,0,33.11824,33.11824,.05,.05,0,0,0,0,0,0,0,0,0,8.0556278,0,47.32,47.16,53.14,51.28,8.333333333333334,1,1,0,0,5,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9550,11623,20755,-9,20754,20756,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.33295,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9550,11623,20756,20754,-9,-9,1,1,45,1,2,0,1,1,-9,0,3,8.9909468,8.9300098,0,3,7,-61.605446,0,2,2,2021,8,0,47,45,1,0,0,15.409312,15.409312,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,47.32,47.16,8.333333333333334,4,2,0,0,12,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9550,11623,20757,-9,20754,20756,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.40753,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,7,5,1,318.5,1444299.4,305576.44,1226279,379895.72,0,0,7608.3467 +9551,11624,20758,-9,-9,-9,1,1,47,0,0,0,1,1,-9,1,1,0,0,0,0,0,-945.26196,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.89,21.05,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,452,4005.0332,0,0,0,0,0,86.408783 +9552,11625,20759,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.5871062,6.7083325,0,0,-987.31799,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,7.7871523,5.0829954,72.340256,0,1,1,0,4.3485365,6.7621217,44.44,31.22,-9,-9,8.333333333333334,1,1,0,0,6,6,2,1,468,53421.125,-59792.152,0,0,0,0,2379.8098 +9553,11626,20760,20761,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,0,0,0,12,0,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.95,51.13,57.06,57.76,5,1,1,1,0,10,12,1,1,368,120931.95,0,0,0,0,0,-815.71008 +9553,11626,20761,20760,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,0,0,0,12,0,0,0,3,2,2021,4,0,0,30,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,29.95,51.13,10,1,1,0,0,9,12,1,1,368,120931.95,0,0,0,0,0,-815.71008 +9553,11627,20762,-9,20761,20760,1,1,20,0,0,0,2,2,0,0,5,0,6.9174581,6.8177066,0,0,-905.70612,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7035723,0,62.39,56.71,-9,-9,10,1,1,0,0,1,12,2,1,135,59404.23,0,0,0,0,-106.87754,927.84503 +9553,11628,20763,-9,20761,20760,1,1,18,0,0,0,2,2,-9,0,4,0,7.0056796,7.2085037,0,0,-1019.5435,1,2,1,2021,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6297555,0,54.2,57.49,-9,-9,10,1,1,0,0,2,12,3,1,332,36429.895,0,0,0,-1178.6251,0,656.10468 +9554,11629,20764,20765,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.6720877,7.7821741,0,25,-4,-60.352566,0,3,3,2021,11,0,29,30,1,0,0,7.6559134,7.6559134,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,57.16,56.15,6.666666666666667,1,1,0,0,12,4,3,1,583.5,155163.52,59092.605,196122.38,27020.227,0,7905.2539,2189.688 +9554,11629,20765,20764,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.0154047,7.5475326,0,25,4,25.443947,0,-9,-9,2021,6,0,39,39,1,0,0,11.005856,11.005856,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.94,53.18,8.333333333333334,1,1,0,0,9,4,3,1,583.5,155163.52,59092.605,196122.38,27020.227,0,7905.2539,2189.688 +9555,11630,20766,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1008.9329,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.18,18.65,-9,-9,6.666666666666667,1,1,1,0,4,5,2,1,4352,45909.809,0,0,0,0,0,0 +9556,11631,20767,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,4.6503196,4.9088664,0,0,-889.69983,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9378185,59.66,22.66,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,1352,133761.89,0,0,0,0,0,482.60605 +9557,11632,20768,20769,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.6722531,8.2393332,7.429955,8,-10,-91.725067,0,2,2,2021,11,3,30,40,1,3,0,7.8347912,7.8347912,0,0,0,0,0,0,0,0,0,0,0,8.2628803,7.5195923,51.43,29.35,47.58,56.39,8.333333333333334,1,1,0,0,9,4,5,1,279.5,1447384.3,1381626.6,270376.69,0,2344.2227,1325.4832,6536.2686 +9557,11632,20769,20768,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.8353205,8.6967211,5.6497145,8,10,-113.89226,0,-9,-9,2021,8,0,37,37,1,0,0,23.405031,23.405031,.05,.05,0,0,0,0,0,2,0,0,0,2.9490237,5.6134357,47.58,56.39,51.43,29.35,8.333333333333334,1,1,0,0,8,4,5,1,279.5,1447384.3,1381626.6,270376.69,0,2344.2227,1325.4832,6536.2686 +9558,11633,20770,20771,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.2914438,5.5394115,47,-3,132.51616,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0651212,58.73,35.03,62.84,46.85,8.333333333333334,1,1,0,0,6,13,2,1,3520.5,268215.09,164738.03,115980.05,0,0,0,1456.8645 +9558,11633,20771,20770,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.2629862,7.195519,7,3,41.249451,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6609883,7.2784424,62.84,46.85,58.73,35.03,8.333333333333334,1,1,0,0,8,13,2,1,3520.5,268215.09,164738.03,115980.05,0,0,0,1456.8645 +9559,11634,20772,20773,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,55,3,0,0,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8361382,0,53,46,50.69,52.35,8,1,1,0,0,0,13,1,1,406,-2519.1738,61505.68,0,0,0,0,1014.9873 +9559,11634,20773,20772,-9,-9,1,0,73,0,0,0,3,3,-9,0,5,0,0,0,55,-3,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,50.69,52.35,53,46,10,1,1,0,0,0,13,1,1,406,-2519.1738,61505.68,0,0,0,0,1014.9873 +9560,11635,20774,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,7.0481157,6.9175811,0,0,-1018.9016,0,2,2,2021,22,10,0,42,3,10,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,6.7393236,54.15,22.63,-9,-9,6.666666666666667,1,1,1,0,12,11,2,0,766,1802968.4,154636.08,1328645.5,0,0,0,-23.918003 +9561,11636,20775,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.6086302,8.7204857,0,0,0,-1035.3413,0,3,3,2021,14,3,37,40,1,3,0,17.964987,17.964987,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,36.27,60.6,-9,-9,5,1,1,0,0,11,12,5,0,375,938696.19,369127.88,327670.63,0,3272.7354,0,1895.0994 +9562,11637,20776,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1051.7708,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,7.0650291,6.9762311,78.029144,0,1,1,0,0,0,46.4,29.37,-9,-9,5,1,1,0,1,0,12,1,1,130,48210.469,930.83667,101136.72,0,0,0,1161.2349 +9563,11638,20777,20780,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.8550835,8.948844,0,8,2,25.403801,0,-9,-9,2021,7,0,45,40,1,0,0,18.190845,18.190845,.05,.05,0,0,0,0,0,0,1,1,0,2.4861116,0,54.96,53.17,61.01,53.18,8.333333333333334,1,1,0,0,10,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9563,11638,20778,-9,20780,20777,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.73779,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9563,11638,20779,-9,20780,20777,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.20734,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9563,11638,20780,20777,-9,-9,1,0,44,0,2,0,2,2,-9,0,5,7.0278821,6.8552094,0,15,-2,-79.825951,0,3,2,2021,5,0,17,17,1,0,0,8.0393229,8.0393229,0,0,0,0,0,0,0,2,1,1,0,2.7719367,0,61.01,53.18,54.96,53.17,10,1,1,0,0,7,12,4,1,497.75,20360.498,18079.992,174685.38,135130.52,0,0,2940.7292 +9564,11639,20781,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,0,0,0,0,-916.98419,0,1,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,26.59,-9,-9,1.666666666666667,1,1,0,0,4,7,1,0,688,-92802.523,151424.39,0,0,0,0,923.35052 +9565,11640,20782,20783,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.6373777,8.4057808,0,3,0,-5.7488084,-9,2,1,2021,4,0,47,0,1,0,0,12.602948,12.602948,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.49,55.09,57.33,53.46,1.666666666666667,1,1,0,0,6,9,5,0,317,775132.5,138894.69,387755.91,66327.273,0,678.82794,3294.9824 +9565,11640,20783,20782,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.4326429,8.742403,0,3,0,102.39711,0,2,3,2021,6,0,42,43,1,0,0,12.809253,12.809253,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,62.49,55.09,8.333333333333334,1,1,0,0,10,9,5,0,317,775132.5,138894.69,387755.91,66327.273,0,678.82794,3294.9824 +9566,11641,20784,20785,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.8655853,8.6117592,0,7,-1,59.995998,0,2,1,2021,10,1,43,58,1,1,0,15.319192,15.319192,.05,.05,.05,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,8,5,5,1,770,1309145.8,841051.19,343685,65081.566,0,0,5299.7285 +9566,11641,20785,20784,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,8.5098553,8.2672768,7,1,-96.231178,0,3,3,2021,4,0,0,70,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,5.6051931,8.7203627,55.96,49.93,57.16,56.15,10,1,1,0,0,8,5,5,1,770,1309145.8,841051.19,343685,65081.566,0,0,5299.7285 +9567,11642,20786,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.9117651,8.0930204,0,0,0,-1046.338,0,-9,-9,2021,10,0,40,40,1,1,0,7.0686712,7.0686712,.05,.05,0,0,0,0,0,0,0,0,0,.047569662,0,48,59,-9,-9,7,1,1,0,0,7,5,3,0,1063,213580.41,-17849.285,0,0,0,0,944.59369 +9568,11643,20787,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,7.2167935,7.0145168,0,0,-1036.2528,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.65412325,7.3918715,38.63,63.11,-9,-9,8.333333333333334,1,1,0,0,12,11,2,1,435,415493.25,168960.95,166219.17,0,0,0,1937.5365 +9569,11644,20788,20789,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.6700859,8.6280966,0,4,-4,-205.43193,0,-9,-9,2021,10,0,35,35,1,0,0,16.968281,16.968281,0,0,0,0,0,0,0,0,0,0,0,0,0,48.53,58.91,57.06,57.76,8.333333333333334,1,1,0,0,6,12,5,1,1348,44448.711,16743.66,185236.88,163738.28,12397.449,0,9413.5215 +9569,11644,20789,20788,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,9.5643206,9.632123,0,4,4,23.730307,0,2,2,2021,7,0,60,60,1,0,0,32.683777,32.683777,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,48.53,58.91,10,1,1,0,0,10,12,5,1,1348,44448.711,16743.66,185236.88,163738.28,12397.449,0,9413.5215 +9570,11645,20790,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,8.3349648,8.5587788,0,1,2,37.506504,0,3,3,2021,9,0,38,37,1,0,0,18.752151,18.752151,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,61.51,52.79,6.666666666666667,1,1,0,0,9,9,5,0,966,-80856.25,0,0,0,0,0,2090.2527 +9570,11646,20791,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,4,7.964179,7.9489346,0,1,-2,-9.9020596,0,2,2,2021,5,0,38,38,1,0,0,8.623744,8.623744,0,0,0,0,0,0,0,0,0,0,0,0,0,61.51,52.79,50.54,62.09,8.333333333333334,1,1,0,0,9,9,5,0,309,-126182.24,0,0,0,0,0,1157.3029 +9571,11647,20792,20793,-9,-9,1,1,43,1,2,0,2,2,-9,0,3,7.9885955,7.9995255,0,8,12,60.863197,0,-9,-9,2021,7,0,55,30,1,0,0,6.1259251,6.1259251,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,44.75,39.98,8.333333333333334,2,3,0,0,10,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9571,11647,20793,20792,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,8.1511765,8.3052788,0,8,-12,2.3802919,0,3,2,2021,21,8,40,40,1,8,0,9.6789761,9.6789761,0,0,0,0,0,0,0,0,1,1,0,0,0,44.75,39.98,57.33,53.46,6.666666666666667,1,1,0,0,8,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9571,11647,20794,-9,20793,20792,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.56403,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9571,11647,20795,-9,20793,20792,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.34149,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,1422.75,1342584.9,824212.06,369122.94,125978.73,0,0,3086.8608 +9572,11648,20796,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-970.12445,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,2.5350235,0,0,1,1,0,.96667176,0,18.84,25.33,-9,-9,3.333333333333333,1,1,0,0,0,6,1,1,558,426653.88,0,146265.83,0,0,0,284.6759 +9573,11649,20797,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.4034414,8.211957,0,0,0,-957.95538,0,1,1,2021,7,0,39,42,1,0,0,16.31801,16.31801,.05,.05,0,0,0,0,0,0,0,0,0,1.1607082,0,54.1,59.11,-9,-9,10,1,1,0,0,7,8,4,0,208,63287.969,106357.7,0,0,0,0,1400.7721 +9574,11650,20798,20799,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,8.7616663,8.8580132,0,8,-1,22.673376,0,-9,-9,2021,17,6,38,38,1,6,0,18.072334,18.072334,0,0,0,0,0,0,0,0,0,0,0,0,0,40.93,53.95,46.08,57.2,6.666666666666667,1,1,0,0,10,12,5,1,364.5,1635450.5,1323663.5,365499.69,28328.793,0,0,4991.436 +9574,11650,20799,20798,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.032939,9.0132771,0,8,1,-85.829124,0,2,2,2021,11,0,38,40,1,0,0,25.619545,25.619545,.05,.05,0,0,0,0,0,0,0,0,0,2.4236879,0,46.08,57.2,40.93,53.95,8.333333333333334,1,1,0,0,9,12,5,1,364.5,1635450.5,1323663.5,365499.69,28328.793,0,0,4991.436 +9575,11651,20800,20801,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8625708,9.070982,0,6,3,-75.192406,0,2,2,2021,12,0,43,48,1,0,0,20.472681,20.472681,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.67,56.17,25.2,66.67,6.666666666666667,1,1,0,0,12,7,5,1,1496.5,379440.66,-31971.805,243894.59,0,10497.201,3112.4971,4328.668 +9575,11651,20801,20800,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.1129217,8.2003794,0,6,-3,15.470813,0,-9,-9,2021,17,5,44,46,1,5,0,9.2625914,9.2625914,.05,.05,0,0,0,0,0,0,0,0,0,2.5722826,0,25.2,66.67,39.67,56.17,3.333333333333333,1,1,0,0,7,7,5,1,1496.5,379440.66,-31971.805,243894.59,0,10497.201,3112.4971,4328.668 +9576,11652,20802,20803,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,6,0,0,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,42.1,45.61,52,47,1.666666666666667,1,1,0,0,2,6,1,0,381,2253.8887,42075.238,0,0,0,0,2145.6943 +9576,11652,20803,20802,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,6,0,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2820172,0,52,47,42.1,45.61,7,1,1,0,0,0,6,1,0,381,2253.8887,42075.238,0,0,0,0,2145.6943 +9577,11653,20804,20805,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.1170616,7.7906737,0,7,4,76.03746,0,3,2,2021,11,2,40,40,1,2,0,8.56357,8.56357,.05,.05,0,0,0,0,0,2,0,0,0,0,0,49.8,36.69,41.28,54.03,3.333333333333333,1,1,0,0,8,12,5,1,707,695223.75,478641.5,268804.44,79290.891,0,2680.4917,2392.4712 +9577,11653,20805,20804,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.2030582,8.2773542,0,7,-4,102.16514,0,2,3,2021,14,2,42,42,1,2,0,12.465603,12.465603,.05,.05,0,0,0,0,0,7,0,0,0,0,0,41.28,54.03,49.8,36.69,6.666666666666667,1,1,0,0,8,12,5,1,707,695223.75,478641.5,268804.44,79290.891,0,2680.4917,2392.4712 +9577,11654,20806,-9,20805,20804,1,0,21,0,0,0,1,1,1,0,3,7.8251009,7.7456141,0,0,0,-1209.6558,-9,2,2,2021,8,0,42,0,1,0,1,6.9628463,6.9628463,0,0,0,0,0,0,0,2,0,0,0,2.6561449,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,336,-322631.94,0,0,0,0,0,418.49829 +9578,11655,20807,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,1.9710823,2.4301279,0,0,0,-956.76825,0,2,3,2021,23,9,40,0,1,9,0,.022447098,.022447098,0,0,0,0,0,0,0,0,0,0,0,0,0,25.2,55.96,-9,-9,3.333333333333333,2,3,0,1,3,8,2,0,538,60533.547,0,0,0,0,0,-315.29211 +9579,11656,20808,-9,-9,-9,1,1,44,0,0,0,2,2,0,1,3,0,0,0,0,0,-825.32599,-9,2,2,2021,31,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,28.35,37.13,-9,-9,0,1,1,0,1,2,12,1,0,807,9467.6992,0,0,0,0,0,1535.6526 +9580,11657,20809,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,9.3544455,9.3833952,0,0,0,-1021.3085,0,3,2,2021,7,0,40,50,1,0,0,27.920361,27.920361,.05,.05,0,0,0,0,0,0,0,0,0,7.4300914,0,63.55,39.7,-9,-9,8.333333333333334,2,3,0,0,11,9,5,1,368,410331.72,277142.38,226659.5,175606.75,0,0,3845.1252 +9581,11658,20810,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1070.5498,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.63,33.09,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,351,332009.88,0,0,0,0,0,0 +9582,11659,20811,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.7191787,7.7947035,6.9177222,0,0,-946.67657,0,2,2,2021,13,2,37,40,1,2,0,7.8957505,7.8957505,0,0,0,0,0,0,0,0,1,1,0,6.3553276,0,40.72,34.06,-9,-9,3.333333333333333,1,1,0,0,10,10,3,0,437,101442.61,0,0,0,1422.5483,0,1942.7809 +9582,11659,20812,-9,20811,-9,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1049.72,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,3,0,437,101442.61,0,0,0,1422.5483,0,1942.7809 +9583,11660,20813,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6241517,7.5160127,0,0,0,-1025.4611,0,3,2,2021,12,0,31,33,1,0,0,9.434742,9.434742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.89,53.77,-9,-9,6.666666666666667,1,1,0,0,8,6,3,0,1779,-34912.168,-68841.102,0,0,-1953.0598,0,407.1662 +9584,11661,20814,20815,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.9091229,6.8680415,28,3,109.79006,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.104825,7.2370386,61.12,51.57,46.54,48.69,8.333333333333334,1,1,0,0,0,10,3,1,1658.5,1128600.8,780187.63,245386.81,7866.4121,0,3778.2197,2324.2954 +9584,11661,20815,20814,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.8687034,7.550292,28,-3,20.427885,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9347672,7.8214078,46.54,48.69,61.12,51.57,8.333333333333334,1,1,0,0,0,10,3,1,1658.5,1128600.8,780187.63,245386.81,7866.4121,0,3778.2197,2324.2954 +9585,11662,20816,20817,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1041718,7.7201796,0,9,7,-62.040283,0,2,2,2021,12,0,10,10,1,2,0,30.189222,30.189222,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,49,60.6,43.75,7,1,1,0,0,1,7,5,1,1088.5,360934.44,177659.59,0,0,0,0,4205.7168 +9585,11662,20817,20816,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.51089,8.7298918,0,9,-7,-73.474815,0,2,2,2021,11,0,40,47,1,0,0,14.627148,14.627148,.05,.05,0,0,0,0,0,0,1,1,0,7.4944973,0,60.6,43.75,47,49,8.333333333333334,1,1,0,0,10,7,5,1,1088.5,360934.44,177659.59,0,0,0,0,4205.7168 +9585,11663,20818,-9,20816,20817,1,1,21,0,0,0,2,2,-9,0,4,7.8912005,7.9303174,0,0,0,-1025.725,0,2,2,2021,11,0,40,37,1,2,1,11.574544,11.574544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,1,7,4,1,2422,-124049.54,126729.35,0,0,8556.8379,0,1270.6796 +9586,11664,20819,20820,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,8.0524902,8.008997,11,-6,111.41961,0,3,2,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0104675,7.9408898,41.97,55.33,50.49,50.87,8.333333333333334,1,1,0,0,0,10,4,1,261,1178242,584681,306272.03,0,1904.3088,0,4199.875 +9586,11664,20820,20819,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.3608518,7.2145824,11,6,46.671658,0,2,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9185977,7.4600029,50.49,50.87,41.97,55.33,8.333333333333334,1,1,0,0,0,10,4,1,261,1178242,584681,306272.03,0,1904.3088,0,4199.875 +9587,11665,20821,20822,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,11,0,115.82756,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52,54.51,55.36,51.57,8.333333333333334,1,1,0,0,7,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20822,20821,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.1507969,8.4801989,0,11,0,-13.912966,0,-9,-9,2021,8,0,44,39,1,0,0,9.8050985,9.8050985,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.36,51.57,52,54.51,8.333333333333334,1,1,0,0,9,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20823,-9,20821,20822,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.83508,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20824,-9,20821,20822,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1092.8129,-9,2,2,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.9531078,0,44.85,52.06,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9587,11665,20825,-9,20821,20822,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1088.4476,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,3,1,1608,620102.31,603725.5,138091,65087.738,0,1729.9454,2044.8923 +9588,11666,20826,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1012.4178,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5394483,0,62.85,38.46,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,230,-203805.44,0,0,0,0,0,912.14081 +9589,11667,20827,20828,-9,-9,1,0,31,1,1,0,1,1,-9,0,3,8.2476635,8.5917435,0,8,-3,-59.748974,0,-9,-9,2021,11,0,30,45,1,0,0,17.090576,17.090576,0,0,0,0,0,0,0,0,1,1,0,0,0,47.13,48.65,38.52,53.3,8.333333333333334,1,1,0,0,8,12,5,1,505,-6183.7993,24779.008,0,0,0,0,4264.9932 +9589,11667,20828,20827,-9,-9,1,1,34,1,1,0,1,1,-9,0,2,9.3387203,9.186018,0,8,3,78.647232,0,2,2,2021,14,2,44,42,1,2,0,25.811617,25.811617,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.52,53.3,47.13,48.65,6.666666666666667,1,1,0,0,9,12,5,1,505,-6183.7993,24779.008,0,0,0,0,4264.9932 +9589,11667,20829,-9,20827,20828,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.573,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,505,-6183.7993,24779.008,0,0,0,0,4264.9932 +9590,11668,20830,-9,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,7.4574966,7.2793016,0,0,-999.43524,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.2606263,39.64,57.52,-9,-9,6.666666666666667,1,1,0,0,5,11,3,1,512,183844.17,104134.98,0,0,0,0,1109.4807 +9591,11669,20831,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,8.2417107,8.1788216,0,0,-941.45776,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1789856,43.73,53.97,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,1323,1092318.3,691428.13,304867.38,0,-463.18463,0,1860.1254 +9592,11670,20832,-9,-9,-9,1,0,28,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1056.9274,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.55,54.69,-9,-9,3.333333333333333,1,1,1,1,3,4,1,0,2993,-20753.682,0,0,0,0,0,1017.462 +9593,11671,20833,20835,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.1764894,6.8025875,0,15,0,25.811909,0,3,2,2021,8,0,16,16,1,0,0,6.8101354,6.8101354,0,0,0,0,0,0,0,0,1,1,0,0,0,54.01,44.29,48.47,52.25,8.333333333333334,2,3,0,0,14,8,2,0,380,30468.711,-38876.555,0,0,0,5944.5684,1563.1215 +9593,11671,20834,-9,20833,20835,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.5013,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,2,0,380,30468.711,-38876.555,0,0,0,5944.5684,1563.1215 +9593,11671,20835,20833,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,6.2617807,6.5177469,0,15,0,4.4458055,0,2,1,2021,9,0,30,28,1,0,0,2.5892997,2.5892997,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.47,52.25,54.01,44.29,8.333333333333334,2,3,0,0,12,8,2,0,380,30468.711,-38876.555,0,0,0,5944.5684,1563.1215 +9594,11672,20836,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.8352041,7.8914137,0,0,0,-964.50299,0,3,3,2021,10,0,47,48,1,1,0,7.140583,7.140583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,-9,-9,7,1,1,0,0,12,5,4,1,434,109801.91,-22842.461,0,0,0,0,1732.8926 +9595,11673,20837,-9,20838,20839,1,1,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-1084.3182,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.99,60.73,-9,-9,5,2,3,0,0,1,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20838,20839,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,8.1859236,7.9387069,0,27,-4,-11.074032,0,3,3,2021,7,0,25,16,1,0,0,10.538833,10.538833,.05,.05,0,0,0,0,0,2,1,1,0,.061407678,0,62.49,55.09,53.11,35.9,8.333333333333334,2,3,0,0,12,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20839,20838,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.9297876,8.7819319,0,27,4,15.668094,0,3,3,2021,11,1,70,40,1,1,0,8.7411661,8.7411661,.05,.05,0,0,0,0,0,0,1,1,0,3.2238624,0,53.11,35.9,62.49,55.09,10,2,3,0,0,12,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20840,-9,20838,20839,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1058.9836,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.273684,0,54.1,59.11,-9,-9,10,2,3,0,0,1,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9595,11673,20841,-9,20838,20839,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1106.5975,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,5,4,1,1455.4,363325.91,196092.28,117877.57,0,0,-388.42886,3555.3457 +9596,11674,20842,20843,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,7,23,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.34,56.62,40.89,31.37,8.333333333333334,1,1,0,0,0,4,1,0,413.5,0,0,0,0,0,0,1256.9955 +9596,11674,20843,20842,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,7,-23,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.89,31.37,41.34,56.62,5,1,1,0,0,0,4,1,0,413.5,0,0,0,0,0,0,1256.9955 +9597,11675,20844,-9,-9,-9,1,1,42,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.2819,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,51.94,-9,-9,5,1,1,1,0,3,4,1,0,1813,-10388.591,0,0,0,0,0,1267.9677 +9598,11676,20845,-9,20847,20846,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-934.91986,-9,2,1,2021,11,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.91,63.19,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1260.6666,1312340.5,1018877.6,177530.53,0,0,11884.417,4899.5757 +9598,11676,20846,20847,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.4232302,8.9178886,0,31,2,-85.693405,0,3,3,2021,9,0,38,43,1,0,0,32.427181,32.427181,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43.28,61.68,51.13,50.73,5,1,1,0,0,13,2,5,1,1260.6666,1312340.5,1018877.6,177530.53,0,0,11884.417,4899.5757 +9598,11676,20847,20846,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.3409443,8.1245975,0,31,-2,-172.94118,0,2,2,2021,9,0,32,33,1,0,0,14.866853,14.866853,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.13,50.73,43.28,61.68,8.333333333333334,1,1,0,0,13,2,5,1,1260.6666,1312340.5,1018877.6,177530.53,0,0,11884.417,4899.5757 +9598,11677,20848,-9,20847,20846,1,0,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-985.06311,1,2,1,2021,13,2,0,37,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4220586,0,26.21,61.07,-9,-9,6.666666666666667,1,1,0,0,3,2,1,1,566,-40049.238,0,0,0,0,0,29.557156 +9599,11678,20849,20850,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,3.7441168,3.9113679,0,9,-2,.99102783,0,2,2,2021,30,11,44,0,1,11,0,.10889136,.10889136,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.54,59.67,38.57,64.48,6.666666666666667,1,1,0,1,4,5,5,1,555.5,731531.25,612525,296416.97,78282.836,12782.028,16056.429,6984.3589 +9599,11678,20850,20849,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,9.6198692,9.7160892,0,9,2,-10.579104,0,2,2,2021,23,11,55,53,1,11,0,31.442776,31.442776,.05,.05,0,0,0,0,.65574992,0,0,0,0,4.8365612,0,38.57,64.48,34.54,59.67,6.666666666666667,1,1,0,0,10,5,5,1,555.5,731531.25,612525,296416.97,78282.836,12782.028,16056.429,6984.3589 +9600,11679,20851,20852,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.5634832,6.4757342,0,34,1,-65.364861,0,2,3,2021,11,2,10,10,1,2,0,8.2049198,8.2049198,.05,.05,0,0,0,0,0,0,0,0,0,1.6524749,0,46.09,49.17,51.64,50.48,8.333333333333334,1,1,0,0,3,9,4,1,318.5,754539.38,304240.5,394949.25,0,0,0,2293.6128 +9600,11679,20852,20851,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.5640669,8.5725355,0,34,-1,12.192754,0,2,2,2021,15,3,43,42,1,3,0,12.480484,12.480484,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.64,50.48,46.09,49.17,8.333333333333334,1,1,0,0,10,9,4,1,318.5,754539.38,304240.5,394949.25,0,0,0,2293.6128 +9600,11680,20853,-9,20851,20852,1,1,22,0,0,0,2,2,-9,0,4,7.1560397,7.4295669,0,0,0,-1000.264,0,2,2,2021,12,0,24,26,1,0,1,8.2010765,8.2010765,0,0,0,0,0,0,0,0,0,0,0,0,0,35.03,51.4,-9,-9,5,1,1,0,0,6,9,3,1,799,120951.95,0,0,0,0,0,459.32816 +9601,11681,20854,-9,20855,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1049.4928,-9,1,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,0,8,5,0,1076.5,1039241,118209.34,679731.75,0,24232.703,0,3519.8101 +9601,11681,20855,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,9.0359192,9.2439766,0,0,0,-970.28052,0,3,3,2021,21,9,39,38,1,9,0,19.263826,19.263826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44,52.68,-9,-9,8.333333333333334,1,1,0,1,7,8,5,0,1076.5,1039241,118209.34,679731.75,0,24232.703,0,3519.8101 +9602,11682,20856,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,7.2251382,7.2360482,0,0,0,-1065.3462,0,3,3,2021,5,0,26,0,1,0,0,6.9485521,6.9485521,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,54.37,54.8,-9,-9,5,1,1,0,0,1,12,3,0,272,341330.03,156908.86,139304.39,0,0,0,667.22748 +9603,11683,20857,20858,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.8386083,7.8270335,0,4,0,90.163979,0,-9,-9,2021,10,1,40,36,1,1,0,7.7509089,7.7509089,0,0,0,0,0,0,0,0,1,1,0,2.0747836,0,55.79,52.62,54.1,59.11,10,1,1,0,0,8,6,4,0,1050,29068.779,135955.08,174147.25,98136.289,19893.043,2011.9089,3200.3057 +9603,11683,20858,20857,-9,-9,1,1,27,1,1,0,1,1,-9,0,5,8.0402775,8.0836544,0,4,0,-6.5197258,0,2,3,2021,8,0,37,38,1,0,0,8.4198008,8.4198008,.05,.05,0,0,0,0,0,0,1,1,0,1.2476916,0,54.1,59.11,55.79,52.62,8.333333333333334,1,1,0,0,7,6,4,0,1050,29068.779,135955.08,174147.25,98136.289,19893.043,2011.9089,3200.3057 +9603,11683,20859,-9,20857,20858,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.6972,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,6,4,0,1050,29068.779,135955.08,174147.25,98136.289,19893.043,2011.9089,3200.3057 +9604,11684,20860,-9,-9,-9,1,1,92,0,0,0,1,1,-9,0,4,0,8.4177055,8.1888371,0,0,-920.73938,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8625822,8.2530451,48.93,44.08,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1044,306767.53,30701.244,0,0,0,0,2906.5969 +9605,11685,20861,20862,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,44,1,0,0,3,3,2021,11,0,0,40,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,37.17,52.5,7,1,1,0,1,8,13,1,1,3130.5,82725.57,0,0,0,0,0,572.09735 +9605,11685,20862,20861,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,44,-1,0,0,3,3,2021,13,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,52.5,50,47,0,1,1,1,1,0,13,1,1,3130.5,82725.57,0,0,0,0,0,572.09735 +9606,11686,20863,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,6.7455592,6.6522026,0,0,0,-1149.9226,-9,-9,2,2021,12,0,16,0,1,0,0,6.5670819,6.5670819,0,0,0,0,0,0,0,0,1,1,0,0,0,29.99,65.88,-9,-9,1.666666666666667,1,1,0,1,9,10,2,0,189.5,0,0,0,0,0,0,1186.8875 +9606,11686,20864,-9,20863,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.49921,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,2,0,189.5,0,0,0,0,0,0,1186.8875 +9607,11687,20865,20866,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,6.5699544,6.0135407,39,1,19.513557,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8960795,45.37,27.67,37.81,45.02,5,1,1,0,0,0,8,2,0,445.5,57016.258,-7455.9551,0,0,0,0,2742.1621 +9607,11687,20866,20865,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,0,0,0,39,-1,-34.628075,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.87569851,0,37.81,45.02,45.37,27.67,8.333333333333334,1,1,0,0,0,8,2,0,445.5,57016.258,-7455.9551,0,0,0,0,2742.1621 +9607,11688,20867,-9,20870,-9,1,0,10,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1149.9974,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9607,11688,20868,-9,20870,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-916.13794,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9607,11688,20869,-9,20870,-9,1,0,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-929.80579,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9607,11688,20870,-9,20866,20865,1,0,27,0,0,0,2,2,-9,0,2,8.3324566,8.1470165,0,0,0,-948.86157,0,3,3,2021,8,0,49,49,1,0,1,8.3114719,8.3114719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.68,47.98,-9,-9,6.666666666666667,1,1,0,0,5,8,4,0,1415.75,86581.453,-21105.24,0,0,0,2356.1411,1059.3468 +9608,11689,20871,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,0,0,0,0,0,-1007.223,0,2,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.27,60.85,-9,-9,8.333333333333334,1,1,0,0,4,4,1,0,1130.5,-78129.859,0,0,0,0,0,1294.847 +9608,11689,20872,-9,20871,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-871.93549,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1130.5,-78129.859,0,0,0,0,0,1294.847 +9609,11690,20873,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.9882326,6.9043055,0,0,-848.22534,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3223982,41.14,30.1,-9,-9,5,1,1,0,0,0,1,2,0,1246,450950.53,171944.05,122411.7,0,0,0,1483.1559 +9610,11691,20874,20875,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,8.236701,8.6542377,0,8,0,-33.442516,0,-9,-9,2021,6,0,30,30,1,0,0,21.53978,21.53978,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.34,54.09,8.333333333333334,1,1,0,0,9,2,5,1,913,164638.86,66978.992,233882.42,128649.05,0,0,3837.5981 +9610,11691,20875,20874,-9,-9,1,1,34,1,1,0,1,1,-9,0,2,8.8839998,8.7483597,0,8,0,25.466114,0,-9,-9,2021,10,0,37,39,1,0,0,21.391008,21.391008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.34,54.09,51.24,58.84,6.666666666666667,1,1,0,0,7,2,5,1,913,164638.86,66978.992,233882.42,128649.05,0,0,3837.5981 +9610,11691,20876,-9,20874,20875,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-961.24628,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,913,164638.86,66978.992,233882.42,128649.05,0,0,3837.5981 +9611,11692,20877,20880,-9,-9,1,0,34,0,3,0,2,2,-9,0,3,0,0,0,13,-7,-73.871742,0,-9,-9,2021,5,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44,52,50,56,10,2,3,0,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20878,-9,20877,20880,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-922.12018,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20879,-9,20877,20880,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.59399,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20880,20877,20882,-9,1,1,41,0,3,0,1,1,-9,0,4,8.7301893,8.5925484,0,13,7,-21.940413,0,3,-9,2021,10,0,37,37,1,1,0,17.763702,17.763702,.05,.05,0,0,0,0,0,0,1,1,0,6.2967091,0,50,56,44,52,7,2,3,0,0,1,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11692,20881,-9,20877,20880,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1104.3868,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,567.59998,251511.58,200295.95,122505.69,47826.691,1624.8416,677.15607,2644.874 +9611,11693,20882,-9,-9,-9,1,0,75,0,3,0,3,3,-9,0,3,0,0,0,0,0,-1058.5657,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,4,1,1,1415,-28942.742,0,0,0,0,0,348.98578 +9612,11694,20883,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.6879897,7.7458019,0,0,-974.03357,0,-9,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,5.066987,0,0,1,1,0,8.7366753,8.3079262,35.17,15.39,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,201,349869.78,237499.13,212213.38,0,0,0,3526.6096 +9613,11695,20884,20885,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.6486859,7.7331629,6,2,-67.513603,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.964828,0,0,1,1,0,5.3681703,7.7782516,53,47,51,46,7,1,1,0,0,0,13,3,1,1239,1472180,378128.56,210514.44,0,0,0,3445.5261 +9613,11695,20885,20884,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.611937,7.2319403,6,-2,-91.391838,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.3010488,7.3648729,51,46,53,47,7,1,1,0,0,0,13,3,1,1239,1472180,378128.56,210514.44,0,0,0,3445.5261 +9614,11696,20886,20887,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.4688711,6.5748205,6,-1,49.075581,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.7707739,50.59,27.4,51.83,57.2,8.333333333333334,4,2,0,0,5,4,3,1,572,1164770.3,899240.63,247656,0,0,0,1769.7285 +9614,11696,20887,20886,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.783514,7.9933867,6,1,22.749111,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6987391,8.1396189,51.83,57.2,50.59,27.4,3.333333333333333,1,1,0,0,5,4,3,1,572,1164770.3,899240.63,247656,0,0,0,1769.7285 +9615,11697,20888,20891,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.8892508,8.6852789,0,7,4,23.894032,0,3,2,2021,7,0,40,43,1,0,0,18.049356,18.049356,.05,.05,0,0,0,0,0,0,1,1,0,2.2927999,0,52,54.51,35.67,64.46000000000001,6.666666666666667,1,1,0,0,8,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9615,11697,20889,-9,20891,20888,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-908.63855,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9615,11697,20890,-9,20891,20888,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-863.58545,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9615,11697,20891,20888,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.3265696,8.5332689,0,7,-4,19.783844,0,2,2,2021,17,6,41,33,1,6,0,11.646658,11.646658,.05,.05,0,0,0,0,0,0,1,1,0,3.7515688,0,35.67,64.46000000000001,52,54.51,6.666666666666667,1,1,0,0,8,5,5,1,565.25,1753458.4,1303332.4,273981.94,0,0,0,4241.2266 +9616,11698,20892,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1007.1331,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,45.8,17.58,-9,-9,5,1,1,0,0,0,12,1,0,913,30339.098,0,0,0,0,0,1198.1964 +9616,11699,20893,-9,20892,-9,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1078.0973,0,2,2,2021,18,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.64,8.960000000000001,-9,-9,0,1,1,0,0,4,12,1,0,192,-203825.77,226752.64,0,0,3741.2314,0,1325.5673 +9617,11700,20894,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7348204,7.5471778,0,0,-940.05219,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.981936,7.5632915,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,1398,645035.44,313837.44,261654.61,0,6581.2866,0,2149.8972 +9617,11701,20895,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.325263,8.3827534,0,0,0,-1030.5557,0,-9,-9,2021,7,0,30,30,1,0,0,15.697324,15.697324,0,0,0,0,0,0,0,0,1,1,0,1.4731994,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,4,5,1,359,707263.81,463749,120762.09,0,0,0,1670.9628 +9618,11702,20896,20897,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3016958,8.1961622,0,26,3,-84.154327,0,2,2,2021,9,0,35,35,1,1,0,14.187934,14.187934,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,50.86,50.74,8,3,4,0,0,1,8,5,1,677,365727.19,318615.88,177300.47,77155.813,-61.91452,0,4473.3384 +9618,11702,20897,20896,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.9706059,8.8739862,0,26,-3,-2.8925154,0,2,2,2021,10,0,40,40,1,0,0,16.562704,16.562704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.86,50.74,53,54,6.666666666666667,3,4,0,0,10,8,5,1,677,365727.19,318615.88,177300.47,77155.813,-61.91452,0,4473.3384 +9618,11703,20898,-9,20897,20896,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-989.59027,-9,1,2,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,3.333333333333333,3,4,0,0,2,8,1,1,648,-43320.262,0,0,0,0,0,214.34308 +9619,11704,20899,20901,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,10.000703,9.4865589,0,21,0,107.54707,0,2,2,2021,6,0,60,51,1,0,0,34.550148,34.550148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.22,52.7,47.76,48.16,8.333333333333334,1,1,0,0,12,5,5,1,1830,495614.28,350936.22,224221.97,132351.3,755.91663,0,6187.2876 +9619,11704,20900,-9,20901,20899,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5511,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1830,495614.28,350936.22,224221.97,132351.3,755.91663,0,6187.2876 +9619,11704,20901,20899,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.2701502,8.2895727,0,21,0,25.865728,0,1,1,2021,24,12,24,22,1,12,0,17.377102,17.377102,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.76,48.16,53.22,52.7,5,1,1,0,0,14,5,5,1,1830,495614.28,350936.22,224221.97,132351.3,755.91663,0,6187.2876 +9620,11705,20902,20904,-9,-9,1,1,47,0,2,0,2,2,-9,0,5,8.0196047,8.0696745,0,22,-6,115.20992,0,2,2,2021,10,0,34,34,1,0,0,8.6677237,8.6677237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,47.79,40.56,6.666666666666667,1,1,0,0,6,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9620,11705,20903,-9,20904,20902,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.87146,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9620,11705,20904,20902,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,0,0,0,22,6,-85.212158,0,2,2,2021,16,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.9984097,0,47.79,40.56,58.05,54.52,6.666666666666667,1,1,0,0,6,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9620,11705,20905,-9,20904,20902,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5461,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,730.25,327521.75,192382.38,141769.7,36887.266,0,0,1771.9393 +9621,11706,20906,20907,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,0,0,0,11,-2,72.35791,-9,3,2,2021,11,1,0,0,3,1,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,7.4489484,0,51.14,60.45,54.2,57.49,10,1,1,0,0,10,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9621,11706,20907,20906,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,9.5460339,9.4351244,0,11,2,-40.695995,-9,-9,-9,2021,10,0,50,0,1,0,0,29.753769,29.753769,0,0,.05,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.14,60.45,8.333333333333334,1,1,0,0,11,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9621,11706,20908,-9,20906,20907,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-978.85614,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9621,11706,20909,-9,20906,20907,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1224.8112,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,5,1,797.5,754558.56,82598.023,371252.28,250924.41,13238.922,0,7549.1797 +9622,11707,20910,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,6.9042654,7.1092267,0,0,-973.94183,0,2,2,2021,15,4,0,23,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0720482,51.41,56.15,-9,-9,6.666666666666667,3,4,0,0,10,7,2,1,461,341762.72,255255.83,343501.22,2304.4365,0,8655.2188,-180.13997 +9623,11708,20911,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,9.7572975,9.6012926,0,0,0,-1011.565,0,1,1,2021,6,0,57,80,1,0,0,31.189169,31.189169,.05,.05,0,0,0,0,0,7,0,0,0,6.5226583,0,62.39,56.71,-9,-9,10,1,1,0,0,10,12,5,1,434,593653.94,193197.36,212403.38,135147.89,0,5477.3213,5599.7002 +9624,11709,20912,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.3195524,8.2625685,0,0,0,-1082.2406,0,3,-9,2021,12,0,41,25,1,0,1,13.180406,13.180406,.05,.05,0,0,0,0,0,0,0,0,0,1.6558954,0,45.81,58.99,-9,-9,8.333333333333334,1,1,0,0,4,2,4,1,746,65869.742,19880.93,0,0,0,0,2069.5012 +9624,11710,20913,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,3,7.8187566,7.8402686,0,0,0,-1067.4041,0,3,-9,2021,12,1,36,36,1,1,1,6.979403,6.979403,0,0,0,0,0,0,0,0,0,0,0,0,0,44.59,56.4,-9,-9,8.333333333333334,1,1,0,0,2,2,3,1,527,-26072.869,0,0,0,0,0,1474.7609 +9625,11711,20914,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1060.9403,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,969,28583.484,157125.63,92617.984,-839.68982,0,0,0 +9626,11712,20915,20916,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.5005455,9.532958,0,11,1,-144.86313,0,2,1,2021,15,3,63,52,1,3,0,17.976053,17.976053,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,34.21,51.94,8.333333333333334,1,1,0,0,11,9,5,1,543,227897.06,126832.78,0,0,0,0,6804.9375 +9626,11712,20916,20915,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,9.1249094,9.0586615,0,11,-1,21.071287,0,-9,-9,2021,12,0,40,35,1,0,0,28.806572,28.806572,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.21,51.94,48.28,60.18,6.666666666666667,1,1,0,0,13,9,5,1,543,227897.06,126832.78,0,0,0,0,6804.9375 +9627,11713,20917,-9,-9,-9,1,1,22,0,0,0,2,2,1,0,4,6.7643585,6.8420415,0,0,0,-960.63794,-9,-9,-9,2021,20,9,19,0,1,9,0,5.653789,5.653789,0,0,0,0,0,0,0,0,1,1,0,0,0,24.72,65.57000000000001,-9,-9,6.666666666666667,1,1,0,0,7,11,2,0,622,-84404.75,0,0,0,0,0,-241.94388 +9628,11714,20918,20919,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,5.7488923,6.0360804,25,-1,-46.735886,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9893074,5.6182814,60.05,26.59,66.94,12.8,10,1,1,0,0,0,4,2,1,2274.5,360688.63,177065,167947.53,0,0,5214.5044,4532.375 +9628,11714,20919,20918,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,6.4728527,6.1158323,26,1,-41.080551,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1787624,6.1264119,66.94,12.8,60.05,26.59,6.666666666666667,1,1,0,0,0,4,2,1,2274.5,360688.63,177065,167947.53,0,0,5214.5044,4532.375 +9629,11715,20920,-9,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-935.74561,-9,2,3,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.75,30.08,-9,-9,1.666666666666667,1,1,0,1,0,11,1,0,1213,-2372.1013,0,0,0,0,0,299.9877 +9630,11716,20921,20922,-9,-9,1,0,31,1,1,0,2,2,-9,0,3,7.5774565,7.1369362,0,5,-2,53.368385,0,2,3,2021,21,8,30,40,1,8,0,6.0491228,6.0491228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.37,63.98,54.85,54.62,8.333333333333334,1,1,0,1,8,10,4,0,502,141121.91,287544.66,178015.25,100482.02,2041.99,-453.33228,2167.3843 +9630,11716,20922,20921,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.0642204,8.2336884,0,5,2,81.222931,0,-9,-9,2021,9,1,73,48,1,1,0,5.9663234,5.9663234,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.85,54.62,25.37,63.98,8.333333333333334,1,1,0,0,4,10,4,0,502,141121.91,287544.66,178015.25,100482.02,2041.99,-453.33228,2167.3843 +9630,11716,20923,-9,20921,20922,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-955.6236,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,4,0,502,141121.91,287544.66,178015.25,100482.02,2041.99,-453.33228,2167.3843 +9631,11717,20924,20925,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.6659451,8.9119339,0,36,2,-17.758371,0,2,2,2021,15,3,50,0,1,3,0,14.338878,14.338878,.05,.05,.05,0,0,0,0,0,0,0,0,4.1052575,0,37.61,43.58,50.63,50.99,6.666666666666667,1,1,0,0,6,5,5,1,2102.5,1405067.8,1126255.5,176244.91,22221.773,10216.461,6599.5903,3546.6553 +9631,11717,20925,20924,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4410429,7.52811,0,29,-2,62.605297,0,2,2,2021,11,2,15,17,1,2,0,16.379808,16.379808,.05,.05,0,0,0,0,0,2,0,0,0,3.8413024,0,50.63,50.99,37.61,43.58,8.333333333333334,1,1,0,0,10,5,5,1,2102.5,1405067.8,1126255.5,176244.91,22221.773,10216.461,6599.5903,3546.6553 +9632,11718,20926,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,6.603796,6.4547906,0,0,0,-962.65265,0,3,3,2021,8,0,40,25,1,0,0,1.8084606,1.8084606,0,0,.05,0,0,0,0,0,1,1,0,.33552539,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,2,0,629,544788.81,158787.31,382526.53,0,0,0,733.10724 +9633,11719,20927,20928,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.4206734,8.4110022,0,16,2,-83.224609,0,-9,-9,2021,24,8,39,44,1,8,0,13.840539,13.840539,.05,.05,.05,0,0,0,0,0,0,0,0,2.8118615,0,18.08,56.67,22.29,49.49,5,1,1,0,0,12,8,5,1,526,-47536.059,89788.531,83768.727,67938.844,828.29486,0,4009.9229 +9633,11719,20928,20927,-9,-9,1,0,36,0,0,0,1,1,-9,0,2,8.7411213,8.6236887,0,11,-2,27.10821,0,2,1,2021,15,2,35,35,1,2,0,13.976132,13.976132,0,0,0,0,0,0,0,0,0,0,0,0,0,22.29,49.49,18.08,56.67,1.666666666666667,4,5,0,0,9,8,5,1,526,-47536.059,89788.531,83768.727,67938.844,828.29486,0,4009.9229 +9634,11720,20929,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.596303,8.5877647,0,0,0,-1009.6802,0,2,2,2021,24,11,45,42,1,11,0,15.098948,15.098948,.05,.05,0,0,0,0,0,2,0,0,0,0,0,30.49,63.34,-9,-9,0,1,1,0,1,8,10,5,1,545,476769.75,480295.13,163671.64,59858.051,1502.5494,0,2315.7026 +9635,11721,20930,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.2957773,8.153492,0,0,0,-1030.4249,0,-9,-9,2021,13,3,35,35,1,3,0,11.540692,11.540692,0,0,0,0,0,0,0,0,0,0,0,1.4495844,0,46.88,60.96,-9,-9,6.666666666666667,1,1,0,0,5,4,4,0,211,154574.86,0,0,0,1506.6268,0,1690.9174 +9636,11722,20931,20932,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,6,3,-179.91559,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,41.86,41.35,50.51,53.71,8.333333333333334,1,1,1,0,5,13,5,1,568.5,3799013,2530088.8,560557.13,0,0,0,2672.2017 +9636,11722,20932,20931,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.1609373,8.8872547,0,6,-3,190.84094,0,2,3,2021,12,0,38,38,1,0,0,28.538397,28.538397,0,0,0,0,0,0,0,0,0,0,0,0,0,50.51,53.71,41.86,41.35,8.333333333333334,1,1,0,0,11,13,5,1,568.5,3799013,2530088.8,560557.13,0,0,0,2672.2017 +9637,11723,20933,20934,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.9527373,8.1799192,0,11,-1,-47.854721,0,3,2,2021,15,4,20,20,1,4,0,17.988567,17.988567,0,0,0,1,0,0,0,0,1,1,0,0,0,43.71,56.91,66.29000000000001,15.67,8.333333333333334,1,1,0,0,11,9,3,1,836.5,710004.13,319192.13,335126.44,0,0,2856.1973,2007.4752 +9637,11723,20934,20933,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,0,0,11,1,-.24709976,0,3,3,2021,9,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.8569846,0,66.29000000000001,15.67,43.71,56.91,8.333333333333334,1,1,0,0,8,9,3,1,836.5,710004.13,319192.13,335126.44,0,0,2856.1973,2007.4752 +9638,11724,20935,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.5375614,6.9444122,0,0,-1031.757,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5555873,7.3570447,58.57,35.72,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,124,548902,289132.75,56558.492,0,1428.4041,0,1049.679 +9639,11725,20936,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.8544803,7.8582263,0,0,0,-923.34442,0,-9,-9,2021,5,0,23,37,1,0,0,11.595666,11.595666,.05,.05,0,0,0,0,1.4027994,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,13,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9639,11725,20937,-9,20936,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1008.2169,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9639,11725,20938,-9,20936,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-961.44202,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9639,11725,20939,-9,20936,-9,1,1,13,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1026.0339,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,1,1,-9,0,0,12,3,1,842,44257.93,-2100.9404,57116.258,61427.754,0,0,1872.4722 +9640,11726,20940,20941,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,8.8468504,8.570262,12,0,64.495056,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.577764,8.7135887,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,1193,1355698.4,1136674.9,254919.13,0,0,0,3960.9165 +9640,11726,20941,20940,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.7098193,7.0058761,48,0,-24.472067,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1206236,7.023108,57.16,56.15,58.32,50.22,10,1,1,0,0,5,1,4,1,1193,1355698.4,1136674.9,254919.13,0,0,0,3960.9165 +9641,11727,20942,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1019.9791,0,2,3,2021,6,0,0,42,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.77,47.24,-9,-9,8.333333333333334,1,1,0,0,10,2,1,1,1429,-1452.3796,61031.789,0,0,0,0,-893.547 +9642,11728,20943,20944,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.3689928,8.46453,0,6,4,-5.6507893,0,2,1,2021,15,3,42,42,1,3,0,9.8854218,9.8854218,.05,.05,0,0,0,0,0,0,1,1,0,4.6872864,0,37.47,39.94,36.52,53.47,5,1,1,0,0,6,12,4,1,442,150465.06,82261.266,0,0,0,2002.1604,2867.8113 +9642,11728,20944,20943,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.2656302,8.0549965,0,6,-4,-49.182236,0,2,2,2021,8,0,20,16,1,0,0,8.8571901,8.8571901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.52,53.47,37.47,39.94,8.333333333333334,1,1,0,0,7,12,4,1,442,150465.06,82261.266,0,0,0,2002.1604,2867.8113 +9642,11729,20945,-9,20944,20943,1,0,20,0,0,0,2,2,-9,0,3,7.830205,7.6885433,0,0,0,-1112.2891,0,2,2,2021,8,0,45,50,1,0,1,8.7344542,8.7344542,0,0,0,0,0,0,0,0,1,1,0,0,0,52.4,52.91,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,550,-137139.02,0,0,0,0,0,819.7981 +9642,11730,20946,-9,20944,20943,1,0,18,0,0,0,2,2,1,0,5,6.7400112,7.0418439,0,0,0,-1007.7523,-9,2,2,2021,6,0,15,0,1,0,1,6.1886873,6.1886873,0,0,0,0,0,0,0,0,1,1,0,0,0,57.22,50.06,-9,-9,10,1,1,0,0,5,12,2,1,469,-70387.273,0,0,0,0,0,340.09799 +9643,11731,20947,20948,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5481167,8.7887611,0,4,3,31.256201,0,-9,-9,2021,10,0,38,47,1,0,0,16.035532,16.035532,.05,.05,0,0,0,0,0,7,0,0,0,3.9763992,0,51.65,39.74,42.77,25.22,5,1,1,0,0,11,2,4,1,404,978252.31,742342.06,80297.195,0,0,0,2041.0522 +9643,11731,20948,20947,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.0187197,6.9951925,0,35,-3,13.844644,0,3,3,2021,19,8,20,20,1,8,0,6.0326757,6.0326757,.05,.05,0,0,0,0,0,0,0,0,0,2.5755465,0,42.77,25.22,51.65,39.74,6.666666666666667,1,1,0,0,11,2,4,1,404,978252.31,742342.06,80297.195,0,0,0,2041.0522 +9644,11732,20949,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1562529,8.4015589,0,0,0,-983.07245,0,-9,-9,2021,14,2,38,42,1,2,0,12.512957,12.512957,.05,.05,0,0,0,0,0,0,1,1,0,1.3251542,0,32.01,62.01,-9,-9,8.333333333333334,1,1,0,1,6,8,5,0,272,57367.441,55343.93,0,0,0,0,1707.3038 +9645,11733,20950,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,1,0,0,0,0,0,-884.74017,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,26.379578,27.42478,250.16443,0,1,1,0,0,0,40,23,-9,-9,10,1,1,0,0,10,8,1,0,273,337314.5,0,357776.94,0,0,0,1134.0078 +9646,11734,20951,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,5.9990911,5.9041471,0,0,0,-991.18372,-9,2,1,2021,8,0,7,0,1,0,0,8.0785093,8.0785093,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,10,3,4,0,0,6,4,2,0,1168,951618.44,0,0,0,0,0,-242.16197 +9647,11735,20952,20953,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,38,-6,28.347101,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.4021695,0,48.26,50.7,34.8,29.64,3.333333333333333,1,1,0,0,7,4,2,1,862,288924,-91975.273,270863.88,0,110.74341,0,341.07733 +9647,11735,20953,20952,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,3.8910799,3.9324062,37,6,-71.546974,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,18.083818,0,0,1,1,0,5.3443441,4.2085104,34.8,29.64,48.26,50.7,8.333333333333334,1,1,0,0,6,4,2,1,862,288924,-91975.273,270863.88,0,110.74341,0,341.07733 +9648,11736,20954,20955,-9,-9,1,1,83,0,0,0,1,1,-9,0,2,0,7.8432331,8.0121355,50,11,69.779335,0,2,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.8440995,44.33,41.95,51.21,44.28,8.333333333333334,1,1,0,0,0,2,4,1,484.5,1139291.4,572561.06,701204.75,0,0,0,3303.7773 +9648,11736,20955,20954,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.5095963,7.5677404,50,-11,-104.51414,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.2461805,7.5624437,51.21,44.28,44.33,41.95,8.333333333333334,1,1,0,0,0,2,4,1,484.5,1139291.4,572561.06,701204.75,0,0,0,3303.7773 +9649,11737,20956,20957,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,0,0,0,6,13,-24.489647,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.7513323,0,55.68,54.24,57.16,56.15,8.333333333333334,1,1,0,0,6,9,2,1,933,144952.72,0,0,0,0,0,3242.4299 +9649,11737,20957,20956,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.2760057,7.4504519,0,6,-13,10.183449,0,1,1,2021,6,0,30,15,1,0,0,5.6160026,5.6160026,0,0,0,0,0,0,0,0,0,0,0,7.5143752,0,57.16,56.15,55.68,54.24,8.333333333333334,1,1,0,0,8,9,2,1,933,144952.72,0,0,0,0,0,3242.4299 +9649,11738,20958,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1219.767,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,550,339340.59,0,0,0,0,0,283.44202 +9650,11739,20959,-9,20961,20960,1,0,45,0,0,0,2,2,-9,0,3,7.8688617,8.0282841,0,0,0,-1026.2028,0,2,2,2021,11,1,45,38,1,1,0,6.1430101,6.1430101,0,0,0,0,0,0,0,0,1,1,0,6.3986449,0,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,860,109424.14,0,168894.78,32793.949,0,0,935.89368 +9650,11740,20960,20961,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.5876346,5.2739182,6,0,85.062897,0,3,-9,2021,2,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7666364,5.4067783,48.85,58.56,57.8,50.59,1.666666666666667,1,1,0,0,0,9,2,1,1010.5,552279.44,-17427.539,325017.31,0,0,0,1491.9822 +9650,11740,20961,20960,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,5.0529261,4.725656,6,0,-74.969826,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.541564,4.6737118,57.8,50.59,48.85,58.56,8.333333333333334,1,1,0,0,0,9,2,1,1010.5,552279.44,-17427.539,325017.31,0,0,0,1491.9822 +9651,11741,20962,-9,-9,20963,1,1,56,0,0,0,2,2,-9,0,3,7.7956815,7.5480418,0,0,0,-1107.229,0,3,3,2021,6,0,40,40,1,0,0,8.144639,8.144639,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1621,-17672.027,44560.723,0,0,0,1760.9254,1205.9519 +9651,11742,20963,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1047.5396,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55,45,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,353,-35397.074,0,0,0,17196.641,0,1329.9315 +9652,11743,20964,20965,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.6787176,6.6435242,59,3,-45.758762,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8199091,6.766212,54,46,52,46,8,1,1,0,0,8,11,2,0,270.5,360148.56,53393.906,138853.33,0,0,0,1255.0881 +9652,11743,20965,20964,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,59,-3,-58.155525,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,2.7077672,0,19.397747,120,1,1,0,2.0096784,0,52,46,54,46,8,1,1,0,0,0,11,2,0,270.5,360148.56,53393.906,138853.33,0,0,0,1255.0881 +9653,11744,20966,20967,-9,-9,1,0,52,1,0,0,2,2,-9,0,4,8.0912046,7.9895897,0,5,1,93.905441,0,-9,-9,2021,8,1,49,37,1,1,0,9.6448898,9.6448898,.05,.05,0,0,0,0,0,77,1,0,1,0,0,54.2,57.49,45.87,21.83,8.333333333333334,1,1,0,0,7,9,3,0,1072.5,67913.805,-7806.5933,0,0,1722.6292,0,2590.7427 +9653,11744,20967,20966,-9,-9,1,1,51,1,0,0,3,3,-9,1,2,0,0,0,5,-1,-4.921196,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,45.87,21.83,54.2,57.49,3.333333333333333,1,1,0,0,0,9,3,0,1072.5,67913.805,-7806.5933,0,0,1722.6292,0,2590.7427 +9653,11745,20968,-9,-9,20969,1,1,1,1,0,1,3,0,-9,0,4,0,0,0,0,0,-991.96399,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,4,6,-9,0,0,9,4,0,547.5,16897.855,0,0,0,0,0,1750.2742 +9653,11745,20969,-9,20966,20967,1,1,24,1,0,0,2,2,-9,0,2,8.3609266,8.590167,0,0,0,-990.60449,0,2,3,2021,8,0,48,69,1,0,1,9.4877968,9.4877968,0,0,0,0,0,0,0,0,1,0,1,.69248295,0,47.45,50.2,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,547.5,16897.855,0,0,0,0,0,1750.2742 +9654,11746,20970,20971,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,6.6681843,6.980619,0,43,0,-17.028202,0,2,3,2021,8,0,12,20,1,0,0,8.8500977,8.8500977,0,0,0,0,0,0,0,0,1,1,0,2.5130105,0,54.79,55.86,42.39,56.1,8.333333333333334,1,1,0,0,13,11,3,1,202,1448403.8,914992.38,317806.81,0,0,0,2933.801 +9654,11746,20971,20970,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,7.3131304,7.6482,0,43,0,35.332935,0,2,2,2021,11,0,24,40,1,0,0,9.2096386,9.2096386,.05,.05,0,0,0,0,0,0,1,1,0,6.4194074,0,42.39,56.1,54.79,55.86,8.333333333333334,1,1,0,0,13,11,3,1,202,1448403.8,914992.38,317806.81,0,0,0,2933.801 +9655,11747,20972,20973,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.31359,8.1903458,0,35,1,38.717827,0,2,2,2021,8,0,40,91,1,0,0,11.558643,11.558643,.05,.05,0,0,0,0,0,0,0,0,0,7.2949834,0,53.35,32.27,48.87,58.55,8.333333333333334,1,1,0,0,15,9,5,1,917.5,997718.75,562738.38,415583.5,0,0,0,4466.5659 +9655,11747,20973,20972,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.8629322,8.0728521,0,35,-1,-31.244854,0,2,2,2021,10,0,43,42,1,0,0,7.5081997,7.5081997,.05,.05,0,0,0,0,0,0,0,0,0,7.5184846,0,48.87,58.55,53.35,32.27,8.333333333333334,1,1,0,0,15,9,5,1,917.5,997718.75,562738.38,415583.5,0,0,0,4466.5659 +9656,11748,20974,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0849571,7.9734421,0,0,0,-979.3205,0,-9,-9,2021,12,0,37,-9,1,2,0,7.7511396,7.7511396,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,3,6,4,0,381,299963.25,26939.727,88348.875,58534.539,0,0,1259.814 +9657,11749,20975,-9,20976,20977,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-950.43896,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,353.33334,146024.16,-39805.09,0,0,0,0,2611.8352 +9657,11749,20976,20977,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.215878,6.9824762,0,2,0,26.635788,-9,2,1,2021,16,5,16,0,1,5,0,7.0185494,7.0185494,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,35.85,31.79,47.48,0,1,1,0,0,9,7,3,0,353.33334,146024.16,-39805.09,0,0,0,0,2611.8352 +9657,11749,20977,20976,-9,-9,1,1,26,1,1,0,2,2,-9,0,3,8.089077,8.0428867,0,2,0,170.69809,-9,-9,-9,2021,30,12,42,0,1,12,0,9.934576,9.934576,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.79,47.48,41.47,35.85,1.666666666666667,1,1,0,0,1,7,3,0,353.33334,146024.16,-39805.09,0,0,0,0,2611.8352 +9658,11750,20978,-9,20980,20979,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.736,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,3,1,733.33331,2017753.5,1012345.1,134481.91,0,0,0,2441.8311 +9658,11750,20979,20980,-9,-9,1,1,54,0,1,0,1,1,-9,0,4,8.3922129,8.4163399,0,22,5,110.6603,0,2,1,2021,6,0,41,37,1,0,0,12.588005,12.588005,.05,.05,0,0,0,0,0,14.5,1,1,0,4.2664337,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,10,11,3,1,733.33331,2017753.5,1012345.1,134481.91,0,0,0,2441.8311 +9658,11750,20980,20979,-9,-9,1,0,49,0,1,0,1,1,-9,1,4,0,0,0,22,-5,77.113884,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.2991886,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,11,3,1,733.33331,2017753.5,1012345.1,134481.91,0,0,0,2441.8311 +9659,11751,20981,-9,20985,20984,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.72498,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20982,-9,20985,20984,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-999.17505,-9,1,3,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,48.3,-9,-9,8.333333333333334,1,1,0,0,0,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20983,-9,20985,20984,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1145.3693,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20984,20985,-9,-9,1,1,36,0,3,0,3,3,-9,0,3,7.9961219,7.9553456,0,12,0,-15.776207,0,2,2,2021,13,2,40,48,1,2,0,8.9769135,8.9769135,0,0,0,0,0,0,0,0,1,1,0,0,0,32.97,56.45,51.41,50.61,3.333333333333333,1,1,0,0,7,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9659,11751,20985,20984,-9,-9,1,0,36,0,3,0,1,1,-9,0,3,7.2743006,6.9666896,0,12,0,-33.642036,0,2,2,2021,8,4,28,31,1,4,0,7.725316,7.725316,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,50.61,32.97,56.45,1.666666666666667,1,1,0,0,7,6,3,0,2874,150596.23,85449.75,0,0,0,0,2585.4631 +9660,11752,20986,-9,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1004.4321,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.077611461,0,31.68,17,-9,-9,1.666666666666667,2,3,0,0,0,4,1,0,669,-57498.301,0,0,0,0,338.52194,853.29779 +9661,11753,20987,20988,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,8,-4,3.9323282,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,52.41,23.62,58.15,52.91,8.333333333333334,1,1,0,0,8,1,3,1,1457,973746.88,649233.81,230463.53,0,0,0,2629.5562 +9661,11753,20988,20987,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,7.0766191,8.6771221,7.843545,8,4,47.831623,0,2,2,2021,8,0,39,45,1,0,0,4.1852307,4.1852307,0,0,0,0,0,0,0,2,1,1,0,3.9773448,7.9476738,58.15,52.91,52.41,23.62,8.333333333333334,1,1,0,0,9,1,3,1,1457,973746.88,649233.81,230463.53,0,0,0,2629.5562 +9661,11754,20989,-9,20987,20988,1,0,28,0,0,0,2,2,-9,0,5,7.7584219,7.5542912,0,0,0,-1146.8107,0,2,2,2021,7,0,30,34,1,0,1,7.4790797,7.4790797,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,898,87232.188,0,0,0,0,0,868.73663 +9662,11755,20990,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.2495432,7.9759288,0,0,0,-880.79236,0,2,2,2021,15,4,40,39,1,4,0,10.39296,10.39296,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.48,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,2224,372738.81,399496.44,0,0,9342.9072,0,1628.8226 +9663,11756,20991,20992,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,0,8.0317688,8.0328331,49,0,64.546326,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.5248475,8.3234024,59.88,45.37,54.37,54.8,8.333333333333334,1,1,0,0,0,6,3,1,979.5,1443582.3,967885.5,243433.22,0,0,0,2737.2498 +9663,11756,20992,20991,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,48,0,-26.94898,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0059471,0,54.37,54.8,59.88,45.37,8.333333333333334,1,1,0,0,0,6,3,1,979.5,1443582.3,967885.5,243433.22,0,0,0,2737.2498 +9664,11757,20993,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.5672956,7.5439024,0,0,0,-880.73492,0,3,-9,2021,11,0,32,37,1,0,0,9.2779455,9.2779455,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,5,1,1,0,0,9,6,2,0,1444,-98975.055,118988.27,0,0,0,0,1371.1202 +9665,11758,20994,-9,20995,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1050.4374,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,4,1,0,802.5,-38682.883,0,0,0,0,0,1679.937 +9665,11758,20995,-9,-9,-9,1,0,44,0,1,0,2,2,-9,1,3,0,0,0,0,0,-955.17529,0,2,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.47,38.4,-9,-9,0,3,4,1,0,0,4,1,0,802.5,-38682.883,0,0,0,0,0,1679.937 +9666,11759,20996,20997,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3623724,8.1940222,0,12,-5,16.872873,0,-9,-9,2021,12,0,44,41,1,0,0,11.474258,11.474258,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.57,52.89,64.26000000000001,36.46,6.666666666666667,1,1,0,0,13,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9666,11759,20997,20996,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.7707486,8.1334229,6.4051881,12,5,10.379613,0,-9,-9,2021,7,0,35,35,1,0,0,7.8943896,7.8943896,.05,.05,0,0,0,0,0,0,1,1,0,6.20083,0,64.26000000000001,36.46,52.57,52.89,8.333333333333334,1,1,0,0,13,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9666,11759,20998,-9,20997,20996,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1045.8503,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9666,11759,20999,-9,20997,20996,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-908.64343,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,11,3,1,859.75,60431.711,78059.648,114415.81,0,0,0,2644.6316 +9667,11760,21000,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,2,8.6031427,8.7267323,0,0,0,-919.14282,0,2,2,2021,18,7,37,0,1,7,0,20.184221,20.184221,.05,.05,0,0,0,0,0,0,0,0,0,.1424083,0,46.85,53.17,-9,-9,6.666666666666667,3,4,0,0,9,9,5,0,842,-66880.453,171268.25,0,0,882.31763,1941.2191,2818.6836 +9668,11761,21001,21002,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.9440985,7.0257297,48,-1,-1.351773,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.231051,7.0536156,40.2,24.84,58.15,52.91,8.333333333333334,1,1,0,0,0,5,4,1,1283,2049575.4,752195.25,175330.56,0,0,0,3841.3438 +9668,11761,21002,21001,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.3647738,8.4803038,48,1,-34.198933,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.2184799,8.0381498,58.15,52.91,40.2,24.84,8.333333333333334,1,1,0,0,0,5,4,1,1283,2049575.4,752195.25,175330.56,0,0,0,3841.3438 +9669,11762,21003,21004,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.7519226,7.2774081,31,-4,-23.460962,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9864573,42.11,40.08,58.64,44.67,8.333333333333334,1,1,0,0,7,6,3,1,427.5,865158.13,387301.75,203072.47,0,0,0,2590.5801 +9669,11762,21004,21003,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3430328,6.0605602,31,4,-106.85656,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.66679,6.3196049,58.64,44.67,42.11,40.08,8.333333333333334,1,1,0,0,0,6,3,1,427.5,865158.13,387301.75,203072.47,0,0,0,2590.5801 +9670,11763,21005,21006,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.620513,7.4717908,58,-1,-45.466454,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,15.541061,0,0,1,1,0,3.8164258,7.9150491,36.99,42.92,27.8,52.82,5,1,1,0,0,0,10,4,1,374.5,257541.72,-36265.785,413700.88,260879.47,0,29821.053,3992.8276 +9670,11763,21006,21005,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,8.1045952,8.4840956,58,1,9.1839886,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.51596653,8.0048447,27.8,52.82,36.99,42.92,5,1,1,0,0,0,10,4,1,374.5,257541.72,-36265.785,413700.88,260879.47,0,29821.053,3992.8276 +9671,11764,21007,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.1147928,8.9243584,0,0,0,-988.82349,0,1,1,2021,12,0,56,50,1,0,0,15.72226,15.72226,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,1724,196743.27,77813.773,164667.92,31660.238,0,0,2529.9597 +9672,11765,21008,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.1969767,8.069747,0,0,0,-1078.1552,0,-9,3,2021,11,0,39,39,1,0,0,9.4004335,9.4004335,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.98,51.26,-9,-9,5,1,1,0,0,7,5,4,0,375,313260.13,25624.074,153662.28,0,0,0,1275.2396 +9672,11766,21009,-9,-9,21008,1,1,25,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1144.9141,0,-9,3,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,-9,-9,5,1,1,1,1,5,5,1,0,93,16317.446,0,0,0,0,0,121.28946 +9673,11767,21010,21012,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.0633602,8.2236557,0,10,-2,37.082481,0,-9,-9,2021,11,0,35,35,1,0,0,12.147157,12.147157,0,0,0,0,0,0,0,0,1,1,0,7.2423668,0,53.82,45.2,52.39,42.38,10,1,1,0,0,9,2,4,1,160.66667,45180.934,115279.52,158190.3,73085.797,0,0,4078.9004 +9673,11767,21011,-9,21010,21012,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.75275,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,160.66667,45180.934,115279.52,158190.3,73085.797,0,0,4078.9004 +9673,11767,21012,21010,-9,-9,1,1,34,1,1,0,2,2,-9,0,5,8.1396818,8.2702484,0,10,2,87.577675,0,2,2,2021,9,1,38,41,1,1,0,12.557331,12.557331,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.39,42.38,53.82,45.2,8.333333333333334,1,1,0,0,9,2,4,1,160.66667,45180.934,115279.52,158190.3,73085.797,0,0,4078.9004 +9674,11768,21013,21014,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.0033545,6.2558956,6,-2,-28.818619,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.804256,5.9503179,53.4,30.91,61.86,44.4,8.333333333333334,1,1,0,0,0,10,3,1,440.5,1212930.3,237273.95,569882.13,0,0,0,2629.8438 +9674,11768,21014,21013,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.6475458,7.4371066,6,2,17.251024,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3323016,7.6080065,61.86,44.4,53.4,30.91,8.333333333333334,1,1,0,0,0,10,3,1,440.5,1212930.3,237273.95,569882.13,0,0,0,2629.8438 +9675,11769,21015,21016,-9,-9,1,1,44,1,3,0,3,3,-9,0,4,6.727982,7.1932864,0,14,13,32.428493,0,3,2,2021,9,0,10,10,1,1,0,10.026122,10.026122,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,1,11,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21016,21015,-9,-9,1,0,31,1,3,0,2,2,-9,0,4,0,0,0,9,-13,-22.75584,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21017,-9,21016,21015,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.9231,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,5,-9,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21018,-9,21016,21015,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1072.1835,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9675,11769,21019,-9,21016,21015,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.15558,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,5,-9,0,0,6,2,0,700.79999,167282.3,0,221487.8,139574.03,6714.7275,0,2112.4507 +9676,11770,21020,21023,-9,-9,1,1,40,1,3,0,1,1,-9,0,3,9.0963793,8.9914846,0,15,5,-46.526203,0,-9,-9,2021,7,0,37,40,1,0,0,32.154549,32.154549,.05,.05,0,0,0,0,0,0,1,1,0,3.7683907,0,57.33,53.46,42.26,55.21,8.333333333333334,2,3,0,0,7,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21021,-9,21023,21020,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-888.80908,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21022,-9,21023,21020,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-895.56714,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21023,21020,-9,-9,1,0,35,1,3,0,2,2,-9,0,3,5.9094553,5.7838459,0,15,-5,20.54598,0,-9,-9,2021,18,6,6,12,1,6,0,7.4804206,7.4804206,0,0,0,0,0,0,0,0,1,1,0,7.4680266,0,42.26,55.21,57.33,53.46,6.666666666666667,2,3,0,0,4,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9676,11770,21024,-9,21023,21020,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-836.46832,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,4,1,978.40002,85368.727,77193.117,127925.55,143810.83,3682.1287,0,4777.3208 +9677,11771,21025,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1001.7088,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.29,20.35,-9,-9,3.333333333333333,1,1,0,0,3,12,1,0,849,102651.99,0,0,0,0,0,1471.9447 +9678,11772,21026,21027,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,9.3419533,8.9215221,58,7,0,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.9136381,42.84,25.21,54.1,49.39,6.666666666666667,1,1,0,0,0,6,5,1,1341,0,0,0,0,0,0,11334.934 +9678,11772,21027,21026,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,9.067153,9.2406616,58,-7,0,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1744995,8.9730854,54.1,49.39,42.84,25.21,8.333333333333334,1,1,0,0,0,6,5,1,1341,0,0,0,0,0,0,11334.934 +9679,11773,21028,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,7.0195727,7.1165247,0,0,-1045.1635,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2713189,6.8311362,60.36,35.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,891,239516.47,215080.83,319328.25,0,0,0,1896.1812 +9680,11774,21029,21030,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.2208924,5.9611163,12,-2,20.22271,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.2730284,6.0506706,46.39,60.99,57.33,53.46,8.333333333333334,1,1,0,0,12,10,4,1,1515,57195.844,-3590.043,0,0,0,2900.5786,4729.6353 +9680,11774,21030,21029,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.5854635,8.475646,0,12,2,-33.01907,0,2,2,2021,7,0,19,18,1,0,0,24.861851,24.861851,0,0,0,0,0,0,0,0,0,0,0,6.9416084,0,57.33,53.46,46.39,60.99,8.333333333333334,1,1,0,0,12,10,4,1,1515,57195.844,-3590.043,0,0,0,2900.5786,4729.6353 +9681,11775,21031,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.2128325,7.3858175,0,0,-997.14697,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,74.069733,0,0,1,1,0,6.791605,6.5092807,58.14,26.29,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,808,-26398.076,0,0,0,0,0,1522.5029 +9682,11776,21032,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.8947568,8.1844969,0,0,0,-1083.2393,0,2,2,2021,6,0,36,36,1,0,0,9.5544376,9.5544376,.05,.05,0,0,0,0,0,0,1,1,0,3.3527765,0,55.18,48.86,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,8108,9961.9258,4128.103,282870.19,25508.48,0,0,1955.0135 +9683,11777,21033,-9,21034,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.58374,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,439.33334,0,0,0,0,0,0,2144.4023 +9683,11777,21034,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,4,0,0,0,0,0,-934.30945,1,-9,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,59.17,-9,-9,8.333333333333334,4,2,0,1,0,7,1,0,439.33334,0,0,0,0,0,0,2144.4023 +9683,11777,21035,-9,21034,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.4066,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,1,0,439.33334,0,0,0,0,0,0,2144.4023 +9684,11778,21036,-9,21038,21037,1,0,21,0,2,0,2,2,0,0,4,0,0,0,0,0,-1026.6088,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,12,1,1,298,259038.69,0,0,0,0,0,580.43158 +9684,11779,21037,21038,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.4763556,8.3626432,0,7,4,-51.717346,0,-9,-9,2021,9,0,38,37,1,1,0,12.915933,12.915933,.05,.05,0,0,0,0,0,0,1,1,0,3.7421651,0,51,56,51.83,57.2,8,1,1,0,0,1,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21038,21037,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.7312489,7.6248918,0,7,-4,-9.3563433,0,3,2,2021,9,1,21,28,1,1,0,9.5532665,9.5532665,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51,56,6.666666666666667,1,1,0,0,8,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21039,-9,21038,21037,1,1,17,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1075.6464,0,2,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21040,-9,21038,21037,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-980.61737,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9684,11779,21041,-9,21038,21037,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-942.25208,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,469.20001,-151742.66,19120.551,166214.36,119496.37,0,0,2812.4456 +9685,11780,21042,21043,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4250917,8.5954361,0,27,-7,-16.45714,0,2,2,2021,10,1,37,40,1,1,0,16.707169,16.707169,0,0,0,0,0,0,0,0,0,0,0,0,0,42.85,60.33,55.72,51.28,6.666666666666667,2,3,0,0,10,9,5,1,527,808564.25,365162.19,369891.25,87838.883,0,0,3646.4968 +9685,11780,21043,21042,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.6472445,8.6519814,0,27,7,-49.266247,0,-9,-9,2021,8,0,38,37,1,0,0,18.518396,18.518396,0,0,0,0,0,0,0,0,0,0,0,0,0,55.72,51.28,42.85,60.33,8.333333333333334,2,3,0,0,10,9,5,1,527,808564.25,365162.19,369891.25,87838.883,0,0,3646.4968 +9685,11781,21044,-9,21042,21043,1,0,25,0,0,0,1,1,-9,0,2,8.3726473,8.8716784,0,0,0,-1003.4379,0,2,2,2021,30,10,51,51,1,10,1,11.672012,11.672012,0,0,0,0,0,0,0,0,0,0,0,0,0,7.51,66,-9,-9,1.666666666666667,2,3,0,0,3,9,5,1,249,-78801.273,0,0,0,0,0,1747.4979 +9686,11782,21045,21046,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.3495302,8.0786371,0,12,2,-29.58569,0,3,3,2021,16,4,39,39,1,4,0,8.1134815,8.1134815,.05,.05,0,0,0,0,0,0,0,0,0,1.3896691,0,56.28,42,58.56,46.45,5,1,1,0,1,13,6,5,1,772,908815.19,565145.5,275771.56,0,0,0,3531.9438 +9686,11782,21046,21045,-9,-9,1,0,58,0,0,0,3,3,-9,0,2,8.5142212,8.7431211,0,12,-2,-105.54005,0,3,3,2021,7,0,25,25,1,0,0,26.250841,26.250841,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.56,46.45,56.28,42,8.333333333333334,1,1,0,0,13,6,5,1,772,908815.19,565145.5,275771.56,0,0,0,3531.9438 +9687,11783,21047,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1061.6593,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.93000000000001,17.44,-9,-9,10,1,1,0,0,4,2,1,1,764,-20471.348,0,0,0,0,0,1258.3694 +9688,11784,21048,-9,21051,21049,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.53491,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9688,11784,21049,21051,-9,-9,1,1,42,1,2,0,1,1,-9,0,5,8.5705624,8.4791842,0,5,4,-8.0472383,0,-9,-9,2021,6,0,55,60,1,0,0,12.150262,12.150262,.05,.05,0,0,0,0,0,0,1,1,0,.505144,0,57.06,57.76,49.28,50.19,10,1,1,0,0,8,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9688,11784,21050,-9,21051,21049,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-967.05505,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9688,11784,21051,21049,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.0035143,8.3378429,0,5,-4,-140.32455,0,-9,-9,2021,13,1,35,30,1,1,0,11.734122,11.734122,0,0,0,0,0,0,0,0,1,1,0,6.2609901,0,49.28,50.19,57.06,57.76,6.666666666666667,1,1,0,0,9,6,5,1,1059.25,928326.5,684942,166714.52,0,100.58293,0,4275.6646 +9689,11785,21052,21053,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.6452122,7.4358439,52,-1,2.7540061,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.691226,7.4098258,55.73,53.98,56.58,44.22,10,1,1,0,0,11,12,3,1,549.5,592727.25,513323.84,190225.98,68959.203,0,0,7144.9727 +9689,11785,21053,21052,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.6309624,7.2848692,52,1,-54.58849,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.265018,7.1340451,56.58,44.22,55.73,53.98,8.333333333333334,1,1,0,0,0,12,3,1,549.5,592727.25,513323.84,190225.98,68959.203,0,0,7144.9727 +9690,11786,21054,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1047.1381,0,3,3,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.12,29.51,-9,-9,5,1,1,1,0,0,8,1,0,494,-161558.34,0,0,0,0,0,1214.4745 +9691,11787,21055,21056,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.6363177,7.9463329,11,0,204.3291,0,3,3,2021,21,9,0,0,4,9,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9226801,7.7911515,33.95,22.68,20.24,28.84,5,2,3,0,0,10,6,3,1,479,1013451.8,976029.88,151615.36,6912.2554,-2227.8796,1017.4399,1379.2932 +9691,11787,21056,21055,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.7251182,7.2124739,11,0,-108.17396,0,-9,-9,2021,25,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.7318978,7.5461373,20.24,28.84,33.95,22.68,3.333333333333333,2,3,0,0,0,6,3,1,479,1013451.8,976029.88,151615.36,6912.2554,-2227.8796,1017.4399,1379.2932 +9692,11788,21057,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,2,8.5828304,8.5556221,0,0,0,-962.07819,0,2,2,2021,23,11,37,75,1,11,0,18.860907,18.860907,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.53,54.1,-9,-9,1.666666666666667,1,1,0,1,15,13,5,0,190,-69822.648,31778.885,0,0,0,0,2256.1785 +9693,11789,21058,-9,21059,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.8367,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,2775.6667,64654.844,41253.898,160047.48,116189.17,0,0,1294.7762 +9693,11789,21059,-9,-9,-9,1,0,40,0,2,0,1,1,-9,1,3,0,6.4551091,6.1161709,0,0,-904.1712,0,2,2,2021,28,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,6.4015203,0,27.98,63,-9,-9,1.666666666666667,1,1,0,0,7,4,2,1,2775.6667,64654.844,41253.898,160047.48,116189.17,0,0,1294.7762 +9693,11789,21060,-9,21059,-9,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1076.0178,-9,1,-9,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.95,37.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,2775.6667,64654.844,41253.898,160047.48,116189.17,0,0,1294.7762 +9694,11790,21061,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.7494421,9.4667797,0,0,0,-1025.5723,0,-9,-9,2021,19,7,48,47,1,7,0,33.652634,33.652634,.05,.05,0,0,0,0,0,0,0,0,0,6.0373507,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,7,8,5,1,1137,295643.97,133687.25,0,0,0,0,5102.4355 +9695,11791,21062,21064,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,7.0810618,6.6076183,0,5,1,36.968395,-9,-9,-9,2021,4,0,20,0,1,0,0,5.8599849,5.8599849,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,31.93,58.41,8.333333333333334,1,1,0,1,8,6,3,0,2478.3333,244655.53,16095.362,42606.461,96091.414,12696.628,0,3054.677 +9695,11791,21063,-9,21064,21062,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-988.95532,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,2478.3333,244655.53,16095.362,42606.461,96091.414,12696.628,0,3054.677 +9695,11791,21064,21062,-9,-9,1,0,36,0,1,0,2,2,-9,1,3,7.7207608,8.0902328,0,5,-1,-7.1863298,-9,2,1,2021,16,4,24,0,1,4,0,12.866754,12.866754,0,0,0,0,0,0,0,42,1,1,0,0,0,31.93,58.41,57.33,53.46,8.333333333333334,1,1,0,1,1,6,3,0,2478.3333,244655.53,16095.362,42606.461,96091.414,12696.628,0,3054.677 +9696,11792,21065,21067,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.2890348,8.1491261,0,4,-2,-.75199002,0,1,2,2021,8,0,28,28,1,0,0,14.307911,14.307911,0,0,0,0,0,0,0,0,1,1,0,6.8859434,0,48.87,58.55,50,57,10,1,1,0,0,8,7,5,1,540.66669,335690.66,93592.563,319398.56,82003.492,0,0,6943.4951 +9696,11792,21066,-9,21065,21067,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1103.9633,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,540.66669,335690.66,93592.563,319398.56,82003.492,0,0,6943.4951 +9696,11792,21067,21065,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,9.409977,9.5833254,0,4,2,75.958145,0,-9,2,2021,10,0,37,38,1,1,0,51.837677,51.837677,.05,.05,0,0,0,0,0,0,1,1,0,4.0119843,0,50,57,48.87,58.55,7,1,1,0,0,1,7,5,1,540.66669,335690.66,93592.563,319398.56,82003.492,0,0,6943.4951 +9697,11793,21068,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,6.8354249,7.0835238,0,0,-951.78687,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2471094,7.2582846,51.83,57.2,-9,-9,5,1,1,0,0,8,9,2,0,397,451652.31,213330.5,170202.63,0,0,0,475.08884 +9698,11794,21069,21070,-9,-9,1,0,59,0,0,0,3,3,-9,0,1,0,6.3840003,6.4137998,18,-14,63.430012,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.426456,46.65,23.49,30.21,32.24,8.333333333333334,1,1,0,0,0,5,2,1,2544,-3988.6797,134220.55,151012.47,49562.063,0,0,3800.668 +9698,11794,21070,21069,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,2.2174127,2.5159609,18,14,-36.767517,0,3,2,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,26.961157,20.451893,258.4621,0,1,1,0,2.6101222,2.538146,30.21,32.24,46.65,23.49,8.333333333333334,1,1,0,0,0,5,2,1,2544,-3988.6797,134220.55,151012.47,49562.063,0,0,3800.668 +9699,11795,21071,21072,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.104846,8.1272154,0,6,-5,-166.96286,0,2,2,2021,16,4,37,37,1,4,0,10.328522,10.328522,.05,.05,0,0,0,0,0,0,0,0,0,.12020367,0,45.26,45.46,42.29,58.81,8.333333333333334,1,1,0,0,7,12,5,1,471.5,381401.22,37854.316,369764.38,201546.11,17560.688,4290.9858,3169.0981 +9699,11795,21072,21071,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.6843204,8.4234686,0,6,5,-56.397411,0,-9,-9,2021,7,0,43,46,1,0,0,13.857708,13.857708,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.29,58.81,45.26,45.46,6.666666666666667,1,1,0,0,9,12,5,1,471.5,381401.22,37854.316,369764.38,201546.11,17560.688,4290.9858,3169.0981 +9700,11796,21073,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,7.276268,7.5156665,0,0,-933.57819,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,4.2516499,13.131484,47.18396,2,1,1,0,4.1568317,7.381238,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1459,281340.22,11217.095,224051.64,0,0,0,2306.9517 +9701,11797,21074,-9,21075,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.12219,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,751.5,87771.711,0,122754.21,12221.033,0,0,864.78455 +9701,11797,21075,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,0,0,0,0,0,-954.36511,0,-9,-9,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.92,35.85,-9,-9,6.666666666666667,3,4,1,1,0,8,1,0,751.5,87771.711,0,122754.21,12221.033,0,0,864.78455 +9701,11798,21076,-9,21075,-9,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1108.2716,1,2,-9,2021,17,6,0,7,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.96,48.11,-9,-9,6.666666666666667,3,4,0,0,2,8,1,0,1473,-136198.52,0,0,0,0,0,897.05029 +9702,11799,21077,21078,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,8,-3,128.48363,0,3,-9,2021,19,7,0,30,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.31,51.41,36.03,55.74,6.666666666666667,1,1,1,0,2,11,2,0,1190.5,143343.83,0,103259.15,18527.9,18998.24,1182.5391,1802.5955 +9702,11799,21078,21077,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,6.2514524,6.4153638,0,8,3,-56.719685,0,3,3,2021,14,2,11,11,1,2,0,7.3726554,7.3726554,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,55.74,33.31,51.41,6.666666666666667,1,1,0,1,9,11,2,0,1190.5,143343.83,0,103259.15,18527.9,18998.24,1182.5391,1802.5955 +9702,11800,21079,-9,21078,21077,1,1,40,0,0,0,3,3,-9,1,1,0,0,0,0,0,-961.01636,0,3,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.34,51.96,-9,-9,5,1,1,0,0,0,11,1,0,592,129694.08,0,0,0,1166.0903,0,547.6969 +9703,11801,21080,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.0539823,6.5938811,0,0,-1012.3171,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3562346,6.7315192,54.77,50.34,-9,-9,8.333333333333334,1,1,0,0,9,8,2,1,1787,489810.16,264036.19,304801.31,235168.11,0,0,1425.9296 +9704,11802,21081,21082,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,7.215888,7.5769539,35,5,-24.731478,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5703292,7.3141422,56.93,29.72,54.79,55.86,8.333333333333334,1,1,0,0,11,6,3,1,935.5,1473683.5,1127407.8,229550.34,0,0,0,1988.3118 +9704,11802,21082,21081,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9852014,7.8102283,0,35,-5,-20.429308,0,2,2,2021,6,0,33,30,1,0,0,10.467133,10.467133,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,56.93,29.72,8.333333333333334,1,1,0,0,15,6,3,1,935.5,1473683.5,1127407.8,229550.34,0,0,0,1988.3118 +9705,11803,21083,21084,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.8135619,8.2090836,11,6,-19.638256,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,8.3858681,54.45,51.96,52.75,41.81,8.333333333333334,1,1,0,0,14,10,5,1,320,1802754.9,1273435,360713.88,0,0,0,3833.9497 +9705,11803,21084,21083,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.8156538,9.0594101,0,11,-6,58.904503,0,-9,-9,2021,11,0,60,29,1,0,0,18.829245,18.829245,0,0,0,0,0,0,0,2,1,1,0,.72116888,0,52.75,41.81,54.45,51.96,8.333333333333334,1,1,0,0,9,10,5,1,320,1802754.9,1273435,360713.88,0,0,0,3833.9497 +9706,11804,21085,21086,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,5.8796177,5.8485498,12,6,115.14225,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8823557,5.6777315,59.07,43.05,65.19,28.39,10,1,1,0,0,0,4,2,1,696.5,206325.73,85984.922,177698.5,0,0,0,1505.0784 +9706,11804,21086,21085,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,12,-6,-45.140823,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.19,28.39,59.07,43.05,10,1,1,0,0,0,4,2,1,696.5,206325.73,85984.922,177698.5,0,0,0,1505.0784 +9707,11805,21087,21088,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.7191858,8.8088703,0,3,-11,24.73,0,1,2,2021,7,2,38,38,1,2,0,17.878469,17.878469,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.02,59.5,54.2,57.49,8.333333333333334,1,1,0,0,12,8,5,0,516.66669,259069.53,176396.89,304866.69,271360.47,0,0,6902.21 +9707,11805,21088,21087,-9,-9,1,1,45,1,1,0,3,3,-9,0,4,9.4513512,9.6339455,0,3,11,-30.107817,0,-9,-9,2021,10,0,50,45,1,0,0,28.177845,28.177845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.02,59.5,6.666666666666667,1,1,0,0,3,8,5,0,516.66669,259069.53,176396.89,304866.69,271360.47,0,0,6902.21 +9707,11805,21089,-9,21087,21088,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.76172,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,5,0,516.66669,259069.53,176396.89,304866.69,271360.47,0,0,6902.21 +9708,11806,21090,21092,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.654151,8.3819485,0,10,2,19.493839,0,1,2,2021,8,0,36,37,1,0,0,15.962721,15.962721,.05,.05,0,0,0,0,0,0,1,1,0,3.5232697,0,49.46,56.91,50.43,53.69,8.333333333333334,1,1,0,0,10,4,4,1,553,133684.59,130346.05,115365.8,83485.164,827.68994,1327.1078,3477.5317 +9708,11806,21091,-9,21092,21090,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1037.1311,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,553,133684.59,130346.05,115365.8,83485.164,827.68994,1327.1078,3477.5317 +9708,11806,21092,21090,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.1825829,8.3254519,0,10,-2,-113.69051,0,1,1,2021,6,0,25,22,1,0,0,14.189433,14.189433,.05,.05,0,0,0,0,0,0,1,1,0,2.4944267,0,50.43,53.69,49.46,56.91,8.333333333333334,1,1,0,0,8,4,4,1,553,133684.59,130346.05,115365.8,83485.164,827.68994,1327.1078,3477.5317 +9709,11807,21093,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.7517195,7.7389679,0,0,-1062.6261,0,-9,1,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6430988,7.6083393,60.29,52.11,-9,-9,10,1,1,0,0,4,13,3,1,390,666032.19,352515.5,295578.09,0,7153.9082,0,797.48889 +9710,11808,21094,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.5240841,7.3932195,0,0,-911.19019,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7682805,7.4900222,54.7,34.63,-9,-9,1.666666666666667,1,1,0,0,0,13,3,1,780,129957.06,132377.91,224633.88,0,0,0,1894.6003 +9711,11809,21095,21096,21098,-9,1,0,52,0,0,0,2,2,-9,0,2,7.4986115,7.4877505,0,34,-4,-132.83618,0,2,2,2021,13,1,25,22,1,1,0,5.2848682,5.2848682,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,36.99,45.33,49.24,5,1,1,0,0,14,5,4,1,1000,325881.44,71193.734,97580.68,0,985.73364,0,2715.3403 +9711,11809,21096,21095,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.2501469,7.949553,7.1364083,34,4,-35.811878,0,-9,-9,2021,6,0,42,55,1,0,0,3.7852252,3.7852252,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5002995,45.33,49.24,58.32,36.99,5,1,1,0,0,12,5,4,1,1000,325881.44,71193.734,97580.68,0,985.73364,0,2715.3403 +9711,11810,21097,-9,21095,21096,1,1,18,0,0,0,2,2,1,0,3,6.2890429,6.3669643,0,0,0,-960.84735,-9,2,2,2021,6,0,8,0,1,0,1,6.2972345,6.2972345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,1,0,5,2,1,427,-114524.58,36570.492,0,0,0,0,593.03674 +9711,11811,21098,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.6976748,6.9946871,0,0,-974.54858,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0727644,43.81,51.13,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,225,640986.88,160816.7,387129.28,0,0,0,990.91211 +9712,11812,21099,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.4870772,7.7264128,0,0,-1055.5021,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1276436,7.625526,44.51,49.63,-9,-9,6.666666666666667,1,1,0,0,5,10,3,1,926,241354.39,254274.83,0,0,0,0,1871.6647 +9713,11813,21100,21101,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.8520775,8.1889734,40,0,-73.07151,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4698329,8.8844376,39.5,56.19,37.46,55.55,8.333333333333334,1,1,0,0,9,9,5,1,585.5,2940070.8,1895571,651160.63,0,0,0,5040.7803 +9713,11813,21101,21100,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,8.1725445,7.9774051,42,0,-23.431591,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8113251,7.7585649,37.46,55.55,39.5,56.19,8.333333333333334,1,1,0,0,8,9,5,1,585.5,2940070.8,1895571,651160.63,0,0,0,5040.7803 +9714,11814,21102,21103,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,8.5935936,8.69485,0,1,2,-61.764278,-9,3,3,2021,10,0,38,0,1,0,0,17.591631,17.591631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.61,61.54,51.83,57.2,8.333333333333334,1,1,0,0,7,1,4,1,691.33331,54827.602,6255.7109,0,0,2377.1951,0,2988.9705 +9714,11814,21103,21102,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,7.4551587,7.411458,0,1,-2,151.00615,-9,-9,-9,2021,7,0,37,0,1,0,0,5.844142,5.844142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.61,61.54,8.333333333333334,1,1,0,0,8,1,4,1,691.33331,54827.602,6255.7109,0,0,2377.1951,0,2988.9705 +9714,11814,21104,-9,21103,21102,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.95331,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,691.33331,54827.602,6255.7109,0,0,2377.1951,0,2988.9705 +9715,11815,21105,21106,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,4.9415498,5.290061,51,-3,-101.973,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9607263,48.12,42.71,61.04,44.94,6.666666666666667,1,1,0,0,5,4,2,1,2432,407173.56,163838.19,173657.66,0,0,0,1648.7659 +9715,11815,21106,21105,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,5.4777393,5.4805255,51,3,175.18056,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8426085,5.4248109,61.04,44.94,48.12,42.71,10,1,1,0,0,5,4,2,1,2432,407173.56,163838.19,173657.66,0,0,0,1648.7659 +9716,11816,21107,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1073.1133,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.44,32.61,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,128,-28756.811,0,0,0,0,0,1078.2229 +9717,11817,21108,21109,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.4924345,8.5593491,0,5,-2,7.6792026,0,3,3,2021,7,0,37,37,1,0,0,13.942501,13.942501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,59.62,59.31,49.81,8.333333333333334,1,1,0,0,7,7,5,1,247,1242450.5,294186.69,714370,144398.34,0,0,4705.5078 +9717,11817,21109,21108,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.746707,8.7096844,0,5,2,-14.439435,0,2,-9,2021,10,0,47,47,1,0,0,16.066099,16.066099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,49.84,59.62,5,1,1,0,0,7,7,5,1,247,1242450.5,294186.69,714370,144398.34,0,0,4705.5078 +9717,11818,21110,-9,21108,21109,1,0,19,0,0,0,3,3,-9,0,4,7.3767381,7.3498483,0,0,0,-989.69745,0,2,2,2021,4,0,40,8,1,0,1,5.2657728,5.2657728,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,7,3,1,444,14245.818,80763.445,0,0,0,0,856.13251 +9718,11819,21111,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,9.0168285,9.2202682,0,0,0,-977.39832,0,3,3,2021,5,0,80,75,1,0,0,10.501138,10.501138,0,0,0,0,0,0,0,0,1,1,0,0,0,51.97,40.05,-9,-9,10,1,1,0,0,9,10,5,0,243,1001389.3,909606.94,335981.69,55960.633,0,0,4477.814 +9719,11820,21112,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1007.1599,0,2,3,2021,36,12,0,36,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,15.49,46.06,-9,-9,0,1,1,1,1,9,7,2,0,1023,0,0,0,0,0,0,408.63049 +9719,11821,21113,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,0,0,0,0,-961.11652,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.8488097,0,29.61,28.53,-9,-9,5,1,1,0,1,0,7,1,0,424,39451.773,0,0,0,0,0,1386.996 +9720,11822,21114,21115,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.6188483,6.9073114,4.4152956,12,3,65.975426,0,-9,-9,2021,20,7,14,14,1,7,0,9.5265732,9.5265732,0,0,0,0,0,0,0,0,0,0,0,3.3587253,3.9898832,28.29,54.83,45.69,49.31,6.666666666666667,1,1,0,0,11,9,3,1,770,764781.88,330038.13,444422.88,0,0,-213.65794,1997.0247 +9720,11822,21115,21114,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.1987095,7.7859592,7.4226284,12,-3,-38.994144,0,3,3,2021,9,0,21,17,1,0,0,6.5663233,6.5663233,.05,.05,0,0,0,0,0,0,0,0,0,5.0550084,7.5029798,45.69,49.31,28.29,54.83,8.333333333333334,1,1,0,0,13,9,3,1,770,764781.88,330038.13,444422.88,0,0,-213.65794,1997.0247 +9721,11823,21116,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.4000559,6.4202452,0,0,-1044.0011,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,2.7080252,4.198772,14.281981,0,1,1,0,6.794683,6.4311442,54.38,22.81,-9,-9,5,1,1,0,0,0,9,2,0,719,207183.42,129107.46,0,0,0,0,416.90079 +9722,11824,21117,21118,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,7.6462984,7.4141469,0,8,-1,-158.86269,0,-9,3,2021,11,0,30,30,1,0,0,8.4906197,8.4906197,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,36.57,51.62,47.75,8.333333333333334,1,1,0,1,9,7,4,1,404,1368075,568429.44,420407.88,0,0,0,3564.3943 +9722,11824,21118,21117,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.0194769,7.6944361,0,8,1,-133.4155,0,3,3,2021,6,0,40,55,1,0,0,11.096763,11.096763,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.62,47.75,39.16,36.57,6.666666666666667,1,1,0,1,9,7,4,1,404,1368075,568429.44,420407.88,0,0,0,3564.3943 +9722,11825,21119,-9,-9,-9,1,0,18,0,0,0,2,2,1,0,3,7.5337958,7.5835075,0,0,0,-1050.0005,-9,-9,-9,2021,12,1,36,0,1,1,0,6.6232929,6.6232929,0,0,0,0,0,0,0,0,1,1,0,0,0,50.74,38.9,-9,-9,8.333333333333334,1,1,0,1,3,7,3,1,2325,0,0,0,0,0,0,754.54047 +9723,11826,21120,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.1139126,8.0025921,0,0,-1035.9821,0,1,3,2021,8,1,0,36,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1253743,8.0720243,50.01,49.78,-9,-9,8.333333333333334,1,1,0,0,5,8,4,1,627,1168604.1,417885.53,298009.81,0,0,0,1853.5463 +9724,11827,21121,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.0405989,8.1887445,0,0,0,-994.67554,0,2,2,2021,22,7,37,37,1,7,0,12.547324,12.547324,.05,.05,0,0,0,0,0,0,0,0,0,2.1387043,0,44.39,63.4,-9,-9,3.333333333333333,1,1,0,1,11,10,4,1,296,397313.66,168289.7,289247.66,77017.07,0,7387.3657,1540.7802 +9725,11828,21122,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1538086,6.9284339,0,0,-936.51825,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3124404,66.61,45.12,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,410,-13759.213,260369.73,89536.492,0,0,0,763.0343 +9726,11829,21123,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,0,0,0,0,-970.85303,0,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,14.574613,31.458914,140.04169,14.5,1,1,0,0,0,20.44,24.81,-9,-9,0,1,1,0,0,0,12,1,0,575,43726.844,43552.703,0,0,0,0,2301.9622 +9727,11830,21124,21125,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,7.8673143,8.098012,6.7165008,37,-4,78.050636,0,1,2,2021,12,0,20,22,1,0,0,14.435861,14.435861,0,0,0,0,0,0,0,7,1,1,0,0,6.9383349,64.90000000000001,22.54,53.05,28.78,8.333333333333334,1,1,0,0,9,2,5,1,807,375867,195205.09,153693.09,7999.1338,0,0,3005.509 +9727,11830,21125,21124,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.2555027,8.2787867,5.948482,37,4,87.539948,0,3,3,2021,12,1,42,40,1,1,0,11.001336,11.001336,.05,.05,0,0,0,0,0,2,1,1,0,1.5812576,6.1305256,53.05,28.78,64.90000000000001,22.54,6.666666666666667,1,1,0,0,9,2,5,1,807,375867,195205.09,153693.09,7999.1338,0,0,3005.509 +9728,11831,21126,21127,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,9.2282715,9.3494978,0,13,-2,41.079906,0,2,1,2021,5,0,45,44,1,0,0,31.436689,31.436689,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.68,54.24,34.68,33.06,8.333333333333334,1,1,0,0,10,9,5,1,816,179511.77,174269.16,0,0,16530.639,9467.2637,4142.6279 +9728,11831,21127,21126,-9,-9,1,0,38,0,0,0,2,2,-9,0,1,0,0,0,13,2,21.313168,0,-9,2,2021,16,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.68,33.06,55.68,54.24,6.666666666666667,1,1,0,0,6,9,5,1,816,179511.77,174269.16,0,0,16530.639,9467.2637,4142.6279 +9728,11832,21128,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3647547,8.2644405,0,0,0,-1104.546,-9,-9,-9,2021,11,0,40,0,1,2,0,12.114853,12.114853,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,4,6,0,0,1,9,4,1,1546,-26747.76,-14350.719,0,0,2575.5898,8046.3003,1777.3748 +9729,11833,21129,21133,-9,-9,1,1,45,0,4,0,1,1,-9,0,4,8.0799656,8.087718,0,3,8,44.249199,0,-9,-9,2021,9,0,40,40,1,1,0,6.9982114,6.9982114,.05,.05,0,0,0,0,0,0,1,1,0,8.1276264,0,53,55,32.79,44.66,8,3,4,0,0,1,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21130,-9,21133,21129,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-955.37451,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21131,-9,21133,21129,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-993.85614,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,-9,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21132,-9,21133,21129,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-965.13263,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21133,21129,-9,-9,1,0,37,0,4,0,3,3,-9,0,4,0,0,0,3,-8,-5.6624618,0,-9,-9,2021,3,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.79,44.66,53,55,3.333333333333333,3,4,1,0,4,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11833,21134,-9,21133,21129,1,0,16,0,4,1,2,0,-9,0,2,0,0,0,0,0,-926.23053,-9,3,1,2021,9,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,43,-9,-9,5,3,4,0,0,0,8,2,0,439.16666,257981.53,67951.086,382406.72,57194.016,546.80219,0,5534.0293 +9729,11834,21135,-9,21133,21129,1,0,18,0,4,0,2,2,1,0,4,8.0114365,7.9243164,0,0,0,-1128.6027,-9,3,1,2021,12,0,12,0,1,2,1,33.514053,33.514053,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,3,4,0,0,1,8,4,0,341,-35279.484,0,0,0,34.183014,0,1620.3171 +9730,11835,21136,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.4628773,7.4483333,0,0,-902.32092,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.3106976,7.6943693,54,45,-9,-9,8,2,3,0,0,0,8,3,1,2479,862315.19,114791.05,414589.66,0,0,0,3100.9668 +9731,11836,21137,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0986776,7.1906385,0,0,-977.35815,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.3517857,7.0686245,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,1366,195502.39,226660.11,122542.29,0,1492.7999,0,1871.1323 +9732,11837,21138,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-996.04297,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,701,-9323.5088,0,0,0,0,0,1529.9669 +9732,11838,21139,-9,21138,-9,1,1,58,0,0,0,2,2,-9,0,3,8.0294638,7.5779128,0,0,0,-1090.8237,0,3,-9,2021,11,0,20,40,1,2,0,13.725224,13.725224,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,1,1,4,1,695,-58117.449,0,0,0,1387.5692,3244.0642,1481.4968 +9733,11839,21140,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.7346601,7.7076411,0,0,-887.10181,-9,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7001748,7.7151546,56.74,33.83,-9,-9,8.333333333333334,1,1,0,0,15,4,3,0,872,912142.5,428586.69,185275.02,0,0,0,-254.5011 +9733,11840,21141,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3336372,8.191597,0,0,0,-963.34875,0,-9,-9,2021,21,9,40,44,1,9,0,9.5410862,9.5410862,0,0,0,0,0,0,0,0,0,0,0,0,0,35.91,63.19,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,1821,0,0,0,0,0,0,1732.6447 +9734,11841,21142,21143,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,7.4080586,7.2437515,0,25,1,-152.59045,0,2,2,2021,14,3,50,50,1,3,0,3.2170811,3.2170811,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.99,48.04,50.21,47.07,8.333333333333334,1,1,0,0,9,12,4,1,787.5,376548.16,314080.19,0,0,0,0,2583.1414 +9734,11841,21143,21142,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2033539,8.1817961,0,27,-1,-49.234283,0,2,2,2021,17,6,32,50,1,6,0,10.394642,10.394642,0,0,0,0,0,0,0,0,0,0,0,2.3845396,0,50.21,47.07,53.99,48.04,8.333333333333334,1,1,0,0,6,12,4,1,787.5,376548.16,314080.19,0,0,0,0,2583.1414 +9734,11842,21144,-9,21143,21142,1,1,23,0,0,0,2,2,-9,0,5,7.5156975,7.6620698,0,0,0,-1108.8734,0,2,2,2021,11,2,40,45,1,2,1,6.4213896,6.4213896,0,0,0,0,0,0,0,0,0,0,0,0,0,53.23,55.33,-9,-9,6.666666666666667,1,1,0,0,6,12,3,1,266,24314.676,96810,0,0,0,0,1059.038 +9734,11843,21145,-9,21143,21142,1,1,21,0,0,0,2,2,-9,0,3,7.7660861,7.8005271,0,0,0,-954.07959,0,2,2,2021,9,0,75,70,1,0,1,3.8441861,3.8441861,0,0,0,0,0,0,0,0,0,0,0,0,0,31.49,60.05,-9,-9,6.666666666666667,1,1,0,0,4,12,3,1,405,-69198.789,-45047.445,0,0,0,0,381.71854 +9735,11844,21146,21147,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,8.851018,8.5932999,8,4,-82.574371,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,7.6029139,0,65.856361,0,1,1,0,5.9776802,8.8428183,60.03,42.51,57.16,56.15,8.333333333333334,1,1,0,0,6,8,4,1,452,928972.94,0,715613.88,0,0,0,6157.3389 +9735,11844,21147,21146,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.3261762,6.2908587,8,-4,101.97552,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9869609,6.66607,57.16,56.15,60.03,42.51,10,1,1,0,0,6,8,4,1,452,928972.94,0,715613.88,0,0,0,6157.3389 +9736,11845,21148,-9,21151,21150,1,0,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1097.3213,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,2,3,-9,0,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21149,-9,21151,21150,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1000.916,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,2,3,-9,0,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21150,21151,-9,-9,1,1,57,0,2,0,3,3,-9,0,2,7.2260542,7.3167744,0,21,7,85.175781,0,2,2,2021,13,3,29,44,1,3,0,6.1080852,6.1080852,0,0,0,0,0,0,0,0,1,1,0,0,0,51.95,39.82,39.98,36.02,8.333333333333334,2,3,0,1,4,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21151,21150,-9,-9,1,0,50,0,2,0,2,2,-9,0,2,0,0,0,21,-7,65.910797,0,3,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,51.95,39.82,5,2,3,1,1,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9736,11845,21152,-9,21151,21150,1,1,17,0,2,1,2,0,0,0,2,0,0,0,0,0,-891.81464,-9,2,3,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,-9,-9,6.666666666666667,2,3,0,0,0,8,2,0,898.40002,551708.13,101295.16,380091.94,0,0,0,3270.2961 +9737,11846,21153,21154,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,4.967021,4.9857507,55,6,56.798023,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,2.6672478,4.8661981,64.57000000000001,33.75,54.22,36.37,10,1,1,0,0,0,9,2,1,1024,804412.38,23812.086,484618.63,0,0,0,2104.4214 +9737,11846,21154,21153,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,55,-6,5.5950975,0,2,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3010337,0,54.22,36.37,64.57000000000001,33.75,8.333333333333334,1,1,0,0,0,9,2,1,1024,804412.38,23812.086,484618.63,0,0,0,2104.4214 +9738,11847,21155,21156,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,42,-5,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3186646,0,46.92,60.71,56,52,8.333333333333334,1,1,0,0,0,9,1,1,1291,61525.141,-1447.9688,222007.05,0,2701.3142,0,982.33716 +9738,11847,21156,21155,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,6,5,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,52,46.92,60.71,8,1,1,0,0,0,9,1,1,1291,61525.141,-1447.9688,222007.05,0,2701.3142,0,982.33716 +9739,11848,21157,21159,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,9.4450703,9.9765558,0,23,-4,-69.317696,0,2,1,2021,21,9,45,60,1,9,0,31.269178,31.269178,.05,.05,0,0,0,0,0,0,0,0,0,2.9358141,0,33.14,64.63,38.33,57.72,3.333333333333333,4,2,0,0,13,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9739,11848,21158,-9,21159,21157,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-889.12146,-9,1,1,2021,14,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,51.26,-9,-9,6.666666666666667,4,2,0,0,1,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9739,11848,21159,21157,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,9.0157661,9.085063,0,21,4,-39.399887,0,2,2,2021,12,0,42,31,1,0,0,17.304857,17.304857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.33,57.72,33.14,64.63,8.333333333333334,1,1,0,0,13,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9739,11848,21160,-9,21159,21157,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.6906,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,663,2339014.3,1612534,323560.75,0,10277.715,7887.4561,9617.2109 +9740,11849,21161,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,7.5256519,8.1053047,7.8698092,0,0,-1138.1791,0,2,2,2021,12,0,26,25,1,0,0,7.1401038,7.1401038,.05,.05,0,0,0,0,0,0,1,1,0,4.855794,7.9206858,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,7,4,1,1555,335302.94,196282.47,117207.27,0,0,0,2975.1497 +9741,11850,21162,21163,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,.09870293,0,8,2,-48.618927,0,3,3,2021,12,0,30,35,1,0,0,.00055048749,.00055048749,0,0,0,0,0,0,0,0,0,0,0,0,0,51.47,53.17,35.44,34.8,6.666666666666667,1,1,0,0,15,13,2,1,770.5,266435.06,297853.44,0,0,0,4756.7529,215.36816 +9741,11850,21163,21162,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,8,-2,2.5541942,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.44,34.8,51.47,53.17,3.333333333333333,1,1,1,0,0,13,2,1,770.5,266435.06,297853.44,0,0,0,4756.7529,215.36816 +9742,11851,21164,21165,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.5652966,7.4660254,35,11,-44.655468,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7352042,7.4334288,25.11,37.41,45.72,55.07,8.333333333333334,1,1,0,0,0,1,3,1,377.5,787461.31,435299.81,113881.67,0,0,0,1791.8704 +9742,11851,21165,21164,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,0,6.3359475,5.8932786,36,-11,-6.9205656,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7083411,6.0956469,45.72,55.07,25.11,37.41,5,1,1,0,0,6,1,3,1,377.5,787461.31,435299.81,113881.67,0,0,0,1791.8704 +9743,11852,21166,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2569017,8.3176012,0,0,0,-976.75684,0,3,2,2021,7,0,42,44,1,0,0,7.9068518,7.9068518,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,12,4,1,846,473046.06,47692.66,183509.77,0,0,0,1638.1277 +9744,11853,21167,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,2,0,8.0121117,7.9907928,0,0,-900.11877,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1274309,8.2477312,48.29,26.63,-9,-9,5,1,1,0,0,0,4,4,1,896,733214.69,56226.266,318695.72,0,0,0,2192.6763 +9745,11854,21168,21169,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.614584,7.7810235,6,12,-129.38103,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.631701,7.9563894,37.36,54.65,54.13,45.34,6.666666666666667,1,1,0,0,6,10,4,1,1171.5,1813540.8,896422.5,368302.5,0,0,0,3135.7429 +9745,11854,21169,21168,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,8.2068062,8.074214,6,-12,-50.383541,0,2,2,2021,12,1,0,30,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1591253,54.13,45.34,37.36,54.65,8.333333333333334,1,1,0,0,9,10,4,1,1171.5,1813540.8,896422.5,368302.5,0,0,0,3135.7429 +9746,11855,21170,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,5,0,7.0146732,7.3055725,0,0,-996.88123,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2311244,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,4,12,2,0,259,-127704.45,43870.879,0,0,0,0,658.97815 +9746,11856,21171,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,3.4790099,3.5370958,0,0,-957.1803,-9,-9,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5117688,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,250,177331.98,0,0,0,0,0,-147.68324 +9746,11857,21172,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-958.86865,-9,-9,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,2,0,595,163642.78,0,0,0,0,0,467.38342 +9747,11858,21173,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,9.0853701,9.2716169,0,0,0,-1073.0907,0,1,1,2021,11,0,40,38,1,0,0,22.916451,22.916451,.05,.05,0,0,0,0,0,0,0,0,0,.79954946,0,33.64,53.56,-9,-9,5,1,1,0,0,11,8,5,1,1474,-13361.867,43901.457,0,0,-95.194168,1732.7621,2943.7517 +9748,11859,21174,-9,21175,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.7616,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,0,681.66669,-23336.182,38798.871,0,0,0,0,3086.9915 +9748,11859,21175,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.7777977,7.8927932,0,0,0,-1111.4772,0,2,2,2021,13,2,38,40,1,2,0,7.636127,7.636127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.53,37.25,-9,-9,5,1,1,0,1,4,7,3,0,681.66669,-23336.182,38798.871,0,0,0,0,3086.9915 +9748,11859,21176,-9,21175,-9,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.3594,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,49.95,-9,-9,8.333333333333334,1,1,0,0,0,7,3,0,681.66669,-23336.182,38798.871,0,0,0,0,3086.9915 +9748,11860,21177,-9,21175,-9,1,1,19,0,2,0,2,2,-9,0,4,7.5628738,7.5888925,0,0,0,-987.85938,0,2,-9,2021,4,0,53,60,1,0,1,3.4510834,3.4510834,0,0,0,0,0,0,0,0,1,1,0,0,0,52.59,55.68,-9,-9,10,1,1,0,0,3,7,3,0,366,1814.5389,0,0,0,0,0,988.60522 +9749,11861,21178,21179,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.6690545,5.3127313,52,2,109.51482,0,2,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,4.2305694,0,0,1,1,0,5.3943262,5.8508334,41.9,37.91,46.92,54.3,10,1,1,0,0,0,2,2,1,1865.5,627670.13,29810.676,189102.91,0,0,0,1433.0261 +9749,11861,21179,21178,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,52,-2,2.2734661,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.92,54.3,41.9,37.91,8.333333333333334,1,1,0,0,0,2,2,1,1865.5,627670.13,29810.676,189102.91,0,0,0,1433.0261 +9750,11862,21180,21181,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,7.3850226,7.7754445,6,6,-54.20776,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.2670116,57.06,57.76,60.3,46.58,10,1,1,0,0,0,12,4,0,395.5,1059203.4,989300.13,383386.69,127677.43,0,0,3614.1682 +9750,11862,21181,21180,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.532177,8.2556238,0,6,-6,-60.803833,0,2,3,2021,6,0,43,40,1,0,0,11.444047,11.444047,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,46.58,57.06,57.76,8.333333333333334,1,1,0,0,7,12,4,0,395.5,1059203.4,989300.13,383386.69,127677.43,0,0,3614.1682 +9751,11863,21182,21183,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,39,2,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.22,39.67,47.7,24.01,10,2,3,0,0,7,8,1,1,1584.5,51293.809,-72764.625,0,0,0,0,0 +9751,11863,21183,21182,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,39,-2,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,35.988758,0,0,0,0,0,0,0,47.7,24.01,54.22,39.67,1.666666666666667,2,3,0,0,0,8,1,1,1584.5,51293.809,-72764.625,0,0,0,0,0 +9752,11864,21184,21185,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.9171863,6.7064567,11,2,-100.57047,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3805995,54.37,54.8,57.63,45.09,10,1,1,0,0,8,4,3,1,515.5,796894.5,694939,165293.13,0,-315.97144,0,2042.9443 +9752,11864,21185,21184,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,7.0740275,7.4531603,11,-2,24.417379,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6022635,57.63,45.09,54.37,54.8,5,1,1,0,0,8,4,3,1,515.5,796894.5,694939,165293.13,0,-315.97144,0,2042.9443 +9753,11865,21186,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.2820849,7.0402904,0,0,0,-1043.8871,0,2,2,2021,11,0,19,19,1,0,0,8.0282555,8.0282555,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,61.85,-9,-9,5,1,1,0,0,8,7,3,0,5049,177744.75,0,0,0,0,0,3107.4355 +9754,11866,21187,21188,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,9.5858116,9.5427418,0,27,0,-62.027264,0,1,1,2021,6,0,40,38,1,0,0,33.81501,33.81501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,51.48,47.2,8.333333333333334,1,1,0,0,10,12,5,1,2709.5,954317.38,607131.06,452306.69,151085.09,3855.6606,453.16376,3958.1157 +9754,11866,21188,21187,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,7.2674642,7.5489197,0,27,0,10.4995,0,1,1,2021,14,4,25,20,1,4,0,9.5414343,9.5414343,0,0,0,0,0,0,0,0,0,0,0,4.101573,0,51.48,47.2,57.73,54.53,8.333333333333334,1,1,0,0,11,12,5,1,2709.5,954317.38,607131.06,452306.69,151085.09,3855.6606,453.16376,3958.1157 +9754,11867,21189,-9,21188,21187,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1048.1526,-9,1,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.9782369,0,46.4,59.87,-9,-9,10,1,1,0,0,0,12,1,1,481,1708.9375,0,0,0,0,0,-257.21146 +9755,11868,21190,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,2,8.6124935,8.5472527,0,0,0,-901.90125,0,3,3,2021,22,9,40,40,1,9,0,16.02352,16.02352,.05,.05,0,0,0,0,0,0,1,1,0,6.0866785,0,35.88,51.34,-9,-9,3.333333333333333,1,1,0,0,8,12,5,1,321,147113.98,160857.56,87377.586,75704.305,3556.541,0,2246.9885 +9756,11869,21191,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1048.4009,0,3,3,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.58,46.43,-9,-9,8.333333333333334,1,1,1,0,2,2,2,0,306,-125692.16,0,0,0,0,0,240.2231 +9757,11870,21192,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1062.6838,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.74,20.47,-9,-9,1.666666666666667,1,1,0,0,11,12,1,0,151,174159.55,0,57932.844,0,0,0,1118.7056 +9757,11871,21193,-9,-9,-9,1,0,24,0,0,0,2,2,1,0,2,7.5403442,7.3345885,0,0,0,-994.17755,-9,-9,-9,2021,23,9,20,0,1,9,0,7.8304043,7.8304043,0,0,0,0,0,0,0,0,1,1,0,7.7436142,0,22.77,57.16,-9,-9,10,1,1,0,0,7,12,3,0,330,-16446.439,0,0,0,0,0,2148.3354 +9758,11872,21194,21195,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.5358896,7.9465642,0,28,0,160.88383,0,3,3,2021,16,4,35,45,1,4,0,7.0103135,7.0103135,0,0,0,0,0,0,0,0,0,0,0,3.1927035,0,41.34,56.62,43.23,42.23,8.333333333333334,1,1,0,0,8,4,4,1,720.5,586843.5,85427.648,309835.13,78653.266,0,0,3553.4221 +9758,11872,21195,21194,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.5195065,8.2120981,0,7,9,-120.56931,0,-9,2,2021,23,11,36,42,1,11,0,17.287619,17.287619,.05,.05,0,0,0,0,0,7,0,0,0,3.4900417,0,43.23,42.23,41.34,56.62,3.333333333333333,1,1,0,0,8,4,4,1,720.5,586843.5,85427.648,309835.13,78653.266,0,0,3553.4221 +9758,11873,21196,-9,21194,21195,1,1,22,0,0,0,2,2,-9,0,3,7.817317,7.865448,0,0,0,-979.45258,0,2,2,2021,19,7,42,40,1,7,1,6.4697475,6.4697475,0,0,0,0,0,0,0,0,0,0,0,.14639637,0,25.27,63.07,-9,-9,3.333333333333333,1,1,0,0,8,4,3,1,530,0,0,0,0,0,0,1068.9025 +9759,11874,21197,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3530817,8.4994135,0,0,0,-1043.7426,0,2,2,2021,17,6,41,41,1,6,0,13.924997,13.924997,0,0,0,0,0,0,0,0,0,0,0,1.3463478,0,29.53,39.4,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,532,1866555.4,980324.19,0,0,4877.3169,0,2305.7124 +9759,11875,21198,-9,21197,-9,1,0,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-939.41541,0,2,-9,2021,25,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.12,48.66,-9,-9,3.333333333333333,1,1,0,0,7,2,2,1,1453,-94002.781,0,0,0,0,0,-337.99353 +9760,11876,21199,21202,-9,-9,1,1,45,2,2,0,1,1,-9,0,3,9.0235281,8.5495853,0,4,5,7.2802277,0,-9,-9,2021,6,0,35,35,1,0,0,26.982363,26.982363,.05,.05,0,0,0,0,0,0,1,1,0,4.2259564,0,57.33,53.46,57.06,57.76,10,4,2,0,0,10,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9760,11876,21200,-9,21202,21199,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.6774,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9760,11876,21201,-9,21202,21199,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.8491,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9760,11876,21202,21199,-9,-9,1,0,40,2,2,0,1,1,-9,0,5,8.4818802,7.9537101,0,4,-5,58.184303,0,2,2,2021,8,0,22,21,1,0,0,25.314911,25.314911,.05,.05,0,0,0,0,0,0,1,1,0,7.3801141,0,57.06,57.76,57.33,53.46,10,4,2,0,0,10,8,5,1,634.5,605793.63,217865.03,562094.81,193813.61,0,0,5759.2827 +9761,11877,21203,21204,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,0,0,49,1,66.406883,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,51.32,54.94,50.33,8.333333333333334,1,1,0,1,11,5,3,1,774,1236402,523628.31,373368.16,0,0,0,2567.521 +9761,11877,21204,21203,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,7.912467,8.1388254,49,-1,-185.39185,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8409605,54.94,50.33,41.23,51.32,8.333333333333334,1,1,0,1,9,5,3,1,774,1236402,523628.31,373368.16,0,0,0,2567.521 +9762,11878,21205,21206,-9,-9,1,1,40,0,0,0,1,1,-9,0,3,8.4214888,8.6014585,0,6,2,94.58844,0,2,2,2021,13,1,38,38,1,1,0,12.568537,12.568537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.27,50.59,50.03,52.62,6.666666666666667,1,1,0,0,8,1,5,0,514,123068.81,125193.28,68711.625,53131.383,0,0,3008.0413 +9762,11878,21206,21205,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2088327,8.3524704,0,6,-2,-7.257431,0,-9,-9,2021,7,0,38,38,1,0,0,11.654435,11.654435,.05,.05,0,0,0,0,0,0,0,0,0,7.3306079,0,50.03,52.62,40.27,50.59,8.333333333333334,1,1,0,0,6,1,5,0,514,123068.81,125193.28,68711.625,53131.383,0,0,3008.0413 +9763,11879,21207,-9,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.0401087,8.1060047,0,0,-1010.6779,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0599833,57.16,56.15,-9,-9,10,1,1,0,0,5,11,4,1,1855,540441.75,308851.38,84156.781,0,0,0,2120.6584 +9763,11880,21208,-9,-9,21207,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-991.18085,-9,-9,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0239989,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,1,11,1,1,963,-36733.984,0,0,0,0,0,-578.61121 +9764,11881,21209,-9,21210,-9,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-872.79663,-9,2,-9,2021,15,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,62.66,52.4,-9,-9,5,1,1,0,0,0,7,3,1,1286.5,25334.242,-19617,0,0,0,0,1159.239 +9764,11881,21210,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.7371287,7.9031239,0,0,0,-1002.0973,0,3,3,2021,16,5,32,32,1,5,0,9.1728086,9.1728086,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,-9,-9,5,1,1,0,0,12,7,3,1,1286.5,25334.242,-19617,0,0,0,0,1159.239 +9764,11882,21211,-9,21210,-9,1,0,19,0,1,0,2,2,0,0,3,0,0,0,0,0,-883.22888,-9,2,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,6.6997414,0,28.63,54.27,-9,-9,3.333333333333333,1,1,0,1,3,7,1,1,124,58258.129,0,0,0,0,0,273.26944 +9765,11883,21212,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1579399,8.1646166,0,0,0,-945.33374,0,-9,-9,2021,20,8,46,46,1,8,0,10.640578,10.640578,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,54.55,-9,-9,3.333333333333333,1,1,0,0,10,11,4,1,1282,-18628.896,-32447.211,0,0,0,0,2001.0114 +9766,11884,21213,-9,21215,21218,1,0,0,1,6,1,3,0,-9,0,4,0,0,0,0,0,-901.7666,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21214,-9,21215,21218,1,1,8,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1024.9832,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21215,21218,-9,-9,1,0,34,1,6,0,2,2,-9,1,3,7.8033409,7.4838772,0,7,-6,-97.718872,0,2,3,2021,18,5,39,33,1,5,0,7.7975674,7.7975674,0,0,0,0,0,0,0,0,1,1,0,0,0,36.55,46.8,38.86,59.06,3.333333333333333,1,1,0,0,2,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21216,-9,21215,21218,1,0,13,1,6,1,3,0,-9,0,4,0,0,0,0,0,-1051.3497,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21217,-9,21215,21218,1,1,15,1,6,1,3,0,-9,0,3,0,0,0,0,0,-1052.9276,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21218,21215,-9,-9,1,1,40,1,6,0,2,2,-9,0,3,0,0,0,7,6,-48.708321,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.86,59.06,36.55,46.8,6.666666666666667,1,1,0,0,3,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21219,-9,21215,21218,1,1,6,1,6,1,3,0,-9,0,4,0,0,0,0,0,-995.66809,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9766,11884,21220,-9,21215,21218,1,0,11,1,6,1,3,0,-9,0,3,0,0,0,0,0,-1019.4124,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,7,2,0,589.75,-40539.867,-3769.3906,0,0,0,5778.002,3235.1658 +9767,11885,21221,-9,21223,-9,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-964.58258,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9767,11885,21222,-9,21223,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.847,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9767,11885,21223,-9,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,7.67101,8.353672,7.9367976,0,0,-1062.5199,0,2,2,2021,13,1,20,37,1,1,0,13.121556,13.121556,.05,.05,0,0,0,0,0,0,1,1,0,7.39397,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,1,7,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9767,11885,21224,-9,21223,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1117.3987,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,1,335.5,211251.67,79610.531,297766.31,194001.67,16056.405,0,3085.5659 +9768,11886,21225,21226,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,12,6,-48.604504,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.65,41.83,57.17,50.61,6.666666666666667,1,1,0,0,1,13,3,1,620.5,1383011.5,1010842.1,174919.16,0,0,0,2265.1011 +9768,11886,21226,21225,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.2033815,7.9599447,0,12,-6,-39.713066,0,3,3,2021,11,0,38,38,1,0,0,9.811162,9.811162,0,0,0,0,0,0,0,0,1,0,1,0,0,57.17,50.61,55.65,41.83,8.333333333333334,1,1,0,0,13,13,3,1,620.5,1383011.5,1010842.1,174919.16,0,0,0,2265.1011 +9768,11887,21227,-9,21226,21225,1,1,34,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1120.16,-9,3,3,2021,18,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26.99,55.7,-9,-9,5,1,1,1,0,5,13,2,1,151,97966.828,0,0,0,0,0,33.983078 +9768,11888,21228,-9,21226,21225,1,0,31,0,0,0,1,1,-9,0,3,8.4785471,8.633378,0,2,-1,162.1185,0,3,3,2021,10,0,38,38,1,0,0,18.174883,18.174883,.05,.05,0,0,0,0,0,0,1,0,1,0,0,50.03,52.62,47,57,6.666666666666667,1,1,0,0,9,13,4,1,210,18591.123,-83581.102,179774.19,67954.055,1802.1017,0,2272.3752 +9769,11889,21229,-9,-9,-9,1,0,22,0,0,1,2,0,-9,0,3,0,4.5794668,4.5577364,0,0,-993.82928,-9,-9,-9,2021,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2151871,0,21.67,59.26,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,853,10853.248,0,0,0,0,0,-91.259964 +9769,11890,21230,-9,-9,-9,1,0,19,0,0,1,2,0,-9,0,4,0,7.3470798,7.3159213,0,0,-1015.9691,-9,-9,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5031552,0,32.03,56.92,-9,-9,6.666666666666667,2,3,0,0,0,6,3,0,619,-180734.67,0,0,0,0,0,525.60095 +9770,11891,21231,-9,-9,-9,1,1,58,0,3,0,2,2,-9,0,4,8.1232433,8.210474,0,0,0,-1017.07,0,2,2,2021,7,0,37,37,1,0,0,11.57906,11.57906,.05,.05,.05,0,0,0,0,0,1,1,0,2.7205944,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,2,3,1,314,513724.56,280254.13,66290.883,5531.5366,9399.7686,4315.7822,535.84235 +9771,11892,21232,21233,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.8274965,7.5993967,0,26,-8,119.88152,0,2,2,2021,12,0,35,41,1,0,0,7.2068524,7.2068524,0,0,0,0,0,0,0,91,1,1,0,0,0,46.16,58.62,40.6,15.23,5,1,1,0,0,11,1,4,1,235,143861.16,3826.4248,0,0,0,0,2370.9619 +9771,11892,21233,21232,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,7.4680133,7.7481604,23,8,113.93597,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,7.5719028,7.5998998,40.6,15.23,46.16,58.62,6.666666666666667,1,1,0,0,10,1,4,1,235,143861.16,3826.4248,0,0,0,0,2370.9619 +9771,11893,21234,-9,21232,21233,1,0,19,0,0,1,2,0,0,0,4,0,6.5759673,6.6000462,0,0,-1159.9773,-9,2,2,2021,24,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7704864,0,44.55,60.42,-9,-9,6.666666666666667,1,1,0,0,3,1,2,1,495,-221915.53,0,0,0,0,0,592.89832 +9772,11894,21235,21236,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.6109695,8.3689814,0,29,-6,-44.671257,0,3,3,2021,13,1,52,0,1,1,0,8.0917931,8.0917931,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.12,54.23,57.33,53.46,5,1,1,0,0,12,6,5,1,826,986349.44,471589.75,422541,74595.695,0,0,4088.2832 +9772,11894,21236,21235,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.5627766,8.3498869,0,12,6,36.595592,0,-9,-9,2021,6,0,48,48,1,0,0,12.6016,12.6016,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,29.12,54.23,8.333333333333334,1,1,0,0,14,6,5,1,826,986349.44,471589.75,422541,74595.695,0,0,4088.2832 +9773,11895,21237,-9,-9,-9,1,0,23,0,1,0,2,2,-9,0,3,7.8492489,7.8592677,0,0,0,-839.62823,0,2,-9,2021,16,4,8,8,1,4,1,51.909744,51.909744,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.19,51.54,-9,-9,3.333333333333333,4,2,0,0,7,2,4,0,1961,73741.445,63822.488,162811.98,110494.48,0,2029.5164,749.14813 +9774,11896,21238,21239,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.3326426,8.2115927,0,32,3,-186.95399,0,2,1,2021,9,0,38,38,1,0,0,11.667127,11.667127,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.9,44.55,45.62,57.46,6.666666666666667,4,2,0,0,14,6,5,1,342.5,3490803.5,99808.328,286273.91,0,0,0,4971.561 +9774,11896,21239,21238,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.2758026,9.0154781,0,31,-3,132.96429,0,2,2,2021,10,0,40,45,1,0,0,33.284351,33.284351,0,0,0,0,0,0,0,14.5,0,0,0,0,0,45.62,57.46,56.9,44.55,8.333333333333334,3,4,0,0,14,6,5,1,342.5,3490803.5,99808.328,286273.91,0,0,0,4971.561 +9775,11897,21240,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.9250679,8.064311,0,0,0,-975.12561,0,3,2,2021,1,0,35,35,1,0,0,9.123168,9.123168,0,0,0,0,0,0,0,7,0,0,0,4.1865621,0,47.62,56.48,-9,-9,3.333333333333333,1,1,0,0,6,11,4,1,71,27408.092,0,-9824.0898,0,-142.40312,0,1293.5126 +9776,11898,21241,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.197166,7.608758,0,0,-1025.3619,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5994654,7.2849464,60.05,26.59,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,3054,552152.5,305334.72,202219.2,0,0,0,1754.2072 +9777,11899,21242,-9,-9,-9,1,1,54,0,0,0,2,2,-9,1,4,0,0,0,0,0,-986.47986,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,260,145953.5,0,0,0,0,0,617.31726 +9777,11900,21243,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1031.0504,0,3,3,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.35,38.97,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,438,0,0,0,0,0,0,832.76685 +9778,11901,21244,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.210156,7.2025256,0,0,-970.28033,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.209038,6.9348707,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,295,135632.19,167875.33,195267.72,0,0,0,647.30042 +9779,11902,21245,-9,21247,21246,1,1,24,0,0,0,1,1,-9,0,4,8.4865017,8.4659882,0,0,0,-1146.0179,0,2,2,2021,11,0,40,40,1,0,1,13.745779,13.745779,.05,.05,0,0,0,0,0,0,0,0,0,3.2722824,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,7,4,5,1,470,-6008.8721,-44176.313,0,0,794.80151,1866.2614,2585.1995 +9779,11903,21246,21247,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.6534739,8.5963526,0,33,-1,76.064308,0,3,3,2021,7,0,37,37,1,0,0,19.405252,19.405252,.05,.05,0,0,0,0,0,0,0,0,0,4.433866,0,57.91,46.31,51.06,32.08,10,1,1,0,0,11,4,5,1,698,255227.53,69342.672,167621.59,-1662.3647,0,0,3190.7603 +9779,11903,21247,21246,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.4417257,7.3582783,0,33,1,9.4732456,0,3,3,2021,11,2,17,17,1,2,0,14.159703,14.159703,.05,.05,0,0,0,0,0,0,0,0,0,5.8384619,0,51.06,32.08,57.91,46.31,8.333333333333334,1,1,0,0,11,4,5,1,698,255227.53,69342.672,167621.59,-1662.3647,0,0,3190.7603 +9780,11904,21248,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.9892225,5.6925912,0,0,-932.01593,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4427209,47.41,33.59,-9,-9,10,1,1,0,0,0,9,2,1,392,156511.53,158996.78,176462.84,0,0,785.08765,742.75745 +9781,11905,21249,21250,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.2023363,9.4190893,0,10,-2,-.37926754,0,2,2,2021,9,1,50,50,1,1,0,23.864134,23.864134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,24.45,55.43,6.666666666666667,1,1,0,0,10,4,5,1,1279,2425408.5,1957004.3,491762,14083.112,0,0,5627.7842 +9781,11905,21250,21249,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.969141,8.6614246,0,10,2,-3.5571914,0,2,2,2021,13,1,55,55,1,1,0,11.013463,11.013463,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.45,55.43,57.33,53.46,3.333333333333333,1,1,0,0,11,4,5,1,1279,2425408.5,1957004.3,491762,14083.112,0,0,5627.7842 +9781,11906,21251,-9,21250,21249,1,0,22,0,0,0,1,1,0,0,4,0,0,0,0,0,-1003.8957,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4306674,0,54.2,57.49,-9,-9,5,1,1,0,1,2,4,1,1,1122,0,0,0,0,0,0,5876.2427 +9781,11907,21252,-9,21250,21249,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1082.952,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,2,4,1,1,1467,36393.082,0,0,0,0,0,2468.3005 +9781,11908,21253,-9,21250,21249,1,0,18,0,0,0,2,2,1,0,3,0,0,0,0,0,-945.01837,-9,1,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2717521,0,49.04,55.86,-9,-9,8.333333333333334,1,1,1,0,0,4,1,1,1338,164796.31,0,0,0,0,0,14.510964 +9782,11909,21254,21255,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.0324612,8.1037178,0,4,4,14.710377,0,3,3,2021,13,3,38,38,1,3,0,8.2221031,8.2221031,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.54,54.5,34.06,30.84,8.333333333333334,1,1,0,0,12,5,5,1,751.5,1172676,1020816.6,172654,29717.227,35876.965,0,3000.0078 +9782,11909,21255,21254,-9,-9,1,0,50,0,0,0,2,2,-9,0,1,8.4589291,8.1735859,0,4,-4,-50.461239,0,-9,-9,2021,28,12,36,40,1,12,0,13.519533,13.519533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.06,30.84,48.54,54.5,5,1,1,0,0,6,5,5,1,751.5,1172676,1020816.6,172654,29717.227,35876.965,0,3000.0078 +9782,11910,21256,-9,21255,21254,1,0,22,0,0,0,1,1,-9,0,4,6.7596879,6.9774394,0,0,0,-1117.418,0,2,2,2021,14,1,39,0,1,1,1,2.7947555,2.7947555,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1731,68014.016,0,0,0,-192.39786,0,10.630415 +9782,11911,21257,-9,21255,21254,1,1,21,0,0,1,2,0,0,1,2,0,6.0592928,5.9365439,0,0,-1018.4615,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,.52218962,0,1,1,0,7.4633279,0,46.32,53.44,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1046,206687.22,0,0,0,6423.3569,0,773.63721 +9783,11912,21258,-9,21259,21260,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.33435,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9783,11912,21259,21260,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,5.0545645,4.8904042,0,15,1,4.4265523,0,-9,2,2021,12,0,16,16,1,0,0,1.153484,1.153484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.52,62.31,36.95,53.75,8.333333333333334,1,1,0,0,10,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9783,11912,21260,21259,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,9.0632839,9.1597052,0,14,-1,-65.660057,0,2,-9,2021,10,0,45,60,1,0,0,19.816328,19.816328,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.95,53.75,40.52,62.31,6.666666666666667,1,1,0,0,10,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9783,11912,21261,-9,21259,21260,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.6371,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,753.75,92093,4208.4292,172301.97,101625.27,0,0,2511.0928 +9784,11913,21262,21264,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,6.2341495,5.982307,37,16,38.552414,0,3,3,2021,18,8,0,0,4,8,0,0,0,0,0,0,1,0,20.266819,0,14.5,1,1,0,5.9103427,5.9917417,42.13,24.16,50.89,41.27,6.666666666666667,1,1,0,0,3,7,2,1,418.33334,810375.44,296515.25,441470.91,0,0,0,1535.0922 +9784,11913,21263,-9,21264,21262,1,1,15,0,0,1,3,0,-9,0,5,0,0,0,0,0,-801.71191,-9,-9,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,1,418.33334,810375.44,296515.25,441470.91,0,0,0,1535.0922 +9784,11913,21264,21262,-9,-9,1,0,57,0,0,0,2,2,-9,1,3,6.4597769,6.5910573,5.7314525,35,-16,-50.850483,0,3,3,2021,15,4,16,20,1,4,0,4.3221726,4.3221726,0,0,0,0,0,0,0,7,1,1,0,5.021307,0,50.89,41.27,42.13,24.16,3.333333333333333,1,1,0,1,11,7,2,1,418.33334,810375.44,296515.25,441470.91,0,0,0,1535.0922 +9785,11914,21265,21266,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.5724773,6.4431911,11,0,-102.06584,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7182307,46.17,46.33,57.33,53.46,6.666666666666667,3,4,0,0,0,2,2,1,1475.5,441335,156877.81,140294.06,0,0,0,1076.9377 +9785,11914,21266,21265,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.2786999,6.3302903,11,0,-49.665146,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3792639,57.33,53.46,46.17,46.33,10,1,1,0,0,0,2,2,1,1475.5,441335,156877.81,140294.06,0,0,0,1076.9377 +9786,11915,21267,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-925.83826,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,42.5,25.25,-9,-9,5,1,1,0,0,0,12,1,0,1099,0,0,0,0,0,0,1210.6624 +9787,11916,21268,-9,21269,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.8375,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,500.5,638412.94,-48534.27,588034.69,116885.02,0,0,2422.312 +9787,11916,21269,-9,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.0761118,8.1003857,0,0,0,-1090.7988,0,2,2,2021,11,0,35,45,1,0,0,12.882549,12.882549,0,0,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,5,8,3,0,500.5,638412.94,-48534.27,588034.69,116885.02,0,0,2422.312 +9788,11917,21270,21271,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,4.8625102,4.9111543,0,6,10,16.333124,0,3,3,2021,6,0,1,60,1,0,0,12.550037,12.550037,0,0,0,0,0,0,0,0,0,0,0,10.001751,0,62.39,56.71,58.62,52.91,10,1,1,0,0,8,10,2,1,609.5,1891037.6,0,936944.38,0,0,0,13885.566 +9788,11917,21271,21270,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,7.3615365,7.1589789,0,6,-10,70.695229,0,2,2,2021,6,0,60,60,1,0,0,2.7455122,2.7455122,0,0,0,0,0,0,0,0,0,0,0,8.9277039,0,58.62,52.91,62.39,56.71,8.333333333333334,1,1,0,0,8,10,2,1,609.5,1891037.6,0,936944.38,0,0,0,13885.566 +9789,11918,21272,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,5.6603408,6.0992322,0,0,-1053.7559,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8546233,5.4906058,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1245,-29139.09,0,0,0,0,0,1989.1028 +9790,11919,21273,-9,21275,21276,1,0,21,0,0,0,1,1,-9,0,4,7.7794619,8.1844597,0,0,0,-1049.5024,0,1,1,2021,13,3,43,0,1,3,1,7.7793822,7.7793822,.05,.05,0,0,0,0,0,0,0,0,0,1.1806524,0,30.77,64.34,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,2056,115597.51,-29078.135,0,0,0,0,1617.2902 +9790,11920,21274,-9,21275,21276,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.7569,0,1,1,2021,7,1,0,7,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.37,56.93,-9,-9,8.333333333333334,1,1,1,0,2,9,1,1,349,-84081.359,0,0,0,0,0,0 +9790,11921,21275,21276,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.0485697,7.8748941,0,6,-2,72.622459,0,2,2,2021,12,0,25,27,1,0,0,15.355858,15.355858,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,9,5,1,3050,1261614.3,661324.25,552979.75,26709.875,5860.2109,0,3430.9592 +9790,11921,21276,21275,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.9701385,8.7985792,0,6,2,-98.216141,0,-9,-9,2021,7,0,43,41,1,0,0,17.162291,17.162291,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,5,9,5,1,3050,1261614.3,661324.25,552979.75,26709.875,5860.2109,0,3430.9592 +9791,11922,21277,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,10.803142,10.929964,0,0,0,-992.63702,0,3,2,2021,10,0,4,1,1,0,0,1459.3613,1459.3613,0,0,0,0,0,0,0,0,0,0,0,4.9283962,0,54.37,54.8,-9,-9,1.666666666666667,1,1,0,0,9,12,5,1,256,649793.13,297909.69,89975.703,0,3027.7903,0,24811.418 +9792,11923,21278,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,1,7.2222519,6.5585256,0,0,0,-893.90527,-9,2,2,2021,36,12,20,0,1,12,0,7.8794613,7.8794613,0,0,0,0,0,0,0,0,0,0,0,0,0,5.71,50.69,-9,-9,0,1,1,0,1,5,2,3,0,1372,79118.672,0,0,0,0,0,75.576195 +9793,11924,21279,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.5246897,9.5447206,0,0,0,-892.18256,0,2,1,2021,18,7,42,42,1,7,0,41.690083,41.690083,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,119,869973.19,612123.94,280613.97,90156.133,12818.966,4316.9404,4472.7266 +9794,11925,21280,21281,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,47,1,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9192777,0,53,47,47.9,42.16,8,1,1,0,0,0,4,1,0,2486,126262.74,-59351.414,16358.519,0,0,0,1216.2177 +9794,11925,21281,21280,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,47.9,42.16,53,47,1.666666666666667,1,1,0,1,8,4,1,0,2486,126262.74,-59351.414,16358.519,0,0,0,1216.2177 +9795,11926,21282,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.3303585,7.7218671,0,0,0,-971.03711,0,3,3,2021,12,2,25,25,1,2,0,10.107955,10.107955,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.42,60.49,-9,-9,10,1,1,0,0,11,13,3,1,3232,124081.71,-40866.484,0,0,0,0,310.55112 +9796,11927,21283,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,6.1235428,6.0602241,0,0,-831.39697,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8240457,6.1649036,46.31,51.53,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,542,218371.27,-45621.445,176702.02,0,0,0,870.20245 +9797,11928,21284,-9,21285,21286,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-961.39618,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,613,257783.3,193279.17,0,0,0,0,4441.6445 +9797,11928,21285,21286,-9,-9,1,0,45,1,1,0,3,3,-9,0,4,8.6702757,8.5349379,0,7,-2,134.59833,0,2,3,2021,12,1,35,30,1,1,0,14.517364,14.517364,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.07,51.53,49.04,55.86,6.666666666666667,1,1,0,0,8,9,5,1,613,257783.3,193279.17,0,0,0,0,4441.6445 +9797,11928,21286,21285,-9,-9,1,1,47,1,1,0,3,3,-9,0,3,8.683363,8.6781435,0,7,2,85.165321,0,2,2,2021,10,1,40,42,1,1,0,15.614213,15.614213,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,46.07,51.53,8.333333333333334,1,1,0,0,6,9,5,1,613,257783.3,193279.17,0,0,0,0,4441.6445 +9798,11929,21287,-9,21288,-9,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-900.81635,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,620,132868.3,-49062.16,100695.02,77235.57,0,0,2225.3003 +9798,11929,21288,-9,-9,-9,1,0,31,1,2,0,2,2,-9,0,2,7.4655976,7.6151276,5.8340988,0,0,-960.38458,0,2,3,2021,23,9,16,0,1,9,0,10.19355,10.19355,.05,.05,0,0,0,0,0,0,1,0,1,6.1309948,0,26.26,49.31,-9,-9,3.333333333333333,1,1,0,0,9,13,2,0,620,132868.3,-49062.16,100695.02,77235.57,0,0,2225.3003 +9798,11929,21289,-9,21288,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.48822,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,0,620,132868.3,-49062.16,100695.02,77235.57,0,0,2225.3003 +9799,11930,21290,21292,-9,-9,1,0,41,1,2,0,1,1,-9,0,3,8.2380791,8.6263952,0,9,-8,-99.831215,0,-9,-9,2021,21,9,35,20,1,9,0,11.975019,11.975019,.05,.05,0,0,0,0,0,0,1,1,0,1.1098833,0,25.02,64.34,51.41,56.15,3.333333333333333,1,1,0,0,11,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9799,11930,21291,-9,21290,21292,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.0988,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9799,11930,21292,21290,-9,-9,1,1,49,1,2,0,1,1,-9,0,3,9.5852718,9.698245,0,9,8,-69.811401,0,3,2,2021,11,0,45,44,1,0,0,37.571777,37.571777,.05,.05,0,0,0,0,0,0,1,1,0,2.4537728,0,51.41,56.15,25.02,64.34,8.333333333333334,1,1,0,0,10,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9799,11930,21293,-9,21290,21292,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-864.40692,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.5282073,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,5,1,1172.25,1383194.3,370818.84,1249916.8,369332.81,0,0,6055.4453 +9800,11931,21294,21295,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,8,-5,0,0,-9,-9,2021,17,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,34.98,23.32,37.51,19.98,1.666666666666667,1,1,0,0,1,10,1,1,1187,1367666.4,-16884.668,768359.06,0,0,0,1191.9729 +9800,11931,21295,21294,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,8,5,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.51,19.98,34.98,23.32,0,1,1,0,0,0,10,1,1,1187,1367666.4,-16884.668,768359.06,0,0,0,1191.9729 +9800,11932,21296,-9,21294,21295,1,0,24,0,0,0,2,2,-9,0,3,8.1191626,8.2178745,0,0,0,-963.1983,0,2,2,2021,16,4,40,40,1,4,1,9.1342306,9.1342306,0,0,0,0,0,0,0,2,1,1,0,.69264668,0,34,57.6,-9,-9,3.333333333333333,1,1,0,0,4,10,4,1,3349,131635.69,0,0,0,0,0,2295.7466 +9801,11933,21297,21298,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.38131,7.3190904,29,1,-53.844749,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.841794,62.42,42.94,40.49,27.09,8.333333333333334,1,1,0,0,10,2,3,1,382,1131991,804243.63,237101.25,0,0,0,2518.9902 +9801,11933,21298,21297,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,7.1291356,7.6309819,29,-1,85.198769,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.8519092,7.3037238,40.49,27.09,62.42,42.94,6.666666666666667,1,1,0,0,10,2,3,1,382,1131991,804243.63,237101.25,0,0,0,2518.9902 +9801,11934,21299,-9,21298,21297,1,1,26,0,0,0,2,2,-9,0,3,8.2169571,7.8639326,0,0,0,-944.3631,0,3,2,2021,11,0,40,40,1,0,0,10.897799,10.897799,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,-9,-9,6.666666666666667,1,1,0,0,10,2,4,1,291,50729.938,0,0,0,39242.18,0,1616.9714 +9802,11935,21300,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.1047688,8.3472023,6.4933157,0,0,-922.43268,0,-9,2,2021,6,0,38,38,1,0,0,11.14531,11.14531,0,0,0,0,0,0,0,0,0,0,0,2.3099823,6.6250424,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,11,12,4,1,682,262146.84,0,117614.36,8671.7744,250.18462,0,1569.1235 +9803,11936,21301,-9,21304,21302,1,0,17,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1125.3851,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.75,53.57,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9803,11936,21302,21304,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.6335773,8.6741095,0,12,3,-63.741215,0,-9,-9,2021,18,5,46,38,1,5,0,12.588821,12.588821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.59,53.52,47.49,55.02,8.333333333333334,1,1,0,0,13,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9803,11936,21303,-9,21304,21302,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-980.06464,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9803,11936,21304,21302,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.8752894,7.8527818,0,12,-3,-27.525282,0,2,2,2021,9,0,30,30,1,0,0,10.075836,10.075836,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.49,55.02,33.59,53.52,6.666666666666667,1,1,0,0,13,10,4,1,1748.75,105229.95,54289.609,134264.38,60726.02,3.3631363,11566.142,3391.0454 +9804,11937,21305,21306,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.904006,8.6547775,0,8,5,-21.504618,0,3,2,2021,11,0,40,30,1,0,0,14.273451,14.273451,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,62,47.26,54.23,44.07,6.666666666666667,1,1,0,0,10,2,5,1,521.5,178944.06,262366.25,80653.719,50486.281,3640.4985,2426.5405,5591.3018 +9804,11937,21306,21305,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.3102961,8.4194279,0,8,-5,12.621691,0,-9,-9,2021,9,0,46,46,1,0,0,14.806122,14.806122,0,0,0,0,0,0,0,7,0,0,0,7.5342975,0,54.23,44.07,62,47.26,6.666666666666667,1,1,0,0,8,2,5,1,521.5,178944.06,262366.25,80653.719,50486.281,3640.4985,2426.5405,5591.3018 +9804,11938,21307,-9,21306,21305,1,1,28,0,0,0,2,2,-9,0,4,7.9849243,8.1990347,0,0,0,-949.70892,0,1,2,2021,6,0,45,50,1,0,1,7.5567117,7.5567117,.05,.05,0,0,0,0,0,0,0,0,0,4.8973694,0,56.35,51,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,744,118857.8,0,95406.734,29967.813,1997.4132,0,1369.8212 +9805,11939,21308,21309,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,7.1193089,6.6413321,43,-2,-33.201153,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3507731,6.5139766,58,54,46.99,45.79,8.333333333333334,1,1,0,0,0,9,2,1,646,417052.44,24542.047,347780.47,0,0,0,806.9054 +9805,11939,21309,21308,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,43,2,-93.884987,0,3,3,2021,7,3,0,0,4,3,0,0,0,0,0,0,1,0,4.9926286,0,0,1,1,0,1.9293653,0,46.99,45.79,58,54,8.333333333333334,1,1,0,0,0,9,2,1,646,417052.44,24542.047,347780.47,0,0,0,806.9054 +9806,11940,21310,21311,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,9.0013294,9.0874863,0,7,0,-126.8063,0,-9,-9,2021,7,0,48,38,1,0,0,19.271967,19.271967,0,0,0,0,0,0,0,2,1,1,0,5.1346612,0,62.39,56.71,34.42,55.98,8.333333333333334,1,1,0,0,10,13,5,1,2276,866804.5,186245.5,579582.5,61160.859,0,0,6402.2529 +9806,11940,21311,21310,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.3400793,9.1778641,0,7,0,42.859848,0,3,3,2021,20,8,40,40,1,8,0,24.919641,24.919641,.05,.05,0,0,0,0,0,14.5,1,1,0,4.1991735,0,34.42,55.98,62.39,56.71,6.666666666666667,1,1,0,0,8,13,5,1,2276,866804.5,186245.5,579582.5,61160.859,0,0,6402.2529 +9806,11941,21312,-9,21310,21311,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1026.53,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.15441138,0,46.63,59.72,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,357,-230865.22,0,0,0,0,0,364.33032 +9807,11942,21313,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6699123,8.3237238,0,0,0,-1016.856,0,1,1,2021,11,0,36,43,1,0,0,19.202875,19.202875,0,0,0,0,0,0,0,0,0,0,0,3.9876311,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,6,5,1,1334,68959.344,55384.086,169119.33,0,0,0,805.73267 +9807,11943,21314,-9,-9,21313,1,1,23,0,0,0,1,1,-9,0,4,8.4392929,8.5526905,0,0,0,-1081.2706,0,-9,2,2021,12,0,42,37,1,0,1,10.438556,10.438556,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.09,39.69,-9,-9,1.666666666666667,1,1,0,0,6,6,4,1,780,38874.379,0,0,0,0,0,2076.5801 +9808,11944,21315,21316,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,5.3495636,5.7727156,42,2,36.007717,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.408371,5.4389482,56.74,33.83,55.32,19.61,6.666666666666667,1,1,0,0,4,7,2,1,734,105540.39,89190.648,0,0,0,0,1056.0347 +9808,11944,21316,21315,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,42,-2,32.04364,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,17.647276,0,0,1,1,0,.029414404,0,55.32,19.61,56.74,33.83,6.666666666666667,1,1,0,0,0,7,2,1,734,105540.39,89190.648,0,0,0,0,1056.0347 +9809,11945,21317,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.7203865,8.8264866,0,0,0,-1148.5592,-9,2,-9,2021,8,0,47,0,1,0,0,13.589935,13.589935,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,13,10,5,0,557,92038.961,-81579.055,0,0,4141.728,2254.4656,1223.9773 +9810,11946,21318,21322,-9,-9,1,1,32,0,4,0,3,3,-9,0,3,0,0,0,7,2,-19.055614,0,2,2,2021,18,4,0,60,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.42,58.05,51.81,57.22,8.333333333333334,1,1,0,0,7,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21319,-9,21322,21318,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.9252,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21320,-9,21322,21318,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.6306,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21321,-9,21322,21318,1,0,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-852.51215,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21322,21318,-9,-9,1,0,30,0,4,0,2,2,-9,0,4,7.9538999,7.8104544,0,7,-2,-21.825758,0,-9,-9,2021,10,0,42,16,1,0,0,7.0672765,7.0672765,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,32.42,58.05,8.333333333333334,1,1,0,0,2,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9810,11946,21323,-9,21322,21318,1,0,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-933.28943,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,0,1247.6666,113861.55,141865.88,0,0,0,0,1995.0486 +9811,11947,21324,21325,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.542603,7.4744692,31,13,108.77705,0,3,3,2021,12,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.41613284,7.5997639,54.37,54.8,49.42,50.19,6.666666666666667,1,1,0,0,10,7,5,1,440.5,948868.94,244187.34,590997.38,0,0,0,2510.4028 +9811,11947,21325,21324,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6336699,8.7004795,0,33,-13,23.999022,0,2,2,2021,11,0,47,89,1,0,0,12.695098,12.695098,0,0,0,0,0,0,0,0,0,0,0,3.2793634,0,49.42,50.19,54.37,54.8,6.666666666666667,1,1,0,0,10,7,5,1,440.5,948868.94,244187.34,590997.38,0,0,0,2510.4028 +9811,11948,21326,-9,21325,21324,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-950.461,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0388451,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,496,-134707.72,0,0,0,0,0,-700.58594 +9812,11949,21327,21328,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.6555462,8.4969616,0,1,-3,21.106634,0,2,3,2021,19,7,37,38,1,7,0,21.514467,21.514467,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.47,66.09,51,56,3.333333333333333,1,1,0,0,5,12,5,1,215,82204.953,17588.453,177865.31,76653.438,695.45001,0,4077.3906 +9812,11949,21328,21327,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.2921791,8.2315826,0,1,3,40.333599,-9,-9,-9,2021,10,0,40,0,1,1,0,13.396217,13.396217,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,38.47,66.09,7,1,1,0,0,1,12,5,1,215,82204.953,17588.453,177865.31,76653.438,695.45001,0,4077.3906 +9813,11950,21329,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1023.0121,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.68,32.5,-9,-9,3.333333333333333,1,1,0,1,6,9,1,0,1468,253248.48,0,182944.14,117170.02,0,0,73.820847 +9813,11950,21330,-9,21329,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-992.2749,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,1,0,1468,253248.48,0,182944.14,117170.02,0,0,73.820847 +9814,11951,21331,-9,21334,-9,1,0,37,1,1,0,2,2,-9,1,1,0,0,0,0,0,-990.91425,0,3,2,2021,32,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,16.04,23.99,-9,-9,0,2,3,0,0,0,6,1,1,616.33331,-60515.16,0,0,0,0,0,1944.5967 +9814,11951,21332,-9,21331,-9,1,0,17,1,1,1,2,0,0,0,2,0,0,0,0,0,-882.38501,-9,2,-9,2021,24,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.77,42.9,-9,-9,3.333333333333333,2,3,0,0,0,6,1,1,616.33331,-60515.16,0,0,0,0,0,1944.5967 +9814,11951,21333,-9,21331,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1087.1711,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,1,1,616.33331,-60515.16,0,0,0,0,0,1944.5967 +9814,11952,21334,-9,-9,-9,1,0,58,1,1,0,3,3,-9,1,3,0,0,0,0,0,-905.50098,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,6,1,1,254,130261.83,0,0,0,0,0,1419.6134 +9815,11953,21335,21336,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,6.8787317,7.1487093,47,0,60.972095,0,1,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.46083426,7.3205094,51.14,60.45,57.63,56.14,8.333333333333334,1,1,0,0,0,10,5,1,391.5,3497842.5,2239195,556722.75,115634.66,0,0,6088.3076 +9815,11953,21336,21335,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,8.4414225,9.1097279,8.6425886,47,0,134.46919,0,2,2,2021,6,0,7,10,1,0,0,74.865799,74.865799,0,0,0,0,0,0,0,0,1,1,0,8.1625357,8.9496794,57.63,56.14,51.14,60.45,8.333333333333334,1,1,0,0,9,10,5,1,391.5,3497842.5,2239195,556722.75,115634.66,0,0,6088.3076 +9816,11954,21337,21338,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.5332651,8.3600636,4.5177135,6,2,25.121424,0,3,3,2021,10,0,44,45,1,0,0,13.442413,13.442413,.05,.05,0,0,0,0,0,0,0,0,0,5.8536687,5.5536423,50.51,42.98,37.51,58.26,10,1,1,0,0,7,5,5,1,429,639532.88,646348.88,130673.02,52662.148,0,0,2382.4404 +9816,11954,21338,21337,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.4163065,7.048841,4.4788799,6,-2,-21.380241,0,3,3,2021,18,6,26,26,1,6,0,6.0378885,6.0378885,.05,.05,0,0,0,0,0,7,0,0,0,0,4.4965725,37.51,58.26,50.51,42.98,6.666666666666667,1,1,0,0,7,5,5,1,429,639532.88,646348.88,130673.02,52662.148,0,0,2382.4404 +9817,11955,21339,21342,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.969985,8.934062,0,20,1,50.807583,0,2,2,2021,9,0,45,50,1,0,0,26.869364,26.869364,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,51.53,49.1,6.666666666666667,1,1,0,0,12,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21340,-9,21342,21339,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-931.185,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21341,-9,21342,21339,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.26886,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21342,21339,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.8384943,8.7061682,0,20,-1,-102.39475,0,1,1,2021,9,0,40,38,1,0,0,14.50319,14.50319,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.53,49.1,52.23,55.6,8.333333333333334,1,1,0,0,12,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9817,11955,21343,-9,21342,21339,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1017.2436,-9,1,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,1070,701190.06,185525.13,654989.25,134033.44,0,6217.3389,5826.1035 +9818,11956,21344,21345,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,0,0,45,-4,0,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.74,16.46,42.64,31.78,3.333333333333333,1,1,0,0,0,12,1,0,622.5,-130235.8,0,0,0,0,0,2047.3695 +9818,11956,21345,21344,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,45,4,0,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,120,1,0,1,0,0,42.64,31.78,32.74,16.46,1.666666666666667,1,1,0,0,0,12,1,0,622.5,-130235.8,0,0,0,0,0,2047.3695 +9818,11957,21346,-9,21344,21345,1,1,37,0,0,0,1,1,-9,0,4,7.1246672,6.952795,0,0,0,-995.0448,0,2,2,2021,12,0,45,45,1,0,0,3.4577494,3.4577494,0,0,0,0,0,0,0,0,1,0,1,1.0977693,0,48.81,59.91,-9,-9,5,1,1,0,0,12,12,3,0,293,-77479.328,0,0,0,0,0,421.17993 +9819,11958,21347,21348,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.0507803,8.9363518,0,5,4,-56.362869,0,3,3,2021,6,0,65,70,1,0,0,18.641558,18.641558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,52,53,8.333333333333334,1,1,0,0,7,4,5,1,725,1192898.1,1017963.3,276897.06,58920.254,10959.207,0,5592.5732 +9819,11958,21348,21347,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.5312157,8.4744148,0,5,-4,-32.918446,-9,-9,-9,2021,10,0,37,0,1,1,0,20.029964,20.029964,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,53,54.1,59.11,8,4,1,0,0,1,4,5,1,725,1192898.1,1017963.3,276897.06,58920.254,10959.207,0,5592.5732 +9820,11959,21349,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.403223,6.0088186,0,0,-1086.8414,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9625382,62,28.5,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,1232,161705.97,10664.745,102056.43,0,0,0,1158.9757 +9821,11960,21350,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3092356,7.8737388,0,0,0,-1052.5176,0,2,3,2021,15,3,41,45,1,3,0,9.7419786,9.7419786,.05,.05,0,0,0,0,0,7,1,1,0,0,0,40.58,60.95,-9,-9,6.666666666666667,1,1,0,1,11,9,4,1,1058,-78189.406,-47562.652,0,0,0,0,1932.0151 +9822,11961,21351,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,7.5617228,7.519558,0,0,0,-1095.2937,0,2,-9,2021,11,0,40,8,1,2,0,5.8590541,5.8590541,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,3,4,0,0,3,8,3,0,860,347710.25,68965.031,236232.7,3335.8823,0,0,893.26556 +9822,11962,21352,-9,21351,-9,1,1,29,0,0,0,1,1,-9,0,4,8.8886652,8.7590485,0,0,0,-910.1048,0,3,-9,2021,10,0,40,40,1,1,1,17.111994,17.111994,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,3,4,0,0,6,8,5,0,363,-77210.773,0,0,0,0,0,2610.0098 +9823,11963,21353,21354,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,9.1767216,9.0037861,0,1,-2,-15.170815,-9,-9,-9,2021,10,0,50,0,1,1,0,20.741112,20.741112,.05,.05,0,0,0,0,0,0,0,0,0,7.1047482,0,49,57,48.77,60.16,7,4,1,0,0,1,8,5,0,1067,188500.8,45863.559,404544.5,287419.44,0,0,8488.6572 +9823,11963,21354,21353,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,9.662262,8.9375906,0,1,2,-66.495041,0,-9,-9,2021,10,0,50,40,1,0,0,28.05788,28.05788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49,57,8.333333333333334,1,1,0,0,4,8,5,0,1067,188500.8,45863.559,404544.5,287419.44,0,0,8488.6572 +9824,11964,21355,21356,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.5576973,8.4301538,0,7,-2,-72.621468,0,2,2,2021,9,0,47,52,1,0,0,15.864674,15.864674,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,51,56,8.333333333333334,1,1,0,0,8,9,5,1,505.5,831745.31,383044.34,539896.25,230082.8,4821.3657,0,3915.4146 +9824,11964,21356,21355,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.5094271,8.7026815,0,7,2,91.063927,0,-9,-9,2021,9,0,40,40,1,1,0,15.225166,15.225166,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,54.69,57.47,8,1,1,0,0,1,9,5,1,505.5,831745.31,383044.34,539896.25,230082.8,4821.3657,0,3915.4146 +9825,11965,21357,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.5139918,5.8562646,0,0,-950.1062,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,14.161078,79.705009,134.60069,0,1,1,0,0,5.6747522,53,44,-9,-9,8,3,4,0,0,0,12,2,1,1568,194975.78,65625.477,71831.539,0,0,0,416.01953 +9825,11966,21358,-9,21357,-9,1,1,45,0,0,0,2,2,-9,0,3,7.5452805,7.6172237,0,0,0,-1054.8145,0,2,2,2021,8,0,38,38,1,0,0,6.5445113,6.5445113,0,0,.05,0,0,0,0,88,1,1,0,0,0,52,54.51,-9,-9,10,3,4,0,0,9,12,3,1,2174,257100.03,110246.78,357490.44,75466.789,0,0,1146.6465 +9826,11967,21359,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,5.8675337,5.8168893,0,0,-1031.1733,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,2.0825582,0,0,1,1,0,0,5.9152551,51.39,21.21,-9,-9,0,1,1,0,0,0,5,2,1,1291,475431.78,208921.77,0,0,0,0,197.18869 +9827,11968,21360,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-894.80078,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0224066,0,0,1,1,0,0,0,55.56,46,-9,-9,10,1,1,0,0,0,11,1,1,534,-135536.88,0,0,0,0,0,780.10083 +9828,11969,21361,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8233256,7.7855911,0,0,0,-1106.92,0,2,3,2021,6,0,35,36,1,0,0,7.9360499,7.9360499,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,55.76,44.76,-9,-9,6.666666666666667,1,1,0,0,10,6,4,1,1120,201506.92,108016.35,104395.28,83361.867,0,0,2017.889 +9829,11970,21362,21364,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,9.5596762,9.5299511,0,17,-1,86.387749,0,3,3,2021,18,6,20,20,1,6,0,81.704071,81.704071,.05,.05,0,0,0,0,0,0,1,0,1,0,0,27.89,56.24,46.16,58.62,5,2,3,0,0,8,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9829,11970,21363,-9,21362,21364,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-962.54272,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,62,-9,-9,7,2,3,-9,0,0,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9829,11970,21364,21362,-9,-9,1,1,36,0,2,0,3,3,-9,0,4,8.509057,8.7501965,0,17,1,-35.921642,0,3,3,2021,10,0,8,8,1,0,0,84.191223,84.191223,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.16,58.62,27.89,56.24,6.666666666666667,2,3,0,0,15,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9829,11970,21365,-9,21362,21364,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1124.7672,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,2,3,-9,0,0,2,5,1,914.25,120105.46,140392.53,58817.395,54753.711,23244.15,143.32927,4503.3057 +9830,11971,21366,21367,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,18,-5,-17.538828,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,65.95,34.44,60.12,54.8,10,4,2,0,0,8,9,5,0,400.5,2899334.5,1552605.3,617688.25,0,0,0,3371.9802 +9830,11971,21367,21366,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,9.1282568,9.3817949,0,12,5,33.299557,0,-9,-9,2021,11,1,50,51,1,1,0,20.39538,20.39538,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,65.95,34.44,8.333333333333334,1,1,0,0,8,9,5,0,400.5,2899334.5,1552605.3,617688.25,0,0,0,3371.9802 +9831,11972,21368,21369,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.8976564,8.7779608,0,17,3,19.097738,0,1,1,2021,8,0,50,50,1,0,0,15.720004,15.720004,.05,.05,0,0,0,0,.31323841,2,0,0,0,4.2608442,0,54.37,54.8,41.31,59.79,8.333333333333334,4,2,0,0,8,9,5,0,840.5,607804.44,382421.19,155153.88,34937.32,0,0,2531.5161 +9831,11972,21369,21368,-9,-9,1,1,47,0,0,0,3,3,-9,0,5,0,0,0,8,-3,47.813004,0,-9,-9,2021,12,1,0,34,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.681713,0,41.31,59.79,54.37,54.8,5,4,2,1,0,9,9,5,0,840.5,607804.44,382421.19,155153.88,34937.32,0,0,2531.5161 +9832,11973,21370,21371,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.6089706,6.5651569,8,3,-34.287285,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,124.27734,0,0,1,1,0,6.6833129,6.5818133,53,46,51,46,7,1,1,0,0,0,13,2,1,394,477649.97,247217.69,185118.41,0,0,1274.7594,1397.1049 +9832,11973,21371,21370,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,8,-3,46.595936,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,13,2,1,394,477649.97,247217.69,185118.41,0,0,1274.7594,1397.1049 +9833,11974,21372,-9,-9,-9,1,0,26,1,1,0,1,1,-9,0,4,7.5914602,7.9707642,6.2435675,0,0,-882.72937,-9,-9,-9,2021,11,0,27,0,1,2,0,10.435346,10.435346,0,0,0,0,0,0,0,0,1,1,0,6.4096589,0,47,58,-9,-9,7,1,1,0,1,8,2,3,0,988.5,-83939.031,0,0,0,0,1959.5194,898.40698 +9833,11974,21373,-9,21372,-9,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-994.06775,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,3,0,988.5,-83939.031,0,0,0,0,1959.5194,898.40698 +9834,11975,21374,21375,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,.2409467,5.8347001,5.3593278,46,-4,23.96711,0,3,3,2021,8,0,10,25,1,0,0,.0017682099,.0017682099,0,0,0,0,0,0,0,2,1,1,0,6.1760387,4.9808631,56.52,48.31,49.86,55.31,8.333333333333334,1,1,0,0,9,9,2,1,277,268051,0,308741.75,0,1423.9138,0,1452.5565 +9834,11975,21375,21374,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,.024403276,6.4651775,6.5256262,46,4,70.294205,0,3,3,2021,10,0,20,25,1,0,0,.00089861522,.00089861522,0,0,0,0,0,0,0,2,1,1,0,7.003716,6.5445862,49.86,55.31,56.52,48.31,8.333333333333334,1,1,0,0,9,9,2,1,277,268051,0,308741.75,0,1423.9138,0,1452.5565 +9835,11976,21376,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,9.2747259,8.7873011,0,0,0,-1007.2862,0,-9,-9,2021,10,1,36,37,1,1,0,22.512735,22.512735,0,0,0,0,0,0,0,0,0,0,0,4.9529572,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,7,8,5,0,356,53976.035,0,0,0,0,0,2427.9275 +9836,11977,21377,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1007.522,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,41.81,36.58,-9,-9,5,1,1,1,0,0,12,1,0,170,0,0,0,0,0,0,701.36951 +9837,11978,21378,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,7.1344557,7.9587288,7.1726546,0,0,-892.37201,0,2,3,2021,17,6,16,16,1,6,0,7.6495953,7.6495953,.05,.05,0,0,0,0,0,0,1,0,1,0,7.3560863,33.46,45.88,-9,-9,3.333333333333333,1,1,0,0,6,9,4,1,1161,129945.34,-115231.27,0,0,0,0,2419.6829 +9838,11979,21379,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,7.7943401,7.8623419,0,0,-967.99213,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,14.412288,0,0,1,1,0,0,7.7660699,40.71,29.78,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1168,672398.5,345321.34,166402.19,0,0,0,1438.4651 +9839,11980,21380,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,8.5478678,8.308692,0,0,-980.66266,0,3,2,2021,7,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.2920322,73.83,14.77,-9,-9,10,1,1,0,0,0,13,4,1,1008,487366.38,85117.039,230753.08,0,0,2103.9404,2833.3699 +9840,11981,21381,21384,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,4.5184546,4.3426123,0,7,-12,89.95163,0,-9,-9,2021,15,3,28,25,1,3,0,.36310709,.36310709,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.24,41.22,40.07,54.57,8.333333333333334,1,1,0,0,8,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21382,-9,21381,21384,1,1,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1168.1663,-9,2,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.81,57.22,-9,-9,6.666666666666667,1,1,0,0,11,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21383,-9,21381,21384,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1020.3729,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21384,21381,-9,-9,1,1,51,0,3,0,1,1,-9,0,3,8.9523144,8.9438334,0,7,12,-18.740631,0,2,-9,2021,12,1,60,60,1,1,0,11.021698,11.021698,.05,.05,0,0,0,0,0,0,1,1,0,3.7832665,0,40.07,54.57,42.24,41.22,6.666666666666667,1,1,0,0,11,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9840,11981,21385,-9,21381,21384,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-991.28845,-9,2,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.23,58.28,-9,-9,6.666666666666667,1,1,0,0,0,11,3,0,950.40002,6839445,6475275.5,282448.53,0,0,0,2834.4656 +9841,11982,21386,21387,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,22,-2,-85.123924,0,2,2,2021,6,0,0,8,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.211586,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,7,3,1,1260,1777310.3,729649.75,639296.81,0,0,0,7154.7666 +9841,11982,21387,21386,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.1111403,8.4601049,22,2,52.354546,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9628196,8.1098499,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,7,3,1,1260,1777310.3,729649.75,639296.81,0,0,0,7154.7666 +9842,11983,21388,21389,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.5484996,5.5249338,10,4,-12.712233,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8966284,5.5465035,57.99,43.47,50.42,41.42,8.333333333333334,1,1,0,0,9,8,2,1,551,271402.25,138784.47,160922.78,0,0,0,1789.8694 +9842,11983,21389,21388,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6204395,6.5081162,10,-4,-74.689735,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.424294,50.42,41.42,57.99,43.47,3.333333333333333,1,1,0,0,9,8,2,1,551,271402.25,138784.47,160922.78,0,0,0,1789.8694 +9843,11984,21390,21391,-9,-9,1,1,59,0,0,0,2,2,-9,0,1,0,6.2491007,6.0846405,38,-13,20.482941,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,1.3407414,6.0889678,36.53,14.85,34.73,25.09,0,1,1,0,0,0,10,2,0,1133.5,62935.898,0,0,0,0,0,2606.5735 +9843,11984,21391,21390,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.0492215,4.7670412,38,13,-44.294395,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,5.5674047,0,120,1,1,0,0,4.5424881,34.73,25.09,36.53,14.85,5,1,1,0,0,0,10,2,0,1133.5,62935.898,0,0,0,0,0,2606.5735 +9843,11985,21392,-9,21391,21390,1,1,34,0,0,0,2,2,-9,1,2,7.0499725,7.4441915,0,0,0,-995.9989,0,3,2,2021,17,5,36,34,1,5,0,4.5184689,4.5184689,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.53,37.66,-9,-9,1.666666666666667,1,1,0,0,7,10,3,0,1278,201005.88,0,0,0,0,0,519.10333 +9844,11986,21393,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1017.6635,0,-9,2,2021,30,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.4,23.46,-9,-9,3.333333333333333,1,1,0,1,0,10,1,0,251,-135787.39,0,0,0,0,0,1727.9928 +9845,11987,21394,21395,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.7761259,8.1170015,49,-2,-79.953026,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9686661,68.34,16.31,47.16,55.83,8.333333333333334,1,1,0,0,0,9,3,1,2447,1624402.4,1084587.8,369707.34,0,5217.3423,0,1595.0028 +9845,11987,21395,21394,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.1544099,4.4559708,49,2,68.120857,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9970899,4.0118222,47.16,55.83,68.34,16.31,5,1,1,0,0,3,9,3,1,2447,1624402.4,1084587.8,369707.34,0,5217.3423,0,1595.0028 +9845,11988,21396,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,1,0,7.7595701,7.7648067,0,0,-1023.6628,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5797682,7.6544247,57.75,12.77,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,1069,-113721.04,0,0,0,0,0,1760.8074 +9845,11989,21397,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.7642851,7.390305,0,0,0,-1038.0372,0,-9,-9,2021,8,0,21,43,1,0,0,12.271879,12.271879,0,0,0,0,0,0,0,0,1,1,0,0,0,51.35,42.57,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,512,-236033.56,0,0,0,0,1031.514,623.38562 +9846,11990,21398,21400,-9,-9,1,1,55,0,3,0,1,1,-9,0,5,9.2562323,9.4700174,0,33,2,-39.031975,0,2,3,2021,8,0,40,48,1,0,0,38.922546,38.922546,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,45.91,59.89,8.333333333333334,1,1,0,0,11,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21399,-9,21400,21398,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-973.43982,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21400,21398,-9,-9,1,0,53,0,3,0,1,1,-9,0,4,8.4738159,8.5223122,0,33,-2,-12.986938,0,2,3,2021,14,3,40,24,1,3,0,10.897214,10.897214,0,0,0,0,0,0,0,0,0,0,0,3.3375134,0,45.91,59.89,54.1,59.11,6.666666666666667,1,1,0,0,8,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21401,-9,21400,21398,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-978.65948,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9846,11990,21402,-9,21400,21398,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1031.3734,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,450,688947.63,158488.19,586095,88926.984,1565.895,20361.508,6377.6279 +9847,11991,21403,21405,-9,-9,1,1,56,0,1,0,3,3,-9,1,1,0,0,0,27,5,0,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.39,25.76,29.19,28.59,1.666666666666667,1,1,0,0,0,10,1,0,845.66669,-18876.145,0,0,0,0,1921.4473,1630.9084 +9847,11991,21404,-9,21405,21403,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.9385,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,1,0,845.66669,-18876.145,0,0,0,0,1921.4473,1630.9084 +9847,11991,21405,21403,-9,-9,1,0,51,0,1,0,2,2,-9,1,1,0,0,0,27,-5,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,28.59,24.39,25.76,6.666666666666667,1,1,0,0,0,10,1,0,845.66669,-18876.145,0,0,0,0,1921.4473,1630.9084 +9848,11992,21406,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,9.1372137,8.9805622,0,0,0,-1084.9406,0,2,2,2021,8,0,45,47,1,0,0,23.044773,23.044773,.05,.05,0,0,0,0,0,0,1,1,0,5.0382509,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,9,10,5,1,214,-114295.5,71387.813,0,0,0,0,2451.6919 +9849,11993,21407,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.5654,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.64,21.72,-9,-9,10,1,1,0,0,0,9,1,1,5004,203985.73,0,0,0,0,0,1281.2948 +9850,11994,21408,21409,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,58,-4,34.432201,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,61.83,44.42,8.333333333333334,1,1,0,0,0,10,2,1,351.5,276388.84,167163.64,249332.59,0,0,0,1737.677 +9850,11994,21409,21408,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.645751,6.7022977,57,4,92.946831,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6765108,61.83,44.42,59.07,43.05,5,1,1,0,0,0,10,2,1,351.5,276388.84,167163.64,249332.59,0,0,0,1737.677 +9851,11995,21410,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1100.8896,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,-9,-9,5,1,1,0,0,10,5,2,1,310,-199114.31,0,0,0,0,0,400.01047 +9852,11996,21411,-9,21413,21412,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-929.17578,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,1,428.66666,178325.88,-14792.442,273704.47,47768.52,0,0,3580.8752 +9852,11996,21412,21413,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,7.9221768,7.9942589,0,2,2,41.838966,0,3,3,2021,12,0,30,27,1,0,0,9.816391,9.816391,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.12,37.78,33.85,40.08,3.333333333333333,4,5,0,0,7,13,2,1,428.66666,178325.88,-14792.442,273704.47,47768.52,0,0,3580.8752 +9852,11996,21413,21412,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,2,-2,91.970482,-9,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,33.85,40.08,41.12,37.78,5,1,1,0,0,0,13,2,1,428.66666,178325.88,-14792.442,273704.47,47768.52,0,0,3580.8752 +9852,11997,21414,-9,21413,21412,1,1,20,0,1,0,2,2,-9,0,4,5.9592204,6.015183,0,0,0,-982.90576,0,2,3,2021,9,2,16,0,1,2,1,3.2832377,3.2832377,0,0,0,0,0,0,0,0,1,0,1,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,888,-49022.82,0,0,0,0,0,875.37946 +9852,11998,21415,-9,21413,21412,1,1,18,0,1,1,2,0,-9,0,5,0,0,0,0,0,-924.4812,-9,2,3,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,588,139097.55,0,0,0,0,0,-505.57324 +9853,11999,21416,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.636796,7.7763157,5.9518971,0,0,-867.59027,0,2,2,2021,10,1,40,30,1,1,0,5.4829216,5.4829216,.05,.05,0,0,0,0,0,0,1,1,0,5.5353518,0,31.23,62.65,-9,-9,5,1,1,0,0,13,10,3,1,645,227948.31,-9242.04,179593.56,0,0,0,2378.6558 +9854,12000,21417,21418,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.7154627,7.8911772,7,2,17.519976,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6801667,7.4542999,49.7,45.87,51,48,8.333333333333334,1,1,0,0,2,9,5,1,964,2769631,1803718.8,781726.25,0,0,0,4154.8887 +9854,12000,21418,21417,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.0745602,9.0598211,.63421112,7,-2,20.715136,0,-9,-9,2021,10,0,40,40,1,1,0,25.381981,25.381981,0,0,0,0,0,0,0,0,1,1,0,4.2691584,1.1840456,51,48,49.7,45.87,7,1,1,0,0,1,9,5,1,964,2769631,1803718.8,781726.25,0,0,0,4154.8887 +9855,12001,21419,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.8180218,6.4742846,0,0,-1059.7961,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5497179,6.6579118,55,45,-9,-9,8,1,1,0,0,0,13,2,1,544,405292.5,131959.56,322581.41,0,0,0,970.05792 +9856,12002,21420,21421,-9,-9,1,0,62,0,0,0,3,3,-9,1,3,0,0,0,41,1,77.868919,0,2,2,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2243571,0,46.22,34.7,54.96,53.17,8.333333333333334,1,1,0,0,0,7,5,1,1054.5,1685929.8,877912.38,646526.38,0,0,0,4189.8164 +9856,12002,21421,21420,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.9492979,9.2915859,6.7226362,41,-1,34.803539,0,3,3,2021,6,0,37,40,1,0,0,30.979103,30.979103,0,0,0,0,0,0,0,2,1,1,0,4.7652907,6.5289469,54.96,53.17,46.22,34.7,10,1,1,0,0,9,7,5,1,1054.5,1685929.8,877912.38,646526.38,0,0,0,4189.8164 +9857,12003,21422,21423,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,30,3,0,0,-9,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.15,28.42,36.03,40.6,8.333333333333334,1,1,0,0,0,7,1,0,580.5,104279.38,-17957.078,0,0,0,0,1823.5859 +9857,12003,21423,21422,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,30,-3,0,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,36.03,40.6,53.15,28.42,5,1,1,0,0,0,7,1,0,580.5,104279.38,-17957.078,0,0,0,0,1823.5859 +9858,12004,21424,-9,21426,-9,1,0,25,0,1,0,2,2,0,0,3,0,0,0,0,0,-1138.5282,-9,2,1,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,8.333333333333334,1,1,0,0,3,12,1,1,114,170065.09,0,0,0,0,0,286.38367 +9858,12005,21425,21426,-9,-9,1,1,59,0,1,0,2,2,-9,0,4,8.1310577,8.035696,0,5,2,70.399963,0,-9,-9,2021,9,1,40,40,1,1,0,10.083346,10.083346,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.49,55.02,54.2,57.49,6.666666666666667,1,1,0,0,12,12,4,1,824.33331,759969.06,567060.06,160231.36,91987.063,204.68295,640.38165,2991.9338 +9858,12005,21426,21425,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,7.7831874,8.0243397,6.6516552,5,-2,-66.534775,0,2,2,2021,7,0,30,34,1,0,0,7.9438586,7.9438586,.05,.05,0,0,0,0,0,0,1,1,0,6.9822273,0,54.2,57.49,47.49,55.02,8.333333333333334,1,1,0,0,12,12,4,1,824.33331,759969.06,567060.06,160231.36,91987.063,204.68295,640.38165,2991.9338 +9858,12005,21427,-9,21426,-9,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-944.95752,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,4,1,824.33331,759969.06,567060.06,160231.36,91987.063,204.68295,640.38165,2991.9338 +9859,12006,21428,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,7.7294087,7.4364958,0,0,-1042.2942,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,3.1547086,7.7065105,52.36,37.07,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,498,389949.69,111934.44,307250.94,110414.45,0,0,962.82288 +9860,12007,21429,21430,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,9.6249018,9.6304884,0,4,-4,36.527927,0,-9,-9,2021,8,0,60,48,1,0,0,28.841339,28.841339,0,0,0,0,0,0,0,0,0,0,0,6.7385306,0,62.39,56.71,41.36,45.21,10,1,1,0,0,10,6,5,1,599.5,2766400.3,675185.19,1483942.6,0,0,0,10424.902 +9860,12007,21430,21429,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,8.4745789,8.6794319,0,4,4,-61.37672,0,2,2,2021,12,0,43,24,1,0,0,13.841479,13.841479,0,0,.05,0,0,0,0,0,0,0,0,4.9374499,0,41.36,45.21,62.39,56.71,6.666666666666667,1,1,0,0,8,6,5,1,599.5,2766400.3,675185.19,1483942.6,0,0,0,10424.902 +9861,12008,21431,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.2790556,8.7082148,5.4002566,0,0,-805.0968,0,-9,-9,2021,14,3,37,38,1,3,0,15.954167,15.954167,0,0,0,0,0,0,0,0,0,0,0,5.9725823,0,34.65,58.34,-9,-9,5,1,1,0,0,4,7,5,0,118,-20674.701,0,0,0,0,0,2840.5313 +9862,12009,21432,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,5.3699503,5.2180843,0,0,-996.24603,0,1,3,2021,11,0,0,41,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7606368,5.0554261,38.66,21.8,-9,-9,5,1,1,0,0,12,12,2,1,103,289961.19,168924.02,0,0,0,1000.6738,1245.4552 +9863,12010,21433,21434,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.0196686,7.9020224,0,42,2,-103.32704,0,3,2,2021,10,0,37,60,1,1,0,11.880644,11.880644,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,44.47,27.14,7,1,1,0,0,1,11,3,1,589.5,738578.44,582070.44,152447.59,0,0,0,1431.3535 +9863,12010,21434,21433,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,4.3469734,4.0865273,42,-2,35.177704,0,3,2,2021,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4562883,44.47,27.14,52,47,8.333333333333334,1,1,0,0,0,11,3,1,589.5,738578.44,582070.44,152447.59,0,0,0,1431.3535 +9864,12011,21435,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-910.5589,0,3,3,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.36,19.77,-9,-9,0,1,1,0,0,0,11,1,0,5786,102462.25,0,0,0,4228.958,0,1407.6576 +9865,12012,21436,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,5,0,5.4539456,5.7577481,0,0,-965.01727,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3550625,5.4181862,40.48,42.43,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1181,335358.63,29879.27,226629.73,0,0,0,630.40491 +9866,12013,21437,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,0,0,-973.98419,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.15,21.68,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,755,50952.164,0,0,0,0,0,758.49463 +9867,12014,21438,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.6207123,6.702745,0,0,-859.87585,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8136044,6.346981,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,507,335868.22,135471.64,348926.75,0,0,0,963.13263 +9868,12015,21439,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.790801,9.8590956,8.2532578,0,0,-1074.4327,0,2,2,2021,11,1,19,27,1,1,0,103.894,103.894,.05,.05,0,0,0,0,0,0,0,0,0,3.4506006,8.7456532,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,10,10,5,1,77,552302.63,208062.38,340959.53,176993.17,0,0,8057.0605 +9869,12016,21440,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2479267,8.6753702,7.5836296,0,0,-1061.3865,0,2,2,2021,12,0,39,37,1,0,0,11.403277,11.403277,0,0,0,0,0,0,0,0,1,1,0,7.0447826,0,35.19,63.37,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,1267,1287746,850554.75,235642.92,-12748.038,0,0,2779.2256 +9869,12017,21441,-9,21440,-9,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-1014.2736,-9,1,-9,2021,16,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,5,1,1,0,0,1,10,1,1,261,77150.766,0,0,0,0,0,0 +9869,12018,21442,-9,21440,-9,1,1,18,0,0,0,2,2,1,0,2,0,0,0,0,0,-1025.9908,-9,1,-9,2021,29,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.02,61.67,-9,-9,3.333333333333333,1,1,1,0,0,10,1,1,334,51604.531,0,0,0,0,0,0 +9870,12019,21443,21444,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.3213606,8.2061501,0,7,0,23.184454,0,-9,-9,2021,10,0,40,30,1,1,0,13.22336,13.22336,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,48.53,58.91,7,2,3,0,0,1,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9870,12019,21444,21443,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.0110922,7.0951648,0,16,0,53.5355,0,3,2,2021,11,0,17,6,1,0,0,8.1880569,8.1880569,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,50,57,8.333333333333334,2,3,0,0,3,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9870,12019,21445,-9,21444,21443,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.5188,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9870,12019,21446,-9,21444,21443,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.38397,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,580,105472.88,158308.67,193630.53,137691.47,0,0,3265.5518 +9871,12020,21447,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.0387583,5.1161532,0,0,-1029.2788,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.25061917,0,0,1,1,0,5.6393394,4.9554052,50.12,49.78,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,133,-101421.13,0,0,0,0,0,1434.9247 +9872,12021,21448,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.4206514,7.1605601,0,6,-6,-3.5399232,0,2,2,2021,8,0,64,35,1,0,0,2.0211651,2.0211651,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,43.76,55.68,8.333333333333334,1,1,0,0,9,2,4,0,2467,91700.195,-73501.266,0,0,0,0,1575.7411 +9872,12022,21449,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.2191315,8.4819365,6,6,-56.034016,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3445344,8.1907167,43.76,55.68,51.83,57.2,8.333333333333334,1,1,0,0,0,2,4,0,292,182172.55,70133.094,163497.17,0,0,0,3308.4275 +9873,12023,21450,21451,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.266675,8.2680206,0,15,10,-62.203217,0,2,2,2021,10,0,49,37,1,0,0,10.033751,10.033751,0,0,0,0,0,0,0,0,1,1,0,0,0,36.52,48.47,33.72,60.21,6.666666666666667,2,3,0,1,6,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9873,12023,21451,21450,-9,-9,1,0,31,0,2,0,3,3,-9,0,3,0,0,0,6,-10,-133.33443,0,2,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.72,60.21,36.52,48.47,6.666666666666667,2,3,0,1,0,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9873,12023,21452,-9,21451,21450,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.8716,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9873,12023,21453,-9,21451,21450,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-905.62122,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,877.25,-27336.283,0,0,0,0,0,1298.0328 +9874,12024,21454,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2439051,8.2638416,3.668057,0,0,-1077.345,0,3,3,2021,15,4,30,30,1,4,0,12.910105,12.910105,.05,.05,0,0,0,0,0,0,0,0,0,0,3.6624038,48.53,58.91,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,110,-1664.9841,30860.254,0,0,0,0,1352.2524 +9875,12025,21455,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1063.4541,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,48,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,1697,511801.53,0,271344,0,0,2403.2893,252.14978 +9876,12026,21456,21457,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,9.1151934,8.8972321,48,2,20.053429,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.0349426,9.3043652,59.04,54.12,48.69,48.96,10,1,1,0,0,0,7,5,1,490,1917107,926572.25,732683.63,0,0,0,7081.1338 +9876,12026,21457,21456,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.2317834,5.8100357,48,-2,23.457767,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,2,1,1,0,8.0399542,6.2526898,48.69,48.96,59.04,54.12,10,1,1,0,0,0,7,5,1,490,1917107,926572.25,732683.63,0,0,0,7081.1338 +9877,12027,21458,21459,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,0,0,38,0,-92.943207,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.34,53.29,42.88,45.53,8.333333333333334,1,1,0,0,5,6,3,0,1981,1065479.3,531932.13,467078,99743.953,0,5032.0205,-19.809052 +9877,12027,21459,21458,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,8.1686468,8.4182196,0,38,0,-39.75449,0,3,1,2021,11,1,50,65,1,1,0,9.2099018,9.2099018,0,0,0,0,0,0,0,0,0,0,0,6.45505,0,42.88,45.53,54.34,53.29,5,1,1,0,0,9,6,3,0,1981,1065479.3,531932.13,467078,99743.953,0,5032.0205,-19.809052 +9878,12028,21460,-9,-9,-9,1,0,53,0,0,0,1,1,-9,1,1,8.671833,8.3736019,0,0,0,-984.81128,0,2,2,2021,14,3,35,35,1,3,0,21.907812,21.907812,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,49.27,19.94,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,1040,924888.56,655491.31,363183.88,0,0,0,2195.4229 +9879,12029,21461,-9,-9,-9,1,0,22,0,0,1,1,0,0,0,3,0,0,0,0,0,-1078.8555,-9,-9,-9,2021,25,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.79,68.68000000000001,-9,-9,3.333333333333333,1,1,0,0,5,11,1,0,725,132700.67,0,0,0,0,0,0 +9880,12030,21462,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.05658,0,3,2,2021,10,2,0,35,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,3,4,1,1,9,8,1,1,142,0,0,0,0,0,0,263.15683 +9880,12031,21463,-9,21462,-9,1,0,19,0,0,0,2,2,1,0,4,8.7707825,8.348567,0,0,0,-1061.7377,-9,2,-9,2021,11,0,25,0,1,2,1,19.119383,19.119383,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,8,5,1,1610,77634.734,0,0,0,0,0,2399.9475 +9881,12032,21464,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1066.5834,0,3,2,2021,23,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,30.32,17.53,-9,-9,5,1,1,0,0,0,7,2,0,1034,-51797.141,-7544.8379,0,0,7747.0054,0,2947.2307 +9882,12033,21465,21466,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.4336224,8.469697,0,26,-2,61.079678,-9,3,3,2021,10,1,60,0,1,1,0,7.09517,7.09517,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.9,45.74,42.13,56.25,5,1,1,0,0,12,12,4,1,1520.5,548123.63,459063.44,143075.91,0,0,0,2068.2744 +9882,12033,21466,21465,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.5244575,7.5829039,0,25,2,16.342215,0,3,3,2021,11,1,22,22,1,1,0,10.538699,10.538699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.13,56.25,58.9,45.74,8.333333333333334,1,1,0,0,12,12,4,1,1520.5,548123.63,459063.44,143075.91,0,0,0,2068.2744 +9882,12034,21467,-9,21466,21465,1,1,18,0,0,1,2,0,-9,0,4,0,0,0,0,0,-981.99988,-9,2,3,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.52,57.75,-9,-9,6.666666666666667,1,1,0,1,2,12,2,1,150,38417.758,0,0,0,0,0,363.10587 +9883,12035,21468,21469,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.8910122,9.2249231,0,3,-8,-56.087776,0,-9,-9,2021,8,1,45,42,1,1,0,19.199867,19.199867,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,24.37,28.12,8.333333333333334,4,2,0,0,8,8,4,0,316.5,124901.73,128313.78,266572.75,191728.69,0,0,2929.3525 +9883,12035,21469,21468,-9,-9,1,1,37,0,0,0,2,2,-9,0,2,0,0,0,3,8,24.12401,0,3,-9,2021,21,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.37,28.12,49.04,55.86,3.333333333333333,1,1,1,1,10,8,4,0,316.5,124901.73,128313.78,266572.75,191728.69,0,0,2929.3525 +9884,12036,21470,-9,21472,-9,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-843.23273,1,2,1,2021,8,0,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.31,56.08,-9,-9,5,1,1,0,0,4,11,1,0,306,0,0,0,0,0,0,-398.85751 +9884,12037,21471,-9,21472,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1014.6023,-9,2,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,0,1577,-14448.498,0,0,0,0,0,1194.9434 +9884,12038,21472,21473,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,4,-6,0,0,2,-9,2021,15,5,0,30,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,56.54,57.33,53.46,3.333333333333333,1,1,1,1,5,11,1,0,2230.5,-37116.531,0,155821.97,28519.377,7812.9038,0,893.74097 +9884,12038,21473,21472,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,0,0,0,4,6,0,0,-9,-9,2021,6,0,0,45,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.33,56.54,6.666666666666667,1,1,1,0,3,11,1,0,2230.5,-37116.531,0,155821.97,28519.377,7812.9038,0,893.74097 +9885,12039,21474,21475,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.7474079,8.7606602,0,6,3,-67.382683,0,-9,-9,2021,10,0,44,44,1,0,0,16.283636,16.283636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.9,42.63,41.38,44.64,6.666666666666667,1,1,0,0,14,1,5,0,376.5,5825.8994,82524.148,188110,96488.758,0,0,3576.0313 +9885,12039,21475,21474,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,8.1522026,8.1614199,0,6,-3,10.606523,0,-9,-9,2021,10,0,38,-9,1,2,0,11.64434,11.64434,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.38,44.64,53.9,42.63,1.666666666666667,1,1,0,0,12,1,5,0,376.5,5825.8994,82524.148,188110,96488.758,0,0,3576.0313 +9886,12040,21476,21478,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.4903784,9.2660646,0,12,0,23.300209,0,2,1,2021,9,0,40,42,1,1,0,26.964048,26.964048,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,56,32.95,64.54000000000001,7,1,1,0,0,1,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9886,12040,21477,-9,21478,21476,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.6769,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9886,12040,21478,21476,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.6940627,7.8081117,0,12,0,128.50287,0,2,2,2021,12,0,21,21,1,0,0,14.619122,14.619122,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,52,56,6.666666666666667,1,1,0,0,9,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9886,12040,21479,-9,21478,21476,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.104,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,253.25,740315.13,562908.38,367880.44,214170.16,0,0,4867.1743 +9887,12041,21480,21482,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.4426665,7.2825532,0,1,0,14.012604,-9,1,1,2021,7,0,30,0,1,0,0,5.2997608,5.2997608,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,43.06,37.15,8.333333333333334,1,1,0,1,10,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9887,12041,21481,-9,21482,21480,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.9143,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9887,12041,21482,21480,-9,-9,1,0,53,0,2,0,2,2,-9,0,2,6.8311992,7.0293822,0,1,9,51.317142,-9,2,3,2021,16,5,20,0,1,5,0,6.225688,6.225688,0,0,0,0,0,0,0,0,1,1,0,6.2032633,0,43.06,37.15,51.24,58.84,5,1,1,0,1,11,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9887,12041,21483,-9,21482,21480,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.27728,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,10,2,1,669,440991.72,29000.313,474459.16,0,0,3964.7009,1991.229 +9888,12042,21484,21487,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,20,-13,72.162193,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.9440188,0,35.61,59.41,57.33,53.46,10,1,1,0,0,8,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9888,12042,21485,-9,21484,21487,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.08038,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9888,12042,21486,-9,21484,21487,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1111.0549,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9888,12042,21487,21484,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,9.3444414,9.5838261,0,20,13,-4.3019423,0,2,2,2021,8,0,55,40,1,0,0,28.41099,28.41099,.05,.05,0,0,0,0,0,0,1,1,0,8.6543751,0,57.33,53.46,35.61,59.41,8.333333333333334,1,1,0,0,8,10,5,1,712.5,58529.656,40074.855,115954.04,28800.535,0,0,7456.0469 +9889,12043,21488,21489,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7111511,8.8744602,5,0,6.1113191,0,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,0,8.9179554,44.24,59.44,51.24,58.84,8.333333333333334,1,1,0,0,3,12,5,1,436,2794533,1685881.5,430207.75,0,0,0,3752.7153 +9889,12043,21489,21488,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.5471435,6.1658001,5,0,22.61005,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2349696,6.1903186,51.24,58.84,44.24,59.44,8.333333333333334,1,1,0,0,0,12,5,1,436,2794533,1685881.5,430207.75,0,0,0,3752.7153 +9889,12044,21490,-9,21489,21488,1,0,28,0,0,0,1,1,-9,0,4,8.3875523,8.3245497,0,0,0,-987.49927,0,2,1,2021,12,0,46,43,1,0,0,12.210476,12.210476,.05,.05,0,0,0,0,0,0,0,0,0,2.7365036,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,619,110197.18,26047.568,0,0,0,0,2540.8872 +9889,12045,21491,-9,21489,21488,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-963.77979,-9,2,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,2,12,1,1,573,-20284.93,0,0,0,0,0,0 +9890,12046,21492,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.3037634,7.2071977,0,0,-1043.4703,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60326338,7.4636869,60.12,54.8,-9,-9,10,1,1,0,0,5,12,3,1,563,308442.72,260928.19,128534.8,0,0,0,1494.048 +9891,12047,21493,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,7.7018414,7.7752042,5.4133644,0,0,-984.84198,0,3,3,2021,11,0,50,50,1,2,0,5.0733724,5.0733724,.05,.05,0,0,0,0,0,0,0,0,0,6.9708967,5.3483219,49,48,-9,-9,7,1,1,0,0,7,8,3,1,1551,285094.59,205470.7,340605.44,0,0,0,1945.0261 +9891,12048,21494,-9,21493,-9,1,0,24,0,0,0,1,1,1,0,4,7.8281307,7.8953776,0,0,0,-985.66638,-9,1,-9,2021,11,0,45,0,1,2,1,7.2884998,7.2884998,0,0,0,0,0,0,0,0,0,0,0,1.5624596,0,47,58,-9,-9,7,1,1,0,0,6,8,4,1,1501,114481.13,0,0,0,14424.578,0,1050.4945 +9892,12049,21495,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.3378987,7.3939128,0,0,-941.97205,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9787812,7.1893106,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,6252,468412.56,194456.5,110155.84,0,0,0,1725.9628 +9893,12050,21496,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,8.8234243,8.7815504,0,0,0,-1199.998,-9,2,2,2021,7,0,55,0,1,0,0,12.891047,12.891047,.05,.05,0,0,0,0,0,7,0,0,0,2.6845033,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,10,2,5,1,4719,135696.83,157031.48,108441.55,101730.33,0,0,2712.02 +9893,12051,21497,-9,21496,-9,1,1,25,0,0,0,2,2,-9,0,4,7.8064928,7.8437572,0,0,0,-1028.0276,-9,2,-9,2021,10,0,37,0,1,1,1,7.1747389,7.1747389,.05,.05,0,0,0,0,0,0,0,0,0,3.7589848,0,48,59,-9,-9,7,1,1,0,0,1,2,3,1,469,-95861.492,0,0,0,0,0,1111.3704 +9894,12052,21498,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,0,0,0,0,0,-894.75012,1,1,2,2021,8,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.54,49.68,-9,-9,8.333333333333334,1,1,0,0,12,10,1,0,589,70664.813,0,0,0,0,0,0 +9895,12053,21499,21500,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.9369087,9.066123,6.5347543,34,-1,93.191284,0,3,3,2021,7,0,40,55,1,0,0,24.977177,24.977177,.05,.05,0,0,0,0,0,2,0,0,0,0,6.7350121,51.15,37.61,49,48,8.333333333333334,1,1,0,0,11,1,5,1,1255,500266.13,294995.56,0,0,1509.6219,4791.6543,3117.6074 +9895,12053,21500,21499,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,6.9255762,6.5564055,0,9,1,217.10091,-9,-9,-9,2021,11,0,16,0,1,2,0,7.2473035,7.2473035,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,51.15,37.61,7,1,1,0,0,1,1,5,1,1255,500266.13,294995.56,0,0,1509.6219,4791.6543,3117.6074 +9896,12054,21501,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,8.3576841,8.3459978,0,0,-1120.5203,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5659146,8.2470932,71.76000000000001,19.47,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,379,303452.94,86127.383,55405.281,0,0,0,3130.0566 +9897,12055,21502,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.6072941,7.1961393,0,0,-1012.3049,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,5.3334641,4.0596819,56.375374,0,1,1,0,.027896771,7.3640633,52,45,-9,-9,8,1,1,0,0,0,11,3,1,4785,815071.5,211884.66,396489.31,0,0,0,1010.2366 +9898,12056,21503,21504,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,42,1,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,49.45,46.54,7,1,1,0,0,0,8,1,0,581,274669.41,-37586.133,205921.7,0,0,0,3448.0269 +9898,12056,21504,21503,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,42,-1,0,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.45,46.54,52,48,6.666666666666667,1,1,0,0,0,8,1,0,581,274669.41,-37586.133,205921.7,0,0,0,3448.0269 +9899,12057,21505,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.0154319,6.193696,0,0,-1017.8971,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1280723,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,280,472661.06,6457.3486,228976.53,0,0,1318.8057,393.65411 +9900,12058,21506,-9,-9,-9,1,1,63,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1124.7922,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48.76,29.31,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,469,5234.9683,0,0,0,0,0,924.96674 +9900,12059,21507,-9,-9,21506,1,1,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1023.2014,-9,-9,2,2021,14,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,7.1309361,0,29.67,50.13,-9,-9,3.333333333333333,1,1,0,0,1,2,1,0,408,135438.84,0,0,0,0,0,971.67065 +9901,12060,21508,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,0,0,-953.58252,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.03,35.66,-9,-9,8.333333333333334,1,1,0,1,0,12,1,0,519,50389.785,0,0,0,0,634.97955,526.59021 +9902,12061,21509,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.1382685,8.2391043,0,0,0,-934.19128,0,2,-9,2021,22,11,38,39,1,11,0,12.172873,12.172873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,1.666666666666667,1,1,0,0,7,13,4,1,451,168482.42,135417.8,0,0,10023.888,0,2463.6665 +9903,12062,21510,21511,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.7548695,7.8854203,44,-2,-23.437954,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2419062,7.6675696,55.11,47.63,54.2,57.49,8.333333333333334,1,1,0,0,0,4,4,1,911.5,2095164.8,1563230.5,304555.72,0,0,0,4541.5483 +9903,12062,21511,21510,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.2367468,8.2022724,44,2,-33.375229,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.951961,7.9920526,54.2,57.49,55.11,47.63,8.333333333333334,1,1,0,0,0,4,4,1,911.5,2095164.8,1563230.5,304555.72,0,0,0,4541.5483 +9904,12063,21512,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,2.7236459,2.7772295,0,0,-1136.1691,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,2.4281418,51.42,29.35,-9,-9,5,1,1,0,0,0,4,2,0,502,27917.664,-77319.313,117912.27,0,0,0,842.27802 +9905,12064,21513,-9,21514,-9,1,1,16,0,1,0,3,3,-9,0,4,0,0,0,0,0,-1054.027,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.31,42.43,-9,-9,5,2,3,1,0,0,6,3,1,1403.3334,145989.86,12506.087,157899.06,27362.357,-358.15341,0,1769.9243 +9905,12064,21514,-9,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,7.7350817,7.9959941,0,0,0,-939.45911,0,3,3,2021,7,0,35,35,1,0,0,8.6147804,8.6147804,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,10,6,3,1,1403.3334,145989.86,12506.087,157899.06,27362.357,-358.15341,0,1769.9243 +9905,12064,21515,-9,21514,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1166.1075,-9,1,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,1,6,3,1,1403.3334,145989.86,12506.087,157899.06,27362.357,-358.15341,0,1769.9243 +9906,12065,21516,21517,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,9.2130213,9.1956425,0,8,0,32.112041,0,-9,-9,2021,14,3,43,44,1,3,0,24.816854,24.816854,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,47.85,52.43,6.666666666666667,1,1,0,1,12,10,5,1,1476.3334,127898.83,185502.48,0,0,5742.394,0,4702.0488 +9906,12065,21517,21516,-9,-9,1,0,44,1,1,0,1,1,-9,0,3,8.112752,8.4059782,0,8,9,56.391956,0,-9,-9,2021,12,1,41,42,1,1,0,11.03536,11.03536,.05,.05,0,0,0,0,0,0,1,1,0,2.1434536,0,47.85,52.43,51.24,58.84,6.666666666666667,1,1,0,0,9,10,5,1,1476.3334,127898.83,185502.48,0,0,5742.394,0,4702.0488 +9906,12065,21518,-9,21517,21516,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-991.9256,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,10,5,1,1476.3334,127898.83,185502.48,0,0,5742.394,0,4702.0488 +9907,12066,21519,21520,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.9935117,6.6560349,0,11,-2,54.166672,0,2,2,2021,6,0,17,17,1,0,0,8.0242701,8.0242701,.05,.05,0,0,0,0,0,0,1,1,0,4.5084901,0,54.2,57.49,51.41,56.15,8.333333333333334,1,1,0,0,12,4,4,1,627,-80320.953,24550.662,0,0,10375.582,0,2792.1433 +9907,12066,21520,21519,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4675236,8.5313301,0,11,2,78.097855,0,-9,-9,2021,12,1,40,40,1,1,0,17.604752,17.604752,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.41,56.15,54.2,57.49,10,1,1,0,0,13,4,4,1,627,-80320.953,24550.662,0,0,10375.582,0,2792.1433 +9908,12067,21521,21522,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,6,-8,0,0,-9,2,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.96,31.17,16.78,35.79,6.666666666666667,1,1,0,0,1,5,1,0,776.5,29986.713,0,0,0,0,0,2390.376 +9908,12067,21522,21521,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,6,8,0,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.78,35.79,55.96,31.17,3.333333333333333,1,1,0,0,5,5,1,0,776.5,29986.713,0,0,0,0,0,2390.376 +9909,12068,21523,-9,21524,-9,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1099.1047,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.65,41.83,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,2392.5,-194096.38,0,0,0,0,0,3027.719 +9909,12068,21524,-9,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.8943052,8.2072182,0,0,0,-970.01471,0,2,2,2021,26,8,28,16,1,8,0,10.493254,10.493254,0,0,0,0,0,0,0,0,1,1,0,0,0,19.47,63.92,-9,-9,5,1,1,0,0,7,11,2,0,2392.5,-194096.38,0,0,0,0,0,3027.719 +9910,12069,21525,-9,21528,21527,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.1357,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9910,12069,21526,-9,21528,21527,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.37531,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9910,12069,21527,21528,-9,-9,1,1,64,0,2,0,2,2,-9,0,2,0,7.699748,7.4496307,10,19,77.252014,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.2634239,7.5298123,53.67,37.78,46.67,55.57,6.666666666666667,1,1,0,0,7,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9910,12069,21528,21527,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,6.4645777,6.41998,0,10,-19,41.354847,0,-9,-9,2021,8,0,3,6,1,0,0,29.654047,29.654047,0,0,0,0,0,0,0,7,1,1,0,0,0,46.67,55.57,53.67,37.78,3.333333333333333,2,3,0,0,5,6,3,1,525.5,146691,54494.219,0,0,0,0,1474.9423 +9911,12070,21529,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,1,8.0870733,8.1544399,6.1304092,0,0,-919.83063,0,2,-9,2021,20,7,30,27,1,7,0,10.090039,10.090039,.05,.05,0,0,0,0,0,0,1,1,0,6.8838973,0,34.51,37.02,-9,-9,1.666666666666667,3,4,0,0,12,9,4,0,545,32213.074,-4054.6699,0,0,0,0,2523.3301 +9911,12070,21530,-9,21529,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1041.8414,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,4,0,545,32213.074,-4054.6699,0,0,0,0,2523.3301 +9912,12071,21531,21532,-9,-9,1,0,32,0,0,0,1,1,-9,0,5,8.4418926,8.6114864,0,6,2,10.672235,0,3,-9,2021,14,3,37,42,1,3,0,20.05015,20.05015,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,52,54.51,8.333333333333334,1,1,0,0,9,2,5,1,331,297168.16,333600.5,230398.14,152918.33,6437.833,0,3895.4312 +9912,12071,21532,21531,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.3794394,8.759428,0,6,-2,-133.54128,0,-9,-9,2021,12,0,37,37,1,0,0,15.258577,15.258577,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.73,58.82,8.333333333333334,1,1,0,0,9,2,5,1,331,297168.16,333600.5,230398.14,152918.33,6437.833,0,3895.4312 +9913,12072,21533,21534,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.8243413,8.1510544,39,-1,-118.97036,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1779795,57.16,56.15,54.46,10.85,8.333333333333334,1,1,0,0,14,12,3,1,891.5,1151388.3,881089.5,128053.03,0,0,0,1927.441 +9913,12072,21534,21533,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,6.458509,6.2171731,39,1,25.574205,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5304809,54.46,10.85,57.16,56.15,3.333333333333333,1,1,0,0,8,12,3,1,891.5,1151388.3,881089.5,128053.03,0,0,0,1927.441 +9914,12073,21535,21536,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.2318316,8.2157412,6.8295202,38,-2,279.1105,0,3,3,2021,23,11,25,26,1,11,0,14.837675,14.837675,0,0,0,0,0,0,0,0,0,0,0,0,7.3442473,42.26,46.74,49.62,46.21,6.666666666666667,1,1,0,0,14,7,5,0,261,360754.63,82922.898,217745.09,45900.684,1452.1207,12722.639,2951.334 +9914,12073,21536,21535,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.9421406,8.1108646,6.8458591,38,2,85.02243,0,3,3,2021,13,2,31,38,1,2,0,9.781292,9.781292,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8354826,49.62,46.21,42.26,46.74,8.333333333333334,1,1,0,0,14,7,5,0,261,360754.63,82922.898,217745.09,45900.684,1452.1207,12722.639,2951.334 +9914,12074,21537,-9,21535,21536,1,1,40,0,0,0,2,2,-9,0,3,7.8035717,7.7056093,0,0,0,-1008.8818,0,2,3,2021,10,1,38,38,1,1,1,8.2184525,8.2184525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.88,41.73,-9,-9,5,1,1,0,0,14,7,4,0,1880,-129059.8,19707.758,0,0,0,-489.66763,1389.8041 +9915,12075,21538,21539,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.0673304,8.024085,0,12,8,-104.23764,0,2,2,2021,10,0,34,41,1,0,0,12.299991,12.299991,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,58.79,38.08,8.333333333333334,1,1,0,0,13,12,5,1,857.5,1531555.6,1333821.6,109832.52,0,0,0,2702.7188 +9915,12075,21539,21538,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.3279209,8.3988142,0,12,-8,-55.488125,0,3,3,2021,11,0,40,40,1,0,0,9.118638,9.118638,0,0,0,0,0,0,0,0,0,0,0,0,0,58.79,38.08,48.81,59.91,6.666666666666667,1,1,0,0,13,12,5,1,857.5,1531555.6,1333821.6,109832.52,0,0,0,2702.7188 +9916,12076,21540,21541,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.1273441,7.7304821,25,11,-71.661736,0,2,2,2021,16,6,0,24,4,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.9750128,7.9441972,31.73,48.25,56.47,59.4,6.666666666666667,1,1,0,0,11,4,4,1,1219.6666,745874.56,448722.88,158295.92,0,0,0,2896.2751 +9916,12076,21541,21540,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.4306412,7.2272534,0,24,-11,22.279657,0,2,1,2021,6,0,20,20,1,0,0,8.9832554,8.9832554,.05,.05,0,0,0,0,0,0,0,0,0,7.6175284,0,56.47,59.4,31.73,48.25,10,1,1,0,0,9,4,4,1,1219.6666,745874.56,448722.88,158295.92,0,0,0,2896.2751 +9916,12076,21542,-9,21541,21540,1,0,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1025.9967,1,2,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.41465,0,34.81,61.47,-9,-9,5,1,1,0,0,1,4,4,1,1219.6666,745874.56,448722.88,158295.92,0,0,0,2896.2751 +9916,12077,21543,-9,21541,21540,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-914.75244,-9,2,1,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5178406,0,60.42,54.81,-9,-9,8.333333333333334,1,1,0,0,3,4,1,1,569,44276.055,0,0,0,0,0,-243.23917 +9917,12078,21544,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,8.4943209,8.6944056,0,0,0,-1018.309,0,-9,-9,2021,6,0,40,50,1,0,0,15.754418,15.754418,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,11,5,1,225,-78820.648,84871.281,191169.55,64387.832,3322.6084,1285.8163,2187.8711 +9918,12079,21545,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.2666655,8.3339977,0,0,0,-1007.9127,0,2,2,2021,10,0,21,20,1,0,0,21.186592,21.186592,0,0,0,0,0,0,0,0,1,1,0,1.875932,0,46.41,37.03,-9,-9,3.333333333333333,1,1,0,0,12,8,4,1,450,55056.168,114925.65,0,0,0,0,1326.4908 +9919,12080,21546,-9,21547,-9,1,1,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-964.81995,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9919,12080,21547,-9,-9,-9,1,0,27,1,3,0,3,3,-9,1,3,0,6.4731679,6.4905534,0,0,-963.89221,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8530531,0,52.81,38.08,-9,-9,5,1,1,0,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9919,12080,21548,-9,21547,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.7136,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9919,12080,21549,-9,21547,-9,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-942.14691,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,0,434.25,-18495.75,0,0,0,0,0,2508.9326 +9920,12081,21550,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,8.5463896,8.8574963,0,0,0,-1011.2258,0,3,3,2021,8,0,57,45,1,0,0,18.032181,18.032181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.36,52.5,-9,-9,10,2,3,0,0,9,8,5,0,1556,534054.44,469136.22,123520.93,0,-954.90192,0,2312.4543 +9921,12082,21551,21552,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.7344494,8.5168114,39,-3,84.507874,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6052446,8.7013588,52.71,48.66,60.03,45.37,8.333333333333334,2,3,0,0,0,8,4,1,137.5,1156255.5,760108.5,289197.31,0,0,0,5466.2363 +9921,12082,21552,21551,-9,-9,1,0,75,0,0,0,1,1,-9,0,3,0,4.8790703,4.5857234,8,3,-156.26538,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2632442,4.6030245,60.03,45.37,52.71,48.66,10,2,3,0,0,0,8,4,1,137.5,1156255.5,760108.5,289197.31,0,0,0,5466.2363 +9922,12083,21553,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.4818583,8.5575094,0,0,0,-961.52539,0,2,1,2021,8,1,40,47,1,1,0,11.839098,11.839098,.05,.05,0,0,0,0,0,2,0,0,0,.46744531,0,42.35,36.31,-9,-9,1.666666666666667,3,4,0,0,7,8,4,0,860,315478.53,-11004.87,0,0,0,1203.0076,1849.7279 +9923,12084,21554,21556,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.2019691,8.240283,0,16,2,-21.342787,0,3,2,2021,11,0,39,33,1,0,0,10.897367,10.897367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.93,42.87,42.46,54.85,8.333333333333334,2,3,0,0,11,8,5,1,979.66669,452868.72,248751.97,359206.66,158116.11,0,0,4120.5728 +9923,12084,21555,-9,21554,21556,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.96002,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,5,1,979.66669,452868.72,248751.97,359206.66,158116.11,0,0,4120.5728 +9923,12084,21556,21554,-9,21557,1,1,45,0,1,0,1,1,-9,0,3,8.5428228,8.5535717,0,16,-2,27.659225,0,3,2,2021,12,0,46,46,1,0,0,17.969917,17.969917,.05,.05,0,0,0,0,0,7,1,1,0,7.6596894,0,42.46,54.85,53.93,42.87,5,2,3,0,0,11,8,5,1,979.66669,452868.72,248751.97,359206.66,158116.11,0,0,4120.5728 +9923,12085,21557,-9,-9,-9,1,1,80,0,1,0,3,3,-9,0,3,0,0,0,0,0,-969.88165,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0175039,0,54,46,-9,-9,8,2,3,0,0,0,8,1,1,512,-6900.2231,0,0,0,0,0,1018.1271 +9924,12086,21558,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,7.116045,6.85676,0,0,0,-1147.7404,0,1,1,2021,11,0,45,45,1,0,0,2.5363722,2.5363722,0,0,0,0,0,0,0,0,0,0,0,2.9267483,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,4,8,2,0,1883,43897.109,0,0,0,0,0,1170.6604 +9925,12087,21559,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.6404104,7.9068723,0,0,-1009.4314,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5871954,7.7548766,52.4,55.58,-9,-9,8.333333333333334,1,1,0,0,7,9,4,1,2637,429944.5,196588.64,166777.81,0,0,0,2364.5071 +9926,12088,21560,21561,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,9.0460567,9.0648422,0,2,8,48.596237,0,2,-9,2021,14,4,40,37,1,4,0,30.465815,30.465815,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,58.2,48.99,8.333333333333334,1,1,0,0,8,8,5,1,532.5,911796,695171.75,560026.31,239768.31,-1796.79,0,6275.127 +9926,12088,21561,21560,-9,-9,1,0,43,0,0,0,1,1,-9,0,5,8.9771719,9.5428724,0,2,-8,32.449551,0,-9,-9,2021,13,3,45,40,1,3,0,17.444452,17.444452,.05,.05,0,0,0,0,0,0,0,0,0,6.7621512,0,58.2,48.99,51.14,60.45,8.333333333333334,1,1,0,0,1,8,5,1,532.5,911796,695171.75,560026.31,239768.31,-1796.79,0,6275.127 +9927,12089,21562,-9,-9,21563,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-975.6684,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,5,0,1053.5,98300.578,-52510.531,0,0,0,0,2951.0762 +9927,12089,21563,-9,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.9855776,8.5040979,0,0,0,-959.64862,0,-9,2,2021,8,0,55,50,1,0,0,17.825653,17.825653,.05,.05,0,0,0,0,0,7,1,1,0,0,0,55.44,52.99,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,1053.5,98300.578,-52510.531,0,0,0,0,2951.0762 +9928,12090,21564,21565,-9,-9,1,0,37,0,0,0,1,1,-9,0,3,7.2125258,7.4736719,0,11,-2,41.413219,0,2,2,2021,12,4,24,40,1,4,0,7.3870306,7.3870306,0,0,0,0,0,0,0,0,0,0,0,2.5894783,0,54.25,31.66,55.36,51.57,8.333333333333334,2,3,0,0,10,8,4,0,836.5,194448.33,0,276243.31,139451.41,0,8712.042,2113.3853 +9928,12090,21565,21564,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,7.939508,7.8955956,0,3,2,27.958813,0,2,2,2021,6,0,40,40,1,0,0,10.142921,10.142921,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,54.25,31.66,8.333333333333334,2,3,0,0,10,8,4,0,836.5,194448.33,0,276243.31,139451.41,0,8712.042,2113.3853 +9929,12091,21566,21567,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,5.9344373,5.7762613,7,7,28.083792,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5945187,44.68,56.37,52.81,41.69,8.333333333333334,1,1,0,0,7,12,2,1,247.5,197782.41,36857.934,114741.67,0,0,0,1416.2588 +9929,12091,21567,21566,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,7,-7,-75.149002,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.81,41.69,44.68,56.37,5,1,1,0,0,7,12,2,1,247.5,197782.41,36857.934,114741.67,0,0,0,1416.2588 +9930,12092,21568,21569,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.0779719,6.1851006,32,0,10.242771,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2965779,54.77,55.87,57.16,56.15,8.333333333333334,1,1,1,0,11,13,4,1,824,2048866.5,1183243.9,220206.61,0,0,0,2254.6721 +9930,12092,21569,21568,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.682126,9.292902,0,10,0,-31.537266,0,-9,-9,2021,7,0,40,46,1,0,0,20.509596,20.509596,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.77,55.87,6.666666666666667,1,1,0,0,12,13,4,1,824,2048866.5,1183243.9,220206.61,0,0,0,2254.6721 +9930,12093,21570,-9,21568,21569,1,0,25,0,0,0,2,2,-9,0,4,8.3913164,8.0252819,0,0,0,-1054.2451,0,2,2,2021,12,0,50,36,1,0,1,10.894042,10.894042,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,3892,121587.35,-86521.109,93707.352,50340.996,18.478285,0,2011.4873 +9931,12094,21571,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,8.366209,8.5481539,0,0,0,-978.98877,0,3,3,2021,17,5,40,40,1,5,0,13.454129,13.454129,.05,.05,0,0,0,0,0,0,1,0,1,0,0,31.8,58.32,-9,-9,5,2,3,0,0,1,4,5,0,902,106391.33,-49543.176,0,0,0,0,1310.2074 +9931,12095,21572,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,6.1736846,6.4400778,0,0,0,-1046.0458,-9,-9,-9,2021,22,6,12,0,1,6,0,5.3555179,5.3555179,0,0,0,0,0,0,0,42,1,0,1,0,0,24.19,61.89,-9,-9,0,2,3,0,1,3,4,2,0,482,622691.5,0,0,0,0,0,-550.9292 +9932,12096,21573,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,7.702013,7.7432899,0,0,-1054.0159,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2631049,8.0497856,36.51,20.26,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,865,415349.72,120203.34,88469.781,0,0,0,2667.2759 +9933,12097,21574,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.8516226,7.7242436,0,0,0,-1012.0485,0,2,3,2021,2,0,16,10,1,0,0,16.125566,16.125566,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,1,8,6,3,0,1739,126620.02,118978.75,79098.82,14945.638,10856.278,1904.1815,1252.7123 +9934,12098,21575,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,6.2792354,6.2228851,0,0,-1059.5768,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,6.1838102,0,0,1,1,0,0,6.4767513,66.37,22.3,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,479,236887.34,-100395.69,199633.75,0,0,0,1312.6655 +9935,12099,21576,21577,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.4838786,6.9328675,52,0,83.1586,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3864188,7.4426117,51.64,50.48,62.42,37.4,8.333333333333334,1,1,0,0,7,6,3,1,1121.5,745118.38,456879.44,260149.44,0,0,0,2737.0747 +9935,12099,21577,21576,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.5509357,7.4075742,52,0,181.45396,0,2,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7492166,7.7651315,62.42,37.4,51.64,50.48,8.333333333333334,1,1,0,0,2,6,3,1,1121.5,745118.38,456879.44,260149.44,0,0,0,2737.0747 +9936,12100,21578,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.1932516,6.3489733,0,0,-998.83295,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8759007,6.0506525,52,47,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,748,532860.25,104624.34,104998.12,0,0,0,2023.7773 +9937,12101,21579,21580,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,6.7078872,6.37361,46,-4,61.077698,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4721756,6.5448494,47.08,48.43,60.69,39.98,8.333333333333334,1,1,0,0,2,10,3,1,1512.5,927512.81,359435.84,355911.19,0,0,0,2678.7329 +9937,12101,21580,21579,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.0845165,7.3269124,44,4,5.7230425,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.360548,7.1397662,60.69,39.98,47.08,48.43,10,1,1,0,0,0,10,3,1,1512.5,927512.81,359435.84,355911.19,0,0,0,2678.7329 +9938,12102,21581,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.6962671,6.6763301,0,0,-848.40228,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8608801,6.6946888,42.16,36.22,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,570,350654.5,96711.484,416235.75,0,10920.398,26178.82,1544.9128 +9939,12103,21582,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,5.2212896,5.1356106,0,0,-852.28857,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3964596,62.49,55.09,-9,-9,10,1,1,0,0,0,1,2,1,1678,170222.28,-27230.662,0,0,0,0,457.22403 +9940,12104,21583,-9,21585,21584,1,1,10,0,1,1,3,0,-9,0,2,0,0,0,0,0,-971.09564,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,10,5,1,688.33331,785324.88,726443.13,261815.09,104998.73,3917.8025,1827.2308,3372.438 +9940,12104,21584,21585,-9,-9,1,1,54,0,1,0,1,1,-9,0,2,0,0,0,25,10,64.928055,0,3,3,2021,12,4,0,20,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.46,55.58,43.12,58.55,3.333333333333333,1,1,0,1,14,10,5,1,688.33331,785324.88,726443.13,261815.09,104998.73,3917.8025,1827.2308,3372.438 +9940,12104,21585,21584,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,9.2649183,9.2947483,0,12,-10,37.872704,0,2,1,2021,14,5,48,45,1,5,0,23.627075,23.627075,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.12,58.55,41.46,55.58,6.666666666666667,1,1,0,0,14,10,5,1,688.33331,785324.88,726443.13,261815.09,104998.73,3917.8025,1827.2308,3372.438 +9941,12105,21586,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,6.8810759,6.9370947,0,0,0,-919.36523,0,2,2,2021,10,0,14,0,1,0,0,7.25666,7.25666,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.45,18.32,-9,-9,3.333333333333333,1,1,0,1,9,9,2,0,529,204390.31,124989.16,246168.81,44826.008,0,0,1270.6796 +9942,12106,21587,-9,21588,-9,1,0,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-927.42548,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,2,0,578.5,-106993.48,0,0,0,-325.54227,513.09583,822.71588 +9942,12106,21588,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,0,0,0,0,0,-883.61169,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.88,53.03,-9,-9,5,1,1,0,1,0,2,2,0,578.5,-106993.48,0,0,0,-325.54227,513.09583,822.71588 +9943,12107,21589,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-876.23547,0,3,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,28.212852,0,0,1,1,0,0,0,40.39,15.94,-9,-9,1.666666666666667,1,1,0,0,0,4,1,0,839,48528.555,0,0,0,0,0,832.17834 +9943,12108,21590,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.3392715,8.2774639,0,0,0,-889.33099,0,-9,-9,2021,12,0,48,48,1,2,0,11.463712,11.463712,.05,.05,0,0,0,0,0,0,1,1,0,.03841012,0,46,58,-9,-9,10,1,1,0,0,3,4,4,0,610,39254.379,73265.531,0,0,0,0,1747.0519 +9944,12109,21591,21592,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.610043,7.5509667,51,-4,-13.229601,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.032907,7.7957697,60.63,38.2,51.83,57.2,8.333333333333334,1,1,0,0,0,4,3,1,374,639631.13,625848.5,0,0,0,-617.43457,3204.4207 +9944,12109,21592,21591,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.6099539,7.3707161,12,4,-26.907715,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.3376594,7.3758278,51.83,57.2,60.63,38.2,10,1,1,0,0,0,4,3,1,374,639631.13,625848.5,0,0,0,-617.43457,3204.4207 +9945,12110,21593,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-897.39423,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.36,15.07,-9,-9,1.666666666666667,1,1,0,0,0,2,2,0,1531,-150561.2,0,0,0,0,0,2124.2893 +9946,12111,21594,21595,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.2251577,5.2743187,5,-5,-45.522388,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5876412,5.0059776,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,0,7,2,1,1066,905198.38,211402.16,597729.75,0,0,0,867.27094 +9946,12111,21595,21594,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,5.7791266,5.9673729,5,5,-33.588387,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5673933,5.8487191,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,0,7,2,1,1066,905198.38,211402.16,597729.75,0,0,0,867.27094 +9947,12112,21596,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,6.8943539,7.2516451,5.2808833,0,0,-1054.2789,0,3,-9,2021,10,0,16,17,1,0,0,6.6184874,6.6184874,0,0,0,0,0,0,0,2,1,1,0,5.48206,0,55.36,51.57,-9,-9,5,1,1,0,0,13,12,2,0,1995,-105468.29,-60375.359,0,0,0,798.44977,1061.2565 +9948,12113,21597,21598,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,6.8336287,6.9881573,0,42,2,36.617508,0,3,3,2021,11,0,3,15,1,0,0,32.195511,32.195511,0,0,0,0,0,0,0,0,0,0,0,0,0,44.45,47.38,54.69,39.97,8.333333333333334,1,1,0,0,12,2,4,1,397.5,270612.22,-54832.758,242252.05,0,0,0,1802.5388 +9948,12113,21598,21597,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.2633066,8.434206,0,41,-2,-107.04939,0,3,3,2021,13,1,41,41,1,1,0,11.403528,11.403528,.05,.05,0,0,0,0,0,0,0,0,0,3.5311637,0,54.69,39.97,44.45,47.38,8.333333333333334,1,1,0,0,12,2,4,1,397.5,270612.22,-54832.758,242252.05,0,0,0,1802.5388 +9949,12114,21599,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.9486618,7.3381782,0,0,-980.61951,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9917164,7.0643334,47.92,54.31,-9,-9,10,1,1,0,0,10,13,3,1,754,548469.75,233115.97,171684.63,0,0,0,1791.9108 +9950,12115,21600,21601,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.7278404,8.4505644,0,32,4,110.69734,0,2,2,2021,7,0,50,50,1,0,0,12.722385,12.722385,0,0,0,0,0,0,0,0,0,0,0,4.2994499,0,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,8,4,5,1,1193.5,3220317.3,35736.516,741087.63,0,0,0,2901.8943 +9950,12115,21601,21600,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0506763,8.195262,0,32,-4,-58.809349,0,3,2,2021,7,0,50,45,1,0,0,6.5293965,6.5293965,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,57.16,56.15,10,1,1,0,0,5,4,5,1,1193.5,3220317.3,35736.516,741087.63,0,0,0,2901.8943 +9951,12116,21602,21604,-9,-9,1,0,50,0,0,0,1,1,-9,1,2,8.7846308,8.9663754,0,20,-5,-16.967329,0,2,2,2021,21,9,53,42,1,9,0,12.101481,12.101481,0,0,0,0,0,0,0,27,1,1,0,0,0,38.4,35.36,38,28,5,1,1,0,0,14,5,5,1,596.33331,2727051.8,2626158,327404.31,115235.09,0,0,3713.02 +9951,12116,21603,-9,21602,21604,1,1,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1014.6193,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,596.33331,2727051.8,2626158,327404.31,115235.09,0,0,3713.02 +9951,12116,21604,21602,-9,-9,1,1,55,0,0,0,1,1,-9,0,1,0,7.643219,8.0009813,20,5,-59.586655,0,3,3,2021,25,10,0,0,4,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8547187,38,28,38.4,35.36,5,1,1,0,0,7,5,5,1,596.33331,2727051.8,2626158,327404.31,115235.09,0,0,3713.02 +9952,12117,21605,21607,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,0,0,0,9,-6,43.656448,0,3,3,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.42,27.74,49.02,47.84,5,1,1,0,0,0,2,3,0,462,488905.28,99367.609,398263.63,0,13657.77,2393.7788,2286.8755 +9952,12117,21606,-9,21605,21607,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1094.0823,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.23,61.73,-9,-9,8.333333333333334,1,1,0,1,0,2,3,0,462,488905.28,99367.609,398263.63,0,13657.77,2393.7788,2286.8755 +9952,12117,21607,21605,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.0901604,8.6734409,0,9,6,-88.299286,0,-9,-9,2021,11,0,32,24,1,0,0,15.444644,15.444644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,47.84,37.42,27.74,8.333333333333334,1,1,0,0,10,2,3,0,462,488905.28,99367.609,398263.63,0,13657.77,2393.7788,2286.8755 +9953,12118,21608,21609,-9,-9,1,0,53,0,1,0,3,3,-9,0,4,8.5115728,8.7258921,0,21,0,12.624979,0,2,2,2021,10,0,35,36,1,0,0,14.831026,14.831026,0,0,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,45.52,26.86,10,1,1,0,0,11,12,5,1,769.33331,633384.69,412933,142983.58,0,0,0,3934.9661 +9953,12118,21609,21608,-9,-9,1,1,53,0,1,0,2,2,-9,0,1,8.6567335,8.4318151,0,21,0,49.874077,0,2,2,2021,21,9,40,50,1,9,0,13.406844,13.406844,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.52,26.86,41.06,62.04,3.333333333333333,1,1,0,0,11,12,5,1,769.33331,633384.69,412933,142983.58,0,0,0,3934.9661 +9953,12118,21610,-9,21608,21609,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.9967,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,769.33331,633384.69,412933,142983.58,0,0,0,3934.9661 +9954,12119,21611,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.9275293,9.5637102,0,0,0,-1044.0103,-9,3,3,2021,10,1,60,0,1,1,0,27.781242,27.781242,.05,.05,0,0,0,0,0,0,0,0,0,1.8015312,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,563,965257.56,558563.81,196001.86,0,0,0,6184.4229 +9955,12120,21612,21613,-9,-9,1,0,58,0,0,0,3,3,-9,1,3,6.5009856,6.5512056,0,8,-7,91.20208,0,3,3,2021,12,0,12,24,1,0,0,7.4790888,7.4790888,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,42.66,53.64,43.21,6.666666666666667,1,1,0,0,3,11,2,1,933,1451643.8,626288.63,846167.88,0,11512.482,0,1699.7306 +9955,12120,21613,21612,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,8,7,23.997286,0,3,3,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.64,43.21,48.85,42.66,8.333333333333334,1,1,0,0,9,11,2,1,933,1451643.8,626288.63,846167.88,0,11512.482,0,1699.7306 +9955,12121,21614,-9,21612,21613,1,0,22,0,0,0,2,2,-9,0,3,7.4865351,7.5292068,0,0,0,-910.59863,0,3,3,2021,8,1,40,38,1,1,1,6.8764753,6.8764753,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,5,11,3,1,1423,107389.07,0,0,0,0,0,1183.8423 +9956,12122,21615,21616,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.5313549,8.4892349,0,7,1,-50.755898,0,-9,-9,2021,10,0,44,42,1,0,0,13.613472,13.613472,0,0,0,0,0,0,0,0,0,0,0,0,0,46.89,59.64,46.44,59.62,6.666666666666667,1,1,0,0,6,10,5,1,1072.5,-193532.56,116743.98,0,0,8598.293,302.08768,3831.54 +9956,12122,21616,21615,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.4921246,8.7962503,0,7,-1,52.206924,0,1,1,2021,11,1,52,55,1,1,0,12.589731,12.589731,.05,.05,0,0,0,0,0,2,0,0,0,.21906686,0,46.44,59.62,46.89,59.64,8.333333333333334,1,1,0,0,9,10,5,1,1072.5,-193532.56,116743.98,0,0,8598.293,302.08768,3831.54 +9957,12123,21617,-9,21618,21619,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.6754,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,4,1,381,392766.41,327478.5,148332.64,57647.09,1021.4642,303.97562,3639.3093 +9957,12123,21618,21619,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.9508276,7.7568531,0,6,-4,108.94971,0,1,2,2021,13,2,43,43,1,2,0,7.2235923,7.2235923,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.86,59.06,57.33,53.46,6.666666666666667,1,1,0,0,7,4,4,1,381,392766.41,327478.5,148332.64,57647.09,1021.4642,303.97562,3639.3093 +9957,12123,21619,21618,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.7195711,8.81497,0,6,4,-103.61702,0,2,1,2021,6,0,42,42,1,0,0,15.181224,15.181224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,38.86,59.06,8.333333333333334,1,1,0,0,7,4,4,1,381,392766.41,327478.5,148332.64,57647.09,1021.4642,303.97562,3639.3093 +9958,12124,21620,21622,-9,-9,1,1,62,0,2,0,1,1,-9,0,4,9.7516394,10.149387,7.4767303,6,27,17.639967,-9,-9,-9,2021,7,0,35,0,1,0,0,53.318676,53.318676,.05,.05,.05,0,0,0,0,0,1,1,0,0,7.8882923,57.16,56.15,45.73,57.57,8.333333333333334,3,4,0,0,8,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9958,12124,21621,-9,21622,21620,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-814.29901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9958,12124,21622,21620,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,8.5936451,9.0204468,0,6,-27,-82.64772,-9,2,1,2021,10,0,35,0,1,0,0,18.042795,18.042795,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,57.16,56.15,6.666666666666667,3,4,0,0,9,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9958,12124,21623,-9,21622,21620,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.76843,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,5,1,552,1087345.9,632539.19,466300.53,54934.98,0,0,8167.2817 +9959,12125,21624,21625,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,4.9654469,4.9971375,9,-2,35.548878,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5679483,4.5950284,54.98,44.8,48.28,60.18,0,1,1,0,0,4,10,3,1,339,1131616,282586.06,384519.81,0,0,0,2910.7529 +9959,12125,21625,21624,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,8.0609598,8.6414709,9,2,-93.936943,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8302879,8.2655478,48.28,60.18,54.98,44.8,10,1,1,0,0,0,10,3,1,339,1131616,282586.06,384519.81,0,0,0,2910.7529 +9960,12126,21626,-9,21629,21627,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.8822,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9960,12126,21627,21629,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.9835196,7.9026198,0,16,6,18.587376,0,3,3,2021,8,1,33,21,1,1,0,9.3934631,9.3934631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.44,54.26,50.05,36.01,8.333333333333334,2,3,0,0,10,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9960,12126,21628,-9,21629,21627,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.70697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9960,12126,21629,21627,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.0431395,8.4542465,0,16,-6,-31.45672,0,3,3,2021,9,0,37,38,1,0,0,11.355117,11.355117,0,0,0,0,0,0,0,0,1,1,0,0,0,50.05,36.01,55.44,54.26,6.666666666666667,2,3,0,0,13,7,4,1,617.5,135740.19,75026.055,188445.45,59641.844,1167.9712,2697.583,2743.8811 +9961,12127,21630,-9,21632,21634,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.9882,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21631,-9,21632,21634,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1115.0118,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21632,21634,-9,-9,1,0,39,0,3,0,2,2,-9,0,4,0,0,0,9,2,27.942961,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21633,-9,21632,21634,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-985.86206,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12127,21634,21632,-9,-9,1,1,37,0,3,0,3,3,-9,0,4,8.1261892,8.2071199,0,9,-2,126.37587,0,-9,-9,2021,8,0,42,36,1,0,0,7.9177704,7.9177704,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.37,56.93,8.333333333333334,1,1,0,0,10,12,3,0,713,763.94763,-6013.9624,0,0,0,-87.156052,2404.5916 +9961,12128,21635,-9,21632,21634,1,1,18,0,3,0,2,2,-9,0,4,7.6113653,7.573638,0,0,0,-1029.8413,0,2,3,2021,7,0,36,3,1,0,1,7.5931821,7.5931821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.99,56.77,-9,-9,8.333333333333334,1,1,0,0,5,12,3,0,342,7765.7407,-20800.861,0,0,6234.6675,0,928.40826 +9962,12129,21636,21637,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8249741,8.1532555,7,1,9.0327845,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.7972417,8.3096294,60.29,52.11,57.16,56.15,8.333333333333334,1,1,0,0,7,9,3,1,1151,1340002,615142.06,505542.06,0,0,0,1267.2979 +9962,12129,21637,21636,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,5.820097,5.5014081,45,-1,68.682014,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4644442,5.823523,57.16,56.15,60.29,52.11,8.333333333333334,1,1,0,0,0,9,3,1,1151,1340002,615142.06,505542.06,0,0,0,1267.2979 +9963,12130,21638,21639,-9,-9,1,1,33,1,2,0,3,3,-9,0,4,8.3605976,8.5730915,0,5,3,25.244339,0,-9,-9,2021,8,0,13,55,1,0,0,47.226345,47.226345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,7,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9963,12130,21639,21638,-9,-9,1,0,30,1,2,0,1,1,-9,0,5,7.4133644,7.4475222,0,5,-3,187.55974,0,3,2,2021,6,0,19,19,1,0,0,10.91755,10.91755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,9,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9963,12130,21640,-9,21639,21638,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.62653,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9963,12130,21641,-9,21639,21638,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.2872,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,477.5,49399.18,-11313.285,207206.23,83259.266,7189.958,0,2700.6072 +9964,12131,21642,21643,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,0,0,34,-2,108.57881,0,2,2,2021,12,0,0,37,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,52.54,54.24,5,1,1,1,0,10,4,3,0,566,462492.63,416527.19,151564.02,38052.301,0,0,2055.7307 +9964,12131,21643,21642,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9882131,8.1179724,0,40,2,7.8740149,0,-9,-9,2021,6,0,37,37,1,0,0,8.9183807,8.9183807,0,0,0,0,0,0,0,0,1,1,0,.011620779,0,52.54,54.24,39.98,36.02,6.666666666666667,1,1,0,0,15,4,3,0,566,462492.63,416527.19,151564.02,38052.301,0,0,2055.7307 +9964,12132,21644,-9,21643,21642,1,0,20,0,0,0,2,2,-9,0,4,7.0064082,6.9188247,0,0,0,-1048.6288,0,3,2,2021,12,0,16,19,1,0,1,7.2316499,7.2316499,0,0,0,0,0,0,0,0,1,1,0,7.0916543,0,37.28,62.32,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,582,-40325.852,0,0,0,0,0,628.33356 +9965,12133,21645,-9,21647,21646,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1010.4936,-9,1,1,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.8,59.76,-9,-9,6.666666666666667,2,3,0,0,0,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9965,12133,21646,21647,-9,-9,1,1,47,0,2,0,1,1,-9,0,3,9.0204334,9.1049175,0,20,5,-27.187586,0,2,2,2021,12,1,35,35,1,1,0,28.900791,28.900791,.05,.05,0,0,0,0,0,0,1,1,0,4.5158796,0,41.17,52.68,57.52,42.6,6.666666666666667,2,3,0,0,8,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9965,12133,21647,21646,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,8.1627502,8.2277403,0,20,-5,16.200998,0,2,2,2021,3,0,40,40,1,0,0,8.8797235,8.8797235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.52,42.6,41.17,52.68,10,2,3,0,0,10,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9965,12133,21648,-9,21647,21646,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.28424,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,780.5,767044.56,151081.84,711614.56,224488.58,0,0,5202.189 +9966,12134,21649,21650,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,0,0,35,-6,-23.373146,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3081551,0,53.98,42.84,57.06,57.76,8.333333333333334,1,1,0,0,0,7,4,1,1146.5,1905024.8,1161948.8,698180.63,0,6867.832,0,2645.1255 +9966,12134,21650,21649,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.7685928,8.3162107,35,6,-48.10294,0,3,3,2021,6,0,0,19,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0066724,8.5906363,57.06,57.76,53.98,42.84,10,1,1,0,0,10,7,4,1,1146.5,1905024.8,1161948.8,698180.63,0,6867.832,0,2645.1255 +9967,12135,21651,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.4028611,7.5352407,0,0,0,-1039.1206,0,3,3,2021,10,0,24,30,1,0,0,9.6161633,9.6161633,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,29.18,-9,-9,1.666666666666667,1,1,0,1,10,13,3,0,801,265623.59,114307.02,0,0,1091.2982,0,965.65155 +9967,12136,21652,-9,21651,-9,1,1,25,0,0,0,2,2,-9,0,4,8.2117214,8.467555,0,0,0,-883.32892,0,2,-9,2021,11,0,98,52,1,0,1,4.4329762,4.4329762,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,465,-170062.19,76961.711,0,0,9976.041,0,1333.0181 +9968,12137,21653,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-994.73956,0,3,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.08,24.12,-9,-9,0,1,1,0,1,0,12,2,0,461,-64784.66,0,0,0,0,0,1857.845 +9969,12138,21654,21655,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,45,-1,-236.11075,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.6830022,0,51.3,30.49,63.5,33.23,10,1,1,0,0,0,6,2,1,882,453089.53,265975.97,145502.16,0,0,0,1781.3662 +9969,12138,21655,21654,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,7.1183114,7.221395,44,1,45.718048,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7957339,7.2904096,63.5,33.23,51.3,30.49,8.333333333333334,1,1,0,0,0,6,2,1,882,453089.53,265975.97,145502.16,0,0,0,1781.3662 +9970,12139,21656,-9,21657,21659,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.7106,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9970,12139,21657,21659,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,13,-8,-73.296623,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,56.41,48.18,8.333333333333334,2,3,1,0,5,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9970,12139,21658,-9,21657,21659,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-993.6474,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9970,12139,21659,21657,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,7.7657413,7.6781812,0,13,8,114.16642,0,1,1,2021,7,1,40,35,1,1,0,5.9089742,5.9089742,0,0,.05,0,0,0,0,0,1,0,1,0,0,56.41,48.18,51.83,57.2,8.333333333333334,2,3,0,0,11,8,2,1,617.5,310092.97,105588.15,301179.03,85691.813,0,0,1319.4878 +9971,12140,21660,-9,21661,21663,1,0,25,0,2,0,2,2,-9,0,4,7.8784318,8.0500774,0,0,0,-1062.0901,0,2,1,2021,9,0,35,35,1,0,1,9.2374611,9.2374611,0,0,0,0,0,0,0,0,1,1,0,0,0,55,47.5,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,482,-33254.074,0,0,0,1879.8618,0,918.11639 +9971,12141,21661,21663,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,7.4559541,7.3379455,5.7661858,6,-1,-8.3487091,0,2,3,2021,13,4,21,21,1,4,0,8.4960709,8.4960709,0,0,.05,0,0,0,0,0,1,1,0,6.2486787,0,40.71,62.41,54.96,53.17,6.666666666666667,1,1,0,0,8,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9971,12141,21662,-9,21661,21663,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.13763,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9971,12141,21663,21661,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,8.977375,8.9949617,0,6,1,-58.195637,0,-9,-9,2021,6,0,60,60,1,0,0,24.874313,24.874313,.05,.05,.05,0,0,0,0,0,1,1,0,3.3225589,0,54.96,53.17,40.71,62.41,8.333333333333334,1,1,0,0,10,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9971,12141,21664,-9,21661,21663,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1170.9841,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,304,354242.19,120718.73,240710.91,43057.563,0,0,4937.2402 +9972,12142,21665,-9,21666,21668,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.4523,-9,1,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9972,12142,21666,21668,-9,-9,1,0,28,1,2,0,1,1,-9,0,5,7.252677,7.306396,0,3,-3,-56.371635,0,3,2,2021,6,0,18,28,1,0,0,10.958623,10.958623,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,57.16,56.15,10,1,1,0,0,7,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9972,12142,21667,-9,21666,21668,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.2281,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9972,12142,21668,21666,-9,-9,1,1,31,1,2,0,3,3,-9,0,4,8.1364889,8.3870144,0,3,3,-139.80045,0,-9,-9,2021,7,0,22,72,1,0,0,18.209339,18.209339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.43,58.05,8.333333333333334,1,1,0,0,5,12,4,0,572.5,335608.78,183853.06,254654.3,102878.96,0,0,2970.1572 +9973,12143,21669,21670,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,7.3990517,7.5261683,0,8,2,-19.914114,0,2,2,2021,12,1,21,20,1,1,0,11.275059,11.275059,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,57,1.666666666666667,1,1,0,0,10,13,4,1,1301,213360.34,30600.254,161934.47,100779.51,0,383.82278,3137.7664 +9973,12143,21670,21669,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,8.5920134,8.5112133,0,8,-2,32.435551,-9,-9,-9,2021,10,0,12,0,1,1,0,37.932552,37.932552,.05,.05,0,0,0,0,0,0,1,1,0,4.6852546,0,50,57,57.06,57.76,7,4,1,0,0,1,13,4,1,1301,213360.34,30600.254,161934.47,100779.51,0,383.82278,3137.7664 +9973,12143,21671,-9,21669,21670,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.03162,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1301,213360.34,30600.254,161934.47,100779.51,0,383.82278,3137.7664 +9974,12144,21672,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.1417956,7.3928452,0,0,0,-959.62299,0,2,2,2021,22,10,40,30,1,10,0,4.0393476,4.0393476,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.78,41.13,-9,-9,3.333333333333333,2,3,0,0,9,2,3,1,252,131458.73,54636.738,0,0,0,0,1074.3802 +9975,12145,21673,21674,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.0965977,8.5889883,8.0822802,9,-2,-6.1369095,0,-9,-9,2021,11,0,28,25,1,2,0,5.2122264,5.2122264,0,0,0,0,0,0,0,0,1,1,0,0,8.2191477,49,48,46.33,50.4,7,1,1,0,0,1,10,4,1,308,2363879,1795374.6,567823.69,455285.88,0,0,4267.4355 +9975,12145,21674,21673,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,6.1747236,7.1635876,7.245532,20,2,-105.48149,0,3,2,2021,15,5,5,37,1,5,0,13.142694,13.142694,0,0,0,0,0,0,0,0,1,1,0,7.36656,0,46.33,50.4,49,48,8.333333333333334,1,1,0,0,11,10,4,1,308,2363879,1795374.6,567823.69,455285.88,0,0,4267.4355 +9976,12146,21675,21676,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.1175718,8.3177843,44,0,111.75478,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2279444,46.73,54.33,60.12,54.8,8.333333333333334,1,1,0,0,2,2,5,1,264,1685679.6,894637.38,432190.59,0,0,0,5921.0581 +9976,12146,21676,21675,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.7545147,8.3553658,44,0,15.723365,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6963353,8.838748,60.12,54.8,46.73,54.33,8.333333333333334,1,1,0,0,0,2,5,1,264,1685679.6,894637.38,432190.59,0,0,0,5921.0581 +9977,12147,21677,-9,21678,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.7609,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,0,929,242386.25,221608.47,155170.31,0,0,0,1702.6116 +9977,12147,21678,-9,-9,-9,1,0,42,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1013.6319,0,3,3,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,2.7930415,42,1,1,0,0,0,16.76,52.18,-9,-9,0,2,3,1,1,4,6,1,0,929,242386.25,221608.47,155170.31,0,0,0,1702.6116 +9977,12148,21679,-9,21678,-9,1,1,21,0,1,0,2,2,-9,0,3,6.5262146,6.2062311,0,0,0,-1127.0133,0,2,2,2021,2,0,16,16,1,0,1,5.0345936,5.0345936,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,37.02,-9,-9,0,2,3,0,0,5,6,2,0,389,-157344.5,0,0,0,0,0,-520.94305 +9977,12149,21680,-9,21678,-9,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-932.23279,-9,2,-9,2021,10,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.61,48.71,-9,-9,5,2,3,0,0,0,6,1,0,424,-143569.38,0,0,0,0,0,0 +9978,12150,21681,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.7461753,7.6576338,0,0,0,-966.55066,0,3,3,2021,14,2,30,40,1,2,0,7.9048839,7.9048839,0,0,0,0,0,0,0,0,1,0,1,0,0,56.7,32.47,-9,-9,6.666666666666667,1,1,0,1,10,6,3,0,1658,112402.55,-139291.75,0,0,0,0,157.12421 +9978,12151,21682,-9,21681,-9,1,0,23,0,0,0,2,2,-9,0,3,7.8551235,8.0383129,0,0,0,-947.57843,-9,2,-9,2021,14,2,45,0,1,2,1,6.234859,6.234859,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.1,55.1,-9,-9,6.666666666666667,1,1,0,0,5,6,4,0,599,-161729.27,-74106.125,0,0,0,0,1822.9524 +9979,12152,21683,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.4945951,4.4507599,0,0,-939.69556,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,7.9139328,0,0,1,1,0,0,4.3718367,37.67,27.38,-9,-9,5,1,1,0,0,2,2,2,0,310,-46642.34,71172.977,0,0,0,0,611.1897 +9980,12153,21684,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.9394369,9.1175966,0,0,0,-976.49695,0,3,3,2021,9,0,37,37,1,0,0,27.616516,27.616516,0,0,0,0,0,0,0,0,0,0,0,5.701489,0,47.09,58.02,-9,-9,6.666666666666667,1,1,0,0,7,9,5,1,559,167168.48,163787.3,199207.55,0,0,0,2587.043 +9981,12154,21685,21686,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.6892624,8.6602926,0,6,2,-29.925287,0,-9,-9,2021,3,0,50,50,1,0,0,10.448428,10.448428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.56,43.2,43.44,39.31,8.333333333333334,4,2,0,0,5,7,5,1,657,1085333.5,485277.13,539592,75669.102,0,0,4545.6172 +9981,12154,21686,21685,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.4974566,8.8042545,0,25,-2,4.1472263,0,-9,-9,2021,15,6,58,37,1,6,0,13.866421,13.866421,0,0,0,0,0,0,0,0,0,0,0,0,0,43.44,39.31,61.56,43.2,8.333333333333334,4,2,0,0,11,7,5,1,657,1085333.5,485277.13,539592,75669.102,0,0,4545.6172 +9982,12155,21687,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.1754951,8.1162024,0,0,0,-980.32813,0,3,2,2021,6,1,23,23,1,1,0,17.282398,17.282398,.05,.05,0,0,0,0,0,2,0,0,0,3.3201158,0,48.4,53.5,-9,-9,8.333333333333334,1,1,0,0,7,7,4,1,471,378187.81,323424.38,0,0,0,0,254.47025 +9983,12156,21688,-9,21690,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-917.91766,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,763,423978.19,371411.66,249401.86,176696.41,15458.155,0,4621.7808 +9983,12156,21689,21690,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,9.5504742,9.5547686,0,1,0,-34.676464,0,1,2,2021,9,0,60,50,1,0,0,25.090616,25.090616,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,763,423978.19,371411.66,249401.86,176696.41,15458.155,0,4621.7808 +9983,12156,21690,21689,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.4739976,7.3532047,6.3232946,1,0,-18.163803,-9,-9,-9,2021,8,0,27,0,1,0,0,9.6573544,9.6573544,.05,.05,0,0,0,0,0,0,1,1,0,6.2266836,0,57.16,56.15,41.17,59.31,10,1,1,0,0,3,12,5,1,763,423978.19,371411.66,249401.86,176696.41,15458.155,0,4621.7808 +9984,12157,21691,21692,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,7.6437144,7.7689266,51,2,63.604317,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5201559,7.7544956,59.46,46.99,56.92,49.39,8.333333333333334,1,1,0,0,1,4,4,1,785,1468733.5,1110227,242076.25,0,0,0,4112.54 +9984,12157,21692,21691,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.7975459,7.5573039,51,-2,74.964561,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1159668,7.7834058,56.92,49.39,59.46,46.99,8.333333333333334,1,1,0,0,0,4,4,1,785,1468733.5,1110227,242076.25,0,0,0,4112.54 +9985,12158,21693,21694,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.6824236,8.7927132,0,30,2,100.64211,0,2,2,2021,6,0,45,45,1,0,0,17.80332,17.80332,.05,.05,0,0,0,0,0,0,0,0,0,3.7697201,0,57.16,56.15,53.3,55.06,8.333333333333334,1,1,0,0,11,5,5,1,588.5,495526.13,378747.94,219799.56,105179.05,0,3717.4058,3219.605 +9985,12158,21694,21693,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0477905,7.9714923,0,32,-2,33.771927,0,2,1,2021,8,0,37,40,1,0,0,10.328551,10.328551,.05,.05,0,0,0,0,0,0,0,0,0,3.8834462,0,53.3,55.06,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,588.5,495526.13,378747.94,219799.56,105179.05,0,3717.4058,3219.605 +9985,12159,21695,-9,21694,21693,1,0,25,0,0,0,1,1,-9,0,3,7.8150611,8.2174444,0,0,0,-1042.6768,0,2,2,2021,8,0,45,40,1,0,1,6.6899562,6.6899562,0,0,0,0,0,0,0,0,0,0,0,3.4023943,0,36.13,54.74,-9,-9,6.666666666666667,1,1,0,0,5,5,4,1,993,-54335.418,0,0,0,0,0,1566.9966 +9986,12160,21696,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,0,0,0,0,0,-966.61456,-9,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,4,2,1,0,628,-37478.719,0,0,0,0,0,146.78851 +9986,12160,21697,-9,21696,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.0105,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,1,0,628,-37478.719,0,0,0,0,0,146.78851 +9987,12161,21698,-9,-9,-9,1,0,38,0,2,0,1,1,-9,1,5,6.4967427,7.1710334,5.6655402,0,0,-894.40167,0,2,2,2021,5,0,21,32,1,0,0,4.8086267,4.8086267,.05,.05,0,0,0,0,0,105,1,1,0,6.1200557,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,8,4,2,1,491.66666,235439.25,43387.25,118750.52,0,0,0,2200.0725 +9987,12161,21699,-9,21698,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.20404,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,2,1,491.66666,235439.25,43387.25,118750.52,0,0,0,2200.0725 +9987,12161,21700,-9,21698,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.5967,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,1,491.66666,235439.25,43387.25,118750.52,0,0,0,2200.0725 +9988,12162,21701,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9469481,6.3614316,0,0,-1013.1688,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,4.6749668,0,50.069458,0,1,1,0,6.9948487,6.506176,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,632,1730400.1,1400208.5,59162.563,0,0,0,1651.4299 +9989,12163,21702,21703,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,7.8554106,7.9888935,0,31,0,-16.50588,0,3,3,2021,10,0,30,40,1,0,0,12.051762,12.051762,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,62.39,56.71,45.65,33.48,8.333333333333334,1,1,0,0,7,2,4,1,904,487597.91,129041.87,374165.06,-1489.9741,0,0,1636.1998 +9989,12163,21703,21702,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,7.2656331,7.2226496,5.5942292,31,0,169.17554,0,2,2,2021,7,0,20,0,1,0,0,9.8283396,9.8283396,0,0,0,0,0,0,0,0,0,0,0,0,5.7690697,45.65,33.48,62.39,56.71,6.666666666666667,1,1,0,0,10,2,4,1,904,487597.91,129041.87,374165.06,-1489.9741,0,0,1636.1998 +9990,12164,21704,21706,-9,-9,1,0,42,0,2,0,2,2,-9,1,5,6.7798772,6.7643929,0,6,-1,-74.516914,0,2,2,2021,10,0,14,16,1,0,0,6.2729964,6.2729964,.05,.05,0,0,0,0,0,112,1,1,0,0,0,22.88,65.82000000000001,51,56,0,1,1,0,0,9,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9990,12164,21705,-9,21704,21706,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.00122,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9990,12164,21706,21704,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5741396,8.3350868,0,6,1,-17.052233,0,-9,-9,2021,9,0,1,35,1,1,0,726.45477,726.45477,.05,.05,0,0,0,0,0,0,1,1,0,2.1310365,0,51,56,22.88,65.82000000000001,8,1,1,0,0,1,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9990,12164,21707,-9,21704,21706,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.365,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,492.5,155093.64,80116.484,248823.78,133529.03,0,0,3017.6672 +9991,12165,21708,21709,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,9.4315033,9.1312952,0,6,2,-23.088469,0,-9,-9,2021,14,3,35,42,1,3,0,32.030045,32.030045,.05,.05,0,0,0,0,0,0,0,0,0,4.2076683,0,51.83,57.2,46.44,59.62,5,1,1,0,0,9,10,5,1,1111.5,427968.75,69622.539,486501.13,186471.69,0,0,4872.939 +9991,12165,21709,21708,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.312171,8.3357334,0,6,-2,4.2504392,0,2,2,2021,6,0,39,38,1,0,0,11.540323,11.540323,0,0,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,51.83,57.2,8.333333333333334,1,1,0,0,7,10,5,1,1111.5,427968.75,69622.539,486501.13,186471.69,0,0,4872.939 +9992,12166,21710,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.9587259,5.9640574,0,0,-991.81189,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,9.5836391,0,0,1,1,0,0,5.6736369,38.94,54.95,-9,-9,5,1,1,0,0,0,10,2,0,767,225143.48,5904.0649,151296.14,0,0,0,917.02655 +9993,12167,21711,21712,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,0,0,0,6,1,21.333406,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.64439702,0,44.36,54.04,50,57,6.666666666666667,1,1,0,0,0,4,3,0,329.66666,409141.56,395590.56,0,0,0,0,1339.2422 +9993,12167,21712,21711,-9,-9,1,1,35,0,1,0,3,3,-9,0,4,7.9939618,7.718276,0,6,-1,38.088741,0,-9,-9,2021,10,0,47,48,1,1,0,5.5855198,5.5855198,.05,.05,0,0,0,0,0,0,1,1,0,.0460159,0,50,57,44.36,54.04,7,1,1,0,0,7,4,3,0,329.66666,409141.56,395590.56,0,0,0,0,1339.2422 +9993,12167,21713,-9,21711,21712,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.4849,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,0,329.66666,409141.56,395590.56,0,0,0,0,1339.2422 +9994,12168,21714,21715,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,11,-8,15.130894,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.42,50.19,57.73,54.53,6.666666666666667,1,1,0,0,4,2,2,1,1241.5,481138.16,0,398597.63,0,0,0,1642.4504 +9994,12168,21715,21714,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.2937679,4.3000827,11,8,33.80542,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.12399954,0,1,1,0,4.205421,4.2624893,57.73,54.53,49.42,50.19,8.333333333333334,1,1,0,0,1,2,2,1,1241.5,481138.16,0,398597.63,0,0,0,1642.4504 +9995,12169,21716,21718,21719,-9,1,0,46,1,0,0,1,1,-9,1,1,0,0,0,4,-6,-54.49461,0,2,2,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.2,32.63,56.19,46.16,5,1,1,0,0,8,1,4,0,640.66669,502397.97,260200.08,79093.156,41828.898,0,0,2016.3385 +9995,12169,21717,-9,21716,21718,1,0,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-947.41998,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,4,6,-9,0,0,1,4,0,640.66669,502397.97,260200.08,79093.156,41828.898,0,0,2016.3385 +9995,12169,21718,21716,-9,-9,1,1,52,1,0,0,3,3,-9,0,2,8.4493484,8.5455284,0,4,6,17.584349,0,-9,2,2021,6,0,40,40,1,0,0,13.409463,13.409463,.05,.05,0,0,0,0,0,0,1,0,1,0,0,56.19,46.16,18.2,32.63,6.666666666666667,1,1,0,0,13,1,4,0,640.66669,502397.97,260200.08,79093.156,41828.898,0,0,2016.3385 +9995,12170,21719,-9,-9,21718,1,0,22,1,0,0,2,2,-9,1,1,0,0,0,0,0,-1022.4304,0,-9,3,2021,36,12,0,20,3,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,11.26,42.52,-9,-9,0,1,1,0,0,3,1,1,0,1178,-38161.254,0,0,0,0,0,943.85931 +9996,12171,21720,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,3.6738894,3.5092521,0,0,-993.24286,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,3.4068532,37.6,14.31,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,84,235891.38,8136.1304,0,0,0,-1521.2212,2073.9272 +9997,12172,21721,21722,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.8778758,7.6986709,0,8,1,21.675196,0,3,3,2021,11,0,21,21,1,0,0,10.051124,10.051124,0,0,0,0,0,0,0,2,1,1,0,0,0,46.67,55.57,52,56,6.666666666666667,1,1,0,0,11,6,3,1,2222,301675.84,132656.2,208112.38,71211.75,0,0,2465.7966 +9997,12172,21722,21721,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.0923424,7.8763995,0,8,-1,-75.049217,-9,2,2,2021,9,0,60,0,1,1,0,5.4626007,5.4626007,.05,.05,.05,0,0,0,0,0,1,1,0,6.465301,0,52,56,46.67,55.57,8,1,1,0,0,1,6,3,1,2222,301675.84,132656.2,208112.38,71211.75,0,0,2465.7966 +9997,12172,21723,-9,21721,21722,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.03394,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,2222,301675.84,132656.2,208112.38,71211.75,0,0,2465.7966 +9998,12173,21724,21725,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.023344,9.1726627,7.8783193,36,1,-51.600822,0,3,2,2021,7,0,47,50,1,0,0,17.09347,17.09347,.05,.05,0,0,0,0,0,2,0,0,0,3.3348935,7.9415784,61.12,51.57,57.16,56.15,1.666666666666667,1,1,0,0,10,6,5,1,755.5,894462.81,671713.19,265061.72,124417.02,0,0,6230.0073 +9998,12173,21725,21724,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.2547569,8.1991253,0,36,-1,-24.101593,0,3,3,2021,8,0,38,38,1,0,0,14.431886,14.431886,0,0,0,0,0,0,0,0,0,0,0,6.8839192,0,57.16,56.15,61.12,51.57,10,1,1,0,0,10,6,5,1,755.5,894462.81,671713.19,265061.72,124417.02,0,0,6230.0073 +9999,12174,21726,21727,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,0,0,0,10,-1,64.814453,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.7,33.47,50.28,51.35,6.666666666666667,1,1,0,0,10,11,5,1,505.5,868771.38,442816.5,564015,206659.25,0,925.4375,1596.6367 +9999,12174,21727,21726,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,8.963376,8.7730865,0,10,1,48.819271,0,2,2,2021,8,0,42,38,1,0,0,21.719849,21.719849,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,53.7,33.47,5,1,1,0,0,11,11,5,1,505.5,868771.38,442816.5,564015,206659.25,0,925.4375,1596.6367 +10000,12175,21728,21729,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.0503283,9.0949354,0,3,-3,-66.765175,0,1,2,2021,26,12,44,44,1,12,0,24.688475,24.688475,0,0,0,0,0,0,0,2,0,0,0,6.9361067,0,43.77,26.98,36.66,36.04,8.333333333333334,1,1,0,0,13,13,5,1,1904,303107.44,229700.41,130252.04,110054.95,7748.7451,3395.8408,5520.9209 +10000,12175,21729,21728,-9,-9,1,1,53,0,0,0,3,3,-9,0,2,8.3755608,7.9711471,0,3,3,-6.0735111,0,-9,-9,2021,20,8,20,16,1,8,0,22.764448,22.764448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.66,36.04,43.77,26.98,8.333333333333334,1,1,0,0,3,13,5,1,1904,303107.44,229700.41,130252.04,110054.95,7748.7451,3395.8408,5520.9209 +10001,12176,21730,21731,-9,-9,1,0,45,0,1,0,3,3,-9,0,5,7.919982,7.6381083,0,1,-2,72.38311,-9,-9,-9,2021,6,0,30,0,1,0,0,8.9590578,8.9590578,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,38.35,57.86,10,1,1,0,0,8,2,5,1,1129.3334,452294.69,166837.13,180916.36,49327.773,0,11328.417,3570.3743 +10001,12176,21731,21730,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.9218235,8.9269447,0,1,2,-4.7917566,-9,-9,-9,2021,9,0,60,0,1,0,0,11.878262,11.878262,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.35,57.86,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,1129.3334,452294.69,166837.13,180916.36,49327.773,0,11328.417,3570.3743 +10001,12176,21732,-9,21730,21731,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.117,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,1129.3334,452294.69,166837.13,180916.36,49327.773,0,11328.417,3570.3743 +10002,12177,21733,21734,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.254509,8.1266012,0,7,-1,-20.770912,0,-9,-9,2021,25,11,82,40,1,11,0,6.2866759,6.2866759,0,0,0,0,0,0,0,0,0,0,0,0,0,32.09,64.06,42.3,57.48,8.333333333333334,1,1,0,0,2,12,4,1,785.5,190908.38,0,169433.44,69099.992,0,0,2522.2251 +10002,12177,21734,21733,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.4636703,7.7675261,0,7,1,-31.66361,0,3,3,2021,14,3,28,36,1,3,0,9.292758,9.292758,0,0,0,0,0,0,0,7,0,0,0,5.6692839,0,42.3,57.48,32.09,64.06,5,1,1,0,0,11,12,4,1,785.5,190908.38,0,169433.44,69099.992,0,0,2522.2251 +10003,12178,21735,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.0099125,8.0280609,0,0,0,-818.73749,-9,-9,-9,2021,11,0,36,0,1,2,0,9.9473295,9.9473295,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,10,13,4,1,144,186194.41,224813.64,0,0,0,0,835.31512 +10004,12179,21736,21737,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,7.9198642,8.0184402,9,8,42.943249,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4427176,7.9584026,37.36,53.06,59.54,46.05,10,1,1,0,0,1,10,4,1,141,1553450.6,963263.25,405909.66,0,0,0,3128.8535 +10004,12179,21737,21736,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.1150193,7.4369116,9,-8,57.515541,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3597858,7.144568,59.54,46.05,37.36,53.06,10,1,1,0,0,9,10,4,1,141,1553450.6,963263.25,405909.66,0,0,0,3128.8535 +10005,12180,21738,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,8.3932829,8.140707,0,0,0,-874.11029,-9,2,2,2021,10,0,42,0,1,0,0,12.504588,12.504588,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,10,1,1,0,0,10,9,5,1,122,775198.94,612337.63,0,0,0,6170.3433,2411.3333 +10006,12181,21739,21740,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,7.3627872,7.715148,38,-1,12.970858,0,2,1,2021,4,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.7662947,7.2627645,53.44,55.06,60.12,54.8,8.333333333333334,1,1,0,0,10,12,4,1,1258.5,2367338,1416611.5,266799.25,0,0,0,2003.7029 +10006,12181,21740,21739,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,8.1131506,7.9220533,38,1,-234.12038,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.4515872,8.401639,60.12,54.8,53.44,55.06,8.333333333333334,1,1,0,0,12,12,4,1,1258.5,2367338,1416611.5,266799.25,0,0,0,2003.7029 +10007,12182,21741,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1079.923,0,3,2,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,38.15,34.13,-9,-9,5,1,1,0,0,0,10,1,0,45,20832.412,-73406.125,0,0,0,0,2136.9543 +10007,12183,21742,-9,21741,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9416556,8.2183838,0,0,0,-922.58984,0,2,3,2021,9,0,40,40,1,0,1,8.402504,8.402504,0,0,0,0,0,0,0,0,1,0,1,0,0,52,54.51,-9,-9,5,1,1,0,0,7,10,4,0,669,13924.597,0,0,0,-1279.9307,0,261.37122 +10008,12184,21743,21746,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,9.1661854,9.3757286,0,11,-3,-32.655918,0,1,1,2021,12,4,35,35,1,4,0,37.660313,37.660313,0,0,0,0,0,0,0,0,0,0,0,2.2771342,0,41.72,57.71,57.16,56.15,8.333333333333334,2,3,0,0,9,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10008,12184,21744,-9,21743,21746,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5667,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10008,12184,21745,-9,21743,21746,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.6171,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10008,12184,21746,21743,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.924037,9.2295713,0,11,3,18.120285,0,-9,-9,2021,6,0,45,41,1,0,0,24.188034,24.188034,0,0,0,0,0,0,0,0,0,0,0,1.2188056,0,57.16,56.15,41.72,57.71,10,1,1,0,0,13,7,5,1,675,87766.953,0,0,0,88715.664,9744.1074,8171.3257 +10009,12185,21747,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1060.6606,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,38.46,46.19,-9,-9,6.666666666666667,1,1,1,1,0,2,1,0,225,0,0,0,0,0,0,272.49268 +10009,12186,21748,-9,21747,-9,1,0,23,0,0,0,2,2,-9,0,2,6.7724223,6.8744111,0,0,0,-919.05243,0,3,-9,2021,20,8,14,17,1,8,1,7.7725267,7.7725267,0,0,0,0,0,0,0,0,1,0,1,0,0,19.8,46.73,-9,-9,3.333333333333333,4,2,0,0,5,2,2,0,467,53881.277,21567.775,0,0,2413.604,0,922.89349 +10010,12187,21749,21750,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,2.7241156,2.9245396,46,1,-63.451157,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.7241926,60.02,56.42,57.65,56.13,10,1,1,0,0,0,6,3,1,890.5,1042871.1,505421,367472.13,0,5913.5405,0,2510.5195 +10010,12187,21750,21749,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.0424414,8.1277571,46,-1,-103.39485,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5321007,7.9616046,57.65,56.13,60.02,56.42,8.333333333333334,1,1,0,0,9,6,3,1,890.5,1042871.1,505421,367472.13,0,5913.5405,0,2510.5195 +10011,12188,21751,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1040.2878,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,-9,-9,8,2,3,0,0,0,7,2,0,813,143621.8,0,0,0,0,0,278.50989 +10011,12189,21752,-9,21751,-9,1,1,31,0,0,0,1,1,-9,0,5,8.8748064,8.5781384,0,0,0,-991.20679,0,3,-9,2021,12,0,49,49,1,0,0,16.466166,16.466166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.17,64.27,-9,-9,5,2,3,0,0,7,7,5,0,546,333807.09,24122.018,284607.91,95011.867,0,0,2253.322 +10012,12190,21753,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,5.4720998,5.3162251,0,0,-992.67963,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.532393,52.23,55.6,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,514,-140897.67,0,0,0,0,0,1137.2273 +10013,12191,21754,-9,-9,-9,1,1,59,0,0,0,1,1,-9,1,1,7.9463744,8.1466312,0,0,0,-1057.3386,0,3,3,2021,17,6,40,40,1,6,0,11.162317,11.162317,0,0,0,0,0,0,0,0,1,1,0,0,0,40.49,33.09,-9,-9,1.666666666666667,1,1,0,0,12,7,4,1,568,1424918,713768,328702.44,0,0,0,1230.8386 +10014,12192,21755,21756,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.90236,5.9951019,11,1,.58318013,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.1150026,5.764205,59.31,49.81,45.58,31.91,8.333333333333334,1,1,0,0,0,4,2,0,569,248930.69,240676.5,145815.86,0,0,659.43652,1936.6045 +10014,12192,21756,21755,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.6496,5.299099,11,-1,-43.13792,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5816929,5.2949953,45.58,31.91,59.31,49.81,8.333333333333334,1,1,0,0,0,4,2,0,569,248930.69,240676.5,145815.86,0,0,659.43652,1936.6045 +10015,12193,21757,21758,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.8925219,7.9194365,0,11,2,-110.73041,0,2,2,2021,11,0,29,29,1,0,0,12.388841,12.388841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.68,55.46,55.05,49,5,1,1,0,0,13,7,5,1,1392,183959.17,264861.69,0,0,0,0,3638.9707 +10015,12193,21758,21757,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.8906574,8.7803144,0,11,-2,-148.47017,0,2,1,2021,3,0,35,0,1,0,0,20.830925,20.830925,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.05,49,38.68,55.46,8.333333333333334,1,1,0,0,14,7,5,1,1392,183959.17,264861.69,0,0,0,0,3638.9707 +10016,12194,21759,21760,-9,-9,1,0,26,1,1,0,1,1,-9,0,5,8.6093616,8.3103876,0,6,0,-83.814056,0,-9,-9,2021,6,1,38,51,1,1,0,18.138435,18.138435,.05,.05,0,0,0,0,0,0,1,1,0,2.6525834,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,9,4,4,1,1214.3334,69887.195,34073.836,113317.31,90411.039,2153.6543,0,3124.948 +10016,12194,21760,21759,-9,-9,1,1,35,1,1,0,1,1,-9,0,4,7.7103686,7.8735828,0,6,9,-66.541618,0,2,2,2021,10,0,35,40,1,0,0,9.4385891,9.4385891,.05,.05,.05,0,0,0,0,0,1,1,0,1.8307741,0,57.16,56.15,57.06,57.76,10,1,1,0,0,9,4,4,1,1214.3334,69887.195,34073.836,113317.31,90411.039,2153.6543,0,3124.948 +10016,12194,21761,-9,21759,21760,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-969.68317,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,4,1,1214.3334,69887.195,34073.836,113317.31,90411.039,2153.6543,0,3124.948 +10017,12195,21762,-9,21764,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.5745,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10017,12195,21763,21764,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,7.7381678,8.0157251,0,11,7,13.912887,0,-9,-9,2021,10,0,38,39,1,1,0,7.9817677,7.9817677,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,47,57,8,1,1,0,0,11,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10017,12195,21764,21763,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,0,0,0,11,-7,-4.4738126,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,50,57,7,1,1,0,0,6,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10017,12195,21765,-9,21764,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.0214,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,1,452.5,46554.449,43859.09,0,0,11552.256,5184.8354,2509.8948 +10018,12196,21766,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7370057,7.8769789,0,0,0,-887.80139,0,-9,-9,2021,8,1,40,0,1,1,0,5.1243119,5.1243119,0,0,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,4,2,0,0,2,5,3,0,317,101668.22,0,0,0,0,0,1485.9392 +10019,12197,21767,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.4329777,8.470809,0,0,0,-1047.4054,-9,2,2,2021,8,0,70,0,1,0,0,8.8902245,8.8902245,.05,.05,0,0,0,0,0,7,0,0,0,3.2281959,0,52.29,42.41,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,186,375324.97,385565.31,95523.094,53911.727,0,0,1452.6289 +10019,12198,21768,-9,21767,-9,1,1,23,0,0,0,2,2,-9,0,4,7.6140027,7.560967,0,0,0,-1120.6125,-9,2,-9,2021,10,0,40,0,1,1,1,6.907752,6.907752,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,3,1,2649,57937.258,-64414.91,0,0,0,0,1291.8099 +10020,12199,21769,-9,21770,21772,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.3251,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10020,12199,21770,21772,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.2845492,7.0833206,0,7,-3,25.939758,0,2,2,2021,10,0,30,24,1,0,0,5.9681287,5.9681287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.57,62.68,54.2,57.49,8.333333333333334,1,1,0,0,3,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10020,12199,21771,-9,21770,21772,1,0,16,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1106.5695,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,-9,-9,10,1,1,1,0,0,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10020,12199,21772,21770,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,8.9151525,9.1245775,0,7,3,72.938286,0,2,2,2021,6,1,80,62,1,1,0,11.073196,11.073196,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,43.57,62.68,8.333333333333334,1,1,0,0,9,6,5,1,872.75,252649.88,207977.16,156751.61,71077.531,0,1604.3125,4600.0313 +10021,12200,21773,21774,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.5319219,7.6672463,46,-2,-16.086079,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.4564352,50.42,14.63,62.67,41.67,8.333333333333334,1,1,0,0,0,8,4,1,1073,1769056,960219,456720,0,0,0,4539.75 +10021,12200,21774,21773,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,8.2453442,8.321023,46,2,-121.44938,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.41959,8.1788406,62.67,41.67,50.42,14.63,8.333333333333334,1,1,0,0,0,8,4,1,1073,1769056,960219,456720,0,0,0,4539.75 +10022,12201,21775,-9,21776,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.93323,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,416,96551.125,62759.773,0,0,541.97321,7024.2627,2377.9109 +10022,12201,21776,-9,-9,-9,1,0,45,0,2,0,1,1,-9,1,3,8.1984301,8.2855616,5.3262291,0,0,-949.51459,0,2,3,2021,10,0,22,22,1,0,0,19.95606,19.95606,0,0,0,0,0,0,0,27,1,1,0,5.7567825,0,40.88,48.98,-9,-9,5,1,1,0,0,9,4,3,1,416,96551.125,62759.773,0,0,541.97321,7024.2627,2377.9109 +10023,12202,21777,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,3.8981268,3.702147,0,0,-1087.2961,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3963799,4.2606397,64.84999999999999,21.6,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,472,116856.55,133212.84,0,0,0,0,1029.5355 +10024,12203,21778,-9,21779,-9,1,0,32,0,0,0,2,2,-9,0,3,7.76127,7.6911545,0,0,0,-900.72382,0,2,2,2021,11,2,38,37,1,2,1,5.8770847,5.8770847,.05,.05,0,0,0,0,0,7,1,1,0,.80344957,0,44.19,58.01,-9,-9,3.333333333333333,1,1,0,0,9,4,3,1,666,-77834.859,74162.969,0,0,0,0,1185.3102 +10024,12204,21779,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,5.7629385,5.943326,0,0,-933.35443,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8210063,31.16,24.94,-9,-9,0,1,1,0,1,0,4,2,1,247,322622.53,184736.92,63082.758,0,0,0,997.12335 +10025,12205,21780,-9,21781,21782,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-998.51691,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.66,50.85,-9,-9,5,1,1,0,0,0,5,2,1,1172.3334,310959.06,51666.055,243952.63,40003.176,16181.46,686.25653,1526.1622 +10025,12205,21781,21782,-9,-9,1,0,52,0,1,0,2,2,-9,1,1,0,0,0,18,-1,12.260925,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,60.26,41.6,5,1,1,0,1,0,5,2,1,1172.3334,310959.06,51666.055,243952.63,40003.176,16181.46,686.25653,1526.1622 +10025,12205,21782,21781,-9,-9,1,1,53,0,1,0,3,3,-9,0,2,6.8359661,7.1941109,0,19,1,92.983566,0,3,3,2021,10,1,60,50,1,1,0,2.5255723,2.5255723,.05,.05,.05,0,0,0,0,66,1,1,0,0,0,60.26,41.6,16.04,23.99,6.666666666666667,1,1,0,0,10,5,2,1,1172.3334,310959.06,51666.055,243952.63,40003.176,16181.46,686.25653,1526.1622 +10026,12206,21783,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.8707356,7.6955347,0,0,0,-965.6908,0,3,3,2021,6,1,40,40,1,1,0,6.8693609,6.8693609,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.33,47.36,-9,-9,1.666666666666667,1,1,0,0,9,12,3,0,2201,104934.45,155953.13,100241.01,29508.623,848.8125,0,1090.9854 +10026,12207,21784,-9,21783,-9,1,0,19,0,0,0,2,2,1,1,5,7.2004747,7.1536288,0,0,0,-1103.7604,-9,2,-9,2021,6,0,18,0,1,0,1,5.9254837,5.9254837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,532,8506.3135,0,0,0,0,0,1845.5043 +10027,12208,21785,21786,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,7.9433928,8.4557734,31,6,17.204662,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7224276,8.0208969,44.47,34.13,37.35,51.04,8.333333333333334,1,1,0,0,0,10,3,1,995,1211149.3,328235.56,483340.06,0,0,0,2279.8799 +10027,12208,21786,21785,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,31,-6,-32.205338,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4257598,0,37.35,51.04,44.47,34.13,8.333333333333334,1,1,0,0,0,10,3,1,995,1211149.3,328235.56,483340.06,0,0,0,2279.8799 +10028,12209,21787,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.5824308,5.1160769,0,0,-872.42383,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0327415,5.1774745,41.01,41.97,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,338,163409.63,-130138.02,0,0,0,1310.3605,1466.3324 +10029,12210,21788,21789,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.695116,7.8072658,5,5,3.665504,0,-9,-9,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.30019,7.6243973,51.24,58.84,44.92,57.6,8.333333333333334,1,1,0,0,0,2,4,1,605.5,1921341.6,1371875.6,405259.81,0,0,1025.9492,1528.8528 +10029,12210,21789,21788,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,7.8770895,7.4408793,5,-5,83.155243,-9,2,1,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8823056,7.6479392,44.92,57.6,51.24,58.84,8.333333333333334,1,1,0,0,13,2,4,1,605.5,1921341.6,1371875.6,405259.81,0,0,1025.9492,1528.8528 +10029,12211,21790,-9,21789,21788,1,1,24,0,0,0,1,1,-9,0,5,7.9971514,7.7287674,0,0,0,-1022.4271,-9,1,2,2021,7,1,42,0,1,1,0,8.6451187,8.6451187,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,1434,-100100.59,-112543.73,0,0,0,0,788.72797 +10030,12212,21791,21794,-9,-9,1,1,46,0,2,0,3,3,-9,0,4,7.6821771,7.773241,0,17,3,67.355782,0,3,3,2021,22,6,44,42,1,6,0,7.2354293,7.2354293,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.39,47.19,42.63,45.19,1.666666666666667,2,3,0,1,10,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10030,12212,21792,-9,21794,21791,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.07507,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10030,12212,21793,-9,21794,21791,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.1912,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10030,12212,21794,21791,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.4927502,8.3911905,0,17,-3,8.638401,0,3,3,2021,7,0,38,47,1,0,0,12.347631,12.347631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.63,45.19,32.39,47.19,1.666666666666667,2,3,0,1,10,10,4,1,589.25,226346.44,-6072.1719,236592.38,22721.773,0,1953.4058,2858.9424 +10031,12213,21795,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,6.8225956,7.2567296,0,0,0,-886.56354,-9,-9,-9,2021,10,1,38,0,1,1,0,3.2597787,3.2597787,0,0,0,0,0,0,0,0,0,0,0,1.8510169,0,50.74,46.8,-9,-9,5,1,1,0,0,6,7,2,0,1558,54408.563,0,0,0,0,0,1419.0656 +10032,12214,21796,21799,-9,-9,1,1,24,1,3,0,2,2,-9,0,4,8.5848331,8.6587515,0,2,-5,-84.893646,0,-9,-9,2021,10,0,55,45,1,0,0,9.781476,9.781476,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.44,50.28,38.74,61.79,6.666666666666667,1,1,0,0,7,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21797,-9,21799,21796,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.60468,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21798,-9,21799,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.712,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21799,21796,-9,-9,1,0,29,1,3,0,2,2,-9,0,3,7.1451731,7.2090039,0,2,5,105.68941,0,3,3,2021,13,1,20,37,1,1,0,5.7758517,5.7758517,.05,.05,0,0,0,0,0,0,1,0,1,0,0,38.74,61.79,55.44,50.28,5,1,1,0,0,6,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10032,12214,21800,-9,21799,-9,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-913.27277,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,4,0,756.20001,75820.828,-15123.209,77802.453,58982.348,266.52481,2370.5808,3292.634 +10033,12215,21801,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,6.5877404,6.5644636,0,0,-952.28467,0,3,3,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6332259,41.88,50.35,-9,-9,6.666666666666667,1,1,0,0,4,13,2,1,1250,164549.19,13716.93,192690.75,0,0,0,771.5697 +10034,12216,21802,21803,-9,-9,1,1,28,1,2,0,3,3,-9,1,4,0,0,0,4,6,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,34.79,49.19,8.333333333333334,1,1,1,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10034,12216,21803,21802,-9,-9,1,0,22,1,2,0,2,2,-9,0,3,0,0,0,4,-6,0,0,3,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.79,49.19,54.2,57.49,10,4,2,0,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10034,12216,21804,-9,21803,21802,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.271,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10034,12216,21805,-9,21803,21802,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.64374,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,1,0,862.5,29424.729,-20960.141,0,0,1067.7783,0,2037.0447 +10035,12217,21806,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,2,0,0,0,0,0,-971.92181,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.55,36.21,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,242,-58394.434,0,0,0,1305.255,0,909.19763 +10035,12218,21807,-9,-9,21806,1,1,23,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1126.798,0,-9,3,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,127,0,0,0,0,0,0,468.62708 +10036,12219,21808,21809,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2592745,8.2486372,0,36,-12,-39.528633,0,2,3,2021,9,0,28,30,1,0,0,13.920774,13.920774,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,60.29,52.11,8.333333333333334,1,1,0,0,10,12,4,1,686,781447.88,453255.19,229608.63,0,856.57678,0,2648.104 +10036,12219,21809,21808,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.7962599,6.668293,36,12,-50.838573,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8152368,7.4487581,60.29,52.11,54.2,57.49,10,1,1,0,0,10,12,4,1,686,781447.88,453255.19,229608.63,0,856.57678,0,2648.104 +10037,12220,21810,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,8.3066998,8.4595222,6.6499448,0,0,-1018.526,0,2,2,2021,11,0,48,48,1,0,0,11.188122,11.188122,0,0,.05,0,0,0,0,0,1,1,0,0,6.5446453,58.87,45.76,-9,-9,8.333333333333334,1,1,0,0,12,4,5,1,1661,645319.56,402107.59,235012.06,97830.922,1444.5591,0,1960.1111 +10038,12221,21811,21812,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,33,2,-21.197258,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,59.31,49.81,33.57,51.18,8.333333333333334,1,1,0,0,0,4,3,1,984.5,897070,642579.5,205188.34,0,10482.408,0,2827.3008 +10038,12221,21812,21811,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.6849589,7.8935757,33,-2,-75.263268,0,2,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.4934812,33.57,51.18,59.31,49.81,6.666666666666667,1,1,0,0,5,4,3,1,984.5,897070,642579.5,205188.34,0,10482.408,0,2827.3008 +10039,12222,21813,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.0369186,7.9620857,0,0,0,-1001.1586,0,-9,-9,2021,11,2,37,37,1,2,0,10.192034,10.192034,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.34,60.31,-9,-9,1.666666666666667,1,1,0,0,10,11,4,1,423,718534.13,588431.94,0,0,1285.687,1149.7737,1843.948 +10039,12223,21814,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,0,0,0,0,-989.20703,0,3,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.0792184,0,12.01,68.95,-9,-9,1.666666666666667,1,1,1,0,11,11,1,1,2237,478354.63,138941.89,0,0,0,0,767.38855 +10040,12224,21815,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1007.0314,0,3,3,2021,28,11,0,0,4,11,0,0,0,0,0,0,1,5.7854958,0,66.804283,0,1,1,0,0,0,23.92,31.55,-9,-9,0,1,1,0,0,0,10,1,0,1616,90602.672,-68034.68,0,0,0,0,1131.4521 +10041,12225,21816,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.2544928,7.5492001,0,0,0,-905.26746,0,3,3,2021,12,1,39,38,1,1,0,3.9943364,3.9943364,0,0,.05,0,0,0,0,0,0,0,0,0,0,49.89,39.19,-9,-9,5,1,1,0,0,9,13,3,1,1318,713263.94,65823.375,551810.06,0,0,0,905.54114 +10041,12226,21817,-9,-9,21816,1,0,22,0,0,0,1,1,1,0,4,6.6606998,6.9557652,0,0,0,-789.25732,-9,2,3,2021,10,2,15,0,1,2,1,6.096293,6.096293,.05,.05,0,0,0,0,0,27,0,0,0,0,0,39.93,57.25,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,320,-125826.63,-72089.617,0,0,0,0,536.5246 +10042,12227,21818,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.0531034,8.077302,0,0,0,-1041.7855,0,3,3,2021,12,0,37,37,1,0,0,11.82953,11.82953,0,0,0,0,0,0,0,0,0,0,0,.96220785,0,48.29,52.15,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,950,898146.81,885407.75,0,0,0,0,1330 +10042,12228,21819,-9,21818,-9,1,1,24,0,0,0,2,2,-9,0,3,7.0712147,7.3186812,0,0,0,-960.76758,0,2,-9,2021,18,6,16,17,1,6,1,8.6066608,8.6066608,0,0,0,0,0,0,0,0,0,0,0,0,0,41.99,53.75,-9,-9,1.666666666666667,1,1,0,0,2,11,2,1,676,39015.914,0,0,0,0,0,558.01544 +10043,12229,21820,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,3,8.6288786,8.7007332,0,0,0,-923.46948,0,2,3,2021,11,0,30,30,1,0,1,20.404625,20.404625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,2,3,0,0,5,6,5,1,730,98230.078,86847.727,164645.81,72219.492,0,0,2430.2354 +10044,12230,21821,21823,-9,-9,1,0,29,2,3,0,2,2,-9,0,3,7.1597114,7.167851,0,8,-5,79.688995,0,2,-9,2021,13,1,17,17,1,1,0,7.2252822,7.2252822,0,0,0,0,0,0,0,0,1,1,0,0,0,29.57,58.13,53.33,50.04,6.666666666666667,1,1,0,0,11,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21822,-9,21821,21823,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1020.2462,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21823,21821,-9,-9,1,1,34,2,3,0,2,2,-9,0,3,8.1558189,8.0180721,0,8,5,-6.502007,0,2,2,2021,8,0,60,65,1,0,0,5.8723097,5.8723097,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.33,50.04,29.57,58.13,8.333333333333334,1,1,0,0,8,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21824,-9,21821,21823,1,0,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-792.11072,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10044,12230,21825,-9,21821,21823,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-948.33313,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,1259.6,138753.59,-6006.7783,85934.188,73210.234,12639.082,0,2996.0754 +10045,12231,21826,-9,21828,21827,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-969.03088,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,10,4,1,1375.6666,266979,47220.887,292598.84,72575.539,0,0,3036.5566 +10045,12231,21827,21828,-9,-9,1,1,55,0,1,0,2,2,-9,0,3,8.3432436,8.3976688,0,4,6,13.102607,0,-9,-9,2021,10,0,50,45,1,0,0,11.130401,11.130401,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.99,51.28,34.76,38.42,8.333333333333334,1,1,0,0,12,10,4,1,1375.6666,266979,47220.887,292598.84,72575.539,0,0,3036.5566 +10045,12231,21828,21827,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.3287811,7.618741,0,20,-6,46.559822,0,2,2,2021,17,5,27,26,1,5,0,9.2677469,9.2677469,0,0,0,0,0,0,0,7,1,1,0,0,0,34.76,38.42,52.99,51.28,5,1,1,0,0,12,10,4,1,1375.6666,266979,47220.887,292598.84,72575.539,0,0,3036.5566 +10045,12232,21829,-9,21828,21827,1,1,20,0,1,0,2,2,-9,0,2,7.3886919,7.213501,0,0,0,-972.05023,0,2,2,2021,18,6,45,21,1,6,1,3.9838698,3.9838698,0,0,0,0,0,0,0,2,1,1,0,0,0,14.6,62.69,-9,-9,3.333333333333333,1,1,0,0,2,10,3,1,169,154986.34,0,0,0,0,15606.232,467.77396 +10045,12233,21830,-9,21828,21827,1,1,19,0,1,0,2,2,-9,0,3,0,0,0,0,0,-953.49988,0,2,2,2021,6,0,0,16,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,2,10,1,1,294,-113321.47,0,0,0,0,0,0 +10046,12234,21831,-9,-9,21832,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.1656,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,5,1,984,989981.88,636522.38,0,0,0,0,3720.1711 +10046,12234,21832,-9,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,9.0624037,8.9636145,0,0,0,-1170.9784,0,1,1,2021,11,0,43,40,1,0,0,24.808964,24.808964,.05,.05,0,0,0,0,0,0,0,0,0,4.2957506,0,49.28,52.09,-9,-9,3.333333333333333,2,3,0,1,12,9,5,1,984,989981.88,636522.38,0,0,0,0,3720.1711 +10046,12234,21833,-9,-9,21832,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-975.79944,-9,-9,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,4,2,-9,0,0,9,5,1,984,989981.88,636522.38,0,0,0,0,3720.1711 +10047,12235,21834,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,6.5944896,6.7904744,0,0,-833.94543,-9,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,27.003225,0,252.13391,0,1,1,0,3.0284021,6.798595,55.4,19.5,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,799,754436.38,-5683.2866,654847.06,0,0,0,828.62714 +10048,12236,21835,-9,-9,-9,1,0,25,1,2,0,2,2,-9,1,3,0,0,0,0,0,-1085.1888,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,1868,-2506.3594,0,0,0,0,0,1792.3895 +10048,12236,21836,-9,21835,-9,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.5947,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,1,0,1868,-2506.3594,0,0,0,0,0,1792.3895 +10048,12236,21837,-9,21835,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-897.04761,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,1,1,0,1868,-2506.3594,0,0,0,0,0,1792.3895 +10049,12237,21838,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.2733269,8.5145779,6.9564085,0,0,-923.2597,0,2,2,2021,10,1,37,0,1,1,0,11.95922,11.95922,.05,.05,.05,0,0,0,0,7,1,1,0,7.6519279,0,38.3,47.36,-9,-9,5,1,1,0,0,1,5,5,1,749,126664.01,92479.563,101464.28,0,0,0,3250.3865 +10050,12238,21839,21840,-9,-9,1,0,26,0,0,0,1,1,-9,0,5,8.4456301,8.1330538,0,1,-10,67.091003,0,-9,-9,2021,9,0,40,44,1,0,0,11.277678,11.277678,0,0,0,0,0,0,0,2,0,0,0,4.8369155,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,5,6,4,0,1071,170716.39,0,73737.195,22397.457,11542.176,1690.9104,2824.3025 +10050,12238,21840,21839,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,7.8937702,8.1451159,0,1,10,-55.051777,-9,-9,-9,2021,6,0,36,0,1,0,0,9.0242891,9.0242891,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,7,6,4,0,1071,170716.39,0,73737.195,22397.457,11542.176,1690.9104,2824.3025 +10051,12239,21841,-9,21844,21842,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.59753,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10051,12239,21842,21844,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,9.3202658,9.6772013,0,8,-2,-10.469801,0,-9,-9,2021,12,0,36,40,1,0,0,39.967121,39.967121,.05,.05,0,0,0,0,0,0,0,0,0,4.6063805,0,52.99,51.28,65.06,41.58,8.333333333333334,1,1,0,0,9,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10051,12239,21843,-9,21844,21842,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.4084,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10051,12239,21844,21842,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,0,0,0,20,2,38.285278,0,3,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,65.06,41.58,52.99,51.28,8.333333333333334,1,1,0,0,1,12,4,1,1225.75,810782.31,670086.56,378251.53,117489.91,2520.4314,0,3251.1416 +10052,12240,21845,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,6.7599874,7.183269,0,0,-994.5708,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0566506,6.702693,60.7,47.65,-9,-9,10,1,1,0,0,0,13,2,1,553,122353.31,72517.57,0,0,0,0,1545.5245 +10053,12241,21846,21847,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,6.3384137,6.5328398,57,0,104.10516,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2233891,6.8143697,43.95,39.24,50.16,46.82,8.333333333333334,1,1,0,0,0,7,2,1,1014.5,151682.05,72147.719,0,0,0,0,1580.8032 +10053,12241,21847,21846,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,2.2029274,2.1495545,57,0,47.047825,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4249277,1.9977605,50.16,46.82,43.95,39.24,5,1,1,0,0,0,7,2,1,1014.5,151682.05,72147.719,0,0,0,0,1580.8032 +10054,12242,21848,21849,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.8975086,7.4863901,8,3,58.235741,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1185403,7.8341866,61.26,51.57,53.38,36.78,8.333333333333334,1,1,0,0,4,11,3,1,358,738969.63,358498.81,173959.16,0,3494.6863,0,2073.2737 +10054,12242,21849,21848,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,8,-3,27.894438,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.38,36.78,61.26,51.57,8.333333333333334,1,1,0,0,0,11,3,1,358,738969.63,358498.81,173959.16,0,3494.6863,0,2073.2737 +10055,12243,21850,21851,-9,-9,1,1,45,0,1,0,1,1,-9,0,5,8.5602322,8.5132856,0,23,6,23.482729,0,1,1,2021,4,0,45,42,1,0,0,9.7221441,9.7221441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,55.27,44.81,8.333333333333334,2,3,0,0,7,5,3,1,579,935589.06,509252.53,203659.3,0,0,0,2525.3389 +10055,12243,21851,21850,-9,-9,1,0,39,0,1,0,3,3,-9,0,3,7.4604402,7.3328228,0,23,-6,61.878929,0,2,2,2021,12,0,20,25,1,2,0,8.6388693,8.6388693,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.27,44.81,60.02,56.42,6.666666666666667,2,3,0,1,8,5,3,1,579,935589.06,509252.53,203659.3,0,0,0,2525.3389 +10055,12244,21852,-9,21851,21850,1,0,18,0,1,0,2,2,1,0,3,5.7628813,5.7113676,0,0,0,-1076.5944,-9,3,1,2021,16,5,6,0,1,5,1,5.6101885,5.6101885,0,0,0,0,0,0,0,0,1,1,0,0,0,35.11,44.64,-9,-9,6.666666666666667,2,3,0,0,3,5,2,1,5523,-133997.19,0,0,0,0,0,-623.00696 +10056,12245,21853,21854,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,8.1516123,8.1557236,0,3,-2,-129.66112,0,3,3,2021,12,0,37,37,1,0,0,9.0148525,9.0148525,.05,.05,0,0,0,0,0,0,0,0,0,2.6218064,0,43.37,57.28,45.43,52.23,8.333333333333334,1,1,0,0,10,2,4,1,319,-116478.6,20031.521,126220.8,207286.09,0,0,2829.9204 +10056,12245,21854,21853,-9,-9,1,1,29,1,1,0,2,2,-9,0,4,8.4764271,8.5594511,0,3,2,-107.20088,0,-9,-9,2021,12,0,48,47,1,0,0,13.119814,13.119814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.43,52.23,43.37,57.28,8.333333333333334,1,1,0,0,10,2,4,1,319,-116478.6,20031.521,126220.8,207286.09,0,0,2829.9204 +10056,12245,21855,-9,21853,21854,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.74915,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,4,1,319,-116478.6,20031.521,126220.8,207286.09,0,0,2829.9204 +10057,12246,21856,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,7.4031801,7.8473792,0,0,-1119.5481,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.353287,8.0005732,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,13,3,1,1067,-92933.047,-72007.695,0,0,0,0,749.22943 +10058,12247,21857,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,5.9425263,5.9370942,0,0,-956.52875,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5702438,6.5045691,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1534,-27853.758,95251.914,0,0,0,0,1782.7517 +10059,12248,21858,21859,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,9.1644936,9.0413828,6,6,3.8335578,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7029762,9.0832968,55.11,47.63,60.02,56.42,8.333333333333334,2,3,0,0,0,11,5,1,967,1911757.5,1030888.2,341585.34,0,0,0,5262.5918 +10059,12248,21859,21858,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,0,0,6,-6,-7.4038472,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,55.11,47.63,10,2,3,0,0,0,11,5,1,967,1911757.5,1030888.2,341585.34,0,0,0,5262.5918 +10060,12249,21860,-9,21862,21861,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2649,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10060,12249,21861,21862,-9,-9,1,1,49,0,2,0,1,1,-9,1,2,8.8023739,8.6072025,0,7,1,88.308968,0,-9,-9,2021,13,2,35,47,1,2,0,20.141668,20.141668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.33,18.29,52.23,55.6,8.333333333333334,1,1,0,0,13,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10060,12249,21862,21861,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.2402868,8.7173405,0,15,-1,-36.983871,0,1,2,2021,11,2,32,45,1,2,0,17.747587,17.747587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,49.33,18.29,8.333333333333334,1,1,0,0,11,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10060,12249,21863,-9,21862,21861,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-787.3316,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,5,1,466.75,334530.34,92659.984,305729.13,150994.84,0,0,4793.6289 +10061,12250,21864,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1201.8846,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.07,33.34,-9,-9,5,1,1,0,0,0,5,1,0,377,283899.84,0,0,0,0,0,84.127754 +10062,12251,21865,21866,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.4223652,8.2833939,0,8,1,-41.420578,0,3,3,2021,8,0,44,44,1,0,0,8.9668217,8.9668217,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,50.6,36.51,6.666666666666667,1,1,0,0,10,6,4,1,1071,529208.19,352521.34,155280.03,71442.234,0,0,2623.9844 +10062,12251,21866,21865,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,7.3549089,7.2525344,0,8,-1,-128.25462,0,3,3,2021,13,1,30,26,1,1,0,6.8148489,6.8148489,0,0,0,0,0,0,0,0,1,1,0,0,0,50.6,36.51,57.16,56.15,1.666666666666667,1,1,0,0,10,6,4,1,1071,529208.19,352521.34,155280.03,71442.234,0,0,2623.9844 +10063,12252,21867,21868,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.5660248,7.7384148,0,3,3,-45.38673,0,-9,2,2021,17,5,31,35,1,5,0,6.1391902,6.1391902,.05,.05,0,0,0,0,0,0,0,0,0,.48838231,0,40.31,48.9,50.43,53.69,8.333333333333334,1,1,0,1,9,7,4,1,198.5,152630.45,151353.13,0,0,0,0,1879.1809 +10063,12252,21868,21867,-9,-9,1,1,41,0,0,0,1,1,-9,0,4,7.8356781,7.9949427,0,3,-3,-25.307478,0,-9,-9,2021,5,1,44,20,1,1,0,8.5773487,8.5773487,.05,.05,0,0,0,0,0,0,0,0,0,2.8816268,0,50.43,53.69,40.31,48.9,8.333333333333334,1,1,0,0,3,7,4,1,198.5,152630.45,151353.13,0,0,0,0,1879.1809 +10064,12253,21869,21870,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,9.8239231,9.6952457,0,21,-4,-21.003098,0,3,3,2021,22,10,46,48,1,10,0,33.537815,33.537815,.05,.05,0,0,0,0,0,0,0,0,0,5.4640851,0,35.53,63.81,54.2,57.49,3.333333333333333,1,1,0,0,8,5,5,1,1204.5,901823.13,801205.38,0,0,0,0,6064.4316 +10064,12253,21870,21869,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.4278674,7.8981357,0,21,4,-3.0082979,0,-9,-9,2021,11,2,25,25,1,2,0,11.689387,11.689387,.05,.05,0,0,0,0,0,0,0,0,0,2.0741754,0,54.2,57.49,35.53,63.81,8.333333333333334,1,1,0,0,9,5,5,1,1204.5,901823.13,801205.38,0,0,0,0,6064.4316 +10064,12254,21871,-9,21870,21869,1,1,28,0,0,0,1,1,-9,0,4,8.059371,8.3274994,0,0,0,-976.78986,0,2,2,2021,10,0,38,37,1,1,1,11.338273,11.338273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,5,4,1,677,-141406.77,21919.107,0,0,2551.0076,0,2613.6653 +10065,12255,21872,-9,21873,21874,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1033.2914,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21873,21874,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.4805379,7.5350418,0,15,0,149.43187,0,2,1,2021,13,1,28,28,1,1,0,9.460165,9.460165,0,0,0,0,0,0,0,0,1,1,0,0,0,32.48,59.49,57.16,48.27,1.666666666666667,1,1,0,0,8,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21874,21873,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.8744049,8.6045408,0,15,0,71.630524,0,3,3,2021,10,0,42,38,1,0,0,20.191229,20.191229,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,48.27,32.48,59.49,5,1,1,0,0,10,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21875,-9,21873,21874,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1061.7386,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10065,12255,21876,-9,21873,21874,1,0,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-942.47528,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,4,1,529.79999,172043.02,62050.246,145133.34,71695.164,0,0,3732.6055 +10066,12256,21877,21878,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,7.5583663,7.4559236,33,4,-33.806583,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8543272,7.3398447,54.69,57.47,44.14,50.07,8.333333333333334,1,1,0,0,10,11,5,1,662,486726.75,250564.5,267436.5,0,0,0,7430.7388 +10066,12256,21878,21877,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.4998264,8.9345226,7.6585689,33,-4,-20.697704,0,2,3,2021,13,1,25,25,1,1,0,21.613911,21.613911,0,0,0,0,0,0,0,0,0,0,0,5.8751817,7.5565462,44.14,50.07,54.69,57.47,8.333333333333334,1,1,0,0,13,11,5,1,662,486726.75,250564.5,267436.5,0,0,0,7430.7388 +10067,12257,21879,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,7.0437284,6.9045339,0,0,-995.47333,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4570951,6.9060478,61.45,29.78,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,2705,607877.31,409094.78,367112.94,0,0,0,1653.6919 +10068,12258,21880,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.7816238,6.9608307,0,0,-1106.2314,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.5764549,6.7369528,60.12,54.8,-9,-9,0,1,1,0,0,7,7,2,1,1529,131483.27,261894.3,0,0,1426.5203,0,373.52103 +10069,12259,21881,21882,-9,-9,1,1,67,0,2,0,2,2,-9,0,3,7.7470331,8.1844254,7.2065001,10,29,-33.556698,0,3,-9,2021,10,0,30,30,1,0,0,9.3596287,9.3596287,0,0,0,0,0,0,0,0,1,1,0,0,7.1160688,54.97,47.63,29.13,46.2,8.333333333333334,1,1,0,0,10,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10069,12259,21882,21881,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.5083003,7.4911876,0,10,-29,36.258152,0,2,2,2021,18,6,36,30,1,6,0,4.989603,4.989603,0,0,0,0,0,0,0,0,1,1,0,0,0,29.13,46.2,54.97,47.63,3.333333333333333,1,1,0,0,12,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10069,12259,21883,-9,21882,21881,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.6549,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10069,12259,21884,-9,21882,21881,1,1,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-987.87817,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,5,3,1,924,1793633.4,1500611.5,265405.22,0,0,0,3119.3101 +10070,12260,21885,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,8.2553587,7.9549541,0,0,-1109.0406,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6353197,7.8135948,56.19,41.56,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,1042,172766.66,94932.422,0,0,0,0,3362.0642 +10071,12261,21886,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.3873529,8.5047369,0,0,0,-1028.0137,0,1,1,2021,8,0,35,35,1,0,0,17.861473,17.861473,0,0,0,0,0,0,0,0,1,1,0,1.4632072,0,53.46,53.93,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,414,-62040.844,0,0,0,0,0,2149.7307 +10072,12262,21887,21888,-9,-9,1,0,56,0,1,0,1,1,-9,0,4,8.3386602,8.5258608,0,31,-2,32.649666,0,2,2,2021,8,0,32,35,1,0,0,16.055651,16.055651,.05,.05,0,0,0,0,0,0,0,0,0,4.9303489,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,14,13,4,1,455.5,1592521.9,1054794.5,354728.72,0,0,0,3363.5718 +10072,12262,21888,21887,-9,-9,1,1,58,0,1,0,3,3,-9,0,4,8.2782001,8.1916504,0,31,2,-74.770355,0,3,3,2021,8,0,60,50,1,0,0,10.550294,10.550294,.05,.05,0,0,0,0,0,0,0,0,0,2.310684,0,54.79,55.86,54.79,55.86,8.333333333333334,1,1,0,0,11,13,4,1,455.5,1592521.9,1054794.5,354728.72,0,0,0,3363.5718 +10073,12263,21889,21890,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.4821515,6.8530874,5.7655282,36,-6,-34.573635,0,3,3,2021,10,0,10,10,1,0,0,6.8171067,6.8171067,0,0,0,0,0,0,0,0,1,1,0,0,5.7412171,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,12,10,2,1,494,928714,96202.891,314853.38,0,0,0,1712.1345 +10073,12263,21890,21889,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,7.0135269,6.9358916,31,6,77.013054,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6091752,6.9544902,54.79,55.86,57.16,56.15,8.333333333333334,1,1,0,0,9,10,2,1,494,928714,96202.891,314853.38,0,0,0,1712.1345 +10074,12264,21891,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.2019787,6.183424,0,0,-964.33154,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8562155,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,525,1121197.5,-27524.039,858165.94,0,0,0,1358.8521 +10075,12265,21892,21893,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.9376388,8.0700836,0,35,-8,-116.47421,0,2,2,2021,15,4,19,18,1,4,0,16.876768,16.876768,0,0,0,0,0,0,0,0,0,0,0,4.529511,0,51.01,41.69,59.98,41.37,10,1,1,0,0,10,9,5,1,631.5,1554106,1025293.5,360910,-15541.209,-69.718689,0,4449.7744 +10075,12265,21893,21892,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.3820076,8.7180014,7.8232088,35,8,16.864317,0,3,-9,2021,9,0,20,20,1,0,0,22.660408,22.660408,.05,.05,0,0,0,0,0,0,0,0,0,5.8271918,8.2175102,59.98,41.37,51.01,41.69,8.333333333333334,1,1,0,0,10,9,5,1,631.5,1554106,1025293.5,360910,-15541.209,-69.718689,0,4449.7744 +10076,12266,21894,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.2608089,8.4374399,0,0,0,-926.89392,0,2,2,2021,8,0,37,37,1,0,1,11.513849,11.513849,0,0,.05,0,0,0,0,0,1,1,0,0,0,47.32,52.7,-9,-9,5,2,3,0,0,7,9,4,1,719,48574.516,49105.402,77397.641,84136.391,0,0,754.59576 +10077,12267,21895,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.1500177,7.1823039,0,0,-945.51465,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9970603,7.0429978,60.13,49.27,-9,-9,8.333333333333334,4,2,0,0,7,8,2,1,513,382218.16,47719.867,398477.44,0,0,0,1088.2755 +10078,12268,21896,21898,-9,-9,1,0,41,0,3,0,2,2,-9,0,5,8.5681419,8.8113766,6.6626039,3,-8,92.341698,0,-9,-9,2021,6,0,44,44,1,0,0,13.66736,13.66736,0,0,0,0,0,0,0,0,1,1,0,6.5817461,0,51.73,58.82,50.03,52.62,8.333333333333334,1,1,0,0,8,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10078,12268,21897,-9,21896,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1109.8177,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10078,12268,21898,21896,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,8.0228205,7.7517934,0,3,8,-95.636894,0,2,2,2021,12,0,40,0,1,0,0,8.9834957,8.9834957,.05,.05,0,0,0,0,0,0,1,1,0,3.6835093,0,50.03,52.62,51.73,58.82,6.666666666666667,1,1,0,0,10,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10078,12268,21899,-9,21896,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-955.2088,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,1350.5,905473.56,494761.25,0,0,0,0,3632.0234 +10079,12269,21900,21901,-9,-9,1,0,28,0,0,0,1,1,-9,0,5,9.0392265,9.0097513,0,3,-4,-66.551926,0,2,1,2021,14,4,37,39,1,4,0,22.777782,22.777782,0,0,0,0,0,0,0,0,0,0,0,4.8757682,0,43.86,63.67,55.79,52.62,8.333333333333334,1,1,0,0,7,7,5,1,2142.5,-2469.1094,18872.387,0,0,8233.9512,0,4630.5933 +10079,12269,21901,21900,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.8100471,8.7672148,0,3,4,29.397339,0,-9,-9,2021,7,0,37,41,1,0,0,22.568686,22.568686,.05,.05,0,0,0,0,0,0,0,0,0,7.2594399,0,55.79,52.62,43.86,63.67,8.333333333333334,2,3,0,0,8,7,5,1,2142.5,-2469.1094,18872.387,0,0,8233.9512,0,4630.5933 +10080,12270,21902,21903,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,7.3284125,7.4798799,38,0,-13.106355,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,4.1558833,0,0,1,1,0,0,7.6806908,38.73,47.65,57.16,56.15,5,1,1,0,0,9,12,3,1,464,602922.38,385364.13,293462.59,0,0,0,2290.8872 +10080,12270,21903,21902,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.5667071,8.0560989,33,9,66.131706,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3214946,57.16,56.15,38.73,47.65,6.666666666666667,1,1,0,0,11,12,3,1,464,602922.38,385364.13,293462.59,0,0,0,2290.8872 +10081,12271,21904,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.6132631,8.110508,0,0,0,-976.35022,0,2,2,2021,12,0,36,36,1,0,0,17.759443,17.759443,.05,.05,0,0,0,0,.97722316,0,0,0,0,0,0,31.46,57.32,-9,-9,5,2,3,0,0,10,8,5,1,2200,882626.69,573338.44,310445.19,0,6603.3701,0,2117.5122 +10081,12272,21905,-9,21904,-9,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1056.006,-9,2,-9,2021,21,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0922025,0,41.34,56.62,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,492,9530.124,0,0,0,0,0,-5.2487445 +10082,12273,21906,-9,21907,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.41351,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,166,-113030,8308.2598,0,0,0,0,2118.157 +10082,12273,21907,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.5042257,8.9355717,3.8223543,0,0,-1025.3724,0,1,1,2021,10,0,41,45,1,0,0,17.038906,17.038906,.05,.05,0,0,0,0,0,0,1,1,0,3.9830084,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,166,-113030,8308.2598,0,0,0,0,2118.157 +10083,12274,21908,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,9.4704428,9.693285,0,0,0,-801.8468,0,1,-9,2021,7,0,60,55,1,0,0,28.318367,28.318367,.05,.05,0,0,0,0,0,0,1,1,0,1.4412766,0,52.46,49.49,-9,-9,6.666666666666667,1,1,0,0,14,12,5,1,3001,1138842.9,357248.06,329742.69,0,0,478.39001,5025.5376 +10084,12275,21909,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.0792122,8.3380079,0,0,0,-981.90131,0,-9,-9,2021,12,0,36,35,1,0,0,9.848794,9.848794,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34,59.94,-9,-9,6.666666666666667,1,1,0,0,4,7,4,0,445,-167260.39,43676.98,0,0,0,5528.7075,2281.0667 +10085,12276,21910,21911,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.9917803,7.2156348,0,11,-1,-.83494067,0,3,3,2021,19,7,10,10,1,7,0,23.366966,23.366966,.05,.05,0,0,0,0,0,7,0,0,0,0,0,39.36,39.13,52.4,52.91,1.666666666666667,1,1,0,0,12,11,5,1,1159,1267374,1108573.5,201433.09,-12946.598,34887.43,0,2732.2278 +10085,12276,21911,21910,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4733782,8.4793949,0,11,1,26.35578,0,2,2,2021,9,0,47,47,1,0,0,13.344595,13.344595,.05,.05,0,0,0,0,2.5921233,7,0,0,0,0,0,52.4,52.91,39.36,39.13,8.333333333333334,1,1,0,0,12,11,5,1,1159,1267374,1108573.5,201433.09,-12946.598,34887.43,0,2732.2278 +10086,12277,21912,21913,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,36,3,0,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,42.29,34.87,40.89,31.37,5,1,1,1,0,0,4,1,0,669.5,1384.75,28384.943,0,0,0,0,2249.3174 +10086,12277,21913,21912,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,36,-3,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.89,31.37,42.29,34.87,8.333333333333334,1,1,0,0,0,4,1,0,669.5,1384.75,28384.943,0,0,0,0,2249.3174 +10086,12278,21914,-9,21913,21912,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1033.2123,1,2,3,2021,4,0,0,43,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,56.19,-9,-9,8.333333333333334,1,1,0,0,5,4,1,0,550,40557.094,0,0,0,0,0,2714.5024 +10087,12279,21915,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.6491652,8.1067352,0,0,0,-1001.9599,0,2,-9,2021,12,2,43,43,1,2,0,10.945149,10.945149,.05,.05,.05,0,0,0,0,0,0,0,0,6.2491312,0,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,617,191544.52,128376.55,0,0,-39.140644,0,1966.6785 +10088,12280,21916,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,4.9168987,4.9708672,0,0,-1007.7523,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5292964,5.2743368,52.95,32.42,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1223,271009.84,0,95596.094,20295.934,0,-561.94464,1067.2886 +10089,12281,21917,-9,21920,21919,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.39441,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21918,-9,21920,21919,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-1029.266,-9,1,2,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21919,21920,-9,-9,1,1,48,0,3,0,2,2,-9,0,4,9.9055099,9.4586,0,6,2,112.2445,0,2,3,2021,9,0,60,65,1,0,0,29.456533,29.456533,.05,.05,0,0,0,0,0,2,1,1,0,5.5421777,0,54.2,57.49,62.39,56.71,1.666666666666667,1,1,0,0,9,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21920,21919,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,0,0,0,6,-2,-88.259804,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.6753101,0,62.39,56.71,54.2,57.49,8.333333333333334,1,1,0,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10089,12281,21921,-9,21920,21919,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.56396,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,5,1,1938.2,159688.33,252942.88,116702.19,65883.531,0,8205.3945,10831.025 +10090,12282,21922,21924,-9,-9,1,0,33,0,2,0,1,1,-9,0,4,8.5177298,8.0123472,0,16,-10,14.068419,0,2,1,2021,6,0,37,37,1,0,0,12.352033,12.352033,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.39,59.18,8.333333333333334,2,3,0,0,4,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10090,12282,21923,-9,21922,21924,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.7449,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10090,12282,21924,21922,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.5836849,8.6773987,0,16,10,-29.11108,0,3,1,2021,11,0,36,36,1,0,0,20.411884,20.411884,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,57.16,56.15,1.666666666666667,2,3,0,0,10,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10090,12282,21925,-9,21922,21924,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.4948,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,4,5,1,289,652263.38,483516.59,317449.94,198569.19,14476.016,0,5336.1929 +10091,12283,21926,21927,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,0,0,11,-10,-4.3395891,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,.46971634,0,0,1,1,0,4.0878234,0,51.85,43.98,53,47,8.333333333333334,1,1,0,0,0,4,3,1,1800.5,734457.25,286577.41,352483.09,0,0,0,1589.2771 +10091,12283,21927,21926,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,7.5544419,7.6881618,11,10,145.0311,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5671105,53,47,51.85,43.98,8,1,1,0,0,0,4,3,1,1800.5,734457.25,286577.41,352483.09,0,0,0,1589.2771 +10092,12284,21928,21929,-9,-9,1,0,28,1,2,0,3,3,-9,0,4,0,0,0,11,-2,-143.61328,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,49.63,34.8,6.666666666666667,1,1,0,0,6,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10092,12284,21929,21928,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.2244482,8.4649754,0,7,2,99.036598,-9,2,2,2021,18,7,43,0,1,7,0,12.342574,12.342574,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.63,34.8,38.34,62.12,1.666666666666667,1,1,0,0,7,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10092,12284,21930,-9,21928,21929,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.045,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10092,12284,21931,-9,21928,21929,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-983.07928,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,612.5,38403.926,27406.004,250666.67,151940.63,3384.1812,0,2233.9614 +10093,12285,21932,21933,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.2188172,7.371078,9,0,98.036858,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,3.5579581,11.700464,20.792631,7,1,1,0,.84401524,7.3128996,33.68,21.16,57.06,21.25,6.666666666666667,1,1,0,0,0,11,2,1,503.5,409753.34,254339.22,56936.77,0,0,0,2908.2007 +10093,12285,21933,21932,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,9,0,19.271002,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,1.1438972,0,57.06,21.25,33.68,21.16,8.333333333333334,1,1,0,0,0,11,2,1,503.5,409753.34,254339.22,56936.77,0,0,0,2908.2007 +10094,12286,21934,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6982636,7.0701632,0,0,-949.99738,0,3,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5351267,24.79,50.46,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,663,96268,168203.05,0,0,0,0,167.64107 +10095,12287,21935,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.9055462,9.4222631,0,0,0,-1078.1036,0,-9,-9,2021,15,3,50,55,1,3,0,24.089155,24.089155,0,0,0,0,0,0,0,0,0,0,0,6.0785546,0,48.36,52.17,-9,-9,8.333333333333334,1,1,0,0,5,8,5,0,541,79860.891,0,0,0,0,0,2415.4019 +10096,12288,21936,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,6.4359779,6.3579416,0,0,-1040.97,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6934552,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,475,-121032.75,0,0,0,0,0,986.81519 +10097,12289,21937,21938,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.4992952,6.3852544,7,4,-30.82131,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,.091281131,0,7,1,1,0,0,6.4253726,53,46,51,46,8,1,1,0,0,0,11,2,1,1881.5,210477.67,110994.75,101285.78,0,0,0,2129.1536 +10097,12289,21938,21937,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,7,-4,-11.698733,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,26.351168,0,14.5,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,11,2,1,1881.5,210477.67,110994.75,101285.78,0,0,0,2129.1536 +10098,12290,21939,-9,21943,21941,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-955.08881,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21940,-9,21943,21941,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1056.7371,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21941,21943,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,6.2270465,6.2979922,0,8,0,-81.294151,0,-9,-9,2021,15,4,16,12,1,4,0,3.9771771,3.9771771,.05,.05,0,0,0,0,0,0,1,1,0,4.0684657,0,49.04,45.33,54.2,57.49,8.333333333333334,1,1,0,0,10,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21942,-9,21943,21941,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-945.7417,-9,1,2,2021,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,1.666666666666667,1,1,0,0,10,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10098,12290,21943,21941,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.5643387,8.5845852,0,26,0,92.945251,0,2,1,2021,9,1,27,29,1,1,0,31.236944,31.236944,0,0,0,0,0,0,0,2,1,1,0,3.7957642,0,54.2,57.49,49.04,45.33,8.333333333333334,1,1,0,0,8,7,3,1,589,455214.03,104076.83,324002.13,0,0,1367.4873,2700.4026 +10099,12291,21944,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,8.776392,9.2618513,7.416307,0,0,-965.09381,0,3,3,2021,8,0,45,39,1,0,0,20.07601,20.07601,.05,.05,0,0,0,0,0,0,1,1,0,4.9068828,7.6894555,60.13,49.27,-9,-9,6.666666666666667,1,1,0,0,8,8,5,0,455,751940.31,498430.66,318262.91,0,0,0,3434.6008 +10100,12292,21945,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.9044986,7.6538963,0,0,-1046.2007,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.676321,8.3185291,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,8,4,1,239,1102625.5,269580.09,397572.47,0,0,0,2496.7126 +10101,12293,21946,21947,-9,-9,1,0,62,0,0,0,3,3,-9,0,4,7.5719252,7.5261798,0,41,-3,52.535816,0,3,3,2021,6,0,28,25,1,0,0,5.0604472,5.0604472,.05,.05,0,0,0,0,0,0,0,0,0,2.7219496,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,8,2,5,1,233,1143237,501564.06,218114.28,0,0,0,3703.7207 +10101,12293,21947,21946,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.7662926,8.8360777,0,41,3,-51.430279,0,3,2,2021,6,0,48,50,1,0,0,19.033527,19.033527,.05,.05,.05,0,0,0,0,0,0,0,0,4.511775,0,62.49,55.09,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,233,1143237,501564.06,218114.28,0,0,0,3703.7207 +10101,12294,21948,-9,21946,21947,1,1,33,0,0,0,2,2,-9,0,4,7.683043,7.5604124,0,0,0,-1032.8143,0,3,2,2021,6,0,44,44,1,0,0,6.7098846,6.7098846,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,8,2,3,1,867,-132051.11,-96167.297,0,0,0,0,1049.1365 +10102,12295,21949,21950,-9,-9,1,1,61,1,1,0,3,3,-9,0,4,7.8353891,7.7882781,0,7,1,-122.76384,0,3,3,2021,12,0,36,36,1,0,0,10.718184,10.718184,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,6,13,5,1,906,348411.47,199477.67,194857.81,31933.84,32565.619,14880.824,5201.8472 +10102,12295,21950,21949,-9,-9,1,0,60,1,1,0,2,2,-9,0,4,8.7887087,9.224556,0,7,-1,51.108463,0,3,3,2021,12,2,29,32,1,2,0,23.62698,23.62698,.05,.05,0,0,0,0,0,74.5,1,1,0,0,0,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,4,13,5,1,906,348411.47,199477.67,194857.81,31933.84,32565.619,14880.824,5201.8472 +10102,12296,21951,21955,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,0,0,0,1,-1,43.184875,-9,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.62,58.06,49.04,55.86,6.666666666666667,1,1,0,0,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21952,-9,-9,21955,1,0,17,1,1,1,3,0,0,0,3,0,5.4346313,5.5663285,0,0,-1023.2651,-9,-9,-9,2021,16,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0778289,0,47.01,43.22,-9,-9,6.666666666666667,1,1,0,1,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21953,-9,-9,21955,1,1,15,1,1,1,3,0,-9,0,3,0,0,0,0,0,-908.14301,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21954,-9,21951,21955,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.8574,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10102,12296,21955,21951,21950,21949,1,1,31,1,1,0,2,2,-9,0,3,8.682169,8.7727232,0,1,1,24.378668,0,3,3,2021,10,0,40,40,1,0,0,23.309155,23.309155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.62,58.06,3.333333333333333,1,1,0,0,8,13,4,1,1083.4,107020.23,47036.895,177310.08,142104.69,0,0,3173.6587 +10103,12297,21956,21959,-9,-9,1,1,32,2,2,0,2,2,-9,0,4,9.2492151,9.2267265,0,10,0,5.3627381,0,1,2,2021,12,0,91,42,1,0,0,14.687156,14.687156,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.53,54.28,53.62,43.07,6.666666666666667,1,1,0,0,9,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10103,12297,21957,-9,21959,21956,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.4957,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10103,12297,21958,-9,21959,21956,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-989.50427,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10103,12297,21959,21956,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.2937527,7.9720039,0,10,0,33.994194,0,2,3,2021,10,4,30,30,1,4,0,12.958591,12.958591,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.62,43.07,40.53,54.28,8.333333333333334,1,1,0,0,12,12,5,1,784.25,121799.59,389.0318,228590.19,121373.03,0,4103.6333,5787.4775 +10104,12298,21960,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,7.6285667,7.486083,0,0,-1017.8478,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5849116,7.5215559,44.13,32.58,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1379,379786.84,163513.91,148991.73,0,0,0,866.67871 +10105,12299,21961,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-972.85114,-9,-9,-9,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,10,1,1,0,0,3,9,1,0,1560,11711.348,0,0,0,0,0,-159.30627 +10106,12300,21962,21963,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.7655816,7.5053682,1,-3,21.479351,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4342217,61.04,44.94,50,47,10,1,1,0,0,0,7,2,1,595,760896.06,0,249482.44,0,6845.165,0,2225.9106 +10106,12300,21963,21962,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,1,3,-109.85014,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5161285,0,50,47,61.04,44.94,7,4,1,0,0,0,7,2,1,595,760896.06,0,249482.44,0,6845.165,0,2225.9106 +10107,12301,21964,21967,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,9.5838413,9.6127071,0,1,5,-82.239052,-9,1,1,2021,7,0,40,0,1,0,0,35.349155,35.349155,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,10,1,1,0,0,9,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10107,12301,21965,-9,21967,21964,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.54724,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10107,12301,21966,-9,21967,21964,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-816.81122,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10107,12301,21967,21964,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,8.4490013,8.6752262,0,1,-5,16.396879,-9,-9,-9,2021,11,0,45,0,1,0,0,11.677228,11.677228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,10,1,1,0,0,9,12,5,1,737.25,689332.44,231117.05,311740.63,17596.719,1999.4628,0,5990.9111 +10108,12302,21968,21969,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.5648375,5.31108,31,-6,-33.757977,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0944824,5.6266532,51.24,58.84,57.16,56.15,5,1,1,0,0,0,10,2,1,1494.5,438991.81,0,387166.22,0,0,0,7156.0889 +10108,12302,21969,21968,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,5.9370975,6.0347042,16,6,89.619484,0,-9,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3662596,5.7602715,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,9,10,2,1,1494.5,438991.81,0,387166.22,0,0,0,7156.0889 +10109,12303,21970,21971,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.9987602,8.1696358,0,21,2,23.667879,0,3,2,2021,11,0,25,30,1,0,0,13.124976,13.124976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,48.45,57.49,8.333333333333334,1,1,0,0,11,13,4,1,848,118040.52,-18612.887,116866.08,43169.219,0,1763.5889,3612.4333 +10109,12303,21971,21970,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.4739552,8.3657618,0,9,-2,-4.1968384,0,2,2,2021,12,1,16,40,1,1,0,25.62112,25.62112,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,41.07,60.93,8.333333333333334,1,1,0,0,11,13,4,1,848,118040.52,-18612.887,116866.08,43169.219,0,1763.5889,3612.4333 +10110,12304,21972,-9,21973,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7253,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,2736,78824.234,-6651.9194,159706.73,0,0,0,2148.2874 +10110,12304,21973,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.2644758,8.4408903,4.9511099,0,0,-932.04022,0,2,1,2021,15,3,25,24,1,3,0,16.697519,16.697519,0,0,0,0,0,0,0,0,1,1,0,5.8757243,0,35.78,55.1,-9,-9,3.333333333333333,1,1,0,1,7,13,3,1,2736,78824.234,-6651.9194,159706.73,0,0,0,2148.2874 +10110,12304,21974,-9,21973,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-936.98975,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,2736,78824.234,-6651.9194,159706.73,0,0,0,2148.2874 +10111,12305,21975,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-893.33356,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.01,24.91,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,1183,127976.25,0,102404.61,0,0,0,419.40308 +10112,12306,21976,21977,-9,-9,1,0,54,0,0,0,1,1,-9,0,1,0,0,0,37,0,82.811569,0,2,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,59.14,23.4,44.39,45.63,6.666666666666667,2,3,0,0,0,8,2,0,534,459697,214690.22,194734.06,0,0,0,1741.4725 +10112,12306,21977,21976,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,6.5293326,6.679008,37,9,-73.948624,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.7898846,44.39,45.63,59.14,23.4,8.333333333333334,2,3,0,1,0,8,2,0,534,459697,214690.22,194734.06,0,0,0,1741.4725 +10112,12307,21978,-9,21976,21977,1,0,24,0,0,0,1,1,-9,0,4,8.514864,8.7296219,0,0,0,-940.28577,0,1,1,2021,11,0,40,37,1,2,1,16.566521,16.566521,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,1,8,5,0,666,-1275.2822,7735.4409,0,0,0,0,3044.8916 +10112,12308,21979,-9,21976,21977,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-949.69147,-9,1,2,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.58,54.91,-9,-9,5,2,3,0,0,0,8,1,0,933,184731.22,0,0,0,0,0,-127.35419 +10113,12309,21980,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,5.626256,5.6251888,0,0,-863.1203,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,1.6114582,0,25.850641,0,1,1,0,0,5.5975261,48.56,39.35,-9,-9,6.666666666666667,1,1,0,0,7,6,2,1,128,-20686.023,0,0,0,0,0,1429.3685 +10114,12310,21981,-9,21983,21984,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1014.7977,0,3,3,2021,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,1,0,0,6,1,0,116,107064.42,0,0,0,0,0,264.20212 +10114,12311,21982,-9,21983,21984,1,0,26,0,0,0,1,1,1,0,3,0,0,0,0,0,-1025.4058,-9,3,3,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.1,52.62,-9,-9,5,2,3,1,0,0,6,1,0,1537,-276879.31,0,0,0,0,0,244.99065 +10114,12312,21983,21984,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,31,4,0,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.35,35.33,37.56,35.77,5,2,3,0,0,0,6,1,0,745,36373.773,81437.609,0,0,0,0,550.61145 +10114,12312,21984,21983,-9,-9,1,1,58,0,0,0,3,3,-9,1,2,0,0,0,31,-4,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.56,35.77,39.35,35.33,5,2,3,0,0,0,6,1,0,745,36373.773,81437.609,0,0,0,0,550.61145 +10114,12313,21985,-9,21983,21984,1,1,23,0,0,0,2,2,-9,0,4,7.7699752,8.1088486,0,0,0,-1013.5695,0,3,3,2021,10,0,40,40,1,1,1,7.0660315,7.0660315,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,4,0,1323,56444.742,78865.172,0,0,0,0,1067.9551 +10114,12314,21986,-9,21983,21984,1,1,19,0,0,0,2,2,1,0,5,0,0,0,0,0,-1001.6052,-9,3,3,2021,0,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,60,-9,-9,10,2,3,1,0,0,6,1,0,690,-72263.414,0,0,0,0,0,0 +10115,12315,21987,-9,21990,21988,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.17834,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10115,12315,21988,21990,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.1030703,7.770318,0,15,10,5.0406041,0,-9,2,2021,11,0,55,18,1,0,0,5.554986,5.554986,.05,.05,0,0,0,0,0,2,1,0,1,0,0,31.93,58.41,36.99,19.58,6.666666666666667,1,1,0,0,3,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10115,12315,21989,-9,21990,21988,1,0,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-1178.7764,-9,1,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.53,64.73,-9,-9,10,1,1,0,0,1,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10115,12315,21990,21988,-9,-9,1,0,38,0,1,0,1,1,-9,1,1,0,0,0,15,-10,20.86779,0,2,2,2021,23,7,0,18,3,7,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,36.99,19.58,31.93,58.41,8.333333333333334,1,1,0,1,1,10,3,0,1838,81795.086,17828.693,196302.67,112229.11,1129.4124,0,3694.5562 +10116,12316,21991,21992,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.8918028,8.4372101,0,7,12,25.836233,0,-9,-9,2021,7,0,63,45,1,0,0,9.2356291,9.2356291,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,49.46,56.91,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,879,707580.75,262205.06,253386.66,104124.48,0,1163.6526,4154.7661 +10116,12316,21992,21991,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.3199053,8.6054049,0,7,-12,37.3493,0,2,-9,2021,6,0,74,44,1,0,0,6.0782971,6.0782971,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.46,56.91,8.333333333333334,1,1,0,0,9,12,5,1,879,707580.75,262205.06,253386.66,104124.48,0,1163.6526,4154.7661 +10117,12317,21993,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9755268,8.0288486,0,0,0,-962.62097,0,2,2,2021,7,0,37,39,1,0,0,9.4794197,9.4794197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,372,239236.61,58162.363,98655.711,78683.5,0,0,1347.2086 +10117,12318,21994,-9,21993,-9,1,1,19,0,0,0,2,2,1,0,3,7.742907,7.7311807,0,0,0,-1038.3524,-9,2,-9,2021,7,0,35,0,1,0,1,7.6232753,7.6232753,0,0,0,0,0,0,0,0,0,0,0,0,0,37.16,58.63,-9,-9,5,1,1,0,0,2,12,3,1,331,-28644.469,0,0,0,0,0,1396.3899 +10118,12319,21995,21996,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9045744,7.7136245,0,8,-1,10.856455,-9,-9,-9,2021,7,0,37,0,1,0,0,7.7634444,7.7634444,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,56.1,39.2,8.333333333333334,1,1,0,0,9,6,5,1,994,596307.5,227589.16,283094.84,127469.19,0,0,4013.9824 +10118,12319,21996,21995,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.7441912,9.0671978,0,8,1,-82.702141,0,-9,-9,2021,8,1,35,38,1,1,0,20.944309,20.944309,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.1,39.2,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,1,994,596307.5,227589.16,283094.84,127469.19,0,0,4013.9824 +10119,12320,21997,21998,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,8.6320906,8.5615225,0,12,2,-112.19381,0,2,1,2021,17,5,42,48,1,5,0,18.233372,18.233372,0,0,0,0,0,0,0,2,1,0,1,0,0,41.17,52.68,52,55,3.333333333333333,1,1,0,0,8,7,5,1,420.33334,40405.715,34579.211,363523.22,313402.34,20506.895,0,4751.0396 +10119,12320,21998,21997,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.7027378,8.8441744,0,12,-2,38.601551,0,-9,-9,2021,9,0,40,38,1,1,0,21.101101,21.101101,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52,55,41.17,52.68,7,1,1,0,0,1,7,5,1,420.33334,40405.715,34579.211,363523.22,313402.34,20506.895,0,4751.0396 +10119,12320,21999,-9,21997,21998,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.28625,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,420.33334,40405.715,34579.211,363523.22,313402.34,20506.895,0,4751.0396 +10120,12321,22000,-9,22002,22001,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1132.1053,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,1059.6666,28138.832,-59448.918,0,0,16076.524,0,1677.3441 +10120,12321,22001,22002,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.078083,8.0275326,0,10,6,-21.836773,0,-9,-9,2021,12,0,40,45,1,0,0,9.3874435,9.3874435,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.87,65.23999999999999,23.34,55.42,6.666666666666667,1,1,0,0,7,10,3,0,1059.6666,28138.832,-59448.918,0,0,16076.524,0,1677.3441 +10120,12321,22002,22001,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,10,-6,-18.172462,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.34,55.42,30.87,65.23999999999999,5,1,1,0,0,6,10,3,0,1059.6666,28138.832,-59448.918,0,0,16076.524,0,1677.3441 +10121,12322,22003,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1061.1156,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.30978394,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,1382.5,-141293.25,0,0,0,1896.1809,0,1595.5143 +10121,12322,22004,-9,22003,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-941.88043,-9,2,-9,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,26.15,62.44,-9,-9,5,1,1,0,0,0,6,1,0,1382.5,-141293.25,0,0,0,1896.1809,0,1595.5143 +10121,12323,22005,-9,22003,-9,1,1,21,0,0,0,2,2,-9,0,2,0,0,0,0,0,-954.58661,0,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.24,50.75,-9,-9,5,1,1,1,0,0,6,1,0,348,62883.266,0,0,0,0,0,-234.16621 +10122,12324,22006,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.8861809,5.6734962,0,0,-1012.4096,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0999122,5.930521,65.79000000000001,31.96,-9,-9,10,1,1,0,0,12,9,2,1,1088,-56793.102,31907.826,0,0,0,0,842.83673 +10123,12325,22007,-9,22010,22008,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.4,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10123,12325,22008,22010,-9,-9,1,1,30,1,2,0,1,1,-9,0,4,8.0602455,8.2395926,0,2,2,174.73676,0,-9,-9,2021,4,1,68,45,1,1,0,6.1835637,6.1835637,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,50.19,39.84,56.29,8.333333333333334,2,3,0,0,6,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10123,12325,22009,-9,22010,22008,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-853.79004,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10123,12325,22010,22008,-9,-9,1,0,28,1,2,0,1,1,-9,0,3,0,0,0,2,-2,47.429611,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.84,56.29,45.64,50.19,8.333333333333334,2,3,0,0,3,9,3,0,808.75,191533.56,-26717,223921.06,191912.67,0,0,1542.3569 +10124,12326,22011,22012,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.6613889,7.6307898,0,28,0,-42.513821,0,2,2,2021,14,2,23,22,1,2,0,8.2632465,8.2632465,.05,.05,0,0,0,0,0,7,1,1,0,7.2854486,0,38.74,40.53,18.77,31.02,5,2,3,0,0,12,8,3,1,506.5,-18426.797,174519.34,0,0,1497.2749,1973.8267,2338.6157 +10124,12326,22012,22011,-9,-9,1,1,58,0,0,0,1,1,-9,0,1,0,7.6612601,7.8936086,30,9,13.603841,0,3,3,2021,34,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.6806283,18.77,31.02,38.74,40.53,3.333333333333333,2,3,0,1,0,8,3,1,506.5,-18426.797,174519.34,0,0,1497.2749,1973.8267,2338.6157 +10124,12327,22013,-9,22011,22012,1,1,26,0,0,0,2,2,-9,0,4,8.1125727,8.3605337,0,0,0,-908.94385,0,3,1,2021,11,0,41,0,1,0,1,8.2762899,8.2762899,.05,.05,0,0,0,0,0,0,1,1,0,6.5052004,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,1,3,8,4,1,283,103225.27,95633.336,0,0,0,0,1310.2472 +10124,12328,22014,-9,22011,22012,1,0,24,0,0,0,2,2,0,1,2,0,0,0,0,0,-935.23688,-9,3,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.12,46.76,-9,-9,5,2,3,0,0,0,8,1,1,1377,27005.193,0,0,0,0,0,1027.9886 +10125,12329,22015,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,8.9109631,8.4695253,0,0,0,-832.59442,0,2,2,2021,11,0,39,45,1,0,1,15.153679,15.153679,.05,.05,0,0,0,0,0,0,0,0,0,1.6972218,0,46.51,53.53,-9,-9,6.666666666666667,1,1,0,0,2,5,5,1,232,-72260.523,-24816.09,0,0,0,0,2327.9832 +10126,12330,22016,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,2,6.9882445,6.7495956,0,0,0,-1055.5621,0,2,2,2021,21,9,24,20,1,9,0,5.9891062,5.9891062,0,0,0,0,0,0,0,0,1,1,0,0,0,23.82,53.21,-9,-9,1.666666666666667,1,1,0,1,8,1,2,0,53,165335.08,0,0,0,0,0,2305.4233 +10127,12331,22017,22019,-9,-9,1,1,52,0,0,0,1,1,-9,0,2,9.1750698,8.969388,0,6,2,-9.4567642,0,2,2,2021,15,4,42,40,1,4,0,22.382517,22.382517,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,44.94,47.21,15.56,48.81,3.333333333333333,1,1,0,0,7,11,5,1,730.66669,1153728.5,1118113.3,135750.73,30271.404,9786.7246,7394.6885,2851.199 +10127,12331,22018,-9,22019,22017,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1011.5192,-9,2,1,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.403451,0,41,50.3,-9,-9,6.666666666666667,1,1,0,1,0,11,5,1,730.66669,1153728.5,1118113.3,135750.73,30271.404,9786.7246,7394.6885,2851.199 +10127,12331,22019,22017,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,6,-2,-34.214729,0,2,2,2021,31,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,15.56,48.81,44.94,47.21,0,1,1,0,1,6,11,5,1,730.66669,1153728.5,1118113.3,135750.73,30271.404,9786.7246,7394.6885,2851.199 +10127,12332,22020,-9,22019,22017,1,0,18,0,0,0,2,2,1,1,1,0,0,0,0,0,-1072.1738,-9,2,1,2021,25,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2411005,0,35.08,21.06,-9,-9,0,1,1,0,0,0,11,1,1,1296,0,0,0,0,0,0,551.78833 +10128,12333,22021,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.3507891,7.3155026,0,0,0,-959.28601,-9,2,2,2021,10,0,60,0,1,0,0,3.8047409,3.8047409,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.8,48.61,-9,-9,8.333333333333334,1,1,0,1,12,6,3,0,755,-26944.113,84965.656,0,0,0,166.43742,1603.6221 +10128,12333,22022,-9,22021,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-923.54724,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,6,3,0,755,-26944.113,84965.656,0,0,0,166.43742,1603.6221 +10129,12334,22023,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1091.6678,-9,2,2,2021,19,0,0,0,4,6,0,0,0,0,0,0,1,0,26.557617,0,0,1,1,0,0,0,27.41,25.55,-9,-9,5,1,1,0,0,0,1,1,0,2297,236703.8,0,116336.36,0,0,0,1442.3827 +10130,12335,22024,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,8.3060169,8.4327917,0,0,-1058.8883,0,3,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6036108,8.0249014,60.7,39.78,-9,-9,8.333333333333334,1,1,0,0,0,4,4,0,525,269872.41,121145.77,204492.91,0,0,11078.045,2993.6455 +10131,12336,22025,-9,22029,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,0,0,-888.53021,0,3,3,2021,13,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12336,22026,-9,22025,-9,1,1,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-936.29382,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12336,22027,-9,22025,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.8284,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12336,22028,-9,22025,-9,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-996.65283,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,3,4,-9,0,0,8,1,0,729.25,-49716.48,0,0,0,0,0,831.69617 +10131,12337,22029,-9,-9,-9,1,0,70,1,3,0,3,3,-9,0,3,0,0,0,0,0,-995.42932,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,2.25278,0,0,1,1,0,0,0,50,47,-9,-9,7,3,4,0,0,0,8,1,0,961,-290690.41,0,0,0,0,0,1392.0232 +10132,12338,22030,-9,-9,-9,1,1,62,0,1,0,1,1,-9,0,5,7.627955,7.7249522,0,0,0,-899.36755,0,2,3,2021,12,0,30,30,1,0,0,7.7661228,7.7661228,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,1004,160952.63,62604.145,0,0,0,0,2108.3489 +10133,12339,22031,22032,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6077514,7.7305622,0,11,4,-18.964754,0,2,3,2021,7,0,35,35,1,0,0,9.3483305,9.3483305,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,40.47,51.38,10,1,1,0,0,10,10,4,0,251,394757.25,186926,142518.84,-8226.9238,0,0,1910.8707 +10133,12339,22032,22031,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.7386317,7.5843935,0,11,-4,-41.32169,0,3,3,2021,10,0,45,45,1,0,0,6.6493554,6.6493554,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.47,51.38,54.2,57.49,6.666666666666667,1,1,0,0,8,10,4,0,251,394757.25,186926,142518.84,-8226.9238,0,0,1910.8707 +10134,12340,22033,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.0337515,5.9749589,0,0,-979.94855,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9075875,5.9849696,60.24,50.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1285,839822.44,-28918.316,583412.94,0,0,0,880.76788 +10135,12341,22034,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.3249388,5.1897922,0,0,-954.92029,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5727229,5.3039932,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,206,339211.78,92961.414,73603.164,0,0,0,616.17157 +10136,12342,22035,22036,-9,-9,1,1,28,0,0,0,2,2,0,0,1,0,0,0,2,5,-25.731426,-9,-9,-9,2021,25,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.11,40.75,35.78,49.9,3.333333333333333,1,1,0,0,0,7,3,0,1834.5,9253.5234,0,0,0,0,0,1448.8455 +10136,12342,22036,22035,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,7.5228581,7.9206481,6.1825085,2,-5,97.038971,0,-9,-9,2021,21,8,24,30,1,8,0,12.27477,12.27477,0,0,0,0,0,0,0,0,0,0,0,5.7438745,0,35.78,49.9,36.11,40.75,8.333333333333334,1,1,0,0,3,7,3,0,1834.5,9253.5234,0,0,0,0,0,1448.8455 +10137,12343,22037,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,7.0926332,7.1705866,0,0,-970.76147,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6365066,7.1178746,40.86,21.98,-9,-9,5,1,1,0,0,11,13,3,0,116,1078510.3,775585.75,115332.18,0,0,0,1454.8489 +10138,12344,22038,22039,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,11,-11,0,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.6485395,0,46.65,25.83,41.1,23.01,6.666666666666667,1,1,0,0,0,12,1,0,2293,75492.219,0,0,0,0,0,2339.3003 +10138,12344,22039,22038,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,0,0,11,11,0,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.1,23.01,46.65,25.83,6.666666666666667,1,1,0,0,1,12,1,0,2293,75492.219,0,0,0,0,0,2339.3003 +10139,12345,22040,22041,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,31,7,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,27.89,18.61,5,1,1,0,0,0,12,1,0,286.5,-68230.469,0,0,0,0,0,1888.7793 +10139,12345,22041,22040,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,31,-7,0,0,3,2,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,27.89,18.61,33.32,18.46,1.666666666666667,1,1,0,0,0,12,1,0,286.5,-68230.469,0,0,0,0,0,1888.7793 +10140,12346,22042,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.2688189,7.2797098,0,0,-915.89954,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0670948,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,749,218697.88,241347.94,0,0,0,0,1522.3514 +10141,12347,22043,22044,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.9347134,8.7543144,0,22,0,173.19356,0,3,2,2021,8,1,37,40,1,1,0,18.116716,18.116716,.05,.05,0,0,0,0,0,0,0,0,0,3.6622548,0,50.26,46.01,48.3,49.79,8.333333333333334,1,1,0,0,8,4,5,1,716,2172929.5,1927108.8,191424.58,35424.902,7043.6582,0,4712.4023 +10141,12347,22044,22043,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.2459307,8.9440184,0,6,0,-78.640999,0,2,2,2021,14,2,37,41,1,2,0,27.318861,27.318861,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.3,49.79,50.26,46.01,8.333333333333334,1,1,0,0,8,4,5,1,716,2172929.5,1927108.8,191424.58,35424.902,7043.6582,0,4712.4023 +10142,12348,22045,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,6.4591837,6.1554847,0,0,-875.617,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.707397,5.9620357,42.17,56.08,-9,-9,10,1,1,0,0,11,5,2,1,335,296402.09,93647.742,95594.031,0,0,0,576.7868 +10143,12349,22046,22047,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.2877793,7.3783898,0,2,2,-47.052856,0,-9,-9,2021,12,0,16,16,1,0,0,11.189335,11.189335,0,0,0,0,0,0,0,2,1,0,1,0,0,33.74,57.46,36.59,38.99,3.333333333333333,1,1,0,1,4,5,3,0,1263,-90379,0,116357.83,118974.08,4932.4922,0,701.51831 +10143,12349,22047,22046,-9,-9,1,0,28,0,0,0,2,2,-9,0,2,6.2851167,6.0917773,0,2,-2,-49.7728,0,-9,-9,2021,19,8,16,40,1,8,0,2.7635555,2.7635555,0,0,0,0,0,0,0,0,1,0,1,0,0,36.59,38.99,33.74,57.46,5,1,1,0,1,1,5,3,0,1263,-90379,0,116357.83,118974.08,4932.4922,0,701.51831 +10144,12350,22048,22049,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,68,2,-106.07162,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.56,39.66,60.97,16.73,8.333333333333334,1,1,0,0,0,9,2,1,776.5,538268.88,10528.873,385849.81,0,0,0,1706.66 +10144,12350,22049,22048,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,4.9856639,4.6875172,68,-2,65.672829,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.4234324,60.97,16.73,52.56,39.66,5,1,1,0,0,0,9,2,1,776.5,538268.88,10528.873,385849.81,0,0,0,1706.66 +10145,12351,22050,-9,22051,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.35089,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,612.5,931497.13,947795.44,153422.94,28577.752,0,2193.6335,2184.1938 +10145,12351,22051,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.1149693,7.6688156,0,0,0,-986.80408,0,1,-9,2021,6,0,44,44,1,0,0,6.3618193,6.3618193,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.74,44.56,-9,-9,1.666666666666667,3,4,0,0,8,8,3,0,612.5,931497.13,947795.44,153422.94,28577.752,0,2193.6335,2184.1938 +10146,12352,22052,22053,-9,-9,1,1,63,0,0,0,3,3,-9,1,2,6.6250386,6.5525155,0,7,7,-57.630211,0,-9,2,2021,7,0,25,25,1,0,0,3.7306321,3.7306321,.05,.05,0,0,0,0,0,7,1,1,0,0,0,59.54,24.47,52.82,36.16,8.333333333333334,1,1,0,0,8,9,3,1,1074,503239.5,363091.78,136480.45,105434.05,0,0,1457.2107 +10146,12352,22053,22052,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,8.1866007,7.5311785,0,7,-7,-91.831177,0,2,3,2021,11,2,38,40,1,2,0,7.6251841,7.6251841,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,36.16,59.54,24.47,5,1,1,0,1,9,9,3,1,1074,503239.5,363091.78,136480.45,105434.05,0,0,1457.2107 +10146,12353,22054,-9,22053,22052,1,1,27,0,0,0,2,2,-9,0,3,6.5411139,6.4850636,0,0,0,-1039.2783,0,2,2,2021,20,8,22,14,1,8,1,3.6441357,3.6441357,0,0,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,1.666666666666667,1,1,0,0,6,9,2,1,721,7106.6152,0,0,0,0,0,803.78882 +10147,12354,22055,-9,22057,22056,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.2159,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,507,-71885.93,86940.766,0,0,4906.3022,2222.093,1837.8107 +10147,12354,22056,22057,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.1206522,8.1151018,0,5,-2,235.42912,0,-9,-9,2021,9,1,44,39,1,1,0,9.3050518,9.3050518,.05,.05,0,0,0,0,0,7,1,1,0,0,0,34.8,50.31,60.12,54.8,6.666666666666667,1,1,0,0,15,11,4,1,507,-71885.93,86940.766,0,0,4906.3022,2222.093,1837.8107 +10147,12354,22057,22056,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.6677513,8.0027666,0,5,2,12.711917,0,-9,-9,2021,8,0,39,39,1,0,0,4.6826005,4.6826005,0,0,0,0,0,0,0,87,1,1,0,0,0,60.12,54.8,34.8,50.31,10,1,1,0,0,13,11,4,1,507,-71885.93,86940.766,0,0,4906.3022,2222.093,1837.8107 +10148,12355,22058,-9,22060,22061,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.0306,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12355,22059,-9,22060,22061,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1059.3849,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12355,22060,22061,-9,-9,1,0,35,0,3,0,2,2,-9,1,4,0,0,0,13,-3,-48.132587,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,.70805371,0,1,1,0,0,0,48,56,51,56,7,2,3,0,0,0,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12355,22061,22060,22063,22062,1,1,38,0,3,0,1,1,-9,0,4,8.4075832,8.5222664,0,6,3,67.30381,0,3,2,2021,10,0,35,35,1,1,0,14.307106,14.307106,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51,56,48,56,7,2,3,0,0,11,8,3,1,411.25,151176.91,124133,312797.41,209099.98,14537.889,0,3221.4326 +10148,12356,22062,22063,-9,-9,1,1,74,0,3,0,2,2,-9,0,3,0,0,0,6,2,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,51,46,8,2,3,0,0,0,8,1,1,261.5,256715.47,-53020.055,225380.59,0,0,0,1320.9701 +10148,12356,22063,22062,-9,-9,1,0,72,0,3,0,3,3,-9,0,3,0,0,0,6,-2,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,2,3,0,0,0,8,1,1,261.5,256715.47,-53020.055,225380.59,0,0,0,1320.9701 +10149,12357,22064,22065,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,63,-1,0,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,40.57,25.84,51.25,33.32,5,1,1,0,0,0,11,1,0,982,219212.59,0,211910.34,0,0,0,1538.2078 +10149,12357,22065,22064,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,6,1,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,120.6249,0,27,1,1,0,0,0,51.25,33.32,40.57,25.84,8.333333333333334,1,1,0,0,0,11,1,0,982,219212.59,0,211910.34,0,0,0,1538.2078 +10150,12358,22066,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.2710581,7.1791644,0,0,-945.83319,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.1612978,0,44.621655,0,1,1,0,0,7.3798947,59.15,20.54,-9,-9,1.666666666666667,1,1,0,0,0,5,3,0,589,299463.72,132945.2,187868.88,0,0,0,1277.1019 +10150,12359,22067,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.3789043,4.4762378,0,0,-965.24841,0,3,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,4.2286825,42.72,27.94,-9,-9,10,1,1,0,0,0,5,2,0,112,231260.69,0,0,0,0,0,1497.5535 +10151,12360,22068,22069,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,30.23,28.4,0,1,1,0,0,0,12,1,0,1330.5,354365.13,0,285553,87534.375,0,0,1808.9099 +10151,12360,22069,22068,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,2,0,0,0,2,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,30.23,28.4,16.04,23.99,1.666666666666667,1,1,0,1,0,12,1,0,1330.5,354365.13,0,285553,87534.375,0,0,1808.9099 +10152,12361,22070,-9,22071,22073,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1023.8345,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10152,12361,22071,22073,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,7.5496488,7.7226815,0,16,3,-69.360809,0,3,3,2021,12,1,10,10,1,1,0,20.11709,20.11709,.05,.05,0,0,0,0,0,0,1,1,0,6.8668175,0,43.49,39.65,54.94,35.22,3.333333333333333,1,1,0,0,9,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10152,12361,22072,-9,22071,22073,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.12292,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10152,12361,22073,22071,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.4254656,7.2820172,0,6,-3,28.6388,0,-9,-9,2021,10,1,60,30,1,1,0,2.5267603,2.5267603,.05,.05,0,0,0,0,0,0,1,1,0,7.602107,0,54.94,35.22,43.49,39.65,8.333333333333334,1,1,0,0,9,4,3,1,352.5,105986.49,146011.25,163599.53,144057.8,3102.4866,0,4135.5566 +10153,12362,22074,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.4052281,7.2585588,0,0,-1059.1869,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0103507,49.91,50.15,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,938,396874.53,27998.189,154877.42,0,0,0,946.00085 +10154,12363,22075,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1068.1849,-9,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3719649,0,51,46,-9,-9,7,1,1,0,0,0,13,1,1,254,-70300.43,0,0,0,0,0,682.37518 +10155,12364,22076,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.7428131,5.7918377,0,0,-1215.8616,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,2.8026183,0,22.674484,0,1,1,0,0,5.6380181,43.64,27.74,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,647,298928,10787.102,183339.78,0,0,0,2055.9292 +10156,12365,22077,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,2,0,0,0,0,0,-933.74048,-9,-9,-9,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.96,56.33,-9,-9,3.333333333333333,1,1,1,0,8,11,1,0,652.5,40124.996,0,0,0,0,0,1595.134 +10156,12365,22078,-9,22077,-9,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-935.8114,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,11,1,0,652.5,40124.996,0,0,0,0,0,1595.134 +10157,12366,22079,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.9003639,8.8332644,0,0,0,-1046.0375,0,3,3,2021,8,1,36,60,1,1,0,21.765463,21.765463,.05,.05,0,0,0,0,0,90,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,9,5,0,813,757963.44,439617.47,262633.56,18310.582,0,3026.0566,1864.7456 +10158,12367,22080,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.244791,8.2579117,0,0,0,-1034.1422,0,1,1,2021,13,1,35,57,1,1,0,12.116467,12.116467,.05,.05,0,0,0,0,0,0,1,1,0,1.8192533,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,9,4,4,1,759,-30918.066,149337.77,120072.64,59098.773,12416.498,4045.6792,2291.02 +10159,12368,22081,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.9049087,5.9461656,0,0,-1002.4108,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0818954,5.7262797,51.41,56.15,-9,-9,8.333333333333334,3,4,0,1,10,8,2,1,177,703078.06,175630.09,337936,0,0,0,644.73254 +10160,12369,22082,22083,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6200438,8.9858627,0,36,4,42.17374,0,3,3,2021,5,0,55,40,1,0,0,13.476397,13.476397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.67,56.74,41.06,62.04,8.333333333333334,1,1,0,0,10,5,5,1,810,645376.13,194083.31,201694.39,0,0,0,3307.7729 +10160,12369,22083,22082,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.3673744,8.3049898,0,36,-4,31.700022,0,2,2,2021,6,0,37,37,1,0,0,15.39397,15.39397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,48.67,56.74,5,1,1,0,0,10,5,5,1,810,645376.13,194083.31,201694.39,0,0,0,3307.7729 +10161,12370,22084,22085,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.5434661,7.3657722,31,0,37.819073,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5764675,7.1863198,58.15,52.91,54.37,54.8,8.333333333333334,1,1,0,0,5,4,3,1,399.5,1664341.5,875752,378132.69,0,0,0,3499.8271 +10161,12370,22085,22084,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.9568706,6.7408366,32,0,-7.3580451,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8649297,54.37,54.8,58.15,52.91,8.333333333333334,1,1,0,0,7,4,3,1,399.5,1664341.5,875752,378132.69,0,0,0,3499.8271 +10161,12371,22086,-9,22085,22084,1,1,33,0,0,0,2,2,-9,0,4,8.4599075,8.5345736,0,0,0,-1176.8972,0,2,2,2021,12,1,47,40,1,1,0,11.485581,11.485581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.76,57.79,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,678,444435.56,301658.47,115626.38,105104.26,12524.808,504.03497,1786.6406 +10162,12372,22087,22088,-9,-9,1,1,57,0,1,0,2,2,-9,0,3,8.9348717,9.1063271,0,8,11,70.129677,0,3,3,2021,6,0,10,10,1,0,0,66.30722,66.30722,.05,.05,0,0,0,0,0,0,1,1,0,5.3225412,0,64.97,32.14,57.16,56.15,8.333333333333334,1,1,0,0,10,5,5,1,426.33334,556345.63,663882.06,0,0,9049.0039,782.47375,6379.4971 +10162,12372,22088,22087,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.9648728,7.9186139,0,8,-11,55.098351,0,2,2,2021,7,0,35,25,1,0,0,7.6820016,7.6820016,0,0,0,0,0,0,0,0,1,1,0,7.7716031,0,57.16,56.15,64.97,32.14,8.333333333333334,1,1,0,0,10,5,5,1,426.33334,556345.63,663882.06,0,0,9049.0039,782.47375,6379.4971 +10162,12372,22089,-9,22088,22087,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.8794,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,5,1,426.33334,556345.63,663882.06,0,0,9049.0039,782.47375,6379.4971 +10163,12373,22090,22091,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.1729755,7.944447,43,-1,8.7161379,0,3,3,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.2509079,47.19,53.98,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,195.5,2017573,1033161.8,733616.88,0,0,0,2758.5825 +10163,12373,22091,22090,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,7.7546768,7.964108,0,43,1,-57.841061,0,2,1,2021,18,4,20,25,1,4,0,10.897951,10.897951,0,0,0,0,0,0,0,0,0,0,0,4.361114,0,54.96,53.17,47.19,53.98,8.333333333333334,1,1,0,0,13,9,4,1,195.5,2017573,1033161.8,733616.88,0,0,0,2758.5825 +10164,12374,22092,-9,22095,22093,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0459,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10164,12374,22093,22095,-9,-9,1,1,36,1,2,0,1,1,-9,0,5,8.5208845,8.4037027,0,19,0,-35.760365,0,1,1,2021,8,1,70,55,1,1,0,8.2631502,8.2631502,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,28.25,55.98,10,1,1,0,0,11,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10164,12374,22094,-9,22095,22093,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-918.80878,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10164,12374,22095,22093,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,0,0,0,19,0,-103.69082,0,2,2,2021,23,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.25,55.98,51.14,60.45,1.666666666666667,1,1,0,1,6,11,3,1,2538.75,397467.44,144480.2,246125.48,59443.613,0,0,1802.3625 +10165,12375,22096,-9,-9,-9,1,0,32,0,3,0,3,3,-9,0,5,0,7.5316234,7.8270416,0,0,-1143.0909,-9,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.936276,7.9964342,20.89,67.56,-9,-9,1.666666666666667,1,1,0,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10165,12375,22097,-9,22096,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.95026,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10165,12375,22098,-9,22096,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0554,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10165,12375,22099,-9,22096,-9,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-876.56805,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,2,1,549.75,65255.559,0,0,0,189.58661,0,2928.3264 +10166,12376,22100,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,5.2794638,5.4960294,0,0,-936.77429,0,3,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8421068,42.26,19.76,-9,-9,3.333333333333333,1,1,0,0,0,11,2,0,2542,250573.16,-16058.097,-19530.947,17682.779,0,0,1114.3276 +10167,12377,22101,-9,-9,-9,1,1,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-983.10413,0,3,3,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.85,38.9,-9,-9,10,1,1,0,0,0,4,1,1,681,26935.24,0,4693.5674,0,0,0,503.82001 +10168,12378,22102,-9,22105,22103,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.49567,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10168,12378,22103,22105,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,8.5325289,8.169733,0,7,0,-29.782061,0,2,2,2021,5,0,38,39,1,0,0,14.189792,14.189792,.05,.05,.05,0,0,0,0,0,1,1,0,2.1092105,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10168,12378,22104,-9,22105,22103,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.21588,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10168,12378,22105,22103,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.6307859,8.5705404,0,7,0,79.674568,0,-9,-9,2021,9,0,30,32,1,0,0,20.194372,20.194372,.05,.05,0,0,0,0,0,0,1,1,0,6.6317677,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,602.25,1456334.9,1325615,313671.97,115349.35,265.33276,3568.428,3860.4758 +10169,12379,22106,22107,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.9558654,7.7250667,40,-15,-53.929314,0,-9,-9,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.6744461,53.32,22.68,55.12,44.8,1.666666666666667,3,4,0,1,6,9,3,1,1000.5,618054.75,215427.97,229272.88,0,0,0,2373.6394 +10169,12379,22107,22106,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,5.0193062,4.875104,40,15,-29.852274,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,16.886488,0,0,1,1,0,6.7003613,5.0223031,55.12,44.8,53.32,22.68,3.333333333333333,4,2,0,0,9,9,3,1,1000.5,618054.75,215427.97,229272.88,0,0,0,2373.6394 +10170,12380,22108,22109,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4394445,8.578702,0,31,-5,45.601189,0,2,-9,2021,12,0,37,37,1,0,0,13.348372,13.348372,0,0,0,0,0,0,0,0,1,1,0,0,0,48.94,34.29,61.85,34.03,8.333333333333334,1,1,0,0,9,1,5,0,2285,738976.06,278088.38,460494.34,152454.95,8260.3262,823.46466,4134.8066 +10170,12380,22109,22108,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,7.6855955,8.0503826,5.6173582,31,5,123.23165,0,2,2,2021,6,0,30,30,1,0,0,9.3709917,9.3709917,.05,.05,.05,0,0,0,0,0,1,1,0,1.2964154,5.7447062,61.85,34.03,48.94,34.29,8.333333333333334,1,1,0,0,11,1,5,0,2285,738976.06,278088.38,460494.34,152454.95,8260.3262,823.46466,4134.8066 +10170,12381,22110,-9,22108,22109,1,0,24,0,0,0,1,1,1,0,4,8.2190685,8.1980715,0,0,0,-1040.7278,-9,2,2,2021,13,1,37,0,1,1,1,11.718246,11.718246,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,1,1,4,0,493,114705.89,-7821.6812,0,0,0,0,1563.4564 +10171,12382,22111,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.2741928,8.3174877,0,0,0,-1061.33,0,-9,2,2021,18,6,37,38,1,6,0,9.6718063,9.6718063,0,0,0,0,0,0,0,0,0,0,0,3.1636295,0,34.21,49.64,-9,-9,1.666666666666667,1,1,0,0,14,4,4,1,722,180705.7,0,263924.28,0,0,0,2214.8816 +10172,12383,22112,22113,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,8.423748,8.7652082,7.2311687,51,2,1.0363959,0,3,2,2021,6,0,20,16,1,0,0,27.649134,27.649134,0,0,0,1,0,0,0,0,1,1,0,6.2591481,7.3706651,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,15,10,5,1,1072,3468430.5,1016046.6,1106929.6,0,0,0,4585.9883 +10172,12383,22113,22112,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.6657419,6.1548486,51,-2,-56.653233,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3904057,6.2549458,55.19,54.26,57.16,56.15,10,1,1,0,0,15,10,5,1,1072,3468430.5,1016046.6,1106929.6,0,0,0,4585.9883 +10173,12384,22114,22115,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.7291899,9.0008059,0,28,-1,63.373253,0,2,-9,2021,30,12,56,50,1,12,0,17.476706,17.476706,0,0,0,0,0,0,0,2,1,1,0,0,0,31.04,62.55,30.33,45.18,3.333333333333333,4,2,0,1,12,2,4,1,746.5,684540.75,434363.22,431588.16,190185.52,0,0,5232.5938 +10173,12384,22115,22114,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.0196571,8.0496149,0,28,1,-59.226559,0,2,2,2021,21,8,46,46,1,8,0,8.2323351,8.2323351,.05,.05,0,0,0,0,0,7,1,1,0,3.2238581,0,30.33,45.18,31.04,62.55,6.666666666666667,1,1,0,0,8,2,4,1,746.5,684540.75,434363.22,431588.16,190185.52,0,0,5232.5938 +10174,12385,22116,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.784936,7.9000382,0,0,0,-996.23999,0,2,2,2021,11,0,40,50,1,0,0,7.2250557,7.2250557,.05,.05,0,0,0,0,0,0,0,0,0,1.6988088,0,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,155,275991.97,-61256.594,0,0,0,0,1604.5795 +10175,12386,22117,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,6.5761819,6.413888,0,0,-1034.9857,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,7.8667188,0,58.084934,0,1,1,0,0,6.5804014,66.13,18.36,-9,-9,5,1,1,0,0,0,12,2,0,1005,319736.06,229005.84,197791.64,0,5792.6133,0,2904.4751 +10176,12387,22118,22119,-9,-9,1,0,68,0,0,0,1,1,-9,0,2,7.8747444,7.9253621,0,48,0,36.660309,0,3,1,2021,10,0,18,20,1,0,0,15.985656,15.985656,0,0,0,1,0,5.6518149,0,0,1,1,0,6.9251938,0,54.9,41.3,58.14,48.07,8.333333333333334,1,1,0,0,14,2,4,1,679.5,970724.25,681900.5,130568.63,0,0,0,5207.6758 +10176,12387,22119,22118,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,8.0715857,7.9300427,13,0,159.11922,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.10499,7.9450641,58.14,48.07,54.9,41.3,8.333333333333334,1,1,0,0,13,2,4,1,679.5,970724.25,681900.5,130568.63,0,0,0,5207.6758 +10177,12388,22120,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,5.2380977,5.5232019,0,0,-1025.6815,0,3,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,3.8239939,0,0,1,1,0,0,5.3247552,60.25,22.85,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,3094,-19128.338,20843.096,0,0,0,0,457.84027 +10178,12389,22121,22122,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.725503,9.4128265,0,9,0,100.18419,0,2,1,2021,8,0,60,60,1,0,0,31.549099,31.549099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50.38,58.02,8.333333333333334,1,1,0,0,9,13,5,1,1103,199038.81,32706.248,292560.22,144532.72,0,2772.917,5239.1323 +10178,12389,22122,22121,-9,-9,1,0,49,0,1,0,2,2,-9,0,5,0,0,0,9,0,-24.295343,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.38,58.02,57.16,56.15,8.333333333333334,1,1,0,0,0,13,5,1,1103,199038.81,32706.248,292560.22,144532.72,0,2772.917,5239.1323 +10178,12389,22123,-9,22122,22121,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-882.25781,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,1103,199038.81,32706.248,292560.22,144532.72,0,2772.917,5239.1323 +10178,12390,22124,-9,22122,22121,1,0,21,0,1,1,2,0,0,0,4,0,7.8527594,7.5116267,0,0,-1000.3613,-9,2,1,2021,17,4,0,0,2,4,1,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.4435644,0,48.27,47.75,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,1050,145712.33,55657.793,0,0,1426.8385,0,400.91037 +10178,12391,22125,-9,22122,22121,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-1114.7081,-9,2,1,2021,22,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,0,13,1,1,1455,-86014.625,0,0,0,0,0,0 +10179,12392,22126,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1021.0637,0,-9,3,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,26.15,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,222,6972.4375,0,0,0,0,1105.3491,2389.1526 +10180,12393,22127,22128,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,0,0,54,0,0,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,19.194424,0,0,1,1,0,1.994994,0,43.08,37.18,41.36,34.01,8.333333333333334,2,3,0,0,11,4,1,1,1220.5,815009.25,519753.78,251949.36,0,0,0,183.2747 +10180,12393,22128,22127,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,0,0,11,0,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,35.355827,0,0,1,1,0,0,0,41.36,34.01,43.08,37.18,6.666666666666667,2,3,0,0,0,4,1,1,1220.5,815009.25,519753.78,251949.36,0,0,0,183.2747 +10180,12394,22129,-9,22128,22127,1,0,47,0,0,0,1,1,-9,0,2,7.3877439,7.2509174,0,0,0,-877.8656,0,3,1,2021,19,7,30,30,1,7,0,4.9103708,4.9103708,0,0,0,0,0,0,0,96,1,1,0,0,0,47.79,40.56,-9,-9,6.666666666666667,2,3,0,0,8,4,3,1,222,32461.502,-68083.992,126700.43,0,0,0,684.84198 +10180,12395,22130,-9,22129,-9,1,0,19,0,0,1,2,0,0,0,2,0,0,0,0,0,-992.61951,-9,1,-9,2021,13,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.1,37.58,-9,-9,6.666666666666667,2,3,0,0,0,4,1,1,2085,9977.8906,0,0,0,0,0,538.51355 +10180,12396,22131,-9,22129,-9,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1114.348,-9,1,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,1751,0,0,0,0,0,0,0 +10181,12397,22132,22134,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.4172029,8.487957,0,18,5,-39.128971,0,2,2,2021,9,0,40,40,1,0,0,15.217795,15.217795,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,38.1,55.36,8.333333333333334,2,3,0,0,13,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10181,12397,22133,-9,22134,22132,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.13763,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10181,12397,22134,22132,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.6414871,8.6045866,0,18,-5,22.765297,0,2,3,2021,15,4,43,38,1,4,0,15.030828,15.030828,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.1,55.36,51.41,56.15,8.333333333333334,2,3,0,0,13,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10181,12397,22135,-9,22134,22132,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1075.0499,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,5,1,349.5,479730.88,320976.78,399110.63,255436.97,0,0,4395.7578 +10182,12398,22136,22137,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.7152801,7.6841879,0,6,-1,-70.034187,0,-9,-9,2021,14,3,22,37,1,3,0,11.777434,11.777434,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41,56.99,28.03,54.96,10,1,1,0,0,10,10,4,1,916.66669,26600.834,5418.8608,0,0,8568.2188,65.239502,2342.8926 +10182,12398,22137,22136,-9,-9,1,1,27,1,1,0,1,1,-9,0,4,8.0946789,8.0786448,0,6,1,53.099987,0,-9,-9,2021,24,10,46,50,1,10,0,7.475646,7.475646,.05,.05,0,0,0,0,.40382087,0,1,1,0,0,0,28.03,54.96,41,56.99,6.666666666666667,1,1,0,0,7,10,4,1,916.66669,26600.834,5418.8608,0,0,8568.2188,65.239502,2342.8926 +10182,12398,22138,-9,22136,22137,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-851.16132,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,916.66669,26600.834,5418.8608,0,0,8568.2188,65.239502,2342.8926 +10183,12399,22139,22140,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,30,8,104.80005,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.49,55.09,57.16,56.15,10,1,1,0,0,3,4,3,1,771.5,622031.63,298609.03,285468.53,0,0,0,1105.5376 +10183,12399,22140,22139,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,7.5307846,7.4955502,0,30,-8,-100.01071,0,3,3,2021,9,0,40,40,1,0,0,6.819901,6.819901,.05,.05,0,0,0,0,0,0,1,1,0,1.1675032,0,57.16,56.15,62.49,55.09,6.666666666666667,1,1,0,0,8,4,3,1,771.5,622031.63,298609.03,285468.53,0,0,0,1105.5376 +10184,12400,22141,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,6.9874687,6.9731197,0,0,0,-989.23926,0,3,3,2021,14,2,35,30,1,2,0,2.9306653,2.9306653,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,51.27,34.89,-9,-9,5,1,1,0,0,7,13,2,1,1716,-196540.86,-26084.377,0,0,-1925.7776,601.35358,981.90112 +10184,12401,22142,-9,22141,-9,1,0,21,0,0,0,2,2,1,0,3,7.8202591,7.5890412,0,0,0,-962.94196,-9,2,-9,2021,18,6,37,0,1,6,1,7.3050756,7.3050756,0,0,0,0,0,0,0,14.5,1,0,1,0,0,52.93,52.64,-9,-9,8.333333333333334,1,1,0,1,3,13,3,1,160,116172.33,0,0,0,0,0,1356.9011 +10185,12402,22143,-9,22144,-9,1,1,30,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1011.1893,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,1,0,0,8,1,0,1199,-184840.84,0,0,0,0,0,0 +10185,12403,22144,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,0,0,-899.70825,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,2,3,0,0,0,8,1,0,807,227841.53,0,0,0,0,0,-306.2294 +10186,12404,22145,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,7.1861916,7.5109367,0,0,0,-1096.9817,0,2,2,2021,12,0,16,16,1,0,0,10.659007,10.659007,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.4,55.58,-9,-9,6.666666666666667,1,1,0,0,13,2,2,0,1076.3334,-6547.0679,-26608.795,0,0,302.06815,0,1998.2125 +10186,12404,22146,-9,22145,-9,1,0,11,1,2,1,3,0,-9,0,4,0,0,0,0,0,-991.93292,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,1076.3334,-6547.0679,-26608.795,0,0,302.06815,0,1998.2125 +10186,12404,22147,-9,22145,-9,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.7781,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,2,0,1076.3334,-6547.0679,-26608.795,0,0,302.06815,0,1998.2125 +10187,12405,22148,22149,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,6.34549,6.1433201,0,16,6,-92.622437,0,2,3,2021,6,0,9,9,1,0,0,5.2397628,5.2397628,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.79,55.86,62.39,56.71,5,1,1,0,1,5,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10187,12405,22149,22148,-9,-9,1,1,47,0,2,0,3,3,-9,0,5,8.1653805,8.0993834,0,16,-6,-135.02576,0,3,3,2021,6,0,50,60,1,0,0,8.3499022,8.3499022,.05,.05,0,0,0,0,0,27,1,1,0,0,0,62.39,56.71,54.79,55.86,8.333333333333334,1,1,0,1,11,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10187,12405,22150,-9,22148,22149,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-996.11731,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10187,12405,22151,-9,22148,22149,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.8455,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,3,1,1021.25,229257.89,107401.67,0,0,0,0,2741.2314 +10188,12406,22152,-9,-9,-9,1,0,32,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1125.4471,0,3,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.836031,0,12.36,55.98,-9,-9,3.333333333333333,3,4,0,0,3,2,1,0,695,-143417.72,0,0,0,0,0,1928.5977 +10189,12407,22153,-9,-9,22154,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-844.52893,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,3,0,700,940050.25,1004818.9,0,0,0,0,1729.8909 +10189,12407,22154,-9,-9,-9,1,1,56,0,1,0,2,2,-9,0,4,7.3082585,7.3325849,0,0,0,-954.67084,0,-9,-9,2021,9,0,36,38,1,0,0,5.2780166,5.2780166,0,0,0,0,0,0,0,0,1,1,0,0,0,54.8,50.32,-9,-9,8.333333333333334,1,1,0,0,9,10,3,0,700,940050.25,1004818.9,0,0,0,0,1729.8909 +10190,12408,22155,22156,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.7669268,7.2990913,9,4,-23.356441,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.25918379,7.0180206,54,46,55.36,51.57,8,1,1,0,0,0,6,2,1,870.5,725272.44,-35444.961,678229.5,0,0,0,1580.0364 +10190,12408,22156,22155,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,3.9817069,3.8471241,57,-4,-3.8296907,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7855339,3.6184666,55.36,51.57,54,46,10,1,1,0,0,0,6,2,1,870.5,725272.44,-35444.961,678229.5,0,0,0,1580.0364 +10191,12409,22157,22158,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.2658772,5.4112,11,11,90.988365,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2220421,59.31,49.81,56.1,49.93,8.333333333333334,1,1,0,0,7,6,4,1,541,470928.38,255050.28,107126.51,25349.508,0,0,2674.2559 +10191,12409,22158,22157,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5318241,8.5154705,0,11,-11,-35.165192,0,2,1,2021,6,0,56,56,1,0,0,14.025469,14.025469,.05,.05,0,0,0,0,0,0,1,1,0,2.5434978,0,56.1,49.93,59.31,49.81,8.333333333333334,1,1,0,0,11,6,4,1,541,470928.38,255050.28,107126.51,25349.508,0,0,2674.2559 +10192,12410,22159,22160,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,6,-3,-45.98991,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.06,38.34,60.2,39.82,8.333333333333334,1,1,0,0,3,11,2,1,579,92086.609,27448.621,109311.84,0,0,0,1624.7283 +10192,12410,22160,22159,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.3477707,6.4037867,6,3,-20.692207,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4638968,60.2,39.82,66.06,38.34,8.333333333333334,1,1,0,0,0,11,2,1,579,92086.609,27448.621,109311.84,0,0,0,1624.7283 +10193,12411,22161,-9,22163,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-806.37244,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1426.3334,265958.28,235659.06,77465.547,0,0,0,1948.9882 +10193,12411,22162,-9,22163,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.9497,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,3,1,1426.3334,265958.28,235659.06,77465.547,0,0,0,1948.9882 +10193,12411,22163,-9,-9,-9,1,0,40,0,2,0,1,1,-9,1,4,6.6842628,7.2315698,6.4114347,2,6,-74.936684,0,2,2,2021,7,0,29,27,1,0,0,3.1025424,3.1025424,.05,.05,0,0,0,0,0,42,1,1,0,6.8286591,0,59.14,52.5,38.28,57.07,8.333333333333334,1,1,0,0,10,4,3,1,1426.3334,265958.28,235659.06,77465.547,0,0,0,1948.9882 +10193,12412,22164,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.7334509,7.7037935,0,2,-6,-1.1346433,-9,-9,-9,2021,22,9,30,0,1,9,0,8.4213066,8.4213066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.28,57.07,59.14,52.5,3.333333333333333,1,1,0,1,10,4,3,1,494,-4208.8589,-35593.695,0,0,0,123.69985,1059.1182 +10194,12413,22165,22166,-9,-9,1,1,57,0,0,0,2,2,-9,0,1,7.4385133,7.5635471,0,21,8,96.96315,0,3,1,2021,10,0,24,24,1,0,0,7.1960926,7.1960926,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,42.24,47.53,45.46,8.333333333333334,2,3,0,0,6,8,2,0,1397.5,203882.5,-40283.328,236354.91,42609.535,0,0,832.9729 +10194,12413,22166,22165,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,0,0,0,22,-8,35.597088,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.53,45.46,46.95,42.24,8.333333333333334,2,3,0,0,0,8,2,0,1397.5,203882.5,-40283.328,236354.91,42609.535,0,0,832.9729 +10194,12414,22167,-9,22166,22165,1,0,26,0,0,0,1,1,-9,0,3,7.9354191,8.362505,0,0,0,-972.65295,0,3,2,2021,12,0,35,35,1,0,1,11.786876,11.786876,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.65,56.19,-9,-9,6.666666666666667,2,3,0,0,7,8,4,0,564,-288065.38,77580.289,0,0,0,0,2427.0552 +10194,12415,22168,-9,22166,22165,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-941.46466,0,3,2,2021,9,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,2,3,1,0,0,8,1,0,244,-49650.398,0,0,0,0,0,0 +10195,12416,22169,22170,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,8,6,-13.987406,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5774527,0,52,48,40.69,38.36,7,1,1,0,0,0,6,5,1,364.5,1493159.6,1209017.5,259541.72,0,297.09665,0,3609.1904 +10195,12416,22170,22169,-9,-9,1,0,59,0,0,0,3,3,-9,0,2,8.8912516,9.0320225,0,27,-6,-89.390831,0,3,3,2021,17,5,35,35,1,5,0,23.795813,23.795813,0,0,0,0,0,0,0,42,1,1,0,0,0,40.69,38.36,52,48,3.333333333333333,1,1,0,0,10,6,5,1,364.5,1493159.6,1209017.5,259541.72,0,297.09665,0,3609.1904 +10195,12417,22171,-9,22170,22169,1,0,30,0,0,0,1,1,-9,0,4,7.7662115,7.5927877,0,0,0,-1038.4741,0,3,3,2021,11,0,20,20,1,2,1,13.896839,13.896839,.05,.05,0,0,0,0,0,0,1,1,0,1.0374321,0,48,57,-9,-9,7,1,1,0,0,1,6,3,1,767,55103.52,-61730.598,0,0,0,0,1591.587 +10196,12418,22172,22173,-9,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,5,14,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.96,56.44,48,57,8.333333333333334,2,3,0,0,6,2,1,1,320.5,-154447.11,-21126.832,0,0,0,0,874.88324 +10196,12418,22173,22172,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,0,0,0,5,-14,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,41.96,56.44,7,4,3,0,0,0,2,1,1,320.5,-154447.11,-21126.832,0,0,0,0,874.88324 +10196,12419,22174,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1096.1772,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,0,0,0,2,1,1,1187,21275.67,60666.965,0,0,0,0,1207.5763 +10196,12420,22175,-9,-9,-9,1,0,40,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1133.6168,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,8,2,3,0,0,0,2,1,1,5541,-130001.39,0,0,0,0,0,458.64532 +10197,12421,22176,22177,-9,-9,1,1,64,0,1,0,2,2,-9,0,3,8.1910467,7.9492397,0,9,14,-6.5620675,0,-9,-9,2021,13,1,40,40,1,1,0,8.1221895,8.1221895,0,0,0,0,0,0,0,0,1,1,0,7.6508455,0,49.04,55.86,48.77,60.16,5,1,1,0,1,12,7,3,1,194.5,620227.38,155464.55,640928.56,63045.781,0,0,3427.1035 +10197,12421,22177,22176,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,0,0,0,9,-14,-55.276337,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6754913,0,48.77,60.16,49.04,55.86,5,1,1,0,1,1,7,3,1,194.5,620227.38,155464.55,640928.56,63045.781,0,0,3427.1035 +10197,12422,22178,-9,22177,22176,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-1002.3963,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5397915,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,996,-181426.44,0,0,0,0,0,1550.6687 +10198,12423,22179,22180,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.612565,7.1020389,10,5,160.89569,-9,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3954878,7.3710308,50,46,51,48,7,1,1,0,0,0,9,3,1,1196.5,1159842.4,518976.13,447039.44,0,0,0,2896.3472 +10198,12423,22180,22179,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.0355806,7.31006,10,-5,80.033768,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4650631,6.8810744,51,48,50,46,7,1,1,0,0,0,9,3,1,1196.5,1159842.4,518976.13,447039.44,0,0,0,2896.3472 +10199,12424,22181,22182,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.6590147,8.718894,0,37,0,-37.319828,0,2,2,2021,12,0,35,33,1,0,0,19.544151,19.544151,.05,.05,0,0,0,0,0,0,0,0,0,3.1344583,0,53.09,44.28,52.23,55.6,8.333333333333334,1,1,0,0,11,4,5,1,452,2803566,2223180.8,402485,-11545.908,-1059.1348,3170.519,4619.9824 +10199,12424,22182,22181,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.9277096,9.1179409,0,37,0,-4.7482071,0,2,2,2021,12,2,44,41,1,2,0,15.422918,15.422918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,53.09,44.28,8.333333333333334,1,1,0,0,10,4,5,1,452,2803566,2223180.8,402485,-11545.908,-1059.1348,3170.519,4619.9824 +10200,12425,22183,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.6451178,8.5123434,0,0,0,-968.21521,0,2,3,2021,9,0,45,37,1,0,0,15.535191,15.535191,0,0,0,0,0,0,0,0,0,0,0,0,0,44.78,56.37,-9,-9,5,1,1,0,0,12,11,5,1,261,998339.56,826437.5,97956.719,0,0,0,1690.1508 +10200,12426,22184,-9,22183,-9,1,1,38,0,0,0,1,1,-9,0,2,7.6323566,7.4606104,0,0,0,-1021.8431,0,2,2,2021,22,7,38,37,1,7,1,7.3687267,7.3687267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.54,48.17,-9,-9,3.333333333333333,1,1,0,1,12,11,3,1,564,-19163.484,-51667.402,0,0,0,0,26.320776 +10201,12427,22185,-9,22186,22187,1,1,33,0,0,0,2,2,-9,0,2,6.7398186,6.3935356,0,0,0,-929.22687,0,1,1,2021,22,10,70,60,1,10,0,.98299921,.98299921,0,0,0,0,0,0,0,0,1,1,0,0,0,44.84,49.01,-9,-9,5,1,1,0,1,10,7,2,1,918,-107927.05,0,0,0,0,0,458.74371 +10201,12428,22186,22187,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.5764494,8.9548941,37,-3,-48.459217,0,2,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4514632,8.3122311,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,1207.5,3007910.5,1531844.5,967875.13,0,0,0,5790.8457 +10201,12428,22187,22186,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.5189924,8.6096735,41,3,-64.846504,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7665642,8.695693,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,7,7,5,1,1207.5,3007910.5,1531844.5,967875.13,0,0,0,5790.8457 +10202,12429,22188,22189,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,7.8636198,7.5358057,0,11,-1,-69.164108,0,2,2,2021,16,3,50,60,1,3,0,5.725172,5.725172,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.09,55.36,52.43,55.57,8.333333333333334,1,1,0,1,12,11,4,1,788,678682.38,118860.64,288388.22,6343.6411,0,949.35144,1886.1903 +10202,12429,22189,22188,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.7554407,7.446578,0,11,1,51.011299,0,3,3,2021,12,0,25,25,1,0,0,7.0238414,7.0238414,0,0,0,0,0,0,0,0,1,1,0,0,0,52.43,55.57,48.09,55.36,10,1,1,0,0,12,11,4,1,788,678682.38,118860.64,288388.22,6343.6411,0,949.35144,1886.1903 +10202,12430,22190,-9,22189,22188,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-935.14514,-9,3,3,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,11,1,1,1138,89201.258,0,0,0,0,0,0 +10203,12431,22191,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.0131903,4.5434256,0,0,-1072.0546,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,14.450953,11.980997,132.27812,0,1,1,0,0,4.620584,53,45,-9,-9,10,3,4,0,0,0,8,2,1,2493,384702.69,0,182170.53,0,0,0,1333.0868 +10204,12432,22192,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,2,7.4792843,7.7359872,6.207119,0,0,-918.99072,0,3,-9,2021,15,5,24,21,1,5,0,7.9451241,7.9451241,0,0,0,0,0,0,0,27,1,1,0,6.5710101,0,43.46,30.35,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,158,-243877.25,131308.63,0,0,0,0,710.70251 +10205,12433,22193,22194,-9,-9,1,1,31,1,2,0,2,2,-9,0,1,8.3578596,8.5235815,0,6,1,107.80507,0,-9,-9,2021,22,8,38,38,1,8,0,14.161794,14.161794,.05,.05,0,0,0,0,0,0,1,1,0,2.6425745,0,26.91,36.32,48.32,42.34,6.666666666666667,1,1,0,0,10,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10205,12433,22194,22193,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,9.0464754,9.0857391,0,6,-1,36.691673,0,2,2,2021,12,0,16,7,1,0,0,52.006145,52.006145,0,0,0,0,0,0,0,0,1,1,0,.42633933,0,48.32,42.34,26.91,36.32,8.333333333333334,1,1,0,0,10,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10205,12433,22195,-9,22194,22193,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.2651,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10205,12433,22196,-9,22194,22193,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-884.00757,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,793.5,743687,264993.5,327061.09,15415.282,8733.1836,0,5133.27 +10206,12434,22197,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,2,0,0,0,0,0,-918.88953,0,-9,-9,2021,22,9,0,40,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.97,35.26,-9,-9,1.666666666666667,1,1,1,1,9,5,1,0,256,60570.266,55205.336,0,0,0,0,52.232742 +10207,12435,22198,22200,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.9137025,7.9061675,0,16,-2,-87.951622,0,1,1,2021,12,2,57,38,1,2,0,4.2323999,4.2323999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,50.65,60.47,10,1,1,0,0,12,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10207,12435,22199,-9,22198,22200,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1097.2008,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10207,12435,22200,22198,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.882369,9.0126915,0,16,2,-14.292778,0,3,3,2021,7,0,60,55,1,0,0,13.887701,13.887701,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,41.17,59.31,10,1,1,0,0,12,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10207,12435,22201,-9,22198,22200,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.4574,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,332,105036.03,43656.461,188106.27,85584.898,-46.734299,4079.1221,3699.0542 +10208,12436,22202,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,0,0,0,0,-900.94928,0,3,2,2021,10,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,6,9,1,1,1890,958931.06,-24343.178,547876.38,0,0,0,0 +10208,12437,22203,-9,22202,-9,1,0,24,0,0,0,1,1,-9,0,4,8.2557402,8.5385942,0,0,0,-1032.176,0,1,-9,2021,9,2,38,39,1,2,0,12.634062,12.634062,.05,.05,0,0,0,0,0,0,0,0,0,4.3394227,0,50.46,53.68,-9,-9,6.666666666666667,1,1,0,0,4,9,5,1,383,190211.67,90747.602,217185.25,104556.74,0,0,1577.1991 +10209,12438,22204,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.9341884,8.126976,0,0,0,-877.35828,0,2,-9,2021,14,3,43,41,1,3,0,7.8520045,7.8520045,0,0,0,0,0,0,0,2,0,0,0,2.4115324,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,14,11,4,1,602,106856.73,0,0,0,0,0,2405.4666 +10209,12439,22205,-9,22204,-9,1,0,24,0,0,0,1,1,-9,0,5,8.4118595,8.2055712,0,0,0,-956.77429,0,2,-9,2021,3,0,35,30,1,0,1,12.799911,12.799911,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,7,11,4,1,400,284496.31,35213.406,313914.59,0,0,0,927.86804 +10210,12440,22206,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.9067669,9.1323156,6.0521998,0,0,-1027.65,0,2,2,2021,8,0,40,40,1,0,0,21.063845,21.063845,.05,.05,0,0,0,0,0,0,1,1,0,6.4815273,0,49.27,55.11,-9,-9,5,3,4,0,0,6,8,5,1,730,-22418.348,61359.012,0,0,2267.9077,0,4051.6121 +10210,12440,22207,-9,22206,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-981.66718,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,730,-22418.348,61359.012,0,0,2267.9077,0,4051.6121 +10211,12441,22208,22209,-9,-9,1,0,47,0,1,0,1,1,-9,0,5,8.3132362,8.3144846,0,22,1,-.89721531,0,2,2,2021,10,0,43,42,1,0,0,13.054907,13.054907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,12,1,5,1,559.33331,496222.56,117896.84,296819.84,56696.91,12991.38,0,4776.1855 +10211,12441,22209,22208,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,8.9238605,9.0906029,0,22,-1,19.287794,0,2,1,2021,12,0,41,40,1,0,0,19.04262,19.04262,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,13,1,5,1,559.33331,496222.56,117896.84,296819.84,56696.91,12991.38,0,4776.1855 +10211,12441,22210,-9,22208,22209,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.80127,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,559.33331,496222.56,117896.84,296819.84,56696.91,12991.38,0,4776.1855 +10212,12442,22211,22212,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,46,2,-116.55786,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8240883,0,0,1,1,0,0,0,36.79,56.27,57.6,46.44,8.333333333333334,1,1,0,0,0,9,2,1,1274,350923,40097.34,159817.75,0,0,0,1308.45 +10212,12442,22212,22211,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.8166232,7.1747551,46,-2,60.871525,-9,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.055843156,6.6250997,57.6,46.44,36.79,56.27,6.666666666666667,1,1,0,0,0,9,2,1,1274,350923,40097.34,159817.75,0,0,0,1308.45 +10213,12443,22213,22214,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.5588522,9.5625734,0,22,4,-122.13014,-9,-9,-9,2021,11,2,40,0,1,2,0,44.719143,44.719143,0,0,0,0,0,0,0,0,0,0,0,7.5919061,0,42.52,57.56,50.08,51.72,8.333333333333334,2,3,0,0,10,8,5,1,907,746431.75,-24106.387,285667.06,75700.758,10096.381,0,8538.6738 +10213,12443,22214,22213,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,9.5317631,9.7015114,0,7,-4,-107.82419,0,1,1,2021,13,1,46,48,1,1,0,35.830849,35.830849,0,0,0,0,0,0,0,0,0,0,0,0,0,50.08,51.72,42.52,57.56,6.666666666666667,2,3,0,0,6,8,5,1,907,746431.75,-24106.387,285667.06,75700.758,10096.381,0,8538.6738 +10214,12444,22215,22216,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,9.7032452,9.3594599,0,24,1,-16.681789,0,2,2,2021,9,0,20,20,1,0,0,90.388885,90.388885,.05,.05,0,0,0,0,0,2,0,0,0,7.7759023,0,61.56,43.2,59.29,42.77,10,1,1,0,0,13,1,5,1,700,1868458.5,1384148,262375.88,0,0,0,10261.244 +10214,12444,22216,22215,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,7.7469745,7.883153,0,12,-1,27.967865,0,-9,-9,2021,6,0,65,40,1,0,0,4.1724558,4.1724558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.29,42.77,61.56,43.2,10,1,1,0,0,9,1,5,1,700,1868458.5,1384148,262375.88,0,0,0,10261.244 +10215,12445,22217,-9,22218,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.8526,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,227,30753.461,0,0,0,0,0,1295.9282 +10215,12445,22218,-9,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,7.0744228,7.0589671,0,0,0,-964.07996,0,2,2,2021,6,0,18,20,1,0,0,8.7393494,8.7393494,0,0,0,0,0,0,0,0,1,1,0,0,0,47.77,56.48,-9,-9,5,1,1,0,0,6,11,2,0,227,30753.461,0,0,0,0,0,1295.9282 +10216,12446,22219,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-857.80737,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1209192,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,410,54765.039,0,324791.84,0,0,0,618.0813 +10217,12447,22220,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.7554779,8.6682444,0,0,0,-996.80792,0,3,2,2021,6,0,35,50,1,0,0,16.53067,16.53067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,459,106046.74,-13347.447,136770.97,28299.201,11696.251,0,1997.2842 +10217,12447,22221,-9,22220,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1233.4556,-9,2,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.9726237,0,56.47,59.4,-9,-9,10,1,1,0,0,0,2,4,1,459,106046.74,-13347.447,136770.97,28299.201,11696.251,0,1997.2842 +10217,12448,22222,-9,22220,-9,1,0,27,0,1,0,2,2,-9,0,5,8.0231285,8.0252285,0,0,0,-1057.9967,0,2,3,2021,11,0,45,35,1,0,1,6.6011939,6.6011939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.67,59.26,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,521,274887.03,-102276.17,129098.18,121015.95,0,2379.884,1242.9305 +10218,12449,22223,-9,22224,22226,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1100.9557,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22224,22226,-9,-9,1,0,38,0,3,0,1,1,-9,0,3,7.6759257,8.1093864,0,7,-1,4.6218863,0,2,3,2021,16,4,16,16,1,4,0,15.581896,15.581896,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.73,53,44.93,54.77,5,1,1,0,0,8,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22225,-9,22224,22226,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.4412,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22226,22224,-9,-9,1,1,39,0,3,0,1,1,-9,0,4,8.4283142,8.5526438,0,7,1,.82638192,0,-9,-9,2021,14,3,37,42,1,3,0,18.303068,18.303068,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.93,54.77,28.73,53,8.333333333333334,1,1,0,0,8,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10218,12449,22227,-9,22224,22226,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-849.42914,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,1205.6,4362.2568,27976.459,0,0,2600.0713,0,3066.0525 +10219,12450,22228,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,0,7.5777268,7.5381446,0,0,-929.41888,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.129137,7.3360171,42.84,55.93,-9,-9,8.333333333333334,2,3,0,0,3,12,3,1,683,660358.75,517865,145139.33,27937.113,0,0,1501.5403 +10220,12451,22229,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.683599,8.124711,7.1533899,0,0,-1071.2299,0,3,3,2021,11,0,7,38,1,0,0,40.711273,40.711273,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.452528,44.56,59.1,-9,-9,6.666666666666667,1,1,0,0,12,13,4,1,491,188202.95,148686.45,211796.83,0,0,0,2086.3335 +10220,12452,22230,-9,22229,-9,1,1,27,0,0,0,1,1,-9,0,4,8.3875389,8.513298,0,0,0,-949.7724,-9,2,-9,2021,11,0,42,0,1,0,1,10.350802,10.350802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,13,5,1,601,43216.98,90.160927,203452.02,0,0,0,1814.8738 +10221,12453,22231,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,7.0176196,7.2594576,0,0,-1023.8967,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8095684,6.8534513,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,419,462767.28,194443.03,47036.059,0,0,0,1267.6714 +10222,12454,22232,22233,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,7.1201444,7.1409173,0,4,1,111.82925,0,3,3,2021,17,4,16,0,1,4,0,9.9598408,9.9598408,0,0,0,0,0,0,0,74.5,1,1,0,0,0,43.4,31.71,19.01,22.64,3.333333333333333,1,1,0,0,1,12,2,0,615,111280.7,-12726.741,0,0,0,0,2217.5359 +10222,12454,22233,22232,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,4,-1,-15.957546,-9,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,43.4,31.71,0,1,1,0,1,0,12,2,0,615,111280.7,-12726.741,0,0,0,0,2217.5359 +10223,12455,22234,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.1279564,6.9112668,0,0,-955.86145,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6170254,7.3855548,42.36,56.12,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,182,1005019.1,296485.59,344735.13,0,0,0,1673.0677 +10224,12456,22235,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.6231022,7.4761219,0,0,-1074.4855,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5770979,7.4504881,51.41,45.62,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,234,565743.5,118211.85,201376.14,0,0,0,1542.2869 +10225,12457,22236,-9,22237,22238,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.0955,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10225,12457,22237,22238,-9,-9,1,0,35,0,2,0,2,2,0,0,3,0,0,0,10,-5,12.917114,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.23,43.46,53.08,47.11,5,1,1,0,0,4,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10225,12457,22238,22237,-9,-9,1,1,40,0,2,0,1,1,-9,0,3,9.9258299,9.8211174,0,10,5,-54.291737,0,-9,-9,2021,8,0,45,40,1,0,0,37.043274,37.043274,.05,.05,.05,0,0,0,0,0,1,1,0,.51577264,0,53.08,47.11,58.23,43.46,6.666666666666667,1,1,0,0,9,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10225,12457,22239,-9,22237,22238,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.09833,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,762,1418589.8,495456.88,572116.31,0,6139.9375,0,5065.8687 +10226,12458,22240,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-887.15869,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,0,13,1,1,1318,170165.27,0,0,0,0,0,1108.2559 +10227,12459,22241,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,4.0601077,4.4671164,0,0,-1052.4646,0,3,3,2021,28,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1893148,28.97,20.69,-9,-9,1.666666666666667,1,1,0,0,0,1,2,0,450,1635.5205,-51128,0,0,7155.4956,0,1165.3857 +10228,12460,22242,22243,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,3.1594648,3.1638463,10,0,-96.360634,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,27.045668,15.193103,246.19336,0,1,1,0,0,3.3069654,51.53,49.1,42.27,39.62,8.333333333333334,1,1,0,0,0,5,2,1,2268.5,692587.38,363615.75,259507.59,0,0,0,1424.5139 +10228,12460,22243,22242,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,55,0,-73.119347,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.27,39.62,51.53,49.1,3.333333333333333,1,1,0,0,0,5,2,1,2268.5,692587.38,363615.75,259507.59,0,0,0,1424.5139 +10229,12461,22244,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,7.8675499,7.4935203,0,0,0,-946.75818,0,1,2,2021,8,1,40,40,1,1,0,6.4444251,6.4444251,0,0,.05,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,11,7,3,1,2178,113645.64,-99570.086,0,0,0,1065.7606,277.20291 +10229,12462,22245,-9,22244,-9,1,0,19,0,0,0,2,2,-9,0,2,7.444767,7.4409804,0,0,0,-1005.2404,0,2,-9,2021,25,9,20,50,1,9,1,9.1820793,9.1820793,0,0,0,0,0,0,0,0,0,0,0,0,0,22.24,55.25,-9,-9,1.666666666666667,1,1,0,1,2,7,3,1,1531,-137804.7,0,0,0,0,0,1360.8088 +10230,12463,22246,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.9637122,7.9144158,0,0,0,-869.30457,0,2,2,2021,9,1,30,30,1,1,0,11.469593,11.469593,0,0,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,569,34934.797,0,0,0,0,0,1276.0845 +10231,12464,22247,22248,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,32,-6,79.22847,0,3,3,2021,10,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.7352834,0,37.87,61.03,44.82,47.44,3.333333333333333,1,1,0,0,0,2,4,1,270,1048117.4,475620.63,535408.88,92669.453,0,0,3443.1501 +10231,12464,22248,22247,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,8.4098234,8.660305,32,6,80.765617,0,2,2,2021,21,10,0,0,4,10,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.2580714,8.7980633,44.82,47.44,37.87,61.03,5,1,1,0,0,0,2,4,1,270,1048117.4,475620.63,535408.88,92669.453,0,0,3443.1501 +10232,12465,22249,22250,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,6,2,78.325821,0,3,3,2021,36,12,0,0,4,12,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,27.89,18.61,54.96,53.17,1.666666666666667,1,1,0,0,0,6,2,1,465,225116.13,-30102.168,184280.66,0,0,0,1009.4433 +10232,12465,22250,22249,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,6.1349692,6.0702424,0,6,-2,-52.993191,0,3,3,2021,7,0,10,10,1,0,0,4.6366291,4.6366291,0,0,0,0,0,0,0,0,1,0,1,0,0,54.96,53.17,27.89,18.61,8.333333333333334,1,1,0,0,7,6,2,1,465,225116.13,-30102.168,184280.66,0,0,0,1009.4433 +10233,12466,22251,-9,22252,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.3246,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,391.33334,35309.223,51144.73,0,0,2322.0198,0,1983.061 +10233,12466,22252,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.6082144,8.7855864,0,0,0,-1031.7008,0,3,1,2021,12,0,52,47,1,0,0,12.113284,12.113284,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.06,62.04,-9,-9,6.666666666666667,1,1,0,0,4,2,3,1,391.33334,35309.223,51144.73,0,0,2322.0198,0,1983.061 +10233,12466,22253,-9,22252,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.758,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,3,1,391.33334,35309.223,51144.73,0,0,2322.0198,0,1983.061 +10234,12467,22254,22255,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,50,-2,-1.6036851,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.9744167,0,0,1,1,0,0,0,51.89,35.98,60.12,30.87,6.666666666666667,1,1,0,0,6,12,2,0,445.5,157609.95,105961.31,111884.98,0,9195.7188,0,1763.2314 +10234,12467,22255,22254,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.9488864,6.0461764,11,2,35.881344,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,10.292639,0,0,1,1,0,0,6.2322116,60.12,30.87,51.89,35.98,8.333333333333334,1,1,0,0,0,12,2,0,445.5,157609.95,105961.31,111884.98,0,9195.7188,0,1763.2314 +10235,12468,22256,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.8256025,8.9121504,5.7342229,0,0,-950.94165,-9,3,2,2021,9,0,35,0,1,0,0,27.910418,27.910418,.05,.05,0,0,0,0,0,0,1,1,0,7.2620687,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,10,12,5,1,993,399728.31,411905.34,128316.45,109598.05,1595.0344,0,2841.9763 +10236,12469,22257,22258,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,0,0,0,28,-7,-49.145821,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,34.07,41.21,8.333333333333334,1,1,0,0,5,10,5,1,4325,164572.52,-12030.548,266975.09,158203.97,0,0,6291.0288 +10236,12469,22258,22257,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.687315,9.5131235,0,29,7,41.871536,0,2,2,2021,12,0,65,65,1,0,0,26.713234,26.713234,.05,.05,0,0,0,0,0,0,0,0,0,.70863146,0,34.07,41.21,52,54.51,8.333333333333334,1,1,0,0,14,10,5,1,4325,164572.52,-12030.548,266975.09,158203.97,0,0,6291.0288 +10236,12470,22259,-9,22257,22258,1,1,19,0,0,0,2,2,-9,0,4,8.7330551,8.7822704,0,0,0,-964.15735,0,2,1,2021,16,4,40,35,1,4,1,21.213787,21.213787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.87,61.63,-9,-9,6.666666666666667,1,1,0,0,4,10,5,1,518,-108735.06,53316.734,0,0,0,5506.8569,1875.3225 +10237,12471,22260,22262,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.7112303,8.6503525,0,12,-8,-57.888691,0,2,1,2021,6,0,37,37,1,0,0,21.243248,21.243248,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,60.53,48.35,8.333333333333334,1,1,0,0,14,13,4,1,595,1296893.3,491630.81,511853.13,0,0,0,4617.0576 +10237,12471,22261,-9,22260,22262,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1060.7531,-9,1,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,14,13,4,1,595,1296893.3,491630.81,511853.13,0,0,0,4617.0576 +10237,12471,22262,22260,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.4745731,8.3151598,0,12,8,-5.8490119,0,2,2,2021,7,0,40,37,1,0,0,11.814124,11.814124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,62.49,55.09,8.333333333333334,1,1,0,0,14,13,4,1,595,1296893.3,491630.81,511853.13,0,0,0,4617.0576 +10238,12472,22263,-9,-9,-9,1,0,35,0,0,0,2,2,-9,1,3,6.6486292,6.8920197,0,0,0,-988.19208,0,2,1,2021,10,1,10,6,1,1,0,10.573605,10.573605,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,46.48,-9,-9,8.333333333333334,1,1,0,0,5,11,2,0,154,91122.305,0,163507.7,0,0,1623.6924,1484.6129 +10239,12473,22264,22268,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,9.1648207,9.1305037,0,9,1,-80.73317,0,1,2,2021,6,0,39,41,1,0,0,31.094488,31.094488,.05,.05,0,0,0,0,0,0,1,1,0,4.8298621,0,52.83,49.11,59.29,49.68,8.333333333333334,1,1,0,0,12,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22265,-9,22268,22264,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.05573,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22266,-9,22268,22264,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1017.0628,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22267,-9,22268,22264,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-958.36005,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10239,12473,22268,22264,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,0,0,0,9,-1,-2.7229187,0,2,3,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.1329317,0,59.29,49.68,52.83,49.11,10,1,1,0,0,0,13,4,1,673,548707.75,86739.734,378196.66,194901.06,1458.3391,0,3079.7571 +10240,12474,22269,22270,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.1028423,8.0485325,0,30,5,102.9939,0,3,3,2021,10,1,50,38,1,1,0,8.6394501,8.6394501,0,0,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,46.05,57.22,8.333333333333334,1,1,0,0,14,9,5,1,692,-3018.7178,56941.102,0,0,0,404.79791,3689.5713 +10240,12474,22270,22269,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2947493,8.4985867,5.574605,30,-5,-15.262856,0,2,2,2021,10,2,41,42,1,2,0,14.483622,14.483622,.05,.05,0,0,0,0,0,0,0,0,0,2.962822,6.0199847,46.05,57.22,58.3,52.91,8.333333333333334,1,1,0,0,14,9,5,1,692,-3018.7178,56941.102,0,0,0,404.79791,3689.5713 +10240,12475,22271,-9,22269,22270,1,1,22,0,0,0,2,2,-9,0,4,8.4353247,8.4293919,0,0,0,-837.2392,0,2,2,2021,21,9,43,43,1,9,1,12.077756,12.077756,0,0,0,0,0,0,0,0,0,0,0,1.9262878,0,25.26,61.35,-9,-9,6.666666666666667,1,1,0,0,6,9,5,1,691,-27081.869,171175.02,0,0,0,339.17484,2388.1499 +10241,12476,22272,22273,-9,-9,1,1,46,1,1,0,2,2,-9,0,3,7.8159952,7.9558496,0,11,5,-19.355715,0,3,3,2021,12,0,37,37,1,0,0,8.7968597,8.7968597,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,38.76,59.4,6.666666666666667,1,1,0,0,9,5,4,1,543.66669,190230.23,91526.164,91749.789,21623.506,2330.9351,3380.293,3622.4497 +10241,12476,22273,22272,-9,-9,1,0,41,1,1,0,2,2,-9,0,5,8.7079611,8.595767,0,11,-5,27.209356,0,2,2,2021,13,3,37,40,1,3,0,17.615513,17.615513,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.76,59.4,54.96,53.17,5,1,1,0,0,14,5,4,1,543.66669,190230.23,91526.164,91749.789,21623.506,2330.9351,3380.293,3622.4497 +10241,12476,22274,-9,22273,22272,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1062.184,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,543.66669,190230.23,91526.164,91749.789,21623.506,2330.9351,3380.293,3622.4497 +10242,12477,22275,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.27075,8.3806915,0,0,0,-1083.8883,0,3,2,2021,16,3,40,36,1,3,0,11.46945,11.46945,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,725,100802.45,74845.609,254095.98,0,0,0,1541.8895 +10242,12478,22276,-9,22275,-9,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-1075.0642,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,452,-141069.66,0,0,0,0,0,0 +10243,12479,22277,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,0,0,0,0,0,-982.66821,0,3,3,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,1,0,2,2,1,0,795,157057.33,0,0,0,0,598.00208,-87.704918 +10244,12480,22278,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.7325568,7.6865463,0,0,-899.20605,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4696236,7.7842631,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,246,831082.75,590637.31,211867.13,0,0,0,2538.0178 +10245,12481,22279,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.2157726,7.9460149,0,0,-981.16144,0,3,3,2021,16,5,0,0,4,5,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,0,7.9570537,50.85,54.91,-9,-9,8.333333333333334,1,1,0,0,13,4,4,1,5577,48225.391,-15362.468,0,0,0,6010.5566,1254.3715 +10246,12482,22280,22281,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1558547,7.2186513,6.3032784,6,-3,100.82146,0,3,3,2021,1,0,7,18,1,0,0,22.410946,22.410946,0,0,0,0,0,0,0,0,0,0,0,7.4206429,6.2688117,60.12,54.8,51,48,8.333333333333334,1,1,0,0,7,11,5,1,1292.5,1497246.9,1199210.8,360575.59,24917.145,0,0,6283.9238 +10246,12482,22281,22280,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.4658918,9.3455544,0,6,3,33.533863,0,-9,-9,2021,10,0,36,36,1,1,0,34.437725,34.437725,.05,.05,0,0,0,0,0,0,0,0,0,7.244453,0,51,48,60.12,54.8,7,1,1,0,0,1,11,5,1,1292.5,1497246.9,1199210.8,360575.59,24917.145,0,0,6283.9238 +10247,12483,22282,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,3.0032983,3.8109181,0,0,-1132.0613,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1026659,2.9699745,53.5,53.7,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,530,113507.13,0,0,0,0,0,1594.9358 +10247,12484,22283,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.599535,8.2258949,0,0,0,-1025.2524,0,-9,-9,2021,13,1,40,40,1,1,0,11.302269,11.302269,0,0,0,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,5,1,1,0,0,1,6,4,1,662,-6999.668,0,0,0,0,684.30115,1930.6252 +10247,12485,22284,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,8.0466299,8.3116503,0,0,0,-935.29016,0,-9,-9,2021,6,0,41,40,1,0,0,8.1291618,8.1291618,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.89,48.6,-9,-9,8.333333333333334,1,1,0,0,5,6,4,1,267,-224299.8,-57746.25,0,0,0,0,561.73883 +10248,12486,22285,22286,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.0787711,7.3718123,5.4936247,5,-10,-23.873264,0,2,2,2021,7,0,20,20,1,0,0,7.5486717,7.5486717,0,0,0,0,0,0,0,0,0,0,0,0,5.4572983,57.06,57.76,52,48,10,1,1,0,0,9,10,4,0,230,828324.94,135219.11,722189.75,198831.31,0,0,3127.6621 +10248,12486,22286,22285,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,8.2875175,8.5193796,5.521749,5,10,-43.575974,0,-9,-9,2021,10,0,40,35,1,1,0,13.341182,13.341182,0,0,.05,0,0,0,0,0,0,0,0,0,5.8470778,52,48,57.06,57.76,7,1,1,0,0,1,10,4,0,230,828324.94,135219.11,722189.75,198831.31,0,0,3127.6621 +10249,12487,22287,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.5424948,7.7360249,5.7489734,0,0,-1027.2959,0,3,2,2021,1,0,30,0,1,0,0,7.9517455,7.9517455,.05,.05,0,0,0,0,0,2,1,1,0,5.9517608,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,3,6,3,1,513.5,-194039.78,46997.531,0,0,4350.8096,0,2387.5232 +10249,12487,22288,-9,22287,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.3058,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,513.5,-194039.78,46997.531,0,0,4350.8096,0,2387.5232 +10250,12488,22289,22290,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.1579046,7.3244557,9,-1,144.93692,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,2.8184776,4.3718743,31.107094,0,1,1,0,7.7070823,7.0952091,65.79000000000001,32.28,56.59,39.96,8.333333333333334,1,1,0,0,2,12,2,1,2264,531641.25,218220.88,157906.45,0,0,0,2683.9524 +10250,12488,22290,22289,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,9,1,102.19073,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,5.6892858,0,0,1,1,0,2.1762009,0,56.59,39.96,65.79000000000001,32.28,8.333333333333334,1,1,0,0,0,12,2,1,2264,531641.25,218220.88,157906.45,0,0,0,2683.9524 +10251,12489,22291,22292,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.1940746,7.8409204,36,-2,-40.953602,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9713879,8.048274,58.47,50.22,54.79,55.86,8.333333333333334,1,1,0,0,6,7,4,1,1214.5,1272360.9,1053393.6,0,0,907.198,9746.5205,2528.6123 +10251,12489,22292,22291,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.3501463,7.464932,37,2,63.096916,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2006035,7.3206921,54.79,55.86,58.47,50.22,8.333333333333334,1,1,0,0,5,7,4,1,1214.5,1272360.9,1053393.6,0,0,907.198,9746.5205,2528.6123 +10252,12490,22293,22294,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1312761,8.1398096,0,31,3,-78.530441,-9,-9,-9,2021,6,0,38,0,1,0,0,8.7064686,8.7064686,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.7,49.11,6.666666666666667,2,3,0,0,12,9,4,0,828.5,178853.67,-92160.172,251513.64,0,5919.0518,0,2371.7256 +10252,12490,22294,22293,-9,-9,1,0,46,0,0,0,3,3,-9,0,3,7.4817381,7.6875219,0,10,-3,20.504818,-9,3,3,2021,3,0,55,0,1,0,0,4.7954931,4.7954931,0,0,0,0,0,0,0,0,0,0,0,.563743,0,51.7,49.11,52,54.51,6.666666666666667,2,3,0,0,11,9,4,0,828.5,178853.67,-92160.172,251513.64,0,5919.0518,0,2371.7256 +10252,12491,22295,-9,22294,22293,1,1,25,0,0,0,1,1,-9,0,4,7.9569073,8.0240889,0,0,0,-887.53015,-9,3,2,2021,6,0,55,0,1,0,1,5.6096964,5.6096964,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.06,55.28,-9,-9,10,2,3,0,0,6,9,4,0,423,100714.4,-44760.582,0,0,0,0,1468.3635 +10252,12492,22296,-9,22294,22293,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-977.6781,-9,3,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.1190665,0,41.46,53.68,-9,-9,6.666666666666667,2,3,0,0,3,9,1,0,1277,270036.47,0,0,0,0,0,-55.455055 +10253,12493,22297,-9,-9,-9,1,0,24,1,2,0,1,1,-9,0,3,8.00389,8.3742132,0,0,0,-1046.6798,0,3,3,2021,14,4,53,33,1,4,0,5.4617391,5.4617391,.05,.05,0,0,0,0,0,2,1,1,0,0,0,40.94,58.35,-9,-9,3.333333333333333,2,3,0,1,3,7,3,1,1268,-128923.68,103703.01,0,0,0,0,1253.9468 +10254,12494,22298,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1019.908,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.54,45.64,-9,-9,6.666666666666667,2,3,0,0,0,9,1,1,1090,-57062.074,0,0,0,0,0,1884.2926 +10255,12495,22299,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.8916001,5.8518796,0,0,-1030.8925,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8460565,60.4,31.55,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,717,452051.69,0,332487.69,0,0,0,990.52985 +10256,12496,22300,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.0401239,7.5629935,0,0,-955.76947,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4199924,7.669838,56.33,51.02,-9,-9,5,1,1,0,0,0,11,3,1,349,244160.08,133940.48,0,0,0,0,2782.3857 +10257,12497,22301,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,7.8352942,7.9864001,0,0,-955.30658,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,11.550262,0,0,1,1,0,0,7.6635108,45.41,41.2,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1677,210864.7,174618.52,174433.75,0,0,0,1014.324 +10258,12498,22302,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,8.7860737,8.814229,0,11,-5,10.482295,0,2,2,2021,22,9,38,43,1,9,0,17.294363,17.294363,.05,.05,0,0,0,0,0,2,0,0,0,0,0,37.18,46.97,39.39,37.66,6.666666666666667,1,1,0,0,12,7,5,1,1194,575956.75,145488.97,319193.81,104214.28,0,0,3239.7507 +10258,12499,22303,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.264349,7.6758161,0,11,5,83.667732,0,3,3,2021,17,5,42,38,1,5,0,13.150172,13.150172,0,0,0,0,0,0,0,0,0,0,0,0,0,39.39,37.66,37.18,46.97,6.666666666666667,1,1,0,0,13,7,5,1,1676,2522866,1785829.4,532651.38,45998.453,6114.4658,16602.357,1529.2539 +10259,12500,22304,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.19104,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,0,0,0,.18904795,0,53,44,-9,-9,8,1,1,0,0,0,6,1,1,764,148520.3,0,0,0,0,0,-522.29834 +10260,12501,22305,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.0008197,5.5867953,0,0,-1070.5378,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,6.8750167,.2620416,0,1,1,0,0,6.1591325,50.23,47.06,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,178,118205.95,86891.555,135844.31,0,0,0,1041.0559 +10261,12502,22306,22307,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,6,3,0,0,2,2,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,0,0,0,4.7403212,0,21.47,62.18,57.16,56.15,3.333333333333333,1,1,0,0,4,6,1,1,1308,54176.68,48544.504,0,0,0,0,17.738731 +10261,12502,22307,22306,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,0,0,0,6,-3,0,0,2,2,2021,6,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5001211,0,57.16,56.15,21.47,62.18,8.333333333333334,1,1,0,0,4,6,1,1,1308,54176.68,48544.504,0,0,0,0,17.738731 +10262,12503,22308,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.4344821,6.259655,0,0,-1048.0282,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4294052,38.87,58.23,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,810,568035.25,178078.5,289863.53,0,0,0,1889.2379 +10263,12504,22309,-9,22311,22310,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.611,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,913.66669,327439.81,157199,127435.94,0,0,0,5665.8457 +10263,12504,22310,22311,-9,-9,1,1,38,0,1,0,1,1,-9,0,3,8.5734243,8.5887785,0,19,1,-111.01593,0,2,2,2021,7,0,45,50,1,0,0,12.183441,12.183441,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,12,8,4,1,913.66669,327439.81,157199,127435.94,0,0,0,5665.8457 +10263,12504,22311,22310,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.8515744,7.6078629,0,19,-1,117.05257,0,2,2,2021,8,0,30,30,1,0,0,9.509984,9.509984,0,0,0,0,0,0,0,0,1,1,0,8.0282326,0,54.96,53.17,57.33,53.46,6.666666666666667,1,1,0,0,12,8,4,1,913.66669,327439.81,157199,127435.94,0,0,0,5665.8457 +10264,12505,22312,22313,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,9.0087824,8.6188564,0,6,1,32.349594,0,3,2,2021,11,0,50,50,1,0,0,13.723385,13.723385,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.94,45.86,35.09,55.76,6.666666666666667,1,1,0,0,13,9,5,1,863,150408.75,167745.81,0,0,12491.903,0,4444.2153 +10264,12505,22313,22312,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,8.6598387,8.496294,0,6,-1,43.632431,0,-9,-9,2021,13,2,37,37,1,2,0,15.559473,15.559473,0,0,0,0,0,0,0,0,0,0,0,0,0,35.09,55.76,49.94,45.86,3.333333333333333,1,1,0,0,8,9,5,1,863,150408.75,167745.81,0,0,12491.903,0,4444.2153 +10264,12506,22314,-9,22313,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1018.8016,0,2,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,24.45,48,-9,-9,3.333333333333333,1,1,0,0,14,9,1,1,578,-313806.69,0,0,0,0,0,0 +10265,12507,22315,22317,-9,-9,1,0,34,1,1,0,1,1,-9,0,5,8.5691795,8.4874487,0,11,-4,64.815941,0,2,2,2021,5,0,37,38,1,0,0,16.081253,16.081253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.81,59.91,8.333333333333334,1,1,0,0,5,10,4,0,806,-52238.543,142959.94,262575.44,119566.63,7391.708,0,3806.2273 +10265,12507,22316,-9,22315,22317,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-986.0686,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,806,-52238.543,142959.94,262575.44,119566.63,7391.708,0,3806.2273 +10265,12507,22317,22315,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,8.0228939,7.9654002,0,11,4,55.894299,0,2,2,2021,13,2,44,43,1,2,0,8.433239,8.433239,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,57.06,57.76,6.666666666666667,1,1,0,0,9,10,4,0,806,-52238.543,142959.94,262575.44,119566.63,7391.708,0,3806.2273 +10266,12508,22318,22319,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.0347891,8.1901846,11,5,-32.215153,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6809492,8.2587605,58.47,50.22,48.77,57.64,8.333333333333334,1,1,0,0,0,9,3,1,289.5,960832,543466.38,285591.19,0,0,0,1872.47 +10266,12508,22319,22318,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,47,-5,62.97073,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,58.47,50.22,10,1,1,0,0,0,9,3,1,289.5,960832,543466.38,285591.19,0,0,0,1872.47 +10267,12509,22320,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,7.0567212,6.7637258,0,0,-972.94702,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7763605,6.6466956,57.57,49.69,-9,-9,6.666666666666667,1,1,0,0,12,9,2,1,289,292246.72,282929.94,0,0,0,0,493.01675 +10268,12510,22321,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,9.6974173,9.8170719,0,0,-1039.5167,0,-9,-9,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4872465,9.6455135,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,468,1547713.5,975922.81,308908.09,0,0,0,8293.9795 +10269,12511,22322,22323,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.646162,7.5913792,43,4,-91.93264,0,-9,-9,2021,13,2,0,20,4,2,0,0,0,0,0,0,0,0,0,.24366875,0,1,1,0,0,7.7306175,58.72,51.29,61.43,43.34,10,1,1,0,0,15,5,3,1,675.5,824153.13,421766.63,72432.813,0,0,0,1858.4441 +10269,12511,22323,22322,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.1392126,7.0481224,43,-4,-45.152103,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4343157,6.9951057,61.43,43.34,58.72,51.29,8.333333333333334,1,1,0,0,4,5,3,1,675.5,824153.13,421766.63,72432.813,0,0,0,1858.4441 +10270,12512,22324,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-920.93909,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.66,44.07,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,439,8175.6108,-30788.117,0,0,0,0,819.47888 +10271,12513,22325,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1006.7933,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.15,56.54,-9,-9,8.333333333333334,1,1,1,0,0,4,1,0,295,-102140.08,0,0,0,0,0,586.61438 +10272,12514,22326,22327,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.7592831,7.0940008,39,-5,199.40337,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9305258,54.95,44.79,46.89,40.3,5,1,1,0,0,0,10,4,1,254.5,866204.31,379712.06,287496.41,0,0,0,3596.2656 +10272,12514,22327,22326,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.9163418,8.004858,39,5,120.27346,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,7.0254774,0,0,1,1,0,6.6556697,7.9302464,46.89,40.3,54.95,44.79,6.666666666666667,1,1,0,0,0,10,4,1,254.5,866204.31,379712.06,287496.41,0,0,0,3596.2656 +10273,12515,22328,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4047499,8.2453623,0,0,0,-1021.6888,0,3,3,2021,12,0,40,37,1,0,0,10.18285,10.18285,.05,.05,0,0,0,0,0,0,0,0,0,.41017842,0,42.61,49.31,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,274,444390.5,410635.56,76796.547,0,0,0,1521.1658 +10273,12516,22329,-9,22328,-9,1,1,27,0,0,0,2,2,-9,0,3,7.3386393,7.2899866,0,0,0,-1138.3185,0,2,-9,2021,11,0,32,25,1,0,1,7.1430259,7.1430259,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,8.333333333333334,1,1,0,0,5,11,3,1,354,79933.297,0,0,0,0,0,586.19745 +10274,12517,22330,-9,22332,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.3518,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,1,0,916.66669,117955.23,0,0,0,0,0,1239.4503 +10274,12517,22331,-9,22332,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-921.6734,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,1,0,916.66669,117955.23,0,0,0,0,0,1239.4503 +10274,12517,22332,-9,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1115.8732,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,43.99,-9,-9,8.333333333333334,3,4,0,1,0,5,1,0,916.66669,117955.23,0,0,0,0,0,1239.4503 +10274,12518,22333,-9,22332,-9,1,1,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.7207,-9,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,2,0,306,177730.72,0,0,0,0,0,0 +10274,12519,22334,-9,22332,-9,1,1,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-980.3465,-9,3,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,5,1,0,370,130125.48,0,0,0,0,0,0 +10275,12520,22335,22336,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,8.1428595,8.6108952,0,23,-20,66.830559,0,-9,-9,2021,8,0,40,41,1,0,0,12.158451,12.158451,0,0,0,0,0,0,0,0,1,1,0,5.1446934,0,54.2,57.49,54,46,8.333333333333334,1,1,0,0,10,8,4,1,608,1200344.3,710877.13,392117.56,0,0,0,3059.4763 +10275,12520,22336,22335,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1134152,7.0277948,23,20,-77.863213,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9225997,7.2098699,54,46,54.2,57.49,8,1,1,0,0,0,8,4,1,608,1200344.3,710877.13,392117.56,0,0,0,3059.4763 +10276,12521,22337,22338,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,6.9339581,7.3846879,59,0,185.93442,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.2312894,28.11,26.85,28.87,25.58,3.333333333333333,1,1,0,0,0,2,2,1,522,376298.5,191197.98,207351.88,-9540.2344,1317.0979,5277.3477,2554.2354 +10276,12521,22338,22337,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,59,0,29.210552,0,3,3,2021,19,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.87,25.58,28.11,26.85,5,1,1,0,0,0,2,2,1,522,376298.5,191197.98,207351.88,-9540.2344,1317.0979,5277.3477,2554.2354 +10277,12522,22339,22340,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.4776754,8.6780596,0,10,3,-29.048058,0,2,2,2021,9,1,35,45,1,1,0,20.025089,20.025089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,40.71,44.01,8.333333333333334,1,1,0,0,9,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10277,12522,22340,22339,-9,-9,1,0,38,0,2,0,2,2,-9,0,2,0,0,0,10,-3,-53.03347,0,2,-9,2021,12,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.71,44.01,54.1,59.11,5,1,1,0,0,8,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10277,12522,22341,-9,22340,22339,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.8085,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10277,12522,22342,-9,22340,22339,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.5908,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,1201.25,331764.78,415017.47,48238.734,62009.711,0,2367.1821,2114.354 +10278,12523,22343,-9,-9,-9,1,0,25,0,0,0,2,2,-9,1,3,7.9304252,7.9329648,0,0,0,-823.46393,0,2,2,2021,14,3,48,32,1,3,0,6.3007169,6.3007169,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,0,0,7,7,3,0,234,184405.05,0,0,0,0,0,983.10638 +10279,12524,22344,22345,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,8.3540916,8.4152565,0,6,-2,-33.257706,0,2,2,2021,8,0,37,37,1,0,0,13.972171,13.972171,.05,.05,0,0,0,0,0,0,0,0,0,1.5840265,0,51.73,58.82,54.2,57.49,10,1,1,0,0,6,2,5,1,907.5,301778.81,235343.14,48112.539,76722.25,7966.9595,0,3506.9253 +10279,12524,22345,22344,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.0336218,8.3973837,0,6,2,-2.2636094,0,3,2,2021,10,0,43,43,1,0,0,11.486278,11.486278,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,51.73,58.82,8.333333333333334,1,1,0,0,6,2,5,1,907.5,301778.81,235343.14,48112.539,76722.25,7966.9595,0,3506.9253 +10279,12525,22346,-9,22345,22344,1,1,23,0,0,0,1,1,1,0,4,7.1953659,7.3605599,0,0,0,-1004.1506,-9,1,1,2021,10,0,20,0,1,0,1,9.4513683,9.4513683,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,6.666666666666667,1,1,0,0,6,2,3,1,299,88197.328,0,0,0,0,0,942.06512 +10280,12526,22347,22348,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,6.9968777,6.9405718,7,2,79.989136,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0705876,6.8675504,54.43,49.12,57.48,47.92,8.333333333333334,1,1,0,0,0,4,3,1,914.5,802860.5,441157.97,305232.41,0,0,0,3218.9155 +10280,12526,22348,22347,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.7986403,7.5568585,7,-2,-4.6876769,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6419001,57.48,47.92,54.43,49.12,8.333333333333334,1,1,0,0,4,4,3,1,914.5,802860.5,441157.97,305232.41,0,0,0,3218.9155 +10281,12527,22349,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.0789404,7.944325,0,0,0,-971.85962,0,2,2,2021,12,0,40,40,1,0,0,9.3375473,9.3375473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.36,53.42,-9,-9,3.333333333333333,1,1,0,1,6,7,4,0,786,58171.273,37946.738,112387.87,51112.832,0,97.711563,1553.5985 +10282,12528,22350,22351,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,8.2666836,8.4472218,0,6,2,56.648899,0,-9,-9,2021,11,0,40,40,1,0,0,11.270017,11.270017,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,41.47,56.81,8.333333333333334,1,1,0,0,9,10,4,1,688.33331,78484.781,108572.5,123786.47,50685.813,0,0,3028.0662 +10282,12528,22351,22350,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.8367367,7.9012017,0,6,-2,51.491714,0,3,3,2021,10,0,40,40,1,0,0,7.2318716,7.2318716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.47,56.81,54.2,57.49,6.666666666666667,1,1,0,0,9,10,4,1,688.33331,78484.781,108572.5,123786.47,50685.813,0,0,3028.0662 +10282,12528,22352,-9,22351,22350,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-976.54114,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,688.33331,78484.781,108572.5,123786.47,50685.813,0,0,3028.0662 +10283,12529,22353,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,2.5759358,2.358743,0,0,-996.52942,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5887837,1.9900271,48.2,31.39,-9,-9,5,1,1,0,0,0,1,2,0,108,270176.25,-37401.148,149303.27,0,0,0,385.01202 +10284,12530,22354,-9,-9,-9,1,0,48,0,0,0,1,1,-9,1,1,0,0,0,0,0,-946.60187,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.76,23.91,-9,-9,0,1,1,0,0,0,4,1,0,853,109890.05,81596.945,0,0,174.59308,0,1477.3641 +10285,12531,22355,-9,22356,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.67999,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,0,724,595661.38,330599.66,421133.69,223081.94,7333.6821,0,2060.8108 +10285,12531,22356,-9,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.7049665,8.575922,0,0,0,-1102.1254,0,2,-9,2021,7,0,38,38,1,0,0,16.044228,16.044228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,8,9,4,0,724,595661.38,330599.66,421133.69,223081.94,7333.6821,0,2060.8108 +10285,12531,22357,-9,22356,-9,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.743,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,4,0,724,595661.38,330599.66,421133.69,223081.94,7333.6821,0,2060.8108 +10286,12532,22358,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.7714863,6.6562648,0,0,-897.67871,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7091942,52.24,48.84,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,383,838403.69,189071.27,163549.48,0,0,0,1104.5201 +10287,12533,22359,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.3206549,8.135582,0,0,0,-905.30524,-9,-9,-9,2021,15,3,36,0,1,3,0,13.83274,13.83274,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,13,4,0,555,-53299.004,0,0,0,0,0,867.43481 +10288,12534,22360,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1068.3876,1,3,2,2021,7,0,0,46,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,8,5,1,1,595.5,1293538.4,0,466901.69,0,0,0,1158.0151 +10288,12534,22361,-9,22360,-9,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1083.8646,-9,1,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.1927838,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,595.5,1293538.4,0,466901.69,0,0,0,1158.0151 +10288,12535,22362,-9,22360,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-993.63184,0,1,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6157353,0,42.96,48.48,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,103,-108416.44,0,0,0,0,0,314.58374 +10289,12536,22363,22364,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,1.9178393,2.096904,46,0,3.3163989,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.287199,1.7979598,56.47,46.82,48.91,43.45,8.333333333333334,1,1,0,0,9,9,2,1,569.5,291364.69,195677.06,174732.88,0,0,0,2294.8779 +10289,12536,22364,22363,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7673392,6.8120661,49,0,118.37553,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4489412,6.5822396,48.91,43.45,56.47,46.82,10,1,1,0,0,0,9,2,1,569.5,291364.69,195677.06,174732.88,0,0,0,2294.8779 +10290,12537,22365,22366,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,50,-2,14.590569,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6902499,0,51.83,57.2,52,48,8.333333333333334,1,1,0,0,0,9,5,1,1679.5,487013.47,146496.41,357786.88,130083.66,0,0,4225.0518 +10290,12537,22366,22365,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.550395,8.9899883,7.2193546,9,2,-76.609253,0,-9,-9,2021,10,0,45,45,1,1,0,15.881071,15.881071,.05,.05,0,0,0,0,0,0,1,1,0,4.5314779,7.7430863,52,48,51.83,57.2,7,1,1,0,0,1,9,5,1,1679.5,487013.47,146496.41,357786.88,130083.66,0,0,4225.0518 +10291,12538,22367,-9,22368,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1004.9967,-9,2,-9,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,5,3,4,0,0,0,8,1,0,1747.5,88938.266,0,0,0,0,0,595.43475 +10291,12538,22368,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1084.5491,0,2,1,2021,14,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,38.87,-9,-9,3.333333333333333,3,4,1,0,0,8,1,0,1747.5,88938.266,0,0,0,0,0,595.43475 +10292,12539,22369,22370,-9,-9,1,1,36,0,2,0,1,1,-9,0,4,9.0167522,8.7247581,0,15,0,-65.008698,0,2,2,2021,7,0,35,35,1,0,0,26.576342,26.576342,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.33,55.93,8.333333333333334,2,3,0,0,9,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10292,12539,22370,22369,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.0182486,7.8969526,0,15,0,103.43147,0,2,1,2021,10,0,20,20,1,0,0,15.805946,15.805946,.05,.05,0,0,0,0,0,0,1,1,0,2.4932222,0,46.33,55.93,57.16,56.15,8.333333333333334,2,3,0,0,5,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10292,12539,22371,-9,22370,22369,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.5595,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10292,12539,22372,-9,22370,22369,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1167.9486,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,879.5,273914.72,149215.67,299920.09,187313.89,0,3396.5527,4275.6968 +10293,12540,22373,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,4.2483964,4.188643,0,0,-1071.1694,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,.1516162,0,14.5,1,1,0,0,4.6087766,34.6,32.91,-9,-9,3.333333333333333,1,1,0,0,0,12,2,1,269,43195.922,0,120310.19,0,0,0,896.29932 +10294,12541,22374,22375,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,0,0,8,-1,-30.921692,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.39496812,0,50.25,56.54,58.73,54.25,10,1,1,0,0,0,2,5,1,1028.5,783550.63,472230.38,274397.63,143854.63,1862.957,4731.4746,4093.7197 +10294,12541,22375,22374,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,9.4165058,9.3274212,0,8,1,34.450779,0,3,3,2021,7,0,50,50,1,0,0,26.311363,26.311363,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,58.73,54.25,50.25,56.54,0,1,1,0,0,9,2,5,1,1028.5,783550.63,472230.38,274397.63,143854.63,1862.957,4731.4746,4093.7197 +10295,12542,22376,22377,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,6.9197426,7.4214706,0,26,-2,8.1034794,0,2,2,2021,6,0,15,15,1,0,0,8.3266153,8.3266153,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.41,56.15,8.333333333333334,2,3,0,0,9,4,2,1,416.5,256065.34,0,320993.38,0,0,1161.9923,1223.3174 +10295,12542,22377,22376,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,6.1082315,5.9854751,0,6,2,-12.84203,0,-9,-9,2021,6,0,40,45,1,0,0,1.3506371,1.3506371,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,54.79,55.86,8.333333333333334,2,3,0,0,9,4,2,1,416.5,256065.34,0,320993.38,0,0,1161.9923,1223.3174 +10295,12543,22378,-9,22376,22377,1,0,18,0,0,0,2,2,1,0,4,7.1002173,7.009058,0,0,0,-827.78723,-9,2,2,2021,9,0,12,0,1,0,1,12.196935,12.196935,0,0,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,10,2,3,0,0,1,4,2,1,367,-140169.67,0,0,0,0,0,1233.5854 +10295,12544,22379,-9,22376,22377,1,1,20,0,0,0,2,2,1,0,5,6.4056106,6.3299956,0,0,0,-992.22791,-9,2,2,2021,8,2,18,0,1,2,1,3.2491598,3.2491598,0,0,0,0,0,0,0,0,1,1,0,0,0,51,60,-9,-9,5,2,3,0,0,6,4,2,1,2060,0,0,0,0,0,0,467.31131 +10296,12545,22380,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-862.67236,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.88,48.2,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,454,217539.25,0,0,0,0,0,1346.4087 +10297,12546,22381,-9,22382,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-989.78406,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,565.5,157088.92,85588.727,92694.281,59032.703,1775.734,160.15399,1678.7535 +10297,12546,22382,-9,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,7.9274445,7.8920851,0,0,0,-988.31305,0,2,2,2021,25,12,40,40,1,12,0,8.6429691,8.6429691,.05,.05,0,0,0,0,0,2,1,1,0,0,0,18.2,56.57,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,565.5,157088.92,85588.727,92694.281,59032.703,1775.734,160.15399,1678.7535 +10298,12547,22383,22384,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,6.4073806,6.5389209,0,22,-10,-38.317558,0,1,1,2021,18,7,24,24,1,7,0,2.6411262,2.6411262,0,0,0,0,0,0,0,0,1,1,0,0,0,29.72,52.59,36.25,33.82,1.666666666666667,2,3,0,0,11,8,2,0,361.66666,380065.47,148926.58,342012.5,66641.633,0,0,1618.1992 +10298,12547,22384,22383,-9,-9,1,1,50,0,2,0,1,1,-9,0,2,7.3702707,7.170311,0,22,10,107.35584,0,3,1,2021,19,6,16,27,1,6,0,11.028824,11.028824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.25,33.82,29.72,52.59,0,2,3,0,1,14,8,2,0,361.66666,380065.47,148926.58,342012.5,66641.633,0,0,1618.1992 +10298,12547,22385,-9,22383,22384,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.75482,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,0,361.66666,380065.47,148926.58,342012.5,66641.633,0,0,1618.1992 +10299,12548,22386,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,9.4296417,9.4049711,0,0,-1012.7237,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7397954,9.0439825,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,362,1945316.1,699605.56,192978.27,0,0,0,4016.6997 +10300,12549,22387,22389,-9,-9,1,1,32,2,2,0,1,1,-9,0,3,8.5366898,8.2423325,0,9,1,73.147552,0,2,2,2021,18,6,37,37,1,6,0,20.994286,20.994286,.05,.05,0,0,0,0,0,2,1,1,0,0,0,26.61,59.47,32.96,56.51,6.666666666666667,1,1,0,0,9,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10300,12549,22388,-9,22389,22387,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.0165,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10300,12549,22389,22387,-9,-9,1,0,31,2,2,0,1,1,-9,0,4,7.7605562,7.7057438,0,9,-1,74.48114,0,2,2,2021,13,3,29,29,1,3,0,12.39638,12.39638,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.96,56.51,26.61,59.47,8.333333333333334,1,1,0,0,9,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10300,12549,22390,-9,22389,22387,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-916.87384,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,864.25,168837.56,72412.617,129551.67,91001.273,-236.41458,5091.543,3337.5464 +10301,12550,22391,-9,-9,-9,1,0,43,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1035.8406,0,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,34.1,49.01,-9,-9,8.333333333333334,1,1,1,0,0,10,1,0,858,234540.59,0,0,0,437.7113,0,298.92462 +10302,12551,22392,22393,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.4847212,8.4572983,0,28,1,-19.742701,0,-9,-9,2021,4,0,40,40,1,0,0,13.536789,13.536789,.05,.05,0,0,0,0,0,0,0,0,0,6.9385571,0,62.49,55.09,59.53,56.44,10,1,1,0,0,14,2,5,1,946.5,306743.25,140124.86,208481.61,0,0,3351.4255,4358.29 +10302,12551,22393,22392,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.8808627,7.7012038,0,27,-1,78.141121,0,3,2,2021,7,0,32,33,1,0,0,7.4202347,7.4202347,.05,.05,0,0,0,0,0,0,0,0,0,8.0839243,0,59.53,56.44,62.49,55.09,10,1,1,0,0,14,2,5,1,946.5,306743.25,140124.86,208481.61,0,0,3351.4255,4358.29 +10302,12552,22394,-9,22393,22392,1,1,24,0,0,0,1,1,-9,0,4,8.3799524,8.1348314,0,0,0,-891.11053,0,1,2,2021,12,1,48,40,1,1,1,8.8118753,8.8118753,.05,.05,0,0,0,0,0,0,0,0,0,7.3670306,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,231,538893.75,34263.355,226237.11,0,1285.4307,3021.281,1633.9419 +10302,12553,22395,-9,22393,22392,1,0,23,0,0,0,1,1,1,0,4,7.9616451,7.6462626,0,0,0,-1153.6438,-9,1,2,2021,6,0,37,0,1,0,1,9.7813616,9.7813616,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,377,-34825.797,75319.445,0,0,0,0,820.02618 +10303,12554,22396,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.0623,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.68,37.85,-9,-9,5,1,1,0,0,8,9,1,0,1350,112338.69,87776.797,0,0,0,0,846.61621 +10304,12555,22397,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1055.7606,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0258839,0,60.47,41.03,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,601,1115787.9,1106597.1,403304.22,127484.36,4766.8774,27362.961,1213.6934 +10305,12556,22398,-9,22399,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1114.4095,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1204.6666,1070.1094,-47339.145,82958.875,88307.883,0,0,2065.2576 +10305,12556,22399,-9,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.5623732,8.8093672,0,12,2,-61.901039,0,2,1,2021,11,0,43,43,1,0,0,11.860838,11.860838,0,0,0,0,0,0,0,0,1,1,0,0,0,30.67,65.95,41.17,59.31,8.333333333333334,1,1,0,0,11,2,4,1,1204.6666,1070.1094,-47339.145,82958.875,88307.883,0,0,2065.2576 +10305,12556,22400,-9,22399,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-916.42432,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,1204.6666,1070.1094,-47339.145,82958.875,88307.883,0,0,2065.2576 +10305,12557,22401,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.0645018,8.0814028,0,12,-2,-52.087196,0,3,3,2021,5,0,20,19,1,0,0,22.214087,22.214087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,30.67,65.95,8.333333333333334,1,1,0,0,5,2,4,1,559,-80135.773,29277.629,0,0,0,0,356.26193 +10306,12558,22402,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.6369152,7.1043711,0,0,0,-935.59583,0,2,3,2021,6,0,13,13,1,0,0,13.382669,13.382669,0,0,0,0,0,0,0,0,0,0,0,2.8870652,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,619,-153569.56,0,0,0,358.40652,0,1179.2444 +10307,12559,22403,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1018.9042,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.1046937,0,62.49,55.09,-9,-9,1.666666666666667,1,1,0,0,0,7,1,0,653,55690.129,0,0,0,0,0,1892.3768 +10308,12560,22404,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.2307215,6.1454964,0,0,-1031.326,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.83075958,5.991354,52,45,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,384,325754.41,93184.094,159662.56,0,0,0,1594.9049 +10309,12561,22405,-9,22406,22408,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.8775,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10309,12561,22406,22408,-9,-9,1,0,38,1,2,0,1,1,-9,0,3,8.7581501,9.0150318,6.1083617,1,0,114.7542,-9,-9,-9,2021,9,0,72,0,1,0,0,7.0998006,7.0998006,0,0,0,0,0,0,0,0,1,1,0,6.1718473,0,58.32,50.22,49.79,51.62,8.333333333333334,1,1,0,0,5,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10309,12561,22407,-9,22406,22408,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-894.70984,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10309,12561,22408,22406,-9,-9,1,1,47,1,2,0,2,2,-9,0,5,8.8649778,9.0283995,0,1,9,-74.65136,0,2,2,2021,10,0,50,50,1,0,0,15.817376,15.817376,.05,.05,0,0,0,0,0,0,1,1,0,3.6104796,0,49.79,51.62,58.32,50.22,8.333333333333334,1,1,0,0,9,2,5,1,476.75,2933276.5,1782485.9,822110.75,236929.59,0,0,5733.8242 +10310,12562,22409,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1032.1759,0,3,2,2021,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6045613,0,29.64,52.79,-9,-9,1.666666666666667,1,1,0,0,11,7,1,1,951,0,0,0,0,0,0,508.54825 +10311,12563,22410,22411,-9,-9,1,1,41,0,1,0,3,3,-9,0,2,8.3263798,8.2584505,0,13,2,-157.45032,0,3,3,2021,20,8,55,50,1,8,0,8.7469244,8.7469244,.05,.05,0,0,0,0,0,0,1,1,0,.20177589,0,45.28,34.98,19.4,51.97,5,1,1,0,1,11,7,4,1,824.33331,505682.47,55306.094,407930.19,0,0,0,3143.2524 +10311,12563,22411,22410,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,7.9249053,7.750514,0,13,-2,-21.464104,0,1,2,2021,24,12,43,42,1,12,0,7.6483278,7.6483278,0,0,0,0,0,0,0,0,1,1,0,2.7853761,0,19.4,51.97,45.28,34.98,3.333333333333333,1,1,0,0,9,7,4,1,824.33331,505682.47,55306.094,407930.19,0,0,0,3143.2524 +10311,12563,22412,-9,22411,22410,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-934.95068,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,4,1,824.33331,505682.47,55306.094,407930.19,0,0,0,3143.2524 +10312,12564,22413,-9,22414,22415,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.1488,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10312,12564,22414,22415,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,7.4534078,7.2466764,0,8,-5,-112.03744,0,2,2,2021,15,4,11,9,1,4,0,17.09186,17.09186,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.51,54.51,6.666666666666667,1,1,0,0,10,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10312,12564,22415,22414,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.9865713,8.9448948,0,8,5,94.312515,0,1,1,2021,8,0,50,56,1,0,0,18.706177,18.706177,.05,.05,.05,0,0,0,0,0,1,1,0,.61982906,0,48.51,54.51,51.73,58.82,8.333333333333334,1,1,0,0,10,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10312,12564,22416,-9,22414,22415,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.79205,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,4,1,983.5,281651.5,10145.098,426042.41,209858.89,0,0,3823.9587 +10313,12565,22417,22418,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.6242371,7.9685612,30,-3,86.753517,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.9767311,7.5545373,28.86,65.16,51.19,52.17,8.333333333333334,1,1,0,0,5,9,3,1,1103,1018344.6,714458.5,286249.06,0,7346.356,1015.1414,2943.105 +10313,12565,22418,22417,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.5733523,6.5864482,11,3,-112.15401,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2902312,6.9218926,51.19,52.17,28.86,65.16,8.333333333333334,1,1,0,0,9,9,3,1,1103,1018344.6,714458.5,286249.06,0,7346.356,1015.1414,2943.105 +10314,12566,22419,22420,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,7.1678586,7.4230947,62,4,86.051102,0,3,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5387502,7.3797703,31.75,19.7,43.26,41.24,3.333333333333333,1,1,0,0,0,1,3,1,506,286574.41,163829.14,79621.047,0,0,0,2679.6001 +10314,12566,22420,22419,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.0776086,6.3602381,62,-4,-14.472859,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.6179252,6.0248322,43.26,41.24,31.75,19.7,6.666666666666667,1,1,0,0,0,1,3,1,506,286574.41,163829.14,79621.047,0,0,0,2679.6001 +10315,12567,22421,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,6.7370372,6.9243746,0,0,-990.90308,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4924459,6.5655251,64.79000000000001,40.37,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,3762,196334.56,205185.84,123411.46,0,15616.8,1781.2747,677.96124 +10315,12568,22422,-9,-9,22421,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1043.1764,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.84,24.64,-9,-9,5,1,1,0,0,0,9,1,1,1327,100095.71,0,0,0,0,0,-681.09302 +10316,12569,22423,-9,22424,-9,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.51257,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,253,262527.84,136744.16,151622.91,0,0,0,688.95166 +10316,12569,22424,-9,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,6.5843425,6.3138795,0,0,0,-939.06323,0,2,2,2021,2,0,30,44,1,0,0,2.9716527,2.9716527,.05,.05,0,0,0,0,0,0,1,0,1,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,2,0,253,262527.84,136744.16,151622.91,0,0,0,688.95166 +10316,12569,22425,-9,22424,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-857.74609,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,0,253,262527.84,136744.16,151622.91,0,0,0,688.95166 +10317,12570,22426,22428,-9,-9,1,1,36,0,2,0,2,2,-9,0,3,9.8662453,9.8924799,7.2536836,11,2,-88.589203,0,3,2,2021,11,0,10,10,1,0,0,159.11797,159.11797,.05,.05,0,0,0,0,0,0,1,1,0,0,6.8678937,64.96000000000001,40.38,48.28,60.18,8.333333333333334,1,1,0,0,9,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10317,12570,22427,-9,22428,22426,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2741,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10317,12570,22428,22426,-9,-9,1,0,34,0,2,0,1,1,-9,0,4,8.2521639,8.3668137,0,11,-2,52.075729,0,2,2,2021,10,0,37,35,1,0,0,10.381478,10.381478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,64.96000000000001,40.38,8.333333333333334,1,1,0,0,8,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10317,12570,22429,-9,22428,22426,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.95728,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,631.5,750730.63,177768.13,280129.31,28801.98,1753.1003,0,20066.703 +10318,12571,22430,22431,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5206575,8.6794662,0,11,-12,-18.776518,0,2,3,2021,2,0,90,40,1,0,0,3.9977043,3.9977043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.58,51.4,51.6,38.59,8.333333333333334,1,1,0,0,10,4,5,1,974,399471.63,142962.97,144339.28,0,9492.2168,0,3342.2007 +10318,12571,22431,22430,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,8.031621,8.2975245,6.980629,11,12,49.536575,0,3,-9,2021,10,0,37,0,1,0,0,7.0809355,7.0809355,.05,.05,0,0,0,0,0,0,0,0,0,1.8115754,6.8855476,51.6,38.59,41.58,51.4,8.333333333333334,1,1,0,0,13,4,5,1,974,399471.63,142962.97,144339.28,0,9492.2168,0,3342.2007 +10319,12572,22432,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.6493616,8.285965,0,0,-917.76978,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9268007,8.2276592,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,178,563512.94,371717.19,133722.83,0,0,0,2934.6577 +10320,12573,22433,-9,22434,22435,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.5835,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,0,1443.3334,50967.719,85432.391,132579.28,55613.617,11045.233,1352.408,3418.4683 +10320,12573,22434,22435,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,7.9987173,7.7801538,0,26,0,125.68326,0,3,3,2021,14,4,23,23,1,4,0,12.888734,12.888734,.05,.05,0,0,0,0,0,0,1,1,0,4.6705112,0,52.62,45.08,45.13,54.73,8.333333333333334,1,1,0,0,10,4,4,0,1443.3334,50967.719,85432.391,132579.28,55613.617,11045.233,1352.408,3418.4683 +10320,12573,22435,22434,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.4022388,8.8113489,0,26,0,-173.82918,0,-9,2,2021,12,3,37,37,1,3,0,14.679272,14.679272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.13,54.73,52.62,45.08,3.333333333333333,1,1,0,0,9,4,4,0,1443.3334,50967.719,85432.391,132579.28,55613.617,11045.233,1352.408,3418.4683 +10320,12574,22436,-9,22434,22435,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-895.88477,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.19,40.02,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,505,-69866.273,0,0,0,-239.27208,0,232.62578 +10321,12575,22437,22438,-9,-9,1,0,19,0,0,0,2,2,-9,0,4,7.7815418,8.0643177,0,2,-2,-132.06277,0,-9,-9,2021,13,2,45,40,1,2,0,6.3937631,6.3937631,0,0,0,0,0,0,0,0,1,1,0,0,0,40.83,59.68,42.85,62.85,6.666666666666667,1,1,0,0,2,5,4,0,1115,-2074.2334,0,0,0,-8.9321899,0,2021.0181 +10321,12575,22438,22437,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,7.8956332,7.899961,0,2,2,-17.164721,0,2,2,2021,13,3,50,40,1,3,0,6.5924239,6.5924239,0,0,0,0,0,0,0,2,1,1,0,0,0,42.85,62.85,40.83,59.68,6.666666666666667,1,1,0,0,5,5,4,0,1115,-2074.2334,0,0,0,-8.9321899,0,2021.0181 +10322,12576,22439,22440,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.2702746,5.1896138,5,0,82.446457,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5267339,5.2720246,42.17,56.08,57.16,56.15,8.333333333333334,1,1,0,0,0,1,3,1,669,1192325.3,779341.38,275870.31,0,0,0,3059.7305 +10322,12576,22440,22439,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.2247725,7.944953,46,0,-19.119738,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4085784,8.3276577,57.16,56.15,42.17,56.08,8.333333333333334,1,1,0,0,0,1,3,1,669,1192325.3,779341.38,275870.31,0,0,0,3059.7305 +10323,12577,22441,22442,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.7613549,7.7106891,0,2,1,-22.961718,0,-9,-9,2021,8,0,40,41,1,0,0,7.2773905,7.2773905,0,0,0,0,0,0,0,0,0,0,0,6.6543632,0,42.35,55.99,40.41,50.59,8.333333333333334,1,1,0,0,8,6,4,1,551.5,26921.943,20617.967,105200.11,118576.3,0,668.59564,3478.7334 +10323,12577,22442,22441,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.2492571,8.2755575,0,2,-1,21.237873,0,-9,-9,2021,12,1,44,44,1,1,0,11.853084,11.853084,.05,.05,0,0,0,0,0,0,0,0,0,6.405231,0,40.41,50.59,42.35,55.99,5,4,2,0,0,7,6,4,1,551.5,26921.943,20617.967,105200.11,118576.3,0,668.59564,3478.7334 +10323,12578,22443,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,2,7.8902011,8.0120382,0,0,0,-1176.7281,0,-9,-9,2021,21,6,39,39,1,6,0,8.2102089,8.2102089,0,0,0,0,0,0,0,0,0,0,0,0,0,23.22,50.45,-9,-9,1.666666666666667,1,1,0,1,3,6,4,1,3671,-268967.94,0,0,0,3377.6323,0,1136.1182 +10324,12579,22444,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.123836,6.2543802,0,0,-1026.9614,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.396163,0,69.84,17.55,-9,-9,6.666666666666667,1,1,0,0,2,5,2,0,1006,484170.91,234540.41,211235.77,0,0,0,1048.7725 +10325,12580,22445,22446,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2133183,6.8667626,7,0,-88.961304,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3689785,7.352344,57.16,56.15,60.3,46.58,10,1,1,0,0,3,9,5,1,1198.5,1926311.3,1794080.4,266025.5,11610.779,4485.3608,0,6571.6377 +10325,12580,22446,22445,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,9.2263126,8.9933863,6.6821618,7,0,-108.0153,0,3,3,2021,8,0,30,30,1,0,0,28.964115,28.964115,.05,.05,0,0,0,0,0,0,1,1,0,7.0828156,6.5200992,60.3,46.58,57.16,56.15,10,1,1,0,0,8,9,5,1,1198.5,1926311.3,1794080.4,266025.5,11610.779,4485.3608,0,6571.6377 +10325,12581,22447,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.2152948,8.2751427,0,0,0,-992.06879,0,-9,-9,2021,9,0,35,30,1,1,0,18.188128,18.188128,.05,.05,0,0,0,0,0,0,1,1,0,4.7416835,0,51,56,-9,-9,8,1,1,0,0,1,9,4,1,454,394115.41,172875.44,625846.38,504599.47,24001.764,0,2171.7961 +10326,12582,22448,22449,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.4352636,8.3354368,0,7,-1,73.553162,0,2,1,2021,13,2,43,30,1,2,0,9.7894526,9.7894526,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.17,17.7,49.17,56.72,6.666666666666667,1,1,0,0,7,5,5,1,295.5,1919802.3,1773648.4,227439.78,0,1552.8682,0,3875.6191 +10326,12582,22449,22448,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.0033846,8.9752216,0,7,1,17.449673,0,1,2,2021,9,0,50,55,1,0,0,22.282551,22.282551,.05,.05,0,0,0,0,0,0,0,0,0,7.2455983,0,49.17,56.72,55.17,17.7,8.333333333333334,1,1,0,0,8,5,5,1,295.5,1919802.3,1773648.4,227439.78,0,1552.8682,0,3875.6191 +10326,12583,22450,-9,22448,22449,1,1,23,0,0,0,2,2,0,0,5,0,0,0,0,0,-940.90295,-9,2,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,5,1,1,1052,-6834.0552,0,0,0,0,2077.8445,0 +10326,12584,22451,-9,22448,22449,1,1,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-978.92133,-9,2,1,2021,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.63,56.14,-9,-9,10,1,1,0,0,3,5,1,1,364,-128957.8,0,0,0,0,2546.7319,221.47496 +10327,12585,22452,-9,22454,-9,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1009.3305,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22453,-9,22454,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-990.4873,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22454,-9,-9,-9,1,0,33,0,4,0,2,2,-9,0,3,8.2756929,8.096364,0,0,0,-1004.8218,0,2,1,2021,8,1,37,0,1,1,0,14.026067,14.026067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.85,53.07,-9,-9,6.666666666666667,3,4,0,0,2,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22455,-9,22454,-9,1,0,11,0,4,1,3,0,-9,0,5,0,0,0,0,0,-997.44104,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10327,12585,22456,-9,22454,-9,1,1,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1097.2887,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,3,0,1130.2,1352.2808,43227.238,0,0,3071.8677,508.03903,2286.0005 +10328,12586,22457,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1129.0017,-9,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,19.13,33.59,-9,-9,0,1,1,1,0,0,12,1,0,559,-32762.977,0,0,0,0,0,-322.33081 +10329,12587,22458,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.3039551,9.0496635,0,0,0,-943.83459,0,2,2,2021,11,0,50,45,1,0,0,20.64134,20.64134,.05,.05,.05,0,0,0,0,0,0,0,0,6.1230192,0,57.16,56.15,-9,-9,8.333333333333334,4,2,0,0,11,9,5,1,295,33206.328,188550.53,0,0,16904.066,2270.2249,3198.3774 +10330,12588,22459,22460,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.6902518,7.9749007,10,-1,-20.820351,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.7807775,8.1802845,57.66,45.08,52.08,41.15,6.666666666666667,1,1,0,0,11,2,4,1,589.5,217121.03,57494.938,179814.66,38239.086,0,0,2051.4023 +10330,12588,22460,22459,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.0219603,7.685451,0,10,1,-83.683067,0,3,2,2021,8,0,32,32,1,0,0,8.3637991,8.3637991,0,0,0,0,0,0,0,0,0,0,0,0,0,52.08,41.15,57.66,45.08,8.333333333333334,1,1,0,0,9,2,4,1,589.5,217121.03,57494.938,179814.66,38239.086,0,0,2051.4023 +10331,12589,22461,22462,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.9502568,6.9378905,49,-3,108.04276,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,4.3970485,0,0,1,1,0,0,7.2946129,49,47,58.32,50.22,7,1,1,0,0,0,10,2,0,876,352807.94,119895.17,252338.02,0,0,0,3187.8057 +10331,12589,22462,22461,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.974596,6.0451021,49,3,-61.154831,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.094243,58.32,50.22,49,47,10,1,1,0,0,3,10,2,0,876,352807.94,119895.17,252338.02,0,0,0,3187.8057 +10331,12590,22463,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,6.2221274,6.327126,0,0,0,-982.30127,0,-9,-9,2021,5,0,12,0,1,0,0,6.94416,6.94416,0,0,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,-9,-9,5,1,1,0,0,0,10,2,0,745,100804.63,0,0,0,0,0,237.45137 +10332,12591,22464,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.8079462,6.8624701,0,0,-781.21027,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3225727,6.5245223,66.87,27.26,-9,-9,10,1,1,0,0,0,10,2,1,1237,138175.02,134020.5,0,0,0,0,1668.7953 +10333,12592,22465,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.43399,7.1869173,0,0,-1044.5574,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,2.4314282,7.7219191,46.65,53.97,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,328,535203.44,376923.81,0,0,0,0,426.41626 +10334,12593,22466,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,0,0,-1072.9373,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,5,1,1,0,0,0,4,1,0,1076,58548.547,0,0,0,0,-995.48755,1368.1613 +10335,12594,22467,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,4,0,7.7802815,7.9811072,0,0,-794.93665,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9508886,8.1714773,61.52,39.23,-9,-9,10,1,1,0,0,0,10,4,1,865,649331.75,161970.77,254368.17,0,0,0,2580.24 +10336,12595,22468,22469,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.1077175,6.1322236,59,1,-50.825859,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1379285,52,45,56.57,57.78,8,1,1,0,0,0,11,2,1,398,234156.5,199865.8,0,0,0,0,2359.1833 +10336,12595,22469,22468,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,6.9123578,6.9707289,59,-1,117.53641,-9,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.6605778,56.57,57.78,52,45,8.333333333333334,1,1,0,0,9,11,2,1,398,234156.5,199865.8,0,0,0,0,2359.1833 +10337,12596,22470,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.3241282,8.26369,0,0,0,-996.36499,0,2,1,2021,14,2,42,24,1,2,0,11.314981,11.314981,.05,.05,0,0,0,0,0,0,1,1,0,7.3165731,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,5,8,4,0,971,-48059.078,-92261.977,0,0,0,0,2763.7083 +10338,12597,22471,22475,-9,-9,1,1,39,2,3,0,1,1,-9,0,3,9.702816,9.6192093,0,12,4,5.8756776,0,3,2,2021,9,0,35,40,1,0,0,64.226288,64.226288,0,0,0,0,0,0,0,0,1,1,0,0,0,55.51,51.57,57.06,57.76,8.333333333333334,2,3,0,0,7,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22472,-9,22475,22471,1,1,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.2906,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22473,-9,22475,22471,1,1,6,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.791,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22474,-9,22475,22471,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.1642,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10338,12597,22475,22471,-9,-9,1,0,35,2,3,0,1,1,-9,0,5,9.0536184,9.1721058,0,12,-4,102.75126,0,2,1,2021,9,0,20,30,1,0,0,63.060402,63.060402,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.51,51.57,8.333333333333334,2,3,0,0,5,9,5,1,804.20001,705324,545342.31,444469.63,260252.08,1259.8208,0,8853.3037 +10339,12598,22476,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,4.9304037,5.2588935,0,0,-940.62109,-9,2,1,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0884967,45.22,33.2,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,672,199638.91,69715.5,64639.039,0,0,0,1368.0607 +10340,12599,22477,22478,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.8073983,7.2657566,0,39,1,-16.056137,0,3,3,2021,6,0,55,50,1,0,0,2.0517726,2.0517726,0,0,0,0,0,0,0,0,0,0,0,3.2622929,0,60.69,53.18,57.06,57.76,10,1,1,0,0,9,10,2,1,591.5,-146743.48,0,0,0,0,0,1310.7886 +10340,12599,22478,22477,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,39,-1,79.399696,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4382458,0,57.06,57.76,60.69,53.18,10,1,1,0,0,0,10,2,1,591.5,-146743.48,0,0,0,0,0,1310.7886 +10341,12600,22479,22480,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,29,-7,19.77153,0,3,3,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.01,54.06,40.32,53.3,8.333333333333334,1,1,0,0,10,2,3,1,732.5,304688.56,304683.28,0,0,0,778.245,1533.8026 +10341,12600,22480,22479,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,8.2436819,8.0220985,0,28,7,-33.800644,0,3,3,2021,11,0,31,32,1,0,0,12.552273,12.552273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.32,53.3,53.01,54.06,8.333333333333334,1,1,0,0,14,2,3,1,732.5,304688.56,304683.28,0,0,0,778.245,1533.8026 +10341,12601,22481,-9,22479,22480,1,1,22,0,0,0,2,2,-9,0,3,7.1064863,7.3249836,0,0,0,-923.99463,0,2,3,2021,9,0,25,15,1,0,1,5.5981193,5.5981193,0,0,0,0,0,0,0,0,0,0,0,0,0,54.89,36.69,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,336,67424.961,0,0,0,0,0,-191.23123 +10342,12602,22482,22483,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,5.5196872,5.6959028,45,0,79.231865,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.062129,5.4206009,48.87,58.55,35.79,52.24,8.333333333333334,1,1,0,0,0,2,2,1,449,794909.56,437435.44,233253.63,0,0,0,2202.7791 +10342,12602,22483,22482,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.7908344,6.9210296,45,0,141.58331,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1291776,6.8794208,35.79,52.24,48.87,58.55,8.333333333333334,1,1,0,0,1,2,2,1,449,794909.56,437435.44,233253.63,0,0,0,2202.7791 +10343,12603,22484,22485,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.9438457,9.0395432,5.2541499,34,2,-116.17259,0,3,3,2021,12,0,44,45,1,0,0,19.101469,19.101469,.05,.05,.05,0,0,0,0,0,0,0,0,5.7865372,0,48.53,58.91,49.04,55.86,8.333333333333334,4,2,0,0,10,5,5,1,537.5,1026730.2,602117.75,261880.94,12900.706,0,0,4215.6943 +10343,12603,22485,22484,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.8798838,8.6725578,5.509614,34,-2,-91.930336,0,3,3,2021,13,1,47,45,1,1,0,14.133036,14.133036,.05,.05,0,0,0,0,0,0,0,0,0,5.464313,0,49.04,55.86,48.53,58.91,6.666666666666667,1,1,0,1,8,5,5,1,537.5,1026730.2,602117.75,261880.94,12900.706,0,0,4215.6943 +10344,12604,22486,22487,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6818819,8.5985146,0,19,2,56.788403,0,2,1,2021,4,0,38,38,1,0,0,19.62784,19.62784,.05,.05,0,0,0,0,0,0,0,0,0,2.3820937,0,55.32,46.24,24.14,64.69,8.333333333333334,2,3,0,0,13,7,4,1,425.66666,248954.34,113587.63,229434.91,177116.94,3492.9658,704.82892,3028.8606 +10344,12604,22487,22486,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.6570606,7.4576297,0,10,-2,-11.497243,-9,-9,-9,2021,6,0,38,0,1,0,0,6.1709819,6.1709819,.05,.05,0,0,0,0,0,0,0,0,0,2.0458639,0,24.14,64.69,55.32,46.24,8.333333333333334,2,3,0,0,4,7,4,1,425.66666,248954.34,113587.63,229434.91,177116.94,3492.9658,704.82892,3028.8606 +10344,12604,22488,-9,22486,22487,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.93158,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,7,4,1,425.66666,248954.34,113587.63,229434.91,177116.94,3492.9658,704.82892,3028.8606 +10345,12605,22489,22490,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5868034,8.4739447,0,12,0,89.677742,0,3,2,2021,8,0,50,48,1,0,0,10.79433,10.79433,.05,.05,0,0,0,0,0,0,0,0,0,.78792226,0,54.96,53.17,45.47,54.49,8.333333333333334,1,1,0,0,13,4,5,1,1484.5,80822.328,33931.719,185686.92,95902.406,3633.9375,0,3317.6396 +10345,12605,22490,22489,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.4714842,7.6207404,0,12,9,-35.092567,0,3,-9,2021,18,6,23,28,1,6,0,7.5589027,7.5589027,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.47,54.49,54.96,53.17,8.333333333333334,4,2,0,0,12,4,5,1,1484.5,80822.328,33931.719,185686.92,95902.406,3633.9375,0,3317.6396 +10346,12606,22491,-9,22493,22492,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-974.64001,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,1,1,1217.3334,-98891.984,-34066.457,0,0,0,0,915.50238 +10346,12606,22492,22493,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,0,0,0,8,-8,0,0,2,2,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.6,52.77,51.24,58.84,5,1,1,1,0,8,8,1,1,1217.3334,-98891.984,-34066.457,0,0,0,0,915.50238 +10346,12606,22493,22492,-9,-9,1,0,45,0,1,0,3,3,-9,1,4,0,0,0,8,8,0,0,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.24,58.84,44.6,52.77,3.333333333333333,3,4,0,0,0,8,1,1,1217.3334,-98891.984,-34066.457,0,0,0,0,915.50238 +10347,12607,22494,22495,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,0,8.248929,7.9819336,1,-5,77.857964,-9,-9,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90805817,8.2853231,55.83,54.24,53.11,47.09,8.333333333333334,1,1,0,0,0,2,4,1,1080,2132913,1382362.5,453981.56,0,0,0,4255.5029 +10347,12607,22495,22494,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,8.2194691,8.1734295,1,5,8.4081812,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,4.162375,0,27,1,1,0,4.3011975,8.4753723,53.11,47.09,55.83,54.24,5,1,1,0,0,6,2,4,1,1080,2132913,1382362.5,453981.56,0,0,0,4255.5029 +10348,12608,22496,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,2,7.2436304,7.2556491,0,0,0,-1004.1597,-9,3,2,2021,11,0,22,0,1,0,0,7.3825917,7.3825917,.05,.05,0,0,0,0,0,2,1,0,1,0,0,42.28,52.7,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,588,-15982.852,-48896.988,107207.64,26991.988,0,0,789.37549 +10348,12609,22497,-9,22496,-9,1,1,21,0,1,0,2,2,-9,0,2,0,0,0,0,0,-972.0943,-9,2,-9,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.44,44.52,-9,-9,5,1,1,1,0,0,12,1,1,390,-57474.512,0,0,0,0,0,60.935795 +10349,12610,22498,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.5050435,7.3824239,0,0,-1169.1735,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0465379,62.39,56.71,-9,-9,10,1,1,0,0,0,12,3,1,946,147465.34,309363.28,41977.266,59649.391,0,2431.6462,1641.4558 +10350,12611,22499,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.160296,5.833518,0,0,-1086.9,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5314846,5.978797,40.3,42.59,-9,-9,3.333333333333333,1,1,0,0,0,4,2,1,1508,154717.98,-94451.008,0,0,0,0,162.92368 +10351,12612,22500,-9,-9,-9,1,0,62,1,1,0,2,2,-9,0,2,0,0,0,0,0,-997.65302,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.29,25.79,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,235,172287.56,67964.242,111467.9,29081.322,0,7186.5776,474.11249 +10352,12613,22501,22502,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.1020575,9.1108761,0,15,7,-13.262433,0,1,1,2021,12,0,50,45,1,0,0,20.036678,20.036678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.96,50.74,50.03,52.62,5,4,5,0,0,11,8,5,1,665,1636905.8,607712.75,813793.25,0,0,0,6630.8057 +10352,12613,22502,22501,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.5406189,9.6037169,0,15,-7,82.053535,0,3,2,2021,10,0,70,60,1,0,0,20.649979,20.649979,.05,.05,0,0,0,0,0,2,0,0,0,3.9085455,0,50.03,52.62,44.96,50.74,6.666666666666667,1,1,0,0,10,8,5,1,665,1636905.8,607712.75,813793.25,0,0,0,6630.8057 +10353,12614,22503,22504,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.3521547,7.4423599,0,7,-8,-44.54211,0,3,3,2021,20,9,28,36,1,9,0,8.9615765,8.9615765,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,52,47,8.333333333333334,1,1,0,0,8,8,4,1,1190.5,737497.38,117843.83,283884.47,0,0,0,5067.5459 +10353,12614,22504,22503,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,8.0440836,8.1787024,0,7,8,86.480705,0,3,3,2021,10,0,40,40,1,1,0,8.5083151,8.5083151,.05,.05,0,0,0,0,0,0,1,1,0,7.8911276,0,52,47,50.03,52.62,7,1,1,0,0,1,8,4,1,1190.5,737497.38,117843.83,283884.47,0,0,0,5067.5459 +10354,12615,22505,-9,22507,22506,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-870.5614,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,9,2,1,507,544511.75,6491.0684,336070.56,0,0,0,4084.4614 +10354,12615,22506,22507,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,0,0,0,2,2,-69.717453,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.356926,0,34.57,50.44,42.73,58.53,3.333333333333333,1,1,1,0,7,9,2,1,507,544511.75,6491.0684,336070.56,0,0,0,4084.4614 +10354,12615,22507,22506,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,7.9950676,8.2251072,0,22,-2,20.162657,0,2,1,2021,19,8,24,25,1,8,0,14.722074,14.722074,0,0,0,0,0,0,0,0,1,1,0,.70847541,0,42.73,58.53,34.57,50.44,5,1,1,0,0,6,9,2,1,507,544511.75,6491.0684,336070.56,0,0,0,4084.4614 +10355,12616,22508,22509,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,5.8029222,5.5162196,53,5,92.780083,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5491867,5.9583406,65.95,37.11,52,46,10,1,1,0,0,0,10,2,1,581,321518.97,111931.72,218647.25,0,0,0,1617.877 +10355,12616,22509,22508,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,2,-5,92.306465,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,4.7559114,0,0,1,1,0,0,0,52,46,65.95,37.11,8,1,1,0,0,0,10,2,1,581,321518.97,111931.72,218647.25,0,0,0,1617.877 +10356,12617,22510,22511,-9,-9,1,1,55,0,1,0,1,1,-9,0,2,8.3853006,8.1702862,0,12,3,12.541776,0,3,3,2021,12,0,48,57,1,0,0,9.9769077,9.9769077,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.36,34.01,50.05,55.41,3.333333333333333,1,1,0,0,12,12,4,1,1214.5,922913.75,773861.81,162969.56,55776.57,5947.6504,654.05835,3654.6563 +10356,12617,22511,22510,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,8.3931284,8.825635,0,12,-3,70.642067,0,3,2,2021,10,0,35,30,1,0,0,17.821175,17.821175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.05,55.41,41.36,34.01,6.666666666666667,1,1,0,0,13,12,4,1,1214.5,922913.75,773861.81,162969.56,55776.57,5947.6504,654.05835,3654.6563 +10356,12618,22512,-9,22511,22510,1,1,19,0,1,0,2,2,-9,0,4,7.7349176,7.9484344,0,0,0,-1001.82,0,2,1,2021,8,0,37,0,1,0,1,8.4569836,8.4569836,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,625,-35634.852,0,0,0,0,682.8252,949.47357 +10357,12619,22513,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,7.5943456,7.4570017,0,0,-1025.4231,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.4611716,7.5397534,63.22,37.55,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,730,402540.22,442516.81,239058.44,49242.449,18199.771,0,1791.6079 +10358,12620,22514,-9,22515,22516,1,0,16,0,1,1,2,0,-9,0,3,0,3.5342541,3.759872,0,0,-1172.8834,-9,2,3,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3017416,0,28.91,61.12,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,750.33331,232215.34,67584.133,112693.38,0,0,0,1964.4055 +10358,12620,22515,22516,-9,-9,1,0,53,0,1,0,2,2,-9,0,3,7.2566752,7.4037299,0,24,-8,-21.932087,0,3,3,2021,11,0,25,25,1,0,0,8.1725636,8.1725636,0,0,0,0,0,0,0,0,1,1,0,0,0,46.72,39.2,57.16,56.15,5,1,1,0,0,9,6,3,1,750.33331,232215.34,67584.133,112693.38,0,0,0,1964.4055 +10358,12620,22516,22515,-9,-9,1,1,61,0,1,0,3,3,-9,0,4,7.2803421,7.2653165,0,24,8,24.058563,0,2,2,2021,10,0,50,50,1,0,0,3.4516015,3.4516015,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.72,39.2,6.666666666666667,1,1,0,0,9,6,3,1,750.33331,232215.34,67584.133,112693.38,0,0,0,1964.4055 +10358,12621,22517,-9,22515,22516,1,1,29,0,1,0,2,2,-9,0,3,7.99894,8.4075298,0,0,0,-982.97363,-9,2,3,2021,22,6,61,0,1,6,1,7.647644,7.647644,0,0,0,0,0,0,0,0,1,1,0,0,0,49.69,52.99,-9,-9,1.666666666666667,1,1,0,0,4,6,4,1,658,28159.408,0,0,0,0,0,1221.2601 +10359,12622,22518,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.8817101,8.1723566,0,0,-1046.728,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9614916,8.4463081,55.79,27.1,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,531,273510.19,182464.8,0,0,0,0,3100.9312 +10360,12623,22519,22521,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.4386892,8.3481264,0,8,4,-159.9184,0,1,1,2021,19,6,30,32,1,6,0,17.104023,17.104023,0,0,0,0,0,0,0,0,1,1,0,1.9819622,0,33.97,57.61,51.14,60.45,8.333333333333334,1,1,0,0,1,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10360,12623,22520,-9,22519,22521,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.26007,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10360,12623,22521,22519,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.2132578,7.8223577,0,8,-4,-9.6163874,0,-9,-9,2021,12,0,40,25,1,0,0,10.673726,10.673726,0,0,.05,0,0,0,0,0,1,1,0,4.1029553,0,51.14,60.45,33.97,57.61,8.333333333333334,1,1,0,0,8,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10360,12623,22522,-9,22519,22521,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.92963,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,4,1,751.75,2213077.3,1455993,509504.91,176282.7,0,0,3189.666 +10361,12624,22523,22524,-9,-9,1,0,32,1,1,0,2,2,-9,0,4,8.0105305,7.9071994,0,1,-18,-54.587963,-9,-9,-9,2021,15,2,41,0,1,2,0,8.3680239,8.3680239,0,0,0,0,0,0,0,0,1,1,0,0,0,37.77,54.26,46.5,58.26,8.333333333333334,1,1,0,0,5,7,5,1,610.66669,705151.38,218500.73,528462,36591.508,0,0,3106.3848 +10361,12624,22524,22523,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,8.645587,8.6189041,0,1,18,79.907234,0,2,2,2021,11,2,38,80,1,2,0,19.844614,19.844614,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,37.77,54.26,8.333333333333334,1,1,0,0,14,7,5,1,610.66669,705151.38,218500.73,528462,36591.508,0,0,3106.3848 +10361,12624,22525,-9,22523,22524,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-932.7843,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,610.66669,705151.38,218500.73,528462,36591.508,0,0,3106.3848 +10362,12625,22526,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,9.1723843,8.9516029,0,0,0,-847.99396,0,2,2,2021,8,0,40,40,1,0,0,26.991049,26.991049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,2,5,0,547,345884.94,235247.28,316681.44,207651.52,6001.2236,0,4447.0581 +10363,12626,22527,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,0,0,0,0,-971.14594,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.67,63.54,-9,-9,5,1,1,0,0,6,4,1,1,932,886136.63,479818.03,90813.352,0,0,814.99402,1104.5508 +10363,12627,22528,-9,22527,-9,1,0,25,0,0,0,2,2,-9,0,4,7.1168847,7.1751604,0,0,0,-975.50226,0,1,2,2021,8,2,22,40,1,2,0,7.8446841,7.8446841,0,0,0,0,0,0,2.0418246,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,952,-116173.23,0,0,0,0,0,1106.2611 +10364,12628,22529,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.9696722,7.8174906,0,0,-1144.5396,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,6.355392,0,7,1,1,0,1.5333209,7.7712636,52.13,40.97,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,2732,942304.63,252048.39,683812.63,0,0,0,1939.7325 +10364,12629,22530,-9,22529,-9,1,1,38,0,0,0,2,2,-9,1,3,8.7045975,8.4845047,0,0,0,-938.45337,0,3,3,2021,6,0,46,50,1,0,0,17.339527,17.339527,.05,.05,0,0,0,0,0,27,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,3,4,0,0,7,8,5,1,669,426971.88,84582.672,218733.41,108564.45,7666.8926,0,2836.2109 +10364,12630,22531,-9,22529,-9,1,1,43,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1080.7648,0,2,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,3,4,0,0,0,8,1,1,467,120396.83,0,0,0,0,0,-67.620537 +10365,12631,22532,22534,-9,-9,1,1,40,0,2,0,3,3,-9,0,4,5.8392487,5.8372955,0,8,3,51.59724,0,-9,-9,2021,5,1,4,4,1,1,0,9.6598234,9.6598234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,58.15,52.91,10,1,1,0,0,6,11,2,1,446,93087.258,867.19073,255542.45,181458.98,12621.694,0,1975.3214 +10365,12631,22533,-9,22534,22532,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.96515,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,446,93087.258,867.19073,255542.45,181458.98,12621.694,0,1975.3214 +10365,12631,22534,22532,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.5126615,7.71064,0,8,-3,-72.548286,0,2,2,2021,8,0,20,20,1,0,0,9.6284695,9.6284695,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,62.49,55.09,10,1,1,0,0,9,11,2,1,446,93087.258,867.19073,255542.45,181458.98,12621.694,0,1975.3214 +10366,12632,22535,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,6.6684079,6.2654576,0,0,-1014.5551,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6041903,6.0894246,43.01,42.51,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,28,231564.36,0,187264.13,34089.801,0,0,1376.2013 +10367,12633,22536,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-928.25226,0,3,3,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,39.96,-9,-9,6.666666666666667,1,1,0,0,1,8,1,0,409,382149.13,0,398139.28,0,0,0,2105.0193 +10367,12634,22537,-9,-9,-9,1,1,23,0,0,0,2,2,-9,1,4,8.267519,8.0389185,0,0,0,-1018.2672,0,-9,-9,2021,7,1,55,0,1,1,0,6.0544858,6.0544858,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,1,1,0,0,0,8,4,0,385,72115.844,-60340.848,0,0,0,0,1664.4417 +10368,12635,22538,-9,22540,22539,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.3774,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22539,22540,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.2469482,8.5810099,0,23,8,52.605698,0,3,3,2021,12,0,42,60,1,0,0,13.246903,13.246903,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.84,55.93,48.76,53.24,8.333333333333334,2,3,0,0,13,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22540,22539,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,8.1622763,8.0969372,0,23,-8,-109.34164,0,2,2,2021,12,0,37,36,1,0,0,9.805131,9.805131,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,53.24,42.84,55.93,6.666666666666667,2,3,0,0,13,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22541,-9,22540,22539,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-964.00604,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12635,22542,-9,22540,22539,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-952.94574,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6.666666666666667,2,3,0,0,13,8,4,1,748.40002,3581298,3101719.3,403634.19,0,0,594.75476,3224.363 +10368,12636,22543,-9,22540,22539,1,1,19,0,3,0,2,2,-9,0,4,0,0,0,0,0,-915.84967,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.92259294,0,48.53,58.91,-9,-9,6.666666666666667,2,3,0,0,2,8,2,1,1189,0,0,0,0,0,0,292.74631 +10369,12637,22544,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-938.92426,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,2,3,0,0,0,5,1,0,657,0,0,0,0,0,0,1180.5742 +10370,12638,22545,22546,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.8769464,8.9521999,0,3,-2,243.55489,-9,-9,-9,2021,7,0,40,0,1,0,0,26.611208,26.611208,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,42.36,45.47,8.333333333333334,1,1,0,0,5,12,5,0,885,853457,495792.69,263752.84,76797.719,0,0,2704.7227 +10370,12638,22546,22545,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,0,0,0,3,2,126.70733,-9,-9,-9,2021,27,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.36,45.47,54.2,57.49,6.666666666666667,1,1,1,0,9,12,5,0,885,853457,495792.69,263752.84,76797.719,0,0,2704.7227 +10371,12639,22547,-9,22550,22549,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-776.13153,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12639,22548,-9,22550,22549,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.8927,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12639,22549,22550,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,8.1378107,8.424612,0,10,7,-61.632969,0,3,3,2021,10,1,41,42,1,1,0,9.5374155,9.5374155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.41,30.5,44.93,20.46,8.333333333333334,1,1,0,0,10,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12639,22550,22549,-9,-9,1,0,47,0,2,0,1,1,-9,0,1,8.4167509,8.6819916,0,11,-7,-74.625504,0,2,2,2021,9,0,31,30,1,0,0,20.162918,20.162918,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.93,20.46,56.41,30.5,3.333333333333333,1,1,0,0,11,7,4,1,667.5,1132865.3,384945,423078.75,0,0,0,3729.9397 +10371,12640,22551,-9,22550,22549,1,1,21,0,2,1,2,0,-9,0,2,0,4.2957215,4.2381468,0,0,-900.55029,-9,1,2,2021,25,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0832443,0,34.45,42.64,-9,-9,3.333333333333333,1,1,0,1,0,7,2,1,1168,11260.87,0,0,0,0,0,-37.210308 +10371,12641,22552,-9,22550,22549,1,0,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1038.1455,1,1,2,2021,23,8,0,8,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.78,41.13,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,657,-84333.422,0,0,0,0,0,0 +10372,12642,22553,22554,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.3853755,7.4638643,40,1,83.251183,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3624969,55.31,44.9,46.36,41.48,8.333333333333334,1,1,0,0,10,2,3,1,427,730613.81,391339,188048.63,0,0,31.078949,280.39899 +10372,12642,22554,22553,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,40,-1,-28.083401,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.36,41.48,55.31,44.9,8.333333333333334,1,1,0,0,0,2,3,1,427,730613.81,391339,188048.63,0,0,31.078949,280.39899 +10372,12643,22555,-9,22554,22553,1,0,35,0,0,0,1,1,-9,0,3,8.4678698,8.2362051,0,0,0,-864.86292,0,2,2,2021,16,4,39,41,1,4,0,11.306258,11.306258,.05,.05,0,0,0,0,0,0,0,0,0,2.0001354,0,35.41,52.74,-9,-9,5,1,1,0,0,12,2,4,1,126,210965.31,22136.52,21495.373,33415.879,3020.8369,1703.7002,1125.167 +10373,12644,22556,22557,-9,-9,1,0,44,0,0,0,1,1,-9,0,2,6.8900299,6.8887286,0,3,-3,36.500149,0,-9,-9,2021,7,0,15,2,1,0,0,8.0125065,8.0125065,0,0,0,0,0,0,0,0,1,1,0,0,0,53.96,26.8,20.51,66.12,10,1,1,0,0,5,4,3,1,483.5,544226.38,375875.16,183310.41,0,9648.3643,0,1261.2175 +10373,12644,22557,22556,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,7.5979023,7.5500255,0,3,3,44.600563,0,2,2,2021,25,10,35,40,1,10,0,7.2151618,7.2151618,0,0,0,0,0,0,0,0,1,1,0,0,0,20.51,66.12,53.96,26.8,1.666666666666667,1,1,0,0,8,4,3,1,483.5,544226.38,375875.16,183310.41,0,9648.3643,0,1261.2175 +10374,12645,22558,-9,22560,22559,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-935.32098,-9,1,1,2021,10,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,231.66667,1071789.9,172481.36,528402.19,69873.469,0,0,5509.6631 +10374,12645,22559,22560,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.1281395,8.8939486,0,6,0,-52.97662,0,3,3,2021,23,11,40,50,1,11,0,26.822699,26.822699,.05,.05,0,0,0,0,0,7,1,1,0,0,0,34.9,57.07,38.02,58.85,6.666666666666667,1,1,0,0,7,13,5,1,231.66667,1071789.9,172481.36,528402.19,69873.469,0,0,5509.6631 +10374,12645,22560,22559,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.9612284,9.1143665,0,6,0,-62.341667,0,-9,-9,2021,7,0,38,46,1,0,0,27.273092,27.273092,0,0,0,0,0,0,0,0,1,1,0,0,0,38.02,58.85,34.9,57.07,8.333333333333334,1,1,0,0,9,13,5,1,231.66667,1071789.9,172481.36,528402.19,69873.469,0,0,5509.6631 +10374,12646,22561,-9,22560,22559,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-989.61188,-9,1,1,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,55.72,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,244,-167850.69,0,0,0,0,0,0 +10375,12647,22562,-9,22565,-9,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.07526,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10375,12647,22563,-9,22565,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.8548,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10375,12647,22564,-9,22565,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.4077,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10375,12647,22565,-9,-9,-9,1,0,39,0,3,0,1,1,-9,1,4,7.2270303,8.4036636,7.6432238,0,0,-1083.6958,0,3,1,2021,9,2,19,0,1,2,0,12.846324,12.846324,.05,.05,0,0,0,0,0,107,1,1,0,7.8803105,0,46.39,60.99,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,836.25,254556.05,64905.547,0,0,0,0,4093.9893 +10376,12648,22566,22568,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,0,0,0,2,-1,77.18663,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,57.33,53.46,5,1,1,0,0,5,11,3,0,1102.6666,-68221.625,-11128.405,0,0,10455.947,0,2364.3691 +10376,12648,22567,-9,22566,22568,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-861.25647,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,3,0,1102.6666,-68221.625,-11128.405,0,0,10455.947,0,2364.3691 +10376,12648,22568,22566,-9,-9,1,1,27,1,1,0,2,2,-9,0,3,7.6430435,7.8732228,0,2,1,25.533035,0,2,3,2021,6,0,40,60,1,0,0,7.7239957,7.7239957,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.6,52.88,8.333333333333334,1,1,0,0,6,11,3,0,1102.6666,-68221.625,-11128.405,0,0,10455.947,0,2364.3691 +10377,12649,22569,22570,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.2979927,8.3016338,0,2,-1,-37.111092,0,1,2,2021,12,1,58,55,1,1,0,9.596673,9.596673,.05,.05,0,0,0,0,0,0,0,0,0,1.3924514,0,46.46,50.26,54.1,59.11,8.333333333333334,1,1,0,0,13,2,5,1,275.5,116869.18,130546.16,0,0,-951.37897,0,3822.2847 +10377,12649,22570,22569,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.2211628,8.1788044,0,2,1,-22.966307,-9,-9,-9,2021,7,0,37,0,1,0,0,9.8981171,9.8981171,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,46.46,50.26,8.333333333333334,1,1,0,0,6,2,5,1,275.5,116869.18,130546.16,0,0,-951.37897,0,3822.2847 +10378,12650,22571,22572,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.4121337,7.5551538,19,7,-29.231039,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1543207,7.3261423,55.79,52.62,59.14,52.5,8.333333333333334,1,1,0,0,6,4,5,1,1039,2341447.5,361897.22,850158.81,0,0,0,5125.3506 +10378,12650,22572,22571,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,9.0055447,9.1249733,19,-7,-156.78078,0,-9,-9,2021,6,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,9.2619143,59.14,52.5,55.79,52.62,10,1,1,0,0,11,4,5,1,1039,2341447.5,361897.22,850158.81,0,0,0,5125.3506 +10379,12651,22573,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,7.1833668,7.1403413,0,0,0,-1078.0215,0,3,3,2021,6,0,20,18,1,0,0,6.7805619,6.7805619,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,9,6,2,0,154,116646.7,-39006.074,0,0,0,0,1864.0735 +10379,12652,22574,-9,22573,-9,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-934.90393,-9,3,-9,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,10,1,1,0,0,0,6,1,0,215,90700.133,0,0,0,0,0,0 +10380,12653,22575,22576,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.4486637,5.2642522,6,-2,-39.173378,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.163765,5.6285496,53.98,50.87,40.86,44.79,8.333333333333334,1,1,0,0,3,8,2,0,900,710930.44,0,411688.06,0,0,0,1955.5588 +10380,12653,22576,22575,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.1729794,6.4404221,6,2,103.53964,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0373034,6.3108549,40.86,44.79,53.98,50.87,5,1,1,0,0,0,8,2,0,900,710930.44,0,411688.06,0,0,0,1955.5588 +10381,12654,22577,22578,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.6778917,8.3532238,43,2,-64.259674,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.0164318,8.6066122,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,4,1,4,1,523,1184344.5,740516.63,263284.34,0,0,0,3505.0676 +10381,12654,22578,22577,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,0,0,43,-2,-77.262283,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.8613922,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,0,1,4,1,523,1184344.5,740516.63,263284.34,0,0,0,3505.0676 +10382,12655,22579,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,0,0,-919.38068,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,13,1,1,126,-125435.73,0,0,0,0,0,-61.86739 +10383,12656,22580,22581,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.7027369,8.828701,0,8,-5,56.817501,0,-9,2,2021,6,0,32,30,1,0,0,20.76409,20.76409,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,51.71,38.38,8.333333333333334,1,1,0,0,9,6,5,1,759,556938.13,124200.28,365188.78,52777.516,1797.3524,0,5314.0449 +10383,12656,22581,22580,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.4026022,8.842823,7.7518721,8,5,-19.99839,0,3,2,2021,6,0,30,37,1,0,0,15.534461,15.534461,0,0,0,0,0,0,0,0,0,0,0,3.965239,8.1730747,51.71,38.38,55.79,52.62,8.333333333333334,1,1,0,0,9,6,5,1,759,556938.13,124200.28,365188.78,52777.516,1797.3524,0,5314.0449 +10384,12657,22582,-9,22584,22583,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.25189,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10384,12657,22583,22584,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.6423178,9.2996416,0,15,6,45.46381,0,-9,-9,2021,10,2,48,51,1,2,0,31.699131,31.699131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,52.23,55.6,8.333333333333334,1,1,0,0,9,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10384,12657,22584,22583,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.6671829,8.5922928,0,12,-6,-77.334198,0,2,2,2021,2,0,32,34,1,0,0,16.93158,16.93158,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,46.16,58.62,8.333333333333334,1,1,0,0,9,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10384,12657,22585,-9,22584,22583,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.49701,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,965,600303.31,239512.84,691269.31,445810.28,0,0,6893.7207 +10385,12658,22586,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-854.8335,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,1172,32508.428,0,0,0,0,0,1179.1697 +10386,12659,22587,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,7.2440529,7.1405506,0,0,-985.13965,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2504436,7.2330899,30.57,33.57,-9,-9,5,1,1,0,0,13,6,3,1,422,391555.78,97089.305,150813.28,0,3255.6208,2599.7683,611.49579 +10387,12660,22588,22589,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0496483,8.0650816,0,31,2,83.786217,0,2,3,2021,10,0,37,37,1,1,0,10.020721,10.020721,0,0,0,0,0,0,0,0,0,0,0,1.906662,0,52,53,54.79,55.86,8,1,1,0,0,1,9,5,1,717.5,550823.13,368971.5,347823.72,206661.17,0,10369.225,5387.5771 +10387,12660,22589,22588,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.1811523,9.4167814,0,31,-2,-41.717609,0,2,2,2021,7,0,40,48,1,0,0,43.898655,43.898655,.05,.05,0,0,0,0,0,0,0,0,0,7.5514808,0,54.79,55.86,52,53,8.333333333333334,1,1,0,0,10,9,5,1,717.5,550823.13,368971.5,347823.72,206661.17,0,10369.225,5387.5771 +10388,12661,22590,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.1077404,8.1842194,0,0,-981.04852,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2633181,59.44,44.14,-9,-9,10,1,1,0,0,3,8,4,1,783,746646.81,926754.19,217091.3,0,0,0,1909.9202 +10389,12662,22591,22592,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.1200085,6.8052359,61,6,-91.155037,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,10.511275,0,0,1,1,0,0,6.9857121,47.75,36.39,63.4,45.23,8.333333333333334,1,1,0,0,0,5,2,1,285.5,422228.47,120484.13,151941.52,0,0,0,2580.3469 +10389,12662,22592,22591,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.5645056,6.6908965,9,-6,-20.957996,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.8826847,0,0,1,1,0,0,6.1660233,63.4,45.23,47.75,36.39,8.333333333333334,1,1,0,0,0,5,2,1,285.5,422228.47,120484.13,151941.52,0,0,0,2580.3469 +10390,12663,22593,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,3,7.6322799,8.0433016,0,0,0,-990.59698,0,2,2,2021,12,0,30,30,1,0,1,9.9647532,9.9647532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.75,58.32,-9,-9,3.333333333333333,1,1,0,0,10,4,3,1,712,33591.121,-1061.7437,0,0,0,0,807.24298 +10391,12664,22594,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,8.7490997,8.5352726,0,0,0,-1024.4943,0,2,2,2021,6,0,37,38,1,0,0,21.526623,21.526623,0,0,.05,0,0,0,0,0,1,1,0,1.9222986,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,9,5,5,1,579,-78997.227,-108374.79,111020.52,91752.523,0,0,1731.9946 +10392,12665,22595,22596,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.8508797,7.0343432,6,-7,-52.981003,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3858752,6.9966359,61.29,22.08,50.12,49.78,8.333333333333334,1,1,0,0,0,2,3,1,389.5,752830.13,588054.13,173438.75,0,6852.1738,2035.1616,2105.6431 +10392,12665,22596,22595,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,7.2256231,7.4241471,6,7,106.15856,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9985385,7.4659467,50.12,49.78,61.29,22.08,10,1,1,0,0,0,2,3,1,389.5,752830.13,588054.13,173438.75,0,6852.1738,2035.1616,2105.6431 +10393,12666,22597,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-975.80176,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.32,14.17,-9,-9,5,1,1,0,0,0,9,1,1,800,38999.164,248129.42,0,0,0,0,629.96301 +10393,12667,22598,-9,22597,-9,1,1,26,0,0,0,2,2,-9,0,3,8.8519659,8.7233591,0,0,0,-1032.6635,0,2,-9,2021,10,1,50,60,1,1,1,16.94607,16.94607,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,585,-4419.1045,125800.72,0,0,3913.4736,0,3069.2744 +10394,12668,22599,22602,-9,-9,1,1,43,1,3,0,2,2,-9,0,5,4.9566073,4.8725715,0,12,1,86.269341,0,2,2,2021,8,0,35,35,1,0,0,.52849948,.52849948,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,14,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10394,12668,22600,-9,22602,22599,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-827.62958,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10394,12668,22601,-9,22602,22599,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-899.9245,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10394,12668,22602,22599,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,7.4163427,7.2505188,0,12,-1,-31.300259,0,3,3,2021,8,0,24,25,1,0,0,9.2586832,9.2586832,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,14,13,2,1,323,64729.801,0,144598.31,85670.031,10247.983,0,1831.2668 +10395,12669,22603,22604,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.4679508,8.4486876,0,4,3,47.816376,0,1,2,2021,10,1,45,50,1,1,0,14.780772,14.780772,.05,.05,0,0,0,0,0,0,0,0,0,3.2999554,0,39.16,62.84,41.51,55.12,8.333333333333334,1,1,0,0,7,1,5,1,1088,164396.34,-16611.553,231411.09,148888.69,44890.461,0,3410.3516 +10395,12669,22604,22603,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.1239166,8.033474,0,4,-3,-13.804816,0,-9,-9,2021,14,2,38,38,1,2,0,9.5936594,9.5936594,.05,.05,0,0,0,0,0,0,0,0,0,2.3164871,0,41.51,55.12,39.16,62.84,8.333333333333334,1,1,0,0,3,1,5,1,1088,164396.34,-16611.553,231411.09,148888.69,44890.461,0,3410.3516 +10396,12670,22605,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1039.5167,0,-9,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.42,30.58,-9,-9,1.666666666666667,1,1,1,0,0,12,1,0,279,34389.727,0,0,0,0,2211.8169,-14.83226 +10397,12671,22606,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.5417395,6.4987841,0,0,-1117.974,0,3,3,2021,10,1,0,26,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.61204177,6.4500675,56.73,44.22,-9,-9,10,1,1,0,0,12,9,2,1,893,212998.41,95062.273,265643.22,0,0,0,1144.8021 +10398,12672,22607,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.807806,9.6168823,0,0,0,-986.64056,0,1,2,2021,19,7,47,45,1,7,0,30.328568,30.328568,.05,.05,0,0,0,0,0,0,0,0,0,5.1485744,0,38.51,59.43,-9,-9,5,1,1,0,0,9,8,5,1,223,654421.75,268900.13,667165,293314.06,0,0,4794.1943 +10399,12673,22608,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.5360146,8.1669302,6.8098402,0,0,-971.41327,0,2,2,2021,9,0,37,37,1,0,0,10.697786,10.697786,0,0,0,0,0,0,0,2,0,0,0,5.4515228,6.3825579,39.1,57.79,-9,-9,6.666666666666667,1,1,0,0,9,11,4,1,391,51665.609,0,149323.92,34298.844,-1419.8086,0,1503.2572 +10400,12674,22609,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,5.455205,5.2509341,0,0,-1051.2885,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0885873,54,51,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,551,179756.13,0,72266.219,0,0,0,560.8327 +10401,12675,22610,-9,22613,22611,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.8075,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10401,12675,22611,22613,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.6226339,8.8751411,0,21,4,182.07425,0,-9,-9,2021,12,0,40,40,1,0,0,18.947691,18.947691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.61,48.15,46.91,51.8,5,1,1,0,0,12,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10401,12675,22612,-9,22613,22611,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.77472,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10401,12675,22613,22611,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.5794415,7.6927471,0,21,-4,95.091095,0,2,2,2021,11,0,23,24,1,0,0,9.6313181,9.6313181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.91,51.8,41.61,48.15,5,1,1,0,0,12,8,4,1,1168.5,239915.06,47038.109,459163.69,229753.83,0,3482.2666,3206.6646 +10402,12676,22614,22615,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,28,6,-31.320267,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.14791229,0,57.66,45.08,48,52.43,5,1,1,0,0,0,8,5,1,332,438273.16,24215.762,413492.03,58185.496,0,0,3356.6851 +10402,12676,22615,22614,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.0067482,9.2972059,0,28,-6,-81.696129,0,2,2,2021,12,0,21,27,1,0,0,52.530319,52.530319,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,52.43,57.66,45.08,5,1,1,0,0,13,8,5,1,332,438273.16,24215.762,413492.03,58185.496,0,0,3356.6851 +10403,12677,22616,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,3.8706064,4.3671465,0,0,-967.5498,0,2,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,4.4518747,0,0,1,1,0,1.6114663,3.9243231,56.6,23.1,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,2330,84051.148,0,0,0,0,0,2786.8145 +10404,12678,22617,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.4471431,6.1962762,0,0,-943.99774,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9251995,6.2573371,59.01,44.42,-9,-9,10,1,1,0,0,0,12,2,1,107,111384.95,163695.02,0,0,0,0,821.89551 +10405,12679,22618,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-960.97644,0,3,2,2021,19,8,0,12,3,8,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,47.18,34.65,-9,-9,6.666666666666667,1,1,1,1,9,2,1,0,1339,2407.4463,0,0,0,0,0,873.63715 +10406,12680,22619,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.8316159,7.4165826,0,0,-990.85992,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9547036,7.7766633,37.9,51.46,-9,-9,6.666666666666667,1,1,0,0,5,5,3,1,1600,795098,529063.31,255815.67,0,0,0,1811.311 +10407,12681,22620,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.3121562,7.3876143,4.9106803,0,0,-1125.6998,0,2,2,2021,10,0,16,20,1,0,0,10.279529,10.279529,.05,.05,0,0,0,0,0,0,1,1,0,5.6454563,5.354907,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,14,7,3,1,416,588360.25,239279.34,386045.5,102762.4,0,0,1144.6497 +10407,12682,22621,-9,22620,-9,1,0,22,0,0,0,2,2,-9,0,4,7.8199964,8.1035995,0,0,0,-1029.1602,0,2,-9,2021,10,0,21,21,1,0,1,16.06432,16.06432,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,3,7,4,1,227,63638.453,-20903.686,0,0,0,0,1523.9084 +10408,12683,22622,-9,22625,-9,1,0,3,2,3,1,3,0,-9,0,4,0,0,0,0,0,-959.24878,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10408,12683,22623,-9,22625,-9,1,1,1,2,3,1,3,0,-9,0,4,0,0,0,0,0,-918.08295,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10408,12683,22624,-9,22625,-9,1,0,0,2,3,1,3,0,-9,0,4,0,0,0,0,0,-910.91174,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10408,12683,22625,-9,-9,-9,1,0,29,2,3,0,2,2,-9,0,4,7.1363997,7.3150401,5.645246,0,0,-956.35565,0,2,2,2021,20,8,16,0,1,8,0,8.421401,8.421401,.05,.05,0,0,0,0,0,0,1,1,0,6.2126665,0,44.19,56.73,-9,-9,5,1,1,0,0,7,9,2,0,545.75,41220.441,5895.9092,0,0,1085.9497,0,2400.8643 +10409,12684,22626,22627,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.0848064,5.7187605,2,1,-118.66928,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.76754,43.69,21.98,64.23999999999999,44.83,0,1,1,0,0,4,12,4,1,1260.5,1786024.4,829360.5,215399.47,0,0,0,3201.8682 +10409,12684,22627,22626,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.7010202,8.4435453,6.094377,2,-1,6.8119788,0,-9,-9,2021,6,0,45,45,1,0,0,13.330232,13.330232,.05,.05,0,0,0,0,0,14.5,1,1,0,5.2140031,6.1709023,64.23999999999999,44.83,43.69,21.98,6.666666666666667,1,1,0,0,13,12,4,1,1260.5,1786024.4,829360.5,215399.47,0,0,0,3201.8682 +10410,12685,22628,22630,-9,-9,1,0,42,1,2,0,1,1,-9,0,2,8.6273375,8.73388,0,10,-1,12.316557,0,2,2,2021,13,2,55,55,1,2,0,12.341218,12.341218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.8,52.21,49.41,58.28,6.666666666666667,1,1,0,0,9,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10410,12685,22629,-9,22628,22630,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.9347,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10410,12685,22630,22628,-9,-9,1,1,43,1,2,0,1,1,-9,0,4,6.8601637,6.6254139,0,10,1,33.971428,0,1,2,2021,11,0,25,15,1,0,0,4.3022428,4.3022428,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,34.8,52.21,8.333333333333334,1,1,0,1,12,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10410,12685,22631,-9,22628,22630,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0679,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,4,1,986.5,1175622.5,362887.75,613016.69,76534.242,12474.873,0,2834.4607 +10411,12686,22632,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.5985613,8.5129557,0,0,0,-1011.6846,0,2,2,2021,5,0,38,67,1,0,0,17.876551,17.876551,0,0,0,0,0,0,0,0,0,0,0,0,0,45.71,33.24,-9,-9,3.333333333333333,1,1,0,0,12,12,5,0,127,1556018.9,1151530.9,235738.73,-15834.585,6813.0239,6776.5664,3282.1333 +10412,12687,22633,22634,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.1082644,7.2728024,5.4400196,39,-3,-42.753826,0,2,2,2021,12,1,19,19,1,1,0,10.473926,10.473926,.05,.05,0,0,0,0,0,14.5,1,1,0,5.1537867,5.2485967,42.25,57.44,51.83,57.2,3.333333333333333,1,1,0,0,14,5,5,1,442.5,1978732.5,1832583.5,193348.56,29586.66,6919.8765,0,7860.7446 +10412,12687,22634,22633,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.5850172,8.3249969,6.7770152,39,3,-2.9335999,0,-9,-9,2021,9,1,44,48,1,1,0,16.429092,16.429092,.05,.05,0,0,0,0,0,2,1,1,0,8.9395618,7.1161957,51.83,57.2,42.25,57.44,6.666666666666667,1,1,0,0,14,5,5,1,442.5,1978732.5,1832583.5,193348.56,29586.66,6919.8765,0,7860.7446 +10413,12688,22635,22636,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,8.2245865,8.2877693,53,-1,70.943588,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.951324,8.0705013,57.16,56.15,67.94,25.11,8.333333333333334,1,1,0,0,6,12,3,1,767.5,950485.88,479939.69,373460.44,0,0,0,3579.9482 +10413,12688,22636,22635,-9,-9,1,0,78,0,0,0,1,1,-9,0,4,0,7.1016474,6.8763037,53,1,-.50501573,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1816998,7.275331,67.94,25.11,57.16,56.15,8.333333333333334,1,1,0,0,0,12,3,1,767.5,950485.88,479939.69,373460.44,0,0,0,3579.9482 +10414,12689,22637,22638,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,0,0,0,2,-1,27.994581,0,2,3,2021,20,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.371078,0,44.24,59.44,47.77,56.48,8.333333333333334,1,1,0,0,8,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10414,12689,22638,22637,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.4049339,9.6420307,0,2,1,56.350491,0,2,1,2021,9,0,45,40,1,0,0,42.259441,42.259441,.05,.05,0,0,0,0,0,0,1,1,0,1.439597,0,47.77,56.48,44.24,59.44,8.333333333333334,1,1,0,0,13,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10414,12689,22639,-9,22637,22638,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-909.24481,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10414,12689,22640,-9,22637,22638,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.02594,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,5,1,533.5,128149.67,6770.6567,186891.56,43965.332,0,0,27084.641 +10415,12690,22641,-9,22642,-9,1,1,60,0,0,0,2,2,-9,1,1,8.3032188,8.5374451,6.5754628,0,0,-997.05646,0,3,3,2021,30,12,50,48,1,12,0,8.2969952,8.2969952,0,0,0,0,0,0,0,27,1,1,0,7.3956542,7.1386828,37.74,19.51,-9,-9,6.666666666666667,1,1,0,0,9,4,4,0,891,817667.81,888951.5,151866.05,22557.754,0,0,2380.7852 +10415,12691,22642,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.6618066,6.5683365,0,0,-1016.2289,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,6.4922919,0,0,1,1,0,3.6628046,6.5167413,48.2,20.19,-9,-9,5,1,1,0,0,0,4,2,0,1933,243112.84,69038.352,0,0,0,0,1733.6633 +10416,12692,22643,22644,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3652992,7.3697491,10,-3,104.57036,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6037121,7.268692,50,47,53,47,7,1,1,0,0,0,13,3,1,558,668878.63,298288.53,334829.81,0,4722.0303,0,2767.6328 +10416,12692,22644,22643,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.7937026,6.8787098,10,3,-41.807178,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.75148761,6.6873055,53,47,50,47,7,1,1,0,0,0,13,3,1,558,668878.63,298288.53,334829.81,0,4722.0303,0,2767.6328 +10417,12693,22645,22646,-9,-9,1,1,74,0,0,0,1,1,-9,0,1,0,8.6173754,8.4437628,10,1,90.072205,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8239422,8.1324558,56.71,32.38,51.41,56.15,8.333333333333334,1,1,0,0,6,5,4,1,456.5,1060211.6,584368.63,345447.69,0,0,0,3217.2852 +10417,12693,22646,22645,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.7705922,6.6175756,10,-1,-63.958347,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6486502,51.41,56.15,56.71,32.38,5,1,1,0,0,9,5,4,1,456.5,1060211.6,584368.63,345447.69,0,0,0,3217.2852 +10418,12694,22647,22648,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.0425158,6.8784919,36,3,71.72654,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.0280526,7.007154,54.2,57.49,57.57,49.69,8.333333333333334,1,1,0,0,6,9,3,1,522.5,1139992.5,477435.94,297365.94,0,6265.9937,-34.987213,1406.5017 +10418,12694,22648,22647,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,7.6203532,8.0062227,12,-3,140.49464,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7369432,57.57,49.69,54.2,57.49,6.666666666666667,1,1,0,0,7,9,3,1,522.5,1139992.5,477435.94,297365.94,0,6265.9937,-34.987213,1406.5017 +10418,12695,22649,-9,22647,22648,1,1,29,0,0,0,1,1,-9,0,3,7.8439412,7.9397216,0,0,0,-1108.8929,0,2,2,2021,8,0,40,40,1,0,0,8.977622,8.977622,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,-9,-9,3.333333333333333,1,1,0,0,5,9,4,1,486,112425.6,39536.941,0,0,0,0,1185.8459 +10419,12696,22650,22651,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.8351688,9.0782499,0,7,2,103.13258,0,2,2,2021,10,0,49,47,1,0,0,19.242266,19.242266,.05,.05,0,0,0,0,0,0,0,0,0,7.6201434,0,50.91,46.32,54.2,57.49,6.666666666666667,1,1,0,0,10,7,5,1,627.5,89181.477,124691.63,465380.56,321637.38,0,0,5076.1504 +10419,12696,22651,22650,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,8.4256725,8.8937349,0,7,-2,-57.440731,0,-9,-9,2021,12,2,53,63,1,2,0,14.857407,14.857407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,50.91,46.32,8.333333333333334,1,1,0,0,5,7,5,1,627.5,89181.477,124691.63,465380.56,321637.38,0,0,5076.1504 +10420,12697,22652,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-982.75983,0,-9,-9,2021,13,2,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,1,0,1,5,1,0,768,-228987.28,0,0,0,0,0,0 +10421,12698,22653,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,5.9641294,5.8641996,0,0,-1022.1732,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0523663,5.6145964,57.28,46.43,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,575,274726.91,-33779.695,166075.92,0,0,0,731.37195 +10422,12699,22654,-9,-9,22655,1,1,35,0,0,0,2,2,-9,0,3,7.9392452,7.9512835,0,0,0,-1080.7662,0,3,3,2021,12,1,40,40,1,1,1,11.405758,11.405758,.05,.05,0,0,0,0,0,0,0,0,0,6.7280955,0,48.93,50.55,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,996,52764.934,997.22931,0,0,0,0,1318.2422 +10422,12700,22655,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,8.0220518,8.5305347,6.8763814,0,0,-1044.1674,-9,-9,-9,2021,8,0,60,0,1,0,0,5.9084339,5.9084339,.05,.05,0,0,0,0,0,0,0,0,0,0,6.791801,55,52,-9,-9,8,4,6,0,0,1,7,4,1,1279,513671.09,461876.69,0,0,0,0,2222.0701 +10423,12701,22656,-9,-9,-9,1,0,33,1,2,0,1,1,-9,0,5,0,6.0534058,6.2831044,0,0,-1125.1678,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1437769,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,479,90983.813,0,166194.06,0,0,0,2031.9965 +10423,12701,22657,-9,22656,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-946.49011,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,479,90983.813,0,166194.06,0,0,0,2031.9965 +10423,12701,22658,-9,22656,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-865.55121,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,479,90983.813,0,166194.06,0,0,0,2031.9965 +10424,12702,22659,22660,-9,22663,1,1,53,0,0,0,2,2,-9,0,2,7.7956347,7.355535,0,34,3,-74.550957,-9,-9,3,2021,10,0,16,0,1,0,0,10.466394,10.466394,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.43,31.34,41.71,27.21,8.333333333333334,2,3,0,0,9,5,3,1,519,590660.25,127212.06,232887,31279.676,0,0,1959.8657 +10424,12702,22660,22659,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,6,-3,38.628242,0,-9,-9,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.71,27.21,53.43,31.34,5,2,3,0,1,0,5,3,1,519,590660.25,127212.06,232887,31279.676,0,0,1959.8657 +10424,12703,22661,-9,22660,22659,1,1,22,0,0,0,2,2,-9,0,3,8.0103521,7.8928008,0,0,0,-1071.9358,0,3,2,2021,7,1,38,53,1,1,1,10.991274,10.991274,.05,.05,0,0,0,0,0,2,1,1,0,.60042822,0,58.32,50.22,-9,-9,6.666666666666667,2,3,0,0,6,5,3,1,268,-125917.02,182429.91,0,0,0,0,772.5094 +10424,12704,22662,-9,22660,22659,1,0,21,0,0,0,2,2,-9,0,4,7.5843577,8.0725412,0,0,0,-843.84833,0,2,2,2021,25,11,38,40,1,11,1,6.3560495,6.3560495,.05,.05,0,0,0,0,0,7,1,1,0,0,0,21.14,57.91,-9,-9,1.666666666666667,2,3,0,0,4,5,3,1,423,-150483.48,-49675.152,0,0,0,0,1243.9399 +10424,12705,22663,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1109.385,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,75.503189,0,0,1,1,0,7.3493509,0,55,45,-9,-9,8,2,3,0,0,0,5,1,1,2140,63364.949,0,100645.05,0,0,0,3342.9978 +10425,12706,22664,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.55651,8.0231876,5.8262544,0,0,-1138.811,0,-9,-9,2021,8,0,21,21,1,0,0,13.656927,13.656927,.05,.05,0,0,0,0,0,7,1,1,0,5.8337622,0,62.15,38.9,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,3207,-135947.45,43222.203,0,0,0,0,2584.9829 +10426,12707,22665,-9,22666,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1118.4877,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,1,0,1506,144037.94,0,0,0,1687.6516,0,856.73376 +10426,12707,22666,-9,-9,-9,1,0,23,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1026.5018,-9,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,8.550000000000001,45.3,-9,-9,0,1,1,1,1,4,5,1,0,1506,144037.94,0,0,0,1687.6516,0,856.73376 +10427,12708,22667,-9,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,9.0510511,8.9060507,0,0,0,-984.10889,0,-9,-9,2021,22,10,40,40,1,10,0,17.252584,17.252584,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,1.666666666666667,1,1,0,0,12,12,5,1,857,334982.03,287995.81,135176.81,0,0,0,3238.3679 +10428,12709,22668,-9,22672,22670,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.647,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22669,-9,22672,22670,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.5502,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22670,22672,22673,22674,1,1,36,0,3,0,1,1,-9,0,4,8.0594463,8.041132,0,4,3,53.14938,0,3,2,2021,10,0,37,40,1,1,0,9.0057745,9.0057745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,45.23,32.27,7,2,3,0,0,1,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22671,-9,22672,22670,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-919.22742,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12709,22672,22670,-9,-9,1,0,33,0,3,0,2,2,-9,0,2,0,0,0,11,-3,-125.07735,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,45.23,32.27,51,56,6.666666666666667,2,3,0,0,0,8,2,1,2100,42961.438,-24203.115,0,0,0,0,2189.061 +10428,12710,22673,22674,-9,-9,1,0,70,0,3,0,3,3,-9,0,3,0,0,0,4,-2,-6.3205209,-9,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,54,46,7,2,3,0,0,0,8,2,1,727,461904.84,0,21012.129,0,0,0,2239.6196 +10428,12710,22674,22673,-9,-9,1,1,72,0,3,0,2,2,-9,0,3,0,3.3669825,3.7394292,4,2,44.646023,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.3406825,54,46,51,46,7,2,3,0,0,0,8,2,1,727,461904.84,0,21012.129,0,0,0,2239.6196 +10429,12711,22675,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,8.272028,8.2728806,0,0,0,-1032.6422,0,2,2,2021,11,1,41,40,1,1,0,11.57283,11.57283,0,0,0,0,0,0,0,27,0,0,0,0,0,55.44,46.02,-9,-9,5,1,1,0,0,8,13,4,1,203,-136816.7,0,0,0,0,0,1888.0433 +10430,12712,22676,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.8978167,9.0546741,0,8,0,-188.07187,0,1,1,2021,11,0,35,43,1,0,0,26.603127,26.603127,.05,.05,0,0,0,0,0,0,0,0,0,3.7197618,0,51.24,58.84,43.42,62.33,8.333333333333334,1,1,0,0,10,8,5,1,242,68523.492,57234.91,0,0,0,0,3115.9661 +10430,12713,22677,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.6714315,9.5529547,0,8,0,113.44997,0,1,2,2021,11,2,40,40,1,2,0,48.239986,48.239986,.05,.05,0,0,0,0,0,0,0,0,0,4.2528305,0,43.42,62.33,51.24,58.84,8.333333333333334,1,1,0,0,10,8,5,1,1225,387666.88,-24930.701,507784.81,333656.88,0,0,5329.5947 +10431,12714,22678,-9,22679,22680,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.35114,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,3087.3333,50411.508,-2486.1121,222025.72,104789.41,0,0,2211.8027 +10431,12714,22679,22680,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,7.4260106,7.3339639,0,10,-5,-67.858681,0,2,2,2021,3,0,22,18,1,0,0,7.282146,7.282146,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,37.71,64,8.333333333333334,1,1,0,0,12,4,4,1,3087.3333,50411.508,-2486.1121,222025.72,104789.41,0,0,2211.8027 +10431,12714,22680,22679,-9,-9,1,1,32,0,1,0,2,2,-9,0,5,8.3412914,8.4522161,0,10,5,-98.612045,0,2,2,2021,10,1,52,40,1,1,0,9.3535919,9.3535919,.05,.05,.05,0,0,0,0,0,1,1,0,3.8480105,0,37.71,64,57.16,56.15,8.333333333333334,1,1,0,0,12,4,4,1,3087.3333,50411.508,-2486.1121,222025.72,104789.41,0,0,2211.8027 +10432,12715,22681,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1031.5569,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,15.304976,0,0,1,1,0,0,0,63.76,18.07,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,462,284546.31,0,202131.28,0,0,0,242.61656 +10433,12716,22682,22683,-9,-9,1,0,34,1,2,0,1,1,-9,0,4,5.448925,5.5422802,0,11,-1,27.850798,0,2,2,2021,12,0,3,0,1,0,0,9.5192852,9.5192852,.05,.05,0,0,0,0,0,0,0,0,0,3.4161608,0,48.87,58.55,54.1,59.11,8.333333333333334,1,1,0,0,10,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10433,12716,22683,22682,-9,-9,1,1,35,1,2,0,1,1,-9,0,5,9.6938438,9.4853754,0,11,1,104.67104,0,-9,-9,2021,10,1,98,70,1,1,0,19.117067,19.117067,.05,.05,0,0,0,0,0,0,0,0,0,8.254405,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,12,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10433,12716,22684,-9,22682,22683,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-864.93921,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10433,12716,22685,-9,22682,22683,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.66571,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,0,326.25,306056.31,186716.67,563126.63,381395.94,2648.9907,7033.7861,6385.0107 +10434,12717,22686,-9,22689,-9,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-868.77094,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10434,12717,22687,-9,22689,-9,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-944.18768,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10434,12717,22688,-9,22689,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-880.21881,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10434,12717,22689,-9,-9,-9,1,0,42,0,3,0,2,2,-9,1,3,0,0,0,0,0,-1098.3339,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,51,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,671.75,101659.77,0,33627.484,0,0,0,1592.4889 +10435,12718,22690,22691,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,8,4,-90.249794,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,50,47,7,1,1,0,0,0,7,2,1,1089.5,276471.97,97015.07,162613.84,0,0,0,2188.104 +10435,12718,22691,22690,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.3850179,6.0353632,8,-4,-13.320125,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0025008,6.4969306,50,47,52,47,10,1,1,0,0,0,7,2,1,1089.5,276471.97,97015.07,162613.84,0,0,0,2188.104 +10436,12719,22692,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,0,0,-948.28925,0,3,3,2021,10,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,1,0,1,7,1,0,974,88155.727,0,0,0,0,0,311.38202 +10437,12720,22693,22694,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.1721506,8.3570824,0,7,2,.25793418,0,3,3,2021,9,0,37,37,1,0,0,11.627976,11.627976,.05,.05,0,0,0,0,0,0,0,0,0,2.399116,0,54.69,57.47,58.15,52.91,8.333333333333334,1,1,0,0,8,13,5,1,961.5,292872,115887.63,185809,27896.824,0,129.74158,3303.1213 +10437,12720,22694,22693,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.6364269,8.5986919,0,7,-2,-90.718864,0,2,2,2021,9,0,37,37,1,0,0,19.18302,19.18302,.05,.05,.05,0,0,0,0,0,0,0,0,.090792648,0,58.15,52.91,54.69,57.47,8.333333333333334,1,1,0,0,8,13,5,1,961.5,292872,115887.63,185809,27896.824,0,129.74158,3303.1213 +10437,12721,22695,-9,22693,22694,1,1,23,0,0,0,2,2,-9,0,4,7.1864076,6.9934111,0,0,0,-1103.6301,-9,2,2,2021,10,0,37,0,1,1,1,3.2022793,3.2022793,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,13,3,1,892,-146912.16,0,0,0,0,0,1133.1888 +10437,12722,22696,-9,22693,22694,1,0,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1018.201,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,0,13,1,1,5607,-67109.344,0,0,0,0,0,413.21384 +10438,12723,22697,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.7633839,8.1165524,0,0,0,-953.14087,0,2,2,2021,14,2,40,9,1,2,0,8.6779242,8.6779242,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.83,57.79,-9,-9,6.666666666666667,1,1,0,0,7,2,4,0,354,-18858.861,33659.973,0,0,0,0,1392.6871 +10439,12724,22698,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,8.139226,7.8572412,0,0,-927.91174,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0271268,7.9968972,45.49,58.84,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,4020,668249.81,219860.72,117003.94,0,5146.7935,0,2804.561 +10440,12725,22699,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.1212654,8.0776253,0,0,0,-1015.5931,0,3,3,2021,16,4,28,30,1,4,0,14.824507,14.824507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.35,43.19,-9,-9,3.333333333333333,1,1,0,0,11,12,4,0,542,357483.38,182363.95,202794.08,93330.602,3415.6609,0,1374.5126 +10440,12726,22700,-9,22699,-9,1,0,27,0,0,0,2,2,-9,0,4,8.0801077,7.8196726,0,0,0,-943.38745,0,2,-9,2021,12,0,40,45,1,0,1,8.1810398,8.1810398,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.87,61.03,-9,-9,6.666666666666667,1,1,0,1,7,12,4,0,653,119748.73,63246.852,0,0,2179.1775,0,1358.0917 +10441,12727,22701,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-934.46521,0,1,2,2021,32,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.01,32.23,-9,-9,1.666666666666667,1,1,0,1,2,9,2,1,310,354237.53,0,282185.72,0,0,0,1243.1777 +10442,12728,22702,22703,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.4481244,7.6590261,0,6,-2,-32.216202,0,2,3,2021,10,1,25,24,1,1,0,9.8656845,9.8656845,.05,.05,0,0,0,0,0,0,0,0,0,1.5538622,0,49.14,44.06,54.1,59.11,6.666666666666667,1,1,0,0,7,4,5,1,340.5,500810.16,248475.33,211774.25,-7012.8247,0,0,3714.3491 +10442,12728,22703,22702,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.6013699,8.5358534,0,6,2,-13.996123,0,1,2,2021,14,5,50,47,1,5,0,10.804,10.804,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.14,44.06,3.333333333333333,1,1,0,0,7,4,5,1,340.5,500810.16,248475.33,211774.25,-7012.8247,0,0,3714.3491 +10443,12729,22704,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.2448578,8.1917257,0,0,0,-1021.1836,0,3,3,2021,8,0,38,38,1,0,0,16.18261,16.18261,.05,.05,0,0,0,0,0,0,0,0,0,.087670766,0,49.63,54.22,-9,-9,6.666666666666667,1,1,0,0,12,12,4,1,950,-7405.6909,-3747.8799,0,0,0,0,1332.2732 +10444,12730,22705,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.4064455,8.6491928,0,0,0,-970.14575,0,2,2,2021,7,0,40,35,1,0,0,13.001499,13.001499,.05,.05,0,0,0,0,0,0,0,0,0,5.0916405,0,57.16,56.15,-9,-9,10,1,1,0,0,5,9,5,1,179,49347.59,3164.4446,76850.945,110372.83,0,0,906.01422 +10445,12731,22706,22707,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.0912113,8.0065975,10,2,38.961864,0,3,1,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.5081654,7.9945879,58.15,52.91,61.76,34.96,8.333333333333334,1,1,0,0,10,10,4,1,1062,1238879.5,610852.63,356514.56,0,0,0,6157.9824 +10445,12731,22707,22706,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.4142895,7.4908447,10,-2,75.163971,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9722886,7.2680111,61.76,34.96,58.15,52.91,8.333333333333334,1,1,0,0,8,10,4,1,1062,1238879.5,610852.63,356514.56,0,0,0,6157.9824 +10446,12732,22708,-9,-9,-9,1,0,75,0,2,0,3,3,-9,0,3,0,0,0,0,0,-885.17072,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,14.36298,0,0,1,1,0,0,0,50,47,-9,-9,8,2,3,0,0,0,6,2,1,112,-88600.82,0,0,0,0,0,487.10959 +10446,12733,22709,22710,22708,-9,1,1,34,0,2,0,1,1,-9,0,4,8.8974953,8.946434,0,2,2,-87.797409,0,3,2,2021,12,0,41,41,1,0,0,23.538605,23.538605,.05,.05,0,0,0,0,0,0,1,1,0,7.5544753,0,55.19,54.26,54.96,53.17,5,2,3,0,0,10,6,4,1,2981,206753.61,25431.145,168620.38,91420.078,28622.584,1197.311,4443.1182 +10446,12733,22710,22709,-9,-9,1,0,32,0,2,0,1,1,-9,0,3,0,0,0,2,-2,-78.397034,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.19,54.26,6.666666666666667,2,3,1,0,0,6,4,1,2981,206753.61,25431.145,168620.38,91420.078,28622.584,1197.311,4443.1182 +10446,12734,22711,22712,-9,-9,1,0,28,0,2,0,1,1,-9,1,4,0,0,0,1,-3,29.608362,-9,-9,-9,2021,12,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.44,45.91,24.95,67.94,10,2,3,1,0,0,6,2,1,544.5,74572.32,25337.338,0,0,4595.6494,4133.7617,520.01306 +10446,12734,22712,22711,22708,-9,1,1,31,0,2,0,1,1,-9,0,4,6.5344315,6.7268257,0,1,3,-59.663986,0,3,-9,2021,20,8,30,0,1,8,0,3.0377574,3.0377574,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,24.95,67.94,53.44,45.91,8.333333333333334,2,3,0,0,1,6,2,1,544.5,74572.32,25337.338,0,0,4595.6494,4133.7617,520.01306 +10447,12735,22713,-9,22716,22714,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-923.37042,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12735,22714,22716,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,9.5857153,9.6261568,0,36,-1,-151.49754,0,2,2,2021,11,0,45,40,1,0,0,39.110237,39.110237,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.31,47.65,59.14,52.5,10,1,1,0,0,12,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12735,22715,-9,22716,22714,1,0,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-919.09698,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,.46755165,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12735,22716,22714,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,0,0,0,36,1,-211.31795,0,2,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,61.31,47.65,6.666666666666667,1,1,0,1,0,8,5,1,902.5,1141899.8,685462.81,500379.34,43022.32,0,0,5320.5078 +10447,12736,22717,-9,22716,22714,1,0,22,0,1,0,3,3,-9,0,4,7.2783637,7.5559816,0,0,0,-880.49597,0,2,2,2021,6,0,20,16,1,0,1,9.0412655,9.0412655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.73,53.98,-9,-9,10,1,1,0,0,4,8,3,1,1115,76872.016,-118198.2,0,0,9761.5928,4153.522,1162.6401 +10447,12737,22718,-9,22716,22714,1,1,19,0,1,1,3,0,0,0,4,0,0,0,0,0,-879.39209,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,1,1,0,0,0,8,1,1,3402,0,0,0,0,0,0,0 +10447,12738,22719,-9,22716,22714,1,1,23,0,1,1,3,0,0,0,4,0,0,0,0,0,-1130.8599,-9,2,2,2021,11,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9783309,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,175,0,0,0,0,0,0,320.5773 +10448,12739,22720,22723,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.0202351,7.8800611,0,18,0,112.88396,0,2,2,2021,12,0,25,25,1,0,0,14.026024,14.026024,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,48.53,58.91,36.85,21.48,6.666666666666667,1,1,0,0,9,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10448,12739,22721,-9,22723,22720,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-873.75037,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10448,12739,22722,-9,22723,22720,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.3884,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10448,12739,22723,22720,-9,-9,1,0,41,0,2,0,1,1,-9,1,1,0,0,0,18,0,-43.971088,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.85,21.48,48.53,58.91,8.333333333333334,1,1,0,0,5,10,3,0,438,186867.61,46329.148,0,0,0,1360.2186,3239.0845 +10449,12740,22724,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1103.1722,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,2.6955981,3.4812179,15.631375,0,1,1,0,0,0,51.45,23.46,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,456,-82651.125,0,90511.367,0,0,0,1832.0082 +10450,12741,22725,-9,22726,-9,1,0,17,0,1,1,3,0,-9,0,2,0,0,0,0,0,-986.80499,-9,2,-9,2021,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,8.333333333333334,4,2,0,1,0,11,5,0,391.33334,105224.69,66070.617,168515.73,93087.578,0,0,6324.0161 +10450,12741,22726,-9,-9,-9,1,0,45,0,1,0,2,2,-9,1,5,9.5853634,9.6238594,0,0,0,-1017.153,0,3,3,2021,5,0,16,16,1,0,0,100.42443,100.42443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,0,2,3,0,0,7,11,5,0,391.33334,105224.69,66070.617,168515.73,93087.578,0,0,6324.0161 +10450,12741,22727,-9,22726,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.2013,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,11,5,0,391.33334,105224.69,66070.617,168515.73,93087.578,0,0,6324.0161 +10451,12742,22728,22730,-9,-9,1,1,53,0,1,0,2,2,-9,0,2,8.3272514,8.1533365,0,8,6,-6.7655168,0,3,2,2021,34,11,36,36,1,11,0,11.586294,11.586294,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.22,44.89,45.91,59.89,0,1,1,0,1,10,12,4,1,635.33331,606440.5,343039.41,218496.63,38577.949,23757.908,0,3874.6938 +10451,12742,22729,-9,22730,22728,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-911.48657,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,12,4,1,635.33331,606440.5,343039.41,218496.63,38577.949,23757.908,0,3874.6938 +10451,12742,22730,22728,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.4681273,8.3898687,0,8,-6,29.127007,-9,3,3,2021,7,0,38,0,1,0,0,15.865101,15.865101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,12.22,44.89,6.666666666666667,1,1,0,0,10,12,4,1,635.33331,606440.5,343039.41,218496.63,38577.949,23757.908,0,3874.6938 +10452,12743,22731,-9,-9,22732,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-941.61066,-9,-9,3,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.3860726,0,38.81,54.3,-9,-9,5,1,1,0,0,0,10,1,1,335,-57733.602,0,0,0,0,1953.5839,183.37866 +10452,12744,22732,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.6703281,8.9266376,7.1234803,0,0,-918.53802,0,-9,-9,2021,13,1,30,37,1,1,0,24.119799,24.119799,0,0,0,0,0,0,0,0,0,0,0,5.2069664,7.4263744,43.95,51.24,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,493,248859.77,184256.63,77521.648,0,0,4211.917,2690.0918 +10453,12745,22733,22734,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.5859089,7.0522909,49,-3,-10.186256,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5348787,57.63,56.14,62.39,56.71,10,1,1,0,0,0,7,4,1,302,2166421.5,1368115.3,574902.25,0,2778.4795,0,2898.8884 +10453,12745,22734,22733,-9,-9,1,1,70,0,0,0,1,1,-9,0,5,0,8.0414639,7.6500187,49,3,-6.1675739,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.1893616,7.9397426,62.39,56.71,57.63,56.14,10,1,1,0,0,0,7,4,1,302,2166421.5,1368115.3,574902.25,0,2778.4795,0,2898.8884 +10454,12746,22735,-9,-9,-9,1,0,24,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1055.2386,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,36.03,55.74,-9,-9,5,1,1,0,0,4,2,1,0,870,-19066.594,0,0,0,0,0,863.328 +10454,12746,22736,-9,22735,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.9793,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,870,-19066.594,0,0,0,0,0,863.328 +10455,12747,22737,22738,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.2948451,7.684092,0,8,-1,49.161015,0,-9,-9,2021,23,10,17,16,1,10,0,8.1487484,8.1487484,0,0,0,0,0,0,0,0,1,1,0,0,0,32.76,57.87,41.17,59.31,8.333333333333334,1,1,0,0,9,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10455,12747,22738,22737,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,9.8663311,9.3836231,0,8,1,-5.3597517,0,2,2,2021,12,0,45,45,1,0,0,40.50124,40.50124,.05,.05,0,0,0,0,0,0,1,1,0,6.3138275,0,41.17,59.31,32.76,57.87,5,1,1,0,0,9,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10455,12747,22739,-9,22737,22738,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.63257,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10455,12747,22740,-9,22737,22738,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.4563,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,532.75,230367.67,58313.934,130806.8,12296.969,0,0,10635.908 +10456,12748,22741,-9,22742,22744,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1050.9044,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10456,12748,22742,22744,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9129062,7.0094938,0,11,-3,30.340244,0,2,2,2021,13,1,20,20,1,1,0,6.90418,6.90418,0,0,0,0,0,0,0,0,1,1,0,0,0,46.14,54.22,44.42,52.34,8.333333333333334,1,1,0,0,12,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10456,12748,22743,-9,22742,22744,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1169.3771,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10456,12748,22744,22742,-9,-9,1,1,43,0,2,0,3,3,-9,0,3,5.2708879,5.418118,0,11,3,-48.257492,0,-9,-9,2021,6,0,4,4,1,0,0,6.7125192,6.7125192,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.42,52.34,46.14,54.22,10,1,1,0,0,9,11,2,1,1202,-64595.059,-3504.0234,0,0,1851.0702,0,1746.9399 +10457,12749,22745,-9,22746,22747,1,0,17,0,0,0,2,2,1,0,3,0,0,0,0,0,-1156.6528,-9,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.72,59.87,-9,-9,1.666666666666667,1,1,0,0,0,12,3,0,1246,269352.44,0,158295.84,0,0,0,1793.8979 +10457,12749,22746,22747,-9,-9,1,0,60,0,0,0,3,3,-9,0,1,0,0,0,9,-1,-110.62904,0,3,3,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.69,19.85,57.39,34.57,6.666666666666667,1,1,0,0,0,12,3,0,1246,269352.44,0,158295.84,0,0,0,1793.8979 +10457,12749,22747,22746,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.8332047,7.7154751,6.0000734,9,1,-34.598869,0,-9,-9,2021,9,0,42,38,1,0,0,8.2629852,8.2629852,0,0,0,0,0,0,0,0,1,1,0,0,6.0132442,57.39,34.57,45.69,19.85,8.333333333333334,1,1,0,0,9,12,3,0,1246,269352.44,0,158295.84,0,0,0,1793.8979 +10458,12750,22748,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1022.266,0,3,3,2021,25,12,0,30,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4790549,0,28.94,26.24,-9,-9,1.666666666666667,1,1,0,0,8,12,1,1,528,-53008.805,0,0,0,0,0,706.56512 +10459,12751,22749,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,3,7.9952202,7.9514227,0,0,0,-1073.6243,0,2,2,2021,13,4,36,33,1,4,0,6.8635111,6.8635111,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.09,53.39,-9,-9,6.666666666666667,1,1,0,0,11,13,3,1,612,4526.7363,54063.949,78709.094,35964.555,0,0,1709.8298 +10459,12751,22750,-9,22749,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.6816,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,612,4526.7363,54063.949,78709.094,35964.555,0,0,1709.8298 +10459,12752,22751,-9,22749,-9,1,1,21,0,1,0,2,2,-9,0,5,7.4900537,7.7439575,0,0,0,-1007.7894,0,2,-9,2021,6,0,28,29,1,0,1,8.914257,8.914257,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,0,0,3,13,3,1,1638,136336.17,109910.19,0,0,3885.5828,0,870.58002 +10459,12753,22752,-9,22749,-9,1,1,18,0,1,0,2,2,-9,0,4,6.503541,6.9371858,0,0,0,-1044.0552,0,2,-9,2021,8,0,33,0,1,0,1,2.4331665,2.4331665,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.61,59.73,-9,-9,1.666666666666667,1,1,0,0,2,13,2,1,1832,146820.92,-30372.633,0,0,0,0,961.06531 +10460,12754,22753,22754,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.272294,7.3415427,13,-4,5.0353646,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4679666,7.2187853,58.3,52.91,44.19,58.01,8.333333333333334,1,1,0,0,4,10,2,1,723.5,562677.25,418583.5,113424.5,0,0,2452.7109,2066.9668 +10460,12754,22754,22753,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,13,4,-43.081184,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5413942,0,44.19,58.01,58.3,52.91,3.333333333333333,1,1,0,0,4,10,2,1,723.5,562677.25,418583.5,113424.5,0,0,2452.7109,2066.9668 +10461,12755,22755,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.2891779,7.3844447,0,0,-1032.6534,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1595845,7.3764024,62.67,41.67,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,156,386370.63,137600.42,178835.53,0,0,0,1821.2726 +10462,12756,22756,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.2707253,6.8070159,0,0,-1049.5143,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.4515529,51.65,38.47,-9,-9,5,4,2,0,0,11,6,3,1,486,910451.25,302256.91,222031.02,0,0,0,1772.6053 +10463,12757,22757,22759,-9,-9,1,1,62,0,1,0,2,2,-9,0,4,0,7.6048894,7.561964,15,18,32.544041,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0318956,7.7931581,50,56.64,46.8,40.97,8.333333333333334,2,3,0,0,6,2,3,1,540.33331,1454238.6,1079281,181628.92,0,0,0,1893.1599 +10463,12757,22758,-9,22759,22757,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1054.9636,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,3,1,540.33331,1454238.6,1079281,181628.92,0,0,0,1893.1599 +10463,12757,22759,22757,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,7.0613108,6.9762621,0,15,-18,-79.035851,0,3,3,2021,11,1,16,16,1,1,0,8.0156879,8.0156879,0,0,0,0,0,0,0,0,1,1,0,3.5903931,0,46.8,40.97,50,56.64,8.333333333333334,2,3,0,0,13,2,3,1,540.33331,1454238.6,1079281,181628.92,0,0,0,1893.1599 +10464,12758,22760,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1100.2252,-9,2,2,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.14,64.63,-9,-9,5,1,1,1,0,6,13,1,0,1078,-28543.588,0,0,0,0,0,231.64011 +10465,12759,22761,22762,-9,-9,1,0,60,0,2,0,3,3,-9,0,3,0,0,0,6,-4,11.801987,-9,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,55.44,38.2,7,2,3,1,0,0,4,3,1,509,-52496.676,0,0,0,0,0,3322.2393 +10465,12759,22762,22761,-9,-9,1,1,64,0,2,0,3,3,-9,1,2,8.1749544,8.154355,0,44,4,-1.8403308,-9,-9,-9,2021,7,0,20,0,1,0,0,17.236179,17.236179,0,0,0,0,0,0,0,0,1,1,0,7.8692832,0,55.44,38.2,50,47,8.333333333333334,2,3,0,0,5,4,3,1,509,-52496.676,0,0,0,0,0,3322.2393 +10465,12760,22763,22764,-9,-9,1,0,20,0,2,1,2,0,-9,0,4,0,0,0,1,-8,0,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7747447,0,47,58,50,57,7,4,3,0,0,0,4,1,1,1046,63212.008,0,0,0,2401.5276,0,1850.4789 +10465,12760,22764,22763,22761,22762,1,1,28,0,2,0,1,1,-9,0,4,0,0,0,1,8,0,-9,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,47,58,7,2,3,0,0,0,4,1,1,1046,63212.008,0,0,0,2401.5276,0,1850.4789 +10465,12761,22765,22768,-9,-9,1,0,34,0,2,0,3,3,-9,0,3,0,0,0,3,-2,-30.078327,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,51,51,56,7,2,3,0,0,0,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12761,22766,-9,22765,22768,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.4393,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12761,22767,-9,22765,22768,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-982.11218,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12761,22768,22765,22761,22762,1,1,36,0,2,0,2,2,-9,0,4,8.2079744,8.1157103,0,3,2,-35.376854,-9,3,3,2021,10,0,24,0,1,1,0,13.840083,13.840083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,46,51,7,2,3,0,0,1,4,3,1,843.5,-87123.844,83939.313,0,0,0,0,2282.3867 +10465,12762,22769,-9,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1057.8442,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,4,6,0,0,0,4,1,1,16,-147425.56,0,0,0,0,601.69525,0 +10466,12763,22770,22771,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.0198431,7.9288306,31,-3,83.695221,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4724374,8.0489922,58.47,50.22,51.48,39.76,8.333333333333334,1,1,0,0,6,5,4,1,690,2535897.8,2172870,345139.81,0,0,0,4828.3369 +10466,12763,22771,22770,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,8.0864849,7.6879363,31,3,-51.990734,0,3,2,2021,11,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.9110951,7.9829111,51.48,39.76,58.47,50.22,8.333333333333334,1,1,0,0,8,5,4,1,690,2535897.8,2172870,345139.81,0,0,0,4828.3369 +10467,12764,22772,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.4382753,8.6726866,0,0,0,-1070.411,0,3,3,2021,6,0,43,39,1,0,0,9.6617966,9.6617966,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,41.87,-9,-9,1.666666666666667,1,1,0,0,10,13,5,0,3093,43221.234,-10607.267,0,0,-84.266136,0,2156.5181 +10468,12765,22773,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,5.3669825,4.9358916,0,0,-964.55542,0,3,-9,2021,22,9,0,0,4,9,0,0,0,0,0,0,1,0,5.9812379,0,0,1,1,0,2.7703154,5.1634169,41.36,34.01,-9,-9,5,2,3,0,0,0,2,2,1,19,49560.691,44802.746,135552.95,0,0,0,45.700851 +10469,12766,22774,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-934.20862,0,2,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.29,37.27,-9,-9,10,1,1,0,0,0,10,1,0,865,-174187.08,0,0,0,0,0,288.63727 +10470,12767,22775,22778,-9,-9,1,0,42,0,3,0,2,2,-9,1,1,0,0,0,8,5,0,0,3,3,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.15,18.09,35.63,62.19,0,1,1,0,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22776,-9,22775,22778,1,0,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1000.1533,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22777,-9,22775,22778,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.47015,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22778,22775,-9,-9,1,1,37,0,3,0,2,2,-9,0,4,0,0,0,8,-5,0,0,3,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.63,62.19,32.15,18.09,3.333333333333333,1,1,1,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10470,12767,22779,-9,22775,22778,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1013.3011,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,1,0,1030,235752.13,0,98755.133,0,0,0,2076.6829 +10471,12768,22780,22781,-9,-9,1,1,60,0,0,0,3,3,-9,1,2,0,0,0,5,7,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.73,26.01,39.59,32.09,5,1,1,0,0,0,13,1,0,1240,48897.559,-10955.084,33756.211,0,0,0,2081.0574 +10471,12768,22781,22780,-9,-9,1,0,53,0,0,0,3,3,-9,1,2,0,0,0,5,-7,0,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,39.59,32.09,37.73,26.01,5,1,1,0,0,0,13,1,0,1240,48897.559,-10955.084,33756.211,0,0,0,2081.0574 +10471,12769,22782,-9,22781,22780,1,0,24,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1043.6738,0,2,3,2021,21,7,0,40,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.38,61.66,-9,-9,5,1,1,1,0,3,13,1,0,392,-139346.7,0,0,0,0,0,0 +10472,12770,22783,22784,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.1289654,8.3367577,7,-2,146.64491,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2144551,8.2083025,36.37,60.23,44.13,48.64,10,1,1,0,0,0,4,4,1,480.5,2229939.5,1549238,506161.34,0,0,0,4410.751 +10472,12770,22784,22783,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.8444033,7.8777623,7,2,-26.504139,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2974596,8.0802584,44.13,48.64,36.37,60.23,7,1,1,0,0,0,4,4,1,480.5,2229939.5,1549238,506161.34,0,0,0,4410.751 +10473,12771,22785,22786,-9,-9,1,0,59,1,3,0,3,3,-9,0,3,0,0,0,10,-4,-83.485489,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,51,48,7,2,3,0,0,0,2,2,1,850,266170.63,16724.857,308886.91,11265.929,0,0,1112.4939 +10473,12771,22786,22785,-9,-9,1,1,63,1,3,0,3,3,-9,0,3,7.7307663,7.7160826,0,10,4,-94.177246,0,3,2,2021,10,0,50,48,1,1,0,5.3945627,5.3945627,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,48,48,7,2,3,0,0,12,2,2,1,850,266170.63,16724.857,308886.91,11265.929,0,0,1112.4939 +10473,12772,22787,22790,22785,22786,1,1,32,1,3,0,2,2,-9,0,5,6.8807964,6.944128,0,12,3,-79.853508,0,3,3,2021,2,0,35,48,1,0,0,3.1818559,3.1818559,0,0,0,0,0,0,0,0,1,1,0,0,0,55.24,53.7,36.9,53.64,10,2,3,0,0,12,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22788,-9,22790,22787,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.67224,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22789,-9,22790,22787,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.1541,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22790,22787,-9,-9,1,0,29,1,3,0,2,2,-9,0,4,0,0,0,12,-3,63.605118,0,3,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.9,53.64,55.24,53.7,8.333333333333334,2,3,0,0,5,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12772,22791,-9,22790,22787,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-999.3208,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,2,2,1,757,118940.14,35705.566,0,0,0,38.686504,1709.9744 +10473,12773,22792,-9,22785,22786,1,0,18,1,3,0,2,2,0,0,2,0,0,0,0,0,-904.80994,-9,3,3,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.73,31.2,-9,-9,5,2,3,0,0,0,2,1,1,677,49032.59,0,0,0,32192.125,0,0 +10474,12774,22793,22795,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.7519999,8.5545483,0,11,12,17.172533,-9,3,3,2021,7,1,35,0,1,1,0,19.127764,19.127764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.6,53.68,54.2,57.49,8.333333333333334,2,3,0,1,10,9,4,1,385.66666,186486.16,180399.39,0,0,0,0,2913.7649 +10474,12774,22794,-9,22795,22793,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-999.43195,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,2,3,0,0,0,9,4,1,385.66666,186486.16,180399.39,0,0,0,0,2913.7649 +10474,12774,22795,22793,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,0,0,0,11,-12,-66.078964,-9,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,50.6,53.68,8.333333333333334,2,3,0,0,0,9,4,1,385.66666,186486.16,180399.39,0,0,0,0,2913.7649 +10475,12775,22796,22797,-9,-9,1,1,47,0,0,0,3,3,-9,1,1,0,0,0,24,-24,0,0,3,3,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,28,40.37,42.45,1.666666666666667,1,1,0,0,0,1,1,0,640.5,-58754.098,0,0,0,13334.757,0,2300.0334 +10475,12775,22797,22796,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,22,24,0,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,6.1482077,0,120,1,1,0,0,0,40.37,42.45,38,28,8.333333333333334,1,1,0,0,0,1,1,0,640.5,-58754.098,0,0,0,13334.757,0,2300.0334 +10476,12776,22798,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1081.7885,-9,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.24,37.01,-9,-9,5,1,1,0,0,0,13,1,0,3768,118260.19,0,0,0,0,0,1313.4092 +10476,12777,22799,-9,22798,-9,1,0,23,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1042.5988,-9,3,-9,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,6,13,1,0,233,-72197.875,0,0,0,0,0,523.01141 +10476,12778,22800,-9,22798,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1093.686,-9,3,-9,2021,19,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.3,54.48,-9,-9,6.666666666666667,1,1,1,1,0,13,1,0,510,37265.711,0,0,0,0,0,297.82764 +10477,12779,22801,-9,-9,-9,1,0,59,0,0,0,2,2,-9,1,3,0,0,0,0,0,-938.2887,0,3,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.86,45.31,-9,-9,5,1,1,0,0,1,2,1,0,264,0,0,0,0,0,0,1528.8427 +10478,12780,22802,22803,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,8.5978765,8.9107866,0,12,-5,-85.145859,0,2,2,2021,9,1,46,43,1,1,0,13.719067,13.719067,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,5,1,1,0,0,9,8,4,1,650.33331,676919.75,54230.602,687646.94,93686.609,0,0,3040.6235 +10478,12780,22803,22802,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,7.6980181,7.7217388,0,12,5,31.037134,0,-9,2,2021,7,0,36,38,1,0,0,8.6946163,8.6946163,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,9,8,4,1,650.33331,676919.75,54230.602,687646.94,93686.609,0,0,3040.6235 +10478,12780,22804,-9,22803,22802,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.5217,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,650.33331,676919.75,54230.602,687646.94,93686.609,0,0,3040.6235 +10478,12781,22805,-9,22803,22802,1,0,19,0,3,0,2,2,1,0,5,8.3638535,8.2683372,0,0,0,-977.13977,-9,2,1,2021,7,0,48,0,1,0,1,9.14433,9.14433,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,1.666666666666667,4,2,0,0,2,8,4,1,4399,90020.695,0,0,0,2766.5159,0,1249.3419 +10479,12782,22806,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-962.63916,0,2,3,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.57,53.5,-9,-9,3.333333333333333,1,1,1,0,0,12,1,1,359,0,0,0,0,0,0,-221.84685 +10480,12783,22807,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,0,7.2954874,7.4720368,0,0,-853.6275,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.09863,7.0050149,54.1,59.11,-9,-9,10,1,1,0,0,3,5,3,1,1271,493348.06,404631.81,156270.34,76188.438,0,0,2458.6726 +10481,12784,22808,-9,22809,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1056.1116,-9,2,-9,2021,21,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27,60.7,-9,-9,3.333333333333333,1,1,0,0,1,6,3,0,859,122553.46,13326.887,0,0,0,0,1400.4165 +10481,12784,22809,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.8664131,7.7816625,0,0,0,-856.46625,0,-9,3,2021,12,0,39,24,1,0,0,6.715137,6.715137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.71,53.58,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,859,122553.46,13326.887,0,0,0,0,1400.4165 +10481,12785,22810,-9,22809,-9,1,1,20,0,0,0,2,2,-9,0,2,7.7739062,7.9455795,0,0,0,-1107.96,0,2,-9,2021,15,4,38,37,1,4,1,7.2491508,7.2491508,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.25,55.15,-9,-9,3.333333333333333,1,1,0,0,1,6,3,0,595,221328.27,81397.859,0,0,13242.773,0,877.51465 +10482,12786,22811,22812,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6856222,8.5071735,0,7,-10,-9.5036211,0,3,2,2021,7,0,53,50,1,0,0,14.154364,14.154364,0,0,0,0,0,0,0,0,1,1,0,.41137874,0,51.24,58.84,27.51,61.9,8.333333333333334,1,1,0,0,10,11,5,1,1473,996796,731400.69,446723.25,225915.91,0,0,8089.0381 +10482,12786,22812,22811,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,7.9967861,9.358881,8.9024773,7,10,115.53953,0,2,2,2021,24,11,24,34,1,11,0,16.994881,16.994881,0,0,0,0,0,0,0,0,1,1,0,3.8066621,8.9088221,27.51,61.9,51.24,58.84,3.333333333333333,1,1,0,0,10,11,5,1,1473,996796,731400.69,446723.25,225915.91,0,0,8089.0381 +10483,12787,22813,-9,22815,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-953.98053,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10483,12787,22814,-9,22815,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.5339,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10483,12787,22815,-9,-9,-9,1,0,45,0,3,0,1,1,-9,0,2,5.9958119,7.2262201,7.1799326,0,0,-1110.4656,0,2,1,2021,22,10,33,38,1,10,0,1.3797204,1.3797204,.05,.05,0,0,0,0,0,2,1,1,0,7.1465058,0,30.41,51.39,-9,-9,3.333333333333333,1,1,0,0,9,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10483,12787,22816,-9,22815,-9,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1056.1758,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,9,2,0,1640,152877.73,39109.875,0,0,0,0,2214.1633 +10484,12788,22817,-9,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,7.3458214,7.7463026,0,0,0,-881.57538,0,3,3,2021,8,0,25,30,1,0,0,9.5287333,9.5287333,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,7,4,3,0,916,130350.03,18821.238,0,0,-247.86215,630.39044,1110.6553 +10484,12788,22818,-9,22817,-9,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-925.18604,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,916,130350.03,18821.238,0,0,-247.86215,630.39044,1110.6553 +10485,12789,22819,22820,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.1383252,5.0090637,11,3,-25.127586,0,3,3,2021,18,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7846599,5.3770585,35.58,30,54.2,57.49,5,1,1,0,0,7,12,3,1,1579.5,929126.63,746359.75,137296.92,0,8779.1641,0,1945.1827 +10485,12789,22820,22819,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.9840336,8.0949688,11,-3,-23.283768,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.2165332,8.2493744,54.2,57.49,35.58,30,8.333333333333334,1,1,0,0,7,12,3,1,1579.5,929126.63,746359.75,137296.92,0,8779.1641,0,1945.1827 +10486,12790,22821,22822,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,8.6246805,8.4504471,0,1,-2,-4.9739914,-9,-9,-9,2021,6,1,47,0,1,1,0,11.884995,11.884995,.05,.05,0,0,0,0,0,0,0,0,0,1.0285084,0,57.16,56.15,55.09,55.87,8.333333333333334,1,1,0,0,2,10,5,0,478.5,208824.69,-27108.227,0,0,0,0,4020.2764 +10486,12790,22822,22821,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.601162,8.8306084,0,1,2,-13.115986,0,-9,-9,2021,11,1,40,39,1,1,0,17.714867,17.714867,.05,.05,0,0,0,0,0,0,0,0,0,2.117125,0,55.09,55.87,57.16,56.15,1.666666666666667,1,1,0,0,4,10,5,0,478.5,208824.69,-27108.227,0,0,0,0,4020.2764 +10487,12791,22823,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.9803038,6.958951,0,0,-1075.1322,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5696392,7.0099502,44.92,37.29,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,269,346172.28,175361.13,72921.813,0,0,0,1807.7789 +10488,12792,22824,22826,-9,-9,1,0,41,0,1,0,1,1,-9,0,5,0,0,0,8,-5,-41.665623,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,2,3,1,0,1,8,4,1,1191,620205.06,74421.906,747719.31,287391.91,0,0,3905.436 +10488,12792,22825,-9,22824,22826,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-981.62097,-9,1,1,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,2,3,-9,0,0,8,4,1,1191,620205.06,74421.906,747719.31,287391.91,0,0,3905.436 +10488,12792,22826,22824,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,8.7337942,8.657752,0,24,5,-67.006172,0,2,2,2021,6,0,38,38,1,0,0,16.309738,16.309738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,2,3,0,0,8,8,4,1,1191,620205.06,74421.906,747719.31,287391.91,0,0,3905.436 +10488,12793,22827,-9,22824,22826,1,1,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-994.18896,-9,1,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3114572,0,54.1,59.11,-9,-9,10,2,3,0,0,0,8,1,1,602,0,0,0,0,0,0,173.62079 +10489,12794,22828,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,7.0725765,7.1067848,0,0,-1021.7619,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.998899,53.25,45.63,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,482,342327.84,205917.84,113944.63,0,0,1008.6907,791.81073 +10490,12795,22829,22830,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0646362,6.8867931,39,-7,54.835938,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4443178,58.61,40.49,50.03,52.62,8.333333333333334,1,1,0,0,9,6,2,1,3455,752356.13,383576.69,214224.72,0,0,0,1968.8102 +10490,12795,22830,22829,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.2818809,5.9864345,8,7,11.59112,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1268535,6.4302468,50.03,52.62,58.61,40.49,10,1,1,0,0,0,6,2,1,3455,752356.13,383576.69,214224.72,0,0,0,1968.8102 +10491,12796,22831,22832,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,5.6709085,5.4190197,54,3,-23.564539,0,-9,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,2.7560296,0,0,1,1,0,0,5.3089471,55.06,26.24,43.35,28.92,6.666666666666667,1,1,0,1,0,11,2,1,1103,661822.13,194591.14,115175.16,0,0,0,1060.3091 +10491,12796,22832,22831,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,54,-3,-77.113312,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.35,28.92,55.06,26.24,6.666666666666667,1,1,0,1,0,11,2,1,1103,661822.13,194591.14,115175.16,0,0,0,1060.3091 +10492,12797,22833,22834,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,5.2201896,5.5476708,56,-1,59.205078,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.9847584,52,45,54,46,7,1,1,0,0,0,4,3,1,1806.5,924311.31,304586.81,389515,0,0,0,2389.8672 +10492,12797,22834,22833,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.6841507,8.0951309,56,1,-82.702271,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8112674,54,46,52,45,7,1,1,0,0,0,4,3,1,1806.5,924311.31,304586.81,389515,0,0,0,2389.8672 +10492,12798,22835,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0863972,8.0383692,0,0,0,-970.28424,0,-9,-9,2021,12,0,37,20,1,2,0,8.3054533,8.3054533,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,7,4,3,1,325,24483.879,0,0,0,0,0,666.27948 +10493,12799,22836,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7798147,7.6345477,0,0,0,-1034.5999,0,2,1,2021,14,2,30,32,1,2,0,7.5005388,7.5005388,.05,.05,0,0,0,0,0,2,1,1,0,0,0,43.57,46.18,-9,-9,1.666666666666667,1,1,0,1,12,1,3,1,296,-36923.938,15749.073,0,0,801.98212,0,1719.2562 +10493,12800,22837,-9,22836,-9,1,1,18,0,0,0,3,3,-9,0,3,6.2149553,6.1330028,0,0,0,-1072.6121,0,2,-9,2021,10,1,15,0,1,1,1,4.7498555,4.7498555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.61,62.71,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,475,57308.535,-10646.165,0,0,0,0,319.63867 +10494,12801,22838,22839,-9,-9,1,1,70,0,0,0,2,2,-9,0,5,0,5.8923826,5.9321284,47,3,79.441605,0,2,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.68128455,5.8745265,57.06,57.76,59.14,52.5,8.333333333333334,1,1,0,0,5,9,3,1,311.5,277681.91,190153.41,0,0,1271.073,0,2475.5483 +10494,12801,22839,22838,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5386257,7.5765958,47,-3,-50.906303,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9291015,7.5050759,59.14,52.5,57.06,57.76,10,1,1,0,0,5,9,3,1,311.5,277681.91,190153.41,0,0,1271.073,0,2475.5483 +10495,12802,22840,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,3.4296353,3.3816831,0,0,-905.37958,0,2,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7012064,3.5835931,41.54,19.65,-9,-9,3.333333333333333,1,1,0,0,0,7,2,1,601,27640.129,-54462.73,24138.107,0,0,0,393.07773 +10496,12803,22841,-9,22842,22843,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.7466,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,597.33331,1948253.8,2170.1682,1663472,228121.55,0,0,3573.7419 +10496,12803,22842,22843,-9,-9,1,0,29,1,1,0,2,2,-9,0,5,8.0619698,7.9089656,0,4,1,-194.84071,0,-9,-9,2021,9,0,23,34,1,0,0,16.443995,16.443995,0,0,0,0,0,0,0,0,0,0,0,3.8089011,0,51.73,58.82,48.53,58.91,8.333333333333334,1,1,0,0,6,9,5,1,597.33331,1948253.8,2170.1682,1663472,228121.55,0,0,3573.7419 +10496,12803,22843,22842,-9,-9,1,1,28,1,1,0,2,2,-9,0,4,8.5905361,8.9387941,0,4,-1,85.730476,0,-9,-9,2021,9,1,46,45,1,1,0,15.107414,15.107414,0,0,0,0,0,0,0,0,0,0,0,5.1068206,0,48.53,58.91,51.73,58.82,6.666666666666667,1,1,0,0,10,9,5,1,597.33331,1948253.8,2170.1682,1663472,228121.55,0,0,3573.7419 +10497,12804,22844,22845,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,7.461782,7.6668706,3,4,49.359993,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.8973951,7.6545157,62.39,56.71,43.79,32.5,8.333333333333334,1,1,0,0,5,13,3,1,2334,307278.09,154916.09,312047.44,64033.855,0,0,1509.6748 +10497,12804,22845,22844,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.2661276,7.3053288,0,3,-4,206.18507,0,2,3,2021,10,0,19,19,1,0,0,6.8572636,6.8572636,0,0,0,0,0,0,0,0,0,0,0,2.5381124,0,43.79,32.5,62.39,56.71,3.333333333333333,1,1,0,0,6,13,3,1,2334,307278.09,154916.09,312047.44,64033.855,0,0,1509.6748 +10498,12805,22846,22847,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.4843187,8.7243547,0,2,3,-53.182743,0,2,2,2021,8,0,38,38,1,0,0,14.182713,14.182713,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.98,50.87,54.79,55.86,8.333333333333334,1,1,0,0,9,9,5,1,638,-21050.668,47747.43,0,0,13855.143,0,4062.146 +10498,12805,22847,22846,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.3633099,8.2498188,0,2,-3,11.683765,0,-9,-9,2021,5,0,45,53,1,0,0,9.6334724,9.6334724,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,53.98,50.87,8.333333333333334,1,1,0,0,9,9,5,1,638,-21050.668,47747.43,0,0,13855.143,0,4062.146 +10499,12806,22848,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-959.06982,0,3,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.28,35.7,-9,-9,5,1,1,0,0,0,11,1,0,204,13259.12,0,0,0,0,0,314.86932 +10500,12807,22849,22851,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.4964828,8.5020094,0,5,0,92.568108,0,2,2,2021,7,1,33,36,1,1,0,19.988461,19.988461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,57.16,56.15,8.333333333333334,1,1,0,0,7,1,5,1,931,285047.5,284641.28,108265.29,46416.266,0,0,3539.7139 +10500,12807,22850,-9,22849,22851,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-883.55841,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,5,1,931,285047.5,284641.28,108265.29,46416.266,0,0,3539.7139 +10500,12807,22851,22849,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.2578068,8.4247427,0,5,0,-72.155739,0,-9,-9,2021,8,0,35,36,1,0,0,14.656132,14.656132,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,45.22,63.14,8.333333333333334,1,1,0,0,8,1,5,1,931,285047.5,284641.28,108265.29,46416.266,0,0,3539.7139 +10501,12808,22852,22853,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,5.3332052,5.0888233,11,5,48.059902,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9680295,5.3816829,60.53,48.35,45.45,49.66,10,1,1,0,0,0,12,2,1,271,182053.78,124128.72,26326.566,0,0,0,902.79614 +10501,12808,22853,22852,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,3.1213815,3.2174644,11,-5,39.681061,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6831877,3.2502697,45.45,49.66,60.53,48.35,6.666666666666667,1,1,0,1,5,12,2,1,271,182053.78,124128.72,26326.566,0,0,0,902.79614 +10502,12809,22854,22855,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,9.342783,9.2764215,0,18,3,-8.9324827,0,2,2,2021,9,0,98,48,1,0,0,10.796986,10.796986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,55.26,55.85,8.333333333333334,1,1,0,0,11,9,5,1,1118.5,144489.75,50942.117,0,0,0,2500.0999,5659.2041 +10502,12809,22855,22854,-9,-9,1,0,50,0,0,0,3,3,-9,0,5,8.3648815,8.455677,0,21,-3,-70.244812,0,-9,3,2021,6,0,39,37,1,0,0,13.152743,13.152743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.26,55.85,49.46,56.91,8.333333333333334,1,1,0,0,12,9,5,1,1118.5,144489.75,50942.117,0,0,0,2500.0999,5659.2041 +10502,12810,22856,-9,22855,22854,1,1,22,0,0,0,2,2,-9,0,3,9.0962925,9.1847,0,0,0,-1037.8265,0,3,2,2021,9,0,67,37,1,0,1,15.655257,15.655257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,10,1,1,0,0,1,9,5,1,717,33079.879,29476.131,0,0,3308.8711,0,3676.0571 +10503,12811,22857,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,2,8.8017931,8.6515894,0,0,0,-961.4726,0,2,1,2021,11,2,40,42,1,2,0,17.856726,17.856726,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.13,44.46,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,315,63473.852,91037.43,0,0,1636.7321,1144.5814,2434.302 +10504,12812,22858,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.9648142,7.7083592,0,0,0,-1129.3839,0,3,3,2021,0,0,49,38,1,0,0,6.9081306,6.9081306,.05,.05,0,0,0,0,0,2,0,0,0,0,0,53.85,44,-9,-9,0,1,1,0,0,14,12,4,1,141,1088249.8,872648.63,42464.504,45921.941,0,0,1717.2618 +10505,12813,22859,22860,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.0723667,8.2768574,10,4,-83.66082,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.899879,8.3012133,53,47,50,46,7,1,1,0,0,0,8,4,1,1096,1420148,329608.44,612782.69,0,0,0,3461.4453 +10505,12813,22860,22859,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.4759312,7.8576732,50,-4,59.023518,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6606965,7.9372268,50,46,53,47,7,1,1,0,0,9,8,4,1,1096,1420148,329608.44,612782.69,0,0,0,3461.4453 +10506,12814,22861,22862,-9,-9,1,1,48,0,0,0,3,3,-9,0,5,9.0816212,9.2525282,0,11,0,51.15435,0,-9,-9,2021,6,0,71,66,1,0,0,14.127136,14.127136,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.06,57.76,24.86,33.64,8.333333333333334,1,1,0,0,14,12,5,1,1270,222786.13,68334.859,0,0,0,0,4738.6641 +10506,12814,22862,22861,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,11,0,-70.002548,0,3,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.86,33.64,57.06,57.76,1.666666666666667,1,1,0,0,3,12,5,1,1270,222786.13,68334.859,0,0,0,0,4738.6641 +10507,12815,22863,22864,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,61,-2,-30.122114,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,36.77,35.93,43.1,22.05,8.333333333333334,1,1,0,0,0,7,2,0,638.5,619.43066,-53787.563,103524.33,21899.842,0,0,1889.5026 +10507,12815,22864,22863,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,6.584095,6.3789682,61,2,91.655403,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,124.31216,0,0,1,1,0,0,6.5187488,43.1,22.05,36.77,35.93,3.333333333333333,1,1,0,0,0,7,2,0,638.5,619.43066,-53787.563,103524.33,21899.842,0,0,1889.5026 +10508,12816,22865,22866,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6034079,7.5772033,0,20,9,-94.128716,0,3,3,2021,12,2,48,36,1,2,0,4.8333859,4.8333859,0,0,0,0,0,0,0,0,0,0,0,0,0,39.37,54.73,53,54,5,1,1,0,0,6,2,3,0,889,425523.5,296285.5,134227.36,-10627.135,617.15527,0,802.10339 +10508,12816,22866,22865,-9,-9,1,1,51,0,0,0,3,3,-9,1,4,0,4.6263528,4.6315613,21,0,49.938499,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0297942,53,54,39.37,54.73,8,1,1,0,0,0,2,3,0,889,425523.5,296285.5,134227.36,-10627.135,617.15527,0,802.10339 +10509,12817,22867,22868,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.2360849,8.3334208,0,34,-3,-2.8112297,0,3,3,2021,17,5,38,36,1,5,0,16.2724,16.2724,.05,.05,0,0,0,0,0,0,0,0,0,1.0663327,0,47.73,48.92,35.9,60.41,3.333333333333333,2,3,0,0,14,8,5,1,379,801706.5,241839.75,333625.09,0,-1051.7809,0,3557.7424 +10509,12817,22868,22867,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.4955359,8.503665,0,34,3,46.73904,0,3,3,2021,12,1,39,39,1,1,0,13.473364,13.473364,.05,.05,0,0,0,0,0,0,0,0,0,6.8870382,0,35.9,60.41,47.73,48.92,1.666666666666667,2,3,0,0,14,8,5,1,379,801706.5,241839.75,333625.09,0,-1051.7809,0,3557.7424 +10510,12818,22869,-9,22870,22871,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.3956,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10510,12818,22870,22871,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.9553981,8.2664366,0,5,-10,-77.268639,0,2,3,2021,8,0,36,37,1,0,0,10.493624,10.493624,.05,.05,0,0,0,0,0,0,1,1,0,3.0411673,0,60.29,52.11,33.31,60.67,8.333333333333334,1,1,0,0,11,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10510,12818,22871,22870,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,7.7000885,7.8666592,0,5,10,21.621578,0,2,2,2021,21,9,31,31,1,9,0,8.5535164,8.5535164,.05,.05,0,0,0,0,0,2,1,1,0,3.9911382,0,33.31,60.67,60.29,52.11,3.333333333333333,1,1,0,0,11,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10510,12818,22872,-9,22870,22871,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.21423,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,739,68674.688,41900.602,0,0,5339.6294,617.72675,2565.3418 +10511,12819,22873,22874,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.2942877,8.4997206,6.8484187,26,2,-114.51775,0,2,3,2021,5,0,37,38,1,0,0,12.719653,12.719653,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.267684,60.12,54.8,57.06,57.76,10,1,1,0,0,7,9,5,1,436.5,223362.95,136998.23,191440.06,40064.68,0,0,4783.2607 +10511,12819,22874,22873,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,8.4775047,8.3110647,0,26,-2,77.183029,0,-9,-9,2021,10,0,38,38,1,0,0,13.590304,13.590304,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,60.12,54.8,10,1,1,0,0,10,9,5,1,436.5,223362.95,136998.23,191440.06,40064.68,0,0,4783.2607 +10511,12820,22875,-9,22874,22873,1,1,22,0,0,0,2,2,-9,0,4,8.0039415,8.0117483,0,0,0,-816.17291,0,2,2,2021,4,0,49,42,1,0,1,6.0931191,6.0931191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,566,91803.867,72793.852,0,0,12339.956,0,1898.0166 +10512,12821,22876,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,3,0,7.1709104,6.8030152,0,0,-1089.9219,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.9419808,0,23.183937,0,1,1,0,0,6.9461975,60.44,46.58,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,626,216084.67,101731.82,168370.83,0,0,0,1158.5624 +10513,12822,22877,22878,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,46,3,64.530952,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,43.33,38.61,30.24,27.26,5,1,1,0,1,2,2,2,0,301,457644.16,101649.67,108722.05,0,0,0,1902.0083 +10513,12822,22878,22877,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,5.0460725,5.0534973,46,-3,-2.0212681,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5598979,5.1539783,30.24,27.26,43.33,38.61,8.333333333333334,1,1,0,1,0,2,2,0,301,457644.16,101649.67,108722.05,0,0,0,1902.0083 +10514,12823,22879,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.363636,8.2458849,0,0,0,-1130.9675,0,2,3,2021,9,0,40,43,1,0,0,11.932974,11.932974,0,0,0,0,0,0,0,2,0,0,0,0,0,54.61,51.04,-9,-9,8.333333333333334,3,4,0,0,8,9,4,1,2631,50496.098,-44032.512,112476.23,-8127.6191,0,0,1579.3821 +10515,12824,22880,22882,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,9.530098,9.2318068,0,12,6,143.37012,0,2,3,2021,6,0,47,50,1,0,0,35.05687,35.05687,.05,.05,0,0,0,0,0,0,0,0,0,8.139966,0,54.2,57.49,45.89,53.15,8.333333333333334,1,1,0,0,15,8,5,1,773.33331,428310.03,115888.14,411337.78,170297.8,6307.3325,5467.2803,9128.3887 +10515,12824,22881,-9,22882,22880,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1086.9288,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,773.33331,428310.03,115888.14,411337.78,170297.8,6307.3325,5467.2803,9128.3887 +10515,12824,22882,22880,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.9664392,9.1625261,0,12,-6,-59.133907,0,2,2,2021,11,0,43,42,1,0,0,32.844131,32.844131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.89,53.15,54.2,57.49,6.666666666666667,1,1,0,0,14,8,5,1,773.33331,428310.03,115888.14,411337.78,170297.8,6307.3325,5467.2803,9128.3887 +10516,12825,22883,-9,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-921.19952,0,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.55,48.92,-9,-9,5,1,1,1,0,2,1,1,0,1232,-29972.789,117434.98,0,0,0,0,743.76245 +10517,12826,22884,22885,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.9599462,6.8545594,10,3,-47.834591,0,-9,-9,2021,8,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,.84865373,7.1243067,56.1,49.93,57.33,53.46,10,1,1,0,0,14,9,3,1,541.5,1298155.5,295135.38,634939.63,0,0,0,1425.755 +10517,12826,22885,22884,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.7581511,7.7626987,0,10,-3,-118.08727,0,2,2,2021,8,0,35,40,1,0,0,6.1897583,6.1897583,.05,.05,0,0,0,0,0,7,0,0,0,.30639991,0,57.33,53.46,56.1,49.93,8.333333333333334,1,1,0,0,13,9,3,1,541.5,1298155.5,295135.38,634939.63,0,0,0,1425.755 +10518,12827,22886,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,7.7197237,7.9496603,0,0,-992.40936,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.1828985,7.9804482,59.3,34.68,-9,-9,8.333333333333334,1,1,0,0,2,7,4,1,564,236963.47,0,325261.81,3992.2095,0,0,1840.9991 +10519,12828,22887,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.5258203,7.6067772,0,0,0,-1022.6944,0,2,3,2021,5,0,40,30,1,0,0,5.1371279,5.1371279,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.54,46.05,-9,-9,8.333333333333334,1,1,0,0,13,9,3,0,361,198442.33,160027.88,0,0,0,0,1296.9119 +10519,12829,22888,-9,-9,22887,1,1,28,0,0,0,2,2,-9,0,3,8.0133104,7.7506256,0,0,0,-1179.7689,0,3,2,2021,11,2,37,37,1,2,1,8.9745941,8.9745941,0,0,0,0,0,0,0,0,0,0,0,.18115723,0,54.94,53.18,-9,-9,6.666666666666667,1,1,0,0,7,9,4,0,299,-1759.9396,0,0,0,2691.0952,0,1870.6908 +10520,12830,22889,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-951.98193,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.08,65.11,-9,-9,10,1,1,0,0,0,4,1,0,1443,0,0,0,0,0,0,1349.5319 +10521,12831,22890,22893,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,13,-7,64.087631,0,2,2,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6914043,0,25.8,62.8,25.56,42.81,6.666666666666667,1,1,0,0,2,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10521,12831,22891,-9,22890,22893,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-977.87683,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10521,12831,22892,-9,22890,22893,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.152,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10521,12831,22893,22890,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,8.9295959,8.9263535,0,13,7,222.39342,0,2,3,2021,29,11,46,47,1,11,0,22.07041,22.07041,.05,.05,0,0,0,0,0,0,1,1,0,4.3564429,0,25.56,42.81,25.8,62.8,6.666666666666667,1,1,0,0,14,11,4,1,1221.5,601143.38,117129.13,421286.75,27687.824,0,0,3591.9185 +10522,12832,22894,22895,-9,-9,1,1,50,0,2,0,3,3,-9,0,3,8.5004168,8.3254356,0,18,9,82.419518,0,3,3,2021,13,2,37,37,1,2,0,12.088865,12.088865,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.3,55.28,44.7,53.68,8.333333333333334,1,1,0,0,12,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10522,12832,22895,22894,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.4178562,8.3133154,0,17,0,203.97218,0,2,3,2021,10,0,37,37,1,0,0,9.8669901,9.8669901,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,44.3,55.28,8.333333333333334,1,1,0,0,12,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10522,12832,22896,-9,22895,22894,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-974.04919,-9,2,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10522,12832,22897,-9,22895,22894,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-983.36902,-9,2,3,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.997231,0,38.69,61.75,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,650.5,888558.25,115260.55,388266.03,192977.22,0,0,3618.7773 +10523,12833,22898,22899,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.8732724,7.8708348,27,5,12.468597,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0943332,7.8273878,58.32,50.22,30.49,43.02,8.333333333333334,1,1,0,0,6,10,3,1,745,1253672.3,93068.5,645659.81,0,0,0,3116.0269 +10523,12833,22899,22898,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,0,0,27,-5,113.62455,0,2,1,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5507669,0,30.49,43.02,58.32,50.22,6.666666666666667,1,1,0,0,0,10,3,1,745,1253672.3,93068.5,645659.81,0,0,0,3116.0269 +10523,12834,22900,-9,22898,22899,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-1131.9117,-9,1,1,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.977529,0,53.61,59.13,-9,-9,10,1,1,0,0,6,10,1,1,300,77525.375,0,0,0,0,0,-60.208679 +10524,12835,22901,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.4143267,8.0810356,0,0,0,-856.57385,0,-9,-9,2021,23,11,40,40,1,11,0,12.72474,12.72474,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.98,63,-9,-9,1.666666666666667,1,1,0,0,5,7,4,0,495,90871.664,214866.94,0,0,5420.7017,2000.6901,1795.5182 +10524,12836,22902,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.9644384,8.1932888,0,0,0,-1060.4821,0,-9,-9,2021,4,0,50,50,1,0,0,7.6223793,7.6223793,0,0,0,0,0,0,0,0,0,0,0,6.5654173,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,8,7,4,0,887,0,0,0,0,0,0,2012.6246 +10525,12837,22903,22906,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,8.249567,8.1476164,0,12,4,32.555473,0,3,3,2021,12,0,46,46,1,0,0,8.7897387,8.7897387,0,0,0,0,0,0,0,0,1,1,0,0,0,50.25,44.11,44.49,50.3,5,2,3,0,0,14,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22904,-9,22906,22903,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-925.4989,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22905,-9,22906,22903,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.7487,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22906,22903,-9,-9,1,0,41,0,3,0,2,2,-9,0,3,0,0,0,16,-4,108.36295,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.49,50.3,50.25,44.11,5,2,3,1,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10525,12837,22907,-9,22906,22903,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-943.00378,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,5,3,0,791.79999,8917.1133,0,153362.19,79179.516,0,0,1387.8336 +10526,12838,22908,22909,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.3202157,7.2503929,10,-3,-17.074726,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.0291781,0,0,1,1,0,1.8358282,7.3411741,60.71,37.26,52.83,49.11,8.333333333333334,1,1,0,0,2,11,2,1,661,867579.5,430977.41,238369.41,0,0,1224.8278,1789.7764 +10526,12838,22909,22908,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.9254494,5.3604965,10,3,32.784779,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,.62997299,0,0,1,1,0,2.0378609,5.0855832,52.83,49.11,60.71,37.26,8.333333333333334,1,1,0,0,0,11,2,1,661,867579.5,430977.41,238369.41,0,0,1224.8278,1789.7764 +10527,12839,22910,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,8.5645008,8.7641773,0,0,0,-965.62933,0,3,3,2021,12,0,44,43,1,0,0,15.806945,15.806945,0,0,0,0,0,0,0,2,0,0,0,1.8055454,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,14,7,5,0,67,211671.25,0,0,0,0,0,1263.6682 +10528,12840,22911,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1138.8335,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8164527,0,52.83,43.23,-9,-9,10,1,1,0,0,0,7,1,1,1000,-15019.9,0,0,0,0,0,1073.2156 +10529,12841,22912,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7920656,8.6398106,0,0,0,-880.5965,0,2,2,2021,20,9,36,36,1,9,0,22.770203,22.770203,.05,.05,0,0,0,0,0,0,0,0,0,2.9490721,0,14.91,68.97,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,199,374546.75,1818.0864,280938.09,93105.094,0,0,2266.7454 +10530,12842,22913,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,8.2954035,8.3227777,0,0,0,-965.1189,0,3,2,2021,12,0,41,41,1,0,0,14.256178,14.256178,.05,.05,0,0,0,0,0,14.5,0,0,0,9.1647234,0,55.21,43.87,-9,-9,6.666666666666667,2,3,0,0,9,9,4,1,2003,70651.281,-72609.641,0,0,3704.7434,0,4005.1213 +10531,12843,22914,-9,-9,-9,1,0,41,1,1,0,2,2,-9,0,3,7.501771,7.5528426,0,0,0,-949.95923,0,2,3,2021,12,0,35,35,1,0,0,9.3813219,9.3813219,0,0,0,0,0,0,0,0,1,0,1,0,0,47.07,53.97,-9,-9,5,1,1,0,0,2,11,3,0,1466.5,25142.137,1877.9404,79817.68,2760.6587,0,3692.2686,1729.6588 +10531,12843,22915,-9,22914,-9,1,0,17,1,1,1,2,0,0,0,3,0,0,0,0,0,-1073.3749,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.15,41.42,-9,-9,5,1,1,0,0,0,11,3,0,1466.5,25142.137,1877.9404,79817.68,2760.6587,0,3692.2686,1729.6588 +10531,12844,22916,-9,22914,-9,1,1,22,1,1,0,2,2,-9,0,3,0,0,0,0,0,-982.50653,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.71,56.91,-9,-9,5,1,1,1,0,0,11,1,0,258,0,0,0,0,0,0,230.94151 +10531,12845,22917,-9,22914,-9,1,0,20,1,1,0,2,2,-9,0,4,7.5647469,7.4791117,0,0,0,-954.81384,0,2,-9,2021,14,1,40,40,1,1,1,5.2473125,5.2473125,0,0,0,0,0,0,0,0,1,0,1,0,0,33.05,57.87,-9,-9,5,1,1,0,0,2,11,3,0,1462,-66380.063,0,0,0,0,1267.283,1506.1262 +10531,12845,22918,-9,22917,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.2001,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,0,1462,-66380.063,0,0,0,0,1267.283,1506.1262 +10532,12846,22919,-9,-9,22920,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.96124,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,650,1117.043,26237.158,0,0,0,335.57794,2069.1182 +10532,12846,22920,-9,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.4937868,7.4822168,0,0,0,-1037.0343,0,-9,-9,2021,6,0,24,24,1,0,0,7.3880663,7.3880663,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,-9,-9,6.666666666666667,1,1,0,0,10,2,3,0,650,1117.043,26237.158,0,0,0,335.57794,2069.1182 +10533,12847,22921,22922,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5364323,7.9691973,0,7,1,2.6219025,0,3,3,2021,10,1,39,43,1,1,0,13.294861,13.294861,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.87,45.12,55.05,34.27,6.666666666666667,1,1,0,0,8,13,4,1,971.5,90031.859,-8722.7305,179585.67,74666.961,3746.2034,0,2364.655 +10533,12847,22922,22921,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.9037528,8.0060253,0,7,-1,16.871809,0,3,3,2021,10,0,26,26,1,0,0,9.819191,9.819191,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.05,34.27,37.87,45.12,8.333333333333334,1,1,0,0,8,13,4,1,971.5,90031.859,-8722.7305,179585.67,74666.961,3746.2034,0,2364.655 +10533,12848,22923,-9,22922,22921,1,0,32,0,0,0,2,2,-9,0,5,7.5594921,7.815733,0,0,0,-990.50958,0,3,2,2021,2,0,40,0,1,0,1,7.2767005,7.2767005,0,0,0,0,0,0,0,0,0,0,0,0,0,66.09999999999999,39.96,-9,-9,10,1,1,0,0,6,13,3,1,841,-81688.313,0,0,0,1565.9752,0,488.76657 +10533,12849,22924,-9,22922,22921,1,1,19,0,0,0,2,2,-9,0,4,6.4600964,6.7264233,0,0,0,-948.76312,0,3,2,2021,9,0,16,12,1,0,1,5.1936193,5.1936193,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,2,13,2,1,395,-165172.58,0,0,0,0,0,828.68494 +10534,12850,22925,22926,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,42,5,-97.69149,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7230916,0,57.35,42.91,55.54,49.16,8.333333333333334,1,1,0,0,0,4,4,1,635.5,1655342.8,1540959.5,257294.17,116821.2,26023.129,808.32251,1541.9409 +10534,12850,22926,22925,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,8.7012882,8.7101669,0,43,-5,-122.22527,0,3,3,2021,17,5,42,42,1,5,0,15.942525,15.942525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.54,49.16,57.35,42.91,10,1,1,0,0,13,4,4,1,635.5,1655342.8,1540959.5,257294.17,116821.2,26023.129,808.32251,1541.9409 +10535,12851,22927,22928,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,4.1142597,4.1592011,7,1,28.41304,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0476184,4.2149067,63.41,29.17,57.92,51.82,8.333333333333334,1,1,0,0,5,6,2,1,425,174057.81,37209.887,89225.594,0,0,479.0166,652.68896 +10535,12851,22928,22927,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,53,-1,2.6965261,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.92,51.82,63.41,29.17,8.333333333333334,1,1,0,0,4,6,2,1,425,174057.81,37209.887,89225.594,0,0,479.0166,652.68896 +10536,12852,22929,22930,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2970715,7.9673228,0,8,3,46.158161,0,-9,-9,2021,8,0,37,37,1,0,0,11.731817,11.731817,.05,.05,0,0,0,0,0,2,0,0,0,1.9763314,0,57.23,42.49,59.43,58.05,8.333333333333334,1,1,0,0,9,2,4,1,721,182446.31,217461,143415,0,0,0,3017.8406 +10536,12852,22930,22929,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,7.7985573,7.6771541,0,37,-3,-10.877903,0,2,2,2021,10,0,43,44,1,0,0,7.2056756,7.2056756,.05,.05,0,0,0,0,0,2,0,0,0,1.7175533,0,59.43,58.05,57.23,42.49,8.333333333333334,1,1,0,0,9,2,4,1,721,182446.31,217461,143415,0,0,0,3017.8406 +10536,12853,22931,-9,22929,22930,1,1,27,0,0,0,2,2,-9,0,3,8.1231546,7.6406503,0,0,0,-1106.0107,0,2,2,2021,6,0,44,45,1,0,1,8.323247,8.323247,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.5,44.67,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,234,42682.813,-165677.94,0,0,1481.6434,456.1662,970.87573 +10537,12854,22932,22934,-9,-9,1,1,75,0,2,0,3,3,-9,0,3,0,3.7318292,4.0179486,4,38,-39.334995,0,3,3,2021,6,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8326266,4.0577717,55.51,51.57,48.18,61.8,8.333333333333334,1,1,0,0,14,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10537,12854,22933,-9,22934,22932,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.2504,-9,-9,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10537,12854,22934,22932,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,0,0,0,4,-38,-113.6705,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,55.51,51.57,10,2,3,1,0,0,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10537,12854,22935,-9,22934,22932,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-969.12897,-9,-9,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,4,2,0,0,0,2,2,1,483,358372.38,204016.19,126414.52,0,0,0,498.46997 +10538,12855,22936,22937,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,8.5627632,8.1460342,0,39,0,70.971291,0,3,1,2021,15,3,70,50,1,3,0,6.9062419,6.9062419,0,0,0,0,0,0,0,0,0,0,0,2.2895722,0,45.73,45.45,54.78,53.3,3.333333333333333,1,1,0,0,10,6,3,0,1138,2096785.5,1458574.3,185782.17,0,0,0,1939.0986 +10538,12855,22937,22936,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,0,0,39,0,-1.5840288,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.78,53.3,45.73,45.45,8.333333333333334,1,1,0,0,5,6,3,0,1138,2096785.5,1458574.3,185782.17,0,0,0,1939.0986 +10539,12856,22938,22939,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.2385769,8.3005524,0,12,1,-82.047005,0,-9,-9,2021,8,0,48,44,1,0,0,9.321372,9.321372,0,0,0,0,0,0,0,0,1,1,0,0,0,59.13,44.84,52.99,51.28,5,1,1,0,0,10,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12856,22939,22938,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,0,0,0,12,-1,64.681503,0,2,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,59.13,44.84,8.333333333333334,1,1,0,0,7,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12856,22940,-9,22939,22938,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.9272,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12856,22941,-9,22939,22938,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.7238,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,3,1,422.75,0,0,0,0,0,0,1277.7644 +10539,12857,22942,-9,22939,22938,1,1,18,0,2,0,2,2,1,0,5,6.7670331,6.6734676,0,0,0,-988.10211,-9,2,2,2021,11,0,34,0,1,0,1,3.2497654,3.2497654,0,0,0,0,0,0,0,0,1,1,0,0,0,66.96000000000001,35.51,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,570,-140463.81,0,0,0,4441.0884,0,703.14502 +10540,12858,22943,22944,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.5326233,8.5256376,0,1,-5,-15.238667,0,-9,-9,2021,8,0,39,39,1,0,0,18.038645,18.038645,0,0,0,0,0,0,0,0,0,0,0,2.1788292,0,41.3,60.77,52.44,51.54,8.333333333333334,1,1,0,0,9,10,5,1,1187.5,32297.412,0,0,0,0,0,4378.6084 +10540,12858,22944,22943,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.833437,8.8161097,0,1,5,79.418495,-9,-9,-9,2021,8,0,37,0,1,0,0,20.359966,20.359966,0,0,0,0,0,0,0,0,0,0,0,5.9715481,0,52.44,51.54,41.3,60.77,8.333333333333334,1,1,0,0,0,10,5,1,1187.5,32297.412,0,0,0,0,0,4378.6084 +10541,12859,22945,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,5.7378049,5.8187404,0,0,-980.17224,0,2,3,2021,11,0,0,4,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2197037,5.4610596,51,46,-9,-9,7,1,1,1,0,8,9,2,1,874,605301.63,-167026.83,354717.25,0,0,0,1003.9962 +10542,12860,22946,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4366617,8.5091057,0,0,0,-998.57544,0,3,3,2021,9,0,37,36,1,0,0,15.214292,15.214292,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,11,8,4,0,559,670135.13,-38829.078,486007.16,48272.332,0,0,1008.2626 +10543,12861,22947,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.9045229,8.9052172,0,0,0,-1008.2748,0,-9,-9,2021,19,7,42,39,1,7,0,20.944679,20.944679,0,0,0,0,0,0,0,0,1,1,0,0,0,34.26,53.13,-9,-9,3.333333333333333,1,1,0,0,6,12,5,1,1159,-346.15714,0,0,0,0,0,2460.9558 +10544,12862,22948,22949,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,43,11,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.91,59.89,55.13,35.63,5,1,1,0,0,0,7,1,1,1454.5,47437.738,0,0,0,-468.11655,1302.7131,1162.4307 +10544,12862,22949,22948,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,43,-11,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,55.13,35.63,45.91,59.89,5,1,1,0,0,0,7,1,1,1454.5,47437.738,0,0,0,-468.11655,1302.7131,1162.4307 +10544,12863,22950,-9,22948,22949,1,1,39,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1008.9909,0,3,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,8,1,1,0,0,0,7,1,1,957,-31891.729,0,0,0,0,0,258.94223 +10544,12864,22951,-9,22948,22949,1,1,28,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1074.8008,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,7,1,1,930,0,0,0,0,0,0,481.86874 +10545,12865,22952,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.7968373,6.8223886,0,0,-992.97845,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.6870036,5.3396997,54.79,55.86,-9,-9,1.666666666666667,1,1,0,0,3,5,2,1,884,401839.81,150180.7,296788.38,0,0,0,885.67755 +10546,12866,22953,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.4766464,6.3936419,0,0,-948.84766,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7100024,6.5443559,46.99,55.85,-9,-9,10,1,1,0,0,0,7,2,0,1211,757337,537465.25,233723.11,0,0,0,956.24481 +10547,12867,22954,22955,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.774766,9.0587187,6.0467591,1,0,-41.924423,-9,2,2,2021,10,1,48,0,1,1,0,14.350191,14.350191,.05,.05,0,0,0,0,0,0,0,0,0,7.2474217,0,48.87,58.55,51.24,58.84,8.333333333333334,1,1,0,0,1,8,5,0,745.5,155379.52,35155.625,237199.13,57726.914,-1859.9447,4765.9346,4094.5322 +10547,12867,22955,22954,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.2894545,8.2713499,0,1,0,-76.367378,-9,-9,-9,2021,13,1,42,0,1,1,0,13.068758,13.068758,.05,.05,0,0,0,0,0,0,0,0,0,4.4744859,0,51.24,58.84,48.87,58.55,8.333333333333334,1,1,0,0,4,8,5,0,745.5,155379.52,35155.625,237199.13,57726.914,-1859.9447,4765.9346,4094.5322 +10548,12868,22956,-9,22959,22958,1,1,31,0,0,0,1,1,-9,0,3,8.4105043,8.3539515,0,0,0,-1081.4336,0,2,2,2021,12,0,53,52,1,0,0,8.6371107,8.6371107,.05,.05,0,0,0,0,0,0,1,1,0,2.7021599,0,54.37,54.8,-9,-9,8.333333333333334,2,3,0,0,8,8,5,1,83,115325.8,-16597.947,0,0,6155.4155,0,1621.6033 +10548,12869,22957,-9,22959,22958,1,1,39,0,0,0,1,1,-9,0,3,7.6476684,7.2926226,0,0,0,-1054.7338,0,3,2,2021,12,0,40,8,1,0,0,5.0152154,5.0152154,0,0,.05,0,0,0,0,0,1,1,0,2.5189426,0,52.4,52.91,-9,-9,8.333333333333334,2,3,0,0,10,8,3,1,259,174797.11,40012.109,730627.81,550614.31,0,0,150.96251 +10548,12870,22958,22959,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,5.7723947,5.6505938,47,0,49.943035,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6666622,55.36,51.57,44.72,48.59,8.333333333333334,2,3,0,0,8,8,2,1,958.5,761290.19,273578.38,249005.94,0,0,0,1539.3287 +10548,12870,22959,22958,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,47,0,82.898865,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,48.59,55.36,51.57,8.333333333333334,2,3,0,0,6,8,2,1,958.5,761290.19,273578.38,249005.94,0,0,0,1539.3287 +10549,12871,22960,22961,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.7835288,7.9264326,12,-7,-44.078133,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1475306,8.1890783,57.07,49.39,61.28,35.65,8.333333333333334,1,1,0,0,4,4,4,1,747.5,1172735,571020.94,263050.53,0,0,0,3833.6655 +10549,12871,22961,22960,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,7.9229302,8.0780811,12,7,-44.827717,0,2,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9012089,7.7855787,61.28,35.65,57.07,49.39,6.666666666666667,1,1,0,0,0,4,4,1,747.5,1172735,571020.94,263050.53,0,0,0,3833.6655 +10550,12872,22962,22963,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,11,-23,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.52,28.09,42.32,54.75,5,1,1,0,0,0,4,1,0,1197,-152172.05,-44003.441,0,0,0,0,0 +10550,12872,22963,22962,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,0,0,11,23,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,0,0,42.32,54.75,42.52,28.09,5,1,1,0,0,0,4,1,0,1197,-152172.05,-44003.441,0,0,0,0,0 +10551,12873,22964,22965,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9375944,8.8030396,0,11,3,-45.484196,0,2,3,2021,11,0,43,43,1,0,0,17.172895,17.172895,.05,.05,0,0,0,0,0,0,0,0,0,4.2497745,0,47.72,55.04,54.57,49.24,8.333333333333334,1,1,0,0,12,9,5,1,1514,223981.59,39089.121,0,0,0,3162.5547,3484.8511 +10551,12873,22965,22964,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.6622839,8.0496502,4.956841,11,-3,-2.1289752,0,2,2,2021,12,0,25,27,1,0,0,10.050647,10.050647,.05,.05,0,0,0,0,0,0,0,0,0,0,5.5680542,54.57,49.24,47.72,55.04,6.666666666666667,1,1,0,0,12,9,5,1,1514,223981.59,39089.121,0,0,0,3162.5547,3484.8511 +10551,12874,22966,-9,22965,22964,1,0,20,0,0,0,2,2,0,0,3,0,0,0,0,0,-1038.9128,-9,2,2,2021,28,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0740857,0,17.8,66.2,-9,-9,1.666666666666667,1,1,0,1,1,9,1,1,1678,0,0,0,0,0,0,633.00818 +10552,12875,22967,-9,22969,22968,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.24255,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,11,4,1,723.66669,566963.25,414793.78,192104.22,90058.961,0,0,3271.7891 +10552,12875,22968,22969,-9,-9,1,1,45,0,1,0,1,1,-9,0,2,8.1123743,8.2732353,0,24,4,-56.715694,0,-9,-9,2021,10,0,52,57,1,0,0,10.654449,10.654449,.05,.05,0,0,0,0,0,0,1,1,0,4.1555009,0,53.05,28.78,60.12,54.8,8.333333333333334,2,3,0,0,11,11,4,1,723.66669,566963.25,414793.78,192104.22,90058.961,0,0,3271.7891 +10552,12875,22969,22968,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,8.2454071,8.2284479,0,24,-4,61.080853,0,2,2,2021,6,0,30,30,1,0,0,16.860809,16.860809,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,53.05,28.78,8.333333333333334,2,3,0,0,10,11,4,1,723.66669,566963.25,414793.78,192104.22,90058.961,0,0,3271.7891 +10552,12876,22970,-9,22969,22968,1,1,19,0,1,0,2,2,1,0,5,0,0,0,0,0,-977.53644,-9,2,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,2,3,0,1,0,11,1,1,236,-177782.19,0,0,0,0,0,0 +10553,12877,22971,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,2,7.9720469,7.5842795,0,0,0,-996.5968,0,3,3,2021,6,0,38,40,1,0,0,7.6423125,7.6423125,0,0,0,0,0,0,0,0,0,0,0,3.5708442,0,60.53,48.35,-9,-9,8.333333333333334,1,1,0,0,9,5,4,0,1340,205819.28,133566.48,0,0,0,0,1823.554 +10554,12878,22972,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,1,0,4.6722341,4.2673187,0,0,-932.39069,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.7467103,0,30.44,21.51,-9,-9,3.333333333333333,1,1,0,1,0,10,2,1,164,89753.32,1765.6896,221449.86,0,-1955.246,2452.2788,2386.7266 +10555,12879,22973,22974,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.485116,9.5986519,0,23,4,-26.635494,0,2,3,2021,6,0,75,80,1,0,0,18.903963,18.903963,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.69,47.21,8.333333333333334,1,1,0,0,9,1,5,1,563.5,827219.25,304819.56,286595.88,44795.809,0,0,5022.5234 +10555,12879,22974,22973,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,7.1945567,7.0563002,0,23,-4,-84.49527,0,3,3,2021,10,0,10,15,1,0,0,22.251265,22.251265,0,0,0,0,0,0,0,2,0,0,0,0,0,41.69,47.21,57.16,56.15,3.333333333333333,1,1,0,0,9,1,5,1,563.5,827219.25,304819.56,286595.88,44795.809,0,0,5022.5234 +10556,12880,22975,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,4.8532343,5.2579808,0,0,-889.68707,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2204847,5.0154366,58.24,32.39,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,252,55771.391,-40526.145,0,0,0,0,85.36248 +10557,12881,22976,22977,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.1581306,8.2703676,0,1,-15,63.967808,-9,-9,-9,2021,9,0,36,0,1,0,0,11.418556,11.418556,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.98,57.22,41.28,57.99,8.333333333333334,1,1,0,0,1,5,5,0,709.5,106099.26,210301.66,48773.688,100728.63,0,428.19818,3366.0586 +10557,12881,22977,22976,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.1742229,8.4502316,6.0076199,1,15,-21.506432,-9,-9,-9,2021,7,1,60,0,1,1,0,9.4617872,9.4617872,.05,.05,0,0,0,0,0,0,0,0,0,6.5547805,0,41.28,57.99,48.98,57.22,6.666666666666667,1,1,0,0,11,5,5,0,709.5,106099.26,210301.66,48773.688,100728.63,0,428.19818,3366.0586 +10557,12882,22978,-9,22977,22976,1,1,21,0,0,0,2,2,-9,0,4,8.4484529,8.3060284,0,0,0,-1161.0227,-9,2,2,2021,10,1,37,0,1,1,1,14.858901,14.858901,0,0,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,6,5,4,0,932,-46450.027,17474.959,0,0,8047.0366,0,1513.4132 +10558,12883,22979,22980,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,7.8892608,7.8198786,42,1,21.75374,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3310075,7.7197871,60.28,43.74,56.52,48.31,8.333333333333334,1,1,0,0,5,9,4,1,687,1849245.1,1062324.3,547093.38,0,0,0,3490.3157 +10558,12883,22980,22979,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.0020542,8.49617,42,-1,-26.352163,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6719666,8.1089487,56.52,48.31,60.28,43.74,8.333333333333334,1,1,0,0,4,9,4,1,687,1849245.1,1062324.3,547093.38,0,0,0,3490.3157 +10559,12884,22981,-9,22982,22983,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1135.4625,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10559,12884,22982,22983,-9,-9,1,0,51,0,2,0,2,2,-9,0,4,7.2096701,7.4027901,5.0551295,5,3,17.099932,0,-9,-9,2021,12,1,40,20,1,1,0,3.5948124,3.5948124,0,0,0,0,0,0,0,2,1,1,0,5.4076777,0,47.89,56.25,35.17,21.8,10,1,1,0,0,5,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10559,12884,22983,22982,-9,-9,1,1,48,0,2,0,2,2,-9,0,2,8.7823019,8.5769548,0,5,-3,-20.899895,0,2,2,2021,24,11,42,42,1,11,0,15.842452,15.842452,0,0,0,0,0,0,0,2,1,1,0,3.4502993,0,35.17,21.8,47.89,56.25,3.333333333333333,1,1,0,0,11,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10559,12884,22984,-9,22982,22983,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.09387,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,434.25,261879.72,-29744.217,167350.98,27095.182,0,0,2905.7168 +10560,12885,22985,22986,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,8.8261614,8.676486,0,19,3,-41.227081,0,3,3,2021,7,0,44,42,1,0,0,15.133591,15.133591,0,0,0,0,0,0,0,0,0,0,0,4.3875175,0,58.32,50.22,51,49,1.666666666666667,1,1,0,0,10,7,4,1,458.5,722576.56,535730.13,259594.28,0,6041.1841,0,3220.1914 +10560,12885,22986,22985,-9,-9,1,1,60,0,0,0,2,2,-9,1,3,0,0,0,19,-3,30.524605,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.0730124,0,51,49,58.32,50.22,7,1,1,0,0,0,7,4,1,458.5,722576.56,535730.13,259594.28,0,6041.1841,0,3220.1914 +10561,12886,22987,22988,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,0,0,0,7,-8,-17.732483,0,2,1,2021,20,8,0,39,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.05,46.56,45.34,41.21,5,1,1,1,0,7,12,2,1,886.66669,484697.88,423812.75,290503.53,156280.73,0,2347.1123,344.55615 +10561,12886,22988,22987,-9,-9,1,0,63,0,1,0,2,2,-9,0,3,0,4.6526709,4.4752121,7,8,42.151649,0,3,2,2021,15,4,0,16,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7177887,4.8470497,45.34,41.21,40.05,46.56,8.333333333333334,1,1,0,0,7,12,2,1,886.66669,484697.88,423812.75,290503.53,156280.73,0,2347.1123,344.55615 +10561,12886,22989,-9,22988,22987,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1071.2943,-9,2,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0317858,0,28.9,55.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,886.66669,484697.88,423812.75,290503.53,156280.73,0,2347.1123,344.55615 +10562,12887,22990,22991,-9,-9,1,1,55,0,0,0,3,3,-9,1,1,0,0,0,27,-3,0,-9,-9,-9,2021,14,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.7,36.46,52.37,56.93,0,2,3,0,0,0,6,1,0,1657,9571.0879,0,0,0,0,0,1936.6931 +10562,12887,22991,22990,-9,-9,1,0,58,0,0,0,2,2,-9,1,4,0,0,0,28,3,0,-9,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.37,56.93,21.7,36.46,1.666666666666667,1,1,1,0,0,6,1,0,1657,9571.0879,0,0,0,0,0,1936.6931 +10563,12888,22992,22995,-9,-9,1,1,37,0,4,0,2,2,-9,0,4,7.9177527,7.8447437,0,9,-3,-84.157448,0,-9,-9,2021,3,0,44,40,1,0,0,7.0009904,7.0009904,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.9,36.73,8.333333333333334,2,3,0,0,12,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10563,12888,22993,-9,22995,22992,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-962.13861,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10563,12888,22994,-9,22995,22992,1,1,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-873.02478,-9,1,2,2021,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10563,12888,22995,22992,-9,-9,1,0,40,0,4,0,1,1,-9,0,2,0,0,0,23,3,-31.713015,0,3,3,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.9,36.73,60.12,54.8,8.333333333333334,2,3,0,1,0,4,2,1,421.25,79049.789,-26861.793,0,0,0,477.5658,3281.9678 +10564,12889,22996,22997,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.4073887,8.8466434,0,3,-2,-9.2035093,0,-9,-9,2021,10,0,46,53,1,0,0,13.098493,13.098493,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,48.18,61.8,6.666666666666667,1,1,0,0,10,5,5,1,214.5,135552.59,157170.67,0,0,-2399.313,0,3796.9976 +10564,12889,22997,22996,-9,-9,1,0,39,0,0,0,2,2,-9,0,5,8.6530762,8.4440956,0,3,2,-35.917603,0,2,-9,2021,16,4,38,37,1,4,0,13.409833,13.409833,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,51.24,58.84,5,1,1,0,1,11,5,5,1,214.5,135552.59,157170.67,0,0,-2399.313,0,3796.9976 +10565,12890,22998,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.0695286,8.1911411,0,0,0,-918.80725,0,2,2,2021,9,0,48,48,1,1,0,9.0835886,9.0835886,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,-9,-9,7,2,3,0,0,6,8,4,0,668,-93574.445,106645.54,0,0,3270.8425,0,1390.1161 +10565,12891,22999,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.0036764,8.1357365,0,0,0,-1060.4869,0,-9,-9,2021,10,0,50,50,1,1,0,8.8622284,8.8622284,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,0,0,4,8,4,0,211,-138596.52,-23954.254,0,0,9832.667,0,1874.6554 +10566,12892,23000,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1087.6405,-9,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,125.59242,0,1169.6998,0,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,6,1,0,402,82527.492,0,101570.12,0,0,0,411.72137 +10567,12893,23001,23002,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.3375015,8.4829302,0,6,1,128.69313,0,-9,-9,2021,8,0,35,43,1,0,0,9.9558163,9.9558163,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,36.1,63.29,6.666666666666667,1,1,0,0,7,6,5,1,514.5,87760.453,-29227.652,182822.48,141649.97,681.7699,433.75333,2916.168 +10567,12893,23002,23001,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.9727988,8.2803106,4.6505713,6,-1,-26.088514,0,-9,-9,2021,23,11,8,45,1,11,0,40.574615,40.574615,.05,.05,0,0,0,0,0,7,0,0,0,4.8942237,0,36.1,63.29,49.04,55.86,1.666666666666667,1,1,0,0,6,6,5,1,514.5,87760.453,-29227.652,182822.48,141649.97,681.7699,433.75333,2916.168 +10568,12894,23003,23004,-9,-9,1,1,45,1,1,0,1,1,-9,0,3,8.8396063,8.6948128,0,9,7,32.240623,0,2,1,2021,1,0,40,85,1,0,0,26.084534,26.084534,.05,.05,0,0,0,0,0,0,1,1,0,5.3138461,0,58.32,50.22,58.05,54.52,8.333333333333334,1,1,0,0,9,7,5,1,2498,572519.5,247774.64,573456.25,182038.08,0,0,3596.3599 +10568,12894,23004,23003,-9,-9,1,0,38,1,1,0,1,1,-9,0,5,7.611485,7.328681,0,9,-7,-26.302752,0,1,1,2021,5,0,17,15,1,0,0,11.219529,11.219529,.05,.05,0,0,0,0,0,0,1,1,0,2.244158,0,58.05,54.52,58.32,50.22,10,1,1,0,0,9,7,5,1,2498,572519.5,247774.64,573456.25,182038.08,0,0,3596.3599 +10568,12894,23005,-9,23004,23003,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.38409,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,2498,572519.5,247774.64,573456.25,182038.08,0,0,3596.3599 +10569,12895,23006,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.3743787,6.7400632,0,0,-949.98651,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7994714,7.1305933,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,486,350498.06,216549.91,172519.81,0,0,0,758.37512 +10570,12896,23007,23008,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.6992793,7.2016072,7,6,-10.262916,0,3,3,2021,4,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.4383192,7.5770564,39.6,56.15,51.02,17.52,8.333333333333334,3,4,0,0,1,6,3,1,262.5,2077643.3,1266267.3,622479.25,0,0,0,2877.3384 +10570,12896,23008,23007,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.6011176,7.4958501,7,-6,-16.576931,0,3,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5685124,51.02,17.52,39.6,56.15,1.666666666666667,2,3,0,0,6,6,3,1,262.5,2077643.3,1266267.3,622479.25,0,0,0,2877.3384 +10571,12897,23009,23010,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,7.5521884,7.697679,0,3,1,-118.17333,0,2,1,2021,22,9,6,15,1,9,0,46.342087,46.342087,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.89,46.32,54.1,59.11,6.666666666666667,1,1,0,0,9,6,4,1,912,40015.031,14706.34,0,0,0,0,2279.5981 +10571,12897,23010,23009,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.105689,8.2828722,0,3,-1,-11.253898,0,-9,-9,2021,8,0,43,45,1,0,0,12.088473,12.088473,.05,.05,0,0,0,0,0,0,0,0,0,.19989039,0,54.1,59.11,23.89,46.32,6.666666666666667,1,1,0,1,4,6,4,1,912,40015.031,14706.34,0,0,0,0,2279.5981 +10572,12898,23011,-9,23013,23014,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.87183,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10572,12898,23012,-9,23013,23014,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-975.02991,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10572,12898,23013,23014,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,12,0,89.350708,0,2,1,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,50.73,44.02,60.7,8.333333333333334,1,1,0,0,9,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10572,12898,23014,23013,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.8584909,8.9706593,0,12,0,47.77837,0,1,1,2021,10,0,50,50,1,0,0,13.871373,13.871373,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,44.02,60.7,54.1,50.73,8.333333333333334,1,1,0,0,13,12,4,1,544.75,302982.97,140523.53,125559.44,63778.863,0,0,2477.1208 +10573,12899,23015,23016,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5461597,8.8016214,0,11,-6,-10.340267,0,3,3,2021,11,0,38,38,1,0,0,16.790707,16.790707,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.58,47.97,57.16,56.15,8.333333333333334,1,1,0,0,12,13,5,1,893.5,456100.66,188980.86,186202.44,43366.93,0,0,2776.562 +10573,12899,23016,23015,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.6625252,7.7682714,0,11,6,24.75128,0,3,3,2021,8,0,38,38,1,0,0,9.5909882,9.5909882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.58,47.97,8.333333333333334,1,1,0,0,12,13,5,1,893.5,456100.66,188980.86,186202.44,43366.93,0,0,2776.562 +10573,12900,23017,-9,23015,23016,1,0,30,0,0,0,1,1,-9,0,5,7.7253747,7.6436043,0,0,0,-998.11346,0,1,2,2021,7,0,33,30,1,0,1,7.4303503,7.4303503,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,12,13,3,1,412,1417.9229,-57601.449,0,0,0,0,1803.8273 +10573,12901,23018,-9,23015,23016,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-942.01819,0,1,2,2021,12,0,0,42,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,6,13,2,1,436,-24443.533,0,0,0,0,0,-364.55096 +10574,12902,23019,-9,23022,23021,1,1,37,0,1,0,2,2,-9,0,2,8.1639986,8.1199408,0,0,0,-1080.3721,0,3,3,2021,12,1,48,45,1,1,1,8.8392315,8.8392315,0,0,0,0,0,0,0,0,1,1,0,0,0,35.06,53.23,-9,-9,1.666666666666667,1,1,0,0,9,11,4,1,430,-95416.344,0,0,0,898.32031,0,2029.9014 +10574,12902,23020,-9,-9,23019,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.732,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,430,-95416.344,0,0,0,898.32031,0,2029.9014 +10574,12903,23021,23022,-9,-9,1,1,58,0,1,0,3,3,-9,0,2,8.5527267,8.430604,0,5,0,9.449276,0,-9,-9,2021,3,0,45,45,1,0,0,14.516097,14.516097,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.94,27.98,49.34,44.51,8.333333333333334,1,1,0,0,8,11,5,1,1261.5,548170.63,315994.94,323187.5,106427.03,0,0,3058.7671 +10574,12903,23022,23021,-9,-9,1,0,58,0,1,0,3,3,-9,0,4,8.1374302,8.1728544,0,5,0,-70.754601,0,-9,-9,2021,7,0,38,40,1,0,0,10.018342,10.018342,0,0,0,0,0,0,0,0,1,1,0,0,0,49.34,44.51,41.94,27.98,8.333333333333334,1,1,0,0,11,11,5,1,1261.5,548170.63,315994.94,323187.5,106427.03,0,0,3058.7671 +10575,12904,23023,23024,-9,-9,1,0,37,0,0,0,2,2,-9,0,1,7.7333694,7.6260405,0,19,-4,51.962536,0,2,1,2021,20,8,30,30,1,8,0,8.9097309,8.9097309,.05,.05,0,0,0,0,0,0,0,0,0,4.3477511,0,36.26,33.72,38.03,45.9,8.333333333333334,1,1,0,0,12,11,4,1,931.5,-19302.121,88543.516,0,0,0,1313.7798,2950.9937 +10575,12904,23024,23023,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.1234627,7.8596807,0,19,4,97.72908,0,2,-9,2021,14,3,38,39,1,3,0,8.5323744,8.5323744,.05,.05,0,0,0,0,0,0,0,0,0,2.7886972,0,38.03,45.9,36.26,33.72,6.666666666666667,1,1,0,0,12,11,4,1,931.5,-19302.121,88543.516,0,0,0,1313.7798,2950.9937 +10576,12905,23025,23027,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,6.9397283,6.7643604,0,9,-7,48.167049,0,-9,-9,2021,13,1,36,15,1,1,0,4.0245209,4.0245209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.13,58.1,53.91,55.06,6.666666666666667,1,1,0,0,10,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10576,12905,23026,-9,23025,23027,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.9575,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10576,12905,23027,23025,-9,-9,1,1,45,1,2,0,2,2,-9,0,5,9.1511908,9.2509518,0,9,7,114.61778,0,2,1,2021,6,0,45,45,1,0,0,24.063513,24.063513,.05,.05,0,0,0,0,0,0,0,0,0,5.7062025,0,53.91,55.06,44.13,58.1,8.333333333333334,1,1,0,0,12,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10576,12905,23028,-9,23025,23027,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.01831,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,9,5,1,655.5,466497.81,130014.5,533224.75,199700.7,0,0,4565.5024 +10577,12906,23029,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1023.5798,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.03,50.91,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,842,-37245.805,0,0,0,0,0,487.74814 +10578,12907,23030,23031,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,4.7195926,4.7030702,7,-2,-36.176678,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.891655,4.7225609,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,4,9,2,1,435.5,650426.13,216963.7,328507.56,0,0,247.13867,1991.0757 +10578,12907,23031,23030,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.2612033,7.5058503,7,2,173.31139,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0670366,7.3719888,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,4,9,2,1,435.5,650426.13,216963.7,328507.56,0,0,247.13867,1991.0757 +10579,12908,23032,23033,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,42,-1,-59.756798,0,2,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1953235,0,39.05,57.88,44.58,40.68,6.666666666666667,1,1,0,0,3,9,2,1,217.5,4515593,1220952.8,2395317,0,0,0,1440.6973 +10579,12908,23033,23032,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,6.9231009,6.5825844,42,1,68.957664,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6117554,6.4775791,44.58,40.68,39.05,57.88,6.666666666666667,1,1,0,0,6,9,2,1,217.5,4515593,1220952.8,2395317,0,0,0,1440.6973 +10580,12909,23034,-9,23035,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-912.12836,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,3,1,1109,4372.8867,0,0,0,0,0,1556.0724 +10580,12909,23035,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,8.2381172,7.7187366,0,0,0,-1028.847,0,2,-9,2021,6,0,33,34,1,0,0,11.644822,11.644822,0,0,0,0,0,0,0,2,1,1,0,0,0,58.16,48.06,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,1109,4372.8867,0,0,0,0,0,1556.0724 +10581,12910,23036,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1023.8206,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.15000000000001,29.3,-9,-9,8.333333333333334,1,1,0,0,12,12,1,0,162,-176946.25,0,0,0,0,0,1012.9744 +10582,12911,23037,23039,-9,-9,1,0,42,0,2,0,2,2,-9,1,3,7.9368591,7.5848327,0,14,-1,23.388187,0,2,2,2021,7,0,30,35,1,0,0,10.743887,10.743887,0,0,0,0,0,0,.036642149,42,1,1,0,0,0,58.91,45.88,36.51,56.83,8.333333333333334,1,1,0,0,2,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10582,12911,23038,-9,23037,23039,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.3054,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10582,12911,23039,23037,-9,-9,1,1,43,0,2,0,3,3,-9,0,2,8.0741663,7.9966617,0,14,1,71.221565,0,3,3,2021,12,0,52,55,1,0,0,9.4121866,9.4121866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.51,56.83,58.91,45.88,6.666666666666667,2,3,0,0,8,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10582,12911,23040,-9,23037,23039,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.90741,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,3,0,984.75,220652.22,153657.16,179306.88,125482.22,0,0,3178.9556 +10583,12912,23041,23042,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,7.8817225,8.0267315,0,26,0,30.877687,0,-9,-9,2021,10,1,57,66,1,1,0,6.9888711,6.9888711,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,1.666666666666667,1,1,0,0,14,9,5,1,1176.5,2763196.5,2015036,541895.94,-503.78711,0,0,5202.7485 +10583,12912,23042,23041,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.4229078,9.3455648,0,21,0,134.03452,0,2,3,2021,9,0,55,50,1,0,0,29.195904,29.195904,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,2,3,0,0,14,9,5,1,1176.5,2763196.5,2015036,541895.94,-503.78711,0,0,5202.7485 +10584,12913,23043,23044,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,8,-7,-94.475632,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.16686958,0,57.5,19.57,50.77,40.46,10,1,1,0,0,0,6,2,1,446.5,457907.19,261574.8,170675.88,0,0,0,1903.1702 +10584,12913,23044,23043,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.2348814,7.1999965,46,7,-86.279694,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2951775,50.77,40.46,57.5,19.57,10,1,1,0,0,7,6,2,1,446.5,457907.19,261574.8,170675.88,0,0,0,1903.1702 +10585,12914,23045,23046,-9,-9,1,1,67,0,0,0,2,2,-9,0,5,0,7.9836917,8.5011044,6,2,-87.377953,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2670479,8.3772669,60.03,50.88,36.08,60.5,10,1,1,0,0,5,7,3,1,197,970450.63,789830.63,212552.47,0,10665.736,0,7090.4414 +10585,12914,23046,23045,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,6,-2,87.790237,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1084614,0,36.08,60.5,60.03,50.88,8.333333333333334,1,1,0,0,0,7,3,1,197,970450.63,789830.63,212552.47,0,10665.736,0,7090.4414 +10585,12915,23047,-9,23046,23045,1,1,39,0,0,0,1,1,-9,0,3,9.7970791,9.3598366,0,0,0,-1001.0944,0,2,2,2021,16,4,46,50,1,4,0,34.721241,34.721241,.05,.05,0,0,0,0,0,0,1,1,0,3.0356383,0,46.8,57.03,-9,-9,6.666666666666667,1,1,0,0,8,7,5,1,1027,222631.56,39655.09,198256.94,148889.8,0,0,4834.6846 +10586,12916,23048,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,6.9773421,6.8301544,0,0,-994.8537,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,9.9202042,0,0,1,1,0,0,6.8670063,47.95,21.46,-9,-9,3.333333333333333,1,1,0,0,0,8,2,1,925,49862.695,22324.523,0,0,0,0,1634.5125 +10586,12917,23049,-9,23048,-9,1,0,52,0,0,0,3,3,-9,0,3,7.3923583,7.2290621,0,0,0,-1070.9453,0,3,-9,2021,12,1,21,21,1,1,0,9.4974432,9.4974432,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,862,86743.734,245076.36,0,0,0,0,1623.6547 +10587,12918,23050,23051,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.151773,7.5646005,48,4,-46.205257,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3368278,57.33,53.46,36.77,54.7,10,1,1,0,0,0,5,2,1,494.5,559246.06,174551.16,275007.41,0,0,0,1339.7472 +10587,12918,23051,23050,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,53,-4,-77.500511,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.77,54.7,57.33,53.46,10,1,1,0,0,0,5,2,1,494.5,559246.06,174551.16,275007.41,0,0,0,1339.7472 +10588,12919,23052,23053,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,0,0,44,0,87.177589,0,2,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,56.18,53.85,10,1,1,0,0,6,5,2,1,562,113097.26,154255.25,134546.06,0,0,0,1838.1425 +10588,12919,23053,23052,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.3736267,6.0631876,44,0,39.267666,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.5055432,5.2018361,56.18,53.85,54.79,55.86,5,1,1,0,0,6,5,2,1,562,113097.26,154255.25,134546.06,0,0,0,1838.1425 +10589,12920,23054,23055,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.5707746,7.3953075,0,10,-2,47.58498,0,3,3,2021,8,0,30,30,1,0,0,6.6151552,6.6151552,.05,.05,0,0,0,0,0,0,1,1,0,1.4002517,0,59.43,58.05,59.05,40.24,8.333333333333334,1,1,0,0,12,13,5,1,1337,1409959.8,1019341.8,333040.94,0,12686.926,0,3838.0291 +10589,12920,23055,23054,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4878407,8.7619343,7.7620993,10,2,146.15843,0,3,2,2021,9,0,35,35,1,0,0,14.500587,14.500587,.05,.05,0,0,0,0,0,0,1,1,0,7.6043086,8.0039749,59.05,40.24,59.43,58.05,1.666666666666667,1,1,0,0,12,13,5,1,1337,1409959.8,1019341.8,333040.94,0,12686.926,0,3838.0291 +10590,12921,23056,23057,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,7,-5,70.643929,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.67,32.3,56.31,21.31,6.666666666666667,1,1,0,0,10,5,2,1,555.5,743818.13,544401.63,221629.42,0,0,0,2281.6108 +10590,12921,23057,23056,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.7309375,7.2357602,7,5,31.398623,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9111547,6.7859278,56.31,21.31,44.67,32.3,3.333333333333333,1,1,0,0,9,5,2,1,555.5,743818.13,544401.63,221629.42,0,0,0,2281.6108 +10591,12922,23058,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.6079979,8.3837175,0,0,0,-946.72504,0,3,3,2021,6,0,42,38,1,0,0,13.257965,13.257965,0,0,0,0,0,0,0,0,1,1,0,6.5633755,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,7,2,5,1,281,88079.289,-13905.492,0,0,0,0,1922.7067 +10591,12923,23059,-9,-9,23060,1,1,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1162.6331,-9,-9,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,2,1,1,450.5,114606.69,0,0,0,0,0,0 +10591,12923,23060,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-989.66425,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,6.666666666666667,2,3,1,0,2,2,1,1,450.5,114606.69,0,0,0,0,0,0 +10591,12924,23061,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1029.6617,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,2,1,1,1442,304.82916,0,0,0,0,2011.6263,815.65991 +10592,12925,23062,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.6601801,8.7694979,0,0,0,-889.21759,0,-9,-9,2021,5,0,30,30,1,0,0,24.834423,24.834423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,5,1,1,0,0,9,11,5,0,1123,225305.55,360.40958,0,0,0,0,2712.3752 +10593,12926,23063,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,3.2891378,3.1742227,0,0,-1003.534,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,3.5319726,57.16,56.15,-9,-9,10,1,1,0,0,0,6,2,1,229,128269.48,104664.77,200689.61,0,0,0,1415.1267 +10594,12927,23064,23065,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.1935825,7.1508493,5,1,-59.444614,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8469315,7.3287697,60.13,49.27,54.27,48.04,8.333333333333334,1,1,0,0,3,9,4,1,2671.5,1937178.3,1097980,631610.63,0,0,0,4584.5366 +10594,12927,23065,23064,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,8.2933607,8.548399,0,5,-1,76.511139,0,3,3,2021,12,1,60,35,1,1,0,8.7065229,8.7065229,0,0,0,0,0,0,0,2,1,1,0,7.6069241,0,54.27,48.04,60.13,49.27,8.333333333333334,1,1,0,0,7,9,4,1,2671.5,1937178.3,1097980,631610.63,0,0,0,4584.5366 +10595,12928,23066,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1091.649,0,2,2,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.56,43.11,-9,-9,0,1,1,0,0,0,7,1,0,1481,-90473.203,0,0,0,0,0,558.30011 +10596,12929,23067,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,5.5015616,5.3072023,0,0,-1083.6456,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,7.6598792,25.749943,53.38023,0,1,1,0,7.9863005,5.7411838,47.79,28.96,-9,-9,6.666666666666667,3,4,0,0,0,12,2,1,621,146561.08,-118633.41,128127.26,0,0,0,3461.592 +10597,12930,23068,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1075.3358,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,29.77,26.17,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,1191,0,0,0,0,0,0,2232.0889 +10597,12931,23069,-9,23068,-9,1,0,25,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1025.2391,0,3,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,16.21,59.64,-9,-9,3.333333333333333,1,1,0,0,6,13,1,0,279,187542.94,0,0,0,0,0,234.97673 +10597,12932,23070,-9,23068,-9,1,1,24,0,0,0,2,2,-9,1,2,0,0,0,0,0,-872.11133,0,3,-9,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,19.65,60.29,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,232,26588.305,0,0,0,0,0,420.65222 +10598,12933,23071,-9,-9,-9,1,0,59,0,0,0,1,1,-9,1,1,0,7.1943178,7.3919625,0,0,-974.06232,0,-9,-9,2021,23,7,0,0,3,7,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.392108,6.5659118,19.01,22.64,-9,-9,0,1,1,1,1,0,10,3,1,835,373765.06,38823.836,272295.34,0,0,0,1093.1154 +10599,12934,23072,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,7.034008,6.5627861,0,0,-979.49902,0,3,2,2021,6,0,0,8,4,0,0,0,0,0,0,0,1,0,7.0043774,0,0,1,1,0,4.3048992,6.7235594,61.18,34.74,-9,-9,6.666666666666667,1,1,0,0,9,6,2,1,381,322065.13,136280.13,91142.438,0,0,0,1270.119 +10600,12935,23073,-9,23075,23074,1,1,24,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1159.1383,0,2,3,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.22,61.83,-9,-9,5,1,1,1,0,0,2,1,0,858,177329.67,0,0,0,0,0,223.66467 +10600,12936,23074,23075,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,0,0,0,3,5,12.898685,0,3,3,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,0,46.19,41.03,27.89,18.61,5,1,1,0,0,0,2,2,0,468.5,93139.359,-43567.852,92963.586,0,0,0,968.38855 +10600,12936,23075,23074,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,7.0251188,6.8848581,0,3,-5,42.670959,0,-9,-9,2021,30,11,10,0,1,11,0,7.6773324,7.6773324,0,0,0,0,0,0,0,7,1,1,0,0,0,27.89,18.61,46.19,41.03,0,1,1,0,0,1,2,2,0,468.5,93139.359,-43567.852,92963.586,0,0,0,968.38855 +10601,12937,23076,23077,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.5615525,7.8813429,8,2,-37.773964,0,-9,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6376548,7.777215,52,47,40.77,42.34,3.333333333333333,1,1,0,0,0,10,3,1,133.5,813478.25,481670.53,283875.56,0,0,1790.2639,2818.627 +10601,12937,23077,23076,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,7.3027201,7.3975353,8,-2,-60.900887,0,3,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.294704,40.77,42.34,52,47,6.666666666666667,1,1,0,0,8,10,3,1,133.5,813478.25,481670.53,283875.56,0,0,1790.2639,2818.627 +10602,12938,23078,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.5013008,8.4473667,0,0,0,-1043.3625,0,-9,-9,2021,7,0,50,55,1,0,0,10.963469,10.963469,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.35,59.64,-9,-9,1.666666666666667,1,1,0,0,8,5,5,0,594,859475.63,460932.88,210276.55,0,0,0,1774.1831 +10603,12939,23079,23080,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.327383,8.6551247,0,9,-11,23.200356,0,-9,-9,2021,12,0,46,49,1,0,0,12.08924,12.08924,0,0,0,0,0,0,0,0,1,1,0,0,0,51.84,51.67,49.31,48.84,6.666666666666667,1,1,0,0,14,9,5,1,1825,1889780.8,858799.69,766503.25,76786.516,0,948.77191,5060.1157 +10603,12939,23080,23079,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.9559317,8.1401501,30,11,50.674957,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5133722,8.0601921,49.31,48.84,51.84,51.67,6.666666666666667,1,1,0,0,10,9,5,1,1825,1889780.8,858799.69,766503.25,76786.516,0,948.77191,5060.1157 +10604,12940,23081,23082,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,7.3729196,7.7918825,30,7,-68.756584,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3357577,7.7003822,59.14,52.5,57.16,56.15,10,1,1,0,0,0,12,3,1,511.5,751839.13,270936.41,248719.34,0,0,0,3819.3479 +10604,12940,23082,23081,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.6642108,6.8883862,30,-7,-48.905029,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0208278,7.1242442,57.16,56.15,59.14,52.5,10,1,1,0,0,0,12,3,1,511.5,751839.13,270936.41,248719.34,0,0,0,3819.3479 +10605,12941,23083,23084,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.658164,8.5124321,0,21,2,80.446571,0,3,3,2021,10,0,42,40,1,0,0,12.841705,12.841705,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,42.55,52.01,8.333333333333334,1,1,0,0,14,4,5,1,1163,907269.56,838227.63,113116.29,16598.893,0,5255.4092,3286.1433 +10605,12941,23084,23083,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,7.6348462,7.673039,0,26,-2,-96.798889,0,3,3,2021,12,2,39,39,1,2,0,6.1640415,6.1640415,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.55,52.01,54.96,53.17,5,1,1,0,0,14,4,5,1,1163,907269.56,838227.63,113116.29,16598.893,0,5255.4092,3286.1433 +10605,12941,23085,-9,23084,23083,1,0,16,0,0,0,3,3,-9,0,4,0,0,0,0,0,-730.96112,-9,2,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.95,45.45,-9,-9,10,1,1,0,0,1,4,5,1,1163,907269.56,838227.63,113116.29,16598.893,0,5255.4092,3286.1433 +10606,12942,23086,23087,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,6.9158654,7.3458104,49,0,36.460743,0,1,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4821324,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,0,10,5,1,795.5,3387005.3,2276523,583442.88,86558.172,0,0,5613.0117 +10606,12942,23087,23086,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,8.1516857,9.0469551,8.435751,49,0,21.491722,0,2,2,2021,5,0,7,7,1,0,0,69.439354,69.439354,0,0,0,0,0,0,0,0,1,1,0,0,8.7215424,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,11,10,5,1,795.5,3387005.3,2276523,583442.88,86558.172,0,0,5613.0117 +10607,12943,23088,23090,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,7.9545722,7.6976295,0,5,0,14.627713,0,-9,-9,2021,8,0,30,30,1,0,0,6.6830692,6.6830692,0,0,0,0,0,0,0,0,1,1,0,.58747125,0,58.47,50.22,57.33,53.46,8.333333333333334,1,1,0,0,11,9,3,1,730.66669,-108531.97,0,0,0,0,0,1601.4802 +10607,12943,23089,-9,23090,23088,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.7565,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,9,3,1,730.66669,-108531.97,0,0,0,0,0,1601.4802 +10607,12943,23090,23088,-9,-9,1,0,28,1,1,0,2,2,-9,0,3,6.32301,6.5263953,0,5,0,-77.828903,0,-9,-9,2021,8,0,20,20,1,0,0,2.6627879,2.6627879,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.47,50.22,10,1,1,0,0,11,9,3,1,730.66669,-108531.97,0,0,0,0,0,1601.4802 +10608,12944,23091,23092,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.3412037,9.6032238,0,7,10,82.948669,0,3,3,2021,6,0,45,1,1,0,0,28.323202,28.323202,.05,.05,0,0,0,0,0,0,0,0,0,4.7575769,0,62.39,56.71,57.06,57.76,10,1,1,0,0,9,10,5,1,686,1719973.8,1111800.3,398684.94,0,12221.117,0,12190.232 +10608,12944,23092,23091,-9,-9,1,0,48,0,0,0,1,1,-9,0,5,8.9917889,8.8407326,0,7,-10,81.213982,0,2,2,2021,8,0,55,60,1,0,0,12.401874,12.401874,.05,.05,0,0,0,0,0,0,0,0,0,10.242571,0,57.06,57.76,62.39,56.71,8.333333333333334,1,1,0,0,9,10,5,1,686,1719973.8,1111800.3,398684.94,0,12221.117,0,12190.232 +10609,12945,23093,23094,-9,-9,1,0,60,0,0,0,2,2,-9,1,2,0,0,0,6,-11,0,0,3,3,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.71,26.9,21.78,32.35,3.333333333333333,1,1,0,0,0,12,2,0,894.5,252839.97,0,170504.97,0,0,0,2493.3379 +10609,12945,23094,23093,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,0,0,6,11,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,6.6609669,21.756937,60.705654,0,1,1,0,0,0,21.78,32.35,36.71,26.9,5,1,1,0,0,1,12,2,0,894.5,252839.97,0,170504.97,0,0,0,2493.3379 +10610,12946,23095,23096,-9,-9,1,0,42,1,4,0,2,2,-9,1,2,0,0,0,17,-6,49.811447,0,-9,-9,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.43,40.17,50.91,54.79,6.666666666666667,1,1,0,0,4,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23096,23095,-9,-9,1,1,48,1,4,0,1,1,-9,0,4,7.1850352,7.1002998,0,17,6,43.575165,0,3,3,2021,17,5,36,40,1,5,0,4.3872662,4.3872662,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.91,54.79,37.43,40.17,3.333333333333333,1,1,0,0,6,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23097,-9,23095,23096,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1012.876,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23098,-9,23095,23096,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-938.80377,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23099,-9,23095,23096,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-996.47998,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23100,-9,23095,23096,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-906.58643,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10610,12946,23101,-9,23095,23096,1,1,17,1,4,0,2,2,-9,0,4,0,0,0,0,0,-948.95929,0,2,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,2,0,1782.1428,196584.61,-7367.2324,187728.02,81761.984,6933.5313,0,3005.2886 +10611,12947,23102,23103,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,45,-6,-43.054443,0,3,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.097826,0,53.8,43.99,50.03,31.36,8.333333333333334,1,1,1,0,7,9,3,1,659.5,909286.56,458914.06,419688.69,0,0,0,1751.1855 +10611,12947,23103,23102,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.2786994,7.510385,6.5166068,9,6,-95.130196,-9,-9,-9,2021,10,0,24,0,1,0,0,7.0460458,7.0460458,0,0,0,1,0,0,0,0,1,1,0,6.0035672,6.3329611,50.03,31.36,53.8,43.99,8.333333333333334,1,1,0,0,5,9,3,1,659.5,909286.56,458914.06,419688.69,0,0,0,1751.1855 +10612,12948,23104,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,8.3063612,7.846436,0,0,-1090.6746,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8155899,7.9139934,52.25,45.21,-9,-9,0,1,1,0,0,0,10,4,1,1975,424504.91,156365.67,238280.47,0,0,0,2095.4863 +10613,12949,23105,23109,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,8.7142334,8.7689791,0,8,1,23.218779,-9,-9,-9,2021,10,0,38,0,1,1,0,15.591662,15.591662,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,62.39,56.71,7,1,1,0,0,1,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23106,-9,23109,23105,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.2179,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23107,-9,23109,23105,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1164.993,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23108,-9,23109,23105,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.6127,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10613,12949,23109,23105,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,8.9056196,8.936821,0,8,-1,73.715408,0,2,2,2021,5,0,38,37,1,0,0,23.676903,23.676903,.05,.05,0,0,0,0,0,0,0,0,0,1.3591459,0,62.39,56.71,51,56,0,1,1,0,0,8,11,5,1,1270.6,317376.59,297275.94,205971.44,142004,12461.43,2058.8911,4663.3711 +10614,12950,23110,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.9949241,8.0976095,0,0,-904.67603,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2358918,7.8469753,58.32,52.89,-9,-9,10,1,1,0,0,0,11,4,1,2465,694896.88,146126.02,431203.5,0,0,0,1901.5366 +10615,12951,23111,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6024446,7.813859,0,0,-1010.6255,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.97604406,7.7469845,57.1,30.43,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,597,387012.69,88930.344,206430.44,0,0,0,1755.4752 +10615,12952,23112,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.7816057,7.7979074,0,0,-947.51416,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5927062,7.9432974,45.26,56.13,-9,-9,8.333333333333334,1,1,0,0,1,10,4,1,409,282924.59,169409.81,175414.17,0,0,0,959.08612 +10616,12953,23113,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1010.4444,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,45.16,24.58,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1194,-78461.313,0,129486.31,0,0,0,610.13098 +10617,12954,23114,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1026.5668,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1260278,0,34.3,37.44,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,2082,75639.969,0,0,0,4820.6973,0,1324.9038 +10618,12955,23115,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,7.296936,7.754271,5.355422,0,0,-858.44196,0,2,2,2021,23,10,16,20,1,10,0,9.7649088,9.7649088,.05,.05,0,0,0,0,0,0,1,1,0,5.7033119,0,43.61,56.01,-9,-9,6.666666666666667,1,1,0,0,7,4,2,0,964,-69952.828,0,113302.57,73204.563,0,-292.4371,1588.9498 +10618,12955,23116,-9,23115,-9,1,0,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-942.09644,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,2,0,964,-69952.828,0,113302.57,73204.563,0,-292.4371,1588.9498 +10619,12956,23117,-9,-9,-9,1,1,78,0,0,0,1,1,-9,0,3,0,5.3004422,5.204596,0,0,-941.50079,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.5316396,5.6376557,63.83,43.62,-9,-9,8.333333333333334,1,1,0,0,2,8,2,1,865,545942.13,0,548851.56,0,0,0,791.33545 +10620,12957,23118,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,1,0,5.9886408,6.0721469,0,0,-1005.8242,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9016042,63.42,7.74,-9,-9,10,1,1,0,0,0,5,2,0,151,19281.371,170283.88,0,0,0,0,1924.1364 +10621,12958,23119,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,0,0,-985.34991,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5354438,0,44.12,42.96,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,286,108985.71,0,0,0,0,0,483.01376 +10622,12959,23120,-9,23124,23121,1,0,13,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1006.6988,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23121,23124,-9,-9,1,1,47,0,4,0,1,1,-9,0,3,8.9830856,9.0164585,0,21,5,66.174431,0,2,-9,2021,11,0,39,38,1,0,0,21.755751,21.755751,.05,.05,0,0,0,0,0,0,1,1,0,4.4306417,0,44.41,56.75,45.81,61.51,6.666666666666667,1,1,0,0,9,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23122,-9,23124,23121,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1151.1868,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23123,-9,23124,23121,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1040.0394,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23124,23121,-9,-9,1,0,42,0,4,0,2,2,-9,0,5,6.6896496,6.7613358,0,21,-5,-126.32593,0,3,2,2021,5,0,15,20,1,0,0,5.8013201,5.8013201,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,44.41,56.75,8.333333333333334,1,1,0,0,2,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10622,12959,23125,-9,23124,23121,1,0,13,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1078.738,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,5,4,1,939.33331,164337.92,33014.66,256754.94,95044.156,0,0,3317.5977 +10623,12960,23126,23128,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,8.0811329,7.9403744,0,20,-3,16.158817,0,3,2,2021,9,1,37,37,1,1,0,10.379803,10.379803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.74,22.74,58.14,48.07,5,1,1,0,0,12,13,3,1,962.66669,44086.156,81866.633,0,0,4538.896,556.87756,2064.2549 +10623,12960,23127,-9,23128,23126,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1018.5827,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,962.66669,44086.156,81866.633,0,0,4538.896,556.87756,2064.2549 +10623,12960,23128,23126,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.1984158,7.2940493,0,10,3,8.5130816,0,-9,-9,2021,7,0,15,15,1,0,0,9.0736599,9.0736599,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.14,48.07,58.74,22.74,10,1,1,0,0,12,13,3,1,962.66669,44086.156,81866.633,0,0,4538.896,556.87756,2064.2549 +10624,12961,23129,-9,23130,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1007.3787,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,11,2,0,618,62818.016,0,0,0,0,0,1892.0293 +10624,12961,23130,-9,-9,-9,1,0,49,0,2,0,2,2,-9,1,2,0,4.2658949,4.3371086,0,0,-943.42017,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.0134778,0,48.59,42.76,-9,-9,5,1,1,1,0,4,11,2,0,618,62818.016,0,0,0,0,0,1892.0293 +10624,12961,23131,-9,23130,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-883.91473,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,2,0,618,62818.016,0,0,0,0,0,1892.0293 +10625,12962,23132,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1015.0105,0,3,3,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,2.2909887,0,0,1,1,0,0,0,54.86,32.7,-9,-9,8.333333333333334,1,1,0,1,0,7,1,0,409,35495.418,0,0,0,0,0,-17.747496 +10625,12963,23133,-9,23132,-9,1,0,40,0,0,0,2,2,-9,0,3,7.2604108,6.9683509,0,0,0,-874.48486,0,3,-9,2021,21,8,10,25,1,8,0,15.769119,15.769119,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,61.57,-9,-9,1.666666666666667,1,1,0,1,5,7,3,0,220,34468.84,0,0,0,0,0,-162.10332 +10626,12964,23134,23135,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,6.4276581,6.5043278,0,9,1,-19.743385,-9,-9,-9,2021,13,2,50,0,1,2,0,1.6228951,1.6228951,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,44.66,57.83,8.333333333333334,1,1,0,0,12,8,3,1,877,114769.02,137662,127479.14,89582.594,8722.5439,0,1771.3069 +10626,12964,23135,23134,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,8.2045822,8.126297,0,35,-1,51.471497,0,3,3,2021,18,6,40,40,1,6,0,9.7986898,9.7986898,.05,.05,0,0,0,0,0,14.5,0,0,0,2.4981985,0,44.66,57.83,45.91,59.89,6.666666666666667,1,1,0,0,12,8,3,1,877,114769.02,137662,127479.14,89582.594,8722.5439,0,1771.3069 +10626,12965,23136,-9,23135,23134,1,1,24,0,0,0,2,2,-9,0,3,7.8140111,8.0116873,0,0,0,-1024.5278,0,3,2,2021,20,8,50,50,1,8,1,5.1127563,5.1127563,0,0,0,0,0,0,0,0,0,0,0,0,0,32.93,55.18,-9,-9,6.666666666666667,1,1,0,0,7,8,3,1,452,60028.441,0,0,0,0,0,472.12723 +10627,12966,23137,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,7.935195,7.8382173,0,0,-984.33783,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5727868,8.0306931,57.93,46.29,-9,-9,10,1,1,0,0,0,9,4,1,419,485208.38,124781.91,192455.13,0,0,0,2846.1067 +10628,12967,23138,23139,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.0405645,8.7446804,0,8,1,-29.63908,0,-9,-9,2021,8,0,50,60,1,0,0,20.058727,20.058727,.05,.05,0,0,0,0,0,0,1,1,0,2.1353483,0,51.25,50.81,43.71,56.91,8.333333333333334,1,1,0,0,9,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10628,12967,23139,23138,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.5601463,8.7470427,0,8,-1,1.2231035,0,2,-9,2021,10,0,40,46,1,0,0,13.789433,13.789433,.05,.05,0,0,0,0,0,2,1,1,0,1.7546117,0,43.71,56.91,51.25,50.81,6.666666666666667,4,2,0,0,8,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10628,12967,23140,-9,23139,23138,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9707,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10628,12967,23141,-9,23139,23138,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-839.41876,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,7,5,1,597,1760897.5,891870.19,736675,116878.41,1020.8445,0,5212.5967 +10629,12968,23142,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.6975093,6.8391433,0,0,-1047.3959,0,-9,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6195593,47.37,55.41,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1389,73937.633,193407.78,0,0,0,0,1396.0415 +10630,12969,23143,23144,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.4854383,8.1516485,0,20,4,-25.728178,-9,2,2,2021,9,0,40,0,1,1,0,10.512355,10.512355,0,0,0,0,0,0,0,0,0,0,0,0,0,53,54,51,54,8,1,1,0,0,9,9,4,1,927.5,1270384.5,192513.66,860507,0,0,0,2561.4761 +10630,12969,23144,23143,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.764461,7.7296386,0,22,-4,-34.903,-9,-9,2,2021,10,0,37,0,1,1,0,5.6881323,5.6881323,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,53,54,8,1,1,0,0,2,9,4,1,927.5,1270384.5,192513.66,860507,0,0,0,2561.4761 +10630,12970,23145,-9,23144,23143,1,0,20,0,0,0,2,2,-9,0,4,7.1187458,7.0772576,0,0,0,-1024.0659,0,2,2,2021,12,2,42,34,1,2,1,4.9377508,4.9377508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,6.666666666666667,1,1,0,0,4,9,3,1,1641,171689.95,-44803.695,0,0,0,0,646.23413 +10631,12971,23146,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.8116007,8.6842384,0,0,0,-1015.5867,0,1,1,2021,5,0,43,41,1,0,0,19.277618,19.277618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.13,48.04,-9,-9,3.333333333333333,1,1,0,0,9,9,5,1,1024,184847.19,-79275.68,146836.03,96433.93,7427.9717,0,1667.5381 +10632,12972,23147,23148,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.3879623,7.4537897,51,3,9.2451591,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0897398,7.5170927,64.07000000000001,47.52,60.12,54.8,10,1,1,0,0,5,7,3,1,1595,275565.28,39114.156,681997.25,433559.56,0,0,2428.771 +10632,12972,23148,23147,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,6.0904174,5.9581389,51,-3,-45.316109,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9616971,60.12,54.8,64.07000000000001,47.52,10,1,1,0,0,7,7,3,1,1595,275565.28,39114.156,681997.25,433559.56,0,0,2428.771 +10633,12973,23149,23150,-9,-9,1,1,50,1,0,0,2,2,-9,0,5,8.9971323,9.1620998,0,9,-2,-136.32108,0,2,3,2021,11,0,57,53,1,0,0,17.11891,17.11891,.05,.05,.05,0,0,0,0,0,1,1,0,6.7191806,0,41.6,60.78,57.16,56.15,8.333333333333334,1,1,0,0,12,9,5,1,811,516410.75,450997.03,223655.94,139859,0,0,4998.8643 +10633,12973,23150,23149,-9,-9,1,0,52,1,0,0,2,2,-9,0,4,6.3944664,6.3754153,0,9,2,78.611931,0,2,-9,2021,7,0,45,0,1,0,0,1.2148359,1.2148359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.6,60.78,6.666666666666667,1,1,0,0,10,9,5,1,811,516410.75,450997.03,223655.94,139859,0,0,4998.8643 +10633,12973,23151,-9,23150,23149,1,0,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1135.9843,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,9,5,1,811,516410.75,450997.03,223655.94,139859,0,0,4998.8643 +10634,12974,23152,23153,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,60,-1,19.980457,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,4.1674409,0,0,1,1,0,4.2918601,0,43.85,31.58,56,51,8.333333333333334,1,1,0,0,3,7,2,1,1535.5,1341078.3,0,869916.81,0,2788.0613,0,1243.1705 +10634,12974,23153,23152,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,6.8133817,6.4355402,60,1,-22.620628,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1863718,6.3916783,56,51,43.85,31.58,10,1,1,0,0,0,7,2,1,1535.5,1341078.3,0,869916.81,0,2788.0613,0,1243.1705 +10635,12975,23154,23155,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.1360865,8.2068157,44,5,49.424431,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6651449,8.0953703,59.14,52.5,36.37,40.24,1.666666666666667,1,1,0,0,8,12,3,1,754.5,558782.13,0,453042.22,0,0,0,2936.5105 +10635,12975,23155,23154,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.881278,6.6603804,44,-5,-130.86655,0,2,2,2021,21,10,0,0,4,10,0,0,0,0,0,0,1,0,1.1442226,0,0,1,1,0,0,6.7300272,36.37,40.24,59.14,52.5,3.333333333333333,1,1,0,0,4,12,3,1,754.5,558782.13,0,453042.22,0,0,0,2936.5105 +10636,12976,23156,23157,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.7935853,6.4805579,8,0,-23.476965,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7322702,6.6001182,43.1,23.61,48.28,60.18,5,1,1,0,0,0,12,2,1,301.5,508884.63,249012.53,59593.922,0,0,0,1928.3003 +10636,12976,23157,23156,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.3958421,6.6731234,8,0,-1.4958168,0,3,2,2021,12,0,0,22,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6126056,48.28,60.18,43.1,23.61,8.333333333333334,1,1,0,0,9,12,2,1,301.5,508884.63,249012.53,59593.922,0,0,0,1928.3003 +10637,12977,23158,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,4,0,7.1609879,7.2021952,0,0,-997.04803,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0604854,7.4484653,59.88,45.34,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,701,496605.16,54633.57,174196.56,0,0,3514.709,1582.8704 +10638,12978,23159,-9,23160,23161,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1093.8263,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23160,23161,-9,-9,1,0,29,0,3,0,2,2,-9,0,1,6.894804,6.9363751,0,11,-11,-78.254013,0,2,1,2021,22,9,16,12,1,9,0,10.23333,10.23333,.05,.05,0,0,0,0,.24056239,0,1,1,0,0,0,45.17,12.09,38.57,54.11,5,1,1,0,0,6,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23161,23160,-9,-9,1,1,40,0,3,0,2,2,-9,0,3,8.7267666,8.40693,0,11,11,-15.54575,0,2,3,2021,17,5,38,37,1,5,0,14.271869,14.271869,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.57,54.11,45.17,12.09,1.666666666666667,1,1,0,0,7,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23162,-9,23160,23161,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.64368,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10638,12978,23163,-9,23160,23161,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.71466,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,0,476.79999,512434.13,177961.52,226364.77,72155.586,14111.498,0,2953.2825 +10639,12979,23164,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,4,0,6.8905616,7.1921759,0,0,-943.10504,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0641146,60.42,45.07,-9,-9,10,1,1,0,0,0,13,2,1,1877,150349.95,-18971.412,116426.73,0,0,0,1464.0994 +10640,12980,23165,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.8825569,7.0798073,0,0,-1057.5447,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3410392,7.4052439,60.06,37.11,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,613,220648.7,253380.59,55065.289,0,0,1623.9661,1045.8544 +10641,12981,23166,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.0917807,8.162034,0,0,0,-1006.6592,0,3,2,2021,19,7,45,45,1,7,0,9.700079,9.700079,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.64,62.88,-9,-9,3.333333333333333,1,1,0,0,14,2,4,1,769,78425.711,168339.34,0,0,0,0,1375.0223 +10642,12982,23167,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,3,5.6279116,5.9761515,4.6142621,0,0,-1075.8947,0,3,3,2021,6,0,7,3,1,0,0,4.7500234,4.7500234,0,0,0,1,0,0,0,0,1,1,0,0,4.6475105,60.69,50.51,-9,-9,8.333333333333334,1,1,0,0,3,2,2,1,298,32844.703,0,58312.004,0,2866.8867,0,891.96637 +10642,12983,23168,-9,23167,-9,1,1,37,0,0,0,3,3,-9,0,2,7.9700942,8.2061367,0,0,0,-1069.762,0,3,3,2021,24,9,40,43,1,9,0,7.0301409,7.0301409,0,0,0,0,0,0,0,0,1,1,0,0,0,44.07,33.03,-9,-9,5,1,1,0,0,10,2,4,1,513,275280.72,0,0,0,0,0,1927.54 +10642,12984,23169,-9,23167,-9,1,1,39,0,0,0,2,2,-9,0,5,7.7030835,7.3938589,0,0,0,-979.37537,0,3,-9,2021,6,0,41,41,1,0,0,7.7782288,7.7782288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,10,2,3,1,227,86532.664,104559.66,0,0,0,0,1121.1991 +10643,12985,23170,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,6.7674704,7.0521665,0,0,-1119.7062,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,13.264579,0,119.33356,0,1,1,0,7.0537701,0,36.98,29.84,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,661,366434.22,8431.3594,218003.72,0,0,0,798.94263 +10644,12986,23171,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,8.1806221,8.637044,0,0,-1022.8708,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,4.8930058,0,23.672457,0,1,1,0,2.7617044,8.2726936,56.95,22.67,-9,-9,3.333333333333333,1,1,0,0,0,2,5,1,398,1356291.8,737148.63,201466.92,0,0,0,2954.4746 +10645,12987,23172,23173,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,8.2740993,8.1066637,57,3,64.640671,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.66187,8.0658112,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,565.5,919703.63,414832.56,398842.38,0,0,0,2752.262 +10645,12987,23173,23172,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,-3,84.959641,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3235719,0,57.16,56.15,56.58,49.75,10,1,1,0,0,0,10,3,1,565.5,919703.63,414832.56,398842.38,0,0,0,2752.262 +10646,12988,23174,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,4.8710642,5.3653569,0,0,-980.36047,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0075717,55.81,36.7,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,608,114538.21,0,193068.28,0,0,0,1231.1674 +10647,12989,23175,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.7298412,8.6437464,6.4459295,0,0,-1016.5937,0,3,3,2021,8,0,38,38,1,0,0,19.028473,19.028473,.05,.05,0,0,0,0,0,0,1,1,0,3.4685285,7.1826243,56.35,51.16,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,311,1471614.9,516405.03,652693.31,0,0,0,2146.6897 +10648,12990,23176,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.0197191,8.6756763,0,3,-17,41.129261,0,1,2,2021,9,1,40,35,1,1,0,21.888969,21.888969,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,53,55,8.333333333333334,4,2,0,0,7,8,5,1,259,253176.89,-40501.574,462444.03,297920.28,0,0,3023.0735 +10649,12991,23177,23178,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9006033,8.957243,0,30,2,3.5376575,0,2,2,2021,9,0,42,44,1,1,0,17.170996,17.170996,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54,54,41.17,59.31,8,1,1,0,0,9,1,5,1,711,3197216.3,1908718.4,337854.41,189817.25,7106.8203,0,4704.6265 +10649,12991,23178,23177,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.1128826,8.745573,0,30,-2,-3.5225172,0,2,1,2021,6,0,50,50,1,0,0,18.307974,18.307974,0,0,.05,0,0,0,0,0,0,0,0,0,0,41.17,59.31,54,54,8.333333333333334,1,1,0,0,9,1,5,1,711,3197216.3,1908718.4,337854.41,189817.25,7106.8203,0,4704.6265 +10649,12992,23179,-9,23178,23177,1,1,22,0,0,1,1,0,0,0,5,0,0,0,0,0,-1102.1227,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,5,1,1,1,861,156217.25,0,0,0,0,0,-340.24753 +10649,12993,23180,-9,23178,23177,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-981.47528,-9,2,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.67,60.18,-9,-9,10,1,1,0,0,7,1,1,1,636,-212999.44,0,0,0,0,0,0 +10650,12994,23181,23182,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,8.3500128,8.1270485,0,48,-2,-1.5129189,0,-9,-9,2021,8,0,30,30,1,0,0,16.137789,16.137789,0,0,0,0,0,0,0,0,1,1,0,4.2728844,0,54,52.35,59.3,44.82,10,1,1,0,0,13,7,5,1,893,1782924.9,1294288.1,386906.56,0,0,0,5930.0283 +10650,12994,23182,23181,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.8600712,8.5596924,7.7842731,48,2,-87.493454,0,-9,-9,2021,7,0,35,24,1,0,0,8.0623159,8.0623159,0,0,0,0,0,0,0,0,1,1,0,6.1320066,7.6078815,59.3,44.82,54,52.35,6.666666666666667,1,1,0,0,13,7,5,1,893,1782924.9,1294288.1,386906.56,0,0,0,5930.0283 +10651,12995,23183,23184,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7863894,9.1796198,7.7975202,30,7,14.400201,0,2,2,2021,8,0,35,40,1,0,0,27.43585,27.43585,.05,.05,0,0,0,0,0,0,0,0,0,4.0995932,7.876677,57.9,51.84,60.12,54.8,8.333333333333334,1,1,0,0,8,9,5,1,521,1415332.8,971907.75,507212.13,0,13995.4,0,4945.6113 +10651,12995,23184,23183,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,30,-7,24.728321,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4690199,0,60.12,54.8,57.9,51.84,8.333333333333334,2,3,0,0,0,9,5,1,521,1415332.8,971907.75,507212.13,0,13995.4,0,4945.6113 +10652,12996,23185,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.3296604,7.8087864,7.9572382,0,0,-921.93073,-9,2,3,2021,13,1,8,0,1,1,0,6.2025156,6.2025156,.05,.05,0,0,0,0,0,0,0,0,0,4.6113377,7.528975,36.37,57.89,-9,-9,6.666666666666667,1,1,0,0,9,10,4,0,549,105889.84,185803.16,0,0,0,0,1185.0724 +10653,12997,23186,-9,-9,23187,1,1,36,0,0,0,2,2,-9,0,3,8.173296,8.4421282,0,0,0,-967.67395,0,3,3,2021,13,2,60,40,1,2,1,7.9376564,7.9376564,.05,.05,0,0,0,0,0,0,0,0,0,6.6299253,0,52.49,46.24,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,1319,157416.22,18128.988,0,0,0,0,2442.5317 +10653,12998,23187,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.5416536,8.6276875,0,0,0,-843.2049,0,-9,-9,2021,10,0,60,60,1,1,0,7.1337628,7.1337628,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,48,-9,-9,7,4,6,0,0,1,7,4,1,495,449285.16,412594.19,0,0,0,0,1875.0885 +10654,12999,23188,23189,-9,-9,1,1,29,0,0,0,2,2,-9,0,5,8.1342506,8.3275232,0,4,6,-50.902508,0,-9,-9,2021,11,0,40,0,1,0,0,9.7870092,9.7870092,0,0,0,0,0,0,0,2,0,0,0,0,0,57.06,57.76,44.06,25.93,8.333333333333334,1,1,0,0,6,11,4,1,936,84238.625,0,0,0,0,1238.6842,1267.2527 +10654,12999,23189,23188,-9,-9,1,0,23,0,0,0,2,2,-9,1,2,0,0,0,4,-6,-101.51871,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44.06,25.93,57.06,57.76,8.333333333333334,1,1,0,0,2,11,4,1,936,84238.625,0,0,0,0,1238.6842,1267.2527 +10655,13000,23190,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.6855435,6.6242495,0,0,-1113.5037,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,14.045248,0,131.89032,0,1,1,0,3.1882041,6.3895354,37.39,24.48,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,117,329393.88,-72486.93,108853.46,0,0,0,1833.2411 +10656,13001,23191,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1129.0846,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.09,57.9,-9,-9,10,3,4,0,0,0,8,1,0,609,-161481.44,0,0,0,0,0,1412.9163 +10657,13002,23192,23193,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.190073,8.4610815,0,5,2,-37.643753,-9,-9,-9,2021,12,0,37,0,1,2,0,12.014205,12.014205,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,37.51,46.26,7,1,1,0,0,1,10,5,0,1697.5,-9232.3975,48529.781,0,0,6542.627,0,3658.9824 +10657,13002,23193,23192,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.5336475,8.602088,0,5,-2,-29.130289,0,1,1,2021,11,0,38,40,1,0,0,17.271866,17.271866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.51,46.26,46,58,6.666666666666667,1,1,0,0,10,10,5,0,1697.5,-9232.3975,48529.781,0,0,6542.627,0,3658.9824 +10658,13003,23194,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.070632,5.6963816,0,0,-1034.2352,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5686264,50,47,-9,-9,7,3,4,0,0,0,8,2,1,370,-132155.55,-76502.828,0,0,0,0,1357.7341 +10659,13004,23195,23196,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,51,1,0,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,26.537981,43.373268,278.34479,0,1,1,0,0,0,30.26,18.9,39.51,31.83,10,2,3,0,0,0,6,2,1,611.5,228877.73,68995.625,87804.719,0,0,0,1207.6881 +10659,13004,23196,23195,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,51,-1,0,0,-9,-9,2021,24,8,0,0,4,8,0,0,0,0,0,0,1,0,127.9759,0,0,1,1,0,0,0,39.51,31.83,30.26,18.9,8.333333333333334,2,3,0,0,0,6,2,1,611.5,228877.73,68995.625,87804.719,0,0,0,1207.6881 +10659,13005,23197,23198,23196,23195,1,1,46,0,0,0,1,1,-9,0,5,7.8290734,7.6550994,0,6,8,-12.827242,0,3,3,2021,9,1,30,40,1,1,0,8.4395866,8.4395866,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.36,55.19,31.48,46.69,10,2,3,0,0,15,6,4,1,667.5,968138.63,558008,352112.69,0,6303.4619,0,3496.5562 +10659,13005,23198,23197,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.3673277,8.2988605,0,6,-8,-99.212173,0,-9,-9,2021,11,4,35,0,1,4,0,15.4671,15.4671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.48,46.69,42.36,55.19,10,2,3,0,0,14,6,4,1,667.5,968138.63,558008,352112.69,0,6303.4619,0,3496.5562 +10659,13006,23199,-9,23196,23195,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,0,0,-950.03033,0,3,3,2021,10,0,0,7,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,35.22,57.51,-9,-9,10,2,3,0,0,10,6,2,1,302,72005.188,0,0,0,0,0,-1765.7039 +10659,13007,23200,-9,23196,23195,1,0,37,0,0,0,2,2,-9,0,5,8.331068,8.1270294,0,0,0,-983.25098,0,3,3,2021,8,1,65,35,1,1,0,7.91923,7.91923,.05,.05,0,0,0,0,0,2,1,1,0,1.9795011,0,54.69,57.47,-9,-9,10,2,3,0,0,15,6,5,1,434,308123.19,311897.56,100582.5,21473.031,0,0,1566.2263 +10660,13008,23201,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,1,8.0305862,8.1471472,0,0,0,-1011.3482,0,2,3,2021,26,10,37,37,1,10,0,8.8619871,8.8619871,0,0,0,0,0,0,0,27,1,1,0,4.4031391,0,33.96,47.24,-9,-9,1.666666666666667,1,1,0,0,11,5,4,1,762,350806.44,0,131504.08,74844.031,0,478.63342,1930.2406 +10661,13009,23202,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,0,6.3952804,5.9979391,0,0,-976.45697,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,6.8019419,0,47.15,26.85,-9,-9,5,1,1,1,1,6,9,2,0,2121,-160399.34,147977.19,0,0,0,0,1166.3416 +10662,13010,23203,-9,23204,23205,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1130.5743,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,899.66669,-40154.063,0,0,0,0,0,4156.248 +10662,13010,23204,23205,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.6688414,8.5938902,0,12,3,-126.38805,0,1,2,2021,7,0,50,43,1,0,0,13.036745,13.036745,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53.23,47.51,5,1,1,0,0,13,7,5,1,899.66669,-40154.063,0,0,0,0,0,4156.248 +10662,13010,23205,23204,-9,-9,1,1,41,0,2,0,2,2,-9,0,2,8.6475821,8.6570625,0,12,-3,-77.990562,0,-9,-9,2021,11,0,53,46,1,0,0,9.6051035,9.6051035,0,0,0,0,0,0,0,0,1,1,0,0,0,53.23,47.51,54.2,57.49,8.333333333333334,1,1,0,0,11,7,5,1,899.66669,-40154.063,0,0,0,0,0,4156.248 +10663,13011,23206,-9,23208,23207,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.65588,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10663,13011,23207,23208,-9,-9,1,1,36,0,2,0,1,1,-9,0,3,8.8206072,8.4328566,0,15,-6,-4.4505072,0,2,3,2021,20,8,40,40,1,8,0,18.446459,18.446459,.05,.05,0,0,0,0,0,86,1,1,0,.70389676,0,20.17,66.48999999999999,65.28,24.3,6.666666666666667,1,1,0,0,11,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10663,13011,23208,23207,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,9.1309423,8.855526,0,15,6,6.1263876,0,2,3,2021,12,0,40,40,1,0,0,20.7514,20.7514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,65.28,24.3,20.17,66.48999999999999,8.333333333333334,1,1,0,0,11,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10663,13011,23209,-9,23208,23207,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1095.7048,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,625.75,751120.5,197383.72,835673.13,354080.56,0,0,3802.1223 +10664,13012,23210,23212,-9,-9,1,1,50,0,3,0,1,1,-9,0,3,8.6847363,8.7306366,0,11,16,-36.875687,0,2,2,2021,7,0,36,36,1,0,0,15.855617,15.855617,.05,.05,0,0,0,0,0,0,1,1,0,2.7501805,0,51.61,50.58,40.48,60.05,8.333333333333334,1,1,0,0,13,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23211,-9,23212,23210,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.6036,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23212,23210,-9,-9,1,0,34,0,3,0,2,2,-9,1,4,0,0,0,11,-16,-72.369576,0,2,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,51.61,50.58,8.333333333333334,1,1,0,0,2,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23213,-9,23212,23210,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1120.3241,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10664,13012,23214,-9,23212,23210,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.3934,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1041.6,538103.38,34007.93,563922.25,141110.06,0,652.51642,2520.0662 +10665,13013,23215,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.4908266,6.4396958,0,0,-988.52057,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,8.4859829,0,0,1,1,0,0,6.4100885,64.55,36.47,-9,-9,10,1,1,0,0,0,8,2,0,310,383967.66,39510.105,317693.66,0,0,0,1514.5345 +10666,13014,23216,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.9977207,5.7458072,0,0,-939.13281,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,8.3685617,70.67894,62.299076,0,1,1,0,0,5.5117698,52,45,-9,-9,8,2,3,0,0,0,6,2,1,699,260805.27,-24526.457,68842.156,0,0,0,1328.0811 +10666,13015,23217,-9,23216,-9,1,0,61,0,0,0,1,1,-9,0,2,2.777421,7.9075313,7.9955273,0,0,-1148.1281,0,3,-9,2021,19,7,6,6,1,7,0,.28761995,.28761995,0,0,0,0,0,0,0,74.5,1,1,0,2.4226332,7.5322652,33.31,51.41,-9,-9,3.333333333333333,2,3,0,0,12,6,3,1,433,786841.06,266116.66,226003.94,0,0,0,655.15479 +10667,13016,23218,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,9.3389111,8.7657537,0,1,-3,-269.80426,0,2,1,2021,14,2,47,39,1,2,0,22.886562,22.886562,.05,.05,.05,0,0,0,0,0,0,0,0,2.932339,0,42.95,61.24,49,57,6.666666666666667,1,1,0,0,10,8,5,1,931,285319.41,395665.06,0,0,0,0,3625.0076 +10668,13017,23219,-9,23220,23221,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.3892,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10668,13017,23220,23221,-9,-9,1,0,35,1,2,0,1,1,-9,0,5,8.472003,8.6335087,0,6,-1,6.5342498,0,-9,-9,2021,4,0,46,36,1,0,0,10.613212,10.613212,0,0,0,0,0,0,0,0,1,1,0,0,0,57.63,56.14,57.76,54.51,5,2,3,0,0,6,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10668,13017,23221,23220,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,7.9862919,8.1928244,0,6,1,37.507385,0,2,1,2021,0,0,41,37,1,0,0,10.606777,10.606777,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,57.63,56.14,10,2,3,0,0,7,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10668,13017,23222,-9,23220,23221,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.3213,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,425.5,236482.41,48892.645,216566.44,146183.64,0,0,3182.584 +10669,13018,23223,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,7.2790251,7.6968188,5.6358514,0,0,-1027.0891,0,2,-9,2021,9,1,30,-9,1,1,0,6.5433207,6.5433207,0,0,0,0,0,0,0,0,1,1,0,4.7981567,0,46.01,47.47,-9,-9,3.333333333333333,1,1,0,0,9,11,2,1,2293,-159901.56,0,0,0,0,0,869.05396 +10669,13018,23224,-9,23223,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0134,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,2,1,2293,-159901.56,0,0,0,0,0,869.05396 +10670,13019,23225,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,8.4897928,8.3502989,5.7215085,0,0,-861.67261,0,3,3,2021,6,0,48,50,1,0,0,11.504385,11.504385,.05,.05,0,0,0,0,0,0,1,1,0,5.8776755,6.0627394,60.27,49.27,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,1260,300544.78,133422.2,184150.92,0,0,0,2293.458 +10671,13020,23226,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,1,7.4575162,7.2105498,0,0,0,-1009.2173,0,3,2,2021,31,12,37,30,1,12,0,6.6500587,6.6500587,0,0,0,0,0,0,0,0,0,0,0,0,0,35,27,-9,-9,3.333333333333333,2,3,0,1,10,6,3,1,1389,64022.031,37217.93,0,0,0,0,630.40106 +10671,13021,23227,-9,23226,-9,1,1,24,0,0,0,1,1,-9,0,2,7.7964258,7.9418955,0,0,0,-1071.0023,0,3,-9,2021,8,0,40,0,1,0,1,7.8450341,7.8450341,0,0,0,0,0,0,0,0,0,0,0,0,0,45.34,43.11,-9,-9,5,2,3,0,1,4,6,4,1,388,-68823.93,0,0,0,0,0,703.71838 +10672,13022,23228,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-896.1485,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,25.291853,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,7,1,0,594,-4510.689,0,0,0,0,0,1061.375 +10672,13023,23229,-9,23228,-9,1,1,52,0,0,0,3,3,-9,1,4,0,0,0,0,0,-923.44897,0,3,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.2677708,0,53,55,-9,-9,8,1,1,0,0,0,7,1,0,324,129175.31,0,0,0,0,0,686.03857 +10672,13024,23230,-9,23228,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1038.3286,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.711678,0,50,55,-9,-9,8,1,1,1,0,1,7,1,0,630,10002.943,0,0,0,0,0,808.06354 +10673,13025,23231,-9,23233,23232,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.3858,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23232,23233,-9,-9,1,1,29,1,3,0,2,2,-9,0,4,8.7999296,9.0301361,0,6,-1,33.654942,0,2,1,2021,9,0,49,42,1,0,0,14.620603,14.620603,.05,.05,0,0,0,0,0,0,1,1,0,5.3115067,0,57.16,56.15,54.74,57.22,5,1,1,0,0,8,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23233,23232,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,6.8620672,6.6712098,0,6,1,60.507057,0,2,2,2021,12,0,12,20,1,0,0,8.4398584,8.4398584,0,0,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,57.16,56.15,8.333333333333334,1,1,0,0,7,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23234,-9,23233,23232,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-874.90015,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10673,13025,23235,-9,23233,23232,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.285,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,994,274244.25,57055.625,255144.42,109334.02,0,0,3217.9185 +10674,13026,23236,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.7157726,7.9428868,0,0,0,-1029.1255,0,-9,-9,2021,9,0,37,36,1,0,0,8.1720476,8.1720476,0,0,0,0,0,0,0,0,1,1,0,3.5307767,0,42.75,36.17,-9,-9,5,1,1,0,0,7,7,3,1,394,227193.53,-29729.133,224543.7,51645.957,0,0,1290.8047 +10675,13027,23237,-9,23238,23240,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.97675,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10675,13027,23238,23240,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.7320271,7.5915756,0,11,0,12.360401,0,3,3,2021,10,0,19,19,1,0,0,19.021824,19.021824,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,8,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10675,13027,23239,-9,23238,23240,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-986.96466,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10675,13027,23240,23238,-9,-9,1,1,36,1,2,0,2,2,-9,0,5,8.7356768,8.5906935,0,11,0,106.71928,0,2,2,2021,6,0,56,43,1,0,0,7.7006083,7.7006083,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.2,57.49,10,1,1,0,0,8,12,4,1,1466.25,65416.668,54204.086,153017.16,132486.72,0,0,3227.426 +10676,13028,23241,23242,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.9677029,9.0635118,0,5,4,-21.522322,0,2,2,2021,7,0,38,39,1,0,0,26.952381,26.952381,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,55.76,52.64,8.333333333333334,1,1,0,0,12,9,5,1,261.5,100315.12,6028.9756,259157.5,313781.19,0,0,4789.2988 +10676,13028,23242,23241,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.5330667,8.4293728,0,5,-4,27.638636,0,-9,-9,2021,6,0,35,39,1,0,0,18.46884,18.46884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,58.15,52.91,8.333333333333334,4,2,0,0,5,9,5,1,261.5,100315.12,6028.9756,259157.5,313781.19,0,0,4789.2988 +10677,13029,23243,23244,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,7.8048453,8.0140572,0,2,-1,39.439602,-9,-9,-9,2021,16,4,39,0,1,4,0,9.5455322,9.5455322,0,0,0,0,0,0,0,2,0,0,0,0,0,36.2,64.19,52,54.51,8.333333333333334,1,1,0,0,10,2,4,1,1272.5,266334.41,74439.539,141277.69,-4566.1172,0,-365.09772,2376.5154 +10677,13029,23244,23243,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.7398062,8.0678959,0,2,1,23.398998,0,2,2,2021,12,0,37,37,1,0,0,9.0452347,9.0452347,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52,54.51,36.2,64.19,5,1,1,0,0,8,2,4,1,1272.5,266334.41,74439.539,141277.69,-4566.1172,0,-365.09772,2376.5154 +10678,13030,23245,-9,23246,23247,1,0,16,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1023.4681,-9,3,3,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,0,0,0,11,3,1,167.66667,236093.86,-9891.7354,292125.38,123814.86,17742.416,23.778601,3526.7678 +10678,13030,23246,23247,-9,-9,1,0,42,0,1,0,3,3,-9,1,3,0,0,0,11,-5,-122.01804,0,-9,-9,2021,8,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.23,53.47,54.6,29.12,5,1,1,0,0,0,11,3,1,167.66667,236093.86,-9891.7354,292125.38,123814.86,17742.416,23.778601,3526.7678 +10678,13030,23247,23246,-9,-9,1,1,47,0,1,0,3,3,-9,0,3,7.9993467,8.0380077,0,11,5,28.889978,-9,-9,-9,2021,16,6,40,0,1,6,0,8.8515244,8.8515244,0,0,0,0,0,0,0,0,1,1,0,0,0,54.6,29.12,60.23,53.47,10,1,1,0,0,12,11,3,1,167.66667,236093.86,-9891.7354,292125.38,123814.86,17742.416,23.778601,3526.7678 +10679,13031,23248,23250,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.2267733,8.3759041,0,5,0,-42.95274,0,-9,-9,2021,10,0,40,40,1,1,0,9.8468752,9.8468752,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,45.91,59.89,7,2,3,0,0,1,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10679,13031,23249,-9,23250,23248,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.20789,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10679,13031,23250,23248,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.562098,7.3563757,0,5,0,98.302879,0,-9,-9,2021,14,1,25,25,1,1,0,9.7719965,9.7719965,0,0,0,0,0,0,0,2,1,1,0,0,0,45.91,59.89,51,57,5,2,3,0,0,9,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10679,13031,23251,-9,23250,23248,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.12091,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,3,1,719.25,-8896.1826,-25904.115,0,0,0,0,2339.6091 +10680,13032,23252,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1059.0698,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.5,37.38,-9,-9,10,1,1,0,0,0,9,1,1,186,258178.23,0,182166.75,0,0,0,705.98511 +10681,13033,23253,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,6.6353931,6.3051991,0,0,-969.17767,-9,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5654116,6.1077552,54,46,-9,-9,8,2,3,0,0,0,8,2,0,94,1504005.5,0,838847.81,0,0,0,1650.2698 +10681,13034,23254,23255,-9,23253,1,1,50,0,0,0,2,2,-9,0,4,9.586544,9.3329468,0,23,11,93.744179,-9,1,1,2021,9,0,40,0,1,1,0,39.595253,39.595253,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,40.87,44.58,8,2,3,0,0,1,8,5,0,665.5,827928.5,580704.75,0,0,-1838.4365,0,5650.9868 +10681,13034,23255,23254,-9,-9,1,0,39,0,0,0,3,3,-9,0,3,7.5494146,7.7295747,0,23,-11,9.4770203,0,2,2,2021,9,0,30,30,1,0,0,7.9968247,7.9968247,0,0,0,0,0,0,0,0,1,1,0,3.0136397,0,40.87,44.58,52,55,3.333333333333333,2,3,0,0,11,8,5,0,665.5,827928.5,580704.75,0,0,-1838.4365,0,5650.9868 +10682,13035,23256,23257,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,56,-1,-64.58506,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.746877,0,51,46,44.71,33.6,7,1,1,0,0,0,7,2,1,1003,148063.27,110393.42,0,0,0,0,1706.7915 +10682,13035,23257,23256,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,6.2464151,6.4695649,56,1,49.09639,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.2957034,6.1249166,44.71,33.6,51,46,3.333333333333333,1,1,0,0,0,7,2,1,1003,148063.27,110393.42,0,0,0,0,1706.7915 +10683,13036,23258,23259,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.8693128,7.8056388,0,39,0,50.599514,0,3,3,2021,9,0,20,20,1,0,0,17.863586,17.863586,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,37.76,62.64,10,1,1,0,0,8,7,5,1,1060,1544141.9,543425,699282.38,0,0,0,3477.1489 +10683,13036,23259,23258,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.5491667,8.3104362,5.3973837,39,0,65.036423,0,3,3,2021,14,2,57,50,1,2,0,9.4889984,9.4889984,.05,.05,0,0,0,0,0,0,0,0,0,5.7056522,5.8400927,37.76,62.64,58.32,50.22,5,1,1,0,0,10,7,5,1,1060,1544141.9,543425,699282.38,0,0,0,3477.1489 +10683,13037,23260,-9,23258,23259,1,0,33,0,0,0,2,2,-9,0,2,7.8115411,8.0852909,0,0,0,-1060.7617,0,2,2,2021,11,1,40,45,1,1,1,6.5615864,6.5615864,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.87,57.15,-9,-9,5,1,1,0,0,10,7,3,1,732,-115615.09,45118.352,0,0,0,0,1229.329 +10684,13038,23261,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,8.209651,8.2392302,0,0,0,-911.66559,0,3,3,2021,18,6,40,37,1,6,0,13.075045,13.075045,0,0,0,0,0,0,0,0,1,1,0,0,0,37.01,50.93,-9,-9,3.333333333333333,1,1,0,0,8,4,4,1,1043,614626.69,122674.6,315140.25,0,0,0,1938.1553 +10685,13039,23262,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,8.3948889,8.7523937,6.9596601,0,0,-1026.23,0,2,2,2021,6,0,35,29,1,0,0,14.066548,14.066548,.05,.05,0,0,0,0,0,0,1,1,0,5.7119298,6.31883,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,7,1,5,1,103,-92045.625,39051.727,0,0,0,0,2049.3879 +10686,13040,23263,23264,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.470428,6.3018594,3,-2,-62.75098,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.894115,6.3195543,57.16,56.15,53.96,50.73,8.333333333333334,1,1,0,0,0,7,2,1,3083.5,527294.56,249709.33,278491.19,0,0,0,1612.1747 +10686,13040,23264,23263,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.9120154,6.5350838,3,2,117.84073,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4426651,6.8792634,53.96,50.73,57.16,56.15,8.333333333333334,1,1,0,0,8,7,2,1,3083.5,527294.56,249709.33,278491.19,0,0,0,1612.1747 +10687,13041,23265,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,8.0180826,7.813633,0,0,0,-975.24677,0,2,3,2021,6,0,40,40,1,0,0,8.5433731,8.5433731,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,9,7,4,1,2208,672680.56,579427.13,0,0,0,0,1407.5363 +10688,13042,23266,-9,23267,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.8732,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,618.5,129319.94,-28554.277,0,0,0,0,3760.5474 +10688,13042,23267,-9,-9,-9,1,0,32,0,1,0,1,1,-9,1,5,7.0923543,7.0521178,0,0,0,-1021.5051,0,1,1,2021,5,0,10,25,1,0,0,20.340214,20.340214,.05,.05,0,0,0,0,0,116,1,1,0,8.5138531,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,7,8,2,1,618.5,129319.94,-28554.277,0,0,0,0,3760.5474 +10688,13043,23268,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1008.974,-9,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,3,4,1,0,0,8,1,1,1482,30810.043,0,0,0,0,0,252.88721 +10689,13044,23269,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.7756519,8.4341593,0,0,0,-1080.2806,0,3,-9,2021,6,2,40,44,1,2,1,20.022152,20.022152,0,0,0,0,0,0,0,74.5,1,1,0,0,0,53.61,59.13,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,758,-145337.34,0,0,0,0,0,2562.02 +10690,13045,23270,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.9830375,4.8565388,0,0,-1035.4659,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4623194,4.9422998,53.12,37.6,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,319,142936.78,0,0,0,0,0,1161.1067 +10691,13046,23271,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1150.0933,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.38,24.97,-9,-9,3.333333333333333,1,1,0,0,0,13,2,0,675,0,0,0,0,0,0,1823.1842 +10692,13047,23272,23273,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,6.7521772,6.5868096,0,30,1,27.382774,0,2,2,2021,9,0,8,0,1,0,0,9.1747093,9.1747093,0,0,0,0,0,0,0,2,0,0,0,0,0,44.66,57.83,45.91,59.89,8.333333333333334,4,2,0,0,12,5,5,1,725,601365.13,430488.81,186064.41,1367.8265,0,-133.70224,3192.0791 +10692,13047,23273,23272,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,9.1191912,9.1314821,0,30,-1,-76.361244,0,-9,-9,2021,11,1,42,40,1,1,0,24.699738,24.699738,.05,.05,0,0,0,0,0,7,0,0,0,0,0,45.91,59.89,44.66,57.83,6.666666666666667,1,1,0,0,13,5,5,1,725,601365.13,430488.81,186064.41,1367.8265,0,-133.70224,3192.0791 +10693,13048,23274,-9,23276,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.3232,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,2,0,526,84701.867,0,0,0,0,0,1946.7047 +10693,13048,23275,-9,23276,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.49329,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,2,0,526,84701.867,0,0,0,0,0,1946.7047 +10693,13048,23276,-9,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,0,7.4134507,7.3173609,0,0,-833.34515,1,3,2,2021,8,0,0,23,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1533508,0,58.3,47.38,-9,-9,8.333333333333334,1,1,0,0,6,5,2,0,526,84701.867,0,0,0,0,0,1946.7047 +10694,13049,23277,23279,-9,-9,1,1,45,0,2,0,2,2,-9,0,3,8.2378645,8.170619,0,9,14,-51.709824,0,3,3,2021,12,0,42,42,1,0,0,10.815203,10.815203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,43.2,59.97,6.666666666666667,1,1,0,0,12,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10694,13049,23278,-9,23279,23277,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0552,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10694,13049,23279,23277,-9,-9,1,0,31,0,2,0,1,1,1,0,4,7.2336421,7.5065274,0,9,-14,-9.3435545,-9,3,2,2021,11,0,18,0,1,0,0,12.516071,12.516071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,48.45,57.49,6.666666666666667,1,1,0,0,6,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10694,13049,23280,-9,23279,23277,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.27631,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,862.5,185711.47,103888.45,127529.58,0,0,0,2287.6638 +10695,13050,23281,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,0,0,0,31,1,-7.1268363,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,53.86,52.34,8.333333333333334,1,1,0,0,9,10,2,1,2403,10481.713,0,0,0,0,0,0 +10695,13051,23282,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,0,7.1235037,6.7878919,31,-1,68.725357,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.8267889,0,53.86,52.34,57.33,53.46,8.333333333333334,1,1,0,0,9,10,2,1,1137,614710.69,369116.41,324962.19,0,0,0,3589.8206 +10696,13052,23283,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,5,6.8151894,6.5108547,0,0,0,-1128.173,0,2,2,2021,1,0,6,8,1,0,0,15.980546,15.980546,0,0,0,0,0,0,0,0,1,1,0,7.2097683,0,57.06,57.76,-9,-9,8.333333333333334,4,2,0,0,7,8,2,0,249,78219.164,0,0,0,0,0,2583.8413 +10697,13053,23284,23285,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,6.3764348,5.9130402,47,-2,-46.528305,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1785626,61.23,51.58,49.52,56.95,8.333333333333334,1,1,0,0,5,1,5,1,1487.5,2534772,1650423.3,527402.38,0,391.14377,0,4893.4131 +10697,13053,23285,23284,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.5614958,8.8029661,47,2,-79.325691,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.6695766,49.52,56.95,61.23,51.58,8.333333333333334,1,1,0,0,6,1,5,1,1487.5,2534772,1650423.3,527402.38,0,391.14377,0,4893.4131 +10698,13054,23286,23287,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.7682605,7.6181355,0,4,0,74.404869,0,-9,2,2021,16,4,40,35,1,4,0,6.7802758,6.7802758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.98,63,38.34,62.12,3.333333333333333,1,1,0,0,11,1,4,1,335,-32210.719,81196.242,0,0,0,0,1811.0518 +10698,13054,23287,23286,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.9175501,8.1042233,0,4,0,-55.693031,0,-9,-9,2021,14,3,38,38,1,3,0,8.5763121,8.5763121,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,27.98,63,6.666666666666667,1,1,0,0,6,1,4,1,335,-32210.719,81196.242,0,0,0,0,1811.0518 +10699,13055,23288,23289,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,7.9671874,7.9042425,44,0,-43.454224,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,6.7539115,7.7516727,58.67,44.65,49.27,56.95,8.333333333333334,1,1,0,0,8,2,4,1,3824,1081568.9,769651.5,246684.09,0,0,0,3222.5342 +10699,13055,23289,23288,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,6.4960165,8.2512674,8.0716209,11,0,-.38897926,0,2,2,2021,9,1,20,20,1,1,0,3.7741492,3.7741492,.05,.05,0,0,0,0,0,0,0,0,0,4.4666591,7.9677873,49.27,56.95,58.67,44.65,10,1,1,0,0,13,2,4,1,3824,1081568.9,769651.5,246684.09,0,0,0,3222.5342 +10700,13056,23290,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1128.2377,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48,48,-9,-9,7,1,1,0,0,0,13,1,1,1399,71360.359,0,184322.83,0,0,0,615.61884 +10701,13057,23291,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.7389555,6.7488413,0,0,-1049.0145,0,2,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,8.7058506,0,0,1,1,0,6.884562,6.7148743,38.01,26.26,-9,-9,3.333333333333333,1,1,0,0,10,9,2,1,1613,161081.84,203855.81,0,0,0,0,2204.7361 +10702,13058,23292,-9,-9,-9,1,0,46,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1051.6115,0,-9,2,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,24.86,30.81,-9,-9,1.666666666666667,1,1,0,0,0,1,1,0,340,61946.781,0,0,0,0,0,2104.8052 +10703,13059,23293,23294,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,54,-2,174.19205,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,52.22,53.26,10,1,1,0,0,0,7,3,1,319,399722.91,245158.05,150028.72,0,1768.7729,0,2229.1885 +10703,13059,23294,23293,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8376789,7.5169301,54,2,-50.489037,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.3045478,52.22,53.26,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,319,399722.91,245158.05,150028.72,0,1768.7729,0,2229.1885 +10704,13060,23295,-9,-9,-9,1,1,31,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1085.9331,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.21,53.09,-9,-9,5,1,1,0,1,0,11,1,0,1598,-35015.004,0,0,0,0,0,1094.5411 +10705,13061,23296,23297,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.6262779,8.8970585,7.3984265,18,2,-40.712482,0,3,2,2021,17,5,39,38,1,5,0,20.845026,20.845026,.05,.05,0,0,0,0,0,0,0,0,0,5.6246648,7.6853991,41.11,60.68,48.19,38.83,10,1,1,0,0,13,2,5,1,1173,721356.63,67270.422,813517.25,189864.22,0,0,5363.5938 +10705,13061,23297,23296,-9,-9,1,0,46,0,0,0,2,2,-9,0,2,9.1559095,8.5396118,0,18,-2,-14.578769,0,2,-9,2021,12,0,38,40,1,0,0,18.892874,18.892874,.05,.05,0,0,0,0,0,0,0,0,0,2.3528218,0,48.19,38.83,41.11,60.68,8.333333333333334,1,1,0,0,13,2,5,1,1173,721356.63,67270.422,813517.25,189864.22,0,0,5363.5938 +10706,13062,23298,23299,-9,-9,1,1,64,0,0,0,3,3,-9,1,2,0,0,0,9,7,0,0,-9,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,38.39,40.89,40.56,12.97,3.333333333333333,1,1,0,0,0,12,2,0,460.5,-37257.352,0,0,0,0,0,833.7746 +10706,13062,23299,23298,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,9,-7,0,0,3,3,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,12.97,38.39,40.89,6.666666666666667,1,1,0,1,0,12,2,0,460.5,-37257.352,0,0,0,0,0,833.7746 +10707,13063,23300,-9,23301,23302,1,1,20,0,2,1,2,0,0,0,3,0,0,0,0,0,-1046.9751,-9,2,2,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.07,52.49,-9,-9,5,1,1,0,0,0,5,1,0,236,0,0,0,0,0,0,0 +10707,13064,23301,23302,-9,-9,1,0,34,0,2,0,2,2,-9,1,1,0,0,0,5,-1,0,0,3,-9,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.91,22.06,58.8,23.08,0,1,1,1,0,0,5,1,0,644,70935.336,0,136204.67,0,0,0,2611.4438 +10707,13064,23302,23301,-9,-9,1,1,35,0,2,0,2,2,-9,1,2,0,0,0,5,1,0,0,-9,-9,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,58.8,23.08,28.91,22.06,1.666666666666667,1,1,0,1,0,5,1,0,644,70935.336,0,136204.67,0,0,0,2611.4438 +10707,13064,23303,-9,23301,23302,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.21497,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,644,70935.336,0,136204.67,0,0,0,2611.4438 +10708,13065,23304,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,0,6.1760592,5.962357,0,0,-931.04138,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.0776196,64.07000000000001,47.52,-9,-9,10,1,1,0,0,0,2,2,0,267,316425.13,210632.36,172040.31,0,0,0,1255.0929 +10709,13066,23305,23306,-9,-9,1,1,40,0,1,0,1,1,-9,0,3,8.8939962,8.8428822,0,12,7,63.378796,0,3,2,2021,8,0,50,40,1,0,0,19.426086,19.426086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.87,40.59,62.39,56.71,6.666666666666667,2,3,0,0,13,9,5,0,1482,977741.94,873937.44,357486.66,266052.44,0,6556.6406,4209.3076 +10709,13066,23306,23305,-9,-9,1,0,33,0,1,0,1,1,-9,0,5,7.9596062,7.9671803,0,12,-7,8.6767464,0,1,1,2021,11,0,35,25,1,0,0,7.8289986,7.8289986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,58.87,40.59,8.333333333333334,2,3,0,0,7,9,5,0,1482,977741.94,873937.44,357486.66,266052.44,0,6556.6406,4209.3076 +10709,13066,23307,-9,23306,23305,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-861.06659,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,9,5,0,1482,977741.94,873937.44,357486.66,266052.44,0,6556.6406,4209.3076 +10710,13067,23308,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.789063,7.8817091,5.4104009,0,0,-989.26733,0,3,3,2021,9,0,35,37,1,0,0,7.2837844,7.2837844,.05,.05,0,0,0,0,0,0,0,0,0,0,5.1414943,49.18,41.13,-9,-9,3.333333333333333,1,1,0,0,6,1,3,1,615,1378.7518,50341.914,0,0,0,0,566.45557 +10710,13068,23309,-9,23308,-9,1,0,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-1074.7635,-9,2,3,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,5,1,1,0,0,0,1,1,1,576,0,0,0,0,0,0,2139.5527 +10710,13069,23310,-9,23308,-9,1,1,27,0,0,0,2,2,0,0,2,0,0,0,0,0,-1039.1583,-9,2,3,2021,20,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,25.7,53.54,-9,-9,3.333333333333333,1,1,0,0,1,1,1,1,514,-1721.2729,0,0,0,0,0,0 +10711,13070,23311,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,6.8439345,6.7744598,0,0,-940.5022,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,23.650578,0,0,1,1,0,1.8879591,7.2188172,55.24,23.63,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,554,461247.59,204282.77,-44572.91,0,0,0,2755.4375 +10712,13071,23312,23313,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.9240513,7.8644557,7.1470327,32,5,-14.586149,0,3,3,2021,11,0,10,10,1,0,0,8.9229536,8.9229536,0,0,0,0,0,0,0,0,0,0,0,3.5743785,7.2294827,54.77,55.87,58.72,51.29,8.333333333333334,1,1,0,0,13,9,5,1,688,416978.97,73053.523,388339.44,0,0,437.31744,3599.7563 +10712,13071,23313,23312,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.7637348,8.2484522,10,-5,-35.814224,0,-9,-9,2021,9,0,0,37,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.571207,8.4483356,58.72,51.29,54.77,55.87,8.333333333333334,1,1,0,0,8,9,5,1,688,416978.97,73053.523,388339.44,0,0,437.31744,3599.7563 +10712,13072,23314,-9,23312,23313,1,1,24,0,0,0,2,2,-9,0,4,7.8711295,7.5684791,0,0,0,-976.28271,0,2,1,2021,5,0,42,44,1,0,1,7.4883866,7.4883866,0,0,0,0,0,0,0,0,0,0,0,3.8961985,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,4,1,305,26789.92,36224.75,0,0,0,0,1255.8275 +10713,13073,23315,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,1,0,0,0,0,0,-997.82446,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.5144029,0,0,1,1,0,0,0,37.34,31.85,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,503,139856.05,0,53480.285,0,-3921.7813,0,1345.069 +10713,13074,23316,-9,23315,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1157.4568,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,27.89,47.15,-9,-9,5,1,1,0,0,0,13,1,0,711,-197804.69,0,0,0,0,-287.54068,722.28607 +10714,13075,23317,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1061.3663,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.98,14.09,-9,-9,0,1,1,0,1,4,7,1,0,376,-97986.68,0,0,0,0,0,1784.9395 +10715,13076,23318,23319,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.5502586,7.4913287,6,0,-63.695133,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4366889,57.16,56.15,56.67,42.78,1.666666666666667,1,1,0,0,5,9,3,1,157,1082758.8,692766.31,300808.59,0,0,0,1416.8914 +10715,13076,23319,23318,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,0,6.5619197,6.7402468,6,0,196.55234,0,3,3,2021,9,0,0,21,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4425797,6.2968812,56.67,42.78,57.16,56.15,8.333333333333334,1,1,0,0,6,9,3,1,157,1082758.8,692766.31,300808.59,0,0,0,1416.8914 +10716,13077,23320,23321,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.081337,8.3196068,0,29,7,-48.148731,0,3,2,2021,9,0,37,38,1,1,0,11.506629,11.506629,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,50,54,7,1,1,0,0,8,11,5,1,1467,807267.5,639979.63,416096.75,250814.16,0,0,3913.2317 +10716,13077,23321,23320,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.5163212,8.8687181,0,29,-7,136.15184,0,3,1,2021,10,0,38,38,1,1,0,15.31561,15.31561,0,0,0,0,0,0,0,0,0,0,0,0,0,50,54,53,54,7,1,1,0,0,7,11,5,1,1467,807267.5,639979.63,416096.75,250814.16,0,0,3913.2317 +10716,13078,23322,-9,23321,23320,1,1,21,0,0,0,2,2,-9,0,4,6.9873195,7.3746567,0,0,0,-1021.8697,0,2,2,2021,11,0,30,20,1,2,1,5.29918,5.29918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,58,-9,-9,7,1,1,0,0,3,11,3,1,69,38045.73,18299.758,0,0,0,0,-348.17963 +10717,13079,23323,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.8428078,8.7330122,0,0,0,-804.36053,0,2,1,2021,9,0,40,40,1,0,0,17.60837,17.60837,.05,.05,0,0,0,0,0,0,0,0,0,2.7831016,0,42.27,57.55,-9,-9,8.333333333333334,1,1,0,0,3,7,5,0,936,9392.2324,42116.375,0,0,1957.6058,0,2728.7546 +10718,13080,23324,23325,-9,-9,1,1,59,0,1,0,1,1,-9,0,5,9.7898636,9.5296497,0,3,13,-24.169559,0,2,3,2021,7,1,80,65,1,1,0,20.642723,20.642723,.05,.05,.05,0,0,0,0,0,1,1,0,8.8940716,0,43.57,62.68,57.16,56.15,8.333333333333334,1,1,0,0,13,2,5,1,1138.5,451233.41,111952.25,406983.56,106650.78,12719.729,1482.7656,11585.768 +10718,13080,23325,23324,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.1569548,8.4010458,0,3,-13,123.49377,0,-9,-9,2021,7,1,44,42,1,1,0,9.6110954,9.6110954,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.57,62.68,10,1,1,0,0,5,2,5,1,1138.5,451233.41,111952.25,406983.56,106650.78,12719.729,1482.7656,11585.768 +10718,13081,23326,-9,23325,23324,1,1,18,0,1,0,2,2,-9,0,3,7.2292633,7.0430002,0,0,0,-1186.2274,0,1,1,2021,10,1,42,0,1,1,1,3.4953086,3.4953086,0,0,0,0,0,0,0,0,1,1,0,.76944196,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,213,-7497.9048,0,0,0,0,0,752.11566 +10719,13082,23327,23328,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,9.4415607,9.593482,8.3240538,8,1,-50.049435,0,-9,-9,2021,21,7,50,55,1,7,0,26.220861,26.220861,.05,.05,0,0,0,0,0,0,0,0,0,7.9597468,8.1025848,46.62,50.93,54.37,54.8,8.333333333333334,1,1,0,0,9,10,5,1,1529,1345162.5,664214.63,239925.84,0,0,0,8284.666 +10719,13082,23328,23327,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.249835,7.2115922,0,8,-1,-100.19997,0,2,3,2021,11,1,24,25,1,1,0,7.639636,7.639636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,46.62,50.93,6.666666666666667,1,1,0,0,9,10,5,1,1529,1345162.5,664214.63,239925.84,0,0,0,8284.666 +10719,13083,23329,-9,23328,23327,1,1,27,0,0,0,3,3,-9,0,3,7.294672,6.9198256,0,0,0,-950.71265,0,2,2,2021,19,7,30,25,1,7,1,4.7641664,4.7641664,0,0,0,0,0,0,0,0,0,0,0,0,0,45.73,57.57,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,860,-93714.711,0,0,0,0,0,548.34033 +10720,13084,23330,23331,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3272934,6.9448938,0,29,-5,35.227581,0,2,3,2021,13,1,25,25,1,1,0,5.950933,5.950933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.6,51.61,52.24,48.84,8.333333333333334,1,1,0,0,11,13,4,1,337.5,292827,122889.27,0,0,7429.9951,869.30194,2916.7456 +10720,13084,23331,23330,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5470352,8.4829044,0,9,5,39.548717,-9,-9,-9,2021,11,0,86,0,1,0,0,5.7572212,5.7572212,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.24,48.84,43.6,51.61,8.333333333333334,1,1,0,0,11,13,4,1,337.5,292827,122889.27,0,0,7429.9951,869.30194,2916.7456 +10720,13085,23332,-9,23330,23331,1,1,25,0,0,0,2,2,-9,0,4,7.5907593,7.7075601,0,0,0,-1109.1763,-9,2,2,2021,12,0,45,0,1,0,1,6.1635594,6.1635594,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,1,13,3,1,594,-75885.328,-38935.004,0,0,0,0,787.54114 +10720,13086,23333,-9,23330,23331,1,0,20,0,0,0,2,2,-9,0,4,7.0529904,6.819221,0,0,0,-1032.4152,-9,2,2,2021,12,0,16,0,1,0,1,8.7294245,8.7294245,0,0,0,0,0,0,0,0,0,0,0,0,0,47.38,47.02,-9,-9,8.333333333333334,1,1,0,1,2,13,2,1,307,-23166.934,0,0,0,0,0,936.5274 +10721,13087,23334,23337,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.8534174,8.5816231,0,21,-1,65.393036,0,2,3,2021,7,0,38,26,1,0,0,20.668488,20.668488,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.72,55.58,47.1,59.71,8.333333333333334,1,1,0,0,13,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10721,13087,23335,-9,23334,23337,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1148.1962,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10721,13087,23336,-9,23334,23337,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.9447,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10721,13087,23337,23334,-9,-9,1,1,45,0,2,0,1,1,-9,0,5,8.5552416,8.5757799,0,11,1,-41.965195,0,2,2,2021,6,0,52,62,1,0,0,13.871222,13.871222,.05,.05,0,0,0,0,0,0,0,0,0,5.1179819,0,47.1,59.71,52.72,55.58,8.333333333333334,1,1,0,0,13,2,5,1,974,1586613.9,1312058.8,347097,109796.48,0,0,5121.1157 +10722,13088,23338,23339,23343,23342,1,1,54,0,0,0,1,1,-9,0,4,8.3170319,8.3976374,0,35,6,219.01009,0,3,2,2021,6,0,35,33,1,0,0,18.303877,18.303877,.05,.05,0,0,0,0,0,0,1,1,0,6.3565869,0,63.09,45.22,47,50,10,2,3,0,0,9,2,4,1,488,437273.75,284977.78,161575.28,65269.102,8838.5488,0,2589.875 +10722,13088,23339,23338,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.1790557,6.9572878,0,35,-6,-132.11031,0,3,2,2021,23,11,19,19,1,11,0,8.6988087,8.6988087,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47,50,63.09,45.22,8.333333333333334,2,3,0,0,9,2,4,1,488,437273.75,284977.78,161575.28,65269.102,8838.5488,0,2589.875 +10722,13089,23340,-9,23339,23338,1,1,28,0,0,0,2,2,-9,0,3,7.6248813,7.5857401,0,0,0,-1063.3661,-9,2,2,2021,12,0,37,0,1,0,1,6.5507865,6.5507865,0,0,0,0,0,0,0,0,1,1,0,0,0,37.17,47.9,-9,-9,5,2,3,0,0,5,2,3,1,2045,-179749.78,0,0,0,0,0,709.61896 +10722,13090,23341,-9,23339,23338,1,1,18,0,0,0,2,2,1,0,3,7.6222277,7.9889255,0,0,0,-1085.6313,-9,2,1,2021,13,3,35,0,1,3,1,10.141144,10.141144,0,0,0,0,0,0,0,2,1,1,0,0,0,49.04,55.86,-9,-9,5,2,3,0,0,0,2,3,1,601,156694.31,0,0,0,0,0,1631.2786 +10722,13091,23342,23343,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,4,0,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,75.548958,0,0,1,1,0,2.286665,0,52,54.51,46.41,39.74,6.666666666666667,2,3,0,0,0,2,1,1,2934.5,126686.41,0,122433.42,-4105.4941,0,0,1399.7493 +10722,13091,23343,23342,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,4,0,0,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.41,39.74,52,54.51,8.333333333333334,2,3,0,0,0,2,1,1,2934.5,126686.41,0,122433.42,-4105.4941,0,0,1399.7493 +10723,13092,23344,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.2259269,6.0978866,0,0,0,-915.02997,0,3,3,2021,6,0,15,0,1,0,0,3.1399698,3.1399698,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,2631,248307.11,164519.16,252766.41,0,0,0,426.02908 +10724,13093,23345,23346,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,7.3785868,6.9196892,27,3,137.77127,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.38850576,7.1008816,49.52,35.69,37.76,35.4,5,1,1,0,0,11,12,2,1,1302,818295.5,547039.75,188601.3,0,0,0,848.22717 +10724,13093,23346,23345,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,27,-3,-40.481709,0,1,1,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8811169,0,37.76,35.4,49.52,35.69,6.666666666666667,1,1,1,0,11,12,2,1,1302,818295.5,547039.75,188601.3,0,0,0,848.22717 +10724,13094,23347,-9,23346,23345,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-938.69757,-9,1,1,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8940146,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,642,23310.123,0,0,0,0,0,487.7428 +10724,13095,23348,-9,23346,23345,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1051.4423,-9,1,1,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1296606,0,39,57.79,-9,-9,6.666666666666667,1,1,1,0,0,12,1,1,2620,0,0,0,0,0,0,-429.80048 +10725,13096,23349,-9,-9,-9,1,1,91,0,0,0,3,3,-9,0,2,0,5.7393942,5.4433088,0,0,-1077.1222,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.500658,63.35,20.8,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,465,342020.19,100355.6,126969.38,0,0,0,2017.0776 +10726,13097,23350,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.0101852,6.275589,0,0,-960.90875,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.4682584,5.2160101,41.132332,0,1,1,0,1.5582209,6.0272856,50.66,26.92,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1079,540752.94,0,245938.75,0,0,0,1596.675 +10727,13098,23351,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.6099801,7.4366317,0,0,0,-1076.9856,0,-9,2,2021,23,7,30,30,1,7,0,4.8106823,4.8106823,0,0,0,0,0,0,0,0,1,1,0,0,0,25.31,36.18,-9,-9,1.666666666666667,1,1,0,1,6,4,3,0,756,-59341.98,0,0,0,-289.73633,0,851.04559 +10727,13099,23352,-9,-9,23351,1,1,22,0,0,0,2,2,-9,0,4,4.3676434,4.5349684,0,0,0,-1080.4827,0,2,3,2021,11,0,35,30,1,2,1,.30564409,.30564409,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,2,0,455,-75959.906,0,0,0,0,0,-304.60815 +10728,13100,23353,-9,23354,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.55573,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,1,0,1259,-31157.486,0,0,0,6758.6885,0,1042.8645 +10728,13100,23354,-9,-9,-9,1,0,37,1,3,0,2,2,-9,0,3,0,0,0,0,0,-1087.2202,-9,2,1,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.43,59.21,-9,-9,5,1,1,1,0,0,12,1,0,1259,-31157.486,0,0,0,6758.6885,0,1042.8645 +10729,13101,23355,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1040.2135,-9,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,26.97,-9,-9,5,1,1,0,0,6,8,1,0,289,198276.88,0,0,0,0,0,1085.7371 +10729,13102,23356,-9,23355,-9,1,0,31,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1074.7015,-9,3,-9,2021,26,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.23,59.41,-9,-9,0,4,2,1,1,0,8,1,0,1238,0,0,0,0,0,0,468.75049 +10730,13103,23357,23359,-9,-9,1,1,55,0,0,0,2,2,-9,0,5,8.3995495,8.1433315,0,2,2,-123.54609,-9,2,1,2021,8,0,39,0,1,0,0,13.633821,13.633821,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,51.14,60.45,47.77,30.96,8.333333333333334,1,1,0,0,13,11,5,1,424.66666,593982.13,44540.469,337951.94,0,115.38905,0,3692.3999 +10730,13103,23358,-9,23359,23357,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-988.09119,-9,1,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.76,56.64,-9,-9,6.666666666666667,1,1,0,0,0,11,5,1,424.66666,593982.13,44540.469,337951.94,0,115.38905,0,3692.3999 +10730,13103,23359,23357,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,8.0564947,8.3470173,0,2,-2,.98011196,0,2,2,2021,12,2,44,44,1,2,0,9.5984621,9.5984621,0,0,0,0,0,0,0,0,0,0,0,4.2752476,0,47.77,30.96,51.14,60.45,8.333333333333334,1,1,0,0,13,11,5,1,424.66666,593982.13,44540.469,337951.94,0,115.38905,0,3692.3999 +10731,13104,23360,23361,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.373312,8.3841105,0,10,3,29.044367,0,3,2,2021,12,0,58,48,1,0,0,8.6718988,8.6718988,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.35,51.16,57.33,53.46,5,1,1,0,0,13,6,5,1,1113,362977.16,106410.05,144878.88,25249.34,0,0,2808.4675 +10731,13104,23361,23360,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.7502222,7.7725477,0,10,-3,76.352211,0,2,2,2021,6,0,25,30,1,0,0,12.792525,12.792525,.05,.05,0,0,0,0,0,0,0,0,0,3.1214359,0,57.33,53.46,56.35,51.16,8.333333333333334,1,1,0,0,12,6,5,1,1113,362977.16,106410.05,144878.88,25249.34,0,0,2808.4675 +10731,13105,23362,-9,23361,23360,1,0,23,0,0,0,2,2,-9,0,4,7.843821,7.8740325,0,0,0,-1027.1453,0,2,2,2021,15,3,35,26,1,3,1,7.7937589,7.7937589,0,0,0,0,0,0,0,0,0,0,0,1.5698056,0,52.89,45.61,-9,-9,10,1,1,0,0,7,6,3,1,152,61196.563,0,0,0,0,0,1481.3209 +10732,13106,23363,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,7.3510628,7.5507941,0,0,0,-1008.6574,0,2,2,2021,20,8,40,36,1,8,0,5.0374355,5.0374355,0,0,0,0,0,0,0,0,1,1,0,0,0,27.98,63,-9,-9,3.333333333333333,1,1,0,0,3,12,3,0,468,-184998.39,-32644.32,0,0,0,0,457.75668 +10733,13107,23364,23365,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.5399208,8.4914865,0,6,-4,-15.196555,0,2,-9,2021,22,8,77,77,1,8,0,6.9051304,6.9051304,0,0,0,0,0,0,0,0,0,0,0,.62880707,0,27.46,58.85,39.67,38.65,6.666666666666667,1,1,0,0,12,9,5,1,567.5,-9955.668,54086.281,195231.34,182555.48,13025.466,6470.79,2749.9868 +10733,13107,23365,23364,-9,-9,1,1,38,0,0,0,2,2,-9,0,2,7.7797222,7.6809382,0,6,4,7.7824202,0,-9,-9,2021,25,9,40,40,1,9,0,6.6409001,6.6409001,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.67,38.65,27.46,58.85,6.666666666666667,1,1,0,0,4,9,5,1,567.5,-9955.668,54086.281,195231.34,182555.48,13025.466,6470.79,2749.9868 +10734,13108,23366,-9,23368,-9,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1107.1156,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10734,13108,23367,-9,23368,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.1393,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10734,13108,23368,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,3,0,7.7077637,7.2487936,0,0,-853.57587,-9,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9874635,0,39.05,59.16,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10734,13108,23369,-9,23368,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-950.27863,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,513,-319.39722,-59692.453,0,0,0,10192.09,2410.8813 +10735,13109,23370,-9,-9,23371,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-974.2923,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,2.4632998,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,8,5,1,765.5,510424.13,-71432.945,399597.16,104825.33,0,0,3950.2461 +10735,13109,23371,-9,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,8.9583511,9.4809513,0,10,-3,22.265333,0,3,3,2021,10,0,38,38,1,0,0,27.511381,27.511381,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,55.19,54.26,8.333333333333334,1,1,0,0,10,8,5,1,765.5,510424.13,-71432.945,399597.16,104825.33,0,0,3950.2461 +10735,13110,23372,-9,-9,-9,1,1,49,1,1,0,1,1,-9,0,4,8.4287825,8.5089264,0,10,3,87.755081,0,2,2,2021,8,0,30,40,1,0,0,22.371746,22.371746,0,0,.05,0,0,0,0,0,1,1,0,1.7465105,0,55.19,54.26,46.44,59.62,8.333333333333334,1,1,0,0,12,8,5,1,479,121762.68,-52382.727,0,0,0,0,2688.5039 +10736,13111,23373,-9,-9,23374,1,0,55,0,0,0,2,2,-9,0,3,7.8569551,7.7683535,0,0,0,-1020.6729,0,2,2,2021,13,1,30,30,1,1,0,13.875055,13.875055,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,10,4,1,1979,47161.605,-32017.748,0,0,0,4465.2095,1144.0212 +10736,13112,23374,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-915.07037,0,-9,-9,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.5,51.63,-9,-9,6.666666666666667,1,1,1,0,0,10,1,1,422,-144112.89,0,0,0,0,0,255.15216 +10737,13113,23375,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.1466179,6.6651597,0,0,-1029.9594,0,-9,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9182591,6.6481595,33.67,28.36,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,923,528349.13,144416.55,143277.83,0,0,0,4267.0503 +10738,13114,23376,23377,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,6,6,-94.757805,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,76.680435,0,0,1,1,0,.60199767,0,55.11,47.63,55.2,9.220000000000001,10,1,1,0,0,0,10,2,1,1471.5,488178.75,271469.25,217892.16,0,0,0,1223.4908 +10738,13114,23377,23376,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,7.1052332,7.5284224,15,-6,143.08144,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8726947,7.3189545,55.2,9.220000000000001,55.11,47.63,6.666666666666667,1,1,0,0,0,10,2,1,1471.5,488178.75,271469.25,217892.16,0,0,0,1223.4908 +10739,13115,23378,23379,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,7.5698214,7.4825292,0,31,-2,94.932747,0,2,2,2021,11,0,40,45,1,0,0,4.9157271,4.9157271,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.17,58.56,48.77,60.16,8.333333333333334,1,1,0,0,12,12,5,1,782,542020.5,506368.03,142117.91,58317.832,4560.564,16264.352,3118.7214 +10739,13115,23379,23378,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,8.5005693,8.7753477,0,31,2,-70.311813,0,2,2,2021,9,1,43,40,1,1,0,15.517144,15.517144,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,49.17,58.56,8.333333333333334,1,1,0,0,9,12,5,1,782,542020.5,506368.03,142117.91,58317.832,4560.564,16264.352,3118.7214 +10740,13116,23380,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.0526114,8.062252,0,0,0,-1024.1027,0,2,2,2021,8,0,39,39,1,0,0,9.1271229,9.1271229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,158,408865.84,512437.69,0,0,2030.4034,0,1417.0302 +10741,13117,23381,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2796421,8.5550699,0,0,0,-959.81738,0,-9,2,2021,11,0,40,45,1,0,0,12.292283,12.292283,0,0,0,0,0,0,0,2,0,0,0,0,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,8,2,4,1,169,286906.78,121833.03,-17673.639,19017.979,0,0,1328.9358 +10742,13118,23382,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.4836416,7.7698007,0,0,-1173.8275,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7926545,7.776247,57.16,56.15,-9,-9,10,1,1,0,0,5,9,3,1,541,266064.34,61222.152,217097.63,0,0,0,1797.0714 +10743,13119,23383,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,5.1961193,5.6316915,4.1374569,0,0,-944.35516,0,2,2,2021,12,1,40,38,1,1,0,.58553153,.58553153,0,0,0,0,0,0,0,0,0,0,0,4.1324439,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,5,2,1,1006,-51522.605,-9562.4141,82853.266,25271.547,0,6554.8696,50.729298 +10744,13120,23384,23385,-9,-9,1,1,37,0,1,0,3,3,-9,0,4,8.091094,8.1874304,0,10,4,-52.322258,0,2,3,2021,7,0,39,37,1,0,0,11.820364,11.820364,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,649.33331,154348.25,-12363.248,102820.92,80081.273,8089.5796,8073.3677,2749.2488 +10744,13120,23385,23384,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.7464194,7.5823784,0,10,-4,78.238922,0,2,2,2021,9,0,23,23,1,0,0,13.256021,13.256021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,12,9,4,1,649.33331,154348.25,-12363.248,102820.92,80081.273,8089.5796,8073.3677,2749.2488 +10744,13120,23386,-9,23385,23384,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.65656,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,649.33331,154348.25,-12363.248,102820.92,80081.273,8089.5796,8073.3677,2749.2488 +10745,13121,23387,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.8554111,7.7186608,0,0,0,-962.29626,0,3,3,2021,13,2,44,35,1,2,0,7.8174996,7.8174996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,12,9,4,0,340,406384.63,-51289.574,283498.41,0,0,0,1708.9297 +10746,13122,23388,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,1,8.0237589,8.2483778,0,0,0,-1031.9471,-9,3,3,2021,20,8,30,0,1,8,0,11.395045,11.395045,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.32,28.21,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,869,7412.2383,21350.041,147195.3,76844.156,1412.1431,0,1389.8794 +10747,13123,23389,-9,23390,23391,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-855.15674,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,0,277,-56235.992,74587.492,0,0,8729.2188,7581.7925,3302.3704 +10747,13123,23390,23391,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.3637047,8.540267,1.2177802,8,0,99.756317,0,-9,-9,2021,10,1,43,40,1,1,0,14.56726,14.56726,.05,.05,0,0,0,0,0,0,1,1,0,.85659742,0,52.84,45.88,55.79,52.62,8.333333333333334,1,1,0,0,9,7,5,0,277,-56235.992,74587.492,0,0,8729.2188,7581.7925,3302.3704 +10747,13123,23391,23390,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.5578547,8.3043585,0,8,0,-39.906776,0,-9,-9,2021,8,0,37,40,1,0,0,12.392288,12.392288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,52.84,45.88,8.333333333333334,1,1,0,0,12,7,5,0,277,-56235.992,74587.492,0,0,8729.2188,7581.7925,3302.3704 +10748,13124,23392,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,8.3239117,8.3618345,0,1,-4,-39.5425,0,2,-9,2021,33,11,43,42,1,11,0,8.2581892,8.2581892,.05,.05,0,0,0,0,0,0,0,0,0,0,0,17.55,67.47,50,57,0,1,1,0,1,10,13,3,0,920,215901.25,121496.11,0,0,0,0,2232.686 +10749,13125,23393,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.5797338,8.9142942,7.2448673,0,0,-1095.415,0,-9,-9,2021,29,11,40,40,1,11,0,22.253933,22.253933,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.567513,27.94,60.73,-9,-9,1.666666666666667,1,1,0,1,10,12,5,1,130,184399.88,396616.91,80462.195,0,0,0,2990.7842 +10750,13126,23394,23395,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,8.0189209,7.3163085,0,43,-1,-77.153732,0,-9,-9,2021,6,0,40,40,1,0,0,8.1920366,8.1920366,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,60.12,54.8,10,1,1,0,0,11,2,4,1,1309.5,309226.28,198537.97,164062.92,74689.961,0,9592.6797,2854.0488 +10750,13126,23395,23394,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.0473318,8.0864229,0,42,1,26.417065,0,-9,-9,2021,6,0,18,18,1,0,0,22.773085,22.773085,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.66,52.4,10,1,1,0,0,12,2,4,1,1309.5,309226.28,198537.97,164062.92,74689.961,0,9592.6797,2854.0488 +10751,13127,23396,-9,-9,-9,1,0,56,0,1,0,2,2,-9,1,1,7.0204158,7.3420701,0,0,0,-1069.842,0,3,3,2021,18,6,20,20,1,6,0,5.61764,5.61764,.05,.05,0,0,0,0,0,106,1,1,0,0,0,36.61,21.16,-9,-9,1.666666666666667,1,1,0,1,11,11,2,1,822,-30984.264,-38820.816,73656.914,0,0,1774.001,2039.2742 +10751,13128,23397,-9,23399,23398,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.2658,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,1,1,1779.3334,2090.7839,-50111.613,0,0,0,0,1214.3092 +10751,13128,23398,23399,23396,-9,1,1,31,0,1,0,2,2,-9,1,2,0,0,0,7,6,0,0,2,2,2021,29,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,11.17,43.96,14.55,66.55,3.333333333333333,1,1,1,0,6,11,1,1,1779.3334,2090.7839,-50111.613,0,0,0,0,1214.3092 +10751,13128,23399,23398,-9,-9,1,0,25,0,1,0,2,2,-9,1,3,0,0,0,7,-6,0,0,-9,-9,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.55,66.55,11.17,43.96,6.666666666666667,1,1,0,0,0,11,1,1,1779.3334,2090.7839,-50111.613,0,0,0,0,1214.3092 +10751,13129,23400,-9,23396,-9,1,0,28,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1059.6213,0,2,-9,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,34.61,20.62,-9,-9,5,1,1,0,0,1,11,1,1,1781,22470.227,0,0,0,771.02325,0,971.74762 +10752,13130,23401,23402,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.6137652,7.5160313,0,2,3,53.546898,0,-9,-9,2021,18,5,23,-9,1,5,0,13.624642,13.624642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.07,59.68,49.04,55.86,5,1,1,0,0,13,4,4,0,1823,144574.56,20808.318,44530.148,64394.547,0,0,3063.3113 +10752,13130,23402,23401,-9,-9,1,1,37,0,1,0,2,2,-9,0,3,8.4223518,8.4619293,0,2,-3,131.03777,0,-9,-9,2021,11,0,54,19,1,0,0,10.417537,10.417537,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.04,55.86,35.07,59.68,8.333333333333334,1,1,0,0,10,4,4,0,1823,144574.56,20808.318,44530.148,64394.547,0,0,3063.3113 +10753,13131,23403,23405,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.9426765,7.9170947,0,6,-1,85.038918,0,2,2,2021,6,0,30,30,1,0,0,9.8743954,9.8743954,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,42.61,49.31,6.666666666666667,1,1,0,0,4,12,4,1,929.66669,-27032.443,-22333.656,0,0,4631.1807,2729.8423,2683.05 +10753,13131,23404,-9,23403,23405,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-874.19385,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,4,1,929.66669,-27032.443,-22333.656,0,0,4631.1807,2729.8423,2683.05 +10753,13131,23405,23403,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.2160091,8.5801935,0,6,1,40.458763,-9,2,-9,2021,18,6,38,0,1,6,0,13.4129,13.4129,.05,.05,0,0,0,0,0,42,0,0,0,0,0,42.61,49.31,49.04,55.86,6.666666666666667,1,1,0,0,10,12,4,1,929.66669,-27032.443,-22333.656,0,0,4631.1807,2729.8423,2683.05 +10754,13132,23406,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,5,0,0,0,0,0,-891.92053,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,-9,-9,10,1,1,1,0,1,2,1,0,328,41343.613,0,0,0,0,0,287.99466 +10755,13133,23407,23408,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.0850239,8.1992598,0,8,5,-38.198959,0,2,3,2021,6,0,49,29,1,0,0,9.7693548,9.7693548,0,0,.05,0,0,0,0,0,1,1,0,2.1946387,0,58.15,52.91,58.15,52.91,10,1,1,0,0,9,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10755,13133,23408,23407,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.8462687,9.0874071,0,8,-5,77.704506,0,2,2,2021,9,0,39,41,1,0,0,18.049816,18.049816,0,0,0,0,0,0,0,0,1,1,0,3.3655124,0,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,9,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10755,13133,23409,-9,23408,23407,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1192.0316,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10755,13133,23410,-9,23408,23407,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1055.7463,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,1,826,545810.56,280621.38,353383.56,177775.14,0,832.62018,4169.855 +10756,13134,23411,23412,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,8.0125904,7.8493619,11,3,-7.9521952,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.146174,7.5541039,52.54,42.38,36.91,59.95,8.333333333333334,1,1,0,0,9,10,4,1,453.5,1737766.3,1070516,318750.09,0,0,0,3026.6604 +10756,13134,23412,23411,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,7.9141235,7.8373985,5.9859343,11,-3,-7.2921276,0,-9,-9,2021,15,3,30,30,1,3,0,8.9880075,8.9880075,.05,.05,.05,0,0,0,0,0,0,0,0,5.8335834,5.8767276,36.91,59.95,52.54,42.38,6.666666666666667,1,1,0,0,12,10,4,1,453.5,1737766.3,1070516,318750.09,0,0,0,3026.6604 +10757,13135,23413,23415,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,0,0,0,5,-6,-85.206177,0,2,1,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.17,47.9,39.12,54.85,5,2,3,1,0,8,9,4,1,1104.3334,498739.41,57766.102,134209.48,77331.133,516.51776,0,2177.4119 +10757,13135,23414,-9,23413,23415,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.2654,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,4,1,1104.3334,498739.41,57766.102,134209.48,77331.133,516.51776,0,2177.4119 +10757,13135,23415,23413,-9,-9,1,1,40,0,1,0,1,1,-9,0,4,8.8329887,8.6200495,0,5,6,68.270241,0,3,2,2021,12,0,50,40,1,0,0,13.276869,13.276869,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.12,54.85,37.17,47.9,8.333333333333334,2,3,0,0,13,9,4,1,1104.3334,498739.41,57766.102,134209.48,77331.133,516.51776,0,2177.4119 +10758,13136,23416,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.9178333,8.2368441,0,0,0,-913.72498,0,-9,-9,2021,6,1,40,80,1,1,0,10.313168,10.313168,.05,.05,0,0,0,0,0,0,0,0,0,4.2239842,0,46.28,62.6,-9,-9,10,1,1,0,0,7,9,4,0,2075,-34501.996,-74766.383,0,0,0,0,1495.9651 +10759,13137,23417,23420,-9,-9,1,1,37,1,4,0,2,2,-9,0,3,8.3710537,8.6949825,0,9,3,4.3093038,0,2,3,2021,11,0,40,40,1,0,0,9.723999,9.723999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,54.59,56.57,10,1,1,0,0,9,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23418,-9,23420,23417,1,1,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1114.3091,-9,3,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23419,-9,23420,23417,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1015.7076,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23420,23417,-9,-9,1,0,34,1,4,0,3,3,-9,0,5,0,0,0,9,-3,15.782954,0,-9,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.59,56.57,41.64,54.12,10,1,1,0,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23421,-9,23420,23417,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-968.25122,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10759,13137,23422,-9,23420,23417,1,1,15,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.3583,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,810,25770.418,14625.716,0,0,0,0,3084.3474 +10760,13138,23423,23425,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.7051601,8.86833,7.9412937,7,0,13.388924,0,-9,-9,2021,10,1,46,46,1,1,0,11.331741,11.331741,.05,.05,.05,0,0,0,0,0,1,1,0,7.6990271,0,50.4,55.04,40.47,55.65,6.666666666666667,1,1,0,1,7,6,4,1,817,72567.375,152427.75,142169.66,127353.34,3353.1973,0,3101.2407 +10760,13138,23424,-9,23425,23423,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1191.754,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,817,72567.375,152427.75,142169.66,127353.34,3353.1973,0,3101.2407 +10760,13138,23425,23423,-9,-9,1,0,28,1,1,0,1,1,-9,0,4,0,0,0,7,0,-144.65759,0,2,1,2021,14,2,0,10,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.47,55.65,50.4,55.04,8.333333333333334,1,1,0,1,12,6,4,1,817,72567.375,152427.75,142169.66,127353.34,3353.1973,0,3101.2407 +10761,13139,23426,23427,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,8.1323519,8.077795,42,6,59.858047,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0365007,7.862186,58.08,30.23,51.24,58.84,5,1,1,0,0,5,2,3,1,361.5,743617.81,537868.75,238176.06,0,2466.3521,0,2220.3975 +10761,13139,23427,23426,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,6.2573709,6.5411143,43,-6,53.851311,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4016809,51.24,58.84,58.08,30.23,8.333333333333334,1,1,0,0,8,2,3,1,361.5,743617.81,537868.75,238176.06,0,2466.3521,0,2220.3975 +10762,13140,23428,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.2466002,8.8134756,0,0,0,-1142.1666,0,2,2,2021,14,2,36,36,1,2,0,15.255893,15.255893,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.61,56.64,-9,-9,3.333333333333333,1,1,0,0,12,8,5,0,413,-11986.334,94768.164,0,0,2384.3757,0,1240.2555 +10763,13141,23429,23430,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.5674734,7.1879196,12,7,-60.543884,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7776923,7.1832438,58.32,50.22,58.56,41.85,8.333333333333334,1,1,0,0,7,12,2,1,1058,588184.06,452601.16,244421.88,0,0,0,2241.1641 +10763,13141,23430,23429,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,12,-7,-42.772984,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.56,41.85,58.32,50.22,8.333333333333334,1,1,0,0,8,12,2,1,1058,588184.06,452601.16,244421.88,0,0,0,2241.1641 +10764,13142,23431,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,6.0982499,6.2478743,0,0,-1022.528,0,3,3,2021,16,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9699697,40.11,18.27,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,609,152558.53,83466.055,209233.53,0,0,0,621.77832 +10765,13143,23432,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,7.5050974,7.7113371,0,0,-1048.0521,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7263417,52.5,46.12,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,315,567259.56,172062.22,199797.88,0,0,0,1628.9548 +10766,13144,23433,23434,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.0247412,8.959569,0,7,-2,66.418282,0,2,-9,2021,5,0,50,57,1,0,0,19.507187,19.507187,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.64,53.15,6.666666666666667,1,1,0,0,9,10,5,1,545.5,759421.75,610461.81,238241.44,142537.56,0,0,4512.0186 +10766,13144,23434,23433,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.6687765,8.692955,0,7,2,-166.36613,0,-9,-9,2021,8,0,43,47,1,0,0,15.208575,15.208575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.64,53.15,62.39,56.71,6.666666666666667,1,1,0,0,9,10,5,1,545.5,759421.75,610461.81,238241.44,142537.56,0,0,4512.0186 +10767,13145,23435,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,6.648922,6.7649179,0,0,0,-1043.3915,0,3,3,2021,19,7,16,16,1,7,0,5.3845882,5.3845882,0,0,0,0,0,0,0,2,1,1,0,0,0,42.12,39.15,-9,-9,6.666666666666667,1,1,0,1,12,7,2,1,290,642340.81,0,458600.5,0,0,0,1849.9274 +10767,13146,23436,-9,-9,-9,1,0,33,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1072.5408,0,3,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.77,31.37,-9,-9,3.333333333333333,4,2,0,1,0,7,1,1,224,-64654.297,53912.762,0,0,0,-243.57118,809.7915 +10767,13147,23437,-9,23435,-9,1,1,24,0,0,0,2,2,-9,0,3,7.4886804,7.3932338,0,0,0,-825.87982,0,3,-9,2021,13,2,54,54,1,2,1,4.5386548,4.5386548,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.73,36.01,-9,-9,5,4,2,0,1,13,7,3,1,774,124707.67,41763.234,0,0,0,0,74.739571 +10768,13148,23438,-9,23439,23441,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1062.8506,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,4,5,-9,0,0,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23439,23441,-9,-9,1,0,39,0,3,0,2,2,-9,0,5,6.9836297,7.0292735,0,20,-6,-58.849834,0,2,2,2021,11,1,20,20,1,1,0,7.9185295,7.9185295,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28,55.88,28.7,44.99,8.333333333333334,2,3,0,1,12,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23440,-9,23439,23441,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-919.65436,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,2.3940547,0,1,1,0,0,0,40,55,-9,-9,6,2,3,-9,0,0,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23441,23439,-9,-9,1,1,45,0,3,0,1,1,-9,0,2,7.9544425,7.5542088,0,10,6,-19.482744,0,2,1,2021,28,9,38,40,1,9,0,7.662261,7.662261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.7,44.99,34.28,55.88,0,2,3,0,1,11,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10768,13148,23442,-9,23439,23441,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1173.7867,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,1409.4,580284.88,28688.297,555942.5,160106.14,0,0,2354.3003 +10769,13149,23443,-9,23445,-9,1,0,17,0,4,1,2,0,0,0,3,0,0,0,0,0,-1141.5569,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,5,2,3,0,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23444,-9,23445,-9,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-1055.3232,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,2,3,-9,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23445,-9,-9,-9,1,0,35,0,4,0,2,2,-9,0,2,8.0477276,8.0915337,0,0,0,-1022.842,0,3,3,2021,11,0,42,32,1,0,0,9.3701162,9.3701162,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.8,46.5,-9,-9,5,2,3,0,0,4,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23446,-9,23445,-9,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-982.69434,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23447,-9,23445,-9,1,0,16,0,4,1,2,0,-9,0,3,0,0,0,0,0,-1141.7274,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,53.79,-9,-9,10,2,3,0,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10769,13149,23448,-9,23445,-9,1,1,14,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1005.3414,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,6,2,1,795.5,165184.69,101901.5,153725.66,86367.367,7904.9463,0,2749.6941 +10770,13150,23449,23450,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.8629694,8.9590521,0,23,-4,-21.188608,0,2,1,2021,7,0,37,37,1,0,0,20.398676,20.398676,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.57,57.72,54.79,55.86,6.666666666666667,1,1,0,0,14,13,4,1,302.5,453197.63,263364.72,72081.578,0,0,-107.12491,3710.2905 +10770,13150,23450,23449,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.9775357,8.166193,0,22,4,27.871641,0,1,2,2021,8,1,24,24,1,1,0,12.089329,12.089329,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,47.57,57.72,8.333333333333334,1,1,0,0,14,13,4,1,302.5,453197.63,263364.72,72081.578,0,0,-107.12491,3710.2905 +10771,13151,23451,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.5751114,6.7085857,0,0,-1018.3223,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4320538,6.3423181,55.49,20.59,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,498,108641.49,71192.438,179541.75,0,0,0,1106.0828 +10772,13152,23452,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,6.7263432,6.4826584,0,0,-998.30609,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,5.079618,0,0,1,1,0,2.6290994,6.6698294,50.06,28.67,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,1555,214245.47,-20863.219,81314.578,0,0,0,883.8053 +10773,13153,23453,23454,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.9371948,7.6160922,6.5918665,39,0,-113.83523,0,3,3,2021,11,0,15,18,1,0,0,7.1554518,7.1554518,.05,.05,0,0,0,0,0,0,0,0,0,8.4450321,6.8518496,48.93,50.55,53.78,48.41,1.666666666666667,2,3,0,0,15,8,5,1,686,1720478.8,1180900.8,301196.34,0,0,0,5237.459 +10773,13153,23454,23453,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4010439,8.4675312,6.9732003,39,0,-128.68942,0,2,3,2021,10,0,38,37,1,0,0,16.601473,16.601473,.05,.05,0,0,0,0,0,0,0,0,0,3.4082639,7.2579703,53.78,48.41,48.93,50.55,1.666666666666667,2,3,0,0,15,8,5,1,686,1720478.8,1180900.8,301196.34,0,0,0,5237.459 +10774,13154,23455,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.3548489,8.6281252,0,0,0,-942.56274,0,1,1,2021,11,0,35,35,1,0,0,15.280999,15.280999,.05,.05,0,0,0,0,.14903682,0,1,1,0,5.8391171,0,48.53,58.91,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,1108,44621.32,54382.727,165589.31,32621.395,0,0,2077.7112 +10775,13155,23456,-9,23458,23457,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-854.30457,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,5,1,659.33331,16113.683,-74265.398,154619.47,138402.19,19967.078,12180.925,2658.5056 +10775,13155,23457,23458,-9,-9,1,1,29,1,1,0,1,1,-9,0,1,8.7679682,8.6171083,0,4,-1,-31.317102,0,-9,-9,2021,26,10,38,38,1,10,0,12.606094,12.606094,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.21,37.4,47.1,56.62,3.333333333333333,1,1,0,0,5,4,5,1,659.33331,16113.683,-74265.398,154619.47,138402.19,19967.078,12180.925,2658.5056 +10775,13155,23458,23457,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.9911876,8.1838493,0,4,1,58.584648,0,2,2,2021,9,1,28,50,1,1,0,15.49487,15.49487,.05,.05,0,0,0,0,0,0,1,1,0,.11162011,0,47.1,56.62,37.21,37.4,8.333333333333334,1,1,0,0,13,4,5,1,659.33331,16113.683,-74265.398,154619.47,138402.19,19967.078,12180.925,2658.5056 +10776,13156,23459,23460,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.5696125,7.5821552,0,7,4,-91.250046,0,-9,-9,2021,11,2,30,30,1,2,0,8.2089701,8.2089701,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,20.92,54.37,38.74,8.333333333333334,1,1,0,0,8,4,4,1,1779.5,570632.94,318132.88,221174.91,0,0,0,2315.2012 +10776,13156,23460,23459,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.7712364,7.9655399,0,7,-4,-.5345239,0,3,3,2021,11,0,47,46,1,0,0,4.9213018,4.9213018,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,54.37,38.74,49.02,20.92,5,1,1,0,0,9,4,4,1,1779.5,570632.94,318132.88,221174.91,0,0,0,2315.2012 +10776,13157,23461,-9,23459,23460,1,1,19,0,0,0,2,2,-9,0,4,6.999897,6.9505343,0,0,0,-1021.515,-9,2,2,2021,6,0,39,0,1,0,1,3.2490225,3.2490225,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,3,4,2,1,821,109242.02,0,0,0,0,0,869.17249 +10777,13158,23462,23463,-9,-9,1,0,52,0,1,0,3,3,-9,0,3,0,0,0,37,-7,-86.515114,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,61.92,38.31,7,2,3,0,0,0,8,2,1,316.5,171686.41,0,0,0,0,0,1424.739 +10777,13158,23463,23462,-9,-9,1,1,59,0,1,0,3,3,-9,0,2,7.478848,7.102788,0,37,7,28.047108,0,3,3,2021,10,2,24,24,1,2,0,7.5387039,7.5387039,0,0,0,0,0,0,0,0,1,1,0,0,0,61.92,38.31,48,49,8.333333333333334,2,3,0,0,11,8,2,1,316.5,171686.41,0,0,0,0,0,1424.739 +10777,13159,23464,-9,23462,23463,1,0,26,0,1,0,2,2,-9,0,3,7.9670372,7.7757654,0,0,0,-1141.5403,0,3,3,2021,15,4,37,36,1,4,1,8.0899935,8.0899935,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.01,58.96,-9,-9,6.666666666666667,2,3,0,1,8,8,4,1,1053,-60590.711,104084.85,0,0,5474.3384,0,1418.5089 +10778,13160,23465,23467,-9,-9,1,0,29,1,1,0,1,1,-9,0,4,7.5537949,7.6302772,0,3,-1,-20.528103,0,-9,-9,2021,11,0,25,0,1,2,0,8.7349682,8.7349682,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,57,47.32,52.7,7,2,3,0,0,1,8,4,0,717.33331,256698.77,119491.25,240791.64,72188.055,0,8096.6787,3465.929 +10778,13160,23466,-9,23465,23467,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-865.56744,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,4,0,717.33331,256698.77,119491.25,240791.64,72188.055,0,8096.6787,3465.929 +10778,13160,23467,23465,-9,-9,1,1,30,1,1,0,1,1,-9,0,3,8.6405897,8.744132,0,3,1,-105.88031,0,-9,-9,2021,7,0,48,50,1,0,0,12.010113,12.010113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.32,52.7,47,57,8.333333333333334,2,3,0,0,8,8,4,0,717.33331,256698.77,119491.25,240791.64,72188.055,0,8096.6787,3465.929 +10779,13161,23468,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,5,0,7.3050747,7.4714937,0,0,-881.71637,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7116852,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,454,206343.98,160467.67,100514.59,0,0,0,1177.536 +10780,13162,23469,23470,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1829004,8.0713015,0,22,2,-220.67844,0,3,3,2021,9,0,46,44,1,0,0,6.998467,6.998467,0,0,0,0,0,0,0,0,0,0,0,5.5273676,0,49.05,50.32,57.06,57.76,6.666666666666667,1,1,0,0,9,5,5,1,227,-31298.137,78809.852,0,0,0,10191.056,4877.9365 +10780,13162,23470,23469,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,9.1030846,9.5365362,0,22,-2,47.956757,0,2,2,2021,8,0,39,40,1,0,0,22.642307,22.642307,0,0,0,0,0,0,.093001299,0,0,0,0,4.362699,0,57.06,57.76,49.05,50.32,8.333333333333334,1,1,0,0,11,5,5,1,227,-31298.137,78809.852,0,0,0,10191.056,4877.9365 +10781,13163,23471,23472,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.4184012,5.5883803,8,4,-81.351044,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.674273,5.5725198,57.32,29.38,50,47,10,1,1,0,0,7,2,2,1,257,317988.47,40032.176,135406.38,0,0,0,659.00195 +10781,13163,23472,23471,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,8,-4,-42.413315,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,57.32,29.38,7,4,1,0,0,0,2,2,1,257,317988.47,40032.176,135406.38,0,0,0,659.00195 +10782,13164,23473,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,7.706809,7.4072294,0,0,0,-997.40332,0,2,1,2021,6,0,42,45,1,0,0,7.9829607,7.9829607,0,0,0,0,0,0,0,0,0,0,0,2.1600876,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,1353,-98197.961,0,0,0,0,0,647.52814 +10783,13165,23474,23475,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.3939004,6.3695059,19,-2,100.95064,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.5375366,6.2074347,54.2,57.49,49.32,22.65,8.333333333333334,1,1,0,0,13,1,3,1,1137.5,1115733.8,329650.81,256556.59,0,0,0,2910.7695 +10783,13165,23475,23474,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.8316283,7.7305641,19,2,119.58219,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,1.0906452,0,0,1,1,0,1.5725507,7.9626451,49.32,22.65,54.2,57.49,3.333333333333333,1,1,0,0,0,1,3,1,1137.5,1115733.8,329650.81,256556.59,0,0,0,2910.7695 +10784,13166,23476,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.384016,8.232132,0,0,0,-987.61987,0,-9,-9,2021,17,5,38,38,1,5,0,10.685408,10.685408,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,1109,66012.383,0,0,0,0,0,1663.4896 +10785,13167,23477,23478,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.4536352,7.8046999,24,-3,-33.190273,0,3,3,2021,7,1,0,45,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.1921873,7.7595491,59.33,51.29,51.24,58.84,8.333333333333334,1,1,0,0,12,10,5,1,681.5,1541429.5,1086962.8,356519.13,49879.133,7415.9121,0,3711.2651 +10785,13167,23478,23477,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.0853148,8.999465,0,9,3,-41.848141,0,-9,-9,2021,10,0,45,46,1,0,0,19.392067,19.392067,.05,.05,0,0,0,0,0,0,0,0,0,4.4458842,0,51.24,58.84,59.33,51.29,8.333333333333334,1,1,0,0,13,10,5,1,681.5,1541429.5,1086962.8,356519.13,49879.133,7415.9121,0,3711.2651 +10786,13168,23479,-9,23483,23481,1,0,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1006.598,-9,3,1,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,-9,-9,5,1,1,0,0,0,11,1,1,551,112146.45,0,0,0,0,0,0 +10786,13169,23480,-9,23483,23481,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.85059,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10786,13169,23481,23483,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.6502695,8.7597609,7.0203576,6,11,-220.2865,-9,-9,-9,2021,8,0,65,0,1,0,0,9.394187,9.394187,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1192307,51.24,58.84,54.1,59.11,8.333333333333334,1,1,0,0,7,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10786,13169,23482,-9,23483,23481,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-862.7229,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10786,13169,23483,23481,-9,-9,1,0,37,0,2,0,3,3,-9,0,5,8.0989733,8.2630358,0,6,-11,47.747639,-9,2,2,2021,10,0,40,0,1,0,0,9.8168106,9.8168106,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.24,58.84,8.333333333333334,1,1,0,0,7,11,4,1,1629.25,357806.38,69161.922,262140.14,49629.727,0,0,4229.4683 +10787,13170,23484,23485,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,7.1491423,7.0956311,7,2,-61.956367,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6801333,7.0349679,53.67,51.01,48.97,42.09,8.333333333333334,1,1,0,0,6,12,3,1,589,834090.69,449930.06,211090.19,0,0,0,2753.2827 +10787,13170,23485,23484,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.2471218,7.7593007,7,-2,-44.924606,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,3.1845667,0,0,1,1,0,5.088304,7.308569,48.97,42.09,53.67,51.01,5,1,1,0,0,0,12,3,1,589,834090.69,449930.06,211090.19,0,0,0,2753.2827 +10788,13171,23486,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,5.5038152,5.2206531,0,0,-1174.6608,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0189328,59.07,43.05,-9,-9,10,1,1,0,0,0,4,2,1,129,-114173.05,0,144618.28,0,0,0,242.5067 +10789,13172,23487,-9,-9,-9,1,0,86,0,2,0,3,3,-9,0,1,0,5.409142,5.2223897,0,0,-962.17261,0,2,3,2021,12,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5068274,44.65,16.42,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,396,136420.52,0,0,0,0,0,-877.3244 +10790,13173,23488,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,8.2835598,8.4255056,0,0,0,-1010.8166,0,-9,-9,2021,15,5,45,50,1,5,0,11.493016,11.493016,0,0,0,0,0,0,0,0,0,0,0,0,0,42.86,55.92,-9,-9,6.666666666666667,1,1,0,0,10,11,5,1,707,79358.758,0,0,0,0,0,1029.6608 +10791,13174,23489,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,5.31569,5.4085503,0,0,-958.55768,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,7.4829712,6.9281168,59.956234,0,1,1,0,4.4776759,5.1099758,54,44,-9,-9,8,1,1,0,0,0,5,2,1,370,38225.797,0,0,0,0,0,774.42834 +10792,13175,23490,23491,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,6,0,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.64,48.69,54,46,8.333333333333334,1,1,0,0,0,7,1,1,877.5,70370.867,0,0,0,0,0,914.09186 +10792,13175,23491,23490,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,0,0,6,0,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.446938,0,54,46,49.64,48.69,8,1,1,0,0,0,7,1,1,877.5,70370.867,0,0,0,0,0,914.09186 +10792,13176,23492,-9,23490,23491,1,1,49,0,0,0,2,2,-9,0,4,8.567008,8.3757954,0,0,0,-1064.9985,0,2,2,2021,9,2,60,57,1,2,0,7.8460836,7.8460836,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,10,1,1,0,0,6,7,5,1,674,1276610.1,517586.09,466926.81,0,0,0,1207.7987 +10793,13177,23493,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,6.7640328,6.5843363,0,0,-999.49628,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6336484,6.2194514,65.54000000000001,33.23,-9,-9,5,1,1,0,0,10,7,2,1,361,120739.61,158339.86,0,0,0,0,-20.234547 +10794,13178,23494,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.4194355,7.3013611,0,0,-1036.2067,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8654828,7.4017606,53.64,48.38,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,285,533740.19,104882.18,125494.52,0,0,0,2216.3657 +10795,13179,23495,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.669734,8.4635611,0,0,0,-1071.353,0,-9,-9,2021,14,2,35,42,1,2,0,19.119225,19.119225,.05,.05,0,0,0,0,0,0,1,1,0,2.3567574,0,38.89,53.76,-9,-9,6.666666666666667,1,1,0,0,10,7,5,1,4977,182728.44,89799.664,0,0,3066.3259,0,2234.5771 +10796,13180,23496,23497,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,6.051096,6.2046318,11,-2,-5.8145981,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0778751,54.37,54.8,58.87,45.76,3.333333333333333,1,1,0,0,12,12,3,1,683.5,445324,365953.41,154614.31,0,1643.0927,0,205.06348 +10796,13180,23497,23496,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.3175678,7.8775663,0,11,2,60.326321,0,-9,-9,2021,11,0,95,62,1,0,0,2.1623344,2.1623344,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.87,45.76,54.37,54.8,8.333333333333334,1,1,0,0,13,12,3,1,683.5,445324,365953.41,154614.31,0,1643.0927,0,205.06348 +10797,13181,23498,23499,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,0,0,47,-1,0,0,3,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.98,34.87,45.43,25.25,3.333333333333333,1,1,0,0,3,4,1,0,1261.5,135758.73,0,38023.844,0,0,0,3554.7261 +10797,13181,23499,23498,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,12,1,0,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.43,25.25,30.98,34.87,6.666666666666667,1,1,0,0,8,4,1,0,1261.5,135758.73,0,38023.844,0,0,0,3554.7261 +10798,13182,23500,-9,23501,23502,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.6593,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10798,13182,23501,23502,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,0,0,0,9,0,-12.292053,0,2,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,62.49,55.09,57.16,56.15,1.666666666666667,1,1,0,0,3,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10798,13182,23502,23501,-9,-9,1,1,58,0,2,0,1,1,-9,0,4,8.7992439,8.6563015,0,9,9,105.20711,0,3,3,2021,10,0,41,45,1,0,0,18.135334,18.135334,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,62.49,55.09,8.333333333333334,1,1,0,0,10,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10798,13182,23503,-9,23501,23502,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-977.1676,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,4,4,1,584.25,583020.56,317361.91,308592.75,10630.033,0,0,2240.4968 +10799,13183,23504,23505,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,5.7620287,5.6164565,8,0,-50.798717,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.843462,5.3746605,46.35,43.93,44.08,33.94,10,1,1,0,0,0,4,2,1,506.5,566871.69,386013.25,170426.42,0,0,0,2036.464 +10799,13183,23505,23504,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,7.2724123,7.2199736,42,0,-73.321449,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1671448,6.7273016,44.08,33.94,46.35,43.93,5,1,1,0,0,6,4,2,1,506.5,566871.69,386013.25,170426.42,0,0,0,2036.464 +10800,13184,23506,-9,-9,-9,1,1,94,0,0,0,2,2,-9,0,1,0,4.7754216,5.3166246,0,0,-1043.5066,0,-9,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,21.043612,0,0,1,1,0,0,5.2786112,51.43,17.06,-9,-9,6.666666666666667,1,1,0,1,0,11,2,1,563,142687.78,-19231.861,77097.75,33210.445,0,0,1288.1545 +10801,13185,23507,23508,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.6853695,8.9716082,0,6,3,17.322853,0,2,2,2021,6,0,58,58,1,0,0,8.9065857,8.9065857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,31.46,57.32,6.666666666666667,1,1,0,0,8,7,5,0,1453,590467.13,0,536481.88,0,0,0,4312.3037 +10801,13185,23508,23507,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.0238514,7.8237224,0,6,-3,97.007271,0,-9,-9,2021,13,4,40,40,1,4,0,9.568553,9.568553,0,0,0,0,0,0,0,0,0,0,0,0,0,31.46,57.32,57.16,56.15,3.333333333333333,1,1,0,0,5,7,5,0,1453,590467.13,0,536481.88,0,0,0,4312.3037 +10802,13186,23509,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.7384663,6.7525663,0,0,-1085.0612,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.8017688,50.4,45.58,-9,-9,10,1,1,0,0,0,11,2,1,445,323835.44,33622.305,69044.859,0,0,0,646.44818 +10803,13187,23510,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,6.9478693,6.9538503,0,0,-929.46497,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,7.3378129,33.88,26.99,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,405,62954.535,2833.1899,242654.13,0,0,0,3547.7463 +10804,13188,23511,23512,-9,-9,1,0,39,0,1,0,1,1,-9,0,1,7.9348407,7.8521509,0,13,-2,35.654461,0,2,2,2021,8,0,40,40,1,0,0,10.418235,10.418235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.93,22.07,51,56,6.666666666666667,2,3,0,0,10,8,4,0,657.33331,-22935.291,18498.908,137308.03,84688.227,0,3849.1965,2686.9182 +10804,13188,23512,23511,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.3609953,8.0244398,0,13,2,-86.585556,0,-9,-9,2021,9,0,38,40,1,1,0,9.4308939,9.4308939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,61.93,22.07,8,2,3,0,0,1,8,4,0,657.33331,-22935.291,18498.908,137308.03,84688.227,0,3849.1965,2686.9182 +10804,13188,23513,-9,23511,23512,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-837.58081,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,657.33331,-22935.291,18498.908,137308.03,84688.227,0,3849.1965,2686.9182 +10805,13189,23514,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1050.5753,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2025592,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,144,510389.94,119562.11,353910.22,0,4982.4702,0,380.50281 +10806,13190,23515,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,2,0,0,0,0,0,-944.63843,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,8.5545979,0,0,1,0,1,0,0,53.18,38.14,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,724,-46136.773,0,0,0,0,0,1657.068 +10807,13191,23516,23517,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,3.4456577,3.7001245,37,6,56.625084,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,3.2777145,0,7,1,1,0,2.9960527,3.4160464,69.48999999999999,15.42,57.93,46.29,6.666666666666667,1,1,0,0,0,8,3,0,873.5,880043.94,554654.5,379771.63,0,0,0,1145.1641 +10807,13191,23517,23516,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,7.7541642,7.7124848,37,-6,59.155155,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7410488,8.074007,57.93,46.29,69.48999999999999,15.42,8.333333333333334,1,1,0,0,5,8,3,0,873.5,880043.94,554654.5,379771.63,0,0,0,1145.1641 +10808,13192,23518,23519,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.4442482,8.260602,0,10,3,119.78902,0,3,3,2021,13,1,53,13,1,1,0,14.194137,14.194137,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,26.53,43.58,41.3,5,1,1,0,0,10,13,4,0,501,434127.94,157286.03,188632.47,0,9354.9512,0,2299.7483 +10808,13192,23519,23518,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.1991272,7.1161013,0,10,-3,-3.060421,0,3,3,2021,12,0,4,5,1,0,0,45.131203,45.131203,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.58,41.3,51.67,26.53,5,1,1,0,0,10,13,4,0,501,434127.94,157286.03,188632.47,0,9354.9512,0,2299.7483 +10808,13193,23520,-9,23519,23518,1,0,34,0,0,0,1,1,-9,0,3,8.6494904,8.6325464,0,0,0,-1047.47,0,2,2,2021,9,0,36,36,1,0,1,17.24889,17.24889,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,10,13,5,0,1460,232125.69,275764,58445.57,32449.463,0,0,1644.2979 +10808,13194,23521,-9,23519,23518,1,1,29,0,0,0,2,2,-9,0,2,0,0,0,0,0,-949.31494,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,-9,-9,8.333333333333334,1,1,1,0,0,13,2,0,893,272283.34,0,0,0,0,0,-233.94888 +10809,13195,23522,23523,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.2691917,5.4530807,7,-5,18.943609,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1853476,37.57,56.9,25.86,55.71,8.333333333333334,1,1,0,0,4,7,3,1,1272.5,1241054.6,814214.13,0,0,2062.1958,0,2543.3027 +10809,13195,23523,23522,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.4890556,8.4696121,7,5,103.1899,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,.05,0,0,0,0,120,1,1,0,2.090416,8.4841452,25.86,55.71,37.57,56.9,3.333333333333333,1,1,0,0,0,7,3,1,1272.5,1241054.6,814214.13,0,0,2062.1958,0,2543.3027 +10810,13196,23524,-9,23525,23526,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.76904,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,390,775798.81,517035.31,442947.47,201636.16,3891.3208,0,4367.5132 +10810,13196,23525,23526,-9,-9,1,0,40,0,1,0,1,1,-9,0,5,7.9306788,7.6257291,0,6,-4,83.623726,0,2,2,2021,2,0,21,21,1,0,0,14.799027,14.799027,.05,.05,0,0,0,0,0,0,0,0,0,3.1420383,0,59.58,42.78,52,55,10,1,1,0,0,4,1,5,1,390,775798.81,517035.31,442947.47,201636.16,3891.3208,0,4367.5132 +10810,13196,23526,23525,-9,-9,1,1,44,0,1,0,2,2,-9,0,4,9.0244112,9.4203568,0,14,4,-94.829613,0,-9,-9,2021,9,0,37,37,1,1,0,24.790049,24.790049,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,52,55,59.58,42.78,7,1,1,0,0,1,1,5,1,390,775798.81,517035.31,442947.47,201636.16,3891.3208,0,4367.5132 +10811,13197,23527,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-974.17572,0,2,2,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.66,35.81,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,364,-44885.965,0,0,0,0,0,1441.8964 +10812,13198,23528,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,.22415127,.5251897,0,0,-1062.543,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,.67533797,63.48,51.85,-9,-9,8.333333333333334,4,5,1,0,2,10,2,1,516,485141.59,0,302388.47,0,0,0,-35.424747 +10813,13199,23529,23530,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,7.325613,7.0925741,0,16,0,-99.418785,0,3,3,2021,11,0,23,20,1,0,0,7.4737644,7.4737644,0,0,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,32.71,59.08,6.666666666666667,1,1,0,1,13,12,2,1,729.5,373603,-5664.5879,199078.13,32828.676,0,28676.711,829.26031 +10813,13199,23530,23529,-9,-9,1,1,49,0,1,0,2,2,-9,0,5,0,0,0,18,0,69.25425,0,2,2,2021,9,1,0,41,3,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,32.71,59.08,54.2,57.49,5,1,1,1,1,12,12,2,1,729.5,373603,-5664.5879,199078.13,32828.676,0,28676.711,829.26031 +10814,13200,23531,23533,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.274641,8.8072157,0,12,1,-22.282351,0,2,-9,2021,12,0,40,42,1,0,0,14.136803,14.136803,0,0,0,0,0,0,0,7,1,1,0,0,0,41.98,38.62,45.18,54.77,8.333333333333334,1,1,0,0,10,11,5,1,806,356592.28,0,369840.44,0,0,0,4057.646 +10814,13200,23532,-9,23531,23533,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.30127,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,806,356592.28,0,369840.44,0,0,0,4057.646 +10814,13200,23533,23531,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.3752975,8.3742523,0,12,-1,-46.373024,0,2,2,2021,14,3,40,40,1,3,0,13.749588,13.749588,0,0,0,0,0,0,0,2,1,1,0,0,0,45.18,54.77,41.98,38.62,3.333333333333333,1,1,0,0,8,11,5,1,806,356592.28,0,369840.44,0,0,0,4057.646 +10815,13201,23534,-9,-9,-9,1,0,45,0,0,0,3,3,-9,0,3,7.2807517,7.6176434,0,0,0,-1098.0426,0,3,3,2021,11,0,30,30,1,0,0,8.2268114,8.2268114,0,0,0,0,0,0,0,0,1,1,0,0,0,44.43,56.74,-9,-9,3.333333333333333,1,1,0,0,5,13,3,0,131,-26145.008,0,0,0,0,0,1249.131 +10815,13202,23535,-9,23534,-9,1,0,21,0,0,0,2,2,-9,0,4,7.6487765,7.7365227,0,0,0,-953.58881,0,3,-9,2021,11,0,33,27,1,2,1,5.475698,5.475698,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,13,3,0,205,-445.44815,-94627.359,0,0,0,0,808.33099 +10816,13203,23536,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,6.7105856,6.9223638,0,0,-1052.3501,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,1,0,16.922123,0,0,1,1,0,3.3719296,6.826292,52.5,16.52,-9,-9,5,1,1,0,0,0,9,2,1,157,157311.03,56649.973,246673.08,0,0,0,1980.929 +10817,13204,23537,23538,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.4760437,8.6551752,0,35,5,42.167057,0,3,3,2021,14,2,12,41,1,2,0,66.016281,66.016281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.84,48.57,48.93,39.82,5,1,1,0,0,15,6,5,1,491.5,480052.59,430992.44,63663.824,41228.25,11130.072,0,3164.4639 +10817,13204,23538,23537,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.6644588,8.0672712,0,35,-5,31.27998,0,3,-9,2021,7,0,35,30,1,0,0,7.4920082,7.4920082,.05,.05,0,0,0,0,0,0,0,0,0,7.2707238,0,48.93,39.82,49.84,48.57,6.666666666666667,1,1,0,0,15,6,5,1,491.5,480052.59,430992.44,63663.824,41228.25,11130.072,0,3164.4639 +10818,13205,23539,-9,-9,23540,1,1,50,0,0,0,3,3,-9,0,5,8.0275097,8.103694,0,0,0,-994.05939,0,3,3,2021,8,0,43,0,1,0,0,7.7808867,7.7808867,.05,.05,0,0,0,0,0,0,1,1,0,2.158186,0,40.03,62.02,-9,-9,10,1,1,0,0,13,13,4,1,463,270112.72,68705.602,175394.06,0,0,0,978.84296 +10818,13206,23540,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-908.27264,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,-9,-9,7,4,6,0,0,0,13,1,1,400,192499.34,0,117839.96,0,0,0,1262.7246 +10819,13207,23541,23542,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.6860189,8.4415874,0,14,-1,85.634232,0,2,2,2021,13,2,37,34,1,2,0,17.827532,17.827532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.7,60.38,48.77,57.64,8.333333333333334,2,3,0,0,13,12,5,1,361,498266.81,54889.336,251391.31,89964.719,0,17747.262,5010.4756 +10819,13207,23542,23541,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6958933,8.7207212,0,14,1,46.1395,0,2,2,2021,11,1,30,30,1,1,0,23.627127,23.627127,.05,.05,0,0,0,0,0,0,1,1,0,2.6650376,0,48.77,57.64,27.7,60.38,5,2,3,0,0,12,12,5,1,361,498266.81,54889.336,251391.31,89964.719,0,17747.262,5010.4756 +10820,13208,23543,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.949913,7.9299631,0,0,-980.43182,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7917514,61.1,46.17,-9,-9,10,1,1,0,0,8,13,4,1,496,1105773.9,473152.81,0,0,0,0,2494.5398 +10821,13209,23544,-9,23545,23546,1,1,44,0,0,0,1,1,-9,0,3,8.0849771,7.9423132,0,0,0,-1070.8367,0,1,3,2021,10,0,38,38,1,0,0,10.604752,10.604752,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.37,61.5,-9,-9,5,1,1,0,0,10,5,4,1,261,21030.711,34641.762,0,0,0,0,948.87817 +10821,13210,23545,23546,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,8,-5,0,0,2,3,2021,7,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,57.16,56.15,8.333333333333334,1,1,0,0,9,5,1,1,1364.5,607310.25,0,515555.47,0,0,0,2098.0825 +10821,13210,23546,23545,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,8,5,0,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.7,53.75,10,1,1,0,0,6,5,1,1,1364.5,607310.25,0,515555.47,0,0,0,2098.0825 +10822,13211,23547,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,7.7039623,7.7297029,0,0,-992.27771,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3871984,7.468472,63.09,47.92,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,782,702730.75,72327.742,610073.81,0,0,0,2714.448 +10823,13212,23548,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-997.40265,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,27.373396,0,0,1,1,0,0,0,43.36,54.78,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,465,-33276.223,0,0,0,0,0,616.83685 +10824,13213,23549,-9,23550,23551,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1171.7405,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10824,13213,23550,23551,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,0,0,0,18,-2,-98.838211,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.86110598,0,43.54,59.6,57.06,57.76,8.333333333333334,1,1,0,0,4,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10824,13213,23551,23550,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.5059376,9.4238005,0,8,2,25.220978,0,-9,-9,2021,7,0,40,39,1,0,0,30.63525,30.63525,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,43.54,59.6,8.333333333333334,1,1,0,0,8,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10824,13213,23552,-9,23550,23551,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.06226,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,491,79329.766,-58916.371,0,0,0,0,3511.2837 +10825,13214,23553,-9,23557,23555,1,1,17,0,3,1,2,0,-9,0,2,0,0,0,0,0,-992.47559,-9,1,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,47.84,-9,-9,6.666666666666667,2,3,0,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23554,-9,23557,23555,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1044.7244,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23555,23557,-9,-9,1,1,38,0,3,0,2,2,-9,0,3,7.8993564,8.11938,0,10,-3,-62.28495,0,-9,-9,2021,6,0,44,44,1,0,0,8.0709572,8.0709572,.05,.05,0,0,0,0,0,0,1,1,0,1.6403401,0,61.45,32.4,64.58,36.76,6.666666666666667,2,3,0,0,13,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23556,-9,23557,23555,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-937.38776,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23557,23555,-9,-9,1,0,41,0,3,0,1,1,-9,0,2,0,0,0,24,3,-57.143372,0,3,3,2021,3,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.58,36.76,61.45,32.4,10,2,3,0,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13214,23558,-9,23557,23555,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-976.651,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,4,2,1,863,-62102.434,50452.555,0,0,6084.9155,250.26117,4175.7568 +10825,13215,23559,-9,23557,23555,1,1,18,0,3,1,2,0,0,0,3,0,0,0,0,0,-1101.0586,-9,1,2,2021,1,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.52,39.18,-9,-9,10,2,3,0,1,0,4,1,1,4757,180066.19,0,147028.92,0,0,0,0 +10826,13216,23560,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1070.8831,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.91,23.87,-9,-9,5,1,1,0,0,0,1,1,0,699,-112862.23,0,0,0,0,44.206841,1246.6195 +10827,13217,23561,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.7900505,8.7941647,0,0,0,-967.3623,0,2,2,2021,5,0,46,48,1,0,0,10.540061,10.540061,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,1504,-59716.609,100528.35,0,0,5320.7197,0,2684.4124 +10828,13218,23562,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.9294,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.65,56.8,-9,-9,8.333333333333334,1,1,0,0,8,8,1,1,944,-37325.266,0,0,0,0,0,1177.406 +10829,13219,23563,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,7.832293,7.735837,0,1,30,25.8706,0,-9,3,2021,11,0,40,45,1,0,0,7.7702012,7.7702012,0,0,0,0,0,0,0,0,0,0,0,7.4159493,0,54.38,49.11,35.53,63.81,6.666666666666667,1,1,0,0,10,9,5,1,156,86758.859,-26172.369,122527.63,0,0,0,2158.4836 +10829,13220,23564,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,8.5497961,8.5577803,0,1,-30,-102.58224,-9,-9,-9,2021,11,2,40,0,1,2,0,13.287509,13.287509,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.53,63.81,54.38,49.11,8.333333333333334,1,1,0,0,1,9,5,1,155,44354.285,23528.012,0,0,0,0,856.41296 +10830,13221,23565,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,7.5742331,7.8165197,0,0,-1111.2971,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4806663,7.4993229,54.45,27.09,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,589,1301985.6,144215.08,931387.56,0,0,0,1676.7659 +10831,13222,23566,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.4370627,7.3903413,0,0,-957.67853,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2243962,7.4938679,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,5706,717171.88,105778.74,219381.69,0,0,0,1430.0439 +10832,13223,23567,23568,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,8.3968906,8.3063211,0,7,8,19.026558,0,2,1,2021,13,1,37,37,1,1,0,11.313382,11.313382,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.89,57.17,20.32,52.93,5,1,1,0,0,8,5,5,1,850,751666.25,458779.5,189508.31,29617.355,0,0,3249.854 +10832,13223,23568,23567,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,8.1740885,8.3075027,0,7,-8,63.948269,0,2,2,2021,24,12,45,44,1,12,0,6.7761865,6.7761865,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.32,52.93,36.89,57.17,5,1,1,0,0,8,5,5,1,850,751666.25,458779.5,189508.31,29617.355,0,0,3249.854 +10833,13224,23569,23570,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,8.7735586,8.5698996,0,1,-13,127.05016,-9,-9,-9,2021,15,5,53,0,1,5,0,11.715505,11.715505,.05,.05,.05,0,0,0,0,0,1,1,0,3.1979084,0,42.62,60.15,44.13,58.1,8.333333333333334,1,1,0,0,8,5,5,0,545,1920761.5,1516097.4,286793.94,221700.75,0,0,3838.0347 +10833,13224,23570,23569,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.8306484,8.6381531,0,1,13,109.81434,0,-9,-9,2021,23,9,96,48,1,9,0,7.6038036,7.6038036,0,0,0,0,0,0,0,0,1,1,0,5.7299232,0,44.13,58.1,42.62,60.15,6.666666666666667,1,1,0,0,8,5,5,0,545,1920761.5,1516097.4,286793.94,221700.75,0,0,3838.0347 +10834,13225,23571,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5761633,8.6089029,0,0,0,-1014.7255,0,3,3,2021,12,0,40,40,1,0,0,17.02738,17.02738,.05,.05,0,0,0,0,0,0,1,1,0,1.3072354,0,38,56.63,-9,-9,5,1,1,0,0,12,1,5,1,818,890573.88,818474.56,116576.02,45866.145,15578.235,0,1511.6066 +10835,13226,23572,23573,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,8.0246763,7.9804449,33,6,11.271147,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.6715233,8.0579472,63.38,53.47,57.7,50.34,8.333333333333334,1,1,0,0,4,9,5,1,691.5,1365753.9,69308.766,967497.63,0,0,0,4111.3066 +10835,13226,23573,23572,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.7268648,8.6944714,0,33,-6,28.974741,0,2,3,2021,8,0,52,50,1,0,0,18.269377,18.269377,0,0,0,0,0,0,0,0,1,1,0,0,0,57.7,50.34,63.38,53.47,8.333333333333334,1,1,0,0,12,9,5,1,691.5,1365753.9,69308.766,967497.63,0,0,0,4111.3066 +10836,13227,23574,23575,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,36,2,39.188126,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9456441,0,38.16,47.36,51.83,57.2,8.333333333333334,2,3,0,0,0,9,5,1,242.5,2141178.5,1369744.8,793039.63,0,0,0,12151.91 +10836,13227,23575,23574,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.910305,9.1722946,37,-2,23.998901,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.935854,8.8011942,51.83,57.2,38.16,47.36,8.333333333333334,1,1,0,0,3,9,5,1,242.5,2141178.5,1369744.8,793039.63,0,0,0,12151.91 +10837,13228,23576,23577,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.6163163,6.835772,40,3,-14.749275,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8332272,48,37,32.15,45.39,1.666666666666667,1,1,0,0,9,10,3,1,740,162276.48,46073.891,112931.58,0,0,0,1698.8975 +10837,13228,23577,23576,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.69137,6.8672786,0,40,-3,-14.787768,-9,3,3,2021,13,1,15,0,1,1,0,7.1539769,7.1539769,0,0,0,0,0,0,0,7,1,1,0,0,0,32.15,45.39,48,37,0,1,1,0,0,12,10,3,1,740,162276.48,46073.891,112931.58,0,0,0,1698.8975 +10838,13229,23578,23579,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,8.4273405,8.0426426,48,0,10.864581,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2628741,7.9149117,57.34,39.89,60.12,54.8,8.333333333333334,1,1,0,0,6,9,3,1,674,1790928.5,808871.38,436630.06,0,0,0,2856.2903 +10838,13229,23579,23578,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.9548163,5.9367623,48,0,50.956741,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5272689,6.1082997,60.12,54.8,57.34,39.89,10,1,1,0,0,5,9,3,1,674,1790928.5,808871.38,436630.06,0,0,0,2856.2903 +10839,13230,23580,23581,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.3028836,5.9318838,31,-11,-50.583183,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.5692534,0,53.81,53.56,58.62,52.91,8.333333333333334,1,1,0,0,0,13,4,1,638.5,2860523.3,2336332.5,410564.28,0,0,0,2783.6536 +10839,13230,23581,23580,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,8.5056686,8.2955198,31,11,61.104694,-9,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3719177,58.62,52.91,53.81,53.56,8.333333333333334,1,1,0,0,0,13,4,1,638.5,2860523.3,2336332.5,410564.28,0,0,0,2783.6536 +10840,13231,23582,-9,23583,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1044.7897,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,5,1,0,846.33331,69263.047,0,0,0,0,0,1178.1489 +10840,13231,23583,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,0,0,-979.90302,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.11,48.24,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,846.33331,69263.047,0,0,0,0,0,1178.1489 +10840,13231,23584,-9,23583,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5836,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,1,0,846.33331,69263.047,0,0,0,0,0,1178.1489 +10841,13232,23585,23586,-9,-9,1,0,48,0,1,0,1,1,-9,0,5,8.2230034,8.4647055,0,12,-2,55.970524,0,2,1,2021,8,0,32,32,1,0,0,20.508539,20.508539,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.11,53.57,51.83,57.2,10,1,1,0,0,12,12,5,1,196.5,1611606.3,608334.81,408103.47,0,0,0,4643.5342 +10841,13232,23586,23585,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,9.1485786,9.14046,0,12,2,64.049469,0,2,1,2021,6,0,5,37,1,0,0,180.25201,180.25201,.05,.05,0,0,0,0,0,0,1,1,0,3.8169045,0,51.83,57.2,54.11,53.57,8.333333333333334,1,1,0,0,12,12,5,1,196.5,1611606.3,608334.81,408103.47,0,0,0,4643.5342 +10842,13233,23587,-9,-9,-9,1,0,25,0,0,0,2,2,-9,1,2,0,0,0,2,3,0,0,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.25415912,0,23.1,43.9,46,58,5,1,1,1,0,0,8,1,0,475,-216816.78,0,0,0,0,0,.3150501 +10843,13234,23588,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.8263626,8.6187658,0,0,-897.08514,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1530094,9.0174389,42.95,54.48,-9,-9,3.333333333333333,1,1,0,0,5,6,5,1,80,1643991.4,899964.38,455109.09,0,0,0,5468.9355 +10843,13235,23589,-9,-9,23588,1,1,37,0,0,0,2,2,-9,0,3,8.3579741,8.7444859,0,0,0,-977.25537,0,-9,1,2021,19,7,64,60,1,7,0,9.6078653,9.6078653,.05,.05,0,0,0,0,0,2,1,1,0,3.7902391,0,41.13,58.45,-9,-9,3.333333333333333,1,1,0,0,14,6,5,1,391,454295.25,270744.66,47627.922,56790.301,0,0,1800.7871 +10844,13236,23590,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.4272685,7.5395579,0,0,0,-1022.3416,0,3,3,2021,12,0,37,37,1,0,0,6.8992987,6.8992987,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,58.16,-9,-9,6.666666666666667,1,1,0,0,11,4,3,1,741,-17198.813,124282.13,0,0,7866.7905,0,682.87988 +10845,13237,23591,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,8.4272718,8.3591928,6.7049098,0,0,-1089.9434,0,2,-9,2021,19,6,38,38,1,6,0,12.478404,12.478404,.05,.05,0,0,0,0,0,0,1,1,0,7.3014488,0,30.91,53.53,-9,-9,6.666666666666667,1,1,0,0,11,11,4,1,425.5,291119.53,172912.97,0,0,0,245.34344,2020.8313 +10845,13237,23592,-9,23591,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-979.11774,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,425.5,291119.53,172912.97,0,0,0,245.34344,2020.8313 +10846,13238,23593,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.36475,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,9.4952412,0,0,1,1,0,0,0,37.63,43.85,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,583,77131.906,0,0,0,0,0,2061.1409 +10847,13239,23594,23595,-9,-9,1,1,36,1,1,0,2,2,-9,0,3,8.1448507,8.0918255,0,5,3,-117.14259,0,-9,-9,2021,7,0,38,38,1,0,0,10.692593,10.692593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.91,48.98,51.24,58.84,6.666666666666667,1,1,0,0,5,11,4,1,1294,-96125.25,-11492.91,0,0,18430.129,0,3107.3647 +10847,13239,23595,23594,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.9194169,7.8700399,0,5,-3,-18.472317,0,1,1,2021,10,2,19,38,1,2,0,18.588238,18.588238,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.91,48.98,8.333333333333334,1,1,0,0,11,11,4,1,1294,-96125.25,-11492.91,0,0,18430.129,0,3107.3647 +10847,13239,23596,-9,23595,23594,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1092.2831,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,4,1,1294,-96125.25,-11492.91,0,0,18430.129,0,3107.3647 +10848,13240,23597,23599,-9,-9,1,0,54,0,1,0,1,1,-9,0,5,8.9426699,8.828702,0,22,-1,-37.494747,-9,2,2,2021,12,3,41,0,1,3,0,15.922365,15.922365,.05,.05,0,0,0,0,0,0,1,1,0,3.4946032,0,57.06,57.76,39.61,57.54,10,1,1,0,0,13,12,5,1,1545,446994.84,213501.61,508476.09,331577.44,13950.088,0,5457.7783 +10848,13240,23598,-9,23597,23599,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-984.45959,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,12,5,1,1545,446994.84,213501.61,508476.09,331577.44,13950.088,0,5457.7783 +10848,13240,23599,23597,-9,-9,1,1,55,0,1,0,1,1,-9,0,3,8.9131899,9.0110836,0,21,1,29.126343,0,2,2,2021,10,0,45,95,1,0,0,18.359518,18.359518,.05,.05,.05,0,0,0,0,0,1,1,0,4.312273,0,39.61,57.54,57.06,57.76,6.666666666666667,1,1,0,0,13,12,5,1,1545,446994.84,213501.61,508476.09,331577.44,13950.088,0,5457.7783 +10849,13241,23600,23601,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.2519865,7.631022,8,4,67.853836,0,2,1,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,4.1959314,7.2749839,50.74,22.18,58.8,47.36,8.333333333333334,1,1,0,0,4,10,5,1,1454,1234050.3,849670.75,648304.31,262796.69,0,1226.2351,5849.793 +10849,13241,23601,23600,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,9.8205719,9.8048191,0,8,-4,-52.130711,0,1,2,2021,7,0,52,40,1,0,0,31.901093,31.901093,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,58.8,47.36,50.74,22.18,10,1,1,0,0,9,10,5,1,1454,1234050.3,849670.75,648304.31,262796.69,0,1226.2351,5849.793 +10850,13242,23602,23603,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,6.2034841,5.6033545,51,-1,61.398624,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6702299,5.8068953,42.94,38.88,52.48,54.33,6.666666666666667,1,1,0,0,1,6,4,1,241.5,800786.75,458688.53,155245.61,0,0,0,3038.9697 +10850,13242,23603,23602,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.524332,8.0158319,51,1,70.898911,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.4420347,8.1859722,52.48,54.33,42.94,38.88,8.333333333333334,1,1,0,0,0,6,4,1,241.5,800786.75,458688.53,155245.61,0,0,0,3038.9697 +10851,13243,23604,23606,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,7.3802748,7.5443902,0,26,2,-117.37623,0,3,3,2021,12,0,24,29,1,0,0,10.557906,10.557906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.92,42.25,55.53,35.49,5,2,3,0,0,12,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13243,23605,-9,23606,23604,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1035.0363,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13243,23606,23604,-9,-9,1,0,49,0,1,0,3,3,-9,0,2,0,0,0,26,-2,53.920666,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.53,35.49,55.92,42.25,5,2,3,0,0,0,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13243,23607,-9,23606,23604,1,1,17,0,1,1,3,0,0,0,2,0,0,0,0,0,-805.06891,-9,3,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.59,46.97,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,1226,92396.031,-10265.515,93745.383,8977.918,13263.311,690.87933,1762.4404 +10851,13244,23608,-9,23606,23604,1,1,22,0,1,0,1,1,1,0,2,0,0,0,0,0,-1067.9657,-9,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.15,56.05,-9,-9,0,2,3,1,1,0,2,2,1,363,33633.078,0,0,0,0,0,0 +10851,13245,23609,-9,23606,23604,1,1,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-916.32513,-9,3,2,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4550362,0,52,54.51,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,2552,0,0,0,0,0,0,830.47443 +10852,13246,23610,-9,23612,23614,1,0,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.896,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23611,-9,23612,23614,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.7976,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23612,23614,-9,-9,1,0,26,1,3,0,2,2,-9,0,4,0,0,0,5,-7,54.026989,0,-9,-9,2021,16,4,0,45,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,57.16,56.15,8.333333333333334,1,1,0,0,6,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23613,-9,23612,23614,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.8461,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10852,13246,23614,23612,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,9.4091682,9.4968519,0,5,7,4.4037685,0,2,2,2021,11,0,70,90,1,0,0,20.408901,20.408901,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.12,57.28,5,1,1,0,0,6,7,5,0,619.59998,81207.992,79909.281,221731.23,139015.86,1770.0255,0,4350.5117 +10853,13247,23615,23617,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.8354902,8.7715244,0,20,1,-.91041142,0,2,1,2021,8,0,42,43,1,0,0,22.624962,22.624962,.05,.05,0,0,0,0,0,0,0,0,0,6.4535193,0,54.2,57.49,57.06,57.76,8.333333333333334,1,1,0,0,13,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10853,13247,23616,-9,23617,23615,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.1241,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10853,13247,23617,23615,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,9.0581789,8.7568502,0,20,-1,-5.1555786,0,1,1,2021,5,0,38,70,1,0,0,22.848108,22.848108,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,12,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10853,13247,23618,-9,23617,23615,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-868.12189,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,5,1,1008,880194.13,98904.07,657708.5,13128.732,0,0,5311.9639 +10854,13248,23619,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.1979361,8.2756071,0,4,-16,-46.55032,0,-9,-9,2021,7,0,50,45,1,0,0,10.987663,10.987663,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.36,56.72,38.9,48.23,3.333333333333333,1,1,0,0,6,12,5,0,259,-288405.97,121535.92,0,0,0,0,1602.0354 +10854,13249,23620,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.6534052,8.651185,0,4,16,24.808537,0,-9,-9,2021,12,0,43,35,1,0,0,15.538032,15.538032,0,0,0,0,0,0,0,0,0,0,0,7.7148547,0,38.9,48.23,44.36,56.72,6.666666666666667,1,1,0,0,12,12,5,0,376,-140795.86,0,0,0,0,0,2553.3723 +10855,13250,23621,23622,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,8.2037458,8.1394424,0,5,1,34.397732,0,-9,-9,2021,12,0,40,40,1,0,0,10.831726,10.831726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,42,42.91,6.666666666666667,1,1,0,0,8,12,4,1,979.5,290308.69,4472.0381,147854.64,0,0,0,2243.2449 +10855,13250,23622,23621,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,7.8298798,7.61551,0,20,-1,174.93349,0,-9,-9,2021,14,3,27,27,1,3,0,8.5957203,8.5957203,0,0,0,0,0,0,0,0,1,1,0,0,0,42,42.91,54.79,55.86,8.333333333333334,1,1,0,0,10,12,4,1,979.5,290308.69,4472.0381,147854.64,0,0,0,2243.2449 +10856,13251,23623,-9,23624,-9,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.5599,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10856,13251,23624,-9,-9,-9,1,0,37,0,3,0,2,2,-9,0,4,8.0414734,8.6519766,8.2650833,0,0,-1021.0887,0,2,2,2021,12,0,37,22,1,0,0,13.160306,13.160306,.05,.05,0,0,0,0,0,0,1,1,0,7.9775658,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,6,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10856,13251,23625,-9,23624,-9,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-862.4295,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10856,13251,23626,-9,23624,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.5477,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1349.5,110612.19,-6841.1543,0,0,3783.6499,0,4968.3066 +10857,13252,23627,23630,-9,-9,1,1,33,1,2,0,3,3,-9,0,5,8.2262077,8.4364586,0,7,-7,168.56879,0,2,2,2021,10,0,55,50,1,0,0,11.499786,11.499786,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.06,60.14,41.6,53.74,8.333333333333334,1,1,0,0,8,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10857,13252,23628,-9,23630,23627,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-928.8476,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10857,13252,23629,-9,23630,23627,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-959.04675,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10857,13252,23630,23627,-9,-9,1,0,40,1,2,0,2,2,-9,0,4,7.7957253,8.0054388,0,7,7,-66.551659,0,2,2,2021,12,0,30,30,1,0,0,10.919231,10.919231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.6,53.74,44.06,60.14,8.333333333333334,1,1,0,0,8,7,4,1,1028,-107518.07,28729.918,0,0,1402.1814,0,2380.4407 +10858,13253,23631,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.1780992,7.2641988,0,0,0,-909.07904,0,-9,-9,2021,8,1,25,37,1,1,0,7.2391205,7.2391205,0,0,0,0,0,0,0,0,0,0,0,1.8951908,0,52.82,53.97,-9,-9,10,1,1,0,0,7,5,3,1,2516,-57161.418,3868.3953,0,0,0,6814.2017,433.68799 +10859,13254,23632,23633,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,7.3702011,7.0886998,47,-4,43.438114,0,3,2,2021,2,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.113296,59.53,56.44,57.06,57.76,10,1,1,0,0,7,7,2,1,403.5,168301.39,105721.67,267710.66,0,4466.7983,0,1843.0178 +10859,13254,23633,23632,-9,-9,1,1,71,0,0,0,3,3,-9,0,5,0,6.4175177,6.3930874,47,4,4.7969785,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5347557,57.06,57.76,59.53,56.44,10,1,1,0,0,5,7,2,1,403.5,168301.39,105721.67,267710.66,0,4466.7983,0,1843.0178 +10860,13255,23634,-9,23638,23636,1,1,16,0,3,1,2,0,-9,0,5,0,0,0,0,0,-912.76404,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,56.96,51,-9,-9,10,1,1,0,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23635,-9,23638,23636,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-933.96307,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23636,23638,-9,-9,1,1,42,0,3,0,2,2,-9,0,3,0,0,0,7,8,0,0,2,3,2021,8,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.73,54.56,49.42,27.84,5,1,1,1,1,3,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23637,-9,23638,23636,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.2406,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13255,23638,23636,-9,-9,1,0,34,0,3,0,2,2,-9,0,1,0,0,0,7,-8,0,0,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.42,27.84,38.73,54.56,5,1,1,0,0,0,7,1,0,494.60001,387828.34,0,416547.72,34363.324,0,0,633.34448 +10860,13256,23639,-9,23638,23636,1,1,22,0,3,0,1,1,-9,0,4,7.1167507,7.202179,0,0,0,-987.82593,0,2,3,2021,5,0,37,0,1,0,1,4.2440109,4.2440109,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,317,104638.61,-32887.836,0,0,0,0,480.83008 +10861,13257,23640,23641,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.6425076,8.3190908,1,0,158.99338,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5916815,8.4124289,53,47,54.2,57.49,8,4,1,0,0,0,13,4,1,515.5,1248421.5,633777,422443.56,0,0,0,4525.0498 +10861,13257,23641,23640,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,43,0,-70.408836,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3807478,0,54.2,57.49,53,47,8.333333333333334,1,1,0,0,0,13,4,1,515.5,1248421.5,633777,422443.56,0,0,0,4525.0498 +10862,13258,23642,-9,23645,23644,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.16821,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10862,13258,23643,-9,23645,23644,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.1421,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10862,13258,23644,23645,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.1508751,9.0176535,0,15,7,-17.000795,0,3,2,2021,13,4,40,40,1,4,0,30.984665,30.984665,.05,.05,0,0,0,0,0,2,1,1,0,7.686173,0,48.53,58.91,46.27,53,8.333333333333334,1,1,0,0,8,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10862,13258,23645,23644,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,9.4263296,9.6485386,0,15,-7,13.768017,0,1,2,2021,11,0,25,15,1,0,0,64.254105,64.254105,0,0,0,0,0,0,0,0,1,1,0,0,0,46.27,53,48.53,58.91,10,1,1,0,0,8,10,5,0,631,154941.5,1761.252,187599.91,115818.01,2367.8384,0,8692.7334 +10863,13259,23646,23647,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,10,1,83.547699,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.65,35.87,57.16,56.15,8.333333333333334,1,1,0,0,0,2,2,1,298.5,449642.78,153498.97,200105.95,0,0,0,1537.9535 +10863,13259,23647,23646,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,7.2257009,7.3545389,10,-1,-39.073891,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4602861,7.3908992,57.16,56.15,48.65,35.87,10,1,1,0,0,0,2,2,1,298.5,449642.78,153498.97,200105.95,0,0,0,1537.9535 +10863,13260,23648,-9,23646,23647,1,1,54,0,0,0,2,2,-9,0,4,7.7492027,7.7644405,0,0,0,-948.63989,0,2,3,2021,11,1,37,39,1,1,0,8.0254726,8.0254726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,-9,-9,5,1,1,0,0,11,2,3,1,270,35899.313,153401.39,0,0,0,0,848.9328 +10864,13261,23649,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.7424355,7.9222898,0,0,-991.5553,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.6413264,7.9114976,42.92,29.16,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,1668,785110.31,348906.75,445374.13,0,0,0,591.63043 +10865,13262,23650,23651,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,7.1728268,7.1252666,63,6,5.7605705,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.8741765,55,45,52,45,8,1,1,0,0,0,4,3,1,947.5,763430.25,123852.82,293728.56,0,0,0,2420.8198 +10865,13262,23651,23650,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.4786243,7.2015181,63,-6,-73.944038,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.3514695,9.5893755,30.348948,0,1,1,0,0,7.1117673,52,45,55,45,8,1,1,0,0,0,4,3,1,947.5,763430.25,123852.82,293728.56,0,0,0,2420.8198 +10866,13263,23652,23654,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,6.4334931,6.4522514,0,12,-1,48.960308,0,2,2,2021,15,5,22,18,1,5,0,3.5179529,3.5179529,0,0,0,0,0,0,0,0,1,1,0,0,0,36.22,60.56,50.18,50.45,8.333333333333334,2,3,0,0,11,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10866,13263,23653,-9,23652,23654,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.861,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10866,13263,23654,23652,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,7.7750382,7.2775578,0,12,1,190.37202,0,2,3,2021,9,0,38,38,1,0,0,6.5263848,6.5263848,0,0,0,0,0,0,0,0,1,1,0,0,0,50.18,50.45,36.22,60.56,8.333333333333334,2,3,0,0,13,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10866,13263,23655,-9,23652,23654,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.55688,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,3,1,848.75,47331.438,0,158909.89,109207.75,0,6727.3857,2727.4724 +10867,13264,23656,23657,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.6473112,7.844274,0,7,-3,68.669762,0,2,3,2021,8,0,38,38,1,0,0,7.3032904,7.3032904,0,0,0,0,0,0,0,0,0,0,0,0,0,56.19,41.56,41.34,56.62,8.333333333333334,1,1,0,0,7,5,3,1,564.5,46594.918,43283.184,129535.03,23810.207,1762.6298,0,1692.6924 +10867,13264,23657,23656,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.5372748,7.3232131,0,7,3,-30.612978,0,3,3,2021,7,0,28,28,1,0,0,8.2878904,8.2878904,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,56.19,41.56,10,1,1,0,0,8,5,3,1,564.5,46594.918,43283.184,129535.03,23810.207,1762.6298,0,1692.6924 +10868,13265,23658,23659,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.227809,8.1691685,0,33,-1,20.780336,0,2,2,2021,11,0,42,41,1,0,0,8.8840389,8.8840389,.05,.05,0,0,0,0,0,0,0,0,0,.37547469,0,48.87,58.55,55.96,49.93,5,1,1,0,0,10,9,4,1,848,11600.625,69894.195,0,0,1797.1138,0,2300.9089 +10868,13265,23659,23658,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.4216652,6.8271637,0,33,1,32.878033,0,2,3,2021,11,0,10,0,1,0,0,10.669314,10.669314,0,0,0,0,0,0,0,0,0,0,0,2.4117987,0,55.96,49.93,48.87,58.55,8.333333333333334,1,1,0,0,2,9,4,1,848,11600.625,69894.195,0,0,1797.1138,0,2300.9089 +10868,13266,23660,-9,23659,23658,1,1,21,0,0,0,2,2,-9,0,4,6.8801727,6.8310752,0,0,0,-961.19067,-9,2,2,2021,13,1,26,0,1,1,1,3.7490919,3.7490919,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.03,51.4,-9,-9,5,1,1,0,0,5,9,2,1,463,-209797.33,29430.379,0,0,0,0,-191.63518 +10869,13267,23661,23663,-9,-9,1,1,44,1,2,0,2,2,-9,0,5,8.8565598,8.5945024,0,5,8,67.391388,0,2,2,2021,8,0,50,46,1,0,0,18.977575,18.977575,.05,.05,.05,0,0,0,0,0,1,1,0,4.2561965,0,54.63,58.83,55.19,54.26,10,1,1,0,0,8,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10869,13267,23662,-9,23663,23661,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-949.88123,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10869,13267,23663,23661,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.4826922,7.7743278,0,5,-8,-32.008972,0,-9,-9,2021,12,0,27,30,1,0,0,9.8879232,9.8879232,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,54.63,58.83,8.333333333333334,1,1,0,0,10,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10869,13267,23664,-9,23663,23661,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.89624,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,987.75,174845.66,169666.78,178980,94098.266,979.19427,-126.98615,4004.2258 +10870,13268,23665,23666,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.0586147,7.7696233,8,-3,183.64999,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6715095,7.3743238,57.16,56.15,57.09,46.7,10,1,1,0,0,2,9,2,1,863,700206.75,270117.91,230283.66,0,0,0,2358.375 +10870,13268,23666,23665,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,8,3,56.378777,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3746305,0,57.09,46.7,57.16,56.15,10,1,1,0,0,1,9,2,1,863,700206.75,270117.91,230283.66,0,0,0,2358.375 +10871,13269,23667,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,7.9730606,8.6809292,0,0,0,-1001.4368,0,1,1,2021,18,6,35,39,1,6,0,12.323336,12.323336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.39,60.99,-9,-9,6.666666666666667,2,3,0,0,3,1,4,0,1197,-46527.648,103179.75,0,0,0,0,2405.5002 +10872,13270,23668,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,1,0,7.5794659,7.6132212,0,0,-870.65973,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,27.177071,.97908455,234.59259,0,1,1,0,0,7.4416203,41.51,36.41,-9,-9,5,1,1,0,1,0,9,3,1,580,680655.38,383123.38,231796.66,0,0,0,1660.88 +10873,13271,23669,-9,23671,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.9318,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,358.66666,-25661.674,0,0,0,1201.3035,0,2893.8059 +10873,13271,23670,-9,23671,-9,1,1,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-936.22394,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.33,62.63,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,358.66666,-25661.674,0,0,0,1201.3035,0,2893.8059 +10873,13271,23671,-9,-9,-9,1,0,44,0,3,0,2,2,-9,1,1,0,0,0,0,0,-1052.8439,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,45.39,14.45,-9,-9,5,1,1,0,0,0,11,1,0,358.66666,-25661.674,0,0,0,1201.3035,0,2893.8059 +10874,13272,23672,23673,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.3209629,8.1557531,7.8738475,28,2,-34.612755,0,2,2,2021,10,0,20,30,1,0,0,19.025188,19.025188,0,0,0,0,0,0,0,2,0,0,0,.84666932,8.0616922,50.72,46.82,37.9,18.09,6.666666666666667,1,1,0,0,10,9,5,1,502.5,2809506,1991391,464197.5,0,0,0,3330.7339 +10874,13272,23673,23672,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,5.7843513,6.8529348,6.2449708,28,-2,-22.241652,0,-9,-9,2021,12,2,5,5,1,2,0,6.1672711,6.1672711,0,0,0,0,0,0,0,14.5,0,0,0,3.2333627,6.5560369,37.9,18.09,50.72,46.82,8.333333333333334,1,1,0,0,3,9,5,1,502.5,2809506,1991391,464197.5,0,0,0,3330.7339 +10874,13273,23674,-9,23673,23672,1,0,24,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1067.3179,1,1,1,2021,11,1,0,17,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.01,57.81,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,240,-244831.81,0,0,0,0,0,0 +10875,13274,23675,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.066658,8.1501694,0,0,0,-1098.563,0,2,1,2021,12,1,30,42,1,1,0,12.025298,12.025298,.05,.05,0,0,0,0,0,0,0,0,0,6.761919,0,43.32,54.23,-9,-9,8.333333333333334,1,1,0,0,2,6,4,1,767,88195.742,-106294.83,0,0,0,4916.854,1612.5746 +10876,13275,23676,23677,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.3430986,8.0956697,10,-8,-111.69565,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.7065434,7.7945695,57.16,56.15,58.5,44.67,8.333333333333334,1,1,0,0,0,13,5,1,718.5,1464664.4,374907.5,643508.75,0,0,0,4670.3794 +10876,13275,23677,23676,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9491558,8.0418034,10,8,-12.127181,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.9893909,8.0868444,58.5,44.67,57.16,56.15,10,1,1,0,0,0,13,5,1,718.5,1464664.4,374907.5,643508.75,0,0,0,4670.3794 +10877,13276,23678,-9,23680,23679,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-881.83411,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,1,3,0,3459.6667,208778.41,7668.1953,292795.88,143225.88,7839.3701,8587.7979,3191.1206 +10877,13276,23679,23680,-9,-9,1,1,44,0,1,0,2,2,-9,0,3,8.1946764,8.0496874,0,10,0,-10.5432,0,2,1,2021,12,1,40,45,1,1,0,10.421002,10.421002,0,0,0,0,0,0,0,0,1,1,0,0,0,38.54,54.12,44.39,39.12,5,1,1,0,0,11,1,3,0,3459.6667,208778.41,7668.1953,292795.88,143225.88,7839.3701,8587.7979,3191.1206 +10877,13276,23680,23679,-9,-9,1,0,44,0,1,0,3,3,-9,0,2,0,0,0,10,0,131.32707,0,3,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5186281,0,44.39,39.12,38.54,54.12,5,1,1,1,0,0,1,3,0,3459.6667,208778.41,7668.1953,292795.88,143225.88,7839.3701,8587.7979,3191.1206 +10877,13277,23681,-9,23680,23679,1,0,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1032.609,0,3,2,2021,8,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,2104,0,0,0,0,0,0,-598.92426 +10878,13278,23682,-9,23684,23685,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1079.3497,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23683,-9,23684,23685,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-904.10181,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23684,23685,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.3343244,7.1143069,0,1,-1,-50.884045,0,2,2,2021,12,0,30,0,1,0,0,4.3159695,4.3159695,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49,58,8.333333333333334,1,1,0,0,1,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23685,23684,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,7.5630608,7.5265093,0,1,1,-11.866089,0,2,2,2021,10,0,40,46,1,1,0,6.8433132,6.8433132,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,54.2,57.49,7,1,1,0,0,1,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10878,13278,23686,-9,23684,23685,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.76752,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,3,0,1312.4,99777.906,0,0,0,0,0,1883.2532 +10879,13279,23687,-9,23688,23690,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-965.646,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10879,13279,23688,23690,-9,-9,1,0,46,0,2,0,2,2,-9,0,1,5.9046841,5.6362,0,10,-7,-16.561995,0,3,2,2021,12,0,5,5,1,0,0,7.892169,7.892169,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.35,49.42,44.02,60.7,6.666666666666667,1,1,0,0,5,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10879,13279,23689,-9,23688,23690,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1005.1096,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10879,13279,23690,23688,-9,-9,1,1,53,0,2,0,1,1,-9,0,4,8.5619974,8.5511866,0,10,7,23.12986,0,2,2,2021,7,0,40,60,1,0,0,13.191673,13.191673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,52.35,49.42,1.666666666666667,1,1,0,0,12,2,3,1,1781,238042.19,39628.781,205094.97,2396.3735,0,0,2205.6826 +10880,13280,23691,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.9678493,8.2582703,0,0,0,-1060.7223,0,2,-9,2021,18,6,40,39,1,6,0,7.7756944,7.7756944,0,0,0,0,0,0,0,0,0,0,0,0,0,44.13,58.1,-9,-9,6.666666666666667,2,3,0,0,6,8,4,0,192,22626.254,0,0,0,10372.509,0,949.69708 +10881,13281,23692,23693,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.8925338,7.750133,43,-1,35.02969,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7717912,7.3417664,49.04,55.86,44,38,8.333333333333334,1,1,0,0,10,10,3,1,427,1233740.8,479514.63,749377.63,0,0,0,883.08594 +10881,13281,23693,23692,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.5267353,5.7180991,43,1,-30.862309,0,2,2,2021,14,0,0,0,4,3,0,0,0,0,0,0,1,0,15.657738,0,0,0,0,0,0,6.016139,44,38,49.04,55.86,5,1,1,0,0,13,10,3,1,427,1233740.8,479514.63,749377.63,0,0,0,883.08594 +10882,13282,23694,23695,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,4.110486,4.0658298,36,-12,52.069363,0,2,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,7.8651943,4.016921,49.74,36.49,54,46,5,1,1,0,0,0,2,2,1,384.5,244393.69,-12928.859,33259.84,0,0,0,2883.3174 +10882,13282,23695,23694,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,6.8965764,6.9868302,36,12,-91.669739,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,3.228287,0,0,1,1,0,6.3386178,6.8154483,54,46,49.74,36.49,8,1,1,0,0,0,2,2,1,384.5,244393.69,-12928.859,33259.84,0,0,0,2883.3174 +10883,13283,23696,23697,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.6386347,8.1564522,0,8,1,-200.64348,0,3,3,2021,9,1,30,0,1,1,0,14.851977,14.851977,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,43.61,56.01,8.333333333333334,1,1,0,0,9,12,5,1,905.5,467912.56,0,327540.44,0,0,0,3700.9033 +10883,13283,23697,23696,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.3489227,8.6177979,0,8,-1,-128.52115,0,2,2,2021,10,0,44,44,1,0,0,11.65908,11.65908,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,905.5,467912.56,0,327540.44,0,0,0,3700.9033 +10884,13284,23698,23701,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.9866714,8.303525,0,11,1,49.766827,0,2,2,2021,10,1,47,47,1,1,0,12.575491,12.575491,.05,.05,0,0,0,0,0,7,1,1,0,6.856843,0,53.61,59.13,40.54,54.23,8.333333333333334,1,1,0,1,13,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10884,13284,23699,-9,23701,23698,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1081.1792,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10884,13284,23700,-9,23701,23698,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1016.2532,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10884,13284,23701,23698,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,5.484488,6.6643333,5.8804364,11,-1,-9.5265675,0,2,3,2021,24,7,3,27,1,7,0,7.7555466,7.7555466,.05,.05,0,0,0,0,0,27,1,1,0,5.6701722,0,40.54,54.23,53.61,59.13,6.666666666666667,1,1,0,1,12,12,3,1,795.25,622283.69,500759,219719.78,111111.07,2936.5654,0,2189.5754 +10885,13285,23702,-9,23703,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-995.36304,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,398,131934.86,0,0,0,0,0,1469.658 +10885,13285,23703,-9,-9,-9,1,0,25,1,1,0,2,2,-9,0,3,0,0,0,0,0,-948.10541,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,4,2,1,0,398,131934.86,0,0,0,0,0,1469.658 +10886,13286,23704,23705,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,8.9764566,8.7553425,0,8,7,58.807457,0,3,2,2021,7,0,50,40,1,0,0,16.274433,16.274433,.05,.05,0,0,0,0,0,7,0,0,0,0,0,55.2,49.4,54.3,35.12,6.666666666666667,1,1,0,0,11,6,5,1,320.5,471810.88,404820.81,383102.25,234076.38,19943.994,1316.3265,4747.1768 +10886,13286,23705,23704,-9,-9,1,0,39,0,0,0,1,1,-9,0,2,8.6446695,8.6023397,0,8,-7,-116.08945,0,2,1,2021,9,0,47,45,1,0,0,14.213551,14.213551,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.3,35.12,55.2,49.4,8.333333333333334,1,1,0,0,10,6,5,1,320.5,471810.88,404820.81,383102.25,234076.38,19943.994,1316.3265,4747.1768 +10887,13287,23706,-9,23708,23707,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.1215,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,586.66669,311299.41,72524.305,114913.21,83138,1366.5254,1065.2877,3057.4419 +10887,13287,23707,23708,-9,-9,1,1,38,1,1,0,2,2,-9,0,3,8.2737083,8.0346489,0,6,3,-104.39069,0,-9,-9,2021,12,0,37,48,1,0,0,11.886449,11.886449,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,43.44,61.22,5,1,1,0,0,10,2,5,1,586.66669,311299.41,72524.305,114913.21,83138,1366.5254,1065.2877,3057.4419 +10887,13287,23708,23707,-9,-9,1,0,35,1,1,0,1,1,-9,0,5,8.3740158,8.8678408,0,6,-3,-17.909227,0,2,3,2021,6,0,31,30,1,0,0,17.531719,17.531719,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.44,61.22,43.71,56.91,8.333333333333334,1,1,0,0,9,2,5,1,586.66669,311299.41,72524.305,114913.21,83138,1366.5254,1065.2877,3057.4419 +10888,13288,23709,23710,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.2415338,5.3693376,10,-4,26.382223,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6805205,5.3174362,52.8,47.23,59.29,49.68,10,1,1,0,0,4,11,2,1,843,513974.81,83361.602,254440.38,0,0,0,1930.3381 +10888,13288,23710,23709,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.7825565,6.6035786,10,4,-1.5515616,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8391576,6.799521,59.29,49.68,52.8,47.23,10,1,1,0,0,3,11,2,1,843,513974.81,83361.602,254440.38,0,0,0,1930.3381 +10889,13289,23711,23712,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.3193765,6.9152412,0,38,-4,33.675701,0,2,-9,2021,11,1,20,15,1,1,0,9.4884033,9.4884033,0,0,0,0,0,0,0,0,0,0,0,8.9146385,0,41.11,60.68,47.79,53.79,6.666666666666667,1,1,0,0,12,10,5,1,1270,37279.379,31763.439,134535.56,140627.19,0,4541.8252,5830.5098 +10889,13289,23712,23711,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.6896753,8.8769455,0,38,4,42.17104,0,-9,-9,2021,12,2,50,40,1,2,0,12.171807,12.171807,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.79,53.79,41.11,60.68,3.333333333333333,1,1,0,0,12,10,5,1,1270,37279.379,31763.439,134535.56,140627.19,0,4541.8252,5830.5098 +10890,13290,23713,23714,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,8.4311142,8.7781372,0,10,1,90.319633,0,2,3,2021,10,1,46,46,1,1,0,13.923318,13.923318,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,10,2,3,0,0,8,7,5,1,674.5,250395.03,36573.305,311679.56,223487.73,0,0,5773.8921 +10890,13290,23714,23713,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,9.0595255,8.8117552,0,10,-1,59.031879,0,-9,-9,2021,5,0,43,43,1,0,0,17.727512,17.727512,0,0,0,0,0,0,0,0,0,0,0,7.5499988,0,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,9,7,5,1,674.5,250395.03,36573.305,311679.56,223487.73,0,0,5773.8921 +10891,13291,23715,23716,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.2252197,8.3025818,0,5,1,32.096413,0,-9,-9,2021,11,0,42,40,1,0,0,9.5718822,9.5718822,.05,.05,0,0,0,0,0,0,0,0,0,.34735164,0,44.3,55.28,48.87,58.55,8.333333333333334,1,1,0,0,5,10,5,1,546,-80738.688,-23766.219,134842.81,116904.23,0,0,2850.8813 +10891,13291,23716,23715,-9,-9,1,0,26,0,0,0,2,2,-9,0,4,7.9790902,8.2641592,0,5,-1,84.675453,0,1,-9,2021,12,2,39,39,1,2,0,7.3860264,7.3860264,.05,.05,0,0,0,0,0,0,0,0,0,.54298198,0,48.87,58.55,44.3,55.28,8.333333333333334,1,1,0,0,10,10,5,1,546,-80738.688,-23766.219,134842.81,116904.23,0,0,2850.8813 +10892,13292,23717,23720,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,8.7233477,8.4098568,0,6,6,-181.37239,0,2,2,2021,10,0,39,59,1,0,0,17.575274,17.575274,0,0,.05,0,0,0,0,0,1,1,0,7.84624,0,48.87,58.55,59.43,58.05,6.666666666666667,1,1,0,0,8,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10892,13292,23718,-9,23720,23717,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-959.12372,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,1,1,-9,0,0,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10892,13292,23719,-9,23720,23717,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-955.98566,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10892,13292,23720,23717,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,7.5692463,7.4302812,0,6,-6,19.125843,0,2,2,2021,6,0,25,30,1,0,0,9.6413403,9.6413403,0,0,0,0,0,0,0,0,1,1,0,4.0748882,0,59.43,58.05,48.87,58.55,8.333333333333334,1,1,0,0,8,10,4,1,962.25,145251.39,3578.7078,197299.55,24999.479,113.50322,0,3767.7739 +10893,13293,23721,23722,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,7,6,72.497604,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.47,58.08,57.06,57.76,5,1,1,1,1,1,13,3,1,480,896697.75,603508.5,222750.31,0,0,0,1054.3688 +10893,13293,23722,23721,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.0296583,8.5253258,0,7,-6,91.332573,0,3,3,2021,10,0,38,38,1,0,0,12.23726,12.23726,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,41.47,58.08,8.333333333333334,1,1,0,0,8,13,3,1,480,896697.75,603508.5,222750.31,0,0,0,1054.3688 +10893,13294,23723,-9,23722,23721,1,0,26,0,0,0,1,1,-9,0,3,8.3328047,8.0990915,0,0,0,-968.11334,0,3,3,2021,8,0,38,38,1,0,1,13.833152,13.833152,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,505,44232.648,-91414.063,0,0,0,0,1031.2156 +10894,13295,23724,23725,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.4811916,8.2983675,0,1,27,-67.711288,0,-9,-9,2021,11,0,40,40,1,0,0,11.951239,11.951239,.05,.05,0,0,0,0,0,0,0,0,0,2.8633888,0,38.41,58.52,57.41,54.88,8.333333333333334,1,1,0,0,11,11,4,1,586.5,63412.461,12526.99,0,0,2487.5874,3735.4126,2738.8184 +10894,13295,23725,23724,23726,-9,1,0,25,0,0,0,2,2,-9,0,4,7.1249228,6.9477897,0,1,-27,-113.70287,0,3,-9,2021,12,0,18,40,1,0,0,6.8057632,6.8057632,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.41,54.88,38.41,58.52,8.333333333333334,1,1,0,0,7,11,4,1,586.5,63412.461,12526.99,0,0,2487.5874,3735.4126,2738.8184 +10894,13296,23726,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.2899919,7.3944421,0,0,0,-1008.9504,0,-9,-9,2021,12,0,18,18,1,2,0,7.2183294,7.2183294,.05,.05,0,0,0,0,0,0,0,0,0,1.90576,0,48,49,-9,-9,7,1,1,0,0,1,11,3,1,326,-83568.82,112090.05,43013.395,-21463.621,2734.6995,1345.585,1151.5167 +10895,13297,23727,23729,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,9.3040924,8.9977503,0,9,0,-51.824528,0,-9,-9,2021,11,0,37,37,1,0,0,28.968306,28.968306,.05,.05,0,0,0,0,0,0,0,0,0,4.4106493,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,11,9,5,1,1738.3334,213947.13,-1517.0104,546337.88,417032.59,0,0,4995.6768 +10895,13297,23728,-9,23729,23727,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.5603,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1738.3334,213947.13,-1517.0104,546337.88,417032.59,0,0,4995.6768 +10895,13297,23729,23727,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.6237965,8.6224422,0,9,0,161.76811,0,2,1,2021,12,0,39,40,1,0,0,18.977846,18.977846,.05,.05,0,0,0,0,0,0,0,0,0,4.9632802,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,11,9,5,1,1738.3334,213947.13,-1517.0104,546337.88,417032.59,0,0,4995.6768 +10896,13298,23730,-9,-9,-9,1,1,20,0,0,0,2,2,0,0,4,0,6.9219742,6.9167795,0,0,-968.49963,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.629467,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,1,1,2,0,637,-92059.289,0,0,0,0,0,6.3366776 +10896,13299,23731,-9,-9,-9,1,1,20,0,0,1,2,0,-9,0,4,0,6.9969535,7.3323116,0,0,-1053.8066,-9,-9,-9,2021,23,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.439724,0,30.53,65.61,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,176,-26625.518,0,0,0,0,0,1052.0551 +10896,13300,23732,-9,-9,-9,1,1,19,0,0,1,2,0,-9,0,4,0,5.6248074,5.9608326,0,0,-949.99512,-9,-9,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0341082,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,608,-63056.109,0,0,0,0,0,-505.46506 +10897,13301,23733,23734,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.6385307,8.7928591,0,4,-16,53.145523,0,2,3,2021,12,0,65,60,1,0,0,7.0767155,7.0767155,0,0,0,0,0,0,0,0,0,0,0,0,0,35.78,63.13,14.78,60.88,8.333333333333334,1,1,0,0,9,2,5,1,407.5,178344.52,115404.03,123631.8,93572.328,2783.3757,1150.3851,4358.2451 +10897,13301,23734,23733,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.5692348,9.0707436,0,4,16,-89.392807,0,-9,-9,2021,28,12,60,56,1,12,0,11.393497,11.393497,.05,.05,0,0,0,0,0,0,0,0,0,0,0,14.78,60.88,35.78,63.13,3.333333333333333,1,1,0,0,12,2,5,1,407.5,178344.52,115404.03,123631.8,93572.328,2783.3757,1150.3851,4358.2451 +10898,13302,23735,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.6681399,8.1601286,7.4799185,0,0,-912.03961,0,2,2,2021,11,0,24,24,1,0,0,11.154466,11.154466,.05,.05,0,0,0,0,0,2,0,0,0,5.1975245,7.7964864,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,332,110438.03,116963.42,0,0,0,0,2446.0334 +10899,13303,23736,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.9803553,8.5062733,0,0,0,-1077.1835,0,3,3,2021,8,0,38,40,1,0,0,23.536377,23.536377,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.45,43.74,-9,-9,6.666666666666667,1,1,0,0,12,7,5,1,444,252021.3,21478.916,263778.38,78308.164,0,0,2009.1665 +10900,13304,23737,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,4.7136674,4.4784369,0,0,-1035.1006,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8545697,5.0979528,57.74,44.14,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,922,-149799.5,-39691.316,0,0,0,0,843.11102 +10901,13305,23738,23739,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.2651939,8.2686605,0,32,4,47.924568,0,2,2,2021,7,0,35,34,1,0,0,12.891256,12.891256,0,0,.05,0,0,0,0,0,0,0,0,2.4299376,0,56.26,53.71,35.46,42.22,8.333333333333334,1,1,0,0,13,10,4,1,439,219519.72,26232.477,222919.09,0,17937.535,0,2869.6563 +10901,13305,23739,23738,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.4032202,7.2040014,0,28,-4,-54.564953,0,-9,-9,2021,15,3,22,25,1,3,0,7.6309237,7.6309237,0,0,0,0,0,0,0,2,0,0,0,0,0,35.46,42.22,56.26,53.71,8.333333333333334,1,1,0,0,12,10,4,1,439,219519.72,26232.477,222919.09,0,17937.535,0,2869.6563 +10902,13306,23740,-9,23742,23741,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.49597,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,944.66669,411718.47,173353.72,212958.45,51055.691,0,0,4069.7981 +10902,13306,23741,23742,-9,-9,1,1,35,0,1,0,1,1,-9,0,3,8.7926893,8.56633,0,4,2,-8.9436045,0,1,1,2021,15,3,44,43,1,3,0,16.450037,16.450037,.05,.05,0,0,0,0,0,0,1,1,0,6.0918517,0,30.7,62.92,43.71,56.91,6.666666666666667,1,1,0,0,11,5,5,1,944.66669,411718.47,173353.72,212958.45,51055.691,0,0,4069.7981 +10902,13306,23742,23741,-9,-9,1,0,33,0,1,0,1,1,-9,0,3,7.9343052,8.0115118,0,4,-2,17.921122,0,2,3,2021,11,0,24,7,1,0,0,10.278867,10.278867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,30.7,62.92,6.666666666666667,1,1,0,0,12,5,5,1,944.66669,411718.47,173353.72,212958.45,51055.691,0,0,4069.7981 +10903,13307,23743,-9,23746,23744,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.72485,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10903,13307,23744,23746,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,5.1618152,4.989069,0,23,0,-4.9291544,0,1,3,2021,12,0,40,40,1,0,0,.54691976,.54691976,0,0,0,0,0,0,1.4952751,0,1,1,0,0,0,40.24,54.56,43.65,58.28,5,1,1,0,0,11,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10903,13307,23745,-9,23746,23744,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.14752,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10903,13307,23746,23744,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.2642469,8.2345114,0,23,0,-28.099298,0,2,1,2021,11,0,28,45,1,0,0,11.751629,11.751629,0,0,0,0,0,0,0,0,1,1,0,0,0,43.65,58.28,40.24,54.56,5,1,1,0,0,11,12,3,1,1088.5,12137.351,87671.633,70798.789,44694.539,0,0,1188.8093 +10904,13308,23747,23748,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,1,-21,70.658035,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.65,56.13,6.666666666666667,1,1,1,0,0,11,3,1,1718,8512.7334,0,187252.55,134385.31,0,0,1932.7988 +10904,13308,23748,23747,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.5246973,8.3108377,3.3198304,1,21,60.177097,-9,-9,-9,2021,10,0,55,0,1,0,0,6.0782681,6.0782681,0,0,0,0,0,0,0,0,1,1,0,0,3.3066077,57.65,56.13,57.16,56.15,5,1,1,0,0,8,11,3,1,1718,8512.7334,0,187252.55,134385.31,0,0,1932.7988 +10905,13309,23749,23750,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.8888884,9.0097723,0,7,0,-23.848919,0,2,3,2021,8,0,40,40,1,0,0,20.120842,20.120842,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.24,50.75,61.09,51.58,8.333333333333334,1,1,0,0,8,13,5,1,1259.3334,621283.19,418192.16,236162.69,28602.402,1040.5988,0,3161.0454 +10905,13309,23750,23749,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.2451501,7.197444,0,7,0,117.7765,0,2,2,2021,6,0,20,18,1,0,0,8.0233421,8.0233421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.09,51.58,52.24,50.75,10,1,1,0,0,7,13,5,1,1259.3334,621283.19,418192.16,236162.69,28602.402,1040.5988,0,3161.0454 +10905,13309,23751,-9,23750,23749,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1019.2197,-9,1,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,13,5,1,1259.3334,621283.19,418192.16,236162.69,28602.402,1040.5988,0,3161.0454 +10905,13310,23752,-9,23750,23749,1,0,23,0,0,0,1,1,-9,0,4,8.2262135,8.1472349,0,0,0,-958.58856,0,1,2,2021,13,1,38,35,1,1,1,12.802417,12.802417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,622,91562.695,58482.617,0,0,0,0,1989.5275 +10905,13311,23753,-9,23750,23749,1,1,21,0,0,0,2,2,1,0,4,7.7443814,7.8556499,0,0,0,-1043.1635,-9,1,2,2021,11,2,38,0,1,2,1,7.0372906,7.0372906,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,3649,-10045.938,0,0,0,0,0,1763.4642 +10906,13312,23754,23755,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,6.9425945,7.255167,9,9,-27.072334,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.9675498,50.21,45.02,50.12,53.99,6.666666666666667,2,3,0,0,11,6,3,1,1005.5,220302.56,-4161.584,0,0,1797.7208,4439.4375,2317.1758 +10906,13312,23755,23754,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.839395,7.6517229,0,9,0,69.520866,0,2,2,2021,14,2,28,28,1,2,0,10.001691,10.001691,.05,.05,0,0,0,0,0,2,1,1,0,.50544739,0,50.12,53.99,50.21,45.02,6.666666666666667,1,1,0,0,14,6,3,1,1005.5,220302.56,-4161.584,0,0,1797.7208,4439.4375,2317.1758 +10907,13313,23756,23757,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,6.0325785,5.8166065,9,-1,41.799088,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.212666,5.9888515,57.16,56.15,62.1,51.16,10,1,1,0,0,3,9,2,1,494.5,477238.16,78311.75,399089.34,20874.965,210.91833,0,1259.8242 +10907,13313,23757,23756,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,4.9037509,4.9194193,53,1,-87.343971,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2280974,4.9464869,62.1,51.16,57.16,56.15,10,1,1,0,0,7,9,2,1,494.5,477238.16,78311.75,399089.34,20874.965,210.91833,0,1259.8242 +10908,13314,23758,23759,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,8,-11,0,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,33.75,48.45,57.49,8.333333333333334,1,1,0,0,0,10,1,1,544.5,316202.81,0,348484.5,0,0,0,1865.4919 +10908,13314,23759,23758,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,8,11,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,59.45,33.75,0,1,1,0,0,0,10,1,1,544.5,316202.81,0,348484.5,0,0,0,1865.4919 +10909,13315,23760,-9,23763,23762,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-982.08844,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10909,13315,23761,-9,23763,23762,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.3952,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10909,13315,23762,23763,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,8.8890753,8.975008,0,11,-1,1.0018661,0,3,2,2021,12,0,55,65,1,0,0,18.134535,18.134535,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,33.61,61.54,5,1,1,0,0,13,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10909,13315,23763,23762,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,7.6529322,7.3461275,0,11,1,-27.826735,0,2,1,2021,16,5,25,25,1,5,0,9.4955006,9.4955006,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.61,61.54,47.07,53.97,10,1,1,0,0,11,10,4,1,689.5,516855.72,207053.63,427935.38,241578.44,8013.6528,5819.2866,3445.1912 +10910,13316,23764,23765,-9,-9,1,1,31,0,3,0,2,2,-9,0,4,8.2176065,7.8387513,0,6,-7,-16.823362,0,-9,-9,2021,9,0,72,60,1,0,0,7.5133533,7.5133533,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.06,57.76,8.333333333333334,1,1,0,0,6,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10910,13316,23765,23764,-9,-9,1,0,38,0,3,0,2,2,-9,0,5,0,0,0,6,7,-38.343948,0,2,-9,2021,11,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,58.15,52.91,10,1,1,0,0,5,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10910,13316,23766,-9,23765,23764,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-932.70367,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10910,13316,23767,-9,23765,23764,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.8444,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,0,1399.25,258397.14,0,220550,159517.92,1210.5815,-317.10352,2347.1643 +10911,13317,23768,-9,23769,23770,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-949.16614,-9,1,2,2021,27,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.48,65.86,-9,-9,3.333333333333333,1,1,0,0,1,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23769,23770,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,5.7879558,5.8322825,0,20,-3,20.601068,0,3,1,2021,2,0,20,4,1,0,0,2.2380209,2.2380209,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,53.71,53.59,39.94,10,1,1,0,0,8,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23770,23769,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.0298338,8.0012884,0,20,3,-40.144272,0,-9,-9,2021,12,0,60,70,1,0,0,4.7117867,4.7117867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.59,39.94,50.65,53.71,3.333333333333333,1,1,0,0,13,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23771,-9,23769,23770,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.69586,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10911,13317,23772,-9,23769,23770,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.01807,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,2,1,343,469126.56,294684.19,0,0,0,1747.687,1835.5646 +10912,13318,23773,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,9.4761095,9.1495695,0,1,-2,-52.115059,-9,-9,-9,2021,6,0,36,0,1,0,0,35.995975,35.995975,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47,57,10,1,1,0,0,4,2,5,1,1053,200421.89,74596.977,150467.55,50226.148,2226.0481,1728.7495,3556.1746 +10913,13319,23774,23775,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.2790937,9.3528242,0,20,1,-142.21098,0,1,1,2021,12,0,37,38,1,0,0,41.50779,41.50779,.05,.05,0,0,0,0,0,0,0,0,0,3.329695,0,52,54.51,54.77,55.87,8.333333333333334,1,1,0,0,11,7,5,1,1356.5,1604798.3,764561.5,563904.81,0,0,0,3484.0322 +10913,13319,23775,23774,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,6.9242387,6.9964294,0,20,-1,-42.759613,0,2,1,2021,8,0,4,18,1,0,0,31.894478,31.894478,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,52,54.51,8.333333333333334,1,1,0,0,9,7,5,1,1356.5,1604798.3,764561.5,563904.81,0,0,0,3484.0322 +10913,13320,23776,-9,23775,23774,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-995.59375,-9,1,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3334152,0,61.59,34.98,-9,-9,8.333333333333334,1,1,0,0,9,7,1,1,554,0,0,0,0,0,0,-343.87457 +10913,13321,23777,-9,23775,23774,1,0,19,0,0,0,2,2,1,0,3,7.3916025,7.689579,0,0,0,-1041.3989,-9,1,1,2021,17,6,32,0,1,6,1,6.6368074,6.6368074,0,0,0,0,0,0,0,0,0,0,0,0,0,42.87,40.92,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,340,-37728.375,0,0,0,0,0,439.23489 +10914,13322,23778,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2537088,8.2645149,0,0,0,-989.21771,-9,2,2,2021,14,2,43,0,1,2,0,11.352174,11.352174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.05,54.52,-9,-9,6.666666666666667,1,1,0,0,11,5,4,1,418,48537.168,11414.018,0,0,0,0,1651.6744 +10914,13323,23779,-9,23778,-9,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-985.58661,-9,2,-9,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,5,1,1,403,-13244.405,0,0,0,0,0,0 +10915,13324,23780,23781,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.1313562,8.3587952,0,4,-3,-45.718067,0,2,3,2021,6,0,45,47,1,0,0,14.84254,14.84254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,10,1,1,0,0,10,9,5,1,1308.5,452015.88,62839.938,362725,249671.03,0,565.50916,3558.2813 +10915,13324,23781,23780,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.3799706,8.7199869,0,4,3,-4.6406522,0,-9,-9,2021,5,0,38,38,1,0,0,18.227018,18.227018,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,58.32,50.22,10,1,1,0,0,2,9,5,1,1308.5,452015.88,62839.938,362725,249671.03,0,565.50916,3558.2813 +10916,13325,23782,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,7.7362666,8.8728142,8.4637423,0,0,-1010.2258,0,3,3,2021,7,0,30,40,1,0,0,10.033081,10.033081,.05,.05,0,0,0,0,0,0,1,1,0,7.1905036,8.8279352,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,541,1429758.6,777881.19,279951.25,0,1835.1523,0,5428.5747 +10917,13326,23783,23784,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,35,-4,-14.994066,0,3,3,2021,7,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.7374806,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,9,10,3,1,605,327339.13,106031.23,165127.77,0,0,0,2074.3579 +10917,13326,23784,23783,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,7.6479664,7.9829578,0,35,4,119.32592,0,3,-9,2021,6,0,30,40,1,0,0,12.129694,12.129694,.05,.05,0,0,0,0,0,0,1,1,0,2.7856271,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,9,10,3,1,605,327339.13,106031.23,165127.77,0,0,0,2074.3579 +10918,13327,23785,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.8051782,7.9756975,0,0,0,-927.62231,0,-9,-9,2021,9,0,36,36,1,0,0,9.8855066,9.8855066,.05,.05,0,0,0,0,0,0,0,0,0,5.0482593,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,9,11,4,1,426,-4950.7671,115469.2,46813.66,42393.773,-902.46881,335.177,1457.0995 +10919,13328,23786,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1020.0556,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.71,20.19,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1851,106593.44,0,0,0,0,0,1232.7448 +10920,13329,23787,23792,-9,-9,1,0,42,0,5,0,1,1,-9,0,3,7.2402649,7.4051557,0,17,-4,59.466312,0,2,2,2021,9,3,16,16,1,3,0,9.2077618,9.2077618,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,49.51,40.54,1.666666666666667,3,4,0,1,2,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23788,-9,23787,23792,1,0,13,0,5,1,3,0,-9,0,4,0,0,0,0,0,-943.99591,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23789,-9,23787,23792,1,0,16,0,5,1,2,0,-9,0,5,0,0,0,0,0,-1036.6859,-9,1,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23790,-9,23787,23792,1,1,4,0,5,1,3,0,-9,0,4,0,0,0,0,0,-980.46106,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23791,-9,23787,23792,1,1,11,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1038.226,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23792,23787,-9,-9,1,1,46,0,5,0,2,2,-9,0,4,6.7755075,6.6270404,0,18,4,37.50655,0,3,3,2021,12,0,12,25,1,0,0,7.0144811,7.0144811,0,0,0,0,0,0,0,0,1,1,0,0,0,49.51,40.54,46,50,5,3,4,0,0,5,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13329,23793,-9,23787,23792,1,1,7,0,5,1,3,0,-9,0,4,0,0,0,0,0,-986.80273,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,541,279497.63,0,410967.16,97407.609,2635.083,0,3298.1987 +10920,13330,23794,-9,23787,23792,1,1,18,0,5,1,2,0,0,0,4,0,0,0,0,0,-947.10687,-9,1,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,3666,-51713.566,0,0,0,0,0,0 +10921,13331,23795,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.72365,8.483717,0,0,0,-956.73816,0,2,2,2021,5,0,46,44,1,0,0,12.651928,12.651928,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,453,52907.262,-29430.582,0,0,0,0,2019.7426 +10922,13332,23796,23797,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,8.9118261,8.9075661,20,2,-34.598011,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,7.0498219,0,2,1,1,0,0,8.8401003,50,47,57.16,56.15,8.333333333333334,1,1,0,0,0,2,5,1,960.5,3779691.5,2979165,307012.5,0,0,0,6431.1455 +10922,13332,23797,23796,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.1458807,7.6804976,20,-2,40.3391,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7248082,7.7365346,57.16,56.15,50,47,10,1,1,0,0,0,2,5,1,960.5,3779691.5,2979165,307012.5,0,0,0,6431.1455 +10923,13333,23798,23799,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,5.9079781,5.9396791,12,-3,-41.623219,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,1.3542973,0,0,1,1,0,0,5.8216352,44.08,41.97,60.29,52.11,5,1,1,0,0,0,4,3,1,761.5,635071.38,567601,0,0,0,268.66052,3122.8035 +10923,13333,23799,23798,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,7.9394894,8.1708994,12,3,-146.81831,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2608547,60.29,52.11,44.08,41.97,8.333333333333334,1,1,0,0,0,4,3,1,761.5,635071.38,567601,0,0,0,268.66052,3122.8035 +10924,13334,23800,-9,23802,23801,1,1,24,0,1,0,3,3,-9,1,3,0,0,0,0,0,-1092.0333,0,1,2,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.3,37.12,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,877,9913.2539,0,0,0,0,0,1275.0251 +10924,13335,23801,23802,-9,-9,1,1,67,0,1,0,2,2,-9,0,3,0,0,0,9,7,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,48,48.77,42.51,7,1,1,0,0,0,12,1,1,261.5,43299.578,0,143266.55,48006.199,0,0,843.52911 +10924,13335,23802,23801,-9,-9,1,0,60,0,1,0,1,1,-9,0,4,0,0,0,9,-7,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.77,42.51,51,48,8.333333333333334,1,1,0,0,4,12,1,1,261.5,43299.578,0,143266.55,48006.199,0,0,843.52911 +10925,13336,23803,-9,23804,23805,1,0,21,0,0,0,2,2,-9,1,2,0,0,0,0,0,-985.87219,1,2,3,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,35.28,53.3,-9,-9,5,1,1,0,0,0,12,2,0,826,17267.447,0,0,0,0,0,758.09613 +10925,13337,23804,23805,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,7.40272,7.310627,0,40,-1,98.43383,0,-9,-9,2021,12,0,30,80,1,0,0,6.1411324,6.1411324,0,0,0,0,0,0,0,0,1,0,1,0,0,51.66,30.94,24.93,19.95,5,1,1,0,0,12,12,2,0,827,168666.56,78570.359,59721.395,0,0,0,1086.6981 +10925,13337,23805,23804,-9,-9,1,1,63,0,0,0,3,3,-9,1,1,0,0,0,4,1,-250.59354,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,24.93,19.95,51.66,30.94,5,1,1,0,0,0,12,2,0,827,168666.56,78570.359,59721.395,0,0,0,1086.6981 +10926,13338,23806,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,2,8.0446577,7.7361341,0,0,0,-862.36566,0,1,1,2021,23,9,38,45,1,9,1,9.6175919,9.6175919,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.95,39.68,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,507,8910.4521,24306.482,43365.273,71958.469,0,0,792.03644 +10927,13339,23807,23808,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.2129307,5.2379713,53,3,-58.479279,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2508111,58.47,50.22,62.58,34.42,8.333333333333334,1,1,0,0,0,11,2,1,1357.5,118914.74,208745.25,0,0,8846.7266,0,1625.2231 +10927,13339,23808,23807,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,5.4546251,5.2188931,53,-3,49.629978,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.58918,62.58,34.42,58.47,50.22,0,1,1,0,0,0,11,2,1,1357.5,118914.74,208745.25,0,0,8846.7266,0,1625.2231 +10928,13340,23809,-9,-9,-9,1,1,29,1,2,0,3,3,-9,0,2,0,0,0,0,0,-816.97894,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.71,35.95,-9,-9,5,1,1,1,0,0,13,1,0,715,-105490.43,0,0,0,0,0,681.47632 +10928,13341,23810,23811,-9,-9,1,1,27,1,2,0,3,3,-9,0,2,0,0,0,1,1,0,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.16,37.37,39.28,28.28,5,1,1,1,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10928,13341,23811,23810,-9,-9,1,0,26,1,2,0,3,3,-9,1,2,0,0,0,1,-1,0,0,3,3,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.28,28.28,37.16,37.37,6.666666666666667,1,1,0,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10928,13341,23812,-9,23811,23810,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.2113,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10928,13341,23813,-9,23811,23810,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-922.75195,-9,3,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,848,23311.711,-4335.707,0,0,0,-257.9671,2340.386 +10929,13342,23814,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1005.623,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.58,19.1,-9,-9,5,2,3,0,0,0,8,1,0,653,197359.64,0,0,0,0,0,916.68085 +10930,13343,23815,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,6.8808169,6.6160698,0,0,0,-943.64667,0,3,3,2021,10,0,16,16,1,0,0,6.7512035,6.7512035,0,0,0,0,0,0,0,14.5,1,1,0,0,0,41.53,63.13,-9,-9,6.666666666666667,1,1,0,1,3,9,2,0,571.5,166958.84,-57730.836,0,0,-422.50854,0,1617.9695 +10930,13343,23816,-9,23815,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.84351,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,571.5,166958.84,-57730.836,0,0,-422.50854,0,1617.9695 +10931,13344,23817,23818,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.355772,8.3165255,0,26,-6,-48.703274,-9,2,2,2021,10,0,32,0,1,1,0,15.056935,15.056935,0,0,0,0,0,0,0,0,0,0,0,0,0,51,54,54,53,8,1,1,0,0,9,9,5,1,1137.5,2631277,1209442,1272915.9,147747.81,0,0,7425.0156 +10931,13344,23818,23817,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.7030163,9.8437805,0,26,6,-39.121376,0,2,1,2021,8,0,55,50,1,0,0,35.752853,35.752853,.05,.05,0,0,0,0,0,0,0,0,0,5.1465826,0,54,53,51,54,8,1,1,0,0,9,9,5,1,1137.5,2631277,1209442,1272915.9,147747.81,0,0,7425.0156 +10931,13345,23819,-9,23817,23818,1,1,19,0,0,0,2,2,1,0,4,6.3411174,6.4361997,0,0,0,-898.9021,-9,1,1,2021,10,0,14,0,1,2,1,5.9211388,5.9211388,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,9,2,1,258,157268.72,0,0,0,0,0,261.29578 +10932,13346,23820,23821,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,7.1369882,7.0573311,0,31,4,79.520981,0,2,2,2021,13,0,8,50,1,3,0,19.225039,19.225039,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,39.58,51.24,58.84,6,1,1,0,0,15,7,5,1,275.5,579891.31,180345.09,206280.52,0,0,1642.106,2814.5894 +10932,13346,23821,23820,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.7320881,8.7050924,0,31,-4,42.785767,0,2,2,2021,8,0,90,50,1,0,0,8.0435886,8.0435886,0,0,0,0,0,0,0,0,1,1,0,3.0212014,0,51.24,58.84,43.96,39.58,8.333333333333334,1,1,0,0,13,7,5,1,275.5,579891.31,180345.09,206280.52,0,0,1642.106,2814.5894 +10933,13347,23822,-9,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.6780682,8.6892462,0,0,0,-1062.9543,0,2,3,2021,7,0,49,55,1,0,0,11.510242,11.510242,.05,.05,0,0,0,0,0,2,0,0,0,1.1466669,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,9,5,4,1,901.33331,-78777.414,-27278.217,0,0,1035.7109,0,1830.1727 +10933,13347,23823,-9,-9,23822,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.1249,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,901.33331,-78777.414,-27278.217,0,0,1035.7109,0,1830.1727 +10933,13347,23824,-9,-9,23822,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1088.052,-9,-9,2,2021,25,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,20.77,59.32,-9,-9,1.666666666666667,1,1,0,0,0,5,4,1,901.33331,-78777.414,-27278.217,0,0,1035.7109,0,1830.1727 +10933,13348,23825,-9,-9,-9,1,1,38,0,2,0,2,2,-9,0,3,8.1844263,8.3412733,0,0,0,-917.53918,0,3,3,2021,8,0,43,42,1,0,0,12.751986,12.751986,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.5,48.33,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,488,20132.848,6320.1411,0,0,437.64575,0,2350.7256 +10934,13349,23826,23827,-9,-9,1,0,24,0,0,0,2,2,-9,0,5,8.4244967,8.7622385,0,1,-3,-51.257271,0,-9,-9,2021,11,0,39,39,1,0,0,14.086286,14.086286,.05,.05,0,0,0,0,0,0,0,0,0,2.5483634,0,46.3,58.97,47.52,57.75,8.333333333333334,1,1,0,0,9,6,5,1,1356,60338.547,132499.08,110517.57,118907.73,14073.273,2520.1096,4432.6748 +10934,13349,23827,23826,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.826827,8.785675,0,1,3,-35.027279,-9,-9,-9,2021,11,0,40,0,1,0,0,16.29841,16.29841,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.52,57.75,46.3,58.97,8.333333333333334,1,1,0,0,8,6,5,1,1356,60338.547,132499.08,110517.57,118907.73,14073.273,2520.1096,4432.6748 +10935,13350,23828,-9,23829,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.55957,-9,2,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10935,13350,23829,-9,-9,-9,1,0,49,0,2,0,1,1,-9,0,2,6.8214579,7.0864005,6.0553107,0,0,-913.40509,0,2,1,2021,12,4,18,20,1,4,0,5.6510587,5.6510587,0,0,0,0,0,0,0,0,1,1,0,6.8447008,0,49.37,35.69,-9,-9,6.666666666666667,1,1,0,1,13,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10935,13350,23830,-9,23829,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-875.77979,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10935,13350,23831,-9,23829,-9,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1013.441,-9,1,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.67866915,0,54.2,57.49,-9,-9,10,1,1,0,0,2,9,2,1,400.5,194874.59,-21911.227,232329.41,75384.07,0,0,2270.0706 +10936,13351,23832,23833,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,0,0,10,-1,-56.631516,0,3,3,2021,17,4,0,0,4,4,0,0,0,0,0,0,1,0,11.789945,0,2,1,1,0,3.5978236,0,48.13,10.74,42.37,21.16,8.333333333333334,1,1,0,0,0,13,2,1,471.5,125728.66,-41448.672,0,0,0,0,2522.7385 +10936,13351,23833,23832,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,6.3173876,6.264431,10,1,69.777565,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,3.0214503,10.990895,27.144108,7,1,1,0,.92297286,6.4824595,42.37,21.16,48.13,10.74,6.666666666666667,1,1,0,0,0,13,2,1,471.5,125728.66,-41448.672,0,0,0,0,2522.7385 +10937,13352,23834,23835,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.7406101,6.6885428,52,6,-.43833682,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4916267,53,47,50,47,7,1,1,0,0,0,13,2,1,859.5,-24954.973,0,0,0,0,0,1374.1843 +10937,13352,23835,23834,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,62,-6,60.659523,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,47,53,47,7,1,1,0,0,0,13,2,1,859.5,-24954.973,0,0,0,0,0,1374.1843 +10938,13353,23836,23837,-9,-9,1,1,21,0,1,0,2,2,-9,1,3,4.7234321,4.4963655,0,1,-1,1.4386998,-9,-9,-9,2021,10,1,5,0,1,1,0,1.8507739,1.8507739,0,0,0,0,0,0,0,0,1,1,0,0,0,30.98,50.81,30.8,52.18,10,1,1,0,0,2,11,2,0,1498.6666,-33162.98,0,0,0,1939.554,0,2360.0417 +10938,13353,23837,23836,-9,-9,1,0,22,0,1,0,2,2,-9,1,3,0,0,0,1,1,83.385262,0,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.8,52.18,30.98,50.81,5,1,1,0,0,1,11,2,0,1498.6666,-33162.98,0,0,0,1939.554,0,2360.0417 +10938,13353,23838,-9,23837,23836,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1120.2668,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,2,0,1498.6666,-33162.98,0,0,0,1939.554,0,2360.0417 +10939,13354,23839,23840,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.077312,6.3152704,9,7,-138.1134,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8911896,55.2,49.4,54.2,57.49,8.333333333333334,3,4,0,0,0,8,2,0,1194,615468.88,270333.81,421041.44,0,0,0,1928.3511 +10939,13354,23840,23839,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.4603534,6.6124682,47,-7,-79.684731,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7959404,54.2,57.49,55.2,49.4,8.333333333333334,3,4,0,0,10,8,2,0,1194,615468.88,270333.81,421041.44,0,0,0,1928.3511 +10940,13355,23841,-9,23842,23844,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.1033,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23842,23844,-9,-9,1,0,45,0,3,0,2,2,-9,0,5,7.5415735,7.5334396,0,22,2,44.64077,0,2,2,2021,7,0,15,15,1,0,0,16.193563,16.193563,.05,.05,0,0,0,0,0,0,1,1,0,.86837935,0,54.69,57.47,53.39,52.35,8.333333333333334,1,1,0,0,7,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23843,-9,23842,23844,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.32428,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.57054889,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23844,23842,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,9.1689234,9.2353439,0,22,-2,114.79356,0,2,3,2021,9,0,55,50,1,0,0,14.809854,14.809854,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.39,52.35,54.69,57.47,8.333333333333334,1,1,0,0,10,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10940,13355,23845,-9,23842,23844,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1057.7107,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,1,1057.6,2127447.5,1894682.5,322145.69,111813.21,0,1094.1046,5120.416 +10941,13356,23846,23847,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.9235144,9.1442347,0,5,1,-.99243748,0,-9,-9,2021,10,0,37,-9,1,2,0,31.292507,31.292507,0,0,0,0,0,0,0,0,0,0,0,0,0,50,59,58.15,52.91,8,3,4,0,0,8,7,5,1,590.66669,483851.97,77969.891,625585.69,179276.16,0,0,4567.1553 +10941,13356,23847,23846,-9,-9,1,1,35,1,1,0,2,2,-9,0,4,8.1780701,8.1086292,0,5,-1,-54.973877,0,2,2,2021,7,0,35,35,1,0,0,10.238837,10.238837,.05,.05,0,0,0,0,0,0,0,0,0,4.4855514,0,58.15,52.91,50,59,10,1,1,0,0,11,7,5,1,590.66669,483851.97,77969.891,625585.69,179276.16,0,0,4567.1553 +10941,13356,23848,-9,23846,23847,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-957.11993,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,4,2,-9,0,0,7,5,1,590.66669,483851.97,77969.891,625585.69,179276.16,0,0,4567.1553 +10942,13357,23849,23850,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,9.367485,9.4134521,0,6,-5,25.245783,-9,3,3,2021,11,0,40,0,1,2,0,34.607544,34.607544,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,48,60.53,48.35,7,1,1,0,0,9,13,5,1,1742,1136472.3,531212.19,231609.03,46615.523,433.20758,0,5869.3027 +10942,13357,23850,23849,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,7.7978497,7.7371125,0,6,5,29.614489,0,3,3,2021,8,0,56,48,1,0,0,3.9121506,3.9121506,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.53,48.35,49,48,8.333333333333334,1,1,0,1,7,13,5,1,1742,1136472.3,531212.19,231609.03,46615.523,433.20758,0,5869.3027 +10943,13358,23851,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.4872675,8.6829414,0,0,0,-1151.6646,-9,3,2,2021,12,0,35,0,1,0,0,11.309307,11.309307,.05,.05,0,0,0,0,0,0,0,0,0,4.9205871,0,51.5,39.74,-9,-9,8.333333333333334,1,1,0,0,5,2,4,0,636,1085.1012,-45085.566,0,0,0,0,1652.4099 +10944,13359,23852,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.9761486,7.2531958,0,0,-1057.1417,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0185199,7.019073,45.75,55.83,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,193,220067.48,42417.145,297118.5,0,0,0,1710.7985 +10945,13360,23853,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,8.1606665,8.3580494,0,0,0,-1000.7289,0,2,3,2021,12,1,40,49,1,1,0,8.634697,8.634697,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.76,51.17,-9,-9,3.333333333333333,1,1,0,1,10,6,3,0,994,95325,-82759.781,82646.445,34447.762,0,0,1993.7205 +10945,13361,23854,-9,23853,-9,1,1,25,0,1,0,3,3,-9,0,4,8.0853357,8.2254677,0,0,0,-1023.0266,0,2,-9,2021,11,0,60,0,1,0,1,5.5543842,5.5543842,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,6,4,0,124,-36195.516,140815.34,0,0,0,0,812.37292 +10946,13362,23855,-9,23857,23858,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-984.63892,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13362,23856,-9,23857,-9,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1023.287,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13362,23857,23858,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,0,0,0,5,3,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.79,55.86,39.99,30.49,8.333333333333334,1,1,0,0,0,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13362,23858,23857,-9,-9,1,1,44,0,1,0,3,3,-9,1,2,0,0,0,5,-3,0,0,-9,-9,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.99,30.49,54.79,55.86,1.666666666666667,1,1,0,1,1,4,1,0,2515.75,28063.73,51507.996,0,0,0,0,1443.8916 +10946,13363,23859,-9,23857,-9,1,1,20,0,1,0,2,2,-9,1,4,0,0,0,0,0,-986.0918,0,2,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.74791014,0,48,59,-9,-9,7,1,1,0,0,0,4,1,0,48,-83834.438,0,0,0,0,0,876.9577 +10947,13364,23860,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,6.9240189,6.4223685,0,0,0,-1036.6045,0,1,1,2021,6,0,43,42,1,0,0,2.2952042,2.2952042,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,10,2,1,70,32564.445,24843.209,0,0,0,0,195.30702 +10948,13365,23861,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,7.7426004,8.0687218,0,0,-901.34076,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.493866,7.8774405,57.06,57.76,-9,-9,10,1,1,0,0,11,10,3,1,1946,577627.06,398409.72,350473.97,11158.746,4333.4614,0,1577.8751 +10949,13366,23862,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.0832419,4.8644958,0,0,-948.422,0,-9,-9,2021,11,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9262595,54.77,39.97,-9,-9,10,1,1,0,0,0,6,2,0,1324,2966.5859,0,79001.688,0,0,0,706.33331 +10950,13367,23863,-9,23865,23864,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.9341,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10950,13367,23864,23865,-9,-9,1,1,31,1,2,0,1,1,-9,0,4,9.0605507,8.9503403,0,9,1,37.76561,0,-9,-9,2021,12,1,35,35,1,1,0,21.181906,21.181906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,45.91,59.89,8.333333333333334,1,1,0,0,8,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10950,13367,23865,23864,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,7.361629,7.2770176,0,9,-1,-3.344239,0,-9,-9,2021,12,0,12,10,1,0,0,12.805124,12.805124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,48.87,58.55,10,1,1,0,0,8,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10950,13367,23866,-9,23865,23864,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0896,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,10,4,1,788.25,223393.66,11781.958,413853.06,181974.41,0,694.74316,3835.4875 +10951,13368,23867,23868,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,32,-6,-46.197945,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,32.85,50.9,29.78,17.81,6.666666666666667,1,1,0,0,2,6,3,0,1507,581947.75,400819.47,296800.91,0,0,0,2927.4653 +10951,13368,23868,23867,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,7.9438572,7.6913123,33,6,74.127907,0,3,3,2021,26,9,0,0,4,9,0,0,0,0,0,0,1,0,43.922997,0,0,1,1,0,0,7.5808144,29.78,17.81,32.85,50.9,0,1,1,0,0,0,6,3,0,1507,581947.75,400819.47,296800.91,0,0,0,2927.4653 +10952,13369,23869,23870,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.3989058,8.4071016,0,13,8,79.76693,0,2,1,2021,11,0,37,37,1,0,0,16.544783,16.544783,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,19.72,49.57,5,1,1,0,0,14,5,5,1,779,677225.5,392968,604879.38,217557.53,0,2221.2402,2884.0925 +10952,13369,23870,23869,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.918992,7.9661918,0,13,-8,-55.99683,0,2,2,2021,30,12,35,35,1,12,0,9.0233698,9.0233698,0,0,0,0,0,0,0,0,0,0,0,0,0,19.72,49.57,47.15,56.66,5,1,1,0,0,14,5,5,1,779,677225.5,392968,604879.38,217557.53,0,2221.2402,2884.0925 +10953,13370,23871,-9,23874,23873,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-958.92639,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10953,13370,23872,-9,23874,23873,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-967.13898,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10953,13370,23873,23874,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,0,0,0,11,11,-19.247509,0,2,1,2021,15,4,0,0,3,4,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,4.1139927,0,42.11,40.08,55.3,52.93,3.333333333333333,2,3,0,1,11,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10953,13370,23874,23873,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.0225315,7.8859663,0,4,-11,-22.284863,0,2,1,2021,7,0,38,-9,1,0,0,8.1773701,8.1773701,0,0,0,0,0,0,0,0,1,1,0,0,0,55.3,52.93,42.11,40.08,6.666666666666667,4,2,0,0,12,8,2,1,1018.25,1757980.3,52746.785,781312.94,260292.83,0,0,2218.8135 +10954,13371,23875,-9,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,8.3480673,8.1723156,0,0,0,-1163.7408,0,-9,-9,2021,7,0,39,39,1,0,0,12.016824,12.016824,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,46,-176652.09,97175.68,0,0,3655.4739,0,3033.1399 +10955,13372,23876,23877,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.6118631,9.0792656,6.9678802,16,2,7.7421188,0,3,2,2021,10,0,38,38,1,0,0,15.299869,15.299869,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9792051,58.15,52.91,45.93,41.47,10,1,1,0,0,11,2,5,1,483.5,233053.06,137776.14,112427.48,23417.996,0,0,4532.5 +10955,13372,23877,23876,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,8.648181,8.7022762,0,16,-2,29.742918,0,2,-9,2021,12,0,39,43,1,0,0,14.426247,14.426247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.93,41.47,58.15,52.91,8.333333333333334,1,1,0,0,11,2,5,1,483.5,233053.06,137776.14,112427.48,23417.996,0,0,4532.5 +10956,13373,23878,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.9036856,8.2591867,6.6370482,0,0,-953.20209,0,2,2,2021,10,1,37,37,1,1,0,9.7638664,9.7638664,.05,.05,0,0,0,0,0,0,0,0,0,4.988935,6.7527952,47.66,52.33,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,985,-56338.23,-31579.83,0,0,0,0,1702.7196 +10957,13374,23879,23880,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.4664345,7.7683711,40,0,43.509178,0,2,3,2021,9,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.3404202,7.4150872,45.56,60.26,50,47,6.666666666666667,1,1,0,0,0,7,3,1,420,1019055.9,592429.13,397756.38,0,0,0,2741.2046 +10957,13374,23880,23879,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1288667,6.9905443,10,0,97.443558,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.239987,7.1372499,50,47,45.56,60.26,7,1,1,0,0,0,7,3,1,420,1019055.9,592429.13,397756.38,0,0,0,2741.2046 +10958,13375,23881,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,7.8858395,8.1954184,6.2500057,0,0,-1033.277,0,2,3,2021,11,0,40,38,1,0,0,7.168756,7.168756,0,0,0,0,0,0,0,0,1,1,0,6.7635679,0,53.5,53.7,-9,-9,8.333333333333334,1,1,0,0,12,9,4,0,444,-85334.719,0,0,0,0,0,1601.1045 +10958,13375,23882,-9,23881,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-918.04956,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,9,4,0,444,-85334.719,0,0,0,0,0,1601.1045 +10959,13376,23883,23884,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,8.3604298,8.2722206,6,4,87.232613,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2881517,56.18,28.33,57.91,27.75,8.333333333333334,1,1,0,0,6,6,4,1,2100.5,839878.56,446114.5,218608.69,0,0,0,2970.9302 +10959,13376,23884,23883,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,6,-4,-10.11494,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.21976729,0,57.91,27.75,56.18,28.33,8.333333333333334,1,1,0,0,0,6,4,1,2100.5,839878.56,446114.5,218608.69,0,0,0,2970.9302 +10960,13377,23885,23886,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,5.0193839,4.9978166,56,1,-20.8283,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6909513,65.79000000000001,26.43,59.45,33.75,8.333333333333334,1,1,0,0,0,13,2,1,591.5,168665.34,50876.523,192006.13,0,0,0,1276.6753 +10960,13377,23886,23885,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,56,-1,-79.964363,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.45,33.75,65.79000000000001,26.43,10,1,1,0,0,0,13,2,1,591.5,168665.34,50876.523,192006.13,0,0,0,1276.6753 +10961,13378,23887,-9,23889,23888,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.53918,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23888,23889,-9,-9,1,1,44,0,3,0,2,2,-9,0,4,8.5735245,9.0849266,0,7,-2,50.424976,0,-9,-9,2021,9,0,45,-9,1,1,0,21.502447,21.502447,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,57.33,53.46,8,1,1,0,0,1,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23889,23888,-9,-9,1,0,46,0,3,0,1,1,-9,0,3,8.2410803,8.27351,0,20,2,4.69416,0,3,2,2021,6,0,30,28,1,0,0,24.051268,24.051268,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,55,8.333333333333334,1,1,0,0,8,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23890,-9,23889,23888,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.6991,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10961,13378,23891,-9,23889,23888,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.53448,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,859.59998,315674.28,310323.66,197255.22,145301.61,14383.961,1902.3131,4790.2075 +10962,13379,23892,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.2070203,8.0142851,7.1996999,0,0,-1110.2419,0,2,2,2021,6,0,18,32,1,0,0,12.175958,12.175958,0,0,0,0,0,0,0,2,1,1,0,0,7.1011844,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,11,2,4,1,2551,354775.81,401245.56,166985.59,60346.711,1787.1323,0,1499.7546 +10962,13380,23893,-9,23892,-9,1,0,23,0,0,0,2,2,-9,0,5,7.0564504,7.186965,0,0,0,-1004.8084,-9,2,1,2021,10,0,20,0,1,0,1,6.1616626,6.1616626,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,6.666666666666667,4,5,0,0,7,2,2,1,360,-37213.172,0,0,0,0,0,1003.0399 +10962,13381,23894,-9,23892,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.3856,-9,2,-9,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8438456,0,31.08,55.98,-9,-9,6.666666666666667,1,1,0,0,0,2,1,1,264,0,0,0,0,0,0,116.19553 +10962,13382,23895,-9,23892,-9,1,0,18,0,0,1,2,0,0,1,4,0,0,0,0,0,-952.39233,-9,2,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.12,58.81,-9,-9,10,1,1,0,0,0,2,1,1,272,-7582.6074,0,0,0,0,0,777.64069 +10963,13383,23896,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,4.0065994,3.8460784,0,0,-910.96039,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8509285,4.0222192,52.56,33.09,-9,-9,10,1,1,0,0,0,11,2,1,490,41193.84,0,0,0,0,0,314.061 +10964,13384,23897,23898,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.4757471,8.6153727,0,44,-1,128.90578,0,2,3,2021,19,7,37,37,1,7,0,15.751616,15.751616,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,57.1,49.47,32.98,5,1,1,0,0,10,13,5,1,1134.5,622450.44,0,219116.19,0,0,0,5303.7295 +10964,13384,23898,23897,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.4664249,7.5308008,44,1,-71.382362,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.9436302,7.9259267,49.47,32.98,43.84,57.1,5,1,1,0,0,6,13,5,1,1134.5,622450.44,0,219116.19,0,0,0,5303.7295 +10964,13385,23899,-9,23897,23898,1,0,22,0,0,0,1,1,-9,0,5,7.9787645,8.1602774,0,0,0,-921.79108,0,2,2,2021,8,0,37,30,1,0,0,13.993377,13.993377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,4,13,4,1,1449,-39162.461,64402.68,0,0,0,0,2105.3408 +10965,13386,23900,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1008.1201,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.44,22.37,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,503,-89103.367,0,0,0,0,2500.6743,659.10925 +10966,13387,23901,-9,23904,23902,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1174.213,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10966,13387,23902,23904,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.166749,8.1996861,0,6,-7,34.03344,0,-9,-9,2021,7,0,55,60,1,0,0,7.3173313,7.3173313,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,37.11,55.92,8.333333333333334,1,1,0,0,6,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10966,13387,23903,-9,23904,23902,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-909.76685,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10966,13387,23904,23902,-9,-9,1,0,41,1,2,0,1,1,-9,0,3,8.1000271,8.0595684,0,6,7,-84.303978,0,2,3,2021,21,8,25,49,1,8,0,16.840637,16.840637,.05,.05,0,0,0,0,0,0,1,1,0,2.8602464,0,37.11,55.92,58.15,52.91,6.666666666666667,1,1,0,0,7,7,4,1,1405,112371.02,42191.004,0,0,0,0,3219.1724 +10967,13388,23905,23906,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.3962159,7.7299728,6,5,27.038733,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8624477,7.4478397,29.55,60.48,25.07,58.58,3.333333333333333,1,1,0,0,0,7,3,1,1165,396724.69,231663.88,189392.61,0,1134.5286,0,1973.6066 +10967,13388,23906,23905,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.1800818,4.9024453,6,-5,-126.32899,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2858229,5.0667701,25.07,58.58,29.55,60.48,3.333333333333333,1,1,0,0,4,7,3,1,1165,396724.69,231663.88,189392.61,0,1134.5286,0,1973.6066 +10968,13389,23907,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-938.8941,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.4867234,0,26.836988,0,1,1,0,0,0,29.61,21.77,-9,-9,5,1,1,0,0,0,13,2,0,1225,-95722.875,0,0,0,-1995.1667,0,547.92792 +10969,13390,23908,23909,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2681103,7.8387756,0,8,0,-62.398884,0,3,3,2021,12,0,33,33,1,0,0,11.597864,11.597864,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,55.96,49.93,6.666666666666667,1,1,0,0,9,5,4,0,341.5,250719.91,68704.125,187903.89,0,0,0,2098.7249 +10969,13390,23909,23908,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.6075969,7.8461142,0,8,0,-81.178848,0,3,3,2021,7,0,39,40,1,0,0,6.4246507,6.4246507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,43.65,58.28,8.333333333333334,1,1,0,0,8,5,4,0,341.5,250719.91,68704.125,187903.89,0,0,0,2098.7249 +10969,13391,23910,-9,23908,23909,1,1,26,0,0,0,2,2,-9,0,3,7.7845888,7.581162,0,0,0,-1069.6573,0,2,2,2021,18,5,37,37,1,5,1,7.0447989,7.0447989,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.79,56.27,-9,-9,8.333333333333334,1,1,0,0,4,5,3,0,193,40689.125,99171.383,0,0,0,0,1025.6993 +10969,13392,23911,-9,23908,23909,1,0,21,0,0,0,2,2,-9,0,5,8.0021105,7.9970207,0,0,0,-973.05377,-9,2,2,2021,10,1,40,0,1,1,1,7.5392289,7.5392289,0,0,0,0,0,0,0,0,0,0,0,0,0,56.67,53.83,-9,-9,8.333333333333334,1,1,0,0,4,5,4,0,281,137819.45,0,0,0,0,0,1523.1532 +10969,13393,23912,-9,23908,23909,1,0,30,0,0,0,2,2,-9,0,3,8.0535307,8.0846386,0,0,0,-1013.7249,0,2,3,2021,14,2,42,43,1,2,1,6.7451162,6.7451162,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.32,42.9,-9,-9,6.666666666666667,1,1,0,1,9,5,4,0,1926,48375.5,42035.91,0,0,0,0,1583.7947 +10970,13394,23913,23914,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.2133694,6.7849059,30,7,64.330498,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1118455,49.46,56.91,58.85,23.37,5,1,1,0,0,4,7,3,0,1049,1156624.8,22770.682,885572.94,0,0,0,1092.8597 +10970,13394,23914,23913,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,6.9715977,7.5151772,6.7877922,30,-7,23.490343,0,-9,-9,2021,18,6,24,24,1,6,0,6.1503258,6.1503258,0,0,0,0,0,0,0,0,0,0,0,4.2504826,6.8058538,58.85,23.37,49.46,56.91,8.333333333333334,1,1,0,0,4,7,3,0,1049,1156624.8,22770.682,885572.94,0,0,0,1092.8597 +10970,13395,23915,-9,23914,23913,1,1,26,0,0,0,2,2,-9,0,4,8.6502647,8.6744118,0,0,0,-1082.9329,0,2,2,2021,16,6,49,0,1,6,1,14.281924,14.281924,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.7,59.17,-9,-9,8.333333333333334,1,1,0,0,1,7,5,0,463,-83340.914,-52671.879,0,0,0,0,2248.4475 +10971,13396,23916,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,7.5720663,7.5862103,0,0,-827.14996,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7183623,52.07,27.6,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,289,1138875.6,581628.19,272989.5,0,0,0,1393.0436 +10971,13397,23917,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.8519325,6.7635522,0,0,-950.81287,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6437774,60.12,54.8,-9,-9,10,1,1,0,0,4,7,2,1,1661,627647.56,0,564035.75,0,0,0,428.81485 +10972,13398,23918,23919,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.9621429,8.9746685,0,12,4,4.6252966,0,-9,-9,2021,9,0,37,35,1,0,0,26.041023,26.041023,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,2,5,1,445.5,899162.25,931380.38,315196,340389.88,4657.4204,0,4185.5483 +10972,13398,23919,23918,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.1364594,8.3791838,0,34,-4,-99.057457,0,2,2,2021,9,0,34,35,1,0,0,15.008103,15.008103,0,0,.05,0,0,0,0,0,0,0,0,4.5620575,0,48.87,58.55,57.16,56.15,8.333333333333334,1,1,0,0,13,2,5,1,445.5,899162.25,931380.38,315196,340389.88,4657.4204,0,4185.5483 +10972,13399,23920,-9,23919,23918,1,0,24,0,0,0,1,1,-9,0,4,8.4248943,8.6019249,0,0,0,-938.63916,0,2,1,2021,5,0,50,45,1,0,1,12.308175,12.308175,.05,.05,0,0,0,0,0,0,0,0,0,3.8861885,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,150,205393.73,-31819.51,0,0,1238.7336,0,1961.9341 +10973,13400,23921,23925,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,0,7.7561316,7.6612043,11,-2,-26.020802,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.2937737,0,56.11,44.4,46.32,53.44,5,1,1,0,1,4,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23922,-9,23921,23925,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1168.6531,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23923,-9,23921,23925,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1082.6659,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23924,-9,23921,23925,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1090.522,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10973,13400,23925,23921,-9,-9,1,1,54,0,1,0,2,2,-9,0,2,0,0,0,11,2,109.54459,0,2,2,2021,5,0,0,60,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,56.11,44.4,6.666666666666667,1,1,1,1,13,6,3,1,697.20001,262799.47,92786.922,210812.48,73808.703,0,0,1049.7064 +10974,13401,23926,23929,-9,-9,1,1,33,0,2,0,2,2,-9,0,4,7.9273291,7.7301474,0,1,-1,-69.198586,-9,3,2,2021,10,1,40,0,1,1,0,8.673398,8.673398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.6,52.48,36.62,58.96,5,3,4,0,1,9,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10974,13401,23927,-9,23929,23926,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.43701,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10974,13401,23928,-9,23929,23926,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.56879,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10974,13401,23929,23926,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,7.0995216,7.0083237,0,1,1,-71.801613,-9,-9,-9,2021,18,6,10,0,1,6,0,11.163065,11.163065,0,0,0,0,0,0,0,2,1,1,0,0,0,36.62,58.96,38.6,52.48,3.333333333333333,3,4,0,1,2,6,3,0,594.5,102932.51,4508.9604,0,0,17044.225,3115.9521,2126.8035 +10975,13402,23930,23931,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.7519732,6.7359047,46,2,20.76465,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9518933,6.8150673,61.58,43.34,43.46,52.95,8.333333333333334,1,1,0,0,10,6,2,1,540,78720.625,27861.811,125730.25,0,0,0,1978.3783 +10975,13402,23931,23930,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-2,-105.79698,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.46,52.95,61.58,43.34,3.333333333333333,1,1,0,0,0,6,2,1,540,78720.625,27861.811,125730.25,0,0,0,1978.3783 +10976,13403,23932,-9,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,6.0445533,5.7851782,0,0,-1204.9326,0,2,2,2021,11,0,0,8,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7148929,0,41.79,57.73,-9,-9,8.333333333333334,1,1,1,0,10,12,2,0,980,-48369.238,0,0,0,0,0,1582.5046 +10976,13403,23933,-9,23932,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.6802,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,980,-48369.238,0,0,0,0,0,1582.5046 +10976,13403,23934,-9,23932,-9,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.7775,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,12,2,0,980,-48369.238,0,0,0,0,0,1582.5046 +10977,13404,23935,23936,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.052434,7.0752511,0,2,0,123.4874,0,3,2,2021,14,2,16,16,1,2,0,7.0825548,7.0825548,0,0,0,0,0,0,0,0,1,0,1,2.2182026,0,48.87,58.55,38.33,57.72,8.333333333333334,1,1,0,0,7,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10977,13404,23936,23935,-9,-9,1,1,46,0,2,0,2,2,-9,0,4,4.8414249,4.9646134,0,2,0,-95.913551,0,2,3,2021,13,1,60,63,1,1,0,.29121354,.29121354,0,0,.05,0,0,0,0,0,1,0,1,0,0,38.33,57.72,48.87,58.55,6.666666666666667,1,1,0,0,7,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10977,13404,23937,-9,23935,23936,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-974.78314,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,1,1,-9,0,0,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10977,13404,23938,-9,23935,23936,1,0,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-927.69049,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,2.6254995,0,57.18,48.06,-9,-9,10,1,1,0,0,0,10,2,1,540.75,1116330.3,139283.48,646019.31,0,0,0,1447.9374 +10978,13405,23939,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1032.8077,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,15.632913,0,0,1,1,0,0,0,50.77,9.75,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,633,127947.09,0,165474.13,0,0,0,642.17377 +10979,13406,23940,23941,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.8746824,8.7570724,0,3,0,-46.711384,0,2,2,2021,9,1,82,40,1,1,0,7.399066,7.399066,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,14,6,5,1,250,0,0,0,0,0,0,4756.4941 +10979,13406,23941,23940,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.6839752,8.7474213,0,3,0,-65.147133,0,-9,-9,2021,6,0,42,43,1,0,0,18.722038,18.722038,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.06,57.76,6.666666666666667,1,1,0,0,6,6,5,1,250,0,0,0,0,0,0,4756.4941 +10980,13407,23942,-9,23943,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-946.51251,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,274.5,-287.13672,0,0,0,0,-260.94095,1691.9475 +10980,13407,23943,-9,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1069.0481,-9,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,3,13,1,0,274.5,-287.13672,0,0,0,0,-260.94095,1691.9475 +10981,13408,23944,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,6.5144176,6.9626474,5.7280912,0,0,-1021.8416,0,3,3,2021,6,0,16,16,1,0,0,6.4127498,6.4127498,0,0,0,0,0,0,0,0,1,1,0,0,6.015388,59.22,40.22,-9,-9,8.333333333333334,1,1,0,0,9,4,3,1,429,89543.672,0,0,0,0,0,1410.0382 +10982,13409,23945,-9,-9,-9,1,0,39,0,1,0,2,2,-9,0,4,9.2469349,8.9722157,0,0,0,-961.27448,0,2,2,2021,7,0,18,27,1,0,0,49.898029,49.898029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,10,7,5,1,909,160549.28,-63624.125,159494.13,37635.742,0,0,3515.7476 +10982,13409,23946,-9,23945,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.84924,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,909,160549.28,-63624.125,159494.13,37635.742,0,0,3515.7476 +10983,13410,23947,23948,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,0,0,0,28,-3,0,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,55.62,15.47,46.11,18.56,6.666666666666667,2,3,1,0,6,8,1,0,1432.5,733385.13,-22319.316,640039.13,0,0,0,1935.726 +10983,13410,23948,23947,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,28,3,0,0,3,3,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.11,18.56,55.62,15.47,3.333333333333333,2,3,0,0,0,8,1,0,1432.5,733385.13,-22319.316,640039.13,0,0,0,1935.726 +10983,13411,23949,-9,23947,23948,1,0,21,0,0,0,2,2,-9,0,5,7.7800984,7.4345756,0,0,0,-1003.7513,0,2,3,2021,2,0,40,40,1,0,1,4.1402102,4.1402102,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,2,3,0,0,2,8,3,0,375,-623.69623,0,0,0,0,0,636.70386 +10983,13412,23950,-9,23947,23948,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1021.3586,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,1,0,8,1,0,221,121886.69,0,0,0,0,0,0 +10984,13413,23951,23953,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.1297607,7.971262,0,10,2,-135.09195,0,2,3,2021,18,7,40,40,1,7,0,8.4345503,8.4345503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,57.33,53.46,5,1,1,0,0,6,7,3,1,847.33331,-59330.742,-4065.3074,0,0,0,0,2271.5908 +10984,13413,23952,-9,23953,23951,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.2989,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,847.33331,-59330.742,-4065.3074,0,0,0,0,2271.5908 +10984,13413,23953,23951,-9,-9,1,0,35,1,1,0,2,2,-9,0,3,0,0,0,10,-2,-80.112297,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,50.28,51.35,8.333333333333334,1,1,0,0,5,7,3,1,847.33331,-59330.742,-4065.3074,0,0,0,0,2271.5908 +10985,13414,23954,-9,23956,23955,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.7822,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10985,13414,23955,23956,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,0,0,0,8,4,0,0,2,2,2021,12,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8159928,0,49.41,58.28,46.5,58.26,3.333333333333333,1,1,0,0,6,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10985,13414,23956,23955,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,0,0,0,8,-4,0,0,2,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,49.41,58.28,3.333333333333333,1,1,0,1,0,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10985,13414,23957,-9,23956,23955,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.502,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,1,0,811.75,193770.77,158087.86,0,0,0,1813.7529,1809.0806 +10986,13415,23958,23959,-9,-9,1,1,62,0,0,0,2,2,-9,0,1,0,7.0101519,6.9074941,6,6,-10.862365,0,3,3,2021,17,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9552426,36.83,19.91,45.69,53.27,3.333333333333333,1,1,0,0,0,11,3,1,1674.5,226838.27,175929.94,45113.168,0,0,0,2064.1199 +10986,13415,23959,23958,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.5176711,7.1696706,0,6,-6,-138.88654,0,3,3,2021,13,1,25,21,1,1,0,9.8051357,9.8051357,0,0,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,36.83,19.91,5,1,1,0,0,7,11,3,1,1674.5,226838.27,175929.94,45113.168,0,0,0,2064.1199 +10987,13416,23960,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,8.4128513,8.5529003,6.4545622,0,0,-1073.712,0,3,-9,2021,9,0,40,43,1,0,0,14.373191,14.373191,.05,.05,0,0,0,0,0,0,1,1,0,7.2964201,0,57.06,57.76,-9,-9,5,1,1,0,0,10,9,4,0,406.33334,203596.81,2774.4453,328135.72,125988.79,0,0,2848.3535 +10987,13416,23961,-9,23960,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-979.60278,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,4,0,406.33334,203596.81,2774.4453,328135.72,125988.79,0,0,2848.3535 +10987,13416,23962,-9,23960,-9,1,0,17,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1039.7181,-9,2,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5418494,0,48.66,47.04,-9,-9,6.666666666666667,1,1,0,0,0,9,4,0,406.33334,203596.81,2774.4453,328135.72,125988.79,0,0,2848.3535 +10987,13417,23963,-9,23960,-9,1,0,19,0,1,0,2,2,-9,0,4,7.4299645,7.1970339,0,0,0,-1018.473,0,2,-9,2021,12,0,1,25,1,0,1,144.26295,144.26295,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.18,55.57,-9,-9,5,1,1,0,0,3,9,3,0,1258,77377.656,-87306.68,0,0,-92.248726,0,833.06824 +10988,13418,23964,23965,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.0459347,8.2103367,0,2,-5,22.938633,0,2,1,2021,6,1,37,50,1,1,0,11.225873,11.225873,0,0,0,0,0,0,.44674242,0,0,0,0,0,0,54.2,57.49,49,58,10,1,1,0,0,7,7,5,1,1589,-68826.695,70383.453,0,0,0,0,3361.7651 +10988,13418,23965,23964,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.3133554,8.394022,0,2,5,64.052467,-9,-9,-9,2021,10,0,40,0,1,1,0,12.923566,12.923566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,54.2,57.49,7,4,1,0,0,1,7,5,1,1589,-68826.695,70383.453,0,0,0,0,3361.7651 +10989,13419,23966,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,6.1670952,6.6148143,0,0,-1097.6799,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.61023521,5.9452438,47.7,44.73,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,2346,126111.89,140482.56,227993.45,0,0,0,230.39362 +10990,13420,23967,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.523839,8.2387619,0,0,0,-1079.74,0,2,1,2021,5,0,38,39,1,0,0,14.811986,14.811986,.05,.05,0,0,0,0,0,0,0,0,0,3.838028,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,10,5,1,1202,-103927.71,80522.82,0,0,0,0,951.55414 +10991,13421,23968,-9,23969,23971,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.13721,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10991,13421,23969,23971,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.3057432,8.3163948,0,8,1,35.481953,0,3,3,2021,10,1,33,28,1,1,0,11.1397,11.1397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.82,54.38,48.45,57.49,8.333333333333334,1,1,0,0,9,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10991,13421,23970,-9,23969,23971,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.27753,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10991,13421,23971,23969,-9,-9,1,1,39,0,2,0,1,1,-9,0,3,8.9770584,8.494113,0,8,-1,92.365059,0,-9,-9,2021,12,2,44,40,1,2,0,22.856489,22.856489,.05,.05,0,0,0,0,0,0,1,1,0,1.3711252,0,48.45,57.49,48.82,54.38,8.333333333333334,1,1,0,0,9,9,5,1,357,222530.48,31491.836,282504.25,226485.13,2142.3547,28550.91,3965.0891 +10992,13422,23972,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-987.85144,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,48.3,-9,-9,5,1,1,0,0,0,8,1,0,325,95345.195,70092.836,0,0,0,0,1142.9509 +10993,13423,23973,23974,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.6483145,7.5917726,0,10,2,120.19864,0,-9,-9,2021,4,0,40,40,1,0,0,5.3803859,5.3803859,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,42.81,54.48,8.333333333333334,1,1,0,0,11,2,3,1,1305.3334,572101.13,6144.1094,0,0,0,0,2186.0215 +10993,13423,23974,23973,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.0605917,8.1235323,0,10,-2,-14.816481,0,2,-9,2021,10,1,58,55,1,1,0,5.2736368,5.2736368,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.81,54.48,50.54,62.09,6.666666666666667,1,1,0,0,11,2,3,1,1305.3334,572101.13,6144.1094,0,0,0,0,2186.0215 +10993,13423,23975,-9,23973,23974,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-933.61597,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,2,3,1,1305.3334,572101.13,6144.1094,0,0,0,0,2186.0215 +10994,13424,23976,23977,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,12,0,-77.938042,0,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.741919,0,54.1,59.11,58.32,50.22,8.333333333333334,1,1,0,0,11,13,4,1,597,584953.63,285818.03,224152.13,7746.5337,0,-699.64587,2354.1946 +10994,13424,23977,23976,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.5900168,8.4482613,7.8773789,12,0,-35.374229,0,2,3,2021,6,0,33,28,1,0,0,5.9368401,5.9368401,.05,.05,0,0,0,0,0,0,0,0,0,4.2088809,8.0785904,58.32,50.22,54.1,59.11,8.333333333333334,1,1,0,0,12,13,4,1,597,584953.63,285818.03,224152.13,7746.5337,0,-699.64587,2354.1946 +10994,13425,23978,-9,23976,23977,1,0,28,0,0,0,1,1,-9,0,3,8.5683756,8.458045,0,0,0,-994.88818,0,1,2,2021,8,1,38,38,1,1,1,17.630541,17.630541,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,6.666666666666667,1,1,0,0,12,13,5,1,629,128038.53,-28186.475,0,0,0,1882.9802,1806.3051 +10994,13426,23979,-9,23976,23977,1,1,25,0,0,0,1,1,-9,0,4,8.326045,8.4379721,0,0,0,-985.66742,0,1,2,2021,17,6,40,38,1,6,1,15.395552,15.395552,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.71,62.41,-9,-9,6.666666666666667,1,1,0,0,6,13,4,1,984,51511.086,-129402.84,196382.55,139824.13,17432.592,0,2193.7036 +10994,13427,23980,-9,23976,23977,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-944.35553,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9268413,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,5,13,2,1,751,0,0,0,0,0,0,414.36877 +10995,13428,23981,23982,-9,-9,1,1,81,0,0,0,3,3,-9,0,4,0,6.6860266,6.9977665,32,8,23.912037,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2112579,57.16,56.15,58.39,36.66,10,1,1,0,0,0,10,2,0,519.5,317101.72,53266.68,261850.73,0,0,0,1386.0608 +10995,13428,23982,23981,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,32,-8,-168.48074,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.39,36.66,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,0,519.5,317101.72,53266.68,261850.73,0,0,0,1386.0608 +10996,13429,23983,23984,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.0102425,6.7416792,0,41,-2,83.231766,0,3,3,2021,6,0,24,20,1,0,0,5.0000048,5.0000048,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,608.5,1260678.6,887058.94,505548.25,0,12308.027,0,4572.0488 +10996,13429,23984,23983,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.9939137,9.5042982,7.6411643,41,2,-135.8214,0,3,3,2021,7,0,42,45,1,0,0,35.494125,35.494125,.05,.05,0,0,0,0,0,0,0,0,0,0,8.2127514,57.06,57.76,60.12,54.8,0,1,1,0,0,8,9,5,1,608.5,1260678.6,887058.94,505548.25,0,12308.027,0,4572.0488 +10997,13430,23985,23986,-9,-9,1,1,56,0,1,0,1,1,-9,0,2,8.0515509,8.1925735,7.2859268,4,10,40.145325,0,2,2,2021,10,0,15,35,1,0,0,26.761471,26.761471,.05,.05,0,0,0,0,0,0,1,1,0,0,7.134625,45.56,51,51.83,57.2,8.333333333333334,1,1,0,0,12,12,4,1,2582.5,1178325.1,713961.06,271176.94,36815.945,0,0,3634.4492 +10997,13430,23986,23985,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,8.4515438,8.3290596,4.2151208,4,-10,8.8954868,0,-9,-9,2021,12,1,44,40,1,1,0,9.0709171,9.0709171,0,0,0,0,0,0,0,0,1,1,0,4.2248278,0,51.83,57.2,45.56,51,8.333333333333334,1,1,0,0,6,12,4,1,2582.5,1178325.1,713961.06,271176.94,36815.945,0,0,3634.4492 +10998,13431,23987,23988,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.1992264,9.3907938,0,6,3,105.67265,0,2,2,2021,8,0,60,60,1,0,0,17.177866,17.177866,.05,.05,0,0,0,0,0,0,0,0,0,5.0357704,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,12,5,0,812,1362320,495672.88,488792.13,0,0,0,6466.5088 +10998,13431,23988,23987,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.8918028,8.7283459,0,6,-3,43.594917,0,2,2,2021,5,1,45,45,1,1,0,23.537365,23.537365,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,12,5,0,812,1362320,495672.88,488792.13,0,0,0,6466.5088 +10998,13432,23989,-9,23988,23987,1,0,24,0,0,0,1,1,-9,0,5,7.7090998,7.5639815,0,0,0,-908.02484,0,2,2,2021,6,0,12,12,1,0,1,22.285339,22.285339,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,5,12,3,0,1226,48612.578,0,0,0,0,0,1364.0748 +10998,13433,23990,-9,23988,23987,1,0,22,0,0,0,2,2,1,0,5,6.784307,6.9349146,0,0,0,-1018.4053,-9,2,2,2021,17,6,15,0,1,6,1,7.5337863,7.5337863,0,0,0,0,0,0,0,0,0,0,0,0,0,21.13,66.29000000000001,-9,-9,1.666666666666667,1,1,0,0,5,12,2,0,338,67975.32,0,0,0,0,0,280.35757 +10999,13434,23991,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,9.5762367,9.4175615,0,0,0,-929.8949,0,2,2,2021,19,6,43,45,1,6,0,47.743565,47.743565,0,0,0,0,0,0,0,0,0,0,0,3.0917382,0,24.27,57.83,-9,-9,8.333333333333334,2,3,0,0,9,8,5,0,9199,695844.06,465103.56,175520.88,73244.383,0,0,4921.8047 +11000,13435,23992,-9,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,0,3.7849131,4.0415835,0,0,-1141.9561,-9,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6639261,4.120729,58.31,42.52,-9,-9,6.666666666666667,1,1,0,0,3,11,2,1,360,262279.97,145922.55,0,0,0,0,-55.000977 +11001,13436,23993,23994,-9,-9,1,0,47,0,1,0,1,1,-9,0,2,8.5033512,8.173049,0,22,1,-10.855171,0,1,2,2021,15,6,70,70,1,6,0,6.3925257,6.3925257,.05,.05,0,0,0,0,0,0,1,1,0,7.9686642,0,41.7,45.97,40.58,60.95,3.333333333333333,1,1,0,0,7,9,5,1,952.66669,678164.06,156882.34,593551,34388.801,4320.1763,0,5610.751 +11001,13436,23994,23993,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.6201601,9.385601,0,9,-1,7.2267284,0,-9,-9,2021,11,1,60,48,1,1,0,18.259848,18.259848,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,40.58,60.95,41.7,45.97,6.666666666666667,1,1,0,0,8,9,5,1,952.66669,678164.06,156882.34,593551,34388.801,4320.1763,0,5610.751 +11001,13436,23995,-9,23993,23994,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1021.2401,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8408637,0,39.05,59.16,-9,-9,5,1,1,0,0,0,9,5,1,952.66669,678164.06,156882.34,593551,34388.801,4320.1763,0,5610.751 +11001,13437,23996,-9,23993,23994,1,1,18,0,1,0,2,2,1,0,4,0,0,0,0,0,-847.55115,-9,1,1,2021,6,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.673115,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,3123,-92493.945,0,0,0,0,0,401.35468 +11002,13438,23997,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,6.9250541,7.4684343,0,0,-965.97583,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.89908,7.4907246,37.05,37.29,-9,-9,6.666666666666667,1,1,0,0,7,13,3,1,419,640679.81,435674.81,95740.078,0,7028.7549,0,811.90594 +11003,13439,23998,23999,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.5761194,8.5764141,0,9,-12,-13.333118,0,2,3,2021,9,0,45,42,1,0,0,12.74652,12.74652,.05,.05,.05,0,0,0,0,0,0,0,0,5.744978,0,57.56,54.55,54.2,57.49,8.333333333333334,1,1,0,0,10,7,4,1,3388,344272.53,99361.633,214292.28,0,7841.1196,0,3175.3389 +11003,13439,23999,23998,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.8656869,7.5338988,7.3724999,9,12,53.293312,0,-9,-9,2021,6,0,15,15,1,0,0,8.3282804,8.3282804,0,0,0,0,0,0,0,2,0,0,0,6.8882174,6.7084212,54.2,57.49,57.56,54.55,10,1,1,0,0,11,7,4,1,3388,344272.53,99361.633,214292.28,0,7841.1196,0,3175.3389 +11004,13440,24000,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,4,0,6.0441394,5.9838037,0,0,-1028.5475,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8922596,66.2,41.05,-9,-9,10,1,1,0,0,0,13,2,1,1894,68162.617,127180.73,0,0,0,0,140.35274 +11005,13441,24001,24002,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,7,2,-141.80301,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.24,21.44,63.44,15.75,8.333333333333334,1,1,1,0,3,4,5,1,857.5,95713.281,125898.78,51953.113,33523.82,2914.1736,1908.3267,3881.9336 +11005,13441,24002,24001,-9,-9,1,1,56,0,0,0,3,3,-9,0,1,9.0594902,8.9537096,0,7,-2,120.65047,0,-9,-9,2021,8,0,50,50,1,0,0,20.078981,20.078981,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,63.44,15.75,59.24,21.44,8.333333333333334,1,1,0,0,10,4,5,1,857.5,95713.281,125898.78,51953.113,33523.82,2914.1736,1908.3267,3881.9336 +11006,13442,24003,-9,24005,24004,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.9993,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11006,13442,24004,24005,-9,-9,1,1,32,1,2,0,2,2,-9,0,3,7.5287218,7.3048725,0,6,4,30.301388,0,2,2,2021,11,0,60,56,1,0,0,3.4564722,3.4564722,.05,.05,0,0,0,0,0,0,1,0,1,4.943121,0,46.96,40.76,43,53,3.333333333333333,1,1,0,0,10,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11006,13442,24005,24004,-9,-9,1,0,28,1,2,0,2,2,-9,0,3,5.7470126,5.6715798,0,6,-4,-8.7807369,0,-9,-9,2021,13,0,20,0,1,3,0,1.9522343,1.9522343,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43,53,46.96,40.76,6,1,1,0,0,6,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11006,13442,24006,-9,24005,24004,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1184.6996,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,288.75,88211.516,35725.461,99920.547,60687.629,5472.6333,1407.3738,2349.6245 +11007,13443,24007,24008,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,8.3315086,8.1098719,0,11,0,29.951153,0,-9,-9,2021,14,3,39,41,1,3,0,11.386532,11.386532,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.88,25.43,31.92,55.92,6.666666666666667,1,1,0,0,9,4,4,0,609.5,452458.19,284668.31,128299.8,0,2253.77,0,2991.4026 +11007,13443,24008,24007,-9,-9,1,1,55,0,0,0,3,3,-9,1,2,6.4485698,6.4735303,0,11,0,54.202614,0,2,3,2021,14,2,10,10,1,2,0,6.7459798,6.7459798,.05,.05,0,0,0,0,0,42,1,1,0,0,0,31.92,55.92,41.88,25.43,6.666666666666667,1,1,0,0,13,4,4,0,609.5,452458.19,284668.31,128299.8,0,2253.77,0,2991.4026 +11007,13444,24009,-9,24007,24008,1,1,30,0,0,0,2,2,-9,0,2,8.0199795,8.2983742,0,0,0,-1051.4644,0,2,2,2021,18,5,40,40,1,5,1,11.510709,11.510709,.05,.05,0,0,0,0,0,7,1,1,0,0,0,34.56,45.45,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,585,-100278.41,-68469.82,135567.31,20538.041,0,0,1221.7418 +11008,13445,24010,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.5058708,8.1781664,0,0,0,-999.83966,0,2,2,2021,11,0,40,37,1,0,0,11.048373,11.048373,.05,.05,0,0,0,0,0,2,1,1,0,4.1715913,0,46,61.6,-9,-9,6.666666666666667,1,1,0,0,10,5,5,1,459,1342139.5,936910.13,127245.59,0,0,0,1306.4574 +11009,13446,24011,24012,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,0,7.8071699,8.134737,42,-1,41.540539,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1946201,8.3459539,62.39,56.71,58.23,43.46,10,1,1,0,0,15,6,3,1,1391,1269162.5,904749,280703.19,0,0,0,2924.561 +11009,13446,24012,24011,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.025435,7.0683746,42,1,99.009399,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9518466,58.23,43.46,62.39,56.71,8.333333333333334,1,1,0,0,0,6,3,1,1391,1269162.5,904749,280703.19,0,0,0,2924.561 +11010,13447,24013,24014,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.9338846,7.9532146,10,1,67.959984,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.6710057,0,0,1,1,0,6.4882097,7.7759166,48.45,57.49,46.67,42.34,8.333333333333334,1,1,0,0,0,7,4,1,1646,1596393.8,495614,783336.63,0,0,0,4246.3018 +11010,13447,24014,24013,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,7.7197609,8.2471886,10,-1,-1.8663516,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5282121,7.7633953,46.67,42.34,48.45,57.49,8.333333333333334,1,1,0,0,0,7,4,1,1646,1596393.8,495614,783336.63,0,0,0,4246.3018 +11011,13448,24015,24016,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6067076,8.0692205,0,7,-2,46.145523,0,3,3,2021,7,0,30,30,1,0,0,9.2346401,9.2346401,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,0,1,1,0,0,11,12,4,1,363.5,1776259.9,826552.56,0,0,3037.7593,525.69873,2528.4788 +11011,13448,24016,24015,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.7370758,7.599164,7,2,-44.109329,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6864638,57.16,56.15,57.16,56.15,6.666666666666667,1,1,0,0,9,12,4,1,363.5,1776259.9,826552.56,0,0,3037.7593,525.69873,2528.4788 +11012,13449,24017,24018,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,7.6671877,7.9641232,0,6,0,63.870949,0,3,3,2021,8,0,44,42,1,0,0,5.9686303,5.9686303,0,0,.05,0,0,0,0,0,0,0,0,6.117002,0,51.24,58.84,48.98,57.22,8.333333333333334,1,1,0,0,8,2,5,1,263,679274.94,395403.38,135471.73,68508.883,0,0,4524.4063 +11012,13449,24018,24017,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,9.2285442,9.5688133,0,6,9,33.084412,0,2,2,2021,14,2,37,37,1,2,0,27.514135,27.514135,0,0,.05,0,0,0,0,0,0,0,0,6.4941607,0,48.98,57.22,51.24,58.84,8.333333333333334,1,1,0,0,8,2,5,1,263,679274.94,395403.38,135471.73,68508.883,0,0,4524.4063 +11013,13450,24019,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6248674,6.3651843,0,0,-1089.9713,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.874666,6.903017,54.17,33,-9,-9,10,3,4,0,0,0,8,2,1,483,535156.69,151940.27,331401.66,0,0,0,820.14813 +11014,13451,24020,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,2,0,0,0,0,0,-988.9834,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.47775403,0,46,23.63,-9,-9,6.666666666666667,1,1,0,0,2,5,1,0,1788,181070.89,0,0,0,0,22.562475,608.35248 +11015,13452,24021,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,8.000659,8.2409163,0,0,0,-1056.8661,0,2,2,2021,11,0,37,53,1,0,0,8.6820154,8.6820154,.05,.05,.05,0,0,0,0,27,0,0,0,0,0,34.66,52.21,-9,-9,5,1,1,0,0,7,2,4,0,250,67938.273,54597.457,0,0,2924.822,0,1075.6024 +11015,13453,24022,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,1,7.7558851,8.1515408,0,0,0,-886.45258,-9,-9,-9,2021,17,6,37,0,1,6,0,8.9802599,8.9802599,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.43,31.26,-9,-9,1.666666666666667,1,1,0,0,4,2,3,0,1120,-156318.81,20233.805,0,0,12595.032,0,1609.7273 +11016,13454,24023,-9,-9,-9,1,0,86,0,0,0,2,2,-9,0,4,0,6.7144299,7.0829139,0,0,-990.26862,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.29611492,6.7505436,52.58,44.5,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,2144,-104154.09,-56993.176,0,0,0,0,1352.0522 +11017,13455,24024,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,2,0,6.5929155,6.3877716,0,0,-1124.0702,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4297371,6.3813276,49.8,36.69,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,976,387407.38,81974.031,82251.023,0,0,0,298.78381 +11018,13456,24025,24027,-9,-9,1,1,42,0,3,0,2,2,-9,0,2,8.6162214,8.2554588,0,13,11,4.8641791,0,2,3,2021,27,11,38,38,1,11,0,11.756035,11.756035,.05,.05,0,0,0,0,0,14.5,1,1,0,.36824012,0,19.74,57.58,34.64,15.66,3.333333333333333,1,1,0,0,9,9,3,0,710.33331,290477.94,-5841.0762,334365.16,188072.14,0,0,3539.8347 +11018,13456,24026,-9,24027,24025,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-996.14917,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,710.33331,290477.94,-5841.0762,334365.16,188072.14,0,0,3539.8347 +11018,13456,24027,24025,-9,-9,1,0,31,0,3,0,2,2,-9,0,1,7.2882261,7.5914831,4.1486039,13,-11,-149.88071,0,2,1,2021,19,6,14,12,1,6,0,11.895995,11.895995,.05,.05,0,0,0,0,0,27,1,1,0,4.0035691,0,34.64,15.66,19.74,57.58,3.333333333333333,1,1,0,0,8,9,3,0,710.33331,290477.94,-5841.0762,334365.16,188072.14,0,0,3539.8347 +11019,13457,24028,-9,24030,24029,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.73895,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24029,24030,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,7.939187,7.5321269,0,17,4,-10.301177,0,3,3,2021,7,0,40,40,1,0,0,7.369133,7.369133,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.33,53.46,6.666666666666667,1,1,0,0,11,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24030,24029,-9,-9,1,0,32,0,3,0,3,3,-9,0,3,6.7892232,6.6539645,0,17,-4,-54.265659,0,2,2,2021,7,0,20,20,1,0,0,5.7214189,5.7214189,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,58.15,52.91,6.666666666666667,1,1,0,0,2,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24031,-9,24030,24029,1,0,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1058.8278,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11019,13457,24032,-9,24030,24029,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1025.9341,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,3,1,1263.8,67675.43,69788.844,75086.891,62126.676,1030.8184,-667.34863,2286.6057 +11020,13458,24033,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,8.4329948,8.4557552,0,0,0,-891.77325,0,2,2,2021,11,0,45,37,1,0,0,11.483626,11.483626,.05,.05,0,0,0,0,.0054526832,0,0,0,0,2.8913305,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,10,2,5,0,2173,198558.88,52407.582,0,0,0,0,1672.1279 +11021,13459,24034,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0865669,8.6507893,0,0,0,-1099.198,0,2,2,2021,8,0,41,40,1,0,0,16.512009,16.512009,0,0,0,0,0,0,0,0,0,0,0,2.8708618,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,548,-56553.434,0,0,0,0,0,3067.4358 +11022,13460,24035,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,5.5983372,5.6422143,0,0,-869.14343,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.7208517,7.919497,24.719379,0,1,1,0,0,5.5815496,52.42,37.76,-9,-9,10,1,1,0,0,0,6,2,1,523,254065.59,30026.094,133677.42,0,0,0,729.83063 +11023,13461,24036,24037,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,5.882081,5.6795554,46,4,52.247879,-9,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7854171,49.54,53.32,52.05,36.56,8.333333333333334,1,1,0,0,8,9,2,1,1725,1043310.9,287348.63,722159.88,0,2138.9668,0,970.69196 +11023,13461,24037,24036,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,6.5566902,6.5785995,0,45,-4,-130.50554,-9,-9,3,2021,11,0,35,0,1,0,0,2.6187375,2.6187375,0,0,0,0,0,0,0,0,1,1,0,0,0,52.05,36.56,49.54,53.32,10,1,1,0,0,10,9,2,1,1725,1043310.9,287348.63,722159.88,0,2138.9668,0,970.69196 +11024,13462,24038,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,5.7045007,5.1356711,0,0,-1033.7268,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5819368,5.4895687,36.85,50.58,-9,-9,5,1,1,0,0,0,9,2,1,286,1070076.1,0,702163.31,0,0,0,1786.5874 +11025,13463,24039,24040,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.0627537,7.0381808,0,7,-4,5.26965,0,-9,-9,2021,11,1,28,27,1,1,0,5.9117422,5.9117422,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.84,18.76,44.64,29.82,3.333333333333333,1,1,0,1,6,7,4,0,328,201971.44,237380.25,262432.5,170887.78,1851.5325,-105.67612,2635.7886 +11025,13463,24040,24039,-9,-9,1,1,49,0,1,0,1,1,-9,0,2,8.6090708,8.4714012,0,11,4,-59.115246,0,-9,-9,2021,22,10,39,39,1,10,0,17.574125,17.574125,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.64,29.82,49.84,18.76,5,1,1,0,1,11,7,4,0,328,201971.44,237380.25,262432.5,170887.78,1851.5325,-105.67612,2635.7886 +11025,13463,24041,-9,24039,24040,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-888.93457,-9,3,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,7,4,0,328,201971.44,237380.25,262432.5,170887.78,1851.5325,-105.67612,2635.7886 +11025,13464,24042,-9,24039,24040,1,0,18,0,1,1,2,0,0,0,2,0,0,0,0,0,-1034.4042,-9,3,1,2021,29,11,0,0,2,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.73,46.55,-9,-9,1.666666666666667,1,1,0,0,0,7,2,0,172,-149918.22,0,0,0,0,0,0 +11026,13465,24043,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.5666018,8.3906288,0,0,0,-1029.2603,0,2,2,2021,12,2,39,39,1,2,0,16.601948,16.601948,.05,.05,0,0,0,0,0,0,0,0,0,.62988323,0,41.66,59.42,-9,-9,8.333333333333334,1,1,0,0,9,12,5,0,552,575411.44,230639.98,0,0,9902.2451,-231.25009,1797.1593 +11027,13466,24044,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,5.1701956,5.263463,0,0,-1022.3469,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,6.86797,0,0,1,1,0,0,5.5308437,40.65,36.09,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,612,139841.22,-68410.625,94402.141,0,0,0,882.12195 +11028,13467,24045,24046,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.4481249,9.3517151,0,9,-13,8.2353592,0,1,2,2021,27,11,82,52,1,11,0,12.010448,12.010448,0,0,0,0,0,0,0,0,0,0,0,.25499791,0,30.13,56.51,54.79,55.86,3.333333333333333,1,1,0,0,11,7,5,1,468,2792357,1001141.5,1289454.9,0,0,0,6086.0337 +11028,13467,24046,24045,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.1504889,7.9359288,20,13,59.9389,0,1,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2463732,7.983747,54.79,55.86,30.13,56.51,8.333333333333334,1,1,0,0,10,7,5,1,468,2792357,1001141.5,1289454.9,0,0,0,6086.0337 +11029,13468,24047,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.453526,6.5749474,0,0,-991.71301,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,8.780654,6.6738653,66.869469,0,1,1,0,0,6.7348652,52,45,-9,-9,8,1,1,0,0,0,10,2,0,471,509292.81,67051.219,347534.69,0,0,385.74335,2232.7119 +11030,13469,24048,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5044403,8.1748171,0,0,0,-891.61438,0,3,3,2021,7,0,50,50,1,0,0,11.283761,11.283761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.86,50.49,-9,-9,8.333333333333334,1,1,0,0,8,10,5,0,226,2973488.3,2980576.8,186497,0,0,0,1978.8457 +11031,13470,24049,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,6.8711677,7.649416,7.4364738,0,0,-1078.9934,0,2,2,2021,12,2,16,16,1,2,0,6.2370839,6.2370839,0,0,0,0,0,0,0,0,1,1,0,7.4976072,7.2548418,64.40000000000001,36.46,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,499,544851.19,193643.42,136367.92,-1494.6863,0,0,947.85077 +11032,13471,24050,-9,-9,-9,1,0,42,0,1,0,2,2,1,0,3,0,0,0,0,0,-968.38281,-9,2,3,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.12,56.28,-9,-9,5,1,1,1,1,10,9,1,0,776,0,0,0,0,0,0,1144.6523 +11032,13471,24051,-9,24050,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.08179,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,1,0,776,0,0,0,0,0,0,1144.6523 +11033,13472,24052,24053,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,6.7474284,6.714684,0,31,-8,9.6567373,0,2,3,2021,6,0,40,40,1,0,0,2.1513267,2.1513267,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.21,49.46,61.84,41.58,6.666666666666667,1,1,0,0,12,12,2,1,763,87250.094,23170.314,116000.56,0,36294.602,0,553.46216 +11033,13472,24053,24052,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,6.1232815,5.8249621,0,31,8,42.978157,0,2,2,2021,7,0,60,60,1,0,0,.7767151,.7767151,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.84,41.58,54.21,49.46,1.666666666666667,1,1,0,0,11,12,2,1,763,87250.094,23170.314,116000.56,0,36294.602,0,553.46216 +11033,13473,24054,-9,24052,24053,1,1,26,0,0,0,2,2,-9,0,4,8.4811411,8.5922852,0,0,0,-995.5202,0,2,2,2021,10,0,41,40,1,0,1,15.114371,15.114371,.05,.05,0,0,0,0,0,0,0,0,0,1.5065643,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,7,12,5,1,521,171523.86,-127593.31,147155.41,68572.617,18887.131,442.88989,1681.2949 +11034,13474,24055,-9,24056,24057,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-865.86438,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,13,5,1,732.66669,2815715.5,1966612.1,407813.59,0,7308.9917,0,4727.9722 +11034,13474,24056,24057,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.3763123,8.4710503,0,6,-1,1.1517836,0,3,3,2021,7,0,38,37,1,0,0,12.93475,12.93475,.05,.05,0,0,0,0,0,0,1,1,0,.6292572,0,57.9,51.84,59.33,51.29,8.333333333333334,1,1,0,0,15,13,5,1,732.66669,2815715.5,1966612.1,407813.59,0,7308.9917,0,4727.9722 +11034,13474,24057,24056,-9,-9,1,1,52,0,1,0,1,1,-9,0,5,9.31672,8.9228802,0,6,1,-17.152206,0,2,2,2021,6,0,40,40,1,0,0,19.40547,19.40547,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,59.33,51.29,57.9,51.84,8.333333333333334,1,1,0,0,15,13,5,1,732.66669,2815715.5,1966612.1,407813.59,0,7308.9917,0,4727.9722 +11034,13475,24058,-9,24056,24057,1,1,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1069.2665,-9,1,1,2021,6,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.5,51.02,-9,-9,10,1,1,0,0,1,13,1,1,364,0,0,0,0,0,0,0 +11035,13476,24059,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,0,0,-965.30426,0,-9,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.62,44.58,-9,-9,10,1,1,0,0,0,7,1,0,163,73337.328,0,143727.92,0,0,0,989.69501 +11036,13477,24060,24061,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,0,0,12,7,108.3891,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6738629,0,54.39,44.26,57.16,56.15,10,1,1,0,0,13,7,2,1,1013,215581.72,188553.08,286331.25,0,0,194.45494,3773.7002 +11036,13477,24061,24060,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8928933,7.1286578,12,-7,-4.7161651,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1133571,57.16,56.15,54.39,44.26,10,1,1,0,0,0,7,2,1,1013,215581.72,188553.08,286331.25,0,0,194.45494,3773.7002 +11037,13478,24062,24064,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.299293,6.2240734,0,16,0,-15.330993,0,2,2,2021,6,0,10,8,1,0,0,6.9217734,6.9217734,0,0,0,0,0,0,0,0,1,1,0,7.6940675,0,57.16,56.15,57.33,53.46,8.333333333333334,3,4,0,0,11,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11037,13478,24063,-9,24062,24064,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.7667,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11037,13478,24064,24062,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,9.4502525,9.4774761,0,16,0,80.579681,0,2,1,2021,13,3,45,50,1,3,0,30.905338,30.905338,.05,.05,.05,0,0,0,0,0,1,1,0,8.1970139,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,11,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11037,13478,24065,-9,24062,24064,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.7103,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,455.25,677832.44,190189.75,378382.53,0,0,0,6364.1274 +11038,13479,24066,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1041.7892,0,2,2,2021,26,9,0,24,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.09,47.89,-9,-9,0,1,1,1,1,7,10,1,0,271,0,0,0,0,0,0,527.03223 +11039,13480,24067,24068,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,47,9,0,0,-9,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.55008286,0,52,45,52,47,8,1,1,0,0,5,4,2,1,491,258555.77,-28042.199,167332.66,0,0,0,669.6687 +11039,13480,24068,24067,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,0,0,48,0,0,0,3,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,4.2758703,0,52,47,52,45,7,1,1,0,0,4,4,2,1,491,258555.77,-28042.199,167332.66,0,0,0,669.6687 +11040,13481,24069,24070,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.4450254,7.5167866,40,-2,-97.409378,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.936933,7.2590332,57.16,56.15,57.51,47.91,10,1,1,0,0,0,10,4,1,806,1553706.1,698605.5,401860.5,0,0,0,4107.1006 +11040,13481,24070,24069,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.3382883,8.6771774,40,2,-137.87839,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,4.0651445,0,0,1,1,0,3.867444,8.2896376,57.51,47.91,57.16,56.15,8.333333333333334,1,1,0,0,0,10,4,1,806,1553706.1,698605.5,401860.5,0,0,0,4107.1006 +11041,13482,24071,24072,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,45,1,6.9347539,0,2,2,2021,12,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8621931,0,49,48,58.7,46.46,7,1,1,0,0,0,7,3,1,322,3338975,964777.25,1865441.5,0,0,0,1707.9717 +11041,13482,24072,24071,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.9921136,8.401474,6.301013,45,-1,-92.134949,0,3,3,2021,6,0,16,25,1,0,0,26.073496,26.073496,0,0,.05,0,0,0,0,2,1,1,0,0,6.812305,58.7,46.46,49,48,8.333333333333334,1,1,0,0,13,7,3,1,322,3338975,964777.25,1865441.5,0,0,0,1707.9717 +11042,13483,24073,-9,24075,24074,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1029.8149,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,1,3612,32815.504,-15664.238,188913.19,117623.08,6465.5806,0,2435.2566 +11042,13483,24074,24075,-9,-9,1,1,37,1,1,0,2,2,-9,0,2,8.2567396,8.4142895,0,5,4,57.970142,0,-9,-9,2021,25,10,37,38,1,10,0,10.225779,10.225779,.05,.05,0,0,0,0,0,0,1,1,0,3.5471752,0,25.6,60.21,44.04,57.07,3.333333333333333,1,1,0,0,9,10,4,1,3612,32815.504,-15664.238,188913.19,117623.08,6465.5806,0,2435.2566 +11042,13483,24075,24074,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,8.1129045,8.2423105,0,5,-4,22.572573,0,2,2,2021,12,2,23,37,1,2,0,14.776689,14.776689,.05,.05,0,0,0,0,0,0,1,1,0,3.0027583,0,44.04,57.07,25.6,60.21,8.333333333333334,1,1,0,0,8,10,4,1,3612,32815.504,-15664.238,188913.19,117623.08,6465.5806,0,2435.2566 +11043,13484,24076,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,5.9782419,5.9767375,0,0,-1034.26,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2822824,5.9191256,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,2,11,2,1,149,465250.5,190333.11,81769.82,0,5531.2109,0,1035.3502 +11044,13485,24077,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,3,9.2022915,9.42451,0,0,0,-1020.0982,0,1,2,2021,12,4,40,52,1,4,0,32.866951,32.866951,.05,.05,0,0,0,0,0,0,0,0,0,2.9827251,0,23.23,66.05,-9,-9,6.666666666666667,1,1,0,0,8,9,5,0,572,35924.285,125108.45,0,0,0,0,4311.9814 +11045,13486,24078,-9,24083,24080,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1057.1492,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24079,-9,24083,24080,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1095.1584,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24080,24083,-9,-9,1,1,40,0,4,0,1,1,-9,0,4,8.6179419,8.4884262,0,16,1,130.55936,0,2,1,2021,12,1,60,63,1,1,0,11.026649,11.026649,.05,.05,0,0,0,0,0,0,1,1,0,3.1544015,0,49.35,59.64,46.56,50.26,6.666666666666667,2,3,0,0,11,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24081,-9,24083,24080,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-961.46143,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24082,-9,24083,24080,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-942.54266,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11045,13486,24083,24080,-9,-9,1,0,39,0,4,0,2,2,-9,0,3,7.1627874,6.6767354,0,16,-1,-94.241997,0,-9,-9,2021,10,0,17,11,1,0,0,8.4746428,8.4746428,.05,.05,0,0,0,0,0,0,1,1,0,2.0839128,0,46.56,50.26,49.35,59.64,3.333333333333333,1,1,0,0,7,7,4,0,1024.8334,150504.59,38614.492,197784.59,84380.219,3177.4011,0,3275.126 +11046,13487,24084,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.664403,7.5632381,0,0,0,-922.71484,0,2,-9,2021,12,1,50,48,1,1,0,5.576489,5.576489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,6.666666666666667,1,1,0,0,9,9,3,0,216,258717.89,64346.629,0,0,0,160.44519,970.84314 +11046,13488,24085,24086,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,8.3303108,8.146637,0,9,-2,9.8708534,0,2,3,2021,22,9,42,37,1,9,0,13.871179,13.871179,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.34,54.24,36.42,44.54,6.666666666666667,1,1,0,0,10,9,4,0,1210,70442.789,110962.31,0,0,0,0,1597.549 +11046,13488,24086,24085,-9,-9,1,1,33,0,0,0,2,2,-9,1,2,0,0,0,9,2,52.338989,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.42,44.54,38.34,54.24,3.333333333333333,1,1,0,0,7,9,4,0,1210,70442.789,110962.31,0,0,0,0,1597.549 +11047,13489,24087,24088,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,5.137701,5.2160683,50,-4,53.013359,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,83.523636,0,0,1,1,0,5.4563789,5.3685679,52.26,21.19,45.98,56.3,8.333333333333334,1,1,0,0,0,4,2,1,377,-42609.523,74784.047,0,0,0,0,1447.1382 +11047,13489,24088,24087,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.3554835,5.6049862,50,4,78.59729,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.8430729,5.2132568,45.98,56.3,52.26,21.19,6.666666666666667,1,1,0,0,0,4,2,1,377,-42609.523,74784.047,0,0,0,0,1447.1382 +11048,13490,24089,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,1,6.9426794,7.0977859,0,0,0,-1129.6788,0,-9,-9,2021,17,5,20,19,1,5,0,5.918839,5.918839,0,0,0,0,0,0,0,0,1,1,0,0,0,43.61,41.22,-9,-9,3.333333333333333,1,1,0,1,5,2,2,1,1755.5,329589.38,105905.98,112202.91,0,0,0,1186.5535 +11048,13490,24090,-9,24089,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-991.84241,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.71,52.35,-9,-9,5,1,1,0,1,0,2,2,1,1755.5,329589.38,105905.98,112202.91,0,0,0,1186.5535 +11048,13491,24091,-9,24089,-9,1,1,20,0,1,0,2,2,-9,0,3,8.0693312,7.7002578,0,0,0,-997.68109,-9,2,-9,2021,12,0,40,0,1,0,1,6.4452887,6.4452887,0,0,0,0,0,0,0,0,1,1,0,0,0,42.04,56.46,-9,-9,3.333333333333333,1,1,0,1,1,2,4,1,1701,-129953.35,39981.77,0,0,29616.947,0,490.18893 +11049,13492,24092,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,5.0072942,5.5289416,0,0,-926.2193,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6173835,27.97,47.86,-9,-9,1.666666666666667,1,1,0,1,3,12,2,0,414,373707.91,72093.477,125306.92,0,0,3392.2449,689.48047 +11050,13493,24093,-9,-9,24096,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.3176,-9,-9,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11050,13493,24094,-9,-9,24096,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.33466,-9,-9,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11050,13493,24095,-9,-9,24096,1,1,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1015.7405,-9,-9,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.01,55.31,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11050,13493,24096,-9,-9,-9,1,1,68,0,3,0,3,3,-9,0,5,0,0,0,0,0,-1078.5142,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,9,2,0,582.5,158990.91,209864.75,0,0,0,0,1572.6573 +11051,13494,24097,24099,-9,-9,1,0,50,0,1,0,2,2,-9,0,5,9.2184162,8.9638195,0,16,1,25.168657,0,2,1,2021,0,0,7,7,1,0,0,151.36459,151.36459,.05,.05,0,0,0,0,0,0,1,1,0,10.311351,0,62.96,55.09,63.09,47.92,10,3,4,0,0,11,8,5,1,333.33334,1528246.5,1255725.4,267747.94,109445.7,0,3472.2261,11604.632 +11051,13494,24098,-9,24097,24099,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.2146,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,3,4,-9,0,0,8,5,1,333.33334,1528246.5,1255725.4,267747.94,109445.7,0,3472.2261,11604.632 +11051,13494,24099,24097,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.7487707,8.6190348,0,18,-1,97.900116,0,2,2,2021,6,0,36,37,1,0,0,22.796064,22.796064,.05,.05,0,0,0,0,0,0,1,1,0,1.18025,0,63.09,47.92,62.96,55.09,0,3,4,0,0,12,8,5,1,333.33334,1528246.5,1255725.4,267747.94,109445.7,0,3472.2261,11604.632 +11051,13495,24100,-9,24097,24099,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-890.10345,1,2,1,2021,6,0,0,12,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.16038954,0,48.87,58.55,-9,-9,8.333333333333334,3,4,0,0,2,8,1,1,465,0,0,0,0,0,0,-93.294052 +11052,13496,24101,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8271275,7.9223289,0,0,0,-1087.7853,0,2,-9,2021,12,0,35,40,1,0,0,10.391423,10.391423,.05,.05,0,0,0,0,0,0,1,0,1,0,0,36.03,55.74,-9,-9,1.666666666666667,1,1,0,0,12,4,4,0,1754,-238861.73,54977.547,3163.9863,15509.674,0,0,3191.9961 +11053,13497,24102,-9,24104,24103,1,0,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-843.90253,-9,2,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,57.05,-9,-9,8.333333333333334,1,1,0,0,0,1,4,1,671,219944.72,41565.41,273865.28,88654.852,9625.3516,6087.4033,2736.8777 +11053,13497,24103,24104,-9,-9,1,1,50,0,1,0,2,2,-9,0,2,7.8165584,7.7044129,0,10,2,-31.676672,0,2,-9,2021,13,3,41,37,1,3,0,7.3760047,7.3760047,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.02,44.64,44.26,59.43,6.666666666666667,1,1,0,0,11,1,4,1,671,219944.72,41565.41,273865.28,88654.852,9625.3516,6087.4033,2736.8777 +11053,13497,24104,24103,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,8.4961786,8.320549,0,10,-2,-10.94214,0,2,2,2021,12,2,30,30,1,2,0,17.562117,17.562117,0,0,0,0,0,0,0,0,1,1,0,0,0,44.26,59.43,54.02,44.64,6.666666666666667,1,1,0,0,11,1,4,1,671,219944.72,41565.41,273865.28,88654.852,9625.3516,6087.4033,2736.8777 +11054,13498,24105,24106,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.1866646,9.5562029,0,13,4,-36.379757,0,2,1,2021,30,11,72,70,1,11,0,21.76894,21.76894,.05,.05,0,0,0,0,0,0,1,1,0,7.9893756,0,19.84,56.31,55.19,54.26,3.333333333333333,1,1,0,0,12,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11054,13498,24106,24105,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,7.918601,8.0035601,0,13,-4,-85.125877,0,-9,-9,2021,11,0,12,16,1,0,0,24.75424,24.75424,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,19.84,56.31,8.333333333333334,1,1,0,0,12,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11054,13498,24107,-9,24106,24105,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.70886,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11054,13498,24108,-9,24106,24105,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.9039,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,720.75,691119.63,135723.91,593144.38,188026.75,0,0,4259.1621 +11055,13499,24109,-9,24112,24111,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-869.76532,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11055,13499,24110,-9,24112,24111,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.28809,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11055,13499,24111,24112,-9,-9,1,1,28,1,2,0,2,2,-9,0,3,8.2539463,7.8863435,0,4,-2,-9.1449575,0,-9,-9,2021,11,0,40,43,1,0,0,10.461013,10.461013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,46.61,56.93,3.333333333333333,1,1,0,0,12,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11055,13499,24112,24111,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,0,0,0,4,2,-128.28369,0,-9,-9,2021,13,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.61,56.93,46.08,57.2,5,1,1,1,0,9,5,3,1,1167.5,1610.3516,41477.273,0,0,7832.0908,851.8291,1927.0854 +11056,13500,24113,-9,-9,-9,1,0,38,1,3,0,1,1,-9,1,4,0,4.9656234,5.2122211,0,0,-865.40967,0,3,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9437008,0,35.95,61.84,-9,-9,5,1,1,0,0,0,6,2,0,994.66669,1065.6771,53751.289,0,0,945.37067,0,1353.5582 +11056,13500,24114,-9,24113,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.04242,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,2,0,994.66669,1065.6771,53751.289,0,0,945.37067,0,1353.5582 +11056,13500,24115,-9,24113,-9,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-991.93823,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,994.66669,1065.6771,53751.289,0,0,945.37067,0,1353.5582 +11056,13501,24116,-9,24113,-9,1,1,18,1,3,1,2,0,0,0,3,0,0,0,0,0,-836.0191,-9,1,-9,2021,13,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.44,55.47,-9,-9,6.666666666666667,1,1,0,0,1,6,1,0,6294,0,0,0,0,0,0,0 +11057,13502,24117,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,0,0,0,0,0,-967.6601,0,3,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.05,35.48,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,418,290766.63,186693.63,20485.438,82559.859,0,0,1161.5179 +11057,13502,24118,-9,24117,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1038.6219,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,418,290766.63,186693.63,20485.438,82559.859,0,0,1161.5179 +11058,13503,24119,24120,-9,-9,1,1,34,1,3,0,2,2,-9,0,3,7.1182656,7.1593142,0,5,5,-83.608917,0,-9,-9,2021,6,1,24,24,1,1,0,6.0811296,6.0811296,0,0,0,0,0,0,0,27,1,1,0,0,0,38.17,41.83,54.94,53.18,8.333333333333334,1,1,0,0,7,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24120,24119,-9,-9,1,0,29,1,3,0,2,2,-9,0,3,0,0,0,5,-5,-17.986771,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.94,53.18,38.17,41.83,8.333333333333334,1,1,0,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24121,-9,24120,24119,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.9639,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24122,-9,24120,24119,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.8142,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11058,13503,24123,-9,24120,24119,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1119.9678,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,788,105101.08,38539.688,0,0,0,1103.8242,2137.2852 +11059,13504,24124,24125,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,7.290894,7.0153275,61,0,-35.37112,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,2.3309147,0,0,1,1,0,1.0926088,7.1793671,53,46,51,46,8,1,1,0,0,0,6,2,1,547.5,496458.75,191388.11,96046.328,0,0,0,1379.3591 +11059,13504,24125,24124,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,61,0,62.570862,0,2,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,53,46,7,1,1,0,0,0,6,2,1,547.5,496458.75,191388.11,96046.328,0,0,0,1379.3591 +11060,13505,24126,-9,24128,24129,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1053.2947,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11060,13505,24127,-9,24128,24129,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1108.446,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11060,13505,24128,24129,-9,-9,1,0,35,1,3,0,2,2,-9,0,4,7.4675784,7.3547664,0,17,-10,139.10304,-9,3,3,2021,11,0,30,0,1,2,0,5.4725957,5.4725957,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,2,3,0,0,1,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11060,13505,24129,24128,-9,-9,1,1,45,1,3,0,1,1,-9,0,4,0,0,0,17,10,-26.144339,-9,2,2,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,2,3,1,0,0,8,2,0,731.25,146054.36,68513.477,238160.81,70804.25,0,0,1488.3564 +11061,13506,24130,24131,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.7870903,8.3585386,0,6,-1,-94.020782,0,-9,-9,2021,11,1,46,46,1,1,0,13.139281,13.139281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.04,62.95,54.79,55.86,8.333333333333334,1,1,0,0,13,6,5,1,1523.5,512941.44,240982.78,259924.56,147776.84,0,0,4280.9644 +11061,13506,24131,24130,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.4788837,8.6053896,0,6,1,-62.671268,0,-9,-9,2021,6,0,38,39,1,0,0,12.818419,12.818419,.05,.05,0,0,0,0,0,0,0,0,0,2.3134162,0,54.79,55.86,43.04,62.95,8.333333333333334,1,1,0,0,9,6,5,1,1523.5,512941.44,240982.78,259924.56,147776.84,0,0,4280.9644 +11062,13507,24132,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.4093676,8.0206642,7.8082986,0,0,-950.14166,0,2,2,2021,9,0,21,41,1,0,0,6.9795141,6.9795141,.05,.05,0,1,0,0,0,0,0,0,0,3.7625623,7.3957305,46.2,56.93,-9,-9,10,1,1,0,0,15,7,4,1,554,275201.31,138191.48,268835.06,0,0,0,1776.5887 +11063,13508,24133,24134,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,7.2611647,7.3146706,4,0,-80.422707,-9,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.291368,56.09,38.73,47.36,53.68,8.333333333333334,1,1,0,0,0,6,3,1,317,300939.53,245155.97,195960.64,0,0,1988.4,1479.6857 +11063,13508,24134,24133,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.0024781,5.9562778,4,9,15.137787,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5184665,6.0115719,47.36,53.68,56.09,38.73,8.333333333333334,1,1,0,0,11,6,3,1,317,300939.53,245155.97,195960.64,0,0,1988.4,1479.6857 +11064,13509,24135,24136,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,0,0,0,7,-7,0,0,2,2,2021,10,0,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,57,36.27,60.6,7,1,1,1,0,8,8,1,1,912,92400.375,0,0,0,0,0,1137.308 +11064,13509,24136,24135,-9,-9,1,0,43,0,1,0,3,3,-9,1,3,0,0,0,7,7,0,0,2,2,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,36.27,60.6,51,57,5,3,4,0,0,0,8,1,1,912,92400.375,0,0,0,0,0,1137.308 +11064,13509,24137,-9,24136,24135,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-862.21637,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,1,1,912,92400.375,0,0,0,0,0,1137.308 +11065,13510,24138,24139,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.389327,7.8786545,32,1,80.079643,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.281255,7.088294,47.62,56.48,57.16,56.15,8.333333333333334,1,1,0,0,8,13,4,1,290.5,2514346,1518232.4,561259.38,0,0,0,2441.2253 +11065,13510,24139,24138,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.1197901,8.0362444,0,32,-1,-144.56656,0,3,3,2021,8,0,25,30,1,0,0,16.214275,16.214275,.05,.05,0,0,0,0,0,0,0,0,0,5.0509801,0,57.16,56.15,47.62,56.48,8.333333333333334,1,1,0,0,15,13,4,1,290.5,2514346,1518232.4,561259.38,0,0,0,2441.2253 +11065,13511,24140,-9,24138,24139,1,0,25,0,0,0,1,1,1,0,5,6.9674473,7.0537448,0,0,0,-1218.0724,-9,2,1,2021,4,1,24,0,1,1,1,4.0796571,4.0796571,0,0,0,0,0,0,0,0,0,0,0,0,0,56.85,53.73,-9,-9,10,1,1,0,0,5,13,2,1,906,207497.88,0,0,0,-2152.7351,0,444.31076 +11065,13512,24141,-9,24138,24139,1,0,20,0,0,0,2,2,-9,0,4,7.1826801,7.3921356,0,0,0,-1204.4231,0,2,1,2021,10,0,20,0,1,0,1,6.6125126,6.6125126,0,0,0,0,0,0,0,0,0,0,0,0,0,51.62,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,91,-75647.172,-62482.621,0,0,0,0,1206.77 +11066,13513,24142,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-935.51721,0,3,3,2021,24,10,0,0,4,10,0,0,0,0,0,0,1,12.294024,151.62576,123.88547,120,1,1,0,4.3798075,0,49.33,16.96,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,1171,259825.88,-10830.565,138806.17,0,0,0,893.65515 +11067,13514,24143,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.3983183,7.2161365,0,0,0,-1137.2579,-9,2,2,2021,4,0,30,0,1,0,0,6.4511509,6.4511509,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,7,9,3,0,87,-7608.2729,-133345.11,0,0,0,0,1115.2195 +11068,13515,24144,24145,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.776947,9.176878,0,6,0,26.274567,0,2,3,2021,9,0,45,50,1,0,0,15.699786,15.699786,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,47.94,37.73,8.333333333333334,1,1,0,0,7,11,5,1,609.5,564729.38,267592.94,288055.06,45289.805,8102.2197,0,4049.5313 +11068,13515,24145,24144,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.0609884,8.3018684,0,6,0,21.854916,0,2,3,2021,11,0,47,47,1,0,0,8.6275444,8.6275444,0,0,0,0,0,0,0,0,1,1,0,0,0,47.94,37.73,51.24,58.84,6.666666666666667,1,1,0,0,7,11,5,1,609.5,564729.38,267592.94,288055.06,45289.805,8102.2197,0,4049.5313 +11068,13516,24146,-9,24145,24144,1,0,22,0,0,0,2,2,-9,0,4,7.4638748,7.5543714,0,0,0,-896.63068,0,2,2,2021,11,0,35,36,1,2,1,9.405612,9.405612,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,11,3,1,1938,227343.45,0,0,0,0,0,2230.8997 +11069,13517,24147,24148,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,8.1573696,8.1574402,0,22,2,7.9312983,0,3,3,2021,13,1,43,45,1,1,0,10.073122,10.073122,0,0,0,0,0,0,0,7,0,0,0,0,0,42.73,54.62,46.08,57.2,5,1,1,0,0,10,1,4,1,491,851746.38,133706.09,293760.19,0,0,0,2883.3149 +11069,13517,24148,24147,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,7.994204,8.3757448,0,22,-2,-106.80363,0,2,2,2021,9,0,41,37,1,0,0,7.837913,7.837913,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,46.08,57.2,42.73,54.62,8.333333333333334,1,1,0,0,7,1,4,1,491,851746.38,133706.09,293760.19,0,0,0,2883.3149 +11070,13518,24149,-9,-9,-9,1,0,35,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1124.7264,0,3,-9,2021,25,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32,30,-9,-9,0,4,2,1,1,0,8,1,0,115,-82590.195,0,0,0,0,0,1138.8118 +11071,13519,24150,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-893.37714,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.90672612,0,63.09,47.92,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,4619,87458.961,0,0,0,0,0,696.30273 +11072,13520,24151,24152,-9,-9,1,1,50,0,0,0,2,2,-9,1,2,0,0,0,6,-23,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,54,51,5,1,1,0,0,0,4,1,0,614.5,-6625.5078,0,0,0,0,0,1274.9072 +11072,13520,24152,24151,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,6,23,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54,51,39.98,36.02,5,1,1,0,0,0,4,1,0,614.5,-6625.5078,0,0,0,0,0,1274.9072 +11073,13521,24153,-9,-9,-9,1,0,58,0,1,0,2,2,-9,0,3,7.3043556,6.8213415,0,0,0,-1148.8376,0,3,3,2021,8,1,18,21,1,1,0,8.0704184,8.0704184,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.8,42.45,-9,-9,6.666666666666667,1,1,0,0,6,12,2,0,1682.5,472389.97,645697.75,0,0,0,0,3694.1494 +11073,13521,24154,-9,24153,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1169.4447,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,2,0,1682.5,472389.97,645697.75,0,0,0,0,3694.1494 +11073,13522,24155,-9,24153,-9,1,1,22,0,1,0,2,2,0,0,4,0,0,0,0,0,-1003.3871,-9,2,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,6.666666666666667,1,1,0,0,6,12,1,0,194,171020.52,0,0,0,0,0,-33.545616 +11073,13523,24156,-9,24153,-9,1,1,20,0,1,0,2,2,-9,0,4,0,0,0,0,0,-989.9726,1,2,-9,2021,20,8,0,19,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.0068429471,0,30.3,63.25,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,209,60915.809,0,0,0,0,0,71.768539 +11073,13524,24157,-9,24153,-9,1,1,25,0,1,0,1,1,0,0,3,0,0,0,0,0,-898.41058,-9,2,1,2021,14,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.98,59.7,-9,-9,3.333333333333333,1,1,0,0,9,12,1,0,641,0,0,0,0,0,0,864.31708 +11074,13525,24158,24159,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.5282464,7.3500552,0,13,-3,-83.325676,0,2,2,2021,7,0,50,50,1,0,0,3.945673,3.945673,0,0,0,0,0,0,0,0,1,1,0,0,0,52.72,55.58,40.83,59.68,8.333333333333334,1,1,0,0,5,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11074,13525,24159,24158,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.1313486,8.2045126,0,13,3,-139.39551,0,2,2,2021,7,0,40,41,1,0,0,8.3349848,8.3349848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.83,59.68,52.72,55.58,6.666666666666667,1,1,0,0,9,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11074,13525,24160,-9,24158,24159,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.44769,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11074,13525,24161,-9,24158,24159,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.93658,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,3,1,584.75,73607.227,-31304.156,0,0,0,0,2551.0117 +11075,13526,24162,24163,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,2,10,92.967575,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.5544364,6.2316132,12.397707,7,1,1,0,0,0,64.01000000000001,32.53,37.03,25.08,8.333333333333334,1,1,0,0,0,11,2,1,588.5,880988.13,461584.72,168101.94,0,-258.56644,0,1193.2256 +11075,13526,24163,24162,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,7.3115573,7.5088925,2,-10,-47.873543,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,2.4079094,0,29.466652,0,1,1,0,5.3948565,7.260035,37.03,25.08,64.01000000000001,32.53,8.333333333333334,1,1,0,0,0,11,2,1,588.5,880988.13,461584.72,168101.94,0,-258.56644,0,1193.2256 +11076,13527,24164,24165,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.9806328,6.1677117,50,3,24.286987,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,34.563828,0,0,1,1,0,0,6.1609359,53.45,31.12,61.04,39.41,10,1,1,0,0,0,10,2,0,625.5,395555.63,-36600.664,0,0,0,0,1702.0991 +11076,13527,24165,24164,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,50,-3,49.513882,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,61.04,39.41,53.45,31.12,10,1,1,0,0,4,10,2,0,625.5,395555.63,-36600.664,0,0,0,0,1702.0991 +11077,13528,24166,24167,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.5555105,8.5920038,0,10,-6,-41.940655,0,2,2,2021,15,5,39,35,1,5,0,16.169174,16.169174,.05,.05,0,0,0,0,0,14.5,0,0,0,4.086463,0,35.98,56.54,38.24,63.73,8.333333333333334,1,1,0,0,12,12,5,1,1143,347672.69,210471.94,87213.508,40772.098,5672.9404,0,3461.2827 +11077,13528,24167,24166,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,8.5145988,8.3420467,0,10,6,-125.07199,0,3,3,2021,19,8,47,37,1,8,0,12.519134,12.519134,0,0,0,0,0,0,0,0,0,0,0,3.8544798,0,38.24,63.73,35.98,56.54,3.333333333333333,1,1,0,0,12,12,5,1,1143,347672.69,210471.94,87213.508,40772.098,5672.9404,0,3461.2827 +11078,13529,24168,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.2101388,5.5693069,0,0,-1057.0868,0,3,3,2021,12,0,0,37,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.3814983,48.69,41.09,-9,-9,5,1,1,0,0,11,9,2,1,591,151326.03,0,138384.52,0,0,0,1608.0991 +11079,13530,24169,24170,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,0,9.6320314,9.5448408,34,-12,45.91066,0,3,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3236361,9.1543283,46.53,61.33,43.73,47.21,8.333333333333334,1,1,0,0,10,8,5,1,883.5,4657936.5,1511509.3,655857.56,0,0,0,17510.602 +11079,13530,24170,24169,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,8.6030674,9.1856909,8.6971273,11,12,49.932079,0,-9,-9,2021,13,2,20,20,1,2,0,28.644239,28.644239,0,0,0,0,0,0,0,0,1,1,0,7.8156328,9.114852,43.73,47.21,46.53,61.33,8.333333333333334,1,1,0,0,12,8,5,1,883.5,4657936.5,1511509.3,655857.56,0,0,0,17510.602 +11080,13531,24171,-9,24176,24172,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-985.83423,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24172,24176,-9,-9,1,1,36,1,3,0,2,2,-9,0,2,7.8070488,8.0551014,0,8,-3,-27.74427,0,-9,-9,2021,25,10,42,54,1,10,0,6.5020623,6.5020623,.05,.05,0,0,0,0,0,7,1,1,0,0,0,26.06,42.55,35.36,53.11,3.333333333333333,1,1,0,1,8,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24173,-9,24176,24172,1,1,13,1,3,1,3,0,-9,0,5,0,0,0,0,0,-999.9953,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24174,-9,24176,24172,1,0,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.2596,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24175,-9,24176,24172,1,1,16,1,3,0,2,2,1,0,4,0,0,0,0,0,-977.20898,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,2,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11080,13531,24176,24172,-9,-9,1,0,39,1,3,0,2,2,-9,0,3,0,0,0,8,3,8.033411,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.36,53.11,26.06,42.55,6.666666666666667,1,1,0,0,0,7,2,0,985,61089.043,-17236.313,129543.29,93140.813,0,0,1643.9771 +11081,13532,24177,24178,-9,-9,1,0,38,0,0,0,1,1,-9,0,2,9.0045128,8.9788666,0,7,-7,186.85559,0,2,1,2021,14,4,45,47,1,4,0,16.146811,16.146811,.05,.05,0,0,0,0,0,2,0,0,0,4.4011688,0,49.03,30.52,54.96,53.17,8.333333333333334,1,1,0,0,9,6,5,0,1199,175392.22,-64596.922,247825.63,56985.977,5014.1362,0,4861.4937 +11081,13532,24178,24177,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.6345911,8.5734015,0,7,7,-94.18177,0,3,2,2021,7,0,40,40,1,0,0,13.57803,13.57803,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.96,53.17,49.03,30.52,5,1,1,0,0,10,6,5,0,1199,175392.22,-64596.922,247825.63,56985.977,5014.1362,0,4861.4937 +11082,13533,24179,24180,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,2.8587885,2.9127688,0,8,-2,18.707657,0,-9,-9,2021,7,0,20,20,1,0,0,.092453443,.092453443,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.44,59.62,50,57,8.333333333333334,1,1,0,0,12,9,5,1,581.5,395019.31,68204.984,299656.94,128406.08,0,0,4473.4346 +11082,13533,24180,24179,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,9.1370258,9.2545023,0,8,2,-97.507332,0,-9,-9,2021,16,5,60,60,1,5,0,21.175619,21.175619,.05,.05,0,0,0,0,0,0,0,0,0,6.8564672,0,50,57,46.44,59.62,3.333333333333333,1,1,0,0,12,9,5,1,581.5,395019.31,68204.984,299656.94,128406.08,0,0,4473.4346 +11083,13534,24181,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,8.0988531,7.9342813,0,0,-1074.8584,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8890705,7.6692457,57.83,39.53,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,290,523849.47,282055.59,503136.31,0,0,0,3219.0891 +11084,13535,24182,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.8814178,7.0066214,0,0,-986.39081,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4648209,6.912221,60.12,54.8,-9,-9,10,1,1,0,0,0,6,2,1,268,376303.28,225622.38,68347.211,0,0,0,2009.7997 +11085,13536,24183,24184,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.7203989,7.7716541,0,5,-2,146.89537,0,-9,-9,2021,21,9,24,24,1,9,0,11.141418,11.141418,.05,.05,0,0,0,0,0,0,0,0,0,2.783627,0,29.87,49.76,45.56,47.83,3.333333333333333,1,1,0,0,6,5,4,1,309,136707.72,58113.125,49529.773,63453.738,1259.4253,0,2968.3848 +11085,13536,24184,24183,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,7.9781542,8.21486,0,5,2,-22.469898,-9,-9,-9,2021,12,0,40,0,1,0,0,8.5267744,8.5267744,.05,.05,0,0,0,0,0,0,0,0,0,3.1855135,0,45.56,47.83,29.87,49.76,8.333333333333334,1,1,0,0,6,5,4,1,309,136707.72,58113.125,49529.773,63453.738,1259.4253,0,2968.3848 +11086,13537,24185,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,5.4096603,5.3129983,0,0,-999.39929,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4222045,41.34,56.62,-9,-9,10,1,1,0,0,0,1,2,1,624,215099.25,0,245731.25,0,2929.6658,4066.272,1344.0164 +11087,13538,24186,-9,24187,-9,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.09863,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,987.5,-31210.227,-64809.336,0,0,0,0,910.78589 +11087,13538,24187,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,6.7803273,6.7783136,0,0,0,-1071.2443,0,3,-9,2021,11,0,20,9,1,0,0,4.5877428,4.5877428,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,5,1,1,0,0,6,6,2,0,987.5,-31210.227,-64809.336,0,0,0,0,910.78589 +11087,13539,24188,-9,24187,-9,1,0,19,0,1,0,2,2,-9,0,4,7.6835694,7.698215,5.7654071,0,0,-889.45563,-9,2,-9,2021,12,0,28,0,1,0,1,11.850304,11.850304,.05,.05,0,0,0,0,0,0,1,0,1,5.3159266,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,3,6,3,0,334,13383.998,36565.738,41256.469,70177.484,0,-573.77631,1417.6404 +11088,13540,24189,24190,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,8.021986,8.1924858,0,25,14,-77.294128,0,3,3,2021,32,12,43,43,1,12,0,8.2932386,8.2932386,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.77,38.64,28.94,58.07,3.333333333333333,1,1,0,0,15,5,4,0,365.5,618360.06,334824.06,203455.13,13971.217,2329.3406,20294.953,2378.7319 +11088,13540,24190,24189,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.293293,8.1362009,0,25,-14,5.7368317,0,2,3,2021,30,11,40,40,1,11,0,9.872468,9.872468,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.94,58.07,36.77,38.64,1.666666666666667,1,1,0,0,15,5,4,0,365.5,618360.06,334824.06,203455.13,13971.217,2329.3406,20294.953,2378.7319 +11088,13541,24191,-9,24190,24189,1,0,21,0,0,0,2,2,-9,0,3,7.6212339,7.7574892,0,0,0,-837.88422,0,3,2,2021,22,9,31,36,1,9,1,9.9705944,9.9705944,0,0,0,0,0,0,0,0,1,1,0,0,0,33.5,56.52,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,266,-16309.454,0,0,0,0,-279.47806,1067.7687 +11088,13542,24192,-9,24190,24189,1,0,18,0,0,0,2,2,1,0,3,7.1494436,6.899272,0,0,0,-985.87982,-9,3,2,2021,26,12,25,0,1,12,1,3.7052441,3.7052441,0,0,0,0,0,0,0,0,1,1,0,0,0,22.65,64.05,-9,-9,3.333333333333333,1,1,0,0,2,5,2,0,1472,96067.703,0,0,0,0,0,576.44885 +11089,13543,24193,24194,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,0,7.7149673,7.8461633,34,-14,-62.934238,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1468987,7.7051105,62.39,56.71,49.47,34.02,10,1,1,0,0,0,9,4,1,228,1748219.9,456094.53,312379.81,0,0,0,5767.333 +11089,13543,24194,24193,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.7783265,7.769474,33,14,31.19631,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3609343,7.8926539,49.47,34.02,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,228,1748219.9,456094.53,312379.81,0,0,0,5767.333 +11090,13544,24195,-9,-9,-9,1,0,48,0,1,0,1,1,-9,0,3,7.9583063,8.364397,0,0,0,-1006.0406,0,2,2,2021,11,0,65,12,1,0,0,7.1153178,7.1153178,0,0,0,0,0,0,0,0,1,1,0,0,0,43.03,53.23,-9,-9,5,4,2,0,0,9,6,4,1,491.5,443596.31,62394.297,232313.42,66818.109,0,0,1913.9514 +11090,13544,24196,-9,24195,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.9792,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,4,1,491.5,443596.31,62394.297,232313.42,66818.109,0,0,1913.9514 +11091,13545,24197,-9,24199,24200,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-900.3335,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24198,-9,24199,24200,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1057.2451,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.96,51,-9,-9,10,1,1,0,0,0,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24199,24200,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,7.9309597,8.451438,0,5,-4,37.830746,0,-9,-9,2021,7,0,37,50,1,0,0,9.1341591,9.1341591,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,42.99,48.84,8.333333333333334,1,1,0,0,9,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24200,24199,-9,-9,1,1,45,0,1,0,2,2,-9,0,3,8.291647,8.2467461,0,5,4,49.760487,0,-9,-9,2021,17,5,41,35,1,5,0,11.901711,11.901711,0,0,0,0,0,0,0,0,1,1,0,0,0,42.99,48.84,54.1,59.11,6.666666666666667,1,1,0,0,9,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13545,24201,-9,-9,24200,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1064.0792,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,3,1,775.59998,175690.31,48401.59,218226.95,121343.52,0,0,3222.8147 +11091,13546,24202,-9,24199,24200,1,0,22,0,1,0,2,2,-9,0,5,7.2788897,7.3297696,0,0,0,-1036.1926,0,2,2,2021,7,0,32,37,1,0,1,5.0684566,5.0684566,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.83,46,-9,-9,8.333333333333334,1,1,0,1,3,11,3,1,363,-234668.23,-50494.563,0,0,0,0,787.68146 +11092,13547,24203,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,4,0,6.9798698,7.1645865,0,0,-1014.7242,0,2,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,.84204894,0,16.880142,0,1,1,0,6.6350288,6.8024502,51.79,43.42,-9,-9,10,1,1,0,0,0,9,2,1,772,339832.75,68392.031,171393.05,0,0,0,1151.384 +11093,13548,24204,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,1,8.7952747,8.96138,7.1013875,0,0,-1034.5242,0,2,2,2021,29,12,26,0,1,12,0,22.617714,22.617714,.05,.05,.05,0,0,0,0,2,0,0,0,6.6470218,7.2872915,35.22,32.79,-9,-9,0,1,1,0,1,14,7,5,1,3980,324066.75,250641.63,224398.55,72518.367,0,0,4458.2871 +11094,13549,24205,-9,24208,24207,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.45355,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11094,13549,24206,-9,24208,24207,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.22852,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11094,13549,24207,24208,-9,-9,1,1,43,0,2,0,2,2,-9,0,1,0,0,0,4,2,0,-9,2,3,2021,29,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7168031,0,15.94,44.42,49.04,55.86,1.666666666666667,1,1,0,0,10,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11094,13549,24208,24207,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,4,-2,0,-9,3,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1512232,0,49.04,55.86,15.94,44.42,8.333333333333334,1,1,0,0,5,8,1,0,889,-39456.211,18809.031,0,0,0,0,2083.0332 +11095,13550,24209,-9,24211,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.1642,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,624.66669,11362.709,-3363.9065,0,0,0,0,2748.4653 +11095,13550,24210,-9,24211,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4001,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,3,1,624.66669,11362.709,-3363.9065,0,0,0,0,2748.4653 +11095,13550,24211,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.6133037,7.9352303,5.9054723,0,0,-855.07446,0,-9,-9,2021,11,0,25,24,1,0,0,11.849741,11.849741,.05,.05,0,0,0,0,0,2,1,1,0,6.4368911,0,43.54,59.6,-9,-9,6.666666666666667,1,1,0,0,10,9,3,1,624.66669,11362.709,-3363.9065,0,0,0,0,2748.4653 +11096,13551,24212,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,6.906754,6.9405618,0,0,-935.9892,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8766041,47.56,41.5,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,457,1332127.8,669088.69,493150.28,22680.736,0,16479.564,1628.8916 +11097,13552,24213,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.3601389,7.2226925,0,0,0,-1020.6307,0,1,1,2021,9,0,45,54,1,0,0,3.7777276,3.7777276,0,0,0,0,0,0,0,0,0,0,0,6.0713091,0,44.45,50.99,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,224,-34690.75,0,0,0,0,0,554.20313 +11098,13553,24214,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,8.957757,9.0963783,6.5501928,0,0,-1015.0569,0,-9,-9,2021,6,0,50,45,1,0,0,18.851763,18.851763,.05,.05,0,0,0,0,0,0,1,1,0,6.9538026,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,626,501865.06,388256.22,281554.63,127690.57,8219.8066,0,3472.7141 +11098,13553,24215,-9,24214,-9,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1114.3726,-9,1,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,0,9,5,1,626,501865.06,388256.22,281554.63,127690.57,8219.8066,0,3472.7141 +11098,13553,24216,-9,24214,-9,1,0,17,0,0,1,2,0,0,0,4,0,4.2030487,4.6489453,0,0,-1022.4159,-9,1,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1670837,0,46.16,58.62,-9,-9,8.333333333333334,4,2,0,0,1,9,5,1,626,501865.06,388256.22,281554.63,127690.57,8219.8066,0,3472.7141 +11099,13554,24217,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.5780339,7.7702832,5.7189989,0,0,-880.16211,0,3,3,2021,7,0,23,20,1,0,0,9.598835,9.598835,0,0,0,0,0,0,0,0,1,0,1,0,5.7250018,59.43,49.68,-9,-9,8.333333333333334,1,1,0,0,11,2,3,1,496,-165306.39,-31844.316,0,0,557.69177,0,1223.1687 +11099,13555,24218,-9,24217,-9,1,0,19,0,0,0,2,2,-9,0,4,7.3282633,7.4212232,0,0,0,-1039.7472,0,2,-9,2021,16,4,25,25,1,4,1,6.0426178,6.0426178,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.82,58.52,-9,-9,10,1,1,0,0,3,2,3,1,455,56001.828,-134645.39,0,0,0,0,2307.6086 +11100,13556,24219,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.7915244,5.9180708,0,0,-915.66321,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6585841,5.9977055,50.46,53.68,-9,-9,10,1,1,0,0,0,1,2,1,1531,286493.56,5726.7271,122839.77,0,0,0,1531.1377 +11101,13557,24220,24222,-9,-9,1,1,34,0,1,0,3,3,-9,0,5,8.1745758,8.5101204,0,13,-2,-22.604826,0,2,2,2021,6,0,50,60,1,0,0,11.356768,11.356768,.05,.05,0,0,0,0,0,0,1,1,0,.96746552,0,50.54,62.09,62.39,56.71,10,1,1,0,0,9,9,4,0,1139.6666,86564.609,128273.48,324674.75,199755.09,12130.024,0,3089.073 +11101,13557,24221,-9,24222,24220,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.4888,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,0,1139.6666,86564.609,128273.48,324674.75,199755.09,12130.024,0,3089.073 +11101,13557,24222,24220,-9,-9,1,0,36,0,1,0,2,2,-9,0,5,8.3193359,8.126976,0,13,2,-110.32217,0,2,2,2021,11,0,40,40,1,0,0,7.802248,7.802248,0,0,0,0,0,0,0,0,1,1,0,.97863841,0,62.39,56.71,50.54,62.09,8.333333333333334,1,1,0,0,5,9,4,0,1139.6666,86564.609,128273.48,324674.75,199755.09,12130.024,0,3089.073 +11102,13558,24223,-9,24224,-9,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1116.1947,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,2,1,1391.5,64456.375,0,0,0,0,0,1322.9016 +11102,13558,24224,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.8659744,7.4315009,6.5935411,0,0,-1007.6433,0,1,3,2021,21,10,16,10,1,10,0,6.074697,6.074697,0,0,0,0,0,0,0,0,1,1,0,6.5226107,0,47.47,44.67,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1391.5,64456.375,0,0,0,0,0,1322.9016 +11103,13559,24225,-9,24226,24227,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.551,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,8,4,0,572.33331,-34251.816,0,0,0,0,0,3648.7949 +11103,13559,24226,24227,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.2989025,7.230113,0,5,-1,1.2347981,0,-9,-9,2021,10,0,40,0,1,1,0,4.662715,4.662715,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,32.08,37.15,8,1,1,0,0,1,8,4,0,572.33331,-34251.816,0,0,0,0,0,3648.7949 +11103,13559,24227,24226,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,8.1472435,7.9929714,0,18,1,34.029305,0,-9,-9,2021,22,8,40,0,1,8,0,9.9731236,9.9731236,0,0,0,0,0,0,0,0,1,1,0,0,0,32.08,37.15,50,54,1.666666666666667,1,1,0,0,5,8,4,0,572.33331,-34251.816,0,0,0,0,0,3648.7949 +11104,13560,24228,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,7.5998859,7.6493654,0,0,0,-1126.2792,0,-9,-9,2021,12,2,34,34,1,2,0,7.0669961,7.0669961,.05,.05,0,0,0,0,0,0,0,0,0,5.6391559,0,52.51,54.26,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,923,-242526.3,-82329.461,0,0,0,0,1310.1371 +11105,13561,24229,24230,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.2277517,8.3108845,0,34,0,4.7306204,0,2,3,2021,12,2,42,45,1,2,0,9.5416212,9.5416212,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.76,57.87,45.83,54.52,6.666666666666667,1,1,0,0,12,13,5,1,307,2350679,1653279,639362.75,0,0,0,4203.5449 +11105,13561,24230,24229,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.7850723,8.5927439,0,34,0,40.627274,0,3,3,2021,7,0,46,46,1,0,0,17.390779,17.390779,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.83,54.52,32.76,57.87,6.666666666666667,1,1,0,0,12,13,5,1,307,2350679,1653279,639362.75,0,0,0,4203.5449 +11105,13562,24231,-9,24229,24230,1,1,28,0,0,0,1,1,-9,0,4,8.7538023,8.9016533,0,0,0,-1125.4022,0,2,2,2021,11,0,38,43,1,0,1,23.543594,23.543594,.05,.05,.05,0,0,0,0,0,0,0,0,1.5419552,0,43.79,58.33,-9,-9,5,1,1,0,0,10,13,5,1,408,222912.81,-24620.248,266051.19,110847.45,49509.484,0,2494.0403 +11106,13563,24232,24233,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,7.7963524,7.4851522,0,4,4,-17.123846,-9,-9,-9,2021,36,12,37,0,1,12,0,6.4445634,6.4445634,.05,.05,0,0,0,0,0,0,1,1,0,0,0,23.02,52.27,63,35.63,5,1,1,0,1,11,6,4,1,846,1528.1744,20533.137,98446.82,56588.52,0,0,3191.6558 +11106,13563,24233,24232,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.1875029,8.5288868,6.6977849,4,-4,41.32365,0,2,2,2021,9,0,38,38,1,0,0,15.195223,15.195223,0,0,0,0,0,0,0,0,1,1,0,7.1769414,0,63,35.63,23.02,52.27,10,1,1,0,0,10,6,4,1,846,1528.1744,20533.137,98446.82,56588.52,0,0,3191.6558 +11106,13563,24234,-9,24233,24232,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-878.30499,-9,1,2,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6297383,0,39.22,61.48,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,846,1528.1744,20533.137,98446.82,56588.52,0,0,3191.6558 +11107,13564,24235,24237,-9,-9,1,0,26,0,1,0,2,2,-9,0,3,7.9803014,7.1779232,0,6,0,-65.49192,0,3,2,2021,11,2,43,36,1,2,0,6.8778763,6.8778763,0,0,0,0,0,0,0,0,1,1,0,0,0,41.79,57.73,57.16,56.15,10,1,1,0,0,7,7,4,1,527.33331,82325.477,0,0,0,0,0,2683.6384 +11107,13564,24236,-9,24235,24237,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-978.83197,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,527.33331,82325.477,0,0,0,0,0,2683.6384 +11107,13564,24237,24235,-9,-9,1,1,26,0,1,0,2,2,-9,0,4,8.5389338,8.4075947,0,6,0,-49.170177,-9,-9,-9,2021,7,0,40,0,1,0,0,14.294511,14.294511,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.79,57.73,8.333333333333334,1,1,0,0,6,7,4,1,527.33331,82325.477,0,0,0,0,0,2683.6384 +11108,13565,24238,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,6.8616138,6.7600708,0,0,-891.9566,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,6.8644848,49.13,41.72,-9,-9,6.666666666666667,1,1,0,0,10,4,2,0,456,365334.78,273538.09,0,0,0,0,905.27594 +11109,13566,24239,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.358345,9.2496853,0,0,0,-1012.64,0,3,1,2021,14,2,33,32,1,2,0,36.34948,36.34948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.87,41.9,-9,-9,5,1,1,0,0,13,6,5,1,192,2157442.3,1879172,221670.5,33488.371,0,0,3204.9961 +11109,13567,24240,-9,24239,-9,1,1,24,0,0,0,2,2,-9,0,3,7.2267122,6.6246872,0,0,0,-1006.6285,-9,1,-9,2021,16,4,40,0,1,4,1,3.3015292,3.3015292,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.12,59.76,-9,-9,3.333333333333333,1,1,0,1,8,6,2,1,899,100172.66,151549.13,0,0,0,0,1064.4326 +11110,13568,24241,24242,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,44,-10,-132.87813,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.3,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,896,551884.88,170064.14,46126.336,0,0,0,603.75903 +11110,13568,24242,24241,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,6.4672022,6.3491778,44,10,-81.511299,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3379288,57.16,56.15,58.3,52.91,8.333333333333334,1,1,0,0,0,4,2,1,896,551884.88,170064.14,46126.336,0,0,0,603.75903 +11111,13569,24243,24244,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.911993,8.2220106,5.4486265,11,5,64.327911,0,2,2,2021,8,0,50,55,1,0,0,6.2040305,6.2040305,.05,.05,0,0,0,0,0,0,1,1,0,1.2638421,6.0293598,63.24,42.39,55.36,51.57,8.333333333333334,1,1,0,0,11,10,4,1,799,68150.75,9419.417,0,0,0,7212.5503,3053.6792 +11111,13569,24244,24243,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.7513676,8.202632,0,11,-5,13.821336,0,-9,-9,2021,11,0,43,50,1,0,0,10.58287,10.58287,0,0,0,0,0,0,0,0,1,1,0,1.346805,0,55.36,51.57,63.24,42.39,8.333333333333334,1,1,0,0,12,10,4,1,799,68150.75,9419.417,0,0,0,7212.5503,3053.6792 +11112,13570,24245,24246,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.0227957,6.329298,57,0,-45.640713,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3432865,52.6,52.88,52.43,55.57,8.333333333333334,1,1,0,0,0,13,2,1,290,484033.75,161326.72,241404.67,0,0,0,884.77185 +11112,13570,24246,24245,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.8440709,6.5201616,57,0,-61.192169,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5742369,52.43,55.57,52.6,52.88,6.666666666666667,1,1,0,0,0,13,2,1,290,484033.75,161326.72,241404.67,0,0,0,884.77185 +11113,13571,24247,24248,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,7.4100804,8.5616055,7.6911726,3,12,-12.731175,0,-9,-9,2021,9,0,40,40,1,1,0,5.1330152,5.1330152,0,0,0,0,0,0,0,0,1,0,1,0,7.7060099,52,55,46.97,50.36,8,1,1,0,0,2,4,5,0,299,138289.06,-18301.465,82051.586,44565.383,1543.1283,0,4217.2583 +11113,13571,24248,24247,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.986052,7.861196,0,3,-12,-49.75742,0,-9,-9,2021,11,0,50,47,1,0,0,5.7580919,5.7580919,0,0,0,0,0,0,0,7,1,0,1,0,0,46.97,50.36,52,55,8.333333333333334,1,1,0,0,2,4,5,0,299,138289.06,-18301.465,82051.586,44565.383,1543.1283,0,4217.2583 +11114,13572,24249,24251,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,9.3451309,9.1753969,0,6,12,-7.6665297,0,3,3,2021,8,0,60,63,1,0,0,17.416065,17.416065,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.46,46.99,37.17,54.55,3.333333333333333,1,1,0,0,7,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13572,24250,-9,24251,24249,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-918.7168,0,2,3,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,1,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13572,24251,24249,24253,-9,1,0,42,0,1,0,2,2,-9,0,3,7.600687,7.4654779,0,6,-12,-80.29129,0,2,2,2021,16,4,30,28,1,4,0,8.3100824,8.3100824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.17,54.55,59.46,46.99,5,1,1,0,0,7,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13572,24252,-9,24251,24249,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.2488,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,1409.5,1264733.1,786403.06,408602.41,13371.396,0,0,4609.6328 +11114,13573,24253,-9,-9,-9,1,0,71,0,1,0,3,3,-9,0,2,0,6.7780685,6.6473656,0,0,-1006.4725,0,-9,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6571951,6.5869508,34.52,24.67,-9,-9,5,1,1,0,0,0,8,2,1,299,414352.34,0,370150.63,0,0,0,980.79871 +11115,13574,24254,-9,24256,24255,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-862.94952,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,596.66669,1265101.3,251081.84,652749.31,61837.656,0,0,4836.0708 +11115,13574,24255,24256,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.0719156,8.8201151,0,17,-2,31.461975,0,-9,-9,2021,6,0,34,43,1,0,0,23.11755,23.11755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,36.92,51.87,8.333333333333334,1,1,0,0,13,7,5,1,596.66669,1265101.3,251081.84,652749.31,61837.656,0,0,4836.0708 +11115,13574,24256,24255,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,8.777174,8.8406811,0,17,2,-172.62451,0,2,1,2021,20,8,43,43,1,8,0,16.253716,16.253716,.05,.05,0,0,0,0,0,0,1,1,0,5.295639,0,36.92,51.87,51.83,57.2,6.666666666666667,1,1,0,0,13,7,5,1,596.66669,1265101.3,251081.84,652749.31,61837.656,0,0,4836.0708 +11116,13575,24257,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.3597975,7.3098745,0,0,-1042.8138,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5964894,7.4692335,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,3,1,871,591328.63,350978.53,271721.72,18390.855,4293.3013,0,1107.5039 +11117,13576,24258,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.831944,5.8562036,0,0,-939.0199,0,2,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.1002917,50,47,-9,-9,7,1,1,0,1,3,7,2,1,300,547236.38,65454.355,525041.63,-19156.785,0,0,1203.7885 +11118,13577,24259,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.1122789,7.8662949,0,0,0,-829.03778,-9,3,3,2021,16,4,37,0,1,4,0,9.6201487,9.6201487,0,0,0,0,0,0,0,0,0,0,0,2.3211761,0,32.51,66.52,-9,-9,1.666666666666667,1,1,0,0,8,5,4,1,246,101524.7,0,0,0,0,0,1872.2192 +11119,13578,24260,24261,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.5010853,8.4905024,0,7,1,-77.416534,-9,-9,-9,2021,10,0,40,0,1,1,0,14.570455,14.570455,0,0,0,0,0,0,.13980421,0,0,0,0,4.8289962,0,51,48,65.54000000000001,33.23,7,1,1,0,0,1,6,4,1,1255.5,1824517.6,971227.81,575320.38,0,0,0,2321.6919 +11119,13578,24261,24260,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,5.5008364,5.7065649,0,44,-1,39.380489,0,3,3,2021,9,0,5,5,1,0,0,6.7289848,6.7289848,0,0,0,0,0,0,0,0,0,0,0,2.6584258,0,65.54000000000001,33.23,51,48,8.333333333333334,1,1,0,0,7,6,4,1,1255.5,1824517.6,971227.81,575320.38,0,0,0,2321.6919 +11120,13579,24262,-9,24264,24265,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1150.1923,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24263,-9,24264,24265,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-956.12616,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24264,24265,-9,-9,1,0,36,1,3,0,3,3,-9,0,3,7.4038315,7.25423,0,16,-2,44.584393,0,2,2,2021,13,1,16,19,1,1,0,13.29371,13.29371,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,43.32,63.94,3.333333333333333,1,1,0,0,9,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24265,24264,-9,-9,1,1,38,1,3,0,2,2,-9,0,5,8.7761936,8.2091808,0,16,2,-20.794741,0,3,2,2021,12,1,55,50,1,1,0,10.860075,10.860075,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.32,63.94,30.94,61.65,6.666666666666667,1,1,0,0,11,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11120,13579,24266,-9,24264,24265,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-865.68127,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1173.4,107958.58,-43549.18,174049.36,88653.164,3750.5146,0,2433.2065 +11121,13580,24267,24268,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.6712084,7.4970655,0,12,-8,101.83469,0,2,2,2021,15,4,45,45,1,4,0,5.3795104,5.3795104,0,0,.05,0,0,0,0,0,0,0,0,0,0,36.46,61.59,35.91,63.19,1.666666666666667,1,1,0,1,11,9,5,1,831.5,593447.06,164498.47,410484.13,64688.602,0,0,5480.2012 +11121,13580,24268,24267,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,9.0745182,9.2098446,0,12,8,-87.295616,0,-9,-9,2021,13,2,60,55,1,2,0,22.561071,22.561071,0,0,.05,0,0,0,0,0,0,0,0,7.8244581,0,35.91,63.19,36.46,61.59,3.333333333333333,1,1,0,1,13,9,5,1,831.5,593447.06,164498.47,410484.13,64688.602,0,0,5480.2012 +11121,13581,24269,-9,24268,24267,1,0,18,0,0,0,2,2,0,0,4,0,0,0,0,0,-890.24597,-9,2,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7939353,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,1,9,1,1,136,48787.602,0,0,0,0,0,696.98969 +11122,13582,24270,24271,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6919661,7.606564,0,1,-1,17.816948,-9,3,3,2021,7,0,32,0,1,0,0,8.4738588,8.4738588,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.76,54.51,8.333333333333334,1,1,0,0,13,13,4,0,1512.5,127013.36,51321.711,105621.59,8183.6191,0,3390.9485,1693.5464 +11122,13582,24271,24270,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.1644764,7.892518,0,1,1,26.816509,-9,-9,-9,2021,7,0,37,0,1,0,0,10.210913,10.210913,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,54.79,55.86,8.333333333333334,1,1,0,0,15,13,4,0,1512.5,127013.36,51321.711,105621.59,8183.6191,0,3390.9485,1693.5464 +11122,13583,24272,-9,24270,24271,1,1,25,0,0,0,2,2,-9,0,5,8.141696,8.1526756,0,0,0,-1081.4594,-9,2,2,2021,6,0,39,0,1,0,1,8.9789104,8.9789104,0,0,0,0,0,0,0,0,0,0,0,.42731467,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,13,4,0,3538,43650.484,0,0,0,0,0,1090.8107 +11123,13584,24273,24274,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.2279739,7.8903947,12,0,22.973196,0,3,3,2021,12,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.2523189,7.8056836,53.23,47.51,54.2,57.49,8.333333333333334,1,1,0,0,8,13,4,1,1076,1412810.5,1268127.9,106868.41,0,0,0,2583.8848 +11123,13584,24274,24273,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.549644,7.6556435,12,0,-85.697739,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3858724,7.4077945,54.2,57.49,53.23,47.51,8.333333333333334,1,1,0,0,7,13,4,1,1076,1412810.5,1268127.9,106868.41,0,0,0,2583.8848 +11124,13585,24275,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,4,6.5790024,6.8803844,0,0,0,-926.29437,0,3,2,2021,10,0,18,16,1,0,0,5.8845429,5.8845429,0,0,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,5,11,2,0,215,0,0,0,0,0,0,206.592 +11125,13586,24276,24278,-9,-9,1,1,45,0,2,0,1,1,-9,0,2,8.7294474,8.6031342,0,22,3,22.514362,0,2,3,2021,17,5,47,49,1,5,0,13.479588,13.479588,.05,.05,.05,0,0,0,0,0,1,1,0,6.9555387,0,46.4,50.6,40.46,63.68,3.333333333333333,2,3,0,0,10,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11125,13586,24277,-9,24278,24276,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.5294,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11125,13586,24278,24276,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.1459723,8.0789986,0,22,-3,3.3897946,0,3,3,2021,12,0,33,33,1,0,0,12.673496,12.673496,.05,.05,0,0,0,0,0,0,1,1,0,2.3263662,0,40.46,63.68,46.4,50.6,8.333333333333334,2,3,0,0,11,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11125,13586,24279,-9,24278,24276,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1025.2759,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,2,3,-9,0,0,9,4,1,717.5,586394.5,216485.92,491243.56,171714.66,0,0,5000.2705 +11126,13587,24280,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.2229586,7.7585144,0,0,0,-893.55518,0,3,3,2021,7,0,25,30,1,0,0,13.461271,13.461271,0,0,0,0,0,0,0,42,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,13,4,1,1006,32136.607,72970.664,0,0,0,2997.3013,905.82642 +11126,13588,24281,-9,24280,-9,1,1,27,0,0,0,1,1,-9,1,2,0,0,0,0,0,-1013.7029,0,1,1,2021,18,7,0,41,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.765815,0,27.27,53.09,-9,-9,3.333333333333333,1,1,0,0,4,13,2,1,454,-21702.016,0,0,0,1119.0577,0,1769.8263 +11126,13589,24282,-9,24280,-9,1,1,26,0,0,0,1,1,-9,0,5,8.4905605,8.514411,0,0,0,-1101.2023,0,1,1,2021,6,0,42,37,1,0,1,13.343061,13.343061,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,13,4,1,1501,509.47125,85733.43,227580.91,124177.73,16967.816,0,2260.1287 +11126,13590,24283,-9,24280,-9,1,1,24,0,0,0,2,2,-9,0,4,7.8092937,8.0016537,0,0,0,-952.74438,0,1,-9,2021,6,0,37,37,1,0,1,7.7423258,7.7423258,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,2105,-150398.61,106011.05,0,0,0,0,474.60217 +11126,13591,24284,-9,24280,-9,1,1,22,0,0,0,2,2,1,0,5,7.7958851,7.6300979,0,0,0,-956.99451,-9,1,-9,2021,6,0,37,0,1,0,1,6.9270644,6.9270644,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,13,3,1,452,180893.06,49417.504,0,0,0,0,1002.1284 +11127,13592,24285,24286,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.2462468,6.9383016,0,27,4,125.78262,0,3,3,2021,12,0,32,30,1,0,0,4.5361934,4.5361934,0,0,0,0,0,0,0,0,0,0,0,0,0,51.78,53.03,62.39,56.71,1.666666666666667,1,1,0,0,5,5,4,1,745.5,1232282.5,1057331.3,163450.64,0,1786.7968,0,1863.5569 +11127,13592,24286,24285,-9,-9,1,1,57,0,0,0,3,3,-9,0,5,8.0010166,8.3694296,4.8267107,28,-4,-57.578613,0,3,3,2021,12,0,70,100,1,0,0,6.8586593,6.8586593,.05,.05,0,0,0,0,0,0,0,0,0,5.1058478,5.0710969,62.39,56.71,51.78,53.03,5,1,1,0,0,8,5,4,1,745.5,1232282.5,1057331.3,163450.64,0,1786.7968,0,1863.5569 +11128,13593,24287,-9,24288,24289,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.3878,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,569.33331,193310.11,22871.9,139185.78,170173.67,1400.6298,1409.5311,2646.6748 +11128,13593,24288,24289,-9,-9,1,0,26,1,1,0,2,2,-9,0,3,7.5671306,7.4773602,0,2,-7,64.080772,0,-9,-9,2021,20,7,28,28,1,7,0,8.9508018,8.9508018,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,40.83,59.68,3.333333333333333,1,1,0,1,8,10,3,1,569.33331,193310.11,22871.9,139185.78,170173.67,1400.6298,1409.5311,2646.6748 +11128,13593,24289,24288,-9,-9,1,1,33,1,1,0,2,2,-9,0,4,8.1310492,8.037034,0,2,7,91.318993,0,-9,-9,2021,21,9,38,37,1,9,0,8.1622744,8.1622744,0,0,0,0,0,0,0,0,1,1,0,4.039516,0,40.83,59.68,46.08,57.2,3.333333333333333,1,1,0,0,9,10,3,1,569.33331,193310.11,22871.9,139185.78,170173.67,1400.6298,1409.5311,2646.6748 +11129,13594,24290,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.4374161,7.9910693,0,0,-986.92493,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.1033192,59.71,50.89,-9,-9,10,1,1,0,0,6,7,4,1,974,1392628.5,426030.63,269128.31,0,0,0,2901.2834 +11130,13595,24291,24292,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,7.1675878,7.3536429,11,8,-21.933641,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2199715,7.6574779,59.72,38.6,49.04,55.86,10,1,1,0,0,0,7,5,1,1014,776727.81,345022.09,296396.84,0,0,0,4607.1001 +11130,13595,24292,24291,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.5270586,8.6649494,11,-8,60.391113,0,3,2,2021,13,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.4048038,8.6949539,49.04,55.86,59.72,38.6,8.333333333333334,1,1,0,0,0,7,5,1,1014,776727.81,345022.09,296396.84,0,0,0,4607.1001 +11131,13596,24293,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,0,5.7575078,5.5245442,0,0,-890.15179,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5769949,0,36.62,60.23,-9,-9,8.333333333333334,1,1,0,0,1,5,2,0,1315.5,37561.258,0,0,0,606.25226,0,1379.8596 +11131,13596,24294,-9,24293,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.52191,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,1315.5,37561.258,0,0,0,606.25226,0,1379.8596 +11132,13597,24295,24296,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.7855654,8.9117441,0,27,3,-17.757029,0,3,3,2021,11,1,36,36,1,1,0,18.72015,18.72015,.05,.05,0,0,0,0,0,2,0,0,0,6.7219429,0,58.39,44.54,63.32,11.35,0,1,1,0,0,8,11,5,1,613,496192.25,209380.08,164719.22,0,0,0,3290.1455 +11132,13597,24296,24295,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,7.6457276,7.8883953,0,9,-3,-36.596569,0,2,2,2021,12,2,32,32,1,2,0,6.8988075,6.8988075,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.32,11.35,58.39,44.54,0,1,1,0,0,7,11,5,1,613,496192.25,209380.08,164719.22,0,0,0,3290.1455 +11133,13598,24297,24298,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,0,0,42,-2,-68.058044,0,2,2,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,.83338386,0,56.53,45.45,65.14,10.9,8.333333333333334,1,1,0,0,5,1,3,1,938.5,1325487,994691.31,189985.38,0,0,0,1320.8953 +11133,13598,24298,24297,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,7.8292055,8.1088676,42,2,45.540771,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.350657,8.0758133,65.14,10.9,56.53,45.45,8.333333333333334,1,1,0,0,5,1,3,1,938.5,1325487,994691.31,189985.38,0,0,0,1320.8953 +11134,13599,24299,-9,-9,24300,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.8968,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,4,1,570.5,29271.379,15707.024,90071.227,23099.588,0,2671.2629,1303.0295 +11134,13599,24300,-9,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.4585657,8.4770889,0,0,0,-1073.2339,0,-9,-9,2021,11,1,40,40,1,1,0,12.114056,12.114056,0,0,0,0,0,0,0,0,1,1,0,1.4993064,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,570.5,29271.379,15707.024,90071.227,23099.588,0,2671.2629,1303.0295 +11135,13600,24301,-9,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,8.300211,8.3975105,0,0,0,-971.10663,0,2,2,2021,14,3,22,22,1,3,0,16.360949,16.360949,.05,.05,0,0,0,0,0,2,0,0,0,7.1637936,0,47.3,45.59,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,1273,705140.19,156049.02,215171.94,0,17877.574,0,2558.7483 +11136,13601,24302,24303,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.1222897,6.9094834,12,-4,106.93634,0,2,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8162894,6.9661613,46.48,58.28,49.41,58.28,8.333333333333334,1,1,0,0,8,9,2,1,937.5,527384.38,333243.78,200719.77,0,0,0,3221.9048 +11136,13601,24303,24302,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.1476779,5.7049327,12,4,128.13226,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1990848,5.8010459,49.41,58.28,46.48,58.28,6.666666666666667,1,1,0,0,9,9,2,1,937.5,527384.38,333243.78,200719.77,0,0,0,3221.9048 +11137,13602,24304,-9,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,7.2065473,7.5609608,5.9264426,0,0,-1043.4486,0,2,3,2021,8,0,22,8,1,0,0,7.7977958,7.7977958,0,0,0,0,0,0,0,2,1,1,0,6.3479176,0,51.31,49.39,-9,-9,6.666666666666667,1,1,0,1,2,10,2,0,498.66666,13063.698,0,0,0,0,886.28381,2491.645 +11137,13602,24305,-9,24304,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.8005,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,498.66666,13063.698,0,0,0,0,886.28381,2491.645 +11137,13602,24306,-9,24304,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.87799,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,498.66666,13063.698,0,0,0,0,886.28381,2491.645 +11138,13603,24307,-9,24308,24310,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-786.35608,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11138,13603,24308,24310,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,7.8767385,7.6139903,0,19,3,-12.628381,0,3,2,2021,10,1,40,40,1,1,0,7.7054553,7.7054553,.05,.05,0,0,0,0,0,0,0,0,0,.54189581,0,46.63,59.72,51,56,6.666666666666667,4,2,0,0,8,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11138,13603,24309,-9,24308,24310,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.52911,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11138,13603,24310,24308,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.6189995,9.248457,0,17,-3,-63.584446,0,2,2,2021,9,0,60,50,1,1,0,12.354671,12.354671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,56,46.63,59.72,8,1,1,0,0,1,6,4,1,1380.5,548493.56,490833.78,150540.55,85263.047,1884.5547,0,3812.1482 +11139,13604,24311,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,6.5181208,6.5525236,0,0,-919.11584,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2050004,0,57.16,56.15,-9,-9,5,1,1,0,0,3,9,2,0,214,-19959.316,0,0,0,0,0,78.377396 +11140,13605,24312,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,9.7039509,9.4397964,0,0,0,-974.79938,0,2,2,2021,7,0,49,53,1,0,0,33.452175,33.452175,.05,.05,0,0,0,0,0,0,0,0,0,2.6846197,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,12,7,5,1,208,180152.69,52275.781,131269.23,46600.02,0,0,4085.6963 +11141,13606,24313,24314,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.9980383,8.8968801,0,9,2,7.0829973,0,1,2,2021,6,0,50,50,1,0,0,19.432758,19.432758,.05,.05,0,0,0,0,3.4914992,0,0,0,0,7.802669,0,62.39,56.71,32.26,56.79,10,1,1,0,0,10,5,5,1,367,639266.5,351566.81,259748.25,10371.706,0,0,5724.2124 +11141,13606,24314,24313,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.1758261,8.1406975,0,9,-2,-14.326812,0,2,1,2021,29,12,40,44,1,12,0,9.288065,9.288065,0,0,0,0,0,0,0,0,0,0,0,5.3855824,0,32.26,56.79,62.39,56.71,3.333333333333333,1,1,0,0,9,5,5,1,367,639266.5,351566.81,259748.25,10371.706,0,0,5724.2124 +11141,13607,24315,-9,24314,24313,1,1,22,0,0,0,2,2,1,0,5,8.2371311,8.2637606,0,0,0,-1167.0254,-9,2,1,2021,12,0,70,0,1,0,1,5.5719352,5.5719352,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,5,5,4,1,1639,63738.141,57212.238,0,0,0,0,1698.5806 +11142,13608,24316,-9,24317,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.7773,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,636,-112484.3,44161.551,0,0,0,0,2269.4326 +11142,13608,24317,-9,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,7.010438,7.4066229,6.2790952,0,0,-972.31781,0,2,1,2021,7,0,17,17,1,0,0,7.2311921,7.2311921,.05,.05,0,0,0,0,0,0,1,1,0,6.0119853,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,4,2,0,636,-112484.3,44161.551,0,0,0,0,2269.4326 +11143,13609,24318,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1078.4122,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,45.41,18.85,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,1138,114866.59,0,0,0,0,-590.60358,1756.9221 +11144,13610,24319,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,5,0,4.7927909,4.6464448,0,0,-904.56445,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9937549,4.7629848,54.67,57.49,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,448,28454.996,-148964.58,0,0,0,0,-132.11592 +11145,13611,24320,24321,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,6.6026173,6.3437724,51,4,12.966003,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3994756,6.2165608,46.73,42.22,57.16,56.15,5,1,1,0,0,0,2,2,0,367.5,334993.5,65165.496,77389.977,0,0,0,1796.7126 +11145,13611,24321,24320,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.2795668,5.307303,51,-4,23.103436,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0005918,0,57.16,56.15,46.73,42.22,8.333333333333334,1,1,0,0,0,2,2,0,367.5,334993.5,65165.496,77389.977,0,0,0,1796.7126 +11146,13612,24322,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,3,0,0,0,0,0,-983.00372,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,100.38494,0,937.52075,0,0,0,0,0,0,53,44,-9,-9,8,1,1,0,0,0,6,1,0,638,258945.25,0,253924.17,0,0,0,0 +11147,13613,24323,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.0589733,8.1653261,0,0,0,-966.04425,0,2,2,2021,28,12,37,38,1,12,0,10.474464,10.474464,.05,.05,0,0,0,0,0,0,1,0,1,0,0,24.36,58.14,-9,-9,5,1,1,0,0,10,12,4,0,401,-103356.44,38896.996,0,0,19955.18,0,2160.6479 +11148,13614,24324,24325,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,0,0,47,4,90.521996,0,2,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,1.2708673,0,0,1,1,0,3.4274518,0,49.75,32.52,50.99,28.01,8.333333333333334,1,1,0,0,0,12,3,0,705,933285.88,355229.81,329653.78,0,0,0,1711.4473 +11148,13614,24325,24324,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.7252645,8.1567974,0,47,-4,-17.572224,0,3,3,2021,12,1,35,28,1,1,0,8.4732647,8.4732647,0,0,0,0,0,0,0,0,1,1,0,4.4287796,0,50.99,28.01,49.75,32.52,5,1,1,0,0,11,12,3,0,705,933285.88,355229.81,329653.78,0,0,0,1711.4473 +11149,13615,24326,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.7309608,7.4932218,0,0,0,-1097.9506,0,2,2,2021,11,0,45,45,1,0,0,6.5354862,6.5354862,0,0,0,0,0,0,0,0,0,0,0,0,0,41.57,45.88,-9,-9,6.666666666666667,1,1,0,0,4,10,3,0,667,368390.38,0,0,0,0,0,-73.591774 +11150,13616,24327,24328,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,7.6747994,7.4266853,0,2,-13,-119.0734,0,-9,-9,2021,7,0,24,24,1,0,0,9.289794,9.289794,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.98,57.22,8.333333333333334,1,1,0,0,11,4,3,1,518.5,1037320.6,366791.34,242072.39,0,0,0,1974.577 +11150,13616,24328,24327,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.4816031,7.7016282,3.4218774,2,13,-85.749435,-9,2,2,2021,10,0,30,0,1,0,0,6.665699,6.665699,0,0,0,0,0,0,0,0,1,1,0,4.0190539,3.4545159,48.98,57.22,57.16,56.15,8.333333333333334,1,1,0,0,7,4,3,1,518.5,1037320.6,366791.34,242072.39,0,0,0,1974.577 +11151,13617,24329,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,7.5096655,7.8239584,0,0,-969.60602,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.6609983,56.67,42.78,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,328,225847.64,181817.53,206909.44,65827.375,0,0,2464.5889 +11152,13618,24330,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1014.3261,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,36.864288,0,0,1,1,0,0,0,27.41,25.55,-9,-9,5,4,5,0,1,0,8,1,0,713,0,0,0,0,0,0,1311.509 +11153,13619,24331,-9,-9,-9,1,0,40,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1091.2036,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.52,52.14,-9,-9,5,3,4,0,0,0,8,1,0,270,132708.67,-45575.453,0,0,0,1368.9897,1055.755 +11153,13620,24332,-9,24331,-9,1,0,20,0,0,0,2,2,-9,0,3,7.6845794,7.6753545,0,0,0,-1016.1176,0,2,-9,2021,17,6,32,20,1,6,1,7.7235575,7.7235575,0,0,0,0,0,0,0,7,1,1,0,0,0,36.11,55.54,-9,-9,3.333333333333333,3,4,0,0,2,8,3,0,108,-286163,0,0,0,0,0,349.77261 +11154,13621,24333,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-922.02283,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,28.46,-9,-9,10,1,1,0,0,0,12,1,0,984,-37937.098,0,0,0,0,0,488.50684 +11155,13622,24334,24335,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.73523,7.1869979,51,-1,117.20408,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4948344,7.3848529,56.5,37.6,59.14,41.8,3.333333333333333,1,1,0,0,0,2,3,1,1003.5,791483.88,348258.13,308052.47,0,0,0,2446.7046 +11155,13622,24335,24334,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,5.7802482,5.3639112,51,1,45.982964,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.008007,59.14,41.8,56.5,37.6,10,1,1,0,0,0,2,3,1,1003.5,791483.88,348258.13,308052.47,0,0,0,2446.7046 +11156,13623,24336,-9,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,0,0,0,0,0,-920.91357,0,3,3,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,2,3,0,0,0,6,1,0,2776,107668.8,0,0,0,0,-585.77515,908.36676 +11157,13624,24337,-9,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,7.2723866,7.2500787,0,0,0,-1000.2214,0,3,3,2021,20,8,20,25,1,8,0,7.7035336,7.7035336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.78,43.04,-9,-9,1.666666666666667,1,1,0,1,9,11,3,1,549,40820.219,121845.89,0,0,0,0,316.23978 +11157,13625,24338,-9,24337,-9,1,1,27,0,0,0,2,2,-9,0,4,8.3982992,8.3277321,0,0,0,-1004.9987,0,3,3,2021,11,1,48,48,1,1,1,9.9456062,9.9456062,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.62,53.24,-9,-9,6.666666666666667,1,1,0,0,7,11,4,1,199,-120541.75,94448.836,0,0,0,0,1538.7173 +11158,13626,24339,-9,24342,24341,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-833.1889,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13626,24340,-9,24342,24341,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.1605,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13626,24341,24342,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,9.2666035,9.1188793,0,1,5,23.436504,0,3,3,2021,10,0,60,60,1,1,0,17.539948,17.539948,.05,.05,0,0,0,0,0,0,1,1,0,2.5545108,0,51,55,54.79,55.86,8,1,1,0,0,12,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13626,24342,24341,-9,-9,1,0,45,0,2,0,2,2,-9,0,4,0,0,0,1,-5,94.347412,0,2,2,2021,9,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51,55,8.333333333333334,1,1,0,0,5,7,4,1,891.5,1296925.5,406352.34,806556.63,104976.14,0,0,3727.9214 +11158,13627,24343,-9,24342,24341,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-890.73889,-9,2,2,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8126378,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,583,0,0,0,0,0,0,-399.76202 +11159,13628,24344,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,3.9792559,3.8121951,0,0,-1094.641,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9220333,3.7531826,60.45,30.52,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1332,192410.67,23567.086,128023.48,0,0,0,956.62115 +11160,13629,24345,24348,-9,-9,1,0,37,0,2,0,2,2,-9,1,3,0,0,0,15,3,.290113,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,52.19,54.61,65.78,29.46,10,2,3,0,0,5,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11160,13629,24346,-9,24345,24348,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.36169,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11160,13629,24347,-9,24345,24348,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.3082,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11160,13629,24348,24345,-9,-9,1,1,34,0,2,0,2,2,-9,0,2,7.3021874,7.5102782,0,14,-3,-37.739227,0,3,2,2021,9,0,27,21,1,0,0,7.8441777,7.8441777,0,0,0,0,0,0,0,14.5,1,0,1,0,0,65.78,29.46,52.19,54.61,10,2,3,0,0,6,8,2,0,588.75,-13772.111,-29204.873,0,0,480.47382,0,3249.1521 +11161,13630,24349,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,1,8.9249086,9.0643072,0,0,0,-1036.4697,0,2,2,2021,27,11,38,40,1,11,0,22.849546,22.849546,0,0,0,0,0,0,0,0,1,1,0,0,0,27.09,28.51,-9,-9,1.666666666666667,1,1,0,0,13,9,5,0,469,588335.19,444148.16,0,0,0,0,3308.5735 +11162,13631,24350,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1138.2214,0,-9,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.11,27.71,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,899,-108867.6,0,0,0,0,0,1113.3208 +11163,13632,24351,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1041.106,0,3,-9,2021,12,0,0,8,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.309093,0,21.07,49.37,-9,-9,5,1,1,1,1,9,6,1,1,1764,36351.387,0,0,0,0,0,389.63959 +11164,13633,24352,24353,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.0201554,5.791759,8,-1,-168.34665,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.7307341,5.206809,42.06,41.97,52.63,42.04,8.333333333333334,1,1,0,0,5,12,2,0,1491.5,358544.59,122553.23,259239.84,0,0,0,1610.1233 +11164,13633,24353,24352,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,8,1,-29.044699,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,7.4595323,0,27,1,1,0,0,0,52.63,42.04,42.06,41.97,5,1,1,0,0,2,12,2,0,1491.5,358544.59,122553.23,259239.84,0,0,0,1610.1233 +11165,13634,24354,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,7.4609799,7.2397957,0,0,-1050.3926,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,4.5234013,2,1,1,0,.52776337,7.745605,40.48,45.26,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,1158,-113168.45,52019.684,0,0,0,1371.1177,1092.1566 +11166,13635,24355,24356,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,9.0965815,9.485774,0,11,3,-73.939232,0,-9,-9,2021,13,1,47,47,1,1,0,21.947979,21.947979,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,51.26,57.33,53.46,5,1,1,0,0,9,13,5,1,515,1394305.5,1294686.3,174353.91,0,0,0,6142.6494 +11166,13635,24356,24355,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.1146073,7.2826791,0,25,-3,-118.95055,0,3,3,2021,7,0,20,22,1,0,0,7.0616183,7.0616183,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,38.88,51.26,8.333333333333334,1,1,0,0,11,13,5,1,515,1394305.5,1294686.3,174353.91,0,0,0,6142.6494 +11166,13636,24357,-9,24356,24355,1,1,20,0,0,0,2,2,1,0,4,7.8621612,8.0762711,0,0,0,-1059.2991,-9,2,2,2021,9,1,7,0,1,1,1,47.781063,47.781063,.05,.05,0,0,0,0,0,0,0,0,0,2.0394797,0,51.77,58.57,-9,-9,10,1,1,0,0,2,13,4,1,857,-10902.054,-78409.805,0,0,0,0,1794.2134 +11166,13637,24358,-9,24356,24355,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-914.65814,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7836485,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,630,110038.46,0,0,0,0,0,-159.9823 +11167,13638,24359,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.5380402,8.3823528,0,0,0,-1093.9175,0,3,2,2021,11,0,42,44,1,0,0,14.025686,14.025686,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.61,35.36,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,364,215910,242590.58,184970.64,73166.07,0,3391.6589,3055.8523 +11168,13639,24360,24361,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4416046,8.2951469,0,5,0,25.175766,0,-9,-9,2021,7,0,60,50,1,0,0,9.6279364,9.6279364,0,0,.05,0,0,0,0,0,0,0,0,7.1060686,0,60.87,44.96,57.16,56.15,8.333333333333334,1,1,0,0,9,5,5,1,299.5,1200914.3,853627.56,329342.63,36246.227,0,0,3220.7217 +11168,13639,24361,24360,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.2195168,7.9952559,5,9,-75.000244,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1111836,8.1785841,57.16,56.15,60.87,44.96,8.333333333333334,1,1,0,0,2,5,5,1,299.5,1200914.3,853627.56,329342.63,36246.227,0,0,3220.7217 +11169,13640,24362,24364,-9,-9,1,1,31,0,2,0,2,2,-9,0,4,8.3358965,8.1536045,0,8,2,33.614609,0,-9,-9,2021,4,0,45,38,1,0,0,10.874554,10.874554,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,8,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11169,13640,24363,-9,24364,24362,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.85547,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11169,13640,24364,24362,-9,-9,1,0,29,0,2,0,2,2,-9,0,4,8.3144388,8.1898775,0,8,-2,-2.1412988,0,2,2,2021,8,0,38,30,1,0,0,13.294401,13.294401,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,58.15,52.91,8.333333333333334,1,1,0,0,9,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11169,13640,24365,-9,24364,24362,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.6737,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,537,300630.41,270446.13,240256.75,126815.59,6083.5698,0,2951.4673 +11170,13641,24366,-9,24369,24367,1,1,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-999.62598,0,3,1,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.018534958,0,52,54.51,-9,-9,5,1,1,1,0,0,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11170,13641,24367,24369,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.38727,8.9641724,6.9522438,8,11,-99.672134,0,-9,-9,2021,5,0,53,50,1,0,0,9.9078074,9.9078074,.05,.05,0,0,0,0,0,0,1,1,0,3.0773151,6.9359875,54.96,53.17,51.24,58.84,8.333333333333334,1,1,0,0,9,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11170,13641,24368,-9,24369,24367,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1127.7384,-9,3,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11170,13641,24369,24367,-9,-9,1,0,39,0,1,0,3,3,-9,0,4,8.3412266,8.2915306,0,8,-11,1.7682377,0,2,2,2021,12,0,40,47,1,0,0,10.142585,10.142585,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.96,53.17,8.333333333333334,1,1,0,0,9,11,4,1,448.25,238886.03,62677.449,265939.5,96647.039,0,0,4057.501 +11171,13642,24370,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.2365465,7.0099797,0,0,-1127.3755,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4368076,60.93,36.01,-9,-9,8.333333333333334,3,4,0,0,2,9,3,1,1404,-65332.637,0,0,0,1894.1324,0,803.17236 +11172,13643,24371,-9,24372,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1019.9431,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,645,-151592.16,0,0,0,0,0,741.71301 +11172,13643,24372,-9,-9,-9,1,0,34,0,1,0,3,3,-9,0,3,0,3.6894014,3.6958401,0,0,-944.05188,0,2,-9,2021,28,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4141304,0,42.46,48.53,-9,-9,10,1,1,1,0,0,12,2,0,645,-151592.16,0,0,0,0,0,741.71301 +11173,13644,24373,24374,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.0984354,7.2123599,8,-3,19.792124,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0909977,33.07,55.18,60.12,54.8,5,1,1,0,0,2,1,4,1,1132.5,1103147.8,697719.19,197799.91,0,5101.9419,0,3131.0405 +11173,13644,24374,24373,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.0132427,7.8186126,8,3,46.166904,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9026356,7.9240794,60.12,54.8,33.07,55.18,10,1,1,0,0,4,1,4,1,1132.5,1103147.8,697719.19,197799.91,0,5101.9419,0,3131.0405 +11174,13645,24375,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.3069439,8.7642879,0,0,0,-1056.7441,0,2,1,2021,14,3,39,39,1,3,0,18.402655,18.402655,.05,.05,0,0,0,0,0,0,0,0,0,3.4030786,0,46.16,58.62,-9,-9,6.666666666666667,3,4,0,0,11,2,5,0,324,236608.05,72759.906,101048.34,104913.53,4285.7202,0,1812.902 +11175,13646,24376,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.2605848,8.4508133,0,0,0,-1022.6788,0,3,3,2021,11,2,40,40,1,2,0,9.372303,9.372303,.05,.05,0,0,0,0,0,7,0,0,0,0,0,51.96,42.31,-9,-9,8.333333333333334,1,1,0,0,9,10,4,0,2526,178495.34,68975.391,0,0,3961.2988,0,1459.3906 +11176,13647,24377,-9,24379,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.5693,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,987,137399.13,190959.08,202591.3,239422.92,2490.4048,0,2675.2998 +11176,13647,24378,-9,24379,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-978.46381,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,987,137399.13,190959.08,202591.3,239422.92,2490.4048,0,2675.2998 +11176,13647,24379,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.7602968,8.5114994,6.1052241,0,0,-1041.2222,0,2,2,2021,6,0,36,33,1,0,0,18.405506,18.405506,.05,.05,0,0,0,0,0,0,1,1,0,6.7035465,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,9,6,4,1,987,137399.13,190959.08,202591.3,239422.92,2490.4048,0,2675.2998 +11177,13648,24380,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,2,0,0,0,0,0,-1135.7151,-9,-9,-9,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.89,54.51,-9,-9,3.333333333333333,1,1,1,0,5,5,1,0,196,10280.724,0,0,0,0,0,286.88678 +11178,13649,24381,-9,-9,-9,1,1,90,0,0,0,3,3,-9,0,3,0,6.3671741,6.1723604,0,0,-803.11133,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5709939,5.9780078,58.13,40.72,-9,-9,10,1,1,0,0,0,13,2,1,472,604694,118204.91,199027.59,0,0,0,1660.077 +11179,13650,24382,-9,24384,24383,1,0,16,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.5828,-9,2,3,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6625631,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,0,13,4,1,1842.3334,801808.38,746427.69,218210.5,76686.953,0,240.37318,2703.854 +11179,13650,24383,24384,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,8.6586761,8.9333076,0,4,5,54.779438,0,3,3,2021,8,0,42,40,1,0,0,15.562044,15.562044,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.17,40.45,8.333333333333334,1,1,0,0,11,13,4,1,1842.3334,801808.38,746427.69,218210.5,76686.953,0,240.37318,2703.854 +11179,13650,24384,24383,-9,-9,1,0,47,0,1,0,2,2,-9,1,2,0,0,0,4,-5,32.243668,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.17,40.45,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,1842.3334,801808.38,746427.69,218210.5,76686.953,0,240.37318,2703.854 +11180,13651,24385,24386,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.7264633,7.4777312,42,0,-36.394974,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.952682,7.4113631,59.29,49.68,57.16,56.15,10,1,1,0,0,5,1,4,1,278,1559113.4,1340743.9,362406.56,0,0,0,3796.7988 +11180,13651,24386,24385,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.0724621,8.3368406,6,0,40.16877,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3238668,8.3499413,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,0,1,4,1,278,1559113.4,1340743.9,362406.56,0,0,0,3796.7988 +11181,13652,24387,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,9.1058817,9.3518887,0,0,0,-922.4339,0,3,3,2021,6,0,50,50,1,0,0,28.514578,28.514578,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,524,479871.28,315301.91,165981.41,0,6225.2285,0,2539.4309 +11182,13653,24388,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,3.5649517,3.5079348,0,0,-1063.9192,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,2.1674426,7.2445717,17.415104,0,1,1,0,2.1212735,3.6341383,44.84,44.4,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,424,-38225.496,23772.791,0,0,0,1311.5375,738.64331 +11183,13654,24389,24390,-9,-9,1,1,60,0,1,0,2,2,-9,0,4,9.1819906,9.0710793,6.210053,10,8,50.524231,0,2,2,2021,9,0,41,45,1,0,0,26.46003,26.46003,.05,.05,0,0,0,0,0,0,0,0,0,6.3783903,6.4979105,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,2564.3333,600640.63,179135.31,756441.69,273118.19,0,0,3234.1448 +11183,13654,24390,24389,-9,-9,1,0,52,0,1,0,2,2,-9,0,4,0,0,0,10,-8,-23.319649,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,9,4,5,1,2564.3333,600640.63,179135.31,756441.69,273118.19,0,0,3234.1448 +11183,13654,24391,-9,24390,24389,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1222.8595,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,2564.3333,600640.63,179135.31,756441.69,273118.19,0,0,3234.1448 +11184,13655,24392,24393,-9,-9,1,1,61,1,1,0,3,3,-9,1,3,0,0,0,1,-2,0,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,49,49,48,7,1,1,0,0,0,5,1,0,258,30314.775,0,0,0,3109.7512,0,1139.2587 +11184,13655,24393,24392,-9,-9,1,0,63,1,1,0,3,3,-9,1,3,0,0,0,1,2,0,-9,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,49,48,50,49,7,1,1,0,1,0,5,1,0,258,30314.775,0,0,0,3109.7512,0,1139.2587 +11184,13656,24394,-9,24395,-9,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-884.11163,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,1,0,568,24867.855,0,0,0,0,-35.353672,382.27136 +11184,13656,24395,-9,24393,24392,1,0,25,1,1,0,2,2,-9,0,4,0,0,0,0,0,-877.80463,-9,3,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,46,58,-9,-9,7,1,1,1,0,0,5,1,0,568,24867.855,0,0,0,0,-35.353672,382.27136 +11184,13657,24396,-9,24393,24392,1,1,24,1,1,0,2,2,-9,1,4,0,0,0,0,0,-852.81519,-9,3,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,5,1,0,291,56413.953,0,0,0,0,0,0 +11185,13658,24397,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,6.9631252,7.2960391,0,0,-1031.2826,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.84984529,7.0728865,58.36,24.57,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,252,977116.63,604741,208314.23,0,0,0,714.64893 +11186,13659,24398,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,8.4227762,8.4763374,0,1,6,24.052803,0,2,3,2021,12,1,37,41,1,1,0,14.35912,14.35912,0,0,0,0,0,0,0,0,0,0,0,0,0,43.93,55.66,58.84,47.11,8.333333333333334,1,1,0,0,9,11,4,0,243,70531.664,-48079.77,82906.25,87860.594,10246.887,0,2015.7144 +11186,13660,24399,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.9915915,7.7796369,0,1,-6,63.196739,-9,-9,-9,2021,9,0,35,0,1,0,0,8.3940926,8.3940926,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.84,47.11,43.93,55.66,8.333333333333334,1,1,0,0,1,11,4,0,162,-107136.34,18035.609,0,0,1416.8502,0,2130.5227 +11187,13661,24400,-9,24401,24402,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-973.68359,0,2,1,2021,22,10,0,21,3,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,17.16,53.26,-9,-9,1.666666666666667,1,1,0,0,3,10,1,0,801,-22804.779,0,0,0,0,0,372.92374 +11187,13662,24401,24402,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,7.6462474,7.7572942,0,12,2,-7.265142,0,-9,-9,2021,23,7,16,16,1,7,0,18.926394,18.926394,0,0,0,0,0,0,0,0,1,0,1,0,0,35.09,21.84,52.43,55.57,8.333333333333334,4,5,0,1,5,10,3,0,531,1065528,457960.13,560394.19,0,0,0,2317.4297 +11187,13662,24402,24401,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,6.3113117,6.4137397,0,12,-2,53.833851,0,2,2,2021,8,1,40,40,1,1,0,2.1843264,2.1843264,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,52.43,55.57,35.09,21.84,8.333333333333334,4,2,0,0,13,10,3,0,531,1065528,457960.13,560394.19,0,0,0,2317.4297 +11188,13663,24403,-9,24404,24405,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-971.59454,-9,1,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,9,5,1,309,768645.13,65516.984,692877.19,0,12536.343,0,6343.8042 +11188,13663,24404,24405,-9,-9,1,0,56,0,1,0,1,1,-9,0,5,9.7664003,9.6419611,0,16,16,27.525667,0,-9,-9,2021,8,0,35,35,1,0,0,50.750687,50.750687,0,0,0,0,0,0,0,0,1,1,0,.33613375,0,57.06,57.76,40.48,60.05,8.333333333333334,1,1,0,0,9,9,5,1,309,768645.13,65516.984,692877.19,0,12536.343,0,6343.8042 +11188,13663,24405,24404,-9,-9,1,1,40,0,1,0,3,3,-9,0,4,7.7884665,7.968883,0,19,-16,121.18028,0,3,3,2021,11,0,39,39,1,0,0,6.9467797,6.9467797,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,57.06,57.76,6.666666666666667,1,1,0,1,11,9,5,1,309,768645.13,65516.984,692877.19,0,12536.343,0,6343.8042 +11189,13664,24406,24407,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1630468,8.3946972,10,0,2.380403,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7578063,8.58673,51.25,46.55,54.75,39.4,8.333333333333334,1,1,0,0,0,9,4,1,1622,942457.06,585199.75,240233.86,0,0,0,3898.4241 +11189,13664,24407,24406,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,7.4950504,7.275507,10,0,40.522694,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2688689,7.4225531,54.75,39.4,51.25,46.55,8.333333333333334,1,1,0,0,5,9,4,1,1622,942457.06,585199.75,240233.86,0,0,0,3898.4241 +11190,13665,24408,-9,24409,24410,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-921.98376,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,1339,197788.13,-25752.385,226776.27,131251.23,18607.199,0,2712.7822 +11190,13665,24409,24410,-9,-9,1,0,27,1,1,0,1,1,-9,0,4,7.5266418,7.6678619,0,4,-2,47.450806,0,-9,-9,2021,13,2,28,30,1,2,0,9.4482574,9.4482574,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,34.98,22.05,6.666666666666667,1,1,0,0,10,6,4,0,1339,197788.13,-25752.385,226776.27,131251.23,18607.199,0,2712.7822 +11190,13665,24410,24409,-9,-9,1,1,29,1,1,0,2,2,-9,0,2,8.1440058,8.1753168,0,4,2,-66.819756,0,2,3,2021,23,8,55,50,1,8,0,7.8826838,7.8826838,.05,.05,0,0,0,0,0,0,1,0,1,0,0,34.98,22.05,48.87,58.55,6.666666666666667,1,1,0,0,12,6,4,0,1339,197788.13,-25752.385,226776.27,131251.23,18607.199,0,2712.7822 +11191,13666,24411,-9,24413,24412,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-964.79663,-9,3,3,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11191,13666,24412,24413,-9,-9,1,1,56,0,2,0,3,3,-9,0,3,8.2731619,8.6790638,0,34,2,-109.50026,0,3,3,2021,6,0,38,37,1,0,0,14.948237,14.948237,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,53.46,37.24,8.333333333333334,1,1,0,0,14,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11191,13666,24413,24412,-9,-9,1,0,54,0,2,0,3,3,-9,0,3,8.1697512,8.0240564,0,34,-2,-43.756145,0,2,2,2021,7,0,38,38,1,0,0,11.988008,11.988008,0,0,0,0,0,0,0,0,1,1,0,0,0,53.46,37.24,58.32,50.22,8.333333333333334,1,1,0,0,12,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11191,13666,24414,-9,24413,24412,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1075.274,-9,3,3,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,485.25,2480853,2254261.3,448024,234655.78,0,0,2990.7356 +11192,13667,24415,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.602356,8.7865114,0,0,0,-1012.8615,0,1,3,2021,12,0,37,37,1,0,0,16.6607,16.6607,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,35.45,52.95,-9,-9,3.333333333333333,1,1,0,0,11,5,5,0,187,13091.628,-4705.855,85669.547,60684.254,1194.4257,0,1649.8508 +11193,13668,24416,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.147285,7.4588342,0,0,-976.17645,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7633495,7.5050426,42.75,23.98,-9,-9,5,1,1,0,0,0,9,3,0,121,334310.5,191581.59,214689.73,0,0,0,1441.427 +11194,13669,24417,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.6563072,7.2379246,0,0,-1010.8023,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.5920515,7.8850031,54.47,40.3,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,370,919378.38,531221.38,175953.34,0,1772.3397,2542.7634,1219.2524 +11195,13670,24418,24419,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.0642967,8.1286459,0,4,1,141.54332,-9,-9,-9,2021,8,0,37,0,1,0,0,8.4115143,8.4115143,.05,.05,0,0,0,0,0,2,0,0,0,.65104711,0,54.74,57.22,39.41,49.43,8.333333333333334,1,1,0,0,8,13,4,0,486.5,3172.3984,6681.9224,0,0,0,1394.5178,2229.3865 +11195,13670,24419,24418,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.7726512,7.7349648,0,4,-1,54.048809,0,3,3,2021,12,1,38,40,1,1,0,9.6682606,9.6682606,0,0,0,0,0,0,0,7,0,0,0,0,0,39.41,49.43,54.74,57.22,6.666666666666667,1,1,0,0,7,13,4,0,486.5,3172.3984,6681.9224,0,0,0,1394.5178,2229.3865 +11195,13671,24420,-9,24419,24418,1,1,19,0,0,0,2,2,-9,0,5,7.4938512,7.2673368,0,0,0,-972.3913,-9,2,2,2021,6,0,36,0,1,0,1,6.593401,6.593401,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,509,-181792.89,69281.641,0,0,0,0,392.42111 +11196,13672,24421,24422,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7785892,8.5962172,0,14,3,107.92877,-9,2,2,2021,6,0,49,0,1,0,0,15.939184,15.939184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,5,1,1,0,0,15,9,5,1,1314,55081.594,53147.348,0,0,0,972.26929,3589.27 +11196,13672,24422,24421,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.259798,7.9540267,0,14,-3,-5.5603247,-9,-9,-9,2021,6,0,35,0,1,0,0,9.8559818,9.8559818,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,14,9,5,1,1314,55081.594,53147.348,0,0,0,972.26929,3589.27 +11196,13673,24423,-9,24422,24421,1,1,23,0,0,0,2,2,-9,0,4,8.0884438,8.2131186,0,0,0,-1018.2474,-9,2,2,2021,6,0,45,0,1,0,1,10.419563,10.419563,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,5,1,1,0,0,5,9,4,1,1327,48797.539,12804.687,0,0,0,1410.9651,1020.5479 +11197,13674,24424,24425,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,63,1,-26.999317,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,45,57.48,47.92,8,1,1,0,0,0,5,2,0,886,513793.5,129148.31,223734.97,0,0,0,1936.262 +11197,13674,24425,24424,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9900193,6.9478836,63,-1,89.234985,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7997212,57.48,47.92,53,45,6.666666666666667,1,1,0,0,5,5,2,0,886,513793.5,129148.31,223734.97,0,0,0,1936.262 +11198,13675,24426,24428,-9,-9,1,0,45,0,3,0,2,2,-9,0,4,0,0,0,8,0,37.287483,0,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.79,52.62,8.333333333333334,1,1,0,0,9,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24427,-9,24426,24428,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.26862,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24428,24426,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,6.9453993,7.2957067,0,8,0,-85.198341,0,-9,-9,2021,6,0,35,35,1,0,0,3.308512,3.308512,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,55.79,52.62,8.333333333333334,1,1,0,0,12,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24429,-9,24426,24428,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-907.89032,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11198,13675,24430,-9,24426,24428,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.9956,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,2,1,1089.2,12377.206,-8744.6631,0,0,5887.6353,1173.7976,1668.5671 +11199,13676,24431,-9,24432,24433,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-918.66449,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,885,2305954.8,1624291.3,589860.94,96682.438,0,0,2795.4185 +11199,13676,24432,24433,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,7.2656808,7.5077648,0,12,4,125.25289,0,2,2,2021,7,0,25,28,1,0,0,7.0317888,7.0317888,.05,.05,0,0,0,0,0,2,1,1,0,7.5099483,0,53.9,52.09,48.78,39.62,8.333333333333334,1,1,0,0,14,12,5,1,885,2305954.8,1624291.3,589860.94,96682.438,0,0,2795.4185 +11199,13676,24433,24432,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,9.6439915,9.3294907,0,12,-4,-73.755539,0,1,1,2021,12,1,40,50,1,1,0,38.170498,38.170498,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.78,39.62,53.9,52.09,8.333333333333334,4,2,0,0,14,12,5,1,885,2305954.8,1624291.3,589860.94,96682.438,0,0,2795.4185 +11200,13677,24434,24435,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.3901558,9.1041136,0,6,-5,-69.685387,0,2,2,2021,7,0,30,40,1,0,0,32.6539,32.6539,.05,.05,0,0,0,0,0,0,0,0,0,5.9194746,0,57.16,56.15,52.12,44.79,8.333333333333334,1,1,0,0,7,10,5,1,472.5,1907099.8,1622878,234764.58,0,10187.238,0,4336.4858 +11200,13677,24435,24434,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.1742053,7.270226,0,6,5,-32.401051,0,2,2,2021,5,0,18,0,1,0,0,7.4117689,7.4117689,.05,.05,0,0,0,0,0,0,0,0,0,4.987144,0,52.12,44.79,57.16,56.15,8.333333333333334,1,1,0,0,4,10,5,1,472.5,1907099.8,1622878,234764.58,0,10187.238,0,4336.4858 +11201,13678,24436,24437,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.262332,8.2061911,0,41,0,-15.382183,0,3,2,2021,9,0,12,15,1,0,0,46.998638,46.998638,.05,.05,0,0,0,0,0,0,0,0,0,4.0306211,0,58.07,46.29,57.76,30.58,8.333333333333334,1,1,0,0,5,4,5,1,343,1598938.3,1085871,293846.44,0,0,0,4340.2207 +11201,13678,24437,24436,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.477807,8.7538404,6.4144754,41,0,32.221725,0,3,3,2021,7,0,70,60,1,0,0,7.4713058,7.4713058,.05,.05,0,0,0,0,0,0,0,0,0,5.8841109,6.8014584,57.76,30.58,58.07,46.29,10,1,1,0,0,5,4,5,1,343,1598938.3,1085871,293846.44,0,0,0,4340.2207 +11202,13679,24438,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,0,0,-886.32281,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56,53,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,335,-165045.86,0,0,0,0,0,742.94684 +11203,13680,24439,-9,24441,24440,1,0,36,0,0,0,1,1,-9,0,3,8.5779438,8.6142302,0,0,0,-989.96454,-9,2,2,2021,17,6,42,0,1,6,0,16.507509,16.507509,.05,.05,0,0,0,0,0,0,1,1,0,2.1779037,0,40.27,50.59,-9,-9,6.666666666666667,1,1,0,0,10,13,5,1,1144,-85151.469,45825.23,145117.97,132840.7,21053.412,0,2195.7517 +11203,13681,24440,24441,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,7.5672107,7.8322978,35,2,-64.297562,-9,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.4149706,7.892396,60.02,56.42,53.99,48.04,10,1,1,0,0,9,13,5,1,558.5,1144681,450066.06,389823.84,0,0,0,5030.6465 +11203,13681,24441,24440,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.7248354,8.5654736,0,1,-2,115.75867,-9,-9,-9,2021,8,0,37,0,1,0,0,21.302395,21.302395,0,0,0,0,0,0,0,0,1,1,0,1.0128063,0,53.99,48.04,60.02,56.42,6.666666666666667,1,1,0,0,10,13,5,1,558.5,1144681,450066.06,389823.84,0,0,0,5030.6465 +11204,13682,24442,24443,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.8618517,8.8791313,0,4,2,74.774338,0,3,3,2021,12,0,45,45,1,0,0,15.83581,15.83581,0,0,0,0,0,0,0,0,0,0,0,3.2475398,0,42.3,57.54,60.02,56.42,8.333333333333334,1,1,0,0,7,7,5,1,686,966985.94,863169.5,407985.5,208204.19,0,0,4851.5205 +11204,13682,24443,24442,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.9905186,8.9846401,0,4,-2,64.03215,0,-9,-9,2021,6,0,48,42,1,0,0,16.370203,16.370203,.05,.05,0,0,0,0,0,0,0,0,0,1.5078397,0,60.02,56.42,42.3,57.54,8.333333333333334,1,1,0,0,8,7,5,1,686,966985.94,863169.5,407985.5,208204.19,0,0,4851.5205 +11205,13683,24444,24445,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,46,-2,-196.7692,0,3,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,30.4,22.85,48.55,19.9,3.333333333333333,1,1,0,1,0,11,2,0,160.5,6423.0625,17905.553,0,0,0,0,1375.5861 +11205,13683,24445,24444,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,6.7444339,6.5825801,46,2,-98.503403,0,2,2,2021,15,3,0,40,3,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.4774423,48.55,19.9,30.4,22.85,0,1,1,0,1,7,11,2,0,160.5,6423.0625,17905.553,0,0,0,0,1375.5861 +11206,13684,24446,24447,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.6492844,7.4410324,6,2,-11.588288,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4515281,7.8312979,59.44,25.54,54.2,57.49,8.333333333333334,1,1,0,0,1,2,4,1,652.5,2426095,667622.63,426660.78,0,0,0,3409.6968 +11206,13684,24447,24446,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,6.3471017,7.7763739,7.4889808,6,-2,-25.857311,0,2,2,2021,6,0,15,25,1,0,0,4.3925085,4.3925085,0,0,0,0,0,0,0,0,1,1,0,1.6355896,7.6036401,54.2,57.49,59.44,25.54,10,1,1,0,0,8,2,4,1,652.5,2426095,667622.63,426660.78,0,0,0,3409.6968 +11207,13685,24448,-9,-9,-9,1,1,55,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1012.2802,0,2,2,2021,36,12,0,37,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.07,24.04,-9,-9,1.666666666666667,1,1,0,0,13,2,1,0,1443,117223.63,0,0,0,0,0,787.68256 +11208,13686,24449,-9,24450,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1055.8405,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,3205,44867.094,0,0,0,0,0,878.94495 +11208,13686,24450,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,0,5.902668,5.8477964,0,0,-925.93842,0,3,2,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.0240703,0,57.16,56.15,-9,-9,6.666666666666667,1,1,1,0,2,6,2,1,3205,44867.094,0,0,0,0,0,878.94495 +11209,13687,24451,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,7.7901096,7.7652402,0,0,-1061.5649,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,2.8009057,7.494092,60.27,49.27,-9,-9,10,1,1,0,0,0,6,3,1,449,605896.81,345520.75,231332.77,0,0,0,1848.7687 +11209,13688,24452,-9,-9,24451,1,1,48,0,0,0,2,2,-9,0,3,7.6600513,7.4507089,0,0,0,-1057.8514,0,2,1,2021,7,0,42,0,1,0,0,6.0100327,6.0100327,.05,.05,0,0,0,0,0,0,1,0,1,0,0,55.02,43.9,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,140,215476.66,-83116.32,0,0,0,0,428.34534 +11210,13689,24453,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,7.7258554,7.6910582,0,0,-984.57886,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5196323,7.7595949,52.14,43.99,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,568,649240.69,328273.81,307391.88,0,0,0,1625.953 +11211,13690,24454,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.0287,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.71866661,0,49,34,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,466,154800.69,0,0,0,0,0,1833.5647 +11212,13691,24455,24456,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,8.6672201,8.2269764,6.4501171,8,6,48.318504,0,-9,-9,2021,10,0,40,25,1,1,0,16.843479,16.843479,.05,.05,0,0,0,0,0,0,0,0,0,0,6.6720991,51,49,39.33,58.88,7,1,1,0,0,1,4,5,1,393.5,143244.72,-79247.086,156190.22,73468.469,427.68124,0,7062.9556 +11212,13691,24456,24455,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,9.0787363,9.0506601,0,34,-6,-37.963333,0,3,-9,2021,22,9,23,23,1,9,0,39.055668,39.055668,0,0,0,0,0,0,0,0,0,0,0,6.8775516,0,39.33,58.88,51,49,8.333333333333334,1,1,0,0,7,4,5,1,393.5,143244.72,-79247.086,156190.22,73468.469,427.68124,0,7062.9556 +11213,13692,24457,24458,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.1314592,8.3907633,0,8,3,121.75429,0,2,2,2021,8,0,37,37,1,0,0,12.275323,12.275323,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,37.74,51.32,6.666666666666667,1,1,0,0,9,11,5,1,1205,831157.75,975148.25,68598.078,70172.844,23292.885,2272.8521,3477.1829 +11213,13692,24458,24457,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.3472252,8.6839066,0,8,-3,-62.827297,0,2,2,2021,12,0,35,35,1,0,0,15.077872,15.077872,0,0,0,0,0,0,0,0,1,1,0,0,0,37.74,51.32,55.36,51.57,6.666666666666667,1,1,0,0,7,11,5,1,1205,831157.75,975148.25,68598.078,70172.844,23292.885,2272.8521,3477.1829 +11214,13693,24459,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.9576292,8.8962183,0,0,0,-1074.3927,0,3,3,2021,15,3,38,38,1,3,0,19.810598,19.810598,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,33.31,51.41,-9,-9,5,1,1,0,0,15,12,5,1,1164,239297.81,-56457.277,117208.41,-3399.6057,4792.8286,0,3001.3088 +11215,13694,24460,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.2769051,8.1249714,0,0,0,-899.3197,0,2,-9,2021,9,0,41,41,1,0,0,9.1956997,9.1956997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,11,7,4,0,461,28580.418,-62057.391,0,0,0,0,1075.1281 +11216,13695,24461,-9,24464,24462,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1087.7457,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11216,13695,24462,24464,-9,-9,1,1,47,0,2,0,1,1,-9,0,5,9.0144424,8.8136377,0,21,0,35.572926,0,2,1,2021,10,0,42,41,1,0,0,19.269756,19.269756,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.13,57.22,49.41,58.28,8.333333333333334,1,1,0,0,14,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11216,13695,24463,-9,24464,24462,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.6705,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11216,13695,24464,24462,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.6844521,8.734374,0,20,0,-171.32411,0,2,2,2021,8,0,38,43,1,0,0,16.586222,16.586222,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,52.13,57.22,8.333333333333334,1,1,0,0,10,10,5,1,831,1117633.4,641508.38,350985.56,0,0,0,4827.3989 +11217,13696,24465,24466,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.1017227,7.9683919,0,2,-5,31.375929,0,-9,-9,2021,7,0,45,45,1,0,0,9.6507072,9.6507072,0,0,0,0,0,0,0,0,0,0,0,6.2376938,0,62.11,45.63,57.16,56.15,8.333333333333334,1,1,0,0,13,10,5,0,785.5,1588746.5,1087750.3,446275.06,0,985.47955,0,4002.8513 +11217,13696,24466,24465,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.8062992,8.6403093,0,2,5,-67.752281,0,2,2,2021,8,0,40,35,1,0,0,16.325596,16.325596,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,62.11,45.63,8.333333333333334,1,1,0,0,13,10,5,0,785.5,1588746.5,1087750.3,446275.06,0,985.47955,0,4002.8513 +11218,13697,24467,24468,-9,-9,1,1,66,0,3,0,1,1,-9,0,2,0,1.8046625,2.059103,37,3,-25.873196,0,3,2,2021,6,0,0,23,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8906699,1.8884608,57.57,49.69,49,48,8.333333333333334,2,3,0,0,13,4,2,1,187.5,146378.56,109507.69,191770.16,113775.95,0,0,559.07733 +11218,13697,24468,24467,-9,-9,1,0,63,0,3,0,3,3,-9,0,3,0,0,0,37,-3,66.102928,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,57.57,49.69,7,2,3,1,0,0,4,2,1,187.5,146378.56,109507.69,191770.16,113775.95,0,0,559.07733 +11218,13698,24469,-9,24471,24473,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1045.8804,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24470,-9,24471,24473,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.8109,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24471,24473,-9,-9,1,0,32,0,3,0,1,1,-9,0,4,0,0,0,4,-2,130.21996,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,38.8,59.15,7,2,3,0,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24472,-9,24471,24473,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1050.2527,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11218,13698,24473,24471,24468,24467,1,1,34,0,3,0,1,1,-9,0,4,7.7442622,7.9771204,0,4,2,62.262169,0,3,2,2021,17,5,32,33,1,5,0,10.975805,10.975805,0,0,0,0,0,0,0,0,1,1,0,0,0,38.8,59.15,47,57,6.666666666666667,2,3,0,1,11,4,2,1,759.40002,-55342.547,0,166518.84,104257.75,0,6756.9595,787.55188 +11219,13699,24474,24475,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.5217505,8.6688194,0,8,-2,-96.918243,0,2,2,2021,12,2,41,41,1,2,0,14.874267,14.874267,.05,.05,0,0,0,0,0,7,0,0,0,3.4591367,0,43.87,37.09,53,54,3.333333333333333,1,1,0,0,8,10,5,0,1225,626392.5,345623.63,189501.5,73733.109,4483.334,2191.1536,3477.1782 +11219,13699,24475,24474,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.1992483,8.3686028,0,8,2,-156.12788,0,-9,-9,2021,9,0,37,30,1,1,0,11.662121,11.662121,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,43.87,37.09,8,1,1,0,0,1,10,5,0,1225,626392.5,345623.63,189501.5,73733.109,4483.334,2191.1536,3477.1782 +11220,13700,24476,-9,24477,24478,1,0,16,0,0,0,3,3,-9,0,2,0,0,0,0,0,-829.84186,-9,1,1,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.75,55.66,-9,-9,5,1,1,0,0,0,2,5,1,795,2686332.5,2290670.5,385746.66,25470.109,0,0,4947.6035 +11220,13700,24477,24478,-9,-9,1,0,51,0,0,0,1,1,-9,0,1,8.8062105,8.769578,0,24,-4,-110.66337,0,3,3,2021,11,1,50,45,1,1,0,16.106201,16.106201,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,14.72,57.57,49.69,6.666666666666667,1,1,0,0,10,2,5,1,795,2686332.5,2290670.5,385746.66,25470.109,0,0,4947.6035 +11220,13700,24478,24477,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.6550913,8.5035334,0,24,4,-15.821489,0,2,2,2021,7,0,40,40,1,0,0,15.76341,15.76341,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,51.17,14.72,8.333333333333334,1,1,0,0,10,2,5,1,795,2686332.5,2290670.5,385746.66,25470.109,0,0,4947.6035 +11220,13701,24479,-9,24477,24478,1,1,18,0,0,0,2,2,1,0,3,5.8947635,5.9205651,0,0,0,-1165.3116,-9,1,1,2021,6,0,5,0,1,0,1,6.3896108,6.3896108,0,0,0,0,0,0,0,0,1,1,0,0,0,58.5,44.67,-9,-9,10,1,1,0,0,1,2,2,1,133,-6247.3413,0,0,0,0,0,-189.23889 +11221,13702,24480,24481,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,8.0987997,8.0546751,50,2,-73.358536,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8005395,59.99,44.01,46.4,21.9,8.333333333333334,1,1,0,0,0,8,5,1,1019,1523736,732895.5,391929.06,0,21458.303,0,5120.1582 +11221,13702,24481,24480,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,9.1882668,8.5965519,50,-2,13.081926,0,-9,-9,2021,25,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.5540876,46.4,21.9,59.99,44.01,5,1,1,0,0,0,8,5,1,1019,1523736,732895.5,391929.06,0,21458.303,0,5120.1582 +11222,13703,24482,-9,24486,24484,1,1,15,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1115.3236,-9,2,1,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24483,-9,24486,24484,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1002.2783,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24484,24486,-9,-9,1,1,38,0,3,0,1,1,-9,0,2,8.4728937,8.4444571,0,15,3,111.08007,0,2,2,2021,23,10,38,38,1,10,0,16.149611,16.149611,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,41.06,62.04,3.333333333333333,1,1,0,1,13,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24485,-9,24486,24484,1,1,11,0,3,1,3,0,-9,0,2,0,0,0,0,0,-995.33795,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11222,13703,24486,24484,-9,-9,1,0,35,0,3,0,2,2,-9,0,4,6.3663783,6.6186352,6.2937484,15,-3,55.064514,0,2,2,2021,24,9,17,18,1,9,0,4.0947399,4.0947399,0,0,0,0,0,0,0,0,1,1,0,6.8760133,0,41.06,62.04,49.28,52.09,6.666666666666667,1,1,0,0,6,2,3,1,704.59998,157603.75,31001.291,91392.93,90603.938,10694.851,0,2852.9629 +11223,13704,24487,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.5101585,8.0522451,0,0,0,-1140.757,0,3,3,2021,10,0,55,55,1,0,0,10.064677,10.064677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,-9,-9,8.333333333333334,2,3,0,0,9,6,4,1,276,204300.2,274623.56,170647.03,56538.543,0,0,2552.4658 +11223,13705,24488,-9,24487,-9,1,1,26,0,0,0,2,2,-9,0,4,7.9889188,7.8258953,0,0,0,-1090.5948,0,3,-9,2021,10,0,48,48,1,1,1,7.6895528,7.6895528,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,7,2,3,0,0,1,6,4,1,1375,-196521.47,-42504.395,0,0,0,0,1215.6029 +11223,13706,24489,-9,24487,-9,1,1,24,0,0,0,2,2,-9,0,4,8.2345076,8.4494238,0,0,0,-979.8819,0,3,-9,2021,10,0,40,40,1,1,1,12.790132,12.790132,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,4,1,319,248079.66,69886.18,0,0,0,0,2083.8501 +11224,13707,24490,24492,-9,-9,1,1,57,0,1,0,1,1,-9,0,4,8.3845072,8.1271381,0,12,3,-72.917381,0,-9,-9,2021,8,0,57,39,1,0,0,8.7272348,8.7272348,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.17,49.39,8.333333333333334,2,3,0,0,11,10,4,1,1059,1500873.1,437777.09,584684.75,0,0,0,2239.4631 +11224,13707,24491,-9,24492,24490,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1006.6669,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60882604,0,46.34,61.24,-9,-9,6.666666666666667,2,3,0,0,0,10,4,1,1059,1500873.1,437777.09,584684.75,0,0,0,2239.4631 +11224,13707,24492,24490,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,7.7306333,7.8990622,0,21,-3,64.153969,0,3,2,2021,11,1,31,31,1,1,0,8.2556067,8.2556067,0,0,0,0,0,0,0,0,1,1,0,0,0,51.17,49.39,51.83,57.2,8.333333333333334,2,3,0,0,7,10,4,1,1059,1500873.1,437777.09,584684.75,0,0,0,2239.4631 +11224,13708,24493,-9,24492,24490,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-975.5,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9586415,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,0,10,1,1,1209,-165247.58,0,0,0,0,0,1348.1932 +11225,13709,24494,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-924.95349,0,3,3,2021,19,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.35,26.31,-9,-9,3.333333333333333,2,3,0,1,0,6,2,1,650,-47324.898,0,0,0,-1123.6163,0,734.69086 +11226,13710,24495,24496,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.0839052,7.124023,0,35,6,77.92865,0,1,1,2021,20,7,38,30,1,7,0,4.006834,4.006834,0,0,0,0,0,0,0,0,0,0,0,0,0,34.95,34.57,43.43,46.43,5,2,3,0,0,5,2,4,1,1803.5,243130.03,-882.82227,216821.88,0,0,0,2567.8599 +11226,13710,24496,24495,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.31359,7.9274306,0,35,-6,18.629433,0,3,3,2021,13,2,45,57,1,2,0,9.1007481,9.1007481,0,0,0,0,0,0,0,0,0,0,0,7.0536394,0,43.43,46.43,34.95,34.57,8.333333333333334,2,3,0,0,7,2,4,1,1803.5,243130.03,-882.82227,216821.88,0,0,0,2567.8599 +11226,13711,24497,-9,24496,24495,1,0,26,0,0,0,1,1,-9,0,4,8.0586615,8.2040558,0,0,0,-970.28131,0,1,2,2021,12,1,37,39,1,1,1,11.004499,11.004499,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,2,3,0,0,4,2,4,1,529,95704.141,0,0,0,0,0,1206.6426 +11226,13712,24498,-9,24496,24495,1,1,22,0,0,1,2,0,0,0,5,0,0,0,0,0,-960.13953,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.74,56.95,-9,-9,10,2,3,0,0,1,2,1,1,87,0,0,0,0,0,0,838.19086 +11226,13713,24499,-9,24496,24495,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-979.32745,-9,1,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,2,1,1,163,7401.5132,0,0,0,0,0,-688.94684 +11227,13714,24500,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,6.8467851,7.4784632,6.7788854,0,0,-926.32843,0,2,2,2021,12,1,16,21,1,1,0,6.0071249,6.0071249,0,0,0,0,0,0,0,0,1,1,0,7.1781712,0,46.8,57.03,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,1055,-77588.938,0,0,0,0,0,2824.5396 +11228,13715,24501,24502,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.9795327,8.141531,0,6,1,70.161926,0,-9,-9,2021,10,0,37,38,1,0,0,8.2431288,8.2431288,0,0,0,0,0,0,0,7,0,0,0,0,0,39.21,56.41,60.11,41.26,5,1,1,0,0,6,5,4,1,1107,850156.25,213230.88,428472.09,0,0,0,2937.469 +11228,13715,24502,24501,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.1473494,7.8706408,0,6,-1,-45.196606,0,2,2,2021,8,1,39,38,1,1,0,9.4436131,9.4436131,.05,.05,0,0,0,0,0,2,0,0,0,3.0696933,0,60.11,41.26,39.21,56.41,8.333333333333334,1,1,0,0,6,5,4,1,1107,850156.25,213230.88,428472.09,0,0,0,2937.469 +11229,13716,24503,24504,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.1116905,8.8720407,0,6,-4,71.892021,0,3,-9,2021,12,1,44,41,1,1,0,22.780426,22.780426,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,62.49,55.09,8.333333333333334,1,1,0,0,7,9,5,1,281,470837.31,33378.523,422236.91,59561.77,0,0,3743.0945 +11229,13716,24504,24503,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.8122644,7.717773,0,6,4,-37.795586,0,2,2,2021,8,0,20,35,1,0,0,11.778793,11.778793,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,57.33,53.46,8.333333333333334,1,1,0,0,7,9,5,1,281,470837.31,33378.523,422236.91,59561.77,0,0,3743.0945 +11230,13717,24505,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.3294296,8.0215187,0,0,0,-993.77972,0,3,2,2021,12,0,39,39,1,0,0,11.372785,11.372785,0,0,0,0,0,0,0,2,0,0,0,0,0,40.48,60.05,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,458,-7340.5767,-54690.559,0,0,0,5217.7578,985.69037 +11231,13718,24506,24508,-9,-9,1,0,31,1,1,0,2,2,-9,0,5,7.9564462,8.0185156,0,6,-3,-28.178375,0,2,2,2021,9,0,22,22,1,0,0,15.213638,15.213638,0,0,0,0,0,0,0,0,1,1,0,3.3970311,0,46.06,60.24,54.79,55.86,10,1,1,0,0,7,11,5,1,1389.3334,72368.188,41430.012,160840.08,117822.87,23238.025,0,4476.0117 +11231,13718,24507,-9,24506,24508,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.7253,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,1389.3334,72368.188,41430.012,160840.08,117822.87,23238.025,0,4476.0117 +11231,13718,24508,24506,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.9642248,8.7057514,3.6839259,6,3,-16.667664,0,-9,-9,2021,8,0,45,49,1,0,0,20.869467,20.869467,.05,.05,0,0,0,0,0,0,1,1,0,3.954577,0,54.79,55.86,46.06,60.24,6.666666666666667,1,1,0,0,7,11,5,1,1389.3334,72368.188,41430.012,160840.08,117822.87,23238.025,0,4476.0117 +11232,13719,24509,24510,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.4547882,8.6290054,0,12,1,-121.36343,0,2,2,2021,10,0,46,46,1,0,0,14.006975,14.006975,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,38.75,37.7,8.333333333333334,1,1,0,0,13,11,5,1,879,387956.94,228437.28,218567.69,106058.59,-1594.4938,3431.925,3065.125 +11232,13719,24510,24509,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,7.4154949,7.4197922,0,12,-1,101.8597,0,2,2,2021,20,9,20,0,1,9,0,8.3524885,8.3524885,.05,.05,0,0,0,0,0,7,0,0,0,.6728406,0,38.75,37.7,57.16,56.15,6.666666666666667,1,1,0,0,10,11,5,1,879,387956.94,228437.28,218567.69,106058.59,-1594.4938,3431.925,3065.125 +11233,13720,24511,-9,24513,24512,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1044.8986,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11233,13720,24512,24513,-9,-9,1,1,53,0,2,0,1,1,-9,0,2,9.6605835,9.9515486,0,8,2,26.590471,0,3,3,2021,7,0,55,50,1,0,0,29.294294,29.294294,.05,.05,.05,0,0,0,0,0,0,0,0,5.7168274,0,49.87,50.46,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11233,13720,24513,24512,-9,-9,1,0,51,0,2,0,1,1,-9,0,5,8.8832541,8.797904,0,8,-2,55.136192,0,2,2,2021,7,0,20,46,1,0,0,31.977524,31.977524,.05,.05,0,0,0,0,0,0,0,0,0,3.1068389,0,57.06,57.76,49.87,50.46,8.333333333333334,3,4,0,0,7,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11233,13720,24514,-9,24513,24512,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-972.16516,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,589.25,1185169.9,673143.69,344942.38,11742.813,6097.1636,0,7270.0259 +11234,13721,24515,24516,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.3294935,7.4040537,0,2,7,2.0023034,0,1,2,2021,12,0,50,60,1,0,0,4.0162344,4.0162344,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,38.01,61.37,5,1,1,0,0,8,11,3,1,795.5,88492.414,-63841.313,55131.473,71853.938,0,0,1797.2932 +11234,13721,24516,24515,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.7163706,7.5544181,0,2,-7,5.2357812,0,-9,-9,2021,13,3,40,0,1,3,0,5.7653384,5.7653384,.05,.05,0,0,0,0,0,7,0,0,0,0,0,38.01,61.37,49.04,55.86,6.666666666666667,1,1,0,0,1,11,3,1,795.5,88492.414,-63841.313,55131.473,71853.938,0,0,1797.2932 +11235,13722,24517,24518,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.0170717,7.8034072,38,-1,16.74094,0,2,2,2021,7,0,0,46,4,0,0,0,0,0,0,.05,0,0,0,0,2,0,0,0,8.6126089,7.9796925,58.15,52.91,56.33,51.02,10,1,1,0,0,11,7,3,1,854,962868.38,28910.572,500099,-1090.3386,0,0,2192.5806 +11235,13722,24518,24517,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,0,6.906199,6.6290627,38,1,-48.973854,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,4.2412848,6.9190836,56.33,51.02,58.15,52.91,8.333333333333334,1,1,0,0,0,7,3,1,854,962868.38,28910.572,500099,-1090.3386,0,0,2192.5806 +11236,13723,24519,-9,-9,-9,1,0,34,1,4,0,3,3,-9,0,2,7.6628032,7.1973419,0,0,0,-910.6059,0,2,2,2021,19,6,30,35,1,6,0,6.0520859,6.0520859,0,0,0,0,0,0,0,0,1,0,1,0,0,24.14,54.11,-9,-9,5,1,1,0,0,6,2,2,0,448,2086.335,-34797.242,0,0,-419.74686,342.6499,1413.6731 +11236,13723,24520,-9,24519,-9,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1075.8575,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,448,2086.335,-34797.242,0,0,-419.74686,342.6499,1413.6731 +11236,13723,24521,-9,24519,-9,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1138.644,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,2,2,0,448,2086.335,-34797.242,0,0,-419.74686,342.6499,1413.6731 +11237,13724,24522,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,0,0,0,0,-901.89758,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,7.3187513,0,0,1,1,0,6.1898937,0,35.08,32.7,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,330,-34817.871,0,0,0,0,0,1912.7058 +11238,13725,24523,24525,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,7.5345831,7.4086041,0,17,-1,66.733376,0,2,2,2021,5,0,40,45,1,0,0,4.1600742,4.1600742,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,58.15,52.91,8.333333333333334,1,1,0,0,9,5,3,1,1441.3334,75846.914,-19646.725,28632.805,32499.416,0,0,1717.775 +11238,13725,24524,-9,24523,24525,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.9211,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1441.3334,75846.914,-19646.725,28632.805,32499.416,0,0,1717.775 +11238,13725,24525,24523,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,7.8049183,7.4167156,0,18,1,-6.6760087,0,2,2,2021,6,0,10,8,1,0,0,19.347986,19.347986,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,54.79,55.86,0,1,1,0,0,9,5,3,1,1441.3334,75846.914,-19646.725,28632.805,32499.416,0,0,1717.775 +11239,13726,24526,24527,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,8.9103498,8.9883881,0,20,4,127.22508,0,3,2,2021,6,0,38,44,1,0,0,19.251879,19.251879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,49,56,6.666666666666667,1,1,0,0,11,2,5,1,200,1153414,1030703.6,127249.77,0,25340.355,0,4659.146 +11239,13726,24527,24526,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,8.3881721,8.4341002,0,9,-4,93.574417,0,-9,-9,2021,11,0,16,17,1,1,0,32.530373,32.530373,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,56,57.57,49.69,7,1,1,0,0,1,2,5,1,200,1153414,1030703.6,127249.77,0,25340.355,0,4659.146 +11240,13727,24528,24529,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.4284697,8.5642233,0,8,4,-76.663422,0,-9,-9,2021,10,0,39,44,1,1,0,15.854026,15.854026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,48,49,48,7,2,3,0,0,12,8,4,1,559,1154164.5,839320.63,352124.19,0,0,0,1888.6864 +11240,13727,24529,24528,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,0,0,43,-4,124.01435,0,3,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,51,48,7,2,3,0,0,0,8,4,1,559,1154164.5,839320.63,352124.19,0,0,0,1888.6864 +11240,13728,24530,-9,24529,24528,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-1072.6782,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,1,8,2,1,660,66468.992,0,0,0,-2187.4614,0,0 +11240,13729,24531,-9,24529,24528,1,1,20,0,0,1,3,0,0,0,4,0,0,0,0,0,-1075.6005,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,1,8,1,1,617,-9228.2295,0,0,0,0,0,0 +11241,13730,24532,-9,24533,24534,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.0464,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11241,13730,24533,24534,-9,-9,1,0,25,2,2,0,2,2,-9,0,4,0,0,0,9,-4,-124.9187,0,3,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.89,51.32,50,57,8.333333333333334,2,3,0,0,4,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11241,13730,24534,24533,-9,-9,1,1,29,2,2,0,2,2,-9,0,4,7.7368698,8.4285784,0,6,4,56.310944,0,-9,-9,2021,10,0,35,35,1,1,0,8.2946033,8.2946033,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,37.89,51.32,7,2,3,0,0,1,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11241,13730,24535,-9,24533,24534,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5966,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,943.5,41176.633,0,0,0,0,0,1651.63 +11242,13731,24536,-9,24537,-9,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1048.7616,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,3,4,-9,0,0,5,3,0,1177.5,173443.97,126587.2,117736.89,0,0,1614.9137,1762.3585 +11242,13731,24537,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,7.9093761,7.8730793,0,0,0,-834.83875,0,2,3,2021,10,0,26,30,1,0,0,10.149556,10.149556,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.66,47.77,-9,-9,6.666666666666667,3,4,0,0,12,5,3,0,1177.5,173443.97,126587.2,117736.89,0,0,1614.9137,1762.3585 +11243,13732,24538,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,0,0,-932.04236,0,2,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,20.71,-9,-9,5,1,1,0,0,0,12,1,0,2831,0,0,0,0,0,0,1383.0802 +11244,13733,24539,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,4.6262655,4.4468508,0,0,-980.89008,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2337403,4.4288588,23.7,42.27,-9,-9,3.333333333333333,1,1,0,0,4,11,2,1,905,17619.359,209242.72,126846.54,26075.451,0,0,656.23755 +11245,13734,24540,24541,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.9401569,8.5768776,6,0,-37.203251,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,14.469954,0,0,1,1,0,8.3127642,8.5919542,53,46,52,46,8,1,1,0,0,0,4,4,1,404,2449518.5,557481.06,388908.59,0,0,0,5625.3389 +11245,13734,24541,24540,-9,-9,1,0,76,0,0,0,1,1,-9,0,3,0,7.1022959,7.2593188,53,0,-9.459856,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6310463,7.0176668,52,46,53,46,8,1,1,0,0,0,4,4,1,404,2449518.5,557481.06,388908.59,0,0,0,5625.3389 +11246,13735,24542,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1047.8914,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.7069325,0,16.14242,0,1,1,0,0,0,55,45,-9,-9,8,1,1,0,0,0,13,1,0,717,21508.232,0,72498.148,0,0,0,1537.9105 +11247,13736,24543,-9,24544,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1868,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,0,343,26942.316,30104.715,117468.17,84067.094,0,0,1230.4274 +11247,13736,24544,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,8.1021423,8.2199926,0,5,2,38.82877,0,-9,-9,2021,16,4,40,40,1,4,0,10.477807,10.477807,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.58,56.37,44.58,28.35,6.666666666666667,1,1,0,0,6,6,5,0,343,26942.316,30104.715,117468.17,84067.094,0,0,1230.4274 +11247,13737,24545,-9,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,8.8532343,8.8533392,0,5,-2,21.128214,0,-9,-9,2021,24,11,55,58,1,11,0,16.021881,16.021881,0,0,0,0,0,0,0,0,1,1,0,0,0,44.58,28.35,30.58,56.37,3.333333333333333,1,1,0,0,4,6,5,0,1016,154113.3,0,0,0,0,0,2765.519 +11248,13738,24546,-9,-9,-9,1,0,84,0,1,0,3,3,-9,0,1,0,5.5017776,5.4365869,0,0,-977.73969,0,2,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,.41252455,5.5562344,47.59,29.43,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,451,383682.84,0,344597.38,0,0,0,226.71112 +11249,13739,24547,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1137.5967,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.54,37.25,-9,-9,5,1,1,0,1,0,9,1,0,700,-31423.84,-17605.719,0,0,0,0,2120.6462 +11250,13740,24548,24549,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.8468666,9.1527042,0,6,-1,122.55001,0,3,3,2021,8,0,48,48,1,0,0,19.258799,19.258799,.05,.05,0,0,0,0,0,0,0,0,0,1.6446973,0,57.16,56.15,59.44,50.02,8.333333333333334,1,1,0,0,8,4,5,1,697.5,969051.13,591261.75,142043.2,0,0,0,3236.6123 +11250,13740,24549,24548,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.6637454,8.0457592,0,39,1,28.639576,0,3,3,2021,9,0,36,30,1,0,0,7.2249341,7.2249341,0,0,0,0,0,0,0,0,0,0,0,4.0000505,0,59.44,50.02,57.16,56.15,10,1,1,0,0,8,4,5,1,697.5,969051.13,591261.75,142043.2,0,0,0,3236.6123 +11250,13741,24550,-9,24549,24548,1,0,22,0,0,0,2,2,-9,0,3,7.8175249,7.7056818,0,0,0,-982.97156,0,2,2,2021,13,1,36,38,1,1,1,7.3787565,7.3787565,0,0,0,0,0,0,0,0,0,0,0,0,0,43.55,57.37,-9,-9,8.333333333333334,1,1,0,0,8,4,3,1,1313,107883.63,0,0,0,0,0,1289.1073 +11251,13742,24551,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.0150709,7.9997363,0,0,0,-1052.2451,0,2,2,2021,5,0,16,27,1,0,0,20.275703,20.275703,.05,.05,0,0,0,0,0,0,1,1,0,4.972146,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,247,92485.516,-55505.777,0,0,1669.0298,0,1341.4912 +11252,13743,24552,24553,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.5694275,8.8360968,0,14,-3,-60.93412,0,-9,2,2021,7,0,20,38,1,0,0,31.634995,31.634995,0,0,0,0,0,0,0,0,0,0,0,8.6277409,0,57.33,53.46,43.37,57.28,8.333333333333334,1,1,0,0,8,9,5,1,1216,2436582,1848292,494484.31,66175.891,0,0,9532.4844 +11252,13743,24553,24552,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.5563154,9.6032143,0,14,3,58.481182,0,3,3,2021,16,5,38,38,1,5,0,51.344711,51.344711,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.37,57.28,57.33,53.46,6.666666666666667,1,1,0,0,6,9,5,1,1216,2436582,1848292,494484.31,66175.891,0,0,9532.4844 +11253,13744,24554,24556,-9,-9,1,1,54,1,2,0,1,1,-9,0,4,9.5741568,9.3962069,0,20,-1,-89.224213,0,3,2,2021,5,0,45,42,1,0,0,32.703125,32.703125,.05,.05,0,0,0,0,0,0,0,0,0,8.6175108,0,51.24,58.84,50.63,50.99,8.333333333333334,1,1,0,0,13,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11253,13744,24555,-9,24556,24554,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-998.53564,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11253,13744,24556,24554,-9,-9,1,0,55,1,2,0,1,1,-9,0,3,9.4954691,9.3657246,0,19,1,-58.348705,0,2,1,2021,11,0,50,40,1,0,0,31.743618,31.743618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.63,50.99,51.24,58.84,3.333333333333333,1,1,0,0,12,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11253,13744,24557,-9,24556,24554,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.6958,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,556.25,1615671.5,1373760.4,521776.63,105321.01,19454.719,15133.73,10243.341 +11254,13745,24558,24559,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.5508585,5.5962176,9,-4,-130.33778,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8028772,5.3742146,51.14,52.08,41.18,41.95,8.333333333333334,1,1,0,0,7,9,4,1,260.5,1730332.6,967697.69,515808.84,0,-545.16467,0,3710.7573 +11254,13745,24559,24558,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,8.5521307,8.6484957,9,4,89.009445,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4335694,8.8451824,41.18,41.95,51.14,52.08,3.333333333333333,1,1,0,0,0,9,4,1,260.5,1730332.6,967697.69,515808.84,0,-545.16467,0,3710.7573 +11255,13746,24560,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,1,0,6.4130969,6.043932,0,0,-949.47217,0,2,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2562122,41.17,17.23,-9,-9,10,1,1,0,1,8,7,2,1,879,1369616.8,200495.67,914976.13,0,0,0,640.2196 +11256,13747,24561,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-989.0733,0,1,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.175694,0,57.09,46.7,-9,-9,8.333333333333334,1,1,1,0,1,5,2,0,567,-232067.44,-38562.398,0,0,0,0,1059.3116 +11257,13748,24562,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,2.5563121,2.3110344,0,0,-922.88574,0,3,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,2.6148531,42.61,18.41,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,191,603901.5,-177999.91,263476.41,0,0,0,561.91571 +11258,13749,24563,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,1,0,7.924396,7.71176,0,0,-1011.8714,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,2.2494924,0,22.738176,0,1,1,0,7.5449162,7.2449641,37.1,16.85,-9,-9,3.333333333333333,1,1,0,0,3,9,3,1,1301,364103,278904.5,138571.28,0,0,0,2871.7649 +11259,13750,24564,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,0,0,-995.98987,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.121974,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,300,-7662.6919,-19913.18,0,0,0,0,-47.473034 +11260,13751,24565,-9,24568,24569,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-972.27716,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,6,2,3,-9,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24566,-9,24568,24569,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.845,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,3.9948213,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24567,-9,24568,24569,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-945.75916,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,6,2,3,-9,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24568,24569,-9,-9,1,0,34,1,3,0,3,3,-9,0,4,0,0,0,5,-10,21.605494,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11260,13751,24569,24568,-9,-9,1,1,44,1,3,0,2,2,-9,0,4,7.1323237,7.0559559,0,19,10,101.71281,0,-9,3,2021,9,0,24,24,1,1,0,6.429193,6.429193,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,7,2,3,0,0,8,1,2,1,795.40002,-89267.555,0,0,0,0,0,1621.6802 +11261,13752,24570,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.365242,9.3331757,0,0,0,-894.53729,-9,-9,-9,2021,9,0,72,0,1,0,0,15.800434,15.800434,0,0,0,0,0,0,0,0,0,0,0,4.1300855,0,61.27,46.03,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,435,5270.8823,160022.86,0,0,0,0,2857.3726 +11262,13753,24571,-9,24573,24572,1,0,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-971.98456,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11262,13753,24572,24573,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.6369152,8.4340057,0,7,2,145.6985,0,3,3,2021,12,0,39,39,1,0,0,17.805906,17.805906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.17,50.26,48.11,49.83,5,1,1,0,0,8,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11262,13753,24573,24572,-9,-9,1,0,39,0,2,0,3,3,-9,0,3,0,0,0,7,-2,45.27021,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.11,49.83,46.17,50.26,6.666666666666667,1,1,0,1,0,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11262,13753,24574,-9,24573,24572,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.42267,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,1545.25,163657.11,91574.977,86452.422,61400.742,0,0,3118.9111 +11263,13754,24575,24577,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.8270302,7.7626305,0,26,-3,27.499245,-9,3,1,2021,6,0,24,0,1,0,0,10.372475,10.372475,0,0,0,0,0,0,0,102,1,1,0,0,0,51.78,53.03,52,55,8.333333333333334,2,3,0,0,5,2,3,1,1014.3333,-126656.59,-34433.59,0,0,0,3670.0447,1539.9583 +11263,13754,24576,-9,24575,24577,1,0,11,0,1,1,3,0,-9,0,2,0,0,0,0,0,-995.94641,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,3,1,1014.3333,-126656.59,-34433.59,0,0,0,3670.0447,1539.9583 +11263,13754,24577,24575,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,26,3,-18.456751,-9,3,2,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,51.78,53.03,8,4,2,1,0,0,2,3,1,1014.3333,-126656.59,-34433.59,0,0,0,3670.0447,1539.9583 +11263,13755,24578,-9,24575,24577,1,1,23,0,1,0,1,1,1,0,4,8.0244703,7.7315226,0,0,0,-1089.6012,-9,2,2,2021,16,4,15,0,1,4,1,20.342484,20.342484,0,0,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,-9,-9,6.666666666666667,2,3,0,0,7,2,3,1,105,110076.15,0,0,0,0,0,1842.8254 +11263,13756,24579,-9,24575,24577,1,0,21,0,1,0,1,1,1,0,4,0,0,0,0,0,-966.85352,-9,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,0,3,2,1,1,2464,-58758.98,0,0,0,1579.0085,0,0 +11264,13757,24580,24581,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1522007,8.3030882,0,11,-7,2.2455633,0,3,3,2021,17,6,37,37,1,6,0,9.6890564,9.6890564,0,0,0,0,0,0,0,27,1,0,1,7.0862632,0,47.11,35.63,67.69,24.04,5,2,3,0,0,14,6,4,1,338,1751246.5,967403.13,464385.72,0,0,-1567.1218,4012.6279 +11264,13757,24581,24580,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,7.8517375,8.1571207,37,7,-34.825054,-9,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,8.059926,67.69,24.04,47.11,35.63,6.666666666666667,2,3,0,0,0,6,4,1,338,1751246.5,967403.13,464385.72,0,0,-1567.1218,4012.6279 +11264,13758,24582,-9,24580,24581,1,0,34,0,0,0,1,1,-9,0,4,7.6549492,7.5852423,0,0,0,-909.01538,0,2,3,2021,24,12,37,6,1,12,1,7.0745916,7.0745916,.05,.05,0,0,0,0,0,7,1,0,1,0,0,36.1,63.29,-9,-9,8.333333333333334,2,3,0,0,7,6,3,1,810,-45028.441,26664.285,0,0,0,0,1721.5192 +11264,13759,24583,-9,24580,24581,1,1,31,0,0,0,1,1,-9,0,4,8.4389744,8.3501091,0,0,0,-1200.6508,0,2,2,2021,6,1,46,41,1,1,1,13.108636,13.108636,.05,.05,0,0,0,0,0,7,1,0,1,0,0,43.43,54.3,-9,-9,3.333333333333333,2,3,0,0,8,6,5,1,729,-199495.8,2729.219,0,0,0,0,870.71277 +11264,13760,24584,-9,24580,24581,1,1,28,0,0,0,2,2,-9,0,3,7.0326624,7.6063991,0,0,0,-1039.6202,-9,2,3,2021,3,0,60,0,1,0,1,2.6510792,2.6510792,.05,.05,0,0,0,0,0,14.5,1,0,1,2.745086,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,3,6,3,1,3014,-33451.824,0,0,0,0,0,1070.972 +11264,13761,24585,-9,24580,24581,1,1,25,0,0,0,1,1,-9,0,3,8.4469118,8.4451742,0,0,0,-1010.2726,0,2,3,2021,11,1,4,32,1,1,1,160.24686,160.24686,.05,.05,0,0,0,0,0,2,1,0,1,4.4456563,0,32.28,58.05,-9,-9,6.666666666666667,2,3,0,0,5,6,5,1,273,37442.832,-48914.207,0,0,0,0,2037.5033 +11265,13762,24586,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.88135,0,3,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,25.2,55.96,-9,-9,0,1,1,0,0,4,8,1,1,827,97725.016,0,0,0,0,0,526.8819 +11266,13763,24587,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.2609282,7.515666,0,0,-984.13995,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9754295,7.7467475,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,745,678951.06,362374.72,199907.41,0,3634.7017,0,7191.8257 +11267,13764,24588,24589,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.6847157,7.6300039,0,26,-3,3.1510611,0,1,1,2021,6,0,30,40,1,0,0,9.4606304,9.4606304,0,0,0,0,0,0,0,0,0,0,0,0,0,45.39,51.79,51.14,60.45,8.333333333333334,1,1,0,0,14,9,3,1,1057.5,1248488,0,384825.94,0,0,0,2141.7678 +11267,13764,24589,24588,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,0,6.4069223,6.7197032,27,3,-3.843044,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0040054,6.8587756,51.14,60.45,45.39,51.79,6.666666666666667,1,1,0,0,12,9,3,1,1057.5,1248488,0,384825.94,0,0,0,2141.7678 +11268,13765,24590,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9514556,7.9016786,0,0,0,-1080.2529,0,3,3,2021,8,0,42,37,1,0,0,7.3874726,7.3874726,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,9,8,3,0,1176,21825.316,92472.094,0,0,-1230.3635,0,1390.9509 +11269,13766,24591,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.7220473,7.8475122,0,0,0,-1099.4464,0,3,3,2021,9,3,46,40,1,3,0,7.1564422,7.1564422,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,50.16,-9,-9,6.666666666666667,3,4,0,0,10,2,3,1,394,1077687.6,357591.56,407447,0,0,0,1407.7877 +11270,13767,24592,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,5,8.8141613,8.7422848,0,0,0,-1052.8132,0,2,2,2021,8,2,40,44,1,2,0,17.857956,17.857956,.05,.05,0,0,0,0,0,0,0,0,0,4.350956,0,51.67,60.18,-9,-9,8.333333333333334,1,1,0,0,7,6,5,1,1127,189053.42,252044.23,-31440.643,-4857.2051,0,0,2963.9548 +11271,13768,24593,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-929.51678,0,3,3,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,33.79,19.89,-9,-9,0,1,1,0,0,0,9,1,0,217,-74407.07,0,0,0,0,0,1763.2928 +11271,13769,24594,-9,-9,-9,1,1,63,0,0,0,3,3,-9,1,1,0,6.3991032,6.3775682,0,0,-948.37939,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.82689357,6.3907266,45,16.05,-9,-9,0,1,1,0,0,0,9,2,0,614,463359.97,124663.48,199102.42,0,0,0,803.44922 +11272,13770,24595,-9,24598,24597,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.0618,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11272,13770,24596,-9,24598,24597,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.1788,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11272,13770,24597,24598,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9344845,9.0293121,0,12,3,-122.28439,0,2,1,2021,8,0,50,43,1,0,0,20.550791,20.550791,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,43.65,58.28,8.333333333333334,1,1,0,0,15,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11272,13770,24598,24597,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5276871,8.9419117,0,12,-3,-4.8737655,0,-9,-9,2021,7,0,72,42,1,0,0,9.1117096,9.1117096,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.65,58.28,51.24,58.84,6.666666666666667,1,1,0,0,14,5,5,1,725,334004.81,129050.7,258561.34,161380.34,17548.691,0,4681.9683 +11273,13771,24599,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.85858,0,-9,-9,2021,15,7,0,0,4,7,0,0,0,0,0,0,1,0,7.7061071,0,0,1,1,0,0,0,50.26,16.7,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,329,121197.8,0,0,0,0,0,2617.0986 +11274,13772,24600,24602,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,7.1503596,7.3617854,0,18,1,85.49649,0,1,1,2021,27,11,17,17,1,11,0,9.2729549,9.2729549,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.83,63.9,51.83,57.2,8.333333333333334,1,1,0,0,12,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11274,13772,24601,-9,24600,24602,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.5566,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11274,13772,24602,24600,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.4518652,8.4339838,0,18,-1,-12.639985,0,2,1,2021,12,2,40,40,1,2,0,14.32728,14.32728,.05,.05,0,0,0,0,0,0,1,1,0,.28488705,0,51.83,57.2,33.83,63.9,8.333333333333334,1,1,0,0,13,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11274,13772,24603,-9,24600,24602,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.9171,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,346,585099.38,40553.328,121771.02,0,0,0,2741.356 +11275,13773,24604,-9,24605,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1047.1234,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11275,13773,24605,-9,-9,-9,1,0,29,1,3,0,2,2,-9,1,4,0,0,0,0,0,-972.58356,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,6.666666666666667,1,1,0,0,10,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11275,13773,24606,-9,24605,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.21582,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11275,13773,24607,-9,24605,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.3645,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,2,0,589,-26904.707,20099.953,0,0,0,778.77533,1637.8608 +11276,13774,24608,24609,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,8.600544,8.7471418,0,5,4,-24.609222,0,2,2,2021,12,0,58,84,1,0,0,12.923181,12.923181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,27.45,56.35,6.666666666666667,1,1,0,0,12,9,4,1,432,17901.094,32590.895,194074.22,134480.47,0,0,2180.7729 +11276,13774,24609,24608,-9,-9,1,0,25,0,0,0,2,2,0,0,2,0,0,0,5,-4,45.378098,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.739141,0,27.45,56.35,49.04,55.86,8.333333333333334,1,1,0,0,4,9,4,1,432,17901.094,32590.895,194074.22,134480.47,0,0,2180.7729 +11277,13775,24610,-9,-9,24611,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-985.40155,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.19,53.97,-9,-9,10,1,1,0,0,0,11,2,0,1021.3333,-243030.44,0,0,0,0,0,1539.6709 +11277,13775,24611,-9,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,7.550581,7.5990486,0,0,0,-934.39648,0,2,2,2021,12,0,36,0,1,0,0,6.6881824,6.6881824,0,0,0,0,0,0,0,0,1,1,0,0,0,52.54,52.91,-9,-9,1.666666666666667,1,1,0,0,1,11,2,0,1021.3333,-243030.44,0,0,0,0,0,1539.6709 +11277,13775,24612,-9,-9,24611,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.9581,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,11,2,0,1021.3333,-243030.44,0,0,0,0,0,1539.6709 +11277,13776,24613,-9,-9,-9,1,0,33,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1021.6062,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.1,51.52,-9,-9,3.333333333333333,1,1,1,1,0,11,1,0,1192,-72518.734,0,0,0,0,0,2053.043 +11278,13777,24614,24615,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,6,-3,-18.189377,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,7,1,1,0,4.7586846,0,36.93,49.01,54,45,8.333333333333334,1,1,0,0,0,7,2,1,392,-24217.637,49638.656,0,0,0,0,1225.7159 +11278,13777,24615,24614,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,4.8537951,4.9174194,6,3,-.93748903,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,10.545728,0,0,1,1,0,1.5964016,4.8644757,54,45,36.93,49.01,8,1,1,0,0,0,7,2,1,392,-24217.637,49638.656,0,0,0,0,1225.7159 +11279,13778,24616,24617,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,7.7216163,7.5597649,0,17,4,16.793734,0,-9,-9,2021,11,0,40,40,1,0,0,5.9198122,5.9198122,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,60.02,56.42,8.333333333333334,2,3,0,0,13,8,3,1,317.66666,271373.91,-33119.375,310842.94,104968.05,0,0,2388.6064 +11279,13778,24617,24616,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,7.6404033,7.8075795,0,17,-4,53.124401,0,1,1,2021,6,0,20,11,1,0,0,14.018332,14.018332,.05,.05,0,0,0,0,0,0,0,0,0,3.1661985,0,60.02,56.42,51.41,56.15,10,2,3,0,0,6,8,3,1,317.66666,271373.91,-33119.375,310842.94,104968.05,0,0,2388.6064 +11279,13778,24618,-9,24617,24616,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-973.94098,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,3,1,317.66666,271373.91,-33119.375,310842.94,104968.05,0,0,2388.6064 +11280,13779,24619,24620,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,0,7.8516235,8.0979977,32,-3,-42.670666,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4349675,8.5162687,57.75,41.31,58.23,43.46,10,1,1,0,0,7,2,5,1,654.5,2216661.3,1786681,248911.34,0,0,0,6440.6914 +11280,13779,24620,24619,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.8359537,8.7683668,13,3,-137.17436,-9,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.8174739,8.7298756,58.23,43.46,57.75,41.31,10,1,1,0,0,0,2,5,1,654.5,2216661.3,1786681,248911.34,0,0,0,6440.6914 +11281,13780,24621,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,8.0551348,7.9856987,0,0,-996.76385,0,3,-9,2021,1,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5851712,8.0252886,58.9,45.74,-9,-9,8.333333333333334,1,1,0,0,0,4,4,0,375,1063704.8,611742.5,316635.16,0,0,0,1701.9506 +11282,13781,24622,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,6.8622022,6.765871,0,0,-1040.1672,0,2,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1779752,6.9704671,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,115,372349.75,224260.31,178275.81,0,0,0,305.06079 +11283,13782,24623,-9,-9,-9,1,1,28,0,3,0,2,2,-9,0,4,8.9114294,8.9244442,0,0,0,-1053.6257,0,-9,-9,2021,12,0,20,60,1,0,0,33.901676,33.901676,0,0,0,0,0,0,0,0,0,0,0,0,0,48.85,58.56,-9,-9,10,1,1,0,0,11,2,4,1,1006.5,53201.441,0,0,0,0,0,2581.0623 +11283,13782,24624,-9,-9,24623,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-984.63239,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,1006.5,53201.441,0,0,0,0,0,2581.0623 +11284,13783,24625,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.484386,5.9867435,0,0,-1033.243,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6079426,43.65,58.28,-9,-9,6.666666666666667,2,3,0,0,4,9,2,0,970,723648.06,111342.27,534375.38,0,0,3413.4019,1294.9235 +11285,13784,24626,24627,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,1,-3,0,0,-9,2,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,18.49,43.63,47.65,1.666666666666667,1,1,0,0,0,11,1,1,377.5,-119730.22,0,0,0,0,0,0 +11285,13784,24627,24626,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,0,0,0,1,3,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.63,47.65,42.51,18.49,8.333333333333334,1,1,0,0,0,11,1,1,377.5,-119730.22,0,0,0,0,0,0 +11286,13785,24628,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.4870067,6.1632943,0,0,-1031.3058,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2919407,50,47,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,367,321095.22,59146.398,166431.2,28794.723,0,0,1619.2198 +11287,13786,24629,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1018.8455,0,3,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4120321,0,37.79,36.16,-9,-9,3.333333333333333,4,2,1,0,5,8,1,0,463,-44460.5,0,0,0,0,0,1213.5212 +11288,13787,24630,24631,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.6903534,8.5541563,55,7,-35.877499,0,3,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,1.6934521,0,0,1,1,0,5.0411801,8.6951914,46.55,43.16,43.82,40.74,6.666666666666667,2,3,0,0,8,4,4,1,1624.5,990286.38,728819.38,0,0,0,0,4613.9795 +11288,13787,24631,24630,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,11,-7,12.38646,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.82,40.74,46.55,43.16,6.666666666666667,2,3,0,0,0,4,4,1,1624.5,990286.38,728819.38,0,0,0,0,4613.9795 +11289,13788,24632,24636,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,5.9430456,5.7954865,0,9,-4,4.0688863,0,2,2,2021,12,1,7,10,1,1,0,6.1582441,6.1582441,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.72,51.29,58.02,44.82,8.333333333333334,1,1,0,0,3,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24633,-9,24632,24636,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-894.45581,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24634,-9,24632,24636,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.7391,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24635,-9,24632,24636,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-974.38702,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11289,13788,24636,24632,-9,-9,1,1,37,0,3,0,2,2,-9,0,3,7.073782,7.3220034,0,9,4,179.6256,0,-9,-9,2021,12,0,18,18,1,0,0,7.4602041,7.4602041,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,58.02,44.82,58.72,51.29,8.333333333333334,1,1,0,0,11,4,2,0,525.59998,-24533.727,43468.234,0,0,22016.885,0,2399.8467 +11290,13789,24637,24638,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.9894104,5.3432612,48,1,-37.184422,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4413152,5.7506337,57.16,56.15,59.69,37.34,10,1,1,0,0,0,12,2,1,1723,243880.08,152742.66,109165.03,0,0,0,1616.8989 +11290,13789,24638,24637,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,6.6455107,6.7846284,48,-1,72.838577,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4476538,6.4030004,59.69,37.34,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,1723,243880.08,152742.66,109165.03,0,0,0,1616.8989 +11291,13790,24639,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,7.5986352,7.5021682,0,0,0,-905.55487,0,-9,-9,2021,12,0,37,37,1,0,0,6.3768654,6.3768654,0,0,0,0,0,0,0,0,0,0,0,0,0,41.74,53.74,-9,-9,5,1,1,0,0,7,2,3,0,2606,265745.78,0,0,0,0,0,882.48566 +11292,13791,24640,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.8781252,9.1046734,0,0,0,-984.21967,0,2,3,2021,7,0,63,50,1,0,0,15.242778,15.242778,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,8.333333333333334,3,4,0,0,8,6,5,1,699,80944.453,57428.984,251425.14,78955.172,4852.0815,0,2705.0742 +11293,13792,24641,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-964.41559,-9,-9,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.01,47.72,-9,-9,0,1,1,1,0,0,11,1,0,2006,0,0,0,0,0,0,0 +11294,13793,24642,24643,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.879199,8.7667265,0,4,0,-22.958279,0,-9,-9,2021,13,2,43,43,1,2,0,15.548052,15.548052,.05,.05,0,0,0,0,0,0,0,0,0,3.8426147,0,48.28,60.18,40.65,57.36,8.333333333333334,1,1,0,0,6,8,5,0,892.5,119450.63,95599.156,318955.25,179253,12525.469,7277.3462,3866.0044 +11294,13793,24643,24642,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.8371611,8.1576672,0,4,0,-165.40341,0,2,1,2021,13,1,46,45,1,1,0,7.8284779,7.8284779,.05,.05,0,0,0,0,0,0,0,0,0,3.2622702,0,40.65,57.36,48.28,60.18,6.666666666666667,1,1,0,0,6,8,5,0,892.5,119450.63,95599.156,318955.25,179253,12525.469,7277.3462,3866.0044 +11295,13794,24644,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3169041,8.2956753,0,0,0,-998.54779,0,-9,-9,2021,30,11,35,40,1,11,0,12.655832,12.655832,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.41,54.29,-9,-9,5,1,1,0,0,10,12,4,1,508,149843.27,-19983.191,0,0,0,0,1651.6329 +11296,13795,24645,24646,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.6136131,8.6467514,0,1,2,-45.295361,-9,-9,-9,2021,7,0,40,0,1,0,0,14.027782,14.027782,.05,.05,0,0,0,0,0,0,0,0,0,.88483077,0,41.7,59.17,55.19,54.26,8.333333333333334,1,1,0,0,11,13,5,1,1253.5,-110460.9,19002.457,0,0,7098.1865,0,3271.0786 +11296,13795,24646,24645,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.7453394,8.0038586,0,1,-2,6.5386939,0,2,2,2021,16,7,38,38,1,7,0,10.258189,10.258189,.05,.05,0,0,0,0,0,0,0,0,0,5.9597368,0,55.19,54.26,41.7,59.17,8.333333333333334,1,1,0,0,10,13,5,1,1253.5,-110460.9,19002.457,0,0,7098.1865,0,3271.0786 +11297,13796,24647,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.0614023,7.9642744,0,0,0,-984.52173,-9,-9,-9,2021,11,1,20,0,1,1,0,18.472967,18.472967,.05,.05,0,0,0,0,0,0,0,0,0,3.8008876,0,42.17,32.27,-9,-9,6.666666666666667,1,1,0,0,7,9,4,0,1299,308212.66,153583.55,237915.7,0,0,-336.31937,497.39252 +11298,13797,24648,24649,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.4971795,7.5713749,32,-2,-210.58165,0,3,2,2021,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,.3474274,0,1,1,0,7.5583096,7.0435538,57.57,44.16,55.19,54.26,8.333333333333334,2,3,0,0,12,2,5,1,729,992449.44,253236.31,941565.13,342572.41,0,0,4897.5879 +11298,13797,24649,24648,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,8.6491365,8.8858929,7.8142462,15,2,12.39064,0,2,-9,2021,10,1,37,38,1,1,0,13.552082,13.552082,0,0,0,0,0,0,0,0,1,1,0,1.5711913,7.6889324,55.19,54.26,57.57,44.16,8.333333333333334,1,1,0,0,11,2,5,1,729,992449.44,253236.31,941565.13,342572.41,0,0,4897.5879 +11299,13798,24650,-9,24652,24651,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.1575,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,766,3162903.8,306324.81,0,0,8192.5977,0,5719.0752 +11299,13798,24651,24652,-9,-9,1,1,46,0,2,0,1,1,-9,0,4,8.5483246,8.7701874,0,11,0,79.850739,0,2,2,2021,10,0,46,45,1,1,0,16.473442,16.473442,.05,.05,.05,0,0,0,0,0,0,0,0,7.5340238,0,51,56,51.14,52.08,7,1,1,0,0,10,9,4,1,766,3162903.8,306324.81,0,0,8192.5977,0,5719.0752 +11299,13798,24652,24651,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.0829105,8.8138514,0,11,0,-12.639398,-9,2,2,2021,10,0,22,0,1,0,0,47.360149,47.360149,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,52.08,51,56,6.666666666666667,1,1,0,0,5,9,4,1,766,3162903.8,306324.81,0,0,8192.5977,0,5719.0752 +11300,13799,24653,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,3.9503019,3.9206131,0,0,-968.54224,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,7.2100191,0,0,1,1,0,0,4.0521631,46.2,27.5,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,1916,4933.6538,-15231.389,0,0,0,0,1905.6563 +11301,13800,24654,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.059206,7.9051642,0,0,0,-1050.3036,0,3,3,2021,24,12,36,36,1,12,0,9.1767263,9.1767263,.05,.05,0,0,0,0,0,2,0,0,0,1.1519276,0,41.51,31.19,-9,-9,5,1,1,0,0,9,9,4,1,1549,790880.06,375624.66,489336.03,16157.539,0,0,2188.1096 +11302,13801,24655,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,7.4685364,7.5224409,0,0,0,-933.02106,0,1,1,2021,11,1,30,30,1,1,0,9.3873825,9.3873825,.05,.05,0,0,0,0,0,2,0,0,0,0,0,24.89,58.93,-9,-9,6.666666666666667,1,1,0,0,15,4,3,1,884,55347.859,-33788.707,0,0,0,0,661.93213 +11303,13802,24656,-9,24658,24659,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-974.25592,-9,2,2,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,-9,-9,6.666666666666667,1,1,0,0,0,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11303,13802,24657,-9,24658,24659,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.6753,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11303,13802,24658,24659,-9,-9,1,0,53,0,2,0,2,2,-9,0,4,8.4854307,8.33008,0,20,3,-38.565311,0,2,3,2021,11,0,30,28,1,0,0,14.071124,14.071124,.05,.05,0,0,0,0,0,2,1,1,0,0,0,47.49,59.1,55.3,55.6,8.333333333333334,1,1,0,0,9,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11303,13802,24659,24658,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.8447971,8.6377869,0,19,-3,-73.461578,0,2,3,2021,7,1,43,40,1,1,0,17.052471,17.052471,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.3,55.6,47.49,59.1,8.333333333333334,1,1,0,0,9,2,4,1,1100.25,1200469.4,666305.5,374851.13,64306.563,4683.457,0,3755.9929 +11304,13803,24660,-9,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-991.35669,0,3,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.64,25.41,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,1407,-207873.63,0,0,0,2671.3503,0,600.16925 +11305,13804,24661,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,7.431869,7.7669091,0,0,-881.31848,0,3,3,2021,14,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7638724,7.5422082,45.37,54.86,-9,-9,8.333333333333334,1,1,0,0,6,6,3,1,169,857147.44,184812.58,292246.19,0,0,0,879.73969 +11306,13805,24662,24664,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,9.1873188,8.7629814,0,20,-3,-.22128941,0,3,2,2021,5,0,42,40,1,0,0,19.879042,19.879042,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.02,52.22,52.65,51.64,8.333333333333334,1,1,0,0,9,2,4,0,1429,2273154,407817.22,210264.16,0,0,0,3712.0222 +11306,13805,24663,-9,24664,24662,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1014.949,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,0,1429,2273154,407817.22,210264.16,0,0,0,3712.0222 +11306,13805,24664,24662,-9,-9,1,0,52,0,3,0,2,2,-9,0,3,7.0953164,7.2903824,0,20,3,-5.4561353,0,3,2,2021,3,0,8,10,1,0,0,18.721695,18.721695,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,51.02,52.22,8.333333333333334,1,1,0,0,3,2,4,0,1429,2273154,407817.22,210264.16,0,0,0,3712.0222 +11306,13806,24665,-9,-9,24666,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.65442,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,742.33331,91923.125,0,0,0,0,0,573.03168 +11306,13806,24666,-9,24664,24662,1,1,27,0,3,0,2,2,-9,0,3,0,6.7121968,6.884088,0,0,-937.20306,-9,2,2,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3333254,0,35.39,56.7,-9,-9,5,1,1,0,0,0,2,2,0,742.33331,91923.125,0,0,0,0,0,573.03168 +11306,13806,24667,-9,-9,24666,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1124.064,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,742.33331,91923.125,0,0,0,0,0,573.03168 +11307,13807,24668,24669,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.62498,9.506732,6.3788137,39,-3,16.646044,0,3,3,2021,6,0,35,30,1,0,0,43.884739,43.884739,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8394976,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,1889,3607695.5,3268496.3,275333.47,0,0,0,6706.8477 +11307,13807,24669,24668,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,8.2976875,8.6979456,39,3,146.45389,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.1185026,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,5,6,5,1,1889,3607695.5,3268496.3,275333.47,0,0,0,6706.8477 +11308,13808,24670,24673,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.4677486,8.6891289,0,14,3,-13.582737,0,2,3,2021,18,6,41,42,1,6,0,11.589961,11.589961,.05,.05,0,0,0,0,0,0,1,1,0,4.0105271,0,42.95,61.24,44.95,52.41,3.333333333333333,1,1,0,0,11,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11308,13808,24671,-9,24673,24670,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.29626,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11308,13808,24672,-9,24673,24670,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1138.8848,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11308,13808,24673,24670,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.246645,8.2247372,0,14,-3,-164.91359,0,2,3,2021,16,5,36,37,1,5,0,15.211074,15.211074,.05,.05,0,0,0,0,0,0,1,1,0,3.1397943,0,44.95,52.41,42.95,61.24,3.333333333333333,1,1,0,0,11,6,5,1,862,416746.63,282063.63,268392.94,161914.67,14678.764,2297.6709,3687.9651 +11309,13809,24674,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.7692261,7.7576437,0,0,0,-972.88306,0,-9,-9,2021,12,0,7,48,1,0,0,50.479782,50.479782,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.04,66.23999999999999,-9,-9,6.666666666666667,1,1,0,0,2,11,4,0,386,70203.695,11955.147,0,0,1426.2186,0,1112.1959 +11310,13810,24675,24676,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,0,0,42,0,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.65,35.01,43.45,38.38,5,2,3,1,0,0,6,1,1,808.5,116656.46,0,147608.61,0,0,0,1253.3728 +11310,13810,24676,24675,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,42,0,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,43.45,38.38,41.65,35.01,6.666666666666667,2,3,0,0,0,6,1,1,808.5,116656.46,0,147608.61,0,0,0,1253.3728 +11310,13811,24677,-9,24676,24675,1,1,38,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1117.6891,0,3,3,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,23.34,-9,-9,1.666666666666667,2,3,0,0,0,6,1,1,462,-100480,0,0,0,0,0,1141.2474 +11310,13812,24678,-9,24676,24675,1,1,32,0,0,0,2,2,-9,1,3,7.2832437,7.2663603,0,0,0,-875.44476,0,3,3,2021,6,0,24,25,1,0,1,6.4765387,6.4765387,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,7,6,3,1,123,-101449.46,-53502.496,0,0,0,0,1327.2924 +11311,13813,24679,-9,24682,24681,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.5055,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11311,13813,24680,-9,24682,24681,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1070.6378,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11311,13813,24681,24682,-9,-9,1,1,24,0,2,0,2,2,-9,0,3,7.5840888,7.3271232,0,2,1,143.05975,0,2,3,2021,5,0,50,0,1,0,0,3.5172756,3.5172756,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,57.16,56.15,8.333333333333334,1,1,0,0,4,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11311,13813,24682,24681,-9,-9,1,0,23,0,2,1,2,0,0,0,4,0,0,0,2,-1,-140.11798,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.96,49.93,8.333333333333334,1,1,0,0,1,10,2,0,1205.75,46553.375,-25903.15,0,0,5022.3276,0,1350.0835 +11312,13814,24683,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,8.614255,8.2820787,0,0,0,-1065.5693,0,-9,-9,2021,12,1,50,0,1,1,0,12.956355,12.956355,.05,.05,0,0,0,0,0,76,1,1,0,0,0,62,44.54,-9,-9,8.333333333333334,1,1,0,0,1,10,5,0,1332,324534.38,150263.89,277545.66,98609.813,0,0,2744.8264 +11313,13815,24684,24688,-9,-9,1,0,36,1,3,0,1,1,-9,0,4,8.101388,8.0367632,0,7,0,-15.225425,0,-9,-9,2021,11,2,30,30,1,2,0,18.456564,18.456564,.05,.05,0,0,0,0,0,0,1,1,0,3.9450448,0,43.48,60.97,44.68,56.37,8.333333333333334,1,1,0,0,8,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24685,-9,24684,24688,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-939.54059,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24686,-9,24684,24688,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.24365,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24687,-9,24684,24688,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.86133,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11313,13815,24688,24684,-9,-9,1,1,36,1,3,0,1,1,-9,0,4,9.0529556,9.1487894,0,7,0,-48.06744,0,1,1,2021,12,0,45,55,1,0,0,24.413122,24.413122,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.68,56.37,43.48,60.97,8.333333333333334,1,1,0,0,8,11,5,1,425.39999,606086.13,457226.47,281711.88,205163.22,6936.9893,1031.8417,4742.3164 +11314,13816,24689,24691,-9,-9,1,1,26,1,1,0,2,2,-9,0,2,8.1473427,8.1947384,0,2,2,-40.85405,0,1,3,2021,14,4,38,38,1,4,0,10.774973,10.774973,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.06,54.56,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,640.66669,182048.06,170730.56,161142.48,102038.91,0,0,3436.9875 +11314,13816,24690,-9,24691,24689,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1122.5354,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,640.66669,182048.06,170730.56,161142.48,102038.91,0,0,3436.9875 +11314,13816,24691,24689,-9,-9,1,0,24,1,1,0,1,1,-9,0,4,8.3979979,8.2223177,0,2,-2,13.013982,0,-9,-9,2021,8,0,37,37,1,0,0,14.728467,14.728467,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,35.06,54.56,8.333333333333334,1,1,0,0,5,13,4,1,640.66669,182048.06,170730.56,161142.48,102038.91,0,0,3436.9875 +11315,13817,24692,-9,24693,24694,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.41357,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,5,1,722.33331,515210.19,264386.25,586340.69,304363.75,5113.0376,15874.636,3660.9963 +11315,13817,24693,24694,-9,-9,1,0,34,1,1,0,1,1,-9,0,4,8.607399,8.9252253,0,2,1,-.483289,0,-9,-9,2021,16,5,47,40,1,5,0,15.377867,15.377867,.05,.05,0,0,0,0,0,0,1,1,0,6.7660642,0,42.44,57.54,42.06,48.42,8.333333333333334,1,1,0,0,10,11,5,1,722.33331,515210.19,264386.25,586340.69,304363.75,5113.0376,15874.636,3660.9963 +11315,13817,24694,24693,-9,-9,1,1,33,1,1,0,1,1,-9,0,2,8.3082476,8.6666994,0,2,-1,-171.00491,0,2,2,2021,16,4,37,42,1,4,0,17.232107,17.232107,.05,.05,0,0,0,0,0,0,1,1,0,3.7008793,0,42.06,48.42,42.44,57.54,8.333333333333334,1,1,0,0,11,11,5,1,722.33331,515210.19,264386.25,586340.69,304363.75,5113.0376,15874.636,3660.9963 +11316,13818,24695,24696,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.7136469,9.5396471,0,16,2,50.732723,0,3,3,2021,9,0,65,60,1,0,0,22.874195,22.874195,0,0,.05,0,0,0,0,0,0,0,0,3.5585728,0,54.1,59.11,50,55,10,1,1,0,0,8,9,5,1,741.5,571005.19,358385.19,356826.44,-2822.6812,10425.397,0,7651.4668 +11316,13818,24696,24695,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,9.0151043,9.0172672,0,8,-2,13.841109,0,-9,-9,2021,10,0,40,60,1,1,0,32.291573,32.291573,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,54.1,59.11,8,1,1,0,0,1,9,5,1,741.5,571005.19,358385.19,356826.44,-2822.6812,10425.397,0,7651.4668 +11317,13819,24697,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.349124,8.4741478,0,0,0,-917.16003,0,2,1,2021,21,9,40,40,1,9,0,15.389626,15.389626,.05,.05,0,0,0,0,0,2,0,0,0,5.5077324,0,34.02,51.85,-9,-9,3.333333333333333,1,1,0,0,13,6,5,1,134,385237.78,48622.855,290691.56,-818.58087,6557.6572,0,1799.9148 +11317,13820,24698,-9,24697,-9,1,0,19,0,0,0,2,2,0,0,3,0,5.7399011,6.1569557,0,0,-928.00568,-9,1,-9,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8547144,0,22.95,57.02,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,118,77162.789,-5586.7388,0,0,0,-213.74828,2331.2336 +11318,13821,24699,24700,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.8209357,6.2446103,38,3,-49.643291,0,2,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.072957,6.1591897,57.09,43.99,57.33,53.46,8.333333333333334,1,1,0,0,0,2,3,1,424,744854.5,671904.63,167433.44,0,0,0,2844.0698 +11318,13821,24700,24699,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.6875114,7.5819845,8,-3,-80.342651,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.5433249,7.8914094,57.33,53.46,57.09,43.99,8.333333333333334,1,1,0,0,0,2,3,1,424,744854.5,671904.63,167433.44,0,0,0,2844.0698 +11319,13822,24701,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1026.0771,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,56.74,33.83,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,296,214914.92,0,0,0,0,0,722.20776 +11320,13823,24702,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,9.1629448,9.0695629,0,0,0,-935.03442,0,1,1,2021,12,0,40,40,1,0,0,21.785818,21.785818,.05,.05,0,0,0,0,0,0,0,0,0,1.7454948,0,35.2,48.71,-9,-9,5,2,3,0,0,10,6,5,0,456,92852.063,9206.3301,0,0,0,0,3250.5894 +11321,13824,24703,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1059.6201,0,-9,-9,2021,27,12,0,0,3,12,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,25.5,44.17,-9,-9,3.333333333333333,1,1,1,1,0,9,1,0,305,102604.47,0,0,0,0,0,0 +11322,13825,24704,-9,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.808445,8.5361023,0,0,-1006.85,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8328848,8.8996944,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,245,1756100.6,1291005.1,259316.92,0,0,0,4065.791 +11323,13826,24705,24706,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.9325628,8.2756109,0,2,-2,-46.66153,0,2,2,2021,12,0,44,43,1,0,0,6.9628873,6.9628873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.61,56.25,48.77,57.64,8.333333333333334,1,1,0,0,12,2,5,1,1696.5,311208.28,75405.961,240570.19,0,5371.543,0,2312.3267 +11323,13826,24706,24705,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.4343128,8.1240215,0,2,2,-50.023701,-9,-9,-9,2021,13,1,40,0,1,1,0,11.182497,11.182497,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.77,57.64,33.61,56.25,8.333333333333334,1,1,0,0,1,2,5,1,1696.5,311208.28,75405.961,240570.19,0,5371.543,0,2312.3267 +11324,13827,24707,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,7.1886249,6.7823915,0,0,0,-924.79175,-9,-9,-9,2021,8,0,40,0,1,0,0,3.472729,3.472729,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.91,48.98,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,337,173304.06,-39575.457,81768.727,16182.45,-1710.1088,285.6348,877.26587 +11325,13828,24708,-9,-9,24709,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.2509,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,910,82421.531,18001.313,0,0,0,0,1145.8181 +11325,13828,24709,-9,24710,24711,1,1,36,0,1,0,2,2,-9,0,3,8.20928,8.2034569,0,0,0,-1018.4073,0,3,3,2021,12,0,45,45,1,0,1,11.648726,11.648726,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.68,52.15,-9,-9,1.666666666666667,1,1,0,1,8,11,4,1,910,82421.531,18001.313,0,0,0,0,1145.8181 +11325,13829,24710,24711,-9,-9,1,0,57,0,1,0,3,3,-9,0,3,8.1643257,8.2015123,0,4,0,74.980598,0,-9,-9,2021,7,0,40,39,1,0,0,11.430293,11.430293,0,0,0,0,0,0,0,0,1,1,0,0,0,55.84,41.92,54.69,57.47,1.666666666666667,1,1,0,0,10,11,5,1,1117.5,665901.94,579748.38,0,0,7372.6543,1441.499,4155.7744 +11325,13829,24711,24710,-9,-9,1,1,57,0,1,0,3,3,-9,0,5,8.435338,8.2738791,0,4,0,45.026207,0,-9,-9,2021,8,0,45,45,1,0,0,11.136518,11.136518,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,55.84,41.92,10,1,1,0,0,7,11,5,1,1117.5,665901.94,579748.38,0,0,7372.6543,1441.499,4155.7744 +11326,13830,24712,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1116.4192,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.41,10.82,-9,-9,5,1,1,0,0,0,9,1,0,1566,-82492.352,0,0,0,0,0,1225.3691 +11327,13831,24713,24714,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,7.7610145,7.3783937,0,11,-5,-150.82825,0,3,3,2021,12,0,28,28,1,0,0,9.2732954,9.2732954,0,0,0,0,0,0,0,0,1,1,0,5.191627,0,52.22,46,57.06,57.76,8.333333333333334,1,1,0,0,12,11,3,1,909.5,495716.25,485191.25,67132.992,21370.133,0,0,2362.2385 +11327,13831,24714,24713,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.4044604,7.3417864,11,5,-125.55097,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3396502,57.06,57.76,52.22,46,10,1,1,0,0,8,11,3,1,909.5,495716.25,485191.25,67132.992,21370.133,0,0,2362.2385 +11327,13832,24715,-9,24713,24714,1,1,26,0,0,0,1,1,-9,0,5,7.9519033,7.9949198,0,0,0,-978.1333,-9,2,2,2021,5,1,36,0,1,1,1,9.4968338,9.4968338,.05,.05,0,0,0,0,0,0,1,1,0,1.6704247,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,6,11,4,1,184,92657.523,67196.219,0,0,0,0,1643.7712 +11328,13833,24716,-9,24718,24719,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.43402,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11328,13833,24717,-9,24718,24719,1,0,12,0,2,1,3,0,-9,0,1,0,0,0,0,0,-994.73901,-9,2,1,2021,22,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29,33,-9,-9,4,1,1,-9,0,0,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11328,13833,24718,24719,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,8.4456739,8.0618715,0,19,1,84.587463,0,2,2,2021,17,5,39,39,1,5,0,10.737152,10.737152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.8,60.42,46.39,60.99,8.333333333333334,1,1,0,0,14,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11328,13833,24719,24718,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,8.6347027,8.6855145,0,19,-1,89.373665,0,2,2,2021,12,0,37,40,1,0,0,22.522474,22.522474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,38.8,60.42,8.333333333333334,1,1,0,0,14,1,5,1,1429.25,478363.44,228369.78,370467.06,260968.98,1076.3616,2689.1907,4474.29 +11329,13834,24720,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1062.2266,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.4453342,0,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,6,6,1,0,6971,21694.527,0,0,0,0,0,1044.0381 +11330,13835,24721,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,5.9753675,5.8702826,0,0,-1037.6217,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4553928,5.9767122,60.3,43.72,-9,-9,10,1,1,0,0,0,12,2,1,914,124772.73,25129.375,0,0,0,0,985.37726 +11331,13836,24722,24723,-9,-9,1,0,62,0,0,0,3,3,-9,0,5,0,5.3392224,5.2272558,39,-6,-9.7116213,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9975677,5.5345988,57.06,57.76,65.68000000000001,44.28,0,1,1,0,0,4,11,2,1,481.5,1042213.9,693989.5,238826.2,0,0,0,1262.2498 +11331,13836,24723,24722,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,7.2019644,6.6908832,39,6,-128.81104,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9617882,6.9087892,65.68000000000001,44.28,57.06,57.76,10,1,1,0,0,7,11,2,1,481.5,1042213.9,693989.5,238826.2,0,0,0,1262.2498 +11332,13837,24724,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,8.0726366,7.9755077,0,0,-1090.9707,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1782579,7.7751493,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,244,685757.5,0,175049.95,0,0,0,1687.6194 +11333,13838,24725,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.4775681,6.5958443,0,0,-886.50183,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3643274,6.56494,46.61,56.93,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,4421,353085.28,-93276.008,201595.84,22095.799,-650.31567,979.44067,303.0249 +11334,13839,24726,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,1,0,0,0,0,0,-918.67529,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.91,29.87,-9,-9,6.666666666666667,2,3,0,1,10,8,1,0,237,1811790.5,105907.6,1669391.3,0,0,0,1065.9647 +11334,13840,24727,-9,24726,-9,1,0,30,0,0,0,1,1,-9,0,5,8.2817755,8.0422888,0,0,0,-997.66736,0,2,2,2021,7,0,40,40,1,0,0,10.484666,10.484666,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,0,0,8,8,4,0,1040,65512.063,-55361.809,0,0,0,0,1383.8965 +11335,13841,24728,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,5,0,0,0,0,0,-912.55231,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2286329,0,55.26,55.85,-9,-9,10,1,1,0,0,0,9,1,1,638,-204695.56,0,0,0,0,0,1206.5435 +11336,13842,24729,-9,24732,24733,1,0,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1065.4775,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24730,-9,24732,24733,1,1,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-930.42145,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24731,-9,24732,24733,1,1,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.6783,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24732,24733,-9,-9,1,0,38,3,3,0,2,2,-9,0,4,8.731576,8.7979584,0,4,4,-15.210075,0,3,2,2021,18,6,45,39,1,6,0,15.788967,15.788967,0,0,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,49.04,55.86,6.666666666666667,1,1,0,0,7,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11336,13842,24733,24732,-9,-9,1,1,34,3,3,0,2,2,-9,0,3,8.2402124,8.6601229,0,4,-4,-30.998646,0,-9,-9,2021,7,0,38,38,1,0,0,13.324747,13.324747,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,38.59,60.85,8.333333333333334,1,1,0,0,7,6,4,1,894,712670,683047.5,206039.61,145699.23,0,0,4465.3643 +11337,13843,24734,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,4,7.9063177,8.0609932,0,0,0,-1128.7838,-9,3,2,2021,16,4,41,0,1,4,1,7.2436767,7.2436767,.05,.05,0,0,0,0,0,7,1,1,0,0,0,25.99,63.8,-9,-9,5,2,3,0,0,6,4,4,1,1932,-31731.506,-7196.4741,213077.16,108737.77,0,2072.1294,1061.9338 +11338,13844,24735,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,4.4953647,4.7018595,0,0,-998.39655,0,3,2,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,7.7554703,0,42,1,1,0,0,4.2313857,33.61,30.61,-9,-9,1.666666666666667,1,1,0,1,0,12,2,1,435,-50504.137,102218.23,0,0,0,0,956.2843 +11339,13845,24736,24737,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.1526408,6.2314401,12,-4,-115.74186,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9119339,55.15,50.21,60.03,42.66,8.333333333333334,1,1,0,0,3,12,2,1,934,180785.31,185400.91,85104.063,0,0,-159.12859,2138.2217 +11339,13845,24737,24736,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,7.060905,6.8498693,12,4,59.798767,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.137023,60.03,42.66,55.15,50.21,10,1,1,0,0,0,12,2,1,934,180785.31,185400.91,85104.063,0,0,-159.12859,2138.2217 +11340,13846,24738,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1102.0587,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.26,45.23,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,211,114133.41,-15191.417,0,0,0,0,1043.6832 +11341,13847,24739,24740,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,0,0,0,2,-12,0,-9,-9,-9,2021,2,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,61.94,29.96,48,51,10,2,3,0,1,0,11,1,0,824.5,82433.391,0,0,0,0,0,860.17548 +11341,13847,24740,24739,-9,-9,1,1,46,0,0,0,2,2,-9,1,3,0,0,0,2,12,0,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,51,61.94,29.96,8.333333333333334,1,1,0,0,4,11,1,0,824.5,82433.391,0,0,0,0,0,860.17548 +11342,13848,24741,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.5913458,8.4287472,0,0,0,-1110.2467,0,2,2,2021,18,6,48,42,1,6,0,13.783592,13.783592,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.26,-9,-9,5,1,1,0,0,14,7,5,1,1174,611112.38,-4546.7788,647875.63,252958.3,12534.859,0,3259.1299 +11343,13849,24742,24744,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,9.3534803,9.1722126,0,2,1,7.9943705,0,2,2,2021,12,0,50,50,1,0,0,26.852337,26.852337,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.08,34.29,54.1,59.11,8.333333333333334,1,1,0,0,12,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11343,13849,24743,-9,24744,24742,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.2899,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11343,13849,24744,24742,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.7795587,7.4537687,0,2,-1,4.6274738,0,-9,-9,2021,7,0,20,22,1,0,0,11.664478,11.664478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,63.08,34.29,10,1,1,0,0,12,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11343,13849,24745,-9,24744,24742,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.05811,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,5,1,564.5,307998.28,221953.25,169570.3,133549.52,0,11577.156,5334.1943 +11344,13850,24746,24750,-9,-9,1,0,38,0,4,0,1,1,-9,0,4,0,0,0,17,-6,160.02394,0,2,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,48.69,41.71,59.61,8.333333333333334,2,3,0,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24747,-9,24746,24750,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-883.07617,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24748,-9,24746,24750,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-977.75031,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24749,-9,24746,24750,1,1,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-861.06342,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24750,24746,-9,-9,1,1,44,0,4,0,1,1,-9,0,4,8.523428,8.6352768,0,17,6,-103.15416,0,3,2,2021,13,2,50,50,1,2,0,9.9299517,9.9299517,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.71,59.61,38.05,48.69,8.333333333333334,2,3,0,0,10,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11344,13850,24751,-9,24746,24750,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-902.47461,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,3,1,1148.5,364824.88,222151.48,229782,179939.31,0,288.19464,2584.5974 +11345,13851,24752,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,7.1159577,7.2046456,5.3024521,0,0,-1080.5762,0,2,2,2021,6,0,12,12,1,0,0,13.42475,13.42475,0,0,0,0,0,0,0,2,1,1,0,5.8628201,5.5421762,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,13,3,1,448,741828.44,301939.66,282597.84,0,0,0,427.17935 +11346,13852,24753,24754,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.6895733,8.5027647,41,-3,-84.336891,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,8.7977018,51.83,57.2,46.16,58.62,8.333333333333334,1,1,0,0,5,7,4,1,1133.5,472452.31,47294.445,385431.13,0,0,0,3794.7661 +11346,13852,24754,24753,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.2955317,6.9552574,41,3,-50.190731,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.249382,46.16,58.62,51.83,57.2,6.666666666666667,1,1,0,0,11,7,4,1,1133.5,472452.31,47294.445,385431.13,0,0,0,3794.7661 +11347,13853,24755,24756,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,8.3687649,8.649909,34,5,.96930099,0,3,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.5769119,8.26299,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,9,7,5,1,717.5,1095066.8,273091.69,395635.03,46888.781,0,0,8967.4316 +11347,13853,24756,24755,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,9.1452475,8.8847408,0,34,-5,71.013069,0,2,1,2021,12,0,24,12,1,0,0,36.147278,36.147278,.05,.05,0,0,0,0,0,0,0,0,0,8.6992168,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,14,7,5,1,717.5,1095066.8,273091.69,395635.03,46888.781,0,0,8967.4316 +11348,13854,24757,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.3529501,8.2831106,0,0,0,-1160.2509,0,2,2,2021,7,0,37,40,1,0,0,14.872409,14.872409,0,0,0,0,0,0,0,0,0,0,0,0,0,52.83,56.93,-9,-9,6.666666666666667,1,1,0,0,4,13,4,0,404,150958.66,-26486.105,135318.75,89347.195,7092.0073,0,2015.2637 +11349,13855,24758,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.348918,8.2856207,0,0,0,-1046.8276,0,3,3,2021,27,12,37,40,1,12,0,12.816252,12.816252,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.46,58.73,-9,-9,5,1,1,0,0,7,11,4,1,437,644193.19,172635.98,140571.8,0,0,0,1455.1029 +11349,13856,24759,-9,24758,-9,1,1,24,0,0,0,2,2,-9,0,3,7.1039486,7.0886011,0,0,0,-968.7533,0,2,-9,2021,20,7,17,0,1,7,1,7.3263583,7.3263583,0,0,0,0,0,0,0,0,0,0,0,0,0,28.97,59.76,-9,-9,3.333333333333333,1,1,0,0,1,11,2,1,398,27711.227,0,0,0,0,0,-235.65741 +11350,13857,24760,-9,24761,24763,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.8577,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11350,13857,24761,24763,-9,-9,1,0,35,2,2,0,1,1,-9,0,5,7.9370923,8.226429,0,12,-3,-70.253685,0,1,2,2021,7,0,28,30,1,0,0,9.9251013,9.9251013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,57.06,57.76,10,1,1,0,0,11,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11350,13857,24762,-9,24761,24763,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.741,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11350,13857,24763,24761,-9,-9,1,1,38,2,2,0,1,1,-9,0,5,9.1636906,9.0375414,0,12,3,-29.128338,0,-9,-9,2021,8,1,49,45,1,1,0,26.178022,26.178022,.05,.05,0,0,0,0,0,0,0,0,0,4.4918442,0,57.06,57.76,51.73,58.82,6.666666666666667,1,1,0,0,15,9,5,1,773.5,893718.69,247429.59,594448.44,0,0,0,4353.396 +11351,13858,24764,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,7.3717761,6.952004,0,0,-1029.8474,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1784883,7.571466,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,6,11,3,1,160,34286.074,45440.926,0,0,0,0,902.59149 +11351,13859,24765,-9,24764,-9,1,1,28,0,0,0,2,2,-9,0,5,8.3010416,8.1022921,0,0,0,-981.06775,0,2,-9,2021,10,0,50,50,1,0,0,5.8150282,5.8150282,0,0,0,0,0,0,0,0,0,0,0,7.2340631,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,5,11,4,1,303,128111.13,0,0,0,0,0,1910.6893 +11352,13860,24766,24767,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,7.6614218,8.7541838,7.8362017,20,1,-95.536713,-9,1,1,2021,6,0,15,0,1,0,0,21.194479,21.194479,.05,.05,0,0,0,0,0,0,0,0,0,2.3079345,7.832613,50.23,52.59,52.24,50.75,10,1,1,0,0,13,9,5,1,486.5,1881889.9,981214.44,421731.31,0,32109.941,0,5335.8809 +11352,13860,24767,24766,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,9.1308565,9.0144157,0,20,-1,-31.509535,-9,2,2,2021,13,3,49,0,1,3,0,18.359426,18.359426,0,0,0,0,0,0,0,0,0,0,0,.55174047,0,52.24,50.75,50.23,52.59,10,1,1,0,0,12,9,5,1,486.5,1881889.9,981214.44,421731.31,0,32109.941,0,5335.8809 +11353,13861,24768,24769,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,5.3612103,5.4922299,7,10,12.297856,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.1564081,5.3267736,51.24,58.84,64.08,41.98,8.333333333333334,1,1,0,0,0,10,3,0,253,944270.38,28974.359,356755.13,0,0,3908.2737,1332.5659 +11353,13861,24769,24768,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.2529202,7.5005889,6.4917684,7,-10,-19.834204,0,2,2,2021,8,0,22,25,1,0,0,6.8040838,6.8040838,0,0,0,0,0,0,0,0,1,1,0,0,6.4605055,64.08,41.98,51.24,58.84,8.333333333333334,1,1,0,0,11,10,3,0,253,944270.38,28974.359,356755.13,0,0,3908.2737,1332.5659 +11354,13862,24770,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.8146815,7.6067319,0,0,-1045.4786,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0707426,7.238811,52.77,55.33,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,90,486209.09,221423.47,0,0,0,0,1530.0743 +11355,13863,24771,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1054.3015,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,.039572701,0,21.472874,0,1,1,0,9.7275915,0,45.44,33.28,-9,-9,5,1,1,0,0,0,9,1,0,872,-43573.383,0,0,0,0,0,12408.585 +11356,13864,24772,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1103.6536,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,11.937017,0,0,1,1,0,0,0,52,47,-9,-9,7,1,1,0,0,0,9,1,1,864,2246.562,0,0,0,0,0,1355.1528 +11356,13865,24773,-9,-9,24772,1,1,28,0,0,0,2,2,-9,0,4,8.0400009,8.2814436,0,0,0,-1053.308,0,-9,2,2021,9,0,37,44,1,0,0,10.264433,10.264433,0,0,0,0,0,0,0,2,1,1,0,0,0,43.2,59.97,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,5301,168151.77,0,0,0,0,0,1602.5919 +11357,13866,24774,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,6.896615,6.4909716,0,0,0,-1052.8403,0,3,3,2021,20,7,16,0,1,7,0,5.7248816,5.7248816,0,0,0,0,0,0,0,0,1,0,1,0,0,42.49,14.43,-9,-9,3.333333333333333,1,1,0,1,9,9,2,1,2327,335306.28,18895.189,224723.8,0,15828.164,0,510.48126 +11358,13867,24775,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.7063994,6.7379732,0,0,-1007.2521,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1615572,6.3798752,38.8,60.42,-9,-9,6.666666666666667,1,1,0,0,0,6,2,1,442,329301,173363.31,294547.88,0,0,0,701.27942 +11359,13868,24776,-9,24777,24781,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-943.86383,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24777,24781,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.4482546,8.3142405,0,6,1,118.23479,0,2,2,2021,4,0,57,55,1,0,0,10.18094,10.18094,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.56,49.35,36.13,56.64,1.666666666666667,1,1,0,0,7,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24778,-9,24777,24781,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-880.5611,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24779,-9,24777,24781,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.7551,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.69,53.18,-9,-9,10,1,1,0,0,1,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24780,-9,24777,24781,1,0,17,0,2,1,3,0,0,0,3,0,0,0,0,0,-1027.1024,-9,1,2,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.018573003,0,44.11,55.31,-9,-9,6.666666666666667,1,1,0,0,3,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13868,24781,24777,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.7539968,8.9837694,0,6,-1,-69.170929,0,3,1,2021,14,3,42,47,1,3,0,21.990772,21.990772,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.13,56.64,57.56,49.35,3.333333333333333,1,1,0,1,7,6,5,1,494,279532.94,229463.38,101288.53,45822.66,11306.174,0,3944.7791 +11359,13869,24782,-9,24777,24781,1,0,19,0,2,0,2,2,-9,0,3,0,0,0,0,0,-1050.4674,1,1,2,2021,13,4,0,8,2,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.38,57.97,-9,-9,5,1,1,0,0,6,6,1,1,449,-11861.606,0,0,0,0,-164.51466,-505.3891 +11360,13870,24783,-9,24786,24787,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.89624,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24784,-9,24786,24787,1,1,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-972.50354,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,1,0,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24785,-9,24786,24787,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.9535,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24786,24787,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,8.9473543,8.9635963,0,7,-8,149.15263,0,1,-9,2021,10,0,38,40,1,1,0,23.55196,23.55196,0,0,0,0,0,0,0,2,1,1,0,0,0,50,54,54,54,8,1,1,0,1,9,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11360,13870,24787,24786,-9,-9,1,1,56,0,2,0,2,2,-9,0,4,8.858161,8.8547573,0,7,8,86.288376,0,2,2,2021,9,0,50,50,1,0,0,13.967508,13.967508,.05,.05,.05,0,0,0,0,7,1,1,0,0,0,54,54,50,54,8,1,1,0,0,10,9,5,0,694.20001,2282287,1213312,1365108.8,383950.72,11787.391,9882.2139,5535.9258 +11361,13871,24788,24789,-9,-9,1,0,30,0,0,0,3,3,-9,0,3,8.5219374,8.3043623,0,5,-2,70.397789,0,-9,-9,2021,20,7,37,40,1,7,0,13.934406,13.934406,.05,.05,0,0,0,0,0,0,0,0,0,1.0546036,0,41.99,41.56,47.15,55.39,3.333333333333333,1,1,0,0,4,2,4,0,2103,-149147.66,55651.508,115117.7,37303.84,63002.305,0,3002.8979 +11361,13871,24789,24788,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.1347198,8.0858049,0,5,2,3.9616833,0,-9,-9,2021,5,0,35,40,1,0,0,9.4313641,9.4313641,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,41.99,41.56,6.666666666666667,1,1,0,0,4,2,4,0,2103,-149147.66,55651.508,115117.7,37303.84,63002.305,0,3002.8979 +11362,13872,24790,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1054.7279,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.38,20.94,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,395,81019.414,0,0,0,0,0,1267.8944 +11363,13873,24791,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.718915,7.5332332,0,0,0,-994.14319,0,3,3,2021,22,10,37,28,1,10,0,7.8292861,7.8292861,0,0,0,0,0,0,0,0,0,0,0,0,0,33.91,59.03,-9,-9,6.666666666666667,1,1,0,0,7,11,3,0,768,670858.06,417419.84,176795.09,0,0,0,1041.187 +11363,13874,24792,-9,24791,-9,1,0,20,0,0,0,2,2,-9,0,4,7.23175,7.6569529,0,0,0,-1004.5838,0,2,-9,2021,11,0,36,38,1,2,1,4.9857364,4.9857364,0,0,0,0,0,0,.99560553,0,0,0,0,1.3036599,0,46,58,-9,-9,7,1,1,0,0,1,11,3,0,1018,136510.95,0,0,0,0,0,862.82336 +11364,13875,24793,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.6514893,7.6944404,0,0,0,-1113.131,-9,2,-9,2021,6,0,37,0,1,0,0,7.889236,7.889236,.05,.05,0,0,0,0,0,0,0,0,0,0,0,65.23,38.89,-9,-9,8.333333333333334,1,1,0,0,11,12,4,0,1003,17968.83,-29217.469,0,0,0,0,911.39508 +11365,13876,24794,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.2073035,7.2780013,0,0,-1027.6456,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5692582,7.3463092,57.06,57.76,-9,-9,10,1,1,0,0,5,4,3,1,1376,976312.06,468534.06,427321.75,0,0,0,1172.1218 +11366,13877,24795,-9,24797,24796,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1048.0579,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,6,4,2,-9,0,0,7,5,1,392.33334,1253751.1,359235.03,432595.59,0,7615.3301,0,6439.252 +11366,13877,24796,24797,-9,-9,1,1,35,1,1,0,2,2,-9,0,5,9.0648661,8.8035402,0,9,3,-122.55606,0,-9,-9,2021,7,0,45,40,1,0,0,21.745031,21.745031,.05,.05,0,0,0,0,0,0,0,0,0,1.5093207,0,59.43,58.05,45.91,59.89,10,1,1,0,0,11,7,5,1,392.33334,1253751.1,359235.03,432595.59,0,7615.3301,0,6439.252 +11366,13877,24797,24796,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,9.0974989,9.0477085,0,9,-3,-161.60378,0,1,1,2021,5,0,35,47,1,0,0,28.779264,28.779264,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,59.43,58.05,8.333333333333334,2,3,0,0,8,7,5,1,392.33334,1253751.1,359235.03,432595.59,0,7615.3301,0,6439.252 +11367,13878,24798,24799,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.5334973,5.3963084,12,1,-24.579414,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5785255,60.12,54.8,61.83,49.95,8.333333333333334,1,1,0,0,6,1,3,1,886.5,683501.31,346741.94,177357.91,0,0,0,2587.4077 +11367,13878,24799,24798,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.3914332,7.5503001,12,-1,40.527199,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1174715,7.8994961,61.83,49.95,60.12,54.8,8.333333333333334,1,1,0,0,6,1,3,1,886.5,683501.31,346741.94,177357.91,0,0,0,2587.4077 +11368,13879,24800,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1012.1602,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.9416084,0,25.137199,0,1,1,0,7.5565181,0,61.45,24.58,-9,-9,5,1,1,0,0,0,9,1,0,555,-43581.582,0,0,0,0,0,2329.8782 +11369,13880,24801,24802,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.2656374,9.4864616,0,9,1,119.6718,0,3,2,2021,7,0,57,53,1,0,0,32.849277,32.849277,.05,.05,.05,0,0,0,.15022224,2,0,0,0,4.2289219,0,60.3,46.58,57.06,57.76,8.333333333333334,1,1,0,0,10,9,5,1,320,1044058.6,508880.84,479356.91,0,10762.855,0,5192.5732 +11369,13880,24802,24801,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,8.1448517,8.3726683,0,9,-1,-27.881838,0,1,1,2021,6,0,36,36,1,0,0,17.116463,17.116463,0,0,0,0,0,0,0,0,0,0,0,2.9866149,0,57.06,57.76,60.3,46.58,8.333333333333334,1,1,0,0,10,9,5,1,320,1044058.6,508880.84,479356.91,0,10762.855,0,5192.5732 +11370,13881,24803,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.0895762,6.3020496,0,0,-1131.6062,0,3,1,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,2.78162,0,0,1,1,0,0,5.8739552,53.48,31.05,-9,-9,3.333333333333333,1,1,0,0,0,7,2,0,1889,172539.88,77376.031,0,0,-2146.261,0,1282.6249 +11371,13882,24804,24805,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,4,-7,0,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,17.074358,0,0,1,1,0,0,0,50.91,36.18,56.76,25.26,8.333333333333334,1,1,0,0,0,11,1,0,984.5,27645.781,60597.266,0,0,0,0,1499.601 +11371,13882,24805,24804,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,0,0,4,7,0,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,7.4046578,0,0,1,1,0,0,0,56.76,25.26,50.91,36.18,8.333333333333334,1,1,0,0,0,11,1,0,984.5,27645.781,60597.266,0,0,0,0,1499.601 +11372,13883,24806,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.7090559,8.793355,5.3298941,0,0,-1014.2338,0,3,2,2021,8,0,55,50,1,0,0,16.632839,16.632839,.05,.05,.05,0,0,0,0,0,1,1,0,5.7391291,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,287.5,534035.88,209870.56,332597.06,121012.97,12784.203,0,2862.8291 +11372,13883,24807,-9,24806,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-858.27448,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,5,1,287.5,534035.88,209870.56,332597.06,121012.97,12784.203,0,2862.8291 +11373,13884,24808,24809,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.9362736,8.8342381,0,9,-1,-65.528831,0,1,2,2021,6,0,40,45,1,0,0,21.93306,21.93306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,32.72,53.51,6.666666666666667,4,2,0,0,11,7,5,0,694.66669,-6845.522,2324.2266,0,0,0,5323.5742,6822.8877 +11373,13884,24809,24808,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,8.4873972,8.3705606,0,9,1,-33.217747,0,1,2,2021,23,7,60,80,1,7,0,9.1032915,9.1032915,0,0,0,0,0,0,0,0,1,1,0,8.759181,0,32.72,53.51,55.36,51.57,3.333333333333333,4,2,0,0,11,7,5,0,694.66669,-6845.522,2324.2266,0,0,0,5323.5742,6822.8877 +11373,13884,24810,-9,24809,24808,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1004.5018,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,5,0,694.66669,-6845.522,2324.2266,0,0,0,5323.5742,6822.8877 +11374,13885,24811,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7497153,7.8146958,0,0,0,-902.83252,0,2,3,2021,19,7,20,22,1,7,0,16.929594,16.929594,.05,.05,0,0,0,0,0,27,0,0,0,0,0,46.17,51.53,-9,-9,3.333333333333333,1,1,0,0,10,6,3,0,750,202564.98,23586.826,0,0,0,4602.3428,816.26294 +11375,13886,24812,-9,24813,24814,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-926.22815,-9,2,2,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.16,37.04,-9,-9,6.666666666666667,1,1,0,0,1,9,5,1,290.66666,978948.63,758277.75,169674.58,0,0,6010.0938,3142.9487 +11375,13886,24813,24814,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.8343472,7.6032805,0,21,-14,-40.551079,0,3,2,2021,12,4,30,31,1,4,0,8.5974579,8.5974579,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.4,58.62,28.25,55.98,8.333333333333334,1,1,0,0,7,9,5,1,290.66666,978948.63,758277.75,169674.58,0,0,6010.0938,3142.9487 +11375,13886,24814,24813,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.3852854,8.3015919,0,21,14,-127.66338,0,2,2,2021,19,7,43,42,1,7,0,13.965607,13.965607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.25,55.98,40.4,58.62,6.666666666666667,1,1,0,0,9,9,5,1,290.66666,978948.63,758277.75,169674.58,0,0,6010.0938,3142.9487 +11375,13887,24815,-9,24813,24814,1,1,18,0,0,0,2,2,-9,0,4,7.777348,8.2402744,0,0,0,-1057.7076,0,2,2,2021,3,0,34,0,1,0,1,7.8311682,7.8311682,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,9,3,1,102,28200.07,0,0,0,0,0,1274.4862 +11376,13888,24816,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,7.9725637,7.9448848,0,0,0,-1025.8195,0,2,3,2021,11,0,45,80,1,0,0,9.2599373,9.2599373,0,0,0,0,0,0,0,0,0,0,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,10,12,4,1,326,-25455.207,0,0,0,0,0,1347.0054 +11377,13889,24817,24818,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,0,0,40,-3,-94.368698,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,49.91,53.94,22.55,6.666666666666667,1,1,0,0,6,12,2,1,429,346584.56,221573.36,0,0,20035.176,0,1527.4326 +11377,13889,24818,24817,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,6.0833716,5.8364468,29,3,-33.857006,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8766685,53.94,22.55,49.71,49.91,5,1,1,0,0,7,12,2,1,429,346584.56,221573.36,0,0,20035.176,0,1527.4326 +11378,13890,24819,-9,24820,24821,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1033.274,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,11,1,0,579,-20376.957,0,0,0,1759.848,0,2458.5686 +11378,13890,24820,24821,-9,-9,1,0,44,0,1,0,2,2,-9,1,2,0,0,0,7,0,0,0,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,28.55,50.85,52,56,5,1,1,0,0,0,11,1,0,579,-20376.957,0,0,0,1759.848,0,2458.5686 +11378,13890,24821,24820,-9,-9,1,1,44,0,1,0,2,2,-9,1,4,0,0,0,7,0,0,-9,2,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,56,28.55,50.85,8,1,1,0,0,0,11,1,0,579,-20376.957,0,0,0,1759.848,0,2458.5686 +11378,13891,24822,-9,24820,24821,1,0,21,0,1,1,2,0,-9,0,4,0,0,0,0,0,-931.46509,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.74010181,0,46,58,-9,-9,7,1,1,0,0,0,11,1,0,983,181643.17,0,0,0,0,0,620.5387 +11379,13892,24823,-9,-9,-9,1,0,51,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1004.2394,0,2,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,14.31,34.39,-9,-9,0,1,1,0,1,0,9,2,0,534,189866.14,0,210236.69,0,0,0,962.77856 +11379,13893,24824,-9,24825,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1032.3182,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,4,2,-9,0,0,9,2,0,419,75369.859,0,0,0,11.239136,351.83429,446.18225 +11379,13893,24825,-9,24823,-9,1,0,23,0,1,0,3,3,-9,0,3,6.7018914,6.687542,0,0,0,-1111.4398,-9,2,-9,2021,15,5,12,0,1,5,1,7.5879412,7.5879412,0,0,0,0,0,0,0,0,1,0,1,0,0,45.72,47.97,-9,-9,6.666666666666667,4,2,0,1,4,9,2,0,419,75369.859,0,0,0,11.239136,351.83429,446.18225 +11379,13894,24826,-9,24823,-9,1,0,21,0,1,0,3,3,-9,0,3,0,0,0,0,0,-956.85638,0,2,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,43.05,40.57,-9,-9,5,4,2,1,0,3,9,1,0,872,200601.91,0,0,0,0,0,-141.91678 +11379,13895,24827,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.1106405,7.9705586,0,0,0,-892.61725,0,-9,-9,2021,12,0,45,0,1,0,0,6.999681,6.999681,.05,.05,0,0,0,0,0,2,1,0,1,0,0,43.76,50.48,-9,-9,5,3,4,0,0,1,9,3,0,179,197792.83,104507.77,0,0,552.17993,409.53198,700.77899 +11380,13896,24828,24829,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,7.999455,8.2731667,40,4,-37.767616,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.3676906,8.3656244,59.53,56.44,57.06,57.76,10,1,1,0,0,4,2,4,1,1703.5,1272834,548523.81,262944.56,0,0,0,3024.6865 +11380,13896,24829,24828,-9,-9,1,0,59,0,0,0,1,1,-9,0,5,6.3455048,7.4532175,7.3740149,40,-4,64.139969,0,3,3,2021,6,0,3,4,1,0,0,20.622553,20.622553,0,0,0,0,0,0,0,0,0,0,0,3.2688193,7.3137827,57.06,57.76,59.53,56.44,10,1,1,0,0,7,2,4,1,1703.5,1272834,548523.81,262944.56,0,0,0,3024.6865 +11381,13897,24830,24831,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,6.7460594,6.6410413,0,6,-5,119.59236,0,-9,-9,2021,10,0,10,8,1,1,0,9.8452978,9.8452978,0,0,0,0,0,0,0,0,0,0,0,6.8417945,0,53,52,60.03,45.37,8,1,1,0,0,1,9,5,1,539.5,2008639,1378104.4,989236.38,223394.03,0,0,5832.7275 +11381,13897,24831,24830,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,9.2174625,9.3312845,6.0364246,39,5,-10.355265,0,3,3,2021,9,1,30,30,1,1,0,41.755703,41.755703,.05,.05,0,0,0,0,0,0,0,0,0,6.2824216,6.6130877,60.03,45.37,53,52,6.666666666666667,1,1,0,0,8,9,5,1,539.5,2008639,1378104.4,989236.38,223394.03,0,0,5832.7275 +11381,13898,24832,-9,24830,24831,1,0,33,0,0,0,2,2,-9,0,4,8.7371473,9.0655174,0,0,0,-1092.0199,-9,2,2,2021,11,0,35,0,1,2,1,21.146902,21.146902,.05,.05,0,0,0,0,0,0,0,0,0,3.1938539,0,49,56,-9,-9,7,1,1,0,0,1,9,5,1,1230,58135.313,-75928.188,0,0,-2926.1394,0,2267.8657 +11382,13899,24833,24834,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,56,-4,.66189414,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2053435,0,51,46,54,46,8,1,1,0,0,9,7,2,1,684,315831.66,142995.89,231621.19,0,0,0,1937.2776 +11382,13899,24834,24833,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.6817608,6.7032976,56,4,-103.84709,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9703627,6.7407875,54,46,51,46,8,1,1,0,0,0,7,2,1,684,315831.66,142995.89,231621.19,0,0,0,1937.2776 +11383,13900,24835,24836,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.570713,8.756115,0,17,-1,-148.05385,0,2,1,2021,8,0,44,43,1,0,0,15.176125,15.176125,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.24,58.84,6.666666666666667,1,1,0,0,8,1,5,1,744.66669,121205.61,47040.359,0,0,0,0,3892.5488 +11383,13900,24836,24835,-9,-9,1,0,42,0,1,0,1,1,-9,0,4,8.4924192,8.1668253,0,17,1,-128.94019,0,2,2,2021,9,0,40,40,1,0,0,11.601642,11.601642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,48.87,58.55,6.666666666666667,1,1,0,0,7,1,5,1,744.66669,121205.61,47040.359,0,0,0,0,3892.5488 +11383,13900,24837,-9,24836,24835,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-997.63403,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,744.66669,121205.61,47040.359,0,0,0,0,3892.5488 +11384,13901,24838,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,3.1071918,7.358243,7.2242293,0,0,-956.13495,0,3,3,2021,10,0,37,30,1,0,0,.061677814,.061677814,0,0,0,0,2.3969216,0,10.293162,0,1,1,0,8.3264141,7.0767655,55.39,40.82,-9,-9,10,1,1,0,0,9,9,3,1,903,651989.69,108151.8,294852.75,0,0,0,1343.3236 +11385,13902,24839,24840,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.7384324,7.5315332,39,1,57.925858,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9714718,7.7639141,57.16,56.15,51.79,55.99,10,1,1,0,0,0,4,4,1,441.5,1405571,1173857,304643.63,114456.94,0,0,3927.7251 +11385,13902,24840,24839,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.673717,7.6843481,39,-1,-4.2679758,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6624002,7.5150242,51.79,55.99,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,441.5,1405571,1173857,304643.63,114456.94,0,0,3927.7251 +11386,13903,24841,-9,24842,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.88037,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,0,582.5,-40996.82,0,0,0,0,0,2032.2473 +11386,13903,24842,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,8.0050468,8.1364918,0,0,0,-1010.2463,0,2,-9,2021,6,0,20,18,1,0,0,18.809004,18.809004,0,0,0,0,0,0,0,0,1,1,0,0,0,60.94,43.68,-9,-9,8.333333333333334,1,1,0,0,8,7,3,0,582.5,-40996.82,0,0,0,0,0,2032.2473 +11387,13904,24843,24844,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,4,3,31.786242,0,-9,-9,2021,10,1,0,12,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.2074409,0,50.05,55.41,54.2,57.49,10,1,1,0,0,4,7,5,1,1408.5,1733067.4,577023.88,758683.25,0,0,0,12597.545 +11387,13904,24844,24843,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.5147257,9.608078,0,4,-3,-40.804615,0,2,2,2021,7,0,40,40,1,0,0,50.845493,50.845493,.05,.05,0,0,0,0,0,0,0,0,0,7.7337327,0,54.2,57.49,50.05,55.41,8.333333333333334,1,1,0,0,10,7,5,1,1408.5,1733067.4,577023.88,758683.25,0,0,0,12597.545 +11388,13905,24845,24846,-9,-9,1,0,51,0,3,0,2,2,-9,0,4,0,0,0,23,2,-107.39828,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,0,836.33331,-64845.758,-14504.688,0,0,1957.9335,5104.7827,1755.7307 +11388,13905,24846,24845,-9,-9,1,1,49,0,3,0,2,2,-9,0,4,8.1394196,7.8972793,0,23,-2,79.291756,0,-9,-9,2021,10,0,40,34,1,0,0,8.6961002,8.6961002,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,12,4,2,0,836.33331,-64845.758,-14504.688,0,0,1957.9335,5104.7827,1755.7307 +11388,13905,24847,-9,24845,24846,1,1,16,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1006.4246,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.01,55.15,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,836.33331,-64845.758,-14504.688,0,0,1957.9335,5104.7827,1755.7307 +11388,13906,24848,-9,24845,24846,1,1,19,0,3,1,2,0,0,0,4,0,0,0,0,0,-928.11102,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,4,1,0,403,0,0,0,0,0,0,0 +11389,13907,24849,24850,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.9772873,7.9570036,52,2,-140.80843,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8891077,7.8630962,58.07,46.29,51.91,35.96,10,1,1,0,0,0,7,3,1,1300.5,3066885,475810,2573482.5,0,0,0,2545.4094 +11389,13907,24850,24849,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,6.1843395,6.8559518,52,-2,-135.91745,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9847975,6.393961,51.91,35.96,58.07,46.29,8.333333333333334,1,1,0,0,0,7,3,1,1300.5,3066885,475810,2573482.5,0,0,0,2545.4094 +11390,13908,24851,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.6598878,7.5957565,6.0107298,0,0,-994.93719,0,3,3,2021,24,12,30,30,1,12,0,10.153892,10.153892,.05,.05,0,0,0,0,0,0,1,1,0,6.3560863,0,28.28,54.63,-9,-9,1.666666666666667,1,1,0,1,11,12,4,1,500,769785.56,956563.5,146222.97,27273.16,0,0,1067.7448 +11391,13909,24852,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.3001747,8.1443558,0,0,0,-1116.433,0,2,2,2021,19,7,30,40,1,7,0,14.900078,14.900078,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,1,8,7,4,0,568,24827.301,0,0,0,0,0,853.58783 +11391,13910,24853,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.330101,8.056428,0,0,0,-1049.2253,0,2,1,2021,8,0,32,23,1,0,0,10.682321,10.682321,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,6.666666666666667,4,5,0,0,4,7,4,0,1204,224023.95,0,231836.92,101707.23,10956.082,2231.8103,1556.1827 +11392,13911,24854,24855,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,5.5013509,5.3650856,8,0,68.431175,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2006314,5.3219395,57.57,49.69,56.35,43.13,8.333333333333334,1,1,0,0,6,2,3,1,1995.5,1123416.5,787806.75,362764.03,0,0,0,1664.0039 +11392,13911,24855,24854,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,0,7.7512112,8.1048975,8,0,46.129974,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1716728,56.35,43.13,57.57,49.69,8.333333333333334,1,1,0,0,0,2,3,1,1995.5,1123416.5,787806.75,362764.03,0,0,0,1664.0039 +11393,13912,24856,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,5,0,6.318049,6.717454,0,0,-1094.4603,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7375169,6.9423113,62.39,56.71,-9,-9,10,1,1,0,0,0,12,2,1,275,393116.53,194731.22,328020.31,0,0,0,599.40997 +11394,13913,24857,24858,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.6799803,9.2604542,0,12,-1,38.688007,0,2,1,2021,12,3,36,37,1,3,0,24.014133,24.014133,0,0,0,0,0,0,0,0,0,0,0,8.6184368,0,51.83,57.2,42.31,53.4,8.333333333333334,1,1,0,0,15,9,5,1,506,1722697.3,1008216,272587.56,0,0,932.32788,4166.8027 +11394,13913,24858,24857,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.7090578,7.8532543,0,12,1,-86.272263,0,-9,3,2021,12,1,30,29,1,1,0,8.3484612,8.3484612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.31,53.4,51.83,57.2,6.666666666666667,1,1,0,0,15,9,5,1,506,1722697.3,1008216,272587.56,0,0,932.32788,4166.8027 +11395,13914,24859,-9,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,0,0,0,0,-928.83881,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,-9,-9,8,1,1,0,0,0,7,2,1,649,-110091.01,0,0,0,0,0,315.98468 +11396,13915,24860,-9,24862,24861,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.6952,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11396,13915,24861,24862,-9,-9,1,1,49,1,2,0,1,1,-9,0,4,8.9914341,8.6986589,0,2,12,90.938522,-9,3,2,2021,9,0,80,0,1,0,0,9.9380255,9.9380255,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,49.63,54.22,8.333333333333334,1,1,0,0,10,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11396,13915,24862,24861,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.8617353,8.6424513,0,2,-12,79.903618,0,-9,-9,2021,9,0,43,57,1,0,0,19.804869,19.804869,.05,.05,0,0,0,0,0,0,1,1,0,1.5806049,0,49.63,54.22,49.46,56.91,8.333333333333334,3,4,0,0,4,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11396,13915,24863,-9,24862,24861,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.4798,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,1176.75,426540.16,195049.88,533160.88,271226.88,0,2394.4485,5129.1592 +11397,13916,24864,24866,-9,-9,1,0,31,0,1,0,2,2,-9,0,4,7.2370992,7.3858166,0,6,-4,66.429108,0,2,-9,2021,7,0,25,20,1,0,0,6.706892,6.706892,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,44.11,55.31,10,1,1,0,0,7,9,4,1,251.66667,206518.31,89439.773,297084.19,191524.09,13989.049,0,3259.6814 +11397,13916,24865,-9,24864,24866,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-907.55542,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,251.66667,206518.31,89439.773,297084.19,191524.09,13989.049,0,3259.6814 +11397,13916,24866,24864,-9,-9,1,1,35,0,1,0,3,3,-9,0,3,8.7869301,8.679431,0,6,4,67.557014,0,3,3,2021,8,1,56,60,1,1,0,11.300367,11.300367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.11,55.31,54.2,57.49,8.333333333333334,1,1,0,0,7,9,4,1,251.66667,206518.31,89439.773,297084.19,191524.09,13989.049,0,3259.6814 +11398,13917,24867,-9,24870,24868,1,0,17,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1019.2062,1,3,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.84,18.59,-9,-9,5,3,4,0,0,1,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24868,24870,-9,-9,1,1,51,0,3,0,2,2,-9,0,3,6.3051939,6.7180772,0,30,4,-124.79678,0,3,3,2021,10,2,20,0,1,2,0,2.7989953,2.7989953,0,0,0,0,0,0,0,0,1,1,0,0,0,34.28,38.58,50,54,3.333333333333333,3,4,0,1,2,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24869,-9,24870,24868,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.5242,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24870,24868,-9,-9,1,0,47,0,3,0,3,3,-9,0,4,6.4809961,6.8272171,0,30,-4,71.453407,0,3,2,2021,10,0,20,0,1,1,0,3.8727469,3.8727469,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,34.28,38.58,8,3,4,0,0,1,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24871,-9,24870,24868,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-947.64215,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,0,0,0,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13917,24872,-9,24870,24868,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.37445,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,510.83334,104441.88,0,232131.75,164540,0,2388.9053,2999.0906 +11398,13918,24873,-9,24870,24868,1,1,19,0,3,0,2,2,-9,0,5,0,0,0,0,0,-908.72955,0,3,2,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,3,4,1,0,1,8,1,0,275,-92453.719,0,0,0,0,0,0 +11399,13919,24874,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,4.7060585,5.2666831,0,0,-983.71136,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1755061,5.508842,35.42,44.62,-9,-9,10,1,1,0,0,0,8,2,0,636,581243.56,-97599.594,344034.06,0,7051.1655,0,1614.4336 +11400,13920,24875,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1005.8358,0,2,3,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,6.2428131,0,0,1,1,0,0,0,28.11,21.31,-9,-9,0,1,1,0,0,0,11,1,0,1154,30263.203,0,0,0,0,0,2190.7253 +11401,13921,24876,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,7.6118569,7.3038602,0,0,-990.45642,0,3,-9,2021,20,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5855203,16.56,54.74,-9,-9,10,1,1,0,0,0,5,3,1,1052,276342.19,-28140.953,0,0,0,0,2010.4918 +11402,13922,24877,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,1,0,7.5368032,7.3614469,0,0,-866.95624,0,2,-9,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.914187,32.16,26.44,-9,-9,1.666666666666667,1,1,0,0,0,4,3,0,156,394807.34,240675.08,158938.98,0,0,0,930.2937 +11403,13923,24878,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,8.2604036,8.0766869,0,0,-995.85132,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.9085956,8.2669182,44.05,55.39,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1480,878144.44,252767.34,212200.38,0,0,0,1994.2727 +11404,13924,24879,24880,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,4.8592052,5.0739503,0,23,-6,35.724289,0,2,2,2021,2,1,40,40,1,1,0,.4509868,.4509868,.05,.05,0,0,0,0,0,0,0,0,0,3.7810423,0,51.73,58.82,45.51,48.29,10,1,1,0,0,13,6,4,1,492.66666,296109.34,275695.09,178539.3,68368.266,0,-738.6272,1648.3889 +11404,13924,24880,24879,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,8.5130777,8.7070198,0,25,6,81.247643,0,3,3,2021,10,2,54,29,1,2,0,11.87631,11.87631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.51,48.29,51.73,58.82,1.666666666666667,1,1,0,0,11,6,4,1,492.66666,296109.34,275695.09,178539.3,68368.266,0,-738.6272,1648.3889 +11404,13924,24881,-9,24880,24879,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-945.67365,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,6,4,1,492.66666,296109.34,275695.09,178539.3,68368.266,0,-738.6272,1648.3889 +11405,13925,24882,24883,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.6360607,7.4797235,28,-1,-168.84557,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5266733,7.8655915,45.33,49.24,54.69,57.47,8.333333333333334,1,1,0,0,6,7,3,1,924,1109276,796080.75,278416.94,0,-1229.8635,233.95615,2553.1362 +11405,13925,24883,24882,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,6.5060167,6.7474804,28,1,69.002319,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.303268,6.4807992,54.69,57.47,45.33,49.24,10,1,1,0,0,4,7,3,1,924,1109276,796080.75,278416.94,0,-1229.8635,233.95615,2553.1362 +11406,13926,24884,24885,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,7.6348448,7.8475003,52,-2,17.432566,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6392517,7.6058731,47.66,52.33,55.86,43.17,6.666666666666667,1,1,0,0,0,4,3,1,508.5,1058861.8,675959.19,268437,0,0,0,2568.5474 +11406,13926,24885,24884,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,7.6678543,7.6702127,52,2,74.200706,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2252526,7.5787883,55.86,43.17,47.66,52.33,8.333333333333334,1,1,0,0,2,4,3,1,508.5,1058861.8,675959.19,268437,0,0,0,2568.5474 +11407,13927,24886,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.7796001,8.1358395,0,0,0,-1029.3969,0,2,1,2021,9,0,35,37,1,0,0,7.5151772,7.5151772,0,0,0,0,0,0,0,0,0,0,0,0,0,51.65,44.35,-9,-9,6.666666666666667,1,1,0,0,7,4,3,0,409,-233859.73,0,74696.18,108625.53,0,0,1343.7135 +11408,13928,24887,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1080.0466,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.11,17.41,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,258,-150641.61,0,0,0,1602.9175,0,927.11145 +11408,13929,24888,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1007.1605,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,51.9,53.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1400,0,0,0,0,0,0,-532.33173 +11409,13930,24889,24890,-9,-9,1,0,65,0,0,0,3,3,-9,1,1,0,0,0,46,0,42.179695,0,3,3,2021,21,9,0,0,3,9,0,0,0,0,0,0,1,0,6.1004477,0,0,1,0,1,0,0,31.45,22.33,53.06,38.84,6.666666666666667,2,3,1,0,0,6,2,1,490,905876.5,517452.47,315988.5,0,0,0,2042.0942 +11409,13930,24890,24889,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.7142463,7.5605912,46,0,85.900368,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.6831012,53.06,38.84,31.45,22.33,0,2,3,0,0,13,6,2,1,490,905876.5,517452.47,315988.5,0,0,0,2042.0942 +11410,13931,24891,24893,-9,-9,1,1,42,0,2,0,3,3,-9,0,4,8.1997881,8.1278505,0,7,5,30.631418,0,-9,2,2021,8,0,45,45,1,0,0,11.033366,11.033366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.69,57.43,54.1,59.11,10,1,1,0,0,8,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11410,13931,24892,-9,24893,24891,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.8975,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11410,13931,24893,24891,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.677248,8.5653,0,7,-5,-55.167858,0,2,2,2021,7,0,27,27,1,0,0,20.544867,20.544867,.05,.05,0,0,0,0,0,0,1,1,0,2.1396093,0,54.1,59.11,43.69,57.43,8.333333333333334,1,1,0,0,8,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11410,13931,24894,-9,24893,24891,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.45447,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,803.25,324457.94,78900.234,461184,208702.17,0,0,3663.7195 +11411,13932,24895,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,6.9218969,6.8973708,0,0,0,-986.80951,0,3,3,2021,13,2,20,20,1,2,0,7.8627706,7.8627706,0,0,0,0,0,0,0,0,1,1,0,0,0,57.48,31.86,-9,-9,3.333333333333333,1,1,0,0,10,5,3,1,2826,-121390.98,0,0,0,241.41708,0,1028.2827 +11412,13933,24896,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.9432101,8.0377865,0,0,0,-1112.6187,0,-9,-9,2021,11,1,30,60,1,1,0,9.2926874,9.2926874,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,2,6,4,0,559,0,0,0,0,0,0,1351.593 +11412,13934,24897,24898,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.5459661,8.5641842,0,2,1,-61.962204,0,-9,-9,2021,7,1,35,35,1,1,0,11.940743,11.940743,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,63.29,38.47,6.666666666666667,1,1,0,0,2,6,4,0,723.5,40885.77,67263.594,141454.91,76535.359,11288.804,807.52417,2730.918 +11412,13934,24898,24897,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,7.9169655,8.175024,0,2,-1,116.42307,0,-9,-9,2021,7,0,32,33,1,0,0,9.286705,9.286705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.29,38.47,60.02,56.42,8.333333333333334,1,1,0,0,6,6,4,0,723.5,40885.77,67263.594,141454.91,76535.359,11288.804,807.52417,2730.918 +11413,13935,24899,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.1050253,8.3515491,0,0,0,-1073.4648,0,3,3,2021,9,0,39,39,1,0,0,9.1296234,9.1296234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,4014,58382.184,84391.031,0,0,0,0,861.96136 +11413,13936,24900,-9,-9,24899,1,1,25,0,0,0,2,2,-9,0,4,7.6179557,7.7646828,0,0,0,-945.70166,0,-9,2,2021,6,0,40,40,1,0,1,6.4619226,6.4619226,0,0,0,0,0,0,0,0,1,1,0,0,0,59.4,51.02,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,965,101550.79,0,0,0,1200.198,0,1782.2729 +11414,13937,24901,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.5630479,7.6329646,0,0,0,-780.65204,0,2,1,2021,14,5,36,35,1,5,0,4.5099797,4.5099797,0,0,0,0,0,0,0,14.5,0,0,0,8.6175747,0,36.97,58.53,-9,-9,8.333333333333334,1,1,0,0,13,8,3,1,118,697799.38,306572.31,364198.81,20364.523,0,0,3979.5222 +11415,13938,24902,24903,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.3249502,7.0063004,0,21,0,-35.691826,0,2,2,2021,6,0,18,30,1,0,0,7.8992095,7.8992095,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,8,5,1,884,997412.5,454799.69,482533.09,0,0,0,4692.6592 +11415,13938,24903,24902,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.3835411,9.3209801,0,22,0,-118.24489,0,2,2,2021,7,0,47,46,1,0,0,29.098108,29.098108,.05,.05,0,0,0,0,0,0,0,0,0,7.2806935,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,13,8,5,1,884,997412.5,454799.69,482533.09,0,0,0,4692.6592 +11416,13939,24904,24905,-9,-9,1,0,63,1,2,0,3,3,-9,0,4,0,5.1909218,5.3306155,32,0,18.786127,0,2,2,2021,8,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1430168,5.0442243,54.2,57.49,43.76,55.68,8.333333333333334,1,1,0,0,8,9,3,1,495.5,1165805.9,588204.38,225986.5,0,0,0,1464.408 +11416,13939,24905,24904,-9,-9,1,1,63,1,2,0,2,2,-9,0,3,0,8.1482372,7.9709077,32,0,67.897301,0,-9,-9,2021,14,2,0,38,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2254744,43.76,55.68,54.2,57.49,6.666666666666667,1,1,0,0,6,9,3,1,495.5,1165805.9,588204.38,225986.5,0,0,0,1464.408 +11417,13940,24906,-9,24908,24909,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.7874,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11417,13940,24907,-9,24908,24909,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-972.24463,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11417,13940,24908,24909,-9,-9,1,0,30,1,2,0,2,2,-9,0,4,8.8492966,8.5909472,0,3,-4,-36.661301,0,3,3,2021,10,1,42,30,1,1,0,14.762902,14.762902,0,0,0,0,0,0,0,0,1,1,0,3.0359409,0,38.69,61.75,49.66,55.68,10,1,1,0,0,9,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11417,13940,24909,24908,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.2363539,8.4765844,0,3,4,-103.86311,0,-9,-9,2021,11,0,50,50,1,0,0,8.8048925,8.8048925,0,0,0,0,0,0,0,2,1,1,0,4.1868377,0,49.66,55.68,38.69,61.75,10,1,1,0,0,10,6,5,1,588.75,809829.31,604336,215332.09,141639.84,0,0,3783.4487 +11418,13941,24910,24911,-9,-9,1,0,45,0,0,0,3,3,-9,0,5,7.0456915,7.1343813,0,21,0,-163.97743,0,-9,-9,2021,6,0,16,35,1,0,0,8.797389,8.797389,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.74,57.22,10,1,1,0,0,9,7,4,0,549,604527.25,194284.84,481131.06,0,0,0,2071.439 +11418,13941,24911,24910,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,8.0201416,7.9338288,0,21,9,5.3913603,0,3,2,2021,8,0,44,44,1,0,0,13.16502,13.16502,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.74,57.22,62.39,56.71,8.333333333333334,1,1,0,0,9,7,4,0,549,604527.25,194284.84,481131.06,0,0,0,2071.439 +11419,13942,24912,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.4797478,8.5458956,0,0,0,-909.62329,0,3,3,2021,7,0,40,40,1,0,0,10.862835,10.862835,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,272,407556.06,352225.19,154666.22,85547.609,0,0,2320.5059 +11420,13943,24913,-9,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,8.1494818,7.9051743,0,0,-1114.1155,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1408386,43.6,51.61,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,1044,1359000.5,59292.254,683403.25,0,0,0,2088.9336 +11421,13944,24914,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,4.877615,4.7901754,0,0,-974.38409,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.862833,4.8551702,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,3776,-104413.98,5297.8042,28909.225,0,0,0,1416.2261 +11422,13945,24915,24916,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,8.7600889,8.7433434,0,26,0,35.055752,-9,1,1,2021,11,0,4,0,1,0,0,178.02786,178.02786,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,47,49,6.666666666666667,1,1,0,0,14,6,5,1,1033,308205.38,294748.91,213820.16,96197.133,0,0,3138.4106 +11422,13945,24916,24915,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.1679583,8.037138,0,26,0,3.0530741,-9,1,1,2021,12,0,36,0,1,2,0,9.3277884,9.3277884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,49,51.14,60.45,7,1,1,0,0,14,6,5,1,1033,308205.38,294748.91,213820.16,96197.133,0,0,3138.4106 +11423,13946,24917,-9,-9,-9,1,0,31,2,4,0,2,2,-9,1,4,0,0,0,0,0,-963.54858,-9,2,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,3,4,0,1,1,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24918,-9,24917,-9,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-962.87756,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24919,-9,24917,-9,1,0,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-967.06085,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24920,-9,24917,-9,1,0,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-894.00214,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11423,13946,24921,-9,24917,-9,1,0,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1026.3036,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,1,0,803.40002,0,0,0,0,0,0,2478.2249 +11424,13947,24922,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.108222,7.8529716,0,0,-1028.4858,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.8668871,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,684,793368.81,681479.38,101994.53,0,5629.0664,-286.01715,701.21625 +11425,13948,24923,24924,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,0,0,0,6,-5,68.268059,-9,1,1,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,59.88,48.2,0,3,4,0,0,4,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11425,13948,24924,24923,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,7.8717647,7.9724441,0,6,5,142.89035,0,-9,-9,2021,7,0,45,45,1,0,0,6.0204906,6.0204906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.88,48.2,62.39,56.71,8.333333333333334,3,4,0,1,3,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11425,13948,24925,-9,24923,24924,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.45532,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11425,13948,24926,-9,24923,24924,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1107.5657,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,330,1203770,103610.24,1705341.6,980046,0,0,1528.3541 +11426,13949,24927,24928,-9,-9,1,1,91,0,0,0,3,3,-9,0,4,0,7.9546499,7.4532447,65,2,10.110997,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3119302,7.8512425,52.21,51.53,55.06,40.97,8.333333333333334,1,1,0,0,0,12,3,1,650.5,369938.88,264878.22,164717.7,0,0,1877.5435,2320.3716 +11426,13949,24928,24927,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,65,-2,-59.26218,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.06,40.97,52.21,51.53,8.333333333333334,1,1,0,0,3,12,3,1,650.5,369938.88,264878.22,164717.7,0,0,1877.5435,2320.3716 +11427,13950,24929,-9,-9,-9,1,0,97,0,0,0,2,2,-9,0,3,0,7.424171,7.5449805,0,0,-982.46667,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1140308,68,24.02,-9,-9,10,1,1,0,0,0,12,3,1,266,501940.97,112087.1,150059.47,0,0,0,1444.235 +11428,13951,24930,24931,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,7.9385405,8.1708841,31,1,91.477089,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4218466,7.6956177,57.16,56.15,47.58,56.39,10,1,1,0,0,9,4,4,1,1346.5,228343.34,156692.78,135824.91,0,0,0,2669.8511 +11428,13951,24931,24930,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,0,8.4599771,8.090023,31,-1,46.452084,0,2,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,8.2970638,47.58,56.39,57.16,56.15,8.333333333333334,1,1,0,0,9,4,4,1,1346.5,228343.34,156692.78,135824.91,0,0,0,2669.8511 +11429,13952,24932,24933,-9,-9,1,1,47,0,2,0,3,3,-9,0,4,7.8085165,7.8836865,0,2,1,-20.187895,-9,3,3,2021,9,0,35,0,1,1,0,9.0129576,9.0129576,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52,55,41.14,36.85,8,1,1,0,0,1,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13952,24933,24932,-9,-9,1,0,46,0,2,0,3,3,-9,1,2,8.7115011,8.5198393,0,2,-1,-63.077194,0,3,3,2021,17,4,45,0,1,4,0,11.757893,11.757893,.05,.05,0,0,0,0,0,27,1,1,0,0,0,41.14,36.85,52,55,1.666666666666667,1,1,0,0,6,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13952,24934,-9,24933,24932,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-882.22174,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13952,24935,-9,24933,24932,1,1,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-971.52417,-9,3,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,13,4,1,1122,373380.47,332691.97,139181.78,260196.47,2718.4866,0,5946.7788 +11429,13953,24936,-9,24933,24932,1,1,19,0,2,1,2,0,0,0,1,0,0,0,0,0,-1074.5043,-9,3,3,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.95,43.4,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,315,3492.8142,0,0,0,0,0,275.54962 +11430,13954,24937,24938,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.4656544,7.8815098,0,6,3,3.2389662,0,3,-9,2021,13,1,25,27,1,1,0,7.2908182,7.2908182,0,0,0,0,0,0,0,101,0,0,0,0,0,48.28,60.18,35.13,45.54,8.333333333333334,1,1,0,0,6,11,5,1,1474,164377.48,100325.46,349992.69,144755.72,0,22297.313,4413.0723 +11430,13954,24938,24937,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.0731764,9.2539873,0,6,-3,-45.112907,0,2,-9,2021,14,3,48,43,1,3,0,19.936415,19.936415,0,0,0,0,0,0,0,0,0,0,0,5.3080716,0,35.13,45.54,48.28,60.18,3.333333333333333,1,1,0,0,6,11,5,1,1474,164377.48,100325.46,349992.69,144755.72,0,22297.313,4413.0723 +11430,13955,24939,-9,24937,24938,1,0,26,0,0,0,2,2,-9,0,4,8.3304882,7.9436731,0,0,0,-1160.8472,-9,2,2,2021,10,0,55,0,1,0,1,8.7493687,8.7493687,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,1.666666666666667,1,1,0,0,6,11,4,1,84,-335668.22,0,0,0,0,0,1343.5808 +11430,13956,24940,-9,24937,24938,1,0,21,0,0,0,2,2,1,0,3,5.7341099,5.7970395,0,0,0,-929.80133,-9,2,2,2021,10,0,44,0,1,0,1,.83564436,.83564436,0,0,0,0,0,0,0,0,0,0,0,.010159248,0,35.67,56.59,-9,-9,5,1,1,0,0,5,11,2,1,804,165322.25,0,0,0,0,0,151.64471 +11431,13957,24941,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.3167372,8.2766199,0,0,0,-975.83264,0,-9,-9,2021,11,0,41,42,1,0,0,12.288958,12.288958,0,0,0,0,0,0,0,2,1,1,0,.71735865,0,43.21,52.88,-9,-9,8.333333333333334,1,1,0,0,11,5,4,1,301,37266.664,0,0,0,0,0,1796.6379 +11432,13958,24942,24943,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,6.9458179,7.1690259,7,7,55.020653,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6428272,6.9520311,54.95,44.79,57.16,56.15,10,1,1,0,0,0,10,3,1,831,557918.63,407712.5,167576.61,0,0,0,1993.136 +11432,13958,24943,24942,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.0223675,6.875277,7,-7,89.780853,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,1.0663965,2,1,1,0,4.597559,7.088089,57.16,56.15,54.95,44.79,8.333333333333334,1,1,0,0,6,10,3,1,831,557918.63,407712.5,167576.61,0,0,0,1993.136 +11433,13959,24944,24945,-9,-9,1,0,47,0,3,0,2,2,-9,0,2,0,0,0,20,4,-70.303497,0,1,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.74,47.8,47.44,56.39,10,1,1,0,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24945,24944,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.3711348,8.2621603,0,20,-4,93.711632,0,-9,-9,2021,6,0,62,61,1,0,0,8.2040958,8.2040958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.44,56.39,55.74,47.8,8.333333333333334,1,1,0,0,13,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24946,-9,24944,24945,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.8797,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24947,-9,24944,24945,1,1,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1043.4429,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11433,13959,24948,-9,24944,24945,1,0,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1053.6838,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.88,50.89,-9,-9,10,1,1,0,0,0,9,3,1,1121.6,-33011.559,79724.461,0,0,1377.4612,0,2285.6301 +11434,13960,24949,-9,24950,24951,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-953.20221,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,11,5,1,570.33331,107564.94,120113.63,137713.67,85766.328,0,0,3005.4292 +11434,13960,24950,24951,-9,-9,1,0,32,0,1,0,1,1,-9,0,4,8.4688692,8.3859243,0,6,0,21.965916,0,2,2,2021,6,1,38,37,1,1,0,18.596142,18.596142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.09,46.7,10,1,1,0,0,9,11,5,1,570.33331,107564.94,120113.63,137713.67,85766.328,0,0,3005.4292 +11434,13960,24951,24950,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.0563726,8.4101105,0,6,0,-66.006447,0,-9,-9,2021,12,0,40,40,1,0,0,10.411736,10.411736,.05,.05,0,0,0,0,0,0,1,1,0,6.1138606,0,57.09,46.7,54.79,55.86,8.333333333333334,4,2,0,0,6,11,5,1,570.33331,107564.94,120113.63,137713.67,85766.328,0,0,3005.4292 +11435,13961,24952,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.0264978,7.8176832,0,0,0,-1103.2574,-9,2,2,2021,16,4,42,0,1,4,0,8.1862926,8.1862926,0,0,0,0,0,0,0,27,0,0,0,0,0,41.12,43.31,-9,-9,5,1,1,0,0,6,13,4,1,2017,-109720.59,0,0,0,0,0,1577.4888 +11436,13962,24953,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-925.0976,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.0108433,0,0,1,1,0,0,0,60.61,27.8,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,396,105812.05,0,0,0,0,0,1620.1133 +11437,13963,24954,24955,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,5.5127482,5.6448917,52,-1,-51.78775,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6110005,63.31,32.94,62.39,56.71,8.333333333333334,1,1,0,0,0,1,2,1,1241,510649.22,268733.53,114635.63,0,0,0,935.11621 +11437,13963,24955,24954,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,6.8428388,7.175971,52,1,-126.07852,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7170005,62.39,56.71,63.31,32.94,8.333333333333334,1,1,0,0,8,1,2,1,1241,510649.22,268733.53,114635.63,0,0,0,935.11621 +11438,13964,24956,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,9.136632,8.9721832,0,0,0,-1120.4427,0,2,2,2021,7,0,38,50,1,0,0,22.250412,22.250412,.05,.05,.05,0,0,0,0,2,0,0,0,.52885103,0,63.02,35.77,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,893,115861.65,77623.016,258143.42,195533.44,0,0,2672.5 +11439,13965,24957,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.5499916,8.7373953,0,0,0,-1080.7627,0,-9,-9,2021,13,1,35,55,1,1,0,18.205593,18.205593,0,0,0,0,0,0,0,0,0,0,0,0,0,42.19,58.81,-9,-9,8.333333333333334,1,1,0,1,11,8,5,1,3175,-23195.174,0,0,0,0,0,2192.0344 +11440,13966,24958,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.2357388,8.4223156,0,0,0,-892.09009,0,2,2,2021,16,4,44,38,1,4,0,9.0232821,9.0232821,0,0,0,0,0,0,0,0,0,0,0,0,0,42.66,53.61,-9,-9,5,1,1,0,1,11,12,4,1,518,205548.13,11918.075,206335.08,130920.69,0,1025.1256,846.5437 +11441,13967,24959,-9,24960,24961,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.48358,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11441,13967,24960,24961,-9,-9,1,0,33,0,2,0,1,1,-9,0,2,8.6551399,8.7623606,0,11,-6,37.959946,0,-9,-9,2021,11,2,5,0,1,2,0,120.49392,120.49392,0,0,0,0,0,0,0,0,1,1,0,1.5692055,0,42.1,37.58,54.2,57.49,5,2,3,0,0,1,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11441,13967,24961,24960,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,4.3054223,3.7929418,0,11,6,4.3581429,0,2,1,2021,10,0,40,38,1,0,0,.17862658,.17862658,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.1,37.58,8.333333333333334,2,3,0,0,8,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11441,13967,24962,-9,24960,24961,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-859.84143,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,4,0,629.75,396623.22,122948.91,545787.31,178749.28,0,0,2202.3293 +11442,13968,24963,24964,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.2066402,6.8424654,9,-2,-47.732239,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1567531,65.38,31.06,68.73999999999999,28.12,10,1,1,0,0,0,13,2,1,1341,163930.22,61899.188,0,0,0,0,1981.718 +11442,13968,24964,24963,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,9,2,-15.010003,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.73999999999999,28.12,65.38,31.06,10,1,1,0,0,0,13,2,1,1341,163930.22,61899.188,0,0,0,0,1981.718 +11443,13969,24965,24966,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,44,-3,0,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,63.83,43.62,60.02,56.42,10,1,1,0,0,0,12,1,0,357.5,47800.805,0,74926.148,0,0,0,2540.5063 +11443,13969,24966,24965,-9,-9,1,0,69,0,0,0,3,3,-9,0,5,0,0,0,44,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.02,56.42,63.83,43.62,10,1,1,0,0,0,12,1,0,357.5,47800.805,0,74926.148,0,0,0,2540.5063 +11444,13970,24967,24968,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,6.7909894,6.6431856,37,-1,74.427605,0,1,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4076571,0,62.49,55.09,49.22,53.46,0,1,1,0,0,9,6,3,1,1161,1766843,1364737.5,261286.2,159798,0,0,1053.1663 +11444,13970,24968,24967,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,7.157907,6.9139266,40,1,-66.904884,0,2,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.1123481,7.274487,49.22,53.46,62.49,55.09,5,1,1,0,0,7,6,3,1,1161,1766843,1364737.5,261286.2,159798,0,0,1053.1663 +11445,13971,24969,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.0887656,6.8483148,0,0,-909.14319,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8223114,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,4,2,0,140,209291.86,104937.73,0,0,0,0,1353.6294 +11446,13972,24970,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,1,0,5.9625096,5.7139564,0,0,-1052.5067,0,2,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,8.1667452,0,64.429352,0,1,1,0,4.5882215,5.6384401,30.08,32.94,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,2106,204940.59,270549.41,0,0,0,0,1911.1218 +11447,13973,24971,24972,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.3649602,6.6238046,63,-3,-60.086258,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3641596,52,46,60.93,36.01,8,2,3,0,0,0,7,2,1,4590.5,573428.38,253601.38,282858.72,0,0,0,2805.6182 +11447,13973,24972,24971,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.3491979,6.3244195,63,3,37.648037,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3865409,60.93,36.01,52,46,8.333333333333334,2,3,0,0,0,7,2,1,4590.5,573428.38,253601.38,282858.72,0,0,0,2805.6182 +11448,13974,24973,-9,24975,24976,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.1105,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11448,13974,24974,-9,24975,24976,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.99646,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11448,13974,24975,24976,-9,-9,1,0,37,1,2,0,1,1,-9,0,5,8.0009565,7.8210149,0,11,-4,-191.95508,0,-9,-9,2021,8,0,23,24,1,0,0,15.373038,15.373038,.05,.05,0,0,0,0,0,0,1,1,0,2.5449421,0,54.1,59.11,49.04,55.86,8.333333333333334,1,1,0,0,9,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11448,13974,24976,24975,-9,-9,1,1,41,1,2,0,1,1,-9,0,3,8.4123049,8.9885969,0,11,4,82.893433,0,2,2,2021,7,0,38,38,1,0,0,18.120422,18.120422,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.1,59.11,8.333333333333334,1,1,0,0,13,9,4,1,281.5,645769.81,256524.31,259845.34,46021.145,0,0,3575.1709 +11449,13975,24977,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.7406125,8.0985909,7.5599461,0,0,-825.5896,0,1,1,2021,8,0,23,19,1,0,0,15.343931,15.343931,.05,.05,.05,0,0,0,0,14.5,0,0,0,4.5846343,7.413126,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,394,245063.38,105139.83,118509.2,52292.852,0,0,2065.5605 +11450,13976,24978,-9,24979,24980,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1171.0179,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,63,-9,-9,7,4,2,-9,0,0,2,5,1,607.33331,242716.73,217645.47,231462.17,123391.08,0,0,4711.562 +11450,13976,24979,24980,-9,-9,1,0,32,1,1,0,1,1,-9,0,4,8.7346926,8.5633726,0,3,1,-46.754677,0,-9,-9,2021,15,4,38,38,1,4,0,16.504108,16.504108,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.3,60.77,57.16,56.15,8.333333333333334,1,1,0,0,9,2,5,1,607.33331,242716.73,217645.47,231462.17,123391.08,0,0,4711.562 +11450,13976,24980,24979,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,8.9042864,9.0689583,0,3,-1,-59.711277,0,2,2,2021,8,0,40,42,1,0,0,23.538891,23.538891,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,41.3,60.77,8.333333333333334,4,2,0,0,13,2,5,1,607.33331,242716.73,217645.47,231462.17,123391.08,0,0,4711.562 +11451,13977,24981,24982,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.8097959,7.4516912,28,16,44.174805,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2362138,7.5712566,58.96,39.65,60.28,43.74,8.333333333333334,1,1,0,0,9,5,3,1,1391,684157.25,340133,224747.22,0,0,0,1384.8594 +11451,13977,24982,24981,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,0,0,0,27,-16,-8.471467,0,3,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.603622,0,60.28,43.74,58.96,39.65,8.333333333333334,4,2,0,0,0,5,3,1,1391,684157.25,340133,224747.22,0,0,0,1384.8594 +11452,13978,24983,24986,-9,-9,1,1,45,0,2,0,2,2,-9,0,1,7.7152829,7.9540601,0,8,6,54.098385,0,3,3,2021,12,2,39,39,1,2,0,6.1072974,6.1072974,0,0,0,0,0,0,0,0,1,0,1,0,0,42.83,21.19,51.24,58.84,3.333333333333333,4,2,0,0,11,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11452,13978,24984,-9,24986,24983,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.62842,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11452,13978,24985,-9,24986,24983,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1040.1127,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11452,13978,24986,24983,-9,-9,1,0,39,0,2,0,1,1,0,0,4,0,0,0,8,-6,13.111728,-9,-9,-9,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,42.83,21.19,8.333333333333334,1,1,0,0,11,4,2,1,330.25,32748.824,0,0,0,364.83359,7.3732681,2415.6045 +11453,13979,24987,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,5,0,0,0,0,0,-896.57794,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,10,1,1,308,73122.453,0,0,0,0,0,577.27637 +11454,13980,24988,-9,24989,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.95483,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,594,-4713.6035,0,0,0,0,0,1905.8948 +11454,13980,24989,-9,-9,-9,1,0,39,0,1,0,2,2,-9,1,1,0,0,0,0,0,-875.31824,0,2,-9,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.36,24.02,-9,-9,5,3,4,0,0,0,8,2,0,594,-4713.6035,0,0,0,0,0,1905.8948 +11455,13981,24990,-9,24993,24992,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1074.1787,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24991,-9,24993,24992,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-908.13739,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24992,24993,-9,-9,1,1,44,0,3,0,2,2,-9,0,3,8.0867357,8.0843067,0,23,-2,5.3950973,0,2,3,2021,8,0,50,55,1,0,0,8.9248981,8.9248981,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.15,44.79,57.06,57.76,8.333333333333334,1,1,0,0,11,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24993,24992,-9,-9,1,0,46,0,3,0,2,2,-9,0,5,7.5317807,7.6349702,0,23,2,41.80307,0,2,2,2021,7,0,15,15,1,0,0,15.61803,15.61803,.05,.05,0,0,0,0,0,0,1,1,0,3.432936,0,57.06,57.76,55.15,44.79,10,1,1,0,0,8,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11455,13981,24994,-9,24993,24992,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-956.14972,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,3,1,760,58931.594,17739.232,0,0,0,4194.9302,2845.1982 +11456,13982,24995,24997,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.7739048,9.0256281,0,8,-6,120.69108,0,2,2,2021,14,2,40,40,1,2,0,18.775669,18.775669,0,0,0,0,0,0,0,0,1,1,0,.81177455,0,33.67,45.31,51.83,57.2,6.666666666666667,1,1,0,0,10,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11456,13982,24996,-9,24997,24995,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.009,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11456,13982,24997,24995,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.5170088,7.8616419,0,8,6,-56.520649,0,2,-9,2021,9,0,25,25,1,0,0,10.61237,10.61237,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,33.67,45.31,6.666666666666667,1,1,0,0,8,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11456,13982,24998,-9,24997,24995,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-996.52368,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1095.75,226793.44,122234.37,0,0,2281.4219,0,4626.8804 +11457,13983,24999,25000,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,5.38761,5.5738273,36,-2,-105.26966,0,3,3,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0523152,58.75,24.64,46.08,57.2,5,1,1,0,0,0,9,4,1,313,1905827.8,848404.63,744519.88,0,0,0,3381.6104 +11457,13983,25000,24999,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.1878471,8.389473,7.6040683,36,2,-29.556925,0,3,3,2021,20,9,36,37,1,9,0,11.965301,11.965301,0,0,0,0,0,0,0,120,1,1,0,0,7.9855323,46.08,57.2,58.75,24.64,3.333333333333333,1,1,0,0,4,9,4,1,313,1905827.8,848404.63,744519.88,0,0,0,3381.6104 +11458,13984,25001,25002,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,7.0828452,7.4272814,30,12,6.1242566,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,7.5099335,37.02,37.37,50.18,47.09,6.666666666666667,1,1,0,0,6,4,4,1,499,489584.16,63587.59,259093.13,0,5203.9863,0,1619.2603 +11458,13984,25002,25001,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6569548,7.7091384,0,30,-12,30.853308,0,2,1,2021,20,8,43,42,1,8,0,8.1036644,8.1036644,0,0,0,0,0,0,0,0,0,0,0,3.3969162,0,50.18,47.09,37.02,37.37,3.333333333333333,1,1,0,0,8,4,4,1,499,489584.16,63587.59,259093.13,0,5203.9863,0,1619.2603 +11459,13985,25003,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.5150795,6.1795311,0,0,-1022.5579,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3823609,6.3652225,50.49,34.97,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,509,83980.523,135284.56,111679.51,0,0,0,2805.7517 +11460,13986,25004,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-981.93201,0,2,2,2021,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,59.71,50.89,-9,-9,6.666666666666667,3,4,1,0,8,8,2,1,763,-102584.02,0,0,0,0,0,0 +11461,13987,25005,-9,-9,-9,1,0,30,0,1,0,1,1,-9,0,3,8.2528095,8.2383833,0,0,0,-922.28455,0,3,3,2021,12,0,47,47,1,0,1,7.9748206,7.9748206,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.01,49.23,-9,-9,3.333333333333333,2,3,0,0,11,8,4,0,2557,272222.34,-11005.715,0,0,1241.0939,2372.907,418.49207 +11461,13988,25006,-9,-9,-9,1,0,35,0,1,0,1,1,-9,0,4,8.74932,8.540287,0,0,0,-1046.1681,0,3,3,2021,17,5,35,35,1,5,1,19.6668,19.6668,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.97,58.49,-9,-9,5,2,3,0,0,11,8,5,0,410,-32016.629,69740.242,199805.17,120504.38,36769.762,1823.8446,3064.1519 +11461,13989,25007,-9,-9,-9,1,1,23,0,1,0,1,1,-9,0,3,7.9615078,7.8958936,0,0,0,-1053.1923,0,3,3,2021,14,2,37,37,1,2,1,9.0425501,9.0425501,0,0,0,0,0,0,0,0,1,1,0,0,0,45.5,50.46,-9,-9,6.666666666666667,2,3,0,0,1,8,4,0,1022,177524.05,0,0,0,0,0,1458.83 +11462,13990,25008,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1028.1815,0,1,1,2021,11,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6111708,0,46.55,58.3,-9,-9,5,1,1,1,0,6,4,1,0,312,0,0,0,0,0,0,191.82388 +11463,13991,25009,25010,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.5461807,8.510664,0,3,1,102.57243,0,-9,-9,2021,10,1,37,41,1,1,0,11.490622,11.490622,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,54.2,57.49,6.666666666666667,1,1,0,0,2,4,5,0,2458,335782.34,31063.607,319697.31,201152.83,0,0,4124.3799 +11463,13991,25010,25009,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.6680861,8.5018024,4.7015014,3,-1,-80.653534,0,-9,-9,2021,8,1,37,37,1,1,0,17.905527,17.905527,.05,.05,0,0,0,0,0,0,0,0,0,5.6803536,0,54.2,57.49,49.04,55.86,8.333333333333334,1,1,0,0,5,4,5,0,2458,335782.34,31063.607,319697.31,201152.83,0,0,4124.3799 +11464,13992,25011,25012,25014,-9,1,0,47,0,1,0,2,2,-9,0,5,7.1652045,7.3359156,0,29,-4,115.36105,0,2,2,2021,11,0,22,20,1,0,0,5.5657296,5.5657296,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,45.01,57.46,8.333333333333334,1,1,0,0,9,5,3,1,669.33331,159238.94,21834.988,240282.39,70414.859,0,0,2574.2637 +11464,13992,25012,25011,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,7.6727071,8.1086216,6.3056421,29,4,-127.86935,0,-9,-9,2021,9,0,47,35,1,0,0,6.9365673,6.9365673,.05,.05,0,0,0,0,0,0,1,1,0,0,6.2092738,45.01,57.46,54.1,59.11,5,1,1,0,0,7,5,3,1,669.33331,159238.94,21834.988,240282.39,70414.859,0,0,2574.2637 +11464,13992,25013,-9,25011,25012,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1015.0854,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,5,3,1,669.33331,159238.94,21834.988,240282.39,70414.859,0,0,2574.2637 +11464,13993,25014,-9,-9,-9,1,0,71,0,1,0,2,2,-9,0,3,0,7.8402629,7.9603915,0,0,-945.46039,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.743979,55.54,46.02,-9,-9,10,1,1,0,0,0,5,3,1,869,957451.63,601253.5,207805.75,0,10701.139,0,2399.1348 +11465,13994,25015,25017,-9,-9,1,0,33,1,1,0,2,2,-9,0,4,7.8172755,7.6132421,0,3,-2,-178.19598,0,-9,-9,2021,17,6,21,35,1,6,0,11.023107,11.023107,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,22.83,61.65,8.333333333333334,1,1,0,0,3,12,4,1,662.33331,180786.53,204425.73,175709.66,131114.39,0,11247.376,3352.2798 +11465,13994,25016,-9,25015,25017,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.76282,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,4,1,662.33331,180786.53,204425.73,175709.66,131114.39,0,11247.376,3352.2798 +11465,13994,25017,25015,-9,-9,1,1,35,1,1,0,2,2,-9,0,2,8.8462,8.786418,0,3,2,56.041103,0,1,2,2021,26,9,35,35,1,9,0,17.526808,17.526808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.83,61.65,49.35,59.64,3.333333333333333,1,1,0,0,12,12,4,1,662.33331,180786.53,204425.73,175709.66,131114.39,0,11247.376,3352.2798 +11466,13995,25018,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1147.4143,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.4009957,0,32.72,40.41,-9,-9,5,1,1,0,0,6,2,1,0,439,98222.188,0,99744.43,0,0,0,787.20758 +11467,13996,25019,25021,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.0358095,8.2327557,0,3,-4,94.912697,0,2,2,2021,16,4,40,40,1,4,0,8.5512981,8.5512981,.05,.05,0,0,0,0,0,0,1,1,0,2.7794311,0,46.4,59.87,53.24,50.01,8.333333333333334,1,1,0,0,7,8,4,1,673.66669,84042.5,-14118.972,0,0,0,0,4723.0283 +11467,13996,25020,-9,25019,25021,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.8503,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,673.66669,84042.5,-14118.972,0,0,0,0,4723.0283 +11467,13996,25021,25019,-9,-9,1,1,37,1,1,0,1,1,-9,0,3,7.801075,7.9409561,0,3,4,6.1603284,0,1,1,2021,9,1,30,40,1,1,0,12.241135,12.241135,.05,.05,0,0,0,0,0,0,1,1,0,7.4173031,0,53.24,50.01,46.4,59.87,8.333333333333334,1,1,0,0,11,8,4,1,673.66669,84042.5,-14118.972,0,0,0,0,4723.0283 +11468,13997,25022,-9,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,0,7.9497604,7.590929,0,0,-945.95837,-9,-9,-9,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4373713,58.44,46.03,-9,-9,6.666666666666667,3,4,0,0,0,8,3,1,109,1634577.3,1055125.8,444892.09,0,0,0,1652.0814 +11468,13998,25023,-9,25022,-9,1,1,29,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1068.371,0,2,2,2021,19,8,0,29,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4676368,0,26.33,60.03,-9,-9,1.666666666666667,3,4,1,0,9,8,2,1,625,172654.59,0,0,0,0,0,1628.4525 +11469,13999,25024,25025,-9,-9,1,1,48,0,0,0,3,3,-9,0,1,0,0,0,6,-1,8.5648079,0,3,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.53,31.94,57.33,53.46,3.333333333333333,1,1,1,0,8,5,3,1,563,-6703.6963,38974.352,0,0,0,0,1941.3206 +11469,13999,25025,25024,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5611897,7.9144197,0,6,1,31.653074,-9,3,2,2021,11,0,40,0,1,0,0,6.9226117,6.9226117,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,37.53,31.94,6.666666666666667,1,1,0,1,7,5,3,1,563,-6703.6963,38974.352,0,0,0,0,1941.3206 +11469,14000,25026,-9,25025,25024,1,0,23,0,0,0,2,2,-9,0,2,7.5048904,7.7435708,0,0,0,-1002.1136,-9,2,3,2021,23,9,47,0,1,9,1,5.1623282,5.1623282,0,0,0,0,0,0,0,0,0,0,0,1.378646,0,12.95,62.22,-9,-9,1.666666666666667,1,1,0,0,7,5,3,1,322,275165.53,0,0,0,0,0,1379.4225 +11470,14001,25027,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.2423077,8.7285643,0,0,0,-953.93103,0,2,2,2021,11,0,42,53,1,0,0,21.992592,21.992592,.05,.05,0,0,0,0,0,0,1,1,0,4.1558533,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,8,12,5,1,495,365115.28,70864.125,0,0,0,0,2968.8831 +11471,14002,25028,25029,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.814249,8.3343801,49,3,48.221523,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5960698,8.3979111,61.43,43.34,49.52,56.95,8.333333333333334,1,1,0,0,0,9,3,1,661,977808,308337.47,370070.38,0,0,0,2832.9023 +11471,14002,25029,25028,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,49,-3,-73.912521,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.1044078,0,49.52,56.95,61.43,43.34,8.333333333333334,1,1,0,0,0,9,3,1,661,977808,308337.47,370070.38,0,0,0,2832.9023 +11472,14003,25030,25031,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,6.9606385,7.144897,0,35,2,115.45317,0,3,-9,2021,7,0,12,-9,1,0,0,9.8967981,9.8967981,0,0,0,0,0,0,0,0,1,0,1,0,0,57.57,49.69,26.65,23.11,6.666666666666667,1,1,0,0,9,1,2,0,850.5,727141.25,290078.44,424190.75,0,0,0,298.16019 +11472,14003,25031,25030,-9,-9,1,0,60,0,0,0,2,2,-9,1,1,0,0,0,37,-2,-37.215633,0,3,3,2021,9,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,26.65,23.11,57.57,49.69,3.333333333333333,1,1,0,0,9,1,2,0,850.5,727141.25,290078.44,424190.75,0,0,0,298.16019 +11473,14004,25032,-9,25035,25033,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1052.8943,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,4,2,-9,0,0,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11473,14004,25033,25035,-9,-9,1,1,51,0,2,0,1,1,-9,0,2,7.7518554,8.0461998,4.8522363,20,5,143.90942,0,3,3,2021,21,9,42,41,1,9,0,7.0461535,7.0461535,.05,.05,0,0,0,0,0,0,1,0,1,0,4.8504391,38.98,46.38,53.14,51.28,3.333333333333333,1,1,0,1,8,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11473,14004,25034,-9,25035,25033,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.0024,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,4,2,-9,0,0,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11473,14004,25035,25033,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.4866319,7.5221405,0,20,-5,60.809326,0,2,2,2021,12,0,28,28,1,0,0,7.9047689,7.9047689,.05,.05,0,0,0,0,0,0,1,0,1,6.5154934,0,53.14,51.28,38.98,46.38,6.666666666666667,2,3,0,1,12,10,3,1,696.75,484275.13,191209.67,212444.91,0,0,0,2786.3135 +11474,14005,25036,-9,-9,-9,1,0,56,0,1,0,1,1,-9,1,4,0,7.5138998,6.8585358,0,0,-1037.9108,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.8548279,0,54.34,53.29,-9,-9,10,1,1,0,0,5,10,2,0,803.5,280918.44,63841.586,147671.78,5317.6025,0,184.91302,2704.835 +11474,14005,25037,-9,25036,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1156.8556,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,10,2,0,803.5,280918.44,63841.586,147671.78,5317.6025,0,184.91302,2704.835 +11475,14006,25038,-9,25041,25039,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.82697,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11475,14006,25039,25041,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9534016,8.5946655,0,7,5,96.619156,0,2,3,2021,8,0,45,45,1,0,0,18.394548,18.394548,.05,.05,0,0,0,0,0,0,1,1,0,2.2858877,0,57.16,56.15,38.45,60.79,8.333333333333334,1,1,0,0,10,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11475,14006,25040,-9,25041,25039,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.31238,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11475,14006,25041,25039,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,0,0,0,7,-5,101.01657,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.45,60.79,57.16,56.15,8.333333333333334,1,1,0,0,6,2,4,1,639.25,521657.69,543093.5,146920.2,80611.766,5448.5181,9392.3643,3044.1597 +11476,14007,25042,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.8451247,7.8851395,0,0,0,-1121.0403,0,3,3,2021,12,0,40,40,1,0,0,7.6313605,7.6313605,0,0,0,0,0,0,0,0,1,1,0,0,0,39.16,45.82,-9,-9,8.333333333333334,1,1,0,0,12,12,4,1,1132,852441.69,817648.06,133428.22,0,0,0,1585.1169 +11477,14008,25043,25044,-9,-9,1,1,33,0,0,0,3,3,-9,0,3,8.2994204,8.0314045,0,8,3,35.137775,0,3,3,2021,6,0,40,40,1,0,0,10.583885,10.583885,.05,.05,0,0,0,0,0,0,0,0,0,3.8963797,0,57.33,53.46,51.83,57.2,1.666666666666667,1,1,0,0,9,5,4,1,1027.5,25373.85,67402.219,0,0,0,0,2182.7788 +11477,14008,25044,25043,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.7312398,7.7792244,0,8,-3,-65.590927,0,-9,-9,2021,6,0,37,39,1,0,0,8.2299585,8.2299585,0,0,0,0,0,0,0,0,0,0,0,1.2600634,0,51.83,57.2,57.33,53.46,8.333333333333334,1,1,0,0,8,5,4,1,1027.5,25373.85,67402.219,0,0,0,0,2182.7788 +11478,14009,25045,-9,25047,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.24872,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,702.66669,104520.13,0,0,0,3551.9761,0,1833.9546 +11478,14009,25046,-9,25047,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.59399,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,2,0,702.66669,104520.13,0,0,0,3551.9761,0,1833.9546 +11478,14009,25047,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,6.8070292,7.0666842,0,0,0,-968.24518,0,-9,-9,2021,11,0,16,6,1,0,0,6.5583763,6.5583763,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,6.666666666666667,4,2,0,0,2,6,2,0,702.66669,104520.13,0,0,0,3551.9761,0,1833.9546 +11479,14010,25048,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.6419849,9.0897207,4.8138657,0,0,-946.54132,0,3,2,2021,10,0,45,47,1,0,0,18.949806,18.949806,0,0,0,0,0,0,0,0,0,0,0,2.6484399,5.1651678,48.14,53.42,-9,-9,8.333333333333334,1,1,0,0,10,1,5,1,378,-78589.195,21085.711,0,0,0,0,2562.9983 +11480,14011,25049,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,7.921598,7.7577772,0,1,4,68.927498,0,2,-9,2021,11,0,42,37,1,0,0,7.3570209,7.3570209,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.22,58.43,40.89,24.89,6.666666666666667,1,1,0,0,14,6,4,0,249,-261202.8,-20905.75,0,0,0,2102.5828,1826.2986 +11480,14012,25050,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,2,7.5511165,7.3881292,0,1,-4,120.11528,-9,-9,-9,2021,13,3,35,0,1,3,0,7.2476463,7.2476463,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,24.89,38.22,58.43,8.333333333333334,1,1,0,0,1,6,4,0,368,-59502.27,0,0,0,8955.624,0,1848.1785 +11481,14013,25051,-9,-9,-9,1,0,38,0,0,0,2,2,-9,0,2,7.5590291,7.3432083,0,0,0,-870.76007,-9,2,2,2021,31,11,24,0,1,11,0,8.6816406,8.6816406,.05,.05,0,0,0,0,0,0,1,0,1,0,0,16.47,39.98,-9,-9,1.666666666666667,1,1,0,1,4,10,3,0,609,-81081.211,41939,0,0,0,0,1274.9874 +11482,14014,25052,25053,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.1550121,8.5286589,0,2,-1,35.180798,0,2,2,2021,23,11,44,40,1,11,0,10.009794,10.009794,0,0,0,0,0,0,0,0,0,0,0,0,0,30.1,42.98,48.42,60.53,3.333333333333333,1,1,0,0,11,11,5,1,557.5,163016.3,-19884.807,0,0,0,0,2723.1663 +11482,14014,25053,25052,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,8.1645279,8.1563187,0,2,1,-193.07951,-9,-9,-9,2021,13,1,46,0,1,1,0,7.8361044,7.8361044,.05,.05,0,0,0,0,0,0,0,0,0,3.9643118,0,48.42,60.53,30.1,42.98,8.333333333333334,3,4,0,0,6,11,5,1,557.5,163016.3,-19884.807,0,0,0,0,2723.1663 +11483,14015,25054,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,0,0,-939.73041,0,1,2,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,40.13,51.75,-9,-9,6.666666666666667,1,1,1,0,7,1,1,0,708,-67506.781,-7815.5737,0,0,0,0,792.74756 +11484,14016,25055,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-954.67438,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,-9,-9,6.666666666666667,1,1,0,0,3,10,1,0,690,-109243.88,0,0,0,0,0,496.3161 +11485,14017,25056,25057,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.4459467,8.5323744,6.2769985,12,16,-87.571327,0,3,3,2021,11,0,38,38,1,0,0,12.100638,12.100638,0,0,0,0,0,0,0,0,0,0,0,0,6.7397561,39.1,57.79,38.51,59.43,3.333333333333333,1,1,0,1,13,1,5,1,1781,114307.14,109658.03,116744.53,44740.418,0,0,3204.5715 +11485,14017,25057,25056,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,8.2835569,7.8831615,0,12,-16,-50.938473,0,2,-9,2021,15,3,38,48,1,3,0,11.993891,11.993891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,39.1,57.79,5,1,1,0,0,11,1,5,1,1781,114307.14,109658.03,116744.53,44740.418,0,0,3204.5715 +11486,14018,25058,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,7.4787474,7.7993073,0,0,-960.00519,0,3,2,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,0,26.44352,0,0,1,1,0,0,7.5836072,34.98,23.32,-9,-9,1.666666666666667,1,1,0,0,0,2,3,0,962,110520.05,112862.27,88535.859,0,0,0,1506.8104 +11487,14019,25059,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-869.38287,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,1.7652104,0,19.357052,0,1,1,0,0,0,18.01,25.88,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,391,0,0,0,0,0,0,1191.9202 +11488,14020,25060,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,6.8527169,7.0912709,0,0,-1015.6945,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,3.19121,0,31.10586,0,1,1,0,6.7302985,6.9318862,34.45,27.98,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,986,275218.34,-20357.889,74639.602,0,0,0,1386.908 +11489,14021,25061,25062,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,12,-7,-4.7740402,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.41,41.96,29.78,17.81,5,1,1,0,0,0,11,2,0,925,45046.945,197055.31,0,0,2015.1465,1336.6034,1981.0044 +11489,14021,25062,25061,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,4.6181564,4.4317255,12,7,-50.675285,0,2,1,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.25598034,4.2655859,29.78,17.81,53.41,41.96,1.666666666666667,1,1,0,0,0,11,2,0,925,45046.945,197055.31,0,0,2015.1465,1336.6034,1981.0044 +11490,14022,25063,25064,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.9718609,8.8669453,0,9,2,20.472773,0,2,2,2021,9,0,40,38,1,0,0,21.053402,21.053402,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.83,57.2,8.333333333333334,1,1,0,0,9,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11490,14022,25064,25063,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.6095853,7.4994912,0,9,-2,-71.132309,0,2,2,2021,7,0,18,17,1,0,0,12.907498,12.907498,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.37,54.8,8.333333333333334,1,1,0,0,9,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11490,14022,25065,-9,25064,25063,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.72089,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11490,14022,25066,-9,25064,25063,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.0319,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,330.5,848450.38,605073.31,200925.78,141143.52,0,0,3871.3228 +11491,14023,25067,25068,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,0,0,56,-1,-17.194178,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,57.06,57.76,10,1,1,0,0,0,7,2,0,896,946574.63,234855.13,613938.81,0,0,0,1123.8414 +11491,14023,25068,25067,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,4.4275041,4.1356802,56,1,-82.477203,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.2339344,57.06,57.76,61.01,53.18,8.333333333333334,1,1,0,0,8,7,2,0,896,946574.63,234855.13,613938.81,0,0,0,1123.8414 +11492,14024,25069,25070,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,7.7113338,8.1036177,5.3951483,34,5,129.84323,0,2,2,2021,7,1,30,30,1,1,0,11.438576,11.438576,0,0,0,0,0,0,0,2,1,1,0,.34548864,5.9852347,61.11,33.16,29.47,53.86,8.333333333333334,1,1,0,0,14,1,5,0,320,595559.63,536809.06,0,0,848.86951,6962.0977,4420.9385 +11492,14024,25070,25069,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.5480576,8.6502476,0,34,-5,-38.872459,0,2,-9,2021,20,8,37,38,1,8,0,24.364838,24.364838,0,0,0,0,0,0,0,0,1,1,0,0,0,29.47,53.86,61.11,33.16,6.666666666666667,1,1,0,0,12,1,5,0,320,595559.63,536809.06,0,0,848.86951,6962.0977,4420.9385 +11492,14025,25071,-9,25070,25069,1,0,27,0,0,0,1,1,-9,0,3,8.3125896,8.339736,0,0,0,-907.91718,0,2,2,2021,15,4,38,40,1,4,1,13.508398,13.508398,0,0,0,0,0,0,0,0,1,1,0,0,0,41.72,56.81,-9,-9,8.333333333333334,1,1,0,0,4,1,5,0,315,-57276.996,0,0,0,0,0,618.5993 +11493,14026,25072,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,1,0,0,0,0,0,-971.66351,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.88,24.26,-9,-9,6.666666666666667,1,1,0,0,0,1,1,1,814,288186.34,0,0,0,0,0,690.75806 +11494,14027,25073,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1083.822,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5127017,0,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,2,6,1,1,321,0,0,0,0,0,0,584.93561 +11495,14028,25074,25077,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5879774,8.5022697,0,11,1,-17.378473,0,2,3,2021,11,1,37,40,1,1,0,17.734074,17.734074,.05,.05,0,0,0,0,0,0,1,1,0,6.289917,0,46.39,60.99,51.67,60.18,8.333333333333334,1,1,0,0,13,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11495,14028,25075,-9,25077,25074,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.274,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11495,14028,25076,-9,25077,25074,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.8573,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11495,14028,25077,25074,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.0782394,7.2975154,0,11,-1,26.304728,0,2,2,2021,6,0,20,30,1,0,0,7.5643764,7.5643764,0,0,0,0,0,0,0,0,1,1,0,6.9285283,0,51.67,60.18,46.39,60.99,8.333333333333334,1,1,0,0,10,6,4,1,233.25,1301803.9,1258307,203705.41,111395.07,0,9493.2363,3423.9036 +11496,14029,25078,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1053.9202,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.92,41.95,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,91,56174.188,0,0,0,5690.8394,0,562.75964 +11497,14030,25079,25080,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.9859438,7.9413376,0,7,-4,-51.044243,-9,-9,-9,2021,7,0,40,0,1,0,0,8.0892258,8.0892258,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.68,36.75,52.99,40.75,6.666666666666667,1,1,0,0,14,10,5,0,160.5,-30593.477,-20539.477,337849.72,206429.98,0,0,2696.5901 +11497,14030,25080,25079,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.2234135,8.5767822,0,7,4,-119.30067,0,-9,-9,2021,11,3,65,60,1,3,0,7.8393278,7.8393278,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,40.75,61.68,36.75,3.333333333333333,1,1,0,1,13,10,5,0,160.5,-30593.477,-20539.477,337849.72,206429.98,0,0,2696.5901 +11498,14031,25081,25082,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.4901037,5.9238806,1,-2,59.983604,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4444346,57.06,57.76,53.96,50.73,8.333333333333334,1,1,0,0,0,7,3,1,762,819219.06,516319.88,232198.92,0,0,0,2823.8159 +11498,14031,25082,25081,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,7.3544798,7.6908898,7.1485023,1,2,-255.07996,-9,2,2,2021,9,0,15,0,1,0,0,13.758091,13.758091,0,0,0,0,0,0,0,0,1,1,0,6.5537648,7.1978426,53.96,50.73,57.06,57.76,8.333333333333334,1,1,0,0,7,7,3,1,762,819219.06,516319.88,232198.92,0,0,0,2823.8159 +11499,14032,25083,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,6.5895524,6.5682154,0,0,-950.50696,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0928893,6.656539,53.36,53.7,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,1117,133529.47,0,0,0,0,0,2454.5425 +11500,14033,25084,25085,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,5.8998046,5.9300814,8,-2,-93.260132,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9518256,6.1614852,53,46,47.1,56.62,8,1,1,0,0,0,10,3,1,653,1242555.8,440126.38,236608.31,0,0,0,2361.1355 +11500,14033,25085,25084,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.5890336,7.3179417,44,2,-117.91589,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2443228,7.1625056,47.1,56.62,53,46,8.333333333333334,1,1,0,0,0,10,3,1,653,1242555.8,440126.38,236608.31,0,0,0,2361.1355 +11501,14034,25086,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,9.0249233,8.6782484,0,0,0,-920.42554,0,2,3,2021,3,0,42,43,1,0,0,15.601691,15.601691,.05,.05,0,0,0,0,0,2,1,1,0,4.1248078,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,710,-203070.45,177547.02,0,0,1486.4211,543.63049,2758.8877 +11502,14035,25087,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,7.470582,7.5438867,0,0,-957.8653,0,3,2,2021,27,11,0,37,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,7.3537722,6.6166148,30.11,56.52,-9,-9,1.666666666666667,1,1,1,0,9,2,3,1,555,571498,379783.44,171350.48,0,1833.7236,0,1725.937 +11503,14036,25088,25089,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7603149,8.502243,0,11,2,24.028908,0,-9,-9,2021,6,0,40,40,1,0,0,23.770439,23.770439,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,56.35,51,8.333333333333334,1,1,0,0,13,12,5,1,658,1359938.3,922624.13,314309.81,0,9013.498,0,2931.595 +11503,14036,25089,25088,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1711607,7.0344963,0,11,-2,-161.99969,0,3,2,2021,10,0,22,21,1,0,0,6.1929274,6.1929274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51,54.96,53.17,8.333333333333334,1,1,0,0,13,12,5,1,658,1359938.3,922624.13,314309.81,0,9013.498,0,2931.595 +11503,14037,25090,-9,25089,-9,1,0,32,0,0,0,2,2,-9,1,2,7.5509133,7.595541,0,0,0,-904.3786,0,2,2,2021,29,12,35,35,1,12,1,5.1029377,5.1029377,0,0,0,0,0,0,0,0,1,1,0,0,0,30.11,37.76,-9,-9,3.333333333333333,1,1,0,0,13,12,3,1,376,151513,0,0,0,0,0,280.32663 +11504,14038,25091,25092,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.6684403,7.4026346,37,16,77.402382,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6392674,7.6466441,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,2,4,1,797.5,1149011.8,443929.47,446721.56,0,0,0,2771.3818 +11504,14038,25092,25091,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.9915218,8.1764183,7.6095695,40,-16,43.702545,0,3,2,2021,10,0,15,14,1,0,0,10.330775,10.330775,0,0,0,0,0,0,0,0,1,1,0,5.0049982,7.6971455,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,12,2,4,1,797.5,1149011.8,443929.47,446721.56,0,0,0,2771.3818 +11504,14039,25093,-9,25092,25091,1,1,23,0,0,0,1,1,1,0,5,7.7115431,7.5842476,0,0,0,-1001.9902,-9,2,3,2021,11,0,40,0,1,0,1,6.6496463,6.6496463,0,0,0,0,0,0,0,0,1,1,0,3.8641536,0,40.36,58.59,-9,-9,6.666666666666667,1,1,0,0,1,2,3,1,221,-70734.258,0,0,0,0,0,1468.7351 +11505,14040,25094,25095,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,7.1445966,7.3718204,54,2,47.473408,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3269067,7.5118933,48.81,59.91,51.18,41.8,8.333333333333334,1,1,0,0,13,9,4,1,697.5,1476160.5,448983.97,414884.53,0,0,151.09909,2972.6458 +11505,14040,25095,25094,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,7.7851977,8.0987062,6.895988,54,-2,123.21674,0,2,1,2021,14,4,20,15,1,4,0,11.764816,11.764816,0,0,0,1,0,0,0,0,1,1,0,6.3783903,7.1002626,51.18,41.8,48.81,59.91,8.333333333333334,1,1,0,0,12,9,4,1,697.5,1476160.5,448983.97,414884.53,0,0,151.09909,2972.6458 +11506,14041,25096,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,5.130631,5.2087898,0,0,-1154.9232,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,127.10578,0,0,1,1,0,0,4.9621282,54.42,14.37,-9,-9,5,1,1,0,0,0,2,2,1,631,144851.08,3583.1729,0,0,0,0,949.6748 +11506,14042,25097,-9,25096,-9,1,0,41,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1011.114,0,3,3,2021,22,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,13.31,60.53,-9,-9,5,1,1,0,0,0,2,1,1,585,0,0,0,0,0,0,45.072968 +11506,14043,25098,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,4.790638,4.504189,0,0,-1021.6203,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,27.783466,0,2,1,1,0,0,4.8706269,61.78,24.58,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,943,79915.914,82729.102,0,0,3010.1174,0,402.46826 +11507,14044,25099,25100,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,8.0525084,7.9811778,0,6,-13,-1.260783,0,2,1,2021,10,0,37,37,1,0,0,11.638269,11.638269,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.92,52.3,63.01,30.1,10,1,1,0,0,9,10,3,0,942.5,156710.09,-23245.414,0,0,0,1096.3394,2183.7595 +11507,14044,25100,25099,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.2288132,6.822567,6,13,122.28435,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.2384541,6.7771392,63.01,30.1,44.92,52.3,8.333333333333334,1,1,0,0,7,10,3,0,942.5,156710.09,-23245.414,0,0,0,1096.3394,2183.7595 +11508,14045,25101,-9,-9,-9,1,1,40,0,0,0,2,2,-9,1,1,0,0,0,0,0,-934.26825,0,2,2,2021,20,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.63,30.38,-9,-9,0,1,1,0,0,0,9,1,0,190,-88929.859,-61311.125,0,0,0,0,1030.8658 +11509,14046,25102,-9,25103,25104,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-879.00293,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.43,64.75,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,778.33331,1000599.8,821757,226306.08,19919.131,5074.1323,7456.5864,2076.6035 +11509,14046,25103,25104,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,30,2,-3.4098687,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.09,53.45,57.06,57.76,6.666666666666667,1,1,0,0,0,12,4,1,778.33331,1000599.8,821757,226306.08,19919.131,5074.1323,7456.5864,2076.6035 +11509,14046,25104,25103,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.2318439,8.960331,0,27,-2,258.1897,0,2,1,2021,6,0,35,35,1,0,0,23.592569,23.592569,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,33.09,53.45,8.333333333333334,1,1,0,0,14,12,4,1,778.33331,1000599.8,821757,226306.08,19919.131,5074.1323,7456.5864,2076.6035 +11509,14047,25105,-9,25103,25104,1,0,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1063.2943,-9,1,1,2021,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.76,55.1,-9,-9,3.333333333333333,1,1,0,1,0,12,1,1,237,27042.273,0,0,0,0,0,0 +11510,14048,25106,25107,-9,-9,1,1,55,0,0,0,1,1,-9,0,2,8.6224804,8.7515945,0,11,1,-5.4958382,0,-9,-9,2021,18,7,45,55,1,7,0,19.75375,19.75375,0,0,0,0,0,0,0,0,0,0,0,0,0,40.53,45.35,54.2,57.49,8.333333333333334,1,1,0,0,13,11,5,1,907.5,1065713.5,348443.94,344298.38,0,0,0,3906.4492 +11510,14048,25107,25106,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3657637,8.6918249,0,34,-1,8.0979567,0,3,3,2021,6,0,37,37,1,0,0,16.622864,16.622864,0,0,0,0,0,0,0,0,0,0,0,1.0585803,0,54.2,57.49,40.53,45.35,10,1,1,0,0,13,11,5,1,907.5,1065713.5,348443.94,344298.38,0,0,0,3906.4492 +11510,14049,25108,-9,25107,25106,1,1,29,0,0,0,1,1,-9,0,4,7.2806592,7.2317963,0,0,0,-1105.5615,0,2,1,2021,7,3,42,33,1,3,1,4.194026,4.194026,0,0,0,0,0,0,0,0,0,0,0,3.2215867,0,44.42,59.09,-9,-9,8.333333333333334,1,1,0,0,8,11,3,1,639,-101740.97,0,0,0,0,257.11801,598.73682 +11511,14050,25109,25111,-9,-9,1,1,42,0,2,0,2,2,-9,0,5,8.8317194,8.7226934,0,1,-2,-38.030636,-9,2,2,2021,7,0,40,0,1,0,0,20.745306,20.745306,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,25.24,52.56,6.666666666666667,1,1,0,0,10,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14050,25110,-9,25111,25109,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1013.5808,-9,2,2,2021,26,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,16.92,58.81,-9,-9,8.333333333333334,1,1,0,0,1,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14050,25111,25109,-9,-9,1,0,44,0,2,0,2,2,-9,1,2,0,0,0,1,2,-17.08111,-9,2,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.24,52.56,62.39,56.71,5,1,1,0,0,8,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14050,25112,-9,25111,25109,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.0481,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,4,0,533.5,-19013.359,-42766.324,0,0,2945.3384,1667.2527,2769.5801 +11511,14051,25113,-9,25111,25109,1,0,19,0,2,0,2,2,-9,0,4,6.5743728,6.7180991,0,0,0,-950.85419,-9,2,2,2021,18,6,8,0,1,6,1,9.1601019,9.1601019,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,-9,-9,8.333333333333334,1,1,0,0,2,13,2,0,411,-127877.37,0,0,0,0,0,1271.027 +11512,14052,25114,25115,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,8.0139608,7.8384771,0,9,2,-10.785868,0,3,3,2021,11,0,22,22,1,0,0,15.655045,15.655045,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,49,1.666666666666667,1,1,0,0,10,13,4,1,551,445265,314861.69,19553.691,0,0,0,1872.6655 +11512,14052,25115,25114,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.5056243,7.0671444,0,9,-2,9.783659,0,3,2,2021,11,0,30,20,1,1,0,6.6687508,6.6687508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,49,57.16,56.15,7,1,1,0,0,10,13,4,1,551,445265,314861.69,19553.691,0,0,0,1872.6655 +11513,14053,25116,25117,-9,-9,1,0,40,0,0,0,1,1,-9,0,5,7.8087373,8.1587715,0,9,-5,40.957561,0,3,2,2021,1,0,42,35,1,0,0,8.095274,8.095274,0,0,0,0,0,0,0,0,0,0,0,0,0,60.59,54.8,62.49,55.09,8.333333333333334,3,4,0,0,7,9,4,0,210.5,186080.94,116343.63,0,0,0,0,2242.6147 +11513,14053,25117,25116,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.9552131,8.008234,0,9,5,-106.14351,0,3,1,2021,6,0,45,35,1,0,0,6.9653029,6.9653029,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.59,54.8,8.333333333333334,3,4,0,0,7,9,4,0,210.5,186080.94,116343.63,0,0,0,0,2242.6147 +11514,14054,25118,25119,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.009304,9.1258726,0,3,-1,-1.0938342,0,2,2,2021,12,0,40,40,1,0,0,29.458092,29.458092,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.85,54.48,38.28,57.07,6.666666666666667,1,1,0,0,9,10,5,1,617.5,-77474.656,-14668.647,0,0,24735.445,0,2917.2061 +11514,14054,25119,25118,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,0,0,0,3,1,46.742889,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.8956065,0,38.28,57.07,42.85,54.48,6.666666666666667,1,1,0,0,0,10,5,1,617.5,-77474.656,-14668.647,0,0,24735.445,0,2917.2061 +11515,14055,25120,25121,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.1708899,8.0411692,0,8,3,32.181007,0,-9,-9,2021,9,0,37,37,1,1,0,7.3515301,7.3515301,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,45.81,58.99,8,1,1,0,0,1,4,4,1,599,171247.52,42140.914,91046.109,52902.02,2886.2808,1859.4177,2246.3457 +11515,14055,25121,25120,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.9726996,8.4758263,0,8,-3,2.9384751,0,3,3,2021,11,0,37,37,1,0,0,10.930965,10.930965,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,52,55,3.333333333333333,1,1,0,0,9,4,4,1,599,171247.52,42140.914,91046.109,52902.02,2886.2808,1859.4177,2246.3457 +11515,14056,25122,-9,25121,25120,1,1,20,0,1,0,2,2,-9,0,4,6.8178959,6.4305673,0,0,0,-1055.6045,0,2,2,2021,11,0,15,18,1,2,1,5.3444405,5.3444405,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,4,2,1,157,-65779.102,-14228.964,0,0,5617.6431,0,-533.26654 +11516,14057,25123,-9,25124,25125,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.06641,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11516,14057,25124,25125,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,7.8717151,7.8535838,0,13,2,62.887794,0,2,1,2021,10,0,20,25,1,0,0,15.50344,15.50344,.05,.05,0,0,0,0,0,0,1,1,0,3.162571,0,59.53,56.44,46.21,58.07,6.666666666666667,2,3,0,0,3,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11516,14057,25125,25124,-9,-9,1,1,33,0,2,0,1,1,-9,0,5,8.8513889,8.7568445,0,13,-2,-84.339043,0,2,2,2021,6,0,35,35,1,0,0,26.748981,26.748981,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.21,58.07,59.53,56.44,8.333333333333334,2,3,0,0,7,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11516,14057,25126,-9,25124,25125,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.61444,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,4,1,316.5,300532.47,184195.78,374987.13,197640.22,0,-206.43451,4048.8203 +11517,14058,25127,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.5761671,8.5915976,0,0,0,-1149.726,0,2,1,2021,11,0,45,47,1,0,0,11.409543,11.409543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,12,8,4,0,441,980082.31,219634.84,302882.38,0,0,0,1449.205 +11518,14059,25128,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,5.6579986,5.3437304,0,0,-1131.6686,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7924423,57.75,38.61,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,1052,331232.97,51913.887,114356.8,0,1501.6733,0,2294.8777 +11519,14060,25129,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.950386,8.1944017,0,0,-1174.6016,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3385053,7.8261738,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,8,4,1,222,958711.44,360935.59,612449.63,0,0,0,2169.6084 +11519,14061,25130,-9,25129,-9,1,1,35,0,0,0,2,2,-9,0,3,9.2010984,9.3702803,0,0,0,-1022.1681,0,2,3,2021,6,1,30,30,1,1,0,39.798065,39.798065,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,4,2,0,1,3,8,5,1,562,156451.36,104063.51,0,0,0,0,4043.6426 +11520,14062,25131,-9,-9,-9,1,0,56,1,3,0,3,3,-9,0,3,0,0,0,0,0,-883.06995,-9,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,48,-9,-9,7,2,3,0,0,0,8,1,1,771,-171263.3,0,0,0,0,0,0 +11520,14063,25132,-9,25133,25135,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.4224,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25133,25135,-9,-9,1,0,32,1,3,0,2,2,-9,0,2,7.1523075,6.9407196,0,14,-5,58.603283,0,3,3,2021,16,5,16,16,1,5,0,9.183156,9.183156,0,0,.05,0,0,0,0,0,1,1,0,.44357976,0,30.23,32.32,33.78,48.09,1.666666666666667,2,3,0,0,7,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25134,-9,25133,25135,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1172.588,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25135,25133,25131,-9,1,1,37,1,3,0,2,2,-9,0,4,7.1829143,7.0618176,0,14,5,73.837364,0,3,3,2021,10,1,35,15,1,1,0,3.8871956,3.8871956,0,0,.05,0,0,0,0,0,1,1,0,0,0,33.78,48.09,30.23,32.32,5,2,3,0,0,10,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11520,14063,25136,-9,25133,25135,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-940.276,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,1,411,613470.25,564078.63,0,0,0,879.37653,1640.3114 +11521,14064,25137,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.5235844,8.155139,0,0,0,-1077.0679,0,-9,3,2021,23,11,35,23,1,11,0,10.00549,10.00549,.05,.05,0,0,0,0,0,0,0,0,0,2.918025,0,23.68,55.51,-9,-9,3.333333333333333,1,1,0,0,13,4,4,1,4480,-55506.766,-38783.805,60543.328,0,0,0,1749.8899 +11521,14065,25138,-9,25137,-9,1,1,29,0,0,0,2,2,-9,0,5,8.0228958,8.3084259,0,0,0,-1030.0083,0,2,-9,2021,19,7,38,39,1,7,1,10.417969,10.417969,0,0,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,65,-126131.34,0,0,0,0,0,945.86774 +11522,14066,25139,-9,-9,-9,1,0,42,0,1,0,1,1,-9,1,4,0,6.6861353,6.584754,0,0,-935.50574,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.257483,0,46.5,58.26,-9,-9,6.666666666666667,1,1,0,0,8,1,2,0,607.5,-51586.43,-24135.406,75923.406,72780.68,0,0,1898.5271 +11522,14066,25140,-9,25139,-9,1,0,17,0,1,1,3,0,0,1,4,0,0,0,0,0,-984.7547,-9,1,-9,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,38.73,-9,-9,0,1,1,0,0,0,1,2,0,607.5,-51586.43,-24135.406,75923.406,72780.68,0,0,1898.5271 +11523,14067,25141,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0393229,8.2714005,0,0,0,-964.62933,0,2,3,2021,6,0,36,35,1,0,0,8.7252789,8.7252789,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,11,6,4,1,3653,-140554.53,30871.68,0,0,0,0,1391.9866 +11524,14068,25142,25143,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.5453634,9.2564697,8.1889353,8,-6,-75.392159,0,2,2,2021,9,2,21,21,1,2,0,23.79225,23.79225,0,0,0,0,0,0,0,14.5,0,0,0,0,8.3737278,49.61,54.24,65.03,31.43,8.333333333333334,1,1,0,0,8,7,5,1,696.5,62799.719,21503.998,0,0,2836.9785,0,5147.2085 +11524,14068,25143,25142,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,6.8862553,8.2591057,7.8985891,28,6,45.836399,0,2,2,2021,7,0,10,30,1,0,0,15.396955,15.396955,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8523707,65.03,31.43,49.61,54.24,8.333333333333334,1,1,0,0,6,7,5,1,696.5,62799.719,21503.998,0,0,2836.9785,0,5147.2085 +11525,14069,25144,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,8.2957487,8.0457869,0,0,0,-946.66473,0,3,2,2021,8,0,37,37,1,0,0,9.8566628,9.8566628,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,712,684760.63,502264.84,223193.86,-6546.749,0,0,1308.0811 +11526,14070,25145,25146,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,57,-1,-62.541039,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.88,47.22,49.37,40.54,8.333333333333334,1,1,0,0,0,13,3,1,1248.5,870791.5,765793,240192.23,0,0,466.80237,3540.7813 +11526,14070,25146,25145,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,8.1584339,7.8906388,57,1,60.105736,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2943745,49.37,40.54,49.88,47.22,8.333333333333334,1,1,0,0,0,13,3,1,1248.5,870791.5,765793,240192.23,0,0,466.80237,3540.7813 +11527,14071,25147,-9,-9,-9,1,0,60,0,1,0,2,2,-9,0,3,8.0918436,7.9793983,5.7768016,0,0,-891.93262,0,3,3,2021,10,0,37,31,1,0,0,9.8165503,9.8165503,0,0,0,0,0,0,0,0,1,1,0,8.5558176,5.6687255,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,14,6,3,1,1464,1106392.9,747414.69,212159.05,0,0,0,3056.2861 +11528,14072,25148,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,5.9383998,6.027298,0,0,-996.62213,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1808329,38.42,47.13,-9,-9,1.666666666666667,1,1,0,1,3,11,2,1,470,356670.88,206236.2,115704.45,0,0,0,570.58624 +11529,14073,25149,-9,25150,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1016.2323,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,2041.5,0,0,0,0,0,0,1640.8357 +11529,14073,25150,-9,-9,-9,1,0,37,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1031.8492,0,2,-9,2021,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,24.14,-9,-9,3.333333333333333,3,4,0,0,0,8,1,0,2041.5,0,0,0,0,0,0,1640.8357 +11530,14074,25151,25152,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9186039,4.6911402,7,-4,106.38372,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.954638,48.28,53.42,41.86,41.35,6.666666666666667,1,1,0,0,0,9,3,1,1945.5,1161735.3,780568.25,362766.94,0,-59.638638,0,2802.3147 +11530,14074,25152,25151,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.7783937,7.9517508,47,4,-41.430984,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.518856,8.2189827,41.86,41.35,48.28,53.42,3.333333333333333,1,1,0,0,2,9,3,1,1945.5,1161735.3,780568.25,362766.94,0,-59.638638,0,2802.3147 +11531,14075,25153,25155,-9,-9,1,1,29,0,2,0,2,2,-9,0,2,8.3389521,8.3483324,0,6,0,47.597496,0,-9,-9,2021,28,10,40,60,1,10,0,17.373726,17.373726,0,0,0,0,0,0,0,0,1,1,0,8.0339508,0,41.18,54.59,57.33,53.46,6.666666666666667,1,1,0,0,7,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11531,14075,25154,-9,25155,25153,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.1737,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11531,14075,25155,25153,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,8.8062525,8.5309706,0,6,9,47.731647,0,2,3,2021,6,0,40,45,1,0,0,20.410435,20.410435,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,41.18,54.59,8.333333333333334,1,1,0,0,7,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11531,14075,25156,-9,25155,25153,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1108.4536,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,650.5,255884.56,55124.086,0,0,0,0,4984.6714 +11532,14076,25157,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.9606214,7.9917817,0,0,0,-1041.2946,0,3,2,2021,6,0,32,28,1,0,0,10.364177,10.364177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,12,4,1,425,177931.88,49690.141,-1252.3384,33285.211,0,0,1815.7502 +11532,14077,25158,-9,25157,-9,1,1,25,0,0,0,2,2,-9,0,3,8.1828833,7.8608642,0,0,0,-1072.7308,0,2,3,2021,7,0,38,38,1,0,1,7.8872728,7.8872728,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,264,44621.84,0,0,0,0,0,1337.618 +11532,14078,25159,-9,25157,-9,1,0,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-1131.6586,-9,2,3,2021,7,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1089892,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,1198,157521.55,0,0,0,0,0,-284.76605 +11533,14079,25160,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,2,0,6.6996856,6.3072977,0,0,-963.7395,0,3,3,2021,19,9,0,0,4,9,0,0,0,0,0,0,1,0,7.6386008,0,0,1,1,0,.98392552,6.6610346,46.62,26.18,-9,-9,5,1,1,0,0,0,13,2,1,369,98563.578,35417.313,129188.39,0,0,0,1961.8799 +11534,14080,25161,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.1628838,8.4502516,0,0,0,-986.33435,0,2,2,2021,12,0,36,36,1,0,0,11.217868,11.217868,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.03,52.62,-9,-9,6.666666666666667,1,1,0,0,12,2,4,1,478,-72158.555,-10032.852,126989.16,34053.949,0,0,1213.3168 +11535,14081,25162,25163,-9,-9,1,1,70,0,0,0,1,1,-9,0,2,0,7.723588,7.9583468,48,5,-31.007853,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5759783,7.5937538,25.71,42.48,39.44,52.35,5,1,1,0,0,13,2,4,1,1487,1169661.3,784052.63,301713.38,0,0,0,4093.781 +11535,14081,25163,25162,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.7154188,8.0293369,6.9645104,48,-5,35.589741,0,2,2,2021,15,2,8,1,1,2,0,27.311197,27.311197,0,0,0,1,0,0,0,0,1,1,0,3.2945657,6.8797793,39.44,52.35,25.71,42.48,8.333333333333334,1,1,0,0,13,2,4,1,1487,1169661.3,784052.63,301713.38,0,0,0,4093.781 +11536,14082,25164,25165,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,8.1180487,8.1409197,0,7,-3,-68.823692,0,2,2,2021,12,1,43,43,1,1,0,10.682552,10.682552,.05,.05,0,0,0,0,0,2,0,0,0,2.6226218,0,38,62.48,49.35,59.64,3.333333333333333,1,1,0,0,12,11,5,1,565,370467.41,235063.59,106076.25,54103.93,0,1320.7117,2497.7847 +11536,14082,25165,25164,-9,-9,1,1,42,0,0,0,2,2,-9,0,4,8.092288,7.9205623,0,7,3,56.946552,0,-9,-9,2021,11,0,40,43,1,0,0,9.7405062,9.7405062,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,38,62.48,5,1,1,0,0,6,11,5,1,565,370467.41,235063.59,106076.25,54103.93,0,1320.7117,2497.7847 +11537,14083,25166,-9,25167,25168,1,0,36,0,0,0,2,2,-9,1,1,0,0,0,0,0,-878.84186,0,2,3,2021,28,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,1,7,1,1,393,47143.355,131389.08,0,0,0,981.15027,317.64246 +11537,14084,25167,25168,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,9,6,18.881416,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.88,31.45,59.14,52.5,8.333333333333334,1,1,0,0,9,7,3,1,1512.5,127122.72,96341.031,0,0,8404.8115,731.4801,1922.7531 +11537,14084,25168,25167,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,7.9418731,7.7146544,0,9,-6,-4.1252055,0,-9,-9,2021,10,0,40,40,1,0,0,7.1914411,7.1914411,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,59.14,52.5,48.88,31.45,1.666666666666667,1,1,0,0,10,7,3,1,1512.5,127122.72,96341.031,0,0,8404.8115,731.4801,1922.7531 +11538,14085,25169,25170,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.7705445,7.430624,0,7,-1,5.9101319,0,2,3,2021,8,0,16,12,1,0,0,17.06185,17.06185,.05,.05,0,0,0,0,0,2,0,0,0,1.5688224,0,47.85,52.43,54.67,41.24,6.666666666666667,1,1,0,0,10,12,5,1,320,158484.77,73718.914,118455.5,25239.059,0,0,3248.8047 +11538,14085,25170,25169,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,8.9019299,8.9491034,0,7,1,-35.607651,0,3,2,2021,10,1,44,40,1,1,0,18.627998,18.627998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.67,41.24,47.85,52.43,10,1,1,0,0,10,12,5,1,320,158484.77,73718.914,118455.5,25239.059,0,0,3248.8047 +11539,14086,25171,25173,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.3989811,8.1659851,0,8,0,-22.821669,0,2,1,2021,8,0,43,40,1,0,0,13.546028,13.546028,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.69,57.47,0,1,1,0,0,4,4,5,1,223,95823.625,44543.813,99641.625,97558.578,0,0,4550.6763 +11539,14086,25172,-9,25171,25173,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.4872,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,4,5,1,223,95823.625,44543.813,99641.625,97558.578,0,0,4550.6763 +11539,14086,25173,25171,-9,-9,1,1,40,0,1,0,1,1,-9,0,5,9.0205708,8.9322777,0,8,0,11.463788,0,2,3,2021,10,0,38,50,1,0,0,19.55489,19.55489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,57.16,56.15,8.333333333333334,2,3,0,0,8,4,5,1,223,95823.625,44543.813,99641.625,97558.578,0,0,4550.6763 +11540,14087,25174,25175,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,7.8788228,7.7085309,0,1,0,-50.569126,-9,-9,-9,2021,7,0,40,0,1,0,0,6.9619823,6.9619823,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.15,42.53,17.59,57.03,10,2,3,0,0,0,4,3,1,757.5,-90309.773,-20182.379,0,0,0,0,1270.0137 +11540,14087,25175,25174,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,0,0,0,1,0,-41.425518,-9,2,-9,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.59,57.03,60.15,42.53,3.333333333333333,4,2,0,0,3,4,3,1,757.5,-90309.773,-20182.379,0,0,0,0,1270.0137 +11541,14088,25176,25177,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.2527895,7.5780115,9,-2,61.013641,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3582913,7.5965266,43.03,53.23,47.55,49.86,6.666666666666667,1,1,0,0,0,7,2,1,468.5,1165943.6,172309.72,389756.09,0,0,0,1220.6038 +11541,14088,25177,25176,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,9,2,-2.5881531,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,49.86,43.03,53.23,6.666666666666667,1,1,0,0,8,7,2,1,468.5,1165943.6,172309.72,389756.09,0,0,0,1220.6038 +11542,14089,25178,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,8.0929308,7.9294648,0,0,-1174.0782,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2773333,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,4,1,252,769053.94,443709.53,161474.14,0,0,0,1763.7152 +11543,14090,25179,25180,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,0,0,0,1,2,-66.270058,-9,-9,-9,2021,22,7,0,0,2,7,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.5078397,0,36.43,60.14,33.81,48.01,5,1,1,0,0,0,5,3,0,351,54652.699,72945.813,0,0,12946.649,0,897.03857 +11543,14090,25180,25179,-9,-9,1,0,23,0,0,0,1,1,1,0,3,8.0646439,8.2036076,0,1,-2,42.311855,-9,-9,-9,2021,22,9,37,0,1,9,0,9.9880199,9.9880199,0,0,0,0,0,0,0,0,0,0,0,1.9603461,0,33.81,48.01,36.43,60.14,5,1,1,0,0,5,5,3,0,351,54652.699,72945.813,0,0,12946.649,0,897.03857 +11544,14091,25181,25182,-9,-9,1,1,61,0,0,0,3,3,-9,0,2,8.5341053,8.3601208,0,9,0,84.627487,0,3,-9,2021,14,2,104,104,1,2,0,4.5035205,4.5035205,.05,.05,0,0,0,0,0,0,0,0,0,4.0658069,0,43.88,39.38,47.15,55.39,6.666666666666667,1,1,0,0,10,5,4,1,804,239698.88,156788.28,117111.61,58366.836,1318.2012,0,2713.0742 +11544,14091,25182,25181,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.4340472,7.2593169,0,9,0,-62.974918,0,3,2,2021,14,4,39,39,1,4,0,4.470808,4.470808,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,43.88,39.38,10,1,1,0,0,5,5,4,1,804,239698.88,156788.28,117111.61,58366.836,1318.2012,0,2713.0742 +11545,14092,25183,25184,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.4340057,6.5819306,10,-2,-41.127155,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0067663,6.6703358,54.2,57.49,58.72,51.29,10,1,1,0,0,7,12,2,1,675.5,277896.28,124073.88,133660.56,0,0,0,1096.5547 +11545,14092,25184,25183,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,0,0,10,2,8.0057278,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8122473,0,58.72,51.29,54.2,57.49,8.333333333333334,1,1,0,0,9,12,2,1,675.5,277896.28,124073.88,133660.56,0,0,0,1096.5547 +11546,14093,25185,25187,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,7.8374929,8.1599579,0,4,-6,-120.15177,0,2,3,2021,5,0,50,25,1,0,0,5.6263261,5.6263261,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,57.16,56.15,8.333333333333334,1,1,0,0,5,11,4,0,899,-28313.295,0,0,0,7841.8628,1431.9684,2692.668 +11546,14093,25186,-9,25185,25187,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1073.0511,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,0,899,-28313.295,0,0,0,7841.8628,1431.9684,2692.668 +11546,14093,25187,25185,-9,-9,1,1,35,0,1,0,2,2,-9,0,4,8.043582,7.7083092,0,4,6,93.682838,0,-9,-9,2021,8,0,20,15,1,0,0,12.188162,12.188162,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.65,56.13,10,1,1,0,0,2,11,4,0,899,-28313.295,0,0,0,7841.8628,1431.9684,2692.668 +11547,14094,25188,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,1,0,0,0,0,0,-958.90179,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.090162,0,21.96,32.36,-9,-9,1.666666666666667,1,1,0,0,0,2,1,1,428,36760.82,0,19980.197,0,0,0,2076.1702 +11548,14095,25189,25191,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,7.3112798,7.2958422,0,26,-4,12.4547,0,2,2,2021,10,0,26,8,1,0,0,8.004837,8.004837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,52.08,53.98,50.87,6.666666666666667,1,1,0,0,11,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11548,14095,25190,-9,25189,25191,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.9078,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11548,14095,25191,25189,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.5587263,7.9619012,0,26,4,-1.1032761,0,-9,-9,2021,8,0,54,48,1,0,0,6.8988681,6.8988681,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,51.14,52.08,8.333333333333334,1,1,0,0,7,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11548,14095,25192,-9,25189,25191,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.7581,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,3,1,844,2035300.4,2042031.8,0,0,0,14015.32,2200.2622 +11549,14096,25193,25194,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,8.5783939,8.8211231,0,13,4,59.852753,0,2,2,2021,16,6,10,3,1,6,0,64.143745,64.143745,.05,.05,0,0,0,0,0,0,0,0,0,7.2278876,0,45.09,26.67,49.04,55.86,8.333333333333334,1,1,0,0,10,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11549,14096,25194,25193,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.9582243,9.2436485,0,10,-4,-73.019363,0,-9,-9,2021,11,0,45,40,1,0,0,29.979588,29.979588,.05,.05,0,0,0,0,0,0,0,0,0,8.4730616,0,49.04,55.86,45.09,26.67,8.333333333333334,1,1,0,0,12,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11549,14096,25195,-9,25193,25194,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-999.92841,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11549,14096,25196,-9,25193,25194,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.1505,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,5,1,496.25,522867.19,256878.25,449991,154929.92,1359.804,0,8317.5342 +11550,14097,25197,-9,-9,-9,1,0,47,0,2,0,3,3,-9,0,3,7.3152614,7.3376241,0,0,0,-1048.4552,0,2,2,2021,17,6,16,16,1,6,0,10.987451,10.987451,.05,.05,0,0,0,0,0,7,1,0,1,0,0,39.31,52.14,-9,-9,6.666666666666667,2,3,0,0,8,8,2,0,1433,-124140.25,126932.52,0,0,0,0,1381.3414 +11550,14098,25198,-9,25197,25200,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.8583,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,1,0,466.33334,-12096.256,117656.13,0,0,0,0,924.24725 +11550,14098,25199,-9,25197,25200,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.17505,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,1,0,466.33334,-12096.256,117656.13,0,0,0,0,924.24725 +11550,14098,25200,-9,-9,-9,1,1,57,0,2,0,1,1,-9,1,1,0,0,0,0,0,-1110.651,-9,1,1,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,19.91,25.08,-9,-9,0,1,1,0,1,0,8,1,0,466.33334,-12096.256,117656.13,0,0,0,0,924.24725 +11551,14099,25201,-9,25202,25203,1,0,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-820.49872,-9,3,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,1,1,-9,0,0,4,4,1,447.33334,501187.91,372161.63,217644.73,34106.996,0,14354.994,3202.0583 +11551,14099,25202,25203,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,7.494916,7.8449502,0,23,4,73.973526,0,1,1,2021,13,1,25,30,1,1,0,9.2508831,9.2508831,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.7,45.49,51,56,6.666666666666667,1,1,0,0,12,4,4,1,447.33334,501187.91,372161.63,217644.73,34106.996,0,14354.994,3202.0583 +11551,14099,25203,25202,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.9786949,8.7855558,0,11,-4,-71.959663,-9,-9,-9,2021,10,0,42,0,1,1,0,16.604572,16.604572,.05,.05,0,0,0,0,0,0,1,1,0,2.8476117,0,51,56,48.7,45.49,7,1,1,0,0,1,4,4,1,447.33334,501187.91,372161.63,217644.73,34106.996,0,14354.994,3202.0583 +11551,14100,25204,-9,25202,25203,1,1,20,0,1,0,3,3,-9,0,4,7.5313296,7.6272311,0,0,0,-1034.0753,0,3,2,2021,9,0,40,0,1,0,1,5.1126871,5.1126871,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,50.52,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,371,-62910.617,0,0,0,0,0,1053.6183 +11552,14101,25205,-9,-9,-9,1,1,94,0,0,0,3,3,-9,0,2,0,3.470063,3.7419689,0,0,-1042.3397,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.7033257,57.63,22.13,-9,-9,10,1,1,0,0,0,9,2,1,411,530677.81,-50185.895,274494.38,0,0,0,643.39111 +11553,14102,25206,25208,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,7.6061764,7.7349086,0,8,-8,-51.83337,0,2,3,2021,10,0,20,30,1,0,0,11.781004,11.781004,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.31,61.59,51.26,50.95,6.666666666666667,1,1,0,0,9,2,5,1,931,921575.69,588764.75,362001.75,135435.19,2446.1077,0,11148.695 +11553,14102,25207,-9,25206,25208,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-902.8465,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,931,921575.69,588764.75,362001.75,135435.19,2446.1077,0,11148.695 +11553,14102,25208,25206,-9,-9,1,1,46,1,1,0,1,1,-9,0,3,9.8717098,9.3557024,0,8,8,13.616819,0,2,2,2021,10,2,49,50,1,2,0,35.181023,35.181023,.05,.05,0,0,0,0,0,0,0,0,0,3.6177917,0,51.26,50.95,36.31,61.59,8.333333333333334,1,1,0,0,9,2,5,1,931,921575.69,588764.75,362001.75,135435.19,2446.1077,0,11148.695 +11554,14103,25209,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6639643,7.3286872,0,0,-965.70691,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.2592268,7.6308465,57.27,35.61,-9,-9,10,1,1,0,0,0,10,3,1,3687,191778.56,236430.95,0,0,0,0,2274.7795 +11555,14104,25210,25211,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,7.6876769,7.9782891,0,4,-2,170.90163,0,1,2,2021,6,0,40,40,1,0,0,6.6362109,6.6362109,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,59.29,49.68,8.333333333333334,1,1,0,0,7,11,3,1,1142,12973.85,0,0,0,0,0,1439.5308 +11555,14104,25211,25210,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,0,0,0,4,2,-68.716736,1,-9,-9,2021,10,1,0,12,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,8,11,3,1,1142,12973.85,0,0,0,0,0,1439.5308 +11556,14105,25212,25214,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,0,0,0,2,8,24.908173,0,2,1,2021,13,2,0,44,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.17,52.08,46.27,57.3,8.333333333333334,3,4,0,0,10,8,2,0,1272,1659268.9,22900.982,753336.63,283438.69,0,0,1058.486 +11556,14105,25213,-9,25212,25214,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1005.0059,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,8,2,0,1272,1659268.9,22900.982,753336.63,283438.69,0,0,1058.486 +11556,14105,25214,25212,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,6.580111,6.7173328,0,2,-8,130.09016,0,-9,-9,2021,13,2,20,0,1,2,0,5.7402844,5.7402844,0,0,.05,0,0,0,0,0,1,1,0,0,0,46.27,57.3,48.17,52.08,6.666666666666667,3,4,0,0,12,8,2,0,1272,1659268.9,22900.982,753336.63,283438.69,0,0,1058.486 +11557,14106,25215,25216,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.3314753,7.6550455,6.1942968,34,0,-153.84315,0,2,1,2021,10,0,16,16,1,0,0,9.709177,9.709177,0,0,0,0,0,0,0,0,1,1,0,2.8196077,6.1269846,45.91,59.89,57.16,56.15,6.666666666666667,1,1,0,0,10,9,5,1,643.5,1221556.3,1088947.5,320534,0,0,0,5410.5811 +11557,14106,25216,25215,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.6841202,8.8166494,33,0,-62.615547,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,8.6999731,8.4329023,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,5,9,5,1,643.5,1221556.3,1088947.5,320534,0,0,0,5410.5811 +11558,14107,25217,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,6.0744052,5.8887029,0,0,-999.65729,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0197945,53.4,36.44,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1088,347869.16,169852.39,311999.97,0,0,0,1617.6826 +11559,14108,25218,25219,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,7.2369471,7.7449899,12,0,9.989172,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2195644,37.44,35.75,39.15,41.42,5,1,1,0,0,0,12,3,1,471,948152.38,307305.63,170085.11,0,0,0,1904.1556 +11559,14108,25219,25218,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.1101799,6.8503776,12,0,28.31241,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,3.7233241,0,0,1,1,0,0,6.9221034,39.15,41.42,37.44,35.75,6.666666666666667,1,1,0,0,0,12,3,1,471,948152.38,307305.63,170085.11,0,0,0,1904.1556 +11560,14109,25220,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.306776,8.0546341,0,0,0,-980.43738,0,2,2,2021,21,9,42,42,1,9,0,10.534557,10.534557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,17.63,68.89,-9,-9,6.666666666666667,1,1,0,0,10,10,4,1,3218,133971,37499.324,0,0,13159.848,-512.367,1438.8921 +11561,14110,25221,25224,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,8.5682707,8.4378958,0,10,1,76.564507,0,3,3,2021,11,0,46,37,1,0,0,7.4978476,7.4978476,0,0,0,0,0,0,0,0,1,1,0,3.8456872,0,49.52,56.95,49.35,59.64,8.333333333333334,2,3,0,0,8,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11561,14110,25222,-9,25224,25221,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1082.644,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11561,14110,25223,-9,25224,25221,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.99835,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11561,14110,25224,25221,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,7.8921461,7.5781298,0,10,-1,44.209885,0,3,3,2021,9,0,52,44,1,0,0,5.2901101,5.2901101,0,0,0,0,0,0,0,0,1,1,0,4.2525764,0,49.35,59.64,49.52,56.95,8.333333333333334,2,3,0,0,7,8,4,1,544.5,422011.25,121305.35,291702.38,0,0,0,3056.0623 +11562,14111,25225,25226,-9,-9,1,1,55,0,0,0,1,1,-9,1,1,0,7.2013035,7.2489357,14,16,-102.68082,0,3,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.7416477,7.3545237,54.78,25.18,58.89,48.6,1.666666666666667,1,1,0,0,6,2,3,1,2204,1243449.9,915854.13,301876.38,0,0,0,2961.7769 +11562,14111,25226,25225,-9,-9,1,0,39,0,0,0,1,1,-9,0,3,8.2140961,7.6072822,0,14,-16,49.961464,0,2,1,2021,4,0,34,46,1,0,0,10.680467,10.680467,0,0,0,0,0,0,0,2,1,1,0,2.5226417,0,58.89,48.6,54.78,25.18,8.333333333333334,1,1,0,0,8,2,3,1,2204,1243449.9,915854.13,301876.38,0,0,0,2961.7769 +11563,14112,25227,25228,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.3724966,8.2316971,0,8,-3,-70.781189,0,2,2,2021,4,0,39,40,1,0,0,11.748105,11.748105,0,0,0,0,0,0,0,0,0,0,0,0,0,49.65,51.62,62.39,56.71,8.333333333333334,1,1,0,0,12,5,4,1,226,-32514.34,67918.219,168012.63,64711.594,21050.516,1894.2932,1394.2361 +11563,14112,25228,25227,-9,-9,1,1,30,0,0,0,2,2,-9,0,5,0,0,0,8,3,173.68924,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,49.65,51.62,10,1,1,0,0,13,5,4,1,226,-32514.34,67918.219,168012.63,64711.594,21050.516,1894.2932,1394.2361 +11564,14113,25229,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.5350914,8.8262968,0,0,0,-869.59668,0,3,2,2021,6,0,52,50,1,0,0,19.278101,19.278101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,1213,426275.13,311932.69,159581.95,0,46584.988,0,1925.6333 +11564,14114,25230,-9,25229,-9,1,1,20,0,0,0,2,2,-9,0,4,6.967587,6.8942027,0,0,0,-972.72449,-9,1,-9,2021,11,1,40,0,1,1,1,2.3217032,2.3217032,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,9,2,1,1275,147429.45,0,0,0,0,0,33.933937 +11564,14115,25231,-9,25229,-9,1,0,18,0,0,1,2,0,-9,0,3,0,0,0,0,0,-930.39026,-9,1,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0023093,0,38.63,56.7,-9,-9,5,1,1,0,0,0,9,1,1,420,75718.602,0,0,0,15508.188,0,-524.59247 +11565,14116,25232,-9,-9,-9,1,1,35,0,0,0,2,2,-9,0,2,8.5778542,8.8205471,0,0,0,-1022.627,0,-9,-9,2021,12,4,35,35,1,4,0,17.111622,17.111622,.05,.05,0,0,0,0,0,0,0,0,0,2.0847406,0,22.02,51.31,-9,-9,6.666666666666667,1,1,0,0,7,2,5,1,1612,-29617.082,12569.496,0,0,3023.9741,0,1754.3591 +11566,14117,25233,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,7.6604252,7.3203115,4.332674,0,0,-996.46436,0,3,3,2021,9,0,30,30,1,0,0,7.5781207,7.5781207,0,0,0,0,0,0,0,0,1,1,0,3.019851,4.1411629,57.57,49.69,-9,-9,5,1,1,0,0,6,9,3,1,764,296465.88,0,126594.02,0,0,0,515.41974 +11567,14118,25234,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.4499359,8.4307785,0,0,0,-885.24585,0,-9,-9,2021,9,0,48,48,1,0,0,10.251869,10.251869,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,13,5,5,1,591,463264.75,87001.039,130475.15,47585.004,0,0,2068.2668 +11568,14119,25235,25236,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,7.9074893,8.0375395,0,11,-1,34.465637,0,3,2,2021,6,0,15,15,1,0,0,26.266167,26.266167,.05,.05,0,0,0,0,0,0,0,0,0,5.4322276,0,57.33,53.46,46.43,47.35,8.333333333333334,2,3,0,0,11,8,3,1,688.5,234247.88,71800.211,0,0,3007.8425,-985.18811,5303.0713 +11568,14119,25236,25235,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,7.4380054,7.6913648,0,11,1,-142.09363,0,3,3,2021,13,1,15,15,1,1,0,16.327682,16.327682,0,0,0,0,0,0,0,0,0,0,0,8.8507891,0,46.43,47.35,57.33,53.46,8.333333333333334,2,3,0,0,9,8,3,1,688.5,234247.88,71800.211,0,0,3007.8425,-985.18811,5303.0713 +11569,14120,25237,25239,-9,-9,1,0,47,0,2,0,1,1,-9,0,4,8.289629,8.1919022,0,7,-3,25.416315,0,2,2,2021,11,0,21,25,1,0,0,19.069153,19.069153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,57.06,57.76,8.333333333333334,1,1,0,0,8,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11569,14120,25238,-9,25237,25239,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1064.4141,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11569,14120,25239,25237,-9,-9,1,1,50,0,2,0,2,2,-9,0,5,8.9804554,8.8744383,0,7,3,84.529472,0,2,2,2021,11,0,46,47,1,0,0,24.357019,24.357019,.05,.05,0,0,0,0,0,0,1,1,0,2.9398913,0,57.06,57.76,46.9,56.66,10,1,1,0,0,8,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11569,14120,25240,-9,25237,25239,1,1,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-995.19568,-9,1,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,0,12,5,1,948.5,1128473.1,846045.88,209908.81,0,0,0,4453.6265 +11570,14121,25241,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2388535,9.0334978,0,0,0,-985.08588,0,2,3,2021,8,0,45,52,1,0,0,21.309288,21.309288,.05,.05,0,0,0,0,0,0,0,0,0,6.8090625,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,0,9,11,5,1,814,1232229.6,753619.13,193251.48,0,0,0,3360.3984 +11571,14122,25242,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,0,0,-961.18756,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,62.51,44.7,-9,-9,10,1,1,0,0,2,9,1,0,247,111236.6,0,0,0,0,0,1474.7736 +11572,14123,25243,-9,25245,25244,1,0,13,2,4,1,3,0,-9,0,5,0,0,0,0,0,-1074.0686,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,1,0,1658,-31972.412,0,0,0,1534.4884,-75.241768,2453.7869 +11572,14123,25244,25245,-9,-9,1,1,50,2,4,0,3,3,-9,1,3,0,0,0,8,6,0,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52,54.51,42.32,44.32,8.333333333333334,1,1,0,0,0,13,1,0,1658,-31972.412,0,0,0,1534.4884,-75.241768,2453.7869 +11572,14123,25245,25244,-9,-9,1,0,44,2,4,0,3,3,-9,1,2,0,0,0,8,-6,0,0,3,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.32,44.32,52,54.51,5,1,1,0,0,0,13,1,0,1658,-31972.412,0,0,0,1534.4884,-75.241768,2453.7869 +11572,14124,25246,-9,25248,-9,1,1,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-937.97333,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14124,25247,-9,25248,-9,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-890.27496,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14124,25248,-9,25245,25244,1,0,25,2,4,0,2,2,-9,0,4,0,0,0,0,0,-939.00623,0,3,3,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,41.3,60.77,-9,-9,5,1,1,1,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14124,25249,-9,25248,-9,1,1,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-972.77704,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,1,0,1015.5,134892.38,0,0,0,665.2746,1133.938,1506.7781 +11572,14125,25250,-9,25245,25244,1,0,20,2,4,1,2,0,0,0,4,0,0,0,0,0,-891.07288,-9,3,3,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,13,1,0,101,0,0,0,0,0,0,2002.8616 +11572,14126,25251,-9,25245,25244,1,1,19,2,4,0,2,2,-9,0,3,7.7760253,8.1077509,0,0,0,-1048.0192,0,3,3,2021,12,0,36,20,1,0,1,7.4560876,7.4560876,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,2,13,3,0,444,79896,5719.9932,0,0,6691.8818,0,950.74988 +11573,14127,25252,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.6805592,8.8474302,0,0,0,-868.94031,0,3,3,2021,10,0,38,40,1,1,0,19.963305,19.963305,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,55,-9,-9,8,1,1,0,1,6,8,5,0,352,652101.44,290255.53,359979.72,223840.17,0,1120.0402,3000.5159 +11574,14128,25253,-9,25254,25255,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.1451,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11574,14128,25254,25255,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,6.9870267,7.0612726,0,10,1,-121.02983,0,-9,2,2021,10,0,20,0,1,0,0,6.8019228,6.8019228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.73,49.64,41.58,52.86,10,1,1,0,0,9,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11574,14128,25255,25254,-9,-9,1,1,36,1,2,0,1,1,-9,0,2,8.3603306,8.3911104,0,10,-1,72.251503,0,-9,-9,2021,14,2,37,37,1,2,0,9.7140808,9.7140808,.05,.05,0,0,0,0,0,0,1,1,0,7.0935521,0,41.58,52.86,53.73,49.64,5,1,1,0,0,10,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11574,14128,25256,-9,25254,25255,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.75,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,3,1,1178,160820.91,105890.59,85505.602,39790.988,5739.8203,5678.5693,3687.9185 +11575,14129,25257,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,0,0,0,0,-935.95886,0,3,2,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,0,5.5164161,0,0,1,1,0,1.8134549,0,33.98,26.69,-9,-9,3,1,1,0,0,0,11,1,0,146,-72059.578,0,0,0,0,0,2222.7065 +11576,14130,25258,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.5233669,8.5050421,0,0,0,-1059.8479,0,3,3,2021,9,0,42,42,1,0,0,15.746554,15.746554,0,0,0,0,0,0,0,0,0,0,0,0,0,46.51,44.85,-9,-9,8.333333333333334,2,3,0,0,13,8,5,1,230,255930.77,-144571.17,345835.09,10365.324,0,0,2065.8318 +11577,14131,25259,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.3071909,9.4346094,0,0,0,-1038.2881,0,3,3,2021,8,0,79,45,1,0,0,16.776314,16.776314,.05,.05,0,0,0,0,0,0,0,0,0,4.7397318,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,790,459440.34,299498.31,247607.77,108352.13,5730.0293,0,4006.4409 +11578,14132,25260,25261,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,9.2523899,9.4091043,0,3,-2,.54946303,0,2,2,2021,6,1,40,40,1,1,0,33.770142,33.770142,0,0,0,0,0,0,0,0,0,0,0,1.6976999,0,57.16,56.15,16.68,60.08,8.333333333333334,1,1,0,0,15,5,5,1,1968,1251978.3,992123.25,102445.58,0,0,0,5458.9404 +11578,14132,25261,25260,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.6034374,8.746726,0,3,2,66.992767,0,-9,-9,2021,25,9,45,40,1,9,0,16.545982,16.545982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.68,60.08,57.16,56.15,1.666666666666667,1,1,0,0,4,5,5,1,1968,1251978.3,992123.25,102445.58,0,0,0,5458.9404 +11579,14133,25262,25263,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.8006434,7.7491064,56,2,92.958176,0,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.9961772,7.3627725,54,46,52,45,8,1,1,0,0,0,7,3,1,406,762752,128487.64,351254.94,0,0,0,3865.7207 +11579,14133,25263,25262,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,5.6456313,5.5813527,3,-2,-132.69919,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3244934,5.949532,52,45,54,46,8,1,1,0,0,0,7,3,1,406,762752,128487.64,351254.94,0,0,0,3865.7207 +11580,14134,25264,25265,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.1848803,8.0169535,0,39,-2,-157.92648,0,3,3,2021,15,3,33,32,1,3,0,13.554299,13.554299,0,0,0,0,0,0,0,2,0,0,0,0,0,39.86,47.68,55.13,39.27,6.666666666666667,1,1,0,0,8,12,5,1,443,1216783,788368.25,330178.53,0,0,0,3728.0286 +11580,14134,25265,25264,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.725318,8.867012,0,39,2,-122.82762,0,2,2,2021,16,4,60,60,1,4,0,12.589422,12.589422,.05,.05,.05,0,0,0,0,0,0,0,0,1.4320471,0,55.13,39.27,39.86,47.68,5,1,1,0,0,8,12,5,1,443,1216783,788368.25,330178.53,0,0,0,3728.0286 +11581,14135,25266,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1080.5087,-9,3,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,3.333333333333333,2,3,1,1,0,7,1,0,840,-175354.97,0,0,0,0,0,0 +11582,14136,25267,25268,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.2486086,8.1936092,7.7345362,34,1,94.678001,0,2,3,2021,11,0,6,10,1,0,0,26.449312,26.449312,.05,.05,0,0,0,0,0,2,1,1,0,1.2159745,7.528904,48.53,58.91,54.51,43.6,8.333333333333334,1,1,0,0,10,6,5,1,1194,211251,383364.75,201981.92,111272.98,11909.101,4212.3853,4284.3955 +11582,14136,25268,25267,-9,-9,1,0,56,0,0,0,2,2,-9,1,4,8.4322405,8.8873091,0,34,-1,-55.79694,0,3,3,2021,8,1,38,38,1,1,0,16.061102,16.061102,.05,.05,0,0,0,0,0,0,1,1,0,2.8628099,0,54.51,43.6,48.53,58.91,10,1,1,0,0,9,6,5,1,1194,211251,383364.75,201981.92,111272.98,11909.101,4212.3853,4284.3955 +11583,14137,25269,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,3,8.4276733,8.1921453,0,0,0,-928.99567,0,-9,-9,2021,20,8,35,35,1,8,0,18.522598,18.522598,0,0,0,0,0,0,0,0,1,1,0,3.6300445,0,35.45,54.01,-9,-9,5,2,3,0,0,9,7,5,1,407,-91757.109,0,0,0,0,0,1879.9844 +11584,14138,25270,25271,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,6.3897476,6.1335354,34,5,135.29114,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9717021,5.793385,60.12,54.8,48.28,60.18,10,1,1,0,0,10,9,2,0,487.5,394123.38,-4247.5293,289069.72,0,5509.9761,0,1037.9175 +11584,14138,25271,25270,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,34,-5,38.568668,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,60.12,54.8,10,1,1,0,0,0,9,2,0,487.5,394123.38,-4247.5293,289069.72,0,5509.9761,0,1037.9175 +11585,14139,25272,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.4154606,8.8801718,0,0,0,-996.08984,0,2,2,2021,19,7,47,57,1,7,0,12.024685,12.024685,0,0,.05,0,0,0,0,7,0,0,0,0,0,32.84,60.85,-9,-9,6.666666666666667,1,1,0,0,8,4,5,0,1587,16921.508,142502.67,0,0,0,0,1909.4159 +11586,14140,25273,25274,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.8636951,7.8814216,0,5,-3,24.592482,0,-9,2,2021,12,2,38,23,1,2,0,7.7910333,7.7910333,.05,.05,0,0,0,0,0,0,0,0,0,.054082222,0,51.77,58.57,34.41,57,8.333333333333334,1,1,0,0,14,7,5,1,201,779028.63,361743.25,328512.56,24796.172,0,0,5501.1245 +11586,14140,25274,25273,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,9.2442932,9.3614035,0,5,3,-16.57304,0,-9,-9,2021,16,5,50,45,1,5,0,26.270445,26.270445,.05,.05,.05,0,0,0,0,0,0,0,0,4.23353,0,34.41,57,51.77,58.57,8.333333333333334,1,1,0,0,3,7,5,1,201,779028.63,361743.25,328512.56,24796.172,0,0,5501.1245 +11587,14141,25275,25276,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,9.9522772,9.8267097,0,30,1,23.34268,0,2,2,2021,9,0,41,41,1,0,0,48.948559,48.948559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.81,61.51,8.333333333333334,1,1,0,0,13,6,5,1,1727,234801.36,27514.303,182890.48,87301.352,3991.0415,428.38806,5646.5894 +11587,14141,25276,25275,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,0,0,0,30,-1,40.937668,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.4864736,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,1,1727,234801.36,27514.303,182890.48,87301.352,3991.0415,428.38806,5646.5894 +11587,14141,25277,-9,25276,25275,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.04602,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1727,234801.36,27514.303,182890.48,87301.352,3991.0415,428.38806,5646.5894 +11588,14142,25278,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,0,0,0,0,-927.76892,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,4.100369,20.111181,48.842197,0,1,1,0,0,0,53,45,-9,-9,8,1,1,0,0,0,13,2,1,563,-22654.113,0,0,0,0,0,2.9924765 +11589,14143,25279,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,7.8003106,7.5816412,0,0,0,-997.18079,0,2,2,2021,12,2,40,36,1,2,1,6.1507673,6.1507673,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,8,4,3,1,911,-39173.043,0,0,0,0,0,1512.9563 +11590,14144,25280,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.775085,7.8513746,0,0,-975.99078,0,3,3,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3920498,7.50808,19.35,65.76000000000001,-9,-9,3.333333333333333,1,1,0,0,0,8,3,1,243,1036168.9,424724.69,456357.78,0,0,0,2534.6799 +11591,14145,25281,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,5.9401278,5.607666,0,0,-1005.2571,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2143559,5.5214405,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1272,608494,0,627605.44,0,0,0,1541.3673 +11592,14146,25282,-9,-9,-9,1,1,33,1,1,0,1,1,-9,0,5,9.7809553,9.4923544,0,0,0,-1001.3996,0,1,1,2021,0,0,55,45,1,0,0,39.494873,39.494873,.05,.05,0,0,0,0,0,0,0,0,0,4.0974898,0,39.69,62.39,-9,-9,10,1,1,0,0,10,2,5,1,1109.5,661885.75,306309.81,351178.88,156089.25,115.2449,0,24826.609 +11592,14146,25283,-9,-9,25282,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.67285,-9,-9,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1109.5,661885.75,306309.81,351178.88,156089.25,115.2449,0,24826.609 +11593,14147,25284,25285,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.9074273,7.8457541,0,2,-10,-18.128563,0,2,2,2021,10,0,16,20,1,0,0,22.411182,22.411182,0,0,0,0,0,0,0,2,0,0,0,0,0,51.94,55.88,48.87,58.55,6.666666666666667,1,1,0,0,9,7,4,1,320.5,1233542.3,131118.66,420008.25,0,0,0,1993.4263 +11593,14147,25285,25284,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.5388145,7.5682945,2,10,-11.004634,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3198404,7.5027604,48.87,58.55,51.94,55.88,8.333333333333334,1,1,0,0,7,7,4,1,320.5,1233542.3,131118.66,420008.25,0,0,0,1993.4263 +11594,14148,25286,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.575387,6.9460874,0,0,-918.39435,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.290338,6.9773479,54.2,57.49,-9,-9,1.666666666666667,1,1,0,0,5,10,2,1,371,20703.92,129935.07,0,0,0,0,670.61298 +11595,14149,25287,25288,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.9235325,7.9992919,0,24,3,4.2233911,0,2,2,2021,7,0,42,36,1,0,0,6.916183,6.916183,.05,.05,0,0,0,0,0,0,0,0,0,5.5374312,0,49.52,48.92,26.41,36.34,6.666666666666667,1,1,0,0,13,5,3,1,119,247597.14,263511.66,113288.77,0,0,547.09808,1361.5629 +11595,14149,25288,25287,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,5.4256358,5.5798554,0,24,-3,-.27610573,0,3,2,2021,24,10,50,50,1,10,0,.48466194,.48466194,.05,.05,.05,0,0,0,0,0,0,0,0,.40477601,0,26.41,36.34,49.52,48.92,3.333333333333333,1,1,0,0,13,5,3,1,119,247597.14,263511.66,113288.77,0,0,547.09808,1361.5629 +11596,14150,25289,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1090.5159,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,1.8986604,2.2582235,24.302464,0,1,1,0,0,0,50,46,-9,-9,7,1,1,0,0,0,4,2,0,431,0,0,0,0,0,0,1364.0111 +11597,14151,25290,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.5348496,8.1303329,0,0,0,-1030.26,0,1,-9,2021,11,0,36,35,1,0,0,8.7459335,8.7459335,.05,.05,0,0,0,0,0,0,0,0,0,.94478542,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,4,3,0,1157,-15969.371,10627.563,0,0,40004.352,0,975.48297 +11598,14152,25291,25292,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,3,3,-191.70517,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,3.7860994,0,59.74,45.34,36.08,60.5,10,1,1,0,0,5,13,5,1,457.5,2322034.8,1939231.1,271668.84,59124.492,0,9057.7822,3277.5254 +11598,14152,25292,25291,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.0831947,9.15026,0,3,-3,-53.127739,0,2,3,2021,18,5,40,52,1,5,0,30.068178,30.068178,.05,.05,0,0,0,0,0,2,0,0,0,2.2555792,0,36.08,60.5,59.74,45.34,6.666666666666667,1,1,0,0,8,13,5,1,457.5,2322034.8,1939231.1,271668.84,59124.492,0,9057.7822,3277.5254 +11599,14153,25293,25294,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,7.7657976,7.6603317,0,10,-12,48.817383,0,3,2,2021,8,1,5,5,1,1,0,53.825462,53.825462,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.49,57.57,49.96,56.89,6.666666666666667,1,1,0,0,9,10,5,1,255.5,264543.31,228043.42,233673.69,106694.02,0,2405.7173,2681.5181 +11599,14153,25294,25293,-9,-9,1,1,42,0,0,0,2,2,-9,0,5,8.3046598,8.6873884,0,10,12,63.890533,0,2,2,2021,7,0,48,45,1,0,0,11.712433,11.712433,.05,.05,0,0,0,0,0,0,0,0,0,2.0689213,0,49.96,56.89,51.49,57.57,6.666666666666667,1,1,0,0,10,10,5,1,255.5,264543.31,228043.42,233673.69,106694.02,0,2405.7173,2681.5181 +11600,14154,25295,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.5758142,8.3713408,0,0,0,-976.81415,0,-9,-9,2021,11,0,47,38,1,0,0,15.701879,15.701879,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,429,49393.734,67251.445,0,0,0,0,2164.407 +11601,14155,25296,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,7.1328468,6.8622899,0,0,-1014.6143,-9,3,3,2021,18,0,0,0,4,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.9699483,39.8,25.14,-9,-9,5,1,1,0,0,0,11,2,1,115,616822.44,145552.05,171269.98,0,0,-888.82324,2377.2764 +11602,14156,25297,-9,-9,-9,1,0,51,0,3,0,2,2,-9,0,2,0,0,0,0,0,-1005.2389,0,2,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,33.81,39.98,-9,-9,3.333333333333333,1,1,1,1,4,9,1,0,786.33331,815949.63,0,765095.13,0,0,0,1633.2195 +11602,14156,25298,-9,25297,-9,1,1,14,0,3,1,3,0,-9,0,2,0,0,0,0,0,-863.44031,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38,46,-9,-9,5,1,1,-9,0,0,9,1,0,786.33331,815949.63,0,765095.13,0,0,0,1633.2195 +11602,14156,25299,-9,25297,-9,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1023.1836,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,9,1,0,786.33331,815949.63,0,765095.13,0,0,0,1633.2195 +11603,14157,25300,25301,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.3156204,8.2642288,0,9,-8,86.934204,0,3,3,2021,12,1,29,29,1,1,0,20.170343,20.170343,0,0,0,0,0,0,0,0,1,1,0,4.0351257,0,43.2,59.97,47.02,44.6,8.333333333333334,1,1,0,0,10,9,4,1,541.5,1333169.1,1022219.4,329818.19,0,0,0,2554.1157 +11603,14157,25301,25300,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.6487174,7.6285753,9,8,63.567757,0,3,3,2021,16,4,0,0,4,4,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,1.9687438,7.6289282,47.02,44.6,43.2,59.97,6.666666666666667,1,1,0,0,8,9,4,1,541.5,1333169.1,1022219.4,329818.19,0,0,0,2554.1157 +11603,14158,25302,-9,25300,25301,1,1,24,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1159.3132,0,1,2,2021,33,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.870000000000001,48.95,-9,-9,3.333333333333333,1,1,1,1,6,9,1,1,1063,-49861.734,0,0,0,0,0,1066.7301 +11604,14159,25303,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1044.9838,0,1,1,2021,10,0,0,38,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,7,3,4,1,0,8,9,2,1,748,-15153.125,0,0,0,0,0,-4.1008749 +11605,14160,25304,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.8863993,9.8261127,0,0,0,-1141.27,0,2,1,2021,18,7,50,58,1,7,0,30.865877,30.865877,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,-9,-9,3.333333333333333,1,1,0,0,13,5,5,1,486,829726.13,719921.75,134567.66,0,0,-338.27191,5505.6597 +11605,14161,25305,-9,25304,-9,1,0,23,0,0,0,1,1,-9,0,4,0,5.5673862,5.5364418,0,0,-1005.9088,1,1,-9,2021,11,1,0,30,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8261847,0,38.91,60.5,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,497,-100790.52,0,0,0,0,0,387.14264 +11606,14162,25306,-9,25309,25307,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.34064,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11606,14162,25307,25309,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,8.2946405,8.240798,0,15,5,-119.67461,0,2,2,2021,4,0,38,37,1,0,0,13.437831,13.437831,.05,.05,.05,0,0,0,0,0,1,1,0,4.7490864,0,58.15,52.91,46.91,59.62,8.333333333333334,1,1,0,0,9,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11606,14162,25308,-9,25309,25307,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.559,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11606,14162,25309,25307,-9,-9,1,0,39,0,2,0,1,1,-9,0,5,8.6370287,8.816844,0,11,-5,-126.93921,0,2,2,2021,11,0,52,55,1,0,0,16.359638,16.359638,.05,.05,0,0,0,0,0,0,1,1,0,1.9296129,0,46.91,59.62,58.15,52.91,8.333333333333334,1,1,0,0,10,4,5,1,1078.5,351549.56,228432.05,236137.31,121159.77,2251.0247,0,3779.77 +11607,14163,25310,25311,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.3527174,7.6507897,45,3,-50.019794,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1834304,7.1589322,53,47,57.16,56.15,7,1,1,0,0,0,5,3,1,2757,431198.69,233038.22,128926.23,0,0,0,1929.4504 +11607,14163,25311,25310,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.1605697,6.3833647,45,-3,122.42723,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7782435,6.2931733,57.16,56.15,53,47,8.333333333333334,1,1,0,0,6,5,3,1,2757,431198.69,233038.22,128926.23,0,0,0,1929.4504 +11608,14164,25312,-9,-9,25313,1,1,53,0,0,0,3,3,-9,0,5,7.9754763,8.0087423,0,0,0,-1058.0898,0,2,2,2021,6,0,40,40,1,0,0,7.6156712,7.6156712,.05,.05,0,0,0,0,0,0,1,1,0,.71781301,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,600,375353.31,460115.78,0,0,13042.809,2068.9609,733.24805 +11608,14165,25313,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,3.8387094,3.4755852,0,0,-1011.187,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,2.3474524,27.932072,21.811651,0,1,1,0,5.2927942,3.7142503,55,45,-9,-9,7,1,1,0,0,0,11,2,1,818,23411.143,4354.4116,78840.609,0,0,0,1071.0032 +11609,14166,25314,25315,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.1807275,7.190578,45,3,80.204254,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.7294054,7.1521888,62.39,56.71,58.98,7.33,10,1,1,0,0,14,12,3,1,190.5,893437.69,801402.88,201103.44,0,0,0,987.66797 +11609,14166,25315,25314,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,6.3468323,6.0868711,45,-3,131.53377,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1144552,58.98,7.33,62.39,56.71,8.333333333333334,1,1,0,0,12,12,3,1,190.5,893437.69,801402.88,201103.44,0,0,0,987.66797 +11610,14167,25316,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,3,0,0,0,0,0,-939.1264,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.5577047,0,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,12,5,1,1,359,137227.86,0,0,0,0,0,233.53059 +11611,14168,25317,25318,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.163352,8.8474026,0,10,-4,-16.025175,0,2,2,2021,11,2,35,35,1,2,0,23.713764,23.713764,.05,.05,0,0,0,0,0,0,0,0,0,6.2178769,0,46.73,57.01,28.1,66.68000000000001,8.333333333333334,1,1,0,0,10,8,5,1,702.5,1506303.8,1447740.5,375607.44,252041.58,19720.914,10658.174,5317.7139 +11611,14168,25318,25317,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.2457037,8.2016478,0,10,4,-27.163582,0,2,2,2021,22,10,72,37,1,10,0,6.9212551,6.9212551,.05,.05,0,0,0,0,0,0,0,0,0,6.0863552,0,28.1,66.68000000000001,46.73,57.01,5,1,1,0,0,6,8,5,1,702.5,1506303.8,1447740.5,375607.44,252041.58,19720.914,10658.174,5317.7139 +11612,14169,25319,25320,-9,-9,1,1,29,0,0,0,3,3,-9,0,3,7.9358869,7.950613,0,6,2,-64.551819,0,3,2,2021,9,0,43,43,1,0,0,6.94451,6.94451,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,51.73,58.82,6.666666666666667,1,1,0,0,7,10,4,1,422.5,107272.41,-57319.172,42336.43,38057.223,6150.2842,0,1635.0791 +11612,14169,25320,25319,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.2295313,8.3534517,0,6,-2,37.931664,0,-9,-9,2021,6,0,38,33,1,0,0,12.315432,12.315432,0,0,0,0,0,0,0,0,0,0,0,3.7765665,0,51.73,58.82,52,54.51,6.666666666666667,1,1,0,0,7,10,4,1,422.5,107272.41,-57319.172,42336.43,38057.223,6150.2842,0,1635.0791 +11613,14170,25321,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,8.4682026,8.2435064,0,0,-898.86334,0,3,3,2021,4,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.8736572,8.5196543,48.44,44.34,-9,-9,6.666666666666667,1,1,0,0,5,4,5,1,433,15637.965,-52582.582,0,0,0,0,3644.8733 +11614,14171,25322,25323,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.1051021,7.3546844,5,6,-75.405251,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.881279,7.4721365,44.3,58.08,57.06,57.76,6.666666666666667,1,1,0,0,1,11,4,1,829,1442124.6,741739.5,530820.13,0,1226.166,0,2079.6665 +11614,14171,25323,25322,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,8.1913013,8.0496922,0,5,-6,165.97162,0,3,3,2021,9,0,32,33,1,0,0,10.204885,10.204885,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,44.3,58.08,8.333333333333334,1,1,0,0,6,11,4,1,829,1442124.6,741739.5,530820.13,0,1226.166,0,2079.6665 +11614,14172,25324,-9,25323,25322,1,0,23,0,0,0,1,1,-9,0,5,7.2884173,7.4344683,0,0,0,-1021.5932,0,2,2,2021,18,6,15,18,1,6,1,10.243862,10.243862,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.81,61.51,-9,-9,8.333333333333334,1,1,0,0,2,11,3,1,460,-106858.6,-7711.1055,0,0,8907.1348,0,1410.9406 +11615,14173,25325,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,5.0171409,4.7681298,0,0,-1058.5377,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9620132,5.089591,44.88,38.64,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,359,173721.2,83523.836,194500.22,0,0,0,1238.0531 +11616,14174,25326,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.2646961,8.4699745,0,0,0,-1005.7737,0,2,2,2021,8,0,45,50,1,0,0,12.159213,12.159213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.82,57.78,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,402,260184.36,52622.793,253028.5,88622.07,0,0,1046.2339 +11617,14175,25327,25328,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.2671461,7.1608062,6,-2,-30.547956,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.059886,57.33,53.46,43.42,62.33,8.333333333333334,1,1,0,0,5,13,3,1,926.5,1075443.1,587645.88,167304.13,0,5960.3911,0,3436.0601 +11617,14175,25328,25327,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.9418631,7.4303575,6,2,-34.234787,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.542963,7.7584214,43.42,62.33,57.33,53.46,10,1,1,0,0,0,13,3,1,926.5,1075443.1,587645.88,167304.13,0,5960.3911,0,3436.0601 +11618,14176,25329,-9,-9,-9,1,1,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-868.78448,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.93,39.39,-9,-9,5,1,1,0,0,0,12,1,0,281,-88318.695,6180.6909,133625.16,91621.672,0,4511.2642,21.795019 +11619,14177,25330,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.3410044,8.3404722,0,0,0,-1092.4489,0,2,2,2021,7,0,35,36,1,0,0,14.873057,14.873057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,2495,161638.16,-13086.266,87308.742,18271.924,-19.80468,0,1101.4862 +11620,14178,25331,-9,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,8.2695017,8.1029234,0,0,0,-909.7959,0,-9,-9,2021,8,0,38,28,1,0,0,8.150939,8.150939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,56.11,-9,-9,8.333333333333334,3,4,0,0,4,8,3,0,846,-15545.98,-64006.766,0,0,0,0,2930.6018 +11620,14179,25332,-9,25331,-9,1,1,19,0,2,0,3,3,-9,0,5,7.2200322,7.439024,0,0,0,-1037.7998,-9,3,-9,2021,4,1,26,0,1,1,1,5.9710979,5.9710979,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,2,3,0,0,1,8,3,0,300,53908.25,0,0,0,0,-72.990112,724.13776 +11621,14180,25333,25334,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.8134103,7.0151949,49,4,-190.24814,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.765451,6.9283957,58.15,52.91,55.36,46.37,10,1,1,0,0,8,10,2,1,365.5,640136,187594.91,241592.75,0,0,0,1975.7061 +11621,14180,25334,25333,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.7729235,6.0675602,49,-4,32.10503,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4473472,5.8450971,55.36,46.37,58.15,52.91,8.333333333333334,1,1,0,0,8,10,2,1,365.5,640136,187594.91,241592.75,0,0,0,1975.7061 +11622,14181,25335,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.8904419,6.7224493,0,0,-1004.0815,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,2.1873536,3.9046514,23.019602,0,1,1,0,6.1267962,6.8830833,57.6,27.68,-9,-9,6.666666666666667,1,1,0,0,0,4,2,1,275,170066.05,44826.848,-5520.8599,0,0,0,1528.111 +11623,14182,25336,-9,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.983201,7.7719345,0,0,0,-1023.8003,0,3,3,2021,12,0,45,16,1,0,0,6.8869448,6.8869448,0,0,0,0,0,0,0,0,1,0,1,0,0,40.64,55.63,-9,-9,1.666666666666667,1,1,0,0,9,4,3,0,781,30282.939,0,0,0,0,0,1091.3149 +11623,14182,25337,-9,25336,-9,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1007.9951,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,3,0,781,30282.939,0,0,0,0,0,1091.3149 +11623,14182,25338,-9,25336,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4397,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,0,781,30282.939,0,0,0,0,0,1091.3149 +11624,14183,25339,25340,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,9.3837833,9.4787502,0,6,3,5.7866716,0,-9,-9,2021,11,3,43,35,1,3,0,35.613976,35.613976,.05,.05,0,0,0,0,0,0,0,0,0,4.9287367,0,56.47,59.4,42.05,50.93,8.333333333333334,1,1,0,0,7,6,5,0,1250,-37894.484,83712.484,198487.97,113961.55,0,0,4253.4966 +11624,14183,25340,25339,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.6733646,7.835515,0,6,-3,-115.61419,0,1,1,2021,13,2,40,40,1,2,0,6.5469732,6.5469732,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.05,50.93,56.47,59.4,8.333333333333334,1,1,0,0,9,6,5,0,1250,-37894.484,83712.484,198487.97,113961.55,0,0,4253.4966 +11625,14184,25341,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1120.9277,0,-9,-9,2021,18,6,0,37,3,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.2,53.11,-9,-9,3.333333333333333,1,1,0,1,0,11,1,0,903,127779.34,0,0,0,0,0,271.38974 +11626,14185,25342,25343,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,8.5401011,8.6740952,11,6,122.52084,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.9991245,8.8072748,50.06,27.98,57.88,43.83,5,1,1,0,0,4,11,4,1,937.5,905958.88,698732.63,137475.16,0,0,0,4918.3428 +11626,14185,25343,25342,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.2327824,7.0120072,11,-6,-16.834515,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8855104,57.88,43.83,50.06,27.98,6.666666666666667,1,1,0,0,5,11,4,1,937.5,905958.88,698732.63,137475.16,0,0,0,4918.3428 +11627,14186,25344,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,5.4332685,5.1692991,0,0,-1014.8313,0,2,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8039987,5.4370675,27.34,31.17,-9,-9,1.666666666666667,1,1,0,0,0,7,2,1,908,7327.9727,12681.338,0,0,0,0,960.0694 +11628,14187,25345,25346,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2211447,6.7016068,56,7,-31.582134,0,3,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1496973,38.2,47.92,47.15,56.66,8.333333333333334,1,1,0,0,0,4,2,0,252.5,161792.41,171366.78,0,0,0,0,1204.0216 +11628,14187,25346,25345,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9659457,5.8208675,56,-7,-15.884758,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6491246,47.15,56.66,38.2,47.92,8.333333333333334,1,1,0,0,11,4,2,0,252.5,161792.41,171366.78,0,0,0,0,1204.0216 +11628,14188,25347,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,5,6.4650202,7.3249507,7.3029971,0,0,-790.04297,-9,-9,-9,2021,14,2,12,0,1,2,0,5.6156173,5.6156173,0,0,0,0,0,0,0,0,1,1,0,7.2637429,6.9123092,50.01,47.42,-9,-9,8.333333333333334,4,2,0,0,2,4,3,0,967,-24664.984,0,0,0,0,0,1010.3115 +11629,14189,25348,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,0,0,0,0,0,-859.42554,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.86,57.42,-9,-9,1.666666666666667,4,2,1,0,5,9,1,0,304,-117488.63,0,0,0,0,0,371.06223 +11630,14190,25349,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4446115,6.7504435,0,0,-1005.5009,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0270677,6.5375271,54.6,31.3,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,425,538172.94,0,358707.66,0,0,0,1737.396 +11631,14191,25350,-9,25353,25352,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.4041,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11631,14191,25351,-9,25353,25352,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-871.25751,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11631,14191,25352,25353,-9,-9,1,1,37,2,2,0,2,2,-9,1,4,7.9372859,8.4698029,0,7,-1,-28.829008,0,2,2,2021,25,11,40,40,1,11,0,7.9058037,7.9058037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.53,44.6,32.93,61.75,3.333333333333333,1,1,0,1,9,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11631,14191,25353,25352,-9,-9,1,0,38,2,2,0,1,1,-9,0,3,0,0,0,7,1,-124.51502,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.93,61.75,43.53,44.6,8.333333333333334,1,1,0,0,7,9,3,0,431.5,-4303.9121,-2629.6997,0,0,0,0,2074.3337 +11632,14192,25354,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,4.76091,4.3721013,0,0,-1013.4648,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1272297,4.7659526,52.99,53.95,-9,-9,10,1,1,0,0,5,5,2,1,985,91528.398,217276.28,0,0,0,0,1477.3652 +11632,14193,25355,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1123.6921,0,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.56242168,0,48.04,22.83,-9,-9,5,1,1,0,0,4,5,2,1,494,60159.543,0,0,0,1212.8425,1305.9111,563.96014 +11633,14194,25356,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-906.45679,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9598804,0,56.31,38.83,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,1532,797581.63,0,273334.47,0,0,0,-235.57545 +11634,14195,25357,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,9.4757214,8.8336601,0,0,0,-898.76447,0,3,3,2021,10,0,35,40,1,0,0,31.179384,31.179384,.05,.05,0,0,0,0,0,0,0,0,0,5.2049131,0,51.61,61.54,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,483,1360606.3,665467.75,201614.98,0,0,0,3656.0876 +11634,14196,25358,-9,-9,25357,1,0,25,0,0,0,2,2,-9,0,3,8.2682028,7.9875569,0,0,0,-1035.5951,0,2,2,2021,9,0,43,41,1,0,1,11.275626,11.275626,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,9,4,4,1,263,230940.63,52085.445,0,0,0,5388.7681,1933.3889 +11635,14197,25359,-9,25363,25362,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-944.69635,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25360,-9,25363,25362,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.54681,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25361,-9,25363,25362,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-863.63971,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25362,25363,-9,-9,1,1,42,0,3,0,1,1,-9,0,5,9.5473623,9.477993,0,10,1,96.011719,0,2,2,2021,6,0,50,55,1,0,0,33.05685,33.05685,.05,.05,0,0,0,0,0,0,1,1,0,6.0680017,0,54.1,59.11,51.39,59.18,8.333333333333334,1,1,0,0,11,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11635,14197,25363,25362,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,7.8059831,7.9311619,0,10,-1,-22.499636,0,-9,-9,2021,11,0,15,15,1,0,0,16.779701,16.779701,.05,.05,0,0,0,0,0,0,1,1,0,7.6193867,0,51.39,59.18,54.1,59.11,8.333333333333334,1,1,0,0,9,5,5,1,1210.8,1581105.9,1176855.5,462628.44,142449.23,0,0,11387.88 +11636,14198,25364,25365,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,7.0967026,7.6571317,65,-2,2.1069088,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2556576,7.7117238,45.59,34.4,37.55,52.56,8.333333333333334,1,1,0,0,0,2,3,1,1093.5,766152,355944.94,351394.5,0,0,0,3118.7896 +11636,14198,25365,25364,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,7.4079723,7.3536711,13,2,44.920242,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2664847,37.55,52.56,45.59,34.4,6.666666666666667,1,1,0,0,0,2,3,1,1093.5,766152,355944.94,351394.5,0,0,0,3118.7896 +11637,14199,25366,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,8.0964136,8.1077642,0,0,-912.84454,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4674807,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,13,2,4,1,416,29054.602,-23098.381,0,0,0,0,1556.0653 +11638,14200,25367,25368,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,7.0799065,8.6447935,8.9696941,38,3,85.942451,0,2,2,2021,8,2,8,8,1,2,0,17.473095,17.473095,0,0,0,0,0,0,0,0,0,0,0,5.1902847,8.4326839,47,41.31,35.47,38.09,8.333333333333334,1,1,0,0,8,9,4,1,1265,2006142.8,1255181,538497.13,0,0,0,3272.3335 +11638,14200,25368,25367,-9,-9,1,0,61,0,0,0,1,1,-9,0,1,0,5.8064175,6.0506721,39,-3,2.0484204,0,2,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9513793,5.7849417,35.47,38.09,47,41.31,1.666666666666667,1,1,0,0,6,9,4,1,1265,2006142.8,1255181,538497.13,0,0,0,3272.3335 +11639,14201,25369,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,9.6717148,9.4350834,0,0,0,-1188.5116,0,2,2,2021,11,0,48,48,1,0,0,35.726482,35.726482,.05,.05,0,0,0,0,0,0,0,0,0,6.0063457,0,57.63,56.14,-9,-9,10,1,1,0,0,15,6,5,1,855,298117.44,182164.66,0,0,9580.6855,0,6812.3457 +11640,14202,25370,25371,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.094018,9.1595631,0,8,7,100.46317,0,3,3,2021,10,0,47,85,1,0,0,18.081036,18.081036,.05,.05,0,0,0,0,0,0,1,1,0,2.9533818,0,46.08,57.2,57.06,57.76,6.666666666666667,1,1,0,0,8,9,5,1,525.5,2780104.5,2241500,842826.63,244239.36,0,0,6967.7197 +11640,14202,25371,25370,-9,-9,1,0,46,0,0,0,1,1,-9,0,5,9.1800299,9.1122465,0,8,-7,-4.2142715,-9,3,2,2021,8,0,44,0,1,0,0,23.502693,23.502693,.05,.05,0,0,0,0,0,0,1,1,0,4.0667729,0,57.06,57.76,46.08,57.2,8.333333333333334,1,1,0,0,8,9,5,1,525.5,2780104.5,2241500,842826.63,244239.36,0,0,6967.7197 +11641,14203,25372,25373,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,6.7757392,6.6911674,0,41,0,-18.852333,0,2,2,2021,9,0,35,41,1,0,0,3.9418643,3.9418643,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.42,48.12,63,27.76,5,1,1,0,1,9,10,3,1,846.5,638143.38,315452.69,536182,399254.5,0,0,1925.2333 +11641,14203,25373,25372,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.2412982,7.2640657,0,41,0,64.952232,0,2,2,2021,7,0,21,21,1,0,0,8.2521486,8.2521486,0,0,.05,0,0,0,0,0,1,1,0,0,0,63,27.76,51.42,48.12,8.333333333333334,1,1,0,1,9,10,3,1,846.5,638143.38,315452.69,536182,399254.5,0,0,1925.2333 +11642,14204,25374,-9,25375,25376,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-913.41022,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,2,3,-9,0,0,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14204,25375,25376,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,7.5212512,7.2944083,0,23,0,10.197492,-9,3,3,2021,12,0,29,0,1,0,0,6.6631532,6.6631532,.05,.05,0,0,0,0,0,42,1,0,1,1.8303403,0,46.67,34.44,48,50,8.333333333333334,2,3,0,1,2,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14204,25376,25375,-9,-9,1,1,48,0,2,0,3,3,-9,0,3,7.6415648,7.7248077,0,23,0,-26.757174,-9,3,3,2021,15,3,39,0,1,3,0,7.312037,7.312037,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48,50,46.67,34.44,6,2,3,0,0,11,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14204,25377,-9,25375,25376,1,1,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1106.1949,-9,2,3,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.2,40.63,-9,-9,6.666666666666667,2,3,0,0,0,6,3,1,1305.75,-75100.977,3744.3882,114708.52,34795.129,12493.007,1484.2881,1811.9193 +11642,14205,25378,-9,25375,25376,1,0,18,0,2,0,2,2,-9,1,4,0,0,0,0,0,-973.79352,-9,2,3,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,1.1592458,0,54.79,55.86,-9,-9,3.333333333333333,2,3,0,0,0,6,2,1,167,37875.164,0,0,0,0,1042.2555,597.97955 +11643,14206,25379,25380,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.5897803,7.6743922,0,10,-4,51.720993,0,3,-9,2021,14,4,38,38,1,4,0,5.9782734,5.9782734,0,0,0,0,0,0,0,0,0,0,0,0,0,46.28,38.32,37.02,37.37,6.666666666666667,1,1,0,0,14,9,3,1,1677,1076913.8,570546.63,343528.41,0,4771.9043,0,1655.8016 +11643,14206,25380,25379,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.7129011,7.5756979,10,4,-51.593117,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3471994,37.02,37.37,46.28,38.32,5,1,1,0,0,4,9,3,1,1677,1076913.8,570546.63,343528.41,0,4771.9043,0,1655.8016 +11644,14207,25381,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.6438103,6.3017406,0,0,-1163.2557,0,3,3,2021,8,0,0,32,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.1518302,5.8097038,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,14,6,2,1,784,584194.63,295703.22,303265.19,0,0,-106.47385,989.88568 +11645,14208,25382,25383,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,8.2492342,7.9964318,29,-1,57.946304,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.8243113,7.9276714,56.44,38.96,50.34,56.4,8.333333333333334,1,1,0,0,6,9,4,1,692.5,473562.66,328453.56,0,0,0,0,3410.3228 +11645,14208,25383,25382,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6579351,7.4882841,0,29,1,-86.572571,0,2,2,2021,10,0,25,17,1,0,0,9.7357225,9.7357225,0,0,0,0,0,0,0,14.5,1,1,0,3.1237788,0,50.34,56.4,56.44,38.96,1.666666666666667,1,1,0,0,9,9,4,1,692.5,473562.66,328453.56,0,0,0,0,3410.3228 +11646,14209,25384,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,7.4080091,7.4571328,0,0,-893.57898,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8532743,7.6516619,44.4,51.11,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,2449,504526.31,69924.039,252260.56,0,7564.8306,0,821.16809 +11647,14210,25385,25386,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.3272133,8.2922306,48,0,-130.92296,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0678916,8.0995331,60.12,54.8,62.49,55.09,8.333333333333334,1,1,0,0,0,9,4,1,367,1741043,983674.94,522223.38,0,906.9809,0,4353.959 +11647,14210,25386,25385,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.3909459,7.5688334,48,0,114.86217,0,1,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8313055,7.1283402,62.49,55.09,60.12,54.8,8.333333333333334,1,1,0,0,0,9,4,1,367,1741043,983674.94,522223.38,0,906.9809,0,4353.959 +11648,14211,25387,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.5814104,8.664854,0,0,0,-1124.9244,0,3,3,2021,24,9,43,48,1,9,0,17.440643,17.440643,0,0,.05,0,0,0,0,0,1,1,0,3.129297,0,24.35,65.96000000000001,-9,-9,1.666666666666667,1,1,0,0,10,2,5,1,1289,114733.98,101948.53,0,0,0,0,1753.209 +11649,14212,25388,-9,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,7.7233543,7.3255939,0,0,0,-1061.7161,0,3,-9,2021,15,2,32,31,1,2,0,6.1949697,6.1949697,0,0,0,0,0,0,0,0,1,1,0,0,0,42.54,41.08,-9,-9,6.666666666666667,3,4,0,0,11,9,3,0,818,0,0,0,0,0,0,2106.3091 +11649,14212,25389,-9,25388,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.6519,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,9,3,0,818,0,0,0,0,0,0,2106.3091 +11649,14213,25390,-9,25388,-9,1,0,22,0,1,0,3,3,0,0,2,0,0,0,0,0,-1009.6489,-9,3,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.74,47.8,-9,-9,8.333333333333334,3,4,0,0,3,9,1,0,573,-208509.13,0,0,0,958.23407,0,392.53888 +11649,14214,25391,-9,25388,-9,1,0,19,0,1,0,2,2,0,0,3,0,0,0,0,0,-1007.1837,-9,3,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,1.666666666666667,3,4,0,0,1,9,1,0,741,44838.086,0,0,0,3424.2849,0,0 +11650,14215,25392,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.6806,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.61,16.05,-9,-9,1.666666666666667,1,1,0,1,0,4,1,0,364,-19675.711,94960.891,0,0,0,0,1085.4371 +11651,14216,25393,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,4,7.4578853,7.5824385,0,0,0,-860.88586,-9,1,2,2021,11,2,36,0,1,2,0,7.4534106,7.4534106,0,0,0,0,0,0,0,0,1,1,0,3.8058879,0,50.97,53.42,-9,-9,8.333333333333334,1,1,0,0,1,10,3,0,448,-248970.31,0,0,0,0,0,1377.2494 +11651,14217,25394,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,4,0,6.2566543,6.04845,0,0,-885.1745,-9,-9,-9,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5634732,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,329,20606.861,0,0,0,13309.946,0,302.45929 +11652,14218,25395,25396,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.5274348,6.9182177,0,31,-5,.21377909,0,2,2,2021,12,0,15,24,1,0,0,5.4200082,5.4200082,0,0,0,0,0,0,0,2,0,0,0,8.3000221,0,42.27,53.29,50,49,8.333333333333334,1,1,0,0,10,5,3,1,2311.5,1275685.5,0,1425143.1,425357.38,0,29684.232,3910.1211 +11652,14218,25396,25395,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,6.690495,6.7531767,0,31,5,31.088951,0,2,2,2021,12,0,40,40,1,0,0,3.2880244,3.2880244,0,0,0,0,0,0,0,0,0,0,0,7.7034311,0,50,49,42.27,53.29,6.666666666666667,1,1,0,0,10,5,3,1,2311.5,1275685.5,0,1425143.1,425357.38,0,29684.232,3910.1211 +11652,14219,25397,-9,25395,25396,1,0,22,0,0,1,1,0,-9,0,4,0,0,0,0,0,-1046.4823,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,0,5,1,1,953,-93762.813,0,0,0,0,0,1639.4351 +11653,14220,25398,25399,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,0,0,0,1,3,-61.763073,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,0,0,27.89,50.7,33.57,43.75,8.333333333333334,1,1,0,0,0,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11653,14220,25399,25398,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,8.8873634,8.9358139,0,1,-3,27.335611,-9,3,3,2021,25,10,45,0,1,10,0,13.036944,13.036944,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,33.57,43.75,27.89,50.7,5,1,1,0,0,13,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11653,14220,25400,-9,25399,25398,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.9979,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11653,14220,25401,-9,25399,25398,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.5988,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,4,1,815.75,264359.38,48577.848,160023.81,61551.469,0,0,2700.3574 +11654,14221,25402,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,7.9860392,8.2245836,5.7184439,0,0,-1088.8427,0,3,3,2021,12,0,30,30,1,0,0,9.6115952,9.6115952,0,0,0,1,0,0,0,27,0,0,0,0,6.0435762,42.35,36.31,-9,-9,5,1,1,0,0,14,2,4,0,326,1565938.8,1018527,0,0,785.7912,0,1327.1062 +11655,14222,25403,-9,25404,25405,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-930.34119,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11655,14222,25404,25405,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.5684853,7.7472534,0,7,-1,-69.30101,0,2,2,2021,6,0,27,27,1,0,0,7.0020003,7.0020003,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.2,57.49,8.333333333333334,1,1,0,0,5,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11655,14222,25405,25404,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.593255,8.8617182,0,7,1,-30.95174,0,2,1,2021,6,0,48,55,1,0,0,12.885624,12.885624,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,48.87,58.55,8.333333333333334,1,1,0,0,8,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11655,14222,25406,-9,25404,25405,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.63568,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,704.75,48469.383,24768.064,173997.42,135600.42,0,0,2854.2549 +11656,14223,25407,25408,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,0,0,1,-3,99.839684,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3790264,0,62.66,52.4,57.06,57.76,10,1,1,0,0,8,2,2,1,394.5,-19018.404,0,46614.809,23012.637,0,1960.1147,1968.02 +11656,14223,25408,25407,-9,-9,1,0,68,0,0,0,2,2,-9,0,5,6.3569574,6.4561567,5.3765235,38,3,64.037064,-9,-9,-9,2021,8,0,10,0,1,0,0,6.8889613,6.8889613,0,0,0,0,0,0,0,0,1,1,0,4.0622253,5.3008904,57.06,57.76,62.66,52.4,8.333333333333334,1,1,0,0,8,2,2,1,394.5,-19018.404,0,46614.809,23012.637,0,1960.1147,1968.02 +11657,14224,25409,25410,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,6.6382432,7.0471773,30,11,-64.370865,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,14.845302,0,0,1,1,0,6.3098798,6.8285866,55.11,24.36,63.09,47.92,8.333333333333334,1,1,0,0,5,4,2,1,295.5,134184.92,70377.461,189280.38,0,0,0,1853.8281 +11657,14224,25410,25409,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,0,0,0,30,-11,-68.016533,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,63.09,47.92,55.11,24.36,8.333333333333334,1,1,0,0,0,4,2,1,295.5,134184.92,70377.461,189280.38,0,0,0,1853.8281 +11657,14225,25411,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,0,0,-907.59888,0,3,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,49.16,-9,-9,8.333333333333334,1,1,1,0,5,4,1,1,148,-38906.113,-6600.1406,0,0,0,0,93.921089 +11657,14226,25412,-9,25410,25409,1,1,26,0,0,0,2,2,-9,0,3,8.0439682,7.8176455,0,0,0,-1079.6992,0,2,3,2021,12,0,38,43,1,0,0,8.0419512,8.0419512,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,4,4,1,408,-70457.156,148120.05,0,0,0,0,1421.1251 +11658,14227,25413,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,2,8.7985935,8.8016891,0,0,0,-1090.0593,0,2,3,2021,14,3,39,50,1,3,0,21.314314,21.314314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,36.37,-9,-9,3.333333333333333,1,1,0,0,7,7,5,0,1427,114478.3,187780.16,0,0,0,0,2031.1592 +11659,14228,25414,25415,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.2584214,6.2916312,6,6,-44.777409,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,13.322243,0,0,1,1,0,7.1539083,6.6124635,49.28,11.91,41.61,48.15,1.666666666666667,1,1,0,0,0,1,2,1,3586.5,901469.63,69555.109,347632.44,0,16940.602,0,2828.353 +11659,14228,25415,25414,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,6,-6,161.36259,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.1993551,0,41.61,48.15,49.28,11.91,6.666666666666667,1,1,0,0,0,1,2,1,3586.5,901469.63,69555.109,347632.44,0,16940.602,0,2828.353 +11660,14229,25416,-9,25418,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-937.72333,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,3,1,298.33334,96197.969,170574.13,0,0,0,0,2950.0615 +11660,14229,25417,-9,25418,-9,1,1,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-853.43805,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,298.33334,96197.969,170574.13,0,0,0,0,2950.0615 +11660,14229,25418,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,6.989275,7.4789038,7.1895146,0,0,-945.69342,0,2,3,2021,22,10,36,42,1,10,0,3.0596609,3.0596609,.05,.05,0,0,0,0,0,0,1,1,0,6.8151155,0,37.07,50.01,-9,-9,1.666666666666667,1,1,0,0,9,12,3,1,298.33334,96197.969,170574.13,0,0,0,0,2950.0615 +11660,14230,25419,-9,25418,-9,1,1,19,0,1,0,2,2,0,0,3,0,0,0,0,0,-982.47845,-9,2,-9,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.93,57.8,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,305,5437.4141,0,0,0,0,0,610.2243 +11661,14231,25420,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,6.2583089,6.246769,0,0,-1017.741,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4883676,6.5237021,34.15,19.97,-9,-9,3.333333333333333,1,1,0,0,9,4,2,1,1101,388279.34,83182.516,112684.78,0,0,0,202.30682 +11662,14232,25421,25422,-9,-9,1,0,25,0,1,0,1,1,1,0,3,8.2014523,8.1002626,0,6,-7,31.29595,-9,-9,-9,2021,11,3,46,0,1,3,0,10.128182,10.128182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,44.19,58.01,8.333333333333334,1,1,0,0,5,6,4,0,761.33331,289886.81,175304.91,151708.72,115501.83,1353.7043,1493.818,3271.022 +11662,14232,25422,25421,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.2597685,8.0426588,0,6,7,23.350327,0,-9,-9,2021,16,3,49,40,1,3,0,8.9668217,8.9668217,.05,.05,0,0,0,0,0,7,1,1,0,0,0,44.19,58.01,49.04,55.86,5,1,1,0,0,7,6,4,0,761.33331,289886.81,175304.91,151708.72,115501.83,1353.7043,1493.818,3271.022 +11662,14232,25423,-9,-9,25422,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.05719,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,0,761.33331,289886.81,175304.91,151708.72,115501.83,1353.7043,1493.818,3271.022 +11663,14233,25424,25425,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.7950602,9.6532955,0,6,6,-68.443398,0,-9,-9,2021,10,0,40,35,1,0,0,37.298397,37.298397,.05,.05,0,0,0,0,0,0,0,0,0,2.4936736,0,54.2,57.49,46.44,59.62,1.666666666666667,1,1,0,0,6,9,5,1,442.5,5050766,4090099.5,876763.38,0,0,0,10705.16 +11663,14233,25425,25424,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.8865261,8.9049549,0,6,-6,-158.25446,0,2,3,2021,12,1,50,50,1,1,0,13.544476,13.544476,.05,.05,.05,0,0,0,0,0,0,0,0,2.5708559,0,46.44,59.62,54.2,57.49,8.333333333333334,1,1,0,0,7,9,5,1,442.5,5050766,4090099.5,876763.38,0,0,0,10705.16 +11664,14234,25426,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-835.02258,0,2,-9,2021,12,4,0,40,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.37,17.83,-9,-9,6.666666666666667,3,4,1,0,4,8,1,0,206,-122000.67,0,0,0,0,0,68.303322 +11664,14235,25427,-9,25426,-9,1,1,30,0,0,0,1,1,-9,0,3,8.7845011,8.9028587,0,0,0,-950.73322,0,3,-9,2021,17,6,52,40,1,6,1,15.089466,15.089466,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.95,49.42,-9,-9,3.333333333333333,3,4,0,0,7,8,5,0,1908,220651.63,34118.48,268698.19,118587.23,0,0,2338.1106 +11665,14236,25428,25429,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.17522,8.1829672,6.7999539,7,18,-9.6399221,0,3,3,2021,10,0,24,24,1,0,0,6.54741,6.54741,0,0,0,0,0,0,0,0,1,1,0,7.155715,7.0798922,59.99,44.01,62.42,32.41,8.333333333333334,1,1,0,0,9,7,4,0,242.5,992781.69,596056.63,206216.7,0,0,0,2558.3369 +11665,14236,25429,25428,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.8265123,7.9445372,0,7,-18,51.74408,0,3,3,2021,8,0,38,38,1,0,0,8.7300777,8.7300777,0,0,0,0,0,0,0,0,1,1,0,0,0,62.42,32.41,59.99,44.01,5,1,1,0,0,9,7,4,0,242.5,992781.69,596056.63,206216.7,0,0,0,2558.3369 +11666,14237,25430,-9,25433,25431,1,1,15,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1046.3663,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,45,-9,-9,5,1,1,-9,0,0,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11666,14237,25431,25433,-9,-9,1,1,50,0,2,0,2,2,-9,0,2,8.2051048,8.4149075,0,22,0,146.4697,0,2,2,2021,14,2,48,46,1,2,0,9.8889437,9.8889437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.56,37.03,35.47,65.17,5,1,1,0,0,14,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11666,14237,25432,-9,25433,25431,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.4083,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11666,14237,25433,25431,-9,-9,1,0,50,0,2,0,2,2,-9,0,5,7.7217083,7.602541,0,23,0,79.40448,0,2,1,2021,25,12,20,21,1,12,0,12.208133,12.208133,0,0,0,0,0,0,0,0,1,1,0,0,0,35.47,65.17,46.56,37.03,3.333333333333333,1,1,0,0,14,7,4,1,923,2419210,487905.25,380759.69,0,0,0,2843.5354 +11667,14238,25434,25436,-9,-9,1,0,41,0,3,0,1,1,-9,0,3,4.2448373,4.1594567,0,9,-1,51.142063,0,1,2,2021,13,1,15,0,1,1,0,.55440724,.55440724,.05,.05,0,0,0,0,0,0,0,0,0,1.8527784,0,53.14,45.74,51.83,57.2,8.333333333333334,1,1,0,0,5,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25435,-9,25434,25436,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1033.4379,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25436,25434,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.4938288,9.2200727,0,9,1,32.164837,0,1,1,2021,9,1,85,42,1,1,0,13.599008,13.599008,.05,.05,0,0,0,0,0,0,0,0,0,4.9578462,0,51.83,57.2,53.14,45.74,6.666666666666667,1,1,0,0,10,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25437,-9,25434,25436,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1010.9741,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11667,14238,25438,-9,25434,25436,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.05579,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,5,1,398,335942.44,111568.24,214732.33,54650.246,15812.12,-88.934296,4029.8816 +11668,14239,25439,-9,25440,25442,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-864.37848,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11668,14239,25440,25442,-9,-9,1,0,36,1,2,0,2,2,-9,0,3,0,0,0,11,0,-16.143219,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,51,56,5,1,1,0,0,3,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11668,14239,25441,-9,25440,25442,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-950.69043,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11668,14239,25442,25440,-9,-9,1,1,36,1,2,0,3,3,-9,0,4,7.2353463,7.1724186,0,6,0,-105.37047,0,-9,-9,2021,10,0,25,25,1,1,0,6.1589198,6.1589198,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,52,54.51,7,1,1,0,0,1,9,2,0,474.75,38164.813,9678.2461,0,0,0,0,1655.8776 +11669,14240,25443,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.7080312,7.687099,0,0,-836.66144,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6506763,7.982408,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,612,899752,295732.72,121475.31,0,0,0,2301.387 +11670,14241,25444,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,1,0,0,0,0,0,-881.79816,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,1.573005,6.8317528,29.717731,0,1,1,0,0,0,33.39,30.9,-9,-9,8.333333333333334,1,1,0,1,0,1,2,0,829,29588.227,0,0,0,0,173.89006,1845.9744 +11671,14242,25445,25446,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,8,2,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,46.33,29.14,7,1,1,0,0,0,12,1,1,1436,-176876.63,0,0,0,-734.45355,49.787689,1595.905 +11671,14242,25446,25445,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,47,-2,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,34.785011,0,0,1,1,0,2.6188903,0,46.33,29.14,52,47,5,1,1,0,0,0,12,1,1,1436,-176876.63,0,0,0,-734.45355,49.787689,1595.905 +11672,14243,25447,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9039478,7.9547462,0,0,0,-1000.1928,0,-9,2,2021,6,0,55,60,1,0,0,5.3119359,5.3119359,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,14,9,3,0,1546,188591.98,190179.89,0,0,0,0,1448.8007 +11673,14244,25448,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.6305757,8.1422281,0,0,0,-978.38135,0,2,3,2021,19,8,60,50,1,8,0,4.2111197,4.2111197,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.29,41.01,-9,-9,5,1,1,0,0,12,5,3,1,525,12180.158,26527.67,0,0,0,0,1022.9547 +11674,14245,25449,-9,25451,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.76331,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,381.33334,-126734.75,0,0,0,0,826.34875,2090.9834 +11674,14245,25450,-9,25451,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.27002,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,381.33334,-126734.75,0,0,0,0,826.34875,2090.9834 +11674,14245,25451,-9,-9,-9,1,0,27,0,2,0,3,3,-9,1,1,0,6.5863528,6.7085409,0,0,-954.87964,0,-9,-9,2021,11,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5076571,0,48.09,31.3,-9,-9,3.333333333333333,1,1,0,0,4,4,2,0,381.33334,-126734.75,0,0,0,0,826.34875,2090.9834 +11675,14246,25452,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.7518,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.12,33.53,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,326,-43511.457,0,0,0,0,0,1060.1823 +11676,14247,25453,25454,-9,-9,1,1,61,1,5,0,3,3,-9,0,3,8.2032776,8.4378405,0,9,5,108.86004,0,-9,-9,2021,10,0,40,0,1,1,0,8.2371197,8.2371197,0,0,.05,0,0,0,0,0,1,1,0,0,0,51,49,38.2,31.47,7,2,3,0,0,9,5,2,1,296,1255594.4,193133.27,433130.94,16134.265,0,0,1562.569 +11676,14247,25454,25453,-9,-9,1,0,56,1,5,0,3,3,-9,1,1,0,0,0,9,-5,-86.506897,-9,2,2,2021,19,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.2,31.47,51,49,1.666666666666667,2,3,0,0,0,5,2,1,296,1255594.4,193133.27,433130.94,16134.265,0,0,1562.569 +11676,14248,25455,-9,25454,25453,1,1,26,1,5,0,1,1,-9,0,4,8.0728931,7.964314,0,0,0,-956.50262,-9,3,3,2021,10,0,40,0,1,1,1,6.9579601,6.9579601,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,9,5,4,1,1159,98525.75,0,137523.73,43560.309,0,0,1399.4265 +11676,14249,25456,-9,25454,25453,1,1,31,1,5,0,2,2,-9,0,4,0,0,0,0,0,-943.22699,-9,3,3,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,5,5,1,1,273,-51379.262,0,0,0,0,0,0 +11676,14250,25457,25459,-9,-9,1,1,35,1,5,0,1,1,-9,0,4,8.3526354,8.6258698,0,7,3,205.22989,0,-9,-9,2021,10,0,35,36,1,1,0,17.75421,17.75421,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,60.12,54.8,7,2,3,0,0,6,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25458,-9,25459,25457,1,0,4,1,5,1,3,0,-9,0,4,0,0,0,0,0,-966.23511,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25459,25457,25454,25453,1,0,32,1,5,0,1,1,-9,0,4,0,0,0,7,-3,-60.881641,-9,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,50,57,8.333333333333334,2,3,0,0,3,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25460,-9,25459,25457,1,1,6,1,5,1,3,0,-9,0,4,0,0,0,0,0,-945.81757,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25461,-9,25459,25457,1,1,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-972.70239,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25462,-9,25459,25457,1,1,2,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1027.2906,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11676,14250,25463,-9,25459,25457,1,0,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1086.1536,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,806.42859,-14054.37,0,0,0,0,0,3647.2588 +11677,14251,25464,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.3948302,7.2816858,0,0,-1116.3981,0,2,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0819359,7.4539285,50.44,37.79,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,1682,1117867.6,211168.86,237542.05,0,0,0,1908.4332 +11678,14252,25465,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.5696678,9.4531612,0,0,0,-1036.506,0,2,3,2021,16,3,60,60,1,3,0,29.38238,29.38238,0,0,.05,0,0,0,0,0,0,0,0,0,0,44.66,43.48,-9,-9,6.666666666666667,1,1,0,0,5,8,5,1,187,990166.5,483017.03,171909.17,0,0,0,4563.188 +11679,14253,25466,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,7.1520658,7.4327221,0,0,-963.73578,0,3,-9,2021,17,0,0,0,4,5,0,0,0,0,0,0,1,0,0,0,2,1,1,0,.71741086,7.163137,31.37,36.1,-9,-9,3.333333333333333,1,1,0,0,0,6,3,1,2519,349778.16,292923.22,105433.09,0,0,0,1961.501 +11680,14254,25467,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.0747185,8.3450165,0,0,0,-1080.9968,0,1,2,2021,10,0,48,38,1,0,0,7.0485067,7.0485067,.05,.05,0,0,0,0,0,0,0,0,0,.56431758,0,47.64,55.02,-9,-9,6.666666666666667,1,1,0,0,10,4,4,1,138,210597.2,82540.586,0,0,7807.3457,0,1395.3116 +11681,14255,25468,25469,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.689177,7.8144093,0,22,-11,-36.774822,0,3,3,2021,8,0,30,60,1,0,0,13.229386,13.229386,0,0,0,0,0,0,0,2,0,0,0,0,0,62.4,48.33,54.37,54.8,5,1,1,0,0,15,11,3,1,600,1602677,483230.31,575967.13,0,0,0,1132.165 +11681,14255,25469,25468,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,0,0,22,11,-32.308994,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,.05,0,0,0,0,2,0,0,0,0,0,54.37,54.8,62.4,48.33,5,1,1,0,0,0,11,3,1,600,1602677,483230.31,575967.13,0,0,0,1132.165 +11682,14256,25470,25471,-9,-9,1,0,73,0,0,0,2,2,-9,0,5,0,7.464076,7.3795328,48,0,86.449532,0,-9,-9,2021,27,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.63205,7.5622611,14.57,71.85000000000001,42.21,40.98,6.666666666666667,1,1,0,0,0,8,5,1,792.5,3319295.5,582781,1681005.5,0,0,0,4355.4141 +11682,14256,25471,25470,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.9020205,8.3988571,48,0,65.479134,0,3,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3475819,9.2458849,42.21,40.98,14.57,71.85000000000001,3.333333333333333,4,5,0,0,0,8,5,1,792.5,3319295.5,582781,1681005.5,0,0,0,4355.4141 +11683,14257,25472,-9,25473,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.75635,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,570,-95668.75,0,0,0,0,0,347.54959 +11683,14257,25473,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,3,7.0794325,6.654994,0,0,0,-971.94537,-9,2,2,2021,15,3,16,0,1,3,0,6.1495686,6.1495686,0,0,0,0,0,0,0,0,1,1,0,0,0,47.32,47.16,-9,-9,5,1,1,0,1,1,2,2,0,570,-95668.75,0,0,0,0,0,347.54959 +11684,14258,25474,25475,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.3943186,9.2309828,0,35,1,-29.156111,0,2,3,2021,6,0,37,40,1,0,0,33.630039,33.630039,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.14,46.97,25.65,50.6,8.333333333333334,1,1,0,0,13,9,5,1,765.5,131953.09,8569.3789,0,0,0,2275.092,7187.8413 +11684,14258,25475,25474,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,8.9058981,8.9454708,0,35,-1,81.893204,0,3,3,2021,16,4,39,37,1,4,0,23.590405,23.590405,.05,.05,0,0,0,0,0,0,0,0,0,2.7455659,0,25.65,50.6,59.14,46.97,5,1,1,0,0,11,9,5,1,765.5,131953.09,8569.3789,0,0,0,2275.092,7187.8413 +11684,14259,25476,-9,25475,25474,1,0,22,0,0,0,2,2,-9,0,4,7.7363601,7.3848834,0,0,0,-1002.3611,0,3,2,2021,12,0,38,48,1,0,1,6.9362712,6.9362712,.05,.05,0,0,0,0,0,0,0,0,0,3.7447977,0,37.98,52.88,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,624,133572.42,76146.531,0,0,0,0,953.63336 +11685,14260,25477,25478,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,7.7886176,8.3584032,6.3618903,43,2,48.942276,0,2,2,2021,20,7,40,30,1,7,0,6.8721056,6.8721056,0,0,0,0,0,0,0,0,1,1,0,0,6.8067207,41.01,46.57,33.9,19.97,6.666666666666667,1,1,0,0,5,11,3,0,502,165244.39,64190.445,0,0,0,0,1923.3167 +11685,14260,25478,25477,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,43,-2,57.058537,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,.041779466,0,1,1,0,0,0,33.9,19.97,41.01,46.57,8.333333333333334,1,1,0,0,0,11,3,0,502,165244.39,64190.445,0,0,0,0,1923.3167 +11686,14261,25479,-9,25480,-9,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.57495,-9,2,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.07,59.39,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,582.66669,0,0,0,0,0,0,996.15948 +11686,14261,25480,-9,-9,-9,1,0,37,0,2,0,2,2,-9,1,2,0,0,0,0,0,-946.83136,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.66,35.81,-9,-9,1.666666666666667,1,1,0,0,0,2,1,0,582.66669,0,0,0,0,0,0,996.15948 +11686,14261,25481,-9,25480,-9,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.3784,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,1,0,582.66669,0,0,0,0,0,0,996.15948 +11687,14262,25482,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.0820875,8.7688093,0,0,0,-974.4422,0,2,2,2021,6,0,38,39,1,0,0,17.633207,17.633207,.05,.05,0,0,0,0,0,0,1,1,0,2.7417965,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,7,5,0,182,97357.32,37719.531,66237.836,67335.461,5165.0151,3619.5432,3077.1135 +11688,14263,25483,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.5293598,6.313581,0,0,-849.76868,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,3.0267565,22.141785,22.188093,0,1,1,0,2.0007946,6.4365077,43.53,26.39,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,2202,98309.953,123996.07,0,0,0,0,1701.2798 +11689,14264,25484,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0928502,7.4983354,0,0,-1108.0819,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3125424,7.2644939,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,340,475366.25,446619.78,0,0,0,0,1345.5498 +11690,14265,25485,-9,25487,-9,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-986.43439,-9,2,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.48,54.06,-9,-9,10,1,1,0,0,0,11,4,1,1380,1118645,983227.13,125574.09,11347.128,0,0,3017.4402 +11690,14265,25486,25487,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7896395,8.7451687,0,3,1,33.488636,0,3,3,2021,7,0,76,48,1,0,0,10.06567,10.06567,.05,.05,0,0,0,0,0,0,1,1,0,5.5527325,0,57.33,53.46,40.88,49.19,8.333333333333334,1,1,0,0,5,11,4,1,1380,1118645,983227.13,125574.09,11347.128,0,0,3017.4402 +11690,14265,25487,25486,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,3,-1,-138.26741,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.88,49.19,57.33,53.46,6.666666666666667,1,1,1,0,0,11,4,1,1380,1118645,983227.13,125574.09,11347.128,0,0,3017.4402 +11691,14266,25488,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1075.2506,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.14,34.48,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,694,0,0,0,0,0,0,1074.9009 +11692,14267,25489,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,6.7621222,6.5357556,0,0,-1017.0432,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.8871035,0,0,1,1,0,0,6.9791994,65.52,21.33,-9,-9,10,1,1,0,0,0,13,2,1,258,238135.52,106189.03,17126.211,0,0,0,2236.498 +11693,14268,25490,25491,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,8,-2,-.0072440379,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,.51138955,0,0,1,1,0,1.2118016,0,38,35.06,33.21,55.18,5,1,1,0,0,0,13,3,1,363,127591.55,210251.03,113610.02,0,10821.998,0,2392.228 +11693,14268,25491,25490,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,8.2212067,7.7682958,8,2,-42.048775,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7820225,33.21,55.18,38,35.06,6.666666666666667,1,1,0,0,0,13,3,1,363,127591.55,210251.03,113610.02,0,10821.998,0,2392.228 +11694,14269,25492,25493,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,9.9256983,9.4112463,50,3,136.09422,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6671791,9.733428,44.74,39.07,49.83,52.99,8.333333333333334,1,1,0,0,0,9,5,1,613,12935292,2054371,938863.88,0,0,0,10024.839 +11694,14269,25493,25492,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,0,0,50,-3,-88.480225,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.092947,0,49.83,52.99,44.74,39.07,3.333333333333333,1,1,0,0,0,9,5,1,613,12935292,2054371,938863.88,0,0,0,10024.839 +11695,14270,25494,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.6916723,8.5294046,4.3688903,0,0,-971.93378,0,2,3,2021,8,1,37,0,1,1,0,13.268594,13.268594,.05,.05,0,0,0,0,0,0,0,0,0,8.6957359,0,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,14,4,5,1,561,331434.13,318233.97,102843.48,40348.539,9210.0791,0,2306.8101 +11696,14271,25495,-9,-9,-9,1,1,49,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1020.6545,0,-9,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.9,32.76,-9,-9,0,1,1,1,1,0,1,2,0,4020,0,0,0,0,0,0,361.4996 +11697,14272,25496,25498,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9570646,8.6814308,0,11,6,-46.288902,-9,1,1,2021,12,0,41,0,1,0,0,18.832617,18.832617,.05,.05,0,0,0,0,0,0,1,1,0,.62781465,0,40.25,56.9,48.04,53.42,6.666666666666667,1,1,0,0,13,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11697,14272,25497,-9,25498,25496,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.2162,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11697,14272,25498,25496,-9,-9,1,0,35,0,2,0,1,1,-9,0,4,8.0182924,8.0203276,0,11,-6,94.167747,0,2,2,2021,11,0,25,30,1,0,0,11.252361,11.252361,.05,.05,0,0,0,0,0,0,1,1,0,2.0362587,0,48.04,53.42,40.25,56.9,8.333333333333334,1,1,0,0,9,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11697,14272,25499,-9,25498,25496,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.99329,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,571.75,520105.16,133023.63,414146.63,111763.8,0,0,3676.5313 +11698,14273,25500,25501,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,4.1369743,4.5019908,18,-5,21.371124,0,2,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6623347,4.6427832,34.51,57.34,54.79,55.86,8.333333333333334,1,1,0,0,8,12,2,1,898,1044709.3,232285.06,272465.22,0,0,0,1084.4352 +11698,14273,25501,25500,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.9436746,6.6465178,16,5,-22.99267,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6946633,6.8198929,54.79,55.86,34.51,57.34,8.333333333333334,1,1,0,0,10,12,2,1,898,1044709.3,232285.06,272465.22,0,0,0,1084.4352 +11699,14274,25502,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1167.7058,0,2,2,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.65,34.66,-9,-9,0,1,1,0,0,0,4,1,0,209,43002.328,0,0,0,0,0,1172.7245 +11700,14275,25503,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1974211,7.9785166,0,0,0,-1016.4403,0,2,2,2021,13,4,40,43,1,4,0,7.923162,7.923162,0,0,0,0,0,0,0,0,1,1,0,0,0,47.61,53.7,-9,-9,8.333333333333334,1,1,0,0,7,6,4,0,1740,199285.67,255933.17,197589.41,116059.76,0,0,1170.2433 +11701,14276,25504,25505,-9,-9,1,0,47,0,1,0,2,2,-9,0,3,9.0595112,8.942523,0,10,-2,39.972576,0,2,2,2021,11,3,37,42,1,3,0,26.492374,26.492374,.05,.05,0,0,0,0,0,0,1,1,0,7.9842477,0,43.65,58.28,49.04,55.86,8.333333333333334,1,1,0,0,12,11,5,1,1315,989602.56,889081.5,187684.53,140806.58,2935.6772,0,6150.7109 +11701,14276,25505,25504,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,9.2446995,9.0516748,0,10,2,27.636702,0,3,2,2021,10,0,52,48,1,0,0,23.589706,23.589706,.05,.05,0,0,0,0,0,0,1,1,0,3.2820396,0,49.04,55.86,43.65,58.28,8.333333333333334,1,1,0,0,12,11,5,1,1315,989602.56,889081.5,187684.53,140806.58,2935.6772,0,6150.7109 +11702,14277,25506,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-902.633,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.52,42.41,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,386,-25225.418,0,0,0,0,0,376.84241 +11703,14278,25507,25508,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.7475309,6.0955186,7,-7,-24.013132,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1502991,6.2380524,57.46,47.78,66.84999999999999,24.44,8.333333333333334,1,1,0,0,0,10,2,1,843.5,737413.75,157186.53,413010,0,29128.477,0,4427.2217 +11703,14278,25508,25507,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.9860034,6.7815027,50,7,-20.334688,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9426894,6.7071524,66.84999999999999,24.44,57.46,47.78,10,1,1,0,0,0,10,2,1,843.5,737413.75,157186.53,413010,0,29128.477,0,4427.2217 +11704,14279,25509,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.0279665,5.5611539,0,0,-1114.3796,0,3,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6554728,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,10,9,2,0,824,419946.34,-62899.73,291403.56,0,0,0,-134.24001 +11705,14280,25510,25512,-9,-9,1,0,42,0,3,0,2,2,-9,0,4,7.4104238,7.8588881,6.3934259,12,11,-68.424911,0,-9,-9,2021,8,0,25,20,1,0,0,5.7453833,5.7453833,.05,.05,0,0,0,0,0,0,1,1,0,6.2896705,0,40.08,55.57,48,58,10,1,1,0,0,11,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25511,-9,25510,25512,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1006.6315,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25512,25510,-9,-9,1,1,31,0,3,0,2,2,-9,0,4,8.8361559,8.8027096,0,12,-11,-5.3965821,0,2,3,2021,10,0,1,43,1,1,0,848.98456,848.98456,.05,.05,0,0,0,0,0,0,1,1,0,2.142091,0,48,58,40.08,55.57,7,1,1,0,0,14,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25513,-9,25510,25512,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1134.0753,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11705,14280,25514,-9,25510,25512,1,0,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-999.32446,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,4,1,604.20001,241015.66,88007.922,122835.24,86731.875,8698.5146,0,3702.9395 +11706,14281,25515,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0753698,8.6784306,7.4493313,0,0,-1064.6265,0,2,2,2021,7,1,18,18,1,1,0,20.674269,20.674269,0,0,0,0,0,0,0,42,0,0,0,0,7.2897668,59.22,37.52,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,1038,-204533.77,0,0,0,0,1223.1383,2698.4026 +11707,14282,25516,25517,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.2446299,9.4165735,0,21,-1,42.047901,0,-9,-9,2021,5,0,40,42,1,0,0,25.323259,25.323259,.05,.05,0,0,0,0,0,0,0,0,0,8.893939,0,59.33,51.29,54.1,59.11,8.333333333333334,1,1,0,0,11,9,5,1,3203.5,3751126.5,2377077,953009.13,0,0,0,7732.9238 +11707,14282,25517,25516,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,0,8.0105505,8.0703192,21,1,-51.271755,-9,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.3198404,7.6683068,54.1,59.11,59.33,51.29,8.333333333333334,1,1,0,0,11,9,5,1,3203.5,3751126.5,2377077,953009.13,0,0,0,7732.9238 +11708,14283,25518,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,7.6366444,7.7975912,0,0,-1088.0317,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5782065,7.5889649,49.25,61.25,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1860,1106615.9,361866,357473.25,0,2703.9517,0,2236.9636 +11709,14284,25519,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.8010674,8.5382872,0,0,0,-1103.3668,0,2,2,2021,12,0,40,40,1,0,0,18.452463,18.452463,0,0,0,0,0,0,0,0,0,0,0,0,0,42.83,57.26,-9,-9,5,4,5,0,0,3,8,5,0,1099,401.00323,0,0,0,0,0,2854.4915 +11710,14285,25520,25521,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.6981344,8.4648457,0,24,-4,68.413452,0,2,2,2021,13,1,37,37,1,1,0,16.592031,16.592031,.05,.05,0,0,0,0,0,2,1,1,0,0,0,37.38,54.63,39.32,35.87,6.666666666666667,1,1,0,0,11,9,4,1,1337,411205.31,152780.75,265398.13,174911.19,0,0,2862.7693 +11710,14285,25521,25520,-9,-9,1,0,53,0,0,0,3,3,-9,1,3,0,0,0,24,4,-5.1169019,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.32,35.87,37.38,54.63,6.666666666666667,1,1,0,0,6,9,4,1,1337,411205.31,152780.75,265398.13,174911.19,0,0,2862.7693 +11711,14286,25522,25523,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,7.9596233,8.1924057,11,-4,-207.89474,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.7365708,55.93,49.95,61.28,35.65,8.333333333333334,1,1,0,0,4,13,4,1,1041,846648.44,439359.03,255606.2,29066.969,0,0,2857.5659 +11711,14286,25523,25522,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.8836598,7.5345016,11,4,41.945091,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6511526,61.28,35.65,55.93,49.95,8.333333333333334,1,1,0,0,3,13,4,1,1041,846648.44,439359.03,255606.2,29066.969,0,0,2857.5659 +11712,14287,25524,25525,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.5161457,7.7932177,40,9,-22.848099,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.81958616,7.8052859,57.87,47.65,54.2,57.49,5,1,1,0,0,8,2,3,1,849.5,1126468.8,581354.88,204298.5,0,0,0,1674.1755 +11712,14287,25525,25524,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,39,0,-36.546139,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7284383,0,54.2,57.49,57.87,47.65,8.333333333333334,1,1,0,0,4,2,3,1,849.5,1126468.8,581354.88,204298.5,0,0,0,1674.1755 +11713,14288,25526,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.5639949,7.4611845,0,0,0,-958.52411,0,-9,-9,2021,12,0,29,29,1,0,0,10.755831,10.755831,0,0,0,0,0,0,0,2,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,1150,0,0,0,0,0,0,1122.3605 +11714,14289,25527,-9,-9,-9,1,0,44,0,3,0,2,2,-9,0,4,6.7240615,6.6214375,5.7650514,0,0,-968.76398,0,3,3,2021,21,9,5,20,1,9,0,16.036081,16.036081,0,0,0,0,0,0,0,2,1,1,0,5.8132944,0,42.62,57.19,-9,-9,8.333333333333334,1,1,0,0,13,10,2,0,1668,84348.133,0,0,0,0,1319.8589,2507.5718 +11714,14289,25528,-9,25527,-9,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-959.76349,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,2,0,1668,84348.133,0,0,0,0,1319.8589,2507.5718 +11714,14289,25529,-9,25527,-9,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-989.34711,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1668,84348.133,0,0,0,0,1319.8589,2507.5718 +11715,14290,25530,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,5.6366062,5.5364447,0,0,-1193.6084,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4284434,57.65,56.13,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,472,171909.58,137649.17,119515.17,0,0,0,405.5806 +11716,14291,25531,25532,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,9.8131409,9.7962675,0,9,2,127.64706,0,-9,-9,2021,12,2,33,37,1,2,0,45.62553,45.62553,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.81,54.55,58.32,50.22,8.333333333333334,1,1,0,0,11,9,5,1,991.5,142134.02,120588.17,0,0,17896.09,9883.6045,5227.6323 +11716,14291,25532,25531,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.0593371,7.1429415,0,9,-2,20.209583,0,2,2,2021,5,0,44,40,1,0,0,2.5411313,2.5411313,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,57.81,54.55,8.333333333333334,1,1,0,0,9,9,5,1,991.5,142134.02,120588.17,0,0,17896.09,9883.6045,5227.6323 +11717,14292,25533,-9,-9,-9,1,0,21,0,0,1,1,0,-9,0,5,0,0,0,0,0,-919.02527,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,427,-56387.754,0,0,0,0,0,0 +11718,14293,25534,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,7.7311645,6.9574556,0,0,-976.11505,0,3,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,72.803375,0,0,1,1,0,0,7.4730473,53,44,-9,-9,8,1,1,0,0,0,8,3,0,527,285823.84,238351.77,0,0,0,0,1519.8135 +11719,14294,25535,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1064.4196,0,3,3,2021,6,0,0,50,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,13,9,1,1,191,11834.308,0,0,0,0,0,-152.19879 +11720,14295,25536,25537,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,9.1739712,8.9405832,28,7,80.350449,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.5265303,8.6592188,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,9,4,5,1,962,3572420,2354213.5,184095.95,0,0,0,5550.3525 +11720,14295,25537,25536,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,0,0,0,12,-7,87.702553,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6744204,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,0,4,5,1,962,3572420,2354213.5,184095.95,0,0,0,5550.3525 +11721,14296,25538,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1060.4116,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2302232,0,41.2,59.37,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,315,-324603.84,0,0,0,0,0,637.54938 +11722,14297,25539,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,7.1034508,7.2500906,0,0,-922.47406,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2788892,61.28,28.21,-9,-9,8.333333333333334,3,4,0,0,2,8,3,0,343,515383.41,163571.77,335879.25,0,0,0,1737.939 +11723,14298,25540,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,9.038147,8.9324408,0,0,0,-944.57727,0,2,1,2021,32,11,55,55,1,11,0,22.765366,22.765366,0,0,0,0,0,0,0,0,0,0,0,2.8100944,0,23.21,60.15,-9,-9,1.666666666666667,1,1,0,0,9,1,5,1,143,315689.19,87487.32,201922.83,83573.352,946.88531,740.50159,1806.6757 +11724,14299,25541,25542,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.43501,8.2126474,0,2,-3,-151.71976,-9,-9,-9,2021,26,11,48,0,1,11,0,11.885434,11.885434,0,0,0,0,0,0,0,0,0,0,0,0,0,31.63,39.79,48.48,49.45,5,1,1,0,0,1,7,5,1,249.5,313470.66,-20550.219,474173.75,166207.02,0,0,4225.0498 +11724,14299,25542,25541,-9,-9,1,1,35,0,0,0,1,1,-9,0,3,8.7038612,8.7206392,0,2,3,85.093307,0,2,3,2021,8,1,43,43,1,1,0,17.151262,17.151262,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,48.48,49.45,31.63,39.79,6.666666666666667,1,1,0,0,9,7,5,1,249.5,313470.66,-20550.219,474173.75,166207.02,0,0,4225.0498 +11725,14300,25543,25544,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,8.9761353,8.9225798,0,6,4,111.48032,0,-9,-9,2021,11,0,41,45,1,0,0,29.648476,29.648476,.05,.05,.05,0,0,0,0,0,0,0,0,6.4765644,0,48.45,57.49,48.87,58.55,8.333333333333334,1,1,0,0,2,11,5,1,1158,444439.5,292090.59,167076.09,74646.141,2539.1279,0,6385.6016 +11725,14300,25544,25543,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,8.866065,8.9934855,0,16,-4,-.83070934,0,2,2,2021,8,0,44,39,1,0,0,25.913124,25.913124,.05,.05,.05,0,0,0,0,0,0,0,0,4.147779,0,48.87,58.55,48.45,57.49,8.333333333333334,1,1,0,0,9,11,5,1,1158,444439.5,292090.59,167076.09,74646.141,2539.1279,0,6385.6016 +11726,14301,25545,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.6255035,8.8547516,0,0,0,-962.26709,0,1,1,2021,8,1,45,87,1,1,0,14.378932,14.378932,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,8,5,0,96,-74125.75,-100557.14,0,0,0,0,949.36029 +11727,14302,25546,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-977.50305,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,1.3143675,0,0,1,1,0,0,0,50,47,-9,-9,7,1,1,0,0,0,6,1,0,201,130802.03,0,181760.75,0,0,1246.3383,1060.6777 +11728,14303,25547,25548,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.5544806,7.6881924,0,8,2,29.646702,0,2,2,2021,7,0,30,30,1,0,0,6.2800798,6.2800798,.05,.05,.05,0,0,0,0,0,0,0,0,8.237731,0,54.15,48.02,56.33,43.15,8.333333333333334,1,1,0,0,9,9,3,1,1428.5,947086.75,263911.75,471867.5,0,0,0,2456.8401 +11728,14303,25548,25547,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.0767484,6.3615713,0,8,-2,137.72093,0,3,3,2021,13,2,60,40,1,2,0,.94990271,.94990271,.05,.05,.05,0,0,0,0,0,0,0,0,3.0593238,0,56.33,43.15,54.15,48.02,8.333333333333334,1,1,0,0,9,9,3,1,1428.5,947086.75,263911.75,471867.5,0,0,0,2456.8401 +11728,14304,25549,-9,25548,25547,1,1,25,0,0,0,2,2,-9,0,3,8.2135925,8.5201683,0,0,0,-1011.306,0,3,2,2021,12,0,30,35,1,0,1,19.109138,19.109138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,6,9,5,1,582,-26196.902,-113300.24,0,0,0,0,2765.2251 +11728,14305,25550,-9,25548,25547,1,1,24,0,0,0,2,2,-9,0,3,2.0836282,2.0525792,0,0,0,-1044.3323,0,3,2,2021,11,0,4,40,1,0,1,.19709864,.19709864,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,1079,129654.17,0,0,0,0,0,271.91998 +11729,14306,25551,-9,25552,25553,1,0,15,0,5,1,3,0,-9,0,3,0,0,0,0,0,-1060.0083,-9,3,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25552,25553,-9,-9,1,0,39,0,5,0,3,3,-9,0,3,0,0,0,18,-2,27.140713,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,34.73,60.05,28.88,45.41,6.666666666666667,2,3,0,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25553,25552,-9,-9,1,1,41,0,5,0,3,3,-9,0,2,7.4865537,7.1115322,0,18,2,9.171442,0,3,3,2021,29,9,24,24,1,9,0,8.9663773,8.9663773,0,0,.05,0,0,0,0,0,1,1,0,0,0,28.88,45.41,34.73,60.05,3.333333333333333,2,3,0,0,11,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25554,-9,25552,25553,1,0,14,0,5,1,3,0,-9,0,2,0,0,0,0,0,-1005.3746,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25555,-9,25552,25553,1,0,9,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1002.0748,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25556,-9,25552,25553,1,0,10,0,5,1,3,0,-9,0,5,0,0,0,0,0,-1149.6949,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14306,25557,-9,25552,25553,1,1,12,0,5,1,3,0,-9,0,4,0,0,0,0,0,-1080.167,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,2,2,0,2038.2858,411808.78,66355.367,295380.53,0,5141.6729,2465.2788,2852.1345 +11729,14307,25558,-9,25552,25553,1,0,20,0,5,0,2,2,-9,1,1,0,0,0,0,0,-905.9317,0,3,3,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.13,27.29,-9,-9,3.333333333333333,2,3,0,0,0,2,1,0,132,0,0,0,0,0,0,0 +11730,14308,25559,25560,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,7.4864101,7.2569504,50,0,2.6022842,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8274932,7.5162416,42.49,49.1,55.91,39.73,5,1,1,0,0,0,9,2,1,424.5,640302.75,249312.41,394458.19,0,0,0,3912.3164 +11730,14308,25560,25559,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,50,0,-26.445681,0,2,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.91,39.73,42.49,49.1,10,1,1,0,0,0,9,2,1,424.5,640302.75,249312.41,394458.19,0,0,0,3912.3164 +11731,14309,25561,25562,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,4.2827282,4.4194884,62,-2,-23.9921,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6033964,4.3768654,56.11,28.34,54.94,53.18,8.333333333333334,1,1,0,0,0,11,4,0,970.5,966509.13,503333.53,523939.75,0,0,0,3168.2837 +11731,14309,25562,25561,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,8.0058517,8.3988142,62,2,81.914429,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.651485,8.4238224,54.94,53.18,56.11,28.34,8.333333333333334,1,1,0,0,0,11,4,0,970.5,966509.13,503333.53,523939.75,0,0,0,3168.2837 +11732,14310,25563,25564,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,9.5332279,9.0358543,0,10,-4,146.80241,0,2,2,2021,0,0,60,60,1,0,0,21.254848,21.254848,.05,.05,0,0,0,0,0,27,0,0,0,0,0,62.39,56.71,54.37,54.8,0,1,1,0,0,11,4,5,1,2079,158682.94,38182.02,59365.809,12945.519,0,0,5740.8105 +11732,14310,25564,25563,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.8894072,7.7145734,0,10,4,17.466238,0,3,3,2021,10,2,36,24,1,2,0,11.0223,11.0223,0,0,0,0,0,0,0,27,0,0,0,0,0,54.37,54.8,62.39,56.71,1.666666666666667,1,1,0,0,11,4,5,1,2079,158682.94,38182.02,59365.809,12945.519,0,0,5740.8105 +11733,14311,25565,25566,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.3653631,6.6031957,37,2,-42.646759,-9,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8733659,52.82,35.57,54.27,22.7,6.666666666666667,1,1,0,0,5,11,2,1,149.5,689631.38,291853.25,140124.75,0,0,0,2097.5835 +11733,14311,25566,25565,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.1403151,5.0196638,37,-2,-158.9263,-9,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2448788,4.6877952,54.27,22.7,52.82,35.57,8.333333333333334,1,1,0,0,0,11,2,1,149.5,689631.38,291853.25,140124.75,0,0,0,2097.5835 +11734,14312,25567,-9,25572,-9,1,0,13,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1043.5171,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25568,-9,25572,-9,1,1,10,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1049.4285,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25569,-9,25572,-9,1,1,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-942.76672,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25570,-9,25572,-9,1,0,1,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1031.7744,-9,1,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,5.3118501,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25571,-9,25572,-9,1,1,15,2,5,1,3,0,-9,0,4,0,0,0,0,0,-907.38837,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11734,14312,25572,-9,-9,-9,1,0,35,2,5,0,1,1,-9,0,2,7.75037,8.0601845,0,0,0,-1071.783,0,1,3,2021,13,2,32,42,1,2,0,10.172678,10.172678,.05,.05,0,0,0,0,0,94,1,1,0,0,0,46.13,34.71,-9,-9,6.666666666666667,1,1,0,0,5,1,2,1,1938,48303.977,62388.078,0,0,0,0,2056.3315 +11735,14313,25573,-9,25574,25575,1,1,55,0,0,0,2,2,-9,0,3,8.3876896,8.0433369,0,0,0,-984.88263,-9,3,3,2021,10,0,38,0,1,1,0,12.846569,12.846569,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,-9,-9,7,1,1,0,0,1,11,4,1,790,274634.38,25034.514,0,0,0,0,2021.129 +11735,14314,25574,25575,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,8,-5,0,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0391755,0,52,45,40.72,44.92,8,4,1,0,0,0,11,1,1,1567.5,20218.094,49769.18,0,0,0,0,1156.1838 +11735,14314,25575,25574,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,8,5,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.72,44.92,52,45,8.333333333333334,1,1,0,0,0,11,1,1,1567.5,20218.094,49769.18,0,0,0,0,1156.1838 +11736,14315,25576,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,8.2942019,8.2514696,0,0,0,-938.73883,0,1,2,2021,4,0,36,38,1,0,0,12.777954,12.777954,0,0,0,0,0,0,0,2,0,0,0,0,0,48.96,60.26,-9,-9,8.333333333333334,1,1,0,0,12,8,4,1,626,72973.844,0,0,0,0,1177.8701,1526.059 +11737,14316,25577,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,5,0,7.1237435,6.8790207,0,0,-934.10364,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2637687,7.2895646,62.87,42.79,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,1208,411137.41,91195.789,296339.09,0,0,0,689.73651 +11738,14317,25578,-9,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,6.8356967,6.6528049,0,0,0,-970.99426,0,3,2,2021,12,0,17,15,1,2,0,5.9695101,5.9695101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,48.65,-9,-9,3.333333333333333,2,3,0,1,6,8,2,0,904.5,227720.34,61866.148,154138.19,53059.844,0,0,2885.1145 +11738,14317,25579,-9,25578,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1026.2188,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,904.5,227720.34,61866.148,154138.19,53059.844,0,0,2885.1145 +11738,14318,25580,-9,25578,-9,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1007.2396,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.08,57.81,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,587,78138.195,0,0,0,0,0,724.63763 +11739,14319,25581,25582,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7134156,6.7235975,11,6,-52.577057,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9611747,6.779952,39.89,44.99,41.99,49.8,8.333333333333334,1,1,0,0,3,4,2,1,423,575305.38,269382.38,188946.28,0,0,0,2637.0762 +11739,14319,25582,25581,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.7522078,6.1260357,11,-6,-130.10382,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0410616,6.302176,41.99,49.8,39.89,44.99,10,1,1,0,0,4,4,2,1,423,575305.38,269382.38,188946.28,0,0,0,2637.0762 +11740,14320,25583,25584,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.8447909,6.9455066,51,1,13.768056,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5118651,6.8081298,54.37,54.8,48.45,57.49,6.666666666666667,1,1,0,0,0,9,3,1,821.5,820028.25,263399.31,459383.75,0,0,0,2838.1626 +11740,14320,25584,25583,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,7.6618652,7.6985598,0,51,-1,40.15295,0,2,3,2021,14,1,27,27,1,1,0,9.1354399,9.1354399,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,54.37,54.8,8.333333333333334,1,1,0,0,9,9,3,1,821.5,820028.25,263399.31,459383.75,0,0,0,2838.1626 +11741,14321,25585,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.7125044,7.5637121,0,0,0,-1102.026,0,3,3,2021,5,0,31,31,1,0,0,8.7829256,8.7829256,.05,.05,0,0,0,0,0,0,1,0,1,4.7339377,0,52.4,31.65,-9,-9,6.666666666666667,1,1,0,0,10,4,3,1,372,85088.336,251105.47,111950.33,72788.016,0,0,161.56168 +11742,14322,25586,25587,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,6,0,-79.135834,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,.082281157,14.5,1,1,0,0,0,50.55,16.08,62.03,36.18,8.333333333333334,1,1,0,0,5,2,2,0,430,359973.25,262915.97,0,0,0,0,880.81494 +11742,14322,25587,25586,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,3.3879907,3.0385303,0,6,0,-6.2892809,0,3,3,2021,8,0,45,55,1,0,0,.080985613,.080985613,0,0,0,0,0,0,0,27,1,1,0,0,0,62.03,36.18,50.55,16.08,1.666666666666667,1,1,0,0,7,2,2,0,430,359973.25,262915.97,0,0,0,0,880.81494 +11743,14323,25588,25589,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,8.1723175,7.8914194,45,-4,43.703465,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.649334,8.1837816,52.57,52.89,54.23,31.64,8.333333333333334,1,1,0,0,0,6,5,1,518.5,1364977.9,717190.5,343739.38,0,0,2337.3403,5315.7754 +11743,14323,25589,25588,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.6603546,8.2387285,45,4,70.681847,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,6.8458338,8.4042768,54.23,31.64,52.57,52.89,8.333333333333334,1,1,0,0,13,6,5,1,518.5,1364977.9,717190.5,343739.38,0,0,2337.3403,5315.7754 +11744,14324,25590,25591,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,7.0209727,6.6997304,57,4,-37.29142,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7335305,48.45,57.49,58.15,52.91,8.333333333333334,1,1,0,0,0,1,2,1,615,532139.19,31470.902,299716.03,0,0,0,1434.9083 +11744,14324,25591,25590,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,3.2638485,3.1390727,57,-4,9.0044432,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,3.0521679,58.15,52.91,48.45,57.49,8.333333333333334,1,1,0,0,0,1,2,1,615,532139.19,31470.902,299716.03,0,0,0,1434.9083 +11745,14325,25592,25593,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.9888959,7.7086902,53,-4,-86.440453,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8972411,54.79,55.86,57.16,56.15,10,1,1,0,0,0,6,3,1,578,554155,372127.5,280924.34,0,0,0,3631.1191 +11745,14325,25593,25592,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.4494104,6.3967147,53,4,-8.4001398,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9393539,6.2130404,57.16,56.15,54.79,55.86,8.333333333333334,1,1,0,0,0,6,3,1,578,554155,372127.5,280924.34,0,0,0,3631.1191 +11746,14326,25594,-9,-9,-9,1,0,19,0,0,0,2,2,-9,0,3,8.4720659,8.0000753,0,0,0,-939.53796,0,-9,-9,2021,23,9,39,26,1,9,0,13.616448,13.616448,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.08,63.04,-9,-9,1.666666666666667,1,1,0,0,3,11,4,0,692,-74003.758,-87264.141,0,0,15505.502,0,1934.53 +11747,14327,25595,-9,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,8.0124893,7.9098425,0,2,3,49.097775,0,-9,-9,2021,24,9,38,35,1,9,0,8.593132,8.593132,0,0,.05,0,0,0,0,0,0,0,0,0,0,19.8,65.47,51,56,3.333333333333333,1,1,0,0,8,10,3,1,3587,726686.94,83130.617,579625.69,258507.45,0,0,1025.5026 +11748,14328,25596,25597,-9,-9,1,0,91,0,0,0,3,3,-9,0,5,0,0,0,68,-2,-51.064083,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1429143,0,57.06,57.76,55,45,10,1,1,0,0,0,10,3,1,173.5,425743.56,239860.56,265794.84,0,0,0,2741.2134 +11748,14328,25597,25596,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,7.7302971,7.7127962,68,2,46.622154,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.8024173,55,45,57.06,57.76,8,1,1,0,0,0,10,3,1,173.5,425743.56,239860.56,265794.84,0,0,0,2741.2134 +11749,14329,25598,25599,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.778625,7.8547115,0,1,0,-59.014931,-9,-9,-9,2021,12,3,45,0,1,3,0,6.3209791,6.3209791,0,0,0,0,0,0,0,0,0,0,0,0,0,27.27,55.14,54.45,56.22,3.333333333333333,1,1,0,0,0,9,4,0,912.5,83795.352,50054.352,140393.66,164229.22,0,0,3675.6626 +11749,14329,25599,25598,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.4106617,8.3015175,0,1,0,-99.2351,-9,2,1,2021,9,1,47,0,1,1,0,11.774222,11.774222,0,0,0,0,0,0,0,0,0,0,0,4.1180649,0,54.45,56.22,27.27,55.14,10,1,1,0,0,5,9,4,0,912.5,83795.352,50054.352,140393.66,164229.22,0,0,3675.6626 +11750,14330,25600,25602,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,9.0722561,9.0547915,0,19,-5,-186.23395,0,2,2,2021,24,12,50,45,1,12,0,17.669796,17.669796,.05,.05,0,0,0,0,0,0,0,0,0,4.3299084,0,22.89,60.29,54.2,57.49,3.333333333333333,1,1,0,0,7,9,5,1,1605.3334,1312317.3,670010.88,373023.5,273453.03,1813.3978,0,4654.6509 +11750,14330,25601,-9,25602,25600,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-909.83093,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1605.3334,1312317.3,670010.88,373023.5,273453.03,1813.3978,0,4654.6509 +11750,14330,25602,25600,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.7449689,7.7766647,0,19,5,49.155586,0,2,2,2021,9,1,18,18,1,1,0,13.789985,13.789985,.05,.05,0,0,0,0,0,0,0,0,0,7.4697037,0,54.2,57.49,22.89,60.29,8.333333333333334,1,1,0,0,1,9,5,1,1605.3334,1312317.3,670010.88,373023.5,273453.03,1813.3978,0,4654.6509 +11751,14331,25603,25604,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,8.7084599,8.9383125,0,8,17,57.657894,0,2,1,2021,6,0,45,38,1,0,0,16.108017,16.108017,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.19,49.37,52.31,58.29,5,1,1,0,0,8,4,5,1,760.5,1253050,982114.75,119021.55,0,0,0,2407.6475 +11751,14331,25604,25603,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,6.8843255,6.6843715,0,9,-17,133.4469,0,1,1,2021,7,0,25,16,1,0,0,4.9252677,4.9252677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,51.19,49.37,8.333333333333334,1,1,0,0,6,4,5,1,760.5,1253050,982114.75,119021.55,0,0,0,2407.6475 +11752,14332,25605,-9,25606,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-967.32123,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,1,1,1231,81925.281,0,0,0,3146.4875,534.95825,-66.434082 +11752,14332,25606,-9,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,0,0,0,0,0,-978.35632,0,3,3,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,32.28,31.38,-9,-9,1.666666666666667,2,3,1,1,0,4,1,1,1231,81925.281,0,0,0,3146.4875,534.95825,-66.434082 +11752,14333,25607,-9,25606,-9,1,0,24,0,1,0,2,2,-9,0,3,7.220233,7.1647067,0,0,0,-985.42358,0,2,-9,2021,15,4,57,62,1,4,1,2.9319234,2.9319234,.05,.05,0,0,0,0,0,42,1,0,1,0,0,42,54,-9,-9,6.666666666666667,2,3,0,0,5,4,3,1,1594,-177785.77,-19244.568,0,0,0,0,504.93341 +11752,14334,25608,-9,25606,-9,1,0,24,0,1,0,1,1,-9,0,3,7.34519,7.1382413,0,0,0,-987.50055,0,2,-9,2021,30,10,86,66,1,10,1,1.9775313,1.9775313,0,0,0,0,0,0,0,0,1,0,1,2.2462454,0,26.5,48.63,-9,-9,1.666666666666667,2,3,0,0,5,4,3,1,1183,48624.734,0,0,0,0,173.189,243.15007 +11753,14335,25609,-9,25610,25611,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.1039,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,1028,146214.03,-30889.18,319667.88,117361.11,18873.432,0,5661.4707 +11753,14335,25610,25611,-9,-9,1,0,29,1,1,0,1,1,-9,0,3,9.2937908,9.0603199,0,5,1,4.986197,0,-9,-9,2021,22,9,38,41,1,9,0,31.128067,31.128067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.47,60.56,35.15,61.1,6.666666666666667,1,1,0,0,4,2,5,1,1028,146214.03,-30889.18,319667.88,117361.11,18873.432,0,5661.4707 +11753,14335,25611,25610,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.4276028,8.4694738,0,5,-1,-129.2562,0,-9,-9,2021,17,5,38,41,1,5,0,12.544695,12.544695,.05,.05,0,0,0,0,0,0,1,1,0,2.4348667,0,35.15,61.1,30.47,60.56,8.333333333333334,1,1,0,0,7,2,5,1,1028,146214.03,-30889.18,319667.88,117361.11,18873.432,0,5661.4707 +11754,14336,25612,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,9.2375345,9.5489368,0,0,0,-893.62616,0,2,2,2021,9,0,7,48,1,0,0,136.6649,136.6649,0,0,0,0,0,0,0,0,0,0,0,0,0,46.21,55.82,-9,-9,6.666666666666667,1,1,0,0,6,8,5,0,2023,1485548.1,604206.63,569587.31,0,0,0,2850.0403 +11755,14337,25613,25614,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.6998367,8.5853338,0,29,-10,-8.8756905,0,3,3,2021,16,4,50,40,1,4,0,15.131584,15.131584,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,68.35000000000001,18.65,8.333333333333334,1,1,0,0,14,13,5,1,2671,1979500.5,1536487.5,229067,0,0,0,4417.9619 +11755,14337,25614,25613,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,8.2439213,8.1159496,0,27,10,134.6528,0,2,2,2021,14,3,24,22,1,3,0,17.811136,17.811136,0,0,0,1,4.2281919,11.324675,50.905964,0,1,1,0,0,0,68.35000000000001,18.65,52,54.51,8.333333333333334,1,1,0,0,14,13,5,1,2671,1979500.5,1536487.5,229067,0,0,0,4417.9619 +11756,14338,25615,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,6.6708717,6.3636646,0,1,4,-41.706276,0,1,1,2021,13,1,4,30,1,1,0,17.614122,17.614122,0,0,0,0,0,0,0,0,0,0,0,0,0,31.91,61.11,48,59,5,1,1,0,0,12,13,2,1,189,-171869.34,0,0,0,3830.4473,0,374.06516 +11757,14339,25616,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,0,0,0,0,-977.07227,0,3,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,34.78,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1526,-99045.008,0,0,0,0,0,1857.5536 +11758,14340,25617,25620,-9,-9,1,1,46,0,2,0,1,1,-9,0,5,9.9404993,9.3848143,0,19,6,-43.13372,0,3,3,2021,8,0,42,40,1,0,0,40.356453,40.356453,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,48.87,58.55,8.333333333333334,1,1,0,0,11,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11758,14340,25618,-9,25620,25617,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.1228,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11758,14340,25619,-9,25620,25617,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.95685,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11758,14340,25620,25617,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,8.7790775,9.0609703,0,19,-6,-108.74112,0,2,2,2021,10,1,47,48,1,1,0,14.508506,14.508506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,51.14,60.45,8.333333333333334,1,1,0,0,11,6,5,1,856.25,1499692,1351519.8,399541.63,178138.41,0,6868.2964,6198.6377 +11759,14341,25621,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1033.2455,0,3,3,2021,21,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.9514305,0,35.2,48.71,-9,-9,3.333333333333333,1,1,0,0,7,7,2,1,1544,-24939.477,0,32300.363,0,0,0,408.03937 +11760,14342,25622,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.5790067,7.9063644,0,0,0,-1167.8883,0,3,2,2021,6,0,40,40,1,0,0,6.3823895,6.3823895,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,10,1,1,0,0,12,12,3,1,2651,24533.307,-8641.6582,0,0,0,0,344.20477 +11761,14343,25623,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,8.0824642,7.8388109,0,0,-958.68701,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9483008,8.4253454,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,12,4,1,363,1285512.3,350779.5,298229.66,0,0,0,2203.0476 +11762,14344,25624,25625,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.2003326,8.2944107,0,5,-1,194.23869,0,2,2,2021,15,3,37,38,1,3,0,9.9292364,9.9292364,0,0,0,0,0,0,0,0,0,0,0,0,0,27.61,57.58,57.33,53.46,6.666666666666667,1,1,0,0,7,13,5,1,898,142011.08,77673.875,118579.04,116332.75,17743.648,0,2699.9136 +11762,14344,25625,25624,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.3327332,8.3779993,0,5,1,51.041561,-9,-9,-9,2021,6,0,52,0,1,0,0,8.9964218,8.9964218,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,27.61,57.58,8.333333333333334,1,1,0,0,9,13,5,1,898,142011.08,77673.875,118579.04,116332.75,17743.648,0,2699.9136 +11763,14345,25626,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.8323402,9.145771,0,0,0,-1080.6825,0,-9,-9,2021,8,0,40,42,1,0,0,21.918829,21.918829,.05,.05,0,0,0,0,0,0,0,0,0,1.1599249,0,34.55,51.58,-9,-9,6.666666666666667,1,1,0,0,14,6,5,0,513,-11711.764,94132.5,124833.7,43571.445,3292.7739,0,2402.0186 +11764,14346,25627,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.5394983,6.5394588,0,0,-865.85419,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.5676157,6.3422475,41.5,37.66,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,776,408783.69,202914.42,375169.63,0,0,0,1413.0916 +11765,14347,25628,25630,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.5764427,8.5014744,0,8,0,124.97472,0,-9,-9,2021,9,0,35,48,1,1,0,20.99435,20.99435,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,51.58,50.6,8,1,1,0,0,1,5,5,1,224.66667,486732.22,217684.92,254516.36,80746.578,0,2355.1465,3887.3958 +11765,14347,25629,-9,25630,25628,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1045.0396,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,5,5,1,224.66667,486732.22,217684.92,254516.36,80746.578,0,2355.1465,3887.3958 +11765,14347,25630,25628,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,8.1086082,8.2031069,0,30,0,.15677136,0,2,2,2021,15,4,32,32,1,4,0,10.443788,10.443788,.05,.05,0,0,0,0,0,0,1,1,0,1.4252173,0,51.58,50.6,53,55,8.333333333333334,1,1,0,0,10,5,5,1,224.66667,486732.22,217684.92,254516.36,80746.578,0,2355.1465,3887.3958 +11765,14348,25631,-9,25630,25628,1,1,19,0,1,1,2,0,0,0,3,0,7.0135832,6.7594204,0,0,-1079.799,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.48382,0,52.12,50.33,-9,-9,8.333333333333334,1,1,0,0,3,5,3,1,358,-58650.746,-34870.25,0,0,0,0,609.02075 +11766,14349,25632,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,8.8394537,8.7843351,0,0,0,-925.15875,0,2,2,2021,2,0,113,97,1,0,0,6.6349835,6.6349835,.05,.05,0,0,0,0,0,13,1,1,0,0,0,60.51,40.9,-9,-9,6.666666666666667,1,1,0,0,11,9,5,1,3387,72102.125,176055.98,0,0,0,391.57928,2370.937 +11767,14350,25633,25634,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1328983,8.1172333,0,7,3,-88.099785,0,-9,-9,2021,9,0,37,37,1,0,0,11.897751,11.897751,.05,.05,0,0,0,0,0,7,0,0,0,2.1036093,0,57.79,35.56,62.39,56.71,8.333333333333334,1,1,0,0,8,2,4,1,1803.5,438656.66,177187.02,182009.34,83124.57,4170.2334,0,2376.9658 +11767,14350,25634,25633,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,7.9889297,7.751543,0,36,-3,-42.069946,0,2,2,2021,5,0,44,44,1,0,0,8.9534035,8.9534035,.05,.05,0,0,0,0,0,0,0,0,0,3.2367499,0,62.39,56.71,57.79,35.56,10,1,1,0,0,8,2,4,1,1803.5,438656.66,177187.02,182009.34,83124.57,4170.2334,0,2376.9658 +11767,14351,25635,-9,25633,25634,1,1,27,0,0,0,2,2,-9,0,3,8.0265865,8.1386862,0,0,0,-894.02777,0,2,2,2021,10,2,45,60,1,2,1,6.9931993,6.9931993,.05,.05,0,0,0,0,0,0,0,0,0,3.827055,0,56.53,42.78,-9,-9,8.333333333333334,1,1,0,0,7,2,4,1,5118,176189.63,32021.621,0,0,11425.191,0,847.37622 +11768,14352,25636,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.3092031,8.6933823,6.2670426,0,0,-1128.5529,-9,-9,-9,2021,11,0,20,0,1,2,0,22.441462,22.441462,.05,.05,0,0,0,0,0,0,0,0,0,0,6.3946695,48,49,-9,-9,7,3,4,0,0,1,8,5,1,339,372222.75,80444.359,446338.63,0,0,2070.8938,2560.9468 +11768,14353,25637,-9,25636,-9,1,0,31,0,0,0,1,1,-9,0,4,8.95436,8.6788206,0,0,0,-1123.3003,0,2,-9,2021,11,0,52,40,1,2,1,15.995317,15.995317,.05,.05,0,0,0,0,0,0,0,0,0,4.8777876,0,47,57,-9,-9,7,3,4,0,0,5,8,5,1,253,234974.16,137177.67,0,0,0,0,2395.0605 +11769,14354,25638,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,4,0,8.1980162,7.6029296,0,0,-1029.8229,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8679694,8.0040083,57.16,56.15,-9,-9,10,1,1,0,0,0,2,4,1,1686,693624.81,375620.5,244190.52,0,0,0,2232.2629 +11770,14355,25639,25640,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,5.7276707,5.3540964,8,-3,-119.11682,0,2,-9,2021,13,1,0,20,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.5086837,5.1413527,43.79,54.07,37.41,58.46,5,1,1,0,0,8,11,2,1,725,-40122.848,48271.527,0,0,0,0,707.51709 +11770,14355,25640,25639,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.0582819,7.0623546,8,3,127.89488,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.2174686,7.027988,37.41,58.46,43.79,54.07,8.333333333333334,1,1,0,0,8,11,2,1,725,-40122.848,48271.527,0,0,0,0,707.51709 +11770,14356,25641,-9,25640,25639,1,0,23,0,0,0,2,2,-9,0,3,7.4244022,7.5884528,0,0,0,-1039.0146,-9,2,2,2021,13,1,39,0,1,1,0,5.2220016,5.2220016,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.24,55.72,-9,-9,5,1,1,0,0,7,11,3,1,4036,-28382.043,-38220.5,0,0,0,0,1192.0079 +11771,14357,25642,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,10.06435,10.499843,8.9484816,21,-7,94.621872,0,-9,-9,2021,11,0,22,65,1,0,0,123.96423,123.96423,.05,.05,0,0,0,0,0,7,1,1,0,5.8679194,9.2493362,52.38,47.57,52,54.51,8.333333333333334,1,1,0,0,12,6,5,1,2424,757221.56,672560,99833.094,73327.813,8826.1807,0,11971.861 +11771,14358,25643,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.7409468,7.6212521,20,7,5.0716372,0,1,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.1046765,0,24.494596,0,1,1,0,5.5470281,7.790853,52,54.51,52.38,47.57,8.333333333333334,1,1,0,0,8,6,5,1,372,1554930.6,639834.25,682651.38,0,0,0,1405.4075 +11772,14359,25644,25645,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,51,-5,44.233868,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.07,43.05,50.74,44.07,10,1,1,0,0,6,12,2,1,1063,254140.94,158119.81,158004.53,0,0,0,1584.2728 +11772,14359,25645,25644,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,5.3488593,5.5543065,51,5,-71.70546,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3599634,5.7054653,50.74,44.07,59.07,43.05,6.666666666666667,1,1,0,0,7,12,2,1,1063,254140.94,158119.81,158004.53,0,0,0,1584.2728 +11773,14360,25646,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.0872827,7.1109214,0,0,-1070.6084,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.24840687,6.5547423,47.55,55.06,-9,-9,5,1,1,0,0,8,7,2,1,1016,149199,0,0,0,0,0,74.661873 +11774,14361,25647,25648,-9,-9,1,0,84,0,0,0,1,1,-9,0,3,0,7.2125616,7.3501897,59,0,-40.465607,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.69919473,7.5563903,52,45,51.17,42.73,8,1,1,0,0,0,13,3,1,1041.5,512379.69,250684.03,52156.797,0,0,0,2700.6643 +11774,14361,25648,25647,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.8548498,6.8817682,59,0,86.384369,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7897191,6.8526349,51.17,42.73,52,45,8.333333333333334,1,1,0,0,0,13,3,1,1041.5,512379.69,250684.03,52156.797,0,0,0,2700.6643 +11775,14362,25649,25650,-9,-9,1,0,72,0,0,0,2,2,-9,0,5,0,8.9336958,8.4449339,41,0,183.95192,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.052948,8.3650627,41.43,64.75,58.15,52.91,10,1,1,0,0,0,12,5,1,886,2078040.8,200129.06,737586,0,0,0,7125.5693 +11775,14362,25650,25649,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,8.5422058,9.2145815,7.9258909,41,0,-72.934044,0,3,2,2021,6,0,35,50,1,0,0,17.879961,17.879961,0,0,0,0,0,0,0,0,1,1,0,3.7889619,8.2945938,58.15,52.91,41.43,64.75,8.333333333333334,1,1,0,0,13,12,5,1,886,2078040.8,200129.06,737586,0,0,0,7125.5693 +11776,14363,25651,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.4829226,9.4542122,0,0,0,-873.07117,0,3,3,2021,11,1,49,45,1,1,0,24.357508,24.357508,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,13,2,5,1,496,1651275.9,1335729,130812.09,0,0,0,4461.2471 +11777,14364,25652,25653,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,7.9929743,8.4110622,37,-2,-54.580841,0,2,2,2021,7,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4283791,0,54.2,57.49,42.33,53.39,8.333333333333334,1,1,0,0,6,9,4,1,1277.5,1535338.5,811251.88,394142.41,0,0,0,2524.7161 +11777,14364,25653,25652,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.1523914,7.3648686,3.6449313,37,2,-14.549593,0,3,3,2021,8,1,56,56,1,1,0,2.6369436,2.6369436,.05,.05,0,0,0,0,0,0,0,0,0,4.2456632,3.7016642,42.33,53.39,54.2,57.49,10,1,1,0,0,6,9,4,1,1277.5,1535338.5,811251.88,394142.41,0,0,0,2524.7161 +11778,14365,25654,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.6701889,7.250174,0,0,-883.16864,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0938654,6.580267,46.31,56.45,-9,-9,8.333333333333334,1,1,0,0,3,10,2,1,816,438413.75,194255.5,35552.461,0,0,0,1039.9388 +11779,14366,25655,25656,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,7.8180966,7.9186597,12,12,-9.1307764,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.5829873,60.05,42.65,64.55,36.47,10,1,1,0,0,0,13,3,1,290,2542502.5,297052.47,218903.86,0,0,0,3706.4314 +11779,14366,25656,25655,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.8546071,6.4594789,12,-12,-11.680102,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9074883,64.55,36.47,60.05,42.65,10,1,1,0,0,0,13,3,1,290,2542502.5,297052.47,218903.86,0,0,0,3706.4314 +11780,14367,25657,25659,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,8.5059557,8.5607004,0,13,1,-33.362942,0,-9,-9,2021,8,0,35,41,1,0,0,19.725794,19.725794,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.88,56.68,8.333333333333334,1,1,0,0,14,13,4,1,974.33331,1454829,1320907.3,143114.94,17402.484,4594.3784,0,3464.0056 +11780,14367,25658,-9,25657,25659,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1030.2341,-9,2,2,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.73,52.99,-9,-9,5,1,1,0,0,0,13,4,1,974.33331,1454829,1320907.3,143114.94,17402.484,4594.3784,0,3464.0056 +11780,14367,25659,25657,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.3581238,8.4682493,0,23,-1,9.1150799,0,2,3,2021,6,0,37,37,1,0,0,12.260073,12.260073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.88,56.68,57.33,53.46,8.333333333333334,1,1,0,0,14,13,4,1,974.33331,1454829,1320907.3,143114.94,17402.484,4594.3784,0,3464.0056 +11781,14368,25660,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,2,8.1505508,8.4355812,0,0,0,-969.1123,-9,-9,-9,2021,30,12,76,0,1,12,0,5.8195267,5.8195267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,18.11,51.71,-9,-9,3.333333333333333,1,1,0,1,9,1,4,1,2175,-200221.55,-235.22708,0,0,3753.269,0,1179.3777 +11782,14369,25661,-9,25662,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.6127,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,711.66669,-46644.695,-72436.742,0,0,16440.123,0,2960.8572 +11782,14369,25662,-9,-9,-9,1,0,28,0,2,0,1,1,-9,0,2,8.3373632,8.3891754,5.6968894,0,0,-970.59723,0,2,-9,2021,34,12,38,47,1,12,0,11.119231,11.119231,.05,.05,0,0,0,0,0,0,1,1,0,5.7743673,0,18.77,56.85,-9,-9,1.666666666666667,1,1,0,0,8,4,4,1,711.66669,-46644.695,-72436.742,0,0,16440.123,0,2960.8572 +11782,14369,25663,-9,25662,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.4252,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,711.66669,-46644.695,-72436.742,0,0,16440.123,0,2960.8572 +11783,14370,25664,25665,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,0,0,8,1,-47.226387,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.12,41.75,54.38,46.77,10,1,1,0,0,0,12,2,1,385,646832.63,290358.19,126676.75,0,0,0,2016.323 +11783,14370,25665,25664,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,6.8280463,7.2875271,8,-1,2.282603,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7868087,6.6625662,54.38,46.77,50.12,41.75,8.333333333333334,1,1,0,1,0,12,2,1,385,646832.63,290358.19,126676.75,0,0,0,2016.323 +11784,14371,25666,25667,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.3322949,7.2331576,49,-6,59.01841,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7119094,7.1711731,60.12,54.8,51.05,52.04,10,1,1,0,0,7,10,2,1,1727.5,689921.88,292294.22,156459.23,0,0,0,1977.1746 +11784,14371,25667,25666,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,5.9194322,5.800663,49,6,-132.41278,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.6498065,6.0945778,51.05,52.04,60.12,54.8,10,1,1,0,0,4,10,2,1,1727.5,689921.88,292294.22,156459.23,0,0,0,1977.1746 +11785,14372,25668,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,9.0334711,9.3540096,7.8600817,0,0,-1036.2308,0,2,2,2021,7,0,37,40,1,0,0,31.113361,31.113361,.05,.05,.05,0,0,0,0,0,0,0,0,4.3175192,7.546505,62.28,29.58,-9,-9,10,1,1,0,0,8,12,5,1,533,864110.81,500277.28,133506.91,27625.738,0,0,3616.2236 +11786,14373,25669,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,8.3646841,8.2719107,0,0,0,-889.96429,0,2,2,2021,11,1,37,42,1,1,1,14.021728,14.021728,.05,.05,0,0,0,0,0,0,0,0,0,4.0775685,0,48.07,37.47,-9,-9,5,1,1,0,0,8,6,4,1,436,291252.56,83612.258,46707.746,46230.563,7864.3794,0,2145.4749 +11787,14374,25670,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.6558886,7.435885,0,0,-1044.0598,0,2,3,2021,9,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,7,1,1,0,4.8588247,7.3705564,56.35,43.13,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,543,-130577.82,21829.578,0,0,0,0,1616.1278 +11788,14375,25671,25672,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.879674,8.918457,0,21,7,-148.47446,0,3,3,2021,16,6,39,39,1,6,0,31.802788,31.802788,0,0,0,0,0,0,0,0,1,1,0,1.8046188,0,27.4,56.6,50,55,3.333333333333333,2,3,0,0,10,8,5,1,603.5,2868938.5,1963535,560068.25,0,0,0,4190.646 +11788,14375,25672,25671,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,7.5136805,7.516923,0,21,-7,-146.32083,0,3,1,2021,10,0,31,38,1,1,0,8.7488518,8.7488518,0,0,0,0,0,0,0,2,1,1,0,7.2156215,0,50,55,27.4,56.6,8,2,3,0,0,7,8,5,1,603.5,2868938.5,1963535,560068.25,0,0,0,4190.646 +11788,14376,25673,-9,25672,25671,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-959.04486,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,2,3,0,0,0,8,1,1,600,68642.211,0,0,0,0,0,0 +11789,14377,25674,25675,-9,-9,1,0,53,0,0,0,2,2,-9,1,1,0,0,0,17,2,0,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,35.7,23.15,37.84,27.36,3.333333333333333,1,1,0,0,0,10,1,0,1138,6820.5781,0,0,0,0,0,2162.2422 +11789,14377,25675,25674,-9,-9,1,1,51,0,0,0,2,2,-9,1,2,0,0,0,17,-2,0,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.84,27.36,35.7,23.15,8.333333333333334,1,1,0,0,0,10,1,0,1138,6820.5781,0,0,0,0,0,2162.2422 +11790,14378,25676,25677,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.8931451,5.3782415,52,3,-35.586582,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8276057,5.4002957,53,46,51,46,8,1,1,0,0,4,10,2,1,1093.5,419564.31,90621.453,213399.36,0,0,0,2435.3291 +11790,14378,25677,25676,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.0743661,5.7766876,52,-3,56.427784,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,14.152123,20.779356,124.78837,0,1,1,0,5.5129342,6.0567122,51,46,53,46,7,1,1,0,0,3,10,2,1,1093.5,419564.31,90621.453,213399.36,0,0,0,2435.3291 +11791,14379,25678,25679,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.1570077,7.3452554,62,-4,-36.572193,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6730881,7.1707559,53,45,60.12,54.8,8,1,1,0,0,0,2,3,1,457.5,818112.25,316829.22,124871.07,0,0,0,2803.8071 +11791,14379,25679,25678,-9,-9,1,1,88,0,0,0,2,2,-9,0,4,0,6.7696881,6.7161851,62,4,10.661844,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1736588,60.12,54.8,53,45,10,1,1,0,0,0,2,3,1,457.5,818112.25,316829.22,124871.07,0,0,0,2803.8071 +11792,14380,25680,-9,25681,25682,1,1,19,0,0,0,2,2,-9,0,4,7.3443632,7.631907,4.4804845,0,0,-1008.2366,0,2,2,2021,7,0,40,0,1,0,1,6.7475586,6.7475586,.05,.05,0,0,0,0,0,0,0,0,0,4.917531,0,62.49,55.09,-9,-9,10,1,1,0,0,10,11,3,1,1683,95112.57,40730.023,0,0,0,0,635.14618 +11792,14381,25681,25682,-9,-9,1,0,40,0,0,0,2,2,-9,0,5,7.7263541,7.6129422,0,7,-7,53.395016,0,2,2,2021,6,0,28,28,1,0,0,8.5546017,8.5546017,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,55.19,54.26,10,1,1,0,0,8,11,4,1,492.5,-89607.844,9021.0313,0,0,12406.021,3337.0803,2558.6335 +11792,14381,25682,25681,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4535255,8.356164,0,7,7,15.537888,0,-9,-9,2021,9,0,52,40,1,0,0,10.613083,10.613083,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.06,57.76,8.333333333333334,1,1,0,0,8,11,4,1,492.5,-89607.844,9021.0313,0,0,12406.021,3337.0803,2558.6335 +11793,14382,25683,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.3717661,6.6269107,0,0,-947.62537,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4786687,6.4038186,53,44,-9,-9,8,1,1,0,0,0,13,2,0,88,54619.078,45735.121,0,0,0,0,1393.5647 +11794,14383,25684,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-935.37335,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.74,37.13,-9,-9,6.666666666666667,4,5,0,0,0,8,2,0,122,-72112.25,0,0,0,0,0,1006.7135 +11794,14384,25685,-9,25684,-9,1,0,31,0,0,0,1,1,-9,0,2,7.8792305,8.0423021,0,0,0,-1098.068,0,2,-9,2021,10,2,20,17,1,2,0,14.202677,14.202677,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.39,52.89,-9,-9,8.333333333333334,4,5,0,0,2,8,4,0,137,172385.77,124105.04,197540.72,59764.828,0,0,1400.6206 +11795,14385,25686,25687,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,4.2499599,4.2235193,46,-7,9.2107372,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,4.292006,39.8,23.76,47,37,8.333333333333334,2,3,0,0,0,8,2,1,745,688324.63,119229.43,366187.84,0,0,0,1012.335 +11795,14385,25687,25686,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,7.6822033,7.7405171,46,7,-44.77124,0,3,3,2021,13,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.5097589,47,37,39.8,23.76,6.666666666666667,2,3,0,0,0,8,2,1,745,688324.63,119229.43,366187.84,0,0,0,1012.335 +11795,14386,25688,-9,25686,25687,1,0,41,0,0,0,1,1,-9,0,4,0,0,0,0,0,-953.12842,0,2,2,2021,14,3,0,35,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.76,58.96,-9,-9,6.666666666666667,2,3,1,0,0,8,1,1,919,80679.461,0,362855.53,197655.23,0,0,515.71667 +11796,14387,25689,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,7.9880161,8.2648697,0,0,-1030.2192,0,2,2,2021,10,1,0,50,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9901767,8.0856705,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,612,853287.75,334028.81,178167.3,0,0,0,2287.7297 +11797,14388,25690,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,8.0780792,8.2221746,0,0,-1052.2325,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,0,0,0,7.9702754,7.1232085,58.15,52.91,-9,-9,10,1,1,0,0,0,9,4,1,197,1131979.8,789013.31,400969.88,26711.502,1505.7125,0,2960.1755 +11798,14389,25691,25693,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.7687664,8.8254213,0,11,0,6.937788,0,2,2,2021,10,0,41,40,1,0,0,17.578018,17.578018,0,0,0,0,0,0,0,0,1,1,0,1.1194514,0,54.1,59.11,54.96,53.17,8.333333333333334,1,1,0,0,12,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11798,14389,25692,-9,25691,25693,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1021.3616,-9,1,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,0,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11798,14389,25693,25691,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.1464729,8.0560694,0,11,0,-11.245361,0,2,3,2021,15,2,49,48,1,2,0,8.3186321,8.3186321,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,54.1,59.11,8.333333333333334,1,1,0,0,12,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11798,14389,25694,-9,25691,25693,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-997.18915,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,4,1,648.75,474363.81,105350.48,324260.25,-12265.596,2775.0259,0,4380.6743 +11799,14390,25695,25696,-9,-9,1,0,27,0,0,0,1,1,-9,0,3,0,0,0,2,-7,187.17104,0,-9,-9,2021,19,8,0,0,3,8,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.79,58.34,51.49,57.57,6.666666666666667,2,3,0,0,0,4,4,1,1487,142043.53,148904.16,0,0,0,0,1663.6062 +11799,14390,25696,25695,25698,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4779425,8.3558187,0,2,7,53.490944,0,3,-9,2021,12,0,37,35,1,0,0,16.07131,16.07131,.05,.05,0,0,0,0,0,0,1,1,0,.70076895,0,51.49,57.57,34.79,58.34,8.333333333333334,2,3,0,0,6,4,4,1,1487,142043.53,148904.16,0,0,0,0,1663.6062 +11799,14391,25697,-9,25698,-9,1,0,38,0,0,0,2,2,-9,0,5,8.3083458,8.5736237,0,0,0,-1053.5775,0,3,-9,2021,10,0,45,46,1,0,0,10.571101,10.571101,.05,.05,0,0,0,0,0,0,1,1,0,0,0,72.87,27.3,-9,-9,10,2,3,0,0,10,4,4,1,277,-140664.73,-58343.012,0,0,4581.5601,0,1342.2031 +11799,14392,25698,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,0,0,-987.27551,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,4,1,1,401,367881.38,0,370336.28,0,0,0,228.26201 +11800,14393,25699,25701,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,7.6131301,7.6110139,0,8,3,98.656189,0,-9,-9,2021,9,0,40,47,1,0,0,6.3644066,6.3644066,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,9,3,1,504,-109198.66,-59367.855,0,0,0,0,1966.2319 +11800,14393,25700,-9,25699,25701,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.21857,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,504,-109198.66,-59367.855,0,0,0,0,1966.2319 +11800,14393,25701,25699,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.01896,8.1871099,0,8,-3,11.760637,0,2,2,2021,2,0,35,35,1,0,0,9.7872753,9.7872753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,10,1,1,0,0,9,9,3,1,504,-109198.66,-59367.855,0,0,0,0,1966.2319 +11801,14394,25702,25703,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.4887571,8.3606863,0,12,-3,124.57889,0,2,2,2021,8,0,37,41,1,0,0,17.158768,17.158768,.05,.05,0,0,0,0,0,0,0,0,0,3.4077089,0,53.61,51.1,57.16,56.15,8.333333333333334,1,1,0,0,9,6,5,1,469,185889.39,73800.352,206083.06,142076.92,5044.5308,0,3107.2266 +11801,14394,25703,25702,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.3817234,8.5943813,0,12,3,51.35968,0,3,3,2021,6,0,37,37,1,0,0,18.434166,18.434166,.05,.05,0,0,0,0,0,0,0,0,0,4.7088361,0,57.16,56.15,53.61,51.1,8.333333333333334,1,1,0,0,9,6,5,1,469,185889.39,73800.352,206083.06,142076.92,5044.5308,0,3107.2266 +11802,14395,25704,25705,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.534605,6.8609118,10,4,59.747208,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8221488,6.3778577,57.16,56.15,43.12,58.55,8.333333333333334,1,1,0,0,8,5,5,1,585,2062447.5,817771.31,412369.38,0,0,0,7839.4854 +11802,14395,25705,25704,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.4767547,9.4268341,8.8092051,10,-4,-35.64576,0,2,1,2021,15,4,40,40,1,4,0,5.6923332,5.6923332,0,0,0,0,0,0,0,0,1,1,0,0,9.4481192,43.12,58.55,57.16,56.15,8.333333333333334,1,1,0,0,11,5,5,1,585,2062447.5,817771.31,412369.38,0,0,0,7839.4854 +11803,14396,25706,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-941.2674,0,2,2,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,15.744869,13.911938,140.47845,0,1,1,0,0,0,53.53,48.3,-9,-9,8.333333333333334,1,1,0,0,13,7,1,1,357,5797.2104,0,0,0,-3210.7178,0,1541.0614 +11804,14397,25707,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1106.9634,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,42.94,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,433,1501285.1,365423.78,305722.31,0,0,0,0 +11805,14398,25708,25709,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,7.6940727,8.2404251,5,7,-88.909317,0,2,2,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,1,124.98846,121.81741,1245.9104,0,1,1,0,0,7.6517463,47.88,29.98,34.79,34.46,5,1,1,0,0,6,2,4,1,611,495093.59,291619.44,150712.92,72741.516,1942.4897,0,3437.2805 +11805,14398,25709,25708,-9,-9,1,0,58,0,0,0,2,2,-9,1,2,0,7.6361022,7.5867815,5,-7,5.082088,0,3,2,2021,25,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5533447,34.79,34.46,47.88,29.98,3.333333333333333,1,1,0,0,3,2,4,1,611,495093.59,291619.44,150712.92,72741.516,1942.4897,0,3437.2805 +11806,14399,25710,-9,25712,25711,1,1,34,0,0,0,2,2,-9,0,2,5.6349354,6.1086216,0,0,0,-1081.0203,0,1,1,2021,18,7,48,70,1,7,0,1.0914816,1.0914816,0,0,0,0,0,0,0,0,1,1,0,0,0,41.89,45.94,-9,-9,3.333333333333333,1,1,0,1,11,7,2,1,370,171183.38,0,0,0,0,0,-164.83 +11806,14400,25711,25712,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.2751293,8.5169172,42,3,-92.686127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.8753448,8.4928274,57.33,53.46,49.35,59.64,8.333333333333334,1,1,0,0,7,7,5,1,573,2874907,1554828.9,975717.94,0,0,0,5412.9277 +11806,14400,25712,25711,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.4877205,8.5262737,38,-3,-102.17179,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.138787,8.4176331,49.35,59.64,57.33,53.46,8.333333333333334,1,1,0,0,8,7,5,1,573,2874907,1554828.9,975717.94,0,0,0,5412.9277 +11807,14401,25713,25714,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,9.5393934,9.5455999,0,2,5,70.981392,0,-9,-9,2021,8,0,40,15,1,0,0,43.418701,43.418701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.46,53.68,46.28,51.64,8.333333333333334,1,1,0,0,7,6,5,0,954.5,227938.05,245648.88,0,0,4860.3169,3370.75,6553.6777 +11807,14401,25714,25713,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,5.3902869,5.394659,0,2,-5,100.72063,0,-9,-9,2021,17,5,40,41,1,5,0,.68691736,.68691736,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.28,51.64,50.46,53.68,8.333333333333334,1,1,0,0,1,6,5,0,954.5,227938.05,245648.88,0,0,4860.3169,3370.75,6553.6777 +11808,14402,25715,-9,25717,25716,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.8466,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,3554.3333,449236.28,-4830.8765,400870.38,0,3449.2288,0,6187.5342 +11808,14402,25716,25717,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.0583029,9.09904,0,11,0,65.452362,0,1,1,2021,20,9,40,38,1,9,0,29.581343,29.581343,.05,.05,0,0,0,0,0,0,0,0,0,4.1508203,0,44.06,48.65,41.3,60.77,8.333333333333334,1,1,0,0,12,9,5,1,3554.3333,449236.28,-4830.8765,400870.38,0,3449.2288,0,6187.5342 +11808,14402,25717,25716,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,9.0208263,8.8945942,0,11,0,-32.017746,0,-9,-9,2021,7,0,30,30,1,0,0,24.640343,24.640343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,44.06,48.65,8.333333333333334,4,2,0,0,11,9,5,1,3554.3333,449236.28,-4830.8765,400870.38,0,3449.2288,0,6187.5342 +11809,14403,25718,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-995.3006,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,1,1,0,1295,-127587.72,0,0,0,0,0,2149.8389 +11810,14404,25719,-9,25720,25722,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.81079,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25720,25722,-9,-9,1,0,31,0,3,0,3,3,-9,0,3,0,0,0,6,5,18.313904,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.34,60.05,54.1,59.11,6.666666666666667,1,1,0,0,1,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25721,-9,25720,25722,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.74261,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25722,25720,-9,-9,1,1,26,0,3,0,2,2,-9,0,5,8.2047434,8.1024923,0,6,-5,90.855225,0,-9,-9,2021,6,0,48,44,1,0,0,10.478766,10.478766,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,31.34,60.05,8.333333333333334,1,1,0,0,6,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11810,14404,25723,-9,25720,25722,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.83588,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,3,0,400.39999,-94477.539,0,0,0,3677.3743,0,2032.1967 +11811,14405,25724,25725,-9,-9,1,0,25,0,0,0,2,2,-9,0,2,0,0,0,4,-6,40.885971,1,2,2,2021,16,3,0,20,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5548619,0,42.43,47.17,52,54.51,5,1,1,0,0,7,11,4,1,367,-14276.064,-13744.768,138412.34,79576.797,991.87378,1555.4297,1585.4581 +11811,14405,25725,25724,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.448369,8.2502689,0,4,6,106.82243,0,-9,-9,2021,12,0,37,37,1,0,0,11.452618,11.452618,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,42.43,47.17,6.666666666666667,1,1,0,0,11,11,4,1,367,-14276.064,-13744.768,138412.34,79576.797,991.87378,1555.4297,1585.4581 +11812,14406,25726,-9,25729,25728,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.3508,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11812,14406,25727,-9,25729,25728,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-998.19836,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11812,14406,25728,25729,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.52108,8.9578409,0,13,7,130.03923,0,-9,-9,2021,7,0,46,47,1,0,0,14.390802,14.390802,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.28,48.88,57.06,57.76,10,1,1,0,0,8,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11812,14406,25729,25728,-9,-9,1,0,34,0,2,0,2,2,-9,0,5,7.2132859,7.1175032,0,13,-7,9.6315384,0,-9,-9,2021,6,0,20,20,1,0,0,5.506237,5.506237,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,61.28,48.88,3.333333333333333,1,1,0,0,8,12,4,1,571.5,61160.953,40740.406,217384.61,72391.672,681.20886,735.73401,3230.7463 +11813,14407,25730,25731,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,5.4416623,5.5002966,39,-3,122.00232,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9574008,4.9842391,40.73,43.99,54.18,50.75,8.333333333333334,1,1,0,0,0,10,5,1,2462.5,1666313.5,1239533.8,387528.47,16803.041,0,0,4719.4033 +11813,14407,25731,25730,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.9974146,9.1669703,12,3,49.671722,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.5568743,9.2113209,54.18,50.75,40.73,43.99,8.333333333333334,1,1,0,0,11,10,5,1,2462.5,1666313.5,1239533.8,387528.47,16803.041,0,0,4719.4033 +11814,14408,25732,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.9215918,6.8360376,0,0,-943.6441,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3706541,6.893353,59.88,42.66,-9,-9,8.333333333333334,1,1,0,0,7,8,2,1,176,764598.38,205670.88,569996.69,0,0,0,2216.9468 +11815,14409,25733,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1058.29,0,2,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.6,32.91,-9,-9,5,1,1,0,0,0,2,1,0,1135,-194100.56,0,0,0,0,0,1463.765 +11816,14410,25734,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.4396219,8.2384119,0,0,0,-1112.1501,0,3,2,2021,8,0,35,40,1,0,0,14.13068,14.13068,.05,.05,0,0,0,0,0,0,0,0,0,1.2580001,0,57.16,56.15,-9,-9,1.666666666666667,1,1,0,0,11,9,5,1,1718,556999,-9288.2432,280494.5,61907.82,0,-61.187229,1934.3945 +11817,14411,25735,25736,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.1909943,6.0525312,46,-4,-85.878914,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3878026,43.25,42.36,30.41,34,6.666666666666667,1,1,0,0,0,7,2,1,700,-109094.18,0,0,0,-537.00739,2083.3057,2087.9946 +11817,14411,25736,25735,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,6.4020882,6.243443,46,4,35.856457,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7930703,6.3696222,30.41,34,43.25,42.36,5,1,1,0,0,3,7,2,1,700,-109094.18,0,0,0,-537.00739,2083.3057,2087.9946 +11818,14412,25737,-9,25738,25739,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.24786,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14412,25738,25739,-9,-9,1,0,27,1,2,0,1,1,-9,0,3,0,0,0,5,-7,36.421604,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.95,49.92,43.66,50.25,6.666666666666667,2,3,0,0,0,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14412,25739,25738,25741,-9,1,1,34,1,2,0,1,1,-9,0,3,8.4610443,8.1980438,0,5,7,170.25519,0,2,2,2021,9,0,38,38,1,0,0,14.334663,14.334663,.05,.05,0,0,0,0,0,0,1,1,0,6.0447021,0,43.66,50.25,49.95,49.92,6.666666666666667,2,3,0,0,8,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14412,25740,-9,25738,25739,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-925.6944,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,9,3,1,1184,169118.44,-15270.294,284664.41,61035.594,0,0,2258.7468 +11818,14413,25741,-9,-9,-9,1,0,67,1,2,0,3,3,-9,0,3,0,0,0,0,0,-979.21942,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,2,3,0,0,0,9,1,1,494,48957.293,116964.14,0,0,0,0,560.55627 +11819,14414,25742,25743,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.0497284,4.9901485,49,2,-85.991959,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8803091,4.7913742,54.36,42.37,56.94,49.53,8.333333333333334,1,1,0,0,4,6,2,1,1017.5,245840.41,297972.59,0,0,0,0,1317.4121 +11819,14414,25743,25742,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,4.2257719,4.2042832,49,-2,-77.60125,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9340916,4.0866914,56.94,49.53,54.36,42.37,8.333333333333334,1,1,0,0,0,6,2,1,1017.5,245840.41,297972.59,0,0,0,0,1317.4121 +11820,14415,25744,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,0,0,-884.0036,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.98,50.5,-9,-9,6.666666666666667,1,1,0,0,5,4,1,1,299,-62657.07,0,0,0,0,0,1247.2334 +11821,14416,25745,25748,-9,-9,1,0,28,0,2,0,3,3,-9,0,3,0,0,0,1,0,-183.92703,-9,-9,-9,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,37.69,58.7,37.41,41.3,6.666666666666667,1,1,0,0,2,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11821,14416,25746,-9,25745,25748,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-886.08057,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11821,14416,25747,-9,25745,25748,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.9752,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11821,14416,25748,25745,-9,-9,1,1,28,0,2,0,2,2,-9,0,2,7.9225483,7.7427745,0,1,0,81.385132,-9,-9,-9,2021,17,5,37,0,1,5,0,8.574646,8.574646,0,0,0,0,0,0,0,0,1,1,0,0,0,37.41,41.3,37.69,58.7,6.666666666666667,1,1,0,0,4,10,3,0,1044.25,68605.102,0,318337.56,101899.09,0,0,1852.6655 +11822,14417,25749,25750,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.6414232,8.1793413,0,2,-5,-59.466145,0,2,2,2021,8,0,38,37,1,0,0,14.266956,14.266956,.05,.05,0,0,0,0,0,0,0,0,0,2.6193919,0,51.83,57.2,39.37,50.78,8.333333333333334,1,1,0,0,10,9,5,1,431.5,321281.84,192335.11,469060.13,277280.63,0,0,4364.1689 +11822,14417,25750,25749,-9,-9,1,1,36,0,0,0,2,2,-9,0,3,8.8858786,9.0117788,0,2,5,-3.8236136,0,2,2,2021,9,0,52,57,1,0,0,12.487046,12.487046,.05,.05,0,0,0,0,0,0,0,0,0,4.596921,0,39.37,50.78,51.83,57.2,6.666666666666667,1,1,0,0,13,9,5,1,431.5,321281.84,192335.11,469060.13,277280.63,0,0,4364.1689 +11823,14418,25751,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,2,8.0404139,7.8477139,0,0,0,-933.73187,-9,2,2,2021,11,0,40,0,1,0,0,7.077507,7.077507,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.57,42.42,-9,-9,3.333333333333333,1,1,0,1,10,1,4,0,1137,177492.11,148924.69,117117.57,17854.947,0,0,1314.5427 +11823,14419,25752,-9,25751,-9,1,0,25,0,0,0,2,2,-9,0,4,7.7240582,7.2916813,0,0,0,-1020.9212,0,2,3,2021,10,0,35,46,1,0,1,6.5166554,6.5166554,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,6,1,3,0,268,6139.522,-14359.903,0,0,-1029.251,-47.017464,1394.3206 +11824,14420,25753,25754,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.8154101,7.8764176,0,6,5,73.262589,0,2,2,2021,11,1,40,48,1,1,0,8.2392054,8.2392054,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.03,41.98,47,57,8.333333333333334,1,1,0,0,5,4,5,0,1167,-8536.2803,-4448.9316,0,0,269.67859,1092.381,3125.2983 +11824,14420,25754,25753,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.2279196,8.4553976,0,6,-5,13.939843,-9,-9,-9,2021,11,0,30,0,1,2,0,18.846447,18.846447,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,55.03,41.98,7,1,1,0,0,1,4,5,0,1167,-8536.2803,-4448.9316,0,0,269.67859,1092.381,3125.2983 +11825,14421,25755,25756,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,7.4218903,8.1735506,7.0591383,8,-5,6.2332773,0,3,3,2021,12,0,16,16,1,0,0,10.091232,10.091232,0,0,0,0,0,0,0,0,1,1,0,0,7.2587433,49.18,46.43,64.07000000000001,47.52,10,1,1,0,0,9,13,4,1,468,1119863,707232.63,268303.09,6225.4668,0,0,3767.3062 +11825,14421,25756,25755,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.4156642,7.568583,8,5,84.394371,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8292508,64.07000000000001,47.52,49.18,46.43,10,1,1,0,0,4,13,4,1,468,1119863,707232.63,268303.09,6225.4668,0,0,3767.3062 +11826,14422,25757,-9,-9,-9,1,0,19,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1078.3215,-9,2,2,2021,12,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,10,1,1,0,0,0,13,1,0,107,12103.184,0,0,0,0,0,0 +11826,14423,25758,-9,-9,-9,1,0,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-998.09338,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,0,13,1,0,375,-143810.64,0,0,0,0,0,374.55508 +11827,14424,25759,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,8.5394878,8.5179815,0,0,0,-1099.9379,0,-9,2,2021,12,1,40,40,1,1,0,11.538067,11.538067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.97,44.05,-9,-9,6.666666666666667,1,1,0,0,15,5,4,1,713,1657094.8,1675207.9,208650.58,55434.242,0,0,1996.4675 +11828,14425,25760,25762,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,9.2049732,9.2267876,0,23,0,24.715588,0,2,2,2021,13,1,35,38,1,1,0,32.250072,32.250072,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,57.09,46.7,6.666666666666667,1,1,0,0,14,10,5,1,1009,1741026.3,821572.63,423038.19,0,0,0,8045.5269 +11828,14425,25761,-9,25760,25762,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-957.50653,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,1009,1741026.3,821572.63,423038.19,0,0,0,8045.5269 +11828,14425,25762,25760,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,9.6039419,9.6297588,0,23,0,-.67573225,0,2,2,2021,11,2,40,38,1,2,0,40.235504,40.235504,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.09,46.7,49.04,55.86,8.333333333333334,1,1,0,0,13,10,5,1,1009,1741026.3,821572.63,423038.19,0,0,0,8045.5269 +11829,14426,25763,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-923.05371,0,-9,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.37,22.93,-9,-9,5,1,1,0,0,0,8,1,0,947,203418.47,0,0,0,0,7669.0732,2074.1785 +11830,14427,25764,-9,-9,-9,1,1,53,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1061.2999,0,2,1,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,1,1,0,0,0,7,1,1,274,98190.203,0,0,0,0,0,290.52155 +11831,14428,25765,25766,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.4240036,8.3073254,0,3,-5,53.740379,0,-9,-9,2021,6,0,35,35,1,0,0,12.312927,12.312927,.05,.05,0,0,0,0,0,0,0,0,0,4.8452101,0,59.43,58.05,31.18,62.61,10,1,1,0,0,6,2,5,1,1248.5,205778.13,3718.6914,150240.25,0,0,0,3632.4316 +11831,14428,25766,25765,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.8938284,8.8467045,0,3,5,29.148174,0,-9,-9,2021,8,1,45,37,1,1,0,19.091566,19.091566,.05,.05,0,0,0,0,0,0,0,0,0,1.4283198,0,31.18,62.61,59.43,58.05,8.333333333333334,1,1,0,0,10,2,5,1,1248.5,205778.13,3718.6914,150240.25,0,0,0,3632.4316 +11832,14429,25767,-9,-9,25768,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-973.59534,-9,-9,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,4,3,1,921.66669,14108.702,0,0,0,11310.667,0,1603.9856 +11832,14429,25768,25769,-9,-9,1,1,39,1,1,0,2,2,-9,0,5,8.3308468,8.2185593,0,2,11,-44.783592,0,3,2,2021,16,5,46,46,1,5,0,10.95822,10.95822,0,0,0,0,0,0,0,0,1,1,0,0,0,29.6,57.68,46.88,60.96,8.333333333333334,1,1,0,0,8,4,3,1,921.66669,14108.702,0,0,0,11310.667,0,1603.9856 +11832,14429,25769,25768,-9,-9,1,0,28,1,1,0,3,3,-9,0,5,0,0,0,2,-11,-36.735809,0,3,1,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.88,60.96,29.6,57.68,8.333333333333334,2,3,0,0,0,4,3,1,921.66669,14108.702,0,0,0,11310.667,0,1603.9856 +11833,14430,25770,25771,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,24,-8,0,0,3,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,32.17,54.65,56.13,32.4,5,1,1,0,0,0,2,1,1,343.5,148515.94,54254.219,127531.03,0,0,0,1377.0286 +11833,14430,25771,25770,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,0,0,24,8,0,0,1,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,14.246488,34.710491,133.4559,14.5,1,1,0,0,0,56.13,32.4,32.17,54.65,8.333333333333334,1,1,0,0,0,2,1,1,343.5,148515.94,54254.219,127531.03,0,0,0,1377.0286 +11834,14431,25772,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,9.0773125,9.4980822,0,0,0,-926.71735,0,-9,-9,2021,9,0,30,40,1,0,0,25.995747,25.995747,.05,.05,0,1,0,0,0,0,0,0,0,6.8719134,0,51.08,54.77,-9,-9,8.333333333333334,4,2,0,0,12,2,5,1,858,-76335.766,56090.563,20477.861,54293.891,-2916.3499,0,4327.168 +11835,14432,25773,25774,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,8.8875265,8.4012451,35,-1,-130.99225,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1025634,8.6840935,60.12,54.8,60.12,54.8,10,1,1,0,0,3,4,4,1,1564,235070.39,0,204667.81,27007.277,0,382.20395,3489.8213 +11835,14432,25774,25773,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,6.4606223,6.0570903,35,1,51.453014,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6507301,6.2244921,60.12,54.8,60.12,54.8,0,1,1,0,0,7,4,4,1,1564,235070.39,0,204667.81,27007.277,0,382.20395,3489.8213 +11836,14433,25775,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,4,0,6.9326773,6.7474103,0,0,-1038.4795,0,3,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0814028,6.9247069,34.59,62.38,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,313,432228.72,112385.91,225192.47,0,0,0,1535.7628 +11837,14434,25776,25777,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.6474314,9.1415548,49,1,-28.069025,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2482085,8.9174643,40.89,40.95,57.16,56.15,8.333333333333334,1,1,0,0,0,13,5,1,3054,2711903.5,1383189.3,672285.63,0,0,0,6060.5923 +11837,14434,25777,25776,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.1534286,7.2701187,49,-1,-108.04006,0,3,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.3083105,57.16,56.15,40.89,40.95,0,1,1,0,0,3,13,5,1,3054,2711903.5,1383189.3,672285.63,0,0,0,6060.5923 +11838,14435,25778,25779,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,8.7282057,8.9043217,0,3,-8,69.59491,0,2,2,2021,14,3,64,50,1,3,0,10.90873,10.90873,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.25,50.81,54.79,55.86,8.333333333333334,1,1,0,0,9,6,5,1,898,140167.78,61050.063,275073.19,121112.23,0,0,4757.4971 +11838,14435,25779,25778,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,8.8205767,8.6755667,0,3,8,-110.91164,0,-9,-9,2021,5,0,48,47,1,0,0,16.711363,16.711363,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51.25,50.81,8.333333333333334,1,1,0,0,5,6,5,1,898,140167.78,61050.063,275073.19,121112.23,0,0,4757.4971 +11839,14436,25780,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,7.7041526,8.1303883,6.6066785,0,0,-1104.7961,0,3,3,2021,13,1,26,38,1,1,0,9.8353577,9.8353577,0,0,0,0,0,0,0,0,1,1,0,.85115355,6.5297937,53.22,55.2,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,147,1174947.8,557157,356022.72,0,0,0,3047.9226 +11840,14437,25781,-9,25782,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1139.7572,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,633.5,-39521.805,0,0,0,0,0,1365.9836 +11840,14437,25782,-9,-9,-9,1,0,29,0,2,0,3,3,-9,0,3,7.7523398,7.5491695,0,0,0,-982.01447,0,3,-9,2021,14,3,32,32,1,3,0,7.417129,7.417129,0,0,0,0,0,0,0,0,1,0,1,0,0,44,52,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,633.5,-39521.805,0,0,0,0,0,1365.9836 +11841,14438,25783,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,9.7386751,10.035273,8.4885473,0,0,-963.80145,0,3,2,2021,6,0,30,15,1,0,0,64.783165,64.783165,0,0,0,0,0,0,0,0,1,1,0,4.3125601,8.3886833,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,689,2524282.3,1450965.1,415825.66,0,0,0,15848.872 +11842,14439,25784,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.1096478,6.8432083,0,0,-974.0954,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7707477,6.9538751,54.24,49.39,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,304,741147.38,141999.45,396854.59,0,0,0,663.1048 +11843,14440,25785,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,2,5.5169969,8.1670561,8.3300667,0,0,-933.79816,-9,2,2,2021,14,4,20,0,1,4,0,1.3116957,1.3116957,.05,.05,0,0,0,0,0,2,0,0,0,8.4605713,8.2875824,47,38,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,538,338260.06,-63075.672,137918.17,2772.4441,0,0,3636.4465 +11844,14441,25786,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,6.6843624,6.9193063,0,0,-1006.923,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1486769,6.8516665,44.74,48.37,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,495,661071.94,-47.387089,411576.5,0,0,0,1107.676 +11845,14442,25787,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,0,0,-914.19147,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73344201,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,757,333196.03,0,0,0,0,5681.8545,909.55896 +11845,14443,25788,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,7.7911868,7.887814,0,0,0,-1064.4175,0,-9,-9,2021,12,0,30,36,1,0,0,9.5371857,9.5371857,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.61,20.56,-9,-9,3.333333333333333,1,1,0,0,8,4,3,1,140,278588.75,142528.08,164577.02,68027.398,6233.0156,1000.8763,1577.9346 +11846,14444,25789,25790,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,7.0759811,7.276546,5.4781656,8,3,58.388016,0,2,2,2021,10,0,35,40,1,0,0,6.5347724,6.5347724,0,0,0,0,0,0,0,0,1,1,0,5.414104,5.4356627,46.98,59.35,55.19,54.26,6.666666666666667,1,1,0,1,9,8,4,1,156.5,2359654,621458.5,597738.88,0,0,0,5699.4268 +11846,14444,25790,25789,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,7.7258902,7.9727244,0,8,-3,4.6348205,0,-9,-9,2021,11,0,25,30,1,0,0,9.7546358,9.7546358,0,0,0,0,0,0,0,0,1,1,0,8.6607351,0,55.19,54.26,46.98,59.35,8.333333333333334,1,1,0,0,11,8,4,1,156.5,2359654,621458.5,597738.88,0,0,0,5699.4268 +11847,14445,25791,25792,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.5357428,8.9346437,0,8,-1,52.56115,0,3,2,2021,10,0,22,20,1,0,0,33.038452,33.038452,0,0,0,0,0,0,0,2,0,0,0,4.6848488,0,51.83,57.2,60.02,56.42,8.333333333333334,1,1,0,0,8,9,5,1,959,1331809,281994.22,529303.06,0,0,0,3617.4666 +11847,14445,25792,25791,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,8.6506453,8.5028896,0,8,1,28.778223,0,3,3,2021,6,0,25,48,1,0,0,26.589735,26.589735,.05,.05,0,0,0,0,0,0,0,0,0,3.0878377,0,60.02,56.42,51.83,57.2,10,1,1,0,0,8,9,5,1,959,1331809,281994.22,529303.06,0,0,0,3617.4666 +11848,14446,25793,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1055.7201,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,1.2943337,0,0,1,1,0,3.7423358,0,52.6,24.62,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,724,52576.344,0,0,0,0,0,1108.8702 +11849,14447,25794,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,5.2185631,5.3566461,0,0,-1032.8197,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,4.0151587,0,0,1,1,0,5.2098727,5.0928254,30.85,17.26,-9,-9,6.666666666666667,1,1,0,0,0,7,2,0,482,325997.41,40772.387,149775.52,0,0,0,1638.8392 +11850,14448,25795,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.2977304,8.1263905,0,0,0,-942.83862,0,2,2,2021,9,0,40,40,1,0,0,11.890888,11.890888,.05,.05,0,0,0,0,0,2,0,0,0,1.2927912,0,53.61,51.1,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,240,422817.44,341730.72,189787.66,129301.02,0,0,1204.8708 +11851,14449,25796,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.8154287,6.8366966,0,0,-926.47388,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,1.6320661,0,0,1,1,0,3.9595428,6.6502213,35.2,43.17,-9,-9,10,1,1,0,0,7,1,2,0,2259,549648.69,54769.773,406653.69,0,0,0,1532.0061 +11852,14450,25797,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.1602335,8.0364447,7.2560263,0,0,-950.36438,0,2,2,2021,4,0,18,18,1,0,0,18.391663,18.391663,.05,.05,0,0,0,0,0,0,1,0,1,0,7.2366962,55.35,41.97,-9,-9,6.666666666666667,1,1,0,0,13,2,4,0,428,362576.38,251025.06,245649.86,47655.027,5109.582,245.67505,2121.9761 +11852,14451,25798,-9,25797,-9,1,0,25,0,0,0,1,1,-9,0,5,8.2460527,8.108901,0,0,0,-862.18237,0,2,1,2021,10,1,35,25,1,1,1,11.145786,11.145786,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,4,5,0,0,9,2,4,0,1466,-23692.287,1763.1892,0,0,0,381.17694,1170.8599 +11852,14452,25799,-9,25797,-9,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1016.1385,0,2,-9,2021,20,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,34.98,42.37,-9,-9,5,1,1,0,0,0,2,1,0,727,-49846.32,0,0,0,0,0,382.94382 +11852,14453,25800,-9,25797,-9,1,0,20,0,0,0,2,2,-9,0,4,5.8705173,5.9825616,0,0,0,-904.61346,0,2,-9,2021,12,1,24,0,1,1,1,1.7993679,1.7993679,.05,.05,0,0,0,0,0,0,1,0,1,0,0,34.56,63.72,-9,-9,6.666666666666667,1,1,0,0,1,2,2,0,213,128081.32,-85634.711,0,0,0,0,869.38977 +11853,14454,25801,25802,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,56,0,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,56.64,28.07,54,46,6.666666666666667,1,1,0,0,3,5,1,1,577.5,196488.31,0,142200.3,0,0,0,2392.9404 +11853,14454,25802,25801,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,56,9,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,128.80031,0,0,1,1,0,2.7462623,0,54,46,56.64,28.07,8,1,1,0,0,0,5,1,1,577.5,196488.31,0,142200.3,0,0,0,2392.9404 +11854,14455,25803,25804,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.3803,6.9970436,7,0,-4.6197319,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.3448462,59.53,56.44,61.51,52.79,8.333333333333334,1,1,0,0,0,4,4,1,453.5,791570.13,278371.94,369745.41,0,0,0,3085.2637 +11854,14455,25804,25803,-9,-9,1,1,85,0,0,0,3,3,-9,0,4,0,8.1028166,8.0079479,7,9,-63.893009,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.7115817,8.0322113,61.51,52.79,59.53,56.44,10,1,1,0,0,0,4,4,1,453.5,791570.13,278371.94,369745.41,0,0,0,3085.2637 +11855,14456,25805,-9,25807,25810,1,0,17,0,3,1,2,0,-9,0,4,0,0,0,0,0,-941.42871,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,2,3,0,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25806,-9,25807,25810,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-877.52661,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25807,25810,-9,-9,1,0,42,0,3,0,3,3,-9,0,4,0,0,0,16,1,67.53064,-9,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25808,-9,25807,25810,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.52264,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25809,-9,25807,25810,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.95782,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11855,14456,25810,25807,-9,-9,1,1,41,0,3,0,3,3,-9,0,4,7.4021511,7.4669137,0,16,-1,114.78245,-9,3,3,2021,9,0,40,0,1,1,0,4.3767552,4.3767552,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,8,1,1,0,0,1,4,2,1,1479.6666,34867.91,0,172169.25,117096.11,0,0,2718.4045 +11856,14457,25811,25812,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.8413305,8.8829727,0,25,-6,56.267632,0,3,3,2021,10,0,43,39,1,1,0,11.961057,11.961057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,53,54,53,7,1,1,0,0,8,5,5,1,1302,1533347.6,1217239.8,262397.25,15236.051,8950.9795,1361.321,4139.5239 +11856,14457,25812,25811,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.2389393,8.2152805,0,5,6,-10.72156,0,3,3,2021,9,0,43,43,1,1,0,14.253469,14.253469,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,53,51,53,7,1,1,0,0,4,5,5,1,1302,1533347.6,1217239.8,262397.25,15236.051,8950.9795,1361.321,4139.5239 +11857,14458,25813,25814,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,8.4608955,8.1820126,0,9,-3,123.75629,0,3,2,2021,7,0,77,37,1,0,0,6.4945359,6.4945359,0,0,0,0,0,0,0,2,0,0,0,2.3370736,0,57.33,53.46,48.29,47.89,8.333333333333334,1,1,0,0,9,10,5,1,219,245379.8,29221.734,332724.44,223305.66,39582.008,0,4310.9346 +11857,14458,25814,25813,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.9484558,8.8200235,5.695507,9,3,-47.797421,0,3,2,2021,8,0,35,36,1,0,0,18.255869,18.255869,0,0,0,0,0,0,0,2,0,0,0,5.9317975,0,48.29,47.89,57.33,53.46,8.333333333333334,1,1,0,0,10,10,5,1,219,245379.8,29221.734,332724.44,223305.66,39582.008,0,4310.9346 +11858,14459,25815,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,4.9096093,5.2518301,0,0,-989.06036,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.251976,47.07,26.08,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,526,-42682.641,78827.305,0,0,0,0,1753.7421 +11859,14460,25816,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-951.1944,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,59.42,31.95,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,402,270305.94,0,250407.27,0,0,0,1199.1656 +11859,14461,25817,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-919.55396,0,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.15,19.97,-9,-9,1.666666666666667,1,1,0,1,9,4,1,1,136,-54330.883,0,0,0,826.40015,0,991.34039 +11860,14462,25818,25819,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.4930058,7.1083136,53,4,122.30543,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4651179,7.4592433,49.28,50.19,43.07,51.88,8.333333333333334,1,1,0,0,0,10,2,1,657,1024027.3,243802.58,336782.41,0,7966.6831,0,2609.9207 +11860,14462,25819,25818,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,3.8797202,3.8471684,53,-4,-33.870758,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9854441,3.858072,43.07,51.88,49.28,50.19,6.666666666666667,1,1,0,0,0,10,2,1,657,1024027.3,243802.58,336782.41,0,7966.6831,0,2609.9207 +11861,14463,25820,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1001.5311,0,3,3,2021,13,1,0,35,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.69,40.21,-9,-9,6.666666666666667,1,1,0,0,14,4,1,1,441,8567.1768,0,0,0,1970.2058,581.32922,345.73218 +11862,14464,25821,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.3359461,8.437582,0,0,0,-930.98633,0,2,2,2021,9,0,45,48,1,0,0,9.4088011,9.4088011,0,0,0,0,0,0,0,2,1,1,0,2.1530192,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,14,10,4,0,1120,860916.88,626216.94,0,0,0,4124.8804,1056.9652 +11863,14465,25822,25823,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.9840775,8.5809498,4.6141357,8,0,-88.572914,0,3,3,2021,9,0,10,10,1,0,0,81.547447,81.547447,.05,.05,0,0,0,0,0,0,0,0,0,4.8986278,4.7767253,44.95,52.41,29.22,58.49,6.666666666666667,1,1,0,0,8,11,5,1,845.5,1358995.3,512995.91,512277.78,0,0,0,9462.5459 +11863,14465,25823,25822,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.7538309,9.8143339,8.0973005,8,0,-35.200581,0,3,3,2021,21,10,35,30,1,10,0,58.177654,58.177654,.05,.05,0,0,0,0,0,0,0,0,0,5.5412221,8.442049,29.22,58.49,44.95,52.41,5,1,1,0,0,11,11,5,1,845.5,1358995.3,512995.91,512277.78,0,0,0,9462.5459 +11864,14466,25824,25825,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,6.7188482,6.6350508,0,8,3,61.163124,0,-9,-9,2021,10,0,84,50,1,1,0,1.0966439,1.0966439,0,0,0,0,0,0,0,0,1,1,0,5.7141032,0,52,48,55.2,49.4,7,1,1,0,0,1,5,2,0,1446,320055.94,237980.22,97934.031,0,0,0,2058.1067 +11864,14466,25825,25824,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.9778891,5.9666433,8,-3,-54.760601,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4564123,5.6700206,55.2,49.4,52,48,8.333333333333334,1,1,0,0,0,5,2,0,1446,320055.94,237980.22,97934.031,0,0,0,2058.1067 +11865,14467,25826,25827,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,4.3664675,4.2629004,49,-6,-87.659027,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,4.0614877,59.01,38.88,57.16,56.15,8.333333333333334,1,1,0,0,12,10,2,1,1135,649360.13,65308.047,296751.81,0,0,0,1291.3816 +11865,14467,25827,25826,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.7618961,6.536274,49,6,6.5177946,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5482554,6.671989,57.16,56.15,59.01,38.88,8.333333333333334,1,1,0,0,9,10,2,1,1135,649360.13,65308.047,296751.81,0,0,0,1291.3816 +11866,14468,25828,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,4,5.213119,5.6084676,0,0,0,-1162.2762,-9,3,3,2021,9,0,21,0,1,0,0,.80897498,.80897498,0,0,0,0,0,0,0,0,1,1,0,0,0,39.73,57.61,-9,-9,10,1,1,0,0,7,11,2,0,621,74709.922,0,174846.63,0,4600.9019,0,1348.0178 +11867,14469,25829,-9,25830,-9,1,1,35,0,0,0,1,1,-9,0,3,7.8960719,7.4615626,0,0,0,-965.82428,0,1,1,2021,4,0,30,36,1,0,0,8.5770588,8.5770588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.88,45.37,-9,-9,5,1,1,0,0,12,10,3,1,632,-231682.09,8940.6318,0,0,0,0,1386.9263 +11867,14470,25830,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,5.8186908,5.9433565,0,0,0,-943.12732,0,-9,-9,2021,10,1,10,10,1,1,0,4.4164534,4.4164534,0,0,0,0,0,0,0,0,1,1,0,3.6700535,0,52.83,26.08,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,234,199967.5,132982.23,0,0,0,0,336.27835 +11868,14471,25831,25832,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.8053575,8.0258131,0,29,2,-141.51553,0,3,3,2021,10,0,40,39,1,0,0,7.8971381,7.8971381,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,58.56,46.45,31.45,44.09,3.333333333333333,1,1,0,0,11,4,4,1,427.5,248696.44,79432.961,195978.02,0,0,0,2893.2622 +11868,14471,25832,25831,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.0117025,7.907383,0,29,-2,4.9135804,0,2,3,2021,21,9,37,40,1,9,0,10.046268,10.046268,0,0,0,0,0,0,0,0,1,1,0,2.1890728,0,31.45,44.09,58.56,46.45,3.333333333333333,1,1,0,0,8,4,4,1,427.5,248696.44,79432.961,195978.02,0,0,0,2893.2622 +11868,14472,25833,-9,25832,25831,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1062.6737,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.21396787,0,36.37,57.89,-9,-9,8.333333333333334,1,1,0,0,2,4,2,1,337,0,0,0,0,0,0,1051.8042 +11869,14473,25834,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,9.1800375,10.067492,7.9312468,0,0,-913.12946,-9,2,2,2021,8,0,48,0,1,0,0,29.479424,29.479424,.05,.05,0,0,0,0,0,2,0,0,0,0,8.3495483,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,12,4,5,0,576,394206.25,230579.8,219733.02,11197.704,4765.9307,342.05368,5443.6934 +11869,14474,25835,-9,25834,-9,1,1,23,0,0,0,2,2,-9,0,3,8.3381424,8.071476,0,0,0,-947.25128,0,2,-9,2021,10,0,40,45,1,0,1,12.36014,12.36014,.05,.05,0,0,0,0,0,0,0,0,0,5.2661176,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,5,4,4,0,1157,322796.78,13527.127,0,0,16783.584,0,1381.7588 +11870,14475,25836,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8041954,8.4033728,0,1,-6,21.356943,0,3,2,2021,9,0,61,41,1,0,0,11.155469,11.155469,.05,.05,0,0,0,0,0,0,0,0,0,1.7564116,0,43.42,62.33,47.77,56.48,8.333333333333334,1,1,0,0,8,5,5,1,247,202420.61,291561.94,74837.633,0,0,0,2593.5879 +11870,14476,25837,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.937645,8.9474258,0,1,6,-225.35066,0,3,2,2021,12,2,48,54,1,2,0,20.353647,20.353647,.05,.05,0,0,0,0,0,0,0,0,0,2.4728129,0,47.77,56.48,43.42,62.33,10,1,1,0,0,8,5,5,1,387,149679.58,-46767.461,53819.027,-4965.4287,0,1537.4775,3106.7458 +11871,14477,25838,-9,25840,25839,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-852.17877,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14477,25839,25840,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,2.7623894,3.0426998,0,6,11,-85.398087,0,3,3,2021,9,0,40,40,1,1,0,.049373753,.049373753,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,50,55,8,2,3,0,0,2,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14477,25840,25839,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,0,0,0,26,-11,100.97565,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,54,54,8,2,3,0,0,0,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14477,25841,-9,25840,25839,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.0231,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,1245,21464.518,-16685.469,0,0,0,0,2014.6858 +11871,14478,25842,-9,25840,25839,1,0,22,0,2,0,2,2,-9,0,4,7.8877568,7.8219519,0,0,0,-1166.1176,0,3,2,2021,11,0,35,24,1,2,1,8.1423979,8.1423979,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,0,308,53392.508,0,0,0,0,0,1218.2375 +11871,14479,25843,-9,25840,25839,1,1,18,0,2,0,2,2,1,0,5,0,0,0,0,0,-1054.5157,-9,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,10,2,3,1,0,0,8,1,0,518,0,0,0,0,0,0,0 +11872,14480,25844,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,6.5165591,6.2862349,0,0,0,-957.16461,0,2,2,2021,15,3,60,60,1,3,0,1.3224304,1.3224304,0,0,0,0,0,0,0,0,1,1,0,0,0,34.6,53.57,-9,-9,5,1,1,0,0,9,12,2,0,1041,77325.125,-15027.314,124923.45,0,0,0,689.26025 +11873,14481,25845,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,7.7762933,7.7904463,0,0,0,-961.74146,0,2,2,2021,9,0,47,0,1,0,0,5.2318435,5.2318435,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,2,11,3,0,940,-174153.5,37113.789,69611.531,65213.805,-293.83832,0,1981.088 +11874,14482,25846,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.6959,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,69.8,25.93,-9,-9,10,1,1,0,0,0,10,1,0,73,-40067.871,0,0,0,0,0,1531.3268 +11875,14483,25847,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.4933281,8.5047312,4.6498084,0,0,-965.32544,0,2,2,2021,18,7,57,47,1,7,0,8.4791193,8.4791193,.05,.05,0,0,0,0,0,0,1,1,0,5.2472434,0,38.76,58.16,-9,-9,5,1,1,0,0,10,1,5,1,1565.5,123850.23,136362.47,98514.695,51432.031,5758.0146,8041.04,2270.6306 +11875,14483,25848,-9,25847,-9,1,1,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-1015.6415,-9,2,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.72,57.73,-9,-9,8.333333333333334,1,1,0,0,0,1,5,1,1565.5,123850.23,136362.47,98514.695,51432.031,5758.0146,8041.04,2270.6306 +11876,14484,25849,25850,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,6.7186236,7.1971259,6.3070388,8,-1,-6.8382583,0,3,3,2021,7,0,11,14,1,0,0,10.168427,10.168427,.05,.05,0,0,0,0,0,0,1,1,0,0,6.2912045,59.14,52.5,59.89,34.63,10,1,1,0,0,9,10,4,1,717.5,392688.94,386835.44,166200.52,0,0,4183.0381,3513.8398 +11876,14484,25850,25849,-9,-9,1,1,68,0,0,0,2,2,-9,1,3,8.3694487,8.3025761,0,8,1,40.130047,0,-9,-9,2021,8,0,40,40,1,0,0,10.56403,10.56403,.05,.05,0,1,0,4.1218786,0,0,1,1,0,3.270263,0,59.89,34.63,59.14,52.5,8.333333333333334,1,1,0,0,9,10,4,1,717.5,392688.94,386835.44,166200.52,0,0,4183.0381,3513.8398 +11877,14485,25851,25855,-9,-9,1,0,30,1,3,0,2,2,-9,0,4,3.9251993,3.4823818,0,1,-11,-59.511398,-9,3,2,2021,7,0,28,0,1,0,0,.14410342,.14410342,0,0,0,0,0,0,0,0,1,1,0,0,0,53.54,52.35,26.26,51.93,6.666666666666667,1,1,0,0,4,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25852,-9,25851,25855,1,0,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-994.60889,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25853,-9,25851,25855,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-954.33276,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25854,-9,25851,25855,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.60834,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11877,14485,25855,25851,-9,-9,1,1,41,1,3,0,2,2,-9,1,2,0,0,0,1,11,40.34856,-9,-9,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.26,51.93,53.54,52.35,1.666666666666667,1,1,0,0,0,4,2,0,769.40002,-62986.113,-21387.619,0,0,-239.86279,-312.61139,2714.1362 +11878,14486,25856,-9,-9,-9,1,0,19,0,0,0,2,2,0,0,4,0,0,0,0,0,-1000.4745,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,990,64732.016,0,0,0,0,0,0 +11879,14487,25857,25860,-9,-9,1,0,25,1,2,0,2,2,0,0,4,0,0,0,5,-6,58.824654,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,10,1,1,0,1,4,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11879,14487,25858,-9,25857,25860,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.5574,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11879,14487,25859,-9,25857,25860,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.7347,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11879,14487,25860,25857,-9,-9,1,1,31,1,2,0,1,1,-9,0,5,8.5054159,8.2622766,0,5,6,36.202827,0,1,1,2021,7,0,60,60,1,0,0,8.1196003,8.1196003,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,3,4,0,0,5,7,3,0,3111.75,55983.492,1940.0568,222400.08,165510.33,10518.587,0,4065.8655 +11880,14488,25861,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,8.1596575,8.316844,0,0,0,-990.90295,0,-9,-9,2021,9,2,38,38,1,2,0,12.14614,12.14614,.05,.05,0,0,0,0,0,0,0,0,0,2.9810905,0,49.17,58.56,-9,-9,8.333333333333334,2,3,0,0,3,10,4,0,420,281719.5,-143691.39,0,0,0,683.70038,1907.9882 +11881,14489,25862,25863,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,11,-7,10.631853,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,19.03,59.71,26.95,0,1,1,0,0,0,11,2,0,246.5,37592.477,107829.67,0,0,0,0,2852.1289 +11881,14489,25863,25862,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,6.5980067,6.79705,11,7,-184.95964,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.6636457,59.71,26.95,38.05,19.03,6.666666666666667,1,1,0,0,4,11,2,0,246.5,37592.477,107829.67,0,0,0,0,2852.1289 +11882,14490,25864,-9,-9,-9,1,0,19,0,1,1,2,0,0,0,4,0,6.813623,6.3198333,0,0,-1073.5969,-9,2,2,2021,21,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0449476,0,46.56,48.99,-9,-9,6.666666666666667,1,1,0,0,2,12,2,1,201,109264.22,0,0,0,817.4071,0,835.6366 +11883,14491,25865,25866,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.4977808,7.3643866,17,7,56.076637,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,0,1,6.6884995,7.3061404,62.25,45.63,46.39,60.99,8.333333333333334,1,1,0,0,0,2,3,1,1094,1343379.5,1028986.5,306916.09,5463.9678,0,0,1954.5769 +11883,14491,25866,25865,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.1026773,6.8561201,17,-7,38.272602,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.4351749,6.9769144,46.39,60.99,62.25,45.63,8.333333333333334,1,1,0,0,8,2,3,1,1094,1343379.5,1028986.5,306916.09,5463.9678,0,0,1954.5769 +11883,14492,25867,-9,25866,25865,1,1,35,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1014.6478,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,59.04,54.12,-9,-9,3.333333333333333,4,2,1,1,1,2,1,1,617,-262734.03,0,0,0,0,0,274.3288 +11884,14493,25868,-9,25870,25869,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-934.92432,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,469.66666,213764.59,138239.83,134317.52,46309.895,810.42365,0,2724.6567 +11884,14493,25869,25870,-9,-9,1,1,41,1,1,0,2,2,-9,0,4,8.5519753,8.513299,0,3,12,73.928253,0,-9,-9,2021,9,0,50,50,1,1,0,12.670711,12.670711,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,50.92,33.35,8,4,1,0,0,1,5,4,1,469.66666,213764.59,138239.83,134317.52,46309.895,810.42365,0,2724.6567 +11884,14493,25870,25869,-9,-9,1,0,29,1,1,0,2,2,-9,0,3,7.8633747,7.8509331,0,3,-12,-86.086487,0,-9,-9,2021,13,1,42,27,1,1,0,4.8064461,4.8064461,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,50.92,33.35,51,56,5,1,1,0,0,8,5,4,1,469.66666,213764.59,138239.83,134317.52,46309.895,810.42365,0,2724.6567 +11885,14494,25871,25873,-9,-9,1,1,58,0,1,0,2,2,-9,0,3,8.296484,8.2551918,0,12,9,-8.9093704,0,-9,-9,2021,7,0,45,49,1,0,0,9.6709461,9.6709461,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,48.87,32.71,6.666666666666667,1,1,0,0,8,11,5,1,629,1667051.8,1055863.3,368688.25,0,0,0,3825.7183 +11885,14494,25872,-9,25873,25871,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.2677,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,629,1667051.8,1055863.3,368688.25,0,0,0,3825.7183 +11885,14494,25873,25871,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.8010283,8.3807859,0,12,0,22.910664,0,2,2,2021,10,3,51,50,1,3,0,12.967353,12.967353,.05,.05,0,0,0,0,0,0,1,1,0,2.6428356,0,48.87,32.71,55.96,49.93,8.333333333333334,1,1,0,0,12,11,5,1,629,1667051.8,1055863.3,368688.25,0,0,0,3825.7183 +11885,14495,25874,-9,25873,25871,1,0,22,0,1,0,1,1,1,0,4,7.8132401,7.7528224,0,0,0,-990.94934,-9,1,2,2021,6,0,38,0,1,0,1,7.457654,7.457654,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,11,4,1,280,100.32301,0,0,0,0,0,813.91632 +11886,14496,25875,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.0797439,3.614696,0,0,-1025.4131,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1139035,3.640626,56.7,42.76,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,372,257636.08,-76917.469,300959.22,0,0,0,571.7804 +11887,14497,25876,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,5,8.0494518,8.0824804,0,0,0,-909.92657,-9,2,2,2021,2,0,40,0,1,0,0,11.206336,11.206336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.47,48.05,-9,-9,10,1,1,0,0,9,13,4,1,570,193602.58,111584.38,0,0,0,0,1958.8602 +11888,14498,25877,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,0,0,0,0,0,-946.82904,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,40.03,32.08,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,428,-21772.428,0,0,0,0,0,916.56439 +11888,14499,25878,-9,25877,-9,1,1,30,0,0,0,2,2,-9,0,4,7.3353748,7.4276867,0,0,0,-1048.5464,0,3,-9,2021,10,2,37,45,1,2,0,5.3111343,5.3111343,.05,.05,0,0,0,0,0,0,1,1,0,1.6241293,0,50.65,60.47,-9,-9,10,1,1,0,0,10,13,3,0,1158,-46789.977,82760.898,0,0,0,694.52686,618.01282 +11888,14500,25879,-9,25877,-9,1,1,27,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1014.454,0,3,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.67,50.13,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,1244,-5949.6768,0,0,0,0,0,-16.439039 +11889,14501,25880,-9,25881,-9,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-981.69287,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,2,1,1,1039.3334,116025.68,0,0,0,0,0,-137.54401 +11889,14501,25881,-9,-9,-9,1,0,30,2,2,0,1,1,-9,0,3,0,0,0,0,0,-1053.084,0,3,3,2021,11,2,0,25,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.72,55.04,-9,-9,6.666666666666667,2,3,0,0,6,2,1,1,1039.3334,116025.68,0,0,0,0,0,-137.54401 +11889,14501,25882,-9,25881,-9,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.5907,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,2,1,1,1039.3334,116025.68,0,0,0,0,0,-137.54401 +11890,14502,25883,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,3,8.2706175,7.8827815,0,0,0,-926.15771,0,3,2,2021,7,0,40,0,1,0,0,9.7172241,9.7172241,0,0,0,0,0,0,0,0,1,1,0,0,0,43.21,38.53,-9,-9,6.666666666666667,1,1,0,0,1,6,4,0,2506,128686.17,159323,0,0,5726.6074,0,3649.0188 +11891,14503,25884,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.7865763,8.8320351,0,0,0,-1114.8596,0,-9,-9,2021,11,0,33,43,1,0,0,23.190889,23.190889,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.46,63.68,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,294,58362.379,-21265.625,0,0,0,0,3049.3271 +11892,14504,25885,25886,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.2915545,8.3790493,0,9,-7,-91.872917,0,-9,-9,2021,12,0,37,74,1,0,0,15.184308,15.184308,0,0,0,0,0,0,0,0,0,0,0,0,0,40.98,52.59,48.28,60.18,6.666666666666667,1,1,0,0,14,9,5,1,923.5,2254728.5,1441172.6,631266,0,0,0,3832.1536 +11892,14504,25886,25885,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.1021509,8.1659451,7.5807304,9,7,55.7061,0,3,2,2021,8,0,38,38,1,0,0,8.3363008,8.3363008,0,0,0,0,0,0,0,0,0,0,0,0,7.1923594,48.28,60.18,40.98,52.59,8.333333333333334,1,1,0,0,12,9,5,1,923.5,2254728.5,1441172.6,631266,0,0,0,3832.1536 +11893,14505,25887,25888,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,9.236412,9.1219311,0,12,4,-59.663437,0,2,2,2021,7,0,56,51,1,0,0,16.221048,16.221048,0,0,0,0,0,0,0,0,0,0,0,3.561228,0,57.06,57.76,30.85,65.26000000000001,10,1,1,0,0,12,1,5,1,1892,983208.5,0,489626.41,153453.56,0,0,4165.4365 +11893,14505,25888,25887,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.6125565,8.3223648,0,12,-4,-6.5675669,0,1,2,2021,19,7,44,40,1,7,0,12.703324,12.703324,0,0,0,0,0,0,0,0,0,0,0,0,0,30.85,65.26000000000001,57.06,57.76,8.333333333333334,1,1,0,0,12,1,5,1,1892,983208.5,0,489626.41,153453.56,0,0,4165.4365 +11894,14506,25889,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,5.7988181,5.8497467,0,0,-1004.4055,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,22.850965,0,0,1,1,0,0,5.7764001,53.53,19.14,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,645,-55910.348,0,0,0,0,0,1470.949 +11895,14507,25890,25891,-9,-9,1,0,42,0,1,0,2,2,-9,0,5,8.1799726,8.0872202,0,9,-2,-10.988234,0,2,2,2021,12,4,32,32,1,4,0,12.450784,12.450784,.05,.05,0,0,0,0,0,2,1,1,0,.90528119,0,44.16,61.04,43.6,51.61,8.333333333333334,1,1,0,0,15,4,5,1,719.33331,956607.06,906603.5,246592.41,32022.951,0,0,3573.3298 +11895,14507,25891,25890,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.6105347,8.3955135,0,9,2,27.864527,-9,2,-9,2021,12,0,50,0,1,0,0,14.905567,14.905567,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.6,51.61,44.16,61.04,5,1,1,0,0,15,4,5,1,719.33331,956607.06,906603.5,246592.41,32022.951,0,0,3573.3298 +11895,14507,25892,-9,25890,25891,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.88928,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,719.33331,956607.06,906603.5,246592.41,32022.951,0,0,3573.3298 +11896,14508,25893,25894,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,0,0,6,0,-46.326035,0,2,2,2021,7,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.6148443,0,54.02,43.98,51.8,44.35,10,1,1,0,0,0,12,3,1,382.5,287812.94,38252.852,0,0,0,0,4296.3271 +11896,14508,25894,25893,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.5172987,8.0469723,6,0,77.2061,0,2,2,2021,11,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.6703172,8.3026972,51.8,44.35,54.02,43.98,8.333333333333334,1,1,0,0,0,12,3,1,382.5,287812.94,38252.852,0,0,0,0,4296.3271 +11897,14509,25895,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,0,6.929378,7.0059667,0,0,-956.52087,1,-9,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4880619,0,51.83,57.2,-9,-9,5,1,1,0,1,3,1,2,0,188,-91895.445,0,0,0,0,0,815.83411 +11898,14510,25896,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,7.9293127,7.9157867,0,0,0,-887.92072,0,2,2,2021,10,0,59,49,1,0,0,6.6698442,6.6698442,0,0,0,0,0,0,0,0,0,0,0,3.5719934,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,0,9,1,4,0,290,-86541.242,0,0,0,0,0,1069.16 +11899,14511,25897,25898,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.5886145,8.4687891,0,8,0,124.97421,-9,-9,-9,2021,12,1,40,0,1,1,0,15.444698,15.444698,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.59,58.37,33.74,63,3.333333333333333,1,1,0,0,11,5,5,1,1509.6666,161446.58,81071.461,73647.156,29678.348,0,7524.915,3458.5327 +11899,14511,25898,25897,-9,-9,1,0,41,0,1,0,1,1,-9,0,4,8.4193983,8.5029736,0,8,0,32.428368,0,1,1,2021,15,4,30,30,1,4,0,14.582602,14.582602,0,0,0,0,0,0,0,0,1,1,0,0,0,33.74,63,43.59,58.37,5,1,1,0,1,9,5,5,1,1509.6666,161446.58,81071.461,73647.156,29678.348,0,7524.915,3458.5327 +11899,14511,25899,-9,25898,25897,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.54163,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1509.6666,161446.58,81071.461,73647.156,29678.348,0,7524.915,3458.5327 +11900,14512,25900,25901,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.7009883,7.800519,0,30,1,-148.78671,0,2,2,2021,12,1,17,20,1,1,0,18.917196,18.917196,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,14,9,5,1,651.5,347432.06,82758.859,370248.63,66176.859,32727.258,0,12591.021 +11900,14512,25901,25900,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,9.9068871,10.272544,0,30,-1,18.039616,0,2,2,2021,6,0,25,20,1,0,0,75.410248,75.410248,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,14,9,5,1,651.5,347432.06,82758.859,370248.63,66176.859,32727.258,0,12591.021 +11900,14513,25902,-9,25900,25901,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-988.91266,-9,1,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4064174,0,47.72,53.77,-9,-9,8.333333333333334,1,1,0,0,3,9,2,1,1076,-32433.885,0,0,0,0,0,1306.1283 +11900,14514,25903,-9,25900,25901,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-964.62842,-9,1,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,33.58,58.88,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,570,113335.77,0,0,0,0,0,0 +11901,14515,25904,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,7.6750531,7.7144694,6.6101727,0,0,-987.43903,0,2,2,2021,5,0,21,21,1,0,0,12.811996,12.811996,0,0,0,1,0,0,0,27,1,1,0,1.3901939,6.4848485,60.05,42.65,-9,-9,10,1,1,0,0,8,8,3,1,479,375011.59,50463.258,331320.97,0,0,-540.49481,1871.9249 +11902,14516,25905,25906,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.9192505,7.7944107,0,7,-2,-115.53368,0,3,-9,2021,6,0,37,42,1,0,0,10.150104,10.150104,.05,.05,0,0,0,0,0,0,0,0,0,6.5282617,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,9,10,4,1,1901.5,184257.56,163500.36,192061.39,124020.81,171.24939,13351.545,3835.7891 +11902,14516,25906,25905,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.8405366,8.2824545,7.0288057,7,2,-26.021147,0,3,3,2021,8,0,19,19,1,0,0,15.931787,15.931787,0,0,0,0,0,0,0,0,0,0,0,7.7912035,0,57.33,53.46,57.33,53.46,8.333333333333334,1,1,0,0,9,10,4,1,1901.5,184257.56,163500.36,192061.39,124020.81,171.24939,13351.545,3835.7891 +11902,14517,25907,-9,25906,-9,1,1,23,0,0,0,1,1,-9,0,5,7.1415753,7.3567219,0,0,0,-1003.6117,0,1,2,2021,7,1,8,8,1,1,1,16.242527,16.242527,.05,.05,0,0,0,0,0,0,0,0,0,9.4590721,0,55.64,46.24,-9,-9,10,1,1,0,0,2,10,2,1,502,70464.156,57391.039,0,0,-1751.1141,0,6562.9233 +11903,14518,25908,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1006.0096,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.55,22.17,-9,-9,10,1,1,0,0,0,4,1,1,129,77981.086,0,0,0,0,-399.22968,-487.35086 +11904,14519,25909,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.4533596,8.3423662,0,0,0,-903.25421,0,3,3,2021,7,0,37,37,1,0,0,14.562982,14.562982,0,0,0,0,0,0,0,0,0,0,0,4.9478526,0,54.1,48.06,-9,-9,8.333333333333334,1,1,0,0,7,11,5,1,1954,-87150.672,0,0,0,0,0,2076.9116 +11904,14520,25910,-9,-9,25909,1,1,22,0,0,0,1,1,1,0,3,6.6649623,6.1922874,0,0,0,-1021.9076,-9,3,2,2021,10,3,30,0,1,3,1,3.0743401,3.0743401,0,0,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,-9,-9,8.333333333333334,1,1,0,0,5,11,2,1,1119,-90407.883,0,0,0,6448.6772,0,-387.65417 +11905,14521,25911,25912,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,8.3565769,8.2138348,0,17,0,-10.835578,0,2,2,2021,6,0,40,40,1,0,0,11.873493,11.873493,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,32.09,27.36,8.333333333333334,1,1,0,0,11,1,3,1,1256.5,149899.42,96257.125,229147.83,92343.391,0,0,1183.3174 +11905,14521,25912,25911,-9,-9,1,0,52,0,0,0,1,1,-9,0,1,0,0,0,17,0,-50.000206,0,2,2,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,32.09,27.36,57.06,57.76,0,1,1,0,0,0,1,3,1,1256.5,149899.42,96257.125,229147.83,92343.391,0,0,1183.3174 +11905,14522,25913,-9,25912,25911,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1009.0325,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.94,56.26,-9,-9,8.333333333333334,1,1,0,0,0,1,1,1,323,0,0,0,0,0,0,0 +11906,14523,25914,25915,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.6187177,6.6215453,0,37,3,25.696562,0,3,3,2021,9,0,44,44,1,0,0,2.8683968,2.8683968,0,0,0,0,0,0,0,0,0,0,0,0,0,49.59,58.37,38.34,62.12,3.333333333333333,1,1,0,1,11,12,2,1,333,153651.94,78553.898,76517.719,0,0,0,-1499.1213 +11906,14523,25915,25914,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,0,0,0,37,-3,61.128384,0,2,3,2021,26,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,38.34,62.12,49.59,58.37,3.333333333333333,1,1,1,1,11,12,2,1,333,153651.94,78553.898,76517.719,0,0,0,-1499.1213 +11907,14524,25916,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,5,7.1778798,7.5604477,6.3249416,0,0,-1067.4351,0,-9,-9,2021,6,0,35,0,1,0,0,5.7168951,5.7168951,0,0,0,0,0,0,0,2,1,1,0,7.2140522,6.487359,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,245,502485.28,373532.28,267545.91,-259.11191,6411.4214,0,1788.8271 +11908,14525,25917,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.834455,8.1770706,0,0,0,-1082.1758,0,3,3,2021,6,0,40,39,1,0,0,9.0528402,9.0528402,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,12,1,4,0,282,0,0,0,0,0,0,1223.7307 +11908,14526,25918,-9,-9,25917,1,0,23,0,0,0,2,2,-9,0,5,7.5667901,7.4292493,0,0,0,-1028.8771,0,-9,2,2021,18,4,44,44,1,4,1,4.7579875,4.7579875,0,0,0,0,0,0,0,0,0,0,0,0,0,43.09,61.58,-9,-9,8.333333333333334,1,1,0,0,4,1,3,0,909,-139938.69,0,0,0,0,0,206.42761 +11909,14527,25919,25920,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,5.9861908,5.7424192,66,-1,129.0807,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,5.7346187,55.95,39.4,46.64,42.72,8.333333333333334,1,1,0,0,5,9,2,1,1255,414031.25,-18075.518,315952.44,0,0,0,1475.882 +11909,14527,25920,25919,-9,-9,1,1,84,0,0,0,3,3,-9,0,1,0,0,0,66,1,-153.13081,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,67.438507,0,0,1,1,0,0,0,46.64,42.72,55.95,39.4,8.333333333333334,1,1,0,0,0,9,2,1,1255,414031.25,-18075.518,315952.44,0,0,0,1475.882 +11910,14528,25921,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.6756802,6.3238082,0,0,-1022.1227,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.749208,6.7218604,67.21000000000001,37.95,-9,-9,10,1,1,0,0,5,2,2,1,288,174527.09,-61217.996,72601.813,0,0,0,2073.3083 +11911,14529,25922,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,8.0106697,7.9094648,0,0,-1060.1482,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2306876,7.5404034,51.77,58.57,-9,-9,10,1,1,0,0,0,10,3,1,564,133947.41,142512.11,0,0,0,0,1346.922 +11912,14530,25923,-9,-9,-9,1,0,63,0,1,0,2,2,-9,0,4,0,8.0021982,8.1354408,0,0,-1066.1003,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.2843757,8.1591406,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,4,8,3,1,1841,171173.8,214665.2,0,0,0,0,1567.1401 +11912,14531,25924,-9,25925,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.3065,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,3,1,317,-14187.264,0,0,0,0,-150.29015,885.13293 +11912,14531,25925,-9,25923,-9,1,0,27,0,1,0,2,2,-9,0,3,7.8009148,7.9094715,0,0,0,-1058.3038,0,2,3,2021,12,0,25,25,1,0,0,10.305283,10.305283,0,0,0,0,0,0,0,0,1,1,0,0,0,49.84,48.57,-9,-9,8.333333333333334,1,1,0,0,11,8,3,1,317,-14187.264,0,0,0,0,-150.29015,885.13293 +11913,14532,25926,-9,25928,25927,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-964.32611,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,1368,172002.69,-37314.133,128342.23,80065.586,7141.9609,0,2034.4403 +11913,14532,25927,25928,-9,-9,1,1,36,1,1,0,3,3,-9,0,4,8.0166817,7.9193931,0,4,2,33.293156,0,-9,-9,2021,10,0,40,40,1,1,0,8.2334127,8.2334127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,52.99,51.28,7,4,1,0,0,1,2,3,1,1368,172002.69,-37314.133,128342.23,80065.586,7141.9609,0,2034.4403 +11913,14532,25928,25927,-9,-9,1,0,34,1,1,0,2,2,-9,0,3,0,0,0,4,-2,-133.47598,0,2,2,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7018309,0,52.99,51.28,50,57,6.666666666666667,1,1,0,0,9,2,3,1,1368,172002.69,-37314.133,128342.23,80065.586,7141.9609,0,2034.4403 +11914,14533,25929,-9,-9,-9,1,0,55,0,2,0,1,1,-9,0,4,8.4251156,8.3598242,0,0,0,-1106.819,0,2,1,2021,8,0,35,37,1,0,0,14.777083,14.777083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.2,55.41,-9,-9,6.666666666666667,3,4,0,0,5,8,3,0,322.33334,116157.61,-22903.057,155283.92,59422.203,0,0,2778.3547 +11914,14533,25930,-9,25929,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.55621,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,322.33334,116157.61,-22903.057,155283.92,59422.203,0,0,2778.3547 +11914,14533,25931,-9,25929,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-991.15723,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,7,3,4,-9,0,0,8,3,0,322.33334,116157.61,-22903.057,155283.92,59422.203,0,0,2778.3547 +11915,14534,25932,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.6119242,9.0456772,0,0,0,-890.7887,0,3,3,2021,11,1,51,37,1,1,0,16.17062,16.17062,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.03,48.09,-9,-9,8.333333333333334,4,2,0,0,14,8,5,0,235,590314.75,79383.617,417723.53,0,0,0,1493.2372 +11916,14535,25933,25934,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,7.6987162,7.5424247,0,3,-2,57.537563,0,-9,-9,2021,15,3,25,40,1,3,0,8.3670225,8.3670225,.05,.05,0,0,0,0,0,0,0,0,0,4.7290225,0,41.17,52.68,49.95,57.02,3.333333333333333,1,1,0,0,4,5,4,1,609,-18918.053,-44986.75,158517.83,104961.63,3211.5281,0,2389.7686 +11916,14535,25934,25933,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.4211969,8.5933256,0,3,2,-43.176777,0,-9,-9,2021,8,1,40,40,1,1,0,15.756484,15.756484,.05,.05,0,0,0,0,0,0,0,0,0,3.7879622,0,49.95,57.02,41.17,52.68,8.333333333333334,1,1,0,0,4,5,4,1,609,-18918.053,-44986.75,158517.83,104961.63,3211.5281,0,2389.7686 +11917,14536,25935,25936,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.0965338,7.9859366,0,25,-1,-9.9683247,0,3,2,2021,6,0,49,13,1,0,0,6.1496758,6.1496758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,50,55,8.333333333333334,1,1,0,0,7,4,3,0,465.5,36473.594,-89298.563,134301.05,40450.188,10723.993,827.70428,1251.1338 +11917,14536,25936,25935,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,6.2713437,6.3598166,0,7,1,20.091358,0,-9,-9,2021,10,0,12,16,1,1,0,6.4421515,6.4421515,0,0,0,0,0,0,0,0,0,0,0,0,0,50,55,57.16,56.15,8,1,1,0,0,2,4,3,0,465.5,36473.594,-89298.563,134301.05,40450.188,10723.993,827.70428,1251.1338 +11917,14537,25937,-9,25936,25935,1,1,24,0,0,0,1,1,-9,0,4,7.8052168,8.2635326,0,0,0,-1064.782,0,3,2,2021,6,0,37,41,1,0,1,11.012074,11.012074,0,0,0,0,0,0,0,0,0,0,0,0,0,64.38,39.16,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,1367,0,0,0,0,0,0,1073.2531 +11917,14538,25938,-9,25936,25935,1,0,19,0,0,0,2,2,1,0,4,6.254302,6.328125,0,0,0,-927.82635,-9,2,3,2021,9,0,10,0,1,0,1,6.3772826,6.3772826,0,0,0,0,0,0,0,0,0,0,0,0,0,63.48,51.85,-9,-9,8.333333333333334,1,1,0,0,1,4,2,0,261,172130.53,0,0,0,0,0,-103.09721 +11918,14539,25939,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,7.754148,7.9990001,5.6172681,0,0,-1060.1824,0,3,3,2021,8,0,24,-9,1,0,0,12.750532,12.750532,0,0,0,0,0,0,0,0,1,1,0,3.0452652,5.9758306,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,8,9,4,1,549,543830,94522.32,164323.41,62436.289,-1615.9962,0,939.72791 +11919,14540,25940,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,7.6460075,7.6431108,0,0,0,-941.17444,0,3,-9,2021,13,2,30,30,1,2,0,5.7932606,5.7932606,.05,.05,0,0,0,0,0,0,1,1,0,2.6656144,0,49,19.72,-9,-9,3.333333333333333,1,1,0,0,9,2,3,1,1910,-82682.867,20420.107,0,0,0,0,1652.6195 +11920,14541,25941,-9,-9,-9,1,0,97,0,0,0,3,3,-9,0,2,0,4.8537512,5.1668072,0,0,-1010.6446,-9,3,2,2021,9,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7675509,5.2662573,56,25.06,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,831,3682.0461,67066.445,0,0,0,0,1524.2159 +11921,14542,25942,-9,25944,25943,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-886.3194,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25943,25944,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.6012259,8.7159891,0,9,3,-75.978432,0,2,2,2021,7,0,40,40,1,0,0,14.705775,14.705775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.6,51,40.48,60.05,8.333333333333334,1,1,0,0,9,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25944,25943,-9,-9,1,0,41,1,3,0,1,1,-9,0,4,0,0,0,15,-3,106.9335,0,2,3,2021,12,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,50.6,51,6.666666666666667,1,1,0,0,3,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25945,-9,25944,25943,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.6095,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11921,14542,25946,-9,25944,25943,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-958.20294,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,3,1,689.59998,69585.82,10271.81,218558.94,156255.02,39198.449,0,2442.1807 +11922,14543,25947,-9,25949,25948,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1082.9282,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40,56,-9,-9,6,1,1,-9,0,0,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14543,25948,25949,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,4.8986287,5.0216861,0,25,6,-10.36076,0,3,3,2021,6,0,35,60,1,0,0,.37782207,.37782207,0,0,0,0,0,0,0,0,1,0,1,0,0,62.49,55.09,57.06,57.76,10,1,1,0,0,13,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14543,25949,25948,-9,-9,1,0,48,0,1,0,2,2,-9,0,5,7.4187837,7.2584896,0,25,-6,35.9799,0,3,3,2021,7,0,15,11,1,0,0,9.1771336,9.1771336,0,0,0,0,0,0,0,0,1,0,1,0,0,57.06,57.76,62.49,55.09,8.333333333333334,1,1,0,0,10,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14543,25950,-9,25949,25948,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-981.66644,-9,2,2,2021,21,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.42,64.81,-9,-9,5,1,1,0,0,2,13,2,1,849.5,-92259.453,13351.675,0,0,7306.5029,2631.2622,1110.756 +11922,14544,25951,-9,25949,25948,1,1,19,0,1,1,2,0,-9,0,3,0,5.5561705,5.7709751,0,0,-1125.176,-9,2,2,2021,15,3,0,0,2,3,1,0,0,.05,.05,0,0,0,0,0,0,1,0,1,6.6262956,0,35.86,58.14,-9,-9,5,1,1,0,0,5,13,2,1,250,15844.716,-45091.496,0,0,0,0,537.07599 +11923,14545,25952,25953,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.7954826,8.8424721,0,23,-2,10.21979,0,2,2,2021,7,0,37,37,1,0,0,18.892225,18.892225,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.63,54.22,51.84,51.67,1.666666666666667,1,1,0,0,8,6,5,1,1035,200504.5,194205.94,196827.28,63237.344,0,0,4655.8271 +11923,14545,25953,25952,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,8.6099567,8.897644,0,7,2,-83.112419,0,2,2,2021,14,3,37,37,1,3,0,21.982527,21.982527,.05,.05,0,0,0,0,0,2,1,1,0,2.3973083,0,51.84,51.67,49.63,54.22,8.333333333333334,1,1,0,0,8,6,5,1,1035,200504.5,194205.94,196827.28,63237.344,0,0,4655.8271 +11923,14546,25954,-9,25952,25953,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.12842,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3420138,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,698,-74686.148,0,0,0,0,0,515.62225 +11924,14547,25955,25956,-9,-9,1,1,51,0,0,0,1,1,-9,0,2,7.0550241,7.252265,0,32,0,-52.375088,0,2,2,2021,6,0,50,0,1,0,0,2.6455679,2.6455679,.05,.05,0,0,0,0,0,0,0,0,0,4.6310024,0,47.61,51.64,57.16,56.15,8.333333333333334,1,1,0,0,10,7,3,1,431.5,559110.81,433074.41,0,0,0,0,2161.5911 +11924,14547,25956,25955,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,7.9010468,7.6835232,0,32,0,-177.93307,0,2,3,2021,9,0,33,32,1,0,0,9.876256,9.876256,0,0,0,0,0,0,0,0,0,0,0,2.1217484,0,57.16,56.15,47.61,51.64,8.333333333333334,1,1,0,0,11,7,3,1,431.5,559110.81,433074.41,0,0,0,0,2161.5911 +11924,14548,25957,-9,25956,25955,1,0,24,0,0,0,2,2,-9,0,4,8.0832605,8.3874311,0,0,0,-1119.8903,0,2,2,2021,5,0,39,38,1,0,1,11.707072,11.707072,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.48,56.4,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,511,-48012.172,145501.28,0,0,0,0,1749.7953 +11924,14549,25958,-9,25956,25955,1,0,22,0,0,0,2,2,-9,0,3,7.5663958,7.6332893,0,0,0,-987.27454,0,2,1,2021,27,11,38,38,1,11,1,5.1485562,5.1485562,0,0,0,0,0,0,0,0,0,0,0,0,0,15.58,61.96,-9,-9,3.333333333333333,1,1,0,0,6,7,3,1,1324,-260956.84,0,0,0,0,0,1449.0703 +11925,14550,25959,-9,-9,-9,1,1,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1072.2028,-9,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.52,52.14,-9,-9,5,1,1,1,0,0,9,2,0,586,-569.35248,0,0,0,0,0,1990.4419 +11926,14551,25960,25961,-9,-9,1,1,30,0,0,0,1,1,-9,0,3,8.8163519,8.890749,0,1,-5,-10.893911,-9,-9,-9,2021,9,1,44,0,1,1,0,22.107439,22.107439,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,50.19,45.85,61.26,6.666666666666667,1,1,0,0,4,5,5,1,278.5,134303.92,42204.219,0,0,0,0,3875.4998 +11926,14551,25961,25960,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3922701,8.4971008,0,1,5,143.06651,0,2,1,2021,19,8,40,42,1,8,0,13.081389,13.081389,.05,.05,0,0,0,0,0,0,1,1,0,2.0618989,0,45.85,61.26,49.28,50.19,8.333333333333334,1,1,0,0,9,5,5,1,278.5,134303.92,42204.219,0,0,0,0,3875.4998 +11927,14552,25962,25963,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.2321639,7.3883252,36,-6,-37.229012,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,2.9258854,0,21.10598,120,1,1,0,0,7.2986326,31.34,38.79,54,46,3.333333333333333,1,1,0,0,4,2,3,1,1068.5,842371.19,557971.44,173441.72,0,0,0,2614.8032 +11927,14552,25963,25962,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.1533122,7.5147524,36,6,38.364902,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3148289,54,46,31.34,38.79,8,1,1,0,0,0,2,3,1,1068.5,842371.19,557971.44,173441.72,0,0,0,2614.8032 +11928,14553,25964,25965,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,8.082921,8.1037989,46,-5,-59.524128,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9627542,7.4275527,52,54.51,45.91,59.89,6.666666666666667,1,1,0,0,5,10,4,1,694.5,1469559,1033208.6,325759.75,-3454.6138,0,0,3562.9268 +11928,14553,25965,25964,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.5852914,7.4191432,46,5,12.790311,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.354887,7.2589846,45.91,59.89,52,54.51,6.666666666666667,1,1,0,0,5,10,4,1,694.5,1469559,1033208.6,325759.75,-3454.6138,0,0,3562.9268 +11929,14554,25966,25967,-9,-9,1,0,72,0,0,0,1,1,-9,0,3,0,6.932014,6.3900809,33,-3,147.48882,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.0720818,6.8609014,43.37,57.28,55.48,50.05,6.666666666666667,1,1,0,0,4,10,3,1,409,1215703.6,506988.44,375661.91,95657,0,0,2489.1655 +11929,14554,25967,25966,-9,-9,1,1,75,0,0,0,2,2,-9,0,4,0,7.6782985,7.6377449,12,3,73.367599,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6657395,55.48,50.05,43.37,57.28,8.333333333333334,1,1,0,0,1,10,3,1,409,1215703.6,506988.44,375661.91,95657,0,0,2489.1655 +11930,14555,25968,25969,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.2750683,6.9712825,0,22,1,109.69025,0,2,2,2021,7,1,18,18,1,1,0,8.4065943,8.4065943,0,0,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,61.43,43.34,10,1,1,0,0,13,8,5,1,438.5,1555554.1,791989.25,573292.13,74613.016,0,0,4558.7368 +11930,14555,25969,25968,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,9.3674726,9.3620939,0,23,-1,169.63739,0,2,2,2021,6,0,46,47,1,0,0,30.7822,30.7822,0,0,0,0,0,0,0,0,0,0,0,7.7874999,0,61.43,43.34,54.2,57.49,8.333333333333334,1,1,0,0,13,8,5,1,438.5,1555554.1,791989.25,573292.13,74613.016,0,0,4558.7368 +11930,14556,25970,-9,25968,25969,1,0,22,0,0,0,2,2,-9,0,5,8.2745867,8.2164402,0,0,0,-868.31964,-9,2,1,2021,6,0,35,0,1,0,1,15.091603,15.091603,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.96,56.89,-9,-9,10,1,1,0,0,6,8,4,1,455,74754.922,-16643.295,0,0,0,0,2002.5186 +11930,14557,25971,-9,25968,25969,1,0,22,0,0,0,2,2,-9,0,3,7.9984651,8.2765598,0,0,0,-973.04034,-9,2,1,2021,6,0,36,0,1,0,1,11.72779,11.72779,0,0,0,0,0,0,0,2,0,0,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,6,8,4,1,132,32083.811,0,0,0,0,0,1550.844 +11931,14558,25972,25973,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.5728254,8.5054502,5.3939972,6,-3,-67.525291,-9,2,3,2021,5,0,35,0,1,0,0,16.756071,16.756071,.05,.05,0,0,0,0,0,0,1,1,0,5.6923318,5.5665212,57.73,54.53,52.97,53.97,8.333333333333334,1,1,0,0,7,10,4,1,686.5,1291383.4,1078960.1,285554.56,0,0,0,4521.998 +11931,14558,25973,25972,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,0,0,6,3,5.3430061,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6272035,0,52.97,53.97,57.73,54.53,8.333333333333334,1,1,0,1,5,10,4,1,686.5,1291383.4,1078960.1,285554.56,0,0,0,4521.998 +11932,14559,25974,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.8459711,8.6947889,0,0,0,-955.90259,0,-9,-9,2021,8,0,30,28,1,0,0,27.090067,27.090067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,236,25085.855,168567.89,0,0,0,0,1061.7808 +11933,14560,25975,25976,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.5473275,7.5129676,0,25,4,180.77478,0,-9,2,2021,8,0,45,40,1,0,0,5.1258526,5.1258526,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.97,51.29,40.23,61.31,6.666666666666667,1,1,0,0,6,5,3,1,352,393857.97,180851.38,190446.42,0,0,0,1336.2791 +11933,14560,25976,25975,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,6.6952219,6.912672,0,27,-4,-51.148956,0,2,2,2021,12,0,40,40,1,0,0,2.6787124,2.6787124,0,0,0,0,0,0,0,2,0,0,0,4.111218,0,40.23,61.31,52.97,51.29,8.333333333333334,1,1,0,0,10,5,3,1,352,393857.97,180851.38,190446.42,0,0,0,1336.2791 +11934,14561,25977,-9,25978,25979,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.931,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11934,14561,25978,25979,-9,-9,1,0,33,0,3,0,2,2,-9,0,4,7.108376,7.0542107,0,15,-1,36.537098,0,2,2,2021,11,0,16,16,1,2,0,7.8597641,7.8597641,.05,.05,0,0,0,0,0,27,1,1,0,0,0,48,56,50,57,7,1,1,0,0,9,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11934,14561,25979,25978,-9,-9,1,1,34,0,3,0,2,2,-9,0,4,8.2987757,8.2104492,0,15,1,-97.662857,0,2,2,2021,10,0,35,44,1,1,0,12.118955,12.118955,.05,.05,0,0,0,0,0,27,1,1,0,.071375705,0,50,57,48,56,7,1,1,0,0,9,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11934,14561,25980,-9,25978,25979,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.1225,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,958.5,88595.508,19448.182,0,0,4096.2896,0,3022.5842 +11935,14562,25981,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.6972761,8.6924229,0,0,0,-1001.8519,0,-9,-9,2021,9,0,38,37,1,0,0,22.097643,22.097643,0,0,.05,0,0,0,0,0,1,1,0,0,0,55.96,49.93,-9,-9,6.666666666666667,3,4,0,0,9,6,5,1,1296,290869.25,30917.379,12172.306,0,0,0,2693.9463 +11936,14563,25982,25983,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,7.7484155,8.0636826,0,9,-12,-46.819263,0,-9,-9,2021,21,9,38,37,1,9,0,7.5372591,7.5372591,.05,.05,0,0,0,0,0,0,1,1,0,3.4220049,0,31.49,43.99,34.57,50.44,3.333333333333333,1,1,0,1,11,6,3,1,484.5,-7992.8154,122028.37,51175.555,59576.953,19634.133,0,2295.3638 +11936,14563,25983,25982,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,6.3503242,6.3925552,9,12,10.414828,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2020535,6.5183053,34.57,50.44,31.49,43.99,8.333333333333334,1,1,0,0,8,6,3,1,484.5,-7992.8154,122028.37,51175.555,59576.953,19634.133,0,2295.3638 +11937,14564,25984,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.4103012,8.248805,0,0,0,-1025.8433,0,-9,-9,2021,8,0,38,44,1,0,0,15.79823,15.79823,.05,.05,0,0,0,0,0,2,0,0,0,0,0,55.29,42.09,-9,-9,8.333333333333334,1,1,0,0,11,12,5,0,217,619476.5,372405.63,0,0,5596.6118,969.88623,2155.0718 +11937,14565,25985,-9,25984,-9,1,0,25,0,0,0,2,2,-9,0,4,7.9545894,7.9384537,0,0,0,-892.20941,0,2,-9,2021,12,0,40,45,1,0,1,7.4091101,7.4091101,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,5,1,1,0,0,5,12,4,0,232,103509.06,103378.15,0,0,0,0,1091.6616 +11938,14566,25986,-9,-9,-9,1,0,62,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1039.2437,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.06,14.36,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,448,285943.66,-69480.742,200750.09,20861.225,52237.344,0,1654.4373 +11939,14567,25987,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.6373229,7.9819832,0,0,0,-954.06238,0,3,2,2021,8,0,37,35,1,0,0,7.9805498,7.9805498,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,3,1,687,236703.03,98803.031,0,0,-2230.1604,0,1745.7413 +11939,14568,25988,-9,25987,-9,1,1,24,0,0,0,1,1,-9,0,5,8.0858917,8.134511,0,0,0,-968.53741,-9,2,-9,2021,7,0,37,0,1,0,1,9.9974756,9.9974756,0,0,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,851,27391.082,0,0,0,0,0,1766.7056 +11939,14569,25989,-9,25987,-9,1,1,21,0,0,0,2,2,-9,0,3,9.0669832,9.4015474,0,0,0,-1041.0991,0,2,-9,2021,6,1,37,40,1,1,1,29.767548,29.767548,0,0,0,0,0,0,0,0,0,0,0,1.879661,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,5,12,5,1,567,-80730.258,0,0,0,0,0,4055.2893 +11940,14570,25990,25992,-9,-9,1,0,20,1,1,0,2,2,-9,0,5,7.610002,8.2287922,0,1,0,-14.756796,0,3,2,2021,6,0,50,35,1,0,0,6.194376,6.194376,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.02,56.42,8.333333333333334,1,1,0,0,2,7,4,1,431.66666,37156.582,26400.623,0,0,8725.9619,0,3049.6763 +11940,14570,25991,-9,25990,25992,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-980.53918,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,431.66666,37156.582,26400.623,0,0,8725.9619,0,3049.6763 +11940,14570,25992,25990,-9,-9,1,1,20,1,1,0,2,2,-9,0,5,8.3957491,8.4012938,0,1,0,42.938728,-9,-9,-9,2021,6,0,58,0,1,0,0,10.657274,10.657274,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,60.02,56.42,10,1,1,0,0,1,7,4,1,431.66666,37156.582,26400.623,0,0,8725.9619,0,3049.6763 +11941,14571,25993,25994,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,7.4498324,7.4475036,8,0,-47.857178,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9280653,7.2737503,57.48,37.4,54.99,12.75,8.333333333333334,1,1,0,0,0,6,2,1,735.5,234689.81,68806.883,171632.55,0,0,0,2833.3267 +11941,14571,25994,25993,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,5.4799514,5.4602237,53,0,30.983955,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,1.4735289,0,0,1,1,0,6.2717996,5.179914,54.99,12.75,57.48,37.4,3.333333333333333,1,1,0,0,0,6,2,1,735.5,234689.81,68806.883,171632.55,0,0,0,2833.3267 +11942,14572,25995,25996,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.1799316,8.0034943,0,1,0,-92.695717,0,-9,-9,2021,34,12,2,38,1,12,0,229.03299,229.03299,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.36,50.81,48.34,50.6,0,1,1,0,0,5,7,4,0,391,276030.03,66008.977,274094.72,154117.66,23082.941,0,3239.21 +11942,14572,25996,25995,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,8.0954866,7.8643775,0,1,0,13.760831,0,-9,-9,2021,9,1,40,0,1,1,0,8.4155035,8.4155035,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.34,50.6,16.36,50.81,8.333333333333334,1,1,0,0,1,7,4,0,391,276030.03,66008.977,274094.72,154117.66,23082.941,0,3239.21 +11943,14573,25997,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,0,0,0,0,-970.47583,0,2,2,2021,13,4,0,42,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.02,52.22,-9,-9,5,1,1,1,1,7,1,1,1,809,0,0,0,0,0,0,-509.43536 +11944,14574,25998,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.1594267,6.2437167,0,30,-5,92.717651,0,-9,-9,2021,35,12,15,15,1,12,0,3.6403878,3.6403878,0,0,0,0,0,0,0,0,1,1,0,0,0,17.88,57.04,57.16,56.15,1.666666666666667,1,1,0,0,7,10,2,0,690,179629.67,0,0,0,0,0,1133.2101 +11944,14575,25999,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,4.7744646,4.6027679,0,30,5,-31.127073,0,2,2,2021,13,4,35,35,1,4,0,.39557102,.39557102,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,17.88,57.04,8.333333333333334,1,1,0,0,5,10,2,0,711,77600.438,0,0,0,0,0,653.06055 +11945,14576,26000,26001,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.1323662,8.4021235,0,6,4,22.997593,0,2,2,2021,7,0,30,32,1,0,0,13.784036,13.784036,0,0,0,0,0,0,0,0,0,0,0,1.2111914,0,54.2,57.49,60.14,44.41,10,1,1,0,0,12,5,5,1,2275.5,1261785.8,1100294.8,299586.31,0,15654.857,8554.4961,4283.8623 +11945,14576,26001,26000,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.8466396,8.7830791,0,6,-4,-19.089451,0,-9,-9,2021,6,0,40,40,1,0,0,16.270452,16.270452,0,0,0,0,0,0,0,0,0,0,0,6.4451094,0,60.14,44.41,54.2,57.49,8.333333333333334,1,1,0,0,4,5,5,1,2275.5,1261785.8,1100294.8,299586.31,0,15654.857,8554.4961,4283.8623 +11946,14577,26002,26003,-9,26004,1,0,59,0,0,0,3,3,-9,0,4,6.5554671,6.6404257,0,39,-7,53.096481,0,3,3,2021,11,1,20,30,1,1,0,4.6518188,4.6518188,0,0,0,0,0,0,0,106,1,1,0,0,0,55.49,45.89,53.87,45.57,1.666666666666667,1,1,0,0,9,10,4,1,939,-135977.28,49147.852,0,0,0,0,2817.4224 +11946,14577,26003,26002,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,8.1601067,8.4972906,6.6987576,39,7,.24544349,0,2,3,2021,7,0,60,75,1,0,0,6.9562044,6.9562044,.05,.05,0,0,0,0,0,2,1,1,0,7.5681782,7.0685606,53.87,45.57,55.49,45.89,8.333333333333334,1,1,0,0,9,10,4,1,939,-135977.28,49147.852,0,0,0,0,2817.4224 +11946,14578,26004,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.6855373,5.4849114,0,0,-943.651,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.1693654,5.5724449,57.22,18.21,-9,-9,10,1,1,0,0,0,10,2,1,244,168731.56,-45885.926,0,0,0,0,1775.6281 +11947,14579,26005,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,7.1984749,7.0986762,0,0,-1002.5841,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.4207802,7.2600689,64.38,34.3,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,466,479160,99248.164,295771.78,0,0,0,1177.9758 +11948,14580,26006,26008,-9,-9,1,0,38,2,5,0,2,2,-9,0,2,7.5081949,7.3728995,0,1,4,13.891172,-9,2,-9,2021,19,7,17,0,1,7,0,15.057413,15.057413,0,0,0,0,0,0,0,0,1,1,0,0,0,22.16,53.89,50,57,3.333333333333333,4,2,0,0,4,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26007,-9,26006,26008,1,0,0,2,5,1,3,0,-9,0,4,0,0,0,0,0,-951.67438,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26008,26006,-9,-9,1,1,34,2,5,0,2,2,-9,0,4,8.4132757,8.3899851,0,1,-4,12.574764,-9,-9,-9,2021,10,0,37,0,1,1,0,13.976789,13.976789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,22.16,53.89,7,1,1,0,0,1,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26009,-9,26006,26008,1,1,16,2,5,1,2,0,-9,0,4,0,0,0,0,0,-1033.2415,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1033854,0,47,59,-9,-9,7,4,2,0,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26010,-9,26006,26008,1,0,2,2,5,1,3,0,-9,0,4,0,0,0,0,0,-993.95917,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26011,-9,26006,26008,1,0,12,2,5,1,3,0,-9,0,4,0,0,0,0,0,-1041.0233,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11948,14580,26012,-9,26006,26008,1,1,7,2,5,1,3,0,-9,0,4,0,0,0,0,0,-944.21216,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,3,0,491.85715,87649.625,13571.484,198459.72,110661.2,9748.4141,0,3778.8296 +11949,14581,26013,26014,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.2402954,9.2919321,0,33,-1,83.259399,0,2,2,2021,11,2,40,23,1,2,0,37.025692,37.025692,0,0,0,0,0,0,0,0,0,0,0,7.5585189,0,35.97,61.83,28.57,61.36,5,1,1,0,0,7,10,5,1,689.5,1237778,137182.08,493550.19,0,0,0,4767.7227 +11949,14581,26014,26013,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,0,0,0,33,1,68.582924,0,2,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.57,61.36,35.97,61.83,6.666666666666667,1,1,0,0,7,10,5,1,689.5,1237778,137182.08,493550.19,0,0,0,4767.7227 +11950,14582,26015,26016,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8368568,8.8302946,0,30,-10,-84.869118,0,2,2,2021,12,0,60,50,1,0,0,14.532095,14.532095,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.37,54.8,50.27,44.25,8.333333333333334,1,1,0,0,12,11,5,1,1614.5,1020563.5,799815.13,144070.75,0,1740.7764,0,3690.8948 +11950,14582,26016,26015,26017,-9,1,0,67,0,0,0,2,2,-9,0,3,8.0835714,8.2436562,0,30,10,22.198267,0,2,1,2021,12,0,50,40,1,0,0,9.3083401,9.3083401,.05,.05,0,0,0,0,0,76,1,1,0,0,0,50.27,44.25,54.37,54.8,8.333333333333334,1,1,0,0,11,11,5,1,1614.5,1020563.5,799815.13,144070.75,0,1740.7764,0,3690.8948 +11950,14583,26017,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,8.0714893,8.0469742,0,0,-1048.1273,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8983622,53,44,-9,-9,8,1,1,0,0,0,11,4,1,121,420392.47,319101.78,124863.55,0,0,0,2685.291 +11951,14584,26018,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,8.2843971,8.3071327,0,0,0,-995.96167,0,3,2,2021,12,0,40,40,1,0,0,16.046511,16.046511,.05,.05,0,0,0,0,0,0,0,0,0,3.9743042,0,33.04,66.23999999999999,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,249,73561.617,-7962.3936,0,0,0,0,1397.0466 +11952,14585,26019,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1060.597,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,4,12,1,0,719,-87304.07,89681.461,0,0,0,0,876.43201 +11953,14586,26020,26021,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,8.095643,7.9526963,0,30,2,-45.193836,0,2,3,2021,12,0,37,37,1,0,0,9.8836126,9.8836126,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.66,47.65,46.31,51.53,5,2,3,0,0,14,2,4,1,1467,118875.15,152762.67,162211.36,99405.469,0,0,3488.366 +11953,14586,26021,26020,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,8.3020935,8.3204556,0,30,-2,-100.4375,0,3,3,2021,10,0,37,37,1,0,0,14.114582,14.114582,0,0,0,0,0,0,0,7,1,1,0,0,0,46.31,51.53,41.66,47.65,6.666666666666667,2,3,0,0,14,2,4,1,1467,118875.15,152762.67,162211.36,99405.469,0,0,3488.366 +11953,14587,26022,-9,26021,26020,1,1,19,0,0,1,2,0,0,0,5,0,6.2360506,6.0541267,0,0,-1027.5099,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.104547,0,48.42,60.53,-9,-9,8.333333333333334,2,3,0,0,2,2,2,1,211,-154769.75,0,0,0,0,0,717.59363 +11954,14588,26023,26024,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,0,0,0,29,-1,13.831755,0,2,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,.92073089,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,0,9,5,1,991,1064960.8,1008576.3,386717.59,168019.14,0,0,2619.5994 +11954,14588,26024,26023,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,9.2512131,8.9157906,0,29,1,198.84917,0,2,3,2021,8,0,42,42,1,0,0,25.074631,25.074631,.05,.05,0,0,0,0,0,0,0,0,0,3.126086,0,54.2,57.49,57.33,53.46,8.333333333333334,1,1,0,0,10,9,5,1,991,1064960.8,1008576.3,386717.59,168019.14,0,0,2619.5994 +11954,14589,26025,-9,26023,26024,1,1,23,0,0,0,1,1,-9,0,5,8.467452,8.4187307,0,0,0,-986.83936,0,2,2,2021,17,5,39,41,1,5,1,12.998075,12.998075,0,0,0,0,0,0,0,0,0,0,0,0,0,44.41,58,-9,-9,8.333333333333334,1,1,0,0,3,9,4,1,1013,58623.566,76548.055,0,0,5399.9268,0,1793.5267 +11954,14590,26026,-9,26023,26024,1,0,21,0,0,0,2,2,-9,0,2,7.5107298,7.5443401,0,0,0,-902.96191,0,2,2,2021,23,10,41,42,1,10,1,5.0481787,5.0481787,0,0,0,0,0,0,0,0,0,0,0,0,0,20.46,61.36,-9,-9,6.666666666666667,1,1,0,0,3,9,3,1,146,87705.688,0,0,0,0,0,1337.2336 +11954,14591,26027,-9,26023,26024,1,0,19,0,0,1,2,0,0,0,3,0,3.7982371,3.8402817,0,0,-888.19897,-9,2,2,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.282289,0,44.64,55.04,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,463,102387.83,0,0,0,0,0,490.43201 +11955,14592,26028,26029,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,7.0496678,7.1942368,0,52,-1,95.127502,0,3,-9,2021,12,0,16,20,1,0,0,6.453506,6.453506,0,0,0,0,0,0,0,0,1,1,0,.50756693,0,47.79,36.6,35.66,55.55,5,1,1,0,0,14,1,2,1,384,784.83228,0,73036.125,0,0,0,1634.7889 +11955,14592,26029,26028,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,52,1,28.807072,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.38991657,0,35.66,55.55,47.79,36.6,8.333333333333334,1,1,0,0,6,1,2,1,384,784.83228,0,73036.125,0,0,0,1634.7889 +11956,14593,26030,26031,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,49,-3,-37.007759,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6103499,0,42.24,30.88,55.76,52.64,10,1,1,0,0,1,10,2,1,645.5,303930.22,109653.86,170606.75,0,0,8266.998,1080.7029 +11956,14593,26031,26030,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.2731276,6.9619184,51,3,-6.1221375,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.9599395,7.4254799,55.76,52.64,42.24,30.88,10,1,1,0,0,4,10,2,1,645.5,303930.22,109653.86,170606.75,0,0,8266.998,1080.7029 +11957,14594,26032,26033,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.4509439,7.1830153,44,3,68.651405,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8275752,7.6352816,56.51,32.06,57.16,56.15,8.333333333333334,1,1,0,0,8,5,3,1,746.5,573491.69,402095.81,90213.938,0,0,0,1298.8623 +11957,14594,26033,26032,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,44,-3,-144.65085,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,4.1631904,0,57.16,56.15,56.51,32.06,8.333333333333334,1,1,0,0,11,5,3,1,746.5,573491.69,402095.81,90213.938,0,0,0,1298.8623 +11957,14595,26034,-9,26033,26032,1,1,34,0,0,0,2,2,-9,0,4,7.4297481,7.4315863,0,0,0,-844.02161,0,2,2,2021,6,0,25,22,1,0,0,7.3550162,7.3550162,.05,.05,0,0,0,0,0,0,1,1,0,2.7164707,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,3803,111316.8,-113204.91,0,0,0,0,-144.45421 +11958,14596,26035,-9,26036,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.8613,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,1,140.5,-46299.922,0,147725.91,68976.969,0,0,2211.0913 +11958,14596,26036,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,4,0,5.9821615,5.9452696,0,0,-1077.8759,0,-9,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,6.0751438,0,35.28,62.56,-9,-9,6.666666666666667,1,1,0,0,6,13,2,1,140.5,-46299.922,0,147725.91,68976.969,0,0,2211.0913 +11959,14597,26037,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.9205322,9.1559515,0,0,0,-1115.0444,0,3,3,2021,9,0,45,45,1,0,0,18.116333,18.116333,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,13,5,1,449,1606105.8,1177828.8,234059.94,0,0,0,3346.0857 +11960,14598,26038,26041,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.6611652,9.4581785,0,4,-2,112.10529,0,-9,-9,2021,12,1,42,42,1,1,0,28.969784,28.969784,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.65,60.41,45.5,47.95,6.666666666666667,1,1,0,0,9,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11960,14598,26039,-9,26041,26038,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.21533,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11960,14598,26040,-9,26041,26038,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.92145,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11960,14598,26041,26038,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,0,0,0,13,2,46.659321,0,2,3,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.5,47.95,41.65,60.41,8.333333333333334,4,2,0,0,6,8,5,1,715.25,104197.83,8044.8247,0,0,0,0,4598.2358 +11961,14599,26042,26043,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.1441069,8.3419456,0,24,-1,-123.51835,0,2,2,2021,4,0,45,47,1,0,0,9.4113302,9.4113302,.05,.05,0,0,0,0,0,2,1,1,0,2.1289086,0,58.15,52.91,57.35,47.77,8.333333333333334,1,1,0,0,6,10,3,1,1511,267112.91,78748.656,224452.5,212984.39,0,0,2226.1201 +11961,14599,26043,26042,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,6.7231245,6.5804009,0,24,1,24.814428,0,3,-9,2021,7,0,6,6,1,0,0,11.794746,11.794746,0,0,0,0,0,0,0,0,1,1,0,2.6417832,0,57.35,47.77,58.15,52.91,8.333333333333334,1,1,0,0,6,10,3,1,1511,267112.91,78748.656,224452.5,212984.39,0,0,2226.1201 +11961,14599,26044,-9,26043,26042,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.5548,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,3,1,1511,267112.91,78748.656,224452.5,212984.39,0,0,2226.1201 +11962,14600,26045,-9,26046,26049,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1077.7733,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26046,26049,-9,-9,1,0,33,1,3,0,2,2,-9,0,4,0,0,0,3,5,149.12393,1,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,40.46,63.68,8.333333333333334,1,1,0,0,7,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26047,-9,26046,26049,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.2242,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26048,-9,26046,26049,1,0,11,1,3,1,3,0,-9,0,5,0,0,0,0,0,-1142.8208,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11962,14600,26049,26046,-9,-9,1,1,28,1,3,0,2,2,-9,0,4,7.5882893,7.7880611,0,3,-5,-144.91055,0,-9,-9,2021,11,0,42,52,1,0,0,7.4900723,7.4900723,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.46,63.68,49.35,59.64,8.333333333333334,4,2,0,0,3,6,2,0,1375.8,-14278.747,-17664.852,0,0,0,0,2551.3167 +11963,14601,26050,-9,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-950.45026,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.37,47.98,-9,-9,1.666666666666667,1,1,1,0,0,4,2,0,2556,99563.086,0,0,0,0,0,778.52496 +11964,14602,26051,26052,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.1666451,7.4114428,0,8,3,-33.614731,0,3,3,2021,12,0,16,15,1,0,0,10.077432,10.077432,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,45.58,47.97,8.333333333333334,1,1,0,0,9,5,3,1,519,273898.31,155195.31,125886.1,0,5355.1914,1792.4036,1572.9902 +11964,14602,26052,26051,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.661653,7.6585255,0,8,-3,65.600868,0,-9,-9,2021,15,3,30,40,1,3,0,9.6188145,9.6188145,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.58,47.97,55.36,51.57,5,1,1,0,0,7,5,3,1,519,273898.31,155195.31,125886.1,0,5355.1914,1792.4036,1572.9902 +11965,14603,26053,-9,26054,-9,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1072.7462,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,842,222613.63,329029.81,54153.477,83274.766,931.68481,0,2365.0469 +11965,14603,26054,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,2,8.148406,8.4838247,0,0,0,-1152.9384,-9,-9,2,2021,13,1,42,0,1,1,0,10.578595,10.578595,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.03,44.82,-9,-9,3.333333333333333,1,1,0,0,10,4,4,1,842,222613.63,329029.81,54153.477,83274.766,931.68481,0,2365.0469 +11966,14604,26055,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,0,0,0,0,-944.97137,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.08,26.32,-9,-9,1.666666666666667,2,3,1,0,1,5,1,1,1379,155577.61,0,0,0,2311.5757,-1436.1437,808.54034 +11967,14605,26056,26057,-9,-9,1,0,42,0,0,0,1,1,-9,0,2,8.5985785,8.6292906,0,20,-4,33.218761,-9,3,3,2021,10,0,30,0,1,0,0,16.357653,16.357653,.05,.05,0,0,0,0,0,0,1,0,1,0,0,43.92,34.27,61.12,51.57,5,1,1,0,0,11,11,5,1,1455,695804.88,363394.53,362418.56,46191.793,0,0,4029.0571 +11967,14605,26057,26056,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,9.2192316,9.2773638,0,1,4,-19.604063,-9,-9,-9,2021,5,1,38,0,1,1,0,21.789232,21.789232,.05,.05,0,0,0,0,0,0,1,0,1,0,0,61.12,51.57,43.92,34.27,10,1,1,0,0,11,11,5,1,1455,695804.88,363394.53,362418.56,46191.793,0,0,4029.0571 +11967,14606,26058,-9,26056,26057,1,0,24,0,0,0,2,2,-9,1,4,0,0,0,0,0,-966.23328,-9,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,48.27,47.75,-9,-9,8.333333333333334,1,1,0,1,0,11,1,1,777,144853.53,0,0,0,0,0,121.33817 +11967,14607,26059,-9,26056,26057,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-967.82581,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,0,11,1,1,1144,-175755.63,0,0,0,0,0,0 +11967,14608,26060,-9,26056,26057,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-865.51093,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,11,1,1,464,-86630.781,0,0,0,0,0,0 +11968,14609,26061,26062,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,5.7471757,5.6475163,50,-2,-8.0052595,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,26.673183,0,0,1,1,0,4.7504511,5.3287444,51.65,15.81,57.97,43.33,8.333333333333334,1,1,0,0,0,4,3,1,542,874979.88,616864.25,218846.78,22655.801,0,0,1986.6467 +11968,14609,26062,26061,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.2739477,7.4794865,50,2,71.519676,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1629176,7.5715957,57.97,43.33,51.65,15.81,10,1,1,0,0,0,4,3,1,542,874979.88,616864.25,218846.78,22655.801,0,0,1986.6467 +11969,14610,26063,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.4825597,6.6611342,0,0,-945.68811,0,3,2,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4784369,6.552712,26.84,55.7,-9,-9,0,1,1,0,0,4,8,2,1,798,460801,74197.18,147445.52,0,0,0,1433.1877 +11970,14611,26064,26065,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,6.5104194,6.6114454,7,0,-15.640022,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6321445,52,48,50,47,7,1,1,0,0,0,6,2,1,501,428347.59,109283.34,301901.06,0,0,0,1597.0791 +11970,14611,26065,26064,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,42,0,-133.57788,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,52,48,7,4,2,0,0,5,6,2,1,501,428347.59,109283.34,301901.06,0,0,0,1597.0791 +11971,14612,26066,26067,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.7802196,8.0487919,6,1,46.37199,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.0872555,64.48,48.62,61.28,48.88,8.333333333333334,1,1,0,0,1,11,3,1,1160,1379991.8,741304.88,195475.83,0,0,0,2025.0116 +11971,14612,26067,26066,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.4224024,5.1996741,6,-1,65.165016,0,3,1,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.4052844,61.28,48.88,64.48,48.62,8.333333333333334,1,1,0,0,0,11,3,1,1160,1379991.8,741304.88,195475.83,0,0,0,2025.0116 +11972,14613,26068,-9,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-970.65869,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.43,38.59,-9,-9,8.333333333333334,1,1,0,0,4,13,1,1,1022,139020.23,0,120185.93,0,0,0,678.76233 +11972,14614,26069,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1104.4838,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.83,39.98,-9,-9,8.333333333333334,1,1,1,0,0,13,1,1,626,57798.16,0,0,0,0,0,1009.9945 +11973,14615,26070,-9,26071,26073,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.9977,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26071,26073,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,20,-11,-1.9554627,0,3,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,3.2990539,0,54.2,57.49,49,50,5,2,3,0,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26072,-9,26071,26073,1,0,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-1045.3257,-9,2,3,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26073,26071,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,8.4770508,8.364521,0,19,11,47.055775,0,3,2,2021,11,0,40,30,1,1,0,12.677691,12.677691,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,54.2,57.49,7,2,3,0,0,13,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11973,14615,26074,-9,26071,26073,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1076.2783,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,3,0,646.40002,174470.28,120434.56,0,0,0,0,3473.5413 +11974,14616,26075,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1125.7435,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.5174146,0,62.39,56.71,-9,-9,10,1,1,1,0,0,13,1,1,930,0,0,0,0,0,0,692.65619 +11975,14617,26076,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.3705158,6.4737544,0,0,-994.6264,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8738575,6.4660583,48.65,51.93,-9,-9,5,1,1,0,0,0,10,2,1,697,75736.766,970.54425,130787.09,0,0,0,983.17999 +11976,14618,26077,26078,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.7325373,6.8768411,25,-8,-74.060425,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.5089566,6.3284583,59.29,49.68,57.16,56.15,8.333333333333334,1,1,0,0,11,6,4,1,738.5,1021639.8,502382.72,268996.06,0,6889.9419,0,2852.5559 +11976,14618,26078,26077,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.8875322,8.1749249,11,8,-7.3723989,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7529058,8.0488071,57.16,56.15,59.29,49.68,6.666666666666667,1,1,0,0,0,6,4,1,738.5,1021639.8,502382.72,268996.06,0,6889.9419,0,2852.5559 +11977,14619,26079,26080,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.9415302,8.1406088,0,11,6,-14.543055,0,-9,-9,2021,7,0,40,68,1,0,0,9.5951605,9.5951605,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.61,50.3,39.89,54.92,8.333333333333334,1,1,0,0,11,4,4,1,1454,126085.64,18052.949,0,0,3712.6843,0,2086.1831 +11977,14619,26080,26079,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.8722425,7.0514779,0,11,-6,-65.232643,0,3,3,2021,12,0,15,13,1,0,0,8.7438345,8.7438345,0,0,0,0,0,0,0,2,1,1,0,0,0,39.89,54.92,55.61,50.3,6.666666666666667,1,1,0,0,12,4,4,1,1454,126085.64,18052.949,0,0,3712.6843,0,2086.1831 +11977,14620,26081,-9,-9,26079,1,0,34,0,0,0,3,3,-9,0,4,7.8735294,7.7485433,0,0,0,-1041.5482,0,3,2,2021,19,5,35,35,1,5,1,7.5544472,7.5544472,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.87,49.77,-9,-9,8.333333333333334,1,1,0,0,12,4,3,1,638,44358.551,-16560.047,0,0,0,0,1466.6978 +11978,14621,26082,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,2,0,0,0,0,0,-968.68561,0,3,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,27.04,28.6,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,279,0,0,0,0,0,0,2167.2598 +11978,14621,26083,-9,26082,-9,1,1,17,0,0,0,2,2,1,1,2,0,0,0,0,0,-935.44757,-9,2,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,59.14,28.57,-9,-9,6.666666666666667,1,1,1,0,0,12,1,0,279,0,0,0,0,0,0,2167.2598 +11978,14622,26084,-9,26082,-9,1,1,20,0,0,0,2,2,-9,0,3,7.711185,7.8199124,0,0,0,-1082.4894,0,2,-9,2021,11,1,47,47,1,1,1,6.7348456,6.7348456,.05,.05,0,0,0,0,0,7,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,12,4,0,531,15749.31,16757.871,0,0,0,0,884.60004 +11979,14623,26085,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.1863194,8.3859835,0,0,0,-1104.2936,0,2,2,2021,10,0,37,37,1,0,0,14.057409,14.057409,.05,.05,0,0,0,0,0,0,0,0,0,2.2222774,0,48.14,53.42,-9,-9,5,1,1,0,0,10,6,4,1,4924,-196645.3,-20569.525,0,0,0,0,2130.0474 +11979,14624,26086,-9,-9,26085,1,1,29,0,0,0,2,2,-9,0,4,7.9721169,7.8543348,0,0,0,-988.68555,0,2,2,2021,0,0,33,31,1,0,1,10.194214,10.194214,0,0,0,0,0,0,0,0,0,0,0,2.0264006,0,62.49,55.09,-9,-9,10,1,1,0,0,10,6,4,1,396,190724.03,0,0,0,0,0,694.47058 +11980,14625,26087,26088,-9,-9,1,0,58,0,0,0,3,3,-9,1,2,0,0,0,39,0,0,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,43.89,25.81,31.27,33.6,6.666666666666667,1,1,0,0,0,13,2,0,504.5,21745.791,68716.164,0,0,0,0,3802.5054 +11980,14625,26088,26087,-9,-9,1,1,58,0,0,0,2,2,-9,1,2,0,0,0,35,0,0,0,3,2,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,31.27,33.6,43.89,25.81,5,1,1,0,0,0,13,2,0,504.5,21745.791,68716.164,0,0,0,0,3802.5054 +11981,14626,26089,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,7.618597,8.0433187,0,0,-949.55115,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0429153,8.039156,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,4,12,3,1,1690,668827.63,431153.03,0,0,0,0,1935.9349 +11982,14627,26090,26091,-9,-9,1,0,25,1,1,0,2,2,-9,0,4,7.2251658,7.1527066,0,1,-2,-25.281557,-9,-9,-9,2021,12,0,16,0,1,2,0,7.914494,7.914494,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,62.39,56.71,10,1,1,0,0,0,2,2,1,667,13263.023,32216.926,0,0,0,0,870.06622 +11982,14627,26091,26090,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,5.6856613,5.7644429,0,1,2,-95.520271,0,3,2,2021,8,0,40,40,1,0,0,.95698959,.95698959,.05,.05,0,0,0,0,0,0,1,1,0,2.2901866,0,62.39,56.71,46,58,10,1,1,0,0,10,2,2,1,667,13263.023,32216.926,0,0,0,0,870.06622 +11982,14627,26092,-9,26090,26091,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-885.05402,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,2,1,667,13263.023,32216.926,0,0,0,0,870.06622 +11983,14628,26093,26094,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,41,-20,133.25848,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.83,45.17,52.23,55.6,5,1,1,0,0,3,10,2,1,670,585149.63,0,390338.19,0,0,0,2255.3081 +11983,14628,26094,26093,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,5.591857,5.2969918,41,20,-52.590004,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,5.4720402,52.23,55.6,17.83,45.17,8.333333333333334,1,1,0,0,0,10,2,1,670,585149.63,0,390338.19,0,0,0,2255.3081 +11984,14629,26095,26097,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,9.0969572,9.1774359,0,11,2,50.663666,0,2,2,2021,3,0,47,47,1,0,0,18.187393,18.187393,.05,.05,0,0,0,0,0,2,1,1,0,2.9793942,0,57.16,56.15,50.91,41.38,8.333333333333334,2,3,0,0,11,8,5,1,383.66666,-19800.33,-3078.8906,207468.31,203874.73,14449.319,161.7717,2897.4207 +11984,14629,26096,-9,26097,26095,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.1427,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,383.66666,-19800.33,-3078.8906,207468.31,203874.73,14449.319,161.7717,2897.4207 +11984,14629,26097,26095,26099,26098,1,0,37,0,1,0,1,1,-9,0,3,0,0,0,11,-2,-45.161316,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,50.91,41.38,57.16,56.15,5,2,3,0,1,0,8,5,1,383.66666,-19800.33,-3078.8906,207468.31,203874.73,14449.319,161.7717,2897.4207 +11984,14630,26098,26099,-9,-9,1,1,75,0,1,0,1,1,-9,0,3,0,0,0,6,4,0,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46,51,46,8,2,3,0,0,0,8,1,1,313,728152,226822.19,558876.31,0,0,0,-45.99939 +11984,14630,26099,26098,-9,-9,1,0,71,0,1,0,2,2,-9,0,3,0,0,0,6,-4,0,-9,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,1,0,8.3460045,0,0,1,1,0,0,0,51,46,53,46,7,2,3,0,0,0,8,1,1,313,728152,226822.19,558876.31,0,0,0,-45.99939 +11985,14631,26100,26101,-9,-9,1,0,37,1,2,0,2,2,-9,0,4,8.3887835,8.7059727,0,15,-5,98.743484,0,2,2,2021,9,0,36,36,1,0,0,16.868492,16.868492,.05,.05,0,0,0,0,0,0,1,1,0,1.2331662,0,48.81,59.91,38.82,63.21,6.666666666666667,1,1,0,0,8,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11985,14631,26101,26100,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.3908033,8.4558544,0,15,5,75.290054,0,2,2,2021,11,0,35,-9,1,0,0,12.972594,12.972594,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.82,63.21,48.81,59.91,8.333333333333334,1,1,0,0,10,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11985,14631,26102,-9,26100,26101,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-890.53497,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11985,14631,26103,-9,26100,26101,1,0,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.4814,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,747.5,621528.13,331736.03,289198.19,110909.7,0,0,3853.9514 +11986,14632,26104,26105,-9,-9,1,1,60,0,1,0,2,2,-9,0,3,8.004447,8.0174341,0,12,0,-40.313622,0,3,3,2021,7,0,37,36,1,0,0,8.5870781,8.5870781,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,33.47,61.48,8.333333333333334,1,1,0,0,12,5,4,0,637.5,576312.5,180892.91,316501.03,0,0,0,2689.3904 +11986,14632,26105,26104,-9,-9,1,0,60,0,1,0,2,2,-9,0,3,7.8744426,8.0701971,0,12,0,-2.0991495,0,3,3,2021,25,12,35,30,1,12,0,10.114481,10.114481,0,0,0,0,0,0,0,0,1,0,1,0,0,33.47,61.48,57.33,53.46,3.333333333333333,1,1,0,1,13,5,4,0,637.5,576312.5,180892.91,316501.03,0,0,0,2689.3904 +11986,14633,26106,-9,26105,26104,1,0,34,0,1,0,2,2,-9,0,3,0,0,0,0,0,-920.33795,0,2,3,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.03,53.23,-9,-9,6.666666666666667,1,1,0,1,11,5,1,0,81,15335.258,0,0,0,2033.2086,1758.8821,904.75073 +11986,14633,26107,-9,26106,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.7885,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,1,0,81,15335.258,0,0,0,2033.2086,1758.8821,904.75073 +11987,14634,26108,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.7421446,7.5897655,0,0,0,-1030.3297,0,1,1,2021,6,2,27,24,1,2,0,9.5732241,9.5732241,0,0,.05,0,0,0,0,0,1,1,0,0,0,53.02,53.93,-9,-9,8.333333333333334,1,1,0,0,7,8,3,0,912,-64334.539,103165.81,0,0,0,383.83081,1110.6923 +11987,14635,26109,-9,26108,-9,1,1,22,0,0,0,2,2,-9,0,4,7.9609389,7.7388959,0,0,0,-920.32721,0,2,-9,2021,10,0,35,42,1,0,1,6.0246015,6.0246015,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,8,3,0,585,53569.691,0,0,0,0,1878.897,599.43921 +11987,14636,26110,-9,26108,-9,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-983.67078,0,2,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7813587,0,47,59,-9,-9,7,1,1,0,0,0,8,1,0,298,0,0,0,0,0,0,-647.18823 +11988,14637,26111,26112,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,5.6413836,5.6594567,30,3,43.201225,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1138663,5.6941805,45.75,29.22,47.63,45.75,5,1,1,0,0,7,12,2,1,2309.5,1833011,1828067.3,71305.266,0,0,0,1455.2418 +11988,14637,26112,26111,-9,-9,1,0,64,0,0,0,3,3,-9,0,4,0,0,0,41,-3,53.484684,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.63,45.75,45.75,29.22,8.333333333333334,1,1,0,0,6,12,2,1,2309.5,1833011,1828067.3,71305.266,0,0,0,1455.2418 +11989,14638,26113,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.2404127,7.1153331,0,0,0,-932.24988,0,-9,-9,2021,20,6,16,0,1,6,0,13.449039,13.449039,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.76,57.87,-9,-9,5,2,3,0,1,1,8,2,0,907.33331,0,0,0,0,0,0,2005.644 +11989,14638,26114,-9,26113,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.49628,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,2,0,907.33331,0,0,0,0,0,0,2005.644 +11989,14638,26115,-9,26113,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.38068,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,907.33331,0,0,0,0,0,0,2005.644 +11990,14639,26116,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.0798655,6.7193518,0,0,-952.40771,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,5.8058963,6.8721566,61.88,44.54,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,1771,73137.75,144680.25,0,0,0,0,1493.3761 +11990,14640,26117,-9,26116,-9,1,1,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1014.5408,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.68,22.39,-9,-9,0,1,1,0,1,5,10,1,1,433,286027.91,252825.89,0,0,0,0,1420.5776 +11991,14641,26118,26119,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,0,0,59,-2,96.288231,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7691449,0,62.39,56.71,60.12,54.8,10,1,1,0,0,0,8,5,1,711.5,2039004.5,1518467.3,461372.97,73811.063,0,0,6024.8096 +11991,14641,26119,26118,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,9.1918993,9.211442,59,2,29.407372,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,8.5836954,8.5184679,60.12,54.8,62.39,56.71,10,1,1,0,0,0,8,5,1,711.5,2039004.5,1518467.3,461372.97,73811.063,0,0,6024.8096 +11992,14642,26120,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,5,8.8875284,9.4469233,0,0,0,-1041.4257,0,3,3,2021,25,10,45,37,1,10,0,24.37923,24.37923,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.31,58.56,-9,-9,3.333333333333333,2,3,0,0,8,6,5,1,432,74133.25,107644.09,159512.95,142596.36,1177.8099,2138.9834,2535.1262 +11993,14643,26121,26122,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,7.2818136,8.8966131,8.3657589,53,1,-86.851189,0,1,1,2021,7,0,40,40,1,0,0,4.9736838,4.9736838,0,0,0,0,0,0,0,0,1,1,0,8.4765654,7.1299438,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,13,4,5,1,510.5,2508013,1114905.4,459906.63,0,0,0,6013.0513 +11993,14643,26122,26121,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,8.1950712,8.277236,53,-1,-90.654488,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0933037,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,4,5,1,510.5,2508013,1114905.4,459906.63,0,0,0,6013.0513 +11994,14644,26123,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.9118261,8.7824545,0,0,0,-955.07471,0,3,3,2021,12,0,41,41,1,0,0,18.888483,18.888483,.05,.05,0,0,0,0,0,0,1,1,0,6.1793652,0,52.13,57.22,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,777,505417.53,314668,123448.6,50898.035,0,0,2632.7668 +11995,14645,26124,-9,26126,26125,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.08948,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11995,14645,26125,26126,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.3527851,8.6289768,0,5,4,88.061348,0,-9,-9,2021,5,0,57,50,1,0,0,10.616636,10.616636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,39.29,52.16,8.333333333333334,1,1,0,0,12,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11995,14645,26126,26125,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,8.206398,8.3583088,0,5,-4,95.961243,0,3,3,2021,12,1,38,48,1,1,0,12.327843,12.327843,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.29,52.16,54.2,57.49,8.333333333333334,1,1,0,1,11,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11995,14645,26127,-9,26126,26125,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.7279,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,971.75,358813.22,196625.56,230700.66,47162.039,0,3251.3604,3993.7703 +11996,14646,26128,26129,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0786324,8.4570656,0,10,4,-22.666277,0,-9,-9,2021,12,3,40,40,1,3,0,11.804214,11.804214,0,0,.05,0,0,0,0,0,1,0,1,0,0,43.07,47.56,46.21,35.5,6.666666666666667,2,3,0,0,12,8,3,0,520,549372.63,7828.3911,340796.38,0,3103.0588,911.14502,1720.0112 +11996,14646,26129,26128,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,0,0,0,33,-4,-22.783781,0,3,3,2021,14,3,0,20,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.21,35.5,43.07,47.56,5,2,3,1,0,2,8,3,0,520,549372.63,7828.3911,340796.38,0,3103.0588,911.14502,1720.0112 +11996,14647,26130,-9,26129,26128,1,1,21,0,0,0,2,2,-9,0,3,7.7392707,7.9582486,0,0,0,-983.01202,0,3,2,2021,7,0,35,35,1,0,1,10.968812,10.968812,0,0,0,0,0,0,0,0,1,0,1,0,0,55.46,32.46,-9,-9,6.666666666666667,2,3,0,0,5,8,4,0,310,-60031.684,-79254.523,0,0,0,975.17542,1417.9879 +11997,14648,26131,-9,26134,26133,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6686,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11997,14648,26132,-9,26134,26133,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.7007,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11997,14648,26133,26134,-9,-9,1,1,28,0,2,0,2,2,-9,0,3,7.8769717,8.0431185,0,1,-1,-144.57167,-9,-9,-9,2021,10,2,39,0,1,2,0,8.5201998,8.5201998,0,0,0,0,0,0,0,0,1,1,0,0,0,51.68,49.13,38.76,58.16,8.333333333333334,1,1,0,0,4,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11997,14648,26134,26133,-9,-9,1,0,29,0,2,0,2,2,-9,0,3,0,0,0,1,1,.39776325,-9,-9,-9,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.76,58.16,51.68,49.13,8.333333333333334,1,1,0,0,3,12,3,0,735,-27532.182,5144.5962,0,0,-512.91821,347.22531,1999.0034 +11998,14649,26135,26136,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.7231054,8.8733788,0,12,-1,-81.603714,0,1,2,2021,8,0,38,38,1,0,0,18.064041,18.064041,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.27,48.04,8.333333333333334,1,1,0,0,12,12,5,1,1776,1053550.6,613467.88,500756.63,219205.84,0,0,4721.8682 +11998,14649,26136,26135,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.5576363,8.27775,0,12,1,40.023846,0,2,1,2021,6,0,32,28,1,0,0,17.62306,17.62306,0,0,0,0,0,0,0,0,0,0,0,0,0,54.27,48.04,49.35,59.64,8.333333333333334,1,1,0,0,13,12,5,1,1776,1053550.6,613467.88,500756.63,219205.84,0,0,4721.8682 +11999,14650,26137,26140,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.0224695,7.939467,0,6,15,63.316605,0,3,2,2021,14,4,45,39,1,4,0,8.027132,8.027132,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.32,57.23,31.81,62.72,5,1,1,0,0,7,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +11999,14650,26138,-9,26140,26137,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.9862,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +11999,14650,26139,-9,26140,26137,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-920.99713,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +11999,14650,26140,26137,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,7.5566373,7.7544413,0,6,-15,-89.048454,0,-9,-9,2021,16,4,40,55,1,4,0,5.7133794,5.7133794,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.81,62.72,31.32,57.23,6.666666666666667,1,1,0,0,4,7,3,0,1454.5,59268.172,153840.61,131980.66,70601.852,0,0,2484.1438 +12000,14651,26141,26143,-9,-9,1,1,21,1,1,0,2,2,-9,0,2,7.9670725,7.8125372,0,1,-1,96.00808,-9,-9,-9,2021,27,12,56,0,1,12,0,5.2000985,5.2000985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.94,55.62,45.81,58.99,5,1,1,0,0,2,10,3,0,690.33331,-30763.963,8372.8457,0,0,4333.4629,0,2003.1185 +12000,14651,26142,-9,26143,26141,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-852.24353,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,690.33331,-30763.963,8372.8457,0,0,4333.4629,0,2003.1185 +12000,14651,26143,26141,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,7.1655884,7.2370901,0,1,1,114.73743,0,-9,-9,2021,13,1,20,0,1,1,0,7.3779111,7.3779111,0,0,0,0,0,0,0,0,1,1,0,0,0,45.81,58.99,32.94,55.62,8.333333333333334,1,1,0,0,2,10,3,0,690.33331,-30763.963,8372.8457,0,0,4333.4629,0,2003.1185 +12001,14652,26144,-9,26146,26145,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-984.37109,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,1147,164277.86,-5884.6411,106636.55,2298.3547,0,0,5265.3804 +12001,14652,26145,26146,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3786116,9.0345764,8.5278864,21,3,49.815975,0,3,3,2021,13,1,37,42,1,1,0,16.327129,16.327129,.05,.05,0,0,0,0,0,0,0,0,0,0,8.5036392,60.57,46.44,47.38,47.04,1.666666666666667,1,1,0,0,13,12,5,1,1147,164277.86,-5884.6411,106636.55,2298.3547,0,0,5265.3804 +12001,14652,26146,26145,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.4511795,7.8852124,7.1468763,21,-3,-89.344032,0,2,2,2021,12,0,23,26,1,0,0,10.843902,10.843902,.05,.05,0,0,0,0,0,0,0,0,0,0,6.9657001,47.38,47.04,60.57,46.44,8.333333333333334,1,1,0,0,12,12,5,1,1147,164277.86,-5884.6411,106636.55,2298.3547,0,0,5265.3804 +12001,14653,26147,-9,26146,26145,1,1,20,0,0,0,2,2,-9,0,4,0,0,0,0,0,-921.91962,1,2,2,2021,11,1,0,46,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.30043885,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,4,12,1,1,846,42998.133,0,0,0,0,0,-450.56802 +12002,14654,26148,26149,-9,-9,1,0,20,0,0,0,2,2,-9,0,2,8.1577272,8.040863,0,5,-3,-26.219824,0,-9,-9,2021,13,1,38,19,1,1,0,8.6203585,8.6203585,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,55.61,29.04,6.666666666666667,1,1,0,0,4,9,4,0,805,-82292.719,0,0,0,0,0,2589.1211 +12002,14654,26149,26148,-9,-9,1,1,23,0,0,0,2,2,-9,0,2,7.7400708,7.55825,0,5,3,126.97866,0,-9,-9,2021,10,0,40,40,1,0,0,5.7638183,5.7638183,0,0,0,0,0,0,0,0,0,0,0,0,0,55.61,29.04,46.32,53.44,6.666666666666667,1,1,0,0,5,9,4,0,805,-82292.719,0,0,0,0,0,2589.1211 +12003,14655,26150,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.3556986,8.4043617,0,0,0,-1138.0483,0,2,2,2021,13,2,39,76,1,2,0,12.995852,12.995852,0,0,0,0,0,0,0,2,0,0,0,4.0410037,0,42.17,38.71,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,117,8182.0425,0,0,0,0,0,1909.0404 +12004,14656,26151,26153,-9,-9,1,1,45,0,1,0,1,1,-9,0,4,8.9780207,8.6084719,0,14,1,152.15343,0,3,2,2021,14,2,52,52,1,2,0,16.478045,16.478045,.05,.05,0,0,0,0,0,0,1,1,0,4.3517523,0,46.56,55.44,44.75,52.77,8.333333333333334,1,1,0,0,7,1,5,1,400.33334,1155686.6,763358.81,509423.09,0,0,0,4843.0957 +12004,14656,26152,-9,26153,26151,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-842.46912,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,400.33334,1155686.6,763358.81,509423.09,0,0,0,4843.0957 +12004,14656,26153,26151,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.80056,8.9469881,0,14,-1,-17.969988,0,3,3,2021,12,3,50,58,1,3,0,16.261909,16.261909,0,0,0,0,0,0,0,0,1,1,0,0,0,44.75,52.77,46.56,55.44,8.333333333333334,1,1,0,0,8,1,5,1,400.33334,1155686.6,763358.81,509423.09,0,0,0,4843.0957 +12005,14657,26154,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,9.3747463,8.6920977,0,0,-833.6366,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8067207,9.0096893,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,5,1,242,4402873,1648873,714307.06,0,0,0,6336.0894 +12006,14658,26155,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.8076916,8.7089272,0,0,0,-1145.6335,0,2,1,2021,14,3,39,40,1,3,0,20.558014,20.558014,.05,.05,0,0,0,0,0,0,0,0,0,2.7790132,0,31.04,58.94,-9,-9,6.666666666666667,1,1,0,0,4,7,5,0,779,40179.109,109055.8,0,0,4498.8223,4515.6826,2296.0811 +12007,14659,26156,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.6532421,8.0034285,0,0,-1000.8939,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.5202176,7.9894152,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,9,10,3,1,611,512716.06,263756.94,214276.58,0,0,0,839.20203 +12008,14660,26157,26158,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,12,-20,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,27.01,43.15,16.95,6.666666666666667,2,3,0,0,0,6,1,1,778,675215.94,404469.13,144578.22,0,0,0,2043.8853 +12008,14660,26158,26157,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,0,0,12,20,0,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,79.474113,0,0,1,1,0,0,0,43.15,16.95,50.85,27.01,6.666666666666667,2,3,0,0,11,6,1,1,778,675215.94,404469.13,144578.22,0,0,0,2043.8853 +12008,14661,26159,-9,26157,26158,1,0,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-970.26215,-9,2,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.8,46.72,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,285,90573.547,0,0,0,0,0,0 +12008,14662,26160,-9,26157,26158,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-912.80713,-9,2,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,55.51,51.57,-9,-9,8.333333333333334,2,3,0,0,0,6,1,1,719,-250345.33,0,0,0,0,0,0 +12009,14663,26161,-9,-9,-9,1,0,40,0,1,0,2,2,-9,0,3,7.5352902,7.8853192,5.8272824,0,0,-953.30084,0,1,1,2021,18,5,30,30,1,5,0,6.5728359,6.5728359,.05,.05,0,0,0,0,0,0,1,0,1,5.823369,0,37.44,59.97,-9,-9,0,1,1,0,1,10,4,3,0,894,102405.18,88093.18,0,0,0,0,2291.0977 +12009,14663,26162,-9,26161,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-986.78125,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,894,102405.18,88093.18,0,0,0,0,2291.0977 +12010,14664,26163,26164,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.3762751,8.0285997,7,4,-32.391861,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1803646,7.8254228,53,47,51.38,54.63,8,1,1,0,0,0,6,4,1,736.5,1248016.5,615679.25,211504.02,0,0,0,4378.0713 +12010,14664,26164,26163,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5483017,7.8295121,45,-4,-28.669266,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7405305,8.1030169,51.38,54.63,53,47,8.333333333333334,1,1,0,0,0,6,4,1,736.5,1248016.5,615679.25,211504.02,0,0,0,4378.0713 +12011,14665,26165,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.6389565,7.3741698,0,0,-1057.7017,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.6709793,7.8531256,56.1,49.93,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,684,932163.13,296675.13,375534.03,0,0,0,1548.5068 +12012,14666,26166,-9,-9,-9,1,0,66,0,0,0,3,3,-9,1,4,7.7765956,7.9016318,0,0,0,-1091.6273,0,3,3,2021,10,0,60,60,1,0,0,4.5942817,4.5942817,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.05,40.21,-9,-9,8.333333333333334,1,1,0,0,15,2,3,1,370,213028.17,-7217.9121,0,0,0,0,2421.2395 +12013,14667,26167,26168,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,8.358592,8.4542923,0,30,-4,29.96233,0,2,2,2021,11,0,41,42,1,0,0,12.227909,12.227909,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,60.11,44.43,8.333333333333334,1,1,0,0,8,4,5,1,1329.5,-44797.656,0,0,0,6139.0239,0,3913.6064 +12013,14667,26168,26167,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.725626,8.9630909,6.8058424,30,4,147.45076,0,2,2,2021,9,0,37,38,1,0,0,16.60943,16.60943,0,0,0,0,0,0,0,0,1,1,0,0,6.8986745,60.11,44.43,48.77,60.16,5,1,1,0,0,8,4,5,1,1329.5,-44797.656,0,0,0,6139.0239,0,3913.6064 +12014,14668,26169,26172,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.5949335,8.9313154,0,14,-3,152.64157,0,1,1,2021,19,8,44,47,1,8,0,14.775586,14.775586,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.44,58.81,56.6,27.07,6.666666666666667,1,1,0,0,11,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12014,14668,26170,-9,26169,26172,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-942.46765,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12014,14668,26171,-9,26169,26172,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.6738,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12014,14668,26172,26169,-9,-9,1,1,46,0,2,0,2,2,-9,0,1,0,0,0,14,3,113.45161,0,2,2,2021,7,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.4447785,0,56.6,27.07,36.44,58.81,8.333333333333334,1,1,0,0,0,7,4,1,1496.5,144175.5,55565.73,225121.91,38514.184,0,0,2620.7388 +12015,14669,26173,26176,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,5.7479181,5.4961023,0,24,0,-53.304768,0,2,3,2021,16,3,11,9,1,3,0,3.8998709,3.8998709,0,0,0,0,0,0,0,0,1,0,1,1.8022404,0,49.35,59.64,47.15,55.39,6.666666666666667,1,1,0,0,10,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26174,-9,26173,26176,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-902.16211,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26175,-9,26173,26176,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1038.8984,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,62,-9,-9,7,1,1,-9,0,0,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26176,26173,-9,-9,1,1,45,0,3,0,1,1,-9,0,4,8.2153635,8.5818729,0,24,0,-67.757881,0,2,2,2021,12,0,38,38,1,0,0,12.0853,12.0853,0,0,0,0,0,0,0,0,1,0,1,0,0,47.15,55.39,49.35,59.64,5,1,1,0,0,11,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12015,14669,26177,-9,26173,26176,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1021.9145,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,1,3,1,922.20001,152518.31,12055.18,335558.88,228150.08,0,16333.129,2701.0203 +12016,14670,26178,26180,-9,-9,1,0,48,0,1,0,1,1,-9,0,4,8.1771994,8.5247393,0,20,-2,27.362152,0,3,3,2021,12,0,38,36,1,0,0,15.82897,15.82897,.05,.05,0,0,0,0,0,0,1,1,0,3.1630535,0,46.14,54.22,53,55,6.666666666666667,1,1,0,0,9,13,4,1,1037.3334,713149.25,462066.78,183633.19,52735.59,0,0,3331.9026 +12016,14670,26179,-9,26178,26180,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1123.403,-9,1,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,4,1,1037.3334,713149.25,462066.78,183633.19,52735.59,0,0,3331.9026 +12016,14670,26180,26178,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,7.1632094,7.0343733,0,20,2,59.73296,-9,3,3,2021,9,0,50,0,1,1,0,3.0558181,3.0558181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,46.14,54.22,8,1,1,0,0,1,13,4,1,1037.3334,713149.25,462066.78,183633.19,52735.59,0,0,3331.9026 +12016,14671,26181,-9,26178,26180,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1028.4078,-9,1,2,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.1,60.05,-9,-9,8.333333333333334,1,1,0,0,1,13,1,1,947,-55541.664,0,0,0,0,0,0 +12017,14672,26182,26184,-9,-9,1,0,29,0,2,0,1,1,-9,0,4,7.9924269,7.7642207,0,10,-4,-91.650665,0,1,3,2021,18,6,23,30,1,6,0,13.214731,13.214731,0,0,0,0,0,0,0,0,1,1,0,0,0,44.87,56.46,48.28,60.18,8.333333333333334,1,1,0,0,7,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12017,14672,26183,-9,26182,26184,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.59833,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12017,14672,26184,26182,-9,-9,1,1,33,0,2,0,1,1,-9,0,4,5.9904757,5.9611993,0,10,4,33.577137,0,2,2,2021,23,11,35,35,1,11,0,1.3372561,1.3372561,.05,.05,0,0,0,0,0,2,1,1,0,0,0,48.28,60.18,44.87,56.46,6.666666666666667,1,1,0,0,10,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12017,14672,26185,-9,26182,26184,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.9121,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,1,627,254956.47,98182.922,388405.31,177120.92,0,0,1989.8318 +12018,14673,26186,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,1,8.213582,8.317812,0,0,0,-978.03717,0,2,2,2021,20,8,38,40,1,8,0,12.018709,12.018709,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.82,43.58,-9,-9,5,1,1,0,1,11,6,4,0,545,1272.3961,20720.596,0,0,0,0,1601.1936 +12019,14674,26187,26188,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,8,1,36.270565,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,80.299904,0,0,1,1,0,3.3040569,0,37.96,24.76,41.12,37.78,6.666666666666667,1,1,0,0,0,13,2,1,4392.5,99805.977,33794.852,0,0,0,30.70607,1814.2766 +12019,14674,26188,26187,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,5.9207387,5.9469786,8,-1,31.124426,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4232979,6.2760544,41.12,37.78,37.96,24.76,8.333333333333334,1,1,0,0,0,13,2,1,4392.5,99805.977,33794.852,0,0,0,30.70607,1814.2766 +12020,14675,26189,26190,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.0946321,7.9653168,0,21,-2,-17.259596,0,2,2,2021,17,5,52,50,1,5,0,6.2892327,6.2892327,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,38.53,62.21,29.66,30.02,3.333333333333333,1,1,0,1,11,7,3,0,226,232694.53,208444.94,0,0,0,1112.5071,2080.6089 +12020,14675,26190,26189,-9,-9,1,0,48,0,0,0,2,2,-9,1,1,0,0,0,21,2,16.553701,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.66,30.02,38.53,62.21,3.333333333333333,1,1,0,0,7,7,3,0,226,232694.53,208444.94,0,0,0,1112.5071,2080.6089 +12021,14676,26191,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,3,0,0,0,0,0,-957.80609,-9,1,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.23,41.37,-9,-9,3.333333333333333,1,1,1,0,8,12,1,1,915,-9531.6758,-104712.88,0,0,0,0,729.67236 +12022,14677,26192,26193,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9724798,8.3118191,50,1,-2.1603396,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.30994144,8.0063715,58.32,50.22,57.06,57.76,8.333333333333334,1,1,0,0,7,5,4,1,596,956787.75,685084.81,232454.13,0,0,0,3102.9673 +12022,14677,26193,26192,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,7.5378871,7.6936111,50,-1,86.631851,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3647637,7.3316603,57.06,57.76,58.32,50.22,8.333333333333334,1,1,0,0,0,5,4,1,596,956787.75,685084.81,232454.13,0,0,0,3102.9673 +12023,14678,26194,26195,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,0,0,0,17,-6,74.6828,0,2,2,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.1068578,0,40.8,55.74,49.59,58.37,6.666666666666667,2,3,0,0,2,8,5,1,411.5,399021.75,124628.28,315194.22,66534.297,0,0,2740.4209 +12023,14678,26195,26194,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.9462452,9.1479321,0,17,6,50.809837,0,2,1,2021,11,0,38,40,1,0,0,25.926348,25.926348,.05,.05,0,0,0,0,0,0,0,0,0,4.2826538,0,49.59,58.37,40.8,55.74,8.333333333333334,2,3,0,0,8,8,5,1,411.5,399021.75,124628.28,315194.22,66534.297,0,0,2740.4209 +12024,14679,26196,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1014.9946,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,-9,-9,7,1,1,0,0,0,13,1,1,126,39022.996,0,0,0,0,0,665.03369 +12025,14680,26197,26198,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,8.5500822,8.7206306,0,9,3,-68.6735,0,3,3,2021,12,0,41,40,1,0,0,14.797119,14.797119,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,37.85,54.28,8.333333333333334,1,1,0,0,10,12,5,1,1902,1336313.3,908061.19,187843.88,0,0,0,4165.9536 +12025,14680,26198,26197,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.3763714,8.6290159,0,9,-3,-19.579359,0,2,3,2021,24,12,39,38,1,12,0,15.414956,15.414956,0,0,0,0,0,0,0,0,0,0,0,0,0,37.85,54.28,46.08,57.2,3.333333333333333,1,1,0,0,10,12,5,1,1902,1336313.3,908061.19,187843.88,0,0,0,4165.9536 +12026,14681,26199,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.5728655,7.2900648,0,0,0,-1140.8782,0,3,3,2021,11,0,30,30,1,2,0,7.164155,7.164155,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,1,7,12,3,1,940,-70174.031,0,0,0,0,0,680.81024 +12027,14682,26200,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,7.8543639,7.829164,0,0,-942.28705,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.7773707,0,26.128035,0,1,1,0,8.7021255,7.7094512,49.63,54.22,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1005,781144.25,259810.61,259046.31,0,1808.0479,0,2574.6187 +12028,14683,26201,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1121.082,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.1443191,0,28.379684,0,1,1,0,0,0,43.1,36.84,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,262,212801.89,0,0,0,0,0,775.6922 +12029,14684,26202,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,7.5899487,7.6286211,0,0,0,-963.4328,0,3,3,2021,25,10,31,31,1,10,0,8.1007013,8.1007013,0,0,0,0,0,0,0,0,0,0,0,2.7120917,0,49.35,59.64,-9,-9,6.666666666666667,1,1,0,1,7,13,3,0,100,84950.75,118697.6,0,0,0,0,799.78766 +12029,14685,26203,-9,26202,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1072.3213,-9,3,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,1,13,1,0,226,89574.32,0,0,0,0,0,178.19464 +12030,14686,26204,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1000.6782,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.6343471,48.106148,21.381647,0,1,1,0,0,0,52.01,28.38,-9,-9,10,2,3,0,0,0,8,1,1,544,-79087.141,0,0,0,0,0,449.04932 +12031,14687,26205,26206,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,3.9896662,4.5140448,58,-1,1.0202037,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.0582151,46.88,22.99,36.92,51.87,5,1,1,0,1,7,6,2,1,1392.5,21456.814,0,0,0,0,0,1540.7351 +12031,14687,26206,26205,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,4.503047,4.6890049,58,1,-143.46698,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.8687415,4.5888448,36.92,51.87,46.88,22.99,8.333333333333334,1,1,0,0,0,6,2,1,1392.5,21456.814,0,0,0,0,0,1540.7351 +12032,14688,26207,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,8.1104364,8.4458323,0,0,0,-945.591,0,3,3,2021,14,2,39,50,1,2,0,11.534019,11.534019,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,3,9,4,1,1199,-26592.469,9550.4922,0,0,-1071.4916,2189.9941,1998.1143 +12033,14689,26208,26209,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.8108191,8.2800035,6.4789553,11,0,-70.719032,0,-9,-9,2021,7,0,16,35,1,0,0,20.271164,20.271164,0,0,0,0,0,0,0,0,1,1,0,0,7.0457878,51.83,57.2,44.49,35.36,8.333333333333334,1,1,0,0,12,12,3,1,525,1266425.5,665444.5,232661.97,0,0,0,2395.2124 +12033,14689,26209,26208,-9,-9,1,0,69,0,0,0,1,1,-9,1,2,0,0,0,11,9,-13.332798,0,1,1,2021,4,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.49,35.36,51.83,57.2,3.333333333333333,1,1,0,0,11,12,3,1,525,1266425.5,665444.5,232661.97,0,0,0,2395.2124 +12034,14690,26210,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.5787125,6.3811851,0,0,0,-1048.7437,0,3,3,2021,7,0,16,16,1,0,0,4.7063227,4.7063227,0,0,.05,0,0,0,0,0,0,0,0,0,0,40.76,50.23,-9,-9,8.333333333333334,1,1,0,0,6,1,2,0,201,317789.63,48271.535,128689.64,0,0,0,353.50497 +12034,14691,26211,-9,26210,-9,1,0,18,0,0,0,2,2,1,0,5,0,0,0,0,0,-1089.359,-9,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,2,1,1,0,249,111486.53,0,0,0,0,0,0 +12035,14692,26212,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.1692262,6.970541,0,0,-1012.6911,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2819362,43.54,27.51,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,1467,40053.367,-9851.4736,0,0,0,0,1059.9407 +12036,14693,26213,26214,-9,-9,1,1,49,0,0,0,2,2,-9,1,3,0,0,0,7,-6,18.298765,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.7606854,0,38.75,53.76,51.83,57.2,5,1,1,0,0,7,6,4,1,271,218211.06,83441.438,119744.95,64031.555,16558.648,0,2397.6899 +12036,14693,26214,26213,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.4128637,8.5493536,6.9979625,7,6,109.76785,0,-9,-9,2021,12,0,37,40,1,0,0,12.675992,12.675992,0,0,0,0,0,0,0,0,1,1,0,0,6.9080868,51.83,57.2,38.75,53.76,6.666666666666667,1,1,0,0,8,6,4,1,271,218211.06,83441.438,119744.95,64031.555,16558.648,0,2397.6899 +12036,14694,26215,-9,26214,26213,1,0,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1038.3489,0,2,2,2021,7,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,55.2,49.4,-9,-9,8.333333333333334,1,1,0,0,1,6,1,1,270,68103.398,0,0,0,0,0,0 +12037,14695,26216,26217,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,6.5581803,6.6587539,0,8,6,32.665207,0,2,3,2021,8,0,50,72,1,0,0,1.3468698,1.3468698,.05,.05,0,1,0,0,0,0,1,1,0,7.406074,0,57.57,49.69,58.15,52.91,1.666666666666667,1,1,0,0,9,9,5,1,334,2373639.8,2065342.8,577273.38,252666.91,0,0,8320.6113 +12037,14695,26217,26216,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.5942068,9.8084497,0,8,-6,24.091564,0,2,2,2021,6,0,38,37,1,0,0,43.231819,43.231819,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,57.57,49.69,8.333333333333334,1,1,0,0,9,9,5,1,334,2373639.8,2065342.8,577273.38,252666.91,0,0,8320.6113 +12037,14696,26218,-9,26216,26217,1,1,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-964.2323,-9,3,1,2021,15,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.32,61.53,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1231,-1547.4534,0,0,0,0,0,0 +12038,14697,26219,26222,-9,-9,1,1,47,0,4,0,1,1,-9,0,4,6.8646436,7.010735,0,18,10,-33.364193,0,3,3,2021,17,6,40,0,1,6,0,2.8608124,2.8608124,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.11,33.63,36.51,54.93,10,2,3,0,0,7,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26220,-9,26222,26219,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-945.96979,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26221,-9,26222,26219,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-957.1131,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26222,26219,-9,-9,1,0,37,0,4,0,3,3,-9,0,3,8.3617725,8.4594202,0,18,-10,2.4328341,0,3,1,2021,12,2,45,0,1,2,0,13.864354,13.864354,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.51,54.93,53.11,33.63,5,2,3,0,0,1,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26223,-9,26222,26219,1,1,13,0,4,1,3,0,-9,0,4,0,0,0,0,0,-968.03851,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12038,14697,26224,-9,26222,26219,1,1,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1093.8365,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,6,3,0,300.5,213677.92,93127.602,258161.22,158232.63,0,0,3850.7302 +12039,14698,26225,26226,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.3534956,8.173955,0,2,-7,-109.69385,0,-9,-9,2021,11,2,38,57,1,2,0,12.920374,12.920374,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.01,58.61,46.59,46.3,6.666666666666667,1,1,0,0,1,4,4,1,1556.5,3644.752,18266.672,171209.28,106139.46,9062.6572,0,3442.4951 +12039,14698,26226,26225,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.1854305,7.9434423,0,2,7,67.03373,0,2,2,2021,8,0,38,39,1,0,0,8.9780378,8.9780378,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.59,46.3,40.01,58.61,5,1,1,0,0,6,4,4,1,1556.5,3644.752,18266.672,171209.28,106139.46,9062.6572,0,3442.4951 +12040,14699,26227,-9,-9,-9,1,0,21,0,1,0,1,1,-9,0,5,7.2223253,7.1206059,0,0,0,-899.10809,0,2,3,2021,9,0,25,25,1,0,1,6.2689042,6.2689042,0,0,0,0,0,0,0,0,1,1,0,7.5105252,0,56.65,51.02,-9,-9,10,1,1,0,0,14,13,3,1,619,-84546.188,0,0,0,0,0,1670.5646 +12041,14700,26228,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1176243,8.0642576,0,0,-1142.2225,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9349399,8.3646173,45.39,47.2,-9,-9,6.666666666666667,1,1,0,0,0,6,4,1,761,338717.13,309266.19,152243.23,0,0,0,3722.4951 +12042,14701,26229,26230,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,7.7389245,7.5268669,55,1,-162.73447,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3664098,60.12,54.8,59.21,43.05,8.333333333333334,1,1,0,0,3,1,3,1,665,992760.13,532231.88,318240.97,0,0,0,2114.8076 +12042,14701,26230,26229,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,5.8999357,5.8276649,55,-1,15.284361,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,6.6294246,0,0,1,1,0,0,5.7550755,59.21,43.05,60.12,54.8,6.666666666666667,1,1,0,0,0,1,3,1,665,992760.13,532231.88,318240.97,0,0,0,2114.8076 +12043,14702,26231,26232,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,9.3741894,9.5532341,7.5722237,43,2,21.533537,0,2,2,2021,14,3,35,36,1,3,0,33.979385,33.979385,0,0,.05,0,0,0,0,0,0,0,0,7.6007495,7.8979702,40.16,59.89,46.08,57.2,3.333333333333333,1,1,0,0,11,9,5,1,2404.5,1270969.3,376497.31,722990.13,0,0,0,8121.2832 +12043,14702,26232,26231,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.1311188,8.1353874,0,8,-2,75.340477,0,2,1,2021,14,2,48,44,1,2,0,7.3709688,7.3709688,0,0,0,0,0,0,0,0,0,0,0,7.3974285,0,46.08,57.2,40.16,59.89,5,1,1,0,0,11,9,5,1,2404.5,1270969.3,376497.31,722990.13,0,0,0,8121.2832 +12044,14703,26233,26234,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,7.3148303,7.6145959,0,9,0,-66.096321,0,2,2,2021,12,0,30,-9,1,0,0,5.9510031,5.9510031,0,0,0,0,0,0,0,0,0,0,0,4.2809963,0,36.79,45.74,58.47,50.22,5,1,1,0,0,11,9,5,0,1225,340651.56,7946.0273,430713.88,120005.16,0,22334.41,3099.6475 +12044,14703,26234,26233,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.576539,8.3598356,0,9,0,-144.55576,0,2,2,2021,6,0,52,49,1,0,0,13.441891,13.441891,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.47,50.22,36.79,45.74,8.333333333333334,1,1,0,0,11,9,5,0,1225,340651.56,7946.0273,430713.88,120005.16,0,22334.41,3099.6475 +12045,14704,26235,-9,26236,26237,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.08478,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12045,14704,26236,26237,-9,-9,1,0,40,0,2,0,1,1,1,0,4,8.413702,8.482914,0,18,1,-174.76112,-9,1,2,2021,9,0,51,0,1,0,0,10.442707,10.442707,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.32,53.44,8.333333333333334,1,1,0,0,7,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12045,14704,26237,26236,-9,-9,1,1,39,0,2,0,1,1,-9,0,2,9.0840406,9.2106056,0,17,-1,58.385445,0,2,2,2021,11,0,45,55,1,0,0,22.13014,22.13014,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,57.16,56.15,5,1,1,0,0,12,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12045,14704,26238,-9,26236,26237,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.5593,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,440.75,222199.91,135713.36,206728.7,146678.73,0,0,4176.978 +12046,14705,26239,26240,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,9.1980495,9.0429382,0,14,-4,-102.13873,0,2,2,2021,10,0,41,41,1,0,0,30.624887,30.624887,.05,.05,0,0,0,0,0,0,0,0,0,3.2338402,0,46.5,58.26,45.49,58.84,8.333333333333334,1,1,0,0,15,11,5,1,596.5,1083039.6,677550.25,280135.41,0,0,0,6520.1846 +12046,14705,26240,26239,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.0176573,9.1333218,0,4,4,-33.139885,0,-9,-9,2021,17,6,47,42,1,6,0,22.192139,22.192139,.05,.05,.05,0,0,0,0,0,0,0,0,6.0422263,0,45.49,58.84,46.5,58.26,6.666666666666667,1,1,0,0,8,11,5,1,596.5,1083039.6,677550.25,280135.41,0,0,0,6520.1846 +12047,14706,26241,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,8.1487017,7.9123302,0,0,0,-1041.6025,0,1,1,2021,19,8,22,22,1,8,0,16.106178,16.106178,.05,.05,0,0,0,0,0,0,0,0,0,6.5683026,0,36.24,52.14,-9,-9,3.333333333333333,1,1,0,0,9,7,4,1,366,420090.94,54336.211,0,0,0,0,2298.1206 +12047,14707,26242,-9,-9,-9,1,1,22,0,0,1,1,0,-9,0,4,0,0,0,0,0,-962.28333,-9,-9,-9,2021,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.54,38.08,-9,-9,1.666666666666667,2,3,0,0,0,7,1,1,627,-51380.281,0,0,0,0,0,0 +12048,14708,26243,26244,-9,-9,1,1,67,0,0,0,1,1,-9,0,2,0,6.3543849,6.2375426,29,7,-19.262159,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9739695,5.9765849,52,41.28,64.23,44.69,8.333333333333334,1,1,0,0,6,10,3,1,573,1013342.2,424192.06,563319.88,407147.44,15117.137,0,1875.9895 +12048,14708,26244,26243,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.4284658,7.659678,0,29,-7,-40.579632,0,2,3,2021,6,0,15,20,1,0,0,14.09324,14.09324,0,0,0,0,0,0,0,2,1,1,0,4.0018148,0,64.23,44.69,52,41.28,8.333333333333334,1,1,0,0,9,10,3,1,573,1013342.2,424192.06,563319.88,407147.44,15117.137,0,1875.9895 +12049,14709,26245,-9,-9,-9,1,0,58,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1056.9331,0,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,-9,-9,1.666666666666667,1,1,1,0,8,13,1,1,312,124267.84,0,138083.91,0,0,0,1973.7979 +12050,14710,26246,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0645843,7.0471835,0,0,-970.0141,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0353861,44.19,56.73,-9,-9,6.666666666666667,3,4,0,0,9,6,2,1,857,549091.81,128109.83,236229.39,0,0,0,143.78407 +12051,14711,26247,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,8.0617523,8.1768417,0,0,-1068.1093,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,1,2.6685898,0,29.38015,0,1,1,0,8.113266,5.7525058,68.11,27.95,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,235,1078179.3,461847.06,443006.16,0,0,0,2203.7056 +12052,14712,26248,26249,-9,-9,1,1,76,0,0,0,1,1,-9,0,2,0,7.6968699,8.1731081,53,3,-32.506145,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,4.374495,0,0,1,1,0,7.9689164,7.7576351,37.98,43.29,51,46,8.333333333333334,1,1,0,0,11,12,3,1,1189,737827.25,407213.81,204939.78,0,0,75.557762,2860.7021 +12052,14712,26249,26248,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.6033306,5.5508709,53,-3,91.639206,-9,2,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1220226,5.7651191,51,46,37.98,43.29,7,1,1,0,0,0,12,3,1,1189,737827.25,407213.81,204939.78,0,0,75.557762,2860.7021 +12053,14713,26250,26251,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.5899305,7.7648768,39,-6,-98.246971,0,3,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.7522054,7.8507881,50.77,33.47,49.28,52.09,5,1,1,0,0,10,10,4,1,582.5,1395026.8,963294,555921.38,0,0,0,5045.1265 +12053,14713,26251,26250,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.4132414,8.2398453,41,6,122.63794,0,2,1,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3777599,8.4253454,49.28,52.09,50.77,33.47,8.333333333333334,1,1,0,0,7,10,4,1,582.5,1395026.8,963294,555921.38,0,0,0,5045.1265 +12054,14714,26252,26253,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,7.6027184,7.642262,36,3,86.96096,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,1.6224056,7.6900768,52,54.51,57.06,57.76,8.333333333333334,1,1,0,0,11,10,5,1,274,2332906,1027498,770096.63,0,0,0,6895.0278 +12054,14714,26253,26252,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,9.1859217,9.6425648,8.295475,38,-3,-13.846244,0,2,1,2021,7,0,65,48,1,0,0,20.896294,20.896294,.05,.05,0,0,0,0,0,0,0,0,0,0,8.356389,57.06,57.76,52,54.51,10,1,1,0,0,10,10,5,1,274,2332906,1027498,770096.63,0,0,0,6895.0278 +12055,14715,26254,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,1,7.8813725,8.9822006,7.2267895,0,0,-1008.1999,0,2,2,2021,7,1,46,25,1,1,0,8.0422153,8.0422153,0,0,0,0,0,0,0,0,1,1,0,7.2958422,0,57.77,30.72,-9,-9,6.666666666666667,1,1,0,0,8,7,5,0,483,535564.75,98350.391,186962.94,37316.934,5530.2129,0,2259.6594 +12055,14716,26255,-9,26254,-9,1,1,22,0,0,0,2,2,-9,0,4,7.501708,7.7014246,0,0,0,-1016.401,0,1,1,2021,8,0,42,40,1,0,1,5.9142909,5.9142909,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,3,7,3,0,578,-74104.828,-63790.484,0,0,0,0,1372.1755 +12055,14717,26256,-9,26254,-9,1,0,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1026.8695,-9,1,-9,2021,22,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.1,64.88,-9,-9,6.666666666666667,1,1,0,0,1,7,1,0,155,103684.62,0,0,0,0,0,826.90961 +12056,14718,26257,26258,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.6134582,7.3572268,51,3,-13.242445,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1405044,7.3257761,68.5,31.88,57.16,56.15,8.333333333333334,1,1,0,0,0,10,2,1,244,361423,253804.88,0,0,0,0,1957.158 +12056,14718,26258,26257,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.3301759,5.39715,51,-3,-45.734367,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2886472,5.2597761,57.16,56.15,68.5,31.88,10,1,1,0,0,0,10,2,1,244,361423,253804.88,0,0,0,0,1957.158 +12057,14719,26259,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.1800265,6.9510083,0,0,-988.19354,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0822375,6.907536,54.2,57.49,-9,-9,10,1,1,0,0,0,9,2,1,507,380154.47,195968.98,180581.22,0,0,0,1749.9407 +12058,14720,26260,-9,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,7.8693466,7.7462955,0,0,0,-1037.9242,0,2,2,2021,28,12,47,41,1,12,0,4.9084826,4.9084826,0,0,0,0,0,0,0,0,0,0,0,0,0,27.11,59.22,-9,-9,6.666666666666667,1,1,0,0,8,5,3,1,941,108459.17,96609.68,0,0,2625.396,1565.1935,143.88965 +12058,14721,26261,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.5079894,7.563498,0,0,0,-1076.4668,-9,-9,-9,2021,12,0,24,0,1,2,0,9.2571754,9.2571754,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,0,0,1,5,3,1,1517,-95400.727,0,0,0,0,0,979.46429 +12059,14722,26262,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,7.9380627,8.0336037,7.0540786,0,0,-989.35883,0,1,1,2021,9,1,60,60,1,1,0,4.8148856,4.8148856,0,0,0,0,0,0,0,0,1,1,0,7.318821,7.2208519,51.73,56.3,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,492,467947.66,24381.27,0,0,0,0,2066.5466 +12060,14723,26263,26264,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.3567843,7.1067281,0,28,5,69.376038,0,3,3,2021,7,0,50,50,1,0,0,3.4409811,3.4409811,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,47.55,44.33,8.333333333333334,1,1,0,0,11,13,2,1,362,258285.34,245833.34,113413.89,0,0,0,2067.272 +12060,14723,26264,26263,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,27,-5,10.619972,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.55,44.33,57.16,56.15,1.666666666666667,1,1,0,0,1,13,2,1,362,258285.34,245833.34,113413.89,0,0,0,2067.272 +12060,14724,26265,-9,26264,26263,1,1,22,0,0,1,1,0,0,0,4,0,0,0,0,0,-910.14465,-9,3,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,6,13,1,1,1334,-176218.22,0,0,0,0,0,0 +12061,14725,26266,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3385525,8.2592573,0,0,0,-972.61969,0,3,2,2021,4,1,38,38,1,1,0,14.447088,14.447088,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,43.04,-9,-9,8.333333333333334,3,4,0,0,12,8,5,0,997,1374011.9,1347601.3,0,0,0,0,1340.2622 +12062,14726,26267,-9,-9,-9,1,0,45,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1031.0959,0,3,2,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,30.53,41.68,-9,-9,3.333333333333333,2,3,0,0,7,6,1,1,1562,8486.125,0,0,0,5618.043,0,-197.53937 +12062,14726,26268,-9,26267,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.0221,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,6,1,1,1562,8486.125,0,0,0,5618.043,0,-197.53937 +12063,14727,26269,26270,-9,-9,1,1,59,0,0,0,3,3,-9,1,4,0,6.1303468,5.8420463,43,3,15.916498,0,-9,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0756783,55,53,16.04,23.99,8,1,1,0,0,0,10,2,0,1083.5,982579.69,640183,263034.28,0,0,0,1962.6824 +12063,14727,26270,26269,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,43,-3,-43.344501,0,-9,-9,2021,28,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,16.04,23.99,55,53,6.666666666666667,1,1,0,0,0,10,2,0,1083.5,982579.69,640183,263034.28,0,0,0,1962.6824 +12064,14728,26271,26272,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,7.4698396,7.3035831,0,5,6,-21.039333,0,2,2,2021,9,0,35,40,1,0,0,7.9412851,7.9412851,0,0,0,0,0,0,0,0,0,0,0,0,0,54.77,55.87,33.01,63.17,8.333333333333334,1,1,0,0,7,6,4,1,1617,29539.172,0,60188.938,58246.773,0,0,2882.1279 +12064,14728,26272,26271,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.2840815,8.2212248,0,5,-6,-71.01207,0,2,2,2021,14,2,42,55,1,2,0,10.191025,10.191025,0,0,0,0,0,0,0,0,0,0,0,0,0,33.01,63.17,54.77,55.87,6.666666666666667,1,1,0,0,8,6,4,1,1617,29539.172,0,60188.938,58246.773,0,0,2882.1279 +12065,14729,26273,-9,26274,26275,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1019.7762,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26274,26275,-9,-9,1,0,38,0,3,0,2,2,-9,0,4,6.881587,6.8588653,0,15,-2,-21.448002,0,3,2,2021,10,0,21,28,1,0,0,4.9605446,4.9605446,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,50.54,62.09,8.333333333333334,2,3,0,0,7,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26275,26274,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.0829964,8.2463036,0,15,2,36.389145,0,3,3,2021,6,0,40,39,1,0,0,9.1580105,9.1580105,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,51.24,58.84,8.333333333333334,2,3,0,0,14,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26276,-9,26274,26275,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1056.933,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.73,55.81,-9,-9,8.333333333333334,2,3,0,0,0,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12065,14729,26277,-9,26274,26275,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.23987,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,2,3,1,1039.6,354105.13,416147.41,146178.53,108212.19,0,0,2552.6467 +12066,14730,26278,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,10.068532,10.122061,0,0,0,-912.00037,0,2,1,2021,9,1,50,40,1,1,0,45.967091,45.967091,.05,.05,.05,0,0,0,0,2,0,0,0,9.0193367,0,52.24,50.75,-9,-9,6.666666666666667,1,1,0,0,13,9,5,1,770,290327.66,216683.06,200129.23,52940.41,3064.2568,0,8780.957 +12067,14731,26279,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1036.1772,0,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,45.52,28.07,-9,-9,1.666666666666667,3,4,1,1,1,8,1,0,299,-66223.242,-39243.938,0,0,0,0,1294.4181 +12067,14732,26280,-9,26279,-9,1,1,31,0,0,0,2,2,-9,0,4,7.9885559,8.2499018,0,0,0,-1021.0269,0,2,2,2021,9,0,39,37,1,0,1,11.624138,11.624138,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,-9,-9,8.333333333333334,4,2,0,0,11,8,4,0,713,61836.516,107024.5,0,0,0,0,1883.9875 +12068,14733,26281,26282,-9,-9,1,1,70,0,1,0,1,1,-9,0,4,8.3712006,8.4227343,0,11,25,22.181032,0,-9,-9,2021,8,0,45,45,1,0,0,9.5032253,9.5032253,.05,.05,0,0,0,0,0,0,1,1,0,.83478653,0,57.16,56.15,57.09,46.7,8.333333333333334,1,1,0,0,13,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14733,26282,26281,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.3727465,7.4618349,0,11,-25,-67.598274,0,2,2,2021,7,0,35,6,1,0,0,5.9877038,5.9877038,0,0,0,0,0,0,0,0,1,1,0,0,0,57.09,46.7,57.16,56.15,8.333333333333334,1,1,0,0,4,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14733,26283,-9,26282,26281,1,1,17,0,1,0,2,2,1,0,5,0,0,0,0,0,-938.19812,-9,2,1,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1159079,0,20.24,70.43000000000001,-9,-9,8.333333333333334,1,1,1,0,0,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14733,26284,-9,26282,26281,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.31335,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,389.75,1622831.5,1588704.5,122136.78,48165.785,0,0,3495.1077 +12068,14734,26285,-9,26282,26281,1,0,19,0,1,1,2,0,0,0,4,0,4.6929026,4.7005076,0,0,-885.3576,-9,2,1,2021,29,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5789256,0,17.34,67.89,-9,-9,3.333333333333333,1,1,0,0,0,6,2,1,1559,30383.137,0,0,0,0,-942.68817,233.97992 +12069,14735,26286,26288,-9,-9,1,0,38,0,3,0,2,2,-9,0,2,7.641706,7.4517541,0,18,-8,-29.921234,0,2,2,2021,9,0,21,20,1,0,0,10.529603,10.529603,.05,.05,0,0,0,0,0,0,1,1,0,3.2217073,0,57.57,49.69,58.15,52.91,1.666666666666667,1,1,0,0,10,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12069,14735,26287,-9,26286,26288,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.67035,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12069,14735,26288,26286,-9,-9,1,1,46,0,3,0,3,3,-9,0,4,8.4016094,8.3620691,0,18,8,38.613995,0,3,2,2021,9,1,40,40,1,1,0,13.350663,13.350663,.05,.05,0,0,0,0,0,0,1,1,0,4.9451923,0,58.15,52.91,57.57,49.69,8.333333333333334,1,1,0,0,10,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12069,14735,26289,-9,26286,26288,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-848.9483,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,3,1,519.25,416419.06,406274.81,73091.891,64692.063,2558.7588,2096.5002,2738.1772 +12070,14736,26290,26292,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,7.8299785,7.2707896,0,17,-2,-59.815617,0,1,3,2021,12,3,28,29,1,3,0,8.4368534,8.4368534,.05,.05,0,0,0,0,0,0,0,0,0,5.4208221,0,40.32,53.3,37.17,50.6,6.666666666666667,1,1,0,0,12,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12070,14736,26291,-9,26290,26292,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.84088,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12070,14736,26292,26290,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.8828173,8.5999355,0,17,2,66.45845,0,2,2,2021,12,0,37,40,1,0,0,20.50322,20.50322,.05,.05,0,0,0,0,0,0,0,0,0,7.1840496,0,37.17,50.6,40.32,53.3,6.666666666666667,1,1,0,0,13,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12070,14736,26293,-9,26290,26292,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-910.7453,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,2,4,1,746.5,365515.56,86077.891,280555.47,0,0,0,5062.7256 +12071,14737,26294,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.6340094,8.8276367,0,0,0,-970.65399,0,3,2,2021,12,1,38,36,1,1,0,19.166571,19.166571,0,0,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,-9,-9,6.666666666666667,1,1,0,0,9,9,5,1,491,907984.94,0,662567.94,0,0,0,2953.3521 +12072,14738,26295,26296,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,30,-6,-42.585838,0,1,1,2021,7,0,0,60,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.21,26.99,57.16,56.15,10,1,1,1,0,11,2,3,1,425.5,1422427,1199270.8,165702.09,0,0,0,922.53687 +12072,14738,26296,26295,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,7.649828,8.4116554,8,6,-10.234585,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8121161,57.16,56.15,59.21,26.99,8.333333333333334,1,1,0,0,9,2,3,1,425.5,1422427,1199270.8,165702.09,0,0,0,922.53687 +12072,14739,26297,-9,26295,26296,1,1,21,0,0,0,2,2,-9,0,4,8.8225641,8.4059191,0,0,0,-900.6969,0,2,2,2021,11,2,60,45,1,2,1,11.665872,11.665872,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.29,62.09,-9,-9,6.666666666666667,1,1,0,0,1,2,5,1,608,-128577.88,-66022.789,77912.969,141234.63,-188.72787,257.82303,2676.5427 +12073,14740,26298,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.7384906,9.6358232,9.6320295,0,0,-1086.8125,-9,-9,-9,2021,7,0,36,0,1,0,0,6.6822906,6.6822906,0,0,0,0,0,0,0,0,1,1,0,0,9.4803333,59.91,42.65,-9,-9,8.333333333333334,1,1,0,0,13,10,5,0,924,771587.5,248819.34,0,0,0,5594.9116,8071.2256 +12074,14741,26299,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.1135626,7.9530249,0,0,-1015.0189,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5991144,7.8917913,57.34,50.6,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,1214,986927.63,796376.56,0,0,4883.4419,0,2837.0784 +12075,14742,26300,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,5,8.5131893,8.4092817,0,0,0,-1006.423,0,-9,-9,2021,10,1,40,30,1,1,0,10.730557,10.730557,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.72,55.58,-9,-9,8.333333333333334,1,1,0,0,11,9,4,1,2502,373562.84,160471.69,406677.03,213153.77,579.71271,9803.5781,1589.198 +12076,14743,26301,26302,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,9.2071543,9.158865,0,30,0,-16.797695,0,2,1,2021,18,6,42,45,1,6,0,29.673927,29.673927,.05,.05,0,0,0,0,0,0,0,0,0,4.9896455,0,37.13,55.9,56.47,59.4,6.666666666666667,1,1,0,0,11,2,5,1,492.66666,1441080.1,397508.72,448311.31,0,0,970.56354,5376.8438 +12076,14743,26302,26301,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.2944717,8.4598503,6.1283774,30,0,48.291061,0,3,1,2021,10,1,30,34,1,1,0,15.689088,15.689088,.05,.05,0,0,0,0,0,0,0,0,0,7.4749799,0,56.47,59.4,37.13,55.9,10,1,1,0,0,11,2,5,1,492.66666,1441080.1,397508.72,448311.31,0,0,970.56354,5376.8438 +12076,14743,26303,-9,26302,26301,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-908.69202,-9,2,1,2021,9,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2199965,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,2,5,1,492.66666,1441080.1,397508.72,448311.31,0,0,970.56354,5376.8438 +12076,14744,26304,-9,26302,26301,1,1,22,0,0,0,1,1,1,0,5,0,0,0,0,0,-1007.3212,-9,2,1,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5665262,0,62.39,56.71,-9,-9,10,1,1,1,0,4,2,1,1,177,28412.029,0,0,0,22008.172,0,-258.24902 +12076,14745,26305,-9,26302,26301,1,1,20,0,0,0,2,2,0,0,5,0,6.306088,6.0420957,0,0,-882.89484,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7195911,0,59.43,58.05,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,669,-26760.15,0,0,0,539.69812,0,645.01654 +12077,14746,26306,26307,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,6.8808799,6.7096062,39,9,130.56427,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7216711,6.7858729,56.26,18.88,47.28,50.99,3.333333333333333,1,1,0,0,0,5,2,1,547.5,737735.75,275396.84,246131.13,0,0,0,2229.6409 +12077,14746,26307,26306,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,5.6727567,5.8969383,39,0,17.096455,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9960694,6.4250307,47.28,50.99,56.26,18.88,8.333333333333334,1,1,0,0,6,5,2,1,547.5,737735.75,275396.84,246131.13,0,0,0,2229.6409 +12078,14747,26308,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.0083418,7.3652263,0,0,-1000.4686,0,3,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.375587,29.83,35.21,-9,-9,3.333333333333333,1,1,0,0,0,2,3,1,383,233059.25,-36906.504,63126.879,0,0,0,825.9942 +12079,14748,26309,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,6.3232327,6.504807,0,0,-1099.3635,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,5.6129546,0,0,1,1,0,6.3743014,5.9522166,58,41.98,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,350,-15580.454,129527.05,44171.082,0,0,0,1608.3835 +12080,14749,26310,26311,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,7.8475666,9.2657242,8.813468,40,2,-10.082064,0,1,1,2021,8,0,14,14,1,0,0,21.855438,21.855438,.05,.05,0,0,0,0,0,0,1,1,0,0,8.4742651,55.36,51.57,53.44,36.01,8.333333333333334,2,3,0,0,15,8,5,1,463,811774.5,339566.44,197417.61,81317.672,0,18337.781,6410.5586 +12080,14749,26311,26310,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.8662848,7.9614282,40,-2,66.993301,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6476111,8.0898972,53.44,36.01,55.36,51.57,8.333333333333334,2,3,0,0,8,8,5,1,463,811774.5,339566.44,197417.61,81317.672,0,18337.781,6410.5586 +12081,14750,26312,-9,-9,-9,1,0,55,0,1,0,3,3,-9,1,2,0,0,0,0,0,-977.00232,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.48,16.73,-9,-9,10,3,4,0,0,0,8,1,0,2103,120274.7,0,0,0,0,694.40112,1386.5427 +12081,14750,26313,-9,26312,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.23773,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,2103,120274.7,0,0,0,0,694.40112,1386.5427 +12081,14751,26314,-9,26312,-9,1,0,27,0,1,0,1,1,-9,0,2,0,0,0,0,0,-993.2428,1,3,2,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,48.17,29.36,-9,-9,5,3,4,0,1,3,8,2,0,186,-141016.81,0,0,0,0,0,1239.0967 +12081,14752,26315,-9,26312,-9,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-1062.6625,-9,3,-9,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,63.33,24.58,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,464,55626.184,0,0,0,0,0,-192.40839 +12082,14753,26316,26317,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.7431126,8.9186001,0,7,-1,39.724937,0,3,2,2021,16,4,50,50,1,4,0,12.691315,12.691315,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.86,55.92,59.14,52.5,8.333333333333334,1,1,0,0,8,12,5,1,465,2412083.3,1982036.1,344461.31,48555.105,0,10421.777,4375.4424 +12082,14753,26317,26316,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.620389,8.8872271,0,7,1,107.06059,0,3,2,2021,7,0,35,45,1,0,0,18.237968,18.237968,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,42.86,55.92,8.333333333333334,1,1,0,0,8,12,5,1,465,2412083.3,1982036.1,344461.31,48555.105,0,10421.777,4375.4424 +12082,14753,26318,-9,26317,26316,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.11859,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,465,2412083.3,1982036.1,344461.31,48555.105,0,10421.777,4375.4424 +12082,14754,26319,-9,26317,26316,1,0,21,0,1,1,2,0,0,0,3,0,0,0,0,0,-929.40607,-9,1,1,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,58.32,-9,-9,5,1,1,0,0,3,12,2,1,1911,-64334.047,0,0,0,0,-55.170868,-1026.733 +12083,14755,26320,26321,-9,-9,1,0,49,0,0,0,2,2,-9,1,3,0,0,0,26,-5,0,0,2,2,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,23.17,55.77,29.26,31.62,3.333333333333333,1,1,0,1,0,2,1,0,596,-48139.84,126449.72,0,0,0,0,1423.6034 +12083,14755,26321,26320,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,0,0,26,5,0,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.26,31.62,23.17,55.77,1.666666666666667,1,1,0,0,0,2,1,0,596,-48139.84,126449.72,0,0,0,0,1423.6034 +12084,14756,26322,26323,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,0,0,0,8,-7,-86.541046,0,2,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.75,37.95,48.24,40.43,5,1,1,0,0,4,11,3,1,379.5,897041.25,597474.38,272474.13,38362.844,5454.2959,21.662914,2068.7932 +12084,14756,26323,26322,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,7.4034734,7.3873491,8,7,175.17181,0,2,2,2021,14,2,0,0,4,2,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,5.0589962,7.5803709,48.24,40.43,41.75,37.95,6.666666666666667,1,1,0,0,5,11,3,1,379.5,897041.25,597474.38,272474.13,38362.844,5454.2959,21.662914,2068.7932 +12085,14757,26324,26325,-9,-9,1,0,28,0,1,0,2,2,-9,1,1,0,0,0,10,-3,0,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.57,30.16,52.38,55.6,1.666666666666667,2,3,0,0,0,8,1,0,749.33331,27022.221,61263.949,229687.42,160312.63,790.49438,0,1190.3851 +12085,14757,26325,26324,-9,-9,1,1,31,0,1,0,1,1,-9,1,4,0,0,0,10,3,0,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,52.38,55.6,35.57,30.16,8.333333333333334,2,3,1,0,3,8,1,0,749.33331,27022.221,61263.949,229687.42,160312.63,790.49438,0,1190.3851 +12085,14757,26326,-9,26324,26325,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.43927,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,1,0,749.33331,27022.221,61263.949,229687.42,160312.63,790.49438,0,1190.3851 +12086,14758,26327,26329,-9,-9,1,1,50,0,1,0,2,2,-9,1,1,0,0,0,22,5,0,0,3,2,2021,21,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.17,33.92,36.82,54.92,1.666666666666667,1,1,0,1,0,2,2,0,1563,-75746.055,0,0,0,0,690.46423,2304.8662 +12086,14758,26328,-9,26329,26327,1,0,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-951.38812,-9,2,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,2,2,0,1563,-75746.055,0,0,0,0,690.46423,2304.8662 +12086,14758,26329,26327,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,0,0,0,22,-5,0,0,2,2,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.82,54.92,27.17,33.92,6.666666666666667,1,1,0,0,0,2,2,0,1563,-75746.055,0,0,0,0,690.46423,2304.8662 +12087,14759,26330,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,5.6570868,5.5080676,0,0,-904.62177,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2580786,58.9,39.43,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,456,21509.076,107803.2,0,0,0,0,874.64752 +12088,14760,26331,26333,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.7658162,6.673069,0,12,1,.39490429,0,3,1,2021,9,1,30,30,1,1,0,4.0029731,4.0029731,0,0,0,0,0,0,0,0,1,1,0,2.9460104,0,51.77,58.57,57.06,57.76,8.333333333333334,1,1,0,0,11,12,5,1,2059.3333,197690.05,83310.953,52665.523,0,0,0,3123.792 +12088,14760,26332,-9,26331,26333,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1105.6639,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,5,1,2059.3333,197690.05,83310.953,52665.523,0,0,0,3123.792 +12088,14760,26333,26331,-9,-9,1,1,46,0,1,0,1,1,-9,0,5,9.0434561,9.124774,0,12,-1,25.869606,0,-9,-9,2021,5,0,78,41,1,0,0,15.288317,15.288317,.05,.05,0,0,0,0,0,0,1,1,0,2.4027205,0,57.06,57.76,51.77,58.57,8.333333333333334,1,1,0,0,13,12,5,1,2059.3333,197690.05,83310.953,52665.523,0,0,0,3123.792 +12089,14761,26334,-9,-9,-9,1,0,65,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1057.0125,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,0,99.292198,0,0,1,1,0,0,0,50,47,-9,-9,7,2,3,0,0,0,6,1,1,351,237325.11,0,0,0,0,0,1442.395 +12089,14762,26335,26336,26334,-9,1,1,35,0,2,0,1,1,-9,0,3,8.1809397,8.0293598,0,6,8,-9.2210541,0,3,3,2021,17,5,37,37,1,5,0,9.0727205,9.0727205,0,0,0,0,0,0,0,74.5,1,1,0,0,0,37.28,55.9,41.14,54.03,5,2,3,0,0,12,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12089,14762,26336,26335,-9,-9,1,0,27,0,2,0,3,3,-9,0,3,0,0,0,6,-8,147.97691,0,-9,-9,2021,12,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,41.14,54.03,37.28,55.9,6.666666666666667,2,3,1,1,0,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12089,14762,26337,-9,26336,26335,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.38495,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12089,14762,26338,-9,26336,26335,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.8748,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,1284.75,34138.242,-32009.973,0,0,3876.3481,0,2430.6646 +12090,14763,26339,26340,-9,-9,1,0,33,0,0,0,2,2,-9,0,3,8.593461,8.6437368,0,4,0,12.928797,0,3,2,2021,20,8,39,38,1,8,0,10.762298,10.762298,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.51,59.43,31.52,63.65,10,1,1,0,0,10,2,5,1,291.5,28680.686,-13161.224,0,0,4451.3159,18135.842,3439.1904 +12090,14763,26340,26339,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.328887,8.5002632,0,4,0,-48.468201,0,-9,-9,2021,16,4,47,50,1,4,0,9.0503321,9.0503321,.05,.05,0,0,0,0,0,0,0,0,0,0,0,31.52,63.65,38.51,59.43,8.333333333333334,1,1,0,0,10,2,5,1,291.5,28680.686,-13161.224,0,0,4451.3159,18135.842,3439.1904 +12091,14764,26341,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.8751564,6.060575,0,0,-1003.7764,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1273801,5.9316149,33.22,36.3,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1022,290894.34,184646.44,251173.11,0,0,0,817.42053 +12092,14765,26342,26343,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.1355896,8.5631332,0,25,3,-26.639015,0,3,3,2021,12,1,55,50,1,1,0,8.7514658,8.7514658,.05,.05,0,0,0,0,0,2,0,0,0,0,0,47.54,44.53,39.73,42.82,5,1,1,0,0,10,2,4,1,1343,286327.56,242830.81,96131.281,81397.219,1789.9509,1096.0316,1583.3986 +12092,14765,26343,26342,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,0,0,0,25,-3,30.8776,0,2,-9,2021,22,9,0,80,3,9,0,0,0,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,39.73,42.82,47.54,44.53,6.666666666666667,1,1,1,0,10,2,4,1,1343,286327.56,242830.81,96131.281,81397.219,1789.9509,1096.0316,1583.3986 +12093,14766,26344,-9,26347,26345,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.29425,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12093,14766,26345,26347,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,0,0,0,6,1,0,0,1,3,2021,12,0,0,15,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,64.48,30.82,44.38,10,1,1,1,1,3,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12093,14766,26346,-9,26347,26345,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.69061,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12093,14766,26347,26345,-9,-9,1,0,31,0,2,0,1,1,-9,0,2,0,0,0,6,-1,0,1,-9,-9,2021,19,8,0,37,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.82,44.38,38.57,64.48,8.333333333333334,1,1,0,1,3,2,1,0,744.25,13075.943,0,0,0,0,0,3002.645 +12094,14767,26348,-9,26350,26349,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-756.02704,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,13,4,1,402.33334,-3503.7942,143134.94,150136.03,125058.83,11680.628,0,3296.3938 +12094,14767,26349,26350,-9,-9,1,1,37,0,2,0,2,2,-9,0,5,8.3427944,8.0231133,0,7,-1,-75.394806,0,-9,-9,2021,3,0,42,42,1,0,0,12.378962,12.378962,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.68,61,67.43000000000001,41.87,10,4,1,0,0,8,13,4,1,402.33334,-3503.7942,143134.94,150136.03,125058.83,11680.628,0,3296.3938 +12094,14767,26350,26349,-9,-9,1,0,38,0,2,0,3,3,-9,0,4,8.598299,8.557004,0,7,1,-22.85224,0,3,3,2021,6,0,42,40,1,0,0,17.119947,17.119947,.05,.05,0,0,0,0,0,0,1,1,0,0,0,67.43000000000001,41.87,46.68,61,8.333333333333334,1,1,0,0,8,13,4,1,402.33334,-3503.7942,143134.94,150136.03,125058.83,11680.628,0,3296.3938 +12095,14768,26351,26354,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.3542762,6.8925843,0,7,6,214.74423,0,2,2,2021,9,0,35,6,1,0,0,3.7216187,3.7216187,0,0,0,0,0,0,0,0,1,1,0,0,0,52.91,55.33,19.33,64.04000000000001,6.666666666666667,1,1,0,0,8,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12095,14768,26352,-9,26351,26354,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.32166,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12095,14768,26353,-9,26351,26354,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.8651,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12095,14768,26354,26351,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,8.3161182,8.359087,0,7,-6,-3.5290165,0,1,1,2021,14,5,55,52,1,5,0,8.4515257,8.4515257,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,19.33,64.04000000000001,52.91,55.33,3.333333333333333,1,1,0,0,7,12,3,0,602.75,57166.445,83243.773,0,0,6473.9712,1140.2162,1926.1233 +12096,14769,26355,26357,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.7623711,8.4992228,0,3,2,-36.416569,0,1,1,2021,12,2,48,48,1,2,0,16.449947,16.449947,.05,.05,.05,0,0,0,0,0,0,0,0,6.4520655,0,44.22,56.66,43.67,61.06,8.333333333333334,1,1,0,0,9,7,5,1,1008.6667,545747.5,151761.56,525587.88,121695.96,0,0,4805.9028 +12096,14769,26356,-9,-9,26355,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1027.7296,-9,-9,1,2021,27,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.83,69.67,-9,-9,1.666666666666667,1,1,0,0,0,7,5,1,1008.6667,545747.5,151761.56,525587.88,121695.96,0,0,4805.9028 +12096,14769,26357,26355,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.6209602,8.7629309,0,3,-2,130.94267,0,-9,-9,2021,9,0,35,38,1,0,0,19.011753,19.011753,.05,.05,.05,0,0,0,0,0,0,0,0,7.0332141,0,43.67,61.06,44.22,56.66,8.333333333333334,1,1,0,0,1,7,5,1,1008.6667,545747.5,151761.56,525587.88,121695.96,0,0,4805.9028 +12097,14770,26358,26359,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,7.8410845,7.9838452,37,-1,-107.82365,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,1.3582876,7.9040904,57.16,56.15,57.16,56.15,10,1,1,0,0,10,6,5,1,542.5,1229390.5,800940.06,289118.25,8033.1167,2496.9482,-829.2005,3980.2085 +12097,14770,26359,26358,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1678057,8.9224529,0,38,1,-53.720242,0,3,3,2021,7,0,48,48,1,0,0,23.599146,23.599146,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,12,6,5,1,542.5,1229390.5,800940.06,289118.25,8033.1167,2496.9482,-829.2005,3980.2085 +12098,14771,26360,26361,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.3942971,6.5923915,8,1,67.542351,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3235517,69.12,34.88,59.41,39.18,1.666666666666667,1,1,0,0,0,13,2,1,624,150399.89,-41998.656,140491.59,0,0,0,836.66968 +12098,14771,26361,26360,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,0,0,8,-1,74.742088,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.41,39.18,69.12,34.88,1.666666666666667,1,1,0,0,0,13,2,1,624,150399.89,-41998.656,140491.59,0,0,0,836.66968 +12099,14772,26362,26365,-9,-9,1,1,42,0,2,0,2,2,-9,0,2,8.2766438,8.3420467,0,22,5,-2.6483536,0,2,1,2021,13,2,44,44,1,2,0,11.172215,11.172215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.61,50.97,50.06,49.75,3.333333333333333,1,1,0,0,11,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14772,26363,-9,26365,26362,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.45056,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14772,26364,-9,26365,26362,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.2765,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14772,26365,26362,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.5004454,6.9551315,0,22,-5,-96.373116,0,2,2,2021,8,0,38,31,1,0,0,3.7926385,3.7926385,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.06,49.75,39.61,50.97,10,1,1,0,0,11,7,4,1,838,38197.895,80863.555,0,0,0,1946.3857,2412.1926 +12099,14773,26366,-9,26365,26362,1,0,19,0,2,0,2,2,-9,0,3,5.3173709,4.8825464,0,0,0,-1083.447,0,2,2,2021,6,0,35,17,1,0,1,.59128547,.59128547,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,2,7,2,1,691,-64229.605,0,0,0,0,0,600.34406 +12100,14774,26367,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3826137,7.9805264,0,0,0,-1109.7563,0,3,3,2021,19,7,30,30,1,7,0,7.3072963,7.3072963,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.7,54.34,-9,-9,3.333333333333333,1,1,0,1,14,11,3,1,427,-26169.656,-44506.363,0,0,0,0,1939.5267 +12100,14775,26368,-9,26367,-9,1,1,27,0,0,0,1,1,-9,0,4,8.0986481,8.0680904,0,0,0,-1011.1393,-9,2,-9,2021,17,6,35,0,1,6,1,11.775999,11.775999,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.9,55.12,-9,-9,6.666666666666667,1,1,0,0,11,11,4,1,1255,180873.97,3335.283,0,0,5804.4131,0,1668.6323 +12101,14776,26369,-9,-9,-9,1,0,28,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1022.1218,0,2,2,2021,9,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,1.666666666666667,1,1,1,0,11,13,1,0,594.66669,-58231.895,0,0,0,0,0,1178.3317 +12101,14776,26370,-9,26369,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.7711,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,13,1,0,594.66669,-58231.895,0,0,0,0,0,1178.3317 +12101,14776,26371,-9,26369,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1081.8406,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,594.66669,-58231.895,0,0,0,0,0,1178.3317 +12102,14777,26372,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,5.707674,5.8145537,0,0,-924.91455,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2324347,57.88,34.09,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,133,183412.81,56487.223,141382.88,0,0,0,1062.2434 +12103,14778,26373,26374,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.5635805,6.5396957,47,-6,-95.467972,0,3,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.26681796,6.8287449,43.26,30.71,62.17,22.95,6.666666666666667,1,1,0,0,6,7,3,1,604,1507631.8,609926.38,709995.13,0,5354.811,0,2208.5381 +12103,14778,26374,26373,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.8033743,7.4206381,47,6,-.52728826,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8483856,7.6990228,62.17,22.95,43.26,30.71,6.666666666666667,1,1,0,0,0,7,3,1,604,1507631.8,609926.38,709995.13,0,5354.811,0,2208.5381 +12104,14779,26375,26376,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.6567802,8.8250179,0,18,-7,-39.044273,0,1,1,2021,8,0,57,57,1,0,0,12.276877,12.276877,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49.69,52.99,8.333333333333334,1,1,0,0,9,10,5,1,899.5,65539.969,29702.949,184562.56,141511.69,3607.1958,0,4663.2441 +12104,14779,26376,26375,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.7012205,8.3820467,0,18,7,-82.453781,0,2,1,2021,15,4,43,30,1,4,0,11.17484,11.17484,0,0,0,0,0,0,0,0,0,0,0,3.6243682,0,49.69,52.99,57.33,53.46,6.666666666666667,2,3,0,0,8,10,5,1,899.5,65539.969,29702.949,184562.56,141511.69,3607.1958,0,4663.2441 +12105,14780,26377,-9,-9,-9,1,1,89,0,0,0,3,3,-9,0,2,0,5.6806593,5.8196959,0,0,-878.74493,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3978715,64.84999999999999,21.6,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,280,155830.36,176630.03,52038.449,0,0,0,2223.8381 +12106,14781,26378,-9,26381,26380,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.00726,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12106,14781,26379,-9,26381,26380,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-922.64825,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12106,14781,26380,26381,-9,-9,1,1,41,0,2,0,3,3,-9,0,4,8.8763056,8.9696283,0,18,0,32.037762,0,2,3,2021,4,0,40,40,1,0,0,22.888636,22.888636,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.72,51.29,57.73,54.53,8.333333333333334,1,1,0,0,10,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12106,14781,26381,26380,-9,-9,1,0,41,0,2,0,2,2,-9,1,4,7.4308047,7.2242751,0,18,0,-50.154076,0,2,2,2021,6,0,12,36,1,0,0,13.896756,13.896756,0,0,0,0,0,0,0,2,1,1,0,0,0,57.73,54.53,58.72,51.29,8.333333333333334,1,1,0,0,10,7,4,1,958,849952.13,786207.06,160253.25,77747.969,4328.3687,1908.4138,3747.5659 +12107,14782,26382,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,3,0,0,0,0,0,-978.75421,0,-9,-9,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.22,48.74,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,551,47707.418,0,0,0,0,0,1017.5126 +12108,14783,26383,26384,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.3116159,7.8542523,32,7,57.8908,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.0578117,7.9593339,58.87,51.29,57.16,56.15,8.333333333333334,1,1,0,0,5,12,5,1,373.5,912366.63,300321.28,192831.5,0,5809.9761,2764.4199,4481.7783 +12108,14783,26384,26383,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8296561,8.1163654,7.1737289,7,-7,-16.061069,0,3,3,2021,6,0,29,29,1,0,0,8.1430292,8.1430292,0,0,0,0,0,0,0,0,1,1,0,4.3388648,7.4580631,57.16,56.15,58.87,51.29,10,1,1,0,0,9,12,5,1,373.5,912366.63,300321.28,192831.5,0,5809.9761,2764.4199,4481.7783 +12109,14784,26385,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.8414464,7.96176,0,0,-858.13989,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7169237,7.9538393,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,2,10,4,1,537,1215652.8,423165.34,438980.66,0,0,0,2329.9551 +12110,14785,26386,-9,-9,-9,1,0,79,0,0,0,1,1,-9,0,2,0,6.5539713,6.6925025,0,0,-1035.8424,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7185552,6.3897843,40.97,32.79,-9,-9,3.333333333333333,1,1,0,0,0,2,2,1,5199,312805.66,63279.207,6917.9185,0,0,0,1287.6273 +12111,14786,26387,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.1055589,7.3209333,0,0,-1095.7319,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8475722,7.0855589,47.73,27.13,-9,-9,5,1,1,0,0,0,11,3,1,364,317212.53,198996.16,162671.16,0,0,0,1559.0292 +12112,14787,26388,26390,-9,-9,1,1,39,0,2,0,1,1,-9,0,5,8.2124405,8.0849991,0,18,5,-17.195642,0,2,3,2021,6,0,38,37,1,0,0,11.901118,11.901118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,49.36,58.53,8.333333333333334,1,1,0,0,9,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12112,14787,26389,-9,26390,26388,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-862.44751,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12112,14787,26390,26388,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.5959215,8.4797916,0,18,-5,83.575607,0,2,2,2021,7,0,55,50,1,0,0,6.9244175,6.9244175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.36,58.53,51.73,58.82,8.333333333333334,1,1,0,0,9,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12112,14787,26391,-9,26390,26388,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1072.9701,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,2422.25,665188.31,293152,330605.16,53109.086,0,0,2603.5093 +12113,14788,26392,-9,26393,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-934.69171,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,2,0,253,-106227.77,0,0,0,0,0,67.425133 +12113,14788,26393,-9,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,0,0,0,0,0,-1134.1373,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.37,57.28,-9,-9,5,1,1,1,0,0,10,2,0,253,-106227.77,0,0,0,0,0,67.425133 +12113,14789,26394,-9,26393,-9,1,1,19,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1002.2064,0,3,-9,2021,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,8.333333333333334,1,1,1,0,0,10,1,0,466,-20247.555,0,0,0,0,0,1267.5599 +12114,14790,26395,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,6.9223437,7.210052,0,0,-1035.4786,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,21.32539,0,0,1,1,0,3.7060275,7.0411654,63.83,11.31,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,597,371270.75,261860.61,111571.09,0,0,0,1468.3453 +12114,14791,26396,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-966.23022,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,48.53,44.13,-9,-9,10,1,1,0,0,0,11,1,1,506,24935.195,0,0,0,-826.59467,0,1469.4951 +12115,14792,26397,-9,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,6.4491096,6.7852669,4.5921164,0,0,-1087.7277,0,2,2,2021,12,4,28,31,1,4,0,2.8945947,2.8945947,0,0,0,0,0,0,0,0,1,1,0,4.3068514,0,48.87,58.55,-9,-9,5,1,1,0,1,10,9,2,0,827,199482.44,0,0,0,1553.2971,11537.641,1025.3383 +12115,14792,26398,-9,26397,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-875.83441,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,2,0,827,199482.44,0,0,0,1553.2971,11537.641,1025.3383 +12115,14792,26399,-9,26397,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.7173,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,827,199482.44,0,0,0,1553.2971,11537.641,1025.3383 +12116,14793,26400,-9,-9,-9,1,1,41,0,3,0,2,2,-9,1,2,0,0,0,0,0,-925.07477,0,3,2,2021,18,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,29.16,45.38,-9,-9,6.666666666666667,2,3,0,0,0,4,1,0,1357,478230.28,0,0,0,0,0,861.13147 +12117,14794,26401,-9,26405,26402,1,0,12,0,3,1,3,0,-9,0,2,0,0,0,0,0,-1028.7549,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,1,1,-9,0,0,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26402,26405,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.8889084,9.032526,0,6,2,64.837021,0,2,2,2021,8,0,35,39,1,0,0,20.017685,20.017685,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.66,50.59,41.44,44.42,8.333333333333334,1,1,0,0,9,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26403,-9,26405,26402,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.8854,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26404,-9,26405,26402,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-993.58984,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,-9,0,0,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12117,14794,26405,26402,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,6.9765372,6.9381914,0,6,-2,160.21106,0,3,3,2021,11,1,27,20,1,1,0,5.8121181,5.8121181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.44,44.42,57.66,50.59,5,1,1,0,0,9,6,4,1,610.40002,589663.25,361347.13,263386.56,174721.17,13373.187,0,3243.3806 +12118,14795,26406,26407,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.0168571,7.700139,0,10,1,48.841846,0,2,2,2021,7,0,22,37,1,0,0,14.892921,14.892921,.05,.05,.05,0,0,0,0,0,0,0,0,4.3780074,0,57.16,56.15,63.24,42.39,8.333333333333334,1,1,0,0,11,12,4,1,604.5,1305777.8,943065.25,174256.16,0,0,0,2142.9763 +12118,14795,26407,26406,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.0680532,8.2273722,0,10,-1,18.341908,0,2,2,2021,6,0,18,21,1,0,0,20.30728,20.30728,.05,.05,0,0,0,0,0,2,0,0,0,2.5901427,0,63.24,42.39,57.16,56.15,8.333333333333334,1,1,0,0,11,12,4,1,604.5,1305777.8,943065.25,174256.16,0,0,0,2142.9763 +12119,14796,26408,26409,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.5642691,8.4843092,4.5015082,41,0,-71.115952,0,2,2,2021,11,1,28,12,1,1,0,23.488016,23.488016,0,0,0,0,0,0,0,14.5,1,1,0,4.9393559,4.3860574,53.37,52.37,55,53,6.666666666666667,1,1,0,0,8,9,4,1,375,1747938,611191.25,574124.94,0,0,0,964.74207 +12119,14796,26409,26408,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,6,0,31.914316,-9,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0628285,0,55,53,53.37,52.37,8,1,1,0,0,0,9,4,1,375,1747938,611191.25,574124.94,0,0,0,964.74207 +12119,14797,26410,-9,26408,26409,1,0,27,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1064.3453,-9,1,1,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4577453,0,48,57,-9,-9,7,1,1,0,0,0,9,1,1,1687,26290.045,0,0,0,0,0,-112.20798 +12120,14798,26411,-9,26413,26412,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-878.19965,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,4,2,-9,0,0,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14798,26412,26413,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,8.7506113,8.8456306,0,12,7,138.52538,0,2,2,2021,7,0,45,47,1,0,0,17.593279,17.593279,.05,.05,0,0,0,0,0,0,1,1,0,6.5895853,0,57.33,53.46,46.16,53.09,8.333333333333334,3,4,0,0,13,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14798,26413,26412,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.4288111,8.2881975,0,12,-7,-16.309277,0,2,2,2021,23,11,37,37,1,11,0,18.224541,18.224541,.05,.05,0,0,0,0,0,0,1,1,0,.51199293,0,46.16,53.09,57.33,53.46,6.666666666666667,1,1,0,0,14,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14798,26414,-9,26413,26412,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-960.32855,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,5,5,1,414.25,285839.97,24384.754,275252.69,72496.438,-478.61429,0,4828.5435 +12120,14799,26415,-9,26413,26412,1,0,21,0,2,0,2,2,0,0,2,0,0,0,0,0,-1101.4279,-9,1,1,2021,11,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0126696,0,45.51,36.1,-9,-9,5,4,2,0,1,3,5,1,1,1241,26999.713,0,0,0,0,0,1364.54 +12121,14800,26416,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,6.0046039,6.1474676,0,0,0,-1084.1969,0,3,3,2021,15,4,15,0,1,4,0,3.3676925,3.3676925,0,0,0,0,0,0,0,0,0,0,0,0,0,32.35,55.36,-9,-9,3.333333333333333,3,4,0,0,7,8,2,0,448,-110872.25,30053.844,0,0,0,1816.1572,156.42897 +12122,14801,26417,26418,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.7987852,8.9589739,0,1,-7,42.603661,-9,2,2,2021,6,2,38,0,1,2,0,22.439177,22.439177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.77,60.16,8.333333333333334,1,1,0,0,6,4,5,1,544,291620.69,173283.59,376889.94,265437.97,0,0,5688.5859 +12122,14801,26418,26417,-9,-9,1,0,39,0,0,0,1,1,-9,0,5,9.0566416,9.0107288,0,1,7,148.63646,-9,-9,-9,2021,7,2,35,0,1,2,0,24.228851,24.228851,.05,.05,0,0,0,0,0,0,0,0,0,4.786274,0,48.77,60.16,45.91,59.89,8.333333333333334,1,1,0,0,10,4,5,1,544,291620.69,173283.59,376889.94,265437.97,0,0,5688.5859 +12123,14802,26419,-9,-9,-9,1,0,27,0,0,0,3,3,-9,0,5,8.2378712,8.3458996,0,0,0,-880.67401,-9,2,-9,2021,29,11,50,0,1,11,0,8.8046722,8.8046722,.05,.05,0,0,0,0,0,0,0,0,0,1.8181841,0,49.02,58.89,-9,-9,8.333333333333334,1,1,0,0,7,12,4,0,324,-173522.95,64037.938,44764.953,100903.38,0,0,2249.4097 +12124,14803,26420,26421,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.5630207,8.9340515,0,3,2,35.74976,0,-9,-9,2021,8,0,49,44,1,0,0,13.681219,13.681219,.05,.05,0,0,0,0,0,0,1,1,0,5.9287634,0,49.58,55.59,33.07,41.95,5,1,1,0,0,7,6,4,0,722.5,1361094.9,948154.63,240148.45,0,0,0,3244.7935 +12124,14803,26421,26420,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,0,0,0,3,-2,-34.801807,0,3,3,2021,26,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.07,41.95,49.58,55.59,3.333333333333333,1,1,1,0,3,6,4,0,722.5,1361094.9,948154.63,240148.45,0,0,0,3244.7935 +12125,14804,26422,26426,-9,-9,1,1,34,0,3,0,1,1,-9,0,4,9.1079769,9.0037489,0,7,1,68.30291,0,1,1,2021,17,5,48,57,1,5,0,24.484039,24.484039,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,50.15,39.87,58.61,8.333333333333334,1,1,0,0,6,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26423,-9,26426,26422,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.7129,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26424,-9,26426,26422,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1111.4215,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26425,-9,26426,26422,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.81525,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12125,14804,26426,26422,-9,-9,1,0,33,0,3,0,1,1,-9,1,4,0,0,0,14,-1,8.9026117,0,3,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,39.87,58.61,52.6,50.15,8.333333333333334,1,1,0,0,0,2,4,1,422,251887.56,141618.09,347632.09,227731.28,0,0,3369.5676 +12126,14805,26427,26428,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.2429266,6.9120059,61,-6,-8.0504675,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,4.1146994,7.0879798,47.928711,0,1,1,0,0,7.1079917,52.8,35.38,52,54.51,5,1,1,0,0,0,4,3,1,208.5,673816.63,377101.56,132242.38,0,0,0,3905.1138 +12126,14805,26428,26427,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,7.7293248,7.6696491,61,6,-28.829447,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1247516,7.7761326,52,54.51,52.8,35.38,5,1,1,0,0,0,4,3,1,208.5,673816.63,377101.56,132242.38,0,0,0,3905.1138 +12127,14806,26429,26430,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,0,0,30,-2,19.514502,0,-9,-9,2021,12,0,0,37,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.47,66.09,57.16,56.15,10,1,1,0,0,14,9,4,1,685.5,422921.97,99843.43,271770.63,0,825.5921,2218.1196,2421.6797 +12127,14806,26430,26429,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.3898239,8.8576889,7.2256894,30,2,179.32498,0,2,3,2021,4,0,39,37,1,0,0,10.245231,10.245231,.05,.05,0,0,0,0,0,2,1,1,0,0,7.7238603,57.16,56.15,38.47,66.09,8.333333333333334,1,1,0,0,11,9,4,1,685.5,422921.97,99843.43,271770.63,0,825.5921,2218.1196,2421.6797 +12128,14807,26431,26432,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.7132392,7.4652538,0,12,0,7.6730952,0,2,3,2021,24,12,30,30,1,12,0,8.1264076,8.1264076,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,52.4,52.91,6.666666666666667,1,1,0,0,11,6,5,1,1204,1747525.8,1506248.9,267732.16,0,618.57745,0,2524.7788 +12128,14807,26432,26431,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.4755239,8.155201,0,12,0,119.8298,0,2,3,2021,10,1,41,37,1,1,0,13.77374,13.77374,0,0,.05,0,0,0,0,2,0,0,0,2.7161872,0,52.4,52.91,30.94,61.65,8.333333333333334,1,1,0,0,14,6,5,1,1204,1747525.8,1506248.9,267732.16,0,618.57745,0,2524.7788 +12129,14808,26433,26434,-9,-9,1,1,33,1,2,0,2,2,-9,0,2,8.49405,8.1838274,0,8,-3,48.794682,0,2,2,2021,24,11,40,44,1,11,0,10.376989,10.376989,.05,.05,0,0,0,0,0,0,1,1,0,7.4957867,0,46.61,43.7,48.81,59.91,3.333333333333333,1,1,0,1,5,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12129,14808,26434,26433,-9,-9,1,0,36,1,2,0,2,2,-9,0,4,0,5.5783048,5.7343683,8,3,-62.981472,0,2,3,2021,18,7,0,19,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9398837,0,48.81,59.91,46.61,43.7,6.666666666666667,1,1,0,1,8,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12129,14808,26435,-9,26434,26433,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-976.40466,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,6,1,1,-9,0,0,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12129,14808,26436,-9,26434,26433,1,0,12,1,2,1,3,0,-9,0,4,0,0,0,0,0,-890.76013,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,359.25,110985.9,-64193.664,132491.11,78367.344,16884.664,0,1862.3911 +12130,14809,26437,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.1825838,8.1599207,0,0,0,-1023.2241,0,3,3,2021,12,0,42,42,1,0,0,8.0358009,8.0358009,0,0,0,0,0,0,0,7,0,0,0,0,0,34.19,45.24,-9,-9,3.333333333333333,1,1,0,0,13,12,4,0,250,227779.42,41763.887,316843.81,145164.13,0,8811.5635,1442.8193 +12131,14810,26438,26439,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,8.5599041,8.5898113,6.1558886,6,5,118.32588,0,3,3,2021,6,0,32,32,1,0,0,14.816666,14.816666,0,0,0,0,0,0,0,0,1,1,0,5.1738167,6.1692767,57.16,56.15,44.25,56.64,10,1,1,0,0,7,1,4,1,1082,1368394.8,720836.75,325938.31,445.76465,0,0,2837.4438 +12131,14810,26439,26438,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,6,-5,50.746395,0,2,2,2021,11,0,0,10,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.25,56.64,57.16,56.15,8.333333333333334,1,1,0,0,7,1,4,1,1082,1368394.8,720836.75,325938.31,445.76465,0,0,2837.4438 +12131,14811,26440,-9,26439,26438,1,1,29,0,0,0,1,1,-9,0,5,6.849319,6.6064525,0,0,0,-991.98798,0,2,2,2021,3,0,35,50,1,0,0,2.5338762,2.5338762,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,5,1,2,1,269,-110856.75,0,0,0,0,0,702.12604 +12131,14812,26441,-9,26439,26438,1,1,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1054.4612,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,52.68,-9,-9,1.666666666666667,1,1,0,0,0,1,1,1,766,127140.46,0,0,0,0,0,0 +12132,14813,26442,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,0,0,-934.94647,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.79,38.66,-9,-9,6.666666666666667,1,1,0,1,0,2,1,1,371,26063.828,0,0,0,0,0,1354.3577 +12133,14814,26443,26446,-9,-9,1,1,36,1,2,0,2,2,-9,0,4,9.9109716,9.5353251,0,6,6,28.281715,0,2,1,2021,16,4,50,54,1,4,0,40.956882,40.956882,.05,.05,0,0,0,0,0,0,1,1,0,5.6568327,0,32.11,60.74,48.01,38.86,6.666666666666667,1,1,0,0,7,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12133,14814,26444,-9,26446,26443,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.52795,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12133,14814,26445,-9,26446,26443,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.955,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12133,14814,26446,26443,-9,-9,1,0,30,1,2,0,1,1,-9,0,3,0,0,0,6,-6,41.472034,-9,-9,-9,2021,13,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.01,38.86,32.11,60.74,8.333333333333334,1,1,0,0,0,13,5,1,1146.75,184719.11,68810.5,198637,142273.97,9979.3633,0,11989.341 +12134,14815,26447,-9,-9,-9,1,1,24,1,1,0,2,2,-9,0,2,0,5.7636786,5.5389757,0,0,-1100.0586,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4890995,0,50.5,40.48,-9,-9,6.666666666666667,1,1,1,1,5,9,2,1,654,-84488.164,0,0,0,0,0,111.9742 +12134,14816,26448,-9,26449,26450,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.9537,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,853,136650.42,63802.563,148410.41,121174.84,1541.5016,0,3034.5049 +12134,14816,26449,26450,-9,-9,1,0,21,1,1,0,2,2,-9,1,3,7.4992337,7.2352085,0,1,-1,96.009743,-9,-9,-9,2021,18,4,16,0,1,4,0,12.115884,12.115884,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.91,27.97,49,58,8.333333333333334,1,1,0,0,0,9,3,1,853,136650.42,63802.563,148410.41,121174.84,1541.5016,0,3034.5049 +12134,14816,26450,26449,-9,-9,1,1,22,1,1,0,2,2,-9,0,4,8.0660582,8.2234383,0,1,1,-47.318398,0,2,2,2021,10,0,30,0,1,1,0,12.573515,12.573515,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,56.91,27.97,7,1,1,0,0,1,9,3,1,853,136650.42,63802.563,148410.41,121174.84,1541.5016,0,3034.5049 +12135,14817,26451,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,3,0,5.7525182,5.6370826,0,0,-989.04547,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6352425,51,48,-9,-9,7,1,1,0,0,4,13,2,1,275,409821.25,10611.15,215006.98,0,0,0,1128.9351 +12136,14818,26452,26454,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.5961962,8.4402504,0,13,2,-148.43048,0,2,2,2021,8,0,10,50,1,0,0,54.913109,54.913109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.99,48.84,54.79,55.86,8.333333333333334,2,3,0,1,10,6,3,1,471.33334,19557.219,49942.219,156616.83,45697.273,0,0,2238.9253 +12136,14818,26453,-9,26454,26452,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.15796,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,471.33334,19557.219,49942.219,156616.83,45697.273,0,0,2238.9253 +12136,14818,26454,26452,-9,-9,1,0,40,0,2,0,3,3,-9,0,4,0,0,0,13,-2,-51.091503,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.99,48.84,8.333333333333334,2,3,0,1,2,6,3,1,471.33334,19557.219,49942.219,156616.83,45697.273,0,0,2238.9253 +12137,14819,26455,-9,26458,26457,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-927.49463,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12137,14819,26456,-9,26458,26457,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.9474,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12137,14819,26457,26458,-9,-9,1,1,49,0,3,0,2,2,-9,0,3,9.5390415,9.626235,0,15,11,-112.95303,-9,-9,-9,2021,12,1,58,0,1,1,0,31.514381,31.514381,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,48.7,56.22,6.666666666666667,4,2,0,0,10,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12137,14819,26458,26457,-9,-9,1,0,38,0,3,0,2,2,-9,0,3,7.9024343,7.9406514,0,15,-11,51.711475,0,2,2,2021,11,2,16,20,1,2,0,23.8039,23.8039,0,0,0,0,0,0,0,0,0,0,0,0,0,48.7,56.22,51.41,56.15,6.666666666666667,2,3,0,0,9,9,5,1,2278.25,397916.06,79719.391,515169.09,149588.16,0,0,4809.6021 +12138,14820,26459,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1043.4879,0,-9,-9,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,0,14.469462,0,0,1,1,0,0,0,23.69,24.46,-9,-9,3.333333333333333,1,1,0,0,0,13,1,0,373,42987.707,0,0,0,0,0,1481.5398 +12139,14821,26460,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.6938148,7.9988647,0,0,-1064.1851,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.95487154,0,1,1,0,4.5180659,7.9231806,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,1389,625146.69,232204.28,177789.03,0,0,1982.0621,1463.5023 +12140,14822,26461,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.1099472,7.9191041,6.0916944,0,0,-968.55078,-9,2,2,2021,17,5,40,0,1,5,0,10.737947,10.737947,.05,.05,0,0,0,0,0,0,1,1,0,6.4816384,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,13,7,4,1,1695,75273.805,140961.55,0,0,1889.4969,0,1736.1132 +12140,14823,26462,-9,26461,-9,1,0,23,0,0,0,1,1,-9,0,5,7.8396711,7.915134,0,0,0,-944.68542,-9,2,-9,2021,9,0,38,0,1,0,1,8.0784864,8.0784864,0,0,0,0,0,0,0,0,1,1,0,3.0290432,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,3,7,4,1,49,-61863.129,0,0,0,0,0,1664.1708 +12140,14824,26463,-9,26461,-9,1,1,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-994.92096,-9,2,-9,2021,7,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.06,50.73,-9,-9,10,1,1,1,0,0,7,1,1,735,129680.03,0,0,0,0,0,0 +12141,14825,26464,-9,-9,-9,1,0,23,1,1,0,2,2,-9,0,3,7.1587901,7.6414695,0,0,0,-1074.6558,0,2,-9,2021,19,7,41,41,1,7,1,4.1452985,4.1452985,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.7,53.66,-9,-9,6.666666666666667,4,2,0,0,6,6,3,0,518,-105173.23,120576.95,0,0,0,-747.48218,7.378449 +12142,14826,26465,-9,-9,26466,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-959.97522,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,435,-156582.75,-1070.8613,110325.28,116062.34,4550.6548,0,2503.6587 +12142,14826,26466,-9,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,8.178031,8.4114189,0,0,0,-922.34399,0,3,3,2021,9,0,40,45,1,0,0,13.540158,13.540158,.05,.05,.05,0,0,0,0,0,1,1,0,2.6401145,0,51.23,49.24,-9,-9,6.666666666666667,1,1,0,0,13,4,4,1,435,-156582.75,-1070.8613,110325.28,116062.34,4550.6548,0,2503.6587 +12142,14827,26467,26468,-9,-9,1,1,18,0,1,0,2,2,-9,0,3,7.460886,7.2904387,0,2,-1,84.286644,-9,-9,-9,2021,8,0,44,0,1,0,0,4.3901143,4.3901143,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,39.33,60.15,6.666666666666667,1,1,0,0,3,4,3,1,1520.5,11842.037,0,0,0,0,4898.9976,1908.3732 +12142,14827,26468,26467,-9,26466,1,0,19,0,1,0,2,2,-9,0,3,7.8301048,7.7524443,0,2,1,-17.284931,0,-9,2,2021,12,3,55,5,1,3,0,5.5927892,5.5927892,0,0,0,0,0,0,0,0,1,1,0,0,0,39.33,60.15,54.37,54.8,8.333333333333334,1,1,0,0,3,4,3,1,1520.5,11842.037,0,0,0,0,4898.9976,1908.3732 +12143,14828,26469,26470,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,6.2421174,6.0798988,0,27,1,-24.181038,0,2,2,2021,6,0,9,0,1,0,0,6.3805342,6.3805342,0,0,0,0,0,0,0,0,0,0,0,2.0512793,0,58.48,33.96,51.49,57.57,8.333333333333334,1,1,0,0,8,6,3,1,1420.5,303379,113714.98,163967.03,13447.746,-979.77216,0,2257.1045 +12143,14828,26470,26469,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4776955,8.2574282,0,11,-1,-36.246029,0,3,3,2021,9,2,37,35,1,2,0,9.5358286,9.5358286,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.49,57.57,58.48,33.96,8.333333333333334,1,1,0,0,13,6,3,1,1420.5,303379,113714.98,163967.03,13447.746,-979.77216,0,2257.1045 +12143,14829,26471,-9,26469,26470,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-927.89117,-9,2,2,2021,11,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.1,59.99,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,752,144368.16,0,0,0,0,0,0 +12144,14830,26472,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,2,0,2.205862,2.2617674,0,0,-1129.8358,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.164875,2.4831438,67.12,15.13,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,761,424211.44,0,391884,0,0,0,1413.5234 +12145,14831,26473,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.9592385,5.6539288,0,0,-1121.5176,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1733453,5.8603702,50,47,-9,-9,7,1,1,0,0,0,7,2,0,530,62421.07,24007.379,0,0,0,0,965.55475 +12146,14832,26474,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,4,9.1616812,9.1521387,0,0,0,-886.02441,0,1,1,2021,13,2,40,80,1,2,0,29.296375,29.296375,.05,.05,0,0,0,0,0,0,0,0,0,.55580378,0,34.38,62.3,-9,-9,5,1,1,0,0,14,7,5,1,352,21273.814,63324.551,0,0,0,0,3338.667 +12146,14833,26475,-9,-9,26474,1,0,18,0,0,0,2,2,-9,0,4,6.903707,6.9192576,0,0,0,-963.62048,-9,-9,1,2021,7,1,12,0,1,1,1,10.182903,10.182903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,10,1,1,0,0,1,7,2,1,780,205657.42,-58938.648,0,0,0,0,413.96945 +12147,14834,26476,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,5,0,7.513649,7.5771027,0,0,-1001.582,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.7127724,7.9064178,55.69,48.7,-9,-9,10,1,1,0,0,0,13,3,1,177,454081.28,156050.33,131088.63,0,0,0,1865.8763 +12148,14835,26477,-9,26478,-9,1,0,34,0,0,0,3,3,-9,0,4,8.3031826,8.5931196,0,0,0,-972.97375,0,3,-9,2021,7,2,40,40,1,2,0,13.50211,13.50211,.05,.05,0,0,0,0,0,2,1,1,0,5.6142068,0,42.31,47.25,-9,-9,10,3,4,0,0,7,8,5,0,2113,37834.059,-12476.141,0,0,0,0,1764.6927 +12148,14836,26478,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,0,0,0,0,-998.12323,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.05,44.11,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,845,43344.621,0,0,0,0,0,881.90192 +12149,14837,26479,26480,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.2564726,8.1383057,0,1,0,115.28679,-9,2,2,2021,9,0,24,0,1,0,0,18.457315,18.457315,.05,.05,0,0,0,0,0,0,1,1,0,9.1148281,0,59.46,46.99,57.16,56.15,8.333333333333334,1,1,0,0,8,11,4,1,1914.5,377423.41,281175.78,0,0,4905.7544,0,8825.583 +12149,14837,26480,26479,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,6.8665667,7.8303504,7.067462,1,0,-.75681978,-9,2,3,2021,8,0,24,0,1,0,0,4.7670164,4.7670164,.05,.05,0,0,0,0,0,0,1,1,0,7.3052421,7.1347666,57.16,56.15,59.46,46.99,1.666666666666667,1,1,0,0,8,11,4,1,1914.5,377423.41,281175.78,0,0,4905.7544,0,8825.583 +12150,14838,26481,26482,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,6.4286451,6.5424452,45,-1,-200.44524,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.158505,25.74,31.76,50,47,8.333333333333334,4,5,0,0,0,4,2,1,914,108911.56,86444.047,132715.19,0,0,0,1597.8459 +12150,14838,26482,26481,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,45,1,-83.04818,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,8.6767902,0,0,1,1,0,0,0,50,47,25.74,31.76,7,4,5,0,1,0,4,2,1,914,108911.56,86444.047,132715.19,0,0,0,1597.8459 +12151,14839,26483,26484,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.9547806,8.7843256,0,7,-1,31.211445,0,3,2,2021,8,0,63,67,1,0,0,15.478348,15.478348,.05,.05,0,0,0,0,0,0,0,0,0,4.4966817,0,58.15,52.91,49.04,55.86,8.333333333333334,1,1,0,0,11,9,5,1,355.5,3835837.5,2407544.3,929611.5,0,0,0,6570.0752 +12151,14839,26484,26483,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.035058,9.2538586,0,7,1,-36.525925,0,-9,-9,2021,7,0,48,47,1,0,0,24.073383,24.073383,.05,.05,0,0,0,0,0,0,0,0,0,7.440505,0,49.04,55.86,58.15,52.91,10,1,1,0,0,11,9,5,1,355.5,3835837.5,2407544.3,929611.5,0,0,0,6570.0752 +12152,14840,26485,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,6.3639941,7.3397746,7.3329625,0,0,-935.59875,0,2,2,2021,9,0,20,40,1,0,0,4.1155286,4.1155286,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0295591,56.1,49.93,-9,-9,6.666666666666667,1,1,0,0,10,12,3,1,523,350659.31,352877.97,93392.148,0,0,0,1544.7048 +12153,14841,26486,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.0105047,8.3801594,0,0,0,-979.73285,0,3,2,2021,10,1,40,40,1,1,0,22.268986,22.268986,.05,.05,0,0,0,0,0,0,0,0,0,.70387965,0,51.83,57.2,-9,-9,6.666666666666667,4,2,0,0,11,6,4,1,195,109503.8,214580.39,237249.69,106009.63,0,778.09039,3374.1165 +12154,14842,26487,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.4097853,8.5275307,0,11,6,-33.13102,0,3,3,2021,14,5,40,37,1,5,0,10.665256,10.665256,0,0,0,0,0,0,0,0,0,0,0,0,0,40.68,50.42,34,59.94,6.666666666666667,1,1,0,0,12,12,5,1,1083,429214.5,5792.7266,214384.47,0,0,0,1935.777 +12154,14843,26488,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.6612988,8.6421709,0,11,-6,71.923935,0,3,3,2021,23,11,43,43,1,11,0,19.690826,19.690826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34,59.94,40.68,50.42,5,1,1,0,0,12,12,5,1,155,64128.645,68470.938,170653.2,49970.336,0,0,3105.3879 +12155,14844,26489,-9,26490,26492,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.6249,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12155,14844,26490,26492,-9,-9,1,0,36,0,2,0,1,1,-9,0,4,8.3014431,8.3872347,0,10,-1,-64.639015,0,2,2,2021,7,0,22,22,1,0,0,17.382753,17.382753,.05,.05,0,0,0,0,0,0,1,1,0,7.053329,0,57.73,54.53,54.96,53.17,8.333333333333334,1,1,0,0,10,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12155,14844,26491,-9,26490,26492,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.9119,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,2,-9,0,0,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12155,14844,26492,26490,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,8.5814972,8.3421164,0,10,1,69.785446,0,2,3,2021,5,0,38,37,1,0,0,12.467704,12.467704,.05,.05,0,0,0,0,0,0,1,1,0,5.0393815,0,54.96,53.17,57.73,54.53,8.333333333333334,2,3,0,0,10,5,4,1,2732.75,44803.359,45110,140715.31,112124.02,0,0,4358.7593 +12156,14845,26493,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,0,0,0,0,-948.95398,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,25.05,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,140,40244.742,0,207541.14,0,0,0,469.22589 +12157,14846,26494,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.4077868,6.9880075,0,0,0,-1052.7362,0,-9,-9,2021,3,0,18,0,1,0,0,11.14416,11.14416,.05,.05,0,0,0,0,0,0,0,0,0,.96414953,0,53.33,53.71,-9,-9,8.333333333333334,2,3,0,0,1,10,3,0,596,-132254.13,104095.24,0,0,-440.8887,0,1218.1906 +12158,14847,26495,26496,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,4.7456551,4.6288333,24,1,-48.225994,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3289857,4.9848385,60.44,18.44,57.48,31.86,8.333333333333334,1,1,0,0,0,4,2,1,1255.5,352943.91,71681.906,204767.47,0,0,0,3865.9004 +12158,14847,26496,26495,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.694118,5.7637687,23,-1,165.05447,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8922389,5.8123231,57.48,31.86,60.44,18.44,8.333333333333334,1,1,0,0,0,4,2,1,1255.5,352943.91,71681.906,204767.47,0,0,0,3865.9004 +12159,14848,26497,26498,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,7.2822709,8.245718,7.3657246,11,-2,-27.065321,0,2,2,2021,7,0,25,25,1,0,0,6.4640861,6.4640861,0,0,0,0,0,0,0,0,1,1,0,4.7649336,7.1533132,61.43,43.34,61.04,39.41,6.666666666666667,1,1,0,0,12,10,4,1,374.5,702659.25,290631.44,107891.09,0,0,0,2739.8586 +12159,14848,26498,26497,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.0493116,7.1299376,11,2,-23.361198,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.697669,7.5408397,61.04,39.41,61.43,43.34,6.666666666666667,1,1,0,0,10,10,4,1,374.5,702659.25,290631.44,107891.09,0,0,0,2739.8586 +12160,14849,26499,-9,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,7.9380584,7.772131,0,0,0,-1126.2209,0,3,2,2021,10,0,28,28,1,0,0,12.51381,12.51381,0,0,0,0,0,0,0,0,0,0,0,.81536579,0,38.82,56.79,-9,-9,3.333333333333333,3,4,0,0,11,8,4,0,466,0,0,0,0,0,0,1551.2062 +12161,14850,26500,26501,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,7.9336967,7.7284856,34,-1,-41.560558,0,2,1,2021,12,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.2201953,8.2665224,56.1,49.93,55.19,54.26,8.333333333333334,1,1,0,0,14,4,5,1,295,448182,79047.93,329116.09,35205.277,0,0,3448.1206 +12161,14850,26501,26500,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,8.6345501,8.7704573,0,34,1,-15.009196,0,1,2,2021,9,0,41,40,1,0,0,20.180473,20.180473,.05,.05,0,0,0,0,0,0,0,0,0,2.5973444,0,55.19,54.26,56.1,49.93,8.333333333333334,1,1,0,0,15,4,5,1,295,448182,79047.93,329116.09,35205.277,0,0,3448.1206 +12162,14851,26502,26503,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,0,0,0,7,-8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,.76843393,0,57.57,49.69,54.36,12.12,8.333333333333334,1,1,0,0,0,4,1,1,534.5,324914.28,-22531.543,230180.47,0,3542.459,-154.39757,1676.4043 +12162,14851,26503,26502,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,7,8,0,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,39.489891,0,0,1,1,0,0,0,54.36,12.12,57.57,49.69,3.333333333333333,1,1,0,0,0,4,1,1,534.5,324914.28,-22531.543,230180.47,0,3542.459,-154.39757,1676.4043 +12163,14852,26504,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,8.5091562,8.4823551,6.3372655,0,0,-944.64783,0,2,2,2021,13,2,35,35,1,2,0,15.369884,15.369884,0,0,0,0,0,0,0,0,0,0,0,0,6.4589014,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,14,4,5,1,606,839137.75,498773.31,239430.81,0,0,0,1801.631 +12164,14853,26505,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,5.2820749,5.3227506,0,0,-909.19373,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.398375,60.24,50.62,-9,-9,10,1,1,0,0,0,2,2,1,257,105438.3,143859.88,133732.52,0,0,0,574.06989 +12165,14854,26506,26507,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,6.6737361,6.4470572,42,-7,-41.681705,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3693795,57.06,57.76,66.27,21.07,10,1,1,0,0,0,7,2,1,1163.5,942883.44,153136.88,638029.5,0,2575.0115,0,2105.2241 +12165,14854,26507,26506,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,6.0393109,6.0180612,42,7,33.695122,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,3.7834163,0,0,1,1,0,4.6075711,6.1229234,66.27,21.07,57.06,57.76,10,1,1,0,0,0,7,2,1,1163.5,942883.44,153136.88,638029.5,0,2575.0115,0,2105.2241 +12165,14855,26508,-9,26506,26507,1,1,35,0,0,0,2,2,-9,0,4,8.3850241,8.2850847,0,0,0,-1073.8126,-9,2,2,2021,10,0,55,0,1,1,0,10.834939,10.834939,.05,.05,0,0,0,0,0,0,1,1,0,5.9914327,0,50,57,-9,-9,7,1,1,0,0,1,7,4,1,1133,-103425.98,-25105.186,0,0,5001.3232,0,2272.7732 +12166,14856,26509,-9,-9,-9,1,0,49,0,0,0,3,3,-9,0,4,8.2836523,8.4938717,0,0,0,-1027.9409,0,3,3,2021,7,0,45,45,1,0,0,8.2627287,8.2627287,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,4,4,0,1274,429782.25,314607.47,51023.895,40091.105,9614.2041,0,848.63531 +12167,14857,26510,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1079.2202,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.68,35.54,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,2869,-46305.285,0,0,0,0,0,1642.2754 +12168,14858,26511,-9,26513,26512,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.64624,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,5,1,853.33331,460588.94,84131.828,316927.25,124695.42,0,0,5601.3643 +12168,14858,26512,26513,-9,-9,1,1,34,1,1,0,1,1,-9,0,3,9.2665014,9.389389,0,1,4,65.302689,-9,-9,-9,2021,27,12,41,0,1,12,0,32.656631,32.656631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,16.69,64.48,34.79,47.81,3.333333333333333,2,3,0,0,4,8,5,1,853.33331,460588.94,84131.828,316927.25,124695.42,0,0,5601.3643 +12168,14858,26513,26512,-9,-9,1,0,30,1,1,0,1,1,-9,0,2,8.0204248,7.7060356,0,1,-4,16.60293,-9,-9,-9,2021,13,2,32,0,1,2,0,11.374815,11.374815,.05,.05,0,0,0,0,0,0,0,0,0,7.6173897,0,34.79,47.81,16.69,64.48,5,2,3,0,0,2,8,5,1,853.33331,460588.94,84131.828,316927.25,124695.42,0,0,5601.3643 +12169,14859,26514,26515,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,55,3,0,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3163493,0,59.21,43.05,53.04,50.37,8.333333333333334,1,1,0,0,13,9,1,0,3014.5,294233.69,0,271427.13,0,0,0,1044.2552 +12169,14859,26515,26514,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,55,-3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4552877,0,53.04,50.37,59.21,43.05,10,1,1,0,0,0,9,1,0,3014.5,294233.69,0,271427.13,0,0,0,1044.2552 +12170,14860,26516,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.8014069,8.5993614,0,0,0,-839.40857,0,2,2,2021,19,7,40,40,1,7,0,17.006664,17.006664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,21.36,61.89,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,5721,-92975.094,66475.297,0,0,12575.679,11972.271,1861.3503 +12171,14861,26517,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,7.3236156,7.3184199,0,0,-919.84576,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8338428,7.4183807,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,1497,522566.22,219177.52,182044.84,0,0,0,1749.8336 +12172,14862,26518,-9,-9,-9,1,0,43,0,2,0,3,3,-9,1,4,0,0,0,0,0,-915.22546,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,0,13,2,1,187,161639.83,0,129514.38,99279.781,0,0,543.16486 +12173,14863,26519,26520,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,52,-3,-65.879402,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,3.4458568,0,28.946157,7,1,1,0,3.316524,0,57.16,56.15,57.06,57.76,10,1,1,0,0,3,2,2,1,1253,992404.56,386356.88,333024.22,0,0,0,1116.4242 +12173,14863,26520,26519,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.1488714,6.8388047,10,3,53.673485,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2263737,6.8533616,57.06,57.76,57.16,56.15,10,1,1,0,0,0,2,2,1,1253,992404.56,386356.88,333024.22,0,0,0,1116.4242 +12174,14864,26521,26522,-9,-9,1,1,52,0,0,0,2,2,-9,1,2,6.9955831,7.200644,0,1,-2,-99.937416,-9,-9,-9,2021,11,0,18,0,1,0,0,7.5543575,7.5543575,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.78,27.02,40.76,41.18,8.333333333333334,1,1,0,0,1,5,4,1,917,566214.69,173019.41,253878.09,4919.9268,0,1316.988,1887.5637 +12174,14864,26522,26521,-9,-9,1,0,54,0,0,0,3,3,-9,0,2,7.9684806,7.8707781,0,1,2,-132.54802,0,3,2,2021,16,4,45,37,1,4,0,8.8948841,8.8948841,0,0,0,0,0,0,0,0,1,1,0,0,0,40.76,41.18,53.78,27.02,6.666666666666667,1,1,0,1,8,5,4,1,917,566214.69,173019.41,253878.09,4919.9268,0,1316.988,1887.5637 +12175,14865,26523,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-984.99072,0,-9,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.83,47.27,-9,-9,10,1,1,0,0,0,9,1,1,1021,211021.94,0,0,0,0,0,428.42853 +12176,14866,26524,26525,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.8013597,7.9644718,7.1218762,8,-5,-33.797634,0,3,3,2021,6,0,35,35,1,0,0,8.0448933,8.0448933,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1876788,62.42,45.64,52.38,50.07,8.333333333333334,1,1,0,0,10,10,3,1,862,669542.5,441150.19,154667.72,0,0,0,4122.1797 +12176,14866,26525,26524,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,40,5,125.32276,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3162603,0,52.38,50.07,62.42,45.64,8.333333333333334,1,1,0,0,0,10,3,1,862,669542.5,441150.19,154667.72,0,0,0,4122.1797 +12177,14867,26526,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,0,0,0,0,-950.3573,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,10.055724,0,0,1,1,0,0,0,48.68,25.96,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,255,-729.75763,0,0,0,0,0,1174.4728 +12178,14868,26527,26528,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.4152374,7.5142889,0,11,0,63.836475,0,-9,3,2021,6,0,25,25,1,0,0,7.7218208,7.7218208,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,54.96,53.17,8.333333333333334,1,1,0,0,12,10,5,0,557,842379.19,99355.07,291865.5,91279.172,17812.672,0,3922.2568 +12178,14868,26528,26527,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,9.1793728,8.9335709,0,11,0,19.799406,0,3,2,2021,11,0,32,40,1,0,0,22.486465,22.486465,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,59.43,58.05,6.666666666666667,1,1,0,0,12,10,5,0,557,842379.19,99355.07,291865.5,91279.172,17812.672,0,3922.2568 +12178,14869,26529,-9,26527,26528,1,0,24,0,0,0,2,2,-9,0,4,7.8693514,7.793469,0,0,0,-973.40948,0,2,3,2021,18,6,30,30,1,6,1,10.328003,10.328003,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.14,54.22,-9,-9,1.666666666666667,1,1,0,0,5,10,4,0,392,144925.63,79241.914,0,0,0,0,789.92444 +12178,14870,26530,-9,26527,26528,1,1,22,0,0,0,2,2,-9,0,4,8.2083855,8.5161467,0,0,0,-952.7677,0,2,3,2021,4,0,70,0,1,0,1,7.2375007,7.2375007,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,6,10,4,0,389,189189.66,-17320.541,0,0,2922.9675,81.550644,2323.0693 +12179,14871,26531,26532,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,7.4290872,7.7340965,0,6,0,119.021,0,-9,-9,2021,13,2,40,37,1,2,0,6.4355078,6.4355078,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.05,51.54,20.76,53,5,1,1,0,0,4,12,3,1,1119.5,390789.81,19124.85,299730.13,0,17597.262,1794.7314,1352.594 +12179,14871,26532,26531,-9,-9,1,0,33,0,0,0,2,2,-9,0,2,0,0,0,6,0,-80.594482,0,2,3,2021,18,6,0,16,3,6,0,0,0,0,0,0,0,0,0,0,27,0,0,0,5.6170173,0,20.76,53,35.05,51.54,3.333333333333333,1,1,1,0,2,12,3,1,1119.5,390789.81,19124.85,299730.13,0,17597.262,1794.7314,1352.594 +12180,14872,26533,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,7.8374939,7.9842281,5.9644971,0,0,-1031.1216,0,3,3,2021,32,11,50,-9,1,11,0,5.6792693,5.6792693,0,0,0,0,0,0,0,0,0,0,0,7.5922728,6.2135272,12.36,63.85,-9,-9,10,1,1,0,0,9,8,4,1,812,1307955.8,659679.94,436667.03,33241.277,0,0,1521.0647 +12181,14873,26534,-9,26536,26535,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.3052,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12181,14873,26535,26536,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,9.1051483,8.9595556,0,6,0,134.60127,0,2,2,2021,9,0,85,52,1,1,0,10.934521,10.934521,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,54.96,53.17,8.333333333333334,1,1,0,0,8,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12181,14873,26536,26535,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.7523823,7.870244,0,6,0,74.01474,0,2,2,2021,6,0,35,43,1,0,0,7.8117428,7.8117428,.05,.05,0,0,0,0,0,0,0,0,0,2.3808174,0,54.96,53.17,62.49,55.09,8.333333333333334,1,1,0,0,8,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12181,14873,26537,-9,26536,26535,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.4623,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,4,1,945.5,246320.64,74165.445,308216.38,137482.23,0,0,4343.3706 +12182,14874,26538,-9,26540,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-855.05243,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,54,-9,-9,6,4,5,-9,0,0,8,1,0,1428.3334,53721.918,0,0,0,-268.81839,0,1377.2716 +12182,14874,26539,-9,26540,-9,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1041.3763,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,8,1,0,1428.3334,53721.918,0,0,0,-268.81839,0,1377.2716 +12182,14874,26540,-9,-9,-9,1,0,51,0,2,0,1,1,-9,1,3,0,0,0,0,0,-1022.7703,-9,1,1,2021,17,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,27.57,33.09,-9,-9,5,4,5,0,1,0,8,1,0,1428.3334,53721.918,0,0,0,-268.81839,0,1377.2716 +12183,14875,26541,-9,-9,-9,1,1,46,0,0,0,2,2,-9,1,4,7.5154757,7.3708382,0,0,0,-1106.1062,0,-9,-9,2021,8,0,36,37,1,0,0,6.4544792,6.4544792,0,0,0,0,0,0,0,0,1,1,0,0,0,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,13,11,3,1,1277,1625.9675,0,0,0,1766.8479,0,1585.3596 +12184,14876,26542,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.8329387,6.8801031,0,0,0,-1081.2841,0,-9,-9,2021,11,0,12,12,1,0,0,7.7585444,7.7585444,0,0,0,0,0,0,0,0,1,1,0,0,0,44.42,48.36,-9,-9,5,1,1,0,0,14,2,2,0,286,277727.13,12476.952,69867.383,0,0,0,749.71497 +12184,14877,26543,-9,26542,-9,1,1,33,0,0,0,1,1,-9,1,3,0,0,0,0,0,-871.6004,0,3,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,-9,-9,5,1,1,1,0,0,2,1,0,2102,85844.32,0,0,0,0,0,1483.5664 +12185,14878,26544,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,5.931942,5.4319849,0,0,-1011.5596,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,3.5296903,0,25.968292,0,1,1,0,0,5.4510136,51.81,28.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,0,1003,189198.73,-107225.41,89895.891,0,0,0,348.24222 +12186,14879,26545,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.3876343,7.7224593,5.7693629,0,0,-987.87775,0,2,1,2021,11,2,10,10,1,2,0,17.810598,17.810598,0,0,0,0,0,0,0,0,0,0,0,5.2850876,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,14,9,3,1,1692,149288.69,0,178808.69,0,0,985.32306,1092.5769 +12187,14880,26546,-9,26547,26548,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.8459,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,0,657,2135422.3,1478665.6,496738.44,131497.17,21718.135,0,3810.2896 +12187,14880,26547,26548,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,7.3506346,7.2553849,0,24,8,-6.3951268,0,2,-9,2021,7,0,18,0,1,0,0,9.0342131,9.0342131,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51,56,8.333333333333334,1,1,0,0,9,9,5,0,657,2135422.3,1478665.6,496738.44,131497.17,21718.135,0,3810.2896 +12187,14880,26548,26547,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,9.1389008,9.1621666,0,11,-8,85.943466,-9,-9,-9,2021,10,0,40,0,1,1,0,26.39389,26.39389,.05,.05,0,0,0,0,0,0,1,1,0,7.0741968,0,51,56,54.79,55.86,7,1,1,0,0,1,9,5,0,657,2135422.3,1478665.6,496738.44,131497.17,21718.135,0,3810.2896 +12187,14881,26549,-9,26547,26548,1,0,18,0,1,0,3,3,-9,0,4,7.932085,7.9152126,0,0,0,-983.24719,-9,2,2,2021,12,0,40,0,1,2,1,7.4394565,7.4394565,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,1,9,3,0,356,-148293.72,0,0,0,-1256.6707,0,1012.4977 +12188,14882,26550,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,6.8355227,6.7149053,0,0,-1037.5369,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9639459,6.7033076,27.4,40.54,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,440,264921.63,77283.758,45808.82,0,0,0,524.31097 +12189,14883,26551,-9,-9,-9,1,0,19,0,0,0,3,3,1,0,4,6.806911,7.1575336,0,1,-11,3.8811069,-9,-9,-9,2021,11,1,19,0,1,1,0,5.8991375,5.8991375,0,0,0,0,0,0,0,0,0,0,0,0,0,53.03,44.7,48,57,6.666666666666667,1,1,0,0,1,10,2,0,784,60886.402,0,0,0,0,0,608.00958 +12190,14884,26552,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1101.8828,-9,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,2,3,1,1,0,8,2,0,3440,271762.66,0,104337.95,0,0,0,121.76938 +12191,14885,26553,26554,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.3840265,8.5804853,0,30,7,-33.760895,0,2,3,2021,12,0,45,48,1,0,0,12.573649,12.573649,.05,.05,0,0,0,0,0,0,0,0,0,6.1842546,0,50.34,56.4,58.15,52.91,8.333333333333334,1,1,0,0,10,12,5,1,909.5,1690635.4,1179280.5,345315.63,0,0,0,5146.1709 +12191,14885,26554,26553,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.064106,9.1628218,0,30,-7,-113.19762,0,2,1,2021,11,0,42,46,1,0,0,26.263136,26.263136,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.15,52.91,50.34,56.4,8.333333333333334,1,1,0,0,8,12,5,1,909.5,1690635.4,1179280.5,345315.63,0,0,0,5146.1709 +12191,14886,26555,-9,26553,26554,1,0,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-965.31146,-9,2,1,2021,12,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.69,61.75,-9,-9,8.333333333333334,1,1,1,0,6,12,1,1,957,0,0,0,0,0,0,0 +12192,14887,26556,-9,-9,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-943.11292,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,2,1,0,243,290548.78,0,0,0,0,0,947.28082 +12193,14888,26557,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,6.6557388,6.9741864,0,0,-1046.3567,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.568121,6.5231948,54,46,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,538,133315.81,190939.17,0,0,0,0,657.71832 +12194,14889,26558,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,3,0,0,0,0,0,-1048.1804,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.29,46.05,-9,-9,1.666666666666667,2,3,1,1,2,8,1,0,661.33331,23020.293,0,0,0,0,0,839.99805 +12194,14889,26559,-9,26558,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.76788,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,2,3,-9,0,0,8,1,0,661.33331,23020.293,0,0,0,0,0,839.99805 +12194,14889,26560,-9,26558,-9,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.9618,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,661.33331,23020.293,0,0,0,0,0,839.99805 +12195,14890,26561,26562,-9,-9,1,1,60,0,0,0,3,3,-9,1,4,0,5.1630659,4.9191079,44,3,103.4879,0,-9,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6585789,54,53,15.47,33.84,8,1,1,0,0,0,10,2,0,281.5,305968.44,131113.83,167290.78,0,0,0,1168.7809 +12195,14890,26562,26561,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,44,-3,26.482029,0,-9,-9,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.47,33.84,54,53,0,1,1,0,0,0,10,2,0,281.5,305968.44,131113.83,167290.78,0,0,0,1168.7809 +12196,14891,26563,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.6289535,7.9810591,0,0,0,-966.80798,0,3,3,2021,11,0,36,38,1,0,0,6.8174772,6.8174772,.05,.05,0,0,0,0,0,0,0,0,0,1.1732607,0,50.57,52.35,-9,-9,6.666666666666667,1,1,0,0,15,7,3,1,1011,343183.31,209745.52,207581.66,0,0,7871.9546,372.10825 +12197,14892,26564,26566,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.4649162,8.4711657,0,1,-2,12.955292,-9,-9,-9,2021,15,3,65,0,1,3,0,7.9000497,7.9000497,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.63,38.2,8.333333333333334,1,1,0,0,8,7,3,0,566,330581.84,0,489676.66,187231.56,931.41418,0,1906.6373 +12197,14892,26565,-9,26566,26564,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1123.0797,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,7,3,0,566,330581.84,0,489676.66,187231.56,931.41418,0,1906.6373 +12197,14892,26566,26564,-9,-9,1,0,32,0,1,0,2,2,-9,1,3,0,0,0,1,2,17.750135,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,60.63,38.2,57.33,53.46,6.666666666666667,1,1,0,0,0,7,3,0,566,330581.84,0,489676.66,187231.56,931.41418,0,1906.6373 +12198,14893,26567,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-960.83759,0,3,3,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.28,44.53,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,1046,-1089.3502,0,0,0,0,0,778.4826 +12199,14894,26568,26569,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,7.8222604,8.0194559,4.5218134,45,3,40.595562,0,2,3,2021,6,0,30,35,1,0,0,8.6178799,8.6178799,0,0,0,0,0,0,0,0,1,1,0,6.0315266,4.3305788,57.16,56.15,56.89,50.73,8.333333333333334,1,1,0,0,14,2,3,1,864,749666.19,446080.13,235076.48,0,676.99341,0,1963.0862 +12199,14894,26569,26568,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,5.3314223,5.0241728,45,-3,-86.778931,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.1970062,56.89,50.73,57.16,56.15,10,1,1,0,0,12,2,3,1,864,749666.19,446080.13,235076.48,0,676.99341,0,1963.0862 +12199,14895,26570,-9,26569,26568,1,1,38,0,0,0,2,2,-9,0,3,7.359817,7.2178802,0,0,0,-941.94995,0,1,2,2021,11,0,38,18,1,0,0,5.5102792,5.5102792,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.99,51.88,-9,-9,8.333333333333334,1,1,0,0,14,2,3,1,1370,104738.38,-27516.748,0,0,-616.11438,0,1648.5524 +12200,14896,26571,26572,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,6.7042742,6.6020555,50,-2,31.092962,-9,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3737478,6.48771,61.68,29.28,53,45,10,1,1,0,0,3,7,2,1,1380.5,294795.94,159908,0,0,0,0,6234.6113 +12200,14896,26572,26571,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,7.40766,6.7688799,50,2,-109.15794,-9,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7674303,53,45,61.68,29.28,8,1,1,0,0,0,7,2,1,1380.5,294795.94,159908,0,0,0,0,6234.6113 +12201,14897,26573,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,3,0,4.8346763,4.9254622,0,0,-941.4292,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,15.161716,0,0,1,1,0,0,4.4981375,67.26000000000001,25.66,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,75,789624.13,109353.24,505947.69,0,0,0,-240.50485 +12202,14898,26574,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,0,0,0,0,-856.29742,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.57,52.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,182,8236.1836,0,0,0,0,0,1172.1276 +12203,14899,26575,26578,-9,-9,1,0,39,0,3,0,1,1,-9,0,4,8.8147135,8.5577049,0,18,0,57.860279,0,2,2,2021,20,8,47,42,1,8,0,12.990341,12.990341,0,0,0,0,0,0,0,0,0,0,0,4.5725522,0,25.14,68.03,51.17,49.39,6.666666666666667,1,1,0,0,8,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26576,-9,26575,26578,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-974.89716,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26577,-9,26575,26578,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.0852,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26578,26575,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,9.4389,9.5211935,0,7,0,-150.6413,0,-9,-9,2021,8,1,45,42,1,1,0,25.086926,25.086926,.05,.05,0,0,0,0,0,0,0,0,0,4.6552896,0,51.17,49.39,25.14,68.03,8.333333333333334,1,1,0,0,4,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12203,14899,26579,-9,26575,26578,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1032.3217,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,281.60001,317083.72,80922.586,463085.94,285516.13,0,0,5264.019 +12204,14900,26580,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.5525904,8.7757778,0,0,0,-963.40576,0,2,2,2021,9,1,41,40,1,1,0,11.956437,11.956437,.05,.05,0,0,0,0,0,0,0,0,0,.94750482,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,1701,465486.44,151740.61,76182.859,0,0,2475.7649,2370.2407 +12204,14901,26581,-9,26580,-9,1,1,24,0,0,0,2,2,-9,0,2,7.1312075,7.00524,0,0,0,-1030.0323,0,2,-9,2021,12,0,20,18,1,0,1,6.9483027,6.9483027,0,0,0,0,0,0,0,0,0,0,0,0,0,44.94,49.91,-9,-9,3.333333333333333,1,1,0,1,5,12,2,1,139,102799.45,0,0,0,0,0,1246.9692 +12205,14902,26582,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.7775488,6.5818481,0,0,0,-1044.3335,0,2,2,2021,6,0,12,12,1,0,0,6.7437677,6.7437677,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,14,9,2,0,965,215930.36,-111712.77,220267.92,95640.016,0,0,459.17752 +12206,14903,26583,26584,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,8.709342,8.7709112,0,32,-6,-97.04673,0,2,2,2021,10,1,46,45,1,1,0,20.569874,20.569874,0,0,0,0,0,0,0,2,0,0,0,7.0791926,0,54.2,57.49,51.83,57.2,6.666666666666667,1,1,0,0,10,7,5,1,445,81711.633,84199.023,0,0,5398.873,0,6633.1484 +12206,14903,26584,26583,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,6.9611316,7.394505,5.0487876,33,6,-28.21347,0,2,2,2021,10,0,20,20,1,0,0,6.8073878,6.8073878,.05,.05,0,0,0,0,0,0,0,0,0,8.9528627,4.959269,51.83,57.2,54.2,57.49,8.333333333333334,1,1,0,0,9,7,5,1,445,81711.633,84199.023,0,0,5398.873,0,6633.1484 +12207,14904,26585,-9,26586,26588,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.20245,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12207,14904,26586,26588,-9,-9,1,0,30,0,2,0,3,3,-9,0,3,0,0,0,1,-12,-42.553474,-9,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.43,43.34,58.15,52.91,8.333333333333334,4,1,0,0,3,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12207,14904,26587,-9,26586,26588,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.96362,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12207,14904,26588,26586,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.9852877,8.8332386,0,1,12,-33.23243,-9,3,3,2021,10,0,44,0,1,0,0,15.906596,15.906596,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,61.43,43.34,1.666666666666667,1,1,0,0,8,13,4,1,483.5,432284.09,281003.56,148712.06,46278.156,0,0,2920.4937 +12208,14905,26589,-9,26591,26592,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1080.9425,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12208,14905,26590,-9,26591,26592,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1062.1904,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12208,14905,26591,26592,-9,-9,1,0,43,0,4,0,1,1,-9,0,4,8.7924156,8.6506147,0,17,-5,74.429497,0,3,1,2021,6,0,30,30,1,0,0,24.510193,24.510193,0,0,0,0,0,0,0,0,1,1,0,.73619342,0,59.53,56.44,44.19,58.01,8.333333333333334,1,1,0,0,12,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12208,14905,26592,26591,-9,-9,1,1,48,0,4,0,3,3,-9,0,3,8.6746016,8.7647963,0,17,5,9.9968176,0,2,3,2021,10,0,40,35,1,0,0,18.102636,18.102636,0,0,0,0,0,0,0,0,1,1,0,.34909961,0,44.19,58.01,59.53,56.44,8.333333333333334,1,1,0,0,14,5,4,1,1477.25,590414.19,191974.69,699832.38,257924.97,0,0,4685.437 +12209,14906,26593,26594,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.3577085,7.1213655,0,25,-3,-14.73347,0,2,1,2021,7,1,40,38,1,1,0,4.3421774,4.3421774,.05,.05,0,0,0,0,0,2,0,0,0,3.4370561,0,68.36,31.88,48.46,42.34,10,1,1,0,0,11,6,4,1,326,246791.66,106613.2,135317.48,41261.816,2610.9807,4095.5679,1803.7559 +12209,14906,26594,26593,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,8.3887615,8.2524986,0,25,3,-23.34194,0,2,2,2021,10,1,41,37,1,1,0,11.457318,11.457318,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.46,42.34,68.36,31.88,10,1,1,0,0,11,6,4,1,326,246791.66,106613.2,135317.48,41261.816,2610.9807,4095.5679,1803.7559 +12210,14907,26595,26596,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.313674,8.3520384,0,2,1,-91.365524,0,2,2,2021,16,4,45,42,1,4,0,9.2327929,9.2327929,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.96,61.14,47.37,55.41,10,1,1,0,0,8,4,5,1,2957,186643.39,58452.422,292779.59,139676.66,0,-438.03024,2984.9131 +12210,14907,26596,26595,-9,-9,1,1,25,0,0,0,1,1,-9,0,3,8.5591154,8.0939875,0,2,-1,53.928646,-9,-9,-9,2021,11,0,37,0,1,0,0,12.561725,12.561725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.37,55.41,40.96,61.14,8.333333333333334,1,1,0,0,1,4,5,1,2957,186643.39,58452.422,292779.59,139676.66,0,-438.03024,2984.9131 +12211,14908,26597,-9,26599,26598,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.43079,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12211,14908,26598,26599,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.8393574,9.1070881,0,17,-3,108.1194,0,-9,-9,2021,11,1,55,60,1,1,0,14.885215,14.885215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.91,46.31,48.87,58.55,3.333333333333333,1,1,0,0,12,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12211,14908,26599,26598,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,0,0,0,17,3,13.943132,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,57.91,46.31,3.333333333333333,3,4,0,1,6,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12211,14908,26600,-9,26599,26598,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.60266,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,4,0,436,29702.875,1028.6484,0,0,5209.5034,0,2673.0078 +12212,14909,26601,26602,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.3033519,7.2568455,10,3,47.883495,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.074717,7.4324174,58.3,52.91,56.19,41.56,8.333333333333334,1,1,0,0,0,11,4,1,1365.5,984269.19,477346.5,355738,0,0,0,3512.8545 +12212,14909,26602,26601,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.2612886,8.024128,10,-3,41.676743,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.365947,7.8475184,56.19,41.56,58.3,52.91,10,1,1,0,0,0,11,4,1,1365.5,984269.19,477346.5,355738,0,0,0,3512.8545 +12213,14910,26603,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.9013696,8.1512451,0,0,-988.78888,0,2,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0489526,7.7666035,35.58,35.21,-9,-9,6.666666666666667,1,1,0,0,0,12,4,1,37,455180.5,152502.84,205272.77,0,0,0,2487.679 +12214,14911,26604,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,2,8.143012,8.0935955,0,3,1,100.60062,0,2,1,2021,14,2,23,20,1,2,0,19.863005,19.863005,.05,.05,0,0,0,0,0,0,0,0,0,1.0702207,0,20.71,60.09,50,58,1.666666666666667,4,2,0,0,9,12,3,1,285,-147399.63,26588.271,0,0,630.61719,0,1309.9521 +12215,14912,26605,-9,26606,26607,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.3015,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,1250.3334,459079.66,85593.297,334354.19,0,0,0,2086.1121 +12215,14912,26606,26607,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,0,0,0,30,-10,-46.666744,0,3,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,38.26,54.03,8,2,3,1,0,0,8,3,1,1250.3334,459079.66,85593.297,334354.19,0,0,0,2086.1121 +12215,14912,26607,26606,-9,-9,1,1,56,0,1,0,2,2,-9,0,5,8.3994379,8.6049957,0,30,10,27.737925,0,3,2,2021,14,3,54,50,1,3,0,9.5956593,9.5956593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.26,54.03,50,55,5,2,3,0,0,8,8,3,1,1250.3334,459079.66,85593.297,334354.19,0,0,0,2086.1121 +12215,14913,26608,-9,26606,26607,1,0,26,0,1,0,1,1,-9,0,4,7.7155461,7.6283498,0,0,0,-983.08807,0,2,2,2021,11,0,30,40,1,2,1,7.2022414,7.2022414,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,2,3,0,0,1,8,3,1,168,89515.703,10713.973,0,0,651.34692,0,976.13849 +12215,14914,26609,-9,26606,26607,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1105.3221,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,1,8,1,1,1406,-105264.77,0,0,0,0,0,0 +12216,14915,26610,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.5889111,8.3595228,0,0,0,-837.1239,0,-9,-9,2021,13,1,40,41,1,1,0,13.348044,13.348044,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.77,57.64,-9,-9,8.333333333333334,1,1,0,0,6,13,5,0,457,148086.77,111496.33,0,0,0,0,2376.0417 +12217,14916,26611,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-984.86578,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.59,35.14,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,699,161448.84,0,0,0,0,0,503.87433 +12218,14917,26612,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.2648249,8.7882347,0,0,0,-981.98334,0,1,1,2021,11,2,48,48,1,2,0,24.684795,24.684795,0,0,0,0,0,0,0,0,0,0,0,3.102824,0,49.8,56.68,-9,-9,8.333333333333334,1,1,0,0,8,8,5,0,1759,1479637.3,134490.09,1792204.3,394061.69,0,0,3738.1514 +12218,14918,26613,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,5,8.912878,8.9397488,0,0,0,-956.8609,0,3,3,2021,9,1,37,44,1,1,0,20.486588,20.486588,0,0,.05,0,0,0,0,0,0,0,0,0,0,38.7,67.47,-9,-9,8.333333333333334,3,4,0,0,7,8,5,0,289,186730.53,-46948.934,0,0,-2052.0725,0,3058.1497 +12219,14919,26614,26616,-9,-9,1,1,38,1,2,0,1,1,-9,0,2,8.3156815,8.552516,0,9,2,-54.265724,0,2,2,2021,8,0,46,53,1,0,0,11.799939,11.799939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.7,46.46,45.12,58.81,8.333333333333334,1,1,0,0,10,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12219,14919,26615,-9,26616,26614,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.2351,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12219,14919,26616,26614,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.2947769,8.3310823,0,9,-2,44.348801,0,2,3,2021,10,1,28,30,1,1,0,14.461276,14.461276,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.12,58.81,58.7,46.46,8.333333333333334,1,1,0,0,7,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12219,14919,26617,-9,26616,26614,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.4553,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,990.5,16918.191,46093.539,138890.55,58511.992,42842.031,0,3035.5361 +12220,14920,26618,26619,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.5352335,8.4656067,56,0,12.453902,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5539303,8.4928713,54,46,46.31,56.45,8.333333333333334,1,1,0,0,0,12,4,1,621,912122.44,724338.75,102765.72,0,0,0,3740.5134 +12220,14920,26619,26618,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,4.4308076,4.437726,56,0,19.725754,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8163924,4.3816967,46.31,56.45,54,46,10,1,1,0,0,0,12,4,1,621,912122.44,724338.75,102765.72,0,0,0,3740.5134 +12221,14921,26620,26621,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.2049751,8.2440891,0,18,-7,42.04501,0,1,3,2021,13,2,40,34,1,2,0,7.7453427,7.7453427,.05,.05,0,0,0,0,0,0,1,1,0,4.4275246,0,49.65,44.4,51.95,50.34,8.333333333333334,1,1,0,0,9,5,5,1,2114,600125.75,397617,287997.09,43200.652,13254.914,0,3549.5471 +12221,14921,26621,26620,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,8.7703314,8.674612,0,18,7,6.6724677,0,2,2,2021,13,1,50,20,1,1,0,15.853742,15.853742,.05,.05,0,0,0,0,0,0,1,1,0,3.9458561,0,51.95,50.34,49.65,44.4,8.333333333333334,1,1,0,0,9,5,5,1,2114,600125.75,397617,287997.09,43200.652,13254.914,0,3549.5471 +12222,14922,26622,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,5.7178426,5.9759097,0,0,-1108.0273,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.0311029,0,24.430475,0,1,1,0,0,5.7707872,48,35,-9,-9,5,1,1,0,0,0,10,2,0,766,351982.53,153468.23,183319.94,0,0,0,1019.476 +12223,14923,26623,-9,-9,-9,1,0,19,0,0,0,2,2,1,0,3,5.7501864,5.8662062,0,0,0,-1000.9482,-9,-9,-9,2021,11,2,6,0,1,2,0,6.9827719,6.9827719,0,0,0,0,0,0,0,0,0,0,0,0,0,43.59,59.64,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,1182,47394.801,0,0,0,0,0,1060.5437 +12224,14924,26624,26625,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.3492417,7.419724,26,2,-23.724417,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6867013,7.4915028,58.32,50.22,55.68,54.24,8.333333333333334,1,1,0,0,6,7,2,1,2117,836534.06,445174.81,282861.13,0,0,0,1390.8147 +12224,14924,26625,26624,-9,-9,1,0,66,0,0,0,3,3,-9,0,5,0,3.910722,3.4991906,25,-2,77.601494,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1951818,3.6436322,55.68,54.24,58.32,50.22,10,1,1,0,0,9,7,2,1,2117,836534.06,445174.81,282861.13,0,0,0,1390.8147 +12225,14925,26626,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.3844376,7.3401313,0,0,0,-1007.7165,0,-9,-9,2021,12,2,45,40,1,2,0,5.8017449,5.8017449,0,0,0,0,0,0,0,0,0,0,0,6.4196095,0,43.18,55.57,-9,-9,8.333333333333334,3,4,0,0,9,8,3,1,397,151106.52,7032.666,118783.44,0,0,0,2149.7976 +12226,14926,26627,26628,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.4884129,8.2374001,0,2,7,38.18055,0,-9,-9,2021,2,0,50,50,1,0,0,9.7742634,9.7742634,.05,.05,0,0,0,0,0,0,1,1,0,.97912908,0,51.14,60.45,23.34,58.25,8.333333333333334,1,1,0,0,2,2,4,0,579.5,83618.953,-106007.22,0,0,0,0,2261.3516 +12226,14926,26628,26627,-9,-9,1,0,20,0,0,0,2,2,0,0,3,0,0,0,2,-7,-83.095139,-9,1,2,2021,30,12,0,0,2,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.34,58.25,51.14,60.45,6.666666666666667,1,1,0,0,3,2,4,0,579.5,83618.953,-106007.22,0,0,0,0,2261.3516 +12227,14927,26629,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.8926501,6.8952136,0,0,-909.56677,0,3,3,2021,23,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8830185,6.9614553,36.96,29.14,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,2920,673089.06,36639.199,276304.81,0,0,0,1472.4113 +12228,14928,26630,26631,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,9.7764206,9.5072737,0,23,0,-1.5682834,0,2,2,2021,7,0,40,50,1,0,0,43.017292,43.017292,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.06,57.76,8.333333333333334,1,1,0,0,7,7,5,1,950,610776.5,252909.78,555797.75,226745.3,11527.866,5322.96,5594.1348 +12228,14928,26631,26630,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,7.0604458,6.7962236,0,23,0,-54.187733,-9,2,2,2021,6,0,20,0,1,0,0,7.3645968,7.3645968,.05,.05,0,0,0,0,0,0,0,0,0,1.6916153,0,57.06,57.76,60.12,54.8,10,1,1,0,0,5,7,5,1,950,610776.5,252909.78,555797.75,226745.3,11527.866,5322.96,5594.1348 +12228,14929,26632,-9,26631,26630,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1133.7107,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,-9,-9,10,1,1,0,0,3,7,1,1,381,196151.98,0,0,0,0,0,1066.7922 +12228,14930,26633,-9,26631,26630,1,1,18,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1083.5641,-9,2,2,2021,0,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.8167582,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,213,-132071.3,0,0,0,0,0,84.1483 +12229,14931,26634,26636,-9,-9,1,0,35,0,1,0,2,2,-9,0,1,8.1049719,8.0343618,0,2,-7,17.642303,0,-9,-9,2021,26,9,45,43,1,9,0,9.1273193,9.1273193,0,0,0,0,0,0,0,2,1,1,0,0,0,21.24,48.67,35.5,38.04,1.666666666666667,1,1,0,0,3,9,3,0,455,126648.84,61757.699,194152.88,137507.64,0,370.04697,2066.6104 +12229,14931,26635,-9,-9,26636,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1099.6489,-9,-9,3,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.78,60.04,-9,-9,3.333333333333333,1,1,0,0,0,9,3,0,455,126648.84,61757.699,194152.88,137507.64,0,370.04697,2066.6104 +12229,14931,26636,26634,-9,-9,1,1,42,0,1,0,3,3,-9,0,2,6.9975376,6.6680322,0,2,7,93.391632,0,2,3,2021,14,3,40,40,1,3,0,3.1248224,3.1248224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.5,38.04,21.24,48.67,6.666666666666667,1,1,0,0,5,9,3,0,455,126648.84,61757.699,194152.88,137507.64,0,370.04697,2066.6104 +12230,14932,26637,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.6562767,9.067997,0,0,0,-1049.2338,0,2,-9,2021,10,2,38,37,1,2,0,21.579283,21.579283,0,0,0,0,0,0,0,0,0,0,0,0,0,46.32,53.44,-9,-9,6.666666666666667,1,1,0,0,12,4,5,1,564,-28350.676,0,72241.836,4828.9453,0,0,2552.9446 +12230,14933,26638,-9,26637,-9,1,1,25,0,0,0,2,2,-9,0,2,0,0,0,0,0,-943.79718,0,2,-9,2021,20,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.7,51.08,-9,-9,3.333333333333333,1,1,1,1,1,4,1,1,3250,0,0,0,0,0,0,0 +12231,14934,26639,-9,26644,26643,1,1,39,0,3,0,2,2,-9,0,3,0,0,0,0,0,-995.01929,0,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.15,41.42,-9,-9,5,2,3,1,1,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14934,26640,-9,-9,26639,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-982.96375,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14934,26641,-9,-9,26639,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1121.7175,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14934,26642,-9,-9,26639,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-965.29883,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,4,1,0,1221.5,0,0,0,0,0,0,779.94904 +12231,14935,26643,26644,-9,-9,1,1,62,0,3,0,3,3,-9,0,3,0,0,0,3,-5,-7.848752,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,50,48,49,47,7,2,3,0,0,1,4,2,0,676,113811.01,39139.914,0,0,8028.3174,2554.7925,1324.4946 +12231,14935,26644,26643,-9,-9,1,0,67,0,3,0,3,3,-9,0,3,8.1233177,7.7739329,5.1482372,3,5,72.016586,0,-9,-9,2021,11,0,40,40,1,1,0,8.1093407,8.1093407,0,0,0,0,0,0,0,0,1,1,0,0,5.5635405,49,47,50,48,7,2,3,0,0,1,4,2,0,676,113811.01,39139.914,0,0,8028.3174,2554.7925,1324.4946 +12232,14936,26645,26647,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,6.7779331,6.8896093,0,21,-4,8.6245975,0,2,3,2021,12,0,12,16,1,0,0,6.873951,6.873951,0,0,0,0,0,0,0,0,1,1,0,0,0,52.41,42.18,52,56,5,1,1,0,0,11,13,3,1,936.66669,697577.81,118192.91,123243.84,0,0,0,1842.1993 +12232,14936,26646,-9,26645,26647,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-928.66461,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,936.66669,697577.81,118192.91,123243.84,0,0,0,1842.1993 +12232,14936,26647,26645,-9,-9,1,1,45,0,1,0,3,3,-9,0,4,8.0694075,8.1701441,0,16,4,-.45772067,0,3,3,2021,9,0,45,50,1,1,0,6.3626671,6.3626671,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,52.41,42.18,8,1,1,0,0,1,13,3,1,936.66669,697577.81,118192.91,123243.84,0,0,0,1842.1993 +12232,14937,26648,-9,26645,26647,1,1,18,0,1,0,3,3,-9,0,3,0,0,0,0,0,-939.36969,-9,2,3,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.92,49.24,-9,-9,1.666666666666667,1,1,1,1,0,13,1,1,269,-93315.555,0,0,0,0,0,0 +12233,14938,26649,26650,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4699955,8.3873816,0,31,3,43.256176,0,3,3,2021,10,0,37,37,1,0,0,15.163701,15.163701,.05,.05,.05,0,0,0,0,2,0,0,0,1.0758699,0,56.35,51.16,55.96,49.93,8.333333333333334,1,1,0,0,10,13,5,1,1549.5,903982.75,738706.75,225498.09,27468.41,0,5468.8242,3517.6487 +12233,14938,26650,26649,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.4867554,8.2262182,0,32,-3,112.83746,0,2,-9,2021,10,0,37,38,1,0,0,12.287566,12.287566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,56.35,51.16,8.333333333333334,1,1,0,0,10,13,5,1,1549.5,903982.75,738706.75,225498.09,27468.41,0,5468.8242,3517.6487 +12233,14939,26651,-9,26650,26649,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1029.9548,1,2,1,2021,4,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.1813852,0,55.61,50.3,-9,-9,6.666666666666667,1,1,0,0,1,13,1,1,531,-240223.95,0,0,0,0,0,-102.01004 +12234,14940,26652,26653,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.4459887,7.0893412,51,9,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7745051,51.32,37.6,57.06,57.76,8.333333333333334,1,1,0,0,0,6,2,1,448,477837.56,288152.69,146497.69,0,0,0,1742.4915 +12234,14940,26653,26652,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,7.1839943,6.8374381,26,0,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2631865,6.9436212,57.06,57.76,51.32,37.6,8.333333333333334,1,1,0,0,0,6,2,1,448,477837.56,288152.69,146497.69,0,0,0,1742.4915 +12235,14941,26654,26655,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.2904482,8.3461227,57,-1,-65.696609,0,3,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2479868,8.1148205,57.16,56.15,52.16,43.45,8.333333333333334,1,1,0,0,0,4,4,1,156.5,2210182,756171,492023.13,0,0,0,4392.4414 +12235,14941,26655,26654,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,7.7300458,7.65204,57,1,-50.887039,0,3,-9,2021,14,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1512389,7.7251344,52.16,43.45,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,156.5,2210182,756171,492023.13,0,0,0,4392.4414 +12236,14942,26656,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,5.701448,5.8731728,0,0,-1083.1938,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9620829,54.96,53.17,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,2636,425256.75,0,304484.44,0,0,0,-155.46933 +12237,14943,26657,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,6.2346745,6.3438358,0,0,-974.0506,0,3,3,2021,23,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.0752907,0,39.38,22.52,-9,-9,6.666666666666667,2,3,1,0,0,8,2,0,213,40906.633,37820.984,0,0,0,0,1741.3433 +12238,14944,26658,26659,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,7.0378418,6.9011211,38,5,-68.518845,0,3,3,2021,9,1,0,0,4,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,2.6187766,7.1130638,58.33,47.36,47.27,53.93,8.333333333333334,1,1,0,0,11,10,5,1,511.5,2494887.5,1619636,488410.06,0,761.95807,0,3977.2793 +12238,14944,26659,26658,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.8284302,8.7104845,0,37,-5,129.98213,0,2,-9,2021,12,2,42,40,1,2,0,20.571722,20.571722,0,0,0,0,0,0,0,0,1,1,0,2.5257561,0,47.27,53.93,58.33,47.36,6.666666666666667,1,1,0,0,14,10,5,1,511.5,2494887.5,1619636,488410.06,0,761.95807,0,3977.2793 +12239,14945,26660,26661,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,6.8877587,7.1416531,1,-5,61.936829,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8333048,7.0093513,41.07,60.93,52.15,27.72,10,1,1,0,0,0,11,3,1,307.5,612635.31,351002.25,302746.78,0,0,0,2232.8694 +12239,14945,26661,26660,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,6.8319201,6.6129484,1,5,61.474781,-9,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6699419,6.8107643,52.15,27.72,41.07,60.93,8.333333333333334,1,1,0,0,5,11,3,1,307.5,612635.31,351002.25,302746.78,0,0,0,2232.8694 +12240,14946,26662,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-948.37854,-9,-9,-9,2021,15,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.05,59.07,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,776,0,0,0,0,0,0,0 +12241,14947,26663,26664,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.2227268,8.3291187,52,1,-87.017601,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3028288,8.119297,63.97,49.13,63.43,26.45,10,1,1,0,0,0,9,4,1,1189,1784323.6,883157.75,680322,0,0,0,5195.7632 +12241,14947,26664,26663,-9,-9,1,0,73,0,0,0,1,1,-9,1,2,8.0336313,7.7931924,6.2533464,52,-1,-64.005959,0,3,2,2021,6,0,15,20,1,0,0,21.230148,21.230148,0,0,0,1,0,3.4173265,0,0,1,1,0,5.3480673,6.1406741,63.43,26.45,63.97,49.13,10,1,1,0,0,8,9,4,1,1189,1784323.6,883157.75,680322,0,0,0,5195.7632 +12242,14948,26665,26666,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,50,-4,-46.516308,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9544806,0,57.16,56.15,57.18,45.76,8.333333333333334,1,1,0,0,0,5,3,1,444.5,852059,19848.354,196355.78,0,0,0,2157.7839 +12242,14948,26666,26665,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.7028508,7.6806765,50,4,-27.217077,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8150923,7.6009955,57.18,45.76,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,444.5,852059,19848.354,196355.78,0,0,0,2157.7839 +12243,14949,26667,26668,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.5603113,7.6629648,9,-3,-16.443136,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.0823011,7.3106537,53.2,45.6,45.66,46.37,8.333333333333334,1,1,0,0,9,11,3,1,1268.5,928885.5,560871.25,304230.31,0,6448.4336,0,1738.55 +12243,14949,26668,26667,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,7.0064545,6.8400326,9,3,-16.781683,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8901302,7.0793552,45.66,46.37,53.2,45.6,8.333333333333334,1,1,0,0,9,11,3,1,1268.5,928885.5,560871.25,304230.31,0,6448.4336,0,1738.55 +12243,14950,26669,-9,26668,26667,1,0,24,0,0,0,2,2,-9,0,2,7.6438336,7.8415909,0,0,0,-935.17371,0,2,2,2021,13,3,40,39,1,3,0,6.4828157,6.4828157,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.74,42.66,-9,-9,6.666666666666667,1,1,0,0,8,11,3,1,537,131383.34,117111.19,0,0,0,0,1162.2175 +12244,14951,26670,-9,26672,26671,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-926.21912,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.70554793,0,57.33,53.46,-9,-9,6.666666666666667,4,2,0,0,0,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12244,14951,26671,26672,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,9.1122952,8.8300161,0,21,8,-74.099434,0,-9,-9,2021,0,0,51,51,1,0,0,20.369789,20.369789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.68,46.69,36.37,51.76,6.666666666666667,3,4,0,0,15,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12244,14951,26672,26671,-9,-9,1,0,49,0,2,0,2,2,-9,0,2,0,0,0,21,-8,-132.50418,0,2,3,2021,23,11,0,42,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.37,51.76,53.68,46.69,3.333333333333333,2,3,1,0,13,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12244,14951,26673,-9,26672,26671,1,0,16,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1061.0277,-9,2,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,4,2,0,0,0,7,4,1,894.25,1605664.3,157528.91,1522323.5,111389.63,0,0,3870.7539 +12245,14952,26674,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,7.593565,7.4493904,0,0,-1045.9949,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7732887,7.7331095,49.97,56.66,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,701,509727.78,195349.56,164475.42,44297.043,0,0,1753.3636 +12246,14953,26675,-9,26676,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-930.29633,-9,1,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,4,0,473.5,1604895.5,788207.44,702514.25,10292.315,0,0,2091.6006 +12246,14953,26676,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.2965355,8.3288431,0,0,0,-837.46075,0,2,2,2021,12,0,37,37,1,2,0,12.300043,12.300043,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,49,-9,-9,7,1,1,0,0,3,10,4,0,473.5,1604895.5,788207.44,702514.25,10292.315,0,0,2091.6006 +12247,14954,26677,26678,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,7.8131237,8.2806406,0,9,-5,41.395283,0,2,3,2021,21,8,43,37,1,8,0,9.1570759,9.1570759,0,0,0,0,0,0,0,0,1,1,0,0,0,40.94,37.09,43.92,37.91,5,1,1,0,1,10,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12247,14954,26678,26677,-9,-9,1,1,54,0,1,0,1,1,-9,0,3,4.1668143,3.9750271,0,9,5,56.013561,0,2,2,2021,10,0,9,34,1,0,0,.67292994,.67292994,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,37.91,40.94,37.09,3.333333333333333,1,1,0,0,10,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12247,14954,26679,-9,26677,26678,1,0,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1048.8904,-9,2,1,2021,19,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.56,40.58,-9,-9,8.333333333333334,1,1,0,0,1,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12247,14954,26680,-9,26677,26678,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-957.81085,-9,2,1,2021,24,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.71,54.45,-9,-9,1.666666666666667,1,1,0,0,0,1,3,1,303.75,26908.629,127374.55,120334.33,73772.609,2055.8269,2661.7769,1775.9851 +12248,14955,26681,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,6.0419421,6.5744505,0,0,-979.98071,0,-9,-9,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1813154,30.14,29.78,-9,-9,0,2,3,0,1,0,2,2,1,556,238878.91,28693.279,56362.07,0,0,0,-308.55637 +12248,14956,26682,-9,-9,-9,1,1,44,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1060.7841,0,-9,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,16.04,23.99,-9,-9,0,2,3,0,0,0,2,1,1,356,-40789.965,0,0,0,0,0,64.579742 +12249,14957,26683,26684,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.6965952,8.4828634,0,6,0,183.44394,0,2,2,2021,12,0,37,37,1,0,0,16.617214,16.617214,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.37,52.37,8.333333333333334,1,1,0,0,6,12,5,1,1214.5,173115.34,16498.609,120973.24,66969.219,0,0,2619.5774 +12249,14957,26684,26683,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.8844924,7.4813709,0,6,0,-31.094679,0,-9,2,2021,2,0,15,15,1,0,0,12.928028,12.928028,0,0,0,0,0,0,0,14.5,0,0,0,0,0,50.37,52.37,54.1,59.11,10,1,1,0,0,6,12,5,1,1214.5,173115.34,16498.609,120973.24,66969.219,0,0,2619.5774 +12250,14958,26685,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,7.4655719,7.4939737,0,0,0,-1019.7356,0,3,-9,2021,16,4,30,39,1,4,0,6.4978404,6.4978404,0,0,0,0,0,0,0,0,0,0,0,0,0,47.35,54.15,-9,-9,6.666666666666667,1,1,0,0,9,11,3,1,1523,-122600.06,-14114.037,0,0,0,0,769.31677 +12251,14959,26686,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.0632162,8.2295446,0,0,-1021.2581,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1467881,8.1175261,58.47,50.22,-9,-9,10,1,1,0,0,6,1,4,1,1127,841497.06,542764.81,267607.44,0,0,0,1838.7584 +12252,14960,26687,-9,26690,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.14941,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12252,14960,26688,26690,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.9485884,8.934083,0,4,4,12.64707,0,1,2,2021,9,2,37,37,1,2,0,21.522055,21.522055,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,33.01,63.17,8.333333333333334,1,1,0,0,12,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12252,14960,26689,-9,26690,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.87,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12252,14960,26690,26688,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,8.2909374,8.7993965,6.1883407,4,-4,-25.608877,0,-9,-9,2021,16,4,43,35,1,4,0,12.993585,12.993585,0,0,0,0,0,0,0,0,1,1,0,6.1656609,0,33.01,63.17,43.2,59.97,8.333333333333334,1,1,0,0,3,6,5,1,437.75,602528.56,153959.03,357403.31,71526.672,32755.061,0,4309.4063 +12253,14961,26691,26692,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.5727453,7.8787465,0,11,3,-71.291542,0,3,3,2021,8,0,30,30,1,0,0,9.6659536,9.6659536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.92,47.86,46,51,6.666666666666667,2,3,0,0,11,8,3,0,1161,571869.38,229442.98,241832.47,0,0,3327.043,1635.2804 +12253,14961,26692,26691,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,0,0,0,31,-3,67.914597,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4346344,0,46,51,51.92,47.86,6.666666666666667,2,3,0,0,0,8,3,0,1161,571869.38,229442.98,241832.47,0,0,3327.043,1635.2804 +12253,14962,26693,-9,26692,26691,1,0,24,0,0,0,2,2,0,0,3,0,0,0,0,0,-944.82123,-9,2,2,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.84,49.18,-9,-9,6.666666666666667,2,3,0,0,5,8,1,0,800,-133481.2,0,0,0,0,0,-2.9036579 +12254,14963,26694,26696,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.1103344,9.2320986,0,5,1,50.242115,-9,2,3,2021,9,0,60,0,1,1,0,20.829952,20.829952,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,8,1,1,0,0,1,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26695,-9,26696,26694,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.7074,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26696,26694,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.4905338,7.7857733,6.2729402,5,-1,83.645447,-9,2,2,2021,10,0,10,0,1,0,0,21.85128,21.85128,.05,.05,0,0,0,0,0,0,1,1,0,6.558588,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,8,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26697,-9,26696,26694,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1087.0691,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,0,0,0,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12254,14963,26698,-9,26696,26694,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-898.2442,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,938.59998,435076.06,147630.13,314470.16,0,1270.9504,0,5335.5142 +12255,14964,26699,26700,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,6.8628421,7.0582771,53,-6,-133.4857,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,21.012745,0,0,1,1,0,4.9543781,7.1968875,30.27,25.47,39.45,36.29,1.666666666666667,1,1,0,0,3,2,3,1,481.5,904106.13,440459.09,260585.81,0,3652.0796,0,2902.9033 +12255,14964,26700,26699,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.5393014,7.65063,53,6,.26010418,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.1978793,7.7259007,39.45,36.29,30.27,25.47,3.333333333333333,1,1,0,0,0,2,3,1,481.5,904106.13,440459.09,260585.81,0,3652.0796,0,2902.9033 +12256,14965,26701,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.608674,8.6678972,0,0,0,-978.53021,-9,2,2,2021,15,4,41,0,1,4,0,15.704181,15.704181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.87,59.15,-9,-9,6.666666666666667,3,4,0,0,12,8,5,0,961,11150.23,-75481.398,110673.81,68227.313,6960.3926,4310.7334,2065.979 +12257,14966,26702,26703,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,2,3,0,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.33,21.69,38.3,24.4,5,1,1,0,0,0,13,1,0,211.5,216525.38,0,0,0,0,0,3089.7183 +12257,14966,26703,26702,-9,-9,1,0,54,0,0,0,3,3,-9,1,2,0,0,0,2,-3,0,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,38.3,24.4,32.33,21.69,6.666666666666667,1,1,0,0,0,13,1,0,211.5,216525.38,0,0,0,0,0,3089.7183 +12258,14967,26704,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.8985443,8.0376062,0,0,-1073.5051,0,1,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7855887,37.86,43.87,-9,-9,6.666666666666667,1,1,0,0,5,8,4,1,914,869376.5,460967.06,120988.75,0,0,0,1700.9147 +12259,14968,26705,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,3,0,4.4386773,4.2239618,0,0,-1048.1827,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9515858,4.290884,52,44,-9,-9,8,1,1,0,0,0,6,2,1,475,401186.63,5979.0386,164368.28,0,0,0,903.09857 +12260,14969,26706,26707,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,7,0,-83.487602,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,16.955814,0,0,1,1,0,0,0,55.78,44.75,54,46,8.333333333333334,1,1,0,0,0,7,2,1,802.5,582010.25,153323.14,332493.13,0,0,0,892.93799 +12260,14969,26707,26706,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.2604833,6.2023807,7,0,71.085922,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6058016,6.201808,54,46,55.78,44.75,8,1,1,0,0,0,7,2,1,802.5,582010.25,153323.14,332493.13,0,0,0,892.93799 +12260,14970,26708,-9,26706,26707,1,1,50,0,0,0,2,2,-9,0,5,8.5803337,8.6509886,0,0,0,-1017.5662,0,2,2,2021,6,0,56,60,1,0,0,8.0244513,8.0244513,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.07,52.23,-9,-9,8.333333333333334,1,1,0,0,7,7,5,1,810,1071808.1,768785.56,292575.63,90680.07,0,0,2873.0259 +12261,14971,26709,26710,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,6.1585774,6.5626659,10,13,-77.920868,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,.0082650837,0,0,1,1,0,6.075192,6.0582218,61.69,15.28,49.42,19.32,8.333333333333334,1,1,0,0,0,1,2,0,439,1144250.5,139626.56,380923.41,0,0,0,3019.7813 +12261,14971,26710,26709,-9,-9,1,0,73,0,0,0,1,1,-9,0,2,0,6.638586,6.4141731,10,-13,-50.066242,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3361554,6.448842,49.42,19.32,61.69,15.28,8.333333333333334,1,1,0,0,0,1,2,0,439,1144250.5,139626.56,380923.41,0,0,0,3019.7813 +12262,14972,26711,26712,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,11,-3,-9.1903267,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.07,49.95,51.02,52.22,8.333333333333334,1,1,0,0,0,4,4,1,704,2152975.8,1460470.4,365017.75,0,0,0,3911.7839 +12262,14972,26712,26711,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.6848469,8.7752295,49,3,-51.696449,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0997486,8.6537523,51.02,52.22,56.07,49.95,8.333333333333334,1,1,0,0,9,4,4,1,704,2152975.8,1460470.4,365017.75,0,0,0,3911.7839 +12263,14973,26713,26714,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,0,0,0,26,0,74.887047,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.88,43.27,40.44,46.26,3.333333333333333,2,3,0,0,0,8,2,0,2525,632051.06,218330.36,388979.5,0,0,0,2953.2725 +12263,14973,26714,26713,-9,-9,1,1,51,0,1,0,1,1,-9,0,4,3.194587,3.8616393,0,26,9,60.830692,0,2,1,2021,15,4,30,40,1,4,0,.098311417,.098311417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.44,46.26,52.88,43.27,1.666666666666667,2,3,0,0,10,8,2,0,2525,632051.06,218330.36,388979.5,0,0,0,2953.2725 +12263,14974,26715,-9,26713,26714,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-1114.1119,-9,2,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.39,38.74,-9,-9,10,2,3,0,0,0,8,2,0,290,52203.418,35192.449,0,0,0,-1027.0988,1342.8717 +12264,14975,26716,26717,-9,-9,1,0,67,0,0,0,1,1,-9,0,5,0,7.1580324,7.1012421,21,-2,-107.18859,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2929044,7.0533295,60.02,56.42,58.72,51.29,10,1,1,0,0,10,11,2,1,736.5,575729.25,468227.75,157321.08,0,0,684.3418,2373.1289 +12264,14975,26717,26716,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.9460301,5.9587526,9,2,-11.985532,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6131654,58.72,51.29,60.02,56.42,8.333333333333334,1,1,0,0,6,11,2,1,736.5,575729.25,468227.75,157321.08,0,0,684.3418,2373.1289 +12265,14976,26718,26719,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,29,0,-18.861162,0,3,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.48,40.75,39.44,63.66,3.333333333333333,1,1,0,0,0,1,3,1,1125,166787.63,0,110756.77,26756.566,3925.5139,-378.58234,1246.1295 +12265,14976,26719,26718,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.9578552,8.1842747,0,14,0,42.919132,0,3,3,2021,12,1,45,35,1,1,0,7.9646969,7.9646969,0,0,0,0,0,0,0,2,1,1,0,0,0,39.44,63.66,32.48,40.75,6.666666666666667,1,1,0,0,5,1,3,1,1125,166787.63,0,110756.77,26756.566,3925.5139,-378.58234,1246.1295 +12266,14977,26720,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,7.7399068,7.9544039,0,0,-901.89954,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9354763,61.11,48.86,-9,-9,10,1,1,0,0,4,12,4,1,430,905032.56,757679.94,207825.14,0,0,0,1959.2859 +12267,14978,26721,26722,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.1223745,7.5910921,61,-2,-63.884651,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,.83824265,0,0,1,1,0,0,7.4523706,61.43,30.11,58.07,46.29,8.333333333333334,1,1,0,0,0,12,4,1,445,805598.38,710222.94,132678.45,0,0,0,3833.8232 +12267,14978,26722,26721,-9,-9,1,1,85,0,0,0,1,1,-9,0,3,0,8.0382318,8.1503468,61,2,203.15132,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2930079,8.2392159,58.07,46.29,61.43,30.11,8.333333333333334,1,1,0,0,0,12,4,1,445,805598.38,710222.94,132678.45,0,0,0,3833.8232 +12268,14979,26723,26724,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,9.2005444,8.9900188,0,11,-4,116.71091,0,3,3,2021,6,0,22,15,1,0,0,37.18642,37.18642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,6.666666666666667,1,1,0,0,12,11,5,1,644,903215.25,666017.5,207017.95,65637.047,3312.9309,3914.3608,4763.9233 +12268,14979,26724,26723,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.5027647,8.5924768,0,11,4,-65.140358,0,3,3,2021,10,0,48,45,1,0,0,11.683138,11.683138,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,6.666666666666667,4,2,0,0,12,11,5,1,644,903215.25,666017.5,207017.95,65637.047,3312.9309,3914.3608,4763.9233 +12268,14979,26725,-9,26723,26724,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1155.0697,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,11,5,1,644,903215.25,666017.5,207017.95,65637.047,3312.9309,3914.3608,4763.9233 +12269,14980,26726,-9,-9,-9,1,0,37,0,0,0,1,1,0,0,2,0,0,0,0,0,-1159.5286,-9,1,-9,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.65,41.71,-9,-9,6.666666666666667,3,4,0,1,6,8,1,0,465.5,-59987.285,-13034.224,0,0,0,0,1324.7434 +12269,14980,26727,-9,26726,-9,1,0,14,0,0,1,3,0,-9,0,4,0,0,0,0,0,-949.05035,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,465.5,-59987.285,-13034.224,0,0,0,0,1324.7434 +12270,14981,26728,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,3,9.7102919,9.5776262,0,0,0,-846.43939,0,2,2,2021,12,0,53,45,1,0,0,32.484932,32.484932,0,0,.05,0,0,0,0,0,0,0,0,4.1394906,0,48.93,50.55,-9,-9,6.666666666666667,1,1,0,0,11,7,5,1,3067,877855.31,-2740.8438,857833.31,353812.34,0,0,5538.1064 +12271,14982,26729,26732,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,9.2925215,9.3692036,0,20,10,-61.236176,0,2,2,2021,17,4,70,53,1,4,0,20.59409,20.59409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.99,36.66,35.67,64.46000000000001,8.333333333333334,1,1,0,1,5,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12271,14982,26730,-9,26732,26729,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.3684,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12271,14982,26731,-9,26732,26729,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1129.8954,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,1,1,-9,0,0,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12271,14982,26732,26729,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,7.1798749,7.1334105,4.6391444,20,-10,31.961943,0,2,2,2021,15,4,23,23,1,4,0,6.287796,6.287796,.05,.05,0,0,0,0,0,0,1,1,0,4.6003909,0,35.67,64.46000000000001,40.99,36.66,6.666666666666667,1,1,0,0,7,2,5,1,563,353520.91,200414.41,187926.41,98930.859,0,21670.248,4742.2979 +12272,14983,26733,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.7820807,9.4354763,0,0,0,-1040.8059,0,1,1,2021,32,12,37,46,1,12,0,41.032261,41.032261,.05,.05,0,0,0,0,0,0,0,0,0,3.2692585,0,3.79,74.17,-9,-9,3.333333333333333,2,3,0,0,13,8,5,1,156,256414.2,171776.02,183074,77512.406,0,0,4124.2432 +12273,14984,26734,26735,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.8585587,8.8328571,0,4,-1,-72.509041,0,-9,-9,2021,8,0,53,44,1,0,0,16.996048,16.996048,.05,.05,0,0,0,0,.87485337,27,0,0,0,0,0,52.54,54.24,47.6,50.99,6.666666666666667,1,1,0,0,8,12,5,1,1553.5,890803,385777.22,259234.44,0,0,0,4606.2065 +12273,14984,26735,26734,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3983059,8.6905861,5.1561894,4,1,-75.355141,0,2,3,2021,11,0,43,41,1,0,0,11.528265,11.528265,0,0,0,0,0,0,0,42,0,0,0,7.2812042,5.1918173,47.6,50.99,52.54,54.24,8.333333333333334,1,1,0,0,8,12,5,1,1553.5,890803,385777.22,259234.44,0,0,0,4606.2065 +12274,14985,26736,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,7.8947005,7.6692162,0,4,5,-21.326328,0,2,2,2021,19,9,42,43,1,9,0,9.4632263,9.4632263,0,0,0,0,0,0,0,0,1,1,0,2.5331533,0,28.25,59.94,47.46,39,6.666666666666667,1,1,0,0,6,4,3,0,1155,-27318.484,41326.957,0,0,0,0,807.94855 +12274,14986,26737,-9,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,0,7.0094609,6.8110485,4,-5,15.735175,1,-9,-9,2021,11,0,0,37,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5014453,0,47.46,39,28.25,59.94,6.666666666666667,1,1,0,0,3,4,3,0,1296,52067.84,0,0,0,0,0,1089.25 +12275,14987,26738,26739,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,6.9080477,7.5381255,6.4024639,9,7,-154.05406,0,-9,2,2021,6,0,12,0,1,0,0,9.0903454,9.0903454,.05,.05,0,0,0,0,0,14.5,1,1,0,5.966527,6.367681,55.33,42.18,27.05,46.91,8.333333333333334,1,1,0,0,9,9,3,1,1510.5,456943.56,94496.539,326629.53,-6513.2866,0,1296.7507,2596.2451 +12275,14987,26739,26738,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.7570834,7.7641444,0,9,-7,8.3088694,0,2,3,2021,25,11,37,40,1,11,0,7.1829958,7.1829958,0,0,0,0,0,0,0,0,1,1,0,0,0,27.05,46.91,55.33,42.18,3.333333333333333,1,1,0,1,11,9,3,1,1510.5,456943.56,94496.539,326629.53,-6513.2866,0,1296.7507,2596.2451 +12275,14988,26740,-9,26739,26738,1,1,30,0,0,0,2,2,-9,0,2,5.8259859,5.8942871,0,0,0,-1064.668,0,2,2,2021,19,7,30,20,1,7,1,1.3590999,1.3590999,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.2,50.61,-9,-9,1.666666666666667,1,1,0,0,8,9,2,1,891,56137.289,-8498.9346,0,0,311.04163,1806.9542,451.60037 +12276,14989,26741,-9,26742,26743,1,0,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1020.2444,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,5,1,727.66669,1888190.1,1495060.5,409386.22,32383.51,0,0,5003.8237 +12276,14989,26742,26743,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.9286823,8.4380846,0,31,0,68.240166,0,2,3,2021,11,0,33,35,1,0,0,11.089788,11.089788,.05,.05,0,0,0,0,0,0,1,1,0,2.8849218,0,46.08,57.2,32.72,57.72,6.666666666666667,1,1,0,0,12,5,5,1,727.66669,1888190.1,1495060.5,409386.22,32383.51,0,0,5003.8237 +12276,14989,26743,26742,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,9.4029827,9.3431759,0,30,0,-39.976543,0,2,2,2021,33,12,37,40,1,12,0,30.550364,30.550364,.05,.05,0,0,0,0,0,0,1,1,0,4.6058178,0,32.72,57.72,46.08,57.2,3.333333333333333,1,1,0,0,10,5,5,1,727.66669,1888190.1,1495060.5,409386.22,32383.51,0,0,5003.8237 +12276,14990,26744,-9,26742,26743,1,0,22,0,1,0,2,2,-9,0,4,8.0672359,7.9420595,0,0,0,-999.05615,0,2,2,2021,8,0,40,42,1,0,1,8.1105728,8.1105728,.05,.05,0,0,0,0,0,0,1,1,0,1.6161803,0,40.48,60.05,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,2231,-64567.828,27327.828,0,0,0,2654.4614,1045.9326 +12277,14991,26745,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2428179,7.3404713,0,0,0,-945.70081,0,2,3,2021,12,0,25,25,1,0,0,7.0433989,7.0433989,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.27,52.67,-9,-9,6.666666666666667,1,1,0,0,8,2,3,0,1109,377564.22,28710.316,193980.44,21692.635,0,0,479.39911 +12278,14992,26746,26747,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,9.2764549,9.081212,0,3,2,85.478493,0,-9,-9,2021,7,0,43,43,1,0,0,31.458784,31.458784,0,0,0,0,0,0,0,0,0,0,0,6.6520071,0,57.16,56.15,47.26,54.06,6.666666666666667,1,1,0,0,8,7,5,1,954.5,216411.05,0,243114.44,122430.05,1268.0438,0,4713.9424 +12278,14992,26747,26746,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.8650804,7.6464419,0,3,-2,-118.97877,0,3,2,2021,13,2,40,40,1,2,0,8.7735224,8.7735224,0,0,0,0,0,0,0,0,0,0,0,0,0,47.26,54.06,57.16,56.15,8.333333333333334,1,1,0,0,8,7,5,1,954.5,216411.05,0,243114.44,122430.05,1268.0438,0,4713.9424 +12279,14993,26748,-9,26750,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.76068,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,2,0,600.66669,14135.797,69818.625,140995.19,65711.578,2351.9897,0,1902.5129 +12279,14993,26749,-9,26750,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.6703,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,2,0,600.66669,14135.797,69818.625,140995.19,65711.578,2351.9897,0,1902.5129 +12279,14993,26750,-9,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,7.199369,7.3344641,0,0,0,-959.21405,0,-9,-9,2021,12,0,14,13,1,0,0,10.060826,10.060826,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42.34,59.15,-9,-9,8.333333333333334,1,1,0,0,14,4,2,0,600.66669,14135.797,69818.625,140995.19,65711.578,2351.9897,0,1902.5129 +12280,14994,26751,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,4,0,0,0,0,0,-971.50305,0,2,2,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.21,65.58,-9,-9,0,3,4,1,1,0,8,1,0,1348,-264770.47,0,0,0,0,0,692.10168 +12281,14995,26752,26753,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,0,0,8,0,0,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,33.93,19.89,44.57,14.71,6.666666666666667,1,1,0,0,0,1,1,0,1206,197648.19,0,186715.53,0,0,0,2542.1228 +12281,14995,26753,26752,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,0,0,8,9,0,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.57,14.71,33.93,19.89,8.333333333333334,1,1,0,0,0,1,1,0,1206,197648.19,0,186715.53,0,0,0,2542.1228 +12282,14996,26754,26755,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,0,0,0,8,-13,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7611113,0,54.2,57.49,50.16,55.32,10,1,1,0,0,2,8,1,1,575.5,17249,64056.922,0,0,0,0,1442.2983 +12282,14996,26755,26754,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,0,0,28,13,0,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3483284,0,50.16,55.32,54.2,57.49,6.666666666666667,1,1,0,0,0,8,1,1,575.5,17249,64056.922,0,0,0,0,1442.2983 +12282,14997,26756,-9,26755,26754,1,1,20,0,0,0,2,2,-9,0,3,8.2626724,8.1394548,0,0,0,-1077.0251,0,2,2,2021,5,1,40,46,1,1,0,10.997148,10.997148,0,0,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,-9,-9,8.333333333333334,3,4,0,0,3,8,4,1,456,-2271.4595,0,0,0,0,0,1101.9854 +12282,14998,26757,26758,26755,26754,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,2,-1,22.396235,1,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48999533,0,48.87,58.55,57.16,56.15,6.666666666666667,4,2,0,0,1,8,3,1,670,-23790.633,0,0,0,10504.758,0,1070.2229 +12282,14998,26758,26757,-9,-9,1,0,25,0,0,0,1,1,1,0,4,8.0831203,8.0153866,0,2,1,-69.242744,-9,-9,-9,2021,5,0,53,0,1,0,0,6.7139091,6.7139091,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,2,8,3,1,670,-23790.633,0,0,0,10504.758,0,1070.2229 +12283,14999,26759,26760,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.1935358,9.1202354,0,8,-12,13.202948,0,3,2,2021,7,0,46,42,1,0,0,16.864101,16.864101,.05,.05,0,0,0,0,0,0,1,1,0,8.5807943,0,57.06,57.76,58.08,43.46,8.333333333333334,1,1,0,0,11,6,5,1,398.5,286975.75,57334.508,84759.391,38633.18,0,0,7110.6235 +12283,14999,26760,26759,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.2963719,7.4696088,6.685369,8,12,1.157835,0,3,3,2021,6,0,18,18,1,0,0,7.4918346,7.4918346,0,0,0,0,0,0,0,0,1,1,0,4.9191628,6.2671309,58.08,43.46,57.06,57.76,1.666666666666667,1,1,0,0,8,6,5,1,398.5,286975.75,57334.508,84759.391,38633.18,0,0,7110.6235 +12284,15000,26761,-9,-9,-9,1,1,52,0,0,0,3,3,0,0,4,0,0,0,0,0,-878.93982,-9,3,3,2021,0,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.29,44.54,-9,-9,6.666666666666667,2,3,0,0,0,6,1,0,604,-8298.1855,0,0,0,0,0,811.34412 +12285,15001,26762,-9,26765,26764,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.186,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12285,15001,26763,-9,26765,26764,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.72394,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12285,15001,26764,26765,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,8.4713831,8.359169,0,7,1,124.56776,0,2,2,2021,5,0,40,48,1,0,0,14.254913,14.254913,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,12,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12285,15001,26765,26764,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,0,0,0,7,-1,10.19011,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,62.39,56.71,10,1,1,0,0,10,7,3,1,1064,-77867.336,-17915.74,0,0,0,0,2064.2029 +12286,15002,26766,26767,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.6293554,7.8161883,0,3,-7,89.955643,0,2,-9,2021,8,0,60,50,1,0,0,3.8904359,3.8904359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,20.32,42.4,6.666666666666667,1,1,0,0,10,12,3,1,700,203443.72,106406.96,0,0,0,0,1447.4296 +12286,15002,26767,26766,-9,-9,1,0,47,0,0,0,2,2,1,1,2,0,0,0,3,7,50.788925,-9,2,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,20.32,42.4,51.41,56.15,5,1,1,0,0,5,12,3,1,700,203443.72,106406.96,0,0,0,0,1447.4296 +12287,15003,26768,26769,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,46,0,100.77148,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,1030.5,332562.91,120666.5,163088.5,0,0,0,2227.8616 +12287,15003,26769,26768,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,8.2763891,8.2680874,0,7,0,7.3060803,0,3,3,2021,8,0,35,37,1,0,0,13.520739,13.520739,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,9,12,4,1,1030.5,332562.91,120666.5,163088.5,0,0,0,2227.8616 +12288,15004,26770,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.5182762,7.9177074,0,0,0,-957.01294,-9,-9,-9,2021,11,0,28,0,1,0,0,9.7115288,9.7115288,0,0,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,-9,-9,5,1,1,0,0,8,9,3,0,689,9768.7383,0,0,0,0,0,2678.3696 +12288,15004,26771,-9,26770,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-952.80182,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,0,689,9768.7383,0,0,0,0,0,2678.3696 +12289,15005,26772,26773,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,6.3621492,6.1285629,0,32,5,-43.587269,0,3,3,2021,8,0,15,3,1,0,0,4.5522609,4.5522609,0,0,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,46.63,59.72,8.333333333333334,1,1,0,0,11,1,4,1,720.5,2196524.8,1086180.1,529298.5,0,0,0,3318.2627 +12289,15005,26773,26772,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.4272327,8.6237459,7.1087136,32,-5,177.89336,0,2,3,2021,10,0,40,40,1,0,0,13.798033,13.798033,0,0,0,0,0,0,0,0,1,1,0,0,7.3432384,46.63,59.72,56.33,51.02,6.666666666666667,1,1,0,0,10,1,4,1,720.5,2196524.8,1086180.1,529298.5,0,0,0,3318.2627 +12289,15006,26774,-9,26772,26773,1,1,24,0,0,0,2,2,-9,0,4,8.3836517,8.51509,0,0,0,-1010.6581,0,2,1,2021,6,0,44,46,1,0,1,10.817459,10.817459,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,6,1,4,1,1792,-1968.3906,-2647.1079,0,0,0,0,2215.9893 +12290,15007,26775,26776,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.0873079,7.9405413,0,11,-4,99.987724,0,-9,-9,2021,7,0,40,65,1,0,0,7.3627481,7.3627481,.05,.05,0,0,0,0,0,2,1,1,0,4.4856148,0,54.1,59.11,50,47,10,1,1,0,0,9,6,3,1,1743.5,211622.78,68823.969,98820.531,0,0,0,2014.5449 +12290,15007,26776,26775,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,2,4,36.824203,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0243011,0,50,47,54.1,59.11,7,1,1,0,0,0,6,3,1,1743.5,211622.78,68823.969,98820.531,0,0,0,2014.5449 +12291,15008,26777,26778,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,8.4367933,8.6101809,0,8,-3,-42.154404,0,2,2,2021,22,9,45,40,1,9,0,13.101397,13.101397,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.97,41.91,54,32.93,6.666666666666667,2,3,0,1,10,8,5,1,467.5,1833259,748476.75,326687.25,225058.59,0,11747.307,4808.2573 +12291,15008,26778,26777,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2811499,9.554512,0,27,3,73.917747,0,2,1,2021,14,2,45,41,1,2,0,35.631924,35.631924,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,32.93,44.97,41.91,8.333333333333334,2,3,0,0,8,8,5,1,467.5,1833259,748476.75,326687.25,225058.59,0,11747.307,4808.2573 +12291,15009,26779,-9,26777,26778,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1040.9633,1,2,1,2021,7,0,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.412277,0,52,54.51,-9,-9,8.333333333333334,2,3,0,0,1,8,1,1,1764,50795.559,0,0,0,0,0,92.574799 +12292,15010,26780,26781,-9,-9,1,1,61,0,2,0,1,1,-9,0,4,0,7.5804367,8.056674,21,22,66.58017,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6310489,7.8951011,40.94,64.77,46.42,54.11,6.666666666666667,1,1,0,0,5,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12292,15010,26781,26780,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.0395641,8.1007366,0,22,-22,15.485596,0,3,3,2021,15,4,30,30,1,4,0,12.680091,12.680091,0,0,0,0,0,0,0,0,1,1,0,0,0,46.42,54.11,40.94,64.77,8.333333333333334,1,1,0,0,6,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12292,15010,26782,-9,26781,26780,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.10114,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12292,15010,26783,-9,26781,26780,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1039.4067,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,735.75,2004537.5,1533361.8,361640.56,274403.94,0,0,2767.7729 +12293,15011,26784,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,8.1007671,7.9411402,0,0,0,-853.75806,0,3,3,2021,6,0,48,46,1,0,0,7.0794225,7.0794225,0,0,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,14,5,4,1,2677,253552.92,217253.25,152689.64,0,0,0,2041.9292 +12294,15012,26785,26786,-9,-9,1,1,38,0,0,0,3,3,-9,0,4,8.3033705,8.0975637,0,6,-3,3.6302731,0,-9,-9,2021,10,0,40,40,1,1,0,7.3545346,7.3545346,0,0,0,0,0,0,0,86,1,1,0,0,0,50,57,48,56,7,1,1,0,0,5,13,3,0,2849.5,-38970.031,0,0,0,0,0,2383.7046 +12294,15012,26786,26785,-9,-9,1,0,41,0,0,0,3,3,-9,1,4,0,0,0,6,3,-2.301724,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50,57,7,1,1,0,1,0,13,3,0,2849.5,-38970.031,0,0,0,0,0,2383.7046 +12294,15013,26787,-9,26786,-9,1,1,20,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1021.7755,0,3,-9,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,47,60,-9,-9,7,1,1,0,1,0,13,1,0,979,0,0,0,0,0,0,900.64301 +12295,15014,26788,-9,26789,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.65308,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,12,1,0,2004,130979.52,0,0,0,0,0,1054.2894 +12295,15014,26789,-9,-9,-9,1,0,32,1,1,0,3,3,-9,0,1,0,0,0,0,0,-899.56354,0,2,-9,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.53,40.76,-9,-9,5,1,1,1,1,5,12,1,0,2004,130979.52,0,0,0,0,0,1054.2894 +12296,15015,26790,-9,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,8.0518456,7.9999313,0,0,-1029.4915,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,2.2568371,0,0,1,1,0,0,7.9034452,59.49,38.73,-9,-9,10,1,1,0,0,0,6,3,1,468,188275.19,155866.61,73800.836,0,0,0,1892.097 +12297,15016,26791,26792,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,47,0,0,0,3,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0391183,0,50,47,33.07,44.65,7,1,1,0,0,0,11,1,1,412.5,-56822.473,0,0,0,0,0,1152.4436 +12297,15016,26792,26791,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,0,0,0,47,0,0,0,3,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7913499,0,33.07,44.65,50,47,3.333333333333333,1,1,0,0,3,11,1,1,412.5,-56822.473,0,0,0,0,0,1152.4436 +12298,15017,26793,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.4950714,8.6122742,0,0,0,-985.27222,0,3,3,2021,6,0,35,35,1,0,0,16.335381,16.335381,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,10,9,5,1,728,586484.75,259107.81,86298.766,0,0,0,2253.8884 +12299,15018,26794,26795,-9,-9,1,1,34,0,2,0,3,3,-9,0,4,8.2598314,7.7380738,0,10,5,32.13765,0,3,3,2021,10,0,30,45,1,1,0,12.455624,12.455624,0,0,0,0,0,0,0,0,1,1,0,7.3705187,0,50,57,57.65,56.13,7,2,3,0,0,9,4,3,1,649.66669,58726.473,0,64827.57,36949.086,0,0,2275.1921 +12299,15018,26795,26794,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,0,0,0,10,-5,36.705502,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.65,56.13,50,57,8.333333333333334,2,3,0,0,0,4,3,1,649.66669,58726.473,0,64827.57,36949.086,0,0,2275.1921 +12299,15018,26796,-9,26795,26794,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.28918,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,649.66669,58726.473,0,64827.57,36949.086,0,0,2275.1921 +12300,15019,26797,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,6.6844153,6.2335906,0,0,-1045.7916,0,-9,-9,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8618441,40.78,27.62,-9,-9,6.666666666666667,4,2,0,0,5,8,2,1,543,217856.56,150409.73,221396.2,0,0,0,1144.2487 +12301,15020,26798,26799,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,0,0,48,-1,29.112707,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9736519,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,0,13,3,1,1588,760322.63,334345.38,514315.97,0,0,0,3576.3887 +12301,15020,26799,26798,-9,-9,1,1,74,0,0,0,1,1,-9,0,5,0,8.2852716,8.0981617,48,1,113.05438,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4085736,8.2209435,57.06,57.76,57.16,56.15,10,1,1,0,0,5,13,3,1,1588,760322.63,334345.38,514315.97,0,0,0,3576.3887 +12302,15021,26800,26801,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.8182535,8.6919022,0,5,2,-78.432877,0,-9,-9,2021,11,0,35,45,1,2,0,25.106167,25.106167,.05,.05,0,0,0,0,0,0,0,0,0,4.9465494,0,48,57,51.83,57.2,7,1,1,0,0,1,2,5,1,1228.5,184638.38,51408.961,190235.06,155994.25,0,0,5468.1992 +12302,15021,26801,26800,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.5408211,8.680088,0,5,-2,56.303967,0,1,1,2021,12,0,58,48,1,0,0,9.9237194,9.9237194,.05,.05,0,0,0,0,0,0,0,0,0,.68174601,0,51.83,57.2,48,57,8.333333333333334,1,1,0,0,9,2,5,1,1228.5,184638.38,51408.961,190235.06,155994.25,0,0,5468.1992 +12303,15022,26802,-9,-9,-9,1,1,19,0,1,1,2,0,0,0,3,0,5.8952851,5.866601,0,0,-1113.4855,-9,2,1,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6227207,0,46.59,56.95,-9,-9,6.666666666666667,1,1,0,0,2,7,2,1,1619,-220349.73,0,0,0,0,0,787.2785 +12304,15023,26803,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.5093813,8.3065796,0,0,0,-1068.8596,-9,3,3,2021,15,5,43,0,1,5,0,12.627636,12.627636,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,6.666666666666667,1,1,0,0,13,7,5,0,2477,99513.406,4694.7861,0,0,0,0,1600.869 +12305,15024,26804,-9,-9,-9,1,0,21,0,1,0,1,1,-9,0,3,7.4905243,7.2643666,0,0,0,-964.42529,0,-9,-9,2021,10,0,30,0,1,0,0,8.7502909,8.7502909,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.92,56.78,-9,-9,5,1,1,0,0,6,13,3,0,4551,-25492.141,52221.406,0,0,0,0,1913.7521 +12305,15024,26805,-9,26804,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-811.57825,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,4551,-25492.141,52221.406,0,0,0,0,1913.7521 +12306,15025,26806,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,7.2458782,7.0256505,0,0,0,-1146.2657,0,3,1,2021,16,3,16,0,1,3,0,8.402853,8.402853,0,0,0,0,0,0,0,0,1,1,0,0,0,38.72,44.37,-9,-9,3.333333333333333,4,5,0,0,7,2,2,1,720.5,-67854.195,-63036.828,0,0,0,0,1061.8762 +12306,15025,26807,-9,26806,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.3787,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,5,-9,0,0,2,2,1,720.5,-67854.195,-63036.828,0,0,0,0,1061.8762 +12306,15026,26808,-9,26806,-9,1,1,18,0,1,1,2,0,0,0,5,0,0,0,0,0,-983.75177,-9,1,-9,2021,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.061889328,0,45.75,62.87,-9,-9,10,4,5,0,0,0,2,1,1,258,64099.543,0,0,0,0,0,-92.841103 +12307,15027,26809,-9,-9,-9,1,1,60,0,0,0,3,3,-9,1,3,0,4.0446787,3.7813096,0,0,-1003.8533,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5096774,4.2588983,50,49,-9,-9,7,1,1,0,0,0,10,2,0,790,579103,141329.56,222631.53,0,0,0,1158.6761 +12308,15028,26810,26811,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,7.7767887,7.5426636,0,2,3,52.433159,0,2,1,2021,8,0,24,15,1,0,0,9.9216709,9.9216709,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,49.06,58.64,6.666666666666667,1,1,0,0,3,9,3,0,714,70123.719,-55049.781,0,0,0,0,1595.9941 +12308,15028,26811,26810,-9,-9,1,0,22,0,0,0,1,1,-9,0,4,7.614831,7.8916683,0,2,-3,27.907606,0,-9,-9,2021,8,0,34,36,1,0,0,8.6762152,8.6762152,0,0,0,0,0,0,0,0,0,0,0,0,0,49.06,58.64,38.88,61.85,6.666666666666667,1,1,0,0,1,9,3,0,714,70123.719,-55049.781,0,0,0,0,1595.9941 +12309,15029,26812,-9,26815,26813,1,1,0,3,3,1,3,0,-9,0,4,0,0,0,0,0,-903.17651,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26813,26815,-9,-9,1,1,27,3,3,0,3,3,-9,0,3,0,0,0,3,2,0,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46.08,57.2,33.77,58.85,5,1,1,1,1,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26814,-9,26815,26813,1,0,1,3,3,1,3,0,-9,0,4,0,0,0,0,0,-953.5882,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26815,26813,-9,-9,1,0,25,3,3,0,3,3,-9,0,3,0,0,0,3,-2,0,0,-9,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.77,58.85,46.08,57.2,10,1,1,1,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12309,15029,26816,-9,26815,26813,1,0,2,3,3,1,3,0,-9,0,4,0,0,0,0,0,-889.16284,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,1,0,363.39999,17528.596,0,0,0,3354.7681,0,926.13837 +12310,15030,26817,26819,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,0,0,0,6,-3,71.370171,0,1,1,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.5987787,0,48.87,58.55,53.78,48.41,8.333333333333334,1,1,0,0,8,7,5,1,543.33331,590776.94,199141.63,510332.31,192709.03,0,0,3705.012 +12310,15030,26818,-9,26817,26819,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.6516,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,543.33331,590776.94,199141.63,510332.31,192709.03,0,0,3705.012 +12310,15030,26819,26817,-9,-9,1,1,49,0,1,0,1,1,-9,0,3,8.7781944,9.3201027,7.4149437,6,3,-16.416176,0,-9,-9,2021,7,0,46,43,1,0,0,19.385178,19.385178,.05,.05,0,0,0,0,0,0,1,1,0,5.5715528,7.5701976,53.78,48.41,48.87,58.55,8.333333333333334,1,1,0,0,9,7,5,1,543.33331,590776.94,199141.63,510332.31,192709.03,0,0,3705.012 +12311,15031,26820,26821,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.3823342,6.5417986,9,5,-2.7592337,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0589614,6.1300964,58.49,50.2,59.29,25.74,8.333333333333334,1,1,0,0,0,5,2,1,489.5,273957.75,171756.13,58158.188,0,0,0,1963.1218 +12311,15031,26821,26820,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,4.8868151,5.2495022,9,-5,18.278107,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7040606,0,59.29,25.74,58.49,50.2,10,1,1,0,0,0,5,2,1,489.5,273957.75,171756.13,58158.188,0,0,0,1963.1218 +12312,15032,26822,26823,-9,-9,1,0,57,0,1,0,2,2,-9,1,2,6.3566871,7.1268015,6.7374649,3,-21,-55.213036,0,2,3,2021,25,9,8,0,1,9,0,7.7917819,7.7917819,0,0,0,0,0,0,0,118,1,1,0,0,6.6056924,34.62,35.98,54,46,0,1,1,0,0,7,11,2,1,264,598921.69,475697,145542.5,0,4774.7993,0,1436.5173 +12312,15032,26823,26822,-9,-9,1,1,78,0,1,0,1,1,-9,0,3,0,0,0,3,21,98.185333,0,2,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,34.62,35.98,8,1,1,0,0,0,11,2,1,264,598921.69,475697,145542.5,0,4774.7993,0,1436.5173 +12312,15033,26824,-9,26822,-9,1,0,34,0,1,0,2,2,-9,0,4,0,0,0,0,0,-992.11151,0,2,-9,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,39.34,48.15,-9,-9,6.666666666666667,1,1,1,0,3,11,1,1,741.5,-10875.971,0,0,0,0,0,413.64465 +12312,15033,26825,-9,26824,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.63239,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,1,1,741.5,-10875.971,0,0,0,0,0,413.64465 +12313,15034,26826,-9,-9,-9,1,0,86,0,0,0,1,1,-9,0,3,0,8.003624,7.8239074,0,0,-1121.5469,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0837073,7.8211098,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,779,620357.25,230277.41,248861.16,0,0,0,2591.9563 +12314,15035,26827,26829,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,0,0,0,10,-10,78.797836,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,52,55,7,2,3,0,0,0,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15035,26828,-9,26827,26829,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1080.2372,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.97,57.26,-9,-9,5,2,3,0,0,0,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15035,26829,26827,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,7.2418222,7.2259474,0,23,10,-37.617924,0,2,2,2021,9,0,40,63,1,1,0,4.2166929,4.2166929,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,48,56,8,2,3,0,0,10,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15035,26830,-9,26827,26829,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.0056,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,759.25,62007.273,-12324.504,0,0,0,0,1294.0148 +12314,15036,26831,-9,26827,26829,1,1,20,0,2,0,2,2,1,0,4,0,0,0,0,0,-1041.757,-9,2,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,1,0,0,8,1,0,1994,0,0,0,0,0,0,361.15146 +12314,15037,26832,-9,26827,26829,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-947.03467,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,2,3,0,0,0,8,2,0,3361,0,0,0,0,0,0,0 +12315,15038,26833,26834,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.5705156,8.5569992,0,13,-3,30.741196,0,2,1,2021,15,3,36,42,1,3,0,29.557859,29.557859,.05,.05,0,0,0,0,0,0,1,1,0,3.5637038,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,8,6,5,1,556,103394.02,179843.31,209254.73,140104.66,0,0,4385.9624 +12315,15038,26834,26833,-9,-9,1,1,39,1,1,0,2,2,-9,0,4,8.2043819,8.7548943,0,13,3,-9.1589756,0,2,2,2021,6,0,37,37,1,0,0,15.665936,15.665936,.05,.05,0,0,0,0,0,0,1,1,0,.10769568,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,10,6,5,1,556,103394.02,179843.31,209254.73,140104.66,0,0,4385.9624 +12315,15038,26835,-9,26833,26834,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0493,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,5,1,556,103394.02,179843.31,209254.73,140104.66,0,0,4385.9624 +12316,15039,26836,26837,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.9202433,8.995409,0,6,0,29.897898,0,-9,-9,2021,11,0,35,50,1,0,0,28.012903,28.012903,.05,.05,0,0,0,0,0,0,0,0,0,3.8009474,0,51.14,52.08,52.88,56.68,6.666666666666667,1,1,0,0,5,4,5,1,651,1509247.8,939790.06,545453.13,131434.72,0,0,8616.002 +12316,15039,26837,26836,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.3374844,9.9617348,0,6,0,98.05899,0,2,2,2021,3,0,32,28,1,0,0,50.886787,50.886787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.88,56.68,51.14,52.08,8.333333333333334,1,1,0,0,10,4,5,1,651,1509247.8,939790.06,545453.13,131434.72,0,0,8616.002 +12317,15040,26838,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1005.0479,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.99,49.19,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,538,899452.25,22848.133,589453.5,0,0,0,695.26312 +12318,15041,26839,-9,26841,26840,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.5225,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,5,1,1215,304781.66,44453.758,256729.11,32700.576,0,0,3765.9832 +12318,15041,26840,26841,-9,-9,1,1,34,1,1,0,2,2,-9,0,4,8.4360628,8.3913498,0,6,-2,21.690563,0,-9,-9,2021,10,2,3,2,1,2,0,216.01845,216.01845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.22,61.48,30.08,59.22,6.666666666666667,1,1,0,0,5,2,5,1,1215,304781.66,44453.758,256729.11,32700.576,0,0,3765.9832 +12318,15041,26841,26840,-9,-9,1,0,36,1,1,0,1,1,-9,0,4,8.8162432,8.5171471,0,6,2,-94.035683,0,2,3,2021,13,2,13,13,1,2,0,63.404793,63.404793,.05,.05,0,0,0,0,0,0,1,1,0,.95656306,0,30.08,59.22,39.22,61.48,8.333333333333334,1,1,0,0,11,2,5,1,1215,304781.66,44453.758,256729.11,32700.576,0,0,3765.9832 +12319,15042,26842,-9,26844,26843,1,0,19,0,0,1,2,0,-9,1,3,0,0,0,0,0,-1017.0893,-9,2,2,2021,33,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9373376,0,15.77,52.25,-9,-9,3.333333333333333,1,1,0,0,0,11,1,1,1788,-22422.16,0,0,0,0,0,416.05145 +12319,15043,26843,26844,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.3310251,7.0450196,0,10,8,-7.3591418,0,2,2,2021,11,0,45,40,1,0,0,3.7502005,3.7502005,0,0,.05,0,0,0,0,0,1,1,0,7.4262805,0,56.18,51.02,55.19,54.26,8.333333333333334,1,1,0,0,11,11,3,1,795,448388.31,76822.156,281391.53,0,0,0,1716.1079 +12319,15043,26844,26843,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,6.537498,6.8697953,0,10,-8,99.09948,0,2,2,2021,11,0,36,40,1,0,0,2.3148987,2.3148987,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,56.18,51.02,6.666666666666667,1,1,0,0,11,11,3,1,795,448388.31,76822.156,281391.53,0,0,0,1716.1079 +12320,15044,26845,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.388175,7.5394411,0,0,-1079.9487,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5853028,7.6788182,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,124,487816.44,247062.44,177965.22,0,0,0,1887.282 +12321,15045,26846,26847,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.3970423,8.3652582,0,39,2,155.78252,0,3,3,2021,9,1,38,38,1,1,0,12.339402,12.339402,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,32.21,51.83,57.2,8.333333333333334,1,1,0,0,13,2,4,1,566.5,795900,561328.81,135152.7,0,0,0,2594.5791 +12321,15045,26847,26846,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7593155,7.8379202,0,38,-2,1.2620056,0,1,3,2021,12,0,32,32,1,0,0,9.8989649,9.8989649,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,32.21,8.333333333333334,1,1,0,0,12,2,4,1,566.5,795900,561328.81,135152.7,0,0,0,2594.5791 +12322,15046,26848,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.4882607,6.6332402,0,0,-962.0564,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4905553,61.26,48.89,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,297,827345.69,98551.68,665227.31,0,0,0,2033.1831 +12323,15047,26849,26850,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.5819654,6.7757573,56,1,227.58971,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8267732,57.9,35.78,59.29,46.97,8.333333333333334,1,1,0,0,0,11,3,1,1497,1025362.2,768402.19,186199.09,0,0,0,3784.1108 +12323,15047,26850,26849,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.693254,7.7451177,56,-1,-99.264565,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7699456,59.29,46.97,57.9,35.78,8.333333333333334,1,1,0,0,0,11,3,1,1497,1025362.2,768402.19,186199.09,0,0,0,3784.1108 +12324,15048,26851,26852,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,7.8644876,7.5824842,0,3,-2,-109.95783,0,-9,-9,2021,12,1,46,45,1,1,0,7.0338302,7.0338302,0,0,0,0,0,0,0,0,0,0,0,0,0,42.89,42.49,29.47,61.08,8.333333333333334,1,1,0,0,3,5,4,0,693,46041.375,77472.328,91214.844,64843.328,5180.8096,0,2369.803 +12324,15048,26852,26851,-9,-9,1,1,22,0,0,0,2,2,-9,0,5,7.9537139,8.1963587,0,3,2,20.683437,0,2,2,2021,16,5,45,50,1,5,0,9.2691193,9.2691193,.05,.05,0,0,0,0,0,2,0,0,0,0,0,29.47,61.08,42.89,42.49,10,1,1,0,0,6,5,4,0,693,46041.375,77472.328,91214.844,64843.328,5180.8096,0,2369.803 +12325,15049,26853,26856,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,8.5388622,8.5758448,0,3,-7,-10.161986,0,2,2,2021,12,3,39,10,1,3,0,15.114984,15.114984,.05,.05,0,0,0,0,0,0,1,1,0,.66345322,0,43.48,60.97,51.67,60.18,8.333333333333334,1,1,0,0,4,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12325,15049,26854,-9,26853,26856,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-969.61639,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12325,15049,26855,-9,26853,26856,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1008.3419,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12325,15049,26856,26853,-9,-9,1,1,39,2,2,0,2,2,-9,0,5,8.6168299,9.0687647,0,3,7,41.066414,0,-9,-9,2021,9,0,40,45,1,0,0,17.487307,17.487307,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,60.18,43.48,60.97,8.333333333333334,1,1,0,0,8,11,5,1,555,587868.25,215991.81,304646.5,21119.508,1591.9353,0,4665.8643 +12326,15050,26857,26858,-9,-9,1,0,62,0,0,0,3,3,-9,0,3,7.9497952,8.2972145,0,7,-2,144.34024,0,3,3,2021,6,0,40,40,1,0,0,13.084556,13.084556,0,0,0,0,0,0,0,0,0,0,0,0,0,53.67,51.01,48.71,51.81,6.666666666666667,1,1,0,0,8,6,5,1,794,831687.13,202410.81,284369.06,60630.641,0,0,4325.1738 +12326,15050,26858,26857,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.9997854,9.129941,0,7,2,-109.59834,0,3,2,2021,8,0,50,60,1,0,0,18.535278,18.535278,0,0,.05,1,0,0,0,0,0,0,0,0,0,48.71,51.81,53.67,51.01,8.333333333333334,1,1,0,0,8,6,5,1,794,831687.13,202410.81,284369.06,60630.641,0,0,4325.1738 +12327,15051,26859,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.5863228,8.5020704,8.8736391,0,0,-911.22552,0,2,2,2021,10,0,12,16,1,0,0,6.2433648,6.2433648,.05,.05,0,0,0,0,0,0,0,0,0,0,8.7347984,44.19,58.01,-9,-9,8.333333333333334,1,1,0,0,12,10,5,1,367,-23919.779,32761.297,0,0,0,1460.89,2680.5564 +12328,15052,26860,26861,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.4799967,8.2927809,0,4,5,190.0056,0,-9,-9,2021,11,0,43,45,1,2,0,10.78413,10.78413,0,0,0,0,0,0,0,0,0,0,0,1.5448825,0,48,56,54.1,59.11,7,1,1,0,0,5,1,5,1,989.5,166356.88,28192.744,42743.637,43360.934,0,0,4766.3799 +12328,15052,26861,26860,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.9404211,9.1235523,0,4,-5,-90.078705,0,-9,-9,2021,7,0,61,57,1,0,0,15.362724,15.362724,.05,.05,0,0,0,0,0,0,0,0,0,.1190786,0,54.1,59.11,48,56,8.333333333333334,1,1,0,0,9,1,5,1,989.5,166356.88,28192.744,42743.637,43360.934,0,0,4766.3799 +12329,15053,26862,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.8623114,9.2820187,0,0,0,-953.4101,0,2,3,2021,7,0,37,59,1,0,0,25.983912,25.983912,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,48.72,-9,-9,6.666666666666667,4,2,0,0,11,4,5,1,1477,37335.969,-135362.95,145784.27,81259.977,12710.155,357.68173,2829.7339 +12330,15054,26863,-9,-9,-9,1,0,35,1,2,0,2,2,-9,0,4,0,5.6045961,5.7446814,0,0,-866.06348,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5098171,0,48.87,58.55,-9,-9,0,1,1,1,1,3,5,2,1,1769.5,-94300.461,0,0,0,6971.7056,0,721.2583 +12330,15054,26864,-9,26863,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.00641,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,2,1,1769.5,-94300.461,0,0,0,6971.7056,0,721.2583 +12331,15055,26865,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.7799911,7.207181,0,0,-1025.5793,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4765961,7.114203,58.47,44.69,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,302,368836.69,57202.941,339318.31,0,0,0,1988.2516 +12332,15056,26866,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,4,0,6.3231668,6.0296655,0,0,-1031.7418,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.83069855,0,0,1,1,0,5.2693491,6.3468938,59.53,56.44,-9,-9,10,1,1,0,0,0,10,2,1,343,559700.94,68868.578,114920.4,0,0,0,1153.0782 +12333,15057,26867,26868,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.6694226,7.981338,0,1,3,73.813881,-9,2,2,2021,8,1,38,0,1,1,0,9.4320698,9.4320698,0,0,0,0,0,0,0,0,0,0,0,1.0330538,0,46.98,59.35,48,58,8.333333333333334,4,2,0,0,8,8,3,0,1942,243144.34,-21950.813,0,0,0,0,1139.3069 +12333,15057,26868,26867,-9,-9,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,1,-3,-90.03318,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,48,58,46.98,59.35,7,1,1,0,0,0,8,3,0,1942,243144.34,-21950.813,0,0,0,0,1139.3069 +12334,15058,26869,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.1812015,6.5397434,0,0,-909.36945,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6378376,6.1464295,57.76,54.51,-9,-9,8.333333333333334,1,1,0,0,10,13,2,1,2042,0,0,0,0,0,0,1622.9005 +12335,15059,26870,26871,-9,-9,1,0,57,0,0,0,1,1,-9,0,1,0,6.8813481,6.6138573,34,-1,96.282608,0,3,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1312828,48.45,23.16,62.39,56.71,6.666666666666667,1,1,0,0,6,2,4,0,872,1415983.9,985248.63,338917.13,0,0,0,2073.5955 +12335,15059,26871,26870,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,8.4938049,8.3020382,0,34,1,66.666473,-9,-9,-9,2021,6,0,38,0,1,0,0,15.165288,15.165288,.05,.05,0,0,0,0,0,88,1,1,0,0,0,62.39,56.71,48.45,23.16,8.333333333333334,1,1,0,0,7,2,4,0,872,1415983.9,985248.63,338917.13,0,0,0,2073.5955 +12336,15060,26872,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,3.5052729,3.5239193,0,0,-905.45984,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7996373,3.1623788,56.06,38.05,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,266,445732.69,143497.75,424622.97,0,0,0,1038.6958 +12337,15061,26873,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,8.4587612,8.5642595,0,0,0,-1067.6951,0,2,2,2021,12,1,38,38,1,1,0,14.173913,14.173913,.05,.05,0,0,0,0,0,2,0,0,0,3.3182304,0,48.57,45.28,-9,-9,8.333333333333334,1,1,0,0,8,8,5,1,709,213685.66,-10581.943,307115.03,73819.258,0,0,1779.8202 +12338,15062,26874,26875,-9,-9,1,0,64,0,0,0,2,2,-9,1,2,0,0,0,10,1,91.288574,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.31,38.98,50,49,8.333333333333334,1,1,1,0,2,13,2,1,797,446467.31,269143.94,140153.25,0,0,0,1256.084 +12338,15062,26875,26874,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,6.4703918,6.7461581,0,10,-1,103.43255,-9,-9,-9,2021,10,0,50,0,1,1,0,1.5787449,1.5787449,.05,.05,0,0,0,0,0,0,1,1,0,1.0757444,0,50,49,36.31,38.98,7,1,1,0,0,1,13,2,1,797,446467.31,269143.94,140153.25,0,0,0,1256.084 +12339,15063,26876,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.14397,5.4362617,0,0,-824.71472,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4356809,4.8729038,58.5,44.67,-9,-9,10,1,1,0,0,0,5,2,1,2889,241145.83,26538.021,42604.488,0,0,0,1844.6637 +12340,15064,26877,26878,-9,-9,1,0,45,0,0,0,3,3,-9,0,4,7.3211446,7.6865816,0,9,-3,-27.588737,0,-9,3,2021,9,0,30,30,1,0,0,6.0565605,6.0565605,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,54.79,55.86,10,1,1,0,0,6,12,4,0,384.5,406307.94,336361.94,105407.15,54528.852,17248.973,876.25323,1999.8911 +12340,15064,26878,26877,-9,-9,1,1,48,0,0,0,3,3,-9,0,4,8.2341127,8.1751642,0,9,3,-74.582733,-9,-9,-9,2021,6,0,42,0,1,0,0,11.006082,11.006082,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,52.82,53.97,0,1,1,0,0,11,12,4,0,384.5,406307.94,336361.94,105407.15,54528.852,17248.973,876.25323,1999.8911 +12341,15065,26879,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.4753666,8.2774315,0,0,0,-960.61255,0,-9,2,2021,17,5,37,35,1,5,0,15.789991,15.789991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.06,49.02,-9,-9,5,1,1,0,0,10,4,4,1,1266,193182.19,120481.77,0,0,0,0,2597.6006 +12341,15066,26880,-9,-9,26879,1,0,23,0,0,0,1,1,-9,0,4,7.9951081,7.8555431,0,0,0,-932.70197,0,1,2,2021,11,0,4,0,1,2,1,97.714256,97.714256,.05,.05,0,0,0,0,0,0,0,0,0,.0086052343,0,47,58,-9,-9,7,1,1,0,0,1,4,4,1,1442,-221952.69,6287.6563,0,0,0,0,1057.0911 +12342,15067,26881,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1038.0208,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.24,62.14,-9,-9,8.333333333333334,1,1,0,0,7,2,1,1,1087,36547.574,0,0,0,0,0,0 +12343,15068,26882,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-998.39935,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.36,50.02,-9,-9,8.333333333333334,3,4,0,0,0,2,1,0,544,75580.789,0,0,0,0,0,1544.6353 +12344,15069,26883,26884,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,6.5099864,6.4392052,6,-8,-34.313583,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4077873,41.58,16.41,68.57000000000001,41.34,8.333333333333334,1,1,0,0,0,5,2,1,1747,895263.25,475520,315146.94,0,0,0,2246.2771 +12344,15069,26884,26883,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,5.5696635,5.7596049,6,8,19.682463,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,6.0804977,68.57000000000001,41.34,41.58,16.41,10,1,1,0,0,0,5,2,1,1747,895263.25,475520,315146.94,0,0,0,2246.2771 +12344,15070,26885,-9,26884,26883,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1020.5442,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,2,1,803,-246915.06,0,0,0,0,0,0 +12345,15071,26886,26887,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.6341672,7.6983318,0,6,1,15.78756,0,3,2,2021,11,0,28,26,1,0,0,6.0790472,6.0790472,0,0,0,0,0,0,0,7,0,0,0,0,0,49.04,55.86,53,55,8.333333333333334,1,1,0,0,7,4,4,1,1317.5,480705.13,54341.84,314626,47184.422,3906.9268,0,2387.1143 +12345,15071,26887,26886,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3825665,8.1935825,0,6,-1,165.80144,0,-9,-9,2021,9,0,40,40,1,1,0,11.665176,11.665176,0,0,0,0,0,0,0,0,0,0,0,0,0,53,55,49.04,55.86,8,4,1,0,0,1,4,4,1,1317.5,480705.13,54341.84,314626,47184.422,3906.9268,0,2387.1143 +12346,15072,26888,26889,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,5.9511142,5.2739854,56,0,-37.306274,0,3,2,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,1.8197249,0,0,1,1,0,0,5.3884892,49.46,35.16,47.02,45.1,8.333333333333334,1,1,0,0,0,7,2,1,614,360713.88,-20841.441,273095.28,0,0,0,2199.3333 +12346,15072,26889,26888,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,0,0,6,0,-57.551678,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.02,45.1,49.46,35.16,10,1,1,0,0,0,7,2,1,614,360713.88,-20841.441,273095.28,0,0,0,2199.3333 +12347,15073,26890,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,7.1485915,7.1078825,0,0,-1010.3978,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.245729,6.9345903,46.91,41.66,-9,-9,6.666666666666667,1,1,0,0,0,10,2,1,1358,240678.31,165708.55,129526.15,0,7665.8291,0,773.19891 +12348,15074,26891,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,6.4528251,6.2240586,0,0,-987.8847,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4085026,6.3530555,36.34,26.89,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1421,1728924.8,914909.5,581858.31,0,0,0,1484.3767 +12349,15075,26892,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,4,0,7.4240446,7.5828242,0,0,-988.65686,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2507725,7.596014,57.41,46.64,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,1230,164217.63,67405.602,192157.73,0,0,0,2173.656 +12350,15076,26893,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.9984,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.87,31.31,-9,-9,10,1,1,0,0,0,4,1,1,1264,-36341.371,0,0,0,0,0,846.73187 +12351,15077,26894,26895,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,7.6905594,7.7566619,5.4933929,26,-2,-31.388273,0,-9,-9,2021,12,1,15,40,1,1,0,15.994729,15.994729,0,0,0,0,0,0,0,0,1,1,0,5.6790977,5.1916442,51.13,50.73,51.57,44.14,8.333333333333334,1,1,0,0,12,9,4,1,1091.5,2755145,870340.13,1056601.8,0,2999.7007,0,4361.7441 +12351,15077,26895,26894,-9,-9,1,1,74,0,0,0,2,2,-9,0,2,0,7.8419352,7.8553362,26,2,28.799051,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3241172,7.9566016,51.57,44.14,51.13,50.73,8.333333333333334,1,1,0,0,0,9,4,1,1091.5,2755145,870340.13,1056601.8,0,2999.7007,0,4361.7441 +12352,15078,26896,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.0038624,6.0618052,0,0,-1061.8262,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0279055,60.69,53.18,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,299,485226.63,144253.09,136028.84,0,0,0,1809.1887 +12353,15079,26897,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,7.2426963,7.3527164,0,0,-857.84631,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2550726,7.0012121,60.26,37,-9,-9,10,1,1,0,0,7,2,3,1,483,552670.56,113374.81,275874.91,0,0,0,400.88071 +12354,15080,26898,26899,-9,-9,1,0,56,0,1,0,2,2,-9,0,1,0,5.8900843,5.7353997,21,-8,-57.607742,0,2,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3531561,31.68,17,43.29,31.87,0,1,1,0,1,0,4,2,0,195.5,34467.332,-50165.863,0,0,0,0,2726.1963 +12354,15080,26899,26898,-9,-9,1,1,64,0,1,0,3,3,-9,0,2,0,6.7747436,7.1382675,21,8,42.17725,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,.05,0,0,0,0,27,1,1,0,6.4196916,6.7759719,43.29,31.87,31.68,17,1.666666666666667,1,1,0,0,7,4,2,0,195.5,34467.332,-50165.863,0,0,0,0,2726.1963 +12355,15081,26900,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1039.8414,0,3,3,2021,23,10,0,38,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.1321411,0,27.65,24.28,-9,-9,3.333333333333333,1,1,0,0,12,7,2,1,2606,76363.422,0,0,0,0,1466.6633,1500.9049 +12356,15082,26901,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.2718601,7.1936302,0,0,0,-1077.1302,0,-9,2,2021,10,1,30,30,1,1,0,5.632134,5.632134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.53,44.55,-9,-9,8.333333333333334,1,1,0,0,7,4,3,0,281,-86741.625,64800.898,0,0,0,0,1340.161 +12357,15083,26902,26903,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,0,0,10,2,-88.31485,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.2403045,0,53.37,52.37,55.11,47.63,8.333333333333334,1,1,0,0,2,7,4,1,3312,1396671.6,767244,709503.38,0,2355.9978,0,1758.0515 +12357,15083,26903,26902,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.752018,8.6075697,0,10,-2,72.542267,0,2,2,2021,14,2,38,42,1,2,0,16.016729,16.016729,0,0,0,0,0,0,0,0,0,0,0,3.8373382,0,55.11,47.63,53.37,52.37,8.333333333333334,1,1,0,0,9,7,4,1,3312,1396671.6,767244,709503.38,0,2355.9978,0,1758.0515 +12358,15084,26904,26905,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,8.1677065,7.9900551,0,9,-12,56.906467,0,2,2,2021,9,0,50,40,1,0,0,9.1555262,9.1555262,0,0,0,0,0,0,0,0,0,0,0,0,0,52.51,54.26,46.26,52.9,8.333333333333334,1,1,0,0,9,11,4,1,989.5,-94520.578,-43048.695,0,0,0,6796.2129,2027.9244 +12358,15084,26905,26904,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.9801617,7.2180052,0,9,12,-194.46103,0,2,2,2021,11,0,10,0,1,0,0,13.628563,13.628563,0,0,0,0,0,0,0,0,0,0,0,0,0,46.26,52.9,52.51,54.26,10,1,1,0,0,7,11,4,1,989.5,-94520.578,-43048.695,0,0,0,6796.2129,2027.9244 +12358,15085,26906,-9,26905,26904,1,1,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1052.9409,-9,3,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.14,53.66,-9,-9,6.666666666666667,1,1,0,0,3,11,1,1,160,-7014.1929,0,0,0,0,0,505.79025 +12359,15086,26907,-9,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,6.8891072,6.9880962,0,0,0,-964.46179,0,2,-9,2021,10,0,30,25,1,0,0,4.9972739,4.9972739,0,0,0,0,0,0,0,2,1,1,0,0,0,52,54.51,-9,-9,5,1,1,0,1,10,11,2,0,410,0,0,0,0,0,0,960.88342 +12360,15087,26908,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,5.8403158,5.7558112,0,0,-869.42926,0,2,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3479066,5.9612923,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,754,727382.19,176721.02,150265.02,0,0,0,1564.46 +12360,15088,26909,-9,26908,-9,1,1,24,0,0,0,1,1,0,0,5,0,0,0,0,0,-1018.7781,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.72680032,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,2,2,1,3714,-146106.98,0,0,0,0,0,-291.55093 +12361,15089,26910,26911,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.2611241,6.1635714,44,-2,-93.095306,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.3953049,6.2209592,48.81,59.91,62.49,55.09,8.333333333333334,1,1,0,0,5,9,2,1,1041.5,912011.88,107722.98,544167.56,0,0,0,1615.2502 +12361,15089,26911,26910,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,6.1019216,6.0990119,6,2,5.7911839,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,7.4078569,0,0,1,1,0,6.3406553,6.1595964,62.49,55.09,48.81,59.91,0,1,1,0,0,0,9,2,1,1041.5,912011.88,107722.98,544167.56,0,0,0,1615.2502 +12362,15090,26912,26913,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.1103377,7.2072382,0,31,1,14.182142,0,3,3,2021,8,0,35,24,1,0,0,3.9746115,3.9746115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,49.35,59.64,8.333333333333334,1,1,0,0,13,12,4,1,2355,487982.06,248737.28,145549.52,0,0,0,2309.5425 +12362,15090,26913,26912,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2829151,8.3241034,0,28,-1,75.912079,0,3,3,2021,11,0,70,70,1,0,0,6.6123605,6.6123605,0,0,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,55.96,49.93,8.333333333333334,1,1,0,0,13,12,4,1,2355,487982.06,248737.28,145549.52,0,0,0,2309.5425 +12363,15091,26914,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.8488917,7.8147774,0,0,-967.7077,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2010231,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,1849,639218,423149.31,199829.7,0,0,0,2872.2966 +12364,15092,26915,-9,26917,26918,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1077.2799,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.9604882,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12364,15092,26916,-9,26917,26918,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1012.7616,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12364,15092,26917,26918,-9,-9,1,0,54,0,2,0,2,2,-9,0,4,7.8876286,7.5219426,0,30,2,-78.64048,0,3,3,2021,10,0,30,18,1,0,0,9.6793289,9.6793289,.05,.05,0,0,0,0,0,0,1,1,0,.22172409,0,48.87,58.55,57.16,56.15,5,1,1,0,0,8,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12364,15092,26918,26917,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.2332478,8.4485731,0,30,-2,32.216984,0,2,3,2021,7,0,60,60,1,0,0,8.1160879,8.1160879,.05,.05,0,0,0,0,0,0,1,1,0,1.3144869,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,10,9,4,1,1031.75,459325.22,259025.47,155749.48,20067.469,0,0,2717.8604 +12365,15093,26919,26920,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.3745689,7.4122787,11,11,-83.586197,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6244664,53,46,57.16,56.15,8,1,1,0,0,2,13,3,1,555.5,240524.69,99706.227,64596.777,0,0,0,2447.5137 +12365,15093,26920,26919,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.3876061,4.2952614,11,-11,114.56998,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2711101,57.16,56.15,53,46,8.333333333333334,1,1,0,0,2,13,3,1,555.5,240524.69,99706.227,64596.777,0,0,0,2447.5137 +12366,15094,26921,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.3122425,6.2759557,0,0,-915.6908,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1877837,33.62,43.84,-9,-9,5,1,1,0,0,0,7,2,1,4242,175404,0,282308.97,0,0,0,1272.1379 +12367,15095,26922,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,6.7904835,6.7785506,0,0,-976.19684,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4582527,6.5546279,62.66,52.4,-9,-9,8.333333333333334,3,4,0,0,9,8,2,1,889,3509603.3,21440.5,1598785.9,0,0,0,490.20764 +12368,15096,26923,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,8.185214,8.2007389,0,0,0,-891.65436,0,2,3,2021,11,2,51,55,1,2,0,9.5967531,9.5967531,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,58.3,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,6439,256770.44,94816.188,0,0,0,0,1351.85 +12369,15097,26924,26925,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,6.0147052,6.160243,5,6,118.44048,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6684468,6.3263841,57.57,49.69,57.16,56.15,5,3,4,0,0,6,6,3,1,509.5,577386.38,348805.53,0,0,7896.3018,0,1596.2573 +12369,15097,26925,26924,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.0103159,7.9375362,0,5,-6,-8.7263756,0,3,3,2021,7,0,38,37,1,0,0,7.8577499,7.8577499,.05,.05,0,0,0,0,0,0,1,1,0,4.6962366,0,57.16,56.15,57.57,49.69,8.333333333333334,1,1,0,0,7,6,3,1,509.5,577386.38,348805.53,0,0,7896.3018,0,1596.2573 +12370,15098,26926,26929,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.3667803,8.3565512,0,19,-5,-151.14711,0,-9,-9,2021,8,0,40,55,1,0,0,14.383976,14.383976,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,14,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12370,15098,26927,-9,26929,26926,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1076.1901,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2147231,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12370,15098,26928,-9,26929,26926,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-970.71997,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12370,15098,26929,26926,-9,-9,1,0,54,0,2,0,2,2,-9,0,4,7.9109526,7.4949508,0,19,5,10.43376,0,2,1,2021,7,0,26,30,1,0,0,11.86131,11.86131,0,0,0,0,0,0,0,0,0,0,0,7.7281342,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,9,4,1,740.75,645011.88,237785.06,359427.41,38209.254,0,0,4529.314 +12371,15099,26930,26931,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.9775915,8.4114428,7.7569957,11,-7,103.58552,0,2,2,2021,7,0,36,36,1,0,0,10.168097,10.168097,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5449047,57.16,56.15,52.83,45.73,8.333333333333334,1,1,0,0,12,10,4,1,565.5,772029.25,516361.63,149072.48,0,1162.2407,1155.2941,2325.4456 +12371,15099,26931,26930,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,11,7,106.88522,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,52.83,45.73,57.16,56.15,10,1,1,0,0,8,10,4,1,565.5,772029.25,516361.63,149072.48,0,1162.2407,1155.2941,2325.4456 +12372,15100,26932,26933,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.4713116,5.9209428,8,-2,69.199379,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.83675057,6.2394352,61.09,31.59,60.45,46.42,8.333333333333334,1,1,0,0,12,5,2,1,660.5,735684.63,96879,391730.5,0,0,0,1304.2922 +12372,15100,26933,26932,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,0,0,8,2,38.404263,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,38.224545,0,0,1,1,0,1.2729183,0,60.45,46.42,61.09,31.59,10,1,1,0,0,10,5,2,1,660.5,735684.63,96879,391730.5,0,0,0,1304.2922 +12373,15101,26934,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,1,0,0,0,0,0,-913.99835,-9,3,2,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.64,15.97,-9,-9,1.666666666666667,1,1,0,1,0,7,1,0,3450,154430.97,0,0,0,0,8629.7178,1534.5393 +12374,15102,26935,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.6438031,7.4384217,0,0,-869.00037,0,1,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0426683,7.5783701,51.41,45.62,-9,-9,5,1,1,0,0,5,7,3,1,695,987510,514111.59,284775.47,0,0,0,1910.0819 +12375,15103,26936,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,2,8.3784399,8.4816694,0,0,0,-1087.6324,0,-9,2,2021,15,3,40,40,1,3,0,14.01759,14.01759,0,0,0,0,0,0,0,0,0,0,0,3.2364843,0,43.83,55.87,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,116,200922.36,0,0,0,0,0,980.43658 +12376,15104,26937,-9,-9,-9,1,0,38,0,3,0,3,3,-9,0,3,6.9876022,6.9280534,0,0,0,-1067.951,0,2,3,2021,29,10,25,12,1,10,0,6.2601862,6.2601862,0,0,0,0,0,0,0,14.5,1,1,0,0,0,18.2,56.57,-9,-9,5,1,1,0,0,3,13,2,0,130,-31696.945,0,0,0,0,0,2170.6182 +12377,15105,26938,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,7.6067696,7.2740183,0,0,-1014.3309,0,3,3,2021,20,9,0,0,4,9,0,0,0,0,0,0,1,0,24.282005,0,0,1,1,0,5.572681,7.0564623,41.28,27.39,-9,-9,3.333333333333333,1,1,0,0,2,12,3,1,2883,96526.227,0,0,0,0,0,1906.2881 +12378,15106,26939,-9,26941,26940,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0529,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,469.33334,451129.03,158507,458323.91,246456.59,2949.0151,10569.214,5540.6753 +12378,15106,26940,26941,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,8.6074915,8.1443453,0,9,7,-7.6652145,0,2,1,2021,9,0,40,55,1,0,0,19.983713,19.983713,.05,.05,0,0,0,0,0,2,1,1,0,2.1650853,0,51.47,53.17,58.75,48.57,8.333333333333334,1,1,0,0,8,10,5,1,469.33334,451129.03,158507,458323.91,246456.59,2949.0151,10569.214,5540.6753 +12378,15106,26941,26940,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,9.1515455,9.1768551,0,9,-7,17.271065,0,-9,-9,2021,11,2,39,33,1,2,0,23.526346,23.526346,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.75,48.57,51.47,53.17,8.333333333333334,1,1,0,0,10,10,5,1,469.33334,451129.03,158507,458323.91,246456.59,2949.0151,10569.214,5540.6753 +12379,15107,26942,26944,-9,-9,1,0,51,0,1,0,1,1,-9,1,4,0,0,0,24,-5,78.091942,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51.83,57.2,61.11,48.86,8.333333333333334,1,1,0,0,0,11,3,1,595.33331,147752.47,38668.273,131720.16,121457.38,11583.359,0,2370.6489 +12379,15107,26943,-9,26942,26944,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-960.18243,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,595.33331,147752.47,38668.273,131720.16,121457.38,11583.359,0,2370.6489 +12379,15107,26944,26942,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.4633169,8.284771,0,24,5,60.42424,0,2,1,2021,6,0,37,39,1,0,0,15.640886,15.640886,.05,.05,0,0,0,0,0,89,1,1,0,0,0,61.11,48.86,51.83,57.2,8.333333333333334,1,1,0,0,12,11,3,1,595.33331,147752.47,38668.273,131720.16,121457.38,11583.359,0,2370.6489 +12379,15108,26945,-9,26942,26944,1,1,22,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1017.0958,-9,1,1,2021,11,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4596002,0,47,59,-9,-9,7,1,1,0,0,0,11,1,1,532,-52215.781,0,0,0,0,0,882.53223 +12380,15109,26946,26947,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.1929679,7.428544,0,30,-3,-78.904732,0,2,2,2021,11,0,24,30,1,0,0,6.3006778,6.3006778,0,0,0,0,0,0,0,0,1,1,0,0,0,45.58,47.97,55.96,49.93,8.333333333333334,1,1,0,0,9,9,2,0,1012,396787.31,6229.7832,454980.34,103261.63,0,0,247.29051 +12380,15109,26947,26946,-9,-9,1,1,48,0,1,0,2,2,-9,0,3,0,0,0,30,3,-22.566406,0,2,2,2021,7,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,45.58,47.97,8.333333333333334,1,1,1,0,3,9,2,0,1012,396787.31,6229.7832,454980.34,103261.63,0,0,247.29051 +12380,15109,26948,-9,26946,26947,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-920.53931,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,2,0,1012,396787.31,6229.7832,454980.34,103261.63,0,0,247.29051 +12381,15110,26949,26950,-9,-9,1,0,52,0,0,0,1,1,-9,1,1,0,5.0336738,5.0581079,24,4,-6.7499948,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8035364,0,42.34,18.5,48,51,3.333333333333333,2,3,0,0,5,2,3,1,1184.5,523729.59,300562.84,222434.88,29634.129,8753.5332,0,2028.0408 +12381,15110,26950,26949,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,7.8472285,7.8135972,0,24,-4,-134.62653,0,3,3,2021,11,0,39,40,1,2,0,8.8815107,8.8815107,.05,.05,0,0,0,0,0,42,1,1,0,0,0,48,51,42.34,18.5,7,2,3,0,0,13,2,3,1,1184.5,523729.59,300562.84,222434.88,29634.129,8753.5332,0,2028.0408 +12381,15111,26951,-9,26949,26950,1,0,22,0,0,0,1,1,1,0,2,8.0566931,8.1768341,0,0,0,-1003.9039,-9,1,2,2021,19,7,37,0,1,7,1,12.538646,12.538646,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.91,48.45,-9,-9,5,2,3,0,0,1,2,4,1,424,255694.81,58665.852,0,0,0,0,1757.0897 +12381,15112,26952,-9,26949,26950,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-958.82086,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.34,62.12,-9,-9,6.666666666666667,2,3,0,0,1,2,1,1,1202,4957.2749,0,0,0,0,0,0 +12382,15113,26953,26954,-9,-9,1,0,39,0,0,0,2,2,-9,0,4,7.9804072,8.124053,0,3,-1,-53.114014,0,-9,-9,2021,10,0,40,40,1,1,0,6.7938967,6.7938967,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,56,46.63,59.72,8,4,1,0,0,1,12,5,1,689.5,367076.19,75869.078,226857.25,110834.41,0,0,3853.6992 +12382,15113,26954,26953,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.0085831,8.8484535,0,3,1,-59.637569,0,2,3,2021,14,3,50,55,1,3,0,20.29188,20.29188,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.63,59.72,49,56,5,1,1,0,0,7,12,5,1,689.5,367076.19,75869.078,226857.25,110834.41,0,0,3853.6992 +12383,15114,26955,26956,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.520586,8.2158947,6,13,208.36026,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.6174419,8.028944,59.64,29.24,52,45,8.333333333333334,1,1,0,0,0,4,3,1,450.5,1266790.8,336533.31,418853.44,0,0,0,2419.2263 +12383,15114,26956,26955,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,4.6305103,4.8894196,6,-13,43.032509,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6958251,52,45,59.64,29.24,8,1,1,0,0,0,4,3,1,450.5,1266790.8,336533.31,418853.44,0,0,0,2419.2263 +12384,15115,26957,26960,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.2181244,8.3958454,0,6,-2,-110.83047,0,2,2,2021,19,7,43,38,1,7,0,8.9289551,8.9289551,0,0,0,0,0,0,0,0,1,1,0,0,0,29.63,55.43,51.24,58.84,3.333333333333333,1,1,0,0,7,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12384,15115,26958,-9,26957,26960,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.97589,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12384,15115,26959,-9,26957,26960,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.54626,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12384,15115,26960,26957,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,7.8840971,7.9996786,0,6,2,69.81517,0,2,-9,2021,12,0,40,0,1,0,0,8.7677536,8.7677536,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,29.63,55.43,8.333333333333334,1,1,0,0,5,2,4,1,963,45527.305,-22605.324,151705.52,134520.27,10306.78,0,2880.8154 +12385,15116,26961,-9,-9,-9,1,0,44,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1022.4131,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.75,19.7,-9,-9,6.666666666666667,2,3,0,0,0,4,2,0,790,-100418.01,0,0,0,0,0,1227.9487 +12386,15117,26962,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,5.7231479,5.9068389,0,0,-942.98035,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8073487,5.915854,54.58,14.54,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1203,92420.359,49669.656,0,0,9799.1875,0,664.24554 +12387,15118,26963,26964,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,7.1143365,6.9049101,55,9,42.078712,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4519019,6.9399581,50.75,39.21,48.71,51.81,6.666666666666667,1,1,0,0,0,1,2,1,465.5,121901.26,47778.379,134421.06,0,0,0,2849.8789 +12387,15118,26964,26963,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,0,0,54,0,-132.97563,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6710076,0,48.71,51.81,50.75,39.21,8.333333333333334,1,1,0,0,3,1,2,1,465.5,121901.26,47778.379,134421.06,0,0,0,2849.8789 +12388,15119,26965,26966,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.4375143,8.5747795,0,7,-5,-12.796181,0,-9,-9,2021,6,0,40,40,1,0,0,16.367933,16.367933,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,54,55,10,3,4,0,0,9,8,5,0,492,387922.88,223097.75,589585.13,47477.734,0,0,3430.873 +12388,15119,26966,26965,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,8.2115822,8.5084066,0,28,5,-94.103592,0,1,1,2021,2,0,41,40,1,0,0,12.280774,12.280774,0,0,0,0,0,0,0,0,0,0,0,0,0,54,55,60.12,54.8,8.333333333333334,3,4,0,0,9,8,5,0,492,387922.88,223097.75,589585.13,47477.734,0,0,3430.873 +12388,15120,26967,-9,26966,26965,1,0,24,0,0,0,2,2,-9,0,4,7.8534584,7.6420941,0,0,0,-1012.6694,0,2,1,2021,14,2,35,19,1,2,1,6.3548398,6.3548398,0,0,0,0,0,0,0,0,0,0,0,0,0,29.95,63.61,-9,-9,3.333333333333333,3,4,0,0,5,8,3,0,208,85698.477,-46483.84,0,0,0,0,598.90198 +12389,15121,26968,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,7.3619909,7.2988796,0,0,0,-1037.9928,0,-9,-9,2021,8,0,19,0,1,0,0,9.354043,9.354043,.05,.05,0,0,0,0,0,0,0,0,0,.88150537,0,48.77,60.16,-9,-9,6.666666666666667,1,1,0,0,5,4,3,0,536,-165830.63,2332.4214,0,0,3680.8127,0,477.26767 +12390,15122,26969,26970,-9,-9,1,1,61,0,1,0,1,1,-9,0,3,0,8.1542892,7.806304,31,9,-158.08121,0,2,2,2021,5,0,0,45,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.9393349,8.1661396,55.96,49.93,55.23,32.92,10,1,1,0,0,9,13,3,1,503.5,1310980.3,941460.13,278158.84,0,0,0,2270.251 +12390,15122,26970,26969,-9,-9,1,0,52,0,1,0,2,2,-9,0,2,7.1177897,7.009913,0,31,0,71.399452,0,2,2,2021,8,0,22,22,1,0,0,7.8102789,7.8102789,0,0,0,0,0,0,0,2,1,1,0,0,0,55.23,32.92,55.96,49.93,8.333333333333334,1,1,0,0,10,13,3,1,503.5,1310980.3,941460.13,278158.84,0,0,0,2270.251 +12390,15123,26971,-9,26972,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-982.65192,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,386.5,-77017.227,0,0,0,0,0,944.1145 +12390,15123,26972,-9,26970,26969,1,0,26,0,1,0,2,2,1,0,2,0,6.2381344,6.3719668,0,0,-931.53729,-9,2,1,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0844264,0,40.88,41.16,-9,-9,8.333333333333334,1,1,0,0,1,13,2,1,386.5,-77017.227,0,0,0,0,0,944.1145 +12391,15124,26973,-9,26975,26974,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.5635,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,0,494,269695.81,184551.17,174043.16,94996.086,0,-62.819096,3292.812 +12391,15124,26974,26975,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,8.2551441,8.0288124,0,7,-6,55.087105,0,-9,-9,2021,12,0,40,40,1,0,0,8.4546738,8.4546738,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.69,48.95,44.41,43.96,3.333333333333333,1,1,0,0,6,7,4,0,494,269695.81,184551.17,174043.16,94996.086,0,-62.819096,3292.812 +12391,15124,26975,26974,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.9343967,8.1512747,6.5568552,7,6,169.38977,0,-9,3,2021,13,1,35,35,1,1,0,7.1415696,7.1415696,0,0,0,0,0,0,0,0,1,1,0,6.9034252,0,44.41,43.96,31.69,48.95,8.333333333333334,1,1,0,0,7,7,4,0,494,269695.81,184551.17,174043.16,94996.086,0,-62.819096,3292.812 +12391,15125,26976,-9,26975,26974,1,0,20,0,1,0,2,2,-9,0,2,7.1508069,6.8604074,0,0,0,-1287.2896,0,2,2,2021,12,0,17,0,1,0,1,6.0869837,6.0869837,0,0,0,0,0,0,0,0,1,1,0,0,0,18.73,52.8,-9,-9,0,1,1,0,0,0,7,2,0,83,92799.43,0,0,0,0,726.37152,425.70773 +12392,15126,26977,-9,26979,26978,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-999.901,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,701.66669,490102.06,15677.267,459794.59,142577.69,14210.917,0,5141.123 +12392,15126,26978,26979,-9,-9,1,1,42,0,1,0,1,1,-9,0,3,8.8436413,8.9453306,0,6,6,-14.16779,0,-9,-9,2021,9,0,49,49,1,0,0,15.76156,15.76156,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,33.64,53.56,6.666666666666667,1,1,0,0,11,11,5,1,701.66669,490102.06,15677.267,459794.59,142577.69,14210.917,0,5141.123 +12392,15126,26979,26978,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,8.8845558,8.8272133,0,6,-6,-37.209187,0,2,1,2021,23,10,53,40,1,10,0,14.513927,14.513927,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.64,53.56,43.71,56.91,6.666666666666667,1,1,0,0,11,11,5,1,701.66669,490102.06,15677.267,459794.59,142577.69,14210.917,0,5141.123 +12393,15127,26980,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1026.0825,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,125.94981,0,0,1,1,0,0,0,68.42,9.200000000000001,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,780,152163.25,0,0,0,0,0,1216.6781 +12393,15128,26981,-9,26980,-9,1,1,33,0,0,0,1,1,-9,0,3,8.4070511,8.1754751,0,0,0,-923.5191,0,2,2,2021,23,7,50,70,1,7,0,12.956877,12.956877,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.34,56.62,-9,-9,10,3,4,0,0,5,8,5,0,1147,157437.73,119133.2,300182.69,193613.19,0,0,1884.4063 +12393,15128,26982,-9,-9,26981,1,0,15,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1096.1769,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,3,4,-9,0,0,8,5,0,1147,157437.73,119133.2,300182.69,193613.19,0,0,1884.4063 +12394,15129,26983,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-991.34619,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0693073,0,47.2,34.16,-9,-9,6.666666666666667,1,1,0,0,4,7,1,1,342,-26514.328,77216.758,0,0,0,0,-750.87476 +12395,15130,26984,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.9110436,7.9541616,0,0,-1073.7456,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.71631,7.9711576,58.47,44.69,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,314,934268.5,265087.44,482409.25,0,13519.078,0,2401.7749 +12396,15131,26985,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,2,7.9010696,7.9557805,0,0,0,-906.46454,0,2,3,2021,15,2,44,45,1,2,0,6.9676065,6.9676065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.92,45.61,-9,-9,3.333333333333333,1,1,0,0,10,10,4,0,153,-87061.578,22646.502,0,0,0,0,1202.5131 +12397,15132,26986,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-971.45709,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.95,52.58,-9,-9,5,1,1,0,0,0,12,1,0,1002,-220644.53,0,0,0,0,0,1773.1393 +12398,15133,26987,-9,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,8.0966873,8.4095068,5.8157797,0,0,-1015.7255,0,2,2,2021,6,0,25,25,1,0,0,18.253216,18.253216,.05,.05,0,0,0,0,0,0,1,1,0,0,5.6181521,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,1079,278415.81,68659.242,0,0,0,0,1812.1364 +12399,15134,26988,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6452985,7.4848804,0,0,0,-952.14227,0,2,2,2021,11,0,38,40,1,0,0,5.3884678,5.3884678,.05,.05,0,0,0,0,0,0,1,0,1,0,0,51.49,42.78,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,3343,-38977.586,9040.6553,0,0,0,1557.1439,899.01508 +12399,15135,26989,-9,26988,-9,1,0,24,0,0,0,1,1,-9,0,3,7.1723919,7.4371395,0,0,0,-1040.3096,0,2,-9,2021,10,0,20,0,1,0,1,6.3487492,6.3487492,0,0,0,0,0,0,0,0,1,0,1,.066918291,0,35.9,60.41,-9,-9,6.666666666666667,1,1,0,0,2,9,3,0,1110,-184440.27,0,0,0,39347.539,0,688.92078 +12400,15136,26990,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.3629613,7.1636095,0,0,-1132.6273,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8957763,7.4908552,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,418,2487035.8,957594.94,769362.25,0,0,0,2304.7102 +12401,15137,26991,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1047.3857,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,8,12,1,1,234,107691.44,0,0,0,0,0,353.20255 +12402,15138,26992,26993,-9,-9,1,0,51,0,0,0,1,1,-9,1,1,0,0,0,11,0,-17.76626,0,-9,2,2021,31,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,20.84,23.2,48.28,60.18,3.333333333333333,1,1,0,1,0,13,3,1,1258.5,861592.38,491052.25,243628.03,0,0,0,1734.8831 +12402,15138,26993,26992,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,7.5967574,7.8303676,0,11,0,-12.166677,0,3,2,2021,12,3,60,55,1,3,0,4.0189581,4.0189581,0,0,0,0,0,0,0,14.5,1,0,1,.89314842,0,48.28,60.18,20.84,23.2,3.333333333333333,1,1,0,1,12,13,3,1,1258.5,861592.38,491052.25,243628.03,0,0,0,1734.8831 +12402,15139,26994,-9,26992,26993,1,0,21,0,0,0,2,2,-9,1,3,0,0,0,0,0,-971.60553,0,1,1,2021,23,8,0,12,3,8,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,41.45,54.15,-9,-9,5,1,1,0,0,2,13,1,1,425,-148826.45,0,0,0,261.59631,0,1163.1112 +12403,15140,26995,-9,26996,26997,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.2919,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,710,1456825.6,1284369.3,304768.41,147580.81,2331.5513,0,3322.3679 +12403,15140,26996,26997,-9,-9,1,0,44,0,3,0,1,1,-9,0,3,0,7.3416224,7.3651581,19,-1,-3.4482172,0,3,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.1160202,0,52,54.51,43.03,53.23,8.333333333333334,1,1,0,0,0,9,4,1,710,1456825.6,1284369.3,304768.41,147580.81,2331.5513,0,3322.3679 +12403,15140,26997,26996,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,9.0384197,9.0501423,0,19,1,-116.44244,0,2,1,2021,8,0,40,40,1,0,0,29.034353,29.034353,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.03,53.23,52,54.51,5,1,1,0,0,9,9,4,1,710,1456825.6,1284369.3,304768.41,147580.81,2331.5513,0,3322.3679 +12404,15141,26998,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.0003409,7.1154528,0,0,-1139.4419,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7477721,7.0849719,49,47,-9,-9,7,1,1,0,0,0,2,3,1,1227,41222.605,244997.23,202674.25,0,0,0,714.69958 +12405,15142,26999,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.9302316,7.7287545,0,0,-1034.5125,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.2330713,47.52,47.13,-9,-9,10,1,1,0,0,0,9,4,1,389,2333415.5,156671.39,687481.63,0,0,0,1745.5343 +12406,15143,27000,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.9329777,8.859271,0,0,0,-1129.8673,0,3,2,2021,12,0,39,39,1,0,0,17.71558,17.71558,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.95,64.54000000000001,-9,-9,3.333333333333333,1,1,0,0,11,12,5,1,403,402112.94,188749.72,160504.84,26337.77,0,27502.871,2410.5054 +12407,15144,27001,27002,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.4938755,9.5730686,0,12,-3,45.455452,0,-9,-9,2021,9,0,40,42,1,0,0,32.723286,32.723286,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,49.58,55.59,52.15,32.92,8.333333333333334,1,1,0,0,13,10,5,1,447,488706.38,111442.16,315491.44,212728.84,0,0,5059.1245 +12407,15144,27002,27001,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.1387482,7.5493045,5.5241399,36,3,-249.31618,0,-9,2,2021,11,2,11,10,1,2,0,15.44225,15.44225,0,0,.05,0,0,0,0,0,0,0,0,0,5.9509873,52.15,32.92,49.58,55.59,10,1,1,0,0,11,10,5,1,447,488706.38,111442.16,315491.44,212728.84,0,0,5059.1245 +12408,15145,27003,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-979.01001,0,3,-9,2021,12,4,0,0,4,4,0,0,0,0,0,0,1,0,13.916503,0,0,1,1,0,0,0,46.7,20.01,-9,-9,3.333333333333333,1,1,0,0,6,2,1,0,482,122672.99,0,0,0,0,0,1976.4836 +12409,15146,27004,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.915781,7.5581884,0,0,0,-997.15686,0,-9,2,2021,12,0,34,34,1,0,0,7.3771591,7.3771591,.05,.05,0,0,0,0,.35463774,0,0,0,0,0,0,35.24,56.7,-9,-9,5,1,1,0,0,6,12,3,0,953,44054.598,-8396.252,91036.594,0,0,0,1355.5154 +12409,15147,27005,-9,27004,-9,1,0,24,0,0,0,1,1,-9,0,4,8.40662,8.5397348,0,0,0,-1009.8577,0,1,-9,2021,8,0,35,0,1,0,1,12.149961,12.149961,0,0,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,6.666666666666667,1,1,0,0,0,12,4,0,1754,-71427.406,0,0,0,0,0,1994.3489 +12410,15148,27006,-9,27008,27009,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-926.64752,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12410,15148,27007,-9,27008,27009,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-999.48688,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12410,15148,27008,27009,-9,-9,1,0,34,1,2,0,2,2,-9,0,5,8.0153885,8.0337667,0,4,-18,-61.38258,0,-9,-9,2021,12,0,36,24,1,0,0,12.326459,12.326459,.05,.05,0,0,0,0,0,0,1,1,0,7.1736054,0,39.66,61.49,47.99,57.75,8.333333333333334,1,1,0,0,7,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12410,15148,27009,27008,-9,-9,1,1,52,1,2,0,2,2,-9,0,5,8.2747564,7.9283609,0,4,18,128.04428,0,2,1,2021,12,1,40,50,1,1,0,12.730845,12.730845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.99,57.75,39.66,61.49,8.333333333333334,1,1,0,0,12,2,4,1,966.75,127447.95,10558.224,161013.72,31926.609,0,6387.9844,3724.6833 +12411,15149,27010,-9,27013,27011,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-876.39612,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27011,27013,-9,-9,1,1,38,1,3,0,1,1,-9,0,3,8.4790277,8.3525133,0,6,1,7.8411107,0,-9,-9,2021,18,7,42,37,1,7,0,12.555107,12.555107,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.07,53.97,34.89,55.63,6.666666666666667,1,1,0,0,7,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27012,-9,27013,27011,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-925.88947,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27013,27011,-9,-9,1,0,37,1,3,0,1,1,-9,0,3,7.8984733,7.779356,0,6,-1,-49.178322,0,2,3,2021,22,10,16,16,1,10,0,16.764347,16.764347,0,0,0,0,0,0,0,0,1,1,0,0,0,34.89,55.63,47.07,53.97,3.333333333333333,1,1,0,0,7,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12411,15149,27014,-9,27013,27011,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1067.2278,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,653.20001,204480.27,133353.88,287576.06,226530.38,6858.4199,0,3141.8367 +12412,15150,27015,27016,-9,-9,1,0,50,0,0,0,3,3,-9,0,4,6.941967,7.3615155,0,6,0,90.041,0,-9,-9,2021,12,0,26,20,1,0,0,4.8477979,4.8477979,0,0,0,0,0,0,0,0,0,0,0,0,0,38.98,44.11,48.48,47.99,5,1,1,0,0,9,11,3,1,588.5,-7237.7803,0,0,0,0,0,1987.2463 +12412,15150,27016,27015,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.6407695,7.8814464,0,6,0,30.064707,0,-9,-9,2021,12,0,40,45,1,0,0,7.7698326,7.7698326,0,0,0,0,0,0,0,0,0,0,0,0,0,48.48,47.99,38.98,44.11,8.333333333333334,1,1,0,0,9,11,3,1,588.5,-7237.7803,0,0,0,0,0,1987.2463 +12412,15151,27017,-9,27015,27016,1,0,23,0,0,0,2,2,-9,0,4,7.8775072,7.724422,0,0,0,-968.61792,-9,3,3,2021,11,0,36,0,1,2,1,8.5653057,8.5653057,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,1,1,0,0,1,11,3,1,3564,-197936.55,-10705.462,0,0,4817.478,0,1295.6201 +12413,15152,27018,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,7.5237193,7.3840432,0,0,0,-991.93445,0,3,3,2021,10,0,20,18,1,0,0,8.4802437,8.4802437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,4,5,0,0,9,8,3,1,165,365090.28,14682.221,176596.02,0,0,0,524.62579 +12414,15153,27019,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.9038448,5.4842696,0,0,-1025.2188,-9,2,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,72.830444,0,0,1,1,0,5.8353066,6.2133961,56.01,34.94,-9,-9,10,1,1,0,0,0,9,2,1,1266,119999.18,-15174.734,0,0,0,0,278.06326 +12415,15154,27020,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,5,9.1068392,8.9645252,0,0,0,-1035.9739,0,-9,-9,2021,11,1,44,37,1,1,0,19.286161,19.286161,.05,.05,0,0,0,0,0,0,0,0,0,9.8933697,0,49.25,61.25,-9,-9,8.333333333333334,1,1,0,0,8,9,5,1,150,944326.06,366675.22,252243.81,12907.43,0,0,40140.977 +12416,15155,27021,27022,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.4539909,8.407052,50,2,-55.469082,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7528296,8.5338469,56.44,52.37,58.3,52.91,8.333333333333334,1,1,0,0,0,12,4,1,2192.5,1272072.3,751706.38,389591.31,0,7630.7275,0,4590.8262 +12416,15155,27022,27021,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.4605474,7.4423041,50,-2,-21.361271,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6686172,7.6206889,58.3,52.91,56.44,52.37,10,1,1,0,0,0,12,4,1,2192.5,1272072.3,751706.38,389591.31,0,7630.7275,0,4590.8262 +12417,15156,27023,27024,-9,-9,1,1,35,2,6,0,2,2,-9,0,4,0,0,0,7,6,0,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.93,54.76,68.03,40.23,5,1,1,1,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27024,27023,-9,-9,1,0,29,2,6,0,2,2,-9,0,4,0,0,0,7,-6,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,68.03,40.23,44.93,54.76,10,1,1,0,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27025,-9,27024,27023,1,0,8,2,6,1,3,0,-9,0,4,0,0,0,0,0,-901.961,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27026,-9,27024,27023,1,0,11,2,6,1,3,0,-9,0,4,0,0,0,0,0,-1228.4363,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27027,-9,27024,27023,1,0,4,2,6,1,3,0,-9,0,4,0,0,0,0,0,-979.67059,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27028,-9,27024,27023,1,0,10,2,6,1,3,0,-9,0,4,0,0,0,0,0,-970.07953,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27029,-9,27024,27023,1,0,0,2,6,1,3,0,-9,0,4,0,0,0,0,0,-875.71094,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12417,15156,27030,-9,27024,27023,1,1,2,2,6,1,3,0,-9,0,4,0,0,0,0,0,-893.0697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,1,0,1529.5,-43832.336,0,0,0,0,0,2170.8989 +12418,15157,27031,27032,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,7.8753018,7.8963094,0,16,2,-32.603535,0,2,-9,2021,11,0,30,30,1,0,0,9.631815,9.631815,0,0,0,0,0,0,0,0,0,0,0,0,0,41.12,37.78,42.72,45.33,5,4,2,0,0,14,8,4,0,484,629611.25,172692.19,523524.19,39459.082,0,0,3255.4043 +12418,15157,27032,27031,-9,-9,1,1,49,0,0,0,1,1,-9,0,2,8.3523607,8.6881065,0,16,-2,77.606682,0,2,-9,2021,12,0,48,38,1,0,0,11.201336,11.201336,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.72,45.33,41.12,37.78,3.333333333333333,4,2,0,0,15,8,4,0,484,629611.25,172692.19,523524.19,39459.082,0,0,3255.4043 +12419,15158,27033,27034,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,8,-4,-70.830521,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1702327,0,59.71,50.89,54.2,57.49,8.333333333333334,1,1,0,0,0,10,3,1,1093,835502.25,451245.66,449142.69,0,0,0,1353.5708 +12419,15158,27034,27033,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,7.4445543,7.5988665,8,4,-79.59285,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8335328,7.7642479,54.2,57.49,59.71,50.89,8.333333333333334,1,1,0,0,0,10,3,1,1093,835502.25,451245.66,449142.69,0,0,0,1353.5708 +12420,15159,27035,27036,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.523684,7.3423162,48,14,-135.86615,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,6.9231329,52.64,38.41,13.82,37.14,5,1,1,0,0,0,1,2,1,517,971957,394824.19,172053.84,0,0,0,1923.4614 +12420,15159,27036,27035,-9,-9,1,0,65,0,0,0,3,3,-9,0,1,0,0,0,48,-14,-61.524837,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,33.877464,0,0,1,1,0,0,0,13.82,37.14,52.64,38.41,0,1,1,0,0,0,1,2,1,517,971957,394824.19,172053.84,0,0,0,1923.4614 +12421,15160,27037,-9,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,0,0,-895.80139,0,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2311203,0,42,40,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,2125,0,0,0,0,0,0,1451.3138 +12422,15161,27038,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.7958937,7.9132929,0,0,-1127.2075,0,2,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7981863,7.873807,58.15,52.91,-9,-9,8.333333333333334,2,3,0,0,5,8,3,1,1469,563391.88,498302.72,325217.81,0,0,0,2434.9092 +12423,15162,27039,27040,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,6.9134965,7.0877447,23,-3,-193.47501,0,1,1,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6978784,7.1494961,52.94,41.91,58.89,48.6,8.333333333333334,1,1,0,0,6,10,3,1,1275,1275820.1,719062.5,352035.38,0,0,0,2243.2939 +12423,15162,27040,27039,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.9917765,7.4837399,16,3,-74.844963,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5297227,7.8552022,58.89,48.6,52.94,41.91,8.333333333333334,1,1,0,0,0,10,3,1,1275,1275820.1,719062.5,352035.38,0,0,0,2243.2939 +12424,15163,27041,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3192959,8.2989998,0,0,0,-1038.8136,0,-9,-9,2021,6,0,40,40,1,0,0,11.851976,11.851976,0,0,0,0,0,0,0,0,0,0,0,.10678163,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,7,13,4,0,4885,18256.334,0,34056.027,0,0,0,2077.0635 +12425,15164,27042,-9,27043,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-979.59039,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,1,664.5,45537.984,-31746.125,0,0,0,1593.0198,1112.226 +12425,15164,27043,-9,-9,-9,1,0,30,1,1,0,2,2,-9,0,2,7.5303988,7.6703959,0,0,0,-1009.4045,-9,1,2,2021,20,8,37,0,1,8,0,6.535655,6.535655,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.82,51.63,-9,-9,5,1,1,0,0,14,7,3,1,664.5,45537.984,-31746.125,0,0,0,1593.0198,1112.226 +12426,15165,27044,27045,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9007502,7.8181419,5.8230443,36,-5,-14.53971,0,2,2,2021,19,9,37,0,1,9,0,7.7425032,7.7425032,0,0,0,0,0,0,0,0,0,0,0,0,5.668581,46.9,56.66,48.25,45.62,8.333333333333334,1,1,0,0,13,7,3,1,858.5,2968786.8,1544573.9,650882.69,0,0,2254.5078,3208.6423 +12426,15165,27045,27044,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,6.7419672,6.7066889,12,5,42.98542,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.1670914,6.8285022,48.25,45.62,46.9,56.66,8.333333333333334,1,1,0,0,12,7,3,1,858.5,2968786.8,1544573.9,650882.69,0,0,2254.5078,3208.6423 +12427,15166,27046,27047,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,9,-3,-4.7673693,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,24.313278,0,0,1,1,0,7.1083121,0,37.2,22.33,59.56,32.49,3.333333333333333,1,1,0,0,0,5,3,1,1290,1130524.6,1011129.4,281639.13,0,1487.4849,0,3533.2637 +12427,15166,27047,27046,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,8.1348124,7.9847078,9,3,-93.64032,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.7326279,8.4354429,59.56,32.49,37.2,22.33,8.333333333333334,1,1,0,0,1,5,3,1,1290,1130524.6,1011129.4,281639.13,0,1487.4849,0,3533.2637 +12428,15167,27048,27049,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,12,8,-6.7030096,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,2.9362161,0,36.75,46.68,38.33,49.84,5,1,1,0,0,12,8,2,1,360,1023176.7,361501.13,497250.91,0,0,0,825.9021 +12428,15167,27049,27048,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.0266447,7.0841298,0,41,-8,34.906036,0,3,3,2021,19,7,17,16,1,7,0,7.6739745,7.6739745,0,0,0,0,0,0,0,0,1,1,0,2.5943103,0,38.33,49.84,36.75,46.68,6.666666666666667,1,1,0,0,12,8,2,1,360,1023176.7,361501.13,497250.91,0,0,0,825.9021 +12429,15168,27050,27051,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,9.0924654,9.0340061,6.3487954,7,-7,-130.78918,0,3,3,2021,13,2,60,60,1,2,0,16.360052,16.360052,0,0,0,0,0,0,0,0,1,1,0,1.4410892,6.6600451,53.98,34.81,64.47,51.45,6.666666666666667,1,1,0,0,8,10,5,1,345.5,5620599,2670368,1177769.8,28163.082,0,0,5868.7139 +12429,15168,27051,27050,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.335578,7.8775849,7,7,10.17903,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,0,8.4817753,64.47,51.45,53.98,34.81,8.333333333333334,1,1,0,0,3,10,5,1,345.5,5620599,2670368,1177769.8,28163.082,0,0,5868.7139 +12430,15169,27052,-9,27053,27054,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1096.505,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,3,0,354.66666,377094.75,37926.738,258793.36,45304.227,2351.0034,5709.5342,1240.5509 +12430,15169,27053,27054,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,6.7872143,6.9530811,0,15,-1,85.974792,0,3,3,2021,12,1,40,45,1,1,0,2.4118733,2.4118733,0,0,0,0,0,0,0,0,1,1,0,0,0,47.68,55.12,40.37,39.95,8.333333333333334,1,1,0,1,10,9,3,0,354.66666,377094.75,37926.738,258793.36,45304.227,2351.0034,5709.5342,1240.5509 +12430,15169,27054,27053,-9,-9,1,1,48,0,1,0,2,2,-9,0,2,7.9529848,7.4558687,0,13,1,-64.55983,0,2,2,2021,19,7,48,45,1,7,0,5.065424,5.065424,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,40.37,39.95,47.68,55.12,3.333333333333333,1,1,0,0,8,9,3,0,354.66666,377094.75,37926.738,258793.36,45304.227,2351.0034,5709.5342,1240.5509 +12431,15170,27055,27056,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.3075075,8.2083797,11,15,169.85619,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4548512,8.3081541,61.85,47.26,58.32,50.22,10,1,1,0,0,0,9,3,1,1619,1450536.9,761696.44,324369.03,0,0,0,3006.9551 +12431,15170,27056,27055,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,0,0,0,11,-15,40.574642,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.3000195,0,58.32,50.22,61.85,47.26,8.333333333333334,1,1,0,0,5,9,3,1,1619,1450536.9,761696.44,324369.03,0,0,0,3006.9551 +12432,15171,27057,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.5647826,7.8093805,5.0293159,0,0,-942.40247,0,2,2,2021,12,0,30,30,1,0,0,7.8738179,7.8738179,.05,.05,0,0,0,0,0,0,0,0,0,0,5.1995325,39.99,30.49,-9,-9,5,1,1,0,0,10,2,3,0,757,122976.69,72276.391,0,0,0,0,378.78979 +12433,15172,27058,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,8.4587564,8.3273678,0,0,0,-1049.7725,0,1,1,2021,11,0,35,35,1,0,0,12.898958,12.898958,.05,.05,0,0,0,0,0,0,1,1,0,3.5624588,0,50.82,57.78,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,1079,71579.289,150753.03,0,0,0,2373.4783,1031.813 +12434,15173,27059,-9,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,7.4014645,7.5860953,0,0,0,-881.46631,-9,-9,-9,2021,10,0,39,0,1,1,0,4.5270514,4.5270514,0,0,.05,0,0,0,0,0,0,0,0,.10242206,0,52,48,-9,-9,7,1,1,0,0,5,4,3,1,1249,759721.19,51132.195,345132.16,0,53089.129,0,695.98621 +12435,15174,27060,27061,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.0956907,8.1578798,45,2,212.20766,0,2,2,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5419455,8.1722565,54.02,40.03,58.15,52.91,10,1,1,0,0,0,6,5,1,2136.5,2636622,1625958.8,926134.63,0,0,0,5072.4741 +12435,15174,27061,27060,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.3384953,8.1100912,45,-2,-65.689835,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.4454937,8.0374537,58.15,52.91,54.02,40.03,10,1,1,0,0,5,6,5,1,2136.5,2636622,1625958.8,926134.63,0,0,0,5072.4741 +12436,15175,27062,27063,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.39114,8.4280691,7.9246469,1,-8,-5.8075833,-9,-9,-9,2021,5,1,14,0,1,1,0,11.944201,11.944201,0,0,0,0,0,0,0,0,0,0,0,3.3374126,7.9608746,42.44,57.54,35.8,59.5,8.333333333333334,1,1,0,0,1,1,5,1,789,1547442.3,1251960.6,178284.69,0,-1624.9563,0,3621.1084 +12436,15175,27063,27062,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,8.4299459,7.9681911,1,8,-20.080355,-9,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5904918,7.8898134,35.8,59.5,42.44,57.54,8.333333333333334,1,1,0,0,0,1,5,1,789,1547442.3,1251960.6,178284.69,0,-1624.9563,0,3621.1084 +12437,15176,27064,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,8.6703501,8.7062855,0,0,0,-1007.4827,0,1,1,2021,21,10,37,38,1,10,0,20.921581,20.921581,.05,.05,0,0,0,0,0,7,1,1,0,0,0,38.39,40.89,-9,-9,3.333333333333333,4,2,0,0,13,9,5,1,2370,1034537.4,869060,220758.64,0,20437.387,0,2095.9138 +12438,15177,27065,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.3550396,8.4038258,0,0,0,-956.42072,0,3,2,2021,11,0,37,37,1,0,0,12.814757,12.814757,0,0,0,0,0,0,0,0,0,0,0,0,0,38.34,62.12,-9,-9,3.333333333333333,1,1,0,1,10,8,5,1,1067,76745.5,0,0,0,0,0,1304.4249 +12438,15178,27066,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.6502533,8.6340113,0,0,0,-1030.9493,0,2,2,2021,8,0,79,45,1,0,0,6.9546504,6.9546504,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,8,5,1,307,8605.4111,84255.492,81158.234,44971.809,5142.6216,2937.4028,1390.446 +12439,15179,27067,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1024.2374,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.63,45.52,-9,-9,0,2,3,0,0,0,5,1,0,634,-5239.4551,0,0,0,0,0,-58.940075 +12440,15180,27068,27069,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.523119,9.5075016,0,7,2,-133.81975,0,2,2,2021,10,0,55,45,1,1,0,26.796753,26.796753,.05,.05,0,0,0,0,0,0,0,0,0,2.8166835,0,51,56,51.24,58.84,7,1,1,0,0,1,8,5,1,419,750408.5,421854.88,476363.59,269227.09,2597.4409,0,6479.7192 +12440,15180,27069,27068,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,9.1983252,8.8037815,0,7,-2,32.502335,-9,2,2,2021,9,2,65,0,1,2,0,19.508272,19.508272,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,51,56,8.333333333333334,1,1,0,0,9,8,5,1,419,750408.5,421854.88,476363.59,269227.09,2597.4409,0,6479.7192 +12441,15181,27070,27071,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6794577,8.7507238,0,11,1,26.615808,0,2,1,2021,12,2,45,40,1,2,0,14.58707,14.58707,.05,.05,0,0,0,0,0,0,0,0,0,7.1717114,0,52.88,56.68,0,70.90000000000001,8.333333333333334,1,1,0,0,12,5,5,1,591,728480,494444.31,148605,0,5503.2896,0,8581.916 +12441,15181,27071,27070,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,9.8297291,9.742754,0,11,-1,-13.777695,0,-9,-9,2021,33,11,45,42,1,11,0,39.783115,39.783115,.05,.05,0,0,0,0,0,0,0,0,0,0,0,0,70.90000000000001,52.88,56.68,1.666666666666667,1,1,0,0,12,5,5,1,591,728480,494444.31,148605,0,5503.2896,0,8581.916 +12441,15182,27072,-9,27071,27070,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-971.48944,-9,1,2,2021,26,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,29.37,60.83,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,890,-84810.172,0,0,0,0,0,0 +12442,15183,27073,27074,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,6.3180609,6.4831905,54,-1,92.046883,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0047464,6.3688936,59.78,35.9,55.36,30.31,8.333333333333334,1,1,0,0,0,10,3,1,240.5,708398.13,332085.19,287963.44,0,0,0,2949.2896 +12442,15183,27074,27073,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,8.129961,7.9577565,54,1,101.27815,0,-9,-9,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8903093,7.8199229,55.36,30.31,59.78,35.9,1.666666666666667,1,1,0,0,0,10,3,1,240.5,708398.13,332085.19,287963.44,0,0,0,2949.2896 +12443,15184,27075,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.7759151,8.4879103,8.2996264,0,0,-958.07257,0,2,1,2021,9,0,24,14,1,0,0,13.972854,13.972854,.05,.05,0,0,0,0,0,0,0,0,0,8.1817837,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,515,624181.06,44936.906,416479.72,7171.3325,0,0,2307.325 +12444,15185,27076,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,1,0,4.7915249,5.2885675,0,0,-1073.8297,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,2.6750715,0,24.492979,0,1,1,0,3.8535528,4.7770481,41.56,22.16,-9,-9,6.666666666666667,1,1,0,0,5,4,2,1,1234,199424.56,67200.414,0,0,0,324.28281,1357.3323 +12445,15186,27077,27080,-9,-9,1,1,59,0,2,0,3,3,-9,0,5,7.8469281,7.7113738,0,19,10,-135.09059,0,-9,-9,2021,6,0,36,36,1,0,0,7.3490572,7.3490572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,18.99,61.6,10,1,1,0,0,12,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12445,15186,27078,-9,27080,27077,1,0,16,0,2,1,3,0,-9,0,5,0,0,0,0,0,-991.23431,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,0,0,0,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12445,15186,27079,-9,27080,27077,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.11603,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12445,15186,27080,27077,-9,-9,1,0,49,0,2,0,3,3,-9,0,3,0,0,0,19,-10,57.38541,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3916936,0,18.99,61.6,62.39,56.71,8.333333333333334,1,1,0,0,0,9,2,1,484.25,509902.63,519920.47,192455.78,83342.305,14003.715,2309.6123,1317.0734 +12446,15187,27081,27082,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.4585857,8.6424084,0,4,1,23.271441,0,-9,-9,2021,12,0,45,45,1,0,0,11.888586,11.888586,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,29.57,58.13,8.333333333333334,1,1,0,0,11,9,5,1,772.5,51079.664,132819.34,0,0,0,628.58917,3735.8853 +12446,15187,27082,27081,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.3117609,8.499445,0,4,-1,68.739059,0,-9,-9,2021,16,4,38,38,1,4,0,14.668066,14.668066,0,0,0,0,0,0,0,0,0,0,0,0,0,29.57,58.13,54.96,53.17,6.666666666666667,1,1,0,0,5,9,5,1,772.5,51079.664,132819.34,0,0,0,628.58917,3735.8853 +12447,15188,27083,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,7.4523382,7.2676549,0,0,0,-1051.5487,0,3,2,2021,8,0,40,35,1,0,0,6.7131815,6.7131815,0,0,0,0,0,0,0,0,0,0,0,0,0,61.27,46.03,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,828,823172.25,453388.22,262755.13,0,11615.635,0,1458.7893 +12448,15189,27084,27085,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,9,-4,-34.55677,-9,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,29.803307,46.565987,277.02063,0,1,1,0,0,0,37.84,27.49,27.71,29.33,5,2,3,0,0,0,9,2,1,868.5,201887.5,115424.83,59940.469,0,0,0,1916.9246 +12448,15189,27085,27084,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,6.9627681,6.9991374,61,4,-32.735313,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.6801815,0,7,1,1,0,0,7.0155888,27.71,29.33,37.84,27.49,6.666666666666667,2,3,0,0,0,9,2,1,868.5,201887.5,115424.83,59940.469,0,0,0,1916.9246 +12449,15190,27086,-9,27087,27089,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-962.91351,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12449,15190,27087,27089,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.142417,8.2663565,0,6,-1,33.198235,0,-9,-9,2021,10,0,26,33,1,0,0,17.227482,17.227482,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,51.83,57.2,8.333333333333334,1,1,0,0,11,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12449,15190,27088,-9,27087,27089,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.58789,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12449,15190,27089,27087,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,9.1269999,9.1028633,0,6,1,50.44286,0,2,1,2021,12,1,45,43,1,1,0,25.366665,25.366665,.05,.05,0,0,0,0,0,0,1,1,0,3.878166,0,51.83,57.2,49.46,56.91,8.333333333333334,1,1,0,0,9,12,5,1,407.5,588488.5,243964.41,241077.53,0,0,0,4053.5063 +12450,15191,27090,27091,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,7.8403544,7.7922583,0,6,11,45.086468,0,2,1,2021,18,6,30,37,1,6,0,8.9495306,8.9495306,0,0,0,0,0,0,0,0,0,0,0,0,0,46.67,37.6,51,56,3.333333333333333,1,1,0,0,7,6,5,1,1198,322669.06,82452.063,154191.63,68488.188,0,0,3628.7705 +12450,15191,27091,27090,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.4293919,8.5241175,0,6,-11,-42.831512,0,2,1,2021,9,0,37,37,1,1,0,14.131819,14.131819,.05,.05,0,0,0,0,0,0,0,0,0,.78586781,0,51,56,46.67,37.6,8,1,1,0,0,1,6,5,1,1198,322669.06,82452.063,154191.63,68488.188,0,0,3628.7705 +12451,15192,27092,27094,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,0,0,0,14,-3,74.002884,-9,2,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,51,55,7,1,1,0,0,2,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27093,-9,27092,27094,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-962.10687,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27094,27092,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,5.7480636,5.7262597,0,14,3,-121.00459,-9,3,3,2021,9,0,40,0,1,1,0,1.1878747,1.1878747,0,0,0,0,0,0,0,0,1,1,0,0,0,51,55,49,55,8,1,1,0,0,11,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27095,-9,27092,27094,1,0,17,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1006.2631,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,-9,-9,8.333333333333334,2,3,0,0,0,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15192,27096,-9,27092,27094,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1050.4908,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,1,409.79999,66978.109,0,0,0,0,0,1131.8268 +12451,15193,27097,-9,27092,27094,1,1,19,0,2,1,2,0,-9,0,4,0,0,0,0,0,-978.11896,-9,2,2,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.82,56.44,-9,-9,5,2,3,0,0,2,5,1,1,326,-152780.17,0,0,0,0,0,-221.96732 +12452,15194,27098,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.3433738,6.2997055,0,0,-996.28699,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6824536,51,46,-9,-9,7,1,1,0,0,0,2,2,0,657,156864.81,83287.828,0,0,0,0,3168.813 +12453,15195,27099,27100,-9,-9,1,1,83,0,0,0,2,2,-9,0,1,0,8.1858072,8.2030973,59,7,-60.220932,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.9511163,8.2700891,46.46,14.25,44.17,48.41,6.666666666666667,1,1,0,0,0,6,5,1,495.5,1076744.1,141007.09,152571.41,0,0,0,4217.6768 +12453,15195,27100,27099,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.0430565,8.5819616,59,-7,-2.3120553,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.913424,8.3085918,44.17,48.41,46.46,14.25,8.333333333333334,1,1,0,0,0,6,5,1,495.5,1076744.1,141007.09,152571.41,0,0,0,4217.6768 +12454,15196,27101,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,0,0,0,0,0,-958.54022,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.36,16.34,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,505,-190335.8,9224.5,0,0,0,0,1462.1251 +12455,15197,27102,-9,27103,27105,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.76929,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12455,15197,27103,27105,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,6.9915819,7.0478482,0,11,2,-145.08429,0,2,2,2021,8,0,40,24,1,0,0,3.8823493,3.8823493,0,0,0,0,0,0,0,0,0,0,0,3.5280833,0,59.53,56.44,59.43,58.05,8.333333333333334,1,1,0,0,5,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12455,15197,27104,-9,27103,27105,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2161,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12455,15197,27105,27103,-9,-9,1,1,37,0,2,0,1,1,-9,0,5,9.6611414,9.5948448,0,11,-2,25.678215,0,-9,-9,2021,8,1,60,40,1,1,0,26.775908,26.775908,.05,.05,0,0,0,0,0,0,0,0,0,3.9700789,0,59.43,58.05,59.53,56.44,8.333333333333334,1,1,0,0,6,8,5,1,1093.5,395719.5,-64666.684,620605.31,357209.94,0,0,6080.6572 +12456,15198,27106,27107,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,47,-1,4.761838,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,55.56,46,8.333333333333334,1,1,0,0,6,13,2,1,939.5,477710.78,94876.18,119638.85,0,11216.982,0,2019.3132 +12456,15198,27107,27106,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,7.2140331,6.9718518,0,47,1,46.641369,0,3,3,2021,7,0,70,70,1,0,0,2.1199598,2.1199598,0,0,0,0,0,0,0,0,1,1,0,2.0886722,0,55.56,46,54.96,53.17,8.333333333333334,1,1,0,0,14,13,2,1,939.5,477710.78,94876.18,119638.85,0,11216.982,0,2019.3132 +12457,15199,27108,27110,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.7191563,8.9168406,0,29,0,-13.324012,0,2,2,2021,20,8,40,79,1,8,0,26.67473,26.67473,.05,.05,.05,0,0,0,0,0,1,1,0,3.8507824,0,40.94,58.35,43.6,53.51,6.666666666666667,1,1,0,0,9,5,5,1,613.66669,1077235.8,487596.09,346451.91,0,0,0,4591.6943 +12457,15199,27109,-9,27110,27108,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-910.88031,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,5,1,613.66669,1077235.8,487596.09,346451.91,0,0,0,4591.6943 +12457,15199,27110,27108,-9,-9,1,0,49,0,1,0,2,2,-9,0,2,8.3111296,8.7555618,0,30,0,-64.543465,0,2,3,2021,12,0,35,33,1,0,0,18.52919,18.52919,0,0,0,0,0,0,0,0,1,1,0,2.8234875,0,43.6,53.51,40.94,58.35,5,1,1,0,0,11,5,5,1,613.66669,1077235.8,487596.09,346451.91,0,0,0,4591.6943 +12457,15200,27111,-9,27110,27108,1,0,21,0,1,0,2,2,-9,0,4,7.7732487,8.1144133,0,0,0,-937.97107,0,2,2,2021,12,3,42,46,1,3,1,6.1669188,6.1669188,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.47,51.02,-9,-9,6.666666666666667,1,1,0,0,6,5,4,1,1311,-40745.324,-56432.941,0,0,0,590.72931,1232.2124 +12458,15201,27112,27114,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,8.8650589,8.8911161,0,10,0,-131.41357,0,-9,-9,2021,8,0,42,43,1,0,0,17.920038,17.920038,.05,.05,0,0,0,0,0,0,0,0,0,8.6020985,0,54.2,57.49,57.92,51.82,8.333333333333334,2,3,0,0,6,8,5,1,606,1024685.7,233468.41,892994.75,442038.44,0,0,7799.8569 +12458,15201,27113,-9,27112,27114,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-940.72217,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,5,1,606,1024685.7,233468.41,892994.75,442038.44,0,0,7799.8569 +12458,15201,27114,27112,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,9.3780413,9.1022778,0,15,0,99.648392,0,2,2,2021,8,0,42,42,1,0,0,35.049072,35.049072,.05,.05,0,0,0,0,0,0,0,0,0,5.9584646,0,57.92,51.82,54.2,57.49,8.333333333333334,2,3,0,0,9,8,5,1,606,1024685.7,233468.41,892994.75,442038.44,0,0,7799.8569 +12459,15202,27115,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,8.1539583,8.1088486,0,0,0,-971.88873,0,3,3,2021,6,0,34,46,1,0,0,14.787879,14.787879,.05,.05,0,0,0,0,0,0,1,1,0,5.5627604,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,7,4,1,958,-193680.27,-59027.965,0,0,0,0,2219.9246 +12460,15203,27116,27117,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,53,1,-62.310966,0,3,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.11,52.88,60.59,54.8,8.333333333333334,1,1,0,0,0,9,3,1,2957.5,1314353.8,534590.19,366338.34,0,0,0,5867.0127 +12460,15203,27117,27116,-9,-9,1,1,75,0,0,0,2,2,-9,0,5,0,8.5007477,8.2708893,53,-1,13.917665,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.809001,8.4804716,60.59,54.8,49.11,52.88,10,1,1,0,0,0,9,3,1,2957.5,1314353.8,534590.19,366338.34,0,0,0,5867.0127 +12461,15204,27118,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.094027,7.319459,0,0,-835.16852,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9130793,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,875,280203.06,232101.3,133178.89,0,0,0,539.99438 +12462,15205,27119,27120,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,7.699173,7.9388676,43,-5,-108.91727,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3035843,8.0997019,56.33,51.02,55.19,54.26,10,1,1,0,0,7,5,4,1,513.5,2320196,1497538,618091.69,67951.781,0,0,3653.8315 +12462,15205,27120,27119,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.9428625,8.071455,43,5,-13.212837,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7955091,7.8749318,55.19,54.26,56.33,51.02,8.333333333333334,1,1,0,0,0,5,4,1,513.5,2320196,1497538,618091.69,67951.781,0,0,3653.8315 +12463,15206,27121,27122,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,6.5887475,6.4084969,45,3,59.503197,0,1,1,2021,6,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3404722,6.5210381,60.02,56.42,54.79,55.86,10,1,1,0,0,10,10,3,1,2543.5,2656052.5,0,822904.75,0,0,0,2005.2913 +12463,15206,27122,27121,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,7.3821883,7.1897001,0,45,-3,-39.862972,0,2,1,2021,7,0,6,37,1,0,0,29.7584,29.7584,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.02,56.42,8.333333333333334,1,1,0,0,8,10,3,1,2543.5,2656052.5,0,822904.75,0,0,0,2005.2913 +12464,15207,27123,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,5.2228842,5.0574932,0,0,-1049.8231,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3291001,5.156631,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,13,2,1,1099,261632.25,244844.52,0,0,0,-411.21738,553.41534 +12465,15208,27124,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,4.2046132,4.2663331,0,0,-1108.1674,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8689861,4.7731218,60.29,52.11,-9,-9,10,1,1,0,0,0,5,2,1,1665,190595.41,0,147787.77,0,0,0,1013.9387 +12466,15209,27125,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,4,9.1774654,9.1905594,0,0,0,-1058.1188,0,3,2,2021,6,0,39,41,1,0,0,24.261986,24.261986,.05,.05,0,0,0,0,0,0,0,0,0,3.1865761,0,46.17,54.21,-9,-9,6.666666666666667,1,1,0,0,9,13,5,0,823,229613.44,306614.34,47847.113,9883.9961,13451.969,0,4075.9424 +12467,15210,27126,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,7.0044622,7.2939487,0,0,0,-1034.6383,0,-9,-9,2021,15,3,18,40,1,3,0,8.9809828,8.9809828,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.39,58.79,-9,-9,3.333333333333333,1,1,0,0,13,10,3,1,425,12945.004,32148.945,163687.34,0,0,0,148.06982 +12468,15211,27127,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,6.7724161,8.6823645,8.2665548,14,-19,-26.634848,0,2,1,2021,11,1,12,15,1,1,0,8.6013927,8.6013927,.05,.05,0,0,0,0,0,14.5,1,1,0,7.70017,8.1538239,44.25,56.64,51,46,6.666666666666667,1,1,0,0,10,10,4,1,1766,785221.88,472760.19,137219.22,0,0,1629.1255,3113.4917 +12469,15212,27128,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,9.3165512,9.3642626,0,0,-963.35864,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.4725018,62.39,56.71,-9,-9,10,1,1,0,0,2,12,5,1,459,1831121.5,658350.25,492717.72,0,0,0,5586.0791 +12470,15213,27129,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,8.0867119,8.4278488,0,0,0,-1103.6171,0,2,3,2021,17,5,38,38,1,5,0,9.8897667,9.8897667,0,0,0,0,0,0,0,0,0,0,0,0,0,34.04,44.46,-9,-9,3.333333333333333,1,1,0,0,9,10,4,1,814,1194760.5,512589.47,371425.72,0,0,0,1452.5074 +12471,15214,27130,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,5.3978043,5.6273813,0,0,-887.39569,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7553248,54,51,-9,-9,10,1,1,0,0,0,11,2,1,232,277483.5,-6191.4141,99953.188,0,0,0,617.17554 +12472,15215,27131,27132,-9,-9,1,1,27,0,0,0,2,2,-9,0,2,0,0,0,3,3,108.97092,0,1,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.18,54.59,16.3,50.96,3.333333333333333,1,1,0,0,7,11,2,0,876,-31850.221,0,0,0,0,0,443.80746 +12472,15215,27132,27131,-9,-9,1,0,24,0,0,0,1,1,-9,0,1,6.8325911,7.1466489,0,3,-3,112.05375,0,-9,-9,2021,33,12,15,16,1,12,0,6.6361232,6.6361232,0,0,0,0,0,0,0,14.5,0,0,0,0,0,16.3,50.96,41.18,54.59,0,1,1,0,1,2,11,2,0,876,-31850.221,0,0,0,0,0,443.80746 +12473,15216,27133,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,2,0,4.8778081,4.8483539,0,0,-974.88141,1,-9,-9,2021,12,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.9528823,0,30.37,52.74,-9,-9,5,1,1,0,0,0,4,2,0,806,-102686.95,0,0,0,0,0,922.76489 +12474,15217,27134,-9,27136,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.8424,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,1359.6666,126401.21,157517.42,210375.11,197196.34,293.11874,0,5662.1035 +12474,15217,27135,-9,27136,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.93286,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,5,1,1359.6666,126401.21,157517.42,210375.11,197196.34,293.11874,0,5662.1035 +12474,15217,27136,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,9.3683262,9.7306089,7.7195749,0,0,-965.67981,0,2,2,2021,17,4,40,25,1,4,0,39.770039,39.770039,.05,.05,0,0,0,0,0,0,1,1,0,8.8213854,0,45.91,59.89,-9,-9,6.666666666666667,1,1,0,0,10,6,5,1,1359.6666,126401.21,157517.42,210375.11,197196.34,293.11874,0,5662.1035 +12475,15218,27137,27138,-9,-9,1,0,70,0,0,0,1,1,-9,0,1,0,0,0,7,-10,3.4108579,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,1,0,.49922636,0,74.5,1,1,0,0,0,30.66,29.4,18.01,25.88,1.666666666666667,1,1,0,0,4,8,2,1,831.5,64678.184,122678.88,0,0,0,0,1543.2297 +12475,15218,27138,27137,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,6.4112577,6.1391358,7,10,-111.83692,0,2,2,2021,34,11,0,0,4,11,0,0,0,0,0,0,1,0,26.015476,0,0,1,1,0,0,5.8311467,18.01,25.88,30.66,29.4,0,1,1,0,0,5,8,2,1,831.5,64678.184,122678.88,0,0,0,0,1543.2297 +12476,15219,27139,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.9649668,8.1607151,0,0,0,-959.04114,0,1,1,2021,12,3,43,35,1,3,0,8.1354418,8.1354418,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,3.333333333333333,4,2,0,0,1,8,4,0,421,179960.44,58408.688,0,0,30971.941,0,1778.1594 +12476,15220,27140,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,8.1758814,8.5138655,0,0,0,-846.04156,-9,-9,-9,2021,16,6,45,0,1,6,0,9.4636374,9.4636374,0,0,0,0,0,0,0,0,0,0,0,0,0,27.97,60.5,-9,-9,8.333333333333334,1,1,0,0,4,8,4,0,696,135122.73,0,0,0,0,0,1174.6284 +12477,15221,27141,-9,27142,27143,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.995,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12477,15221,27142,27143,-9,-9,1,0,38,1,2,0,2,2,-9,0,4,8.0857658,7.982758,0,19,-4,126.64658,0,3,3,2021,13,2,35,30,1,2,0,10.323234,10.323234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,49.88,52.95,6.666666666666667,3,4,0,0,11,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12477,15221,27143,27142,-9,-9,1,1,42,1,2,0,2,2,-9,0,3,7.2517872,7.2417707,0,19,4,-99.349846,0,2,2,2021,8,1,38,38,1,1,0,4.5863867,4.5863867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.88,52.95,49.12,57.28,8.333333333333334,3,4,0,0,9,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12477,15221,27144,-9,27142,27143,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.2499,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,3,0,1192.25,84396.195,21636.357,136828.09,50389.074,0,1280.0779,2394.3274 +12478,15222,27145,27146,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,48,-1,0,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.3308105,0,60.7,47.65,47.9,43.96,8.333333333333334,1,1,0,0,0,4,1,1,1020.5,970258,233711.64,684585.13,0,32880.672,0,6000.5908 +12478,15222,27146,27145,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,48,1,0,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6632071,0,47.9,43.96,60.7,47.65,8.333333333333334,1,1,0,0,0,4,1,1,1020.5,970258,233711.64,684585.13,0,32880.672,0,6000.5908 +12479,15223,27147,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4959345,8.719842,6.8107562,0,0,-1035.6366,0,3,3,2021,12,1,37,37,1,1,0,17.112112,17.112112,.05,.05,0,0,0,0,0,2,1,1,0,7.0010428,7.1510949,38.86,59.06,-9,-9,8.333333333333334,1,1,0,0,11,2,5,1,795,1430744.5,564010.75,295265.72,0,0,0,2665.5239 +12480,15224,27148,27149,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,8.122159,8.5516739,10,-6,92.139366,0,1,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7766814,8.2929955,38.91,52.63,45.06,45.73,8.333333333333334,1,1,0,0,8,4,4,1,260,2978939.3,764358.63,672805.69,0,0,0,3551.4717 +12480,15224,27149,27148,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.0473547,7.6540546,10,6,37.251019,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,5.2942934,8.0138969,45.06,45.73,38.91,52.63,8.333333333333334,1,1,0,0,8,4,4,1,260,2978939.3,764358.63,672805.69,0,0,0,3551.4717 +12481,15225,27150,-9,-9,-9,1,1,65,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1054.4303,0,3,3,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.80681139,0,41.3,34.16,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,1247,130645.3,0,0,0,-544.43457,0,1816.2351 +12482,15226,27151,27152,-9,-9,1,0,47,0,0,0,1,1,-9,1,2,0,0,0,26,-4,35.289902,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.15,24.79,50.28,51.35,3.333333333333333,2,3,0,0,0,2,2,0,343,473497.25,252143.5,349246.69,0,0,0,1230.2297 +12482,15226,27152,27151,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,7.7179084,7.501987,0,26,4,-14.981219,0,3,2,2021,17,6,30,26,1,6,0,5.971436,5.971436,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,47.15,24.79,8.333333333333334,2,3,0,0,2,2,2,0,343,473497.25,252143.5,349246.69,0,0,0,1230.2297 +12482,15227,27153,-9,27151,27152,1,1,22,0,0,0,2,2,-9,0,5,6.4245648,6.0839143,0,0,0,-1001.2617,0,1,1,2021,18,7,10,10,1,7,1,7.151165,7.151165,0,0,0,0,0,0,0,0,1,1,0,0,0,43.06,49.62,-9,-9,8.333333333333334,2,3,0,0,3,2,2,0,731,31059.148,0,0,0,5035.6563,0,-53.921539 +12482,15228,27154,-9,27151,27152,1,1,19,0,0,0,2,2,1,0,5,7.2816124,6.7840791,0,0,0,-977.91321,-9,1,1,2021,5,0,31,0,1,0,1,4.7773085,4.7773085,0,0,0,0,0,0,1.2306143,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,2,3,0,0,1,2,2,0,1352,34660.527,0,0,0,0,0,611.73926 +12483,15229,27155,27156,-9,-9,1,0,53,0,1,0,1,1,-9,0,3,9.0804005,8.9057531,0,29,-1,58.970402,0,2,-9,2021,25,10,50,56,1,10,0,13.354019,13.354019,0,0,0,0,0,0,0,2,1,1,0,2.0270526,0,34.98,49.96,42.26,39.72,8.333333333333334,4,2,0,1,13,2,5,1,429.5,1708429.3,994939.38,497620.84,1651.2725,0,7046.2236,4051.356 +12483,15229,27156,27155,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.5199251,8.3486395,0,29,1,-43.67424,0,2,2,2021,13,2,42,42,1,2,0,16.108395,16.108395,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.26,39.72,34.98,49.96,8.333333333333334,1,1,0,0,9,2,5,1,429.5,1708429.3,994939.38,497620.84,1651.2725,0,7046.2236,4051.356 +12483,15230,27157,-9,27155,27156,1,0,19,0,1,0,2,2,-9,0,4,7.6030083,7.7805939,0,0,0,-1093.0601,-9,1,2,2021,7,2,16,0,1,2,1,14.533353,14.533353,0,0,0,0,0,0,0,7,1,1,0,.61758542,0,15.91,65.73,-9,-9,6.666666666666667,4,2,0,0,3,2,3,1,141,-230657.22,0,0,0,0,0,912.89661 +12484,15231,27158,27159,-9,-9,1,1,63,0,0,0,1,1,-9,1,1,0,5.3553786,5.2441826,9,5,156.80499,0,2,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3300686,54.29,16.4,57.06,57.76,5,1,1,0,0,0,10,3,0,825,1383971.3,746436.69,416466,0,0,0,1164.6272 +12484,15231,27159,27158,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.862103,7.7783833,0,9,-5,-40.486294,0,3,3,2021,11,0,39,32,1,0,0,7.1690793,7.1690793,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,54.29,16.4,8.333333333333334,1,1,0,0,10,10,3,0,825,1383971.3,746436.69,416466,0,0,0,1164.6272 +12484,15232,27160,-9,27159,27158,1,0,23,0,0,0,1,1,-9,0,5,8.0671215,8.0139008,0,0,0,-933.59558,0,2,1,2021,8,0,37,39,1,0,1,11.712841,11.712841,0,0,0,0,0,0,0,0,1,1,0,.9556396,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,10,4,0,430,26788.436,0,0,0,0,0,988.23303 +12485,15233,27161,-9,27162,27163,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.5157,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,6,4,1,1881.3334,87152.57,-36460.273,90338.422,56923.918,0,0,3205.6592 +12485,15233,27162,27163,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,6.6552215,6.4543195,0,5,-11,19.520161,0,-9,-9,2021,9,0,17,10,1,0,0,4.4528694,4.4528694,0,0,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,41.53,56.72,8.333333333333334,1,1,0,0,7,6,4,1,1881.3334,87152.57,-36460.273,90338.422,56923.918,0,0,3205.6592 +12485,15233,27163,27162,-9,-9,1,1,41,1,1,0,2,2,-9,0,3,8.4322157,8.53162,0,5,11,-18.437769,0,1,2,2021,7,0,44,46,1,0,0,21.299932,21.299932,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.53,56.72,49.35,59.64,6.666666666666667,1,1,0,0,11,6,4,1,1881.3334,87152.57,-36460.273,90338.422,56923.918,0,0,3205.6592 +12486,15234,27164,-9,27167,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1068.7369,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.09,45.22,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,267,0,0,0,0,0,0,0 +12486,15235,27165,-9,27167,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1048.9403,-9,1,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,59.35,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,404.33334,287757.91,345555.47,0,0,289.0863,18612.125,3083.9492 +12486,15235,27166,27167,-9,-9,1,1,67,0,1,0,3,3,-9,0,4,0,7.086184,6.9769058,4,12,16.005323,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1742296,62.49,55.09,36.62,60.23,10,1,1,0,0,0,4,3,1,404.33334,287757.91,345555.47,0,0,289.0863,18612.125,3083.9492 +12486,15235,27167,27166,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.1855345,8.3840466,7.3077383,4,-12,-27.477919,0,3,3,2021,11,2,23,38,1,2,0,18.965712,18.965712,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0864167,36.62,60.23,62.49,55.09,8.333333333333334,1,1,0,0,9,4,3,1,404.33334,287757.91,345555.47,0,0,289.0863,18612.125,3083.9492 +12487,15236,27168,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.1419754,5.0630322,0,0,-1050.8074,0,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,1,6.0694928,0,63.892323,0,1,1,0,0,5.0645742,50,47,-9,-9,7,1,1,0,0,2,13,2,0,986,-10110.753,50746.879,0,0,0,0,1640.2803 +12488,15237,27169,27170,-9,-9,1,0,62,0,0,0,3,3,-9,0,1,0,0,0,11,-2,-6.7114577,0,-9,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.7,23.15,62.36,47,3.333333333333333,1,1,1,0,8,11,4,0,1278.5,1302761,757823,286430.88,0,0,0,1893.2964 +12488,15237,27170,27169,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.7028046,8.6096563,0,11,2,58.992191,0,3,3,2021,11,0,48,52,1,0,0,13.361889,13.361889,0,0,0,0,0,0,0,27,0,0,0,0,0,62.36,47,35.7,23.15,8.333333333333334,1,1,0,0,13,11,4,0,1278.5,1302761,757823,286430.88,0,0,0,1893.2964 +12489,15238,27171,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,5.6399775,5.6491427,0,0,-1057.6299,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6222377,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,4201,182827.2,-81131.852,0,0,0,0,1816.2904 +12490,15239,27172,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.6695452,6.3716798,0,0,-1076.4755,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.24245144,6.3926182,58.15,50.21,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,74,84323.508,152103.3,0,0,0,-228.57799,712.44904 +12491,15240,27173,-9,27174,27176,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.14349,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12491,15240,27174,27176,-9,-9,1,0,54,0,2,0,1,1,-9,0,5,8.621809,8.5712261,0,6,3,-43.906834,0,2,2,2021,6,0,35,36,1,0,0,21.520424,21.520424,.05,.05,0,0,0,0,0,0,1,1,0,1.3379453,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,3,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12491,15240,27175,-9,27174,27176,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.5847,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12491,15240,27176,27174,-9,-9,1,1,51,0,2,0,1,1,-9,0,5,8.9300661,8.7519836,0,6,-3,-72.103378,0,3,1,2021,9,2,42,47,1,2,0,24.870899,24.870899,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.14,60.45,57.06,57.76,8.333333333333334,1,1,0,0,7,12,5,1,282.25,1379906.4,574511.5,548816.75,32005.357,0,0,5020.4395 +12492,15241,27177,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,7.6429996,7.3446875,0,0,-945.68451,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6716428,7.8026633,42.74,48.15,-9,-9,10,1,1,0,0,0,7,3,1,718,148335.83,68037.133,24608.48,0,0,0,672.8653 +12493,15242,27178,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.6794167,6.4962306,0,0,-1066.3871,0,2,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5126679,6.536922,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,437,486688.84,-29473.803,189419.03,0,0,0,799.40131 +12494,15243,27179,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,6.6233535,6.643672,0,0,-991.30164,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4611449,52,45,-9,-9,8,1,1,0,0,0,2,2,1,95,209762.39,33877.742,143102.83,0,0,0,7.4228144 +12495,15244,27180,27181,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.6561222,7.4040127,0,33,1,-4.2450762,0,2,2,2021,11,0,40,40,1,0,0,7.0204582,7.0204582,.05,.05,0,0,0,0,0,0,0,0,0,8.8326235,0,49.12,53.02,46.23,49.17,8.333333333333334,1,1,0,0,11,10,3,1,1038.5,544555.13,390694.94,204068.98,0,0,0,2459.9084 +12495,15244,27181,27180,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,34,-1,128.37422,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.23,49.17,49.12,53.02,5,1,1,0,0,7,10,3,1,1038.5,544555.13,390694.94,204068.98,0,0,0,2459.9084 +12495,15245,27182,-9,27181,27180,1,1,24,0,0,0,1,1,-9,0,4,7.9635277,8.2605019,0,0,0,-886.03461,0,2,2,2021,4,0,40,35,1,0,1,8.0005817,8.0005817,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,372,-77322.273,36945.824,0,0,0,0,957.78809 +12495,15246,27183,-9,27181,27180,1,1,23,0,0,0,1,1,-9,0,4,7.8836045,8.0835533,0,0,0,-1057.5681,0,2,2,2021,7,0,39,0,1,0,1,9.7251692,9.7251692,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.33,51.02,-9,-9,10,1,1,0,0,3,10,4,1,329,12845.69,-34081.77,0,0,0,0,852.44415 +12495,15247,27184,-9,27181,27180,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1124.5496,1,2,2,2021,14,2,0,28,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,5,10,1,1,143,0,0,0,0,0,0,0 +12496,15248,27185,27186,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.4265356,8.5117416,44,1,11.644498,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2799141,8.2900229,57.16,56.15,54.96,53.17,10,1,1,0,0,0,5,4,1,1000.5,1897786.8,1359039.3,227885.41,0,0,0,3297.3977 +12496,15248,27186,27185,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,45,-1,-100.09051,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0846834,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,1000.5,1897786.8,1359039.3,227885.41,0,0,0,3297.3977 +12496,15249,27187,-9,27186,27185,1,1,39,0,0,0,2,2,-9,0,3,7.0476785,7.0518289,0,0,0,-1046.2101,0,2,2,2021,6,0,5,2,1,0,0,24.072735,24.072735,0,0,0,0,0,0,0,0,1,1,0,2.4978127,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,4,5,2,1,606,-51593.813,0,122051.55,96032.492,0,0,616.34241 +12497,15250,27188,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,1,0,7.1035881,6.8431683,0,0,-868.49994,-9,2,2,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.1148105,0,30.08,23.2,-9,-9,1.666666666666667,1,1,0,0,0,4,2,1,677,106610.44,-99554.445,0,0,0,0,1917.9685 +12498,15251,27189,27190,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,8.0696363,8.1554699,0,6,1,-72.088478,0,3,2,2021,14,3,39,40,1,3,0,10.038249,10.038249,.05,.05,0,0,0,0,0,0,0,0,0,4.2206554,0,45.42,51,60.3,46.58,8.333333333333334,1,1,0,0,8,5,4,1,675.5,119418.97,35924.664,0,0,0,0,3171.4189 +12498,15251,27190,27189,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.937254,8.2156639,0,6,-1,7.2556505,0,-9,-9,2021,6,0,40,40,1,0,0,8.6010075,8.6010075,.05,.05,0,0,0,0,0,0,0,0,0,5.9444723,0,60.3,46.58,45.42,51,8.333333333333334,1,1,0,0,2,5,4,1,675.5,119418.97,35924.664,0,0,0,0,3171.4189 +12499,15252,27191,27192,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.3924894,9.4892893,0,10,2,16.687132,0,3,2,2021,9,0,42,45,1,0,0,41.922981,41.922981,.05,.05,0,0,0,0,0,0,0,0,0,1.9244244,0,57.16,56.15,38.35,54.09,8.333333333333334,1,1,0,0,11,9,5,1,595,123440.29,18029.559,0,0,0,2342.9419,4900.0342 +12499,15252,27192,27191,-9,-9,1,0,55,0,0,0,3,3,-9,0,4,7.1976633,6.6909251,0,10,-2,41.615219,0,2,2,2021,17,7,19,19,1,7,0,5.3855114,5.3855114,.05,.05,0,0,0,0,0,2,0,0,0,0,0,38.35,54.09,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,595,123440.29,18029.559,0,0,0,2342.9419,4900.0342 +12500,15253,27193,27194,-9,-9,1,1,47,0,1,0,3,3,-9,0,4,8.66786,9.0309496,0,10,5,22.674618,0,2,2,2021,6,0,52,56,1,0,0,12.909307,12.909307,.05,.05,0,0,0,0,0,0,1,1,0,2.4726624,0,57.16,56.15,44.75,56.39,8.333333333333334,1,1,0,0,12,6,4,1,592.5,60258.891,11180.537,93783.305,30883.316,488.12949,0,3022.3423 +12500,15253,27194,27193,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,7.5584788,7.5614896,0,10,-5,-68.341751,0,3,3,2021,12,0,10,10,1,0,0,19.06547,19.06547,.05,.05,0,0,0,0,0,7,1,1,0,2.2972112,0,44.75,56.39,57.16,56.15,8.333333333333334,1,1,0,0,12,6,4,1,592.5,60258.891,11180.537,93783.305,30883.316,488.12949,0,3022.3423 +12501,15254,27195,27197,-9,-9,1,0,34,1,2,0,1,1,-9,0,3,7.4133382,7.7808309,0,10,-11,3.2481887,-9,3,2,2021,22,10,60,0,1,10,0,3.4689989,3.4689989,.05,.05,0,0,0,0,0,0,1,1,0,6.9863801,0,23.44,54.28,54.79,55.86,1.666666666666667,1,1,0,1,9,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12501,15254,27196,-9,27195,27197,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.5642,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12501,15254,27197,27195,-9,-9,1,1,45,1,2,0,2,2,-9,0,4,8.5383873,8.5897408,0,10,11,42.150383,-9,-9,-9,2021,5,0,37,0,1,0,0,15.257086,15.257086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,23.44,54.28,6.666666666666667,2,3,0,0,12,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12501,15254,27198,-9,27195,27197,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.34821,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,4,1,1136.75,342427.53,131990.25,323489.25,133645.28,1700.2935,3208.8254,3616.9666 +12502,15255,27199,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,6.0850196,5.9973769,0,0,-951.27936,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,6.9555511,0,14.5,1,1,0,3.7706707,6.308722,63.01,25.24,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,440,505023.81,98758.094,418735.41,0,0,0,2208.2258 +12502,15256,27200,-9,27199,-9,1,1,55,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1053.1998,0,3,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.68,18.74,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,540,-164567.34,124690.4,0,0,0,0,1119.452 +12502,15257,27201,-9,27199,-9,1,0,48,0,0,0,3,3,-9,0,4,7.3344021,7.3320842,0,0,0,-951.53589,0,3,3,2021,10,0,36,0,1,1,0,6.8959231,6.8959231,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,55,-9,-9,8,1,1,0,0,1,13,3,1,331,-143694.38,-97263.133,0,0,7131.4829,0,-86.889542 +12503,15258,27202,27203,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,0,0,0,40,-6,-47.559563,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,39.28,48.28,60.18,5,1,1,0,0,0,7,4,0,1242.5,162955.55,117954.39,0,0,19278.23,0,2326.6809 +12503,15258,27203,27202,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.6155987,8.4853458,4.5574002,40,6,30.129797,0,3,3,2021,10,0,8,45,1,0,0,73.823441,73.823441,0,0,0,0,0,0,0,0,0,0,0,6.5700617,4.8843622,48.28,60.18,44,39.28,0,1,1,0,0,8,7,4,0,1242.5,162955.55,117954.39,0,0,19278.23,0,2326.6809 +12504,15259,27204,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,1,8.311017,8.6194124,0,0,0,-994.57831,0,-9,-9,2021,18,6,37,42,1,6,0,14.589274,14.589274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.58,42.55,-9,-9,1.666666666666667,1,1,0,0,12,9,5,0,600,28500.33,5321.7148,0,0,0,0,1540.0403 +12505,15260,27205,27206,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.9292054,6.7799802,11,-1,-85.991219,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7429912,7.0490699,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,5,3,1,740.5,457578.19,0,428822.69,0,0,0,2640.022 +12505,15260,27206,27205,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.7857952,7.8941226,11,1,-18.611248,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8596644,7.8391504,57.16,56.15,54.2,57.49,10,1,1,0,0,0,5,3,1,740.5,457578.19,0,428822.69,0,0,0,2640.022 +12506,15261,27207,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.4112368,8.5979729,0,0,-955.35962,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5477967,8.3134937,50.96,51.08,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,401,1568659,944219.69,180154.67,0,0,0,3019.5264 +12507,15262,27208,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,5,7.8850923,7.6517839,0,0,0,-920.42883,0,-9,-9,2021,12,0,37,30,1,0,0,7.630578,7.630578,0,0,0,0,0,0,0,0,0,0,0,0,0,38.24,63.73,-9,-9,6.666666666666667,1,1,0,0,3,13,3,0,299,-161715.8,0,0,0,0,0,1103.725 +12508,15263,27209,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,8.1749468,8.3927221,0,0,0,-1060.1589,0,2,2,2021,6,0,36,36,1,0,0,9.882988,9.882988,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,12,4,1,1145,-34017.648,0,0,0,0,0,2730.0376 +12508,15264,27210,-9,27209,-9,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1180.8488,-9,2,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.52,63.52,-9,-9,6.666666666666667,1,1,0,0,3,12,1,1,621,100795.26,0,0,0,0,0,0 +12509,15265,27211,27212,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.5801878,7.4153976,0,38,1,96.583855,0,2,3,2021,25,11,18,30,1,11,0,12.198128,12.198128,.05,.05,0,0,0,0,0,7,0,0,0,2.9534945,0,22.56,57.29,60.18,39.83,5,1,1,0,0,12,6,5,1,1476,341455.25,222786.16,138315.52,130111.84,7410.7871,14767.148,3336.1128 +12509,15265,27212,27211,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.8542356,8.791317,0,38,-1,15.552761,0,3,3,2021,11,1,35,35,1,1,0,20.391165,20.391165,.05,.05,0,0,0,0,0,0,0,0,0,3.6601121,0,60.18,39.83,22.56,57.29,8.333333333333334,1,1,0,0,12,6,5,1,1476,341455.25,222786.16,138315.52,130111.84,7410.7871,14767.148,3336.1128 +12510,15266,27213,-9,-9,-9,1,0,20,0,1,0,2,2,-9,0,5,7.902514,7.5289545,0,0,0,-961.17761,0,3,3,2021,7,0,32,27,1,0,1,6.9852533,6.9852533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,8.333333333333334,2,3,0,0,2,8,3,1,1086,-108226.68,71975.313,0,0,6989.4014,0,1081.9127 +12511,15267,27214,27215,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1048698,7.8643942,0,6,-2,121.94639,-9,-9,-9,2021,10,0,37,0,1,1,0,6.4810452,6.4810452,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,59.29,49.68,8,1,1,0,0,1,11,5,1,185.5,1323366.5,515921.75,237738.73,0,0,0,4449.8003 +12511,15267,27215,27214,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.0536356,9.6343098,0,28,2,-77.194756,0,2,2,2021,6,0,60,61,1,0,0,17.424185,17.424185,.05,.05,0,0,0,0,0,0,1,1,0,4.8806014,0,59.29,49.68,51,54,8.333333333333334,1,1,0,0,9,11,5,1,185.5,1323366.5,515921.75,237738.73,0,0,0,4449.8003 +12511,15268,27216,-9,27214,27215,1,0,23,0,0,0,2,2,-9,0,4,7.1710558,7.2360921,0,0,0,-1044.3044,-9,2,2,2021,11,0,40,0,1,2,1,4.0204682,4.0204682,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,0,0,1,11,3,1,314,17784.373,0,0,0,4027.7668,0,761.62396 +12511,15269,27217,-9,27214,27215,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-990.39459,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,1,1,0,0,0,11,1,1,418,0,0,0,0,0,0,0 +12512,15270,27218,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.1434379,7.2864184,7.0476556,0,0,-1079.2861,0,2,3,2021,11,0,18,18,1,0,0,9.3988934,9.3988934,0,0,0,1,0,0,0,0,1,1,0,7.0987058,6.9282212,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,6,2,3,1,209,427020.38,85196.398,173293.52,0,278.03085,0,824.34375 +12513,15271,27219,-9,-9,-9,1,0,56,0,1,0,2,2,-9,1,1,0,0,0,0,0,-888.32886,0,3,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.64,31.48,-9,-9,6.666666666666667,1,1,0,0,7,12,1,1,732,80823.898,-2881.4478,0,0,1246.5684,0,83.767021 +12514,15272,27220,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.5442491,6.8704424,0,0,-1074.6803,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3826404,61.19,39.41,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,84,584994.75,453072.06,269316.03,0,0,0,531.00513 +12515,15273,27221,27222,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.6465292,8.6428518,33,1,18.608057,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6512952,8.7296095,54.37,54.8,57.16,56.15,8.333333333333334,1,1,0,0,6,9,4,1,204.5,1536268.5,1045138.1,602492.63,139130.81,8766.9697,0,3781.8235 +12515,15273,27222,27221,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,5.4779353,5.4199181,33,-1,8.8225269,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6435237,5.4710884,57.16,56.15,54.37,54.8,10,1,1,0,0,8,9,4,1,204.5,1536268.5,1045138.1,602492.63,139130.81,8766.9697,0,3781.8235 +12516,15274,27223,27225,-9,-9,1,1,45,0,3,0,1,1,-9,0,3,8.8560772,8.9132576,5.8701854,10,0,-96.087616,0,2,1,2021,9,0,38,43,1,0,0,19.355507,19.355507,.05,.05,0,0,0,0,0,0,1,1,0,6.2012491,0,52,54.51,32.85,51.49,6.666666666666667,1,1,0,0,11,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27224,-9,27225,27223,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.65356,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27225,27223,-9,-9,1,0,45,0,3,0,2,2,-9,0,3,8.7393856,8.9821434,0,10,0,77.848587,0,-9,-9,2021,17,7,38,38,1,7,0,19.009941,19.009941,.05,.05,0,0,0,0,0,0,1,1,0,7.1866593,0,32.85,51.49,52,54.51,6.666666666666667,1,1,0,0,14,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27226,-9,27225,27223,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-941.41193,-9,2,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12516,15274,27227,-9,27225,27223,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.3801,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,376.39999,1487442.4,309096.5,741648.5,3252.6406,0,0,5208.0166 +12517,15275,27228,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,2,0,0,0,0,0,-930.22638,0,3,3,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.48,37.7,-9,-9,5,1,1,1,0,0,11,1,1,142,96754.219,0,0,0,3030.9292,0,0 +12518,15276,27229,27231,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.0607376,8.3123169,0,8,-5,158.64764,0,3,2,2021,10,0,25,29,1,0,0,13.352614,13.352614,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,42.06,53.95,6.666666666666667,1,1,0,0,9,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12518,15276,27230,-9,27229,27231,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-832.7951,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12518,15276,27231,27229,-9,-9,1,1,46,0,2,0,2,2,-9,0,2,8.5933714,8.8689117,0,8,5,-61.107849,0,2,3,2021,17,5,37,40,1,5,0,23.002682,23.002682,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,42.06,53.95,48.77,60.16,5,1,1,0,0,9,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12518,15276,27232,-9,27229,27231,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-899.16876,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,724.5,442485.88,164817.8,296711.03,27924.668,0,0,4004.9043 +12519,15277,27233,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,8.5274897,8.6146851,0,0,0,-962.72949,0,3,3,2021,17,5,35,50,1,5,0,18.146416,18.146416,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.67,47.76,-9,-9,5,1,1,0,0,7,4,5,1,1186,91134.68,63406.242,134599.73,76562.523,0,0,2042.8649 +12520,15278,27234,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.0563107,6.646944,0,0,-923.82227,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8128643,50.17,27.29,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,1005,234463.47,54473.402,161531.81,0,3239.4548,0,250.24774 +12521,15279,27235,27236,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,7.9555449,7.9285049,6,1,-70.09111,0,3,3,2021,26,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,7.9959493,24.33,21.59,35.53,55.43,1.666666666666667,1,1,0,0,9,12,4,1,1417.5,541797.69,400425.69,149031.16,87830.078,93583.977,3575.4854,3136.3354 +12521,15279,27236,27235,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.190053,7.9873304,0,6,-1,48.459625,0,2,2,2021,12,0,40,37,1,0,0,11.065926,11.065926,.05,.05,0,0,0,0,0,0,1,0,1,0,0,35.53,55.43,24.33,21.59,6.666666666666667,1,1,0,0,11,12,4,1,1417.5,541797.69,400425.69,149031.16,87830.078,93583.977,3575.4854,3136.3354 +12521,15280,27237,-9,27235,27236,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-979.16388,0,1,2,2021,16,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,2,1,0,1,3.4414773,0,31.42,52.91,-9,-9,8.333333333333334,1,1,1,0,3,12,1,1,767,187325.08,0,0,0,0,0,97.093414 +12522,15281,27238,27239,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,11,1,56.740856,0,2,2,2021,16,4,0,0,4,4,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,2.159272,0,49.03,40.72,54.96,53.17,8.333333333333334,1,1,0,0,1,11,5,1,621,1271023.8,951627.38,382165.13,57419.754,9884.4287,0,3657.2693 +12522,15281,27239,27238,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.1904039,9.1988716,0,11,-1,54.606804,0,2,2,2021,9,0,47,49,1,0,0,29.572838,29.572838,.05,.05,0,0,0,0,0,2,1,1,0,2.9002721,0,54.96,53.17,49.03,40.72,6.666666666666667,1,1,0,0,12,11,5,1,621,1271023.8,951627.38,382165.13,57419.754,9884.4287,0,3657.2693 +12522,15282,27240,-9,27238,27239,1,1,35,0,0,0,2,2,-9,0,4,7.2802505,7.1602821,0,0,0,-924.01068,0,2,2,2021,9,1,15,15,1,1,1,10.618462,10.618462,.05,.05,0,0,0,0,0,0,1,1,0,4.0120106,0,43.82,51.33,-9,-9,6.666666666666667,1,1,0,0,12,11,2,1,2893,123258.2,3075.1089,0,0,0,0,757.90289 +12523,15283,27241,-9,27243,27246,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1033.0686,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27242,-9,27243,27246,1,0,11,1,4,1,3,0,-9,0,2,0,0,0,0,0,-904.06036,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,44,-9,-9,5,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27243,27246,-9,-9,1,0,34,1,4,0,2,2,-9,0,1,0,0,0,14,-1,0,0,3,3,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.7,24.29,51,56,5,2,3,0,1,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27244,-9,27243,27246,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1030.5936,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.41980168,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27245,-9,27243,27246,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-990.31134,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12523,15283,27246,27243,-9,-9,1,1,35,1,4,0,2,2,-9,1,4,0,0,0,14,1,0,0,3,2,2021,10,0,0,45,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,24.7,24.29,7,2,3,0,0,0,6,1,1,2195.1667,18639.002,0,0,0,0,0,914.75879 +12524,15284,27247,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,7.5986209,7.4884539,0,0,0,-1109.8116,0,3,3,2021,9,0,25,25,1,0,0,10.753574,10.753574,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,59.71,50.89,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,411,-94656.852,236.85117,0,0,0,-753.32135,923.77747 +12525,15285,27248,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.5107393,7.056704,0,0,0,-1131.7587,0,1,1,2021,12,0,28,30,1,0,0,6.3813996,6.3813996,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,219,93213.945,0,0,0,0,0,1261.8285 +12526,15286,27249,27250,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.8788037,7.4137926,6,10,-256.2832,0,3,3,2021,5,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.2181783,7.5200286,57.33,53.46,34.15,55.68,8.333333333333334,1,1,0,0,12,7,4,1,982,1745603.8,878773.75,642903.13,0,0,0,2278.4773 +12526,15286,27250,27249,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9384298,8.1171236,0,6,-10,-45.838924,0,-9,-9,2021,21,8,35,35,1,8,0,11.956158,11.956158,0,0,0,0,0,0,0,0,1,1,0,0,0,34.15,55.68,57.33,53.46,6.666666666666667,1,1,0,0,9,7,4,1,982,1745603.8,878773.75,642903.13,0,0,0,2278.4773 +12527,15287,27251,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,4,0,6.9185843,6.3257647,0,0,-931.27338,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2960951,6.2872243,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,480,163249.89,46344.234,131051.76,0,0,0,1329.7299 +12528,15288,27252,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,7.7558579,7.9696064,0,0,0,-1080.734,0,2,2,2021,14,2,32,25,1,2,0,8.7678366,8.7678366,.05,.05,0,0,0,0,0,0,0,0,0,.46231145,0,30.73,64.59,-9,-9,6.666666666666667,1,1,0,0,9,10,3,0,587,82738.141,76964.266,0,0,0,0,680.96606 +12529,15289,27253,-9,-9,-9,1,1,47,0,0,0,1,1,-9,0,3,4.8009853,5.1952481,0,0,0,-987.02216,0,-9,-9,2021,17,5,4,6,1,5,0,4.6117816,4.6117816,0,0,0,0,0,0,0,0,0,0,0,8.5089283,0,49.92,47.32,-9,-9,8.333333333333334,1,1,0,0,9,13,2,1,3082,0,0,0,0,0,0,2930.4368 +12530,15290,27254,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,7.7973795,8.1373301,7.9145441,0,0,-1014.2339,0,3,3,2021,19,7,43,60,1,7,0,6.7005787,6.7005787,.05,.05,0,0,0,0,0,0,0,0,0,6.4160142,7.851131,37.7,54.28,-9,-9,3.333333333333333,1,1,0,0,11,2,5,1,558,1083851.1,901438,175691.08,0,0,0,1800.98 +12531,15291,27255,27256,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.4590845,8.8023777,0,7,4,-39.734188,0,-9,-9,2021,8,0,52,42,1,0,0,9.9256811,9.9256811,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.4,52.91,58.32,50.22,8.333333333333334,1,1,0,0,6,7,4,1,938,248663.91,130310.28,218657.5,109086.36,0,0,3640.5596 +12531,15291,27256,27255,-9,-9,1,0,29,0,1,0,2,2,-9,0,3,7.9923959,7.6117754,0,7,-4,-78.64003,0,2,-9,2021,6,0,28,28,1,0,0,9.1252823,9.1252823,0,0,0,0,0,0,0,2,1,1,0,0,0,58.32,50.22,52.4,52.91,8.333333333333334,1,1,0,0,9,7,4,1,938,248663.91,130310.28,218657.5,109086.36,0,0,3640.5596 +12531,15291,27257,-9,27256,27255,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.9267,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,938,248663.91,130310.28,218657.5,109086.36,0,0,3640.5596 +12532,15292,27258,27259,-9,-9,1,0,29,1,3,0,2,2,-9,0,3,6.6247067,6.5586729,0,7,-15,-40.559799,0,2,2,2021,9,0,25,16,1,0,0,4.3211551,4.3211551,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,53.14,45.74,8.333333333333334,1,1,0,0,7,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27259,27258,-9,-9,1,1,44,1,3,0,2,2,-9,0,3,8.3188744,8.1745462,0,7,15,.61808157,0,2,2,2021,12,0,40,40,1,0,0,11.065361,11.065361,0,0,0,0,0,0,0,0,1,1,0,1.0762465,0,53.14,45.74,49.04,55.86,5,1,1,0,0,9,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27260,-9,27258,27259,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1128.4607,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27261,-9,27258,27259,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.7443,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12532,15292,27262,-9,27258,27259,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.0697,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,3,1,2888.3999,-33330.578,0,0,0,59.792946,1391.5796,2121.1306 +12533,15293,27263,27264,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,49,-1,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,7.6461287,0,74.5,1,1,0,0,0,60.2,39.82,36.18,16.21,10,1,1,0,0,3,2,1,0,601,100889.75,7838.6172,150997.86,0,0,0,2787.0894 +12533,15293,27264,27263,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,50,1,0,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,42.018696,0,0,1,1,0,0,0,36.18,16.21,60.2,39.82,8.333333333333334,1,1,0,0,0,2,1,0,601,100889.75,7838.6172,150997.86,0,0,0,2787.0894 +12533,15294,27265,-9,27264,27263,1,0,44,0,0,0,2,2,-9,0,3,8.073638,8.0617476,0,0,0,-847.5849,0,2,2,2021,0,0,38,30,1,0,0,11.376643,11.376643,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,59.33,30.72,-9,-9,10,1,1,0,0,11,2,4,0,1299,129074.27,-34556.691,91326.766,58602.84,7944.5073,0,1192.7438 +12534,15295,27266,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,7.8518424,7.9485521,0,0,0,-960.41577,-9,1,1,2021,6,1,38,0,1,1,0,9.2124434,9.2124434,0,0,0,0,0,0,0,0,0,0,0,0,0,53.43,47.4,-9,-9,8.333333333333334,1,1,0,0,6,7,4,0,682,-161175.03,0,0,0,0,0,1593.1483 +12535,15296,27267,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1015.4835,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,9.6870337,0,0,1,1,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1352,-48460.734,0,0,0,0,0,920.57556 +12536,15297,27268,27269,-9,-9,1,0,37,0,2,0,2,2,-9,0,2,6.9425373,6.8305392,0,7,-4,14.806849,0,3,2,2021,12,0,25,23,1,0,0,4.4878736,4.4878736,0,0,0,0,0,0,0,0,1,1,0,0,0,51.09,40.44,51,56,5,1,1,0,0,9,7,4,1,669,605984.63,275745,437802.88,188951.5,0,0,3171.3711 +12536,15297,27269,27268,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.5246286,8.307251,0,7,4,96.738182,0,-9,-9,2021,9,0,40,40,1,1,0,12.982688,12.982688,0,0,0,0,0,0,0,0,1,1,0,.23329411,0,51,56,51.09,40.44,8,1,1,0,0,1,7,4,1,669,605984.63,275745,437802.88,188951.5,0,0,3171.3711 +12537,15298,27270,27271,-9,-9,1,0,47,0,0,0,1,1,-9,0,4,9.2286224,9.0867138,0,8,1,62.474503,0,2,2,2021,11,1,38,38,1,1,0,26.751398,26.751398,0,0,0,0,0,0,0,0,0,0,0,0,0,49.5,54.11,52.99,51.28,8.333333333333334,1,1,0,0,9,13,5,1,755.5,2279617.8,2031508.6,358001.88,225376.36,0,0,5033.752 +12537,15298,27271,27270,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.7574272,8.4415789,0,8,-1,-118.25539,0,-9,-9,2021,11,0,50,50,1,0,0,12.899428,12.899428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,49.5,54.11,8.333333333333334,1,1,0,0,9,13,5,1,755.5,2279617.8,2031508.6,358001.88,225376.36,0,0,5033.752 +12537,15299,27272,-9,27270,27271,1,0,21,0,0,0,2,2,-9,0,4,7.432754,7.66783,0,0,0,-1085.7166,0,1,1,2021,9,0,32,30,1,0,1,5.8822412,5.8822412,.05,.05,0,0,0,0,0,0,0,0,0,.60429317,0,50.4,55.04,-9,-9,6.666666666666667,1,1,0,0,5,13,3,1,461,163320.17,82122.891,0,0,0,0,918.53644 +12538,15300,27273,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.5407534,8.4880199,0,6,-13,21.047146,0,-9,-9,2021,12,3,38,38,1,3,0,15.28683,15.28683,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,38.63,56.7,6.666666666666667,1,1,0,0,6,5,5,1,1498,331666.56,0,0,0,0,0,1512.2737 +12539,15301,27274,27275,-9,-9,1,1,63,0,1,0,2,2,-9,1,1,0,3.3824995,3.1857257,17,14,-31.473608,0,-9,-9,2021,24,10,0,0,3,10,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.6014411,3.3477454,30.76,28.13,32.84,60.85,3.333333333333333,1,1,0,0,0,2,4,1,949,717616.94,142386.88,718014.38,267772.13,0,0,3829.0479 +12539,15301,27275,27274,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.8331604,8.8526249,0,18,-14,-52.93808,0,2,2,2021,11,1,40,39,1,1,0,22.760416,22.760416,0,0,0,0,0,0,0,27,1,1,0,.48921081,0,32.84,60.85,30.76,28.13,6.666666666666667,1,1,0,0,12,2,4,1,949,717616.94,142386.88,718014.38,267772.13,0,0,3829.0479 +12540,15302,27276,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,3,7.8405137,8.0479765,0,0,0,-1093.8938,0,2,2,2021,12,0,20,0,1,0,0,18.549181,18.549181,0,0,0,0,0,0,0,2,0,0,0,3.0126886,0,34.21,51.94,-9,-9,5,1,1,0,0,10,5,4,1,1488,175707.42,86364.391,0,0,0,0,809.58411 +12541,15303,27277,27278,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,0,0,0,17,-1,21.964144,0,2,2,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,62.39,56.71,7,1,1,0,0,3,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12541,15303,27278,27277,-9,-9,1,1,38,0,2,0,1,1,-9,0,5,9.3778982,9.5951633,0,17,1,48.000187,0,-9,-9,2021,2,0,50,55,1,0,0,36.35696,36.35696,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,48,56,8.333333333333334,1,1,0,0,10,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12541,15303,27279,-9,27277,27278,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.9496,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12541,15303,27280,-9,27277,27278,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.8088,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,1079.25,228614.39,99304.703,259055.84,125401.83,2446.0688,796.08093,4608.1406 +12542,15304,27281,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,5,7.8166299,7.7865081,0,0,0,-1020.9929,-9,1,2,2021,6,0,37,0,1,0,0,8.6311636,8.6311636,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,11,12,3,0,3922,19614.023,57530.574,0,0,7026.5293,1186.4689,1848.6243 +12542,15305,27282,-9,27281,-9,1,0,18,0,0,0,2,2,-9,0,4,6.8961835,7.0600338,0,0,0,-937.50903,-9,2,-9,2021,13,1,13,0,1,1,1,9.843998,9.843998,0,0,0,0,0,0,0,0,0,0,0,0,0,32.5,59.47,-9,-9,8.333333333333334,1,1,0,0,2,12,2,0,379,-62223.816,0,0,0,0,0,410.32401 +12543,15306,27283,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,9.5719013,9.4906683,7.1317568,0,0,-1169.8608,0,2,1,2021,10,0,38,38,1,0,0,30.005589,30.005589,.05,.05,0,0,0,0,0,0,0,0,0,7.0643978,0,46.33,50.4,-9,-9,8.333333333333334,1,1,0,0,11,8,5,1,1246,408310.25,64194.41,215315.98,0,0,0,5732.4126 +12544,15307,27284,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.58354,8.4830008,0,0,0,-877.88977,0,3,3,2021,6,0,34,33,1,0,0,13.201137,13.201137,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,658,0,0,0,0,0,-1697.4282,1490.0299 +12545,15308,27285,-9,-9,-9,1,1,47,0,0,0,2,2,-9,1,3,0,0,0,0,0,-889.87842,0,2,2,2021,1,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.7,36.95,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,862,82169.539,53355.082,0,0,1231.3765,0,531.48291 +12546,15309,27286,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.1115918,5.8406172,0,0,-1109.1913,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.51126611,5.8910313,44.33,27.14,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,1109,223234.61,-15896.377,225388.23,0,0,0,1178.7662 +12547,15310,27287,27288,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,6.6179309,6.9308696,0,6,1,-92.474869,0,-9,-9,2021,9,0,40,36,1,1,0,2.9396944,2.9396944,.05,.05,0,0,0,0,0,0,1,1,0,4.3814964,0,54,54,40.36,47.64,8,2,3,0,0,1,8,4,1,832,69251.211,302684.63,0,0,0,0,2846.0498 +12547,15310,27288,27287,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.4842339,8.1780834,0,27,-1,-25.666903,0,2,1,2021,11,0,20,25,1,0,0,33.040878,33.040878,0,0,0,0,0,0,0,0,1,1,0,8.3752003,0,40.36,47.64,54,54,1.666666666666667,2,3,0,0,9,8,4,1,832,69251.211,302684.63,0,0,0,0,2846.0498 +12547,15311,27289,-9,27288,27287,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-881.53998,-9,2,2,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,2,3,0,0,0,8,2,1,1577,0,0,0,0,0,0,801.36505 +12547,15312,27290,-9,27288,27287,1,1,23,0,0,0,2,2,-9,0,4,8.2585402,8.3850689,0,0,0,-1033.0399,0,2,2,2021,10,0,37,40,1,1,1,12.689142,12.689142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,8,4,1,1201,91587.305,6427.0083,0,0,3331.7322,2255.1274,1501.4437 +12548,15313,27291,27292,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,7,-4,10.728722,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,11,4,1,662,2107472.5,761948,141934.73,0,0,0,3824.1694 +12548,15313,27292,27291,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.2994785,8.7336988,7,4,32.765808,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.146945,8.4149733,60.12,54.8,57.16,56.15,10,1,1,0,0,0,11,4,1,662,2107472.5,761948,141934.73,0,0,0,3824.1694 +12549,15314,27293,27294,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,7,-7,-101.77255,0,3,3,2021,18,7,0,37,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,35.77,62.49,55.09,8.333333333333334,1,1,1,0,7,11,5,1,622,86315.461,51671.148,346396.44,202643.41,0,0,4115.896 +12549,15314,27294,27293,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,9.1648998,8.934659,0,7,7,63.853306,0,2,2,2021,6,0,50,48,1,0,0,25.630627,25.630627,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,37.42,35.77,8.333333333333334,1,1,0,0,8,11,5,1,622,86315.461,51671.148,346396.44,202643.41,0,0,4115.896 +12549,15315,27295,-9,27293,27294,1,1,23,0,0,1,1,0,0,0,5,0,0,0,0,0,-1026.7723,-9,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,1,1,2058,0,0,0,0,0,0,-278.15277 +12550,15316,27296,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1044.9773,0,2,2,2021,9,0,0,25,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5449736,0,57.17,50.61,-9,-9,8.333333333333334,1,1,1,0,10,2,1,1,1533,3306.5481,0,0,0,0,0,439.83862 +12550,15317,27297,-9,27296,-9,1,1,23,0,0,0,2,2,-9,0,4,7.8707972,7.8842287,0,0,0,-958.72314,0,2,-9,2021,10,0,20,24,1,1,1,10.731284,10.731284,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,2,3,1,988,-131845.8,-55915.891,0,0,0,0,1483.5461 +12551,15318,27298,27299,-9,-9,1,0,77,0,0,0,1,1,-9,0,4,0,0,0,54,-3,0,0,3,1,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2762399,0,47.3,41.7,33.66,50.84,10,2,3,0,0,0,8,1,1,1575,1068825.8,347217.22,455529.94,0,0,337.41443,697.24457 +12551,15318,27299,27298,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,0,0,54,3,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.66,50.84,47.3,41.7,1.666666666666667,2,3,0,0,4,8,1,1,1575,1068825.8,347217.22,455529.94,0,0,337.41443,697.24457 +12552,15319,27300,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,5.7135291,6.1134448,0,0,-1049.6271,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0545578,5.9416957,50,49,-9,-9,7,1,1,0,0,5,7,2,1,1113,112383.77,0,0,0,0,0,808.56683 +12553,15320,27301,27303,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,7.1643353,7.1633954,0,32,-2,41.514267,0,-9,-9,2021,15,3,20,24,1,3,0,8.1877155,8.1877155,0,0,0,0,0,0,0,2,1,1,0,0,0,47.3,45.59,45.18,54.77,6.666666666666667,1,1,0,0,9,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12553,15320,27302,-9,27301,27303,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-988.5083,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12553,15320,27303,27301,-9,-9,1,1,51,0,2,0,2,2,-9,0,3,7.6184354,7.4950857,0,32,2,63.56987,0,2,2,2021,13,1,40,35,1,1,0,5.728929,5.728929,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,47.3,45.59,5,1,1,0,0,11,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12553,15320,27304,-9,27301,27303,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.08618,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6771116,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,3,10,3,1,1057.25,447444.31,172919.94,293112.38,119316.98,0,0,1770.6277 +12554,15321,27305,-9,-9,-9,1,1,83,0,1,0,2,2,-9,0,4,0,7.3329997,7.2931342,0,0,-938.77679,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4400115,62.93,37.21,-9,-9,10,1,1,0,0,0,7,2,1,729,99926.031,127474.33,0,0,0,0,1991.9214 +12554,15322,27306,-9,27307,27309,1,0,16,0,1,0,3,3,-9,0,3,0,0,0,0,0,-947.45782,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,54,-9,-9,6,1,1,0,0,0,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12554,15322,27307,27309,-9,27305,1,0,39,0,1,0,2,2,-9,0,3,6.4671102,6.5090828,0,3,-14,-164.16689,0,-9,2,2021,10,0,40,60,1,0,0,1.4905906,1.4905906,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.04,55.86,46.39,60.99,8.333333333333334,1,1,0,1,8,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12554,15322,27308,-9,27307,27309,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1056.1118,-9,2,2,2021,23,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.4,58.62,-9,-9,8.333333333333334,1,1,0,1,4,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12554,15322,27309,27307,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.1887207,8.2139797,0,3,14,14.324358,0,-9,-9,2021,9,0,50,50,1,0,0,8.9582739,8.9582739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,49.04,55.86,6.666666666666667,1,1,0,0,12,7,3,1,1346.75,386043.88,40834.258,375338.19,0,0,0,2756.8474 +12555,15323,27310,27311,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.8802142,7.50314,0,10,0,-40.898323,0,3,3,2021,6,0,43,38,1,0,0,5.4543004,5.4543004,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.32,50.22,49.55,55.6,1.666666666666667,1,1,0,0,8,11,4,0,876.5,587352.81,81485.219,478502.81,0,0,0,2704.3682 +12555,15323,27311,27310,-9,-9,1,0,49,0,0,0,3,3,-9,0,3,7.4076595,7.4464474,0,33,0,71.030312,0,-9,1,2021,10,0,25,35,1,0,0,8.156827,8.156827,0,0,0,0,0,0,0,0,0,0,0,0,0,49.55,55.6,58.32,50.22,6.666666666666667,1,1,0,0,6,11,4,0,876.5,587352.81,81485.219,478502.81,0,0,0,2704.3682 +12555,15324,27312,-9,27311,27310,1,1,24,0,0,0,2,2,-9,0,2,8.0604658,7.7711492,0,0,0,-951.50812,0,3,3,2021,8,0,36,38,1,0,1,8.8249941,8.8249941,0,0,0,0,0,0,0,0,0,0,0,0,0,48.43,52.37,-9,-9,8.333333333333334,1,1,0,0,3,11,4,0,283,4014.8484,0,0,0,0,0,718.15088 +12555,15325,27313,-9,27311,27310,1,0,26,0,0,0,2,2,-9,0,3,7.8448806,7.8581886,0,2,-5,106.34763,0,3,3,2021,12,0,40,39,1,0,0,7.6036005,7.6036005,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.6,50.07,17.28,63.4,5,1,1,0,0,7,11,4,0,1188,-20798.621,62401.73,0,0,0,0,849.22937 +12555,15326,27314,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.654808,7.7855506,0,2,5,41.363163,0,-9,-9,2021,31,12,35,0,1,12,0,7.0804763,7.0804763,.05,.05,0,0,0,0,0,0,0,0,0,0,0,17.28,63.4,44.6,50.07,3.333333333333333,1,1,0,0,1,11,4,0,316,-116627.95,-36790.898,0,0,0,0,-123.82665 +12556,15327,27315,27316,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,0,0,35,7,0,0,3,2,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,26.59091,0,7,1,1,0,0,0,36.53,38.79,35.73,27,3.333333333333333,2,3,0,0,0,8,1,0,704,1053148.3,430478.56,333731.34,0,0,0,3048.6431 +12556,15327,27316,27315,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,35,-7,0,0,3,2,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.73,27,36.53,38.79,1.666666666666667,2,3,0,1,0,8,1,0,704,1053148.3,430478.56,333731.34,0,0,0,3048.6431 +12556,15328,27317,-9,27316,27315,1,1,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-952.70306,-9,3,1,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,50.1,56.68,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,2077,-247378.14,0,0,0,0,0,-153.58768 +12557,15329,27318,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,2,7.9068475,8.2806625,0,0,0,-865.48773,0,3,3,2021,11,0,38,42,1,0,0,9.981678,9.981678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.7,51.43,-9,-9,5,1,1,0,0,12,13,4,0,535,-93154.18,124710.09,0,0,0,0,354.48746 +12558,15330,27319,-9,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,2.2452192,2.2676191,0,0,0,-1007.7072,-9,2,2,2021,25,11,40,0,1,11,0,.036068231,.036068231,0,0,0,1,0,0,0,7,0,0,0,7.8898354,0,33.81,63.92,-9,-9,5,1,1,0,0,11,6,2,1,2344,-76527,-9667.373,0,0,0,0,810.44244 +12559,15331,27320,27321,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.0171757,8.0791254,0,6,3,-26.83872,0,3,3,2021,13,1,38,38,1,1,0,11.446154,11.446154,0,0,0,0,0,0,0,2,1,1,0,0,0,37.49,55.42,35.28,47.77,5,1,1,0,0,7,4,3,1,743,746.03125,37531.891,0,0,6130.0347,0,1522.8813 +12559,15331,27321,27320,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,6,-3,-32.246311,0,2,1,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,35.28,47.77,37.49,55.42,5,1,1,1,1,1,4,3,1,743,746.03125,37531.891,0,0,6130.0347,0,1522.8813 +12559,15332,27322,-9,27321,27320,1,1,20,0,0,0,2,2,-9,0,3,7.2268424,7.183815,0,0,0,-1108.8125,0,2,2,2021,8,0,45,36,1,0,1,4.8514438,4.8514438,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,5,1,1,0,0,3,4,3,1,742,3693.4399,0,0,0,0,0,565.84436 +12559,15333,27323,-9,27321,27320,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-998.26575,-9,2,2,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.57,57.78,-9,-9,10,1,1,1,0,3,4,1,1,393,162204.14,0,0,0,0,0,0 +12559,15334,27324,-9,27321,27320,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1061.7844,-9,2,2,2021,12,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.62,39.5,-9,-9,6.666666666666667,1,1,0,1,0,4,1,1,610,148415.78,0,0,0,0,0,0 +12560,15335,27325,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.6484866,6.3387523,0,0,-992.4187,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3892536,6.499784,53.37,32.38,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1745,297006.19,62683.688,120198.45,0,0,0,837.61829 +12561,15336,27326,27327,-9,-9,1,1,76,0,0,0,1,1,-9,0,5,0,8.7576914,8.6164513,55,-1,70.929153,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,7.7558017,8.5465136,53.34,56.67,32.16,35.9,8.333333333333334,1,1,0,0,10,6,4,1,534,1210027.5,838378.75,371216.81,0,0,1514.7854,5929.2109 +12561,15336,27327,27326,-9,-9,1,0,77,0,0,0,1,1,-9,0,2,0,6.9803977,6.92519,55,1,-35.22303,0,3,2,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3866262,7.0650282,32.16,35.9,53.34,56.67,1.666666666666667,1,1,0,0,0,6,4,1,534,1210027.5,838378.75,371216.81,0,0,1514.7854,5929.2109 +12562,15337,27328,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,9.6254835,9.7795706,0,0,0,-1005.6916,0,2,2,2021,7,0,15,15,1,0,0,104.04505,104.04505,0,0,.05,0,0,0,0,0,1,1,0,6.3262649,0,62.66,52.4,-9,-9,1.666666666666667,1,1,0,0,6,2,5,1,1165,534967.81,255833.83,155771.61,0,0,0,8303.0479 +12563,15338,27329,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.3451562,7.476193,0,0,-1145,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,.21501367,7.3648582,62.49,55.09,-9,-9,10,1,1,0,0,0,12,3,1,2505,150995.22,199778.84,60021.273,0,0,0,788.12769 +12564,15339,27330,27332,-9,-9,1,0,52,0,1,0,2,2,-9,0,3,8.5436258,8.3712254,0,11,-4,-52.689754,0,3,3,2021,13,3,42,35,1,3,0,11.027954,11.027954,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,48.26,50.58,5,1,1,0,0,12,9,5,1,570,387827.56,56147.477,0,0,0,0,5921.9287 +12564,15339,27331,-9,27330,27332,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.3767,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,570,387827.56,56147.477,0,0,0,0,5921.9287 +12564,15339,27332,27330,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,9.2774286,9.1632767,0,11,4,-59.552402,0,2,2,2021,12,0,75,40,1,0,0,18.734947,18.734947,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.26,50.58,46.08,57.2,6.666666666666667,1,1,0,0,12,9,5,1,570,387827.56,56147.477,0,0,0,0,5921.9287 +12564,15340,27333,-9,27330,27332,1,1,23,0,1,0,1,1,1,0,4,7.4396095,7.6679435,0,0,0,-867.76208,-9,2,1,2021,11,0,20,0,1,0,1,9.291276,9.291276,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,595,118702.57,-205754.38,0,0,0,0,365.84164 +12565,15341,27334,27335,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.7973671,9.055809,5.9425464,7,4,-134.0191,0,-9,-9,2021,11,0,50,55,1,0,0,15.442604,15.442604,.05,.05,0,0,0,0,0,0,1,1,0,5.399128,5.617929,52,54.51,43.42,62.33,8.333333333333334,1,1,0,0,8,5,5,1,472.5,1540518.5,1185080.5,261277.69,0,12659.273,0,6124.4121 +12565,15341,27335,27334,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5191603,8.563508,0,7,-4,20.798666,0,-9,-9,2021,21,8,82,49,1,8,0,6.1938939,6.1938939,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.42,62.33,52,54.51,3.333333333333333,1,1,0,1,8,5,5,1,472.5,1540518.5,1185080.5,261277.69,0,12659.273,0,6124.4121 +12566,15342,27336,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,6.1068912,6.7120366,0,0,0,-912.76587,0,-9,-9,2021,14,2,25,32,1,2,0,2.2985818,2.2985818,0,0,0,0,0,0,0,0,1,1,0,0,0,40.52,34.42,-9,-9,6.666666666666667,1,1,0,0,2,4,2,0,3029,-177334.22,108278.71,45255.855,0,0,0,1306.6396 +12567,15343,27337,27338,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.2757015,8.3500319,0,8,4,-25.158459,0,-9,-9,2021,10,0,50,50,1,0,0,10.803591,10.803591,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.63,51.79,35.97,61.83,5,1,1,0,0,11,11,4,1,346.5,498902.81,605910.63,0,0,8907.4863,1861.0393,3441.3535 +12567,15343,27338,27337,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.1323748,8.344552,0,28,-4,-16.554106,0,2,2,2021,13,4,33,30,1,4,0,13.076981,13.076981,0,0,0,0,0,0,0,0,1,1,0,0,0,35.97,61.83,48.63,51.79,5,1,1,0,0,11,11,4,1,346.5,498902.81,605910.63,0,0,8907.4863,1861.0393,3441.3535 +12568,15344,27339,-9,-9,-9,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-944.82025,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,6,5,1,1,827,-41686.898,0,0,0,0,0,1071.8724 +12569,15345,27340,27341,-9,-9,1,1,59,0,0,0,3,3,-9,0,4,0,0,0,8,6,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,42.52,38.79,8,1,1,1,0,0,12,1,0,660,-17815.914,0,0,0,-1988.3525,0,1363.6704 +12569,15345,27341,27340,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,8,-6,0,0,3,-9,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,42.52,38.79,54,53,0,1,1,1,0,0,12,1,0,660,-17815.914,0,0,0,-1988.3525,0,1363.6704 +12570,15346,27342,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,4,9.0679541,9.2960024,0,0,0,-885.25983,0,2,1,2021,12,0,46,46,1,0,0,21.903423,21.903423,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,12,8,5,1,697,661192.19,142034.2,606364.75,247233.97,0,732.33258,2178.9192 +12571,15347,27343,27345,-9,-9,1,0,42,0,2,0,1,1,-9,0,2,8.414257,8.3353415,0,21,-6,36.318108,0,3,2,2021,19,8,32,36,1,8,0,16.395018,16.395018,0,0,0,0,0,0,0,0,1,1,0,0,0,34.27,44.45,50.48,56.4,6.666666666666667,1,1,0,0,14,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12571,15347,27344,-9,27343,27345,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.7139,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12571,15347,27345,27343,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,8.7691593,8.5628109,0,19,6,32.615032,0,3,3,2021,9,1,85,40,1,1,0,6.0253081,6.0253081,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,34.27,44.45,8.333333333333334,2,3,0,0,14,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12571,15347,27346,-9,27343,27345,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-953.18744,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,4,2,-9,0,0,4,5,1,1183.25,603986.56,218089.23,317615.47,38298.398,8914.9961,0,4725.2827 +12572,15348,27347,-9,-9,-9,1,0,34,0,0,0,2,2,-9,1,3,5.0264645,5.280014,0,0,0,-935.21649,0,2,3,2021,19,7,6,0,1,7,0,3.1228027,3.1228027,0,0,0,0,0,0,0,0,1,1,0,0,0,29.86,45.36,-9,-9,1.666666666666667,1,1,0,0,1,7,2,1,750,131634.92,0,0,0,0,0,178.11305 +12573,15349,27348,27349,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.836627,7.7239327,0,9,11,-67.107567,0,2,3,2021,8,0,38,41,1,0,0,6.8716059,6.8716059,.05,.05,0,0,0,0,0,0,0,0,0,1.7376842,0,57.76,48.98,38.21,54.03,6.666666666666667,1,1,0,0,10,5,4,1,694.5,-13389.448,-3804.2993,0,0,2313.6489,780.90729,2809.5068 +12573,15349,27349,27348,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.2271576,8.1179047,0,9,-11,-29.07649,0,-9,-9,2021,14,2,55,50,1,2,0,9.1158581,9.1158581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,57.76,48.98,6.666666666666667,1,1,0,0,10,5,4,1,694.5,-13389.448,-3804.2993,0,0,2313.6489,780.90729,2809.5068 +12574,15350,27350,-9,-9,-9,1,0,66,1,2,0,2,2,-9,0,3,0,7.5190272,7.7528014,0,0,-1031.0454,0,3,3,2021,6,0,0,30,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.4260073,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,166,50902.184,88972.109,0,0,0,0,1355.4274 +12574,15351,27351,-9,27352,27354,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.8939,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12574,15351,27352,27354,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,7.474545,7.5439467,0,2,-6,12.680416,0,-9,-9,2021,12,1,40,42,1,1,0,4.6390448,4.6390448,0,0,0,0,0,0,0,0,1,1,0,0,0,43.96,55.64,46.67,55.57,8.333333333333334,1,1,0,0,8,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12574,15351,27353,-9,27352,27354,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.9032,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12574,15351,27354,27352,27350,-9,1,1,37,1,2,0,2,2,-9,0,3,0,0,0,2,6,-50.293751,0,2,-9,2021,11,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4274025,0,46.67,55.57,43.96,55.64,5,1,1,0,0,6,9,2,1,1743.75,43291.402,16356.044,0,0,5540.5762,976.0174,1262.7097 +12575,15352,27355,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.1177664,7.7878137,0,0,0,-1116.1106,0,2,2,2021,7,0,45,40,1,0,0,7.8719859,7.8719859,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,5,11,4,0,1327,-57970.477,0,0,0,0,0,1428.4414 +12576,15353,27356,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.5778513,7.2380371,0,0,-895.13159,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7169962,7.5671515,54.85,45.16,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,911,413775.13,453928.81,187823.33,0,11785.365,0,1183.2135 +12577,15354,27357,27358,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,7.7450576,7.5912509,36,-1,-8.383502,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9384985,7.5030994,63.95,43.63,51.14,60.45,8.333333333333334,1,1,0,0,6,4,3,1,2314.5,2352083.5,1254761.3,263029.31,0,0,0,5073.417 +12577,15354,27358,27357,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,0,7.4596639,8.0065441,36,1,107.87431,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2027378,7.7240424,51.14,60.45,63.95,43.63,8.333333333333334,1,1,0,0,10,4,3,1,2314.5,2352083.5,1254761.3,263029.31,0,0,0,5073.417 +12578,15355,27359,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-982.04346,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,1129,171647.5,0,77544.539,0,0,0,1102.3893 +12578,15356,27360,-9,27359,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3353186,8.2886267,0,0,0,-1024.254,0,3,-9,2021,8,0,40,40,1,0,0,14.452914,14.452914,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,12,6,4,1,836,35510.734,-29421.309,56397.637,18359.377,5860.0322,7072.9888,1947.4658 +12579,15357,27361,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5570335,8.6009855,0,0,0,-1057.6909,-9,2,2,2021,18,6,81,0,1,6,0,7.711483,7.711483,.05,.05,0,0,0,0,0,7,0,0,0,2.472923,0,29.91,57.76,-9,-9,5,1,1,0,0,12,12,5,1,1951,410557.56,-68241.891,143800.31,0,0,0,3010.8406 +12580,15358,27362,27363,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.8120117,8.2416325,28,1,33.282784,0,2,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,7.3238292,7.8125072,55.94,47.09,43.59,46.41,8.333333333333334,1,1,0,0,5,8,4,1,669.5,2282586,1250553.1,589190.75,0,0,0,3451.394 +12580,15358,27363,27362,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.1780438,7.5827827,28,-1,111.97688,0,1,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.8951602,7.1168051,43.59,46.41,55.94,47.09,8.333333333333334,1,1,0,0,10,8,4,1,669.5,2282586,1250553.1,589190.75,0,0,0,3451.394 +12581,15359,27364,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,1,0,7.6159496,7.41155,0,0,-1198.7939,0,3,-9,2021,14,4,0,0,4,4,0,0,0,0,0,0,1,125.89291,0,1173.3698,0,1,1,0,0,7.6221232,28.7,26.71,-9,-9,5,1,1,0,0,0,13,3,0,520,311674.88,256551.33,230033.22,0,0,0,1789.5682 +12582,15360,27365,27366,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,6.8802199,6.9220219,6.4965396,5,0,121.64843,0,-9,-9,2021,6,0,16,21,1,0,0,5.5932193,5.5932193,0,0,0,0,0,0,0,0,1,1,0,0,6.4307976,44.13,57.97,37.83,42.07,10,1,1,0,0,11,1,2,1,425.5,965173.5,214773.56,640187.13,0,0,0,2411.5273 +12582,15360,27366,27365,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,4.8815713,5.1689944,42,9,146.62508,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.6960139,5.2060738,37.83,42.07,44.13,57.97,5,1,1,0,0,8,1,2,1,425.5,965173.5,214773.56,640187.13,0,0,0,2411.5273 +12583,15361,27367,-9,27369,27368,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.62457,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15361,27368,27369,-9,-9,1,1,45,0,2,0,3,3,-9,0,2,8.5069056,8.6418657,0,19,5,141.24933,0,3,3,2021,12,0,40,40,1,0,0,13.839737,13.839737,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.36,39.55,61.05,28.35,6.666666666666667,2,3,0,0,9,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15361,27369,27368,-9,-9,1,0,40,0,2,0,3,3,-9,0,3,0,0,0,19,-5,92.179794,0,2,2,2021,15,4,0,10,3,4,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,61.05,28.35,41.36,39.55,10,2,3,0,0,2,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15361,27370,-9,27369,27368,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-891.53418,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,737.25,387786.63,403517,298005.94,138752.13,0,0,2094.6072 +12583,15362,27371,-9,27369,27368,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1066.3716,-9,3,3,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,65.66,30.39,-9,-9,10,2,3,0,0,2,7,1,1,458,54029.551,0,0,0,0,149.11879,0 +12584,15363,27372,-9,27373,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1066.2217,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,1,0,463.66666,-9363.0332,0,0,0,0,0,1254.1169 +12584,15363,27373,-9,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1065.4841,0,3,-9,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,8.333333333333334,1,1,0,0,2,6,1,0,463.66666,-9363.0332,0,0,0,0,0,1254.1169 +12584,15363,27374,-9,27373,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.2468,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,6,1,0,463.66666,-9363.0332,0,0,0,0,0,1254.1169 +12585,15364,27375,-9,27377,27378,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.38098,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27376,-9,27377,27378,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1030.4541,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27377,27378,-9,-9,1,0,29,0,3,0,2,2,-9,0,4,0,0,0,2,-2,22.416662,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.48,59.49,38.18,55.38,6.666666666666667,1,1,0,0,10,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27378,27377,-9,-9,1,1,31,0,3,0,2,2,-9,0,3,8.6850491,8.7610044,0,2,2,68.106575,0,-9,-9,2021,20,7,45,46,1,7,0,13.712503,13.712503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.18,55.38,32.48,59.49,5,1,1,0,0,12,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12585,15364,27379,-9,27377,27378,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-881.46539,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,1012.2,94123.359,26773.391,0,0,0,0,2809.3987 +12586,15365,27380,27381,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,8.6401815,8.5290022,51,0,91.679306,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5990562,8.7207098,58.3,52.91,52.4,52.91,8.333333333333334,1,1,0,0,11,10,5,1,2403.5,1668544,871259.19,415614.88,0,0,0,4874.9873 +12586,15365,27381,27380,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.2806058,7.5673838,51,0,-1.276898,0,1,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0057993,52.4,52.91,58.3,52.91,8.333333333333334,1,1,0,0,0,10,5,1,2403.5,1668544,871259.19,415614.88,0,0,0,4874.9873 +12587,15366,27382,27383,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6906848,7.6991582,0,7,-8,16.380068,0,-9,-9,2021,8,0,34,35,1,0,0,7.3647451,7.3647451,0,0,0,0,0,0,0,2,0,0,0,.2937071,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,9,4,1,914.5,555058.19,299523.22,244554.81,21045.479,443.21729,0,2823.3291 +12587,15366,27383,27382,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.3885355,8.2083292,4.6216726,7,8,-32.107212,0,3,3,2021,8,0,38,43,1,0,0,11.29046,11.29046,.05,.05,.05,0,0,0,0,0,0,0,0,3.4532411,4.5855389,54.2,57.49,57.16,56.15,1.666666666666667,1,1,0,0,8,9,4,1,914.5,555058.19,299523.22,244554.81,21045.479,443.21729,0,2823.3291 +12587,15367,27384,-9,27382,27383,1,1,27,0,0,0,1,1,-9,0,4,8.1965246,8.5405226,0,0,0,-919.18622,0,3,3,2021,11,0,39,0,1,0,1,12.401903,12.401903,.05,.05,0,0,0,0,0,0,0,0,0,5.572382,0,48.28,60.18,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,576,240505.92,111027.76,0,0,0,0,1369.6854 +12587,15368,27385,-9,27382,27383,1,1,25,0,0,0,1,1,-9,0,3,7.3220816,7.8276639,0,0,0,-887.68945,0,2,2,2021,15,4,33,12,1,4,1,6.1670804,6.1670804,0,0,0,0,0,0,0,0,0,0,0,0,0,24.09,61.92,-9,-9,5,1,1,0,0,1,9,3,1,980,15130.343,0,0,0,0,0,-160.54257 +12588,15369,27386,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.3092232,7.9600096,0,0,-921.67023,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8006227,8.2371864,57.16,56.15,-9,-9,10,1,1,0,0,0,9,4,1,385,1375816.1,1153125,0,0,0,10164.676,3007.197 +12589,15370,27387,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1008.6321,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,53.3,24.34,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,915,-96886.359,0,0,0,0,0,956.86591 +12590,15371,27388,27390,-9,-9,1,1,35,1,2,0,2,2,-9,0,5,8.4695807,8.6375875,0,6,0,8.3058004,0,-9,-9,2021,4,0,24,20,1,0,0,35.969715,35.969715,.05,.05,0,0,0,0,0,0,1,1,0,7.2964826,0,51.68,58.85,57.16,56.15,10,1,1,0,0,9,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12590,15371,27389,-9,27390,27388,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-951.92621,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12590,15371,27390,27388,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,7.7042007,7.480391,0,6,0,105.62897,0,-9,-9,2021,5,0,9,7,1,0,0,30.162128,30.162128,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.68,58.85,10,1,1,0,0,10,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12590,15371,27391,-9,27390,27388,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.0667,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,392.5,101119,193720.53,304575,193142.23,3870.4712,13964.41,3686.7502 +12591,15372,27392,27393,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.7150917,6.8886037,45,2,-21.544788,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4146442,6.8279047,60.44,46.58,47.22,53.97,6.666666666666667,1,1,0,0,10,6,2,1,3496,184544.8,82193.359,112003.67,0,0,0,1609.1011 +12591,15372,27393,27392,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,46,-2,14.863678,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.22,53.97,60.44,46.58,6.666666666666667,1,1,0,0,0,6,2,1,3496,184544.8,82193.359,112003.67,0,0,0,1609.1011 +12592,15373,27394,27396,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,0,6.4684763,5.9342556,1,3,-179.01274,0,2,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0652361,0,54.69,57.47,57.57,49.69,8.333333333333334,1,1,0,0,6,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12592,15373,27395,-9,27394,27396,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.4412,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,6,1,1,-9,0,0,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12592,15373,27396,27394,-9,-9,1,1,29,1,2,0,2,2,-9,0,2,7.9322395,7.8122787,0,1,-3,37.000938,-9,-9,-9,2021,6,0,36,0,1,0,0,8.6352386,8.6352386,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,54.69,57.47,10,1,1,0,1,2,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12592,15373,27397,-9,27394,27396,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.4004,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,1,1,-9,0,0,1,3,0,614.75,285798.09,17158.193,139274.27,0,0,0,2492.1187 +12593,15374,27398,27399,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,4.7627025,5.0060496,67,3,-46.179184,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,1.5728381,5.0911264,54.53,43.74,66.01000000000001,31.02,8.333333333333334,1,1,0,0,0,2,2,1,824,427606.81,166421.53,184271.28,0,0,175.35022,2442.0078 +12593,15374,27399,27398,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,67,-3,140.18307,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,27.064245,0,0,1,1,0,2.259665,0,66.01000000000001,31.02,54.53,43.74,0,1,1,0,0,0,2,2,1,824,427606.81,166421.53,184271.28,0,0,175.35022,2442.0078 +12594,15375,27400,-9,27401,27402,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.6203,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,225,815410.69,586495.81,178002.5,39144.438,1821.7865,3364.3674,3354.2837 +12594,15375,27401,27402,-9,-9,1,0,41,0,2,0,2,2,-9,1,3,8.1199503,8.0041475,0,8,-3,62.753166,0,3,2,2021,9,0,48,36,1,0,0,6.0676208,6.0676208,0,0,0,0,0,0,0,78,1,1,0,0,0,52,54.51,60.12,54.8,8.333333333333334,1,1,0,0,8,10,4,1,225,815410.69,586495.81,178002.5,39144.438,1821.7865,3364.3674,3354.2837 +12594,15375,27402,27401,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,7.9382405,7.9394822,0,8,3,-.023190286,0,-9,-9,2021,9,0,39,43,1,0,0,8.1351156,8.1351156,0,0,.05,0,0,0,0,87,1,1,0,0,0,60.12,54.8,52,54.51,8.333333333333334,1,1,0,0,11,10,4,1,225,815410.69,586495.81,178002.5,39144.438,1821.7865,3364.3674,3354.2837 +12595,15376,27403,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1061.6587,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.87325263,0,45.59,34.4,-9,-9,6.666666666666667,1,1,0,0,2,7,1,1,1251,105575.01,0,0,0,0,0,387.08701 +12596,15377,27404,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,5.2259574,5.1556706,0,0,0,-943.24634,0,3,3,2021,16,4,40,32,1,4,0,.47902015,.47902015,0,0,0,0,0,0,0,2,0,0,0,0,0,46.07,37.4,-9,-9,5,1,1,0,0,11,2,2,1,403,81127.555,-8054.647,0,0,0,-60.044453,-297.27335 +12597,15378,27405,27406,-9,-9,1,0,64,0,0,0,3,3,-9,0,1,0,0,0,25,0,0,0,3,3,2021,23,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,24.43,37.96,52,47,3.333333333333333,1,1,0,0,0,5,1,0,363,-14423.859,0,129935.1,0,0,0,1483.5848 +12597,15378,27406,27405,-9,-9,1,1,64,0,0,0,3,3,-9,0,3,0,0,0,25,0,0,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,24.43,37.96,7,1,1,0,0,0,5,1,0,363,-14423.859,0,129935.1,0,0,0,1483.5848 +12598,15379,27407,27408,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5833721,8.7812109,0,4,1,115.57188,0,-9,-9,2021,8,0,40,40,1,0,0,15.961161,15.961161,.05,.05,0,0,0,0,0,0,0,0,0,.030930288,0,49.46,56.91,48.87,58.55,8.333333333333334,1,1,0,0,5,6,5,1,670.5,559228.38,246987.83,274538.53,142524.2,2541.9243,0,5549.0732 +12598,15379,27408,27407,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,9.0964546,9.1515856,0,4,-1,-61.851955,0,1,3,2021,12,2,37,40,1,2,0,33.503323,33.503323,.05,.05,0,0,0,0,0,0,0,0,0,4.4512591,0,48.87,58.55,49.46,56.91,8.333333333333334,1,1,0,0,9,6,5,1,670.5,559228.38,246987.83,274538.53,142524.2,2541.9243,0,5549.0732 +12599,15380,27409,27411,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,0,0,0,27,-1,47.316025,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.8876238,0,57.06,57.76,57.16,56.15,10,1,1,1,0,11,6,5,1,721,1434423.3,829391.13,489609.19,61468.758,10380.884,2172.9792,6244.5269 +12599,15380,27410,-9,27409,27411,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-905.55298,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,5,1,721,1434423.3,829391.13,489609.19,61468.758,10380.884,2172.9792,6244.5269 +12599,15380,27411,27409,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.7634125,9.42383,0,27,1,96.06221,0,2,2,2021,10,0,45,41,1,0,0,42.869007,42.869007,.05,.05,0,0,0,0,0,0,0,0,0,7.5349398,0,57.16,56.15,57.06,57.76,10,1,1,0,0,10,6,5,1,721,1434423.3,829391.13,489609.19,61468.758,10380.884,2172.9792,6244.5269 +12600,15381,27412,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.4697089,6.3366227,0,0,-1127.2898,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,6.9278502,3.4803441,63.849655,0,1,1,0,0,6.4200559,56.14,17.24,-9,-9,10,1,1,0,0,0,5,2,0,396,307833.69,32936.082,0,0,0,0,1303.3571 +12601,15382,27413,27414,-9,-9,1,1,48,1,3,0,2,2,-9,0,3,8.0764227,7.9849782,0,5,14,10.563264,0,-9,-9,2021,11,2,50,46,1,2,0,5.1517859,5.1517859,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.44,52.07,47.11,43.13,8.333333333333334,1,1,0,0,3,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12601,15382,27414,27413,-9,-9,1,0,34,1,3,0,2,2,-9,0,3,0,0,0,5,-14,-38.422653,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.11,43.13,43.44,52.07,6.666666666666667,1,1,0,0,7,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12601,15382,27415,-9,27414,27413,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1082.2843,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12601,15382,27416,-9,27414,27413,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.9426,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,508,180616.38,103831.03,173115.83,36378.883,3471.7717,2059.9678,1602.6508 +12602,15383,27417,27419,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.8628378,7.5770531,0,20,4,-3.728013,0,2,2,2021,6,0,20,18,1,0,0,13.09201,13.09201,.05,.05,0,0,0,0,0,0,0,0,0,7.0462794,0,54.2,57.49,46.98,59.35,8.333333333333334,1,1,0,0,2,9,5,1,1112,857444.5,303341.53,773396.13,229350.31,0,0,5181.1714 +12602,15383,27418,-9,27417,27419,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.51154,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,1112,857444.5,303341.53,773396.13,229350.31,0,0,5181.1714 +12602,15383,27419,27417,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,9.5475006,9.7000961,0,20,-4,14.05574,0,2,2,2021,12,0,40,50,1,0,0,42.942364,42.942364,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.98,59.35,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,1,1112,857444.5,303341.53,773396.13,229350.31,0,0,5181.1714 +12603,15384,27420,-9,27423,27421,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.266,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12603,15384,27421,27423,-9,-9,1,1,63,0,1,0,2,2,-9,0,4,8.0692558,7.9115977,0,20,-1,-22.488159,0,3,-9,2021,6,0,40,40,1,0,0,7.628006,7.628006,0,0,0,0,0,0,0,0,1,1,0,0,0,46.65,53.97,55.5,50.04,8.333333333333334,2,3,0,0,9,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12603,15384,27422,-9,-9,27421,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1103.7126,-9,-9,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.54,58.81,-9,-9,8.333333333333334,3,4,0,0,0,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12603,15384,27423,27421,-9,-9,1,0,64,0,1,0,1,1,-9,0,4,0,0,0,22,1,109.52252,0,3,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.5,50.04,46.65,53.97,10,2,3,0,0,5,8,3,1,572.75,982157.38,547687.31,334565.22,0,0,0,2204.4102 +12604,15385,27424,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.6760688,7.25425,0,0,-1035.3132,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,7.834662,48.8,49.1,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,216,506200.03,146510.64,298045.19,0,0,0,792.50055 +12605,15386,27425,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,7.5008283,7.4117098,0,0,-1082.6542,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0424055,7.1648359,50.27,44.25,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,832,1207761.1,218039.13,658976.06,0,0,0,1323.1323 +12606,15387,27426,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,6.2216134,6.3879499,0,0,-1000.4173,0,2,2,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9948916,9.960000000000001,48.45,-9,-9,3.333333333333333,1,1,0,1,0,8,2,1,246,173169.27,0,0,0,0,0,455.27258 +12607,15388,27427,27428,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,0,8.4366636,8.3190928,37,7,72.740814,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.0226655,8.5263805,54.61,51.04,57.16,56.15,8.333333333333334,1,1,0,0,5,2,4,1,621.5,1694789.1,1265370.9,175490.86,0,0,1159.9558,2158.5188 +12607,15388,27428,27427,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,6.548409,6.0850387,38,-7,72.094078,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4146266,6.3416429,57.16,56.15,54.61,51.04,8.333333333333334,1,1,0,0,8,2,4,1,621.5,1694789.1,1265370.9,175490.86,0,0,1159.9558,2158.5188 +12608,15389,27429,-9,27431,27430,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.32855,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,405,-77979.086,-12602.893,0,0,0,0,2303.5637 +12608,15389,27430,27431,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.62115,7.2144141,0,4,3,-34.71616,0,-9,-9,2021,2,0,30,0,1,0,0,6.0995116,6.0995116,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.13,49.27,55.79,52.62,8.333333333333334,1,1,0,0,8,9,2,0,405,-77979.086,-12602.893,0,0,0,0,2303.5637 +12608,15389,27431,27430,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,6.9402881,7.0373974,0,4,-3,-15.555064,0,2,3,2021,7,0,17,24,1,0,0,6.9802475,6.9802475,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,60.13,49.27,10,1,1,0,0,6,9,2,0,405,-77979.086,-12602.893,0,0,0,0,2303.5637 +12609,15390,27432,27433,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,8.0180922,7.7487636,9,8,86.842369,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8981924,7.944078,55.35,41.97,30.29,21.51,8.333333333333334,1,1,0,0,2,2,4,1,485,1822208.8,488540.88,354863.13,0,0,0,4026.3135 +12609,15390,27433,27432,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,6.775063,6.7373548,9,-8,-65.541519,0,3,2,2021,31,12,0,0,4,12,0,0,0,0,0,0,1,0,2.3615234,0,0,1,1,0,4.052372,7.1618943,30.29,21.51,55.35,41.97,6.666666666666667,1,1,0,0,7,2,4,1,485,1822208.8,488540.88,354863.13,0,0,0,4026.3135 +12610,15391,27434,27435,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,2.202508,2.0312393,0,11,-4,-49.044155,0,3,3,2021,18,7,23,26,1,7,0,.045594439,.045594439,0,0,0,0,0,0,0,0,0,0,0,1.5580704,0,43.65,58.28,48.31,49.46,5,1,1,0,0,12,6,5,1,1996,1903316.6,1382355,287639.5,0,662.78784,0,2692.177 +12610,15391,27435,27434,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.9653921,8.9500008,0,11,4,14.76081,0,2,2,2021,12,0,36,46,1,0,0,28.409689,28.409689,0,0,.05,0,0,0,0,0,0,0,0,2.6612062,0,48.31,49.46,43.65,58.28,8.333333333333334,1,1,0,0,12,6,5,1,1996,1903316.6,1382355,287639.5,0,662.78784,0,2692.177 +12611,15392,27436,27437,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,50,-8,109.66047,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2776484,0,63.41,39.7,51.83,57.2,10,1,1,0,0,0,10,4,1,766.5,613376.75,178867.27,355948,0,0,0,3917.9668 +12611,15392,27437,27436,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,8.8171787,8.9201908,50,8,8.3307962,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.5099707,51.83,57.2,63.41,39.7,8.333333333333334,1,1,0,0,0,10,4,1,766.5,613376.75,178867.27,355948,0,0,0,3917.9668 +12612,15393,27438,-9,27440,27439,1,0,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1045.1993,-9,2,1,2021,6,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.6486874,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1377,895487.13,334340.06,295351.56,0,0,0,2235.2026 +12612,15393,27439,27440,-9,-9,1,1,50,0,1,0,1,1,-9,0,5,7.6559649,7.655827,0,8,-7,-40.336491,0,2,2,2021,7,0,37,40,1,0,0,6.2318788,6.2318788,.05,.05,0,0,0,0,0,0,0,0,0,2.478914,0,62.39,56.71,57.18,48.06,5,1,1,0,0,9,12,4,1,1377,895487.13,334340.06,295351.56,0,0,0,2235.2026 +12612,15393,27440,27439,-9,-9,1,0,57,0,1,0,2,2,-9,0,3,8.2700291,8.1896496,6.1138487,8,7,-32.265812,0,2,2,2021,5,0,38,45,1,0,0,10.67747,10.67747,.05,.05,0,0,0,0,0,42,0,0,0,6.2843156,0,57.18,48.06,62.39,56.71,6.666666666666667,1,1,0,0,8,12,4,1,1377,895487.13,334340.06,295351.56,0,0,0,2235.2026 +12612,15394,27441,-9,27440,27439,1,1,19,0,1,0,2,2,-9,0,5,7.9068642,7.8826184,0,0,0,-1095.395,0,2,1,2021,9,0,40,45,1,0,1,7.3062401,7.3062401,.05,.05,0,0,0,0,0,0,0,0,0,2.5977855,0,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,2,12,4,1,584,-128226.44,-123620.86,0,0,4694.6196,0,1044.6934 +12613,15395,27442,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.771524,7.7628269,0,0,-1062.7561,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2274289,7.8168077,33.86,52.18,-9,-9,3.333333333333333,1,1,0,0,7,10,3,0,807,556655.44,67766.555,250333.84,0,0,0,2333.2595 +12614,15396,27443,-9,27444,27445,1,0,47,0,0,0,2,2,-9,0,3,9.2645187,9.0219965,0,0,0,-964.06573,0,2,3,2021,11,0,41,43,1,0,0,24.954779,24.954779,.05,.05,0,0,0,0,0,0,1,1,0,7.5448923,0,54.38,49.27,-9,-9,3.333333333333333,1,1,0,0,9,8,5,1,286,-113279.04,102819.18,0,0,0,768.53174,3905.0264 +12614,15397,27444,27445,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,2,-7,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.76,38.46,44.97,52.64,6.666666666666667,1,1,0,0,0,8,1,1,1184,0,0,0,0,0,0,864.97351 +12614,15397,27445,27444,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,0,0,2,7,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.97,52.64,48.76,38.46,5,1,1,0,0,0,8,1,1,1184,0,0,0,0,0,0,864.97351 +12615,15398,27446,27448,-9,-9,1,1,37,1,2,0,2,2,-9,0,4,8.6331339,8.612606,0,8,1,9.1755009,0,2,-9,2021,8,0,40,40,1,0,0,19.99889,19.99889,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,44.83,55.13,8.333333333333334,1,1,0,0,9,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12615,15398,27447,-9,27448,27446,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.28479,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12615,15398,27448,27446,-9,-9,1,0,36,1,2,0,1,1,-9,0,3,8.3906136,8.4393692,0,8,-1,-42.944408,0,2,-9,2021,11,0,25,41,1,0,0,16.303595,16.303595,0,0,0,0,0,0,0,0,1,1,0,4.3496141,0,44.83,55.13,58.15,52.91,8.333333333333334,1,1,0,0,10,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12615,15398,27449,-9,27448,27446,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.98871,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,463.25,66803.953,-30885.508,0,0,391.20673,-758.73126,3913.7813 +12616,15399,27450,27451,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,7.1614757,6.6703715,55,-6,-62.299744,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5439806,51,46,54,46,8.333333333333334,1,1,0,0,0,11,2,1,626,304665.41,135091.92,145033.84,0,5292.8447,0,2141.3071 +12616,15399,27451,27450,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.3940215,6.7792544,55,6,4.7889104,0,3,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7115154,54,46,51,46,8,1,1,0,0,0,11,2,1,626,304665.41,135091.92,145033.84,0,5292.8447,0,2141.3071 +12617,15400,27452,27455,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,8.952529,9.3492451,0,17,-1,44.192604,0,2,2,2021,3,0,36,50,1,0,0,32.272964,32.272964,0,0,0,0,0,0,0,2,0,0,0,4.3039713,0,57.16,56.15,35.97,61.83,10,1,1,0,0,12,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12617,15400,27453,-9,27455,27452,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-937.5321,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12617,15400,27454,-9,27455,27452,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.54272,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12617,15400,27455,27452,-9,-9,1,0,58,0,2,0,1,1,-9,0,4,9.0214281,9.178174,0,37,1,-62.38718,0,2,1,2021,19,6,20,15,1,6,0,41.832001,41.832001,0,0,0,0,0,0,0,2,0,0,0,0,0,35.97,61.83,57.16,56.15,8.333333333333334,1,1,0,0,12,6,5,1,698.25,1585526,472594.75,869737.06,316922.09,0,0,5754.604 +12618,15401,27456,27458,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,0,0,0,7,-14,92.507515,0,3,2,2021,11,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,53.05,52.71,8.333333333333334,1,1,0,0,5,4,3,0,931.66669,110862.4,0,193923.7,112993.96,0,0,2113.1809 +12618,15401,27457,-9,27456,27458,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-929.81165,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,931.66669,110862.4,0,193923.7,112993.96,0,0,2113.1809 +12618,15401,27458,27456,-9,-9,1,1,40,1,1,0,2,2,-9,0,4,7.6719499,7.8150868,0,7,14,63.314152,0,2,2,2021,12,0,35,40,1,0,0,8.2796917,8.2796917,0,0,0,0,0,0,0,0,1,1,0,0,0,53.05,52.71,45.91,59.89,8.333333333333334,1,1,0,0,9,4,3,0,931.66669,110862.4,0,193923.7,112993.96,0,0,2113.1809 +12619,15402,27459,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.7471957,7.6755047,0,0,-1071.8688,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5378642,7.9581828,59.53,56.44,-9,-9,10,1,1,0,0,0,10,3,1,258,867180.94,328736.09,449109.16,0,0,0,1761.1267 +12620,15403,27460,27461,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.4686122,6.637567,43,-1,118.94019,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6871185,46.08,57.2,51.14,60.45,6.666666666666667,1,1,0,0,9,2,2,1,691.5,572996.19,380781.22,154450.83,0,0,0,574.87158 +12620,15403,27461,27460,-9,-9,1,1,65,0,0,0,2,2,-9,0,5,0,7.189055,6.7305074,43,1,-18.314434,0,3,3,2021,10,0,0,42,4,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,0,6.9610267,51.14,60.45,46.08,57.2,6.666666666666667,1,1,0,0,12,2,2,1,691.5,572996.19,380781.22,154450.83,0,0,0,574.87158 +12621,15404,27462,27463,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.2452469,8.4969072,54,1,23.979769,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5415549,8.1936512,44.76,50.85,38.15,42.16,6.666666666666667,1,1,0,0,0,10,5,1,535.5,1792071.8,898903.19,691360.25,0,11000.843,0,6596.1885 +12621,15404,27463,27462,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,8.5757418,8.6881838,54,-1,-32.737045,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0101767,8.6153164,38.15,42.16,44.76,50.85,3.333333333333333,1,1,0,0,0,10,5,1,535.5,1792071.8,898903.19,691360.25,0,11000.843,0,6596.1885 +12622,15405,27464,27465,-9,-9,1,1,63,0,0,0,3,3,-9,1,4,7.9259381,7.8026032,6.5106082,8,7,89.092552,0,3,-9,2021,10,0,37,42,1,0,0,8.1290064,8.1290064,0,0,0,0,0,0,0,14.5,1,1,0,0,6.7553873,48.76,53.24,43.51,21.54,8.333333333333334,1,1,0,0,9,2,3,1,227.5,1182798.6,942530.81,293797.5,0,0,0,2224.6919 +12622,15405,27465,27464,-9,-9,1,0,56,0,0,0,3,3,-9,0,2,0,0,0,8,-7,-60.676865,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.51,21.54,48.76,53.24,5,1,1,0,0,1,2,3,1,227.5,1182798.6,942530.81,293797.5,0,0,0,2224.6919 +12623,15406,27466,-9,27467,27469,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-945.80511,-9,1,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12623,15406,27467,27469,-9,-9,1,0,32,0,2,0,1,1,-9,0,5,7.6088462,7.441134,0,7,-3,-15.318652,0,3,2,2021,16,5,19,19,1,5,0,9.4576578,9.4576578,.05,.05,0,0,0,0,0,0,1,1,0,.51374471,0,45.81,61.51,35.62,64.71000000000001,6.666666666666667,1,1,0,1,11,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12623,15406,27468,-9,27467,27469,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-959.41852,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12623,15406,27469,27467,-9,-9,1,1,35,0,2,0,3,3,-9,0,5,8.248003,8.3185368,0,7,3,-89.6119,0,-9,-9,2021,15,4,77,80,1,4,0,6.0025864,6.0025864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.62,64.71000000000001,45.81,61.51,3.333333333333333,1,1,0,0,9,12,4,0,1416.25,122219.82,74264.18,70931.898,36060.73,1853.1323,7648.292,2546.9473 +12624,15407,27470,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.8706722,6.2091422,0,0,-1031.7177,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0041361,6.2758121,54.37,54.8,-9,-9,8.333333333333334,3,4,0,0,2,6,2,1,969,251577.89,142758.64,0,0,0,0,576.51831 +12625,15408,27471,27472,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,7.1793251,7.1494565,6,0,-47.888996,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7544928,7.1856699,57.16,56.15,50.12,48.45,8.333333333333334,1,1,0,0,4,6,3,1,2932,575314,170585.45,173695.09,0,0,0,2725.6794 +12625,15408,27472,27471,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,7.1774101,6.8409133,0,6,0,-69.669479,0,3,3,2021,6,0,21,21,1,0,0,8.0964441,8.0964441,0,0,0,1,0,0,0,0,1,1,0,5.636548,0,50.12,48.45,57.16,56.15,8.333333333333334,1,1,0,0,9,6,3,1,2932,575314,170585.45,173695.09,0,0,0,2725.6794 +12626,15409,27473,-9,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,6.9194112,7.3063345,0,0,-1082.3104,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9157815,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,10,2,2,1,296,849087.56,314129.25,571041.75,0,2925.2048,0,1214.2529 +12627,15410,27474,27475,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,9.1227551,9.5063248,0,19,-1,-95.879387,0,3,3,2021,12,0,2,41,1,0,0,555.63641,555.63641,.05,.05,.05,0,0,0,0,0,0,0,0,5.5044732,0,37.99,47.35,57.06,57.76,6.666666666666667,2,3,0,0,10,8,5,1,965,1994119,996323.13,846948.63,-1180.303,0,0,8706.8223 +12627,15410,27475,27474,-9,-9,1,1,46,0,0,0,1,1,-9,0,5,9.6527987,9.9014053,0,19,1,-93.294022,0,2,2,2021,2,0,40,40,1,0,0,50.008801,50.008801,.05,.05,.05,0,0,0,0,0,0,0,0,4.2931385,0,57.06,57.76,37.99,47.35,8.333333333333334,1,1,0,0,9,8,5,1,965,1994119,996323.13,846948.63,-1180.303,0,0,8706.8223 +12628,15411,27476,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5083809,8.656827,0,0,0,-1073.1383,0,2,3,2021,6,0,37,37,1,0,0,10.799416,10.799416,.05,.05,0,0,0,0,0,0,0,0,0,6.6878562,0,60.33,41,-9,-9,8.333333333333334,1,1,0,0,13,13,5,1,1087,190823.36,-28747.25,122316.34,44155.57,5553.3003,3776.8855,1276.1293 +12629,15412,27477,-9,27479,27478,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.21906,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,910.33331,173067.7,13167.063,275845.91,151868.22,8941.8408,0,5045.4028 +12629,15412,27478,27479,-9,-9,1,1,34,0,1,0,2,2,-9,0,5,8.6392498,8.6507902,0,8,-4,-67.035728,0,-9,-9,2021,7,0,39,36,1,0,0,13.541986,13.541986,.05,.05,0,0,0,0,.16173974,0,1,1,0,0,0,57.06,57.76,45.91,59.89,8.333333333333334,1,1,0,0,8,2,5,1,910.33331,173067.7,13167.063,275845.91,151868.22,8941.8408,0,5045.4028 +12629,15412,27479,27478,-9,-9,1,0,38,0,1,0,1,1,-9,0,4,8.6797228,8.5138512,0,8,4,-50.306629,0,2,2,2021,10,0,77,37,1,0,0,9.4064169,9.4064169,0,0,0,0,0,0,0,0,1,1,0,2.2175155,0,45.91,59.89,57.06,57.76,8.333333333333334,1,1,0,0,8,2,5,1,910.33331,173067.7,13167.063,275845.91,151868.22,8941.8408,0,5045.4028 +12630,15413,27480,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-956.01654,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44.07,39.47,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1592,158222.38,0,0,0,6291.521,0,1417.5468 +12631,15414,27481,27482,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.013495,7.4564452,48,4,45.377876,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4205537,7.450151,62.18,38.88,60.29,52.11,8.333333333333334,1,1,0,0,1,12,2,1,1691,1307823.1,574467.5,431944.19,0,0,0,2304.3972 +12631,15414,27482,27481,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,5.7966523,5.9907317,48,-4,6.6690183,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,10.85718,0,0,1,1,0,2.3834679,6.0985141,60.29,52.11,62.18,38.88,8.333333333333334,1,1,0,0,4,12,2,1,1691,1307823.1,574467.5,431944.19,0,0,0,2304.3972 +12632,15415,27483,27484,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9887075,7.0780149,49,9,-9.2205896,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9440489,6.8519392,56.5,48.33,57.33,53.46,8.333333333333334,1,1,0,0,0,1,2,1,577,372597.38,257652.41,91241.688,0,0,0,2320.7275 +12632,15415,27484,27483,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,48,0,-26.029253,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,56.5,48.33,8.333333333333334,1,1,0,0,3,1,2,1,577,372597.38,257652.41,91241.688,0,0,0,2320.7275 +12633,15416,27485,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-986.00317,0,2,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.39,16.93,-9,-9,1.666666666666667,1,1,0,1,0,7,1,0,3778,138054.31,-26057.773,0,0,5867.9263,0,1107.4255 +12634,15417,27486,-9,27490,27488,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1064.7515,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27487,-9,27490,27488,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1022.9834,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27488,27490,-9,-9,1,1,44,0,4,0,2,2,-9,0,3,8.4591322,8.2616329,0,7,0,26.52804,0,2,3,2021,12,0,46,50,1,0,0,11.063951,11.063951,.05,.05,0,0,0,0,0,0,1,1,0,3.3460438,0,51.65,39.74,54.2,57.49,6.666666666666667,1,1,0,0,7,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27489,-9,27490,27488,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-958.31305,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27490,27488,-9,-9,1,0,44,0,4,0,1,1,-9,0,4,8.8781462,8.7638359,0,7,0,-4.8431573,0,2,3,2021,10,0,47,33,1,0,0,14.815419,14.815419,.05,.05,0,0,0,0,0,0,1,1,0,1.8101711,0,54.2,57.49,51.65,39.74,8.333333333333334,1,1,0,0,7,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12634,15417,27491,-9,27490,27488,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-994.78436,-9,1,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,1177.5,464822.88,238244.83,300524.22,33348.816,0,0,4077.24 +12635,15418,27492,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,7.8558493,8.1269569,0,0,0,-1076.8176,0,1,2,2021,8,0,40,16,1,0,0,7.5222797,7.5222797,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,3,0,521,62148.465,0,0,0,0,0,1253.0686 +12636,15419,27493,-9,-9,-9,1,0,36,0,0,0,2,2,0,0,2,0,0,0,0,0,-964.81592,-9,1,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.5,34.93,-9,-9,5,1,1,0,0,3,8,2,0,323,-100625.51,0,0,0,0,0,3284.0459 +12636,15420,27494,-9,27493,-9,1,0,18,0,0,0,3,3,1,0,4,0,0,0,0,0,-1002.2344,-9,2,-9,2021,12,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.89,65.32000000000001,-9,-9,5,1,1,1,0,0,8,1,0,445,116161.17,0,0,0,0,0,0 +12637,15421,27495,27496,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.2126136,7.5001183,51,-2,-20.987898,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.5271993,6.2136292,53.4,35.3,62.39,56.71,8.333333333333334,1,1,0,0,0,9,4,1,2190,1544366.5,895720.81,414372.5,0,12185.973,0,3679.4912 +12637,15421,27496,27495,-9,-9,1,1,72,0,0,0,1,1,-9,0,5,0,7.9951234,7.9591236,51,2,33.32243,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4390025,7.6958299,62.39,56.71,53.4,35.3,10,1,1,0,0,6,9,4,1,2190,1544366.5,895720.81,414372.5,0,12185.973,0,3679.4912 +12638,15422,27497,27498,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,5.6303263,6.032536,51,3,81.72216,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9571662,59.7,43.22,64.40000000000001,25.94,10,1,1,0,0,0,1,2,1,726,255339.44,78327.188,157284.64,0,0,0,736.89954 +12638,15422,27498,27497,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,51,-3,2.0548348,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.40000000000001,25.94,59.7,43.22,6.666666666666667,1,1,0,0,0,1,2,1,726,255339.44,78327.188,157284.64,0,0,0,736.89954 +12639,15423,27499,27500,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,9.1133251,8.8384047,0,6,2,64.247353,0,3,3,2021,9,0,30,30,1,1,0,30.803219,30.803219,.05,.05,0,0,0,0,0,0,1,1,0,3.3823197,0,52,55,57.33,53.46,7,2,3,0,0,1,8,5,0,942,45223.977,-8595.3457,88769.813,46506.441,743.57965,0,3130.2632 +12639,15423,27500,27499,-9,-9,1,0,42,0,0,0,2,2,-9,0,3,0,0,0,26,-2,88.742012,0,2,2,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52,55,8.333333333333334,2,3,0,0,0,8,5,0,942,45223.977,-8595.3457,88769.813,46506.441,743.57965,0,3130.2632 +12639,15424,27501,-9,27500,27499,1,0,19,0,0,0,2,2,1,0,4,6.0500841,6.1389155,0,0,0,-1111.8264,-9,2,2,2021,19,7,5,0,1,7,1,7.7313337,7.7313337,0,0,0,0,0,0,0,7,1,1,0,0,0,43.84,57.1,-9,-9,6.666666666666667,2,3,0,0,3,8,2,0,465,0,0,0,0,0,0,-655.90961 +12640,15425,27502,-9,27503,-9,1,1,17,0,0,1,2,0,0,0,4,0,5.2456183,4.8520107,0,0,-938.58142,-9,1,-9,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2274594,0,41.45,60.44,-9,-9,8.333333333333334,1,1,0,0,0,12,5,0,1227,581281.13,502963.09,236245.61,0,0,0,2805.1243 +12640,15425,27503,-9,-9,-9,1,0,40,0,0,0,1,1,-9,0,2,8.7966461,8.9209375,4.9179869,0,0,-1082.5277,0,3,-9,2021,19,7,35,44,1,7,0,20.529512,20.529512,.05,.05,.05,0,0,0,0,0,1,1,0,4.560389,0,26.45,55.98,-9,-9,3.333333333333333,1,1,0,0,5,12,5,0,1227,581281.13,502963.09,236245.61,0,0,0,2805.1243 +12641,15426,27504,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.4349709,7.3450508,0,0,-784.11981,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1144624,7.5356331,50.34,56.4,-9,-9,10,1,1,0,0,0,1,3,1,207,454851.69,142295.53,0,0,0,0,844.72333 +12642,15427,27505,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,5,8.1630373,8.0564041,5.288548,20,1,25.115877,0,3,3,2021,7,0,38,38,1,0,0,10.884499,10.884499,0,0,0,0,0,0,0,2,0,0,0,3.6575313,5.8504577,59.43,58.05,41.24,55.72,10,1,1,0,0,14,7,4,1,1524,249611.03,0,0,0,0,0,1256.4115 +12642,15428,27506,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,7.9491963,7.6950936,0,19,-1,11.602131,0,3,3,2021,9,1,35,35,1,1,0,7.8203073,7.8203073,.05,.05,0,0,0,0,0,0,0,0,0,3.6720414,0,41.24,55.72,59.43,58.05,10,1,1,0,0,14,7,4,1,475,56080.68,35606.887,0,0,1659.4038,-24.964615,1398.3219 +12643,15429,27507,27508,-9,-9,1,0,90,0,0,0,3,3,-9,0,1,0,0,0,49,6,-90.050964,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,2.265759,40.77512,24.336649,0,1,1,0,0,0,55.68,16.88,59.95,22.66,8.333333333333334,1,1,0,0,0,11,2,1,689.5,425601,46020.391,201074.48,0,0,0,1622.4182 +12643,15429,27508,27507,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,5.8794999,5.6376748,49,-6,-19.995848,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3403158,5.6563849,59.95,22.66,55.68,16.88,6.666666666666667,1,1,0,0,0,11,2,1,689.5,425601,46020.391,201074.48,0,0,0,1622.4182 +12644,15430,27509,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,7.321167,6.6369476,0,0,-1071.1746,0,-9,-9,2021,13,0,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.422791,7.1254396,61.04,28.88,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,95,301243.09,0,270179.34,0,0,0,1172.9115 +12645,15431,27510,27513,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,9.2030697,8.842782,0,15,-2,-51.655647,0,2,2,2021,9,0,51,50,1,0,0,18.350342,18.350342,0,0,0,0,0,0,0,0,1,1,0,0,0,46.23,49.17,36.93,43.04,3.333333333333333,1,1,0,0,11,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12645,15431,27511,-9,27510,27513,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.0536,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12645,15431,27512,-9,27510,27513,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.92291,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12645,15431,27513,27510,-9,-9,1,1,37,1,2,0,2,2,-9,0,2,7.6837783,7.7121639,0,14,2,68.491432,0,2,2,2021,15,3,12,12,1,3,0,24.086191,24.086191,0,0,0,0,0,0,0,0,1,1,0,0,0,36.93,43.04,46.23,49.17,5,1,1,0,0,11,5,5,1,779.5,53223,0,0,0,25531.66,6081.8281,3590.4858 +12646,15432,27514,27515,-9,-9,1,0,57,1,3,0,2,2,-9,0,2,7.5470753,7.5464468,0,39,-1,25.375364,0,2,2,2021,25,9,29,27,1,9,0,7.0196371,7.0196371,.05,.05,0,0,0,0,0,7,1,1,0,0,0,35.3,34.21,57.33,53.46,1.666666666666667,1,1,0,0,11,10,4,1,806,1176939.5,973533.5,435668.81,119818.17,0,56286.211,2104.8274 +12646,15432,27515,27514,-9,-9,1,1,58,1,3,0,2,2,-9,0,3,8.8944225,8.8619118,0,39,1,-70.81955,0,2,2,2021,13,3,45,41,1,3,0,17.505064,17.505064,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.33,53.46,35.3,34.21,6.666666666666667,1,1,0,1,11,10,4,1,806,1176939.5,973533.5,435668.81,119818.17,0,56286.211,2104.8274 +12646,15433,27516,-9,27514,27515,1,1,34,1,3,0,2,2,-9,0,5,7.9741249,8.4506607,0,0,0,-1057.0861,0,2,2,2021,14,2,42,37,1,2,1,10.265598,10.265598,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,11,10,4,1,405,-230497.92,0,0,0,10496.65,0,1573.1648 +12646,15434,27517,-9,27514,27515,1,1,24,1,3,0,2,2,-9,0,3,8.0797644,8.0456896,0,0,0,-967.76044,0,2,2,2021,13,4,50,45,1,4,1,9.1109581,9.1109581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.81,56.92,-9,-9,1.666666666666667,1,1,0,0,7,10,4,1,3095,88723.711,-99185.242,0,0,6716.8735,0,2015.6273 +12646,15435,27518,-9,27520,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1118.9147,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12646,15435,27519,-9,27520,-9,1,1,11,1,3,1,3,0,-9,0,4,0,0,0,0,0,-973.20416,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12646,15435,27520,-9,27514,27515,1,0,32,1,3,0,2,2,-9,0,5,6.6461201,6.6838069,0,0,0,-981.53375,-9,2,2,2021,15,4,24,0,1,4,1,5.516675,5.516675,0,0,0,0,0,0,0,0,1,1,0,0,0,28.3,65.67,-9,-9,5,1,1,0,1,11,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12646,15435,27521,-9,27520,-9,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1120.1503,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,1,690.75,569988.94,51723.805,861942.38,237203.75,236.48366,0,2125.8994 +12647,15436,27522,27523,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,6.9362888,6.6214871,0,6,6,35.321983,-9,-9,-9,2021,25,9,45,0,1,9,0,2.4970708,2.4970708,0,0,0,0,0,0,0,0,0,0,0,0,0,27.89,18.61,47.75,53.7,6.666666666666667,1,1,0,0,5,12,4,0,1574.5,729430.38,545035.38,307743.13,68107.188,0,0,2048.4302 +12647,15436,27523,27522,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.2682447,8.2260675,0,6,-6,87.568527,0,3,3,2021,10,0,44,45,1,0,0,8.046792,8.046792,0,0,0,0,0,0,0,0,0,0,0,0,0,47.75,53.7,27.89,18.61,6.666666666666667,1,1,0,0,11,12,4,0,1574.5,729430.38,545035.38,307743.13,68107.188,0,0,2048.4302 +12648,15437,27524,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1100.7631,0,2,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,2,1,0,432,12055.388,0,0,0,0,0,859.4458 +12649,15438,27525,27526,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,9.504344,9.7788277,0,6,3,-35.591362,0,3,2,2021,10,0,60,50,1,1,0,26.919771,26.919771,0,0,.05,0,0,0,0,0,0,0,0,4.7539063,0,52,48,60.7,47.65,7,1,1,0,0,1,6,5,1,1290.5,821160.69,226926.47,273576.41,64098.859,0,0,5723.1445 +12649,15438,27526,27525,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,8.1635256,8.5432301,0,6,-3,14.056731,0,3,3,2021,7,0,40,40,1,0,0,13.829478,13.829478,0,0,0,0,0,0,0,0,0,0,0,0,0,60.7,47.65,52,48,6.666666666666667,1,1,0,0,7,6,5,1,1290.5,821160.69,226926.47,273576.41,64098.859,0,0,5723.1445 +12650,15439,27527,27528,-9,-9,1,1,51,0,2,0,2,2,-9,0,2,8.448328,8.2154245,0,12,0,63.824467,0,-9,3,2021,14,4,40,38,1,4,0,12.648083,12.648083,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.87,48.57,39.61,54.48,3.333333333333333,1,1,0,0,13,7,4,1,773.33331,1919790,1441075.6,532569.31,45508.625,0,0,3202.8792 +12650,15439,27528,27527,-9,-9,1,0,51,0,2,0,1,1,-9,0,4,8.7322493,8.8476124,3.6153038,12,0,-9.5536966,0,2,1,2021,17,5,25,35,1,5,0,30.364367,30.364367,0,0,0,0,0,0,0,0,1,1,0,4.1591492,0,39.61,54.48,41.87,48.57,3.333333333333333,1,1,0,0,14,7,4,1,773.33331,1919790,1441075.6,532569.31,45508.625,0,0,3202.8792 +12650,15439,27529,-9,27528,27527,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.56519,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,1,773.33331,1919790,1441075.6,532569.31,45508.625,0,0,3202.8792 +12651,15440,27530,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.010026,8.2207737,0,0,0,-842.04205,0,3,-9,2021,10,0,35,32,1,1,0,11.747066,11.747066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,54,-9,-9,8,3,4,0,0,1,8,4,1,897,1060297.5,735182.13,323423.31,0,7771.1577,0,866.96667 +12651,15441,27531,-9,27530,-9,1,1,24,0,0,0,1,1,0,0,2,0,0,0,0,0,-1115.9187,-9,2,-9,2021,9,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.21,44.06,-9,-9,10,3,4,0,0,0,8,1,1,163,-255464.45,0,0,0,0,0,0 +12652,15442,27532,27533,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,5,-3,0,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.43,47.35,54.61,51.04,8.333333333333334,2,3,0,0,0,8,1,0,2259.5,7699.123,0,0,0,0,391.81326,1729.6438 +12652,15442,27533,27532,-9,-9,1,1,72,0,0,0,1,1,-9,0,2,0,0,0,5,3,0,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.61,51.04,46.43,47.35,8.333333333333334,2,3,0,0,4,8,1,0,2259.5,7699.123,0,0,0,0,391.81326,1729.6438 +12653,15443,27534,27535,-9,-9,1,1,54,0,2,0,1,1,-9,0,4,7.8970642,7.5061851,0,8,3,-104.88198,0,2,2,2021,6,0,40,40,1,0,0,8.2357111,8.2357111,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,35.86,58.14,6.666666666666667,1,1,0,0,11,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12653,15443,27535,27534,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,7.8296046,7.8572359,0,8,-3,-61.309143,0,1,1,2021,10,0,5,8,1,0,0,50.016754,50.016754,0,0,0,0,0,0,0,0,1,1,0,0,0,35.86,58.14,54.79,55.86,5,1,1,0,0,7,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12653,15443,27536,-9,27535,27534,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-945.77557,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12653,15443,27537,-9,27535,27534,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-815.19769,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,938.25,479621.53,58118.352,338511.47,0,0,0,2478.3997 +12654,15444,27538,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,5,6.457099,6.4175587,0,0,0,-983.48932,0,3,3,2021,10,0,25,30,1,0,0,2.8638272,2.8638272,0,0,0,0,0,0,0,0,1,1,0,7.6384649,0,49.42,57.29,-9,-9,8.333333333333334,2,3,0,0,10,8,2,1,435,-101249.64,0,0,0,0,0,2189.4338 +12654,15445,27539,27540,-9,-9,1,0,29,0,0,0,1,1,-9,0,5,8.884409,8.9138613,0,1,-8,-121.01472,-9,-9,-9,2021,17,5,40,0,1,5,0,20.406767,20.406767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.38,62.64,48.77,60.16,6.666666666666667,2,3,0,0,1,8,5,1,1315,61360.586,71769.273,0,0,0,0,3689.4363 +12654,15445,27540,27539,27538,-9,1,1,37,0,0,0,1,1,-9,0,5,7.6138024,7.5336733,0,1,8,-185.84972,0,3,2,2021,11,0,40,45,1,0,0,6.153769,6.153769,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,34.38,62.64,8.333333333333334,2,3,0,0,10,8,5,1,1315,61360.586,71769.273,0,0,0,0,3689.4363 +12655,15446,27541,27542,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.4888239,9.5574217,0,10,9,63.504169,0,-9,-9,2021,10,0,38,43,1,0,0,43.237961,43.237961,.05,.05,0,0,0,0,0,0,0,0,0,5.1227784,0,45.91,59.89,57.16,56.15,8.333333333333334,1,1,0,0,12,5,5,1,585.66669,841389,451306.19,206970.75,0,10625.518,0,5742.5278 +12655,15446,27542,27541,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.7405405,7.8232903,0,24,0,-89.20134,0,2,2,2021,7,0,27,25,1,0,0,13.036499,13.036499,.05,.05,0,0,0,0,0,0,0,0,0,4.3419414,0,57.16,56.15,45.91,59.89,8.333333333333334,1,1,0,0,10,5,5,1,585.66669,841389,451306.19,206970.75,0,10625.518,0,5742.5278 +12655,15446,27543,-9,27542,27541,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1059.7405,-9,1,2,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.737803,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,585.66669,841389,451306.19,206970.75,0,10625.518,0,5742.5278 +12656,15447,27544,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,4.5211535,4.5595269,0,0,-1029.6956,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7717843,4.5793943,52.21,51.53,-9,-9,10,1,1,0,0,0,10,2,0,1182,326058.44,39765.148,0,0,0,0,1228.8627 +12657,15448,27545,27546,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,8.6596622,8.8785286,0,2,0,43.58371,-9,-9,-9,2021,4,0,45,0,1,0,0,17.586361,17.586361,0,0,0,0,0,0,0,0,0,0,0,.89185667,0,59.43,58.05,51.68,51.94,10,1,1,0,0,3,10,5,0,296.5,76667.313,-17581.947,177515.19,106525.77,10687.563,0,3437.4758 +12657,15448,27546,27545,-9,-9,1,0,26,0,0,0,2,2,-9,0,5,7.9536262,8.2938881,0,2,0,74.120583,0,-9,-9,2021,6,0,36,36,1,0,0,11.200644,11.200644,0,0,0,0,0,0,0,0,0,0,0,0,0,51.68,51.94,59.43,58.05,10,1,1,0,0,11,10,5,0,296.5,76667.313,-17581.947,177515.19,106525.77,10687.563,0,3437.4758 +12658,15449,27547,27548,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,0,0,60,-1,39.536392,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.181802,0,57.16,56.15,41.37,52.32,8.333333333333334,1,1,0,0,4,5,2,1,816.5,327076.44,112884.14,113388.3,0,0,415.73645,2188.2778 +12658,15449,27548,27547,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,7.0931611,7.6764336,60,1,38.524261,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0879588,7.5456228,41.37,52.32,57.16,56.15,10,1,1,0,0,0,5,2,1,816.5,327076.44,112884.14,113388.3,0,0,415.73645,2188.2778 +12659,15450,27549,27550,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,7.5330777,8.3475981,7.4959335,27,9,61.932739,0,3,3,2021,21,9,22,36,1,9,0,12.667107,12.667107,0,0,0,0,0,0,0,0,0,0,0,0,7.776711,49.91,31.39,53,54,8.333333333333334,1,1,0,0,8,6,5,1,723.5,839322,88267.125,537431.88,0,3648.8511,3373.1055,4211.1738 +12659,15450,27550,27549,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.0083637,9.052206,0,27,0,-70.207741,0,3,3,2021,9,0,42,44,1,1,0,24.471321,24.471321,.05,.05,.05,0,0,0,0,0,0,0,0,6.7404113,0,53,54,49.91,31.39,7,1,1,0,0,8,6,5,1,723.5,839322,88267.125,537431.88,0,3648.8511,3373.1055,4211.1738 +12660,15451,27551,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.6355724,5.4538074,0,0,-1082.7709,0,-9,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.604871,5.8386049,57.34,45.06,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,973,187927.3,29440.387,0,0,0,0,1425.4406 +12661,15452,27552,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1039.3878,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0035124,0,54.55,49.25,-9,-9,6.666666666666667,1,1,0,0,6,6,1,1,974,-109319.4,0,0,0,0,0,2323.9246 +12662,15453,27553,27554,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,0,0,0,15,-3,6.4717159,0,2,2,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,40.88,38.46,8.333333333333334,1,1,0,0,3,8,4,1,825,-1238.2699,30430.195,123989.54,112627.04,0,2973.5869,2920.6526 +12662,15453,27554,27553,-9,-9,1,1,46,0,3,0,1,1,-9,0,2,8.8172541,9.2820253,0,14,3,40.628304,0,2,2,2021,12,2,48,45,1,2,0,18.741161,18.741161,.05,.05,0,0,0,0,0,0,1,1,0,2.9734325,0,40.88,38.46,57.06,57.76,6.666666666666667,1,1,0,0,11,8,4,1,825,-1238.2699,30430.195,123989.54,112627.04,0,2973.5869,2920.6526 +12662,15453,27555,-9,27553,27554,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.64178,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,1,825,-1238.2699,30430.195,123989.54,112627.04,0,2973.5869,2920.6526 +12663,15454,27556,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.2188234,8.5792036,6.8682551,0,0,-872.3869,0,3,2,2021,19,7,42,52,1,7,0,10.144016,10.144016,.05,.05,0,0,0,0,0,7,0,0,0,7.3711925,7.0514917,30.89,38.92,-9,-9,5,4,2,0,0,15,6,5,1,111,96871.891,-4356.2588,0,0,1832.8693,7252.4673,1923.3826 +12664,15455,27557,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.4053216,6.097661,0,0,-998.8418,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,3.9617877,0,23.40135,0,1,1,0,0,6.2312078,50.96,27,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,205,446216.63,86771.313,365749,0,0,0,1520.6591 +12665,15456,27558,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,8.0304327,7.7218142,0,0,-1067.3938,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.8230805,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,799,718858.19,168644.55,368780.31,0,0,0,1498.3175 +12666,15457,27559,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,5.5515552,5.8117733,0,0,-857.88019,0,3,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,29.147778,5.230176,276.99866,0,1,1,0,0,5.4644403,66.92,15.49,-9,-9,10,1,1,0,0,0,4,2,0,382,41787.129,0,0,0,0,0,2354.0095 +12667,15458,27560,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,1,0,4.4707594,4.155086,0,0,-884.85175,0,3,2,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,0,3.0379665,0,0,1,1,0,0,4.5070629,44.42,14.06,-9,-9,5,1,1,0,0,0,1,2,0,194,-113684.29,10506.195,0,0,0,0,1030.5206 +12668,15459,27561,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1048.6422,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.1951,0,0,1,1,0,0,0,60.37,15.19,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2605,299933.78,0,0,0,0,0,343.34909 +12669,15460,27562,27564,-9,-9,1,0,37,1,1,0,2,2,-9,0,3,8.0932961,8.1562862,0,8,0,-27.435244,0,3,2,2021,12,1,38,37,1,1,0,9.8412733,9.8412733,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.51,48.09,55.53,51.55,10,1,1,0,0,14,2,5,1,466.66666,148238.23,32998.594,90751.75,75424.977,11384.764,4943.1147,3736.2021 +12669,15460,27563,-9,27562,27564,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-893.46771,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,466.66666,148238.23,32998.594,90751.75,75424.977,11384.764,4943.1147,3736.2021 +12669,15460,27564,27562,-9,-9,1,1,37,1,1,0,2,2,-9,0,3,8.7181692,8.7185059,0,8,0,28.319645,0,-9,-9,2021,7,0,45,46,1,0,0,14.566687,14.566687,.05,.05,0,0,0,0,0,0,1,1,0,2.0695143,0,55.53,51.55,42.51,48.09,8.333333333333334,1,1,0,0,14,2,5,1,466.66666,148238.23,32998.594,90751.75,75424.977,11384.764,4943.1147,3736.2021 +12670,15461,27565,27566,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.0794687,9.1092749,0,10,-2,49.052448,0,3,2,2021,7,0,45,37,1,0,0,19.763365,19.763365,0,0,0,0,0,0,0,0,0,0,0,5.1187806,0,58.76,52.91,57.06,57.76,8.333333333333334,1,1,0,0,10,12,5,1,520.5,1054498.1,588972.81,446437.06,36104.766,0,0,4253.9258 +12670,15461,27566,27565,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,0,7.8509731,7.7081213,10,2,-22.77368,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.0547948,7.67942,57.06,57.76,58.76,52.91,8.333333333333334,1,1,0,0,8,12,5,1,520.5,1054498.1,588972.81,446437.06,36104.766,0,0,4253.9258 +12671,15462,27567,27568,-9,-9,1,0,44,0,4,0,2,2,-9,0,5,7.0583143,6.981566,0,23,-5,118.60539,0,3,2,2021,9,2,25,15,1,2,0,4.9094553,4.9094553,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.53,63.81,57.33,53.46,8.333333333333334,1,1,0,0,4,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27568,27567,-9,-9,1,1,49,0,4,0,1,1,-9,0,3,9.1760845,9.1635933,0,23,5,-19.287216,0,2,-9,2021,10,0,37,37,1,0,0,24.986261,24.986261,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,35.53,63.81,3.333333333333333,1,1,0,0,11,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27569,-9,27567,27568,1,1,10,0,4,1,3,0,-9,0,2,0,0,0,0,0,-997.17114,-9,2,1,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27570,-9,27567,27568,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-878.9068,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27571,-9,27567,27568,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1038.9409,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12671,15462,27572,-9,27567,27568,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1011.4022,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,1002,1521446.3,264494.84,257751.23,0,5587.5923,0,3586.863 +12672,15463,27573,27574,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.5531011,6.5386438,9,-7,-64.701851,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4677062,42.17,14.78,64.47,51.45,5,1,1,0,0,8,10,3,1,1431,1480735.3,756526.44,560177.88,0,0,0,3601.6929 +12672,15463,27574,27573,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.9800224,7.8023176,9,7,-21.811186,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,8.3139629,64.47,51.45,42.17,14.78,8.333333333333334,1,1,0,0,3,10,3,1,1431,1480735.3,756526.44,560177.88,0,0,0,3601.6929 +12673,15464,27575,27576,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.9094224,6.7152944,6,-3,-144.60938,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,6.8408637,54.55,41.22,48.19,26.32,8.333333333333334,1,1,0,0,1,13,2,1,318.5,181929.81,-59090.156,74789.359,0,0,0,1532.1926 +12673,15464,27576,27575,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,6,3,-81.708771,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.19,26.32,54.55,41.22,1.666666666666667,1,1,0,0,0,13,2,1,318.5,181929.81,-59090.156,74789.359,0,0,0,1532.1926 +12674,15465,27577,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1081.5155,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,41.395939,0,42,1,0,1,0,0,44.92,20.33,-9,-9,5,1,1,0,0,0,4,1,0,143,-157384.2,0,0,0,0,0,1971.0461 +12674,15466,27578,-9,27577,-9,1,1,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-896.83936,0,3,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,41.14,30.1,-9,-9,5,1,1,0,1,5,4,1,0,133,-57593.965,0,0,0,0,0,441.03433 +12675,15467,27579,27580,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,6.3837709,6.8395953,62,-6,-29.574924,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.275475,6.8239951,33.22,39.12,53.41,34.09,8.333333333333334,1,1,0,0,0,7,3,1,1350.5,1396532.3,628418.63,398701.75,0,0,0,2674.4482 +12675,15467,27580,27579,-9,-9,1,1,89,0,0,0,2,2,-9,0,1,0,7.7927532,7.3906822,62,6,120.4043,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7214029,7.6155748,53.41,34.09,33.22,39.12,3.333333333333333,1,1,0,0,0,7,3,1,1350.5,1396532.3,628418.63,398701.75,0,0,0,2674.4482 +12676,15468,27581,27582,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,7.1616182,7.1721201,0,7,2,-46.100697,0,2,2,2021,5,0,20,21,1,0,0,6.9108243,6.9108243,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,43.2,59.97,10,1,1,0,0,8,11,4,0,1040,653963.5,469476.69,46530.777,13726.293,0,438.29745,1710.6947 +12676,15468,27582,27581,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.1297045,8.321332,0,7,-2,51.445259,0,2,2,2021,14,3,45,37,1,3,0,8.8921404,8.8921404,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,58.15,52.91,6.666666666666667,1,1,0,0,8,11,4,0,1040,653963.5,469476.69,46530.777,13726.293,0,438.29745,1710.6947 +12676,15469,27583,-9,27582,27581,1,1,26,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1030.4882,1,2,2,2021,10,0,0,30,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,11,1,0,594,0,0,0,0,0,0,511.23999 +12677,15470,27584,27585,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,0,0,44,-1,50.28006,0,3,3,2021,18,6,0,6,4,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,1.9772397,0,45.87,24.32,53.22,48.44,1.666666666666667,1,1,0,0,8,9,4,1,827,1460391.3,742329.69,432595.31,0,0,0,3426.7832 +12677,15470,27585,27584,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,8.7984667,8.4952459,44,1,50.674526,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4109612,8.6670322,53.22,48.44,45.87,24.32,8.333333333333334,1,1,0,0,0,9,4,1,827,1460391.3,742329.69,432595.31,0,0,0,3426.7832 +12678,15471,27586,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.541574,7.6406937,0,0,0,-1013.3918,0,3,3,2021,11,0,40,40,1,0,0,5.8018441,5.8018441,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.94,49.91,-9,-9,5,1,1,0,0,5,2,3,1,1377.5,95588.422,91492.023,0,0,1606.1926,0,1785.6107 +12678,15471,27587,-9,27586,-9,1,0,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-852.05945,-9,2,-9,2021,14,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.39,44.67,-9,-9,5,1,1,0,0,0,2,3,1,1377.5,95588.422,91492.023,0,0,1606.1926,0,1785.6107 +12679,15472,27588,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.8697381,6.612587,0,0,-903.05536,0,3,-9,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6845207,42.67,34.72,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,254,174993.14,-102742.57,263799.31,0,0,0,803.2489 +12680,15473,27589,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,7.1817698,7.580874,6.6478815,0,0,-1050.5133,0,3,3,2021,15,3,20,20,1,3,0,6.2965302,6.2965302,0,0,0,0,0,0,0,7,0,0,0,0,6.5030274,44.02,44.59,-9,-9,6.666666666666667,1,1,0,0,9,2,3,1,784,620340.19,353566.09,96048.477,0,0,0,824.28455 +12681,15474,27590,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.68221,8.4111853,0,0,0,-875.54675,0,2,2,2021,9,0,36,37,1,0,0,14.118883,14.118883,.05,.05,0,0,0,0,0,0,0,0,0,1.6004429,0,50.51,56.39,-9,-9,8.333333333333334,1,1,0,0,13,10,5,1,1370,-101463.23,32753.207,0,0,3899.2195,-719.36707,1610.7897 +12682,15475,27591,27592,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.6597538,8.817421,0,19,-1,144.87747,0,3,3,2021,12,0,60,60,1,2,0,15.04458,15.04458,.05,.05,0,0,0,0,0,0,1,1,0,.98371208,0,46,50,35.67,64.46000000000001,7,1,1,0,0,13,1,5,1,907.5,859414,288354.88,368701.66,0,0,0,5665.3486 +12682,15475,27592,27591,-9,-9,1,1,50,0,1,0,1,1,-9,0,4,8.8009243,9.0382729,0,19,1,-106.56109,0,3,2,2021,12,0,47,45,1,0,0,17.550301,17.550301,.05,.05,0,0,0,0,0,0,1,1,0,1.0402786,0,35.67,64.46000000000001,46,50,8.333333333333334,1,1,0,0,12,1,5,1,907.5,859414,288354.88,368701.66,0,0,0,5665.3486 +12683,15476,27593,-9,27595,-9,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.14398,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,185.66667,64016.066,0,0,0,0,170.48183,1480.4811 +12683,15476,27594,-9,27595,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.81158,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,185.66667,64016.066,0,0,0,0,170.48183,1480.4811 +12683,15476,27595,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,2,0,0,0,0,0,-1072.8098,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,46.91,51.8,-9,-9,5,1,1,0,0,1,12,1,0,185.66667,64016.066,0,0,0,0,170.48183,1480.4811 +12684,15477,27596,27597,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.4122219,8.04533,0,9,1,13.446912,0,3,3,2021,10,0,50,50,1,0,0,8.211297,8.211297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.92,54.3,62.39,56.71,6.666666666666667,1,1,0,0,9,5,4,1,727.33331,280774.66,262212.63,74144.789,46390.012,0,1950.5392,2877.7874 +12684,15477,27597,27596,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,7.9958134,8.0714321,0,9,-1,-28.019529,-9,3,3,2021,6,0,28,0,1,0,0,12.50288,12.50288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,46.92,54.3,10,1,1,0,0,10,5,4,1,727.33331,280774.66,262212.63,74144.789,46390.012,0,1950.5392,2877.7874 +12684,15477,27598,-9,27597,27596,1,0,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-851.84729,1,2,-9,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.78807706,0,24.35,62,-9,-9,5,1,1,0,0,1,5,4,1,727.33331,280774.66,262212.63,74144.789,46390.012,0,1950.5392,2877.7874 +12684,15478,27599,-9,27597,27596,1,1,21,0,0,0,2,2,-9,0,5,8.1161022,8.2622986,0,0,0,-1077.2897,0,2,-9,2021,7,0,38,40,1,0,1,9.3199568,9.3199568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,5,5,4,1,315,42153.527,39989.242,0,0,5898.145,0,1056.6194 +12684,15479,27600,-9,27597,27596,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1021.0113,1,2,-9,2021,13,1,0,15,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,-9,-9,8.333333333333334,1,1,0,1,4,5,1,1,715,73543.5,0,0,0,0,0,0 +12685,15480,27601,27602,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,7.1285219,7.4167519,0,39,-1,-120.47618,0,2,2,2021,19,8,40,30,1,8,0,5.1691113,5.1691113,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.45,52.35,43.75,53.95,5,1,1,0,0,14,7,5,1,403.5,451556.75,278083.06,0,0,0,0,3282.9631 +12685,15480,27602,27601,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,8.6509991,8.420393,0,39,1,164.76309,0,2,2,2021,16,6,12,35,1,6,0,59.442905,59.442905,0,0,0,0,0,0,0,0,0,0,0,0,0,43.75,53.95,42.45,52.35,5,1,1,0,0,13,7,5,1,403.5,451556.75,278083.06,0,0,0,0,3282.9631 +12686,15481,27603,27604,-9,-9,1,1,38,0,0,0,2,2,-9,0,5,8.9560165,8.4091902,0,10,-11,-29.286528,0,1,2,2021,10,1,38,46,1,1,0,16.517384,16.517384,.05,.05,0,0,0,0,0,0,0,0,0,2.5750391,0,54.1,59.11,45.4,56.19,8.333333333333334,1,1,0,0,12,4,5,1,299.5,175568.5,-8716.4766,0,0,5441.75,0,2128.8477 +12686,15481,27604,27603,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.0795541,7.2696576,0,10,11,-47.82291,0,3,3,2021,10,0,20,19,1,0,0,9.2910786,9.2910786,.05,.05,0,0,0,0,0,0,0,0,0,3.2962797,0,45.4,56.19,54.1,59.11,10,1,1,0,0,12,4,5,1,299.5,175568.5,-8716.4766,0,0,5441.75,0,2128.8477 +12687,15482,27605,27608,-9,-9,1,1,47,0,2,0,2,2,-9,0,2,7.7322011,7.9626994,0,14,10,18.740784,0,-9,2,2021,15,4,18,0,1,4,0,12.997678,12.997678,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.07,39.41,31.93,19.35,5,1,1,0,1,2,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12687,15482,27606,-9,27608,27605,1,0,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-931.14307,-9,1,2,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,0,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12687,15482,27607,-9,27608,27605,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1033.5231,-9,1,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12687,15482,27608,27605,-9,-9,1,0,37,0,2,0,1,1,1,1,1,7.0861716,7.2407641,0,14,-10,-78.08519,-9,2,2,2021,25,8,18,0,1,8,0,7.611331,7.611331,.05,.05,0,0,0,0,0,7,1,1,0,0,0,31.93,19.35,53.07,39.41,0,1,1,0,1,1,10,3,0,660,245784.16,29710.355,259622.27,82501.156,0,0,2025.0514 +12688,15483,27609,27610,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.7998495,6.6177044,8,-10,-104.96412,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.927423,6.7352128,57.33,53.46,52.5,31.31,8.333333333333334,1,1,0,0,3,4,2,1,1028,706838.63,500695.56,413416.38,142137.72,0,0,1590.5775 +12688,15483,27610,27609,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.8038707,6.2810621,8,10,-72.311127,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.866447,5.9526496,52.5,31.31,57.33,53.46,8.333333333333334,1,1,0,0,0,4,2,1,1028,706838.63,500695.56,413416.38,142137.72,0,0,1590.5775 +12689,15484,27611,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,0,0,0,0,-903.60254,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.6374705,0,25.932829,0,1,1,0,0,0,52.01,25.55,-9,-9,5,1,1,0,0,0,13,1,1,221,-11590.572,0,0,0,0,0,961.27478 +12690,15485,27612,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,7.2998333,7.0740051,0,0,-1064.3494,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2385864,42.93,27.57,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,964,539149.81,123653.13,313875.75,0,0,0,1349.1047 +12691,15486,27613,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1105.8456,0,2,3,2021,22,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.24,26.05,-9,-9,6.666666666666667,1,1,0,0,0,9,1,0,209,-143392.61,0,0,0,0,0,2744.1013 +12692,15487,27614,27615,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.0976171,7.0247607,47,-2,-7.911346,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.335165,6.9617248,61.04,39.41,60.12,54.8,8.333333333333334,1,1,0,0,6,7,3,1,454,430108.19,49788.859,339435.5,0,0,0,3793.6082 +12692,15487,27615,27614,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,7.0593324,7.9173298,6.7611985,47,2,17.123465,0,-9,-9,2021,5,0,16,12,1,0,0,11.842943,11.842943,.05,.05,.05,0,0,0,0,0,1,1,0,7.6305618,6.8621788,60.12,54.8,61.04,39.41,10,1,1,0,0,11,7,3,1,454,430108.19,49788.859,339435.5,0,0,0,3793.6082 +12693,15488,27616,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.0201273,8.2808647,0,0,0,-1038.4535,0,1,1,2021,6,0,38,38,1,0,0,12.599461,12.599461,.05,.05,0,0,0,0,0,0,0,0,0,1.6970865,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,1243,1029112.1,845389.88,276308.5,-11950.276,0,0,1638.2875 +12693,15489,27617,-9,27616,-9,1,1,43,0,0,0,2,2,-9,0,4,7.1681819,7.0186424,0,0,0,-1087.7498,0,2,-9,2021,8,0,40,40,1,0,1,3.5100105,3.5100105,0,0,0,0,0,0,0,0,0,0,0,0,0,55.76,52.64,-9,-9,8.333333333333334,4,2,0,0,12,11,3,1,368,75688.008,0,0,0,0,0,1011.6952 +12694,15490,27618,27619,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.6513104,4.5652013,37,13,18.730221,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,5.374681,0,27,1,0,1,0,4.6033788,24.96,26.48,26.46,23.15,5,1,1,0,0,0,10,2,0,674,549332.19,311271.88,199542.16,0,0,0,3984.8921 +12694,15490,27619,27618,-9,-9,1,1,58,0,0,0,2,2,-9,0,1,0,6.3689957,6.0654268,37,-13,-49.042007,0,3,3,2021,34,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,6.1903415,26.46,23.15,24.96,26.48,1.666666666666667,1,1,0,0,0,10,2,0,674,549332.19,311271.88,199542.16,0,0,0,3984.8921 +12694,15491,27620,-9,27618,27619,1,1,33,0,0,0,2,2,-9,1,3,7.3974366,7.272368,0,0,0,-1014.3353,0,3,2,2021,17,6,34,43,1,6,0,4.8553138,4.8553138,0,0,0,0,0,0,0,14.5,1,0,1,0,0,43.2,46.56,-9,-9,3.333333333333333,1,1,0,0,6,10,3,0,1182,10506.432,0,0,0,0,0,735.54999 +12695,15492,27621,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.7028995,7.6035585,0,0,0,-1041.2428,0,3,3,2021,9,0,43,43,1,0,0,6.2084684,6.2084684,.05,.05,0,0,0,0,0,2,1,1,0,4.008276,0,46.25,52.95,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,107,86797.836,-86336.398,0,0,0,771.36249,697.16864 +12696,15493,27622,27623,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,60,2,-94.47084,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,1.9289479,0,0,1,1,0,5.394371,0,62.77,23.34,51.02,46.68,10,1,1,0,0,0,4,2,1,573.5,469895.81,126218.66,311165.88,0,0,0,1587.9856 +12696,15493,27623,27622,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.2985668,7.1212354,60,-2,53.578438,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.3373427,7.060935,51.02,46.68,62.77,23.34,8.333333333333334,1,1,0,0,0,4,2,1,573.5,469895.81,126218.66,311165.88,0,0,0,1587.9856 +12697,15494,27624,27625,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.3762794,7.3373952,48,-2,173.48756,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1452293,7.4238839,49.52,56.95,57.16,56.15,8.333333333333334,1,1,0,0,7,2,5,1,1820,2818033.5,2305164,449254.47,0,0,0,6975.5464 +12697,15494,27625,27624,-9,-9,1,1,76,0,0,0,2,2,-9,0,4,0,9.2996168,9.3680658,48,2,25.711378,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.375994,9.3041639,57.16,56.15,49.52,56.95,8.333333333333334,1,1,0,0,5,2,5,1,1820,2818033.5,2305164,449254.47,0,0,0,6975.5464 +12698,15495,27626,27627,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,9.1016798,9.1755791,42,1,46.853085,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.4696026,9.805542,46.54,52.96,54.79,55.86,8.333333333333334,1,1,0,0,3,2,5,1,599,7757741,566221.13,1363754.4,0,0,0,6329.0586 +12698,15495,27627,27626,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,0,0,42,-1,18.265615,0,2,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,0,0,54.79,55.86,46.54,52.96,8.333333333333334,1,1,0,0,8,2,5,1,599,7757741,566221.13,1363754.4,0,0,0,6329.0586 +12699,15496,27628,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,2,0,0,0,0,0,-996.79181,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,46.98,-9,-9,3.333333333333333,1,1,1,1,1,12,1,0,459,14675.783,100245.69,0,0,0,-472.46085,411.42914 +12700,15497,27629,27630,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9495993,8.9832172,0,1,0,22.133152,-9,3,3,2021,9,0,45,0,1,1,0,13.422289,13.422289,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,36.4,41.6,8,1,1,0,0,1,6,5,1,278.33334,412521.44,383447.63,89358.25,26664.6,7533.6289,0,2570.5042 +12700,15497,27630,27629,-9,-9,1,0,47,0,0,0,3,3,-9,0,3,7.1898017,7.2393842,0,1,0,31.179087,-9,3,-9,2021,15,4,30,0,1,4,0,4.9244766,4.9244766,0,0,0,0,0,0,0,14.5,1,1,0,0,0,36.4,41.6,52,55,8.333333333333334,1,1,0,0,7,6,5,1,278.33334,412521.44,383447.63,89358.25,26664.6,7533.6289,0,2570.5042 +12700,15497,27631,-9,27630,27629,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-971.71021,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,-9,-9,10,1,1,0,0,0,6,5,1,278.33334,412521.44,383447.63,89358.25,26664.6,7533.6289,0,2570.5042 +12700,15498,27632,-9,27630,27629,1,0,21,0,0,0,2,2,-9,1,4,0,0,0,0,0,-918.19415,-9,3,2,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7755687,0,46,58,-9,-9,7,1,1,0,0,0,6,1,1,1594,53541.59,0,0,0,0,1086.124,754.49402 +12701,15499,27633,27634,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,6,4,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,12.95863,0,0,1,1,0,.73358327,0,50.68,25.79,54.79,55.86,8.333333333333334,1,1,0,0,0,2,1,0,412,-41245.375,0,61923.313,0,0,0,754.02039 +12701,15499,27634,27633,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,0,0,6,-4,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.68,25.79,8.333333333333334,1,1,0,0,0,2,1,0,412,-41245.375,0,61923.313,0,0,0,754.02039 +12702,15500,27635,-9,27636,27637,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-942.24316,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,4,1,530,82460.156,28557.08,0,0,0,2625.5747,3076.4512 +12702,15500,27636,27637,-9,-9,1,0,44,0,1,0,2,2,-9,0,4,7.6253362,7.580965,0,10,1,84.889885,0,2,2,2021,8,0,32,29,1,0,0,5.9860353,5.9860353,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.6,51.61,8.333333333333334,1,1,0,0,10,7,4,1,530,82460.156,28557.08,0,0,0,2625.5747,3076.4512 +12702,15500,27637,27636,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.3822565,8.5378408,0,10,-1,-106.1506,0,2,2,2021,12,0,43,40,1,0,0,12.105308,12.105308,.05,.05,0,0,0,0,0,0,1,1,0,.40248322,0,43.6,51.61,57.16,56.15,8.333333333333334,1,1,0,0,10,7,4,1,530,82460.156,28557.08,0,0,0,2625.5747,3076.4512 +12703,15501,27638,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,5.8759947,6.1298423,0,0,-1074.5237,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9580808,38.39,40.89,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,67,301170.03,102176.34,129936.43,0,0,0,513.95239 +12704,15502,27639,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,8.1525888,8.2368069,0,0,-1085.3842,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4151111,8.188962,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,9,4,1,476,1602512.6,973512.31,363317.72,0,0,0,2438.3079 +12705,15503,27640,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-996.74677,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.4,51.64,-9,-9,8.333333333333334,1,1,0,0,6,13,1,1,1448,-221425.22,0,0,0,0,0,406.21408 +12706,15504,27641,27642,-9,-9,1,1,47,0,0,0,2,2,-9,1,2,0,0,0,12,-4,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,36.78,53.77,39.32,17.47,3.333333333333333,4,2,0,0,0,11,1,0,605.5,1331508.9,1269736,145524.75,0,3353.7788,0,2587.6458 +12706,15504,27642,27641,-9,-9,1,0,51,0,0,0,2,2,-9,0,1,0,0,0,12,4,0,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.32,17.47,36.78,53.77,3.333333333333333,1,1,0,0,0,11,1,0,605.5,1331508.9,1269736,145524.75,0,3353.7788,0,2587.6458 +12707,15505,27643,27646,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,8.2306976,7.9900537,0,7,0,171.03493,0,2,2,2021,19,7,24,26,1,7,0,14.949161,14.949161,.05,.05,0,0,0,0,0,0,1,1,0,7.0388875,0,35.62,64.71000000000001,51.24,58.84,6.666666666666667,1,1,0,0,8,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12707,15505,27644,-9,27643,27646,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.0166,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12707,15505,27645,-9,27643,27646,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.7827,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12707,15505,27646,27643,-9,-9,1,1,32,0,2,0,1,1,-9,0,4,8.6693153,9.1208344,0,7,0,-18.236101,0,-9,-9,2021,11,0,56,56,1,0,0,11.544853,11.544853,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,35.62,64.71000000000001,8.333333333333334,1,1,0,0,8,13,4,1,378.75,731107.63,535927.44,221075.39,92181.43,9761.7129,860.94971,4590.8569 +12708,15506,27647,-9,-9,-9,1,0,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-997.11163,0,-9,-9,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,1.666666666666667,3,4,1,0,0,6,1,0,329,29050.16,55775.945,0,0,0,0,1543.1417 +12709,15507,27648,-9,27650,27649,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.1271,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,0,911.66669,770780.31,386196.81,185775.98,16356.044,14096.089,0,3225.291 +12709,15507,27649,27650,-9,-9,1,1,41,0,1,0,2,2,-9,0,3,8.6938229,9.2015762,0,6,-2,-17.744276,0,-9,-9,2021,10,0,42,48,1,0,0,14.779716,14.779716,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,41.07,60.93,6.666666666666667,1,1,0,0,3,4,4,0,911.66669,770780.31,386196.81,185775.98,16356.044,14096.089,0,3225.291 +12709,15507,27650,27649,-9,-9,1,0,43,0,1,0,2,2,-9,1,5,0,0,0,6,2,13.04678,0,-9,2,2021,8,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.07,60.93,60.29,52.11,10,1,1,0,0,0,4,4,0,911.66669,770780.31,386196.81,185775.98,16356.044,14096.089,0,3225.291 +12709,15508,27651,-9,27650,27649,1,1,24,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1109.3414,0,2,2,2021,14,4,0,30,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.72,48.65,-9,-9,8.333333333333334,1,1,0,0,2,4,1,0,778,67948.117,0,0,0,0,0,-449.11539 +12710,15509,27652,-9,27653,27654,1,1,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5511,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.52636862,0,57.16,56.15,-9,-9,10,1,1,0,0,0,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12710,15509,27653,27654,-9,-9,1,0,51,0,2,0,1,1,-9,0,3,0,0,0,7,-1,18.848236,0,2,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,54.37,54.8,50.45,51.34,8.333333333333334,1,1,0,0,5,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12710,15509,27654,27653,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.4905186,8.5245905,0,7,1,90.36013,0,3,2,2021,12,3,45,45,1,3,0,9.6051168,9.6051168,.05,.05,0,0,0,0,0,0,1,1,0,3.8109093,0,50.45,51.34,54.37,54.8,5,1,1,0,0,8,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12710,15509,27655,-9,27653,27654,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.3635,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,2023.25,1364700.4,1008823.8,392252.13,169327.59,3760.5859,4058.8342,2000.3418 +12711,15510,27656,27657,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,68,-5,-57.343647,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.0694976,0,57.96,42.54,56,44,10,1,1,0,0,0,10,2,1,2492.5,496264.53,173583.27,295603.44,0,0,0,1372.7356 +12711,15510,27657,27656,-9,-9,1,1,89,0,0,0,1,1,-9,0,3,0,4.7055669,4.9424806,68,5,-102.29969,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,129.00116,0,0,1,1,0,5.8109674,4.7559595,56,44,57.96,42.54,8,1,1,0,0,0,10,2,1,2492.5,496264.53,173583.27,295603.44,0,0,0,1372.7356 +12712,15511,27658,27659,-9,-9,1,0,42,0,0,0,1,1,-9,0,4,9.9491129,9.5714455,0,17,-1,.32065833,0,2,1,2021,9,0,50,60,1,0,0,36.49609,36.49609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,55.79,52.62,5,1,1,0,0,10,6,5,1,465.5,565854.69,496711.81,227845.53,184186.06,0,0,11574.937 +12712,15511,27659,27658,-9,-9,1,1,43,0,0,0,1,1,-9,0,4,9.6705647,9.9944658,6.8987846,17,1,-167.74036,0,3,2,2021,5,0,10,40,1,0,0,225.64758,225.64758,.05,.05,0,0,0,0,0,0,0,0,0,7.370924,7.4610662,55.79,52.62,46.5,58.26,8.333333333333334,1,1,0,0,8,6,5,1,465.5,565854.69,496711.81,227845.53,184186.06,0,0,11574.937 +12713,15512,27660,27661,-9,-9,1,1,42,1,1,0,1,1,-9,0,5,9.1141739,9.1510391,0,2,4,-54.706818,0,-9,-9,2021,6,1,40,58,1,1,0,29.835957,29.835957,.05,.05,0,0,0,0,0,0,0,0,0,7.466567,0,51.73,58.82,56.78,49.38,8.333333333333334,1,1,0,0,4,8,5,1,687.33331,882207.38,646474.06,398736.41,182669.72,5185.5903,0,3682.9092 +12713,15512,27661,27660,-9,-9,1,0,38,1,1,0,1,1,-9,0,4,0,0,0,2,-4,9.5932293,0,2,1,2021,10,0,0,43,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.78,49.38,51.73,58.82,6.666666666666667,1,1,1,0,9,8,5,1,687.33331,882207.38,646474.06,398736.41,182669.72,5185.5903,0,3682.9092 +12713,15512,27662,-9,27661,27660,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-892.98669,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,8,5,1,687.33331,882207.38,646474.06,398736.41,182669.72,5185.5903,0,3682.9092 +12714,15513,27663,27665,-9,-9,1,0,50,0,1,0,2,2,-9,0,2,8.1756277,8.4223614,0,2,12,-6.9718275,0,-9,2,2021,10,1,34,34,1,1,0,13.363526,13.363526,0,0,0,0,0,0,0,2,1,1,0,5.7583833,0,42.57,42.96,55.84,55.33,5,1,1,0,0,12,2,5,0,517,411234.75,10211.273,366461.41,149128.36,16999.643,0,4054.3242 +12714,15513,27664,-9,27663,27665,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-964.13806,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,5,0,517,411234.75,10211.273,366461.41,149128.36,16999.643,0,4054.3242 +12714,15513,27665,27663,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.7056637,8.4729528,0,2,-12,-123.42155,0,-9,-9,2021,6,0,37,38,1,0,0,15.063402,15.063402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.84,55.33,42.57,42.96,6.666666666666667,1,1,0,0,5,2,5,0,517,411234.75,10211.273,366461.41,149128.36,16999.643,0,4054.3242 +12715,15514,27666,27667,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.3167877,8.1217556,0,8,0,-117.74535,0,2,2,2021,12,1,36,36,1,1,0,9.4932775,9.4932775,.05,.05,0,0,0,0,0,0,0,0,0,1.0005352,0,40.48,62.56,57.16,56.15,6.666666666666667,1,1,0,0,7,5,5,1,276.5,273537.38,237052.47,125609.79,66783.539,0,0,3166.7339 +12715,15514,27667,27666,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.1457939,8.1865835,0,10,0,-53.024452,0,2,1,2021,6,0,36,36,1,0,0,11.164582,11.164582,.05,.05,0,0,0,0,0,0,0,0,0,.67952555,0,57.16,56.15,40.48,62.56,8.333333333333334,1,1,0,0,11,5,5,1,276.5,273537.38,237052.47,125609.79,66783.539,0,0,3166.7339 +12716,15515,27668,27669,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.6969681,8.5746651,0,4,1,13.993779,0,2,2,2021,7,0,37,37,1,0,0,20.995371,20.995371,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.19,48.81,58.14,42.54,8.333333333333334,3,4,0,0,14,8,5,1,627.5,406699.63,87456.875,281236.75,98079.367,2798.2227,1276.4736,3590.7446 +12716,15515,27669,27668,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,7.0973978,7.6850157,0,4,-1,49.092709,0,-9,-9,2021,8,0,35,50,1,0,0,6.9549422,6.9549422,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.14,42.54,43.19,48.81,5,1,1,0,0,8,8,5,1,627.5,406699.63,87456.875,281236.75,98079.367,2798.2227,1276.4736,3590.7446 +12716,15516,27670,-9,27668,-9,1,0,21,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.55731,-9,1,-9,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.2573187,0,29.93,60.54,-9,-9,5,3,4,1,0,2,8,1,1,675,-14694.152,0,0,0,0,0,649.83661 +12717,15517,27671,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,9.1641359,8.9378433,4.5906401,0,0,-1003.2006,0,2,2,2021,7,0,46,47,1,0,0,20.430168,20.430168,0,0,0,0,0,0,0,0,0,0,0,5.3400979,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,240,590413.19,363749.19,165673.52,0,2913.3313,0,3647.8982 +12718,15518,27672,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.8143673,7.0731139,0,0,-1051.7617,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3753862,6.7248697,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1214,514924.31,155438.06,263733.97,0,0,0,1805.3396 +12719,15519,27673,-9,27674,27676,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-925.56433,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6093236,0,44,59,-9,-9,7,1,1,0,0,0,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15519,27674,27676,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.1972265,7.8239274,0,25,-5,-12.314424,0,2,2,2021,14,2,46,50,1,2,0,9.5243769,9.5243769,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,62.66,52.4,5,1,1,0,0,13,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15519,27675,-9,27674,27676,1,0,16,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1006.6072,-9,1,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.51,58.8,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15519,27676,27674,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,0,0,0,10,5,75.905815,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,41.34,56.62,6.666666666666667,1,1,0,0,1,9,3,0,747.75,229393.28,91035.297,363929.94,247099.03,0,2254.2681,64.359398 +12719,15520,27677,-9,27674,27676,1,0,21,0,0,0,1,1,1,0,3,7.1996903,7.0631747,0,0,0,-1091.0361,-9,1,2,2021,20,8,18,0,1,8,1,5.5618958,5.5618958,0,0,0,0,0,0,0,0,0,0,0,0,0,32.38,58.28,-9,-9,6.666666666666667,1,1,0,0,5,9,2,0,178,144848.98,0,0,0,0,0,-199.45174 +12719,15521,27678,-9,27674,27676,1,0,20,0,0,0,2,2,-9,0,3,5.1165867,5.389607,0,0,0,-1009.6824,0,1,2,2021,12,3,32,32,1,3,1,.90880346,.90880346,0,0,0,0,0,0,0,0,0,0,0,7.0667791,0,39.03,49.56,-9,-9,6.666666666666667,1,1,0,0,4,9,2,0,1752,158186.53,0,0,0,0,0,1177.6255 +12719,15522,27679,-9,27674,27676,1,0,20,0,0,0,2,2,-9,0,4,7.8079872,7.9688039,0,0,0,-874.41766,0,1,2,2021,12,0,40,0,1,0,1,6.9020247,6.9020247,0,0,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,4,9,3,0,322,20898.787,0,0,0,0,0,1335.9618 +12720,15523,27680,27681,-9,-9,1,0,46,0,0,0,2,2,-9,0,4,9.2052259,8.9201822,0,3,-21,16.362194,0,-9,-9,2021,12,0,40,40,1,0,0,19.135759,19.135759,.05,.05,0,0,0,0,0,0,1,1,0,7.0410657,0,42.64,57.17,37.27,51.5,5,1,1,0,0,13,4,5,1,1406.5,1215096.1,651582.63,170131.56,0,0,0,5032.7129 +12720,15523,27681,27680,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,7.5969782,7.463717,0,3,21,12.513801,0,2,3,2021,14,2,60,60,1,2,0,3.5892982,3.5892982,.05,.05,0,0,0,0,0,0,1,1,0,3.7189202,0,37.27,51.5,42.64,57.17,3.333333333333333,1,1,0,0,12,4,5,1,1406.5,1215096.1,651582.63,170131.56,0,0,0,5032.7129 +12720,15524,27682,-9,27680,27681,1,1,29,0,0,0,2,2,-9,0,3,7.8536878,7.761795,0,0,0,-945.16284,0,2,2,2021,16,4,80,65,1,4,1,4.2663736,4.2663736,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.62,44.34,-9,-9,6.666666666666667,1,1,0,0,12,4,3,1,15314,-12310.409,-57984.277,0,0,0,764.05872,1306.4729 +12721,15525,27683,27684,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,0,.098101072,0,1,-7,-94.201981,-9,-9,-9,2021,7,0,80,0,1,0,0,.00025358031,.00025358031,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,61.16,53.18,10,1,1,0,0,1,12,2,1,1026,251560.16,313602.84,0,0,0,4074.5581,171.80679 +12721,15525,27684,27683,-9,-9,1,0,63,0,0,0,2,2,-9,0,5,0,0,0,1,7,64.890068,-9,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.5416863,0,61.16,53.18,59.43,58.05,10,1,1,0,0,5,12,2,1,1026,251560.16,313602.84,0,0,0,4074.5581,171.80679 +12722,15526,27685,27686,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,7.1455665,7.0135417,8,4,-11.148535,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.9308639,7.4417276,46.33,55.93,38.67,45.86,8.333333333333334,1,1,0,0,2,13,2,1,303.5,362032.63,113065.85,133344.27,0,0,-85.561066,1920.5071 +12722,15526,27686,27685,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,8,-4,-107.80143,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,38.67,45.86,46.33,55.93,6.666666666666667,1,1,0,0,7,13,2,1,303.5,362032.63,113065.85,133344.27,0,0,-85.561066,1920.5071 +12723,15527,27687,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,5,8.4520941,8.2813778,0,0,0,-985.52368,0,-9,-9,2021,12,0,37,37,1,0,0,14.373636,14.373636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.02,58.89,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,205,432571.97,318919.72,0,0,7714.7646,0,1949.3268 +12724,15528,27688,27689,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,8.6327982,8.7225237,7.2432046,35,0,-10.944124,0,-9,2,2021,6,0,37,37,1,0,0,19.078161,19.078161,0,0,0,0,0,0,0,0,0,0,0,2.1531894,7.733747,58.08,43.46,60.12,54.8,8.333333333333334,1,1,0,0,10,5,5,1,457.5,1209927.6,924925.88,0,0,0,0,3175.5688 +12724,15528,27689,27688,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,4.9689202,5.0185952,45,0,-28.822119,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7904582,4.6160121,60.12,54.8,58.08,43.46,8.333333333333334,1,1,0,0,0,5,5,1,457.5,1209927.6,924925.88,0,0,0,0,3175.5688 +12725,15529,27690,27691,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,6.9514909,6.7305365,41,-10,-125.27254,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2401581,36.77,62.57,44.47,39.33,8.333333333333334,1,1,0,0,8,9,3,1,110.5,747552,581784.75,474101.31,132513.56,0,7015.5205,1728.8184 +12725,15529,27691,27690,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.1392117,7.5226421,11,10,46.387875,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3529754,7.1436648,44.47,39.33,36.77,62.57,5,1,1,0,0,0,9,3,1,110.5,747552,581784.75,474101.31,132513.56,0,7015.5205,1728.8184 +12726,15530,27692,27696,-9,-9,1,0,35,1,3,0,3,3,-9,0,3,0,0,0,14,0,-25.209673,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.2,51.14,57.33,53.46,6.666666666666667,2,3,0,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27693,-9,27692,27696,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1026.6252,-9,3,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27694,-9,27692,27696,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.2299,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27695,-9,27692,27696,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1070.3044,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12726,15530,27696,27692,-9,-9,1,1,35,1,3,0,2,2,-9,0,3,6.5832233,7.0849237,0,8,0,-11.100537,0,-9,-9,2021,11,0,16,16,1,0,0,5.2101269,5.2101269,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,45.2,51.14,6.666666666666667,2,3,0,0,11,4,2,0,1405.4,-61294.668,0,0,0,116.61591,0,1920.4268 +12727,15531,27697,27699,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.0257092,7.7622561,0,7,-4,-63.26688,0,2,1,2021,27,12,15,0,1,12,0,23.66297,23.66297,.05,.05,0,0,0,0,0,0,1,1,0,7.2675815,0,24.37,64.5,51.49,57.57,5,2,3,0,0,2,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27698,-9,27697,27699,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.8011,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27699,27697,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,8.3494549,8.2249174,0,7,4,79.522057,0,-9,-9,2021,12,0,37,37,1,0,0,12.884607,12.884607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,24.37,64.5,8.333333333333334,2,3,0,0,10,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27700,-9,27697,27699,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1114.6981,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12727,15531,27701,-9,27697,27699,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.67426,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,4,1,1615.2,123217.88,89912.688,233106.33,105789.18,0,4593.9375,4807.6631 +12728,15532,27702,-9,27706,27705,1,1,10,1,5,1,3,0,-9,0,3,0,0,0,0,0,-923.01434,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27703,-9,27706,27705,1,0,5,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1020.7956,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27704,-9,27706,27705,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-942.87872,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27705,27706,-9,-9,1,1,37,1,5,0,2,2,-9,0,3,8.3457546,8.3001595,0,17,4,97.094078,0,2,1,2021,25,8,37,37,1,8,0,13.103996,13.103996,.05,.05,0,0,0,0,0,7,1,1,0,6.998879,0,14.9,66.18000000000001,25.44,65.40000000000001,0,1,1,0,0,11,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27706,27705,-9,-9,1,0,33,1,5,0,2,2,-9,1,4,0,0,0,17,-4,-18.010872,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,25.44,65.40000000000001,14.9,66.18000000000001,6.666666666666667,1,1,0,0,1,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27707,-9,27706,27705,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-930.87854,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12728,15532,27708,-9,27706,27705,1,0,8,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1087.6095,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,841.28571,-74427.211,9371.9541,0,0,1855.7933,5857.9824,4667.7383 +12729,15533,27709,-9,-9,-9,1,0,18,0,0,1,2,0,-9,0,5,0,0,0,0,0,-1073.6874,-9,-9,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,8.333333333333334,3,4,0,0,0,7,1,0,735,-47713.719,0,0,0,0,0,0 +12730,15534,27710,27711,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.5580206,8.043395,0,28,2,-8.9468842,0,2,3,2021,10,1,39,45,1,1,0,15.809263,15.809263,.05,.05,0,0,0,0,0,2,1,1,0,3.803349,0,54.79,55.86,53.46,53.93,1.666666666666667,1,1,0,0,9,7,5,1,2757.5,716224.88,388222.06,444709.88,220185.19,12472.832,6561.4404,3416.4126 +12730,15534,27711,27710,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.5274677,8.4959488,0,28,-2,-35.883991,0,3,3,2021,7,0,40,40,1,0,0,14.614933,14.614933,.05,.05,.05,0,0,0,0,2,1,1,0,3.4879539,0,53.46,53.93,54.79,55.86,10,1,1,0,0,8,7,5,1,2757.5,716224.88,388222.06,444709.88,220185.19,12472.832,6561.4404,3416.4126 +12730,15535,27712,-9,27710,27711,1,1,22,0,0,0,1,1,-9,0,4,7.8838611,7.9139662,0,0,0,-980.34503,0,2,2,2021,12,0,44,48,1,0,1,6.63938,6.63938,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,7,4,1,1534,-38345.676,0,0,0,0,0,1390.1813 +12731,15536,27713,27715,-9,-9,1,1,31,0,1,0,1,1,-9,1,2,0,0,0,1,-4,0,-9,-9,-9,2021,6,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.94,49.91,36.79,61.46,10,1,1,1,0,0,12,1,0,866.66669,159572.7,137955.09,0,0,2318.8159,0,2186.6465 +12731,15536,27714,-9,27715,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.1689,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,1,0,866.66669,159572.7,137955.09,0,0,2318.8159,0,2186.6465 +12731,15536,27715,27713,-9,-9,1,0,35,0,1,0,2,2,-9,1,5,0,0,0,1,4,0,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,61.46,44.94,49.91,6.666666666666667,1,1,1,0,0,12,1,0,866.66669,159572.7,137955.09,0,0,2318.8159,0,2186.6465 +12732,15537,27716,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,5.986938,6.175004,0,0,-985.81378,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,6.0647159,0,0,1,1,0,2.295661,6.1112514,49.11,43.42,-9,-9,6.666666666666667,1,1,0,0,0,5,2,0,870,-42325.234,28015.996,0,0,0,0,1030.286 +12733,15538,27717,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,0,0,0,0,0,-921.75446,-9,-9,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.35,60.18,-9,-9,5,1,1,0,1,6,7,1,0,238,-21750.514,0,0,0,0,0,996.63342 +12734,15539,27718,-9,-9,-9,1,1,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1005.1281,-9,-9,3,2021,17,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.42,35.77,-9,-9,10,1,1,1,0,0,8,1,0,720,-58670.891,0,0,0,0,0,596.67596 +12735,15540,27719,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.8662281,8.8002234,0,0,0,-1086.4685,0,-9,-9,2021,9,0,59,39,1,0,0,15.940829,15.940829,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.69,42.53,-9,-9,0,3,4,0,0,9,8,5,0,1288,663453.06,419227.34,0,0,0,1612.0302,1718.3702 +12735,15541,27720,-9,27719,-9,1,1,22,0,0,0,2,2,1,0,3,6.1360559,6.1933017,0,0,0,-930.09882,-9,2,-9,2021,12,2,12,0,1,2,1,3.8110993,3.8110993,0,0,0,0,0,0,0,0,0,0,0,0,0,45.16,56.56,-9,-9,10,3,4,0,0,0,8,2,0,490,-125736.16,0,0,0,0,0,179.7827 +12735,15542,27721,-9,27719,-9,1,1,23,0,0,1,2,0,0,0,4,0,0,0,0,0,-864.50873,-9,2,-9,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,0,8,1,0,1064,239696.42,0,0,0,0,0,-31.255045 +12736,15543,27722,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1065.0311,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.0282974,0,40.67,51.61,-9,-9,6.666666666666667,1,1,0,0,4,12,1,1,283,1205078.3,1109197.4,446279.84,135206.75,6568.2871,26529.059,3781.2627 +12737,15544,27723,-9,27724,27725,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-989.9859,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12737,15544,27724,27725,-9,-9,1,0,41,0,2,0,1,1,-9,0,4,8.0912876,8.0334673,0,18,-2,-21.270128,0,2,2,2021,10,0,22,20,1,1,0,21.285759,21.285759,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,57.06,57.76,8,1,1,0,0,1,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12737,15544,27725,27724,-9,-9,1,1,43,0,2,0,2,2,-9,1,5,8.1261339,8.0829983,0,18,2,53.257122,0,2,1,2021,7,0,38,37,1,0,0,13.441706,13.441706,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,49,55,8.333333333333334,1,1,0,0,8,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12737,15544,27726,-9,27724,27725,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7212,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,4,1,1054.75,301253.28,114310.03,202559.63,92150.352,0,0,3175.0212 +12738,15545,27727,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1063.0841,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.42,42.58,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,1177,37054.109,0,0,0,0,0,1496.9238 +12739,15546,27728,27729,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.5796318,8.5104084,0,14,-2,87.834053,0,2,2,2021,10,0,94,14,1,0,0,6.7812486,6.7812486,.05,.05,0,0,0,0,0,2,0,0,0,7.2857652,0,51.14,60.45,42.95,61.24,8.333333333333334,1,1,0,0,15,10,4,1,223,531871.81,272242.69,290727.41,141797.81,20300.703,9552.8896,3073.1523 +12739,15546,27729,27728,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.0751586,7.2356405,4.7637496,14,2,136.56218,0,2,1,2021,10,0,50,60,1,0,0,3.6744637,3.6744637,.05,.05,0,0,0,0,0,0,0,0,0,5.2415352,0,42.95,61.24,51.14,60.45,6.666666666666667,1,1,0,0,13,10,4,1,223,531871.81,272242.69,290727.41,141797.81,20300.703,9552.8896,3073.1523 +12740,15547,27730,27731,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,0,0,7,-8,14.671276,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3412967,0,59.1,39.65,58.47,50.22,8.333333333333334,1,1,0,0,0,12,2,1,939.5,319557.06,129499.3,151784.72,0,0,0,1444.1062 +12740,15547,27731,27730,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,7.4455051,7.4483247,7,8,-14.416269,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5656285,7.5513597,58.47,50.22,59.1,39.65,8.333333333333334,1,1,0,0,0,12,2,1,939.5,319557.06,129499.3,151784.72,0,0,0,1444.1062 +12741,15548,27732,27733,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.7339783,8.7816439,0,32,0,18.776863,0,1,3,2021,7,0,50,49,1,0,0,12.102808,12.102808,0,0,0,0,0,0,0,2,0,0,0,6.8354993,0,57.06,57.76,53,54,10,1,1,0,0,7,2,5,1,1226,73407.719,157987.38,194594.67,52412.641,7273.6274,0,6912.7725 +12741,15548,27733,27732,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.1990919,9.4054785,7.2863884,7,0,5.0371857,0,-9,-9,2021,9,0,40,40,1,1,0,28.921711,28.921711,.05,.05,.05,0,0,0,0,0,0,0,0,0,7.1771464,53,54,57.06,57.76,8,1,1,0,0,1,2,5,1,1226,73407.719,157987.38,194594.67,52412.641,7273.6274,0,6912.7725 +12741,15549,27734,-9,27732,27733,1,1,22,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1106.5681,-9,2,2,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.47102749,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,2,1,1,260,87706.734,0,0,0,0,0,-408.09186 +12742,15550,27735,-9,27737,27736,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-928.42267,-9,1,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.98,54.78,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,433.33334,832445.63,354910.78,170434.41,25626.813,0,0,4050.3064 +12742,15550,27736,27737,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,9.5038261,9.1505156,0,9,2,-78.621201,0,1,1,2021,10,0,24,32,1,1,0,62.148289,62.148289,0,0,0,0,0,0,0,0,0,0,0,2.0733745,0,50,49,59.33,51.29,7,1,1,0,0,1,12,5,1,433.33334,832445.63,354910.78,170434.41,25626.813,0,0,4050.3064 +12742,15550,27737,27736,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,0,0,0,9,-2,-42.701935,0,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6513145,0,59.33,51.29,50,49,8.333333333333334,1,1,0,0,0,12,5,1,433.33334,832445.63,354910.78,170434.41,25626.813,0,0,4050.3064 +12743,15551,27738,27739,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.0235643,8.2393064,7.0541315,16,-5,-80.079033,0,2,2,2021,24,12,40,40,1,12,0,8.3894272,8.3894272,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9928408,44.09,30.9,57.33,53.46,6.666666666666667,1,1,0,0,14,10,3,1,767,122161.33,-105665.58,0,0,4712.9238,4043.5925,2241.8369 +12743,15551,27739,27738,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,4.9548888,4.9351954,0,26,5,-28.81097,0,2,2,2021,6,0,10,12,1,0,0,1.1736438,1.1736438,.05,.05,0,0,0,0,0,0,1,1,0,2.1022115,0,57.33,53.46,44.09,30.9,8.333333333333334,1,1,0,0,13,10,3,1,767,122161.33,-105665.58,0,0,4712.9238,4043.5925,2241.8369 +12744,15552,27740,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.218008,8.4102449,0,0,0,-978.34149,0,-9,-9,2021,24,11,60,33,1,11,0,6.2140708,6.2140708,.05,.05,0,0,0,0,0,0,0,0,0,1.2784745,0,12.37,66.34999999999999,-9,-9,3.333333333333333,1,1,0,0,6,10,4,0,638,-22390.559,-94769.844,0,0,0,0,1486.3311 +12745,15553,27741,27742,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,7.505374,7.6583233,0,28,-8,-24.110472,0,-9,-9,2021,16,4,25,25,1,4,0,9.4935198,9.4935198,0,0,0,0,0,0,0,0,0,0,0,0,0,33.35,53.53,32.31,42.22,0,1,1,0,0,11,5,4,0,2830,-76053.383,102518.56,16860.482,6652.6577,16407.598,0,2155.3936 +12745,15553,27742,27741,-9,-9,1,1,51,0,0,0,2,2,-9,0,2,8.1085443,7.9788723,0,28,8,118.83527,0,-9,-9,2021,21,7,50,60,1,7,0,6.3759103,6.3759103,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.31,42.22,33.35,53.53,6.666666666666667,1,1,0,0,10,5,4,0,2830,-76053.383,102518.56,16860.482,6652.6577,16407.598,0,2155.3936 +12745,15554,27743,-9,27741,27742,1,0,23,0,0,0,2,2,-9,0,4,6.7833233,6.7631936,0,0,0,-1029.4635,0,2,2,2021,23,8,21,40,1,8,1,4.6423965,4.6423965,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.67,53.13,-9,-9,6.666666666666667,1,1,0,0,2,5,2,0,1013,90092.859,28613.795,0,0,0,0,429.91229 +12746,15555,27744,27745,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,6,1,-52.569805,0,3,2,2021,9,0,0,38,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49.61,54.24,55.37,40.83,8.333333333333334,1,1,1,0,5,2,3,1,568,916560.88,786121.88,175312.25,0,0,0,1626.5352 +12746,15555,27745,27744,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,0,8.1823902,7.7351294,6,-1,-106.65473,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1382372,7.7999029,55.37,40.83,49.61,54.24,8.333333333333334,1,1,0,0,7,2,3,1,568,916560.88,786121.88,175312.25,0,0,0,1626.5352 +12747,15556,27746,27747,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,8.2255325,8.1469278,0,31,-11,.60742724,0,3,1,2021,21,9,18,22,1,9,0,28.326977,28.326977,0,0,0,0,0,0,0,0,1,1,0,8.7878952,0,47.59,55.4,51.42,48.12,8.333333333333334,1,1,0,0,9,8,5,1,1393,4668837,3339883,663784.25,0,0,0,12372.838 +12747,15556,27747,27746,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,9.1113138,9.3572311,8.3009939,8,11,56.510418,0,-9,-9,2021,12,1,25,42,1,1,0,38.451881,38.451881,0,0,0,0,0,0,0,0,1,1,0,8.6578588,8.7168436,51.42,48.12,47.59,55.4,8.333333333333334,1,1,0,0,9,8,5,1,1393,4668837,3339883,663784.25,0,0,0,12372.838 +12747,15557,27748,-9,27746,27747,1,0,25,0,0,0,1,1,1,0,3,8.4581423,8.4329338,0,0,0,-1126.182,-9,2,1,2021,6,0,38,0,1,0,1,9.0535975,9.0535975,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,-9,-9,8.333333333333334,1,1,0,0,3,8,4,1,291,30932.08,0,0,0,26651.68,275.72733,538.66956 +12747,15558,27749,-9,27746,27747,1,1,23,0,0,0,1,1,-9,0,3,8.4825678,8.3301535,0,0,0,-956.3938,-9,2,1,2021,5,0,38,0,1,0,1,10.534861,10.534861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,6.666666666666667,1,1,0,0,1,8,4,1,1330,-11266.025,106792.33,0,0,0,0,1915.6389 +12748,15559,27750,-9,27751,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.00433,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,836.5,44629.703,0,0,0,11677.351,0,1804.4216 +12748,15559,27751,-9,-9,-9,1,0,32,0,2,0,3,3,-9,1,2,6.6232152,6.9172454,6.068841,0,0,-1040.5253,0,2,3,2021,13,3,17,16,1,3,0,5.0029597,5.0029597,0,0,0,0,0,0,0,14.5,1,1,0,5.3392034,0,39.39,52.79,-9,-9,5,1,1,0,0,4,2,2,0,836.5,44629.703,0,0,0,11677.351,0,1804.4216 +12749,15560,27752,27753,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,7.6793303,8.6035166,8.2605133,9,0,-60.439068,0,3,3,2021,6,0,16,16,1,0,0,25.056763,25.056763,0,0,0,0,0,0,0,7,1,1,0,8.5771465,8.4862022,58.15,52.91,42.65,15.87,8.333333333333334,1,1,0,0,11,2,4,1,580,497514.56,397602.09,53335.629,58301.156,0,2008.2195,4221.3892 +12749,15560,27753,27752,-9,-9,1,1,63,0,0,0,2,2,-9,1,1,0,0,0,9,0,-85.114075,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.7290063,0,42.65,15.87,58.15,52.91,6.666666666666667,1,1,0,0,8,2,4,1,580,497514.56,397602.09,53335.629,58301.156,0,2008.2195,4221.3892 +12750,15561,27754,27755,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.5925207,8.3417006,0,22,1,234.44685,0,-9,-9,2021,12,0,41,41,1,0,0,12.766328,12.766328,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.24,58.84,8.333333333333334,2,3,0,0,9,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15561,27755,27754,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.6371961,7.3439922,0,6,-1,-4.3577881,0,-9,2,2021,9,0,6,27,1,0,0,39.976566,39.976566,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.33,53.46,6.666666666666667,2,3,0,0,3,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15561,27756,-9,27755,27754,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.9812,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15561,27757,-9,27755,27754,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.32654,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,3,1,546.25,470955.44,68033.016,353126.84,151981.19,0,0,2837.2241 +12750,15562,27758,-9,27755,27754,1,1,18,0,2,1,2,0,0,0,3,0,0,0,0,0,-1107.4568,-9,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,0,7,2,1,1011,-82001.211,0,0,0,0,0,0 +12751,15563,27759,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.6240692,8.6439323,5.8929577,0,0,-1026.6322,0,3,2,2021,7,0,35,35,1,0,0,14.716694,14.716694,.05,.05,0,0,0,0,0,0,1,1,0,7.0207677,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,13,12,4,1,917.5,210651.89,142509.86,0,0,0,1108.3506,3255.0459 +12751,15563,27760,-9,27759,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-965.08649,-9,1,-9,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.31,61.31,-9,-9,5,1,1,0,0,0,12,4,1,917.5,210651.89,142509.86,0,0,0,1108.3506,3255.0459 +12752,15564,27761,27763,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,7.6781902,8.0134382,0,30,-3,70.571228,0,3,2,2021,33,12,40,36,1,12,0,5.5999355,5.5999355,0,0,0,0,0,0,0,0,1,1,0,0,0,7.28,63.64,46.08,57.2,5,1,1,0,0,11,9,5,1,465.33334,1305891.3,580198.38,831590.5,261272.39,0,0,4746.0972 +12752,15564,27762,-9,27761,27763,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-980.31635,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,5,1,465.33334,1305891.3,580198.38,831590.5,261272.39,0,0,4746.0972 +12752,15564,27763,27761,-9,-9,1,1,51,0,1,0,1,1,-9,0,3,9.3359051,9.032362,0,30,3,-32.510727,0,2,2,2021,9,0,40,40,1,0,0,22.936905,22.936905,0,0,0,0,0,0,0,0,1,1,0,1.2955052,0,46.08,57.2,7.28,63.64,8.333333333333334,1,1,0,0,14,9,5,1,465.33334,1305891.3,580198.38,831590.5,261272.39,0,0,4746.0972 +12752,15565,27764,-9,27761,27763,1,0,18,0,1,0,2,2,1,0,1,6.6822667,6.6069684,0,0,0,-970.42267,-9,2,1,2021,36,12,28,0,1,12,1,2.5774722,2.5774722,0,0,0,0,0,0,0,0,1,1,0,.59555829,0,13.27,46.77,-9,-9,3.333333333333333,1,1,0,0,1,9,2,1,54,-44415.48,0,0,0,-1852.5792,1227.7737,142.28555 +12753,15566,27765,27766,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.9154172,7.2445154,8,5,55.326759,0,2,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,41.841858,0,0,1,1,0,0,7.6455812,59.81,35.89,49.86,55.31,6.666666666666667,1,1,0,0,0,9,3,1,243.5,1177831,176054.05,611620.13,0,0,0,2578.9824 +12753,15566,27766,27765,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,6.107717,6.3439813,8,-5,15.652826,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,4.2488422,6.2777448,49.86,55.31,59.81,35.89,6.666666666666667,1,1,0,0,1,9,3,1,243.5,1177831,176054.05,611620.13,0,0,0,2578.9824 +12754,15567,27767,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.1970544,7.4769731,0,0,-1008.2669,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.937758,7.515492,55.56,46,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,502,438890.31,201261.63,230042.06,0,0,0,1406.7671 +12755,15568,27768,27769,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.2031412,8.4421005,0,3,0,-149.74347,0,-9,-9,2021,9,0,25,25,1,0,0,17.318155,17.318155,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,7,8,5,0,375.5,766684.38,769054.25,365711.94,259031.78,0,13055.458,4230.9741 +12755,15568,27769,27768,-9,-9,1,1,54,0,0,0,2,2,-9,0,5,8.9626188,8.971674,0,3,0,-67.787155,0,3,3,2021,7,0,40,40,1,0,0,27.038839,27.038839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,13,8,5,0,375.5,766684.38,769054.25,365711.94,259031.78,0,13055.458,4230.9741 +12756,15569,27770,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,6.3726015,6.7270708,0,0,-1074.9636,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0028677,6.8689213,50.74,17.64,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,467,605056.56,487269.5,0,0,0,0,1366.7885 +12757,15570,27771,27772,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.471848,7.560308,44,1,148.14085,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2940264,7.8925424,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,2084,1042657.8,659362.69,280490.03,0,0,0,3140.4688 +12757,15570,27772,27771,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.2949562,7.2789211,44,-1,-74.280617,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1030874,7.3476591,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,0,7,3,1,2084,1042657.8,659362.69,280490.03,0,0,0,3140.4688 +12758,15571,27773,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,7.5038724,7.2956753,0,0,-1133.7042,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8806689,7.281394,40.84,31.46,-9,-9,3.333333333333333,1,1,0,0,3,7,3,1,183,496397.97,298739.94,374612.09,24879.906,18800.469,0,1151.0176 +12759,15572,27774,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,9.1164722,8.6532154,6.1547098,0,0,-1134.3882,0,2,3,2021,12,0,55,40,1,0,0,18.428558,18.428558,.05,.05,0,0,0,0,0,0,1,1,0,6.859436,0,32.08,58.42,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,3295.5,12129.855,17242.023,0,0,15453.624,0,2870.3125 +12759,15572,27775,-9,27774,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.34485,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,3295.5,12129.855,17242.023,0,0,15453.624,0,2870.3125 +12760,15573,27776,27778,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,7.109334,6.8189378,0,10,1,86.367599,0,2,1,2021,9,0,40,40,1,0,0,2.9332352,2.9332352,.05,.05,0,0,0,0,0,0,0,0,0,8.5306568,0,50.65,53.71,35.36,56.72,8.333333333333334,1,1,0,0,11,5,5,1,877.66669,555086.25,374189.53,186600.31,0,4951.856,0,8506.6846 +12760,15573,27777,-9,27778,27776,1,0,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-999.07648,-9,1,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.63,55.6,-9,-9,10,1,1,0,0,0,5,5,1,877.66669,555086.25,374189.53,186600.31,0,4951.856,0,8506.6846 +12760,15573,27778,27776,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.5923567,9.4617653,0,10,-1,-89.299118,-9,-9,-9,2021,26,9,42,0,1,9,0,39.638069,39.638069,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.36,56.72,50.65,53.71,3.333333333333333,1,1,0,0,11,5,5,1,877.66669,555086.25,374189.53,186600.31,0,4951.856,0,8506.6846 +12761,15574,27779,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,0,0,-909.6521,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.26,24.38,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,658,-171844.14,0,0,0,0,-884.99554,1731.1857 +12762,15575,27780,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.9531198,6.7250366,0,0,-1001.3529,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7634645,57.77,33.07,-9,-9,10,1,1,0,0,0,12,2,1,191,201558.28,256608.33,110833.21,0,0,0,2054.4199 +12763,15576,27781,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1104.7173,0,3,3,2021,11,0,0,36,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,1,0,13,8,1,0,342,270094.59,0,0,0,-31.865643,0,1067.1106 +12764,15577,27782,27783,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,5.6406116,5.8969827,0,34,-1,-11.131888,0,3,3,2021,13,3,25,25,1,3,0,1.2084229,1.2084229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.41,51.2,52,54.51,8.333333333333334,1,1,0,0,11,1,4,0,695.5,1244307.5,889638.63,164971.3,7769.5488,8404.041,0,2760.6047 +12764,15577,27783,27782,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.6337843,8.838747,0,34,1,81.218613,0,3,3,2021,11,0,40,40,1,0,0,19.990276,19.990276,.05,.05,0,0,0,0,0,0,0,0,0,6.0467257,0,52,54.51,47.41,51.2,6.666666666666667,1,1,0,0,11,1,4,0,695.5,1244307.5,889638.63,164971.3,7769.5488,8404.041,0,2760.6047 +12765,15578,27784,27785,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,0,6.2565746,6.3663564,2,3,143.53477,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7128453,0,54.79,55.86,54.74,57.22,8.333333333333334,1,1,0,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27785,27784,-9,-9,1,1,43,0,3,0,2,2,-9,0,4,8.1201315,8.2946348,0,2,-3,2.4874437,0,2,2,2021,9,0,46,50,1,0,0,9.1902046,9.1902046,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.74,57.22,54.79,55.86,6.666666666666667,1,1,0,0,11,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27786,-9,27784,27785,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1029.3875,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27787,-9,27784,27785,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-987.9162,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12765,15578,27788,-9,27784,27785,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-999.1001,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,3,1,992.59998,99415.336,97686.922,178712.03,53427.34,0,0,2873.7109 +12766,15579,27789,27790,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.9227867,8.6004143,0,16,11,207.17139,0,-9,-9,2021,6,0,44,44,1,0,0,17.627377,17.627377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,52,33.25,8.333333333333334,1,1,0,0,11,10,5,1,431,1268495.8,890278.19,399828,0,0,0,5286.7959 +12766,15579,27790,27789,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,7.754107,7.7004642,0,16,-11,68.975784,0,2,3,2021,7,0,13,22,1,0,0,25.713133,25.713133,0,0,0,0,0,0,0,0,1,1,0,7.5377064,0,52,33.25,60.12,54.8,8.333333333333334,1,1,0,0,11,10,5,1,431,1268495.8,890278.19,399828,0,0,0,5286.7959 +12766,15580,27791,-9,27790,27789,1,1,19,0,0,0,2,2,1,0,5,7.7684035,7.8348775,0,0,0,-954.24109,-9,2,2,2021,11,2,40,0,1,2,1,9.0891256,9.0891256,.05,.05,0,0,0,0,0,0,1,1,0,3.2853761,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,513,-169292.17,-115568.26,0,0,0,0,1180.7753 +12767,15581,27792,27793,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.1754861,6.9484563,8,20,50.272808,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,27.573946,0,120,1,1,0,5.6809034,6.9642749,51.73,17.23,32.48,31.29,5,1,1,0,0,0,10,2,0,1026,594844.88,368620.44,128687.36,0,0,0,2857.5908 +12767,15581,27793,27792,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,8,-20,24.001234,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,32.48,31.29,51.73,17.23,5,1,1,0,0,0,10,2,0,1026,594844.88,368620.44,128687.36,0,0,0,2857.5908 +12768,15582,27794,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,5,9.0301075,8.8663216,0,1,-2,-58.545258,0,2,2,2021,9,1,38,38,1,1,0,22.160473,22.160473,.05,.05,0,0,0,0,0,0,0,0,0,4.6065297,0,43.92,62.31,48,58,6.666666666666667,2,3,0,0,8,8,5,0,801,78695.023,162853.28,0,0,0,0,2773.1836 +12769,15583,27795,27796,-9,-9,1,0,53,0,0,0,2,2,-9,1,2,0,0,0,10,2,22.976782,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.23999999999999,8.66,52.3,46.15,5,1,1,0,0,0,11,3,1,1156.5,874172.5,672333.13,79687.297,0,0,0,2123.291 +12769,15583,27796,27795,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.1878252,8.3685522,0,10,-2,-90.311577,0,-9,-9,2021,11,0,40,40,1,0,0,10.916467,10.916467,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,52.3,46.15,69.23999999999999,8.66,5,1,1,0,0,13,11,3,1,1156.5,874172.5,672333.13,79687.297,0,0,0,2123.291 +12770,15584,27797,27798,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,7.6768446,7.5025182,0,2,1,42.299068,0,-9,-9,2021,6,0,23,38,1,0,0,8.672761,8.672761,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,50,58,10,1,1,0,0,8,8,4,0,794.66669,-85752.492,59013.008,125382.46,101684.13,23524.113,0,3484.4941 +12770,15584,27798,27797,-9,-9,1,1,26,1,1,0,2,2,-9,0,4,8.1140442,8.2393436,0,2,-1,-112.53149,0,1,3,2021,10,0,60,0,1,1,0,8.4321032,8.4321032,.05,.05,0,0,0,0,0,7,1,1,0,0,0,50,58,57.06,57.76,7,4,2,0,0,2,8,4,0,794.66669,-85752.492,59013.008,125382.46,101684.13,23524.113,0,3484.4941 +12770,15584,27799,-9,27797,27798,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1067.2518,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,0,794.66669,-85752.492,59013.008,125382.46,101684.13,23524.113,0,3484.4941 +12771,15585,27800,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.6721973,9.7016363,0,5,0,-117.58514,0,2,1,2021,8,0,55,50,1,0,0,28.650352,28.650352,.05,.05,0,0,0,0,0,0,0,0,0,7.7213693,0,57.16,56.15,50,58,8.333333333333334,1,1,0,0,12,8,5,0,539,93537.891,234624.59,0,0,0,0,4228.0298 +12772,15586,27801,-9,-9,-9,1,0,60,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1099.7076,0,2,2,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.33,53.5,-9,-9,3.333333333333333,1,1,0,0,5,2,1,1,779,-37357.652,0,0,0,0,0,414.2373 +12773,15587,27802,27803,-9,-9,1,1,86,0,0,0,1,1,-9,0,3,0,7.3959875,6.8847718,6,2,14.099892,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9532322,7.1330113,55,45,53,44,8,1,1,0,0,0,11,3,1,544,140543.94,0,0,0,0,0,2481.2163 +12773,15587,27803,27802,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.2597313,6.971055,6,-2,-6.9775357,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9954886,7.4901838,53,44,55,45,8,1,1,0,0,0,11,3,1,544,140543.94,0,0,0,0,0,2481.2163 +12774,15588,27804,27805,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.2788749,7.421123,44,1,-31.958624,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4215479,7.2065697,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,2166.5,2088466.3,1408544.8,128420.73,0,0,0,3380.6084 +12774,15588,27805,27804,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,8.4352827,8.4083729,44,-1,-18.403465,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6113186,8.416317,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,2166.5,2088466.3,1408544.8,128420.73,0,0,0,3380.6084 +12775,15589,27806,27807,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.4293079,8.2907972,6.0661006,3,10,-4.0389915,0,-9,-9,2021,10,0,40,40,1,1,0,11.76869,11.76869,.05,.05,0,0,0,0,0,0,1,1,0,0,5.6995659,52,47,55.19,54.26,7,1,1,0,0,1,10,5,0,340,671961.69,480042.06,223870.59,59131.289,0,0,4543.1353 +12775,15589,27807,27806,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,7.1994181,7.689631,6.9506059,3,-10,132.07127,0,2,2,2021,7,0,25,34,1,0,0,6.7399335,6.7399335,.05,.05,0,0,0,0,0,0,1,1,0,5.5913858,6.8753533,55.19,54.26,52,47,8.333333333333334,1,1,0,0,7,10,5,0,340,671961.69,480042.06,223870.59,59131.289,0,0,4543.1353 +12776,15590,27808,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-866.1955,0,2,-9,2021,10,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,60.8,51.86,-9,-9,10,1,1,0,0,0,9,1,1,440,-60981.07,0,0,0,0,0,-92.644814 +12777,15591,27809,27810,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,7.4555573,7.7278705,0,2,3,-19.490713,0,-9,-9,2021,9,0,48,50,1,0,0,5.2089396,5.2089396,.05,.05,.05,0,0,0,0,0,0,0,0,.30197519,0,57.09,46.7,51.83,57.2,8.333333333333334,1,1,0,0,9,10,5,1,1018.5,384305.88,239515.13,130166.45,110229.16,1059.0364,0,3175.3 +12777,15591,27810,27809,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.3663654,8.8258476,0,2,-3,5.0282645,0,1,2,2021,6,0,40,45,1,0,0,17.33744,17.33744,0,0,0,0,0,0,0,0,0,0,0,5.049849,0,51.83,57.2,57.09,46.7,8.333333333333334,1,1,0,0,7,10,5,1,1018.5,384305.88,239515.13,130166.45,110229.16,1059.0364,0,3175.3 +12778,15592,27811,27812,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,6.2461233,6.067647,10,4,-46.498909,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,13.587802,0,0,1,1,0,0,5.7184892,42.95,29.14,42.35,33.61,5,1,1,0,0,0,11,2,1,768.5,182366.75,22646.047,73836.938,0,0,0,2120.4121 +12778,15592,27812,27811,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,10,-4,28.25054,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.35,33.61,42.95,29.14,6.666666666666667,1,1,0,0,0,11,2,1,768.5,182366.75,22646.047,73836.938,0,0,0,2120.4121 +12779,15593,27813,-9,27814,27815,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-954.08173,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,3,1,1451,299824.66,24279.818,235483.45,60058.344,8973.2607,911.85608,2873.0867 +12779,15593,27814,27815,-9,-9,1,0,45,0,1,0,2,2,-9,1,5,6.6203227,6.7414732,0,10,2,-41.561337,0,2,2,2021,12,1,15,10,1,1,0,7.2282586,7.2282586,0,0,0,0,0,0,0,27,1,1,0,0,0,44.29,56.64,63.65,35.93,1.666666666666667,1,1,0,0,11,6,3,1,1451,299824.66,24279.818,235483.45,60058.344,8973.2607,911.85608,2873.0867 +12779,15593,27815,27814,-9,-9,1,1,43,0,1,0,2,2,-9,0,2,7.7768488,7.8464837,0,10,-2,-22.529873,0,-9,-9,2021,10,0,37,38,1,0,0,6.2518244,6.2518244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.65,35.93,44.29,56.64,5,4,2,0,0,10,6,3,1,1451,299824.66,24279.818,235483.45,60058.344,8973.2607,911.85608,2873.0867 +12780,15594,27816,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1057.0588,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,19.902117,0,0,1,1,0,0,0,56.97,42.63,-9,-9,10,2,3,0,1,0,8,1,1,347,64106.445,0,0,0,0,0,246.48947 +12780,15595,27817,-9,-9,27820,1,0,23,0,0,0,1,1,-9,0,3,0,0,0,0,0,-970.64038,-9,-9,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,53.39,-9,-9,8.333333333333334,2,3,1,0,0,8,1,1,4772,-180765.19,0,0,0,0,0,0 +12780,15596,27818,-9,27819,27820,1,1,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1029.2617,-9,1,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,391,0,0,0,0,0,0,0 +12780,15597,27819,27820,27816,-9,1,0,57,0,0,0,1,1,-9,0,4,8.0487995,7.9778166,0,4,-3,35.805161,0,3,-9,2021,12,0,30,30,1,0,0,10.896975,10.896975,0,0,0,0,0,0,0,7,1,1,0,0,0,40.7,47.27,35.56,52.74,8.333333333333334,2,3,0,0,11,8,3,1,560.5,1264556.5,1055223.8,203689.97,0,0,0,1228.1304 +12780,15597,27820,27819,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,4,3,27.954033,0,-9,-9,2021,12,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.56,52.74,40.7,47.27,8.333333333333334,2,3,1,0,10,8,3,1,560.5,1264556.5,1055223.8,203689.97,0,0,0,1228.1304 +12781,15598,27821,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,8.3784542,8.4145498,0,0,0,-969.62512,0,-9,-9,2021,6,0,50,51,1,0,0,9.3238525,9.3238525,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,1282,-64015.738,0,0,0,0,0,2307.821 +12782,15599,27822,-9,27824,27823,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-936.38208,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,5,1,745,527280,89034.844,0,0,0,0,3873.0842 +12782,15599,27823,27824,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,9.0335674,8.9133635,0,10,2,-60.476822,0,2,3,2021,16,5,44,47,1,5,0,21.869595,21.869595,0,0,0,0,0,0,0,0,1,1,0,0,0,33.08,60.14,57.16,56.15,8.333333333333334,1,1,0,0,10,5,5,1,745,527280,89034.844,0,0,0,0,3873.0842 +12782,15599,27824,27823,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,7.7735596,7.7688355,0,10,-2,-122.17474,0,2,2,2021,10,0,7,38,1,0,0,40.183193,40.183193,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,33.08,60.14,8.333333333333334,1,1,0,0,10,5,5,1,745,527280,89034.844,0,0,0,0,3873.0842 +12783,15600,27825,-9,27827,27826,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-933.79382,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,774.33331,472422.88,119836.68,224260.5,0,0,0,3384.3938 +12783,15600,27826,27827,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.4333677,8.2633047,0,23,1,3.2963793,0,2,2,2021,8,0,36,35,1,0,0,15.013984,15.013984,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,57.16,56.15,8.333333333333334,1,1,0,0,14,9,5,1,774.33331,472422.88,119836.68,224260.5,0,0,0,3384.3938 +12783,15600,27827,27826,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.3999329,8.4545288,0,22,-1,28.580265,0,2,2,2021,12,0,30,29,1,0,0,19.100403,19.100403,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.1,49.93,6.666666666666667,1,1,0,0,12,9,5,1,774.33331,472422.88,119836.68,224260.5,0,0,0,3384.3938 +12784,15601,27828,27831,-9,-9,1,0,46,0,3,0,1,1,-9,0,5,8.7240257,8.4668522,0,1,-2,83.009148,-9,3,2,2021,12,2,38,0,1,2,0,17.021118,17.021118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.6,47.37,39.1,57.79,8.333333333333334,1,1,0,0,7,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27829,-9,27828,27831,1,0,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1098.9875,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27830,-9,27828,27831,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-1029.6866,-9,1,2,2021,8,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,1,0,0,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27831,27828,-9,-9,1,1,48,0,3,0,2,2,-9,0,3,7.964889,7.814589,0,1,2,86.026329,-9,3,3,2021,9,1,55,0,1,1,0,4.6926713,4.6926713,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.1,57.79,47.6,47.37,10,1,1,0,0,9,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15601,27832,-9,27828,27831,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1012.1336,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,966.40002,311721.19,200889.88,110149.31,19244.334,5971.6245,4450.3149,3813.8967 +12784,15602,27833,-9,27828,27831,1,1,20,0,3,0,2,2,-9,0,5,7.8904233,7.5072274,0,0,0,-835.65515,-9,1,2,2021,13,5,42,0,1,5,1,5.9506412,5.9506412,0,0,0,0,0,0,0,0,1,1,0,0,0,53.99,53.8,-9,-9,3.333333333333333,1,1,0,0,1,4,3,1,815,-215358.94,131655.45,0,0,0,0,735.01288 +12785,15603,27834,27835,27836,-9,1,0,38,0,0,0,2,2,-9,0,4,8.5711861,8.6574326,0,8,6,35.630211,0,3,2,2021,12,0,38,37,1,0,0,17.804209,17.804209,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.73,58.82,8.333333333333334,1,1,0,0,11,5,5,1,1111.5,630422.94,572688.63,104501.09,64721.992,0,0,3717.9331 +12785,15603,27835,27834,-9,-9,1,1,32,0,0,0,2,2,-9,0,5,8.3391371,8.379427,0,8,-6,112.61771,0,3,3,2021,7,0,38,38,1,0,0,14.814634,14.814634,.05,.05,0,0,0,0,0,0,1,1,0,2.603374,0,51.73,58.82,57.16,56.15,8.333333333333334,1,1,0,0,7,5,5,1,1111.5,630422.94,572688.63,104501.09,64721.992,0,0,3717.9331 +12785,15604,27836,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7120419,6.5705781,0,0,-1125.4065,-9,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,2.341655,0,0,1,1,0,0,7.0505991,47.9,43.96,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,633,236656.36,214349.02,0,0,0,-410.80304,1615.6185 +12786,15605,27837,27839,-9,-9,1,0,40,0,3,0,2,2,-9,0,5,7.2278743,7.1947293,0,9,1,50.618286,0,1,2,2021,14,2,22,24,1,2,0,7.9937673,7.9937673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.22,63.14,35.93,55.1,8.333333333333334,1,1,0,0,10,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27838,-9,27837,27839,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.2415,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27839,27837,-9,-9,1,1,39,0,3,0,2,2,-9,0,3,8.6864729,8.6513157,0,9,-1,69.681175,0,2,2,2021,12,0,42,48,1,0,0,13.271603,13.271603,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.93,55.1,45.22,63.14,6.666666666666667,1,1,0,0,10,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27840,-9,27837,27839,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.9984,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12786,15605,27841,-9,27837,27839,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.4987,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,3,1,648,66431.859,97221.766,0,0,1018.1514,0,2870.1794 +12787,15606,27842,-9,27843,27844,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1121.5132,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27843,27844,-9,-9,1,0,25,1,3,0,2,2,-9,0,1,7.2499318,6.9567099,0,6,-1,-73.410324,0,-9,-9,2021,14,2,18,0,1,2,0,6.1339498,6.1339498,0,0,0,0,0,0,0,0,1,1,0,0,0,53,46.42,54.2,57.49,6.666666666666667,1,1,0,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27844,27843,-9,-9,1,1,26,1,3,0,2,2,-9,0,4,7.8740468,7.2896857,0,6,1,-35.15892,0,-9,-9,2021,4,0,40,35,1,0,0,5.4673223,5.4673223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,53,46.42,8.333333333333334,1,1,0,0,6,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27845,-9,27843,27844,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.9984,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12787,15606,27846,-9,27843,27844,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.748,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,7,3,0,472.20001,-69890.695,-68221.227,0,0,5066.3931,551.79889,1951.9078 +12788,15607,27847,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,5,8.726922,8.8343935,0,0,0,-945.57648,0,-9,-9,2021,16,4,50,45,1,4,0,16.637796,16.637796,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.03,63.01,-9,-9,3.333333333333333,2,3,0,0,9,8,5,1,569,-103121.38,47988.516,0,0,0,0,2703.6672 +12789,15608,27848,27849,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,0,0,7,3,50.512783,0,3,3,2021,33,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5397277,0,43.75,13,62.42,32.41,1.666666666666667,1,1,0,0,2,4,2,1,449.5,306749.44,3932.3931,129013.37,0,1859.7202,0,1577.0129 +12789,15608,27849,27848,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,4.7353168,4.989584,7,-3,-24.960815,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.8633561,62.42,32.41,43.75,13,5,1,1,0,0,5,4,2,1,449.5,306749.44,3932.3931,129013.37,0,1859.7202,0,1577.0129 +12790,15609,27850,27851,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4933796,8.3171768,0,1,2,175.14133,-9,-9,-9,2021,7,0,48,0,1,0,0,13.826261,13.826261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,38.34,62.12,8.333333333333334,1,1,0,0,1,5,5,0,710,93685.5,6629.0508,184670.41,130150.73,0,72.60321,3152.8901 +12790,15609,27851,27850,-9,-9,1,0,23,0,0,0,2,2,-9,0,4,8.1572056,8.2555428,0,1,-2,109.59957,0,-9,-9,2021,13,1,40,37,1,1,0,6.5384955,6.5384955,0,0,0,0,0,0,0,0,0,0,0,.35901812,0,38.34,62.12,52.23,55.6,6.666666666666667,2,3,0,0,6,5,5,0,710,93685.5,6629.0508,184670.41,130150.73,0,72.60321,3152.8901 +12791,15610,27852,27853,-9,-9,1,1,71,0,0,0,1,1,-9,0,1,0,8.3649454,8.3465567,6,4,-38.130646,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5869665,0,14.5,1,1,0,5.7465796,8.7140093,33.18,38.12,48.53,58.91,6.666666666666667,1,1,0,0,6,12,4,1,715.5,2083432.4,698281.5,177771,0,0,0,3318.1003 +12791,15610,27853,27852,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,6,-4,-80.744133,0,3,3,2021,12,2,0,5,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.3658352,0,48.53,58.91,33.18,38.12,6.666666666666667,1,1,0,0,7,12,4,1,715.5,2083432.4,698281.5,177771,0,0,0,3318.1003 +12792,15611,27854,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,7.9394689,7.8964987,5.087605,0,0,-937.26691,0,2,1,2021,14,4,39,43,1,4,0,9.0629168,9.0629168,0,0,0,0,0,0,0,0,1,1,0,4.4977393,0,43.97,53.97,-9,-9,5,3,4,0,1,8,7,3,0,512.5,-76448,0,0,0,0,0,1404.6458 +12792,15611,27855,-9,27854,-9,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-917.96875,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,7,3,0,512.5,-76448,0,0,0,0,0,1404.6458 +12793,15612,27856,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,1.4129809,1.0036565,0,0,0,-1084.0829,-9,3,3,2021,0,0,37,0,1,0,0,.0063829627,.0063829627,0,0,0,0,0,0,0,0,0,0,0,0,0,52,53,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,543,-78818.859,127747.16,0,0,9129.918,2389.2661,190.80736 +12794,15613,27857,27858,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.2442303,8.4167233,0,35,3,-27.626802,0,3,3,2021,10,0,40,40,1,0,0,11.119072,11.119072,0,0,0,0,0,0,0,2,0,0,0,1.0855823,0,41.82,57.72,62.03,36.18,5,1,1,0,0,11,9,4,1,276,1675637.3,676466.06,646177.81,0,0,0,2620.0508 +12794,15613,27858,27857,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.0145378,7.0603266,0,35,-3,38.523582,0,2,1,2021,9,0,23,23,1,0,0,5.5563169,5.5563169,0,0,0,0,0,0,0,0,0,0,0,.46406591,0,62.03,36.18,41.82,57.72,8.333333333333334,1,1,0,0,11,9,4,1,276,1675637.3,676466.06,646177.81,0,0,0,2620.0508 +12794,15614,27859,-9,27858,27857,1,0,28,0,0,0,1,1,-9,0,4,7.9434257,7.7811394,0,0,0,-911.0896,0,2,2,2021,13,2,39,39,1,2,1,7.1659741,7.1659741,.05,.05,0,0,0,0,0,0,0,0,0,1.0172065,0,33.61,61.54,-9,-9,8.333333333333334,1,1,0,0,7,9,3,1,888,-32170.32,0,0,0,0,0,1157.1083 +12795,15615,27860,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,8.2362423,8.3972979,0,0,0,-973.20874,-9,-9,-9,2021,4,0,50,0,1,0,0,8.0140753,8.0140753,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,9,4,4,0,312,-73683.047,-23162.109,0,0,0,0,1993.6664 +12796,15616,27861,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.518836,8.4105091,0,0,0,-889.68579,0,2,2,2021,11,1,55,45,1,1,0,11.409593,11.409593,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,5,1,1,0,0,9,8,5,0,464,27218.223,138210.44,88479.398,90518.633,0,0,2476.647 +12797,15617,27862,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.0936565,8.1428013,0,0,0,-994.08118,0,-9,-9,2021,36,12,36,72,1,12,0,14.196028,14.196028,.05,.05,0,0,0,0,0,0,0,0,0,0,0,26.24,59.17,-9,-9,3.333333333333333,1,1,0,0,8,6,4,0,179,34485.137,44766.586,0,0,3765.0876,0,1301.8503 +12798,15618,27863,-9,27864,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-884.72046,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,1,412.5,16707.273,-5669.1694,0,0,0,4639.7354,1795.1208 +12798,15618,27864,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.918838,7.8295794,0,0,0,-961.73401,0,2,2,2021,6,0,32,30,1,0,0,10.03167,10.03167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,13,7,3,1,412.5,16707.273,-5669.1694,0,0,0,4639.7354,1795.1208 +12799,15619,27865,27866,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,8.0937529,8.0924892,42,-1,128.18362,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4501448,7.8345981,44.94,49.91,53.62,46.84,8.333333333333334,1,1,0,0,0,10,3,1,1031,-25595.803,0,0,0,0,0,2433.8655 +12799,15619,27866,27865,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,42,1,-4.9949169,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8732219,0,53.62,46.84,44.94,49.91,8.333333333333334,1,1,0,0,0,10,3,1,1031,-25595.803,0,0,0,0,0,2433.8655 +12800,15620,27867,-9,-9,-9,1,0,95,0,0,0,3,3,-9,0,1,0,5.1049328,5.3660779,0,0,-965.68268,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,16.206511,0,126.20284,0,1,1,0,2.6639321,5.3999372,34.12,19.99,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,678,158376.19,0,0,0,0,0,1508.9736 +12801,15621,27868,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,4,7.8961158,7.5850339,0,0,0,-840.349,0,-9,-9,2021,5,0,20,18,1,0,0,16.150488,16.150488,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.8,50.32,-9,-9,10,1,1,0,0,2,5,3,0,592,-57623.852,-31929.227,0,0,4127.6909,0,2493.3645 +12801,15621,27869,-9,27868,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-906.11041,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,592,-57623.852,-31929.227,0,0,4127.6909,0,2493.3645 +12802,15622,27870,-9,27872,27871,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.32727,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,4,0,884.66669,-92719.172,3066.1008,0,0,7522.5669,0,3631.2495 +12802,15622,27871,27872,-9,-9,1,1,29,1,1,0,2,2,-9,0,5,8.2254219,8.7866488,0,5,2,32.426853,0,-9,-9,2021,8,0,63,60,1,0,0,11.088482,11.088482,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,57.06,57.76,6.666666666666667,1,1,0,0,5,7,4,0,884.66669,-92719.172,3066.1008,0,0,7522.5669,0,3631.2495 +12802,15622,27872,27871,-9,-9,1,0,27,1,1,0,2,2,-9,0,5,8.2249517,7.7273598,0,5,-2,-7.14012,0,2,2,2021,4,0,40,40,1,0,0,7.046598,7.046598,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,56.47,59.4,10,1,1,0,0,9,7,4,0,884.66669,-92719.172,3066.1008,0,0,7522.5669,0,3631.2495 +12803,15623,27873,27875,-9,-9,1,1,46,1,2,0,2,2,-9,0,2,7.1951213,7.0210252,0,20,5,135.20734,0,3,3,2021,11,0,30,24,1,0,0,5.0318418,5.0318418,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,49,55,6.666666666666667,2,3,0,0,6,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12803,15623,27874,-9,27875,27873,1,1,16,1,2,1,2,0,-9,0,5,0,0,0,0,0,-1128.1375,-9,2,2,2021,3,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.41,53.98,-9,-9,10,2,3,0,0,0,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12803,15623,27875,27873,-9,-9,1,0,41,1,2,0,2,2,-9,0,4,0,0,0,20,-5,-20.017309,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,57.57,49.69,8,2,3,0,0,0,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12803,15623,27876,-9,27875,27873,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-992.38763,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,2,0,499.75,738715.63,54879.289,704290.38,129089.38,8315.5693,0,2023.8982 +12804,15624,27877,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,7.8562846,7.3741231,0,0,0,-1048.8539,0,2,3,2021,24,8,22,16,1,8,0,11.804354,11.804354,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.25,41.73,-9,-9,1.666666666666667,3,4,0,0,11,8,3,1,940.5,704205.63,13378.629,417984.19,0,0,0,1774.1953 +12804,15624,27878,-9,27877,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.16199,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,3,1,940.5,704205.63,13378.629,417984.19,0,0,0,1774.1953 +12804,15625,27879,-9,27877,-9,1,0,19,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1054.9418,0,1,-9,2021,24,10,0,7,3,10,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.77,44.4,-9,-9,3.333333333333333,3,4,1,1,0,8,2,1,375,77559.016,0,0,0,0,0,-418.03775 +12804,15626,27880,-9,27877,-9,1,0,18,0,1,1,2,0,0,0,1,0,0,0,0,0,-916.29333,-9,1,-9,2021,35,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,5.14,57.84,-9,-9,0,3,4,0,1,0,8,1,1,538,13722.831,0,0,0,0,0,0 +12805,15627,27881,27882,-9,-9,1,1,28,1,3,0,3,3,-9,0,3,0,0,0,2,4,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,51.01,39.06,46.75,10,3,4,1,0,3,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27882,27881,-9,-9,1,0,24,1,3,0,2,2,-9,0,3,0,0,0,2,-4,0,0,2,2,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.06,46.75,55.09,51.01,10,1,1,0,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27883,-9,27882,27881,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-934.47479,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27884,-9,27882,27881,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.7302,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12805,15627,27885,-9,27882,27881,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-938.0293,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,1,0,963,29010.574,0,0,0,0,0,1575.7284 +12806,15628,27886,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.8744717,6.6443315,0,0,-1051.1797,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9599991,47.09,58.02,-9,-9,0,1,1,0,0,0,2,2,1,266,262160.38,-1976.5118,35447.867,0,0,0,1176.7286 +12807,15629,27887,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1103.5613,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.34,33.08,-9,-9,8.333333333333334,1,1,0,0,10,8,1,0,1503,-145143.25,0,0,0,0,0,1698.7301 +12808,15630,27888,-9,27889,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1022.577,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,6,1,0,706.5,0,0,0,0,0,0,691.27008 +12808,15630,27889,-9,-9,-9,1,0,43,0,1,0,3,3,-9,1,4,0,0,0,0,0,-932.04218,0,3,-9,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.63,36.9,-9,-9,8.333333333333334,1,1,1,0,0,6,1,0,706.5,0,0,0,0,0,0,691.27008 +12809,15631,27890,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,7.8509817,7.8427029,0,0,0,-958.31628,0,3,3,2021,11,0,35,11,1,0,0,6.6154761,6.6154761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.21,53.24,-9,-9,6.666666666666667,4,5,0,0,13,11,3,0,2536,251058.11,20845.316,61425.77,29714.039,0,0,976.25549 +12810,15632,27891,-9,-9,-9,1,0,38,0,1,0,1,1,-9,0,3,7.3068137,7.015666,0,0,0,-974.21051,0,-9,-9,2021,25,12,50,36,1,12,0,3.4463079,3.4463079,0,0,0,0,0,0,0,0,0,0,0,0,0,24.63,60.41,-9,-9,3.333333333333333,1,1,0,0,7,8,2,0,612,0,0,0,0,0,0,893.02417 +12810,15632,27892,-9,27891,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.3313,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,2,0,612,0,0,0,0,0,0,893.02417 +12811,15633,27893,-9,27896,27895,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.13806,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12811,15633,27894,-9,27896,27895,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.94971,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12811,15633,27895,27896,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.9357157,8.9536886,0,11,3,4.7783699,0,2,1,2021,9,0,43,50,1,0,0,22.600428,22.600428,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,23.22,62.43,8.333333333333334,1,1,0,0,14,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12811,15633,27896,27895,-9,-9,1,0,37,0,2,0,1,1,-9,0,3,7.6388254,7.5997996,0,11,-3,10.534587,0,-9,-9,2021,23,10,42,20,1,10,0,6.9523396,6.9523396,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.22,62.43,51.83,57.2,8.333333333333334,1,1,0,0,13,5,5,1,1270.25,58936.441,58078.816,281262.13,205839,1163.9968,13858.82,3944.2075 +12812,15634,27897,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.5200324,7.6635752,0,0,-864.52417,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.7679605,7.1252484,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,3833,209982.89,57878.309,0,0,0,2094.3354,682.90173 +12813,15635,27898,-9,-9,27899,1,1,41,0,0,0,1,1,-9,0,3,8.3303537,8.1935101,0,0,0,-941.96082,0,2,2,2021,13,1,74,0,1,1,0,5.0240521,5.0240521,.05,.05,0,0,0,0,0,52,1,0,1,0,0,38.16,44.66,-9,-9,5,2,3,0,0,1,9,4,1,1734,-6829.0503,74637.992,0,0,0,0,1489.9896 +12813,15636,27899,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,0,0,-993.64282,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.04,25.52,-9,-9,5,2,3,0,0,0,9,1,1,259,-4389.8262,0,0,0,0,0,266.40439 +12814,15637,27900,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1026.8712,0,2,2,2021,26,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.62,24.46,-9,-9,1.666666666666667,2,3,0,1,0,8,1,0,532,82438.227,0,0,0,1332.0657,2772.272,-16.973574 +12815,15638,27901,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,3.6815002,3.4604182,0,0,-997.88733,0,3,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7196417,3.4478161,41.27,48.92,-9,-9,0,1,1,0,1,7,6,2,1,947,381005.53,65343.102,226520.03,0,0,0,502.16275 +12816,15639,27902,27903,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,48,-1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.3,35.07,63.8,33.11,8.333333333333334,1,1,0,0,0,7,1,1,840.5,1085007.3,0,1034840.1,0,0,0,1093.2347 +12816,15639,27903,27902,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,48,1,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3204045,0,63.8,33.11,53.3,35.07,8.333333333333334,1,1,0,0,0,7,1,1,840.5,1085007.3,0,1034840.1,0,0,0,1093.2347 +12817,15640,27904,27905,-9,-9,1,0,28,0,1,0,1,1,-9,0,3,8.255374,8.7622776,0,5,0,10.204329,0,-9,-9,2021,14,0,38,37,1,3,0,13.760348,13.760348,0,0,0,0,0,0,0,0,1,1,0,0,0,52.87,38.87,46.95,53.05,6.666666666666667,2,3,0,0,14,8,5,1,294,99608.484,36490.563,355499.38,179734.61,0,0,4104.8184 +12817,15640,27905,27904,-9,27906,1,1,28,0,1,0,1,1,-9,0,5,8.4813757,8.7589207,0,5,0,69.928963,0,3,3,2021,9,0,37,43,1,1,0,19.488096,19.488096,0,0,0,0,0,0,0,0,1,1,0,0,0,46.95,53.05,52.87,38.87,0,2,3,0,0,6,8,5,1,294,99608.484,36490.563,355499.38,179734.61,0,0,4104.8184 +12817,15641,27906,-9,-9,-9,1,1,72,0,1,0,2,2,-9,0,3,0,5.2211118,5.1723905,0,0,-980.24323,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,3.1631067,0,0,1,1,0,0,4.9434142,41.01,55.32,-9,-9,10,2,3,0,0,0,8,2,1,1060,168692.61,0,0,0,0,0,698.383 +12817,15642,27907,-9,-9,27906,1,0,30,0,1,0,2,2,-9,0,4,8.1468906,8.2657909,0,0,0,-1055.2654,0,3,3,2021,9,0,30,30,1,0,0,14.487773,14.487773,0,0,0,0,0,0,0,0,1,1,0,0,0,54.29,50.83,-9,-9,1.666666666666667,2,3,0,0,11,8,4,1,623.5,10368.68,0,0,0,0,0,1302.6279 +12817,15642,27908,-9,27907,-9,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.28461,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,2,3,-9,0,0,8,4,1,623.5,10368.68,0,0,0,0,0,1302.6279 +12817,15643,27909,27910,-9,27906,1,1,26,0,1,0,2,2,-9,0,3,7.9302931,8.1160603,0,4,1,111.55947,0,3,3,2021,12,0,40,40,1,0,0,9.0943975,9.0943975,.05,.05,0,0,0,0,0,2,1,1,0,0,0,41.76,59.08,50.03,52.62,6.666666666666667,2,3,0,0,9,8,4,1,1171.5,-100632.23,63451.781,0,0,7481.6553,638.14563,3777.3398 +12817,15643,27910,27909,-9,-9,1,0,25,0,1,0,1,1,-9,0,3,8.3358755,8.5916357,0,4,-1,85.06739,0,-9,-9,2021,12,0,15,53,1,0,0,27.498783,27.498783,0,0,0,0,0,0,0,0,1,1,0,0,0,50.03,52.62,41.76,59.08,6.666666666666667,2,3,0,0,14,8,4,1,1171.5,-100632.23,63451.781,0,0,7481.6553,638.14563,3777.3398 +12818,15644,27911,27912,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.3671112,8.5338411,0,4,1,-18.263138,0,-9,-9,2021,5,0,38,38,1,0,0,13.412506,13.412506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.75,49.4,54.79,55.86,10,1,1,0,0,11,13,5,0,285,149937.75,179738.64,160131.69,51748.563,5892.2598,0,3714.4375 +12818,15644,27912,27911,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.4628658,8.5874376,0,4,-1,-153.86302,0,3,2,2021,7,0,40,40,1,0,0,14.192668,14.192668,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,56.75,49.4,8.333333333333334,1,1,0,0,11,13,5,0,285,149937.75,179738.64,160131.69,51748.563,5892.2598,0,3714.4375 +12819,15645,27913,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,7.468822,7.3165965,0,11,0,145.76744,0,2,3,2021,13,2,45,45,1,2,0,5.2059102,5.2059102,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.36,36.72,46.98,59.35,8.333333333333334,1,1,0,0,14,4,5,1,465,-124825.59,135664.42,0,0,0,0,1410.865 +12820,15646,27914,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,0,8.2620449,8.136838,0,0,-1016.4026,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6475282,8.0683165,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,2048,158943.88,52371.449,0,0,0,0,1135.856 +12820,15647,27915,-9,-9,27914,1,1,18,0,0,0,2,2,0,0,5,0,0,0,0,0,-1159.0315,-9,-9,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,2,9,1,1,569,80522.922,0,0,0,0,0,87.956192 +12821,15648,27916,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.5042,0,2,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,43.1,34.14,-9,-9,5,1,1,1,0,9,12,1,0,914,143945.31,0,0,0,0,0,950.17719 +12822,15649,27917,27920,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,0,0,0,12,7,42.848522,0,2,2,2021,13,1,0,40,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.42,48.12,48.87,58.55,6.666666666666667,1,1,1,0,12,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12822,15649,27918,-9,27920,27917,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.63263,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12822,15649,27919,-9,27920,27917,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.7948,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12822,15649,27920,27917,-9,-9,1,0,41,0,2,0,1,1,1,0,4,8.1321058,8.0146217,0,12,-7,-113.36758,-9,1,1,2021,10,0,18,0,1,0,0,17.36026,17.36026,0,0,0,0,0,0,0,0,0,0,0,1.8208503,0,48.87,58.55,51.42,48.12,6.666666666666667,1,1,0,0,11,10,3,1,318.25,-95376.984,0,0,0,1664.1252,5397.7319,1423.1493 +12823,15650,27921,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.7414842,7.7991819,0,0,0,-916.45471,0,3,2,2021,9,0,34,34,1,0,0,7.1555667,7.1555667,.05,.05,0,0,0,0,0,0,1,1,0,1.8827881,0,41.7,60.44,-9,-9,1.666666666666667,1,1,0,0,9,6,4,1,624,67502.75,183901.06,59752.148,72482.789,0,0,954.12451 +12824,15651,27922,-9,-9,-9,1,0,48,0,0,0,3,3,-9,1,3,0,0,0,0,0,-971.08386,0,3,2,2021,12,0,0,56,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.2,43.84,-9,-9,3.333333333333333,1,1,1,0,3,8,1,0,715,-26959.24,0,0,0,0,0,844.43109 +12825,15652,27923,27924,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.9259834,8.8613119,7.5665836,17,2,31.086647,0,3,2,2021,8,0,38,38,1,0,0,24.872038,24.872038,.05,.05,0,0,0,0,0,0,0,0,0,4.0204468,7.6690392,54.2,57.49,45.42,40.27,10,1,1,0,0,12,2,5,1,343.5,6318464,234851.97,1131350.1,0,0,0,4953.0537 +12825,15652,27924,27923,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,8.7353125,8.6407461,0,17,-2,-18.984907,0,2,-9,2021,11,0,40,39,1,0,0,18.282518,18.282518,0,0,0,0,0,0,0,0,0,0,0,0,0,45.42,40.27,54.2,57.49,8.333333333333334,1,1,0,0,12,2,5,1,343.5,6318464,234851.97,1131350.1,0,0,0,4953.0537 +12826,15653,27925,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,7.3966708,7.6224689,5.0006595,0,0,-936.53516,0,-9,-9,2021,8,1,25,20,1,1,0,8.9444017,8.9444017,0,0,0,0,0,0,0,0,1,1,0,4.5650206,5.3565483,57.34,45.06,-9,-9,8.333333333333334,1,1,0,0,9,7,3,1,645,378818.47,163934.44,191480.11,0,0,0,1736.0076 +12827,15654,27926,27928,-9,-9,1,0,43,0,1,0,3,3,-9,0,4,8.0620975,8.1085081,0,6,-6,31.115068,0,2,2,2021,13,4,40,32,1,4,0,8.3707018,8.3707018,0,0,0,0,0,0,0,0,1,1,0,.51703674,0,53.73,38.44,38.5,56.93,10,1,1,0,0,6,9,4,1,1094.6666,476853.5,270777.28,415060.91,299334.25,6051.7925,0,3057.6174 +12827,15654,27927,-9,27926,27928,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0136,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,1094.6666,476853.5,270777.28,415060.91,299334.25,6051.7925,0,3057.6174 +12827,15654,27928,27926,-9,-9,1,1,49,0,1,0,3,3,-9,0,2,8.4005957,8.4535046,0,6,6,77.741821,0,-9,3,2021,13,2,48,54,1,2,0,9.803689,9.803689,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.5,56.93,53.73,38.44,5,1,1,0,0,7,9,4,1,1094.6666,476853.5,270777.28,415060.91,299334.25,6051.7925,0,3057.6174 +12827,15655,27929,-9,27926,27928,1,0,18,0,1,0,2,2,-9,0,2,7.9055753,8.0140896,0,0,0,-1068.3918,0,3,3,2021,19,7,37,0,1,7,1,7.5825629,7.5825629,0,0,0,0,0,0,0,0,1,1,0,.53947288,0,36.95,48.22,-9,-9,6.666666666666667,1,1,0,0,1,9,3,1,2093,14074.139,7243.8452,0,0,0,0,767.24408 +12828,15656,27930,-9,-9,-9,1,1,81,0,3,0,3,3,-9,0,3,0,0,0,0,0,-882.4632,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.8930349,0,0,1,1,0,0,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,5,13,1,1,644,131370.81,0,0,0,0,0,1292.9718 +12828,15657,27931,27934,-9,-9,1,0,43,0,3,0,3,3,-9,0,3,7.7399549,7.7002201,0,16,-5,-55.013622,0,3,3,2021,6,0,27,32,1,0,0,11.028101,11.028101,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,55.77,55.6,10,1,1,0,0,8,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27932,-9,27931,27934,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1104.7087,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27933,-9,27931,27934,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-954.88824,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27934,27931,-9,-9,1,1,48,0,3,0,2,2,-9,0,5,7.7734447,7.6460042,0,16,5,114.2439,0,3,3,2021,9,0,40,40,1,0,0,6.1433091,6.1433091,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.77,55.6,60.29,52.11,8.333333333333334,1,1,0,0,10,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12828,15657,27935,-9,27931,27934,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.3297,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,397.20001,-74918.875,-9325.0273,0,0,0,0,2365.313 +12829,15658,27936,27937,-9,-9,1,0,40,0,2,0,2,2,-9,1,3,0,0,0,7,0,-66.629387,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,.05,0,0,0,0,120,1,1,0,0,0,19.18,61.69,45.33,44.04,5,1,1,0,0,0,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15658,27937,27936,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,8.7488174,8.9216566,0,7,0,-160.58972,0,3,2,2021,17,5,40,43,1,5,0,21.189825,21.189825,.05,.05,.05,0,0,0,0,14.5,1,1,0,0,0,45.33,44.04,19.18,61.69,8.333333333333334,1,1,0,0,8,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15658,27938,-9,27936,27937,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.57538,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15658,27939,-9,27936,27937,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.18958,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,11,4,0,484.25,304205.44,189185.05,51407.102,37854.125,11853.333,4518.6924,4306.249 +12829,15659,27940,-9,27936,27937,1,1,19,0,2,0,2,2,0,0,4,0,0,0,0,0,-862.5155,-9,2,2,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,11,1,0,956,79828.922,0,0,0,0,0,0 +12830,15660,27941,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1199.7616,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,7.5990448,0,0,1,1,0,0,0,29.61,21.77,-9,-9,6.666666666666667,1,1,0,0,0,12,1,1,448,22493.414,0,40041.102,0,3.2394831,0,785.70367 +12831,15661,27942,-9,-9,-9,1,0,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-931.28839,0,3,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,20.48,46.47,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,474,92327.633,0,0,0,0,0,293.70688 +12831,15662,27943,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1018.7445,0,-9,-9,2021,23,7,0,30,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.03,58.21,-9,-9,3.333333333333333,1,1,1,0,4,13,1,0,1061,172341.78,24098.15,135922.06,91557.391,0,3701.4849,572.14819 +12832,15663,27944,27945,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.3175411,8.0144815,0,7,2,-84.731293,0,-9,-9,2021,13,1,45,45,1,1,0,12.617382,12.617382,0,0,0,0,0,0,0,0,0,0,0,6.2573495,0,57.09,43.99,18.6,59.26,6.666666666666667,1,1,0,0,13,9,5,1,806,450708.13,190142.81,217244.17,0,0,0,3033.8115 +12832,15663,27945,27944,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1688871,8.2494726,0,7,-2,-107.32204,0,2,2,2021,19,8,76,76,1,8,0,5.0645895,5.0645895,0,0,0,0,0,0,0,0,0,0,0,0,0,18.6,59.26,57.09,43.99,3.333333333333333,1,1,0,1,13,9,5,1,806,450708.13,190142.81,217244.17,0,0,0,3033.8115 +12833,15664,27946,27947,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,4.7420168,4.5310373,2,9,232.94165,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.2663689,4.8974323,55.32,36.78,51,46,8.333333333333334,1,1,0,0,0,12,2,1,216,71508.563,0,55800.953,0,0,0,1754.7939 +12833,15664,27947,27946,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,2,0,94.920921,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,21.43,0,0,1,1,0,7.319541,0,51,46,55.32,36.78,7,1,1,0,0,0,12,2,1,216,71508.563,0,55800.953,0,0,0,1754.7939 +12833,15665,27948,-9,27947,27946,1,1,46,0,0,0,2,2,-9,0,4,8.3795996,8.6933184,0,0,0,-962.33685,0,2,3,2021,6,0,37,37,1,0,0,13.567157,13.567157,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,873,401427.78,195575.67,202768.58,103657.23,0,0,1247.7632 +12834,15666,27949,27950,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,0,0,51,-1,13.231153,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,58.9,45.74,52.36,17.31,8.333333333333334,1,1,0,0,7,11,2,1,1053.5,15319.051,27533.338,108014.42,54584.953,0,0,936.68201 +12834,15666,27950,27949,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.4728408,6.6959481,51,1,9.7992096,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.7091641,52.36,17.31,58.9,45.74,6.666666666666667,1,1,0,0,0,11,2,1,1053.5,15319.051,27533.338,108014.42,54584.953,0,0,936.68201 +12835,15667,27951,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,8.4077082,8.3621054,0,0,0,-978.89209,0,3,2,2021,13,2,40,40,1,2,0,12.089084,12.089084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.47,38.04,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,405,-165827.92,121439.3,176176.64,323901.34,1766.1884,0,1813.1885 +12836,15668,27952,27953,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,7.4101219,7.7176785,10,6,-39.259212,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0031452,7.3060193,35.11,34.11,54.64,13.18,8.333333333333334,1,1,0,0,1,11,3,1,1572,872632,452861.13,156411.84,0,0,0,3213.1877 +12836,15668,27953,27952,-9,-9,1,0,69,0,0,0,1,1,-9,0,2,0,7.3775425,7.4097309,10,-6,31.892714,0,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,1,0,2.4458001,0,0,1,1,0,2.7212069,7.5532613,54.64,13.18,35.11,34.11,8.333333333333334,1,1,0,0,3,11,3,1,1572,872632,452861.13,156411.84,0,0,0,3213.1877 +12837,15669,27954,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,0,0,-972.72369,0,-9,-9,2021,19,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.99,48.07,-9,-9,0,4,2,1,1,0,9,1,0,217,-6092.5615,0,0,0,0,0,632.81226 +12838,15670,27955,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1018.1455,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.96,18,-9,-9,1.666666666666667,1,1,0,0,1,2,1,1,514,-58354.098,0,0,0,0,0,557.14545 +12839,15671,27956,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1029.0698,-9,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.19465385,0,36.81,35.7,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,464,-35169.676,0,0,0,0,0,1674.3243 +12840,15672,27957,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,8.221797,7.7875862,0,0,-1037.5499,0,2,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6859784,58.15,52.91,-9,-9,8.333333333333334,3,4,0,0,0,8,4,1,67,1639952,433039.5,881475.38,0,0,0,1562.911 +12841,15673,27958,27959,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.7974997,8.1309805,50,1,-64.508224,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7736015,8.1603489,56.75,49.4,57.73,54.53,8.333333333333334,1,1,0,0,0,2,4,1,797.5,1595644.8,1085644.3,382848.78,0,0,0,3793.9941 +12841,15673,27959,27958,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.8747683,7.9532619,50,-1,145.20323,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3531427,7.8414154,57.73,54.53,56.75,49.4,8.333333333333334,1,1,0,0,3,2,4,1,797.5,1595644.8,1085644.3,382848.78,0,0,0,3793.9941 +12842,15674,27960,27961,-9,-9,1,1,72,0,1,0,2,2,-9,0,2,0,7.9628749,7.6716294,12,5,8.7812138,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2990057,7.5165758,43.51,44.58,46.61,56.93,8.333333333333334,1,1,0,0,4,11,2,1,599.5,1127924.5,299545.41,321744.69,0,0,0,1579.178 +12842,15674,27961,27960,-9,-9,1,0,67,0,1,0,2,2,-9,0,3,0,5.0314918,4.7448845,1,-5,87.104836,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1871538,4.8310866,46.61,56.93,43.51,44.58,6.666666666666667,1,1,0,0,0,11,2,1,599.5,1127924.5,299545.41,321744.69,0,0,0,1579.178 +12842,15675,27962,-9,27961,27960,1,1,44,0,1,0,3,3,-9,0,3,7.8856058,8.0830898,0,0,0,-1042.6322,0,2,1,2021,8,0,40,37,1,0,0,5.9810171,5.9810171,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,12,11,3,1,392.5,67182.898,91239.563,0,0,-2236.01,3354.9795,937.37195 +12842,15675,27963,-9,-9,27962,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-915.96228,-9,-9,3,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,392.5,67182.898,91239.563,0,0,-2236.01,3354.9795,937.37195 +12843,15676,27964,27966,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,7.9420862,8.0421944,0,9,0,70.135406,0,2,2,2021,12,0,30,61,1,0,0,9.7252302,9.7252302,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.61,56.93,54.37,54.8,6.666666666666667,1,1,0,0,10,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27965,-9,27964,27966,1,0,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1129.5327,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27966,27964,-9,-9,1,1,43,0,3,0,1,1,-9,0,3,7.6919475,7.3079729,0,9,0,8.594635,0,1,2,2021,6,0,40,40,1,0,0,4.6807365,4.6807365,.05,.05,0,0,0,0,0,0,1,1,0,5.6722388,0,54.37,54.8,46.61,56.93,8.333333333333334,1,1,0,0,10,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27967,-9,27964,27966,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.38562,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12843,15676,27968,-9,27964,27966,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-941.57166,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,4,3,1,1796.6,68085.586,52574.973,112986.8,54607.297,17584.785,0,2350.4419 +12844,15677,27969,27970,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.9791465,6.9612274,0,10,19,51.8288,0,2,2,2021,21,9,10,40,1,9,0,15.019991,15.019991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.64,55.04,32.08,58.42,3.333333333333333,1,1,0,0,9,1,4,1,320,217612.36,139413.19,164620.5,0,0,0,2392.6785 +12844,15677,27970,27969,-9,-9,1,1,41,0,0,0,1,1,-9,0,3,8.6536655,8.817997,0,10,-19,12.211066,0,2,2,2021,25,12,42,44,1,12,0,14.468184,14.468184,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.08,58.42,44.64,55.04,1.666666666666667,1,1,0,0,12,1,4,1,320,217612.36,139413.19,164620.5,0,0,0,2392.6785 +12845,15678,27971,27972,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.1808414,5.9051976,62,-3,-85.717247,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0735292,6.0299125,59.14,52.5,59.63,41.44,10,1,1,0,0,0,7,3,1,955.5,392244.94,223703.63,0,0,0,0,2147.4448 +12845,15678,27972,27971,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,7.3443513,7.6980715,62,3,-12.86902,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.457298,7.2117786,59.63,41.44,59.14,52.5,8.333333333333334,1,1,0,0,0,7,3,1,955.5,392244.94,223703.63,0,0,0,0,2147.4448 +12846,15679,27973,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,7.6487246,7.4793096,0,0,0,-996.71918,0,2,-9,2021,20,8,28,25,1,8,0,8.0076694,8.0076694,0,0,0,0,0,0,0,0,1,1,0,0,0,43.57,38.4,-9,-9,1.666666666666667,1,1,0,0,10,6,3,0,3030,61064.109,43388.777,0,0,-1109.3845,0,898.88647 +12847,15680,27974,27975,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,38,0,0,0,3,3,2021,10,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.26,10.99,26.65,24.7,6.666666666666667,1,1,0,0,0,13,1,0,914,-161326.91,0,0,0,0,0,2133.6963 +12847,15680,27975,27974,-9,-9,1,1,57,0,0,0,2,2,-9,1,1,0,0,0,34,0,0,0,3,2,2021,31,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,26.65,24.7,62.26,10.99,1.666666666666667,1,1,0,0,0,13,1,0,914,-161326.91,0,0,0,0,0,2133.6963 +12848,15681,27976,27977,-9,-9,1,1,97,0,0,0,3,3,-9,0,3,0,6.8010077,7.1603928,17,21,74.384003,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,1.826376,74.988945,22.696289,0,1,1,0,0,7.2659364,57,43,39.15,41.42,8,1,1,0,0,0,10,2,1,1044.5,513269.13,58585.828,620653.75,0,0,0,2183.1636 +12848,15681,27977,27976,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,0,0,17,-21,-43.414646,0,3,-9,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.8221231,0,39.15,41.42,57,43,5,1,1,0,0,0,10,2,1,1044.5,513269.13,58585.828,620653.75,0,0,0,2183.1636 +12849,15682,27978,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9426408,7.7102199,0,0,0,-1000.0121,0,2,2,2021,15,5,33,31,1,5,0,7.9557123,7.9557123,.05,.05,0,0,0,0,0,7,1,1,0,2.2753901,0,25.61,62.71,-9,-9,5,1,1,0,1,12,12,3,1,336,142837.48,161428.7,0,0,0,1373.4834,1136.7399 +12850,15683,27979,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,8.3658123,8.6464186,6.9802189,0,0,-1118.0043,0,3,3,2021,12,1,37,37,1,1,0,12.521136,12.521136,.05,.05,0,0,0,0,0,0,1,1,0,0,6.9647498,47.39,56.64,-9,-9,6.666666666666667,1,1,0,0,13,7,5,1,173,1507499,1212271.4,359853.34,14015.209,5904.3276,1502.6389,3060.6138 +12851,15684,27980,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,5,8.1369762,8.1642809,0,0,0,-984.47137,0,3,3,2021,4,0,32,35,1,0,0,11.632882,11.632882,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.56,59.44,-9,-9,8.333333333333334,2,3,0,0,7,8,3,0,2035.5,-34944.016,-45797.969,0,0,5128.4043,0,2003.8658 +12851,15684,27981,-9,27980,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.5213,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,3,0,2035.5,-34944.016,-45797.969,0,0,5128.4043,0,2003.8658 +12852,15685,27982,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,3,7.0289717,7.3887296,0,0,0,-939.30383,-9,-9,-9,2021,14,0,9,0,1,3,0,18.598385,18.598385,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,5,1,1,0,0,6,12,3,0,560,-41534.801,0,0,0,1708.5057,0,687.59802 +12853,15686,27983,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,2,0,0,0,0,0,-981.58673,-9,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.09,55.3,-9,-9,5,2,3,1,1,0,7,1,1,493,100972.93,0,0,0,0,0,0 +12854,15687,27984,-9,-9,-9,1,0,52,0,2,0,3,3,-9,1,2,0,5.7243233,6.034822,0,0,-946.37274,0,3,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0123034,0,31.6,39.8,-9,-9,5,1,1,0,0,0,12,2,0,652.33331,31529.473,0,0,0,0,0,1722.453 +12854,15687,27985,-9,27984,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-850.54718,-9,3,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,12,2,0,652.33331,31529.473,0,0,0,0,0,1722.453 +12854,15687,27986,-9,27984,-9,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1076.8865,-9,3,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.05,57,-9,-9,5,1,1,0,0,0,12,2,0,652.33331,31529.473,0,0,0,0,0,1722.453 +12855,15688,27987,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.0669975,8.2598019,0,0,0,-1064.1354,0,2,2,2021,12,2,38,32,1,2,0,14.617198,14.617198,.05,.05,0,0,0,0,0,0,0,0,0,1.6520607,0,47.85,39.2,-9,-9,6.666666666666667,1,1,0,0,13,10,4,0,2017,491264,86395.438,195690.98,64469.516,0,6050.6772,1829.9139 +12856,15689,27988,27989,-9,-9,1,1,53,0,0,0,3,3,-9,0,5,9.7995434,9.4068689,0,26,7,40.308266,0,2,2,2021,4,0,50,45,1,0,0,40.133472,40.133472,.05,.05,0,0,0,0,0,2,0,0,0,4.4684067,0,55.68,54.24,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,401.5,1142902,893348,394619,52972.242,7028.5244,0,9493.7168 +12856,15689,27989,27988,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,9.0654325,8.6608343,0,26,-7,24.831911,0,2,2,2021,6,0,42,47,1,0,0,20.643736,20.643736,0,0,0,0,0,0,0,2,0,0,0,2.4426484,0,57.06,57.76,55.68,54.24,8.333333333333334,1,1,0,0,9,8,5,1,401.5,1142902,893348,394619,52972.242,7028.5244,0,9493.7168 +12857,15690,27990,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-955.81128,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.58,35.92,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,4724,-198611.34,0,0,0,0,0,1605.5712 +12858,15691,27991,27992,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,33,-2,0,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,56.78,11.17,48.79,53.17,1.666666666666667,2,3,0,1,0,1,1,1,852.5,0,0,0,0,0,0,1496.8699 +12858,15691,27992,27991,-9,-9,1,1,55,0,0,0,2,2,-9,1,3,0,0,0,33,2,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,48.79,53.17,56.78,11.17,6.666666666666667,2,3,0,0,0,1,1,1,852.5,0,0,0,0,0,0,1496.8699 +12858,15692,27993,-9,27991,27992,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-921.34601,-9,3,2,2021,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,8.0204115,0,46.53,33.44,-9,-9,5,2,3,0,0,0,1,1,1,1290,143316.17,0,0,0,0,0,1407.5927 +12859,15693,27994,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9211154,6.6663747,0,0,-1038.6074,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9365263,6.4647174,56.58,45.49,-9,-9,1.666666666666667,1,1,0,0,9,6,2,1,661,250803.94,129642.35,135143.09,0,0,1576.2344,1192.5485 +12860,15694,27995,27996,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,8.7929411,9.07693,5.8985295,5,0,97.105209,0,1,1,2021,14,2,46,41,1,2,0,16.820799,16.820799,0,0,0,0,0,0,0,0,0,0,0,6.076941,6.5782204,51.17,30.62,54.2,36.06,3.333333333333333,1,1,0,0,7,9,5,1,3626,294331.5,32358.07,431958.25,69811.547,0,0,3284.9033 +12860,15694,27996,27995,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.0419874,8.0486288,0,5,0,-20.582434,0,-9,-9,2021,10,0,40,40,1,0,0,8.7349014,8.7349014,0,0,.05,0,0,0,0,0,0,0,0,0,0,54.2,36.06,51.17,30.62,3.333333333333333,1,1,0,0,4,9,5,1,3626,294331.5,32358.07,431958.25,69811.547,0,0,3284.9033 +12861,15695,27997,-9,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,7.5313721,7.6206074,0,0,0,-1067.0298,0,3,3,2021,16,4,26,26,1,4,0,8.8035173,8.8035173,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.79,55.33,-9,-9,5,1,1,0,0,14,12,2,0,1043,307684.5,-16780.305,211219.52,0,0,1853.7291,1282.7421 +12862,15696,27998,27999,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,0,0,31,0,21.106956,0,1,1,2021,11,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8660322,0,50.79,48.24,54.69,57.47,10,1,1,0,0,1,5,5,1,785,2924069.5,2689579,317063.81,109890.85,0,0,2209.1025 +12862,15696,27999,27998,-9,-9,1,1,52,0,0,0,1,1,-9,0,5,9.1657066,9.2058477,0,33,0,44.325794,0,1,2,2021,8,0,40,41,1,0,0,22.225407,22.225407,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,50.79,48.24,10,1,1,0,0,15,5,5,1,785,2924069.5,2689579,317063.81,109890.85,0,0,2209.1025 +12863,15697,28000,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.2562408,7.8718605,0,0,-1106.7621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.9959207,48.87,58.55,-9,-9,5,1,1,0,0,4,11,3,1,564,829747.88,333318.31,0,0,0,0,1177.1349 +12864,15698,28001,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,7.9674788,7.9816418,4.991735,0,0,-1094.9246,0,2,2,2021,13,2,20,30,1,2,0,15.945109,15.945109,0,0,0,0,0,0,0,0,1,1,0,4.9890146,4.8392673,51.86,60.27,-9,-9,3.333333333333333,1,1,0,1,8,8,4,1,254,592080.19,143877.16,441887.66,0,0,0,1887.1227 +12865,15699,28002,28003,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,5.588738,5.6944976,45,5,-16.990536,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9291182,5.4053411,53.51,42.63,51.02,49.39,8.333333333333334,1,1,0,0,0,7,2,1,781,-34410.559,0,0,0,0,0,1470.3395 +12865,15699,28003,28002,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.9240718,6.8335991,0,45,-5,19.61993,0,3,3,2021,10,0,16,12,1,0,0,4.9969935,4.9969935,0,0,0,0,0,0,0,7,1,1,0,0,0,51.02,49.39,53.51,42.63,8.333333333333334,1,1,0,0,9,7,2,1,781,-34410.559,0,0,0,0,0,1470.3395 +12866,15700,28004,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.7624111,8.9616518,0,0,0,-850.86829,0,-9,-9,2021,12,3,45,45,1,3,0,17.617651,17.617651,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,7,12,5,1,320,46194.73,-125167.16,0,0,0,0,2316.449 +12867,15701,28005,28006,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.3468781,8.7370644,0,12,2,98.135208,-9,-9,-9,2021,15,3,50,0,1,3,0,9.7822828,9.7822828,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,54.2,57.49,8.333333333333334,1,1,0,0,13,10,5,1,710,523342.31,94349.156,569394.06,341376.56,0,8590.4121,4464.0073 +12867,15701,28006,28005,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.2204046,9.2069607,0,12,-2,1.9412345,0,2,-9,2021,11,2,48,54,1,2,0,19.673412,19.673412,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,44.19,58.01,6.666666666666667,1,1,0,0,13,10,5,1,710,523342.31,94349.156,569394.06,341376.56,0,8590.4121,4464.0073 +12868,15702,28007,28008,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.3084459,8.1774883,0,13,3,-131.54315,0,-9,-9,2021,11,0,48,48,1,0,0,9.8238392,9.8238392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.32,52.34,46.34,42.37,8.333333333333334,3,4,0,0,9,5,4,1,847,920741,713023.56,83020.984,0,0,0,1604.6796 +12868,15702,28008,28007,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,13,-3,87.217377,1,3,2,2021,6,0,0,48,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.1331549,0,46.34,42.37,50.32,52.34,6.666666666666667,3,4,0,0,9,5,4,1,847,920741,713023.56,83020.984,0,0,0,1604.6796 +12869,15703,28009,28010,-9,-9,1,1,79,0,0,0,1,1,-9,0,4,0,6.4370589,6.8419967,9,3,111.69264,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6893437,6.6632013,49.98,55.33,55.18,36.42,8.333333333333334,1,1,0,0,0,6,2,1,790.5,146023.39,0,75171.578,0,0,0,1936.2189 +12869,15703,28010,28009,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,4.700841,4.5597987,9,-3,58.53297,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,1.4729651,0,0,1,1,0,3.9075551,4.5868306,55.18,36.42,49.98,55.33,8.333333333333334,1,1,0,0,0,6,2,1,790.5,146023.39,0,75171.578,0,0,0,1936.2189 +12870,15704,28011,28014,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.2110958,9.1907015,0,2,1,152.96022,-9,-9,-9,2021,9,0,37,0,1,1,0,29.956503,29.956503,0,0,.05,0,0,0,0,0,0,0,0,8.6211071,0,51,56,48.77,60.16,8,4,1,0,0,1,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28012,-9,28014,28011,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-888.65735,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28013,-9,28014,28011,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.94867,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28014,28011,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,0,0,0,2,-1,-110.91405,0,1,1,2021,11,0,0,0,3,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,7.9668727,0,48.77,60.16,51,56,8.333333333333334,1,1,0,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12870,15704,28015,-9,28014,28011,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-918.41632,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,1077.8,304638,120274.45,478066.94,281133.38,0,0,7969.6758 +12871,15705,28016,28017,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.3780317,9.169754,0,2,0,65.86377,0,-9,-9,2021,6,0,43,50,1,0,0,31.228128,31.228128,0,0,.05,0,0,0,0,0,0,0,0,7.5832915,0,51.24,58.84,46.33,50.4,1.666666666666667,1,1,0,0,13,8,5,1,502.5,902438.5,176506.34,753610.19,0,0,0,5683.4961 +12871,15705,28017,28016,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,7.7222624,7.599103,0,25,0,8.6102657,0,2,1,2021,18,6,25,23,1,6,0,9.0291767,9.0291767,0,0,0,0,0,0,0,0,0,0,0,1.996755,0,46.33,50.4,51.24,58.84,3.333333333333333,1,1,0,0,7,8,5,1,502.5,902438.5,176506.34,753610.19,0,0,0,5683.4961 +12872,15706,28018,28019,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,46,-1,-21.482832,0,2,1,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,7.0971599,0,54.96,53.17,57.33,53.46,10,1,1,0,0,7,5,2,0,1469.5,137507.36,154636.53,0,0,0,0,2527.8975 +12872,15706,28019,28018,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,5.4742427,4.9304662,46,1,9.5088615,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.1860023,5.5656509,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,8,5,2,0,1469.5,137507.36,154636.53,0,0,0,0,2527.8975 +12873,15707,28020,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.1414161,7.3371911,6.0704503,0,0,-1105.8086,0,3,3,2021,7,0,30,40,1,0,0,5.1914525,5.1914525,.05,.05,0,0,0,0,0,0,0,0,0,0,5.8015666,58.3,52.91,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,1097,661255.38,75978.086,305872.53,0,0,0,1429.7766 +12874,15708,28021,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.4851055,7.6974263,0,0,-941.94025,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5523844,62.18,36.18,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,917,315849.09,184916.48,0,0,0,0,2442.5439 +12875,15709,28022,28023,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.2630281,6.2135658,18,-7,12.57797,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.8102827,5.9088702,51,46,54,46,7,1,1,0,0,0,8,2,1,1759,31853.645,0,0,0,0,0,2367.8838 +12875,15709,28023,28022,-9,-9,1,1,73,0,0,0,1,1,-9,0,3,0,0,0,6,7,43.512722,0,2,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7812343,0,54,46,51,46,7,1,1,0,0,0,8,2,1,1759,31853.645,0,0,0,0,0,2367.8838 +12876,15710,28024,-9,28026,-9,1,0,17,0,1,1,3,0,0,0,4,0,0,0,0,0,-1048.0498,-9,1,-9,2021,20,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.33984661,0,35.38,63.46,-9,-9,6.666666666666667,1,1,0,0,0,10,4,1,573,434617.22,281776.72,310152.5,98864.688,0,0,3198.5234 +12876,15710,28025,-9,28026,-9,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-947.19672,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,10,4,1,573,434617.22,281776.72,310152.5,98864.688,0,0,3198.5234 +12876,15710,28026,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.090333,8.8653879,7.7513614,0,0,-971.16406,0,2,2,2021,17,5,40,37,1,5,0,8.9518137,8.9518137,.05,.05,0,0,0,0,0,0,1,1,0,7.9167767,0,25.12,65.25,-9,-9,3.333333333333333,1,1,0,0,6,10,4,1,573,434617.22,281776.72,310152.5,98864.688,0,0,3198.5234 +12877,15711,28027,28028,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,8.6890249,8.8475561,6,10,-136.56479,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,9.1804237,8.6760683,45.4,56.19,43.91,18.05,10,1,1,0,0,6,9,5,1,463,1558725,976589.44,331691.41,0,0,0,5758.6387 +12877,15711,28028,28027,-9,-9,1,0,59,0,0,0,1,1,-9,0,1,0,0,0,6,-10,-96.715569,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,43.91,18.05,45.4,56.19,5,1,1,0,0,0,9,5,1,463,1558725,976589.44,331691.41,0,0,0,5758.6387 +12878,15712,28029,28031,-9,-9,1,0,28,1,3,0,2,2,-9,1,4,6.7674036,6.7410731,0,1,-17,184.45712,0,2,2,2021,9,0,15,0,1,0,0,6.1993074,6.1993074,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,56.62,31.11,8.333333333333334,1,1,0,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28030,-9,28029,28031,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-902.78815,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28031,28029,-9,-9,1,1,45,1,3,0,2,2,-9,0,2,8.8403244,9.0528078,0,1,17,39.105747,-9,-9,-9,2021,10,0,50,0,1,0,0,22.736628,22.736628,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.62,31.11,54.2,57.49,6.666666666666667,1,1,0,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28032,-9,28029,28031,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-860.93054,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12878,15712,28033,-9,28029,28031,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1094.108,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,1789.6,1688762.9,1502945.4,274318.72,30897.199,0,432.55609,4168.874 +12879,15713,28034,28035,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,7.165854,6.7914381,0,20,-1,24.523596,0,2,2,2021,7,0,27,19,1,0,0,5.0670938,5.0670938,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,57.16,56.15,8.333333333333334,1,1,0,0,8,12,5,1,2443.5,380299.31,-12886.631,546727.38,335015.38,0,0,4835.6392 +12879,15713,28035,28034,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,9.5180187,9.5978003,0,19,1,-48.029404,0,2,-9,2021,8,0,57,51,1,0,0,21.356749,21.356749,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,12,12,5,1,2443.5,380299.31,-12886.631,546727.38,335015.38,0,0,4835.6392 +12880,15714,28036,-9,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1114.1761,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.48,48.31,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,5404,-154794.53,0,0,0,0,0,569.03693 +12881,15715,28037,28038,-9,-9,1,1,78,0,0,0,3,3,-9,0,1,0,6.0792203,6.2895789,46,6,25.880323,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,11.266469,0,0,1,1,0,5.5254202,6.1898475,40.62,19.29,48.36,57.34,3.333333333333333,1,1,0,0,0,7,2,1,1076,220225.03,215934.91,0,0,0,0,2266.5669 +12881,15715,28038,28037,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,4.2378211,4.4487243,46,-6,49.825165,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,27,1,1,0,4.2976561,4.9097013,48.36,57.34,40.62,19.29,8.333333333333334,1,1,0,0,0,7,2,1,1076,220225.03,215934.91,0,0,0,0,2266.5669 +12882,15716,28039,28041,-9,28044,1,1,32,1,1,0,2,2,-9,1,2,0,0,0,2,5,0,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.14,29.18,57.33,53.46,5,2,3,0,0,0,8,2,1,836,221633.77,-17426.098,0,0,828.81592,-461.01459,1801.8029 +12882,15716,28040,-9,28041,28039,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-892.91089,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,8,2,1,836,221633.77,-17426.098,0,0,828.81592,-461.01459,1801.8029 +12882,15716,28041,28039,-9,-9,1,0,27,1,1,0,2,2,-9,0,3,0,0,0,2,-5,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.14,29.18,8.333333333333334,2,3,1,0,0,8,2,1,836,221633.77,-17426.098,0,0,828.81592,-461.01459,1801.8029 +12882,15717,28042,28043,-9,-9,1,0,28,1,1,0,1,1,-9,0,3,8.2728338,8.1330948,0,2,-1,100.18711,0,-9,-9,2021,12,0,37,37,1,0,0,11.675995,11.675995,0,0,0,0,0,0,0,0,1,1,0,0,0,33.12,48.74,35.29,40.33,5,2,3,0,0,3,8,5,1,1261,-75290.422,7497.1484,0,0,4356.5825,1615.2727,4567.7051 +12882,15717,28043,28042,-9,28044,1,1,29,1,1,0,2,2,-9,0,3,8.6514311,8.7832546,0,2,1,13.222951,0,-9,2,2021,5,0,38,45,1,0,0,20.297661,20.297661,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.29,40.33,33.12,48.74,6.666666666666667,2,3,0,0,13,8,5,1,1261,-75290.422,7497.1484,0,0,4356.5825,1615.2727,4567.7051 +12882,15718,28044,-9,-9,-9,1,1,58,1,1,0,2,2,-9,0,1,8.7501831,8.5254488,0,0,0,-984.60687,0,-9,-9,2021,19,7,37,38,1,7,0,20.594482,20.594482,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,26.49,27.53,-9,-9,3.333333333333333,2,3,0,0,13,8,5,1,1195,346833.09,162218.38,294708.56,67258.313,0,0,2168.4985 +12883,15719,28045,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,7.6254663,7.3112588,0,0,-900.42413,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9979267,7.6869431,44.86,48.89,-9,-9,10,1,1,0,0,0,12,3,1,292,575535.31,303467.13,176854.97,0,0,0,1331.4703 +12884,15720,28046,28047,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,8.8369875,9.3045874,0,8,3,.52970862,0,2,2,2021,11,0,43,46,1,0,0,20.847839,20.847839,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.7,51.62,28.69,65.05,5,1,1,0,0,14,7,5,1,355.5,719295.63,403236.38,776329.38,484812.25,0,0,4657.1182 +12884,15720,28047,28046,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.3693953,8.1445913,0,8,-3,4.1258264,0,-9,-9,2021,17,5,54,46,1,5,0,8.0386057,8.0386057,.05,.05,0,0,0,0,0,0,0,0,0,3.254575,0,28.69,65.05,44.7,51.62,6.666666666666667,1,1,0,0,9,7,5,1,355.5,719295.63,403236.38,776329.38,484812.25,0,0,4657.1182 +12885,15721,28048,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1116.0974,0,2,3,2021,10,2,0,45,3,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,52.66,36.05,-9,-9,8.333333333333334,1,1,0,0,9,8,1,1,996,401895.06,0,375136.56,0,0,0,16.832197 +12886,15722,28049,28050,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.4025722,5.8883886,11,-2,204.91663,0,2,2,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,2.9768598,0,28.383736,0,1,1,0,0,6.0958328,59.45,41.59,57.92,51.82,8.333333333333334,1,1,0,0,4,4,3,1,383,840748.38,243087.84,165226.94,0,0,0,2744.8218 +12886,15722,28050,28049,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.417861,7.6546926,11,2,-83.077484,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8570299,57.92,51.82,59.45,41.59,10,1,1,0,0,0,4,3,1,383,840748.38,243087.84,165226.94,0,0,0,2744.8218 +12887,15723,28051,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,4,7.902792,8.5337744,0,0,0,-934.80756,-9,-9,-9,2021,6,0,35,0,1,0,0,7.6708627,7.6708627,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,6,4,0,391,172794.59,2786.8535,0,0,0,0,1585.2946 +12888,15724,28052,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-987.3299,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,8.333333333333334,1,1,0,0,1,13,2,0,475,153821.33,0,91456.469,0,0,0,1546.8804 +12889,15725,28053,28054,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.6402416,7.6890693,0,14,0,192.36711,0,2,3,2021,7,0,21,21,1,0,0,10.322639,10.322639,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,46.5,58.26,8.333333333333334,1,1,0,1,14,4,2,1,1141.3334,353375.56,82987.891,202447.11,0,0,0,1056.292 +12889,15725,28054,28053,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,16,9,4.221076,0,2,2,2021,10,0,0,35,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,48.87,58.55,3.333333333333333,1,1,1,1,12,4,2,1,1141.3334,353375.56,82987.891,202447.11,0,0,0,1056.292 +12889,15725,28055,-9,28053,28054,1,1,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1002.0037,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,4,2,1,1141.3334,353375.56,82987.891,202447.11,0,0,0,1056.292 +12890,15726,28056,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.8492432,8.5020161,0,0,0,-1012.7213,0,-9,-9,2021,13,2,82,48,1,2,0,9.4185171,9.4185171,.05,.05,0,0,0,0,0,0,1,1,0,2.9436297,0,52.38,55.95,-9,-9,8.333333333333334,1,1,0,0,11,9,5,0,448,147861.64,137999.83,161864.8,87618.211,0,7454.8799,2029.6329 +12891,15727,28057,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.8023114,6.5669589,0,0,-904.32538,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.3949804,0,0,1,1,0,4.3796053,6.3003569,60.89,44.94,-9,-9,10,1,1,0,0,1,13,2,1,214,297711.47,0,178508.94,0,0,0,1558.8533 +12892,15728,28058,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,6.5256486,7.6715465,6.7449937,0,0,-1016.5031,0,3,3,2021,6,1,14,18,1,1,0,5.8657403,5.8657403,0,0,0,0,0,0,2.0391645,0,0,0,0,7.4329715,0,57.46,56.16,-9,-9,8.333333333333334,1,1,0,0,11,1,3,1,1271,365823.91,167533.36,213506.75,0,0,0,878.59277 +12893,15729,28059,-9,28062,28061,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-986.46442,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12893,15729,28060,-9,28062,28061,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.8257,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12893,15729,28061,28062,-9,-9,1,1,36,0,2,0,1,1,-9,0,5,8.2145014,8.1613779,0,10,1,-27.041964,0,-9,-9,2021,0,0,40,60,1,0,0,11.24468,11.24468,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,45.63,58.55,1.666666666666667,2,3,0,0,10,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12893,15729,28062,28061,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,8.8301563,8.648385,0,11,-1,15.783663,0,2,3,2021,1,0,24,60,1,0,0,28.896877,28.896877,0,0,0,0,0,0,0,0,1,1,0,0,0,45.63,58.55,62.39,56.71,10,2,3,0,0,11,13,4,0,830,407913.16,312702.69,344104.59,268177.41,0,0,4088.7476 +12894,15730,28063,-9,28067,28066,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.2544,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28064,-9,28067,28066,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.0314,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28065,-9,28067,28066,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.78564,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28066,28067,-9,-9,1,1,40,0,3,0,2,2,-9,0,5,8.9737501,9.0325441,0,7,3,-14.025794,0,-9,-9,2021,8,0,46,21,1,0,0,23.328062,23.328062,.05,.05,0,0,0,0,0,0,0,0,0,5.8966165,0,51.14,60.45,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12894,15730,28067,28066,-9,-9,1,0,37,0,3,0,1,1,-9,0,4,8.1996717,7.738821,0,7,-3,32.194481,0,2,2,2021,7,0,31,33,1,0,0,10.754823,10.754823,.05,.05,0,0,0,0,0,0,0,0,0,3.1791029,0,57.16,56.15,51.14,60.45,8.333333333333334,1,1,0,0,8,13,4,1,529,4324411,961670,876287.94,55009.391,14349.02,0,4882.8799 +12895,15731,28068,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,5.9295998,6.04353,0,0,0,-977.62695,0,3,3,2021,11,0,6,10,1,0,0,5.5021625,5.5021625,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,2,2,1,501,-21565.115,0,0,0,0,0,1158.0389 +12895,15732,28069,-9,28068,-9,1,1,27,0,0,0,2,2,-9,0,3,7.1967688,7.7491689,0,0,0,-1035.4431,0,3,-9,2021,10,0,30,0,1,0,1,5.3244605,5.3244605,0,0,0,0,0,0,0,0,0,0,0,.84989393,0,46.86,55.66,-9,-9,3.333333333333333,1,1,0,0,5,2,3,1,456,138736.97,0,0,0,5701.1587,0,443.11017 +12896,15733,28070,-9,28072,28071,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1060.3932,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,1,934.33331,349011.97,130245.58,262335.47,93052.883,0,0,2281.0706 +12896,15733,28071,28072,-9,-9,1,1,39,0,1,0,3,3,-9,0,2,8.3691225,8.4199944,0,10,4,39.532608,0,3,3,2021,12,0,47,43,1,0,0,10.045345,10.045345,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.84,42.92,46.08,57.2,6.666666666666667,1,1,0,0,11,9,4,1,934.33331,349011.97,130245.58,262335.47,93052.883,0,0,2281.0706 +12896,15733,28072,28071,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.5722528,7.5060797,0,10,-4,-185.42313,0,2,-9,2021,12,0,30,26,1,0,0,7.0058198,7.0058198,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,36.84,42.92,8.333333333333334,1,1,0,0,11,9,4,1,934.33331,349011.97,130245.58,262335.47,93052.883,0,0,2281.0706 +12897,15734,28073,28074,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.5185852,8.6235447,0,5,1,79.626259,0,-9,2,2021,10,1,37,37,1,1,0,15.557192,15.557192,.05,.05,0,0,0,0,0,0,0,0,0,3.1460671,0,50.5,52.77,35.91,63.19,10,1,1,0,0,7,6,5,1,2296,291506.5,256658.03,180667.22,148508.83,1258.458,0,3346.3601 +12897,15734,28074,28073,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.3962793,8.4489479,0,5,-1,40.019901,0,-9,-9,2021,14,2,39,42,1,2,0,15.775881,15.775881,.05,.05,0,0,0,0,0,0,0,0,0,5.1682663,0,35.91,63.19,50.5,52.77,8.333333333333334,1,1,0,0,5,6,5,1,2296,291506.5,256658.03,180667.22,148508.83,1258.458,0,3346.3601 +12898,15735,28075,28076,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,0,0,50,0,30.265577,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.25,21.39,8.333333333333334,1,1,0,0,0,12,2,1,319,372767.03,179989.88,345219.63,0,0,0,1110.8389 +12898,15735,28076,28075,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,7.2010651,7.0841327,49,0,6.5865002,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0793271,55.25,21.39,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,319,372767.03,179989.88,345219.63,0,0,0,1110.8389 +12899,15736,28077,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1015.6509,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.88,46.26,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,753,-80164.125,0,0,0,483.69702,0,830.45227 +12900,15737,28078,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.0676994,8.1445208,0,0,0,-995.99158,0,3,3,2021,10,0,9,35,1,0,0,37.663372,37.663372,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,3,4,0,0,14,8,4,1,1088,0,0,0,0,0,0,937.3587 +12901,15738,28079,-9,28081,-9,1,0,17,0,0,1,2,0,-9,0,3,0,0,0,0,0,-920.24249,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,5,5,0,1030,2416106.5,2158857.5,483191.06,273695.31,32723.002,0,17145.891 +12901,15738,28080,28081,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,9.7122831,9.8047552,0,1,6,-38.749817,-9,2,3,2021,7,0,50,0,1,0,0,29.802671,29.802671,.05,.05,0,0,0,0,0,0,1,1,0,5.5974169,0,51.54,46.93,64.47,51.45,1.666666666666667,1,1,0,0,8,5,5,0,1030,2416106.5,2158857.5,483191.06,273695.31,32723.002,0,17145.891 +12901,15738,28081,28080,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.7645979,9.0652018,6.056828,1,-6,-9.7486944,-9,-9,-9,2021,6,0,35,0,1,0,0,24.494793,24.494793,0,0,0,0,0,0,0,0,1,1,0,6.5840993,0,64.47,51.45,51.54,46.93,8.333333333333334,1,1,0,0,9,5,5,0,1030,2416106.5,2158857.5,483191.06,273695.31,32723.002,0,17145.891 +12901,15739,28082,-9,28081,-9,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1014.4797,-9,2,-9,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,5,1,0,2488,14882.539,0,0,0,0,0,529.06732 +12902,15740,28083,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-914.54633,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.03,51.08,-9,-9,1.666666666666667,1,1,0,0,0,5,1,0,1424,199832.36,0,79061.844,0,0,0,1186.9561 +12903,15741,28084,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1021.6567,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,495,216698.47,0,0,0,0,733.90613,1251.9769 +12904,15742,28085,-9,28086,28087,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-987.97888,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,635,266607.53,-23376.236,371639,257086.31,0,0,1870.9315 +12904,15742,28086,28087,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,6.3118653,6.1157026,0,6,-7,59.807957,0,2,2,2021,6,0,10,0,1,0,0,6.7418942,6.7418942,0,0,0,0,0,0,0,0,0,0,0,0,0,49.76,56.93,57.16,56.15,10,1,1,0,0,6,7,4,1,635,266607.53,-23376.236,371639,257086.31,0,0,1870.9315 +12904,15742,28087,28086,-9,-9,1,1,32,1,1,0,2,2,-9,0,4,8.5504761,8.3683367,0,6,7,-35.430378,0,-9,-9,2021,5,0,41,37,1,0,0,11.244278,11.244278,.05,.05,0,0,0,0,0,0,0,0,0,1.6765257,0,57.16,56.15,49.76,56.93,10,1,1,0,0,11,7,4,1,635,266607.53,-23376.236,371639,257086.31,0,0,1870.9315 +12905,15743,28088,28089,-9,-9,1,0,36,1,1,0,2,2,-9,0,4,7.3037157,7.0274978,0,9,-1,137.31657,0,2,2,2021,6,0,18,18,1,0,0,9.6875801,9.6875801,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,1,1,0,0,8,12,3,0,1952.3334,1396.8125,-23208.492,281309.13,139968.48,392.91806,712.67377,2612.4104 +12905,15743,28089,28088,-9,-9,1,1,37,1,1,0,2,2,-9,0,5,8.2937613,8.3157635,0,9,1,-26.197258,0,2,2,2021,6,0,37,40,1,0,0,9.102788,9.102788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,10,1,1,0,0,8,12,3,0,1952.3334,1396.8125,-23208.492,281309.13,139968.48,392.91806,712.67377,2612.4104 +12905,15743,28090,-9,28088,28089,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1104.7754,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,3,0,1952.3334,1396.8125,-23208.492,281309.13,139968.48,392.91806,712.67377,2612.4104 +12906,15744,28091,-9,28092,28094,1,1,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-929.12866,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15744,28092,28094,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,0,0,0,1,4,0,-9,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,53.54,52.35,5,1,1,1,0,0,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15744,28093,-9,28092,28094,1,1,10,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1063.324,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15744,28094,28092,28096,28095,1,1,18,0,0,0,2,2,-9,0,4,0,0,0,1,-4,0,0,2,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.54,52.35,51.24,58.84,8.333333333333334,1,1,0,0,1,11,1,1,1122.5,-50090.344,0,0,0,0,0,0 +12906,15745,28095,28096,-9,-9,1,1,49,0,0,0,3,3,-9,0,5,7.5029426,7.5097361,0,6,-1,70.55677,0,2,3,2021,8,0,40,40,1,0,0,5.0597301,5.0597301,0,0,0,0,0,0,0,0,1,1,0,0,0,56.68,51,50.85,54.91,10,1,1,0,0,7,11,4,1,1756.5,48938.289,0,178106.19,115711.16,5921.6841,0,3997.3992 +12906,15745,28096,28095,28097,28098,1,0,50,0,0,0,2,2,-9,0,4,8.0788555,7.9171734,0,6,1,20.287966,0,2,1,2021,5,0,35,35,1,0,0,8.132473,8.132473,0,0,0,0,0,0,0,0,1,1,0,0,0,50.85,54.91,56.68,51,8.333333333333334,1,1,0,0,7,11,4,1,1756.5,48938.289,0,178106.19,115711.16,5921.6841,0,3997.3992 +12906,15746,28097,28098,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,4.6417265,4.350893,6,-3,33.711601,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,13.890295,0,0,1,1,0,0,4.9073305,60.89,28.48,50.74,51,10,1,1,0,0,0,11,3,1,704.5,232931.44,0,0,0,0,0,2793.4939 +12906,15746,28098,28097,-9,-9,1,1,82,0,0,0,1,1,-9,0,3,0,8.4540644,8.2902422,6,3,4.3687768,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2884331,50.74,51,60.89,28.48,8.333333333333334,1,1,0,0,7,11,3,1,704.5,232931.44,0,0,0,0,0,2793.4939 +12907,15747,28099,28100,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.0867352,7.6269827,48,-3,-117.83982,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3493383,7.1035957,57.33,53.46,47.26,46.15,10,1,1,0,0,0,4,2,0,1723,713919.63,389612.44,199483.16,0,0,0,1792.2283 +12907,15747,28100,28099,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,48,3,17.398731,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.26,46.15,57.33,53.46,5,1,1,0,0,1,4,2,0,1723,713919.63,389612.44,199483.16,0,0,0,1792.2283 +12908,15748,28101,28102,-9,-9,1,0,59,0,0,0,2,2,-9,1,1,0,0,0,10,6,0,0,2,3,2021,30,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,19.01,22.64,44.09,21.65,0,1,1,0,1,0,5,1,0,585,-52830.563,0,0,0,0,0,1863.6857 +12908,15748,28102,28101,-9,-9,1,1,53,0,0,0,2,2,-9,0,1,0,0,0,10,-6,0,0,-9,-9,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,44.09,21.65,19.01,22.64,3.333333333333333,1,1,0,1,0,5,1,0,585,-52830.563,0,0,0,0,0,1863.6857 +12909,15749,28103,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1049.389,0,3,3,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,2.824662,1.1661155,26.76371,0,1,1,0,0,0,38.24,25.76,-9,-9,3.333333333333333,1,1,0,0,8,12,1,1,268,213385.58,0,0,0,0,0,571.43848 +12910,15750,28104,28105,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,24,6,-72.231293,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.9637098,0,7,1,1,0,0,0,65.84999999999999,10.28,64.38,39.16,10,1,1,0,0,4,7,3,1,1279,1468522.4,712288.13,507983.44,0,7497.3281,0,3092.0623 +12910,15750,28105,28104,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,8.1846476,8.1123285,5.174612,24,-6,-34.214035,0,1,1,2021,6,0,30,55,1,0,0,13.699481,13.699481,0,0,0,0,0,0,0,7,1,1,0,5.5877457,5.3565845,64.38,39.16,65.84999999999999,10.28,10,1,1,0,0,11,7,3,1,1279,1468522.4,712288.13,507983.44,0,7497.3281,0,3092.0623 +12911,15751,28106,28107,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.6861343,8.6912956,5.615869,6,-5,-2.8107524,0,3,3,2021,7,0,40,40,1,0,0,15.227123,15.227123,.05,.05,0,0,0,0,0,0,1,1,0,6.4339972,6.3917594,57.16,56.15,65.62,32.29,8.333333333333334,1,1,0,0,7,1,4,1,979.5,897987.44,657972.13,300524.28,0,0,0,2527.3074 +12911,15751,28107,28106,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,39,5,-37.344894,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0520172,0,65.62,32.29,57.16,56.15,8.333333333333334,1,1,0,0,0,1,4,1,979.5,897987.44,657972.13,300524.28,0,0,0,2527.3074 +12912,15752,28108,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,0,0,0,0,-989.84723,0,3,3,2021,3,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.78,48.45,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,334,-12853.298,0,0,0,0,0,1214.8585 +12913,15753,28109,28110,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-3,55.838055,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,9,11,3,1,1892.5,759342.13,356091.19,254812.34,0,0,1899.6616,1075.0347 +12913,15753,28110,28109,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,7.4970975,7.8338943,42,3,98.10611,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.7077022,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,7,11,3,1,1892.5,759342.13,356091.19,254812.34,0,0,1899.6616,1075.0347 +12914,15754,28111,-9,-9,-9,1,0,43,0,0,0,3,3,-9,0,4,8.4749355,8.4032946,0,0,0,-1074.1356,0,-9,-9,2021,8,0,80,48,1,0,0,8.9776287,8.9776287,.05,.05,0,0,0,0,0,0,1,1,0,4.743185,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,7,4,1,443,69708.484,107203.1,0,0,0,0,1480.1854 +12915,15755,28112,28113,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,0,0,0,28,-4,-88.254265,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.63,30.28,53,54,1.666666666666667,1,1,0,0,0,1,3,0,879,449468.38,348139.56,0,0,8338.793,0,601.37347 +12915,15755,28113,28112,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.2195568,8.585844,0,30,4,-11.097576,0,-9,-9,2021,9,0,40,39,1,1,0,9.4274521,9.4274521,.05,.05,0,0,0,0,0,2,1,1,0,3.4164443,0,53,54,47.63,30.28,7,1,1,0,0,1,1,3,0,879,449468.38,348139.56,0,0,8338.793,0,601.37347 +12916,15756,28114,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,9.3717136,9.1220741,0,0,0,-960.39679,0,2,2,2021,7,0,35,40,1,0,0,38.430672,38.430672,0,0,0,0,0,0,0,2,1,1,0,5.1939063,0,57.06,57.76,-9,-9,10,1,1,0,0,8,2,5,1,329,450080.94,64340.871,0,0,0,0,3528.1572 +12917,15757,28115,28116,-9,-9,1,0,62,0,0,0,2,2,-9,0,1,0,5.1406679,4.4569778,47,-3,16.698292,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1952891,5.2073832,43.03,14.16,61.43,43.34,1.666666666666667,1,1,0,0,0,4,4,1,334.5,892962.25,531265.13,276025.66,0,3208.7478,0,4900.2285 +12917,15757,28116,28115,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.0653725,8.4787989,7.9262214,8,3,58.169117,0,-9,-9,2021,6,0,18,24,1,0,0,27.714254,27.714254,.05,.05,0,0,0,0,0,42,1,1,0,8.0171423,7.9374166,61.43,43.34,43.03,14.16,8.333333333333334,1,1,0,0,10,4,4,1,334.5,892962.25,531265.13,276025.66,0,3208.7478,0,4900.2285 +12918,15758,28117,28118,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.2638807,9.2718716,0,31,0,33.472855,0,2,1,2021,8,0,46,50,1,0,0,27.617523,27.617523,.05,.05,0,0,0,0,0,2,0,0,0,2.1890652,0,54.2,57.49,49.55,55.6,8.333333333333334,1,1,0,0,14,10,5,1,871.5,1108105.3,557152.81,377764.56,0,0,-445.2326,3776.9404 +12918,15758,28118,28117,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,31,0,-43.524311,0,3,2,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,49.55,55.6,54.2,57.49,8.333333333333334,1,1,0,0,3,10,5,1,871.5,1108105.3,557152.81,377764.56,0,0,-445.2326,3776.9404 +12918,15759,28119,-9,28118,28117,1,0,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1036.386,0,1,1,2021,9,0,0,20,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1599667,0,53.75,54.92,-9,-9,6.666666666666667,1,1,1,0,4,10,1,1,319,-74790.492,0,0,0,0,0,-379.49631 +12918,15760,28120,-9,28118,28117,1,1,24,0,0,0,1,1,-9,0,4,7.4248223,7.2460237,0,0,0,-952.31818,0,1,1,2021,13,1,22,22,1,1,1,8.0759268,8.0759268,0,0,0,0,0,0,0,0,0,0,0,.31577983,0,35.91,63.19,-9,-9,3.333333333333333,1,1,0,0,3,10,3,1,86,49588.969,0,0,0,0,0,925.14685 +12919,15761,28121,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,0,0,0,0,0,-911.45374,0,3,3,2021,16,4,0,30,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.26,64.39,-9,-9,3.333333333333333,2,3,1,0,1,6,1,1,83,102854.99,0,0,0,0,1444.1945,0 +12920,15762,28122,28123,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.1215739,7.0163693,0,40,-5,101.32075,0,2,2,2021,10,0,15,15,1,0,0,9.5958328,9.5958328,0,0,0,0,0,0,0,14.5,0,0,0,.71097684,0,52,54.51,43.17,58.55,6.666666666666667,1,1,0,0,15,8,4,1,2616.5,683642,162064.56,330138.13,0,1445.8224,0,3036.0493 +12920,15762,28123,28122,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,0,8.177844,8.8297815,42,5,-115.02205,0,2,1,2021,15,4,0,0,4,4,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,3.5276423,8.5120764,43.17,58.55,52,54.51,5,2,3,0,0,7,8,4,1,2616.5,683642,162064.56,330138.13,0,1445.8224,0,3036.0493 +12921,15763,28124,28125,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,4.855804,5.3260698,9,1,-99.70607,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4199839,5.066606,64,38.07,62.49,55.09,10,1,1,0,0,0,8,4,1,800,1966394.5,633076.25,763495.75,0,181.8441,0,4349.9941 +12921,15763,28125,28124,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,8.6313572,8.5078526,53,-1,45.179237,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9289818,8.8992062,62.49,55.09,64,38.07,10,1,1,0,0,6,8,4,1,800,1966394.5,633076.25,763495.75,0,181.8441,0,4349.9941 +12922,15764,28126,28127,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,3.7392757,3.8097272,58,0,-33.728657,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.64851058,3.8331158,49.11,51.55,46.55,37.63,10,1,1,0,0,0,7,2,1,534.5,0,0,0,0,0,0,1607.083 +12922,15764,28127,28126,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,2.2617521,2.0548468,58,0,-11.159451,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.7242782,1.8587959,46.55,37.63,49.11,51.55,5,1,1,0,0,0,7,2,1,534.5,0,0,0,0,0,0,1607.083 +12923,15765,28128,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1090.7719,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.75,30.37,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,203,43782.66,0,0,0,0,0,475.25742 +12924,15766,28129,-9,28130,28131,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.9608,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12924,15766,28130,28131,-9,-9,1,0,31,0,2,0,2,2,-9,0,5,7.2915163,7.6392117,0,1,-1,37.302769,-9,3,-9,2021,12,0,28,0,1,0,0,9.0895739,9.0895739,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,31.81,62.72,10,1,1,0,0,12,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12924,15766,28131,28130,-9,-9,1,1,32,0,2,0,2,2,-9,0,5,8.9379492,8.8163519,0,1,1,18.296696,-9,-9,-9,2021,12,0,40,0,1,0,0,25.894867,25.894867,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.81,62.72,57.06,57.76,10,1,1,0,0,10,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12924,15766,28132,-9,28130,28131,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-910.28253,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,624.75,131862.86,35149.871,211203.28,129405.19,0,3798.4915,3659.6401 +12925,15767,28133,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,2,0,0,0,0,0,-895.94409,0,3,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.6,19.2,-9,-9,1.666666666666667,1,1,0,1,3,6,1,0,322,62313.578,0,0,0,3537.6797,0,499.02039 +12926,15768,28134,28135,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,8.4281731,8.5343142,0,10,-4,-104.37067,0,-9,-9,2021,12,2,39,39,1,2,0,14.638,14.638,.05,.05,0,0,0,0,0,0,1,1,0,1.9860759,0,54.1,59.11,17.88,67.62,8.333333333333334,1,1,0,0,10,2,5,1,1316.6666,667269.69,108784.56,234376.94,0,0,0,4381.3813 +12926,15768,28135,28134,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,8.7192221,8.6681786,0,10,4,-115.39752,0,2,2,2021,22,10,39,39,1,10,0,20.430586,20.430586,.05,.05,0,0,0,0,0,0,1,1,0,3.2293379,0,17.88,67.62,54.1,59.11,6.666666666666667,1,1,0,0,10,2,5,1,1316.6666,667269.69,108784.56,234376.94,0,0,0,4381.3813 +12926,15768,28136,-9,28135,28134,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.1095,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1316.6666,667269.69,108784.56,234376.94,0,0,0,4381.3813 +12927,15769,28137,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,2,8.1219158,8.028264,0,0,0,-1042.3011,-9,-9,-9,2021,5,0,37,0,1,0,0,6.3329191,6.3329191,0,0,0,0,0,0,0,0,0,0,0,0,0,55.99,49.03,-9,-9,6.666666666666667,1,1,0,0,3,2,4,0,2094,30775.473,148502.47,0,0,0,0,1390.2427 +12928,15770,28138,28139,-9,-9,1,0,30,1,1,0,1,1,-9,0,5,7.1017656,7.2615585,0,4,-15,-76.114609,0,-9,-9,2021,4,0,17,17,1,0,0,9.9771099,9.9771099,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,61.28,48.88,10,1,1,0,0,5,6,4,1,1160,361494.06,23256.389,349294.63,96461.742,7702.666,0,2847.0527 +12928,15770,28139,28138,-9,-9,1,1,45,1,1,0,2,2,-9,0,3,8.1990385,8.2982731,0,4,15,-77.841522,0,-9,-9,2021,8,0,37,48,1,0,0,14.253816,14.253816,.05,.05,0,0,0,0,0,0,1,1,0,6.6436024,0,61.28,48.88,60.02,56.42,10,1,1,0,0,6,6,4,1,1160,361494.06,23256.389,349294.63,96461.742,7702.666,0,2847.0527 +12928,15770,28140,-9,28138,28139,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.7049,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,1160,361494.06,23256.389,349294.63,96461.742,7702.666,0,2847.0527 +12929,15771,28141,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,6.7905869,6.6981406,0,0,-1062.6217,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5409198,6.8304138,60.05,42.65,-9,-9,6.666666666666667,1,1,0,0,3,9,2,1,2501,839059.88,755810.75,0,0,0,0,1487.1077 +12930,15772,28142,-9,28143,28144,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-928.51959,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,4,0,726,129126.7,-54720.016,153942.78,86118.266,197.42606,3542.002,3274.6692 +12930,15772,28143,28144,-9,-9,1,0,21,1,1,0,2,2,-9,0,4,7.5835357,7.7000656,0,2,0,-123.02441,0,-9,-9,2021,5,1,35,34,1,1,0,5.9785795,5.9785795,0,0,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,54.37,54.8,10,1,1,0,0,3,5,4,0,726,129126.7,-54720.016,153942.78,86118.266,197.42606,3542.002,3274.6692 +12930,15772,28144,28143,-9,-9,1,1,21,1,1,0,2,2,-9,0,3,8.3362255,8.5859642,0,2,0,-18.620419,0,-9,-9,2021,10,0,39,40,1,0,0,13.421902,13.421902,.05,.05,0,0,0,0,0,0,1,1,0,2.7189848,0,54.37,54.8,46.1,59.99,8.333333333333334,1,1,0,0,5,5,4,0,726,129126.7,-54720.016,153942.78,86118.266,197.42606,3542.002,3274.6692 +12931,15773,28145,28146,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,4.3919353,4.319191,55,-3,25.982952,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.0490708,4.4372792,62.16,36.04,60.12,54.8,6.666666666666667,1,1,0,0,3,2,2,1,2109.5,300803.91,458447.38,0,0,0,0,868.96576 +12931,15773,28146,28145,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,7.0703225,6.7225275,13,3,122.32169,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8593712,7.2310634,60.12,54.8,62.16,36.04,8.333333333333334,1,1,0,0,0,2,2,1,2109.5,300803.91,458447.38,0,0,0,0,868.96576 +12932,15774,28147,28148,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.6068411,8.4176655,0,31,-6,-89.912613,0,3,1,2021,22,9,37,37,1,9,0,16.878477,16.878477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.9,49.04,56.75,31,1.666666666666667,1,1,0,0,9,11,5,1,635.5,522599.59,364497.75,206792.34,30246.84,0,0,2951.8613 +12932,15774,28148,28147,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.6592426,8.2682829,0,31,6,-10.853517,0,3,2,2021,15,4,37,37,1,4,0,15.7318,15.7318,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.75,31,28.9,49.04,3.333333333333333,1,1,0,0,10,11,5,1,635.5,522599.59,364497.75,206792.34,30246.84,0,0,2951.8613 +12932,15775,28149,-9,28147,28148,1,1,23,0,0,0,2,2,-9,0,5,7.610795,7.3903623,0,0,0,-1015.9441,0,2,2,2021,10,0,40,37,1,0,1,4.1976857,4.1976857,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,5,1,1,0,1,4,11,3,1,2519,49573.75,49876.883,0,0,0,0,808.51025 +12933,15776,28150,28151,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,8.4832611,8.5777817,0,4,-2,-45.739223,0,-9,-9,2021,19,8,37,36,1,8,0,17.572298,17.572298,.05,.05,0,0,0,0,0,0,0,0,0,5.1881971,0,29.03,58.4,33.49,64.26000000000001,5,1,1,0,0,9,9,5,1,1453.5,1180905.8,148274.44,764926.75,62713.609,0,0,3997.5479 +12933,15776,28151,28150,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.6615801,8.8605299,0,4,2,-17.135328,0,3,3,2021,25,12,38,0,1,12,0,17.200325,17.200325,.05,.05,0,0,0,0,0,7,0,0,0,3.1105397,0,33.49,64.26000000000001,29.03,58.4,6.666666666666667,1,1,0,0,4,9,5,1,1453.5,1180905.8,148274.44,764926.75,62713.609,0,0,3997.5479 +12934,15777,28152,-9,28153,28155,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-961.45734,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12934,15777,28153,28155,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.4753876,8.372014,0,17,-4,-21.51,0,1,2,2021,12,2,20,47,1,2,0,25.369936,25.369936,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,48.87,58.55,8.333333333333334,1,1,0,0,14,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12934,15777,28154,-9,28153,28155,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.0977,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12934,15777,28155,28153,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,9.1948566,9.0493917,0,17,4,-24.20505,0,2,2,2021,7,0,44,46,1,0,0,21.469831,21.469831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.77,58.57,8.333333333333334,1,1,0,0,14,9,5,1,639.25,475158.66,26311.117,434652.94,0,4185.1357,0,4082.5847 +12935,15778,28156,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.994812,8.9910154,0,0,0,-975.58099,0,-9,-9,2021,6,0,49,48,1,0,0,23.033426,23.033426,0,0,0,0,0,0,0,0,0,0,0,4.7219968,0,41.07,60.93,-9,-9,6.666666666666667,1,1,0,0,11,10,5,1,3225,6072147.5,22489.494,417014.47,0,0,0,3315.0862 +12935,15779,28157,-9,-9,28156,1,1,25,0,0,0,2,2,1,0,5,7.0690527,7.124434,0,0,0,-1085.7373,-9,-9,2,2021,5,1,37,0,1,1,1,3.7967985,3.7967985,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,4,10,3,1,1429,0,0,0,0,0,0,508.46841 +12936,15780,28158,28161,-9,-9,1,0,31,1,2,0,1,1,-9,0,3,8.5263128,8.7153664,0,6,0,101.93188,0,-9,-9,2021,24,11,29,29,1,11,0,19.090054,19.090054,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.19,55.56,57.06,57.76,5,1,1,0,0,6,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12936,15780,28159,-9,28158,28161,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-984.3808,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12936,15780,28160,-9,28158,28161,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1089.5006,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12936,15780,28161,28158,-9,-9,1,1,31,1,2,0,2,2,-9,0,5,9.0197105,8.9320679,0,6,0,-4.0563464,0,2,1,2021,7,0,35,35,1,0,0,28.300785,28.300785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,26.19,55.56,8.333333333333334,1,1,0,0,11,9,5,1,1408.75,393859.94,300446.25,273717.19,178140.56,0,9571.751,5032.8853 +12937,15781,28162,28164,-9,-9,1,0,35,0,1,0,1,1,-9,0,3,8.6738262,8.7127314,5.2396097,7,0,-44.379196,0,3,2,2021,14,3,33,33,1,3,0,22.146683,22.146683,0,0,0,0,0,0,0,0,1,1,0,5.7237434,0,41.92,39.98,45.73,57.57,6.666666666666667,1,1,0,0,9,9,5,1,1134.6666,411545.44,140332.2,372134.44,92101.289,0,0,4927.0396 +12937,15781,28163,-9,28162,28164,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.2612,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,5,1,1134.6666,411545.44,140332.2,372134.44,92101.289,0,0,4927.0396 +12937,15781,28164,28162,-9,-9,1,1,44,0,1,0,3,3,-9,0,3,8.8449373,8.7547474,0,7,9,-65.593559,0,2,2,2021,7,0,40,40,1,0,0,17.133545,17.133545,0,0,0,0,0,0,0,0,1,1,0,0,0,45.73,57.57,41.92,39.98,6.666666666666667,1,1,0,0,7,9,5,1,1134.6666,411545.44,140332.2,372134.44,92101.289,0,0,4927.0396 +12938,15782,28165,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.4482098,8.1492834,0,0,0,-1001.135,0,-9,-9,2021,9,0,40,40,1,0,0,11.806262,11.806262,.05,.05,0,0,0,0,0,0,0,0,0,7.5347619,0,54.63,58.83,-9,-9,8.333333333333334,1,1,0,0,3,4,4,0,642,161829.02,127810.05,37530.891,27042.018,0,0,1987.7257 +12938,15783,28166,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,7.8868332,8.0409193,0,0,0,-1037.1989,-9,-9,-9,2021,6,0,37,0,1,0,0,10.46459,10.46459,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,4,4,4,0,923,247303.66,-180440.09,0,0,9205.6846,0,1624.4261 +12939,15784,28167,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.9151659,8.1042547,0,0,-948.60535,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.1027541,8.0918407,29.72,61.25,-9,-9,10,1,1,0,0,4,1,4,1,169,602596.38,424591.59,155010.88,0,0,0,1660.3594 +12940,15785,28168,28169,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.2857533,8.1867037,8,0,-26.173498,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.5466776,0,0,1,1,0,5.0801048,8.0399961,42.7,46.47,29.82,32.56,5,1,1,0,0,0,6,3,1,752,856655.5,706162.31,232955.69,0,12794.416,0,3315.1538 +12940,15785,28169,28168,-9,-9,1,0,76,0,0,0,2,2,-9,0,2,0,0,0,8,0,45.914074,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,1,0,2.5653775,0,0,1,1,0,1.5541905,0,29.82,32.56,42.7,46.47,6.666666666666667,1,1,0,0,0,6,3,1,752,856655.5,706162.31,232955.69,0,12794.416,0,3315.1538 +12940,15786,28170,-9,28169,28168,1,1,45,0,0,0,2,2,-9,0,2,8.540431,8.5907869,0,0,0,-1039.4481,0,2,2,2021,6,0,42,44,1,0,0,10.221106,10.221106,0,0,0,0,0,0,0,2,1,1,0,2.3549466,0,52.24,50.75,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,152,25717.635,0,0,0,0,492.90924,1540.7977 +12941,15787,28171,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1034.7406,0,2,-9,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.39,34.81,-9,-9,3.333333333333333,4,2,0,0,0,2,1,0,393,-57693.77,0,0,0,0,747.08221,936.47418 +12942,15788,28172,-9,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.2533388,8.1295233,0,0,-1049.6093,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9908605,8.3654823,61.58,43.34,-9,-9,8.333333333333334,1,1,0,0,4,5,4,1,389,574351.44,500744.97,193212.69,0,0,0,2880.8774 +12943,15789,28173,28174,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,7.6891608,7.7382803,0,27,-3,-98.819916,0,-9,-9,2021,9,0,32,22,1,0,0,8.4665833,8.4665833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.27,48.47,49,50,10,1,1,0,0,8,1,4,0,1518.5,65126.68,132848.52,112376.56,0,5448.2764,0,2038.3469 +12943,15789,28174,28173,-9,-9,1,1,51,0,0,0,3,3,-9,0,3,7.7892776,7.7390919,0,27,3,68.882133,0,-9,2,2021,7,0,40,-9,1,0,0,6.9214044,6.9214044,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,50,62.27,48.47,8.333333333333334,1,1,0,0,10,1,4,0,1518.5,65126.68,132848.52,112376.56,0,5448.2764,0,2038.3469 +12943,15790,28175,-9,28173,28174,1,1,22,0,0,0,2,2,-9,1,4,0,0,0,0,0,-940.55396,0,2,3,2021,26,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.03,57.49,-9,-9,3.333333333333333,1,1,0,0,1,1,1,0,2788,31087.547,0,0,0,0,0,311.15558 +12943,15791,28176,28177,-9,-9,1,1,20,0,0,0,2,2,-9,0,2,6.4056129,6.3188286,0,1,2,29.097677,-9,-9,-9,2021,10,1,25,0,1,1,0,3.0684471,3.0684471,.05,.05,0,0,0,0,0,0,1,1,0,4.0311828,0,48.76,38.46,31,32,8.333333333333334,1,1,0,1,0,1,2,0,449,-16331.599,-65554.57,0,0,0,0,665.52698 +12943,15791,28177,28176,28173,28174,1,0,18,0,0,0,3,3,-9,1,1,0,0,0,1,-2,49.243298,0,2,3,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.011479,0,31,32,48.76,38.46,0,1,1,1,0,0,1,2,0,449,-16331.599,-65554.57,0,0,0,0,665.52698 +12944,15792,28178,-9,28180,28179,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1121.6761,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12944,15792,28179,28180,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.0384436,9.3189621,0,9,0,-19.652273,0,3,3,2021,3,1,47,40,1,1,0,21.269104,21.269104,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,46.94,59.6,8.333333333333334,1,1,0,0,10,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12944,15792,28180,28179,-9,-9,1,0,48,0,2,0,1,1,-9,0,5,8.904273,9.1639233,0,9,0,120.83143,0,2,2,2021,10,3,45,44,1,3,0,18.725019,18.725019,0,0,0,0,0,0,0,0,0,0,0,0,0,46.94,59.6,54.79,55.86,5,1,1,0,0,10,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12944,15792,28181,-9,28180,28179,1,0,16,0,2,1,2,0,0,0,4,0,2.8404059,3.1482675,0,0,-1000.2206,-9,1,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.455061,0,41.14,59.2,-9,-9,8.333333333333334,1,1,0,0,0,8,5,1,879.5,306164.84,86704.234,678882.56,474422.66,0,0,6364.8882 +12945,15793,28182,-9,-9,-9,1,1,20,0,2,1,2,0,0,0,4,0,0,0,0,0,-976.02167,-9,2,2,2021,11,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,4,5,0,0,0,8,1,0,421,0,0,0,0,0,0,-385.77615 +12946,15794,28183,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,5,0,0,0,0,0,-1087.2762,0,3,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,569,61709.746,0,0,0,0,0,0 +12947,15795,28184,-9,28186,28185,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1014.7153,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12947,15795,28185,28186,-9,-9,1,1,58,0,2,0,2,2,-9,0,4,5.2674942,5.425983,0,2,13,-26.959684,0,2,2,2021,11,0,65,60,1,0,0,.30072805,.30072805,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.41,58.28,28.73,50.3,6.666666666666667,1,1,0,0,11,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12947,15795,28186,28185,-9,-9,1,0,45,0,2,0,2,2,-9,0,3,9.1093683,8.9803562,0,2,-13,.94009024,0,-9,2,2021,23,11,43,40,1,11,0,19.230076,19.230076,0,0,0,0,0,0,0,0,0,0,0,0,0,28.73,50.3,49.41,58.28,5,1,1,0,0,9,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12947,15795,28187,-9,28186,28185,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-933.24139,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,54,-9,-9,6,1,1,-9,0,0,12,4,1,1174.25,28761.934,187711.33,281843.19,275518.03,0,0,3123.562 +12948,15796,28188,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,5.3629632,5.7747049,0,0,-907.48718,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3953991,5.6316481,31.67,54.34,-9,-9,1.666666666666667,1,1,0,1,9,12,2,1,324,194747.06,102535.06,0,0,167.12039,1036.4265,1151.4465 +12948,15797,28189,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,6.7436132,6.7133498,0,0,0,-788.59009,0,-9,-9,2021,6,0,11,11,1,0,0,9.6537819,9.6537819,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,12,2,1,1086,38829.738,-47157.605,0,0,0,0,437.3244 +12949,15798,28190,28191,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,8.0503283,8.1987715,50,16,-120.7453,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,17.136791,0,0,1,1,0,0,8.274724,46.65,20.63,30.39,57.87,8.333333333333334,1,1,0,0,0,4,5,1,955.5,4023130.5,2246181,972502.44,0,0,0,9623.6982 +12949,15798,28191,28190,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,9.6102228,9.5800962,48,-16,-24.651432,0,3,3,2021,26,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,9.5399857,30.39,57.87,46.65,20.63,8.333333333333334,1,1,0,0,0,4,5,1,955.5,4023130.5,2246181,972502.44,0,0,0,9623.6982 +12950,15799,28192,-9,28193,28196,1,1,14,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1007.3409,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28193,28196,-9,-9,1,0,35,1,3,0,2,2,-9,0,5,8.4959641,8.3945103,0,17,-6,6.7794976,0,3,2,2021,10,0,38,41,1,0,0,18.758493,18.758493,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,54.1,59.11,8.333333333333334,3,4,0,0,8,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28194,-9,28193,28196,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1160.108,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28195,-9,28193,28196,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-918.80487,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12950,15799,28196,28193,-9,-9,1,1,41,1,3,0,2,2,-9,0,5,7.7738786,7.9588246,0,7,6,77.037392,0,-9,-9,2021,8,0,39,39,1,0,0,8.0610075,8.0610075,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.14,60.45,8.333333333333334,1,1,0,0,9,6,4,1,583.40002,233005.31,62991.922,232790.22,23085.539,0,0,3653.6272 +12951,15800,28197,28198,-9,-9,1,1,74,0,0,0,1,1,-9,0,4,0,9.3710375,9.0576468,43,3,-65.731903,0,1,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2883353,9.1789999,58.15,52.91,55.1,34.09,8.333333333333334,1,1,0,0,9,9,5,1,628,8525095,357333.22,2321716.5,0,0,0,9111.6055 +12951,15800,28198,28197,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,8.3902531,8.7011166,43,-3,-63.084099,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.1499104,8.819994,55.1,34.09,58.15,52.91,5,1,1,0,0,5,9,5,1,628,8525095,357333.22,2321716.5,0,0,0,9111.6055 +12952,15801,28199,28200,-9,-9,1,0,26,0,0,0,1,1,-9,0,3,8.3262854,8.1428652,0,2,2,33.04884,-9,-9,-9,2021,8,0,38,0,1,0,0,13.319011,13.319011,0,0,0,0,0,0,0,0,0,0,0,5.4821186,0,44,53,44.67,52.97,8.333333333333334,1,1,0,0,2,2,4,1,1170,-97090.375,23253.455,0,0,-731.03302,842.55933,2095.752 +12952,15801,28200,28199,-9,-9,1,1,24,0,0,0,2,2,-9,0,2,7.7543535,7.7209792,0,2,-2,55.003567,0,1,1,2021,12,1,30,39,1,1,0,10.841043,10.841043,.05,.05,0,0,0,0,0,0,0,0,0,.52766722,0,44.67,52.97,44,53,5,1,1,0,1,7,2,4,1,1170,-97090.375,23253.455,0,0,-731.03302,842.55933,2095.752 +12953,15802,28201,28202,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.4306378,7.4349809,38,-13,106.45387,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1965508,6.9456387,57.73,54.53,51.19,52.17,10,1,1,0,0,6,10,3,1,507.5,108067.81,0,91446.555,0,0,0,2889.3848 +12953,15802,28202,28201,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,7.9039721,7.749825,38,13,15.527213,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8603163,7.1630054,51.19,52.17,57.73,54.53,8.333333333333334,1,1,0,0,0,10,3,1,507.5,108067.81,0,91446.555,0,0,0,2889.3848 +12954,15803,28203,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,6.2183218,6.1866674,0,0,-1029.4843,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,4.1310096,0,0,1,1,0,5.1055632,6.0105247,51.66,29.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,239,-69263.805,-196625.36,32379.594,0,0,0,1720.6942 +12955,15804,28204,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1084.8154,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3516834,0,57.11,33.45,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,932,81060.711,0,0,0,0,0,510.26932 +12956,15805,28205,28207,-9,-9,1,1,46,0,2,0,3,3,-9,0,3,7.9515433,7.6471162,0,9,2,-17.649523,0,3,2,2021,8,0,40,40,1,0,0,8.3756723,8.3756723,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,46.08,57.2,5,1,1,0,0,10,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12956,15805,28206,-9,28207,28205,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1018.9717,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12956,15805,28207,28205,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,9,-2,-8.241168,0,-9,-9,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,52,54.51,5,1,1,0,0,0,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12956,15805,28208,-9,28207,28205,1,0,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1023.0067,-9,2,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,4,3,1,817.75,158981.41,0,213158.94,802.14319,0,0,1576.3182 +12957,15806,28209,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,0,0,0,0,-886.68872,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.58,37.25,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,2186,183221.42,0,0,0,0,0,270.71063 +12958,15807,28210,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-954.35693,0,2,3,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2081876,0,44.75,33.78,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,548,-259615.19,0,0,0,0,0,202.3533 +12959,15808,28211,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,1,0,0,0,0,0,-846.27014,0,2,2,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.52,25.02,-9,-9,1.666666666666667,4,2,0,0,0,8,1,0,1039,0,0,0,0,0,0,487.07407 +12960,15809,28212,28213,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,0,0,11,4,54.860596,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.87,44.58,44.09,36.44,8.333333333333334,1,1,0,0,10,13,2,1,618.5,638627.5,269958.94,156172.44,0,7947.0068,0,182.2729 +12960,15809,28213,28212,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.1261716,7.0569725,4.5802956,11,-4,-31.561975,0,3,2,2021,12,0,32,31,1,0,0,4.6417665,4.6417665,0,0,0,0,0,0,0,0,1,1,0,4.9529462,5.0613899,44.09,36.44,40.87,44.58,3.333333333333333,1,1,0,0,12,13,2,1,618.5,638627.5,269958.94,156172.44,0,7947.0068,0,182.2729 +12960,15810,28214,-9,28213,28212,1,1,34,0,0,0,3,3,-9,0,3,5.4389086,5.1550455,0,0,0,-965.83728,0,3,2,2021,10,0,40,45,1,0,0,.50892544,.50892544,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,0,1,1,0,0,10,13,2,1,98,42203.387,0,0,0,0,0,138.30267 +12961,15811,28215,-9,-9,-9,1,1,59,0,1,0,1,1,-9,0,2,0,8.0036764,7.6961975,0,0,-1034.0669,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.6704445,50.15,46.38,-9,-9,6.666666666666667,2,3,0,0,1,8,3,1,766,16198.729,-16619.734,0,0,9129.8828,0,1969.7904 +12962,15812,28216,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,7.3334527,7.4979448,0,0,0,-922.37958,0,3,3,2021,12,0,22,16,1,0,0,8.320076,8.320076,0,0,0,0,0,0,0,7,1,0,1,0,0,46.08,57.2,-9,-9,5,1,1,0,0,4,12,3,0,1514,-246617.27,0,0,0,0,0,1180.604 +12963,15813,28217,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-955.9115,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.09,26.01,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,386,104677.74,46638.301,144913.03,0,0,0,1107.5662 +12964,15814,28218,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,0,0,-907.73108,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,13,1,1,365,115734.05,0,0,0,5412.9419,0,229.4691 +12965,15815,28219,-9,-9,-9,1,0,20,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1021.24,-9,2,-9,2021,12,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.18,54.59,-9,-9,5,4,2,0,0,0,10,1,0,408,-188781.95,0,0,0,0,0,0 +12966,15816,28220,28221,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,8.3596601,8.1014137,46,2,48.608559,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9940281,8.1670284,51.76,47.75,62.18,36.18,1.666666666666667,2,3,0,0,0,9,4,1,462,1813245.5,817610.81,632447.94,0,0,0,6819.8916 +12966,15816,28221,28220,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,6.4916372,7.9202518,7.9567504,46,-2,-68.525314,0,-9,-9,2021,7,0,20,20,1,0,0,4.8806391,4.8806391,0,0,0,0,0,0,0,2,1,1,0,7.8874602,7.9351044,62.18,36.18,51.76,47.75,8.333333333333334,1,1,0,0,13,9,4,1,462,1813245.5,817610.81,632447.94,0,0,0,6819.8916 +12967,15817,28222,28224,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,5.1178904,4.979012,0,14,15,104.4015,0,2,2,2021,5,0,30,16,1,0,0,.65607965,.65607965,0,0,0,0,0,0,0,0,1,1,0,0,0,59.78,55.17,47.68,55.12,8.333333333333334,2,3,0,0,11,8,2,1,1654.6666,0,0,0,0,0,0,1273.1929 +12967,15817,28223,-9,28224,28222,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.2549,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,1,1654.6666,0,0,0,0,0,0,1273.1929 +12967,15817,28224,28222,-9,-9,1,0,32,0,2,0,2,2,-9,0,4,7.6779041,7.6278739,0,14,-15,-73.122833,0,2,2,2021,4,0,25,60,1,0,0,8.5643644,8.5643644,0,0,0,0,0,0,0,0,1,1,0,0,0,47.68,55.12,59.78,55.17,8.333333333333334,2,3,0,0,11,8,2,1,1654.6666,0,0,0,0,0,0,1273.1929 +12968,15818,28225,28226,-9,-9,1,1,33,0,1,0,1,1,-9,0,5,8.6489038,8.4954386,0,5,-8,-129.99538,0,-9,-9,2021,6,0,36,39,1,0,0,17.313177,17.313177,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,58.15,52.91,8.333333333333334,1,1,0,0,8,2,5,1,712.33331,61264.934,57096.594,143795.75,82764.563,6774.2559,1054.2568,3096.0698 +12968,15818,28226,28225,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.955646,8.3956289,0,5,8,-20.680269,0,2,2,2021,7,0,34,34,1,0,0,12.054078,12.054078,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,62.39,56.71,8.333333333333334,1,1,0,0,12,2,5,1,712.33331,61264.934,57096.594,143795.75,82764.563,6774.2559,1054.2568,3096.0698 +12968,15818,28227,-9,28226,28225,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.69177,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,712.33331,61264.934,57096.594,143795.75,82764.563,6774.2559,1054.2568,3096.0698 +12968,15819,28228,-9,28226,28225,1,0,21,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1016.7368,1,2,1,2021,8,0,0,26,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,1689,-167694.58,0,0,0,0,314.06982,767.96857 +12969,15820,28229,28230,-9,-9,1,1,81,0,0,0,3,3,-9,0,1,0,6.6484022,6.6865396,9,2,-24.853849,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,22.934599,0,0,1,1,0,0,6.749999,53.8,32.82,56.94,49.53,6.666666666666667,1,1,0,0,0,11,2,1,347,460934.19,159900.25,241718.06,0,0,0,1592.4243 +12969,15820,28230,28229,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,9,-2,44.11071,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.94,49.53,53.8,32.82,8.333333333333334,1,1,0,0,0,11,2,1,347,460934.19,159900.25,241718.06,0,0,0,1592.4243 +12970,15821,28231,-9,28235,28233,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1031.8022,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28232,-9,28235,28233,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-896.04828,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28233,28235,-9,-9,1,1,42,1,4,0,3,3,-9,0,2,8.5505371,8.2788019,0,9,5,-15.310292,0,-9,-9,2021,9,0,40,35,1,0,0,11.159058,11.159058,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.42,34.56,40.97,40.61,5,2,3,0,1,2,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28234,-9,28235,28233,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-980.9212,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28235,28233,-9,-9,1,0,37,1,4,0,1,1,-9,0,3,0,0,0,13,-5,-4.171556,0,3,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,40.61,57.42,34.56,6.666666666666667,2,3,0,1,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12970,15821,28236,-9,28235,28233,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.25275,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,3,1,386,85907.367,47482.441,0,0,0,184.77097,1992.547 +12971,15822,28237,28238,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,9.1350861,8.6420279,0,19,-3,-105.84544,0,2,2,2021,8,0,42,40,1,0,0,19.911234,19.911234,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,8,1,5,1,401,365754.81,158210.2,339003.81,253995.97,0,0,4062.4375 +12971,15822,28238,28237,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.4815254,8.2611303,0,19,3,63.97924,0,3,3,2021,7,0,40,40,1,0,0,14.786119,14.786119,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,13,1,5,1,401,365754.81,158210.2,339003.81,253995.97,0,0,4062.4375 +12972,15823,28239,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.1386118,9.4256067,0,0,0,-1081.8871,0,2,3,2021,11,0,45,44,1,2,0,25.659481,25.659481,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,12,11,5,1,195,1497383.4,1014446.6,609378.13,94910.016,0,0,4240.0107 +12973,15824,28240,28241,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,9.1655121,8.7558546,0,9,3,-8.1621695,0,-9,-9,2021,6,0,51,51,1,0,0,26.005665,26.005665,0,0,.05,0,0,0,0,0,0,0,0,7.2000852,0,58.15,52.91,50.99,49.74,8.333333333333334,2,3,0,0,11,8,5,1,146.5,489903.13,85419.922,281298.56,0,0,0,3983.5815 +12973,15824,28241,28240,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.8759112,7.0645032,0,35,-3,-121.4716,0,3,3,2021,12,1,17,40,1,1,0,7.6523824,7.6523824,0,0,0,0,0,0,0,2,0,0,0,4.07728,0,50.99,49.74,58.15,52.91,8.333333333333334,2,3,0,0,11,8,5,1,146.5,489903.13,85419.922,281298.56,0,0,0,3983.5815 +12973,15825,28242,-9,28241,28240,1,0,25,0,0,0,1,1,-9,0,3,9.1273546,8.9534616,0,0,0,-1105.2173,0,2,2,2021,14,2,38,38,1,2,1,30.124126,30.124126,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,2,3,0,0,3,8,5,1,809,-88972.82,0,0,0,0,0,3629.8584 +12973,15826,28243,-9,28241,28240,1,0,25,0,0,0,1,1,-9,0,4,8.4959831,8.4035492,0,0,0,-941.71558,0,2,2,2021,9,0,43,43,1,0,1,14.188898,14.188898,.05,.05,0,0,0,0,0,0,0,0,0,.50051707,0,51.83,57.2,-9,-9,8.333333333333334,2,3,0,0,4,8,5,1,336,64976.078,-188386.61,0,0,0,0,1770.948 +12973,15827,28244,-9,28241,28240,1,0,19,0,0,0,2,2,-9,0,3,0,0,0,0,0,-860.06818,1,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4209769,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,0,8,1,1,387,43839.348,0,0,0,0,296.87524,-206.40546 +12974,15828,28245,-9,28246,-9,1,1,16,0,0,1,3,0,-9,0,4,0,0,0,0,0,-909.26538,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,0,0,0,6,2,1,1495,146505.84,0,0,0,0,-370.13428,965.06189 +12974,15828,28246,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,4.7569308,4.7943225,0,0,0,-1000.2703,0,-9,-9,2021,15,4,60,10,1,4,0,.2481197,.2481197,0,0,0,0,0,0,0,0,1,1,0,0,0,34.29,33.04,-9,-9,5,3,4,0,1,12,6,2,1,1495,146505.84,0,0,0,0,-370.13428,965.06189 +12975,15829,28247,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,3,0,5.0581713,5.3335519,0,0,-1002.0981,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2868729,5.2482862,62.77,34.54,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,244,245136.17,77974.609,81404.102,0,0,0,693.24707 +12976,15830,28248,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,5,0,7.2371664,7.2500129,0,0,-961.91693,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.3788829,0,26.344048,0,1,1,0,7.0579739,7.6528683,66.23999999999999,42.66,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,228,86568.242,29134.33,52673.727,0,0,0,2264.3889 +12977,15831,28249,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1015.7218,0,2,2,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.16,44.66,-9,-9,3.333333333333333,1,1,0,0,9,13,1,0,113,-249917.48,0,0,0,0,0,621.59003 +12977,15832,28250,-9,-9,-9,1,1,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-912.508,0,-9,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.92,56.25,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,146,-32451.525,-136683.73,159169.55,109705.77,0,2395.895,1066.9171 +12978,15833,28251,28253,-9,-9,1,0,62,0,1,0,2,2,-9,0,3,7.975266,8.3976269,5.2864046,6,9,28.665257,0,3,2,2021,11,2,16,16,1,2,0,24.678699,24.678699,0,0,0,0,0,0,0,0,1,1,0,4.6214514,5.1621976,43.6,40.88,40.14,38.19,8.333333333333334,1,1,0,0,6,12,4,1,521.66669,1069586.6,830761.5,270856,85497.281,2869.5586,0,3121.9241 +12978,15833,28252,-9,28251,28253,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1110.3756,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,521.66669,1069586.6,830761.5,270856,85497.281,2869.5586,0,3121.9241 +12978,15833,28253,28251,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,8.1279316,8.0649099,0,6,0,14.779771,0,2,1,2021,20,8,39,39,1,8,0,11.222528,11.222528,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.14,38.19,43.6,40.88,6.666666666666667,1,1,0,1,6,12,4,1,521.66669,1069586.6,830761.5,270856,85497.281,2869.5586,0,3121.9241 +12979,15834,28254,28255,-9,-9,1,0,65,0,0,0,3,3,-9,1,4,0,0,0,7,-3,0,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.06,53.47,60.12,54.8,0,1,1,0,0,0,13,1,1,735.5,337813.25,26423.84,195012.63,0,0,0,1774.1976 +12979,15834,28255,28254,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,0,0,7,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,63.06,53.47,10,1,1,0,0,7,13,1,1,735.5,337813.25,26423.84,195012.63,0,0,0,1774.1976 +12979,15835,28256,-9,28254,28255,1,1,26,0,0,0,2,2,1,0,5,7.853054,7.8163252,0,0,0,-1007.2885,-9,3,3,2021,12,4,40,0,1,4,0,7.5189142,7.5189142,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,1,1,0,0,4,13,3,1,116,192209.28,0,0,0,0,0,1856.8369 +12980,15836,28257,-9,28260,28259,1,0,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-926.55786,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12980,15836,28258,-9,28260,28259,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-920.3938,-9,1,3,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12980,15836,28259,28260,-9,-9,1,1,45,0,2,0,3,3,-9,0,4,6.1468253,6.1753397,0,12,-1,-72.409462,0,3,2,2021,8,0,40,-9,1,0,0,1.3114958,1.3114958,0,0,0,0,0,0,0,7,0,0,0,6.4985309,0,48.87,58.55,57.16,56.15,10,1,1,0,0,4,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12980,15836,28260,28259,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,7.345067,7.1096196,0,12,1,-50.091793,0,2,2,2021,7,0,40,-9,1,0,0,3.4836049,3.4836049,0,0,0,0,0,0,0,2,0,0,0,7.2577839,0,57.16,56.15,48.87,58.55,8.333333333333334,1,1,0,0,12,2,2,1,527.25,10460.309,0,84658.211,0,0,11575.572,2090.8013 +12981,15837,28261,28262,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.667346,7.5279179,49,-4,140.8849,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4447584,7.5979857,57.06,57.76,60.12,54.8,8.333333333333334,1,1,0,0,0,2,4,1,767,1689243,877886.38,842266.5,0,0,0,4440.9512 +12981,15837,28262,28261,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,8.2273712,8.228447,49,4,77.403313,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.765316,8.1346283,60.12,54.8,57.06,57.76,10,1,1,0,0,0,2,4,1,767,1689243,877886.38,842266.5,0,0,0,4440.9512 +12982,15838,28263,28264,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,47,-1,-24.338875,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.827558,0,57.33,53.46,57.06,57.76,5,1,1,0,0,0,7,3,1,552.5,1532511.5,1003749,358686.13,0,3910.2705,0,2165.397 +12982,15838,28264,28263,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,7.9224944,8.0736399,47,1,56.669159,0,2,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,3.7556086,7.851892,57.06,57.76,57.33,53.46,8.333333333333334,1,1,0,0,5,7,3,1,552.5,1532511.5,1003749,358686.13,0,3910.2705,0,2165.397 +12983,15839,28265,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,5.723918,5.6847601,0,0,-961.91632,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.1372724,57.69,37.47,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,701,292360.34,213244.09,261175.94,0,0,0,836.24335 +12984,15840,28266,28267,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.173737,6.2997141,9,-2,80.763237,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.41077501,6.4781599,53.99,48.04,45.18,44.04,8.333333333333334,1,1,0,0,0,7,4,1,1228.5,929193.5,584767.88,364155.44,0,0,401.97537,3670.3728 +12984,15840,28267,28266,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.0477991,8.0501471,9,2,65.227859,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8238211,8.2159176,45.18,44.04,53.99,48.04,10,1,1,0,0,0,7,4,1,1228.5,929193.5,584767.88,364155.44,0,0,401.97537,3670.3728 +12985,15841,28268,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,7.0882015,7.036231,0,0,-1101.5261,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.469214,50.34,30.88,-9,-9,10,1,1,0,0,0,12,3,0,318,421323.69,177458.27,0,0,0,0,1454.7261 +12986,15842,28269,-9,-9,-9,1,0,43,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1126.1279,0,-9,-9,2021,23,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.91,33.56,-9,-9,0,1,1,1,0,0,1,1,0,1517,0,0,0,0,0,0,1457.0366 +12987,15843,28270,28271,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,7.7010531,7.8961201,5.8169713,49,4,34.61586,0,3,3,2021,6,0,50,60,1,0,0,5.5946317,5.5946317,.05,.05,0,0,0,0,0,0,1,1,0,5.8584037,5.8005638,57.33,53.46,40.31,40.07,8.333333333333334,1,1,0,0,11,7,4,1,942,588575,121305.78,466512.19,0,532.04327,0,4506.0137 +12987,15843,28271,28270,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,7.7210507,7.7499471,0,49,-4,-24.202551,0,3,2,2021,17,5,60,60,1,5,0,3.93187,3.93187,0,0,0,0,0,0,0,0,1,1,0,5.9107141,0,40.31,40.07,57.33,53.46,5,1,1,0,0,11,7,4,1,942,588575,121305.78,466512.19,0,532.04327,0,4506.0137 +12988,15844,28272,-9,-9,-9,1,1,64,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1081.2538,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,0,0,9,2,1,203,57604.777,0,0,0,0,2494.5679,0 +12988,15845,28273,-9,-9,-9,1,1,62,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1020.524,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,49.66,18.67,-9,-9,1.666666666666667,1,1,0,1,0,9,2,1,984,-95880.578,0,0,0,0,0,374.80249 +12989,15846,28274,28275,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.1805444,7.2349219,0,5,-8,-56.819172,0,3,2,2021,13,3,20,26,1,3,0,7.664362,7.664362,0,0,0,0,0,0,0,2,0,0,0,6.4569573,0,48.77,60.16,63.09,47.92,8.333333333333334,1,1,0,0,14,4,3,1,591.5,429909.47,152430.47,220720.06,0,0,0,1052.7054 +12989,15846,28275,28274,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.3776388,7.3566513,5,8,44.864391,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.8889717,7.4002109,63.09,47.92,48.77,60.16,10,1,1,0,0,6,4,3,1,591.5,429909.47,152430.47,220720.06,0,0,0,1052.7054 +12990,15847,28276,-9,28277,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-961.99036,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,1,244,43849.012,50503.348,119254.91,82004.016,0,0,2364.1306 +12990,15847,28277,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,8.5801153,8.6859722,0,0,0,-1053.0173,0,2,3,2021,11,2,37,30,1,2,0,15.377899,15.377899,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,1,9,9,4,1,244,43849.012,50503.348,119254.91,82004.016,0,0,2364.1306 +12990,15847,28278,-9,28277,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1051.1642,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,244,43849.012,50503.348,119254.91,82004.016,0,0,2364.1306 +12991,15848,28279,-9,28280,28281,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.7865,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,594,650782.88,353788,282924.19,24981.918,0,0,2550.6653 +12991,15848,28280,28281,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.6586919,8.029603,0,7,3,120.11684,0,1,1,2021,12,0,38,38,1,0,0,7.2085462,7.2085462,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.98,59.35,46.39,60.99,6.666666666666667,1,1,0,0,7,2,4,1,594,650782.88,353788,282924.19,24981.918,0,0,2550.6653 +12991,15848,28281,28280,-9,-9,1,1,47,0,1,0,1,1,-9,0,4,8.2948475,8.5246534,0,7,-3,-106.62429,0,1,1,2021,5,0,36,40,1,0,0,17.265253,17.265253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,46.98,59.35,8.333333333333334,1,1,0,0,8,2,4,1,594,650782.88,353788,282924.19,24981.918,0,0,2550.6653 +12991,15849,28282,-9,28280,28281,1,1,20,0,1,1,2,0,0,0,5,0,0,0,0,0,-1071.4142,-9,2,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.3,59.89,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,531,-105205.45,0,0,0,-562.29645,0,0 +12992,15850,28283,28284,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,4.1107688,4.8230376,56,-6,-23.431355,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.2299848,57.89,19.53,49.35,36.82,8.333333333333334,1,1,0,0,0,5,2,0,498,104263.82,30633.039,119359.68,0,0,0,1583.1196 +12992,15850,28284,28283,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,0,0,9,6,35.583229,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,49.35,36.82,57.89,19.53,6.666666666666667,1,1,0,0,0,5,2,0,498,104263.82,30633.039,119359.68,0,0,0,1583.1196 +12993,15851,28285,28286,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,0,0,0,2,2,64.467896,1,-9,-9,2021,12,1,0,45,2,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.52,56.95,40.83,59.68,3.333333333333333,1,1,0,0,4,11,3,0,770,50322.051,-24991.783,0,0,4704.9775,0,1257.5394 +12993,15851,28286,28285,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,7.67766,7.3647499,0,2,-2,-32.119808,0,-9,-9,2021,13,3,33,33,1,3,0,5.7086091,5.7086091,0,0,0,0,0,0,0,2,1,1,0,0,0,40.83,59.68,49.52,56.95,10,1,1,0,0,2,11,3,0,770,50322.051,-24991.783,0,0,4704.9775,0,1257.5394 +12994,15852,28287,28288,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,7.3862767,7.0002785,64,1,-81.323395,0,3,3,2021,27,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2609529,33.42,46.88,41.72,51.08,3.333333333333333,1,1,0,1,3,13,2,1,655.5,761782.25,207734.55,390272.63,0,0,0,1168.9861 +12994,15852,28288,28287,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,64,-1,5.1664934,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,2.205596,0,0,1,1,0,0,0,41.72,51.08,33.42,46.88,5,1,1,0,0,10,13,2,1,655.5,761782.25,207734.55,390272.63,0,0,0,1168.9861 +12995,15853,28289,28291,-9,-9,1,1,36,0,2,0,2,2,-9,0,5,7.970459,7.9321966,0,8,-7,-110.37013,0,-9,-9,2021,7,0,60,55,1,0,0,5.2215958,5.2215958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.99,49.19,6.666666666666667,1,1,0,0,8,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12995,15853,28290,-9,28291,28289,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1030.8531,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12995,15853,28291,28289,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.8179455,8.001791,0,8,7,-54.476093,0,2,3,2021,12,1,32,46,1,1,0,6.2343254,6.2343254,0,0,0,0,0,0,0,0,1,1,0,.26373643,0,48.99,49.19,51.73,58.82,8.333333333333334,1,1,0,1,9,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12995,15853,28292,-9,28291,28289,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.34027,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,357,79065.328,43227.148,219198.41,144099.58,7371.9385,0,1915.3344 +12996,15854,28293,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,4.074379,4.5133486,0,0,-1048.4592,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.6409492,52,47,-9,-9,7,1,1,0,0,0,13,2,0,740,-186738.56,95951.945,0,0,0,0,1665.8407 +12997,15855,28294,-9,-9,-9,1,0,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-862.46094,0,-9,-9,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.48,25.61,-9,-9,10,1,1,0,0,0,2,1,0,679,110728.79,72652.781,0,0,914.44043,0,1725.5295 +12998,15856,28295,28296,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.3164864,8.2829256,0,12,-7,-107.02058,0,2,3,2021,11,0,43,38,1,0,0,11.955667,11.955667,.05,.05,0,0,0,0,0,2,0,0,0,0,0,52.54,52.91,56.58,39.93,8.333333333333334,1,1,0,0,13,11,4,1,246.5,1226316.5,1048444.1,166615.92,14519.229,32981.703,0,2424.3149 +12998,15856,28296,28295,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,7.6273088,8.0221491,0,12,7,25.461103,0,-9,-9,2021,13,1,25,27,1,1,0,7.8597794,7.8597794,.05,.05,0,0,0,0,0,2,0,0,0,0,0,56.58,39.93,52.54,52.91,8.333333333333334,1,1,0,0,12,11,4,1,246.5,1226316.5,1048444.1,166615.92,14519.229,32981.703,0,2424.3149 +12999,15857,28297,28298,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.4330401,7.5392594,5.3271642,37,-3,.011072217,0,2,2,2021,16,4,19,19,1,4,0,8.2128849,8.2128849,.05,.05,0,0,0,0,0,2,0,0,0,5.0148301,5.4149723,31.67,59.57,49.3,59.89,3.333333333333333,1,1,0,0,12,5,5,1,2009.5,2552766,1628008.1,575421,0,0,0,3607.522 +12999,15857,28298,28297,-9,-9,1,1,59,0,0,0,2,2,-9,0,5,8.8801107,8.8682251,6.8106341,37,3,-16.321356,0,-9,-9,2021,10,0,48,45,1,0,0,14.495288,14.495288,.05,.05,0,0,0,0,0,2,0,0,0,6.1585546,7.2308717,49.3,59.89,31.67,59.57,5,1,1,0,0,12,5,5,1,2009.5,2552766,1628008.1,575421,0,0,0,3607.522 +13000,15858,28299,28300,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,9.0481253,8.9884214,14,2,60.795883,0,3,3,2021,14,3,0,0,4,3,0,0,0,.05,.05,0,1,3.8182051,0,16.903364,7,1,1,0,9.2106361,8.5818844,38.89,16.47,27.15,39.31,6.666666666666667,1,1,0,0,1,2,5,1,458.5,2080911.8,1093826.1,435184.31,0,731.06354,0,10428.829 +13000,15858,28300,28299,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,3.8887091,3.5527825,14,-2,-150.88931,0,3,2,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,1.8491652,8.0305338,25.130144,7,1,1,0,4.1880212,3.4057541,27.15,39.31,38.89,16.47,3.333333333333333,1,1,0,0,0,2,5,1,458.5,2080911.8,1093826.1,435184.31,0,731.06354,0,10428.829 +13001,15859,28301,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,7.8789725,7.6629968,0,0,0,-889.8924,0,3,2,2021,19,8,40,82,1,8,0,6.8094401,6.8094401,0,0,0,0,0,0,0,0,1,1,0,0,0,37.39,37.24,-9,-9,3.333333333333333,1,1,0,0,9,2,3,0,313.5,160981.09,91949.727,86884.875,0,0,0,1391.282 +13001,15859,28302,-9,28301,-9,1,0,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-937.14014,-9,1,-9,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.02,57.99,-9,-9,3.333333333333333,1,1,0,0,0,2,3,0,313.5,160981.09,91949.727,86884.875,0,0,0,1391.282 +13001,15860,28303,-9,28301,-9,1,0,21,0,0,1,2,0,0,0,2,0,0,0,0,0,-881.57031,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.77,39.62,-9,-9,8.333333333333334,1,1,0,0,3,2,1,0,345,-166957.53,0,0,0,0,0,201.63133 +13002,15861,28304,28305,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,6.198688,6.2834587,60,-3,-48.78479,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.1509271,0,24.400599,0,1,1,0,1.7800702,6.4745183,61.27,46.03,60.12,54.8,8.333333333333334,1,1,0,0,6,10,2,1,1388,172444.67,182441.88,0,0,2224.1487,0,4089.8774 +13002,15861,28305,28304,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,6.5084276,6.824841,60,3,-74.372879,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,3.9726532,0,24.293896,0,1,1,0,8.119566,6.575192,60.12,54.8,61.27,46.03,10,1,1,0,0,6,10,2,1,1388,172444.67,182441.88,0,0,2224.1487,0,4089.8774 +13003,15862,28306,28307,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.4176855,9.7669039,6.8036532,9,-1,10.858534,0,-9,-9,2021,9,0,42,60,1,0,0,37.832958,37.832958,.05,.05,0,0,0,0,0,0,0,0,0,7.9778337,6.7802987,54.96,53.17,54.96,53.17,8.333333333333334,1,1,0,0,12,1,5,1,495,3171599.3,2653603,227502.61,0,0,0,7867.9741 +13003,15862,28307,28306,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.8443952,7.7075691,0,16,1,70.994331,0,3,2,2021,7,0,55,60,1,0,0,5.5925903,5.5925903,.05,.05,0,0,0,0,0,0,0,0,0,4.7937732,0,54.96,53.17,54.96,53.17,10,1,1,0,0,10,1,5,1,495,3171599.3,2653603,227502.61,0,0,0,7867.9741 +13004,15863,28308,-9,-9,-9,1,1,85,0,0,0,1,1,-9,0,2,0,7.8743176,7.4458795,0,0,-940.22931,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5537119,35.48,38.25,-9,-9,5,1,1,0,0,0,9,4,1,962,33609.539,-80076.055,0,0,0,0,2986.0486 +13005,15864,28309,28310,-9,-9,1,1,60,0,0,0,2,2,-9,1,2,0,2.7233593,2.9084277,4,4,99.826042,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,2.8336711,57.59,25.39,58.92,43.05,8.333333333333334,1,1,0,0,0,6,2,0,250.5,209486.78,118468.31,150820.66,0,7972.5625,0,2392.8037 +13005,15864,28310,28309,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,6.9804029,6.8499103,4,-4,-21.378031,0,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0319157,58.92,43.05,57.59,25.39,8.333333333333334,1,1,0,0,0,6,2,0,250.5,209486.78,118468.31,150820.66,0,7972.5625,0,2392.8037 +13006,15865,28311,28312,-9,-9,1,1,85,0,0,0,2,2,-9,0,2,0,6.3206034,6.8831072,66,-1,-34.389782,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.9201183,6.0847988,45.73,39.34,48.94,30.52,5,1,1,0,0,0,2,2,1,556,735344.69,98496.516,176364.8,0,0,0,1392.2485 +13006,15865,28312,28311,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,6.4580026,5.9433455,66,1,61.281734,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,5.375484,0,0,1,1,0,5.2606201,6.2950296,48.94,30.52,45.73,39.34,5,1,1,0,0,0,2,2,1,556,735344.69,98496.516,176364.8,0,0,0,1392.2485 +13006,15866,28313,-9,28312,28311,1,1,54,0,0,0,1,1,-9,0,3,7.8661389,8.1434679,0,0,0,-1004.5386,0,3,2,2021,9,0,47,40,1,0,0,6.5101285,6.5101285,.05,.05,0,0,0,0,0,2,1,1,0,1.3650774,0,52.15,48.98,-9,-9,3.333333333333333,1,1,0,0,2,2,4,1,395,29768.748,39457.453,24893.389,0,0,788.17914,974.46667 +13007,15867,28314,28315,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,0,0,0,2,6,-66.335709,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,17.51,65.2,45.91,59.89,1.666666666666667,1,1,1,0,0,4,5,0,1012.5,160223.39,68926.922,227293.83,180580.47,7048.5547,0,4203.4849 +13007,15867,28315,28314,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.3861456,9.2455568,0,2,-6,12.233291,0,-9,-9,2021,11,2,40,40,1,2,0,42.535164,42.535164,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,17.51,65.2,6.666666666666667,1,1,0,0,10,4,5,0,1012.5,160223.39,68926.922,227293.83,180580.47,7048.5547,0,4203.4849 +13008,15868,28316,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.8255568,7.2228384,0,0,-1009.4933,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2620368,6.8425574,57.91,48.98,-9,-9,8.333333333333334,1,1,0,0,6,9,2,1,644,340344.91,104929.58,333527.38,0,0,0,1083.9329 +13009,15869,28317,28318,-9,-9,1,0,36,0,1,0,2,2,-9,0,1,7.1804695,7.042017,0,10,-2,65.780434,0,-9,-9,2021,20,8,30,30,1,8,0,4.3043761,4.3043761,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.08,44.19,47.15,55.39,6.666666666666667,1,1,0,0,13,4,4,1,629.33331,80699.414,33276.719,0,0,5508.6128,0,3063.3469 +13009,15869,28318,28317,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.760994,8.8615999,0,10,2,-30.584867,0,-9,-9,2021,12,0,53,58,1,0,0,16.4438,16.4438,.05,.05,0,0,0,0,0,0,0,0,0,.75994551,0,47.15,55.39,40.08,44.19,8.333333333333334,1,1,0,0,15,4,4,1,629.33331,80699.414,33276.719,0,0,5508.6128,0,3063.3469 +13009,15869,28319,-9,28317,28318,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-958.052,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,4,4,1,629.33331,80699.414,33276.719,0,0,5508.6128,0,3063.3469 +13010,15870,28320,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-990.3371,0,3,3,2021,29,9,0,0,4,9,0,0,0,0,0,0,1,2.1009414,0,16.956966,0,1,1,0,0,0,32.49,43.65,-9,-9,1.666666666666667,1,1,0,1,0,13,1,0,928,170529.02,0,299655.69,7756.6157,0,0,1653.0557 +13011,15871,28321,-9,28322,28323,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1015.3987,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,5,1,421.33334,134215.92,-6528.2549,522719.38,368768,41112.59,20561.186,6414.6455 +13011,15871,28322,28323,-9,-9,1,0,44,0,1,0,1,1,-9,0,4,8.9650536,9.1683979,0,20,0,1.1941054,0,2,2,2021,9,0,74,40,1,0,0,12.965687,12.965687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.82,53.97,8.333333333333334,1,1,0,0,7,12,5,1,421.33334,134215.92,-6528.2549,522719.38,368768,41112.59,20561.186,6414.6455 +13011,15871,28323,28322,-9,-9,1,1,44,0,1,0,1,1,-9,0,4,9.3143253,9.4235487,0,20,0,44.930965,0,3,2,2021,11,1,50,47,1,1,0,24.090654,24.090654,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,51.83,57.2,6.666666666666667,1,1,0,0,11,12,5,1,421.33334,134215.92,-6528.2549,522719.38,368768,41112.59,20561.186,6414.6455 +13012,15872,28324,28325,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,9.7711926,9.860877,0,2,3,63.081348,0,2,3,2021,12,0,55,55,1,0,0,28.33086,28.33086,.05,.05,0,0,0,0,0,0,1,1,0,5.5150599,0,57.33,53.46,45.49,50.81,8.333333333333334,1,1,0,0,14,12,5,0,708,237815.59,24440.621,0,0,1569.8698,3132.6287,10556.07 +13012,15872,28325,28324,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.372529,8.5478945,0,2,-3,63.972317,0,-9,-9,2021,18,6,40,42,1,6,0,11.8568,11.8568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.49,50.81,57.33,53.46,6.666666666666667,1,1,0,0,2,12,5,0,708,237815.59,24440.621,0,0,1569.8698,3132.6287,10556.07 +13013,15873,28326,28327,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.0316038,8.2021866,0,6,-1,16.547304,0,3,3,2021,21,8,35,35,1,8,0,8.3383141,8.3383141,0,0,0,0,0,0,0,0,0,0,0,4.9638352,0,35.63,62.19,34.5,46.81,8.333333333333334,1,1,0,0,7,11,4,1,821,562795.5,328218.72,335762.5,52215.484,0,0,2479.9448 +13013,15873,28327,28326,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,8.0925713,8.2428713,0,6,1,54.948116,0,3,3,2021,18,6,37,37,1,6,0,13.209234,13.209234,.05,.05,0,0,0,0,0,0,0,0,0,4.9734778,0,34.5,46.81,35.63,62.19,3.333333333333333,1,1,0,0,7,11,4,1,821,562795.5,328218.72,335762.5,52215.484,0,0,2479.9448 +13014,15874,28328,-9,28329,28330,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.00562,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13014,15874,28329,28330,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,9.1705818,9.0059013,0,23,-7,39.054493,0,2,2,2021,10,0,42,49,1,0,0,30.575525,30.575525,0,0,0,0,0,0,0,0,0,0,0,.33275139,0,45.49,58.84,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13014,15874,28330,28329,-9,-9,1,1,49,0,2,0,1,1,-9,0,4,8.6038866,8.4796047,0,20,7,100.29058,0,-9,-9,2021,11,0,36,41,1,0,0,14.271504,14.271504,.05,.05,0,0,0,0,0,0,0,0,0,2.0058341,0,57.16,56.15,45.49,58.84,8.333333333333334,1,1,0,0,9,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13014,15874,28331,-9,28329,28330,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-857.40906,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,8,5,1,380.5,2771142.8,1147364.8,1498437.3,240143.34,0,0,5185.5869 +13015,15875,28332,-9,28333,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.7944,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1372.3334,49802.43,110550.25,234850.09,160639.53,3759.2546,0,2582.6653 +13015,15875,28333,-9,-9,-9,1,0,37,0,2,0,1,1,-9,0,5,8.0848999,8.4988251,6.0009379,0,0,-1020.8077,0,1,2,2021,7,0,37,37,1,0,0,17.313507,17.313507,.05,.05,0,0,0,0,0,0,1,1,0,5.8245435,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,6,13,4,1,1372.3334,49802.43,110550.25,234850.09,160639.53,3759.2546,0,2582.6653 +13015,15875,28334,-9,28333,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.9503,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,1372.3334,49802.43,110550.25,234850.09,160639.53,3759.2546,0,2582.6653 +13016,15876,28335,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,0,0,-987.19061,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,41.32,24.55,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,814,15088.849,0,54077.813,22711.373,2517.3435,0,2195.198 +13017,15877,28336,28337,-9,-9,1,0,22,0,0,0,1,1,1,0,3,8.1813898,8.307909,0,1,-4,36.469772,-9,-9,-9,2021,7,2,11,0,1,2,0,37.328983,37.328983,.05,.05,0,0,0,0,0,0,0,0,0,.27444723,0,42,54,54.37,54.8,8.333333333333334,1,1,0,0,6,2,5,0,1068,-139025.25,94207.422,0,0,26042.947,-79.818588,2944.7051 +13017,15877,28337,28336,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.2965899,8.147893,0,1,4,14.098825,-9,-9,-9,2021,6,0,39,0,1,0,0,12.278555,12.278555,.05,.05,0,0,0,0,0,0,0,0,0,5.0007377,0,54.37,54.8,42,54,8.333333333333334,1,1,0,0,4,2,5,0,1068,-139025.25,94207.422,0,0,26042.947,-79.818588,2944.7051 +13018,15878,28338,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.3667283,7.4151487,0,0,0,-1098.8868,0,3,3,2021,14,2,45,35,1,2,0,4.7784719,4.7784719,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,10,10,3,0,941,65208.285,-37643.68,68482.867,27838.158,0,0,362.40427 +13019,15879,28339,28340,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,3.9949379,3.8179502,8,5,-.67039311,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,123.3922,0,0,1,1,0,3.4576485,3.8555977,54,46,51,46,8,1,1,0,0,0,2,2,1,463,44783.457,0,141995.78,0,0,0,2559.6992 +13019,15879,28340,28339,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,8,-5,4.9932184,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51,46,54,46,7,1,1,0,0,0,2,2,1,463,44783.457,0,141995.78,0,0,0,2559.6992 +13020,15880,28341,-9,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1126.2239,0,3,3,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,16.46,-9,-9,0,1,1,0,0,0,13,1,0,627,286505.06,0,196576.2,58693.387,0,0,1134.3551 +13021,15881,28342,-9,28344,-9,1,1,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-991.31714,-9,2,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.35,59.64,-9,-9,8.333333333333334,2,3,0,0,1,2,3,0,404.66666,125410.02,-15094.326,0,0,36.119389,-211.34172,2164.3538 +13021,15881,28343,-9,28344,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1052.9097,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39,45,-9,-9,5,2,3,-9,0,0,2,3,0,404.66666,125410.02,-15094.326,0,0,36.119389,-211.34172,2164.3538 +13021,15881,28344,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.6373763,7.6880841,0,0,0,-1126.7511,-9,2,3,2021,28,12,35,0,1,12,0,7.4041038,7.4041038,.05,.05,0,0,0,0,0,2,1,0,1,0,0,18,56.93,-9,-9,0,2,3,0,1,8,2,3,0,404.66666,125410.02,-15094.326,0,0,36.119389,-211.34172,2164.3538 +13022,15882,28345,28346,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,8.8692579,8.8781404,0,8,-5,25.986723,0,-9,-9,2021,10,0,45,50,1,0,0,14.626893,14.626893,.05,.05,0,0,0,0,0,0,0,0,0,3.2851791,0,51.66,54.88,31.95,55.47,5,1,1,0,0,12,6,5,1,835.5,-31017.211,140626.63,139679.31,88997.617,19053.443,0,4482.1514 +13022,15882,28346,28345,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,7.3487968,7.6040807,0,8,5,-68.918442,0,-9,-9,2021,10,2,20,0,1,2,0,10.240412,10.240412,.05,.05,0,0,0,0,0,0,0,0,0,3.758975,0,31.95,55.47,51.66,54.88,10,1,1,0,0,9,6,5,1,835.5,-31017.211,140626.63,139679.31,88997.617,19053.443,0,4482.1514 +13023,15883,28347,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1070.8533,0,2,2,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,50,49,-9,-9,7,3,4,1,0,0,8,2,0,403,154337.17,0,0,0,0,0,0 +13024,15884,28348,28349,-9,-9,1,1,46,0,1,0,3,3,-9,0,4,0,0,0,21,0,-42.182308,0,3,2,2021,0,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.0481787,0,60.12,54.8,62.18,36.18,8.333333333333334,1,1,1,0,10,13,3,1,1514.3334,600105.94,552941.5,163344.45,63735.629,0,0,1567.1627 +13024,15884,28349,28348,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.2011805,8.3577642,0,21,0,72.591095,0,2,2,2021,6,0,30,30,1,0,0,15.790669,15.790669,0,0,0,0,0,0,0,0,1,1,0,0,0,62.18,36.18,60.12,54.8,8.333333333333334,1,1,0,0,10,13,3,1,1514.3334,600105.94,552941.5,163344.45,63735.629,0,0,1567.1627 +13024,15884,28350,-9,28349,28348,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-994.36603,-9,2,3,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,3,1,1514.3334,600105.94,552941.5,163344.45,63735.629,0,0,1567.1627 +13025,15885,28351,-9,28353,28352,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.38123,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,5,1,370,1678376.3,815766.94,876328.81,0,0,0,6366.624 +13025,15885,28352,28353,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,7.2605906,8.2995863,7.9907355,23,3,-82.570854,0,-9,-9,2021,6,0,20,20,1,0,0,6.3223877,6.3223877,.05,.05,.05,0,0,0,0,0,1,1,0,8.4458971,0,54.1,59.11,22.15,60.02,6.666666666666667,1,1,0,0,9,8,5,1,370,1678376.3,815766.94,876328.81,0,0,0,6366.624 +13025,15885,28353,28352,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.0907745,9.2186766,0,23,-3,102.08162,0,-9,-9,2021,35,12,49,49,1,12,0,22.112329,22.112329,0,0,0,0,0,0,0,0,1,1,0,5.202177,0,22.15,60.02,54.1,59.11,1.666666666666667,2,3,0,0,12,8,5,1,370,1678376.3,815766.94,876328.81,0,0,0,6366.624 +13026,15886,28354,-9,-9,-9,1,1,38,0,0,0,1,1,1,0,3,9.586977,9.4535236,0,0,0,-1102.8464,-9,2,2,2021,9,2,76,0,1,2,0,24.481323,24.481323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.53,47.65,-9,-9,5,2,3,0,0,6,7,5,1,719,404467.38,89303.664,446532,302183.47,0,0,3743.075 +13027,15887,28355,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.7240968,5.5316257,0,0,-954.75085,0,3,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8729584,6.080708,49.1,20.13,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,2679,100285.99,6564.7651,46804.695,0,0,0,1403.2947 +13028,15888,28356,28357,-9,-9,1,1,89,0,0,0,3,3,-9,0,3,0,5.3207674,4.6596971,10,3,151.09265,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,28.008234,0,0,1,1,0,0,5.2313433,55,45,59.61,41.45,8,1,1,0,0,0,2,2,1,671.5,88223.242,67863.078,0,0,0,0,657.13977 +13028,15888,28357,28356,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,0,0,10,-3,62.914814,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,18.606577,0,0,1,1,0,0,0,59.61,41.45,55,45,8.333333333333334,1,1,0,0,7,2,2,1,671.5,88223.242,67863.078,0,0,0,0,657.13977 +13029,15889,28358,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1186.7552,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,2.0661166,3.3567562,23.728153,0,1,1,0,0,0,30.24,36.75,-9,-9,3.333333333333333,4,2,0,0,0,8,2,1,576,434898.47,0,331759.44,0,0,0,1100.2452 +13030,15890,28359,28360,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,6.3931522,6.5355167,48,-2,-150.16747,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7390034,5.8071752,54.2,57.49,54.18,50.75,8.333333333333334,1,1,0,0,4,6,3,1,524.5,949747.75,428602.81,340413,0,0,0,2770.5474 +13030,15890,28360,28359,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.1617861,7.8035808,48,2,-26.551149,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5189576,54.18,50.75,54.2,57.49,8.333333333333334,1,1,0,0,8,6,3,1,524.5,949747.75,428602.81,340413,0,0,0,2770.5474 +13031,15891,28361,28362,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,6.8554511,6.8088226,0,2,9,103.5663,0,-9,-9,2021,9,0,45,35,1,1,0,2.7607214,2.7607214,.05,.05,0,0,0,0,0,0,0,0,0,7.5409913,0,51,56,51.83,57.2,8,1,1,0,0,4,9,3,0,347.5,124473.39,66430.117,0,0,7598.4688,0,2515.9248 +13031,15891,28362,28361,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,7.5041409,8.1728258,0,2,0,69.724426,0,2,3,2021,8,2,40,55,1,2,0,7.4098678,7.4098678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,51,56,8.333333333333334,1,1,0,0,6,9,3,0,347.5,124473.39,66430.117,0,0,7598.4688,0,2515.9248 +13032,15892,28363,-9,-9,-9,1,1,45,0,0,0,2,2,-9,1,2,0,0,0,0,0,-933.91559,0,3,2,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,32.79,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,374,-75797.969,0,0,0,0,0,1972.2633 +13033,15893,28364,28365,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.712903,8.6780109,0,14,-12,43.251831,0,2,3,2021,12,0,65,0,1,0,0,11.440138,11.440138,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,54.96,53.17,6.666666666666667,1,1,0,0,12,7,5,1,269.5,1180339.5,427563.47,450322.06,17512.996,-2213.4802,4979.0332,4216.9907 +13033,15893,28365,28364,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.4579716,8.5069313,0,13,12,41.70013,0,2,2,2021,6,0,62,60,1,0,0,9.5786963,9.5786963,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,54.96,53.17,43.54,59.6,8.333333333333334,1,1,0,0,13,7,5,1,269.5,1180339.5,427563.47,450322.06,17512.996,-2213.4802,4979.0332,4216.9907 +13034,15894,28366,-9,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.4067879,8.8923712,6.9374194,0,0,-1003.8091,0,-9,-9,2021,7,0,38,40,1,0,0,13.078477,13.078477,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0627389,55.09,55.87,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,5930,187098.13,45804.938,293751.31,98721.273,6114.5493,0,1608.5215 +13034,15895,28367,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,7.3076162,7.611403,6.8106012,0,0,-1105.2698,0,-9,-9,2021,23,11,30,27,1,11,0,5.4985805,5.4985805,.05,.05,0,0,0,0,0,0,0,0,0,7.2196202,6.53195,29.54,47.61,-9,-9,3.333333333333333,1,1,0,0,10,8,3,1,457,22173.154,-37407,0,0,0,0,1456.052 +13035,15896,28368,28369,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,53,-5,16.782459,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,49.03,34.15,10,1,1,0,0,0,7,2,0,1233,1098447.1,84519.672,840921.38,26879.816,0,0,1759.7889 +13035,15896,28369,28368,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.6942701,5.7782454,53,5,-53.079556,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5288882,49.03,34.15,57.73,54.53,8.333333333333334,1,1,0,0,7,7,2,0,1233,1098447.1,84519.672,840921.38,26879.816,0,0,1759.7889 +13036,15897,28370,28371,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.4482427,7.5633097,6,-5,8.3138256,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4424958,7.3892069,54.37,54.8,38.75,48.22,8.333333333333334,1,1,0,0,2,11,2,1,606,594142.75,283347.19,116942.14,0,0,0,2249.4023 +13036,15897,28371,28370,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,6,5,-13.504605,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1311901,0,38.75,48.22,54.37,54.8,3.333333333333333,1,1,0,0,0,11,2,1,606,594142.75,283347.19,116942.14,0,0,0,2249.4023 +13037,15898,28372,28373,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,0,7.1678586,7.2664337,42,-1,-63.448265,0,3,2,2021,17,5,0,23,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7781866,7.542542,45.39,40.29,37.19,34.68,5,1,1,0,0,12,12,3,1,594,1138177,638307,326524.31,68033.367,0,0,1937.8396 +13037,15898,28373,28372,-9,-9,1,1,61,0,0,0,2,2,-9,0,1,0,7.1618629,7.3132238,42,1,-67.318962,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3325086,37.19,34.68,45.39,40.29,6.666666666666667,1,1,0,0,5,12,3,1,594,1138177,638307,326524.31,68033.367,0,0,1937.8396 +13038,15899,28374,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.6740117,7.6462827,0,0,0,-992.62634,0,3,3,2021,11,0,40,42,1,0,0,7.3883901,7.3883901,0,0,0,0,0,0,0,0,0,0,0,1.4368993,0,56.76,44.55,-9,-9,5,1,1,0,1,12,6,3,1,850,132676,0,90573.391,14183.459,0,0,1429.8309 +13039,15900,28375,-9,-9,28378,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-969.04395,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13039,15900,28376,-9,-9,28378,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-986.48999,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13039,15900,28377,-9,-9,28378,1,0,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-941.78357,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13039,15900,28378,-9,-9,-9,1,1,23,1,3,0,2,2,-9,0,4,8.360899,8.335207,0,0,0,-878.68964,0,-9,-9,2021,12,0,45,50,1,0,0,14.028184,14.028184,0,0,0,0,0,0,0,0,0,0,0,0,0,40.48,60.05,-9,-9,5,1,1,0,0,6,9,3,0,468.25,-33219.398,66476.039,0,0,0,-73.409286,1946.8855 +13040,15901,28379,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.2602158,8.1887703,0,0,0,-963.83795,-9,-9,-9,2021,5,0,41,0,1,0,0,10.986403,10.986403,.05,.05,0,0,0,0,0,0,0,0,0,6.1026011,0,51.64,57.24,-9,-9,10,1,1,0,0,4,13,4,1,142,-41490.625,31551.469,0,0,0,0,2305.7483 +13041,15902,28380,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.6758657,7.6796336,0,0,-1041.8082,0,3,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,1.7728341,0,26.432615,0,1,1,0,4.5643091,7.7207575,34.03,18.62,-9,-9,3.333333333333333,1,1,0,0,0,10,3,1,1465,822123.88,375244.97,348232.56,0,0,0,1670.7095 +13042,15903,28381,28384,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,9.3476648,8.947216,0,3,-25,-46.124504,0,-9,-9,2021,7,0,48,50,1,0,0,21.300653,21.300653,0,0,.05,0,0,0,0,0,1,1,0,0,0,56.5,51,54.96,53.17,8.333333333333334,1,1,0,0,7,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13042,15903,28382,-9,28381,28384,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.5072,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,63,-9,-9,7,1,1,-9,0,0,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13042,15903,28383,-9,28381,28384,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.7842,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13042,15903,28384,28381,-9,-9,1,1,57,2,2,0,2,2,-9,0,3,9.9463148,9.2048283,0,3,25,-5.0766935,0,3,2,2021,8,0,50,50,1,0,0,41.437527,41.437527,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,56.5,51,8.333333333333334,1,1,0,0,14,9,5,1,931.5,1241187.1,359494.22,450128.69,0,0,0,20329.326 +13043,15904,28385,28386,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,7.205184,7.6855936,5.9759016,29,-1,48.099079,0,2,2,2021,14,3,17,32,1,3,0,12.534781,12.534781,.05,.05,0,0,0,0,0,0,1,1,0,6.0823445,0,42.94,42.84,58.08,43.46,3.333333333333333,1,1,0,1,8,12,4,1,1103.5,585598.5,483560.5,97666.031,10236.555,0,487.36792,2562.8853 +13043,15904,28386,28385,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.7013144,7.8019762,0,27,1,29.819218,0,2,2,2021,10,0,35,40,1,0,0,8.1975498,8.1975498,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.08,43.46,42.94,42.84,8.333333333333334,1,1,0,1,11,12,4,1,1103.5,585598.5,483560.5,97666.031,10236.555,0,487.36792,2562.8853 +13043,15905,28387,-9,28385,28386,1,1,25,0,0,0,2,2,-9,0,5,8.0272779,7.8896742,0,0,0,-1068.3468,0,2,2,2021,12,3,45,45,1,3,1,7.3716421,7.3716421,.05,.05,0,0,0,0,0,0,1,1,0,.53091592,0,47.45,47.37,-9,-9,6.666666666666667,1,1,0,0,8,12,3,1,1245,-302779.16,97339.813,0,0,0,0,1226.3707 +13044,15906,28388,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,7.7525668,7.8254538,0,0,-1023.9156,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2896647,7.7319307,46.41,37.03,-9,-9,5,1,1,0,0,0,7,3,1,961,1030783.3,112551.47,576334.5,0,0,0,1866.3882 +13045,15907,28389,28390,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,6.8910995,7.0762901,28,10,-139.40208,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3706164,6.987011,62.49,55.09,57.16,56.15,10,1,1,0,0,4,9,2,1,1570,483736.38,290838.13,189549.84,0,0,0,690.69025 +13045,15907,28390,28389,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,28,-10,79.62439,0,3,2,2021,8,0,0,28,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,62.49,55.09,10,1,1,0,0,8,9,2,1,1570,483736.38,290838.13,189549.84,0,0,0,690.69025 +13046,15908,28391,28392,-9,-9,1,0,76,0,0,0,2,2,-9,0,1,0,0,0,10,-6,1.0991576,0,3,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,2.7691364,1.3365028,21.651159,0,1,1,0,0,0,45.3,26.65,57.57,49.69,8.333333333333334,1,1,0,0,0,11,3,1,2214,1672666.5,345721.38,333385,0,6183.832,0,2533.7358 +13046,15908,28392,28391,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,8.3325539,8.3452215,10,6,-113.49224,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.8374491,7.9293303,57.57,49.69,45.3,26.65,6.666666666666667,2,3,0,0,0,11,3,1,2214,1672666.5,345721.38,333385,0,6183.832,0,2533.7358 +13047,15909,28393,-9,28395,28394,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.58203,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13047,15909,28394,28395,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.6748314,7.6273699,0,6,6,56.329624,0,-9,-9,2021,5,0,37,35,1,0,0,8.6077156,8.6077156,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.98,59.35,48.77,60.16,8.333333333333334,1,1,0,0,3,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13047,15909,28395,28394,-9,-9,1,0,32,0,2,0,2,2,-9,0,5,0,0,0,6,-6,-32.436504,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,46.98,59.35,8.333333333333334,1,1,0,0,6,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13047,15909,28396,-9,28395,28394,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.35602,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,671,28778.617,-29246.027,0,0,0,800.75604,1916.5515 +13048,15910,28397,28398,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,0,0,47,-1,-193.52954,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,45.57,52.23,8.333333333333334,1,1,0,0,7,10,2,1,731,108968.54,36593.707,0,0,0,0,1777.8502 +13048,15910,28398,28397,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,4.5008731,4.3207254,47,1,10.523709,0,1,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0513716,4.7423525,45.57,52.23,57.06,57.76,8.333333333333334,1,1,0,0,3,10,2,1,731,108968.54,36593.707,0,0,0,0,1777.8502 +13049,15911,28399,28400,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,9.5338278,9.3879499,0,34,3,11.13448,-9,-9,2,2021,6,0,10,0,1,0,0,194.04337,194.04337,.05,.05,0,0,0,0,0,0,0,0,0,2.4547608,0,59.88,16.23,49.41,58.28,6.666666666666667,1,1,0,0,9,10,5,1,984.5,1147928.3,835517.5,633578.13,277032,0,1025.5835,12696.215 +13049,15911,28400,28399,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.0921021,9.3650417,0,10,-3,142.76572,0,-9,-9,2021,14,2,42,45,1,2,0,33.510639,33.510639,.05,.05,.05,0,0,0,0,0,0,0,0,8.0487947,0,49.41,58.28,59.88,16.23,10,1,1,0,0,11,10,5,1,984.5,1147928.3,835517.5,633578.13,277032,0,1025.5835,12696.215 +13050,15912,28401,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.3679156,6.6279402,0,0,-971.76941,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2180419,52.24,48.84,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,2105,-54766.82,98755.898,0,0,0,0,458.63019 +13051,15913,28402,28403,-9,-9,1,1,43,0,1,0,1,1,-9,0,3,8.7995281,8.3646622,0,17,-1,97.523552,0,2,2,2021,8,0,40,40,1,0,0,18.493471,18.493471,.05,.05,0,0,0,0,0,2,0,0,0,4.6791439,0,55.36,51.57,54.1,59.11,8.333333333333334,1,1,0,0,8,4,5,1,344.5,2716387.5,2112683.5,397323.66,54687.852,0,0,6700.0107 +13051,15913,28403,28402,-9,-9,1,0,44,0,1,0,1,1,-9,0,5,9.5135632,9.4226904,0,16,1,88.357033,0,2,1,2021,9,0,55,48,1,0,0,35.982349,35.982349,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,55.36,51.57,8.333333333333334,1,1,0,0,8,4,5,1,344.5,2716387.5,2112683.5,397323.66,54687.852,0,0,6700.0107 +13052,15914,28404,28405,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,7.9943919,8.1135015,5.2531552,3,1,5.3617191,0,-9,-9,2021,10,0,40,40,1,1,0,8.9553595,8.9553595,.05,.05,0,0,0,0,0,0,0,0,0,5.9704819,5.5779667,51,48,58,37.34,7,1,1,0,0,1,1,4,1,1085.5,693886.88,627600,79850.391,34279.383,12500.516,0,2294.9329 +13052,15914,28405,28404,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.9049149,6.4928107,0,39,-1,-35.885159,0,3,3,2021,11,0,16,26,1,0,0,5.0396681,5.0396681,0,0,0,0,0,0,0,0,0,0,0,0,0,58,37.34,51,48,8.333333333333334,1,1,0,0,2,1,4,1,1085.5,693886.88,627600,79850.391,34279.383,12500.516,0,2294.9329 +13053,15915,28406,28407,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.5129318,8.4936075,0,33,-1,80.785164,0,-9,-9,2021,11,0,50,45,1,0,0,13.894865,13.894865,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.15,52.91,60.29,52.11,8.333333333333334,1,1,0,0,14,12,5,1,562,321077.19,193681.56,215496.22,91418.141,0,0,3557.1223 +13053,15915,28407,28406,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.4591141,8.1943111,0,33,1,-35.366768,0,2,2,2021,12,0,40,40,1,0,0,12.296252,12.296252,0,0,0,0,0,0,0,2,0,0,0,2.0736516,0,60.29,52.11,58.15,52.91,8.333333333333334,1,1,0,0,14,12,5,1,562,321077.19,193681.56,215496.22,91418.141,0,0,3557.1223 +13053,15916,28408,-9,28407,28406,1,0,24,0,0,0,2,2,-9,0,4,6.1453571,6.1732793,0,0,0,-1006.6656,0,2,2,2021,9,2,35,35,1,2,1,1.9922729,1.9922729,0,0,0,0,0,0,0,0,0,0,0,0,0,50.54,55.04,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,3019,-48392.012,0,0,0,0,0,-9.403656 +13054,15917,28409,28410,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,7.7266564,7.5646501,0,13,1,-101.41887,0,-9,-9,2021,9,0,30,32,1,0,0,7.4191256,7.4191256,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,54.9,44,10,1,1,0,0,14,4,4,1,792,1360567,936189.63,403054.66,21068.121,11034.959,0,2394.9302 +13054,15917,28410,28409,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,8.3281841,8.3463497,5.8928838,44,-1,117.2952,0,2,2,2021,7,0,39,39,1,0,0,15.027968,15.027968,.05,.05,0,0,0,0,0,0,0,0,0,0,6.4408984,54.9,44,58.15,52.91,6.666666666666667,1,1,0,0,14,4,4,1,792,1360567,936189.63,403054.66,21068.121,11034.959,0,2394.9302 +13055,15918,28411,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,7.8143883,7.9656897,0,0,-875.85205,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6902263,7.2332029,61.43,43.34,-9,-9,8.333333333333334,1,1,0,0,6,8,3,1,1242,990839.56,330891.41,378997.34,0,0,0,1481.7023 +13055,15919,28412,-9,-9,-9,1,0,20,0,0,1,2,0,-9,0,4,0,0,0,0,0,-994.68726,-9,-9,-9,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9988747,0,58.72,51.29,-9,-9,8.333333333333334,1,1,0,0,1,8,1,1,3016,26017.064,0,0,0,0,0,226.14519 +13056,15920,28413,28414,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,9.241662,9.4229565,0,29,-4,-50.988682,0,2,2,2021,8,0,45,48,1,0,0,26.465675,26.465675,0,0,0,0,0,0,0,7,1,1,0,3.3583114,0,54.2,57.49,59.54,48.41,8.333333333333334,1,1,0,0,9,4,5,1,803,387079.25,222835.36,213562.27,94764.648,0,0,5763.0806 +13056,15920,28414,28413,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.6072607,8.2243834,29,4,-4.2782807,0,2,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,2.33407,8.6259909,59.54,48.41,54.2,57.49,10,1,1,0,0,6,4,5,1,803,387079.25,222835.36,213562.27,94764.648,0,0,5763.0806 +13057,15921,28415,28416,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.6116381,8.5207958,0,1,1,-71.981102,-9,-9,-9,2021,7,0,76,0,1,0,0,8.6547594,8.6547594,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,57.06,57.76,8.333333333333334,1,1,0,0,1,12,5,1,2275.5,1103697,365190.09,570967.25,77843.938,0,0,5625.2373 +13057,15921,28416,28415,-9,-9,1,1,30,0,0,0,1,1,-9,0,5,8.9508314,8.9237862,6.2057452,1,-1,-75.224838,0,1,2,2021,9,0,55,53,1,0,0,16.753315,16.753315,.05,.05,0,0,0,0,0,0,0,0,0,6.3857965,0,57.06,57.76,51.77,58.57,8.333333333333334,1,1,0,0,8,12,5,1,2275.5,1103697,365190.09,570967.25,77843.938,0,0,5625.2373 +13058,15922,28417,28418,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.3159704,8.2745476,32,2,51.168674,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8959589,8.3477964,59.46,46.99,58.15,52.91,8.333333333333334,2,3,0,0,11,7,3,1,436.5,1715214.8,1003945.5,499157.31,0,0,0,3746.9229 +13058,15922,28418,28417,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,2,-2,-104.03802,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1559777,0,58.15,52.91,59.46,46.99,8.333333333333334,2,3,0,0,10,7,3,1,436.5,1715214.8,1003945.5,499157.31,0,0,0,3746.9229 +13058,15923,28419,-9,28418,28417,1,1,33,0,0,0,1,1,-9,0,4,9.1798801,8.6607761,0,0,0,-961.79242,0,2,1,2021,11,0,72,45,1,0,0,13.853246,13.853246,0,0,0,0,0,0,0,0,0,0,0,0,0,61.83,49.95,-9,-9,8.333333333333334,2,3,0,0,6,7,5,1,185,170042.44,-55859.742,474704.25,307698.97,0,8057.3159,2391.8489 +13059,15924,28420,28421,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,8.2723475,8.1851606,0,13,-1,8.3161383,0,2,1,2021,11,1,40,32,1,1,0,12.220597,12.220597,0,0,0,0,0,0,0,2,1,1,0,0,0,40.19,50.39,45.81,61.51,6.666666666666667,1,1,0,0,8,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13059,15924,28421,28420,-9,-9,1,1,33,0,2,0,1,1,-9,0,5,9.2375479,9.1380548,0,13,1,-71.762779,0,2,3,2021,10,0,36,46,1,0,0,24.451534,24.451534,.05,.05,0,0,0,0,0,2,1,1,0,0,0,45.81,61.51,40.19,50.39,8.333333333333334,1,1,0,0,9,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13059,15924,28422,-9,28420,28421,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-927.66815,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13059,15924,28423,-9,28420,28421,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-855.36707,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,777,253335.94,-40059.141,346262.41,170245.69,0,0,3781.5488 +13060,15925,28424,28425,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.4216185,9.577446,8.2983007,6,2,43.32222,0,-9,2,2021,10,0,50,50,1,0,0,22.636688,22.636688,.05,.05,0,0,0,0,0,7,0,0,0,0,8.2138062,54.2,57.49,51.24,58.84,8.333333333333334,1,1,0,0,7,2,5,1,1518.5,950559.25,644173.63,329239.06,0,5709.5366,0,5899.1113 +13060,15925,28425,28424,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,6.5428448,6.8624868,6.7012076,6,-2,-70.246368,0,2,2,2021,15,5,11,11,1,5,0,5.0350394,5.0350394,0,0,0,0,0,0,0,0,0,0,0,0,6.6319637,51.24,58.84,54.2,57.49,10,1,1,0,0,7,2,5,1,1518.5,950559.25,644173.63,329239.06,0,5709.5366,0,5899.1113 +13061,15926,28426,-9,28427,-9,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1071.6917,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,5,1,1006.5,301409.63,247848.66,142370.77,47150.688,4702.0786,0,2647.0569 +13061,15926,28427,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,3,8.9321651,8.7928219,5.4320426,0,0,-969.6239,0,2,2,2021,26,12,37,37,1,12,0,24.483753,24.483753,.05,.05,0,0,0,0,0,0,1,1,0,6.3209925,0,27.39,64.63,-9,-9,6.666666666666667,1,1,0,0,12,11,5,1,1006.5,301409.63,247848.66,142370.77,47150.688,4702.0786,0,2647.0569 +13062,15927,28428,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.4352379,7.4128404,0,0,0,-1161.6066,0,2,3,2021,12,0,28,30,1,0,0,8.5826902,8.5826902,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,7,13,3,0,228,272664.78,42606.738,0,0,7694.8232,0,1066.6031 +13062,15928,28429,-9,28428,-9,1,0,20,0,0,0,2,2,-9,0,4,6.8167357,6.9466233,0,0,0,-1032.5072,0,2,-9,2021,10,2,12,12,1,2,1,8.0871954,8.0871954,0,0,0,0,0,0,0,0,1,0,1,0,0,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,4,13,2,0,1033,343348.44,0,0,0,0,0,1018.2982 +13063,15929,28430,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,5,8.2801189,8.2929888,0,0,0,-1125.509,0,2,2,2021,12,0,40,40,1,0,0,11.188524,11.188524,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,6.666666666666667,1,1,0,0,3,13,4,0,845,58688.664,26958.818,150178.53,74825.289,0,0,1847.6156 +13064,15930,28431,-9,-9,-9,1,0,38,0,2,0,2,2,-9,1,3,7.0870953,7.3330879,5.6155791,0,0,-1112.5137,-9,2,2,2021,13,1,37,0,1,1,0,4.0267429,4.0267429,.05,.05,0,0,0,0,0,0,1,0,1,5.8134661,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,10,2,0,287.66666,10328.766,6770.8677,0,0,7807.8394,2793.5981,2982.2295 +13064,15930,28432,-9,28431,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-913.41064,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,287.66666,10328.766,6770.8677,0,0,7807.8394,2793.5981,2982.2295 +13064,15930,28433,-9,28431,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.9348,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,2,0,287.66666,10328.766,6770.8677,0,0,7807.8394,2793.5981,2982.2295 +13065,15931,28434,28435,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,3.694643,3.8534725,9,-2,148.83806,0,3,3,2021,22,7,0,0,4,7,0,0,0,0,0,0,1,0,1.077022,0,0,1,1,0,0,3.658211,37.74,27.39,52,47,6.666666666666667,1,1,0,0,0,13,2,1,305,149570.06,0,127400.96,0,0,0,1311.4377 +13065,15931,28435,28434,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,0,0,9,2,1.6363068,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,49.740276,0,0,1,1,0,0,0,52,47,37.74,27.39,7,1,1,0,0,3,13,2,1,305,149570.06,0,127400.96,0,0,0,1311.4377 +13065,15932,28436,-9,28434,28435,1,1,40,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1072.4633,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,56,-9,-9,7,1,1,0,0,0,13,1,1,734,239714.98,0,0,0,0,0,735.82208 +13065,15933,28437,-9,28434,28435,1,1,40,0,0,0,2,2,-9,0,3,7.3992147,7.1540799,0,0,0,-1014.8118,0,3,3,2021,10,0,30,20,1,0,0,6.6915946,6.6915946,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,12,13,3,1,2159,244974.13,-49576.441,0,0,0,0,514.56549 +13065,15934,28438,-9,28434,28435,1,1,36,0,0,0,2,2,-9,0,4,7.8520103,7.6257854,0,0,0,-978.51776,0,3,3,2021,10,0,40,40,1,1,0,7.8981981,7.8981981,.05,.05,0,0,0,0,0,2,1,1,0,2.9079938,0,50,57,-9,-9,7,1,1,0,0,10,13,3,1,1005,-103445.49,-92609.133,84575.242,84495.188,13001.156,0,1644.6385 +13066,15935,28439,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,9.5197783,9.4130602,0,0,0,-991.16064,0,2,2,2021,14,4,36,39,1,4,0,42.062824,42.062824,.05,.05,0,0,0,0,0,0,1,1,0,6.9604621,0,38.18,65.09,-9,-9,5,1,1,0,0,14,9,5,1,1047,753771.63,518922.94,322188.09,86897.664,12773.986,3590.1445,5027.1953 +13066,15936,28440,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,0,6.7419748,6.5257521,0,0,-1040.7894,0,2,2,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2717352,0,21.86,48.49,-9,-9,0,1,1,1,1,13,9,2,1,803,719254.69,650227.81,0,0,0,0,1148.7673 +13067,15937,28441,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.0512533,8.0264177,0,0,0,-993.86591,0,2,2,2021,11,0,37,35,1,0,0,12.078825,12.078825,.05,.05,0,0,0,0,0,0,0,0,0,2.9154243,0,38.69,61.75,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,289,686697.88,512145.63,0,0,0,0,1772.9702 +13068,15938,28442,28443,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,7.0395122,7.0526648,11,0,54.90303,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5941329,7.0780864,60.12,54.8,44,24.49,10,1,1,0,0,8,5,3,1,327.5,1298907.3,745657.88,463012.56,0,0,843.97314,2009.3706 +13068,15938,28443,28442,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,6.9163752,7.2158871,11,0,-25.381392,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4777846,7.0039735,44,24.49,60.12,54.8,6.666666666666667,1,1,0,0,10,5,3,1,327.5,1298907.3,745657.88,463012.56,0,0,843.97314,2009.3706 +13069,15939,28444,28446,-9,-9,1,0,59,0,0,0,2,2,-9,1,4,0,5.5205173,5.8097754,43,-3,-41.875397,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.7153192,52.48,54.33,20.07,28.86,8.333333333333334,1,1,1,0,0,5,2,1,854,233183.94,131101.39,0,0,0,0,2031.7708 +13069,15939,28445,-9,28444,28446,1,1,17,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1055.9882,1,2,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,5,1,1,0,0,1,5,2,1,854,233183.94,131101.39,0,0,0,0,2031.7708 +13069,15939,28446,28444,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,0,0,43,3,1.4137836,0,3,3,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,20.07,28.86,52.48,54.33,1.666666666666667,1,1,0,0,0,5,2,1,854,233183.94,131101.39,0,0,0,0,2031.7708 +13070,15940,28447,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1064.6176,0,3,3,2021,17,3,0,0,4,3,0,0,0,0,0,0,1,0,3.6081202,0,0,1,1,0,0,0,25.38,30.76,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,683,210607.03,0,0,0,0,0,-161.74075 +13071,15941,28448,28449,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,9.670064,9.7529736,0,5,-2,-151.21234,0,2,2,2021,8,0,40,40,1,0,0,49.986843,49.986843,.05,.05,0,0,0,0,0,2,0,0,0,5.7326407,0,57.16,56.15,56.19,36.03,6.666666666666667,1,1,0,0,11,10,5,0,1122,817324.25,493168.69,264618.56,0,8619.2012,0,51078.078 +13071,15941,28449,28448,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.2780609,8.329771,0,5,2,-37.753643,0,-9,-9,2021,8,0,39,39,1,0,0,12.722644,12.722644,.05,.05,0,0,0,0,0,0,0,0,0,8.4137316,0,56.19,36.03,57.16,56.15,5,1,1,0,0,6,10,5,0,1122,817324.25,493168.69,264618.56,0,8619.2012,0,51078.078 +13072,15942,28450,28451,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,9.4254999,9.6926041,0,9,0,11.51974,0,2,2,2021,3,0,95,0,1,0,0,21.272816,21.272816,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.88,48.2,43.63,51.59,8.333333333333334,1,1,0,0,5,8,5,1,678.33331,2120876.3,657572.06,969498.81,152357.98,0,0,14357.724 +13072,15942,28451,28450,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.7215967,9.8381205,0,9,0,-90.120461,0,2,3,2021,12,1,42,42,1,1,0,44.87048,44.87048,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.63,51.59,59.88,48.2,6.666666666666667,1,1,0,0,7,8,5,1,678.33331,2120876.3,657572.06,969498.81,152357.98,0,0,14357.724 +13072,15942,28452,-9,28450,28451,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1255.7177,-9,1,1,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.59827542,0,41.3,60.77,-9,-9,10,1,1,0,0,0,8,5,1,678.33331,2120876.3,657572.06,969498.81,152357.98,0,0,14357.724 +13072,15943,28453,-9,28450,28451,1,1,19,0,0,1,3,0,0,0,4,0,4.587657,4.5262194,0,0,-959.4317,-9,1,1,2021,16,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5700283,0,45.91,59.89,-9,-9,5,1,1,0,0,3,8,2,1,356,147198.61,0,0,0,0,0,-546.40125 +13073,15944,28454,28455,-9,-9,1,1,61,0,0,0,3,3,-9,1,1,0,0,0,41,1,147.45665,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.02,7.46,42.51,50.99,6.666666666666667,1,1,0,0,10,1,4,1,703,1475037.8,1222679.8,159501.75,0,0,1308.394,2494.0742 +13073,15944,28455,28454,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,8.0528107,8.8687954,7.0703659,41,-1,39.841526,0,3,2,2021,15,5,25,22,1,5,0,18.223776,18.223776,0,0,0,0,0,0,0,42,1,1,0,3.200515,7.3361654,42.51,50.99,61.02,7.46,5,1,1,0,0,10,1,4,1,703,1475037.8,1222679.8,159501.75,0,0,1308.394,2494.0742 +13074,15945,28456,28457,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,5.6103029,5.8280826,51,1,44.659924,0,2,2,2021,29,11,0,0,4,11,0,0,0,0,0,0,1,0,1.1097239,0,0,1,1,0,4.0362148,5.8857889,32.95,20.3,54.2,57.49,1.666666666666667,1,1,0,0,0,9,5,1,317,1783712.8,877460.5,956347.94,0,0,0,5706.4199 +13074,15945,28457,28456,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.9536619,9.188447,51,-1,124.19075,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.0986772,9.2365341,54.2,57.49,32.95,20.3,8.333333333333334,1,1,0,0,0,9,5,1,317,1783712.8,877460.5,956347.94,0,0,0,5706.4199 +13075,15946,28458,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,0,0,-949.89465,0,3,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.23,27.55,-9,-9,3.333333333333333,4,2,0,1,0,8,1,0,624,28841.488,0,0,0,0,0,1514.7297 +13076,15947,28459,-9,28460,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.5104,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,0,594.5,54340.57,-40817.523,323406.81,152529.47,0,0,7912.2842 +13076,15947,28460,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,8.4476967,8.7412357,7.2777972,0,0,-946.48669,0,-9,-9,2021,6,0,24,0,1,0,0,19.331966,19.331966,0,0,0,0,0,0,0,0,1,1,0,9.6471291,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,9,5,0,594.5,54340.57,-40817.523,323406.81,152529.47,0,0,7912.2842 +13077,15948,28461,-9,28463,28462,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.79926,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13077,15948,28462,28463,-9,-9,1,1,53,0,2,0,2,2,-9,0,3,7.8681216,7.9069285,0,25,4,-152.95166,0,2,2,2021,8,0,50,50,1,0,0,5.4734855,5.4734855,.05,.05,0,0,0,0,0,0,1,1,0,.30166703,0,52,54.51,54.2,57.49,8.333333333333334,1,1,0,0,9,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13077,15948,28463,28462,-9,-9,1,0,49,0,2,0,1,1,-9,0,4,8.8202314,8.6823025,0,25,-4,-138.94151,0,2,2,2021,9,0,60,50,1,0,0,14.571317,14.571317,.05,.05,0,0,0,0,0,0,1,1,0,2.841933,0,54.2,57.49,52,54.51,8.333333333333334,1,1,0,0,7,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13077,15948,28464,-9,28463,28462,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.2808,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,4,1,700.25,1137219.3,895955.38,251698.06,0,0,0,3792.0811 +13078,15949,28465,28466,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,8.168108,8.5477705,5.7168651,26,-2,118.69488,0,3,3,2021,9,0,34,34,1,0,0,14.451246,14.451246,0,0,0,0,0,0,0,0,0,0,0,0,5.7772412,57.33,53.46,49.35,59.64,10,1,1,0,0,11,5,5,1,666.5,720923.88,599582,396676.78,256602.5,0,17993.834,3191.2954 +13078,15949,28466,28465,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,8.2584972,8.2921839,4.3629251,26,2,-28.848669,0,-9,-9,2021,11,0,44,40,1,0,0,9.6711864,9.6711864,.05,.05,0,0,0,0,0,0,0,0,0,5.5543561,4.9752426,49.35,59.64,57.33,53.46,8.333333333333334,1,1,0,0,11,5,5,1,666.5,720923.88,599582,396676.78,256602.5,0,17993.834,3191.2954 +13079,15950,28467,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,3.6394682,3.1091738,0,0,-849.3313,-9,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9228456,3.1101167,49.99,36.78,-9,-9,5,1,1,0,0,0,13,2,1,694,374156.56,39807.879,186121.66,0,0,0,769.06708 +13080,15951,28468,-9,28469,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1055.6171,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,949.33331,222980.03,180366.88,114118.59,0,0,0,1201.5134 +13080,15951,28469,-9,-9,-9,1,0,45,0,2,0,1,1,-9,0,3,8.0294504,7.6125917,0,0,0,-835.31262,0,2,3,2021,12,1,25,27,1,1,0,12.089602,12.089602,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.86,55.66,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,949.33331,222980.03,180366.88,114118.59,0,0,0,1201.5134 +13080,15951,28470,-9,28469,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.7343,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,3,1,949.33331,222980.03,180366.88,114118.59,0,0,0,1201.5134 +13081,15952,28471,28472,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.2817354,7.1359048,60,3,85.055107,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.9626882,7.5517044,46.67,55.57,60.05,24.25,8.333333333333334,1,1,0,0,0,5,3,1,1843.5,349338.97,146934.08,210326.34,0,0,0,1519.0228 +13081,15952,28472,28471,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,5.1824136,4.8091202,60,-3,-112.53482,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,12.776128,0,0,1,1,0,2.9247911,4.9704819,60.05,24.25,46.67,55.57,8.333333333333334,1,1,0,0,0,5,3,1,1843.5,349338.97,146934.08,210326.34,0,0,0,1519.0228 +13082,15953,28473,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1532316,8.4227104,5.842546,0,0,-979.61047,0,2,2,2021,6,0,38,38,1,0,0,8.1536093,8.1536093,0,0,0,0,0,0,0,0,0,0,0,6.0685186,6.0421219,56.71,35.18,-9,-9,6.666666666666667,3,4,0,1,9,8,4,1,278,855479.5,129148.1,634387.44,0,0,0,1109.9355 +13083,15954,28474,28475,-9,-9,1,0,58,0,0,0,3,3,-9,0,5,6.2386813,7.0412784,6.6554632,43,-3,42.27346,0,3,3,2021,11,1,6,6,1,1,0,11.745638,11.745638,0,0,0,0,0,0,0,0,0,0,0,0,6.5250034,59.43,58.05,54,53,10,1,1,0,0,6,1,4,0,437.5,723901.69,610228.38,102016.36,42875.145,10143.732,0,1341.7921 +13083,15954,28475,28474,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,7.9901295,8.0876617,0,43,3,18.214893,0,-9,-9,2021,6,0,37,37,1,0,0,10.382174,10.382174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,53,59.43,58.05,10,1,1,0,0,8,1,4,0,437.5,723901.69,610228.38,102016.36,42875.145,10143.732,0,1341.7921 +13084,15955,28476,28477,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,0,8.0368776,8.0192242,6,5,35.952591,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,0,0,0,0,7.9926715,54,53,57.16,56.15,8,1,1,0,0,7,10,4,1,648,551096.19,179090.3,263435.28,0,0,0,2397.2642 +13084,15955,28477,28476,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.8096566,8.018136,0,35,-5,54.304581,0,2,2,2021,8,0,33,40,1,0,0,9.2052174,9.2052174,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54,53,8.333333333333334,1,1,0,0,8,10,4,1,648,551096.19,179090.3,263435.28,0,0,0,2397.2642 +13085,15956,28478,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,6.3563209,6.2167692,0,0,-955.66925,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.8186927,6.2968802,53.98,50.87,-9,-9,6.666666666666667,1,1,0,1,7,5,2,1,1665,477074.84,31675.035,187006.84,0,0,0,-235.84018 +13086,15957,28479,-9,-9,-9,1,0,42,0,3,0,2,2,-9,1,3,8.2431679,8.5735922,7.7014098,0,0,-1063.6855,0,2,2,2021,26,10,38,20,1,10,0,11.882457,11.882457,.05,.05,0,0,0,0,0,0,1,1,0,8.1520042,0,21.07,60.89,-9,-9,6.666666666666667,1,1,0,1,11,9,4,1,377,441657.78,219168.38,375622.19,43398.992,5584.9868,774.24146,4899.2817 +13087,15958,28480,28481,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,0,0,49,-3,136.39322,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8653278,0,51.25,46.55,48.68,53.73,6.666666666666667,1,1,0,0,7,2,4,1,718.5,971993.75,710794.5,271978.81,0,0,0,3558.7249 +13087,15958,28481,28480,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,8.398036,8.6263714,0,49,3,-84.214302,0,3,3,2021,14,4,80,70,1,4,0,6.5783544,6.5783544,0,0,0,0,0,0,0,0,1,1,0,3.3455248,0,48.68,53.73,51.25,46.55,5,1,1,0,0,12,2,4,1,718.5,971993.75,710794.5,271978.81,0,0,0,3558.7249 +13088,15959,28482,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,6.4320993,6.3546047,0,0,-1047.8188,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,5.5153055,0,0,1,1,0,5.9525495,5.9932423,45.66,29.07,-9,-9,5,1,1,0,0,0,12,2,1,556,374247.47,106741,93324.133,0,0,0,215.35098 +13089,15960,28483,28484,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,0,0,0,1,-5,3.6950624,-9,-9,-9,2021,12,0,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.20039743,0,45,59,54.1,59.11,7,4,2,1,0,0,4,3,0,269,20292.355,2884.207,0,0,0,0,2123.7896 +13089,15960,28484,28483,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.0386333,8.1209888,0,1,5,-36.108398,0,1,1,2021,5,0,32,0,1,0,0,10.128144,10.128144,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,45,59,8.333333333333334,1,1,0,0,11,4,3,0,269,20292.355,2884.207,0,0,0,0,2123.7896 +13090,15961,28485,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.0148287,8.2712831,5.8515363,0,0,-1028.6395,0,-9,-9,2021,11,1,34,0,1,1,0,9.9205427,9.9205427,.05,.05,0,0,0,0,0,0,1,1,0,6.5432267,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,4,5,4,0,202,-57399.715,-45564.203,0,0,0,68.796555,1609.6946 +13091,15962,28486,-9,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.1449928,8.1746988,0,0,0,-1009.9587,0,2,2,2021,9,0,43,45,1,0,0,8.4039965,8.4039965,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,14,9,4,0,126,-192034.53,0,0,0,0,0,1683.0106 +13092,15963,28487,28488,-9,-9,1,0,39,0,1,0,1,1,-9,0,4,8.8877459,9.003088,0,18,0,41.708015,0,2,2,2021,7,0,28,48,1,0,0,26.963385,26.963385,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,59.53,56.44,8.333333333333334,1,1,0,0,9,10,5,1,1025,692873.94,550029.88,471888.91,311513.38,6588.4434,0,4560.3394 +13092,15963,28488,28487,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.7549267,8.6952295,0,18,0,38.497429,0,2,2,2021,2,0,40,37,1,0,0,15.134109,15.134109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,48.87,58.55,6.666666666666667,1,1,0,0,8,10,5,1,1025,692873.94,550029.88,471888.91,311513.38,6588.4434,0,4560.3394 +13092,15963,28489,-9,28487,28488,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1018.5276,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,1025,692873.94,550029.88,471888.91,311513.38,6588.4434,0,4560.3394 +13093,15964,28490,28491,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,9.8929396,10.047738,8.9549417,32,0,-1.5690182,0,1,1,2021,8,0,45,43,1,0,0,40.212402,40.212402,0,0,0,0,0,0,0,0,0,0,0,9.3661003,5.7867217,57.66,47.89,60.02,56.42,8.333333333333334,1,1,0,0,12,8,5,1,1114.5,2468262,1328283.8,109868.54,0,0,0,22318.664 +13093,15964,28491,28490,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,9.4656687,9.5622549,7.6855226,4,0,-70.476089,0,-9,-9,2021,6,0,35,35,1,0,0,46.114258,46.114258,.05,.05,.05,0,0,0,0,0,0,0,0,9.8106575,7.39642,60.02,56.42,57.66,47.89,8.333333333333334,1,1,0,0,12,8,5,1,1114.5,2468262,1328283.8,109868.54,0,0,0,22318.664 +13094,15965,28492,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,0,4.9599771,4.9611144,0,0,-945.48987,0,2,2,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,4.6885233,30.44,36.36,-9,-9,0,1,1,1,1,0,2,2,1,352,112266.52,0,0,0,0,0,78.256516 +13095,15966,28493,-9,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,0,0,0,0,-922.67963,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.8,46.31,-9,-9,10,3,4,0,0,14,8,1,0,1445,-162225.5,0,0,0,0,0,389.00049 +13096,15967,28494,-9,28495,-9,1,1,31,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1050.0874,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,2,3,0,0,0,8,1,0,2313,-183507.92,0,0,0,0,0,1599.7841 +13096,15968,28495,-9,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,0,0,-953.11853,0,-9,-9,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,8,1,0,907,32372.328,0,0,0,0,0,1428.3491 +13097,15969,28496,28497,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,8.910759,8.4834671,5.1846418,10,-5,79.816902,0,3,3,2021,15,3,52,45,1,3,0,13.203356,13.203356,.05,.05,0,0,0,0,0,27,1,1,0,0,5.0812244,39.62,31.99,44.49,37.85,5,1,1,0,0,9,6,4,0,875,328396.91,150295.13,83435.109,0,0,0,3008.0356 +13097,15969,28497,28496,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,10,5,-41.987095,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,2.4425068,0,0,1,1,0,0,0,44.49,37.85,39.62,31.99,6.666666666666667,4,5,0,0,9,6,4,0,875,328396.91,150295.13,83435.109,0,0,0,3008.0356 +13098,15970,28498,-9,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.2235546,7.5946169,0,0,0,-975.42212,0,2,3,2021,6,0,30,28,1,0,0,9.3619967,9.3619967,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.32,46.98,-9,-9,6.666666666666667,3,4,0,0,14,8,3,1,1073,129611.24,55691.09,0,0,0,1932.5461,1329.4514 +13098,15971,28499,-9,28498,-9,1,0,21,0,1,0,2,2,1,0,1,0,0,0,0,0,-968.27112,-9,1,-9,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,18.43,29.79,-9,-9,1.666666666666667,3,4,1,0,0,8,1,1,3184,92763.477,20556.764,0,0,0,-131.18384,415.37369 +13099,15972,28500,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,7.0965047,7.2330999,0,0,-1030.766,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9707065,53.72,24.31,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,852,330574.44,143381.28,99592.664,0,0,0,1491.4515 +13100,15973,28501,28502,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,0,0,0,12,-11,45.746326,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.04,55,54.79,55.86,8.333333333333334,1,1,0,0,0,7,2,1,443,1047744.1,10442.713,955580.13,31405.424,0,0,1502.7766 +13100,15973,28502,28501,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,6.1843052,5.9517803,12,11,32.889435,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9369831,54.79,55.86,51.04,55,10,1,1,0,0,0,7,2,1,443,1047744.1,10442.713,955580.13,31405.424,0,0,1502.7766 +13101,15974,28503,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,2,0,5.1511974,4.8680873,0,0,-988.96924,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0181677,5.1338606,44.32,38.2,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,349,109630.66,103699.79,156685.5,0,0,0,1118.4506 +13102,15975,28504,28505,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,9.1515188,8.911602,7.0469012,8,-3,-60.118088,0,3,3,2021,21,9,37,39,1,9,0,25.880671,25.880671,.05,.05,0,0,0,0,0,0,1,1,0,6.0438862,7.4721518,36.61,38.65,52.31,40.94,3.333333333333333,1,1,0,0,11,2,5,1,838.5,332940,64307.469,240320.09,0,0,0,3856.981 +13102,15975,28505,28504,-9,-9,1,0,61,0,0,0,3,3,-9,0,3,0,1.6174724,2.2768743,8,3,10.462252,0,3,3,2021,11,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,2.4057727,2.1203909,52.31,40.94,36.61,38.65,6.666666666666667,1,1,0,0,2,2,5,1,838.5,332940,64307.469,240320.09,0,0,0,3856.981 +13103,15976,28506,28510,-9,-9,1,1,32,1,3,0,3,3,-9,0,4,8.1152925,8.1160202,0,13,0,45.04842,0,3,2,2021,10,0,43,43,1,1,0,9.3370352,9.3370352,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,37,40.09,7,2,3,0,0,6,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28507,-9,28510,28506,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.7427,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28508,-9,28510,28506,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1063.8993,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28509,-9,28510,28506,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-957.57941,-9,2,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13103,15976,28510,28506,-9,-9,1,0,32,1,3,0,2,2,-9,0,2,0,0,0,13,0,-8.3262491,0,3,2,2021,14,2,0,0,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37,40.09,51,57,3.333333333333333,2,3,0,0,0,4,2,1,509.60001,145794.02,-12990.18,97510.711,78063.602,5873.9595,0,2632.6047 +13104,15977,28511,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,8.4895382,8.6068811,0,0,0,-1066.7384,-9,2,2,2021,11,2,42,0,1,2,0,10.149123,10.149123,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,46.89,-9,-9,8.333333333333334,1,1,0,0,6,8,4,0,884,-21423.777,97503.727,0,0,0,0,1222.4089 +13105,15978,28512,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1014.4764,0,-9,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.41,38.6,-9,-9,6.666666666666667,1,1,0,1,0,10,1,0,324,174332.11,0,283479.31,0,0,0,1284.1744 +13106,15979,28513,-9,28515,28514,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1157.261,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,5,1,1009.3333,141346.53,114638.58,117883.38,135789.39,44700.465,8125.1353,4312.1992 +13106,15979,28514,28515,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.2214947,9.0497942,0,18,-7,-40.183308,-9,2,1,2021,14,2,45,0,1,2,0,16.413158,16.413158,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.75,63.75,46.39,60.99,8.333333333333334,3,4,0,0,12,12,5,1,1009.3333,141346.53,114638.58,117883.38,135789.39,44700.465,8125.1353,4312.1992 +13106,15979,28515,28514,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.0048752,7.790822,0,12,7,-35.307777,0,-9,-9,2021,12,0,20,19,1,0,0,15.746573,15.746573,.05,.05,0,0,0,0,0,2,1,1,0,0,0,46.39,60.99,37.75,63.75,6.666666666666667,1,1,0,0,15,12,5,1,1009.3333,141346.53,114638.58,117883.38,135789.39,44700.465,8125.1353,4312.1992 +13107,15980,28516,28517,-9,-9,1,1,73,2,2,0,2,2,-9,0,1,0,7.9000974,7.8402739,52,3,-17.895906,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.576755,50.09,31.4,53.14,45.74,6.666666666666667,1,1,0,0,0,7,3,1,844.5,915157.19,606371.81,233276.8,0,0,0,2822.2288 +13107,15980,28517,28516,-9,-9,1,0,70,2,2,0,2,2,-9,0,3,6.2182522,6.4362645,0,52,-3,113.30149,0,-9,-9,2021,7,0,7,9,1,0,0,10.226217,10.226217,0,0,0,0,0,0,0,0,1,1,0,3.7105811,0,53.14,45.74,50.09,31.4,8.333333333333334,1,1,0,0,8,7,3,1,844.5,915157.19,606371.81,233276.8,0,0,0,2822.2288 +13108,15981,28518,28519,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,9.1138887,8.7144794,0,7,-4,-63.939949,0,2,2,2021,6,0,35,18,1,0,0,22.175674,22.175674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.39,56.71,0,4,2,0,0,11,4,5,1,1687,2327776,1420922.5,547311,0,0,0,6749.3037 +13108,15981,28519,28518,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,9.2237406,9.300663,0,7,4,14.564709,0,-9,-9,2021,6,0,35,40,1,0,0,36.496998,36.496998,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,62.39,56.71,5,1,1,0,0,11,4,5,1,1687,2327776,1420922.5,547311,0,0,0,6749.3037 +13109,15982,28520,28521,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,0,7.1276779,7.348846,19,-11,-46.838634,0,2,3,2021,7,0,0,24,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.083755,0,61.67,39.58,51,48,8.333333333333334,1,1,0,0,9,6,4,1,383.5,1014180.4,519780.31,451524.09,106727.41,0,4596.5078,3293.0088 +13109,15982,28521,28520,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.68398,8.3971272,0,7,11,-52.348583,-9,-9,-9,2021,10,0,40,0,1,1,0,14.177489,14.177489,0,0,0,0,0,0,0,0,0,0,0,7.2394147,0,51,48,61.67,39.58,7,1,1,0,0,1,6,4,1,383.5,1014180.4,519780.31,451524.09,106727.41,0,4596.5078,3293.0088 +13110,15983,28522,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.7401824,8.0483055,6.758317,0,0,-876.83093,0,3,2,2021,11,0,35,35,1,0,0,7.1282187,7.1282187,0,0,0,0,0,0,0,0,1,1,0,6.4389277,6.4500928,45.18,54.77,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,425,383608.78,0,260792.66,0,0,0,1843.2491 +13111,15984,28523,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,5,8.7373161,8.8102884,0,0,0,-952.23364,0,1,2,2021,17,4,32,32,1,4,0,22.590471,22.590471,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.28,61.68,-9,-9,8.333333333333334,4,2,0,0,11,8,5,1,574,365160.13,148851.89,0,0,0,0,2884.7949 +13112,15985,28524,28526,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.4374123,9.8146181,9.4345932,12,0,84.022781,0,-9,-9,2021,19,7,45,45,1,7,0,51.088196,51.088196,.05,.05,0,0,0,0,0,0,1,1,0,0,9.6009321,36.67,53.14,45.91,59.89,5,1,1,0,0,13,7,5,1,1018.6667,2346047.5,1589733.4,316584.78,0,11593.528,7977.6338,10079.435 +13112,15985,28525,-9,28526,28524,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.44373,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,1018.6667,2346047.5,1589733.4,316584.78,0,11593.528,7977.6338,10079.435 +13112,15985,28526,28524,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.4901485,7.3814573,0,12,0,-111.91605,0,1,1,2021,14,4,35,35,1,4,0,4.6146584,4.6146584,.05,.05,0,0,0,0,0,0,1,1,0,4.5188608,0,45.91,59.89,36.67,53.14,8.333333333333334,1,1,0,0,13,7,5,1,1018.6667,2346047.5,1589733.4,316584.78,0,11593.528,7977.6338,10079.435 +13113,15986,28527,28528,-9,-9,1,1,53,0,2,0,2,2,-9,0,5,8.5630932,8.7384119,0,19,7,97.091522,0,3,2,2021,0,0,35,23,1,0,0,16.000713,16.000713,.05,.05,0,0,0,0,0,0,1,1,0,9.2609386,0,57.06,57.76,54.09,34.23,10,1,1,0,0,12,10,5,1,388.5,1130756.9,730983.63,273112.94,41966.664,0,1112.293,7040.7627 +13113,15986,28528,28527,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.8054428,8.7219687,0,19,-7,67.774864,0,1,2,2021,6,0,8,15,1,0,0,100.1508,100.1508,.05,.05,0,0,0,0,0,0,1,1,0,6.6835999,0,54.09,34.23,57.06,57.76,0,1,1,0,0,12,10,5,1,388.5,1130756.9,730983.63,273112.94,41966.664,0,1112.293,7040.7627 +13114,15987,28529,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,5.4327521,5.4419913,0,0,-1074.5917,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.916399,5.5651922,60.69,53.18,-9,-9,10,1,1,0,0,11,9,2,1,300,555212.69,400734.03,184727.7,81863.125,0,0,.50519437 +13115,15988,28530,-9,28532,28533,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.6171,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13115,15988,28531,-9,28532,28533,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.76978,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13115,15988,28532,28533,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,6.7257166,6.5092168,0,9,5,21.616642,0,1,1,2021,8,0,11,0,1,0,0,8.6547718,8.6547718,0,0,0,0,0,0,0,2,1,1,0,2.8098764,0,58.15,52.91,54.2,57.49,8.333333333333334,1,1,0,0,6,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13115,15988,28533,28532,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.7521429,8.3934526,0,9,-5,19.468781,0,-9,-9,2021,10,0,40,39,1,0,0,15.603722,15.603722,.05,.05,.05,0,0,0,0,0,1,1,0,.91558522,0,54.2,57.49,58.15,52.91,8.333333333333334,1,1,0,0,9,10,4,1,766,340965.5,136874.14,245771.78,9104.7031,0,0,2654.8972 +13116,15989,28534,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,5,8.4840555,8.4539404,0,0,0,-1031.2528,0,-9,-9,2021,15,4,39,37,1,4,0,19.802631,19.802631,.05,.05,0,0,0,0,0,0,0,0,0,1.2864074,0,34.87,54.25,-9,-9,3.333333333333333,1,1,0,0,8,4,5,0,2895,-126789.64,40472.461,25687.977,57118.742,0,0,1561.3799 +13117,15990,28535,28536,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,6.7554002,6.7341976,46,0,-83.01577,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.829989,34.99,34.34,38.89,16.13,8.333333333333334,1,1,0,0,0,5,2,0,682.5,254202.81,167859.63,75312.781,0,0,0,2767.8047 +13117,15990,28536,28535,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,6.8337922,6.6609888,46,0,10.980577,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,128.67743,0,0,1,1,0,0,6.5341454,38.89,16.13,34.99,34.34,6.666666666666667,1,1,0,0,0,5,2,0,682.5,254202.81,167859.63,75312.781,0,0,0,2767.8047 +13118,15991,28537,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,7.9276829,7.9804273,0,0,0,-963.20697,0,-9,3,2021,12,0,40,40,1,0,0,7.9559875,7.9559875,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.16,44.66,-9,-9,3.333333333333333,1,1,0,0,7,5,4,0,868,70193.289,103751.96,0,0,0,0,1402.4006 +13118,15992,28538,-9,-9,28537,1,1,26,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1057.965,0,-9,3,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.35,50.73,-9,-9,5,1,1,1,1,5,5,1,0,150,0,0,0,0,0,0,-34.340958 +13119,15993,28539,28540,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,5.4185562,5.5508595,48,-4,-25.610374,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9017572,5.6635275,62.03,36.18,58.72,51.29,8.333333333333334,1,1,0,0,0,10,4,1,777,1588034.6,1254267,307834.91,0,0,0,3506.2261 +13119,15993,28540,28539,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.3334904,8.5510788,48,4,-75.192513,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7065516,8.3102522,58.72,51.29,62.03,36.18,8.333333333333334,1,1,0,0,0,10,4,1,777,1588034.6,1254267,307834.91,0,0,0,3506.2261 +13120,15994,28541,-9,-9,-9,1,0,51,0,2,0,3,3,-9,0,4,6.8022542,6.6716709,0,0,0,-1105.4203,0,3,2,2021,10,0,16,8,1,1,0,4.2390194,4.2390194,0,0,0,0,0,0,0,0,1,1,0,0,0,52,53,-9,-9,8,4,2,0,0,4,8,2,0,187.5,76003.68,0,0,0,0,0,1838.6189 +13120,15994,28542,-9,28541,-9,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.20056,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,2,0,187.5,76003.68,0,0,0,0,0,1838.6189 +13121,15995,28543,-9,-9,-9,1,0,55,0,1,0,2,2,-9,1,3,0,0,0,0,0,-964.01636,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.53,51,-9,-9,8.333333333333334,1,1,0,0,0,6,1,0,968.5,194009.66,0,0,0,0,0,3794.2332 +13121,15995,28544,-9,28543,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.9951,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,1,0,968.5,194009.66,0,0,0,0,0,3794.2332 +13122,15996,28545,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,4,8.6679306,8.650322,0,0,0,-979.22729,0,-9,-9,2021,18,5,40,40,1,5,0,18.611021,18.611021,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.17,45.06,-9,-9,5,1,1,0,0,2,12,5,1,2451,248230.8,-35393.188,32039.848,81059.555,0,0,2369.2622 +13123,15997,28546,28547,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,6.810061,6.9943867,7,-5,-89.293526,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5391159,6.8695683,40.88,59.72,42.03,42.92,6.666666666666667,1,1,0,0,0,4,3,1,444,827945.63,546748.13,204409.89,0,0,0,2288.5891 +13123,15997,28547,28546,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.9267216,7.1899185,7,5,-10.690536,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1016712,7.0044932,42.03,42.92,40.88,59.72,5,1,1,0,0,0,4,3,1,444,827945.63,546748.13,204409.89,0,0,0,2288.5891 +13124,15998,28548,28549,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,7.4462695,7.3452516,0,1,1,42.103104,-9,-9,-9,2021,10,0,36,0,1,1,0,4.7328801,4.7328801,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,32.53,44.92,7,1,1,0,0,1,4,4,0,544,75522.18,21982.063,97606.828,37730.551,369.44257,0,2000.3843 +13124,15998,28549,28548,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,8.3004122,7.7203069,0,1,-1,144.00708,0,2,2,2021,17,5,24,38,1,5,0,12.739715,12.739715,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.53,44.92,49,58,8.333333333333334,1,1,0,0,4,4,4,0,544,75522.18,21982.063,97606.828,37730.551,369.44257,0,2000.3843 +13124,15999,28550,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.1081219,8.4949131,0,0,0,-1110.0446,0,-9,-9,2021,14,4,35,36,1,4,0,9.2317877,9.2317877,0,0,0,0,0,0,0,0,0,0,0,0,0,48.23,48.01,-9,-9,6.666666666666667,1,1,0,0,5,4,4,0,345,67104.039,0,0,0,0,0,988.28802 +13125,16000,28551,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-924.14197,0,3,2,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.81,39.12,-9,-9,3.333333333333333,1,1,0,0,0,13,1,1,611,222292.39,0,0,0,0,0,1684.2428 +13126,16001,28552,28553,28554,-9,1,1,66,0,0,0,2,2,-9,0,2,8.5744686,8.9398012,5.792192,30,0,4.6641355,0,3,-9,2021,18,5,50,100,1,5,0,10.598877,10.598877,.05,.05,.05,0,0,0,0,0,1,1,0,2.9415774,5.8320613,34.42,36.67,52,53,5,2,3,0,0,13,5,4,1,1061.5,155549.06,68515.242,0,0,8185.5352,13.897324,3657.3135 +13126,16001,28553,28552,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,6.9289365,6.6972499,30,0,90.29496,0,-9,-9,2021,21,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4355927,52,53,34.42,36.67,1.666666666666667,2,3,0,0,3,5,4,1,1061.5,155549.06,68515.242,0,0,8185.5352,13.897324,3657.3135 +13126,16002,28554,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,5.3638282,5.5442638,0,0,-841.02472,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6808906,52,45,-9,-9,8,2,3,0,0,0,5,2,1,896,337163.06,-168780.69,210596.44,0,0,0,2093.0044 +13127,16003,28555,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,8.0034914,7.9917121,0,0,0,-1026.8696,0,-9,3,2021,17,5,50,60,1,5,0,8.0863876,8.0863876,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.71,64.88,-9,-9,1.666666666666667,1,1,0,0,8,10,4,1,575,397543.69,268504.66,0,0,0,0,611.96106 +13128,16004,28556,-9,-9,-9,1,0,46,0,0,0,3,3,-9,1,1,0,0,0,0,0,-935.71771,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,10.25,55.21,-9,-9,5,1,1,0,1,0,1,1,0,3147,0,0,0,0,0,0,264.55615 +13129,16005,28557,-9,28558,-9,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-858.60834,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,8,2,0,541.5,97336.75,0,0,0,12839.83,0,862.78735 +13129,16005,28558,-9,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,0,0,0,0,0,-1069.993,-9,1,-9,2021,19,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.04,38.83,-9,-9,8.333333333333334,4,2,0,0,9,8,2,0,541.5,97336.75,0,0,0,12839.83,0,862.78735 +13130,16006,28559,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,3,7.9795599,7.705821,0,0,0,-947.36279,0,2,2,2021,12,0,48,48,1,0,1,8.8645334,8.8645334,0,0,0,0,0,0,0,0,0,0,0,0,0,41.34,56.62,-9,-9,8.333333333333334,1,1,0,1,6,4,4,1,2002,-19589.826,0,0,0,0,0,1063.0713 +13131,16007,28560,28561,-9,-9,1,1,47,0,1,0,1,1,-9,0,3,9.0020094,8.7630539,0,1,1,-68.777885,-9,-9,-9,2021,8,0,40,0,1,0,0,21.136896,21.136896,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.33,55.93,55.36,51.57,6.666666666666667,1,1,0,0,10,4,5,1,1094,1012710.8,808386.75,101439.36,45121.23,1149.9529,8803.3887,3668.2654 +13131,16007,28561,28560,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.2341194,7.211338,0,18,-1,58.545345,-9,2,2,2021,9,1,2,0,1,1,0,72.276047,72.276047,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,46.33,55.93,8.333333333333334,1,1,0,0,10,4,5,1,1094,1012710.8,808386.75,101439.36,45121.23,1149.9529,8803.3887,3668.2654 +13131,16007,28562,-9,28561,28560,1,1,16,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1007.7285,-9,2,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,1,4,5,1,1094,1012710.8,808386.75,101439.36,45121.23,1149.9529,8803.3887,3668.2654 +13132,16008,28563,28564,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,0,6.6362257,6.9798808,8,1,-81.956032,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.956636,7.3928504,57.33,53.46,62.18,36.18,8.333333333333334,1,1,0,0,8,5,3,1,628.5,924702.19,842768.63,142984.63,145920.38,4355.3965,0,1073.8612 +13132,16008,28564,28563,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,6.6248927,7.2084732,8,-1,-39.774624,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.8572664,7.1038527,62.18,36.18,57.33,53.46,8.333333333333334,1,1,0,0,2,5,3,1,628.5,924702.19,842768.63,142984.63,145920.38,4355.3965,0,1073.8612 +13133,16009,28565,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1051.6915,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.14,30.1,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,813,-129407.05,0,0,0,0,0,0 +13134,16010,28566,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.3922563,7.2655196,0,0,0,-1034.7744,0,2,2,2021,10,0,15,15,1,0,0,9.7001972,9.7001972,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52.82,53.97,-9,-9,8.333333333333334,1,1,0,1,6,9,3,0,745,171101.45,16811.879,231904.34,0,0,0,1009.6362 +13134,16011,28567,-9,28566,-9,1,0,27,0,0,0,2,2,-9,0,3,8.3777075,8.4716301,0,0,0,-956.82709,0,1,2,2021,17,5,32,36,1,5,1,19.660748,19.660748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.82,56.45,-9,-9,6.666666666666667,1,1,0,0,10,9,5,0,1347,33746.863,22276.967,0,0,0,0,2101.1074 +13135,16012,28568,28569,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,6.0656581,6.2326941,58,3,31.070221,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1376066,6.4292045,52.82,53.97,57.09,46.7,8.333333333333334,1,1,0,0,5,10,2,1,1316.5,669143.38,136642.08,434348.94,0,0,0,833.99591 +13135,16012,28569,28568,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.184803,6.315927,58,-3,-2.6807899,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2148147,57.09,46.7,52.82,53.97,10,1,1,0,0,5,10,2,1,1316.5,669143.38,136642.08,434348.94,0,0,0,833.99591 +13136,16013,28570,-9,28571,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-937.9231,-9,1,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13136,16013,28571,28572,-9,-9,1,0,38,0,3,0,1,1,0,0,4,0,6.400207,6.6277089,2,-3,44.345123,-9,-9,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.406702,0,36.79,62.55,56.49,36.35,3.333333333333333,1,1,0,1,12,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13136,16013,28572,28571,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,7.7330227,7.9451499,0,2,3,-43.476173,0,2,2,2021,17,6,20,50,1,6,0,15.699835,15.699835,.05,.05,.05,0,0,0,1.3478074,2,1,1,0,0,0,56.49,36.35,36.79,62.55,8.333333333333334,1,1,0,0,11,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13136,16013,28573,-9,28571,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1038.6925,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,9,3,0,999.5,207926.14,7686.6182,224224,38543.25,0,0,2460.6587 +13137,16014,28574,28575,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,8.0355749,7.7213783,0,31,-1,98.957916,0,2,-9,2021,8,0,40,40,1,0,0,7.0456209,7.0456209,0,0,.05,0,0,0,0,0,0,0,0,9.2932615,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,10,9,4,1,326,457294.56,111929.97,334462.53,0,0,0,8107.1904 +13137,16014,28575,28574,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.9776888,7.6627593,0,31,1,89.061142,0,2,2,2021,10,1,22,22,1,1,0,13.115811,13.115811,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,10,9,4,1,326,457294.56,111929.97,334462.53,0,0,0,8107.1904 +13137,16015,28576,-9,28575,28574,1,1,26,0,0,0,2,2,-9,0,3,8.1937609,8.3594685,0,0,0,-1008.4778,0,2,2,2021,10,0,39,43,1,0,1,10.323618,10.323618,.05,.05,0,0,0,0,0,0,0,0,0,5.0444465,0,51.17,49.39,-9,-9,6.666666666666667,1,1,0,0,4,9,4,1,598,-86747.484,24059.553,0,0,5167.9546,0,1574.436 +13137,16016,28577,-9,28575,28574,1,0,22,0,0,0,1,1,-9,0,4,7.9058599,8.1119537,0,0,0,-1119.3656,0,2,1,2021,11,0,38,38,1,0,1,8.8926258,8.8926258,.05,.05,0,0,0,0,0,0,0,0,0,5.2530842,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,4,9,4,1,444,54264.668,38353.781,0,0,0,0,1381.8456 +13138,16017,28578,28580,-9,-9,1,1,38,0,2,0,1,1,-9,0,3,0,0,0,9,6,-122.82566,0,2,3,2021,10,1,0,0,3,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.99,51.28,48.29,49.79,6.666666666666667,1,1,0,0,6,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13138,16017,28579,-9,28580,28578,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-941.32965,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13138,16017,28580,28578,-9,-9,1,0,32,0,2,0,1,1,-9,0,2,8.5574026,8.6860046,0,9,-6,15.68429,0,2,2,2021,8,1,47,51,1,1,0,15.716553,15.716553,0,0,0,0,0,0,0,0,1,1,0,0,0,48.29,49.79,52.99,51.28,6.666666666666667,1,1,0,0,8,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13138,16017,28581,-9,28580,28578,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.47906,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,802.75,86830.18,15324.51,74927.984,73887.867,3047.3452,432.716,2563.8367 +13139,16018,28582,-9,28583,-9,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1023.3471,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,4,1,525,708603.5,569368.25,286184.88,99571.031,2660.6885,10245.211,2272.5095 +13139,16018,28583,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,2,0,8.4080038,8.3521519,0,0,-1075.1981,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.3140497,0,50.95,43.05,-9,-9,6.666666666666667,1,1,0,0,1,9,4,1,525,708603.5,569368.25,286184.88,99571.031,2660.6885,10245.211,2272.5095 +13140,16019,28584,-9,28588,28585,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-998.68304,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28585,28588,-9,-9,1,1,40,0,3,0,1,1,-9,0,5,9.6920013,9.3838921,0,16,0,-50.525337,0,2,2,2021,11,0,84,70,1,0,0,14.162813,14.162813,.05,.05,0,0,0,0,0,2,1,1,0,4.545382,0,54.1,59.11,37.27,62.66,8.333333333333334,1,1,0,0,15,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28586,-9,28588,28585,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1071.0143,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28587,-9,28588,28585,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1156.3883,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13140,16019,28588,28585,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.1584997,7.293664,0,16,0,29.392536,0,2,2,2021,20,7,20,20,1,7,0,9.4263935,9.4263935,.05,.05,0,0,0,0,0,2,1,1,0,3.1322107,0,37.27,62.66,54.1,59.11,8.333333333333334,1,1,0,0,12,10,5,0,519.20001,1051497.8,638971,390256.81,0,0,0,3928.854 +13141,16020,28589,28590,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,7.3458958,7.2298536,48,5,-27.177967,0,3,2,2021,7,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7400846,7.3222218,57,51,66.94,20.68,5,1,1,0,0,0,2,3,1,1633.5,423824.13,496196.75,35766.848,0,152444.97,0,2034.6261 +13141,16020,28590,28589,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.8537707,5.8093948,48,-5,136.65257,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7201743,5.7867875,66.94,20.68,57,51,8.333333333333334,1,1,0,0,0,2,3,1,1633.5,423824.13,496196.75,35766.848,0,152444.97,0,2034.6261 +13142,16021,28591,28592,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,9.1319571,9.416193,0,2,2,15.735443,-9,-9,-9,2021,18,6,80,0,1,6,0,15.786995,15.786995,.05,.05,0,0,0,0,0,0,0,0,0,1.5831596,0,52.89,22.95,43.61,56.01,8.333333333333334,1,1,0,0,12,12,5,1,1211,4540603.5,3891109,466465.88,232526.25,7788.8105,0,6493.4448 +13142,16021,28592,28591,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.6117134,8.6738663,0,2,-2,67.895996,0,3,3,2021,14,3,38,38,1,3,0,19.165758,19.165758,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.61,56.01,52.89,22.95,6.666666666666667,1,1,0,0,10,12,5,1,1211,4540603.5,3891109,466465.88,232526.25,7788.8105,0,6493.4448 +13142,16022,28593,-9,28592,28591,1,0,26,0,0,0,1,1,-9,0,2,8.1582613,7.9671426,0,0,0,-914.66675,0,2,-9,2021,14,3,37,37,1,3,1,9.366127,9.366127,0,0,0,0,0,0,0,0,0,0,0,0,0,28.6,53.56,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,724,-157277.31,0,0,0,0,0,879.94653 +13143,16023,28594,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,3,8.2096748,8.4871578,0,0,0,-962.21753,0,3,2,2021,11,1,49,55,1,1,0,8.6420584,8.6420584,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.17,51.53,-9,-9,6.666666666666667,2,3,0,0,13,8,4,0,1161,-56697.273,46909.625,0,0,0,0,2362.9692 +13144,16024,28595,28596,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9784455,7.1931696,7,2,42.657341,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9087892,6.873661,56.1,49.93,59.07,43.05,8.333333333333334,1,1,0,0,0,2,3,1,1189.5,699578.56,307841.78,197237.22,0,0,0,2489.6533 +13144,16024,28596,28595,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.6274662,6.4272833,7,-2,11.400397,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9943166,6.6276889,59.07,43.05,56.1,49.93,8.333333333333334,1,1,0,0,0,2,3,1,1189.5,699578.56,307841.78,197237.22,0,0,0,2489.6533 +13145,16025,28597,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1092.1514,-9,1,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,8,1,1,326,69169.289,0,0,0,0,0,0 +13146,16026,28598,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,0,7.571476,7.0707135,0,0,-950.89673,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.1338058,7.5228486,59.73,50.87,-9,-9,10,1,1,0,0,11,11,3,1,1924,71209.508,-40337.637,0,0,0,0,1080.0093 +13147,16027,28599,28600,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.5106678,7.9235373,5,-3,192.08426,0,3,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.5024233,7.5080061,51.83,57.2,51,48,8.333333333333334,1,1,0,0,1,5,3,1,983.5,878266.31,103404.58,314845,0,0,0,2640.9238 +13147,16027,28600,28599,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,0,0,5,3,-41.044228,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2382646,0,51,48,51.83,57.2,7,1,1,0,0,0,5,3,1,983.5,878266.31,103404.58,314845,0,0,0,2640.9238 +13148,16028,28601,-9,28604,28602,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.3502,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13148,16028,28602,28604,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,9.394475,9.3848619,0,14,1,40.255306,0,1,1,2021,20,7,50,50,1,7,0,29.571632,29.571632,.05,.05,0,0,0,0,0,0,0,0,0,7.8417268,0,26.01,63.78,48.18,61.8,5,1,1,0,0,9,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13148,16028,28603,-9,28604,28602,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.6698,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13148,16028,28604,28602,-9,-9,1,0,42,0,2,0,1,1,-9,0,5,0,0,0,14,-1,43.85873,0,2,2,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.5720425,0,48.18,61.8,26.01,63.78,8.333333333333334,1,1,0,0,2,9,5,1,1400,187618,177118.66,0,0,0,6259.4468,6418.8574 +13149,16029,28605,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,3,0,6.0715904,5.9656615,0,0,-1079.5918,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.0868483,52.9,39.64,-9,-9,5,1,1,0,0,0,6,2,1,4761,592863.75,43595.91,363551.59,0,0,0,1367.6942 +13150,16030,28606,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1553726,8.2975254,0,2,2,-10.940915,0,3,3,2021,11,0,38,38,1,1,0,15.429487,15.429487,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,55,57.33,53.46,7,1,1,0,0,10,9,4,0,1624,78483.266,36736.07,0,0,0,0,1867.0857 +13150,16031,28607,-9,-9,-9,1,0,39,0,0,0,2,2,-9,0,3,7.9931574,8.1889524,0,2,-2,-38.009624,0,2,2,2021,3,0,37,38,1,0,0,10.097216,10.097216,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,49,55,8.333333333333334,1,1,0,0,10,9,4,0,1605,5715.7334,53912.527,0,0,5541.2012,0,1484.6587 +13151,16032,28608,28610,-9,-9,1,1,37,1,2,0,2,2,-9,0,5,8.2445602,7.4330869,0,3,12,-27.910292,0,-9,-9,2021,6,0,60,60,1,0,0,4.5443172,4.5443172,0,0,0,0,0,0,0,0,1,0,1,0,0,47.58,63.43,60.02,56.42,8.333333333333334,1,1,0,0,2,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13151,16032,28609,-9,28610,28608,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-964.73499,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13151,16032,28610,28608,-9,-9,1,0,25,1,2,0,2,2,-9,0,5,6.9542732,7.0179586,0,3,-12,-52.481358,0,-9,-9,2021,6,0,16,28,1,0,0,10.07926,10.07926,0,0,0,0,0,0,0,0,1,0,1,0,0,60.02,56.42,47.58,63.43,8.333333333333334,1,1,0,0,11,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13151,16032,28611,-9,28610,28608,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-985.50793,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,63,-9,-9,7,1,1,-9,0,0,12,3,1,423.25,35332.402,24947.578,97324.078,85242.297,682.12256,-258.76361,3047.5479 +13152,16033,28612,28613,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,9.0692539,8.9211025,0,6,9,15.732875,0,2,2,2021,8,0,50,70,1,0,0,15.446717,15.446717,.05,.05,0,0,0,0,0,0,0,0,0,7.1708636,0,58.15,52.91,46.5,58.26,8.333333333333334,1,1,0,0,7,7,5,1,936.5,423533.19,10729.775,781018,295825.63,2950.1033,0,5133.2241 +13152,16033,28613,28612,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.3449259,8.1640701,0,6,0,45.247562,0,-9,-9,2021,12,0,42,52,1,0,0,12.542847,12.542847,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,58.15,52.91,6.666666666666667,1,1,0,0,3,7,5,1,936.5,423533.19,10729.775,781018,295825.63,2950.1033,0,5133.2241 +13153,16034,28614,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,7.2147999,7.3061399,0,0,-1054.3633,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2159033,7.5376291,50.88,26.88,-9,-9,8.333333333333334,1,1,0,0,0,10,3,0,87,400000.41,20700.809,321607.22,0,0,0,2490.6462 +13154,16035,28615,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.099205,8.190033,0,0,0,-1044.9633,0,-9,-9,2021,12,0,74,38,1,0,0,5.0351782,5.0351782,0,0,0,0,0,0,0,0,0,0,0,0,0,47.55,57.73,-9,-9,8.333333333333334,1,1,0,0,6,10,4,1,616,-90018.266,0,0,0,0,0,872.65527 +13155,16036,28616,28617,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.2540026,8.6994228,0,4,-7,32.23888,0,2,2,2021,11,2,43,49,1,2,0,10.190065,10.190065,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,51.77,58.57,8.333333333333334,1,1,0,0,9,7,5,1,521.5,22483.09,103086.65,0,0,8238.2852,0,3324.4138 +13155,16036,28617,28616,-9,-9,1,1,35,0,0,0,1,1,-9,0,4,8.3169699,8.104207,0,4,7,36.162228,0,-9,-9,2021,10,1,42,50,1,1,0,10.791525,10.791525,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,46.5,58.26,8.333333333333334,1,1,0,0,2,7,5,1,521.5,22483.09,103086.65,0,0,8238.2852,0,3324.4138 +13156,16037,28618,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,5,8.6319733,8.7184763,0,0,0,-1094.8995,0,2,2,2021,9,0,55,55,1,0,0,13.671401,13.671401,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,12,1,4,1,393,75145.125,-6358.6289,128018.3,70678.891,0,0,2417.4451 +13156,16037,28619,-9,28618,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-824.65887,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,4,1,393,75145.125,-6358.6289,128018.3,70678.891,0,0,2417.4451 +13157,16038,28620,-9,28621,28622,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.2585,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13157,16038,28621,28622,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.1440172,7.5309973,0,8,2,.19449227,0,-9,-9,2021,11,0,14,13,1,0,0,12.237726,12.237726,0,0,0,0,0,0,0,0,0,0,0,0,0,56.1,49.93,49.86,55.31,6.666666666666667,1,1,0,0,10,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13157,16038,28622,28621,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.50986,8.5026608,0,8,-2,-19.23192,0,-9,-9,2021,10,0,49,50,1,0,0,13.012434,13.012434,0,0,0,0,0,0,0,0,0,0,0,2.6659234,0,49.86,55.31,56.1,49.93,8.333333333333334,1,1,0,0,10,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13157,16038,28623,-9,28621,28622,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.95599,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,12,4,1,251.5,-67351.391,0,152443.22,92438.188,28172.555,0,1765.696 +13158,16039,28624,28625,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,8.3271503,8.6319256,0,7,-5,-175.32942,0,2,3,2021,7,0,10,12,1,0,0,48.173485,48.173485,0,0,0,0,0,0,0,7,1,1,0,0,0,56.94,49.53,56,37.82,10,1,1,0,0,8,5,4,1,1109.5,438707.94,125652.71,144464.13,0,2971.6099,0,3035.6362 +13158,16039,28625,28624,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.0614696,7.3691969,7,5,-33.931309,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9571071,7.5267816,56,37.82,56.94,49.53,8.333333333333334,1,1,0,0,2,5,4,1,1109.5,438707.94,125652.71,144464.13,0,2971.6099,0,3035.6362 +13159,16040,28626,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7775507,9.1777792,7.1686945,0,0,-946.84955,0,-9,-9,2021,10,0,42,42,1,0,0,17.160273,17.160273,.05,.05,0,0,0,0,.44210124,0,1,1,0,0,7.5558686,51.24,58.84,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,424,131047.21,57791.848,0,0,0,0,2914.0105 +13160,16041,28627,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,3,0,5.6095419,5.5460467,0,0,-1051.7603,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.050138,5.483398,55,45,-9,-9,8,1,1,0,0,0,7,2,1,1467,1016426.7,49731.137,633771.31,0,0,0,597.77802 +13161,16042,28628,28630,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,9.3129463,9.3080826,0,10,-7,74.743187,0,2,3,2021,6,0,28,28,1,0,0,60.34782,60.34782,0,0,.05,0,0,0,0,0,0,0,0,5.8985987,0,57.06,57.76,47.01,44.8,8.333333333333334,1,1,0,0,11,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13161,16042,28629,-9,28628,28630,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1061.049,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13161,16042,28630,28628,-9,-9,1,1,52,0,2,0,1,1,-9,0,2,8.8064518,9.0292759,0,10,7,18.638288,0,2,1,2021,14,4,21,20,1,4,0,41.173916,41.173916,.05,.05,.05,0,0,0,0,0,0,0,0,5.6633973,0,47.01,44.8,57.06,57.76,6.666666666666667,1,1,0,0,11,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13161,16042,28631,-9,28628,28630,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-940.93427,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7069297,0,50.05,55.41,-9,-9,10,1,1,0,0,0,10,5,1,1812.25,8932325,3855664.8,1641148.8,0,0,0,7195.376 +13162,16043,28632,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.1010218,8.2454233,0,0,0,-1030.2765,0,2,2,2021,26,10,37,37,1,10,0,12.290185,12.290185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.3,38.76,-9,-9,3.333333333333333,1,1,0,0,12,10,4,1,677,775057.69,425866.03,231925.59,26568.623,0,0,2453.1804 +13163,16044,28633,28634,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,7.8703966,8.0882082,0,25,-2,-35.603397,0,1,1,2021,8,0,25,27,1,0,0,12.605488,12.605488,0,0,0,0,0,0,0,14.5,0,0,0,2.3783388,0,51.24,58.84,57.33,53.46,8.333333333333334,1,1,0,0,13,8,5,1,473.5,593936.63,242389.22,486732.03,84383.016,6098.6484,0,4641.1943 +13163,16044,28634,28633,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.5990992,8.8076725,0,25,2,88.616562,0,2,3,2021,9,0,37,37,1,0,0,16.711542,16.711542,.05,.05,0,0,0,0,0,2,0,0,0,8.4244089,0,57.33,53.46,51.24,58.84,8.333333333333334,1,1,0,0,13,8,5,1,473.5,593936.63,242389.22,486732.03,84383.016,6098.6484,0,4641.1943 +13163,16045,28635,-9,28633,28634,1,0,19,0,0,0,2,2,-9,0,3,7.5886455,7.7370152,0,0,0,-998.97144,-9,1,1,2021,13,1,33,0,1,1,1,7.332212,7.332212,0,0,0,0,0,0,0,0,0,0,0,0,0,30.73,61.57,-9,-9,6.666666666666667,1,1,0,0,1,8,3,1,842,171949.31,0,0,0,0,0,1212.1062 +13164,16046,28636,-9,28638,-9,1,0,16,0,4,0,2,2,-9,0,3,0,4.614819,4.393805,0,0,-987.58698,-9,2,-9,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6781902,0,42,54,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,840,20441.82,0,0,0,0,0,2230.6448 +13164,16046,28637,28638,-9,-9,1,1,38,0,4,0,2,2,-9,1,2,0,0,0,4,4,0,0,-9,-9,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.38,46.32,25.1,30.31,3.333333333333333,1,1,0,0,0,1,1,0,840,20441.82,0,0,0,0,0,2230.6448 +13164,16046,28638,28637,-9,-9,1,0,34,0,4,0,2,2,-9,1,2,0,0,0,4,-4,0,0,2,2,2021,27,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.1,30.31,41.38,46.32,5,1,1,0,0,0,1,1,0,840,20441.82,0,0,0,0,0,2230.6448 +13165,16047,28639,28640,-9,-9,1,1,54,0,0,0,3,3,-9,0,3,7.9984484,8.2270212,0,29,5,-14.695862,0,3,2,2021,14,3,38,38,1,3,0,11.580617,11.580617,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,53.14,45.74,33.92,56.68,3.333333333333333,1,1,0,0,14,11,5,1,611,943261.25,799818.13,242306.19,0,0,0,4049.3074 +13165,16047,28640,28639,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.1696386,9.2754593,0,29,-5,93.067032,0,2,3,2021,17,6,38,38,1,6,0,26.311897,26.311897,.05,.05,0,0,0,0,0,2,0,0,0,0,0,33.92,56.68,53.14,45.74,8.333333333333334,1,1,0,0,13,11,5,1,611,943261.25,799818.13,242306.19,0,0,0,4049.3074 +13165,16048,28641,-9,28640,28639,1,0,21,0,0,1,2,0,0,0,5,0,0,0,0,0,-1075.491,-9,1,3,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4433923,0,32.7,60.75,-9,-9,8.333333333333334,1,1,0,0,4,11,1,1,1039,-60775.633,0,0,0,0,0,580.94708 +13165,16049,28642,-9,28640,28639,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-936.22296,-9,1,3,2021,13,0,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0451922,0,47.75,53.7,-9,-9,10,1,1,0,0,0,11,2,1,553,124037.13,0,0,0,0,0,1518.0922 +13166,16050,28643,28645,-9,-9,1,1,31,1,1,0,2,2,-9,0,4,9.0930214,9.5049362,0,4,-2,-35.904499,0,3,2,2021,7,0,47,45,1,0,0,21.34157,21.34157,.05,.05,0,0,0,0,0,0,0,0,0,4.7315149,0,54.79,55.86,54.2,57.49,8.333333333333334,1,1,0,0,7,7,5,1,622.66669,410938,225774.78,390011.25,172604.56,462.92252,0,3552.1184 +13166,16050,28644,-9,28645,28643,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-946.10651,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,5,1,622.66669,410938,225774.78,390011.25,172604.56,462.92252,0,3552.1184 +13166,16050,28645,28643,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,7.0983558,6.9461312,0,4,2,-115.14209,0,-9,-9,2021,7,0,44,42,1,0,0,3.2070065,3.2070065,.05,.05,0,0,0,0,0,0,0,0,0,6.4994292,0,54.2,57.49,54.79,55.86,10,1,1,0,0,8,7,5,1,622.66669,410938,225774.78,390011.25,172604.56,462.92252,0,3552.1184 +13167,16051,28646,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,5.0195589,5.1351461,0,0,-1044.8011,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8080311,5.0135412,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,379,629430,33398.094,716861.44,0,0,0,1640.9265 +13168,16052,28647,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.6585832,5.6407208,0,0,-954.87878,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8099022,57.33,53.46,-9,-9,1.666666666666667,1,1,0,0,0,13,2,1,2447,362640.91,268777.72,148514.97,0,0,0,1431.9539 +13169,16053,28648,-9,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,9.0433798,9.3233738,6.5970945,0,0,-1032.9822,0,2,2,2021,11,3,42,35,1,3,0,24.993053,24.993053,.05,.05,0,0,0,0,0,0,1,1,0,6.3334584,0,49.41,58.28,-9,-9,8.333333333333334,1,1,0,0,13,12,5,1,201,1298038.5,1043570,116747.09,53409.41,959.29932,0,3543.5522 +13170,16054,28649,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,7.3442283,7.5092554,6.5329986,0,0,-1093.7899,0,3,2,2021,19,4,25,25,1,4,0,8.8851995,8.8851995,0,0,0,0,0,0,0,0,1,1,0,0,6.7059841,46.09,20.01,-9,-9,3.333333333333333,1,1,0,0,11,2,3,1,1333,182912.33,10234.075,49494.648,0,0,742.12909,1295.5869 +13171,16055,28650,-9,-9,-9,1,1,46,0,0,0,1,1,-9,0,3,8.9885378,9.2496119,0,0,0,-1058.3324,0,-9,-9,2021,18,6,60,50,1,6,0,20.065271,20.065271,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.11,55.31,-9,-9,3.333333333333333,1,1,0,0,6,9,5,1,442,537125,332602.03,299559.47,202737.23,0,0,3215.1282 +13172,16056,28651,28652,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8383965,8.0542421,5.5564384,37,0,-102.68731,0,2,3,2021,8,0,23,23,1,0,0,12.937828,12.937828,0,0,0,0,0,0,0,0,0,0,0,4.3924332,5.8546157,54.2,57.49,60.26,41.6,8.333333333333334,1,1,0,0,13,9,3,1,1190.5,423826.44,238683.03,284891.06,140037.59,0,0,1796.9133 +13172,16056,28652,28651,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,0,0,38,0,71.558899,-9,3,3,2021,7,0,0,0,3,0,0,0,0,.05,.05,0,1,0,0,0,0,0,0,0,0,0,60.26,41.6,54.2,57.49,8.333333333333334,1,1,1,0,12,9,3,1,1190.5,423826.44,238683.03,284891.06,140037.59,0,0,1796.9133 +13173,16057,28653,28654,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.2328916,6.0388579,49,4,83.179108,0,3,3,2021,11,0,0,10,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5689702,5.9353614,53.14,51.28,57.27,41.15,8.333333333333334,1,1,0,0,12,9,2,1,394.5,1040020.9,276933.56,313625.56,0,0,0,1874.5468 +13173,16057,28654,28653,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,5.4412847,6.1519661,6.1364012,49,-4,-16.835363,0,3,3,2021,7,0,2,3,1,0,0,16.985188,16.985188,0,0,0,0,0,0,0,0,1,1,0,5.6948094,5.8477097,57.27,41.15,53.14,51.28,8.333333333333334,1,1,0,0,12,9,2,1,394.5,1040020.9,276933.56,313625.56,0,0,0,1874.5468 +13174,16058,28655,28656,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3287506,8.0543747,0,21,0,-8.345314,0,-9,-9,2021,11,0,36,41,1,0,0,12.55664,12.55664,0,0,0,0,0,0,0,0,1,1,0,0,0,58.9,37.87,60.1,30.88,8.333333333333334,1,1,0,0,12,13,5,1,529.5,686390.88,390391.25,293464.38,96291.391,0,1589.1094,2999.9907 +13174,16058,28656,28655,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.2812271,8.3880892,0,26,0,-82.272598,0,-9,-9,2021,7,0,37,37,1,0,0,13.93223,13.93223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.1,30.88,58.9,37.87,6.666666666666667,1,1,0,0,12,13,5,1,529.5,686390.88,390391.25,293464.38,96291.391,0,1589.1094,2999.9907 +13175,16059,28657,28658,-9,-9,1,0,70,1,0,0,1,1,-9,0,4,0,6.0780444,5.5397425,10,1,-86.32019,0,2,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8662882,5.7675886,54.2,57.49,43.32,52.98,6.666666666666667,1,1,0,0,4,4,3,1,206.33333,227839.08,314154.69,0,0,8920.0742,2773.8096,4423.2163 +13175,16059,28658,28657,-9,-9,1,1,69,1,0,0,1,1,-9,0,3,0,7.2591214,7.7168007,10,-1,21.677031,0,-9,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.302237,43.32,52.98,54.2,57.49,3.333333333333333,1,1,0,0,6,4,3,1,206.33333,227839.08,314154.69,0,0,8920.0742,2773.8096,4423.2163 +13175,16059,28659,-9,28657,28658,1,1,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-1026.9994,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,6,-9,0,0,4,3,1,206.33333,227839.08,314154.69,0,0,8920.0742,2773.8096,4423.2163 +13176,16060,28660,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.76296,5.8880596,0,0,-1078.6466,0,-9,-9,2021,24,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2226806,0,28.6,27.36,-9,-9,5,1,1,0,0,0,10,2,0,652,676659.38,162983.69,203372.77,0,0,0,1130.9971 +13177,16061,28661,-9,28663,28662,1,1,29,0,0,0,1,1,-9,0,2,7.4617844,7.2687187,0,0,0,-885.15369,0,1,1,2021,16,4,44,30,1,4,0,4.4877667,4.4877667,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.56,52.17,-9,-9,1.666666666666667,1,1,0,1,6,5,3,1,451,-58777.074,35230.176,0,0,1066.989,0,1101.76 +13177,16062,28662,28663,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,0,0,0,2,0,16.452538,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.98,44.6,8.333333333333334,1,1,0,0,0,5,5,1,1612.5,1913488.8,1117960.1,317170.75,0,0,0,3748.0596 +13177,16062,28663,28662,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,0,8.4140482,8.7481117,2,0,-81.926147,0,-9,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.8630192,8.9578142,41.98,44.6,54.2,57.49,6.666666666666667,1,1,0,0,0,5,5,1,1612.5,1913488.8,1117960.1,317170.75,0,0,0,3748.0596 +13178,16063,28664,28665,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,8,-1,-18.767195,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,5.7732377,0,55.25,25,64.55,36.47,6.666666666666667,2,3,0,0,0,8,2,1,137.5,-84455.102,0,0,0,0,0,1374.271 +13178,16063,28665,28664,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,4.6072807,4.6126275,8,1,-54.764297,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1023889,4.9380031,64.55,36.47,55.25,25,8.333333333333334,2,3,0,0,4,8,2,1,137.5,-84455.102,0,0,0,0,0,1374.271 +13179,16064,28666,-9,28667,-9,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-935.62787,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,356.5,44008.617,0,0,0,0,0,1924.0525 +13179,16064,28667,-9,-9,-9,1,0,41,0,0,0,2,2,-9,1,2,0,0,0,0,0,-931.99542,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.75,28.9,-9,-9,5,1,1,0,0,0,12,1,0,356.5,44008.617,0,0,0,0,0,1924.0525 +13180,16065,28668,28669,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.2553296,7.2012086,35,6,6.9448957,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0733762,7.5789809,58.15,52.91,52.99,38.05,10,1,1,0,0,0,1,2,1,298.5,713298.63,249092.34,182064.41,0,0,0,2925.9028 +13180,16065,28669,28668,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,35,-6,1.8463962,0,-9,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,38.05,58.15,52.91,6.666666666666667,1,1,0,0,0,1,2,1,298.5,713298.63,249092.34,182064.41,0,0,0,2925.9028 +13180,16066,28670,-9,28669,28668,1,0,28,0,0,0,1,1,-9,0,4,5.9342008,5.7663479,0,0,0,-975.53925,0,2,2,2021,14,3,15,0,1,3,0,2.6408753,2.6408753,0,0,0,0,0,0,0,0,1,1,0,4.601233,0,39.22,61.48,-9,-9,6.666666666666667,1,1,0,0,1,1,2,1,1803,-59008.238,0,0,0,0,0,26.841267 +13180,16067,28671,-9,28669,28668,1,1,25,0,0,0,1,1,-9,0,5,0,0,0,0,0,-846.57556,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,0,1,1,1,1294,-16985.791,0,0,0,0,0,0 +13181,16068,28672,-9,28673,-9,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-955.58453,-9,3,-9,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,658,88890.008,71030.656,40962.141,0,0,1657.7271,1742.157 +13181,16068,28673,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,7.4651914,7.6074114,0,0,0,-983.66327,0,2,2,2021,16,4,25,26,1,4,0,10.103797,10.103797,.05,.05,0,0,0,0,0,2,1,1,0,0,0,17.82,62.57,-9,-9,1.666666666666667,1,1,0,1,13,12,2,1,658,88890.008,71030.656,40962.141,0,0,1657.7271,1742.157 +13181,16069,28674,-9,28673,-9,1,0,22,0,1,1,2,0,0,0,5,0,0,0,0,0,-967.815,-9,3,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.61,61.54,-9,-9,6.666666666666667,1,1,0,0,4,12,1,1,807,110396.8,0,0,0,0,0,701.13129 +13182,16070,28675,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,2,7.9296746,8.2467299,0,0,0,-919.18738,0,3,-9,2021,26,10,40,40,1,10,1,7.9190845,7.9190845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.12,53.4,-9,-9,3.333333333333333,1,1,0,1,3,4,4,1,114,-236228.16,55493.152,0,0,0,0,633.89496 +13183,16071,28676,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1037.3667,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.51,24.23,-9,-9,5,1,1,1,1,1,12,1,0,313,260686.31,0,0,0,0,876.8559,794.69598 +13184,16072,28677,28678,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,0,0,33,3,-104.15772,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,42.555809,0,0,1,1,0,0,0,43.96,37.54,52.97,30.03,8.333333333333334,1,1,0,0,0,2,2,1,629.5,218438.75,0,141429.13,0,0,0,1213.2228 +13184,16072,28678,28677,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,4.8884835,4.9136505,33,-3,20.911375,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,14.156549,0,120,1,1,0,5.5811534,4.6688743,52.97,30.03,43.96,37.54,6.666666666666667,1,1,0,0,0,2,2,1,629.5,218438.75,0,141429.13,0,0,0,1213.2228 +13185,16073,28679,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.2822714,8.5473814,0,0,0,-991.71753,0,2,2,2021,12,0,45,42,1,0,0,13.840327,13.840327,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,5,1,1,0,0,10,7,5,1,295,-2613.78,0,0,0,0,0,1859.491 +13186,16074,28680,28681,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,6.0940609,6.0393219,0,39,-2,-60.343838,0,3,3,2021,7,0,16,0,1,0,0,3.4630272,3.4630272,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.99,52.49,31.69,41.13,6.666666666666667,1,1,0,0,2,9,3,0,938,137437.52,-26131.18,0,0,0,0,1665.5012 +13186,16074,28681,28680,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,7.9668088,8.3184853,6.6060953,39,2,-38.197262,0,-9,3,2021,11,0,58,41,1,0,0,5.7865391,5.7865391,.05,.05,0,0,0,0,0,0,0,0,0,0,6.6273918,31.69,41.13,38.99,52.49,5,1,1,0,0,9,9,3,0,938,137437.52,-26131.18,0,0,0,0,1665.5012 +13186,16075,28682,-9,28680,28681,1,0,30,0,0,0,2,2,-9,0,3,8.0071135,7.8333602,0,0,0,-839.40576,0,2,3,2021,13,1,88,54,1,1,1,3.4995067,3.4995067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.79,57.73,-9,-9,5,1,1,0,0,8,9,3,0,1326,-101643.48,16615.713,0,0,-1041.0645,3306.635,963.98242 +13186,16076,28683,-9,28680,28681,1,1,23,0,0,0,2,2,-9,0,3,7.8177252,7.5715137,0,0,0,-1002.1504,0,2,3,2021,12,0,35,25,1,2,1,7.9381881,7.9381881,0,0,0,0,0,0,0,0,0,0,0,0,0,37.52,32.51,-9,-9,5,1,1,0,1,5,9,3,0,561,-51588.363,0,0,0,0,0,697.02563 +13187,16077,28684,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.0317407,7.04107,5.2558379,0,0,-920.11218,0,2,2,2021,6,0,20,20,1,0,0,7.0017161,7.0017161,.05,.05,0,0,0,0,0,0,1,1,0,4.802669,4.7546825,55.09,55.87,-9,-9,0,1,1,0,0,13,7,3,1,246,261349.5,213386.66,0,0,0,0,1509.0541 +13187,16078,28685,-9,28684,-9,1,0,25,0,0,0,2,2,-9,0,4,8.1128626,8.0121374,0,0,0,-1002.0541,0,2,-9,2021,12,0,39,37,1,0,1,9.2876701,9.2876701,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.71,62.41,-9,-9,8.333333333333334,1,1,0,0,10,7,4,1,2204,155673.27,52295.289,0,0,0,0,906.91534 +13187,16079,28686,-9,28684,-9,1,0,21,0,0,0,2,2,-9,0,4,7.779676,7.668313,0,0,0,-1063.5413,0,2,-9,2021,16,6,16,-9,1,6,1,16.62079,16.62079,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.46,56.91,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,194,134912.06,-9264.3906,0,0,0,0,1090.077 +13188,16080,28687,-9,28689,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.7396,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,4,2,-9,0,0,5,1,0,1183,13506.614,0,0,0,0,0,1886.6903 +13188,16080,28688,-9,28689,-9,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-885.13373,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,5,1,0,1183,13506.614,0,0,0,0,0,1886.6903 +13188,16080,28689,-9,-9,-9,1,0,25,0,2,0,2,2,-9,1,2,0,0,0,0,0,-1006.0438,0,3,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,35.24,-9,-9,6.666666666666667,4,2,0,0,0,5,1,0,1183,13506.614,0,0,0,0,0,1886.6903 +13189,16081,28690,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.7275,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.641243,0,59.27,31.95,-9,-9,8.333333333333334,1,1,0,0,7,13,1,1,363,149734.69,0,0,0,0,0,-182.28325 +13190,16082,28691,28692,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,7.8192139,7.729465,0,30,-2,-37.330017,0,2,2,2021,19,7,35,34,1,7,0,7.2265115,7.2265115,.05,.05,0,0,0,0,0,2,1,1,0,0,0,36.33,56.18,42.39,50.87,6.666666666666667,1,1,0,0,15,6,4,1,240,92001.039,-24493.051,0,0,0,3684.4863,3144.8108 +13190,16082,28692,28691,-9,-9,1,1,52,0,1,0,2,2,-9,0,4,8.1819906,8.2736149,0,30,2,-16.903637,0,2,2,2021,11,0,84,84,1,0,0,6.1068134,6.1068134,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.39,50.87,36.33,56.18,8.333333333333334,1,1,0,0,15,6,4,1,240,92001.039,-24493.051,0,0,0,3684.4863,3144.8108 +13191,16083,28693,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,0,0,0,0,0,-882.19989,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.64,54.12,-9,-9,5,1,1,0,0,0,13,1,0,492,137090.75,0,0,0,0,0,395.29749 +13191,16083,28694,-9,28693,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1061.9479,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,1,0,492,137090.75,0,0,0,0,0,395.29749 +13191,16084,28695,-9,28693,-9,1,1,23,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1000.8848,0,2,-9,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.37,57.28,-9,-9,6.666666666666667,1,1,1,0,0,13,1,0,1231,-220532.64,0,0,0,0,0,1270.1779 +13192,16085,28696,28697,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,6.386981,6.4816384,42,-1,83.883194,0,3,3,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.2483821,39.26,31.07,44.75,56.39,6.666666666666667,1,1,0,0,9,1,5,1,818.5,973467.19,487630.41,357818.19,0,0,0,3443.8582 +13192,16085,28697,28696,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,9.0921421,9.05756,6.7628803,42,1,-14.192871,0,3,3,2021,14,2,41,44,1,2,0,25.707237,25.707237,0,0,0,0,0,0,0,0,0,0,0,7.6752348,7.3161845,44.75,56.39,39.26,31.07,6.666666666666667,1,1,0,0,10,1,5,1,818.5,973467.19,487630.41,357818.19,0,0,0,3443.8582 +13193,16086,28698,28700,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,7.0345454,6.9815192,0,8,0,25.009113,0,-9,-9,2021,12,0,4,0,1,2,0,26.12956,26.12956,0,0,.05,0,0,0,0,0,1,1,0,3.1040373,0,41.47,58.08,49.58,55.59,8.333333333333334,1,1,0,0,5,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13193,16086,28699,-9,28698,28700,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-907.76147,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13193,16086,28700,28698,-9,-9,1,1,35,0,2,0,1,1,-9,0,3,9.1626768,9.1964626,0,8,0,-51.761772,0,2,2,2021,11,0,38,38,1,0,0,27.254299,27.254299,0,0,.05,0,0,0,0,0,1,1,0,0,0,49.58,55.59,41.47,58.08,8.333333333333334,4,5,0,0,9,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13193,16086,28701,-9,28698,28700,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.4537,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,7,5,1,931.75,529119.63,148897.33,442812.31,166794.36,0,13979.395,3530.6665 +13194,16087,28702,28704,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,8.502739,8.5963707,0,10,7,-111.54372,0,1,2,2021,9,0,40,45,1,1,0,14.613054,14.613054,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,41.62,42.02,8,1,1,0,0,1,13,5,1,872,1609119.8,79896.336,463833.13,290291.59,0,0,5384.4307 +13194,16087,28703,-9,28704,28702,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1149.7916,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,872,1609119.8,79896.336,463833.13,290291.59,0,0,5384.4307 +13194,16087,28704,28702,-9,-9,1,0,42,0,1,0,1,1,-9,0,2,8.9142675,8.9905109,0,10,-7,-60.41983,0,-9,-9,2021,18,5,40,55,1,5,0,21.214596,21.214596,.05,.05,0,0,0,0,0,14.5,1,1,0,5.8765864,0,41.62,42.02,51,56,3.333333333333333,1,1,0,0,13,13,5,1,872,1609119.8,79896.336,463833.13,290291.59,0,0,5384.4307 +13195,16088,28705,28706,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.1017637,6.0754375,50,-4,-55.158257,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.9498162,57.33,53.46,54.89,44.93,10,1,1,0,0,4,12,4,1,385,1245954,567725,299803.44,0,0,0,3018.2483 +13195,16088,28706,28705,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,8.4353504,8.5068922,50,4,-33.376991,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.3299074,54.89,44.93,57.33,53.46,8.333333333333334,1,1,0,0,1,12,4,1,385,1245954,567725,299803.44,0,0,0,3018.2483 +13196,16089,28707,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,7.5908394,7.80516,0,0,-940.68018,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7629781,7.983789,48.12,42.71,-9,-9,6.666666666666667,1,1,0,0,7,7,4,1,1389,1095899.9,430512.28,225500.22,0,0,-21.190187,2085.6643 +13197,16090,28708,-9,-9,-9,1,0,90,0,0,0,1,1,-9,0,4,0,6.9348588,6.9179072,0,0,-959.82861,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2881007,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,250,390429.75,251474.81,273831.97,0,0,0,1497.5223 +13197,16091,28709,-9,28708,-9,1,1,61,0,0,0,3,3,-9,0,3,7.8884287,7.8157749,0,0,0,-996.46906,0,3,2,2021,19,7,39,39,1,7,0,7.0316515,7.0316515,.05,.05,0,0,0,0,0,7,1,1,0,1.3119282,0,39.37,58.81,-9,-9,3.333333333333333,1,1,0,0,10,9,3,1,457,401936.56,216789.25,0,0,0,885.97742,816.80377 +13198,16092,28710,28714,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.1647081,8.4035139,0,5,1,3.4572177,0,3,2,2021,9,0,39,39,1,0,0,11.033716,11.033716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.02,47.84,63.41,39.7,1.666666666666667,1,1,0,0,8,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28711,-9,28714,28710,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.56317,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.63,58.79,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28712,-9,28714,28710,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.3915,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28713,-9,28714,28710,1,1,16,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1018.2242,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.35,57.84,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13198,16092,28714,28710,-9,-9,1,0,45,0,3,0,2,2,-9,1,3,6.9558825,7.119679,0,5,-1,118.26902,0,3,2,2021,8,0,25,22,1,0,0,5.347446,5.347446,0,0,0,0,0,0,0,0,1,1,0,0,0,63.41,39.7,49.02,47.84,6.666666666666667,1,1,0,0,8,13,3,1,1212.4,300928.59,113826.46,201736.34,68097.023,4318.8398,0,3215.2864 +13199,16093,28715,28716,-9,-9,1,1,54,0,0,0,3,3,-9,0,4,6.7292504,6.3714089,0,6,3,19.40114,0,2,2,2021,8,0,45,45,1,0,0,1.8593262,1.8593262,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.44,50.84,61.27,46.03,3.333333333333333,1,1,0,0,7,5,2,1,320.5,109128.44,17453.027,0,0,0,0,467.91983 +13199,16093,28716,28715,-9,-9,1,0,51,0,0,0,3,3,-9,1,4,0,0,0,6,-3,35.218109,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,2.9645553,0,61.27,46.03,41.44,50.84,8.333333333333334,1,1,0,0,1,5,2,1,320.5,109128.44,17453.027,0,0,0,0,467.91983 +13199,16094,28717,-9,28716,28715,1,1,24,0,0,0,2,2,-9,0,5,8.3949347,8.50387,0,0,0,-972.13568,0,3,3,2021,7,0,34,20,1,0,1,16.599775,16.599775,0,0,0,0,0,0,0,0,1,1,0,0,0,52.13,57.22,-9,-9,10,1,1,0,0,7,5,5,1,171,-41743.938,0,0,0,0,0,2152.9395 +13200,16095,28718,28719,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,44,-1,44.365395,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.26,16.35,55.78,47.42,10,1,1,0,0,0,6,2,1,213,378694.56,115124.09,137393.88,0,0,0,2189.2834 +13200,16095,28719,28718,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,7.0498409,7.4356322,43,1,-188.39075,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.0929623,55.78,47.42,59.26,16.35,10,1,1,0,0,0,6,2,1,213,378694.56,115124.09,137393.88,0,0,0,2189.2834 +13201,16096,28720,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,8.4415712,8.3545542,0,0,-1100.475,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6623769,8.291729,50.62,53.79,-9,-9,6.666666666666667,1,1,0,0,9,8,4,1,238,555973.19,388866.31,392870.47,0,0,0,2191.3281 +13202,16097,28721,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.8840523,6.8585191,0,0,-976.70947,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.9365783,6.6027226,59.48,46.97,-9,-9,8.333333333333334,1,1,0,0,13,7,2,1,220,190954.27,42980.656,0,0,0,0,1176.8147 +13203,16098,28722,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-963.25983,0,3,2,2021,15,2,0,0,4,2,0,0,0,0,0,0,1,0,31.345869,0,0,1,1,0,0,0,23.4,23.46,-9,-9,0,1,1,0,1,2,1,1,1,585,0,0,0,0,0,0,709.41553 +13203,16099,28723,-9,28722,-9,1,0,26,0,0,0,2,2,-9,0,4,8.0648489,7.925271,0,0,0,-945.78857,0,3,3,2021,10,2,42,42,1,2,0,7.1155524,7.1155524,.05,.05,0,0,0,0,0,27,1,1,0,0,0,49.46,56.91,-9,-9,3.333333333333333,1,1,0,0,5,1,4,1,293,17661.145,0,0,0,0,338.01886,1053.4561 +13204,16100,28724,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.9893508,5.8168826,0,0,-980.04419,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3039799,56.6,33.83,-9,-9,6.666666666666667,1,1,0,0,0,12,2,1,314,558782.75,88449.227,153315.45,0,0,0,792.22394 +13205,16101,28725,-9,28726,28727,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.07507,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13205,16101,28726,28727,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,8.3619146,8.1244202,0,10,0,-48.390102,-9,2,2,2021,8,0,20,0,1,0,0,25.811821,25.811821,.05,.05,0,0,0,0,0,0,0,0,0,6.8310652,0,44.49,61.79,51,56,10,1,1,0,0,6,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13205,16101,28727,28726,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.4944954,9.8554697,0,1,0,135.47993,-9,-9,-9,2021,9,0,50,0,1,1,0,45.082626,45.082626,.05,.05,0,0,0,0,0,0,0,0,0,6.8554764,0,51,56,44.49,61.79,8,1,1,0,0,1,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13205,16101,28728,-9,28726,28727,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-917.36407,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,525.25,65123.313,609.448,256230.02,180343.25,0,0,18305.152 +13206,16102,28729,28730,-9,-9,1,0,31,1,2,0,1,1,-9,0,4,7.0801511,7.1915708,0,2,0,46.758862,0,2,2,2021,6,1,24,25,1,1,0,5.3437262,5.3437262,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,51.83,57.2,10,2,3,0,0,7,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13206,16102,28730,28729,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,6.8937554,7.0541682,5.4458213,2,0,29.191334,0,2,2,2021,17,6,16,30,1,6,0,6.0526071,6.0526071,.05,.05,0,0,0,0,0,0,1,1,0,5.0541816,0,51.83,57.2,57.73,54.53,6.666666666666667,2,3,0,0,8,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13206,16102,28731,-9,28729,28730,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.5116,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13206,16102,28732,-9,28729,28730,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.9363,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,2,1,1344,-66509.68,9101.1787,133926.53,87954.781,0,-312.7854,2793.0686 +13207,16103,28733,28734,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,7.0565882,7.3795328,5.8413978,49,-4,93.853592,0,3,3,2021,9,0,20,25,1,0,0,7.5831542,7.5831542,.05,.05,0,0,0,0,0,0,1,1,0,0,5.7439899,51.32,50.83,54.79,55.86,5,1,1,0,0,10,10,3,1,2254.5,374756.38,82905.711,262887.25,0,0,0,2714.0183 +13207,16103,28734,28733,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,7.6864185,7.4428434,0,49,4,69.905388,0,3,3,2021,7,0,45,40,1,0,0,4.5171628,4.5171628,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,51.32,50.83,1.666666666666667,1,1,0,0,11,10,3,1,2254.5,374756.38,82905.711,262887.25,0,0,0,2714.0183 +13208,16104,28735,28736,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,0,0,45,-5,18.71611,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9986503,0,52.4,52.91,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,1,483,1543546.3,659680.25,762714.75,0,0,0,4025.6841 +13208,16104,28736,28735,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,8.7784166,8.2898645,45,5,-71.339249,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0673723,8.4693327,57.16,56.15,52.4,52.91,8.333333333333334,1,1,0,0,0,4,4,1,483,1543546.3,659680.25,762714.75,0,0,0,4025.6841 +13209,16105,28737,-9,28739,28740,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.04187,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13209,16105,28738,-9,28739,28740,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1081.4797,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13209,16105,28739,28740,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,7.2575731,7.4004359,6.0967455,7,3,-52.530193,0,-9,-9,2021,10,0,25,30,1,0,0,6.3812399,6.3812399,.05,.05,0,0,0,0,0,0,1,1,0,6.9142489,0,60.44,46.58,30.14,51.22,8.333333333333334,1,1,0,0,7,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13209,16105,28740,28739,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.8668861,8.4747925,0,7,-3,77.716713,0,2,2,2021,12,0,42,42,1,0,0,15.939981,15.939981,.05,.05,0,0,0,0,0,2,1,1,0,0,0,30.14,51.22,60.44,46.58,3.333333333333333,1,1,0,0,13,4,4,1,462.5,248056.48,308467.66,100723.35,90433.844,0,0,3482.9634 +13210,16106,28741,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,5.7398405,5.9887943,0,0,-1076.6053,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6808462,5.8495941,57.18,42.93,-9,-9,10,1,1,0,0,0,6,2,1,1671,503262.38,-110930.09,252944.92,0,0,0,708.22644 +13211,16107,28742,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,5,0,4.562427,4.3969569,0,0,-961.42725,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8452187,0,50.98,50.85,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,704,360519.09,0,313453.25,0,0,-1287.1855,1625.8713 +13212,16108,28743,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.735568,8.842411,0,0,0,-1073.5267,0,1,2,2021,5,0,40,46,1,0,0,19.169867,19.169867,.05,.05,0,0,0,0,0,0,0,0,0,4.1426778,0,54.2,57.49,-9,-9,8.333333333333334,4,2,0,0,11,2,5,1,1192,873917.63,478996.41,303997.03,25121.674,0,0,3165.0681 +13213,16109,28744,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,6.575706,6.9738302,6.0776854,0,0,-1096.1044,0,2,2,2021,14,2,16,18,1,2,0,5.6705818,5.6705818,0,0,0,0,0,0,0,0,1,1,0,7.060791,0,47.32,42.17,-9,-9,3.333333333333333,1,1,0,0,2,7,2,0,1072.5,119855.15,0,0,0,0,4332.4502,1484.3901 +13213,16109,28745,-9,28744,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.13354,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,1072.5,119855.15,0,0,0,0,4332.4502,1484.3901 +13214,16110,28746,-9,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.6162767,8.7636747,5.8992505,0,0,-823.54059,0,2,3,2021,8,0,50,43,1,0,0,12.050337,12.050337,.05,.05,0,0,0,0,0,0,0,0,0,6.1998143,0,49,55,-9,-9,5,1,1,0,0,8,7,4,0,616.66669,243884.86,33125.328,195012.44,9239.6182,0,0,2397.3938 +13214,16110,28747,-9,28746,-9,1,1,14,0,2,1,3,0,-9,0,2,0,0,0,0,0,-946.41559,-9,2,-9,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,7,4,0,616.66669,243884.86,33125.328,195012.44,9239.6182,0,0,2397.3938 +13214,16110,28748,-9,28746,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1015.6245,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,7,4,0,616.66669,243884.86,33125.328,195012.44,9239.6182,0,0,2397.3938 +13215,16111,28749,28750,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,8.9494095,9.1765299,0,7,2,-79.806725,0,3,3,2021,9,0,45,50,1,0,0,19.71501,19.71501,0,0,0,0,0,0,0,2,0,0,0,3.2495358,0,54.37,54.8,35.78,41.87,6.666666666666667,1,1,0,0,8,12,5,1,238,835524.56,638814.38,208640.3,0,25502.891,0,4872.978 +13215,16111,28750,28749,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.7574339,8.6821079,0,7,-2,-.60825837,0,3,3,2021,12,0,43,43,1,0,0,16.251831,16.251831,.05,.05,0,0,0,0,0,7,0,0,0,0,0,35.78,41.87,54.37,54.8,3.333333333333333,1,1,0,0,8,12,5,1,238,835524.56,638814.38,208640.3,0,25502.891,0,4872.978 +13215,16112,28751,-9,28749,28750,1,1,22,0,0,0,1,1,-9,0,5,8.0712166,8.1218319,0,0,0,-932.17035,0,1,2,2021,7,1,38,32,1,1,1,10.015192,10.015192,.05,.05,0,0,0,0,0,0,0,0,0,3.8938849,0,60.42,54.81,-9,-9,10,1,1,0,0,5,12,4,1,181,-132937.89,-48274.441,0,0,0,0,1636.3342 +13216,16113,28752,28753,-9,-9,1,1,33,0,1,0,2,2,-9,0,3,8.7810888,8.9627066,0,1,-17,43.634315,-9,-9,-9,2021,11,1,44,0,1,1,0,15.948801,15.948801,.05,.05,0,0,0,0,0,0,1,1,0,6.339673,0,48.14,53.42,44.19,58.01,6.666666666666667,1,1,0,0,11,4,4,1,1248,22333.617,-11536.569,30438.393,70481.656,0,0,2832.9727 +13216,16113,28753,28752,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,6.7090364,6.2950692,0,6,17,-71.827911,-9,3,2,2021,9,0,50,0,1,0,0,1.5233316,1.5233316,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,58.01,48.14,53.42,8.333333333333334,1,1,0,0,11,4,4,1,1248,22333.617,-11536.569,30438.393,70481.656,0,0,2832.9727 +13216,16113,28754,-9,28753,28752,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-911.86755,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,4,1,1248,22333.617,-11536.569,30438.393,70481.656,0,0,2832.9727 +13216,16114,28755,-9,28753,28752,1,0,19,0,1,0,2,2,-9,0,5,7.9924545,8.0546618,0,0,0,-932.26715,-9,2,2,2021,11,0,30,0,1,0,1,15.116519,15.116519,.05,.05,0,0,0,0,0,0,1,1,0,1.2794124,0,57.06,57.76,-9,-9,10,1,1,0,0,2,4,4,1,496,150908.89,-86628.953,0,0,0,0,1258.442 +13217,16115,28756,-9,28759,28757,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-989.58154,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28757,28759,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,0,0,0,19,-1,-90.594856,0,2,1,2021,7,0,0,30,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.8323021,0,49.27,56.95,54.2,57.49,8.333333333333334,1,1,1,0,11,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28758,-9,28759,28757,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-922.02783,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28759,28757,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,8.1133451,8.1925983,0,19,1,-106.98463,0,1,1,2021,8,0,52,48,1,0,0,9.2814388,9.2814388,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,49.27,56.95,8.333333333333334,1,1,0,0,12,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13217,16115,28760,-9,28759,28757,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1022.0342,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,836.40002,325881,122596.13,226490.38,100399.84,0,0,1878.8834 +13218,16116,28761,28762,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,42,-7,-19.961021,0,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7426116,0,58.87,51.29,52,47,8.333333333333334,1,1,0,0,2,13,3,1,623.5,1509283.9,1150146.9,373834.31,0,0,0,2943.8552 +13218,16116,28762,28761,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,8.3123989,8.1056547,0,42,7,-27.408123,0,3,3,2021,10,0,25,50,1,1,0,16.724014,16.724014,0,0,0,1,0,23.768131,0,0,1,1,0,0,0,52,47,58.87,51.29,7,1,1,0,0,9,13,3,1,623.5,1509283.9,1150146.9,373834.31,0,0,0,2943.8552 +13219,16117,28763,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,7.6939077,7.7370272,0,0,0,-900.7204,0,3,-9,2021,31,11,10,16,1,11,0,20.598898,20.598898,.05,.05,0,0,0,0,0,7,1,1,0,6.9988194,0,20.16,52.02,-9,-9,1.666666666666667,3,4,0,1,4,8,3,0,422,-79272.719,-34056.469,0,0,0,0,3205.3418 +13219,16117,28764,-9,28763,-9,1,1,17,0,0,1,2,0,0,0,4,0,5.1149969,5.4769511,0,0,-1054.9026,-9,2,-9,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7838573,0,49.35,59.64,-9,-9,6.666666666666667,4,2,0,0,0,8,3,0,422,-79272.719,-34056.469,0,0,0,0,3205.3418 +13220,16118,28765,28768,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.8323812,8.640316,0,3,-5,-124.59439,0,1,2,2021,6,0,43,42,1,0,0,16.81555,16.81555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.56,52.33,43.54,59.6,8.333333333333334,1,1,0,0,7,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13220,16118,28766,-9,28765,28768,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.0503,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13220,16118,28767,-9,28765,28768,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.1188,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13220,16118,28768,28765,-9,-9,1,1,42,1,2,0,1,1,-9,0,4,8.6306181,8.5294752,0,3,5,-48.170433,0,-9,-9,2021,22,10,49,55,1,10,0,10.5879,10.5879,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.54,59.6,53.56,52.33,1.666666666666667,1,1,0,0,9,4,5,1,635.5,503097.19,456440.59,137928.52,110110.83,36661.227,3588.6133,4130.0122 +13221,16119,28769,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.0599742,6.94138,0,0,-1005.0089,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1338751,7.0352054,57.16,56.15,-9,-9,10,1,1,0,0,7,11,3,1,277,115930.12,31626.922,137750.48,0,34251.586,0,1771.6819 +13222,16120,28770,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,5,8.2091637,8.0768089,0,0,0,-1053.45,0,2,2,2021,9,1,50,60,1,1,0,8.1837711,8.1837711,0,0,0,0,0,0,0,0,0,0,0,0,0,37.99,65,-9,-9,8.333333333333334,2,3,0,0,3,8,4,0,237,-22245.73,0,0,0,0,0,455.27396 +13222,16121,28771,-9,-9,-9,1,1,28,0,0,0,1,1,0,0,4,0,6.8287258,6.6927676,0,0,-960.07672,-9,2,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4430385,0,59.41,45.49,-9,-9,8.333333333333334,2,3,0,0,2,8,2,0,879,-36691.641,0,0,0,0,0,474.27884 +13222,16122,28772,-9,-9,-9,1,1,26,0,0,0,1,1,1,0,4,7.7420425,7.782505,0,0,0,-1032.6201,-9,-9,-9,2021,13,3,40,0,1,3,0,7.94344,7.94344,0,0,0,0,0,0,0,0,0,0,0,0,0,44.31,40.35,-9,-9,8.333333333333334,2,3,0,0,1,8,3,0,1079,49463.031,0,0,0,0,0,1770.254 +13223,16123,28773,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.5600557,9.9783783,9.0121632,0,0,-1101.0027,0,3,2,2021,21,9,37,37,1,9,0,41.563484,41.563484,.05,.05,0,0,0,0,0,0,0,0,0,9.2870665,8.7533321,23.22,61.16,-9,-9,3.333333333333333,1,1,0,1,13,9,5,1,638,1269512,250248.72,681342.06,0,0,0,10131.524 +13223,16124,28774,-9,-9,28773,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-905.98004,-9,-9,1,2021,24,9,0,0,2,9,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.22227898,0,22.23,61.44,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,981,-62512.555,0,0,0,0,0,233.64713 +13224,16125,28775,28777,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.1678782,8.0729418,0,20,0,34.811501,0,2,2,2021,10,0,26,27,1,0,0,21.425001,21.425001,.05,.05,0,0,0,0,0,0,0,0,0,2.6368477,0,49.66,55.68,48.87,58.55,8.333333333333334,1,1,0,0,11,9,4,1,728,542454.56,386966.31,191962.09,74173.695,10679.74,2222.6033,3240.4229 +13224,16125,28776,-9,28775,28777,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1080.6046,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,9,4,1,728,542454.56,386966.31,191962.09,74173.695,10679.74,2222.6033,3240.4229 +13224,16125,28777,28775,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.5410213,8.4731207,0,19,0,-42.224972,0,-9,3,2021,12,0,38,37,1,0,0,13.765838,13.765838,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,49.66,55.68,5,1,1,0,0,13,9,4,1,728,542454.56,386966.31,191962.09,74173.695,10679.74,2222.6033,3240.4229 +13225,16126,28778,28779,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,7.1344461,7.4309492,56,-1,21.632023,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0018282,7.1104984,51.88,42.11,48.18,50.46,8.333333333333334,1,1,0,0,4,7,2,1,1026.5,877782.25,383022.06,414786.5,0,0,0,1321.278 +13225,16126,28779,28778,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,4.2119498,4.2590652,56,1,49.471893,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5542505,4.0058017,48.18,50.46,51.88,42.11,8.333333333333334,1,1,0,0,0,7,2,1,1026.5,877782.25,383022.06,414786.5,0,0,0,1321.278 +13226,16127,28780,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.8130035,6.8340597,0,0,-1047.0016,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7547662,6.9335246,55,45,-9,-9,8,1,1,0,0,0,7,2,1,182,424086.5,112689.13,259234.27,0,0,0,1531.8678 +13227,16128,28781,-9,28784,28783,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-931.07581,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28782,-9,28784,28783,1,1,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1083.6492,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28783,28784,-9,-9,1,1,40,0,3,0,1,1,-9,0,5,8.7230396,8.4624748,0,8,1,-54.006466,0,2,2,2021,10,0,100,65,1,0,0,5.6511083,5.6511083,.05,.05,.05,0,0,0,0,0,0,0,0,5.3014598,0,48.18,61.8,54.1,59.11,8.333333333333334,1,1,0,0,9,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28784,28783,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,7.4254651,7.0094447,0,8,-1,37.781078,0,-9,-9,2021,8,0,10,10,1,0,0,20.928896,20.928896,.05,.05,0,0,0,0,0,0,0,0,0,6.5136037,0,54.1,59.11,48.18,61.8,8.333333333333334,1,1,0,0,7,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13227,16128,28785,-9,28784,28783,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-917.61871,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,808,492807.84,243293.38,229126.34,0,0,0,3561.7021 +13228,16129,28786,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,7.1984124,6.9498138,0,0,-1035.202,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9213052,44.46,38.2,-9,-9,6.666666666666667,4,2,0,0,0,8,2,1,818,896925.19,193610.8,597465.5,0,0,0,541.26709 +13229,16130,28787,28788,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,7.8392096,8.0825491,6,1,12.532871,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0104508,7.8709617,57.16,56.15,44.41,56.75,10,1,1,0,0,3,12,4,1,826,1047306.9,981776.25,240060.06,0,8925.7793,0,3207.0486 +13229,16130,28788,28787,-9,-9,1,0,68,0,0,0,1,1,-9,0,3,0,7.6758051,7.276083,6,-1,118.78761,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.58672595,7.3577051,44.41,56.75,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,826,1047306.9,981776.25,240060.06,0,8925.7793,0,3207.0486 +13229,16131,28789,-9,28788,28787,1,1,37,0,0,0,1,1,-9,0,4,8.0107508,7.7304645,0,0,0,-1020.1597,0,1,1,2021,11,0,38,39,1,0,0,9.9785299,9.9785299,0,0,0,0,0,0,0,0,1,1,0,5.9443669,0,42.37,55.29,-9,-9,6.666666666666667,1,1,0,0,5,12,4,1,576,55247.742,15536.517,0,0,12818.173,0,1326.5162 +13230,16132,28790,-9,28792,28791,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-946.07483,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,4,0,407.66666,50652.273,14198.495,200850.47,108581.75,0,1275.4004,2794.1042 +13230,16132,28791,28792,-9,-9,1,1,38,1,1,0,2,2,-9,0,5,8.1011286,8.0883884,0,10,0,-32.91296,0,1,2,2021,12,0,44,92,1,0,0,9.9858389,9.9858389,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.91,43.16,52.6,52.88,8.333333333333334,1,1,0,0,9,2,4,0,407.66666,50652.273,14198.495,200850.47,108581.75,0,1275.4004,2794.1042 +13230,16132,28792,28791,-9,-9,1,0,38,1,1,0,2,2,-9,0,3,7.7461658,7.4590974,0,10,0,-51.621014,0,3,3,2021,9,0,41,36,1,0,0,6.1495056,6.1495056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.6,52.88,55.91,43.16,8.333333333333334,1,1,0,0,9,2,4,0,407.66666,50652.273,14198.495,200850.47,108581.75,0,1275.4004,2794.1042 +13231,16133,28793,28794,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,8.8423862,8.5983524,0,8,0,21.791771,0,-9,-9,2021,9,0,43,48,1,0,0,17.258545,17.258545,0,0,0,0,0,0,0,0,1,1,0,1.5012524,0,55.19,54.26,38.69,61.75,8.333333333333334,1,1,0,0,5,10,4,1,1323.6666,19694.625,0,0,0,0,0,3538.0828 +13231,16133,28794,28793,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.0417008,7.285274,0,8,0,70.700127,0,2,2,2021,9,0,16,20,1,0,0,9.0172663,9.0172663,0,0,0,0,0,0,0,0,1,1,0,0,0,38.69,61.75,55.19,54.26,8.333333333333334,1,1,0,0,10,10,4,1,1323.6666,19694.625,0,0,0,0,0,3538.0828 +13231,16133,28795,-9,28794,28793,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1070.9618,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,1323.6666,19694.625,0,0,0,0,0,3538.0828 +13232,16134,28796,28797,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,7.0870366,7.1245184,7,1,.78377974,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3086309,6.9647865,53,47,59.3,39.29,7,1,1,0,0,0,10,2,1,2665,745700.31,257187.22,137002.91,0,0,0,1893.6013 +13232,16134,28797,28796,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,7,-1,32.247654,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6989868,0,59.3,39.29,53,47,8.333333333333334,1,1,0,0,0,10,2,1,2665,745700.31,257187.22,137002.91,0,0,0,1893.6013 +13233,16135,28798,28799,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,6.8466272,6.7518401,0,8,-5,3.4202642,0,-9,-9,2021,34,12,16,0,1,12,0,8.1190271,8.1190271,.05,.05,0,0,0,0,0,0,0,0,0,3.1508265,0,28.37,42.65,55.19,54.26,1.666666666666667,1,1,0,1,12,5,5,1,536.5,1820590.5,1651406.3,335665.31,0,0,0,3472.8643 +13233,16135,28799,28798,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.6502724,8.9376478,7.655519,8,5,-67.0839,0,2,2,2021,8,0,42,42,1,0,0,15.941114,15.941114,.05,.05,0,0,0,0,0,0,0,0,0,6.8628612,8.1172714,55.19,54.26,28.37,42.65,8.333333333333334,1,1,0,0,13,5,5,1,536.5,1820590.5,1651406.3,335665.31,0,0,0,3472.8643 +13234,16136,28800,28801,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.8390856,6.2560024,60,-5,.18769509,0,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1668768,6.2045178,42.93,31.66,55.47,52.91,8.333333333333334,1,1,0,0,12,12,2,1,1032.5,255394.53,108633.23,137042.84,0,0,0,1429.3557 +13234,16136,28801,28800,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.0048137,6.7628279,60,5,83.005028,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1076171,7.0823665,55.47,52.91,42.93,31.66,8.333333333333334,1,1,0,0,0,12,2,1,1032.5,255394.53,108633.23,137042.84,0,0,0,1429.3557 +13235,16137,28802,28803,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,7.5963292,7.933229,41,5,-100.74424,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6920695,61.12,51.57,58.15,52.91,10,1,1,0,0,6,1,5,1,1025,1450650,1273387.5,199458.06,0,-570.13733,0,3798.8145 +13235,16137,28803,28802,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,8.5637894,8.9039774,6.7502623,41,-5,-13.170264,0,3,3,2021,6,0,38,37,1,0,0,14.546869,14.546869,0,0,0,0,0,0,0,0,1,1,0,0,6.9998994,58.15,52.91,61.12,51.57,8.333333333333334,1,1,0,0,9,1,5,1,1025,1450650,1273387.5,199458.06,0,-570.13733,0,3798.8145 +13235,16138,28804,-9,28803,28802,1,1,28,0,0,0,1,1,-9,0,5,8.3161306,8.2232418,0,0,0,-1013.5829,0,2,2,2021,2,0,50,62,1,0,1,8.7488489,8.7488489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,6,1,4,1,510,-25016.365,84709.484,0,0,0,0,1535.5159 +13236,16139,28805,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6728363,9.0636234,0,0,0,-1015.9943,0,1,2,2021,8,0,42,39,1,0,0,14.868019,14.868019,.05,.05,0,0,0,0,0,0,0,0,0,8.917963,0,48.71,61.53,-9,-9,8.333333333333334,1,1,0,0,6,12,5,1,121,468082.66,-118087.14,393948.81,146383.36,0,0,2655.1309 +13237,16140,28806,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.6156716,6.8672323,0,0,-899.4035,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5565696,7.205627,58.56,41.85,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1675,415091.03,53927.953,260421.47,0,0,0,388.43411 +13238,16141,28807,-9,-9,-9,1,0,37,0,0,0,3,3,-9,0,4,0,0,0,0,0,-945.52673,0,-9,-9,2021,6,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,1,0,2,4,1,0,773,6587.6597,0,0,0,0,2012.2565,882.32855 +13238,16142,28808,-9,28807,-9,1,1,18,0,0,0,2,2,-9,0,5,7.7871404,7.9088788,0,0,0,-916.05359,0,3,-9,2021,6,0,50,0,1,0,1,6.7286086,6.7286086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,0,4,4,0,891,-119072.8,25211.367,0,0,2072.3765,0,1259.6422 +13239,16143,28809,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,4.9721203,5.4931569,0,0,-920.72302,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,17.023924,0,150.31778,0,1,1,0,4.358459,4.959775,52.8,19.65,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,127,38829.055,0,161619.97,0,0,0,957.9046 +13240,16144,28810,-9,-9,-9,1,1,20,0,4,1,2,0,0,0,5,0,0,0,0,0,-898.30737,-9,1,-9,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,478,203134.61,0,135588.73,0,0,0,0 +13240,16145,28811,-9,-9,-9,1,0,19,0,4,0,2,2,1,0,4,8.1138258,8.0993252,0,0,0,-965.77136,-9,1,-9,2021,6,0,33,0,1,0,1,12.390069,12.390069,.05,.05,0,0,0,0,0,0,1,1,0,.29018039,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,644,142787.36,39848.121,0,0,0,0,962.89435 +13241,16146,28812,28813,-9,-9,1,0,25,0,0,0,1,1,-9,0,5,8.0692596,8.1825924,0,3,-3,56.095898,0,2,2,2021,9,0,45,43,1,0,0,10.570645,10.570645,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.09,55.87,57.33,53.46,8.333333333333334,1,1,0,0,6,4,4,0,664,15961.722,20727.096,114891.6,115703.77,6639.3066,0,2761.8765 +13241,16146,28813,28812,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,7.8629723,8.1070623,0,3,3,114.56203,0,-9,-9,2021,7,0,40,40,1,0,0,10.770501,10.770501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.09,55.87,8.333333333333334,1,1,0,0,7,4,4,0,664,15961.722,20727.096,114891.6,115703.77,6639.3066,0,2761.8765 +13242,16147,28814,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,3,6.9473443,7.0609393,0,0,0,-1107.087,0,2,2,2021,35,12,55,-9,1,12,0,2.2477067,2.2477067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,11.71,59.88,-9,-9,1.666666666666667,1,1,0,1,13,6,2,0,731,231883.27,74883.977,0,0,0,0,951.71887 +13243,16148,28815,28816,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.8270712,9.0199165,5.5502048,37,3,-4.1565742,0,2,-9,2021,6,0,42,42,1,0,0,18.783039,18.783039,.05,.05,.05,0,0,0,0,0,1,1,0,5.6353388,5.6887779,57.33,53.46,31.1,40.06,5,1,1,0,0,14,6,4,1,345,301703.84,96867.438,74484.656,0,0,868.76855,2865.0786 +13243,16148,28816,28815,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,0,0,0,36,-3,76.705482,0,3,2,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,0,0,31.1,40.06,57.33,53.46,3.333333333333333,1,1,0,0,13,6,4,1,345,301703.84,96867.438,74484.656,0,0,868.76855,2865.0786 +13244,16149,28817,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,0,7.865541,7.7852464,0,0,-914.82422,1,2,2,2021,6,0,0,56,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.4671021,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,1,8,10,3,0,1399,714412.38,496742.5,-9976.9854,55460.453,14099,0,417.49088 +13245,16150,28818,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1063.5292,0,3,3,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,0,2.733011,0,0,1,1,0,0,0,32.47,38.38,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,1956,208772.67,0,172157.75,0,0,0,1617.5018 +13245,16151,28819,28820,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.7154856,7.5051503,0,6,-4,-79.331467,0,-9,-9,2021,8,0,40,37,1,0,0,6.8455391,6.8455391,0,0,0,0,0,0,0,2,1,1,0,0,0,41.85,59.17,33.37,57.87,8.333333333333334,1,1,0,0,4,10,4,1,616.5,374401.81,47817.18,268442.41,47343.477,9258.3184,0,1586.522 +13245,16151,28820,28819,28818,-9,1,1,57,0,0,0,3,3,-9,0,5,8.0525045,8.0332718,0,6,4,-105.58247,0,3,3,2021,12,1,30,39,1,1,0,10.309637,10.309637,0,0,0,0,0,0,0,7,1,1,0,0,0,33.37,57.87,41.85,59.17,8.333333333333334,1,1,0,0,6,10,4,1,616.5,374401.81,47817.18,268442.41,47343.477,9258.3184,0,1586.522 +13246,16152,28821,28822,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,6.8708134,7.0323582,10,2,-28.612751,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1144867,7.3755431,62.66,41.87,33.55,29.48,10,1,1,0,0,0,1,3,1,887,1212419,484458.13,225280.38,0,0,0,2679.8613 +13246,16152,28822,28821,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.0130877,7.3749294,24,-2,-.89099205,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4274626,33.55,29.48,62.66,41.87,6.666666666666667,1,1,0,0,10,1,3,1,887,1212419,484458.13,225280.38,0,0,0,2679.8613 +13247,16153,28823,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.6360302,9.1536798,8.416501,9,18,12.765037,0,3,3,2021,12,0,35,40,1,0,0,21.319096,21.319096,0,0,.05,0,0,0,0,0,0,0,0,.9090814,8.2777081,54.37,54.8,54.2,57.49,8.333333333333334,1,1,0,0,12,4,5,1,440,24479.219,12590.947,162714.89,86631.781,0,16898.176,4201.1162 +13247,16154,28824,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,8.6516457,8.4062853,0,9,-18,49.250587,0,2,2,2021,6,0,40,44,1,0,0,14.439677,14.439677,.05,.05,.05,0,0,0,0,0,0,0,0,1.02675,0,54.2,57.49,54.37,54.8,8.333333333333334,1,1,0,0,10,4,5,1,555,801523,236018.77,271778.66,0,0,0,1653.4987 +13248,16155,28825,28827,-9,-9,1,1,63,0,2,0,2,2,-9,0,3,8.2092915,7.9861455,0,10,22,57.041855,0,2,2,2021,7,0,38,37,1,0,0,7.9644804,7.9644804,0,0,0,0,0,0,0,0,1,1,0,0,0,48.14,44.28,32.68,55.45,6.666666666666667,3,4,0,0,9,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13248,16155,28826,-9,28827,28825,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.92188,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,3,4,-9,0,0,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13248,16155,28827,28825,-9,-9,1,0,41,0,2,0,3,3,-9,0,3,7.7417526,7.6065526,0,10,-22,18.007212,0,3,3,2021,13,2,37,40,1,2,0,5.7099686,5.7099686,0,0,0,0,0,0,0,0,1,1,0,0,0,32.68,55.45,48.14,44.28,3.333333333333333,3,4,0,1,3,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13248,16155,28828,-9,28827,28825,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.9325,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,6,3,0,642.75,49731.234,100250.13,0,0,1208.7589,0,2593.7981 +13249,16156,28829,28830,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,8.1152325,7.82375,30,10,-27.915709,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,7.7382283,45.32,54.77,50.05,55.41,8.333333333333334,1,1,0,0,8,9,3,1,625,995727.63,523925.13,378254.69,0,0,0,2660.9719 +13249,16156,28830,28829,-9,-9,1,1,59,0,0,0,2,2,-9,1,4,5.5647593,5.7862134,0,30,-10,-26.751842,0,-9,-9,2021,12,0,6,6,1,0,0,5.0003452,5.0003452,.05,.05,0,0,0,0,0,42,1,1,0,1.1080629,0,50.05,55.41,45.32,54.77,8.333333333333334,1,1,0,0,9,9,3,1,625,995727.63,523925.13,378254.69,0,0,0,2660.9719 +13249,16157,28831,-9,28829,28830,1,1,28,0,0,0,2,2,-9,0,4,0,0,0,0,0,-901.52435,0,1,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,0,0,9,2,1,298,0,0,0,0,0,0,0 +13249,16158,28832,-9,28829,28830,1,1,28,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1015.7854,0,1,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,5.317111,0,49,58,-9,-9,7,1,1,0,0,0,9,1,1,596,0,0,0,0,0,0,-42.297234 +13250,16159,28833,-9,-9,-9,1,0,32,0,0,0,2,2,-9,0,4,8.6529093,8.4945354,0,0,0,-939.96344,0,2,1,2021,10,0,37,38,1,0,0,15.601177,15.601177,.05,.05,0,0,0,0,0,0,0,0,0,4.3390198,0,37.95,58.19,-9,-9,6.666666666666667,1,1,0,0,8,1,5,1,412,111021.88,70533.563,0,0,0,-42.881023,1323.5979 +13250,16160,28834,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,7.8203506,7.9496169,0,0,0,-1072.4247,0,-9,-9,2021,9,1,37,25,1,1,0,9.516346,9.516346,0,0,0,0,0,0,0,0,0,0,0,0,0,49.15,46.68,-9,-9,3.333333333333333,1,1,0,0,4,1,4,1,1199,-85733.461,-4306.1143,0,0,0,2993.9495,1301.6896 +13251,16161,28835,-9,-9,-9,1,1,80,0,0,0,2,2,-9,0,2,0,0,0,0,0,-988.67505,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.27,32.41,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,132,63660.176,0,126752.81,0,0,0,449.50562 +13252,16162,28836,28837,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.3387036,6.453939,55,2,-79.237846,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3858356,58.15,52.91,57.92,51.82,10,1,1,0,0,0,4,2,1,5502.5,1333079,364234.38,508899.38,0,0,0,1175.8696 +13252,16162,28837,28836,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.2249379,5.2935319,55,-2,-75.468719,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.4615221,57.92,51.82,58.15,52.91,10,1,1,0,0,0,4,2,1,5502.5,1333079,364234.38,508899.38,0,0,0,1175.8696 +13253,16163,28838,28839,-9,-9,1,0,40,0,1,0,3,3,-9,1,2,7.1266718,7.2629728,0,5,-8,-68.71563,0,-9,-9,2021,13,1,20,25,1,1,0,9.3327017,9.3327017,0,0,0,0,0,0,0,0,1,1,0,0,0,33.97,42.88,39.81,49.73,5,1,1,0,0,9,6,2,0,529,77546.57,0,106967.43,49048.406,0,0,1854.7924 +13253,16163,28839,28838,-9,-9,1,1,48,0,1,0,3,3,-9,0,2,0,0,0,5,8,21.535187,0,2,2,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.81,49.73,33.97,42.88,3.333333333333333,1,1,1,0,0,6,2,0,529,77546.57,0,106967.43,49048.406,0,0,1854.7924 +13253,16163,28840,-9,28838,28839,1,1,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-843.12152,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,0,529,77546.57,0,106967.43,49048.406,0,0,1854.7924 +13254,16164,28841,28842,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.8555861,8.8707666,0,32,0,-66.438431,0,-9,-9,2021,10,0,60,40,1,1,0,12.794368,12.794368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51,49,49.46,56.91,7,4,2,0,0,1,8,5,1,407,489714.31,394381.88,197872.34,71751.836,1575.5062,0,2910.8818 +13254,16164,28842,28841,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,2.88516,3.001332,0,32,0,-16.666748,0,-9,-9,2021,9,0,40,40,1,0,0,.074661359,.074661359,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.46,56.91,51,49,8.333333333333334,1,1,0,0,9,8,5,1,407,489714.31,394381.88,197872.34,71751.836,1575.5062,0,2910.8818 +13254,16165,28843,-9,28842,28841,1,0,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-1013.3888,-9,3,3,2021,11,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,2,1,0,0,8,1,1,2314,-162348.17,0,0,0,14189.229,0,345.51257 +13255,16166,28844,-9,28846,28847,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-938.9657,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13255,16166,28845,-9,28846,28847,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1025.5563,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13255,16166,28846,28847,-9,-9,1,0,32,0,2,0,2,2,-9,1,1,8.4624271,8.3831167,0,6,-6,-146.26567,0,-9,-9,2021,20,6,60,100,1,6,0,9.7242165,9.7242165,0,0,0,0,0,0,0,2,1,1,0,0,0,16.01,55.49,42.37,48.08,5,1,1,0,0,6,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13255,16166,28847,28846,-9,-9,1,1,38,0,2,0,2,2,-9,1,3,0,0,0,6,6,-26.050667,0,1,3,2021,15,3,0,0,3,3,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,0,0,42.37,48.08,16.01,55.49,5,1,1,1,0,3,5,3,0,422,44074.559,-14151.4,0,0,0,2244.4661,2492.8794 +13256,16167,28848,-9,28851,28850,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.91412,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13256,16167,28849,-9,28851,28850,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.28912,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13256,16167,28850,28851,-9,-9,1,1,41,0,3,0,2,2,-9,1,4,8.3846254,8.9460468,0,18,0,18.547276,0,3,3,2021,7,0,50,45,1,0,0,15.802939,15.802939,0,0,0,0,0,0,0,7,1,1,0,5.4367948,0,57.16,56.15,49,55,10,1,1,0,0,9,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13256,16167,28851,28850,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,6.7873559,6.8352041,0,7,0,188.29501,-9,-9,-9,2021,10,0,30,0,1,1,0,3.0898106,3.0898106,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,57.16,56.15,8,1,1,0,0,1,1,3,1,339,186327.47,0,438339.38,227324.14,0,0,3015.0608 +13257,16168,28852,28853,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,8.5028486,8.3164768,0,1,1,-15.743134,0,2,2,2021,9,0,70,40,1,0,0,8.4337521,8.4337521,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.41,56.15,26.86,42.08,6.666666666666667,1,1,0,0,6,1,5,0,1515,80289.172,-41418.672,0,0,0,0,2526.1565 +13257,16168,28853,28852,-9,-9,1,0,30,0,0,0,2,2,-9,0,1,7.8848028,7.7227268,0,1,-1,14.664809,-9,-9,-9,2021,12,1,42,0,1,1,0,8.7387409,8.7387409,0,0,0,0,0,0,0,0,0,0,0,0,0,26.86,42.08,51.41,56.15,6.666666666666667,1,1,0,0,0,1,5,0,1515,80289.172,-41418.672,0,0,0,0,2526.1565 +13258,16169,28854,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6514764,7.3292532,0,0,0,-1093.0535,-9,2,3,2021,12,0,19,0,1,0,0,9.9344463,9.9344463,0,0,0,0,0,0,0,27,1,1,0,4.6128001,0,64.40000000000001,25.94,-9,-9,5,1,1,0,0,10,6,3,0,502,260366.33,-30098.602,193240.97,0,0,0,1085.5773 +13258,16170,28855,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-955.85486,-9,-9,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.46,45.88,-9,-9,5,1,1,0,0,0,6,1,0,295,139787.63,16680.289,0,0,137.21689,0,905.40875 +13259,16171,28856,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,1,0,4.0919242,3.9882586,0,0,-950.86975,0,-9,-9,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8454547,3.7859135,27.23,31.1,-9,-9,1.666666666666667,1,1,0,0,8,2,2,0,1986,200591.72,332550.94,0,0,0,0,1240.6392 +13259,16172,28857,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,6.3482857,6.5059938,0,0,-1045.4387,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.4562588,36.03,40.6,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,1305,-29094.879,59173.746,0,0,0,206.03409,257.65274 +13260,16173,28858,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,8.3405914,8.4482985,0,0,0,-976.11255,0,3,-9,2021,15,4,37,37,1,4,0,15.218424,15.218424,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,1,15,11,4,1,888,153962.42,105850.05,0,0,-1659.3811,694.04242,1545.7504 +13261,16174,28859,28860,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,8.4635296,8.9579458,7.6407413,6,-2,35.663433,0,-9,-9,2021,10,0,36,36,1,1,0,18.732517,18.732517,.05,.05,0,0,0,0,0,0,1,1,0,3.7636352,7.4295354,52,47,59.89,42.51,7,4,1,0,0,1,8,5,1,649.5,470492.63,70156.313,372997.88,0,1493.9602,0,6777.4551 +13261,16174,28860,28859,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,8.752985,8.7673998,5.25385,6,2,10.103298,0,3,3,2021,5,0,36,38,1,0,0,17.856293,17.856293,0,0,0,0,0,0,0,0,1,1,0,1.638888,5.5194101,59.89,42.51,52,47,8.333333333333334,1,1,0,0,7,8,5,1,649.5,470492.63,70156.313,372997.88,0,1493.9602,0,6777.4551 +13262,16175,28861,-9,28863,28865,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1041.9242,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28862,-9,28863,28865,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1058.4891,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28863,28865,-9,-9,1,0,33,1,3,0,2,2,-9,0,2,0,0,0,20,-3,-98.948074,0,2,2,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.03,55.84,51,56,8.333333333333334,1,1,0,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28864,-9,28863,28865,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1201.0739,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13262,16175,28865,28863,-9,-9,1,1,36,1,3,0,2,2,-9,0,4,8.6259689,8.4658833,0,20,3,.085349374,0,3,-9,2021,10,0,42,42,1,1,0,13.932837,13.932837,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,38.03,55.84,7,1,1,0,0,1,1,3,0,519.40002,109082.09,114991.02,220509.78,114339.92,0,0,2541.1621 +13263,16176,28866,28867,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,7,-1,107.17535,0,3,3,2021,6,0,0,15,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.16,56.15,10,1,1,0,0,7,2,2,1,934.5,223455.05,-42778.145,138640.16,0,0,0,907.59912 +13263,16176,28867,28866,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,4.2448988,4.6770573,7,1,-68.072792,0,3,3,2021,6,0,0,45,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6440988,3.7199507,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,7,2,2,1,934.5,223455.05,-42778.145,138640.16,0,0,0,907.59912 +13264,16177,28868,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,2,8.2992134,8.0453548,0,0,0,-1030.1389,0,3,-9,2021,9,0,38,40,1,0,0,12.227145,12.227145,.05,.05,0,0,0,0,0,2,0,0,0,1.4676801,0,44.42,54.24,-9,-9,3.333333333333333,1,1,0,0,7,9,4,1,7125,102662.88,15127.402,0,0,4034.782,0,1621.7271 +13265,16178,28869,28871,-9,-9,1,1,45,0,1,0,2,2,-9,0,2,8.5825815,8.3294144,0,11,-2,-62.315933,0,3,3,2021,12,2,40,41,1,2,0,12.686102,12.686102,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.39,52.89,57.33,53.46,8.333333333333334,1,1,0,0,11,1,4,1,781,218885.39,66418.07,150010.39,116833.52,28181.764,0,3265.9875 +13265,16178,28870,-9,28871,28869,1,1,16,0,1,1,2,0,-9,0,4,0,3.7632122,3.8426108,0,0,-1069.3816,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.697257,0,60.12,54.8,-9,-9,10,1,1,0,0,0,1,4,1,781,218885.39,66418.07,150010.39,116833.52,28181.764,0,3265.9875 +13265,16178,28871,28869,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,8.3558397,8.4311848,0,11,2,-115.26252,0,3,3,2021,8,0,77,37,1,0,0,6.0296926,6.0296926,.05,.05,0,0,0,0,0,0,1,1,0,2.459866,0,57.33,53.46,47.39,52.89,8.333333333333334,1,1,0,0,11,1,4,1,781,218885.39,66418.07,150010.39,116833.52,28181.764,0,3265.9875 +13265,16179,28872,-9,28871,28869,1,0,18,0,1,1,2,0,0,0,3,0,7.4533029,7.4788523,0,0,-1085.7076,-9,1,2,2021,14,3,0,0,2,3,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5776176,0,53.98,50.87,-9,-9,8.333333333333334,1,1,0,0,2,1,3,1,1312,51926.734,-114650.16,0,0,0,0,1309.5201 +13266,16180,28873,28874,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.3449755,8.4819632,0,7,-6,3.7408452,0,-9,-9,2021,9,0,40,58,1,1,0,11.530697,11.530697,.05,.05,0,0,0,0,0,0,1,1,0,8.3345699,0,53,55,41.76,24.04,8,1,1,0,0,1,5,4,1,1142.5,633102.44,563564.63,184462.84,30522.781,8241.998,0,4187.1611 +13266,16180,28874,28873,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,6.7423792,6.2539639,7,6,-81.494072,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2149887,41.76,24.04,53,55,8.333333333333334,1,1,0,0,6,5,4,1,1142.5,633102.44,563564.63,184462.84,30522.781,8241.998,0,4187.1611 +13267,16181,28875,28877,-9,-9,1,1,35,1,1,0,1,1,-9,0,3,8.4743681,8.5822268,0,3,1,-72.920158,0,3,3,2021,11,0,37,37,1,2,0,14.342848,14.342848,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.5,58.67,43.2,59.97,5,2,3,0,0,9,6,3,1,983.66669,49217.043,186.22038,115308.32,107239.98,17596.139,2402.3828,1978.7776 +13267,16181,28876,-9,28877,28875,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.0195,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,983.66669,49217.043,186.22038,115308.32,107239.98,17596.139,2402.3828,1978.7776 +13267,16181,28877,28875,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,0,0,0,3,-1,144.18904,0,-9,-9,2021,14,3,0,35,3,3,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.2,59.97,28.5,58.67,3.333333333333333,2,3,1,0,5,6,3,1,983.66669,49217.043,186.22038,115308.32,107239.98,17596.139,2402.3828,1978.7776 +13268,16182,28878,-9,-9,-9,1,0,25,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1163.2002,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.56,35.07,-9,-9,8.333333333333334,3,4,0,0,0,5,1,0,718,69236.477,0,0,0,-131.77214,0,1338.5565 +13268,16182,28879,-9,28878,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.4147,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,5,1,0,718,69236.477,0,0,0,-131.77214,0,1338.5565 +13268,16182,28880,-9,28878,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.40302,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,5,1,0,718,69236.477,0,0,0,-131.77214,0,1338.5565 +13269,16183,28881,28882,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,6.0289793,6.0495257,58,-5,-11.162365,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.28229,50.92,36.96,54,46,8.333333333333334,1,1,0,0,0,5,2,0,535.5,386833.94,124463.71,255474.2,0,0,0,1989.9446 +13269,16183,28882,28881,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,4.1909933,4.3422213,11,5,86.396408,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,14.181745,0,0,1,1,0,0,4.1316576,54,46,50.92,36.96,8,1,1,0,0,0,5,2,0,535.5,386833.94,124463.71,255474.2,0,0,0,1989.9446 +13270,16184,28883,28884,-9,-9,1,0,52,0,0,0,1,1,-9,0,2,8.9129438,8.7718048,0,8,-1,-15.2324,0,2,1,2021,14,4,40,45,1,4,0,18.868319,18.868319,0,0,0,0,0,0,0,0,0,0,0,0,0,43.1,44.28,52.65,51.64,3.333333333333333,2,3,0,0,8,13,5,1,998.5,1477456.4,660227.44,700442.31,0,0,0,6124.3843 +13270,16184,28884,28883,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,9.1355982,9.5174093,0,8,1,44.434441,0,2,1,2021,12,0,50,50,1,0,0,26.8867,26.8867,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.65,51.64,43.1,44.28,6.666666666666667,2,3,0,0,8,13,5,1,998.5,1477456.4,660227.44,700442.31,0,0,0,6124.3843 +13271,16185,28885,28886,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,8.3380375,8.1839266,0,38,12,3.9876802,0,3,2,2021,24,12,25,30,1,12,0,22.252815,22.252815,0,0,0,0,0,0,0,0,1,1,0,0,0,34.55,51.58,45.12,34.87,3.333333333333333,1,1,0,0,14,2,4,1,449,596132.31,80365.813,398808.78,11973.685,0,0,4009.4766 +13271,16185,28886,28885,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.6919527,7.7643061,0,38,-12,-88.669052,0,3,3,2021,12,2,45,45,1,2,0,4.7164254,4.7164254,0,0,0,0,0,0,0,0,1,1,0,4.6450052,0,45.12,34.87,34.55,51.58,3.333333333333333,1,1,0,0,14,2,4,1,449,596132.31,80365.813,398808.78,11973.685,0,0,4009.4766 +13272,16186,28887,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-957.94012,0,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,21.75,37.68,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,420,172770.05,37103.586,0,0,0,0,643.42261 +13273,16187,28888,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,8.7795753,8.7820654,0,0,-993.0658,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,10.661858,0,92.180557,2,1,1,0,0,8.6770916,51.32,24.19,-9,-9,8.333333333333334,1,1,0,0,1,10,5,1,630,1535251.4,854669.75,589989.31,52287.309,0,0,2861.7739 +13274,16188,28889,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,5,7.8287692,7.941772,0,1,7,41.72448,-9,3,3,2021,12,2,37,0,1,2,0,8.4412918,8.4412918,0,0,.05,0,0,0,0,0,0,0,0,0,0,51.14,60.45,55.75,50.3,5,1,1,0,0,5,7,4,1,124,200282.2,143629.55,307475,33599.477,0,0,778.0957 +13274,16189,28890,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.0221443,8.0326958,0,1,-7,93.345184,-9,-9,-9,2021,9,0,35,0,1,0,0,9.855032,9.855032,0,0,0,0,0,0,0,0,0,0,0,6.5133042,0,55.75,50.3,51.14,60.45,8.333333333333334,1,1,0,0,8,7,4,1,359,-81837.688,0,0,0,0,0,1167.7007 +13275,16190,28891,28894,-9,-9,1,0,37,1,2,0,1,1,-9,0,3,8.6938648,8.1251411,0,12,-1,-48.426571,0,3,3,2021,11,1,35,32,1,1,0,14.672767,14.672767,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.99,55.83,44.42,54.24,6.666666666666667,1,1,0,0,12,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13275,16190,28892,-9,28891,28894,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1060.8215,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13275,16190,28893,-9,28891,28894,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-966.36438,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13275,16190,28894,28891,-9,-9,1,1,38,1,2,0,2,2,-9,0,2,8.4608307,8.3643064,0,12,1,69.135345,0,-9,-9,2021,9,0,37,37,1,0,0,13.657887,13.657887,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.42,54.24,39.99,55.83,8.333333333333334,1,1,0,0,13,5,4,1,631.75,90561.523,52488.418,189678.06,130167.16,0,4188.9155,3410.5735 +13276,16191,28895,28896,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,2.9493103,3.0100751,47,2,-67.227486,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4574521,3.0542519,62.82,33.31,55.96,49.93,8.333333333333334,1,1,0,0,0,6,3,1,342.5,856119.69,415052.94,236102.2,0,0,0,2492.7859 +13276,16191,28896,28895,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,7.7928681,7.4410763,47,-2,31.912853,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1420588,7.7572861,55.96,49.93,62.82,33.31,8.333333333333334,1,1,0,0,4,6,3,1,342.5,856119.69,415052.94,236102.2,0,0,0,2492.7859 +13277,16192,28897,28898,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,10,-1,-84.493103,-9,2,2,2021,18,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.69,20.71,62.51,39.17,5,1,1,0,1,0,12,4,0,427,554900.31,457718.66,188577.17,0,4427.1807,48.042702,3529.0137 +13277,16192,28898,28897,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.4820404,8.4071674,0,10,1,-23.836721,-9,2,2,2021,11,0,42,0,1,0,0,14.053485,14.053485,.05,.05,0,0,0,0,0,27,1,1,0,0,0,62.51,39.17,34.69,20.71,8.333333333333334,1,1,0,0,13,12,4,0,427,554900.31,457718.66,188577.17,0,4427.1807,48.042702,3529.0137 +13278,16193,28899,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,7.9166079,8.3423548,0,0,0,-1041.3636,0,1,1,2021,6,0,32,52,1,0,0,10.233529,10.233529,.05,.05,0,0,0,0,0,0,1,1,0,7.3644567,0,54.99,42.62,-9,-9,8.333333333333334,1,1,0,0,14,10,4,0,291,796707.69,503626.47,304580.97,0,0,0,1705.5503 +13279,16194,28900,28901,-9,-9,1,0,27,0,1,0,2,2,-9,0,4,6.57619,7.0212407,0,6,-3,122.49861,0,-9,-9,2021,19,4,16,16,1,4,0,5.5314727,5.5314727,0,0,0,0,0,0,0,0,1,1,0,0,0,37.77,60.12,35.2,48.71,6.666666666666667,1,1,0,0,7,9,4,0,366.33334,1762127.9,1217256,0,0,8321.4971,6074.0596,2777.4009 +13279,16194,28901,28900,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.4691763,8.154891,0,6,3,49.710655,0,2,2,2021,17,5,40,35,1,5,0,12.873274,12.873274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.2,48.71,37.77,60.12,6.666666666666667,1,1,0,0,13,9,4,0,366.33334,1762127.9,1217256,0,0,8321.4971,6074.0596,2777.4009 +13279,16194,28902,-9,28900,28901,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.81714,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,4,0,366.33334,1762127.9,1217256,0,0,8321.4971,6074.0596,2777.4009 +13280,16195,28903,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,7.8245583,7.7773252,5.7281165,0,0,-1064.2891,0,3,2,2021,9,0,23,23,1,0,0,8.6138411,8.6138411,0,0,0,1,0,0,0,0,1,1,0,6.9178057,5.5131364,57.76,48.98,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,326,431300.97,427553.31,137123.16,0,11263.503,2345.7437,1514.7098 +13281,16196,28904,28905,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,6.6586089,6.4851418,12,-3,-32.935959,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4676828,6.5933337,54.79,55.86,59.43,58.05,10,1,1,0,0,7,12,5,1,1192,1331193.8,956993,316439.03,16634.656,0,0,4707.5137 +13281,16196,28905,28904,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,9.0846624,8.8809967,0,12,3,-22.170479,0,3,3,2021,7,0,70,30,1,0,0,14.617473,14.617473,.05,.05,0,0,0,0,0,0,0,0,0,4.9852376,0,59.43,58.05,54.79,55.86,10,1,1,0,0,13,12,5,1,1192,1331193.8,956993,316439.03,16634.656,0,0,4707.5137 +13282,16197,28906,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,5.0244899,4.9175978,0,0,-945.61188,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.09097,50,47,-9,-9,7,1,1,0,1,0,13,2,1,231,441914.56,0,317264.31,0,0,0,609.37817 +13283,16198,28907,28908,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.0986643,9.5976381,0,7,-3,39.225437,0,2,2,2021,12,0,47,42,1,0,0,31.438457,31.438457,0,0,0,0,0,0,0,7,0,0,0,0,0,45.85,61.26,45.46,57.33,8.333333333333334,1,1,0,0,8,5,5,1,576,1004055.9,196466.25,504425,66308.453,0,0,5768.5586 +13283,16198,28908,28907,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.6718712,8.8890057,0,7,3,63.04623,0,1,1,2021,16,5,30,20,1,5,0,25.78215,25.78215,.05,.05,0,0,0,0,0,2,0,0,0,0,0,45.46,57.33,45.85,61.26,8.333333333333334,1,1,0,0,8,5,5,1,576,1004055.9,196466.25,504425,66308.453,0,0,5768.5586 +13284,16199,28909,-9,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-882.03961,0,2,2,2021,25,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.43,30.75,-9,-9,0,4,2,0,1,0,8,2,0,1007,47526.68,0,0,0,0,0,851.58234 +13285,16200,28910,28911,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,8.7797041,9.112956,5.9573417,5,2,-18.065443,0,2,2,2021,11,1,60,60,1,1,0,14.825186,14.825186,.05,.05,0,0,0,0,0,0,1,1,0,0,6.4503708,44.02,60.7,53.97,13.39,8.333333333333334,1,1,0,0,9,12,5,1,421,361861.63,40793.867,145884.34,74686.563,-490.82224,5637.8418,3504.115 +13285,16200,28911,28910,-9,-9,1,1,65,0,0,0,2,2,-9,0,1,0,0,0,5,-2,32.516697,0,-9,-9,2021,11,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.97,13.39,44.02,60.7,6.666666666666667,1,1,0,0,8,12,5,1,421,361861.63,40793.867,145884.34,74686.563,-490.82224,5637.8418,3504.115 +13286,16201,28912,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1057.0234,-9,2,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.51,33.67,-9,-9,8.333333333333334,1,1,0,1,0,7,1,1,164,-93572.195,0,0,0,0,0,96.434898 +13286,16202,28913,-9,28912,-9,1,1,36,0,0,0,3,3,-9,0,4,8.5280914,8.7432718,0,0,0,-888.79883,-9,2,2,2021,10,0,36,0,1,1,0,20.47459,20.47459,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,5,1,521,-130881.06,0,0,0,0,0,1537.6686 +13287,16203,28914,28915,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.3660736,8.1954603,6.6738596,31,5,-135.47585,0,2,2,2021,12,1,3,18,1,1,0,76.430908,76.430908,.05,.05,.05,0,0,0,0,0,0,0,0,8.8434191,6.3989496,54.37,54.8,38,39.66,8.333333333333334,1,1,0,0,13,1,4,1,327,122790.15,46356.469,0,0,0,0,5440.6035 +13287,16203,28915,28914,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.6551538,7.6716714,0,31,-5,-25.395292,0,2,3,2021,19,7,6,0,1,7,0,43.108276,43.108276,.05,.05,0,0,0,0,0,0,0,0,0,6.3760815,0,38,39.66,54.37,54.8,5,1,1,0,0,9,1,4,1,327,122790.15,46356.469,0,0,0,0,5440.6035 +13287,16204,28916,-9,28915,28914,1,0,27,0,0,0,1,1,-9,0,4,7.7271576,8.1934366,0,0,0,-1022.0703,0,2,2,2021,11,0,42,41,1,0,1,9.429039,9.429039,.05,.05,.05,0,0,0,0,0,0,0,0,7.6589723,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,397,42602.078,42490.762,116146.38,47395.578,0,0,2671.2722 +13288,16205,28917,28918,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,8.4463434,8.1849775,0,6,-4,98.394714,0,-9,-9,2021,9,0,40,40,1,1,0,13.993804,13.993804,0,0,0,0,0,0,0,0,0,0,0,5.9320879,0,53,55,42.96,47.67,8,1,1,0,0,1,7,5,0,2595.5,298156.5,0,288403.91,110455.86,0,0,3122.5891 +13288,16205,28918,28917,-9,-9,1,0,51,0,0,0,3,3,-9,0,4,8.121767,8.4034882,0,6,4,68.580627,0,3,3,2021,12,2,51,39,1,2,0,9.3515091,9.3515091,0,0,0,0,0,0,0,0,0,0,0,0,0,42.96,47.67,53,55,8.333333333333334,1,1,0,0,6,7,5,0,2595.5,298156.5,0,288403.91,110455.86,0,0,3122.5891 +13289,16206,28919,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,0,0,0,0,0,-926.27832,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,6.666666666666667,2,3,0,0,2,5,1,1,1488,-619.31769,0,0,0,0,0,571.21838 +13290,16207,28920,-9,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.2102003,7.857254,0,0,0,-895.87103,0,2,2,2021,6,0,35,35,1,0,0,9.3406687,9.3406687,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,8,2,4,1,719,-11484.921,61464.57,0,0,0,0,1058.1433 +13291,16208,28921,28922,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,7.8080163,7.7708421,0,23,4,40.278156,0,3,3,2021,11,0,39,39,1,0,0,9.6304665,9.6304665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,36.99,39.07,53.41,6.666666666666667,1,1,0,0,15,2,4,1,475,243538.13,103994.23,284196.28,0,0,0,2808.6099 +13291,16208,28922,28921,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.9123101,7.9753108,0,23,-4,167.29849,0,3,2,2021,11,0,20,20,1,0,0,17.364635,17.364635,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.07,53.41,58.32,36.99,1.666666666666667,1,1,0,0,15,2,4,1,475,243538.13,103994.23,284196.28,0,0,0,2808.6099 +13292,16209,28923,28924,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.5648823,8.4750309,0,24,-5,66.947708,-9,2,2,2021,17,3,50,0,1,3,0,11.212934,11.212934,0,0,0,0,0,0,0,0,1,1,0,0,0,39.6,55.82,43.47,50.15,5,1,1,0,0,12,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16209,28924,28923,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.1169548,7.855526,0,9,5,-92.501312,-9,-9,-9,2021,12,1,39,0,1,1,0,10.209542,10.209542,0,0,0,0,0,0,0,0,1,1,0,5.0730324,0,43.47,50.15,39.6,55.82,6.666666666666667,1,1,0,0,0,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16209,28925,-9,28923,28924,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-999.93134,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16209,28926,-9,28923,28924,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-997.35046,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,1454,234633.97,1053.8552,0,0,20846.293,7136.7422,3887.707 +13292,16210,28927,-9,28923,28924,1,0,20,0,2,1,2,0,-9,0,3,0,0,0,0,0,-1167.8969,-9,1,2,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.46,58.79,-9,-9,8.333333333333334,1,1,0,0,4,9,1,0,252,-165377.77,0,0,0,0,0,0 +13292,16211,28928,-9,28923,28924,1,0,19,0,2,0,2,2,-9,0,4,7.8088813,7.5952473,0,0,0,-886.0459,-9,1,2,2021,11,2,32,0,1,2,1,5.9287443,5.9287443,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.06,56.13,-9,-9,5,1,1,0,1,3,9,3,0,415,-165804.53,-63543.922,0,0,0,0,855.0874 +13293,16212,28929,28931,-9,-9,1,0,34,1,2,0,2,2,-9,0,3,7.6402307,7.6623979,0,8,0,77.840599,0,1,-9,2021,16,4,28,18,1,4,0,6.2341738,6.2341738,0,0,0,0,0,0,0,0,1,1,0,0,0,36.18,48.3,42.22,48.08,6.666666666666667,1,1,0,0,9,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13293,16212,28930,-9,28929,28931,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-942.45789,-9,2,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13293,16212,28931,28929,-9,-9,1,1,34,1,2,0,1,1,-9,0,3,7.8619719,8.2055359,0,8,0,-64.855698,0,2,2,2021,10,0,35,35,1,0,0,11.139666,11.139666,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.22,48.08,36.18,48.3,5,1,1,0,0,11,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13293,16212,28932,-9,28929,28931,1,1,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.1152,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,1940.75,37709.43,-60047.758,0,0,0,7992.0967,2149.467 +13294,16213,28933,28934,-9,-9,1,0,64,0,0,0,1,1,-9,0,5,0,0,0,6,-7,-56.624966,0,2,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.246033,0,51.14,60.45,53,47,8.333333333333334,1,1,0,0,1,11,2,1,332,642839.13,501189.19,296926.25,0,0,0,1594.0222 +13294,16213,28934,28933,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.3557096,7.5665574,6,7,-66.099014,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5527649,53,47,51.14,60.45,8,4,1,0,0,0,11,2,1,332,642839.13,501189.19,296926.25,0,0,0,1594.0222 +13295,16214,28935,28936,-9,-9,1,0,50,0,0,0,3,3,-9,1,2,0,0,0,22,-4,0,0,3,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,37.3,43.91,52.63,25.89,5,1,1,0,0,0,6,1,0,140,-52694.879,143442.56,0,0,0,0,688.3493 +13295,16214,28936,28935,-9,-9,1,1,54,0,0,0,3,3,-9,1,1,0,0,0,22,4,0,-9,3,3,2021,18,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,52.63,25.89,37.3,43.91,5,1,1,0,0,0,6,1,0,140,-52694.879,143442.56,0,0,0,0,688.3493 +13295,16215,28937,-9,28935,28936,1,1,26,0,0,0,3,3,-9,0,3,0,0,0,0,0,-850.01636,-9,3,3,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.81,54.55,-9,-9,5,1,1,1,1,0,6,1,0,164,-297252.22,0,0,0,0,0,-44.486599 +13295,16216,28938,-9,28935,28936,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-922.80261,0,3,3,2021,32,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,1.73,60.66,-9,-9,0,1,1,1,1,0,6,2,0,602,-123335.09,0,0,0,0,0,0 +13296,16217,28939,28940,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,8.1459494,8.0264816,54,3,10.061397,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9780908,50.55,53.71,39.14,52.21,8.333333333333334,1,1,0,0,0,4,3,1,442.5,879744.25,323140.53,277051.63,0,0,0,2131.5439 +13296,16217,28940,28939,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,54,-3,.22319885,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5232189,0,39.14,52.21,50.55,53.71,8.333333333333334,1,1,0,0,0,4,3,1,442.5,879744.25,323140.53,277051.63,0,0,0,2131.5439 +13297,16218,28941,-9,28944,28943,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-967.66064,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13297,16218,28942,-9,28944,28943,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.5637,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13297,16218,28943,28944,-9,-9,1,1,38,0,2,0,2,2,-9,0,2,8.8383827,8.5975952,0,7,0,53.327938,0,2,2,2021,24,12,60,50,1,12,0,12.692359,12.692359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,16.09,40.45,46.33,55.93,3.333333333333333,1,1,0,0,7,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13297,16218,28944,28943,-9,-9,1,0,38,0,2,0,1,1,-9,0,3,7.2570624,7.2725358,0,7,0,20.111916,0,-9,-9,2021,12,2,30,0,1,2,0,6.6880322,6.6880322,0,0,0,0,0,0,0,0,1,1,0,1.7438467,0,46.33,55.93,16.09,40.45,8.333333333333334,1,1,0,0,6,6,4,1,609.25,172232.23,55272.141,83546.719,12695.108,0,0,3685.9126 +13298,16219,28945,28946,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.761981,8.5653152,0,1,-4,-44.007694,0,-9,-9,2021,7,0,44,38,1,0,0,15.934943,15.934943,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,6,8,5,0,450.5,80744.227,45501.008,0,0,0,0,4462.376 +13298,16219,28946,28945,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.7755136,8.7896891,0,1,4,-19.256329,-9,-9,-9,2021,9,1,48,0,1,1,0,19.514118,19.514118,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,2,8,5,0,450.5,80744.227,45501.008,0,0,0,0,4462.376 +13299,16220,28947,-9,28948,-9,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-919.09583,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16220,28948,-9,-9,-9,1,0,44,1,2,0,1,1,-9,0,3,9.1877937,9.1815319,6.5363102,0,0,-999.12714,0,2,-9,2021,12,0,58,42,1,0,0,16.724508,16.724508,.05,.05,0,0,0,0,0,0,1,1,0,7.3181496,0,49.04,55.86,-9,-9,3.333333333333333,3,4,0,1,9,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16220,28949,-9,28948,-9,1,0,16,1,2,1,2,0,-9,0,2,0,0,0,0,0,-858.3197,-9,1,-9,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.74,49.92,-9,-9,3.333333333333333,3,4,0,0,1,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16220,28950,-9,28948,-9,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-973.80298,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,5,1,1068.75,1209171.3,526747.06,609751.56,51762.863,0,0,4984.7339 +13299,16221,28951,-9,28948,-9,1,1,19,1,2,1,2,0,0,0,4,0,0,0,0,0,-1026.845,-9,1,-9,2021,13,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.11,61.28,-9,-9,3.333333333333333,3,4,0,0,2,8,1,1,328,0,0,0,0,0,0,804.8219 +13299,16221,28952,-9,-9,28951,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-995.54828,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,1,328,0,0,0,0,0,0,804.8219 +13300,16222,28953,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-949.28137,0,2,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1762872,0,51.9,21.11,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,173,176865.05,90984.688,0,0,11084.49,0,1678.4299 +13301,16223,28954,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,4.4619002,4.6139455,0,0,-1121.1805,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,4.7831769,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,4,2,1,86,54939.75,50817.66,105936.33,0,0,0,1054.1187 +13302,16224,28955,28956,-9,-9,1,1,41,0,1,0,1,1,-9,0,4,8.8871145,8.748147,0,13,7,19.976976,0,3,2,2021,10,0,50,50,1,1,0,15.06619,15.06619,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.2,51.4,50.43,45.82,6.666666666666667,2,3,0,0,13,9,5,1,1273.6666,599792.13,391766.34,263525.31,153102.45,0,0,4928.0713 +13302,16224,28956,28955,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.5998363,8.3472881,0,13,-7,-23.744917,0,1,1,2021,12,0,38,35,1,0,0,14.300882,14.300882,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.43,45.82,46.2,51.4,5,2,3,0,0,8,9,5,1,1273.6666,599792.13,391766.34,263525.31,153102.45,0,0,4928.0713 +13302,16224,28957,-9,28956,28955,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-965.84009,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,9,5,1,1273.6666,599792.13,391766.34,263525.31,153102.45,0,0,4928.0713 +13303,16225,28958,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1052.2494,0,2,2,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.97,17.84,-9,-9,1.666666666666667,1,1,1,0,0,12,2,0,318,197632.39,0,0,0,0,181.94624,1590.3021 +13304,16226,28959,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,8.3219519,8.4035883,0,0,0,-1072.0604,0,2,2,2021,7,0,50,48,1,0,0,9.9329967,9.9329967,.05,.05,0,0,0,0,0,0,0,0,0,3.6805389,0,57.06,57.76,-9,-9,6.666666666666667,1,1,0,0,8,4,5,0,429,162568.33,132452.28,153252,117813.23,0,0,2177.8679 +13305,16227,28960,28961,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,0,0,9,-8,0,0,3,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.18,49.84,61.12,51.57,6.666666666666667,1,1,0,0,0,9,1,1,767.5,492543.44,0,454297.44,0,0,0,1554.3879 +13305,16227,28961,28960,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,9,8,0,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,38.18,49.84,10,1,1,0,0,3,9,1,1,767.5,492543.44,0,454297.44,0,0,0,1554.3879 +13306,16228,28962,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,4,0,7.5763412,7.3957038,0,0,-971.94226,0,2,2,2021,9,0,0,25,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.6964016,7.5313735,41.7,59.17,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,925,752686.56,266464.47,166607.14,0,0,0,1392.0535 +13307,16229,28963,28964,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,6.2829356,6.5143962,0,7,0,-22.781004,0,2,2,2021,7,0,15,15,1,0,0,3.5759528,3.5759528,.05,.05,0,0,0,0,0,0,0,0,0,7.8977838,0,54.69,57.47,57.06,57.76,10,1,1,0,0,8,9,5,1,554.5,1038382.8,887567.13,327347.19,55131.566,0,0,6694.5186 +13307,16229,28964,28963,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.4889793,9.3685684,0,7,0,-57.959274,0,3,2,2021,6,0,46,44,1,0,0,35.173683,35.173683,.05,.05,0,0,0,0,0,0,0,0,0,8.6039686,0,57.06,57.76,54.69,57.47,8.333333333333334,1,1,0,0,8,9,5,1,554.5,1038382.8,887567.13,327347.19,55131.566,0,0,6694.5186 +13307,16230,28965,-9,28963,28964,1,1,22,0,0,1,2,0,0,0,4,0,0,0,0,0,-918.78387,-9,1,1,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,.096487164,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,2528,0,0,0,0,0,0,0 +13307,16231,28966,-9,28963,28964,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-975.20654,-9,1,1,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,0,9,1,1,2197,-91532.5,0,0,0,0,0,0 +13308,16232,28967,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,0,0,0,0,-938.68469,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.42,54.81,-9,-9,10,1,1,0,0,0,10,1,0,1440,58930.566,0,133490.67,0,0,0,1676.1251 +13308,16233,28968,-9,28967,-9,1,0,45,0,0,0,2,2,-9,0,3,7.8007216,7.5728073,0,0,0,-899.90747,0,3,3,2021,11,0,38,38,1,0,0,6.5811963,6.5811963,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.67,35.78,-9,-9,5,1,1,0,0,11,10,3,0,309,-44746.207,-169940.55,171341.05,17829.947,0,0,506.89948 +13309,16234,28969,-9,28971,28970,1,0,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1049.0992,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,6,5,1,792.33331,1444864.9,1075719.3,259900.94,39945.004,0,5996.5313,3695.4695 +13309,16234,28970,28971,-9,-9,1,1,43,0,1,0,2,2,-9,0,4,8.3311081,8.4878473,0,7,6,-78.123161,0,3,2,2021,0,0,38,48,1,0,0,13.54987,13.54987,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,19.52,68.09,8.333333333333334,1,1,0,0,10,6,5,1,792.33331,1444864.9,1075719.3,259900.94,39945.004,0,5996.5313,3695.4695 +13309,16234,28971,28970,-9,-9,1,0,37,0,1,0,1,1,-9,0,4,8.5460043,8.7816906,0,7,-6,-20.196997,0,-9,-9,2021,24,10,48,55,1,10,0,14.082665,14.082665,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.52,68.09,57.16,56.15,8.333333333333334,1,1,0,0,8,6,5,1,792.33331,1444864.9,1075719.3,259900.94,39945.004,0,5996.5313,3695.4695 +13310,16235,28972,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,0,0,0,0,-892.28326,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.26,38.35,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,348,-24781.967,0,0,0,0,0,863.17517 +13311,16236,28973,-9,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,6.9727163,7.0700951,0,0,-956.0705,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2249093,55.51,51.57,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,527,140800.7,53450.148,0,0,0,0,579.50952 +13312,16237,28974,28975,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,55,-3,27.391121,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,64.63,35.06,52,47,6.666666666666667,1,1,0,0,0,11,2,1,1392.5,384631.19,197903.19,161346.78,0,0,0,1638.0994 +13312,16237,28975,28974,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.3853645,5.2470779,55,3,8.415966,0,-9,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2242732,52,47,64.63,35.06,8.333333333333334,1,1,0,0,0,11,2,1,1392.5,384631.19,197903.19,161346.78,0,0,0,1638.0994 +13313,16238,28976,28977,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2606964,8.3867846,0,7,2,45.246563,0,3,3,2021,15,4,30,32,1,4,0,14.650793,14.650793,0,0,0,0,0,0,0,0,0,0,0,6.5992041,0,50.03,52.62,58.15,52.91,8.333333333333334,1,1,0,0,10,1,4,1,2745,396773.66,368634.78,138541.56,75292.656,0,0,2774.9697 +13313,16238,28977,28976,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,7.5765576,7.857933,0,7,-2,-29.232931,0,3,3,2021,8,0,40,50,1,0,0,6.0613523,6.0613523,.05,.05,0,0,0,0,0,0,0,0,0,1.9342353,0,58.15,52.91,50.03,52.62,1.666666666666667,1,1,0,0,10,1,4,1,2745,396773.66,368634.78,138541.56,75292.656,0,0,2774.9697 +13314,16239,28978,28979,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.4040222,9.4563828,0,12,1,-41.358398,0,2,2,2021,18,7,53,48,1,7,0,32.998451,32.998451,.05,.05,0,0,0,0,0,0,0,0,0,7.3575311,0,42.19,58.81,39.41,49.43,5,1,1,0,0,13,5,5,0,1128.5,932239.75,751742.5,251965.63,92528.141,0,0,5301.9463 +13314,16239,28979,28978,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.0861816,7.9175711,0,12,-1,-47.1054,0,2,2,2021,13,1,37,37,1,1,0,9.8663807,9.8663807,.05,.05,0,0,0,0,0,0,0,0,0,4.4488387,0,39.41,49.43,42.19,58.81,8.333333333333334,1,1,0,0,13,5,5,0,1128.5,932239.75,751742.5,251965.63,92528.141,0,0,5301.9463 +13314,16240,28980,-9,28979,28978,1,0,18,0,0,0,2,2,1,0,5,6.2030807,6.1467233,0,0,0,-930.52496,-9,2,2,2021,6,1,20,0,1,1,1,3.6487885,3.6487885,0,0,0,0,0,0,0,0,0,0,0,0,0,52.77,58.29,-9,-9,8.333333333333334,1,1,0,0,2,5,2,0,472,-76462.117,0,0,0,0,0,714.60498 +13315,16241,28981,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.6262646,8.5949993,0,0,0,-983.0672,0,3,-9,2021,22,10,47,37,1,10,0,10.723624,10.723624,0,0,.05,0,0,0,0,0,0,0,0,0,0,35.71,47.21,-9,-9,5,1,1,0,0,12,4,5,1,418,165769,103896.76,145291.45,0,0,0,1603.6777 +13316,16242,28982,-9,28985,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.7134,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13316,16242,28983,28985,-9,-9,1,1,52,0,2,0,2,2,-9,0,4,8.4751453,8.4344339,0,2,16,-8.8096848,0,-9,-9,2021,24,12,60,60,1,12,0,6.8060012,6.8060012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.19,56.73,43.37,57.28,6.666666666666667,1,1,0,0,10,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13316,16242,28984,-9,28985,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.30933,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13316,16242,28985,28983,-9,-9,1,0,36,0,2,0,2,2,-9,0,3,0,0,0,2,-16,-21.997774,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,44.19,56.73,6.666666666666667,1,1,0,0,0,2,3,0,1367.75,1217934.8,670370.25,270453.78,0,0,0,1520.0138 +13317,16243,28986,28987,-9,-9,1,1,42,0,1,0,1,1,-9,0,4,9.1342669,9.0501528,0,18,4,96.378365,0,2,2,2021,19,7,40,42,1,7,0,23.378969,23.378969,0,0,0,0,0,0,0,0,1,1,0,.8823365,0,35.38,63.46,33.3,64.17,6.666666666666667,1,1,0,0,10,10,5,1,706.33331,292633.09,85040.133,428671.34,219236.2,20742.199,10384.934,5878.48 +13317,16243,28987,28986,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,8.7734671,8.8283672,0,18,-4,7.9961834,0,2,-9,2021,14,2,37,36,1,2,0,25.957472,25.957472,0,0,0,0,0,0,0,0,1,1,0,.47844589,0,33.3,64.17,35.38,63.46,8.333333333333334,1,1,0,0,8,10,5,1,706.33331,292633.09,85040.133,428671.34,219236.2,20742.199,10384.934,5878.48 +13317,16243,28988,-9,28987,28986,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.4724,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,706.33331,292633.09,85040.133,428671.34,219236.2,20742.199,10384.934,5878.48 +13318,16244,28989,28991,-9,-9,1,1,53,0,1,0,2,2,-9,0,5,8.5040874,8.4496984,0,8,2,27.112051,0,2,2,2021,10,0,40,40,1,0,0,9.7853012,9.7853012,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,36.79,56.27,8.333333333333334,1,1,0,0,9,9,5,1,665,2947297.5,1410436.3,1448179.9,0,0,0,5088.145 +13318,16244,28990,-9,28991,28989,1,0,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-957.55243,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,55,-9,-9,6,1,1,-9,0,0,9,5,1,665,2947297.5,1410436.3,1448179.9,0,0,0,5088.145 +13318,16244,28991,28989,-9,-9,1,0,51,0,1,0,1,1,-9,0,3,9.0010366,8.8741112,0,8,-2,63.988094,0,2,1,2021,14,3,42,40,1,3,0,20.215139,20.215139,0,0,0,0,0,0,0,0,1,1,0,0,0,36.79,56.27,57.06,57.76,3.333333333333333,1,1,0,0,9,9,5,1,665,2947297.5,1410436.3,1448179.9,0,0,0,5088.145 +13319,16245,28992,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-990.3606,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.15000000000001,32.53,-9,-9,5,1,1,0,0,0,9,1,0,198,136071.42,0,0,0,2918.8823,0,836.84326 +13320,16246,28993,28994,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.1811094,7.8607063,0,7,-4,-33.848701,0,-9,-9,2021,19,7,38,40,1,7,0,9.9989653,9.9989653,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.48,42.45,42.46,54.85,3.333333333333333,2,3,0,0,2,8,5,1,409.5,1575301.3,877319.13,701849.69,23792.484,0,0,5055.04 +13320,16246,28994,28993,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,9.2133636,8.9072733,6.3342996,28,4,-28.013681,0,3,3,2021,16,5,55,60,1,5,0,18.129019,18.129019,.05,.05,.05,0,0,0,0,0,1,1,0,0,6.5897455,42.46,54.85,48.48,42.45,8.333333333333334,2,3,0,0,8,8,5,1,409.5,1575301.3,877319.13,701849.69,23792.484,0,0,5055.04 +13320,16247,28995,28996,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,0,0,0,7,3,20.37348,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.58,56.45,59.94,34.64,8.333333333333334,2,3,1,0,0,8,3,1,1229.5,32489.164,31394.551,0,0,5573.3013,0,971.92407 +13320,16247,28996,28995,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,7.8221006,7.9074402,0,7,-3,92.596405,0,-9,-9,2021,4,0,38,38,1,0,0,6.3986549,6.3986549,0,0,0,0,0,0,0,0,1,1,0,0,0,59.94,34.64,38.58,56.45,8.333333333333334,2,3,0,0,5,8,3,1,1229.5,32489.164,31394.551,0,0,5573.3013,0,971.92407 +13320,16248,28997,-9,28993,28994,1,1,24,0,0,0,2,2,-9,0,4,8.3356209,8.0943298,0,0,0,-1123.1852,0,1,2,2021,2,1,40,40,1,1,1,11.265066,11.265066,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,4,8,4,1,1679,42522.785,0,0,0,0,0,1319.9122 +13320,16249,28998,-9,28996,28995,1,1,22,0,0,0,2,2,-9,0,4,7.6783509,7.8379068,0,0,0,-1093.7363,0,2,2,2021,9,1,40,45,1,1,1,6.4584832,6.4584832,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,4,8,3,1,152,52316.465,0,0,0,0,0,858.62341 +13320,16250,28999,-9,28993,28994,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1044.6193,-9,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.06,58.64,-9,-9,6.666666666666667,2,3,0,0,0,8,1,1,7975,-69129.727,0,0,0,0,0,712.64905 +13320,16251,29000,-9,28996,28995,1,1,19,0,0,0,2,2,1,0,4,6.7174106,6.6255231,0,0,0,-1035.9926,-9,2,2,2021,7,0,20,0,1,0,1,4.494235,4.494235,0,0,0,0,0,0,0,0,1,1,0,0,0,58.59,35.27,-9,-9,6.666666666666667,2,3,0,0,3,8,2,1,279,-184851.8,0,0,0,0,0,-42.117912 +13321,16252,29001,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,2,7.4434471,7.4643359,0,0,0,-934.54498,0,3,-9,2021,21,10,32,32,1,10,0,8.3649502,8.3649502,0,0,0,0,0,0,0,7,1,1,0,0,0,26.48,25.8,-9,-9,1.666666666666667,1,1,0,0,9,13,3,0,285,527743.38,85647.469,369355.19,0,0,0,1253.2303 +13322,16253,29002,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.953752,8.7236519,7.3000436,0,0,-954.11603,0,3,3,2021,8,1,10,12,1,1,0,39.130608,39.130608,0,0,.05,0,0,0,0,0,0,0,0,.76001316,7.5923986,43.51,51.46,-9,-9,6.666666666666667,1,1,0,0,12,6,5,1,440,252054.3,-5982.7915,62612.664,0,0,0,2233.8113 +13323,16254,29003,-9,29004,29005,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1130.3378,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,0,701.66669,190248.5,43566.5,156099.89,96721.398,2993.6375,0,2309.0486 +13323,16254,29004,29005,-9,-9,1,0,34,1,1,0,2,2,-9,0,4,7.2769041,7.3545008,0,9,-2,-68.486137,0,3,3,2021,12,0,25,53,1,0,0,7.730484,7.730484,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.47,53.17,49,57,8.333333333333334,1,1,0,0,11,13,4,0,701.66669,190248.5,43566.5,156099.89,96721.398,2993.6375,0,2309.0486 +13323,16254,29005,29004,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.2542009,8.1680393,0,9,2,5.157773,0,-9,-9,2021,10,0,48,48,1,1,0,9.4955225,9.4955225,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,57,51.47,53.17,7,4,1,0,0,1,13,4,0,701.66669,190248.5,43566.5,156099.89,96721.398,2993.6375,0,2309.0486 +13324,16255,29006,29007,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,0,0,11,8,0,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.19,46.16,58.5,44.67,8.333333333333334,1,1,0,0,3,9,1,1,456.5,329343.72,71613.539,234398.53,0,0,0,1347.583 +13324,16255,29007,29006,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,11,-8,0,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0130574,0,58.5,44.67,56.19,46.16,8.333333333333334,1,1,0,1,0,9,1,1,456.5,329343.72,71613.539,234398.53,0,0,0,1347.583 +13325,16256,29008,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,8.4593048,8.123003,0,0,0,-996.45764,0,2,3,2021,12,2,37,36,1,2,0,13.709532,13.709532,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.5,48.33,-9,-9,6.666666666666667,1,1,0,0,11,13,4,1,715,115329.05,119605.72,154617.27,70803,0,0,1037.2457 +13326,16257,29009,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,1,0,0,0,0,0,-966.84406,0,-9,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.76,34.83,-9,-9,1.666666666666667,1,1,0,1,0,10,1,1,395,99038.695,0,0,0,0,-103.26472,768.83667 +13327,16258,29010,29011,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.5202684,7.402287,0,6,-6,11.876206,0,3,3,2021,16,4,35,35,1,4,0,8.0563364,8.0563364,0,0,0,0,0,0,0,0,0,0,0,.41261581,0,40.15,38.5,39.82,28.05,8.333333333333334,1,1,0,0,7,4,4,1,138.5,499008.28,231924.59,176246.45,31819.941,4753.9814,0,2730.5508 +13327,16258,29011,29010,-9,-9,1,1,63,0,0,0,3,3,-9,0,2,8.1483374,8.6821156,5.0178528,6,6,106.6222,0,3,3,2021,13,3,52,49,1,3,0,7.9916806,7.9916806,.05,.05,0,0,0,0,0,0,0,0,0,4.9766531,4.8793769,39.82,28.05,40.15,38.5,5,1,1,0,0,7,4,4,1,138.5,499008.28,231924.59,176246.45,31819.941,4753.9814,0,2730.5508 +13327,16259,29012,-9,29010,29011,1,0,34,0,0,0,2,2,-9,0,4,8.12395,8.1304064,0,0,0,-911.22205,0,2,3,2021,11,0,37,35,1,2,1,11.729362,11.729362,.05,.05,.05,0,0,0,0,0,0,0,0,1.2941692,0,48,56,-9,-9,7,1,1,0,0,7,4,4,1,310,181965.91,-87880.734,0,0,0,0,577.25122 +13328,16260,29013,29014,-9,-9,1,1,50,0,0,0,2,2,-9,0,4,8.0991907,8.0435972,0,7,-1,-52.72683,0,3,3,2021,6,0,37,37,1,0,0,14.486187,14.486187,.05,.05,0,0,0,0,0,0,0,0,0,3.1741121,0,62.49,55.09,55.44,52.99,10,1,1,0,0,8,11,4,1,787,212186.67,80077.047,0,0,22103.697,0,2373.5386 +13328,16260,29014,29013,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.9389324,7.9467463,0,7,1,92.834625,0,-9,-9,2021,10,0,35,43,1,0,0,8.3344145,8.3344145,0,0,0,0,0,0,0,0,0,0,0,2.2174892,0,55.44,52.99,62.49,55.09,8.333333333333334,1,1,0,0,8,11,4,1,787,212186.67,80077.047,0,0,22103.697,0,2373.5386 +13329,16261,29015,29016,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.8248138,8.6286469,0,12,-4,-119.27851,0,2,2,2021,11,0,35,41,1,0,0,23.678427,23.678427,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.87,51.29,55.36,51.57,6.666666666666667,1,1,0,0,12,11,4,1,916.5,218254.33,75571.406,149927.73,83256.5,0,0,3482.0708 +13329,16261,29016,29015,-9,-9,1,0,53,0,2,0,2,2,-9,0,3,7.7166128,7.9135323,0,12,4,-59.507889,0,2,2,2021,14,4,28,28,1,4,0,11.063313,11.063313,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,58.87,51.29,8.333333333333334,1,1,0,0,3,11,4,1,916.5,218254.33,75571.406,149927.73,83256.5,0,0,3482.0708 +13330,16262,29017,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.123807,6.7589579,0,0,-829.70142,0,1,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0852313,55.93,49.95,-9,-9,1.666666666666667,1,1,0,0,3,10,3,1,638,621148.5,0,261941.67,0,0,0,1930.1603 +13331,16263,29018,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,0,0,-992.83923,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.75,66.17,-9,-9,6.666666666666667,1,1,1,1,2,1,1,0,107,293659.41,0,248828.17,0,0,0,-401.95779 +13332,16264,29019,29021,-9,-9,1,0,31,1,4,0,2,2,-9,0,4,0,0,0,14,-5,-26.986496,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0163903,0,47,57,50,57,7,2,3,0,0,0,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13332,16264,29020,-9,29019,29021,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-947.67358,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13332,16264,29021,29019,-9,-9,1,1,36,1,4,0,2,2,-9,0,4,7.8097124,7.5908332,0,14,5,124.77266,0,3,2,2021,10,0,30,40,1,1,0,9.1049519,9.1049519,.05,.05,0,0,0,0,0,0,1,1,0,1.817387,0,50,57,47,57,7,2,3,0,0,11,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13332,16264,29022,-9,29019,29021,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-961.67389,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1671.75,79166.711,51752.477,0,0,0,1457.4773,1540.6573 +13333,16265,29023,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.0457091,6.9806833,0,0,-1060.6757,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9800282,7.1171999,52.88,43.27,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,601,199345.52,124775.75,0,0,0,0,1144.1722 +13333,16266,29024,-9,29023,-9,1,0,59,0,0,0,1,1,-9,0,4,8.5634556,8.822032,4.2341614,0,0,-926.51917,-9,2,1,2021,0,0,54,0,1,0,0,12.348237,12.348237,.05,.05,0,0,0,0,0,0,1,1,0,0,4.4311395,64.47,51.45,-9,-9,8.333333333333334,1,1,0,0,8,7,5,1,476,847850.94,817981.75,130863.85,28614.242,7095.1357,0,1749.7764 +13334,16267,29025,29026,-9,-9,1,0,54,0,0,0,1,1,-9,1,4,0,0,0,9,-17,-21.733576,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8125343,0,20.11,66.45,58.55,46.11,3.333333333333333,1,1,0,0,0,4,2,1,343.5,286916.69,101304.74,149575.33,0,0,0,741.98865 +13334,16267,29026,29025,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,6.702435,6.6845536,9,17,7.4333539,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0809321,6.4958534,58.55,46.11,20.11,66.45,8.333333333333334,1,1,0,0,7,4,2,1,343.5,286916.69,101304.74,149575.33,0,0,0,741.98865 +13335,16268,29027,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,7.3136463,7.7389054,0,0,-914.13013,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5244193,62.1,51.16,-9,-9,10,1,1,0,0,12,2,3,1,3064,166402.53,207368.73,0,0,0,0,599.06226 +13336,16269,29028,-9,-9,-9,1,1,60,0,0,0,2,2,-9,1,1,0,0,0,0,0,-988.0835,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.54,34.56,-9,-9,10,1,1,0,0,0,4,1,0,197,223845.86,-26843.014,0,0,0,0,2109.1499 +13337,16270,29029,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.0222692,8.0429268,0,0,0,-1007.7894,0,-9,-9,2021,5,0,39,40,1,0,0,10.320748,10.320748,0,0,0,0,0,0,0,7,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,12,4,0,849,-112432.88,0,0,0,0,0,995.29602 +13337,16271,29030,-9,29029,-9,1,0,22,0,0,0,2,2,-9,0,4,7.5057569,7.2918696,0,0,0,-1002.312,-9,2,-9,2021,13,1,37,0,1,1,1,5.7827568,5.7827568,0,0,0,0,0,0,0,0,0,0,0,0,0,42.21,55.17,-9,-9,6.666666666666667,1,1,0,0,7,12,3,0,1772,16699.111,0,0,0,0,0,149.78395 +13338,16272,29031,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1044.7882,-9,2,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.52,48.73,-9,-9,6.666666666666667,1,1,0,0,7,2,1,1,1245,-50464.43,0,0,0,0,0,100.90482 +13339,16273,29032,29033,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.9182348,8.8981915,0,4,2,64.54438,0,-9,-9,2021,19,7,40,40,1,7,0,23.635374,23.635374,.05,.05,0,0,0,0,0,0,1,1,0,7.1134539,0,40.95,63.66,60.06,37.76,3.333333333333333,1,1,0,0,7,4,5,1,2772.5,-47445.172,-65720.969,75264.563,51034.258,-147.53282,0,3017.085 +13339,16273,29033,29032,-9,-9,1,0,42,0,0,0,2,2,-9,1,2,6.9505224,6.696919,0,4,-2,-118.56249,0,-9,-9,2021,5,1,30,20,1,1,0,3.9456465,3.9456465,0,0,0,0,0,0,0,0,1,1,0,0,0,60.06,37.76,40.95,63.66,1.666666666666667,1,1,0,0,5,4,5,1,2772.5,-47445.172,-65720.969,75264.563,51034.258,-147.53282,0,3017.085 +13340,16274,29034,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.2694306,6.9026117,0,0,-997.39655,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,36.563381,0,0,1,1,0,2.2132449,7.0516853,52,48,-9,-9,7,1,1,0,0,0,13,3,1,561,262230.13,393764.28,108726.81,0,0,0,1528.8278 +13341,16275,29035,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,2,8.4268122,8.5521288,0,0,0,-951.52643,0,2,3,2021,12,2,39,37,1,2,0,10.02798,10.02798,.05,.05,0,0,0,0,1.3012494,0,1,1,0,0,0,13.24,63.22,-9,-9,5,1,1,0,0,9,6,4,1,2567,-2293.8916,-60381.5,-9434.999,58691.598,0,0,2395.5737 +13342,16276,29036,29038,-9,-9,1,0,55,0,2,0,1,1,-9,0,3,8.8005638,8.3686361,0,3,-8,35.580029,0,2,2,2021,12,1,37,37,1,1,0,19.226839,19.226839,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.58,53.71,54.1,59.11,3.333333333333333,1,1,0,0,11,12,5,1,1759.6666,2446265,1676736.1,258242.09,0,0,0,4769.3652 +13342,16276,29037,-9,29036,29038,1,0,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1155.8796,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.68,63.48,-9,-9,8.333333333333334,1,1,0,0,1,12,5,1,1759.6666,2446265,1676736.1,258242.09,0,0,0,4769.3652 +13342,16276,29038,29036,-9,-9,1,1,63,0,2,0,1,1,-9,0,5,9.211195,8.9784546,4.4227381,3,8,-119.68649,0,2,3,2021,8,0,38,41,1,0,0,26.842505,26.842505,.05,.05,0,0,0,0,0,0,1,1,0,4.9389925,5.1636109,54.1,59.11,47.58,53.71,6.666666666666667,1,1,0,0,9,12,5,1,1759.6666,2446265,1676736.1,258242.09,0,0,0,4769.3652 +13343,16277,29039,29040,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,6.7704339,6.9824634,0,28,10,119.90532,0,3,-9,2021,33,12,15,27,1,12,0,7.0746512,7.0746512,0,0,0,0,0,0,0,0,1,1,0,0,0,28.84,41.06,39.43,60.46,5,1,1,0,0,9,9,4,1,471,1131182.4,778125.44,443625.53,0,0,0,3364.7373 +13343,16277,29040,29039,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.648097,9.0189381,0,28,-10,-85.392273,0,3,2,2021,11,3,42,41,1,3,0,23.554274,23.554274,.05,.05,0,0,0,0,0,0,1,1,0,1.4756702,0,39.43,60.46,28.84,41.06,1.666666666666667,1,1,0,0,8,9,4,1,471,1131182.4,778125.44,443625.53,0,0,0,3364.7373 +13344,16278,29041,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,4,0,7.5753379,7.5377669,0,0,-973.88965,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.3581147,7.7418265,43.73,59.7,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,271,198956.67,108593.5,193809.44,0,0,0,1621.5782 +13345,16279,29042,29043,-9,-9,1,0,63,0,0,0,3,3,-9,0,4,0,3.8860745,4.0308876,11,-1,48.745487,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4099348,4.1207938,61.12,51.57,57.16,56.15,10,1,1,0,0,7,12,4,1,1739.5,1432481.6,1082519.1,330839.44,0,802.14728,0,3052.3027 +13345,16279,29043,29042,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,8.1172905,7.8025551,11,1,-14.593401,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.1693325,8.1329937,57.16,56.15,61.12,51.57,10,1,1,0,0,4,12,4,1,1739.5,1432481.6,1082519.1,330839.44,0,802.14728,0,3052.3027 +13346,16280,29044,29045,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,0,7.4737134,7.1818733,40,-12,93.434586,0,2,3,2021,11,0,0,29,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5981412,6.8014193,50.51,53.71,59.63,41.44,8.333333333333334,1,1,0,0,11,5,3,1,1083.5,1097869.8,550204.75,321093.88,0,0,0,2981.9648 +13346,16280,29045,29044,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,7.5763321,7.8520832,40,12,1.1548326,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5165625,7.518877,59.63,41.44,50.51,53.71,8.333333333333334,1,1,0,0,4,5,3,1,1083.5,1097869.8,550204.75,321093.88,0,0,0,2981.9648 +13347,16281,29046,29047,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,57,-10,0,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2512984,0,34.51,57.34,59.7,53.75,8.333333333333334,1,1,0,0,0,10,1,0,383,176124.42,0,181283.59,0,0,0,1086.0352 +13347,16281,29047,29046,-9,-9,1,1,85,0,0,0,3,3,-9,0,3,0,0,0,57,10,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.4857721,0,59.7,53.75,34.51,57.34,3.333333333333333,1,1,0,0,0,10,1,0,383,176124.42,0,181283.59,0,0,0,1086.0352 +13348,16282,29048,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,6.2894964,5.930449,0,0,-924.87134,-9,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,9.3331833,6.2870717,55.61,50.3,-9,-9,8.333333333333334,4,2,0,0,9,8,2,1,257,609684.25,199738.61,405228.88,0,0,0,6002.6758 +13349,16283,29049,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,4,0,7.3218617,7.3848448,0,0,-862.95758,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9377518,7.2221246,60.12,54.8,-9,-9,10,1,1,0,0,3,9,3,1,491,1061983.3,172639.14,887701.06,0,0,0,1575.6528 +13350,16284,29050,29051,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,5.9231639,5.9634533,40,3,39.488205,0,1,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.6217247,5.8264823,49.38,58.29,55.53,51.55,8.333333333333334,1,1,0,0,6,12,3,1,385,1053570.5,687491.94,167506.38,0,0,0,2557.2805 +13350,16284,29051,29050,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,7.8191242,7.7498026,40,-3,4.003098,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.1815138,8.1125898,55.53,51.55,49.38,58.29,8.333333333333334,1,1,0,0,4,12,3,1,385,1053570.5,687491.94,167506.38,0,0,0,2557.2805 +13351,16285,29052,29053,-9,-9,1,1,77,0,1,0,1,1,-9,0,3,0,0,0,56,4,0,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.2219021,0,47.5,37.66,51,46,8.333333333333334,2,3,0,0,0,8,1,1,357,756830.25,0,432784,0,0,0,715.04633 +13351,16285,29053,29052,-9,-9,1,0,73,0,1,0,2,2,-9,0,3,0,0,0,56,-4,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,32.51165,0,0,1,1,0,0,0,51,46,47.5,37.66,7,2,3,0,0,0,8,1,1,357,756830.25,0,432784,0,0,0,715.04633 +13351,16286,29054,29055,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,7.2847772,7.0816765,0,9,-4,167.64421,0,-9,-9,2021,12,1,14,0,1,1,0,12.194502,12.194502,0,0,0,0,0,0,0,0,1,1,0,0,0,49.2,47.47,31.4,48.1,6.666666666666667,2,3,0,0,11,8,4,1,2060.6667,1156631.9,969700.94,249175.75,284789.75,4440.4043,0,2097.2905 +13351,16286,29055,29054,29053,29052,1,1,51,0,1,0,1,1,-9,0,1,8.3150272,8.3149414,0,9,4,-70.792503,0,3,2,2021,31,12,38,45,1,12,0,11.310942,11.310942,.05,.05,0,0,0,0,0,0,1,1,0,3.5764911,0,31.4,48.1,49.2,47.47,0,2,3,0,1,11,8,4,1,2060.6667,1156631.9,969700.94,249175.75,284789.75,4440.4043,0,2097.2905 +13351,16286,29056,-9,29054,29055,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-885.4043,-9,1,1,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.12,46.01,-9,-9,6.666666666666667,2,3,0,0,0,8,4,1,2060.6667,1156631.9,969700.94,249175.75,284789.75,4440.4043,0,2097.2905 +13352,16287,29057,29058,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,0,0,0,26,-1,74.097282,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,56.47,59.4,8.333333333333334,1,1,0,0,2,12,5,1,1400,1278210.6,974788.75,252511.94,39986.48,326.01849,303.04938,5976.9058 +13352,16287,29058,29057,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,9.6700583,9.6126537,0,27,1,22.179249,0,-9,-9,2021,6,0,55,50,1,0,0,32.689739,32.689739,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,57.06,57.76,8.333333333333334,1,1,0,0,13,12,5,1,1400,1278210.6,974788.75,252511.94,39986.48,326.01849,303.04938,5976.9058 +13352,16288,29059,-9,29057,29058,1,1,20,0,0,0,2,2,1,0,5,7.7608933,7.7815118,0,0,0,-888.8421,-9,1,2,2021,6,0,36,0,1,0,1,9.4252157,9.4252157,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,3,12,3,1,1035,-52629.043,-21601.137,0,0,0,0,1041.9336 +13352,16289,29060,-9,29057,29058,1,1,18,0,0,0,2,2,1,0,5,7.7017779,7.6132536,0,0,0,-981.52844,-9,1,2,2021,6,0,27,0,1,0,1,7.6397691,7.6397691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,1,1,0,0,1,12,3,1,710,32282.15,81387.086,0,0,0,0,1295.6799 +13353,16290,29061,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,2,0,6.6463981,6.9924903,0,0,-1053.7594,0,3,2,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,7.5438948,0,0,1,1,0,0,6.7366891,32.07,42.69,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1395,78562.039,58375.629,0,0,0,0,1913.6743 +13354,16291,29062,29063,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.3481688,6.996521,12,-1,84.618118,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1712766,7.1871886,51.24,58.84,55.36,51.57,8.333333333333334,1,1,0,0,0,2,3,1,484.5,1023587.8,373351.5,258721.05,0,0,0,3103.5986 +13354,16291,29063,29062,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.5164437,6.8546667,12,1,-50.384392,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0328321,6.5306458,55.36,51.57,51.24,58.84,8.333333333333334,1,1,0,0,0,2,3,1,484.5,1023587.8,373351.5,258721.05,0,0,0,3103.5986 +13355,16292,29064,29065,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,3.9146502,3.907068,44,-2,-2.8915956,0,3,3,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3753564,3.7680407,29.53,19.07,55.71,46,1.666666666666667,4,2,0,1,7,9,3,1,711,1708817.5,813481.19,376608.88,0,0,0,3066.9832 +13355,16292,29065,29064,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.9361649,7.8633933,44,2,-95.004372,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6765656,8.0660067,55.71,46,29.53,19.07,5,1,1,0,0,11,9,3,1,711,1708817.5,813481.19,376608.88,0,0,0,3066.9832 +13356,16293,29066,29067,-9,-9,1,0,66,0,0,0,1,1,-9,0,5,0,7.1985154,7.3267088,44,0,-51.437576,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.8740263,7.0702567,57.06,57.76,52.12,50.33,8.333333333333334,1,1,0,0,10,7,4,1,293,2105523,1206389,598172.63,0,0,0,4184.0498 +13356,16293,29067,29066,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.092495,8.328577,42,0,-70.425201,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.9918113,8.0269346,52.12,50.33,57.06,57.76,8.333333333333334,1,1,0,0,10,7,4,1,293,2105523,1206389,598172.63,0,0,0,4184.0498 +13357,16294,29068,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,7.0545588,7.0572615,0,0,0,-964.43066,0,-9,2,2021,16,4,18,18,1,4,0,8.2978849,8.2978849,0,0,.05,0,0,0,0,0,1,1,0,0,0,44.68,47.44,-9,-9,6.666666666666667,1,1,0,0,2,12,2,0,850,-31493.566,100119.03,0,0,0,0,878.62177 +13357,16295,29069,-9,29068,-9,1,0,20,0,0,1,2,0,0,0,4,0,6.299397,5.9414186,0,0,-1096.8276,-9,1,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.440114,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,552,226841.83,51541.84,0,0,0,0,442.86383 +13358,16296,29070,29071,-9,-9,1,0,41,0,0,0,1,1,-9,0,3,8.4662075,8.3300266,0,2,15,85.235916,0,3,3,2021,12,3,10,10,1,3,0,46.292568,46.292568,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,37.73,60.03,6.666666666666667,2,3,0,0,5,4,5,1,1181,-34838.883,48078.691,184501.22,103976.28,19032.674,0,3243.3401 +13358,16296,29071,29070,-9,-9,1,1,26,0,0,0,1,1,-9,0,5,7.8108735,8.1033535,0,2,-15,85.536064,0,-9,-9,2021,22,9,35,35,1,9,0,8.9408846,8.9408846,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.73,60.03,46.67,55.57,10,1,1,0,0,1,4,5,1,1181,-34838.883,48078.691,184501.22,103976.28,19032.674,0,3243.3401 +13359,16297,29072,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.9584308,8.1465244,0,0,-1025.4343,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2404346,60.52,53.2,-9,-9,10,1,1,0,0,8,13,4,1,623,1198447.1,812234.56,312586.97,0,0,0,2130.8884 +13360,16298,29073,29074,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,21,-12,35.753754,0,3,3,2021,32,12,0,38,3,12,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,3.3551922,0,15.46,43.43,51.24,58.84,5,1,1,0,1,12,7,4,1,1808,1473065.3,942359.5,421306.13,0,0,1741.5034,2205.9634 +13360,16298,29074,29073,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.4703884,8.507596,0,21,12,41.671276,0,-9,2,2021,8,0,48,46,1,0,0,9.3704014,9.3704014,.05,.05,0,0,0,0,0,0,0,0,0,3.4824483,0,51.24,58.84,15.46,43.43,8.333333333333334,1,1,0,0,12,7,4,1,1808,1473065.3,942359.5,421306.13,0,0,1741.5034,2205.9634 +13361,16299,29075,-9,29076,-9,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.709,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,467.5,-8548.7832,0,0,0,2657.1938,0,1661.885 +13361,16299,29076,-9,-9,-9,1,0,54,0,1,0,2,2,-9,0,4,7.4641075,7.773066,6.0212002,0,0,-1081.2625,0,-9,-9,2021,9,0,30,36,1,0,0,8.8764067,8.8764067,0,0,0,0,0,0,0,0,1,1,0,5.748394,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,9,3,1,467.5,-8548.7832,0,0,0,2657.1938,0,1661.885 +13362,16300,29077,29078,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.3864655,6.8637695,0,2,-5,-60.249203,0,-9,-9,2021,11,2,16,35,1,2,0,9.1215849,9.1215849,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.93,55.71,28.55,40.71,8.333333333333334,1,1,0,0,5,7,5,0,542.5,170705.45,64926.578,505002.5,338095.75,0,0,3737.3198 +13362,16300,29078,29077,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,9.0026608,8.9379225,0,2,5,-130.90041,0,-9,-9,2021,17,5,43,45,1,5,0,23.074991,23.074991,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.55,40.71,37.93,55.71,0,1,1,0,0,7,7,5,0,542.5,170705.45,64926.578,505002.5,338095.75,0,0,3737.3198 +13363,16301,29079,29081,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.9410143,7.6154008,0,16,-2,-21.44492,0,2,3,2021,13,2,25,16,1,2,0,11.047968,11.047968,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.13,47.75,61.52,37.8,8.333333333333334,1,1,0,0,13,1,3,1,1203.6666,47621.293,19141.014,109045.01,66608.422,-997.83759,32595.535,1097.1008 +13363,16301,29080,-9,29079,29081,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.5612,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,1,1203.6666,47621.293,19141.014,109045.01,66608.422,-997.83759,32595.535,1097.1008 +13363,16301,29081,29079,-9,-9,1,1,40,0,2,0,2,2,-9,0,3,6.3600664,6.3264012,0,16,2,-86.765762,0,2,2,2021,5,1,56,56,1,1,0,1.1812954,1.1812954,.05,.05,0,0,0,0,0,2,1,1,0,0,0,61.52,37.8,48.13,47.75,8.333333333333334,1,1,0,0,13,1,3,1,1203.6666,47621.293,19141.014,109045.01,66608.422,-997.83759,32595.535,1097.1008 +13364,16302,29082,29083,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,8.4014692,8.8064079,0,35,-6,-65.563934,0,3,3,2021,7,0,37,37,1,0,0,15.593249,15.593249,.05,.05,0,0,0,0,0,0,0,0,0,7.7959108,0,57.06,57.76,60.02,56.42,10,1,1,0,0,11,5,5,1,1479.5,900602.5,456721.81,215075,0,8184.6602,0,6897.8696 +13364,16302,29083,29082,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,6.7808123,8.8032751,8.7999134,34,6,-94.334259,0,2,2,2021,6,0,2,4,1,0,0,39.899849,39.899849,.05,.05,0,0,0,0,0,14.5,0,0,0,7.847332,8.6892557,60.02,56.42,57.06,57.76,10,1,1,0,0,11,5,5,1,1479.5,900602.5,456721.81,215075,0,8184.6602,0,6897.8696 +13365,16303,29084,29085,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,8.549118,8.8448839,8,0,143.34715,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9429455,8.83461,51.73,46.4,59.07,40.19,8.333333333333334,1,1,0,0,0,7,4,1,1436.5,1751813,723484.75,596029.44,0,0,0,4500.0244 +13365,16303,29085,29084,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.156991,5.546277,8,0,82.287933,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3256936,4.9718571,59.07,40.19,51.73,46.4,8.333333333333334,1,1,0,0,0,7,4,1,1436.5,1751813,723484.75,596029.44,0,0,0,4500.0244 +13366,16304,29086,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.5834713,8.4209604,0,0,0,-1024.7133,0,2,2,2021,7,0,40,38,1,0,0,14.481833,14.481833,.05,.05,0,0,0,0,0,0,0,0,0,6.6666226,0,62.67,44.01,-9,-9,8.333333333333334,1,1,0,0,9,9,5,0,353,268704.41,43688.355,210212.55,60851.043,0,0,2510.3503 +13367,16305,29087,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.7618246,8.5969477,0,0,0,-1022.5555,0,2,2,2021,7,0,51,37,1,0,0,12.73703,12.73703,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.31,43.75,-9,-9,8.333333333333334,1,1,0,0,11,10,5,1,668,198881.91,125198.12,174812.7,49159.387,4012.395,22855.768,2201.0193 +13368,16306,29088,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,1,0,7.6271648,7.73245,0,0,-1215.1073,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,6.0912566,5.0014133,47.727249,0,1,1,0,2.193167,7.677135,51.19,15.16,-9,-9,6.666666666666667,1,1,0,0,0,9,3,1,1089,272806.16,110629.41,90599.102,0,0,0,2252.2063 +13369,16307,29089,29090,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,5.9037876,5.8778634,11,2,117.37527,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,2.4461002,5.7268844,52.82,53.97,51.74,35.98,8.333333333333334,1,1,0,0,0,4,2,1,969.5,148845.09,36631.188,149577.91,0,0,0,1268.8489 +13369,16307,29090,29089,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,50,-2,41.774246,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,16.324196,0,0,1,1,0,.1962209,0,51.74,35.98,52.82,53.97,6.666666666666667,1,1,0,0,0,4,2,1,969.5,148845.09,36631.188,149577.91,0,0,0,1268.8489 +13370,16308,29091,29092,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.9034181,8.0292835,0,7,-4,28.197481,0,2,2,2021,8,0,29,28,1,0,0,11.529612,11.529612,0,0,0,0,0,0,0,0,1,1,0,7.657373,0,46.44,59.62,46.16,58.62,8.333333333333334,1,1,0,0,7,9,5,1,5341.5,364126.25,186844.36,438082.44,116839.88,0,0,8122.3359 +13370,16308,29092,29091,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,9.6329098,9.5610561,5.5767517,7,4,52.568771,0,1,2,2021,7,0,30,35,1,0,0,51.872654,51.872654,0,0,0,0,0,0,0,2,1,1,0,7.635603,6.1527381,46.16,58.62,46.44,59.62,8.333333333333334,1,1,0,0,7,9,5,1,5341.5,364126.25,186844.36,438082.44,116839.88,0,0,8122.3359 +13370,16309,29093,-9,29092,29091,1,1,22,0,0,0,1,1,1,0,5,0,0,0,0,0,-1068.1146,-9,1,1,2021,10,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4213777,0,38.53,64.73,-9,-9,6.666666666666667,1,1,1,0,0,9,1,1,364,-112905.28,0,0,0,0,0,-154.01471 +13371,16310,29094,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.4551764,7.47926,6.9025159,0,0,-996.26465,0,1,2,2021,11,0,5,3,1,0,0,17.602283,17.602283,.05,.05,0,0,0,0,0,2,1,1,0,0,7.0318065,62.49,55.09,-9,-9,10,1,1,0,0,14,1,3,1,289,543894,363904.41,104293.65,0,0,0,1798.0994 +13372,16311,29095,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,2,9.15588,9.3516598,6.1091385,0,0,-983.54858,0,2,2,2021,11,3,20,20,1,3,0,46.818981,46.818981,.05,.05,0,0,0,0,0,0,0,0,0,6.81742,0,50.66,47.59,-9,-9,6.666666666666667,1,1,0,1,7,7,5,1,588,360865.03,128681.74,0,0,0,0,3193.999 +13373,16312,29096,29097,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.8116264,8.5339737,0,14,1,-44.728661,-9,3,3,2021,9,0,30,0,1,0,0,22.075489,22.075489,0,0,0,0,0,0,0,0,0,0,0,0,0,49.79,44.4,60.44,46.58,10,1,1,0,0,13,6,4,1,2047,2651473,368575.03,768511.63,0,0,0,1716.8311 +13373,16312,29097,29096,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,5.309896,5.3471012,0,14,-1,-159.13289,-9,3,3,2021,11,0,30,0,1,0,0,.63911849,.63911849,0,0,0,0,0,0,0,0,0,0,0,0,0,60.44,46.58,49.79,44.4,8.333333333333334,1,1,0,0,13,6,4,1,2047,2651473,368575.03,768511.63,0,0,0,1716.8311 +13374,16313,29098,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,8.2356396,8.2004089,0,0,-948.88623,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.153873,8.3786697,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,750,723372.06,408208.81,162310.19,0,0,0,3122.1489 +13375,16314,29099,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1112.0787,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.71,55.64,-9,-9,8.333333333333334,1,1,0,0,8,11,2,1,144,413714.44,370912.13,117151.2,42660.609,6540.333,10617.854,-407.44165 +13376,16315,29100,29101,-9,-9,1,0,81,0,0,0,2,2,-9,0,3,0,0,0,58,-1,13.293218,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8320336,0,58.32,50.22,65,34.83,8.333333333333334,1,1,0,0,0,5,3,1,1632.5,576300.63,350687.88,0,0,0,0,2339.2886 +13376,16315,29101,29100,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.787961,7.598711,9,1,-53.326714,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.282517,7.4793363,65,34.83,58.32,50.22,8.333333333333334,1,1,0,0,0,5,3,1,1632.5,576300.63,350687.88,0,0,0,0,2339.2886 +13377,16316,29102,-9,-9,-9,1,0,27,1,3,0,2,2,1,0,4,7.5994034,7.4153376,0,0,0,-907.12671,-9,1,2,2021,16,3,40,0,1,3,0,6.0455647,6.0455647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.11,60.68,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13377,16316,29103,-9,29102,-9,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.3073,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13377,16316,29104,-9,29102,-9,1,1,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1088.6542,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13377,16316,29105,-9,29102,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-781.46954,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,616.5,-51617.051,14308.086,0,0,0,0,2579.1621 +13378,16317,29106,29107,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,7.5318727,7.9507203,6.7814035,7,2,-50.848766,0,2,2,2021,15,4,5,5,1,4,0,41.982174,41.982174,0,0,0,0,0,0,0,0,0,0,0,0,6.739943,42.71,40.35,57.9,51.84,3.333333333333333,1,1,0,0,8,8,4,1,1147.5,771615.63,492186.56,275391.22,0,10460.521,0,2371.5342 +13378,16317,29107,29106,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.0277328,8.1969748,0,7,-2,-22.369423,0,3,2,2021,7,0,40,37,1,0,0,8.6334953,8.6334953,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,42.71,40.35,6.666666666666667,1,1,0,0,4,8,4,1,1147.5,771615.63,492186.56,275391.22,0,10460.521,0,2371.5342 +13379,16318,29108,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.6610212,8.4724503,0,0,0,-937.96057,0,3,3,2021,10,0,70,50,1,0,0,8.4297428,8.4297428,0,0,0,0,0,0,0,0,0,0,0,6.9425941,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,9,13,5,0,1549,550084.44,285761.28,120218.84,0,0,0,3720.7522 +13380,16319,29109,-9,-9,-9,1,0,38,0,1,0,3,3,-9,1,2,0,0,0,0,0,-894.00171,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.76,51.85,-9,-9,5,1,1,1,0,0,6,1,0,1643,-101206.27,0,0,0,0,0,1207.2655 +13380,16319,29110,-9,29109,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.4813,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,1,0,1643,-101206.27,0,0,0,0,0,1207.2655 +13381,16320,29111,29112,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.3460932,8.5249338,0,7,1,3.2344022,0,2,2,2021,7,0,37,37,1,0,0,16.750175,16.750175,0,0,0,0,0,0,0,0,0,0,0,0,0,49.21,36.61,41.47,58.08,6.666666666666667,1,1,0,0,8,11,5,1,832.5,58085.027,11723.074,0,0,12733.926,0,3159.6133 +13381,16320,29112,29111,-9,-9,1,1,46,0,0,0,2,2,-9,0,3,8.2002211,8.5221691,0,7,-1,-96.313438,0,2,2,2021,13,3,40,51,1,3,0,13.035437,13.035437,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,49.21,36.61,6.666666666666667,1,1,0,0,8,11,5,1,832.5,58085.027,11723.074,0,0,12733.926,0,3159.6133 +13382,16321,29113,-9,29115,29117,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.0466,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29114,-9,29115,29117,1,0,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.7207,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29115,29117,-9,-9,1,0,26,1,3,0,2,2,-9,0,4,7.1926446,7.1728244,0,7,-7,-62.619747,0,-9,-9,2021,12,0,18,18,1,0,0,9.7908297,9.7908297,.05,.05,0,0,0,0,0,0,1,1,0,.65162915,0,44.53,56.37,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29116,-9,29115,29117,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-885.01318,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13382,16321,29117,29115,-9,-9,1,1,33,1,3,0,2,2,-9,0,4,9.5389452,9.7020464,0,7,7,-80.147369,0,-9,-9,2021,9,0,45,50,1,0,0,48.726757,48.726757,.05,.05,0,0,0,0,0,0,1,1,0,6.797575,0,51.83,57.2,44.53,56.37,8.333333333333334,1,1,0,0,8,2,5,1,1150.6,73831.383,114264.73,134701.16,85612.063,2944.0298,882.20184,9017.749 +13383,16322,29118,-9,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,9.3195953,9.3939934,0,0,0,-1073.9664,0,-9,-9,2021,6,0,60,60,1,0,0,22.313236,22.313236,0,0,0,0,0,0,0,0,1,1,0,.46957842,0,62.39,56.71,-9,-9,10,1,1,0,0,14,2,5,0,584,1327193,297478.69,484812.16,0,0,0,5312.5664 +13384,16323,29119,-9,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,6.243567,6.2566438,0,0,-999.27191,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3688688,49.35,19.8,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,3076,-14198.143,199702.53,0,0,0,0,1147.2943 +13385,16324,29120,29121,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,8.2710524,7.9415121,0,8,11,-72.80764,0,2,3,2021,12,1,41,43,1,1,0,11.751882,11.751882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,40.4,58.62,6.666666666666667,1,1,0,0,9,5,5,1,615,152932.09,205475.97,210132.41,45961.742,0,10196.409,3383.5674 +13385,16324,29121,29120,-9,-9,1,1,38,0,0,0,2,2,-9,0,3,8.6601563,8.5847321,0,8,-11,-3.2582181,0,-9,-9,2021,14,3,50,60,1,3,0,9.2903328,9.2903328,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.4,58.62,57.16,56.15,6.666666666666667,1,1,0,0,9,5,5,1,615,152932.09,205475.97,210132.41,45961.742,0,10196.409,3383.5674 +13386,16325,29122,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1085.9869,0,3,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,34.32,51.71,-9,-9,5,1,1,1,0,3,7,1,0,1540,0,0,0,0,0,0,-19.008486 +13387,16326,29123,29124,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,9.3516502,9.2154036,0,29,12,-7.9490461,0,3,2,2021,6,0,38,38,1,0,0,34.018673,34.018673,.05,.05,0,0,0,0,0,0,0,0,0,6.5097747,0,51.83,57.2,24.04,59.55,8.333333333333334,1,1,0,0,13,12,5,1,1749,1984151.8,1043969.6,519493.72,114156.38,0,0,6966.3286 +13387,16326,29124,29123,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,9.1666517,8.9861155,0,29,-12,76.569183,0,2,2,2021,13,1,77,41,1,1,0,14.246093,14.246093,0,0,0,0,0,0,0,0,0,0,0,4.5729375,0,24.04,59.55,51.83,57.2,6.666666666666667,1,1,0,0,13,12,5,1,1749,1984151.8,1043969.6,519493.72,114156.38,0,0,6966.3286 +13388,16327,29125,29126,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,9.5779552,9.4290085,0,9,-2,12.785071,0,-9,-9,2021,9,0,30,35,1,1,0,44.620228,44.620228,.05,.05,.05,0,0,0,0,0,0,0,0,5.1899691,0,53,54,62.39,56.71,8,1,1,0,0,1,10,5,1,481,377012.63,209851.7,294280.44,210931.84,0,0,6536.5684 +13388,16327,29126,29125,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.4430885,8.6153631,0,27,2,-69.832413,0,2,1,2021,6,0,17,20,1,0,0,33.926807,33.926807,0,0,.05,0,0,0,0,0,0,0,0,5.2728987,0,62.39,56.71,53,54,10,1,1,0,0,12,10,5,1,481,377012.63,209851.7,294280.44,210931.84,0,0,6536.5684 +13389,16328,29127,29128,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,5.1505761,4.9891157,46,-4,-17.837887,0,3,3,2021,21,9,0,37,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3139062,35.59,24.47,45.13,35.32,5,1,1,0,0,10,12,2,1,607.5,423917.19,0,219500,0,0,0,2039.0038 +13389,16328,29128,29127,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,0,0,8,4,1.3553308,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.61615914,0,45.13,35.32,35.59,24.47,6.666666666666667,1,1,0,1,6,12,2,1,607.5,423917.19,0,219500,0,0,0,2039.0038 +13390,16329,29129,-9,-9,-9,1,0,43,0,0,0,1,1,-9,1,2,0,0,0,0,0,-976.17224,0,2,3,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.94,42.34,-9,-9,5,1,1,1,0,8,1,1,1,263,0,0,0,0,0,0,-532.63361 +13391,16330,29130,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9862571,6.940918,0,0,-1011.8615,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6305847,6.902926,48.65,42.44,-9,-9,1.666666666666667,1,1,0,0,0,10,2,1,234,507492.59,117459.74,288352.69,0,0,0,1315.6425 +13392,16331,29131,29132,-9,-9,1,0,25,0,0,1,2,0,0,0,5,0,0,0,3,1,-.64929819,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.82291079,0,60.02,56.42,54.69,57.47,8.333333333333334,1,1,0,0,4,6,3,1,691.5,20580.521,43729.859,0,0,320.85449,0,1843.6052 +13392,16331,29132,29131,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.0331135,7.7640743,0,3,-1,124.20895,0,2,2,2021,9,0,58,64,1,0,0,5.3501325,5.3501325,.05,.05,0,0,0,0,0,0,1,1,0,2.8504732,0,54.69,57.47,60.02,56.42,8.333333333333334,1,1,0,0,9,6,3,1,691.5,20580.521,43729.859,0,0,320.85449,0,1843.6052 +13393,16332,29133,-9,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.5860815,8.6906309,0,0,0,-1010.275,0,2,3,2021,22,10,42,37,1,10,0,18.630627,18.630627,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.99,50.67,-9,-9,3.333333333333333,1,1,0,0,10,4,5,1,219,395047.78,170605.69,25664.607,68404.422,0,0,2786.1707 +13394,16333,29134,29135,-9,-9,1,0,75,0,0,0,1,1,-9,0,1,0,7.9088845,7.884048,52,0,51.305729,0,2,2,2021,21,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.6971946,7.8445435,37.33,29.48,20.45,42.61,1.666666666666667,1,1,0,0,0,10,4,1,239.5,1750881.3,1255291.5,243185.19,0,12902.765,0,4440.0122 +13394,16333,29135,29134,-9,-9,1,1,75,0,0,0,1,1,-9,0,2,0,8.4694061,8.3933086,52,0,155.27026,0,3,2,2021,34,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,2.4110639,8.5060921,20.45,42.61,37.33,29.48,1.666666666666667,1,1,0,0,0,10,4,1,239.5,1750881.3,1255291.5,243185.19,0,12902.765,0,4440.0122 +13395,16334,29136,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,6.7341118,6.9001307,0,0,-1062.5313,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,14.801637,0,122.00308,0,1,1,0,3.5422626,6.9319754,55,43,-9,-9,8,1,1,0,0,0,9,2,1,1265,458912.66,1609.5074,119793.84,0,0,0,1588.9915 +13395,16335,29137,-9,-9,-9,1,1,89,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1028.8087,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.5518247,0,56,44,-9,-9,8,1,1,0,0,0,9,1,1,103,157231.84,0,0,0,0,0,833.12164 +13396,16336,29138,-9,-9,-9,1,1,44,0,0,0,1,1,-9,0,3,8.119998,8.0891438,0,0,0,-1010.2908,0,1,-9,2021,12,0,40,43,1,0,0,9.5392895,9.5392895,.05,.05,0,0,0,0,0,0,1,1,0,3.0438533,0,40.89,51.69,-9,-9,5,1,1,0,1,10,8,4,0,410,-70572.297,-109239.55,0,0,2869.9048,0,1745.6735 +13397,16337,29139,29141,-9,-9,1,0,31,0,1,0,2,2,-9,1,4,0,0,0,1,-2,29.96092,0,3,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,50,57,8.333333333333334,1,1,1,0,6,4,3,0,794,18517.471,-25774.576,93541.07,82548.984,2543.2158,0,1861.5548 +13397,16337,29140,-9,29139,29141,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1002.832,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,0,794,18517.471,-25774.576,93541.07,82548.984,2543.2158,0,1861.5548 +13397,16337,29141,29139,-9,-9,1,1,33,0,1,0,3,3,-9,0,4,8.3048964,8.0617933,0,1,2,50.286736,-9,-9,-9,2021,10,0,40,0,1,1,0,9.898488,9.898488,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,57.16,56.15,7,4,1,0,0,1,4,3,0,794,18517.471,-25774.576,93541.07,82548.984,2543.2158,0,1861.5548 +13398,16338,29142,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.5877247,7.4687796,0,0,-837.38611,0,-9,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9821646,7.4342566,49.81,51.82,-9,-9,10,1,1,0,0,0,2,3,1,560,833454.13,309831.66,192120.2,0,0,0,1965.3959 +13399,16339,29143,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.05898,6.8078499,0,0,-964.40668,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4566257,6.5852561,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,231,707389.44,391617.09,175091.52,0,0,0,1498.4969 +13400,16340,29144,29146,-9,-9,1,1,50,0,2,0,2,2,-9,0,3,8.5576277,8.23141,0,11,7,78.266899,0,-9,-9,2021,13,2,37,37,1,2,0,11.684778,11.684778,.05,.05,0,0,0,0,0,0,1,0,1,0,0,41.94,49.7,46.67,55.57,5,1,1,0,1,12,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13400,16340,29145,-9,29146,29144,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.74335,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13400,16340,29146,29144,-9,-9,1,0,43,0,2,0,2,2,-9,0,3,8.3118191,8.0564728,0,19,-7,-97.345314,0,2,3,2021,8,0,37,37,1,0,0,8.8768282,8.8768282,0,0,0,0,0,0,0,0,1,0,1,0,0,46.67,55.57,41.94,49.7,6.666666666666667,1,1,0,0,12,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13400,16340,29147,-9,29146,29144,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.3167,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,817.25,126099.72,-14565.904,183032.53,30149.748,0,0,3469.2527 +13401,16341,29148,-9,-9,-9,1,0,71,0,1,0,2,2,-9,0,2,0,9.107666,9.3392029,0,0,-1087.0564,0,-9,-9,2021,21,8,0,0,4,8,0,0,0,0,0,0,1,0,18.738871,0,0,1,1,0,0,9.2173529,33.24,36.4,-9,-9,3.333333333333333,1,1,0,0,0,12,5,1,101,-98661.273,110777.16,0,0,0,10225.877,5604.7549 +13401,16342,29149,29152,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,8.4352303,8.2309599,0,5,6,-21.710188,0,2,2,2021,9,0,42,40,1,0,0,10.268361,10.268361,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.03,42.09,54.2,57.49,8.333333333333334,1,1,0,0,12,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13401,16342,29150,-9,29152,29149,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1070.1176,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13401,16342,29151,-9,29152,29149,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1064.2582,0,2,2,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.98,51.72,-9,-9,8.333333333333334,1,1,0,0,4,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13401,16342,29152,29149,29148,-9,1,0,41,0,1,0,2,2,-9,0,4,8.7636576,8.6345921,0,5,-6,139.73485,0,2,1,2021,9,0,78,42,1,0,0,10.743027,10.743027,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,50.03,42.09,8.333333333333334,1,1,0,0,12,12,5,1,495.5,56835.797,-28082.691,113637.01,63387.727,0,8341.7031,3562.1401 +13402,16343,29153,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.3404617,8.2672224,0,0,0,-1047.623,0,2,2,2021,36,12,50,50,1,12,0,7.4151344,7.4151344,.05,.05,0,0,0,0,0,2,0,0,0,3.013027,0,45.04,47.98,-9,-9,10,2,3,0,0,9,6,4,1,3567,89946.078,-15890.735,0,0,0,0,1619.5614 +13403,16344,29154,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.8929405,7.8238025,0,0,0,-949.02716,0,3,1,2021,10,0,44,49,1,0,0,5.6963973,5.6963973,0,0,0,0,0,0,0,0,0,0,0,0,0,42,40,-9,-9,3.333333333333333,3,4,0,0,11,8,4,1,186,-84513.445,0,0,0,0,12297.099,1470.6234 +13404,16345,29155,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.1013093,4.6171932,0,0,-1020.7899,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6368937,51,47,-9,-9,7,1,1,0,0,0,1,2,1,733,182011.8,-21407.012,62106.777,0,0,0,343.34564 +13404,16346,29156,-9,29155,-9,1,1,43,0,0,0,2,2,-9,0,4,8.2355175,8.1959639,0,0,0,-934.64783,0,2,-9,2021,11,0,37,37,1,0,0,8.5720129,8.5720129,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,6,1,4,1,392,132214.75,0,0,0,0,1156.791,1615.6689 +13404,16347,29157,-9,29155,-9,1,1,39,0,0,0,1,1,-9,0,3,8.4464808,8.373497,0,0,0,-943.6416,0,3,3,2021,8,0,37,43,1,0,0,14.794293,14.794293,0,0,0,0,0,0,0,0,1,1,0,3.4485016,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,9,1,4,1,530,-82302.625,0,109497.25,63646.176,0,0,1420.1936 +13405,16348,29158,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,6.5971632,6.8869028,0,0,-933.46222,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.375206,36.79,45.74,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,720,235158.17,177267.3,0,0,0,0,1529.7285 +13406,16349,29159,29160,-9,-9,1,1,43,0,3,0,1,1,-9,0,4,9.803791,9.7735844,0,21,0,-58.699886,0,2,2,2021,16,5,65,52,1,5,0,33.456139,33.456139,0,0,0,0,0,0,0,0,0,0,0,8.0070858,0,35.67,64.46000000000001,33.2,52.68,3.333333333333333,2,3,0,0,13,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29160,29159,-9,-9,1,0,43,0,3,0,1,1,-9,0,2,8.0193071,7.812861,0,21,0,43.426693,0,2,2,2021,17,6,13,13,1,6,0,27.304262,27.304262,0,0,0,0,0,0,0,0,0,0,0,7.5032973,0,33.2,52.68,35.67,64.46000000000001,6.666666666666667,2,3,0,0,11,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29161,-9,29160,29159,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.30835,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29162,-9,29160,29159,1,1,15,0,3,1,3,0,-9,0,5,0,0,0,0,0,-901.23676,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,2,3,-9,0,0,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13406,16349,29163,-9,29160,29159,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.10718,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,8,5,1,1223.6,552213.94,243570.69,799357.19,550177.06,0,0,10661.928 +13407,16350,29164,29165,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.2578125,6.7617483,11,-3,-38.384109,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,4.3121648,6.6589298,63.83,27.55,45.07,38.73,6.666666666666667,1,1,0,0,0,8,2,1,334.5,1496633.8,531520.75,651200.69,0,0,0,2157.8904 +13407,16350,29165,29164,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,6.1393986,6.5506668,44,3,12.364429,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3844342,45.07,38.73,63.83,27.55,10,1,1,0,0,0,8,2,1,334.5,1496633.8,531520.75,651200.69,0,0,0,2157.8904 +13408,16351,29166,29167,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.5098124,8.3982458,4.7718568,44,-3,-29.393841,0,2,2,2021,4,0,14,20,1,0,0,26.45787,26.45787,0,0,0,0,0,0,0,0,0,0,0,0,5.2210126,53.75,54.92,59.32,25.72,8.333333333333334,1,1,0,0,12,9,5,1,316,452954.75,256009.59,228354.66,20662.211,0,1012.423,5080.6006 +13408,16351,29167,29166,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,7.8498898,9.1988487,8.5548496,44,3,-120.47698,0,2,2,2021,11,1,46,45,1,1,0,5.5262251,5.5262251,.05,.05,0,0,0,0,0,0,0,0,0,8.9899549,5.0671816,59.32,25.72,53.75,54.92,6.666666666666667,1,1,0,0,12,9,5,1,316,452954.75,256009.59,228354.66,20662.211,0,1012.423,5080.6006 +13409,16352,29168,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,9.2836885,9.2144909,0,0,0,-1045.9362,0,2,3,2021,13,3,42,40,1,3,0,19.758183,19.758183,.05,.05,0,0,0,0,0,0,0,0,0,1.2826053,0,47.97,26.07,-9,-9,3.333333333333333,1,1,0,1,5,5,5,1,798,334981.97,260717.42,54692.996,1010.5212,3734.5334,408.6745,4182.4268 +13410,16353,29169,-9,29170,-9,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-927.91638,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,5,2,0,788.5,145592.44,41558.57,187857.66,75548.789,0,0,1450.1394 +13410,16353,29170,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,4,7.3394065,6.981432,0,0,0,-982.16095,0,2,2,2021,6,0,27,25,1,0,0,6.1457806,6.1457806,0,0,0,0,0,0,0,0,1,1,0,0,0,41.4,58.06,-9,-9,6.666666666666667,1,1,0,0,11,5,2,0,788.5,145592.44,41558.57,187857.66,75548.789,0,0,1450.1394 +13411,16354,29171,-9,-9,-9,1,0,38,0,0,0,3,3,-9,0,3,8.6021404,8.7644997,0,0,0,-1028.052,0,2,-9,2021,9,2,49,45,1,2,0,13.603106,13.603106,0,0,0,0,0,0,0,0,0,0,0,0,0,46.55,58.3,-9,-9,6.666666666666667,3,4,0,0,13,8,5,0,1668,18592.682,-35531.477,0,0,3990.0181,1222.3795,2963.293 +13411,16355,29172,-9,29171,-9,1,0,24,0,0,0,1,1,-9,0,3,8.0773211,8.0847063,0,0,0,-996.51648,-9,3,-9,2021,12,1,45,0,1,1,0,8.8977795,8.8977795,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.01,52.64,-9,-9,5,3,4,0,0,4,8,4,0,186,-92791.023,-105810.25,0,0,0,0,1957.5267 +13412,16356,29173,-9,29175,29174,1,1,11,0,1,1,3,0,-9,0,3,0,0,0,0,0,-985.6554,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,10,4,1,1025.6666,214674.73,189254.83,193622.06,147761.56,7133.48,0,2364.7705 +13412,16356,29174,29175,-9,-9,1,1,48,0,1,0,2,2,-9,1,3,0,0,0,8,-6,48.000687,0,2,2,2021,29,12,0,0,3,12,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,40.06,41.03,31.11,60.36,3.333333333333333,1,1,0,0,4,10,4,1,1025.6666,214674.73,189254.83,193622.06,147761.56,7133.48,0,2364.7705 +13412,16356,29175,29174,29176,-9,1,0,54,0,1,0,1,1,-9,0,4,8.9764166,8.7369814,0,8,6,-16.374001,0,2,2,2021,19,7,45,43,1,7,0,21.582607,21.582607,0,0,0,0,0,0,0,27,1,1,0,0,0,31.11,60.36,40.06,41.03,6.666666666666667,1,1,0,0,9,10,4,1,1025.6666,214674.73,189254.83,193622.06,147761.56,7133.48,0,2364.7705 +13412,16357,29176,-9,-9,-9,1,0,89,0,1,0,3,3,-9,0,1,0,0,0,0,0,-1149.3307,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,6.8422966,11.058784,62.195915,0,1,1,0,0,0,48.27,28.91,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,586,0,0,0,0,0,0,608.00977 +13413,16358,29177,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,7.819428,7.9618163,0,0,0,-934.73285,0,2,1,2021,12,2,37,35,1,2,1,8.0498104,8.0498104,0,0,0,0,0,0,0,0,1,1,0,0,0,29.4,50.23,-9,-9,5,1,1,0,0,1,12,4,1,216,-77677.297,0,0,0,2833.0066,0,1447.9097 +13413,16359,29178,-9,-9,-9,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-937.19629,0,2,1,2021,28,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8487654,0,17.76,49.37,-9,-9,0,1,1,1,1,0,12,1,1,1294,96923.414,0,0,0,0,0,-864.91016 +13414,16360,29179,29180,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.6060247,8.3762369,0,2,1,-80.403931,0,-9,-9,2021,7,0,41,49,1,0,0,10.137893,10.137893,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,12.72,65.98999999999999,6.666666666666667,1,1,0,0,3,10,3,0,2265,114917.22,-7632.6636,0,0,8637.2158,0,307.69061 +13414,16360,29180,29179,-9,-9,1,0,22,0,0,0,2,2,-9,0,3,0,0,0,2,-1,7.0038366,0,-9,-9,2021,20,8,0,38,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.72,65.98999999999999,51.83,57.2,6.666666666666667,1,1,1,0,6,10,3,0,2265,114917.22,-7632.6636,0,0,8637.2158,0,307.69061 +13415,16361,29181,29182,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,7.9495578,7.8379111,0,4,-17,-13.335044,0,-9,-9,2021,8,0,40,40,1,0,0,8.1964397,8.1964397,.05,.05,0,0,0,0,0,0,0,0,0,4.6540751,0,55.53,51.55,48.82,53.15,6.666666666666667,1,1,0,0,10,10,5,1,660.5,235292.48,270063.97,121692.63,131953.45,17694.645,7834.999,2959.7917 +13415,16361,29182,29181,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,8.060071,8.3192625,0,4,17,9.6887445,0,-9,-9,2021,12,2,37,37,1,2,0,10.811994,10.811994,0,0,0,0,0,0,0,0,0,0,0,1.2834355,0,48.82,53.15,55.53,51.55,6.666666666666667,1,1,0,0,13,10,5,1,660.5,235292.48,270063.97,121692.63,131953.45,17694.645,7834.999,2959.7917 +13416,16362,29183,29184,-9,-9,1,1,45,0,2,0,3,3,-9,0,4,6.9743605,7.2035246,0,7,6,35.7439,0,3,3,2021,19,7,42,40,1,7,0,3.4413371,3.4413371,0,0,0,0,0,0,0,0,1,1,0,0,0,48.33,35.78,40.15,33.33,1.666666666666667,2,3,0,0,5,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13416,16362,29184,29183,-9,-9,1,0,39,0,2,0,2,2,-9,0,1,0,0,0,20,-6,-100.228,0,3,3,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.15,33.33,48.33,35.78,6.666666666666667,2,3,0,0,0,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13416,16362,29185,-9,29184,29183,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.47156,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13416,16362,29186,-9,29184,29183,1,1,17,0,2,0,3,3,-9,0,3,0,0,0,0,0,-954.47559,1,2,3,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,-9,-9,8.333333333333334,2,3,0,0,0,8,2,0,1245.25,341319.47,0,304166.06,92603.133,0,0,3166.7275 +13417,16363,29187,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,4,0,7.5054812,6.8859458,0,0,-1050.363,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.358099,59.15,49.67,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,281,755576.94,365805.22,515765.63,0,0,0,1464.062 +13418,16364,29188,-9,29189,-9,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.21387,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13418,16364,29189,-9,-9,-9,1,0,42,0,3,0,1,1,-9,0,4,9.6679792,10.10296,7.9098001,0,0,-1074.5386,0,1,1,2021,10,0,10,47,1,0,0,178.30746,178.30746,0,0,.05,0,0,0,0,0,1,1,0,8.2607336,0,43.48,60.97,-9,-9,8.333333333333334,1,1,0,0,13,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13418,16364,29190,-9,29189,-9,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-879.37115,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13418,16364,29191,-9,29189,-9,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1020.8786,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,8,5,1,1546,286712.88,-28763.342,0,0,0,17151.008,9584.9697 +13419,16365,29192,-9,-9,-9,1,1,48,0,0,0,1,1,-9,0,2,0,6.4634681,6.5621924,0,0,-1132.676,0,2,1,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2875314,0,45.84,41.48,-9,-9,5,1,1,1,0,7,9,2,1,3042,543423.38,352168.31,0,0,0,0,-184.76503 +13420,16366,29193,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,8.2470045,8.3752499,6.7189727,0,0,-954.16162,0,-9,2,2021,9,1,38,38,1,1,0,9.7248192,9.7248192,0,0,0,0,0,0,0,0,0,0,0,3.5084536,6.7368784,54.21,47.1,-9,-9,6.666666666666667,1,1,0,0,12,12,5,1,671,-41858.047,0,0,0,0,0,1995.6873 +13421,16367,29194,-9,-9,-9,1,1,43,0,1,0,2,2,-9,1,2,0,4.1216416,3.9880791,0,0,-917.13104,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.4313798,0,50.69,47.57,-9,-9,5,1,1,0,0,0,9,2,0,340.5,35987.359,0,0,0,0,0,1738.6825 +13421,16367,29195,-9,-9,29194,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1017.9274,-9,-9,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,44,-9,-9,5,1,1,-9,0,0,9,2,0,340.5,35987.359,0,0,0,0,0,1738.6825 +13421,16368,29196,-9,-9,29194,1,0,18,0,1,0,3,3,-9,0,3,0,0,0,0,0,-916.4223,0,-9,2,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.43,60.14,-9,-9,10,1,1,1,0,0,9,1,0,405,-70075.391,0,0,0,4828.5083,3927.6243,0 +13422,16369,29197,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.0391803,6.9175773,0,0,0,-960.91443,0,3,2,2021,16,4,24,0,1,4,0,5.1781907,5.1781907,0,0,0,0,0,0,0,0,0,0,0,0,0,46.42,47.56,-9,-9,10,1,1,0,0,1,6,2,1,322,271652.94,-117735.37,187364.53,0,0,1355.8213,241.58522 +13423,16370,29198,29199,-9,-9,1,0,57,0,0,0,2,2,-9,1,2,0,0,0,39,-4,0,0,3,3,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.67,26.77,44.93,52.43,10,1,1,0,0,0,12,1,0,386.5,326921.28,0,317710.56,0,0,0,881.23785 +13423,16370,29199,29198,-9,-9,1,1,61,0,0,0,3,3,-9,1,3,0,0,0,7,4,0,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,44.93,52.43,44.67,26.77,8.333333333333334,1,1,0,0,0,12,1,0,386.5,326921.28,0,317710.56,0,0,0,881.23785 +13423,16371,29200,-9,29198,29199,1,1,30,0,0,0,2,2,-9,0,4,8.1034374,7.6529393,0,0,0,-1098.4967,0,2,3,2021,10,0,37,38,1,1,1,7.872746,7.872746,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,12,3,0,740,-150385.28,-36729.82,0,0,2403.1953,0,846.08716 +13424,16372,29201,29202,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.4345455,8.6972675,0,23,-18,-80.168716,0,2,3,2021,8,0,37,43,1,0,0,13.771921,13.771921,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,55.36,51.57,8.333333333333334,3,4,0,0,15,6,4,1,1396,955271.88,474512.72,184489.25,0,0,0,1844.1499 +13424,16372,29202,29201,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,4.2960715,4.4331207,24,18,-23.641418,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7511005,4.4695544,55.36,51.57,54.37,54.8,6.666666666666667,3,4,0,0,0,6,4,1,1396,955271.88,474512.72,184489.25,0,0,0,1844.1499 +13425,16373,29203,29204,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9814882,6.2654152,9,3,233.96405,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.1036644,34.51,49.44,26.28,50.13,6.666666666666667,1,1,0,0,1,11,2,1,637.5,297425.06,30657.164,146428.83,0,0,0,1617.7981 +13425,16373,29204,29203,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-56.235329,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,26.28,50.13,34.51,49.44,6.666666666666667,1,1,0,0,3,11,2,1,637.5,297425.06,30657.164,146428.83,0,0,0,1617.7981 +13426,16374,29205,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,2,8.4976749,8.7510843,5.3283892,0,0,-872.21588,0,2,2,2021,20,9,42,41,1,9,0,13.162772,13.162772,.05,.05,0,0,0,0,0,7,1,1,0,0,5.3261857,40.01,34.68,-9,-9,3.333333333333333,1,1,0,0,12,7,5,1,140,68385.172,-109810.86,0,0,2333.4172,482.46127,2394.4341 +13427,16375,29206,29207,-9,29208,1,0,53,0,0,0,2,2,-9,1,3,8.09196,8.0489759,0,1,4,5.8595161,-9,-9,3,2021,8,1,45,0,1,1,0,8.4687109,8.4687109,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.78,42.96,52,55,6.666666666666667,1,1,0,0,9,13,3,1,887.5,36524.684,354.47168,0,0,0,3555.8767,2990.7466 +13427,16375,29207,29206,-9,-9,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,1,-4,-88.980545,-9,3,3,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,50.78,42.96,8,4,1,0,0,0,13,3,1,887.5,36524.684,354.47168,0,0,0,3555.8767,2990.7466 +13427,16376,29208,-9,-9,-9,1,1,81,0,0,0,3,3,-9,0,5,0,6.666811,6.4610863,0,0,-944.04767,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3546357,6.3461537,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,688,191656.58,64848.602,48584.801,0,0,0,718.47833 +13428,16377,29209,-9,29210,29211,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1013.0627,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,1529,649538.31,107016.83,693725.5,162323.53,0,0,2543.5642 +13428,16377,29210,29211,-9,-9,1,0,41,1,1,0,1,1,-9,0,3,0,0,0,16,0,30.433573,-9,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.17,42.74,59.45,38.61,8.333333333333334,2,3,0,0,5,8,3,1,1529,649538.31,107016.83,693725.5,162323.53,0,0,2543.5642 +13428,16377,29211,29210,-9,-9,1,1,50,1,1,0,1,1,-9,0,4,8.6074638,8.4172916,0,16,9,170.16093,-9,-9,-9,2021,12,0,50,0,1,0,0,10.872806,10.872806,.05,.05,0,0,0,0,0,0,1,1,0,6.7853384,0,59.45,38.61,57.17,42.74,6.666666666666667,2,3,0,0,1,8,3,1,1529,649538.31,107016.83,693725.5,162323.53,0,0,2543.5642 +13429,16378,29212,-9,-9,-9,1,0,22,0,0,0,1,1,1,0,3,0,0,0,0,0,-1024.5104,-9,3,3,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.65,57.36,-9,-9,6.666666666666667,2,3,1,0,0,8,1,0,210,78407.742,0,0,0,0,0,-29.086079 +13430,16379,29213,-9,-9,-9,1,0,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-949.5083,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,45.26,-9,-9,6.666666666666667,1,1,1,0,1,13,1,0,1030,0,0,0,0,0,0,402.58511 +13430,16380,29214,-9,29213,-9,1,1,20,0,0,0,2,2,-9,0,4,6.9214892,6.6006036,0,0,0,-937.14746,0,2,-9,2021,11,0,16,35,1,0,1,6.1755056,6.1755056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,-9,-9,6.666666666666667,1,1,0,0,2,13,2,0,1413,103279.05,-46102.547,0,0,0,0,-198.77931 +13431,16381,29215,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1046.9187,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50,46,-9,-9,8,1,1,0,0,10,13,1,1,315,-144273.41,0,0,0,0,0,544.23633 +13431,16382,29216,-9,29215,-9,1,0,37,0,0,0,1,1,-9,0,4,8.0381289,8.023181,0,0,0,-900.69427,0,3,3,2021,11,1,35,35,1,1,0,8.5604,8.5604,.05,.05,0,0,0,0,0,0,1,1,0,2.0762045,0,52.08,55.93,-9,-9,10,1,1,0,0,14,13,4,1,819,13963.533,-19016.916,145896.73,95548.664,0,0,1684.9912 +13431,16383,29217,-9,29215,-9,1,0,37,0,0,0,1,1,-9,0,3,7.887588,8.2191992,0,0,0,-1033.7065,0,3,3,2021,11,0,48,40,1,0,0,7.9825821,7.9825821,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.34,48.53,-9,-9,8.333333333333334,1,1,0,0,13,13,4,1,235,8545.5615,128825.41,0,0,0,8744.6543,1337.8201 +13432,16384,29218,-9,-9,29219,1,1,12,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1023.88,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,3,0,652,105606.86,66403.031,0,0,0,0,1230.3669 +13432,16384,29219,-9,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,7.5353169,7.5851254,0,0,0,-1028.418,0,2,-9,2021,11,0,39,36,1,0,0,6.8253155,6.8253155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,5,1,1,0,0,4,2,3,0,652,105606.86,66403.031,0,0,0,0,1230.3669 +13433,16385,29220,29221,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.1288338,8.2345114,0,39,-4,-2.0801914,0,2,3,2021,12,0,34,30,1,0,0,12.743958,12.743958,0,0,0,0,0,0,0,0,0,0,0,2.3609946,0,39.33,60.15,52,54.51,6.666666666666667,1,1,0,0,13,13,5,1,1334,1276534.1,746383,425902.13,0,0,0,4249.751 +13433,16385,29221,29220,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.040906,8.8430309,8.0521278,38,4,17.44976,0,3,3,2021,7,0,22,22,1,0,0,18.791891,18.791891,.05,.05,0,0,0,0,0,0,0,0,0,2.8105452,7.9106226,52,54.51,39.33,60.15,6.666666666666667,1,1,0,0,13,13,5,1,1334,1276534.1,746383,425902.13,0,0,0,4249.751 +13433,16386,29222,-9,29220,29221,1,0,29,0,0,0,1,1,-9,0,3,8.5334663,8.4662695,0,0,0,-982.90039,0,2,2,2021,8,0,39,37,1,0,1,12.503923,12.503923,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,403,-76816.367,132710.45,0,0,0,0,2017.5084 +13433,16387,29223,-9,29220,29221,1,0,28,0,0,0,2,2,-9,0,5,8.2620811,8.3463278,0,0,0,-963.302,0,2,2,2021,12,0,44,38,1,0,1,11.548583,11.548583,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.06,60.24,-9,-9,8.333333333333334,1,1,0,0,7,13,5,1,413,104599.81,53978.59,0,0,0,0,1735.1694 +13434,16388,29224,29225,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,0,0,61,2,60.801838,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1895866,0,0,1,1,0,2.7421987,0,61.94,23.88,57.34,47.92,10,1,1,0,0,0,4,2,1,462.5,601272,26138.582,182603.94,0,0,0,1051.824 +13434,16388,29225,29224,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.3154054,6.8850608,61,-2,10.508937,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2136173,7.3444691,57.34,47.92,61.94,23.88,8.333333333333334,1,1,0,0,0,4,2,1,462.5,601272,26138.582,182603.94,0,0,0,1051.824 +13435,16389,29226,29229,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.6795416,8.7165041,0,16,2,-109.63301,0,2,2,2021,12,0,43,60,1,0,0,21.043787,21.043787,0,0,.05,0,0,0,0,0,1,1,0,0,0,56.18,43.12,43.09,61.58,8.333333333333334,1,1,0,0,9,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13435,16389,29227,-9,29229,29226,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.53955,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13435,16389,29228,-9,29229,29226,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-871.0614,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13435,16389,29229,29226,-9,-9,1,0,35,0,2,0,2,2,-9,0,5,7.5350609,7.5421176,0,8,-2,-21.900988,0,-9,-9,2021,17,6,16,25,1,6,0,11.01157,11.01157,0,0,0,0,0,0,0,0,1,1,0,6.9025888,0,43.09,61.58,56.18,43.12,6.666666666666667,4,2,0,0,8,9,4,1,1325,381414.84,118345.2,708936.88,327975.66,8963.6699,14287.515,4369.8936 +13436,16390,29230,29231,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2457075,8.0306864,7,1,24.280645,0,-9,-9,2021,10,0,0,10,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6498082,8.1583252,52,48,57.06,57.76,7,1,1,0,0,0,5,3,1,749.5,1387852.4,630286.63,252146.77,0,0,0,2988.9846 +13436,16390,29231,29230,-9,-9,1,0,65,0,0,0,2,2,-9,0,5,0,0,0,42,-1,-79.83593,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0675879,0,57.06,57.76,52,48,8.333333333333334,1,1,0,0,5,5,3,1,749.5,1387852.4,630286.63,252146.77,0,0,0,2988.9846 +13437,16391,29232,-9,29233,-9,1,0,54,0,0,0,2,2,-9,1,2,0,0,0,0,0,-941.23505,0,2,3,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.83,47.86,-9,-9,0,1,1,0,0,6,11,1,1,765,-180190.86,0,0,0,0,0,1387.7446 +13437,16392,29233,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,6.6653962,6.8502846,0,0,-931.96228,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,28.5595,0,2,1,1,0,1.5457357,7.1245804,63.1,22.4,-9,-9,5,1,1,0,0,0,11,2,1,374,580503.75,139043.13,187670.03,0,0,0,1199.8997 +13438,16393,29234,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.8477325,7.1036987,0,0,0,-1045.6874,0,-9,-9,2021,9,0,40,40,1,0,0,3.0338347,3.0338347,0,0,0,0,0,0,0,0,0,0,0,7.4055257,0,52.88,56.68,-9,-9,8.333333333333334,3,4,0,0,11,8,2,1,339,860793.19,0,702947.63,0,0,0,1524.5177 +13439,16394,29235,-9,-9,-9,1,1,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1028.623,0,3,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.61,18.47,-9,-9,3.333333333333333,1,1,0,1,2,5,1,0,415,58835.797,0,149900.17,59110.055,0,0,113.62061 +13440,16395,29236,29237,-9,-9,1,0,65,0,0,0,3,3,-9,0,2,0,0,0,2,2,0,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,.52000427,0,0,1,1,0,0,0,43.91,31.46,54,54,6.666666666666667,1,1,0,0,0,7,1,0,1007.5,970866,330349.06,340639.19,0,0,0,487.358 +13440,16395,29237,29236,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,0,0,2,-2,0,0,3,3,2021,9,0,0,24,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,43.91,31.46,10,1,1,0,0,10,7,1,0,1007.5,970866,330349.06,340639.19,0,0,0,487.358 +13441,16396,29238,-9,-9,-9,1,0,49,0,1,0,1,1,-9,0,4,8.6107159,8.7898455,0,0,0,-911.08557,0,3,3,2021,8,0,39,37,1,0,0,20.885664,20.885664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,9,13,5,1,330.5,103569.7,24279.809,86602.531,81094.969,1269.5332,0,2385.4348 +13441,16396,29239,-9,29238,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.6031,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,5,1,330.5,103569.7,24279.809,86602.531,81094.969,1269.5332,0,2385.4348 +13442,16397,29240,-9,29242,29241,1,0,19,0,0,0,2,2,1,0,3,0,4.9090943,4.7061954,0,0,-1087.1992,-9,1,2,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5851998,0,55.05,32.62,-9,-9,8.333333333333334,1,1,0,0,3,7,2,1,718,50634.406,0,0,0,0,0,-106.68288 +13442,16398,29241,29242,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,9.2895174,9.5000362,7.1840644,5,8,-91.980927,0,-9,-9,2021,9,0,38,38,1,0,0,32.630093,32.630093,.05,.05,0,0,0,0,0,0,0,0,0,0,7.2694554,55.93,39.42,38.68,51.38,3.333333333333333,1,1,0,1,6,7,5,1,1576.5,2267211.8,1166268.8,775941.63,0,0,0,8358.7393 +13442,16398,29242,29241,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,9.1089172,8.8923607,0,5,-8,48.065231,0,2,2,2021,17,6,47,42,1,6,0,15.473643,15.473643,.05,.05,0,0,0,0,0,0,0,0,0,4.9147906,0,38.68,51.38,55.93,39.42,8.333333333333334,1,1,0,0,6,7,5,1,1576.5,2267211.8,1166268.8,775941.63,0,0,0,8358.7393 +13443,16399,29243,29247,-9,-9,1,0,47,0,3,0,1,1,-9,0,4,8.1971245,8.351779,0,10,-5,8.0500631,0,-9,-9,2021,11,0,50,39,1,0,0,11.244973,11.244973,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,41.12,47.92,8.333333333333334,1,1,0,0,7,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29244,-9,29243,29247,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-991.28888,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29245,-9,29243,29247,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-952.65289,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29246,-9,29243,29247,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-990.60449,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16399,29247,29243,-9,-9,1,1,52,0,3,0,2,2,-9,0,2,8.9822302,9.2947321,0,10,5,42.305756,0,-9,-9,2021,11,1,35,40,1,1,0,30.503712,30.503712,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.12,47.92,57.16,56.15,6.666666666666667,1,1,0,0,12,9,5,1,718,883680.63,500111.78,465033.16,241067,1963.0739,0,5053.7974 +13443,16400,29248,-9,-9,-9,1,0,83,0,3,0,3,3,-9,0,4,0,6.156261,6.3173132,0,0,-1006.5393,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,2.0954268,0,0,1,1,0,0,6.2127028,36.19,49.06,-9,-9,10,1,1,0,0,0,9,2,1,388,467238.91,95446.375,145421.56,0,0,0,189.04134 +13444,16401,29249,-9,29250,29253,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-875.84943,-9,2,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29250,29253,-9,-9,1,0,36,0,3,0,2,2,-9,0,2,0,0,0,15,-3,89.523575,0,-9,-9,2021,15,0,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,41,47,52,6,2,3,1,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29251,-9,29250,29253,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1097.2813,-9,3,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29252,-9,29250,29253,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-827.60583,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13444,16401,29253,29250,-9,-9,1,1,39,0,3,0,1,1,-9,0,3,7.9596438,8.3316126,0,8,3,178.81764,-9,3,2,2021,11,0,37,0,1,2,0,9.2028456,9.2028456,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,52,40,41,7,2,3,0,0,13,8,3,0,682.40002,225274.55,-46416.395,127096.19,0,0,1171.6088,1825.0063 +13445,16402,29254,29255,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.2679243,8.7453747,0,33,3,.99732667,0,2,-9,2021,13,1,38,38,1,1,0,15.43331,15.43331,.05,.05,0,0,0,0,0,0,0,0,0,2.7320719,0,47.91,37.83,58.72,51.29,6.666666666666667,1,1,0,0,13,13,5,1,659,948527.88,543469.13,189799.16,0,6095.4492,1155.3361,4253.708 +13445,16402,29255,29254,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.6398745,9.2465391,0,32,-3,77.922409,0,2,3,2021,8,0,38,38,1,0,0,25.357468,25.357468,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,47.91,37.83,8.333333333333334,1,1,0,0,13,13,5,1,659,948527.88,543469.13,189799.16,0,6095.4492,1155.3361,4253.708 +13445,16403,29256,-9,29255,29254,1,1,20,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1079.6567,1,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.75,56.99,-9,-9,8.333333333333334,1,1,0,1,2,13,1,1,654,2305.5388,0,0,0,0,0,0 +13446,16404,29257,29258,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,0,0,8,2,22.551451,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,4.6730003,0,0,1,1,0,0,0,41.91,53.55,56.46,38.75,8.333333333333334,1,1,0,0,0,9,2,1,1245.5,801103,115872.52,466836.31,0,0,0,2025.3123 +13446,16404,29258,29257,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.3772192,5.6817956,8,-2,-169.3649,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.8404764,5.5270419,56.46,38.75,41.91,53.55,8.333333333333334,1,1,0,0,0,9,2,1,1245.5,801103,115872.52,466836.31,0,0,0,2025.3123 +13447,16405,29259,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.5137844,8.3490524,0,0,0,-1105.9945,0,-9,2,2021,12,0,40,40,1,0,0,13.050406,13.050406,.05,.05,0,0,0,0,0,0,0,0,0,4.1472869,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,206,957868.13,1102274.4,107884.94,1198.6031,7382.6865,0,1994.9878 +13448,16406,29260,29261,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,43,-6,0,0,2,2,2021,28,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.93,17.48,41.23,59.35,1.666666666666667,1,1,0,1,0,10,1,0,1317.5,176403.72,0,108520.33,0,0,0,2066.6973 +13448,16406,29261,29260,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,43,6,0,0,2,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,41.23,59.35,35.93,17.48,3.333333333333333,1,1,0,1,0,10,1,0,1317.5,176403.72,0,108520.33,0,0,0,2066.6973 +13449,16407,29262,-9,29263,29265,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.90845,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29263,29265,-9,-9,1,0,37,0,3,0,1,1,-9,0,5,8.5531025,8.6689157,0,17,-1,136.42644,0,2,2,2021,6,0,40,38,1,0,0,16.346043,16.346043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,58.07,59.54,40.17,10,1,1,0,0,9,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29264,-9,29263,29265,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-973.8139,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29265,29263,-9,-9,1,1,38,0,3,0,2,2,-9,0,4,9.3187428,9.1105938,0,16,1,75.06076,0,2,3,2021,12,1,35,35,1,1,0,29.171553,29.171553,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.54,40.17,46.21,58.07,8.333333333333334,1,1,0,0,9,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13449,16407,29266,-9,29263,29265,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-883.29462,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,1416.4,112305.83,139595.58,201846.2,174542.61,6268.6748,0,4771.9429 +13450,16408,29267,29268,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.844099,9.162138,6.9786549,4,-10,-123.01332,0,-9,-9,2021,8,1,70,76,1,1,0,16.717113,16.717113,0,0,0,0,0,0,0,0,0,0,0,8.6783981,0,40.11,51.05,53.95,50.89,10,1,1,0,0,9,9,5,1,1132,3757913.5,406122.31,998074.88,121271.11,0,0,12149.519 +13450,16408,29268,29267,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,9.8082943,9.7750607,6.2290792,4,10,33.85244,0,-9,-9,2021,7,0,80,80,1,0,0,21.551014,21.551014,0,0,.05,0,0,0,0,0,0,0,0,0,6.9099922,53.95,50.89,40.11,51.05,6.666666666666667,1,1,0,0,8,9,5,1,1132,3757913.5,406122.31,998074.88,121271.11,0,0,12149.519 +13451,16409,29269,-9,29271,29270,1,1,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-942.06732,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29270,29271,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,7.4920473,7.261683,0,6,3,-7.5091319,0,1,2,2021,16,4,30,20,1,4,0,5.881875,5.881875,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.65,48.78,33.62,36.14,6.666666666666667,1,1,0,0,5,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29271,29270,-9,-9,1,0,37,0,3,0,2,2,-9,1,3,0,0,0,6,-3,-11.36354,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,33.62,36.14,52.65,48.78,3.333333333333333,1,1,0,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29272,-9,29271,29270,1,1,16,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.4068,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13451,16409,29273,-9,29271,29270,1,1,10,0,3,1,3,0,-9,0,2,0,0,0,0,0,-868.91504,-9,2,2,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,45,-9,-9,5,1,1,-9,0,0,2,2,0,1427.6,29766.695,-6210.563,119838.45,84076.625,0,0,2346.6499 +13452,16410,29274,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-926.42334,0,-9,-9,2021,32,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,28.37,22.33,-9,-9,0,1,1,0,1,6,6,1,0,2371,-118165.35,0,0,0,0,0,270.33505 +13452,16411,29275,-9,29274,-9,1,1,31,0,0,0,2,2,-9,1,1,0,0,0,0,0,-977.55792,0,3,-9,2021,21,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,42.79,19.61,-9,-9,1.666666666666667,1,1,0,1,4,6,1,0,767,-56070.02,0,0,0,0,0,-109.31487 +13453,16412,29276,29277,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.2268505,9.1280212,0,9,-2,-10.38158,0,2,2,2021,5,0,42,45,1,0,0,30.164379,30.164379,.05,.05,0,0,0,0,0,0,0,0,0,7.0600863,0,57.06,57.76,62.49,55.09,6.666666666666667,1,1,0,0,11,11,5,1,1398.5,1514971.1,614783.5,659148,0,0,0,7723.1465 +13453,16412,29277,29276,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,8.8642921,9.2420311,0,9,2,66.123581,0,-9,-9,2021,6,0,30,37,1,0,0,40.724827,40.724827,0,0,0,0,0,0,0,0,0,0,0,.77244091,0,62.49,55.09,57.06,57.76,10,1,1,0,0,9,11,5,1,1398.5,1514971.1,614783.5,659148,0,0,0,7723.1465 +13454,16413,29278,-9,29279,-9,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1086.3022,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,11,1,0,1050,80219.656,0,0,0,0,4649.7935,3018.4839 +13454,16413,29279,-9,-9,-9,1,0,46,0,2,0,2,2,-9,1,1,0,0,0,0,0,-989.08905,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.48,17.04,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,1050,80219.656,0,0,0,0,4649.7935,3018.4839 +13454,16414,29280,-9,29279,-9,1,1,18,0,2,1,2,0,0,0,4,0,0,0,0,0,-1136.9298,-9,2,-9,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.81,59.91,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,96,33958.219,0,0,0,0,0,0 +13455,16415,29281,29282,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.4981928,8.39499,37,6,68.827576,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4171867,8.1509933,54.96,53.17,40.61,64.02,8.333333333333334,1,1,0,0,3,9,3,1,687.5,1664923.8,750546.75,760924.5,0,0,0,2943.2813 +13455,16415,29282,29281,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,5,-6,22.137165,0,-9,-9,2021,20,8,0,20,4,8,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.7707882,0,40.61,64.02,54.96,53.17,5,1,1,0,0,6,9,3,1,687.5,1664923.8,750546.75,760924.5,0,0,0,2943.2813 +13456,16416,29283,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,6.8655834,6.8260517,0,0,-1068.4084,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9166312,6.8437753,49.76,42.45,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,1593,143844.73,170785.17,0,0,0,0,1582.1456 +13457,16417,29284,29286,-9,-9,1,1,36,0,1,0,1,1,-9,0,3,8.0517817,8.1965427,0,10,4,-120.28068,0,3,1,2021,14,2,39,38,1,2,0,10.104657,10.104657,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.93,56.27,35.26,47.34,5,2,3,0,0,8,8,3,0,619,313816.94,56094.488,272516.69,131426.97,0,0,1332.5397 +13457,16417,29285,-9,29286,29284,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-919.46484,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,0,619,313816.94,56094.488,272516.69,131426.97,0,0,1332.5397 +13457,16417,29286,29284,-9,-9,1,0,32,0,1,0,1,1,-9,0,3,6.0417023,6.2577009,0,10,-4,54.25758,0,3,2,2021,12,2,8,12,1,2,0,7.3155556,7.3155556,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.26,47.34,36.93,56.27,3.333333333333333,2,3,0,0,8,8,3,0,619,313816.94,56094.488,272516.69,131426.97,0,0,1332.5397 +13458,16418,29287,29288,-9,-9,1,0,38,0,2,0,3,3,-9,0,3,8.2773018,8.3173523,0,18,-16,11.97898,0,3,2,2021,7,0,45,50,1,0,0,8.7140322,8.7140322,0,0,0,0,0,0,0,0,1,1,0,0,0,43.71,56.91,54.96,53.17,8.333333333333334,2,3,0,0,4,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13458,16418,29288,29287,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,8.7325602,8.6532383,0,18,16,-70.518776,0,3,2,2021,6,0,58,58,1,0,0,11.46152,11.46152,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.96,53.17,43.71,56.91,1.666666666666667,1,1,0,0,9,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13458,16418,29289,-9,29287,29288,1,1,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-922.89343,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13458,16418,29290,-9,29287,29288,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-896.52454,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,10,4,1,814.25,518908.06,261760.5,460108.06,300352.06,0,0,3337.0645 +13459,16419,29291,29292,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.4405799,7.619802,0,7,-2,61.711632,0,3,-9,2021,3,0,16,16,1,0,0,11.706107,11.706107,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.17,47.9,54.96,53.17,8.333333333333334,1,1,0,0,9,12,5,0,600,396196.63,225027.31,243053.42,133600.47,4335.8765,1648.1472,4673.4639 +13459,16419,29292,29291,-9,-9,1,1,32,0,0,0,1,1,-9,0,3,9.3175774,9.3360691,0,7,2,-83.641792,0,-9,-9,2021,6,0,70,60,1,0,0,14.782144,14.782144,.05,.05,0,0,0,0,0,0,0,0,0,6.9998326,0,54.96,53.17,37.17,47.9,8.333333333333334,1,1,0,0,12,12,5,0,600,396196.63,225027.31,243053.42,133600.47,4335.8765,1648.1472,4673.4639 +13460,16420,29293,29296,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,8.373395,8.446311,0,10,-3,46.274017,0,2,2,2021,12,0,60,55,1,0,0,8.0269175,8.0269175,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.59,47.04,55.93,20.81,6.666666666666667,1,1,0,0,10,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13460,16420,29294,-9,29296,-9,1,0,16,0,1,0,2,2,-9,0,3,0,6.4413648,6.4241533,0,0,-1003.236,-9,1,-9,2021,28,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5496325,0,28.05,56.1,-9,-9,3.333333333333333,1,1,0,0,0,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13460,16420,29295,-9,29296,29293,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1134.4213,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13460,16420,29296,29293,-9,-9,1,0,41,0,1,0,1,1,-9,1,1,8.1524057,8.4239292,0,10,3,22.389944,0,2,2,2021,10,1,38,39,1,1,0,8.7323675,8.7323675,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.93,20.81,45.59,47.04,6.666666666666667,1,1,0,0,8,6,4,0,638.75,345669.13,151875.36,88482.867,56355.773,0,2408.5374,3419.2876 +13461,16421,29297,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-990.21509,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.64,37.78,-9,-9,10,1,1,0,0,0,7,2,0,802,155426.86,0,83790.805,0,0,0,245.9171 +13462,16422,29298,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,1,0,7.708807,7.7179394,0,0,-967.9599,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,6.3807163,6.4950509,74.428909,0,1,1,0,3.1317046,7.5632253,25.43,29.19,-9,-9,1.666666666666667,1,1,0,0,3,4,3,1,3659,352409.44,244642.3,0,0,0,0,2208.8596 +13463,16423,29299,29300,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,57,-5,-29.75271,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.9976578,0,0,1,1,0,0,0,57.16,56.15,62.42,45.64,8.333333333333334,1,1,0,0,0,6,2,1,348.5,10488.063,14796.705,98875.242,0,0,0,1964.1997 +13463,16423,29300,29299,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,6.0612173,5.7652612,57,5,-8.5106621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7137785,5.6229873,62.42,45.64,57.16,56.15,8.333333333333334,1,1,0,0,0,6,2,1,348.5,10488.063,14796.705,98875.242,0,0,0,1964.1997 +13464,16424,29301,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.2252688,7.046525,0,0,-1059.0192,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.253159,54.96,53.17,-9,-9,10,1,1,0,0,10,4,2,0,828,533992.31,406852.09,54677.227,0,0,0,-153.8526 +13465,16425,29302,29303,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,0,0,8,7,0,0,3,1,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.9,36.42,33.64,33.57,5,2,3,1,0,5,2,1,1,634,29660.852,0,0,0,0,0,302.76663 +13465,16425,29303,29302,-9,-9,1,0,52,0,0,0,3,3,-9,1,1,0,0,0,35,-7,0,0,3,2,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.64,33.57,45.9,36.42,5,2,3,0,0,0,2,1,1,634,29660.852,0,0,0,0,0,302.76663 +13465,16426,29304,-9,29303,29302,1,1,29,0,0,0,2,2,-9,1,2,0,0,0,0,0,-896.06781,0,2,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.34,30.37,-9,-9,5,2,3,1,0,0,2,1,1,1601,-73354.359,0,0,0,0,0,1788.8022 +13466,16427,29305,29306,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.2795382,9.5048294,7.6557517,36,3,-8.103529,0,2,2,2021,7,0,45,43,1,0,0,25.918066,25.918066,0,0,0,0,0,0,0,0,1,1,0,3.5024252,7.631331,54.2,57.49,49,48,8.333333333333334,1,1,0,0,10,9,5,1,1488.5,2026663,1226357.8,872862.81,0,133.45728,0,5310.5098 +13466,16427,29306,29305,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,0,0,0,9,-3,-131.04272,0,-9,-9,2021,11,0,0,40,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,54.2,57.49,7,1,1,0,0,0,9,5,1,1488.5,2026663,1226357.8,872862.81,0,133.45728,0,5310.5098 +13467,16428,29307,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,9.8497305,9.8656683,0,0,-1061.5061,0,2,3,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,9.2179403,8.5355911,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,2753,993143.75,900747.75,165020.61,0,0,0,7323.8975 +13468,16429,29308,29309,-9,-9,1,1,80,0,0,0,3,3,-9,0,4,0,8.7791271,8.8337851,9,6,-9.3016758,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1632075,8.5505142,57.16,56.15,68.11,22.42,8.333333333333334,1,1,0,0,3,13,4,1,288,773063.5,361906.25,0,0,0,0,3625.96 +13468,16429,29309,29308,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,9,-6,76.928635,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1848068,0,68.11,22.42,57.16,56.15,8.333333333333334,1,1,0,0,0,13,4,1,288,773063.5,361906.25,0,0,0,0,3625.96 +13469,16430,29310,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.750248,8.8427601,0,0,0,-1124.4568,0,3,3,2021,12,0,50,43,1,0,0,16.434174,16.434174,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,13,6,5,1,732,441698.38,411191.5,125788.98,20066.801,0,0,2828.5786 +13469,16431,29311,-9,29310,-9,1,1,25,0,0,0,1,1,-9,0,4,7.7845764,7.6442657,5.0474405,0,0,-953.26862,0,1,-9,2021,11,0,36,42,1,0,1,7.8296614,7.8296614,0,0,0,0,0,0,0,0,0,0,0,5.2371907,0,52.88,56.68,-9,-9,10,4,2,0,0,8,6,3,1,1192,-9490.6084,0,0,0,0,0,894.76587 +13469,16432,29312,-9,29310,-9,1,1,22,0,0,0,2,2,0,0,5,0,0,0,0,0,-1019.9915,-9,1,-9,2021,21,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,63,-9,-9,6.666666666666667,4,2,0,0,4,6,1,1,298,0,0,0,0,0,0,0 +13469,16433,29313,-9,29310,-9,1,1,23,0,0,0,1,1,1,0,5,7.7831883,7.9592309,0,0,0,-998.586,-9,1,-9,2021,4,0,36,0,1,0,1,6.9072366,6.9072366,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,-9,-9,10,4,2,0,0,7,6,3,1,856,73579.742,0,0,0,0,0,627.81616 +13470,16434,29314,29315,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,49,-2,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7280637,0,63.26,42.53,50.48,52.79,8.333333333333334,1,1,0,0,9,12,1,0,468.5,80143.109,0,150881.03,-2866.0171,0,0,1109.8363 +13470,16434,29315,29314,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,49,2,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.46167704,0,50.48,52.79,63.26,42.53,8.333333333333334,1,1,0,0,7,12,1,0,468.5,80143.109,0,150881.03,-2866.0171,0,0,1109.8363 +13471,16435,29316,-9,29317,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-941.2038,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,0,694,-105466.88,-43453.352,159963.47,105754.02,0,0,2362.4092 +13471,16435,29317,-9,-9,-9,1,0,33,0,1,0,2,2,-9,0,4,8.383193,8.4272442,6.8618908,0,0,-842.09296,0,3,2,2021,8,0,40,37,1,0,0,16.544546,16.544546,.05,.05,0,0,0,0,0,0,1,1,0,6.3291874,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,2,4,0,694,-105466.88,-43453.352,159963.47,105754.02,0,0,2362.4092 +13472,16436,29318,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,8.1036062,8.0536022,0,0,0,-860.26123,0,3,3,2021,13,1,38,26,1,1,0,11.033161,11.033161,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.11,46.74,-9,-9,5,1,1,0,0,13,12,4,0,1133,227728.81,288906.16,0,0,7092.3291,2479.7915,1962.4586 +13472,16437,29319,-9,29318,-9,1,0,29,0,1,0,1,1,-9,0,3,8.1004353,8.1352777,0,0,0,-996.28925,0,2,-9,2021,12,0,82,36,1,0,1,4.8244548,4.8244548,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.29,61.29,-9,-9,5,1,1,0,0,9,12,4,0,1577,-242574.09,5961.8843,0,0,0,0,2094.7351 +13473,16438,29320,29321,-9,-9,1,1,61,0,0,0,3,3,-9,1,4,6.8519616,7.1206551,0,8,1,158.94893,0,3,3,2021,7,0,12,12,1,0,0,7.1752138,7.1752138,0,0,0,0,0,0,0,42,1,1,0,0,0,45.53,53.13,49,48,10,1,1,0,0,9,5,2,0,2555,289835.53,18360.676,160469.11,0,0,0,2076.373 +13473,16438,29321,29320,-9,-9,1,0,60,0,0,0,3,3,-9,1,3,0,0,0,8,-1,80.5494,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,45.53,53.13,7,1,1,0,0,0,5,2,0,2555,289835.53,18360.676,160469.11,0,0,0,2076.373 +13474,16439,29322,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.9403963,9.2690525,0,0,0,-1049.4186,0,3,2,2021,9,0,20,20,1,0,0,53.876457,53.876457,.05,.05,0,0,0,0,0,2,0,0,0,10.334849,0,48.19,54.86,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,409,528839.63,509511.47,0,0,0,0,8606.7734 +13475,16440,29323,29324,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.2348971,6.9170508,12,13,50.454205,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.2200565,59.71,45.35,42.07,45.18,8.333333333333334,1,1,0,0,7,10,4,0,839,1572675.3,952187.38,258584.27,0,0,0,2368.196 +13475,16440,29324,29323,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.0789003,8.213438,0,12,-13,-74.849342,0,2,1,2021,24,9,37,37,1,9,0,9.0907526,9.0907526,0,0,0,0,0,0,0,2,1,1,0,0,0,42.07,45.18,59.71,45.35,8.333333333333334,1,1,0,0,15,10,4,0,839,1572675.3,952187.38,258584.27,0,0,0,2368.196 +13476,16441,29325,29326,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,0,7.0673623,7.1171393,29,11,21.48595,0,-9,-9,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1677303,47,38,51,54,6.666666666666667,2,3,0,1,0,6,2,1,480,1224365.3,805383.25,191155.5,0,0,0,447.4985 +13476,16441,29326,29325,-9,-9,1,0,48,0,0,0,3,3,-9,0,4,0,0,0,29,-11,-133.20146,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6391759,0,51,54,47,38,8,2,3,0,0,0,6,2,1,480,1224365.3,805383.25,191155.5,0,0,0,447.4985 +13476,16442,29327,-9,29326,29325,1,1,29,0,0,0,1,1,-9,0,3,7.5596123,7.6690764,0,0,0,-910.18396,0,3,3,2021,5,0,37,40,1,0,1,7.2019176,7.2019176,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,9,6,3,1,1875,48989.57,0,0,0,0,0,109.70628 +13477,16443,29328,-9,-9,-9,1,0,30,0,0,0,2,2,-9,1,2,0,0,0,0,0,-907.76489,-9,2,-9,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.31,52.88,-9,-9,8.333333333333334,3,4,0,0,0,8,1,1,312,0,0,0,0,0,0,493.98184 +13478,16444,29329,29330,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.296339,8.2497673,38,0,-97.247917,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5094347,8.0659475,43.59,59.64,60.7,47.65,6.666666666666667,1,1,0,0,10,9,4,1,1039,2008413.9,1190697,705619.75,0,0,0,3596.373 +13478,16444,29330,29329,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.0875373,7.045958,38,0,-5.4814672,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0665722,6.7581758,60.7,47.65,43.59,59.64,8.333333333333334,1,1,0,0,5,9,4,1,1039,2008413.9,1190697,705619.75,0,0,0,3596.373 +13479,16445,29331,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,7.668611,7.8721604,0,0,0,-995.15717,0,2,2,2021,24,12,40,35,1,12,0,6.9915948,6.9915948,.05,.05,0,0,0,0,0,0,1,1,0,0,0,26.12,51.92,-9,-9,5,1,1,0,1,11,1,3,0,96,47275.371,95304.617,0,0,0,-1526.1678,1212.8167 +13480,16446,29332,-9,-9,-9,1,1,57,0,0,0,3,3,-9,0,1,0,6.0219431,5.8157768,0,0,-1080.0718,0,-9,-9,2021,21,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6052179,5.8452406,33.88,36.39,-9,-9,1.666666666666667,1,1,0,0,0,6,2,1,448,113723.08,0,124310.32,0,0,0,3068.5369 +13481,16447,29333,29334,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,47,1,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,58.31,42.52,8.333333333333334,1,1,0,0,0,6,1,0,472.5,-83375.406,0,0,0,0,0,2246.7312 +13481,16447,29334,29333,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,47,-1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.31,42.52,62.66,52.4,0,1,1,0,0,0,6,1,0,472.5,-83375.406,0,0,0,0,0,2246.7312 +13482,16448,29335,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,0,0,-826.59839,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.8,57.63,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,1216,190004.56,0,0,0,0,0,1803.3783 +13483,16449,29336,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.7317638,8.3598585,0,0,0,-897.70496,0,3,2,2021,24,12,36,32,1,12,0,16.724995,16.724995,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.28,58.05,-9,-9,3.333333333333333,1,1,0,0,10,12,5,1,295,366677.38,240679.69,171852.64,96163.734,0,0,1904.0634 +13484,16450,29337,29340,-9,-9,1,1,48,0,2,0,3,3,-9,0,4,7.5906372,7.1773539,0,23,3,-32.563942,0,3,2,2021,9,0,40,40,1,1,0,5.6106071,5.6106071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,48.72,45.68,8,1,1,0,0,1,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13484,16450,29338,-9,29340,29337,1,1,16,0,2,1,3,0,-9,0,3,0,0,0,0,0,-976.41766,-9,2,3,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.29,52.11,-9,-9,10,1,1,0,0,0,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13484,16450,29339,-9,29340,29337,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.2276,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13484,16450,29340,29337,-9,-9,1,0,45,0,2,0,2,2,-9,0,2,7.7479196,7.84447,0,23,-3,8.8879337,0,2,2,2021,8,2,30,30,1,2,0,10.725471,10.725471,.05,.05,0,0,0,0,0,0,1,1,0,1.6718634,0,48.72,45.68,52,55,6.666666666666667,1,1,0,0,6,5,3,1,497.5,126658.28,78050.719,115355.53,89377.82,3813.8843,0,1499.9961 +13485,16451,29341,29342,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.0232391,8.0854216,53,4,-24.597198,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9570158,8.2384911,52.39,43.31,50.03,53.84,8.333333333333334,1,1,0,0,0,12,3,1,1107,1116633.1,595939.88,277554.25,0,1005.6931,0,3060.7588 +13485,16451,29342,29341,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,5.1311007,5.0214872,53,-4,35.215034,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3656702,4.6563363,50.03,53.84,52.39,43.31,10,1,1,0,0,0,12,3,1,1107,1116633.1,595939.88,277554.25,0,1005.6931,0,3060.7588 +13486,16452,29343,-9,-9,-9,1,1,19,0,0,0,2,2,-9,1,2,0,0,0,0,0,-932.27118,0,-9,-9,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.8,47.08,-9,-9,1.666666666666667,4,2,1,0,0,10,1,0,675,122753.82,0,0,0,0,0,416.34552 +13487,16453,29344,29345,-9,-9,1,1,72,0,0,0,2,2,-9,0,5,8.3730307,7.9912224,0,11,8,113.58302,0,3,3,2021,6,0,40,40,1,0,0,8.494585,8.494585,0,0,0,0,0,0,0,14.5,1,1,0,.39159545,0,57.06,57.76,61.12,51.57,10,1,1,0,0,12,8,4,1,475,1957258.8,1074060.5,486894.81,0,5781.1338,4921.9917,3046.156 +13487,16453,29345,29344,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.8381405,8.0831404,0,11,-8,-82.225822,0,3,3,2021,7,0,20,32,1,0,0,14.86608,14.86608,0,0,0,0,0,0,0,7,1,1,0,0,0,61.12,51.57,57.06,57.76,10,1,1,0,0,12,8,4,1,475,1957258.8,1074060.5,486894.81,0,5781.1338,4921.9917,3046.156 +13488,16454,29346,29347,-9,-9,1,0,81,0,0,0,3,3,-9,0,5,0,0,0,59,-3,-51.59008,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0427797,0,57.65,56.13,63.48,51.85,10,1,1,0,0,0,7,2,1,525.5,687827.19,9676.1289,324787.22,0,0,0,1221.9745 +13488,16454,29347,29346,-9,-9,1,1,84,0,0,0,3,3,-9,0,4,0,5.1052594,5.0608501,59,3,97.864632,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7007599,5.4699664,63.48,51.85,57.65,56.13,10,1,1,0,0,0,7,2,1,525.5,687827.19,9676.1289,324787.22,0,0,0,1221.9745 +13489,16455,29348,29349,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,6.7828407,7.0032911,59,4,-106.68381,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9072254,6.7597404,65.63,45.52,41.18,41.95,10,1,1,0,0,0,1,2,1,302.5,168726.83,142991.67,144524.5,0,0,0,1559.6478 +13489,16455,29349,29348,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,4.168366,4.1407576,59,-4,131.58206,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,9.371911,0,0,1,1,0,6.9155836,4.3227053,41.18,41.95,65.63,45.52,8.333333333333334,1,1,0,0,0,1,2,1,302.5,168726.83,142991.67,144524.5,0,0,0,1559.6478 +13490,16456,29350,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,3,7.2158689,7.4000597,0,0,0,-1041.4193,-9,-9,-9,2021,10,1,42,0,1,1,0,3.6380813,3.6380813,0,0,0,0,0,0,0,0,0,0,0,0,0,36.12,59.15,-9,-9,3.333333333333333,1,1,0,0,6,13,3,1,285,157023.7,0,0,0,0,0,-64.17128 +13491,16457,29351,29352,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,8.3674965,8.4084682,0,31,4,-56.913239,0,3,1,2021,10,0,25,35,1,1,0,20.83856,20.83856,.05,.05,0,0,0,0,0,0,0,0,0,1.9142954,0,50,49,50.73,55.14,7,2,3,0,0,1,7,5,1,340.5,1301273,533421.5,321849,0,0,0,3341.0083 +13491,16457,29352,29351,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.1512804,7.9484715,0,31,-4,-8.1334238,0,3,1,2021,11,0,15,20,1,0,0,33.836552,33.836552,.05,.05,0,0,0,0,0,0,0,0,0,5.9708753,0,50.73,55.14,50,49,8.333333333333334,2,3,0,0,13,7,5,1,340.5,1301273,533421.5,321849,0,0,0,3341.0083 +13491,16458,29353,-9,29352,29351,1,0,21,0,0,0,1,1,1,0,3,0,0,0,0,0,-1003.9689,-9,1,1,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,34.79,58.34,-9,-9,8.333333333333334,2,3,1,0,0,7,1,1,2261,-63610.223,0,0,0,0,0,0 +13492,16459,29354,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.8803158,8.8344307,0,0,0,-1002.2241,0,-9,-9,2021,8,0,35,35,1,0,0,21.587742,21.587742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,34.09,54.54,-9,-9,6.666666666666667,4,2,0,0,13,7,5,1,1026,1450000.9,666056.19,397262.09,123696.98,0,0,3464.6089 +13493,16460,29355,29356,-9,-9,1,1,40,1,2,0,1,1,-9,0,3,8.7859049,8.4147558,0,8,1,104.0753,0,3,3,2021,13,2,47,42,1,2,0,12.687203,12.687203,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,33.19,52.45,31.1,53.29,5,2,3,0,0,14,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13493,16460,29356,29355,-9,-9,1,0,39,1,2,0,2,2,-9,0,3,0,0,0,8,-1,9.0140982,0,-9,-9,2021,17,6,0,37,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.1,53.29,33.19,52.45,5,2,3,0,0,10,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13493,16460,29357,-9,29356,29355,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.70044,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13493,16460,29358,-9,29356,29355,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-892.6756,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,6,4,1,432.75,444870.09,317599.41,315576.59,220680.09,0,0,1484.5955 +13494,16461,29359,-9,29360,29361,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.3708,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13494,16461,29360,29361,-9,-9,1,0,47,0,2,0,2,2,-9,0,2,7.8106775,7.8873987,0,9,6,56.398857,-9,-9,-9,2021,19,6,37,0,1,6,0,8.5821152,8.5821152,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.53,17.26,57.25,53.31,5,1,1,0,0,10,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13494,16461,29361,29360,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,7.9625874,8.091506,0,9,-6,-15.17811,0,-9,-9,2021,7,0,45,50,1,0,0,6.009038,6.009038,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.25,53.31,51.53,17.26,5,1,1,0,1,10,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13494,16461,29362,-9,29360,29361,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.7326,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,11,3,0,397.25,-36070.863,17438.168,0,0,6948.7197,1318.749,2401.3411 +13495,16462,29363,29364,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.1597853,8.5417929,7.2601485,22,6,-14.740717,0,2,3,2021,8,0,15,32,1,0,0,40.315659,40.315659,.05,.05,0,0,0,0,0,0,1,1,0,5.2667971,7.4807515,55.76,44.76,54.2,57.49,8.333333333333334,1,1,0,0,11,10,5,1,537.33331,831894.88,493347.19,177045.19,0,8999.1689,0,8984.8838 +13495,16462,29364,29363,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.4919615,9.5074396,0,12,-6,-34.70586,0,-9,-9,2021,9,0,38,43,1,0,0,45.891827,45.891827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,55.76,44.76,8.333333333333334,1,1,0,0,9,10,5,1,537.33331,831894.88,493347.19,177045.19,0,8999.1689,0,8984.8838 +13495,16462,29365,-9,29363,29364,1,0,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-961.67474,-9,1,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,10,1,1,1,0,0,10,5,1,537.33331,831894.88,493347.19,177045.19,0,8999.1689,0,8984.8838 +13496,16463,29366,29367,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,9.3282061,9.3628654,0,9,4,-31.577044,0,-9,-9,2021,7,0,40,40,1,0,0,37.710609,37.710609,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.22,47.48,35.79,48.98,8.333333333333334,1,1,0,0,11,5,5,1,1565.5,1636183.3,1283722.5,351783.19,58606.391,0,0,3980.7544 +13496,16463,29367,29366,-9,-9,1,0,52,0,0,0,3,3,-9,0,2,7.0470352,6.989234,0,9,-4,-35.127743,0,3,3,2021,11,0,21,21,1,0,0,6.4674935,6.4674935,0,0,0,0,0,0,0,0,0,0,0,0,0,35.79,48.98,49.22,47.48,8.333333333333334,1,1,0,0,9,5,5,1,1565.5,1636183.3,1283722.5,351783.19,58606.391,0,0,3980.7544 +13497,16464,29368,29370,-9,-9,1,0,32,1,2,0,2,2,-9,0,5,8.0085936,8.2102365,0,8,-2,8.0552559,0,-9,-9,2021,6,0,38,38,1,0,0,9.7678776,9.7678776,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,10,1,1,0,0,12,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13497,16464,29369,-9,29368,29370,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-855.20532,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13497,16464,29370,29368,-9,-9,1,1,34,1,2,0,1,1,-9,0,4,8.5659513,8.2177944,0,8,2,91.109283,0,3,2,2021,6,0,47,50,1,0,0,10.117375,10.117375,.05,.05,0,0,0,0,0,0,1,1,0,4.2239065,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,14,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13497,16464,29371,-9,29368,29370,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.1576,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,1,799.25,606840.88,107429.92,637172,223720.16,0,0,3478.2744 +13498,16465,29372,29373,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,9.4989157,9.9234037,8.1505442,26,9,62.803226,0,2,2,2021,6,0,52,45,1,0,0,31.847525,31.847525,0,0,.05,0,0,0,0,0,0,0,0,3.0809085,7.9747591,51.41,56.15,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,295,3819982,1699388.8,963388.5,0,5467.3818,0,7165.3789 +13498,16465,29373,29372,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,0,0,0,28,0,-73.839836,0,1,1,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.41,56.15,8.333333333333334,1,1,0,0,0,10,5,1,295,3819982,1699388.8,963388.5,0,5467.3818,0,7165.3789 +13498,16466,29374,-9,29373,29372,1,1,23,0,0,0,1,1,-9,0,4,8.371377,8.1814709,0,0,0,-982.04572,0,1,2,2021,4,0,35,0,1,0,1,15.532931,15.532931,.05,.05,0,0,0,0,0,0,0,0,0,2.0754905,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,612,-68599.125,-5507.0933,0,0,0,0,1856.3055 +13498,16467,29375,-9,29373,29372,1,1,19,0,0,1,2,0,0,0,5,0,0,0,0,0,-1056.9984,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,1.666666666666667,1,1,0,0,0,10,1,1,952,0,0,0,0,0,0,157.53259 +13499,16468,29376,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,0,0,0,0,-948.5246,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,34.53,29.4,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1371,31366.227,0,0,0,0,0,1253.9344 +13500,16469,29377,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,4.2223701,4.5163321,0,0,-1031.3354,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.3297386,4.4731884,40.39,15.66,-9,-9,5,1,1,0,1,0,10,2,1,1183,160991.86,29875.184,168425.11,0,0,0,1070.0712 +13501,16470,29378,29379,-9,-9,1,1,56,0,2,0,1,1,-9,0,3,9.6961632,9.8970642,0,11,2,-83.260002,0,3,3,2021,7,0,38,0,1,0,0,51.404461,51.404461,.05,.05,0,0,0,0,0,0,1,1,0,5.0126886,0,54.37,54.8,49.04,55.86,8.333333333333334,1,1,0,0,10,2,5,1,1338,2395059,2247809,392046.19,252306.14,0,0,8159.3955 +13501,16470,29379,29378,-9,-9,1,0,54,0,2,0,1,1,-9,0,3,8.7814951,8.8063316,0,11,-2,-1.7026379,0,2,2,2021,13,1,32,32,1,1,0,22.129988,22.129988,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.37,54.8,3.333333333333333,3,4,0,0,10,2,5,1,1338,2395059,2247809,392046.19,252306.14,0,0,8159.3955 +13502,16471,29380,29381,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.7309103,8.6741161,29,-11,157.16309,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.3594198,8.2772055,37.43,53.73,42.36,56.12,10,1,1,0,0,0,2,5,1,2929.5,2288144.5,918717.25,598800.13,0,0,0,6452.2866 +13502,16471,29381,29380,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.6567144,7.7667866,11,11,-.96003741,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.222435,7.5433168,42.36,56.12,37.43,53.73,8.333333333333334,1,1,0,0,0,2,5,1,2929.5,2288144.5,918717.25,598800.13,0,0,0,6452.2866 +13503,16472,29382,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,7.6705227,7.5648808,0,0,0,-994.51666,0,3,3,2021,34,12,33,31,1,12,0,7.5910916,7.5910916,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51,54,-9,-9,1.666666666666667,1,1,0,1,8,13,3,0,166,-106900.21,84653.031,0,0,0,0,1438.0134 +13503,16473,29383,-9,29382,-9,1,0,22,0,0,0,1,1,1,0,5,8.07306,8.1914196,0,0,0,-1012.9296,-9,3,-9,2021,11,3,37,0,1,3,1,11.517745,11.517745,0,0,0,0,0,0,0,0,0,0,0,0,0,57,59.12,-9,-9,8.333333333333334,1,1,0,0,2,13,4,0,196,140470.78,0,0,0,0,0,1382.2233 +13504,16474,29384,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,7.7556109,7.7333322,0,0,-1084.3524,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0877433,7.7839255,38.18,47.32,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,605,1037129.3,401200.13,237092.7,0,0,0,2824.1235 +13505,16475,29385,29387,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.9732628,8.6722298,0,10,-2,1.8480333,0,-9,-9,2021,12,0,36,36,1,0,0,25.204575,25.204575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.45,57.49,8.333333333333334,1,1,0,0,11,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13505,16475,29386,-9,29387,29385,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.5332,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13505,16475,29387,29385,-9,-9,1,0,49,0,2,0,2,2,-9,0,3,0,0,0,22,2,-30.075033,0,3,2,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.45,57.49,57.16,56.15,6.666666666666667,1,1,0,0,1,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13505,16475,29388,-9,29387,29385,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1080.0228,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,1276.75,219951.36,23898.313,170478.47,52295.539,0,0,2441.7485 +13506,16476,29389,29390,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.8847537,8.3184996,0,28,-6,36.449421,0,2,3,2021,18,7,35,35,1,7,0,10.052698,10.052698,0,0,0,0,0,0,0,0,0,0,0,0,0,36.46,54.56,57.78,38.59,8.333333333333334,1,1,0,0,10,11,5,1,472,309957.19,7556.2344,0,0,0,0,4823.603 +13506,16476,29390,29389,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.1008778,8.9238691,8.3720446,28,6,97.806099,0,3,3,2021,7,0,35,40,1,0,0,9.8194742,9.8194742,0,0,0,0,0,0,0,0,0,0,0,2.4225791,8.3435211,57.78,38.59,36.46,54.56,8.333333333333334,1,1,0,0,11,11,5,1,472,309957.19,7556.2344,0,0,0,0,4823.603 +13507,16477,29391,-9,29392,29393,1,1,22,0,0,0,2,2,-9,0,5,7.5735884,7.4403367,0,0,0,-1063.5018,0,2,2,2021,10,0,37,40,1,0,1,6.369,6.369,0,0,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,2,9,3,1,966,-35812.902,0,0,0,0,0,1136.9188 +13507,16478,29392,29393,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.9522724,7.8813314,0,4,-2,-252.94527,0,2,2,2021,10,0,37,34,1,0,0,10.754416,10.754416,.05,.05,0,0,0,0,0,2,0,0,0,0,0,55.54,46.02,54.96,53.17,8.333333333333334,1,1,0,0,10,9,4,1,1050.5,-99847.398,14728.274,0,0,0,924.8302,2600.9121 +13507,16478,29393,29392,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.4355507,8.3463297,0,4,2,-171.20326,0,-9,-9,2021,7,0,42,37,1,0,0,11.032998,11.032998,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.96,53.17,55.54,46.02,8.333333333333334,1,1,0,0,10,9,4,1,1050.5,-99847.398,14728.274,0,0,0,924.8302,2600.9121 +13508,16479,29394,29395,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.1913118,8.2668819,0,16,3,58.741997,0,3,2,2021,11,1,35,35,1,1,0,12.486362,12.486362,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.42,38.37,57.21,42.51,8.333333333333334,1,1,0,0,13,7,4,1,1548,244270.41,109239.11,342050.56,100755.41,5675.2646,-58.014114,4075.0278 +13508,16479,29395,29394,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.8808641,8.7222052,0,16,-3,83.385971,0,2,2,2021,7,0,50,50,1,0,0,13.020747,13.020747,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.21,42.51,45.42,38.37,8.333333333333334,1,1,0,0,13,7,4,1,1548,244270.41,109239.11,342050.56,100755.41,5675.2646,-58.014114,4075.0278 +13509,16480,29396,-9,29398,29397,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-828.9447,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,2,3,-9,0,0,1,3,1,752.33331,207061.13,154617.88,161857.66,38395.965,7225.436,0,3527.3438 +13509,16480,29397,29398,-9,-9,1,1,43,0,3,0,2,2,-9,0,3,7.1298718,7.0574198,0,8,4,143.85951,0,-9,-9,2021,10,1,26,25,1,1,0,5.9847145,5.9847145,0,0,0,0,0,0,0,0,1,0,1,7.3206024,0,52.99,51.28,55.51,51.57,8.333333333333334,2,3,0,0,12,1,3,1,752.33331,207061.13,154617.88,161857.66,38395.965,7225.436,0,3527.3438 +13509,16480,29398,29397,-9,-9,1,0,39,0,3,0,2,2,-9,0,3,7.8315682,7.9895649,0,19,-4,-42.500309,0,-9,-9,2021,12,0,21,22,1,0,0,10.757477,10.757477,0,0,0,0,0,0,0,0,1,0,1,0,0,55.51,51.57,52.99,51.28,1.666666666666667,2,3,0,0,12,1,3,1,752.33331,207061.13,154617.88,161857.66,38395.965,7225.436,0,3527.3438 +13510,16481,29399,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,5,0,7.7849751,7.8320937,0,0,-1076.5839,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.936172,8.0124969,54.69,57.47,-9,-9,10,1,1,0,0,0,7,4,1,558,801348.63,205286.47,605320.06,0,0,0,2131.1758 +13511,16482,29400,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1006.599,0,3,3,2021,12,0,0,39,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,4,5,0,0,9,11,1,0,126,0,0,0,0,0,0,-800.21783 +13512,16483,29401,-9,-9,-9,1,1,21,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1084.5724,-9,-9,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,378,-44794.906,0,0,0,0,0,0 +13512,16484,29402,-9,-9,29405,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1069.3608,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13512,16484,29403,-9,-9,29405,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.44531,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13512,16484,29404,-9,-9,29405,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-913.86218,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13512,16484,29405,-9,-9,-9,1,1,38,0,3,0,2,2,0,0,2,0,0,0,0,0,-935.33655,-9,3,3,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.2,34.16,-9,-9,5,1,1,0,0,0,4,1,1,1441.25,-4837.3398,0,0,0,0,0,1676.526 +13513,16485,29406,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,6.8131781,6.9432225,0,0,-976.56616,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,7,1,1,0,1.5235437,7.1307549,33.77,37.71,-9,-9,3.333333333333333,1,1,0,0,0,11,3,1,42,365387.28,116145.27,275960,0,0,0,1164.5072 +13514,16486,29407,29408,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.113348,7.1008115,39,0,-43.535168,0,3,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6269009,6.8769941,50,47,52,47,7,1,1,0,0,6,4,2,1,553,476599.47,206986.53,161379.23,0,0,0,1301.9894 +13514,16486,29408,29407,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,5,0,59.192818,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52,47,50,47,7,1,1,0,0,0,4,2,1,553,476599.47,206986.53,161379.23,0,0,0,1301.9894 +13515,16487,29409,-9,-9,-9,1,0,103,0,0,0,3,3,-9,0,2,0,0,0,0,0,-845.35925,0,3,-9,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,0,17.301695,0,0,1,1,0,0,0,53.14,26.97,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,978,1606.1051,0,173185.94,0,0,0,1068.4324 +13516,16488,29410,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4428539,9.0322542,0,0,0,-1078.4512,-9,2,2,2021,11,0,35,0,1,0,0,14.985038,14.985038,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.25,48.45,-9,-9,3.333333333333333,3,4,0,0,7,8,5,1,733,32853.684,-186455.91,0,0,0,0,1466.3911 +13517,16489,29411,-9,-9,-9,1,1,49,0,2,0,2,2,-9,1,1,0,5.8465514,6.0406523,0,0,-980.09039,0,1,3,2021,15,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,5.4793587,0,35.62,25.98,-9,-9,1.666666666666667,1,1,0,1,7,2,2,0,222.66667,184707.7,95400.844,229506.86,39903.152,0,0,1870.0302 +13517,16489,29412,-9,-9,29411,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.26227,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,2,0,222.66667,184707.7,95400.844,229506.86,39903.152,0,0,1870.0302 +13517,16489,29413,-9,-9,29411,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-877.95953,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,2,0,222.66667,184707.7,95400.844,229506.86,39903.152,0,0,1870.0302 +13518,16490,29414,29415,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.08358,8.0350428,0,36,2,58.630398,0,3,-9,2021,23,11,40,38,1,11,0,14.657603,14.657603,.05,.05,0,0,0,0,0,0,1,0,1,1.3983845,0,33.66,40.31,32.3,54.21,5,1,1,0,0,13,2,4,1,984.5,248021.88,40770.445,192240.53,0,0,0,2330.6218 +13518,16490,29415,29414,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.5101724,7.7091951,0,36,-2,50.146542,0,3,2,2021,15,3,42,42,1,3,0,7.2258377,7.2258377,.05,.05,0,0,0,0,0,0,1,0,1,0,0,32.3,54.21,33.66,40.31,5,1,1,0,0,15,2,4,1,984.5,248021.88,40770.445,192240.53,0,0,0,2330.6218 +13518,16491,29416,-9,29415,29414,1,0,28,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1013.0519,0,2,2,2021,23,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,19.57,46.86,-9,-9,1.666666666666667,1,1,1,1,8,2,1,1,619,-10902.76,0,0,0,0,0,776.16724 +13519,16492,29417,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.7845955,8.5273781,0,0,0,-1059.9122,0,3,3,2021,8,0,38,38,1,0,0,18.629583,18.629583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,6,8,4,0,658,410815.78,278830.44,146169.98,30915.465,0,0,1666.5498 +13520,16493,29418,29419,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.7194834,8.6778774,4.9566183,10,-5,-59.17849,0,2,1,2021,16,5,45,50,1,5,0,18.163738,18.163738,0,0,0,0,0,0,0,0,1,1,0,4.9485297,5.3437853,46.5,58.26,47.55,44.33,5,1,1,0,1,12,10,5,0,485,447183.5,275762.19,429080.03,188494.77,12253.529,24541.129,3416.644 +13520,16493,29419,29418,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,6.7831235,6.4543953,10,5,-117.57768,0,-9,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3031735,6.9211946,47.55,44.33,46.5,58.26,8.333333333333334,1,1,0,0,12,10,5,0,485,447183.5,275762.19,429080.03,188494.77,12253.529,24541.129,3416.644 +13521,16494,29420,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,4,0,5.8254766,5.9656696,0,0,-882.28552,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2397065,5.8359179,46.76,49.87,-9,-9,10,1,1,0,0,0,4,2,0,768,219946.94,34479.633,0,0,0,0,856.13257 +13522,16495,29421,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,3,8.1887913,7.8404779,0,0,0,-1087.4662,0,-9,-9,2021,10,0,34,34,1,0,0,11.460067,11.460067,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.06,35.5,-9,-9,6.666666666666667,1,1,0,0,5,5,3,0,606.5,75524.539,148094.36,0,0,0,1093.0084,1553.6926 +13522,16495,29422,-9,29421,-9,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1082.4894,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,0,606.5,75524.539,148094.36,0,0,0,1093.0084,1553.6926 +13522,16496,29423,-9,29421,-9,1,1,20,0,1,0,2,2,-9,0,2,0,0,0,0,0,-967.2818,0,2,-9,2021,7,0,0,37,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.02,50.35,-9,-9,8.333333333333334,1,1,1,0,2,5,1,0,1745,0,0,0,0,0,0,1089.4702 +13523,16497,29424,-9,29425,29426,1,0,23,0,0,0,1,1,-9,0,4,6.5020156,7.1438689,5.1668806,0,0,-870.25153,-9,1,2,2021,12,0,15,0,1,0,1,6.3106031,6.3106031,0,0,0,0,0,0,0,0,0,0,0,5.6939492,0,44.05,55.39,-9,-9,6.666666666666667,1,1,0,0,2,6,2,1,392,107484.45,0,0,0,0,0,281.65265 +13523,16498,29425,29426,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,9.2932367,9.3671551,0,6,-6,35.854919,0,2,2,2021,8,0,47,62,1,0,0,32.318924,32.318924,0,0,0,0,0,0,0,2,0,0,0,4.544806,0,44.02,60.7,52.6,50.15,8.333333333333334,1,1,0,0,13,6,5,1,768,351903.06,5725.7266,212956.48,26109.301,12682.072,4499.7129,5992.9697 +13523,16498,29426,29425,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,0,7.7559519,8.1342001,6,6,67.12072,0,-9,-9,2021,10,1,0,20,4,1,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,7.1908355,7.9993458,52.6,50.15,44.02,60.7,8.333333333333334,1,1,0,0,12,6,5,1,768,351903.06,5725.7266,212956.48,26109.301,12682.072,4499.7129,5992.9697 +13524,16499,29427,29428,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.5221758,8.6199627,0,1,0,-28.306482,-9,-9,-9,2021,7,0,42,0,1,0,0,16.406569,16.406569,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,57.16,56.15,8.333333333333334,1,1,0,0,2,2,5,0,528.5,198548.45,86047.445,0,0,0,-1048.8239,2903.9561 +13524,16499,29428,29427,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,7.5518436,7.8752494,0,1,0,-12.526381,-9,-9,-9,2021,6,0,32,0,1,0,0,9.2459221,9.2459221,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,49.04,55.86,8.333333333333334,1,1,0,0,2,2,5,0,528.5,198548.45,86047.445,0,0,0,-1048.8239,2903.9561 +13525,16500,29429,29430,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.1665144,8.6257067,8.2059879,26,6,82.935265,0,2,2,2021,10,0,9,43,1,0,0,45.316074,45.316074,.05,.05,0,0,0,0,0,0,0,0,0,6.4142437,7.754858,48.87,58.55,54.69,57.47,8.333333333333334,1,1,0,0,12,6,5,1,1467,488562.34,215314.41,355092.81,76390.969,0,0,4384.7891 +13525,16500,29430,29429,-9,-9,1,0,48,0,0,0,2,2,-9,0,5,8.0476103,8.1099586,0,10,-6,-95.20652,0,-9,-9,2021,9,0,35,1,1,0,0,12.65471,12.65471,.05,.05,0,0,0,0,0,27,0,0,0,0,0,54.69,57.47,48.87,58.55,8.333333333333334,1,1,0,0,12,6,5,1,1467,488562.34,215314.41,355092.81,76390.969,0,0,4384.7891 +13525,16501,29431,-9,29430,29429,1,0,21,0,0,0,1,1,1,0,3,7.277308,7.1010671,0,0,0,-862.02051,-9,2,2,2021,21,7,40,0,1,7,1,3.919204,3.919204,.05,.05,0,0,0,0,0,0,0,0,0,0,0,25.99,60.99,-9,-9,3.333333333333333,1,1,0,0,5,6,3,1,412,94331.008,35187.59,0,0,0,0,-97.135338 +13526,16502,29432,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1001.5757,1,1,1,2021,2,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,8.9058123,0,49.91,58.02,-9,-9,8.333333333333334,1,1,0,0,9,8,1,1,1123,617146.13,31183.525,640551.69,0,0,4724.4727,3815.8975 +13527,16503,29433,-9,29435,29434,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-952.80792,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,11,3,1,683.66669,49543.164,-24871.064,139002.84,134473.08,5403.0361,3625.7324,1555.576 +13527,16503,29434,29435,-9,-9,1,1,24,1,1,0,2,2,-9,0,3,7.1365519,7.0766029,0,1,0,-44.140995,-9,-9,-9,2021,15,3,45,0,1,3,0,3.6981134,3.6981134,.05,.05,0,0,0,0,0,0,0,0,0,5.5921359,0,43.32,44.74,36.98,56.27,8.333333333333334,1,1,0,0,0,11,3,1,683.66669,49543.164,-24871.064,139002.84,134473.08,5403.0361,3625.7324,1555.576 +13527,16503,29435,29434,-9,-9,1,0,24,1,1,0,2,2,-9,0,5,8.062458,7.9181895,0,1,0,118.5444,0,-9,-9,2021,15,3,35,-9,1,3,0,8.5005913,8.5005913,0,0,0,0,0,0,0,0,0,0,0,0,0,36.98,56.27,43.32,44.74,5,1,1,0,0,8,11,3,1,683.66669,49543.164,-24871.064,139002.84,134473.08,5403.0361,3625.7324,1555.576 +13528,16504,29436,-9,-9,-9,1,0,22,1,0,0,1,1,-9,0,3,8.1459322,7.9973826,0,0,0,-1062.4893,0,-9,-9,2021,11,1,41,39,1,1,0,8.533123,8.533123,0,0,0,0,0,0,0,0,0,0,0,2.5929742,0,49.85,36.59,-9,-9,8.333333333333334,4,2,0,0,3,8,4,0,760,-4859.3125,0,0,0,0,0,1514.5151 +13528,16504,29437,-9,29436,-9,1,0,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-868.49146,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,8,4,0,760,-4859.3125,0,0,0,0,0,1514.5151 +13529,16505,29438,29440,-9,-9,1,1,45,0,3,0,2,2,-9,0,3,8.1403313,8.2452745,0,12,-1,38.803017,0,-9,-9,2021,12,2,45,45,1,2,0,9.3937235,9.3937235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.49,49.64,51.67,50.46,8.333333333333334,1,1,0,0,13,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29439,-9,29440,29438,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1146.6921,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29440,29438,-9,-9,1,0,46,0,3,0,2,2,-9,0,3,6.470757,6.4162216,0,30,1,69.790672,0,2,2,2021,12,0,10,84,1,0,0,7.6743236,7.6743236,0,0,0,0,0,0,0,0,1,1,0,0,0,51.67,50.46,44.49,49.64,8.333333333333334,1,1,0,0,3,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29441,-9,29440,29438,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-864.75232,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13529,16505,29442,-9,29440,29438,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-982.92633,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,0,0,0,5,3,1,697.79999,72773.367,44094.715,0,0,0,0,2048.1362 +13530,16506,29443,29444,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,11,-4,49.609272,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1952175,0,43.79,32.94,48.79,39.82,6.666666666666667,2,3,0,0,0,9,2,1,484,642129.5,242224.41,445230,0,0,0,1447.27 +13530,16506,29444,29443,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.8547902,6.51369,52,4,-14.275516,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6043748,7.1921964,48.79,39.82,43.79,32.94,6.666666666666667,2,3,0,0,0,9,2,1,484,642129.5,242224.41,445230,0,0,0,1447.27 +13531,16507,29445,29446,-9,-9,1,0,30,0,2,0,2,2,-9,0,3,7.5570855,7.3347783,0,12,-2,44.50803,0,2,2,2021,26,11,42,30,1,11,0,4.65417,4.65417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.3,48.28,48.45,57.49,8.333333333333334,1,1,0,0,5,4,3,0,1025,47713.816,74447.211,0,0,1441.6377,1522.2336,2531.0745 +13531,16507,29446,29445,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,8.2305508,8.0439367,0,12,2,-26.712944,-9,2,2,2021,8,1,48,0,1,1,0,6.5198841,6.5198841,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.45,57.49,41.3,48.28,5,1,1,0,0,9,4,3,0,1025,47713.816,74447.211,0,0,1441.6377,1522.2336,2531.0745 +13531,16507,29447,-9,29445,29446,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.8551,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,3,0,1025,47713.816,74447.211,0,0,1441.6377,1522.2336,2531.0745 +13532,16508,29448,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,8.4988537,8.7281733,3.6946254,0,0,-939.98236,0,2,3,2021,7,0,35,39,1,0,0,14.804473,14.804473,0,0,0,0,0,0,0,0,0,0,0,4.5127935,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,547,56896.418,0,0,0,20283.043,10167.146,1437.7295 +13533,16509,29449,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,1,0,7.21135,7.0165296,0,0,-909.29462,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,43.198318,0,0,1,1,0,0,7.1909518,64.58,4.48,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,591,222368.61,82934.594,117215.88,0,0,0,998.51337 +13534,16510,29450,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,4,0,5.2379642,5.0165491,0,0,-889.50854,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6206214,5.1769605,52.43,55.57,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,230,320299.34,137031.92,0,0,0,0,1099.6533 +13535,16511,29451,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,4,7.6745901,7.3913999,0,0,0,-1139.1754,0,2,2,2021,11,1,28,33,1,1,0,8.7064896,8.7064896,.05,.05,0,0,0,0,0,0,1,0,1,0,0,52.23,55.6,-9,-9,8.333333333333334,1,1,0,1,11,9,2,1,784,346648.5,142294.86,423600.63,108477.13,0,0,1390.4424 +13535,16511,29452,-9,29451,-9,1,1,14,0,1,1,3,0,-9,0,1,0,0,0,0,0,-956.23743,-9,1,-9,2021,20,0,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32,33,-9,-9,3,1,1,-9,0,0,9,2,1,784,346648.5,142294.86,423600.63,108477.13,0,0,1390.4424 +13535,16512,29453,-9,29451,-9,1,0,19,0,1,0,2,2,1,0,4,7.2746482,6.7623196,0,0,0,-1004.355,-9,1,-9,2021,26,11,24,0,1,11,1,7.4728341,7.4728341,.05,.05,0,0,0,0,0,0,1,0,1,0,0,25.2,66.67,-9,-9,3.333333333333333,1,1,0,0,2,9,3,1,436,12014.847,77412.242,0,0,1936.2733,0,707.26996 +13536,16513,29454,29455,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,8.5834942,8.0536776,0,8,-3,61.612793,0,3,-9,2021,10,0,38,48,1,0,0,12.347943,12.347943,.05,.05,0,0,0,0,0,0,0,0,0,3.6777263,0,62.57,40.11,62.18,20.12,8.333333333333334,1,1,0,0,9,7,4,0,446.5,892366.63,448406.81,329026.69,0,101.63159,0,2369.3225 +13536,16513,29455,29454,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,7.2845345,7.2765121,0,8,3,-63.273514,0,-9,-9,2021,10,0,27,27,1,0,0,8.3568964,8.3568964,.05,.05,0,0,0,0,0,0,0,0,0,3.3008056,0,62.18,20.12,62.57,40.11,8.333333333333334,1,1,0,0,9,7,4,0,446.5,892366.63,448406.81,329026.69,0,101.63159,0,2369.3225 +13537,16514,29456,-9,29458,-9,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.61316,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.63955814,0,1,0,1,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,1,1,2617,22979.648,0,0,0,1768.9198,0,221.26405 +13537,16514,29457,-9,29458,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.82343,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,1,1,2617,22979.648,0,0,0,1768.9198,0,221.26405 +13537,16514,29458,-9,-9,-9,1,0,27,0,2,0,2,2,-9,0,3,0,0,0,0,0,-863.13184,0,2,1,2021,12,1,0,26,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.92,47.22,-9,-9,8.333333333333334,1,1,0,0,10,5,1,1,2617,22979.648,0,0,0,1768.9198,0,221.26405 +13538,16515,29459,29460,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.5488839,7.5303059,59,1,78.237274,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0500934,7.4500599,59.91,42.65,54.96,53.17,6.666666666666667,1,1,0,0,0,6,3,1,4642.5,429921.94,183188.78,157347.34,0,0,0,3014.4543 +13538,16515,29460,29459,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.2722468,6.3031521,59,-1,-125.70509,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8378172,6.2308087,54.96,53.17,59.91,42.65,8.333333333333334,1,1,0,0,8,6,3,1,4642.5,429921.94,183188.78,157347.34,0,0,0,3014.4543 +13539,16516,29461,29462,-9,-9,1,0,27,1,2,0,2,2,-9,0,3,0,0,0,5,-4,13.437802,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,40.2,36.82,60.29,52.11,6.666666666666667,1,1,0,0,0,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13539,16516,29462,29461,-9,-9,1,1,31,1,2,0,2,2,-9,0,3,7.5193653,7.6227541,0,5,4,12.996341,0,-9,-9,2021,9,1,25,50,1,1,0,9.4924965,9.4924965,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.29,52.11,40.2,36.82,8.333333333333334,1,1,0,0,7,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13539,16516,29463,-9,29461,29462,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.8186,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13539,16516,29464,-9,29461,29462,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1127.0133,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,0,900.75,14253.702,-12134.792,0,0,4114.4814,0,2162.7793 +13540,16517,29465,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.5055656,8.6260719,0,4,-6,.45432928,0,3,2,2021,24,12,38,38,1,12,0,20.938404,20.938404,.05,.05,0,0,0,0,0,0,0,0,0,3.9681041,0,32.38,61.1,46.54,48.69,10,1,1,0,0,11,5,5,1,1756,1522744.3,1333365.4,49627.117,0,0,0,1893.9819 +13540,16518,29466,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,9.0604563,9.1492891,0,4,6,152.42795,0,3,2,2021,9,0,55,43,1,0,0,15.981856,15.981856,.05,.05,0,0,0,0,0,0,0,0,0,2.5746117,0,46.54,48.69,32.38,61.1,6.666666666666667,1,1,0,0,11,5,5,1,2632,342145.59,234353.03,157638.22,0,0,1789.2551,2391.1226 +13541,16519,29467,29468,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,8.3032217,8.1390638,0,10,-2,5.6540027,0,-9,-9,2021,10,0,46,39,1,0,0,9.8930235,9.8930235,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.27,48.86,40.58,60.95,6.666666666666667,1,1,0,0,9,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13541,16519,29468,29467,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.4738674,8.3597336,0,10,2,-22.658236,0,1,2,2021,11,1,38,38,1,1,0,13.716633,13.716633,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.58,60.95,50.27,48.86,5,1,1,0,0,11,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13541,16519,29469,-9,29468,29467,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.07037,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13541,16519,29470,-9,29468,29467,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.3503,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,4,1,757.5,-16544.016,25783.846,0,0,0,0,3934.3149 +13542,16520,29471,-9,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,7.6222148,7.5794201,0,0,0,-923.43463,0,3,2,2021,10,0,30,31,1,0,0,7.8207712,7.8207712,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,3,4,0,0,8,8,3,0,263,195202.67,262599.81,0,0,0,0,1468.8173 +13542,16521,29472,-9,29471,-9,1,1,18,0,0,1,3,0,0,0,4,0,0,0,0,0,-925.92761,-9,3,-9,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,0,0,0,8,1,0,2319,0,0,0,0,0,0,0 +13543,16522,29473,-9,-9,-9,1,0,23,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1030.7007,-9,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,1,0,1,8,1,0,472.5,-49303.543,8389.4766,0,0,0,0,2097.6519 +13543,16522,29474,-9,29473,-9,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-993.73468,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,3,4,-9,0,0,8,1,0,472.5,-49303.543,8389.4766,0,0,0,0,2097.6519 +13544,16523,29475,29476,-9,-9,1,0,63,0,0,0,3,3,-9,0,2,0,0,0,4,-3,44.724182,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,56.74,33.83,38.88,31.2,5,1,1,0,0,4,6,3,1,1093,-98133.813,24403.711,0,0,11700.469,4798.3491,1738.2056 +13544,16523,29476,29475,-9,-9,1,1,66,0,0,0,2,2,-9,1,1,0,7.7076998,7.5514598,4,3,61.094646,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,1,0,126.45252,0,0,1,1,0,0,7.6109705,38.88,31.2,56.74,33.83,5,1,1,0,0,0,6,3,1,1093,-98133.813,24403.711,0,0,11700.469,4798.3491,1738.2056 +13545,16524,29477,29478,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,6.7070694,6.8800302,48,-1,-60.465778,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6342607,6.6293554,64.64,35.4,46.85,32.5,8.333333333333334,1,1,0,0,6,1,2,1,987.5,550587.13,140349.34,335074.22,0,1847.6776,0,1413.6816 +13545,16524,29478,29477,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,0,0,48,1,59.711864,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.4952936,0,46.85,32.5,64.64,35.4,5,1,1,0,0,3,1,2,1,987.5,550587.13,140349.34,335074.22,0,1847.6776,0,1413.6816 +13546,16525,29479,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,8.7557163,8.4263258,0,0,-1098.6556,0,2,1,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0888662,8.6354494,46.27,57.3,-9,-9,8.333333333333334,1,1,0,0,8,1,5,1,932,1168633.8,928950.19,-15578.562,251.9742,0,0,4032.0938 +13547,16526,29480,-9,-9,-9,1,0,54,0,0,0,1,1,-9,1,2,8.1980724,8.2329006,0,0,0,-958.45374,0,-9,3,2021,13,3,26,24,1,3,0,18.050777,18.050777,.05,.05,0,0,0,0,0,0,1,1,0,2.3820879,0,44.48,39.77,-9,-9,8.333333333333334,1,1,0,0,10,12,4,1,244,814107.75,851425.44,105182.24,108157.38,0,0,2397.3867 +13548,16527,29481,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1004.5477,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,27.419226,1.1446016,243.25493,0,1,1,0,0,0,60.48,24.97,-9,-9,8.333333333333334,1,1,0,1,0,2,1,0,629,248422.05,0,143019.61,0,0,0,1222.7583 +13549,16528,29482,29484,-9,-9,1,0,47,0,2,0,2,2,-9,1,3,0,0,0,24,-2,-32.517727,0,2,2,2021,6,1,0,8,3,1,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,2.8083112,0,60.21,34.28,48,51,6.666666666666667,1,1,0,0,8,1,3,1,550,129552.2,70171.695,69863.328,28995.977,5046.9238,2021.2303,1930.0519 +13549,16528,29483,-9,29482,29484,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.1183,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,550,129552.2,70171.695,69863.328,28995.977,5046.9238,2021.2303,1930.0519 +13549,16528,29484,29482,-9,-9,1,1,49,0,2,0,2,2,-9,0,3,8.416482,8.2522573,0,25,2,79.385826,0,2,2,2021,11,0,45,44,1,2,0,8.3606215,8.3606215,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,51,60.21,34.28,7,1,1,0,0,1,1,3,1,550,129552.2,70171.695,69863.328,28995.977,5046.9238,2021.2303,1930.0519 +13550,16529,29485,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,1,0,6.2856708,6.6534042,0,0,-1024.1077,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3120389,6.5288191,56.73,12.41,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,169,218465.59,51411.957,212593.17,0,0,0,779.45483 +13551,16530,29486,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,0,0,0,0,-982.60956,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0325966,0,64.57000000000001,36.45,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,684,70961.211,0,257958.97,0,0,0,1475.2656 +13552,16531,29487,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,0,0,-971.42279,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,325,163190,0,216249.28,0,0,985.15247,1086.1942 +13553,16532,29488,-9,-9,-9,1,1,93,0,0,0,3,3,-9,0,4,0,6.8690968,6.8423824,0,0,-1021.3191,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9547844,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,240,268299.5,58088.559,45717.242,0,0,0,1761.3378 +13554,16533,29489,-9,-9,-9,1,1,19,0,0,0,2,2,0,0,2,0,0,0,0,0,-1022.1692,-9,-9,-9,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,6.666666666666667,1,1,0,0,0,11,1,0,190,-76025.18,0,0,0,0,0,607.32135 +13555,16534,29490,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.210741,8.4669838,0,0,0,-965.28766,0,3,3,2021,9,1,37,37,1,1,0,15.319078,15.319078,.05,.05,.05,0,0,0,0,0,1,1,0,4.3295226,0,45.92,53.14,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,986,176800.89,137753,83472.383,0,0,0,1529.4847 +13556,16535,29491,-9,29493,29492,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1185.3699,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,2,4,1,1228.6666,754819.13,772839.94,131272.86,98315.367,1013.331,777.47107,4544.1055 +13556,16535,29492,29493,-9,-9,1,1,40,1,1,0,2,2,-9,0,1,8.2661028,8.3425074,0,12,2,-125.24313,0,3,3,2021,26,9,50,50,1,9,0,11.819798,11.819798,.05,.05,0,0,0,0,0,0,1,1,0,3.0528014,0,16.12,49.52,38.28,57.07,3.333333333333333,1,1,0,0,9,2,4,1,1228.6666,754819.13,772839.94,131272.86,98315.367,1013.331,777.47107,4544.1055 +13556,16535,29493,29492,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,8.1122942,7.9439931,0,12,-2,-60.36636,0,-9,-9,2021,14,3,38,38,1,3,0,10.330207,10.330207,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.28,57.07,16.12,49.52,6.666666666666667,1,1,0,0,11,2,4,1,1228.6666,754819.13,772839.94,131272.86,98315.367,1013.331,777.47107,4544.1055 +13557,16536,29494,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.2575054,8.248745,1.7920554,0,0,-964.88837,0,3,3,2021,9,0,39,39,1,0,0,10.980584,10.980584,.05,.05,0,0,0,0,0,0,0,0,0,0,2.6158772,41.6,53.07,-9,-9,8.333333333333334,1,1,0,0,10,2,4,1,606,-6403.6646,-49341.09,47196.793,3244.1494,0,0,1538.027 +13557,16537,29495,-9,-9,29494,1,1,30,0,0,0,2,2,-9,0,3,7.7653408,7.9281006,0,0,0,-1078.5819,0,-9,3,2021,20,8,39,39,1,8,1,7.3921642,7.3921642,0,0,0,0,0,0,0,0,0,0,0,0,0,41.28,57.99,-9,-9,3.333333333333333,1,1,0,0,10,2,4,1,159,12012.317,0,119130.51,89309.922,0,0,1307.4083 +13558,16538,29496,29497,-9,-9,1,1,60,0,0,0,2,2,-9,0,1,0,5.9769692,5.8465657,38,2,148.02722,0,2,2,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4016638,5.4881825,25.35,32.03,43.12,58.55,3.333333333333333,1,1,0,0,1,9,2,1,6203.5,750757.44,216243.72,269789.56,0,0,0,1066.2955 +13558,16538,29497,29496,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,0,0,38,-2,42.535583,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.12,58.55,25.35,32.03,6.666666666666667,1,1,0,0,8,9,2,1,6203.5,750757.44,216243.72,269789.56,0,0,0,1066.2955 +13559,16539,29498,29500,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,9.7006083,9.6071615,0,28,3,93.430458,0,2,2,2021,17,5,50,55,1,5,0,45.513203,45.513203,.05,.05,.05,0,0,0,0,0,0,0,0,.47266808,0,53.86,44.13,53.54,41.65,6.666666666666667,1,1,0,0,8,8,5,1,823.66669,997021.63,578300.44,372258.75,96505.852,1075.4839,2693.0811,10014.711 +13559,16539,29499,-9,29500,29498,1,1,10,0,1,1,3,0,-9,0,3,0,0,0,0,0,-915.93115,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,8,5,1,823.66669,997021.63,578300.44,372258.75,96505.852,1075.4839,2693.0811,10014.711 +13559,16539,29500,29498,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.9237995,8.9627008,0,28,-3,18.734833,0,2,1,2021,9,0,28,28,1,0,0,26.226938,26.226938,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.54,41.65,53.86,44.13,6.666666666666667,1,1,0,0,9,8,5,1,823.66669,997021.63,578300.44,372258.75,96505.852,1075.4839,2693.0811,10014.711 +13559,16540,29501,-9,29500,29498,1,1,21,0,1,1,2,0,0,0,2,0,0,0,0,0,-1081.3752,-9,1,1,2021,13,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.77,44.35,-9,-9,6.666666666666667,1,1,0,0,2,8,1,1,473,0,0,0,0,0,0,-77.566856 +13559,16541,29502,-9,29500,29498,1,0,19,0,1,1,2,0,0,0,5,0,0,0,0,0,-980.61316,-9,1,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,268,-55278.441,0,0,0,0,188.99576,0 +13560,16542,29503,29507,-9,-9,1,1,26,1,3,0,2,2,-9,0,4,0,0,0,2,-1,-101.78941,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,48.93,47.85,7,1,1,0,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29504,-9,29507,29503,1,1,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.2185,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29505,-9,29507,29503,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.0803,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29506,-9,29507,29503,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-959.13251,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13560,16542,29507,29503,-9,-9,1,0,27,1,3,0,2,2,0,0,3,0,5.7407184,6.1921659,2,1,102.70327,-9,2,1,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4139013,0,48.93,47.85,49,58,8.333333333333334,4,2,0,0,0,6,2,0,368.60001,-41902.199,0,0,0,0,0,2121.668 +13561,16543,29508,29509,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,8.3464212,8.5553274,0,1,1,-42.119289,-9,-9,-9,2021,27,12,37,0,1,12,0,13.037674,13.037674,.05,.05,0,0,0,0,0,0,1,1,0,0,0,19.09,41.37,34.57,50.44,1.666666666666667,1,1,0,1,8,4,5,1,1729,617871.06,220370.69,208668.03,0,7741.6821,0,4214.8511 +13561,16543,29509,29508,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.0389452,7.9541516,0,21,-1,146.40204,-9,2,3,2021,21,9,40,0,1,9,0,10.010931,10.010931,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.57,50.44,19.09,41.37,1.666666666666667,1,1,0,1,15,4,5,1,1729,617871.06,220370.69,208668.03,0,7741.6821,0,4214.8511 +13562,16544,29510,29511,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.4580088,8.3645611,7,0,4.5716839,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.5126982,8.0128975,57.06,57.76,30.53,48.59,8.333333333333334,1,1,0,0,10,11,4,1,782.5,2074002.8,1032624.3,295604.81,0,0,0,3112.5461 +13562,16544,29511,29510,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.4844995,6.3540645,7,0,-148.61514,0,-9,-9,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4803014,6.3893266,30.53,48.59,57.06,57.76,8.333333333333334,1,1,0,0,13,11,4,1,782.5,2074002.8,1032624.3,295604.81,0,0,0,3112.5461 +13563,16545,29512,29513,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,7.5612292,7.978981,7,-2,102.07507,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1368241,7.7648864,51.24,58.84,54.79,55.86,8.333333333333334,1,1,0,0,0,9,3,1,872.5,1055645,122142.08,654051.31,0,0,0,2699.5 +13563,16545,29513,29512,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,0,0,7,2,71.729233,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7258425,0,54.79,55.86,51.24,58.84,8.333333333333334,1,1,0,0,0,9,3,1,872.5,1055645,122142.08,654051.31,0,0,0,2699.5 +13564,16546,29514,29515,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,7.9958787,7.7211967,0,32,-5,28.723181,0,2,2,2021,3,0,36,36,1,0,0,7.0388303,7.0388303,.05,.05,0,0,0,0,0,7,0,0,0,0,0,54.2,57.49,57.33,53.46,10,1,1,0,0,10,8,5,1,1375,1727373,1401297.8,279829.13,94618.875,16816.676,0,3833.293 +13564,16546,29515,29514,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,9.0578222,8.7641201,0,32,5,-56.818134,0,3,3,2021,10,0,55,35,1,0,0,15.630754,15.630754,.05,.05,0,0,0,0,0,0,0,0,0,.49620914,0,57.33,53.46,54.2,57.49,1.666666666666667,1,1,0,0,11,8,5,1,1375,1727373,1401297.8,279829.13,94618.875,16816.676,0,3833.293 +13564,16547,29516,-9,29514,29515,1,1,25,0,0,0,2,2,-9,0,4,8.8448925,8.4970989,0,0,0,-1196.0891,0,2,2,2021,11,3,55,55,1,3,1,9.6075449,9.6075449,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,300,-55426.684,0,0,0,0,0,1711.8984 +13564,16548,29517,-9,29514,29515,1,0,22,0,0,0,2,2,-9,0,2,8.0571365,8.164794,0,0,0,-984.93927,0,2,2,2021,19,5,45,45,1,5,1,7.0952816,7.0952816,0,0,0,0,0,0,0,0,0,0,0,.5838719,0,23.46,62.28,-9,-9,6.666666666666667,1,1,0,0,5,8,4,1,920,-201324.22,0,0,0,12126.251,-45.521919,1352.6559 +13564,16549,29518,-9,29514,29515,1,0,19,0,0,0,2,2,-9,0,3,7.5663095,7.4154892,0,0,0,-932.43506,0,2,2,2021,27,11,33,33,1,11,1,6.5049844,6.5049844,.05,.05,0,0,0,0,0,0,0,0,0,1.8088813,0,18.05,59.4,-9,-9,1.666666666666667,1,1,0,0,3,8,3,1,2074,57775.594,20195.291,0,0,0,0,1212.5748 +13565,16550,29519,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,5,7.7193956,7.9265852,0,0,0,-1008.2594,0,-9,-9,2021,8,0,35,32,1,0,0,8.3319883,8.3319883,0,0,0,0,0,0,0,0,0,0,0,1.2583551,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,4,10,3,0,823,-7143.3628,0,0,0,0,1209.4286,1609.4441 +13566,16551,29520,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,7.2816639,7.6070151,0,0,-1075.0878,0,-9,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.436594,46.95,35.43,-9,-9,6.666666666666667,1,1,0,0,0,5,3,1,1304,-98457.734,0,151958.11,0,0,0,515.29358 +13567,16552,29521,29523,-9,-9,1,0,41,0,0,0,2,2,-9,0,5,7.0864053,6.9808016,0,6,-2,63.894478,0,3,3,2021,6,0,60,70,1,0,0,1.7722057,1.7722057,0,0,0,0,0,0,0,0,1,1,0,0,0,52.21,59.91,50.68,53.7,8.333333333333334,1,1,0,0,7,13,4,1,638,88525.781,13505.531,0,0,0,432.0842,1842.4382 +13567,16552,29522,-9,29521,29523,1,1,16,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1072.0164,-9,2,3,2021,1,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.72,58.13,-9,-9,10,1,1,0,0,1,13,4,1,638,88525.781,13505.531,0,0,0,432.0842,1842.4382 +13567,16552,29523,29521,-9,-9,1,1,43,0,0,0,3,3,-9,0,3,8.4459496,8.3979998,0,6,2,-138.73521,0,3,3,2021,11,0,45,40,1,0,0,9.0717192,9.0717192,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.68,53.7,52.21,59.91,8.333333333333334,1,1,0,0,7,13,4,1,638,88525.781,13505.531,0,0,0,432.0842,1842.4382 +13567,16553,29524,-9,29521,29523,1,0,22,0,0,0,1,1,1,0,3,7.9841814,7.9257965,0,0,0,-1073.0034,-9,2,3,2021,9,0,38,0,1,0,1,7.9995346,7.9995346,0,0,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,232,-146903.73,28146.52,0,0,0,0,1118.1627 +13567,16554,29525,-9,29521,29523,1,1,20,0,0,0,2,2,1,0,3,6.6021914,6.6930127,0,0,0,-1016.3256,-9,2,3,2021,10,0,16,0,1,0,1,6.9653878,6.9653878,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,13,2,1,294,-84.436409,0,0,0,0,0,284.25583 +13568,16555,29526,-9,29529,29528,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2573,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13568,16555,29527,-9,29529,29528,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.77289,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13568,16555,29528,29529,-9,-9,1,1,52,0,2,0,2,2,-9,0,5,8.3342896,8.4427767,0,22,10,35.383858,0,3,3,2021,6,0,50,46,1,0,0,9.7910099,9.7910099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,47.55,55.06,8.333333333333334,1,1,0,0,6,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13568,16555,29529,29528,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,7.5699077,7.3744969,0,22,-10,-67.964912,0,2,2,2021,9,0,28,28,1,0,0,8.5292816,8.5292816,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.55,55.06,57.06,57.76,6.666666666666667,1,1,0,0,8,12,3,1,454,718059.75,618625,222030.19,23436.182,0,0,2715.8008 +13569,16556,29530,-9,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,7.836441,8.4704361,7.9378381,0,0,-941.89972,0,-9,-9,2021,4,0,15,20,1,0,0,16.34828,16.34828,0,0,.05,0,0,0,0,0,0,0,0,6.1520119,7.6025624,57.06,57.76,-9,-9,10,1,1,0,0,10,4,5,1,351,81647.078,123412.77,145192.72,0,0,0,2783.6995 +13570,16557,29531,-9,-9,-9,1,0,21,0,1,0,2,2,0,0,5,0,0,0,0,0,-913.59583,-9,1,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,6,7,1,1,929,-1714.5023,0,0,0,0,0,-102.79343 +13571,16558,29532,29533,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,0,0,12,3,-51.386806,0,2,2,2021,13,2,0,0,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.9650657,0,44.06,48.65,57.33,34.69,6.666666666666667,1,1,0,0,0,12,5,1,515,1221821.4,980127.19,193246.97,0,0,0,3667.9097 +13571,16558,29533,29532,-9,-9,1,0,60,0,0,0,1,1,-9,0,2,9.1385221,9.421236,0,12,-3,30.200893,-9,2,-9,2021,7,0,83,0,1,0,0,14.543852,14.543852,0,0,0,0,0,0,0,0,0,0,0,4.2000604,0,57.33,34.69,44.06,48.65,8.333333333333334,1,1,0,0,13,12,5,1,515,1221821.4,980127.19,193246.97,0,0,0,3667.9097 +13572,16559,29534,-9,29535,-9,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-945.08478,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,4,2,-9,0,0,13,2,1,529.33331,52752.238,12765.767,0,0,0,-125.43552,1353.4738 +13572,16559,29535,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.8970122,6.911593,0,0,0,-1057.3542,0,1,1,2021,7,0,25,20,1,0,0,5.5158277,5.5158277,0,0,0,0,0,0,0,101,1,1,0,0,0,52.4,55.58,-9,-9,8.333333333333334,1,1,0,1,4,13,2,1,529.33331,52752.238,12765.767,0,0,0,-125.43552,1353.4738 +13572,16559,29536,-9,29535,-9,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1084.2086,-9,1,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,4,2,-9,0,0,13,2,1,529.33331,52752.238,12765.767,0,0,0,-125.43552,1353.4738 +13573,16560,29537,29538,-9,-9,1,0,58,0,0,0,1,1,-9,0,2,8.3664026,8.4778891,0,40,-3,111.23016,0,3,3,2021,26,10,53,43,1,10,0,11.098694,11.098694,0,0,.05,0,0,0,0,0,0,0,0,0,0,24.99,44.43,57.06,57.76,3.333333333333333,4,2,0,0,11,9,5,1,1218.5,1198220.8,155611.78,492942.19,0,0,0,8073.4067 +13573,16560,29538,29537,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,9.4968138,10.173459,7.3248267,40,3,83.050995,0,3,3,2021,8,0,60,50,1,0,0,35.315727,35.315727,.05,.05,.05,0,0,0,0,0,0,0,0,3.7668023,7.8727503,57.06,57.76,24.99,44.43,8.333333333333334,1,1,0,0,11,9,5,1,1218.5,1198220.8,155611.78,492942.19,0,0,0,8073.4067 +13574,16561,29539,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.3213692,7.4729905,0,0,-1007.9169,0,2,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0317597,7.5510888,54.59,46.29,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,330,522528.66,45899.832,383402.06,0,0,0,1421.8011 +13575,16562,29540,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,4,9.070343,9.2175303,0,0,0,-1026.9747,0,1,2,2021,7,0,40,45,1,0,0,21.529091,21.529091,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,241,-99999.555,112056.87,196517.36,103393.27,0,0,4214.7651 +13576,16563,29541,-9,29544,29545,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1041.1633,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,1,1,-9,0,0,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29542,-9,29544,29545,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-835.71808,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29543,-9,29544,29545,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-940.44061,-9,2,2,2021,19,7,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.47,56.81,-9,-9,6.666666666666667,1,1,0,0,0,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29544,29545,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.8788595,7.6370082,0,21,1,-64.121643,0,3,3,2021,10,0,32,32,1,0,0,9.3507175,9.3507175,0,0,0,0,0,0,0,0,1,1,0,4.8393044,0,45.91,59.89,55.6,47.8,6.666666666666667,1,1,0,0,11,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13576,16563,29545,29544,-9,-9,1,1,40,0,3,0,2,2,-9,0,2,8.1332464,7.9677176,0,21,-1,-62.129108,0,3,3,2021,7,1,40,40,1,1,0,9.6695242,9.6695242,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.6,47.8,45.91,59.89,8.333333333333334,1,1,0,0,6,4,3,1,784.40002,125206.45,-17417.156,221056.14,149891.47,0,1576.9443,3855.4529 +13577,16564,29546,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-938.69275,0,3,3,2021,17,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.50027227,0,48.7,19.5,-9,-9,8.333333333333334,1,1,0,1,0,5,1,0,1103,-229984.02,0,0,0,0,0,2041.0994 +13578,16565,29547,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,8.3910007,8.5153799,0,0,0,-980.4292,0,3,2,2021,10,0,47,44,1,0,0,12.594264,12.594264,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,9,12,5,1,588,23058.215,22200.846,165048.58,50509.492,0,0,2197.6138 +13579,16566,29548,29550,-9,-9,1,1,38,0,1,0,1,1,-9,0,4,8.8691702,8.5761967,0,14,-7,81.30114,0,2,1,2021,11,2,75,40,1,2,0,10.631632,10.631632,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,60.18,51.73,58.82,8.333333333333334,3,4,0,0,8,12,5,1,555,414859.28,110389.42,0,0,0,0,3863.144 +13579,16566,29549,-9,29550,29548,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.9346,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,555,414859.28,110389.42,0,0,0,0,3863.144 +13579,16566,29550,29548,-9,-9,1,0,45,0,1,0,1,1,-9,0,5,8.2675638,8.3998079,0,8,7,-23.066839,0,-9,-9,2021,9,1,19,15,1,1,0,28.119209,28.119209,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,48.28,60.18,8.333333333333334,1,1,0,0,11,12,5,1,555,414859.28,110389.42,0,0,0,0,3863.144 +13580,16567,29551,29552,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,0,0,48,5,32.33197,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,26.374126,0,0,1,1,0,5.4784393,0,63.66,46.31,45.32,61.53,10,1,1,0,0,6,7,2,1,220,4342434.5,2276174.5,1128894.1,0,0,0,3139.9243 +13580,16567,29552,29551,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.2859979,4.9822397,48,-5,-40.30117,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.4326258,5.507575,45.32,61.53,63.66,46.31,8.333333333333334,1,1,0,0,0,7,2,1,220,4342434.5,2276174.5,1128894.1,0,0,0,3139.9243 +13581,16568,29553,29554,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,0,0,11,23,0,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,38.98,44.11,50.85,52.08,5,1,1,0,0,0,9,1,0,1032,619091.5,0,512139.19,0,0,0,1724.5801 +13581,16568,29554,29553,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,23,-23,0,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50.85,52.08,38.98,44.11,1.666666666666667,1,1,0,0,7,9,1,0,1032,619091.5,0,512139.19,0,0,0,1724.5801 +13582,16569,29555,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,3.8837829,3.9987252,0,0,-934.62836,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.8127951,4.0050282,56.29,44.49,-9,-9,8.333333333333334,1,1,0,0,11,7,2,1,517,55312.285,0,88680.789,0,0,0,1182.1549 +13583,16570,29556,29558,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,0,0,0,2,-11,-28.411236,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51.5,45.52,7,2,3,0,0,0,6,3,1,895.66669,42751.469,-42423.594,195623.06,111592.55,0,0,1595.5055 +13583,16570,29557,-9,29556,29558,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1084.8008,-9,1,3,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,6,3,1,895.66669,42751.469,-42423.594,195623.06,111592.55,0,0,1595.5055 +13583,16570,29558,29556,-9,-9,1,1,44,1,1,0,3,3,-9,0,3,8.0970707,8.3348732,0,2,11,55.455139,0,3,2,2021,11,0,55,41,1,2,0,7.9897928,7.9897928,0,0,0,0,0,0,0,0,1,1,0,0,0,51.5,45.52,49,56,3.333333333333333,2,3,0,1,9,6,3,1,895.66669,42751.469,-42423.594,195623.06,111592.55,0,0,1595.5055 +13584,16571,29559,29560,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.0434079,6.3933244,57,-1,18.448725,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,5.2264748,0,0,1,1,0,4.2657018,5.9954681,44.33,35.37,47.93,49.39,8.333333333333334,1,1,0,0,1,6,3,1,426,959010.88,574935.5,250314.91,0,11233.217,1477.3756,3432.9636 +13584,16571,29560,29559,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9138775,8.1614923,57,1,-52.676533,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,8.0809774,7.5387926,47.93,49.39,44.33,35.37,8.333333333333334,1,1,0,0,0,6,3,1,426,959010.88,574935.5,250314.91,0,11233.217,1477.3756,3432.9636 +13585,16572,29561,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,3.4608099,3.6009121,0,0,-867.97314,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.864918,3.619904,43.66,21.99,-9,-9,3.333333333333333,1,1,0,0,0,5,2,1,1541,105455.16,0,122177.5,0,0,0,1125.8987 +13586,16573,29562,-9,29563,-9,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.58148,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,512,101219.39,-16601.186,163826.78,97538.398,0,0,1492.8999 +13586,16573,29563,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,4,7.3617907,7.2674928,0,0,0,-980.46942,0,3,2,2021,11,0,20,0,1,0,0,6.0331974,6.0331974,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.26,59.43,-9,-9,6.666666666666667,1,1,0,0,9,13,2,1,512,101219.39,-16601.186,163826.78,97538.398,0,0,1492.8999 +13586,16574,29564,-9,29563,-9,1,1,21,0,1,0,2,2,-9,0,5,7.6287198,7.6960478,0,0,0,-983.49438,0,2,-9,2021,8,0,37,0,1,0,1,6.2076359,6.2076359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,13,3,1,155,21910.791,128003.88,0,0,0,0,863.89496 +13587,16575,29565,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.8276482,8.6712446,0,0,0,-870.28021,0,-9,-9,2021,8,1,35,35,1,1,0,23.443377,23.443377,0,0,0,0,0,0,0,2,0,0,0,0,0,44.91,53.85,-9,-9,8.333333333333334,2,3,0,0,6,8,5,0,1164,-259175.84,0,0,0,0,0,2470.9749 +13588,16576,29566,-9,-9,-9,1,0,51,0,1,0,3,3,-9,0,3,8.2343149,8.2669821,0,0,0,-948.38214,0,-9,-9,2021,14,3,38,70,1,3,0,10.848789,10.848789,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.74,55.09,-9,-9,10,1,1,0,1,7,9,3,0,1255,309921.44,37302.133,203911.88,129432.14,0,0,1253.946 +13589,16577,29567,29568,-9,-9,1,1,50,0,0,0,2,2,-9,0,2,8.8302202,8.9423161,0,30,-1,79.287666,0,3,3,2021,8,0,60,50,1,0,0,14.504175,14.504175,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.24,50.75,42.98,41.15,6.666666666666667,1,1,0,0,13,5,5,1,274.5,86312.641,55069.348,176519.69,0,0,0,3921.8604 +13589,16577,29568,29567,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.7888899,7.8071947,0,30,1,50.336487,0,2,2,2021,22,9,44,37,1,9,0,6.8819261,6.8819261,0,0,0,0,0,0,0,0,0,0,0,2.7284462,0,42.98,41.15,52.24,50.75,8.333333333333334,1,1,0,0,13,5,5,1,274.5,86312.641,55069.348,176519.69,0,0,0,3921.8604 +13589,16578,29569,-9,29568,29567,1,1,26,0,0,0,2,2,-9,0,5,0,0,0,0,0,-955.33966,0,2,2,2021,11,0,0,40,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4550452,0,48.52,57.47,-9,-9,8.333333333333334,1,1,0,0,10,5,1,1,481,-11626.285,0,0,0,0,0,-275.60345 +13589,16579,29570,-9,29568,29567,1,0,21,0,0,0,2,2,-9,0,4,7.5727773,7.7535763,0,0,0,-1116.2866,0,2,2,2021,11,0,45,35,1,0,1,5.2569427,5.2569427,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,203,105058.98,16577.477,0,0,0,0,1131.2126 +13590,16580,29571,29572,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.8497772,8.7967014,0,12,-2,-.8739177,0,3,-9,2021,12,0,42,47,1,0,0,17.630547,17.630547,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,57.06,57.76,8.333333333333334,1,1,0,0,12,10,4,1,1183,1254069,756087.63,395759.44,0,0,0,2706.6104 +13590,16580,29572,29571,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,0,0,0,12,2,49.289986,0,2,-9,2021,6,0,0,45,3,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46,50,10,1,1,1,0,12,10,4,1,1183,1254069,756087.63,395759.44,0,0,0,2706.6104 +13591,16581,29573,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.655055,6.9427047,0,0,-914.90167,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4403667,7.0856857,56.57,57.78,-9,-9,10,1,1,0,0,5,6,2,1,447,127446.42,98855.844,77675.609,0,0,0,635.26794 +13592,16582,29574,29575,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.1847229,8.1580439,0,5,4,-115.80787,0,-9,-9,2021,6,0,44,42,1,0,0,10.585084,10.585084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.33,51.02,50.99,49.74,8.333333333333334,1,1,0,0,9,4,4,1,800.33331,89437.25,47149.645,0,0,0,0,2954.511 +13592,16582,29575,29574,-9,-9,1,0,32,1,1,0,1,1,-9,0,3,7.9982452,8.2128916,0,5,-4,38.407337,0,-9,-9,2021,10,1,30,38,1,1,0,12.811754,12.811754,0,0,0,0,0,0,0,0,1,1,0,0,0,50.99,49.74,56.33,51.02,10,1,1,0,0,4,4,4,1,800.33331,89437.25,47149.645,0,0,0,0,2954.511 +13592,16582,29576,-9,29575,29574,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-852.54596,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,800.33331,89437.25,47149.645,0,0,0,0,2954.511 +13593,16583,29577,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1017.8922,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,10.406539,1.5238054,84.963806,0,1,1,0,0,0,53.21,20.54,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,120,-88031.844,0,0,0,0,0,2389.6226 +13594,16584,29578,29579,-9,-9,1,0,58,0,0,0,2,2,-9,1,3,7.765368,7.5491695,0,8,0,-18.10269,0,3,3,2021,17,6,37,38,1,6,0,5.2726345,5.2726345,0,0,0,0,0,0,0,42,1,1,0,1.0746095,0,37.62,44.93,26.57,20.42,5,2,3,0,1,9,12,3,1,841,146926.42,-6510.2227,218650.53,0,0,0,2301.1255 +13594,16584,29579,29578,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,8,9,-39.043377,0,3,3,2021,30,12,0,0,4,12,0,0,0,.05,.05,0,1,0,23.991899,0,0,1,1,0,0,0,26.57,20.42,37.62,44.93,1.666666666666667,1,1,0,1,0,12,3,1,841,146926.42,-6510.2227,218650.53,0,0,0,2301.1255 +13595,16585,29580,29581,-9,-9,1,0,45,0,3,0,1,1,-9,0,4,8.360961,8.3224688,0,23,-5,2.3956294,0,2,2,2021,9,0,37,23,1,0,0,14.203554,14.203554,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.57,43.81,42.64,25.36,6.666666666666667,1,1,0,0,9,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29581,29580,-9,-9,1,1,50,0,3,0,1,1,-9,0,1,0,7.5869017,7.6002045,23,5,-119.32758,0,3,3,2021,18,6,0,0,4,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.0353093,7.6785321,42.64,25.36,57.57,43.81,1.666666666666667,1,1,0,0,7,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29582,-9,29580,29581,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.61615,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29583,-9,29580,29581,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1087.4587,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13595,16585,29584,-9,29580,29581,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-936.49908,-9,1,1,2021,18,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.29,54.84,-9,-9,5,1,1,0,0,0,5,3,1,643.40002,6809361,6388034.5,318255.59,0,0,0,3900.0723 +13596,16586,29585,-9,-9,-9,1,0,66,0,2,0,3,3,-9,0,1,0,0,0,0,0,-1041.5974,0,3,2,2021,22,9,0,0,4,9,0,0,0,0,0,0,1,0,95.373833,0,0,1,1,0,0,0,35.01,28.95,-9,-9,5,2,3,0,0,0,6,1,1,657,-104641.59,0,25021.104,0,0,0,1217.3374 +13596,16587,29586,-9,29587,29589,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.98914,-9,3,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13596,16587,29587,29589,-9,-9,1,0,28,0,2,0,3,3,-9,1,3,0,0,0,7,-8,149.12852,0,-9,-9,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,36.03,53.83,28.14,57.31,6.666666666666667,2,3,0,0,0,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13596,16587,29588,-9,29587,29589,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.7267,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13596,16587,29589,29587,29585,-9,1,1,36,0,2,0,1,1,-9,0,4,8.2774792,7.9461608,0,7,8,-15.30637,0,3,3,2021,19,8,37,37,1,8,0,10.079587,10.079587,0,0,.05,0,0,0,0,42,1,1,0,0,0,28.14,57.31,36.03,53.83,6.666666666666667,2,3,0,0,13,6,3,1,1411,168892.88,-3964.3896,200456.33,68666.07,0,8240.1064,2159.1753 +13597,16588,29590,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.2896795,8.3714981,0,0,0,-962.84454,0,-9,3,2021,9,1,38,38,1,1,0,11.64093,11.64093,0,0,0,0,0,0,0,2,0,0,0,2.5012276,0,44.02,60.7,-9,-9,8.333333333333334,3,4,0,0,9,8,4,1,1309,842064.25,305586.84,253599.11,0,0,0,1878.3898 +13598,16589,29591,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.8657727,5.4301739,0,0,-1052.145,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.7303557,6.0864286,47,38,-9,-9,5,1,1,0,0,5,4,2,1,493,230463.73,199348.55,60164.293,0,0,0,723.62286 +13599,16590,29592,-9,29594,29593,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-824.4035,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,547.33331,154285.58,101158.73,0,0,2654.2429,0,5599.8638 +13599,16590,29593,29594,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.4586325,9.6238623,0,22,0,3.9043362,0,2,3,2021,12,0,45,45,1,0,0,43.887177,43.887177,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.03,58.4,62.67,44.01,5,1,1,0,0,11,9,5,1,547.33331,154285.58,101158.73,0,0,2654.2429,0,5599.8638 +13599,16590,29594,29593,-9,-9,1,0,55,0,1,0,2,2,-9,0,4,0,0,0,22,0,66.66983,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.2276952,0,62.67,44.01,43.03,58.4,8.333333333333334,1,1,0,0,0,9,5,1,547.33331,154285.58,101158.73,0,0,2654.2429,0,5599.8638 +13599,16591,29595,-9,29594,29593,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1090.3488,-9,2,1,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.2277313,0,44.02,60.7,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,1419,0,0,0,0,0,0,-203.22835 +13600,16592,29596,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,2,7.9054418,8.1589994,0,0,0,-1028.5863,0,-9,-9,2021,20,9,33,35,1,9,0,9.0788078,9.0788078,0,0,.05,0,0,0,0,0,1,0,1,2.0570588,0,57.29,22.49,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,226,455363.19,448.74481,286201.31,0,0,0,1306.6191 +13600,16593,29597,-9,29596,-9,1,1,40,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1037.9628,0,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.41,56.15,-9,-9,3.333333333333333,1,1,1,1,0,13,1,0,157,26111.811,0,0,0,0,0,380.61981 +13601,16594,29598,29599,-9,-9,1,1,71,0,0,0,3,3,-9,0,1,0,6.3669314,6.3622069,54,0,61.703224,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,120.44573,0,0,1,1,0,5.9437413,6.5937328,35.78,17.81,44.58,40.68,6.666666666666667,1,1,0,0,3,2,2,1,1049.5,128499.94,170141.95,72808.828,0,0,0,1572.443 +13601,16594,29599,29598,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,4.8268752,4.7442021,54,0,-9.6990566,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.0349393,4.9827456,44.58,40.68,35.78,17.81,8.333333333333334,1,1,0,0,2,2,2,1,1049.5,128499.94,170141.95,72808.828,0,0,0,1572.443 +13601,16595,29600,-9,29599,29598,1,0,49,0,0,0,2,2,-9,0,4,8.4373283,8.5364275,5.5996847,0,0,-975.06897,0,2,2,2021,6,0,37,38,1,0,0,15.898171,15.898171,.05,.05,0,0,0,0,0,2,1,1,0,7.4537954,5.7246237,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,2,5,1,1321,209825.36,289068.28,82689.641,55382.777,11198.096,0,3018.864 +13602,16596,29601,-9,-9,-9,1,0,41,0,3,0,1,1,-9,0,5,8.8731709,8.9307222,7.0958648,0,0,-929.89301,0,3,2,2021,10,0,44,45,1,0,0,16.481047,16.481047,.05,.05,0,0,0,0,0,0,1,1,0,7.5601668,0,51.39,53.65,-9,-9,8.333333333333334,1,1,0,0,13,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29602,-9,29601,-9,1,1,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1076.0015,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29603,-9,29601,-9,1,1,11,0,3,1,3,0,-9,0,5,0,0,0,0,0,-919.4765,-9,1,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29604,-9,29601,-9,1,0,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-991.57587,-9,1,-9,2021,7,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.93314898,0,30.67,65.95,-9,-9,10,1,1,0,0,1,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13602,16596,29605,-9,29601,-9,1,1,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1042.8967,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,595.40002,599960.81,467627.06,122291.72,99400.352,0,0,3563.8474 +13603,16597,29606,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1041.5525,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,43.87,36.1,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,868,-157020.52,-34127.184,0,0,0,0,980.31891 +13604,16598,29607,29609,-9,-9,1,0,40,0,1,0,1,1,-9,0,2,7.2183003,7.4112267,0,13,1,-91.377106,0,2,3,2021,22,7,26,27,1,7,0,6.1519737,6.1519737,.05,.05,0,0,0,0,0,0,1,1,0,0,0,24.32,44.48,37.58,57.01,5,1,1,0,0,7,2,4,1,535.66669,-25680.109,20668.666,121471.42,61930.645,1309.069,0,2981.4443 +13604,16598,29608,-9,29607,29609,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.35742,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,535.66669,-25680.109,20668.666,121471.42,61930.645,1309.069,0,2981.4443 +13604,16598,29609,29607,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,8.3246088,8.154376,0,13,-1,-4.0317655,0,-9,-9,2021,16,4,38,38,1,4,0,17.068794,17.068794,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.58,57.01,24.32,44.48,8.333333333333334,1,1,0,0,14,2,4,1,535.66669,-25680.109,20668.666,121471.42,61930.645,1309.069,0,2981.4443 +13605,16599,29610,29611,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.5221305,7.6290488,23,4,10.881363,0,-9,-9,2021,18,5,0,25,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0663886,6.9328942,54.2,57.49,40.33,55.64,6.666666666666667,1,1,0,0,10,5,2,1,418.5,96758.43,58933.105,93903.047,0,0,0,941.50061 +13605,16599,29611,29610,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,23,-4,152.78748,0,3,3,2021,14,2,0,47,4,2,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.9895232,0,40.33,55.64,54.2,57.49,6.666666666666667,1,1,0,0,10,5,2,1,418.5,96758.43,58933.105,93903.047,0,0,0,941.50061 +13606,16600,29612,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.0744162,7.9306622,5.6888928,0,0,-1047.7002,0,3,3,2021,11,0,36,36,1,2,0,10.680849,10.680849,.05,.05,0,0,0,0,.34388834,0,0,0,0,1.4826497,5.7318454,49,48,-9,-9,7,1,1,0,0,11,11,4,0,532,570572.56,342497.09,146202.48,0,0,1759.406,1641.7046 +13607,16601,29613,-9,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.4646626,9.6043825,0,0,0,-980.51318,0,2,2,2021,6,0,48,53,1,0,0,34.952103,34.952103,.05,.05,0,0,0,0,0,0,0,0,0,5.4649434,0,57.06,57.76,-9,-9,10,1,1,0,0,12,6,5,1,973,132031.67,32618.811,0,0,0,0,4908.7695 +13608,16602,29614,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,5,8.8483086,8.4430714,0,5,-6,26.870792,0,3,2,2021,11,3,37,38,1,3,0,15.065547,15.065547,.05,.05,0,0,0,0,0,0,0,0,0,1.8345443,0,31.64,66.34999999999999,50.51,53.71,8.333333333333334,1,1,0,0,12,5,5,1,695,1748817.1,1220873.9,252223.03,0,0,0,1962.7583 +13608,16603,29615,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.8816757,8.8161058,0,5,6,-94.123611,0,3,2,2021,10,2,40,55,1,2,0,20.52338,20.52338,0,0,0,0,0,0,0,0,0,0,0,0,0,50.51,53.71,31.64,66.34999999999999,10,1,1,0,0,12,5,5,1,565,96204.586,0,133271.77,2890.2192,166.94479,0,2022.2019 +13609,16604,29616,-9,-9,-9,1,0,59,0,1,0,2,2,-9,0,3,7.7101846,7.8394647,5.8018408,0,0,-1073.408,0,3,3,2021,13,1,31,29,1,1,0,10.198339,10.198339,.05,.05,0,0,0,0,0,0,1,1,0,8.6850033,6.2767062,26.69,60.83,-9,-9,3.333333333333333,1,1,0,0,13,6,3,1,165,170521.55,64630.617,179132.16,50542.18,0,0,3109.3813 +13609,16604,29617,-9,29616,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.21155,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,1,165,170521.55,64630.617,179132.16,50542.18,0,0,3109.3813 +13610,16605,29618,-9,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1050.7225,0,3,2,2021,19,0,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.89,14.92,-9,-9,5,1,1,0,0,3,13,2,0,297,-37358.508,0,0,0,508.65033,0,1275.5742 +13610,16606,29619,-9,29618,-9,1,0,28,0,0,0,1,1,-9,0,3,8.2156715,8.0195284,0,0,0,-999.35321,0,2,3,2021,13,0,40,46,1,3,1,9.7054558,9.7054558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43,53,-9,-9,8.333333333333334,1,1,0,0,9,13,4,0,291,-120919.63,-31077.836,0,0,0,0,1150.9567 +13611,16607,29620,-9,29621,29623,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-834.7417,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13611,16607,29621,29623,-9,-9,1,0,42,1,2,0,2,2,-9,0,2,8.5466089,8.5653734,0,7,0,-51.069962,0,-9,-9,2021,11,1,36,36,1,1,0,14.79732,14.79732,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.84,52.41,47.27,53.93,6.666666666666667,1,1,0,0,11,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13611,16607,29622,-9,29621,29623,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1016.1622,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13611,16607,29623,29621,-9,-9,1,1,42,1,2,0,1,1,-9,0,3,8.2182379,8.1762056,0,7,0,73.67643,0,2,1,2021,7,0,38,43,1,0,0,13.382653,13.382653,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.27,53.93,36.84,52.41,8.333333333333334,1,1,0,0,8,9,4,1,405.5,185601,155073.2,0,0,0,6375.5811,4119.0308 +13612,16608,29624,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,0,0,-971.2027,0,-9,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8041427,0,48.75,61.27,-9,-9,8.333333333333334,1,1,0,0,0,9,1,1,295,142973.03,0,0,0,0,0,980.04279 +13613,16609,29625,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,8.9250717,9.0006638,0,0,-972.97919,0,2,1,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6429753,9.0266666,59.46,36.25,-9,-9,8.333333333333334,1,1,0,0,2,7,5,1,1205,804872.81,150622.34,369000.91,0,0,0,6487.9644 +13614,16610,29626,-9,29627,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1050.4089,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,0,539,6237.7344,-37208.227,86333.234,36770.156,6574.8271,5713.6455,4736.498 +13614,16610,29627,-9,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,9.1468391,9.1903811,7.4305511,0,0,-819.23145,0,-9,-9,2021,8,0,58,80,1,0,0,16.010277,16.010277,.05,.05,0,0,0,0,0,0,1,1,0,5.8195481,7.1204066,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,6,11,5,0,539,6237.7344,-37208.227,86333.234,36770.156,6574.8271,5713.6455,4736.498 +13615,16611,29628,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,5.6553407,5.7738085,0,0,-1002.9045,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3365664,5.4027996,58.2,54.53,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,373,655289.75,0,459306.84,0,0,0,1441.3859 +13616,16612,29629,-9,29630,29631,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1103.3513,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13616,16612,29630,29631,-9,-9,1,0,28,0,2,0,2,2,-9,0,4,8.0130444,8.1747465,0,7,-1,73.709129,0,3,2,2021,20,9,37,37,1,9,0,10.203765,10.203765,0,0,0,0,0,0,0,0,1,1,0,0,0,50.66,31.97,57.73,54.53,8.333333333333334,1,1,0,0,9,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13616,16612,29631,29630,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,8.5781202,8.5385656,0,7,1,-50.2048,0,3,3,2021,6,0,42,49,1,0,0,14.08951,14.08951,0,0,0,0,0,0,0,0,1,1,0,7.3022637,0,57.73,54.53,50.66,31.97,8.333333333333334,1,1,0,0,8,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13616,16612,29632,-9,29630,29631,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.62421,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,998.5,224556.91,-17364.088,0,0,0,0,3511.2898 +13617,16613,29633,29634,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.1500835,6.3657179,48,2,-94.78508,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.1364989,6.2933559,58.49,50.2,36.03,60.59,8.333333333333334,1,1,0,0,4,9,2,1,1022,474013.25,168286.59,168938.8,0,0,0,2344.8259 +13617,16613,29634,29633,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,6.536808,5.9653769,48,-2,114.48866,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.9823074,6.4912457,36.03,60.59,58.49,50.2,6.666666666666667,1,1,0,0,6,9,2,1,1022,474013.25,168286.59,168938.8,0,0,0,2344.8259 +13617,16614,29635,-9,29634,29633,1,1,41,0,0,0,2,2,-9,0,4,8.2904844,8.3639059,0,0,0,-1067.8948,0,3,2,2021,8,0,49,49,1,0,0,9.5681992,9.5681992,0,0,0,0,0,0,0,0,1,1,0,1.671141,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,10,9,4,1,1246,248770.97,0,0,0,0,0,1914.5743 +13618,16615,29636,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,5.4482222,5.7870455,0,0,-901.0683,-9,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2861342,4.8025227,51.63,42.78,-9,-9,8.333333333333334,1,1,0,1,0,8,2,0,223,196067.61,-173698.06,0,0,0,0,531.45862 +13619,16616,29637,29640,-9,-9,1,0,35,0,2,0,1,1,-9,0,3,6.2429581,6.1006966,0,12,-8,-25.120699,0,3,2,2021,11,3,12,0,1,3,0,5.2963142,5.2963142,0,0,0,0,0,0,0,0,1,1,0,.84546804,0,47.13,48.65,54.79,55.86,6.666666666666667,2,3,0,0,5,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13619,16616,29638,-9,29637,29640,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1029.5375,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13619,16616,29639,-9,29637,29640,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.9469,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13619,16616,29640,29637,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.322298,8.2448463,0,12,8,13.317342,0,2,2,2021,9,0,40,45,1,0,0,10.527474,10.527474,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,47.13,48.65,6.666666666666667,1,1,0,0,7,10,3,1,625.25,485419.63,222011.45,656416.88,422228.19,19471.129,0,2290.854 +13620,16617,29641,-9,-9,-9,1,0,40,0,3,0,2,2,-9,0,4,7.2607622,6.9964943,0,0,0,-896.14661,0,3,-9,2021,11,0,23,22,1,0,0,6.4073396,6.4073396,0,0,0,0,0,0,0,0,1,1,0,0,0,35.09,62.46,-9,-9,5,1,1,0,1,11,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13620,16617,29642,-9,29641,-9,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1024.7321,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13620,16617,29643,-9,29641,-9,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-943.4538,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13620,16617,29644,-9,29641,-9,1,0,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-897.21429,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1351.25,-75606.93,0,173611,175069.03,1345.0059,0,1734.1975 +13621,16618,29645,29646,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,0,0,0,6,-1,-7.4054165,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,52.91,41.47,58.08,3.333333333333333,1,1,1,1,9,6,4,1,1644,66509.344,-32957.578,205899.19,131320.94,4914.1182,0,1545.2114 +13621,16618,29646,29645,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.6479311,8.673645,0,6,1,-4.1023531,0,-9,-9,2021,16,6,40,35,1,6,0,18.573153,18.573153,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,52.4,52.91,8.333333333333334,1,1,0,0,6,6,4,1,1644,66509.344,-32957.578,205899.19,131320.94,4914.1182,0,1545.2114 +13622,16619,29647,29648,-9,-9,1,0,58,0,0,0,3,3,-9,0,1,7.4866114,7.5742064,0,31,-5,7.647553,0,3,-9,2021,16,5,25,25,1,5,0,10.641446,10.641446,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.34,28.18,62.1,51.16,5,1,1,0,0,15,8,5,1,813.5,358338.28,93722.953,215147.78,0,0,0,4520.0039 +13622,16619,29648,29647,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,8.3115454,8.3037205,31,5,65.079338,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,5.5038166,8.2213268,62.1,51.16,36.34,28.18,8.333333333333334,1,1,0,0,7,8,5,1,813.5,358338.28,93722.953,215147.78,0,0,0,4520.0039 +13623,16620,29649,-9,29650,29651,1,0,15,1,2,1,3,0,-9,0,5,0,0,0,0,0,-1033.6926,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,3,0,667,157043.48,0,172958.56,55950.934,0,0,2512.0769 +13623,16620,29650,29651,-9,-9,1,0,41,1,2,0,2,2,-9,0,2,6.43327,6.7320237,0,17,-3,-25.562843,0,-9,-9,2021,16,3,10,8,1,3,0,5.7619925,5.7619925,0,0,0,0,0,0,0,0,1,0,1,0,0,54.61,51.04,52,56,8.333333333333334,1,1,0,1,7,7,3,0,667,157043.48,0,172958.56,55950.934,0,0,2512.0769 +13623,16620,29651,29650,-9,-9,1,1,44,1,2,0,2,2,-9,0,4,7.8171639,7.9965439,0,6,3,125.76293,0,-9,-9,2021,9,0,17,17,1,1,0,17.416065,17.416065,0,0,0,0,0,0,0,0,1,0,1,0,0,52,56,54.61,51.04,8,1,1,0,0,1,7,3,0,667,157043.48,0,172958.56,55950.934,0,0,2512.0769 +13623,16621,29652,-9,29650,29651,1,0,20,1,2,0,2,2,-9,0,5,0,0,0,0,0,-950.38354,0,2,2,2021,5,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,71.28,38.9,-9,-9,10,1,1,0,0,1,7,2,0,1459,43574.805,0,0,0,0,0,398.78595 +13623,16621,29653,-9,29652,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-932.04584,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,2,0,1459,43574.805,0,0,0,0,0,398.78595 +13623,16622,29654,-9,29650,29651,1,1,19,1,2,0,2,2,-9,0,4,0,0,0,0,0,-947.04602,1,2,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64.79000000000001,40.37,-9,-9,8.333333333333334,1,1,0,0,2,7,1,0,516,0,0,0,0,0,0,0 +13624,16623,29655,-9,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,0,0,0,0,0,-977.1615,0,2,2,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,-9,-9,8.333333333333334,1,1,1,0,9,9,1,0,300,111788.41,0,0,0,0,0,1590.1068 +13624,16623,29656,-9,29655,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-920.63892,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,9,1,0,300,111788.41,0,0,0,0,0,1590.1068 +13625,16624,29657,29658,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,8.3120003,8.13696,29,7,32.103401,0,2,2,2021,10,2,0,10,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.812716,66.36,30.66,57.16,56.15,8.333333333333334,1,1,0,0,7,10,5,1,869.5,2912618.5,2631025,159517.56,0,0,0,4261.2666 +13625,16624,29658,29657,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,0,8.4896755,7.9628315,9,-7,2.6531336,0,2,2,2021,5,0,0,21,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.8889618,57.16,56.15,66.36,30.66,8.333333333333334,1,1,1,0,8,10,5,1,869.5,2912618.5,2631025,159517.56,0,0,0,4261.2666 +13626,16625,29659,29660,-9,-9,1,0,20,0,0,0,2,2,-9,0,3,6.5960479,6.6071286,0,1,-2,120.66655,0,-9,-9,2021,14,0,20,-9,1,3,0,4.6157308,4.6157308,0,0,0,0,0,0,0,0,0,0,0,4.0922141,0,42,54,44,55,6.666666666666667,1,1,0,0,4,11,4,1,1208.5,92812.281,-8841.124,215895.25,48858.887,70364.406,1030.5386,2249.6929 +13626,16625,29660,29659,-9,-9,1,1,22,0,0,0,2,2,-9,0,3,8.51756,8.5637054,0,1,2,31.190842,-9,-9,-9,2021,7,0,60,0,1,0,0,9.3223591,9.3223591,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,55,42,54,7,1,1,0,0,0,11,4,1,1208.5,92812.281,-8841.124,215895.25,48858.887,70364.406,1030.5386,2249.6929 +13627,16626,29661,-9,29663,29662,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-940.9209,-9,1,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,0,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13627,16626,29662,29663,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,7.1717138,7.3248649,0,6,4,27.704433,0,2,1,2021,12,0,70,40,1,0,0,2.2351708,2.2351708,.05,.05,0,0,0,0,0,2,1,1,0,4.8010063,0,56.92,46.68,50.74,49.6,8.333333333333334,1,1,0,0,8,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13627,16626,29663,29662,-9,-9,1,0,50,0,2,0,1,1,-9,0,4,8.6319933,8.6638317,0,23,-4,-45.909809,0,3,2,2021,10,1,20,25,1,1,0,39.354347,39.354347,.05,.05,0,0,0,0,0,27,1,1,0,3.2411544,0,50.74,49.6,56.92,46.68,3.333333333333333,1,1,0,0,8,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13627,16626,29664,-9,29663,29662,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1092.1494,-9,1,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1016.5,458482.25,216221.38,222411.05,24217.402,0,0,3719.1311 +13628,16627,29665,29666,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,36,1,-59.315132,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,12.03297,0,0,1,1,0,0,0,59.3,34.68,61.55,25.93,8.333333333333334,1,1,0,0,0,7,2,1,848.5,371204.5,0,299174.13,0,0,0,910.14825 +13628,16627,29666,29665,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.9074264,2.736897,36,-1,9.7185335,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.0583186,2.8095877,61.55,25.93,59.3,34.68,6.666666666666667,1,1,0,0,0,7,2,1,848.5,371204.5,0,299174.13,0,0,0,910.14825 +13629,16628,29667,29668,-9,-9,1,0,65,0,0,0,2,2,-9,0,1,0,4.7899189,4.566175,50,-3,-83.935997,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1516781,4.4917793,32.29,19.42,61.61,37.79,5,1,1,0,0,0,4,5,1,888,600847,0,367717.19,0,0,5389.4209,5622.1709 +13629,16628,29668,29667,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,8.1083059,8.6390533,8.1552992,11,3,8.3290119,0,-9,-9,2021,6,0,16,16,1,0,0,24.971909,24.971909,0,0,0,0,0,0,0,27,1,1,0,6.4247274,8.3452272,61.61,37.79,32.29,19.42,8.333333333333334,1,1,0,0,14,4,5,1,888,600847,0,367717.19,0,0,5389.4209,5622.1709 +13630,16629,29669,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.0518246,7.6393185,0,0,0,-1010.9994,0,3,3,2021,10,0,44,44,1,0,0,6.5480275,6.5480275,0,0,.05,0,0,0,0,0,1,0,1,0,0,52.51,54.26,-9,-9,8.333333333333334,3,4,0,1,7,7,4,1,1278,649819.88,220828.63,525381.75,0,0,0,1635.3224 +13630,16630,29670,-9,29673,-9,1,0,12,0,0,1,3,0,-9,0,3,0,0,0,0,0,-1105.5483,-9,-9,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,3,4,-9,0,0,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13630,16630,29671,-9,29673,-9,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1009.2052,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,4,6,-9,0,0,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13630,16630,29672,-9,29673,-9,1,1,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1088.7513,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,3,4,-9,0,0,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13630,16630,29673,-9,29669,-9,1,0,19,0,0,0,2,2,1,0,4,7.5728765,7.4077935,0,0,0,-1106.5333,-9,1,-9,2021,12,0,40,0,1,2,1,4.8198156,4.8198156,0,0,0,0,0,0,0,0,1,0,1,0,0,47,58,-9,-9,7,3,4,0,0,1,7,3,1,1030,-101009.93,0,0,0,0,0,781.36584 +13631,16631,29674,-9,-9,-9,1,0,76,0,0,0,1,1,-9,0,2,0,8.5755148,8.2265654,0,0,-914.09363,0,2,2,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.7758342,8.496707,23.52,27.15,-9,-9,3.333333333333333,1,1,0,0,0,10,4,1,272,856546.19,533195.5,81958.102,0,0,0,2932.8936 +13632,16632,29675,29676,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,8.9875546,8.6620483,0,8,-12,.24016391,0,-9,-9,2021,4,0,45,60,1,0,0,19.344416,19.344416,0,0,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,57.57,57.51,10,1,1,0,0,12,10,5,1,962.5,2380353,1722498.5,550049.88,0,0,0,4251.9414 +13632,16632,29676,29675,-9,-9,1,1,64,0,0,0,1,1,-9,0,5,8.4085484,8.6530056,7.3542361,8,12,27.063681,0,-9,-9,2021,7,0,51,45,1,0,0,10.214309,10.214309,.05,.05,0,0,0,0,0,0,0,0,0,0,7.3233218,57.57,57.51,62.39,56.71,8.333333333333334,1,1,0,0,12,10,5,1,962.5,2380353,1722498.5,550049.88,0,0,0,4251.9414 +13633,16633,29677,29678,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,8.9095564,8.9050055,0,10,6,1.3733373,0,2,2,2021,6,0,40,44,1,0,0,19.324705,19.324705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.41,44.91,38.21,54.03,8.333333333333334,1,1,0,0,11,10,5,1,2524.5,528644.63,90324.594,609910.75,197720.81,27311.6,920.40173,4703.8818 +13633,16633,29678,29677,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7843924,9.1196861,0,10,-6,-28.768976,0,2,2,2021,15,4,52,48,1,4,0,14.560193,14.560193,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,56.41,44.91,5,1,1,0,0,11,10,5,1,2524.5,528644.63,90324.594,609910.75,197720.81,27311.6,920.40173,4703.8818 +13633,16634,29679,-9,29677,29678,1,0,18,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1028.4066,1,1,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,2.4292104,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,267,0,0,0,0,0,0,193.59123 +13634,16635,29680,29683,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,9.3798132,9.5367584,0,10,-3,-149.7551,0,-9,-9,2021,13,1,45,44,1,1,0,29.017046,29.017046,.05,.05,0,0,0,0,1.2597878,0,0,0,0,0,0,38.91,60.5,39.8,58.53,5,1,1,0,0,11,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13634,16635,29681,-9,29680,29683,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1104.5861,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13634,16635,29682,-9,29680,29683,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-992.0636,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13634,16635,29683,29680,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.6045513,8.6195374,0,10,3,-61.18037,0,2,2,2021,14,2,47,47,1,2,0,19.556787,19.556787,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.8,58.53,38.91,60.5,3.333333333333333,1,1,0,0,10,12,5,1,478.5,1514718.3,460490.25,550543.56,9389.6465,0,0,5424.2607 +13635,16636,29684,29686,-9,-9,1,0,38,0,2,0,2,2,-9,0,3,7.6603003,7.2507653,0,19,-6,53.407444,0,-9,-9,2021,9,1,26,27,1,1,0,8.5648527,8.5648527,0,0,0,0,0,0,0,0,1,1,0,0,0,44.7,53.68,51,56,8.333333333333334,1,1,0,0,11,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13635,16636,29685,-9,29684,29686,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-852.76605,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13635,16636,29686,29684,-9,-9,1,1,44,0,2,0,3,3,-9,0,4,8.4986401,8.6750422,0,15,6,-31.62352,0,-9,-9,2021,9,0,60,40,1,1,0,9.4195814,9.4195814,.05,.05,0,0,0,0,0,0,1,1,0,3.006573,0,51,56,44.7,53.68,7,1,1,0,0,1,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13635,16636,29687,-9,29684,29686,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.239,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,4,1,690.5,491568.41,8039.5635,425139.69,0,0,0,3087.311 +13636,16637,29688,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.8053007,6.9297533,0,0,-932.58203,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0771251,38.16,44.66,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,533,593801.44,524840.06,169844.36,0,0,0,1093.7894 +13637,16638,29689,29690,-9,-9,1,0,57,0,0,0,3,3,-9,1,2,0,0,0,1,-13,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.23,47.51,35.99,16.11,8.333333333333334,1,1,0,0,0,1,1,1,1071,196610.3,0,160211.47,0,0,0,1271.0662 +13637,16638,29690,29689,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,1,13,0,0,3,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,126.48344,0,0,1,1,0,0,0,35.99,16.11,53.23,47.51,5,1,1,0,1,0,1,1,1,1071,196610.3,0,160211.47,0,0,0,1271.0662 +13638,16639,29691,29692,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,6.0447402,6.0782418,7,-1,-74.560173,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,8.1097593,0,0,1,1,0,5.5566387,5.9724755,36.37,40.24,43.53,41.07,8.333333333333334,1,1,0,0,3,2,2,1,1072.5,221110.81,16490.699,196899.47,0,0,0,1953.0002 +13638,16639,29692,29691,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,7,1,41.161751,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,6.9620204,19.49641,69.6894,0,1,1,0,1.2995228,0,43.53,41.07,36.37,40.24,8.333333333333334,1,1,0,0,0,2,2,1,1072.5,221110.81,16490.699,196899.47,0,0,0,1953.0002 +13639,16640,29693,-9,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.3847857,8.0639906,0,0,0,-1037.3511,0,2,2,2021,18,4,60,60,1,4,0,7.9142394,7.9142394,.05,.05,0,0,0,0,0,0,0,0,0,6.630578,0,42.95,29.14,-9,-9,1.666666666666667,1,1,0,0,15,10,4,0,712,-87100.969,66636.164,0,0,0,995.25104,1918.3862 +13640,16641,29694,-9,-9,-9,1,1,79,0,0,0,1,1,-9,0,2,0,8.1295414,8.4429131,0,0,-1004.993,-9,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.9569778,8.2290268,52.27,31.44,-9,-9,5,1,1,0,0,9,5,4,1,631,818233.94,392954.59,144718.48,0,0,0,5279.6694 +13641,16642,29695,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-937.36353,0,2,1,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.37,36.9,-9,-9,5,1,1,0,0,1,6,1,0,207,115606.27,0,0,0,0,0,1100.4186 +13642,16643,29696,29697,-9,-9,1,1,47,0,0,0,2,2,-9,0,5,9.0150299,8.7325897,0,5,-1,31.569176,0,-9,2,2021,7,0,38,37,1,0,0,19.961742,19.961742,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.21,58.07,20.42,46.66,8.333333333333334,1,1,0,0,8,9,4,0,242,498870.94,-294.89258,227726.86,103812.23,1572.8555,1365.0476,2424.6479 +13642,16643,29697,29696,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,0,0,0,23,1,-33.828392,0,3,2,2021,30,11,0,10,3,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,20.42,46.66,46.21,58.07,5,1,1,0,0,9,9,4,0,242,498870.94,-294.89258,227726.86,103812.23,1572.8555,1365.0476,2424.6479 +13642,16644,29698,-9,29697,29696,1,1,21,0,0,0,2,2,-9,0,4,7.9301982,7.8429413,0,0,0,-943.00085,0,2,2,2021,5,0,45,41,1,0,1,4.8919606,4.8919606,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,9,3,0,226,-158361.73,0,0,0,0,0,1004.3206 +13643,16645,29699,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,1,8.6046467,8.5163155,0,0,0,-1111.8508,0,2,3,2021,30,10,45,40,1,10,0,12.5205,12.5205,.05,.05,0,0,0,0,0,0,0,0,0,0,0,23.37,43.7,-9,-9,0,1,1,0,1,7,9,5,0,481,-25831.885,107052.32,357130,254627.89,3505.6006,0,2595.6633 +13643,16646,29700,-9,-9,29699,1,1,19,0,0,0,2,2,1,0,4,0,0,0,0,0,-935.38782,-9,-9,3,2021,29,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.25,62,-9,-9,1.666666666666667,1,1,1,0,1,9,1,0,515,0,0,0,0,0,0,192.6622 +13644,16647,29701,29702,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.6371546,7.4653625,46,2,27.18388,0,3,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.470273,7.8082581,51.77,58.57,59.43,58.05,10,1,1,0,0,7,7,3,1,1172,1011747.5,522577.81,360300.69,0,11770.414,0,2912.0698 +13644,16647,29702,29701,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,7.4100833,7.1988659,4,-2,36.149979,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9171019,59.43,58.05,51.77,58.57,10,1,1,0,0,0,7,3,1,1172,1011747.5,522577.81,360300.69,0,11770.414,0,2912.0698 +13645,16648,29703,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,5,9.3875647,9.3216705,0,0,0,-1162.2461,0,2,2,2021,10,0,70,70,1,0,0,17.360611,17.360611,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.82,60.48,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,2847,-92967.688,21240.641,0,0,0,0,3363.4973 +13646,16649,29704,29705,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.3399906,8.1637049,0,32,1,89.824348,0,2,2,2021,3,0,42,42,1,0,0,11.946539,11.946539,0,0,0,0,0,0,0,0,0,0,0,4.4580555,0,60.6,46.43,57.9,51.84,6.666666666666667,1,1,0,1,12,12,4,0,1653.5,1649831,1093203.8,298538.81,0,0,0,1206.558 +13646,16649,29705,29704,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,0,0,0,32,-1,22.992922,0,2,2,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,60.6,46.43,8.333333333333334,1,1,0,0,7,12,4,0,1653.5,1649831,1093203.8,298538.81,0,0,0,1206.558 +13647,16650,29706,29707,-9,-9,1,0,68,0,0,0,2,2,-9,0,2,0,5.183404,5.1112823,2,0,151.40176,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,15.78525,0,14.5,1,1,0,3.6332884,5.158711,48.02,34.89,59.33,51.29,8.333333333333334,1,1,0,0,0,12,2,1,623,199447.19,95175.719,36009.297,0,0,0,4566.0303 +13647,16650,29707,29706,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,6.3100567,6.0267148,2,0,22.327082,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.1499176,5.9623332,59.33,51.29,48.02,34.89,8.333333333333334,1,1,0,0,2,12,2,1,623,199447.19,95175.719,36009.297,0,0,0,4566.0303 +13648,16651,29708,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.5770011,7.467988,0,0,-1079.6749,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5936389,58.76,38.19,-9,-9,8.333333333333334,1,1,0,0,0,5,3,1,476,323888.97,287975.28,152347.06,0,0,0,2100.906 +13649,16652,29709,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.7693524,7.976182,0,0,0,-1143.1919,0,3,-9,2021,11,0,18,17,1,0,0,17.870871,17.870871,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,3,4,0,0,9,4,4,0,520,27079.873,15528.174,0,0,0,0,741.28119 +13649,16653,29710,-9,29709,-9,1,1,27,0,0,0,2,2,-9,0,3,7.0814991,7.2385478,0,0,0,-959.28906,0,1,1,2021,12,1,58,2,1,1,1,2.4015119,2.4015119,0,0,0,0,0,0,0,0,0,0,0,0,0,39.09,49.78,-9,-9,5,3,4,0,1,6,4,3,0,609,-193550.44,0,0,0,0,0,665.27112 +13650,16654,29711,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-986.15869,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.52,48.31,-9,-9,8.333333333333334,1,1,0,0,2,7,1,1,1014,-112665.95,0,0,0,0,0,470.7229 +13651,16655,29712,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,7.231782,6.8672647,0,0,-1071.4359,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,4.7973437,0,0,1,1,0,0,7.180419,61.69,36.86,-9,-9,10,1,1,0,0,0,5,2,1,897,65335.02,75417.445,0,0,0,0,1148.8014 +13652,16656,29713,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5396214,8.3688936,0,0,0,-994.32965,0,2,2,2021,11,2,20,40,1,2,0,28.428782,28.428782,.05,.05,0,0,0,0,3.5671868,0,0,0,0,0,0,43.85,50.34,-9,-9,5,1,1,0,0,10,2,5,1,3515,539362.44,198084.3,0,0,0,0,2566.0403 +13653,16657,29714,29716,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,8.7657185,8.6755447,0,15,6,-145.19922,0,3,3,2021,6,0,40,38,1,0,0,16.347902,16.347902,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,54.37,54.8,51.01,47.22,8.333333333333334,2,3,0,0,10,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13653,16657,29715,-9,29716,29714,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-935.15063,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,2,-9,0,0,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13653,16657,29716,29714,-9,-9,1,0,38,0,2,0,1,1,-9,0,2,8.3989725,8.5420389,0,17,-6,-14.393523,0,3,2,2021,10,2,32,32,1,2,0,13.132398,13.132398,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.01,47.22,54.37,54.8,8.333333333333334,1,1,0,0,10,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13653,16657,29717,-9,29716,29714,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1085.7129,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,4,4,1,693.5,518698,81794.188,233012.91,0,0,0,3772.8264 +13654,16658,29718,-9,29720,29719,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-996.29596,-9,2,3,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,5,1,1,0,1,0,2,2,1,516.66669,561545.88,426813.84,46709.117,0,0,0,1025.0396 +13654,16658,29719,29720,-9,-9,1,1,59,0,0,0,3,3,-9,0,2,6.4504948,6.6540213,0,40,2,-78.042206,0,3,3,2021,10,0,50,45,1,0,0,1.9340314,1.9340314,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.95,41.59,35.8,59.5,3.333333333333333,1,1,0,1,11,2,2,1,516.66669,561545.88,426813.84,46709.117,0,0,0,1025.0396 +13654,16658,29720,29719,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,6.9890924,7.0760412,0,41,-2,51.929211,0,3,3,2021,13,3,16,7,1,3,0,6.8983545,6.8983545,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.8,59.5,45.95,41.59,3.333333333333333,1,1,0,0,11,2,2,1,516.66669,561545.88,426813.84,46709.117,0,0,0,1025.0396 +13655,16659,29721,29723,-9,-9,1,1,42,1,2,0,2,2,-9,0,4,8.243227,8.1279335,0,6,13,19.133503,0,-9,-9,2021,6,0,46,45,1,0,0,10.125015,10.125015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,46.98,59.35,8.333333333333334,1,1,0,0,9,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13655,16659,29722,-9,29723,29721,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-870.23334,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13655,16659,29723,29721,-9,-9,1,0,29,1,2,0,2,2,-9,0,4,8.4273443,8.2259865,0,6,-13,-26.257349,0,2,2,2021,10,1,50,31,1,1,0,8.4286156,8.4286156,0,0,0,0,0,0,0,0,1,1,0,0,0,46.98,59.35,57.16,56.15,8.333333333333334,1,1,0,0,7,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13655,16659,29724,-9,29723,29721,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.4314,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,0,518.75,368700.78,274494.72,248934.02,110107.17,0,0,3143.3503 +13656,16660,29725,29726,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.7392149,8.9939413,0,8,0,-66.338829,0,-9,-9,2021,19,8,38,40,1,8,0,19.951756,19.951756,.05,.05,0,0,0,0,0,0,0,0,0,6.3908987,0,45.15,57.46,55.19,54.26,6.666666666666667,1,1,0,0,13,6,5,1,570.5,637194.75,155449.59,366595.81,0,4471.6958,0,4749.0039 +13656,16660,29726,29725,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,8.6599932,8.4886284,0,8,0,-54.884319,0,1,1,2021,2,0,35,40,1,0,0,18.360582,18.360582,0,0,0,0,0,0,0,0,0,0,0,7.5380101,0,55.19,54.26,45.15,57.46,8.333333333333334,1,1,0,0,12,6,5,1,570.5,637194.75,155449.59,366595.81,0,4471.6958,0,4749.0039 +13657,16661,29727,-9,-9,-9,1,0,54,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1028.5686,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.38,34.77,-9,-9,3.333333333333333,2,3,1,1,7,6,1,1,1643,-87890.93,0,0,0,0,0,972.75421 +13657,16662,29728,-9,29727,-9,1,0,33,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1063.6418,0,3,-9,2021,13,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.05,41.26,-9,-9,3.333333333333333,2,3,1,0,1,6,1,1,312,129361.45,0,0,0,-239.78867,0,438.25009 +13657,16663,29729,-9,29727,-9,1,1,32,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1131.9437,0,3,3,2021,7,0,0,27,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,8.333333333333334,2,3,1,0,6,6,1,1,330,-4397.9702,0,0,0,0,0,876.17438 +13657,16664,29730,-9,29727,-9,1,0,29,0,0,0,2,2,-9,0,3,0,0,0,0,0,-957.52209,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.21,55.18,-9,-9,3.333333333333333,2,3,1,0,5,6,1,1,409,-31010.336,0,0,0,0,0,446.73679 +13657,16665,29731,-9,29727,-9,1,1,26,0,0,0,2,2,-9,0,4,7.7309361,7.7985525,0,0,0,-830.82117,0,2,-9,2021,15,3,57,40,1,3,1,5.0912008,5.0912008,0,0,0,0,0,0,0,0,1,1,0,0,0,36.41,54.92,-9,-9,5,2,3,0,0,6,6,3,1,759,245833.8,0,0,0,0,0,1186.5995 +13657,16666,29732,-9,29727,-9,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-858.3197,0,3,-9,2021,14,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3623519,0,31.61,55.71,-9,-9,6.666666666666667,2,3,1,1,0,6,1,1,443,-22455.641,0,0,0,0,0,-156.05075 +13658,16667,29733,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.6077089,6.7803187,0,0,-908.86847,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1686621,6.8974619,64.16,29.7,-9,-9,10,1,1,0,0,0,1,2,1,867,252928.3,164515.23,97138.141,0,0,0,757.87109 +13659,16668,29734,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,3,0,6.0430479,6.0509262,0,0,-948.74841,0,3,3,2021,27,11,0,0,4,11,0,0,0,0,0,0,1,0,.72740519,0,0,1,1,0,0,6.4817705,20.56,41.72,-9,-9,1.666666666666667,1,1,0,0,4,9,2,1,929,-142679.95,220021.59,0,0,0,0,1309.4768 +13660,16669,29735,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.4269867,7.1362257,0,0,-914.30701,0,2,2,2021,18,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2948685,45.17,30.49,-9,-9,5,1,1,0,0,0,4,3,1,1061,542398.06,275415.16,248995.64,0,0,0,1153.9478 +13661,16670,29736,29737,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,0,0,0,20,6,-21.827042,0,3,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54088241,0,46.98,59.35,49.58,55.59,8.333333333333334,1,1,1,0,12,11,3,0,703,1208443.3,574054.38,232694.78,0,0,0,2271.8491 +13661,16670,29737,29736,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.2006607,8.2942057,0,19,-6,-62.72617,0,2,3,2021,14,4,38,38,1,4,0,12.194068,12.194068,.05,.05,0,0,0,0,0,0,0,0,0,7.229856,0,49.58,55.59,46.98,59.35,6.666666666666667,1,1,0,0,14,11,3,0,703,1208443.3,574054.38,232694.78,0,0,0,2271.8491 +13662,16671,29738,29739,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.7144718,8.0591955,0,32,-4,-46.769459,0,2,1,2021,13,3,47,42,1,3,0,12.393163,12.393163,0,0,0,0,0,0,0,74.5,1,1,0,0,0,42,40,57.16,56.15,6.666666666666667,1,1,0,0,14,1,4,1,378,595814.44,297252.5,167420.06,0,6875.3535,0,1233.6992 +13662,16671,29739,29738,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,0,0,0,33,4,-44.153156,0,2,3,2021,7,0,0,24,3,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,1.5975884,0,57.16,56.15,42,40,10,1,1,0,0,13,1,4,1,378,595814.44,297252.5,167420.06,0,6875.3535,0,1233.6992 +13663,16672,29740,29741,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,0,0,7,6,64.42746,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,29.365269,0,0,1,1,0,0,0,58.04,31.83,53.14,51.28,8.333333333333334,1,1,0,0,0,7,2,0,654.5,414218.5,134949,346853.19,0,0,0,2172.3052 +13663,16672,29741,29740,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,5.6501417,5.2210355,7,-6,-64.341896,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,5.5085282,53.14,51.28,58.04,31.83,8.333333333333334,1,1,0,0,0,7,2,0,654.5,414218.5,134949,346853.19,0,0,0,2172.3052 +13664,16673,29742,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,0,0,0,0,0,-934.62604,0,3,3,2021,21,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.37,38.64,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,605,-119106.44,0,0,0,0,753.69397,833.37946 +13665,16674,29743,29744,-9,-9,1,1,47,0,2,0,1,1,-9,0,4,8.9958334,9.0177965,0,4,1,13.875172,0,2,2,2021,8,0,65,55,1,0,0,19.787916,19.787916,.05,.05,0,0,0,0,0,0,1,1,0,.11489786,0,52.82,53.97,43.61,56.01,6.666666666666667,1,1,0,0,11,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13665,16674,29744,29743,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.8654723,7.7989793,0,4,-1,-85.602432,0,3,2,2021,13,2,38,38,1,2,0,8.5043888,8.5043888,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.61,56.01,52.82,53.97,6.666666666666667,1,1,0,0,6,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13665,16674,29745,-9,29744,29743,1,0,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.57178,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13665,16674,29746,-9,29744,29743,1,1,15,0,2,1,3,0,-9,0,5,0,0,0,0,0,-852.52313,-9,3,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,13,5,1,775.25,568460.94,133459.64,242783.28,92903.641,0,19153.197,3842.0295 +13666,16675,29747,-9,29749,29750,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.9551,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13666,16675,29748,-9,29749,29750,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.90729,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13666,16675,29749,29750,-9,-9,1,0,43,0,2,0,3,3,-9,1,1,0,0,0,27,-2,0,0,-9,-9,2021,21,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.33,13.73,52,54.51,0,1,1,0,0,0,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13666,16675,29750,29749,-9,-9,1,1,45,0,2,0,2,2,-9,1,3,0,0,0,27,2,0,0,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,52,54.51,60.33,13.73,6.666666666666667,1,1,0,0,1,6,1,0,420.5,99491.523,0,77282.836,31667.738,0,0,2192.2998 +13667,16676,29751,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,7.2345858,7.2662888,0,0,-1029.7954,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3517246,56.77,44.34,-9,-9,10,1,1,0,0,0,10,3,1,479,478505.06,192291.31,382781.41,0,0,0,1640.6179 +13668,16677,29752,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,7.8212624,8.0512018,0,0,0,-873.45734,0,2,3,2021,6,0,40,40,1,0,0,8.9163675,8.9163675,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,-9,-9,0,1,1,0,0,6,4,4,1,848,225343.05,51326.859,0,0,0,0,1683.4146 +13668,16678,29753,-9,29752,-9,1,1,35,0,0,0,2,2,-9,0,4,8.3891268,8.3638353,0,0,0,-1090.9358,0,2,2,2021,8,0,55,70,1,0,1,9.2393932,9.2393932,0,0,0,0,0,0,0,0,0,0,0,0,0,61.13,43.2,-9,-9,3.333333333333333,1,1,0,1,5,4,4,1,484,-112210.62,-46287.98,0,0,0,0,1658.4056 +13668,16679,29754,-9,29752,-9,1,1,31,0,0,0,2,2,-9,0,4,7.7808104,8.0303087,0,0,0,-967.43561,0,2,-9,2021,1,0,40,48,1,0,1,7.9512486,7.9512486,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,774,85147.039,0,0,0,0,0,1184.7789 +13669,16680,29755,29756,-9,-9,1,1,62,0,0,0,3,3,-9,0,4,0,5.9552279,5.910852,10,8,-42.550503,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6643615,61.11,48.86,54.96,53.17,8.333333333333334,1,1,0,0,0,4,3,0,581.5,707296.75,19003.242,0,0,4289.6753,0,1282.9509 +13669,16680,29756,29755,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.7036529,7.3686504,0,10,-8,94.656906,0,-9,-9,2021,7,0,30,30,1,0,0,6.1857653,6.1857653,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,61.11,48.86,8.333333333333334,1,1,0,0,9,4,3,0,581.5,707296.75,19003.242,0,0,4289.6753,0,1282.9509 +13670,16681,29757,29759,-9,-9,1,0,28,1,1,0,2,2,-9,0,4,5.9641185,6.2273602,0,9,0,94.736992,0,2,2,2021,6,0,6,31,1,0,0,9.6064634,9.6064634,.05,.05,0,0,0,0,0,7,1,1,0,2.5751741,0,48.28,60.18,38.64,55.03,8.333333333333334,1,1,0,0,7,9,3,1,203.66667,58204.141,-47673.109,112084.59,126509.92,1783.7098,0,2397.0173 +13670,16681,29758,-9,29757,29759,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1045.5443,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,203.66667,58204.141,-47673.109,112084.59,126509.92,1783.7098,0,2397.0173 +13670,16681,29759,29757,-9,-9,1,1,28,1,1,0,2,2,-9,0,3,8.265646,8.5787678,0,9,0,-10.286288,0,1,1,2021,21,9,42,40,1,9,0,13.118222,13.118222,.05,.05,0,0,0,0,0,2,1,1,0,3.5692911,0,38.64,55.03,48.28,60.18,5,1,1,0,0,9,9,3,1,203.66667,58204.141,-47673.109,112084.59,126509.92,1783.7098,0,2397.0173 +13671,16682,29760,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,7.9933681,7.9402585,0,0,0,-980.18915,0,3,3,2021,10,0,40,40,1,0,0,7.1677642,7.1677642,0,0,0,0,0,0,0,0,0,0,0,0,0,52.25,53.24,-9,-9,5,1,1,0,0,12,12,4,0,572,-44032.215,47422.258,0,0,0,446.75967,1412.032 +13672,16683,29761,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.709445,6.120234,0,0,-965.44202,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0868702,5.8424993,42.63,47.86,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,968,403717.22,62355.961,306475.81,0,0,0,911.29749 +13673,16684,29762,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1039.0649,0,3,1,2021,13,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.89,18.68,-9,-9,5,1,1,0,0,0,9,2,0,1605,52846.086,0,0,0,0,0,1480.522 +13673,16685,29763,-9,-9,-9,1,1,19,0,0,0,3,3,-9,0,5,7.9377241,7.7163076,0,0,0,-1131.4414,0,-9,-9,2021,18,5,36,0,1,5,0,6.5884032,6.5884032,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.44,49.63,-9,-9,10,1,1,0,1,1,9,3,0,1305,88814.859,53222.949,0,0,0,0,811.44513 +13674,16686,29764,29765,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.0847788,8.4263468,0,7,-1,119.00926,0,-9,-9,2021,10,0,39,40,1,0,0,10.039495,10.039495,.05,.05,0,0,0,0,0,0,0,0,0,3.9404504,0,54.2,57.49,52.05,55.95,8.333333333333334,1,1,0,0,8,4,5,1,678,356599.72,252751.28,326077.78,111164.81,0,0,2852.5696 +13674,16686,29765,29764,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.5307503,8.3007946,0,7,1,-41.941662,0,2,1,2021,10,0,43,37,1,0,0,10.734035,10.734035,.05,.05,0,0,0,0,0,0,0,0,0,3.5350404,0,52.05,55.95,54.2,57.49,8.333333333333334,1,1,0,0,8,4,5,1,678,356599.72,252751.28,326077.78,111164.81,0,0,2852.5696 +13675,16687,29766,29767,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.7674785,7.7733994,0,12,2,11.207408,0,2,2,2021,13,2,39,50,1,2,0,8.4508467,8.4508467,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.96,49.32,41.55,43.6,0,2,3,0,0,14,5,4,1,1631,106643.42,186695.59,0,0,18525.344,1408.553,3297.1316 +13675,16687,29767,29766,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1392241,8.3641663,0,26,-2,3.0412176,0,3,3,2021,20,8,40,0,1,8,0,10.711257,10.711257,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.55,43.6,36.96,49.32,5,4,2,0,1,1,5,4,1,1631,106643.42,186695.59,0,0,18525.344,1408.553,3297.1316 +13675,16688,29768,-9,29767,29766,1,0,23,0,0,0,1,1,1,0,3,0,0,0,0,0,-901.76398,-9,2,2,2021,20,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.1,54.56,-9,-9,10,2,3,1,0,0,5,2,1,425,-23496.666,8797.3066,0,0,0,0,0 +13675,16689,29769,-9,29767,29766,1,0,20,0,0,0,2,2,1,0,5,0,0,0,0,0,-918.2099,-9,2,2,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,2,3,1,0,0,5,1,1,904,-82724.406,0,0,0,0,0,0 +13676,16690,29770,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1051.6287,0,2,1,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.63,58.55,-9,-9,5,1,1,1,1,0,8,1,0,2109,936522.81,36970.324,814179.44,0,0,0,859.27844 +13677,16691,29771,29772,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,7.4561491,7.3330803,52,0,37.86137,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.75478399,7.4471617,53,47,62.01,38.87,1.666666666666667,1,1,0,0,0,5,2,1,346,1867194.6,335820.44,208418.25,0,0,0,2036.2463 +13677,16691,29772,29771,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,0,0,52,0,-44.729507,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.5182571,0,62.01,38.87,53,47,10,1,1,0,0,0,5,2,1,346,1867194.6,335820.44,208418.25,0,0,0,2036.2463 +13678,16692,29773,-9,29775,-9,1,1,37,0,0,0,1,1,-9,0,4,8.4673986,8.2888365,0,0,0,-1082.4176,0,3,-9,2021,11,0,39,-9,1,0,0,12.502356,12.502356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,-9,-9,8.333333333333334,2,3,0,0,9,4,4,1,302,-20748.885,-93602.625,0,0,0,0,1891.0601 +13678,16693,29774,-9,29775,-9,1,0,41,0,0,0,2,2,-9,0,4,8.7876816,8.7460833,0,0,0,-885.85785,0,3,-9,2021,11,0,38,38,1,1,0,17.039709,17.039709,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,2,3,0,0,1,4,5,1,949,47980.391,-47266.813,158994.72,56609.105,2143.7534,0,2172.8706 +13678,16694,29775,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,1,0,0,0,0,0,-971.76917,0,-9,-9,2021,22,10,0,0,4,10,0,0,0,0,0,0,1,0,115.34223,0,0,1,1,0,0,0,21.31,31.29,-9,-9,8.333333333333334,2,3,0,0,0,4,1,1,1026,-81076.125,0,0,0,0,0,1289.5095 +13679,16695,29776,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.7561431,6.8058934,0,0,-1060.7133,0,1,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.99756,7.0829239,53.1,52.62,-9,-9,8.333333333333334,1,1,0,0,7,2,2,1,532,474050.09,474295.81,97822.406,0,0,0,1461.3116 +13680,16696,29777,29778,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.4136372,7.1791816,11,2,15.242532,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3449001,7.6428857,57.16,56.15,51.58,50.6,8.333333333333334,1,1,0,0,0,5,4,1,648.5,1589104.3,623293.75,344224.94,0,0,0,5209.9844 +13680,16696,29778,29777,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,7.8330746,8.2913694,7.5357947,38,-2,-8.3308916,0,-9,2,2021,21,8,16,12,1,8,0,25.238995,25.238995,0,0,0,0,0,0,0,0,1,1,0,7.9542713,7.526454,51.58,50.6,57.16,56.15,8.333333333333334,1,1,0,0,13,5,4,1,648.5,1589104.3,623293.75,344224.94,0,0,0,5209.9844 +13681,16697,29779,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,1,0,0,0,0,0,-946.78345,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,21.02566,0,0,1,1,0,0,0,56.18,14.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,320,-44550.703,0,0,0,0,0,621.83978 +13682,16698,29780,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,7.5792923,7.424078,0,0,0,-960.90601,0,3,3,2021,14,2,4,22,1,2,0,50.978664,50.978664,0,0,0,0,0,0,0,0,0,0,0,0,0,51.85,48.84,-9,-9,8.333333333333334,3,4,0,0,10,8,3,0,428,-79924.242,95042.055,0,0,0,807.82709,213.39388 +13683,16699,29781,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,7.0142827,7.1215944,0,0,-1072.1664,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,35.493229,0,0,1,1,0,0,6.810092,50.91,16.5,-9,-9,5,1,1,0,0,0,2,3,0,627,339229.47,237649.36,330574.03,0,0,0,1180.6682 +13684,16700,29782,29783,-9,-9,1,0,43,0,3,0,1,1,-9,0,5,9.0140505,9.2181778,0,17,-5,123.25761,0,2,2,2021,5,0,47,37,1,0,0,18.75448,18.75448,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,49.94,58.01,10,1,1,0,0,9,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13684,16700,29783,29782,-9,-9,1,1,48,0,3,0,1,1,-9,0,4,7.6739841,7.8234916,0,18,5,-138.93816,0,2,2,2021,10,0,12,26,1,0,0,23.932148,23.932148,.05,.05,0,0,0,0,0,0,1,1,0,2.8524811,0,49.94,58.01,54.1,59.11,6.666666666666667,1,1,0,0,12,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13684,16700,29784,-9,29782,29783,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.4205,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13684,16700,29785,-9,29782,29783,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-948.52606,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,700.5,478196.28,362800,232206.84,140614.28,0,0,3573.7024 +13685,16701,29786,29788,-9,-9,1,1,25,0,1,0,2,2,-9,0,3,8.1502676,8.0370455,0,4,-2,54.128239,0,-9,-9,2021,5,0,39,39,1,0,0,11.71417,11.71417,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,46.4,39.55,8.333333333333334,1,1,0,0,4,4,3,0,402.33334,50661.957,19645.809,0,0,0,0,3168.9377 +13685,16701,29787,-9,29788,29786,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.4447,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,402.33334,50661.957,19645.809,0,0,0,0,3168.9377 +13685,16701,29788,29786,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.9534473,7.2245607,0,4,2,-102.6418,0,-9,-9,2021,8,1,14,14,1,1,0,10.959292,10.959292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.4,39.55,57.33,53.46,10,1,1,0,0,6,4,3,0,402.33334,50661.957,19645.809,0,0,0,0,3168.9377 +13686,16702,29789,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,3,0,6.3858566,6.642262,0,0,-1077.4355,-9,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.3422737,55,45,-9,-9,8,3,4,0,0,0,4,2,1,889,42727.512,61496.762,38448.727,0,0,-492.45325,830.99646 +13687,16703,29790,-9,29794,29791,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1033.5027,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29791,29794,-9,-9,1,1,41,1,3,0,2,2,-9,0,3,7.068635,7.1285706,0,19,4,39.835129,0,3,3,2021,12,2,60,24,1,2,0,2.2861271,2.2861271,0,0,0,0,0,0,0,0,1,1,0,0,0,38.54,50.26,56.2,48.66,8.333333333333334,2,3,0,0,9,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29792,-9,29794,29791,1,1,13,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1068.1559,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29793,-9,29794,29791,1,0,16,1,3,1,3,0,-9,0,4,0,0,0,0,0,-952.69452,-9,3,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.13,63.25,-9,-9,5,2,3,0,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13687,16703,29794,29791,-9,-9,1,0,37,1,3,0,3,3,-9,0,3,0,0,0,19,-4,-47.476532,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.2,48.66,38.54,50.26,10,2,3,0,0,0,8,2,0,713.40002,-67649.797,0,0,0,0,0,1958.2321 +13688,16704,29795,-9,29797,29798,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-893.13556,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13688,16704,29796,-9,29797,29798,1,0,10,1,2,1,3,0,-9,0,4,0,0,0,0,0,-974.3595,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13688,16704,29797,29798,-9,-9,1,0,39,1,2,0,1,1,-9,0,4,0,0,0,13,-4,-17.281887,0,1,1,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.53,56.44,49.25,61.25,10,2,3,0,0,1,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13688,16704,29798,29797,-9,-9,1,1,43,1,2,0,1,1,-9,0,5,9.0007553,9.3054686,0,7,4,-73.029152,0,2,1,2021,9,0,40,40,1,0,0,26.763973,26.763973,.05,.05,0,0,0,0,0,0,0,0,0,9.5813227,0,49.25,61.25,59.53,56.44,8.333333333333334,2,3,0,0,9,8,5,1,1312.5,671379.31,191273.09,682705.56,215147.58,0,0,6348.4961 +13689,16705,29799,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,6.9086347,6.9970369,0,0,-980.63513,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,17.987976,0,0,1,1,0,1.6310195,6.8790188,53.64,22.54,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,224,125785.3,94511.055,274815.75,0,0,0,1453.7592 +13690,16706,29800,29801,-9,-9,1,0,50,0,0,0,1,1,-9,0,5,9.0200291,9.0657387,0,5,-6,142.4062,0,-9,-9,2021,13,1,60,57,1,1,0,12.504323,12.504323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,63.65,49.16,8.333333333333334,1,1,0,0,8,7,5,1,964,1087605.8,559574.13,583835.63,248639.91,-1268.6387,0,9955.1426 +13690,16706,29801,29800,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,9.1354713,9.2042503,0,5,6,-6.0714002,0,3,2,2021,8,0,45,45,1,0,0,27.551205,27.551205,.05,.05,0,0,0,0,0,0,0,0,0,8.8289213,0,63.65,49.16,45.81,61.51,8.333333333333334,1,1,0,0,9,7,5,1,964,1087605.8,559574.13,583835.63,248639.91,-1268.6387,0,9955.1426 +13691,16707,29802,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.2082624,8.1351595,0,0,-1013.7775,0,3,3,2021,18,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.4114323,37.47,39.94,-9,-9,5,1,1,0,0,5,11,4,1,881,697252.25,627548.63,24560.469,0,0,0,1919.0386 +13692,16708,29803,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,7.7042246,8.4721031,7.2960472,0,0,-1068.4875,0,-9,-9,2021,11,0,38,39,1,0,0,8.8616362,8.8616362,.05,.05,0,0,0,0,0,0,0,0,0,7.7819824,5.8124623,44.19,58.01,-9,-9,5,1,1,0,0,8,7,4,0,180,130667.81,-30409.908,0,0,0,0,1318.692 +13692,16709,29804,-9,29803,-9,1,0,31,0,0,0,2,2,-9,0,4,7.8530197,8.4267111,0,0,0,-895.54712,0,3,-9,2021,11,0,35,35,1,2,1,8.9998569,8.9998569,0,0,0,0,0,0,0,0,0,0,0,0,0,48,56,-9,-9,7,1,1,0,0,1,7,4,0,82,-14048.194,0,0,0,0,0,1429.4105 +13692,16710,29805,-9,29803,-9,1,1,28,0,0,0,2,2,-9,0,4,7.8788748,7.969573,0,0,0,-926.43774,0,3,-9,2021,10,0,38,35,1,1,1,8.6143427,8.6143427,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,-9,-9,7,1,1,0,0,1,7,4,0,330,-59029.684,3652.0256,0,0,0,0,1136.5756 +13693,16711,29806,29807,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,8.023572,7.9633918,0,6,26,-9.9589319,0,-9,-9,2021,12,0,8,60,1,0,0,41.542717,41.542717,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.49,44.77,50.34,56.4,1.666666666666667,1,1,0,0,9,1,4,0,857.5,214534.61,-13509.563,224223.03,0,4106.6724,0,2635.9312 +13693,16711,29807,29806,-9,-9,1,0,37,0,0,0,2,2,-9,0,4,8.0509014,7.8993082,0,6,-26,41.17144,0,2,2,2021,22,10,40,40,1,10,0,8.7673435,8.7673435,0,0,0,0,0,0,0,0,0,0,0,0,0,50.34,56.4,44.49,44.77,6.666666666666667,1,1,0,0,7,1,4,0,857.5,214534.61,-13509.563,224223.03,0,4106.6724,0,2635.9312 +13694,16712,29808,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.4036651,7.3455901,0,0,0,-998.80884,0,-9,-9,2021,7,0,30,18,1,0,0,5.0231352,5.0231352,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,10,12,3,0,207,96398.477,-10936.712,149222.81,0,0,1887.8018,1525.8711 +13694,16713,29809,-9,29808,-9,1,0,20,0,1,0,2,2,-9,0,3,7.3965068,7.5797696,0,0,0,-936.14087,0,2,-9,2021,6,0,30,0,1,0,1,6.9249392,6.9249392,.05,.05,0,0,0,0,0,0,1,0,1,0,0,59.7,53.75,-9,-9,8.333333333333334,1,1,0,0,1,12,3,0,132,-13238.941,65758.633,0,0,3579.9844,0,983.95178 +13695,16714,29810,-9,29811,29812,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1178,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13695,16714,29811,29812,-9,-9,1,0,33,1,2,0,1,1,-9,0,3,8.3499584,8.088747,0,4,-4,103.88872,0,-9,-9,2021,11,0,40,40,1,0,0,9.3436956,9.3436956,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.78,50.88,18.48,54.07,3.333333333333333,2,3,0,0,4,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13695,16714,29812,29811,-9,-9,1,1,37,1,2,0,1,1,-9,0,2,9.4419165,9.4163761,0,4,4,-106.46546,0,-9,-9,2021,12,0,40,42,1,0,0,43.057114,43.057114,.05,.05,0,0,0,0,0,0,0,0,0,7.8807869,0,18.48,54.07,42.78,50.88,3.333333333333333,2,3,0,0,7,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13695,16714,29813,-9,29811,29812,1,0,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-915.19153,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,1026,547161.19,101660.7,844769.88,417670.38,0,2034.0848,6321.5835 +13696,16715,29814,-9,29815,29816,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.0294,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,432,316386.34,-8047.8423,380617.13,112543.67,0,0,4508.583 +13696,16715,29815,29816,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,8.3191948,8.3979168,0,11,2,-117.2499,0,1,1,2021,12,3,37,37,1,3,0,11.239829,11.239829,0,0,0,0,0,0,0,0,1,1,0,1.4894974,0,39.05,59.16,25.6,47.78,8.333333333333334,1,1,0,0,10,10,5,1,432,316386.34,-8047.8423,380617.13,112543.67,0,0,4508.583 +13696,16715,29816,29815,-9,-9,1,1,35,1,1,0,1,1,-9,0,2,8.6347055,8.662631,0,11,-2,-59.808712,0,1,1,2021,19,7,38,38,1,7,0,19.215067,19.215067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.6,47.78,39.05,59.16,6.666666666666667,1,1,0,0,12,10,5,1,432,316386.34,-8047.8423,380617.13,112543.67,0,0,4508.583 +13697,16716,29817,29818,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.208004,7.9751325,0,1,-5,-6.171525,-9,-9,-9,2021,6,0,38,0,1,0,0,10.704055,10.704055,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,54.55,49.25,8.333333333333334,1,1,0,0,14,7,5,1,114.5,929472.63,149461.92,810979.88,0,0,0,10054.988 +13697,16716,29818,29817,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.4807234,9.7002325,8.5655985,1,5,-16.726543,0,3,1,2021,16,6,20,24,1,6,0,75.249008,75.249008,.05,.05,0,0,0,0,0,0,1,1,0,2.8588235,8.9818401,54.55,49.25,54.79,55.86,3.333333333333333,1,1,0,0,14,7,5,1,114.5,929472.63,149461.92,810979.88,0,0,0,10054.988 +13698,16717,29819,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,2,7.5148692,7.5814605,6.1045861,0,0,-1037.0006,0,-9,-9,2021,3,0,16,16,1,0,0,14.213435,14.213435,.05,.05,0,0,0,0,0,0,1,1,0,5.9677052,0,54.65,27.97,-9,-9,10,1,1,0,0,9,9,3,1,788.5,52458.395,-10533.301,0,0,0,0,2223.3813 +13698,16717,29820,-9,29819,-9,1,1,17,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1031.2511,1,2,-9,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,1,1,0,0,1,9,3,1,788.5,52458.395,-10533.301,0,0,0,0,2223.3813 +13698,16718,29821,-9,29819,-9,1,0,22,0,0,0,1,1,-9,0,3,7.4022369,7.4037457,0,0,0,-1061.6376,0,2,-9,2021,26,10,25,29,1,10,1,6.7259383,6.7259383,0,0,0,0,0,0,0,7,1,1,0,0,0,42.91,54.71,-9,-9,3.333333333333333,1,1,0,0,5,9,3,1,1173,-36706.707,0,0,0,0,0,453.94 +13699,16719,29822,-9,29823,29825,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1033.7823,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13699,16719,29823,29825,-9,-9,1,0,30,0,2,0,2,2,-9,0,5,8.9708004,8.843524,0,10,-5,102.102,0,2,2,2021,20,7,50,70,1,7,0,15.126409,15.126409,.05,.05,0,0,0,0,0,2,1,1,0,0,0,20.58,66.45,57.06,57.76,6.666666666666667,1,1,0,0,7,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13699,16719,29824,-9,29823,29825,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-952.01898,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13699,16719,29825,29823,-9,-9,1,1,35,0,2,0,1,1,-9,0,5,8.4301043,8.2320061,0,12,5,75.666504,0,1,1,2021,8,0,45,50,1,0,0,10.683905,10.683905,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,20.58,66.45,8.333333333333334,1,1,0,0,7,11,5,1,1373.75,237961.75,65754.18,233963.61,172970.63,3795.8989,0,4060.3679 +13700,16720,29826,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,7.83149,7.8554263,0,0,0,-1064.9945,0,-9,-9,2021,13,1,37,37,1,1,0,9.1040964,9.1040964,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,1.666666666666667,1,1,0,0,4,11,4,0,3125,49715.016,0,0,0,0,0,1682.9277 +13701,16721,29827,29828,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,8.5457745,8.5814743,0,14,-2,-84.636322,0,-9,-9,2021,5,0,45,45,1,0,0,16.484793,16.484793,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,59.15,49.67,8.333333333333334,1,1,0,0,7,1,4,1,378,110344.27,104492.41,137481.84,151436,0,0,3879.2881 +13701,16721,29828,29827,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.297122,8.2416782,0,14,2,19.71397,0,-9,-9,2021,9,0,58,60,1,0,0,7.8554611,7.8554611,.05,.05,0,0,0,0,0,0,1,1,0,6.5898662,0,59.15,49.67,59.53,56.44,8.333333333333334,1,1,0,0,8,1,4,1,378,110344.27,104492.41,137481.84,151436,0,0,3879.2881 +13702,16722,29829,29830,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,8.6376667,8.6636162,47,-6,15.250237,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9337983,7.7889829,57.16,56.15,46.05,57.22,8.333333333333334,1,1,0,0,6,12,4,1,488.5,1105948.3,563275.88,366537.78,0,0,0,4787.7637 +13702,16722,29830,29829,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.2160835,6.5790515,47,6,3.5824542,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4227591,6.6168866,46.05,57.22,57.16,56.15,8.333333333333334,1,1,0,0,0,12,4,1,488.5,1105948.3,563275.88,366537.78,0,0,0,4787.7637 +13703,16723,29831,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.7113581,10.052668,0,0,0,-1027.1075,-9,2,3,2021,7,0,55,0,1,0,0,32.964272,32.964272,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,2,3,0,0,7,8,5,0,647,810754.81,194441.05,176360.13,43310.359,0,0,3779.4644 +13704,16724,29832,-9,29836,29834,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-971.80872,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29833,-9,29836,29834,1,1,5,0,4,1,3,0,-9,0,4,0,0,0,0,0,-931.32324,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29834,29836,-9,-9,1,1,44,0,4,0,3,3,-9,0,4,8.7238026,8.7108679,0,13,5,-108.11262,0,2,3,2021,9,0,40,45,1,1,0,15.744678,15.744678,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,59.53,56.44,8,1,1,0,0,1,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29835,-9,29836,29834,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-950.90271,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29836,29834,-9,-9,1,0,39,0,4,0,1,1,-9,0,4,9.2371616,9.5106773,0,13,-5,125.15105,0,3,1,2021,6,0,38,30,1,0,0,30.185114,30.185114,.05,.05,0,0,0,0,0,0,1,1,0,3.4645994,0,59.53,56.44,52,56,8.333333333333334,1,1,0,0,9,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13704,16724,29837,-9,29836,29834,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1016.8867,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,1016,4331334.5,984562.5,869559.19,61490.742,15146.516,0,6199.251 +13705,16725,29838,-9,-9,-9,1,1,44,0,0,0,2,2,-9,0,3,7.7465944,7.5094485,0,0,0,-891.6181,0,1,1,2021,12,0,25,0,1,0,0,10.391701,10.391701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.61,56.93,-9,-9,5,1,1,0,0,10,5,3,0,1736,-22931.174,55155.563,0,0,0,1296.2394,1096.8478 +13706,16726,29839,29840,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.2965012,8.4981728,0,6,-2,36.566944,0,3,3,2021,8,0,50,45,1,0,0,9.4429989,9.4429989,.05,.05,0,0,0,0,0,0,0,0,0,3.7682242,0,55.73,53.98,54.79,55.86,8.333333333333334,1,1,0,0,9,1,5,1,373.5,800083.44,751504.88,154647.03,39474.66,0,0,3142.176 +13706,16726,29840,29839,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.2067327,8.2247896,0,6,2,140.77182,0,3,3,2021,11,2,32,30,1,2,0,15.107303,15.107303,0,0,0,0,0,0,0,0,0,0,0,3.2383554,0,54.79,55.86,55.73,53.98,8.333333333333334,1,1,0,0,9,1,5,1,373.5,800083.44,751504.88,154647.03,39474.66,0,0,3142.176 +13707,16727,29841,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-975.8374,0,3,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.72,38.05,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,110,-63587.691,97204.297,28885.326,4601.4038,0,0,616.06378 +13708,16728,29842,29844,-9,-9,1,1,48,0,1,0,3,3,-9,0,4,8.1797085,8.5020008,0,8,3,38.394032,0,-9,-9,2021,9,0,40,40,1,1,0,14.790904,14.790904,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,57.06,57.76,8,1,1,0,0,1,5,4,1,474,-78747.547,-9116.582,0,0,8375.6992,2896.5398,2500.1445 +13708,16728,29843,-9,29844,29842,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.7228,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,474,-78747.547,-9116.582,0,0,8375.6992,2896.5398,2500.1445 +13708,16728,29844,29842,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,7.6829104,7.7591958,0,8,-3,-21.43384,0,3,3,2021,9,0,20,20,1,0,0,15.019672,15.019672,0,0,0,0,0,0,0,0,1,1,0,1.3750435,0,57.06,57.76,52,55,1.666666666666667,1,1,0,0,11,5,4,1,474,-78747.547,-9116.582,0,0,8375.6992,2896.5398,2500.1445 +13709,16729,29845,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1049719,8.5857372,0,7,-1,-106.2053,0,3,3,2021,6,0,40,30,1,0,0,10.781037,10.781037,.05,.05,0,0,0,0,0,0,0,0,0,6.8987761,0,57.51,45.08,60.12,54.8,8.333333333333334,1,1,0,0,6,2,5,1,4179,95433.898,271022.59,165204.63,51179.773,6593.543,1592.4985,1831.2091 +13709,16730,29846,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,8.2876205,8.2179718,0,7,1,86.956741,0,-9,-9,2021,7,0,15,30,1,0,0,30.907307,30.907307,.05,.05,0,0,0,0,0,0,0,0,0,6.685605,0,60.12,54.8,57.51,45.08,10,1,1,0,0,8,2,5,1,676,607636.63,401282.44,291228.88,0,946.29254,657.09717,2181.927 +13710,16731,29847,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.9721823,8.2007399,6.5026774,0,0,-1155.9509,0,3,3,2021,11,0,47,37,1,0,0,9.3527718,9.3527718,0,0,0,0,0,0,0,2,0,0,0,6.3938947,7.0532503,54.22,42.37,-9,-9,8.333333333333334,1,1,0,0,14,13,4,1,487,660105.38,638705.94,46203.566,0,0,0,1856.1506 +13711,16732,29848,29849,-9,-9,1,1,30,0,0,0,3,3,-9,0,4,8.6730862,8.8707647,0,1,0,53.148357,-9,-9,-9,2021,10,0,48,0,1,1,0,16.597368,16.597368,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,50,57,35.22,56.72,7,1,1,0,0,1,11,5,1,282,1957370.8,1569934,354712.41,227672.09,0,0,4390.0273 +13711,16732,29849,29848,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.7909269,8.636261,0,1,0,-78.939964,0,2,2,2021,16,4,41,43,1,4,0,14.307004,14.307004,0,0,0,0,0,0,0,0,0,0,0,3.5273702,0,35.22,56.72,50,57,8.333333333333334,1,1,0,0,7,11,5,1,282,1957370.8,1569934,354712.41,227672.09,0,0,4390.0273 +13712,16733,29850,29851,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,7.4473219,7.4568629,0,6,21,131.17516,0,-9,-9,2021,7,0,12,14,1,0,0,18.051361,18.051361,0,0,0,0,0,0,0,0,1,1,0,4.9171891,0,57.16,56.15,57.06,57.76,1.666666666666667,1,1,0,0,9,7,3,1,1460,607583.38,293423.66,177856.61,0,4257.7578,0,1141.3691 +13712,16733,29851,29850,-9,-9,1,0,49,0,0,0,2,2,-9,0,5,0,6.0599041,6.0750532,6,-21,119.35635,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8491468,0,57.06,57.76,57.16,56.15,10,1,1,0,0,5,7,3,1,1460,607583.38,293423.66,177856.61,0,4257.7578,0,1141.3691 +13713,16734,29852,-9,29853,29854,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-913.28839,-9,2,2,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.47,66.09,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,681.66669,109509.09,68968.766,311909.56,139114.7,0,0,3650.8657 +13713,16734,29853,29854,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,9.1098089,8.8352757,0,30,1,-65.094795,0,2,2,2021,8,1,65,60,1,1,0,15.245479,15.245479,0,0,0,0,0,0,0,0,1,1,0,0,0,58.6,37.67,53,54,6.666666666666667,1,1,0,0,8,9,5,1,681.66669,109509.09,68968.766,311909.56,139114.7,0,0,3650.8657 +13713,16734,29854,29853,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,7.9256907,7.8835425,0,30,-1,77.424988,0,3,2,2021,9,0,45,55,1,1,0,6.2547841,6.2547841,.05,.05,0,0,0,0,0,0,1,1,0,2.3342223,0,53,54,58.6,37.67,8,1,1,0,0,1,9,5,1,681.66669,109509.09,68968.766,311909.56,139114.7,0,0,3650.8657 +13714,16735,29855,29856,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.8417702,8.3479366,50,-2,-84.044411,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,8.0169716,8.5518236,47.98,48.03,52,52,8.333333333333334,1,1,0,0,9,4,4,1,376,907307.75,658017.75,116310.58,34864.594,0,0,4105.6934 +13714,16735,29856,29855,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.2979217,6.0250154,50,2,-32.209961,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.986907,52,52,47.98,48.03,8.333333333333334,1,1,0,0,7,4,4,1,376,907307.75,658017.75,116310.58,34864.594,0,0,4105.6934 +13715,16736,29857,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.0658908,7.2389784,5.5599232,0,0,-1061.3132,0,3,-9,2021,10,0,16,20,1,0,0,9.1856852,9.1856852,.05,.05,0,0,0,0,0,0,1,1,0,5.3712187,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,12,2,0,4254,-94030.625,-3910.9875,95125.328,41332.254,5373.4697,977.85034,1616.2134 +13716,16737,29858,-9,29859,-9,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1078.6261,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,2,0,682.33331,-121987.12,0,0,0,0,0,358.49277 +13716,16737,29859,-9,-9,-9,1,0,26,1,2,0,2,2,-9,0,4,0,7.1116152,7.0422497,0,0,-1006.1838,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.9358592,0,51.24,58.84,-9,-9,8.333333333333334,2,3,0,1,0,7,2,0,682.33331,-121987.12,0,0,0,0,0,358.49277 +13716,16737,29860,-9,29859,-9,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1036.1016,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,7,2,0,682.33331,-121987.12,0,0,0,0,0,358.49277 +13717,16738,29861,29862,-9,-9,1,1,32,0,0,0,1,1,-9,1,5,0,0,0,5,3,0,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,51,59,47,57,1.666666666666667,1,1,1,0,1,6,1,0,586.5,15781.291,17805.844,225764.39,41680.156,0,0,1994.9663 +13717,16738,29862,29861,-9,-9,1,0,29,0,0,0,2,2,-9,1,4,0,0,0,5,-3,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,59,7,1,1,0,0,0,6,1,0,586.5,15781.291,17805.844,225764.39,41680.156,0,0,1994.9663 +13718,16739,29863,29864,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,7.3451824,7.737071,28,-4,8.34027,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.774847,42.12,39.15,45.17,41.54,1.666666666666667,1,1,0,0,7,6,3,1,635,1027269.8,630256,218168.06,0,0,0,2388.875 +13718,16739,29864,29863,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.0454569,5.5815797,28,4,-23.78302,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.6056328,5.6598592,45.17,41.54,42.12,39.15,8.333333333333334,1,1,0,0,0,6,3,1,635,1027269.8,630256,218168.06,0,0,0,2388.875 +13719,16740,29865,-9,29868,29869,1,1,11,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1142.4139,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29866,-9,29868,29869,1,1,10,1,4,1,3,0,-9,0,5,0,0,0,0,0,-973.16302,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29867,-9,29868,29869,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-883.25873,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29868,29869,-9,-9,1,0,36,1,4,0,2,2,-9,0,4,8.0070276,8.2937708,6.1321874,1,8,-15.101865,0,2,2,2021,10,0,24,35,1,0,0,14.031228,14.031228,0,0,0,0,0,0,0,0,1,1,0,6.3298492,0,45.91,59.89,44.81,44.57,10,1,1,0,0,13,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29869,29868,-9,-9,1,1,28,1,4,0,2,2,-9,0,1,7.6694756,7.6586032,0,1,-8,-97.460365,-9,-9,-9,2021,17,4,80,0,1,4,0,3.1572735,3.1572735,0,0,0,0,0,0,0,0,1,1,0,0,0,44.81,44.57,45.91,59.89,6.666666666666667,4,5,0,0,4,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13719,16740,29870,-9,29868,29869,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-995.06671,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,0,1140,-30008.979,0,0,0,0,0,2046.2375 +13720,16741,29871,29873,-9,-9,1,1,54,0,1,0,2,2,-9,0,4,8.4870834,8.2999439,0,12,2,101.15584,0,2,2,2021,26,10,40,40,1,10,0,14.332483,14.332483,.05,.05,0,0,0,0,0,7,1,1,0,6.8870254,0,27.9,62.98,28.84,38.44,3.333333333333333,1,1,0,0,13,6,5,0,673.66669,159385.16,9156.7783,0,0,0,6531.6367,3961.3235 +13720,16741,29872,-9,29873,29871,1,1,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1046.7109,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,5,0,673.66669,159385.16,9156.7783,0,0,0,6531.6367,3961.3235 +13720,16741,29873,29871,-9,-9,1,0,52,0,1,0,1,1,-9,0,1,8.1329546,8.4589624,0,12,-2,-5.5653148,0,2,2,2021,34,12,69,42,1,12,0,6.663754,6.663754,0,0,0,0,0,0,0,2,1,1,0,4.2511435,0,28.84,38.44,27.9,62.98,3.333333333333333,1,1,0,0,13,6,5,0,673.66669,159385.16,9156.7783,0,0,0,6531.6367,3961.3235 +13721,16742,29874,29875,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,6.2764053,6.5896668,37,16,-64.259949,0,2,2,2021,22,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7428327,6.3981371,40.62,18.3,46.56,57.02,0,3,4,0,0,0,8,3,1,719.5,1415074.3,810085.38,550390,0,0,0,2767.8896 +13721,16742,29875,29874,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,7.4969783,8.015274,6.8483305,37,-16,59.83387,0,3,3,2021,7,1,16,16,1,1,0,14.461921,14.461921,0,0,0,0,0,0,0,0,1,1,0,0,7.0208478,46.56,57.02,40.62,18.3,8.333333333333334,3,4,0,0,9,8,3,1,719.5,1415074.3,810085.38,550390,0,0,0,2767.8896 +13721,16743,29876,-9,29875,29874,1,1,26,0,0,0,2,2,-9,1,3,6.0793028,6.3139663,0,0,0,-950.03082,0,1,3,2021,7,0,8,8,1,0,1,7.952642,7.952642,0,0,0,0,0,0,0,0,1,1,0,.25989068,0,49.18,46.58,-9,-9,5,3,4,0,0,3,8,2,1,355,33629.523,0,0,0,0,0,554.72119 +13721,16744,29877,-9,29875,29874,1,1,50,0,0,0,2,2,-9,0,5,7.7095895,7.9228196,0,0,0,-1084.835,0,1,3,2021,8,1,40,20,1,1,1,6.5226879,6.5226879,0,0,.05,0,0,0,0,0,1,1,0,0,0,41.47,57.49,-9,-9,6.666666666666667,3,4,0,0,3,8,3,1,244,483789.31,41636.906,408331.31,-10151.901,0,0,1586.8442 +13722,16745,29878,29879,-9,-9,1,0,38,0,3,0,1,1,-9,0,5,8.2402821,8.5018291,0,8,-3,-65.525314,-9,2,3,2021,6,0,26,0,1,0,0,20.255327,20.255327,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29879,29878,-9,-9,1,1,41,0,3,0,1,1,-9,0,4,9.0946989,8.4065075,0,8,3,-87.59893,-9,2,2,2021,8,0,57,0,1,0,0,15.812403,15.812403,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,11,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29880,-9,29878,29879,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-978.34619,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29881,-9,29878,29879,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1063.589,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13722,16745,29882,-9,29878,29879,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.73798,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,702.79999,299861,200686.81,186961.3,132821.81,2849.8184,0,3849.7585 +13723,16746,29883,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,2,0,5.9735222,5.9595065,0,0,-962.2597,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2731571,6.1228509,65.64,18.73,-9,-9,6.666666666666667,1,1,0,0,5,9,2,1,690,394781.47,68379.273,190937.58,0,0,0,1287.6975 +13724,16747,29884,29885,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,8.2717924,8.2957716,0,41,3,-119.85842,0,2,2,2021,9,1,40,40,1,1,0,14.505836,14.505836,0,0,0,0,0,0,0,0,0,0,0,0,0,45.49,58.84,51.24,58.84,8.333333333333334,1,1,0,0,8,2,4,1,738,2338889.5,2180829,132887.69,0,-551.04871,0,2476.3901 +13724,16747,29885,29884,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.2333364,7.4905138,0,40,-3,-34.520103,0,3,2,2021,9,0,28,29,1,0,0,9.5040932,9.5040932,0,0,0,0,0,0,0,2,0,0,0,0,0,51.24,58.84,45.49,58.84,8.333333333333334,1,1,0,0,8,2,4,1,738,2338889.5,2180829,132887.69,0,-551.04871,0,2476.3901 +13724,16748,29886,-9,29885,29884,1,1,34,0,0,0,2,2,-9,0,4,7.6903133,7.6770573,0,0,0,-921.77106,0,2,1,2021,11,0,34,40,1,0,1,8.6813059,8.6813059,0,0,0,0,0,0,0,0,0,0,0,1.0893427,0,38.34,62.12,-9,-9,1.666666666666667,1,1,0,0,5,2,3,1,640,-210953.84,0,0,0,0,0,1136.5815 +13725,16749,29887,29888,-9,-9,1,0,51,0,0,0,1,1,-9,0,2,7.5562224,7.3891921,0,30,1,25.146749,0,3,3,2021,15,4,12,50,1,4,0,12.961484,12.961484,0,0,0,0,0,0,0,0,0,0,0,0,0,55.02,30.67,60.6,43.75,5,1,1,0,0,9,7,3,1,511,202355.27,-69178.359,417846.34,26321.482,0,0,1223.8989 +13725,16749,29888,29887,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,7.0761409,6.9630733,0,31,-1,8.1952,0,2,2,2021,9,0,45,45,1,0,0,3.8142068,3.8142068,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.6,43.75,55.02,30.67,8.333333333333334,1,1,0,0,9,7,3,1,511,202355.27,-69178.359,417846.34,26321.482,0,0,1223.8989 +13725,16750,29889,-9,29887,29888,1,0,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-976.89343,1,1,1,2021,20,8,0,37,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,35.52,48.67,-9,-9,6.666666666666667,1,1,0,0,9,7,1,1,1117,308063.25,0,0,0,0,0,-108.97079 +13725,16751,29890,-9,29887,29888,1,1,21,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1105.821,-9,1,1,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6100399,0,54.45,56.22,-9,-9,8.333333333333334,1,1,0,0,4,7,1,1,498,0,0,0,0,0,0,256.27365 +13726,16752,29891,29893,-9,-9,1,0,35,0,2,0,1,1,-9,0,5,6.7649555,7.0985284,0,13,0,116.30655,0,2,3,2021,11,0,13,7,1,0,0,7.5348406,7.5348406,0,0,0,0,0,0,0,0,0,0,0,0,0,44.91,59.07,47.62,56.48,8.333333333333334,1,1,0,0,6,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13726,16752,29892,-9,29891,29893,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.18744,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13726,16752,29893,29891,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,9.7057352,9.4018497,0,8,0,32.296936,0,2,2,2021,11,1,50,45,1,1,0,39.44635,39.44635,.05,.05,0,0,0,0,0,0,0,0,0,3.9428058,0,47.62,56.48,44.91,59.07,6.666666666666667,1,1,0,0,11,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13726,16752,29894,-9,29891,29893,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-984.40228,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,612,628075.69,160961.78,579809.31,324399.5,0,0,5229.4282 +13727,16753,29895,-9,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.221971,7.0696502,0,0,-887.53992,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0673141,6.7867227,13.11,65.94,-9,-9,0,1,1,0,0,10,7,2,1,733,465510.91,246371.73,440033.56,0,0,0,931.06403 +13728,16754,29896,29897,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,0,0,0,13,-1,0,0,-9,-9,2021,6,0,0,65,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.27,48.47,39.48,58.54,10,1,1,1,1,10,1,1,1,626.5,0,0,0,0,0,0,0 +13728,16754,29897,29896,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,0,0,0,25,1,0,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.48,58.54,62.27,48.47,3.333333333333333,1,1,1,0,13,1,1,1,626.5,0,0,0,0,0,0,0 +13729,16755,29898,-9,-9,-9,1,0,42,0,2,0,2,2,-9,0,5,8.0890036,8.6291304,6.6862407,0,0,-989.77783,-9,3,1,2021,8,0,20,0,1,0,0,18.906816,18.906816,.05,.05,0,0,0,0,0,0,1,1,0,7.6056566,0,50.38,58.02,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,1733,169447.89,214739.66,224418.48,214600.19,2225.6206,0,1991.0181 +13730,16756,29899,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,3,0,6.5366545,6.6794925,0,0,-1008.2957,0,-9,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3363829,5.4537911,54,44,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,578,-5965.0391,-40509.137,0,0,0,0,2052.3586 +13731,16757,29900,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,4,0,7.6461964,7.5824971,0,0,-899.23566,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.7784715,7.6958375,45.91,55.94,-9,-9,10,1,1,0,0,0,4,3,1,569,211320.75,152359.48,220428.95,0,0,0,1838.0178 +13732,16758,29901,-9,-9,-9,1,1,45,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1044.7267,-9,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,67.48,37.81,-9,-9,10,4,2,0,0,0,7,1,1,1064,-5222.8779,0,0,0,0,0,254.79298 +13733,16759,29902,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1197.8058,0,3,3,2021,36,12,0,0,4,12,0,0,0,0,0,0,1,0,8.2033386,0,0,1,1,0,0,0,17.48,26.15,-9,-9,0,2,3,0,1,0,6,1,1,763,216269.61,0,0,0,0,0,1317.7664 +13733,16760,29903,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,7.7585011,8.0531769,0,0,0,-1076.7115,0,-9,-9,2021,22,10,36,0,1,10,0,7.4794846,7.4794846,0,0,0,0,0,0,0,0,1,1,0,0,0,32.1,52.67,-9,-9,1.666666666666667,2,3,0,0,5,6,3,1,414,233069.39,0,0,0,0,0,1240.6378 +13734,16761,29904,29905,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,8.1267176,8.0154238,6.6820869,5,-4,-21.500101,0,3,3,2021,6,0,49,49,1,0,0,8.1658983,8.1658983,0,0,0,0,0,0,0,0,1,1,0,6.6816373,6.3103628,59.43,58.05,38.34,62.12,8.333333333333334,1,1,0,0,7,7,4,1,1984,125026.66,0,0,0,0,0,3219.9775 +13734,16761,29905,29904,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,7.7873335,7.9083681,0,5,4,17.083717,0,2,1,2021,13,3,34,36,1,3,0,9.2645063,9.2645063,0,0,0,0,0,0,0,7,1,1,0,3.6515613,0,38.34,62.12,59.43,58.05,3.333333333333333,1,1,0,0,7,7,4,1,1984,125026.66,0,0,0,0,0,3219.9775 +13735,16762,29906,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,2,0,0,0,0,0,-997.49042,-9,-9,-9,2021,16,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,27.97,56.54,-9,-9,5,1,1,0,1,0,7,1,0,289,151422.02,0,0,0,0,0,555.62701 +13736,16763,29907,-9,29909,29908,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.84406,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,1156.3334,790387.31,255423.67,585335.5,231069.8,0,0,3280.0088 +13736,16763,29908,29909,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.5521717,8.404851,0,12,5,-42.132244,0,-9,-9,2021,12,0,35,38,1,0,0,14.527169,14.527169,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.79,55.65,37.28,55.9,8.333333333333334,1,1,0,0,13,11,4,1,1156.3334,790387.31,255423.67,585335.5,231069.8,0,0,3280.0088 +13736,16763,29909,29908,-9,-9,1,0,32,0,2,0,2,2,-9,0,3,7.6324735,8.0297461,0,12,-5,38.722347,0,2,2,2021,12,0,30,30,1,0,0,9.1021824,9.1021824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.28,55.9,37.79,55.65,8.333333333333334,1,1,0,0,12,11,4,1,1156.3334,790387.31,255423.67,585335.5,231069.8,0,0,3280.0088 +13737,16764,29910,29911,-9,-9,1,0,43,0,2,0,1,1,-9,0,4,6.6336594,6.7000155,0,11,-2,54.740288,0,1,2,2021,12,0,15,0,1,0,0,5.4767385,5.4767385,.05,.05,0,0,0,0,0,0,0,0,0,8.6042757,0,46.1,59.99,44.19,58.01,8.333333333333334,1,1,0,0,4,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13737,16764,29911,29910,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,9.4041271,9.234437,0,11,2,-2.3594308,0,3,3,2021,14,1,45,77,1,1,0,33.197113,33.197113,.05,.05,.05,0,0,0,0,0,0,0,0,7.8760257,0,44.19,58.01,46.1,59.99,6.666666666666667,1,1,0,0,12,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13737,16764,29912,-9,29910,29911,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-878.36871,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13737,16764,29913,-9,29910,29911,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-884.03979,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.87710941,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,448.25,895149.94,260724.94,734924.19,62929.797,0,0,9493.7061 +13738,16765,29914,-9,29916,29917,1,0,18,0,1,1,2,0,0,0,3,0,0,0,0,0,-987.15137,-9,2,2,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.2,52.31,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,933,164539.67,0,0,0,4114.0098,0,690.43372 +13738,16766,29915,-9,29916,29917,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-985.93195,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,4,0,1112,425458.81,136163.7,466678.44,162733.94,7533.8965,4961.8813,5210.8286 +13738,16766,29916,29917,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.5468044,8.5250254,0,8,-4,37.478722,0,-9,-9,2021,6,0,35,37,1,0,0,17.719496,17.719496,.05,.05,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,46.9,36.8,8.333333333333334,1,1,0,0,11,8,4,0,1112,425458.81,136163.7,466678.44,162733.94,7533.8965,4961.8813,5210.8286 +13738,16766,29917,29916,-9,-9,1,1,50,0,1,0,2,2,-9,1,2,8.1172285,8.2031326,0,8,4,-28.968693,0,-9,-9,2021,10,1,57,56,1,1,0,5.5236702,5.5236702,.05,.05,0,0,0,0,0,0,1,0,1,0,0,46.9,36.8,57.33,53.46,5,4,2,0,0,13,8,4,0,1112,425458.81,136163.7,466678.44,162733.94,7533.8965,4961.8813,5210.8286 +13739,16767,29918,29919,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,6.5339956,6.6661491,0,42,0,42.258369,0,2,-9,2021,11,0,15,15,1,0,0,5.8226414,5.8226414,0,0,0,0,0,0,0,0,1,1,0,0,0,45.42,51,58.15,52.91,5,1,1,0,0,10,8,4,1,963.5,921329.25,365082.25,232885.06,0,0,0,2107.3906 +13739,16767,29919,29918,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3742685,8.15413,0,42,0,-3.1916399,0,2,-9,2021,7,0,35,45,1,0,0,11.699784,11.699784,0,0,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,45.42,51,6.666666666666667,1,1,0,0,10,8,4,1,963.5,921329.25,365082.25,232885.06,0,0,0,2107.3906 +13739,16768,29920,-9,29918,29919,1,1,30,0,0,0,1,1,-9,1,5,0,0,0,0,0,-1085.1677,0,2,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,1,0,4,8,1,1,2266,0,0,0,0,0,0,1047.052 +13739,16769,29921,-9,29918,29919,1,0,27,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1008.5088,0,2,2,2021,11,0,0,45,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,-9,-9,7,1,1,1,0,0,8,1,1,413,4692.5356,0,0,0,0,0,21.995089 +13740,16770,29922,29923,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,25,-14,0,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,0,49.26,34.67,53.73,30.88,5,1,1,0,0,0,4,1,0,602.5,-23656.973,-25935.164,56076.391,0,0,0,1823.6492 +13740,16770,29923,29922,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,13,14,0,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,53.73,30.88,49.26,34.67,6.666666666666667,1,1,0,0,0,4,1,0,602.5,-23656.973,-25935.164,56076.391,0,0,0,1823.6492 +13741,16771,29924,-9,29926,29925,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-925.67114,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13741,16771,29925,29926,-9,-9,1,1,41,0,2,0,3,3,-9,0,3,7.1469636,7.1368551,0,12,11,37.864628,0,2,1,2021,6,0,24,24,1,0,0,5.6035833,5.6035833,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.29,52.11,8.333333333333334,3,4,0,0,5,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13741,16771,29926,29925,-9,-9,1,0,30,0,2,0,3,3,-9,1,3,0,0,0,12,-11,-27.532206,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,60.29,52.11,57.33,53.46,10,3,4,0,0,3,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13741,16771,29927,-9,29926,29925,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.1304,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,2,0,413.5,-78353.508,0,0,0,0,2284.7815,2451.2036 +13742,16772,29928,-9,29929,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.43256,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,780.66669,1593.4642,-8222.373,0,0,0,0,2299.0505 +13742,16772,29929,-9,-9,-9,1,0,29,0,2,0,2,2,-9,0,5,8.5832739,8.7105522,0,0,0,-947.6662,0,-9,-9,2021,25,10,45,39,1,10,0,11.565033,11.565033,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.85,64.06,-9,-9,6.666666666666667,1,1,0,0,6,2,4,1,780.66669,1593.4642,-8222.373,0,0,0,0,2299.0505 +13742,16772,29930,-9,29929,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1022.2416,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,780.66669,1593.4642,-8222.373,0,0,0,0,2299.0505 +13743,16773,29931,29932,-9,-9,1,1,26,0,0,0,2,2,-9,0,4,8.176919,8.2078009,0,3,-1,4.3854156,-9,-9,-9,2021,12,0,43,0,1,0,0,8.8820734,8.8820734,0,0,0,0,0,0,0,0,0,0,0,0,0,56.86,50.75,51.83,57.2,8.333333333333334,1,1,0,0,4,2,5,1,176,114351.27,148546.63,0,0,5584.998,0,3670.2603 +13743,16773,29932,29931,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,8.8278685,8.9060431,0,3,1,-102.00697,0,2,1,2021,8,1,47,37,1,1,0,23.072449,23.072449,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,56.86,50.75,10,1,1,0,0,5,2,5,1,176,114351.27,148546.63,0,0,5584.998,0,3670.2603 +13743,16774,29933,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.1078386,8.2578201,0,0,0,-1036.4845,0,-9,-9,2021,2,0,44,40,1,0,0,9.4788723,9.4788723,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,2,4,1,787,31542.42,0,0,0,0,0,1285.8489 +13744,16775,29934,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1069.8916,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,46.37,51.39,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,1020,50738.781,0,0,0,0,0,1192.4454 +13745,16776,29935,29936,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,7.2601295,7.3357792,53,3,-48.984699,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5375481,51.42,42.58,60.27,49.27,8.333333333333334,1,1,0,0,0,5,3,1,2225.5,847020.75,448253.69,311631.13,0,0,0,2105.0686 +13745,16776,29936,29935,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.8623495,6.5471921,53,-3,121.80945,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8419333,60.27,49.27,51.42,42.58,8.333333333333334,1,1,0,0,0,5,3,1,2225.5,847020.75,448253.69,311631.13,0,0,0,2105.0686 +13746,16777,29937,29938,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.8643923,8.9404478,0,12,3,21.521782,0,-9,-9,2021,8,0,10,50,1,0,0,82.258705,82.258705,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.25,55.03,41.06,62.04,8.333333333333334,1,1,0,0,14,9,5,1,521,181498.16,103666.3,0,0,0,0,7143.1953 +13746,16777,29938,29937,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,9.3968077,9.434864,0,12,-3,38.238464,0,1,1,2021,16,4,46,44,1,4,0,30.045691,30.045691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,44.25,55.03,5,1,1,0,0,14,9,5,1,521,181498.16,103666.3,0,0,0,0,7143.1953 +13747,16778,29939,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,3,8.2195463,8.1302643,1.9630305,0,0,-968.37909,0,3,3,2021,12,1,38,39,1,1,0,12.214757,12.214757,.05,.05,0,0,0,0,0,0,0,0,0,0,2.4616189,47.15,56.66,-9,-9,8.333333333333334,1,1,0,0,12,2,4,1,2151,114410.67,64820.445,79917.664,21782.955,0,0,1213.5924 +13747,16779,29940,-9,-9,29939,1,1,32,0,0,0,2,2,-9,0,3,7.9381418,8.2263699,0,0,0,-932.59326,0,-9,3,2021,17,5,39,39,1,5,1,8.2770081,8.2770081,0,0,0,0,0,0,0,0,0,0,0,0,0,37.11,55.92,-9,-9,5,1,1,0,0,12,2,4,1,721,287684.81,0,0,0,0,0,1602.2911 +13748,16780,29941,29942,-9,-9,1,0,47,0,1,0,2,2,-9,0,1,7.0635281,6.9798155,0,21,-8,40.747276,0,2,2,2021,13,1,17,17,1,1,0,10.103551,10.103551,0,0,0,0,0,0,0,0,1,1,0,0,0,44.41,32.82,48.76,53.24,5,1,1,0,0,12,2,3,1,996.5,310233.56,244049.58,44977.961,22865.537,1881.5107,0,2033.8647 +13748,16780,29942,29941,-9,-9,1,1,55,0,1,0,2,2,-9,0,4,8.0257139,7.8986316,0,21,8,97.164825,0,2,2,2021,16,4,40,44,1,4,0,9.4844246,9.4844246,.05,.05,0,0,0,0,0,0,1,1,0,.91525578,0,48.76,53.24,44.41,32.82,5,1,1,0,0,12,2,3,1,996.5,310233.56,244049.58,44977.961,22865.537,1881.5107,0,2033.8647 +13749,16781,29943,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.9415097,6.9602356,0,0,-1096.5582,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2567964,7.1526217,48.28,53.42,-9,-9,8.333333333333334,1,1,0,0,6,4,2,1,78,170698.52,235256.19,0,0,0,0,997.63849 +13750,16782,29944,29945,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,42,0,85.769928,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,50.51,26.92,8.333333333333334,1,1,0,0,0,6,2,1,1020.5,459228.81,163121.64,155193.34,0,0,0,1680.5001 +13750,16782,29945,29944,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.2616296,6.1238995,42,0,-154.62471,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,8.6937971,0,0,1,1,0,1.0059375,6.1335869,50.51,26.92,56.1,49.93,8.333333333333334,1,1,0,0,0,6,2,1,1020.5,459228.81,163121.64,155193.34,0,0,0,1680.5001 +13751,16783,29946,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,8.3317471,8.5047083,5.989738,0,0,-942.21313,0,1,2,2021,10,0,17,17,1,0,0,26.768,26.768,.05,.05,0,0,0,0,0,14.5,1,1,0,5.7079072,0,43.83,43.24,-9,-9,8.333333333333334,1,1,0,0,12,13,4,0,131,136896.88,190315.95,0,0,5159.562,0,2680.3013 +13752,16784,29947,29948,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.0749102,7.907434,0,16,-1,146.74594,0,3,3,2021,6,0,21,36,1,0,0,15.502165,15.502165,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,55.09,55.87,6.666666666666667,4,5,0,0,6,8,3,1,878.5,2009623.3,1158703,758877.06,0,5284.2681,0,1556.1469 +13752,16784,29948,29947,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,7.2011819,7.0757799,0,16,1,-23.801777,0,-9,-9,2021,10,0,9,13,1,0,0,17.012407,17.012407,0,0,0,0,0,0,0,0,1,1,0,0,0,55.09,55.87,60.12,54.8,8.333333333333334,1,1,0,0,9,8,3,1,878.5,2009623.3,1158703,758877.06,0,5284.2681,0,1556.1469 +13752,16785,29949,-9,29948,29947,1,0,18,0,0,1,2,0,0,1,4,0,0,0,0,0,-970.09198,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,0,8,1,1,344,86966.703,0,0,0,0,0,941.3006 +13752,16786,29950,-9,29948,29947,1,1,29,0,0,0,2,2,-9,0,4,7.3880148,7.4404182,0,0,0,-1114.941,0,2,1,2021,10,0,35,35,1,1,1,4.5920434,4.5920434,0,0,0,0,0,0,0,0,1,1,0,1.4851882,0,49,58,-9,-9,7,4,5,0,0,1,8,3,1,364,-10732.718,0,0,0,0,0,702.94403 +13753,16787,29951,29952,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,7.5138321,7.5263214,0,16,0,-20.67754,-9,2,2,2021,9,1,27,0,1,1,0,7.2431912,7.2431912,.05,.05,0,0,0,0,0,0,1,1,0,.23831478,0,61.01,53.18,50,56,1.666666666666667,2,3,0,0,9,4,3,1,498.5,163184.55,36712.34,186095.5,46964.383,5295.5674,0,2807.9087 +13753,16787,29952,29951,-9,-9,1,1,41,0,2,0,1,1,-9,0,4,8.1126556,8.1243296,0,16,0,73.935181,0,2,2,2021,10,0,37,40,1,1,0,12.558726,12.558726,.05,.05,.05,0,0,0,0,0,1,1,0,4.0343814,0,50,56,61.01,53.18,7,2,3,0,0,12,4,3,1,498.5,163184.55,36712.34,186095.5,46964.383,5295.5674,0,2807.9087 +13754,16788,29953,-9,-9,-9,1,0,91,0,0,0,3,3,-9,0,1,0,5.1961017,5.2406702,0,0,-1024.1815,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,2.6632035,25.601078,18.798449,0,1,1,0,0,5.2503266,58.35,15.54,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,331,84349.07,-37115.375,0,0,0,0,808.01221 +13755,16789,29954,29955,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,8.0756807,7.8638196,49,-1,58.762768,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,6.3729582,7.9919696,56.52,45.61,57.93,46.29,6.666666666666667,1,1,0,0,0,8,4,1,673.5,2858348.3,981312,633927.25,0,0,0,5008.7939 +13755,16789,29955,29954,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,8.0314293,8.0652218,49,1,-43.345161,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.9010758,8.4561253,57.93,46.29,56.52,45.61,10,1,1,0,0,0,8,4,1,673.5,2858348.3,981312,633927.25,0,0,0,5008.7939 +13756,16790,29956,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,8.2499838,8.1560364,0,0,0,-938.29675,0,-9,-9,2021,10,0,43,40,1,0,0,9.5573673,9.5573673,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,-9,-9,8.333333333333334,1,1,0,0,6,8,4,0,904,185989.58,114115.27,0,0,0,0,514.31012 +13757,16791,29957,29958,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,6.375217,6.1915689,63,-1,19.165176,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.63648158,6.7657866,40.21,25.75,60.05,26.59,5,1,1,0,0,0,12,2,0,941,134589.66,-5068.8164,87932.75,0,0,0,2208.833 +13757,16791,29958,29957,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.4047136,4.2127447,63,1,-3.4320548,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1954484,4.407033,60.05,26.59,40.21,25.75,8.333333333333334,1,1,0,0,0,12,2,0,941,134589.66,-5068.8164,87932.75,0,0,0,2208.833 +13758,16792,29959,-9,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.4288464,8.7786341,0,0,0,-1168.4641,0,2,2,2021,6,0,45,46,1,0,0,17.240091,17.240091,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.38,49.11,-9,-9,6.666666666666667,1,1,0,0,9,12,5,0,1791,114336.89,116874.73,131546.81,76866.93,6031.6519,1715.3186,2125.5232 +13759,16793,29960,29961,-9,-9,1,0,52,0,0,0,2,2,-9,1,2,0,0,0,10,-2,15.712057,0,3,1,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,0,1,1.2328091,0,22.55,52.62,33.42,56.72,0,1,1,0,0,9,9,3,1,1397,1841012.5,208743.66,866930,0,0,0,2600.3542 +13759,16793,29961,29960,-9,-9,1,1,54,0,0,0,1,1,-9,1,2,0,8.0130262,7.8798089,10,2,-17.730858,0,2,1,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,120,1,0,1,9.1827383,0,33.42,56.72,22.55,52.62,3.333333333333333,1,1,0,1,9,9,3,1,1397,1841012.5,208743.66,866930,0,0,0,2600.3542 +13759,16794,29962,-9,29960,29961,1,1,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-857.30579,0,2,1,2021,8,0,0,8,3,0,1,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,51.24,58.84,-9,-9,6.666666666666667,1,1,0,0,2,9,1,1,274,160312.89,0,0,0,0,0,0 +13759,16795,29963,-9,29960,29961,1,0,18,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1060.9038,-9,2,1,2021,19,6,0,0,3,6,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.12,18.4,-9,-9,3.333333333333333,1,1,0,0,0,9,1,1,335,96489.828,0,0,0,0,0,874.16266 +13760,16796,29964,29965,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.0689507,9.188982,0,11,-4,63.211411,-9,-9,-9,2021,12,0,45,0,1,0,0,23.776701,23.776701,0,0,0,0,0,0,0,2,0,0,0,0,0,49.04,55.86,38.38,50.07,8.333333333333334,1,1,0,0,12,12,5,1,766.5,2102895,1834351.3,320003.78,139355.16,49589.773,13611.021,6921.9385 +13760,16796,29965,29964,-9,-9,1,1,51,0,0,0,1,1,-9,0,3,9.5449238,9.6215878,0,11,4,-62.205166,0,1,1,2021,14,2,45,45,1,2,0,27.515894,27.515894,.05,.05,0,0,0,0,0,2,0,0,0,0,0,38.38,50.07,49.04,55.86,6.666666666666667,1,1,0,0,11,12,5,1,766.5,2102895,1834351.3,320003.78,139355.16,49589.773,13611.021,6921.9385 +13761,16797,29966,-9,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,6.6322608,6.5638824,0,0,-959.09503,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,6.7783566,5.992661,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,14,6,2,1,33,759445.69,537646.94,0,0,0,0,866.62225 +13762,16798,29967,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,8.8472109,9.0526714,0,0,-1031.1621,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6488295,9.1901493,51.41,56.15,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,303,1335368.5,590354.5,630946.69,0,0,0,6081.3599 +13763,16799,29968,29970,-9,-9,1,1,48,0,2,0,1,1,-9,0,4,9.5835276,9.2411804,0,7,-2,14.514889,0,2,2,2021,9,1,45,50,1,1,0,37.126358,37.126358,.05,.05,0,0,0,0,0,0,1,1,0,2.130862,0,48.87,58.55,38.51,59.43,8.333333333333334,1,1,0,1,8,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16799,29969,-9,29970,29968,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1089.6244,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16799,29970,29968,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.7303743,8.555727,0,7,2,6.310761,0,2,2,2021,16,4,52,52,1,4,0,14.216906,14.216906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.51,59.43,48.87,58.55,6.666666666666667,1,1,0,0,8,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16799,29971,-9,29970,29968,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1051.1079,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,4,5,1,1144.25,1075335.3,613199.19,444979.13,95202.492,0,0,5603.8354 +13763,16800,29972,-9,29970,29968,1,0,19,0,2,0,2,2,0,0,3,0,0,0,0,0,-952.90112,-9,1,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,430,0,0,0,0,0,0,792.84998 +13764,16801,29973,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,3,7.8026395,7.6687589,0,0,0,-893.05621,0,-9,-9,2021,9,2,38,38,1,2,0,6.5897002,6.5897002,0,0,0,0,0,0,0,0,0,0,0,0,0,39.19,51.25,-9,-9,10,1,1,0,0,3,9,3,0,375,-152199.61,0,0,0,0,0,222.4328 +13765,16802,29974,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.9403033,8.0019989,0,0,0,-1089.0883,0,3,3,2021,11,0,38,38,1,0,0,9.0918026,9.0918026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,-9,-9,6.666666666666667,1,1,0,0,14,13,3,1,789.5,1423922.8,1254793.5,110446.63,0,2951.4717,0,1435.7362 +13765,16802,29975,-9,29974,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-994.46783,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,1,789.5,1423922.8,1254793.5,110446.63,0,2951.4717,0,1435.7362 +13766,16803,29976,29977,-9,-9,1,1,66,0,0,0,2,2,-9,0,1,0,6.5044622,6.537375,12,3,-92.666557,0,-9,-9,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,62.651749,0,0,1,1,0,2.6364553,6.641336,26.54,21.77,28.62,21.06,1.666666666666667,1,1,0,0,9,11,2,1,2378.5,309637.53,229025.13,109965.48,0,0,0,2796.877 +13766,16803,29977,29976,-9,-9,1,0,63,0,0,0,3,3,-9,1,1,0,0,0,12,-3,-11.9434,0,-9,-9,2021,20,7,0,15,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,28.62,21.06,26.54,21.77,3.333333333333333,1,1,0,0,13,11,2,1,2378.5,309637.53,229025.13,109965.48,0,0,0,2796.877 +13767,16804,29978,29979,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.4017963,8.2053242,0,6,0,-21.464006,0,3,3,2021,6,0,38,38,1,0,0,12.667678,12.667678,.05,.05,0,0,0,0,0,0,0,0,0,6.3654943,0,44.7,48.48,54,54,6.666666666666667,1,1,0,0,7,12,4,1,1795,676485.88,669070.56,192902.13,11761.114,0,0,2619.3872 +13767,16804,29979,29978,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.715414,8.0139513,5.305481,6,0,-96.73304,0,3,3,2021,10,0,37,37,1,0,0,8.5900326,8.5900326,.05,.05,0,0,0,0,0,0,0,0,0,0,5.8444257,54,54,44.7,48.48,10,1,1,0,0,7,12,4,1,1795,676485.88,669070.56,192902.13,11761.114,0,0,2619.3872 +13768,16805,29980,-9,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,0,0,-996.5415,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.44,35.92,-9,-9,5,3,4,0,0,6,8,1,0,1668,113477.02,0,0,0,0,0,718.64685 +13768,16806,29981,-9,29980,-9,1,0,25,0,0,0,2,2,-9,0,3,7.1485047,7.4173074,0,0,0,-942.16382,0,1,-9,2021,12,0,20,16,1,0,0,7.3630266,7.3630266,0,0,0,0,0,0,0,0,1,1,0,3.484951,0,23.95,56.72,-9,-9,6.666666666666667,3,4,0,0,1,8,3,0,1325,246244.97,0,0,0,0,0,839.03516 +13769,16807,29982,29983,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.8149967,8.7405481,0,25,1,-36.938129,0,-9,-9,2021,6,0,40,44,1,0,0,20.524569,20.524569,.05,.05,0,0,0,0,0,7,0,0,0,7.5597563,0,57.16,56.15,60.02,56.42,8.333333333333334,1,1,0,0,11,2,5,1,747.5,1156882.3,672883.5,217850.92,0,0,0,6407.9131 +13769,16807,29983,29982,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.9234838,9.0673685,0,24,-1,-89.40934,0,3,2,2021,11,0,40,45,1,0,0,29.009941,29.009941,.05,.05,0,0,0,0,0,7,0,0,0,7.9014139,0,60.02,56.42,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,747.5,1156882.3,672883.5,217850.92,0,0,0,6407.9131 +13769,16808,29984,-9,29983,29982,1,1,21,0,0,0,1,1,1,0,5,8.108079,8.4167547,0,0,0,-1007.5981,-9,1,2,2021,5,0,40,0,1,0,1,11.127627,11.127627,.05,.05,0,0,0,0,0,0,0,0,0,1.1072559,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,546,50388.82,-150245.3,0,0,0,0,1512.3827 +13769,16809,29985,-9,29983,29982,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1036.0083,-9,1,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,52.62,-9,-9,10,1,1,0,0,2,2,1,1,460,129423.38,0,0,0,0,2491.4316,0 +13770,16810,29986,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,5,8.5138235,8.2281113,0,0,0,-895.16656,0,1,1,2021,6,1,42,44,1,1,0,12.938694,12.938694,0,0,0,0,0,0,0,0,0,0,0,3.99283,0,63.95,51.85,-9,-9,8.333333333333334,1,1,0,0,6,8,5,0,176,112071.77,22243.418,0,0,0,0,1894.7312 +13771,16811,29987,-9,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.7706847,7.8453989,0,0,0,-1005.4611,0,3,2,2021,9,0,35,35,1,0,0,9.9092674,9.9092674,0,0,0,0,0,0,0,2,0,0,0,0,0,44.36,54.04,-9,-9,5,1,1,0,0,11,11,4,1,306,0,0,0,0,0,0,654.97583 +13772,16812,29988,29989,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,8.7534361,8.6225224,0,36,0,16.881899,0,3,1,2021,12,1,52,45,1,1,0,13.284031,13.284031,0,0,0,0,0,0,0,0,1,1,0,.64016151,0,45.32,53.5,53,47,6.666666666666667,4,5,0,0,11,10,4,1,1190,3315634.5,810681.38,653879.38,0,0,0,3282.5059 +13772,16812,29989,29988,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,46,9,85.354073,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7193496,0,53,47,45.32,53.5,8,4,5,0,0,0,10,4,1,1190,3315634.5,810681.38,653879.38,0,0,0,3282.5059 +13773,16813,29990,29991,-9,-9,1,1,36,0,0,0,1,1,-9,0,3,7.3241262,7.2030745,0,12,-2,-91.151772,0,-9,-9,2021,12,2,42,30,1,2,0,3.8658047,3.8658047,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.41,61.92,39.34,49.42,6.666666666666667,1,1,0,0,11,5,4,1,961.5,-3288.9824,-30060.563,99034.078,52613.469,0,0,2646.0396 +13773,16813,29991,29990,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.2931242,8.235219,0,12,2,136.67296,0,1,2,2021,19,8,38,38,1,8,0,10.287904,10.287904,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.34,49.42,30.41,61.92,3.333333333333333,1,1,0,0,12,5,4,1,961.5,-3288.9824,-30060.563,99034.078,52613.469,0,0,2646.0396 +13774,16814,29992,29993,-9,-9,1,0,36,1,1,0,1,1,-9,0,3,8.2717009,8.2435579,0,7,-7,-102.77876,0,1,1,2021,9,0,24,24,1,0,0,15.064447,15.064447,0,0,0,0,0,0,0,0,0,0,0,0,0,59.46,36.25,52.6,52.88,8.333333333333334,1,1,0,0,7,10,3,1,498,452290.88,135148.95,452187.69,64649.527,9307.7705,0,5096.2095 +13774,16814,29993,29992,-9,-9,1,1,43,1,1,0,1,1,-9,0,3,0,0,0,7,7,-49.519573,0,2,2,2021,12,0,37,40,1,0,0,.00054775359,.00054775359,.05,.05,0,0,0,0,0,0,0,0,0,8.6332293,0,52.6,52.88,59.46,36.25,8.333333333333334,1,1,0,0,8,10,3,1,498,452290.88,135148.95,452187.69,64649.527,9307.7705,0,5096.2095 +13774,16814,29994,-9,29992,29993,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.321,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,3,1,498,452290.88,135148.95,452187.69,64649.527,9307.7705,0,5096.2095 +13775,16815,29995,-9,-9,-9,1,0,50,0,2,0,2,2,-9,1,1,0,5.659606,5.5348487,0,0,-945.13757,0,-9,-9,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.8400917,0,45.41,10.82,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,624.66669,-112322.38,0,0,0,0,0,1387.2352 +13775,16815,29996,-9,29995,-9,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-817.9472,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,2,0,624.66669,-112322.38,0,0,0,0,0,1387.2352 +13775,16815,29997,-9,29995,-9,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.6788,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,2,0,624.66669,-112322.38,0,0,0,0,0,1387.2352 +13775,16816,29998,-9,29995,-9,1,1,18,0,2,1,2,0,0,1,3,0,0,0,0,0,-974.96515,-9,2,-9,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.67,53.15,-9,-9,10,1,1,0,0,0,4,1,0,225,308368.63,0,0,0,2587.4355,0,-405.50455 +13776,16817,29999,-9,30002,30001,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-825.82953,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13776,16817,30000,-9,30002,30001,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-973.46033,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13776,16817,30001,30002,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.3107662,8.950778,0,6,2,-112.84958,0,-9,-9,2021,9,0,37,40,1,1,0,37.83461,37.83461,.05,.05,.05,0,0,0,0,0,0,0,0,.90195304,0,52,55,52,54.51,7,1,1,0,0,1,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13776,16817,30002,30001,-9,-9,1,0,42,0,2,0,2,2,-9,0,3,6.8814311,6.855361,0,20,-2,21.943499,0,2,3,2021,11,0,20,20,1,0,0,5.2501931,5.2501931,0,0,.05,0,0,0,0,0,0,0,0,5.1065202,0,52,54.51,52,55,8.333333333333334,1,1,0,0,4,7,5,1,726.75,356395.31,145360.86,179758.98,21213.988,0,0,4147.2876 +13777,16818,30003,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1154.1793,0,2,2,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.61,51.04,-9,-9,3.333333333333333,1,1,1,1,4,1,1,1,1034,25437.912,-47755.016,0,0,0,0,0 +13778,16819,30004,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,7.7389407,8.022048,6.2144365,0,0,-1103.8938,0,3,2,2021,10,0,35,35,1,0,0,8.9455109,8.9455109,0,0,0,0,0,0,0,0,1,1,0,1.4520588,6.2096658,52.99,51.28,-9,-9,8.333333333333334,1,1,0,0,12,9,4,1,390,63742.055,-62105.555,0,0,0,2447.0806,2566.9666 +13779,16820,30005,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1071.5723,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.72,14.89,-9,-9,6.666666666666667,1,1,0,0,0,9,1,1,965,60685.68,0,214248.73,0,0,0,714.40509 +13780,16821,30006,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1040.5724,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.62,37.27,-9,-9,10,1,1,0,0,5,4,1,1,308,-71631.102,0,0,0,0,0,1370.0913 +13781,16822,30007,-9,-9,-9,1,1,39,0,0,0,3,3,-9,1,3,0,0,0,0,0,-912.02039,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.57,52.23,-9,-9,5,1,1,0,0,0,4,1,0,558,0,0,0,0,0,0,1034.9915 +13782,16823,30008,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,0,9.1123657,9.139801,0,0,-997.86621,0,3,2,2021,25,11,0,38,3,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.0184708,0,7.99,62.46,-9,-9,3.333333333333333,4,5,1,0,6,8,5,1,476,508329.5,56826.875,281920.22,70143.906,0,0,4564.4927 +13783,16824,30009,30010,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,5.133234,4.8821011,10,8,119.72672,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7837977,5.3617883,60.29,52.11,41.44,19.03,8.333333333333334,1,1,0,0,4,12,2,0,2281,368241.88,131904.84,194087,0,0,0,1812.8484 +13783,16824,30010,30009,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,10,-8,-53.008003,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,15.720805,0,0,1,1,0,0,0,41.44,19.03,60.29,52.11,8.333333333333334,1,1,0,0,0,12,2,0,2281,368241.88,131904.84,194087,0,0,0,1812.8484 +13784,16825,30011,-9,30012,-9,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-912.51111,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,2,3,-9,0,0,8,1,0,702,77524.727,0,0,0,0,0,1109.9424 +13784,16825,30012,-9,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1058.0836,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.52,48.67,-9,-9,10,2,3,0,0,0,8,1,0,702,77524.727,0,0,0,0,0,1109.9424 +13784,16825,30013,-9,30012,-9,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-906.95917,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,2,3,-9,0,0,8,1,0,702,77524.727,0,0,0,0,0,1109.9424 +13784,16826,30014,-9,30012,-9,1,0,18,0,2,0,2,2,1,0,5,6.296648,6.3833585,0,0,0,-997.18494,-9,2,-9,2021,11,3,16,0,1,3,1,3.7345085,3.7345085,0,0,0,0,0,0,0,0,1,1,0,0,0,58.17,54.54,-9,-9,10,2,3,0,0,2,8,2,0,122,0,0,0,0,0,0,563.96271 +13785,16827,30015,30016,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.8622069,8.1636181,10,3,15.391982,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.2899373,7.8090577,56.29,52.37,59.86,40.18,8.333333333333334,1,1,0,0,4,12,3,1,686.5,947314.38,463243.63,240219.88,0,0,0,2610.6396 +13785,16827,30016,30015,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,4.9394093,5.3354521,10,-3,-43.204884,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.32295451,5.3346109,59.86,40.18,56.29,52.37,8.333333333333334,1,1,0,0,1,12,3,1,686.5,947314.38,463243.63,240219.88,0,0,0,2610.6396 +13786,16828,30017,30018,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,9.4142427,9.247056,0,4,7,29.884411,0,-9,-9,2021,20,8,50,50,1,8,0,24.915476,24.915476,0,0,0,0,0,0,0,0,0,0,0,4.7305493,0,25.92,66.48999999999999,43.69,59.95,6.666666666666667,1,1,0,0,5,8,5,1,854,930847.81,264523.69,701995,436602.75,70.450867,0,5665.9961 +13786,16828,30018,30017,-9,-9,1,0,27,0,0,0,1,1,-9,0,5,8.7552137,9.0850754,0,4,-7,-19.974579,0,-9,-9,2021,11,2,38,39,1,2,0,22.322334,22.322334,0,0,0,0,0,0,0,0,0,0,0,1.832472,0,43.69,59.95,25.92,66.48999999999999,10,1,1,0,0,11,8,5,1,854,930847.81,264523.69,701995,436602.75,70.450867,0,5665.9961 +13787,16829,30019,30020,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.5944557,7.1723037,7,-3,92.800743,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.8695779,7.5668497,62.1,51.16,57.06,57.76,10,1,1,0,0,9,5,4,1,433,1119832.1,541638.06,152739.14,0,0,0,2390.3413 +13787,16829,30020,30019,-9,-9,1,1,61,0,0,0,3,3,-9,0,5,8.2708445,8.5917187,0,7,3,22.299442,0,-9,-9,2021,7,0,30,32,1,0,0,17.716696,17.716696,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,62.1,51.16,10,1,1,0,0,9,5,4,1,433,1119832.1,541638.06,152739.14,0,0,0,2390.3413 +13788,16830,30021,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,6.5367365,6.7743425,0,0,-974.55389,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7417765,6.4866977,40.51,26.99,-9,-9,8.333333333333334,1,1,0,0,0,1,2,0,1899,97939.164,60727.902,132521.92,0,0,0,2057.6975 +13789,16831,30022,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.2364535,7.1799674,0,0,0,-999.16357,0,-9,-9,2021,11,0,23,24,1,0,0,6.5922976,6.5922976,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.98,49.06,-9,-9,6.666666666666667,2,3,0,0,7,4,2,1,355,272560.5,105748.61,104798.05,44906.074,0,0,1726.4979 +13790,16832,30023,-9,-9,-9,1,0,79,1,2,0,3,3,-9,0,3,0,0,0,0,0,-966.88232,-9,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,3.4492309,0,0,1,1,0,0,0,65.14,32.13,-9,-9,10,1,1,0,0,0,8,1,1,2086,-58705.258,0,0,0,0,0,1006.0816 +13791,16833,30024,30025,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.7566061,8.6873751,0,25,2,-112.16238,0,3,3,2021,12,4,40,40,1,4,0,19.495234,19.495234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.29,49.66,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,676,180194.7,92351.609,94983.453,64313.555,2771.2341,650.73889,3922.4756 +13791,16833,30025,30024,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.1575184,8.5142593,0,25,-2,104.25745,0,3,3,2021,7,0,30,30,1,0,0,15.179903,15.179903,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,42.29,49.66,8.333333333333334,1,1,0,0,9,4,5,1,676,180194.7,92351.609,94983.453,64313.555,2771.2341,650.73889,3922.4756 +13791,16834,30026,-9,30025,30024,1,0,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-1117.403,-9,1,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,1558,151113.78,0,0,0,0,0,1040.2184 +13792,16835,30027,30028,-9,-9,1,1,66,0,0,0,3,3,-9,0,2,0,6.8915286,6.9545035,44,0,73.82415,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8174019,6.8694072,35.01,36.82,33.98,56,6.666666666666667,1,1,0,0,8,2,2,1,449,625058.13,491982.75,104902.55,0,0,0,1980.1899 +13792,16835,30028,30027,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,0,5.699244,5.6612072,44,0,-130.87694,0,2,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,5.0890455,0,0,1,1,0,4.5493207,5.5617895,33.98,56,35.01,36.82,8.333333333333334,1,1,0,0,1,2,2,1,449,625058.13,491982.75,104902.55,0,0,0,1980.1899 +13793,16836,30029,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,6.4133916,6.3570704,0,0,-886.98163,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,5.9199185,6.1551929,45.58,47.97,-9,-9,5,1,1,0,0,7,5,2,1,3720,218930.63,177975.53,174644.27,0,0,0,732.76062 +13794,16837,30030,30031,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.2765799,8.4326754,0,1,0,16.688128,0,2,2,2021,5,0,30,34,1,0,0,15.646168,15.646168,0,0,0,0,0,0,0,0,1,1,0,7.1392179,0,57.16,56.15,56.77,52.22,8.333333333333334,1,1,0,0,5,8,5,1,217,1350998.4,346987.13,598009.69,0,0,0,5243.0317 +13794,16837,30031,30030,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.6254482,8.5911932,1,9,45.99263,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,4.9949789,8.5714178,56.77,52.22,57.16,56.15,10,1,1,0,0,0,8,5,1,217,1350998.4,346987.13,598009.69,0,0,0,5243.0317 +13795,16838,30032,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1122.498,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,50.54,39.94,-9,-9,10,1,1,0,0,0,5,1,0,510,41012.504,0,0,0,0,0,1263.0912 +13796,16839,30033,-9,30034,30036,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-923.35413,-9,1,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13796,16839,30034,30036,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.3457909,8.4478502,0,17,0,-11.465691,0,2,2,2021,7,0,38,40,1,0,0,19.462828,19.462828,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,54.69,57.47,8.333333333333334,1,1,0,0,7,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13796,16839,30035,-9,30034,30036,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-987.77942,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13796,16839,30036,30034,-9,-9,1,1,44,0,2,0,1,1,-9,0,5,8.9815922,9.0169163,0,18,0,39.116482,0,2,1,2021,9,0,37,37,1,0,0,21.143206,21.143206,.05,.05,0,0,0,0,0,0,1,1,0,5.5006242,0,54.69,57.47,52.82,53.97,8.333333333333334,1,1,0,0,11,10,5,1,491.75,269409.25,125669.59,231773.09,214182.06,0,0,4527.2295 +13797,16840,30037,30038,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,6.830492,7.0518231,0,2,-6,-1.4149656,0,2,3,2021,7,0,40,45,1,0,0,3.4966393,3.4966393,0,0,0,0,0,0,0,0,0,0,0,0,0,59.88,48.2,60.12,54.8,8.333333333333334,1,1,0,0,6,13,3,1,798.5,119881.28,64966.844,116765.89,92297.375,4186.8369,12507.013,899.59387 +13797,16840,30038,30037,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,7.483686,7.723393,0,2,6,-28.243723,-9,-9,-9,2021,5,0,44,0,1,0,0,5.7091646,5.7091646,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,59.88,48.2,8.333333333333334,1,1,0,0,8,13,3,1,798.5,119881.28,64966.844,116765.89,92297.375,4186.8369,12507.013,899.59387 +13798,16841,30039,-9,-9,-9,1,1,58,0,0,0,3,3,-9,0,4,6.6219788,6.7699575,0,0,0,-963.3457,0,-9,-9,2021,10,2,26,26,1,2,0,3.779588,3.779588,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.13,54.7,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,267,-3632.4104,24071.91,0,0,0,0,288.64874 +13799,16842,30040,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,4.1042304,3.7964411,0,0,-1021.7502,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6046181,4.2849422,58.72,43.42,-9,-9,10,1,1,0,0,13,9,2,1,540,255680.78,78769.852,370895.5,0,132.32079,0,2152.196 +13800,16843,30041,30042,-9,-9,1,1,31,0,0,0,2,2,0,0,5,0,0,0,1,0,74.728462,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,57.06,57.76,10,1,1,0,0,4,4,4,1,403,125802.95,56556.984,179494.31,57477.102,0,0,1882.332 +13800,16843,30042,30041,-9,-9,1,0,31,0,0,0,1,1,-9,0,5,8.4736795,8.4725933,0,1,0,-109.87903,-9,-9,-9,2021,7,0,37,0,1,0,0,13.429305,13.429305,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,51.14,60.45,8.333333333333334,1,1,0,0,4,4,4,1,403,125802.95,56556.984,179494.31,57477.102,0,0,1882.332 +13801,16844,30043,30044,-9,-9,1,0,50,0,0,0,1,1,-9,0,2,8.5527496,8.6596069,0,35,-6,15.29002,0,3,1,2021,13,1,38,38,1,1,0,13.775674,13.775674,0,0,0,0,0,0,0,0,0,0,0,0,0,41.95,38.84,56.52,36.33,3.333333333333333,1,1,0,0,13,11,4,1,433,1444259.3,1431123,97090.969,0,0,0,2422.9219 +13801,16844,30044,30043,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,0,6.419198,6.8961282,35,6,46.925526,0,3,2,2021,8,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.7102928,56.52,36.33,41.95,38.84,6.666666666666667,1,1,0,0,13,11,4,1,433,1444259.3,1431123,97090.969,0,0,0,2422.9219 +13802,16845,30045,30046,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,8.601099,8.4424286,0,23,-3,72.346611,0,2,1,2021,8,0,37,40,1,0,0,20.228397,20.228397,.05,.05,0,0,0,0,0,0,0,0,0,3.0439966,0,62.25,48.33,52.99,48.57,8.333333333333334,1,1,0,0,9,6,5,1,792.5,1134630.5,1197031.4,149213.06,70635.578,7296.8955,0,3619.2952 +13802,16845,30046,30045,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.283803,8.5352144,0,23,3,-52.179832,0,2,2,2021,7,0,37,37,1,0,0,10.083229,10.083229,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,48.57,62.25,48.33,10,1,1,0,0,9,6,5,1,792.5,1134630.5,1197031.4,149213.06,70635.578,7296.8955,0,3619.2952 +13803,16846,30047,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.3065815,8.0792255,0,0,0,-1032.2417,0,-9,-9,2021,10,1,48,46,1,1,0,8.3157434,8.3157434,.05,.05,0,0,0,0,0,0,0,0,0,4.333456,0,45.75,54.5,-9,-9,10,1,1,0,0,8,5,4,1,833,-40792.555,88961.023,0,0,0,0,1461.5549 +13803,16847,30048,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.1100807,7.9254975,0,0,0,-929.08978,0,-9,-9,2021,10,0,38,40,1,0,0,8.4845352,8.4845352,0,0,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,10,1,1,0,0,4,5,4,1,488,-164346.2,0,0,0,0,0,888.07104 +13804,16848,30049,30050,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.208405,7.3050461,40,0,-52.772148,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,2.5384946,0,0,1,1,0,0,7.6303959,52,48,50,47,7,1,1,0,0,0,8,2,0,331,1299017.8,562063.75,631886.88,0,8410.3721,0,2582.5874 +13804,16848,30050,30049,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,40,0,59.559769,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,50,47,52,48,7,1,1,0,0,0,8,2,0,331,1299017.8,562063.75,631886.88,0,8410.3721,0,2582.5874 +13805,16849,30051,30052,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.3157907,7.550252,51,14,-9.929925,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.0820079,52.25,45.21,35.73,21.8,6.666666666666667,1,1,0,0,0,1,2,1,294,314667.25,118761,277984.88,0,0,0,2280.5146 +13805,16849,30052,30051,-9,-9,1,0,68,0,0,0,3,3,-9,0,1,0,0,0,51,-14,.23266155,0,3,3,2021,20,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.9756426,0,35.73,21.8,52.25,45.21,1.666666666666667,1,1,0,0,0,1,2,1,294,314667.25,118761,277984.88,0,0,0,2280.5146 +13806,16850,30053,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1027.8318,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.68,27.93,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1279,359189.16,0,308960.44,0,0,0,1892.6425 +13807,16851,30054,30055,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,0,0,56,1,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55,45,53,45,8,4,5,0,0,0,8,1,1,757.5,48103.336,0,0,0,0,0,0 +13807,16851,30055,30054,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,0,0,6,-1,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,2.3897681,0,24.142143,0,0,0,0,0,0,53,45,55,45,8,4,5,0,0,0,8,1,1,757.5,48103.336,0,0,0,0,0,0 +13807,16852,30056,-9,30055,30054,1,0,50,0,0,0,1,1,-9,0,2,7.0778203,7.0174661,0,0,0,-974.24414,0,1,1,2021,7,0,18,18,1,0,0,8.6357536,8.6357536,0,0,0,0,0,0,0,0,0,0,0,0,0,57.57,49.69,-9,-9,8.333333333333334,4,2,0,0,5,8,2,1,726,119527.51,0,0,0,715.05219,0,1757.0585 +13807,16853,30057,-9,30056,-9,1,0,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-1009.1437,-9,1,-9,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,7,4,2,0,0,0,8,1,1,422,64885.789,0,0,0,0,0,0 +13807,16854,30058,-9,30056,-9,1,1,23,0,0,0,2,2,1,0,4,8.6519918,8.3084393,0,0,0,-741.50055,-9,1,1,2021,10,0,40,0,1,1,1,13.344022,13.344022,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,2,0,0,1,8,4,1,423,51735.684,0,0,0,0,0,1997.9526 +13808,16855,30059,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,7.8789606,7.8514876,4.133791,0,0,-1084.7426,0,3,3,2021,9,1,35,35,1,1,0,8.4568691,8.4568691,.05,.05,0,0,0,0,0,7,1,1,0,4.6059866,4.18082,44.94,45.95,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,542,239595.61,218503.66,0,0,3470.5369,0,163.8985 +13808,16856,30060,-9,30059,-9,1,1,36,0,0,0,2,2,-9,0,2,0,0,0,0,0,-969.98376,0,3,-9,2021,22,9,0,37,3,9,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.41,44.32,-9,-9,1.666666666666667,1,1,1,0,10,13,1,1,1811,-86496.625,0,0,0,0,0,-580.95734 +13809,16857,30061,30062,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,0,8.0293579,7.7576466,8,1,31.457411,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.106627,7.6350913,30.59,36.36,26.3,40.84,5,1,1,0,0,1,11,3,1,592.5,1328905.8,1008444.4,470267.25,0,0,0,3045.45 +13809,16857,30062,30061,-9,-9,1,0,59,0,0,0,1,1,-9,0,2,0,6.5927463,6.6784196,8,-1,50.709152,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4252119,26.3,40.84,30.59,36.36,3.333333333333333,1,1,0,1,5,11,3,1,592.5,1328905.8,1008444.4,470267.25,0,0,0,3045.45 +13809,16858,30063,-9,30062,30061,1,0,31,0,0,0,1,1,-9,0,3,8.0032549,8.0632706,0,0,0,-869.3277,0,1,2,2021,9,1,37,38,1,1,0,11.310208,11.310208,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.33,53.99,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,200,-15640.162,-18264.508,101155.66,96807.859,0,0,1731.9871 +13810,16859,30064,30065,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,5.6231956,6.2653465,10,5,111.26181,0,-9,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,14.490265,0,14.5,1,1,0,2.407959,6.1336012,43.17,37.04,60.93,36.01,10,1,1,0,0,0,4,2,0,641,403536.88,176808.59,107974.37,0,0,0,2379.127 +13810,16859,30065,30064,-9,-9,1,1,77,0,0,0,2,2,-9,0,2,0,5.7881093,6.2418566,10,-5,-64.100136,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,6.7889576,5.8231544,60.93,36.01,43.17,37.04,10,1,1,0,0,4,4,2,0,641,403536.88,176808.59,107974.37,0,0,0,2379.127 +13811,16860,30066,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,6.9183526,6.5747175,0,0,0,-1059.754,0,-9,-9,2021,6,0,16,0,1,0,0,6.0224795,6.0224795,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,5,1,2,1,801,217700.05,0,121982.33,0,0,0,841.45502 +13812,16861,30067,30068,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.1692123,8.7459888,0,28,3,-14.222634,0,3,2,2021,12,1,40,40,1,1,0,10.550163,10.550163,0,0,.05,0,0,0,0,0,1,1,0,0,0,51.41,56.15,58.5,44.67,8.333333333333334,1,1,0,0,15,5,5,1,608.66669,392035.09,244420.61,239863.3,102118.62,0,0,3596.7903 +13812,16861,30068,30067,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,8.1552563,8.2174692,0,28,-3,41.173332,0,2,2,2021,12,1,43,38,1,1,0,11.030838,11.030838,0,0,0,0,0,0,0,0,1,1,0,0,0,58.5,44.67,51.41,56.15,3.333333333333333,1,1,0,0,11,5,5,1,608.66669,392035.09,244420.61,239863.3,102118.62,0,0,3596.7903 +13812,16861,30069,-9,30068,30067,1,1,17,0,0,0,2,2,-9,0,3,0,0,0,0,0,-878.33673,-9,2,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,8.333333333333334,1,1,1,0,0,5,5,1,608.66669,392035.09,244420.61,239863.3,102118.62,0,0,3596.7903 +13812,16862,30070,-9,30068,30067,1,1,21,0,0,0,2,2,-9,0,3,0,0,0,0,0,-889.64258,0,2,3,2021,6,0,0,38,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,4,5,1,1,1193,-40427.688,0,0,0,0,0,-1032.8274 +13813,16863,30071,30072,-9,-9,1,1,84,0,0,0,3,3,-9,0,3,0,7.551661,7.9001284,59,3,21.945642,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.855619,41.38,53.82,51,52.08,8.333333333333334,1,1,0,0,0,5,3,1,2165.5,1456369.8,122612.37,436860.31,0,5283.5835,0,3175.9702 +13813,16863,30072,30071,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.1847529,4.992661,59,-3,24.804531,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,4.6028271,0,0,1,1,0,4.0087652,4.781291,51,52.08,41.38,53.82,8.333333333333334,1,1,0,0,0,5,3,1,2165.5,1456369.8,122612.37,436860.31,0,5283.5835,0,3175.9702 +13814,16864,30073,30074,-9,-9,1,1,37,0,2,0,1,1,-9,0,3,9.137517,8.641551,0,9,-1,127.60448,0,2,1,2021,24,11,44,46,1,11,0,20.117729,20.117729,.05,.05,0,0,0,0,0,0,1,1,0,2.6201119,0,37.42,56.9,35.97,61.83,3.333333333333333,1,1,0,0,11,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13814,16864,30074,30073,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.5473061,8.4123707,0,9,1,9.0278378,0,2,1,2021,18,8,45,34,1,8,0,15.280621,15.280621,.05,.05,0,0,0,0,0,0,1,1,0,7.3434067,0,35.97,61.83,37.42,56.9,6.666666666666667,1,1,0,0,11,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13814,16864,30075,-9,30074,30073,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.2794,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13814,16864,30076,-9,30074,30073,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.6633,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,661.25,412037.19,106698.09,325279.28,25845.186,6739.042,0,5518.4775 +13815,16865,30077,30078,-9,-9,1,0,38,0,0,0,2,2,-9,0,3,7.6610918,7.4447074,0,1,-11,-90.004929,-9,-9,-9,2021,7,0,37,0,1,0,0,6.235847,6.235847,0,0,0,0,0,0,0,0,1,0,1,0,0,52.8,40.58,48.28,53.42,10,1,1,0,0,0,13,3,0,1444,-185136.28,0,0,0,0,0,2006.0491 +13815,16865,30078,30077,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.0685363,7.5713978,0,1,11,50.44178,0,3,3,2021,12,0,20,24,1,0,0,5.8295083,5.8295083,0,0,0,0,0,0,0,0,1,0,1,0,0,48.28,53.42,52.8,40.58,8.333333333333334,1,1,0,0,8,13,3,0,1444,-185136.28,0,0,0,0,0,2006.0491 +13816,16866,30079,30080,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,5.9591956,6.37889,36,1,53.672428,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9907866,38.24,25.76,60.27,41.4,3.333333333333333,1,1,0,0,0,8,2,0,254,15864.736,112802.95,0,0,0,0,3055.5752 +13816,16866,30080,30079,-9,-9,1,0,55,0,0,0,3,3,-9,1,3,0,0,0,36,-1,25.672176,0,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,60.27,41.4,38.24,25.76,1.666666666666667,1,1,0,0,0,8,2,0,254,15864.736,112802.95,0,0,0,0,3055.5752 +13816,16867,30081,-9,30082,-9,1,0,7,0,0,1,3,0,-9,0,4,0,0,0,0,0,-866.81689,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,2,-9,0,0,8,2,0,553.66669,89450.648,0,0,0,0,0,263.24966 +13816,16867,30082,-9,30080,30079,1,0,24,0,0,0,2,2,-9,0,4,3.2198319,3.0585999,0,0,0,-1126.2416,0,3,3,2021,12,0,30,0,1,0,1,.084787875,.084787875,0,0,0,0,0,0,0,2,1,1,0,0,0,55.44,52.99,-9,-9,5,1,1,0,0,2,8,2,0,553.66669,89450.648,0,0,0,0,0,263.24966 +13816,16867,30083,-9,30082,-9,1,1,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1061.0543,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,2,0,553.66669,89450.648,0,0,0,0,0,263.24966 +13817,16868,30084,30085,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.4948864,8.3782492,0,6,10,-30.27548,0,2,2,2021,8,0,50,45,1,0,0,10.086629,10.086629,0,0,0,0,0,0,0,0,0,0,0,0,0,53.47,52.37,48.28,60.18,8.333333333333334,1,1,0,0,7,8,5,0,948,3472880.5,137341.39,1999070.3,731655.38,0,0,4532.4307 +13817,16868,30085,30084,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.8285217,8.627718,0,6,-10,18.775875,0,2,2,2021,6,0,38,35,1,0,0,18.897848,18.897848,0,0,.05,0,0,0,0,0,0,0,0,0,0,48.28,60.18,53.47,52.37,1.666666666666667,1,1,0,0,7,8,5,0,948,3472880.5,137341.39,1999070.3,731655.38,0,0,4532.4307 +13817,16869,30086,-9,30084,30085,1,0,19,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1005.9703,1,1,2,2021,26,11,0,40,2,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,19.51,63.69,-9,-9,6.666666666666667,1,1,0,0,1,8,1,0,355,185278.98,0,0,0,0,0,1400.6852 +13818,16870,30087,30088,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,7.0580549,6.8121786,0,6,2,-91.572975,0,-9,-9,2021,7,0,50,50,1,0,0,2.5656734,2.5656734,0,0,0,0,0,0,0,0,1,1,0,8.466958,0,57.06,57.76,58.23,43.46,8.333333333333334,1,1,0,0,7,2,2,0,746,161117.7,-23620.912,89678.5,0,0,0,3551.4673 +13818,16870,30088,30087,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.2516484,5.1856856,6,-2,4.4011488,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8586631,5.664207,58.23,43.46,57.06,57.76,8.333333333333334,1,1,0,0,5,2,2,0,746,161117.7,-23620.912,89678.5,0,0,0,3551.4673 +13819,16871,30089,30090,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,0,6.9833965,7.3560719,31,3,87.462624,0,3,3,2021,10,0,0,37,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0885372,36.48,35.74,64.37,44.69,8.333333333333334,1,1,0,0,11,12,5,1,551.5,771841.06,386815.84,340568.31,0,0,0,3153.4414 +13819,16871,30090,30089,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.4254198,8.8203735,8.0567236,31,-3,26.4636,0,3,-9,2021,7,0,35,40,1,0,0,15.716647,15.716647,.05,.05,.05,0,0,0,0,0,0,0,0,4.1094208,8.0961828,64.37,44.69,36.48,35.74,8.333333333333334,1,1,0,0,12,12,5,1,551.5,771841.06,386815.84,340568.31,0,0,0,3153.4414 +13819,16872,30091,-9,30089,30090,1,1,25,0,0,0,2,2,-9,0,3,7.7577038,7.9261475,0,0,0,-970.1106,0,2,2,2021,14,2,38,35,1,2,1,6.6815019,6.6815019,.05,.05,0,0,0,0,0,0,0,0,0,2.2867982,0,36.93,56.27,-9,-9,3.333333333333333,1,1,0,1,9,12,3,1,2465,-143543.7,109086.96,0,0,0,0,1039.8518 +13820,16873,30092,30093,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,0,7.7503791,7.3629966,8,0,79.521896,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.7925057,7.4771442,48.81,46.83,57.06,57.76,10,1,1,0,0,4,12,3,1,839.5,1201417.6,894185.31,230637.03,0,0,0,2101.5547 +13820,16873,30093,30092,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,7.5471153,7.6613503,8,0,2.4559565,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.0967522,7.6215997,57.06,57.76,48.81,46.83,8.333333333333334,1,1,0,0,0,12,3,1,839.5,1201417.6,894185.31,230637.03,0,0,0,2101.5547 +13821,16874,30094,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.1176691,5.2578878,0,0,-1105.1428,0,3,3,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1651559,50.38,29.54,-9,-9,6.666666666666667,1,1,0,0,0,10,2,0,1436,1531981,164229.28,594577.06,0,0,0,1283.0323 +13822,16875,30095,-9,30096,30097,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-954.48535,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,833,576086.38,278037.22,193248.11,95261.281,0,0,2355.9451 +13822,16875,30096,30097,-9,-9,1,0,30,1,1,0,1,1,-9,0,4,7.5810499,7.5379395,0,7,0,-65.713188,0,-9,-9,2021,11,0,19,20,1,0,0,12.285266,12.285266,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,49.35,59.64,8.333333333333334,1,1,0,0,11,6,4,1,833,576086.38,278037.22,193248.11,95261.281,0,0,2355.9451 +13822,16875,30097,30096,-9,-9,1,1,30,1,1,0,1,1,-9,0,4,8.0969381,7.8822856,0,7,0,-30.180742,0,2,3,2021,8,0,37,37,1,0,0,12.812729,12.812729,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.35,59.64,46.9,56.66,8.333333333333334,1,1,0,0,10,6,4,1,833,576086.38,278037.22,193248.11,95261.281,0,0,2355.9451 +13823,16876,30098,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,7.6308675,7.8018909,0,0,0,-1105.7505,0,2,2,2021,17,5,32,32,1,5,0,7.141993,7.141993,0,0,0,0,0,0,0,0,0,0,0,0,0,33.05,57.87,-9,-9,8.333333333333334,1,1,0,0,6,10,3,0,171,-127549.99,42721.227,0,0,2527.1323,3677.9319,1726.2228 +13824,16877,30099,-9,30102,30101,1,0,22,0,1,0,2,2,1,0,2,6.245028,6.2206292,0,0,0,-994.12653,-9,2,2,2021,34,11,4,0,1,11,1,17.3827,17.3827,0,0,0,0,0,0,0,0,1,1,0,0,0,24.98,32.38,-9,-9,0,2,3,0,1,1,4,2,1,259,-250563.13,0,0,0,0,0,1147.7571 +13824,16878,30100,-9,30102,30101,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.21735,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,759.66669,122793.54,-18788.605,0,0,0,0,2515.8413 +13824,16878,30101,30102,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.4731722,7.5022779,0,6,1,-68.856422,0,3,3,2021,16,5,12,12,1,5,0,17.764826,17.764826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.51,45.46,2.19,69.56,6.666666666666667,2,3,0,1,10,4,3,1,759.66669,122793.54,-18788.605,0,0,0,0,2515.8413 +13824,16878,30102,30101,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,6.6679187,7.1409683,0,6,-1,-78.932396,0,3,3,2021,29,10,18,18,1,10,0,5.7901697,5.7901697,0,0,0,0,0,0,0,0,1,1,0,0,0,2.19,69.56,39.51,45.46,5,2,3,0,1,10,4,3,1,759.66669,122793.54,-18788.605,0,0,0,0,2515.8413 +13825,16879,30103,-9,-9,-9,1,0,57,0,0,0,2,2,-9,0,2,7.3318038,7.3509288,0,0,0,-1122.3578,0,3,3,2021,11,0,34,30,1,0,0,5.213202,5.213202,0,0,0,0,0,0,0,0,1,1,0,0,0,36.38,55.37,-9,-9,5,1,1,0,0,12,6,3,1,530,123165.09,0,93636.063,0,0,0,550.01471 +13826,16880,30104,30105,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,9.7485037,9.2813282,0,39,6,-38.026581,0,2,2,2021,8,0,72,42,1,0,0,18.647491,18.647491,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55,53,45.91,59.89,8,1,1,0,0,1,12,5,1,2087.5,1726780,1317583.8,282526.06,0,0,0,5358.499 +13826,16880,30105,30104,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.6156006,7.5638866,0,38,-6,-12.692378,0,2,2,2021,12,1,24,32,1,1,0,9.198,9.198,.05,.05,0,0,0,0,0,14.5,0,0,0,5.1420879,0,45.91,59.89,55,53,8.333333333333334,1,1,0,0,9,12,5,1,2087.5,1726780,1317583.8,282526.06,0,0,0,5358.499 +13827,16881,30106,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,0,0,0,0,-988.24884,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.32,38.2,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1280,206121.63,0,0,0,0,0,1450.8777 +13828,16882,30107,-9,30110,30109,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-957.59497,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13828,16882,30108,-9,30110,30109,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.24377,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13828,16882,30109,30110,-9,-9,1,1,47,0,3,0,3,3,-9,0,3,9.4744167,9.2515821,0,5,7,3.6127059,0,2,2,2021,5,0,40,40,1,0,0,38.37096,38.37096,.05,.05,0,0,0,0,0,0,1,1,0,10.073166,0,48.01,41.89,57.06,57.76,8.333333333333334,1,1,0,0,13,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13828,16882,30110,30109,-9,-9,1,0,40,0,3,0,2,2,-9,0,5,7.8659229,7.9490829,0,5,-7,85.382019,0,-9,-9,2021,6,0,40,45,1,0,0,7.6270003,7.6270003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,48.01,41.89,10,3,4,0,0,2,6,5,0,486,127279.31,167671.09,143368.47,111200.04,26341.32,0,11808.357 +13829,16883,30111,30112,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,0,0,0,9,-4,-87.243805,0,2,2,2021,7,0,0,27,4,0,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,2.36233,0,52.82,53.97,59.46,46.99,8.333333333333334,1,1,0,0,12,12,5,1,535.5,553970.38,298587.06,269271.78,-9409.8311,0,1043.043,4340.1621 +13829,16883,30112,30111,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,8.9069996,8.9981184,9,4,-28.04599,0,3,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,9.3926973,8.7887688,59.46,46.99,52.82,53.97,10,1,1,0,0,10,12,5,1,535.5,553970.38,298587.06,269271.78,-9409.8311,0,1043.043,4340.1621 +13830,16884,30113,30114,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.2982283,8.147562,0,15,1,-9.7469358,0,2,2,2021,11,0,38,38,1,0,0,11.767385,11.767385,.05,.05,0,0,0,0,0,0,0,0,0,7.399992,0,45.65,57.42,54.79,55.86,8.333333333333334,2,3,0,0,13,12,5,1,2211.5,1250554.1,859456.06,387658.06,0,0,0,4530.4355 +13830,16884,30114,30113,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,8.8940239,9.3057632,0,15,-1,96.369797,0,3,3,2021,7,0,37,38,1,0,0,29.045244,29.045244,.05,.05,0,0,0,0,.91910678,2,0,0,0,0,0,54.79,55.86,45.65,57.42,8.333333333333334,2,3,0,0,14,12,5,1,2211.5,1250554.1,859456.06,387658.06,0,0,0,4530.4355 +13831,16885,30115,-9,30116,-9,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1000.9982,-9,1,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.23707864,0,58.2,54.53,-9,-9,8.333333333333334,1,1,0,0,1,6,3,1,482,121514.85,174139.97,121445.3,81208.906,0,0,1485.0276 +13831,16885,30116,-9,-9,-9,1,0,43,0,1,0,1,1,-9,1,2,7.4065928,7.582624,0,0,0,-980.29749,0,2,2,2021,14,3,21,32,1,3,0,14.018381,14.018381,.05,.05,0,0,0,0,0,0,1,1,0,.060569286,0,52.19,14.27,-9,-9,3.333333333333333,1,1,0,0,8,6,3,1,482,121514.85,174139.97,121445.3,81208.906,0,0,1485.0276 +13831,16886,30117,-9,30116,-9,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-946.26721,-9,1,-9,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8536861,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,6,1,1,638,227007.81,0,0,0,0,0,334.46893 +13832,16887,30118,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,3.2038743,3.354881,0,0,-902.92725,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7230361,3.3286014,36.27,39.93,-9,-9,5,1,1,0,0,0,8,2,1,117,-261200.2,70077.055,0,0,0,0,692.9093 +13833,16888,30119,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.3342304,8.3126135,0,0,0,-1031.438,0,2,3,2021,13,3,38,42,1,3,1,10.742228,10.742228,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,-9,-9,8.333333333333334,1,1,0,1,8,11,4,0,2910,6098.5415,156650.61,0,0,0,0,1785.1687 +13834,16889,30120,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,7.0442982,7.5604343,5.8493977,0,0,-902.35626,0,3,3,2021,9,0,20,20,1,0,0,7.3621292,7.3621292,0,0,0,0,0,0,0,0,1,1,0,1.7262496,6.0279751,55.36,54.24,-9,-9,1.666666666666667,1,1,0,1,7,12,3,1,762,319804.22,348767,119571.23,0,2765.8899,0,880.01746 +13835,16890,30121,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.961659,6.1899371,0,0,-988.64374,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0302331,5.7413878,47.32,52.7,-9,-9,8.333333333333334,1,1,0,0,3,5,2,1,976,329691.38,31972.6,70477.148,0,0,0,541.41541 +13836,16891,30122,30123,-9,-9,1,0,38,1,1,0,1,1,-9,0,2,8.7079439,8.6760778,0,3,0,49.598446,0,2,3,2021,20,8,30,45,1,8,0,24.285517,24.285517,0,0,0,0,0,0,0,0,1,1,0,0,0,24.27,37.82,40.48,60.05,3.333333333333333,1,1,0,0,9,8,5,1,1613.3334,582565.19,2572.9705,650556.31,186736.89,0,0,5636.2251 +13836,16891,30123,30122,-9,-9,1,1,38,1,1,0,2,2,-9,0,4,9.1088839,9.3272152,0,3,0,3.3304696,0,-9,-9,2021,13,1,43,50,1,1,0,23.266224,23.266224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.48,60.05,24.27,37.82,6.666666666666667,1,1,0,0,12,8,5,1,1613.3334,582565.19,2572.9705,650556.31,186736.89,0,0,5636.2251 +13836,16891,30124,-9,30122,30123,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.496,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,1613.3334,582565.19,2572.9705,650556.31,186736.89,0,0,5636.2251 +13836,16892,30125,-9,30122,30123,1,1,20,1,1,0,2,2,1,0,4,0,0,0,0,0,-950.62653,-9,1,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.45,62.92,-9,-9,6.666666666666667,1,1,0,1,2,8,1,1,2225,0,0,0,0,0,0,-304.57431 +13837,16893,30126,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,5,7.6897745,7.5522408,0,0,0,-981.04877,0,-9,-9,2021,15,4,42,4,1,4,0,6.4107747,6.4107747,0,0,0,0,0,0,0,0,1,1,0,0,0,48.66,54.86,-9,-9,8.333333333333334,1,1,0,0,6,5,3,1,433,-108321.03,0,0,0,0,0,1454.9697 +13837,16894,30127,-9,-9,-9,1,0,85,0,0,0,1,1,-9,0,3,0,7.9635282,7.7902718,0,0,-962.40204,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5091612,7.5421267,52,45,-9,-9,8,1,1,0,0,0,5,4,1,66,510266.84,99977.758,0,0,0,0,1872.1544 +13838,16895,30128,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.3745999,7.4682884,5.2764516,0,0,-1006.8122,0,2,3,2021,12,0,30,33,1,0,0,6.2332525,6.2332525,0,0,0,0,0,0,0,0,1,1,0,5.4887714,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,6,13,3,0,722,14833.147,-23649.48,0,0,3039.1729,434.17584,1296.7476 +13838,16896,30129,-9,30128,-9,1,0,19,0,0,0,2,2,-9,0,4,6.3151236,6.0372066,0,0,0,-1000.6594,0,2,-9,2021,8,2,12,24,1,2,1,4.4407182,4.4407182,0,0,0,0,0,0,0,0,1,1,0,0,0,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,3,13,2,0,230,-126756.97,0,0,0,0,0,627.45721 +13839,16897,30130,30131,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,7.6662126,7.6764598,0,11,-1,51.855015,0,2,2,2021,7,0,19,18,1,0,0,13.910324,13.910324,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,54.37,54.8,10,1,1,0,0,12,9,4,1,429.5,303534.38,69462.32,0,0,0,405.12677,2992.6743 +13839,16897,30131,30130,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,7.9442973,7.9960179,0,11,1,19.77557,0,2,3,2021,6,0,40,40,1,0,0,9.9633703,9.9633703,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,12,9,4,1,429.5,303534.38,69462.32,0,0,0,405.12677,2992.6743 +13840,16898,30132,30133,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.9752927,6.7924795,10,2,-219.66396,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.7427576,7.2314763,57.16,56.15,52.65,50.06,8.333333333333334,1,1,0,0,3,5,2,1,594.5,722241.56,397258.13,226433.81,0,0,0,1779.2739 +13840,16898,30133,30132,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,5.5272708,5.2423,10,-2,72.559425,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.5074852,5.5268302,52.65,50.06,57.16,56.15,8.333333333333334,1,1,0,0,5,5,2,1,594.5,722241.56,397258.13,226433.81,0,0,0,1779.2739 +13841,16899,30134,-9,30135,30136,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-989.54968,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13841,16899,30135,30136,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,8.406745,8.4094582,0,13,-1,-2.2661409,0,2,2,2021,6,0,30,23,1,0,0,18.9366,18.9366,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.6,53.68,51.83,57.2,8.333333333333334,1,1,0,0,10,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13841,16899,30136,30135,-9,-9,1,1,34,1,2,0,2,2,-9,0,4,8.9299068,8.9667711,0,13,1,8.8021946,0,2,2,2021,8,0,48,43,1,0,0,19.259069,19.259069,.05,.05,0,0,0,0,0,0,1,1,0,2.1305943,0,51.83,57.2,50.6,53.68,8.333333333333334,1,1,0,0,9,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13841,16899,30137,-9,30135,30136,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-997.68073,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,2065,171786.19,21680.625,132349.73,0,11156.84,0,3694.0464 +13842,16900,30138,-9,30140,-9,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1008.371,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,1,0,1220.6666,-72356.32,0,0,0,237.14172,0,1530.8813 +13842,16900,30139,-9,30140,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1021.6886,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,1,0,1220.6666,-72356.32,0,0,0,237.14172,0,1530.8813 +13842,16900,30140,-9,-9,-9,1,0,29,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1033.042,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,59.31,-9,-9,5,1,1,0,0,0,1,1,0,1220.6666,-72356.32,0,0,0,237.14172,0,1530.8813 +13843,16901,30141,30142,-9,-9,1,0,45,0,0,0,2,2,-9,1,3,6.6986847,6.7884207,0,21,-6,141.46152,0,2,2,2021,12,0,10,14,1,0,0,10.610596,10.610596,0,0,0,0,0,0,0,116,1,1,0,0,0,57.33,53.46,53,55,8.333333333333334,1,1,0,0,2,10,3,1,1206,528182.44,308555.63,227973.27,0,0,0,1701.8354 +13843,16901,30142,30141,-9,-9,1,1,51,0,0,0,2,2,-9,1,4,0,7.2664232,7.2788072,9,6,-103.79771,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.9627824,7.4838986,53,55,57.33,53.46,8,1,1,0,0,0,10,3,1,1206,528182.44,308555.63,227973.27,0,0,0,1701.8354 +13844,16902,30143,30144,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.0864439,8.2597876,0,4,-3,64.048264,0,-9,-9,2021,6,0,35,35,1,0,0,10.083428,10.083428,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,59.31,49.81,10,3,4,0,0,11,9,4,1,137,2136166.3,1234830.5,563296.63,0,0,0,2593.9084 +13844,16902,30144,30143,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.4484692,7.3602104,4,3,102.32439,0,2,1,2021,9,0,0,5,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0121837,6.9148602,59.31,49.81,59.7,53.75,8.333333333333334,1,1,0,0,10,9,4,1,137,2136166.3,1234830.5,563296.63,0,0,0,2593.9084 +13845,16903,30145,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,3,8.0004902,8.2691574,0,0,0,-978.41028,-9,1,1,2021,16,3,38,0,1,3,0,13.3148,13.3148,0,0,0,0,0,0,0,0,1,0,1,0,0,32.5,53.18,-9,-9,5,3,4,0,0,7,8,4,0,301,178175.05,56974.645,0,0,0,4647.2988,1274.3828 +13846,16904,30146,30147,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,0,0,0,2,1,-28.506187,0,2,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6416383,0,38.51,48.9,57.29,44.28,6.666666666666667,1,1,0,0,0,13,2,1,2372.5,230294.41,105641.95,163313.34,0,0,0,587.74152 +13846,16904,30147,30146,-9,-9,1,1,54,0,0,0,3,3,-9,0,2,6.8816981,6.5515161,0,2,-1,-46.576233,0,3,3,2021,8,0,40,30,1,0,0,2.7743938,2.7743938,0,0,0,0,0,0,0,0,0,0,0,0,0,57.29,44.28,38.51,48.9,8.333333333333334,1,1,0,0,4,13,2,1,2372.5,230294.41,105641.95,163313.34,0,0,0,587.74152 +13846,16905,30148,-9,30146,30147,1,1,19,0,0,0,3,3,1,0,4,7.5649481,7.401093,0,0,0,-1154.7321,-9,2,3,2021,8,0,40,0,1,0,1,5.78616,5.78616,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,49.68,-9,-9,6.666666666666667,1,1,0,0,2,13,3,1,378,16847.648,0,0,0,0,0,1506.5654 +13847,16906,30149,-9,30150,-9,1,1,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-981.3548,-9,2,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,5,3,0,636.5,-59043.676,0,0,0,0,0,802.01318 +13847,16906,30150,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,2,7.402823,7.653852,0,0,0,-980.35999,0,-9,-9,2021,9,0,25,27,1,0,0,8.159256,8.159256,0,0,0,0,0,0,0,0,0,0,0,0,0,61.42,35.65,-9,-9,8.333333333333334,1,1,0,0,7,5,3,0,636.5,-59043.676,0,0,0,0,0,802.01318 +13848,16907,30151,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1126.2148,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.642422,0,63.23,50.78,-9,-9,10,1,1,0,0,0,1,1,0,3416,-116437.66,0,0,0,0,0,2261.2764 +13849,16908,30152,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,6.888545,6.8883185,0,0,-1018.1221,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,1.0172137,3.0944717,22.609663,0,1,1,0,3.7612963,6.7816577,42.93,27.57,-9,-9,5,1,1,0,0,0,11,2,0,639,220582.23,65496.531,84841.383,0,0,0,1719.8513 +13850,16909,30153,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,2,7.834444,7.5947871,0,0,0,-982.8493,0,2,-9,2021,8,0,42,35,1,0,0,5.8258457,5.8258457,0,0,.05,0,0,0,0,0,1,1,0,2.4479256,0,49.23,45.42,-9,-9,8.333333333333334,1,1,0,0,8,9,3,1,1063,-100757.57,109060.27,0,0,4072.1309,0,1161.9409 +13851,16910,30154,-9,-9,-9,1,0,21,0,0,1,2,0,0,0,2,0,0,0,0,0,-967.86499,-9,-9,-9,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.95,62.22,-9,-9,3.333333333333333,1,1,0,0,0,6,2,0,1700,-207457.81,-35668.309,0,0,2939.3599,0,0 +13852,16911,30155,30156,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.3723898,7.2413902,45,0,-16.292671,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0360823,7.4650569,51.77,58.57,54.96,53.17,8.333333333333334,1,1,0,0,11,9,2,1,271.5,525393.13,289786.19,193674.25,0,0,0,2628.3174 +13852,16911,30156,30155,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,0,0,46,0,-211.82901,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1747265,0,54.96,53.17,51.77,58.57,8.333333333333334,1,1,0,0,10,9,2,1,271.5,525393.13,289786.19,193674.25,0,0,0,2628.3174 +13853,16912,30157,30158,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,7.1433067,7.3907442,0,18,-2,-12.812525,0,2,2,2021,6,0,12,12,1,0,0,14.315323,14.315323,.05,.05,0,0,0,0,0,0,0,0,0,3.899683,0,63.38,53.47,52.65,51.64,8.333333333333334,2,3,0,0,14,12,2,0,800.5,189551.88,88514.219,98497.094,90147.109,0,0,653.24219 +13853,16912,30158,30157,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,0,0,0,18,2,-20.889011,0,2,2,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.65,51.64,63.38,53.47,3.333333333333333,2,3,0,1,1,12,2,0,800.5,189551.88,88514.219,98497.094,90147.109,0,0,653.24219 +13853,16913,30159,-9,30158,30157,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1083.4485,-9,1,1,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.6403952,0,52,54.51,-9,-9,8.333333333333334,2,3,0,0,0,12,1,0,111,-79343.602,0,0,0,0,0,394.10074 +13853,16914,30160,-9,30158,30157,1,0,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1068.7461,-9,1,1,2021,18,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.2035646,0,33.98,61.23,-9,-9,1.666666666666667,2,3,0,0,0,12,1,0,196,0,0,0,0,0,0,590.22028 +13853,16915,30161,-9,30158,30157,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-1048.7097,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4256291,0,34.36,57.34,-9,-9,6.666666666666667,2,3,0,0,0,12,1,0,1409,12644.194,0,0,0,0,0,-89.921768 +13854,16916,30162,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,6.9255691,7.6506643,0,0,-944.37915,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,15.03372,0,135.71608,0,1,1,0,0,7.3439646,28,39.86,-9,-9,6.666666666666667,1,1,0,0,0,9,3,0,954,568936.38,126660.34,229039.72,0,0,0,3427.2495 +13855,16917,30163,30164,-9,-9,1,1,80,0,0,0,2,2,-9,0,3,0,7.1224756,6.8669548,54,1,96.407288,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2695296,6.9576573,64.84,39.17,47.02,56.67,8.333333333333334,1,1,0,0,0,4,2,1,357,339284.25,161117.28,154773.77,0,0,0,1596.9974 +13855,16917,30164,30163,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,6.0482197,6.2497025,54,-1,61.072582,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1955247,47.02,56.67,64.84,39.17,8.333333333333334,1,1,0,0,0,4,2,1,357,339284.25,161117.28,154773.77,0,0,0,1596.9974 +13856,16918,30165,30166,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,6.0198994,6.0557384,8,-2,36.770065,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,14.001924,9.3391914,125.04831,0,1,1,0,1.4685431,5.7121797,48.88,14.16,41.57,25.62,6.666666666666667,1,1,0,0,0,11,2,1,1512.5,353593.22,158257.66,197257.45,0,0,0,2613.2524 +13856,16918,30166,30165,-9,-9,1,1,86,0,0,0,2,2,-9,0,2,0,7.0321131,6.9989915,8,2,17.859297,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,3.6757288,6.8260465,41.57,25.62,48.88,14.16,3.333333333333333,1,1,0,0,0,11,2,1,1512.5,353593.22,158257.66,197257.45,0,0,0,2613.2524 +13857,16919,30167,30168,-9,-9,1,1,41,1,1,0,1,1,-9,0,4,8.824296,8.4753723,0,6,1,-79.216751,0,1,1,2021,9,1,45,47,1,1,0,19.247488,19.247488,.05,.05,0,0,0,0,0,0,1,1,0,2.1423078,0,46.99,58.02,47.81,46.8,8.333333333333334,1,1,0,0,8,6,5,1,485.66666,570401.81,432641.84,272382.09,106266.76,0,0,4051.9485 +13857,16919,30168,30167,-9,-9,1,0,40,1,1,0,2,2,-9,0,3,8.6086664,8.5401802,0,6,-1,77.530731,0,2,2,2021,10,2,38,47,1,2,0,14.082958,14.082958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.81,46.8,46.99,58.02,8.333333333333334,1,1,0,0,7,6,5,1,485.66666,570401.81,432641.84,272382.09,106266.76,0,0,4051.9485 +13857,16919,30169,-9,30168,30167,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5004,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,485.66666,570401.81,432641.84,272382.09,106266.76,0,0,4051.9485 +13858,16920,30170,30171,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.9568496,7.9781551,53,2,100.19772,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0717559,8.024581,58.14,48.07,55.6,47.8,8.333333333333334,1,1,0,0,0,11,3,1,1421,964016.44,461610.75,403024.69,0,0,0,2939.0913 +13858,16920,30171,30170,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,0,0,13,-2,-30.513601,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0600982,0,55.6,47.8,58.14,48.07,8.333333333333334,1,1,0,0,5,11,3,1,1421,964016.44,461610.75,403024.69,0,0,0,2939.0913 +13859,16921,30172,30173,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.4905787,6.5370321,10,-1,14.430539,0,-9,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,3.6337895,0,20.96467,0,1,1,0,3.4635978,6.7661777,56.78,30.78,57.47,42.93,10,1,1,0,0,6,12,2,0,798,332047.28,8726.582,183291.94,0,0,0,2138.897 +13859,16921,30173,30172,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,10,1,15.145283,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.47,42.93,56.78,30.78,10,1,1,0,0,1,12,2,0,798,332047.28,8726.582,183291.94,0,0,0,2138.897 +13860,16922,30174,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,0,0,-979.9455,0,-9,-9,2021,11,0,0,30,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.95,39.4,-9,-9,3.333333333333333,1,1,0,0,10,12,1,0,554,77136.641,0,0,0,3335.9417,1489.4177,851.14819 +13861,16923,30175,30176,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,0,0,48,0,-40.33353,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.22,44.27,63.41,29.17,8.333333333333334,1,1,0,0,0,6,2,1,331,123483.28,0,197201.34,0,0,0,1944.7517 +13861,16923,30176,30175,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,4.805438,4.5837736,48,0,3.5794845,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.052285962,4.5455351,63.41,29.17,54.22,44.27,5,1,1,0,0,0,6,2,1,331,123483.28,0,197201.34,0,0,0,1944.7517 +13862,16924,30177,30178,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.1817389,7.0117445,0,30,0,-11.000816,0,2,2,2021,6,0,40,45,1,0,0,5.316587,5.316587,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.27,42.94,58.15,52.91,10,1,1,0,0,8,4,4,1,446.5,25696.297,71502.438,115888.66,43550.816,29262.66,4013.9346,2287.355 +13862,16924,30178,30177,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.4606638,8.8114939,0,30,0,13.672453,0,2,2,2021,6,0,35,40,1,0,0,17.098288,17.098288,.05,.05,0,0,0,0,0,0,0,0,0,4.4103012,0,58.15,52.91,62.27,42.94,8.333333333333334,1,1,0,0,10,4,4,1,446.5,25696.297,71502.438,115888.66,43550.816,29262.66,4013.9346,2287.355 +13862,16925,30179,-9,30178,30177,1,0,27,0,0,0,2,2,-9,0,4,8.2172394,8.1361389,0,0,0,-957.00244,0,2,2,2021,7,0,42,40,1,0,1,9.1079178,9.1079178,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,4,4,1,219,-83082.336,0,0,0,0,0,1333.3055 +13863,16926,30180,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1038.2153,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,0,8,1,0,643,195025.36,0,0,0,0,0,795.00537 +13864,16927,30181,30182,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,6.490263,6.9903502,0,42,0,6.0764771,0,3,3,2021,12,1,12,12,1,1,0,6.4184651,6.4184651,0,0,0,0,0,0,0,0,1,1,0,0,0,47.4,49.86,59.74,45.34,8.333333333333334,1,1,0,1,12,4,4,1,994,166827.8,37929.328,185729.67,0,2088.7495,0,1604.0074 +13864,16927,30182,30181,-9,-9,1,1,64,0,0,0,3,3,-9,0,4,8.1217346,8.3328295,5.0347314,42,0,-60.74712,0,3,3,2021,7,0,55,56,1,0,0,6.623848,6.623848,.05,.05,0,0,0,0,0,0,1,1,0,5.0164065,5.1004124,59.74,45.34,47.4,49.86,10,1,1,0,0,12,4,4,1,994,166827.8,37929.328,185729.67,0,2088.7495,0,1604.0074 +13865,16928,30183,30184,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.62745,8.3881016,0,9,2,90.449043,-9,-9,-9,2021,19,7,48,0,1,7,0,15.386892,15.386892,.05,.05,0,0,0,0,0,7,0,0,0,0,0,37.77,43.43,33.96,47.68,8.333333333333334,1,1,0,1,14,4,4,1,2595,386754.38,266438.75,232865.66,16481.402,8109.4766,0,3403.877 +13865,16928,30184,30183,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.3421326,7.3172975,0,9,-2,-28.114897,0,-9,-9,2021,27,12,30,25,1,12,0,6.6999822,6.6999822,0,0,0,0,0,0,0,7,0,0,0,0,0,33.96,47.68,37.77,43.43,3.333333333333333,1,1,0,0,12,4,4,1,2595,386754.38,266438.75,232865.66,16481.402,8109.4766,0,3403.877 +13866,16929,30185,-9,-9,-9,1,0,52,0,0,0,3,3,-9,1,2,0,5.3573194,5.2236843,0,0,-868.6853,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0565262,58.26,19.15,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,751,-97290.336,-31006.037,0,0,0,0,1027.9415 +13867,16930,30186,30187,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,9.1624403,9.0350351,0,10,4,207.92992,0,2,1,2021,7,0,44,37,1,0,0,19.93298,19.93298,.05,.05,0,0,0,0,0,7,0,0,0,0,0,57.06,57.76,45.24,51.95,8.333333333333334,1,1,0,0,12,1,5,1,909.5,97429.875,201046.31,130276.54,68339.359,5836.7437,0,4411.1514 +13867,16930,30187,30186,-9,-9,1,1,33,0,0,0,1,1,-9,0,3,8.1400709,8.2073107,0,10,-4,-134.10262,0,-9,-9,2021,6,0,39,39,1,0,0,9.9796076,9.9796076,.05,.05,0,0,0,0,0,7,0,0,0,0,0,45.24,51.95,57.06,57.76,6.666666666666667,1,1,0,0,10,1,5,1,909.5,97429.875,201046.31,130276.54,68339.359,5836.7437,0,4411.1514 +13868,16931,30188,-9,-9,-9,1,1,93,0,0,0,2,2,-9,0,3,0,7.3439221,7.4252934,0,0,-1080.9984,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.788156,7.2071562,52,54.51,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,742,420266.28,168884.13,182135.53,0,0,0,1195.4476 +13869,16932,30189,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.2823849,8.0271921,0,0,-896.12671,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6648698,8.0547419,59.14,52.5,-9,-9,8.333333333333334,1,1,0,0,0,4,4,1,961,840753.44,230416.58,474367.31,0,0,0,1723.6296 +13870,16933,30190,30192,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.4198656,8.497467,24,15,-78.825829,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9602194,8.2697744,57.91,48.98,57.16,56.15,8.333333333333334,1,1,0,0,7,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13870,16933,30191,-9,30192,30190,1,1,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-976.71198,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13870,16933,30192,30190,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.2830677,9.4462967,0,25,-15,-41.735703,0,2,2,2021,6,0,50,40,1,0,0,27.705698,27.705698,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.91,48.98,8.333333333333334,1,1,0,0,9,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13870,16933,30193,-9,30192,30190,1,1,17,0,0,1,3,0,0,0,4,0,0,0,0,0,-982.47461,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7593899,0,48,59,-9,-9,7,1,1,0,0,0,7,5,1,1089.75,3314356,2442341,460368.56,0,0,0,7452.8994 +13871,16934,30194,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.3249741,8.7558203,0,0,0,-1012.7451,0,3,2,2021,28,12,37,42,1,12,0,12.750587,12.750587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.1,55.77,-9,-9,3.333333333333333,1,1,0,0,12,12,4,0,420,447213,121213.16,0,0,7903.5747,670.69171,1827.391 +13872,16935,30195,30196,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,7.2472906,7.3888264,0,20,-2,-96.906151,0,3,3,2021,11,0,19,19,1,0,0,8.2467299,8.2467299,.05,.05,0,0,0,0,0,0,1,1,0,2.9415112,0,50.27,48.86,46.44,59.62,6.666666666666667,1,1,0,0,9,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13872,16935,30196,30195,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.6988659,8.9076147,0,20,2,-83.703781,0,2,2,2021,11,2,42,45,1,2,0,24.363583,24.363583,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,50.27,48.86,6.666666666666667,1,1,0,0,9,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13872,16935,30197,-9,30195,30196,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-918.31244,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13872,16935,30198,-9,30195,30196,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-974.68176,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,4,4,1,708.75,280211.06,321176.97,149436.83,76742.023,0,0,3236.3281 +13873,16936,30199,30200,-9,-9,1,0,45,0,2,0,1,1,-9,0,4,8.7253666,8.9009562,0,11,1,77.212158,0,1,2,2021,12,1,120,120,1,1,0,6.9631419,6.9631419,.05,.05,0,0,0,0,0,6,1,1,0,0,0,49.24,40.9,31.54,58.69,8.333333333333334,1,1,0,0,13,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13873,16936,30200,30199,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.3335505,8.8105326,0,18,-1,28.285347,0,2,3,2021,29,10,80,45,1,10,0,7.1834836,7.1834836,.05,.05,0,0,0,0,0,0,1,1,0,7.4207382,0,31.54,58.69,49.24,40.9,1.666666666666667,1,1,0,0,13,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13873,16936,30201,-9,30199,30200,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.37292,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13873,16936,30202,-9,30199,30200,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-836.33905,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,678.25,419756.56,103109.14,501916.84,195923.81,0,0,4294.4536 +13874,16937,30203,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,4,0,5.1972027,5.5009851,0,0,-951.82733,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1253071,60.12,54.8,-9,-9,10,1,1,0,0,0,9,2,0,246,150988.52,0,0,0,0,0,-258.12656 +13875,16938,30204,30205,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.6667595,8.0079098,12,-12,-12.128822,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,8.4817629,50.74,51,33.45,37.41,8.333333333333334,1,1,0,1,12,10,4,1,1621.5,1210674.8,740461.38,267839.94,0,0,0,3673.0977 +13875,16938,30205,30204,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,7.3798003,7.7986512,12,12,23.603045,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1545734,7.5785909,33.45,37.41,50.74,51,3.333333333333333,1,1,0,0,6,10,4,1,1621.5,1210674.8,740461.38,267839.94,0,0,0,3673.0977 +13876,16939,30206,30207,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,0,0,0,8,-8,47.150356,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1381721,0,35.54,45.64,55.89,39.77,3.333333333333333,1,1,0,0,1,12,4,1,397,2300360,811446.63,507823.56,0,0,0,3024.501 +13876,16939,30207,30206,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,0,8.3419781,8.7721434,8,8,-44.994671,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5237842,8.2065086,55.89,39.77,35.54,45.64,8.333333333333334,1,1,0,0,0,12,4,1,397,2300360,811446.63,507823.56,0,0,0,3024.501 +13877,16940,30208,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,5,0,6.5235567,6.4535799,0,0,-1049.9427,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,7.099937,0,0,1,1,0,0,6.5550914,53.11,32.53,-9,-9,10,1,1,0,0,0,10,2,1,240,86221.859,10549.002,0,0,0,0,1104.1343 +13877,16941,30209,-9,30208,-9,1,1,59,0,0,0,2,2,-9,0,3,0,7.1155186,6.6062298,0,0,-1018.0699,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.1269879,58.72,48.95,-9,-9,0,1,1,1,0,0,10,2,1,3725,848779.38,648359.75,0,0,0,0,1294.6848 +13878,16942,30210,30211,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,8.4420843,8.65236,0,9,0,66.814423,0,2,2,2021,11,0,36,36,1,0,0,14.538299,14.538299,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,48.43,53.15,8.333333333333334,1,1,0,0,10,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13878,16942,30211,30210,-9,-9,1,0,40,1,2,0,1,1,-9,0,4,8.7572927,8.7723455,0,9,0,69.645439,0,2,2,2021,12,1,28,28,1,1,0,18.334017,18.334017,.05,.05,0,0,0,0,0,0,1,1,0,3.6916826,0,48.43,53.15,48.87,58.55,8.333333333333334,1,1,0,0,9,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13878,16942,30212,-9,30211,30210,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.09747,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13878,16942,30213,-9,30211,30210,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-940.69855,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,11,5,1,818,138797.44,72022.719,239683.08,191292.59,-272.73828,13534.451,3891.8989 +13879,16943,30214,30215,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.7695723,8.3650904,0,18,1,106.67811,0,2,2,2021,10,2,55,47,1,2,0,11.09676,11.09676,0,0,.05,0,0,0,0,0,0,0,0,1.4832525,0,48.28,60.18,46.5,58.26,8.333333333333334,1,1,0,0,10,10,5,1,979.5,1067220.8,779578.63,263635.38,0,0,0,3069.356 +13879,16943,30215,30214,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.0936966,7.9218235,0,17,-1,34.274509,0,2,1,2021,8,0,35,37,1,0,0,11.628306,11.628306,0,0,0,0,0,0,0,0,0,0,0,1.1653507,0,46.5,58.26,48.28,60.18,6.666666666666667,1,1,0,0,7,10,5,1,979.5,1067220.8,779578.63,263635.38,0,0,0,3069.356 +13880,16944,30216,30217,-9,-9,1,0,46,0,2,0,1,1,-9,0,5,0,0,0,7,-6,79.316635,0,2,2,2021,8,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,49.97,53.99,8.333333333333334,2,3,1,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30217,30216,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.0590563,7.6796141,0,22,6,18.86058,0,3,3,2021,8,0,38,38,1,0,0,9.7784281,9.7784281,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.97,53.99,59.43,58.05,5,2,3,0,0,9,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30218,-9,30216,30217,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.1093,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30219,-9,30216,30217,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-901.43274,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13880,16944,30220,-9,30216,30217,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1081.0566,-9,1,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,.32951933,0,1,1,0,0,0,44.13,59.37,-9,-9,6.666666666666667,2,3,0,0,0,2,2,1,927.20001,72635.313,29005.828,0,0,6445.0732,0,1536.6448 +13881,16945,30221,-9,30224,30222,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-856.8573,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13881,16945,30222,30224,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.8698053,9.0567741,0,8,-8,-29.23768,0,-9,-9,2021,9,0,40,40,1,1,0,24.296265,24.296265,.05,.05,0,0,0,0,0,0,1,1,0,5.1343198,0,51,56,52.25,53.24,8,1,1,0,0,1,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13881,16945,30223,-9,30224,30222,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-987.35059,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13881,16945,30224,30222,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.9566536,7.6766648,0,21,8,51.669167,0,2,-9,2021,11,0,28,28,1,0,0,10.707077,10.707077,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.25,53.24,51,56,6.666666666666667,1,1,0,0,7,6,4,1,666.25,1044151.9,916640.63,157466.28,87936.617,5272.627,0,4427.4609 +13882,16946,30225,30226,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.8074632,7.6766458,0,9,-12,4.6023946,0,2,3,2021,6,0,28,28,1,0,0,12.137794,12.137794,.05,.05,0,0,0,0,0,0,0,0,0,7.0855894,0,57.16,56.15,57.06,57.76,10,1,1,0,0,9,8,5,1,3312,3101042.8,1725459,999706.19,0,0,0,5619.9434 +13882,16946,30226,30225,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,8.8920145,9.0616989,0,9,12,-45.675007,0,2,2,2021,7,0,53,49,1,0,0,19.530256,19.530256,.05,.05,0,0,0,0,0,0,0,0,0,7.5151124,0,57.06,57.76,57.16,56.15,10,1,1,0,0,9,8,5,1,3312,3101042.8,1725459,999706.19,0,0,0,5619.9434 +13883,16947,30227,-9,30229,30228,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.01459,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13883,16947,30228,30229,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,9.1519222,9.0468321,0,11,6,-68.424553,0,2,2,2021,8,0,84,72,1,0,0,10.943281,10.943281,.05,.05,0,0,0,0,0,0,1,1,0,4.925601,0,55.47,52.91,62.49,55.09,8.333333333333334,1,1,0,0,13,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13883,16947,30229,30228,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,8.5218124,8.6663637,0,21,-6,-72.382462,0,2,3,2021,10,0,24,27,1,0,0,22.706411,22.706411,.05,.05,0,0,0,0,0,2,1,1,0,0,0,62.49,55.09,55.47,52.91,8.333333333333334,1,1,0,0,13,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13883,16947,30230,-9,30229,30228,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.6601,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,5,1,607,153936.19,88872,194680.09,85524.844,0,1134.9652,5649.0684 +13884,16948,30231,30232,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,12,-1,37.862164,0,3,3,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,39.78,23.65,47.8,32.53,5,1,1,1,1,0,12,2,0,745.5,153835.56,173226.73,0,0,0,0,1602.5162 +13884,16948,30232,30231,-9,-9,1,1,64,0,0,0,2,2,-9,1,2,0,5.6149945,5.4474468,12,1,-.58970064,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,1,0,6.6097159,0,0,1,0,1,0,6.010252,47.8,32.53,39.78,23.65,5,1,1,0,0,10,12,2,0,745.5,153835.56,173226.73,0,0,0,0,1602.5162 +13884,16949,30233,-9,30231,30232,1,0,20,0,0,0,2,2,-9,1,3,0,0,0,0,0,-994.52148,0,3,2,2021,31,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,23.63,52.8,-9,-9,0,1,1,1,0,0,12,1,0,2792,-11887.916,0,0,0,0,0,1092.9974 +13885,16950,30234,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,8.4554844,8.3435278,0,0,-938.51617,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2909524,8.34408,38.27,39.23,-9,-9,5,1,1,0,0,0,11,5,1,162,397934.41,195939.92,0,0,0,0,3644.7844 +13886,16951,30235,30236,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,47,-2,-62.041214,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,120,1,1,0,.38264838,0,44.7,50.97,54,46,10,1,1,0,0,0,6,2,1,241.5,381672.13,145807.83,135534.16,0,0,0,1426.8845 +13886,16951,30236,30235,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,6.9943638,7.1738033,47,2,-90.826927,0,-9,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,127.61301,0,0,1,1,0,0,6.7968955,54,46,44.7,50.97,8,1,1,0,0,0,6,2,1,241.5,381672.13,145807.83,135534.16,0,0,0,1426.8845 +13887,16952,30237,30238,-9,-9,1,0,50,1,4,0,3,3,-9,0,5,6.5474572,6.6451182,0,8,-7,-25.295376,0,3,3,2021,8,0,10,10,1,0,0,7.6007514,7.6007514,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,52.64,38.41,5,2,3,0,0,6,4,3,1,613,264972.94,263823.5,0,0,0,0,735.1759 +13887,16952,30238,30237,-9,-9,1,1,57,1,4,0,3,3,-9,0,2,7.9798565,8.0641241,0,34,7,147.31067,0,3,3,2021,9,0,35,35,1,0,0,11.920252,11.920252,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.64,38.41,51.39,59.18,5,2,3,0,0,11,4,3,1,613,264972.94,263823.5,0,0,0,0,735.1759 +13887,16953,30239,-9,30237,30238,1,1,28,1,4,0,1,1,-9,0,5,7.0741277,6.9697437,0,0,0,-1079.741,0,3,3,2021,1,0,37,37,1,0,1,3.5075154,3.5075154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,8.333333333333334,2,3,0,0,7,4,2,1,1137,-82285.805,-8405.4717,0,0,0,0,570.9859 +13887,16954,30240,-9,30237,30238,1,1,26,1,4,0,2,2,-9,0,3,8.1410608,8.0230064,0,0,0,-881.33649,0,3,3,2021,12,0,20,-9,1,0,1,17.273415,17.273415,0,0,0,0,0,0,0,0,1,1,0,0,0,44.09,57.1,-9,-9,3.333333333333333,2,3,0,1,3,4,4,1,1167,223682.14,-38842.582,0,0,0,0,949.63513 +13887,16955,30241,-9,30245,30246,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-820.8858,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30242,-9,30245,30246,1,1,3,1,4,1,3,0,-9,0,4,0,0,0,0,0,-922.84229,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30243,-9,30245,30246,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1139.7482,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30244,-9,30245,30246,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1114.8062,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30245,30246,-9,-9,1,0,32,1,4,0,1,1,-9,0,4,0,0,0,8,0,51.161469,0,3,3,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.12,57.28,49.04,55.86,5,2,3,0,0,0,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13887,16955,30246,30245,30237,30238,1,1,32,1,4,0,1,1,-9,0,3,8.8800154,8.5989838,0,8,0,109.09677,0,3,3,2021,8,1,33,33,1,1,0,16.587585,16.587585,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,49.12,57.28,8.333333333333334,2,3,0,0,9,4,3,1,774.83331,136926,148696.67,0,0,24627.23,0,2596.801 +13888,16956,30247,30249,-9,-9,1,1,41,0,2,0,1,1,-9,0,3,8.8006811,8.8132639,0,13,-1,-41.289112,0,2,1,2021,12,1,45,48,1,1,0,19.18083,19.18083,.05,.05,0,0,0,0,0,0,1,1,0,7.0744586,0,35.73,52.39,41.68,59.06,6.666666666666667,1,1,0,0,14,1,5,1,444.33334,319225.97,77530.453,191896.78,85067.836,3705.2256,453.84137,5570.0439 +13888,16956,30248,-9,30249,30247,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-879.04327,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,444.33334,319225.97,77530.453,191896.78,85067.836,3705.2256,453.84137,5570.0439 +13888,16956,30249,30247,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.7682409,8.6475916,0,13,1,28.98616,0,2,1,2021,12,2,35,35,1,2,0,19.995476,19.995476,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.68,59.06,35.73,52.39,6.666666666666667,1,1,0,0,15,1,5,1,444.33334,319225.97,77530.453,191896.78,85067.836,3705.2256,453.84137,5570.0439 +13889,16957,30250,30251,-9,-9,1,1,50,0,0,0,1,1,-9,0,4,8.1412382,8.130229,0,29,-1,-80.475555,0,3,3,2021,14,2,85,55,1,2,0,5.2557487,5.2557487,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,45.81,61.51,10,1,1,0,0,13,13,4,1,608,485182.63,-5739.6016,238214.84,0,0,0,2469.02 +13889,16957,30251,30250,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,7.6482968,7.2732234,0,12,1,84.541946,0,-9,-9,2021,17,6,17,22,1,6,0,13.194278,13.194278,0,0,0,0,0,0,0,0,0,0,0,.79578,0,45.81,61.51,57.16,56.15,8.333333333333334,1,1,0,0,12,13,4,1,608,485182.63,-5739.6016,238214.84,0,0,0,2469.02 +13890,16958,30252,30254,-9,-9,1,1,53,0,2,0,2,2,-9,1,2,0,0,0,2,19,48.99041,-9,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.37,37.25,54.45,56.22,6.666666666666667,1,1,0,1,0,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13890,16958,30253,-9,30254,30252,1,0,10,0,2,1,3,0,-9,0,2,0,0,0,0,0,-972.48859,-9,2,2,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13890,16958,30254,30252,-9,-9,1,0,34,0,2,0,2,2,-9,0,4,6.5661097,6.448266,0,2,-19,-102.24358,0,3,2,2021,9,0,14,16,1,0,0,5.6254005,5.6254005,0,0,0,0,0,0,0,0,1,1,0,0,0,54.45,56.22,40.37,37.25,8.333333333333334,2,3,0,0,5,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13890,16958,30255,-9,30254,30252,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.56177,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,2,0,1126.75,1638627.9,998317.06,650700.06,147755.06,0,0,1874.6704 +13891,16959,30256,-9,-9,-9,1,0,40,0,0,0,2,2,-9,0,2,0,0,0,0,0,-887.23792,0,3,2,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,36.19,-9,-9,3.333333333333333,1,1,1,0,6,4,1,0,664,0,0,0,0,0,0,-284.51385 +13892,16960,30257,30258,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,17,11,46.684917,0,-9,-9,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.54,28.69,49.89,47.39,8.333333333333334,1,1,0,0,0,7,2,0,850.5,83489.602,0,0,0,0,0,583.56726 +13892,16960,30258,30257,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,6.6525335,6.8338709,0,17,-11,25.398027,0,2,1,2021,9,1,18,12,1,1,0,6.3249135,6.3249135,0,0,0,0,0,0,0,108,1,1,0,0,0,49.89,47.39,52.54,28.69,3.333333333333333,2,3,0,1,3,7,2,0,850.5,83489.602,0,0,0,0,0,583.56726 +13893,16961,30259,-9,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,0,0,0,0,0,-951.82355,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.01,63.17,-9,-9,8.333333333333334,2,3,0,0,6,2,1,1,493,0,0,0,0,0,0,979.1311 +13893,16962,30260,-9,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,0,0,0,0,0,-833.15509,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,1,0,0,2,1,1,584,85789.055,-8883.9756,0,0,0,0,399.18268 +13893,16963,30261,-9,-9,-9,1,0,41,0,0,0,3,3,-9,0,4,0,0,0,0,0,-901.07538,0,-9,-9,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,-9,-9,7,2,3,1,0,0,2,1,1,8187,98245.867,0,0,0,0,0,1196.8806 +13894,16964,30262,30263,-9,-9,1,0,80,0,0,0,3,3,-9,0,4,0,6.8288069,7.1659741,8,-1,-119.93695,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7376809,6.2366748,63.49,41.12,57.98,29.33,10,1,1,0,0,0,11,2,1,395.5,146575.75,101774.45,138226.28,0,0,0,2585.5791 +13894,16964,30263,30262,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.2451181,6.4395843,8,1,73.938637,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,10.534658,0,0,1,1,0,6.3663282,6.3398042,57.98,29.33,63.49,41.12,8.333333333333334,1,1,0,0,0,11,2,1,395.5,146575.75,101774.45,138226.28,0,0,0,2585.5791 +13895,16965,30264,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,4.8223324,4.8422055,0,0,-876.97943,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1496696,0,0,1,1,0,1.6156474,5.1629329,44.66,37.84,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,894,-145816.05,0,0,0,0,0,605.81335 +13896,16966,30265,-9,-9,-9,1,0,43,0,1,0,2,2,-9,1,2,7.7466369,7.3560467,0,0,0,-1054.6105,0,1,-9,2021,15,4,21,21,1,4,0,13.10638,13.10638,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.24,35.51,-9,-9,5,3,4,0,0,14,8,2,0,204,71752.672,-47237.313,0,0,0,0,3928.2295 +13896,16967,30266,-9,30265,-9,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-918.95892,-9,2,-9,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,1019,-80137.641,0,0,0,0,0,0 +13897,16968,30267,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-914.65009,0,3,3,2021,17,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7305311,0,52,46,-9,-9,5,1,1,0,0,0,10,1,1,2648,25510.021,0,0,0,607.06689,0,924.80182 +13898,16969,30268,30269,-9,-9,1,1,52,0,1,0,3,3,-9,0,4,7.902832,7.821095,0,6,1,122.45441,0,3,3,2021,8,0,44,44,1,0,0,8.6393166,8.6393166,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,52.17,27.83,5,1,1,0,0,8,6,3,1,363.66666,401804.91,199740.42,238865.34,13858.346,1157.4358,0,2013.2526 +13898,16969,30269,30268,-9,-9,1,0,51,0,1,0,3,3,-9,0,2,7.5685587,7.3966665,0,6,-1,-3.7863913,0,3,3,2021,12,0,26,26,1,0,0,7.1069355,7.1069355,0,0,0,0,0,0,0,0,1,1,0,0,0,52.17,27.83,51.83,57.2,5,1,1,0,0,8,6,3,1,363.66666,401804.91,199740.42,238865.34,13858.346,1157.4358,0,2013.2526 +13898,16969,30270,-9,30269,30268,1,0,15,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1023.4522,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,1,1,-9,0,0,6,3,1,363.66666,401804.91,199740.42,238865.34,13858.346,1157.4358,0,2013.2526 +13899,16970,30271,30272,-9,-9,1,0,31,0,0,0,1,1,-9,0,4,8.624691,8.4551306,0,3,0,100.34766,0,1,1,2021,12,3,46,48,1,3,0,14.673918,14.673918,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,50.01,55.31,8.333333333333334,1,1,0,0,9,10,5,0,1685.5,244892.81,-67519.641,425097,231868.05,-254.48396,4954.9453,5016.2461 +13899,16970,30272,30271,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.4479418,8.8781767,0,3,0,78.710686,-9,-9,-9,2021,13,1,45,0,1,1,0,15.336298,15.336298,.05,.05,0,0,0,0,0,0,0,0,0,6.831233,0,50.01,55.31,46.16,58.62,6.666666666666667,1,1,0,0,10,10,5,0,1685.5,244892.81,-67519.641,425097,231868.05,-254.48396,4954.9453,5016.2461 +13900,16971,30273,30274,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,8.952734,8.7441721,0,7,0,107.73942,0,2,3,2021,4,0,38,45,1,0,0,21.588696,21.588696,.05,.05,0,0,0,0,0,0,0,0,0,.33351964,0,55.93,52.62,53.23,47.51,6.666666666666667,1,1,0,0,7,7,5,1,327,35206.613,-86459.82,0,0,8514.251,0,5459.4185 +13900,16971,30274,30273,-9,-9,1,0,32,0,0,0,1,1,-9,0,2,8.918149,8.7210846,0,7,0,120.79938,0,2,3,2021,9,0,50,50,1,0,0,15.544016,15.544016,0,0,0,0,0,0,0,0,0,0,0,1.4496467,0,53.23,47.51,55.93,52.62,6.666666666666667,1,1,0,0,8,7,5,1,327,35206.613,-86459.82,0,0,8514.251,0,5459.4185 +13901,16972,30275,-9,30278,-9,1,1,22,0,1,0,2,2,-9,0,4,7.6757832,7.8745008,0,0,0,-1004.0702,0,3,3,2021,10,0,40,0,1,1,1,6.6967831,6.6967831,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,0,945,-142382.13,73655.719,0,0,0,0,932.54883 +13901,16973,30276,-9,30278,-9,1,0,22,0,1,0,2,2,-9,0,4,7.4874544,7.6229692,0,0,0,-972.71497,0,3,2,2021,9,0,32,32,1,0,1,5.3910875,5.3910875,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,0,0,3,6,3,0,837,102160.99,0,0,0,0,0,1406.8633 +13901,16974,30277,-9,30278,-9,1,0,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-996.56274,1,3,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8167968,0,57.57,43.81,-9,-9,10,2,3,0,0,2,6,1,0,224,151826.44,0,0,0,0,0,245.95134 +13901,16975,30278,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,6.7317076,7.1033792,0,0,0,-943.26929,0,3,3,2021,10,0,16,16,1,1,0,5.4756074,5.4756074,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,-9,-9,8,2,3,0,1,2,6,2,0,791,52787.523,0,0,0,0,0,1868.0984 +13901,16975,30279,-9,30278,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1093.0938,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,6,2,0,791,52787.523,0,0,0,0,0,1868.0984 +13902,16976,30280,-9,-9,-9,1,1,50,0,0,0,2,2,-9,0,5,9.1905622,9.1359205,0,0,0,-1107.0557,0,2,2,2021,11,0,40,38,1,0,0,28.156765,28.156765,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,13,2,5,1,699,63787.961,21483.947,90469.016,31378.859,13993.392,2308.1536,3451.6189 +13903,16977,30281,-9,-9,-9,1,0,38,0,1,0,2,2,-9,0,5,8.533536,8.2663565,0,0,0,-991.64545,0,-9,-9,2021,10,1,32,33,1,1,0,19.002958,19.002958,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.03,59.09,-9,-9,6.666666666666667,1,1,0,0,14,2,4,1,439,-38866.613,76129.367,124655.69,68977.016,3645.9133,-247.83664,1794.5569 +13903,16977,30282,-9,30281,-9,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1044.7771,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,439,-38866.613,76129.367,124655.69,68977.016,3645.9133,-247.83664,1794.5569 +13904,16978,30283,-9,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,7.7171588,7.9572973,6.3793626,0,0,-926.77887,-9,3,3,2021,11,1,48,0,1,1,0,5.1941729,5.1941729,0,0,0,0,0,0,0,0,0,0,0,1.3139322,6.4983501,47.93,49.39,-9,-9,8.333333333333334,1,1,0,0,13,10,4,1,322,987216.44,630351.19,390185.09,0,0,0,1553.6819 +13905,16979,30284,30285,-9,-9,1,1,42,0,1,0,2,2,-9,0,2,8.4651833,8.6230087,0,10,-1,68.153481,-9,1,3,2021,11,1,37,0,1,1,0,13.094411,13.094411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.16,48.66,37.44,35.75,5,1,1,0,0,12,2,5,1,580,932367.5,-28574.496,992445.56,393910.69,9587.6914,0,2963.2759 +13905,16979,30285,30284,-9,-9,1,0,43,0,1,0,2,2,-9,0,2,8.5125456,8.6029663,0,8,1,-143.32892,-9,3,-9,2021,14,4,35,0,1,4,0,14.984694,14.984694,0,0,0,0,0,0,0,0,1,1,0,2.2152658,0,37.44,35.75,45.16,48.66,3.333333333333333,1,1,0,0,12,2,5,1,580,932367.5,-28574.496,992445.56,393910.69,9587.6914,0,2963.2759 +13906,16980,30286,-9,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.6244211,8.3477688,0,0,0,-1106.8749,0,3,-9,2021,6,0,25,25,1,0,0,16.607042,16.607042,0,0,0,0,0,0,0,0,0,0,0,7.2668672,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,14,8,5,1,1486,419442.81,-2260.7468,0,0,0,0,2260.0261 +13907,16981,30287,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9476509,8.9867086,0,0,0,-959.1546,0,2,2,2021,11,2,45,55,1,2,0,20.709562,20.709562,0,0,0,0,0,0,1.2384801,0,0,0,0,4.1633363,0,43.42,62.33,-9,-9,8.333333333333334,1,1,0,0,11,7,5,1,250,599182.56,121914.7,548486.44,64800.664,0,0,3649.4358 +13908,16982,30288,-9,30290,-9,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-968.42041,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,3,0,1186,42082.242,119527.52,67607.883,57747.742,0,74.218163,2695.2598 +13908,16982,30289,-9,30290,-9,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-971.40393,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,3,0,1186,42082.242,119527.52,67607.883,57747.742,0,74.218163,2695.2598 +13908,16982,30290,-9,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,7.431531,7.7309809,6.4516888,0,0,-907.75488,0,2,3,2021,11,1,20,1,1,1,0,10.789407,10.789407,.05,.05,0,0,0,0,0,0,1,1,0,5.8753695,0,35.57,57.14,-9,-9,5,1,1,0,0,5,13,3,0,1186,42082.242,119527.52,67607.883,57747.742,0,74.218163,2695.2598 +13909,16983,30291,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,7.3821483,7.5388255,0,0,-945.18103,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.231142,7.3796349,39.49,48.49,-9,-9,6.666666666666667,1,1,0,0,5,9,3,0,271,690626.06,234276.38,320751.03,0,29050.766,0,1623.5095 +13910,16984,30292,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.0107355,6.0038128,0,0,-993.54681,-9,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.9359155,6.1476064,46.08,57.2,-9,-9,10,1,1,0,0,0,12,2,1,750,243648.05,-22858.586,110613.03,0,0,0,1218.5529 +13911,16985,30293,30294,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.9979963,8.4163113,0,41,1,-37.097252,0,2,2,2021,8,0,39,38,1,0,0,11.363921,11.363921,.05,.05,.05,0,0,0,0,0,0,0,0,2.7086918,0,48.94,54.95,41.29,55.13,6.666666666666667,1,1,0,0,11,9,5,1,822.5,1993343.6,1448831.4,325410.41,62735.102,0,0,3438.292 +13911,16985,30294,30293,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,8.9172258,8.4694977,0,41,-1,-40.706207,0,3,2,2021,15,4,44,37,1,4,0,16.137093,16.137093,.05,.05,.05,0,0,0,0,2,0,0,0,4.1233506,0,41.29,55.13,48.94,54.95,5,1,1,0,0,11,9,5,1,822.5,1993343.6,1448831.4,325410.41,62735.102,0,0,3438.292 +13912,16986,30295,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,6.8846145,6.7895298,0,0,-989.03894,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7540123,7.1687369,40.87,44.58,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,744,90424.508,133990.84,226023.75,204419.13,0,0,1037.1394 +13913,16987,30296,30297,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.1596994,8.1504641,0,12,-4,95.948128,0,3,3,2021,10,0,42,44,1,0,0,7.8580461,7.8580461,.05,.05,.05,0,0,0,0,0,0,0,0,2.7465866,0,54.2,57.49,55.32,45.22,8.333333333333334,1,1,0,0,10,12,4,1,424.5,554802.63,155978.22,179088.53,0,0,0,2863.9502 +13913,16987,30297,30296,-9,-9,1,0,57,0,0,0,1,1,-9,0,2,8.0571756,8.1815739,0,12,4,-69.452736,0,2,1,2021,6,0,30,25,1,0,0,13.581287,13.581287,0,0,0,0,0,0,0,0,0,0,0,1.8524097,0,55.32,45.22,54.2,57.49,8.333333333333334,1,1,0,0,6,12,4,1,424.5,554802.63,155978.22,179088.53,0,0,0,2863.9502 +13914,16988,30298,-9,30299,-9,1,1,8,2,4,1,3,0,-9,0,4,0,0,0,0,0,-858.48163,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,6,1,0,1829.3334,197384.5,150055.22,0,0,0,0,1402.0814 +13914,16988,30299,-9,-9,-9,1,0,37,2,4,0,2,2,-9,1,4,0,0,0,0,0,-1140.7903,0,2,-9,2021,11,0,0,16,3,2,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,49,55,-9,-9,7,4,2,0,1,1,6,1,0,1829.3334,197384.5,150055.22,0,0,0,0,1402.0814 +13914,16988,30300,-9,30299,-9,1,0,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-964.03876,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,6,1,0,1829.3334,197384.5,150055.22,0,0,0,0,1402.0814 +13914,16989,30301,-9,30299,-9,1,1,21,2,4,0,2,2,-9,1,5,0,0,0,0,0,-993.04114,0,2,3,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.32,54.19,-9,-9,5,4,2,1,0,0,6,1,0,796,103165.31,0,0,0,0,0,921.8407 +13914,16990,30302,-9,30299,-9,1,0,20,2,4,0,2,2,-9,0,2,0,0,0,0,0,-912.87793,0,2,3,2021,19,9,0,0,3,9,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,31.88,55.82,-9,-9,6.666666666666667,4,2,0,0,0,6,1,0,334.5,126058.64,0,0,0,0,0,251.8217 +13914,16990,30303,-9,30302,-9,1,1,0,2,4,1,3,0,-9,0,4,0,0,0,0,0,-930.20667,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,6,1,0,334.5,126058.64,0,0,0,0,0,251.8217 +13915,16991,30304,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1017.4365,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,62.21,39.31,-9,-9,10,1,1,0,0,0,2,1,0,394,-67099.625,0,0,0,0,0,1323.4523 +13915,16992,30305,-9,-9,30304,1,1,29,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1029.4089,0,-9,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,2,1,0,436,0,0,0,0,0,0,619.81329 +13916,16993,30306,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.9986663,7.7506399,0,0,-1049.5005,0,3,3,2021,8,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.7828665,57.09,43.99,-9,-9,8.333333333333334,1,1,0,0,13,2,4,0,626,903355.56,446062.91,90503.633,0,0,0,1116.3839 +13917,16994,30307,30308,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.554636,8.8558722,0,42,0,-133.21884,0,3,3,2021,6,0,25,34,1,0,0,27.46489,27.46489,0,0,0,0,0,0,0,0,0,0,0,7.6423254,0,58.15,52.91,58.81,52.66,6.666666666666667,1,1,0,0,10,7,5,1,263,3296429.5,799948.63,1681112.4,0,0,0,4319.6421 +13917,16994,30308,30307,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.0747986,8.0507593,0,42,0,-182.29764,0,3,3,2021,9,0,30,26,1,0,0,13.337334,13.337334,0,0,0,0,0,0,0,0,0,0,0,0,0,58.81,52.66,58.15,52.91,6.666666666666667,1,1,0,0,11,7,5,1,263,3296429.5,799948.63,1681112.4,0,0,0,4319.6421 +13918,16995,30309,-9,-9,-9,1,0,47,0,2,0,2,2,-9,1,3,0,5.8407569,5.7733126,0,0,-1145.2273,0,2,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.7285671,0,53.38,52.51,-9,-9,8.333333333333334,1,1,0,0,14,4,2,1,1834,29030.717,0,0,0,0,0,1901.2582 +13919,16996,30310,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,6.76333,7.1198325,5.1031265,0,0,-1035.1427,0,-9,-9,2021,10,0,59,65,1,0,0,2.0769055,2.0769055,0,0,0,0,0,0,0,0,0,0,0,5.0696106,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,8,9,2,0,944,-10090.784,0,0,0,0,0,-535.96082 +13920,16997,30311,30312,-9,-9,1,0,47,0,1,0,1,1,-9,0,3,7.6370745,7.8868313,0,16,-3,-207.54889,-9,2,2,2021,28,11,37,0,1,11,0,6.4416895,6.4416895,.05,.05,0,0,0,0,0,0,1,1,0,0,0,20.41,65.22,51.41,56.15,1.666666666666667,1,1,0,1,8,4,5,0,664.33331,607073.13,398067.28,279917.78,54441.008,0,0,4155.8486 +13920,16997,30312,30311,-9,-9,1,1,50,0,1,0,1,1,-9,0,3,8.9877443,9.1987238,0,16,3,88.507759,-9,2,2,2021,17,6,37,0,1,6,0,20.471163,20.471163,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,20.41,65.22,3.333333333333333,1,1,0,1,10,4,5,0,664.33331,607073.13,398067.28,279917.78,54441.008,0,0,4155.8486 +13920,16997,30313,-9,30311,30312,1,0,13,0,1,1,3,0,-9,0,2,0,0,0,0,0,-994.82129,-9,1,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,4,5,0,664.33331,607073.13,398067.28,279917.78,54441.008,0,0,4155.8486 +13921,16998,30314,-9,-9,-9,1,0,68,0,1,0,2,2,-9,0,4,0,7.0502877,6.8679309,0,0,-945.13293,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.965333,55.19,54.26,-9,-9,3.333333333333333,1,1,0,0,7,2,2,1,2316,320918.75,246177.97,175693.14,0,7506.7319,0,9.0837164 +13921,16999,30315,-9,30316,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-939.01343,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,2,4,1,1124,101732.86,2762.4658,85157.422,30192.301,0,0,1121.4111 +13921,16999,30316,-9,30314,-9,1,0,36,0,1,0,2,2,-9,0,3,8.0862207,8.2699242,4.1822715,0,0,-985.461,0,2,2,2021,9,0,36,36,1,0,0,12.963582,12.963582,.05,.05,0,0,0,0,0,0,1,1,0,5.4357462,0,50.14,53.97,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,1124,101732.86,2762.4658,85157.422,30192.301,0,0,1121.4111 +13922,17000,30317,-9,30319,30318,1,1,16,0,1,1,3,0,-9,0,5,0,0,0,0,0,-984.75031,-9,3,3,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,429.33334,80705.68,10276.271,69817.297,0,0,9519.7266,2476.4734 +13922,17000,30318,30319,-9,-9,1,1,53,0,1,0,3,3,-9,0,3,8.3662672,8.5112896,0,9,-1,-37.362503,0,2,2,2021,11,2,50,60,1,2,0,10.134274,10.134274,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.89,56.79,32.03,55.7,6.666666666666667,1,1,0,0,10,11,4,1,429.33334,80705.68,10276.271,69817.297,0,0,9519.7266,2476.4734 +13922,17000,30319,30318,-9,-9,1,0,54,0,1,0,3,3,-9,0,3,7.5034342,7.1969829,0,9,1,-2.8660586,0,3,3,2021,21,9,25,20,1,9,0,7.1173759,7.1173759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.03,55.7,35.89,56.79,5,1,1,0,0,10,11,4,1,429.33334,80705.68,10276.271,69817.297,0,0,9519.7266,2476.4734 +13923,17001,30320,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.7296963,8.4210863,0,0,0,-903.65424,0,2,2,2021,13,3,35,37,1,3,0,21.866503,21.866503,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.24,60.65,-9,-9,8.333333333333334,1,1,0,0,12,12,5,1,1030,506165,420557,192527.5,43851.301,0,0,2388.4514 +13924,17002,30321,-9,-9,-9,1,0,62,0,0,0,2,2,-9,1,1,0,4.5625634,5.0767632,0,0,-838.64661,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.7157626,36.86,19.89,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,143,-214291.3,0,0,0,0,0,494.19711 +13925,17003,30322,30323,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,41,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,66.52,38.36,10,1,1,0,0,0,12,1,0,377.5,274069.69,0,170447.75,0,0,0,43.438507 +13925,17003,30323,30322,-9,-9,1,1,63,0,0,0,3,3,-9,0,3,0,0,0,41,-3,0,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.52,38.36,62.66,52.4,6.666666666666667,1,1,0,0,0,12,1,0,377.5,274069.69,0,170447.75,0,0,0,43.438507 +13926,17004,30324,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,9.9557638,10.085687,0,0,-892.41943,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,9.861721,0,90.325172,0,1,1,0,6.5505018,9.7901487,39.97,20.89,-9,-9,8.333333333333334,1,1,0,0,0,12,5,0,1251,512557.44,377234.66,324129.03,0,0,0,13091.002 +13927,17005,30325,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.8166709,7.693367,0,0,-1086.5814,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,14.86023,71.69677,136.16197,0,1,1,0,.16533276,7.9024572,53,44,-9,-9,8,3,4,0,0,0,12,3,1,358,579461,192918.5,373229.84,0,0,0,2233.6589 +13927,17006,30326,-9,30325,-9,1,1,46,0,0,0,2,2,-9,0,3,7.9622049,7.9032717,0,0,0,-1009.9877,0,2,2,2021,9,0,38,38,1,0,0,8.4045162,8.4045162,0,0,0,0,0,0,0,42,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,3,4,0,0,10,12,3,1,673,-164894.56,0,0,0,186.64763,0,407.70291 +13928,17007,30327,30328,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,4.7653246,4.9942517,51,-3,99.157028,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0646229,4.7686872,33.92,22.81,57.34,47.92,3.333333333333333,1,1,0,0,0,4,3,1,1313.5,1876377,1365943.6,399606.63,0,0,0,4076.165 +13928,17007,30328,30327,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,0,8.1358089,7.9624791,12,3,91.314598,0,-9,-9,2021,6,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,7.3030591,8.2971725,57.34,47.92,33.92,22.81,8.333333333333334,1,1,0,0,14,4,3,1,1313.5,1876377,1365943.6,399606.63,0,0,0,4076.165 +13929,17008,30329,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,8.3309717,8.3765869,0,0,0,-893.18524,0,2,2,2021,8,0,45,45,1,0,0,8.9294186,8.9294186,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,10,4,0,920,996649.19,601670.94,308974,0,0,0,1093.924 +13930,17009,30330,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.1038933,8.0153618,0,0,0,-1027.0916,0,2,3,2021,12,1,39,39,1,1,0,8.5177145,8.5177145,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.61,22.34,-9,-9,6.666666666666667,1,1,0,0,10,11,4,1,545,651782.75,277395.81,103589.08,0,0,0,1178.5409 +13931,17010,30331,30333,-9,-9,1,1,41,0,2,0,2,2,-9,1,1,0,0,0,3,2,0,-9,3,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.97,21.3,36.77,43.96,5,1,1,0,0,9,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17010,30332,-9,30333,30331,1,1,17,0,2,1,2,0,-9,0,5,0,5.4776125,5.1927691,0,0,-952.52716,-9,2,2,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6875196,0,57.26,48.5,-9,-9,6.666666666666667,1,1,0,0,1,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17010,30333,30331,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,0,0,0,3,-2,0,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,36.77,43.96,21.97,21.3,6.666666666666667,1,1,0,0,9,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17010,30334,-9,30333,30331,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-854.36908,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.3162716,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,1,0,1512,53432.219,0,0,0,15122.799,0,2738.4744 +13931,17011,30335,-9,30333,30331,1,1,19,0,2,1,2,0,-9,0,5,0,0,0,0,0,-1050.8778,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.63,64.61,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,441,0,0,0,0,0,0,-431.16479 +13932,17012,30336,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-984.27161,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,7.3422527,0,0,1,1,0,0,0,41.93,31.82,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,1098,463943.06,0,326677.75,0,0,0,654.77228 +13933,17013,30337,-9,30339,30338,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-993.90497,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13933,17013,30338,30339,-9,-9,1,1,35,0,2,0,2,2,-9,1,2,8.8222055,8.2941008,0,8,1,129.35681,0,3,2,2021,20,8,43,35,1,8,0,11.02123,11.02123,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,22.88,55.89,24.87,53.81,3.333333333333333,1,1,0,1,9,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13933,17013,30339,30338,-9,-9,1,0,34,0,2,0,2,2,-9,0,2,7.2685013,7.0361791,0,8,-1,-57.335644,0,-9,-9,2021,25,12,32,32,1,12,0,5.5404744,5.5404744,.05,.05,0,0,0,0,0,0,1,0,1,0,0,24.87,53.81,22.88,55.89,3.333333333333333,1,1,0,0,9,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13933,17013,30340,-9,30339,30338,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1062.1865,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,442,181615.45,47890.07,121987.24,44571.77,0,0,2891.3855 +13934,17014,30341,-9,30344,30343,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-956.92126,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13934,17014,30342,-9,30344,30343,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1035.0735,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13934,17014,30343,30344,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.9122124,8.7867012,0,4,8,-76.168571,0,2,2,2021,9,0,40,41,1,0,0,20.474878,20.474878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.9,52.64,60.44,27.34,6.666666666666667,1,1,0,0,9,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13934,17014,30344,30343,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,8.1065693,7.9725075,0,4,-8,-111.06298,0,-9,-9,2021,7,0,26,38,1,0,0,17.590889,17.590889,0,0,0,0,0,0,0,0,1,1,0,0,0,60.44,27.34,55.9,52.64,8.333333333333334,1,1,0,0,8,9,5,1,1482.25,206144.06,36077.82,365400.63,139153.91,9837.8018,3729.9363,3885.7207 +13935,17015,30345,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,9.1507721,8.8310509,0,0,-1080.3186,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8975132,9.0943031,52.99,53.95,-9,-9,8.333333333333334,1,1,0,0,8,4,5,1,173,6485338.5,971210.19,596563.13,0,0,0,4194.4395 +13936,17016,30346,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,7.4159598,7.1696482,0,0,-951.98834,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7572207,7.669682,55.51,43.54,-9,-9,6.666666666666667,1,1,0,0,7,7,3,1,230,710459.5,399105.97,133951.13,0,0,0,1276.6586 +13937,17017,30347,30348,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,55,0,113.36539,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.95,51.24,60.29,52.11,8.333333333333334,1,1,0,0,7,7,2,1,377,578588.63,240285.14,184008.28,0,0,0,1236.1638 +13937,17017,30348,30347,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,6.7789569,6.8287091,55,0,21.378281,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9984713,60.29,52.11,43.95,51.24,8.333333333333334,1,1,0,0,6,7,2,1,377,578588.63,240285.14,184008.28,0,0,0,1236.1638 +13938,17018,30349,30350,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.3121166,8.7082043,0,35,-4,-83.118355,0,2,2,2021,6,0,36,36,1,0,0,14.422296,14.422296,0,0,0,0,0,0,0,14.5,0,0,0,4.8009868,0,46.1,54.45,62.51,39.17,1.666666666666667,1,1,0,0,10,13,5,1,851,1518185,1102025,269866.72,0,1159.8171,0,4103.6055 +13938,17018,30350,30349,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,8.0440722,8.380497,35,4,-66.880241,0,3,3,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,14.5,0,0,0,6.0360532,8.1092615,62.51,39.17,46.1,54.45,10,1,1,0,0,0,13,5,1,851,1518185,1102025,269866.72,0,1159.8171,0,4103.6055 +13939,17019,30351,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,6.8730145,6.7629662,0,0,-1021.1255,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.9173456,6.5724173,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,12,7,2,1,447,266068.47,117730.28,0,0,0,0,121.99015 +13940,17020,30352,30353,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3385353,7.905817,0,13,0,130.27196,0,1,2,2021,7,0,30,0,1,0,0,14.971304,14.971304,0,0,0,0,0,0,0,0,0,0,0,0,0,58.89,48.6,53.53,51,8.333333333333334,1,1,0,0,11,2,4,1,865,425578.56,224165.59,127174.11,13407.009,8679.668,0,2464.3118 +13940,17020,30353,30352,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.232173,7.8970008,0,13,0,-5.1037412,0,1,-9,2021,6,0,40,35,1,0,0,11.001173,11.001173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.53,51,58.89,48.6,8.333333333333334,1,1,0,0,15,2,4,1,865,425578.56,224165.59,127174.11,13407.009,8679.668,0,2464.3118 +13941,17021,30354,-9,30355,30356,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-975.77911,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,1,284.33334,244044.17,8762.6631,564086.88,227475.94,12758.561,12724.207,3566.355 +13941,17021,30355,30356,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,8.3900986,8.0705614,0,23,-8,-44.575211,0,1,2,2021,7,0,26,50,1,0,0,14.068699,14.068699,0,0,0,0,0,0,0,0,1,1,0,7.3559151,0,54.96,53.17,57.16,56.15,10,1,1,0,0,9,10,5,1,284.33334,244044.17,8762.6631,564086.88,227475.94,12758.561,12724.207,3566.355 +13941,17021,30356,30355,-9,-9,1,1,46,1,1,0,1,1,-9,0,4,8.8689127,8.7073212,0,19,8,-23.506372,0,1,1,2021,8,0,45,45,1,0,0,16.166229,16.166229,0,0,0,0,0,0,0,0,1,1,0,3.8653173,0,57.16,56.15,54.96,53.17,8.333333333333334,1,1,0,0,11,10,5,1,284.33334,244044.17,8762.6631,564086.88,227475.94,12758.561,12724.207,3566.355 +13942,17022,30357,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.3530235,7.3880253,0,4,9,37.938339,0,3,3,2021,16,4,8,9,1,4,0,24.123892,24.123892,0,0,0,0,0,0,0,0,0,0,0,2.1156983,0,39.04,52.49,33.14,64.63,6.666666666666667,1,1,0,0,12,11,3,1,782,151583.14,281616.72,252282.39,15812.843,0,0,2.0694158 +13942,17023,30358,-9,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,7.6437311,7.6926003,0,4,0,124.11025,0,-9,-9,2021,21,9,33,32,1,9,0,7.4106469,7.4106469,.05,.05,0,0,0,0,0,0,0,0,0,6.8635583,0,33.14,64.63,39.04,52.49,8.333333333333334,1,1,0,0,14,11,3,1,684,184178.08,25032.863,131929.58,0,0,0,1092.9167 +13943,17024,30359,30360,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,6.9814796,7.3865137,0,26,-7,-82.152534,0,2,2,2021,18,6,20,18,1,6,0,7.5222816,7.5222816,0,0,0,0,0,0,0,7,1,1,0,0,0,43.79,35.64,52.4,52.91,1.666666666666667,1,1,0,0,7,1,3,0,2036,298205.25,17105.762,153060.83,0,0,0,1907.5295 +13943,17024,30360,30359,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,7.7428427,8.2383852,0,26,7,-83.21769,0,3,3,2021,11,0,59,79,1,0,0,5.0099983,5.0099983,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,52.4,52.91,43.79,35.64,10,1,1,0,0,9,1,3,0,2036,298205.25,17105.762,153060.83,0,0,0,1907.5295 +13943,17025,30361,-9,30359,30360,1,0,20,0,0,0,2,2,1,0,2,0,0,0,0,0,-853.32257,-9,2,2,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,37.91,-9,-9,3.333333333333333,1,1,1,0,0,1,1,0,841,81949.422,0,0,0,0,0,931.99695 +13943,17026,30362,-9,30359,30360,1,1,18,0,0,0,2,2,1,1,3,0,0,0,0,0,-783.84399,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.18,54.39,-9,-9,5,1,1,0,0,0,1,1,0,303,83016.672,0,0,0,0,0,535.77551 +13944,17027,30363,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.8008881,8.6526012,3.7371609,0,0,-935.26031,0,1,3,2021,10,0,37,37,1,0,0,15.795221,15.795221,.05,.05,0,0,0,0,0,0,1,1,0,4.0325809,0,48,52.43,-9,-9,3.333333333333333,1,1,0,0,11,9,5,1,264,458640.88,403919.63,244751.77,0,47879.445,0,2066.0652 +13945,17028,30364,30365,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,0,8.0616884,7.7212844,27,-2,-44.171772,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8526168,7.8513565,54.2,57.49,54.1,59.11,8.333333333333334,1,1,0,0,0,7,3,1,966,1635848.8,847099.13,871062.25,221988,0,0,2083.9902 +13945,17028,30365,30364,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,0,0,31,2,-57.324799,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9722252,0,54.1,59.11,54.2,57.49,10,1,1,0,0,0,7,3,1,966,1635848.8,847099.13,871062.25,221988,0,0,2083.9902 +13946,17029,30366,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1157.7877,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,55.28,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,725,0,0,0,0,0,0,496.06079 +13947,17030,30367,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,4,6.253119,6.1296377,0,0,0,-1105.8774,0,3,3,2021,9,0,10,20,1,0,0,4.1725769,4.1725769,.05,.05,0,0,0,0,0,42,1,1,0,0,0,39.93,57.25,-9,-9,10,4,2,0,0,8,5,2,0,2542,149095.8,115057.47,114241.73,0,10741.17,0,597.841 +13948,17031,30368,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,4.4253683,3.8961897,0,0,-1037.6395,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.4288464,57.57,49.69,-9,-9,6.666666666666667,3,4,0,0,0,7,2,1,245,242920.78,143593.63,0,0,0,0,49.982101 +13949,17032,30369,30370,-9,-9,1,0,34,0,0,0,2,2,-9,0,4,0,0,0,2,-24,37.606026,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,66.59999999999999,39.44,7,1,1,0,0,0,4,5,1,223.5,426220.44,150896.17,210925.89,77845.852,14517.291,0,6909.0215 +13949,17032,30370,30369,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,9.6892738,10.045257,0,2,24,-31.258677,0,2,2,2021,4,0,50,57,1,0,0,43.319851,43.319851,.05,.05,0,0,0,0,0,0,1,1,0,0,0,66.59999999999999,39.44,48,56,1.666666666666667,2,3,0,0,8,4,5,1,223.5,426220.44,150896.17,210925.89,77845.852,14517.291,0,6909.0215 +13950,17033,30371,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.9956779,5.6594534,0,0,-1062.9139,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2002711,5.8731036,59.06,37.38,-9,-9,8.333333333333334,1,1,0,0,8,2,2,1,126,93736.992,79070.703,0,0,0,0,623.36877 +13951,17034,30372,30373,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,6.8617554,7.3299518,5.1752105,37,0,55.919212,0,3,2,2021,8,0,21,20,1,0,0,7.2639809,7.2639809,0,0,0,0,0,0,0,2,0,0,0,3.763253,4.8366766,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,8,5,4,1,1006,442228.69,523942.19,0,0,14009.697,0,3038.6836 +13951,17034,30373,30372,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.426322,8.4764309,6.8389487,37,0,-139.15717,0,2,3,2021,9,0,30,20,1,0,0,18.173843,18.173843,0,0,0,0,0,0,0,2,0,0,0,7.0628257,6.7773466,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,8,5,4,1,1006,442228.69,523942.19,0,0,14009.697,0,3038.6836 +13952,17035,30374,30375,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,12,6,-80.254097,0,-9,-9,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.68,54.3,50.98,39.67,5,1,1,0,0,2,9,3,0,477,784824.5,507260.25,308781.91,0,0,0,1908.5297 +13952,17035,30375,30374,-9,-9,1,1,51,0,0,0,2,2,-9,1,3,7.6598067,7.6169529,0,10,-6,95.120987,0,-9,-9,2021,14,1,21,21,1,1,0,12.581264,12.581264,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.98,39.67,37.68,54.3,1.666666666666667,1,1,0,0,14,9,3,0,477,784824.5,507260.25,308781.91,0,0,0,1908.5297 +13953,17036,30376,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,7.1542525,7.2777414,0,0,-972.48138,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.0051384,7.0635605,49.22,24.76,-9,-9,5,1,1,0,0,0,12,3,1,154,84107.75,191955.42,0,0,0,0,1794.2585 +13954,17037,30377,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,7.040709,7.0825043,0,0,0,-1063.7852,0,2,3,2021,25,9,17,17,1,9,0,7.3407121,7.3407121,0,0,0,0,0,0,0,27,1,1,0,0,0,31.25,34.53,-9,-9,1.666666666666667,4,2,0,1,4,8,2,0,221,-157212.41,0,0,0,0,10933.187,2077.5066 +13955,17038,30378,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,3,7.5482283,7.6801386,0,0,0,-974.23712,0,2,3,2021,10,1,25,30,1,1,0,7.9679523,7.9679523,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,10,11,3,1,253,53888.625,0,0,0,0,0,1878.0699 +13956,17039,30379,30380,-9,-9,1,1,65,0,0,0,1,1,-9,0,5,6.6555209,6.4400301,0,37,3,11.846577,0,3,2,2021,11,1,24,25,1,1,0,4.2122173,4.2122173,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.77,60.16,32.31,56.7,6.666666666666667,1,1,0,0,13,8,4,1,1410,672421.75,149059.91,273765.81,0,10388.003,0,3438.0093 +13956,17039,30380,30379,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.2781334,8.1895962,0,37,-3,-16.281574,0,3,2,2021,22,11,31,37,1,11,0,11.903445,11.903445,0,0,0,0,0,0,0,0,0,0,0,8.1830635,0,32.31,56.7,48.77,60.16,3.333333333333333,3,4,0,0,10,8,4,1,1410,672421.75,149059.91,273765.81,0,10388.003,0,3438.0093 +13957,17040,30381,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,8.3603487,8.1317263,5.5530357,0,0,-1075.6729,0,-9,-9,2021,10,0,40,35,1,0,0,13.864692,13.864692,0,0,.05,0,0,0,0,0,0,0,0,5.3776746,5.5743885,62.27,40.23,-9,-9,8.333333333333334,1,1,0,0,9,6,4,1,784,-28734.092,41321.258,0,0,0,0,2662.3037 +13957,17041,30382,-9,-9,30381,1,0,21,0,0,0,2,2,-9,0,4,7.9867187,8.1565247,0,0,0,-899.599,-9,-9,2,2021,8,0,50,0,1,0,1,7.6335788,7.6335788,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.06,62.04,-9,-9,10,1,1,0,0,3,6,4,1,1216,-146116.89,36605.363,0,0,6647.5635,0,1159.6689 +13958,17042,30383,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,7.6113172,7.7074323,0,0,0,-1152.1675,0,3,2,2021,12,0,37,37,1,0,0,8.1701555,8.1701555,0,0,0,0,0,0,0,0,0,0,0,0,0,45.81,61.51,-9,-9,1.666666666666667,1,1,0,0,10,11,3,1,419,77994.148,0,536.6239,0,685.90662,0,1206.2203 +13959,17043,30384,30385,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.7054243,8.2186584,0,24,-6,2.8136709,0,-9,-9,2021,6,0,55,40,1,0,0,10.052454,10.052454,0,0,0,0,0,0,0,0,1,1,0,2.6713238,0,54.2,57.49,49.41,58.28,8.333333333333334,1,1,0,0,9,7,5,1,717,1077639.3,382725.72,771347,0,0,0,4150.8643 +13959,17043,30385,30384,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,8.5699167,8.4105959,5.481708,24,6,-71.49897,0,2,2,2021,8,0,55,50,1,0,0,9.8264999,9.8264999,0,0,0,0,0,0,0,0,1,1,0,3.733681,5.030643,49.41,58.28,54.2,57.49,6.666666666666667,1,1,0,0,9,7,5,1,717,1077639.3,382725.72,771347,0,0,0,4150.8643 +13959,17044,30386,-9,30384,30385,1,1,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-937.18756,-9,1,1,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4315641,0,25.33,61.71,-9,-9,6.666666666666667,1,1,0,0,0,7,1,1,1023,-55817.445,0,0,0,0,0,-270.44348 +13959,17045,30387,-9,30384,30385,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-1036.8741,-9,1,1,2021,17,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.06,64.46000000000001,-9,-9,8.333333333333334,1,1,0,0,1,7,1,1,1466,7080.8745,0,0,0,0,0,8.5822582 +13960,17046,30388,-9,-9,-9,1,0,33,0,0,0,1,1,-9,0,4,8.3693924,8.4226732,0,0,0,-1146.0105,0,1,1,2021,10,1,40,39,1,1,0,10.050471,10.050471,0,0,0,0,0,0,0,0,0,0,0,.3424184,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,9,8,4,1,1201,186191.19,-11034.297,0,0,0,4673.9482,1071.3918 +13961,17047,30389,30390,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,8.4585629,7.9391375,10,0,-32.436501,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.9924593,8.5178766,44.57,52.34,57.16,56.15,1.666666666666667,1,1,0,0,11,9,3,1,2007.5,1185605.9,805921.75,261939.09,0,0,0,1537.0146 +13961,17047,30390,30389,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,0,0,0,10,0,-94.027695,0,3,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.4584785,0,57.16,56.15,44.57,52.34,8.333333333333334,1,1,0,0,7,9,3,1,2007.5,1185605.9,805921.75,261939.09,0,0,0,1537.0146 +13962,17048,30391,-9,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.9914408,7.0538044,0,0,-1009.54,0,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.265275,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,7,10,2,1,473,104989.95,100732.16,0,0,0,0,654.14453 +13963,17049,30392,-9,-9,-9,1,1,27,1,1,0,2,2,-9,0,5,8.7929325,8.6648493,0,0,0,-1061.6356,0,-9,-9,2021,8,0,45,49,1,0,0,15.632442,15.632442,.05,.05,0,0,0,0,0,0,1,0,1,1.1446869,0,48.74,60.18,-9,-9,8.333333333333334,1,1,0,0,10,13,4,1,412.5,56667.246,44054.453,0,0,0,0,2534.7766 +13963,17049,30393,-9,30394,30392,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1025.3943,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,1,412.5,56667.246,44054.453,0,0,0,0,2534.7766 +13963,17050,30394,-9,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,5.7901807,5.7234449,0,0,0,-879.16382,0,-9,-9,2021,22,8,10,32,1,8,0,4.3525448,4.3525448,0,0,0,0,0,0,0,0,1,0,1,0,0,38.83,37.82,-9,-9,5,1,1,0,1,10,13,2,1,249,58092.652,0,0,0,0,873.40887,510.85312 +13964,17051,30395,-9,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,6.3528075,6.4891758,0,0,-1087.2377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6855927,55.85,44.94,-9,-9,10,1,1,0,0,0,7,2,1,163,55064.531,37812.344,72933,0,0,0,1744.052 +13965,17052,30396,30397,-9,-9,1,0,69,0,0,0,1,1,-9,0,4,0,7.9983621,8.305233,6,0,-42.360107,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3684707,8.2347841,57.16,56.15,58.32,50.22,8.333333333333334,1,1,0,0,10,11,3,1,833,2517601.8,1395243,292298.38,0,0,0,5080.958 +13965,17052,30397,30396,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,0,0,0,6,0,-70.220146,0,2,2,2021,9,0,0,8,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2896719,0,58.32,50.22,57.16,56.15,8.333333333333334,1,1,0,0,13,11,3,1,833,2517601.8,1395243,292298.38,0,0,0,5080.958 +13966,17053,30398,30399,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.3170691,8.3427286,43,1,-96.677673,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0427227,54.77,55.87,60.02,56.42,8.333333333333334,1,1,0,0,11,12,4,1,635,4229881,3298770,533248.44,0,0,862.698,4173.689 +13966,17053,30399,30398,-9,-9,1,1,67,0,0,0,1,1,-9,0,5,0,7.8256845,7.4552951,43,-1,51.258728,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5423746,60.02,56.42,54.77,55.87,10,1,1,0,0,6,12,4,1,635,4229881,3298770,533248.44,0,0,862.698,4173.689 +13967,17054,30400,30401,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,7.9335275,8.0316095,5.8148499,40,0,43.501705,0,2,3,2021,10,0,25,30,1,0,0,11.577671,11.577671,0,0,0,0,0,0,0,0,1,1,0,0,5.5313711,53.16,54.06,50.51,48.51,8.333333333333334,1,1,0,0,11,13,3,0,168.5,731176.63,519512.69,233904.75,0,0,0,1835.2876 +13967,17054,30401,30400,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,5.3248739,5.7983179,40,9,-75.037315,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.339632,50.51,48.51,53.16,54.06,8.333333333333334,1,1,0,0,5,13,3,0,168.5,731176.63,519512.69,233904.75,0,0,0,1835.2876 +13967,17055,30402,-9,30400,30401,1,0,34,0,0,0,1,1,-9,0,3,8.0358963,8.2969313,0,0,0,-1021.0252,0,1,2,2021,16,4,44,44,1,4,0,10.533303,10.533303,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.04,48.85,-9,-9,3.333333333333333,1,1,0,0,10,13,4,0,1653,166122.83,49973.742,164830.5,105346.73,0,0,1461.8717 +13968,17056,30403,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.0787354,8.2307482,0,0,0,-981.82581,0,-9,-9,2021,21,6,65,65,1,6,0,4.6623888,4.6623888,0,0,0,0,0,0,0,0,0,0,0,.32717186,0,32.13,54.99,-9,-9,5,1,1,0,0,10,7,4,0,60,0,0,0,0,0,0,907.04376 +13969,17057,30404,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1072.1749,0,3,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,49,-9,-9,7,1,1,0,0,0,5,1,0,806,453629.88,37044.273,225108.73,0,0,0,313.84103 +13970,17058,30405,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,6.3008213,6.1367254,0,0,-1109.1592,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2474041,59.48,25.86,-9,-9,5,1,1,0,0,0,11,2,1,1303,277762.69,62151.109,0,0,0,0,1838.8583 +13971,17059,30406,-9,-9,-9,1,0,87,0,0,0,2,2,-9,0,5,0,7.1429682,7.306828,0,0,-885.62628,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3056312,56.67,53.83,-9,-9,10,1,1,0,0,0,7,2,0,311,990998.19,-12536.313,726663.88,0,0,0,1571.8362 +13972,17060,30407,-9,30408,-9,1,1,20,0,0,0,2,2,-9,0,2,5.7512155,5.9357476,0,0,0,-1081.6465,0,2,-9,2021,8,1,4,7,1,1,1,11.063092,11.063092,0,0,0,0,0,0,0,0,0,0,0,0,0,55.25,48.17,-9,-9,1.666666666666667,1,1,0,1,2,5,2,1,718,24089.164,0,0,0,0,0,183.59555 +13972,17061,30408,30409,-9,-9,1,0,50,0,0,0,2,2,-9,0,5,8.0294285,7.9208131,0,6,-4,-13.143106,0,2,3,2021,5,0,40,37,1,0,0,7.7413955,7.7413955,0,0,0,0,0,0,0,0,0,0,0,0,0,46.4,59.87,48.29,47.3,8.333333333333334,1,1,0,0,8,5,4,1,1274.5,174157.61,23756.953,44803.375,-15016.794,15188.966,0,1740.9712 +13972,17061,30409,30408,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,7.8797874,7.8488073,0,6,4,53.783428,0,-9,-9,2021,9,1,37,37,1,1,0,8.0383453,8.0383453,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.29,47.3,46.4,59.87,8.333333333333334,1,1,0,0,7,5,4,1,1274.5,174157.61,23756.953,44803.375,-15016.794,15188.966,0,1740.9712 +13973,17062,30410,30411,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.5446949,8.7749519,0,11,0,-39.776382,0,2,3,2021,6,0,37,40,1,0,0,20.316582,20.316582,.05,.05,0,0,0,0,0,0,0,0,0,1.8366957,0,57.57,49.69,53.1,52.62,8.333333333333334,1,1,0,0,13,6,5,1,528.5,470201.75,318583.47,114414.27,0,0,0,2465.5942 +13973,17062,30411,30410,-9,-9,1,0,53,0,0,0,1,1,-9,0,3,7.9381204,7.9280519,0,11,0,55.480236,0,2,3,2021,9,0,30,30,1,0,0,11.19219,11.19219,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.1,52.62,57.57,49.69,8.333333333333334,1,1,0,0,10,6,5,1,528.5,470201.75,318583.47,114414.27,0,0,0,2465.5942 +13974,17063,30412,30413,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,0,7.7500081,7.6269455,46,-23,-121.33041,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.115811,7.9921017,55.53,51.55,43.34,22.34,8.333333333333334,1,1,0,0,0,10,3,1,498.5,691007.69,213891.22,398592.81,0,0,0,3108.7168 +13974,17063,30413,30412,-9,-9,1,1,90,0,0,0,3,3,-9,0,2,0,5.4430399,5.5447216,46,23,-64.230042,0,3,3,2021,24,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.2772334,5.5213575,43.34,22.34,55.53,51.55,6.666666666666667,1,1,0,0,0,10,3,1,498.5,691007.69,213891.22,398592.81,0,0,0,3108.7168 +13975,17064,30414,30416,-9,-9,1,0,32,0,1,0,2,2,-9,0,1,6.7594724,6.7091303,0,6,0,-56.168262,0,-9,-9,2021,33,11,19,13,1,11,0,6.5645375,6.5645375,0,0,0,0,0,0,0,0,0,0,0,0,0,12.84,51.54,34.57,55.98,1.666666666666667,1,1,0,0,5,7,4,0,370,-66465.203,0,0,0,5751.5825,0,2901.1672 +13975,17064,30415,-9,30414,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.4034,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,4,0,370,-66465.203,0,0,0,5751.5825,0,2901.1672 +13975,17064,30416,30414,-9,-9,1,1,32,0,1,0,2,2,-9,0,3,8.4013853,8.3673515,0,6,0,-45.390305,0,2,2,2021,13,2,64,52,1,2,0,9.2685137,9.2685137,0,0,0,0,0,0,0,14.5,0,0,0,0,0,34.57,55.98,12.84,51.54,3.333333333333333,1,1,0,0,8,7,4,0,370,-66465.203,0,0,0,5751.5825,0,2901.1672 +13976,17065,30417,30418,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.5551672,6.4297519,8,1,.93242759,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4376726,6.2118177,43.65,58.28,57.16,56.15,8.333333333333334,1,1,0,0,0,12,2,1,579,-50124.496,0,0,0,0,0,1039.6708 +13976,17065,30418,30417,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,0,0,18,-1,-17.649628,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.709949,0,57.16,56.15,43.65,58.28,10,1,1,0,0,0,12,2,1,579,-50124.496,0,0,0,0,0,1039.6708 +13977,17066,30419,30420,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.7678738,8.8159714,0,20,0,45.272148,0,2,2,2021,11,0,52,40,1,0,0,11.182516,11.182516,0,0,.05,0,0,0,0,0,0,0,0,7.4045863,0,57.16,56.15,53.05,26.88,8.333333333333334,1,1,0,0,8,4,5,1,1056,145475.06,72042.586,89597.422,27138.973,0,0,3577.5537 +13977,17066,30420,30419,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.1908441,7.4139919,0,18,0,-49.876228,0,2,2,2021,3,0,10,10,1,0,0,15.262004,15.262004,0,0,0,0,0,0,0,2,0,0,0,2.0363045,0,53.05,26.88,57.16,56.15,8.333333333333334,1,1,0,0,8,4,5,1,1056,145475.06,72042.586,89597.422,27138.973,0,0,3577.5537 +13978,17067,30421,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,7.444097,7.5703363,0,0,-1080.9819,-9,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5475688,7.7692571,54.37,54.8,-9,-9,8.333333333333334,4,2,0,0,4,10,3,1,2102,403137.75,291040.81,0,0,0,0,1728.2432 +13979,17068,30422,-9,30423,30424,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1076.2749,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,571.66669,-74543.508,0,0,0,8634.9277,0,2160.7534 +13979,17068,30423,30424,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.2088833,7.1358337,0,6,14,79.759506,0,2,3,2021,6,0,28,32,1,0,0,4.7105289,4.7105289,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,9,2,3,0,571.66669,-74543.508,0,0,0,8634.9277,0,2160.7534 +13979,17068,30424,30423,-9,-9,1,1,31,0,1,0,1,1,-9,0,4,8.7125244,8.4415522,0,6,-14,78.843277,0,2,2,2021,6,0,40,50,1,0,0,15.327664,15.327664,0,0,0,0,0,0,0,0,1,1,0,5.1249146,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,6,2,3,0,571.66669,-74543.508,0,0,0,8634.9277,0,2160.7534 +13979,17069,30425,-9,30423,30424,1,1,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1084.1302,-9,2,1,2021,11,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,2,1,0,916,-94460.93,0,0,0,0,0,0 +13980,17070,30426,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.5098085,7.8294849,0,0,-986.47705,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0777102,7.2892194,34.26,58.61,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,473,115577.7,48468.121,0,0,0,0,2281.156 +13981,17071,30427,30428,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7372127,7.4286685,0,29,-4,90.877594,0,3,3,2021,16,6,26,30,1,6,0,10.145971,10.145971,.05,.05,.05,0,0,0,0,0,0,0,0,7.8993368,0,32.88,47.18,60.02,56.42,6.666666666666667,2,3,0,0,12,5,5,1,503,1021115.1,401118.56,473609.44,7985.5195,9187.585,0,9392.208 +13981,17071,30428,30427,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.5610752,9.8435688,0,10,4,-46.83815,0,2,2,2021,9,0,40,40,1,0,0,51.106262,51.106262,.05,.05,.05,0,0,0,0,0,0,0,0,4.7139258,0,60.02,56.42,32.88,47.18,8.333333333333334,2,3,0,0,8,5,5,1,503,1021115.1,401118.56,473609.44,7985.5195,9187.585,0,9392.208 +13981,17072,30429,-9,30427,30428,1,1,23,0,0,0,1,1,1,0,5,8.0838032,7.9075036,0,0,0,-1006.117,-9,2,1,2021,10,0,37,0,1,0,1,11.240976,11.240976,.05,.05,0,0,0,0,0,0,0,0,0,2.4283862,0,59.04,32.46,-9,-9,5,2,3,0,0,3,5,4,1,288,38701.512,-28591.271,217771.31,126344.89,13761.929,0,1043.1289 +13981,17073,30430,-9,30427,30428,1,1,18,0,0,0,2,2,1,0,4,0,0,0,0,0,-993.49176,-9,2,1,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,8.333333333333334,2,3,1,0,0,5,1,1,8891,163392.73,0,0,0,0,0,0 +13982,17074,30431,30432,-9,-9,1,0,30,0,1,0,2,2,-9,0,5,8.3050442,7.8566337,0,5,-3,-10.955294,0,-9,-9,2021,11,0,30,21,1,0,0,10.500351,10.500351,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49,59,45.43,45.17,6.666666666666667,1,1,0,0,8,12,4,1,1098,-140005.78,23274.357,0,0,-439.59332,0,2698.8853 +13982,17074,30432,30431,-9,-9,1,1,33,0,1,0,2,2,-9,0,5,8.166832,8.3760548,0,5,3,30.894474,-9,3,3,2021,10,2,41,0,1,2,0,8.3203659,8.3203659,.05,.05,0,0,0,0,.1453097,0,1,1,0,4.8843107,0,45.43,45.17,49,59,1.666666666666667,1,1,0,0,10,12,4,1,1098,-140005.78,23274.357,0,0,-439.59332,0,2698.8853 +13982,17074,30433,-9,30431,30432,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1024.28,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,4,1,1098,-140005.78,23274.357,0,0,-439.59332,0,2698.8853 +13983,17075,30434,30435,-9,-9,1,0,88,0,0,0,3,3,-9,0,2,0,0,0,67,2,85.170929,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.99,38.05,58.91,35.36,6.666666666666667,1,1,0,0,0,4,2,1,792.5,34471.93,137673.72,0,0,0,0,1377.2629 +13983,17075,30435,30434,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,6.8888292,6.8865147,67,-2,38.387619,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5654187,58.91,35.36,52.99,38.05,6.666666666666667,1,1,0,0,0,4,2,1,792.5,34471.93,137673.72,0,0,0,0,1377.2629 +13984,17076,30436,-9,-9,-9,1,1,0,1,0,1,3,0,-9,0,4,0,0,0,0,0,-874.64001,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,63,-9,-9,7,4,6,-9,0,0,9,3,0,229.66667,465112.84,128225.46,377684.72,194594.97,1999.699,0,2800.1509 +13984,17076,30437,30438,-9,-9,1,0,51,1,0,0,2,2,-9,0,4,8.0463047,8.1178312,0,4,1,18.948469,0,-9,-9,2021,8,1,37,40,1,1,0,8.1110039,8.1110039,0,0,0,0,0,0,0,7,1,0,1,0,0,41.65,60.41,39.98,29.03,6.666666666666667,1,1,0,0,6,9,3,0,229.66667,465112.84,128225.46,377684.72,194594.97,1999.699,0,2800.1509 +13984,17076,30438,30437,-9,-9,1,1,50,1,0,0,3,3,-9,1,2,0,0,0,4,-1,-41.837795,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,42,1,0,1,2.1663978,0,39.98,29.03,41.65,60.41,5,1,1,0,0,0,9,3,0,229.66667,465112.84,128225.46,377684.72,194594.97,1999.699,0,2800.1509 +13984,17077,30439,-9,30437,30438,1,1,23,1,0,0,2,2,-9,0,5,8.3441753,8.1099129,0,0,0,-1039.6079,0,2,3,2021,8,0,69,48,1,0,1,7.9588733,7.9588733,.05,.05,0,0,0,0,0,2,1,0,1,0,0,62.29,49.94,-9,-9,6.666666666666667,1,1,0,0,5,9,5,0,587,-169411.39,-93160,0,0,5613.4824,0,1913.2859 +13985,17078,30440,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,3,7.4630709,7.5270958,5.5847216,0,0,-1054.0553,0,3,2,2021,7,0,33,33,1,0,0,6.7508774,6.7508774,0,0,0,0,0,0,0,0,1,1,0,5.7524033,0,43.55,39.41,-9,-9,5,1,1,0,0,6,1,3,0,168.5,180303.88,0,87580.563,53383.367,-252.17433,0,917.13245 +13985,17078,30441,-9,30440,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1008.585,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,168.5,180303.88,0,87580.563,53383.367,-252.17433,0,917.13245 +13986,17079,30442,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,5,9.3202868,9.0328207,0,0,0,-977.67468,0,2,2,2021,7,1,35,35,1,1,0,25.585905,25.585905,.05,.05,0,0,0,0,0,2,0,0,0,3.4797132,0,63.23,48.07,-9,-9,10,1,1,0,0,13,10,5,1,165,59624.789,94552.633,0,0,0,0,4181.3521 +13987,17080,30443,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.7700777,6.2248225,0,0,-1153.9679,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.159368,6.941371,57.68,42.36,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,946,326125.91,26092.967,151223,0,38109.289,0,1639.8622 +13988,17081,30444,30445,-9,-9,1,1,58,0,0,0,3,3,-9,0,1,0,5.6571999,5.6996231,34,7,-22.671328,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3810534,31.9,19.36,55.37,40.83,1.666666666666667,2,3,0,0,0,6,3,1,1104.5,29483.549,223218.69,0,0,0,0,2665.6694 +13988,17081,30445,30444,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.1646557,8.3434639,0,8,-7,11.603453,0,3,3,2021,11,0,38,32,1,0,0,10.855728,10.855728,0,0,0,0,0,0,0,2,1,1,0,6.5786705,0,55.37,40.83,31.9,19.36,5,2,3,0,0,11,6,3,1,1104.5,29483.549,223218.69,0,0,0,0,2665.6694 +13988,17082,30446,-9,30445,30444,1,0,33,0,0,0,2,2,-9,0,4,8.0093536,8.2702961,0,0,0,-991.96533,0,2,2,2021,13,3,41,45,1,3,1,9.6820736,9.6820736,.05,.05,0,0,0,0,0,2,1,1,0,1.3867368,0,42.69,50.73,-9,-9,3.333333333333333,2,3,0,0,8,6,4,1,963,1698.9779,-72837.859,0,0,0,7649.9214,2256.2817 +13988,17083,30447,-9,30445,30444,1,0,31,0,0,0,1,1,-9,0,4,7.48595,7.7351432,0,0,0,-1063.6847,0,2,3,2021,13,1,20,20,1,1,1,12.328431,12.328431,.05,.05,0,0,0,0,0,7,1,1,0,0,0,43.68,53.03,-9,-9,8.333333333333334,2,3,0,0,4,6,3,1,110,-10677.396,5964.7153,0,0,0,0,1146.8671 +13988,17084,30448,-9,30445,30444,1,1,28,0,0,0,1,1,-9,0,4,8.2639437,8.2853909,0,0,0,-978.383,0,2,2,2021,26,10,38,38,1,10,1,11.643642,11.643642,.05,.05,0,0,0,0,0,7,1,1,0,.70201004,0,17.89,59.26,-9,-9,0,2,3,0,0,5,6,4,1,3782,42317.582,-34438.141,0,0,0,0,1172.1542 +13989,17085,30449,-9,30451,30452,1,1,16,0,2,1,2,0,-9,0,5,0,0,0,0,0,-956.91852,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,60.16,-9,-9,10,1,1,0,0,0,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13989,17085,30450,-9,30451,30452,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1240.083,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13989,17085,30451,30452,-9,-9,1,0,54,0,2,0,2,2,-9,0,3,8.3513651,8.468194,0,31,-1,-7.5750995,0,2,2,2021,13,1,35,35,1,1,0,12.824146,12.824146,.05,.05,0,0,0,0,0,0,1,1,0,2.6594002,0,46.01,43.43,39.66,51.77,3.333333333333333,1,1,0,0,11,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13989,17085,30452,30451,-9,-9,1,1,55,0,2,0,2,2,-9,0,3,8.6411572,8.3436127,0,31,1,-128.56067,0,2,3,2021,12,0,37,37,1,0,0,19.955647,19.955647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.66,51.77,46.01,43.43,5,1,1,0,0,11,6,4,1,1169.5,1174978.1,816996.19,414613.28,174149.03,6149.4375,5822.3291,3309.6152 +13990,17086,30453,30454,-9,-9,1,1,49,0,0,0,2,2,-9,0,4,8.3036356,8.4688587,0,29,-1,76.967056,0,3,2,2021,7,0,37,39,1,0,0,14.84508,14.84508,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,45.92,36.22,10,2,3,0,0,13,5,4,1,505.5,659332.88,196438.16,264755.72,0,0,0,3392.783 +13990,17086,30454,30453,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,30,1,-65.244896,0,3,1,2021,10,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.92,36.22,57.16,56.15,0,4,2,0,0,0,5,4,1,505.5,659332.88,196438.16,264755.72,0,0,0,3392.783 +13990,17087,30455,-9,30454,30453,1,1,24,0,0,0,2,2,-9,0,5,4.8055105,5.0078654,0,0,0,-1078.5302,0,2,2,2021,9,0,6,6,1,0,1,2.7979782,2.7979782,0,0,0,0,0,0,0,14.5,1,1,0,0,0,62.39,56.71,-9,-9,8.333333333333334,4,2,0,0,5,5,2,1,1166,0,0,0,0,0,0,133.56136 +13991,17088,30456,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.4473562,8.5395975,0,0,0,-845.50012,0,-9,-9,2021,26,12,85,43,1,12,0,6.1494851,6.1494851,.05,.05,0,0,0,0,0,0,0,0,0,.68182236,0,37.87,61.03,-9,-9,3.333333333333333,1,1,0,0,13,11,5,1,647,-86006.781,71293.367,185227.97,86936.109,18525.516,1135.941,1495.8959 +13992,17089,30457,30458,-9,-9,1,1,86,0,0,0,2,2,-9,0,1,0,6.7477679,6.5559998,62,2,-17.739241,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,2.5443652,47.774651,27.831043,0,1,1,0,0,6.2250934,31.38,27.98,54.92,22.2,6.666666666666667,1,1,0,0,0,2,2,1,1358.5,574700.88,152912.63,203958.86,0,0,0,1423.9316 +13992,17089,30458,30457,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,5.4508529,5.5176926,62,-2,-65.994415,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,14.766725,0,14.5,1,1,0,0,5.4277472,54.92,22.2,31.38,27.98,6.666666666666667,1,1,0,0,0,2,2,1,1358.5,574700.88,152912.63,203958.86,0,0,0,1423.9316 +13992,17090,30459,-9,30458,30457,1,1,50,0,0,0,2,2,-9,0,5,3.3273153,3.2826655,0,0,0,-1081.5585,0,2,2,2021,8,0,40,40,1,0,0,.097021878,.097021878,0,0,0,0,0,0,0,86,1,1,0,0,0,52.72,55.58,-9,-9,6.666666666666667,1,1,0,0,7,2,2,1,662,158494.39,-64744.16,58723.379,40923.215,0,0,112.18302 +13993,17091,30460,30461,-9,-9,1,1,62,0,0,0,3,3,-9,0,1,0,5.7556205,5.4224296,38,7,72.612579,0,3,3,2021,12,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,5.4724422,31.58,19.71,38.24,25.76,6.666666666666667,2,3,0,1,0,6,4,1,1417,95394.594,-24271.914,145986.98,0,2811.47,153.2112,2987.9849 +13993,17091,30461,30460,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,8.4556561,8.0534573,0,12,-7,-110.5675,0,3,3,2021,13,2,37,37,1,2,0,13.990461,13.990461,0,0,0,0,0,0,0,74.5,1,1,0,7.6163893,0,38.24,25.76,31.58,19.71,5,2,3,0,1,15,6,4,1,1417,95394.594,-24271.914,145986.98,0,2811.47,153.2112,2987.9849 +13993,17092,30462,-9,30461,30460,1,1,32,0,0,0,1,1,-9,0,3,8.1823807,8.5592213,0,0,0,-966.7132,0,2,2,2021,10,1,38,46,1,1,1,15.128796,15.128796,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,45.9,41.18,-9,-9,3.333333333333333,2,3,0,0,9,6,4,1,105,82785.18,77496.563,0,0,0,0,1982.026 +13994,17093,30463,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,6.4411974,6.5817327,0,0,-863.83704,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5075307,51,46,-9,-9,8,3,4,0,0,0,8,2,0,216,432440.31,-44531.836,331772.44,0,0,0,991.19598 +13995,17094,30464,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,5,6.8529563,7.0664849,0,0,0,-1037.3733,-9,-9,-9,2021,9,0,38,0,1,0,0,2.9109485,2.9109485,0,0,0,0,0,0,0,0,0,0,0,3.3501558,0,62.39,56.71,-9,-9,10,1,1,0,0,1,11,2,0,173,-25369.197,0,0,0,0,0,678.56042 +13995,17095,30465,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,5,7.2339621,7.3480325,0,0,0,-927.55438,-9,-9,-9,2021,10,0,36,0,1,0,0,4.1962919,4.1962919,.05,.05,0,0,0,0,0,0,0,0,0,1.2814008,0,62.39,56.71,-9,-9,10,1,1,0,0,7,11,3,0,158,21302.621,-87535.648,0,0,7046.1113,0,289.90756 +13995,17096,30466,-9,30465,-9,1,0,23,0,0,0,2,2,-9,0,4,2.8986473,3.0875399,0,0,0,-1102.3345,-9,2,-9,2021,11,0,30,0,1,2,1,.065164343,.065164343,0,0,0,0,0,0,0,0,0,0,0,0,0,47,58,-9,-9,10,1,1,0,0,1,11,2,0,2143,-98928.367,0,0,0,2014.678,0,-90.578407 +13995,17097,30467,-9,30465,-9,1,0,18,0,0,0,2,2,-9,0,3,7.8509221,7.8468404,0,0,0,-920.99164,-9,2,-9,2021,31,12,37,0,1,12,1,7.1497755,7.1497755,0,0,0,0,0,0,0,0,0,0,0,0,0,28.71,61.83,-9,-9,5,1,1,0,0,1,11,3,0,492,-152073.06,0,0,0,0,0,1837.1489 +13996,17098,30468,30469,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,7.8618126,7.9023919,45,7,110.76722,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9695954,7.9224405,56.66,29.23,52.6,52.88,6.666666666666667,1,1,0,0,6,6,4,1,206.5,883243.44,660582.13,212829.84,0,2011.946,0,2722.2632 +13996,17098,30469,30468,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.4539104,7.6185174,45,-7,20.91736,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4704471,52.6,52.88,56.66,29.23,8.333333333333334,2,3,0,0,0,6,4,1,206.5,883243.44,660582.13,212829.84,0,2011.946,0,2722.2632 +13997,17099,30470,30471,-9,-9,1,1,61,0,0,0,1,1,-9,0,2,0,8.5810499,8.4290705,7,1,-148.12779,0,2,1,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.242867,8.0480709,45.03,43.24,50.97,49.75,8.333333333333334,1,1,0,0,7,12,4,1,1311.5,306080.91,88116.805,231590.45,123499.58,0,0,4977.8516 +13997,17099,30471,30470,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.3143506,6.9863577,0,7,-1,54.841721,0,2,1,2021,12,3,20,20,1,3,0,8.1632452,8.1632452,0,0,0,0,0,0,0,2,0,0,0,6.3950644,0,50.97,49.75,45.03,43.24,8.333333333333334,1,1,0,0,8,12,4,1,1311.5,306080.91,88116.805,231590.45,123499.58,0,0,4977.8516 +13997,17100,30472,-9,30471,30470,1,1,25,0,0,0,2,2,-9,0,3,0,0,0,0,0,-893.33362,0,1,1,2021,22,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,27.96,63.01,-9,-9,1.666666666666667,1,1,1,0,4,12,1,1,782,0,0,0,0,0,0,926.81213 +13998,17101,30473,-9,30475,30474,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-876.83093,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,0,2171.3333,29599.256,15624.949,0,0,0,0,2373.0845 +13998,17101,30474,30475,-9,-9,1,1,36,0,1,0,2,2,-9,0,3,8.2698021,8.1304712,0,8,2,-12.025279,0,-9,-9,2021,11,0,65,60,1,0,0,9.3019037,9.3019037,.05,.05,0,0,0,0,0,2,1,1,0,0,0,50.05,56.68,52.57,52.89,8.333333333333334,1,1,0,0,7,10,4,0,2171.3333,29599.256,15624.949,0,0,0,0,2373.0845 +13998,17101,30475,30474,-9,-9,1,0,34,0,1,0,2,2,-9,0,3,7.2896552,7.6661048,0,8,-2,-74.705025,0,2,3,2021,11,1,30,35,1,1,0,6.3033657,6.3033657,.05,.05,0,0,0,0,0,7,1,1,0,0,0,52.57,52.89,50.05,56.68,8.333333333333334,1,1,0,0,11,10,4,0,2171.3333,29599.256,15624.949,0,0,0,0,2373.0845 +13999,17102,30476,30477,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,8.0536594,8.2067785,0,30,-3,22.366337,0,3,3,2021,8,0,38,38,1,0,0,9.469573,9.469573,0,0,0,0,0,0,0,7,0,0,0,2.814235,0,48.2,52.06,53,54,6.666666666666667,1,1,0,0,6,12,5,1,436,293159.91,205653.66,196127.89,151146.83,0,0,3200.355 +13999,17102,30477,30476,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,8.3431158,8.4398193,0,7,3,15.618608,-9,-9,-9,2021,9,0,38,0,1,1,0,12.806257,12.806257,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53,54,48.2,52.06,8,1,1,0,0,1,12,5,1,436,293159.91,205653.66,196127.89,151146.83,0,0,3200.355 +13999,17103,30478,-9,30476,30477,1,0,26,0,0,0,2,2,-9,0,2,7.263813,7.1057153,0,0,0,-1135.4426,0,3,2,2021,19,7,30,15,1,7,1,5.7074265,5.7074265,0,0,0,0,0,0,0,2,0,0,0,0,0,36.79,40.21,-9,-9,5,1,1,0,0,6,12,3,1,369,135806.84,0,0,0,0,0,596.18951 +13999,17104,30479,-9,30476,30477,1,0,19,0,0,0,2,2,-9,0,3,7.8365111,7.6353664,0,0,0,-1007.9846,0,3,2,2021,13,3,35,35,1,3,1,8.9907293,8.9907293,0,0,0,0,0,0,0,7,0,0,0,0,0,46.33,55.93,-9,-9,6.666666666666667,1,1,0,0,4,12,3,1,1326,-179573.95,0,0,0,0,0,438.62061 +14000,17105,30480,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,5,0,5.4597087,5.1988535,0,0,-943.08276,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,5.1982064,55.74,51.41,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,250,185205.75,0,0,0,0,0,1693.1583 +14001,17106,30481,30482,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,7.0356112,7.2471509,0,18,-3,-58.066116,0,-9,-9,2021,11,0,20,27,1,2,0,7.736268,7.736268,0,0,0,0,0,0,0,0,0,0,0,.055783883,0,49,56,43.54,59.6,7,2,3,0,0,1,8,4,1,586.66669,204289.33,0,280921.34,192049.05,0,0,2595.8298 +14001,17106,30482,30481,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.6310883,8.5172634,0,18,3,-1.8165354,0,1,1,2021,11,1,36,40,1,1,0,18.98045,18.98045,0,0,0,0,0,0,0,0,0,0,0,0,0,43.54,59.6,49,56,6.666666666666667,2,3,0,0,9,8,4,1,586.66669,204289.33,0,280921.34,192049.05,0,0,2595.8298 +14001,17106,30483,-9,30481,30482,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-894.06396,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,1,586.66669,204289.33,0,280921.34,192049.05,0,0,2595.8298 +14002,17107,30484,30485,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.0583158,6.1057882,49,1,-198.61861,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7054529,5.991684,49.33,27.69,51,46,1.666666666666667,1,1,0,0,5,5,2,1,288.5,391947.25,194875.59,176452.28,0,0,0,2866.4033 +14002,17107,30485,30484,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,0,0,6,-1,162.43285,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,49.33,27.69,7,1,1,0,0,0,5,2,1,288.5,391947.25,194875.59,176452.28,0,0,0,2866.4033 +14003,17108,30486,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1077.4963,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,13.986855,0,126.20033,0,1,1,0,3.3720548,0,46.89,15.25,-9,-9,1.666666666666667,1,1,0,0,0,9,1,1,470,-38284.273,0,0,0,0,0,1429.4379 +14003,17109,30487,-9,-9,30486,1,1,24,0,0,0,2,2,-9,0,4,7.7220654,8.0247717,0,0,0,-1006.9996,0,-9,2,2021,11,0,48,40,1,0,0,6.1083016,6.1083016,0,0,0,0,0,0,0,2,1,1,0,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,0,0,6,9,3,1,105,109121.07,0,0,0,0,0,1211.7349 +14004,17110,30488,30489,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,5.3596668,6.9578843,6.5535436,12,-7,62.830902,0,2,2,2021,10,0,10,8,1,0,0,2.4064288,2.4064288,0,0,0,0,0,0,0,0,1,1,0,6.916008,6.8203077,49.41,58.28,55.96,49.93,8.333333333333334,1,1,0,0,15,7,2,1,1119.5,431528.56,163066.84,365249,0,0,0,3102.7544 +14004,17110,30489,30488,-9,-9,1,1,81,0,0,0,3,3,-9,0,3,0,0,0,12,7,8.8564186,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.96,49.93,49.41,58.28,8.333333333333334,4,2,0,0,4,7,2,1,1119.5,431528.56,163066.84,365249,0,0,0,3102.7544 +14005,17111,30490,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,7.7330265,7.8877416,0,0,0,-1065.7308,0,2,2,2021,7,0,38,38,1,0,0,9.386076,9.386076,0,0,0,0,0,0,0,0,1,1,0,3.9579117,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,12,3,1,1847,342962.16,40660.273,319954.09,0,0,0,774.48694 +14006,17112,30491,-9,30493,30494,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.14288,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14006,17112,30492,-9,30493,30494,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.46509,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14006,17112,30493,30494,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.6301527,6.4988346,0,14,1,13.417679,0,3,2,2021,14,2,15,14,1,2,0,5.2158184,5.2158184,0,0,0,0,0,0,0,7,1,1,0,0,0,36.66,50.85,48.2,47.33,6.666666666666667,2,3,0,0,6,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14006,17112,30494,30493,-9,-9,1,1,32,0,2,0,2,2,-9,0,1,7.469871,7.2482491,0,14,-1,-55.183281,0,3,2,2021,9,0,30,45,1,0,0,6.368063,6.368063,0,0,0,0,0,0,0,0,1,1,0,0,0,48.2,47.33,36.66,50.85,6.666666666666667,2,3,0,0,9,2,2,1,855,-72229.805,0,0,0,-805.79419,922.28375,1086.4753 +14007,17113,30495,30496,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.2556248,8.1498528,0,9,-3,-51.45245,0,2,3,2021,19,8,35,35,1,8,0,17.746771,17.746771,.05,.05,0,0,0,0,0,0,0,0,0,7.8964324,0,34.23,62.3,35.93,55.1,3.333333333333333,2,3,0,0,9,8,5,1,1327.5,189421.52,-18644.023,380056.81,200470.28,6174.8804,1731.2284,4768.3096 +14007,17113,30496,30495,-9,-9,1,1,39,0,0,0,2,2,-9,0,3,8.3730392,8.2992048,0,9,3,-51.925343,0,2,2,2021,12,0,38,38,1,0,0,14.339022,14.339022,.05,.05,0,0,0,0,0,0,0,0,0,4.2589989,0,35.93,55.1,34.23,62.3,6.666666666666667,1,1,0,0,12,8,5,1,1327.5,189421.52,-18644.023,380056.81,200470.28,6174.8804,1731.2284,4768.3096 +14008,17114,30497,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,9.1540575,8.7743511,0,0,0,-913.19543,0,2,2,2021,11,0,48,38,1,0,0,19.477453,19.477453,0,0,0,0,0,0,0,0,0,0,0,0,0,37.13,55.9,-9,-9,1.666666666666667,2,3,0,0,5,8,5,0,381,100853.8,0,0,0,0,1056.5414,1947.8009 +14009,17115,30498,-9,30499,-9,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1059.3297,0,1,-9,2021,26,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,16.17,57.37,-9,-9,3.333333333333333,1,1,1,1,11,7,1,1,1073,155920.34,0,0,0,0,0,0 +14009,17116,30499,30500,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,7.3202729,7.7232871,0,2,-2,30.390696,0,2,2,2021,5,0,12,27,1,0,0,15.072905,15.072905,0,0,0,0,0,0,0,7,0,0,0,0,0,61.12,51.57,57.16,56.15,10,1,1,0,0,11,7,4,1,2784.5,782300,155946.83,502096.78,67553.32,0,0,2590.0601 +14009,17116,30500,30499,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,8.3312855,8.4605093,0,2,2,-118.86833,0,-9,-9,2021,7,0,35,30,1,0,0,16.111824,16.111824,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,12,7,4,1,2784.5,782300,155946.83,502096.78,67553.32,0,0,2590.0601 +14010,17117,30501,30502,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,0,0,8,0,0,0,3,3,2021,9,0,0,35,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.95,49.07,50.76,46.32,8.333333333333334,1,1,0,0,9,12,1,1,1761.5,362236.63,-62163.285,157120.91,0,0,0,660.08594 +14010,17117,30502,30501,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,47,0,0,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.76,46.32,57.95,49.07,8.333333333333334,1,1,0,0,0,12,1,1,1761.5,362236.63,-62163.285,157120.91,0,0,0,660.08594 +14011,17118,30503,-9,30505,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-866.95239,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,5,1,796,192790.36,81213.156,356061.53,223351.81,0,0,4182.1504 +14011,17118,30504,-9,30505,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-915.86475,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,5,1,796,192790.36,81213.156,356061.53,223351.81,0,0,4182.1504 +14011,17118,30505,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,8.8477621,9.0235529,5.6195426,0,0,-1002.1117,0,-9,-9,2021,26,10,30,0,1,10,0,30.861078,30.861078,.05,.05,0,0,0,0,0,0,1,0,1,5.2595353,0,25.44,65.40000000000001,-9,-9,1.666666666666667,1,1,0,0,3,7,5,1,796,192790.36,81213.156,356061.53,223351.81,0,0,4182.1504 +14012,17119,30506,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,7.3046288,7.5839181,0,0,0,-1138.6592,0,-9,-9,2021,4,0,32,35,1,0,0,6.2849479,6.2849479,0,0,0,0,0,0,0,0,0,0,0,.67511237,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,2,10,3,0,218,58242.801,0,0,0,0,0,880.49921 +14013,17120,30507,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.1913829,8.3637323,8.2338095,0,0,-921.03174,0,-9,-9,2021,13,2,30,27,1,2,0,3.7461081,3.7461081,.05,.05,0,0,0,0,0,14.5,1,1,0,0,7.9608779,55.08,48.98,-9,-9,10,1,1,0,0,14,8,4,0,350,362078.28,87657.102,230001.97,0,0,0,1028.129 +14014,17121,30508,30509,-9,-9,1,0,28,0,1,0,2,2,-9,0,3,8.134388,7.9984541,0,4,-11,-131.64528,0,-9,-9,2021,7,0,37,38,1,0,0,11.267327,11.267327,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,54.79,55.86,8.333333333333334,1,1,0,0,7,12,5,1,979.33331,-113046.73,22321.605,85526.82,93399.547,55384.27,0,4278.4116 +14014,17121,30509,30508,-9,-9,1,1,39,0,1,0,1,1,-9,0,4,8.9135971,8.595314,0,4,11,30.915892,0,-9,-9,2021,7,0,42,39,1,0,0,21.249052,21.249052,.05,.05,0,0,0,0,0,0,1,1,0,3.3081205,0,54.79,55.86,49.04,55.86,8.333333333333334,1,1,0,0,6,12,5,1,979.33331,-113046.73,22321.605,85526.82,93399.547,55384.27,0,4278.4116 +14014,17121,30510,-9,30508,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1040.2529,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,979.33331,-113046.73,22321.605,85526.82,93399.547,55384.27,0,4278.4116 +14015,17122,30511,30512,-9,-9,1,1,43,0,1,0,1,1,-9,0,4,8.6195269,8.7412567,0,19,0,37.460274,0,3,2,2021,7,0,47,48,1,0,0,18.123327,18.123327,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,48.87,58.55,8.333333333333334,1,1,0,0,10,12,5,1,858,315141.59,108074.11,482633.94,138078.08,0,0,5394.2197 +14015,17122,30512,30511,-9,-9,1,0,43,0,1,0,1,1,-9,0,4,8.9903183,8.856616,0,19,0,-23.358242,0,2,2,2021,12,1,40,35,1,1,0,20.643097,20.643097,0,0,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,51.83,57.2,8.333333333333334,1,1,0,0,6,12,5,1,858,315141.59,108074.11,482633.94,138078.08,0,0,5394.2197 +14015,17122,30513,-9,30512,30511,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-908.31903,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,858,315141.59,108074.11,482633.94,138078.08,0,0,5394.2197 +14016,17123,30514,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,6.0885124,6.3939462,0,0,-922.82495,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2016907,44.09,39.14,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,187,-61122.445,68850.125,0,0,0,0,621.41553 +14017,17124,30515,30516,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,0,7.9462848,7.8392715,18,4,61.661877,0,3,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.54736811,7.6298852,60.12,54.8,36.18,48.3,10,1,1,0,0,9,7,3,1,1123,1242530.1,883404.19,489735.88,9202.4561,5808.7534,0,2338.5706 +14017,17124,30516,30515,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,6.9344478,6.8969698,18,-4,-25.899866,0,3,3,2021,18,6,0,25,4,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6794419,6.868597,36.18,48.3,60.12,54.8,1.666666666666667,1,1,0,0,10,7,3,1,1123,1242530.1,883404.19,489735.88,9202.4561,5808.7534,0,2338.5706 +14018,17125,30517,30518,-9,-9,1,1,58,0,0,0,1,1,-9,0,5,9.0055485,9.0072842,0,10,-1,152.98587,0,2,1,2021,7,0,50,50,1,0,0,17.497078,17.497078,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.62,52.91,69.87,19,8.333333333333334,1,1,0,0,8,9,5,1,564.5,1003260.5,95670.508,331149.44,0,0,132.66161,3038.833 +14018,17125,30518,30517,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,34,1,136.89691,0,2,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,.4343701,0,69.87,19,58.62,52.91,6.666666666666667,1,1,0,1,1,9,5,1,564.5,1003260.5,95670.508,331149.44,0,0,132.66161,3038.833 +14018,17126,30519,-9,30518,30517,1,0,28,0,0,0,2,2,-9,0,4,7.8697815,7.6845078,0,0,0,-912.57336,0,2,1,2021,11,0,40,40,1,2,1,6.835043,6.835043,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,57,-9,-9,7,1,1,0,0,1,9,4,1,526,166245.27,-74128.32,0,0,0,0,1894.5474 +14018,17127,30520,-9,30518,30517,1,0,25,0,0,0,2,2,-9,0,4,7.6061196,7.4802914,0,0,0,-1026.1147,0,2,1,2021,11,0,50,60,1,2,1,4.6310754,4.6310754,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,3,1,388,42186.758,0,0,0,0,457.18433,1549.8296 +14018,17128,30521,-9,30518,30517,1,0,22,0,0,0,1,1,1,1,3,8.022027,7.893549,0,0,0,-918.48413,-9,2,1,2021,14,2,38,0,1,2,1,8.5451269,8.5451269,.05,.05,0,0,0,0,0,0,1,1,0,.86979091,0,51.91,27.41,-9,-9,3.333333333333333,1,1,0,0,6,9,3,1,3263,-183562.89,-113448.44,0,0,5416.4395,0,1249.3231 +14018,17129,30522,-9,30518,30517,1,1,19,0,0,0,2,2,-9,0,4,8.6537685,8.5850668,0,0,0,-1119.801,0,2,1,2021,18,6,45,55,1,6,1,14.439781,14.439781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.79,58.33,-9,-9,3.333333333333333,1,1,0,0,4,9,4,1,301,-104736.64,32648.744,0,0,0,0,2143.9937 +14019,17130,30523,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,6.7739792,7.0551906,0,0,-1162.9725,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,.87681025,0,15.638598,0,1,1,0,4.7317071,7.152801,62.57,35.9,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,115,356913.19,93654.766,201750.47,0,0,0,1478.5641 +14020,17131,30524,-9,30525,30526,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-927.41833,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17131,30525,30526,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,6.9946442,7.2606239,5.9494004,1,-3,-14.349515,-9,2,2,2021,6,0,20,0,1,0,0,7.0376663,7.0376663,.05,.05,0,0,0,0,0,0,1,1,0,5.5444427,0,57.16,56.15,55.19,54.26,8.333333333333334,1,1,0,0,9,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17131,30526,30525,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.3040218,8.5623007,0,1,3,6.4838858,-9,3,2,2021,9,0,43,0,1,0,0,9.4857407,9.4857407,.05,.05,0,0,0,0,0,0,1,1,0,3.3387198,0,55.19,54.26,57.16,56.15,6.666666666666667,1,1,0,0,9,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17131,30527,-9,30525,30526,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.93378,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,0,837.75,5072.7285,-41847.133,76218.922,60782.355,6751.1387,0,3186.5244 +14020,17132,30528,-9,30525,30526,1,0,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1044.6815,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.56,55.44,-9,-9,8.333333333333334,1,1,0,0,2,2,1,0,499,18170.488,0,0,0,0,0,368.5574 +14021,17133,30529,-9,-9,-9,1,1,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-932.5022,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.72,40.61,-9,-9,6.666666666666667,1,1,0,1,0,10,1,1,176,432329.03,305811.25,0,0,0,0,970.72601 +14021,17134,30530,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,8.0539532,8.1316214,6.7773151,0,0,-1057.3468,0,-9,-9,2021,6,0,18,37,1,0,0,22.16143,22.16143,.05,.05,0,0,0,0,0,108,1,1,0,4.2646246,6.7725821,57.73,36.13,-9,-9,10,1,1,0,0,8,10,4,1,108,386667,327870.31,0,0,0,0,2389.3491 +14022,17135,30531,30532,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,7.7604456,7.3458505,0,39,-7,10.988085,0,2,3,2021,7,0,40,37,1,0,0,5.3451629,5.3451629,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,52.03,39.57,5,1,1,0,0,11,1,3,1,253.5,381757.34,95217.016,197840.84,0,0,0,1644.2976 +14022,17135,30532,30531,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,0,0,38,7,31.87734,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,2.1056504,0,2,1,1,0,1.0020385,0,52.03,39.57,54.96,53.17,6.666666666666667,1,1,0,0,11,1,3,1,253.5,381757.34,95217.016,197840.84,0,0,0,1644.2976 +14023,17136,30533,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,2,0,7.3774261,7.2874207,0,0,-1073.6073,0,2,2,2021,6,1,0,0,4,1,0,0,0,0,0,0,1,0,.6468665,0,0,1,1,0,1.4938947,7.2910447,52.81,19.32,-9,-9,6.666666666666667,1,1,0,0,0,7,3,1,439,653659.38,192498.03,604418.81,0,0,0,2444.6963 +14024,17137,30534,-9,30535,30536,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.085,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,2,5,1,559,74908.102,16779.99,322863.63,111399.49,18835.076,0,3682.1785 +14024,17137,30535,30536,-9,-9,1,0,30,1,1,0,2,2,-9,0,4,7.8778253,7.819828,0,6,1,51.311707,0,-9,-9,2021,11,1,20,37,1,1,0,16.51226,16.51226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.44,55.46,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,559,74908.102,16779.99,322863.63,111399.49,18835.076,0,3682.1785 +14024,17137,30536,30535,-9,-9,1,1,29,1,1,0,1,1,-9,0,4,9.0974684,8.9395714,0,6,-1,67.995285,0,-9,-9,2021,6,0,40,40,1,0,0,23.412287,23.412287,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,44.44,55.46,8.333333333333334,1,1,0,0,6,2,5,1,559,74908.102,16779.99,322863.63,111399.49,18835.076,0,3682.1785 +14025,17138,30537,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,6.0573773,5.8551474,0,0,-980.64075,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5858741,58.08,40.76,-9,-9,8.333333333333334,1,1,0,0,0,12,2,0,92,131468.78,54052.012,11331.279,0,0,0,461.34503 +14026,17139,30538,30539,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,42,-4,-.54999256,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,4.4202981,0,2,1,1,0,0,0,59.31,36.46,60.02,56.42,6.666666666666667,1,1,0,0,0,13,2,1,731.5,431926.22,-42205.133,208565.14,0,0,0,824.04956 +14026,17139,30539,30538,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,5.1648445,5.5007787,42,4,-113.23528,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7486401,5.0134583,60.02,56.42,59.31,36.46,8.333333333333334,1,1,0,0,0,13,2,1,731.5,431926.22,-42205.133,208565.14,0,0,0,824.04956 +14027,17140,30540,30541,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,5.4036889,5.5558605,47,0,-52.569099,0,2,-9,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3994188,5.7360034,43.37,55.66,37.55,37.1,8.333333333333334,1,1,0,0,1,2,2,1,904,130524.35,170827.75,0,0,0,0,1684.0062 +14027,17140,30541,30540,-9,-9,1,1,68,0,0,0,3,3,-9,0,2,0,6.964498,6.6675072,47,0,51.077553,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,5.2501035,0,0,1,1,0,3.9706404,6.6281142,37.55,37.1,43.37,55.66,5,1,1,0,0,8,2,2,1,904,130524.35,170827.75,0,0,0,0,1684.0062 +14028,17141,30542,-9,30544,30543,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.79614,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,513.66669,236792.64,140684.63,293252.38,42311.926,0,0,5742.7646 +14028,17141,30543,30544,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.0889835,8.2742596,0,4,1,27.529085,0,-9,-9,2021,12,1,40,40,1,1,0,9.8667641,9.8667641,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.99,51.28,58.72,51.29,8.333333333333334,1,1,0,0,11,10,5,1,513.66669,236792.64,140684.63,293252.38,42311.926,0,0,5742.7646 +14028,17141,30544,30543,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,9.3216963,9.6764812,0,4,-1,19.262089,0,-9,-9,2021,6,1,25,24,1,1,0,72.500343,72.500343,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,52.99,51.28,10,1,1,0,0,10,10,5,1,513.66669,236792.64,140684.63,293252.38,42311.926,0,0,5742.7646 +14029,17142,30545,30546,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,7.6814613,7.7505865,47,-4,72.26429,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,7.9062929,41.07,60.93,40.21,27.65,10,1,1,0,0,9,4,3,1,596.5,866855.13,616001.81,238989.19,0,-942.86633,0,2548.1973 +14029,17142,30546,30545,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,2.1843247,2.08816,11,4,81.018387,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,140.78047,0,0,1,1,0,0,2.1684523,40.21,27.65,41.07,60.93,6.666666666666667,1,1,0,0,0,4,3,1,596.5,866855.13,616001.81,238989.19,0,-942.86633,0,2548.1973 +14030,17143,30547,30548,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.4871149,8.5112648,43,1,-107.70961,0,3,3,2021,8,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.4830999,8.3589554,52.38,55.6,43.2,55.71,8.333333333333334,1,1,0,0,0,12,4,1,660,1077275.9,599151.75,214649.03,0,2088.199,0,2979.9785 +14030,17143,30548,30547,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.8724022,6.9500961,43,-1,36.811592,0,2,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.4905958,6.9982271,43.2,55.71,52.38,55.6,8.333333333333334,1,1,0,0,0,12,4,1,660,1077275.9,599151.75,214649.03,0,2088.199,0,2979.9785 +14031,17144,30549,30550,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,9.0152512,8.960144,0,15,3,34.199757,0,2,2,2021,6,0,46,46,1,0,0,17.577879,17.577879,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,60.12,54.8,42.35,36.31,10,1,1,0,0,10,6,5,1,548,1053179.3,370938.44,293969.66,0,9296.2578,2222.3572,5756.582 +14031,17144,30550,30549,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,9.222723,8.8579159,0,15,-3,-10.3771,0,2,2,2021,16,4,47,43,1,4,0,19.199406,19.199406,0,0,.05,0,0,0,0,0,0,0,0,0,0,42.35,36.31,60.12,54.8,3.333333333333333,1,1,0,0,9,6,5,1,548,1053179.3,370938.44,293969.66,0,9296.2578,2222.3572,5756.582 +14031,17145,30551,-9,30550,30549,1,0,24,0,0,0,3,3,-9,0,4,7.7264681,7.8541193,0,0,0,-971.41803,0,2,2,2021,12,2,30,16,1,2,1,7.2809157,7.2809157,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.2,63.27,-9,-9,5,1,1,0,0,7,6,3,1,669,53965.691,131015.71,0,0,0,0,2029.0615 +14032,17146,30552,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,6.0204344,5.8623872,0,0,-1040.6404,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,2.139153,0,0,1,1,0,0,5.813364,72.59,14.07,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,648,393790.66,55276.684,236253.94,0,0,0,3694.5891 +14033,17147,30553,30555,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,8.5146542,8.9269695,0,6,-7,-3.4539161,0,2,3,2021,6,0,22,20,1,0,0,30.278772,30.278772,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.36,51.57,10,1,1,0,0,7,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14033,17147,30554,-9,30553,30555,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1143.7368,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14033,17147,30555,30553,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,9.0050945,8.8460541,0,6,7,-33.42403,0,2,1,2021,8,0,30,47,1,0,0,31.228798,31.228798,.05,.05,0,0,0,0,0,0,1,1,0,6.7229815,0,55.36,51.57,57.06,57.76,8.333333333333334,1,1,0,0,7,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14033,17147,30556,-9,30553,30555,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-889.8866,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,10,5,1,475.5,574391.31,404309.25,253966.34,175505.69,-844.51691,0,6709.2139 +14034,17148,30557,30558,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.9908633,7.9442267,0,1,-1,23.425772,-9,-9,-9,2021,10,0,46,0,1,0,0,9.4701443,9.4701443,.05,.05,0,0,0,0,0,0,0,0,0,2.977834,0,47.89,51.08,52,54.51,8.333333333333334,1,1,0,0,0,4,5,0,594.5,28741.539,87759.234,157690.92,95652.18,0,0,3222.9941 +14034,17148,30558,30557,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,8.6778898,8.3791628,0,1,1,68.765488,0,2,2,2021,10,0,40,40,1,0,0,13.994314,13.994314,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,47.89,51.08,8.333333333333334,1,1,0,0,6,4,5,0,594.5,28741.539,87759.234,157690.92,95652.18,0,0,3222.9941 +14035,17149,30559,30560,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,8.2622757,8.1379242,0,6,-2,59.006027,0,-9,-9,2021,14,2,45,49,1,2,0,10.432005,10.432005,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.05,57.87,45.31,34.97,5,1,1,0,0,14,11,5,1,1344,60111.648,99752.242,73014.75,46520.363,2679.6426,657.18652,3303.707 +14035,17149,30560,30559,-9,-9,1,1,35,0,0,0,3,3,-9,0,2,8.4943542,8.3863888,0,6,2,4.9910131,0,2,-9,2021,2,0,50,48,1,0,0,10.487746,10.487746,.05,.05,0,0,0,0,0,0,0,0,0,2.667331,0,45.31,34.97,33.05,57.87,6.666666666666667,1,1,0,0,12,11,5,1,1344,60111.648,99752.242,73014.75,46520.363,2679.6426,657.18652,3303.707 +14036,17150,30561,30562,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.8332024,7.6341619,7,12,66.592804,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.2434382,7.9880652,64.55,36.47,57.06,57.76,8.333333333333334,1,1,0,0,0,11,4,1,404,1270243.8,1090588.6,118827.09,0,0,0,4263.5488 +14036,17150,30562,30561,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,8.0210629,7.9040685,5.1856599,7,-12,-128.95158,0,3,3,2021,6,0,35,37,1,0,0,12.905904,12.905904,0,0,0,0,0,0,0,0,1,1,0,4.2574162,5.0740156,57.06,57.76,64.55,36.47,10,1,1,0,0,7,11,4,1,404,1270243.8,1090588.6,118827.09,0,0,0,4263.5488 +14037,17151,30563,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,4,0,5.5892134,5.1421819,0,0,-985.68121,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9893212,5.3217607,52.97,48.43,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,274,418166.16,0,370639.94,0,0,0,1328.0092 +14038,17152,30564,30565,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,0,0,49,-1,19.903236,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2837472,0,49.04,55.86,57.06,57.76,8.333333333333334,1,1,0,0,0,13,3,1,397,720172.75,691794.63,227589.31,106886.58,0,0,4070.6189 +14038,17152,30565,30564,-9,-9,1,1,75,0,0,0,1,1,-9,0,5,0,8.4059811,8.7413511,49,1,10.424377,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2712007,8.3814249,57.06,57.76,49.04,55.86,10,1,1,0,0,5,13,3,1,397,720172.75,691794.63,227589.31,106886.58,0,0,4070.6189 +14039,17153,30566,30567,-9,-9,1,0,66,0,0,0,3,3,-9,0,1,0,0,0,8,-5,0,0,-9,-9,2021,27,12,0,0,4,12,0,0,0,0,0,0,1,0,6.8397336,0,0,1,1,0,0,0,31.61,19.7,57.19,34.69,3.333333333333333,1,1,0,0,0,2,1,1,1254,-134949.42,0,0,0,3417.5532,917.70703,156.99658 +14039,17153,30567,30566,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,8,5,0,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,57.19,34.69,31.61,19.7,6.666666666666667,1,1,0,0,0,2,1,1,1254,-134949.42,0,0,0,3417.5532,917.70703,156.99658 +14040,17154,30568,30569,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,7.7245049,7.654635,19,-2,104.54427,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0265965,7.735384,56.86,50.75,38.9,48.23,8.333333333333334,1,1,0,0,0,2,4,1,311.5,1187486,872713.25,148334.27,0,0,0,4779.8584 +14040,17154,30569,30568,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,8.052578,8.0715504,19,2,110.42908,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.4411776,0,0,1,1,0,4.3985958,8.1454744,38.9,48.23,56.86,50.75,8.333333333333334,1,1,0,0,0,2,4,1,311.5,1187486,872713.25,148334.27,0,0,0,4779.8584 +14041,17155,30570,30571,-9,-9,1,0,52,0,0,0,1,1,-9,0,5,0,0,0,15,-2,91.193779,0,2,1,2021,24,12,0,39,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.4543445,0,37.09,62.57,54.2,57.49,6.666666666666667,1,1,1,0,5,10,4,0,456.5,1880679.5,1690065.5,124404.79,0,4694.8965,0,2352.4224 +14041,17155,30571,30570,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.3710327,8.0739183,0,16,2,-11.782097,0,2,2,2021,8,0,47,55,1,0,0,9.9073915,9.9073915,0,0,0,0,0,0,.13534872,0,0,0,0,.416866,0,54.2,57.49,37.09,62.57,8.333333333333334,1,1,0,0,8,10,4,0,456.5,1880679.5,1690065.5,124404.79,0,4694.8965,0,2352.4224 +14042,17156,30572,30574,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,9.2103653,9.6809425,0,1,2,-1.3990101,-9,1,1,2021,10,0,15,0,1,0,0,79.439232,79.439232,.05,.05,0,0,0,0,0,0,1,1,0,7.1065507,0,57.16,56.15,54.1,59.11,8.333333333333334,1,1,0,0,11,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14042,17156,30573,-9,30574,30572,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.07965,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14042,17156,30574,30572,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,9.0059433,9.1278334,0,1,-2,-31.427607,-9,1,1,2021,9,0,34,0,1,0,0,32.044678,32.044678,.05,.05,0,0,0,0,0,0,1,1,0,6.9838099,0,54.1,59.11,57.16,56.15,8.333333333333334,1,1,0,0,13,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14042,17156,30575,-9,30574,30572,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4487,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,5,0,1092.5,3036509.5,2429480.3,671180.88,234687.41,0,0,7953.2051 +14043,17157,30576,-9,30578,30577,1,1,20,0,1,0,2,2,-9,0,4,5.616045,5.7754607,0,0,0,-959.22351,-9,3,1,2021,10,0,2,0,1,0,1,17.035742,17.035742,.05,.05,0,0,0,0,0,0,1,0,1,0,0,54.2,57.49,-9,-9,5,3,4,0,1,0,8,2,0,3109,33818.02,64571.508,0,0,0,0,151.00296 +14043,17158,30577,30578,-9,-9,1,1,60,0,1,0,1,1,-9,0,4,0,0,0,8,6,11.71395,-9,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,40.83,59.68,55.21,15.17,3.333333333333333,3,4,1,0,8,8,2,0,376,-98066.313,0,0,0,0,0,1497.1475 +14043,17158,30578,30577,-9,-9,1,0,54,0,1,0,3,3,-9,1,2,0,4.3052592,4.4419322,37,-6,-77.397682,0,3,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,4.382957,55.21,15.17,40.83,59.68,5,3,4,0,0,7,8,2,0,376,-98066.313,0,0,0,0,0,1497.1475 +14044,17159,30579,30580,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,5.8418326,6.0964904,14,12,-52.59185,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1578846,41.61,44.94,48,49,3.333333333333333,1,1,0,1,0,7,2,0,936.5,304451.88,194193.95,253360.75,0,0,0,1831.3651 +14044,17159,30580,30579,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,14,-12,-58.193409,0,3,3,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,41.61,44.94,7,2,3,0,1,0,7,2,0,936.5,304451.88,194193.95,253360.75,0,0,0,1831.3651 +14045,17160,30581,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,8.0291109,8.3362684,0,0,0,-1031.3987,0,2,1,2021,15,4,38,38,1,4,0,9.0457563,9.0457563,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,6.666666666666667,1,1,0,0,8,12,4,1,456,-183199,46361.145,62954.004,36584.68,0,0,1132.371 +14046,17161,30582,30583,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,59,-8,24.608076,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,0,51.19,38.44,56.27,10.51,10,1,1,0,0,0,5,2,1,764.5,94028.391,50241.426,66770.828,0,3360.8364,0,2641.1611 +14046,17161,30583,30582,-9,-9,1,1,88,0,0,0,2,2,-9,0,1,0,7.2315354,7.3919415,59,8,4.249568,0,3,3,2021,15,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.9363766,56.27,10.51,51.19,38.44,8.333333333333334,1,1,0,0,0,5,2,1,764.5,94028.391,50241.426,66770.828,0,3360.8364,0,2641.1611 +14047,17162,30584,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1018.0814,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,32.67,38.02,-9,-9,8.333333333333334,1,1,0,0,0,11,1,0,342,69274.555,0,0,0,0,0,1744.785 +14048,17163,30585,30586,30587,-9,1,0,49,0,0,0,1,1,-9,0,3,8.5080957,8.5700788,0,15,-14,-115.32439,0,3,3,2021,10,0,44,39,1,0,0,11.227142,11.227142,0,0,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,57.16,56.15,8.333333333333334,3,4,0,0,8,8,5,1,685,725919.63,458299.31,366477.16,24013.23,7848.6694,0,3318.8208 +14048,17163,30586,30585,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,8.3850498,8.7503815,0,15,14,110.63673,0,3,2,2021,6,0,38,38,1,0,0,13.876785,13.876785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.9,51.84,8.333333333333334,1,1,0,0,8,8,5,1,685,725919.63,458299.31,366477.16,24013.23,7848.6694,0,3318.8208 +14048,17164,30587,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,5.5426188,5.448729,0,0,-1086.4083,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1101265,57.93,46.29,-9,-9,10,3,4,0,0,0,8,2,1,243,69728.602,-88590.477,0,0,0,0,227.63205 +14049,17165,30588,-9,30590,30589,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-971.3028,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14049,17165,30589,30590,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.425169,7.0032659,0,7,3,21.806524,0,-9,-9,2021,3,0,50,70,1,0,0,3.302664,3.302664,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,48.83,57.34,8.333333333333334,1,1,0,0,8,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14049,17165,30590,30589,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.5911493,8.4636927,0,7,-3,-144.63358,0,-9,-9,2021,5,0,31,30,1,0,0,16.072966,16.072966,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.83,57.34,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14049,17165,30591,-9,30590,30589,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1004.1888,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,4,1,713.75,175455.13,63944.031,162746.58,60178.641,0,0,2678.7603 +14050,17166,30592,30593,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3040524,8.2406063,0,19,2,56.375759,0,-9,-9,2021,7,0,37,37,1,0,0,11.10662,11.10662,.05,.05,0,0,0,0,0,0,0,0,0,1.7050714,0,58.32,50.22,62.49,55.09,8.333333333333334,1,1,0,0,9,2,5,1,750,203663.31,34706.242,169774.91,30481.506,15876.25,537.68488,3580.2852 +14050,17166,30593,30592,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,8.6566601,8.6190319,0,20,-2,171.67599,0,2,1,2021,6,0,36,41,1,0,0,20.612112,20.612112,.05,.05,0,0,0,0,0,0,0,0,0,1.3564996,0,62.49,55.09,58.32,50.22,10,1,1,0,0,9,2,5,1,750,203663.31,34706.242,169774.91,30481.506,15876.25,537.68488,3580.2852 +14050,17167,30594,-9,30593,30592,1,1,19,0,0,1,2,0,-9,0,4,0,0,0,0,0,-965.53802,-9,2,2,2021,8,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,515,-137291.02,0,0,0,44829.574,0,183.99696 +14051,17168,30595,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,4.43924,4.4403424,0,0,-1072.2695,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6791215,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,1715,-55902.375,82957.703,0,0,0,-1633.0975,678.70135 +14052,17169,30596,30598,-9,-9,1,1,44,0,1,0,1,1,-9,1,3,8.2307034,8.0679674,0,12,2,77.947525,0,2,2,2021,9,0,37,37,1,0,0,11.587178,11.587178,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,56.5,27.07,6.666666666666667,1,1,0,1,13,4,3,1,327,334402.06,154006.77,234275.78,133047.56,0,1026.8337,4517.2261 +14052,17169,30597,-9,30598,30596,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-991.86346,-9,2,1,2021,13,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,60,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,327,334402.06,154006.77,234275.78,133047.56,0,1026.8337,4517.2261 +14052,17169,30598,30596,-9,-9,1,0,42,0,1,0,2,2,-9,1,2,5.9746847,5.4810495,0,12,-2,.17216779,0,-9,-9,2021,11,0,8,7,1,0,0,7.0300865,7.0300865,0,0,0,0,0,0,0,0,1,1,0,0,0,56.5,27.07,56.35,51.16,10,1,1,0,0,11,4,3,1,327,334402.06,154006.77,234275.78,133047.56,0,1026.8337,4517.2261 +14053,17170,30599,-9,-9,-9,1,1,32,0,0,0,2,2,-9,0,3,6.7234435,6.8374023,0,0,0,-838.01483,0,2,2,2021,12,0,40,40,1,0,0,1.9050461,1.9050461,0,0,0,0,0,0,0,0,0,0,0,1.7980753,0,49.23,55.95,-9,-9,1.666666666666667,1,1,0,0,9,4,2,1,143,42754.559,0,0,0,0,0,1687.886 +14054,17171,30600,30601,-9,-9,1,0,70,0,0,0,3,3,-9,0,5,0,0,0,55,-5,-104.40754,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,38.38,57.97,10,1,1,0,0,0,6,2,1,374.5,112461.21,98975.273,59372.898,36276.313,0,1723.8141,2153.8804 +14054,17171,30601,30600,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,5.9814787,5.5232482,55,5,170.00841,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0557203,38.38,57.97,62.39,56.71,8.333333333333334,1,1,0,0,0,6,2,1,374.5,112461.21,98975.273,59372.898,36276.313,0,1723.8141,2153.8804 +14055,17172,30602,-9,30603,30604,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1110.4874,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14055,17172,30603,30604,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,7.9917207,7.7713742,0,21,-2,-29.10393,0,2,2,2021,8,0,23,21,1,0,0,18.731628,18.731628,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.13,58.45,8.333333333333334,1,1,0,0,10,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14055,17172,30604,30603,-9,-9,1,1,48,0,2,0,1,1,-9,0,3,9.028594,9.0937567,0,19,2,183.82123,0,2,1,2021,11,0,46,41,1,0,0,21.425659,21.425659,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,41.13,58.45,57.33,53.46,3.333333333333333,1,1,0,0,10,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14055,17172,30605,-9,30603,30604,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1109.2089,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,5,1,666,664327.56,494636.56,318733.59,191109.53,4548.2012,0,4762.6978 +14056,17173,30606,30607,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,4.2131577,4.1954303,48,-2,-42.059975,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,1.1726406,0,14.5,1,1,0,0,3.8558602,50.51,32.45,57.74,22.56,8.333333333333334,1,1,0,0,6,12,2,0,1091.5,174925.84,69540.563,76243.609,0,0,0,1713.9191 +14056,17173,30607,30606,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,5.7935076,5.7030749,9,2,23.025606,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5906377,57.74,22.56,50.51,32.45,8.333333333333334,1,1,0,0,0,12,2,0,1091.5,174925.84,69540.563,76243.609,0,0,0,1713.9191 +14057,17174,30608,30610,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,7.7628689,7.6713824,0,7,9,36.961567,0,-9,-9,2021,7,0,50,35,1,0,0,5.8699274,5.8699274,.05,.05,0,0,0,0,0,0,1,1,0,1.3661097,0,58.3,52.91,59.43,58.05,8.333333333333334,1,1,0,0,9,10,3,1,679.33331,84326.93,145211.67,229051.23,131613.05,0,0,2566.0654 +14057,17174,30609,-9,30610,30608,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.4528,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,679.33331,84326.93,145211.67,229051.23,131613.05,0,0,2566.0654 +14057,17174,30610,30608,-9,-9,1,0,45,0,2,0,2,2,-9,0,5,7.4893212,7.7417235,0,23,0,56.639721,0,3,3,2021,6,0,40,40,1,0,0,7.2930794,7.2930794,.05,.05,0,0,0,0,0,2,1,1,0,1.6345984,0,59.43,58.05,58.3,52.91,8.333333333333334,1,1,0,0,8,10,3,1,679.33331,84326.93,145211.67,229051.23,131613.05,0,0,2566.0654 +14058,17175,30611,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1117.7614,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,13,2,0,695,27367.018,0,76750.273,0,0,3905.0728,688.26331 +14059,17176,30612,-9,-9,-9,1,0,23,0,0,0,2,2,-9,0,2,8.0708771,8.5611773,0,0,0,-851.0144,0,-9,-9,2021,22,10,40,40,1,10,0,10.319644,10.319644,0,0,0,0,0,0,0,0,0,0,0,0,0,27.38,48.9,-9,-9,3.333333333333333,1,1,0,0,5,4,4,0,236,68289.484,0,0,0,0,0,2730.5479 +14060,17177,30613,30614,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.9762635,8.0117149,0,5,-1,13.392811,0,-9,-9,2021,13,2,38,40,1,2,0,9.4326706,9.4326706,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.13,38.11,25.25,29.42,8.333333333333334,1,1,0,0,3,2,4,0,361.5,305745.72,111338.22,177588.66,0,0,0,2915.3838 +14060,17177,30614,30613,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,8.1193714,8.1154537,0,5,1,-62.724789,0,2,2,2021,28,12,37,43,1,12,0,9.3712664,9.3712664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.25,29.42,44.13,38.11,3.333333333333333,1,1,0,0,13,2,4,0,361.5,305745.72,111338.22,177588.66,0,0,0,2915.3838 +14061,17178,30615,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,5,9.2234898,9.1072493,0,0,0,-930.27551,0,2,2,2021,12,4,43,45,1,4,0,23.405689,23.405689,.05,.05,0,0,0,0,0,0,0,0,0,4.120379,0,42.79,64.22,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,334,73119.719,223133.8,157918.69,17877.68,0,0,3552.8416 +14062,17179,30616,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,7.5409894,7.8206072,0,0,-1024.4169,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.2774334,8.1678209,43.7,37.11,-9,-9,6.666666666666667,1,1,0,0,0,11,3,1,389,665604.38,205831.86,86216.336,0,0,0,3476.7424 +14063,17180,30617,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,7.1658306,6.8989763,0,0,-1063.0365,0,3,2,2021,17,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.38570341,6.7756724,51.75,33.06,-9,-9,5,1,1,0,0,9,9,2,0,2921,-101861.26,-24057.992,0,0,366.66623,0,70.17984 +14064,17181,30618,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.1311069,6.1072822,0,0,-996.29596,0,2,2,2021,19,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.1404448,6.4052649,55.3,39.26,-9,-9,3.333333333333333,1,1,0,1,3,9,2,0,322,1175930.4,71182.117,851543.5,0,0,0,1294.4015 +14065,17182,30619,-9,30620,30621,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-948.76416,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,1341.3334,52887.281,19863.324,182782.67,190106.31,0,2863.3838,6025.7466 +14065,17182,30620,30621,-9,-9,1,0,33,1,1,0,2,2,-9,0,5,8.4255791,8.1916275,0,11,-10,157.2502,0,-9,-9,2021,16,5,39,-9,1,5,0,11.877794,11.877794,0,0,0,0,0,0,0,2,0,0,0,3.1582348,0,35.55,60.18,37.53,54.63,8.333333333333334,1,1,0,0,13,6,5,1,1341.3334,52887.281,19863.324,182782.67,190106.31,0,2863.3838,6025.7466 +14065,17182,30621,30620,-9,-9,1,1,43,1,1,0,2,2,-9,0,3,9.1158133,8.9394951,0,11,10,79.571556,0,3,2,2021,24,12,38,40,1,12,0,22.711716,22.711716,.05,.05,0,0,0,0,0,0,0,0,0,3.8597059,0,37.53,54.63,35.55,60.18,6.666666666666667,1,1,0,0,14,6,5,1,1341.3334,52887.281,19863.324,182782.67,190106.31,0,2863.3838,6025.7466 +14066,17183,30622,-9,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,8.4342213,8.4565468,0,0,0,-921.86841,0,-9,-9,2021,17,5,37,38,1,5,0,12.654287,12.654287,.05,.05,0,0,0,0,0,2,0,0,0,1.6026158,0,38.99,59.25,-9,-9,5,1,1,0,0,9,5,5,1,2253,7333.9526,158795.97,0,0,6462.4761,0,1753.4127 +14067,17184,30623,30624,-9,-9,1,1,66,1,2,0,1,1,-9,0,3,0,4.2585354,4.3443294,7,2,37.087662,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,5.135354,0,0,1,1,0,1.7633392,4.4677248,34.76,59.69,48.69,41.09,6.666666666666667,1,1,0,0,6,12,2,1,1285,875570.63,298224.25,286032.56,0,0,2028.7849,1231.9441 +14067,17184,30624,30623,-9,-9,1,0,64,1,2,0,2,2,-9,0,3,0,6.2088237,6.4582815,7,-2,18.605244,0,3,2,2021,14,2,0,11,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9616671,6.3399091,48.69,41.09,34.76,59.69,5,1,1,0,0,8,12,2,1,1285,875570.63,298224.25,286032.56,0,0,2028.7849,1231.9441 +14067,17185,30625,-9,30628,30627,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.793,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14067,17185,30626,-9,30628,30627,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-860.66528,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14067,17185,30627,30628,-9,-9,1,1,40,1,2,0,1,1,-9,0,4,9.0288162,9.1964588,0,7,5,-32.315037,0,-9,-9,2021,9,0,38,38,1,1,0,23.127953,23.127953,.05,.05,0,0,0,0,0,0,1,1,0,4.0343661,0,51,56,40.4,46.19,8,4,1,0,0,1,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14067,17185,30628,30627,30624,30623,1,0,35,1,2,0,1,1,-9,0,3,8.8218784,8.7629318,0,7,-5,65.551239,0,2,2,2021,11,0,32,34,1,0,0,20.034401,20.034401,0,0,0,0,0,0,0,0,1,1,0,0,0,40.4,46.19,51,56,8.333333333333334,1,1,0,0,8,12,5,1,1182.5,1562327.5,977894.31,330913.88,0,0,0,5500.4629 +14068,17186,30629,-9,-9,-9,1,0,44,0,0,0,1,1,-9,1,3,8.5322056,8.5664816,6.6714196,15,0,56.020905,0,2,2,2021,21,10,50,43,1,10,0,12.320297,12.320297,.05,.05,0,0,0,0,0,7,1,1,0,0,7.0718222,39.96,41.03,48,49,8.333333333333334,1,1,0,0,11,6,4,1,1127,611474.63,242168.95,188414.72,90903.891,0,2658.7324,3380.7224 +14069,17187,30630,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,0,0,-899.82416,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,3.2878966,0,0,1,1,0,0,0,47.03,38.13,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,263,0,0,0,0,0,0,1486.95 +14070,17188,30631,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,5.8866658,6.1139774,0,0,-1023.9224,0,2,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9062078,5.895782,46.2,33,-9,-9,5,1,1,0,0,2,9,2,0,1109,243394.83,-38475.434,0,0,0,0,898.63263 +14071,17189,30632,-9,30633,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-997.07288,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,1,0,177.5,99980.391,0,0,0,0,0,964.0022 +14071,17189,30633,-9,-9,-9,1,0,22,1,1,0,2,2,-9,0,4,0,0,0,0,0,-964.27881,0,2,-9,2021,10,0,0,26,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,5,4,1,0,177.5,99980.391,0,0,0,0,0,964.0022 +14072,17190,30634,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.43507,8.2052021,0,0,0,-880.06622,0,-9,-9,2021,19,6,50,42,1,6,0,10.914182,10.914182,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.24,68.01000000000001,-9,-9,3.333333333333333,1,1,0,0,8,12,4,1,1724,-45576.082,146706.31,0,0,0,0,2182.7126 +14073,17191,30635,30636,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,7.6569338,7.6599336,53,-5,-23.961842,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.1169225,7.5950565,52.4,52.91,55.27,39.27,8.333333333333334,1,1,0,0,9,1,3,1,2063,695779.5,266307.34,191757.13,0,0,0,3506.1973 +14073,17191,30636,30635,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,6.6422114,6.4259672,13,5,19.408054,-9,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.58336204,6.8075485,55.27,39.27,52.4,52.91,8.333333333333334,1,1,0,0,0,1,3,1,2063,695779.5,266307.34,191757.13,0,0,0,3506.1973 +14074,17192,30637,-9,30638,30639,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-932.36243,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,0,1245.3334,242973.92,215220.11,230742.25,104759.02,7281.417,1202.2523,3818.4375 +14074,17192,30638,30639,-9,-9,1,0,41,0,2,0,1,1,-9,0,5,5.7010112,6.0334072,0,23,-2,73.69487,0,2,2,2021,6,0,8,10,1,0,0,5.0383077,5.0383077,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,52,56,8.333333333333334,1,1,0,0,3,5,4,0,1245.3334,242973.92,215220.11,230742.25,104759.02,7281.417,1202.2523,3818.4375 +14074,17192,30639,30638,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.9734125,9.0554972,0,13,2,102.87219,0,2,1,2021,9,0,40,40,1,1,0,25.811537,25.811537,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,56,60.02,56.42,8,1,1,0,0,1,5,4,0,1245.3334,242973.92,215220.11,230742.25,104759.02,7281.417,1202.2523,3818.4375 +14075,17193,30640,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,2,8.4245949,8.4771557,0,0,0,-966.94629,0,-9,-9,2021,9,0,40,43,1,0,0,13.342988,13.342988,.05,.05,0,0,0,0,0,0,0,0,0,.80882037,0,56.51,40.62,-9,-9,6.666666666666667,1,1,0,0,10,11,5,0,649,-148582.92,30166.389,0,0,0,0,1300.6846 +14076,17194,30641,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.1804533,8.3392944,0,0,0,-1127.2764,0,2,2,2021,14,4,38,37,1,4,0,10.532171,10.532171,0,0,0,0,0,0,0,7,1,1,0,6.0223284,0,34.17,57.25,-9,-9,3.333333333333333,1,1,0,0,7,7,4,1,445,389970.59,21104.051,259956.8,0,0,0,1260.8911 +14077,17195,30642,30646,-9,-9,1,0,39,0,3,0,1,1,-9,0,5,9.050354,9.1929359,0,8,-2,-15.049642,0,-9,-9,2021,8,0,36,34,1,0,0,21.564871,21.564871,.05,.05,0,0,0,0,0,0,0,0,0,1.9907359,0,49.3,59.89,62.39,56.71,10,1,1,0,0,11,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30643,-9,30642,30646,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.9034,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30644,-9,30642,30646,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.29169,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30645,-9,30642,30646,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1066.5348,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14077,17195,30646,30642,-9,-9,1,1,41,0,3,0,1,1,-9,0,5,9.427701,9.2267551,0,8,2,87.358162,0,2,1,2021,7,0,42,42,1,0,0,31.350023,31.350023,.05,.05,0,0,0,0,0,0,0,0,0,2.4411185,0,62.39,56.71,49.3,59.89,10,1,1,0,0,9,12,5,1,3135.2,712332.44,626625.81,336703.5,252516.56,0,0,6784.8774 +14078,17196,30647,30648,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.3184423,7.3732638,0,6,-1,23.195509,0,2,2,2021,13,1,45,45,1,1,0,4.4234753,4.4234753,0,0,0,0,0,0,0,0,1,1,0,0,0,48.32,50.46,53.1,52.62,8.333333333333334,1,1,0,0,11,13,3,1,1142.5,137464.39,111218.72,0,0,0,0,966.27393 +14078,17196,30648,30647,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.4553928,7.6547184,0,6,1,26.053717,0,3,3,2021,6,0,14,0,1,0,0,14.056236,14.056236,0,0,0,0,0,0,0,0,1,1,0,0,0,53.1,52.62,48.32,50.46,8.333333333333334,1,1,0,0,9,13,3,1,1142.5,137464.39,111218.72,0,0,0,0,966.27393 +14078,17197,30649,-9,30648,30647,1,0,22,0,0,0,2,2,-9,0,2,7.8417854,7.7133398,0,0,0,-974.20166,0,2,2,2021,14,3,10,30,1,3,1,37.403477,37.403477,0,0,0,0,0,0,0,0,1,1,0,0,0,30.61,51.03,-9,-9,5,1,1,0,0,6,13,3,1,2980,-13641.766,0,0,0,3309.6343,-26.215097,1172.6001 +14079,17198,30650,-9,30652,30651,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1096.7366,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,1717,510752.38,0,76491.211,47972.574,0,0,1690.8798 +14079,17198,30651,30652,-9,-9,1,1,46,0,1,0,2,2,-9,0,4,7.5742989,7.5640788,0,24,4,148.83028,0,2,2,2021,11,2,40,40,1,2,0,8.1043272,8.1043272,0,0,0,0,0,0,0,74.5,1,1,0,0,0,45.91,59.89,13.92,30.46,8.333333333333334,1,1,0,0,9,13,2,0,1717,510752.38,0,76491.211,47972.574,0,0,1690.8798 +14079,17198,30652,30651,-9,-9,1,0,42,0,1,0,3,3,-9,1,1,0,0,0,24,-4,-21.647648,0,3,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.92,30.46,45.91,59.89,0,1,1,0,0,0,13,2,0,1717,510752.38,0,76491.211,47972.574,0,0,1690.8798 +14079,17199,30653,-9,30652,30651,1,0,21,0,1,0,1,1,1,0,2,7.4861465,7.3290486,0,0,0,-883.1767,-9,3,2,2021,8,1,35,0,1,1,1,7.2727408,7.2727408,.05,.05,0,0,0,0,0,2,1,1,0,0,0,58.56,46.45,-9,-9,8.333333333333334,1,1,0,0,2,13,3,0,646,114276.99,-12837.421,0,0,0,0,524.25031 +14080,17200,30654,30655,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.1488814,8.266758,6.8337603,8,-10,-94.618401,0,2,2,2021,10,2,21,22,1,2,0,8.2126522,8.2126522,0,0,0,0,0,0,0,0,1,1,0,0,6.9541831,48.87,58.55,54.79,55.86,8.333333333333334,1,1,0,0,12,10,3,0,425.5,534562.38,430464.63,0,0,0,19540.391,1434.4186 +14080,17200,30655,30654,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,6.4020181,6.6342816,8,10,-55.607121,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5190287,54.79,55.86,48.87,58.55,8.333333333333334,1,1,0,0,0,10,3,0,425.5,534562.38,430464.63,0,0,0,19540.391,1434.4186 +14081,17201,30656,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6764355,8.4646511,0,0,0,-961.25641,0,3,3,2021,12,0,37,35,1,0,0,20.172733,20.172733,.05,.05,0,0,0,0,0,0,0,0,0,1.9441653,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,14,8,5,1,729,1098288.5,760587.88,274738.66,-34355.641,0,0,2632.5566 +14081,17202,30657,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.3272324,8.6438255,0,0,0,-1126.575,0,-9,3,2021,15,4,77,43,1,4,0,7.499001,7.499001,.05,.05,0,0,0,0,0,0,0,0,0,.25536665,0,43.42,62.33,-9,-9,6.666666666666667,1,1,0,0,14,8,5,1,683,1064751,745414.06,260052.88,12783.304,0,0,2279.3599 +14082,17203,30658,30659,-9,-9,1,1,74,0,0,0,2,2,-9,0,1,0,7.7196689,7.8672347,53,4,142.3851,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6650281,7.6295438,59.08,32.67,60.12,54.8,8.333333333333334,1,1,0,0,0,5,3,1,680,1103764,367665.19,309848.63,0,0,0,2206.4951 +14082,17203,30659,30658,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,0,0,53,-4,142.59291,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0557904,0,60.12,54.8,59.08,32.67,1.666666666666667,1,1,0,0,0,5,3,1,680,1103764,367665.19,309848.63,0,0,0,2206.4951 +14083,17204,30660,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,3,.14410284,0,0,0,0,-950.88568,0,2,2,2021,11,0,15,0,1,0,0,.00099644472,.00099644472,0,0,0,0,0,0,0,0,1,1,0,7.0304341,0,60.29,52.11,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,475,-82049.172,0,0,0,0,0,51.00349 +14084,17205,30661,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,5.8627996,6.0571313,0,0,-1029.3324,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.748261,50,47,-9,-9,8.333333333333334,1,1,0,0,0,7,2,0,640,6336.647,0,0,0,0,0,1231.9454 +14085,17206,30662,30663,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,7.9421659,7.8357587,49,-5,7.6225443,0,2,3,2021,25,10,0,0,4,10,0,0,0,0,0,0,1,0,20.320301,0,0,1,1,0,7.3644905,8.2211361,19.84,27.77,52,54.51,3.333333333333333,1,1,0,0,4,12,3,0,304.5,1485812.5,1218763.5,158237.92,0,0,0,3776.8735 +14085,17206,30663,30662,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,6.9004941,6.5053005,49,5,-70.613922,0,3,-9,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7648993,6.8785772,52,54.51,19.84,27.77,10,1,1,0,0,0,12,3,0,304.5,1485812.5,1218763.5,158237.92,0,0,0,3776.8735 +14086,17207,30664,-9,30667,30665,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-991.56323,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17207,30665,30667,-9,-9,1,1,48,0,1,0,2,2,-9,0,4,6.3071151,6.6124344,0,8,3,-7.3880138,0,3,3,2021,9,0,40,40,1,1,0,1.9984288,1.9984288,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,52.57,52.89,8,1,1,0,0,1,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17207,30666,-9,30667,30665,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-928.81964,-9,2,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,1,0,0,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17207,30667,30665,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.3220987,8.3456669,0,8,-3,11.884974,0,3,3,2021,9,0,40,40,1,0,0,13.187556,13.187556,.05,.05,0,0,0,0,0,0,1,1,0,6.6315155,0,52.57,52.89,52,55,0,1,1,0,0,10,2,3,1,1328.75,147998.75,57315.961,37025.844,34831.266,0,0,2911.8872 +14086,17208,30668,-9,30667,30665,1,1,25,0,1,0,2,2,-9,0,4,8.4412308,8.4481707,0,0,0,-1121.0781,0,2,2,2021,10,0,40,40,1,1,1,14.077872,14.077872,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,5,1,1905,100539.95,13113.914,0,0,6654.8594,0,1457.8708 +14087,17209,30669,-9,-9,-9,1,1,52,0,0,0,1,1,-9,1,4,0,5.0932064,5.461997,0,0,-823.54755,0,3,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1450906,0,59.53,56.44,-9,-9,3.333333333333333,3,4,1,1,1,9,2,0,175,1224368.6,224216,131405.53,0,0,0,1661.2354 +14088,17210,30670,30672,-9,-9,1,0,37,0,1,0,1,1,1,1,1,0,6.4028583,6.4568954,6,-1,5.3758812,-9,2,2,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.4329143,0,33.23,20.18,55.81,39.4,3.333333333333333,1,1,0,1,3,12,2,0,2012.6666,140294.48,0,0,0,0,0,3034.4185 +14088,17210,30671,-9,-9,30672,1,1,17,0,1,1,2,0,0,1,3,0,0,0,0,0,-896.95966,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.65,63.2,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,2012.6666,140294.48,0,0,0,0,0,3034.4185 +14088,17210,30672,30670,-9,-9,1,1,38,0,1,0,2,2,-9,0,2,7.4630423,7.5655284,0,6,1,19.372711,0,-9,-9,2021,8,0,27,38,1,0,0,8.4404383,8.4404383,0,0,0,0,0,0,0,0,1,0,1,0,0,55.81,39.4,33.23,20.18,8.333333333333334,1,1,0,1,8,12,2,0,2012.6666,140294.48,0,0,0,0,0,3034.4185 +14089,17211,30673,-9,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,5.9477801,5.9650507,0,0,-1040.3264,0,3,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6329265,5.5988107,43.26,44.86,-9,-9,6.666666666666667,1,1,0,0,6,9,2,1,1627,176942.73,-37051.789,189975.03,43069.707,9400.75,599.75482,397.80823 +14090,17212,30674,30675,-9,-9,1,1,40,0,1,0,2,2,-9,0,3,8.3229456,8.791667,0,10,-1,-18.302355,0,-9,-9,2021,10,0,38,38,1,0,0,13.938374,13.938374,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,48.14,53.42,28.77,66.88,5,1,1,0,0,7,10,4,0,960.66669,170323.83,13252.408,166128.28,47078.258,916.95508,0,2243.1335 +14090,17212,30675,30674,-9,-9,1,0,41,0,1,0,2,2,-9,0,4,7.0783715,7.6502733,0,17,1,-42.313267,0,2,3,2021,29,9,31,12,1,9,0,4.7888942,4.7888942,0,0,0,0,0,0,0,0,1,1,0,0,0,28.77,66.88,48.14,53.42,1.666666666666667,1,1,0,0,11,10,4,0,960.66669,170323.83,13252.408,166128.28,47078.258,916.95508,0,2243.1335 +14090,17212,30676,-9,30675,30674,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-819.42053,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,0,960.66669,170323.83,13252.408,166128.28,47078.258,916.95508,0,2243.1335 +14091,17213,30677,30679,-9,-9,1,1,42,1,2,0,1,1,-9,0,3,9.3307486,9.0581455,0,7,7,29.705353,0,2,-9,2021,7,0,40,45,1,0,0,37.002068,37.002068,.05,.05,0,0,0,0,0,0,1,1,0,2.8693612,0,52,54.51,53.64,27.15,6.666666666666667,1,1,0,0,9,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14091,17213,30678,-9,30679,30677,1,1,7,1,2,1,3,0,-9,0,4,0,0,0,0,0,-827.59729,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.023223836,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14091,17213,30679,30677,-9,-9,1,0,35,1,2,0,1,1,-9,0,2,7.203371,7.3335638,0,7,-7,57.354855,0,2,-9,2021,11,2,20,20,1,2,0,8.6763563,8.6763563,.05,.05,0,0,0,0,0,0,1,1,0,4.6134672,0,53.64,27.15,52,54.51,8.333333333333334,1,1,0,0,8,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14091,17213,30680,-9,30679,30677,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1086.504,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,527.25,1349814,962844.13,348667.69,0,0,0,4351.4883 +14092,17214,30681,-9,30684,30682,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-931.5542,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14092,17214,30682,30684,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.426734,8.433485,0,11,1,210.23578,0,-9,-9,2021,8,0,39,39,1,0,0,13.83754,13.83754,.05,.05,0,0,0,0,0,0,1,1,0,4.8493357,0,48.48,54.62,48.71,61.53,6.666666666666667,1,1,0,0,10,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14092,17214,30683,-9,30684,30682,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.975,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14092,17214,30684,30682,-9,-9,1,0,40,0,2,0,1,1,-9,0,5,8.8410578,8.6042967,0,11,-1,-68.789391,0,-9,-9,2021,6,0,30,30,1,0,0,22.490456,22.490456,.05,.05,0,0,0,0,0,0,1,1,0,4.8839598,0,48.71,61.53,48.48,54.62,8.333333333333334,1,1,0,0,12,1,4,1,346,324440.53,121555.57,418265,245757.06,0,0,3286.1357 +14093,17215,30685,-9,-9,-9,1,1,41,0,0,0,1,1,-9,1,2,7.5210505,7.1539693,0,0,0,-890.93701,0,2,2,2021,10,1,10,15,1,1,0,17.700279,17.700279,.05,.05,0,0,0,0,0,2,1,1,0,0,0,36.33,48.7,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,978,18247.416,70377.141,0,0,0,0,1455.8594 +14094,17216,30686,30687,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,7.9604468,7.969193,0,7,0,-47.411545,0,3,3,2021,7,0,9,40,1,0,0,38.882244,38.882244,.05,.05,0,0,0,0,0,0,0,0,0,6.4278865,0,57.16,56.15,54.2,57.49,10,1,1,0,0,10,9,4,1,614.5,1506521.3,1195707,426261.94,0,0,4680.9941,3020.6619 +14094,17216,30687,30686,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,7.5521955,7.6758008,0,7,0,97.152992,0,3,3,2021,6,0,21,20,1,0,0,9.6963825,9.6963825,0,0,0,0,0,0,0,0,0,0,0,7.6534724,0,54.2,57.49,57.16,56.15,10,1,1,0,0,10,9,4,1,614.5,1506521.3,1195707,426261.94,0,0,4680.9941,3020.6619 +14095,17217,30688,-9,-9,-9,1,0,56,0,0,0,3,3,-9,1,2,0,2.7665579,2.4759855,0,0,-949.4425,0,3,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,2.4167554,32.42,36.67,-9,-9,1.666666666666667,1,1,0,0,0,9,2,0,583,409572.53,40175.727,320674.75,137773.14,0,0,935.36737 +14096,17218,30689,30690,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,0,0,10,0,19.773632,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,.35289648,0,2,1,1,0,6.9682875,0,44.64,17.75,62.42,32.41,6.666666666666667,2,3,0,0,0,8,2,1,644.5,363165.19,-36063.387,261940.28,86700.344,0,251.80869,1346.0757 +14096,17218,30690,30689,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,4.5316181,4.9118824,10,0,-90.845772,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8464079,4.9045262,62.42,32.41,44.64,17.75,8.333333333333334,2,3,0,0,4,8,2,1,644.5,363165.19,-36063.387,261940.28,86700.344,0,251.80869,1346.0757 +14096,17219,30691,-9,30689,30690,1,1,54,0,0,0,1,1,-9,0,2,9.3645515,9.4269733,0,0,0,-943.3512,0,2,2,2021,23,11,50,55,1,11,0,24.726694,24.726694,.05,.05,0,0,0,0,0,0,1,1,0,4.2974777,0,35.04,49.04,-9,-9,3.333333333333333,2,3,0,0,11,8,5,1,515,1397613.3,735303.44,356304.34,0,0,0,3862.3875 +14097,17220,30692,30697,-9,-9,1,1,50,0,4,0,1,1,-9,0,4,8.054471,8.0937939,0,7,2,-64.409401,0,-9,-9,2021,8,0,40,0,1,0,0,10.403491,10.403491,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.39,42.39,52.09,50.4,6.666666666666667,3,4,0,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30693,-9,30697,30692,1,0,11,0,4,1,3,0,-9,0,4,0,0,0,0,0,-999.59241,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30694,-9,30697,30692,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-930.47858,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30695,-9,30697,30692,1,1,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-909.71295,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30696,-9,30697,30692,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1090.6213,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,3,4,-9,0,0,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14097,17220,30697,30692,-9,-9,1,0,48,0,4,0,2,2,-9,0,4,7.6422544,7.1919365,0,19,-2,54.288651,0,2,2,2021,6,0,20,20,1,0,0,9.9355993,9.9355993,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.09,50.4,63.39,42.39,8.333333333333334,3,4,0,0,5,8,3,0,477.83334,1313161,552724.69,766687.44,0,0,0,4160.8501 +14098,17221,30698,30699,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,6.4299874,6.419868,63,4,18.946873,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,21.270317,0,120,1,1,0,0,6.3521571,39.63,21.25,32.8,21.51,5,2,3,0,0,0,9,2,1,1147.5,273482.22,94941.344,386093.31,0,0,0,2895.4548 +14098,17221,30699,30698,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,0,0,11,-4,-15.421678,0,3,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,27.392267,71.484245,249.44505,2,1,1,0,0,0,32.8,21.51,39.63,21.25,5,2,3,0,0,0,9,2,1,1147.5,273482.22,94941.344,386093.31,0,0,0,2895.4548 +14099,17222,30700,30701,-9,-9,1,1,77,0,0,0,1,1,-9,0,4,0,4.0300899,4.5009789,57,1,-57.19302,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.2443347,51.83,57.2,57.16,56.15,10,1,1,0,0,8,7,2,0,729,741048.13,42243.082,786516.69,0,0,0,891.43951 +14099,17222,30701,30700,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,57,-1,38.715809,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,0,7,2,0,729,741048.13,42243.082,786516.69,0,0,0,891.43951 +14100,17223,30702,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.7818227,7.7063622,0,0,-980.6969,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5889666,7.7630901,64.43000000000001,36.45,-9,-9,8.333333333333334,1,1,0,0,8,8,3,1,356,130443.41,0,0,0,0,0,1840.9724 +14101,17224,30703,30704,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,9.0701418,8.8327885,0,39,1,141.30452,0,2,2,2021,6,0,28,45,1,0,0,31.456308,31.456308,.05,.05,0,0,0,0,0,0,0,0,0,7.9524584,0,57.16,56.15,35.8,59.5,8.333333333333334,2,3,0,0,14,8,5,1,727.5,1057488.1,246564.56,655079.13,32096.346,0,0,4712.4863 +14101,17224,30704,30703,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,0,0,0,39,-1,-75.890816,0,-9,-9,2021,25,12,0,30,3,12,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,0,0,35.8,59.5,57.16,56.15,8.333333333333334,1,1,1,0,11,8,5,1,727.5,1057488.1,246564.56,655079.13,32096.346,0,0,4712.4863 +14101,17225,30705,-9,30703,30704,1,1,23,0,0,0,1,1,1,0,5,0,4.4533286,4.434999,0,0,-996.18188,-9,1,1,2021,16,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.936553,0,38.18,65.09,-9,-9,3.333333333333333,4,2,1,0,5,8,2,1,610,-94092.164,0,0,0,0,0,-530.92053 +14102,17226,30706,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-977.56659,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,1.3744965,5.3257122,22.79497,0,1,1,0,0,0,22.47,38.77,-9,-9,3.333333333333333,1,1,0,0,0,10,1,0,82,190059.66,0,234260.91,0,0,0,62.25597 +14103,17227,30707,30708,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,7.1605916,7.4877028,57,5,53.234474,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3319712,58.92,48.59,55.79,52.62,8.333333333333334,1,1,0,0,0,12,2,1,876,184863.63,181146.22,159060,0,0,0,2194.0728 +14103,17227,30708,30707,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,6.2795291,5.9648032,57,-5,-39.477257,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4258175,55.79,52.62,58.92,48.59,8.333333333333334,1,1,0,0,9,12,2,1,876,184863.63,181146.22,159060,0,0,0,2194.0728 +14104,17228,30709,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,7.1511154,7.3591514,0,0,-1073.4178,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5551124,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,3,6,3,0,7501,569727.94,246722.28,61154.191,0,0,0,1879.7239 +14104,17229,30710,-9,-9,30709,1,0,20,0,0,1,2,0,0,0,4,0,0,0,0,0,-1141.2291,-9,-9,3,2021,13,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0027915,0,50.41,42.98,-9,-9,3.333333333333333,1,1,0,0,0,6,1,0,906,0,0,0,0,0,0,-376.43573 +14105,17230,30711,30712,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,0,7.5884366,7.7302465,22,6,19.504929,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,5.7466254,7.7898707,58.56,46.45,54.37,54.8,8.333333333333334,1,1,0,0,9,9,4,1,530,1067356.3,490344.69,429398.56,0,0,0,1857.1626 +14105,17230,30712,30711,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.7150869,7.7329569,0,22,-6,45.616112,0,2,1,2021,11,0,30,75,1,0,0,10.675645,10.675645,0,0,0,0,0,0,0,0,0,0,0,0,0,54.37,54.8,58.56,46.45,8.333333333333334,1,1,0,0,10,9,4,1,530,1067356.3,490344.69,429398.56,0,0,0,1857.1626 +14106,17231,30713,30714,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,4,-5,-12.884165,0,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.32,18.46,60.21,34.28,8.333333333333334,1,1,0,0,10,5,2,1,622,374074.56,171455.34,195910.8,0,0,0,2013.4303 +14106,17231,30714,30713,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.9156299,6.9673667,4,5,-11.743225,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.802619,6.7664652,60.21,34.28,33.32,18.46,8.333333333333334,1,1,0,0,9,5,2,1,622,374074.56,171455.34,195910.8,0,0,0,2013.4303 +14107,17232,30715,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.9182053,8.9583225,0,3,-1,-126.99548,0,2,1,2021,7,0,43,57,1,0,0,20.478006,20.478006,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.29,54.84,54.69,57.47,8.333333333333334,4,2,0,0,5,8,5,0,247,453314.06,118066.98,259415.5,72310.883,0,0,2147.741 +14107,17233,30716,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.1517458,7.751472,0,3,1,-26.15942,0,-9,-9,2021,10,0,35,37,1,0,0,12.071063,12.071063,0,0,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,45.29,54.84,8.333333333333334,1,1,0,0,5,8,5,0,2766,7113.0225,0,0,0,0,0,-65.857307 +14108,17234,30717,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,7.9293604,8.1663446,5.0178847,0,0,-991.79779,0,3,2,2021,10,0,32,15,1,0,0,9.0631609,9.0631609,0,0,0,0,0,0,0,0,0,0,0,5.3727064,5.3301015,52.37,43.52,-9,-9,8.333333333333334,1,1,0,0,12,6,3,1,331,197068.69,3928.7637,246162.53,137347.23,0,0,1103.1387 +14109,17235,30718,30719,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.3651638,8.4780302,0,23,2,118.71087,0,2,2,2021,6,0,47,41,1,0,0,7.8702912,7.8702912,.05,.05,0,0,0,0,0,0,1,1,0,2.9549105,0,56.82,56.51,46.28,62.6,10,1,1,0,0,8,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14109,17235,30719,30718,-9,-9,1,0,43,0,2,0,2,2,-9,0,5,7.7204762,7.6104016,0,23,-2,-13.275643,0,2,2,2021,14,2,29,29,1,2,0,7.1240034,7.1240034,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,56.82,56.51,6.666666666666667,1,1,0,0,8,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14109,17235,30720,-9,30719,30718,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.8994,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14109,17235,30721,-9,30719,30718,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1102.1139,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,6,3,1,652.25,1868029.8,259291.45,173658.16,63574.395,2371.9448,0,2589.2195 +14110,17236,30722,-9,30723,-9,1,1,11,0,1,1,3,0,-9,0,5,0,0,0,0,0,-950.76031,-9,2,-9,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,2,0,1182.5,121822.6,-92755.383,107216.91,30739.979,0,0,834.31281 +14110,17236,30723,-9,-9,-9,1,0,43,0,1,0,2,2,-9,0,3,7.2920103,7.0832248,0,0,0,-1055.2335,0,3,3,2021,13,1,28,0,1,1,0,4.8257356,4.8257356,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.27,37.24,-9,-9,6.666666666666667,3,4,0,0,0,2,2,0,1182.5,121822.6,-92755.383,107216.91,30739.979,0,0,834.31281 +14111,17237,30724,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,4,8.0843792,8.1919088,0,0,0,-1034.4756,0,1,2,2021,9,0,38,35,1,0,0,12.501822,12.501822,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,12,5,4,0,1629,-51604.52,-3710.928,78750.844,81879.742,0,558.44214,1686.5851 +14112,17238,30725,-9,30728,30727,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.3325,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30726,-9,30728,30727,1,1,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1019.9633,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30727,30728,-9,-9,1,1,45,0,3,0,2,2,-9,0,4,7.2695756,6.9196339,0,22,4,10.800254,0,-9,2,2021,11,0,34,35,1,0,0,5.0121007,5.0121007,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,2,3,0,0,14,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30728,30727,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,22,-4,86.406914,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,6.666666666666667,2,3,1,0,9,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30729,-9,30728,30727,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-990.92542,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14112,17238,30730,-9,30728,30727,1,0,17,0,3,1,2,0,0,0,4,0,0,0,0,0,-1135.4426,-9,2,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.89,59.2,-9,-9,8.333333333333334,2,3,0,0,0,4,2,1,441,118156.39,-9929.915,159046.31,0,0,0,2004.6445 +14113,17239,30731,30732,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,8.6176281,8.6409473,36,6,24.173679,0,2,1,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7838883,8.4094276,53.38,52.51,50.05,55.41,8.333333333333334,1,1,0,0,7,10,5,1,518.5,1711268.3,419623.81,479125.13,0,0,0,6929.6328 +14113,17239,30732,30731,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,8.8473272,9.3843832,7.8089991,34,-6,56.738411,0,3,2,2021,6,0,45,20,1,0,0,23.334425,23.334425,0,0,0,0,0,0,0,0,1,1,0,4.5640211,8.1897879,50.05,55.41,53.38,52.51,10,1,1,0,0,6,10,5,1,518.5,1711268.3,419623.81,479125.13,0,0,0,6929.6328 +14114,17240,30733,30734,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,6.6272283,7.2576718,5.1509786,42,-3,27.378811,0,2,2,2021,17,6,14,14,1,6,0,6.3276563,6.3276563,0,0,0,0,0,0,0,0,0,0,0,5.6440973,5.2432928,44.48,46.03,34.88,60.95,5,1,1,0,0,12,5,3,1,638,360396.06,30378.475,99025.25,0,0,0,2369.9966 +14114,17240,30734,30733,-9,-9,1,1,63,0,0,0,2,2,-9,0,5,7.5997496,7.5822144,0,42,3,-137.35443,0,2,1,2021,25,12,25,30,1,12,0,11.228622,11.228622,0,0,0,0,0,0,0,0,0,0,0,7.5064397,0,34.88,60.95,44.48,46.03,3.333333333333333,1,1,0,0,11,5,3,1,638,360396.06,30378.475,99025.25,0,0,0,2369.9966 +14115,17241,30735,30738,-9,-9,1,0,36,0,1,0,2,2,-9,1,3,0,0,0,6,-11,114.00905,0,3,3,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,53.75,41.28,46.82,45.62,6.666666666666667,1,1,0,0,0,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14115,17241,30736,-9,30735,30738,1,0,17,0,1,1,2,0,-9,0,4,0,0,0,0,0,-994.53247,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14115,17241,30737,-9,30735,30738,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1079.6864,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14115,17241,30738,30735,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.7451606,7.8018579,0,6,11,30.997374,0,3,3,2021,10,1,35,32,1,1,0,7.8303428,7.8303428,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.82,45.62,53.75,41.28,10,1,1,0,0,9,6,2,1,566.75,38955.32,119984.32,0,0,0,0,2627.0371 +14116,17242,30739,-9,30740,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.28687,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,1835.5,-5232.0977,-54656.293,169582.27,84293.344,-1607.2485,0,2399.2104 +14116,17242,30740,-9,-9,-9,1,0,46,0,2,0,1,1,-9,1,4,7.9349756,8.2775993,5.6269541,0,0,-985.60651,0,2,3,2021,19,7,22,22,1,7,0,22.344534,22.344534,.05,.05,0,0,0,0,0,104,1,1,0,5.6610513,0,40.96,61.14,-9,-9,6.666666666666667,1,1,0,0,10,4,3,1,1835.5,-5232.0977,-54656.293,169582.27,84293.344,-1607.2485,0,2399.2104 +14117,17243,30741,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9877796,6.8892412,0,0,-1098.326,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8576455,57.33,53.46,-9,-9,8.333333333333334,1,1,0,1,0,10,2,0,1188,628335.31,144316.16,371095.5,0,0,0,278.37073 +14118,17244,30742,30743,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.3634157,8.1576586,52,3,20.178862,0,3,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,6.7740979,0,0,1,1,0,0,8.2805691,52.32,38.44,59.14,52.5,8.333333333333334,1,1,0,0,3,8,3,1,1160,707574.75,376901.78,232356.19,0,0,0,3570.3887 +14118,17244,30743,30742,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,0,0,9,-3,5.9992728,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3900337,0,59.14,52.5,52.32,38.44,8.333333333333334,1,1,0,0,0,8,3,1,1160,707574.75,376901.78,232356.19,0,0,0,3570.3887 +14119,17245,30744,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,1,0,0,0,0,0,-945.0968,0,3,-9,2021,31,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.74,24.49,-9,-9,0,1,1,1,1,3,6,1,0,110,-83930.766,0,0,0,0,-523.23462,435.07309 +14120,17246,30745,-9,-9,-9,1,1,34,0,0,0,2,2,-9,0,3,10.200161,10.230085,0,0,0,-1095.7451,0,2,2,2021,4,0,60,65,1,0,0,44.763596,44.763596,.05,.05,0,0,0,0,0,0,0,0,0,6.0450048,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,6,10,5,1,790,131341.45,64157.84,195366.59,90187.758,6088.5952,0,24112.518 +14121,17247,30746,30750,-9,-9,1,1,46,0,3,0,1,1,-9,0,3,9.4984741,9.8367796,0,20,5,26.096891,0,2,1,2021,8,0,58,51,1,0,0,31.222767,31.222767,.05,.05,0,0,0,0,0,2,0,0,0,3.322464,0,48.14,53.42,41.39,36.7,6.666666666666667,2,3,0,0,12,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30747,-9,30750,30746,1,1,11,0,3,1,3,0,-9,0,3,0,0,0,0,0,-870.66211,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,56,-9,-9,6,2,3,-9,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30748,-9,30750,30746,1,0,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-996.08099,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30749,-9,30750,30746,1,0,15,0,3,1,3,0,-9,0,2,0,0,0,0,0,-948.38403,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37,45,-9,-9,5,2,3,-9,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14121,17247,30750,30746,-9,-9,1,0,41,0,3,0,1,1,-9,0,2,0,0,0,20,-5,-67.230812,0,-9,-9,2021,14,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,1.5681733,0,41.39,36.7,48.14,53.42,6.666666666666667,2,3,0,0,0,8,5,1,1480,1524470.9,725997.31,755833.25,106424.17,0,15397.407,4813.5938 +14122,17248,30751,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.7617435,7.9814601,4.9805045,0,0,-1009.748,0,3,2,2021,10,0,35,35,1,0,0,9.3094034,9.3094034,.05,.05,0,0,0,0,0,0,1,1,0,0,5.1813059,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,12,11,4,1,111,260238.8,395983.47,0,0,-1337.8856,2174.8357,1369.083 +14123,17249,30752,30753,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,39,-1,0,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,26,33.55,31.06,0,1,1,0,0,0,2,2,1,503,-11312.913,0,0,0,0,0,2327.8555 +14123,17249,30753,30752,-9,-9,1,1,61,0,0,0,3,3,-9,1,2,0,0,0,39,1,0,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.55,31.06,37,26,3.333333333333333,1,1,0,0,0,2,2,1,503,-11312.913,0,0,0,0,0,2327.8555 +14124,17250,30754,30755,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.2132835,7.9467854,7.3669524,28,7,-201.83456,0,3,3,2021,24,12,35,40,1,12,0,4.8769202,4.8769202,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6731019,36.19,42.77,36.85,61.32,3.333333333333333,1,1,0,0,10,9,5,1,937,1088396,1020273.4,237266.06,154172.41,9244.2285,3057.8762,3865.7734 +14124,17250,30755,30754,-9,-9,1,1,56,0,0,0,3,3,-9,0,4,8.7192087,8.4591856,0,28,-7,52.202221,0,2,3,2021,16,4,35,40,1,4,0,18.811699,18.811699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.85,61.32,36.19,42.77,1.666666666666667,1,1,0,0,10,9,5,1,937,1088396,1020273.4,237266.06,154172.41,9244.2285,3057.8762,3865.7734 +14125,17251,30756,-9,30757,30759,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.9841,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14125,17251,30757,30759,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.2287207,7.8681979,0,17,-4,27.463764,0,2,2,2021,10,0,34,32,1,0,0,11.569294,11.569294,.05,.05,0,0,0,0,0,0,1,1,0,.63911372,0,50.4,55.04,51.24,58.84,6.666666666666667,1,1,0,0,10,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14125,17251,30758,-9,30757,30759,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-951.00696,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14125,17251,30759,30757,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,8.2747822,8.2725363,0,17,4,-40.317757,0,2,2,2021,18,6,35,49,1,6,0,12.943144,12.943144,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,50.4,55.04,6.666666666666667,1,1,0,0,9,4,4,1,858.25,391636.63,339354.72,220353.61,83700.266,0,28067.836,3528.1182 +14126,17252,30760,30761,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.9220281,7.9416776,0,8,3,173.44063,0,3,3,2021,9,0,60,75,1,1,0,6.4253826,6.4253826,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,55,26.93,61.8,8,1,1,0,0,1,13,4,1,2052,388185.44,398237.94,79177.375,0,2353.7314,0,3968.7129 +14126,17252,30761,30760,-9,-9,1,0,48,0,0,0,2,2,-9,1,4,8.0003958,8.0834789,0,8,-3,74.339485,0,3,3,2021,18,7,40,40,1,7,0,8.1439104,8.1439104,0,0,0,0,0,0,0,0,1,1,0,0,0,26.93,61.8,53,55,8.333333333333334,1,1,0,0,7,13,4,1,2052,388185.44,398237.94,79177.375,0,2353.7314,0,3968.7129 +14126,17253,30762,-9,30761,30760,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1089.0553,-9,2,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.06,56.16,-9,-9,5,1,1,0,0,2,13,1,1,1056.6666,0,0,0,0,0,0,0 +14126,17253,30763,-9,30762,-9,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1122.2905,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,1,1,1056.6666,0,0,0,0,0,0,0 +14126,17253,30764,-9,30762,-9,1,1,6,0,0,1,3,0,-9,0,4,0,0,0,0,0,-920.12103,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,6,-9,0,0,13,1,1,1056.6666,0,0,0,0,0,0,0 +14127,17254,30765,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.7108507,7.6082835,3.6823013,0,0,-1020.5829,0,2,2,2021,18,6,48,48,1,6,0,4.6984901,4.6984901,0,0,0,0,0,0,0,0,1,1,0,3.3229771,0,32.32,63.9,-9,-9,8.333333333333334,1,1,0,0,8,13,3,0,279,11528.339,-38242.242,0,0,0,0,2156.5825 +14127,17255,30766,-9,30765,-9,1,1,20,0,0,0,2,2,-9,0,3,7.1465139,7.5686383,0,0,0,-1013.1015,0,2,-9,2021,15,3,32,0,1,3,1,5.7034745,5.7034745,0,0,0,0,0,0,0,0,1,1,0,.027061965,0,37.32,52.38,-9,-9,8.333333333333334,1,1,0,0,3,13,3,0,192,-6615.1377,0,0,0,0,0,351.33078 +14127,17256,30767,-9,30765,-9,1,1,18,0,0,1,2,0,0,1,3,0,0,0,0,0,-978.90161,-9,2,-9,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.81,39.65,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,2692,-38428.559,0,0,0,0,0,588.1427 +14128,17257,30768,30769,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,0,0,0,17,0,-101.79845,0,-9,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.96,49.93,57.33,53.46,10,2,3,0,0,8,9,3,1,461.5,1564257.8,1373399.5,259769.55,0,9570.7314,0,2198.6655 +14128,17257,30769,30768,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,0,8.4323425,8.1956272,16,9,51.502388,0,-9,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6342769,8.7121172,57.33,53.46,55.96,49.93,10,1,1,0,0,9,9,3,1,461.5,1564257.8,1373399.5,259769.55,0,9570.7314,0,2198.6655 +14129,17258,30770,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,1,0,7.0393958,7.2450743,0,0,-1146.8254,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,4.6993937,0,0,1,1,0,.87995541,7.0282578,33.14,29.8,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,527,-177715.55,15319.224,0,0,0,0,1298.0524 +14130,17259,30771,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1005.3232,0,2,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.92,29.16,-9,-9,6.666666666666667,4,5,0,1,0,5,1,1,1134,54403.691,0,0,0,0,0,240.27271 +14131,17260,30772,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,1,7.4833374,7.3970237,4.84026,0,0,-985.45734,0,2,2,2021,6,0,18,18,1,0,0,9.9024057,9.9024057,.05,.05,0,0,0,0,0,0,0,0,0,4.156292,0,69.65000000000001,12.73,-9,-9,6.666666666666667,1,1,0,0,9,13,3,1,937,-46525.418,83328.219,0,0,3317.6348,516.76337,897.5022 +14132,17261,30773,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1068.4882,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.52,49.66,-9,-9,5,1,1,0,0,0,9,2,0,1360,57457.973,0,0,0,0,0,2108.522 +14133,17262,30774,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,5.9793315,5.8394847,0,0,0,-1083.8973,0,2,-9,2021,5,0,40,36,1,0,0,1.2490907,1.2490907,0,0,0,0,0,0,0,0,1,1,0,0,0,63.38,53.47,-9,-9,10,2,3,0,0,4,4,2,0,552,-67335.023,0,148086.63,0,0,6774.0977,244.22241 +14134,17263,30775,30776,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,5.0551081,5.1901164,0,1,-2,-56.109863,-9,2,2,2021,14,2,30,0,1,2,0,.57163048,.57163048,0,0,0,0,0,0,0,0,1,0,1,0,0,30.46,58.83,33.01,63.17,8.333333333333334,1,1,0,1,13,9,2,1,1376.6666,1517893.6,42526.188,757880.75,233319.13,0,0,2154.4844 +14134,17263,30776,30775,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,7.2575941,7.6848035,6.4167337,1,2,75.873665,-9,-9,-9,2021,10,0,40,0,1,0,0,4.6509938,4.6509938,0,0,0,0,0,0,0,0,1,0,1,7.1267071,0,33.01,63.17,30.46,58.83,6.666666666666667,1,1,0,1,4,9,2,1,1376.6666,1517893.6,42526.188,757880.75,233319.13,0,0,2154.4844 +14134,17263,30777,-9,30775,30776,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1101.049,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,2,1,1376.6666,1517893.6,42526.188,757880.75,233319.13,0,0,2154.4844 +14135,17264,30778,30779,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.0638132,8.4563799,0,12,-4,-127.90245,0,3,3,2021,9,0,23,23,1,0,0,18.955061,18.955061,0,0,0,0,0,0,0,0,0,0,0,3.9232061,0,49.28,52.09,54.37,54.8,6.666666666666667,1,1,0,0,13,6,5,1,1134,881911.5,678520.13,79059.641,0,0,2319.6633,4229.4927 +14135,17264,30779,30778,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,9.1918621,9.0183325,0,12,4,-.71992725,0,2,2,2021,12,0,37,36,1,0,0,20.665222,20.665222,.05,.05,0,0,0,0,0,0,0,0,0,1.5874676,0,54.37,54.8,49.28,52.09,6.666666666666667,1,1,0,0,13,6,5,1,1134,881911.5,678520.13,79059.641,0,0,2319.6633,4229.4927 +14136,17265,30780,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,2,7.6688862,7.4394827,0,0,0,-927.49457,0,-9,-9,2021,20,8,38,38,1,8,0,7.9250193,7.9250193,0,0,0,0,0,0,0,0,0,0,0,0,0,26.89,47.24,-9,-9,3.333333333333333,1,1,0,0,5,7,3,0,425,-5050.8467,0,0,0,0,0,1610.3479 +14136,17266,30781,-9,-9,-9,1,1,22,0,0,0,2,2,-9,0,4,0,0,0,0,0,-968.56018,0,-9,-9,2021,23,9,0,38,3,9,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.85,59.17,-9,-9,5,1,1,1,0,0,7,1,0,761,-137072.09,0,0,0,0,277.746,0 +14137,17267,30782,-9,30784,30783,1,1,16,0,1,1,3,0,-9,0,2,0,0,0,0,0,-923.86176,-9,3,2,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.109797,0,57.57,49.69,-9,-9,6.666666666666667,2,3,0,0,0,6,4,1,307.66666,58912.215,33734.734,0,0,7123.9243,851.62463,3416.9304 +14137,17267,30783,30784,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.127717,8.444169,0,23,6,40.393631,0,-9,-9,2021,8,0,48,48,1,0,0,9.9301481,9.9301481,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.96,53.17,5,2,3,0,0,10,6,4,1,307.66666,58912.215,33734.734,0,0,7123.9243,851.62463,3416.9304 +14137,17267,30784,30783,-9,-9,1,0,45,0,1,0,3,3,-9,0,3,7.4683366,7.874896,0,23,-6,-12.491813,0,2,2,2021,11,0,38,8,1,0,0,7.809411,7.809411,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.12,54.8,8.333333333333334,2,3,0,0,9,6,4,1,307.66666,58912.215,33734.734,0,0,7123.9243,851.62463,3416.9304 +14138,17268,30785,30788,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.9328384,8.7950392,0,23,2,-24.046858,0,3,2,2021,10,0,35,55,1,1,0,19.882767,19.882767,.05,.05,0,0,0,0,0,0,1,1,0,2.2909045,0,51,54,56.92,49.39,8,1,1,0,0,2,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14138,17268,30786,-9,30785,30788,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.19159,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,1,1,-9,0,0,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14138,17268,30787,-9,30785,30788,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.59,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14138,17268,30788,30785,-9,-9,1,1,44,0,2,0,1,1,-9,0,4,9.0377102,8.873415,0,6,-2,93.208855,0,-9,-9,2021,6,0,60,70,1,0,0,20.186478,20.186478,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.92,49.39,51,54,5,1,1,0,0,6,12,5,1,542.75,1482013,911227.63,355356.69,0,0,0,5772.8838 +14139,17269,30789,-9,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,8.902503,9.0742064,0,0,0,-927.75256,0,2,3,2021,12,2,43,46,1,2,0,18.284323,18.284323,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.21,54.03,-9,-9,6.666666666666667,1,1,0,0,13,13,5,1,285,1070793.8,920706.06,125326.98,62162.527,0,0,3031.4382 +14140,17270,30790,-9,-9,-9,1,1,46,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1026.3011,0,3,3,2021,20,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,55.32,-9,-9,6.666666666666667,1,1,0,0,0,4,1,1,153,-118566.88,0,0,0,0,0,269.86029 +14141,17271,30791,30792,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,0,7.6283178,7.8120036,10,3,-93.347717,0,-9,-9,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0691152,7.7454572,39.07,53.41,52.93,52.64,8.333333333333334,1,1,0,0,10,6,5,1,1308,830370.88,0,259425.75,0,4130.542,-541.23932,3686.1445 +14141,17271,30792,30791,-9,-9,1,0,57,0,0,0,1,1,-9,0,3,8.8582249,8.8174658,0,10,-3,84.993454,0,3,3,2021,8,0,37,37,1,0,0,17.405024,17.405024,0,0,0,0,0,0,0,0,0,0,0,1.4632034,0,52.93,52.64,39.07,53.41,8.333333333333334,1,1,0,0,10,6,5,1,1308,830370.88,0,259425.75,0,4130.542,-541.23932,3686.1445 +14142,17272,30793,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.3408871,7.2479687,0,0,-1015.3234,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.1146984,7.5309434,32.5,55.55,-9,-9,5,1,1,0,0,0,8,3,1,598,811682.38,212812.61,670332.56,0,-1399.9462,0,897.02539 +14143,17273,30794,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,6.0545959,7.5300884,7.0033817,0,0,-920.4436,0,3,3,2021,8,2,20,20,1,2,0,3.1034396,3.1034396,0,0,0,0,0,0,0,0,1,1,0,7.1544189,6.821353,62.26,37.6,-9,-9,8.333333333333334,1,1,0,0,7,6,3,1,143,325597.13,-18048.908,0,0,0,0,2307.8823 +14144,17274,30795,30796,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,6.3759093,6.1265678,8,4,94.546242,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.4913793,6.6930914,58.66,16.32,51.83,57.2,5,1,1,0,0,1,10,3,1,1007.5,835107.88,410912.88,18599.242,0,0,0,2019.9729 +14144,17274,30796,30795,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.5375051,7.1377964,8,-4,-113.66194,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.7194738,6.8096266,51.83,57.2,58.66,16.32,8.333333333333334,1,1,0,0,1,10,3,1,1007.5,835107.88,410912.88,18599.242,0,0,0,2019.9729 +14145,17275,30797,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-999.21033,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.43,47.32,-9,-9,6.666666666666667,1,1,0,0,0,1,1,0,908,180470.88,0,0,0,0,0,1421.4696 +14146,17276,30798,-9,-9,-9,1,1,35,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1033.1554,0,-9,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,1,0,0,1,1,0,693,-53464.457,0,0,0,0,0,1343.8524 +14147,17277,30799,-9,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.2319651,8.305459,0,0,0,-976.75629,0,3,2,2021,7,0,40,38,1,0,0,13.062142,13.062142,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.31,49.81,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,386,245633.22,114013.12,113053.73,28056.639,0,4078.0112,2467.4131 +14148,17278,30800,30801,-9,-9,1,0,42,0,1,0,2,2,-9,1,4,7.0153656,7.1020808,0,25,-6,-64.229767,0,2,2,2021,10,0,15,0,1,1,0,8.7173243,8.7173243,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,65.62,37.83,8,2,3,0,0,5,8,2,0,1588.6666,395781.88,0,335791.75,19788.75,348.86597,0,3643.6189 +14148,17278,30801,30800,-9,-9,1,1,48,0,1,0,1,1,-9,1,2,0,0,0,25,6,52.803516,0,2,1,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,65.62,37.83,49,55,8.333333333333334,2,3,0,0,0,8,2,0,1588.6666,395781.88,0,335791.75,19788.75,348.86597,0,3643.6189 +14148,17278,30802,-9,30800,30801,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.21472,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,1588.6666,395781.88,0,335791.75,19788.75,348.86597,0,3643.6189 +14148,17279,30803,-9,30800,30801,1,1,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-1162.2803,-9,2,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,54.2,57.49,-9,-9,10,2,3,0,0,0,8,1,0,639,51530.258,0,0,0,0,0,252.47435 +14149,17280,30804,30805,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,0,0,68,-2,-6.5580621,0,2,2,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,55.4,23.24,39.37,21.77,8.333333333333334,1,1,0,0,1,8,2,1,510.5,321528.69,23396.668,224186.56,0,0,0,2010.9221 +14149,17280,30805,30804,-9,-9,1,1,89,0,0,0,3,3,-9,0,1,0,6.1031227,6.2394352,68,2,43.635651,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,15.305605,0,131.20525,0,1,1,0,2.8846862,6.2952676,39.37,21.77,55.4,23.24,0,1,1,0,0,6,8,2,1,510.5,321528.69,23396.668,224186.56,0,0,0,2010.9221 +14150,17281,30806,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,3,7.9716825,7.589437,0,2,-3,-49.261459,0,2,2,2021,10,2,45,40,1,2,0,7.1804438,7.1804438,0,0,0,0,0,0,0,0,0,0,0,0,0,46.8,57.03,39.65,42.5,8.333333333333334,1,1,0,0,9,6,4,0,654,52001.566,0,0,0,3620.7478,0,1313.2456 +14150,17282,30807,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,8.1836901,8.001545,0,2,3,154.7216,0,-9,-9,2021,15,4,38,15,1,4,0,7.1844959,7.1844959,0,0,0,0,0,0,0,0,0,0,0,0,0,39.65,42.5,46.8,57.03,5,1,1,0,0,3,6,4,0,371,-4217.8521,0,0,0,0,0,1256.6805 +14151,17283,30808,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.4623585,6.2479939,0,0,-995.26306,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0668788,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,8,9,2,1,798,461010.03,-49085.461,219881.56,0,0,-94.640923,1455.0886 +14152,17284,30809,30810,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,4,1,94.284111,0,3,-9,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,3.1143682,6.2123713,21.323227,0,1,1,0,0,0,45.39,38.38,52.62,39.54,6.666666666666667,1,1,0,0,0,2,2,1,1587.5,213280.19,75265.266,0,0,0,0,1677.6583 +14152,17284,30810,30809,-9,-9,1,1,74,0,0,0,3,3,-9,0,2,0,5.6253724,5.7653947,4,-1,147.31125,0,3,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,28.689529,0,0,1,1,0,5.8196836,5.4549446,52.62,39.54,45.39,38.38,6.666666666666667,1,1,0,0,3,2,2,1,1587.5,213280.19,75265.266,0,0,0,0,1677.6583 +14153,17285,30811,-9,30814,30813,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.51337,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14153,17285,30812,-9,30814,30813,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1123.5623,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14153,17285,30813,30814,-9,-9,1,1,37,0,2,0,1,1,-9,0,4,8.9315395,8.7153263,0,6,3,-77.789001,0,2,1,2021,8,1,37,37,1,1,0,19.90086,19.90086,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,54.1,59.11,8.333333333333334,1,1,0,0,7,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14153,17285,30814,30813,-9,-9,1,0,34,0,2,0,1,1,-9,0,5,8.0863714,8.3196764,0,6,-3,30.684057,0,2,2,2021,3,0,37,30,1,0,0,11.647749,11.647749,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,51.83,57.2,10,1,1,0,0,7,11,4,1,784.5,36804.242,-20507.672,70200.859,81534.18,0,0,3746.9702 +14154,17286,30815,-9,-9,-9,1,0,26,0,0,0,3,3,-9,0,3,7.9397488,7.5619683,0,0,0,-988.20178,0,-9,-9,2021,11,0,37,16,1,0,0,8.0651827,8.0651827,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.58,55.59,-9,-9,6.666666666666667,1,1,0,0,10,13,3,0,127,4781.478,67880.93,0,0,688.32898,0,603.09412 +14155,17287,30816,30817,-9,-9,1,0,37,0,2,0,2,2,-9,0,3,7.4418178,7.5576782,0,7,-3,-55.027641,0,2,2,2021,8,0,23,23,1,0,0,9.2890902,9.2890902,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,60.12,54.8,6.666666666666667,1,1,0,0,8,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14155,17287,30817,30816,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.1849966,8.9693804,0,7,3,93.580681,0,-9,-9,2021,10,0,41,39,1,0,0,22.465267,22.465267,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,57.33,53.46,8.333333333333334,1,1,0,0,8,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14155,17287,30818,-9,30816,30817,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1014.0798,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14155,17287,30819,-9,30816,30817,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-968.66992,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,1119.5,857561,638186,265058.13,93649.234,2342.2427,0,3964.6191 +14156,17288,30820,-9,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.9176097,6.9762812,0,0,-859.98035,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6235094,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,131,258651.84,282522.5,0,0,0,0,1294.2251 +14157,17289,30821,-9,30823,30824,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-930.8421,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14157,17289,30822,-9,30823,30824,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-948.04144,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14157,17289,30823,30824,-9,-9,1,0,30,0,2,0,3,3,-9,0,4,6.8844919,6.8535004,0,4,-7,-137.12198,0,-9,-9,2021,16,3,21,26,1,3,0,6.959425,6.959425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50,57,10,1,1,0,0,9,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14157,17289,30824,30823,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.296771,8.2839069,0,4,7,72.532913,0,3,2,2021,10,0,40,40,1,1,0,11.955791,11.955791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,54.79,55.86,7,1,1,0,0,1,12,3,0,278,140689.13,111567.52,152534.28,94298.172,0,0,2656.6484 +14158,17290,30825,30826,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,25,-3,-108.2458,-9,2,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,42,0,0,0,0,0,19.76,38.48,54.54,38.41,1.666666666666667,1,1,0,0,0,11,4,1,589.5,773506,753979.88,176855.84,0,0,0,1653.6469 +14158,17290,30826,30825,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,8.2097826,8.2480431,0,25,3,-132.11476,-9,-9,-9,2021,12,0,44,0,1,0,0,9.8716068,9.8716068,.05,.05,0,0,0,0,0,2,0,0,0,1.2852184,0,54.54,38.41,19.76,38.48,6.666666666666667,1,1,0,0,10,11,4,1,589.5,773506,753979.88,176855.84,0,0,0,1653.6469 +14158,17291,30827,-9,30825,30826,1,0,23,0,0,0,1,1,-9,0,3,7.6738172,7.561079,0,0,0,-908.66986,-9,2,2,2021,12,3,38,0,1,3,1,7.5288177,7.5288177,.05,.05,0,0,0,0,0,0,0,0,0,.64077801,0,49.44,54.26,-9,-9,6.666666666666667,1,1,0,0,2,11,3,1,381,-138879.69,-21459.73,0,0,2293.5356,0,122.63034 +14159,17292,30828,30829,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.8276119,7.6012621,39,4,-85.380806,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,4.8460784,7.7888346,57.33,53.46,57.16,56.15,10,1,1,0,0,8,12,4,1,1411.5,84313.602,45498.789,0,0,340.06268,755.27075,2813.7417 +14159,17292,30829,30828,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.1490326,7.9559765,0,9,-4,97.349304,0,3,3,2021,6,0,30,30,1,0,0,10.503656,10.503656,0,0,0,0,0,0,0,0,1,1,0,.93258297,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,1,1411.5,84313.602,45498.789,0,0,340.06268,755.27075,2813.7417 +14160,17293,30830,30831,-9,-9,1,0,38,1,1,0,1,1,-9,0,5,8.999361,8.9626713,0,2,-6,0,0,2,2,2021,7,0,35,40,1,0,0,23.054253,23.054253,.05,.05,0,0,0,0,0,0,1,1,0,6.9365211,0,54.69,57.47,57.06,57.76,10,4,2,0,0,9,8,5,1,1105,1748063.6,885437.63,845183.44,170119.25,0,0,5961.1396 +14160,17293,30831,30830,-9,-9,1,1,44,1,1,0,1,1,-9,0,5,8.9323692,8.8950939,0,2,6,0,0,-9,-9,2021,5,0,35,35,1,0,0,24.065544,24.065544,.05,.05,0,0,0,0,0,0,1,1,0,4.6672955,0,57.06,57.76,54.69,57.47,10,4,2,0,0,9,8,5,1,1105,1748063.6,885437.63,845183.44,170119.25,0,0,5961.1396 +14160,17293,30832,-9,30830,30831,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-901.43103,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,1105,1748063.6,885437.63,845183.44,170119.25,0,0,5961.1396 +14161,17294,30833,-9,30838,30839,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1023.6859,-9,1,2,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,58.52,-9,-9,5,1,1,0,0,2,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30834,-9,30838,30839,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1138.9456,-9,1,2,2021,10,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.68,49.95,-9,-9,10,1,1,0,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30835,-9,30838,30839,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-888.77997,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30836,-9,30838,30839,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1065.5281,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30837,-9,30838,30839,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1100.0295,-9,1,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30838,30839,-9,-9,1,0,39,0,2,0,1,1,-9,0,1,7.8881483,8.3702126,0,21,-5,103.83235,0,2,2,2021,24,10,23,19,1,10,0,17.827684,17.827684,.05,.05,0,0,0,0,0,2,1,1,0,0,0,49.35,31.45,52,55,5,1,1,0,0,9,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14161,17294,30839,30838,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,8.2487783,8.3929205,0,6,5,-55.198135,0,-9,-9,2021,9,0,40,42,1,1,0,11.936491,11.936491,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,49.35,31.45,7,1,1,0,0,1,9,4,0,631.85712,258403.38,66820.258,175774.61,32955.652,0,0,3882.7441 +14162,17295,30840,30841,-9,-9,1,0,48,0,0,0,2,2,-9,0,2,7.6986589,7.8384113,0,10,-2,101.9151,0,3,2,2021,25,12,35,40,1,12,0,8.1049709,8.1049709,.05,.05,0,0,0,0,0,0,0,0,0,.29809654,0,29.79,46.35,62.39,56.71,5,1,1,0,0,14,5,4,1,714.5,464069.81,186005.19,186833.67,0,421.13254,0,2648.6978 +14162,17295,30841,30840,-9,-9,1,1,50,0,0,0,3,3,-9,0,5,8.4411964,8.2176094,0,10,2,-42.517391,0,-9,-9,2021,2,1,60,60,1,1,0,8.1915369,8.1915369,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,29.79,46.35,6.666666666666667,1,1,0,0,14,5,4,1,714.5,464069.81,186005.19,186833.67,0,421.13254,0,2648.6978 +14163,17296,30842,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,4.633884,4.5057611,0,0,-1093.516,0,3,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2329516,4.566453,51.5,41.45,-9,-9,10,1,1,0,0,0,2,2,1,304,127167.14,-28743.463,0,0,0,0,1032.9127 +14164,17297,30843,30844,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,36,25,-135.74348,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.1434369,0,24.92,56.43,47.96,49.83,0,1,1,0,0,12,6,2,0,692,425370.63,219930.22,129876.03,0,0,0,1440.0254 +14164,17297,30844,30843,-9,-9,1,0,54,0,0,0,3,3,-9,0,3,6.9990973,7.171401,0,36,-25,114.87075,0,-9,-9,2021,12,0,16,16,1,0,0,7.4446464,7.4446464,0,0,0,0,0,0,0,0,1,0,1,0,0,47.96,49.83,24.92,56.43,5,4,2,0,0,14,6,2,0,692,425370.63,219930.22,129876.03,0,0,0,1440.0254 +14164,17298,30845,-9,30844,-9,1,0,22,0,0,0,2,2,-9,0,3,7.9978104,7.9608741,0,0,0,-971.50769,0,3,-9,2021,14,0,38,38,1,3,1,8.5449514,8.5449514,.05,.05,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,0,4,2,0,0,4,6,4,0,806,137057.02,26519.084,0,0,3360.7122,0,2025.3877 +14165,17299,30846,30847,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,0,0,8,-6,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,55.04,48.86,41.51,52.78,6.666666666666667,1,1,0,0,0,13,1,1,158.5,199580.33,0,210699.44,0,0,0,0 +14165,17299,30847,30846,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,8,6,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,3.1458397,0,0,0,0,0,0,41.51,52.78,55.04,48.86,1.666666666666667,1,1,0,0,12,13,1,1,158.5,199580.33,0,210699.44,0,0,0,0 +14165,17300,30848,-9,30846,30847,1,1,30,0,0,0,3,3,-9,0,3,7.1135459,6.9304028,0,0,0,-962.25537,0,2,3,2021,12,0,32,32,1,2,0,4.3557081,4.3557081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45,53,-9,-9,5,1,1,0,0,11,13,2,1,633,87039.469,32636.723,23453.299,0,0,0,778.03412 +14166,17301,30849,30851,-9,-9,1,1,61,0,0,0,1,1,-9,0,3,0,0,0,35,5,-19.523924,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.08,52.64,41.76,59.08,6.666666666666667,1,1,0,0,8,10,3,1,1192.3334,522942.59,250802.5,461787.31,66710.039,0,0,1244.5914 +14166,17301,30850,-9,30851,30849,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1122.8263,-9,1,1,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.02,65.59,-9,-9,6.666666666666667,1,1,0,0,1,10,3,1,1192.3334,522942.59,250802.5,461787.31,66710.039,0,0,1244.5914 +14166,17301,30851,30849,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.0027962,8.3283339,0,37,-5,142.46188,0,2,1,2021,12,1,54,51,1,1,0,6.1851635,6.1851635,0,0,0,0,0,0,0,0,1,1,0,0,0,41.76,59.08,53.08,52.64,6.666666666666667,1,1,0,0,8,10,3,1,1192.3334,522942.59,250802.5,461787.31,66710.039,0,0,1244.5914 +14167,17302,30852,30853,-9,-9,1,0,42,0,1,0,2,2,-9,0,3,8.3038464,8.3145132,0,10,0,-25.968769,0,-9,-9,2021,12,0,30,30,1,0,0,14.256419,14.256419,.05,.05,0,0,0,0,0,0,0,0,0,2.1784811,0,38.51,59.43,43.11,51.97,5,1,1,0,1,11,2,4,1,266.33334,646492.63,340989.06,192884.88,0,0,0,2405.251 +14167,17302,30853,30852,-9,-9,1,1,42,0,1,0,2,2,-9,0,3,8.0776997,7.9001598,0,10,0,107.86918,0,2,2,2021,5,0,38,42,1,0,0,10.313224,10.313224,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.11,51.97,38.51,59.43,8.333333333333334,1,1,0,0,11,2,4,1,266.33334,646492.63,340989.06,192884.88,0,0,0,2405.251 +14167,17302,30854,-9,30852,30853,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.3591,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,266.33334,646492.63,340989.06,192884.88,0,0,0,2405.251 +14168,17303,30855,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,5.5107813,5.3750219,0,0,-1030.6218,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.833689,5.2460723,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,10,9,2,1,842,-2014.2007,88511.984,0,0,0,0,1041.7249 +14169,17304,30856,-9,30857,30860,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1075.7985,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30857,30860,-9,-9,1,0,40,0,3,0,1,1,-9,0,5,6.2899866,6.6100669,0,16,-2,-28.099669,0,2,2,2021,14,4,25,0,1,4,0,2.1917806,2.1917806,.05,.05,0,0,0,0,0,0,1,1,0,8.8943224,0,37.4,66.64,52,55,8.333333333333334,1,1,0,1,1,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30858,-9,30857,30860,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-983.33704,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30859,-9,30857,30860,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-967.58972,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14169,17304,30860,30857,-9,-9,1,1,42,0,3,0,1,1,-9,0,4,9.2456951,9.3728113,0,6,2,66.728241,0,-9,-9,2021,9,0,55,70,1,1,0,27.216976,27.216976,.05,.05,0,0,0,0,0,0,1,1,0,4.5735192,0,52,55,37.4,66.64,7,1,1,0,0,1,2,4,1,578.59998,200091.89,225098.88,148955.77,80323.32,687.35699,4707.0737,6140.8335 +14170,17305,30861,30862,-9,-9,1,0,56,0,0,0,2,2,-9,0,5,0,0,0,24,1,61.013149,0,2,2,2021,11,0,0,29,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5825086,0,49.3,59.89,48.05,56.38,5,1,1,1,0,9,1,4,1,1489.5,939072.81,500079.94,523902.06,0,0,0,3056.6709 +14170,17305,30862,30861,-9,-9,1,1,55,0,0,0,1,1,-9,0,5,8.7081661,8.6140604,0,24,-1,9.6767015,0,2,1,2021,14,4,50,50,1,4,0,14.71501,14.71501,.05,.05,0,0,0,0,0,2,1,1,0,2.4044523,0,48.05,56.38,49.3,59.89,3.333333333333333,1,1,0,0,9,1,4,1,1489.5,939072.81,500079.94,523902.06,0,0,0,3056.6709 +14171,17306,30863,30864,-9,-9,1,1,67,0,0,0,2,2,-9,1,3,8.1207848,8.2710629,0,7,1,-64.490776,0,-9,-9,2021,10,1,40,40,1,1,0,10.97508,10.97508,.05,.05,0,1,0,0,0,0,1,1,0,3.8500741,0,55.77,39.23,57.16,56.15,6.666666666666667,1,1,0,0,8,10,4,1,764,-129169.3,46475.539,0,0,0,0,2547.5664 +14171,17306,30864,30863,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,6.9048123,7.7655759,6.2179484,7,-1,77.177452,0,3,3,2021,6,0,14,11,1,0,0,8.7022371,8.7022371,0,0,0,0,0,0,0,0,1,1,0,2.1242778,6.0716629,57.16,56.15,55.77,39.23,8.333333333333334,1,1,0,0,8,10,4,1,764,-129169.3,46475.539,0,0,0,0,2547.5664 +14172,17307,30865,-9,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,6.2117343,6.4847779,0,0,-969.4939,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6583014,6.5929608,60.24,30.88,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,324,353791.41,149996.61,188885.97,0,0,0,2110.4829 +14173,17308,30866,30867,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,7.7452388,7.6790085,0,39,-1,-.21120122,0,3,3,2021,11,0,30,30,1,0,0,9.2501354,9.2501354,0,0,0,0,0,0,0,0,0,0,0,0,0,49.5,54.11,50.03,52.62,8.333333333333334,1,1,0,0,9,2,4,1,1931,1290127.5,756957.88,234124.77,0,6254.0449,0,1732.6572 +14173,17308,30867,30866,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,7.9125786,8.0626221,39,1,110.32172,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.2519016,50.03,52.62,49.5,54.11,8.333333333333334,1,1,0,0,8,2,4,1,1931,1290127.5,756957.88,234124.77,0,6254.0449,0,1732.6572 +14173,17309,30868,-9,30866,30867,1,1,24,0,0,0,1,1,-9,0,4,8.0089397,8.0762548,0,0,0,-1027.4678,0,3,2,2021,6,0,35,39,1,0,1,9.6426067,9.6426067,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,4,1,534,57956.52,-30241.971,0,0,0,0,1465.9073 +14174,17310,30869,-9,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,9.0715494,9.0168123,0,0,0,-1171.2698,0,2,-9,2021,9,0,36,37,1,0,0,33.625084,33.625084,.05,.05,.05,0,0,0,0,0,0,0,0,2.6054413,0,35.93,55.1,-9,-9,6.666666666666667,2,3,0,0,9,8,5,1,611,108222.69,392313.97,0,0,0,0,2473.5662 +14175,17311,30870,-9,30871,30873,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.03113,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17311,30871,30873,-9,-9,1,0,39,0,2,0,3,3,-9,1,2,0,0,0,23,-8,-8.0259533,0,3,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,53.04,39.85,56.43,49.75,10,2,3,0,0,0,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17311,30872,-9,30871,30873,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-973.17023,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17311,30873,30871,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,7.2754245,7.3095098,0,9,8,94.542679,0,3,3,2021,4,0,24,48,1,0,0,8.0431271,8.0431271,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,56.43,49.75,53.04,39.85,10,2,3,0,0,5,8,2,0,695,202985.09,390.36728,160912.56,62286.695,0,0,958.77753 +14175,17312,30874,-9,30871,30873,1,1,19,0,2,0,2,2,1,0,2,5.9814386,6.1658115,0,0,0,-1013.5095,-9,3,2,2021,15,0,32,0,1,4,1,1.4683193,1.4683193,0,0,0,0,0,0,0,0,1,1,0,0,0,51.65,52.38,-9,-9,6.666666666666667,2,3,0,0,1,8,2,0,330,-9592.7139,0,0,0,0,-434.86136,864.16272 +14176,17313,30875,30876,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,4,-8,10.342441,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9130731,0,51,46,54,45,7,1,1,0,0,0,11,2,1,623,321882.84,234172.28,145552.63,0,0,0,2882.5425 +14176,17313,30876,30875,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,7.210803,7.2068467,4,8,41.259457,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,1.8735315,0,14.5,1,1,0,7.7974296,7.1590085,54,45,51,46,8,1,1,0,0,0,11,2,1,623,321882.84,234172.28,145552.63,0,0,0,2882.5425 +14177,17314,30877,30878,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.7262115,8.7002344,0,8,0,-30.645128,0,-9,-9,2021,6,0,40,37,1,0,0,19.613461,19.613461,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,57.17,50.61,8.333333333333334,1,1,0,0,10,12,5,1,643,1441727.5,1038858.3,519016.13,92672.008,0,0,3731.96 +14177,17314,30878,30877,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.8722668,7.8955593,0,8,0,118.84191,0,2,3,2021,6,0,35,35,1,0,0,10.338934,10.338934,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.17,50.61,56.94,49.53,8.333333333333334,1,1,0,0,9,12,5,1,643,1441727.5,1038858.3,519016.13,92672.008,0,0,3731.96 +14178,17315,30879,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1031.8621,0,3,3,2021,6,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.6,50.69,-9,-9,10,1,1,0,0,3,1,1,0,820,-52120.266,0,117051.78,0,0,0,554.80627 +14179,17316,30880,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,9.9807425,9.9537535,0,0,-942.52075,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,10.286789,9.8081627,52,48,-9,-9,8.333333333333334,1,1,0,0,6,2,5,1,1133,1441343.4,780242.44,477791.78,0,0,0,12630.022 +14180,17317,30881,-9,30883,-9,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-888.5603,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,1,1,-9,0,0,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14180,17317,30882,-9,30883,-9,1,1,12,0,3,1,3,0,-9,0,3,0,0,0,0,0,-930.89722,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14180,17317,30883,-9,-9,-9,1,0,37,0,3,0,1,1,-9,1,2,6.7973971,8.1680031,7.4808726,0,0,-974.6756,0,3,2,2021,27,10,18,0,1,10,0,5.9637752,5.9637752,0,0,0,0,0,0,0,42,1,1,0,7.7025695,0,12.59,58.19,-9,-9,3.333333333333333,1,1,0,0,2,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14180,17317,30884,-9,30883,-9,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-865.82886,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,803,-34471.043,0,0,0,85.333878,0,3005.835 +14181,17318,30885,-9,-9,-9,1,0,92,0,0,0,2,2,-9,0,3,0,0,0,0,0,-995.11865,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,13.674627,0,0,1,1,0,4.134449,0,53,44,-9,-9,8,1,1,0,0,0,9,2,1,627,-14731.171,0,0,0,0,0,577.24023 +14181,17319,30886,-9,30885,-9,1,1,61,0,0,0,1,1,-9,0,2,0,7.5450497,7.5026383,0,0,-1203.0807,0,2,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,8.217124,7.7138739,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,211,912266.75,394208.22,285346.25,0,0,0,2355.8005 +14182,17320,30887,30888,-9,-9,1,1,93,0,0,0,1,1,-9,0,3,0,8.114625,8.1888657,40,21,96.487022,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,3.6977887,0,0,1,1,0,3.8401589,8.0688038,56,44,62.39,56.71,8,1,1,0,0,0,7,4,1,1174,3723155,682288.69,1113897.9,0,0,0,3654.5281 +14182,17320,30888,30887,-9,-9,1,0,72,0,0,0,1,1,-9,0,5,0,8.059804,8.5557585,40,-21,3.8527968,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4123659,8.107502,62.39,56.71,56,44,8.333333333333334,1,1,0,0,0,7,4,1,1174,3723155,682288.69,1113897.9,0,0,0,3654.5281 +14183,17321,30889,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,2,0,7.5321665,7.6828046,0,0,-1019.7405,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1934724,7.5533609,40.37,37.25,-9,-9,5,1,1,0,0,3,7,3,1,2327,1090632.6,772059.31,213716.08,0,249.39188,2042.8683,912.18384 +14184,17322,30890,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3428335,8.9605341,6.4512,9,0,36.197029,0,2,2,2021,13,1,35,35,1,1,0,15.545828,15.545828,.05,.05,0,0,0,0,0,0,1,1,0,6.3552966,0,30.47,60.56,51.39,59.18,8.333333333333334,1,1,0,0,11,5,5,0,848,-59464.738,57951.129,0,0,0,0,1894.0437 +14184,17323,30891,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,8.3462429,8.1655798,0,9,0,-87.785225,0,-9,-9,2021,12,0,40,40,1,0,0,13.453013,13.453013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.39,59.18,30.47,60.56,8.333333333333334,1,1,0,0,10,5,5,0,92,-32885.344,17001.318,0,0,0,0,1581.3317 +14185,17324,30892,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,6.3403549,6.7091665,0,0,-956.84906,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.391593,39.64,38.88,-9,-9,10,1,1,0,0,0,1,2,1,745,497508.38,224297.14,195928.95,0,0,0,1403.3273 +14186,17325,30893,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,4,0,5.427237,5.6112838,0,0,-977.70905,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,5.6621609,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,781,324187.72,94258.695,62280.18,0,0,0,1437.032 +14187,17326,30894,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,7.9672151,7.8842211,0,0,-896.66699,0,3,3,2021,11,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0610709,7.621675,49.8,56.68,-9,-9,6.666666666666667,3,4,0,0,13,6,3,1,1289,633826.06,334571.66,195082.25,0,0,0,1979.7697 +14188,17327,30895,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,2,6.1523542,6.0698342,0,0,0,-1001.6603,0,3,3,2021,17,6,30,25,1,6,0,1.8657714,1.8657714,0,0,0,0,0,0,0,0,1,1,0,0,0,38.81,54.3,-9,-9,6.666666666666667,1,1,0,1,6,9,2,0,263,-12569.98,88293.211,0,0,0,0,994.01379 +14189,17328,30896,-9,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,6.092907,5.9072151,0,0,-965.63446,0,-9,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8725204,52,54.51,-9,-9,8.333333333333334,1,1,0,0,7,6,2,1,541,280272.13,142919.13,59420.555,0,0,0,1760.1259 +14190,17329,30897,30898,-9,-9,1,1,37,0,2,0,2,2,-9,0,3,8.1677628,8.0714159,0,7,2,-112.81124,0,-9,-9,2021,13,2,40,40,1,2,0,10.859065,10.859065,.05,.05,0,0,0,0,0,0,1,1,0,.66312641,0,46.19,42.17,32.71,55.43,3.333333333333333,1,1,0,0,11,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14190,17329,30898,30897,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,8.2340336,8.2242041,0,7,-2,62.833416,-9,1,1,2021,16,4,28,0,1,4,0,16.287922,16.287922,.05,.05,0,0,0,0,0,0,1,1,0,2.0382335,0,32.71,55.43,46.19,42.17,6.666666666666667,1,1,0,1,11,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14190,17329,30899,-9,30898,-9,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1006.5776,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14190,17329,30900,-9,30898,30897,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-946.60406,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,11,4,1,574.25,52225.457,62912.586,146570.06,96494,4785.6533,1576.9932,2779.0408 +14191,17330,30901,30902,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.4299707,7.8310852,16,-4,49.608467,0,2,2,2021,10,0,0,16,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2524657,7.4100938,54.2,57.49,37.02,37.37,8.333333333333334,1,1,0,0,8,10,4,1,386,1213474.4,620048.63,367012.28,0,0,0,2945.155 +14191,17330,30902,30901,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,7.6848845,7.7336826,16,4,-8.3964996,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.7342362,8.0230999,37.02,37.37,54.2,57.49,3.333333333333333,1,1,0,0,6,10,4,1,386,1213474.4,620048.63,367012.28,0,0,0,2945.155 +14192,17331,30903,30904,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,7.7888374,7.8744106,0,4,-4,-3.6553397,0,-9,-9,2021,13,2,20,18,1,2,0,12.391062,12.391062,.05,.05,0,0,0,0,0,0,1,1,0,.84605193,0,55.76,52.64,57.06,57.76,8.333333333333334,2,3,0,0,7,2,5,1,1269,464861.25,352280.34,97940.656,43322.414,15671.918,0,2628.0454 +14192,17331,30904,30903,-9,-9,1,1,40,0,0,0,1,1,-9,0,5,8.2397852,8.4303226,0,4,4,175.31393,0,2,2,2021,10,0,37,37,1,0,0,13.980918,13.980918,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,55.76,52.64,8.333333333333334,2,3,0,0,11,2,5,1,1269,464861.25,352280.34,97940.656,43322.414,15671.918,0,2628.0454 +14193,17332,30905,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,3,8.6311455,8.3554621,0,0,0,-1059.2465,0,-9,-9,2021,14,2,40,50,1,2,0,10.533957,10.533957,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.58,50.95,-9,-9,3.333333333333333,1,1,0,0,9,5,4,0,879,43869.707,55238.094,0,0,0,0,2133.8792 +14194,17333,30906,-9,30907,-9,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1016.1431,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0190625,0,62.39,56.71,-9,-9,8.333333333333334,3,4,0,0,1,6,3,1,598,186972.84,109917.98,247947.22,92717.758,0,-536.61035,1263.0657 +14194,17333,30907,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.1332569,8.0392008,0,0,0,-1062.7097,0,3,3,2021,6,0,37,25,1,0,0,11.109803,11.109803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,3,4,0,0,12,6,3,1,598,186972.84,109917.98,247947.22,92717.758,0,-536.61035,1263.0657 +14195,17334,30908,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1064.2219,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3596106,0,49,48,-9,-9,1.666666666666667,1,1,0,0,6,5,1,1,364,139149.94,0,0,0,0,0,970.38672 +14196,17335,30909,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,7.8292942,9.177165,8.7039051,0,0,-925.48029,0,-9,-9,2021,12,1,39,38,1,1,0,6.4039683,6.4039683,0,0,0,0,0,0,0,0,0,0,0,8.881279,8.5897951,52.01,48.98,-9,-9,8.333333333333334,1,1,0,0,9,7,5,0,504,-9291.9775,0,0,0,0,-725.34344,5347.1777 +14197,17336,30910,30911,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.5899148,6.4830761,11,0,8.8170309,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4218941,6.7998886,52.34,56.95,61.68,34.04,8.333333333333334,1,1,0,0,8,5,3,1,621,632829.81,471381.75,119610.75,0,236.5007,560.85211,3105.3896 +14197,17336,30911,30910,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,7.6646004,8.13381,50,0,115.04106,0,3,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,6.4933119,7.7032118,61.68,34.04,52.34,56.95,8.333333333333334,1,1,0,0,10,5,3,1,621,632829.81,471381.75,119610.75,0,236.5007,560.85211,3105.3896 +14198,17337,30912,-9,30914,30915,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.3792,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30913,-9,30914,30915,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1089.1333,-9,2,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30914,30915,-9,-9,1,0,31,1,4,0,2,2,-9,0,4,7.0993981,7.2179279,0,1,-6,129.32231,0,2,2,2021,12,0,24,0,1,0,0,9.2500429,9.2500429,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,51,57,3.333333333333333,1,1,0,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30915,30914,-9,-9,1,1,37,1,4,0,3,3,-9,0,4,0,0,0,1,6,34.576641,-9,-9,-9,2021,10,0,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,57,45.91,59.89,7,1,1,0,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14198,17337,30916,-9,30914,30915,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.7152,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,846.40002,180807.45,196.53671,188125.52,26132.27,0,0,2476.8076 +14199,17338,30917,30918,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.1095319,5.6362357,48,1,-135.88304,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8292751,53,47,51,46,8,1,1,0,0,0,11,2,1,1760,199578.03,37279.238,172436.84,0,0,0,2669.5261 +14199,17338,30918,30917,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,0,0,47,-1,-97.069008,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,.32060689,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,11,2,1,1760,199578.03,37279.238,172436.84,0,0,0,2669.5261 +14200,17339,30919,-9,-9,-9,1,0,95,0,0,0,2,2,-9,0,3,0,7.1835432,7.0669446,0,0,-1098.4846,-9,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4124317,6.7816687,54,43,-9,-9,8,1,1,0,0,0,6,2,0,2341,122126.47,25101.889,0,0,0,0,1945.1075 +14201,17340,30920,30921,-9,-9,1,0,65,0,0,0,1,1,-9,0,1,0,7.3773899,7.4606881,44,-2,-35.898056,0,2,2,2021,19,7,0,0,4,7,0,0,0,0,0,0,1,0,13.475002,0,0,1,1,0,0,7.3209906,40.95,24.93,47.2,58.1,3.333333333333333,1,1,0,0,4,1,4,1,3047,3108000.5,937414.38,312531.69,0,0,0,3059.0386 +14201,17340,30921,30920,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,7.8795857,7.6054902,44,2,-.095416568,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.6029639,47.2,58.1,40.95,24.93,8.333333333333334,1,1,0,0,7,1,4,1,3047,3108000.5,937414.38,312531.69,0,0,0,3059.0386 +14202,17341,30922,-9,30923,30924,1,0,35,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1134.2032,0,2,3,2021,29,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,-9,-9,0,1,1,0,0,1,7,1,1,1072,-148964.56,0,0,0,0,0,495.82068 +14202,17342,30923,30924,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,8,6,2.4142005,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.78,34.44,46.55,58.3,6.666666666666667,1,1,0,0,9,7,3,1,9340,467221.88,121991.69,240454.53,0,0,0,1740.1199 +14202,17342,30924,30923,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,8.0338011,7.8474102,0,8,-6,49.342579,0,-9,-9,2021,10,0,40,40,1,0,0,6.8673959,6.8673959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.55,58.3,54.78,34.44,8.333333333333334,1,1,0,1,9,7,3,1,9340,467221.88,121991.69,240454.53,0,0,0,1740.1199 +14203,17343,30925,-9,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,8.531251,8.5353975,0,0,-1056.1517,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,2.2695882,0,24.117453,0,1,1,0,5.3958135,8.4841318,52.76,47.46,-9,-9,8.333333333333334,1,1,0,0,0,11,5,1,193,1367744,413125.03,0,0,0,0,2123.3936 +14204,17344,30926,30927,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,0,0,10,-5,-105.89091,0,3,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.7704477,0,42.5,30.78,57.34,42.72,3.333333333333333,1,1,0,0,2,7,2,1,1196.5,984672.31,224294.17,418448.66,0,0,0,3078.4463 +14204,17344,30927,30926,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,4.8261909,5.0647454,10,5,-10.912557,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.8606095,5.196034,57.34,42.72,42.5,30.78,8.333333333333334,1,1,0,0,5,7,2,1,1196.5,984672.31,224294.17,418448.66,0,0,0,3078.4463 +14205,17345,30928,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,7.2158799,7.8149152,6.1591759,0,0,-1012.0582,0,3,3,2021,6,0,23,22,1,0,0,9.524313,9.524313,.05,.05,0,0,0,0,0,0,0,0,0,0,5.8665867,52.94,53.98,-9,-9,6.666666666666667,1,1,0,0,13,13,3,0,443,196639.7,27870.625,0,0,0,0,797.05927 +14206,17346,30929,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,0,0,0,0,-931.55597,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,28.42,55.96,-9,-9,3.333333333333333,1,1,0,0,5,13,1,1,2247,243527.97,0,0,0,0,0,0 +14207,17347,30930,30931,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.1241407,7.0776339,38,8,-5.4327364,0,2,1,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.754703,7.4608941,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,1,2,4,1,886.5,742235.31,590461.06,120154,0,13978.113,0,2598.593 +14207,17347,30931,30930,-9,-9,1,0,59,0,0,0,3,3,-9,0,4,8.2498074,7.792069,0,37,-8,31.55131,0,3,2,2021,6,0,38,35,1,0,0,10.456903,10.456903,0,0,0,0,0,0,0,0,1,1,0,5.6538177,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,9,2,4,1,886.5,742235.31,590461.06,120154,0,13978.113,0,2598.593 +14208,17348,30932,30933,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,9.2718239,8.8300381,0,8,14,23.59923,0,2,1,2021,3,0,38,60,1,0,0,24.861614,24.861614,0,0,0,0,0,0,0,0,1,0,1,7.7933292,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,12,9,5,1,2098.5,106254.04,155829.58,0,0,0,691.15039,5762.6563 +14208,17348,30933,30932,-9,-9,1,1,38,0,0,0,2,2,-9,0,4,7.9267941,8.4238987,0,8,-14,37.848736,0,-9,-9,2021,9,1,38,41,1,1,0,12.188784,12.188784,0,0,0,0,0,0,0,0,1,0,1,0,0,51.83,57.2,51.83,57.2,8.333333333333334,2,3,0,0,9,9,5,1,2098.5,106254.04,155829.58,0,0,0,691.15039,5762.6563 +14208,17349,30934,-9,30932,30933,1,0,20,0,0,0,2,2,-9,0,2,0,0,0,0,0,-955.396,0,1,2,2021,30,12,0,38,3,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,16.31,59.27,-9,-9,3.333333333333333,1,1,1,0,2,9,1,1,730,82808.477,0,0,0,0,0,1113.2932 +14209,17350,30935,-9,-9,-9,1,0,37,0,0,0,2,2,-9,0,5,8.6571484,8.6832047,0,0,0,-895.88837,0,-9,-9,2021,11,1,45,47,1,1,0,14.741297,14.741297,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.42,60.53,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,2284,-212740.42,129876.07,169996.73,140493.5,2663.7393,0,2281.9026 +14210,17351,30936,-9,30937,30938,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1161.2706,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,4,5,-9,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30937,30938,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,10,-13,0,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,57,51,56,7,4,5,0,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30938,30937,-9,-9,1,1,45,0,3,0,3,3,-9,0,4,0,0,0,15,13,0,0,3,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,47,57,7,4,5,0,0,12,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30939,-9,30937,30938,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-906.44012,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,4,5,-9,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14210,17351,30940,-9,30937,30938,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1036.1783,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,4,5,-9,0,0,6,1,0,1211.4,74894.156,0,0,0,0,0,930.46393 +14211,17352,30941,30942,-9,-9,1,1,66,0,1,0,1,1,-9,0,3,0,8.1221123,8.2613707,11,20,20.66387,0,2,2,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,4.6167583,8.5397301,43.65,58.28,46.61,56.93,6.666666666666667,1,1,0,0,8,8,3,1,1016.6667,335401.19,354513.25,0,0,0,5007.9072,4383.6138 +14211,17352,30942,30941,-9,-9,1,0,46,0,1,0,1,1,-9,0,3,0,0,0,11,-20,27.052099,0,3,3,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.1961975,0,46.61,56.93,43.65,58.28,6.666666666666667,2,3,0,0,2,8,3,1,1016.6667,335401.19,354513.25,0,0,0,5007.9072,4383.6138 +14211,17352,30943,-9,30942,30941,1,0,16,0,1,1,2,0,-9,0,2,0,0,0,0,0,-1062.812,-9,-9,1,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.06,49.99,-9,-9,3.333333333333333,4,2,0,0,0,8,3,1,1016.6667,335401.19,354513.25,0,0,0,5007.9072,4383.6138 +14211,17353,30944,-9,30942,30941,1,1,20,0,1,0,2,2,-9,0,5,0,0,0,0,0,-877.22693,1,-9,1,2021,6,0,0,34,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.565433,0,56.47,59.4,-9,-9,8.333333333333334,4,2,0,0,1,8,2,1,497,0,0,0,0,0,0,241.54175 +14212,17354,30945,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,5.7349067,6.1922417,0,0,-972.35529,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1905732,4.9225497,52.39,37.78,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,1983,-36335.668,20910.43,0,0,0,0,-241.49741 +14213,17355,30946,30947,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.008544,6.469213,30,6,-88.083549,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8955736,6.7531857,53.22,48.44,57.16,56.15,8.333333333333334,1,1,0,0,8,10,3,1,605,1204296.9,135952.3,330692.44,0,0,0,1819.4681 +14213,17355,30947,30946,-9,-9,1,0,66,0,0,0,3,3,-9,0,4,6.4278927,6.6216598,5.5656433,35,-6,84.148842,0,3,3,2021,10,0,10,0,1,0,0,7.2892976,7.2892976,0,0,0,0,0,0,0,0,1,1,0,0,5.114356,57.16,56.15,53.22,48.44,8.333333333333334,1,1,0,0,11,10,3,1,605,1204296.9,135952.3,330692.44,0,0,0,1819.4681 +14214,17356,30948,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,7.9083266,7.7146077,0,0,0,-1007.6964,0,3,3,2021,7,0,55,55,1,0,0,5.9310908,5.9310908,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,380,-40936.125,-76957.461,0,0,0,0,1362.6676 +14215,17357,30949,30950,-9,-9,1,1,34,0,2,0,1,1,-9,0,4,9.4538584,9.3237114,0,8,-8,-32.801769,-9,2,1,2021,10,0,78,0,1,0,0,16.480406,16.480406,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,54.2,57.49,1.666666666666667,4,2,0,0,7,9,5,1,1151.6666,63527.82,60250.59,358798.69,258932.08,11296.033,0,5103.6353 +14215,17357,30950,30949,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,7.1464081,7.393146,0,7,8,-57.65012,-9,3,2,2021,14,1,30,0,1,1,0,5.856708,5.856708,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52.23,55.6,10,2,3,0,0,5,9,5,1,1151.6666,63527.82,60250.59,358798.69,258932.08,11296.033,0,5103.6353 +14215,17357,30951,-9,30950,30949,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.55933,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,1151.6666,63527.82,60250.59,358798.69,258932.08,11296.033,0,5103.6353 +14216,17358,30952,30953,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,7.2097578,6.7594299,0,2,6,-117.95338,0,3,3,2021,10,0,50,60,1,0,0,2.6677043,2.6677043,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,52,54.51,6.666666666666667,1,1,0,0,7,13,2,1,465,444332.19,153832.86,118868.38,0,439.45203,0,370.74811 +14216,17358,30953,30952,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,0,0,0,2,-6,135.87872,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,52.82,53.97,8.333333333333334,1,1,0,0,0,13,2,1,465,444332.19,153832.86,118868.38,0,439.45203,0,370.74811 +14216,17359,30954,-9,30953,30952,1,0,29,0,0,0,1,1,-9,0,4,8.1989861,8.2418957,0,0,0,-1003.5131,0,2,3,2021,11,0,37,60,1,2,1,9.0915613,9.0915613,0,0,0,0,0,0,0,0,0,0,0,0,0,48,57,-9,-9,7,1,1,0,0,1,13,4,1,3233,-61627.184,0,0,0,0,0,1133.6034 +14216,17360,30955,-9,30953,30952,1,1,27,0,0,0,2,2,-9,0,4,7.615911,7.5455856,0,0,0,-1112.6494,0,2,3,2021,10,0,50,70,1,1,1,4.3315716,4.3315716,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,74,-15818.713,0,0,0,0,0,2.194572 +14216,17361,30956,-9,30953,30952,1,1,25,0,0,0,3,3,-9,0,4,7.0417457,6.4824848,0,0,0,-892.59064,0,2,3,2021,10,0,16,16,1,1,1,5.4848566,5.4848566,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,2,1,316,81597.664,0,0,0,0,0,224.16515 +14217,17362,30957,30958,-9,-9,1,1,68,0,0,0,2,2,-9,0,4,8.6457176,8.2559423,0,12,2,80.038208,0,-9,-9,2021,7,0,42,42,1,0,0,13.215843,13.215843,.05,.05,0,1,0,0,0,0,1,1,0,4.8146081,0,56.86,50.75,52.05,55.95,8.333333333333334,1,1,0,0,13,13,4,1,526,425196.13,185097.19,194800.14,0,0,0,4334.229 +14217,17362,30958,30957,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.4279437,7.3520865,44,-2,69.371574,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4702263,7.5789089,52.05,55.95,56.86,50.75,8.333333333333334,1,1,0,0,9,13,4,1,526,425196.13,185097.19,194800.14,0,0,0,4334.229 +14217,17363,30959,-9,30958,30957,1,0,28,0,0,0,1,1,-9,0,3,8.0940943,8.2059755,0,0,0,-1000.1477,0,2,2,2021,6,0,35,35,1,0,0,12.245195,12.245195,.05,.05,0,0,0,0,0,0,1,1,0,2.0163841,0,57.9,51.84,-9,-9,8.333333333333334,1,1,0,0,12,13,4,1,394,529082.88,17596.615,249795.25,0,0,0,2419.1177 +14218,17364,30960,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1048.663,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,44.98,28.34,-9,-9,8.333333333333334,1,1,0,0,0,2,1,1,2754,-113295.17,0,0,0,2099.1816,0,1995.6296 +14219,17365,30961,-9,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1091.8499,0,-9,-9,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.13,28.96,-9,-9,1.666666666666667,1,1,0,1,6,6,1,0,151,201730.23,0,98875.438,0,0,0,1196.3762 +14219,17366,30962,-9,30961,-9,1,1,32,0,0,0,2,2,-9,1,1,0,0,0,0,0,-994.11914,0,3,-9,2021,14,2,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.28,28.02,-9,-9,5,1,1,0,1,4,6,1,0,773,113530.14,32493.531,0,0,0,0,1206.3157 +14220,17367,30963,30964,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,6.466382,6.8212829,0,8,1,-97.775116,0,2,2,2021,15,5,16,12,1,5,0,6.6660805,6.6660805,0,0,0,0,0,0,0,0,1,1,0,0,0,41.12,43.31,43.25,49.27,8.333333333333334,1,1,0,0,6,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14220,17367,30964,30963,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,9.4400473,9.3807974,0,8,-1,-27.916986,0,-9,-9,2021,17,5,45,46,1,5,0,32.967621,32.967621,.05,.05,0,0,0,0,0,0,1,1,0,6.2227578,0,43.25,49.27,41.12,43.31,6.666666666666667,1,1,0,0,10,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14220,17367,30965,-9,30963,30964,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.79724,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14220,17367,30966,-9,30963,30964,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1057.5121,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,0,431.25,73398.648,-40206.094,243843.06,188686.67,0,4213.3608,5054.6538 +14221,17368,30967,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1132.0554,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9814785,0,57.16,56.15,-9,-9,10,1,1,0,0,3,5,1,1,1527,158013.94,0,0,0,0,0,799.5097 +14222,17369,30968,-9,30970,-9,1,1,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-998.35535,1,1,-9,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6.666666666666667,1,1,0,0,0,7,4,1,1077,617995.19,38170.977,657252.25,219740.28,0,2641.1672,3612.8066 +14222,17369,30969,-9,30970,-9,1,0,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1010.7397,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,7,4,1,1077,617995.19,38170.977,657252.25,219740.28,0,2641.1672,3612.8066 +14222,17369,30970,-9,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.870903,8.9978628,0,0,0,-1030.7988,0,1,2,2021,10,0,47,48,1,0,0,19.441442,19.441442,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,-9,-9,6.666666666666667,1,1,0,0,14,7,4,1,1077,617995.19,38170.977,657252.25,219740.28,0,2641.1672,3612.8066 +14223,17370,30971,-9,30972,30973,1,0,34,2,2,0,1,1,-9,0,4,6.9792595,6.8427067,0,0,0,-998.6684,0,3,3,2021,10,3,40,54,1,3,1,4.1689878,4.1689878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.58,49.75,-9,-9,10,2,3,0,0,9,8,3,1,107,225121.69,-47478.633,0,0,0,0,619.28027 +14223,17371,30972,30973,-9,-9,1,0,60,2,2,0,3,3,-9,0,2,0,0,0,7,-12,98.603912,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.28,29.25,50.33,32.15,8.333333333333334,2,3,0,0,0,8,2,1,755.5,681513.69,412205.19,286593.69,0,0,0,1041.3289 +14223,17371,30973,30972,-9,-9,1,1,72,2,2,0,3,3,-9,0,3,0,7.4893103,7.2632508,7,12,85.437149,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,3.4099047,0,0,1,1,0,0,7.1617031,50.33,32.15,48.28,29.25,8.333333333333334,2,3,0,0,0,8,2,1,755.5,681513.69,412205.19,286593.69,0,0,0,1041.3289 +14223,17372,30974,-9,30977,30975,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-991.70483,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17372,30975,30977,30972,30973,1,1,35,2,2,0,2,2,-9,0,4,7.8514004,7.6689901,0,5,8,-198.4593,0,3,3,2021,5,0,40,48,1,0,0,8.7627144,8.7627144,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.03,51.4,49.49,59.98,3.333333333333333,2,3,0,0,5,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17372,30976,-9,30977,30975,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.7556,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17372,30977,30975,-9,-9,1,0,27,2,2,0,2,2,-9,0,5,0,0,0,5,-8,30.642845,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.49,59.98,35.03,51.4,8.333333333333334,2,3,0,0,0,8,3,1,749,56870.984,-17036.912,165222.14,60875.121,78959.984,0,1306.4438 +14223,17373,30978,-9,30972,30973,1,1,33,2,2,0,2,2,-9,0,4,7.796741,7.8142691,0,0,0,-935.23798,0,3,3,2021,6,0,40,11,1,0,1,6.4773173,6.4773173,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,10,2,3,0,0,9,8,3,1,1642,118241.67,29150.225,0,0,0,0,1092.8984 +14224,17374,30979,30980,-9,-9,1,1,78,0,0,0,2,2,-9,0,1,0,7.9519773,8.0690823,59,-1,-188.04645,0,2,2,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,21.235304,0,0,1,1,0,0,8.6142254,15.04,35.59,32.77,36.55,0,1,1,0,0,0,10,5,1,385,651388,210441.47,307847.13,0,8454.3828,0,4907.9448 +14224,17374,30980,30979,-9,-9,1,0,79,0,0,0,2,2,-9,0,2,0,8.0910769,8.3141308,59,1,-13.225443,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.3453441,8.3927011,32.77,36.55,15.04,35.59,3.333333333333333,1,1,0,0,0,10,5,1,385,651388,210441.47,307847.13,0,8454.3828,0,4907.9448 +14225,17375,30981,30982,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.5495663,8.3283272,8,-1,-91.473999,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.8066878,8.478157,48.13,40.19,46.54,47.42,6.666666666666667,1,1,0,0,8,6,4,1,898.5,1885397.5,1282343.4,206033.69,0,0,1258.7526,4802.7891 +14225,17375,30982,30981,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,7.0791717,7.0374212,5,1,60.018105,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9176393,46.54,47.42,48.13,40.19,10,1,1,0,0,8,6,4,1,898.5,1885397.5,1282343.4,206033.69,0,0,1258.7526,4802.7891 +14226,17376,30983,30984,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.6591129,5.9340553,12,3,-109.88537,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.78142148,5.8681059,43.83,43.24,45.89,53.15,8.333333333333334,1,1,0,0,9,4,4,1,658.5,2484643,723773.44,494983.94,0,0,0,2357.7434 +14226,17376,30984,30983,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.4124947,8.4990826,6.7372637,12,-3,-15.494711,0,2,1,2021,12,0,37,37,1,0,0,13.949491,13.949491,0,0,0,0,0,0,0,2,0,0,0,.89550328,7.2486429,45.89,53.15,43.83,43.24,8.333333333333334,1,1,0,0,13,4,4,1,658.5,2484643,723773.44,494983.94,0,0,0,2357.7434 +14227,17377,30985,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,1,7.7530961,7.6898456,0,0,0,-1020.723,0,3,3,2021,20,6,16,0,1,6,0,17.999949,17.999949,0,0,0,0,0,0,0,0,1,1,0,0,0,40.99,34.43,-9,-9,1.666666666666667,3,4,0,0,5,12,3,0,5449,-96484.07,0,0,0,3855.7456,0,932.00818 +14228,17378,30986,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,2,0,6.8249865,6.5724707,0,0,-941.15271,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7193441,47.63,51.62,-9,-9,8.333333333333334,1,1,0,0,0,8,2,0,208,867980.63,157261.45,533372.94,0,0,0,776.51074 +14229,17379,30987,30988,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,6.189683,5.9146824,11,3,-91.31501,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0188422,5.8359714,39.61,50.97,33.25,49.63,8.333333333333334,1,1,0,0,11,12,2,1,242,927896,492975.38,188706.63,0,0,11019.07,2115.7021 +14229,17379,30988,30987,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,6.9022861,7.2738962,11,-3,-63.708992,0,2,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0775118,7.3420682,33.25,49.63,39.61,50.97,8.333333333333334,1,1,0,0,0,12,2,1,242,927896,492975.38,188706.63,0,0,11019.07,2115.7021 +14230,17380,30989,30990,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,53,0,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.87,37.67,45.5,33.16,10,1,1,0,0,0,5,1,1,1017,171659.81,0,86623.227,0,0,0,169.15588 +14230,17380,30990,30989,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,0,0,53,0,0,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.5,33.16,59.87,37.67,8.333333333333334,1,1,0,0,0,5,1,1,1017,171659.81,0,86623.227,0,0,0,169.15588 +14231,17381,30991,30992,-9,-9,1,1,81,0,0,0,1,1,-9,0,3,0,8.7330837,8.7499228,58,5,6.4289875,0,3,3,2021,10,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4763985,9.0746727,55.36,51.57,48.28,60.18,8.333333333333334,1,1,0,0,6,7,5,1,357,2197283,-32591.178,0,0,0,0,6157.6338 +14231,17381,30992,30991,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.4995427,7.68786,57,-5,45.430748,0,2,2,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0028796,7.3974805,48.28,60.18,55.36,51.57,8.333333333333334,1,1,0,0,0,7,5,1,357,2197283,-32591.178,0,0,0,0,6157.6338 +14232,17382,30993,30994,-9,-9,1,1,54,0,2,0,2,2,-9,0,2,8.2700911,7.7917552,0,8,8,-30.611963,0,-9,-9,2021,19,5,36,40,1,5,0,13.205651,13.205651,.05,.05,0,0,0,0,0,0,1,1,0,7.0917392,0,30.05,55.26,61.68,47.24,3.333333333333333,1,1,0,1,10,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14232,17382,30994,30993,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.4100814,7.3391795,0,8,-8,-56.136143,0,3,3,2021,6,0,28,28,1,0,0,7.0168433,7.0168433,.05,.05,0,0,0,0,0,2,1,1,0,6.6235681,0,61.68,47.24,30.05,55.26,6.666666666666667,1,1,0,0,10,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14232,17382,30995,-9,30994,30993,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-963.03204,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14232,17382,30996,-9,30994,30993,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-892.24133,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,541,373715.94,221672.39,179449.95,47925.266,5601.2012,0,3190.7502 +14233,17383,30997,30998,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.1415882,8.0095196,50,5,57.757374,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9455214,59.55,40.52,51.2,41.78,6.666666666666667,1,1,0,0,12,7,3,0,598,975189.38,181296.23,791195.5,0,0,0,2843.5444 +14233,17383,30998,30997,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,5.1268277,5.27039,50,-5,-43.16201,-9,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1089463,51.2,41.78,59.55,40.52,5,1,1,0,0,1,7,3,0,598,975189.38,181296.23,791195.5,0,0,0,2843.5444 +14234,17384,30999,31000,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.2787867,6.4501462,1,2,12.465314,-9,-9,-9,2021,28,11,0,0,4,11,0,0,0,0,0,0,1,4.6558471,2.1375129,47.699707,120,1,1,0,2.5126245,6.1324005,35.45,24.41,19.01,22.64,0,1,1,0,0,0,9,2,1,400,418703.97,25336.275,174902.52,0,0,0,2146.938 +14234,17384,31000,30999,-9,-9,1,0,77,0,0,0,2,2,-9,0,1,0,4.4118638,3.9810982,1,-2,-72.429993,-9,-9,-9,2021,33,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.084435,19.01,22.64,35.45,24.41,0,1,1,0,1,0,9,2,1,400,418703.97,25336.275,174902.52,0,0,0,2146.938 +14235,17385,31001,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,7.9195743,7.8046651,0,0,-946.16577,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4103371,7.7598786,47.83,52.32,-9,-9,8.333333333333334,1,1,0,0,3,2,4,1,1330,256406.83,159022.39,0,0,0,0,3139.2163 +14236,17386,31002,-9,-9,-9,1,1,29,0,0,0,2,2,-9,0,4,8.7295971,8.7492924,0,0,0,-893.59326,0,-9,-9,2021,6,0,38,35,1,0,0,17.700748,17.700748,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,5,1,615,-1886.0856,80402,104286.52,121555.84,0,0,2077.1516 +14237,17387,31003,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,8.472743,8.6606836,0,0,0,-1039.9873,0,2,2,2021,9,0,40,44,1,0,1,13.442019,13.442019,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,5,1,5,1,106,-62063.938,-12244.876,121849.89,117903.2,0,0,2165.5149 +14238,17388,31004,31005,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,0,0,46,3,0,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,44.3,29.89,48.89,40.26,6.666666666666667,2,3,0,1,0,6,1,1,319.5,-100812.67,0,0,0,0,0,815.36481 +14238,17388,31005,31004,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,46,-3,0,0,3,3,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,48.89,40.26,44.3,29.89,5,2,3,0,0,0,6,1,1,319.5,-100812.67,0,0,0,0,0,815.36481 +14239,17389,31006,31007,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.0760584,7.2652097,8,-1,-19.931341,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8699732,6.8302426,57.16,56.15,59.43,58.05,10,1,1,0,0,0,11,4,1,709,1519578.6,748209.06,449289.38,0,0,0,2645.2405 +14239,17389,31007,31006,-9,-9,1,1,77,0,0,0,2,2,-9,0,5,0,8.3327045,8.0950594,8,1,-82.238182,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.7182531,8.2220583,59.43,58.05,57.16,56.15,10,1,1,0,0,0,11,4,1,709,1519578.6,748209.06,449289.38,0,0,0,2645.2405 +14240,17390,31008,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,8.3994341,8.0177193,0,0,0,-881.18353,-9,2,2,2021,11,1,35,0,1,1,0,13.014041,13.014041,.05,.05,0,0,0,0,0,0,0,0,0,2.4678082,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,5,4,1,461,1132120.5,866423.75,206135.05,0,-1107.4697,991.52203,1053.5848 +14241,17391,31009,31010,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,0,0,11,0,-103.69423,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.7008486,0,41.36,34.01,56.07,23.03,6.666666666666667,1,1,0,0,0,4,2,1,330.5,776471.63,324317.34,164604.45,0,0,0,1590.114 +14241,17391,31010,31009,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,6.7474356,7.002233,11,0,42.941391,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,90.868355,0,0,1,1,0,5.649363,6.9487023,56.07,23.03,41.36,34.01,8.333333333333334,1,1,0,0,0,4,2,1,330.5,776471.63,324317.34,164604.45,0,0,0,1590.114 +14242,17392,31011,31013,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.2476392,7.1672559,0,9,-3,7.4773245,0,3,2,2021,15,3,20,0,1,3,0,6.2581635,6.2581635,.05,.05,0,0,0,0,0,2,1,1,0,6.835959,0,26.58,62.16,34.59,47.69,3.333333333333333,1,1,0,0,9,9,4,1,567.66669,-68341.969,94147.688,0,0,1442.225,0,2462.5991 +14242,17392,31012,-9,31011,31013,1,0,17,0,0,0,3,3,-9,0,1,0,0,0,0,0,-910.61145,1,2,3,2021,15,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0805407,0,32.68,49.94,-9,-9,5,1,1,0,0,1,9,4,1,567.66669,-68341.969,94147.688,0,0,1442.225,0,2462.5991 +14242,17392,31013,31011,-9,-9,1,1,47,0,0,0,3,3,-9,0,4,7.8528328,7.8488736,5.3334413,9,3,24.40271,0,3,3,2021,16,4,11,35,1,4,0,20.010021,20.010021,.05,.05,0,0,0,0,0,0,1,1,0,.42303908,5.6021109,34.59,47.69,26.58,62.16,5,1,1,0,0,9,9,4,1,567.66669,-68341.969,94147.688,0,0,1442.225,0,2462.5991 +14242,17393,31014,-9,31011,31013,1,1,20,0,0,0,2,2,-9,0,5,7.87711,7.7359085,0,0,0,-1041.1571,0,2,3,2021,5,0,40,32,1,0,1,8.6239576,8.6239576,0,0,0,0,0,0,0,0,1,1,0,0,0,51.14,60.45,-9,-9,10,1,1,0,0,2,9,3,1,124,140486.23,0,0,0,0,0,-280.51285 +14243,17394,31015,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,2,0,8.3121433,8.3330822,0,0,-1024.525,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,6.9861474,8.4151745,65.176949,0,1,1,0,5.0501275,7.9338703,42.45,29.18,-9,-9,3.333333333333333,1,1,0,0,0,6,4,1,212,564093,262776.16,228304.31,0,0,0,2497.1958 +14244,17395,31016,31017,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.9783678,8.6340466,0,4,1,84.681068,0,3,2,2021,16,7,37,37,1,7,0,18.172705,18.172705,.05,.05,0,0,0,0,0,0,0,0,0,2.2971725,0,47.38,57.75,40.18,62.68,8.333333333333334,1,1,0,0,9,10,5,1,682.5,312646.91,-14212.431,409919.56,187762,0,0,3712.9709 +14244,17395,31017,31016,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.4345713,8.3617268,0,4,-1,64.194786,0,-9,-9,2021,23,11,39,50,1,11,0,12.517606,12.517606,0,0,0,0,0,0,0,0,0,0,0,2.4457142,0,40.18,62.68,47.38,57.75,8.333333333333334,1,1,0,0,4,10,5,1,682.5,312646.91,-14212.431,409919.56,187762,0,0,3712.9709 +14245,17396,31018,-9,-9,-9,1,1,26,0,0,0,2,2,-9,0,5,6.584868,6.5568867,0,0,0,-1169.6619,0,3,2,2021,6,0,40,40,1,0,0,1.9733387,1.9733387,0,0,0,0,0,0,0,0,0,0,0,1.0695422,0,52.24,58.56,-9,-9,10,1,1,0,0,9,2,2,1,2026,36073.254,0,0,0,0,0,10.376321 +14246,17397,31019,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,7.6226935,7.4932699,0,0,-1009.3153,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,4.9732113,0,46.328136,0,1,1,0,0,7.0540304,70.59,24.06,-9,-9,10,1,1,0,0,0,12,3,1,434,-6482.0908,81306.32,67259.695,0,0,0,666.51764 +14247,17398,31020,-9,-9,-9,1,0,49,0,0,0,2,2,-9,1,2,0,0,0,0,0,-895.40472,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.02,22.13,-9,-9,3.333333333333333,1,1,0,1,8,10,1,0,1738,-8419.4082,-137338.38,0,0,0,-306.51065,1656.9717 +14248,17399,31021,31024,-9,-9,1,1,52,0,2,0,1,1,-9,0,3,8.9877195,9.0902119,0,10,4,-12.131173,0,2,1,2021,7,0,38,38,1,0,0,24.092848,24.092848,.05,.05,0,0,0,0,0,0,0,0,0,7.8584404,0,52,54.51,43.29,55.57,8.333333333333334,1,1,0,0,11,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14248,17399,31022,-9,31024,31021,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1040.6746,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14248,17399,31023,-9,31024,31021,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1064.8372,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14248,17399,31024,31021,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,8.5698452,8.4796629,0,10,-4,-8.1362972,0,2,2,2021,10,2,45,45,1,2,0,13.922066,13.922066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.29,55.57,52,54.51,8.333333333333334,1,1,0,0,11,12,5,1,1806,1117968.3,-77349.039,707718,0,0,0,5309.8584 +14249,17400,31025,31026,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,5.2529922,5.3089733,11,17,-17.802393,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5040841,5.0983858,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,2,5,3,1,433.5,856186.56,600957.88,199228.77,0,0,0,2031.4658 +14249,17400,31026,31025,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.7204895,7.8046918,0,11,-17,-90.479439,0,3,2,2021,6,0,35,40,1,0,0,6.2896638,6.2896638,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,10,1,1,0,0,12,5,3,1,433.5,856186.56,600957.88,199228.77,0,0,0,2031.4658 +14250,17401,31027,31028,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,42,2,-3.497905,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88073975,0,51.91,42.22,56.77,52.22,6.666666666666667,1,1,0,0,0,10,3,1,2126,1189203.3,611274.75,293320.13,0,0,0,2778.7517 +14250,17401,31028,31027,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,8.1613245,8.2185869,8,-2,61.667767,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1369777,8.2950687,56.77,52.22,51.91,42.22,8.333333333333334,1,1,0,0,7,10,3,1,2126,1189203.3,611274.75,293320.13,0,0,0,2778.7517 +14251,17402,31029,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.8793597,7.862534,4.7663012,0,0,-1071.1587,0,3,2,2021,7,0,36,36,1,0,0,7.5634766,7.5634766,.05,.05,0,0,0,0,0,0,0,0,0,0,5.4030094,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,6,13,4,1,553,815771.31,448705,61886.41,0,0,0,1525.8256 +14252,17403,31030,31031,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,7.6315951,7.3818583,61,0,-10.6514,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9154725,7.3430958,53,45,55,45,8,1,1,0,0,0,9,4,1,200,1682128.5,213591.81,565031.88,0,0,0,3130.2607 +14252,17403,31031,31030,-9,-9,1,1,83,0,0,0,1,1,-9,0,3,0,8.2163401,8.4529886,61,0,148.54486,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.399682,8.4129429,55,45,53,45,8,1,1,0,0,0,9,4,1,200,1682128.5,213591.81,565031.88,0,0,0,3130.2607 +14253,17404,31032,31033,-9,-9,1,0,28,0,0,0,2,2,-9,0,5,7.8737659,7.9827089,0,6,-5,26.768389,0,2,1,2021,8,0,42,0,1,0,0,11.170652,11.170652,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,49.35,59.64,10,4,2,0,0,8,2,5,1,954,60531.734,-19590.055,109608.66,20056.076,0,15691.465,3118.9658 +14253,17404,31033,31032,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.7591581,9.0779285,0,6,5,-16.346746,0,-9,-9,2021,13,1,47,0,1,1,0,10.599494,10.599494,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.35,59.64,54.1,59.11,6.666666666666667,1,1,0,0,4,2,5,1,954,60531.734,-19590.055,109608.66,20056.076,0,15691.465,3118.9658 +14254,17405,31034,31035,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,0,0,51,4,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.16,56.15,62.58,34.57,8.333333333333334,1,1,0,0,0,4,2,1,221,200989.75,0,185006.63,0,0,0,993.45642 +14254,17405,31035,31034,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,51,-4,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,62.58,34.57,57.16,56.15,8.333333333333334,1,1,0,0,3,4,2,1,221,200989.75,0,185006.63,0,0,0,993.45642 +14255,17406,31036,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,8.6886292,8.6922045,0,0,0,-1004.1461,0,-9,-9,2021,12,0,37,42,1,0,0,16.562006,16.562006,0,0,0,0,0,0,0,0,0,0,0,2.8866692,0,46.91,51.8,-9,-9,6.666666666666667,1,1,0,0,8,4,5,1,535,260133.17,212131.47,150654.41,0,0,0,2847.0049 +14255,17407,31037,-9,-9,31036,1,1,26,0,0,0,1,1,-9,0,2,6.878983,6.9660807,0,0,0,-962.31122,0,-9,2,2021,10,2,25,24,1,2,1,6.712296,6.712296,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.79,54.53,-9,-9,6.666666666666667,1,1,0,0,4,4,3,1,672,51443.852,-27611.074,0,0,0,0,546.13007 +14255,17408,31038,-9,-9,31036,1,1,19,0,0,1,2,0,0,0,3,0,0,0,0,0,-1046.1869,-9,-9,2,2021,8,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.88756931,0,58.49,50.2,-9,-9,10,1,1,0,0,0,4,1,1,32,200156.78,0,0,0,0,0,-995.04993 +14256,17409,31039,31040,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.218369,6.3084874,43,-7,45.192898,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.2924037,56.72,58.13,39.87,30.72,10,1,1,0,0,0,7,2,1,595.5,867720.75,229104.56,425231.13,0,0,0,2438.9185 +14256,17409,31040,31039,-9,-9,1,1,78,0,0,0,2,2,-9,0,2,0,6.2299838,6.1244111,43,7,-121.48492,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,.26273558,0,0,1,1,0,1.5509189,5.7792807,39.87,30.72,56.72,58.13,10,1,1,0,0,0,7,2,1,595.5,867720.75,229104.56,425231.13,0,0,0,2438.9185 +14257,17410,31041,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,4,0,7.0476084,7.2127423,0,0,-1041.7679,0,2,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0515585,44.79,37.58,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,5135,171674.69,195505.25,65785.883,44038.703,0,2135.9983,1768.3453 +14258,17411,31042,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.2629323,7.1675348,0,0,0,-1024.7598,0,2,2,2021,14,3,20,20,1,3,0,7.9098272,7.9098272,.05,.05,0,0,0,0,0,2,1,1,0,6.8040414,0,47.94,48.26,-9,-9,5,1,1,0,0,12,12,3,1,714,-14819.347,-57666.703,0,0,0,0,821.41913 +14259,17412,31043,-9,-9,-9,1,0,87,0,0,0,1,1,-9,0,2,0,8.2524385,7.9149818,0,0,-1068.7483,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8877015,8.1219339,47.32,28.39,-9,-9,6.666666666666667,1,1,0,0,0,4,4,1,729,940719.5,257768.75,360504.63,0,0,0,1633.2324 +14260,17413,31044,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,6.9405804,6.803823,0,0,-1007.6509,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1868658,6.8794203,55.96,49.93,-9,-9,10,1,1,0,0,6,9,2,1,345,433459.5,135750.53,319608.59,0,0,0,706.18713 +14261,17414,31045,31046,-9,-9,1,0,52,0,2,0,2,2,-9,0,5,8.8966799,8.6674786,0,22,2,36.706726,-9,3,2,2021,7,0,50,0,1,0,0,14.449537,14.449537,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,55,8.333333333333334,1,1,0,0,11,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14261,17414,31046,31045,-9,-9,1,1,50,0,2,0,2,2,-9,0,4,8.849081,8.6792717,0,24,-2,59.937996,-9,-9,-9,2021,9,0,40,0,1,1,0,18.586483,18.586483,.05,.05,0,0,0,0,0,0,1,1,0,2.3838527,0,53,55,57.06,57.76,8,3,4,0,0,1,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14261,17414,31047,-9,31045,31046,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-889.31866,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14261,17414,31048,-9,31045,31046,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-981.03436,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,4,2,-9,0,0,8,5,0,417.5,837485.13,214983.09,547209.31,24937.281,0,0,5098.4136 +14262,17415,31049,31050,-9,-9,1,1,44,0,3,0,1,1,-9,0,4,8.8963566,8.8682308,0,18,1,49.174038,0,2,1,2021,9,0,40,40,1,1,0,22.591377,22.591377,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,54.13,48.04,7,1,1,0,0,8,9,4,1,673,1295964.9,1146283.9,429939.97,281953.16,13246.308,9038.252,3811.4016 +14262,17415,31050,31049,-9,-9,1,0,43,0,3,0,1,1,-9,0,3,0,7.2567792,7.2864985,18,-1,20.053619,0,3,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.9028044,0,54.13,48.04,52,55,6.666666666666667,1,1,0,0,0,9,4,1,673,1295964.9,1146283.9,429939.97,281953.16,13246.308,9038.252,3811.4016 +14262,17415,31051,-9,31050,31049,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-834.64941,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,673,1295964.9,1146283.9,429939.97,281953.16,13246.308,9038.252,3811.4016 +14263,17416,31052,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.130518,7.9745827,5.9495764,0,0,-999.2113,0,2,2,2021,7,0,31,37,1,0,0,10.052912,10.052912,.05,.05,0,0,0,0,0,0,0,0,0,5.6496859,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,9,2,4,1,120,284131.97,282758.97,79366.617,64374.027,0,0,1442.2959 +14263,17417,31053,-9,31052,-9,1,1,25,0,0,0,1,1,-9,0,5,7.9806933,7.9094434,0,0,0,-1113.1193,0,2,2,2021,9,0,36,37,1,0,1,13.207899,13.207899,.05,.05,0,0,0,0,0,0,0,0,0,2.5279553,0,57.06,57.76,-9,-9,10,1,1,0,0,4,2,4,1,245,242943.17,31025.881,0,0,0,0,1354.7073 +14263,17418,31054,-9,31052,-9,1,0,20,0,0,1,2,0,0,0,4,0,4.7833076,4.6764927,0,0,-910.70428,-9,2,-9,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,4.3616138,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,2,2,1,3152,-98915.789,0,0,0,0,0,704.84308 +14264,17419,31055,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,0,0,0,0,0,-977.92963,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.6169388,0,47,49,-9,-9,7,1,1,0,1,5,13,1,1,860,0,0,0,0,0,0,351.215 +14264,17420,31056,-9,31055,-9,1,0,26,0,0,0,1,1,-9,0,4,7.6172986,7.8331714,0,0,0,-976.50623,0,2,-9,2021,12,0,16,20,1,0,1,17.511805,17.511805,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,1,5,13,3,1,416,123263.99,63187.496,0,0,4113.5322,0,1056.3507 +14265,17421,31057,31058,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.3395524,7.2773438,0,30,0,176.6931,0,2,2,2021,9,0,14,14,1,0,0,12.344625,12.344625,0,0,0,0,0,0,0,0,0,0,0,5.3813457,0,57.06,57.76,54,54,1.666666666666667,1,1,0,0,8,6,5,1,674,81175.813,106900.86,245100.38,157277.34,0,0,4413.7842 +14265,17421,31058,31057,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,9.2703085,9.4030237,0,6,0,-78.948364,0,-9,-9,2021,9,0,60,38,1,1,0,23.246162,23.246162,.05,.05,0,0,0,0,0,0,0,0,0,1.7592003,0,54,54,57.06,57.76,8,1,1,0,0,1,6,5,1,674,81175.813,106900.86,245100.38,157277.34,0,0,4413.7842 +14265,17422,31059,-9,31057,31058,1,0,24,0,0,0,2,2,-9,0,4,8.3423004,8.3145609,0,0,0,-1005.8898,0,2,1,2021,11,0,45,52,1,2,1,8.7197971,8.7197971,.05,.05,0,0,0,0,0,0,0,0,0,.55732167,0,47,57,-9,-9,7,1,1,0,0,1,6,4,1,1883,8679.0859,29770.215,0,0,0,0,1750.6058 +14265,17423,31060,-9,31057,31058,1,1,21,0,0,0,2,2,-9,0,4,8.0086193,7.9770303,0,0,0,-991.54755,0,2,1,2021,10,0,37,38,1,1,1,6.749022,6.749022,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,6,4,1,351,-110267.84,0,0,0,0,0,752.48956 +14266,17424,31061,31062,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,0,7.0578399,6.3980002,44,5,-161.44794,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96548319,6.9599214,38.94,40.16,66.44,47.81,6.666666666666667,1,1,0,0,4,1,2,1,268.5,609511.63,294713.5,127107.8,0,0,0,1462.9824 +14266,17424,31062,31061,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,0,5.9001284,5.5676608,44,-5,-101.15273,0,2,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0490692,5.927403,66.44,47.81,38.94,40.16,10,1,1,0,0,0,1,2,1,268.5,609511.63,294713.5,127107.8,0,0,0,1462.9824 +14267,17425,31063,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,8.0475101,8.2298231,0,0,0,-1031.3881,0,-9,-9,2021,9,1,40,38,1,1,0,9.0440445,9.0440445,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.12,52.11,-9,-9,6.666666666666667,3,4,0,0,9,8,4,0,290,566914.06,48833.754,527914.25,0,0,0,738.34424 +14268,17426,31064,31066,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,8.6267996,8.7248716,0,16,2,46.702351,0,3,3,2021,17,5,60,45,1,5,0,14.310268,14.310268,.05,.05,0,0,0,0,0,0,1,1,0,0,0,27.34,49.81,38.67,45.86,3.333333333333333,1,1,0,0,13,2,4,1,707.33331,111630.76,95150.516,171498.84,37310.563,0,0,2668.1135 +14268,17426,31065,-9,31066,31064,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.52948,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,4,1,707.33331,111630.76,95150.516,171498.84,37310.563,0,0,2668.1135 +14268,17426,31066,31064,-9,-9,1,0,42,0,1,0,1,1,-9,0,3,0,0,0,16,-2,-3.0415227,0,-9,-9,2021,11,0,0,32,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.67,45.86,27.34,49.81,6.666666666666667,1,1,0,0,15,2,4,1,707.33331,111630.76,95150.516,171498.84,37310.563,0,0,2668.1135 +14269,17427,31067,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,6.4999385,6.2871976,0,0,-847.02502,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9432325,6.2561474,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,4,6,2,1,761,177782.84,112328.32,105862.44,0,0,0,1807.7916 +14270,17428,31068,31069,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,0,0,0,36,1,145.66885,0,3,3,2021,20,8,0,39,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.53,50.82,47.66,52.33,1.666666666666667,1,1,1,0,8,6,2,0,1397,51993.859,0,0,0,0,247.68845,156.18671 +14270,17428,31069,31068,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.4323697,6.8848419,0,7,-1,205.32314,0,-9,-9,2021,13,1,15,10,1,1,0,4.6310101,4.6310101,0,0,0,0,0,0,0,0,1,1,0,0,0,47.66,52.33,49.53,50.82,10,1,1,0,1,8,6,2,0,1397,51993.859,0,0,0,0,247.68845,156.18671 +14271,17429,31070,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,3,0,7.0466018,7.3704324,0,0,-951.74927,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0570579,50.4,43.21,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,7051,312090.78,180828.91,190312.73,0,0,2656.6143,1619.8226 +14272,17430,31071,31072,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,8.6773968,8.5931129,0,1,-6,-45.035496,-9,-9,-9,2021,10,0,40,0,1,0,0,18.528214,18.528214,.05,.05,0,0,0,0,0,0,0,0,0,.61678445,0,64.40000000000001,25.94,43.2,39.65,6.666666666666667,1,1,0,0,8,9,5,1,702,1517228,1031076.4,515455.16,139328.39,0,0,3479.7529 +14272,17430,31072,31071,-9,-9,1,1,57,0,0,0,2,2,-9,0,2,8.4953747,7.967114,0,1,6,115.92398,-9,3,3,2021,10,0,38,0,1,0,0,12.401882,12.401882,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.2,39.65,64.40000000000001,25.94,6.666666666666667,1,1,0,0,8,9,5,1,702,1517228,1031076.4,515455.16,139328.39,0,0,3479.7529 +14273,17431,31073,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,7.1397967,7.0375175,0,0,-827.35211,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4936361,7.3729057,48.97,42.09,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,259,542253.5,63223.984,402369.81,0,0,0,1890.8137 +14273,17432,31074,-9,31073,-9,1,1,54,0,0,0,2,2,-9,0,3,8.1415272,8.3941908,0,0,0,-991.85962,0,3,-9,2021,11,0,35,35,1,0,0,15.817885,15.817885,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.13,48.65,-9,-9,5,1,1,0,0,12,10,4,1,600,122628.43,130322.75,193153.41,0,0,0,1828.785 +14274,17433,31075,31077,-9,-9,1,0,47,0,1,0,1,1,-9,0,4,8.2263546,8.3498697,0,26,1,-170.3895,0,1,2,2021,6,0,51,46,1,0,0,10.182636,10.182636,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.45,57.21,8.333333333333334,1,1,0,0,8,5,5,1,811,302700.38,37548.617,529127.06,370835.19,43959.773,20599.24,6383.2646 +14274,17433,31076,-9,31075,31077,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-991.26239,-9,1,1,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,2,5,5,1,811,302700.38,37548.617,529127.06,370835.19,43959.773,20599.24,6383.2646 +14274,17433,31077,31075,-9,-9,1,1,46,0,1,0,1,1,-9,0,4,9.3750038,9.5447378,0,26,-1,20.459846,0,2,2,2021,9,0,47,60,1,0,0,32.150967,32.150967,.05,.05,0,0,0,0,0,0,0,0,0,5.0611954,0,48.45,57.21,57.16,56.15,8.333333333333334,1,1,0,0,10,5,5,1,811,302700.38,37548.617,529127.06,370835.19,43959.773,20599.24,6383.2646 +14275,17434,31078,31079,-9,-9,1,1,69,0,0,0,2,2,-9,0,3,9.1190281,9.3457098,7.5908508,9,20,-3.692467,0,-9,-9,2021,10,0,50,50,1,1,0,22.765013,22.765013,.05,.05,.05,0,0,0,0,0,1,1,0,8.0819101,7.6661568,52,48,42.61,49.31,7,1,1,0,0,1,4,5,1,896,983361.06,266573.63,432507.44,0,-90.692375,0,13652.824 +14275,17434,31079,31078,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,9.1522131,9.0235443,0,26,-20,140.30798,0,3,2,2021,16,6,35,35,1,6,0,25.282707,25.282707,0,0,.05,0,0,0,0,0,1,1,0,8.4506969,0,42.61,49.31,52,48,10,1,1,0,0,10,4,5,1,896,983361.06,266573.63,432507.44,0,-90.692375,0,13652.824 +14276,17435,31080,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,5,9.01824,8.9615669,0,0,0,-878.40967,-9,2,2,2021,8,0,50,0,1,1,0,20.931112,20.931112,.05,.05,0,0,0,0,0,0,0,0,0,4.0999899,0,54,58,-9,-9,10,3,4,0,0,7,8,5,0,1678,121535.48,9049.9023,0,0,0,0,3195.6255 +14277,17436,31081,31082,-9,-9,1,1,76,0,0,0,1,1,-9,0,4,0,8.373929,8.803297,54,2,-36.803921,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0472031,8.3324537,59.53,56.44,61.12,51.57,10,1,1,0,0,0,5,4,1,348.5,1223695.1,849703.06,294563.31,0,8037.2598,0,3894.2275 +14277,17436,31082,31081,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.1302328,7.2185159,54,-2,-83.366768,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1750035,7.0687318,61.12,51.57,59.53,56.44,10,1,1,0,0,0,5,4,1,348.5,1223695.1,849703.06,294563.31,0,8037.2598,0,3894.2275 +14278,17437,31083,-9,31086,-9,1,0,37,0,3,0,2,2,-9,0,4,6.6281939,6.7554717,0,0,0,-1174.0852,0,2,2,2021,12,0,25,25,1,0,0,3.5211425,3.5211425,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.64,57.24,-9,-9,5,1,1,0,0,3,4,2,0,970,-94790.305,-2172.0242,89612.992,0,0,735.38782,606.32495 +14278,17438,31084,-9,31086,-9,1,1,31,0,3,0,2,2,-9,0,2,8.0087223,7.8303914,0,0,0,-1018.7754,-9,2,-9,2021,36,12,37,0,1,12,0,10.047112,10.047112,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.45,51.41,-9,-9,6.666666666666667,1,1,0,0,10,4,3,0,679,-125425.29,82359.492,0,0,0,0,790.46637 +14278,17439,31085,-9,31086,-9,1,1,33,0,3,0,2,2,-9,1,1,0,0,0,0,0,-995.01459,-9,2,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.81,32.36,-9,-9,0,1,1,0,1,0,4,2,0,247,0,0,0,0,0,0,-111.80624 +14278,17440,31086,-9,-9,-9,1,0,60,0,3,0,2,2,-9,0,1,0,5.1264615,5.2893958,0,0,-1020.296,0,-9,-9,2021,19,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,5.7301354,37,26,-9,-9,5,1,1,0,0,4,4,2,0,1736,112319.83,21632.822,63200.805,0,0,0,1254.4082 +14278,17441,31087,-9,-9,31089,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-970.67993,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17441,31088,-9,-9,31089,1,0,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-976.07642,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17441,31089,-9,31086,-9,1,1,35,0,3,0,2,2,-9,0,5,0,0,0,0,0,-958.78894,-9,2,-9,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,5,1,1,0,0,10,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17441,31090,-9,-9,31089,1,0,15,0,3,1,3,0,-9,0,1,0,0,0,0,0,-1113.797,-9,-9,2,2021,21,0,0,0,2,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30,32,-9,-9,3,1,1,-9,0,0,4,2,0,550.5,-61087.82,0,0,0,0,0,2045.7689 +14278,17442,31091,-9,-9,-9,1,1,63,0,3,0,3,3,-9,0,2,0,0,0,0,0,-1032.0745,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.83,43.98,-9,-9,5,1,1,1,1,0,4,2,0,1930,167259.14,-73049.875,112203.11,0,-4469.6748,0,481.30673 +14279,17443,31092,-9,31093,31095,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.48309,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14279,17443,31093,31095,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,7.9592767,7.4339542,0,16,-1,28.264444,0,1,1,2021,18,7,22,22,1,7,0,10.830388,10.830388,.05,.05,0,0,0,0,0,0,1,1,0,5.7620277,0,44.19,58.01,41.49,55.01,8.333333333333334,1,1,0,0,13,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14279,17443,31094,-9,31093,31095,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.07147,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14279,17443,31095,31093,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,7.433218,7.476335,0,14,1,-62.610889,0,1,2,2021,17,5,23,15,1,5,0,8.4479437,8.4479437,.05,.05,0,0,0,0,0,0,1,1,0,7.9454789,0,41.49,55.01,44.19,58.01,6.666666666666667,1,1,0,0,12,7,3,1,693,-14884.514,14622.542,0,0,0,8886.4336,3361.9668 +14280,17444,31096,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-836.46545,-9,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,25.73,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,602,175676.28,0,0,0,-606.04114,0,1624.2272 +14281,17445,31097,31098,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.0049558,6.9889712,63,6,17.949936,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,82.403687,0,0,1,1,0,0,7.2221189,63.01,30.77,61.28,48.88,8.333333333333334,1,1,0,0,0,5,2,1,272,278727.31,92100.266,0,0,0,0,1855.7379 +14281,17445,31098,31097,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,6.4247222,6.3965025,11,-6,-4.2754526,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,4.5731711,0,0,1,1,0,0,6.1567674,61.28,48.88,63.01,30.77,8.333333333333334,1,1,0,0,0,5,2,1,272,278727.31,92100.266,0,0,0,0,1855.7379 +14282,17446,31099,-9,-9,-9,1,1,51,0,0,0,2,2,-9,1,1,0,0,0,0,0,-981.21667,0,2,2,2021,18,0,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94512731,0,37,28,-9,-9,4,1,1,0,0,0,7,1,0,837,48806.281,0,0,0,0,0,412.41635 +14283,17447,31100,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,0,5.7685986,5.7492156,0,0,-977.76031,0,3,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3316941,5.4085402,37.11,55.92,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,900,265891.31,-25664.328,98493.969,0,0,0,1083.2208 +14284,17448,31101,-9,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,9.6681471,9.2610216,0,0,0,-1117.4879,0,1,2,2021,6,0,40,40,1,0,0,30.727324,30.727324,.05,.05,0,0,0,0,0,0,0,0,0,2.8096094,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,15,9,5,1,894,445436.84,-49904.641,361003.44,177953.41,1229.327,7265.9131,3698.2285 +14285,17449,31102,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.0507975,6.8419242,0,0,0,-1085.579,0,3,2,2021,12,0,20,16,1,0,0,4.9266162,4.9266162,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,51.96,-9,-9,8.333333333333334,3,4,0,0,7,8,2,0,495,178338.17,0,0,0,0,0,1128.2899 +14285,17450,31103,-9,31102,-9,1,0,25,0,1,0,1,1,1,0,4,8.0236511,7.8493013,0,0,0,-832.43939,-9,2,1,2021,1,0,40,0,1,0,1,8.6814232,8.6814232,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,-9,-9,8.333333333333334,3,4,0,0,6,8,4,0,88,134868.5,-5689.8032,0,0,0,0,2214.4426 +14285,17451,31104,-9,31102,-9,1,1,24,0,1,0,2,2,-9,0,5,7.9521437,8.0859623,0,0,0,-1033.4692,0,2,-9,2021,6,0,48,20,1,0,1,6.4283199,6.4283199,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,6.666666666666667,3,4,0,0,8,8,4,0,399,-42287.93,0,0,0,0,0,1294.3486 +14285,17452,31105,-9,31102,-9,1,1,22,0,1,1,2,0,0,0,4,0,0,0,0,0,-934.33728,-9,2,-9,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,588,0,0,0,0,0,0,0 +14285,17453,31106,-9,31102,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-881.14154,-9,2,-9,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.53,56.44,-9,-9,10,3,4,0,0,0,8,1,0,392,-1938.6918,0,0,0,0,0,0 +14286,17454,31107,-9,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.2769089,7.9847455,0,0,-1019.3079,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,2.6992872,7.6978192,52.88,56.68,-9,-9,8.333333333333334,1,1,0,0,0,10,4,1,855,720578.94,493375.72,176406.66,0,0,0,1536.1523 +14287,17455,31108,-9,31109,31111,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-981.85291,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.4661053,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14287,17455,31109,31111,-9,-9,1,0,26,2,2,0,2,2,-9,0,3,0,0,0,5,-10,-212.8308,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.68,49.74,48,38.99,5,2,3,0,0,0,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14287,17455,31110,-9,31109,31111,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-972.28009,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14287,17455,31111,31109,-9,-9,1,1,36,2,2,0,2,2,-9,1,3,8.5215445,8.7123461,0,5,10,30.892353,0,2,-9,2021,17,5,45,46,1,5,0,11.992949,11.992949,0,0,.05,0,0,0,0,7,1,1,0,0,0,48,38.99,44.68,49.74,5,2,3,0,1,9,8,4,0,598,86923.867,-13002.228,159596.86,105887.3,8623.8838,6390.3091,2331.55 +14288,17456,31112,31113,-9,-9,1,1,77,0,0,0,2,2,-9,0,4,0,7.3909588,7.5189862,7,4,-5.3661165,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.5364676,46.39,60.99,54.96,53.17,8.333333333333334,1,1,0,0,0,10,2,1,876,608053.19,325017.81,234172.56,0,0,0,1989.2321 +14288,17456,31113,31112,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,7,-4,26.005108,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1700253,0,54.96,53.17,46.39,60.99,10,1,1,0,0,0,10,2,1,876,608053.19,325017.81,234172.56,0,0,0,1989.2321 +14289,17457,31114,31115,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,44,2,39.396019,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1386015,0,41.58,40.35,55.51,46.03,3.333333333333333,1,1,0,0,0,9,4,1,783,1666040.5,825799.5,770784.5,0,0,0,5290.5327 +14289,17457,31115,31114,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,9.1463127,8.5486145,44,-2,28.836864,0,2,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4021115,8.5843143,55.51,46.03,41.58,40.35,3.333333333333333,1,1,0,0,0,9,4,1,783,1666040.5,825799.5,770784.5,0,0,0,5290.5327 +14290,17458,31116,-9,-9,-9,1,0,43,0,2,0,3,3,-9,0,2,7.5138488,7.8575473,5.77034,0,0,-1106.4906,0,-9,-9,2021,12,0,38,35,1,0,0,5.8392205,5.8392205,0,0,0,0,0,0,0,0,1,1,0,5.5837045,0,42.38,44.45,-9,-9,6.666666666666667,1,1,0,0,5,6,3,0,1078,-35178.438,-50111.719,0,0,0,0,1599.6608 +14290,17458,31117,-9,31116,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4519,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,3,0,1078,-35178.438,-50111.719,0,0,0,0,1599.6608 +14290,17459,31118,-9,31119,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-994.21277,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,0,1028,274003.19,56622.113,0,0,8161.1133,516.00739,562.12537 +14290,17459,31119,-9,31116,-9,1,0,24,0,2,0,2,2,-9,0,3,7.2252417,7.5005193,0,0,0,-1074.2067,0,2,-9,2021,7,0,25,25,1,0,1,7.1897402,7.1897402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.07,43.05,-9,-9,6.666666666666667,1,1,0,0,2,6,3,0,1028,274003.19,56622.113,0,0,8161.1133,516.00739,562.12537 +14291,17460,31120,-9,-9,-9,1,0,29,0,0,0,2,2,-9,1,2,0,0,0,0,0,-884.57489,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.19,37.62,-9,-9,3.333333333333333,1,1,0,0,2,1,2,0,223,79447.484,0,0,0,0,0,869.8653 +14291,17461,31121,-9,-9,-9,1,0,29,0,0,0,2,2,-9,0,3,8.6889925,8.3948994,0,0,0,-984.12616,0,-9,-9,2021,7,0,45,57,1,0,0,10.961824,10.961824,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.03,49.92,-9,-9,6.666666666666667,1,1,0,0,2,1,4,0,242,120109.52,26936.941,0,0,0,0,1764.12 +14292,17462,31122,31123,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,4.6191406,4.7403364,61,1,-99.495506,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8359127,48.59,41.43,60.65,24.95,8.333333333333334,1,1,0,0,0,5,2,1,250.5,-52276.227,0,120848.03,0,0,0,3144.8184 +14292,17462,31123,31122,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,61,-1,32.964542,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,3.0385542,0,0,1,1,0,0,0,60.65,24.95,48.59,41.43,8.333333333333334,1,1,0,0,0,5,2,1,250.5,-52276.227,0,120848.03,0,0,0,3144.8184 +14293,17463,31124,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,3,8.9504566,8.9365654,0,0,0,-1020.4002,0,2,2,2021,11,1,55,50,1,1,0,13.08727,13.08727,.05,.05,0,0,0,0,0,0,0,0,0,5.0711575,0,52.46,38.12,-9,-9,8.333333333333334,1,1,0,0,8,5,5,1,443,334334.25,165330.3,0,0,0,0,1878.6742 +14294,17464,31125,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1010.2988,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,2.7338836,0,28.62512,0,1,1,0,4.5523019,0,57.16,27.01,-9,-9,10,1,1,0,0,0,10,1,1,523,154249.89,0,0,0,0,0,1069.2869 +14295,17465,31126,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.6819344,7.7831206,0,0,-930.16364,0,3,1,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.1770487,55.87,37.96,-9,-9,6.666666666666667,2,3,0,0,0,11,3,1,584,623514.25,525382.38,224907.39,0,0,0,2641.7488 +14296,17466,31127,31128,-9,-9,1,1,30,0,1,0,2,2,-9,0,5,7.9829679,8.0282164,0,7,4,-32.89827,0,-9,-9,2021,9,0,39,51,1,0,0,10.974625,10.974625,.05,.05,0,0,0,0,0,0,1,1,0,0,0,63.38,50.77,46.16,58.62,8.333333333333334,1,1,0,0,9,4,3,0,934,-8561.749,38468.313,107961.05,0,8915.2979,0,1915.1595 +14296,17466,31128,31127,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,6.8615537,6.8230782,0,7,-4,-19.797249,0,3,3,2021,12,0,16,0,1,0,0,7.6278224,7.6278224,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,63.38,50.77,8.333333333333334,1,1,0,0,9,4,3,0,934,-8561.749,38468.313,107961.05,0,8915.2979,0,1915.1595 +14296,17466,31129,-9,31128,31127,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-996.39502,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,0,934,-8561.749,38468.313,107961.05,0,8915.2979,0,1915.1595 +14297,17467,31130,31131,-9,-9,1,0,65,0,0,0,1,1,-9,0,4,0,7.2457762,7.5198441,44,0,112.37132,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.232852,7.7642488,63.24,42.39,54.2,57.49,10,1,1,0,0,5,1,4,1,776,1648056.3,1203681.9,512132.47,156654.83,1547.4015,0,3748.8911 +14297,17467,31131,31130,-9,-9,1,1,65,0,0,0,1,1,-9,0,4,0,7.8171253,7.9272923,8,0,-3.5305324,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.1718221,8.3879623,54.2,57.49,63.24,42.39,10,1,1,0,0,0,1,4,1,776,1648056.3,1203681.9,512132.47,156654.83,1547.4015,0,3748.8911 +14298,17468,31132,31133,-9,-9,1,1,71,0,0,0,2,2,-9,0,1,0,7.2106609,6.6497169,11,0,102.80637,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,18.204624,0,0,1,1,0,3.4691532,7.0275583,39.32,17.47,58.08,22.2,8.333333333333334,1,1,0,0,0,11,2,1,1119.5,394282.63,339029.06,199295.55,0,2717.3184,0,2069.835 +14298,17468,31133,31132,-9,-9,1,0,71,0,0,0,3,3,-9,0,2,0,0,0,11,0,-43.129208,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,1.8328048,0,2,1,1,0,3.6188891,0,58.08,22.2,39.32,17.47,8.333333333333334,1,1,0,0,0,11,2,1,1119.5,394282.63,339029.06,199295.55,0,2717.3184,0,2069.835 +14299,17469,31134,31135,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,7.1014948,7.6136093,63,-2,22.433386,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.2358809,7.3863168,44.18,42.87,47.53,45.46,8.333333333333334,1,1,0,0,0,12,4,1,2324,980567.88,680453.5,245688.55,0,0,0,3930.0286 +14299,17469,31135,31134,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,8.2036533,8.0173101,63,2,103.52154,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0357487,8.0709763,47.53,45.46,44.18,42.87,8.333333333333334,1,1,0,0,0,12,4,1,2324,980567.88,680453.5,245688.55,0,0,0,3930.0286 +14300,17470,31136,31137,-9,-9,1,1,63,0,0,0,1,1,-9,0,5,9.3033905,9.6701126,8.8834066,10,2,-86.538155,0,-9,-9,2021,6,0,40,50,1,0,0,25.84346,25.84346,0,0,0,0,0,0,0,0,0,0,0,8.5902185,9.0861444,62.39,56.71,54.79,55.86,10,1,1,0,0,13,8,5,1,503,1182058.3,28360.162,1394806.8,126215.52,34056.828,6852.7568,9756.8906 +14300,17470,31137,31136,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.8231287,8.8202534,0,10,-2,1.924458,0,-9,-9,2021,11,0,40,35,1,0,0,20.934744,20.934744,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,62.39,56.71,8.333333333333334,1,1,0,0,13,8,5,1,503,1182058.3,28360.162,1394806.8,126215.52,34056.828,6852.7568,9756.8906 +14300,17471,31138,31139,31137,31136,1,0,26,0,0,0,1,1,-9,0,4,8.2807169,8.4702797,0,2,-2,30.512417,-9,1,1,2021,14,3,12,0,1,3,0,46.738468,46.738468,.05,.05,0,0,0,0,.27262506,2,0,0,0,0,0,45.81,58.99,43.12,54.59,8.333333333333334,1,1,0,0,9,8,5,1,758.5,368450,66900.461,435686.44,154573.06,0,0,3252.46 +14300,17471,31139,31138,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,8.5662861,8.9740667,0,2,2,24.89798,-9,-9,-9,2021,13,2,40,0,1,2,0,11.785203,11.785203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.12,54.59,45.81,58.99,5,1,1,0,0,3,8,5,1,758.5,368450,66900.461,435686.44,154573.06,0,0,3252.46 +14301,17472,31140,31141,-9,-9,1,1,52,0,0,0,3,3,-9,0,1,5.6693687,5.6919079,0,11,4,124.34751,0,-9,-9,2021,25,7,8,0,1,7,0,4.907186,4.907186,0,0,0,0,0,0,0,0,0,0,0,0,0,14.49,31.55,54.2,57.49,1.666666666666667,1,1,0,0,2,5,4,1,667.5,395378.66,-24092.252,85842.547,0,0,0,1430.0206 +14301,17472,31141,31140,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.3424921,8.2621851,0,11,-4,-59.232704,0,-9,-9,2021,11,0,46,46,1,0,0,8.205781,8.205781,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,14.49,31.55,8.333333333333334,2,3,0,0,13,5,4,1,667.5,395378.66,-24092.252,85842.547,0,0,0,1430.0206 +14302,17473,31142,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.5933309,7.9979291,0,0,0,-968.07538,0,2,2,2021,7,0,35,35,1,0,0,8.4053135,8.4053135,0,0,.05,0,0,0,0,0,0,0,0,3.3097131,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,14,9,3,1,686,596583.31,-57321.867,362029.88,0,0,0,1576.3112 +14303,17474,31143,31144,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.3214045,8.5117607,0,12,2,-83.365364,0,-9,-9,2021,15,3,48,47,1,3,0,9.0279922,9.0279922,0,0,0,0,0,0,0,7,0,0,0,0,0,47.15,55.39,36.24,36.08,3.333333333333333,1,1,0,0,14,10,4,1,688,2660633.5,1677795.4,696835.63,0,0,0,2890.7915 +14303,17474,31144,31143,-9,-9,1,1,53,0,0,0,1,1,-9,0,2,7.3970337,7.3327436,0,12,-2,16.780296,0,2,2,2021,25,8,43,0,1,8,0,3.8279431,3.8279431,.05,.05,0,0,0,0,0,2,0,0,0,0,0,36.24,36.08,47.15,55.39,0,1,1,0,1,14,10,4,1,688,2660633.5,1677795.4,696835.63,0,0,0,2890.7915 +14304,17475,31145,31146,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.2804022,8.363512,0,7,-6,52.12241,0,-9,-9,2021,14,3,44,40,1,3,0,11.754762,11.754762,.05,.05,0,0,0,0,0,0,0,0,0,3.8186655,0,40.94,58.35,48.87,58.55,8.333333333333334,1,1,0,0,8,2,5,1,1143.5,427363.66,441519.03,169050.86,143984.98,2312.1997,1596.8768,6124.6484 +14304,17475,31146,31145,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.1548815,9.1597414,0,7,6,53.703491,0,2,2,2021,11,2,48,48,1,2,0,28.072935,28.072935,.05,.05,0,0,0,0,0,0,0,0,0,7.9591885,0,48.87,58.55,40.94,58.35,8.333333333333334,2,3,0,0,13,2,5,1,1143.5,427363.66,441519.03,169050.86,143984.98,2312.1997,1596.8768,6124.6484 +14305,17476,31147,-9,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,0,0,0,0,-935.3576,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.968173,0,54.36,46.43,-9,-9,8.333333333333334,1,1,0,1,0,4,1,0,537.5,128838.31,0,100789.01,0,0,0,1077.498 +14305,17476,31148,-9,31147,-9,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-950.37384,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,1,0,537.5,128838.31,0,100789.01,0,0,0,1077.498 +14305,17477,31149,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-959.4389,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1959128,0,55,45,-9,-9,8,4,6,0,0,0,4,1,0,500,-30928.549,0,0,0,17570.678,0,362.63815 +14306,17478,31150,31152,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,7.9462662,8.310297,0,8,3,-13.713018,0,2,2,2021,7,0,38,35,1,0,0,12.13212,12.13212,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,45.69,53.27,6.666666666666667,1,1,0,0,8,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17478,31151,-9,31152,31150,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.5985,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17478,31152,31150,31154,-9,1,0,38,0,2,0,1,1,-9,0,3,8.5521688,8.1898165,0,8,-3,-37.293037,0,2,-9,2021,9,2,66,30,1,2,0,8.2973471,8.2973471,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.69,53.27,57.33,53.46,6.666666666666667,1,1,0,0,6,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17478,31153,-9,31152,31150,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-970.74768,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,11,4,1,608.5,500758.25,172803.8,175739.19,0,0,0,3395.4336 +14306,17479,31154,-9,-9,-9,1,0,65,0,2,0,2,2,-9,0,4,0,8.2392054,7.9045076,0,0,-1071.2334,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2564818,8.3097429,63.66,46.31,-9,-9,1.666666666666667,1,1,0,0,3,11,3,1,413,189357.95,0,168404.59,0,0,0,2971.4233 +14307,17480,31155,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,7.6398349,8.3155622,7.328248,0,0,-1077.6998,0,1,2,2021,11,0,20,20,1,0,0,14.261325,14.261325,.05,.05,0,0,0,0,0,0,1,1,0,7.1267223,0,43.67,61.06,-9,-9,8.333333333333334,1,1,0,0,7,2,3,1,156,193214.33,19267.744,146047.19,71121.352,2081.4741,0,1929.9694 +14307,17480,31156,-9,31155,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1073.272,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,3,1,156,193214.33,19267.744,146047.19,71121.352,2081.4741,0,1929.9694 +14307,17480,31157,-9,31155,-9,1,0,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1037.5754,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,3,1,156,193214.33,19267.744,146047.19,71121.352,2081.4741,0,1929.9694 +14308,17481,31158,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,4,8.4779749,8.5994873,0,0,0,-932.8064,0,-9,-9,2021,11,0,47,47,1,2,0,12.306699,12.306699,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47,59,-9,-9,7,1,1,0,0,4,8,5,0,178,122488.48,-42390.734,0,0,1202.0481,3778.5264,1391.4056 +14309,17482,31159,31160,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,5.6960893,5.9703436,8,0,63.745075,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4355412,5.5318923,51.79,46.28,42.22,45.38,8.333333333333334,1,1,0,0,7,4,2,1,692,592135.63,353026.19,160834.2,0,0,0,1592.6848 +14309,17482,31160,31159,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,7.3496561,7.314836,8,0,95.551079,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8283244,7.1134367,42.22,45.38,51.79,46.28,8.333333333333334,1,1,0,0,6,4,2,1,692,592135.63,353026.19,160834.2,0,0,0,1592.6848 +14310,17483,31161,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,9.5244608,9.5356388,0,0,0,-1108.1515,-9,-9,-9,2021,11,0,40,0,1,0,0,33.298973,33.298973,0,0,.05,0,0,0,1.9746774,0,0,0,0,0,0,42.28,54.75,-9,-9,8.333333333333334,1,1,0,0,3,9,5,1,1018,106774.91,281115.41,395832.13,241239.06,0,0,4476.8784 +14311,17484,31162,-9,31164,-9,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1048.2397,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,1,1,-9,0,0,2,2,0,928.66669,18162.951,-27341.199,0,0,0,3324.0688,1468.7944 +14311,17484,31163,-9,31164,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-904.78217,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,2,0,928.66669,18162.951,-27341.199,0,0,0,3324.0688,1468.7944 +14311,17484,31164,-9,-9,-9,1,0,36,0,2,0,2,2,-9,1,3,0,5.778224,5.6811337,0,0,-928.00531,0,3,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,120,1,1,0,6.03655,0,39.19,45.81,-9,-9,6.666666666666667,1,1,0,0,0,2,2,0,928.66669,18162.951,-27341.199,0,0,0,3324.0688,1468.7944 +14311,17485,31165,-9,31164,-9,1,1,18,0,2,0,2,2,1,0,1,7.6180172,7.4211841,0,0,0,-1088.3323,-9,2,-9,2021,28,9,41,0,1,9,1,5.9266648,5.9266648,0,0,0,0,0,0,0,0,1,1,0,0,0,22.95,44.06,-9,-9,1.666666666666667,1,1,0,1,2,2,3,0,314,50707.168,-106675.78,0,0,0,0,339.93439 +14312,17486,31166,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,3,0,0,0,0,0,-984.48096,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.76299,0,43.57,52.96,-9,-9,8.333333333333334,1,1,1,0,11,10,1,0,139,229134.98,-61814.82,199853.59,79694.281,12757.491,0,-200.08966 +14313,17487,31167,31168,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.4070511,8.5016832,0,2,-3,-21.791361,0,-9,-9,2021,7,0,68,44,1,0,0,7.9015036,7.9015036,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,50.65,60.47,8.333333333333334,1,1,0,0,8,9,5,0,605,226244.81,179180.03,178196.38,101778.58,886.48059,0,2763.8726 +14313,17487,31168,31167,-9,-9,1,0,46,0,0,0,3,3,-9,0,4,7.7951522,7.9562912,0,2,3,-82.859772,0,2,-9,2021,5,0,44,46,1,0,0,7.6347637,7.6347637,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.65,60.47,57.06,57.76,10,1,1,0,0,8,9,5,0,605,226244.81,179180.03,178196.38,101778.58,886.48059,0,2763.8726 +14314,17488,31169,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.2584729,8.1300163,7.5728631,0,0,-1048.2203,0,2,2,2021,10,0,24,3,1,0,0,5.3794618,5.3794618,.05,.05,0,0,0,0,0,0,0,0,0,4.7248602,7.9323521,44.37,49.63,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,99,95615.438,107692.12,0,0,0,0,2060.6655 +14315,17489,31170,31171,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.8400407,7.711411,0,11,1,-120.37796,0,-9,-9,2021,3,0,24,30,1,0,0,7.4519434,7.4519434,.05,.05,0,0,0,0,.47040215,2,0,0,0,3.9789228,0,56.18,51.02,51.56,51.79,8.333333333333334,1,1,0,0,12,11,4,1,907.5,485791.66,186186.84,23459.012,0,0,0,2691.7593 +14315,17489,31171,31170,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,7.8555403,8.4685154,0,11,-1,29.514742,0,3,3,2021,10,0,37,37,1,0,0,9.8791714,9.8791714,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.56,51.79,56.18,51.02,8.333333333333334,1,1,0,0,12,11,4,1,907.5,485791.66,186186.84,23459.012,0,0,0,2691.7593 +14316,17490,31172,31173,-9,-9,1,0,37,1,1,0,2,2,-9,0,5,9.2216444,9.3962936,0,10,-7,-103.34165,0,-9,-9,2021,7,0,60,30,1,0,0,24.211544,24.211544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,50.33,55.31,8.333333333333334,1,1,0,0,11,8,5,1,1278.3334,1002627.1,174599.25,721244.13,285791.13,0,0,5740.3804 +14316,17490,31173,31172,-9,-9,1,1,44,1,1,0,1,1,-9,0,5,8.6368799,8.6439152,0,10,7,-71.000412,0,2,3,2021,11,0,38,38,1,0,0,18.771072,18.771072,.05,.05,0,0,0,0,0,0,0,0,0,1.8296092,0,50.33,55.31,54.1,59.11,8.333333333333334,1,1,0,0,11,8,5,1,1278.3334,1002627.1,174599.25,721244.13,285791.13,0,0,5740.3804 +14316,17490,31174,-9,31172,31173,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-895.65833,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,1278.3334,1002627.1,174599.25,721244.13,285791.13,0,0,5740.3804 +14317,17491,31175,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,7.281177,7.0661206,0,0,-981.29773,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4067664,7.3099656,53.07,45.73,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,419,122639.3,135467.64,98948.797,0,0,0,499.35135 +14318,17492,31176,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,5,0,6.5325928,6.1905413,0,0,-952.52252,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9211764,7.0413709,54.67,57.49,-9,-9,8.333333333333334,1,1,0,0,6,12,2,1,2426,82667.727,286811.59,0,0,0,0,331.23245 +14319,17493,31177,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,0,0,0,0,0,-995.34308,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,57.65,56.13,-9,-9,8.333333333333334,1,1,0,0,4,4,1,1,1042,336467.69,0,0,0,0,0,0 +14320,17494,31178,-9,31179,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.45612,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,4,2,-9,0,0,7,4,1,661,254635.91,8867.1484,416740,136636.23,0,0,2404.4419 +14320,17494,31179,-9,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.8117256,8.5031805,0,0,0,-992.27209,0,2,-9,2021,29,12,46,40,1,12,0,13.266326,13.266326,.05,.05,0,0,0,0,0,0,1,1,0,0,0,22.06,65.69,-9,-9,1.666666666666667,4,2,0,1,9,7,4,1,661,254635.91,8867.1484,416740,136636.23,0,0,2404.4419 +14320,17494,31180,-9,31179,-9,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1043.0782,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,7,4,1,661,254635.91,8867.1484,416740,136636.23,0,0,2404.4419 +14321,17495,31181,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,7.944468,7.6009483,0,0,0,-1090.2628,0,2,2,2021,8,0,39,42,1,0,0,10.035808,10.035808,.05,.05,0,0,0,0,0,0,1,1,0,2.4607234,0,52.57,52.89,-9,-9,8.333333333333334,1,1,0,0,15,12,4,1,1740,685035.69,399744.47,205200.31,0,0,0,1528.4993 +14322,17496,31182,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.0569363,6.5892839,0,0,-1151.1902,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8169022,6.4913435,59.07,43.05,-9,-9,8.333333333333334,1,1,0,0,11,2,2,1,560,124216.13,173733.47,-3634.2632,0,0,0,999.91101 +14323,17497,31183,31186,-9,-9,1,0,30,0,3,0,2,2,-9,0,3,0,0,0,11,-1,-3.6167793,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0576756,0,46.67,55.57,49.29,54.59,8.333333333333334,1,1,0,0,5,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14323,17497,31184,-9,31183,31186,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-945.22784,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14323,17497,31185,-9,31183,31186,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-966.89563,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14323,17497,31186,31183,-9,-9,1,1,31,0,3,0,2,2,-9,0,3,7.9388199,7.8396707,0,11,1,75.039032,0,2,2,2021,10,1,38,39,1,1,0,10.271055,10.271055,.05,.05,0,0,0,0,0,0,1,1,0,2.7092841,0,49.29,54.59,46.67,55.57,6.666666666666667,1,1,0,0,9,1,2,1,906,239486.27,149065.28,148848.39,64677.496,5876.918,3283.9338,2194.0107 +14324,17498,31187,-9,-9,-9,1,0,20,0,1,1,2,0,0,0,4,0,0,0,0,0,-928.17889,-9,3,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.41,54.88,-9,-9,10,2,3,0,0,0,4,1,0,503,-42883.461,0,0,0,0,0,-676.48083 +14325,17499,31188,31190,-9,-9,1,1,36,1,1,0,2,2,-9,0,5,8.1779985,8.2733727,0,4,3,72.794891,0,-9,-9,2021,12,0,57,57,1,0,0,8.9244642,8.9244642,0,0,0,0,0,0,0,0,1,1,0,0,0,44.8,45.74,51.73,58.82,8.333333333333334,1,1,0,0,8,2,5,1,970,42947.777,-615.12531,0,0,12042.454,0,5040.5977 +14325,17499,31189,-9,31190,31188,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1163.0054,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,970,42947.777,-615.12531,0,0,12042.454,0,5040.5977 +14325,17499,31190,31188,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.7195797,8.7594967,0,4,-3,-66.268799,0,2,3,2021,6,0,34,-9,1,0,0,23.795586,23.795586,0,0,0,0,0,0,0,0,1,1,0,0,0,51.73,58.82,44.8,45.74,10,1,1,0,0,7,2,5,1,970,42947.777,-615.12531,0,0,12042.454,0,5040.5977 +14326,17500,31191,-9,-9,-9,1,0,20,0,0,0,2,2,1,0,3,6.7416191,6.8519998,0,0,0,-923.31384,-9,-9,-9,2021,4,0,34,0,1,0,0,2.9462078,2.9462078,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,10,4,5,0,0,2,5,2,1,282,19301.996,0,0,0,0,0,796.34283 +14327,17501,31192,31193,-9,-9,1,1,91,0,0,0,3,3,-9,0,3,0,7.224215,7.5484147,67,2,-32.437065,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.3325014,.013450122,19.958048,0,1,1,0,3.9893522,6.9450488,53.61,38.02,54.18,25.54,5,1,1,0,0,0,11,2,1,1347.5,600957.38,302152.75,228820.67,0,0,0,1478.5637 +14327,17501,31193,31192,-9,-9,1,0,89,0,0,0,3,3,-9,0,2,0,0,0,67,-2,-40.078884,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,2.8940217,0,23.936724,0,1,1,0,2.7571788,0,54.18,25.54,53.61,38.02,6.666666666666667,1,1,0,0,0,11,2,1,1347.5,600957.38,302152.75,228820.67,0,0,0,1478.5637 +14328,17502,31194,31195,-9,-9,1,1,49,0,1,0,3,3,-9,0,4,8.9887514,8.9774408,0,31,2,-128.7085,0,3,2,2021,8,0,126,60,1,0,0,6.6246285,6.6246285,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.53,58.91,45.89,29.22,8.333333333333334,1,1,0,0,8,9,5,1,926.33331,251487.63,142542.95,286773.69,44018.621,2267.4343,2786.2063,3673.647 +14328,17502,31195,31194,-9,-9,1,0,47,0,1,0,2,2,-9,0,1,7.3886919,7.3730812,0,30,-2,35.65395,0,3,3,2021,15,3,25,25,1,3,0,8.8501148,8.8501148,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.89,29.22,48.53,58.91,8.333333333333334,1,1,0,0,8,9,5,1,926.33331,251487.63,142542.95,286773.69,44018.621,2267.4343,2786.2063,3673.647 +14328,17502,31196,-9,31195,31194,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-712.66534,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,926.33331,251487.63,142542.95,286773.69,44018.621,2267.4343,2786.2063,3673.647 +14329,17503,31197,-9,-9,-9,1,1,38,0,0,0,1,1,-9,0,3,8.6099529,8.9652719,0,0,0,-1165.2245,0,2,2,2021,7,0,54,35,1,0,0,12.831208,12.831208,.05,.05,0,0,0,0,0,0,0,0,0,7.4226851,0,46.08,57.2,-9,-9,6.666666666666667,2,3,0,0,12,9,5,0,1102,627566.63,66364.195,539807.56,0,0,0,3472.5713 +14330,17504,31198,31199,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,0,6.4980307,6.4143748,4,1,126.18411,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.3964872,58.5,44.67,46.63,24.26,8.333333333333334,1,1,0,0,0,12,2,1,699,491720.44,178028.83,133124.73,0,0,0,1756.9924 +14330,17504,31199,31198,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,0,0,0,4,-1,-12.315639,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,24.26,58.5,44.67,5,1,1,0,0,0,12,2,1,699,491720.44,178028.83,133124.73,0,0,0,1756.9924 +14331,17505,31200,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,9.1180267,9.0982761,6.7250586,0,0,-1056.9723,0,-9,-9,2021,8,0,45,50,1,0,0,24.562016,24.562016,.05,.05,0,0,0,0,0,0,0,0,0,6.195756,7.1410866,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,265,369930.38,24556.996,86895.305,0,0,0,3040.707 +14331,17506,31201,-9,-9,31200,1,1,24,0,0,0,2,2,-9,0,5,7.8950768,8.0461407,0,0,0,-934.44592,0,-9,2,2021,5,0,45,40,1,0,1,8.1215563,8.1215563,.05,.05,0,0,0,0,0,0,0,0,0,1.082515,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,10,4,1,950,256326.13,-32034.705,0,0,0,0,1099.4263 +14332,17507,31202,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.4071093,6.6961555,0,0,-1143.3646,-9,3,3,2021,5,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4541068,6.0958228,57.03,48.06,-9,-9,8.333333333333334,1,1,0,0,5,6,2,1,885,228719.75,182642.73,0,0,0,0,1053.1583 +14333,17508,31203,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,4.8732219,4.693202,0,0,-983.9024,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.651319,51,46,-9,-9,7,1,1,0,0,4,11,2,1,235,461715.81,0,370251.91,0,0,0,512.60126 +14334,17509,31204,-9,31205,31206,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1033.0269,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,846,786565.81,273146.28,401465.44,18047.037,0,1489.2935,4041.4656 +14334,17509,31205,31206,-9,-9,1,0,53,0,1,0,1,1,-9,0,5,8.1189642,8.6407471,0,26,0,-1.600318,0,2,3,2021,9,0,37,32,1,0,0,11.793307,11.793307,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,53,54,10,1,1,0,0,9,2,4,1,846,786565.81,273146.28,401465.44,18047.037,0,1489.2935,4041.4656 +14334,17509,31206,31205,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.5606451,8.1906967,0,7,0,-43.24762,0,2,3,2021,9,0,40,40,1,1,0,15.304115,15.304115,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,57.06,57.76,8,1,1,0,0,1,2,4,1,846,786565.81,273146.28,401465.44,18047.037,0,1489.2935,4041.4656 +14334,17510,31207,-9,31205,31206,1,0,23,0,1,0,2,2,-9,0,4,7.889039,8.1554918,0,0,0,-882.15497,0,1,2,2021,7,0,37,37,1,0,1,8.601532,8.601532,.05,.05,0,0,0,0,0,0,1,1,0,3.0015969,0,59.53,56.44,-9,-9,10,1,1,0,0,7,2,4,1,997,-221915.92,-67660.188,0,0,0,0,1593.3282 +14334,17511,31208,-9,31205,31206,1,0,22,0,1,0,2,2,-9,0,4,6.9567847,7.1840835,0,0,0,-945.15265,0,2,2,2021,11,0,37,45,1,2,1,3.3768992,3.3768992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,1,2,2,1,657,12100.729,0,68100.227,111319.66,13502.806,0,93.073318 +14335,17512,31209,-9,-9,-9,1,0,43,0,1,0,3,3,-9,1,1,0,0,0,0,0,-880.09875,-9,-9,-9,2021,24,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,24.73,25.52,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,1797,0,0,0,0,0,0,1074.7422 +14336,17513,31210,31211,-9,-9,1,1,63,0,0,0,2,2,-9,1,2,0,0,0,10,-1,0,0,3,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,0,0,40.98,47.92,49,48,8.333333333333334,1,1,0,0,9,12,1,0,358,111440.74,173664.47,80672.141,42392.57,0,0,1153.0969 +14336,17513,31211,31210,-9,-9,1,0,64,0,0,0,2,2,-9,1,3,0,0,0,10,1,0,0,3,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49,48,40.98,47.92,7,1,1,0,0,0,12,1,0,358,111440.74,173664.47,80672.141,42392.57,0,0,1153.0969 +14337,17514,31212,31213,-9,-9,1,0,62,0,0,0,1,1,-9,0,2,8.1304483,8.2480745,3.9943738,12,8,-42.422035,0,3,3,2021,16,4,47,47,1,4,0,8.9776525,8.9776525,0,0,0,0,0,0,0,14.5,0,0,0,0,3.8254995,38.15,31.43,51.89,54.38,3.333333333333333,1,1,0,0,14,7,5,1,727,669816.25,678053.63,333624.09,267718.47,0,12813.592,4716.2549 +14337,17514,31213,31212,-9,-9,1,1,54,0,0,0,2,2,-9,0,4,9.2656593,9.0164738,0,12,-8,-36.593563,-9,2,2,2021,12,1,43,0,1,1,0,25.810455,25.810455,.05,.05,0,0,0,0,0,0,0,0,0,4.1896634,0,51.89,54.38,38.15,31.43,8.333333333333334,1,1,0,0,14,7,5,1,727,669816.25,678053.63,333624.09,267718.47,0,12813.592,4716.2549 +14338,17515,31214,-9,-9,-9,1,1,62,0,0,0,2,2,-9,0,2,0,6.8792248,6.9331465,0,0,-1034.8326,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9176173,47.2,34.16,-9,-9,3.333333333333333,3,4,0,1,0,8,2,0,542,890420.31,236028.05,355594.03,0,0,0,1254.543 +14339,17516,31215,-9,31216,31218,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-955.31421,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14339,17516,31216,31218,-9,-9,1,0,33,2,2,0,1,1,-9,0,4,8.0351343,8.101532,0,5,-2,62.668552,0,1,2,2021,10,0,24,28,1,0,0,18.864603,18.864603,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,50,57,8.333333333333334,1,1,0,0,9,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14339,17516,31217,-9,31216,31218,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1048.3545,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14339,17516,31218,31216,-9,-9,1,1,35,2,2,0,2,2,-9,0,4,9.3839426,9.1707478,0,5,2,-58.176758,0,-9,2,2021,10,0,35,37,1,1,0,28.909323,28.909323,.05,.05,0,0,0,0,0,0,1,1,0,5.7569785,0,50,57,51.83,57.2,7,1,1,0,0,1,7,5,1,697.5,834788.13,542129.75,676917.19,406021.31,0,0,5652.2759 +14340,17517,31219,-9,31220,-9,1,0,12,0,1,1,3,0,-9,0,5,0,0,0,0,0,-954.43829,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,3,4,-9,0,0,8,2,0,978.5,457583.31,-15934.361,367260.84,31192.031,0,0,1607.2292 +14340,17517,31220,-9,-9,-9,1,0,56,0,1,0,2,2,-9,0,3,6.7652149,6.7991834,0,0,0,-814.48822,0,2,2,2021,11,1,16,16,1,1,0,7.5188084,7.5188084,0,0,0,0,0,0,0,7,1,1,0,0,0,38.57,58.06,-9,-9,10,3,4,0,0,10,8,2,0,978.5,457583.31,-15934.361,367260.84,31192.031,0,0,1607.2292 +14340,17518,31221,-9,31220,-9,1,1,19,0,1,0,2,2,-9,0,4,7.3720202,6.9601679,0,0,0,-989.23083,-9,2,-9,2021,8,0,36,0,1,0,1,4.5133638,4.5133638,0,0,0,0,0,0,0,0,1,1,0,0,0,42.35,60.25,-9,-9,8.333333333333334,3,4,0,0,3,8,3,0,1086,0,0,0,0,0,0,1168.5182 +14341,17519,31222,31223,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,0,8.190156,8.3419065,6,1,.60511804,0,3,3,2021,3,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,6.57479,7.9982224,59.54,48.41,61.68,49.95,10,1,1,0,0,4,12,3,1,2575,575609.25,580970.63,0,0,0,0,2722.7725 +14341,17519,31223,31222,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,4.633956,4.6859426,6,-1,-137.56364,0,3,3,2021,4,0,0,18,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,4.9104586,4.2421799,61.68,49.95,59.54,48.41,10,1,1,0,0,7,12,3,1,2575,575609.25,580970.63,0,0,0,0,2722.7725 +14341,17520,31224,-9,31223,31222,1,1,25,0,0,0,1,1,-9,0,4,8.5066528,8.4714165,0,0,0,-990.7522,0,3,1,2021,10,0,40,36,1,1,0,15.501237,15.501237,.05,.05,0,0,0,0,0,0,0,0,0,1.6312611,0,49,58,-9,-9,7,1,1,0,0,1,12,5,1,3624,70053.547,42951.781,0,0,6783.2827,0,1491.9834 +14342,17521,31225,31226,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.6535182,7.4369669,12,-5,-3.3531799,0,2,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.553364,7.338273,45.18,33.51,57.33,53.46,8.333333333333334,1,1,0,0,11,2,4,1,784,1310397.1,983638.88,200535.16,-4746.5566,0,651.59558,4465.5156 +14342,17521,31226,31225,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2818403,9.0721016,12,5,-23.628517,0,3,1,2021,7,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,8.7562056,57.33,53.46,45.18,33.51,10,1,1,0,0,10,2,4,1,784,1310397.1,983638.88,200535.16,-4746.5566,0,651.59558,4465.5156 +14343,17522,31227,-9,31229,-9,1,1,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-904.67303,-9,1,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,1.666666666666667,1,1,0,0,0,2,5,1,339.66666,552538,465501.19,0,0,0,1314.2214,2518.4971 +14343,17522,31228,-9,31229,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1042.6515,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,2,5,1,339.66666,552538,465501.19,0,0,0,1314.2214,2518.4971 +14343,17522,31229,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,8.5996504,8.5803814,6.647903,0,0,-1016.2293,0,3,2,2021,13,2,42,40,1,2,0,21.428198,21.428198,.05,.05,0,0,0,0,0,0,1,1,0,6.9243302,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,339.66666,552538,465501.19,0,0,0,1314.2214,2518.4971 +14344,17523,31230,-9,31232,31231,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1147.1919,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,2,0,702,16194.688,0,0,0,0,0,1574.0897 +14344,17523,31231,31232,-9,-9,1,1,38,0,1,0,3,3,-9,0,2,7.2853451,7.4965715,0,21,0,.75062674,0,3,3,2021,12,0,40,40,1,0,0,3.7745171,3.7745171,0,0,0,0,0,0,0,0,1,1,0,0,0,47.42,46.01,49.04,55.86,5,1,1,0,0,7,9,2,0,702,16194.688,0,0,0,0,0,1574.0897 +14344,17523,31232,31231,-9,-9,1,0,38,0,1,0,2,2,-9,0,3,0,0,0,24,0,6.5937562,0,3,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,47.42,46.01,6.666666666666667,1,1,0,0,0,9,2,0,702,16194.688,0,0,0,0,0,1574.0897 +14344,17524,31233,-9,31232,31231,1,0,18,0,1,0,2,2,0,0,4,0,0,0,0,0,-920.19391,-9,2,3,2021,17,5,0,0,2,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.25,59.59,-9,-9,5,1,1,0,0,1,9,1,0,277,-55827.27,0,0,0,0,0,0 +14345,17525,31234,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,9.0463266,8.9037237,0,0,0,-911.28882,0,2,2,2021,7,0,48,53,1,0,0,17.265924,17.265924,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,11,4,5,1,1293,592392.44,409681.59,116770.37,72226.586,0,3548.896,3291.6465 +14345,17526,31235,-9,31234,-9,1,1,22,0,0,0,2,2,-9,0,4,8.3734999,8.3580112,0,0,0,-959.09326,-9,2,-9,2021,7,0,43,0,1,0,1,10.361528,10.361528,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,311,168623.08,0,0,0,0,0,1603.407 +14346,17527,31236,31238,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,7.4095936,7.6564965,0,5,0,23.440498,0,-9,-9,2021,21,8,28,15,1,8,0,9.2816496,9.2816496,0,0,0,0,0,0,0,0,1,1,0,0,0,35.22,61.89,44.79,49.51,1.666666666666667,1,1,0,0,3,6,4,1,612.66669,635647,371980.31,178006.98,89007.406,0,0,2843.9875 +14346,17527,31237,-9,31236,31238,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-971.81982,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,4,1,612.66669,635647,371980.31,178006.98,89007.406,0,0,2843.9875 +14346,17527,31238,31236,-9,-9,1,1,55,0,1,0,3,3,-9,0,3,8.2556477,8.2358694,0,5,9,54.608852,0,-9,2,2021,17,5,6,45,1,5,0,76.051804,76.051804,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.79,49.51,35.22,61.89,6.666666666666667,1,1,0,0,7,6,4,1,612.66669,635647,371980.31,178006.98,89007.406,0,0,2843.9875 +14347,17528,31239,31240,-9,-9,1,0,67,0,0,0,1,1,-9,0,2,0,7.6937532,7.860672,48,-7,-95.567574,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.1770544,7.5192337,61.69,36.86,52,47,10,1,1,0,0,3,8,3,1,132.5,1504985.3,203745,877646.38,0,0,0,2570.3508 +14347,17528,31240,31239,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,0,0,48,7,-5.1757054,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,47,61.69,36.86,7,1,1,0,0,0,8,3,1,132.5,1504985.3,203745,877646.38,0,0,0,2570.3508 +14348,17529,31241,-9,31242,31243,1,0,9,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1072.3403,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31242,31243,-9,-9,1,0,37,1,5,0,1,1,-9,0,3,0,0,0,20,3,-91.34111,0,3,3,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,50.08,33.76,51,56,8.333333333333334,2,3,0,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31243,31242,-9,-9,1,1,34,1,5,0,2,2,-9,0,4,7.7634373,7.6704545,0,6,-3,155.00406,0,-9,-9,2021,10,0,37,30,1,1,0,7.6855755,7.6855755,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,50.08,33.76,7,2,3,0,0,1,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31244,-9,31242,31243,1,1,14,1,5,1,3,0,-9,0,5,0,0,0,0,0,-1032.9899,-9,1,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,61,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31245,-9,31242,31243,1,0,1,1,5,1,3,0,-9,0,4,0,0,0,0,0,-986.31049,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31246,-9,31242,31243,1,1,7,1,5,1,3,0,-9,0,4,0,0,0,0,0,-817.67316,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14348,17529,31247,-9,31242,31243,1,1,13,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1018.8175,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,-9,0,0,4,2,1,1147.8572,101099.95,32022.977,67987.445,55466.129,0,0,2744.3044 +14349,17530,31248,-9,-9,-9,1,0,41,0,2,0,3,3,-9,0,2,0,0,0,0,0,-1067.9934,0,3,3,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.82,39.27,-9,-9,6.666666666666667,2,3,0,1,0,7,1,1,90,-88893.945,0,0,0,0,0,1459.3445 +14350,17531,31249,31250,-9,-9,1,0,25,0,0,0,2,2,-9,0,4,8.3377104,8.3245592,0,4,-4,96.916153,0,2,2,2021,7,0,55,55,1,0,0,8.9434662,8.9434662,0,0,0,0,0,0,0,0,0,0,0,.6154694,0,54.79,55.86,45.97,54.57,0,1,1,0,0,5,4,5,1,868.5,78237.813,-19810.736,139049.66,111605.12,5843.8428,0,2746.0986 +14350,17531,31250,31249,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.31359,8.0904551,0,4,4,-19.736528,0,-9,-9,2021,10,1,39,38,1,1,0,10.639941,10.639941,.05,.05,0,0,0,0,0,0,0,0,0,3.5062006,0,45.97,54.57,54.79,55.86,6.666666666666667,1,1,0,0,2,4,5,1,868.5,78237.813,-19810.736,139049.66,111605.12,5843.8428,0,2746.0986 +14351,17532,31251,31252,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,4.3933792,3.9684386,0,31,-7,-24.014511,0,2,2,2021,7,0,40,60,1,0,0,.26323855,.26323855,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.73,42.63,57.3,52.09,8.333333333333334,1,1,0,0,10,11,4,1,415,1912782.4,395223.69,475190.41,367762.59,0,0,2031.0952 +14351,17532,31252,31251,-9,-9,1,1,61,0,0,0,1,1,-9,0,5,8.1886702,8.5427427,6.592679,30,7,-10.377625,0,3,2,2021,9,0,37,47,1,0,0,12.330069,12.330069,.05,.05,0,0,0,0,0,0,0,0,0,6.8552866,6.8193111,57.3,52.09,59.73,42.63,10,1,1,0,0,10,11,4,1,415,1912782.4,395223.69,475190.41,367762.59,0,0,2031.0952 +14351,17533,31253,-9,31251,31252,1,1,20,0,0,0,2,2,-9,0,4,8.0124636,8.0394258,0,0,0,-1055.2479,0,1,1,2021,11,0,41,41,1,2,1,5.513329,5.513329,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,2,11,3,1,1953,158180.03,0,0,0,0,0,1167.5365 +14352,17534,31254,31255,-9,-9,1,1,53,0,0,0,1,1,-9,0,5,9.3489885,9.3876553,0,11,6,65.066994,0,-9,-9,2021,11,0,45,48,1,0,0,27.431833,27.431833,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,11,5,5,1,789.33331,735039.88,281854.25,248442.58,7390.4478,0,0,5028.0396 +14352,17534,31255,31254,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.3931785,7.211956,0,11,-6,-89.130257,0,2,2,2021,5,0,22,0,1,0,0,8.1678286,8.1678286,0,0,0,0,0,0,0,0,1,1,0,.16142915,0,54.79,55.86,57.06,57.76,8.333333333333334,4,2,0,0,11,5,5,1,789.33331,735039.88,281854.25,248442.58,7390.4478,0,0,5028.0396 +14352,17534,31256,-9,31255,31254,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1149.6733,-9,2,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.34,46.92,-9,-9,6.666666666666667,1,1,0,0,0,5,5,1,789.33331,735039.88,281854.25,248442.58,7390.4478,0,0,5028.0396 +14353,17535,31257,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.6804113,9.751296,0,8,-5,151.46828,0,-9,-9,2021,6,0,45,50,1,0,0,32.293205,32.293205,0,0,.05,0,0,0,0,0,0,0,0,8.3691645,0,54.79,55.86,52,55,8.333333333333334,1,1,0,0,11,8,5,1,582,798373.69,65441.727,941950.63,342380.13,0,0,5694.0547 +14354,17536,31258,31259,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,6.7626977,6.7352486,47,3,-70.371826,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,5.822289,0,48.45874,0,1,1,0,0,6.698875,65.88,11.6,53,47,8.333333333333334,1,1,0,0,0,13,2,1,578,333179.75,236918.48,235945.53,0,0,0,1933.2903 +14354,17536,31259,31258,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,0,0,47,-3,109.79273,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,65.88,11.6,7,1,1,0,0,0,13,2,1,578,333179.75,236918.48,235945.53,0,0,0,1933.2903 +14355,17537,31260,31261,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.3060322,8.5284462,0,8,-12,20.350458,0,-9,-9,2021,9,0,46,49,1,0,0,11.374783,11.374783,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.25,50.81,54.46,13.02,6.666666666666667,4,2,0,0,11,4,4,1,423,935974.63,416366.25,261981.83,27177.719,6733.293,0,2410.2886 +14355,17537,31261,31260,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,6.0370193,6.2227483,27,12,-120.39706,0,-9,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2613854,54.46,13.02,51.25,50.81,8.333333333333334,1,1,0,0,8,4,4,1,423,935974.63,416366.25,261981.83,27177.719,6733.293,0,2410.2886 +14356,17538,31262,-9,31263,31264,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-890.10791,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,3,1,1141,-189661.47,0,0,0,0,0,1872.8201 +14356,17538,31263,31264,-9,-9,1,0,43,0,2,0,3,3,-9,0,1,0,0,0,29,-4,-44.685421,0,3,-9,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.72,29.93,59.7,53.75,6.666666666666667,2,3,0,0,2,8,3,1,1141,-189661.47,0,0,0,0,0,1872.8201 +14356,17538,31264,31263,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.1268921,8.193984,0,27,4,43.17709,0,-9,-9,2021,6,0,45,41,1,0,0,6.7971272,6.7971272,0,0,0,0,0,0,0,0,1,1,0,0,0,59.7,53.75,43.72,29.93,10,2,3,0,1,9,8,3,1,1141,-189661.47,0,0,0,0,0,1872.8201 +14356,17539,31265,-9,31263,31264,1,0,19,0,2,0,2,2,0,0,5,0,0,0,0,0,-851.40845,-9,3,2,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,2,3,0,0,3,8,1,1,249,-1325.4222,0,0,0,0,0,0 +14357,17540,31266,-9,31267,31269,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-964.41522,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,61,-9,-9,7,4,2,-9,0,0,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14357,17540,31267,31269,-9,-9,1,0,48,0,2,0,2,2,-9,0,5,0,0,0,16,8,-58.830746,0,2,-9,2021,15,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.5131068,0,49.25,61.25,54.32,57.85,8.333333333333334,1,1,0,0,0,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14357,17540,31268,-9,31267,31269,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-930.1424,-9,2,1,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14357,17540,31269,31267,-9,-9,1,1,40,0,2,0,1,1,-9,0,5,9.752696,9.6479836,0,16,-8,-26.429731,0,2,2,2021,5,1,80,50,1,1,0,21.44194,21.44194,0,0,0,0,0,0,0,0,0,0,0,0,0,54.32,57.85,49.25,61.25,8.333333333333334,2,3,0,0,12,7,5,1,1671.5,15447.488,2055.3181,0,0,926.50079,0,6835.2295 +14358,17541,31270,31273,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.4426365,9.1450024,0,29,-1,-72.010635,0,2,1,2021,11,2,40,42,1,2,0,44.568798,44.568798,.05,.05,.05,0,0,0,0,0,0,0,0,1.7181538,0,35.3,62.04,54.2,57.49,5,1,1,0,0,9,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31271,-9,31273,31270,1,1,17,0,2,0,2,2,-9,0,3,0,0,0,0,0,-986.271,-9,2,1,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48.17,41.43,-9,-9,5,1,1,1,0,0,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31272,-9,31273,31270,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.4127,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31273,31270,-9,-9,1,0,47,0,2,0,2,2,-9,0,4,8.0195847,8.0796881,0,9,1,-51.624104,0,2,2,2021,7,0,27,29,1,0,0,12.641748,12.641748,.05,.05,0,0,0,0,0,0,0,0,0,3.7343271,0,54.2,57.49,35.3,62.04,6.666666666666667,1,1,0,0,7,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14358,17541,31274,-9,31273,31270,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-985.50281,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,5,1,703.59998,1309043,380029.41,760360.56,391410.03,657.66205,0,5239.0098 +14359,17542,31275,31276,-9,-9,1,0,50,0,0,0,1,1,-9,1,1,0,5.128891,5.3549104,26,0,-31.001833,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5596042,5.410943,29.07,30.07,46.53,61.33,3.333333333333333,1,1,0,0,0,9,5,1,1174,2902693.5,730152.31,1371222.8,956638.38,0,0,4745.9541 +14359,17542,31276,31275,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.5007315,9.5855227,0,26,0,37.129921,0,2,3,2021,12,4,43,45,1,4,0,30.020115,30.020115,.05,.05,0,0,0,0,0,2,1,1,0,3.1078284,0,46.53,61.33,29.07,30.07,8.333333333333334,1,1,0,0,8,9,5,1,1174,2902693.5,730152.31,1371222.8,956638.38,0,0,4745.9541 +14360,17543,31277,31279,-9,-9,1,0,37,1,1,0,2,2,-9,0,4,0,0,0,5,1,94.065819,0,2,2,2021,7,0,0,40,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.53625441,0,57.16,56.15,51,56,8.333333333333334,1,1,0,0,7,12,4,1,496,199240.42,118595.02,173901.7,105487.79,0,0,2968.8879 +14360,17543,31278,-9,31277,31279,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1107.8291,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,496,199240.42,118595.02,173901.7,105487.79,0,0,2968.8879 +14360,17543,31279,31277,-9,-9,1,1,36,1,1,0,2,2,-9,0,4,8.7566366,8.8136768,0,5,-1,-55.090607,-9,-9,-9,2021,10,0,35,0,1,1,0,25.758005,25.758005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,57.16,56.15,7,4,1,0,0,1,12,4,1,496,199240.42,118595.02,173901.7,105487.79,0,0,2968.8879 +14361,17544,31280,31281,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.5848532,8.6331444,0,5,-1,-173.2886,0,-9,-9,2021,6,0,41,37,1,0,0,16.16671,16.16671,0,0,0,0,0,0,0,0,0,0,0,0,0,52.9,50.37,57.9,51.84,8.333333333333334,2,3,0,0,6,7,5,1,519,330865.25,269180.44,0,0,0,0,4709.3789 +14361,17544,31281,31280,-9,-9,1,1,57,0,0,0,3,3,-9,0,3,9.183732,9.0446386,0,5,1,23.646358,0,3,1,2021,10,0,37,39,1,0,0,27.743092,27.743092,0,0,0,0,0,0,0,0,0,0,0,0,0,57.9,51.84,52.9,50.37,8.333333333333334,2,3,0,0,7,7,5,1,519,330865.25,269180.44,0,0,0,0,4709.3789 +14362,17545,31282,-9,31283,31284,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-949.68304,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1299.3334,-44082.934,57635.551,0,0,408.75333,0,2832.2349 +14362,17545,31283,31284,-9,-9,1,0,26,0,1,0,2,2,-9,0,4,0,0,0,2,-7,10.922548,1,2,-9,2021,10,0,0,25,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.77,56.48,35.82,47.1,6.666666666666667,1,1,0,0,6,4,4,1,1299.3334,-44082.934,57635.551,0,0,408.75333,0,2832.2349 +14362,17545,31284,31283,-9,-9,1,1,33,0,1,0,1,1,-9,0,3,8.8131876,8.6268158,0,2,7,-42.515888,-9,-9,-9,2021,14,3,47,0,1,3,0,16.308784,16.308784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.82,47.1,47.77,56.48,5,1,1,0,0,6,4,4,1,1299.3334,-44082.934,57635.551,0,0,408.75333,0,2832.2349 +14363,17546,31285,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,3,7.5022197,8.6719551,8.5163336,0,0,-994.34418,0,2,1,2021,19,7,38,38,1,7,0,3.6374018,3.6374018,0,0,0,1,1.0533059,0,22.773222,0,1,1,0,8.8691339,6.3530416,46.42,35.92,-9,-9,6.666666666666667,1,1,0,0,13,8,5,1,612,943284.94,-26721.922,883925.25,24463.678,0,0,5421.46 +14364,17547,31286,-9,31287,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.97736,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,6,1,0,621.66669,-156932.66,0,0,0,0,0,1278.6776 +14364,17547,31287,-9,-9,-9,1,0,34,1,3,0,3,3,-9,0,3,0,0,0,0,0,-900.93652,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.93,58.41,-9,-9,1.666666666666667,3,4,0,0,0,6,1,0,621.66669,-156932.66,0,0,0,0,0,1278.6776 +14364,17547,31288,-9,31287,-9,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.2055,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,6,1,0,621.66669,-156932.66,0,0,0,0,0,1278.6776 +14365,17548,31289,-9,-9,-9,1,0,93,0,0,0,2,2,-9,0,2,0,7.4903264,7.6797328,0,0,-1000.3171,0,3,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,48.445423,0,474.33105,0,1,1,0,0,7.5477028,36.76,28.36,-9,-9,3.333333333333333,1,1,0,0,0,8,3,0,564,-98832.719,155045.14,0,0,0,0,2420.8477 +14366,17549,31290,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,7.7299323,7.9159999,0,0,0,-1025.2347,0,-9,-9,2021,8,1,40,40,1,1,0,7.2468119,7.2468119,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,8,1,4,0,925,105373.99,78877.555,0,0,0,0,1564.4906 +14367,17550,31291,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,0,0,-907.92694,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,47.92,38.28,-9,-9,7,2,3,0,0,0,8,1,0,1767,-18054.076,0,116785.14,0,0,0,1235.8851 +14368,17551,31292,31293,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,0,7.0550056,7.157856,33,3,223.10263,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.7156806,6.6741138,57.16,56.15,61.28,48.88,8.333333333333334,1,1,0,0,6,9,3,1,2441,1116120,834514.88,267245.13,0,0,0,991.35364 +14368,17551,31293,31292,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,0,7.9807429,7.848928,9,-3,114.75848,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4844508,61.28,48.88,57.16,56.15,8.333333333333334,1,1,0,0,4,9,3,1,2441,1116120,834514.88,267245.13,0,0,0,991.35364 +14368,17552,31294,-9,31292,31293,1,1,26,0,0,0,1,1,-9,0,3,7.7284799,7.8469191,0,0,0,-1086.4622,0,2,2,2021,8,0,38,21,1,0,0,6.9906573,6.9906573,0,0,0,0,0,0,0,0,0,0,0,0,0,41.47,58.08,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,229,99384.898,0,0,0,0,0,1118.2595 +14369,17553,31295,31296,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,0,0,0,3,7,0,0,-9,-9,2021,10,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.07,32.67,30.31,40.35,5,3,4,1,1,1,8,1,0,667,55697.039,0,0,0,0,0,83.184662 +14369,17553,31296,31295,-9,-9,1,0,29,0,1,0,2,2,-9,1,3,0,0,0,3,-7,0,0,3,-9,2021,30,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,30.31,40.35,60.07,32.67,5,3,4,1,0,1,8,1,0,667,55697.039,0,0,0,0,0,83.184662 +14370,17554,31297,31298,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.5126057,8.6354847,0,6,-4,-8.083868,0,2,3,2021,8,0,42,44,1,0,0,18.176678,18.176678,0,0,0,0,0,0,0,2,0,0,0,0,0,53.89,38.58,61.28,48.88,6.666666666666667,1,1,0,0,8,12,5,1,402.5,85071.672,64985.297,154581.22,133914.47,0,0,3772.7314 +14370,17554,31298,31297,-9,-9,1,1,52,0,0,0,2,2,-9,0,3,8.3456192,7.9995465,0,6,4,-33.723305,0,2,2,2021,7,0,38,38,1,0,0,12.817712,12.817712,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.28,48.88,53.89,38.58,8.333333333333334,1,1,0,0,7,12,5,1,402.5,85071.672,64985.297,154581.22,133914.47,0,0,3772.7314 +14371,17555,31299,31300,-9,-9,1,0,62,0,0,0,3,3,-9,0,2,6.3064437,6.3365393,0,30,-10,109.76342,0,3,3,2021,10,0,20,4,1,0,0,3.8946109,3.8946109,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,54.1,59.11,8.333333333333334,1,1,0,0,9,5,3,1,777.5,1040635.9,912848.13,178852.28,0,0,481.22098,1952.9885 +14371,17555,31300,31299,-9,-9,1,1,72,0,0,0,3,3,-9,0,5,0,7.5601006,7.8506474,30,10,57.896824,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.6208262,7.4359279,54.1,59.11,57.57,49.69,8.333333333333334,1,1,0,0,7,5,3,1,777.5,1040635.9,912848.13,178852.28,0,0,481.22098,1952.9885 +14372,17556,31301,-9,31304,31303,1,1,16,1,3,1,2,0,-9,0,4,0,0,0,0,0,-965.68311,-9,2,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.08,43.2,-9,-9,10,1,1,0,0,2,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31302,-9,31304,31303,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.05359,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31303,31304,-9,-9,1,1,48,1,3,0,2,2,-9,0,4,6.2210069,6.0110903,0,18,11,67.741814,0,2,-9,2021,5,0,12,0,1,0,0,4.5691481,4.5691481,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,51.83,57.2,10,1,1,0,0,1,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31304,31303,-9,-9,1,0,37,1,3,0,2,2,-9,0,4,8.1990442,8.3371,0,18,-11,49.978073,0,-9,-9,2021,9,0,24,24,1,0,0,19.515793,19.515793,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,53.61,59.13,6.666666666666667,1,1,0,0,12,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17556,31305,-9,31304,31303,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.6737,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,0,695.79999,70844.578,27016.807,63713.652,27916.58,0,0,2362.0027 +14372,17557,31306,-9,31304,31303,1,0,19,1,3,0,2,2,-9,0,3,7.2301221,7.3454108,0,0,0,-962.8783,0,2,2,2021,6,1,19,0,1,1,1,12.422071,12.422071,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.77,48.61,-9,-9,8.333333333333334,1,1,0,0,1,4,3,0,399,-222539.88,6052.875,0,0,0,0,671.85645 +14373,17558,31307,31309,-9,-9,1,1,25,1,1,0,1,1,-9,0,5,8.4347639,8.3807611,0,5,-1,-126.58024,0,1,1,2021,29,11,51,55,1,11,0,13.113181,13.113181,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.08,52.95,46.86,39.6,5,1,1,0,0,11,4,4,0,488.66666,-22541.689,39075.086,154186.22,124081.09,20334.877,13103.09,2653.8481 +14373,17558,31308,-9,31309,31307,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.18365,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,4,4,0,488.66666,-22541.689,39075.086,154186.22,124081.09,20334.877,13103.09,2653.8481 +14373,17558,31309,31307,-9,-9,1,0,26,1,1,0,2,2,-9,0,2,6.3621645,6.8708143,0,5,1,2.8793232,0,-9,-9,2021,10,0,15,0,1,0,0,4.7770801,4.7770801,.05,.05,0,0,0,0,0,0,1,1,0,.63857573,0,46.86,39.6,44.08,52.95,6.666666666666667,1,1,0,0,3,4,4,0,488.66666,-22541.689,39075.086,154186.22,124081.09,20334.877,13103.09,2653.8481 +14374,17559,31310,-9,31313,31311,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.377,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14374,17559,31311,31313,-9,-9,1,1,39,1,2,0,2,2,-9,0,4,9.0136251,8.9193983,0,12,-1,-8.89886,0,2,2,2021,11,0,60,50,1,0,0,16.688429,16.688429,.05,.05,0,0,0,0,0,0,0,0,0,2.7671261,0,51.24,58.84,49.25,61.25,8.333333333333334,1,1,0,0,9,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14374,17559,31312,-9,31313,31311,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1053.1309,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14374,17559,31313,31311,-9,-9,1,0,40,1,2,0,1,1,-9,0,5,0,0,0,12,1,-13.383202,0,2,2,2021,11,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.05949,0,49.25,61.25,51.24,58.84,8.333333333333334,1,1,0,0,5,9,5,1,443.25,234451.78,222905.58,0,0,11267.309,0,3876.6904 +14375,17560,31314,31315,-9,-9,1,1,71,0,0,0,1,1,-9,0,2,0,8.2105513,8.1457624,8,7,-14.595132,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6341543,8.5884142,53.38,41.98,50.51,47.24,8.333333333333334,1,1,0,0,0,1,5,1,794,1459122.5,117833.3,592838.63,0,0,0,5056.8267 +14375,17560,31315,31314,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,8.4255047,8.3656473,44,-7,19.358053,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3168759,8.3603086,50.51,47.24,53.38,41.98,6.666666666666667,1,1,0,0,0,1,5,1,794,1459122.5,117833.3,592838.63,0,0,0,5056.8267 +14376,17561,31316,31318,-9,-9,1,1,43,0,2,0,1,1,-9,0,3,8.5945425,8.8071442,0,20,0,-90.267685,0,1,2,2021,18,6,35,35,1,6,0,20.930433,20.930433,.05,.05,.05,0,0,0,0,0,1,1,0,4.023849,0,31.83,59.68,46.28,62.6,3.333333333333333,1,1,0,0,8,7,4,1,653.66669,507346.84,249271.08,287523.06,37846.035,0,0,4103.6172 +14376,17561,31317,-9,31318,31316,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1091.9681,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,653.66669,507346.84,249271.08,287523.06,37846.035,0,0,4103.6172 +14376,17561,31318,31316,-9,-9,1,0,43,0,2,0,1,1,-9,0,5,8.2615967,8.1206713,0,18,0,-27.840717,0,2,1,2021,15,3,24,24,1,3,0,23.703201,23.703201,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,31.83,59.68,8.333333333333334,1,1,0,0,8,7,4,1,653.66669,507346.84,249271.08,287523.06,37846.035,0,0,4103.6172 +14377,17562,31319,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2162313,8.4013214,3.0455792,0,0,-1007.6505,0,3,3,2021,11,2,42,41,1,2,0,10.7465,10.7465,.05,.05,0,0,0,0,0,0,1,1,0,7.0364537,3.5280159,42.1,45.61,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,946,579208.25,334560.88,228954.69,76485.328,0,166.62001,2904.3921 +14378,17563,31320,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-976.17432,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.83,36.93,-9,-9,8.333333333333334,1,1,0,0,11,9,1,1,82,-32080.85,0,0,0,0,0,903.62646 +14379,17564,31321,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,0,0,-1018.8005,0,1,1,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.094852,0,37.58,48.2,-9,-9,5,1,1,0,0,7,1,1,1,405,340520.78,132952.39,185914.59,0,0,0,244.85918 +14380,17565,31322,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,8.2497692,8.537158,0,0,-1057.7885,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.1444149,8.1244812,55,45,-9,-9,8,1,1,0,0,0,11,4,1,637,832592.94,250154.58,164192.42,0,0,0,2258.7756 +14381,17566,31323,31324,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.5823355,8.4878454,0,31,1,7.3160157,0,2,2,2021,9,0,41,37,1,0,0,11.547378,11.547378,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.51,60.74,8.333333333333334,1,1,0,0,10,12,5,1,763,343963.38,187718.91,86808.859,0,0,914.00793,9436.0391 +14381,17566,31324,31323,-9,-9,1,1,53,0,0,0,2,2,-9,0,5,9.6618586,9.6013899,0,31,-1,-115.65276,0,2,3,2021,7,0,75,75,1,0,0,25.27051,25.27051,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,57.16,56.15,10,1,1,0,0,12,12,5,1,763,343963.38,187718.91,86808.859,0,0,914.00793,9436.0391 +14381,17567,31325,-9,31323,31324,1,0,25,0,0,0,2,2,-9,0,4,8.0829239,8.3500977,0,0,0,-957.88757,0,1,2,2021,7,0,40,20,1,0,1,9.3521423,9.3521423,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.81,53.56,-9,-9,8.333333333333334,1,1,0,0,8,12,4,1,1067,76121,-43207.031,0,0,0,0,1154.7887 +14381,17568,31326,-9,31323,31324,1,1,21,0,0,0,1,1,0,0,5,0,0,0,0,0,-995.55273,-9,1,2,2021,8,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,3,12,2,1,1310,28689.229,0,0,0,0,0,0 +14382,17569,31327,31328,-9,-9,1,0,75,0,0,0,2,2,-9,0,1,0,0,0,10,-12,69.463142,0,2,1,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,7.3181572,0,62.747509,120,1,1,0,3.9684889,0,37.93,22.1,54,45,1.666666666666667,1,1,0,0,0,1,3,1,916.5,721786.69,304929.19,341535.31,0,0,0,2821.0024 +14382,17569,31328,31327,-9,-9,1,1,87,0,0,0,1,1,-9,0,3,0,8.0754032,7.9588528,10,12,96.235786,0,3,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.0101471,54,45,37.93,22.1,8,1,1,0,0,0,1,3,1,916.5,721786.69,304929.19,341535.31,0,0,0,2821.0024 +14383,17570,31329,31330,-9,-9,1,0,55,0,0,0,2,2,-9,1,2,0,0,0,9,-5,-7.8488379,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,27,1,1,0,6.1297789,0,47.94,28.58,57.34,47.92,3.333333333333333,2,3,1,1,0,6,2,1,582,617455.38,-37759.859,356104.44,0,0,0,1865.7771 +14383,17570,31330,31329,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,5.2189589,4.7801485,0,9,5,110.15124,0,3,3,2021,12,0,16,25,1,0,0,.99737102,.99737102,.05,.05,0,0,0,0,0,0,1,1,0,8.2192469,0,57.34,47.92,47.94,28.58,8.333333333333334,2,3,0,0,11,6,2,1,582,617455.38,-37759.859,356104.44,0,0,0,1865.7771 +14384,17571,31331,-9,31335,31337,1,1,17,0,4,1,2,0,0,0,4,0,0,0,0,0,-1018.3599,-9,2,3,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.96,46.76,-9,-9,8.333333333333334,2,3,0,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31332,-9,31335,31337,1,1,14,0,4,1,3,0,-9,0,5,0,0,0,0,0,-965.51178,-9,3,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31333,-9,31335,31337,1,1,15,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1078.5247,-9,2,3,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31334,-9,31335,31337,1,1,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-790.30792,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,5,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31335,31337,-9,-9,1,0,38,0,4,0,2,2,-9,0,1,0,0,0,2,-4,0,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.84,27.72,50,57,5,2,3,0,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31336,-9,31335,31337,1,0,10,0,4,1,3,0,-9,0,3,0,0,0,0,0,-992.37262,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,56,-9,-9,6,2,3,-9,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14384,17571,31337,31335,-9,-9,1,1,42,0,4,0,3,3,-9,0,4,0,0,0,2,4,0,0,-9,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,50,57,34.84,27.72,6.666666666666667,2,3,0,0,0,2,1,0,806.42859,48642.848,8652.0049,0,0,0,1957.9539,2676.6833 +14385,17572,31338,31339,-9,-9,1,1,39,0,1,0,2,2,-9,0,3,0,0,0,7,4,-36.757866,0,2,2,2021,13,2,0,37,3,2,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.04,53.77,45.43,53.5,8.333333333333334,1,1,1,0,3,11,2,0,1005,56133.266,-62783.453,0,0,760.80566,4218.4092,1128.3989 +14385,17572,31339,31338,-9,-9,1,0,35,0,1,0,2,2,-9,0,3,7.646409,7.7019596,0,7,-4,-46.963608,0,3,-9,2021,11,0,33,36,1,0,0,7.8639779,7.8639779,0,0,0,0,0,0,0,0,1,1,0,0,0,45.43,53.5,45.04,53.77,6.666666666666667,4,2,0,0,6,11,2,0,1005,56133.266,-62783.453,0,0,760.80566,4218.4092,1128.3989 +14385,17572,31340,-9,31339,31338,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1056.9886,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,2,0,1005,56133.266,-62783.453,0,0,760.80566,4218.4092,1128.3989 +14386,17573,31341,31342,-9,-9,1,0,47,0,0,0,1,1,-9,0,3,9.3200092,8.954196,0,25,-12,-71.116432,0,2,2,2021,12,1,45,44,1,1,0,27.269068,27.269068,0,0,0,0,0,0,0,0,0,0,0,0,0,35.26,59.77,51.83,57.2,6.666666666666667,1,1,0,0,9,12,5,1,1324,972496.38,191976.33,461059.25,74013.555,0,0,7502.8916 +14386,17573,31342,31341,-9,-9,1,1,59,0,0,0,1,1,-9,0,4,9.4397821,9.243639,0,25,12,73.595619,0,3,2,2021,8,0,44,43,1,0,0,40.716476,40.716476,.05,.05,0,0,0,0,0,0,0,0,0,5.7473855,0,51.83,57.2,35.26,59.77,8.333333333333334,1,1,0,0,9,12,5,1,1324,972496.38,191976.33,461059.25,74013.555,0,0,7502.8916 +14387,17574,31343,31344,-9,-9,1,0,39,0,2,0,2,2,-9,0,3,7.380609,7.5321474,0,21,-1,-10.800071,0,3,2,2021,20,7,26,24,1,7,0,5.449914,5.449914,0,0,0,0,0,0,0,100,1,1,0,0,0,23.2,54.42,58.56,6.27,5,1,1,0,1,12,2,2,0,921.5,-54787.707,0,0,0,0,0,1753.7207 +14387,17574,31344,31343,-9,-9,1,1,40,0,2,0,2,2,-9,1,1,0,0,0,20,1,-72.820808,0,2,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.56,6.27,23.2,54.42,6.666666666666667,1,1,1,1,0,2,2,0,921.5,-54787.707,0,0,0,0,0,1753.7207 +14387,17575,31345,-9,31343,31344,1,0,19,0,2,0,2,2,-9,0,2,6.3907924,6.7045674,0,0,0,-881.77631,0,2,2,2021,16,0,11,0,1,4,1,6.1389256,6.1389256,0,0,0,0,0,0,0,2,1,1,0,3.6286564,0,38,44,-9,-9,5,1,1,0,0,1,2,2,0,477,249186.08,0,0,0,0,0,1719.0466 +14388,17576,31346,31347,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,8.2686462,8.8846769,41,8,11.951392,0,2,1,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.5302057,8.9306173,57.06,57.76,51.94,55.88,1.666666666666667,1,1,0,0,0,2,4,1,1261,2340214.3,607857.63,421326.75,0,0,0,6112.895 +14388,17576,31347,31346,-9,-9,1,0,65,0,0,0,1,1,-9,0,3,0,0,0,41,-8,2.5345061,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.810689,0,51.94,55.88,57.06,57.76,10,1,1,0,0,0,2,4,1,1261,2340214.3,607857.63,421326.75,0,0,0,6112.895 +14389,17577,31348,31350,-9,-9,1,0,43,0,1,0,2,2,-9,0,4,7.6079092,8.2010784,7.2016597,22,-10,-155.03593,0,2,2,2021,8,0,42,23,1,0,0,8.7383928,8.7383928,0,0,0,0,0,0,0,0,1,1,0,7.7353792,0,51.24,58.84,46.1,59.99,6.666666666666667,1,1,0,0,9,2,5,1,788,1329949.1,1104253.1,176020.02,0,9545.5801,0,5042.04 +14389,17577,31349,-9,31348,31350,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1053.1771,-9,2,2,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.43995637,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,0,2,5,1,788,1329949.1,1104253.1,176020.02,0,9545.5801,0,5042.04 +14389,17577,31350,31348,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,9.2180309,9.0998096,0,22,10,-15.314014,0,2,2,2021,13,1,57,70,1,1,0,13.684064,13.684064,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.1,59.99,51.24,58.84,6.666666666666667,1,1,0,0,7,2,5,1,788,1329949.1,1104253.1,176020.02,0,9545.5801,0,5042.04 +14390,17578,31351,-9,31352,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-972.60498,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,6,5,1,969,129369.13,145770.98,0,0,9885.6289,0,3411.6052 +14390,17578,31352,-9,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.8272066,8.9084635,6.2701249,0,0,-971.58203,0,3,-9,2021,19,6,32,32,1,6,0,22.97547,22.97547,.05,.05,0,0,0,0,0,42,1,1,0,7.0635962,0,35.39,55.38,-9,-9,3.333333333333333,3,4,0,0,12,6,5,1,969,129369.13,145770.98,0,0,9885.6289,0,3411.6052 +14391,17579,31353,-9,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,7.6970701,7.4281893,0,0,-959.09424,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.3522248,30.96,36.23,-9,-9,1.666666666666667,1,1,0,0,0,9,3,1,2003,788049.13,343113.69,192961.84,0,0,0,763.44104 +14392,17580,31354,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1015.2701,0,-9,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.74,22.01,-9,-9,3.333333333333333,1,1,0,1,0,12,1,0,768,45707.082,-9111.6719,162319.66,0,0,0,456.05499 +14393,17581,31355,31356,-9,-9,1,1,52,0,0,0,3,3,-9,0,4,8.5978975,8.261508,0,3,9,27.097338,0,-9,-9,2021,6,0,43,45,1,0,0,13.193076,13.193076,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,59.71,50.89,8.333333333333334,1,1,0,0,11,1,5,1,870,229991.72,135405.06,210688.41,0,16490.262,0,3019.7988 +14393,17581,31356,31355,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.0514278,7.9148569,0,3,0,34.531754,-9,-9,-9,2021,7,0,38,0,1,0,0,10.105724,10.105724,0,0,0,0,0,0,0,0,0,0,0,0,0,59.71,50.89,57.16,56.15,6.666666666666667,1,1,0,0,5,1,5,1,870,229991.72,135405.06,210688.41,0,16490.262,0,3019.7988 +14394,17582,31357,31358,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,6.9796576,6.9275532,54,6,95.207932,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.9062552,46.29,24.63,52,45,3.333333333333333,1,1,0,0,7,7,2,1,436,322682.44,0,232923.59,0,6024.2959,0,1165.3456 +14394,17582,31358,31357,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,6,-6,7.30934,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.436753,0,52,45,46.29,24.63,7,1,1,0,0,0,7,2,1,436,322682.44,0,232923.59,0,6024.2959,0,1165.3456 +14395,17583,31359,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.1234226,8.6258173,0,0,0,-1060.4263,0,3,2,2021,9,0,45,12,1,0,0,12.931654,12.931654,.05,.05,0,0,0,0,0,0,0,0,0,2.5324464,0,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,11,2,5,0,746,210483.3,56330.766,138061.66,91163.469,0,841.7981,1412.9407 +14396,17584,31360,31361,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.2473621,8.0691881,0,9,-4,-45.894047,0,2,3,2021,14,3,40,40,1,3,0,12.342357,12.342357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.67,54.09,52.99,51.28,6.666666666666667,1,1,0,0,10,12,5,1,549.5,224487.72,44032.035,113233.25,-1956.4033,0,0,3110.5332 +14396,17584,31361,31360,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.24226,8.1206541,0,9,4,-148.31393,0,3,2,2021,8,0,45,40,1,0,0,8.8171291,8.8171291,.05,.05,0,0,0,0,0,7,0,0,0,0,0,52.99,51.28,35.67,54.09,8.333333333333334,1,1,0,0,10,12,5,1,549.5,224487.72,44032.035,113233.25,-1956.4033,0,0,3110.5332 +14397,17585,31362,-9,-9,-9,1,1,28,0,0,0,1,1,1,0,5,7.3500023,7.2679029,0,0,0,-991.03723,-9,-9,-9,2021,11,2,25,0,1,2,0,6.787466,6.787466,0,0,0,0,0,0,0,2,0,0,0,0,0,46.94,58.27,-9,-9,8.333333333333334,1,1,0,0,6,12,3,0,1239,92650.539,0,0,0,0,0,1245.8488 +14398,17586,31363,-9,-9,-9,1,0,32,0,0,0,1,1,-9,1,4,0,0,0,0,0,-1039.3741,0,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.72,61.07,-9,-9,6.666666666666667,1,1,0,0,4,4,2,0,99,209349.41,24569.41,209759.45,0,4602.8506,0,591.95325 +14399,17587,31364,31365,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.6734362,9.5680647,0,30,-1,23.9505,0,2,3,2021,7,0,75,70,1,0,0,17.585203,17.585203,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.19,54.26,6.666666666666667,1,1,0,0,11,12,5,1,279.5,1772097.8,1441621,301164,0,4792.9536,0,6933.9775 +14399,17587,31365,31364,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.6669283,8.5235815,0,30,1,11.453019,0,2,2,2021,9,0,37,38,1,0,0,11.855732,11.855732,0,0,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,57.16,56.15,8.333333333333334,1,1,0,0,9,12,5,1,279.5,1772097.8,1441621,301164,0,4792.9536,0,6933.9775 +14399,17588,31366,-9,31365,31364,1,0,24,0,0,0,2,2,-9,0,4,7.1204104,7.0159779,0,0,0,-1116.7882,0,1,2,2021,8,0,20,25,1,0,1,7.6550903,7.6550903,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,7,12,3,1,862,0,0,0,0,0,0,1387.4856 +14399,17589,31367,-9,31365,31364,1,1,20,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1150.8751,1,1,2,2021,6,0,0,38,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,60.02,56.42,-9,-9,10,1,1,0,0,2,12,2,1,1124,187191.72,80827.258,0,0,0,0,0 +14400,17590,31368,31371,-9,-9,1,0,44,0,2,0,2,2,-9,0,4,7.2450471,7.2004285,0,24,-4,-84.871712,0,2,3,2021,11,0,20,20,1,0,0,8.6122293,8.6122293,.05,.05,0,0,0,0,0,0,0,0,0,1.1557244,0,51.24,58.84,58.47,50.22,8.333333333333334,1,1,0,0,12,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17590,31369,-9,31368,31371,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.5288,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17590,31370,-9,31368,31371,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.6848,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17590,31371,31368,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.7344036,9.1236153,0,24,4,-136.87427,0,2,3,2021,10,0,45,48,1,0,0,20.021332,20.021332,.05,.05,0,0,0,0,0,0,0,0,0,5.4421449,0,58.47,50.22,51.24,58.84,8.333333333333334,1,1,0,0,13,5,4,1,724.25,180558.36,2612.8445,144654.34,23068.375,0,0,3948.5244 +14400,17591,31372,-9,31368,31371,1,1,18,0,2,0,2,2,1,0,4,6.0093298,6.3611412,0,0,0,-980.35327,-9,2,2,2021,12,0,9,0,1,0,1,7.7088289,7.7088289,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.48,59.49,-9,-9,5,1,1,0,0,2,5,2,1,521,-11761.275,66268.164,0,0,0,0,-90.787704 +14401,17592,31373,31374,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.5705242,8.5086117,0,1,0,7.4172921,0,2,3,2021,11,0,44,38,1,0,0,12.474593,12.474593,0,0,0,0,0,0,0,0,0,0,0,0,0,59.04,51.29,54.69,57.47,5,1,1,0,0,10,2,5,1,1125.5,228979.58,159606.39,321569.53,164940.34,0,7004.0713,4041.8296 +14401,17592,31374,31373,-9,-9,1,1,34,0,0,0,2,2,-9,0,5,8.8900003,8.702713,0,1,0,-76.080208,-9,-9,-9,2021,12,0,55,0,1,0,0,13.931831,13.931831,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,59.04,51.29,6.666666666666667,1,1,0,0,1,2,5,1,1125.5,228979.58,159606.39,321569.53,164940.34,0,7004.0713,4041.8296 +14402,17593,31375,31376,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,6.977459,6.7782078,0,21,-2,-24.599964,0,2,2,2021,9,0,16,20,1,0,0,7.3181915,7.3181915,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.57,40.11,57.33,53.46,8.333333333333334,1,1,0,0,11,12,4,0,1318.5,72312.672,-69230.125,179223.59,0,0,3246.1895,1307.0947 +14402,17593,31376,31375,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.9781561,8.3086195,0,29,2,-96.239021,0,3,3,2021,12,1,55,49,1,1,0,7.2348566,7.2348566,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,62.57,40.11,8.333333333333334,1,1,0,0,8,12,4,0,1318.5,72312.672,-69230.125,179223.59,0,0,3246.1895,1307.0947 +14403,17594,31377,-9,31378,31379,1,0,17,0,0,1,3,0,0,0,2,0,0,0,0,0,-978.0274,-9,2,2,2021,27,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.56,25.09,-9,-9,1.666666666666667,1,1,0,1,0,6,4,0,1122.6666,252530.31,24481.859,149416.19,25747.244,0,0,2709.4548 +14403,17594,31378,31379,-9,-9,1,0,37,0,0,0,2,2,-9,0,3,7.8769608,8.0303612,5.8636098,6,-5,112.11995,0,3,3,2021,11,0,52,45,1,0,0,7.1368566,7.1368566,0,0,0,0,0,0,0,42,1,1,0,6.0362339,0,45.38,42.8,38.56,43.06,10,1,1,0,0,8,6,4,0,1122.6666,252530.31,24481.859,149416.19,25747.244,0,0,2709.4548 +14403,17594,31379,31378,-9,-9,1,1,42,0,0,0,2,2,-9,0,3,7.8035111,8.18859,0,6,5,66.324379,0,-9,-9,2021,11,0,42,40,1,0,0,7.1060424,7.1060424,.05,.05,0,0,0,0,0,42,1,1,0,0,0,38.56,43.06,45.38,42.8,8.333333333333334,1,1,0,0,8,6,4,0,1122.6666,252530.31,24481.859,149416.19,25747.244,0,0,2709.4548 +14404,17595,31380,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,0,7.3948188,7.2971401,0,0,-1086.5022,0,2,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,0,0,0,0,7.6764331,43.54,59.6,-9,-9,5,1,1,0,0,0,8,3,1,1852,715893.56,366422.03,355476.69,0,0,0,646.64838 +14405,17596,31381,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.3168707,6.4082737,0,0,-1162.1226,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,5.2829781,0,0,1,1,0,.14345397,6.1819725,66.54000000000001,22.28,-9,-9,6.666666666666667,1,1,0,0,0,1,2,0,328,462345.25,73363.867,356819.03,0,0,0,1152.8359 +14405,17597,31382,-9,31381,-9,1,1,54,0,0,0,2,2,-9,0,3,6.8422666,6.9989567,0,0,0,-1006.2265,0,3,-9,2021,10,0,61,40,1,1,0,2.0500176,2.0500176,0,0,0,0,0,0,0,0,1,1,0,6.81636,0,50,49,-9,-9,7,1,1,0,0,1,1,2,0,893,49804.535,0,0,0,0,0,978.28198 +14406,17598,31383,-9,31386,31384,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-930.5451,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14406,17598,31384,31386,-9,-9,1,1,32,0,3,0,2,2,-9,0,4,5.7974925,5.5997362,0,4,2,67.139282,0,2,2,2021,10,0,40,48,1,0,0,.88397908,.88397908,0,0,0,0,0,0,0,0,1,1,0,0,0,61.27,46.03,46.63,59.72,8.333333333333334,1,1,0,0,7,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14406,17598,31385,-9,31386,31384,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1004.2181,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14406,17598,31386,31384,-9,-9,1,0,30,0,3,0,2,2,-9,0,4,0,0,0,4,-2,43.777046,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,61.27,46.03,8.333333333333334,1,1,0,0,0,1,2,0,1237,18689.836,0,0,0,0,3324.7146,1404.791 +14407,17599,31387,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1057.8177,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.73,50.87,-9,-9,8.333333333333334,1,1,0,0,0,6,2,0,1000,-30587.445,0,88172.852,0,0,0,1346.4156 +14408,17600,31388,-9,31391,31389,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.0787,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14408,17600,31389,31391,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.2158079,8.2127352,0,11,2,-30.664106,0,2,2,2021,9,0,35,40,1,1,0,8.8679733,8.8679733,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,56,57.16,56.15,7,3,4,0,0,9,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14408,17600,31390,-9,31391,31389,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1087.9183,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14408,17600,31391,31389,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.1290274,8.2509775,0,11,-2,16.288687,0,1,1,2021,8,0,30,33,1,0,0,13.806437,13.806437,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52,56,6.666666666666667,3,4,0,0,9,8,4,0,521.25,120930.31,124241.3,0,0,0,0,3321.1196 +14409,17601,31392,-9,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.4582844,7.4829383,0,0,-951.12091,0,1,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.0214281,7.2785969,40.87,44.58,-9,-9,6.666666666666667,4,2,0,0,0,9,3,1,1069,678612.06,200488.39,347241.34,0,0,0,881.18427 +14410,17602,31393,31394,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,7.8137531,7.7267094,37,-1,71.413673,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.5263009,7.9067245,57.34,50.6,40.93,43.22,8.333333333333334,1,1,0,0,4,9,3,1,2835,1203162.8,824118.63,222170.95,0,0,0,3012.606 +14410,17602,31394,31393,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.1568012,7.3169465,37,1,-16.016146,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3020725,6.9020724,40.93,43.22,57.34,50.6,8.333333333333334,1,1,0,0,0,9,3,1,2835,1203162.8,824118.63,222170.95,0,0,0,3012.606 +14411,17603,31395,-9,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,8.2650642,8.2530565,0,0,-1034.8363,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7250662,8.1991758,62.49,55.09,-9,-9,10,1,1,0,0,0,9,4,1,672,823329.25,270725.03,351102.94,0,0,0,2973.3455 +14412,17604,31396,31397,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,8.3200121,8.2280941,0,32,-1,131.2809,0,2,2,2021,17,6,35,35,1,6,0,12.900881,12.900881,.05,.05,0,0,0,0,0,0,1,1,0,1.3206471,0,47.45,40.06,33.13,53.82,1.666666666666667,1,1,0,0,12,6,5,1,598,450773.44,177411.98,225248.59,105170.14,0,0,3867.8855 +14412,17604,31397,31396,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.5532961,8.4535179,0,32,1,-15.429015,0,2,3,2021,13,1,74,37,1,1,0,9.8950243,9.8950243,.05,.05,0,0,0,0,0,2,1,1,0,0,0,33.13,53.82,47.45,40.06,3.333333333333333,1,1,0,0,12,6,5,1,598,450773.44,177411.98,225248.59,105170.14,0,0,3867.8855 +14413,17605,31398,31400,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.5755777,8.4954395,0,9,0,86.371864,0,2,2,2021,13,2,37,37,1,2,0,20.867577,20.867577,0,0,0,0,0,0,0,0,1,1,0,6.8774238,0,49.91,58.02,50,57,8.333333333333334,1,1,0,0,10,13,5,1,1096.6666,206721.27,50308.926,167450.33,147660.66,15813.258,0,3530.397 +14413,17605,31399,-9,31398,31400,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.87054,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,5,1,1096.6666,206721.27,50308.926,167450.33,147660.66,15813.258,0,3530.397 +14413,17605,31400,31398,-9,-9,1,1,36,0,1,0,2,2,-9,0,4,7.9483552,7.7868843,0,9,0,-19.512928,0,-9,-9,2021,10,0,37,37,1,1,0,9.5160971,9.5160971,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,49.91,58.02,7,4,1,0,0,1,13,5,1,1096.6666,206721.27,50308.926,167450.33,147660.66,15813.258,0,3530.397 +14414,17606,31401,-9,31402,31404,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1076.3226,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14414,17606,31402,31404,-9,-9,1,0,40,1,2,0,1,1,-9,0,3,8.166255,8.0642776,0,9,2,-50.388119,0,2,2,2021,21,9,30,30,1,9,0,15.279396,15.279396,0,0,0,0,0,0,0,0,0,0,0,0,0,44.11,44.58,41.34,35.49,3.333333333333333,1,1,0,0,10,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14414,17606,31403,-9,31402,31404,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-883.70728,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14414,17606,31404,31402,-9,-9,1,1,38,1,2,0,1,1,-9,0,2,9.5716219,9.4637527,0,9,-2,44.775707,0,-9,-9,2021,24,10,37,37,1,10,0,33.44791,33.44791,.05,.05,0,0,0,0,0,0,0,0,0,1.8048105,0,41.34,35.49,44.11,44.58,5,1,1,0,0,13,9,5,1,1217,619660.13,184297.61,696483.63,332744.63,0,0,5248.6865 +14415,17607,31405,31406,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.8597155,8.4767618,0,1,-3,57.910088,-9,-9,-9,2021,12,1,38,0,1,1,0,18.26148,18.26148,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.93,51.64,43.69,57.43,8.333333333333334,1,1,0,0,10,1,5,1,507.5,401793.88,135629.56,129322.47,0,0,0,3903.4614 +14415,17607,31406,31405,-9,-9,1,1,44,0,0,0,1,1,-9,0,4,8.7014351,8.4935398,0,1,3,7.9792609,-9,2,2,2021,11,1,38,0,1,1,0,22.473457,22.473457,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.69,57.43,42.93,51.64,6.666666666666667,1,1,0,0,12,1,5,1,507.5,401793.88,135629.56,129322.47,0,0,0,3903.4614 +14416,17608,31407,31408,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,58,-10,0,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.403038,0,43.19,50.71,59.7,53.75,6.666666666666667,1,1,0,0,0,10,1,0,962,37845.25,0,277800.66,0,0,0,1117.8497 +14416,17608,31408,31407,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,58,10,0,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,59.7,53.75,43.19,50.71,3.333333333333333,1,1,0,0,0,10,1,0,962,37845.25,0,277800.66,0,0,0,1117.8497 +14417,17609,31409,31410,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,43,4,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,2.6990786,0,1,1,0,0,0,55.96,49.93,33,33.51,8.333333333333334,1,1,0,0,0,2,1,0,572.5,-28459.41,0,0,0,2272.2791,0,2173.2463 +14417,17609,31410,31409,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,0,0,7,-4,0,0,-9,-9,2021,30,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,33.51,55.96,49.93,0,1,1,0,0,0,2,1,0,572.5,-28459.41,0,0,0,2272.2791,0,2173.2463 +14417,17610,31411,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.9711909,7.9175057,0,0,0,-948.62653,0,-9,-9,2021,9,1,40,40,1,1,0,8.7844877,8.7844877,0,0,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,-9,-9,10,1,1,0,0,2,2,3,0,725,73174.531,0,0,0,0,0,1426.1892 +14417,17611,31412,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,3,0,0,0,0,0,-964.14954,-9,-9,-9,2021,14,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.83,35.97,-9,-9,8.333333333333334,1,1,0,0,0,2,2,0,341,23550.406,0,0,0,0,0,509.17526 +14418,17612,31413,31414,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.2752652,6.7765918,7,-7,8.862956,-9,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0584354,6.5072188,58.9,45.74,53.57,46.8,8.333333333333334,1,1,0,0,0,12,2,1,566,83622.242,20360.35,0,0,59.190674,2844.8027,1775.9685 +14418,17612,31414,31413,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,7,7,55.204781,-9,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.367362,0,53.57,46.8,58.9,45.74,8.333333333333334,1,1,0,0,0,12,2,1,566,83622.242,20360.35,0,0,59.190674,2844.8027,1775.9685 +14419,17613,31415,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.8243504,8.7941933,6.0016804,0,0,-1034.2205,0,3,3,2021,5,0,40,35,1,0,0,12.832297,12.832297,0,0,0,0,0,0,0,0,0,0,0,0,6.3740678,55.9,51.29,-9,-9,10,1,1,0,0,9,5,5,1,724,71736.961,-2431.5605,0,0,0,0,2742.3838 +14419,17614,31416,-9,-9,31415,1,1,28,0,0,0,2,2,-9,0,4,8.0065384,8.1850138,0,0,0,-1014.7296,0,2,2,2021,24,11,50,53,1,11,1,7.9259849,7.9259849,0,0,0,0,0,0,0,0,0,0,0,0,0,44.41,55.48,-9,-9,5,1,1,0,0,8,5,4,1,2232,-74314.484,0,0,0,2172.9541,0,1586.8795 +14420,17615,31417,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.1411657,7.8491087,0,0,0,-1085.7177,0,3,3,2021,9,0,40,40,1,0,0,8.6569223,8.6569223,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,11,4,1,1396,243686.95,231000.05,182687.3,74980.586,6423.8706,0,1865.8092 +14421,17616,31418,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,3,0,6.9499516,6.5703926,0,0,-1049.8252,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.748311,44.59,45.67,-9,-9,8.333333333333334,1,1,0,1,10,2,2,0,280,236677.88,93097.906,0,0,0,0,1445.9969 +14422,17617,31419,31420,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.5009766,8.1757851,0,5,-7,-36.845917,0,3,3,2021,3,0,55,35,1,0,0,12.450404,12.450404,.05,.05,.05,0,0,0,0,0,0,0,0,6.5754504,0,61.43,40.64,49.59,46.23,8.333333333333334,3,4,0,0,12,8,4,1,538,621030.38,255637.33,353869.75,53175.633,0,0,2480.4128 +14422,17617,31420,31419,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,0,6.6713848,6.6317701,5,7,33.724476,0,-9,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.5610442,6.4970708,49.59,46.23,61.43,40.64,6.666666666666667,3,4,0,0,9,8,4,1,538,621030.38,255637.33,353869.75,53175.633,0,0,2480.4128 +14423,17618,31421,31422,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,5.4576859,5.620286,10,-1,22.711784,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8423423,5.5503316,52,45,51.26,50.95,8,4,5,0,0,0,2,2,1,439,363434.88,65145.031,143029.14,27091.863,0,0,1589.16 +14423,17618,31422,31421,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,5.468153,5.1856008,10,1,-19.481045,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5682344,5.0992312,51.26,50.95,52,45,8.333333333333334,2,3,0,0,0,2,2,1,439,363434.88,65145.031,143029.14,27091.863,0,0,1589.16 +14424,17619,31423,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,7.3726707,7.1793509,0,0,-1027.394,0,3,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,3.2200346,.67692071,23.696609,0,1,1,0,0,7.4160242,54,44,-9,-9,8,1,1,0,0,0,8,3,1,1409,340121.66,198123.92,213300.69,0,0,0,2599.2659 +14425,17620,31424,31425,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,3.9706633,4.1642804,34,2,65.410278,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.0735106,53.07,30.04,56.86,50.75,8.333333333333334,1,1,0,0,0,2,2,0,563.5,42806.309,0,50491.043,0,0,0,1069.0496 +14425,17620,31425,31424,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,.17295374,.29464957,0,34,-2,43.324352,0,-9,-9,2021,7,0,20,0,1,0,0,.00091522053,.00091522053,0,0,0,0,0,0,0,106,1,1,0,0,0,56.86,50.75,53.07,30.04,8.333333333333334,1,1,0,0,8,2,2,0,563.5,42806.309,0,50491.043,0,0,0,1069.0496 +14425,17621,31426,-9,-9,-9,1,0,21,0,0,0,2,2,-9,0,3,7.4407506,7.3971295,0,0,0,-1057.7377,0,-9,-9,2021,9,0,32,0,1,0,0,6.0059495,6.0059495,0,0,0,0,0,0,0,2,1,1,0,0,0,49.23,55.95,-9,-9,8.333333333333334,1,1,0,0,2,2,3,0,1900,186115.91,0,0,0,0,0,565.07928 +14426,17622,31427,-9,-9,-9,1,0,48,0,1,0,3,3,-9,1,1,0,0,0,0,0,-1072.2261,-9,3,3,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.85,32.5,-9,-9,5,1,1,0,0,0,12,1,0,370,132659.22,0,172994.78,39389.844,0,2216.6287,2914.7004 +14427,17623,31428,31429,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,8.5035305,8.5542898,0,9,2,-46.231316,0,3,2,2021,11,0,35,30,1,0,0,15.701261,15.701261,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,62.18,36.18,6.666666666666667,1,1,0,0,11,2,4,1,606.5,169332,113261.98,138675.22,98233.555,10537.432,0,2524.7903 +14427,17623,31429,31428,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,7.1859555,7.416904,0,9,-2,-8.8729296,0,2,3,2021,11,1,40,45,1,1,0,4.9844718,4.9844718,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.18,36.18,54.2,57.49,8.333333333333334,1,1,0,0,9,2,4,1,606.5,169332,113261.98,138675.22,98233.555,10537.432,0,2524.7903 +14428,17624,31430,-9,-9,-9,1,1,28,0,0,0,1,1,0,0,4,0,0,0,0,0,-1057.3394,-9,-9,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.48,64.66,-9,-9,6.666666666666667,1,1,0,0,5,6,1,1,377,-101652.9,0,0,0,30230.973,0,44.26368 +14429,17625,31431,-9,31432,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1064.6971,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,7,3,1,713,6375.9199,-49624.797,0,0,0,0,920.9975 +14429,17625,31432,-9,-9,-9,1,0,47,0,1,0,3,3,-9,0,4,7.5950708,7.3855724,4.5547853,0,0,-874.79584,0,2,2,2021,11,0,15,18,1,0,0,12.154648,12.154648,.05,.05,0,0,0,0,0,0,1,1,0,4.2282972,0,41.76,57.81,-9,-9,5,1,1,0,0,6,7,3,1,713,6375.9199,-49624.797,0,0,0,0,920.9975 +14429,17626,31433,-9,31432,-9,1,1,21,0,1,0,2,2,-9,0,4,8.1240177,7.5137897,0,0,0,-1007.8934,0,3,-9,2021,17,5,58,48,1,5,1,5.4042578,5.4042578,0,0,0,0,0,0,0,0,1,1,0,0,0,30.66,67.07000000000001,-9,-9,6.666666666666667,1,1,0,0,4,7,4,1,693,-203629.05,0,0,0,0,0,374.34717 +14430,17627,31434,-9,-9,-9,1,0,37,0,1,0,1,1,-9,0,3,7.9746919,7.7896285,0,0,0,-985.1889,0,3,-9,2021,2,0,34,30,1,0,0,10.893016,10.893016,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.96,36.21,-9,-9,8.333333333333334,1,1,0,0,11,9,3,1,750,46855.336,49183.848,151532.88,56655.785,0,750.87701,574.41699 +14431,17628,31435,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1102.1689,0,3,3,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.11,21.31,-9,-9,1.666666666666667,2,3,0,0,4,10,1,1,576,91691.703,0,0,0,0,-339.57718,2562.3008 +14432,17629,31436,-9,-9,-9,1,0,30,0,0,0,2,2,-9,0,4,8.3090715,8.5488558,0,0,0,-854.09259,0,-9,-9,2021,11,0,40,50,1,2,0,12.425971,12.425971,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,56,-9,-9,7,1,1,0,0,1,9,5,1,898,-40313.277,-60195.238,0,0,712.90851,0,2010.178 +14433,17630,31437,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.2671585,7.1619959,0,0,0,-935.78888,0,-9,-9,2021,9,0,19,18,1,0,0,9.8889179,9.8889179,.05,.05,0,0,0,0,0,0,1,1,0,3.1605935,0,59.53,56.44,-9,-9,8.333333333333334,1,1,0,0,8,1,3,1,2221,-98169.336,64793.055,-81321.781,0,0,0,724.69409 +14434,17631,31438,-9,-9,-9,1,0,41,0,1,0,2,2,-9,0,2,7.191802,6.9124231,0,0,0,-1059.2717,0,2,2,2021,15,4,24,16,1,4,0,9.1995306,9.1995306,0,0,0,0,0,0,0,0,1,1,0,0,0,50.65,29.75,-9,-9,6.666666666666667,1,1,0,0,7,9,2,0,589,-27330.063,0,0,0,0,0,1821.17 +14435,17632,31439,31440,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,0,0,0,38,-4,36.200161,0,2,2,2021,11,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,2,0,0,0,1.5893711,0,42.57,46.92,56.78,41.83,6.666666666666667,1,1,0,0,0,9,5,1,954,792143.19,297078.44,417158.13,37973.711,0,0,2475.4795 +14435,17632,31440,31439,-9,-9,1,1,57,0,0,0,1,1,-9,0,2,8.8898067,9.0014057,0,38,4,-90.868469,0,3,3,2021,7,0,36,35,1,0,0,28.812273,28.812273,.05,.05,0,0,0,0,0,0,0,0,0,1.8914862,0,56.78,41.83,42.57,46.92,6.666666666666667,1,1,0,0,8,9,5,1,954,792143.19,297078.44,417158.13,37973.711,0,0,2475.4795 +14435,17633,31441,-9,31439,31440,1,0,22,0,0,0,1,1,-9,0,4,7.9139938,8.0492353,0,0,0,-1063.1506,-9,2,3,2021,17,5,37,0,1,5,1,8.2239075,8.2239075,.05,.05,0,0,0,0,0,0,0,0,0,.25292233,0,42.11,57.44,-9,-9,6.666666666666667,1,1,0,0,5,9,4,1,1959,-89760.891,86683.641,0,0,3579.3367,0,1217.6409 +14436,17634,31442,31443,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.9158525,7.9931345,0,17,-2,97.964798,0,2,3,2021,10,0,53,22,1,0,0,5.7949834,5.7949834,0,0,0,0,0,0,0,0,1,1,0,0,0,49,55,35.43,42.24,0,1,1,0,0,11,10,4,1,515.66669,865890.31,805320.19,180478.11,94167.086,9959.6895,0,2533.2219 +14436,17634,31443,31442,-9,-9,1,1,47,0,1,0,2,2,-9,0,2,7.9130034,8.1701612,0,10,2,89.655159,0,-9,-9,2021,12,0,35,35,1,0,0,8.4854717,8.4854717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.43,42.24,49,55,6.666666666666667,1,1,0,0,11,10,4,1,515.66669,865890.31,805320.19,180478.11,94167.086,9959.6895,0,2533.2219 +14436,17634,31444,-9,31442,31443,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1059.5251,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,10,4,1,515.66669,865890.31,805320.19,180478.11,94167.086,9959.6895,0,2533.2219 +14436,17635,31445,-9,31442,31443,1,1,19,0,1,0,1,1,-9,0,2,7.3578973,7.3007436,0,0,0,-1005.181,0,2,2,2021,17,7,35,35,1,7,1,5.2811866,5.2811866,0,0,0,0,0,0,1.2363507,0,1,1,0,2.1621118,0,37.93,54.93,-9,-9,5,1,1,0,0,3,10,3,1,203,-104388.15,0,0,0,0,0,1690.9128 +14437,17636,31446,-9,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,8.4317102,8.2736053,0,0,0,-908.06726,0,2,3,2021,17,5,40,34,1,5,0,11.986256,11.986256,0,0,0,0,0,0,0,0,1,1,0,0,0,30.94,61.65,-9,-9,5,1,1,0,1,10,9,4,1,542,397210.78,128045.4,206222.17,233465.44,0,0,1435.0018 +14438,17637,31447,31448,-9,-9,1,1,87,0,0,0,3,3,-9,0,1,0,2.8254516,2.4706032,27,0,9.2363453,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.9822643,2.7583926,51.53,14.8,22.33,24,3.333333333333333,1,1,0,0,0,5,2,0,418.5,-56481.227,68553.414,0,0,0,0,1540.2368 +14438,17637,31448,31447,-9,-9,1,0,87,0,0,0,3,3,-9,0,1,0,5.5913024,5.5333381,27,0,54.115822,0,3,3,2021,24,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.2715359,22.33,24,51.53,14.8,3.333333333333333,1,1,0,0,0,5,2,0,418.5,-56481.227,68553.414,0,0,0,0,1540.2368 +14439,17638,31449,-9,31450,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.5613,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,2,0,1204,135706.66,12711.553,123661.47,172938.83,0,0,1400.3751 +14439,17638,31450,-9,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,7.4064207,7.3874617,0,0,0,-947.36823,-9,2,2,2021,12,2,26,0,1,2,0,7.5228,7.5228,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.22,46.37,-9,-9,3.333333333333333,1,1,0,0,1,10,2,0,1204,135706.66,12711.553,123661.47,172938.83,0,0,1400.3751 +14440,17639,31451,31452,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,10,3,157.17172,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,62.99,41.32,53,47,6.666666666666667,1,1,0,0,0,5,3,1,470.5,673384.69,563922.75,357244.94,115296.84,18101.715,0,1665.5706 +14440,17639,31452,31451,-9,-9,1,1,77,0,0,0,1,1,-9,0,3,0,7.6784401,8.109437,10,-3,103.85525,0,2,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,27,1,1,0,3.0320227,7.9692383,53,47,62.99,41.32,7,1,1,0,0,0,5,3,1,470.5,673384.69,563922.75,357244.94,115296.84,18101.715,0,1665.5706 +14440,17640,31453,-9,31451,31452,1,0,46,0,0,0,2,2,-9,1,3,0,0,0,0,0,-1067.8597,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.1,34.14,-9,-9,3.333333333333333,1,1,0,0,0,5,1,1,1033,50672.391,0,0,0,0,0,1597.5338 +14441,17641,31454,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,7.6791682,7.8298173,0,0,0,-1112.8628,0,2,2,2021,16,5,38,37,1,5,0,5.9420037,5.9420037,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.86,64.55,-9,-9,6.666666666666667,1,1,0,0,12,5,3,0,1474,268106.38,-44596.211,0,0,0,721.21576,813.24005 +14442,17642,31455,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,1,0,5.6141176,5.8794479,0,0,-904.18219,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,5.5954227,42.28,16.13,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,395,394174.72,-20885.352,270357.03,0,0,0,1199.0323 +14442,17643,31456,31457,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.0577812,8.2034483,0,7,3,-82.80439,0,3,3,2021,10,0,40,40,1,1,0,8.1568251,8.1568251,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,51,49,27.08,47.33,7,1,1,0,0,8,11,4,1,909,1059445.4,724653.75,167428,0,0,0,2182.8271 +14442,17643,31457,31456,31455,-9,1,0,56,0,0,0,1,1,-9,0,2,7.9419785,7.9950004,0,7,-3,135.55638,0,2,3,2021,19,7,37,37,1,7,0,9.799737,9.799737,0,0,0,0,0,0,0,0,1,1,0,0,0,27.08,47.33,51,49,3.333333333333333,1,1,0,0,8,11,4,1,909,1059445.4,724653.75,167428,0,0,0,2182.8271 +14443,17644,31458,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.3634415,7.1417837,0,0,-1019.0909,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.2585609,0,28.314917,0,1,1,0,0,7.7789159,67.38,39.42,-9,-9,8.333333333333334,1,1,0,0,0,9,3,0,215,450028.47,149679.55,229357.06,0,0,0,1977.0012 +14444,17645,31459,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,6.482862,6.5582228,0,0,-1046.8193,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,3.4713778,5.7930059,56.77,52.22,-9,-9,10,1,1,0,0,0,2,2,1,416,297012.63,75948.188,104541.69,0,690.21387,0,2420.7268 +14445,17646,31460,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,7.1120591,6.5801392,0,0,-995.4483,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2931788,7.2118168,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,1330,335668.06,126943.93,160602.69,0,0,2359.488,964.80969 +14446,17647,31461,31462,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.8400855,7.7094908,51,-5,53.352337,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.7433968,8.2159119,51,46,53,46,7,3,4,0,0,0,8,3,1,804.5,2702235.5,639299.19,1425931.9,0,0,0,2829.9995 +14446,17647,31462,31461,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.3664627,5.4110646,8,5,-66.90509,0,2,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1954141,53,46,51,46,8,1,1,0,0,2,8,3,1,804.5,2702235.5,639299.19,1425931.9,0,0,0,2829.9995 +14447,17648,31463,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3711414,8.216259,0,0,0,-970.34326,0,2,2,2021,12,0,27,27,1,0,0,16.610195,16.610195,.05,.05,.05,0,0,0,0,2,1,1,0,0,0,47,49,-9,-9,5,1,1,0,0,10,12,4,1,283,179189.47,93166.578,53002.988,0,0,0,1091.7891 +14448,17649,31464,31465,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,7.8980818,8.1144743,0,7,6,98.300323,0,-9,-9,2021,12,0,40,41,1,0,0,8.1146736,8.1146736,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.94,41.91,56.94,49.53,5,1,1,0,0,12,11,5,1,1991.5,-3232.6379,9764.9463,0,0,1785.9714,0,2818.1016 +14448,17649,31465,31464,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.2771502,8.2922373,0,7,-6,-115.05677,0,2,2,2021,11,2,48,43,1,2,0,12.851149,12.851149,.05,.05,0,0,0,0,0,0,0,0,0,0,0,56.94,49.53,52.94,41.91,6.666666666666667,1,1,0,0,12,11,5,1,1991.5,-3232.6379,9764.9463,0,0,1785.9714,0,2818.1016 +14449,17650,31466,-9,31467,31468,1,0,13,2,3,1,3,0,-9,0,3,0,0,0,0,0,-1009.8644,-9,1,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31467,31468,-9,-9,1,0,36,2,3,0,1,1,-9,0,1,8.3220806,8.0211535,0,4,-2,-73.039993,0,1,1,2021,32,12,17,17,1,12,0,24.03838,24.03838,0,0,0,0,0,0,0,0,1,1,0,0,0,19.91,34.22,24.56,56.78,3.333333333333333,1,1,0,1,8,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31468,31467,-9,-9,1,1,38,2,3,0,1,1,-9,0,2,8.3540478,8.4322414,0,4,2,-42.949757,0,-9,-9,2021,18,6,38,38,1,6,0,10.154189,10.154189,.05,.05,0,0,0,0,0,0,1,1,0,3.0953438,0,24.56,56.78,19.91,34.22,1.666666666666667,1,1,0,1,8,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31469,-9,31467,31468,1,0,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-947.50983,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14449,17650,31470,-9,31467,31468,1,1,2,2,3,1,3,0,-9,0,4,0,0,0,0,0,-1039.7166,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,4,0,500.20001,426518.84,253277.66,338784.56,184140.44,12567.208,0,3363.8052 +14450,17651,31471,31473,-9,-9,1,1,39,0,3,0,2,2,-9,0,1,0,0,0,7,2,-12.665933,0,2,-9,2021,22,9,0,0,3,9,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.24,45.2,30.77,64.34,5,1,1,0,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31472,-9,31473,31471,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-916.59705,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31473,31471,-9,-9,1,0,37,0,3,0,1,1,-9,0,4,8.7300014,8.82829,0,7,-2,59.728603,0,2,3,2021,18,6,37,37,1,6,0,22.801651,22.801651,.05,.05,0,0,0,0,0,2,1,1,0,0,0,30.77,64.34,32.24,45.2,6.666666666666667,1,1,0,0,9,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31474,-9,31473,31471,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-935.95105,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14450,17651,31475,-9,31473,31471,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-866.13159,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,3,1,747.59998,58819.074,5282.6943,159612.59,92015.688,0,0,2771.8542 +14451,17652,31476,-9,-9,-9,1,0,27,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1018.9476,0,3,3,2021,33,12,0,4,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33,29,-9,-9,5,1,1,1,1,3,4,1,0,334,-10915.025,0,0,0,0,0,857.39032 +14452,17653,31477,31478,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.6605821,7.9595284,52,1,103.62707,0,3,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8415484,7.6657095,62.85,38.46,60.12,54.8,8.333333333333334,1,1,0,0,0,4,4,1,479.5,1769983,830072.5,383005.25,0,0,0,3917.6992 +14452,17653,31478,31477,-9,-9,1,1,71,0,0,0,1,1,-9,0,4,0,7.9821043,8.1151695,52,-1,127.93887,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2895117,8.0096369,60.12,54.8,62.85,38.46,10,1,1,0,0,0,4,4,1,479.5,1769983,830072.5,383005.25,0,0,0,3917.6992 +14453,17654,31479,31480,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,7.3343902,7.4217949,11,1,167.12993,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,120,1,0,1,3.9039629,7.3390226,55.9,52.64,47.62,57.75,6.666666666666667,1,1,0,1,8,9,2,1,742.5,727442.38,419543.69,264321.16,14512.229,0,3033.8618,872.47107 +14453,17654,31480,31479,-9,-9,1,0,61,0,0,0,3,3,-9,1,3,0,0,0,11,-1,-24.560476,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.62,57.75,55.9,52.64,6.666666666666667,1,1,1,0,0,9,2,1,742.5,727442.38,419543.69,264321.16,14512.229,0,3033.8618,872.47107 +14453,17655,31481,-9,31480,31479,1,1,30,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1085.8811,-9,2,2,2021,8,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45.49,53.7,-9,-9,8.333333333333334,1,1,1,0,6,9,1,1,265,-201698.84,0,0,0,0,0,949.3324 +14453,17656,31482,-9,31480,-9,1,1,25,0,0,0,2,2,-9,0,3,7.4662046,7.677743,0,0,0,-1038.8224,0,3,-9,2021,16,4,37,-9,1,4,1,5.9775858,5.9775858,.05,.05,0,0,0,0,0,0,1,0,1,4.6921926,0,53.48,33.65,-9,-9,3.333333333333333,1,1,0,0,8,9,3,1,1166,-64517.129,-51229.613,0,0,0,0,1107.6445 +14454,17657,31483,31485,-9,-9,1,1,37,0,3,0,3,3,-9,0,4,7.224215,7.4123249,0,5,-3,17.070911,0,-9,-9,2021,10,0,18,18,1,1,0,12.086891,12.086891,0,0,0,0,0,0,0,0,1,1,0,0,0,51,57,54.67,23.84,7,2,3,0,0,1,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17657,31484,-9,31485,31483,1,1,16,0,3,1,3,0,-9,0,3,0,0,0,0,0,-951.08466,-9,2,3,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,67.36,32.42,-9,-9,10,2,3,0,0,0,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17657,31485,31483,-9,-9,1,0,40,0,3,0,2,2,-9,1,1,0,0,0,17,3,-91.478821,0,3,3,2021,11,1,0,7,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,23.84,51,57,5,2,3,0,1,4,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17657,31486,-9,31485,31483,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1060.7906,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,449.75,125881.75,90833.836,0,0,0,292.89111,3560.6719 +14454,17658,31487,-9,31485,31483,1,1,18,0,3,1,2,0,0,0,2,0,0,0,0,0,-1099.4272,-9,2,3,2021,20,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.33,45.67,-9,-9,3.333333333333333,2,3,0,0,2,6,1,1,696,118678.83,0,0,0,0,0,0 +14454,17659,31488,-9,31485,31483,1,0,18,0,3,1,2,0,0,0,4,0,0,0,0,0,-1030.1292,-9,2,3,2021,25,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.21,57.32,-9,-9,1.666666666666667,2,3,0,1,0,6,1,1,466,127078.57,0,0,0,0,0,0 +14455,17660,31489,-9,-9,-9,1,0,27,0,1,0,2,2,-9,0,3,6.6957026,7.0445242,0,0,0,-964.9751,-9,3,2,2021,29,10,25,0,1,10,1,5.5213223,5.5213223,0,0,0,0,0,0,0,0,1,1,0,0,0,6.83,63.37,-9,-9,5,2,3,0,0,7,8,2,0,247,0,0,0,0,0,0,598.32953 +14456,17661,31490,-9,31491,-9,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1020.0164,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,252.5,64807.449,12805.005,0,0,0,1182.1355,2107.0432 +14456,17661,31491,-9,-9,-9,1,0,49,0,1,0,2,2,-9,1,2,7.9216094,7.9365644,0,0,0,-1010.7067,0,2,2,2021,11,2,30,30,1,2,0,10.341253,10.341253,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.32,44.24,-9,-9,3.333333333333333,1,1,0,0,13,13,3,1,252.5,64807.449,12805.005,0,0,0,1182.1355,2107.0432 +14456,17662,31492,-9,31491,-9,1,1,20,0,1,0,2,2,-9,0,4,6.925487,6.8388815,0,0,0,-922.45001,0,2,-9,2021,12,1,32,32,1,1,1,5.0455799,5.0455799,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.67,55.51,-9,-9,1.666666666666667,1,1,0,0,4,13,2,1,138,-171379.39,14823.981,0,0,0,0,564.6297 +14457,17663,31493,31495,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.329874,8.6049461,0,16,1,-70.40815,0,3,3,2021,7,0,46,48,1,0,0,13.483725,13.483725,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,13,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14457,17663,31494,-9,31495,31493,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.24091,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14457,17663,31495,31493,-9,-9,1,0,39,0,2,0,2,2,-9,0,5,8.1344433,8.1308823,0,16,-1,113.1584,0,3,3,2021,6,0,34,22,1,0,0,10.591236,10.591236,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,13,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14457,17663,31496,-9,31495,31493,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-940.9494,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,1213.75,520766.44,351458.03,144879.38,52267.555,98.5588,254.21118,3873.0774 +14458,17664,31497,31498,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,0,0,51,-4,0,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,73.684753,0,0,1,1,0,3.6953671,0,50,47,51.24,58.84,7,1,1,0,0,0,4,1,1,1124,159154.23,74492.344,116713.55,0,0,0,1430.4301 +14458,17664,31498,31497,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,0,0,51,4,0,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.5546088,0,51.24,58.84,50,47,5,1,1,0,0,0,4,1,1,1124,159154.23,74492.344,116713.55,0,0,0,1430.4301 +14459,17665,31499,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,5.9537387,5.8126779,0,0,-1024.5542,-9,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.007762,61.58,37.81,-9,-9,8.333333333333334,1,1,0,0,0,9,2,0,612,211512.94,76892.969,0,0,0,1146.8378,1699.6681 +14460,17666,31500,31501,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.7100401,8.4999361,8,2,7.0048108,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1397848,8.8880959,57.16,56.15,57.73,54.53,8.333333333333334,1,1,0,0,7,8,5,1,799.5,2779986.5,1781318,616536.63,0,0,0,5626.5488 +14460,17666,31501,31500,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,8.0101299,8.0168171,43,-2,-19.900599,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0749609,8.2573709,57.73,54.53,57.16,56.15,10,1,1,0,0,4,8,5,1,799.5,2779986.5,1781318,616536.63,0,0,0,5626.5488 +14461,17667,31502,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,4.5033798,4.7010756,0,0,-1004.4124,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.7854481,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,13,10,2,1,396,-165798.03,52211.188,0,0,0,1642.1124,789.31824 +14462,17668,31503,31505,-9,-9,1,1,29,1,1,0,2,2,-9,0,5,8.4518452,8.1373129,0,7,5,29.808844,0,2,2,2021,8,0,38,38,1,0,0,12.193937,12.193937,.05,.05,.05,0,0,0,0,0,1,1,0,5.9374661,0,51.14,60.45,52.37,56.93,8.333333333333334,1,1,0,0,9,4,3,1,944.33331,-4381.9531,-11610.222,0,0,669.64569,319.70865,1851.9923 +14462,17668,31504,-9,31505,31503,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-828.9472,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,3,1,944.33331,-4381.9531,-11610.222,0,0,669.64569,319.70865,1851.9923 +14462,17668,31505,31503,-9,-9,1,0,24,1,1,0,2,2,-9,0,4,6.634943,6.3322392,0,7,-5,46.398773,0,2,2,2021,5,1,13,13,1,1,0,5.8108811,5.8108811,0,0,0,0,0,0,0,0,1,1,0,0,0,52.37,56.93,51.14,60.45,10,1,1,0,0,9,4,3,1,944.33331,-4381.9531,-11610.222,0,0,669.64569,319.70865,1851.9923 +14463,17669,31506,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.45496,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,9.3635979,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,11,8,1,1,195,194656.77,0,332654.75,7243.2129,0,0,7295.208 +14464,17670,31507,-9,31508,-9,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-976.45477,-9,2,-9,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,10,2,0,507,23625.309,0,0,0,0,0,1233.5825 +14464,17670,31508,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,2,6.7231226,7.2616119,6.0884852,0,0,-988.97241,0,2,2,2021,19,7,20,20,1,7,0,4.8407812,4.8407812,0,0,0,0,0,0,0,0,1,1,0,5.8728361,0,22.21,33.44,-9,-9,1.666666666666667,1,1,0,0,6,10,2,0,507,23625.309,0,0,0,0,0,1233.5825 +14465,17671,31509,-9,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,0,8.0328102,8.1436472,0,0,-899.01251,0,3,2,2021,4,0,0,54,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,7.8119149,64.23,44.69,-9,-9,10,1,1,0,0,11,5,4,1,305,1911409.6,589453.44,452417.75,0,0,0,1596.1908 +14466,17672,31510,31511,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,7.1743102,7.2869291,0,7,-2,70.489975,-9,-9,-9,2021,9,0,40,0,1,1,0,3.6597614,3.6597614,.05,.05,0,0,0,0,0,0,0,0,0,5.053297,0,53,55,43.91,47.36,8,4,1,0,0,1,13,3,1,388.5,597862.88,291502.44,214594.09,0,0,0,793.76581 +14466,17672,31511,31510,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,6.8451066,7.0621305,0,7,2,66.738464,0,2,2,2021,10,0,30,35,1,0,0,3.7956955,3.7956955,0,0,0,0,0,0,0,0,0,0,0,0,0,43.91,47.36,53,55,1.666666666666667,1,1,0,0,8,13,3,1,388.5,597862.88,291502.44,214594.09,0,0,0,793.76581 +14467,17673,31512,-9,31516,31513,1,1,3,1,5,1,3,0,-9,0,4,0,0,0,0,0,-778.45935,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31513,31516,31518,-9,1,1,45,1,5,0,1,1,-9,0,3,8.6256037,8.7077837,0,24,5,112.76273,0,3,3,2021,14,2,40,20,1,2,0,17.475622,17.475622,0,0,0,0,0,0,0,14.5,1,1,0,0,0,43.81,44.71,50,55,8.333333333333334,2,3,0,0,8,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31514,-9,31516,31513,1,0,14,1,5,1,3,0,-9,0,2,0,0,0,0,0,-918.50171,-9,3,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,43,-9,-9,5,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31515,-9,31516,31513,1,0,0,1,5,1,3,0,-9,0,4,0,0,0,0,0,-914.97357,-9,3,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31516,31513,-9,-9,1,0,40,1,5,0,3,3,-9,0,4,0,0,0,24,-5,10.890405,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,43.81,44.71,7,2,3,0,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17673,31517,-9,31516,31513,1,1,10,1,5,1,3,0,-9,0,4,0,0,0,0,0,-1043.9451,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,7,3,1,1255,43832.133,-4794.4746,178252.22,118488.41,0,0,1993.0072 +14467,17674,31518,-9,-9,-9,1,0,77,1,5,0,2,2,-9,0,3,0,0,0,0,0,-985.73273,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,7,1,1,1247,0,0,0,0,0,0,1239.2678 +14467,17675,31519,-9,31516,31513,1,1,19,1,5,1,2,0,0,0,4,0,0,0,0,0,-983.05585,-9,3,1,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,2,3,0,0,0,7,1,1,795,0,0,0,0,0,0,352.15234 +14467,17676,31520,-9,31516,31513,1,0,18,1,5,1,3,0,0,0,4,0,0,0,0,0,-924.67804,-9,3,1,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,2,3,0,0,0,7,1,1,378,-152313.27,0,0,0,0,0,218.91422 +14468,17677,31521,31522,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,8.2630835,7.8976593,12,0,79.155861,0,-9,-9,2021,14,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,6.5860949,8.3753262,58.15,52.91,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1090,1077310,672018.63,240584.83,0,0,0,3909.8755 +14468,17677,31522,31521,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.1993289,8.476161,7.7182283,12,0,61.04557,0,3,3,2021,12,3,14,24,1,3,0,9.3514738,9.3514738,.05,.05,0,0,0,0,0,0,0,0,0,0,7.8766427,51.83,57.2,58.15,52.91,8.333333333333334,1,1,0,0,14,2,5,1,1090,1077310,672018.63,240584.83,0,0,0,3909.8755 +14469,17678,31523,-9,-9,-9,1,0,57,0,0,0,2,2,-9,1,1,0,0,0,0,0,-977.41119,0,2,2,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,11.52,35.72,-9,-9,0,1,1,0,0,8,12,1,0,311,-154112.78,0,0,0,0,0,804.6955 +14470,17679,31524,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.0531244,7.2862854,5.899404,0,0,-986.83447,0,2,2,2021,10,1,16,16,1,1,0,9.2539473,9.2539473,.05,.05,0,0,0,0,0,42,0,0,0,6.1114669,6.1956315,52.38,55.6,-9,-9,8.333333333333334,1,1,0,0,10,10,3,1,431,327569.09,-114141.11,236723.38,0,0,-1232.1654,1344.3853 +14471,17680,31525,31526,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,8.242074,7.9445667,0,6,-1,-51.65654,0,-9,-9,2021,8,0,50,40,1,0,0,7.7147527,7.7147527,.05,.05,0,0,0,0,0,0,1,1,0,5.4128642,0,55,52,30.45,64.19,8,2,3,0,0,1,9,4,1,973,2325874.5,1067866.5,697368.19,0,0,0,3653.9834 +14471,17680,31526,31525,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,7.3660345,7.1022472,39,1,-142.46815,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.822794,7.1549864,30.45,64.19,55,52,10,2,3,0,0,0,9,4,1,973,2325874.5,1067866.5,697368.19,0,0,0,3653.9834 +14472,17681,31527,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.616025,7.8588276,0,0,-1088.0736,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6128769,7.9199939,56.57,57.78,-9,-9,8.333333333333334,1,1,0,0,7,8,3,1,546,851887.44,224691.66,187337.94,0,0,0,1855.8121 +14473,17682,31528,31529,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.2102842,8.0762091,0,6,-3,48.108734,0,3,3,2021,9,0,41,41,1,0,0,12.067725,12.067725,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.29,55.07,52.95,40.58,6.666666666666667,1,1,0,0,7,6,4,0,1190.5,50210.582,-43687.637,0,0,0,0,2296.0867 +14473,17682,31529,31528,-9,-9,1,0,40,0,0,0,3,3,-9,0,3,7.2363834,7.2340593,0,6,3,-14.966006,0,3,3,2021,10,1,32,35,1,1,0,6.2594185,6.2594185,0,0,0,0,0,0,0,0,0,0,0,0,0,52.95,40.58,37.29,55.07,1.666666666666667,1,1,0,0,7,6,4,0,1190.5,50210.582,-43687.637,0,0,0,0,2296.0867 +14473,17683,31530,-9,31529,31528,1,0,18,0,0,0,2,2,-9,0,3,7.4757171,7.3379908,0,0,0,-958.38715,0,3,2,2021,9,1,41,0,1,1,1,4.4887695,4.4887695,0,0,0,0,0,0,0,0,0,0,0,0,0,43.37,57.28,-9,-9,8.333333333333334,1,1,0,0,1,6,3,0,116,-154311.8,0,0,0,0,0,1302.5837 +14474,17684,31531,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.7341275,6.7355452,0,0,-991.77667,0,2,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8688579,44.74,48.37,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,202,404128.38,142090.42,223362.33,0,0,0,1103.3594 +14475,17685,31532,-9,-9,-9,1,0,94,0,0,0,3,3,-9,0,3,0,5.7625809,5.4417186,0,0,-969.98633,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.6253076,57.75,22.36,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,606,186639.33,51516.883,259171.41,0,0,0,569.07361 +14476,17686,31533,31534,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,0,0,7,-4,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,12.157104,0,0,1,1,0,2.0263717,0,50.22,29.55,54,46,8.333333333333334,1,1,0,0,0,13,1,1,331,70882.586,0,0,0,0,0,2767.1665 +14476,17686,31534,31533,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,7,4,0,-9,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,50.22,29.55,8,1,1,0,0,0,13,1,1,331,70882.586,0,0,0,0,0,2767.1665 +14476,17687,31535,-9,31533,31534,1,0,47,0,0,0,2,2,-9,0,5,6.63585,6.5921588,0,0,0,-1002.1972,0,3,3,2021,12,0,12,12,1,0,0,6.888236,6.888236,0,0,0,0,0,0,0,42,1,1,0,2.6994977,0,46.08,50.54,-9,-9,8.333333333333334,1,1,0,0,8,13,2,1,700,-110052.11,0,0,0,0,0,288.4744 +14477,17688,31536,31537,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.9670792,8.7105017,0,6,0,-39.447922,0,-9,-9,2021,9,0,37,40,1,1,0,21.628395,21.628395,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,52,54.51,7,1,1,0,0,1,7,4,1,370,835774,778980.13,232324.84,111997.95,1137.5525,0,3882.3779 +14477,17688,31537,31536,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.5586467,7.8894844,0,21,0,-43.645355,0,2,2,2021,12,1,30,26,1,1,0,7.2092295,7.2092295,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,52,55,6.666666666666667,1,1,0,0,7,7,4,1,370,835774,778980.13,232324.84,111997.95,1137.5525,0,3882.3779 +14478,17689,31538,31541,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,7.9813967,7.9940238,0,10,-1,13.460799,-9,2,2,2021,10,0,40,0,1,0,0,6.3358054,6.3358054,.05,.05,0,0,0,0,0,0,0,0,0,6.2797828,0,45.49,50.81,53.61,51.1,8.333333333333334,1,1,0,0,11,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14478,17689,31539,-9,31541,31538,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.40131,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14478,17689,31540,-9,31541,31538,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.3316,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14478,17689,31541,31538,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,8.0939913,8.1571083,0,10,1,31.84688,0,1,2,2021,8,0,39,41,1,0,0,7.415092,7.415092,0,0,0,0,0,0,0,0,0,0,0,0,0,53.61,51.1,45.49,50.81,8.333333333333334,1,1,0,0,10,1,4,1,2208,210921.86,115889.31,173067.28,67983.492,0,0,2618.0396 +14479,17690,31542,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-890.77966,0,-9,-9,2021,5,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,53.51,60.74,-9,-9,10,1,1,1,1,0,11,1,0,989,-181294.16,0,0,0,0,-145.95984,508.73599 +14479,17691,31543,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,1,0,0,0,0,0,-937.00641,0,-9,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,28.89,42.61,-9,-9,5,1,1,1,1,2,11,1,0,463,117412.95,0,0,0,0,0,625.14038 +14480,17692,31544,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-876.6709,0,3,3,2021,26,11,0,0,4,11,0,0,0,0,0,0,1,0,20.641079,0,0,1,1,0,0,0,39.38,22.52,-9,-9,3.333333333333333,4,5,0,0,0,11,1,0,644,279257.66,0,263931.28,0,0,0,1766.0403 +14481,17693,31545,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,5.6697707,5.8582907,0,0,-1060.3326,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4652381,5.6732364,42.79,55.84,-9,-9,8.333333333333334,1,1,0,0,4,8,2,1,723,533637,283212,346367.78,0,0,0,1401.2523 +14482,17694,31546,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,8.3112192,8.3983326,0,0,0,-959.13367,0,3,3,2021,7,0,37,37,1,0,0,11.992822,11.992822,.05,.05,.05,0,0,0,0,0,0,0,0,2.5720768,0,62.1,37.75,-9,-9,8.333333333333334,1,1,0,0,10,13,4,0,2176,167861.23,76731.648,127327.21,0,0,0,1663.4385 +14482,17695,31547,-9,31546,-9,1,1,21,0,0,0,2,2,-9,0,3,7.3450627,7.4292612,0,0,0,-943.2688,0,2,-9,2021,21,7,40,45,1,7,1,5.2844777,5.2844777,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.33,55.93,-9,-9,1.666666666666667,1,1,0,0,3,13,3,0,1741,-75246.797,-26665.883,0,0,0,0,740.18127 +14483,17696,31548,31549,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.2615075,7.4096684,47,-4,148.05423,0,2,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4517493,53.73,49.64,58.32,50.22,8.333333333333334,1,1,0,0,0,12,5,1,229.5,1519597.6,589339.38,716346.44,0,0,0,4437.1211 +14483,17696,31549,31548,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,8.8456402,8.502738,47,4,-50.819309,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3895764,8.7873344,58.32,50.22,53.73,49.64,8.333333333333334,1,1,0,0,0,12,5,1,229.5,1519597.6,589339.38,716346.44,0,0,0,4437.1211 +14484,17697,31550,-9,-9,-9,1,1,72,0,0,0,2,2,-9,0,3,0,6.10185,6.3025346,0,0,-1024.5061,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8128395,6.1388974,48.45,57.49,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,506,52319.039,84227.789,0,0,0,0,1927.5522 +14484,17698,31551,-9,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.130106,8.0411215,0,0,0,-997.66357,0,3,3,2021,11,0,30,30,1,0,0,11.121781,11.121781,.05,.05,0,0,0,0,0,0,1,1,0,.12192947,0,50.74,46.8,-9,-9,8.333333333333334,1,1,0,0,7,13,4,1,316,171315.23,120206.12,124777.3,0,0,0,978.70001 +14485,17699,31552,31554,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,9.0745983,8.5926962,0,20,-1,73.498276,0,1,2,2021,11,0,45,48,1,0,0,17.879705,17.879705,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.34,59.43,48.87,58.55,8.333333333333334,1,1,0,0,14,5,5,1,685.66669,327847.31,248588.75,239247.03,167025.38,19995.908,832.28394,4989.3999 +14485,17699,31553,-9,31554,31552,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1172.3796,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,5,1,685.66669,327847.31,248588.75,239247.03,167025.38,19995.908,832.28394,4989.3999 +14485,17699,31554,31552,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,9.1450367,8.7953739,0,20,1,-12.259047,0,2,1,2021,13,2,48,43,1,2,0,19.72151,19.72151,.05,.05,0,0,0,0,0,0,1,1,0,1.2239226,0,48.87,58.55,41.34,59.43,6.666666666666667,1,1,0,0,13,5,5,1,685.66669,327847.31,248588.75,239247.03,167025.38,19995.908,832.28394,4989.3999 +14486,17700,31555,-9,-9,-9,1,1,23,0,2,0,1,1,1,0,4,0,0,0,0,0,-950.89795,-9,3,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.99,47.35,-9,-9,5,3,4,1,0,1,8,1,0,332,19503.41,0,0,0,0,0,0 +14487,17701,31556,-9,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,6.7149653,6.7135048,0,0,-909.14258,0,3,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,1.2696438,10.703453,24.70455,0,1,1,0,3.2527905,6.7737122,62.24,16.18,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,232,86632.656,13573.22,144780.05,0,0,0,566.23077 +14488,17702,31557,-9,31560,31558,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-903.82709,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14488,17702,31558,31560,-9,-9,1,1,39,1,2,0,1,1,-9,0,4,9.7900562,9.9540043,0,13,3,-18.905754,-9,2,1,2021,11,1,47,0,1,1,0,40.568253,40.568253,0,0,0,0,0,0,0,27,1,1,0,0,0,57.08,36.15,49.52,55.68,6.666666666666667,2,3,0,0,11,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14488,17702,31559,-9,31560,31558,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1083.786,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,2,3,-9,0,0,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14488,17702,31560,31558,-9,-9,1,0,36,1,2,0,1,1,-9,1,4,8.574007,8.6382484,0,13,-3,-18.474932,-9,2,1,2021,11,0,28,0,1,0,0,19.699043,19.699043,0,0,0,0,0,0,0,98,1,1,0,0,0,49.52,55.68,57.08,36.15,6.666666666666667,2,3,0,0,9,6,5,1,919.75,248383.95,0,185380.44,151538.13,0,0,7175.8843 +14489,17703,31561,31562,-9,-9,1,1,65,0,0,0,1,1,-9,0,3,0,8.0184307,7.9421039,31,4,45.325783,0,3,3,2021,8,0,0,0,4,0,0,0,0,.05,.05,0,1,0,0,0,0,1,1,0,0,8.0368919,55.53,51.55,61.43,43.34,6.666666666666667,2,3,0,0,9,7,4,1,1608.5,1168126.9,759417,234958.83,0,0,0,2757.0684 +14489,17703,31562,31561,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,7.5714531,7.9012766,30,-4,-118.26571,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.022131,7.5474191,61.43,43.34,55.53,51.55,8.333333333333334,1,1,0,0,11,7,4,1,1608.5,1168126.9,759417,234958.83,0,0,0,2757.0684 +14489,17704,31563,-9,31562,31561,1,0,25,0,0,0,1,1,-9,0,3,7.9317503,7.8017359,0,0,0,-1005.5022,0,1,1,2021,12,0,32,37,1,0,0,10.40709,10.40709,.05,.05,0,0,0,0,0,0,1,1,0,2.9350276,0,40.65,57.36,-9,-9,8.333333333333334,4,2,0,0,5,7,4,1,654,-47172.844,-1199.0192,0,0,0,0,766.79749 +14489,17705,31564,-9,31562,31561,1,1,20,0,0,0,2,2,0,0,4,0,0,0,0,0,-983.98901,-9,2,1,2021,10,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.55,60.42,-9,-9,6.666666666666667,4,2,0,0,0,7,1,1,1056,0,0,0,0,0,0,3206.8367 +14490,17706,31565,-9,31566,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-908.23944,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,1,0,423.5,53190.789,0,0,0,9732.7383,0,2698.54 +14490,17706,31566,-9,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,0,0,-902.44281,-9,3,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,37.42,33.27,-9,-9,5,1,1,1,0,0,11,1,0,423.5,53190.789,0,0,0,9732.7383,0,2698.54 +14491,17707,31567,-9,31569,31570,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.264,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14491,17707,31568,-9,31569,31570,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-902.95905,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14491,17707,31569,31570,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.9821358,8.792078,0,7,0,140.25775,0,2,2,2021,9,0,60,55,1,0,0,13.649235,13.649235,0,0,0,0,0,0,0,0,1,1,0,2.6169746,0,51.41,56.15,56.43,47.05,8.333333333333334,1,1,0,0,8,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14491,17707,31570,31569,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,6.9503794,7.2466593,0,7,9,75.839859,0,-9,-9,2021,11,0,16,17,1,0,0,11.271482,11.271482,0,0,0,0,0,0,0,2,1,1,0,0,0,56.43,47.05,51.41,56.15,8.333333333333334,1,1,0,0,6,2,4,1,914.75,168493.66,47490.977,306226.63,252413.53,1946.2405,0,3086.3743 +14492,17708,31571,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,7.3763466,7.7815614,0,0,-933.914,0,3,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3539915,7.3495317,57.31,50.61,-9,-9,8.333333333333334,1,1,0,0,0,2,3,1,1692,911682.94,280908.84,5427.3374,0,0,0,2373.3682 +14493,17709,31572,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,4,0,0,0,0,0,-895.92755,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.54,48.69,-9,-9,8.333333333333334,1,1,0,0,5,2,1,0,433,94557.867,0,0,0,0,0,403.51859 +14494,17710,31573,31574,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,6.7881188,6.6403732,8,1,-188.4548,0,2,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3008862,6.9071465,52.82,53.97,58.15,52.91,8.333333333333334,1,1,0,0,0,11,2,1,717,319272.03,160365.34,107839.34,0,0,0,1436.3667 +14494,17710,31574,31573,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,8,-1,-90.64476,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6296296,0,58.15,52.91,52.82,53.97,8.333333333333334,1,1,0,0,6,11,2,1,717,319272.03,160365.34,107839.34,0,0,0,1436.3667 +14495,17711,31575,31576,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,6.9753103,7.033648,62,-1,31.021692,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,4.3399024,0,0,1,1,0,0,7.024128,55,45,54.36,39.67,8,1,1,0,0,0,9,2,1,131.5,734509,135052.8,616018.88,0,0,0,973.89648 +14495,17711,31576,31575,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.0725646,5.9562173,6,1,18.562614,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.3238816,6.0368237,54.36,39.67,55,45,8.333333333333334,1,1,0,0,1,9,2,1,131.5,734509,135052.8,616018.88,0,0,0,973.89648 +14496,17712,31577,-9,-9,-9,1,0,42,0,2,0,3,3,-9,0,4,6.4010916,6.0992584,0,0,0,-1062.464,0,-9,2,2021,8,0,20,21,1,0,0,3.3843169,3.3843169,0,0,0,0,0,0,0,7,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,4,10,2,0,238,36766.109,0,0,0,0,0,1997.2201 +14497,17713,31578,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1053.218,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,4.6746411,1.6570743,44.110161,0,1,1,0,5.1637497,0,51,46,-9,-9,7,1,1,0,0,0,4,1,0,791,196400.59,0,0,0,0,0,835.31262 +14498,17714,31579,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,8.2247849,8.3120737,0,0,-1058.7412,-9,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3191819,8.4937267,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,11,4,1,348,1170970,685919.38,376390,0,0,0,2499.8501 +14499,17715,31580,31581,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,7.9446688,8.0152178,0,12,11,-133.64749,0,3,2,2021,6,0,25,25,1,0,0,14.492333,14.492333,0,0,0,0,0,0,0,42,0,0,0,0,0,57.16,56.15,57.33,53.46,10,1,1,0,0,14,9,4,1,878,760212.38,49190.551,679344.94,97739.43,0,8219.2129,2029.2363 +14499,17715,31581,31580,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.2181988,7.9815664,0,12,-11,-48.502899,0,2,2,2021,6,0,35,40,1,0,0,11.120098,11.120098,0,0,.05,0,0,0,0,0,0,0,0,0,0,57.33,53.46,57.16,56.15,10,1,1,0,0,14,9,4,1,878,760212.38,49190.551,679344.94,97739.43,0,8219.2129,2029.2363 +14500,17716,31582,-9,31583,31585,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1154.5831,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14500,17716,31583,31585,-9,-9,1,0,39,0,2,0,1,1,1,0,4,6.9610157,6.7148619,0,6,-2,132.81441,-9,3,3,2021,9,0,10,0,1,0,0,16.602577,16.602577,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.77,58.57,49.25,61.25,8.333333333333334,1,1,0,0,3,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14500,17716,31584,-9,31583,31585,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1079.4725,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14500,17716,31585,31583,-9,-9,1,1,41,0,2,0,1,1,-9,0,5,8.7355547,9.2164297,0,6,2,133.79453,0,2,2,2021,11,0,38,38,1,0,0,16.519333,16.519333,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.25,61.25,51.77,58.57,8.333333333333334,1,1,0,0,6,2,4,1,291,381735.25,271938,211645.66,98159.359,0,0,3005.7085 +14501,17717,31586,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,3,0,7.6507754,7.4514422,0,0,-1039.4009,0,3,2,2021,11,3,0,0,4,3,0,0,0,0,0,0,1,.90407157,0,20.496626,0,1,1,0,2.0324693,6.9344206,59.02,37.89,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,348,485983.16,190606.34,146617.5,0,0,0,1150.4946 +14502,17718,31587,31588,-9,-9,1,0,63,0,0,0,1,1,-9,0,4,0,8.0917301,7.9046998,41,-1,-171.61424,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.3269563,8.0239134,57.16,56.15,61.68,49.95,8.333333333333334,1,1,0,0,6,5,4,1,515.5,877905.25,640617,173965.2,0,2632.5671,0,3988.0891 +14502,17718,31588,31587,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,6.6551547,8.1929989,7.2711439,41,1,33.095234,0,3,3,2021,6,0,15,22,1,0,0,6.9729834,6.9729834,.05,.05,0,0,0,0,0,0,0,0,0,3.6164825,7.0998988,61.68,49.95,57.16,56.15,10,1,1,0,0,9,5,4,1,515.5,877905.25,640617,173965.2,0,2632.5671,0,3988.0891 +14503,17719,31589,-9,31590,31591,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1075.9001,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,8,5,1,765.66669,118883.65,36846.047,0,0,0,0,5919.105 +14503,17719,31590,31591,-9,-9,1,0,37,1,1,0,1,1,-9,0,3,8.3965044,8.5861788,0,6,-2,-34.3311,0,1,3,2021,12,0,25,40,1,0,0,26.132051,26.132051,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,51,56,6.666666666666667,1,1,0,0,7,8,5,1,765.66669,118883.65,36846.047,0,0,0,0,5919.105 +14503,17719,31591,31590,-9,-9,1,1,39,1,1,0,1,1,-9,0,4,9.6069803,8.9974194,0,6,2,-24.305679,0,-9,-9,2021,9,0,35,40,1,1,0,37.493824,37.493824,.05,.05,0,0,0,0,0,0,0,0,0,7.7412534,0,51,56,49.04,55.86,8,3,4,0,0,8,8,5,1,765.66669,118883.65,36846.047,0,0,0,0,5919.105 +14504,17720,31592,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,2,8.040514,7.7548571,0,0,0,-1081.9431,0,3,2,2021,12,0,39,38,1,0,0,9.9999218,9.9999218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.32,53.44,-9,-9,5,1,1,0,1,5,8,4,0,1616,-215187.36,-65308.773,0,0,0,0,2599.1602 +14505,17721,31593,31594,-9,-9,1,0,32,0,0,0,3,3,-9,1,1,0,0,0,6,-5,0,0,3,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,22.72,23.73,14.06,30.46,0,1,1,0,1,0,4,2,0,700.5,78779.461,0,86536.609,28395.932,0,0,1099.4722 +14505,17721,31594,31593,-9,-9,1,1,37,0,0,0,3,3,-9,1,1,0,0,0,6,5,0,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.06,30.46,22.72,23.73,0,4,2,0,1,0,4,2,0,700.5,78779.461,0,86536.609,28395.932,0,0,1099.4722 +14506,17722,31595,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1097.2047,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,6.1731377,14.414269,60.563519,0,1,1,0,0,0,57.98,18.59,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1312,-17280.414,0,0,0,0,0,392.07867 +14507,17723,31596,31597,-9,-9,1,0,83,0,0,0,2,2,-9,0,1,0,0,0,2,-5,-73.19323,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,2.6076512,0,57.67,10.41,57.69,39.53,6.666666666666667,1,1,0,0,0,13,4,1,1143.5,585393.13,272201.66,247133.5,0,0,0,3364.3936 +14507,17723,31597,31596,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,8.4449158,8.2692451,2,5,-135.8398,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.8039513,5.1904716,57.69,39.53,57.67,10.41,8.333333333333334,1,1,0,0,0,13,4,1,1143.5,585393.13,272201.66,247133.5,0,0,0,3364.3936 +14507,17724,31598,-9,31596,31597,1,1,53,0,0,0,2,2,-9,1,2,0,0,0,0,0,-962.94617,0,2,3,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.86,49.68,-9,-9,6.666666666666667,1,1,0,0,0,13,1,1,2425,115853.57,0,0,0,0,0,844.49817 +14508,17725,31599,31602,-9,-9,1,1,36,0,3,0,2,2,-9,0,4,8.0526686,8.3966389,0,15,1,30.853699,0,3,2,2021,10,0,40,48,1,1,0,10.096118,10.096118,.05,.05,0,0,0,0,0,0,1,1,0,7.9479542,0,50,57,59.55,43.22,7,2,3,0,0,1,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17725,31600,-9,31602,31599,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1016.1195,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17725,31601,-9,31602,31599,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-813.68817,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17725,31602,31599,-9,-9,1,0,35,0,3,0,1,1,-9,0,2,9.1466789,8.6708298,0,15,-1,-3.7282445,0,3,2,2021,6,0,60,39,1,0,0,18.948242,18.948242,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.55,43.22,50,57,8.333333333333334,2,3,0,0,11,6,5,1,672.25,131339.66,205831.14,198538.11,176607.88,14495.238,4094.8391,5257.5938 +14508,17726,31603,-9,31604,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-914.51147,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,6,2,1,896.5,49915.168,5130.5938,0,0,3525.1973,0,939.68127 +14508,17726,31604,-9,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,7.2433524,7.2533894,0,0,0,-1041.6158,0,-9,-9,2021,11,0,20,20,1,2,0,6.2123666,6.2123666,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48,57,-9,-9,7,2,3,0,0,1,6,2,1,896.5,49915.168,5130.5938,0,0,3525.1973,0,939.68127 +14509,17727,31605,-9,-9,-9,1,1,22,0,0,1,1,0,0,0,3,0,6.1558146,6.1840076,0,0,-994.55426,-9,-9,-9,2021,20,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6040154,0,26.09,63.8,-9,-9,3.333333333333333,1,1,0,0,0,4,2,0,348,77199.789,0,0,0,0,0,346.48618 +14510,17728,31606,-9,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.8814545,6.8904519,0,0,-1131.4686,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.6545091,6.9299531,56.15,41.66,-9,-9,10,1,1,0,0,0,9,2,0,386,329112.75,157830.83,171611.33,0,0,0,1397.2485 +14511,17729,31607,-9,31608,-9,1,1,31,0,0,0,2,2,-9,0,5,8.3710461,8.1472797,0,0,0,-1073.149,0,1,-9,2021,8,0,50,40,1,0,1,13.485624,13.485624,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.39,59.18,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,2199,111329.77,88689.055,113760.21,55509.875,0,0,2029.1581 +14511,17730,31608,31609,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.7649279,8.7631674,0,1,2,14.602066,-9,-9,-9,2021,10,0,47,0,1,0,0,11.235363,11.235363,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.59,44.11,48.53,50.88,8.333333333333334,1,1,0,0,3,6,5,1,494.5,958524.75,567189.31,181706.28,33648.977,0,0,3508.3254 +14511,17730,31609,31608,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,8.4558945,8.1097937,0,1,-2,-4.067852,-9,-9,-9,2021,8,0,48,0,1,0,0,10.561123,10.561123,.05,.05,0,0,0,0,0,0,0,0,0,2.9751472,0,48.53,50.88,53.59,44.11,6.666666666666667,1,1,0,0,9,6,5,1,494.5,958524.75,567189.31,181706.28,33648.977,0,0,3508.3254 +14512,17731,31610,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,2,0,0,0,0,0,-981.20514,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,35.34,-9,-9,8.333333333333334,1,1,0,0,8,1,1,0,674,22433.725,0,111223.63,0,-1157.3685,0,224.34003 +14513,17732,31611,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,9.2491226,9.0436049,0,0,0,-1007.0387,0,2,2,2021,21,9,38,38,1,9,0,22.845913,22.845913,.05,.05,0,0,0,0,0,2,0,0,0,2.7874498,0,23.02,66.47,-9,-9,3.333333333333333,1,1,0,0,14,8,5,0,526,182256.47,-135448.92,0,0,0,0,2889.6013 +14514,17733,31612,31613,-9,-9,1,1,66,0,0,0,2,2,-9,0,3,0,7.9307933,7.9293728,11,1,37.265762,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2849388,57.33,53.46,58.31,42.52,8.333333333333334,1,1,0,0,7,9,3,1,366.5,1356071.8,675464.94,358984.5,0,0,0,2245.5994 +14514,17733,31613,31612,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,5.7072053,5.8581519,49,-1,64.190315,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9863999,5.8053055,58.31,42.52,57.33,53.46,5,1,1,0,0,0,9,3,1,366.5,1356071.8,675464.94,358984.5,0,0,0,2245.5994 +14515,17734,31614,-9,31616,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1111.1223,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,7,1,1,-9,0,0,7,2,0,612.33331,-57958.461,0,0,0,0,0,944.8786 +14515,17734,31615,-9,31616,-9,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.85388,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,612.33331,-57958.461,0,0,0,0,0,944.8786 +14515,17734,31616,-9,-9,-9,1,0,33,0,2,0,3,3,-9,0,3,7.0453091,7.1424537,0,0,0,-999.44916,0,-9,2,2021,20,8,20,27,1,8,0,5.7073526,5.7073526,0,0,0,0,0,0,0,0,1,0,1,0,0,36.66,54.81,-9,-9,3.333333333333333,1,1,0,0,2,7,2,0,612.33331,-57958.461,0,0,0,0,0,944.8786 +14516,17735,31617,31618,-9,-9,1,1,74,0,0,0,2,2,-9,0,4,0,7.7806306,7.6204,12,0,-34.64035,0,3,2,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,3.7076735,7.3259583,61.12,51.57,39.76,22.71,8.333333333333334,1,1,0,0,0,9,4,1,1900.5,1002556.8,394579.69,453435.44,0,0,0,4049.876 +14516,17735,31618,31617,-9,-9,1,0,74,0,0,0,1,1,-9,0,2,0,7.7687011,7.5911474,12,0,10.206765,0,3,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,12.392205,26.36553,149.60402,0,1,1,0,4.8073463,7.6722498,39.76,22.71,61.12,51.57,8.333333333333334,1,1,0,0,0,9,4,1,1900.5,1002556.8,394579.69,453435.44,0,0,0,4049.876 +14517,17736,31619,31620,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.4443064,7.2912717,4,0,-14.839415,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.4156442,55.71,40.47,52,54.51,8.333333333333334,1,1,0,0,3,4,4,1,1602,1850766.4,1275991.3,195420.06,0,0,0,4359.061 +14517,17736,31620,31619,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,8.3871536,8.5504656,4,0,-60.724632,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5646464,8.2866478,52,54.51,55.71,40.47,8.333333333333334,1,1,0,0,0,4,4,1,1602,1850766.4,1275991.3,195420.06,0,0,0,4359.061 +14518,17737,31621,-9,-9,-9,1,1,60,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1032.7782,-9,2,-9,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9056926,0,47.83,62.16,-9,-9,10,1,1,0,0,5,9,1,0,433,372915.88,0,242364.14,21972.447,0,0,-437.83496 +14519,17738,31622,31623,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4148893,7.5911698,0,30,-1,26.294249,0,3,3,2021,11,0,22,23,1,0,0,8.4216194,8.4216194,0,0,0,0,0,0,0,0,0,0,0,3.5976536,0,54.1,50.73,43.02,57.64,6.666666666666667,1,1,0,0,11,10,5,1,826.5,550565.31,401896.81,163064.2,0,0,0,3051.7949 +14519,17738,31623,31622,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.3936386,8.9009438,6.9522533,30,1,-117.97114,0,-9,2,2021,13,1,38,37,1,1,0,15.772766,15.772766,.05,.05,.05,0,0,0,0,0,0,0,0,3.7775316,7.3232059,43.02,57.64,54.1,50.73,5,1,1,0,0,9,10,5,1,826.5,550565.31,401896.81,163064.2,0,0,0,3051.7949 +14519,17739,31624,-9,31622,31623,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-997.39148,1,2,2,2021,17,6,0,39,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.4836624,0,43.32,63.94,-9,-9,10,1,1,0,0,5,10,1,1,289,42097.625,0,0,0,0,0,-299.08218 +14519,17740,31625,-9,31622,31623,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1157.673,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.15933128,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,1,10,1,1,1798,0,0,0,0,0,0,1284.2284 +14520,17741,31626,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.47308,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.3,28.52,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1542,-88555.758,0,0,0,0,0,1292.0184 +14521,17742,31627,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1002.4838,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1705,241716.91,0,110154.59,0,0,0,498.5611 +14522,17743,31628,-9,31630,31629,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1052.1483,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,1,0,2036.6666,5242.4775,0,0,0,707.67358,0,878.01233 +14522,17743,31629,31630,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,0,0,0,19,-10,0,0,2,3,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,45.08,53.02,53.93,5,1,1,1,0,1,12,1,0,2036.6666,5242.4775,0,0,0,707.67358,0,878.01233 +14522,17743,31630,31629,-9,-9,1,0,59,0,1,0,3,3,-9,0,4,0,0,0,19,10,0,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.02,53.93,46.39,45.08,8.333333333333334,1,1,0,0,0,12,1,0,2036.6666,5242.4775,0,0,0,707.67358,0,878.01233 +14523,17744,31631,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.3312435,8.0507002,0,0,0,-958.90277,0,3,3,2021,12,0,38,38,1,0,0,12.192143,12.192143,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,45.71,54.5,-9,-9,6.666666666666667,1,1,0,0,6,11,4,1,159,181880.89,103467.94,106138.95,0,0,0,1299.4725 +14524,17745,31632,-9,-9,-9,1,1,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-948.82422,0,2,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,19.87,56.29,-9,-9,1.666666666666667,1,1,0,0,0,12,1,0,255,-63091.402,0,-5864.5386,0,0,0,1004.206 +14525,17746,31633,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,1,8.4038105,8.0436678,4.9057546,0,0,-1159.7931,0,2,2,2021,23,11,39,39,1,11,0,15.420978,15.420978,.05,.05,0,0,0,0,0,0,1,1,0,5.6344366,5.0803409,37.11,31.98,-9,-9,3.333333333333333,1,1,0,0,13,4,4,1,851,291448.13,-52959.488,23443.752,22919.02,0,1211.7795,2617.1689 +14526,17747,31634,31635,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.2820158,8.0870428,36,-8,-121.4248,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.2598596,8.1038313,52.99,51.28,58.27,48.72,10,1,1,0,0,0,9,5,1,530.5,6891996,1569957,594214.5,0,0,0,5126.4941 +14526,17747,31635,31634,-9,-9,1,1,80,0,0,0,2,2,-9,0,4,0,8.5559273,8.1531057,29,8,-8.4787455,0,3,3,2021,0,0,0,0,4,0,0,0,0,0,0,0,1,0,2.7409017,0,0,1,1,0,5.4782529,8.4826603,58.27,48.72,52.99,51.28,8.333333333333334,1,1,0,0,0,9,5,1,530.5,6891996,1569957,594214.5,0,0,0,5126.4941 +14527,17748,31636,-9,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.0645399,7.1009994,0,0,-906.03735,0,3,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.8857336,49.38,34.36,-9,-9,3.333333333333333,3,4,0,1,7,8,3,0,728,1446297.1,306976.31,564488.56,0,0,0,817.76129 +14527,17749,31637,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1035.1902,0,3,3,2021,19,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,29.08,-9,-9,8.333333333333334,3,4,0,1,0,8,1,0,903,1090595.8,0,1151472.1,0,0,0,1006.5474 +14528,17750,31638,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.8366451,9.138402,0,0,0,-977.46088,0,2,2,2021,12,0,41,45,1,0,0,25.607838,25.607838,.05,.05,0,0,0,0,0,2,0,0,0,3.0207636,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,7,12,5,1,497,31384.324,251348.97,15814.295,0,0,0,2494.6763 +14528,17751,31639,-9,31638,-9,1,1,24,0,0,0,1,1,-9,0,5,4.5211363,4.1716504,0,0,0,-974.30011,0,2,-9,2021,6,0,30,35,1,0,1,.42322868,.42322868,0,0,0,0,0,0,0,0,0,0,0,0,0,54.1,59.11,-9,-9,10,1,1,0,0,6,12,2,1,460,0,0,0,0,0,0,-204.47061 +14528,17752,31640,-9,31638,-9,1,0,19,0,0,0,2,2,-9,0,5,7.2628012,7.4120955,0,0,0,-921.54749,0,2,-9,2021,7,0,32,12,1,0,1,6.5135226,6.5135226,0,0,0,0,0,0,0,0,0,0,0,1.9913867,0,51.14,60.45,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,424,0,0,0,0,0,0,182.01247 +14529,17753,31641,31642,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,0,0,32,2,92.885994,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6460147,0,56.58,49.75,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,1614.5,768797.25,385290.06,361147.38,0,2139.947,0,1895.9465 +14529,17753,31642,31641,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.616281,7.4402061,28,-2,21.157295,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.2741232,7.6441741,57.16,56.15,56.58,49.75,8.333333333333334,1,1,0,0,0,7,3,1,1614.5,768797.25,385290.06,361147.38,0,2139.947,0,1895.9465 +14530,17754,31643,31644,-9,-9,1,0,53,0,0,0,1,1,-9,0,2,7.6662126,7.6362305,0,36,0,45.115227,0,3,3,2021,12,1,10,8,1,1,0,22.158798,22.158798,0,0,0,0,0,0,0,0,0,0,0,5.5875678,0,43.54,54.88,44.59,45.67,6.666666666666667,1,1,0,0,7,11,4,1,588,1079054.3,737115.31,169119.41,0,0,0,2774.2451 +14530,17754,31644,31643,-9,-9,1,1,53,0,0,0,3,3,-9,0,3,8.4212523,8.3936205,0,36,0,-60.66243,0,2,2,2021,20,8,25,60,1,8,0,16.705391,16.705391,.05,.05,.05,0,0,0,0,0,0,0,0,4.0942826,0,44.59,45.67,43.54,54.88,5,1,1,0,0,10,11,4,1,588,1079054.3,737115.31,169119.41,0,0,0,2774.2451 +14531,17755,31645,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1071.9315,0,-9,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8743148,0,0,1,1,0,0,0,37.83,33.82,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,1909,24951.695,0,147571.42,0,0,0,1243.9304 +14532,17756,31646,31647,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,0,0,0,32,0,-46.62685,0,2,2,2021,10,0,0,14,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.5315785,0,57.33,53.46,50,49,0,1,1,0,0,10,6,5,1,1318,1613289.9,991488.63,419599.38,7780.7813,0,8748.2314,3577.4011 +14532,17756,31647,31646,-9,-9,1,1,55,0,0,0,1,1,-9,0,3,9.3760748,9.3959208,0,8,0,-81.466797,0,-9,-9,2021,10,0,50,60,1,1,0,24.334764,24.334764,.05,.05,0,0,0,0,0,0,0,0,0,3.5029671,0,50,49,57.33,53.46,7,1,1,0,0,1,6,5,1,1318,1613289.9,991488.63,419599.38,7780.7813,0,8748.2314,3577.4011 +14532,17757,31648,-9,31646,31647,1,1,23,0,0,0,2,2,-9,0,4,8.1805191,7.9263778,0,0,0,-1079.4501,0,2,1,2021,10,0,38,37,1,1,1,10.320849,10.320849,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,1,1,0,0,1,6,4,1,463,-136916.91,0,0,0,0,0,1207.63 +14533,17758,31649,-9,31651,31650,1,1,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-993.53687,-9,1,1,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3705976,0,60.12,54.8,-9,-9,10,1,1,0,0,0,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17758,31650,31651,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,9.1129065,9.040535,0,8,-2,-108.42261,0,2,2,2021,10,1,50,45,1,1,0,20.197359,20.197359,.05,.05,0,0,0,0,0,0,1,1,0,1.1022305,0,54.37,54.8,31.94,46.56,6.666666666666667,1,1,0,0,9,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17758,31651,31650,-9,-9,1,0,51,0,2,0,1,1,-9,0,2,8.7106829,8.8240471,0,8,2,-23.240759,0,2,2,2021,17,5,48,52,1,5,0,16.271667,16.271667,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.94,46.56,54.37,54.8,3.333333333333333,1,1,0,0,9,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17758,31652,-9,31651,31650,1,0,16,0,2,1,2,0,-9,0,3,0,0,0,0,0,-932.45996,-9,1,1,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3428211,0,43.96,55.64,-9,-9,8.333333333333334,1,1,0,0,0,4,5,1,621.25,1131892,638251.25,446107.5,106042.86,0,0,5210.6377 +14533,17759,31653,-9,31651,31650,1,0,20,0,2,0,1,1,0,0,3,0,0,0,0,0,-1010.4586,-9,1,1,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6991982,0,44.49,55.37,-9,-9,8.333333333333334,1,1,0,0,1,4,1,1,986,64446.156,0,0,0,1912.2134,0,-432.12207 +14534,17760,31654,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,8.8962069,8.5809765,0,0,0,-1048.5568,0,3,3,2021,11,3,36,36,1,3,0,20.65863,20.65863,0,0,0,0,0,0,0,0,0,0,0,0,0,55.14,50.76,-9,-9,5,1,1,0,0,11,13,5,1,589,431063.34,135317.78,0,0,0,0,2978.5808 +14535,17761,31655,31656,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.9907618,9.1810169,0,11,0,-106.55332,0,3,3,2021,8,0,42,40,1,0,0,21.97246,21.97246,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,55.19,51.92,8.333333333333334,1,1,0,0,12,9,5,1,515.5,585476.25,279638.94,333345.06,-8659.8281,5606.4683,0,5213.0381 +14535,17761,31656,31655,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.8895121,8.360878,0,11,0,23.22093,0,-9,-9,2021,8,0,32,32,1,0,0,13.936632,13.936632,.05,.05,.05,0,0,0,0,0,0,0,0,1.1388701,0,55.19,51.92,57.33,53.46,8.333333333333334,1,1,0,0,5,9,5,1,515.5,585476.25,279638.94,333345.06,-8659.8281,5606.4683,0,5213.0381 +14536,17762,31657,31659,-9,-9,1,0,33,2,2,0,2,2,-9,0,3,8.664011,8.8008757,0,5,1,83.901817,0,-9,-9,2021,8,0,40,-9,1,0,0,18.40394,18.40394,0,0,0,0,0,0,0,0,0,0,0,0,0,40.75,58.26,44.59,48.37,8.333333333333334,1,1,0,0,4,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14536,17762,31658,-9,31657,31659,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-915.76172,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14536,17762,31659,31657,-9,-9,1,1,32,2,2,0,2,2,-9,0,3,9.7264585,9.7011194,0,5,-1,21.217863,0,-9,-9,2021,15,3,10,13,1,3,0,170.96674,170.96674,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.59,48.37,40.75,58.26,8.333333333333334,1,1,0,0,9,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14536,17762,31660,-9,31657,31659,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.6842,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,10,5,1,964,151976.08,24782.906,237485.41,160473.5,14244.513,4389.5112,7979.2402 +14537,17763,31661,31662,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,5.9719963,6.1966372,11,9,1.1050835,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.1070242,43.78,60.98,24.6,57.93,8.333333333333334,1,1,0,0,7,10,3,1,1564,-37518.121,22996.684,0,0,0,0,2596.0168 +14537,17763,31662,31661,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,7.9090438,7.9381976,0,11,0,-51.301285,0,2,2,2021,22,10,39,39,1,10,0,12.345991,12.345991,0,0,.05,0,0,0,0,0,1,1,0,0,0,24.6,57.93,43.78,60.98,3.333333333333333,1,1,0,0,13,10,3,1,1564,-37518.121,22996.684,0,0,0,0,2596.0168 +14538,17764,31663,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,1,0,5.9714322,6.0884657,0,0,-984.24756,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.4413209,28.54,22.31,-9,-9,3.333333333333333,1,1,0,1,0,1,2,1,347,397637.81,37580.781,0,0,0,0,917.96796 +14539,17765,31664,31665,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,8.2400484,8.1027451,0,10,-3,-62.820621,0,-9,3,2021,6,0,36,51,1,0,0,20.017857,20.017857,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,51.47,53.17,10,1,1,0,0,11,11,4,0,496,1190533.3,1085357.6,87840.711,0,0,544.82172,2114.9751 +14539,17765,31665,31664,-9,-9,1,1,60,0,0,0,3,3,-9,0,4,0,6.6202049,6.4315648,10,3,38.261787,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,6.4726896,6.5798488,51.47,53.17,48,49,8.333333333333334,1,1,0,0,10,11,4,0,496,1190533.3,1085357.6,87840.711,0,0,544.82172,2114.9751 +14539,17766,31666,-9,31664,31665,1,1,35,0,0,0,2,2,-9,1,2,0,0,0,0,0,-920.96924,0,3,3,2021,28,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.85,44.64,-9,-9,6.666666666666667,1,1,0,0,1,11,1,0,630,0,0,0,0,0,0,190.24832 +14540,17767,31667,31669,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,8.6211147,8.8230219,0,6,1,0,0,-9,-9,2021,6,0,48,40,1,0,0,11.495721,11.495721,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,54.1,59.11,6.666666666666667,1,1,0,0,7,6,5,1,1133.6666,43113.152,67102.008,0,0,0,0,4351.9556 +14540,17767,31668,-9,31669,31667,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.032,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,1133.6666,43113.152,67102.008,0,0,0,0,4351.9556 +14540,17767,31669,31667,-9,-9,1,0,29,0,1,0,2,2,-9,0,5,8.4012451,8.0172672,0,6,-1,0,0,2,2,2021,8,1,41,35,1,1,0,13.888718,13.888718,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,7,6,5,1,1133.6666,43113.152,67102.008,0,0,0,0,4351.9556 +14541,17768,31670,31671,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.6827416,7.7554755,43,-6,180.7018,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7176986,7.6271405,60.02,56.42,57.06,57.76,10,1,1,0,0,6,11,4,1,141.5,2942704.5,2418251.5,419955.56,0,0,0,4112.6113 +14541,17768,31671,31670,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,0,7.9414034,7.9168525,39,6,-33.75835,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2182527,7.9935274,57.06,57.76,60.02,56.42,10,1,1,0,0,6,11,4,1,141.5,2942704.5,2418251.5,419955.56,0,0,0,4112.6113 +14542,17769,31672,31673,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7573309,7.874176,0,41,-2,-59.775425,0,3,3,2021,20,8,12,25,1,8,0,25.822138,25.822138,0,0,0,0,0,0,0,0,0,0,0,4.9732842,0,25.14,57.3,56.33,51.02,3.333333333333333,1,1,0,0,11,10,4,1,1403,616199.25,342335.94,412515.81,104724.09,0,0,3234.7275 +14542,17769,31673,31672,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,7.450747,7.5381441,0,41,2,-118.32124,0,3,3,2021,12,0,21,24,1,0,0,8.8539667,8.8539667,.05,.05,0,0,0,0,0,0,0,0,0,7.021276,0,56.33,51.02,25.14,57.3,8.333333333333334,1,1,0,0,11,10,4,1,1403,616199.25,342335.94,412515.81,104724.09,0,0,3234.7275 +14543,17770,31674,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.9884043,9.5249043,7.6858568,0,0,-1108.0306,0,2,2,2021,11,0,49,52,1,0,0,20.260727,20.260727,.05,.05,0,0,0,0,0,0,1,1,0,8.0143061,0,43.91,55.39,-9,-9,6.666666666666667,4,5,0,0,8,2,5,1,495,546631.69,164019.56,252788.91,0,-1052.2506,4073.3589,2972.9636 +14544,17771,31675,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3072281,7.2827015,0,0,0,-978.992,0,2,3,2021,10,1,21,22,1,1,0,8.0836983,8.0836983,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.85,41.17,-9,-9,8.333333333333334,1,1,0,0,5,7,3,0,2546,195300.19,-90541.336,304276.81,0,0,0,774.56018 +14544,17772,31676,-9,31675,-9,1,1,26,0,0,0,2,2,-9,0,4,8.3257437,7.819994,0,0,0,-1046.204,0,2,-9,2021,10,0,40,45,1,1,1,10.30273,10.30273,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,58,-9,-9,7,1,1,0,0,1,7,4,0,1509,-67059.711,-32561.67,0,0,0,0,1653.9084 +14545,17773,31677,31678,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.5033951,8.280632,0,4,0,87.825737,0,-9,-9,2021,33,12,8,39,1,12,0,43.425884,43.425884,.05,.05,0,0,0,0,0,0,0,0,0,0,0,4.2,72.44,46.31,51.53,6.666666666666667,2,3,0,0,5,4,4,1,296.5,146093.38,59871.609,0,0,0,382.12271,3590.3203 +14545,17773,31678,31677,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.1734543,8.0690079,0,4,0,-54.025806,0,1,1,2021,13,1,41,37,1,1,0,12.76599,12.76599,.05,.05,0,0,0,0,0,0,0,0,0,1.6002765,0,46.31,51.53,4.2,72.44,6.666666666666667,1,1,0,0,6,4,4,1,296.5,146093.38,59871.609,0,0,0,382.12271,3590.3203 +14546,17774,31679,-9,-9,-9,1,0,47,0,0,0,1,1,-9,0,5,8.4935045,8.512228,0,0,0,-1041.5238,0,3,3,2021,9,1,42,37,1,1,0,14.483062,14.483062,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,9,2,5,1,176,237271.66,73987.211,0,0,0,0,2301.7104 +14547,17775,31680,-9,31682,31683,1,1,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-940.11816,-9,3,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14547,17775,31681,-9,31682,31683,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.53809,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14547,17775,31682,31683,-9,-9,1,0,44,0,2,0,3,3,-9,0,4,8.048995,8.0030413,0,20,-22,-16.315344,0,3,3,2021,9,0,43,46,1,0,0,8.7403927,8.7403927,0,0,0,0,0,0,0,0,1,1,0,0,0,54.92,50.34,59.91,42.65,8.333333333333334,2,3,0,0,6,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14547,17775,31683,31682,-9,-9,1,1,66,0,2,0,2,2,-9,0,3,0,4.9498501,4.7304182,20,22,-7.8992162,0,3,2,2021,11,0,0,39,4,0,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,0,4.6771164,59.91,42.65,54.92,50.34,5,1,1,0,0,11,7,3,0,330.5,1899832.8,751113.56,938436.75,23514.48,0,0,2103.5264 +14548,17776,31684,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,1,0,7.3237681,7.5196466,0,0,-1074.7953,0,3,3,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,6.6958723,10.617723,66.566147,0,1,1,0,3.0890403,7.2925925,54.7,11.76,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,227,415941.66,108022.25,254452.16,0,0,0,1198.4572 +14549,17777,31685,31686,-9,-9,1,1,58,0,0,0,3,3,-9,0,2,8.0702925,8.308217,0,6,1,-71.331741,0,-9,-9,2021,7,0,39,39,1,0,0,9.9208956,9.9208956,.05,.05,0,0,0,0,0,0,0,0,0,8.0141869,0,44.66,37.84,57.34,50.6,5,1,1,0,0,7,10,5,1,558,926420.63,245925.39,185411.58,31495.17,200.48181,5463.9238,10303.492 +14549,17777,31686,31685,-9,-9,1,0,57,0,0,0,1,1,-9,0,4,9.9675465,9.293026,0,6,-1,40.971169,0,2,2,2021,8,0,40,40,1,0,0,34.2094,34.2094,.05,.05,0,0,0,0,0,0,0,0,0,7.4453683,0,57.34,50.6,44.66,37.84,5,1,1,0,0,12,10,5,1,558,926420.63,245925.39,185411.58,31495.17,200.48181,5463.9238,10303.492 +14550,17778,31687,-9,-9,-9,1,0,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-913.01343,0,3,-9,2021,13,1,0,21,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5099336,0,22.21,57.66,-9,-9,1.666666666666667,4,2,0,1,5,9,1,0,757,0,0,0,0,0,0,1774.068 +14551,17779,31688,31689,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,5.9463639,6.5494642,58,-3,36.07679,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,4.5582113,6.0269661,53.08,47.16,30.59,26.9,6.666666666666667,1,1,0,0,0,9,2,1,576,308179,154814.28,230762.47,0,0,0,1310.1997 +14551,17779,31689,31688,-9,-9,1,1,77,0,0,0,3,3,-9,0,1,0,5.5414734,5.8145108,58,3,-15.143018,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,125.00317,0,0,1,1,0,5.1285663,5.3030505,30.59,26.9,53.08,47.16,0,1,1,0,0,0,9,2,1,576,308179,154814.28,230762.47,0,0,0,1310.1997 +14552,17780,31690,31691,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,5.888689,5.916739,0,10,-1,-34.299755,0,1,2,2021,12,0,35,35,1,0,0,1.1979434,1.1979434,.05,.05,0,0,0,0,0,0,0,0,0,.28212979,0,52.99,51.28,51.28,50.73,8.333333333333334,1,1,0,0,11,11,4,0,314,784254.25,247039.83,373528.75,0,0,0,2415.2937 +14552,17780,31691,31690,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,7.9433136,8.6790962,7.0492554,10,1,31.359375,0,2,3,2021,8,0,60,0,1,0,0,7.3821106,7.3821106,.05,.05,0,0,0,0,0,0,0,0,0,0,7.3430238,51.28,50.73,52.99,51.28,8.333333333333334,1,1,0,0,11,11,4,0,314,784254.25,247039.83,373528.75,0,0,0,2415.2937 +14553,17781,31692,31693,-9,-9,1,0,44,0,0,0,1,1,-9,0,4,8.8900509,8.8305683,0,6,-4,106.52712,0,2,2,2021,9,1,70,70,1,1,0,12.528522,12.528522,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.44,59.62,46.08,57.2,6.666666666666667,1,1,0,0,7,4,5,1,810.33331,197320.52,91401.273,166626.7,55138.031,2367.4954,3540.7788,3064.313 +14553,17781,31693,31692,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,6.9373617,7.0802436,0,6,4,-45.997536,0,2,2,2021,12,0,42,45,1,0,0,2.47596,2.47596,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,46.44,59.62,5,1,1,0,0,7,4,5,1,810.33331,197320.52,91401.273,166626.7,55138.031,2367.4954,3540.7788,3064.313 +14553,17781,31694,-9,31692,31693,1,1,17,0,0,1,2,0,0,0,5,0,5.1417193,5.5965977,0,0,-1028.1724,-9,1,2,2021,12,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1606965,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,4,5,1,810.33331,197320.52,91401.273,166626.7,55138.031,2367.4954,3540.7788,3064.313 +14554,17782,31695,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.7060409,6.3295989,0,0,-977.04175,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0038218,6.3254776,47.3,43.1,-9,-9,8.333333333333334,1,1,0,0,5,12,2,1,2226,-114335.79,-24663.727,215833.05,0,0,0,1395.1199 +14555,17783,31696,31697,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,6.6667323,7.1685224,46,2,-36.433079,0,-9,2,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,125.21468,0,0,1,1,0,4.7297001,6.9337435,54,46,45.01,54.76,8,1,1,0,0,0,6,2,1,353.5,461767.69,150586.14,191803.77,0,0,0,1923.4734 +14555,17783,31697,31696,-9,-9,1,0,78,0,0,0,3,3,-9,0,4,0,0,0,46,-2,-58.916847,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,120,1,1,0,2.5795457,0,45.01,54.76,54,46,0,1,1,0,0,0,6,2,1,353.5,461767.69,150586.14,191803.77,0,0,0,1923.4734 +14556,17784,31698,-9,31699,31701,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-980.93756,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14556,17784,31699,31701,-9,-9,1,0,23,1,2,0,2,2,-9,0,3,0,0,0,4,-1,15.793626,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.5,44.29,57.16,56.15,10,1,1,0,0,0,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14556,17784,31700,-9,31699,31701,1,0,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1203.948,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14556,17784,31701,31699,-9,-9,1,1,24,1,2,0,2,2,-9,0,4,7.885993,7.8649292,0,4,1,-15.372767,0,-9,-9,2021,6,0,42,42,1,0,0,7.4457059,7.4457059,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,38.5,44.29,10,1,1,0,0,4,7,2,0,755.75,64377,0,0,0,12447.214,0,2314.3882 +14557,17785,31702,31703,-9,-9,1,1,29,0,0,0,1,1,-9,0,3,8.191885,8.3296452,0,2,5,-19.292866,0,-9,-9,2021,8,0,38,38,1,0,0,11.988862,11.988862,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.56,53.97,50.28,51.35,8.333333333333334,1,1,0,0,5,2,4,1,458,46125.617,7319.627,114735.08,128719.2,1694.3215,7801.3926,2329.8972 +14557,17785,31703,31702,-9,-9,1,0,24,0,0,0,1,1,-9,0,3,7.6558504,7.5010509,0,2,-5,-56.376431,0,2,2,2021,7,1,37,37,1,1,0,6.4949641,6.4949641,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.28,51.35,51.56,53.97,8.333333333333334,1,1,0,0,7,2,4,1,458,46125.617,7319.627,114735.08,128719.2,1694.3215,7801.3926,2329.8972 +14558,17786,31704,-9,-9,-9,1,0,80,0,0,0,1,1,-9,0,3,0,6.4390793,6.7569127,0,0,-952.91895,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0215755,4.928328,58.07,46.29,-9,-9,6.666666666666667,1,1,0,0,4,6,2,1,665,-159578.06,0,0,0,666.89679,0,1158.7701 +14559,17787,31705,31708,-9,-9,1,1,40,2,2,0,2,2,-9,0,4,8.51513,8.6808138,0,10,3,55.814671,0,3,3,2021,7,0,37,37,1,0,0,14.514803,14.514803,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.24,58.84,8.333333333333334,1,1,0,0,9,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14559,17787,31706,-9,31708,31705,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.7687,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14559,17787,31707,-9,31708,31705,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1040.5978,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14559,17787,31708,31705,-9,-9,1,0,37,2,2,0,1,1,-9,0,4,8.5737677,8.6114597,0,10,-3,91.034767,0,2,3,2021,10,1,40,37,1,1,0,18.176439,18.176439,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,57.16,56.15,8.333333333333334,1,1,0,0,9,13,5,1,1066.75,9698.4707,61816.191,73410.117,0,41477.613,0,3969.7839 +14560,17788,31709,-9,-9,-9,1,0,64,0,0,0,3,3,-9,1,2,0,0,0,0,0,-988.42255,0,3,3,2021,11,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.92,16.31,-9,-9,5,1,1,0,0,0,13,1,0,137,-195686.61,0,0,0,0,0,1744.3696 +14561,17789,31710,-9,-9,-9,1,0,63,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1051.4602,0,3,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.87,27.72,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,687,-44858.512,0,0,0,0,368.23807,2443.5015 +14562,17790,31711,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,5.6108394,5.6366105,0,0,-1174.4503,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,5.5283628,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,267,460727.56,145307.69,234984.14,0,1520.7811,5351.0269,499.38367 +14563,17791,31712,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.678299,8.0160933,0,0,0,-1002.9665,0,3,2,2021,9,0,46,46,1,1,0,5.5319948,5.5319948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54,54,-9,-9,8,3,4,0,0,8,8,3,0,1187,18660.646,-115665.89,0,0,3161.5032,0,1525.9756 +14564,17792,31713,31714,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,8.2150898,8.2322655,45,3,-26.860685,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.0792594,8.0097933,54.2,57.49,58.15,52.91,10,1,1,0,0,3,5,4,1,780.5,1176388.8,828856.88,453628.38,0,3264.6567,0,3854.4343 +14564,17792,31714,31713,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,7.7549047,7.6427994,45,-3,92.483833,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6121669,7.4338226,58.15,52.91,54.2,57.49,10,1,1,0,0,4,5,4,1,780.5,1176388.8,828856.88,453628.38,0,3264.6567,0,3854.4343 +14565,17793,31715,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-889.04919,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,1,0,8.3373318,0,0,1,1,0,0,0,60.07,13.02,-9,-9,8.333333333333334,1,1,0,0,0,5,1,0,2608,24761.891,0,43000.863,0,0,0,1725.8813 +14566,17794,31716,-9,31718,31719,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-896.6239,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14566,17794,31717,-9,31718,31719,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-933.10968,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14566,17794,31718,31719,-9,-9,1,0,39,1,3,0,1,1,-9,0,4,7.833333,7.7248678,0,7,-5,-82.243988,-9,2,2,2021,2,0,49,0,1,0,0,8.7247658,8.7247658,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,58.15,52.91,10,3,4,0,0,6,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14566,17794,31719,31718,-9,-9,1,1,44,1,3,0,1,1,-9,0,4,9.0530558,9.0349617,0,7,5,-10.442031,-9,3,2,2021,7,0,41,0,1,0,0,25.163372,25.163372,0,0,0,0,0,0,0,0,0,0,0,.31720787,0,58.15,52.91,60.12,54.8,8.333333333333334,3,4,0,0,9,8,5,1,535.25,1050078.9,175462.97,862232.63,377735.81,0,0,5074.7563 +14567,17795,31720,-9,31721,31722,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-987.48639,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,8,5,1,3043,829774.31,160729.78,787629.56,69220.609,0,0,4392.8809 +14567,17795,31721,31722,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,8.3659878,8.1027899,0,2,-2,68.577576,0,2,1,2021,10,1,32,30,1,1,0,11.171009,11.171009,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,52,55,10,1,1,0,0,8,8,5,1,3043,829774.31,160729.78,787629.56,69220.609,0,0,4392.8809 +14567,17795,31722,31721,-9,-9,1,1,48,0,1,0,1,1,-9,0,4,9.0857363,8.8749695,0,2,2,3.8620675,-9,2,1,2021,9,0,40,0,1,1,0,18.591251,18.591251,.05,.05,0,0,0,0,0,0,1,1,0,1.1073755,0,52,55,54.37,54.8,8,4,2,0,0,1,8,5,1,3043,829774.31,160729.78,787629.56,69220.609,0,0,4392.8809 +14567,17796,31723,-9,31721,31722,1,1,19,0,1,0,2,2,1,0,4,8.4376469,8.1361485,0,0,0,-1033.2546,-9,2,1,2021,10,0,35,0,1,2,1,13.484068,13.484068,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,1,8,4,1,536,359526.5,0,261356.98,150506.86,0,0,2246.4614 +14568,17797,31724,-9,-9,-9,1,0,43,0,2,0,2,2,-9,0,2,7.3066244,7.385622,0,0,0,-954.78577,0,2,2,2021,19,6,24,24,1,6,0,8.0205364,8.0205364,0,0,0,0,0,0,0,0,1,1,0,0,0,41.17,39.45,-9,-9,6.666666666666667,1,1,0,0,6,9,2,0,1261.6666,25261.949,0,0,0,0,0,2281.3464 +14568,17797,31725,-9,31724,-9,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.3497,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,0,1261.6666,25261.949,0,0,0,0,0,2281.3464 +14568,17797,31726,-9,31724,-9,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1251.4479,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,4,2,-9,0,0,9,2,0,1261.6666,25261.949,0,0,0,0,0,2281.3464 +14569,17798,31727,31728,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.4228888,7.169836,0,12,-5,45.806194,0,-9,2,2021,6,0,30,30,1,0,0,7.3734765,7.3734765,0,0,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,62.19,33.35,8.333333333333334,1,1,0,0,13,6,4,1,610,2632890.5,481762,779690.63,0,0,0,2771.6685 +14569,17798,31728,31727,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.9427137,8.5461359,7.5605774,12,5,146.4819,0,3,2,2021,7,1,24,22,1,1,0,13.927487,13.927487,0,0,0,0,0,0,0,0,0,0,0,4.3664584,7.4332767,62.19,33.35,51.83,57.2,8.333333333333334,1,1,0,0,13,6,4,1,610,2632890.5,481762,779690.63,0,0,0,2771.6685 +14570,17799,31729,31730,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,6.7179942,6.6402721,34,12,-2.3283274,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.238204,6.7057505,57.16,56.15,48,48,10,1,1,0,0,11,7,3,1,252,1227847,589342.63,638032.75,0,0,0,2584.6636 +14570,17799,31730,31729,-9,-9,1,0,58,0,0,0,3,3,-9,0,3,7.9287848,8.3642139,6.2258601,10,-12,152.93227,0,-9,-9,2021,11,0,37,38,1,2,0,6.7345252,6.7345252,0,0,0,0,0,0,0,0,1,1,0,2.6775541,6.1271996,48,48,57.16,56.15,7,1,1,0,0,1,7,3,1,252,1227847,589342.63,638032.75,0,0,0,2584.6636 +14571,17800,31731,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,2,8.4675875,7.9851303,0,0,0,-985.05518,0,3,3,2021,33,12,36,42,1,12,0,17.560667,17.560667,0,0,0,0,0,0,0,0,0,0,0,0,0,9.960000000000001,48.45,-9,-9,3.333333333333333,1,1,0,0,14,9,5,0,867,2466820.3,1005730.8,1486530.8,0,3501.9578,0,605.47699 +14572,17801,31732,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,2.9139791,3.1696563,0,0,-1008.5194,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,2.9961872,63.55,39.7,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,418,13483.979,-110135.63,0,0,0,0,839.72131 +14573,17802,31733,31734,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.7785792,7.8116131,0,39,-3,78.537529,0,3,3,2021,12,0,35,35,1,0,0,8.3459673,8.3459673,0,0,0,0,0,0,0,0,0,0,0,0,0,49.29,54.59,51,49,5,1,1,0,0,10,7,5,1,794,5674448,948820.63,3313531,0,0,0,3680.1196 +14573,17802,31734,31733,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,9.0738754,9.1231632,0,39,3,-9.9955683,-9,-9,-9,2021,10,0,40,0,1,1,0,17.633484,17.633484,0,0,0,0,0,0,0,0,0,0,0,0,0,51,49,49.29,54.59,7,1,1,0,0,1,7,5,1,794,5674448,948820.63,3313531,0,0,0,3680.1196 +14574,17803,31735,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,0,0,-929.17188,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,16.133684,0,0,1,1,0,0,0,44.09,20.38,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,380,180070.38,0,0,0,0,0,2526.7046 +14574,17804,31736,-9,31735,-9,1,0,33,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1003.9385,0,3,3,2021,29,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,13.26,53.86,-9,-9,1.666666666666667,1,1,0,1,0,2,1,0,277,27765.975,0,0,0,2481.6545,0,339.15762 +14575,17805,31737,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,3,0,6.4770279,6.6813726,0,0,-884.88763,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5120199,6.7052507,64.40000000000001,36.46,-9,-9,10,1,1,0,0,4,9,2,0,506,556900.13,6142.9658,381046.53,0,0,0,1245.7542 +14576,17806,31738,-9,31739,31740,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1023.3776,-9,2,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.98,52.59,-9,-9,8.333333333333334,2,3,0,0,0,6,4,1,335,1773.5156,33427.586,97686.406,53497.008,0,0,2845.9749 +14576,17806,31739,31740,-9,-9,1,0,46,0,1,0,2,2,-9,0,3,7.8480196,7.7810068,0,12,-3,-96.205429,-9,-9,-9,2021,10,0,50,0,1,0,0,5.9735932,5.9735932,0,0,0,0,0,0,0,0,1,1,0,2.9963343,0,41.12,43.31,42.68,38.46,6.666666666666667,2,3,0,0,10,6,4,1,335,1773.5156,33427.586,97686.406,53497.008,0,0,2845.9749 +14576,17806,31740,31739,-9,-9,1,1,49,0,1,0,2,2,-9,0,3,8.2158108,8.0309868,0,19,3,-59.978436,-9,-9,-9,2021,10,0,45,0,1,0,0,13.004729,13.004729,.05,.05,0,0,0,0,0,0,1,1,0,4.8957582,0,42.68,38.46,41.12,43.31,6.666666666666667,2,3,0,0,12,6,4,1,335,1773.5156,33427.586,97686.406,53497.008,0,0,2845.9749 +14576,17807,31741,-9,31739,31740,1,0,25,0,1,0,2,2,-9,0,3,7.6035047,7.7337632,0,0,0,-1067.7489,-9,2,2,2021,11,0,42,0,1,0,1,7.6070838,7.6070838,.05,.05,0,0,0,0,0,0,1,1,0,1.1252496,0,39.15,41.42,-9,-9,8.333333333333334,2,3,0,0,7,6,3,1,2161,231383.67,-80810.484,8198.1924,72720.82,0,293.5018,1226.6206 +14576,17808,31742,-9,31739,31740,1,0,21,0,1,0,2,2,-9,0,4,6.521987,6.4205518,0,0,0,-1065.8696,-9,2,2,2021,18,5,34,0,1,5,1,1.9180497,1.9180497,0,0,0,0,0,0,0,0,1,1,0,0,0,38.97,37.8,-9,-9,6.666666666666667,2,3,0,0,5,6,2,1,479,-9613.0879,0,0,0,16669.441,0,125.10791 +14577,17809,31743,-9,31744,31745,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-837.49725,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,4,4,1,1550.6666,106669.65,290583.44,115328.38,83747.039,109.15668,0,2217.6216 +14577,17809,31744,31745,-9,-9,1,0,43,1,1,0,1,1,-9,0,4,8.2198267,8.7645388,0,7,-6,17.836994,-9,-9,-9,2021,10,0,40,0,1,1,0,15.224157,15.224157,0,0,0,0,0,0,0,0,0,0,0,.36793277,0,50,55,50.54,33.6,8,1,1,0,0,1,4,4,1,1550.6666,106669.65,290583.44,115328.38,83747.039,109.15668,0,2217.6216 +14577,17809,31745,31744,-9,-9,1,1,49,1,1,0,3,3,-9,0,2,7.2041402,7.258708,0,7,6,46.789227,0,3,2,2021,19,7,26,34,1,7,0,8.4758692,8.4758692,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50.54,33.6,50,55,3.333333333333333,1,1,0,0,8,4,4,1,1550.6666,106669.65,290583.44,115328.38,83747.039,109.15668,0,2217.6216 +14578,17810,31746,-9,31748,31747,1,1,28,0,0,0,2,2,-9,1,4,0,0,0,0,0,-954.0874,0,2,3,2021,7,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.17,47.54,-9,-9,6.666666666666667,1,1,1,0,0,2,1,0,429,-217255.81,0,0,0,0,0,458.49149 +14578,17811,31747,31748,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,0,0,7,5,-96.07695,0,3,3,2021,17,5,0,0,4,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.01649,0,46.16,54.36,24.23,35.35,10,1,1,0,0,0,2,3,0,1900,1417269.8,1093448.9,76643.039,0,0,0,3051.2661 +14578,17811,31748,31747,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,8.2476349,8.3399401,5.5974951,7,-5,-8.7472305,0,-9,-9,2021,16,6,40,-9,1,6,0,8.720768,8.720768,0,0,0,0,0,0,0,2,1,1,0,0,5.6922235,24.23,35.35,46.16,54.36,6.666666666666667,1,1,0,1,2,2,3,0,1900,1417269.8,1093448.9,76643.039,0,0,0,3051.2661 +14579,17812,31749,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,4.1186342,4.2020445,0,0,-1030.8506,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,4.1576385,0,21.960297,0,1,1,0,0,4.0843072,43.34,22.68,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,2262,-9137.2754,0,83443.609,0,0,0,929.00122 +14580,17813,31750,-9,31751,31753,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.5089,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14580,17813,31751,31753,-9,-9,1,0,33,1,2,0,1,1,-9,0,4,7.4773479,7.8168941,0,10,-8,-62.770008,0,2,2,2021,13,4,15,15,1,4,0,18.221382,18.221382,0,0,0,0,0,0,0,0,1,1,0,7.0447478,0,46.5,58.26,52.23,55.6,8.333333333333334,1,1,0,0,7,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14580,17813,31752,-9,31751,31753,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.5103,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14580,17813,31753,31751,-9,-9,1,1,41,1,2,0,1,1,-9,0,4,8.980876,8.8562727,0,10,8,-64.878983,0,-9,-9,2021,4,0,42,42,1,0,0,23.71191,23.71191,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,46.5,58.26,8.333333333333334,1,1,0,0,8,2,4,1,733.5,-28021.354,63757.258,177431.22,133240.73,3618.356,0,5063.3325 +14581,17814,31754,31755,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,0,0,40,-6,68.808502,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.476727,0,47.81,49.37,39.52,27.84,8.333333333333334,1,1,0,0,7,4,3,1,900.5,748004,309257.94,406880.31,0,3026.4458,0,1970.0063 +14581,17814,31755,31754,-9,-9,1,1,70,0,0,0,2,2,-9,0,1,0,7.8063464,7.6764574,39,6,-48.346081,0,3,2,2021,16,6,0,0,4,6,0,0,0,0,0,0,1,122.78623,121.69814,1158.0682,0,1,1,0,6.7848892,7.5640936,39.52,27.84,47.81,49.37,6.666666666666667,1,1,0,0,6,4,3,1,900.5,748004,309257.94,406880.31,0,3026.4458,0,1970.0063 +14582,17815,31756,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,6.7469401,6.876914,0,0,-955.64301,0,-9,-9,2021,29,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6489449,23.54,24.46,-9,-9,3.333333333333333,3,4,0,1,1,8,2,0,235,229160.63,168026.33,181570.06,0,0,0,975.50934 +14582,17816,31757,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,6.3060908,6.2740636,0,0,-996.55212,0,-9,1,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,14.666123,0,2,1,1,0,0,6.2199569,38.23,32.88,-9,-9,6.666666666666667,4,2,0,0,0,8,2,0,1394,12454.094,-37289.34,0,0,0,0,883.06921 +14583,17817,31758,-9,-9,-9,1,0,20,0,0,0,2,2,-9,0,4,6.3661251,6.2974515,0,0,0,-1036.704,0,-9,-9,2021,12,0,14,0,1,2,0,5.7008314,5.7008314,0,0,0,0,0,0,0,0,1,0,1,0,0,46,58,-9,-9,7,2,3,0,0,1,2,2,0,104,166973.38,0,0,0,0,0,-312.8389 +14584,17818,31759,31760,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,0,0,13,-1,127.97545,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.9676223,0,59.43,58.05,59.43,58.05,10,1,1,0,0,8,10,2,1,884.5,262751.88,-32289.531,125263.2,10604.043,0,0,3629.7588 +14584,17818,31760,31759,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,6.7303963,6.8542495,0,33,1,38.218616,0,2,2,2021,10,1,5,15,1,1,0,15.492358,15.492358,0,0,0,0,0,0,0,2,0,0,0,0,0,59.43,58.05,59.43,58.05,8.333333333333334,1,1,0,0,14,10,2,1,884.5,262751.88,-32289.531,125263.2,10604.043,0,0,3629.7588 +14585,17819,31761,-9,-9,-9,1,0,48,0,1,0,1,1,-9,1,4,7.2935252,7.6898522,0,0,0,-933.22638,0,2,2,2021,11,0,16,8,1,0,0,9.4109459,9.4109459,.05,.05,0,0,0,0,0,110,1,1,0,0,0,44.53,56.37,-9,-9,6.666666666666667,1,1,0,0,10,9,2,1,1626.5,-183891.91,92281.516,0,0,0,0,592.11646 +14585,17819,31762,-9,31761,-9,1,1,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-930.55432,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,2,1,1626.5,-183891.91,92281.516,0,0,0,0,592.11646 +14585,17820,31763,-9,31761,-9,1,0,22,0,1,0,1,1,1,0,4,0,0,0,0,0,-1145.3745,-9,1,-9,2021,5,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6768026,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,9,1,1,1352,-149523.95,0,0,0,0,0,35.428352 +14586,17821,31764,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-973.71472,0,3,3,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.35,24.41,-9,-9,6.666666666666667,1,1,0,0,6,8,1,0,410,-48436.828,0,0,0,0,0,634.41333 +14587,17822,31765,31766,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,7,-8,0,0,3,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.61,46.62,56.58,49.75,8.333333333333334,1,1,0,0,0,9,2,1,432.5,381874.69,0,319399.03,0,0,0,1048.7638 +14587,17822,31766,31765,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,0,0,7,8,0,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.58,49.75,45.61,46.62,8.333333333333334,1,1,0,0,3,9,2,1,432.5,381874.69,0,319399.03,0,0,0,1048.7638 +14588,17823,31767,31769,-9,-9,1,1,39,0,2,0,1,1,-9,0,4,8.7497368,9.0782614,0,1,0,50.958706,-9,-9,-9,2021,9,0,45,0,1,1,0,19.043005,19.043005,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,52,54.51,8,1,1,0,0,1,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17823,31768,-9,31769,31767,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1158.5176,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17823,31769,31767,-9,-9,1,0,39,0,2,0,2,2,-9,1,3,0,0,0,1,0,53.589893,-9,2,2,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,51,56,6.666666666666667,1,1,0,0,3,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17823,31770,-9,31769,31767,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1096.6816,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,1,955,243300.92,71484.242,310253.41,102493.89,-248.43077,0,3601.2241 +14588,17824,31771,-9,31769,31767,1,1,18,0,2,1,2,0,-9,0,4,0,0,0,0,0,-1005.372,-9,2,1,2021,10,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6152198,0,48,59,-9,-9,7,1,1,0,0,0,8,1,1,1082,0,0,0,0,0,0,137.42995 +14589,17825,31772,-9,31773,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-926.12445,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,0,474,-31720.074,0,0,0,0,0,1122.5441 +14589,17825,31773,-9,-9,-9,1,0,25,0,1,0,2,2,-9,0,3,6.8309221,6.9390502,0,0,0,-1002.8314,0,-9,-9,2021,9,1,16,16,1,1,0,8.3315277,8.3315277,0,0,0,0,0,0,0,0,1,1,0,0,0,56.35,51.16,-9,-9,10,1,1,0,0,7,13,2,0,474,-31720.074,0,0,0,0,0,1122.5441 +14590,17826,31774,31775,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.8253555,8.695384,30,8,-185.34973,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.5845461,57.16,56.15,50,47,10,1,1,0,0,0,1,5,1,199.5,1358662.6,725565.88,450409.13,0,1146.8066,13596.541,4530.6016 +14590,17826,31775,31774,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.5465827,7.8625135,7.6308451,6,-8,-59.278313,-9,-9,-9,2021,11,0,24,0,1,2,0,7.5417638,7.5417638,0,0,0,0,0,0,0,0,1,1,0,4.6249681,6.9955692,50,47,57.16,56.15,7,1,1,0,0,1,1,5,1,199.5,1358662.6,725565.88,450409.13,0,1146.8066,13596.541,4530.6016 +14591,17827,31776,-9,31778,31777,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1021.0714,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,9,5,1,426,475751.78,119338.93,474547.91,180280.33,0,0,4943.5259 +14591,17827,31777,31778,-9,-9,1,1,52,0,1,0,1,1,-9,0,3,8.5341473,8.7004709,0,22,3,-176.7187,0,3,2,2021,21,9,40,40,1,9,0,13.906878,13.906878,0,0,.05,0,0,0,0,0,0,0,0,8.1383724,0,36.76,56.28,30.94,61.65,3.333333333333333,2,3,0,0,11,9,5,1,426,475751.78,119338.93,474547.91,180280.33,0,0,4943.5259 +14591,17827,31778,31777,-9,-9,1,0,49,0,1,0,1,1,-9,0,3,8.9979467,9.1639452,0,22,-3,-34.707825,0,3,3,2021,24,12,38,8,1,12,0,26.91963,26.91963,0,0,0,0,0,0,0,0,0,0,0,0,0,30.94,61.65,36.76,56.28,3.333333333333333,2,3,0,0,12,9,5,1,426,475751.78,119338.93,474547.91,180280.33,0,0,4943.5259 +14592,17828,31779,-9,31780,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.9388,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14592,17828,31780,31781,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.4815474,7.6450458,6.1112556,1,4,-84.224396,0,3,3,2021,12,0,30,30,1,0,0,7.7230473,7.7230473,0,0,0,0,0,0,0,0,1,1,0,6.2109404,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,6,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14592,17828,31781,31780,-9,-9,1,1,38,0,1,0,2,2,-9,0,4,8.2928581,8.546196,0,1,-4,12.944684,-9,-9,-9,2021,7,0,42,0,1,0,0,9.8202229,9.8202229,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.2,57.49,10,1,1,0,0,0,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14592,17828,31782,-9,31780,-9,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-1061.9626,-9,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.36,57.34,-9,-9,8.333333333333334,1,1,0,0,1,12,4,0,614.25,62329.609,-19162.018,115016.8,112922.5,1241.5142,0,3090.0427 +14593,17829,31783,-9,-9,-9,1,0,82,0,0,0,2,2,-9,0,2,0,7.076551,6.8619184,0,0,-967.56036,0,3,3,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,17.191282,11.21863,145.32852,0,1,1,0,.60823619,7.2223215,32.41,44.91,-9,-9,6.666666666666667,1,1,0,0,0,6,2,0,231,91232.766,92398.781,114762.9,0,0,0,1244.1957 +14594,17830,31784,-9,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.1419535,8.129653,0,0,0,-895.36224,0,2,2,2021,11,0,40,46,1,0,0,9.2756701,9.2756701,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,-9,-9,6.666666666666667,1,1,0,0,8,10,4,1,759,-44664.855,30803.453,0,0,0,0,1722.5387 +14595,17831,31785,31786,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,7.144506,7.7130752,6.6902294,42,-3,-27.683704,0,3,3,2021,13,2,16,15,1,2,0,12.255736,12.255736,0,0,0,0,0,0,0,0,0,0,0,0,6.2657814,47.47,41.63,57.16,56.15,6.666666666666667,4,2,0,0,13,9,4,1,1250,1562084.5,1130670,437193.44,31237.117,0,0,3325.9309 +14595,17831,31786,31785,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,7.918222,8.7085571,7.2860394,42,3,-1.2397697,0,3,3,2021,7,0,55,55,1,0,0,8.1766605,8.1766605,0,0,0,0,0,0,0,0,0,0,0,0,7.7418208,57.16,56.15,47.47,41.63,8.333333333333334,1,1,0,0,13,9,4,1,1250,1562084.5,1130670,437193.44,31237.117,0,0,3325.9309 +14596,17832,31787,-9,-9,-9,1,0,64,0,0,0,1,1,-9,1,1,0,0,0,0,0,-989.24408,0,2,2,2021,13,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.56895375,0,54.63,10.83,-9,-9,1.666666666666667,4,2,0,0,0,4,1,0,801,649807.31,259030.22,495843.03,10397.711,0,0,1330.4967 +14597,17833,31788,-9,-9,31789,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1012.3149,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,11,5,1,915.5,191278.48,75830.703,0,0,0,0,2390.1018 +14597,17833,31789,-9,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.905098,8.6273699,0,0,0,-942.74683,-9,2,2,2021,10,0,50,0,1,0,0,15.819496,15.819496,.05,.05,0,0,0,0,0,0,0,0,0,2.3343596,0,49.04,55.86,-9,-9,5,1,1,0,0,12,11,5,1,915.5,191278.48,75830.703,0,0,0,0,2390.1018 +14598,17834,31790,31791,-9,-9,1,0,80,0,0,0,3,3,-9,0,5,0,0,0,43,-3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,62.39,56.71,47.87,20.38,10,1,1,0,0,0,6,1,1,434.5,172954.63,0,180052.16,0,0,0,1560.9834 +14598,17834,31791,31790,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,43,3,0,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.8431687,0,23.620687,0,1,1,0,0,0,47.87,20.38,62.39,56.71,10,1,1,0,0,0,6,1,1,434.5,172954.63,0,180052.16,0,0,0,1560.9834 +14599,17835,31792,31793,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,0,7.6695728,7.4757466,33,0,-127.75929,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.2568526,7.8019986,57.33,53.46,60.47,41.03,8.333333333333334,1,1,0,0,11,10,3,1,724.5,970519.13,704951,337679.81,0,0,0,1677.7137 +14599,17835,31793,31792,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,6.1688313,7.078413,33,0,-22.633244,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0676966,6.9385467,60.47,41.03,57.33,53.46,8.333333333333334,1,1,0,0,0,10,3,1,724.5,970519.13,704951,337679.81,0,0,0,1677.7137 +14600,17836,31794,31795,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,1,5,166.83905,0,-9,-9,2021,8,0,0,37,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,2.1665311,0,52.6,52.88,64.64,45.93,6.666666666666667,1,1,1,0,10,4,3,1,542.5,333599.31,87802.883,196568.13,0,0,0,842.50348 +14600,17836,31795,31794,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.8384385,7.8990421,0,1,-5,-112.46848,-9,-9,-9,2021,6,0,30,0,1,0,0,11.622261,11.622261,0,0,0,0,0,0,0,0,1,1,0,0,0,64.64,45.93,52.6,52.88,8.333333333333334,1,1,0,0,3,4,3,1,542.5,333599.31,87802.883,196568.13,0,0,0,842.50348 +14600,17837,31796,-9,-9,31794,1,1,27,0,0,0,1,1,0,0,4,0,0,0,0,0,-1119.5576,-9,-9,2,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,4,1,1,749,-35678.98,0,0,0,0,0,722.79724 +14600,17838,31797,-9,-9,31794,1,1,21,0,0,1,2,0,0,0,4,0,0,0,0,0,-990.88721,-9,-9,2,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,4,1,1,267,214588.39,0,0,0,0,0,0 +14601,17839,31798,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.2137127,8.0656548,0,0,0,-931.04779,0,2,2,2021,13,3,37,37,1,3,0,11.660169,11.660169,0,0,0,0,0,0,0,0,1,1,0,4.0607448,0,35.55,60.77,-9,-9,3.333333333333333,1,1,0,0,7,9,4,0,285,208509.23,-76929.516,0,0,0,0,1413.5054 +14602,17840,31799,-9,31800,31801,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.44855,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.0172077,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14602,17840,31800,31801,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,8.8788528,8.6752996,0,7,4,10.815691,0,1,1,2021,22,11,74,31,1,11,0,7.5395308,7.5395308,.05,.05,0,0,0,0,0,0,1,1,0,2.0172412,0,28.33,62.63,45.86,53.23,6.666666666666667,4,5,0,0,6,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14602,17840,31801,31800,-9,-9,1,1,35,0,2,0,1,1,-9,0,4,8.9227839,9.4271355,0,7,-4,-79.449791,0,2,2,2021,5,0,39,35,1,0,0,26.441147,26.441147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.86,53.23,28.33,62.63,8.333333333333334,3,4,0,0,6,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14602,17840,31802,-9,31800,31801,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.27368,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,4,2,-9,0,0,8,5,1,723.25,835601.63,347697.72,671756.88,291666.44,0,0,5379.249 +14603,17841,31803,-9,31805,31804,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1043.1206,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,5,1,981,336575.53,225300.75,414677.88,308583.75,18449.039,1052.6593,5018.1201 +14603,17841,31804,31805,-9,-9,1,1,38,1,1,0,1,1,-9,0,3,9.19417,9.2722998,0,10,3,-7.904655,0,2,2,2021,15,4,70,60,1,4,0,13.859959,13.859959,.05,.05,0,0,0,0,0,0,1,1,0,1.2655265,0,46.73,54.33,48.74,51.67,6.666666666666667,1,1,0,0,10,5,5,1,981,336575.53,225300.75,414677.88,308583.75,18449.039,1052.6593,5018.1201 +14603,17841,31805,31804,-9,-9,1,0,35,1,1,0,1,1,-9,0,4,8.645668,8.5307274,0,10,-3,140.17314,0,2,2,2021,6,0,17,16,1,0,0,33.357918,33.357918,.05,.05,0,0,0,0,0,0,1,1,0,1.4833448,0,48.74,51.67,46.73,54.33,8.333333333333334,1,1,0,0,12,5,5,1,981,336575.53,225300.75,414677.88,308583.75,18449.039,1052.6593,5018.1201 +14604,17842,31806,31807,-9,-9,1,1,33,0,0,0,3,3,-9,0,4,8.4233332,8.3495531,0,6,0,-137.89302,0,2,2,2021,10,0,45,40,1,0,0,15.787741,15.787741,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,6,5,0,431,130619.89,41131.656,117576.4,76257.875,4101.8853,4608.8647,3278.4902 +14604,17842,31807,31806,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.832058,7.7318606,0,6,0,23.833572,0,-9,-9,2021,4,0,40,40,1,0,0,8.338213,8.338213,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,6,6,5,0,431,130619.89,41131.656,117576.4,76257.875,4101.8853,4608.8647,3278.4902 +14605,17843,31808,-9,31810,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-999.4472,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,740.66669,-83465.328,-17171.492,0,0,0,789.02448,2657.1313 +14605,17843,31809,-9,31810,-9,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1177.8552,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,13,3,0,740.66669,-83465.328,-17171.492,0,0,0,789.02448,2657.1313 +14605,17843,31810,-9,-9,-9,1,0,31,0,2,0,1,1,1,0,2,8.2123566,8.2369919,0,0,0,-1049.0557,-9,3,2,2021,24,12,40,0,1,12,0,10.575982,10.575982,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.81,57.6,-9,-9,3.333333333333333,1,1,0,0,6,13,3,0,740.66669,-83465.328,-17171.492,0,0,0,789.02448,2657.1313 +14606,17844,31811,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-951.57806,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,30.444387,6.5134144,264.8642,0,1,1,0,0,0,43.57,24.7,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,297,25192.834,0,0,0,0,2298.4075,2165.9573 +14607,17845,31812,-9,-9,-9,1,1,28,0,0,0,1,1,-9,0,3,7.2253747,7.1543365,0,0,0,-1041.7961,0,1,1,2021,12,0,6,6,1,0,1,27.344679,27.344679,.05,.05,0,0,0,0,0,0,1,1,0,5.0496154,0,39.65,56.19,-9,-9,3.333333333333333,1,1,0,0,10,6,3,1,466,-282341.97,-75023.828,0,0,0,0,1033.9313 +14608,17846,31813,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,3,0,0,0,0,0,-953.76648,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,44,-9,-9,8,1,1,0,0,0,1,1,1,890,-48900.297,0,0,0,0,0,1001.5208 +14609,17847,31814,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.1754751,8.2051258,0,0,0,-778.19238,0,2,2,2021,15,4,37,37,1,4,0,10.609587,10.609587,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.5,51.25,-9,-9,6.666666666666667,1,1,0,0,13,10,4,1,369,662465.5,55703.707,0,0,0,0,2055.9402 +14610,17848,31815,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,9.1079273,9.0490189,0,0,0,-992.8512,0,2,2,2021,7,0,38,38,1,0,0,25.321665,25.321665,.05,.05,0,0,0,0,0,0,0,0,0,1.3327734,0,57.06,57.76,-9,-9,10,1,1,0,0,9,8,5,1,2080,127045.21,-20164.592,0,0,0,0,2898.9104 +14611,17849,31816,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.8920536,7.6544695,7.4368167,0,0,-1078.4695,0,3,3,2021,12,2,14,10,1,2,0,7.196372,7.196372,0,0,0,0,0,0,0,2,1,1,0,7.0257783,0,36.8,42.82,-9,-9,8.333333333333334,1,1,0,0,11,9,3,0,1034.5,817408.44,356581.81,226849.56,0,0,0,2399.9238 +14611,17849,31817,-9,31816,-9,1,0,14,0,0,1,3,0,-9,0,5,0,0,0,0,0,-1081.6841,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,9,3,0,1034.5,817408.44,356581.81,226849.56,0,0,0,2399.9238 +14612,17850,31818,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.065589,6.7008181,0,0,-981.29132,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.48878273,7.1343613,64.40000000000001,15.2,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,276,2148709,1948407,0,0,0,0,1170.3534 +14613,17851,31819,31820,-9,-9,1,0,43,0,0,0,2,2,-9,0,3,0,0,0,15,-1,-131.86382,0,2,2,2021,9,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.38,46.77,46.31,51.53,8.333333333333334,1,1,0,0,0,9,4,1,291,2017173.9,620054.38,455552.81,0,0,0,1930.2649 +14613,17851,31820,31819,-9,-9,1,1,44,0,0,0,3,3,-9,0,3,8.3376513,8.4084244,0,15,1,8.0661459,0,2,2,2021,13,2,51,47,1,2,0,11.623788,11.623788,.05,.05,0,0,0,0,0,0,0,0,0,3.0587697,0,46.31,51.53,54.38,46.77,8.333333333333334,1,1,0,0,9,9,4,1,291,2017173.9,620054.38,455552.81,0,0,0,1930.2649 +14613,17852,31821,-9,31819,31820,1,0,22,0,0,0,2,2,-9,0,2,7.6486959,7.3550606,0,0,0,-1101.1428,0,2,2,2021,15,3,32,37,1,3,1,7.7982607,7.7982607,0,0,0,0,0,0,0,0,0,0,0,0,0,30.1,43.29,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,428,117387.84,-76271.047,0,0,1021.0743,0,1145.6459 +14614,17853,31822,31824,-9,-9,1,1,30,0,1,0,3,3,-9,0,3,0,0,0,8,2,0,0,3,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.65,57.36,62.9,48.63,3.333333333333333,1,1,1,0,0,13,1,0,2277.3333,31852.307,24706.629,0,0,6.0090804,0,384.29575 +14614,17853,31823,-9,31824,31822,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1095.0028,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,6,-9,0,0,13,1,0,2277.3333,31852.307,24706.629,0,0,6.0090804,0,384.29575 +14614,17853,31824,31822,-9,-9,1,0,28,0,1,0,3,3,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.9,48.63,40.65,57.36,10,4,1,1,0,0,13,1,0,2277.3333,31852.307,24706.629,0,0,6.0090804,0,384.29575 +14615,17854,31825,31826,-9,-9,1,1,52,0,1,0,3,3,-9,0,3,8.1741867,7.9292002,0,25,5,12.086176,0,3,3,2021,11,0,30,34,1,2,0,11.949931,11.949931,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49,50,46,50,7,2,3,0,0,13,8,3,0,810,476667.81,4124.6016,390949.75,0,0,0,2833.8303 +14615,17854,31826,31825,-9,-9,1,0,47,0,1,0,3,3,-9,1,3,0,0,0,25,-5,-157.30673,0,-9,-9,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,46,50,49,50,7,2,3,0,0,0,8,3,0,810,476667.81,4124.6016,390949.75,0,0,0,2833.8303 +14615,17855,31827,31828,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,7.7691946,7.8828831,0,4,0,-44.201916,0,-9,-9,2021,12,0,37,37,1,2,0,9.6055288,9.6055288,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,48.91,42.54,7,2,3,0,0,6,8,4,0,898.5,-24007.801,-34321.25,0,0,5173.5503,0,3352.5242 +14615,17855,31828,31827,31826,31825,1,1,28,0,1,0,1,1,-9,0,3,8.2570009,8.4227257,0,4,0,-11.114987,0,3,3,2021,12,1,35,40,1,1,0,12.082799,12.082799,.05,.05,0,0,0,0,0,7,1,1,0,0,0,48.91,42.54,46,58,8.333333333333334,2,3,0,0,8,8,4,0,898.5,-24007.801,-34321.25,0,0,5173.5503,0,3352.5242 +14615,17856,31829,-9,31826,31825,1,0,24,0,1,0,1,1,-9,0,4,8.4565258,7.9213901,0,0,0,-1021.8708,0,3,3,2021,11,2,40,20,1,2,1,10.153407,10.153407,0,0,0,0,0,0,0,7,1,1,0,0,0,37.99,47.35,-9,-9,5,2,3,0,0,5,8,4,0,515,105882.84,0,0,0,0,0,946.57623 +14615,17857,31830,-9,31826,31825,1,1,25,0,1,0,1,1,-9,0,5,7.4020247,6.8686838,0,0,0,-1111.075,0,3,3,2021,5,0,15,10,1,0,1,13.133244,13.133244,.05,.05,0,0,0,0,0,27,1,1,0,0,0,48.87,53.15,-9,-9,10,2,3,0,0,3,8,3,0,136,20829.445,-5034.98,0,0,0,0,1345.6014 +14616,17858,31831,31833,-9,-9,1,0,41,1,2,0,1,1,-9,0,5,8.6656227,8.7844315,0,7,-15,81.918907,0,2,3,2021,19,7,48,54,1,7,0,17.221346,17.221346,0,0,0,0,0,0,0,0,1,1,0,0,0,40.61,64.02,57.06,57.76,3.333333333333333,1,1,0,1,9,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14616,17858,31832,-9,31831,31833,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.15094,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14616,17858,31833,31831,-9,-9,1,1,56,1,2,0,2,2,-9,0,5,6.4645014,6.7661915,0,7,15,-5.1088963,0,2,-9,2021,6,0,30,25,1,0,0,2.9233105,2.9233105,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,40.61,64.02,8.333333333333334,4,2,0,0,8,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14616,17858,31834,-9,31831,31833,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-970.24518,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,5,4,1,3997.25,947011.13,735645.88,132611.8,0,0,0,2848.2415 +14617,17859,31835,31837,-9,-9,1,1,38,1,1,0,1,1,-9,0,5,8.9299994,8.8184834,0,6,5,-49.980751,0,-9,-9,2021,9,0,37,42,1,0,0,21.635372,21.635372,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,48.77,60.16,8.333333333333334,1,1,0,0,8,2,5,1,308,144487.98,299536.47,200628.75,182688.03,4155.4258,0,3914.8384 +14617,17859,31836,-9,31837,31835,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-989.19446,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,308,144487.98,299536.47,200628.75,182688.03,4155.4258,0,3914.8384 +14617,17859,31837,31835,-9,-9,1,0,33,1,1,0,1,1,-9,0,5,8.5035505,9.1415644,0,6,-5,-99.90844,0,2,2,2021,10,0,52,52,1,0,0,14.513176,14.513176,0,0,0,0,0,0,0,0,1,1,0,1.9271357,0,48.77,60.16,48.18,61.8,8.333333333333334,1,1,0,0,8,2,5,1,308,144487.98,299536.47,200628.75,182688.03,4155.4258,0,3914.8384 +14618,17860,31838,-9,-9,-9,1,1,31,0,0,0,1,1,-9,0,3,8.6660976,8.6333637,0,0,0,-1030.2061,0,-9,-9,2021,10,0,38,38,1,0,0,23.497168,23.497168,.05,.05,0,0,0,0,0,0,1,1,0,5.465755,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,11,12,5,1,1097,96734.984,96472.602,0,0,0,0,1573.2156 +14619,17861,31839,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1096.3125,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,2,13,1,1,1713,9540.1221,-36023.617,58144.934,20672.025,8412.21,354.93036,-131.33479 +14620,17862,31840,31841,-9,-9,1,0,50,0,0,0,2,2,-9,1,2,7.6088343,7.435432,0,5,-2,-131.46455,0,-9,-9,2021,25,9,31,32,1,9,0,8.4585524,8.4585524,0,0,0,0,0,0,0,0,1,1,0,0,0,39.99,24.96,57.06,57.76,3.333333333333333,1,1,0,0,11,10,3,1,206.5,338441.69,181259.97,172409.47,0,7168.5708,0,1293.4172 +14620,17862,31841,31840,-9,-9,1,1,52,0,0,0,2,2,-9,0,5,6.252914,6.4694586,0,5,2,12.792291,0,2,2,2021,7,0,45,50,1,0,0,1.3988527,1.3988527,.05,.05,0,0,0,0,0,0,1,1,0,1.6464959,0,57.06,57.76,39.99,24.96,8.333333333333334,1,1,0,0,9,10,3,1,206.5,338441.69,181259.97,172409.47,0,7168.5708,0,1293.4172 +14621,17863,31842,-9,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.1973829,5.0221772,0,0,-984.4198,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.1561242,4.9966421,55.79,52.62,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,161,220559.28,0,98935.313,0,0,0,604.37311 +14622,17864,31843,31844,-9,-9,1,1,81,0,0,0,2,2,-9,0,3,0,6.6726432,6.3323526,49,7,-26.045219,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.6027479,61.78,37.78,60.04,36.97,8.333333333333334,1,1,0,0,0,7,2,1,1419,460592.5,258821,268059.5,0,0,0,1347.3417 +14622,17864,31844,31843,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.518259,6.5970955,49,-7,-7.6281304,0,1,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6352205,5.9861774,60.04,36.97,61.78,37.78,8.333333333333334,1,1,0,0,4,7,2,1,1419,460592.5,258821,268059.5,0,0,0,1347.3417 +14622,17865,31845,-9,31844,31843,1,1,35,0,0,0,2,2,-9,0,3,7.9938469,7.8798242,0,0,0,-1026.1229,0,1,2,2021,11,0,37,40,1,0,0,8.2450924,8.2450924,0,0,0,0,0,0,0,0,1,1,0,0,0,48.7,56.22,-9,-9,1.666666666666667,1,1,0,0,9,7,4,1,3449,137052.69,0,0,0,0,0,1177.3372 +14623,17866,31846,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,0,0,0,0,-962.75183,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.53,51.55,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,407,451133.56,0,282637.22,0,0,0,1246.1538 +14624,17867,31847,31848,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.3689833,8.6149187,0,3,-3,88.649918,0,2,2,2021,11,0,25,40,1,2,0,17.335241,17.335241,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.06,58.64,10,1,1,0,0,6,9,5,1,688.5,2881544.5,630772.81,557264.25,0,0,0,4392.5879 +14624,17867,31848,31847,-9,-9,1,1,41,0,0,0,2,2,-9,0,4,8.707078,9.0832338,0,3,3,-131.53528,0,2,2,2021,12,0,50,60,1,0,0,12.842508,12.842508,.05,.05,0,0,0,0,0,0,0,0,0,7.7429929,0,49.06,58.64,54.2,57.49,6.666666666666667,1,1,0,0,9,9,5,1,688.5,2881544.5,630772.81,557264.25,0,0,0,4392.5879 +14625,17868,31849,-9,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,7.8592806,8.3198643,0,7,-8,63.323246,0,2,3,2021,13,1,40,0,1,1,0,9.5766916,9.5766916,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,44.19,58.01,29.19,19.44,8.333333333333334,1,1,0,1,7,13,3,0,724,-100617.47,-61651.402,0,0,0,0,1487.0856 +14625,17869,31850,-9,-9,-9,1,0,46,0,0,0,2,2,-9,1,1,0,0,0,7,8,13.084919,0,-9,-9,2021,20,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.19,19.44,44.19,58.01,0,1,1,0,0,2,13,3,0,334,96685.352,0,0,0,2758.2314,0,419.79126 +14625,17870,31851,-9,31850,-9,1,1,21,0,0,0,2,2,-9,0,3,7.421504,7.8437157,0,0,0,-1027.3784,0,2,-9,2021,12,2,42,36,1,2,1,4.818047,4.818047,0,0,0,0,0,0,0,14.5,1,1,0,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,1,13,3,0,785,-217784.03,0,0,0,0,0,850.16833 +14626,17871,31852,-9,-9,-9,1,1,33,0,0,0,1,1,-9,0,4,8.4742851,8.2250919,0,0,0,-908.63947,0,1,1,2021,7,0,42,42,1,0,0,10.051025,10.051025,0,0,0,0,0,0,0,0,0,0,0,4.3720107,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,7,8,4,0,1016,0,0,0,0,0,0,2693.6001 +14627,17872,31853,31854,-9,-9,1,1,76,0,0,0,1,1,-9,0,3,0,7.3251753,7.17869,6,6,28.650196,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9952064,7.5593491,48.36,52.17,42.28,50.79,8.333333333333334,1,1,0,0,0,13,3,1,369.5,1619396,461528.19,1042981.3,0,0,0,2985.5735 +14627,17872,31854,31853,-9,-9,1,0,70,0,0,0,1,1,-9,0,3,0,7.4968624,7.2625575,6,-6,-.67946857,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5975904,7.1879749,42.28,50.79,48.36,52.17,8.333333333333334,1,1,0,0,0,13,3,1,369.5,1619396,461528.19,1042981.3,0,0,0,2985.5735 +14628,17873,31855,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,5,7.6896625,7.9046326,0,0,0,-967.68402,0,3,2,2021,12,0,27,28,1,0,0,12.756835,12.756835,0,0,0,0,0,0,0,2,0,0,0,4.5761704,0,49.34,58.54,-9,-9,6.666666666666667,1,1,0,0,10,7,3,1,7274,607237,0,325893.84,0,0,0,1043.9406 +14629,17874,31856,-9,-9,-9,1,1,52,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1007.9175,0,-9,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.59,29.04,-9,-9,0,1,1,0,0,0,1,1,0,153,70255.234,130055.3,0,0,0,0,898.0155 +14630,17875,31857,-9,31859,31858,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-897.64508,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14630,17875,31858,31859,-9,-9,1,1,51,0,2,0,3,3,-9,0,3,9.310813,9.4156046,0,16,8,31.261021,0,-9,-9,2021,8,0,50,50,1,0,0,23.241974,23.241974,.05,.05,0,0,0,0,0,0,0,0,0,6.9989085,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,8,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14630,17875,31859,31858,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,8.228796,8.0620975,0,16,-8,34.51152,0,3,-9,2021,6,0,26,33,1,0,0,12.321507,12.321507,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,54.37,54.8,8.333333333333334,4,2,0,0,4,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14630,17875,31860,-9,31859,31858,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-946.05286,-9,2,3,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,54,-9,-9,6,4,2,-9,0,0,7,5,1,750,965651,166755.25,685008.75,0,0,0,5628.0391 +14631,17876,31861,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,6.9009328,7.1636152,0,0,-1006.8129,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.038938,7.2726326,54.2,57.49,-9,-9,3.333333333333333,1,1,0,0,7,2,3,1,528,1106524,950568.75,75518.461,0,0,0,1112.0032 +14632,17877,31862,31864,-9,-9,1,0,49,0,1,0,2,2,-9,0,4,8.8306351,8.6998959,0,25,-5,61.298779,0,3,3,2021,10,0,45,45,1,0,0,15.716576,15.716576,0,0,0,0,0,0,0,0,1,1,0,0,0,47.52,57.75,46.08,57.2,10,1,1,0,0,12,8,5,1,842.33331,48757.836,64007.613,0,0,3504.9177,0,3470.0923 +14632,17877,31863,-9,31862,31864,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-875.40906,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,842.33331,48757.836,64007.613,0,0,3504.9177,0,3470.0923 +14632,17877,31864,31862,-9,-9,1,1,54,0,1,0,3,3,-9,0,3,8.1495275,8.0253439,0,25,5,12.197324,0,-9,-9,2021,11,0,60,60,1,0,0,7.926703,7.926703,0,0,0,0,0,0,0,0,1,1,0,0,0,46.08,57.2,47.52,57.75,5,1,1,0,0,12,8,5,1,842.33331,48757.836,64007.613,0,0,3504.9177,0,3470.0923 +14633,17878,31865,-9,31866,31867,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-1032.1708,-9,3,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.43,58.05,-9,-9,8.333333333333334,2,3,0,0,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17878,31866,31867,-9,-9,1,0,50,0,1,0,3,3,-9,1,4,0,0,0,36,-7,0,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,51,54,51,49,8,2,3,0,1,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17878,31867,31866,-9,-9,1,1,57,0,1,0,2,2,-9,1,3,0,0,0,7,7,0,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,49,51,54,7,2,3,0,0,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17878,31868,-9,31866,31867,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-967.82593,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,2,3,-9,0,0,4,1,0,1154.25,0,0,0,0,0,0,2150.0112 +14633,17879,31869,-9,31866,31867,1,0,28,0,1,0,2,2,-9,0,5,0,0,0,0,0,-990.79663,0,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.72,45.62,-9,-9,8.333333333333334,2,3,1,1,0,4,1,0,851,258.14667,0,0,0,0,0,759.70459 +14633,17880,31870,-9,31866,31867,1,0,24,0,1,0,1,1,-9,0,5,0,0,0,0,0,-943.33478,0,3,2,2021,10,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.09,61.58,-9,-9,5,2,3,1,1,0,4,1,0,331,-100912.52,0,94279.367,84396.156,0,0,-192.70801 +14633,17881,31871,-9,31866,31867,1,0,26,0,1,0,2,2,-9,0,3,7.6618161,7.2942219,0,0,0,-1090.1259,0,3,2,2021,12,1,38,50,1,1,1,6.4429359,6.4429359,.05,.05,0,0,0,0,0,0,1,1,0,0,0,43.37,57.28,-9,-9,6.666666666666667,2,3,0,0,2,4,3,0,271,109006.31,-47756.078,0,0,0,0,761.77319 +14634,17882,31872,31874,-9,-9,1,1,24,0,1,0,3,3,-9,0,5,7.7957382,7.4042687,0,4,-6,18.764351,0,-9,-9,2021,6,0,39,30,1,0,0,5.7174234,5.7174234,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,44,52,10,1,1,0,0,2,11,3,0,1823.3334,-30072.309,-7259.3364,0,0,0,3092.0654,2023.599 +14634,17882,31873,-9,31874,31872,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-935.75348,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,0,1823.3334,-30072.309,-7259.3364,0,0,0,3092.0654,2023.599 +14634,17882,31874,31872,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,6.4471354,6.4900913,0,4,6,1.5359567,0,3,3,2021,7,0,10,0,1,0,0,7.3464127,7.3464127,0,0,0,0,0,0,0,0,1,1,0,0,0,44,52,62.39,56.71,6.666666666666667,1,1,0,0,6,11,3,0,1823.3334,-30072.309,-7259.3364,0,0,0,3092.0654,2023.599 +14635,17883,31875,31876,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,7.4131217,7.886972,5.8473883,50,1,-146.15002,0,3,3,2021,8,0,40,40,1,0,0,5.8220453,5.8220453,.05,.05,0,0,0,0,0,7,1,1,0,4.7370496,6.4269528,59.73,42.63,33.07,41.95,5,1,1,0,0,7,9,3,0,1645,754237.31,408455.38,325399.47,0,0,0,2449.0796 +14635,17883,31876,31875,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,5.6243415,5.6013227,50,-1,47.528099,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.2920938,33.07,41.95,59.73,42.63,3.333333333333333,1,1,0,0,6,9,3,0,1645,754237.31,408455.38,325399.47,0,0,0,2449.0796 +14636,17884,31877,31878,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,8.6537647,8.600481,0,11,-3,-43.380436,0,3,3,2021,11,2,30,37,1,2,0,14.830881,14.830881,0,0,0,0,0,0,0,0,0,0,0,3.0989709,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,12,13,5,1,548,466728.06,193314.47,150070.97,75320.344,0,0,2861.8325 +14636,17884,31878,31877,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,7.9945564,8.0715523,0,11,3,-23.515163,0,3,3,2021,10,0,40,40,1,0,0,11.032443,11.032443,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,12,13,5,1,548,466728.06,193314.47,150070.97,75320.344,0,0,2861.8325 +14637,17885,31879,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,2,0,7.6314325,7.7907906,0,0,-1007.1614,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.6121497,7.6419234,44.33,41.95,-9,-9,6.666666666666667,1,1,0,0,13,9,3,1,2073,927400.69,0,830185.38,0,0,0,389.3064 +14637,17886,31880,-9,31879,-9,1,0,30,0,0,0,2,2,-9,0,4,8.3137274,8.1903906,0,0,0,-949.31854,-9,1,-9,2021,19,7,35,0,1,7,0,13.760112,13.760112,0,0,0,0,0,0,0,0,0,0,0,0,0,35.37,53.86,-9,-9,6.666666666666667,1,1,0,0,11,9,4,1,402,55814.496,0,0,0,0,0,1937.7074 +14638,17887,31881,31882,-9,-9,1,0,41,0,0,0,1,1,-9,0,4,8.9427643,9.1859608,5.5784626,20,-8,65.224434,0,2,2,2021,7,0,83,47,1,0,0,12.505777,12.505777,.05,.05,0,0,0,0,0,0,0,0,0,5.4809117,0,47.49,55.02,49,50,8.333333333333334,1,1,0,0,10,2,5,1,1570,418424.75,500524.44,203940.23,145664.66,2415.719,336.64691,5010.7822 +14638,17887,31882,31881,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.7662029,8.9108019,0,20,8,52.273079,0,2,2,2021,12,0,37,35,1,0,0,17.11747,17.11747,.05,.05,0,0,0,0,0,0,0,0,0,3.3250585,0,49,50,47.49,55.02,5,1,1,0,0,12,2,5,1,1570,418424.75,500524.44,203940.23,145664.66,2415.719,336.64691,5010.7822 +14639,17888,31883,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1041.3912,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,52.6,52.88,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,1854,103647.09,0,0,0,0,0,496.30115 +14639,17889,31884,-9,31883,-9,1,0,42,0,0,0,2,2,-9,0,3,7.4435763,7.4244847,0,0,0,-941.76666,0,3,-9,2021,8,0,12,12,1,0,0,13.156523,13.156523,0,0,0,0,0,0,0,0,1,0,1,0,0,57.09,46.7,-9,-9,5,1,1,0,1,7,7,3,0,237,9079.1963,122618.57,0,0,-1022.5488,0,1087.4049 +14640,17890,31885,-9,31888,31886,1,1,1,2,2,1,3,0,-9,0,4,0,0,0,0,0,-983.43304,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14640,17890,31886,31888,-9,-9,1,1,50,2,2,0,2,2,-9,0,3,8.7482882,9.1000004,6.7509217,9,14,129.56473,0,2,2,2021,8,1,39,40,1,1,0,23.96664,23.96664,.05,.05,0,0,0,0,0,0,1,1,0,0,7.3139472,55.36,51.57,43.15,45.27,8.333333333333334,1,1,0,0,11,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14640,17890,31887,-9,31888,31886,1,1,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1090.0802,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14640,17890,31888,31886,-9,-9,1,0,36,2,2,0,1,1,-9,0,4,0,0,0,9,-14,17.479078,0,-9,-9,2021,12,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.15,45.27,55.36,51.57,8.333333333333334,1,1,0,0,6,9,4,1,1010.5,853240.38,796618,0,0,31284.363,0,3604.9075 +14641,17891,31889,-9,31890,-9,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1117.6014,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,11,1,0,847,-79110.023,0,0,0,0,0,784.39966 +14641,17891,31890,-9,-9,-9,1,0,30,0,1,0,2,2,-9,0,3,0,0,0,0,0,-868.04352,0,3,3,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,8.56,52.97,-9,-9,1.666666666666667,1,1,1,0,0,11,1,0,847,-79110.023,0,0,0,0,0,784.39966 +14642,17892,31891,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,1,0,6.7089491,6.7287617,0,0,-947.36859,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,38.855637,0,0,1,1,0,0,6.6793799,45.43,14.88,-9,-9,6.666666666666667,1,1,0,0,0,2,2,1,500,43397.625,76696.336,99042.656,0,0,0,1577.623 +14643,17893,31892,31893,-9,-9,1,0,50,0,0,0,1,1,-9,0,3,9.3808422,9.2636967,0,26,1,-23.541918,0,2,1,2021,11,1,48,56,1,1,0,25.417662,25.417662,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.22,49.35,58.32,50.22,10,1,1,0,0,9,13,5,1,582,1097297,1099948.5,132776.75,83848.375,2400.8921,381.76669,7689.126 +14643,17893,31893,31892,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,9.5282917,9.4297295,0,26,-1,-161.1566,0,1,2,2021,8,0,45,54,1,0,0,38.551922,38.551922,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.22,49.35,8.333333333333334,1,1,0,0,9,13,5,1,582,1097297,1099948.5,132776.75,83848.375,2400.8921,381.76669,7689.126 +14643,17894,31894,-9,31892,31893,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1001.3816,-9,1,1,2021,18,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.01,58.07,-9,-9,10,1,1,0,0,0,13,1,1,993,181676.77,67244.352,0,0,0,0,0 +14644,17895,31895,31896,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,8.704237,9.2069912,8.0904732,37,3,34.361263,0,2,3,2021,8,0,43,40,1,0,0,14.339712,14.339712,.05,.05,0,0,0,0,0,0,0,0,0,0,8.0141363,44.17,49.99,51.41,56.15,5,1,1,0,0,15,9,5,1,634.5,13393044,4532969.5,2259953.5,0,5148.2202,0,3979.2144 +14644,17895,31896,31895,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,0,7.8602171,7.7103901,35,-3,-21.386732,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.1744487,7.5168204,51.41,56.15,44.17,49.99,8.333333333333334,1,1,0,0,15,9,5,1,634.5,13393044,4532969.5,2259953.5,0,5148.2202,0,3979.2144 +14645,17896,31897,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,4,0,6.8239207,6.6953044,0,0,-903.63855,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,0,0,0,3.4363348,6.8301377,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,4,2,1,585,386349.44,220521.58,194417.47,0,6375.7642,0,1417.9701 +14646,17897,31898,-9,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.715704,8.3516531,0,0,0,-953.38342,0,1,1,2021,8,0,35,39,1,0,0,19.859804,19.859804,.05,.05,0,0,0,0,0,0,1,1,0,1.9022732,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,8,12,5,1,247,-33797.777,-101957.14,0,0,0,0,1646.1539 +14647,17898,31899,31900,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.3419981,8.100316,0,31,4,-55.543556,0,2,2,2021,6,0,38,38,1,0,0,11.517572,11.517572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,62.39,56.71,8.333333333333334,1,1,0,0,9,4,4,1,4583,331907.06,147749.88,157296.02,61498.039,10101.256,0,2758.894 +14647,17898,31900,31899,-9,-9,1,0,54,0,0,0,2,2,-9,0,5,7.4996161,7.4598165,0,31,-4,17.531315,0,2,2,2021,6,0,30,30,1,0,0,7.2305613,7.2305613,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,54.96,53.17,8.333333333333334,1,1,0,0,10,4,4,1,4583,331907.06,147749.88,157296.02,61498.039,10101.256,0,2758.894 +14648,17899,31901,31902,-9,-9,1,1,64,0,0,0,1,1,-9,0,2,0,9.3589249,9.3858185,10,2,99.118866,0,-9,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.6792254,9.2230778,60.93,36.01,60.12,54.8,8.333333333333334,1,1,0,0,13,2,5,1,1274,1728119.5,1395932.5,207549.06,0,0,0,6406.5854 +14648,17899,31902,31901,-9,-9,1,0,62,0,0,0,1,1,-9,0,4,0,7.8130064,7.7394896,10,-2,-4.6857414,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.4996257,7.7410936,60.12,54.8,60.93,36.01,10,1,1,0,0,7,2,5,1,1274,1728119.5,1395932.5,207549.06,0,0,0,6406.5854 +14649,17900,31903,31904,-9,-9,1,1,72,0,0,0,3,3,-9,0,1,0,7.0040464,7.3386598,7,-3,34.695839,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,25.43795,0,0,1,1,0,5.7427325,7.0916653,38.75,19.09,58.77,35.36,8.333333333333334,1,1,0,0,0,4,3,1,336,721476.63,337518.94,156772.69,0,0,0,3810.2397 +14649,17900,31904,31903,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,6.5607224,6.2355828,7,3,15.960437,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.5329838,6.3053303,58.77,35.36,38.75,19.09,8.333333333333334,1,1,0,0,0,4,3,1,336,721476.63,337518.94,156772.69,0,0,0,3810.2397 +14650,17901,31905,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6741724,8.6551237,0,0,0,-943.12738,0,2,2,2021,10,1,37,0,1,1,0,21.908751,21.908751,.05,.05,0,0,0,0,0,0,0,0,0,3.7193437,0,49.04,55.86,-9,-9,3.333333333333333,1,1,0,0,11,9,5,1,2265,480973.34,297275.63,235346.08,0,47791.441,0,1723.5319 +14651,17902,31906,-9,31909,-9,1,0,14,0,3,1,3,0,-9,0,4,0,0,0,0,0,-947.28479,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14651,17902,31907,-9,31909,-9,1,1,13,0,3,1,3,0,-9,0,5,0,0,0,0,0,-953.58063,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14651,17902,31908,-9,31909,-9,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1091.9313,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14651,17902,31909,-9,-9,-9,1,0,47,0,3,0,2,2,-9,1,2,0,7.8126292,7.6437397,0,0,-972.29303,0,2,3,2021,13,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.8105659,43.05,32.08,-9,-9,3.333333333333333,1,1,0,0,12,11,2,1,325.5,150297.5,-2199.0269,129066.34,0,0,2102.7412,2614.3706 +14652,17903,31910,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.3057594,8.3544283,0,0,0,-1027.9816,-9,2,2,2021,12,0,45,0,1,0,0,9.6730843,9.6730843,.05,.05,0,0,0,0,0,0,0,0,0,0,0,40.65,57.36,-9,-9,3.333333333333333,1,1,0,0,7,10,4,1,1113,-18105.816,81931.75,0,0,0,0,1967.4823 +14652,17904,31911,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,8.6236124,8.7114744,0,0,0,-1054.1685,-9,-9,-9,2021,22,8,45,0,1,8,0,15.78299,15.78299,.05,.05,0,0,0,0,0,0,0,0,0,4.1087036,0,23.89,59.55,-9,-9,1.666666666666667,1,1,0,0,9,10,5,1,249,271959.59,14740.681,0,0,2589.4727,0,2270.2163 +14653,17905,31912,31913,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,8.0871067,8.1011782,5.0795088,28,-3,-57.863594,0,3,3,2021,9,0,42,48,1,0,0,9.255558,9.255558,.05,.05,0,0,0,0,0,14.5,1,1,0,5.1820879,5.1729283,58.16,55.87,23.86,20.5,8.333333333333334,1,1,0,0,8,5,3,1,985.5,288314.91,217672.09,0,0,0,0,1823.6296 +14653,17905,31913,31912,-9,-9,1,0,61,0,0,0,3,3,-9,1,1,0,0,0,28,3,-93.442734,0,3,3,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.86,20.5,58.16,55.87,6.666666666666667,1,1,0,0,0,5,3,1,985.5,288314.91,217672.09,0,0,0,0,1823.6296 +14654,17906,31914,31915,-9,-9,1,0,27,0,0,0,1,1,-9,0,4,8.4136801,8.3899584,0,6,1,-7.8008294,0,2,2,2021,6,0,45,38,1,0,0,15.404573,15.404573,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,49.8,56.68,8.333333333333334,1,1,0,0,5,7,5,1,1175.5,-59964.922,-20540.621,156420.59,177323.63,0,0,3885.7473 +14654,17906,31915,31914,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.5390148,8.2595758,0,6,-1,-143.48047,0,-9,-9,2021,6,0,38,51,1,0,0,13.465971,13.465971,.05,.05,0,0,0,0,0,0,0,0,0,2.8388224,0,49.8,56.68,48.28,60.18,8.333333333333334,1,1,0,0,6,7,5,1,1175.5,-59964.922,-20540.621,156420.59,177323.63,0,0,3885.7473 +14655,17907,31916,31917,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,8.4787607,8.4106731,0,1,5,5.305737,-9,-9,-9,2021,7,0,54,0,1,0,0,9.8434982,9.8434982,.05,.05,0,0,0,0,0,0,0,0,0,0,0,63.1,45.09,49.27,56.95,8.333333333333334,1,1,0,0,1,12,5,1,175,55573.086,119124.03,113314.66,74161.375,5678.1455,0,2967.8853 +14655,17907,31917,31916,-9,-9,1,0,40,0,0,0,2,2,-9,0,4,8.3390169,8.2632246,0,1,-5,-80.428604,-9,2,2,2021,7,0,40,0,1,0,0,9.1167669,9.1167669,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.27,56.95,63.1,45.09,8.333333333333334,1,1,0,0,8,12,5,1,175,55573.086,119124.03,113314.66,74161.375,5678.1455,0,2967.8853 +14655,17908,31918,-9,31917,-9,1,0,21,0,0,0,2,2,-9,0,4,7.7247005,7.678483,0,0,0,-1166.853,-9,2,-9,2021,8,0,40,0,1,0,1,7.0970764,7.0970764,0,0,0,0,0,0,0,0,0,0,0,0,0,66.06,38.34,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,844,33376.133,0,0,0,0,0,989.61743 +14655,17909,31919,-9,31917,-9,1,1,19,0,0,0,2,2,-9,0,4,7.8279991,7.8005037,0,0,0,-1011.1581,-9,2,-9,2021,7,0,35,0,1,0,1,8.84307,8.84307,0,0,0,0,0,0,0,0,0,0,0,2.134542,0,58.55,46.11,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,373,85088.586,0,0,0,0,0,2161.5938 +14656,17910,31920,31921,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,7.6309543,7.4877501,6.0637121,54,-7,-183.32053,0,3,3,2021,7,0,48,15,1,0,0,5.6800108,5.6800108,0,0,0,1,3.3418996,0,16.556644,0,1,1,0,8.2609615,6.178154,53.38,52.51,50.65,53.71,8.333333333333334,1,1,0,0,9,4,3,1,5615.5,772074.69,271552.59,285933.69,0,0,0,3489.3899 +14656,17910,31921,31920,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,7.033741,7.1390634,54,7,4.3962402,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2232513,7.2631316,50.65,53.71,53.38,52.51,8.333333333333334,1,1,0,0,9,4,3,1,5615.5,772074.69,271552.59,285933.69,0,0,0,3489.3899 +14657,17911,31922,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.44593,7.7357664,0,0,-1054.2302,0,3,3,2021,20,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.0761819,7.5221815,41.3,45.64,-9,-9,3.333333333333333,1,1,0,0,0,5,3,1,401,577373.63,212389,255940.23,0,0,0,2210.8286 +14658,17912,31923,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,4.2923355,4.205863,0,0,-1102.3165,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5439506,4.0578074,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,5,2,1,1784,32374.518,0,178200.45,0,0,0,1903.196 +14659,17913,31924,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,7.6363621,7.5288372,0,0,0,-984.34625,0,2,2,2021,9,0,45,45,1,0,0,5.5983911,5.5983911,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,8.333333333333334,3,4,0,0,6,8,3,0,1006,-20067.869,0,0,0,0,0,476.05255 +14660,17914,31925,-9,31927,31928,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-998.95776,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14660,17914,31926,-9,31927,31928,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1124.9471,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14660,17914,31927,31928,-9,-9,1,0,42,0,2,0,2,2,-9,0,4,7.8247614,7.8220854,0,11,-3,-25.686159,0,-9,2,2021,11,0,25,26,1,0,0,9.4908037,9.4908037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,60.99,46.63,59.72,8.333333333333334,1,1,0,0,13,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14660,17914,31928,31927,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,8.8027945,8.8956423,0,11,3,-17.254749,0,2,2,2021,11,0,38,40,1,0,0,15.862154,15.862154,.05,.05,.05,0,0,0,0,0,1,1,0,1.6829008,0,46.63,59.72,46.39,60.99,8.333333333333334,1,1,0,0,13,4,4,1,642.5,1068957,842401.56,425869.34,290276.72,10497.25,0,4067.7786 +14661,17915,31929,-9,31931,31933,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1048.2432,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31930,-9,31931,31933,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1063.1926,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31931,31933,-9,-9,1,0,32,1,4,0,2,2,-9,1,4,6.8339987,6.9037895,0,7,-13,-42.01656,0,2,2,2021,7,0,16,16,1,0,0,6.7648916,6.7648916,0,0,0,0,0,0,0,0,1,1,0,0,0,57.73,54.53,52.23,55.6,8.333333333333334,1,1,0,0,9,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31932,-9,31931,31933,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-925.8877,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14661,17915,31933,31931,-9,-9,1,1,45,1,4,0,2,2,-9,0,4,7.7767129,7.946485,0,7,13,19.575603,0,2,-9,2021,11,0,38,38,1,0,0,8.9287167,8.9287167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.23,55.6,57.73,54.53,8.333333333333334,1,1,0,0,8,6,2,1,985.20001,252217.64,102890.55,140788.5,0,2267.647,0,3007.8367 +14662,17916,31934,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.4613543,8.4580784,0,0,0,-878.66724,-9,2,2,2021,13,2,37,0,1,2,0,15.911785,15.911785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,1.666666666666667,1,1,0,0,8,8,4,0,683,570147.63,170587.47,233818.17,0,3434.99,0,1331.6167 +14663,17917,31935,31936,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,5.6843729,5.4337749,11,-3,103.09428,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7893867,46.45,50.13,42.71,32.91,6.666666666666667,1,1,0,0,0,12,2,1,166.5,-27347.594,0,0,0,0,0,1500.6044 +14663,17917,31936,31935,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,0,0,11,3,24.299427,0,3,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,42.71,32.91,46.45,50.13,5,1,1,0,0,7,12,2,1,166.5,-27347.594,0,0,0,0,0,1500.6044 +14664,17918,31937,31939,-9,-9,1,1,59,0,1,0,2,2,-9,1,3,0,2.7154438,2.4156551,13,14,66.587021,0,-9,-9,2021,30,11,0,0,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,2.4309187,29.13,25.53,48.35,46.53,5,1,1,0,0,0,2,3,1,940.66669,485645.72,348298.25,121252.08,47062.438,0,5017.7065,3023.0569 +14664,17918,31938,-9,31939,31937,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.05267,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,2,3,1,940.66669,485645.72,348298.25,121252.08,47062.438,0,5017.7065,3023.0569 +14664,17918,31939,31937,-9,-9,1,0,45,0,1,0,1,1,-9,0,3,8.4249535,8.3717594,0,14,-14,29.86595,0,2,2,2021,15,4,37,41,1,4,0,12.762673,12.762673,0,0,0,0,0,0,0,14.5,1,1,0,0,0,48.35,46.53,29.13,25.53,6.666666666666667,1,1,0,0,8,2,3,1,940.66669,485645.72,348298.25,121252.08,47062.438,0,5017.7065,3023.0569 +14665,17919,31940,-9,31942,31941,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1034.0995,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14665,17919,31941,31942,-9,-9,1,1,41,0,2,0,2,2,-9,0,4,8.4127893,8.4749765,0,16,0,7.7954116,0,2,3,2021,11,0,35,37,1,0,0,17.197668,17.197668,.05,.05,0,0,0,0,0,27,1,1,0,0,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,8,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14665,17919,31942,31941,-9,-9,1,0,41,0,2,0,1,1,-9,1,5,7.7252278,7.4104385,0,20,0,-22.130657,0,1,3,2021,6,0,15,14,1,0,0,16.719824,16.719824,.05,.05,0,0,0,0,0,2,1,1,0,5.8441653,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,8,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14665,17919,31943,-9,31942,31941,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-914.66986,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,4,1,522.5,241963.44,59856.332,142878.34,64535.145,0,0,2843.1787 +14666,17920,31944,31945,-9,-9,1,0,70,0,0,0,2,2,-9,0,3,0,0,0,8,1,42.501709,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.54852629,0,52.41,42.18,35.39,35.11,10,1,1,0,0,0,1,2,1,1298.5,550901.38,274620.5,129885.19,0,0,0,1692.2877 +14666,17920,31945,31944,-9,-9,1,1,69,0,0,0,3,3,-9,0,2,0,6.9772024,7.081275,8,-1,43.02293,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3460788,6.9308701,35.39,35.11,52.41,42.18,3.333333333333333,1,1,0,0,0,1,2,1,1298.5,550901.38,274620.5,129885.19,0,0,0,1692.2877 +14667,17921,31946,-9,-9,-9,1,0,58,0,0,0,2,2,-9,1,1,0,0,0,0,0,-958.86823,0,2,2,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,8.130000000000001,41.39,-9,-9,0,1,1,0,0,8,12,1,0,761,7739.7139,0,0,0,2383.3054,0,1344.2026 +14668,17922,31947,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.6482472,7.7770395,0,0,0,-933.18231,0,3,3,2021,9,1,10,40,1,1,0,28.859842,28.859842,0,0,0,0,0,0,0,0,1,1,0,6.0861659,0,49.66,55.68,-9,-9,6.666666666666667,1,1,0,0,9,5,3,1,1334,-11862.649,0,40232.996,0,0,160.18065,1120.3253 +14669,17923,31948,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1066.2517,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.3883543,0,53.23,42.9,-9,-9,5,1,1,0,0,12,7,1,1,1087,-44190.23,0,0,0,0,0,-387.27335 +14670,17924,31949,31950,-9,-9,1,0,51,0,0,0,2,2,-9,0,2,7.6172862,8.0234528,0,9,0,-27.223845,0,2,2,2021,11,0,25,35,1,0,0,11.281351,11.281351,0,0,0,0,0,0,0,0,1,1,0,0,0,52.09,39.82,50,49,1.666666666666667,1,1,0,0,9,7,3,0,544,678753.31,0,606836.25,0,0,0,2452.8564 +14670,17924,31950,31949,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,6.4503884,6.5980344,0,9,9,-130.57764,-9,-9,-9,2021,10,0,40,0,1,1,0,2.1161585,2.1161585,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,52.09,39.82,7,4,1,0,0,1,7,3,0,544,678753.31,0,606836.25,0,0,0,2452.8564 +14671,17925,31951,31952,-9,-9,1,0,52,0,0,0,3,3,-9,0,3,8.5506392,8.5046511,0,10,-3,-14.872809,0,-9,2,2021,15,3,45,45,1,3,0,16.760941,16.760941,.05,.05,0,0,0,0,0,0,0,0,0,1.9109266,0,39.37,50.78,52.23,30.07,6.666666666666667,1,1,0,0,13,10,5,1,655,1729609.8,1306890,223582.95,0,39722.578,130.5433,4384.1401 +14671,17925,31952,31951,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,8.7628422,8.9387035,0,10,3,95.09845,0,3,2,2021,15,3,35,35,1,3,0,21.888348,21.888348,.05,.05,0,0,0,0,0,0,0,0,0,.61284608,0,52.23,30.07,39.37,50.78,8.333333333333334,1,1,0,0,13,10,5,1,655,1729609.8,1306890,223582.95,0,39722.578,130.5433,4384.1401 +14672,17926,31953,-9,-9,-9,1,0,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1094.4327,0,3,3,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.98,27.16,-9,-9,5,1,1,0,1,0,13,1,0,820,106281.75,0,0,0,0,0,1343.7015 +14672,17927,31954,-9,31953,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-890.86493,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,-9,-9,3.333333333333333,1,1,1,1,1,13,1,0,2319,201700.7,0,0,0,0,0,0 +14673,17928,31955,-9,-9,-9,1,0,63,0,0,0,1,1,-9,0,3,6.9210639,7.2765708,5.2301321,0,0,-1017.4708,-9,3,3,2021,11,0,16,0,1,2,0,8.9976492,8.9976492,0,0,.05,0,0,0,0,0,1,1,0,0,5.2689462,50,47,-9,-9,6.666666666666667,2,3,0,0,8,5,2,1,965,585491.19,129672.95,171911.56,0,0,0,-108.97444 +14674,17929,31956,-9,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,7.6034822,7.5244794,0,0,-948.18896,0,-9,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2049332,7.9001975,58.47,50.22,-9,-9,8.333333333333334,1,1,0,0,7,4,3,1,902,345156.59,244553.73,-19474.115,0,0,0,2154.2698 +14675,17930,31957,31958,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.4989238,7.2736025,59,1,70.88797,0,-9,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2320385,7.3029075,58.29,37.01,53,45,8.333333333333334,1,1,0,0,0,2,2,1,2717,1030960,331979,337136.72,0,0,0,1572.7295 +14675,17930,31958,31957,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,4,-1,-30.292171,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4896464,0,53,45,58.29,37.01,8,1,1,0,0,0,2,2,1,2717,1030960,331979,337136.72,0,0,0,1572.7295 +14676,17931,31959,31960,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,47,-2,0,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,39.74,41.69,7,2,3,0,1,0,6,1,1,1865.5,163303.47,0,49748.789,0,0,0,1255.9744 +14676,17931,31960,31959,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,0,0,47,2,0,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,41.69,50,47,6.666666666666667,2,3,0,1,0,6,1,1,1865.5,163303.47,0,49748.789,0,0,0,1255.9744 +14677,17932,31961,-9,31962,31963,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-916.65686,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,8,4,0,1197.3334,104749.69,69128.914,263064.88,150356.03,4262.4014,0,1867.1654 +14677,17932,31962,31963,-9,-9,1,0,35,0,1,0,2,2,-9,0,5,8.1820145,8.3638535,0,6,5,54.69352,0,-9,-9,2021,11,0,51,39,1,0,0,11.918857,11.918857,0,0,0,0,0,0,0,0,1,1,0,2.8079779,0,50.01,55.66,31.16,51.92,8.333333333333334,1,1,0,0,8,8,4,0,1197.3334,104749.69,69128.914,263064.88,150356.03,4262.4014,0,1867.1654 +14677,17932,31963,31962,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,0,0,0,6,-5,36.116798,0,3,3,2021,18,6,0,43,3,6,0,0,0,.05,.05,.05,0,0,0,0,2,1,1,0,9.7688522,0,31.16,51.92,50.01,55.66,6.666666666666667,3,4,1,0,5,8,4,0,1197.3334,104749.69,69128.914,263064.88,150356.03,4262.4014,0,1867.1654 +14678,17933,31964,-9,-9,-9,1,0,35,0,1,0,3,3,-9,0,5,0,0,0,0,0,-1158.2037,0,2,-9,2021,2,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.37,46.82,-9,-9,3.333333333333333,1,1,0,0,0,12,2,0,2598.5,52177.926,0,0,0,0,0,1162.9495 +14678,17933,31965,-9,31964,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.6313,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,2598.5,52177.926,0,0,0,0,0,1162.9495 +14679,17934,31966,-9,31970,31969,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1166.8754,1,2,2,2021,19,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.04,67.13,-9,-9,3.333333333333333,4,2,0,1,0,8,1,0,609,0,0,0,0,0,0,-392.69113 +14679,17935,31967,-9,31970,31969,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-961.60266,-9,2,2,2021,11,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42.25,64.48999999999999,-9,-9,8.333333333333334,4,2,0,1,0,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14679,17935,31968,-9,31970,31969,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1123.6272,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14679,17935,31969,31970,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.023098,8.1702747,0,7,1,-103.41433,0,-9,-9,2021,17,5,24,40,1,5,0,12.725295,12.725295,.05,.05,0,0,0,0,0,2,1,0,1,0,0,26.98,52.69,44.42,59.09,3.333333333333333,1,1,0,1,12,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14679,17935,31970,31969,-9,-9,1,0,50,0,1,0,2,2,-9,0,4,0,0,0,7,-1,-45.658463,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,0,1,0,0,44.42,59.09,26.98,52.69,6.666666666666667,3,4,1,0,0,8,3,0,483.75,353668.13,101819.34,170613.8,0,0,0,3242.666 +14680,17936,31971,-9,31974,31975,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1064.6663,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31972,-9,31974,31975,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-891.00812,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31973,-9,31974,31975,1,1,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1023.8797,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31974,31975,-9,-9,1,0,36,0,3,0,2,2,-9,0,4,7.8580427,7.8163581,0,10,-3,.67227107,0,-9,-9,2021,13,3,21,21,1,3,0,16.864073,16.864073,0,0,0,0,0,0,0,0,1,1,0,0,0,42.95,61.24,54.2,57.49,8.333333333333334,1,1,0,1,11,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14680,17936,31975,31974,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.9175482,8.5265169,0,10,3,-28.799435,0,2,2,2021,12,2,35,55,1,2,0,28.531498,28.531498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,42.95,61.24,6.666666666666667,1,1,0,1,11,2,4,0,841.59998,-34013.328,15877.864,220416.77,157161,27018.074,13902.058,4338.6631 +14681,17937,31976,31977,-9,-9,1,0,46,0,0,0,2,2,-9,0,3,8.2771397,8.2094517,0,5,-5,-55.350422,0,-9,-9,2021,11,0,35,37,1,0,0,15.366055,15.366055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,23.51,55.4,8.333333333333334,1,1,0,0,7,9,5,1,481.5,2606266,1485768.3,618337.75,0,0,0,4988.9502 +14681,17937,31977,31976,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.494153,8.6716251,0,5,5,-29.066595,0,3,3,2021,19,7,59,48,1,7,0,8.5966625,8.5966625,.05,.05,0,0,0,0,0,0,0,0,0,8.5627632,0,23.51,55.4,54.96,53.17,3.333333333333333,1,1,0,0,11,9,5,1,481.5,2606266,1485768.3,618337.75,0,0,0,4988.9502 +14681,17938,31978,-9,31976,31977,1,0,22,0,0,1,2,0,0,0,4,0,6.1710229,6.4075837,0,0,-1084.6693,-9,2,2,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.4303164,0,50.11,54.04,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,998,279801.28,56825.688,0,0,0,0,1426.5439 +14682,17939,31979,-9,31982,31980,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.30365,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14682,17939,31980,31982,-9,-9,1,1,48,0,2,0,1,1,-9,0,2,8.697154,8.7973146,5.7509546,25,0,-36.68055,0,1,3,2021,7,0,40,40,1,0,0,19.761147,19.761147,0,0,0,0,0,0,0,0,1,1,0,6.1219463,0,42.46,41.62,51.56,50.61,6.666666666666667,1,1,0,0,13,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14682,17939,31981,-9,31982,31980,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-817.7049,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14682,17939,31982,31980,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.9328642,7.4751453,0,25,0,1.9405029,0,2,1,2021,12,0,28,28,1,0,0,11.411725,11.411725,0,0,0,0,0,0,0,0,1,1,0,0,0,51.56,50.61,42.46,41.62,6.666666666666667,1,1,0,0,13,12,4,1,819.5,63902.957,5283.3057,287167,175970.66,0,0,3222.4668 +14683,17940,31983,-9,31984,-9,1,0,17,0,1,1,2,0,0,0,2,0,5.368546,5.5758982,0,0,-934.74396,-9,3,-9,2021,31,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7200036,0,7.76,59.2,-9,-9,0,1,1,0,1,0,12,2,1,3167.6667,49797.207,24274.162,113979.66,38665.203,0,0,1704.3265 +14683,17940,31984,-9,-9,-9,1,0,46,0,1,0,3,3,-9,0,4,7.2766423,7.5386019,6.0778561,0,0,-1039.4398,0,3,3,2021,10,1,23,23,1,1,0,7.1878891,7.1878891,.05,.05,0,0,0,0,0,0,1,1,0,6.2227216,0,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,10,12,2,1,3167.6667,49797.207,24274.162,113979.66,38665.203,0,0,1704.3265 +14683,17940,31985,-9,31984,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1006.9985,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,3167.6667,49797.207,24274.162,113979.66,38665.203,0,0,1704.3265 +14684,17941,31986,31987,-9,-9,1,1,54,0,1,0,2,2,-9,0,3,8.9517803,9.1151886,0,19,4,39.94276,0,2,2,2021,19,6,42,37,1,6,0,15.063988,15.063988,.05,.05,.05,0,0,0,0,0,1,1,0,6.5990663,0,40.32,53.3,49.31,48.84,3.333333333333333,1,1,0,0,14,4,4,1,800.33331,768544,557709.75,224509.92,84784.945,3596.6736,0,3041.093 +14684,17941,31987,31986,-9,-9,1,0,50,0,1,0,2,2,-9,0,3,7.2294941,7.2823839,0,19,-4,144.48575,0,3,2,2021,18,6,23,23,1,6,0,9.3419361,9.3419361,.05,.05,0,0,0,0,0,0,1,1,0,5.0492916,0,49.31,48.84,40.32,53.3,6.666666666666667,1,1,0,0,7,4,4,1,800.33331,768544,557709.75,224509.92,84784.945,3596.6736,0,3041.093 +14684,17941,31988,-9,31987,31986,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-977.34326,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,4,1,800.33331,768544,557709.75,224509.92,84784.945,3596.6736,0,3041.093 +14685,17942,31989,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,5,7.6442413,7.7227087,6.9941335,0,0,-1037.9744,0,3,3,2021,5,0,20,38,1,0,0,10.285628,10.285628,.05,.05,0,0,0,0,0,14.5,1,1,0,4.7446747,6.5866585,59.04,54.12,-9,-9,10,1,1,0,0,9,1,4,1,649,137665,27574.07,109736.18,54180.227,0,0,1407.3181 +14686,17943,31990,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,5,7.9995909,7.9029016,0,0,0,-882.39771,-9,2,2,2021,11,0,38,0,1,0,0,9.6033859,9.6033859,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.89,55.56,-9,-9,0,2,3,0,0,1,7,4,0,836,31842.811,-119070.96,0,0,0,0,2214.2146 +14687,17944,31991,31992,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,46,-1,-94.898659,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.2042677,0,56.94,49.53,57.16,56.15,8.333333333333334,1,1,0,0,0,5,4,1,908,1013325.7,938398.25,174172.78,0,10899.399,0,3039.7495 +14687,17944,31992,31991,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.2113829,8.601429,45,1,189.51099,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.1881461,8.5269127,57.16,56.15,56.94,49.53,10,1,1,0,0,0,5,4,1,908,1013325.7,938398.25,174172.78,0,10899.399,0,3039.7495 +14687,17945,31993,-9,31991,31992,1,1,40,0,0,0,2,2,-9,0,4,6.8927312,7.2263265,0,0,0,-951.00592,0,2,2,2021,6,0,5,5,1,0,0,22.665812,22.665812,0,0,0,0,0,0,0,0,1,1,0,.48773086,0,51.83,57.2,-9,-9,6.666666666666667,1,1,0,0,5,5,2,1,673,-26017.348,-6600.5166,0,0,0,0,-187.45142 +14688,17946,31994,31995,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,28,-1,26.936842,0,2,3,2021,27,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,27.36,18.88,59.49,23.03,0,1,1,0,0,3,10,3,0,642.5,339052.16,0,223587.38,0,0,0,2432.0923 +14688,17946,31995,31994,-9,-9,1,1,58,0,0,0,2,2,-9,1,1,7.8140516,7.8741884,0,28,1,101.53201,0,-9,-9,2021,12,0,40,40,1,0,0,7.8081431,7.8081431,0,0,0,0,0,0,0,27,1,0,1,0,0,59.49,23.03,27.36,18.88,6.666666666666667,1,1,0,0,11,10,3,0,642.5,339052.16,0,223587.38,0,0,0,2432.0923 +14688,17947,31996,-9,31994,31995,1,1,33,0,0,0,2,2,-9,0,2,7.899878,7.9560513,0,0,0,-1064.6741,0,3,2,2021,11,3,38,38,1,3,1,7.9990387,7.9990387,.05,.05,0,0,0,0,0,0,1,0,1,0,0,38.09,51.96,-9,-9,1.666666666666667,1,1,0,1,14,10,4,0,341,224774.17,-117555.63,0,0,0,0,1752.9447 +14689,17948,31997,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,5,8.1544991,8.4220896,0,0,0,-927.78278,0,2,2,2021,11,1,46,37,1,1,0,8.6950331,8.6950331,0,0,0,0,0,0,0,0,0,0,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,13,7,4,1,165,11675.513,0,0,0,0,0,1686.7012 +14690,17949,31998,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1168.5433,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47.16,47.3,-9,-9,8.333333333333334,3,4,1,1,4,6,2,0,370,-76195.039,0,0,0,2269.3083,548.15668,75.49855 +14690,17949,31999,-9,31998,-9,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-962.73608,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,6,2,0,370,-76195.039,0,0,0,2269.3083,548.15668,75.49855 +14691,17950,32000,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.152523,7.5510139,0,0,-1136.261,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0193999,7.4290752,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,3,9,3,1,432,501668.47,311546.97,180537.05,0,0,0,1675.7368 +14692,17951,32001,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,8.4231224,8.3000021,0,8,6,-11.449885,0,3,3,2021,9,1,37,37,1,1,0,17.445612,17.445612,.05,.05,.05,0,0,0,0,7,0,0,0,0,0,54.91,49,50.05,55.41,8.333333333333334,1,1,0,0,9,12,5,1,118,775604.56,312784.47,282479.41,0,3107.7175,0,1671.4258 +14692,17952,32002,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,8.7729063,8.4141636,0,8,-6,-39.075584,0,3,3,2021,14,4,48,85,1,4,0,14.539637,14.539637,.05,.05,0,0,0,0,0,2,0,0,0,0,0,50.05,55.41,54.91,49,8.333333333333334,1,1,0,0,9,12,5,1,887,88477.438,65262.512,157978.81,78814.945,0,0,2490.1724 +14693,17953,32003,-9,-9,-9,1,0,30,0,0,0,1,1,-9,0,2,8.258009,8.2270069,0,0,0,-967.42267,0,2,2,2021,17,5,50,40,1,5,0,9.2289286,9.2289286,0,0,0,0,0,0,0,0,0,0,0,2.3312197,0,24.03,57.05,-9,-9,5,1,1,0,0,7,7,4,1,2293,275756.34,32314.105,0,0,0,5118.4507,1340.5551 +14694,17954,32004,32005,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.021493,8.2864122,11,-6,35.769802,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.1763487,54.37,54.8,57.33,53.46,8.333333333333334,1,1,0,0,4,13,4,1,292.5,1855021.1,871818.75,382705.25,0,0,0,4283.0137 +14694,17954,32005,32004,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1990328,7.9232674,11,6,-5.890357,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8635182,57.33,53.46,54.37,54.8,8.333333333333334,1,1,0,0,0,13,4,1,292.5,1855021.1,871818.75,382705.25,0,0,0,4283.0137 +14694,17955,32006,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-999.36328,-9,-9,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2912402,0,57.06,57.76,-9,-9,10,4,2,0,0,1,13,2,1,275,253424.86,0,0,0,0,0,297.60321 +14695,17956,32007,-9,-9,-9,1,1,41,0,0,0,2,2,-9,0,5,8.4180288,8.4266739,0,0,0,-1045.036,0,-9,-9,2021,8,0,55,55,1,0,0,8.5151339,8.5151339,.05,.05,0,0,0,0,0,7,1,1,0,0,0,54.1,59.11,-9,-9,6.666666666666667,1,1,0,0,15,10,4,1,598,-127367.03,-32277.279,0,0,800.96899,546.24792,1778.7026 +14696,17957,32008,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,3,0,0,0,0,0,-991.63031,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,50,-9,-9,7,1,1,0,0,0,13,1,1,883,183326.42,0,0,0,0,93.597725,-91.964066 +14697,17958,32009,32010,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,4.4743137,4.60958,48,-2,6.7929945,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5070834,4.137814,48.28,60.18,61.12,51.57,10,1,1,0,0,0,1,2,1,1016.5,563876.13,488576.63,277702.88,0,3492.23,0,2018.4905 +14697,17958,32010,32009,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,7.0135193,7.3156266,48,2,-4.6306834,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1878963,7.2936082,61.12,51.57,48.28,60.18,8.333333333333334,1,1,0,0,5,1,2,1,1016.5,563876.13,488576.63,277702.88,0,3492.23,0,2018.4905 +14698,17959,32011,-9,32012,32013,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-988.38739,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,290.33334,78088.969,0,0,0,0,0,202.01779 +14698,17959,32012,32013,-9,-9,1,0,32,0,3,0,3,3,-9,0,3,0,0,0,16,-12,-8.2169561,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.34,56.62,52,55,5,2,3,0,0,0,4,2,1,290.33334,78088.969,0,0,0,0,0,202.01779 +14698,17959,32013,32012,-9,-9,1,1,44,0,3,0,3,3,-9,0,4,6.4029055,6.6906724,0,7,12,-44.519989,-9,-9,-9,2021,9,0,40,0,1,1,0,2.1241672,2.1241672,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,41.34,56.62,8,2,3,0,0,1,4,2,1,290.33334,78088.969,0,0,0,0,0,202.01779 +14699,17960,32014,-9,-9,-9,1,1,20,0,0,1,2,0,0,0,3,0,0,0,0,0,-997.49365,-9,-9,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,8.333333333333334,1,1,0,0,3,2,1,1,282,0,0,0,0,0,0,-217.26421 +14700,17961,32015,-9,32017,32016,1,1,12,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1043.6924,-9,1,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,1,1,-9,0,0,12,5,1,1823.3334,630321.63,240610.22,212712.91,40689.063,0,0,3622.4585 +14700,17961,32016,32017,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3049145,8.5092449,0,17,0,-110.85129,0,3,-9,2021,12,0,40,45,1,0,0,8.8577375,8.8577375,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,52.48,54.33,6.666666666666667,1,1,0,0,13,12,5,1,1823.3334,630321.63,240610.22,212712.91,40689.063,0,0,3622.4585 +14700,17961,32017,32016,-9,-9,1,0,46,0,1,0,1,1,-9,0,4,8.5258827,8.5313139,0,17,0,117.51598,0,2,2,2021,11,0,34,34,1,0,0,21.896845,21.896845,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.48,54.33,49.04,55.86,8.333333333333334,1,1,0,0,15,12,5,1,1823.3334,630321.63,240610.22,212712.91,40689.063,0,0,3622.4585 +14701,17962,32018,-9,32021,32020,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1119.3225,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14701,17962,32019,-9,32021,32020,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1126.097,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14701,17962,32020,32021,-9,-9,1,1,49,0,2,0,1,1,-9,0,5,0,7.4228721,7.577878,14,4,19.685146,0,2,2,2021,9,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.1611719,7.4802499,57.46,56.16,51.67,60.18,8.333333333333334,1,1,0,0,6,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14701,17962,32021,32020,-9,-9,1,0,45,0,2,0,1,1,-9,0,5,8.6459627,8.7353125,0,15,-4,-31.888103,0,2,2,2021,9,2,34,23,1,2,0,22.631603,22.631603,0,0,0,0,0,0,0,0,0,0,0,4.7777138,0,51.67,60.18,57.46,56.16,8.333333333333334,1,1,0,0,9,10,4,1,545.75,1558661.6,180212.66,415257.63,0,0,0,3181.6765 +14702,17963,32022,32023,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.0438271,7.9899001,0,8,4,-19.699217,0,2,2,2021,10,1,40,80,1,1,0,10.826903,10.826903,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,30.22,61.23,26.91,54.17,5,1,1,0,0,7,4,4,0,788.5,537812.56,439690.22,164923.06,38472.328,0,0,2062.022 +14702,17963,32023,32022,-9,-9,1,0,45,0,0,0,2,2,-9,0,5,7.4133286,7.611052,0,8,-4,-.67364901,0,-9,-9,2021,14,3,21,35,1,3,0,8.6565514,8.6565514,0,0,0,0,0,0,0,0,1,1,0,0,0,26.91,54.17,30.22,61.23,6.666666666666667,1,1,0,0,5,4,4,0,788.5,537812.56,439690.22,164923.06,38472.328,0,0,2062.022 +14702,17964,32024,-9,32023,32022,1,0,23,0,0,0,2,2,-9,0,4,7.2730503,7.4079099,0,0,0,-1014.1642,0,2,2,2021,12,0,20,31,1,2,1,8.4185801,8.4185801,.05,.05,0,0,0,0,0,0,1,1,0,2.4331417,0,46,58,-9,-9,7,1,1,0,0,6,4,3,0,183,17025.199,-4694.8838,0,0,0,0,304.14111 +14702,17965,32025,-9,32023,32022,1,0,25,0,0,0,2,2,-9,0,5,7.3825588,7.4073443,0,0,0,-955.38916,0,2,2,2021,12,0,25,37,1,0,1,6.8462052,6.8462052,0,0,0,0,0,0,0,0,1,1,0,0,0,50.54,62.09,-9,-9,5,1,1,0,0,8,4,3,0,1075,29891.783,0,0,0,0,0,1239.7992 +14702,17966,32026,-9,32023,32022,1,1,21,0,0,0,2,2,1,0,4,7.9464159,7.8852172,0,0,0,-1102.9844,-9,2,2,2021,6,0,20,0,1,0,1,12.036342,12.036342,.05,.05,0,0,0,0,0,0,1,1,0,1.3654733,0,52.48,54.33,-9,-9,6.666666666666667,1,1,0,0,1,4,4,0,241,73593.883,46001.816,0,0,0,0,1593.3584 +14702,17967,32027,-9,32023,32022,1,1,18,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1134.4104,0,2,2,2021,17,5,0,0,3,5,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8852683,0,29.38,48.1,-9,-9,3.333333333333333,1,1,0,0,0,4,1,0,543,-94721.594,0,0,0,0,0,294.08453 +14703,17968,32028,32029,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6118984,7.2067971,0,29,-6,-85.341293,0,-9,-9,2021,12,0,30,30,1,0,0,6.0076518,6.0076518,0,0,0,0,0,0,0,0,1,1,0,4.4592967,0,42.8,39.35,33.94,56.25,5,1,1,0,0,15,11,3,1,848.5,189107.47,43295.281,182296.41,0,0,0,1787.6406 +14703,17968,32029,32028,-9,-9,1,1,66,0,0,0,2,2,-9,0,5,0,5.7651682,6.0675898,1,6,-189.79007,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,.68331128,5.8704123,33.94,56.25,42.8,39.35,5,1,1,0,0,5,11,3,1,848.5,189107.47,43295.281,182296.41,0,0,0,1787.6406 +14704,17969,32030,-9,32031,-9,1,0,14,1,3,1,3,0,-9,0,3,0,0,0,0,0,-847.75031,-9,3,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,3,4,-9,0,0,8,2,0,611.5,-30698.234,-1387.2852,0,0,0,0,2066.8523 +14704,17969,32031,-9,-9,-9,1,0,42,1,3,0,3,3,-9,0,3,7.2714825,7.5075388,0,0,0,-1088.2394,-9,-9,-9,2021,10,0,20,0,1,0,0,9.8422489,9.8422489,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.22,56.12,-9,-9,5,3,4,0,0,7,8,2,0,611.5,-30698.234,-1387.2852,0,0,0,0,2066.8523 +14704,17970,32032,-9,32033,-9,1,1,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-993.65131,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,5,0,2861,58461.938,-15318.152,0,0,0,0,1759.8125 +14704,17970,32033,-9,32031,-9,1,0,23,1,3,0,1,1,1,0,5,8.4176979,8.5760908,0,0,0,-851.32159,-9,3,-9,2021,13,4,42,0,1,4,1,11.612398,11.612398,.05,.05,0,0,0,0,0,0,1,1,0,.569121,0,46,61.6,-9,-9,5,3,4,0,0,7,8,5,0,2861,58461.938,-15318.152,0,0,0,0,1759.8125 +14704,17971,32034,-9,32031,-9,1,0,21,1,3,0,2,2,1,0,3,7.1665215,7.4318538,0,0,0,-1044.3927,-9,3,-9,2021,15,4,31,0,1,4,1,4.377388,4.377388,0,0,0,0,0,0,0,0,1,1,0,0,0,41,37.57,-9,-9,8.333333333333334,3,4,0,1,5,8,2,0,999,0,0,0,0,0,0,825.20129 +14704,17972,32035,-9,32031,-9,1,1,18,1,3,1,2,0,-9,0,5,0,0,0,0,0,-1043.5997,-9,3,-9,2021,3,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.54,59.33,-9,-9,8.333333333333334,3,4,0,0,0,8,1,0,1371,62589.313,0,0,0,0,0,0 +14705,17973,32036,32038,-9,-9,1,1,39,0,2,0,2,2,-9,0,3,7.7699461,7.7925,0,11,2,45.360821,0,2,2,2021,7,0,84,84,1,0,0,3.6140828,3.6140828,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.73,58.82,8.333333333333334,1,1,0,0,11,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14705,17973,32037,-9,32038,32036,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1001.7556,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14705,17973,32038,32036,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.501811,8.0474052,0,11,-2,34.843094,0,2,2,2021,10,0,17,18,1,0,0,12.155718,12.155718,.05,.05,0,0,0,0,0,2,1,1,0,0,0,51.73,58.82,57.33,53.46,6.666666666666667,1,1,0,0,11,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14705,17973,32039,-9,32038,32036,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1071.5493,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,1,3,1,692,68739.781,24239.18,138105.8,123275.23,0,0,2507.0435 +14706,17974,32040,32044,-9,-9,1,0,43,0,3,0,3,3,-9,0,4,0,0,0,27,2,-33.422211,0,3,3,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50,55,46.04,35.51,8,2,3,0,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32041,-9,32040,32044,1,0,15,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1015.299,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,2,3,-9,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32042,-9,32040,32044,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.989,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,2,3,-9,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32043,-9,32040,32044,1,0,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1025.5428,-9,3,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,2,3,-9,0,0,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17974,32044,32040,-9,-9,1,1,41,0,3,0,2,2,-9,0,3,7.802784,7.7488556,0,27,-2,-97.900932,0,3,3,2021,12,0,37,37,1,0,0,8.962203,8.962203,0,0,0,0,0,0,0,0,1,0,1,0,0,46.04,35.51,50,55,5,2,3,0,0,11,4,2,1,1170.2,-14909.124,0,0,0,0,373.75409,2533.3291 +14706,17975,32045,-9,32040,32044,1,0,21,0,3,0,2,2,-9,0,5,8.0467606,7.8548903,0,0,0,-912.82635,0,3,2,2021,2,0,25,25,1,0,1,9.5955153,9.5955153,.05,.05,0,0,0,0,0,0,1,0,1,0,0,67.48,46.19,-9,-9,10,2,3,0,0,2,4,3,1,228,-110322.77,-47229.707,0,0,1893.0228,665.0282,796.84399 +14706,17976,32046,-9,32040,32044,1,0,19,0,3,0,2,2,-9,0,4,0,0,0,0,0,-1099.5961,0,3,2,2021,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,-9,-9,10,2,3,1,1,0,4,2,1,655,17548.488,0,0,0,0,0,-164.9093 +14707,17977,32047,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,8.1049881,8.287035,0,0,0,-915.15576,-9,2,2,2021,13,1,42,0,1,1,0,11.895714,11.895714,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.3,60.77,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,1988,84489.891,149759.77,79476.641,2961.3398,418.53964,0,1571.7203 +14708,17978,32048,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,8.0098066,7.4093561,0,0,-983.08075,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3496981,7.9040465,55.79,52.62,-9,-9,6.666666666666667,1,1,0,0,14,10,3,1,235,390817.44,-5615.7056,334452.06,0,0,0,1144.2246 +14709,17979,32049,-9,-9,-9,1,0,25,0,0,0,2,2,-9,0,3,8.3290358,8.3286295,0,0,0,-1075.8403,-9,-9,-9,2021,7,0,55,0,1,0,0,7.7585149,7.7585149,0,0,0,0,0,0,0,0,0,0,0,0,0,40.69,59.62,-9,-9,8.333333333333334,1,1,0,0,6,9,4,0,2637,-41088,17427.369,0,0,20545.574,-1375.7471,1287.7805 +14710,17980,32050,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1152.5018,0,3,3,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,38.07,15.4,-9,-9,3.333333333333333,1,1,0,0,0,12,1,0,708,-110662.51,0,0,0,0,941.17291,1662.2083 +14710,17981,32051,-9,32050,-9,1,0,26,0,0,0,2,2,-9,0,5,8.1547337,7.8336382,0,0,0,-1051.0764,0,3,3,2021,10,0,48,40,1,0,1,7.1314054,7.1314054,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,6,12,3,0,1705,-170731.63,0,0,0,12391.36,0,1155.6316 +14711,17982,32052,-9,32053,32054,1,0,13,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1046.6223,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32053,32054,-9,-9,1,0,48,0,3,0,1,1,-9,0,4,7.4788756,7.3580804,0,12,1,-60.935509,0,2,2,2021,9,0,29,29,1,0,0,6.7660513,6.7660513,0,0,0,0,0,0,0,0,0,0,0,0,0,45.56,60.26,54.49,50.46,8.333333333333334,1,1,0,0,5,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32054,32053,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.6159554,9.8627071,0,12,-1,56.350594,0,2,-9,2021,7,0,42,42,1,0,0,38.987549,38.987549,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.49,50.46,45.56,60.26,8.333333333333334,1,1,0,0,14,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32055,-9,32053,32054,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1078.9979,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14711,17982,32056,-9,32053,32054,1,1,11,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1054.2487,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,5,1,495.39999,2036326.1,602146.25,1116543.5,0,7881.9805,0,5648.2734 +14712,17983,32057,32058,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,4,-6,122.58244,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.47,47.17,41.57,53.76,8.333333333333334,1,1,0,0,0,13,2,1,502,352156.56,60599.867,209418.53,0,0,0,1193.9011 +14712,17983,32058,32057,-9,-9,1,1,65,0,0,0,3,3,-9,0,4,4.6699195,4.8332725,0,4,6,87.219612,0,3,3,2021,8,0,60,70,1,0,0,.21532537,.21532537,0,0,0,1,0,0,0,0,1,0,1,0,0,41.57,53.76,47.47,47.17,5,1,1,0,1,8,13,2,1,502,352156.56,60599.867,209418.53,0,0,0,1193.9011 +14712,17984,32059,-9,32057,32058,1,0,31,0,0,0,1,1,-9,0,4,8.1109619,7.8879318,0,0,0,-925.9176,0,2,3,2021,10,0,7,35,1,0,0,54.807713,54.807713,0,0,0,0,0,0,0,0,1,0,1,3.8380966,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,8,13,4,1,224,147016.31,74404.016,0,0,0,0,1190.2627 +14712,17985,32060,-9,32057,32058,1,1,29,0,0,0,2,2,-9,0,4,8.5159969,8.6353197,0,0,0,-957.96228,0,2,3,2021,12,1,60,50,1,1,0,11.431703,11.431703,.05,.05,0,0,0,0,0,0,1,0,1,0,0,48.87,58.55,-9,-9,5,1,1,0,0,8,13,5,1,759,88338.844,30957.547,0,0,0,0,2040.7966 +14712,17986,32061,-9,32057,32058,1,1,26,0,0,0,3,3,-9,1,3,6.7701001,6.7107878,0,0,0,-969.77106,0,2,3,2021,11,0,16,16,1,0,0,6.9623632,6.9623632,0,0,0,0,0,0,0,0,1,0,1,6.8531394,0,54.37,54.8,-9,-9,3.333333333333333,1,1,0,0,7,13,2,1,732,-108539.66,0,0,0,0,0,1701.4642 +14713,17987,32062,32063,-9,-9,1,0,78,0,0,0,3,3,-9,0,2,0,4.8987164,5.3785267,61,-4,-2.9878268,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,5.1610084,0,0,1,1,0,2.446861,5.3959365,62.59,26.86,61.12,51.57,10,1,1,0,0,0,9,2,0,1527,355474.94,19305.926,237451.19,0,0,0,2045.0828 +14713,17987,32063,32062,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,60,4,6.1867647,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7393212,0,61.12,51.57,62.59,26.86,8.333333333333334,1,1,0,0,0,9,2,0,1527,355474.94,19305.926,237451.19,0,0,0,2045.0828 +14714,17988,32064,-9,32065,-9,1,1,12,1,3,1,3,0,-9,0,2,0,0,0,0,0,-978.17639,-9,3,-9,2021,15,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14714,17988,32065,-9,-9,-9,1,0,29,1,3,0,3,3,-9,1,3,0,6.0096474,5.9540606,0,0,-1111.0902,0,2,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.8725905,0,35.8,59.5,-9,-9,5,1,1,0,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14714,17988,32066,-9,32065,-9,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1009.7051,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14714,17988,32067,-9,32065,-9,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.93896,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,2,0,479.5,-7268.0396,0,0,0,0,0,2591.3047 +14715,17989,32068,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.0716724,7.1527987,0,0,-992.89648,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1934843,6.9695816,64.07000000000001,47.52,-9,-9,8.333333333333334,1,1,0,0,4,5,2,1,310,350182.66,237518.3,121490.55,0,0,0,734.63806 +14716,17990,32069,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-920.72144,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,6.2653117,4.6213746,44.661583,74.5,1,1,0,0,0,44.24,35.2,-9,-9,5,1,1,0,0,0,7,2,1,930,-247676.31,-37552.473,0,0,-614.6261,0,279.91309 +14716,17991,32070,-9,-9,32069,1,1,45,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1011.0801,0,-9,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.7,39.18,-9,-9,6.666666666666667,1,1,1,0,0,7,1,1,3540,-52499.73,0,0,0,0,0,1784.1075 +14716,17992,32071,-9,-9,32069,1,1,34,0,0,0,3,3,-9,1,2,0,0,0,0,0,-979.17389,0,-9,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.95,37.91,-9,-9,6.666666666666667,1,1,1,0,0,7,1,1,468,-285571.44,0,0,0,0,0,615.69769 +14717,17993,32072,32073,-9,-9,1,1,30,0,1,0,2,2,-9,0,4,8.1086559,7.9368706,0,4,2,-21.597868,0,-9,-9,2021,11,0,48,50,1,0,0,7.0331402,7.0331402,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.41,58.28,57.16,56.15,8.333333333333334,1,1,0,0,8,7,4,1,499.66666,74482.539,77270.414,100827.74,99760.156,0,0,2663.739 +14717,17993,32073,32072,-9,-9,1,0,28,0,1,0,2,2,-9,0,4,8.0797691,7.6143126,0,4,-2,-49.09713,0,-9,-9,2021,9,0,40,33,1,0,0,8.6529961,8.6529961,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,49.41,58.28,8.333333333333334,1,1,0,0,8,7,4,1,499.66666,74482.539,77270.414,100827.74,99760.156,0,0,2663.739 +14717,17993,32074,-9,32073,32072,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-966.32709,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,4,1,499.66666,74482.539,77270.414,100827.74,99760.156,0,0,2663.739 +14718,17994,32075,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.5125794,8.066021,0,0,-1078.9939,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.385838,7.6786394,54.69,57.47,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,359,227348.7,120819.47,137737.02,0,0,0,2827.5479 +14719,17995,32076,32077,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,18,-11,-103.73675,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.3833888,0,42.65,41.71,38.91,42.1,6.666666666666667,1,1,0,0,2,6,2,1,136.5,28852.627,99610.922,0,0,0,0,1004.1464 +14719,17995,32077,32076,-9,-9,1,1,75,0,0,0,3,3,-9,0,2,0,5.8051505,5.9211607,10,11,167.58766,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,7.3702083,0,2,1,1,0,6.0992751,5.7886777,38.91,42.1,42.65,41.71,6.666666666666667,1,1,0,0,6,6,2,1,136.5,28852.627,99610.922,0,0,0,0,1004.1464 +14720,17996,32078,-9,32081,32079,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1098.0913,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14720,17996,32079,32081,-9,-9,1,1,58,0,2,0,1,1,-9,0,4,9.636344,9.6223392,7.5233288,4,10,50.642723,0,-9,-9,2021,6,0,24,44,1,0,0,55.007664,55.007664,.05,.05,0,0,0,0,0,0,0,0,0,3.552983,7.5850911,52.97,53.97,55.79,52.62,6.666666666666667,1,1,0,0,6,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14720,17996,32080,-9,32081,32079,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-961.58417,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14720,17996,32081,32079,-9,-9,1,0,48,0,2,0,1,1,-9,0,4,9.5725832,9.697197,6.2622876,4,-10,69.176308,0,3,3,2021,9,0,60,40,1,0,0,24.445192,24.445192,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0513682,55.79,52.62,52.97,53.97,8.333333333333334,1,1,0,0,14,8,5,1,561.75,1286763,1216318.3,298849.16,110720.7,21332.215,0,9792.7432 +14721,17997,32082,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,2,0,0,0,0,0,-920.80548,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,40.69,30.2,-9,-9,8.333333333333334,1,1,0,0,8,12,2,0,648,-23057.979,0,0,0,0,0,833.80383 +14722,17998,32083,-9,32084,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-844.31366,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,2,1,460,-12578.243,0,0,0,0,0,853.06653 +14722,17998,32084,-9,-9,-9,1,0,40,1,3,0,2,2,-9,0,4,0,6.1103311,6.1581426,0,0,-904.9975,-9,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,6.4736147,0,38.4,60.75,-9,-9,3.333333333333333,1,1,1,0,6,2,2,1,460,-12578.243,0,0,0,0,0,853.06653 +14722,17999,32085,-9,32084,-9,1,0,20,1,3,0,2,2,-9,0,4,6.7222056,6.8304214,0,0,0,-1007.5729,-9,2,-9,2021,5,1,12,0,1,1,1,8.4229927,8.4229927,0,0,0,0,0,0,0,0,1,0,1,0,0,45,59,-9,-9,8.333333333333334,1,1,0,0,5,2,2,1,2253.5,-64177.703,0,0,0,1122.2761,2320.3213,1583.176 +14722,17999,32086,-9,32085,-9,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1049.4531,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,2,2,1,2253.5,-64177.703,0,0,0,1122.2761,2320.3213,1583.176 +14723,18000,32087,32088,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,4.5939102,4.642333,57,6,8.7985897,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3068919,4.7338252,57.33,40.23,53.71,48.6,8.333333333333334,1,1,0,0,0,4,2,1,366,91560.375,25405.848,51277.051,0,0,0,1372.5635 +14723,18000,32088,32087,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,57,-6,-122.99671,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.71,48.6,57.33,40.23,8.333333333333334,1,1,0,0,0,4,2,1,366,91560.375,25405.848,51277.051,0,0,0,1372.5635 +14724,18001,32089,-9,32091,-9,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-982.56793,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,54,-9,-9,6,1,1,-9,0,0,10,4,1,1008,717554,357588,364785.97,90757.086,0,0,3571.6421 +14724,18001,32090,-9,32091,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6716,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,-9,0,0,10,4,1,1008,717554,357588,364785.97,90757.086,0,0,3571.6421 +14724,18001,32091,-9,-9,-9,1,0,50,0,2,0,1,1,-9,0,2,8.3179398,8.9873514,7.7354007,0,0,-966.86566,0,2,2,2021,14,4,38,38,1,4,0,10.96551,10.96551,.05,.05,0,0,0,0,0,0,1,1,0,7.9270444,0,40.64,42.43,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,1008,717554,357588,364785.97,90757.086,0,0,3571.6421 +14725,18002,32092,-9,-9,-9,1,0,51,0,0,0,2,2,-9,0,4,8.4231815,8.5567083,6.5598965,0,0,-1079.2777,0,2,2,2021,3,0,39,40,1,0,0,13.222891,13.222891,.05,.05,0,0,0,0,0,0,1,1,0,0,6.7994547,54.2,57.49,-9,-9,10,1,1,0,0,10,9,5,1,439,356859.13,170764.03,113492.84,0,0,-289.80743,2373.6279 +14726,18003,32093,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,3,0,5.5628009,5.1219764,0,0,-958.8714,0,3,3,2021,9,2,0,0,4,2,0,0,0,0,0,0,1,0,2.5238776,0,0,1,1,0,0,5.2241244,55.77,26,-9,-9,10,1,1,0,0,0,8,2,0,255,785806.06,0,623593.75,0,0,0,857.14935 +14727,18004,32094,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,5.5152307,5.5339117,0,0,-1058.0906,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1084542,5.4620233,42.45,51.95,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,1407,324099.75,0,128112.18,0,0,0,18.999313 +14728,18005,32095,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.8437166,7.6276722,0,0,-999.62836,0,2,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3552823,7.6706328,47.55,44.33,-9,-9,8.333333333333334,1,1,0,0,7,5,3,1,410,601158,701417.44,0,0,0,0,1618.267 +14729,18006,32096,32097,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,7.147172,6.9719148,30,18,-34.10738,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.37778,7.0465317,54.22,44.61,57.06,57.76,8.333333333333334,1,1,0,0,0,9,2,1,821.5,329112.13,276600.28,205486.47,0,0,0,3427.4666 +14729,18006,32097,32096,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,0,0,30,-18,114.85978,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,57.06,57.76,54.22,44.61,8.333333333333334,1,1,0,0,3,9,2,1,821.5,329112.13,276600.28,205486.47,0,0,0,3427.4666 +14730,18007,32098,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,5.3311205,5.9219675,0,0,-951.98431,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5881639,5.7952595,52.34,56.95,-9,-9,8.333333333333334,1,1,0,0,9,12,2,1,629,155850.98,65474.574,87410.016,0,0,2056.3308,1368.8951 +14731,18008,32099,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0355854,7.8431129,0,0,0,-864.11176,0,3,3,2021,13,1,38,30,1,1,0,13.348964,13.348964,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.64,58.32,-9,-9,5,1,1,0,1,9,5,4,1,1532,-15508.738,86776.055,26954.58,0,2261.2795,0,1130.3276 +14732,18009,32100,32101,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,7.4682684,7.4729891,0,11,1,-38.899155,0,2,2,2021,26,11,14,14,1,11,0,14.291822,14.291822,0,0,0,0,0,0,0,2,0,0,0,0,0,22.31,64.42,33.12,61.85,3.333333333333333,1,1,0,0,15,7,3,1,6562.5,56566.348,29616.875,0,0,1917.574,0,1183.3293 +14732,18009,32101,32100,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,5.2321277,5.2260523,0,11,-1,-2.0205662,0,-9,-9,2021,23,9,40,40,1,9,0,.62980837,.62980837,.05,.05,0,0,0,0,0,0,0,0,0,2.2294998,0,33.12,61.85,22.31,64.42,5,1,1,0,0,15,7,3,1,6562.5,56566.348,29616.875,0,0,1917.574,0,1183.3293 +14733,18010,32102,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,4,8.0726919,8.4368696,7.3800812,0,0,-806.71936,0,3,2,2021,19,7,37,30,1,7,0,9.5961485,9.5961485,.05,.05,0,0,0,0,0,0,1,1,0,7.1022058,6.7060275,42.86,55.92,-9,-9,6.666666666666667,1,1,0,0,5,2,4,1,1351.5,480335.69,284082.59,106861.3,44637.758,0,0,2949.9729 +14733,18010,32103,-9,32102,-9,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.29883,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,4,1,1351.5,480335.69,284082.59,106861.3,44637.758,0,0,2949.9729 +14734,18011,32104,32105,-9,-9,1,0,22,0,0,1,1,0,-9,0,3,0,0,0,1,-3,3.5696654,-9,-9,-9,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.01,55.94,39.15,43.33,6.666666666666667,1,1,0,0,0,13,3,1,2233,-82503.008,0,0,0,0,595.83691,1611.1006 +14734,18011,32105,32104,-9,-9,1,1,25,0,0,0,2,2,1,0,2,8.0361786,7.5630875,0,1,3,-54.736843,-9,-9,-9,2021,12,2,40,0,1,2,0,7.0929456,7.0929456,0,0,0,0,0,0,0,0,0,0,0,0,0,39.15,43.33,40.01,55.94,6.666666666666667,1,1,0,0,7,13,3,1,2233,-82503.008,0,0,0,0,595.83691,1611.1006 +14735,18012,32106,-9,32108,32107,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1028.0502,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,7,4,1,646.66669,301017.13,228169.23,190203.38,0,0,0,2574.0898 +14735,18012,32107,32108,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,8.3559999,8.8862257,0,16,-3,-84.971947,0,3,2,2021,10,0,35,35,1,0,0,16.584263,16.584263,.05,.05,0,0,0,0,0,14.5,1,1,0,3.9022694,0,49.29,49.06,54.2,57.49,5,1,1,0,0,7,7,4,1,646.66669,301017.13,228169.23,190203.38,0,0,0,2574.0898 +14735,18012,32108,32107,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,6.8722181,6.7427292,0,15,3,44.722862,0,2,2,2021,7,0,25,24,1,0,0,3.478807,3.478807,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,49.29,49.06,8.333333333333334,1,1,0,0,6,7,4,1,646.66669,301017.13,228169.23,190203.38,0,0,0,2574.0898 +14736,18013,32109,32110,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,7.336453,7.2436051,5.5456381,9,11,64.963547,0,-9,-9,2021,10,0,25,24,1,0,0,6.3430305,6.3430305,0,0,0,0,0,0,0,0,1,1,0,5.2125978,0,57.16,56.15,54.2,57.49,5,1,1,0,0,8,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14736,18013,32110,32109,-9,-9,1,1,32,0,2,0,2,2,-9,0,4,8.5919609,8.614747,0,9,-11,-34.60944,0,-9,-9,2021,7,0,50,50,1,0,0,12.239959,12.239959,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,9,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14736,18013,32111,-9,32109,32110,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1031.5924,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14736,18013,32112,-9,32109,32110,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-967.4259,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,13,4,1,594.5,14026.5,-44731.598,0,0,7939.8291,3527.4265,2507.9629 +14737,18014,32113,32114,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,9.2542734,9.3117247,0,11,3,-18.410887,0,2,3,2021,12,0,40,40,1,0,0,24.249743,24.249743,0,0,0,0,0,0,0,2,0,0,0,0,0,56.33,51.02,52.99,51.28,8.333333333333334,1,1,0,0,12,11,5,1,531,880905,578495,313140.69,10921.574,0,0,3326.0757 +14737,18014,32114,32113,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,0,6.142858,6.0564384,11,-3,77.771652,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3491983,0,52.99,51.28,56.33,51.02,8.333333333333334,1,1,0,0,2,11,5,1,531,880905,578495,313140.69,10921.574,0,0,3326.0757 +14738,18015,32115,32116,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.2269707,8.3287201,0,2,-4,54.222015,0,-9,-9,2021,6,0,38,11,1,0,0,11.578612,11.578612,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.55,54.68,60.36,46.43,8.333333333333334,1,1,0,0,7,2,5,0,470,276123.38,20829.824,202631.19,147853.28,3273.9463,0,3530.1953 +14738,18015,32116,32115,-9,-9,1,1,27,0,0,0,1,1,-9,0,4,8.2118492,8.1696615,0,2,4,98.706657,0,-9,-9,2021,6,0,38,39,1,0,0,11.426247,11.426247,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.36,46.43,46.55,54.68,10,1,1,0,0,4,2,5,0,470,276123.38,20829.824,202631.19,147853.28,3273.9463,0,3530.1953 +14739,18016,32117,32118,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,8.5847855,8.3773737,10,1,-48.480453,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6813507,8.8906193,44.32,32.67,39.13,44.46,5,1,1,0,0,0,9,4,1,1508.5,2509162,270135.88,783854.5,0,0,0,4972.3452 +14739,18016,32118,32117,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,7.2548189,6.5709066,10,-1,-25.758604,0,2,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.4885025,7.407537,39.13,44.46,44.32,32.67,5,1,1,0,0,0,9,4,1,1508.5,2509162,270135.88,783854.5,0,0,0,4972.3452 +14740,18017,32119,32120,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,8.1725502,8.3826656,7.5187259,7,0,104.31673,0,3,3,2021,12,0,20,20,1,0,0,17.271223,17.271223,.05,.05,0,0,0,0,0,7,1,1,0,2.1648338,7.539938,54.2,57.49,37.26,18.29,8.333333333333334,1,1,0,0,9,2,4,1,712,590714.94,464285.91,130357.3,52053.063,0,0,2835.1309 +14740,18017,32120,32119,-9,-9,1,1,61,0,0,0,2,2,-9,1,1,0,0,0,7,0,-249.2854,0,3,3,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,1.6462722,0,37.26,18.29,54.2,57.49,3.333333333333333,1,1,0,0,8,2,4,1,712,590714.94,464285.91,130357.3,52053.063,0,0,2835.1309 +14741,18018,32121,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,3,7.1971512,7.0267658,0,0,0,-1182.4587,0,2,-9,2021,10,0,56,7,1,0,0,2.6809392,2.6809392,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,2,2,2,0,204,56390.352,0,0,0,0,0,304.3161 +14742,18019,32122,32123,-9,-9,1,1,46,0,0,0,2,2,-9,0,2,7.9986162,7.9394116,0,9,-3,-32.946411,0,-9,3,2021,9,0,40,46,1,0,0,7.2795024,7.2795024,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.99,36.18,54.62,53.53,6.666666666666667,1,1,0,0,9,8,4,0,275,326436.63,26268.668,410474.5,5293.9653,0,0,2710.9722 +14742,18019,32123,32122,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5915618,7.7768517,0,9,3,4.5305309,0,-9,-9,2021,11,1,38,38,1,1,0,9.3131971,9.3131971,0,0,0,0,0,0,0,0,1,1,0,0,0,54.62,53.53,56.99,36.18,6.666666666666667,1,1,0,0,10,8,4,0,275,326436.63,26268.668,410474.5,5293.9653,0,0,2710.9722 +14742,18020,32124,-9,32123,32122,1,1,29,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1184.0198,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,10,1,1,1,0,0,8,1,0,394,0,0,0,0,0,0,423.30692 +14743,18021,32125,32126,-9,-9,1,0,48,0,0,0,1,1,-9,1,2,0,0,0,27,-3,0,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.4,32.86,46.5,58.26,3.333333333333333,2,3,0,0,0,2,1,0,715,1816078.3,1192064,507519.75,0,0,0,-5.6947327 +14743,18021,32126,32125,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,0,0,0,27,3,0,0,3,2,2021,8,2,0,30,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.5,58.26,38.4,32.86,6.666666666666667,2,3,1,0,3,2,1,0,715,1816078.3,1192064,507519.75,0,0,0,-5.6947327 +14743,18022,32127,-9,32125,32126,1,1,23,0,0,0,2,2,-9,0,4,7.8310776,7.5020032,0,0,0,-1081.8002,0,1,1,2021,19,6,37,10,1,6,1,9.3084955,9.3084955,0,0,0,0,0,0,0,0,1,1,0,0,0,33.55,44.27,-9,-9,5,2,3,0,0,4,2,3,0,2389,188167.91,0,0,0,0,0,1110.4886 +14743,18023,32128,-9,32125,32126,1,1,20,0,0,0,2,2,-9,0,5,7.1496549,7.0561929,0,0,0,-1067.2163,0,1,1,2021,0,0,30,31,1,0,1,5.234581,5.234581,0,0,0,0,0,0,0,0,1,1,0,0,0,41.07,60.93,-9,-9,10,2,3,0,0,2,2,2,0,1071,223949.61,0,0,0,0,0,793.54437 +14744,18024,32129,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1025.9738,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,.24256048,0,56.92,49.39,-9,-9,8.333333333333334,1,1,0,0,0,7,1,1,702,-26245.654,671.74432,0,0,0,0,184.46152 +14745,18025,32130,32132,-9,-9,1,0,38,0,2,0,2,2,-9,0,5,7.3080025,7.2379999,0,9,-2,86.888947,0,3,3,2021,8,0,25,25,1,0,0,7.561861,7.561861,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,54.5,57.5,0,1,1,0,0,11,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14745,18025,32131,-9,32130,32132,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-834.33368,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14745,18025,32132,32130,-9,-9,1,1,40,0,2,0,2,2,-9,0,5,7.4550591,7.6186347,0,9,2,87.31118,0,2,2,2021,7,0,35,30,1,0,0,4.794981,4.794981,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.5,57.5,54.1,59.11,8.333333333333334,1,1,0,0,11,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14745,18025,32133,-9,32130,32132,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.86499,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,3,1,883.75,-15289.027,-27469.627,133951.27,61407.063,0,3040.7185,1944.281 +14746,18026,32134,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,2,0,8.7360697,8.5599451,0,0,-1139.3478,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,8.986721,0,92.039719,2,1,1,0,0,8.5768976,55.42,23.87,-9,-9,10,1,1,0,0,1,10,5,1,1085,1197605.5,549299.5,307947.06,0,0,0,3542.626 +14747,18027,32135,32136,-9,-9,1,0,45,0,0,0,1,1,-9,0,2,8.4180098,8.0786114,0,11,-5,107.46557,0,2,2,2021,7,0,49,83,1,0,0,9.1454554,9.1454554,0,0,0,0,0,0,0,2,0,0,0,0,0,53.86,43.07,57.33,53.46,8.333333333333334,1,1,0,0,13,2,5,1,383,2608840,2201728,456384.31,0,3666.5728,10180.59,4884.6597 +14747,18027,32136,32135,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.4135485,9.2554884,0,11,5,-25.236887,0,3,3,2021,6,0,43,43,1,0,0,25.013798,25.013798,.05,.05,0,0,0,0,0,0,0,0,0,5.7914572,0,57.33,53.46,53.86,43.07,8.333333333333334,1,1,0,0,13,2,5,1,383,2608840,2201728,456384.31,0,3666.5728,10180.59,4884.6597 +14747,18028,32137,-9,32135,32136,1,0,26,0,0,0,1,1,-9,0,3,7.4323182,7.4021869,0,0,0,-966.9295,0,2,2,2021,13,2,23,22,1,2,1,5.5205007,5.5205007,.05,.05,0,0,0,0,0,0,0,0,0,3.14605,0,32.08,58.42,-9,-9,8.333333333333334,1,1,0,0,8,2,3,1,2098,-173049.31,-218799.56,0,0,0,0,1094.9615 +14747,18029,32138,-9,32135,32136,1,0,23,0,0,0,2,2,-9,0,3,7.9518366,8.1743393,0,0,0,-1086.1779,-9,1,2,2021,11,0,44,0,1,0,1,8.1068068,8.1068068,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.78,53.38,-9,-9,8.333333333333334,1,1,0,0,6,2,4,1,2208,36134.391,-10784.563,0,0,2872.8789,3333.2458,1849.2797 +14748,18030,32139,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,7.1885047,7.1302633,0,0,-1058.2114,0,2,2,2021,13,4,0,0,4,4,0,0,0,0,0,0,1,0,3.8575583,0,0,1,1,0,0,6.9393091,55.76,18.3,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,130,-21637.939,-10033.522,0,0,0,0,919.17303 +14749,18031,32140,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1093.0952,-9,3,3,2021,22,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.46,32.83,-9,-9,1.666666666666667,1,1,0,1,0,13,2,0,843,78946.664,0,0,0,4247.3081,0,735.6557 +14750,18032,32141,32142,-9,-9,1,0,62,0,0,0,2,2,-9,1,2,0,4.6393023,4.2345128,4,10,40.74612,0,-9,-9,2021,24,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,4.7463207,40.87,34.06,19.01,22.64,1.666666666666667,1,1,0,1,5,5,2,0,993,-93722.484,0,0,0,0,0,809.76019 +14750,18032,32142,32141,-9,-9,1,1,52,0,0,0,2,2,-9,1,1,0,0,0,4,-10,-83.346367,0,-9,-9,2021,31,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,40.87,34.06,3.333333333333333,1,1,0,1,3,5,2,0,993,-93722.484,0,0,0,0,0,809.76019 +14750,18033,32143,-9,32141,32142,1,0,30,0,0,0,3,3,-9,0,4,7.0658245,7.2397923,0,0,0,-1017.6922,-9,2,2,2021,7,1,27,0,1,1,1,5.5579734,5.5579734,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,7,5,3,0,1035,125977.35,28289.443,0,0,0,0,520.73932 +14751,18034,32144,32145,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,0,0,0,32,-3,-72.815666,0,3,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,54.15,48.02,57.16,56.15,8.333333333333334,1,1,0,0,11,12,3,1,151,99766.328,-153.57227,125473.09,22065.996,0,193.10872,1647.3009 +14751,18034,32145,32144,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.0855045,8.236289,0,32,3,-19.130423,0,-9,3,2021,9,0,10,15,1,0,0,43.842522,43.842522,.05,.05,0,0,0,0,0,0,0,0,0,2.9098535,0,57.16,56.15,54.15,48.02,8.333333333333334,1,1,0,0,12,12,3,1,151,99766.328,-153.57227,125473.09,22065.996,0,193.10872,1647.3009 +14752,18035,32146,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,1,7.8770556,7.6429334,0,0,0,-906.19,0,2,2,2021,23,11,37,37,1,11,0,5.8567247,5.8567247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.78,30.9,-9,-9,3.333333333333333,1,1,0,0,12,12,3,0,2152,-77884.781,3647.7021,0,0,0,0,1094.7634 +14753,18036,32147,32148,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,5.8517523,5.5688863,53,3,26.749607,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3559699,5.7722707,57.24,41.16,47.08,32.36,6.666666666666667,1,1,0,0,0,4,2,1,636,340018,250382.84,122995.8,0,0,0,2191.3853 +14753,18036,32148,32147,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.7648287,6.9407191,53,-3,-132.49205,0,-9,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,6.7618861,47.08,32.36,57.24,41.16,6.666666666666667,1,1,0,0,3,4,2,1,636,340018,250382.84,122995.8,0,0,0,2191.3853 +14754,18037,32149,32151,-9,-9,1,0,52,0,1,0,1,1,-9,0,3,8.1339788,8.2212887,0,23,-4,-108.68282,0,3,2,2021,16,4,22,22,1,4,0,16.961498,16.961498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.25,49.02,57.91,46.31,5,1,1,0,0,12,2,4,1,391,1100206.8,732947.31,214137.31,0,0,0,2867.7432 +14754,18037,32150,-9,32149,32151,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1009.4638,-9,1,2,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,0,2,4,1,391,1100206.8,732947.31,214137.31,0,0,0,2867.7432 +14754,18037,32151,32149,-9,-9,1,1,56,0,1,0,2,2,-9,0,3,8.1691618,8.2526951,0,10,4,120.34324,0,-9,-9,2021,7,0,35,35,1,0,0,9.7483702,9.7483702,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.91,46.31,40.25,49.02,6.666666666666667,1,1,0,0,12,2,4,1,391,1100206.8,732947.31,214137.31,0,0,0,2867.7432 +14755,18038,32152,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.5418787,8.3933878,0,0,0,-1011.8278,0,2,2,2021,7,0,50,45,1,0,0,11.781961,11.781961,0,0,0,0,0,0,0,0,0,0,0,.043435376,0,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,9,10,5,0,1271,36869.438,0,0,0,0,0,2526.1917 +14756,18039,32153,32154,-9,-9,1,0,53,0,0,0,2,2,-9,0,4,7.6568499,7.6767445,0,31,-4,62.932159,0,2,2,2021,0,0,43,28,1,0,0,5.2939143,5.2939143,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.28,60.18,57.16,56.15,10,1,1,0,0,9,10,4,0,1639,6017.7969,30029.672,0,0,0,0,2933.1597 +14756,18039,32154,32153,-9,-9,1,1,57,0,0,0,3,3,-9,0,4,8.2504082,8.4745035,0,7,4,-108.51736,0,2,2,2021,6,0,50,40,1,0,0,11.957575,11.957575,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,48.28,60.18,10,1,1,0,0,9,10,4,0,1639,6017.7969,30029.672,0,0,0,0,2933.1597 +14757,18040,32155,32156,-9,-9,1,1,52,0,0,0,1,1,-9,0,4,8.506402,8.364933,0,29,-1,-28.881674,0,-9,-9,2021,6,0,50,50,1,0,0,9.5557566,9.5557566,.05,.05,0,0,0,0,0,0,1,0,1,4.9353576,0,63.6,47.67,47.15,55.39,8.333333333333334,3,4,0,0,6,8,5,0,1006.5,1630524.6,1432441.3,339487.75,253293.22,19221.785,9006.2031,4437.79 +14757,18040,32156,32155,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.8580608,9.1051931,0,29,1,-176.40814,0,-9,-9,2021,10,3,60,50,1,3,0,14.786818,14.786818,.05,.05,0,0,0,0,0,7,1,0,1,0,0,47.15,55.39,63.6,47.67,8.333333333333334,3,4,0,0,11,8,5,0,1006.5,1630524.6,1432441.3,339487.75,253293.22,19221.785,9006.2031,4437.79 +14757,18041,32157,-9,32156,32155,1,0,26,0,0,0,2,2,-9,0,4,7.9804697,7.8709545,0,0,0,-1161.782,-9,1,1,2021,11,0,35,0,1,2,1,7.5585098,7.5585098,0,0,0,0,0,0,0,0,1,0,1,0,0,47,58,-9,-9,7,3,4,0,0,7,8,3,0,629,182680.58,0,0,0,0,0,2235.4343 +14757,18042,32158,-9,32156,32155,1,0,26,0,0,0,1,1,-9,0,4,7.9104695,7.8331413,0,0,0,-847.66003,-9,1,1,2021,11,0,40,0,1,2,1,7.2675567,7.2675567,0,0,0,0,0,0,.56736761,0,1,0,1,0,0,47,58,-9,-9,7,3,4,0,0,3,8,3,0,6320,-4667.8794,0,0,0,0,0,1372.3485 +14757,18043,32159,-9,32156,32155,1,1,19,0,0,0,2,2,-9,0,5,0,0,0,0,0,-889.39899,-9,1,1,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.14,60.45,-9,-9,6.666666666666667,3,4,1,0,0,8,1,0,160,113479.81,0,0,0,0,0,-101.09753 +14758,18044,32160,32161,-9,-9,1,1,74,0,0,0,1,1,-9,0,3,0,8.1467953,8.1008816,12,2,-68.648987,0,1,1,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9780159,8.0893936,48.17,52.08,52.05,55.95,6.666666666666667,1,1,0,0,5,1,3,1,803,1881108.8,1059786.3,666712.5,0,0,0,3443.3105 +14758,18044,32161,32160,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,5.8021226,6.0789642,12,-2,-8.3224697,0,1,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2179754,5.6913719,52.05,55.95,48.17,52.08,8.333333333333334,1,1,0,0,5,1,3,1,803,1881108.8,1059786.3,666712.5,0,0,0,3443.3105 +14759,18045,32162,32163,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.6495695,8.7340689,0,3,3,124.93825,0,-9,-9,2021,6,0,45,40,1,0,0,14.907611,14.907611,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.2,57.49,37.79,59.6,8.333333333333334,1,1,0,0,5,9,5,0,221,201280.06,-12290.306,246431.88,169470.41,0,0,3495.5168 +14759,18045,32163,32162,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.1777058,8.3174076,0,3,-3,-98.360947,0,3,3,2021,20,8,82,37,1,8,0,6.0715532,6.0715532,.05,.05,0,0,0,0,0,7,0,0,0,2.9359584,0,37.79,59.6,54.2,57.49,6.666666666666667,1,1,0,0,8,9,5,0,221,201280.06,-12290.306,246431.88,169470.41,0,0,3495.5168 +14760,18046,32164,32165,-9,-9,1,0,74,0,0,0,3,3,-9,0,4,0,0,0,55,-8,0,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.1,51.16,66.40000000000001,32.81,10,1,1,0,0,0,7,1,1,1017,-17732.102,0,0,0,0,0,1453.8339 +14760,18046,32165,32164,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,0,0,55,8,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.40000000000001,32.81,62.1,51.16,10,1,1,0,0,0,7,1,1,1017,-17732.102,0,0,0,0,0,1453.8339 +14761,18047,32166,-9,-9,-9,1,1,45,0,0,0,1,1,1,0,4,0,0,0,0,0,-957.03723,-9,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.67,49.54,-9,-9,8.333333333333334,3,4,1,1,0,8,1,0,599,-147653.97,0,67016.102,18687.576,0,0,13.170557 +14762,18048,32167,32168,-9,-9,1,0,36,0,0,0,2,2,-9,0,3,8.3706255,8.3989286,0,1,0,39.824097,-9,-9,-9,2021,13,1,40,0,1,1,0,14.046557,14.046557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.61,62.71,55.19,54.26,5,1,1,0,0,2,12,5,1,452.5,222789.41,100548.43,148535.91,109921.39,9741.5332,0,4279.2329 +14762,18048,32168,32167,-9,-9,1,1,36,0,0,0,2,2,-9,0,4,8.8986244,8.5678215,0,1,0,-62.178795,0,2,3,2021,9,0,42,42,1,0,0,18.053127,18.053127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,25.61,62.71,8.333333333333334,1,1,0,0,9,12,5,1,452.5,222789.41,100548.43,148535.91,109921.39,9741.5332,0,4279.2329 +14763,18049,32169,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.8663116,8.121172,0,0,-975.61737,0,-9,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9865532,56.11,44.4,-9,-9,8.333333333333334,1,1,0,0,5,10,4,1,1354,894807,522961.41,352420.03,0,0,0,2404.3552 +14764,18050,32170,-9,-9,-9,1,0,90,0,0,0,3,3,-9,0,2,0,5.5639644,5.4573936,0,0,-938.57416,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,7.9609981,13.227651,66.793823,0,1,1,0,0,5.6450639,43.04,32.88,-9,-9,8.333333333333334,1,1,0,0,0,13,2,0,662,177712.81,438.44568,121483.82,54863.055,0,0,1776.5325 +14765,18051,32171,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,2,8.0552216,8.0061035,0,0,0,-1154.4764,0,2,2,2021,16,5,40,38,1,5,0,7.8240223,7.8240223,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.27,36.96,-9,-9,3.333333333333333,1,1,0,0,6,5,4,0,1357,298193.88,228736.27,0,0,0,0,1729.3486 +14765,18052,32172,-9,32171,-9,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-886.19781,-9,2,-9,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42.85,60.33,-9,-9,8.333333333333334,1,1,0,0,1,5,1,0,1015,-12623.263,0,0,0,0,0,0 +14766,18053,32173,32174,-9,-9,1,0,60,0,0,0,3,3,-9,0,2,6.6560054,6.8697152,0,36,1,57.611702,0,3,2,2021,12,3,20,22,1,3,0,5.3155732,5.3155732,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.85,50.47,55.36,51.57,6.666666666666667,2,3,0,0,12,8,3,1,552.5,493025.72,328502.75,195652.69,0,0,0,1663.0145 +14766,18053,32174,32173,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,8.0232763,7.9395537,0,36,-1,64.700058,0,3,2,2021,11,0,40,40,1,0,0,7.9011645,7.9011645,.05,.05,.05,0,0,0,0,0,1,0,1,0,0,55.36,51.57,49.85,50.47,6.666666666666667,2,3,0,0,10,8,3,1,552.5,493025.72,328502.75,195652.69,0,0,0,1663.0145 +14766,18054,32175,-9,32173,32174,1,0,28,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1061.0153,0,2,2,2021,12,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,-9,-9,3.333333333333333,2,3,1,1,7,8,1,1,254,-64325.848,0,0,0,0,0,342.0459 +14766,18055,32176,-9,32173,32174,1,0,20,0,0,0,2,2,1,0,4,6.6615891,7.5653334,6.7353954,0,0,-1063.9233,-9,3,3,2021,5,1,44,0,1,1,1,1.9314944,1.9314944,0,0,0,0,0,0,0,0,1,0,1,5.9292746,0,70.39,40.52,-9,-9,10,2,3,0,0,4,8,3,1,684,17408.309,0,0,0,0,0,1973.1151 +14767,18056,32177,32178,-9,-9,1,1,55,0,0,0,2,2,-9,0,3,8.5281935,9.097086,0,23,-4,-86.61499,-9,2,3,2021,6,0,40,0,1,0,0,17.595264,17.595264,.05,.05,.05,0,0,0,0,0,0,0,0,4.0874743,0,58.08,40.76,61.04,39.41,8.333333333333334,1,1,0,0,9,13,5,1,168,280688.34,85252.172,334573.75,141824.69,2113.7046,4888.374,2807.9414 +14767,18056,32178,32177,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.3820806,7.3601551,0,23,4,8.2800074,-9,3,3,2021,7,0,20,0,1,0,0,10.191329,10.191329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,61.04,39.41,58.08,40.76,8.333333333333334,1,1,0,0,9,13,5,1,168,280688.34,85252.172,334573.75,141824.69,2113.7046,4888.374,2807.9414 +14767,18057,32179,-9,32178,32177,1,0,25,0,0,0,1,1,-9,0,3,7.633306,7.8430109,0,0,0,-882.45898,-9,3,2,2021,7,0,39,0,1,0,1,6.0463948,6.0463948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.02,52.22,-9,-9,6.666666666666667,1,1,0,0,8,13,3,1,1671,38976.449,-304.0524,0,0,0,0,901.74176 +14767,18058,32180,-9,32178,32177,1,0,24,0,0,0,1,1,-9,0,4,7.9566016,7.5746469,0,0,0,-943.19196,-9,3,2,2021,6,0,37,0,1,0,1,7.1159062,7.1159062,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,13,3,1,235,-175133.16,0,0,0,0,0,349.85797 +14768,18059,32181,-9,-9,-9,1,1,23,0,0,0,1,1,1,0,4,9.0923519,9.0799456,0,0,0,-1192.1555,-9,1,1,2021,22,8,55,0,1,8,0,20.654222,20.654222,0,0,0,0,0,0,0,0,0,0,0,5.6436124,0,33.49,64.26000000000001,-9,-9,6.666666666666667,1,1,0,0,5,10,5,0,1499,-57549.848,-30141.98,0,0,0,0,3978.7573 +14769,18060,32182,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,5.979784,6.6332893,6.0713634,0,0,-1058.0886,0,3,2,2021,12,0,21,21,1,0,0,1.70188,1.70188,0,0,0,0,0,0,0,0,1,1,0,0,5.8690305,49.53,24.62,-9,-9,6.666666666666667,3,4,0,0,2,8,2,1,946,252055.39,34034.113,159538.13,0,0,0,1165.8873 +14770,18061,32183,32184,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,5.6184311,8.1399145,8.3219318,22,-4,33.414677,-9,2,2,2021,10,0,30,0,1,1,0,.83609313,.83609313,0,0,0,0,0,0,0,0,1,1,0,7.2742887,8.4590921,50,49,57.09,46.7,7,1,1,0,0,1,9,4,1,249,1713292.5,973600.31,691610.88,0,0,0,4569.0381 +14770,18061,32184,32183,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,7.2214408,7.2804794,22,4,-54.734192,0,2,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6671619,7.3770432,57.09,46.7,50,49,8.333333333333334,1,1,0,0,0,9,4,1,249,1713292.5,973600.31,691610.88,0,0,0,4569.0381 +14771,18062,32185,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,2,8.768364,8.7558708,0,8,1,-148.63609,0,2,2,2021,24,11,38,44,1,11,0,18.257576,18.257576,.05,.05,0,0,0,0,0,0,0,0,0,4.1187844,0,32.1,50.37,53.36,50.02,6.666666666666667,1,1,0,0,8,8,5,1,3135,925836.44,467442.34,278435.44,36237.395,0,190.57423,2493.8337 +14771,18063,32186,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.6874838,8.4968882,0,8,-1,167.65855,0,-9,-9,2021,9,0,53,43,1,0,0,10.315735,10.315735,.05,.05,0,0,0,0,0,0,0,0,0,6.9848552,0,53.36,50.02,32.1,50.37,8.333333333333334,2,3,0,0,11,8,5,1,432,211700.88,72123.977,153479.75,80717.414,0,0,2954.8716 +14772,18064,32187,-9,-9,-9,1,0,42,0,0,0,2,2,-9,0,4,8.165803,8.2768879,0,0,0,-1046.0681,0,2,3,2021,9,0,39,37,1,0,0,10.550819,10.550819,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.43,48.2,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,1021,239658.39,149245.05,173290.31,58363.383,0,0,2018.2473 +14773,18065,32188,-9,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,8.0336514,7.6991472,0,0,0,-1064.4987,0,1,2,2021,24,12,21,22,1,12,0,13.779321,13.779321,.05,.05,0,0,0,0,0,0,1,1,0,.12054127,0,40.46,45.27,-9,-9,3.333333333333333,1,1,0,0,10,6,3,1,1196,168370.61,36819.82,141832.2,39342.215,0,0,1358.4412 +14773,18065,32189,-9,32188,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-983.05121,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,1.3971728,0,1,1,0,0,0,45,61,-9,-9,7,4,6,-9,0,0,6,3,1,1196,168370.61,36819.82,141832.2,39342.215,0,0,1358.4412 +14774,18066,32190,-9,-9,-9,1,1,22,0,0,0,1,1,1,0,4,7.8103805,7.7480698,0,0,0,-979.55566,-9,-9,-9,2021,13,2,40,0,1,2,0,9.4112091,9.4112091,.05,.05,0,0,0,0,0,0,0,0,0,2.164453,0,51.24,58.84,-9,-9,8.333333333333334,1,1,0,0,2,4,4,0,849,233578.13,70984.578,0,0,0,0,2277.4712 +14775,18067,32191,-9,-9,-9,1,1,71,0,0,0,3,3,-9,0,3,0,5.5041599,5.1558414,0,0,-920.69482,0,2,1,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.0409675,53,47,-9,-9,7,1,1,0,0,0,2,2,0,139,248778.34,43191.359,113747.43,0,0,0,657.20306 +14776,18068,32192,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,3,0,0,0,0,0,-1065.4531,0,-9,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,36.72,42.5,-9,-9,1.666666666666667,2,3,1,0,0,6,1,0,187,111210.55,0,0,0,0,1774.1168,771.98462 +14776,18069,32193,-9,32192,-9,1,0,27,0,1,0,1,1,-9,0,4,8.2690306,8.1868219,0,0,0,-938.6709,0,3,-9,2021,16,3,39,39,1,3,1,13.352105,13.352105,.05,.05,0,0,0,0,0,0,1,0,1,0,0,40.55,58.34,-9,-9,3.333333333333333,2,3,0,0,6,6,4,0,552,-183388.08,103379.88,0,0,0,1966.2263,1250.9739 +14776,18070,32194,-9,32192,-9,1,0,22,0,1,0,1,1,1,0,2,0,0,0,0,0,-929.58765,-9,3,-9,2021,15,3,0,0,3,3,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.55,34.05,-9,-9,6.666666666666667,2,3,0,0,3,6,1,0,547,143869.19,-80633.859,97029.219,0,0,0,1178.4399 +14776,18071,32195,-9,32192,-9,1,0,19,0,1,0,2,2,0,0,4,0,0,0,0,0,-1092.042,-9,3,-9,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47.4,54.12,-9,-9,8.333333333333334,2,3,0,0,4,6,1,0,285,0,0,0,0,0,0,0 +14777,18072,32196,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,3,0,5.3964224,5.5877423,0,0,-1017.4409,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.0865216,53,45,-9,-9,8,1,1,0,0,0,12,2,0,285,376979.88,0,181501.41,0,0,0,123.07309 +14778,18073,32197,32199,-9,-9,1,0,40,0,2,0,2,2,-9,0,4,7.7422729,7.2375269,0,22,-3,8.7173815,0,-9,-9,2021,24,10,38,0,1,10,0,5.8628716,5.8628716,0,0,0,0,0,0,0,0,1,1,0,.66842955,0,46.9,56.66,33.69,55,3.333333333333333,2,3,0,1,11,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32198,-9,32197,32199,1,0,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-1056.7264,-9,2,1,2021,23,9,0,0,2,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.56,52.4,-9,-9,5,2,3,0,0,0,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32199,32197,-9,-9,1,1,43,0,2,0,1,1,-9,0,4,8.5174675,8.1169558,0,22,3,-49.59959,0,1,1,2021,13,1,36,0,1,1,0,13.099267,13.099267,.05,.05,0,0,0,0,3.3211956,2,1,1,0,0,0,33.69,55,46.9,56.66,3.333333333333333,2,3,0,1,12,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32200,-9,32197,32199,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-990.42859,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,2,3,-9,0,0,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14778,18073,32201,-9,32197,32199,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.3141,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,8,3,1,845.79999,394652.69,290742.25,256400.42,85438.234,0,0,2743.7754 +14779,18074,32202,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,5.0728598,4.975915,0,0,-923.32922,0,3,2,2021,23,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1879382,4.7999001,38,36.96,-9,-9,1.666666666666667,1,1,0,0,3,6,2,0,646,475020.69,0,217989.91,0,0,0,1518.8931 +14780,18075,32203,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.1797686,7.698452,0,0,0,-959.43433,0,3,3,2021,6,0,25,32,1,0,0,14.839132,14.839132,0,0,0,0,0,0,0,0,0,0,0,4.5698256,0,62.42,45.64,-9,-9,10,1,1,0,0,15,13,4,1,1924,865283.88,558631.5,99975.375,0,11329.578,0,1148.6489 +14781,18076,32204,-9,32205,-9,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-865.75525,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32205,-9,-9,-9,1,0,33,1,4,0,2,2,-9,1,1,0,0,0,0,0,-1036.1251,-9,2,2,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,3,4,0,1,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32206,-9,32205,-9,1,0,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1074.4995,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32207,-9,32205,-9,1,0,11,1,4,1,3,0,-9,0,5,0,0,0,0,0,-1018.2569,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14781,18076,32208,-9,32205,-9,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1098.3109,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,8,1,0,651.40002,-21107.414,0,0,0,0,0,2629.5005 +14782,18077,32209,32210,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,5.3430767,5.4306016,0,29,-5,63.317463,0,3,2,2021,8,1,40,24,1,1,0,.44421723,.44421723,0,0,0,0,0,0,0,0,1,1,0,0,0,58.89,27.34,51,54,8.333333333333334,1,1,0,0,7,10,2,0,1169.5,25313.393,0,0,0,2895.1543,0,1007.2725 +14782,18077,32210,32209,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,6.4259162,6.2171302,0,29,5,31.176926,0,2,-9,2021,10,0,40,10,1,1,0,1.7300845,1.7300845,0,0,0,0,0,0,0,0,1,1,0,5.3829618,0,51,54,58.89,27.34,8,1,1,0,0,1,10,2,0,1169.5,25313.393,0,0,0,2895.1543,0,1007.2725 +14782,18078,32211,-9,32210,32209,1,1,21,0,0,0,2,2,-9,0,5,7.9762626,8.0345812,0,0,0,-1077.8535,-9,3,2,2021,6,0,38,0,1,0,1,7.3680296,7.3680296,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,10,4,0,725,-31091.615,83336.617,0,0,0,0,1280.8275 +14783,18079,32212,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,8.6302052,8.7197113,0,0,0,-1043.9088,0,3,3,2021,7,0,50,50,1,0,0,12.15486,12.15486,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,12,5,1,2514,837379.44,301492.34,102999.27,0,9514.1055,0,1956.8048 +14784,18080,32213,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.6057615,8.3218203,0,0,0,-903.4082,0,-9,-9,2021,20,8,50,47,1,8,0,9.3009663,9.3009663,.05,.05,0,0,0,0,0,0,1,1,0,4.855525,0,27.51,68.32000000000001,-9,-9,3.333333333333333,1,1,0,0,5,8,5,0,1394,-78375.141,-19708.498,0,0,0,0,1359.5632 +14785,18081,32214,-9,32217,32215,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1134.634,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14785,18081,32215,32217,-9,-9,1,1,47,0,2,0,2,2,-9,1,4,0,0,0,19,6,64.36776,0,3,3,2021,30,11,0,80,3,11,0,0,0,0,0,0,0,0,0,0,42,1,0,1,3.3170168,0,20,69.18000000000001,18.2,55.57,1.666666666666667,1,1,1,0,11,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14785,18081,32216,-9,32217,32215,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1049.2892,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14785,18081,32217,32215,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,8.29568,7.7079048,0,12,-6,-113.4435,0,-9,-9,2021,28,11,58,29,1,11,0,6.838563,6.838563,0,0,0,0,0,0,0,0,1,0,1,3.3698423,0,18.2,55.57,20,69.18000000000001,5,1,1,0,0,14,2,3,1,648.75,151139.88,38978.805,123824.95,19285.377,0,0,2511.9626 +14786,18082,32218,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,5,8.1484842,8.4877377,0,0,0,-899.69464,0,2,2,2021,3,0,43,38,1,0,1,10.695841,10.695841,0,0,0,0,0,0,1.829326,0,1,1,0,0,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,7,11,4,1,1422,-63146.469,0,0,0,0,0,2061.4966 +14787,18083,32219,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,8.2422009,8.0314779,0,0,-1000.2227,0,3,2,2021,20,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5576379,7.9111691,35.41,22.15,-9,-9,3.333333333333333,1,1,0,0,0,2,4,1,521,688261.81,535633.69,221264.7,0,0,0,2436.4851 +14788,18084,32220,32221,-9,-9,1,0,83,0,0,0,1,1,-9,0,4,0,0,0,56,-1,0,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,54.66,50.44,8.333333333333334,1,1,0,0,0,4,1,0,564,217010.61,0,231598.67,0,0,0,1961.3152 +14788,18084,32221,32220,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,0,0,56,1,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.416853,0,54.66,50.44,57.16,56.15,8.333333333333334,1,1,0,0,0,4,1,0,564,217010.61,0,231598.67,0,0,0,1961.3152 +14789,18085,32222,32223,-9,-9,1,0,48,0,0,0,1,1,-9,0,2,8.981431,8.573782,0,10,1,-134.84351,0,2,2,2021,16,4,43,43,1,4,0,17.327089,17.327089,0,0,0,0,0,0,0,0,0,0,0,1.0553888,0,46.45,35.69,49.25,61.25,6.666666666666667,1,1,0,0,13,4,5,1,493.5,742519.5,217550.11,370591.19,46143.328,0,0,5150.1777 +14789,18085,32223,32222,-9,-9,1,1,47,0,0,0,1,1,-9,0,5,9.5133715,9.0198917,0,10,-1,-26.414387,0,1,2,2021,9,1,48,47,1,1,0,20.122675,20.122675,.05,.05,.05,0,0,0,0,0,0,0,0,3.9491658,0,49.25,61.25,46.45,35.69,6.666666666666667,1,1,0,0,13,4,5,1,493.5,742519.5,217550.11,370591.19,46143.328,0,0,5150.1777 +14790,18086,32224,-9,32227,32226,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1048.9928,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32225,-9,32227,32226,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1105.8898,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32226,32227,-9,-9,1,1,37,0,3,0,1,1,-9,0,4,8.4356108,8.4071665,0,11,1,1.0481359,0,2,2,2021,10,0,42,42,1,0,0,11.732474,11.732474,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.72,49.75,8.333333333333334,1,1,0,0,11,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32227,32226,-9,-9,1,0,36,0,3,0,1,1,-9,0,4,7.4752817,7.2347345,0,11,-1,-11.908167,0,2,2,2021,8,1,13,17,1,1,0,19.085649,19.085649,0,0,0,0,0,0,0,0,1,1,0,0,0,56.72,49.75,57.16,56.15,8.333333333333334,1,1,0,0,10,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14790,18086,32228,-9,32227,32226,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-981.79736,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,4,1,446.79999,220942.5,153417.13,0,0,0,0,3118.5015 +14791,18087,32229,-9,-9,-9,1,0,36,0,1,0,2,2,-9,0,4,8.2254744,8.1594553,0,0,0,-1040.3069,0,3,-9,2021,9,0,45,46,1,0,0,10.760142,10.760142,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,-9,-9,8.333333333333334,1,1,0,0,11,5,3,0,858.5,92139.477,61667.391,0,0,15875.549,0,1232.7305 +14791,18087,32230,-9,32229,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1005.0773,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,10,1,1,0,0,0,5,3,0,858.5,92139.477,61667.391,0,0,15875.549,0,1232.7305 +14792,18088,32231,32232,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.4512281,8.3676939,43,4,8.4640684,0,3,2,2021,12,3,0,45,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1788969,8.5897131,54.86,47.5,57.06,57.76,8.333333333333334,1,1,0,0,5,11,4,1,1239.5,1692825,1557785.5,292252.41,0,0,0,4091.769 +14792,18088,32232,32231,-9,-9,1,0,61,0,0,0,2,2,-9,0,5,0,6.4779305,6.7976036,43,-4,-16.933435,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4452281,6.5889106,57.06,57.76,54.86,47.5,10,1,1,0,0,4,11,4,1,1239.5,1692825,1557785.5,292252.41,0,0,0,4091.769 +14793,18089,32233,32234,-9,-9,1,1,54,0,0,0,2,2,-9,1,2,6.707571,6.5135798,0,7,-8,21.720367,0,3,2,2021,12,0,25,24,1,0,0,3.3577943,3.3577943,0,0,0,0,0,0,0,42,1,1,0,0,0,41.58,52.86,33.27,27.15,6.666666666666667,1,1,0,0,8,12,2,1,1507.5,247490.8,174006.45,177635.2,0,0,0,669.96472 +14793,18089,32234,32233,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,7,8,-141.91109,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.27,27.15,41.58,52.86,6.666666666666667,1,1,0,0,0,12,2,1,1507.5,247490.8,174006.45,177635.2,0,0,0,669.96472 +14793,18090,32235,-9,32234,32233,1,1,38,0,0,0,1,1,-9,0,4,7.9842925,8.0082655,0,0,0,-978.72156,0,3,3,2021,30,11,46,40,1,11,1,7.4017019,7.4017019,.05,.05,0,0,0,0,0,2,1,1,0,0,0,32.49,48.42,-9,-9,3.333333333333333,1,1,0,0,8,12,3,1,203,162518.36,-29309.939,0,0,0,0,732.64404 +14793,18091,32236,-9,32234,32233,1,1,37,0,0,0,3,3,-9,1,2,0,0,0,0,0,-954.8833,0,3,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,75.2,21.12,-9,-9,10,1,1,0,0,0,12,1,1,791,177641.39,0,0,0,0,0,534.00024 +14793,18092,32237,-9,32234,32233,1,1,22,0,0,0,2,2,-9,0,3,8.1173782,8.1781759,0,0,0,-908.36346,0,3,3,2021,26,11,50,37,1,11,1,8.1629906,8.1629906,.05,.05,0,0,0,0,0,2,1,1,0,0,0,17.45,66.57000000000001,-9,-9,3.333333333333333,1,1,0,0,2,12,4,1,532,-20118.266,31509.395,0,0,0,0,1527.4027 +14794,18093,32238,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,2,7.6874866,8.2176676,0,0,0,-1031.8589,0,-9,-9,2021,29,9,37,43,1,9,0,6.7953238,6.7953238,0,0,0,0,0,0,0,0,1,0,1,4.8564086,0,23.56,34.28,-9,-9,5,1,1,0,1,3,9,3,0,769,-13201.605,0,0,0,0,0,1382.8115 +14795,18094,32239,32240,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,7.7158351,7.9782715,0,9,-2,-25.36875,0,2,2,2021,9,0,38,38,1,0,0,6.5868835,6.5868835,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.87,53.99,58.72,51.29,8.333333333333334,1,1,0,0,10,13,3,1,2996.5,305143.38,40628.102,77173.578,20105.709,0,485.73309,294.86374 +14795,18094,32240,32239,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,0,0,0,9,2,-43.947174,0,3,3,2021,10,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,58.72,51.29,55.87,53.99,8.333333333333334,1,1,1,0,9,13,3,1,2996.5,305143.38,40628.102,77173.578,20105.709,0,485.73309,294.86374 +14796,18095,32241,32242,-9,-9,1,0,61,0,0,0,2,2,-9,0,3,0,0,0,9,-7,0,0,3,2,2021,12,1,0,70,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.45,41.05,57.9,51.84,8.333333333333334,1,1,1,0,9,6,1,1,438.5,-44645.16,-17117.525,0,0,0,0,763.4071 +14796,18095,32242,32241,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,0,0,9,7,0,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.735682,0,57.9,51.84,60.45,41.05,8.333333333333334,1,1,0,0,6,6,1,1,438.5,-44645.16,-17117.525,0,0,0,0,763.4071 +14797,18096,32243,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,8.8317013,8.8424482,0,0,0,-901.47687,0,3,3,2021,12,0,50,50,1,0,0,19.402861,19.402861,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,1.666666666666667,1,1,0,0,14,6,5,1,542,2074176.1,1833770.4,233383.11,56642.953,0,0,2755.0974 +14797,18097,32244,-9,32243,-9,1,1,25,0,0,0,1,1,-9,0,4,0,6.1204529,6.3898401,0,0,-1038.0872,1,1,-9,2021,16,5,0,36,2,5,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6893277,0,43.44,58.7,-9,-9,6.666666666666667,4,2,0,0,8,6,2,1,2328,-87800.258,0,0,0,0,0,134.18413 +14797,18098,32245,-9,32243,-9,1,1,24,0,0,0,2,2,0,0,5,0,0,0,0,0,-1129.9478,-9,1,-9,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6270633,0,54.63,58.83,-9,-9,6.666666666666667,4,2,0,0,6,6,1,1,579,-35384.777,0,0,0,0,0,147.1304 +14797,18099,32246,-9,32243,-9,1,1,24,0,0,0,1,1,-9,0,5,5.9818997,6.1302772,0,0,0,-870.96649,0,1,-9,2021,6,0,12,36,1,0,1,3.6262612,3.6262612,0,0,0,0,0,0,0,0,0,0,0,0,0,58.62,52.91,-9,-9,10,4,2,0,0,7,6,2,1,235,21052.967,0,0,0,0,1240.8025,-135.91824 +14798,18100,32247,32248,-9,-9,1,0,29,1,2,0,1,1,-9,0,3,6.5438871,6.6060195,0,7,0,-1.8085003,0,1,2,2021,20,7,30,6,1,7,0,2.3107905,2.3107905,0,0,0,0,0,0,0,0,1,1,0,0,0,39.85,53.12,51.83,57.2,8.333333333333334,1,1,0,0,4,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14798,18100,32248,32247,-9,-9,1,1,29,1,2,0,1,1,-9,0,4,8.9595861,8.8358898,0,7,0,-2.9583554,0,2,2,2021,6,1,45,55,1,1,0,18.379591,18.379591,.05,.05,0,0,0,0,0,0,1,1,0,1.9201899,0,51.83,57.2,39.85,53.12,8.333333333333334,1,1,0,0,6,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14798,18100,32249,-9,32247,32248,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.698,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14798,18100,32250,-9,32247,32248,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-905.49609,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,12,4,1,856.75,169251.22,291539.28,0,0,368.14743,0,3277.2456 +14799,18101,32251,-9,-9,-9,1,1,51,0,0,0,1,1,-9,0,4,9.602951,9.5175543,0,0,0,-1022.7982,0,2,1,2021,7,0,48,50,1,0,0,37.118179,37.118179,0,0,0,0,0,0,0,0,1,1,0,6.788918,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,10,5,1,1607,652359.06,55571.672,722670.63,75276.125,0,0,9491.3145 +14800,18102,32252,-9,-9,-9,1,0,36,0,1,0,1,1,-9,0,3,7.0852265,7.3916101,5.0240889,0,0,-1038.5033,0,2,-9,2021,9,0,30,-9,1,0,0,5.3279738,5.3279738,0,0,0,0,0,0,0,0,1,1,0,5.0625443,0,42.95,54.48,-9,-9,6.666666666666667,1,1,0,0,10,11,3,1,544.5,114767.12,10646.969,0,0,0,0,926.04266 +14800,18102,32253,-9,32252,-9,1,0,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1039.8494,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,3,1,544.5,114767.12,10646.969,0,0,0,0,926.04266 +14800,18103,32254,-9,32252,-9,1,1,19,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1055.9543,-9,1,-9,2021,9,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.0831914,0,51.77,58.57,-9,-9,6.666666666666667,1,1,0,0,3,11,1,1,236,53075.504,0,0,0,0,0,-436.22012 +14801,18104,32255,-9,-9,-9,1,1,75,0,0,0,1,1,-9,0,4,0,7.9588623,7.9208064,0,0,-1118.5378,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0413876,7.8506861,55.43,48.59,-9,-9,8.333333333333334,2,3,0,0,5,8,3,1,1202,1141663.1,88207.375,542752.38,0,0,0,2357.3086 +14802,18105,32256,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,7.1195741,7.3063993,0,0,-951.27832,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,1.2903632,4.3515444,22.164488,0,1,1,0,5.7553215,7.1452708,52,45,-9,-9,8,1,1,0,0,0,9,3,1,3022,1203043.6,342658.16,284810.44,0,2848.6331,0,1494.3015 +14803,18106,32257,32258,-9,-9,1,0,54,0,0,0,3,3,-9,0,5,0,0,0,38,-3,29.303413,0,3,3,2021,14,4,0,21,3,4,0,0,0,0,0,0,0,0,0,0,14.5,0,0,0,2.6391394,0,40.35,58.72,58.27,40.85,8.333333333333334,1,1,1,0,8,10,5,1,322,2818895.5,1237344.3,804205.13,0,7120.0254,0,3049.4194 +14803,18106,32258,32257,-9,-9,1,1,57,0,0,0,1,1,-9,0,3,9.0178328,8.7765903,0,38,3,118.48627,0,3,3,2021,7,0,55,40,1,0,0,21.756641,21.756641,0,0,0,0,0,0,0,7,0,0,0,3.5739155,0,58.27,40.85,40.35,58.72,8.333333333333334,1,1,0,0,8,10,5,1,322,2818895.5,1237344.3,804205.13,0,7120.0254,0,3049.4194 +14804,18107,32259,32260,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,0,0,0,6,5,-144.3427,0,3,3,2021,34,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.01,22.64,52,54.51,1.666666666666667,1,1,0,0,0,2,5,1,469,75931.242,141295.77,99115.406,16518.389,0,0,4047.1548 +14804,18107,32260,32259,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,9.065711,9.3336134,0,6,-5,-75.645393,0,3,3,2021,6,0,50,60,1,0,0,18.171907,18.171907,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,19.01,22.64,8.333333333333334,1,1,0,0,7,2,5,1,469,75931.242,141295.77,99115.406,16518.389,0,0,4047.1548 +14805,18108,32261,32262,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,8.8455057,9.0204077,0,11,1,-44.864262,0,2,3,2021,14,5,42,43,1,5,0,20.692396,20.692396,0,0,0,0,0,0,0,0,0,0,0,8.1578579,0,45.91,59.89,54.37,54.8,8.333333333333334,1,1,0,0,13,11,5,1,830,414938.63,40376.371,42830.227,70145.531,27379.742,0,6659.5601 +14805,18108,32262,32261,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.3874283,8.8207188,0,11,-1,61.026657,0,2,2,2021,11,1,37,37,1,1,0,19.607527,19.607527,.05,.05,0,0,0,0,0,0,0,0,0,7.419827,0,54.37,54.8,45.91,59.89,8.333333333333334,1,1,0,0,13,11,5,1,830,414938.63,40376.371,42830.227,70145.531,27379.742,0,6659.5601 +14806,18109,32263,-9,-9,-9,1,0,53,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1133.5922,0,-9,-9,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.89,44.4,-9,-9,5,1,1,0,0,0,12,1,0,627,0,0,0,0,0,0,1757.3356 +14807,18110,32264,32265,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.3317342,7.1707225,57,3,-68.007973,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.0256577,54,46,52,46,8,1,1,0,0,0,11,2,1,1805,629207.88,312376.63,335375.19,0,0,0,1989.9045 +14807,18110,32265,32264,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.007236,6.375946,7,-3,-47.169506,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,8.2348557,0,0,1,1,0,0,6.3284059,52,46,54,46,8,1,1,0,0,0,11,2,1,1805,629207.88,312376.63,335375.19,0,0,0,1989.9045 +14807,18111,32266,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,4,8.1833153,7.9964409,0,0,0,-888.05603,0,-9,-9,2021,10,0,35,40,1,1,0,10.034098,10.034098,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,11,4,1,541,0,0,0,0,0,0,1285.6791 +14808,18112,32267,-9,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,0,0,0,0,-932.86951,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.11,27.71,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,2973,20709.5,0,0,0,0,0,1442.4338 +14809,18113,32268,-9,32269,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-969.43549,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,2,1,603.33331,181579,81029.492,0,0,0,0,2271.9055 +14809,18113,32269,-9,-9,-9,1,0,47,0,1,0,1,1,-9,1,3,0,5.6768966,5.8742366,0,0,-1162.8682,0,2,3,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.3371773,0,41.04,46.15,-9,-9,3.333333333333333,1,1,0,0,0,9,2,1,603.33331,181579,81029.492,0,0,0,0,2271.9055 +14809,18113,32270,-9,32269,-9,1,1,17,0,1,1,2,0,0,1,4,0,0,0,0,0,-1060.6661,-9,1,-9,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.61,46.82,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,603.33331,181579,81029.492,0,0,0,0,2271.9055 +14810,18114,32271,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,4,8.5497017,8.5511646,0,0,0,-978.11603,0,2,2,2021,11,1,41,42,1,1,0,16.194683,16.194683,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.11,56.11,-9,-9,6.666666666666667,1,1,0,0,13,10,5,1,851,-28169.375,68138.031,0,0,5757.5366,0,2468.9495 +14811,18115,32272,32273,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,6.6606221,6.8681135,46,-5,-80.615654,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,7,1,1,0,7.0772357,6.8849163,45.41,22.46,58.15,52.91,5,1,1,0,0,1,10,2,1,1494,1102565,-31647.887,551972,0,0,0,3053.7324 +14811,18115,32273,32272,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,7.0181732,6.836966,46,5,-124.40662,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,7.7340555,6.7058897,58.15,52.91,45.41,22.46,8.333333333333334,1,1,0,0,5,10,2,1,1494,1102565,-31647.887,551972,0,0,0,3053.7324 +14812,18116,32274,32275,-9,-9,1,1,76,0,0,0,3,3,-9,0,2,0,4.5436854,4.8734255,44,-6,1.4478421,0,-9,-9,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,5.0414042,36.87,37.37,37.34,31.49,8.333333333333334,1,1,0,0,0,4,2,0,664,-77648.617,0,28686.594,0,0,0,1518.5815 +14812,18116,32275,32274,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,44,6,-18.451548,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,37.34,31.49,36.87,37.37,3.333333333333333,1,1,0,0,0,4,2,0,664,-77648.617,0,28686.594,0,0,0,1518.5815 +14813,18117,32276,-9,-9,-9,1,1,53,0,0,0,1,1,-9,0,4,8.6782694,8.5593843,0,0,0,-846.3208,0,2,2,2021,12,2,23,23,1,2,0,24.00617,24.00617,.05,.05,0,0,0,0,0,0,1,1,0,2.1922109,0,45.56,60.26,-9,-9,8.333333333333334,1,1,0,0,10,8,5,1,4038,959795.88,435156.53,466362.66,0,0,0,1672.9252 +14814,18118,32277,-9,-9,-9,1,0,47,0,0,0,2,2,-9,1,1,0,0,0,0,0,-965.67316,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.86,37.53,-9,-9,0,1,1,0,1,0,13,1,0,2452,-39811.789,-66067.039,82318.086,0,0,0,492.46927 +14815,18119,32278,32279,-9,-9,1,0,70,0,0,0,3,3,-9,0,4,0,4.4155092,4.3736739,52,-3,87.712219,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9703199,4.6313128,57.16,56.15,55.36,51.57,0,1,1,0,0,0,4,2,1,443,106027.31,35482.52,151492.38,0,0,0,1248.7531 +14815,18119,32279,32278,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,52,3,-144.25906,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,57.16,56.15,8.333333333333334,1,1,0,0,0,4,2,1,443,106027.31,35482.52,151492.38,0,0,0,1248.7531 +14816,18120,32280,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1084.0342,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,6.1234565,0,0,1,1,0,.48931327,0,51,46,-9,-9,8,1,1,0,0,0,4,1,0,756,-36406.762,0,0,0,0,-1357.5719,1912.4642 +14817,18121,32281,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,3,0,5.5261793,5.1035523,0,0,-998.17877,0,3,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0040357,5.4257617,55.36,51.57,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,2647,265910.75,29244.162,0,0,0,0,952.29846 +14817,18122,32282,-9,-9,-9,1,1,25,0,0,0,2,2,-9,0,3,7.5861764,7.7686319,0,0,0,-947.43866,-9,-9,-9,2021,22,9,45,0,1,9,0,5.0835695,5.0835695,0,0,0,0,0,0,0,0,1,1,0,0,0,29.38,58.03,-9,-9,3.333333333333333,1,1,0,0,8,10,3,0,505,223535.31,0,0,0,0,0,1566.741 +14818,18123,32283,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.029355,7.9972181,0,0,0,-964.11731,0,-9,-9,2021,11,0,38,53,1,0,0,11.324984,11.324984,0,0,0,0,0,0,0,0,0,0,0,0,0,19.4,56.24,-9,-9,3.333333333333333,2,3,0,0,12,6,4,1,1082,125464.61,0,43887.055,0,0,1463.0054,907.2652 +14819,18124,32284,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,3,0,8.0883713,7.7288342,0,0,-925.9527,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4363356,7.6802692,54,46,-9,-9,8,1,1,0,0,0,7,3,1,4934,854122.38,171415.66,527377.38,0,0,0,2859.0786 +14820,18125,32285,-9,-9,-9,1,0,55,0,0,0,3,3,-9,1,1,0,0,0,0,0,-873.66376,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,26,-9,-9,0,1,1,0,0,0,6,2,0,202,-849.42578,0,0,0,0,0,1325.1184 +14821,18126,32286,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1015.1326,0,-9,-9,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,429,39220.148,0,0,0,1869.5061,-21.640867,952.48376 +14822,18127,32287,32288,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.8269935,7.5552945,0,42,-2,-3.6391225,0,3,2,2021,9,0,21,21,1,0,0,11.192526,11.192526,.05,.05,0,0,0,0,0,0,0,0,0,5.0992017,0,56.75,49.4,60.12,54.8,8.333333333333334,1,1,0,0,7,4,5,1,3681,879119.63,836428.13,184281.08,0,0,0,4467.1328 +14822,18127,32288,32287,-9,-9,1,1,60,0,0,0,1,1,-9,0,4,8.9006176,9.0587807,6.9837275,42,2,-125.16259,0,-9,3,2021,6,0,15,38,1,0,0,64.819443,64.819443,.05,.05,0,0,0,0,0,0,0,0,0,5.3652716,7.5658531,60.12,54.8,56.75,49.4,8.333333333333334,1,1,0,0,8,4,5,1,3681,879119.63,836428.13,184281.08,0,0,0,4467.1328 +14823,18128,32289,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,4.8596315,5.222733,0,0,-1013.3456,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6598372,5.0321965,60.12,54.8,-9,-9,10,1,1,0,0,0,12,2,1,880,-23185.725,55249.574,0,0,0,0,1328.5277 +14824,18129,32290,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,9.5007658,9.3348026,6.0530114,0,0,-937.37054,0,2,2,2021,16,4,60,70,1,4,0,19.241289,19.241289,.05,.05,0,0,0,0,0,0,0,0,0,6.3256893,6.2984281,46.78,35.78,-9,-9,3.333333333333333,1,1,0,0,12,9,5,1,2973,1193129.6,749338.44,534558.69,0,1240.6443,0,3621.4766 +14825,18130,32291,-9,32293,32292,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.168,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,6,2,1,665.66669,73776.234,75484.195,0,0,0,0,1725.4569 +14825,18130,32292,32293,-9,-9,1,1,44,0,2,0,2,2,-9,0,2,7.0426655,7.0660377,0,26,1,52.080418,-9,3,3,2021,17,5,24,0,1,5,0,5.0285969,5.0285969,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.43,39,54.96,53.17,3.333333333333333,2,3,0,0,6,6,2,1,665.66669,73776.234,75484.195,0,0,0,0,1725.4569 +14825,18130,32293,32292,-9,-9,1,0,43,0,2,0,3,3,-9,0,3,0,0,0,36,-1,-97.975143,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,36.43,39,8.333333333333334,2,3,0,0,0,6,2,1,665.66669,73776.234,75484.195,0,0,0,0,1725.4569 +14825,18131,32294,-9,32293,32292,1,0,20,0,2,0,2,2,-9,0,3,7.6745939,7.6327643,0,0,0,-736.60742,0,3,2,2021,12,1,60,60,1,1,1,2.9162378,2.9162378,0,0,0,0,0,0,0,0,1,1,0,.72299862,0,53.14,51.28,-9,-9,1.666666666666667,2,3,0,0,1,6,3,1,623,-91796.695,-1531.8364,0,0,1900.2267,3761.0566,906.06305 +14825,18132,32295,-9,32293,32292,1,0,19,0,2,0,2,2,-9,0,2,6.1823792,6.1913939,0,0,0,-1002.6281,-9,3,2,2021,6,0,24,0,1,0,1,1.7426521,1.7426521,0,0,0,0,0,0,0,0,1,1,0,0,0,60.3,36.05,-9,-9,8.333333333333334,2,3,0,0,1,6,2,1,472,7963.7437,0,174023.39,115146.91,16924.371,0,738.03131 +14826,18133,32296,32297,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,8.4761868,8.8708429,6.9436202,7,5,-101.7309,0,-9,-9,2021,9,0,42,48,1,0,0,16.06222,16.06222,.05,.05,0,0,0,0,0,0,0,0,0,1.2447786,7.5297542,57.33,53.46,54.96,53.17,8.333333333333334,1,1,0,0,8,11,5,1,329,361109,155704.13,122010.59,57317.664,0,7478.8369,4293.8789 +14826,18133,32297,32296,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.2711535,8.0531969,5.0173607,7,-5,26.744715,0,2,-9,2021,12,0,30,30,1,0,0,9.9999619,9.9999619,.05,.05,0,0,0,0,0,0,0,0,0,0,5.0910649,54.96,53.17,57.33,53.46,6.666666666666667,1,1,0,0,12,11,5,1,329,361109,155704.13,122010.59,57317.664,0,7478.8369,4293.8789 +14827,18134,32298,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,9.1097631,9.4869499,0,0,0,-973.18011,0,1,1,2021,11,0,38,39,1,0,0,27.32935,27.32935,.05,.05,0,0,0,0,0,0,0,0,0,2.6881528,0,37.17,52.5,-9,-9,5,1,1,0,0,10,8,5,1,2528,247241.19,67847.141,0,0,69.979332,493.98221,3888.9131 +14828,18135,32299,-9,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,9.1349392,9.2192287,0,0,0,-1041.5333,0,2,2,2021,12,0,60,60,1,0,0,18.99667,18.99667,.05,.05,0,0,0,0,0,0,1,1,0,2.344959,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,10,4,5,1,718,1456567.9,1082262.8,270733.69,0,0,0,3581.1628 +14829,18136,32300,-9,-9,-9,1,1,72,0,1,0,2,2,-9,0,2,0,7.2715945,7.2446437,0,0,-1077.7856,0,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,7.2685714,39.41,35.87,-9,-9,0,1,1,0,1,0,9,2,0,272,438442.84,173018.2,214098.58,9184.2109,0,0,1173.0244 +14830,18137,32301,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,4,0,0,0,0,0,-1081.4012,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,11,1,1,565,-17263.574,0,0,0,0,3432.8403,293.03583 +14831,18138,32302,-9,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.8266993,5.6464648,0,0,-884.10388,0,3,2,2021,25,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7489038,17.81,49.93,-9,-9,6.666666666666667,1,1,0,1,0,10,2,0,986,160329.53,49159.793,0,0,0,0,856.53455 +14832,18139,32303,32305,-9,-9,1,0,57,0,1,0,1,1,-9,0,5,8.5067358,8.7185259,0,9,3,13.840179,0,2,2,2021,9,0,35,35,1,0,0,16.604506,16.604506,.05,.05,0,0,0,0,0,0,1,1,0,.24062589,0,54.1,59.11,39.38,60.5,6.666666666666667,1,1,0,0,6,12,5,1,651.33331,543902.63,330990.66,373356.41,73454.313,0,0,5373.4619 +14832,18139,32304,-9,32303,32305,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.6804,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,59,-9,-9,7,1,1,-9,0,0,12,5,1,651.33331,543902.63,330990.66,373356.41,73454.313,0,0,5373.4619 +14832,18139,32305,32303,-9,-9,1,1,54,0,1,0,1,1,-9,0,5,9.0630207,9.1198959,0,9,-3,102.41412,0,3,1,2021,13,3,46,45,1,3,0,21.004784,21.004784,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.38,60.5,54.1,59.11,8.333333333333334,1,1,0,0,10,12,5,1,651.33331,543902.63,330990.66,373356.41,73454.313,0,0,5373.4619 +14832,18140,32306,-9,32303,32305,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1016.9772,-9,1,1,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.59786195,0,41.06,62.04,-9,-9,8.333333333333334,1,1,0,0,1,12,1,1,646,-24940.596,0,0,0,0,0,180.16252 +14833,18141,32307,-9,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,8.4924393,8.9387236,0,0,0,-942.41058,0,2,2,2021,11,0,37,41,1,0,0,19.372089,19.372089,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.52,53.3,-9,-9,5,1,1,0,0,10,10,5,1,906,659083,135871.92,538290.44,108562.27,10003.117,0,1913.7581 +14834,18142,32308,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,9.0448093,8.8563147,0,0,0,-1066.0676,0,2,1,2021,6,0,39,40,1,0,0,16.784254,16.784254,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,10,8,5,1,2538,-126119.27,-53268.117,0,0,0,450.94174,1991.0314 +14835,18143,32309,-9,32310,32311,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-968.28821,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14835,18143,32310,32311,-9,-9,1,0,40,0,2,0,1,1,-9,0,4,7.1809707,7.2968998,0,11,-1,3.8441961,0,1,1,2021,7,0,30,30,1,0,0,4.8795328,4.8795328,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,32.08,47.89,8.333333333333334,1,1,0,0,12,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14835,18143,32311,32310,-9,-9,1,1,41,0,2,0,1,1,-9,0,2,8.6938467,9.0030518,0,11,1,24.237112,0,2,2,2021,11,1,40,29,1,1,0,19.024645,19.024645,.05,.05,0,0,0,0,0,0,1,1,0,5.6812873,0,32.08,47.89,54.2,57.49,6.666666666666667,1,1,0,0,12,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14835,18143,32312,-9,32310,32311,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1093.397,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,1382.75,375343.34,104262.2,406233.34,147391.64,0,0,2954.3186 +14836,18144,32313,-9,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,0,0,0,0,-957.8916,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.8512549,0,52,45,-9,-9,8,1,1,0,0,5,4,1,1,380,-11298.181,0,0,0,0,0,878.7608 +14837,18145,32314,32315,-9,-9,1,0,64,0,0,0,1,1,-9,0,3,0,0,0,10,-8,42.656982,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9961925,0,59.07,43.05,48.95,43.28,8.333333333333334,1,1,0,0,2,13,2,0,528,306165.72,34242.043,244929.91,23714.822,0,0,1414.251 +14837,18145,32315,32314,-9,-9,1,1,72,0,0,0,2,2,-9,0,4,0,4.8368087,4.9699597,10,8,90.696724,-9,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.8038397,48.95,43.28,59.07,43.05,8.333333333333334,1,1,0,1,0,13,2,0,528,306165.72,34242.043,244929.91,23714.822,0,0,1414.251 +14838,18146,32316,-9,-9,-9,1,1,56,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1044.4535,0,3,-9,2021,25,11,0,0,3,11,0,0,0,0,0,0,0,0,0,6.3946524,0,1,0,1,0,0,36.02,22.8,-9,-9,0,4,2,1,1,0,9,1,0,1197,-112648.02,0,0,0,0,0,220.58669 +14839,18147,32317,32318,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,8.2179804,8.2900629,48,-1,-124.50262,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6317739,8.1678038,58.32,50.22,41.13,37.19,10,2,3,0,0,0,9,5,1,617.5,2768205.5,617072.19,1069650.3,0,0,0,5343.8115 +14839,18147,32318,32317,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,8.1923676,8.4383173,48,1,70.728897,0,2,2,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6734462,8.4038162,41.13,37.19,58.32,50.22,8.333333333333334,2,3,0,0,2,9,5,1,617.5,2768205.5,617072.19,1069650.3,0,0,0,5343.8115 +14840,18148,32319,32320,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.179297,7.1803765,4.6963072,7,-2,90.653214,0,3,3,2021,12,0,26,26,1,0,0,5.5256171,5.5256171,0,0,0,0,0,0,0,7,0,0,0,2.6565263,4.4889159,55.71,40.47,56.11,44.4,8.333333333333334,1,1,0,0,8,5,5,1,312,20645.539,25986.982,182344.09,62979.156,0,0,2510.4897 +14840,18148,32320,32319,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.8527184,8.8885632,5.0390978,7,2,33.723171,0,3,3,2021,7,0,43,44,1,0,0,17.565533,17.565533,.05,.05,0,0,0,0,0,2,0,0,0,5.6178417,5.1106648,56.11,44.4,55.71,40.47,8.333333333333334,1,1,0,0,8,5,5,1,312,20645.539,25986.982,182344.09,62979.156,0,0,2510.4897 +14841,18149,32321,-9,-9,-9,1,1,81,0,0,0,2,2,-9,0,2,0,6.3996477,6.3519979,0,0,-889.78308,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.506865,39.54,48.59,-9,-9,1.666666666666667,1,1,0,0,0,6,2,0,4319,195241.52,91189.117,212674.2,0,0,0,1430.5616 +14842,18150,32322,32323,-9,-9,1,0,56,0,0,0,1,1,-9,0,4,5.8652554,5.9090972,0,8,-2,-31.977806,0,1,1,2021,7,0,5,7,1,0,0,9.9392147,9.9392147,0,0,0,0,0,0,0,2,0,0,0,0,0,60.84,47.65,63.26,42.53,8.333333333333334,2,3,0,0,10,8,4,1,1302,248542.84,87886.484,287835.81,34622.504,11871.194,14233.131,2306.5256 +14842,18150,32323,32322,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,8.3894672,8.264411,0,35,2,50.55217,0,2,1,2021,8,0,40,45,1,0,0,12.6319,12.6319,0,0,.05,0,0,0,0,7,0,0,0,6.3291688,0,63.26,42.53,60.84,47.65,8.333333333333334,2,3,0,0,10,8,4,1,1302,248542.84,87886.484,287835.81,34622.504,11871.194,14233.131,2306.5256 +14842,18151,32324,-9,32322,32323,1,1,26,0,0,0,1,1,1,0,4,8.2351704,8.8366814,0,0,0,-993.6532,-9,1,1,2021,6,0,40,0,1,0,1,14.082928,14.082928,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,8.333333333333334,2,3,0,0,1,8,5,1,1492,16876.605,127286.88,0,0,0,0,1062.8241 +14843,18152,32325,32326,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,9.031044,9.1786709,0,13,0,30.611008,0,2,2,2021,14,3,45,45,1,3,0,26.277512,26.277512,.05,.05,0,0,0,0,0,0,0,0,0,4.6280813,0,41.98,51.26,55.19,54.26,5,2,3,0,0,6,8,5,1,1268.5,310117.19,36312.188,218735.11,202608.25,16331.921,0,7750.7031 +14843,18152,32326,32325,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.6848745,8.8194895,0,8,0,-22.595655,0,-9,-9,2021,11,1,43,42,1,1,0,16.796614,16.796614,.05,.05,0,0,0,0,0,0,0,0,0,8.4707794,0,55.19,54.26,41.98,51.26,5,2,3,0,0,4,8,5,1,1268.5,310117.19,36312.188,218735.11,202608.25,16331.921,0,7750.7031 +14844,18153,32327,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.6378317,6.787075,0,0,-960.57666,0,2,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,5.3254919,0,0,1,1,0,3.5991201,6.612205,47.26,52.47,-9,-9,5,1,1,0,0,0,5,2,0,405,171035.2,136931.52,157980.39,0,0,0,2073.5811 +14845,18154,32328,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.6023502,8.6798401,0,0,0,-942.91077,0,2,3,2021,8,0,38,37,1,0,0,18.969501,18.969501,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,4,5,1,370,284891.22,251435.17,238103.03,174621.41,0,2608.1445,1213.2091 +14846,18155,32329,-9,32330,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1174.6804,-9,2,-9,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,759.5,142368.69,0,153219.83,0,0,0,1644.2275 +14846,18155,32330,-9,-9,-9,1,0,36,1,1,0,2,2,-9,0,2,0,5.7151775,5.7856011,0,0,-914.89758,0,2,-9,2021,8,2,0,48,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4493747,0,52.64,38.41,-9,-9,6.666666666666667,1,1,0,0,8,13,2,1,759.5,142368.69,0,153219.83,0,0,0,1644.2275 +14847,18156,32331,32332,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,9.1880369,9.1012268,6.1322331,11,0,137.04988,0,3,3,2021,6,0,30,30,1,0,0,35.863815,35.863815,0,0,0,0,0,0,0,0,1,1,0,5.981091,6.3299246,64.23999999999999,44.83,62.26,42.8,10,1,1,0,0,12,9,5,1,1715,4388537.5,1737940,1013602.9,0,0,0,6298.4707 +14847,18156,32332,32331,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.7769461,7.0700536,11,0,3.6315734,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.4877839,6.8612552,62.26,42.8,64.23999999999999,44.83,10,1,1,0,0,3,9,5,1,1715,4388537.5,1737940,1013602.9,0,0,0,6298.4707 +14848,18157,32333,32335,-9,-9,1,1,29,0,2,0,2,2,-9,0,4,8.3157816,8.0809765,0,8,-2,-23.426521,0,2,1,2021,10,0,50,44,1,1,0,7.2760673,7.2760673,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49,58,54.37,54.8,7,1,1,0,0,1,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14848,18157,32334,-9,32335,32333,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1058.5439,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14848,18157,32335,32333,-9,-9,1,0,31,0,2,0,2,2,-9,1,3,7.3539987,7.2248001,0,8,2,-117.51228,0,2,2,2021,7,0,48,0,1,0,0,3.2782965,3.2782965,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,49,58,8.333333333333334,1,1,0,0,1,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14848,18157,32336,-9,32335,32333,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.1271,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,11,3,1,1314.25,422453.06,-15593.733,258379.73,210744.41,0,1485.3905,2934.7346 +14849,18158,32337,-9,32340,32339,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-949.63574,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18158,32338,-9,32340,32339,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.59174,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18158,32339,32340,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,7.7836852,7.8194718,0,10,-1,115.62536,0,-9,-9,2021,9,0,80,0,1,0,0,4.5532675,4.5532675,0,0,0,0,0,0,0,0,1,1,0,0,0,56.89,50.73,54.55,34.44,3.333333333333333,1,1,0,0,4,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18158,32340,32339,-9,-9,1,0,40,0,2,0,2,2,-9,0,2,0,0,0,10,1,22.093544,0,2,1,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.55,34.44,56.89,50.73,8.333333333333334,1,1,0,0,0,2,2,0,608.25,-50259.801,0,0,0,0,0,1991.8805 +14849,18159,32341,-9,32340,32339,1,1,19,0,2,0,2,2,-9,0,4,3.5457308,3.7651258,0,0,0,-1041.9091,-9,2,2,2021,11,0,2,0,1,2,1,2.0289576,2.0289576,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,0,0,2,2,2,0,558,166091.58,0,0,0,0,0,11.068087 +14849,18160,32342,-9,32340,32339,1,0,18,0,2,0,2,2,-9,0,4,0,0,0,0,0,-1055.7839,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.1,42.32,-9,-9,5,1,1,0,0,0,2,1,0,461,0,0,0,0,0,0,-986.18854 +14850,18161,32343,32344,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.6833944,7.773582,0,11,-5,86.797058,0,-9,3,2021,12,3,30,43,1,3,0,8.200201,8.200201,0,0,0,0,0,0,0,0,0,0,0,0,0,43.18,55.57,52.77,37.94,8.333333333333334,1,1,0,0,11,5,4,0,786,369339.63,240275.78,132657.08,0,0,0,2114.6221 +14850,18161,32344,32343,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.793241,7.9449296,6.8094487,11,5,-16.131094,0,3,3,2021,7,0,42,40,1,0,0,7.2626996,7.2626996,.05,.05,0,0,0,0,0,0,0,0,0,5.8819904,7.2430086,52.77,37.94,43.18,55.57,8.333333333333334,1,1,0,0,10,5,4,0,786,369339.63,240275.78,132657.08,0,0,0,2114.6221 +14851,18162,32345,32346,-9,-9,1,0,43,0,0,0,1,1,-9,0,4,8.3206978,8.3490591,0,6,-2,25.520555,0,2,2,2021,22,10,53,51,1,10,0,11.340093,11.340093,.05,.05,0,0,0,0,0,0,1,1,0,2.296597,0,35.91,63.19,55.34,54.6,3.333333333333333,1,1,0,0,7,6,5,1,418,713800.25,598943.13,181508.63,338715.34,0,0,4436.4424 +14851,18162,32346,32345,-9,-9,1,1,45,0,0,0,2,2,-9,0,5,8.7711897,8.8263884,0,6,2,52.787399,0,-9,-9,2021,9,1,40,40,1,1,0,21.800097,21.800097,.05,.05,0,0,0,0,0,0,1,1,0,3.9858143,0,55.34,54.6,35.91,63.19,8.333333333333334,1,1,0,0,7,6,5,1,418,713800.25,598943.13,181508.63,338715.34,0,0,4436.4424 +14851,18163,32347,-9,32345,32346,1,1,18,0,0,0,2,2,1,0,5,5.7367725,5.500895,0,0,0,-1043.8479,-9,1,2,2021,8,0,6,0,1,0,1,4.821527,4.821527,0,0,0,0,0,0,0,0,1,1,0,1.2928729,0,57.06,57.76,-9,-9,10,1,1,0,0,1,6,2,1,786,-37495.438,0,0,0,0,0,272.55347 +14852,18164,32348,32349,-9,-9,1,0,74,0,0,0,2,2,-9,0,1,0,0,0,12,2,57.146561,0,2,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,65.447243,0,0,1,1,0,2.6501629,0,35.7,23.15,42.85,60.33,5,1,1,0,0,0,2,2,1,333.5,883762.25,446968.94,169758.13,0,0,5091.9751,2650.1333 +14852,18164,32349,32348,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.3379545,7.3614926,12,-2,-134.97638,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.4359789,7.3093591,42.85,60.33,35.7,23.15,6.666666666666667,1,1,0,0,0,2,2,1,333.5,883762.25,446968.94,169758.13,0,0,5091.9751,2650.1333 +14853,18165,32350,-9,-9,-9,1,0,81,0,0,0,1,1,-9,0,2,0,8.0815105,7.7309647,0,0,-791.23602,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.5478144,7.2957559,55.84,25.86,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,100,215651.05,-18665.006,246929.16,0,0,0,2038.9865 +14854,18166,32351,32352,-9,-9,1,1,59,0,1,0,3,3,-9,0,4,7.0768957,7.1916738,0,43,-2,31.029869,0,3,3,2021,8,0,37,30,1,0,0,4.1160712,4.1160712,0,0,.05,0,0,0,0,0,1,1,0,0,0,54.79,55.86,50.46,41.51,8.333333333333334,2,3,0,0,6,2,2,1,613.5,-160837.78,73805.594,83381.305,54512.945,0,-313.37943,572.8916 +14854,18166,32352,32351,-9,-9,1,0,61,0,1,0,2,2,-9,0,3,0,0,0,43,2,42.163715,0,3,3,2021,9,1,0,16,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,41.51,54.79,55.86,1.666666666666667,2,3,0,0,4,2,2,1,613.5,-160837.78,73805.594,83381.305,54512.945,0,-313.37943,572.8916 +14854,18167,32353,-9,-9,32354,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-898.62518,-9,-9,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,4,1,606,71001.117,17376.57,0,0,0,0,950.19537 +14854,18167,32354,-9,32352,32351,1,1,40,0,1,0,2,2,-9,0,4,7.843452,7.8602343,0,0,0,-933.17206,0,2,3,2021,11,0,42,40,1,0,1,7.4302816,7.4302816,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.19,51.55,-9,-9,8.333333333333334,1,1,0,0,1,2,4,1,606,71001.117,17376.57,0,0,0,0,950.19537 +14855,18168,32355,32356,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.6265726,8.4910088,0,3,2,-62.985092,0,1,1,2021,12,0,40,38,1,0,0,15.648619,15.648619,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.59,60.85,38.88,61.85,8.333333333333334,1,1,0,0,8,12,5,1,752,126922.83,16465.566,293406,330998.53,0,0,3956.1616 +14855,18168,32356,32355,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.6204071,8.9688349,0,3,-2,-48.486481,0,-9,-9,2021,12,1,40,40,1,1,0,20.530306,20.530306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.88,61.85,38.59,60.85,8.333333333333334,1,1,0,0,5,12,5,1,752,126922.83,16465.566,293406,330998.53,0,0,3956.1616 +14856,18169,32357,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.2002978,5.0171685,0,0,-942.3172,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.824017,46.48,55.6,-9,-9,10,1,1,0,0,8,9,2,1,981,606655.19,160516.67,283742.41,0,4894.7314,0,235.40135 +14857,18170,32358,-9,-9,-9,1,1,42,0,0,0,1,1,-9,0,4,9.4861546,9.5563211,0,0,0,-1005.3674,0,3,2,2021,5,1,45,45,1,1,0,34.530876,34.530876,0,0,0,0,0,0,0,0,0,0,0,3.1738391,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,7,2,5,0,91,-5348.5718,0,0,0,0,0,2696.9211 +14858,18171,32359,32360,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,6.4921284,6.3620014,6,7,-24.545517,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.166955,6.0591145,56.33,51.02,56.45,41.66,8.333333333333334,1,1,0,0,5,12,3,1,645,1086879.6,508958.69,414826.88,0,0,0,519.34509 +14858,18171,32360,32359,-9,-9,1,0,57,0,0,0,2,2,-9,0,3,7.3820357,7.3175545,0,6,-7,43.023045,0,3,3,2021,11,0,30,35,1,0,0,5.6367202,5.6367202,0,0,0,0,0,0,0,0,0,0,0,0,0,56.45,41.66,56.33,51.02,8.333333333333334,1,1,0,0,7,12,3,1,645,1086879.6,508958.69,414826.88,0,0,0,519.34509 +14858,18172,32361,-9,32360,32359,1,1,23,0,0,1,2,0,0,0,2,0,0,0,0,0,-983.48035,-9,2,2,2021,20,8,0,0,2,8,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.61,47,-9,-9,3.333333333333333,1,1,0,0,0,12,1,1,1265,-67477.867,0,0,0,0,0,0 +14859,18173,32362,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1052.386,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.85,34.03,-9,-9,8.333333333333334,1,1,0,0,0,2,1,0,821,-130235.52,0,0,0,-905.28162,0,1214.3088 +14860,18174,32363,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,5,0,5.6372013,5.7107258,0,0,-1001.8008,-9,-9,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.6484427,0,57.39,45.42,-9,-9,10,3,4,0,0,0,4,2,0,142,45684.949,0,0,0,0,0,356.7934 +14860,18175,32364,-9,-9,-9,1,0,18,0,0,1,2,0,0,0,4,0,5.6984692,5.7968655,0,0,-841.37268,-9,-9,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0950589,0,47.66,53.55,-9,-9,8.333333333333334,3,4,0,0,0,4,2,0,377,25141.035,0,0,0,0,0,-160.43518 +14861,18176,32365,32366,-9,-9,1,1,68,0,0,0,1,1,-9,0,2,0,0,0,45,1,0,0,3,1,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,15.280666,0,0,1,1,0,8.0832491,0,45.34,40.41,41.45,60.44,6.666666666666667,1,1,0,0,0,6,1,1,609,261220.69,194789.78,55429.758,0,20255.865,0,3190.0459 +14861,18176,32366,32365,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,47,-1,0,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5487995,0,41.45,60.44,45.34,40.41,6.666666666666667,1,1,0,0,1,6,1,1,609,261220.69,194789.78,55429.758,0,20255.865,0,3190.0459 +14862,18177,32367,32369,-9,-9,1,1,29,0,1,0,2,2,-9,1,2,0,0,0,6,1,-2.3565283,0,-9,-9,2021,15,5,0,0,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.74,25.67,40.58,60.95,3.333333333333333,1,1,0,1,6,1,3,0,722.66669,78739.023,72187.664,116407.44,37906.238,2818.4614,0,2877.7908 +14862,18177,32368,-9,32369,32367,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-890.0899,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,3,0,722.66669,78739.023,72187.664,116407.44,37906.238,2818.4614,0,2877.7908 +14862,18177,32369,32367,-9,-9,1,0,28,0,1,0,1,1,-9,0,4,7.857801,7.581039,0,6,-1,106.74397,0,2,-9,2021,11,2,40,30,1,2,0,8.2074022,8.2074022,0,0,0,0,0,0,0,27,1,1,0,0,0,40.58,60.95,50.74,25.67,5,1,1,0,1,10,1,3,0,722.66669,78739.023,72187.664,116407.44,37906.238,2818.4614,0,2877.7908 +14863,18178,32370,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,4,0,7.9251037,7.5390401,0,0,-943.88464,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3425121,60.12,54.8,-9,-9,10,1,1,0,0,0,7,4,1,308,781420.5,260658.69,217078.53,0,0,0,2402.2258 +14864,18179,32371,32372,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,5.890871,5.9826384,12,-3,21.722231,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2853744,5.9191966,55.48,44.52,44.07,39.47,8.333333333333334,1,1,0,0,0,4,2,1,949,402321.66,125842.98,132721.94,0,0,-546.41559,1569.1617 +14864,18179,32372,32371,-9,-9,1,1,77,0,0,0,3,3,-9,0,2,0,4.746799,4.9989924,53,3,129.38264,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5719974,4.6659293,44.07,39.47,55.48,44.52,6.666666666666667,1,1,0,0,0,4,2,1,949,402321.66,125842.98,132721.94,0,0,-546.41559,1569.1617 +14865,18180,32373,32378,-9,-9,1,1,36,0,4,0,2,2,-9,0,4,7.7354856,8.033884,0,8,2,54.435905,0,-9,-9,2021,7,0,39,39,1,0,0,9.9886894,9.9886894,0,0,0,0,0,0,0,0,1,0,1,0,0,47.33,53.7,57.16,56.15,10,1,1,0,0,10,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32374,-9,32378,32373,1,0,13,0,4,1,3,0,-9,0,5,0,0,0,0,0,-1007.6869,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,47,61,-9,-9,7,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32375,-9,32378,32373,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1041.0951,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32376,-9,32378,32373,1,1,11,0,4,1,3,0,-9,0,3,0,0,0,0,0,-985.83972,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,55,-9,-9,6,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32377,-9,32378,32373,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-998.82764,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14865,18180,32378,32373,-9,-9,1,0,34,0,4,0,2,2,-9,0,4,6.076261,6.0996561,0,8,-2,-177.78224,0,2,2,2021,7,0,18,8,1,0,0,2.3725412,2.3725412,0,0,0,0,0,0,0,0,1,0,1,5.0728717,0,57.16,56.15,47.33,53.7,5,1,1,0,0,2,12,2,1,1109.6666,-22984.971,25660.404,0,0,3905.2012,0,1908.6506 +14866,18181,32379,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1065.6445,0,3,2,2021,12,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,-9,-9,7,1,1,0,1,1,13,2,0,410,54843.531,-79969.43,0,0,0,-439.6207,1239.9213 +14866,18182,32380,-9,-9,-9,1,1,41,0,0,0,3,3,-9,0,3,8.3051338,8.4747257,0,0,0,-1089.7574,0,3,2,2021,8,0,40,40,1,0,0,8.3890572,8.3890572,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.65,55.59,-9,-9,6.666666666666667,1,1,0,0,8,13,4,0,1848,46956.168,167665.47,166223.42,0,0,3558.6643,1713.0657 +14866,18183,32381,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,4,7.7766013,7.6242547,0,0,0,-911.35284,0,-9,-9,2021,10,0,40,40,1,1,0,6.1379743,6.1379743,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,6,13,3,0,694,-31879.094,-9038.5088,0,0,0,493.29636,1879.639 +14866,18184,32382,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,4,8.2110205,8.3827887,0,0,0,-1166.1124,0,-9,-9,2021,10,0,45,40,1,1,0,11.126747,11.126747,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,-9,-9,7,1,1,0,0,11,13,5,0,455,115625.84,-93895.742,171489.83,112912.7,0,11249.895,1783.1654 +14867,18185,32383,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,5,8.482296,8.7637491,0,0,0,-1046.342,0,1,1,2021,16,5,53,40,1,5,0,11.794997,11.794997,.05,.05,0,0,0,0,0,0,0,0,0,0,0,29.96,54.15,-9,-9,5,3,4,0,0,5,8,5,0,914,129944.47,136984.7,0,0,14485.795,0,3255.0415 +14868,18186,32384,32386,-9,-9,1,1,49,0,1,0,2,2,-9,0,2,8.9012108,8.861042,0,24,-1,128.66795,0,-9,2,2021,14,2,50,45,1,2,0,13.866552,13.866552,0,0,0,0,0,0,0,0,1,1,0,0,0,31.15,49.43,52.69,48.71,1.666666666666667,1,1,0,0,12,7,5,1,1582.6666,67828.18,9975.6396,0,0,4323.0249,3666.5251,4745.2944 +14868,18186,32385,-9,32386,32384,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1051.8958,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,7,5,1,1582.6666,67828.18,9975.6396,0,0,4323.0249,3666.5251,4745.2944 +14868,18186,32386,32384,-9,-9,1,0,50,0,1,0,1,1,-9,0,3,8.3188763,8.7000122,0,24,1,-42.396545,0,-9,2,2021,7,0,30,30,1,0,0,17.56426,17.56426,0,0,0,0,0,0,0,0,1,1,0,1.3165456,0,52.69,48.71,31.15,49.43,6.666666666666667,1,1,0,0,9,7,5,1,1582.6666,67828.18,9975.6396,0,0,4323.0249,3666.5251,4745.2944 +14868,18187,32387,-9,32386,32384,1,1,18,0,1,0,2,2,-9,0,2,7.4186516,7.8568063,0,0,0,-994.85974,0,1,2,2021,8,0,45,0,1,0,1,4.4300966,4.4300966,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.31,36.43,-9,-9,5,1,1,0,0,4,7,3,1,667,131139.38,-142978.63,0,0,0,0,1207.1144 +14869,18188,32388,32389,-9,-9,1,0,46,0,0,0,1,1,-9,0,4,8.8840551,9.2582617,0,11,-13,-63.480431,0,1,2,2021,6,1,65,43,1,1,0,14.426595,14.426595,0,0,0,0,0,0,0,2,0,0,0,0,0,58.72,51.29,59.43,58.05,8.333333333333334,4,2,0,0,8,8,5,1,448.5,3171641.5,567411,528995.5,0,0,0,6436.7178 +14869,18188,32389,32388,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,8.7754402,9.3448038,8.125679,11,13,-108.77536,0,-9,-9,2021,5,0,37,35,1,0,0,20.026129,20.026129,0,0,0,0,0,0,3.0658875,0,0,0,0,0,8.9585791,59.43,58.05,58.72,51.29,8.333333333333334,1,1,0,0,6,8,5,1,448.5,3171641.5,567411,528995.5,0,0,0,6436.7178 +14869,18189,32390,-9,32388,32389,1,1,22,0,0,0,2,2,1,0,4,5.683712,5.347528,0,0,0,-1075.6504,-9,1,1,2021,10,0,20,0,1,1,1,1.4247435,1.4247435,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,3,4,0,0,1,8,2,1,730,96049.516,0,0,0,0,0,-288.12253 +14869,18190,32391,-9,32388,32389,1,1,20,0,0,0,2,2,1,0,4,0,0,0,0,0,-967.8891,-9,1,1,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,4,2,1,0,0,8,1,1,409,0,0,0,0,0,0,0 +14870,18191,32392,32393,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.3229709,7.6464238,0,8,-2,39.953587,0,-9,-9,2021,12,0,24,26,1,0,0,6.5881181,6.5881181,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.46,52.14,57.09,46.7,5,1,1,0,0,8,1,4,1,622.5,120157.95,86753.609,0,0,0,0,1982.1099 +14870,18191,32393,32392,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,7.9572392,8.0449438,0,8,2,-44.517872,0,2,2,2021,6,0,39,39,1,0,0,9.3506403,9.3506403,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.09,46.7,42.46,52.14,8.333333333333334,1,1,0,0,8,1,4,1,622.5,120157.95,86753.609,0,0,0,0,1982.1099 +14870,18192,32394,-9,32392,32393,1,1,19,0,0,0,2,2,-9,0,2,0,0,0,0,0,-936.14832,1,2,2,2021,19,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.74295992,0,39.28,55.39,-9,-9,3.333333333333333,1,1,0,0,3,1,1,1,555,28007.986,0,0,0,0,0,229.03413 +14871,18193,32395,32396,-9,-9,1,1,42,0,2,0,1,1,-9,0,4,8.572258,8.6746416,0,16,3,76.99704,0,-9,-9,2021,9,0,40,40,1,0,0,19.134323,19.134323,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.48,54.94,46.92,44.25,6.666666666666667,3,4,0,0,10,7,4,0,909,-33376.809,-914.51172,0,0,0,4877.4404,3198.48 +14871,18193,32396,32395,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,6.9122176,6.8262992,0,18,-3,-67.204948,0,2,2,2021,4,0,30,30,1,0,0,5.1506534,5.1506534,0,0,0,0,0,0,0,0,1,1,0,0,0,46.92,44.25,45.48,54.94,6.666666666666667,3,4,0,0,5,7,4,0,909,-33376.809,-914.51172,0,0,0,4877.4404,3198.48 +14872,18194,32397,-9,-9,-9,1,0,88,1,3,0,2,2,-9,0,1,0,0,0,0,0,-1056.4677,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,5.0657644,0,0,1,1,0,0,0,48.65,18.5,-9,-9,8.333333333333334,2,3,0,0,0,8,1,0,766,16884.684,0,0,0,0,0,1685.9573 +14872,18195,32398,32399,-9,-9,1,0,32,1,3,0,2,2,-9,1,4,0,0,0,2,-4,8.6923542,0,-9,-9,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.25,52.88,58.47,50.22,6.666666666666667,2,3,0,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32399,32398,32397,-9,1,1,36,1,3,0,1,1,-9,0,3,8.5809202,8.6786718,0,2,4,19.477076,0,3,3,2021,9,0,35,42,1,0,0,19.801809,19.801809,0,0,0,0,0,0,0,42,1,1,0,0,0,58.47,50.22,49.25,52.88,8.333333333333334,2,3,0,0,9,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32400,-9,32398,32399,1,0,7,1,3,1,3,0,-9,0,4,0,0,0,0,0,-776.1886,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,1.1374947,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32401,-9,32398,32399,1,1,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.4102,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14872,18195,32402,-9,32398,32399,1,0,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-960.86615,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,3,0,751.79999,456105.72,0,549753.63,104955.45,0,0,2360.6052 +14873,18196,32403,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.4087372,8.2884808,0,0,0,-1004.0884,0,2,2,2021,9,0,45,42,1,1,0,9.7271547,9.7271547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,10,7,4,1,1794,78958.547,13297.133,0,0,13153.14,0,780.16351 +14874,18197,32404,32405,-9,-9,1,0,35,0,0,0,3,3,-9,0,4,6.9963641,6.7828722,0,5,3,130.12733,0,-9,-9,2021,2,0,5,5,1,0,0,25.687532,25.687532,0,0,0,0,0,0,0,0,1,1,0,0,0,62.11,45.63,57.06,57.76,8.333333333333334,2,3,0,0,2,6,3,0,716,-18489.891,0,0,0,0,0,2747.2737 +14874,18197,32405,32404,-9,-9,1,1,32,0,0,0,1,1,-9,0,5,7.8606534,8.4252949,0,5,-3,-107.77477,0,3,2,2021,1,0,30,0,1,0,0,12.354127,12.354127,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,62.11,45.63,8.333333333333334,2,3,0,0,11,6,3,0,716,-18489.891,0,0,0,0,0,2747.2737 +14875,18198,32406,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,2,0,6.3343248,6.5225134,0,0,-945.79919,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,1.4110262,0,18.576387,0,1,1,0,4.4546514,6.5821786,63.08,37.55,-9,-9,8.333333333333334,1,1,0,0,9,4,2,1,1007,344027,0,188261.06,0,0,0,805.92273 +14876,18199,32407,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,2,0,5.7178826,5.6558008,0,0,-1060.8333,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.5882034,67.5,24.59,-9,-9,10,1,1,0,0,0,7,2,1,430,91090.25,40089.574,0,0,0,0,655.49036 +14877,18200,32408,32410,-9,-9,1,1,49,0,2,0,1,1,-9,0,2,8.8619165,8.7344532,0,26,3,74.941986,0,2,3,2021,9,0,36,41,1,0,0,26.683788,26.683788,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.42,35.65,57.16,56.15,8.333333333333334,2,3,0,0,14,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14877,18200,32409,-9,32410,32408,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.0675,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14877,18200,32410,32408,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.1245556,8.0026922,0,26,-3,-50.894428,0,3,3,2021,12,0,25,25,1,0,0,13.951556,13.951556,0,0,0,0,0,0,0,0,1,1,0,.93706179,0,57.16,56.15,61.42,35.65,8.333333333333334,2,3,0,0,15,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14877,18200,32411,-9,32410,32408,1,1,13,0,2,1,3,0,-9,0,2,0,0,0,0,0,-1033.2091,-9,2,1,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38,46,-9,-9,5,2,3,-9,0,0,9,4,1,504,539376.88,124696.49,645207.56,286579.59,0,0,4197.1416 +14878,18201,32412,32413,-9,-9,1,1,45,0,0,0,1,1,-9,0,4,8.817852,9.2719994,0,13,5,40.713387,0,3,2,2021,24,8,40,45,1,8,0,23.090521,23.090521,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.66,60.3,52.4,55.58,6.666666666666667,1,1,0,0,8,10,5,1,582,871867.13,467509.94,279379.22,141543.63,0,0,11848.909 +14878,18201,32413,32412,-9,-9,1,0,40,0,0,0,1,1,-9,0,4,10.007086,10.139078,0,13,-5,231.33691,0,2,3,2021,11,1,40,45,1,1,0,77.609238,77.609238,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.4,55.58,33.66,60.3,8.333333333333334,1,1,0,0,7,10,5,1,582,871867.13,467509.94,279379.22,141543.63,0,0,11848.909 +14879,18202,32414,32415,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,7.3324094,7.6532826,0,7,-2,3.325166,0,2,3,2021,10,1,70,50,1,1,0,3.1775942,3.1775942,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,50,54,8.333333333333334,1,1,0,0,8,11,4,1,475.5,151400.05,136805.69,145370.39,118948.61,11635.657,4710.6465,2629.7969 +14879,18202,32415,32414,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.1546097,8.0493155,0,7,2,34.155121,-9,-9,-9,2021,10,0,30,0,1,1,0,16.033253,16.033253,0,0,0,0,0,0,0,0,1,1,0,0,0,50,54,49.28,52.09,8,4,1,0,0,1,11,4,1,475.5,151400.05,136805.69,145370.39,118948.61,11635.657,4710.6465,2629.7969 +14880,18203,32416,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.421072,8.4000168,0,0,-1125.2156,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2867093,8.3619013,48.7,56.22,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,4194,34852.129,0,177588,0,0,0,2159.9519 +14881,18204,32417,32418,-9,-9,1,1,35,0,0,0,2,2,-9,0,3,9.0533123,8.9023237,0,17,2,22.530771,0,2,2,2021,12,0,41,53,1,0,0,17.087219,17.087219,0,0,0,0,0,0,0,7,1,1,0,0,0,40.26,35.46,41.93,27.2,6.666666666666667,1,1,0,0,9,2,5,1,732.5,36937.844,0,0,0,0,4487.2036,3064.5703 +14881,18204,32418,32417,-9,-9,1,0,33,0,0,0,1,1,-9,1,2,0,0,0,17,-2,78.677505,0,2,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2294865,0,41.93,27.2,40.26,35.46,6.666666666666667,1,1,0,0,7,2,5,1,732.5,36937.844,0,0,0,0,4487.2036,3064.5703 +14882,18205,32419,32420,-9,-9,1,0,48,0,0,0,1,1,-9,0,3,8.6810694,8.8046312,0,29,0,-60.973312,0,2,3,2021,12,0,47,44,1,0,0,13.989687,13.989687,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.82,35.78,58.08,43.46,8.333333333333334,1,1,0,0,13,4,5,1,173.5,213702.81,92089.227,92894.875,63460.984,237.78519,-685.43335,3570.7891 +14882,18205,32420,32419,-9,-9,1,1,48,0,0,0,2,2,-9,0,3,8.3219795,8.5493422,0,29,0,-57.207844,0,1,2,2021,7,0,38,38,1,0,0,10.549592,10.549592,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.08,43.46,51.82,35.78,6.666666666666667,1,1,0,0,14,4,5,1,173.5,213702.81,92089.227,92894.875,63460.984,237.78519,-685.43335,3570.7891 +14882,18206,32421,-9,32419,32420,1,1,21,0,0,1,2,0,0,0,3,0,0,0,0,0,-1061.9509,-9,1,2,2021,15,3,0,0,2,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6073365,0,43.02,57.64,-9,-9,5,1,1,0,0,0,4,2,1,554,-163710.03,0,0,0,0,0,-190.00093 +14883,18207,32422,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,7.0556026,7.3470788,0,0,-1102.9296,0,2,3,2021,19,7,0,0,4,7,0,0,0,.05,.05,0,1,2.2964599,0,21.142906,0,1,1,0,5.6504135,6.9107661,37.54,15.68,-9,-9,3.333333333333333,1,1,0,0,0,9,2,0,1438,565939.75,62571.074,417955.16,-763.87915,0,0,1420.3273 +14884,18208,32423,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.4469337,8.1919498,0,0,0,-1003.7829,0,3,3,2021,17,6,37,38,1,6,0,16.436255,16.436255,.05,.05,0,0,0,0,0,0,0,0,0,3.9836488,0,36.21,32.22,-9,-9,6.666666666666667,1,1,0,0,9,7,4,1,433,526786.44,288476.63,0,0,0,0,1426.432 +14885,18209,32424,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.6153889,8.7953291,5.8468099,0,0,-1088.2101,0,2,2,2021,6,0,36,30,1,0,0,18.392679,18.392679,0,0,0,0,0,0,0,0,1,1,0,0,5.9716907,57.33,53.46,-9,-9,8.333333333333334,3,4,0,0,12,8,5,1,112,1016013.2,608146,327123.44,0,13671.464,0,3988.3164 +14886,18210,32425,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,8.5966682,8.4575825,0,0,0,-1061.3044,0,2,2,2021,18,6,40,40,1,6,0,20.147066,20.147066,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.13,55.9,-9,-9,6.666666666666667,1,1,0,0,14,8,5,1,975,28467.861,44662.188,0,0,0,0,2838.1294 +14887,18211,32426,32427,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.5675755,8.9042845,0,16,-1,-104.00368,0,2,2,2021,18,6,38,38,1,6,0,21.684277,21.684277,.05,.05,0,0,0,0,0,0,1,1,0,0,0,30.08,53.8,37.92,53.03,3.333333333333333,1,1,0,0,12,2,5,0,1709,187363.41,105832.9,104940,38496.988,-359.49463,310.89337,3531.3647 +14887,18211,32427,32426,-9,-9,1,0,46,0,0,0,1,1,-9,0,3,8.0443602,8.1518679,0,16,1,-67.688339,-9,2,1,2021,11,0,38,0,1,0,0,7.6034522,7.6034522,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.92,53.03,30.08,53.8,6.666666666666667,1,1,0,0,3,2,5,0,1709,187363.41,105832.9,104940,38496.988,-359.49463,310.89337,3531.3647 +14887,18212,32428,-9,32427,32426,1,1,18,0,0,1,2,0,0,0,5,0,0,0,0,0,-908.40674,-9,1,1,2021,7,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.05,54.52,-9,-9,10,1,1,0,0,0,2,1,0,223,-39547.566,0,0,0,0,0,0 +14888,18213,32429,-9,32430,-9,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1024.1479,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,56,-9,-9,6,4,2,-9,0,0,10,3,1,263.66666,280241.78,22373.129,222661.8,9171.9453,0,3141.5237,2158.7456 +14888,18213,32430,-9,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.8099852,7.9130163,0,0,0,-1139.8728,0,2,2,2021,12,0,40,28,1,0,0,8.9003658,8.9003658,.05,.05,0,0,0,0,0,2,1,0,1,0,0,54.96,53.17,-9,-9,8.333333333333334,2,3,0,0,13,10,3,1,263.66666,280241.78,22373.129,222661.8,9171.9453,0,3141.5237,2158.7456 +14888,18213,32431,-9,32430,-9,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1146.348,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,61,-9,-9,7,4,2,-9,0,0,10,3,1,263.66666,280241.78,22373.129,222661.8,9171.9453,0,3141.5237,2158.7456 +14889,18214,32432,32433,-9,-9,1,1,49,0,0,0,2,2,-9,0,2,0,0,0,8,-2,0,0,-9,-9,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,74.5,1,0,1,0,0,30.35,42.02,35.87,43.12,5,1,1,1,0,0,6,1,0,1047,-30185.723,0,0,0,0,0,241.55806 +14889,18214,32433,32432,-9,-9,1,0,51,0,0,0,2,2,-9,1,3,0,0,0,8,2,0,0,3,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,35.87,43.12,30.35,42.02,1.666666666666667,1,1,1,0,0,6,1,0,1047,-30185.723,0,0,0,0,0,241.55806 +14889,18215,32434,-9,32433,32432,1,1,28,0,0,0,2,2,-9,0,3,8.3603582,8.4223328,0,0,0,-1005.5768,0,2,2,2021,7,0,56,21,1,0,1,8.1993389,8.1993389,.05,.05,0,0,0,0,0,0,1,0,1,0,0,44.57,46.8,-9,-9,5,1,1,0,0,3,6,4,0,362,-20325.359,143604.03,0,0,4498.2485,0,1203.1442 +14889,18216,32435,-9,32433,32432,1,0,21,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1068.4163,0,2,2,2021,6,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,42,1,0,1,0,0,38.86,51.72,-9,-9,10,1,1,1,0,0,6,1,0,413,55837.191,0,0,0,0,0,-814.65411 +14890,18217,32436,-9,32437,-9,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-980.74335,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,13,2,0,1508.5,74074.875,14676.987,0,0,2417.0083,1676.9404,1574.3647 +14890,18217,32437,-9,-9,-9,1,0,38,0,1,0,3,3,-9,0,4,7.0465336,7.1183906,0,0,0,-1030.7207,0,3,3,2021,8,0,24,23,1,0,0,4.6837692,4.6837692,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,13,2,0,1508.5,74074.875,14676.987,0,0,2417.0083,1676.9404,1574.3647 +14891,18218,32438,32439,-9,-9,1,1,58,0,1,0,1,1,-9,0,4,9.3896952,9.2119026,0,24,3,-33.854485,0,2,2,2021,11,3,39,37,1,3,0,42.961433,42.961433,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,54.74,57.22,10,1,1,0,0,10,6,5,1,2758,240847.78,124174.26,391759.41,169521.55,0,13145.688,5133.7114 +14891,18218,32439,32438,-9,-9,1,0,55,0,1,0,1,1,-9,0,4,8.9693804,8.7658901,0,27,-3,4.5431576,0,1,1,2021,7,0,31,26,1,0,0,26.101503,26.101503,0,0,0,0,0,0,0,0,1,1,0,3.8155973,0,54.74,57.22,51.24,58.84,8.333333333333334,1,1,0,0,13,6,5,1,2758,240847.78,124174.26,391759.41,169521.55,0,13145.688,5133.7114 +14891,18218,32440,-9,32439,32438,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.8342,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,5,1,2758,240847.78,124174.26,391759.41,169521.55,0,13145.688,5133.7114 +14891,18219,32441,-9,32439,32438,1,0,19,0,1,1,2,0,0,0,5,0,7.5579658,7.0740342,0,0,-1047.1718,-9,1,1,2021,16,3,0,0,2,3,1,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.8009701,0,46,61.6,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,193,-60375.063,-122727.8,0,0,0,0,1895.9821 +14892,18220,32442,32443,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.3168669,8.6374016,0,2,-8,53.509129,0,-9,-9,2021,3,0,35,40,1,0,0,15.356162,15.356162,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,53.27,53.98,10,1,1,0,0,4,9,5,1,252,287238.78,103253.02,337284.53,195674.03,-29.967102,0,3938.8179 +14892,18220,32443,32442,-9,-9,1,0,36,0,0,0,1,1,1,0,5,7.8878689,8.1008101,0,2,8,44.248524,-9,1,1,2021,8,0,24,0,1,0,0,12.544093,12.544093,0,0,0,0,0,0,0,0,0,0,0,7.362709,0,53.27,53.98,57.16,56.15,8.333333333333334,1,1,0,0,1,9,5,1,252,287238.78,103253.02,337284.53,195674.03,-29.967102,0,3938.8179 +14892,18221,32444,-9,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.9651318,7.7050571,0,0,0,-1071.1835,0,2,2,2021,6,0,38,39,1,0,0,8.0893373,8.0893373,0,0,0,0,0,0,0,0,0,0,0,.5456211,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,9,9,3,1,99,-63799.539,96689.148,0,0,0,0,947.5791 +14893,18222,32445,-9,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1117.2933,0,2,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,44.75,38.42,-9,-9,0,1,1,0,1,0,8,1,0,980,120029.12,63879.746,0,0,0,0,439.26028 +14894,18223,32446,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,7.1612406,7.0699167,0,0,-883.89532,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0828352,44.19,56.73,-9,-9,6.666666666666667,1,1,0,0,6,7,2,1,555,268238.28,81162.875,0,0,0,35.4105,868.66632 +14895,18224,32447,32449,-9,-9,1,0,32,0,2,0,1,1,-9,0,4,6.5455165,6.9668841,0,7,1,55.154209,0,2,2,2021,12,0,12,12,1,0,0,7.7513061,7.7513061,.05,.05,0,0,0,0,0,0,1,1,0,6.0795174,0,50.01,55.31,54.1,59.11,8.333333333333334,1,1,0,0,11,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14895,18224,32448,-9,32447,32449,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-960.99213,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14895,18224,32449,32447,-9,-9,1,1,31,0,2,0,2,2,-9,0,5,8.5683327,8.6961203,0,7,-1,-9.7119226,0,-9,-9,2021,8,0,50,35,1,0,0,17.691572,17.691572,.05,.05,0,0,0,0,0,0,1,1,0,1.9046948,0,54.1,59.11,50.01,55.31,8.333333333333334,1,1,0,0,13,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14895,18224,32450,-9,32447,32449,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-926.18414,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,4,1,1313,136554.7,94252.617,189513.47,30126.373,29708.811,17783.555,3032.6284 +14896,18225,32451,-9,32452,32453,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1031.5758,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,5,1,484.33334,481064.59,269640.06,265590.91,83404.641,0,0,11037.793 +14896,18225,32452,32453,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,7.2918406,7.3143172,0,6,3,-58.915516,0,3,2,2021,5,0,20,20,1,0,0,8.4147873,8.4147873,.05,.05,0,0,0,0,0,0,0,0,0,1.7402837,0,57.16,56.15,53.82,45.88,8.333333333333334,1,1,0,0,7,12,5,1,484.33334,481064.59,269640.06,265590.91,83404.641,0,0,11037.793 +14896,18225,32453,32452,-9,-9,1,1,44,0,1,0,2,2,-9,0,2,9.9381247,9.8606691,0,6,-3,-79.871536,0,-9,-9,2021,8,0,84,0,1,0,0,22.88188,22.88188,.05,.05,0,0,0,0,0,0,0,0,0,2.9440415,0,53.82,45.88,57.16,56.15,6.666666666666667,1,1,0,0,7,12,5,1,484.33334,481064.59,269640.06,265590.91,83404.641,0,0,11037.793 +14896,18226,32454,-9,32452,32453,1,1,22,0,1,0,2,2,-9,0,4,7.8996196,8.2239265,0,0,0,-1062.5134,0,2,2,2021,6,0,48,45,1,0,1,8.2890167,8.2890167,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,-9,-9,8.333333333333334,1,1,0,0,6,12,4,1,3170,-100248.94,0,0,0,0,0,2718.0964 +14896,18227,32455,-9,32452,32453,1,0,18,0,1,0,2,2,-9,0,3,7.1955657,6.9054475,0,0,0,-966.25562,0,2,2,2021,11,0,30,0,1,0,1,5.1163845,5.1163845,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.58,55.59,-9,-9,8.333333333333334,1,1,0,0,3,12,3,1,397,54195.398,-11259.696,0,0,0,0,711.39435 +14897,18228,32456,32457,-9,-9,1,1,49,0,1,0,1,1,-9,0,4,8.0911608,7.9831533,0,6,-1,-92.039063,0,2,2,2021,7,0,21,21,1,0,0,12.377878,12.377878,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,46.88,60.96,1.666666666666667,1,1,0,0,7,4,4,1,868.33331,307309.75,262161.91,130927.05,64976.285,15477.683,0,3379.6733 +14897,18228,32457,32456,-9,-9,1,0,50,0,1,0,1,1,-9,0,5,8.1078444,8.589407,7.3750305,6,1,75.477615,0,1,1,2021,9,0,25,25,1,0,0,16.088228,16.088228,0,0,0,0,0,0,0,0,1,1,0,7.8687963,0,46.88,60.96,46.63,59.72,10,1,1,0,0,7,4,4,1,868.33331,307309.75,262161.91,130927.05,64976.285,15477.683,0,3379.6733 +14897,18228,32458,-9,32457,32456,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-832.93048,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,4,4,1,868.33331,307309.75,262161.91,130927.05,64976.285,15477.683,0,3379.6733 +14898,18229,32459,32460,-9,-9,1,0,58,0,0,0,3,3,-9,0,4,0,0,0,29,-2,-25.941406,-9,3,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,8.333333333333334,2,3,0,0,1,6,2,1,631,584050.25,695620.19,0,0,0,0,894.04248 +14898,18229,32460,32459,-9,-9,1,1,60,0,0,0,3,3,-9,0,5,7.6606393,7.1841073,0,29,2,-24.85726,-9,3,3,2021,8,0,36,0,1,0,0,5.5787997,5.5787997,0,0,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.79,55.86,8.333333333333334,2,3,0,0,9,6,2,1,631,584050.25,695620.19,0,0,0,0,894.04248 +14898,18230,32461,32462,32459,32460,1,1,28,0,0,0,2,2,-9,0,5,7.9419408,7.8368449,0,1,1,67.768356,-9,3,3,2021,9,1,45,0,1,1,0,5.2561154,5.2561154,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52.21,59.91,8.333333333333334,2,3,0,0,9,6,3,1,1081,25234.121,68300.625,0,0,12819.383,0,1113.5375 +14898,18230,32462,32461,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,0,0,0,1,-1,110.62383,-9,-9,-9,2021,8,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.21,59.91,57.06,57.76,8.333333333333334,2,3,0,0,0,6,3,1,1081,25234.121,68300.625,0,0,12819.383,0,1113.5375 +14898,18231,32463,-9,-9,-9,1,1,48,0,0,0,3,3,-9,0,3,8.1682043,7.8634133,0,0,0,-1149.7039,-9,-9,-9,2021,10,1,36,0,1,1,0,9.4105892,9.4105892,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.9,54.53,-9,-9,8.333333333333334,2,3,0,0,11,6,4,1,384,71906.641,65540.633,53629.145,-7414.2759,11588.56,0,718.50555 +14899,18232,32464,-9,-9,-9,1,0,19,0,0,1,1,0,0,1,2,0,0,0,0,0,-880.13715,-9,-9,-9,2021,26,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.22,48.57,-9,-9,5,1,1,0,1,0,5,1,1,232,-134102.48,0,0,0,0,0,1122.6125 +14899,18233,32465,32466,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,7,0,0,0,3,3,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,1.5258915,0,27.93,36.35,34.83,23.32,1.666666666666667,1,1,0,1,0,5,1,1,555.5,-16442.398,0,0,0,0,0,1552.5522 +14899,18233,32466,32465,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,0,0,7,0,0,0,-9,-9,2021,32,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.83,23.32,27.93,36.35,0,1,1,0,0,11,5,1,1,555.5,-16442.398,0,0,0,0,0,1552.5522 +14900,18234,32467,32469,-9,-9,1,0,34,0,1,0,1,1,-9,0,3,8.3234768,8.0821295,0,8,-1,52.590893,0,2,2,2021,9,0,25,24,1,0,0,19.91831,19.91831,0,0,0,0,0,0,0,0,1,1,0,.31786886,0,51.41,56.15,56.33,51.02,8.333333333333334,1,1,0,0,9,1,5,1,608,109347.7,101969.5,30566.592,48612.422,0,0,4032.4812 +14900,18234,32468,-9,32467,32469,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-902.24792,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,608,109347.7,101969.5,30566.592,48612.422,0,0,4032.4812 +14900,18234,32469,32467,-9,-9,1,1,35,0,1,0,1,1,-9,0,4,8.6464787,8.5236959,0,8,1,36.442833,0,1,1,2021,6,0,40,47,1,0,0,14.440742,14.440742,.05,.05,0,0,0,0,0,0,1,1,0,6.9601684,0,56.33,51.02,51.41,56.15,8.333333333333334,1,1,0,0,10,1,5,1,608,109347.7,101969.5,30566.592,48612.422,0,0,4032.4812 +14901,18235,32470,32471,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,44,-1,77.949013,0,3,3,2021,23,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,30.36,39.19,56.38,29.55,5,1,1,0,0,9,12,3,0,833,1010289.6,758558.25,165481.73,0,0,0,2288.8887 +14901,18235,32471,32470,-9,-9,1,1,62,0,0,0,3,3,-9,0,2,7.867435,8.2410755,0,12,1,4.9067268,0,-9,-9,2021,7,0,40,35,1,0,0,6.8693871,6.8693871,0,0,0,0,0,0,0,0,1,0,1,0,0,56.38,29.55,30.36,39.19,8.333333333333334,1,1,0,0,13,12,3,0,833,1010289.6,758558.25,165481.73,0,0,0,2288.8887 +14902,18236,32472,32473,-9,-9,1,0,83,0,0,0,2,2,-9,0,3,0,6.9074397,6.7214131,7,-1,39.030113,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9067049,58.32,50.22,65.83,35.92,8.333333333333334,1,1,0,0,0,13,2,1,3568.5,250919.66,108608.06,142534.91,0,0,0,1818.0322 +14902,18236,32473,32472,-9,-9,1,1,84,0,0,0,2,2,-9,0,5,0,6.1759224,6.0944152,7,1,101.1893,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2026272,65.83,35.92,58.32,50.22,8.333333333333334,1,1,0,0,0,13,2,1,3568.5,250919.66,108608.06,142534.91,0,0,0,1818.0322 +14903,18237,32474,-9,-9,-9,1,1,32,0,0,0,1,1,-9,0,4,9.37924,9.5116262,0,0,0,-1019.657,0,1,1,2021,11,0,55,55,1,0,0,25.491369,25.491369,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,-9,-9,8.333333333333334,4,2,0,0,7,4,5,1,623,299280.13,26090.258,0,0,0,0,3437.5315 +14904,18238,32475,-9,-9,-9,1,1,27,0,0,0,1,1,-9,0,3,8.4039555,8.6966219,0,0,0,-1002.604,0,1,1,2021,19,7,53,48,1,7,0,13.88537,13.88537,.05,.05,0,0,0,0,0,0,0,0,0,6.7567916,0,38.57,58.06,-9,-9,6.666666666666667,1,1,0,0,4,4,5,1,714,164695.22,24173.291,0,0,0,0,2463.4688 +14905,18239,32476,32477,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.9850025,7.7903838,0,35,0,36.007832,0,-9,-9,2021,10,1,38,29,1,1,0,10.672085,10.672085,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,54.37,54.8,8.333333333333334,1,1,0,0,12,9,4,1,1077.5,142291.42,163600,299674.31,158794.81,0,0,2618.0977 +14905,18239,32477,32476,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,7.9002094,8.2794685,35,0,77.638588,0,-9,-9,2021,6,0,0,32,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.4354324,8.2584438,54.37,54.8,51.77,58.57,8.333333333333334,1,1,0,0,11,9,4,1,1077.5,142291.42,163600,299674.31,158794.81,0,0,2618.0977 +14906,18240,32478,-9,-9,-9,1,0,69,0,0,0,1,1,-9,0,1,0,0,0,0,0,-1033.1567,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,56.19,5.98,-9,-9,8.333333333333334,1,1,0,0,0,4,1,1,323,434336.66,325038.44,355757.94,40675.902,0,0,336.6622 +14907,18241,32479,32480,-9,-9,1,1,56,0,0,0,2,2,-9,0,3,0,0,0,34,-5,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.33,53.46,30.57,31.96,8.333333333333334,1,1,0,0,8,1,1,1,1029.5,122977.34,0,0,0,0,0,755.19092 +14907,18241,32480,32479,-9,-9,1,0,61,0,0,0,3,3,-9,1,2,0,0,0,34,5,0,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,30.57,31.96,57.33,53.46,3.333333333333333,1,1,0,0,0,1,1,1,1029.5,122977.34,0,0,0,0,0,755.19092 +14908,18242,32481,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.2184672,7.3949199,0,0,0,-858.73175,0,2,2,2021,16,4,30,29,1,4,0,5.864913,5.864913,0,0,0,0,0,0,0,0,1,1,0,.39268458,0,46.16,58.62,-9,-9,3.333333333333333,1,1,0,0,9,6,3,1,725,-213517.45,-67904.234,0,0,5087.6665,0,735.41791 +14909,18243,32482,32483,-9,-9,1,1,63,0,0,0,1,1,-9,0,4,0,9.3005838,9.2797508,9,2,60.242104,0,-9,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.6399624,8.9041777,63.24,42.39,54.79,55.86,8.333333333333334,1,1,0,0,12,2,5,1,2489.5,2671173,1236273.8,407109.19,0,0,0,6904.3975 +14909,18243,32483,32482,-9,-9,1,0,61,0,0,0,1,1,-9,0,4,0,7.7308383,7.4883122,9,-2,-54.777798,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1967869,7.6609125,54.79,55.86,63.24,42.39,10,1,1,0,0,7,2,5,1,2489.5,2671173,1236273.8,407109.19,0,0,0,6904.3975 +14909,18244,32484,-9,32483,32482,1,0,23,0,0,0,1,1,-9,0,5,8.5222464,8.4899664,0,0,0,-896.69385,0,1,1,2021,7,0,38,0,1,0,0,15.962314,15.962314,.05,.05,0,0,0,0,0,0,0,0,0,5.8162036,0,57.63,56.14,-9,-9,8.333333333333334,1,1,0,0,4,2,5,1,689,26798.559,-57664.711,0,0,18310.768,0,1725.766 +14910,18245,32485,-9,-9,-9,1,0,86,0,0,0,3,3,-9,0,4,0,5.1732445,5.007719,0,0,-1020.3505,0,3,-9,2021,9,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7175298,5.3029933,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,421,346536.84,0,300524.44,0,0,0,659.2738 +14911,18246,32486,32487,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.7659235,7.6763453,0,6,0,63.739067,0,3,3,2021,11,0,31,30,1,0,0,7.2861056,7.2861056,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.24,58.84,53.82,50.73,8.333333333333334,1,1,0,0,11,10,5,1,2457.5,108430.83,23629.73,125328.23,58667.242,9117.7568,0,3664.3486 +14911,18246,32487,32486,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7023802,8.802762,0,6,0,28.40336,0,3,2,2021,9,0,45,45,1,0,0,15.104306,15.104306,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.82,50.73,51.24,58.84,8.333333333333334,1,1,0,0,11,10,5,1,2457.5,108430.83,23629.73,125328.23,58667.242,9117.7568,0,3664.3486 +14911,18247,32488,-9,32486,32487,1,1,28,0,0,0,2,2,-9,0,4,8.1283836,8.2775564,0,0,0,-970.31256,0,2,2,2021,11,0,40,40,1,0,1,10.390724,10.390724,0,0,0,0,0,0,0,0,1,1,0,1.5338681,0,44.24,59.44,-9,-9,8.333333333333334,1,1,0,0,8,10,4,1,262,-27112.277,0,0,0,0,0,986.55615 +14911,18248,32489,-9,32486,32487,1,1,18,0,0,1,3,0,0,0,2,0,0,0,0,0,-1045.2574,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.34,54.03,-9,-9,3.333333333333333,1,1,0,0,12,10,1,1,183,85937.57,0,0,0,0,-748.05121,0 +14912,18249,32490,-9,32492,32491,1,1,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1124.0892,1,2,2,2021,3,0,0,40,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,1,5,6,1,1,784,116661.14,0,0,0,0,0,0 +14912,18250,32491,32492,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,0,7.9219751,7.905757,3,0,28.740049,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.98565662,8.0425119,45.65,57.42,36.85,53.44,8.333333333333334,1,1,0,0,8,6,3,1,1380.5,1069334.5,737808.81,220460.47,0,0,0,1731.2029 +14912,18250,32492,32491,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,4.4536343,4.3788257,26,0,172.84468,0,-9,-9,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,120,1,1,0,.60858542,4.6579566,36.85,53.44,45.65,57.42,3.333333333333333,1,1,0,0,8,6,3,1,1380.5,1069334.5,737808.81,220460.47,0,0,0,1731.2029 +14913,18251,32493,32495,-9,-9,1,0,24,1,2,0,2,2,-9,0,4,6.3170638,6.3432217,0,1,1,33.036701,-9,-9,-9,2021,18,6,12,0,1,6,0,4.799304,4.799304,0,0,0,0,0,0,0,0,1,1,0,0,0,46.4,55.9,66.73999999999999,26.24,3.333333333333333,1,1,0,0,3,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14913,18251,32494,-9,32493,32495,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1010.8338,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14913,18251,32495,32493,-9,-9,1,1,23,1,2,0,2,2,-9,0,2,0,0,0,1,-1,-31.403023,-9,-9,-9,2021,14,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,66.73999999999999,26.24,46.4,55.9,5,1,1,0,0,0,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14913,18251,32496,-9,32493,32495,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-971.94135,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,2,0,463,-26904.465,0,0,0,0,0,996.9317 +14914,18252,32497,32498,-9,-9,1,0,83,0,0,0,2,2,-9,0,2,0,7.520627,7.4219694,61,1,-72.58017,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,45.652378,0,0,1,1,0,0,7.684042,45.35,35.99,52.37,56.93,8.333333333333334,1,1,0,0,0,1,4,1,420.5,1545617.8,496581.13,527669.56,0,0,0,3815.041 +14914,18252,32498,32497,-9,-9,1,1,82,0,0,0,1,1,-9,0,4,0,8.1518364,7.51931,61,-1,76.389,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.2489719,7.9650688,52.37,56.93,45.35,35.99,8.333333333333334,1,1,0,0,4,1,4,1,420.5,1545617.8,496581.13,527669.56,0,0,0,3815.041 +14915,18253,32499,32500,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.271956,5.6297774,51,0,21.123594,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.282094,5.9886827,60.42,42.39,50.02,42.55,8.333333333333334,1,1,0,0,6,4,5,1,988.5,714129.13,105044.37,517259.09,0,0,0,8053.2744 +14915,18253,32500,32499,-9,-9,1,1,72,0,0,0,2,2,-9,0,2,0,8.992691,8.9840517,51,0,104.66872,0,2,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0561275,8.9989653,50.02,42.55,60.42,42.39,8.333333333333334,1,1,0,0,5,4,5,1,988.5,714129.13,105044.37,517259.09,0,0,0,8053.2744 +14916,18254,32501,32502,-9,-9,1,1,29,0,0,0,1,1,-9,0,4,8.6571789,8.4746065,0,5,1,-10.575954,0,-9,-9,2021,4,0,39,44,1,0,0,15.901322,15.901322,0,0,0,0,0,0,0,0,0,0,0,0,0,49.52,55.68,43.68,53.03,8.333333333333334,1,1,0,0,6,2,5,1,270,-157993.28,0,0,0,0,0,2801.2373 +14916,18254,32502,32501,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.8703575,8.0619078,0,5,-1,93.078255,0,-9,-9,2021,14,3,41,40,1,3,0,6.1725416,6.1725416,0,0,0,0,0,0,0,0,0,0,0,0,0,43.68,53.03,49.52,55.68,8.333333333333334,1,1,0,0,9,2,5,1,270,-157993.28,0,0,0,0,0,2801.2373 +14917,18255,32503,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,0,0,-941.08075,0,2,2,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.34,62.12,-9,-9,8.333333333333334,1,1,1,0,2,8,1,0,283,-80547.75,54011.68,0,0,0,0,831.98767 +14918,18256,32504,32505,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,8,4,27.103157,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,.77423424,0,57.33,53.46,46.52,45.04,8.333333333333334,1,1,0,0,6,5,5,1,660.5,319330.94,191651.39,138989.22,0,0,0,4994.9658 +14918,18256,32505,32504,-9,-9,1,1,60,0,0,0,2,2,-9,0,2,9.537591,9.6151104,0,8,-4,-36.916145,0,3,3,2021,10,0,90,60,1,0,0,13.588876,13.588876,.05,.05,0,0,0,0,0,2,1,1,0,1.398671,0,46.52,45.04,57.33,53.46,6.666666666666667,1,1,0,0,9,5,5,1,660.5,319330.94,191651.39,138989.22,0,0,0,4994.9658 +14919,18257,32506,32507,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,0,8.1025,8.2225122,47,0,68.400299,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6469498,8.2167635,57.4,50.48,62.1,51.16,10,1,1,0,0,6,9,3,1,366.5,1527084.6,844160.13,726816.31,0,10610.408,5139.9678,3711.0732 +14919,18257,32507,32506,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,6.1529064,6.039073,47,0,-74.720779,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9881821,6.0542941,62.1,51.16,57.4,50.48,10,1,1,0,0,5,9,3,1,366.5,1527084.6,844160.13,726816.31,0,10610.408,5139.9678,3711.0732 +14920,18258,32508,32509,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,44,-1,-66.885803,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.2902203,0,54.19,42.36,58.72,51.29,8.333333333333334,1,1,0,0,1,2,2,1,789,767614.88,396488.69,216445.19,0,0,0,2118.51 +14920,18258,32509,32508,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,0,7.129653,7.0718441,44,1,23.655617,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.0367951,7.1985955,58.72,51.29,54.19,42.36,8.333333333333334,1,1,0,0,5,2,2,1,789,767614.88,396488.69,216445.19,0,0,0,2118.51 +14921,18259,32510,32511,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,6.2096672,6.2197266,46,0,-133.09889,0,2,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8388448,6.3636923,59.47,44.13,56.29,52.37,8.333333333333334,1,1,0,0,6,4,5,1,137,1461275.8,328920.75,261239.31,0,0,0,4694.6851 +14921,18259,32511,32510,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,0,8.955513,8.9820023,46,0,19.777012,0,2,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,9.3402748,56.29,52.37,59.47,44.13,10,1,1,0,0,5,4,5,1,137,1461275.8,328920.75,261239.31,0,0,0,4694.6851 +14922,18260,32512,32513,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,6.2025428,6.3456359,47,3,-89.157578,0,2,3,2021,33,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.5012956,6.2248607,33.98,39.05,48.17,45.42,5,1,1,0,0,0,2,3,1,365.5,919203.56,371073.5,285526.75,0,0,0,2649.231 +14922,18260,32513,32512,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,7.3618164,7.1982284,47,-3,87.501373,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7457185,7.441782,48.17,45.42,33.98,39.05,8.333333333333334,1,1,0,0,0,2,3,1,365.5,919203.56,371073.5,285526.75,0,0,0,2649.231 +14923,18261,32514,-9,32515,32517,1,0,3,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1182.8792,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14923,18261,32515,32517,-9,-9,1,0,40,0,4,0,1,1,-9,0,4,6.9889379,6.9528108,0,15,-1,4.8610139,0,2,2,2021,7,0,40,15,1,0,0,3.4750121,3.4750121,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,10,1,1,0,0,13,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14923,18261,32516,-9,32515,32517,1,0,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-897.77081,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14923,18261,32517,32515,-9,-9,1,1,41,0,4,0,1,1,-9,0,4,8.6243725,8.9551268,0,15,1,41.97266,0,2,2,2021,10,0,42,82,1,0,0,19.168591,19.168591,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,15,13,4,1,438.25,-5577.4272,0,0,0,0,0,3211.0168 +14924,18262,32518,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,5.4673228,5.3773975,0,0,-993.09894,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.6676211,5.4394231,54.77,55.87,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,2244,147221.88,0,0,0,0,0,1529.2196 +14925,18263,32519,32520,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.4497252,8.3661499,0,3,-4,112.81779,0,-9,-9,2021,9,0,62,53,1,0,0,7.4595709,7.4595709,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,50.01,55.31,8.333333333333334,1,1,0,0,4,4,5,1,1551,-96270.359,-4497.3242,0,0,-186.05414,0,3504.3911 +14925,18263,32520,32519,-9,-9,1,0,29,0,0,0,2,2,-9,0,4,8.6283073,8.5291567,0,3,4,-76.736168,0,-9,-9,2021,8,1,52,48,1,1,0,13.349553,13.349553,0,0,0,0,0,0,0,0,0,0,0,0,0,50.01,55.31,46.16,58.62,8.333333333333334,1,1,0,0,8,4,5,1,1551,-96270.359,-4497.3242,0,0,-186.05414,0,3504.3911 +14926,18264,32521,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,0,0,0,0,-923.7005,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,47.22,35.73,-9,-9,6.666666666666667,1,1,0,0,0,8,2,0,768,221061.36,0,481124.47,107592.54,0,0,1814.9019 +14927,18265,32522,32523,-9,-9,1,1,64,0,0,0,2,2,-9,0,4,0,8.450592,8.2762766,31,-3,32.80769,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1679072,8.1160135,60.12,54.8,56.74,52.23,10,1,1,0,0,7,10,4,1,3165.5,2240192,1097829.3,532179,0,2963.5261,0,4560.8857 +14927,18265,32523,32522,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.5829878,7.6468797,31,3,94.295303,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8301401,7.6601744,56.74,52.23,60.12,54.8,10,1,1,0,0,2,10,4,1,3165.5,2240192,1097829.3,532179,0,2963.5261,0,4560.8857 +14928,18266,32524,-9,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,0,0,0,0,-982.01727,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,7.8332858,0,0,1,1,0,0,0,61.58,24.58,-9,-9,10,1,1,0,0,0,2,1,0,3321,76749.453,0,0,0,0,0,1353.1796 +14929,18267,32525,32526,-9,-9,1,1,82,0,0,0,2,2,-9,0,3,0,7.364594,7.3083377,57,5,41.395725,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.8991084,7.8508658,42.57,45.02,57.16,56.15,8.333333333333334,1,1,0,0,0,9,2,1,472.5,476588.94,137280.36,262769.25,0,0,0,2862.521 +14929,18267,32526,32525,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,57,-5,37.421921,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.98000312,0,57.16,56.15,42.57,45.02,6.666666666666667,1,1,0,0,9,9,2,1,472.5,476588.94,137280.36,262769.25,0,0,0,2862.521 +14930,18268,32527,-9,32529,32530,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-926.17889,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32528,-9,32529,32530,1,0,4,0,4,1,3,0,-9,0,4,0,0,0,0,0,-970.09814,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32529,32530,-9,-9,1,0,30,0,4,0,3,3,-9,0,3,0,0,0,10,-7,79.160378,0,2,-9,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.69,64.23,35.12,51.86,5,1,1,0,1,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32530,32529,-9,-9,1,1,37,0,4,0,2,2,-9,0,2,8.3109665,8.1967726,0,10,7,-34.661758,0,-9,-9,2021,20,7,55,49,1,7,0,7.4608107,7.4608107,0,0,0,0,0,0,0,0,1,1,0,0,0,35.12,51.86,18.69,64.23,5,1,1,0,1,9,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14930,18268,32531,-9,32529,32530,1,0,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.2507,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,0,486.39999,56308.309,-38621.348,0,0,0,208.13478,2264.1597 +14931,18269,32532,-9,-9,-9,1,0,53,0,1,0,2,2,-9,1,3,7.6834998,7.7117705,0,0,0,-984.90173,0,2,3,2021,15,3,25,25,1,3,0,12.263373,12.263373,.05,.05,0,0,0,0,0,7,1,1,0,0,0,47.43,47.05,-9,-9,8.333333333333334,3,4,0,0,3,8,3,0,1270.5,239508.89,115252.45,0,0,0,0,1606.2502 +14931,18269,32533,-9,32532,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-1145.3839,-9,2,-9,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,51.83,57.2,-9,-9,10,4,2,0,0,0,8,3,0,1270.5,239508.89,115252.45,0,0,0,0,1606.2502 +14932,18270,32534,-9,32535,-9,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-835.54645,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,2,-9,0,0,8,1,0,593,0,0,0,0,0,0,1289.3398 +14932,18270,32535,-9,-9,-9,1,0,35,0,2,0,2,2,-9,1,4,0,0,0,0,0,-1007.1984,0,2,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,4,2,0,0,0,8,1,0,593,0,0,0,0,0,0,1289.3398 +14933,18271,32536,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,2,6.9225054,7.3458562,0,0,0,-1005.4808,-9,2,2,2021,23,10,20,0,1,10,0,7.0155077,7.0155077,0,0,0,0,0,0,0,0,1,1,0,0,0,25.43,35.95,-9,-9,0,1,1,0,1,7,6,2,0,658,-42793.211,0,0,0,0,0,284.69742 +14934,18272,32537,-9,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.3395205,8.0867548,0,0,0,-1082.6561,0,-9,-9,2021,9,0,40,0,1,1,0,8.6208124,8.6208124,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53,54,-9,-9,8,3,4,0,0,1,9,4,0,653,361954.69,-34993.152,199302.69,0,0,0,1142.9421 +14934,18273,32538,-9,32539,-9,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1065.5297,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,9,2,0,832.5,-21178,0,0,0,0,0,911.3728 +14934,18273,32539,-9,-9,-9,1,0,50,0,1,0,3,3,-9,0,4,6.7003517,6.7250752,0,0,0,-922.8537,0,1,1,2021,18,4,15,20,1,4,0,6.5995946,6.5995946,0,0,0,0,0,0,0,0,1,1,0,0,0,54.41,38.49,-9,-9,6.666666666666667,3,4,0,0,6,9,2,0,832.5,-21178,0,0,0,0,0,911.3728 +14934,18274,32540,-9,32539,-9,1,1,25,0,1,0,2,2,-9,0,4,8.077136,8.1251364,0,0,0,-860.70996,0,3,-9,2021,3,0,40,37,1,0,1,10.013428,10.013428,0,0,0,0,0,0,0,0,1,1,0,0,0,42.17,56.08,-9,-9,8.333333333333334,3,4,0,1,3,9,4,0,700,35910.746,0,0,0,55.51289,0,1300.3312 +14934,18275,32541,-9,32539,-9,1,1,22,0,1,1,2,0,0,0,5,0,0,0,0,0,-1058.3413,-9,3,-9,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.98,49.42,-9,-9,8.333333333333334,3,4,0,0,3,9,1,0,881,0,0,0,0,0,0,1380.1501 +14935,18276,32542,32543,-9,-9,1,1,79,0,0,0,2,2,-9,0,3,0,7.6473122,7.4167647,9,2,28.887159,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3396125,7.7310481,48.45,57.49,38.32,55.38,10,1,1,0,0,0,8,3,0,2202,640951,427590.25,273136.31,0,0,0,2569.0811 +14935,18276,32543,32542,-9,-9,1,0,77,0,0,0,3,3,-9,0,3,0,4.9117961,5.7597442,9,-2,86.651161,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.1381631,38.32,55.38,48.45,57.49,1.666666666666667,1,1,0,0,0,8,3,0,2202,640951,427590.25,273136.31,0,0,0,2569.0811 +14936,18277,32544,32545,-9,-9,1,1,56,0,2,0,3,3,-9,1,1,0,0,0,8,27,0,0,-9,-9,2021,17,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.65,26.17,22.92,33.1,6.666666666666667,1,1,1,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14936,18277,32545,32544,-9,-9,1,0,29,0,2,0,2,2,-9,0,1,0,0,0,8,-27,0,0,-9,-9,2021,33,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,0,22.92,33.1,37.65,26.17,3.333333333333333,1,1,0,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14936,18277,32546,-9,32545,32544,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1155.344,-9,2,3,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14936,18277,32547,-9,32545,32544,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-988.05798,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,1,0,818.25,-72688.273,64474.895,0,0,0,0,2383.946 +14937,18278,32548,32549,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,0,0,33,6,0,0,3,3,2021,25,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.46,26.38,33.28,29.52,3.333333333333333,1,1,0,0,0,13,2,1,994,121202.88,124616.61,46939.328,0,0,0,1376.5671 +14937,18278,32549,32548,-9,-9,1,1,58,0,0,0,2,2,-9,0,2,0,0,0,33,-6,0,0,3,3,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.28,29.52,34.46,26.38,5,1,1,0,0,0,13,2,1,994,121202.88,124616.61,46939.328,0,0,0,1376.5671 +14938,18279,32550,32551,-9,-9,1,0,31,0,0,0,2,2,-9,0,4,8.7695084,8.9033031,0,7,1,53.994915,0,2,1,2021,5,0,38,38,1,0,0,14.951716,14.951716,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.38,54.63,54.79,55.86,8.333333333333334,1,1,0,0,9,2,5,1,390,1121247,1044028.3,236311.34,158403.81,1768.9617,22291.48,5345.8184 +14938,18279,32551,32550,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,8.5842056,8.8653431,0,7,-1,64.156738,0,-9,-9,2021,7,0,45,37,1,0,0,13.454489,13.454489,.05,.05,0,0,0,0,0,0,0,0,0,6.9950347,0,54.79,55.86,51.38,54.63,8.333333333333334,1,1,0,0,8,2,5,1,390,1121247,1044028.3,236311.34,158403.81,1768.9617,22291.48,5345.8184 +14939,18280,32552,32553,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.4513845,9.407548,6.2508688,11,5,-140.15154,0,3,3,2021,13,1,49,45,1,1,0,29.172157,29.172157,.05,.05,0,0,0,0,0,0,0,0,0,4.2826152,6.4542685,51.05,54.79,57.16,56.15,1.666666666666667,1,1,0,0,12,2,5,1,942,1493617,908596,393408.22,12540.678,0,0,4522.2236 +14939,18280,32553,32552,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,6.966125,6.9278326,0,11,-5,-21.401365,0,2,2,2021,6,0,18,18,1,0,0,6.3868604,6.3868604,.05,.05,0,0,0,0,0,0,0,0,0,3.6370447,0,57.16,56.15,51.05,54.79,10,1,1,0,0,11,2,5,1,942,1493617,908596,393408.22,12540.678,0,0,4522.2236 +14940,18281,32554,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,0,6.0170007,5.9299412,0,0,-941.28156,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.3573194,6.1414776,62.39,56.71,-9,-9,10,1,1,0,0,0,13,2,1,1262,243628.42,55131.996,0,0,0,0,1235.4883 +14941,18282,32555,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.9839215,8.1338758,6.4473724,0,0,-1030.4897,0,3,3,2021,17,6,50,50,1,6,0,6.4910264,6.4910264,.05,.05,0,0,0,0,0,0,0,0,0,0,6.1660218,45.34,35.67,-9,-9,8.333333333333334,1,1,0,0,8,11,4,0,304,50625.723,-2575.2263,0,0,0,0,1131.5569 +14942,18283,32556,-9,-9,-9,1,0,58,0,1,0,2,2,-9,1,1,0,0,0,0,0,-996.63629,0,3,2,2021,21,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.95,52.9,-9,-9,3.333333333333333,1,1,0,0,7,12,1,1,599.5,84404.125,29946.305,0,0,0,434.60699,1345.615 +14942,18283,32557,-9,32556,-9,1,1,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1056.2823,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,599.5,84404.125,29946.305,0,0,0,434.60699,1345.615 +14943,18284,32558,-9,32560,32559,1,0,11,0,0,1,3,0,-9,0,4,0,0,0,0,0,-818.48309,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,2,2,1,836.33331,1238275.8,472703.91,603432.63,0,0,0,1455.0237 +14943,18284,32559,32560,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,0,0,46,2,62.457031,0,3,1,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,159.72984,0,0,1,1,0,0,0,22.6,36.15,50,47,3.333333333333333,2,3,0,0,0,2,2,1,836.33331,1238275.8,472703.91,603432.63,0,0,0,1455.0237 +14943,18284,32560,32559,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,5.6517048,5.6224275,7,-2,-20.906523,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73750365,5.4405928,50,47,22.6,36.15,7,2,3,0,0,0,2,2,1,836.33331,1238275.8,472703.91,603432.63,0,0,0,1455.0237 +14944,18285,32561,-9,32562,-9,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1010.4142,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,5,1,912.5,6665.2207,8422.6367,182160.89,63115.117,5405.7095,0,3389.4072 +14944,18285,32562,-9,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,9.329484,9.4014063,5.903821,0,0,-870.65332,0,2,3,2021,14,3,35,40,1,3,0,37.968128,37.968128,0,0,0,0,0,0,0,0,0,0,0,7.0484247,0,42.85,62.85,-9,-9,5,1,1,0,0,9,4,5,1,912.5,6665.2207,8422.6367,182160.89,63115.117,5405.7095,0,3389.4072 +14944,18286,32563,-9,32562,-9,1,1,19,0,1,0,2,2,-9,0,5,7.2966323,7.5114431,0,0,0,-1030.4622,-9,2,-9,2021,17,6,40,0,1,6,1,5.4635196,5.4635196,0,0,0,0,0,0,0,0,0,0,0,0,0,22.45,54.67,-9,-9,3.333333333333333,1,1,0,0,0,4,3,1,621,-54984.25,0,0,0,0,0,113.57855 +14945,18287,32564,32565,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,50,-3,.69793171,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,56.36,27.07,60.55,29.25,8.333333333333334,1,1,0,0,0,11,2,1,1024,742256.13,553998.94,247347.34,0,0,0,1438.7404 +14945,18287,32565,32564,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,6.8882856,7.1325068,11,3,32.159973,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9785833,60.55,29.25,56.36,27.07,8.333333333333334,1,1,0,0,7,11,2,1,1024,742256.13,553998.94,247347.34,0,0,0,1438.7404 +14946,18288,32566,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,0,7.2140079,7.6752634,0,0,-1172.8789,0,2,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,7.5293903,7.6077123,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,12,3,1,842,0,0,0,0,0,0,480.15469 +14947,18289,32567,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,2,0,6.9598293,7.3272204,0,0,-1055.3445,0,3,3,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.2915006,34.88,39.44,-9,-9,6.666666666666667,1,1,0,0,0,6,3,1,698,568752.38,283350.34,163693.13,0,0,0,1013.4415 +14948,18290,32568,32569,-9,-9,1,0,83,0,0,0,1,1,-9,0,2,0,4.3759589,4.3856082,10,0,129.84941,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.2856718,4.0501308,55.05,44,32.68,35.19,8.333333333333334,1,1,0,0,0,2,3,1,1372,589577,142935.56,145571.03,0,0,0,2344.3398 +14948,18290,32569,32568,-9,-9,1,1,83,0,0,0,2,2,-9,0,2,0,7.2880316,7.6950798,10,0,1.804026,0,3,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,5.1079388,0,0,1,1,0,0,7.5867429,32.68,35.19,55.05,44,3.333333333333333,1,1,0,0,0,2,3,1,1372,589577,142935.56,145571.03,0,0,0,2344.3398 +14949,18291,32570,32571,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,0,0,12,0,-52.836155,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,5.5482125,0,27,1,1,0,3.9618311,0,47.1,23.2,46.32,16.87,10,1,1,0,0,0,11,2,1,2686.5,-22056.434,-33456.078,0,0,0,0,2681.0215 +14949,18291,32571,32570,-9,-9,1,1,72,0,0,0,2,2,-9,0,1,0,7.1586976,6.7572579,12,0,23.492214,0,3,3,2021,14,2,0,0,4,2,0,0,0,.05,.05,0,1,0,32.670467,0,0,1,1,0,0,7.0065851,46.32,16.87,47.1,23.2,8.333333333333334,1,1,0,0,0,11,2,1,2686.5,-22056.434,-33456.078,0,0,0,0,2681.0215 +14950,18292,32572,-9,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,8.4701872,8.7009983,6.8321743,0,0,-872.36719,0,2,2,2021,9,0,40,45,1,0,0,13.751697,13.751697,0,0,0,0,0,0,0,7,0,0,0,5.3654227,6.8613462,44.28,45.81,-9,-9,8.333333333333334,1,1,0,0,14,6,5,0,1613,980358.81,925345.06,219113.8,0,0,0,1902.5051 +14951,18293,32573,32574,-9,-9,1,1,80,0,0,0,1,1,-9,0,4,0,7.3804564,7.3338184,61,-3,-41.543381,0,3,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7808247,7.0949273,51.24,58.84,51.03,42.6,10,1,1,0,0,9,6,2,1,666,992080.38,-45366.059,271170.06,0,0,0,2101.8723 +14951,18293,32574,32573,-9,-9,1,0,83,0,0,0,3,3,-9,0,3,0,5.0087752,4.9984198,12,3,24.982611,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,3.9039111,0,0,1,1,0,3.9499128,4.7857165,51.03,42.6,51.24,58.84,10,1,1,0,0,0,6,2,1,666,992080.38,-45366.059,271170.06,0,0,0,2101.8723 +14952,18294,32575,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,3,0,5.4322715,5.5760484,0,0,-940.84839,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,1.7060206,5.4499073,25.800905,0,1,1,0,1.932353,5.3723893,65.32000000000001,23.75,-9,-9,8.333333333333334,1,1,0,0,0,12,2,1,846,40286.527,18860.451,162948.63,0,0,0,1323.3055 +14953,18295,32576,-9,32579,32577,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1102.8016,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14953,18295,32577,32579,-9,-9,1,1,46,0,2,0,2,2,-9,0,3,8.0317974,8.0382261,0,18,6,-115.48819,0,3,3,2021,8,0,80,40,1,0,0,3.539006,3.539006,0,0,0,0,0,0,0,0,1,0,1,0,0,57.33,53.46,38.77,63.46,5,1,1,0,0,10,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14953,18295,32578,-9,32579,32577,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1204.8081,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14953,18295,32579,32577,-9,-9,1,0,40,0,2,0,2,2,-9,0,5,8.1830254,7.9785061,0,11,-6,-16.946842,0,-9,-9,2021,10,2,29,29,1,2,0,17.117466,17.117466,0,0,0,0,0,0,0,0,1,0,1,2.9189324,0,38.77,63.46,57.33,53.46,6.666666666666667,1,1,0,0,13,2,4,1,728.5,226671.86,-14525.111,209047.42,0,0,0,2734.124 +14954,18296,32580,32581,-9,-9,1,1,33,0,2,0,2,2,-9,0,2,7.5192175,7.9123363,0,15,-1,15.683666,0,3,2,2021,11,0,24,30,1,0,0,10.264864,10.264864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.66,47.04,41.04,47.27,5,2,3,0,0,10,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14954,18296,32581,32580,-9,-9,1,0,34,0,2,0,2,2,-9,1,3,6.6171646,6.6094036,0,15,1,-26.51169,0,3,2,2021,16,4,15,15,1,4,0,6.5242028,6.5242028,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.04,47.27,48.66,47.04,3.333333333333333,2,3,0,0,7,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14954,18296,32582,-9,32581,32580,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.56647,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14954,18296,32583,-9,32581,32580,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-953.03546,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,2,3,1,1634.5,65276.121,48202.898,0,0,0,0,2135.0269 +14955,18297,32584,32585,-9,-9,1,1,80,0,0,0,1,1,-9,0,3,0,7.6489372,7.8091068,50,2,-49.101677,0,3,1,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,2.4193368,123.48398,24.704206,0,1,1,0,0,7.8328171,54,46,52,46,8,2,3,0,0,7,4,3,1,639.5,702854.31,291065.44,315060.75,0,0,0,3123.2292 +14955,18297,32585,32584,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.0200706,7.0713677,50,-2,-48.751842,0,2,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,120,1,1,0,0,6.7982001,52,46,54,46,8,1,1,0,0,0,4,3,1,639.5,702854.31,291065.44,315060.75,0,0,0,3123.2292 +14956,18298,32586,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,7.4993305,7.7939968,0,0,0,-1130.2037,0,2,2,2021,12,2,30,30,1,2,0,7.294848,7.294848,0,0,0,0,0,0,0,0,1,1,0,0,0,38.57,58.06,-9,-9,5,1,1,0,0,12,7,3,1,369,19952.592,-98438.156,0,0,0,0,955.75592 +14956,18299,32587,-9,32586,-9,1,1,22,0,0,0,1,1,1,0,5,8.0495977,8.1856546,0,0,0,-1003.5967,-9,2,-9,2021,6,0,36,0,1,0,1,10.061092,10.061092,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,-9,-9,10,1,1,0,0,1,7,4,1,202,42356.008,-2922.1641,0,0,0,0,986.39099 +14957,18300,32588,32589,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,6.9573259,7.2243848,0,8,6,-35.406322,0,3,3,2021,6,0,24,24,1,0,0,4.9261456,4.9261456,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.66,52.4,41.45,60.44,8.333333333333334,1,1,0,0,10,9,5,1,814.5,1110629.6,822379.25,191028.78,0,0,6032.0723,3658.7344 +14957,18300,32589,32588,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,8.6264715,8.8835335,0,8,-6,16.994867,0,3,3,2021,17,5,55,60,1,5,0,11.295887,11.295887,.05,.05,0,0,0,0,0,2,0,0,0,3.1762486,0,41.45,60.44,62.66,52.4,8.333333333333334,1,1,0,0,10,9,5,1,814.5,1110629.6,822379.25,191028.78,0,0,6032.0723,3658.7344 +14958,18301,32590,32591,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,8.0197811,8.0301981,0,5,1,-53.419662,0,-9,-9,2021,7,0,39,39,1,0,0,7.7318316,7.7318316,0,0,0,0,0,0,0,0,0,0,0,0,0,47.49,55.02,31.83,59.68,10,1,1,0,0,4,2,4,1,915.5,28648.352,-26565.674,0,0,0,0,2655.574 +14958,18301,32591,32590,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,7.7959285,7.5587635,4.4906373,5,-1,40.81406,0,2,2,2021,18,6,33,33,1,6,0,7.3493018,7.3493018,.05,.05,0,0,0,0,0,0,0,0,0,4.791122,0,31.83,59.68,47.49,55.02,6.666666666666667,1,1,0,0,6,2,4,1,915.5,28648.352,-26565.674,0,0,0,0,2655.574 +14959,18302,32592,32593,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,7.6049609,7.7996149,0,32,11,-136.21416,0,2,2,2021,5,0,40,40,1,0,0,6.4547892,6.4547892,.05,.05,0,0,0,0,0,2,1,1,0,5.7743163,0,57.73,54.53,49,48,8.333333333333334,2,3,0,0,10,5,5,1,701,771074.13,499751.69,132664.13,0,0,0,5166.2539 +14959,18302,32593,32592,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.7546129,8.8185415,0,7,-11,-187.33604,0,-9,-9,2021,11,0,40,40,1,2,0,19.047997,19.047997,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,57.73,54.53,7,2,3,0,0,1,5,5,1,701,771074.13,499751.69,132664.13,0,0,0,5166.2539 +14959,18303,32594,-9,32593,32592,1,1,25,0,0,0,1,1,-9,0,4,5.7076631,5.8026218,0,0,0,-1103.1912,0,1,1,2021,15,4,30,20,1,4,1,1.0695819,1.0695819,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.62,46.46,-9,-9,5,2,3,0,0,3,5,2,1,232,-204017.41,0,0,0,0,0,592.13141 +14960,18304,32595,32596,-9,-9,1,1,87,0,0,0,3,3,-9,0,3,0,0,0,57,2,0,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,7.234787,124.25896,66.155136,0,1,1,0,0,0,54,45,52,45,8,4,5,0,0,0,8,2,0,286,508822.75,0,324763.72,0,0,0,2103.8337 +14960,18304,32596,32595,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,0,0,57,-2,0,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52,45,54,45,8,4,5,0,0,0,8,2,0,286,508822.75,0,324763.72,0,0,0,2103.8337 +14961,18305,32597,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,1,0,0,0,0,0,-998.73633,0,2,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,6.0434399,0,51.8,40.09,-9,-9,6.666666666666667,1,1,0,0,0,10,1,1,659,0,0,0,0,0,0,628.33746 +14962,18306,32598,32599,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,6.9358773,7.0069423,0,42,-1,58.005234,0,3,3,2021,7,0,49,30,1,0,0,2.3624926,2.3624926,0,0,0,0,0,0,0,0,0,0,0,7.6084604,0,57.33,53.46,59.71,40.18,8.333333333333334,1,1,0,1,11,5,3,0,399.5,291313.38,72494.047,0,0,0,0,3490.4736 +14962,18306,32599,32598,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,7.4058781,7.5523486,0,42,1,52.107857,0,2,3,2021,10,0,90,90,1,0,0,2.2792296,2.2792296,.05,.05,.05,0,0,0,0,0,0,0,0,7.5686178,0,59.71,40.18,57.33,53.46,8.333333333333334,1,1,0,0,11,5,3,0,399.5,291313.38,72494.047,0,0,0,0,3490.4736 +14963,18307,32600,-9,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,8.420804,8.4410009,0,0,0,-1073.9023,0,2,2,2021,12,0,36,36,1,0,0,9.5379801,9.5379801,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.23,50.71,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,506,42185.039,-26036.998,0,0,0,0,885.47168 +14963,18308,32601,-9,-9,32600,1,0,25,0,0,0,2,2,-9,0,2,8.1445313,7.9840069,0,0,0,-937.74915,0,2,2,2021,12,0,35,35,1,0,1,8.8102427,8.8102427,0,0,0,0,0,0,0,0,0,0,0,0,0,43.6,53.51,-9,-9,6.666666666666667,1,1,0,0,7,2,4,1,62,96427.797,0,0,0,3293.2744,2441.7571,933.42328 +14964,18309,32602,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1022.9723,0,3,3,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,2,3,0,0,0,8,1,0,2716,-103751.43,0,0,0,0,0,798.18719 +14964,18310,32603,32604,32602,-9,1,1,33,0,0,0,1,1,-9,0,3,8.5741539,8.4246883,0,3,5,115.29408,0,3,3,2021,11,0,35,35,1,0,0,16.045826,16.045826,.05,.05,0,0,0,0,0,7,1,1,0,0,0,49.28,50.19,32.71,51.14,8.333333333333334,2,3,0,0,11,8,5,0,240.5,-81513.453,155197.52,0,0,8757.293,0,2842.4014 +14964,18310,32604,32603,-9,-9,1,0,28,0,0,0,2,2,-9,0,3,7.9814916,7.8776293,0,3,-5,124.0289,0,-9,-9,2021,11,2,38,41,1,2,0,9.776186,9.776186,.05,.05,0,0,0,0,0,0,1,1,0,0,0,32.71,51.14,49.28,50.19,3.333333333333333,2,3,0,0,11,8,5,0,240.5,-81513.453,155197.52,0,0,8757.293,0,2842.4014 +14965,18311,32605,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,7.3797178,7.4729424,0,0,-1059.9949,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,2.6365395,0,23.736954,0,1,1,0,.61767286,7.4312963,66.32000000000001,31.33,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,1957,364072.59,103717.48,61832.305,45758.422,0,1813.4813,1500.0977 +14966,18312,32606,32607,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.715519,9.9335766,0,6,3,-74.943756,0,2,2,2021,10,0,50,50,1,0,0,32.912949,32.912949,.05,.05,0,0,0,0,0,0,0,0,0,1.8003581,0,52,54.51,44.02,50.32,5,1,1,0,0,9,11,5,1,990.5,5799046,4711103.5,974585.5,0,10743.046,0,8153.8213 +14966,18312,32607,32606,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,8.1992817,8.185463,0,6,-3,-40.972786,0,1,1,2021,8,0,48,38,1,0,0,9.2739782,9.2739782,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.02,50.32,52,54.51,8.333333333333334,1,1,0,0,9,11,5,1,990.5,5799046,4711103.5,974585.5,0,10743.046,0,8153.8213 +14966,18313,32608,-9,32607,32606,1,1,23,0,0,1,2,0,0,0,3,0,0,0,0,0,-945.7998,-9,1,1,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.57,51.43,-9,-9,5,1,1,0,0,0,11,1,1,523,-76196.508,0,0,0,0,0,0 +14967,18314,32609,-9,-9,-9,1,0,58,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1002.0357,0,2,-9,2021,24,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.64,39.03,-9,-9,1.666666666666667,1,1,0,0,0,9,1,0,538,-21067.539,154067,69257.563,0,0,0,986.42682 +14968,18315,32610,32611,-9,-9,1,1,36,0,0,0,2,2,-9,0,2,8.2744741,8.2635345,0,4,4,-3.8026226,0,-9,-9,2021,21,7,38,38,1,7,0,10.10383,10.10383,.05,.05,0,0,0,0,0,0,0,0,0,2.6344235,0,43.36,46.75,43.88,51.23,5,1,1,0,0,8,10,5,1,680.5,296945.56,60681.598,387830.38,175670.86,0,0,2922.7563 +14968,18315,32611,32610,-9,-9,1,0,32,0,0,0,1,1,-9,0,3,8.6121101,8.5349226,0,4,-4,-24.925837,0,2,2,2021,11,3,37,37,1,3,0,16.174915,16.174915,0,0,0,0,0,0,0,0,0,0,0,1.1290952,0,43.88,51.23,43.36,46.75,8.333333333333334,1,1,0,0,7,10,5,1,680.5,296945.56,60681.598,387830.38,175670.86,0,0,2922.7563 +14969,18316,32612,32613,-9,-9,1,0,55,0,0,0,2,2,-9,1,4,6.7788968,7.1269059,4.9173999,19,11,-128.30029,0,3,3,2021,6,0,14,12,1,0,0,7.0599222,7.0599222,.05,.05,0,0,0,0,0,112,1,0,1,0,4.39219,67.43000000000001,44.57,52.23,55.6,10,1,1,0,0,13,4,4,0,1436,112283.77,49071.887,192194.28,75410.695,0,10443.068,3196.3694 +14969,18316,32613,32612,-9,-9,1,1,44,0,0,0,2,2,-9,1,4,8.7027702,8.5774183,0,19,-11,12.893589,0,3,3,2021,8,0,48,54,1,0,0,12.681339,12.681339,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,52.23,55.6,67.43000000000001,44.57,10,1,1,0,0,14,4,4,0,1436,112283.77,49071.887,192194.28,75410.695,0,10443.068,3196.3694 +14969,18317,32614,-9,32612,32613,1,0,27,0,0,0,2,2,-9,1,4,0,0,0,0,0,-1099.6548,0,2,2,2021,6,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,57.16,56.15,-9,-9,10,1,1,1,0,0,4,2,0,443,286939.41,0,0,0,0,0,801.52594 +14969,18318,32615,-9,32612,32613,1,1,22,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1160.1488,0,2,2,2021,11,4,0,0,3,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,64.48,23.1,-9,-9,10,1,1,1,0,0,4,1,0,169,0,0,0,0,0,0,2010.9491 +14970,18319,32616,32617,-9,-9,1,1,28,1,1,0,1,1,-9,0,4,8.245223,8.3624659,0,3,2,-13.486345,0,-9,-9,2021,6,0,8,46,1,0,0,60.467072,60.467072,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.79,55.86,8.333333333333334,1,1,0,0,2,11,4,1,1037,-6687.4014,37968.652,181534.88,176566.72,0,0,2407.6472 +14970,18319,32617,32616,-9,-9,1,0,26,1,1,0,2,2,-9,0,4,6.5339479,6.9111948,0,3,-2,-13.177993,0,2,-9,2021,7,0,14,39,1,0,0,7.7241631,7.7241631,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,60.12,54.8,8.333333333333334,1,1,0,0,8,11,4,1,1037,-6687.4014,37968.652,181534.88,176566.72,0,0,2407.6472 +14970,18319,32618,-9,32617,32616,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1097.8989,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,11,4,1,1037,-6687.4014,37968.652,181534.88,176566.72,0,0,2407.6472 +14971,18320,32619,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,6.8150549,6.6971121,0,0,-883.19574,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5419488,46.71,44.73,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,1755,692444.25,113599.99,157104.63,0,0,0,824.32465 +14972,18321,32620,32621,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.6523085,7.244154,0,8,0,56.528629,0,3,-9,2021,12,0,38,39,1,0,0,5.6667786,5.6667786,0,0,0,0,0,0,0,0,0,0,0,0,0,36.02,46.73,44.42,43.19,3.333333333333333,1,1,0,0,9,11,4,0,457,123407.92,77789.5,129322.78,0,0,2641.9993,1545.4655 +14972,18321,32621,32620,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,7.9404583,7.4001846,0,8,0,87.983139,0,3,-9,2021,12,0,40,40,1,0,0,8.2833977,8.2833977,0,0,0,0,0,0,0,0,0,0,0,0,0,44.42,43.19,36.02,46.73,5,1,1,0,0,9,11,4,0,457,123407.92,77789.5,129322.78,0,0,2641.9993,1545.4655 +14973,18322,32622,32623,-9,-9,1,1,58,0,0,0,2,2,-9,1,3,8.8532715,9.1866398,7.2235942,7,2,26.053068,0,-9,-9,2021,9,0,44,50,1,0,0,20.365341,20.365341,.05,.05,0,0,0,0,0,0,1,1,0,4.008368,7.2719498,58.47,44.69,18.34,43.34,6.666666666666667,1,1,0,0,6,10,5,1,660.5,1068601.9,594049.63,456270.63,111566.62,0,0,5498.0928 +14973,18322,32623,32622,-9,-9,1,0,56,0,0,0,1,1,-9,0,2,8.854661,8.9009838,0,40,-2,-30.859997,0,2,2,2021,27,10,60,47,1,10,0,16.14216,16.14216,.05,.05,0,0,0,0,0,7,1,1,0,0,0,18.34,43.34,58.47,44.69,3.333333333333333,1,1,0,0,7,10,5,1,660.5,1068601.9,594049.63,456270.63,111566.62,0,0,5498.0928 +14974,18323,32624,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,0,0,-903.22778,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.129107,0,54.37,54.8,-9,-9,8.333333333333334,1,1,0,0,0,1,1,0,714,-1984.6108,0,48146.859,0,0,0,238.67082 +14975,18324,32625,32626,-9,-9,1,1,65,0,0,0,3,3,-9,0,2,0,6.7228379,6.80897,2,-1,-69.818687,0,3,3,2021,10,2,0,24,4,2,0,0,0,0,0,0,1,7.4354992,56.589977,64.785767,0,1,1,0,0,6.7326541,64.3,16.47,38.56,23.07,10,1,1,0,0,8,12,2,0,599.5,1418479.9,138469.14,405357.63,0,0,0,2820.0474 +14975,18324,32626,32625,-9,-9,1,0,66,0,0,0,2,2,-9,0,1,0,0,0,2,1,60.451611,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,0,51.684422,0,0,1,1,0,0,0,38.56,23.07,64.3,16.47,5,1,1,0,0,0,12,2,0,599.5,1418479.9,138469.14,405357.63,0,0,0,2820.0474 +14976,18325,32627,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,2,8.7714653,8.8911972,6.871376,0,0,-961.73175,0,2,3,2021,13,1,37,38,1,1,0,19.352234,19.352234,0,0,0,0,0,0,0,0,1,1,0,7.3899264,0,34.54,45.47,-9,-9,5,1,1,0,1,10,13,4,1,276,1023570,189269.7,386497.72,35468.676,0,0,2463.1909 +14977,18326,32628,-9,32630,32631,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-948.76709,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32629,-9,32630,32631,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1089.8105,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32630,32631,-9,-9,1,0,30,1,3,0,2,2,-9,0,2,0,0,0,14,-2,-13.521985,0,2,2,2021,11,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.59,32.67,57.95,38.49,8.333333333333334,1,1,0,0,8,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32631,32630,-9,-9,1,1,32,1,3,0,2,2,-9,0,2,8.6914368,8.8098831,0,7,2,43.888622,0,-9,-9,2021,8,1,54,52,1,1,0,14.481063,14.481063,0,0,0,0,0,0,0,0,1,1,0,0,0,57.95,38.49,55.59,32.67,10,1,1,0,0,9,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14977,18326,32632,-9,32630,32631,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1017.2516,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,1,589.40002,122446.08,11272.203,91755.313,49175.121,595.37274,0,2562.5361 +14978,18327,32633,32634,-9,-9,1,0,53,0,0,0,3,3,-9,0,3,7.7644296,7.9609113,0,7,-2,88.778778,0,3,3,2021,11,0,40,70,1,0,0,7.4588685,7.4588685,0,0,0,0,0,0,0,7,0,0,0,4.1150446,0,50.03,52.62,59.32,49.66,8.333333333333334,1,1,0,0,8,9,5,1,588,1041552.8,486289.78,488296.19,79035.453,0,0,8782.6904 +14978,18327,32634,32633,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,9.6595535,9.6290836,0,7,2,-10.143785,0,2,2,2021,6,0,30,42,1,0,0,62.40855,62.40855,.05,.05,.05,0,0,0,0,2,0,0,0,7.5607715,0,59.32,49.66,50.03,52.62,8.333333333333334,1,1,0,0,8,9,5,1,588,1041552.8,486289.78,488296.19,79035.453,0,0,8782.6904 +14978,18328,32635,-9,32633,32634,1,1,24,0,0,0,2,2,-9,0,4,6.659771,6.7284274,0,0,0,-1062.6793,0,3,2,2021,4,0,35,30,1,0,1,3.5609837,3.5609837,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,9,2,1,793,-74918.125,-54308.02,0,0,41211.027,0,294.40909 +14978,18329,32636,-9,32633,32634,1,1,23,0,0,0,2,2,-9,0,3,4.4415627,4.5327377,0,0,0,-1101.1494,0,3,2,2021,12,0,40,32,1,0,1,.28275123,.28275123,0,0,0,0,0,0,0,0,0,0,0,2.946054,0,58.47,50.22,-9,-9,1.666666666666667,1,1,0,0,5,9,2,1,645,0,0,0,0,0,0,451.18549 +14979,18330,32637,-9,-9,-9,1,1,59,0,0,0,3,3,-9,0,3,0,0,0,0,0,-951.05127,-9,-9,-9,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.058408882,0,40.35,59.99,-9,-9,8.333333333333334,1,1,0,0,11,9,1,0,240,255706.67,200776.88,0,0,931.13965,3547.2063,179.91167 +14980,18331,32638,-9,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.6573954,8.4863672,0,0,0,-1072.6411,0,2,2,2021,18,6,38,42,1,6,0,13.160466,13.160466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.47,55.44,-9,-9,6.666666666666667,3,4,0,0,10,8,5,1,593,1267909.9,980788.31,214747.38,2748.854,0,0,1582.1713 +14981,18332,32639,32640,-9,-9,1,1,39,0,0,0,1,1,-9,0,2,8.3946705,8.136282,0,17,2,26.125999,0,-9,-9,2021,20,5,42,39,1,5,0,11.830979,11.830979,.05,.05,0,0,0,0,0,0,0,0,0,0,0,14.42,60.08,30.59,51.49,3.333333333333333,1,1,0,0,13,8,5,1,542,394111.13,252375.69,396394.44,210559.89,0,0,3626.2329 +14981,18332,32640,32639,-9,-9,1,0,37,0,0,0,1,1,-9,0,2,8.6696949,8.6593075,0,12,-2,-52.256783,0,2,1,2021,9,2,42,42,1,2,0,13.199677,13.199677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.59,51.49,14.42,60.08,3.333333333333333,4,5,0,0,10,8,5,1,542,394111.13,252375.69,396394.44,210559.89,0,0,3626.2329 +14982,18333,32641,-9,-9,-9,1,0,84,0,0,0,3,3,-9,0,3,0,5.3870993,5.3223224,0,0,-1021.2551,-9,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.1378164,56.94,49.53,-9,-9,10,1,1,0,0,0,6,2,1,1177,219998.08,0,206925.56,0,0,0,949.58704 +14983,18334,32642,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,8.9516573,8.9712524,0,0,-1023.1243,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,9.0411329,9.2389555,59.04,51.29,-9,-9,8.333333333333334,1,1,0,0,11,12,5,1,1280,750360.13,0,437217.5,0,0,0,12103.57 +14984,18335,32643,-9,32644,-9,1,0,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-942.27625,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,3,0,320,204656.63,204018.03,240383.09,90263.484,0,0,2327.4761 +14984,18335,32644,-9,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.9759636,7.6377487,0,0,0,-1037.2992,0,2,-9,2021,20,8,40,35,1,8,0,7.6919899,7.6919899,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.39,29.02,-9,-9,6.666666666666667,1,1,0,0,6,10,3,0,320,204656.63,204018.03,240383.09,90263.484,0,0,2327.4761 +14985,18336,32645,32646,-9,-9,1,1,35,0,3,0,2,2,-9,0,5,9.5338392,9.2714176,0,5,0,-14.681265,-9,2,3,2021,8,0,80,0,1,0,0,14.846546,14.846546,0,0,0,0,0,0,0,0,1,1,0,6.5440559,0,54.1,59.11,46.8,55.75,1.666666666666667,1,1,0,0,9,5,5,0,1538.6666,99388.102,0,340585.53,131001.13,0,-80.125237,5609.0259 +14985,18336,32646,32645,-9,-9,1,0,35,0,3,0,3,3,-9,0,4,7.717145,7.6536479,0,5,0,79.8162,0,1,3,2021,13,1,32,29,1,1,0,5.7701926,5.7701926,0,0,0,0,0,0,0,0,1,1,0,7.2333674,0,46.8,55.75,54.1,59.11,8.333333333333334,1,1,0,0,7,5,5,0,1538.6666,99388.102,0,340585.53,131001.13,0,-80.125237,5609.0259 +14985,18336,32647,-9,32646,32645,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1167.4495,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,5,0,1538.6666,99388.102,0,340585.53,131001.13,0,-80.125237,5609.0259 +14986,18337,32648,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1130.8615,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.41,45.11,-9,-9,1.666666666666667,1,1,0,0,9,12,1,1,393,172821.98,0,153330.81,0,0,0,579.18536 +14987,18338,32649,-9,-9,-9,1,0,31,0,0,0,1,1,-9,0,3,9.0704689,9.020155,0,0,0,-1027.3429,0,1,2,2021,12,0,42,42,1,0,0,20.305092,20.305092,.05,.05,0,0,0,0,0,0,0,0,0,1.4867967,0,46.23,49.17,-9,-9,1.666666666666667,2,3,0,0,6,8,5,0,257,462582.16,94956.125,460598.25,0,0,0,3687.1638 +14987,18339,32650,-9,-9,-9,1,0,25,0,0,0,1,1,-9,0,4,7.7473121,7.5608191,0,0,0,-915.05817,-9,-9,-9,2021,11,0,40,0,1,2,0,6.8735909,6.8735909,0,0,0,0,0,0,0,0,0,0,0,0,0,47,57,-9,-9,7,4,6,0,0,1,8,3,0,1426,44174.309,0,0,0,0,0,1366.0723 +14988,18340,32651,-9,32653,32652,1,0,16,0,1,1,2,0,-9,0,3,0,0,0,0,0,-1052.9243,-9,2,1,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.1879449,0,58.47,50.22,-9,-9,6.666666666666667,1,1,0,0,0,6,5,1,2095,651348.94,488391.19,178839.36,26336.5,0,0,6545.2603 +14988,18340,32652,32653,-9,-9,1,1,60,0,1,0,1,1,-9,0,4,9.581893,9.7333298,8.3068933,39,5,60.567944,0,2,2,2021,9,0,49,49,1,0,0,38.588299,38.588299,0,0,0,0,0,0,0,0,0,0,0,7.428371,8.9588842,47.41,56.4,61.43,43.34,8.333333333333334,1,1,0,0,7,6,5,1,2095,651348.94,488391.19,178839.36,26336.5,0,0,6545.2603 +14988,18340,32653,32652,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,0,0,0,39,-5,-62.800591,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3.325959,0,61.43,43.34,47.41,56.4,10,1,1,0,0,0,6,5,1,2095,651348.94,488391.19,178839.36,26336.5,0,0,6545.2603 +14989,18341,32654,32655,-9,-9,1,0,44,0,2,0,1,1,-9,0,3,8.8357162,8.8511314,0,27,-1,63.153526,0,2,1,2021,10,1,64,60,1,1,0,14.63081,14.63081,.05,.05,0,0,0,0,0,0,1,1,0,5.5951056,0,52.99,51.28,45.91,59.89,6.666666666666667,1,1,0,0,6,5,4,1,452,263589.19,42140.563,347854.19,208443.55,0,0,3931.3032 +14989,18341,32655,32654,-9,-9,1,1,45,0,2,0,1,1,-9,0,4,7.9052758,7.6661243,0,27,1,-85.684906,0,2,2,2021,7,0,37,35,1,0,0,10.435781,10.435781,.05,.05,.05,0,0,0,0,0,1,1,0,1.1369259,0,45.91,59.89,52.99,51.28,6.666666666666667,1,1,0,0,6,5,4,1,452,263589.19,42140.563,347854.19,208443.55,0,0,3931.3032 +14990,18342,32656,32657,-9,-9,1,1,34,0,0,0,1,1,-9,0,4,8.4701748,8.6690674,0,7,5,-105.48901,0,-9,-9,2021,11,0,47,47,1,0,0,15.910013,15.910013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,56.73,52.27,58.55,6.666666666666667,1,1,0,0,5,2,5,1,303,236568.28,202008.33,226116.23,173093.69,5101.6748,0,4638.3838 +14990,18342,32657,32656,-9,-9,1,0,29,0,0,0,2,2,-9,0,5,8.3068743,8.0317955,0,7,-5,80.738831,0,2,1,2021,7,0,40,42,1,0,0,12.370559,12.370559,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.27,58.55,44.19,56.73,8.333333333333334,4,2,0,0,9,2,5,1,303,236568.28,202008.33,226116.23,173093.69,5101.6748,0,4638.3838 +14991,18343,32658,32659,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,9.3185263,9.7145176,8.4317055,7,14,-105.16734,0,2,2,2021,6,0,35,35,1,0,0,30.921944,30.921944,0,0,.05,0,0,0,0,0,0,0,0,1.9379238,8.6102962,62.39,56.71,58.89,48.6,8.333333333333334,1,1,0,0,14,8,5,1,1635,6929679,1750503.5,2981696,0,0,0,6002.3047 +14991,18343,32659,32658,-9,-9,1,0,59,0,0,0,1,1,-9,0,3,8.1842518,8.5399952,0,7,-14,-13.218,-9,-9,-9,2021,8,0,20,0,1,0,0,22.412159,22.412159,0,0,0,0,0,0,0,0,0,0,0,0,0,58.89,48.6,62.39,56.71,8.333333333333334,1,1,0,0,4,8,5,1,1635,6929679,1750503.5,2981696,0,0,0,6002.3047 +14992,18344,32660,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,7.1210003,7.1906772,0,0,-941.67523,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,.12597083,6.7908483,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,820,195698.86,236254.05,0,0,0,0,968.19135 +14993,18345,32661,-9,32662,-9,1,1,14,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1092.2015,-9,2,-9,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,1,0,1283,94255.656,0,0,0,4071.7627,360.99817,0 +14993,18345,32662,-9,-9,-9,1,0,48,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1096.0923,0,3,3,2021,19,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43.27,19.65,-9,-9,3.333333333333333,1,1,0,0,6,9,1,0,1283,94255.656,0,0,0,4071.7627,360.99817,0 +14994,18346,32663,32664,-9,-9,1,0,45,0,0,0,1,1,-9,0,4,8.9947605,9.3224688,0,8,-1,-115.94061,0,2,2,2021,15,3,38,36,1,3,0,32.015682,32.015682,.05,.05,0,0,0,0,0,0,0,0,0,3.2620203,0,31.63,63.72,45.91,59.89,5,1,1,0,0,10,8,5,1,611,1076587,894676.63,0,0,0,409.91666,5573.27 +14994,18346,32664,32663,-9,-9,1,1,46,0,0,0,1,1,-9,0,4,8.5501709,8.8496695,0,8,1,-6.5590539,0,2,1,2021,10,0,46,37,1,0,0,17.169329,17.169329,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.91,59.89,31.63,63.72,1.666666666666667,1,1,0,0,8,8,5,1,611,1076587,894676.63,0,0,0,409.91666,5573.27 +14995,18347,32665,32667,-9,-9,1,1,35,1,1,0,1,1,-9,0,5,8.7124319,7.9796104,0,3,-5,-128.02135,0,-9,-9,2021,8,1,40,35,1,1,0,18.979158,18.979158,.05,.05,0,0,0,0,0,0,1,1,0,4.4577579,0,58.05,54.52,31.38,54.62,8.333333333333334,1,1,0,0,10,2,5,1,1477.6666,357288.5,139727.39,0,0,0,0,3532.197 +14995,18347,32666,-9,32667,32665,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1003.8899,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,1477.6666,357288.5,139727.39,0,0,0,0,3532.197 +14995,18347,32667,32665,-9,-9,1,0,40,1,1,0,1,1,-9,0,3,8.6317749,8.678462,0,3,5,-76.744774,0,-9,-9,2021,18,7,32,37,1,7,0,21.230999,21.230999,.05,.05,0,0,0,0,0,0,1,1,0,3.0152545,0,31.38,54.62,58.05,54.52,8.333333333333334,1,1,0,0,14,2,5,1,1477.6666,357288.5,139727.39,0,0,0,0,3532.197 +14996,18348,32668,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-968.05792,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,65.38,25.53,-9,-9,10,1,1,0,0,0,13,1,0,2817,217579.02,0,0,0,0,0,2522.3945 +14997,18349,32669,32670,-9,-9,1,0,49,0,0,0,1,1,-9,0,4,8.8136387,8.8049173,0,28,-2,-67.908821,0,2,2,2021,19,7,45,45,1,7,0,18.276657,18.276657,.05,.05,0,0,0,0,0,0,0,0,0,2.9245389,0,39.33,58.88,47.78,44.19,8.333333333333334,1,1,0,0,10,5,5,1,692.5,1855098.8,1505020.8,330829.38,0,0,0,5154.8818 +14997,18349,32670,32669,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.8971081,8.8627567,0,28,2,-44.888443,0,2,2,2021,11,1,49,47,1,1,0,17.135456,17.135456,.05,.05,0,0,0,0,0,0,0,0,0,2.3566477,0,47.78,44.19,39.33,58.88,8.333333333333334,1,1,0,0,10,5,5,1,692.5,1855098.8,1505020.8,330829.38,0,0,0,5154.8818 +14998,18350,32671,-9,32673,32672,1,1,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1126.1791,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,4,1,286.66666,231574.86,-29941.18,275779.13,51411.156,0,0,2089.5039 +14998,18350,32672,32673,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,7.8280945,7.8558984,0,19,9,133.06136,0,-9,-9,2021,13,2,40,40,1,2,0,7.9468498,7.9468498,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.65,56.19,43.93,58.46,6.666666666666667,1,1,0,0,7,11,4,1,286.66666,231574.86,-29941.18,275779.13,51411.156,0,0,2089.5039 +14998,18350,32673,32672,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,7.5370793,7.5687103,0,19,0,-31.199015,0,2,2,2021,14,2,40,44,1,2,0,7.5688558,7.5688558,0,0,0,0,0,0,0,0,1,1,0,0,0,43.93,58.46,39.65,56.19,6.666666666666667,1,1,0,0,9,11,4,1,286.66666,231574.86,-29941.18,275779.13,51411.156,0,0,2089.5039 +14999,18351,32674,32675,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,6.4418879,6.262012,48,10,-14.760199,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.4810071,59.89,42.51,55.37,48.71,8.333333333333334,1,1,0,0,0,7,4,1,503,1677322.3,426738.44,860340.38,0,26310.979,0,3803.124 +14999,18351,32675,32674,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,8.4579058,8.5008307,48,-10,15.262157,0,2,1,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1701493,8.239234,55.37,48.71,59.89,42.51,8.333333333333334,1,1,0,0,9,7,4,1,503,1677322.3,426738.44,860340.38,0,26310.979,0,3803.124 +15000,18352,32676,-9,-9,-9,1,0,32,0,0,0,1,1,-9,0,1,8.4596195,8.1261749,0,0,0,-974.17145,0,3,3,2021,23,8,39,40,1,8,1,13.509538,13.509538,0,0,0,0,0,0,0,2,1,0,1,0,0,41.56,21.5,-9,-9,3.333333333333333,2,3,0,0,13,8,5,0,757.5,60382.047,0,0,0,0,0,1759.6854 +15000,18352,32677,-9,32676,-9,1,0,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1139.6433,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,0,757.5,60382.047,0,0,0,0,0,1759.6854 +15000,18353,32678,-9,-9,-9,1,1,22,0,0,0,2,2,0,0,3,0,0,0,0,0,-953.25909,-9,3,3,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,6.8961959,0,54.37,54.8,-9,-9,6.666666666666667,2,3,0,0,2,8,1,0,1954.6666,101508.88,0,0,0,478.63123,0,255.53741 +15000,18353,32679,-9,-9,32678,1,1,5,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1043.2592,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,1954.6666,101508.88,0,0,0,478.63123,0,255.53741 +15000,18353,32680,-9,-9,32678,1,0,3,0,0,1,3,0,-9,0,4,0,0,0,0,0,-967.64587,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,1,0,1954.6666,101508.88,0,0,0,478.63123,0,255.53741 +15000,18354,32681,-9,-9,-9,1,0,19,0,0,0,1,1,1,0,3,0,0,0,0,0,-1089.3904,-9,3,3,2021,25,10,0,0,3,10,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,41,55,-9,-9,5,2,3,1,0,0,8,2,0,1326,62890.57,0,0,0,0,0,1241.0875 +15001,18355,32682,32683,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.0791063,7.0185938,37,1,-40.657352,0,2,2,2021,3,0,0,0,4,0,0,0,0,0,0,0,1,0,76.904739,0,0,1,0,1,0,7.1293535,51.41,56.15,54.96,53.17,10,1,1,0,0,7,2,3,1,2182.5,790750.13,335356.13,267061.94,0,0,0,1017.1886 +15001,18355,32683,32682,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,7.1810846,7.0326734,37,-1,-87.248718,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,7.1698275,54.96,53.17,51.41,56.15,6.666666666666667,1,1,0,0,0,2,3,1,2182.5,790750.13,335356.13,267061.94,0,0,0,1017.1886 +15001,18356,32684,-9,32683,32682,1,1,35,0,0,0,1,1,-9,0,3,7.785728,7.25385,0,0,0,-1127.6475,0,2,2,2021,9,1,10,10,1,1,0,24.761282,24.761282,.05,.05,0,0,0,0,0,0,1,0,1,2.7608724,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,1,8,2,3,1,1363,-22240.516,-25436.592,0,0,0,0,1509.9218 +15001,18357,32685,-9,32683,32682,1,1,34,0,0,0,1,1,-9,0,3,6.1656184,6.3402095,0,0,0,-1036.2793,0,2,2,2021,30,10,40,40,1,10,0,1.210101,1.210101,0,0,0,0,0,0,0,0,1,0,1,0,0,16.21,63.38,-9,-9,0,1,1,0,1,10,2,2,1,402,-175874.23,0,0,0,0,0,541.27112 +15002,18358,32686,32687,-9,-9,1,1,50,0,0,0,1,1,-9,0,3,8.5220003,8.6329346,0,3,-2,-104.33964,0,-9,-9,2021,20,9,36,36,1,9,0,15.930533,15.930533,0,0,0,0,0,0,0,0,0,0,0,5.8213148,0,31.75,58.32,25.08,62.98,5,1,1,0,0,8,9,4,1,4540,2376140.5,1365961.8,1292982,310917.75,0,0,1567.6355 +15002,18358,32687,32686,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,0,0,0,3,2,52.630539,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,7,0,0,0,2.0793028,0,25.08,62.98,31.75,58.32,3.333333333333333,1,1,1,0,3,9,4,1,4540,2376140.5,1365961.8,1292982,310917.75,0,0,1567.6355 +15003,18359,32688,32689,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,8.0648537,8.0262041,0,9,-4,5.6064434,0,3,2,2021,19,7,35,35,1,7,0,10.080188,10.080188,0,0,0,0,0,0,0,0,1,1,0,2.2647114,0,39.25,52.26,54.78,45.49,3.333333333333333,1,1,0,0,10,12,5,1,534.5,1421664.5,1179828.9,280837.94,0,0,0,4014.7358 +15003,18359,32689,32688,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,8.3479052,8.634923,0,9,4,32.124557,0,3,3,2021,12,0,40,40,1,0,0,13.289404,13.289404,.05,.05,0,0,0,0,0,0,1,1,0,2.7391877,0,54.78,45.49,39.25,52.26,3.333333333333333,1,1,0,0,10,12,5,1,534.5,1421664.5,1179828.9,280837.94,0,0,0,4014.7358 +15004,18360,32690,32691,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,0,6.8111887,6.949945,35,3,9.1878281,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8377156,6.8046451,53.54,49.68,56.01,27.43,8.333333333333334,1,1,0,0,0,6,3,1,601,923354.06,619664.88,199304.75,0,3238.9668,16377.49,3193.2671 +15004,18360,32691,32690,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.5924811,7.7532015,34,-3,23.046518,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.8056355,7.7203622,56.01,27.43,53.54,49.68,8.333333333333334,1,1,0,0,0,6,3,1,601,923354.06,619664.88,199304.75,0,3238.9668,16377.49,3193.2671 +15005,18361,32692,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.8713484,9.0728254,0,0,0,-1071.6516,0,2,3,2021,20,7,55,55,1,7,0,13.124238,13.124238,.05,.05,0,0,0,0,0,7,0,0,0,0,0,31.15,45.61,-9,-9,3.333333333333333,1,1,0,0,9,11,5,1,585,522065.91,103396.36,234232.47,0,0,0,2783.2275 +15005,18362,32693,-9,32692,-9,1,0,23,0,0,0,2,2,-9,0,4,7.9360409,8.0243769,0,0,0,-1113.4771,0,1,-9,2021,15,3,40,8,1,3,1,8.0392809,8.0392809,.05,.05,0,0,0,0,0,2,0,0,0,0,0,45.26,50.66,-9,-9,1.666666666666667,1,1,0,0,7,11,4,1,4510,-86263.992,92717.078,0,0,0,0,1613.6975 +15006,18363,32694,32695,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,8.3383322,8.3780346,46,7,7.6151056,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.6368132,8.2882738,55.96,49.93,64.23,44.69,8.333333333333334,1,1,0,0,0,4,4,1,1934,1451319.9,829684,324214.06,0,0,0,3732.6611 +15006,18363,32695,32694,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,6.3204355,6.5903869,46,-7,-5.9809241,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0451519,6.3552799,64.23,44.69,55.96,49.93,8.333333333333334,1,1,0,0,8,4,4,1,1934,1451319.9,829684,324214.06,0,0,0,3732.6611 +15007,18364,32696,-9,-9,-9,1,0,71,0,0,0,1,1,-9,0,4,0,6.8705192,6.7185168,0,0,-974.97137,0,-9,3,2021,18,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5737026,6.638854,31.63,53.07,-9,-9,8.333333333333334,1,1,0,0,0,9,2,1,1299,0,0,0,0,0,0,1129.9156 +15008,18365,32697,32698,-9,-9,1,1,62,0,0,0,1,1,-9,0,5,0,8.5290594,8.6433849,41,1,22.479622,0,2,3,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.2814736,8.8244581,50.54,62.09,57.16,56.15,6.666666666666667,1,1,0,0,5,7,4,1,447.5,2293283.3,1382469.3,569821.5,0,0,0,2979.5854 +15008,18365,32698,32697,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,0,4.8871651,5.1411223,41,-1,50.651142,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,4.8223352,4.9952369,57.16,56.15,50.54,62.09,8.333333333333334,1,1,0,0,5,7,4,1,447.5,2293283.3,1382469.3,569821.5,0,0,0,2979.5854 +15009,18366,32699,32700,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,7.2548428,7.0813985,0,20,-8,-40.686459,0,2,2,2021,11,0,15,8,1,0,0,12.443261,12.443261,.05,.05,0,0,0,0,0,2,0,0,0,0,0,58.58,22.16,40.7,49.98,8.333333333333334,1,1,0,0,12,2,5,1,377.5,379719.56,274985.94,143129.16,49805.422,3494.8801,3317.6938,2928.2979 +15009,18366,32700,32699,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.85217,9.0522594,0,20,8,-18.157955,0,2,2,2021,17,6,30,38,1,6,0,25.228767,25.228767,.05,.05,0,0,0,0,0,0,0,0,0,6.1480041,0,40.7,49.98,58.58,22.16,8.333333333333334,1,1,0,0,15,2,5,1,377.5,379719.56,274985.94,143129.16,49805.422,3494.8801,3317.6938,2928.2979 +15010,18367,32701,32702,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,50,-5,-83.815659,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,52.55,47.38,48.68,32.15,8.333333333333334,1,1,0,0,0,11,3,1,471.5,1153322.8,418387.03,398410.88,0,0,0,2321.0823 +15010,18367,32702,32701,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,7.7332191,7.4950132,50,5,-6.3087354,0,3,3,2021,12,0,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6601973,48.68,32.15,52.55,47.38,8.333333333333334,1,1,0,0,0,11,3,1,471.5,1153322.8,418387.03,398410.88,0,0,0,2321.0823 +15011,18368,32703,32705,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,8.5574636,8.794302,0,3,1,-17.366693,0,2,2,2021,10,0,45,42,1,1,0,11.619607,11.619607,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.32,53.5,51,52.08,8.333333333333334,1,1,0,0,12,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15011,18368,32704,-9,32705,32703,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1142.5741,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15011,18368,32705,32703,-9,-9,1,0,35,0,2,0,2,2,-9,0,4,7.1343598,7.0636086,0,3,-1,-40.187054,0,2,-9,2021,12,0,17,17,1,0,0,8.0833015,8.0833015,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,52.08,45.32,53.5,6.666666666666667,1,1,0,0,11,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15011,18368,32706,-9,32705,32703,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1026.4587,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,11,4,1,877.25,47006.57,17018.193,56867.859,38053.633,0,1227.0541,2451.8958 +15012,18369,32707,32708,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,0,0,58,-1,-3.5705192,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,51,60.12,54.8,6.666666666666667,1,1,0,0,0,7,2,0,431.5,878174.75,0,864241.25,0,0,0,566.89331 +15012,18369,32708,32707,-9,-9,1,1,78,0,0,0,1,1,-9,0,4,0,4.3370333,4.1424513,58,1,-81.331718,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,4.8136077,0,0,1,1,0,0,4.4217405,60.12,54.8,54,51,8.333333333333334,1,1,0,0,8,7,2,0,431.5,878174.75,0,864241.25,0,0,0,566.89331 +15013,18370,32709,-9,32712,-9,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.2397,-9,3,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15013,18370,32710,-9,32712,-9,1,0,8,1,3,1,3,0,-9,0,4,0,0,0,0,0,-974.63196,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,3,4,-9,0,0,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15013,18370,32711,-9,32712,-9,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1122.9291,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15013,18370,32712,-9,-9,-9,1,0,27,1,3,0,3,3,-9,0,4,0,0,0,0,0,-1069.1245,0,2,2,2021,0,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.32,59.62,-9,-9,8.333333333333334,3,4,1,1,1,2,1,0,821.25,19243.889,0,0,0,0,0,1064.1667 +15014,18371,32713,32714,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,0,1.8583591,1.7540233,52,-4,31.277534,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,2.4053302,2.0616038,55.56,51.53,50,47,10,2,3,0,0,8,4,2,1,330,384273.5,146469.13,138481.73,0,0,0,1031.0775 +15014,18371,32714,32713,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,6.5344958,6.603559,10,4,95.379448,-9,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.970171,50,47,55.56,51.53,7,2,3,0,0,0,4,2,1,330,384273.5,146469.13,138481.73,0,0,0,1031.0775 +15015,18372,32715,32716,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.8202581,8.6807089,0,9,9,-58.446777,0,2,2,2021,12,0,37,45,1,0,0,24.007996,24.007996,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.87,58.55,32.83,24.48,3.333333333333333,1,1,0,0,12,7,5,1,1413.5,183264.8,149018.09,255525.78,32333.473,0,0,3530.4348 +15015,18372,32716,32715,-9,-9,1,0,48,0,0,0,2,2,-9,0,1,7.8280892,7.8456211,0,26,0,14.024414,0,2,3,2021,16,4,15,10,1,4,0,18.494829,18.494829,.05,.05,0,0,0,0,0,0,1,1,0,5.340476,0,32.83,24.48,48.87,58.55,3.333333333333333,1,1,0,1,12,7,5,1,1413.5,183264.8,149018.09,255525.78,32333.473,0,0,3530.4348 +15016,18373,32717,-9,-9,-9,1,1,34,0,0,0,2,2,-9,1,5,0,0,0,0,0,-971.31055,-9,2,2,2021,14,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,38.49,62.46,-9,-9,10,1,1,0,1,0,10,1,0,348,35620,0,0,0,0,0,1079.1549 +15017,18374,32718,-9,-9,-9,1,1,39,0,0,0,1,1,-9,0,4,8.6140442,8.1337929,0,0,0,-1108.5977,0,2,2,2021,12,1,38,40,1,1,0,11.582185,11.582185,.05,.05,0,0,0,0,0,0,0,0,0,0,0,33.2,63.27,-9,-9,6.666666666666667,1,1,0,0,8,11,4,1,283,6917.1841,89520.781,0,0,2715.3047,2875.769,2420.3577 +15018,18375,32719,-9,32720,-9,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-988.83136,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,1,0,281,-172888.91,0,0,0,7740.4385,0,868.07574 +15018,18375,32720,-9,-9,-9,1,0,33,1,3,0,2,2,-9,1,4,0,0,0,0,0,-1066.3246,0,2,2,2021,25,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,18.87,64.38,-9,-9,6.666666666666667,1,1,1,1,0,2,1,0,281,-172888.91,0,0,0,7740.4385,0,868.07574 +15019,18376,32721,-9,32722,32724,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-981.5451,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15019,18376,32722,32724,-9,-9,1,0,41,0,2,0,1,1,-9,0,3,6.8094964,6.3586378,0,9,1,29.352757,-9,3,3,2021,11,0,15,0,1,0,0,5.3289967,5.3289967,0,0,0,0,0,0,0,0,0,0,0,0,0,48,52.43,54.2,57.49,8.333333333333334,1,1,0,0,8,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15019,18376,32723,-9,32722,32724,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.71228,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15019,18376,32724,32722,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.3864994,10.189513,0,8,-1,7.4681296,-9,2,2,2021,7,0,52,0,1,0,0,36.662632,36.662632,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48,52.43,8.333333333333334,1,1,0,0,12,8,5,1,759.25,489703.25,229374.72,561389.44,232949.67,0,0,2692.7673 +15020,18377,32725,32726,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.8093443,9.0428581,0,32,-3,-61.675629,0,2,3,2021,6,0,34,34,1,0,0,23.091457,23.091457,.05,.05,0,0,0,0,0,2,0,0,0,0,0,54.69,57.47,56.4,37.77,8.333333333333334,1,1,0,0,9,9,5,1,797.5,941205.38,344014.88,410781.56,0,0,0,3160.5129 +15020,18377,32726,32725,-9,-9,1,1,52,0,0,0,2,2,-9,0,2,8.2081261,8.3133211,0,7,3,-39.878078,0,-9,-9,2021,8,0,60,60,1,0,0,6.6754289,6.6754289,.05,.05,0,0,0,0,1.5050762,0,0,0,0,0,0,56.4,37.77,54.69,57.47,8.333333333333334,1,1,0,0,6,9,5,1,797.5,941205.38,344014.88,410781.56,0,0,0,3160.5129 +15021,18378,32727,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.1796341,7.4486017,0,0,-1099.0853,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,2.262089,0,21.045738,0,1,1,0,0,7.6849542,45.95,24.87,-9,-9,6.666666666666667,1,1,0,0,0,13,3,1,293,359604.78,141725.66,0,0,0,0,579.82507 +15022,18379,32728,32729,-9,-9,1,0,47,0,1,0,3,3,-9,0,3,7.7995949,7.4832077,0,10,-2,-16.043808,0,3,3,2021,14,2,36,36,1,2,0,6.924808,6.924808,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.9,48.23,48,51,6.666666666666667,1,1,0,0,11,4,3,1,1448.6666,-54687.25,-55602.324,0,0,-129.40067,394.66818,1988.9368 +15022,18379,32729,32728,-9,-9,1,1,49,0,1,0,3,3,-9,0,3,7.0479541,7.1111951,0,10,2,-52.959442,0,2,2,2021,11,0,43,43,1,2,0,3.390697,3.390697,.05,.05,0,0,0,0,0,0,1,1,0,1.48752,0,48,51,38.9,48.23,7,1,1,0,0,1,4,3,1,1448.6666,-54687.25,-55602.324,0,0,-129.40067,394.66818,1988.9368 +15022,18379,32730,-9,32728,32729,1,1,14,0,1,1,3,0,-9,0,2,0,0,0,0,0,-1012.6304,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39,45,-9,-9,5,1,1,-9,0,0,4,3,1,1448.6666,-54687.25,-55602.324,0,0,-129.40067,394.66818,1988.9368 +15022,18380,32731,-9,32728,32729,1,1,18,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1094.1641,1,3,3,2021,9,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,-9,-9,6.666666666666667,1,1,0,0,2,4,1,1,236,0,0,0,0,0,0,0 +15023,18381,32732,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,2,0,7.2596521,6.7994056,0,0,-964.12323,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,7.1403332,52,41.28,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,154,736978.75,24312.809,388078.53,0,0,0,1699.1155 +15024,18382,32733,32734,-9,-9,1,1,67,0,0,0,2,2,-9,1,2,8.3187895,8.4704008,6.1317558,31,5,-53.15744,0,3,3,2021,12,0,47,55,1,0,0,9.5879269,9.5879269,0,0,0,1,0,0,0,0,1,1,0,6.2302446,6.5382981,47.2,34.16,39.98,36.02,6.666666666666667,1,1,0,0,12,1,4,0,504.5,1107160.8,906209,215557.53,0,10115.103,0,2049.604 +15024,18382,32734,32733,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,0,0,0,28,-5,150.12424,0,3,3,2021,12,0,0,22,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.98,36.02,47.2,34.16,3.333333333333333,1,1,1,1,13,1,4,0,504.5,1107160.8,906209,215557.53,0,10115.103,0,2049.604 +15025,18383,32735,-9,-9,-9,1,0,75,0,0,0,3,3,-9,0,2,0,5.5914512,5.7756863,0,0,-987.99951,0,3,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0351925,47.01,34.07,-9,-9,6.666666666666667,1,1,0,0,0,11,2,0,988,349521.22,73064.094,242853.16,0,0,0,656.11566 +15026,18384,32736,32739,-9,-9,1,1,54,0,2,0,2,2,-9,0,4,8.7738237,8.8298693,0,10,2,78.241386,0,3,3,2021,15,5,45,45,1,5,0,18.600527,18.600527,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.59,60.85,49.44,56.93,8.333333333333334,1,1,0,0,11,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32737,-9,32739,32736,1,1,17,0,2,1,2,0,0,0,3,0,0,0,0,0,-974.01385,-9,1,2,2021,9,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,0,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32738,-9,32739,32736,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1045.8715,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32739,32736,-9,-9,1,0,52,0,2,0,1,1,-9,0,4,7.8820853,7.8671174,0,10,-2,19.443184,0,2,3,2021,12,0,29,16,1,0,0,12.860153,12.860153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.44,56.93,38.59,60.85,8.333333333333334,1,1,0,0,11,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15026,18384,32740,-9,32739,32736,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1047.8444,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,1,1,-9,0,0,9,4,1,1092,202403.63,117708.64,360907.34,216203.55,0,0,3329.0894 +15027,18385,32741,-9,-9,-9,1,1,21,0,0,0,2,2,-9,0,4,8.068531,7.7048936,0,0,0,-1038.9307,0,-9,-9,2021,11,1,40,40,1,1,0,7.6564555,7.6564555,.05,.05,0,0,0,0,0,0,0,0,0,1.782951,0,56.02,37.81,-9,-9,8.333333333333334,1,1,0,0,3,10,4,0,547,33519.086,62244.094,0,0,0,0,519.5788 +15028,18386,32742,32743,-9,-9,1,1,71,0,0,0,3,3,-9,0,2,0,0,0,50,-2,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,64.39,28.77,59.14,52.5,8.333333333333334,1,1,0,0,9,12,2,0,843.5,-149149.77,4992.2236,0,0,0,0,1356.1494 +15028,18386,32743,32742,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,0,0,50,2,0,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.14,52.5,64.39,28.77,0,1,1,0,0,7,12,2,0,843.5,-149149.77,4992.2236,0,0,0,0,1356.1494 +15029,18387,32744,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.898633,8.8875141,0,0,0,-1093.959,0,2,2,2021,12,0,48,50,1,0,0,17.861324,17.861324,.05,.05,0,0,0,0,0,0,1,1,0,3.1058285,0,37.02,49.8,-9,-9,6.666666666666667,1,1,0,0,12,11,5,1,1051,224287.31,149455.73,0,0,1566.9922,1009.0504,1630.8929 +15030,18388,32745,32748,-9,-9,1,1,37,0,2,0,2,2,-9,0,4,8.591713,8.4396553,0,9,-2,20.491049,0,3,3,2021,9,0,40,52,1,0,0,20.326519,20.326519,.05,.05,0,0,0,0,0,2,1,1,0,0,0,55.34,54.26,53.22,55.2,8.333333333333334,1,1,0,0,11,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15030,18388,32746,-9,32748,32745,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.56854,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15030,18388,32747,-9,32748,32745,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.3893,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15030,18388,32748,32745,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,7.9337468,7.6677694,0,9,2,34.809509,0,3,2,2021,14,2,22,22,1,2,0,11.286427,11.286427,.05,.05,0,0,0,0,0,7,1,1,0,0,0,53.22,55.2,55.34,54.26,8.333333333333334,1,1,0,0,11,13,4,1,1644.75,161954.81,115249.02,134983.52,3178.8608,0,0,3712.9304 +15031,18389,32749,-9,-9,-9,1,1,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1035.3478,-9,-9,-9,2021,24,11,0,0,2,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.52,54.34,-9,-9,3.333333333333333,1,1,0,0,1,13,1,0,1965,245478.73,0,0,0,0,423.95169,-414.12054 +15031,18390,32750,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1124.0005,0,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,0,32.26,48.92,-9,-9,6.666666666666667,1,1,0,0,0,13,1,0,563,-103303.77,0,0,0,0,0,1741.0913 +15031,18391,32751,-9,32750,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1004.0092,0,3,3,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.48,45.05,-9,-9,1.666666666666667,1,1,1,0,0,13,1,0,886,0,0,0,0,0,0,500.74045 +15032,18392,32752,32755,-9,-9,1,0,41,0,3,0,3,3,-9,0,3,0,0,0,14,2,23.508879,0,3,3,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.99,51.28,52.77,50.48,8.333333333333334,1,1,1,0,2,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32753,-9,32752,32755,1,1,10,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1047.2738,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32754,-9,32752,32755,1,0,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1046.9337,-9,3,1,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32755,32752,-9,-9,1,1,39,0,3,0,1,1,-9,0,2,9.3511362,9.4238749,0,16,-2,86.235893,0,2,3,2021,9,0,40,40,1,0,0,45.123802,45.123802,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.77,50.48,52.99,51.28,5,1,1,0,0,9,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15032,18392,32756,-9,32752,32755,1,0,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1015.7519,-9,3,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,527.79999,399023.66,232569.67,172325.86,138920.66,0,0,4945.6177 +15033,18393,32757,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,7.436439,7.5538497,0,0,-1114.6484,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,4.7989187,7.4038067,55.53,51.55,-9,-9,5,1,1,0,0,4,7,3,1,508,736732.06,188698.95,467123.97,0,0,0,1211.5455 +15034,18394,32758,32759,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,0,5.3111348,5.1547203,2,0,-83.969749,0,3,-9,2021,8,1,0,32,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.4932132,54.37,54.8,52.65,48.94,8.333333333333334,1,1,1,0,7,5,2,0,610.5,262944.22,166363.86,210376.61,120034.69,0,0,561.67737 +15034,18394,32759,32758,-9,-9,1,0,59,0,0,0,3,3,-9,0,3,7.228075,7.3296824,0,2,0,-67.962128,0,-9,-9,2021,11,0,23,0,1,0,0,6.8266006,6.8266006,0,0,0,0,0,0,0,0,0,0,0,1.2411287,0,52.65,48.94,54.37,54.8,8.333333333333334,1,1,0,0,0,5,2,0,610.5,262944.22,166363.86,210376.61,120034.69,0,0,561.67737 +15035,18395,32760,-9,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1043.8809,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,7.5248036,0,51.53,51.8,-9,-9,8.333333333333334,1,1,0,0,5,7,1,1,4263,697262.81,276510.91,150121.42,0,0,0,1068.8843 +15036,18396,32761,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.3831501,8.5236855,0,0,0,-965.47205,0,2,2,2021,11,0,43,43,1,0,0,10.134864,10.134864,.05,.05,0,0,0,0,0,0,0,0,0,.47899583,0,46.88,46.3,-9,-9,6.666666666666667,1,1,0,0,10,6,4,1,2510,180533.67,88764.867,30541.148,0,3134.8132,2260.9031,1795.4109 +15037,18397,32762,32763,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,0,0,37,6,-3.257354,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,52.4,55.94,23.15,0,1,1,0,0,2,7,2,0,960.5,629479.19,116358.34,171758.09,0,0,0,1332.7332 +15037,18397,32763,32762,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,5.9493208,5.8012547,35,-6,-98.677284,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.852809,55.94,23.15,62.66,52.4,3.333333333333333,1,1,0,0,0,7,2,0,960.5,629479.19,116358.34,171758.09,0,0,0,1332.7332 +15038,18398,32764,32765,-9,-9,1,1,28,0,0,0,1,1,-9,0,4,8.4391766,8.4752092,0,3,0,7.2052326,0,-9,-9,2021,10,0,44,37,1,0,0,13.128719,13.128719,.05,.05,.05,0,0,0,0,0,0,0,0,1.3497381,0,51.49,57.57,46.44,59.62,8.333333333333334,1,1,0,0,10,6,5,1,1386,-48262.914,-12701.662,54559.781,86018.328,576.2124,0,3243.7639 +15038,18398,32765,32764,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7570171,8.8534861,0,3,0,-16.628664,0,-9,-9,2021,6,0,47,47,1,0,0,13.847527,13.847527,.05,.05,0,0,0,0,0,0,0,0,0,3.2247105,0,46.44,59.62,51.49,57.57,8.333333333333334,1,1,0,0,6,6,5,1,1386,-48262.914,-12701.662,54559.781,86018.328,576.2124,0,3243.7639 +15039,18399,32766,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,7.021081,7.3479385,0,0,-943.46155,-9,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0964131,43.96,55.64,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1315,548076.81,323127.59,239864.33,0,0,0,2058.3843 +15039,18400,32767,-9,32766,-9,1,1,32,0,0,0,2,2,-9,0,3,8.3192883,8.5157089,0,0,0,-1055.5181,-9,3,-9,2021,19,6,42,0,1,6,0,10.890027,10.890027,.05,.05,0,0,0,0,0,0,1,1,0,0,0,33.83,57.61,-9,-9,3.333333333333333,1,1,0,0,4,9,5,1,349,142392.48,83089.367,0,0,0,0,1917.7009 +15040,18401,32768,-9,32769,32770,1,0,10,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1003.8793,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32769,32770,-9,-9,1,0,33,0,3,0,2,2,-9,0,3,0,0,0,5,-13,-52.366146,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,57.33,53.46,8.333333333333334,1,1,0,0,4,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32770,32769,-9,-9,1,1,46,0,3,0,2,2,-9,0,3,8.3489628,8.2098103,0,5,13,-76.756828,0,3,3,2021,9,1,39,40,1,1,0,9.8034525,9.8034525,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,51.41,56.15,8.333333333333334,1,1,0,0,8,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32771,-9,32769,32770,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-997.26428,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15040,18401,32772,-9,32769,32770,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1113.1259,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,3,1,1164.8,21376.994,0,247124.13,283565.75,0,0,2010.9447 +15041,18402,32773,32774,-9,-9,1,1,65,0,0,0,2,2,-9,0,4,0,8.8382826,8.982583,8,0,-166.56329,0,2,2,2021,20,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,42,0,0,0,.82135725,8.674777,40.22,56.91,31.28,55.61,3.333333333333333,1,1,0,0,0,10,5,1,1038.5,1500648,1198204.3,467541.84,31621.137,0,0,4522.5884 +15041,18402,32774,32773,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,8.130578,7.9355111,8,0,102.64959,0,1,1,2021,15,6,0,0,4,6,0,0,0,0,0,0,0,0,0,0,74.5,0,0,0,4.2728915,7.4211602,31.28,55.61,40.22,56.91,6.666666666666667,1,1,0,0,0,10,5,1,1038.5,1500648,1198204.3,467541.84,31621.137,0,0,4522.5884 +15042,18403,32775,32777,-9,-9,1,0,44,0,2,0,1,1,-9,0,5,8.9178877,8.7325029,0,7,1,25.66132,0,-9,-9,2021,7,0,53,44,1,0,0,13.959838,13.959838,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,9,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15042,18403,32776,-9,32775,32777,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.4789,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15042,18403,32777,32775,-9,-9,1,1,43,0,2,0,1,1,-9,0,5,8.5912762,8.9831867,0,19,-1,66.25695,0,1,1,2021,6,0,35,40,1,0,0,18.461008,18.461008,.05,.05,0,0,0,0,.2180351,0,1,1,0,0,0,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,6,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15042,18403,32778,-9,32775,32777,1,0,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1100.1259,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,10,5,1,778.75,738911.75,537860.06,375539.78,214706.81,0,0,4615.7998 +15043,18404,32779,32780,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.6335526,8.8637762,0,32,1,5.1489944,0,-9,2,2021,10,0,43,38,1,0,0,15.483098,15.483098,.05,.05,0,0,0,0,0,0,0,0,0,2.2482078,0,57.33,53.46,57.16,56.15,8.333333333333334,1,1,0,0,10,9,5,1,387.5,1469167,963752,362582.25,0,0,0,3180.4795 +15043,18404,32780,32779,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.4808865,7.3575745,0,32,-1,28.25235,0,2,2,2021,9,0,25,28,1,0,0,8.432312,8.432312,.05,.05,0,0,0,0,0,2,0,0,0,0,0,57.16,56.15,57.33,53.46,8.333333333333334,1,1,0,0,10,9,5,1,387.5,1469167,963752,362582.25,0,0,0,3180.4795 +15043,18405,32781,-9,32780,32779,1,1,22,0,0,0,2,2,-9,0,5,0,0,0,0,0,-903.90747,0,2,2,2021,12,2,0,30,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1.3224274,0,44.22,59.68,-9,-9,8.333333333333334,1,1,0,0,5,9,1,1,808,63385.746,0,0,0,0,0,-887.27283 +15044,18406,32782,32784,-9,-9,1,0,33,1,1,0,1,1,-9,0,4,9.3782701,9.1473598,0,12,1,66.541031,0,3,1,2021,8,0,30,24,1,0,0,39.519466,39.519466,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.73,54.53,57.06,57.76,8.333333333333334,1,1,0,0,9,8,5,1,361.66666,234568.88,43489.434,443973,224292.75,12364.495,0,8147.2866 +15044,18406,32783,-9,32782,32784,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1188.7257,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,5,1,361.66666,234568.88,43489.434,443973,224292.75,12364.495,0,8147.2866 +15044,18406,32784,32782,-9,-9,1,1,32,1,1,0,1,1,-9,0,5,9.7082987,9.5509033,0,12,-1,1.9855648,0,2,2,2021,8,0,55,45,1,0,0,32.548416,32.548416,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.73,54.53,8.333333333333334,1,1,0,0,9,8,5,1,361.66666,234568.88,43489.434,443973,224292.75,12364.495,0,8147.2866 +15045,18407,32785,-9,32787,32786,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.1449,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15045,18407,32786,32787,-9,-9,1,1,32,2,2,0,1,1,-9,0,5,9.2603102,9.4294853,0,9,0,96.301468,0,-9,-9,2021,7,0,50,70,1,0,0,23.464699,23.464699,.05,.05,0,0,0,0,0,0,0,0,0,7.6502814,0,59.43,58.05,57.16,56.15,10,1,1,0,0,10,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15045,18407,32787,32786,-9,-9,1,0,32,2,2,0,1,1,-9,0,4,0,0,0,9,0,13.947973,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,2.954715,0,57.16,56.15,59.43,58.05,10,1,1,0,0,9,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15045,18407,32788,-9,32787,32786,1,0,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-735.27551,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,5,0,2699.5,-30789.227,19001.215,0,0,0,0,4376.73 +15046,18408,32789,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.3435888,8.4668913,0,0,0,-1098.0222,-9,-9,-9,2021,17,4,45,0,1,4,0,8.2450905,8.2450905,.05,.05,0,0,0,0,0,0,0,0,0,1.2527294,0,40.8,59.7,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,1407,215660.88,95499.297,137859.28,105135.53,0,0,2123.999 +15047,18409,32790,32791,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.8663168,8.1011381,13,0,-78.654144,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2591858,8.3268003,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,0,1,4,1,1839,1379598.8,703182.44,342849.75,0,6384.0342,0,3595.116 +15047,18409,32791,32790,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.624732,7.3681335,49,0,43.765579,0,2,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9094195,7.6759329,58.15,52.91,57.16,56.15,10,1,1,0,0,5,1,4,1,1839,1379598.8,703182.44,342849.75,0,6384.0342,0,3595.116 +15048,18410,32792,-9,-9,-9,1,0,42,0,0,0,1,1,-9,0,3,8.1628513,8.23594,0,0,0,-981.63892,0,2,2,2021,6,0,50,48,1,0,0,8.2920609,8.2920609,.05,.05,0,0,0,0,0,0,0,0,0,1.042299,0,56.94,49.53,-9,-9,8.333333333333334,1,1,0,0,10,2,4,0,712,582913.19,-1269.3406,310990.91,0,4130.2437,0,1729.6025 +15049,18411,32793,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,2,0,4.4701524,4.5856495,0,0,-941.52557,0,3,3,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.6626043,17.59,56.04,-9,-9,6.666666666666667,1,1,0,0,2,2,2,0,1406,430045.94,52545.922,158273.05,0,0,0,723.24658 +15050,18412,32794,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1116.9387,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.98,29.33,-9,-9,8.333333333333334,1,1,0,0,0,12,1,0,2014,204093.02,0,0,0,0,0,1729.0806 +15051,18413,32795,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,5,8.6650333,8.2804861,0,0,0,-924.92633,0,3,3,2021,22,9,38,38,1,9,0,15.260665,15.260665,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.04,56.44,-9,-9,5,1,1,0,0,11,13,5,1,527,1810551.5,1123889.9,230457.14,0,0,0,2459.6575 +15052,18414,32796,32797,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.0471077,9.0065775,0,9,-10,47.54974,0,2,2,2021,7,0,45,45,1,0,0,21.478964,21.478964,.05,.05,0,0,0,0,0,0,0,0,0,1.986622,0,57.16,56.15,57.06,57.76,8.333333333333334,1,1,0,0,12,1,5,1,244.5,294999.19,61844.516,339207.56,88654.984,0,-83.727188,4342.4902 +15052,18414,32797,32796,-9,-9,1,0,58,0,0,0,1,1,-9,0,5,7.9196272,8.1389408,0,9,10,-92.177505,0,3,3,2021,6,0,32,45,1,0,0,11.787741,11.787741,0,0,0,0,0,0,0,0,0,0,0,3.1591637,0,57.06,57.76,57.16,56.15,8.333333333333334,1,1,0,0,11,1,5,1,244.5,294999.19,61844.516,339207.56,88654.984,0,-83.727188,4342.4902 +15053,18415,32798,32799,-9,-9,1,1,57,0,0,0,2,2,-9,0,3,9.1797113,9.080945,0,31,2,.67331666,0,2,2,2021,12,0,70,84,1,0,0,12.324828,12.324828,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,41.47,58.08,57.16,56.15,8.333333333333334,1,1,0,0,12,12,5,1,1642,244253.63,306129.31,192008.27,82519.68,3341.2056,6325.4453,6045.5254 +15053,18415,32799,32798,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,9.0200062,9.2145967,0,31,-2,-16.568369,0,-9,-9,2021,7,0,37,38,1,0,0,25.809378,25.809378,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,41.47,58.08,10,1,1,0,0,10,12,5,1,1642,244253.63,306129.31,192008.27,82519.68,3341.2056,6325.4453,6045.5254 +15054,18416,32800,32801,-9,-9,1,0,45,0,0,0,1,1,-9,0,3,8.741188,8.5871201,0,12,-10,63.216827,-9,3,3,2021,9,0,43,0,1,0,0,15.464382,15.464382,0,0,0,0,0,0,0,0,0,0,0,5.5925679,0,53.78,56.44,38.83,48.55,8.333333333333334,1,1,0,0,13,12,5,1,1900.5,295450.06,104947.53,208414.45,107993.74,8204.3223,3953.1633,4248.7319 +15054,18416,32801,32800,-9,-9,1,1,55,0,0,0,2,2,-9,0,2,8.5632086,8.7256432,0,12,10,63.676727,0,-9,-9,2021,11,1,50,65,1,1,0,14.085835,14.085835,.05,.05,0,0,0,0,0,0,0,0,0,0,0,38.83,48.55,53.78,56.44,3.333333333333333,1,1,0,0,14,12,5,1,1900.5,295450.06,104947.53,208414.45,107993.74,8204.3223,3953.1633,4248.7319 +15055,18417,32802,32803,-9,-9,1,0,57,0,0,0,2,2,-9,0,5,7.4666147,7.7139792,0,32,-1,-18.274542,0,2,-9,2021,6,0,7,8,1,0,0,24.948473,24.948473,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.73,54.53,8.333333333333334,1,1,0,0,14,11,4,1,646.5,1420075.6,1161501.9,144371.75,14816.533,36134.313,0,2737.7043 +15055,18417,32803,32802,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.7216878,8.4917974,7.5553341,32,1,97.770699,0,-9,3,2021,9,0,38,35,1,0,0,8.2858849,8.2858849,.05,.05,0,0,0,0,0,0,0,0,0,0,7.6192136,57.73,54.53,57.06,57.76,8.333333333333334,1,1,0,0,14,11,4,1,646.5,1420075.6,1161501.9,144371.75,14816.533,36134.313,0,2737.7043 +15056,18418,32804,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,2,0,0,0,0,0,-885.5116,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.42448595,0,49.91,42.12,-9,-9,8.333333333333334,2,3,0,0,0,9,1,1,652,151958,0,0,0,0,0,811.10736 +15057,18419,32805,32806,-9,-9,1,1,57,0,0,0,1,1,-9,0,4,7.9117684,8.3418293,0,11,1,-48.342468,0,2,2,2021,14,4,22,22,1,4,0,17.148491,17.148491,.05,.05,0,0,0,0,0,2,0,0,0,3.9413147,0,54.74,57.22,49.52,21.37,8.333333333333334,1,1,0,0,12,12,5,1,868.5,807204.63,741088.94,89487.688,17723.242,0,0,2833.5283 +15057,18419,32806,32805,-9,-9,1,0,56,0,0,0,1,1,-9,0,1,8.3802137,8.6313181,0,11,-1,53.199669,0,2,2,2021,15,4,18,18,1,4,0,35.723476,35.723476,.05,.05,0,0,0,0,0,0,0,0,0,1.9888146,0,49.52,21.37,54.74,57.22,6.666666666666667,1,1,0,0,12,12,5,1,868.5,807204.63,741088.94,89487.688,17723.242,0,0,2833.5283 +15058,18420,32807,32808,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,0,0,18,-4,-125.48006,0,-9,-9,2021,15,5,0,18,3,5,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.41,58.46,52,54.51,3.333333333333333,1,1,0,0,2,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15058,18420,32808,32807,-9,-9,1,1,46,0,2,0,1,1,-9,0,3,9.0772963,8.6143122,0,19,4,47.430721,0,-9,-9,2021,14,2,38,47,1,2,0,24.521357,24.521357,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,37.41,58.46,8.333333333333334,2,3,0,0,9,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15058,18420,32809,-9,32807,32808,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.3612,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15058,18420,32810,-9,32807,32808,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-821.42761,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,4,1,336.5,16680.861,40837.543,144275.7,85061.828,1468.2231,259.41458,2196.2019 +15059,18421,32811,32812,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.8244371,8.7069931,0,11,-2,-71.883278,0,-9,-9,2021,16,5,60,70,1,5,0,11.429495,11.429495,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.88,51.79,51.83,57.2,3.333333333333333,1,1,0,1,11,12,5,1,964.66669,305782.63,260234.38,84457.742,56604.199,54663.156,0,4632.2148 +15059,18421,32812,32811,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.7927351,7.6239071,0,28,2,104.54335,0,3,2,2021,13,1,22,14,1,1,0,12.263557,12.263557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,42.88,51.79,8.333333333333334,1,1,0,0,7,12,5,1,964.66669,305782.63,260234.38,84457.742,56604.199,54663.156,0,4632.2148 +15059,18421,32813,-9,32812,32811,1,0,17,0,0,0,2,2,1,0,4,0,0,0,0,0,-928.60132,-9,1,1,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,6.666666666666667,1,1,1,0,0,12,5,1,964.66669,305782.63,260234.38,84457.742,56604.199,54663.156,0,4632.2148 +15060,18422,32814,-9,32817,32819,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-933.336,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32815,-9,32817,32819,1,1,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-966.67096,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32816,-9,32817,32819,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1220.2258,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32817,32819,-9,-9,1,0,37,1,4,0,2,2,-9,0,3,0,0,0,11,-1,-190.91898,0,2,3,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.5128591,0,36.49,58.77,36.97,58.53,3.333333333333333,1,1,0,0,6,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32818,-9,32817,32819,1,1,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-960.823,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15060,18422,32819,32817,-9,-9,1,1,38,1,4,0,2,2,-9,0,3,8.4416094,8.5102768,0,11,1,-14.90838,0,2,3,2021,15,5,55,55,1,5,0,9.9250784,9.9250784,.05,.05,0,0,0,0,0,0,1,1,0,.68458122,0,36.97,58.53,36.49,58.77,3.333333333333333,1,1,0,0,13,7,3,1,1080.8334,268107.72,59071.723,361447,126113.48,0,0,1976.7538 +15061,18423,32820,32821,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,6.4503446,5.8364563,43,-5,31.526478,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,5.9654346,6.6401076,37.62,44.93,54.45,56.22,6.666666666666667,2,3,0,0,0,8,2,1,681,556909.25,388102.34,251252.03,0,0,0,3325.5645 +15061,18423,32821,32820,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,6.7468848,6.8002934,43,5,-84.821144,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,8.2613869,6.8088894,54.45,56.22,37.62,44.93,10,2,3,0,0,6,8,2,1,681,556909.25,388102.34,251252.03,0,0,0,3325.5645 +15062,18424,32822,32823,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.9121685,7.6014404,39,2,195.47726,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.059330273,42,1,1,0,7.3667579,7.7058702,53.14,51.28,57.62,23.86,8.333333333333334,1,1,0,0,7,9,3,1,228.5,1032132.4,731623.38,293639.94,0,146.53735,0,2895.96 +15062,18424,32823,32822,-9,-9,1,0,64,0,0,0,2,2,-9,0,1,0,5.5370727,4.932713,39,-2,-1.9006771,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.377619,5.4532213,57.62,23.86,53.14,51.28,10,1,1,0,0,0,9,3,1,228.5,1032132.4,731623.38,293639.94,0,146.53735,0,2895.96 +15063,18425,32824,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,2,7.844439,7.8824162,0,0,0,-885.20459,0,2,2,2021,25,8,36,40,1,8,0,9.7121754,9.7121754,.05,.05,.05,0,0,0,0,0,0,0,0,6.3829961,0,44.46,47.36,-9,-9,0,4,2,0,0,10,5,4,0,371,14468.002,77191.234,0,0,1919.584,0,1837.6033 +15064,18426,32825,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1159.6219,0,3,3,2021,23,10,0,0,4,10,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,32.81,25.91,-9,-9,3.333333333333333,1,1,0,0,0,2,1,0,1761,2863.6182,0,0,0,0,0,1580.1599 +15065,18427,32826,32827,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.7839508,8.637702,0,31,-2,-85.183197,0,2,2,2021,6,0,39,43,1,0,0,19.811546,19.811546,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.09,58.02,52.38,42.19,8.333333333333334,1,1,0,0,13,5,5,1,1158.5,637496,374799.13,223835.19,72764.594,9239.0869,0,4473.1675 +15065,18427,32827,32826,-9,-9,1,1,49,0,0,0,1,1,-9,0,3,8.7083874,8.4295015,0,32,2,13.807489,0,2,3,2021,12,0,53,53,1,0,0,14.50477,14.50477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.38,42.19,47.09,58.02,8.333333333333334,1,1,0,0,13,5,5,1,1158.5,637496,374799.13,223835.19,72764.594,9239.0869,0,4473.1675 +15066,18428,32828,32831,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,0,0,0,3,14,0,0,-9,-9,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,37.93,28.59,57.06,57.76,8.333333333333334,1,1,0,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32829,-9,32828,32831,1,0,13,0,3,1,3,0,-9,0,3,0,0,0,0,0,-1075.3019,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32830,-9,32828,32831,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-926.24884,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32831,32828,-9,-9,1,1,27,0,3,0,2,2,-9,0,5,0,0,0,3,-14,0,0,-9,-9,2021,7,0,0,44,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,37.93,28.59,8.333333333333334,1,1,1,0,1,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15066,18428,32832,-9,32828,32831,1,0,16,0,3,1,2,0,-9,0,4,0,0,0,0,0,-1086.6572,-9,2,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48.77,57.64,-9,-9,6.666666666666667,1,1,0,0,0,2,1,0,374.20001,14589.069,0,0,0,7618.8545,0,1166.9076 +15067,18429,32833,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,4,7.832747,7.936666,0,0,0,-902.97803,0,1,3,2021,12,0,40,37,1,0,0,7.818974,7.818974,0,0,0,0,0,0,0,0,1,1,0,0,0,42.44,57.54,-9,-9,5,1,1,0,0,9,2,4,0,3642,-173724.58,0,0,0,0,0,757.05615 +15068,18430,32834,32835,-9,-9,1,0,75,0,0,0,2,2,-9,0,2,0,2.1939054,2.2542915,56,0,-62.983234,0,3,3,2021,16,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3110943,1.9253817,43.54,34.21,56,52,8.333333333333334,1,1,0,0,0,7,2,1,531,399540.75,0,387830.19,0,0,0,1361.4402 +15068,18430,32835,32834,-9,-9,1,1,75,0,0,0,3,3,-9,0,4,0,6.2600689,6.3139224,56,0,19.012653,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.019984,6.7097239,56,52,43.54,34.21,10,1,1,0,0,0,7,2,1,531,399540.75,0,387830.19,0,0,0,1361.4402 +15069,18431,32836,-9,32837,-9,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.35815,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,5,-9,0,0,8,2,0,704,88856.016,0,0,0,0,0,3610.667 +15069,18431,32837,-9,-9,-9,1,0,48,0,2,0,3,3,-9,0,5,6.4440999,7.092207,0,0,0,-1005.9136,0,3,2,2021,7,0,16,16,1,0,0,4.7894201,4.7894201,0,0,0,0,0,0,0,0,1,1,0,0,0,64.66,50.23,-9,-9,5,4,5,0,0,3,8,2,0,704,88856.016,0,0,0,0,0,3610.667 +15069,18431,32838,-9,32837,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-964.14453,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,6,4,5,-9,0,0,8,2,0,704,88856.016,0,0,0,0,0,3610.667 +15069,18432,32839,-9,32837,-9,1,1,21,0,2,1,2,0,0,0,4,0,0,0,0,0,-996.2948,-9,3,1,2021,9,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,54.05,52.09,-9,-9,6.666666666666667,4,5,0,0,0,8,1,0,112,0,0,0,0,0,0,0 +15069,18433,32840,-9,32837,-9,1,1,19,0,2,0,2,2,-9,0,5,6.4999866,6.599823,0,0,0,-1060.5701,0,2,1,2021,3,0,21,8,1,0,1,3.435703,3.435703,0,0,0,0,0,0,0,0,1,1,0,0,0,52.68,61,-9,-9,8.333333333333334,4,5,0,0,2,8,2,0,2431,139741.91,0,0,0,0,0,-206.79552 +15070,18434,32841,-9,-9,-9,1,1,51,0,0,0,3,3,-9,1,1,0,0,0,0,0,-977.57349,-9,3,3,2021,23,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.91,28.34,-9,-9,1.666666666666667,4,5,0,0,0,7,1,0,216,-34997.5,0,0,0,0,0,815.85699 +15071,18435,32842,-9,32843,32844,1,1,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1024.8113,-9,1,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15071,18435,32843,32844,-9,-9,1,0,39,0,2,0,1,1,-9,0,2,8.3672733,8.2790699,0,17,-3,-.16721337,0,2,2,2021,8,0,44,44,1,0,0,9.4021549,9.4021549,0,0,0,0,0,0,0,2,1,1,0,0,0,56.07,32.51,57.16,56.15,6.666666666666667,1,1,0,0,12,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15071,18435,32844,32843,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,8.2795811,8.2349634,0,12,3,18.730125,0,-9,-9,2021,7,0,58,55,1,0,0,8.563097,8.563097,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,56.07,32.51,6.666666666666667,1,1,0,0,8,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15071,18435,32845,-9,32843,32844,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.1,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,850,-20003.875,-54374.953,0,0,0,0,3101.6907 +15072,18436,32846,-9,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1024.9983,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,71.2939,0,120,1,1,0,0,0,53.66,25.67,-9,-9,6.666666666666667,1,1,0,0,0,4,1,0,804,-68665.953,0,0,0,0,0,749.12537 +15072,18437,32847,-9,32846,-9,1,1,42,0,0,0,2,2,-9,1,2,0,0,0,0,0,-995.98694,0,3,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.34,25.4,-9,-9,3.333333333333333,1,1,0,0,5,4,1,0,231,55191.07,0,0,0,3358.9746,0,652.89984 +15073,18438,32848,32849,-9,-9,1,1,56,0,0,0,3,3,-9,0,2,0,0,0,35,2,0,0,3,3,2021,8,0,0,54,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.38,45.06,44.3,35.42,5,2,3,1,0,5,6,1,1,233.5,0,0,0,0,0,0,757.06384 +15073,18438,32849,32848,-9,-9,1,0,54,0,0,0,3,3,-9,0,1,0,0,0,35,-2,0,0,3,3,2021,17,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.3,35.42,35.38,45.06,5,2,3,0,0,0,6,1,1,233.5,0,0,0,0,0,0,757.06384 +15073,18439,32850,-9,32849,32848,1,1,24,0,0,0,2,2,-9,0,4,7.4161711,7.4135647,0,0,0,-996.09711,0,3,3,2021,10,0,38,40,1,1,1,5.2135472,5.2135472,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,2,3,0,0,1,6,3,1,262,-70583.633,0,0,0,0,0,894.18231 +15073,18440,32851,-9,-9,-9,1,1,44,0,0,0,3,3,-9,0,4,7.9197345,8.0461378,0,0,0,-1019.4147,0,-9,-9,2021,9,0,40,40,1,1,0,8.6051521,8.6051521,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,2,3,0,0,1,6,4,1,1487,158464.92,204037.88,107433.62,14010.694,0,0,1839.7559 +15074,18441,32852,32853,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.8458643,8.8371878,0,7,-6,-85.331718,0,2,2,2021,7,0,32,30,1,0,0,29.389624,29.389624,.05,.05,0,0,0,0,0,0,1,1,0,6.9460635,0,64.96000000000001,43.19,47.78,52.35,8.333333333333334,1,1,0,0,9,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15074,18441,32853,32852,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.490613,8.6070986,0,7,6,-14.165648,0,3,3,2021,15,6,90,40,1,6,0,7.1688399,7.1688399,.05,.05,.05,0,0,0,0,0,1,1,0,3.352376,0,47.78,52.35,64.96000000000001,43.19,5,1,1,0,0,9,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15074,18441,32854,-9,32852,32853,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1027.2046,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15074,18441,32855,-9,32852,32853,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.68494,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,5,1,1893.5,150017.59,82619.938,190489.61,125855.12,0,0,4448.3203 +15075,18442,32856,32857,-9,-9,1,0,55,0,0,0,3,3,-9,0,3,7.9188714,7.9160957,0,12,2,-.21460409,0,3,3,2021,12,0,42,42,1,0,0,6.5413365,6.5413365,0,0,0,0,0,0,0,2,0,0,0,0,0,57.33,53.46,58.32,50.22,6.666666666666667,1,1,0,0,13,13,3,1,466,60721.898,57845.637,0,0,0,0,1593.3552 +15075,18442,32857,32856,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,4.8302879,5.3129153,0,12,-2,-107.3589,0,-9,-9,2021,12,0,40,42,1,0,0,.39470232,.39470232,0,0,.05,0,0,0,0,0,0,0,0,0,0,58.32,50.22,57.33,53.46,6.666666666666667,1,1,0,0,14,13,3,1,466,60721.898,57845.637,0,0,0,0,1593.3552 +15076,18443,32858,-9,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1012.1672,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.12,26.45,-9,-9,3.333333333333333,1,1,0,1,0,2,1,0,426,-59140.422,142724.97,0,0,0,0,749.91327 +15077,18444,32859,-9,32860,32862,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1013.1131,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15077,18444,32860,32862,-9,-9,1,0,46,0,2,0,2,2,-9,0,3,7.313797,7.2387962,0,8,-1,-38.171051,0,2,3,2021,10,0,30,30,1,0,0,5.6771049,5.6771049,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,54.79,55.86,6.666666666666667,1,1,0,0,9,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15077,18444,32861,-9,32860,32862,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-956.59644,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15077,18444,32862,32860,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.284605,8.6248474,0,8,1,-51.334511,0,2,2,2021,2,0,42,40,1,0,0,12.093861,12.093861,.05,.05,0,0,0,0,0,0,1,1,0,7.2213879,0,54.79,55.86,56.5,48.33,8.333333333333334,1,1,0,0,10,12,4,1,724.25,55251.285,2563.3242,0,0,3843.4973,1660.4474,4156.7061 +15078,18445,32863,-9,32867,32864,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-969.75824,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32864,32867,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,7.1717353,7.3324099,0,20,-1,130.65105,0,3,3,2021,9,0,20,20,1,0,0,8.196557,8.196557,.05,.05,0,0,0,0,0,0,1,1,0,0,0,59.3,44.82,33.79,46.44,6.666666666666667,1,1,0,0,5,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32865,-9,32867,32864,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.07013,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32866,-9,-9,32864,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-976.46509,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15078,18445,32867,32864,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.8525882,7.6365376,0,20,1,-83.357338,-9,3,3,2021,11,0,32,0,1,0,0,9.8905239,9.8905239,.05,.05,0,0,0,0,0,0,1,1,0,5.3346319,0,33.79,46.44,59.3,44.82,6.666666666666667,1,1,0,0,10,4,3,1,1144,116422.56,-379.5744,135145.97,50177.859,13610.795,0,3281.6479 +15079,18446,32868,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.0481148,7.6670184,0,0,-1065.3127,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6719217,7.6107087,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,1158,545660.5,362696.41,275825.28,0,4312.1704,0,1350.9115 +15080,18447,32869,32870,-9,-9,1,1,37,0,0,0,1,1,-9,0,4,8.7701607,8.9686546,0,2,-2,16.827295,0,2,2,2021,11,0,38,38,1,0,0,24.126434,24.126434,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.06,62.04,54.2,57.49,6.666666666666667,1,1,0,0,11,2,5,0,446.5,-43559.961,21150.455,195074.5,73372.563,0,0,5256.9277 +15080,18447,32870,32869,-9,-9,1,0,39,0,0,0,1,1,-9,0,4,9.1343374,8.5586195,0,2,2,-176.08038,0,-9,-9,2021,8,0,50,55,1,0,0,19.654518,19.654518,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,41.06,62.04,8.333333333333334,2,3,0,0,6,2,5,0,446.5,-43559.961,21150.455,195074.5,73372.563,0,0,5256.9277 +15081,18448,32871,-9,32872,32873,1,1,35,0,0,0,2,2,-9,0,4,7.9340701,7.6655283,0,0,0,-945.14288,0,2,2,2021,10,0,42,38,1,1,0,6.9673095,6.9673095,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,13,3,1,459,-170952.98,-60112.961,0,0,39.34333,0,878.16614 +15081,18449,32872,32873,-9,-9,1,0,68,0,0,0,3,3,-9,0,2,0,0,0,7,-2,-1.6235454,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,49.24,34.35,60.12,54.8,0,1,1,0,0,2,13,4,1,1795.5,287013.81,34207.512,225916.47,2893.5024,0,4112.48,3026.3259 +15081,18449,32873,32872,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,8.4837303,8.4685383,0,7,2,52.176601,0,3,3,2021,6,0,37,37,1,0,0,13.977935,13.977935,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,49.24,34.35,10,1,1,0,0,8,13,4,1,1795.5,287013.81,34207.512,225916.47,2893.5024,0,4112.48,3026.3259 +15082,18450,32874,-9,-9,-9,1,1,88,0,0,0,2,2,-9,0,3,0,7.4978967,7.4002981,0,0,-1053.8256,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6241846,7.6222291,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,0,7,3,1,488,305737,341765.72,137773.55,0,0,0,1595.4541 +15083,18451,32875,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,2,6.571064,7.6091394,6.5331745,0,0,-948.26398,0,2,2,2021,32,11,23,16,1,11,0,3.3072698,3.3072698,.05,.05,0,0,0,0,0,0,1,1,0,7.46948,0,12.93,62.24,-9,-9,3.333333333333333,1,1,0,0,8,10,3,1,671.66669,-97018.516,-39172.867,0,0,1089.8069,0,1314.5908 +15083,18451,32876,-9,32875,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1105.9351,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,1,671.66669,-97018.516,-39172.867,0,0,1089.8069,0,1314.5908 +15083,18451,32877,-9,32875,-9,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-921.02222,-9,2,-9,2021,12,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.21,51.94,-9,-9,6.666666666666667,1,1,0,0,0,10,3,1,671.66669,-97018.516,-39172.867,0,0,1089.8069,0,1314.5908 +15084,18452,32878,-9,-9,-9,1,1,63,0,0,0,3,3,-9,0,4,0,6.175077,6.4064445,0,0,-993.48108,0,2,2,2021,7,1,0,37,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.21418017,6.4066315,68.48999999999999,23.51,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,323,947691.56,378765.81,624825.31,0,0,0,1003.1699 +15085,18453,32879,32880,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.6010761,8.2903442,7.4576402,8,-2,71.511391,0,-9,-9,2021,6,0,10,24,1,0,0,25.199497,25.199497,.05,.05,0,0,0,0,0,14.5,0,0,0,3.1222477,7.3682313,57.16,56.15,61.12,51.57,8.333333333333334,1,1,0,0,9,7,5,1,1823.5,1022352.9,199519.05,580595.75,0,0,0,5669.8301 +15085,18453,32880,32879,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,8.7034359,8.6439171,6.0508943,42,2,92.569221,0,3,3,2021,5,0,36,37,1,0,0,11.870864,11.870864,.05,.05,0,0,0,0,0,2,0,0,0,8.3975182,6.2484617,61.12,51.57,57.16,56.15,8.333333333333334,1,1,0,0,9,7,5,1,1823.5,1022352.9,199519.05,580595.75,0,0,0,5669.8301 +15086,18454,32881,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.0587378,8.43328,0,0,0,-929.12775,0,3,3,2021,8,0,36,46,1,0,0,13.49584,13.49584,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,6.666666666666667,1,1,0,1,7,9,4,1,789,178984.13,21907.77,0,0,0,833.31152,576.72284 +15087,18455,32882,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,2,8.8386898,8.6349745,0,0,0,-947.68732,0,2,3,2021,25,9,50,50,1,9,0,12.357709,12.357709,0,0,.05,0,0,0,0,2,0,0,0,2.5378416,0,29.43,54.74,-9,-9,3.333333333333333,1,1,0,0,8,2,5,1,1128,20808.717,30533.326,131211.61,72972.82,0,0,2914.3262 +15088,18456,32883,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,7.8482823,7.6349678,0,0,-995.17926,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.888854,7.6873183,53.02,53.93,-9,-9,8.333333333333334,1,1,0,0,2,6,3,1,378,498900.16,222669.38,157232.78,0,0,11152.097,2780.05 +15089,18457,32884,32885,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.4252119,6.1306586,45,-2,-72.070854,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5829415,6.5494299,57.16,56.15,52,48,8.333333333333334,1,1,0,0,1,1,2,1,567.5,162759.33,85626.977,141383.66,0,0,0,2495.3 +15089,18457,32885,32884,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,0,0,8,2,10.303278,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1179738,0,52,48,57.16,56.15,7,1,1,0,0,0,1,2,1,567.5,162759.33,85626.977,141383.66,0,0,0,2495.3 +15090,18458,32886,-9,32889,32888,1,1,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-950.56775,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32887,-9,32889,32888,1,0,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1068.5491,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32888,32889,-9,-9,1,1,37,1,4,0,1,1,-9,0,3,8.2515211,8.1442776,0,8,3,-49.736427,0,-9,-9,2021,10,0,40,40,1,0,0,9.7181816,9.7181816,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.32,46.61,60.32,38.33,6.666666666666667,2,3,0,0,7,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32889,32888,-9,-9,1,0,34,1,4,0,3,3,-9,0,3,0,0,0,15,-3,78.666428,0,3,3,2021,10,1,0,0,3,1,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.32,38.33,39.32,46.61,6.666666666666667,2,3,0,1,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32890,-9,32889,32888,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1066.0109,-9,3,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15090,18458,32891,-9,32889,32888,1,0,9,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1099.5612,-9,3,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,3,1,460.5,121175.93,57242.543,182466.83,171663.91,8852.543,22697.586,1943.2925 +15091,18459,32892,-9,-9,-9,1,0,59,0,0,0,3,3,-9,0,5,0,7.5226316,7.5147581,0,0,-1109.1193,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,.05,0,0,0,0,7,1,1,0,6.3263679,7.7139864,57.06,57.76,-9,-9,10,1,1,0,0,6,9,3,1,670,-81715.789,-61162.508,0,0,0,0,1493.8384 +15092,18460,32893,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1019.2717,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.75,37.31,-9,-9,6.666666666666667,4,5,0,0,0,8,1,0,221,225778.19,0,0,0,0,0,1279.3682 +15093,18461,32894,32895,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,6.0229378,6.2959614,50,-2,-57.580578,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.1640768,5.9255543,53.06,45.59,61.84,39.56,8.333333333333334,1,1,0,0,0,7,4,1,798.5,1952650,903904.13,762197.88,0,0,0,4506.1465 +15093,18461,32895,32894,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,8.5758038,8.5939751,50,2,12.810162,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7853203,8.9028254,61.84,39.56,53.06,45.59,10,1,1,0,0,0,7,4,1,798.5,1952650,903904.13,762197.88,0,0,0,4506.1465 +15094,18462,32896,32897,-9,-9,1,1,80,0,0,0,1,1,-9,0,2,0,7.7590041,8.2985449,58,2,151.96838,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,8.3389759,7.9374843,57.04,19.68,57.34,47.92,8.333333333333334,1,1,0,0,11,10,4,1,1105.5,857648.13,480392.94,269437.88,0,0,0,3319.1709 +15094,18462,32897,32896,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,7.2997327,7.3840947,58,-2,-41.07468,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.5216808,57.34,47.92,57.04,19.68,6.666666666666667,1,1,0,0,0,10,4,1,1105.5,857648.13,480392.94,269437.88,0,0,0,3319.1709 +15095,18463,32898,32899,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,0,0,0,9,-2,113.36359,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,13.625262,0,0,1,1,0,4.7194147,0,48.03,29.36,51.17,47.77,6.666666666666667,1,1,0,0,0,12,3,1,339.5,1099694.6,316983.66,263840.97,0,36570.602,0,3230.2134 +15095,18463,32899,32898,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,7.8460083,7.9788809,6.5950627,9,2,.25904751,0,3,3,2021,8,0,20,45,1,0,0,15.49623,15.49623,0,0,0,1,0,0,0,0,1,1,0,4.8133173,6.5471587,51.17,47.77,48.03,29.36,8.333333333333334,1,1,0,0,10,12,3,1,339.5,1099694.6,316983.66,263840.97,0,36570.602,0,3230.2134 +15096,18464,32900,32901,-9,-9,1,0,60,0,0,0,3,3,-9,0,4,6.5579176,6.4137468,0,10,-1,-69.752518,0,-9,-9,2021,15,5,10,10,1,5,0,8.5278034,8.5278034,0,0,0,0,0,0,0,0,0,0,0,0,0,42.42,50.43,46.08,57.2,5,1,1,0,0,11,6,3,0,1230,532467.38,89769.133,170707.97,0,0,0,1590.8713 +15096,18464,32901,32900,-9,-9,1,1,61,0,0,0,3,3,-9,0,3,7.9996848,7.8364773,0,39,1,-60.34737,0,3,3,2021,12,0,38,30,1,0,0,7.1212502,7.1212502,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,42.42,50.43,5,1,1,0,0,10,6,3,0,1230,532467.38,89769.133,170707.97,0,0,0,1590.8713 +15097,18465,32902,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,5.621429,7.4500408,6.9451962,0,0,-1094.9551,0,3,3,2021,12,0,25,6,1,0,0,1.239412,1.239412,0,0,0,0,0,0,0,0,1,1,0,0,7.5064197,37.17,50.6,-9,-9,6.666666666666667,1,1,0,0,11,12,3,0,91,388295.03,56216.344,250436.28,0,0,394.64069,2502.1558 +15098,18466,32903,32904,-9,-9,1,1,66,0,0,0,3,3,-9,0,3,0,7.3135891,7.486455,9,3,-14.110838,0,3,-9,2021,10,0,0,84,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8248243,7.2711682,51,48,59.02,30.85,7,1,1,0,0,0,13,2,1,339,374141.34,280392.06,257311.06,0,-615.74725,0,1680.9075 +15098,18466,32904,32903,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,0,0,9,-3,89.024422,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1048698,0,59.02,30.85,51,48,8.333333333333334,1,1,0,0,0,13,2,1,339,374141.34,280392.06,257311.06,0,-615.74725,0,1680.9075 +15099,18467,32905,32906,-9,-9,1,0,23,0,0,0,2,2,-9,0,3,7.3874679,7.6130252,0,4,-5,92.796822,0,2,-9,2021,12,0,26,15,1,0,0,8.5801735,8.5801735,.05,.05,0,0,0,0,0,2,0,0,0,0,0,48.45,49.46,28.57,61.36,6.666666666666667,1,1,0,0,4,4,4,0,474.5,91642.531,-29491.426,45229.984,44366.688,448.62823,0,2697.395 +15099,18467,32906,32905,-9,-9,1,1,28,0,0,0,2,2,-9,0,3,8.1798468,7.9200444,0,4,5,106.87122,0,-9,-9,2021,9,0,18,20,1,0,0,20.732456,20.732456,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.57,61.36,48.45,49.46,8.333333333333334,4,2,0,0,8,4,4,0,474.5,91642.531,-29491.426,45229.984,44366.688,448.62823,0,2697.395 +15100,18468,32907,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,1,0,0,0,0,0,-987.23181,0,3,3,2021,22,7,0,0,4,7,0,0,0,0,0,0,1,0,6.4674067,0,0,1,1,0,0,0,20.97,24.53,-9,-9,1.666666666666667,1,1,0,0,0,12,1,1,194,258337.27,0,215757.97,0,0,0,1257.8265 +15100,18469,32908,-9,32907,-9,1,0,57,0,0,0,3,3,-9,0,2,7.3020835,7.3022966,0,0,0,-933.78748,0,3,3,2021,11,0,29,29,1,0,0,8.8724566,8.8724566,.05,.05,0,0,0,0,0,27,1,1,0,0,0,41.46,37.62,-9,-9,5,1,1,0,0,10,12,3,1,771,334261.28,-98892.68,0,0,449.80936,497.33322,404.18738 +15101,18470,32909,32910,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.227706,8.0127525,43,2,-12.106277,0,3,3,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0508041,8.2955236,54.96,53.17,54.2,57.49,8.333333333333334,1,1,0,0,0,9,4,1,1714,2186062,633827.25,844466.31,0,0,0,4159.8657 +15101,18470,32910,32909,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,7.7467556,7.7078691,43,-2,-39.250397,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.3536611,8.012537,54.2,57.49,54.96,53.17,8.333333333333334,1,1,0,0,3,9,4,1,1714,2186062,633827.25,844466.31,0,0,0,4159.8657 +15102,18471,32911,32912,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,6.3339643,6.4534426,6,4,-96.312706,0,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,6.3533936,54.96,53.17,46.87,23.34,8.333333333333334,1,1,0,0,1,13,2,1,337,455543.88,107556.23,273842.91,0,0,0,1430.2869 +15102,18471,32912,32911,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,6,-4,66.539406,0,3,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.87,23.34,54.96,53.17,5,1,1,0,0,0,13,2,1,337,455543.88,107556.23,273842.91,0,0,0,1430.2869 +15103,18472,32913,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1037.7885,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54.35,51.96,-9,-9,8.333333333333334,1,1,0,0,4,7,1,0,582,-95086.633,0,0,0,528.26013,0,522.06927 +15104,18473,32914,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.776598,8.6817513,0,0,0,-910.28314,0,2,2,2021,13,4,42,40,1,4,0,11.07387,11.07387,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.15,59.64,-9,-9,10,1,1,0,0,10,5,5,1,630,-256157.97,168498.67,0,0,0,0,2138.741 +15105,18474,32915,-9,32916,-9,1,0,10,0,1,1,3,0,-9,0,5,0,0,0,0,0,-985.38177,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,62,-9,-9,7,4,2,-9,0,0,8,5,1,679.5,200209.27,-13474.109,292981.72,100217.14,7445.5542,10033.478,2354.4417 +15105,18474,32916,-9,-9,-9,1,0,46,0,1,0,1,1,-9,0,5,8.6731348,8.7068081,0,0,0,-949.33057,0,2,2,2021,18,8,42,41,1,8,0,16.748781,16.748781,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.87,57.73,-9,-9,3.333333333333333,1,1,0,1,11,8,5,1,679.5,200209.27,-13474.109,292981.72,100217.14,7445.5542,10033.478,2354.4417 +15106,18475,32917,32918,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,4.5693045,4.8150134,59,-5,-109.78336,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,27,1,1,0,4.2747121,4.2973771,60.12,54.8,43.45,40.09,8.333333333333334,1,1,0,0,0,4,3,1,910,687983,326543.56,416593.19,0,0,0,3376.1182 +15106,18475,32918,32917,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,7.650403,7.8040462,59,5,92.687065,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,5.4144354,0,0,1,1,0,2.4825037,7.8185935,43.45,40.09,60.12,54.8,8.333333333333334,1,1,0,0,0,4,3,1,910,687983,326543.56,416593.19,0,0,0,3376.1182 +15107,18476,32919,32920,-9,-9,1,1,93,0,0,0,3,3,-9,0,2,0,6.4205294,6.1339164,8,8,-12.891259,0,-9,-9,2021,12,5,0,0,4,5,0,0,0,0,0,0,1,5.1735282,0,66.216492,0,1,1,0,0,6.3726025,64.89,14.84,46.29,24.63,10,2,3,0,0,0,6,2,1,1075,72644.484,18834.795,180458.34,0,0,0,1325.8438 +15107,18476,32920,32919,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,8,-8,-119.65129,0,-9,-9,2021,16,8,0,0,4,8,0,0,0,0,0,0,1,0,20.330545,0,0,1,1,0,0,0,46.29,24.63,64.89,14.84,10,2,3,0,0,0,6,2,1,1075,72644.484,18834.795,180458.34,0,0,0,1325.8438 +15108,18477,32921,32922,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,8.0852461,8.2638073,4.9549236,6,-3,33.286537,0,-9,-9,2021,11,0,20,30,1,1,0,22.269804,22.269804,0,0,0,0,0,0,0,0,1,1,0,4.1926832,5.5153847,50,47,43.59,59.64,7,1,1,0,0,1,8,5,0,787.5,1903637.1,701077.13,905107.25,0,0,0,7874.1787 +15108,18477,32922,32921,-9,-9,1,1,70,0,0,0,2,2,-9,0,3,9.0161028,8.9145412,5.8292365,6,3,-.75968862,0,2,2,2021,21,9,45,40,1,9,0,19.99559,19.99559,0,0,0,0,0,0,0,0,1,1,0,8.5923738,5.7994547,43.59,59.64,50,47,3.333333333333333,1,1,0,1,7,8,5,0,787.5,1903637.1,701077.13,905107.25,0,0,0,7874.1787 +15109,18478,32923,-9,-9,-9,1,0,74,0,0,0,1,1,-9,0,4,0,6.3356199,6.3929448,0,0,-1072.1965,0,3,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,3.5030029,0,19.711437,0,1,1,0,6.3767753,6.4244018,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,8,6,2,0,339,406436.03,0,169785.09,0,-3181.8079,0,1707.5369 +15110,18479,32924,-9,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1022.9357,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,18.756958,15.680363,186.1731,0,1,1,0,2.8858848,0,54,46,-9,-9,8,1,1,0,0,0,2,1,1,533,-161009.34,0,60926.262,0,-453.76474,777.75305,2359.8884 +15111,18480,32925,32926,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,7.5050435,7.6634588,54,0,58.086433,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.6080942,48.24,45.43,57.49,34.36,8.333333333333334,1,1,0,0,0,13,3,1,309.5,869484.06,539510.38,135617.88,0,0,0,2326.2927 +15111,18480,32926,32925,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.5662966,6.3707566,11,0,72.567581,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,8.2730989,0,0,1,1,0,4.6674528,5.9325147,57.49,34.36,48.24,45.43,8.333333333333334,1,1,0,0,12,13,3,1,309.5,869484.06,539510.38,135617.88,0,0,0,2326.2927 +15112,18481,32927,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,6.12012,5.6985888,0,0,-1036.4233,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,10.83666,0,0,1,1,0,4.7183409,5.919642,48,35,-9,-9,10,1,1,0,0,0,11,2,1,675,444587.94,67477.891,140360.42,0,0,0,740.08484 +15113,18482,32928,-9,32931,32929,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-929.9859,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15113,18482,32929,32931,-9,-9,1,1,41,1,2,0,1,1,-9,0,5,0,0,0,11,2,0,0,1,2,2021,11,0,0,12,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.8034229,0,38.59,63.37,54.96,53.17,6.666666666666667,1,1,0,0,10,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15113,18482,32930,-9,32931,32929,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.8938,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15113,18482,32931,32929,-9,-9,1,0,39,1,2,0,1,1,-9,0,3,0,0,0,13,-2,0,0,1,1,2021,7,1,0,26,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5834503,0,54.96,53.17,38.59,63.37,6.666666666666667,1,1,0,0,11,7,2,1,392.25,250718.69,4379.1699,263788.03,143535.52,0,2384.73,3025.1807 +15114,18483,32932,32933,-9,-9,1,1,57,0,0,0,1,1,-9,0,5,9.1075888,9.4844942,0,31,2,9.9351654,0,2,2,2021,7,0,40,40,1,0,0,33.830902,33.830902,.05,.05,.05,0,0,0,0,0,0,0,0,4.9065723,0,55.17,58.56,57.16,56.15,8.333333333333334,1,1,0,0,8,13,5,1,1522,319021.38,141589.78,130728.17,12814.131,-319.59406,0,3787.7881 +15114,18483,32933,32932,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,7.6612678,7.2763524,0,7,-2,-60.477386,0,-9,-9,2021,6,0,30,30,1,0,0,7.0855036,7.0855036,.05,.05,.05,0,0,0,0,0,0,0,0,3.8688295,0,57.16,56.15,55.17,58.56,8.333333333333334,1,1,0,0,8,13,5,1,1522,319021.38,141589.78,130728.17,12814.131,-319.59406,0,3787.7881 +15114,18484,32934,-9,32933,32932,1,1,26,0,0,0,1,1,-9,0,4,7.8616023,7.9055862,0,0,0,-1125.347,0,1,1,2021,10,0,40,40,1,1,1,7.9999847,7.9999847,0,0,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,744,-81209.008,0,0,0,0,0,1035.9613 +15114,18485,32935,-9,32933,32932,1,1,23,0,0,0,1,1,1,0,4,7.9926586,8.0273542,0,0,0,-1099.2916,-9,1,1,2021,10,0,40,0,1,1,1,6.5318155,6.5318155,0,0,0,0,0,0,0,0,0,0,0,3.582068,0,49,58,-9,-9,7,1,1,0,0,1,13,3,1,264,-207721.72,0,0,0,0,0,1250.067 +15115,18486,32936,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.3586769,8.3920813,0,0,0,-912.05237,0,2,2,2021,7,0,40,42,1,0,0,11.371789,11.371789,.05,.05,0,0,0,0,0,2,0,0,0,1.3915039,0,53.56,49.66,-9,-9,6.666666666666667,1,1,0,0,6,6,4,1,417,320773.47,124184.76,112200.06,0,8476.3848,0,1640.4706 +15116,18487,32937,32938,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,0,0,54,-5,-32.467148,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.14,18.77,59.8,39.25,5,1,1,0,0,0,5,2,0,818,210777.13,0,256590.97,0,0,0,2138.9561 +15116,18487,32938,32937,-9,-9,1,1,79,0,0,0,3,3,-9,0,2,0,4.3067269,4.6783128,7,5,109.19208,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.1611114,59.8,39.25,65.14,18.77,6.666666666666667,1,1,0,0,0,5,2,0,818,210777.13,0,256590.97,0,0,0,2138.9561 +15117,18488,32939,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,2,7.5532107,7.9453335,0,0,0,-1047.2946,-9,3,3,2021,17,5,44,0,1,5,0,5.1270647,5.1270647,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,27.98,41.86,-9,-9,6.666666666666667,1,1,0,1,9,9,3,0,1872,-34424.777,8264.0664,0,0,0,0,965.2254 +15118,18489,32940,32941,-9,-9,1,1,73,0,0,0,2,2,-9,0,2,0,7.1229377,7.2334895,11,1,17.828802,0,3,3,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,8.1012068,6.9712229,57.57,44.16,57.51,42.37,8.333333333333334,1,1,0,0,7,4,4,1,1019,1272724.8,974911.63,238964.38,0,0,0,4468.8276 +15118,18489,32941,32940,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,8.1193209,7.856545,11,-1,1.0725237,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.5151558,8.0613594,57.51,42.37,57.57,44.16,8.333333333333334,1,1,0,0,5,4,4,1,1019,1272724.8,974911.63,238964.38,0,0,0,4468.8276 +15119,18490,32942,32943,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,7.6510539,7.3693805,0,6,-4,81.260704,0,2,3,2021,7,0,51,35,1,0,0,4.9447808,4.9447808,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.06,57.76,10,1,1,0,0,7,5,4,1,332,436364.41,359890.88,138158.91,0,6969.0742,0,1286.8741 +15119,18490,32943,32942,-9,-9,1,1,56,0,0,0,3,3,-9,0,5,7.7541733,7.8452783,0,6,4,149.12753,0,2,2,2021,4,0,32,48,1,0,0,9.8779745,9.8779745,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,58.15,52.91,0,1,1,0,0,7,5,4,1,332,436364.41,359890.88,138158.91,0,6969.0742,0,1286.8741 +15119,18491,32944,-9,32942,32943,1,1,20,0,0,0,2,2,-9,0,4,7.4539018,7.1757703,0,0,0,-974.0047,0,2,3,2021,5,0,35,40,1,0,1,4.6923137,4.6923137,.05,.05,0,0,0,0,0,0,0,0,0,3.0104239,0,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,2,5,3,1,913,184842.55,81283.609,0,0,0,0,1123.262 +15120,18492,32945,-9,32947,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-937.58557,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,848.33331,164751.83,88257.352,0,0,0,0,2383.3916 +15120,18492,32946,-9,32947,-9,1,0,17,0,1,0,2,2,-9,0,5,0,0,0,0,0,-915.44769,-9,2,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.71,63.08,-9,-9,6.666666666666667,3,4,1,0,0,8,3,0,848.33331,164751.83,88257.352,0,0,0,0,2383.3916 +15120,18492,32947,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,2,7.9838591,8.1470852,0,0,0,-1185.3112,0,3,3,2021,20,9,21,20,1,9,0,19.595287,19.595287,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.3,43.01,-9,-9,5,3,4,0,0,6,8,3,0,848.33331,164751.83,88257.352,0,0,0,0,2383.3916 +15121,18493,32948,32950,-9,-9,1,0,64,0,2,0,1,1,-9,0,5,8.4457827,8.2965698,0,25,7,-46.449368,0,1,1,2021,7,0,29,29,1,0,0,24.508001,24.508001,0,0,0,0,0,0,0,2,1,1,0,3.1119878,0,48.18,61.8,60.12,54.8,6.666666666666667,1,1,0,0,12,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15121,18493,32949,-9,32948,32950,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1015.2972,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15121,18493,32950,32948,-9,-9,1,1,57,0,2,0,1,1,-9,0,4,8.9830713,9.2367239,0,25,-7,22.566677,0,2,2,2021,6,0,38,35,1,0,0,25.535561,25.535561,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,48.18,61.8,8.333333333333334,2,3,0,0,11,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15121,18493,32951,-9,32948,32950,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-989.10669,-9,1,1,2021,17,0,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36,45,-9,-9,5,2,3,-9,0,0,8,5,1,839.25,3097782,1125427.3,1074682,243409.13,0,0,4801.7031 +15122,18494,32952,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,2,0,0,0,0,0,-977.23016,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,9.3787823,0,0,1,1,0,1.6015434,0,68.34,24.19,-9,-9,8.333333333333334,1,1,0,0,0,12,1,1,1129,-162876.2,0,0,0,0,0,635.14948 +15123,18495,32953,32954,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.9468536,8.672266,0,12,-3,102.10633,0,2,2,2021,6,0,45,45,1,0,0,17.40519,17.40519,.05,.05,0,0,0,0,0,0,0,0,0,1.5516131,0,51.49,57.57,62.39,56.71,8.333333333333334,1,1,0,0,12,12,5,0,286.5,1102434,812095.25,242027.5,97865.625,0,0,6444.9902 +15123,18495,32954,32953,-9,-9,1,1,58,0,0,0,2,2,-9,0,5,9.3195572,9.5159407,0,12,3,-14.755182,0,2,2,2021,6,0,80,50,1,0,0,18.441776,18.441776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.49,57.57,10,1,1,0,0,13,12,5,0,286.5,1102434,812095.25,242027.5,97865.625,0,0,6444.9902 +15124,18496,32955,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,4,7.9315901,7.967196,0,0,0,-995.80212,-9,3,1,2021,4,0,52,0,1,0,0,7.1562228,7.1562228,0,0,0,0,0,0,0,7,1,1,0,6.5162706,0,55.9,52.64,-9,-9,9,4,2,0,0,10,8,4,0,816,-42850.535,0,0,0,0,1425.9329,2139.271 +15124,18496,32956,-9,32955,-9,1,1,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1018.946,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.82,53.97,-9,-9,8.333333333333334,4,2,0,0,0,8,4,0,816,-42850.535,0,0,0,0,1425.9329,2139.271 +15125,18497,32957,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1021.3605,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,1,2.3846416,0,23.212143,0,1,1,0,0,0,40.38,23.69,-9,-9,1.666666666666667,2,3,0,0,5,8,1,0,560,195153.3,0,0,0,0,0,1610.8958 +15126,18498,32958,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,2,0,6.192163,6.4146824,0,0,-988.63501,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,3.1707063,0,0,1,1,0,0,5.8821697,38.24,25.76,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,1353,253528.88,34745.875,69429.625,0,0,0,1668.0381 +15127,18499,32959,-9,-9,-9,1,1,60,0,0,0,1,1,-9,0,3,8.4641886,8.5005617,0,0,0,-1075.687,0,3,3,2021,11,0,40,40,1,0,0,13.614183,13.614183,0,0,0,0,0,0,0,0,0,0,0,5.4195695,0,56.01,44.41,-9,-9,8.333333333333334,1,1,0,0,7,6,4,1,184,1384456.8,656160.06,-1769.6106,0,0,0,2244.0073 +15128,18500,32960,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-932.67346,-9,3,3,2021,31,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,17.78,34.25,-9,-9,6.666666666666667,1,1,0,1,0,6,1,0,116,132749.02,0,154066.14,0,0,0,1376.9496 +15128,18501,32961,-9,32960,-9,1,1,38,0,0,0,2,2,-9,1,1,0,0,0,0,0,-929.54138,0,2,2,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.7,25.29,-9,-9,5,1,1,0,0,2,6,1,0,214,-123042.97,0,0,0,-1697.6727,0,1044.8112 +15129,18502,32962,-9,32963,32964,1,0,23,0,0,0,2,2,-9,0,4,0,0,0,0,0,-988.10876,0,2,2,2021,11,0,0,36,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,58,-9,-9,7,1,1,0,0,0,9,1,0,328,-14532.153,0,0,0,0,0,1391.6921 +15129,18503,32963,32964,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,8.7238493,8.7364016,0,6,-4,-47.320015,0,3,3,2021,8,0,38,37,1,0,0,20.939392,20.939392,0,0,0,0,0,0,0,0,1,1,0,.66879499,0,57.16,56.15,52.77,55.33,8.333333333333334,1,1,0,0,8,9,5,0,925.5,1041840.3,822957.38,284472.63,-10449.259,10029.509,0,4178.9072 +15129,18503,32964,32963,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,8.9780121,8.8356609,0,6,4,107.93462,0,-9,-9,2021,9,1,43,45,1,1,0,17.579716,17.579716,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,52.77,55.33,57.16,56.15,8.333333333333334,1,1,0,0,7,9,5,0,925.5,1041840.3,822957.38,284472.63,-10449.259,10029.509,0,4178.9072 +15130,18504,32965,32966,-9,-9,1,1,60,0,0,0,2,2,-9,0,3,7.1974845,6.7606478,0,11,5,3.5001733,0,2,2,2021,8,1,36,34,1,1,0,3.9471953,3.9471953,0,0,0,0,0,0,0,0,0,0,0,8.8617125,0,56.33,44.26,49.04,55.86,8.333333333333334,1,1,0,0,14,10,5,1,1223,1380075.1,138878.91,0,0,0,0,8423.9648 +15130,18504,32966,32965,-9,-9,1,0,55,0,0,0,1,1,-9,0,3,9.6725979,9.5366602,0,32,-5,-43.045696,0,2,2,2021,12,0,51,50,1,0,0,32.618614,32.618614,0,0,0,0,0,0,0,0,0,0,0,1.1452314,0,49.04,55.86,56.33,44.26,8.333333333333334,1,1,0,0,14,10,5,1,1223,1380075.1,138878.91,0,0,0,0,8423.9648 +15130,18505,32967,-9,32966,32965,1,0,25,0,0,0,1,1,-9,0,4,8.9403944,8.7436285,0,0,0,-1078.3401,-9,1,2,2021,11,3,45,0,1,3,1,15.015544,15.015544,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,3722,39166.742,75352.93,243542.92,87452.688,3721.2498,1693.1586,2065.397 +15131,18506,32968,-9,-9,-9,1,0,45,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1041.1461,0,3,2,2021,18,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.55,32.53,-9,-9,6.666666666666667,1,1,0,1,0,13,1,0,1560,0,0,0,0,0,0,1342.4694 +15132,18507,32969,-9,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.7753878,8.7044258,0,15,-4,20.427116,0,2,3,2021,9,0,53,63,1,0,0,18.418333,18.418333,.05,.05,0,0,0,0,0,7,0,0,0,3.8113446,0,54.96,53.17,63.41,37,6.666666666666667,1,1,0,0,10,4,5,1,607,293297.06,154307.22,164875.13,86823.789,0,0,2289.7134 +15132,18508,32970,-9,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.0380297,8.1961012,0,15,4,-70.894066,0,-9,-9,2021,13,1,45,44,1,1,0,6.552825,6.552825,.05,.05,0,0,0,0,0,2,0,0,0,2.2205076,0,63.41,37,54.96,53.17,6.666666666666667,1,1,0,0,8,4,5,1,843,-42856.711,-94896.609,0,0,0,-151.5145,1479.5637 +15133,18509,32971,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,2,0,0,0,0,0,-885.80731,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.03,43.33,-9,-9,1.666666666666667,1,1,1,1,0,9,1,0,442,166753.27,0,0,0,0,0,1540.3638 +15134,18510,32972,32973,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,9.1449471,9.0261517,0,6,-1,-1.1815437,0,2,3,2021,7,0,35,35,1,0,0,28.494802,28.494802,.05,.05,.05,0,0,0,0,0,0,0,0,9.2484655,0,51.24,58.84,42.05,58.8,8.333333333333334,1,1,0,0,7,1,5,1,336,3435123.8,1984769.8,475564.56,180732.03,6501.2266,0,8417.4189 +15134,18510,32973,32972,-9,-9,1,0,55,0,0,0,1,1,-9,0,4,9.1320114,8.8841257,0,6,1,29.517145,0,2,2,2021,18,6,38,38,1,6,0,19.518782,19.518782,0,0,.05,0,0,0,0,2,0,0,0,5.8259039,0,42.05,58.8,51.24,58.84,3.333333333333333,1,1,0,0,7,1,5,1,336,3435123.8,1984769.8,475564.56,180732.03,6501.2266,0,8417.4189 +15135,18511,32974,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.0116072,8.0821772,0,0,0,-1096.7177,0,2,3,2021,19,7,38,38,1,7,0,8.3642902,8.3642902,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.46,51.26,-9,-9,8.333333333333334,1,1,0,0,9,11,4,0,524,-43380.906,-124636.69,0,0,0,736.60742,1310.2511 +15136,18512,32975,32976,-9,-9,1,1,73,0,0,0,2,2,-9,0,1,0,5.832747,5.9784288,46,-3,-65.624176,0,3,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,1,0,0,3.0444689,27,1,1,0,6.3902178,5.9333572,57.79,24.97,46,36,8.333333333333334,1,1,0,0,5,9,2,0,269.5,505523.28,118057.66,202368.81,0,0,0,3050.0869 +15136,18512,32976,32975,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,3.245415,2.9979415,46,3,34.857048,0,3,3,2021,24,9,0,0,4,9,0,0,0,0,0,0,1,1.5784105,20.092348,27.959118,0,1,1,0,4.0828619,3.0948598,46,36,57.79,24.97,6.666666666666667,1,1,0,0,5,9,2,0,269.5,505523.28,118057.66,202368.81,0,0,0,3050.0869 +15137,18513,32977,32978,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,49,0,-15.311051,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5571675,0,60.8,22.12,56.27,37.01,8.333333333333334,1,1,0,0,0,2,2,1,750.5,40594.137,0,0,0,0,0,1305.3604 +15137,18513,32978,32977,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,4.4794464,4.5515447,49,0,93.685448,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.2829351,4.4486938,56.27,37.01,60.8,22.12,5,1,1,0,0,6,2,2,1,750.5,40594.137,0,0,0,0,0,1305.3604 +15138,18514,32979,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.9317632,7.8554335,0,0,0,-1024.3806,0,3,3,2021,20,7,45,44,1,7,0,7.4774375,7.4774375,0,0,0,0,0,0,0,0,0,0,0,0,0,16.99,53.15,-9,-9,1.666666666666667,1,1,0,1,7,12,4,0,1077,278148.94,0,235294.22,0,0,0,2121.4187 +15138,18515,32980,-9,32979,-9,1,0,23,0,0,0,2,2,-9,0,2,7.3991499,7.0973477,0,0,0,-983.20605,0,2,-9,2021,13,1,29,29,1,1,1,6.1577606,6.1577606,0,0,0,0,0,0,0,0,0,0,0,0,0,25.5,59.31,-9,-9,6.666666666666667,1,1,0,0,3,12,3,0,1147,15332.244,0,0,0,2488.7942,0,324.94962 +15139,18516,32981,-9,32984,32982,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.4254,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15139,18516,32982,32984,-9,-9,1,1,40,0,2,0,2,2,-9,0,4,9.0130367,9.2440405,0,19,4,122.51929,0,2,2,2021,12,0,35,45,1,0,0,26.421448,26.421448,0,0,0,0,0,0,0,0,1,1,0,0,0,63.48,51.85,62.39,56.71,8.333333333333334,1,1,0,0,14,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15139,18516,32983,-9,32984,32982,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-916.76227,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15139,18516,32984,32982,-9,-9,1,0,36,0,2,0,2,2,-9,0,5,7.0970511,7.136764,0,18,-4,109.69073,0,3,2,2021,10,0,22,22,1,0,0,7.9518819,7.9518819,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,63.48,51.85,5,1,1,0,0,14,8,5,1,854.25,20598.961,0,0,0,516.37915,0,4057.3523 +15140,18517,32985,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,2,0,0,0,0,0,-933.48248,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,58.31,42.52,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,74,20516.93,0,148431.69,0,0,0,1173.4475 +15141,18518,32986,32987,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.7147398,8.0367098,6.5989552,8,2,100.82893,0,2,2,2021,8,0,24,19,1,0,0,9.8850002,9.8850002,0,0,0,0,0,0,0,0,0,0,0,4.2908626,6.7937951,57.33,53.46,52.12,34.27,8.333333333333334,1,1,0,0,8,11,5,1,554,4161755.3,2574183.5,819723.88,0,0,0,5373.7021 +15141,18518,32987,32986,-9,-9,1,1,63,0,0,0,1,1,-9,0,2,9.7915134,9.5226288,0,8,-2,-84.058983,0,2,2,2021,14,2,40,37,1,2,0,42.212307,42.212307,0,0,0,0,0,0,0,0,0,0,0,6.3561087,0,52.12,34.27,57.33,53.46,6.666666666666667,1,1,0,0,8,11,5,1,554,4161755.3,2574183.5,819723.88,0,0,0,5373.7021 +15142,18519,32988,32989,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,8.4472961,8.5161295,0,28,-7,127.52493,0,3,2,2021,7,1,50,50,1,1,0,9.2731333,9.2731333,.05,.05,0,0,0,0,0,14.5,1,1,0,3.7844803,0,57.33,53.46,55.63,15.42,8.333333333333334,1,1,0,0,13,13,4,1,912.5,529738,346178.38,197118.09,14210.875,1622.2014,21229.398,2925.9512 +15142,18519,32989,32988,-9,-9,1,0,67,0,0,0,2,2,-9,0,1,0,0,0,28,7,11.015361,0,2,2,2021,9,0,0,0,4,0,0,0,0,.05,.05,0,1,0,18.854025,0,0,1,1,0,0,0,55.63,15.42,57.33,53.46,8.333333333333334,1,1,0,0,7,13,4,1,912.5,529738,346178.38,197118.09,14210.875,1622.2014,21229.398,2925.9512 +15143,18520,32990,32991,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.6514769,8.816268,0,36,-1,-48.068016,0,2,2,2021,11,0,35,45,1,0,0,26.390587,26.390587,0,0,0,0,0,0,0,0,0,0,0,3.098829,0,54.62,48,38.63,55.24,8.333333333333334,1,1,0,0,12,7,5,1,2284.5,162927.78,101892.77,0,0,5117.1089,2309.3979,3516.9094 +15143,18520,32991,32990,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,8.0108147,8.0227299,0,36,1,106.56914,0,-9,2,2021,17,5,31,30,1,5,0,9.4791918,9.4791918,0,0,0,0,0,0,0,2,0,0,0,4.5379243,0,38.63,55.24,54.62,48,6.666666666666667,1,1,0,0,10,7,5,1,2284.5,162927.78,101892.77,0,0,5117.1089,2309.3979,3516.9094 +15144,18521,32992,32993,-9,-9,1,0,53,0,0,0,1,1,-9,0,5,8.4502449,8.6822271,0,30,-1,136.68851,0,1,1,2021,15,3,40,40,1,3,0,18.372343,18.372343,.05,.05,0,0,0,0,0,0,0,0,0,2.6580346,0,48.71,61.53,35.75,66.17,6.666666666666667,1,1,0,0,13,11,5,1,999,739170.13,795512,96302.453,3545.4346,0,0,3094.8467 +15144,18521,32993,32992,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,8.1469116,8.1791935,0,31,1,47.167557,0,3,3,2021,12,4,60,60,1,4,0,6.757123,6.757123,.05,.05,0,0,0,0,0,0,0,0,0,2.8370848,0,35.75,66.17,48.71,61.53,6.666666666666667,1,1,0,0,12,11,5,1,999,739170.13,795512,96302.453,3545.4346,0,0,3094.8467 +15144,18522,32994,-9,32992,32993,1,1,21,0,0,0,2,2,0,0,4,0,0,0,0,0,-895.58032,-9,1,1,2021,17,6,0,0,2,6,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,5,1,1,0,0,3,11,1,1,933,-68973.914,0,0,0,0,0,575.78772 +15145,18523,32995,-9,-9,-9,1,1,90,0,0,0,2,2,-9,0,3,0,4.0040722,3.9283974,0,0,-1091.8839,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6914359,4.1099348,51.26,50.95,-9,-9,6.666666666666667,1,1,0,0,0,1,2,1,551,289673.31,46542.156,74945.977,0,0,0,-188.19385 +15146,18524,32996,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,3,8.1710796,8.3844566,0,2,9,76.711288,0,2,2,2021,14,2,40,39,1,2,0,10.707391,10.707391,0,0,0,0,0,0,0,0,0,0,0,0,0,35.31,54.01,46,58,3.333333333333333,1,1,0,0,10,4,3,0,755,-160077.28,-24098.602,0,0,583.3158,904.89038,982.56183 +15147,18525,32997,32998,-9,-9,1,0,50,0,0,0,2,2,-9,0,2,0,0,0,5,-2,-55.007797,0,2,2,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42.97,30.71,51.49,57.57,5,1,1,1,0,0,11,2,0,625.5,3155216.3,116203.23,3294326,189361.47,63557.121,0,583.09332 +15147,18525,32998,32997,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,.82563728,1.0198117,0,5,2,58.950928,0,3,2,2021,12,0,44,45,1,0,0,.0065178745,.0065178745,0,0,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,42.97,30.71,6.666666666666667,1,1,0,0,11,11,2,0,625.5,3155216.3,116203.23,3294326,189361.47,63557.121,0,583.09332 +15147,18526,32999,-9,32997,32998,1,0,25,0,0,0,2,2,-9,0,4,7.6500487,8.0632477,0,0,0,-1078.0469,0,2,2,2021,12,0,43,0,1,0,1,7.2203965,7.2203965,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.74,57.22,-9,-9,8.333333333333334,1,1,0,0,6,11,4,0,1236,76817.969,-23425.926,0,0,0,0,2197.896 +15147,18527,33000,-9,32997,32998,1,0,23,0,0,0,2,2,-9,0,5,6.1501412,6.4626732,0,0,0,-886.96252,0,2,2,2021,12,0,34,0,1,0,1,2.0584264,2.0584264,0,0,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,-9,-9,10,1,1,0,1,4,11,2,0,531,-290049.84,0,0,0,0,0,1115.8541 +15148,18528,33001,33002,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.0710759,7.2239428,46,-1,131.01633,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9584808,7.1499596,53,47,51,46,7,1,1,0,0,0,1,2,1,387.5,545537.63,291510.66,131132.25,0,0,0,2089.5798 +15148,18528,33002,33001,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,1,-84.504318,0,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,46,53,47,7,1,1,0,0,0,1,2,1,387.5,545537.63,291510.66,131132.25,0,0,0,2089.5798 +15148,18529,33003,33004,-9,-9,1,1,44,0,0,0,2,2,-9,0,4,8.1353207,8.0932178,0,2,0,-61.592445,0,-9,-9,2021,9,0,40,45,1,1,0,13.300044,13.300044,.05,.05,0,0,0,0,0,0,1,1,0,4.0246496,0,52,55,54.21,47.1,7,1,1,0,0,1,1,4,1,1669.5,59176.336,-14399.5,0,0,0,0,2361.9429 +15148,18529,33004,33003,33002,33001,1,0,44,0,0,0,2,2,-9,0,2,6.4521656,6.7334704,0,2,0,-104.99694,0,3,2,2021,12,1,24,29,1,1,0,2.7769544,2.7769544,0,0,0,0,0,0,0,0,1,1,0,0,0,54.21,47.1,52,55,6.666666666666667,1,1,0,0,9,1,4,1,1669.5,59176.336,-14399.5,0,0,0,0,2361.9429 +15149,18530,33005,-9,33008,33006,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-887.11096,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15149,18530,33006,33008,-9,-9,1,1,33,0,2,0,2,2,-9,0,3,8.4927826,8.9652843,0,12,-13,-53.629288,0,2,2,2021,14,2,37,37,1,2,0,18.499598,18.499598,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.28,53.83,51.83,57.2,6.666666666666667,1,1,0,0,15,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15149,18530,33007,-9,33008,33006,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1166.6484,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15149,18530,33008,33006,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,7.8851714,7.7410007,0,12,13,-58.786182,0,2,2,2021,10,1,19,19,1,1,0,16.962856,16.962856,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,39.28,53.83,6.666666666666667,1,1,0,0,15,5,4,1,916.75,52882.699,31249.738,186157.19,140630.73,0,3820.0063,2880.2141 +15150,18531,33009,-9,33011,33012,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-955.7915,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15150,18531,33010,-9,33011,33012,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1184.777,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15150,18531,33011,33012,-9,-9,1,0,40,1,2,0,2,2,-9,0,3,8.4374475,8.7764435,0,12,-1,84.254913,0,3,3,2021,25,11,29,29,1,11,0,25.429834,25.429834,.05,.05,0,0,0,0,0,7,0,0,0,0,0,20.72,56.86,43.26,35.91,6.666666666666667,1,1,0,0,12,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15150,18531,33012,33011,-9,-9,1,1,41,1,2,0,2,2,-9,0,2,8.4990683,8.4255037,0,12,1,.64072961,0,-9,-9,2021,15,3,37,37,1,3,0,12.484418,12.484418,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.26,35.91,20.72,56.86,5,1,1,0,1,13,13,4,1,1488.75,124032.59,204277.45,130173.69,90841.281,340.09427,4595.4614,4094.3516 +15151,18532,33013,-9,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,4.8117604,4.9924445,0,0,-1022.5764,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6578665,5.3141851,40.23,47.45,-9,-9,8.333333333333334,1,1,0,0,0,10,2,0,549,116415.88,0,0,0,0,0,1464.4169 +15152,18533,33014,-9,33017,33016,1,0,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.45465,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33015,-9,33017,33016,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1004.0671,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33016,33017,-9,-9,1,1,36,0,3,0,2,2,-9,0,3,8.1685667,8.3650198,0,10,7,114.39548,0,2,2,2021,11,0,39,40,1,0,0,13.065319,13.065319,.05,.05,0,0,0,0,0,42,1,1,0,0,0,49.04,55.86,51.41,56.15,5,1,1,0,0,11,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33017,33016,-9,-9,1,0,29,0,3,0,2,2,-9,1,3,0,0,0,10,-7,-97.262413,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,49.04,55.86,6.666666666666667,1,1,0,0,1,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15152,18533,33018,-9,33017,33016,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1005.3876,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,3,0,719.79999,-43556.746,12857.965,0,0,0,0,3237.4666 +15153,18534,33019,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1083.0444,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.06,53.76,-9,-9,8.333333333333334,1,1,0,0,0,13,1,0,757,-201538.33,0,0,0,0,401.38373,480.12012 +15154,18535,33020,-9,33021,-9,1,1,10,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1032.2081,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33021,-9,-9,-9,1,0,38,0,4,0,2,2,-9,0,5,6.861166,6.4959669,0,0,0,-1103.1892,0,3,3,2021,4,0,16,16,1,0,0,7.4910097,7.4910097,0,0,0,0,0,0,0,0,1,1,0,0,0,42.42,58.81,-9,-9,0,3,4,0,0,7,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33022,-9,33021,-9,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-959.15717,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33023,-9,33021,-9,1,1,16,0,4,1,2,0,-9,0,5,0,4.0508385,5.0445676,0,0,-953.62695,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9857097,0,54.1,59.11,-9,-9,6.666666666666667,3,4,0,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15154,18535,33024,-9,33021,-9,1,1,16,0,4,1,2,0,-9,0,5,0,3.9838071,4.0580592,0,0,-1128.5918,-9,2,-9,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.921257,0,54.1,59.11,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,838.59998,-33296.777,0,0,0,2185.8298,0,2494.6375 +15155,18536,33025,33026,-9,-9,1,1,43,0,0,0,2,2,-9,0,5,8.8385849,9.0357084,0,17,5,-67.97596,0,2,2,2021,5,0,39,40,1,0,0,22.17477,22.17477,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.63,58.83,8.333333333333334,1,1,0,0,8,5,5,1,325,962244.56,855031.5,170301.47,47153.758,18619.268,0,5996.7539 +15155,18536,33026,33025,-9,-9,1,0,38,0,0,0,2,2,-9,0,5,8.859684,9.2937136,0,16,-5,-25.965263,0,3,3,2021,7,0,37,37,1,0,0,27.72843,27.72843,.05,.05,0,0,0,0,0,0,0,0,0,4.3635287,0,54.63,58.83,57.06,57.76,8.333333333333334,1,1,0,0,5,5,5,1,325,962244.56,855031.5,170301.47,47153.758,18619.268,0,5996.7539 +15156,18537,33027,33028,-9,-9,1,0,71,0,0,0,1,1,-9,0,3,0,7.6023369,6.9707742,53,-3,-1.9760889,0,2,1,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.3941588,7.1390519,37.36,54.65,41.47,42.02,3.333333333333333,1,1,0,0,0,2,3,1,441,1322319,898941.5,279944.69,100126.56,0,0,3199.1509 +15156,18537,33028,33027,-9,-9,1,1,74,0,0,0,1,1,-9,0,2,0,7.929554,7.7185187,11,3,-31.837036,0,2,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.1783295,7.7068548,41.47,42.02,37.36,54.65,8.333333333333334,1,1,0,0,5,2,3,1,441,1322319,898941.5,279944.69,100126.56,0,0,3199.1509 +15157,18538,33029,33030,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8075829,8.6790724,4.7890258,6,3,-99.218307,0,2,3,2021,7,0,49,60,1,0,0,17.838863,17.838863,0,0,0,0,0,0,0,0,1,1,0,5.1901889,5.0159092,61.04,39.41,53.2,18.99,8.333333333333334,1,1,0,0,8,11,4,1,1567,684828,98962.055,241330.53,0,11793.34,0,2416.6826 +15157,18538,33030,33029,-9,-9,1,0,56,0,0,0,3,3,-9,1,1,0,0,0,6,-3,10.888972,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.2,18.99,61.04,39.41,5,1,1,0,0,0,11,4,1,1567,684828,98962.055,241330.53,0,11793.34,0,2416.6826 +15158,18539,33031,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1052.6016,0,2,2,2021,28,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,0,19.99,33.18,-9,-9,5,1,1,0,0,0,12,2,1,1873,-108341.38,0,0,0,0,0,1184.3871 +15159,18540,33032,33033,-9,-9,1,1,55,0,1,0,3,3,-9,0,4,8.0137901,8.280035,0,28,2,-129.88708,0,3,3,2021,8,0,55,60,1,0,0,7.8926716,7.8926716,.05,.05,0,0,0,0,0,0,0,0,0,3.2068658,0,51.83,57.2,54.79,55.86,8.333333333333334,1,1,0,0,8,13,4,1,658.5,736202.63,574300,150296.06,68918.672,10432.62,-293.65921,3432.8281 +15159,18540,33033,33032,-9,-9,1,0,53,0,1,0,1,1,-9,0,4,8.5015364,8.4668465,0,28,-2,86.8647,0,2,2,2021,8,0,37,44,1,0,0,17.186895,17.186895,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,51.83,57.2,8.333333333333334,1,1,0,0,11,13,4,1,658.5,736202.63,574300,150296.06,68918.672,10432.62,-293.65921,3432.8281 +15160,18541,33034,33035,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,8.2566147,8.3610868,0,34,-4,78.174141,0,2,2,2021,8,0,37,37,1,0,0,13.686289,13.686289,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.83,57.2,41.17,59.31,8.333333333333334,1,1,0,0,8,5,5,1,2466.5,433907.13,39110.707,271946.47,0,0,0,4425.1113 +15160,18541,33035,33034,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,8.5334482,8.4463148,0,34,4,88.356125,0,3,3,2021,12,0,42,42,1,0,0,16.302677,16.302677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.17,59.31,51.83,57.2,5,1,1,0,0,8,5,5,1,2466.5,433907.13,39110.707,271946.47,0,0,0,4425.1113 +15160,18542,33036,-9,33034,33035,1,0,20,0,0,0,2,2,-9,0,3,8.1122236,8.2701969,0,0,0,-863.39136,0,1,2,2021,18,6,39,0,1,6,1,10.845611,10.845611,.05,.05,0,0,0,0,0,0,0,0,0,1.8285801,0,40.27,45.06,-9,-9,5,1,1,0,0,4,5,4,1,555,41314.859,52816.742,0,0,3814.8604,0,1692.7568 +15160,18543,33037,-9,33034,33035,1,1,18,0,0,0,2,2,-9,0,3,8.1347504,7.9398885,0,0,0,-995.71118,0,1,2,2021,5,0,38,40,1,0,1,9.3801718,9.3801718,0,0,0,0,0,0,0,0,0,0,0,7.7446775,0,54.89,46.52,-9,-9,8.333333333333334,1,1,0,0,3,5,4,1,218,74813.68,0,0,0,0,0,1871.7863 +15161,18544,33038,-9,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,6.1589117,6.2025361,0,0,-1025.0023,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.2667322,52,47,-9,-9,7,1,1,0,0,0,8,2,0,4127,717263.31,181268.67,372832.59,0,0,1943.6925,548.20544 +15162,18545,33039,33040,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,6.8484507,7.1467924,0,15,-4,22.384077,0,3,3,2021,3,0,20,27,1,0,0,6.1952333,6.1952333,0,0,0,0,0,0,0,0,0,0,0,0,0,47.37,55.41,52.99,51.28,1.666666666666667,1,1,0,0,8,7,5,1,996.5,658406.13,192556.91,551071.75,61688.148,0,0,3167.9734 +15162,18545,33040,33039,-9,-9,1,1,54,0,0,0,1,1,-9,0,3,8.8855114,8.6256952,0,15,4,-4.5955114,0,3,2,2021,9,0,35,40,1,0,0,23.924828,23.924828,.05,.05,0,0,0,0,0,2,0,0,0,1.2149271,0,52.99,51.28,47.37,55.41,6.666666666666667,1,1,0,0,8,7,5,1,996.5,658406.13,192556.91,551071.75,61688.148,0,0,3167.9734 +15163,18546,33041,-9,33042,33043,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-888.84497,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15163,18546,33042,33043,-9,-9,1,0,36,1,2,0,1,1,-9,0,4,8.6388283,8.7740164,0,14,-1,-51.279781,0,2,1,2021,11,0,44,50,1,0,0,13.488046,13.488046,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.77,61.04,38.04,58.33,8.333333333333334,1,1,0,0,11,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15163,18546,33043,33042,-9,-9,1,1,37,1,2,0,2,2,-9,0,3,9.6753731,9.7418022,0,14,1,.66901195,0,2,3,2021,13,2,54,40,1,2,0,28.521479,28.521479,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.04,58.33,40.77,61.04,6,1,1,0,0,10,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15163,18546,33044,-9,33042,33043,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1068.1494,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,7,5,1,342.25,719821.31,550926.88,675379.06,408983.06,0,0,65185.203 +15164,18547,33045,-9,33046,-9,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1041.7128,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,5,1,0,1350,37940.922,0,0,0,0,0,1096.2407 +15164,18547,33046,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,2,0,0,0,0,0,-1042.208,0,-9,-9,2021,16,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,39.73,42.82,-9,-9,5,1,1,1,1,0,5,1,0,1350,37940.922,0,0,0,0,0,1096.2407 +15164,18547,33047,-9,33046,-9,1,0,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1141.9249,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,5,1,0,1350,37940.922,0,0,0,0,0,1096.2407 +15165,18548,33048,33049,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.5545468,7.6852384,3,5,40.019859,0,-9,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0124278,7.271019,54.21,49.46,59.29,49.68,10,1,1,0,0,1,12,3,1,1068,1520921.9,1120734.5,184934.73,0,0,0,4554.4883 +15165,18548,33049,33048,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,0,7.5484219,7.4961491,3,-5,56.069904,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.5278792,7.2881489,59.29,49.68,54.21,49.46,8.333333333333334,1,1,0,0,11,12,3,1,1068,1520921.9,1120734.5,184934.73,0,0,0,4554.4883 +15166,18549,33050,-9,-9,-9,1,0,30,1,1,0,1,1,-9,0,3,7.8186741,8.227108,6.8032012,0,0,-900.54974,0,1,1,2021,27,11,32,32,1,11,0,10.000904,10.000904,.05,.05,0,0,0,0,0,0,1,1,0,6.702538,0,23.64,60.82,-9,-9,3.333333333333333,1,1,0,0,9,2,4,1,2763.5,-31052.506,9695.5029,0,0,0,2965.5818,2360.147 +15166,18549,33051,-9,33050,-9,1,0,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-939.66028,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,2,4,1,2763.5,-31052.506,9695.5029,0,0,0,2965.5818,2360.147 +15167,18550,33052,33053,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,0,0,27,7,41.929188,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,1.599771,5.0405531,22.021618,0,1,1,0,4.3576579,0,58.03,31.39,57.06,57.76,8.333333333333334,1,1,0,0,7,13,4,1,644.5,1016202.8,725071,266890.72,37480.938,0,5600.0859,2799.6968 +15167,18550,33053,33052,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,8.6496868,8.4712019,0,27,-7,9.5640163,0,3,2,2021,6,0,50,50,1,0,0,10.641397,10.641397,.05,.05,0,0,0,0,0,2,1,1,0,4.8408694,0,57.06,57.76,58.03,31.39,8.333333333333334,1,1,0,0,12,13,4,1,644.5,1016202.8,725071,266890.72,37480.938,0,5600.0859,2799.6968 +15168,18551,33054,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1105.6417,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.72,27.41,-9,-9,6.666666666666667,1,1,0,0,8,6,2,0,199,-321567.88,0,0,0,10.892514,0,1674.7278 +15169,18552,33055,33056,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,0,0,48,8,80.209541,0,3,2,2021,11,1,0,10,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53,47,49.35,59.64,8.333333333333334,1,1,0,0,10,7,3,1,1174,970481.75,340240.47,431223.94,0,0,0,2142.5925 +15169,18552,33056,33055,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,8.1077232,8.092762,6.0069842,46,-8,3.5123565,0,3,3,2021,16,6,26,0,1,6,0,13.329665,13.329665,0,0,0,0,0,0,0,0,1,1,0,2.2470391,5.9543943,49.35,59.64,53,47,8.333333333333334,1,1,0,0,10,7,3,1,1174,970481.75,340240.47,431223.94,0,0,0,2142.5925 +15170,18553,33057,-9,-9,-9,1,0,50,0,2,0,3,3,-9,0,4,7.602951,7.8531165,0,0,0,-949.96796,0,-9,-9,2021,9,0,35,35,1,0,0,6.9289823,6.9289823,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,6.666666666666667,1,1,0,0,3,11,2,1,237,47237.734,0,0,0,0,0,522.3891 +15170,18553,33058,-9,33057,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-944.90436,-9,3,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,11,2,1,237,47237.734,0,0,0,0,0,522.3891 +15171,18554,33059,-9,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,9.1286707,9.0583467,1.890659,0,0,-951.16077,0,3,3,2021,6,0,50,50,1,0,0,19.907124,19.907124,.05,.05,0,0,0,0,0,2,0,0,0,0,2.2423172,62.39,56.71,-9,-9,8.333333333333334,1,1,0,0,5,7,5,0,269,625502.38,286708.44,345643.66,63403.797,0,0,3251.4607 +15172,18555,33060,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,0,0,0,0,-921.32343,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,0,0,35.97,32.23,-9,-9,6.666666666666667,2,3,0,0,0,9,1,1,1480,0,0,0,0,0,0,-127.71276 +15172,18556,33061,33062,33060,-9,1,0,58,0,0,0,3,3,-9,0,3,7.961904,7.8650513,0,4,0,92.058609,0,3,2,2021,12,0,38,38,1,0,0,7.7413106,7.7413106,0,0,0,0,0,0,0,14.5,1,1,0,0,0,39.15,41.42,57.33,53.46,5,2,3,0,0,10,9,4,1,1509,1541335.5,1215820.5,316280.53,118178.81,283.82834,1664.2351,2461.0415 +15172,18556,33062,33061,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,8.2956648,7.7975755,0,4,0,4.4553275,0,-9,-9,2021,8,0,38,38,1,0,0,9.4287558,9.4287558,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,39.15,41.42,8.333333333333334,2,3,0,0,8,9,4,1,1509,1541335.5,1215820.5,316280.53,118178.81,283.82834,1664.2351,2461.0415 +15173,18557,33063,33064,-9,-9,1,1,59,0,0,0,3,3,-9,0,5,8.8845291,9.1689425,6.4595423,37,-1,33.550804,0,-9,-9,2021,2,1,60,60,1,1,0,13.63796,13.63796,.05,.05,0,0,0,0,0,0,0,0,0,0,6.8454103,30.43,52.53,59.14,52.5,0,1,1,0,0,9,8,5,1,446,776408.25,397654,337443.59,0,0,0,3804.3306 +15173,18557,33064,33063,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.7677321,8.0332966,5.462235,37,1,65.134644,0,3,3,2021,8,0,43,42,1,0,0,5.9139252,5.9139252,.05,.05,0,0,0,0,0,0,0,0,0,0,5.664012,59.14,52.5,30.43,52.53,1.666666666666667,1,1,0,0,7,8,5,1,446,776408.25,397654,337443.59,0,0,0,3804.3306 +15174,18558,33065,33066,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,7.2730899,7.8514504,7.30374,45,0,-18.87402,0,3,2,2021,13,1,12,13,1,1,0,16.793554,16.793554,0,0,0,0,0,0,0,2,1,1,0,6.0642862,6.8548985,54.37,54.8,55.27,44.81,8.333333333333334,1,1,0,0,6,9,3,0,1403,821103.5,611655.44,257287.5,0,0,0,2727.833 +15174,18558,33066,33065,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,7.1301994,6.994566,44,0,72.311241,0,3,2,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,5.8485751,6.448266,55.27,44.81,54.37,54.8,8.333333333333334,1,1,0,1,6,9,3,0,1403,821103.5,611655.44,257287.5,0,0,0,2727.833 +15175,18559,33067,33068,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.2212763,7.0117898,0,3,3,11.576077,0,2,3,2021,12,0,18,20,1,0,0,9.3186007,9.3186007,.05,.05,0,0,0,0,0,2,0,0,0,2.2274806,0,54.38,41.24,54.79,55.86,8.333333333333334,1,1,0,0,7,13,4,1,1483,173131.13,129153.83,73455.172,26533.344,1672.8135,0,2125.78 +15175,18559,33068,33067,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.421361,8.3569794,0,3,-3,-55.704872,0,2,2,2021,7,0,37,37,1,0,0,10.701838,10.701838,.05,.05,0,0,0,0,0,0,0,0,0,1.174582,0,54.79,55.86,54.38,41.24,8.333333333333334,1,1,0,0,10,13,4,1,1483,173131.13,129153.83,73455.172,26533.344,1672.8135,0,2125.78 +15176,18560,33069,33070,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.9052343,7.86309,0,33,5,103.42105,0,3,3,2021,16,4,29,28,1,4,0,9.0908813,9.0908813,0,0,0,0,0,0,0,7,0,0,0,0,0,48.53,58.91,57.16,56.15,8.333333333333334,1,1,0,0,9,8,4,1,377,713108.94,33095.703,702629.38,6881.9243,0,0,2476.8916 +15176,18560,33070,33069,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.8679872,7.7358756,0,31,-5,130.20151,0,2,2,2021,6,0,30,40,1,0,0,12.318324,12.318324,0,0,0,0,0,0,0,2,0,0,0,4.222755,0,57.16,56.15,48.53,58.91,8.333333333333334,1,1,0,0,9,8,4,1,377,713108.94,33095.703,702629.38,6881.9243,0,0,2476.8916 +15176,18561,33071,-9,33069,33070,1,0,26,0,0,0,1,1,-9,0,4,8.0587835,8.163414,0,0,0,-1063.1874,0,2,2,2021,9,0,40,0,1,0,1,9.4103518,9.4103518,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.31,58.29,-9,-9,8.333333333333334,1,1,0,0,1,8,4,1,852,-68781.656,158526.09,0,0,0,0,777.6571 +15177,18562,33072,33073,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,7.9609756,7.6256866,0,29,0,-102.55611,0,2,1,2021,8,0,40,40,1,0,0,5.8997445,5.8997445,.05,.05,0,0,0,0,0,0,0,0,0,6.4231,0,54.37,54.8,57.06,57.76,8.333333333333334,1,1,0,0,11,4,5,1,897.5,660683,473603.81,149831.72,0,0,0,3687.1982 +15177,18562,33073,33072,-9,-9,1,1,56,0,0,0,2,2,-9,0,5,8.5770769,8.5732298,0,29,0,144.2234,0,-9,-9,2021,7,0,46,49,1,0,0,12.275437,12.275437,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,54.37,54.8,6.666666666666667,1,1,0,0,11,4,5,1,897.5,660683,473603.81,149831.72,0,0,0,3687.1982 +15177,18563,33074,-9,33072,33073,1,1,26,0,0,0,2,2,-9,0,4,8.5878286,8.3301086,0,0,0,-934.2489,-9,2,2,2021,10,0,39,0,1,1,1,16.316023,16.316023,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,-9,-9,7,1,1,0,0,1,4,5,1,322,-160728.84,18033.551,94709.891,166492.06,1150.1184,1267.2397,1373.1207 +15178,18564,33075,33076,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,7.8841867,7.821219,0,6,-1,21.475977,0,-9,-9,2021,9,0,40,30,1,1,0,6.3166928,6.3166928,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53,54,39.66,50.06,8,4,1,0,0,1,13,5,1,484.5,668037.38,524094.25,201117.09,35785.938,0,0,2993.3359 +15178,18564,33076,33075,-9,-9,1,0,54,0,0,0,2,2,-9,0,2,8.3341255,8.3429422,0,6,1,-29.539421,0,3,3,2021,13,2,62,45,1,2,0,8.654974,8.654974,.05,.05,0,0,0,0,0,0,1,1,0,6.7410488,0,39.66,50.06,53,54,6.666666666666667,1,1,0,0,6,13,5,1,484.5,668037.38,524094.25,201117.09,35785.938,0,0,2993.3359 +15178,18565,33077,-9,33076,33075,1,0,18,0,0,1,2,0,0,0,1,0,0,0,0,0,-1068.3118,-9,2,2,2021,26,10,0,0,2,10,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,15.84,59.45,-9,-9,1.666666666666667,1,1,0,0,2,13,1,1,126,123755.56,0,0,0,0,0,0 +15179,18566,33078,33079,-9,-9,1,0,87,0,0,0,3,3,-9,0,4,0,5.12286,5.098208,56,-1,-38.830921,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6692765,5.7207546,52.34,56.95,60.7,47.65,10,1,1,0,0,0,9,2,1,614,440799.03,100296.45,385867.13,0,0,0,2052.9739 +15179,18566,33079,33078,-9,-9,1,1,88,0,0,0,3,3,-9,0,4,0,6.8112211,6.9365716,56,1,93.842522,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.3124096,6.9342208,60.7,47.65,52.34,56.95,10,1,1,0,0,0,9,2,1,614,440799.03,100296.45,385867.13,0,0,0,2052.9739 +15180,18567,33080,-9,-9,-9,1,1,24,0,0,0,2,2,-9,0,3,8.3759632,7.8471465,0,0,0,-1096.1858,0,2,2,2021,11,0,38,39,1,0,0,11.570068,11.570068,0,0,0,0,0,0,0,0,1,1,0,.33524925,0,38.51,59.43,-9,-9,6.666666666666667,1,1,0,0,6,9,4,1,1449,27438.996,0,0,0,0,0,1153.1803 +15181,18568,33081,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,7.3352084,7.2073808,0,0,-976.78986,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,5.5497842,7.167697,61.05,31.38,-9,-9,8.333333333333334,1,1,0,0,2,12,3,1,1310,484031.78,331887.34,140590.86,0,0,0,1801.4763 +15182,18569,33082,33086,-9,-9,1,1,34,0,4,0,2,2,-9,0,2,0,0,0,11,1,-65.819023,0,-9,-9,2021,30,11,0,45,3,11,0,0,0,.05,.05,0,0,0,0,0,0,1,0,1,0,0,7.28,63.64,26.14,55.77,5,1,1,1,0,6,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33083,-9,33086,33082,1,1,16,0,4,0,1,1,-9,0,4,0,0,0,0,0,-906.3905,1,2,2,2021,17,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,51.24,58.84,-9,-9,5,1,1,0,0,0,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33084,-9,33086,33082,1,1,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1019.3286,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33085,-9,33086,33082,1,1,8,0,4,1,3,0,-9,0,4,0,0,0,0,0,-916.50812,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,62,-9,-9,7,1,1,-9,0,0,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15182,18569,33086,33082,-9,-9,1,0,33,0,4,0,2,2,-9,0,4,7.5858326,7.8813186,0,11,-1,-104.37374,0,2,2,2021,20,8,36,35,1,8,0,6.5323033,6.5323033,0,0,0,0,0,0,0,0,1,0,1,0,0,26.14,55.77,7.28,63.64,5,1,1,0,0,4,9,2,0,1072.6,784052.75,-14630.683,784826.63,0,990.83844,0,1940.5074 +15183,18570,33087,33088,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,7.0910144,6.6752305,52,-2,54.343685,-9,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0497222,6.8983402,50,47,49.41,58.28,7,1,1,0,0,0,7,2,1,527.5,515551.03,219233.42,308296.13,0,0,0,2480.5581 +15183,18570,33088,33087,-9,-9,1,1,71,0,0,0,3,3,-9,0,4,0,6.54182,6.8136058,52,2,28.598799,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.6454954,6.6045485,49.41,58.28,50,47,6.666666666666667,1,1,0,0,1,7,2,1,527.5,515551.03,219233.42,308296.13,0,0,0,2480.5581 +15184,18571,33089,-9,33090,33091,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1021.4029,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,821,365332.72,35086.879,402269.16,0,26655.73,0,5329.877 +15184,18571,33090,33091,-9,-9,1,0,49,0,2,0,1,1,-9,0,3,8.9495516,8.7814493,0,12,-1,-11.820761,0,-9,-9,2021,20,8,44,42,1,8,0,22.287294,22.287294,0,0,0,0,0,0,0,0,1,1,0,1.2137858,0,41.04,43.32,52.4,52.91,6.666666666666667,1,1,0,0,14,8,5,1,821,365332.72,35086.879,402269.16,0,26655.73,0,5329.877 +15184,18571,33091,33090,-9,-9,1,1,50,0,2,0,1,1,-9,0,3,8.7377129,8.2551804,0,22,1,-42.665318,0,2,2,2021,10,0,50,50,1,0,0,12.316709,12.316709,0,0,0,0,0,0,0,0,1,1,0,3.330617,0,52.4,52.91,41.04,43.32,8.333333333333334,1,1,0,0,11,8,5,1,821,365332.72,35086.879,402269.16,0,26655.73,0,5329.877 +15185,18572,33092,33093,-9,-9,1,1,73,0,0,0,3,3,-9,0,2,0,6.4177847,6.4553485,54,4,-17.585392,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,8.1100969,6.366569,56.74,44.56,64.03,8.390000000000001,8.333333333333334,1,1,0,0,0,5,3,1,875,558676.38,366056.75,249422.73,0,0,0,5718.0273 +15185,18572,33093,33092,-9,-9,1,0,69,0,0,0,3,3,-9,0,1,0,7.3972378,7.4446979,54,-4,10.660556,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,10.070999,0,0,1,1,0,8.5488281,0,64.03,8.390000000000001,56.74,44.56,8.333333333333334,1,1,0,0,0,5,3,1,875,558676.38,366056.75,249422.73,0,0,0,5718.0273 +15186,18573,33094,33095,-9,-9,1,0,69,0,0,0,3,3,-9,0,3,0,2.1735425,2.0962875,23,-11,-51.224937,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.7311389,2.0100908,51,47,54,46,7,1,1,0,0,0,5,2,0,1083,110966.13,0,77186.531,0,0,0,979.51294 +15186,18573,33095,33094,-9,-9,1,1,80,0,0,0,3,3,-9,0,3,0,0,0,22,11,98.461082,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,54,46,51,47,8,1,1,0,0,0,5,2,0,1083,110966.13,0,77186.531,0,0,0,979.51294 +15187,18574,33096,33097,-9,-9,1,1,89,0,0,0,3,3,-9,0,4,0,7.2948809,7.3971243,68,4,-12.83217,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,1.443511,0,1,1,0,4.8923521,7.5353718,53.7,48.13,52,45,8.333333333333334,1,1,0,0,0,5,3,1,756,616082.75,291689.22,104390.45,0,13257.813,0,2724.6985 +15187,18574,33097,33096,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,6.9194417,6.8298564,11,-4,85.604988,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2375951,52,45,53.7,48.13,8,1,1,0,0,0,5,3,1,756,616082.75,291689.22,104390.45,0,13257.813,0,2724.6985 +15188,18575,33098,33099,-9,-9,1,0,49,0,0,0,2,2,-9,1,1,0,0,0,6,2,49.99931,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,24.93,19.95,43.72,51.38,1.666666666666667,1,1,0,0,0,11,3,1,1136,318708.75,31335.428,142492.81,8644.4766,0,0,1737.5087 +15188,18575,33099,33098,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.3413658,8.505044,0,6,-2,120.06148,0,-9,-9,2021,10,0,45,49,1,0,0,10.621502,10.621502,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,43.72,51.38,24.93,19.95,5,1,1,0,0,9,11,3,1,1136,318708.75,31335.428,142492.81,8644.4766,0,0,1737.5087 +15188,18576,33100,-9,33098,33099,1,1,24,0,0,0,1,1,-9,0,3,8.5749407,8.7596111,0,0,0,-889.76721,0,2,2,2021,12,1,47,48,1,1,1,14.650158,14.650158,.05,.05,0,0,0,0,0,2,1,1,0,0,0,54.38,46.77,-9,-9,1.666666666666667,1,1,0,0,7,11,5,1,551,187986.7,25440.137,0,0,0,0,2577.3833 +15188,18577,33101,-9,33098,33099,1,0,21,0,0,0,2,2,-9,0,3,7.2626624,7.2030311,0,0,0,-1023.1937,0,2,2,2021,11,2,40,10,1,2,1,3.780313,3.780313,0,0,0,0,0,0,0,14.5,1,1,0,0,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,4,11,3,1,505,-75140.492,0,0,0,0,0,983.82477 +15189,18578,33102,33103,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,5.6793642,5.2997837,7,-3,-106.78509,0,2,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.8825228,5.0700154,48.23,50.71,54.96,53.17,0,1,1,0,0,5,8,2,1,1175.5,589608.88,280700.88,163288.8,0,0,0,2589.3442 +15189,18578,33103,33102,-9,-9,1,1,67,0,0,0,2,2,-9,0,3,0,6.9011202,7.1029582,7,3,138.29858,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.7394109,6.8631697,54.96,53.17,48.23,50.71,10,1,1,0,0,5,8,2,1,1175.5,589608.88,280700.88,163288.8,0,0,0,2589.3442 +15190,18579,33104,-9,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.8898292,8.3894987,0,0,0,-1112.7711,0,3,3,2021,10,0,37,37,1,0,0,10.508007,10.508007,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.47,50.22,-9,-9,6.666666666666667,1,1,0,0,12,4,4,1,2775,238060.23,179566.55,235297.52,76956.563,3247.5774,0,1939.3018 +15191,18580,33105,33106,-9,-9,1,1,66,0,0,0,2,2,-9,0,2,0,0,0,13,-1,0,0,-9,-9,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,35.844093,0,0,1,1,0,0,0,59.03,14.12,43.78,53.93,8.333333333333334,1,1,0,0,0,5,1,1,899,79075.008,0,0,0,0,0,1032.7419 +15191,18580,33106,33105,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,0,0,13,1,0,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.78,53.93,59.03,14.12,1.666666666666667,1,1,0,0,0,5,1,1,899,79075.008,0,0,0,0,0,1032.7419 +15192,18581,33107,33108,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,0,8.3815413,8.5558786,1,2,30.270546,-9,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.6559024,8.4847536,57.06,57.76,54.1,59.11,8.333333333333334,1,1,0,0,9,9,5,1,457.5,1624437,139248.88,811811.38,0,0,0,6769.6011 +15192,18581,33108,33107,-9,-9,1,1,54,0,0,0,1,1,-9,0,5,9.2035217,9.2036657,0,21,-2,-68.32032,-9,2,2,2021,11,0,50,0,1,0,0,22.824087,22.824087,.05,.05,.05,0,0,0,0,0,0,0,0,4.4320774,0,54.1,59.11,57.06,57.76,8.333333333333334,1,1,0,0,9,9,5,1,457.5,1624437,139248.88,811811.38,0,0,0,6769.6011 +15193,18582,33109,-9,-9,-9,1,0,55,0,0,0,2,2,-9,1,1,8.2710361,8.1730204,0,0,0,-1025.6378,0,-9,-9,2021,25,10,16,0,1,10,0,27.339491,27.339491,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.36,20.96,-9,-9,1.666666666666667,1,1,0,0,9,2,4,1,479,1034845.6,635507.44,129132.17,56922.688,0,2053.2566,1332.156 +15193,18583,33110,-9,33109,-9,1,0,20,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1052.9333,1,2,-9,2021,20,8,0,14,2,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,34.17,57.25,-9,-9,3.333333333333333,1,1,0,0,3,2,1,1,2438,88591.75,0,0,0,0,0,0 +15193,18584,33111,-9,33109,-9,1,1,27,0,0,0,2,2,-9,0,4,5.2119994,5.196137,0,0,0,-922.02673,0,2,-9,2021,10,0,50,50,1,1,1,.53694421,.53694421,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,1,2,2,1,464,22112.861,0,0,0,0,0,-12.216546 +15194,18585,33112,33113,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,6.989809,7.2432494,58,1,31.767664,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.94706672,7.2217674,61.19,36.58,58.23,43.46,0,1,1,0,0,0,11,3,1,327,647589.38,469181.44,44591.156,0,0,0,3276.3867 +15194,18585,33113,33112,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.913476,7.2817049,58,-1,-38.439194,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.1020631,7.2784419,58.23,43.46,61.19,36.58,8.333333333333334,1,1,0,0,0,11,3,1,327,647589.38,469181.44,44591.156,0,0,0,3276.3867 +15195,18586,33114,-9,33116,33117,1,0,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-994.86676,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33115,-9,33116,33117,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1051.6006,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33116,33117,-9,-9,1,0,39,0,3,0,2,2,-9,0,5,6.8055615,6.7316899,0,14,6,99.730141,0,3,2,2021,9,0,12,12,1,0,0,8.1389608,8.1389608,0,0,0,0,0,0,0,0,1,1,0,0,0,53.4,55.31,50,57,8.333333333333334,2,3,0,1,9,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33117,33116,-9,-9,1,1,33,0,3,0,2,2,-9,0,4,8.4463768,8.4928265,0,14,-6,66.194847,0,3,2,2021,10,0,16,16,1,1,0,39.739555,39.739555,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,53.4,55.31,7,2,3,0,0,1,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15195,18586,33118,-9,33116,33117,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1095.071,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,3,0,498,573629.31,448969.53,254762.13,160115.45,0,211.53575,4120.1509 +15196,18587,33119,33120,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,5.8792319,6.2602491,12,2,-50.091881,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4589963,6.0085669,55.36,51.57,54.2,57.49,8.333333333333334,1,1,0,0,12,11,2,1,336,411612.19,24422.484,274342.31,0,62235.508,0,2001.6914 +15196,18587,33120,33119,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,5.928257,5.8900189,12,-2,-183.92705,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,120,1,1,0,3.750134,5.9163013,54.2,57.49,55.36,51.57,8.333333333333334,1,1,0,0,12,11,2,1,336,411612.19,24422.484,274342.31,0,62235.508,0,2001.6914 +15197,18588,33121,33122,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,6.0306249,6.7781758,6.5447421,35,2,-25.923653,0,3,2,2021,11,0,15,15,1,2,0,3.1067569,3.1067569,0,0,0,0,0,0,0,0,1,1,0,0,6.7134733,49,48,50.6,51,7,1,1,0,0,1,7,3,1,409,1189574.9,957205,317898.41,0,0,0,1861.0708 +15197,18588,33122,33121,-9,-9,1,1,58,0,0,0,2,2,-9,0,3,0,8.1496897,7.855588,35,-2,-91.274071,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9775796,50.6,51,49,48,8.333333333333334,1,1,0,0,5,7,3,1,409,1189574.9,957205,317898.41,0,0,0,1861.0708 +15198,18589,33123,33124,-9,-9,1,0,60,0,0,0,2,2,-9,0,3,7.6268597,7.5037322,0,6,-10,-22.834738,0,3,2,2021,11,0,17,18,1,2,0,16.504789,16.504789,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,58.3,52.91,7,1,1,0,0,1,2,3,1,996,540348.06,371457.38,116165.64,0,0,0,2851.905 +15198,18589,33124,33123,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,6.7092142,6.7113357,4.0491776,6,10,-73.03875,0,-9,2,2021,8,0,12,15,1,0,0,8.6210403,8.6210403,.05,.05,0,0,0,0,0,0,1,1,0,4.5340347,3.9626851,58.3,52.91,50,47,8.333333333333334,1,1,0,0,8,2,3,1,996,540348.06,371457.38,116165.64,0,0,0,2851.905 +15199,18590,33125,-9,33128,33127,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1149.0438,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,5,-9,0,0,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18590,33126,-9,33128,33127,1,1,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1061.1467,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,55,-9,-9,6,4,5,-9,0,0,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18590,33127,33128,-9,-9,1,1,52,0,2,0,2,2,-9,0,3,8.5054245,8.6789188,0,1,4,13.060418,-9,-9,-9,2021,12,0,48,0,1,0,0,12.660806,12.660806,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,43.12,58.55,6.666666666666667,4,5,0,0,11,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18590,33128,33127,-9,-9,1,0,48,0,2,0,1,1,-9,0,3,7.8902264,7.9327435,0,24,-4,-3.9773831,-9,3,3,2021,7,0,30,0,1,0,0,11.08968,11.08968,.05,.05,0,0,0,0,0,0,1,1,0,1.4071032,0,43.12,58.55,58.32,50.22,1.666666666666667,4,5,0,0,11,6,4,1,1917.5,1990965.8,1643563.1,310603.56,32403.848,10048.601,8183.8037,3628.9373 +15199,18591,33129,-9,33128,33127,1,1,26,0,2,0,1,1,-9,0,4,8.1224022,8.2571802,0,0,0,-961.53687,-9,1,2,2021,10,0,40,0,1,0,1,10.283507,10.283507,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,-9,-9,8.333333333333334,4,5,0,0,3,6,4,1,182,210429.91,5276.5146,0,0,0,0,1606.0768 +15199,18592,33130,-9,33128,33127,1,1,21,0,2,1,2,0,-9,0,5,0,0,0,0,0,-990.00946,-9,1,2,2021,9,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.54,58.85,-9,-9,8.333333333333334,4,5,0,0,0,6,1,1,542,-236090.66,0,0,0,0,0,0 +15200,18593,33131,33132,-9,-9,1,1,30,0,1,0,2,2,-9,0,2,8.3773375,8.3001842,0,5,-1,69.484604,0,2,2,2021,17,5,52,44,1,5,0,9.8680954,9.8680954,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.03,55.84,12.29,51.23,3.333333333333333,1,1,0,0,7,7,4,0,605.5,305484.66,143434.11,303845.88,128455.8,5550.5039,0,2309.6221 +15200,18593,33132,33131,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.7585697,7.0924335,0,5,1,-7.6339135,0,-9,-9,2021,26,9,13,25,1,9,0,5.396534,5.396534,.05,.05,0,0,0,0,0,0,1,1,0,0,0,12.29,51.23,38.03,55.84,1.666666666666667,1,1,0,0,3,7,4,0,605.5,305484.66,143434.11,303845.88,128455.8,5550.5039,0,2309.6221 +15201,18594,33133,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,0,8.2109833,8.0307837,0,0,-1052.3525,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.6871316,7.9844303,74.43000000000001,18.13,-9,-9,10,1,1,0,0,2,2,4,1,265,765737.81,389228.44,105312.35,0,2321.1128,0,2800.8975 +15202,18595,33134,-9,33136,-9,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-930.46906,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,3,0,624,12714.053,0,0,0,0,0,1960.4193 +15202,18595,33135,-9,33136,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1006.1325,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,2,3,-9,0,0,8,3,0,624,12714.053,0,0,0,0,0,1960.4193 +15202,18595,33136,-9,-9,-9,1,0,38,0,2,0,1,1,-9,0,5,7.6092796,7.8840418,0,0,0,-1087.2141,0,2,2,2021,14,2,36,32,1,2,0,8.6601887,8.6601887,0,0,0,0,0,0,0,0,1,1,0,0,0,25,67.38,-9,-9,3.333333333333333,2,3,0,0,3,8,3,0,624,12714.053,0,0,0,0,0,1960.4193 +15203,18596,33137,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,3,8.3129978,8.4583445,0,0,0,-1011.5942,0,-9,-9,2021,6,0,43,33,1,0,0,8.8531828,8.8531828,0,0,0,0,0,0,0,0,0,0,0,1.9427969,0,41.95,59.17,-9,-9,6.666666666666667,4,2,0,0,6,2,4,0,370,-202276.25,0,0,0,0,0,2451.6794 +15203,18597,33138,-9,-9,-9,1,0,26,0,0,0,1,1,-9,0,4,8.2058439,8.2523594,0,0,0,-998.24542,0,-9,-9,2021,12,1,43,43,1,1,0,14.325952,14.325952,0,0,0,0,0,0,0,0,0,0,0,0,0,38.94,60.48,-9,-9,5,1,1,0,0,4,2,4,0,932,-227087.09,0,0,0,0,0,2096.0703 +15204,18598,33139,-9,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,0,7.8405747,7.794035,4,-2,13.00969,0,-9,-9,2021,19,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.2658491,0,35.02,59.43,42.44,57.88,6.666666666666667,1,1,0,0,13,6,3,1,338,-33609.492,91352.172,0,0,7330.9443,0,2009.3088 +15204,18599,33140,-9,-9,-9,1,0,37,0,0,0,1,1,-9,0,5,6.10078,6.3313446,0,4,2,-23.469809,0,-9,-9,2021,12,1,5,15,1,1,0,10.658519,10.658519,0,0,0,0,0,0,0,0,0,0,0,1.4942756,0,42.44,57.88,35.02,59.43,8.333333333333334,1,1,0,0,4,6,3,1,1379,113247.02,53265.207,173121.44,104107.09,0,0,814.5376 +15205,18600,33141,33142,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.0050611,8.2548857,0,6,1,-99.249382,0,-9,-9,2021,6,0,42,42,1,0,0,7.9590664,7.9590664,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,28.9,61.01,8.333333333333334,1,1,0,0,6,12,5,1,522.5,261361.92,175419.63,245881.09,126655.88,4015.0986,432.97156,3177.2783 +15205,18600,33142,33141,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.5942583,8.5664005,0,6,-1,25.030325,0,2,2,2021,17,5,41,41,1,5,0,13.013789,13.013789,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.9,61.01,57.16,56.15,8.333333333333334,1,1,0,0,10,12,5,1,522.5,261361.92,175419.63,245881.09,126655.88,4015.0986,432.97156,3177.2783 +15206,18601,33143,33145,-9,-9,1,0,44,0,0,0,1,1,-9,0,3,8.5327091,8.619792,0,24,-3,-148.87347,0,1,1,2021,15,3,49,42,1,3,0,13.604568,13.604568,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.13,51.34,56.74,44.56,5,2,3,0,0,7,10,5,1,493.66666,660734.63,373588.47,261191.2,57731.75,-1065.6735,0,3936.8672 +15206,18601,33144,-9,33143,33145,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1042.2061,-9,1,1,2021,22,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2727971,0,30.66,53.18,-9,-9,8.333333333333334,2,3,0,0,0,10,5,1,493.66666,660734.63,373588.47,261191.2,57731.75,-1065.6735,0,3936.8672 +15206,18601,33145,33143,-9,-9,1,1,47,0,0,0,1,1,-9,0,2,7.9768772,7.7949119,0,24,3,-77.680351,0,2,2,2021,11,0,42,45,1,0,0,8.2591343,8.2591343,.05,.05,0,0,0,0,0,0,1,1,0,0,0,56.74,44.56,44.13,51.34,3.333333333333333,2,3,0,0,11,10,5,1,493.66666,660734.63,373588.47,261191.2,57731.75,-1065.6735,0,3936.8672 +15206,18602,33146,-9,33143,33145,1,0,19,0,0,0,2,2,1,0,3,0,0,0,0,0,-1058.8718,-9,1,1,2021,22,11,0,0,3,11,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.2,51.4,-9,-9,3.333333333333333,2,3,1,0,0,10,1,1,3462,-9106.6592,0,0,0,0,0,0 +15207,18603,33147,-9,-9,-9,1,0,55,0,0,0,2,2,-9,0,5,8.3537683,8.3364296,0,0,0,-1039.5878,0,2,2,2021,6,0,34,36,1,0,0,16.620327,16.620327,.05,.05,0,0,0,0,0,0,0,0,0,2.7206836,0,57.06,57.76,-9,-9,10,1,1,0,0,14,4,4,1,1444,443413.78,291247.78,315735.28,83273.367,0,0,2184.0308 +15207,18604,33148,-9,33147,-9,1,1,20,0,0,0,2,2,-9,0,3,7.3844233,7.4238043,0,0,0,-1008.96,0,2,-9,2021,6,0,32,2,1,0,1,4.9060092,4.9060092,0,0,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,3,4,3,1,1788,-163315.98,0,0,0,0,0,603.45715 +15208,18605,33149,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,6.6710262,6.3046212,0,0,-939.6983,0,2,1,2021,8,0,0,35,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0366755,6.6375732,54.9,54.53,-9,-9,8.333333333333334,1,1,0,0,11,1,2,1,119,389995.19,161047.73,69254.57,0,0,0,1072.0654 +15209,18606,33150,33151,-9,-9,1,1,73,0,0,0,3,3,-9,0,1,0,8.3528347,8.4958057,33,11,-34.937969,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,1,0,6.5987749,0,0,1,1,0,8.8581038,8.5821743,35.76,46.65,45.98,56.3,8.333333333333334,1,1,0,0,0,2,5,1,1994.5,2381812.8,633779.25,474325.44,0,0,0,7796.1265 +15209,18606,33151,33150,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,7.6198096,8.1139116,6.7991548,37,-11,37.907421,-9,3,3,2021,13,2,38,0,1,2,0,8.0098324,8.0098324,0,0,0,0,0,0,0,0,1,1,0,0,6.7847118,45.98,56.3,35.76,46.65,8.333333333333334,1,1,0,0,13,2,5,1,1994.5,2381812.8,633779.25,474325.44,0,0,0,7796.1265 +15210,18607,33152,33153,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,0,0,0,35,-10,0,0,3,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,39.15,41.42,36.07,25.51,5,1,1,0,0,0,9,1,0,552,65267.109,64361.363,0,0,0,1771.2363,1950.2065 +15210,18607,33153,33152,-9,-9,1,1,69,0,0,0,2,2,-9,0,1,0,0,0,35,10,0,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,36.07,25.51,39.15,41.42,5,1,1,0,0,0,9,1,0,552,65267.109,64361.363,0,0,0,1771.2363,1950.2065 +15210,18608,33154,-9,33152,33153,1,0,24,0,0,0,1,1,-9,1,1,0,0,0,0,0,-1004.7729,0,2,3,2021,20,0,0,0,3,7,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,33.63,29.25,-9,-9,5,1,1,0,0,1,9,1,0,301,43189.789,0,0,0,16340.969,0,945.1106 +15210,18609,33155,-9,33152,33153,1,1,18,0,0,1,3,0,0,0,5,0,0,0,0,0,-981.44366,-9,2,2,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.88,45.73,-9,-9,5,1,1,0,0,0,9,1,0,1023,-23204.445,0,0,0,0,0,739.52539 +15211,18610,33156,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,5.5446429,5.2184148,0,0,-924.90985,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6793303,5.3935895,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,0,1,2,1,494,46920.82,-2551.6248,139760.55,35851.059,0,0,2079.2473 +15212,18611,33157,-9,33159,33158,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1057.3817,-9,3,2,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,-9,-9,6.666666666666667,1,1,0,0,0,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18611,33158,33159,-9,-9,1,1,62,0,1,0,2,2,-9,0,3,7.6312551,7.8830371,0,7,17,-94.408104,0,-9,-9,2021,10,0,40,40,1,1,0,5.3206687,5.3206687,.05,.05,0,0,0,0,0,0,1,1,0,6.7137127,0,51,48,50,55,7,4,1,0,0,1,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18611,33159,33158,-9,-9,1,0,45,0,1,0,3,3,-9,0,4,0,0,0,7,-17,-21.430593,0,3,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,55,51,48,8,1,1,0,0,0,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18611,33160,-9,33159,33158,1,1,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-954.6991,-9,3,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,13,2,0,1134.25,519.29688,89412.953,0,0,0,0,3031.6282 +15212,18612,33161,-9,33159,33158,1,1,24,0,1,0,3,3,-9,1,4,0,0,0,0,0,-1103.9081,0,3,2,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,0,0,0,13,1,0,557,3855.5417,0,0,0,0,0,-71.936699 +15213,18613,33162,33163,-9,-9,1,1,80,0,0,0,3,3,-9,0,2,0,2.3008749,2.1025441,7,5,-22.219152,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9125161,1.8248779,46.22,29.37,58.91,32.18,5,1,1,0,0,0,4,2,1,683,0,0,0,0,0,0,857.50806 +15213,18613,33163,33162,-9,-9,1,0,75,0,0,0,3,3,-9,0,4,0,0,0,56,-5,-17.351099,0,3,3,2021,9,1,0,8,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,58.91,32.18,46.22,29.37,8.333333333333334,1,1,0,0,9,4,2,1,683,0,0,0,0,0,0,857.50806 +15214,18614,33164,-9,-9,-9,1,1,48,0,0,0,2,2,-9,1,2,0,0,0,0,0,-974.72931,0,2,3,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,39.62,29.29,-9,-9,5,1,1,1,1,0,9,1,0,1004,0,0,0,0,0,0,793.77887 +15214,18615,33165,-9,-9,33164,1,1,19,0,0,0,2,2,1,0,1,0,0,0,0,0,-1008.2579,-9,-9,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,50.63,46.13,-9,-9,1.666666666666667,1,1,1,0,0,9,1,0,565,204342.67,0,0,0,0,0,317.82605 +15215,18616,33166,-9,33169,33168,1,1,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1096.619,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33167,-9,33169,33168,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-936.43762,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33168,33169,-9,-9,1,1,42,0,3,0,3,3,-9,0,3,6.1738634,6.1558237,0,7,10,38.629128,0,2,2,2021,13,1,25,25,1,1,0,2.5504637,2.5504637,0,0,0,0,0,0,0,0,1,1,0,0,0,36.82,54.92,48,57,6.666666666666667,1,1,0,0,8,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33169,33168,-9,-9,1,0,32,0,3,0,2,2,-9,0,4,0,0,0,7,-10,-15.812025,0,-9,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,57,36.82,54.92,7,1,1,0,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15215,18616,33170,-9,33169,33168,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-999.24536,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,12,2,0,1047.4,58041.566,0,65487.984,24150.148,0,0,2628.4778 +15216,18617,33171,-9,-9,-9,1,0,78,0,0,0,1,1,-9,0,3,0,6.73984,6.9522595,0,0,-941.37878,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,.88528377,0,16.82589,0,1,1,0,6.001009,6.7524657,64.40000000000001,42,-9,-9,1.666666666666667,1,1,0,0,0,9,2,1,3556,1120787.3,201482.72,619402.63,0,0,0,1239.2593 +15217,18618,33172,33173,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,6.2300677,6.1441121,50,-3,-14.721623,0,3,2,2021,15,5,0,0,4,5,0,0,0,0,0,0,1,0,0,0,120,1,1,0,4.1020417,5.9109139,36.42,44.54,47.3,17.7,3.333333333333333,1,1,0,0,6,4,2,1,1290.5,227454.41,108465.27,104385.69,0,0,0,1953.5449 +15217,18618,33173,33172,-9,-9,1,1,70,0,0,0,3,3,-9,0,1,0,0,0,50,3,-96.506348,0,3,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,120.22957,0,0,1,1,0,3.4663815,0,47.3,17.7,36.42,44.54,6.666666666666667,1,1,0,0,0,4,2,1,1290.5,227454.41,108465.27,104385.69,0,0,0,1953.5449 +15217,18619,33174,-9,33172,33173,1,1,47,0,0,0,2,2,-9,1,4,0,0,0,0,0,-950.32782,-9,2,3,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,55,-9,-9,8,1,1,0,0,0,4,1,1,367,-23715.836,-59451.125,0,0,0,0,329.202 +15218,18620,33175,-9,-9,-9,1,0,59,0,0,0,3,3,-9,1,2,0,0,0,0,0,-981.30371,0,3,3,2021,19,8,0,45,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45.06,27.09,-9,-9,1.666666666666667,1,1,0,1,4,7,1,0,1534,40861.039,0,0,0,0,432.8688,0 +15219,18621,33176,33177,-9,-9,1,0,68,0,0,0,3,3,-9,0,4,0,7.4203095,7.0612893,49,-1,-36.185848,0,3,-9,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.326005,6.9050946,45.58,55.84,56.33,51.02,8.333333333333334,1,1,0,0,0,10,3,1,135,887952.63,609465.88,315720.41,0,0,0,3174.8721 +15219,18621,33177,33176,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.2205744,7.4297071,49,1,-92.788834,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,2.1471868,7.2828069,56.33,51.02,45.58,55.84,8.333333333333334,1,1,0,0,0,10,3,1,135,887952.63,609465.88,315720.41,0,0,0,3174.8721 +15220,18622,33178,-9,-9,-9,1,1,55,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1060.6587,0,3,3,2021,11,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,49,-9,-9,7,1,1,0,0,0,13,1,0,1486,38002.934,0,0,0,0,0,2558.8516 +15221,18623,33179,33180,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,6.6402655,6.9564595,51,1,23.914989,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,11.744503,0,0,1,1,0,0,6.6080012,67.43000000000001,24.02,55.62,32.65,10,1,1,0,0,4,6,2,0,1230.5,221885.97,-24301.559,262585.13,0,0,0,1967.8792 +15221,18623,33180,33179,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,51,-1,-13.101137,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,7.7953577,18.067398,66.796799,7,1,1,0,0,0,55.62,32.65,67.43000000000001,24.02,8.333333333333334,1,1,0,0,0,6,2,0,1230.5,221885.97,-24301.559,262585.13,0,0,0,1967.8792 +15222,18624,33181,-9,-9,-9,1,0,59,0,0,0,1,1,-9,0,4,9.1976633,8.9526081,0,0,0,-985.67773,0,2,1,2021,12,0,8,43,1,0,0,109.61981,109.61981,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.52,53.2,-9,-9,8.333333333333334,1,1,0,0,14,9,5,1,386,799855.75,445191.13,281646.03,61359.73,0,0,3042.0215 +15223,18625,33182,33183,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.6108522,8.3735342,0,16,-1,-92.535919,0,2,3,2021,12,1,38,37,1,1,0,14.516703,14.516703,.05,.05,0,0,0,0,1.8873733,0,1,1,0,0,0,45.18,54.77,45.46,52.15,6.666666666666667,1,1,0,0,9,6,5,1,1492,174058.77,211571.33,175347.2,121371,1035.8132,0,4316.9351 +15223,18625,33183,33182,-9,-9,1,0,42,0,2,0,1,1,-9,0,3,8.9154663,8.9866867,0,16,1,-39.289433,0,1,1,2021,7,0,58,50,1,0,0,14.78863,14.78863,.05,.05,0,0,0,0,0,0,1,1,0,2.6131961,0,45.46,52.15,45.18,54.77,6.666666666666667,1,1,0,0,9,6,5,1,1492,174058.77,211571.33,175347.2,121371,1035.8132,0,4316.9351 +15224,18626,33184,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.9139824,8.7312241,0,0,0,-933.38739,0,3,3,2021,10,0,60,65,1,1,0,14.034684,14.034684,0,0,.05,0,0,0,0,2,1,1,0,1.1863675,0,52,48,-9,-9,7,1,1,0,0,11,9,5,1,423,1541973,224427.7,531408.56,89760.336,0,0,3604.4731 +15225,18627,33185,-9,33186,33188,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.2319,-9,1,1,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15225,18627,33186,33188,-9,-9,1,0,35,1,2,0,1,1,-9,0,4,0,0,0,12,0,-35.79995,0,1,1,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,56,50,57,7,1,1,0,0,4,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15225,18627,33187,-9,33186,33188,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.2958,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15225,18627,33188,33186,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,8.2451611,8.6007099,0,13,0,-97.503838,0,2,1,2021,10,0,40,45,1,1,0,13.667255,13.667255,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,48,56,7,1,1,0,0,9,8,3,0,547.25,-35176.695,28099.246,218135.8,218564.14,0,0,2003.2856 +15226,18628,33189,33192,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,9.1595078,8.747817,6.1497216,9,8,-88.026474,0,2,2,2021,8,0,48,48,1,0,0,15.7515,15.7515,0,0,.05,0,0,0,0,0,1,1,0,6.4003711,0,61.12,51.57,49.04,55.86,8.333333333333334,1,1,0,0,10,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33190,-9,33192,33189,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-992.40735,-9,2,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,10,1,1,0,0,1,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33191,-9,33192,33189,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1117.6038,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33192,33189,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,9,-8,-5.9217477,0,3,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.04,55.86,61.12,51.57,8.333333333333334,1,1,0,0,0,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18628,33193,-9,33192,33189,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1094.5879,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,4,1,446.79999,303040.75,116602.13,289851.5,25064.598,8800.7285,291.10422,2770.8262 +15226,18629,33194,-9,33192,33189,1,1,20,0,2,0,2,2,-9,0,4,7.5436578,7.3293357,0,0,0,-1104.3549,0,2,2,2021,6,0,45,45,1,0,1,3.7526512,3.7526512,0,0,0,0,0,0,0,0,1,1,0,5.5039763,0,54.2,57.49,-9,-9,10,1,1,0,0,10,9,3,1,634,3248.5024,0,0,0,0,0,1056.4143 +15227,18630,33195,-9,-9,-9,1,1,55,0,0,0,2,2,-9,0,4,7.440228,7.4108853,0,0,0,-931.60223,0,3,-9,2021,5,0,38,30,1,0,0,4.3381052,4.3381052,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,2,3,0,2005,686199.06,196176.53,228442.41,0,0,0,978.48346 +15228,18631,33196,-9,-9,-9,1,1,63,0,3,0,2,2,-9,0,1,0,6.3169866,6.1584225,0,0,-971.43201,0,2,2,2021,14,4,0,0,4,4,0,0,0,0,0,.05,0,0,0,0,0,1,1,0,3.6341572,6.4730868,44.14,16.67,-9,-9,3.333333333333333,1,1,0,0,0,11,2,1,731,73693.25,107564.74,131438.48,0,0,0,110.60519 +15229,18632,33197,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,4,8.4490871,8.4820433,0,0,0,-1094.4987,0,1,2,2021,13,4,37,37,1,4,0,14.764958,14.764958,.05,.05,0,0,0,0,0,0,0,0,0,.014968646,0,48.81,59.91,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,185,486032.75,178612.55,235233.52,45251.441,0,0,2078.9063 +15230,18633,33198,-9,-9,-9,1,1,75,0,0,0,2,2,-9,0,2,0,7.3425231,7.4902282,0,0,-996.38202,0,2,2,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8790088,7.4121428,31.1,40.06,-9,-9,1.666666666666667,1,1,0,0,3,9,3,1,1068,65061.734,124765.18,0,0,0,0,2170.0151 +15231,18634,33199,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,3,0,4.6849251,4.8568826,0,0,-1039.9928,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.3528171,57.92,51.82,-9,-9,5,1,1,0,0,0,5,2,0,1909,309613.22,11063.009,144101.3,0,0,0,667.69073 +15232,18635,33200,-9,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,0,.011922249,0,0,0,-930.32941,0,2,2,2021,9,0,30,38,1,0,0,.00054535823,.00054535823,0,0,0,0,0,0,0,0,1,1,0,.47836816,0,41.84,60.5,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,288,-75975.227,0,0,0,0,790.367,-661.28723 +15233,18636,33201,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,4,6.5056925,7.929378,7.120491,0,0,-1032.7173,0,3,3,2021,30,10,10,13,1,10,0,9.5072956,9.5072956,0,0,0,0,0,0,0,0,1,1,0,2.1510599,7.0737562,17.4,60.21,-9,-9,1.666666666666667,1,1,0,0,14,12,3,0,236,1140452,723410.94,270412.19,0,0,0,1957.0132 +15234,18637,33202,-9,33205,33203,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.26,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15234,18637,33203,33205,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,7.8386469,8.0858965,0,6,0,-31.928144,0,1,2,2021,8,0,40,47,1,0,0,10.151775,10.151775,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,46.8,45.82,0,1,1,0,0,7,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15234,18637,33204,-9,33205,33203,1,0,16,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.543,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,0,0,0,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15234,18637,33205,33203,-9,-9,1,0,46,0,2,0,2,2,-9,0,4,8.3441162,8.5785933,0,6,0,38.163227,0,2,2,2021,12,1,70,60,1,1,0,6.7228808,6.7228808,0,0,0,0,0,0,0,0,1,1,0,0,0,46.8,45.82,57.06,57.76,6.666666666666667,1,1,0,0,7,13,4,1,1019.5,9720.9141,33278.969,153751.02,130949.95,0,0,3720.6782 +15235,18638,33206,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.1197133,5.3184247,0,0,-1056.0452,0,3,-9,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,.57177156,0,17.635139,0,1,1,0,0,5.1513972,53.73,30.88,-9,-9,6.666666666666667,1,1,0,0,0,9,2,0,2509,-164632.09,-23914.08,0,0,0,0,1625.5485 +15236,18639,33207,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,1,7.5262709,7.5918531,0,0,0,-814.41473,0,3,2,2021,23,10,36,36,1,10,0,6.3287683,6.3287683,0,0,0,0,0,0,0,0,0,0,0,0,0,35,27,-9,-9,5,2,3,0,0,12,6,3,1,2375,-19412.188,31290.094,0,0,0,0,559.33606 +15237,18640,33208,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,7.3335433,7.7674804,0,0,-1017.6119,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.6570678,7.4638243,50.67,42.05,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,1458,639136.63,374431.19,378904.97,0,0,0,2207.0969 +15237,18641,33209,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,7.5668044,7.9858441,0,0,-1010.7035,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0322256,7.5031638,52.82,46.09,-9,-9,8.333333333333334,1,1,0,0,0,9,3,1,472,841384.63,314120.88,531161.13,0,-2917.8892,0,1655.8627 +15238,18642,33210,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.0858374,7.2587738,0,0,-1047.549,0,3,3,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.2896285,7.2951689,47.8,32.53,-9,-9,8.333333333333334,1,1,0,0,2,4,3,1,804,688781.25,392463.69,43821.531,3595.9504,10226.967,0,2542.2434 +15239,18643,33211,-9,33212,-9,1,0,35,0,0,0,2,2,-9,0,3,8.2549791,8.3579645,0,0,0,-1077.0327,0,2,2,2021,11,0,37,36,1,0,0,9.5661325,9.5661325,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.29,54.59,-9,-9,6.666666666666667,1,1,0,0,7,13,4,1,615,85572.563,-110016.9,0,0,8369.2246,0,1848.1595 +15239,18644,33212,-9,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,5.7166729,5.5069742,0,0,-981.41791,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.3848681,43.71,56.91,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,397,53038.969,22010.859,155588.72,-17446.107,0,0,836.92584 +15240,18645,33213,-9,-9,-9,1,0,21,0,0,0,1,1,1,0,5,0,6.8073125,6.8700867,0,0,-1121.7656,-9,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1314421,0,47.1,59.71,-9,-9,6.666666666666667,2,3,1,0,1,7,2,1,598,226385.53,0,0,0,0,0,18.937393 +15241,18646,33214,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,2,0,0,0,0,0,-969.83752,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,8.5535336,0,0,1,1,0,0,0,44.71,31.4,-9,-9,5,3,4,0,0,0,8,1,0,1828,0,0,0,0,0,0,1178.2789 +15241,18647,33215,-9,-9,33214,1,1,34,0,0,0,1,1,-9,0,4,0,0,0,0,0,-996.40094,-9,-9,2,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,3,4,1,0,0,8,1,0,948,0,0,0,0,0,0,1656.1906 +15242,18648,33216,-9,-9,-9,1,0,36,0,0,0,1,1,-9,0,3,8.3278666,8.8522282,0,0,0,-985.96161,0,1,3,2021,10,0,34,27,1,0,0,16.973631,16.973631,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,6.666666666666667,1,1,0,0,12,4,4,1,293,11586.608,30524.047,133139.53,57425.977,-872.55536,1878.6088,2387.9158 +15243,18649,33217,33218,-9,-9,1,0,39,0,2,0,2,2,-9,0,2,7.9778562,8.3871393,0,9,0,108.50275,0,2,2,2021,12,0,24,50,1,0,0,18.190147,18.190147,.05,.05,0,0,0,0,0,0,1,1,0,0,0,48.02,44.38,57.16,56.15,6.666666666666667,1,1,0,0,10,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15243,18649,33218,33217,-9,-9,1,1,39,0,2,0,2,2,-9,0,4,8.3547163,8.5854626,0,9,0,16.874311,0,-9,-9,2021,9,0,45,90,1,0,0,18.393951,18.393951,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,48.02,44.38,6.666666666666667,1,1,0,0,10,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15243,18649,33219,-9,33217,33218,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1005.795,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15243,18649,33220,-9,33217,33218,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-972.60193,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,1,1,-9,0,0,1,4,1,711,137235.14,11418.941,246003.91,147162.39,0,9184.8184,3169.4641 +15244,18650,33221,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.4721131,6.7988772,0,0,-1027.6975,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.662318,7.2432961,63.41,39.7,-9,-9,8.333333333333334,1,1,0,0,9,6,2,1,526,612567.63,153926.34,184627.94,0,0,1254.639,1046.7979 +15245,18651,33222,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.2664719,8.5625858,0,0,0,-1002.7758,0,2,2,2021,10,0,37,37,1,0,0,15.84008,15.84008,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,10,10,5,1,840,-53617.543,12944.236,0,0,18265.74,0,1223.1357 +15246,18652,33223,33224,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,0,0,0,4,1,2.360333,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,53.48,53.71,31.77,31.97,8.333333333333334,1,1,0,0,8,12,5,0,881,15402.806,66836.148,0,0,1836.068,0,3481.4648 +15246,18652,33224,33223,-9,-9,1,1,36,1,1,0,1,1,-9,0,2,9.4254751,9.2908192,0,4,-1,-102.68298,0,2,2,2021,20,7,38,40,1,7,0,29.30406,29.30406,0,0,0,0,0,0,0,0,0,0,0,3.0295749,0,31.77,31.97,53.48,53.71,8.333333333333334,1,1,0,0,11,12,5,0,881,15402.806,66836.148,0,0,1836.068,0,3481.4648 +15246,18652,33225,-9,33223,33224,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-908.49231,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,12,5,0,881,15402.806,66836.148,0,0,1836.068,0,3481.4648 +15247,18653,33226,-9,33227,33228,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.8912,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,239,294741.44,-26677.607,226144.11,0,0,0,4647.5444 +15247,18653,33227,33228,-9,-9,1,0,46,0,1,0,2,2,-9,1,2,0,7.7787099,7.7234187,27,-5,-18.339556,0,2,2,2021,9,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,14.5,1,1,0,8.5762167,0,55.9,30.03,61.28,48.88,8.333333333333334,1,1,0,0,5,6,4,1,239,294741.44,-26677.607,226144.11,0,0,0,4647.5444 +15247,18653,33228,33227,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.5245199,8.3204222,0,27,5,102.92797,0,2,2,2021,8,0,40,40,1,0,0,11.008263,11.008263,.05,.05,0,0,0,0,0,2,1,1,0,0,0,61.28,48.88,55.9,30.03,8.333333333333334,1,1,0,0,7,6,4,1,239,294741.44,-26677.607,226144.11,0,0,0,4647.5444 +15248,18654,33229,33231,-9,-9,1,1,49,0,2,0,2,2,-9,0,4,8.6093874,8.1836767,0,10,1,138.09174,0,2,2,2021,9,0,47,47,1,0,0,12.408236,12.408236,.05,.05,.05,0,0,0,0,2,1,1,0,6.4010119,0,60.13,46.57,39,54.39,6.666666666666667,1,1,0,1,12,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15248,18654,33230,-9,33231,33229,1,1,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1013.5961,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,62,-9,-9,7,1,1,-9,0,0,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15248,18654,33231,33229,-9,-9,1,0,48,0,2,0,2,2,-9,0,2,7.6144366,8.0774117,6.3658953,10,-1,-74.936378,0,2,3,2021,26,8,27,35,1,8,0,8.3587599,8.3587599,.05,.05,0,0,0,0,0,0,1,1,0,5.9315047,0,39,54.39,60.13,46.57,6.666666666666667,1,1,0,1,11,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15248,18654,33232,-9,33231,33229,1,0,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-961.21002,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,1,1,-9,0,0,12,4,1,901,309376.53,189789.42,130427.63,21915.469,2283.5942,-31.083336,3340.9731 +15249,18655,33233,33234,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,8.1781693,8.2624054,50,0,71.444435,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1622162,8.3000717,63.41,39.7,56.33,51.02,8.333333333333334,1,1,0,0,0,1,3,1,799,1212597.3,588124.5,319775.56,0,3392.5564,0,3150.5249 +15249,18655,33234,33233,-9,-9,1,0,70,0,0,0,2,2,-9,0,4,0,5.0684872,4.6657281,9,0,48.201214,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1796465,5.0567756,56.33,51.02,63.41,39.7,8.333333333333334,1,1,0,0,0,1,3,1,799,1212597.3,588124.5,319775.56,0,3392.5564,0,3150.5249 +15250,18656,33235,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.6147022,8.6701126,0,0,0,-1083.4524,0,2,2,2021,12,0,97,98,1,0,0,6.767313,6.767313,0,0,0,0,0,0,0,29,1,1,0,7.0975075,0,52,54.51,-9,-9,5,1,1,0,0,14,11,5,1,2025,1211043.8,1134707.8,91434.398,0,1444.6997,0,3751.3833 +15250,18657,33236,-9,33235,-9,1,1,29,0,0,0,1,1,-9,0,2,0,0,0,0,0,-1003.1317,0,1,-9,2021,25,12,0,30,3,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.4,49.85,-9,-9,3.333333333333333,1,1,1,1,6,11,1,1,1235,-190284.41,0,0,0,0,0,0 +15250,18658,33237,-9,-9,-9,1,0,50,0,0,0,3,3,-9,1,3,0,0,0,0,0,-983.95264,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.92,51.82,-9,-9,10,1,1,0,0,0,11,1,1,827,464158.22,107529.27,181930.41,0,0,0,959.74866 +15250,18659,33238,-9,-9,-9,1,1,27,0,0,0,3,3,-9,1,4,0,0,0,0,0,-857.76385,0,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.76,54.51,-9,-9,10,1,1,0,0,0,11,1,1,364,-224021.75,0,0,0,0,0,1564.1152 +15251,18660,33239,33240,-9,-9,1,0,61,0,0,0,2,2,-9,1,4,0,0,0,31,3,0,0,-9,-9,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,43.2,59.97,21.19,35.47,1.666666666666667,1,1,0,0,0,6,1,0,1192,31100.994,50843.914,0,0,0,0,2185.2842 +15251,18660,33240,33239,-9,-9,1,1,58,0,0,0,3,3,-9,1,1,0,0,0,30,-3,0,-9,-9,-9,2021,30,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.19,35.47,43.2,59.97,0,2,3,0,0,0,6,1,0,1192,31100.994,50843.914,0,0,0,0,2185.2842 +15252,18661,33241,33242,-9,-9,1,0,89,0,0,0,3,3,-9,0,1,0,4.9435925,4.8627949,10,3,-37.727314,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,137.26933,0,0,1,1,0,0,4.7744274,36.27,24.23,52.3,39.89,8.333333333333334,1,1,0,0,0,2,2,1,722,191807.09,-15538.684,99298.258,0,0,0,2108.6206 +15252,18661,33242,33241,-9,-9,1,1,86,0,0,0,3,3,-9,0,2,0,0,0,10,-3,-79.964035,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,74.5,1,1,0,0,0,52.3,39.89,36.27,24.23,10,1,1,0,0,0,2,2,1,722,191807.09,-15538.684,99298.258,0,0,0,2108.6206 +15253,18662,33243,-9,-9,-9,1,0,41,0,0,0,2,2,-9,0,2,8.6566963,8.3805933,0,0,0,-1049.5939,0,3,2,2021,11,1,45,39,1,1,0,11.882213,11.882213,.05,.05,0,0,0,0,0,0,0,0,0,6.8352165,0,40.52,39.95,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,1526,431931.81,317626.63,139517.03,118938.9,1463.0669,0,2236.6116 +15254,18663,33244,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,1,0,0,0,0,0,-935.82007,0,3,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,9.8524151,0,0,1,1,0,0,0,34.46,27,-9,-9,8.333333333333334,1,1,0,0,0,4,2,0,722,-45927.371,0,0,0,0,0,813.63745 +15255,18664,33245,-9,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,5.7276235,8.1354904,8.0349703,0,0,-879.66681,0,2,-9,2021,6,0,16,21,1,0,0,2.2920113,2.2920113,0,0,0,0,0,0,0,0,1,1,0,0,7.9603848,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,118,-24597.578,0,-16871.768,0,0,0,1309.1323 +15256,18665,33246,33247,-9,-9,1,0,31,0,1,0,2,2,-9,0,3,6.7863579,6.9258318,0,16,0,-10.253794,0,2,2,2021,7,0,15,26,1,0,0,5.7847428,5.7847428,0,0,0,0,0,0,0,0,1,1,0,0,0,49.47,43.51,61.01,53.18,8.333333333333334,1,1,0,0,6,4,4,1,915.33331,128477.41,0,222497.22,127234.91,0,0,2754.7668 +15256,18665,33247,33246,-9,-9,1,1,31,0,1,0,2,2,-9,0,5,8.4315968,8.4879398,0,16,0,98.438591,0,2,2,2021,7,0,38,38,1,0,0,16.408348,16.408348,0,0,0,0,0,0,0,0,1,1,0,0,0,61.01,53.18,49.47,43.51,10,1,1,0,0,8,4,4,1,915.33331,128477.41,0,222497.22,127234.91,0,0,2754.7668 +15256,18665,33248,-9,33246,33247,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1022.3831,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,4,1,915.33331,128477.41,0,222497.22,127234.91,0,0,2754.7668 +15257,18666,33249,33250,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.301424,9.0917072,0,11,-8,11.311945,0,1,1,2021,11,3,42,52,1,3,0,28.755842,28.755842,.05,.05,0,0,0,0,0,0,0,0,0,4.0193844,0,55.19,54.26,41.69,49.57,8.333333333333334,1,1,0,0,12,9,5,1,592.5,450283.38,204012.75,562048.81,327406.91,12878.219,0,4613.2451 +15257,18666,33250,33249,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.4131775,8.6442995,0,11,8,121.72598,0,3,-9,2021,25,12,32,32,1,12,0,18.743547,18.743547,.05,.05,0,0,0,0,0,2,0,0,0,.69055837,0,41.69,49.57,55.19,54.26,8.333333333333334,1,1,0,0,12,9,5,1,592.5,450283.38,204012.75,562048.81,327406.91,12878.219,0,4613.2451 +15258,18667,33251,-9,-9,-9,1,0,19,0,0,1,2,0,0,0,4,0,0,0,0,0,-1098.3512,-9,-9,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,6.666666666666667,2,3,0,0,1,6,2,0,3817,-15614.011,0,0,0,977.6297,0,0 +15259,18668,33252,33253,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,0,0,0,2,-3,0,0,-9,-9,2021,27,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,9.16,68.97,40.56,23.34,1.666666666666667,1,1,1,0,0,6,1,0,1056,0,0,0,0,0,0,1506.3733 +15259,18668,33253,33252,-9,-9,1,1,34,0,0,0,2,2,-9,1,2,0,0,0,2,3,0,0,2,1,2021,20,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.56,23.34,9.16,68.97,6.666666666666667,1,1,0,0,5,6,1,0,1056,0,0,0,0,0,0,1506.3733 +15260,18669,33254,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,5,0,7.2142916,7.4878759,0,0,-997.11414,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.88074815,7.4580564,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,0,6,3,1,800,537312.13,222030.52,172055.38,0,0,0,1662.8926 +15261,18670,33255,-9,33256,33258,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1009.5667,-9,2,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15261,18670,33256,33258,-9,-9,1,0,35,1,2,0,2,2,-9,0,5,7.7024693,8.0716162,0,13,4,-24.834656,0,2,3,2021,4,0,30,25,1,0,0,9.611948,9.611948,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,50,57,8.333333333333334,1,1,0,0,9,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15261,18670,33257,-9,33256,33258,1,0,8,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3687,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15261,18670,33258,33256,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,8.9379711,9.0427618,0,6,-4,114.74578,0,-9,-9,2021,10,0,45,45,1,1,0,21.892048,21.892048,.05,.05,0,0,0,0,0,0,0,0,0,0,0,50,57,51.73,58.82,7,1,1,0,0,1,2,5,1,1165,528881.94,215000.5,487777.72,256074.41,0,6908.6963,4400.9414 +15262,18671,33259,33260,-9,-9,1,0,44,0,0,0,2,2,-9,0,3,8.1599474,8.4836998,0,12,-3,-70.769272,0,1,2,2021,14,3,38,44,1,3,0,10.22729,10.22729,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.33,62.63,60.12,54.8,8.333333333333334,1,1,0,0,13,4,5,1,702.5,944122.44,824667.31,141975.33,26118.08,0,5230.2158,3688.219 +15262,18671,33260,33259,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.7760868,8.7882242,0,12,3,-46.807571,0,2,1,2021,6,0,38,42,1,0,0,16.780134,16.780134,.05,.05,0,0,0,0,0,0,0,0,0,2.5719352,0,60.12,54.8,28.33,62.63,8.333333333333334,1,1,0,0,13,4,5,1,702.5,944122.44,824667.31,141975.33,26118.08,0,5230.2158,3688.219 +15263,18672,33261,33262,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.3415971,7.3478122,0,31,1,-35.729542,0,2,2,2021,8,0,33,20,1,0,0,5.0331478,5.0331478,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.98,43.8,48,51,6.666666666666667,2,3,0,0,12,2,4,1,1372,115041.19,8100.1563,0,0,0,1220.95,1617.5631 +15263,18672,33262,33261,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.071023,8.1145792,0,31,-1,-78.162979,0,2,2,2021,11,0,35,35,1,2,0,11.296733,11.296733,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,51,51.98,43.8,7,2,3,0,0,1,2,4,1,1372,115041.19,8100.1563,0,0,0,1220.95,1617.5631 +15263,18673,33263,-9,33261,33262,1,1,26,0,0,0,1,1,-9,0,4,0,0,0,0,0,-1117.5402,0,2,3,2021,11,0,0,10,3,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,5,2,1,1,2128,-194173.56,0,0,0,0,0,-456.9455 +15263,18674,33264,-9,33261,33262,1,1,23,0,0,0,1,1,1,0,5,8.7027988,8.4803963,0,0,0,-940.70892,-9,2,2,2021,12,0,38,0,1,0,1,15.679055,15.679055,.05,.05,0,0,0,0,0,0,0,0,0,1.4564674,0,37.48,61.3,-9,-9,5,2,3,0,0,5,2,5,1,715,109532.33,158959.81,0,0,5300.6694,0,2198.4175 +15264,18675,33265,33266,-9,-9,1,0,66,0,0,0,1,1,-9,0,4,0,7.7645946,7.5440707,44,0,-67.418777,0,3,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,6.9989476,6.8693233,52,53,57.06,57.76,8.333333333333334,1,1,0,0,3,12,4,1,157,2403290.3,1317772.3,404923.03,0,2290.2478,0,4133.6167 +15264,18675,33266,33265,-9,-9,1,1,66,0,0,0,1,1,-9,0,5,0,8.263958,7.7797556,8,0,56.989765,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,8.3205481,57.06,57.76,52,53,8.333333333333334,1,1,0,0,6,12,4,1,157,2403290.3,1317772.3,404923.03,0,2290.2478,0,4133.6167 +15265,18676,33267,33268,-9,-9,1,0,61,0,0,0,2,2,-9,0,4,7.8490396,7.768971,0,11,-2,22.113098,0,3,2,2021,8,0,24,22,1,0,0,14.103784,14.103784,.05,.05,0,0,0,0,0,0,0,0,0,0,0,59.29,49.68,60.53,48.35,8.333333333333334,1,1,0,0,10,11,4,0,786,634165.75,266918.78,190452,0,0,0,1870.5381 +15265,18676,33268,33267,-9,-9,1,1,63,0,0,0,2,2,-9,0,2,7.958333,7.9515619,6.8653131,18,2,-112.92946,0,3,3,2021,7,1,27,26,1,1,0,10.675204,10.675204,.05,.05,0,0,0,0,0,0,0,0,0,0,7.0680237,60.53,48.35,59.29,49.68,8.333333333333334,1,1,0,0,10,11,4,0,786,634165.75,266918.78,190452,0,0,0,1870.5381 +15266,18677,33269,33270,-9,-9,1,0,65,0,0,0,3,3,-9,0,4,0,0,0,7,-4,-11.717917,0,3,3,2021,18,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.61,59.13,57.33,53.46,10,1,1,0,0,5,4,2,1,1065,410058.63,211282.25,226752.47,0,0,0,1916.1899 +15266,18677,33270,33269,-9,-9,1,1,69,0,0,0,3,3,-9,0,3,0,6.1613536,6.3509755,7,4,3.8586574,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4664743,6.5527277,57.33,53.46,53.61,59.13,10,1,1,0,0,3,4,2,1,1065,410058.63,211282.25,226752.47,0,0,0,1916.1899 +15267,18678,33271,-9,33273,33274,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-869.76501,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15267,18678,33272,-9,33273,33274,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1023.3207,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15267,18678,33273,33274,-9,-9,1,0,39,0,2,0,1,1,-9,0,2,8.5596371,8.6174116,0,11,-5,38.585072,-9,-9,-9,2021,10,0,50,0,1,0,0,15.774064,15.774064,0,0,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,52.6,52.88,5,1,1,0,0,14,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15267,18678,33274,33273,-9,-9,1,1,44,0,2,0,1,1,-9,0,3,9.099906,8.9272509,6.811307,11,5,-11.014965,0,2,2,2021,7,0,45,47,1,0,0,19.826796,19.826796,.05,.05,0,0,0,0,0,0,1,1,0,6.9410906,0,52.6,52.88,49.28,52.09,5,1,1,0,0,12,2,5,1,722.25,905969.63,353946.69,434318.19,0,0,0,5809.541 +15268,18679,33275,33276,-9,-9,1,0,55,0,1,0,1,1,-9,0,3,8.6183014,8.1599855,0,6,-1,-68.360535,0,2,2,2021,10,1,32,33,1,1,0,21.520248,21.520248,.05,.05,0,0,0,0,0,0,1,1,0,7.1646342,0,45.32,54.77,53.96,50.73,8.333333333333334,1,1,0,0,7,12,5,1,1070.6666,2210564.5,2032583.9,238449.06,82080.648,303.7019,0,5446.519 +15268,18679,33276,33275,-9,-9,1,1,56,0,1,0,1,1,-9,0,4,8.8784065,8.8280306,0,6,1,-20.12417,0,2,2,2021,8,0,50,45,1,0,0,15.660491,15.660491,.05,.05,0,0,0,0,0,0,1,1,0,3.7121327,0,53.96,50.73,45.32,54.77,6.666666666666667,1,1,0,0,7,12,5,1,1070.6666,2210564.5,2032583.9,238449.06,82080.648,303.7019,0,5446.519 +15268,18679,33277,-9,33275,33276,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-859.086,-9,1,1,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.47,59.4,-9,-9,8.333333333333334,1,1,0,0,0,12,5,1,1070.6666,2210564.5,2032583.9,238449.06,82080.648,303.7019,0,5446.519 +15269,18680,33278,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.779501,9.0992918,0,0,0,-1114.8126,-9,2,2,2021,11,2,48,0,1,2,0,15.453502,15.453502,.05,.05,0,0,0,0,0,0,0,0,0,0,0,37.79,51.44,-9,-9,6.666666666666667,1,1,0,0,11,9,5,0,877,560183.88,304353.66,311493.22,66655.234,7459.5024,4619.3022,3278.9419 +15270,18681,33279,33280,-9,-9,1,1,58,0,1,0,2,2,-9,1,1,0,0,0,8,2,59.954685,0,-9,3,2021,22,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,0,26.25,20.77,44.55,60.42,1.666666666666667,3,4,0,0,0,6,3,1,422.33334,165747.81,0,249044,43750.688,0,5449.3296,2121.4138 +15270,18681,33280,33279,-9,-9,1,0,56,0,1,0,2,2,-9,0,4,7.4112797,8.2048941,7.6307979,8,-2,-8.9479465,0,2,2,2021,11,1,15,15,1,1,0,16.44385,16.44385,0,0,0,0,0,0,0,27,1,1,0,0,7.2722378,44.55,60.42,26.25,20.77,6.666666666666667,3,4,0,0,10,6,3,1,422.33334,165747.81,0,249044,43750.688,0,5449.3296,2121.4138 +15270,18681,33281,-9,33280,33279,1,1,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-1187.3804,-9,2,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,3,4,-9,0,0,6,3,1,422.33334,165747.81,0,249044,43750.688,0,5449.3296,2121.4138 +15270,18682,33282,-9,33280,33279,1,1,18,0,1,0,2,2,1,0,3,0,0,0,0,0,-1124.2443,-9,2,2,2021,22,8,0,0,3,8,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,12.37,66.34999999999999,-9,-9,6.666666666666667,3,4,0,0,1,6,2,1,146,-78075.086,0,0,0,0,0,0 +15271,18683,33283,33284,-9,-9,1,0,73,0,0,0,2,2,-9,0,4,0,7.1825047,7.141592,11,0,67.218918,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8336322,6.9607711,58.72,51.29,53.68,45.47,8.333333333333334,1,1,0,0,4,9,4,1,1125,1771908.5,981380,560040.56,0,-237.34454,0,4654.6172 +15271,18683,33284,33283,-9,-9,1,1,73,0,0,0,2,2,-9,0,3,0,8.6389313,8.4954014,11,0,58.618103,0,3,2,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,4.3280773,8.5812674,53.68,45.47,58.72,51.29,8.333333333333334,1,1,0,0,3,9,4,1,1125,1771908.5,981380,560040.56,0,-237.34454,0,4654.6172 +15272,18684,33285,33286,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.679184,5.8541975,11,2,-43.565109,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6981888,54.61,18.73,53.23,47.51,8.333333333333334,1,1,0,0,8,8,4,1,408,888715.69,372837.38,251754.8,-2817.1189,0,0,2859.0442 +15272,18684,33286,33285,-9,-9,1,1,67,0,0,0,2,2,-9,0,2,8.1965752,8.0770769,0,11,-2,-117.26862,0,3,3,2021,10,0,40,43,1,0,0,12.009316,12.009316,0,0,0,0,0,0,0,2,1,1,0,0,0,53.23,47.51,54.61,18.73,8.333333333333334,1,1,0,0,12,8,4,1,408,888715.69,372837.38,251754.8,-2817.1189,0,0,2859.0442 +15272,18685,33287,-9,33285,33286,1,0,36,0,0,0,1,1,-9,0,5,7.7092671,7.7703476,0,0,0,-1097.0527,0,2,2,2021,17,5,35,35,1,5,0,7.9902234,7.9902234,0,0,0,0,0,0,0,7,1,1,0,0,0,41.2,62.39,-9,-9,6.666666666666667,1,1,0,0,12,8,3,1,1560,-116254.79,0,0,0,0,0,482.50912 +15273,18686,33288,33291,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,7.2621059,7.5798602,5.4508867,9,3,-86.647247,0,1,2,2021,12,2,21,21,1,2,0,8.342454,8.342454,.05,.05,0,0,0,0,0,0,1,1,0,5.4128718,0,33.66,61.57,41.71,52.41,6.666666666666667,1,1,0,0,10,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15273,18686,33289,-9,33288,33291,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-966.72644,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,61,-9,-9,7,1,1,-9,0,0,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15273,18686,33290,-9,33288,33291,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1000.6296,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15273,18686,33291,33288,-9,-9,1,1,30,0,2,0,2,2,-9,0,3,8.6209469,8.3997498,0,9,-3,13.97401,0,2,2,2021,13,2,40,38,1,2,0,16.544317,16.544317,.05,.05,0,0,0,0,0,0,1,1,0,7.2155166,0,41.71,52.41,33.66,61.57,3.333333333333333,1,1,0,0,9,13,4,1,1067.75,66408.945,-3623.5459,116514.05,52216.563,6294.1064,1865.8521,3515.6216 +15274,18687,33292,-9,33293,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-924.41241,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,60,-9,-9,7,3,4,-9,0,0,8,1,0,366,-505.32227,3742.1191,0,0,0,0,2249.4429 +15274,18687,33293,-9,-9,-9,1,0,40,0,1,0,1,1,-9,0,4,0,0,0,0,0,-870.78308,-9,2,1,2021,15,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.16,58.62,-9,-9,8.333333333333334,3,4,1,0,5,8,1,0,366,-505.32227,3742.1191,0,0,0,0,2249.4429 +15275,18688,33294,33295,-9,-9,1,1,54,0,0,0,1,1,-9,0,4,8.9973679,8.9702148,7.7433128,8,-2,84.086494,-9,-9,-9,2021,9,0,35,0,1,1,0,25.646074,25.646074,0,0,.05,0,0,0,0,0,0,0,0,7.4078708,7.6803508,53,54,62.39,56.71,8,1,1,0,0,1,10,5,1,871.5,1132607.5,944014.63,184113.84,38409.98,12819.265,1250.3832,6516.7192 +15275,18688,33295,33294,-9,-9,1,0,56,0,0,0,1,1,-9,0,5,8.5156832,8.5719166,0,26,2,-117.1627,0,2,1,2021,6,0,20,16,1,0,0,31.125587,31.125587,0,0,0,0,0,0,0,0,0,0,0,7.9906235,0,62.39,56.71,53,54,10,1,1,0,0,11,10,5,1,871.5,1132607.5,944014.63,184113.84,38409.98,12819.265,1250.3832,6516.7192 +15276,18689,33296,33297,-9,-9,1,0,45,0,0,0,2,2,-9,0,3,7.9279852,8.0056849,0,30,-3,61.000599,0,3,2,2021,20,6,42,40,1,6,0,8.920701,8.920701,.05,.05,0,0,0,0,0,0,0,0,0,3.6910408,0,46.87,47.3,35.44,44.94,10,1,1,0,0,9,2,5,1,597,155298.38,52464.75,0,0,0,5732.002,3162.0759 +15276,18689,33297,33296,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.4745903,8.299819,0,30,3,-58.299988,0,3,-9,2021,22,6,39,45,1,6,0,9.8895426,9.8895426,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.44,44.94,46.87,47.3,5,1,1,0,0,8,2,5,1,597,155298.38,52464.75,0,0,0,5732.002,3162.0759 +15276,18690,33298,-9,33296,33297,1,0,23,0,0,0,2,2,-9,0,2,7.6075797,7.5898581,0,0,0,-942.6933,0,2,2,2021,14,2,36,40,1,2,1,4.3495717,4.3495717,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.64,41.4,-9,-9,8.333333333333334,1,1,0,0,5,2,3,1,569,55382.59,-10049.338,0,0,2694.1548,0,812.63678 +15277,18691,33299,33301,-9,-9,1,0,37,0,1,0,2,2,-9,0,5,7.8078628,7.7640281,0,6,-7,46.530148,0,-9,-9,2021,9,0,41,39,1,0,0,7.2180901,7.2180901,0,0,0,0,0,0,0,2,1,1,0,0,0,54.1,59.11,18.76,23.91,8.333333333333334,1,1,0,0,7,12,3,0,785,0,0,0,0,0,0,1709.4824 +15277,18691,33300,-9,33299,33301,1,0,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-950.11212,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,3,0,785,0,0,0,0,0,0,1709.4824 +15277,18691,33301,33299,-9,-9,1,1,44,0,1,0,2,2,-9,1,1,0,0,0,6,7,240.06209,0,2,1,2021,22,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,18.76,23.91,54.1,59.11,8.333333333333334,1,1,0,0,5,12,3,0,785,0,0,0,0,0,0,1709.4824 +15278,18692,33302,33303,-9,-9,1,0,67,0,0,0,3,3,-9,0,2,0,8.3494043,8.7310381,45,-1,4.4466028,0,2,-9,2021,30,11,0,0,4,11,0,0,0,0,0,0,1,0,12.763137,0,0,1,1,0,2.6063223,8.5996475,43.99,21.65,58.2,36.57,3.333333333333333,1,1,0,0,0,12,4,1,1051,1237944.3,1030528.4,133917.47,0,0,0,3196.7031 +15278,18692,33303,33302,-9,-9,1,1,68,0,0,0,3,3,-9,0,3,0,0,0,45,1,-67.863113,0,2,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,58.2,36.57,43.99,21.65,6.666666666666667,1,1,0,0,6,12,4,1,1051,1237944.3,1030528.4,133917.47,0,0,0,3196.7031 +15279,18693,33304,-9,33308,33307,1,1,17,0,2,1,2,0,0,0,4,0,0,0,0,0,-952.97723,-9,2,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,10,1,1,0,0,0,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33305,-9,33308,33307,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1004.4485,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33306,-9,33308,33307,1,0,12,0,2,1,3,0,-9,0,2,0,0,0,0,0,-987.31464,-9,2,2,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,1,1,-9,0,0,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33307,33308,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,8.2352676,7.9219608,0,7,9,-103.78859,0,2,2,2021,7,0,40,45,1,0,0,11.359037,11.359037,.05,.05,0,0,0,0,0,0,1,1,0,.88576156,0,57.16,56.15,39.14,50.91,8.333333333333334,1,1,0,0,8,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15279,18693,33308,33307,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,8.1468763,7.9872141,0,7,0,-40.999447,0,2,2,2021,24,10,38,38,1,10,0,9.2015553,9.2015553,.05,.05,0,0,0,0,0,0,1,1,0,2.4890862,0,39.14,50.91,57.16,56.15,3.333333333333333,1,1,0,0,8,12,4,1,1284.8,846830.69,735627.13,191330.55,76161.906,0,1682.2406,3582.7925 +15280,18694,33309,-9,33310,33311,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1009.5617,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,3,1,2559,285865.34,27246.047,289058.13,0,0,0,2109.7209 +15280,18694,33310,33311,-9,-9,1,0,44,0,1,0,2,2,-9,0,1,7.6139359,7.6424298,0,23,-2,48.014622,0,3,3,2021,12,0,35,35,1,0,0,6.0659552,6.0659552,0,0,0,0,0,0,0,0,1,1,0,0,0,41.75,50.17,52,54.51,1.666666666666667,1,1,0,0,11,4,3,1,2559,285865.34,27246.047,289058.13,0,0,0,2109.7209 +15280,18694,33311,33310,-9,-9,1,1,46,0,1,0,2,2,-9,0,3,7.3102608,7.2142901,0,18,2,3.7022543,0,3,3,2021,12,0,50,40,1,0,0,2.6463661,2.6463661,0,0,.05,0,0,0,0,0,1,1,0,0,0,52,54.51,41.75,50.17,5,1,1,0,0,11,4,3,1,2559,285865.34,27246.047,289058.13,0,0,0,2109.7209 +15280,18695,33312,-9,33310,33311,1,0,18,0,1,0,2,2,-9,0,4,0,0,0,0,0,-949.94812,1,2,2,2021,10,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,3.0311661,0,51.77,58.57,-9,-9,8.333333333333334,1,1,0,0,5,4,1,1,392,74742.156,0,0,0,0,0,102.32065 +15281,18696,33313,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,3,8.0883875,8.2110395,0,0,0,-1037.735,0,2,2,2021,12,0,45,60,1,0,0,8.9258537,8.9258537,0,0,0,0,0,0,0,0,0,0,0,0,0,35.8,59.5,-9,-9,6.666666666666667,1,1,0,0,10,9,4,0,592,123959.41,0,0,0,0,0,1000.0696 +15282,18697,33314,33315,-9,-9,1,0,74,0,0,0,2,2,-9,0,3,0,6.7740636,7.0021696,36,1,-135.07399,0,3,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.0616379,6.574544,33.96,51.97,51.24,58.84,5,1,1,0,0,0,4,3,1,696.5,1007363.2,634951.63,359879.88,0,0,0,3074.2285 +15282,18697,33315,33314,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6326408,7.6450868,36,-1,-33.100208,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.8520412,7.7176375,51.24,58.84,33.96,51.97,8.333333333333334,1,1,0,0,0,4,3,1,696.5,1007363.2,634951.63,359879.88,0,0,0,3074.2285 +15282,18698,33316,-9,33314,33315,1,0,45,0,0,0,2,2,-9,0,3,7.736217,7.6965942,0,0,0,-1060.1707,0,2,2,2021,3,0,40,40,1,0,0,5.6873283,5.6873283,.05,.05,0,0,0,0,0,0,1,1,0,6.9117494,0,56.94,43.99,-9,-9,8.333333333333334,1,1,0,0,10,4,3,1,522,-102134.98,-6195.6616,0,0,0,0,910.1134 +15283,18699,33317,33318,-9,-9,1,0,82,0,0,0,2,2,-9,0,3,0,6.3995647,6.6528325,61,2,-62.415012,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,6.8222899,25.94,54.33,25.55,25,3.333333333333333,1,1,0,0,0,11,2,1,1365,362753.97,178727.72,100451.65,0,0,0,1986.012 +15283,18699,33318,33317,-9,-9,1,1,80,0,0,0,3,3,-9,0,1,0,6.1766248,6.6082568,61,-2,-72.28067,0,-9,-9,2021,35,12,0,0,4,12,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.2571168,25.55,25,25.94,54.33,1.666666666666667,1,1,0,0,0,11,2,1,1365,362753.97,178727.72,100451.65,0,0,0,1986.012 +15284,18700,33319,-9,-9,-9,1,1,83,0,0,0,3,3,-9,0,4,0,5.5333362,5.5629883,0,0,-1052.0485,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,1.0592444,5.9348068,60.87,39.4,-9,-9,6.666666666666667,1,1,0,0,0,11,2,1,996,110558.77,128662.97,374979.47,0,0,0,746.32782 +15285,18701,33320,-9,-9,-9,1,0,44,0,0,0,2,2,-9,0,4,7.6647873,7.4214082,0,0,0,-1057.5215,0,3,3,2021,14,3,30,29,1,3,0,7.9192734,7.9192734,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,14,5,3,1,428,-118558.21,0,0,0,3864.8264,1782.9866,1083.7579 +15285,18702,33321,-9,33320,-9,1,0,21,0,0,0,2,2,-9,0,4,7.8953772,7.9995904,0,0,0,-978.1864,0,2,-9,2021,14,2,39,46,1,2,1,7.7531357,7.7531357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52.82,53.97,-9,-9,10,1,1,0,0,3,5,4,1,2391,-10958.892,-137678.09,0,0,0,0,850.35858 +15285,18703,33322,-9,33320,-9,1,0,18,0,0,0,2,2,-9,0,3,0,0,0,0,0,-836.69391,0,2,-9,2021,13,1,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41,55,-9,-9,5,1,1,1,0,0,5,1,1,300,-68766.297,0,0,0,0,0,0 +15286,18704,33323,33324,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.6452374,6.7968125,57,-3,94.402527,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,39.166111,0,0,1,1,0,1.1417741,6.3276048,52,45,55,45,8,1,1,0,0,0,13,3,1,5088,447575.75,131927.13,139422.63,0,0,0,2406.491 +15286,18704,33324,33323,-9,-9,1,1,85,0,0,0,2,2,-9,0,3,0,7.9402761,7.9226995,57,3,-.27880189,0,3,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,8.1546659,55,45,52,45,8,1,1,0,0,0,13,3,1,5088,447575.75,131927.13,139422.63,0,0,0,2406.491 +15287,18705,33325,33326,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.3235922,7.2227793,0,7,0,64.586082,0,2,2,2021,10,1,30,30,1,1,0,5.8719578,5.8719578,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.67,55.57,57.16,56.15,5,1,1,0,0,9,9,5,0,181.5,153076.47,89130.156,0,0,0,0,1098.7599 +15287,18705,33326,33325,-9,-9,1,1,31,0,0,0,1,1,-9,0,4,8.6862669,8.9279842,0,7,0,128.0032,0,2,2,2021,6,0,40,45,1,0,0,14.871543,14.871543,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,46.67,55.57,8.333333333333334,1,1,0,0,9,9,5,0,181.5,153076.47,89130.156,0,0,0,0,1098.7599 +15288,18706,33327,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,6.7506423,8.2739592,8.4008884,0,0,-910.80682,0,2,2,2021,6,0,16,18,1,0,0,6.192347,6.192347,0,0,0,0,0,0,0,27,0,0,0,0,8.1942186,61.04,39.41,-9,-9,8.333333333333334,1,1,0,0,12,4,4,1,872,-214685.77,0,0,0,0,1791.532,2318.4912 +15289,18707,33328,-9,33329,33330,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.42206,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,1394,506769.31,573018.5,235412.36,221736.45,0,0,2904.1143 +15289,18707,33329,33330,-9,-9,1,0,41,0,2,0,2,2,-9,0,1,8.1244307,8.1522188,0,6,-2,-195.12489,0,3,2,2021,12,0,39,37,1,0,0,10.977242,10.977242,0,0,0,0,0,0,0,0,1,1,0,0,0,45.75,18.48,51.24,58.84,5,1,1,0,0,7,12,4,1,1394,506769.31,573018.5,235412.36,221736.45,0,0,2904.1143 +15289,18707,33330,33329,-9,-9,1,1,43,0,2,0,2,2,-9,0,4,8.811697,8.5356264,0,6,2,-22.107735,0,2,2,2021,11,0,50,50,1,0,0,14.028101,14.028101,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,51.24,58.84,45.75,18.48,8.333333333333334,1,1,0,0,7,12,4,1,1394,506769.31,573018.5,235412.36,221736.45,0,0,2904.1143 +15290,18708,33331,-9,-9,-9,1,0,61,0,0,0,2,2,-9,1,2,0,0,0,0,0,-1029.8055,0,3,3,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.0701103,0,50.65,15.15,-9,-9,6.666666666666667,2,3,0,0,0,6,1,0,113,-35675.656,0,0,0,0,0,291.29785 +15291,18709,33332,-9,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,6.1587429,6.2923107,0,0,-952.86121,0,3,3,2021,6,0,0,38,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7802517,6.2340517,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,11,10,2,1,1230,162097.19,33018.734,0,0,0,0,679.72424 +15292,18710,33333,33334,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,6.7901525,6.4439359,0,6,5,25.105137,-9,3,2,2021,22,9,32,0,1,9,0,2.5093327,2.5093327,0,0,0,0,0,0,0,2,1,0,1,0,0,41.21,51.34,21.59,40.32,3.333333333333333,1,1,0,1,10,12,2,0,746,92217.828,-31213.918,0,0,0,0,1539.6688 +15292,18710,33334,33333,-9,-9,1,0,27,0,2,0,2,2,-9,0,1,0,0,0,6,-5,6.9570827,0,-9,-9,2021,30,12,0,16,3,12,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,21.59,40.32,41.21,51.34,5,1,1,0,1,0,12,2,0,746,92217.828,-31213.918,0,0,0,0,1539.6688 +15292,18710,33335,-9,33334,33333,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-924.7334,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,2,0,746,92217.828,-31213.918,0,0,0,0,1539.6688 +15293,18711,33336,-9,-9,-9,1,1,49,0,0,0,2,2,-9,1,4,8.1414623,7.6093922,0,2,12,43.462524,0,3,2,2021,13,6,30,37,1,6,0,11.104517,11.104517,.05,.05,0,0,0,0,0,0,1,1,0,6.7956743,0,40.95,43.3,49,57,3.333333333333333,1,1,0,0,14,12,3,1,97,-7150.252,9317.3096,0,0,0,1784.6915,1018.9759 +15294,18712,33337,-9,-9,-9,1,1,33,0,0,0,3,3,-9,0,3,8.1305342,8.3208094,0,0,0,-1002.6085,-9,3,-9,2021,21,7,39,0,1,7,0,12.282941,12.282941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,39.72,30.66,-9,-9,3.333333333333333,1,1,0,1,6,9,4,0,514,237585.59,75219.391,92385.828,84410.648,0,0,2168.3604 +15295,18713,33338,33339,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,7.435782,7.3015084,0,10,0,45.844406,0,-9,-9,2021,13,1,23,23,1,1,0,7.9352818,7.9352818,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.81,46.8,46.5,58.26,6.666666666666667,1,1,0,0,11,4,4,1,1080,823240,528041.63,237743.95,39489.445,0,0,2283.6484 +15295,18713,33339,33338,-9,-9,1,1,53,0,0,0,3,3,-9,0,4,8.3222532,8.3018274,0,10,0,6.5165682,0,-9,-9,2021,11,0,38,39,1,0,0,10.82768,10.82768,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,47.81,46.8,6.666666666666667,1,1,0,0,11,4,4,1,1080,823240,528041.63,237743.95,39489.445,0,0,2283.6484 +15295,18714,33340,-9,33338,33339,1,0,26,0,0,0,2,2,-9,0,5,6.7025504,6.8329234,0,0,0,-962.31714,0,2,3,2021,8,0,12,12,1,0,1,9.5975676,9.5975676,0,0,0,0,0,0,0,0,0,0,0,0,0,46.59,59.97,-9,-9,6.666666666666667,1,1,0,0,5,4,2,1,423,-3847.1753,0,0,0,6295.8955,0,79.155785 +15296,18715,33341,-9,-9,-9,1,0,56,0,0,0,2,2,-9,0,1,7.5762815,7.768507,0,0,0,-1108.7042,0,3,3,2021,8,0,27,27,1,0,0,9.3044567,9.3044567,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.77,20.12,-9,-9,10,1,1,0,0,12,13,3,0,2077,-31355.826,-66573.5,0,0,0,0,552.67596 +15297,18716,33342,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,1,0,4.9036322,5.2727089,0,0,-921.80615,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,26.538332,18.951988,234.4736,0,1,1,0,5.0532913,5.1699166,35.92,25.84,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,655,256806.22,-42827.801,156154.84,0,0,0,2229.345 +15297,18717,33343,-9,-9,33342,1,1,54,0,0,0,2,2,-9,0,3,7.9800253,7.7814069,0,0,0,-995.1048,0,-9,3,2021,8,1,44,47,1,1,0,6.444797,6.444797,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,63.26,42.53,-9,-9,8.333333333333334,1,1,0,0,9,2,4,1,166,97455.141,60091.301,0,0,-374.08063,0,2200.811 +15298,18718,33344,-9,33345,33347,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1077.7847,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33345,33347,-9,-9,1,0,40,1,4,0,2,2,-9,0,3,0,0,0,7,-3,33.16291,0,2,2,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.02,49.39,35.32,64.83,3.333333333333333,1,1,0,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33346,-9,33345,33347,1,0,10,1,4,1,3,0,-9,0,4,0,0,0,0,0,-863.13989,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33347,33345,-9,-9,1,1,43,1,4,0,1,1,-9,0,4,8.4766197,8.3108931,0,23,3,16.573874,0,2,2,2021,19,6,44,37,1,6,0,10.554367,10.554367,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.32,64.83,51.02,49.39,1.666666666666667,1,1,0,0,3,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33348,-9,33345,33347,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1214.8158,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15298,18718,33349,-9,33345,33347,1,1,13,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.8572,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,3,0,1128,638927.88,531888.31,184128.47,78353.969,0,0,3530.1069 +15299,18719,33350,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.7104397,8.7709198,0,0,0,-1000.1761,0,2,2,2021,13,2,50,55,1,2,0,11.751419,11.751419,.05,.05,0,0,0,0,0,0,0,0,0,6.6848359,0,48.26,53.44,-9,-9,6.666666666666667,1,1,0,0,13,7,5,1,513,628946.75,-29535.891,284017.13,0,0,0,2802.6086 +15300,18720,33351,33352,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,9.1139526,9.3240166,0,9,-1,-22.579248,0,-9,-9,2021,10,1,43,43,1,1,0,18.283228,18.283228,0,0,0,0,0,0,0,0,0,0,0,0,0,55.79,38.21,55.44,52.99,8.333333333333334,1,1,0,0,8,7,5,1,612.5,98399.211,15016.008,340052.5,227068.56,0,0,6067.5771 +15300,18720,33352,33351,-9,-9,1,0,38,0,0,0,1,1,-9,0,4,8.7877398,8.8476791,0,9,1,-13.823172,0,2,3,2021,8,0,46,48,1,0,0,14.613469,14.613469,0,0,0,0,0,0,0,0,0,0,0,7.7002974,0,55.44,52.99,55.79,38.21,8.333333333333334,2,3,0,0,7,7,5,1,612.5,98399.211,15016.008,340052.5,227068.56,0,0,6067.5771 +15301,18721,33353,-9,-9,-9,1,0,47,0,1,0,2,2,-9,1,1,0,0,0,0,0,-1044.9078,0,3,3,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.83,31.85,-9,-9,5,1,1,0,1,0,2,2,0,476,189652.88,0,0,0,-1659.8175,0,1309.6984 +15302,18722,33354,-9,33356,33355,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1053.261,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,2,1,510,-50306.898,-2440.5803,0,0,7978.6255,2283.7197,1297.9125 +15302,18722,33355,33356,-9,-9,1,1,59,0,1,0,2,2,-9,0,1,0,0,0,26,8,-86.788841,0,2,3,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.54,25.38,33.89,42.68,6.666666666666667,1,1,0,0,0,13,2,1,510,-50306.898,-2440.5803,0,0,7978.6255,2283.7197,1297.9125 +15302,18722,33356,33355,-9,-9,1,0,51,0,1,0,2,2,-9,0,2,7.6999087,7.5854225,0,16,-8,42.192387,0,2,2,2021,22,10,34,27,1,10,0,6.4952745,6.4952745,0,0,0,0,0,0,0,0,1,1,0,0,0,33.89,42.68,45.54,25.38,6.666666666666667,1,1,0,0,12,13,2,1,510,-50306.898,-2440.5803,0,0,7978.6255,2283.7197,1297.9125 +15302,18723,33357,-9,33356,33355,1,0,19,0,1,1,2,0,0,0,4,0,0,0,0,0,-1065.0444,-9,2,2,2021,16,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.28,63.48,-9,-9,6.666666666666667,1,1,0,0,1,13,2,1,429,-11876.926,0,0,0,0,0,0 +15303,18724,33358,33359,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.7327247,7.5913978,26,-3,-16.130663,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.783226,56.76,44.55,57.16,56.15,8.333333333333334,1,1,0,0,0,10,3,1,407,1161836.3,224399.11,452910,0,0,0,3384.019 +15303,18724,33359,33358,-9,-9,1,0,74,0,0,0,2,2,-9,0,4,0,6.9453683,6.9123955,26,3,-34.971096,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3626952,7.0160193,57.16,56.15,56.76,44.55,10,1,1,0,0,0,10,3,1,407,1161836.3,224399.11,452910,0,0,0,3384.019 +15304,18725,33360,33361,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,11,-3,0,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.42470989,0,54.37,54.8,54.79,55.86,8.333333333333334,1,1,0,0,0,7,1,1,190.5,422147.81,0,233200.69,0,0,0,1057.4568 +15304,18725,33361,33360,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,0,0,11,3,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.446068,0,54.79,55.86,54.37,54.8,8.333333333333334,1,1,0,0,10,7,1,1,190.5,422147.81,0,233200.69,0,0,0,1057.4568 +15305,18726,33362,-9,33364,-9,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-995.02722,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,3,0,515,223386.78,13335.538,246800.16,83471.594,0,0,2110.5068 +15305,18726,33363,-9,33364,-9,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-912.75977,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,3,0,515,223386.78,13335.538,246800.16,83471.594,0,0,2110.5068 +15305,18726,33364,-9,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,8.1049662,7.9917698,0,0,0,-1061.9548,-9,3,2,2021,13,1,20,0,1,1,0,12.326133,12.326133,0,0,0,0,0,0,0,0,1,1,0,0,0,40.75,58.26,-9,-9,5,1,1,0,0,5,10,3,0,515,223386.78,13335.538,246800.16,83471.594,0,0,2110.5068 +15306,18727,33365,33366,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,7.0627809,6.8113866,0,20,-8,4.5743833,0,-9,-9,2021,7,0,15,5,1,0,0,10.039132,10.039132,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.12,54.8,10,2,3,0,0,11,2,3,1,3612,960053.56,265572.5,544455.63,41332.516,2534.0986,1922.6665,810.51563 +15306,18727,33366,33365,-9,-9,1,1,50,0,0,0,3,3,-9,0,4,7.537672,7.49507,0,20,8,43.722939,0,-9,-9,2021,9,1,37,36,1,1,0,6.259275,6.259275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,62.49,55.09,6.666666666666667,2,3,0,0,13,2,3,1,3612,960053.56,265572.5,544455.63,41332.516,2534.0986,1922.6665,810.51563 +15306,18728,33367,-9,33365,33366,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-965.60419,-9,3,3,2021,7,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,38.12,66.46000000000001,-9,-9,10,2,3,0,0,4,2,1,1,827,33883.41,0,0,0,0,0,0 +15306,18729,33368,-9,33365,33366,1,0,18,0,0,1,2,0,0,0,4,0,0,0,0,0,-1049.0566,-9,3,3,2021,12,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,5,2,3,0,0,3,2,1,1,926,0,0,0,0,0,0,0 +15307,18730,33369,33370,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,5.4797959,5.8308182,61,-5,136.2235,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,0,5.50842,58.9,45.74,62.32,36.18,8.333333333333334,1,1,0,0,0,10,3,0,1133.5,200909.34,0,123395.33,0,0,0,2199.1775 +15307,18730,33370,33369,-9,-9,1,1,84,0,0,0,1,1,-9,0,3,0,7.565793,7.6877699,61,5,42.340038,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.31868681,7.6532769,62.32,36.18,58.9,45.74,10,1,1,0,0,0,10,3,0,1133.5,200909.34,0,123395.33,0,0,0,2199.1775 +15308,18731,33371,-9,-9,-9,1,1,38,0,0,0,1,1,-9,1,3,0,0,0,0,0,-1071.1792,0,1,2,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.6488376,0,48,52,-9,-9,7,2,3,0,0,2,6,2,0,1416,35046.559,0,0,0,0,0,-106.92251 +15309,18732,33372,-9,33374,33373,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1017.4657,-9,3,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15309,18732,33373,33374,-9,-9,1,1,36,0,2,0,2,2,-9,0,4,7.4853511,7.5184445,0,5,-4,117.69398,0,2,2,2021,17,4,30,30,1,4,0,10.945917,10.945917,.05,.05,0,0,0,0,0,0,1,1,0,2.7518814,0,42.98,55.94,42.6,50.45,5,1,1,0,0,13,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15309,18732,33374,33373,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,7.7305956,7.6003613,0,5,4,68.167252,0,-9,-9,2021,10,0,27,27,1,0,0,8.542717,8.542717,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.6,50.45,42.98,55.94,6.666666666666667,1,1,0,0,9,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15309,18732,33375,-9,33374,33373,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-942.26215,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,3,1,1050.5,262897.47,180290.84,196708.83,151129.44,1103.4989,11875.707,2495.1069 +15310,18733,33376,-9,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,6.4270859,6.5034409,0,0,-886.05493,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,2.7430966,9.9403305,44.203823,0,1,1,0,1.2718067,6.2108026,46.4,19.56,-9,-9,6.666666666666667,1,1,0,0,0,13,2,1,106,239140.95,128841.88,0,0,0,0,1746.9547 +15311,18734,33377,-9,33378,33380,1,1,6,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1017.721,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33378,33380,-9,-9,1,0,27,2,4,0,2,2,-9,0,4,0,0,0,13,-11,115.3436,0,3,3,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.44,62.16,51,56,1.666666666666667,2,3,0,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33379,-9,33378,33380,1,1,1,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1039.7256,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33380,33378,-9,-9,1,1,38,2,4,0,2,2,-9,0,4,7.8194408,7.8016992,0,8,11,116.76687,0,-9,-9,2021,10,0,24,24,1,1,0,9.5821247,9.5821247,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,26.44,62.16,7,2,3,0,0,1,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33381,-9,33378,33380,1,1,9,2,4,1,3,0,-9,0,4,0,0,0,0,0,-960.1239,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15311,18734,33382,-9,33378,33380,1,1,2,2,4,1,3,0,-9,0,4,0,0,0,0,0,-1027.8136,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,2,3,-9,0,0,4,2,1,1745.5,82398.648,56799.707,0,0,6602.3154,0,2421.491 +15312,18735,33383,33384,-9,-9,1,0,64,0,0,0,1,1,-9,0,2,7.2809358,7.3410621,0,44,0,24.684952,0,2,2,2021,19,7,21,21,1,7,0,7.5876536,7.5876536,0,0,0,1,0,0,0,2,0,0,0,0,0,46.96,40.63,53.14,51.28,8.333333333333334,1,1,0,0,12,10,3,1,314,1064059.5,32240.109,947807.25,0,0,0,1459.2004 +15312,18735,33384,33383,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.3144546,7.7796168,0,44,0,32.553444,0,2,2,2021,8,0,32,35,1,0,0,4.4636431,4.4636431,0,0,0,0,0,0,0,0,0,0,0,0,0,53.14,51.28,46.96,40.63,8.333333333333334,1,1,0,0,12,10,3,1,314,1064059.5,32240.109,947807.25,0,0,0,1459.2004 +15313,18736,33385,-9,33387,33386,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.6537,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15313,18736,33386,33387,-9,-9,1,1,43,1,2,0,2,2,-9,0,4,8.1918077,8.529685,0,7,3,-22.736807,0,-9,-9,2021,6,0,48,48,1,0,0,11.543543,11.543543,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,45.91,59.89,36.34,53.7,3.333333333333333,1,1,0,0,12,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15313,18736,33387,33386,-9,-9,1,0,40,1,2,0,1,1,-9,0,3,8.3841143,8.6716232,0,7,-3,-8.8976526,0,2,2,2021,20,8,38,38,1,8,0,14.171176,14.171176,.05,.05,0,0,0,0,0,0,1,1,0,0,0,36.34,53.7,45.91,59.89,6.666666666666667,1,1,0,0,12,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15313,18736,33388,-9,33387,33386,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-975.40204,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,4,1,427.75,353223.59,244033.88,248804.16,209323.7,0,0,3720.3804 +15314,18737,33389,33390,-9,-9,1,1,36,1,1,0,1,1,-9,0,3,7.24369,7.2877865,0,7,7,136.64566,0,3,1,2021,14,4,28,28,1,4,0,6.2474403,6.2474403,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.61,54.85,37.55,38.71,6.666666666666667,2,3,0,0,9,7,2,0,1164,121289.52,19623.752,0,0,0,1649.8953,750.98944 +15314,18737,33390,33389,-9,-9,1,0,29,1,1,0,1,1,-9,0,1,0,0,0,7,-7,-125.01405,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.55,38.71,42.61,54.85,10,2,3,0,1,4,7,2,0,1164,121289.52,19623.752,0,0,0,1649.8953,750.98944 +15314,18737,33391,-9,33390,33389,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-926.38361,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,2,3,-9,0,0,7,2,0,1164,121289.52,19623.752,0,0,0,1649.8953,750.98944 +15315,18738,33392,-9,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.2046657,6.4761539,0,0,-996.44165,-9,3,3,2021,21,9,0,0,4,9,0,0,0,0,0,0,0,2.4869077,2.1857831,23.223238,0,1,1,0,0,6.3384576,30.11,56.52,-9,-9,1.666666666666667,1,1,0,0,4,9,2,1,931,495241.09,177299.73,183553.88,0,4472.04,0,1239.3141 +15316,18739,33393,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,5.0729208,5.0459824,0,0,-1093.6655,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,4.9129653,54.18,45.3,-9,-9,10,1,1,0,0,0,6,2,0,282,-17274.301,91537.023,0,0,0,0,-163.66608 +15317,18740,33394,33395,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,0,0,0,6,-3,50.742168,0,-9,-9,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,52.9,38.98,54.2,57.49,10,1,1,0,0,2,11,4,1,938,35377.41,99713.07,93263.594,0,6822.9941,0,3086.1836 +15317,18740,33395,33394,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.5583105,8.9032354,0,6,3,52.158936,0,2,3,2021,10,1,50,50,1,1,0,12.015224,12.015224,.05,.05,0,0,0,0,0,0,0,0,0,7.2760396,0,54.2,57.49,52.9,38.98,8.333333333333334,1,1,0,0,7,11,4,1,938,35377.41,99713.07,93263.594,0,6822.9941,0,3086.1836 +15318,18741,33396,33397,-9,-9,1,0,52,0,0,0,3,3,-9,0,1,7.5905666,7.6383657,0,23,-8,111.7613,0,3,3,2021,17,5,30,26,1,5,0,6.0491581,6.0491581,0,0,0,0,0,0,0,0,0,0,0,0,0,54.06,17.65,60.3,46.58,5,1,1,0,0,4,4,4,0,1592.5,949260.81,361628.69,414118.44,0,0,0,1934.1296 +15318,18741,33397,33396,-9,-9,1,1,60,0,0,0,3,3,-9,0,3,7.8099418,8.0311775,0,23,8,63.744759,0,3,3,2021,4,0,58,60,1,0,0,4.9165926,4.9165926,0,0,0,0,0,0,0,0,0,0,0,0,0,60.3,46.58,54.06,17.65,6.666666666666667,1,1,0,0,5,4,4,0,1592.5,949260.81,361628.69,414118.44,0,0,0,1934.1296 +15319,18742,33398,-9,33399,-9,1,1,12,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1024.2303,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,5,1,890.33331,940864.13,188647.95,592935.63,128831.49,12132.95,0,3098.7585 +15319,18742,33399,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.9420319,9.2192631,7.1265111,0,0,-993.78052,0,1,1,2021,5,1,45,43,1,1,0,26.314081,26.314081,.05,.05,0,0,0,0,0,0,1,1,0,6.9328957,0,42.58,58.53,-9,-9,8.333333333333334,1,1,0,0,11,9,5,1,890.33331,940864.13,188647.95,592935.63,128831.49,12132.95,0,3098.7585 +15319,18742,33400,-9,33399,-9,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-895.15131,-9,1,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,9,5,1,890.33331,940864.13,188647.95,592935.63,128831.49,12132.95,0,3098.7585 +15320,18743,33401,-9,33403,33404,1,0,17,0,1,1,2,0,0,0,3,0,0,0,0,0,-1051.9939,-9,2,2,2021,14,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44.78,56.37,-9,-9,8.333333333333334,1,1,0,0,2,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15320,18743,33402,-9,33403,33404,1,1,9,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1027.717,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15320,18743,33403,33404,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,8.3517075,8.3358908,6.2149186,8,1,92.489426,0,2,1,2021,11,2,20,4,1,2,0,27.834635,27.834635,0,0,0,0,0,0,0,2,1,1,0,6.3802452,0,42.8,29.29,57.06,57.76,8.333333333333334,1,1,0,0,8,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15320,18743,33404,33403,-9,-9,1,1,36,0,1,0,2,2,-9,0,5,9.2807264,9.154007,0,8,-1,-69.469841,0,-9,-9,2021,9,0,50,50,1,0,0,22.192055,22.192055,0,0,0,0,0,0,0,2,1,1,0,6.8359685,0,57.06,57.76,42.8,29.29,8.333333333333334,1,1,0,0,10,7,5,1,528,30110.207,0,0,0,31070.043,0,6186.749 +15321,18744,33405,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,7.7331347,8.4273052,7.2218223,0,0,-1076.408,0,3,3,2021,21,9,27,25,1,9,0,10.936435,10.936435,.05,.05,0,1,0,0,0,0,1,1,0,6.4477291,7.1229978,39.15,41.42,-9,-9,6.666666666666667,1,1,0,0,11,2,4,1,1901,613082.38,317537.69,125790.83,0,0,0,2063.6404 +15322,18745,33406,33407,-9,-9,1,0,48,0,0,0,2,2,-9,0,3,8.1039972,7.8200755,0,8,-5,-68.004921,0,2,3,2021,7,0,24,12,1,0,0,12.27324,12.27324,0,0,0,0,0,0,0,0,1,1,0,0,0,58.32,50.22,56.1,49.93,8.333333333333334,1,1,0,0,9,9,4,0,303.5,463685.69,153618.97,464928.25,43944.387,6374.853,4070.9392,3472.7646 +15322,18745,33407,33406,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,7.566123,7.473702,0,8,5,46.691589,0,-9,-9,2021,11,0,40,40,1,0,0,6.0546975,6.0546975,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,56.1,49.93,58.32,50.22,6.666666666666667,1,1,0,0,7,9,4,0,303.5,463685.69,153618.97,464928.25,43944.387,6374.853,4070.9392,3472.7646 +15323,18746,33408,-9,-9,-9,1,0,44,0,2,0,2,2,-9,0,2,8.2488489,7.9994831,0,0,0,-867.29144,0,3,2,2021,11,2,50,18,1,2,0,8.900238,8.900238,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.88,52.43,-9,-9,6.666666666666667,1,1,0,1,5,2,3,0,875,54109.23,-3707.8926,0,0,0,0,2202.6582 +15323,18746,33409,-9,33408,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1044.697,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,3,0,875,54109.23,-3707.8926,0,0,0,0,2202.6582 +15323,18747,33410,-9,33408,-9,1,1,19,0,2,0,2,2,1,0,4,6.0818954,5.9505024,0,0,0,-1022.6727,-9,2,-9,2021,10,0,37,0,1,0,1,1.4084841,1.4084841,0,0,0,0,0,0,0,0,1,1,0,0,0,50.46,53.68,-9,-9,6.666666666666667,1,1,0,0,3,2,2,0,1838,-16729.984,0,0,0,0,0,626.55493 +15324,18748,33411,-9,33412,-9,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1083.2626,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,5,2,1,919.5,-129192.11,0,0,0,2328.8418,0,854.82416 +15324,18748,33412,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,3,0,0,0,0,0,-988.4502,0,2,1,2021,13,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,1,1,3,5,2,1,919.5,-129192.11,0,0,0,2328.8418,0,854.82416 +15325,18749,33413,-9,-9,-9,1,1,88,0,0,0,1,1,-9,0,3,0,8.5938759,8.470212,0,0,-1056.6908,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,16.642328,0,0,1,1,0,0,8.7141514,61.43,38.14,-9,-9,8.333333333333334,1,1,0,0,0,12,4,1,246,731950.13,232987.48,315204.41,0,0,0,2943.1506 +15325,18750,33414,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,5,0,7.4106092,7.0970716,0,0,-867.92981,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,2.9071031,0,20.051519,0,1,1,0,6.9855738,7.1408062,45.6,57.67,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,891,154389.13,-96651.836,47871.559,0,0,0,2126.6379 +15326,18751,33415,33416,-9,-9,1,1,75,0,0,0,1,1,-9,0,3,0,8.3916721,8.6470041,12,7,8.3440351,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,8.3109379,48.14,53.42,42.3,57.54,8.333333333333334,1,1,0,0,0,1,5,1,743,1653101.5,554120.75,507195.44,0,0,0,5658.1177 +15326,18751,33416,33415,-9,-9,1,0,68,0,0,0,1,1,-9,0,4,0,8.1919727,8.5931034,48,-7,62.321827,0,2,2,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.6368258,8.4292879,42.3,57.54,48.14,53.42,6.666666666666667,1,1,0,0,0,1,5,1,743,1653101.5,554120.75,507195.44,0,0,0,5658.1177 +15327,18752,33417,33418,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,8.3503046,8.6151085,0,9,0,-106.1329,0,3,2,2021,8,0,35,35,1,0,0,17.778189,17.778189,0,0,0,0,0,0,0,0,0,0,0,4.6405702,0,51.24,58.84,48.18,61.8,5,1,1,0,0,12,8,5,1,846,2423871.3,1526832,457898.75,0,5487.3833,0,5143.1724 +15327,18752,33418,33417,-9,-9,1,0,60,0,0,0,1,1,-9,0,5,8.6487589,8.7981033,6.6456547,9,0,-10.928896,0,3,2,2021,11,0,40,50,1,0,0,17.566303,17.566303,0,0,0,0,0,0,0,0,0,0,0,3.7481303,6.7121391,48.18,61.8,51.24,58.84,8.333333333333334,1,1,0,0,12,8,5,1,846,2423871.3,1526832,457898.75,0,5487.3833,0,5143.1724 +15327,18753,33419,-9,33418,33417,1,0,22,0,0,0,1,1,1,0,4,0,0,0,0,0,-1094.7091,-9,1,2,2021,9,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.53672105,0,40.77,61.04,-9,-9,6.666666666666667,1,1,1,0,0,8,2,1,362,107301.13,52593.68,0,0,0,0,466.25269 +15328,18754,33420,-9,-9,-9,1,0,75,0,0,0,1,1,-9,0,4,0,7.6719832,7.9850755,0,0,-1021.499,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,2,1,1,0,6.9490657,7.5452557,53.22,52.37,-9,-9,8.333333333333334,1,1,0,0,0,11,3,1,1119,593762.06,281648.66,240606.63,0,0,0,3339.3662 +15329,18755,33421,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1026.8557,0,2,2,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.31,51.83,-9,-9,5,4,5,0,0,0,7,1,0,644,-11127.875,0,0,0,0,0,377.22922 +15330,18756,33422,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,5,0,0,0,0,0,-1049.604,0,2,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,7,1,1,0,5.5334935,0,58.22,54.51,-9,-9,10,1,1,0,0,0,10,1,1,486,-49934.648,0,0,0,0,0,749.63129 +15331,18757,33423,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1023.0574,0,3,3,2021,21,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,33.88,34.89,-9,-9,1.666666666666667,1,1,0,0,0,10,1,0,5048,53322.207,0,0,0,0,1743.5156,1066.9767 +15332,18758,33424,33425,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,9.0811396,9.0569057,0,32,5,159.13863,0,-9,-9,2021,5,0,45,43,1,0,0,21.761213,21.761213,0,0,.05,0,0,0,0,2,0,0,0,2.1888628,0,54.2,57.49,23.69,33.92,8.333333333333334,1,1,0,0,12,7,5,1,795.5,2154325.5,140845.72,1062632.8,0,0,0,3422.1628 +15332,18758,33425,33424,-9,-9,1,0,55,0,0,0,1,1,-9,0,2,0,0,0,32,-5,-128.10399,0,-9,-9,2021,27,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,2,0,0,0,2.8756354,0,23.69,33.92,54.2,57.49,3.333333333333333,1,1,0,0,6,7,5,1,795.5,2154325.5,140845.72,1062632.8,0,0,0,3422.1628 +15333,18759,33426,-9,-9,-9,1,0,89,0,0,0,1,1,-9,0,2,0,7.9125333,8.073308,0,0,-987.04346,0,2,2,2021,17,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.4830022,7.8769884,39.83,30.82,-9,-9,5,1,1,0,0,0,9,3,1,3576,732952.44,321671.34,332390.97,0,0,0,2160.5488 +15334,18760,33427,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,3,0,5.3588171,5.8175616,0,0,-898.53442,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,5.8204608,39.43,42.75,-9,-9,10,1,1,0,0,4,7,2,0,435,673242.19,153114,426198.41,0,0,1030.673,560.19971 +15335,18761,33428,-9,33430,33429,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-881.8324,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15335,18761,33429,33430,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,9.6219034,9.9446259,0,9,1,63.316605,0,1,1,2021,7,0,53,50,1,0,0,32.040585,32.040585,.05,.05,0,0,0,0,0,0,0,0,0,5.5995703,0,57.16,56.15,51.13,50.73,8.333333333333334,2,3,0,0,10,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15335,18761,33430,33429,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,7.3224692,7.3852043,0,9,-1,-78.381226,0,-9,-9,2021,6,0,10,0,1,0,0,21.234346,21.234346,.05,.05,0,0,0,0,0,0,0,0,0,1.0321999,0,51.13,50.73,57.16,56.15,8.333333333333334,1,1,0,0,9,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15335,18761,33431,-9,33430,33429,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1140.9719,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,5,1,824.75,510169.91,223091.59,526047.56,348828.88,0,0,15776.692 +15336,18762,33432,-9,-9,-9,1,1,82,0,0,0,2,2,-9,0,4,0,6.714674,7.1039677,0,0,-896.17542,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.5196786,7.0505362,50.57,55.02,-9,-9,10,1,1,0,0,0,13,2,0,1271,364171.13,82079.938,221895.11,0,0,0,204.98824 +15337,18763,33433,33434,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,0,6.4245148,6.559618,12,8,76.520409,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,6.4137783,48.8,43.43,43.35,27.54,5,1,1,0,0,4,11,2,0,1717.5,282127.84,376061.78,0,0,0,4374.5439,2966.7769 +15337,18763,33434,33433,-9,-9,1,1,55,0,0,0,2,2,-9,1,2,0,0,0,12,-8,33.175694,0,2,2,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43.35,27.54,48.8,43.43,5,1,1,0,1,0,11,2,0,1717.5,282127.84,376061.78,0,0,0,4374.5439,2966.7769 +15338,18764,33435,33436,-9,-9,1,0,75,0,0,0,3,3,-9,0,3,0,6.9567604,7.1928439,9,-3,-89.06723,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2873379,6.8130865,59.31,49.81,54.96,53.17,8.333333333333334,1,1,0,0,3,13,2,1,1112,508126,195069.78,322424.69,0,0,-598.99506,2196.8306 +15338,18764,33436,33435,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,6.196907,6.2382278,9,3,126.337,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.9556491,6.5452185,54.96,53.17,59.31,49.81,8.333333333333334,1,1,0,0,2,13,2,1,1112,508126,195069.78,322424.69,0,0,-598.99506,2196.8306 +15339,18765,33437,33438,-9,-9,1,1,38,0,0,0,1,1,-9,0,4,9.264555,9.0363445,0,18,1,-18.705582,-9,2,1,2021,6,0,45,0,1,0,0,19.11915,19.11915,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.86,55.31,54.2,57.49,8.333333333333334,1,1,0,0,8,6,5,0,459.5,197880.89,22304.855,143379.56,86214.672,0,0,2800.9612 +15339,18765,33438,33437,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,1.8110996,2.0269144,0,18,-1,-30.827576,0,1,1,2021,6,0,12,0,1,0,0,.10762022,.10762022,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,49.86,55.31,8.333333333333334,1,1,0,0,4,6,5,0,459.5,197880.89,22304.855,143379.56,86214.672,0,0,2800.9612 +15340,18766,33439,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,3,7.9703012,8.2571125,5.64187,0,0,-968.98419,0,3,2,2021,12,0,21,21,1,0,0,17.143143,17.143143,.05,.05,0,0,0,0,0,0,1,1,0,5.8370728,0,46.82,47.67,-9,-9,8.333333333333334,1,1,0,0,10,7,3,1,300.5,89452.758,49769.078,0,0,3525.8359,0,2362.209 +15340,18766,33440,-9,33439,-9,1,1,16,0,1,1,2,0,-9,0,4,0,0,0,0,0,-993.76282,-9,2,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.77,55.33,-9,-9,10,1,1,0,0,0,7,3,1,300.5,89452.758,49769.078,0,0,3525.8359,0,2362.209 +15340,18767,33441,-9,33439,-9,1,1,19,0,1,0,2,2,1,0,4,0,0,0,0,0,-1067.7867,-9,2,-9,2021,10,0,0,0,3,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,1.2005924,0,48,59,-9,-9,7,1,1,0,0,0,7,2,1,1449,0,0,0,0,0,0,206.38257 +15341,18768,33442,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,0,0,0,0,-890.03925,0,2,1,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5601749,0,38.49,59.44,-9,-9,3.333333333333333,1,1,0,0,4,12,1,1,1101,96026.992,0,0,0,0,0,967.38019 +15342,18769,33443,33444,-9,-9,1,1,67,0,0,0,2,2,-9,0,4,9.5527868,9.7060699,4.2303724,19,0,142.75508,0,-9,-9,2021,13,3,30,30,1,3,0,73.121323,73.121323,0,0,0,0,0,0,0,0,1,1,0,6.4774904,3.7046781,53.6,43.99,41.13,42.39,8.333333333333334,1,1,0,0,13,5,5,1,350.5,259379.34,0,226935.06,0,4908.6348,0,15759.797 +15342,18769,33444,33443,-9,-9,1,0,67,0,0,0,2,2,-9,0,2,0,7.4323397,7.7685504,21,0,51.657166,0,-9,-9,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1870463,7.7046719,41.13,42.39,53.6,43.99,8.333333333333334,1,1,0,0,6,5,5,1,350.5,259379.34,0,226935.06,0,4908.6348,0,15759.797 +15343,18770,33445,-9,33447,33446,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1005.2454,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,4,1,634.66669,207006.17,222227.48,220318.34,55718.898,6988.4385,1164.723,3283.0703 +15343,18770,33446,33447,-9,-9,1,1,40,0,2,0,3,3,-9,0,3,7.460155,7.2071357,0,18,2,-37.866974,0,2,3,2021,8,0,50,40,1,0,0,4.7653174,4.7653174,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.31,58.29,8.333333333333334,1,1,0,0,11,1,4,1,634.66669,207006.17,222227.48,220318.34,55718.898,6988.4385,1164.723,3283.0703 +15343,18770,33447,33446,-9,-9,1,0,38,0,2,0,1,1,-9,0,4,8.8106184,8.8017845,0,18,-2,-4.4817085,0,2,2,2021,7,0,37,37,1,0,0,19.99992,19.99992,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.31,58.29,57.33,53.46,8.333333333333334,1,1,0,0,11,1,4,1,634.66669,207006.17,222227.48,220318.34,55718.898,6988.4385,1164.723,3283.0703 +15344,18771,33448,-9,-9,-9,1,1,62,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1003.3823,0,3,3,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.64,13.18,-9,-9,8.333333333333334,1,1,0,0,0,13,1,1,1067,-107262.9,0,0,0,749.3667,0,746.42993 +15345,18772,33449,-9,-9,-9,1,1,92,0,0,0,2,2,-9,0,1,0,6.8232403,6.4215231,0,0,-966.29376,0,3,2,2021,15,3,0,0,4,3,0,0,0,0,0,0,1,1.3487884,0,23.968344,0,1,1,0,.57537997,6.4935231,52.22,18.93,-9,-9,3.333333333333333,1,1,0,0,0,2,2,0,588,173070.75,-38378.043,0,0,0,0,367.27258 +15346,18773,33450,33451,-9,-9,1,0,77,0,0,0,1,1,-9,0,3,0,6.8761392,7.0082984,11,-2,-72.138107,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2567186,7.0682597,59.07,43.05,61.94,29.41,8.333333333333334,1,1,0,0,0,12,5,1,956,1224113,866434.31,307218.94,0,8599.1211,0,6716.0469 +15346,18773,33451,33450,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,8.7501087,8.6701002,11,2,-60.585743,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.6038055,8.9282446,61.94,29.41,59.07,43.05,8.333333333333334,1,1,0,0,0,12,5,1,956,1224113,866434.31,307218.94,0,8599.1211,0,6716.0469 +15347,18774,33452,-9,33455,33454,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-923.26166,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15347,18774,33453,-9,33455,33454,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1116.209,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15347,18774,33454,33455,-9,-9,1,1,44,0,2,0,2,2,-9,0,4,9.5434294,9.5019703,0,24,0,-102.80959,0,2,2,2021,7,0,35,30,1,0,0,65.314804,65.314804,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15347,18774,33455,33454,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.5542355,8.3824987,0,24,0,-95.374039,0,2,2,2021,8,0,24,28,1,0,0,23.372555,23.372555,0,0,0,0,0,0,0,0,0,0,0,0,0,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,9,5,1,481.5,1193479.3,825526.13,377150.09,168875.73,0,0,13149.891 +15348,18775,33456,33457,-9,-9,1,0,73,0,0,0,1,1,-9,0,3,0,8.1876736,7.7313752,38,7,131.14705,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0037265,7.91471,56.22,40.21,57.16,56.15,8.333333333333334,1,1,0,0,0,6,5,1,366.5,2292653.5,1589607.8,548318.06,0,0,0,9364.3594 +15348,18775,33457,33456,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,9.4557562,9.4171324,10,-7,-36.688725,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5729275,9.2515907,57.16,56.15,56.22,40.21,10,1,1,0,0,0,6,5,1,366.5,2292653.5,1589607.8,548318.06,0,0,0,9364.3594 +15349,18776,33458,33460,-9,-9,1,0,29,1,2,0,2,2,-9,0,2,7.0493178,7.1058917,0,6,3,30.49379,0,-9,-9,2021,15,3,24,24,1,3,0,4.8958297,4.8958297,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.23,53.22,57.06,57.76,5,1,1,0,0,9,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15349,18776,33459,-9,33458,33460,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.3291,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,6,1,1,-9,0,0,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15349,18776,33460,33458,-9,-9,1,1,26,1,2,0,2,2,-9,0,5,8.0820456,7.9134417,0,6,-3,-87.824593,0,-9,-9,2021,8,0,45,42,1,0,0,8.5199785,8.5199785,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,41.23,53.22,8.333333333333334,1,1,0,0,7,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15349,18776,33461,-9,33458,33460,1,1,5,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.1727,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,3,1,1041.5,36616.488,-9745.8223,112072.61,80500.516,0,0,2387.5742 +15350,18777,33462,33463,-9,-9,1,0,37,0,0,0,1,1,-9,0,4,8.6680355,8.6065245,0,8,4,-63.461132,0,2,2,2021,7,0,36,38,1,0,0,18.110765,18.110765,.05,.05,0,0,0,0,0,2,0,0,0,0,0,41.06,62.04,52.92,55.55,8.333333333333334,1,1,0,0,12,12,5,1,725,162477.67,12185.119,294256.56,97786.391,10103.863,23137.211,4524.0103 +15350,18777,33463,33462,-9,-9,1,1,33,0,0,0,1,1,-9,0,5,8.7553101,8.7263184,0,8,-4,-10.392535,0,-9,-9,2021,6,0,40,40,1,0,0,16.552744,16.552744,.05,.05,0,0,0,0,0,0,0,0,0,5.7308612,0,52.92,55.55,41.06,62.04,10,1,1,0,0,14,12,5,1,725,162477.67,12185.119,294256.56,97786.391,10103.863,23137.211,4524.0103 +15351,18778,33464,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-989.9754,0,3,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7604704,0,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,420,241052.63,0,0,0,0,0,582.7229 +15352,18779,33465,33466,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,0,0,0,18,0,0,0,3,3,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,48.18,61.8,54,54,6.666666666666667,1,1,1,0,0,1,1,0,511.5,149534.36,0,0,0,0,0,1394.1646 +15352,18779,33466,33465,-9,-9,1,1,53,0,0,0,3,3,-9,1,4,0,0,0,33,0,0,0,3,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,54,48.18,61.8,8,1,1,0,0,0,1,1,0,511.5,149534.36,0,0,0,0,0,1394.1646 +15352,18780,33467,-9,33465,33466,1,1,27,0,0,0,2,2,-9,0,4,8.00317,8.0162334,0,0,0,-1087.1378,0,2,3,2021,10,0,60,60,1,1,1,5.881041,5.881041,0,0,0,0,0,0,0,0,1,1,0,0,0,50,57,-9,-9,7,1,1,0,0,1,1,4,0,666,-174095.36,0,0,0,0,0,1847.0952 +15352,18781,33468,-9,33465,33466,1,1,26,0,0,0,2,2,-9,0,4,7.6695552,7.5709953,0,0,0,-857.77045,0,2,3,2021,10,0,50,20,1,1,1,5.5292716,5.5292716,0,0,0,0,0,0,0,0,1,1,0,0,0,50,58,-9,-9,7,1,1,0,0,1,1,4,0,419,170934.47,0,0,0,0,0,1459.5265 +15353,18782,33469,-9,33471,33472,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-979.65662,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33470,-9,33471,33472,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-896.02734,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33471,33472,-9,-9,1,0,43,0,2,0,2,2,-9,0,4,6.4468904,7.2096224,6.0408874,3,-1,18.295305,0,-9,-9,2021,15,3,10,5,1,3,0,8.4976273,8.4976273,.05,.05,0,0,0,0,0,0,1,1,0,5.6737218,0,48.28,60.18,54.13,48.04,5,1,1,0,0,9,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33472,33471,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.6452589,8.768218,0,3,1,-30.976027,0,2,2,2021,13,1,38,39,1,1,0,17.859455,17.859455,.05,.05,0,0,0,0,0,0,1,1,0,4.1417937,0,54.13,48.04,48.28,60.18,6.666666666666667,1,1,0,0,9,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15353,18782,33473,-9,33471,33472,1,0,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-908.48816,-9,2,2,2021,9,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,384.20001,417427,267225.31,120018.48,0,0,0,3309.9043 +15354,18783,33474,-9,-9,-9,1,0,88,0,0,0,1,1,-9,0,2,0,8.2570601,8.3102245,0,0,-1095.8784,0,1,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7058263,8.3902807,64.14,24.84,-9,-9,8.333333333333334,1,1,0,0,0,6,4,1,1088,1139792.3,198754,319757.16,0,0,0,3165.2991 +15355,18784,33475,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,4,8.8543892,8.5267744,6.6902094,0,0,-922.64569,0,3,3,2021,12,0,42,45,1,0,0,15.199781,15.199781,0,0,0,0,0,0,0,0,1,1,0,6.9103146,6.7438793,31.37,62.71,-9,-9,3.333333333333333,3,4,0,0,9,8,5,0,342,921510.25,22449.096,888883.56,19823.645,0,0,1675.8979 +15356,18785,33476,-9,33477,-9,1,1,23,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1016.9909,1,2,3,2021,28,11,0,24,2,11,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,5.14,65.71000000000001,-9,-9,0,1,1,0,1,6,11,1,0,1296,85146.125,0,0,0,0,0,0 +15356,18786,33477,-9,-9,-9,1,0,42,0,1,0,2,2,-9,0,2,7.1820083,7.5141454,0,0,0,-1132.2384,0,-9,-9,2021,20,8,20,45,1,8,0,10.354904,10.354904,.05,.05,0,0,0,0,0,42,1,0,1,0,0,36.51,56.83,-9,-9,3.333333333333333,1,1,0,0,8,11,3,0,266,33331.277,-20099.428,0,0,0,0,1336.9723 +15357,18787,33478,-9,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,4.8472123,4.8083816,0,0,-843.88867,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.6677081,5.1232595,27.99,44.23,-9,-9,5,1,1,0,0,11,9,2,1,1108,343974.56,0,249788.2,0,0,0,1426.4094 +15358,18788,33479,-9,-9,-9,1,0,80,0,0,0,3,3,-9,0,2,0,6.5130033,6.6167884,0,0,-996.89459,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4065779,6.8220878,52.51,19.65,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,112,232053.52,129474.33,202078.03,0,0,0,825.78979 +15359,18789,33480,33481,-9,-9,1,0,35,0,1,0,2,2,-9,0,4,8.0938387,8.4820023,6.41752,5,-10,112.10168,0,2,2,2021,7,0,40,40,1,0,0,12.984452,12.984452,.05,.05,0,0,0,0,0,0,1,1,0,6.6295214,0,45.91,59.89,60.12,54.8,8.333333333333334,1,1,0,0,9,9,4,1,1302.6666,447177.94,344688.94,158606.83,65472.938,23013.688,388.38681,3621.583 +15359,18789,33481,33480,-9,-9,1,1,45,0,1,0,2,2,-9,0,4,8.3153267,8.0912371,0,5,10,59.728188,0,-9,-9,2021,7,0,40,40,1,0,0,13.055018,13.055018,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,45.91,59.89,8.333333333333334,1,1,0,0,9,9,4,1,1302.6666,447177.94,344688.94,158606.83,65472.938,23013.688,388.38681,3621.583 +15359,18789,33482,-9,33480,33481,1,0,14,0,1,1,3,0,-9,0,5,0,0,0,0,0,-842.50275,-9,2,2,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,60,-9,-9,7,1,1,-9,0,0,9,4,1,1302.6666,447177.94,344688.94,158606.83,65472.938,23013.688,388.38681,3621.583 +15360,18790,33483,-9,-9,-9,1,1,64,0,0,0,1,1,-9,0,4,0,7.1536632,6.892437,0,0,-1076.2557,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.6389761,7.2174301,48.87,58.55,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,115,1432623.8,546250.38,814955.81,0,0,0,257.25909 +15361,18791,33484,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,2,0,5.376277,5.418993,0,0,-1055.0875,0,3,2,2021,18,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1998692,5.5669994,46.67,26.4,-9,-9,6.666666666666667,1,1,0,0,0,7,2,1,6278,-29801.537,31363.906,38093.418,0,0,0,1313.0972 +15362,18792,33485,33487,-9,-9,1,0,38,1,1,0,1,1,-9,0,3,7.4540706,7.563344,0,3,-3,-47.376442,0,-9,-9,2021,8,0,43,-9,1,0,0,4.994123,4.994123,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44,52,44.75,45.86,8.333333333333334,1,1,0,0,15,6,4,1,502.66666,552446.63,285380.44,304231.78,144470.95,6037.5947,920.31775,3484.23 +15362,18792,33486,-9,33485,33487,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-972.37872,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,6,4,1,502.66666,552446.63,285380.44,304231.78,144470.95,6037.5947,920.31775,3484.23 +15362,18792,33487,33485,-9,-9,1,1,41,1,1,0,2,2,-9,0,2,8.8691931,8.6621618,0,3,3,-18.073196,0,2,2,2021,19,8,41,37,1,8,0,14.145437,14.145437,.05,.05,0,0,0,0,0,0,0,0,0,7.3355203,0,44.75,45.86,44,52,6.666666666666667,1,1,0,0,15,6,4,1,502.66666,552446.63,285380.44,304231.78,144470.95,6037.5947,920.31775,3484.23 +15363,18793,33488,-9,-9,-9,1,0,34,0,0,0,2,2,-9,0,2,8.655941,8.3850412,0,0,0,-1011.433,0,1,1,2021,15,4,47,30,1,4,0,12.8001,12.8001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.39,41.18,-9,-9,1.666666666666667,4,2,0,0,8,4,5,0,355,194594.81,-32742.803,0,0,4617.7915,0,1956.4055 +15364,18794,33489,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,2,0,5.9201188,6.0076022,0,0,-941.05725,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,8.6421423,0,0,1,1,0,3.7784662,5.9686341,55.62,23.5,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,1400,464997.34,91114.242,379104.19,0,0,0,1528.9153 +15365,18795,33490,33491,-9,-9,1,1,26,0,0,0,2,2,-9,0,3,0,0,0,2,3,.92166156,0,1,-9,2021,16,4,0,0,3,4,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,.54425025,0,43.65,58.28,10.2,55.24,5,1,1,0,0,6,11,2,0,905.5,35294.922,-47465.238,0,0,0,0,69.067017 +15365,18795,33491,33490,-9,-9,1,0,23,0,0,0,1,1,1,0,1,6.8943977,6.6894064,0,2,-3,14.09289,-9,-9,-9,2021,31,11,16,0,1,11,0,4.9364877,4.9364877,0,0,0,0,0,0,0,7,0,0,0,0,0,10.2,55.24,43.65,58.28,0,1,1,0,1,1,11,2,0,905.5,35294.922,-47465.238,0,0,0,0,69.067017 +15366,18796,33492,-9,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,8.9206181,8.8519669,0,0,0,-1069.2217,-9,2,1,2021,13,1,50,0,1,1,0,15.197415,15.197415,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.2,58.1,-9,-9,8.333333333333334,1,1,0,0,2,8,5,0,3344,228903.44,-71200.188,201290.28,173528.08,3181.6174,2581.8904,2044.2576 +15367,18797,33493,33495,-9,-9,1,0,46,0,2,0,2,2,-9,0,5,8.6297369,8.6984835,0,24,-2,-13.141596,0,2,3,2021,9,0,39,41,1,0,0,14.449565,14.449565,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,57.06,57.76,1.666666666666667,1,1,0,0,14,9,4,1,730,851609.44,374048.06,438684.66,138863.78,0,0,3864.9507 +15367,18797,33494,-9,33493,33495,1,0,16,0,2,0,2,2,-9,0,5,0,0,0,0,0,-1048.3892,-9,2,2,2021,7,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1727743,0,45.51,52.15,-9,-9,8.333333333333334,1,1,1,0,1,9,4,1,730,851609.44,374048.06,438684.66,138863.78,0,0,3864.9507 +15367,18797,33495,33493,-9,-9,1,1,48,0,2,0,2,2,-9,0,5,8.4530907,8.3855762,0,24,2,-15.037537,0,2,2,2021,6,0,39,39,1,0,0,13.052858,13.052858,.05,.05,0,0,0,0,0,0,1,1,0,1.8691288,0,57.06,57.76,57.06,57.76,8.333333333333334,1,1,0,0,13,9,4,1,730,851609.44,374048.06,438684.66,138863.78,0,0,3864.9507 +15368,18798,33496,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,0,7.8117595,7.8366446,0,0,-1023.4199,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.0649056,7.7654495,53.33,53.71,-9,-9,8.333333333333334,1,1,0,0,5,4,4,1,1951,505547.09,485497.03,155127.13,0,0,0,2122.5972 +15369,18799,33497,33498,-9,-9,1,0,58,0,0,0,1,1,-9,0,4,7.3504286,7.7183437,7.3952713,7,-2,-62.838043,0,-9,-9,2021,7,0,7,7,1,0,0,26.755735,26.755735,.05,.05,0,0,0,0,0,2,0,0,0,0,7.0374241,51.83,57.2,57.06,57.76,8.333333333333334,1,1,0,0,9,2,5,1,1633.5,2269267,1327316.3,501784.31,0,0,0,15640.236 +15369,18799,33498,33497,-9,-9,1,1,60,0,0,0,1,1,-9,0,5,9.8177156,9.6654234,0,35,2,-16.16415,0,3,3,2021,10,0,30,30,1,0,0,63.75666,63.75666,.05,.05,0,0,0,0,0,0,0,0,0,3.5833645,0,57.06,57.76,51.83,57.2,8.333333333333334,1,1,0,0,9,2,5,1,1633.5,2269267,1327316.3,501784.31,0,0,0,15640.236 +15370,18800,33499,-9,-9,-9,1,1,40,0,0,0,3,3,-9,0,2,9.0336285,9.1501446,0,0,0,-1000.6644,-9,3,-9,2021,6,0,50,0,1,0,0,18.269611,18.269611,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.89,53.59,-9,-9,5,1,1,0,0,10,4,5,0,1272,262219.63,290214.28,0,0,23.389603,845.7998,4653.6162 +15371,18801,33500,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1067.2982,0,3,-9,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.08,55.93,-9,-9,10,1,1,0,0,0,10,1,1,156,69323.547,0,56910.273,32598.334,0,0,1596.3179 +15372,18802,33501,-9,33503,-9,1,0,49,0,1,0,2,2,-9,0,3,7.6005745,7.8960462,6.2825723,0,0,-1043.3168,0,3,2,2021,30,9,29,26,1,9,0,8.5766392,8.5766392,0,0,0,0,0,0,0,0,1,1,0,6.2934389,0,16.75,63.11,-9,-9,0,1,1,0,1,6,10,3,1,529,-33936.469,0,0,0,684.78589,0,2464.582 +15372,18802,33502,-9,33501,-9,1,0,16,0,1,1,3,0,-9,1,5,0,0,0,0,0,-982.45673,-9,2,-9,2021,15,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45.46,61.87,-9,-9,5,1,1,0,0,0,10,3,1,529,-33936.469,0,0,0,684.78589,0,2464.582 +15372,18803,33503,-9,-9,-9,1,0,88,0,1,0,3,3,-9,0,2,0,0,0,0,0,-995.52368,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.98,38.44,-9,-9,8.333333333333334,1,1,0,0,9,10,1,1,752,34581.457,0,216486.27,0,0,975.54608,218.94939 +15373,18804,33504,-9,-9,-9,1,1,64,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1107.7715,0,3,3,2021,7,0,0,43,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,38,-9,-9,10,1,1,0,0,9,6,1,1,798,44065.375,0,0,0,0,0,0 +15373,18805,33505,-9,-9,33504,1,1,32,0,0,0,3,3,-9,0,3,7.4720964,7.3511496,0,0,0,-1141.2832,0,-9,3,2021,6,0,30,30,1,0,0,6.3549452,6.3549452,0,0,0,0,0,0,0,2,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,8,6,3,1,394,0,0,0,0,0,0,1983.7848 +15374,18806,33506,33508,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.9064188,7.4845757,0,6,-2,-15.016855,0,2,2,2021,12,0,39,37,1,0,0,7.4727592,7.4727592,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.28,52.09,60.02,56.42,6.666666666666667,1,1,0,0,7,5,5,1,511,607920.63,492860.88,64479.73,0,0,0,3369.1462 +15374,18806,33507,-9,33506,33508,1,1,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-997.09546,-9,2,2,2021,11,2,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,1,5,5,1,511,607920.63,492860.88,64479.73,0,0,0,3369.1462 +15374,18806,33508,33506,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,8.5568218,8.7068882,0,6,2,80.63562,0,2,2,2021,7,0,48,48,1,0,0,10.46308,10.46308,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,49.28,52.09,8.333333333333334,1,1,0,0,6,5,5,1,511,607920.63,492860.88,64479.73,0,0,0,3369.1462 +15375,18807,33509,33510,-9,-9,1,0,38,1,2,0,1,1,-9,0,4,8.3485651,8.1521406,0,9,3,6.9033518,0,2,2,2021,10,1,28,34,1,1,0,15.670132,15.670132,.05,.05,0,0,0,0,0,0,0,0,0,2.462343,0,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,12,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15375,18807,33510,33509,-9,-9,1,1,35,1,2,0,1,1,-9,0,4,8.9842567,9.0049801,0,9,-3,-171.62184,0,2,1,2021,6,0,45,45,1,0,0,16.628489,16.628489,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,57.16,56.15,8.333333333333334,1,1,0,0,11,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15375,18807,33511,-9,33509,33510,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1092.3942,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15375,18807,33512,-9,33509,33510,1,0,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-945.28552,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,789,258522.72,247341.44,291563.13,238248.02,3463.1563,0,3726.6704 +15376,18808,33513,-9,-9,-9,1,0,52,0,1,0,2,2,-9,0,5,5.9817657,6.2977805,4.7758288,0,0,-1103.9692,0,2,2,2021,10,0,8,8,1,0,0,5.5046363,5.5046363,0,0,0,0,0,0,0,0,1,0,1,5.0643568,4.9500079,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,7,2,1,1428,94349.336,0,0,0,0,0,1478.9744 +15376,18809,33514,-9,33513,-9,1,0,20,0,1,0,2,2,-9,0,4,7.3555379,7.4493947,0,0,0,-1061.3615,0,2,-9,2021,9,0,30,0,1,0,1,7.6540828,7.6540828,0,0,0,0,0,0,0,0,1,0,1,0,0,45.51,53.59,-9,-9,8.333333333333334,1,1,0,0,5,7,3,1,616,144041.56,0,0,0,4131.9521,0,-704.54437 +15377,18810,33515,-9,-9,-9,1,1,72,0,0,0,1,1,-9,0,4,0,6.8925695,6.8626685,0,0,-1043.4413,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,6.6791167,6.2723064,62.49,55.09,-9,-9,8.333333333333334,1,1,0,0,6,7,2,1,261,20986.16,29556.793,0,0,0,0,1849.9785 +15378,18811,33516,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.6540537,8.4097099,0,5,-16,-58.009033,0,2,2,2021,10,2,38,38,1,2,0,16.602821,16.602821,.05,.05,0,0,0,0,0,0,0,0,0,3.3126056,0,26.45,66.22,35.91,58.14,8.333333333333334,1,1,0,0,6,9,5,1,993,140080.64,16836.258,0,0,0,0,2060.2146 +15378,18812,33517,-9,-9,-9,1,1,41,0,0,0,1,1,-9,0,5,8.0677891,8.4418421,0,5,16,-16.547115,0,-9,-9,2021,11,1,37,37,1,1,0,8.1306543,8.1306543,0,0,.05,0,0,0,0,0,0,0,0,7.4191866,0,35.91,58.14,26.45,66.22,8.333333333333334,1,1,0,0,4,9,5,1,331,67868.688,-6761.9292,214554.91,93066.438,15460.998,0,2252.9688 +15379,18813,33518,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.3146381,8.3048973,0,0,0,-990.7865,0,3,2,2021,8,0,30,21,1,0,0,19.107275,19.107275,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.19,54.26,-9,-9,6.666666666666667,1,1,0,0,12,7,4,1,164,1294615.1,604492,288776.81,0,0,0,2158.9519 +15380,18814,33519,-9,-9,-9,1,0,55,0,0,0,3,3,-9,0,1,0,0,0,0,0,-994.70227,0,3,3,2021,20,0,0,0,4,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.36,20.96,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,367,-28133.727,0,0,0,0,797.83862,1020.942 +15381,18815,33520,33521,-9,-9,1,1,50,0,1,0,3,3,-9,0,3,7.5054069,7.6556582,0,20,6,29.681484,0,3,2,2021,8,0,40,40,1,0,0,5.8289037,5.8289037,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,35.4,44.5,6.666666666666667,1,1,0,0,11,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15381,18815,33521,33520,-9,-9,1,0,44,0,1,0,2,2,-9,0,2,7.8649993,7.5195556,0,20,-6,-44.357063,0,2,2,2021,12,1,40,40,1,1,0,5.759409,5.759409,.05,.05,0,0,0,0,0,0,1,1,0,0,0,35.4,44.5,52,54.51,5,1,1,0,0,10,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15381,18815,33522,-9,33521,33520,1,1,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1048.9473,0,2,3,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,8.333333333333334,1,1,0,0,1,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15381,18815,33523,-9,33521,33520,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-961.6142,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,9,3,1,678.25,699750.94,576226.31,188364.48,89474.719,0,0,2099.1572 +15382,18816,33524,-9,-9,-9,1,1,21,0,0,0,2,2,1,0,5,5.7992368,5.6262498,0,0,0,-919.80859,-9,2,-9,2021,6,0,12,0,1,0,0,3.1682599,3.1682599,0,0,0,0,0,0,0,2,1,1,0,0,0,57.06,57.76,-9,-9,10,3,4,0,0,1,6,2,1,273,-76722.828,0,0,0,0,0,1022.9741 +15383,18817,33525,33526,-9,-9,1,1,77,0,0,0,1,1,-9,0,2,0,7.8791065,7.7085471,56,-3,55.83683,0,3,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.74475801,7.8517604,35.28,53.3,38.39,48.48,6.666666666666667,1,1,0,0,0,12,3,1,648,656369.81,78328.797,484962.56,0,0,0,2606.759 +15383,18817,33526,33525,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,4.200727,3.7182672,56,3,-118.00031,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6286234,3.7629511,38.39,48.48,35.28,53.3,6.666666666666667,1,1,0,0,0,12,3,1,648,656369.81,78328.797,484962.56,0,0,0,2606.759 +15384,18818,33527,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,4,0,0,0,0,0,-1020.17,0,3,3,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9223197,0,53.44,55.06,-9,-9,8.333333333333334,1,1,0,0,0,10,1,1,989,64700.367,0,277822.59,0,0,0,940.68958 +15385,18819,33528,-9,-9,-9,1,1,70,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1062.1393,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,59.55,43.22,-9,-9,10,1,1,0,0,9,13,1,1,1957,123719.93,0,0,0,0,0,506.11264 +15386,18820,33529,33530,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,58,-3,-83.89061,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1751699,0,57.33,53.46,60.87,42.1,10,1,1,0,0,0,11,3,1,668,329124.19,177548.14,152698.25,0,0,0,2542.9624 +15386,18820,33530,33529,-9,-9,1,1,82,0,0,0,3,3,-9,0,4,0,8.0192041,7.8002048,58,3,-25.251041,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.9782019,7.8951316,60.87,42.1,57.33,53.46,10,1,1,0,0,0,11,3,1,668,329124.19,177548.14,152698.25,0,0,0,2542.9624 +15387,18821,33531,33532,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,0,8.6614075,8.825305,45,0,61.909256,0,3,3,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.9200354,54.13,48.04,50.01,52.64,8.333333333333334,1,1,0,0,2,5,5,1,769.5,723154.5,501840.44,158283.2,0,0,0,3357.5093 +15387,18821,33532,33531,-9,-9,1,0,63,0,0,0,3,3,-9,0,3,0,5.871294,5.9670095,45,0,31.641714,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,5.9193449,50.01,52.64,54.13,48.04,6.666666666666667,1,1,0,0,0,5,5,1,769.5,723154.5,501840.44,158283.2,0,0,0,3357.5093 +15388,18822,33533,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,8.6188936,8.3542862,0,0,-938.28058,0,2,2,2021,12,3,0,0,4,3,0,0,0,.05,.05,0,0,0,0,0,7,0,0,0,7.0036054,8.4118366,42.22,56.11,-9,-9,8.333333333333334,1,1,0,0,7,9,5,1,1820,439338.28,489672.28,182630.3,9442.3037,0,3601.7783,3446.9578 +15388,18823,33534,-9,33533,-9,1,1,23,0,0,0,2,2,-9,0,4,7.7963581,7.6789732,0,0,0,-977.05133,-9,2,-9,2021,7,0,50,0,1,0,0,5.0760293,5.0760293,0,0,0,0,0,0,0,0,0,0,0,.18385194,0,51.81,57.22,-9,-9,5,1,1,0,0,2,9,3,1,2859,17114.436,0,0,0,0,0,1296.9795 +15389,18824,33535,33536,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,0,0,10,-6,70.926147,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.74,39.79,60.7,42.48,8.333333333333334,1,1,0,0,0,13,2,1,1615.5,472263.94,241035.09,110171.04,0,0,0,2283.7158 +15389,18824,33536,33535,-9,-9,1,1,74,0,0,0,3,3,-9,0,3,0,6.8619547,6.8352261,10,6,-35.843746,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2300253,60.7,42.48,39.74,39.79,8.333333333333334,1,1,0,0,3,13,2,1,1615.5,472263.94,241035.09,110171.04,0,0,0,2283.7158 +15389,18825,33537,-9,33535,33536,1,1,40,0,0,0,3,3,-9,1,3,0,0,0,0,0,-1002.2141,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.64,54.12,-9,-9,5,1,1,1,0,0,13,1,1,163,51339.285,0,0,0,0,0,-76.926491 +15390,18826,33538,33539,-9,-9,1,1,71,0,0,0,2,2,-9,0,2,0,7.3633318,7.6810389,46,5,-127.52551,0,-9,-9,2021,18,6,0,0,4,6,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.8752625,7.3512349,36.28,44.53,51,46,6.666666666666667,1,1,0,0,0,5,2,1,452.5,331998.63,123548.22,168267.41,0,0,0,2120.3633 +15390,18826,33539,33538,-9,-9,1,0,66,0,0,0,3,3,-9,0,3,0,0,0,46,-5,-45.261646,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.5907927,0,51,46,36.28,44.53,7,1,1,0,0,0,5,2,1,452.5,331998.63,123548.22,168267.41,0,0,0,2120.3633 +15391,18827,33540,-9,-9,-9,1,1,75,0,0,0,3,3,-9,0,3,0,7.6848202,7.8118439,0,0,-801.65009,0,3,3,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,7.5946026,7.7819996,50.57,52.35,-9,-9,10,1,1,0,0,0,10,3,1,1128,345330.38,226913.31,0,0,0,0,3170.9915 +15392,18828,33541,33542,-9,-9,1,1,74,0,0,0,3,3,-9,0,4,0,6.334774,6.1574693,51,3,36.994724,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.4489317,6.3308988,61.26,51.57,58.74,40.91,10,1,1,0,0,5,6,2,1,313.5,1587818.4,210099.75,918089.38,0,4085.0962,0,2004.8827 +15392,18828,33542,33541,-9,-9,1,0,71,0,0,0,2,2,-9,0,2,0,6.6622143,6.5311942,51,-3,-120.96571,0,2,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,.038983494,0,0,1,1,0,7.2556801,6.6880898,58.74,40.91,61.26,51.57,8.333333333333334,1,1,0,0,0,6,2,1,313.5,1587818.4,210099.75,918089.38,0,4085.0962,0,2004.8827 +15393,18829,33543,33544,-9,-9,1,1,49,0,0,0,2,2,-9,0,3,8.5332346,8.9960051,0,25,6,59.352856,0,3,3,2021,7,0,45,44,1,0,0,10.800984,10.800984,.05,.05,.05,0,0,0,0,0,0,0,0,4.352879,0,64.83,34.85,54.2,57.49,8.333333333333334,1,1,0,0,10,9,5,1,905.5,381077.94,220267.91,274222.38,88938.563,0,0,4374.6523 +15393,18829,33544,33543,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,9.2034197,9.2213726,0,25,-6,47.007397,0,2,3,2021,11,2,45,45,1,2,0,27.189449,27.189449,0,0,0,0,0,0,0,0,0,0,0,4.5295544,0,54.2,57.49,64.83,34.85,8.333333333333334,1,1,0,0,10,9,5,1,905.5,381077.94,220267.91,274222.38,88938.563,0,0,4374.6523 +15394,18830,33545,-9,-9,-9,1,0,70,0,1,0,2,2,-9,0,2,0,7.0340824,7.2873316,0,0,-1101.6079,0,-9,-9,2021,25,11,0,0,4,11,0,0,0,0,0,0,1,0,17.345375,0,0,1,1,0,0,7.1139007,22.54,34.78,-9,-9,5,1,1,0,0,0,12,2,1,964,274297.66,70665.305,0,0,0,0,1031.9678 +15394,18831,33546,33548,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,8.3805418,8.2520123,0,4,6,2.5103879,0,2,2,2021,13,2,40,40,1,2,0,14.206964,14.206964,.05,.05,0,0,0,0,0,2,1,1,0,0,0,52.57,42.37,40.58,60.95,6.666666666666667,1,1,0,1,11,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15394,18831,33547,-9,33548,33546,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1084.882,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15394,18831,33548,33546,33545,-9,1,0,40,0,1,0,2,2,-9,0,4,8.6182737,8.8211145,0,4,-6,7.2212424,0,2,1,2021,10,3,42,43,1,3,0,14.714957,14.714957,.05,.05,0,0,0,0,0,42,1,1,0,0,0,40.58,60.95,52.57,42.37,8.333333333333334,1,1,0,0,11,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15394,18831,33549,-9,33548,33546,1,0,16,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1008.0745,-9,2,2,2021,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.51,37.55,-9,-9,10,1,1,0,0,3,12,5,1,1751.25,1671508.5,1480022.1,124343.31,4783.3872,0,0,4069.1909 +15395,18832,33550,-9,-9,-9,1,1,46,0,0,0,3,3,-9,0,4,7.4512467,7.3213124,0,0,0,-950.59528,0,-9,-9,2021,4,1,40,30,1,1,0,5.1738343,5.1738343,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,1,3,8,3,0,1828,0,0,0,0,0,0,1145.302 +15396,18833,33551,33552,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.7414045,6.3727446,3,-1,104.33253,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.3296256,6.6487203,54.2,57.49,57.06,57.76,10,1,1,0,0,10,11,4,1,145.5,318403.84,-4198.6914,138742.55,-4216.6416,0,0,3229.3755 +15396,18833,33552,33551,-9,-9,1,1,59,0,0,0,1,1,-9,0,5,0,8.3696795,8.2710972,3,1,35.79174,0,3,2,2021,5,0,0,0,4,0,0,0,0,.05,.05,.05,0,0,0,0,0,0,0,0,6.5379372,8.2616167,57.06,57.76,54.2,57.49,8.333333333333334,1,1,0,0,6,11,4,1,145.5,318403.84,-4198.6914,138742.55,-4216.6416,0,0,3229.3755 +15397,18834,33553,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,4,0,0,0,0,0,-954.25946,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,-9,-9,10,1,1,0,0,0,11,1,1,1935,135321.53,0,0,0,0,0,613.04999 +15398,18835,33554,33555,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.6235681,8.3259239,7.5555282,38,0,36.391449,0,2,2,2021,12,0,39,39,1,0,0,5.4465814,5.4465814,.05,.05,0,0,0,0,0,0,0,0,0,0,7.5094132,46.39,60.99,48.87,58.55,8.333333333333334,1,1,0,0,14,1,4,1,210.5,360701.47,74554.797,297925.13,0,0,0,2275.2339 +15398,18835,33555,33554,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,7.5416598,7.8983488,0,38,0,31.554661,0,3,2,2021,10,1,35,33,1,1,0,7.7739387,7.7739387,0,0,0,0,0,0,0,14.5,0,0,0,0,0,48.87,58.55,46.39,60.99,8.333333333333334,1,1,0,0,14,1,4,1,210.5,360701.47,74554.797,297925.13,0,0,0,2275.2339 +15398,18836,33556,-9,33555,33554,1,0,33,0,0,0,2,2,-9,0,3,7.896235,8.1981249,0,0,0,-1054.2701,0,2,2,2021,13,1,50,42,1,1,1,9.0614166,9.0614166,0,0,0,0,0,0,0,0,0,0,0,2.1295156,0,46.92,54.3,-9,-9,6.666666666666667,1,1,0,0,14,1,4,1,661,22209.379,49862.133,0,0,1588.5507,1820.2263,981.41205 +15399,18837,33557,33558,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,6.7649179,6.7445512,51,0,130.0986,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9674206,6.9036765,57.63,46.42,56.57,57.78,6.666666666666667,1,1,0,0,4,2,3,1,393.5,724663.5,352493.56,313123.75,0,0,0,3026.2534 +15399,18837,33558,33557,-9,-9,1,0,72,0,0,0,2,2,-9,0,4,0,6.8027453,6.9929409,51,0,69.177635,0,3,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1091604,7.1665463,56.57,57.78,57.63,46.42,10,1,1,0,0,7,2,3,1,393.5,724663.5,352493.56,313123.75,0,0,0,3026.2534 +15400,18838,33559,33560,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,0,0,52,1,-55.720272,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0446792,0,53,47,24.64,34.86,7,1,1,0,0,0,6,2,1,329,179175.05,136633.34,0,0,-213.16626,0,1703.98 +15400,18838,33560,33559,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,5.7679629,5.5032797,52,-1,73.150627,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,3.3970389,0,0,1,1,0,0,5.7533708,24.64,34.86,53,47,1.666666666666667,1,1,0,0,4,6,2,1,329,179175.05,136633.34,0,0,-213.16626,0,1703.98 +15401,18839,33561,-9,-9,-9,1,1,82,0,0,0,3,3,-9,0,2,0,7.243525,6.949223,0,0,-1049.3735,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.0470858,60.83,37.28,-9,-9,8.333333333333334,1,1,0,0,0,13,3,1,267,227894.44,116592.74,0,0,0,0,2158.5271 +15402,18840,33562,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,3,0,5.8598752,6.0792189,0,0,-950.3139,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7482448,45.12,45.4,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,995,272302.69,64427.008,177713.09,40776.227,0,0,1505.8497 +15403,18841,33563,33564,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,7.938262,7.7271571,0,32,10,-54.015778,0,2,1,2021,11,0,40,39,1,0,0,7.6151428,7.6151428,0,0,0,0,0,0,0,0,0,0,0,0,0,51.39,48.13,45.31,45.17,5,1,1,0,0,11,7,5,1,737.5,583103.38,76186.641,320024.81,0,0,8658.0234,2680.9438 +15403,18841,33564,33563,-9,-9,1,0,54,0,0,0,1,1,-9,0,3,8.6674938,8.0614853,0,32,-10,-20.356611,0,2,2,2021,10,0,43,43,1,0,0,11.17888,11.17888,0,0,0,0,0,0,0,0,0,0,0,0,0,45.31,45.17,51.39,48.13,8.333333333333334,1,1,0,0,13,7,5,1,737.5,583103.38,76186.641,320024.81,0,0,8658.0234,2680.9438 +15403,18842,33565,-9,33564,33563,1,1,23,0,0,0,2,2,0,0,3,0,0,0,0,0,-1043.3958,-9,1,1,2021,13,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,55.3,-9,-9,6.666666666666667,1,1,0,0,4,7,1,1,578,-43828.992,0,0,0,0,0,-705.48938 +15404,18843,33566,33567,-9,-9,1,1,47,0,0,0,1,1,-9,0,1,0,0,0,1,5,0,-9,-9,-9,2021,33,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,19.4,26.58,38.42,15.04,0,1,1,0,1,0,1,1,0,332,967518.13,607611.19,143162.92,13321.973,3136.6323,0,2066.803 +15404,18843,33567,33566,-9,-9,1,0,42,0,0,0,3,3,-9,1,1,0,0,0,1,-5,0,-9,3,-9,2021,26,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,38.42,15.04,19.4,26.58,1.666666666666667,1,1,0,0,0,1,1,0,332,967518.13,607611.19,143162.92,13321.973,3136.6323,0,2066.803 +15404,18843,33568,-9,33567,-9,1,1,17,0,0,1,3,0,-9,0,3,0,0,0,0,0,-962.22076,-9,3,-9,2021,21,8,0,0,2,8,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,30.28,50.97,-9,-9,5,1,1,0,0,0,1,1,0,332,967518.13,607611.19,143162.92,13321.973,3136.6323,0,2066.803 +15405,18844,33569,33570,-9,-9,1,1,34,0,0,0,2,2,-9,0,4,8.2250309,8.1280565,0,1,-2,28.695459,-9,-9,-9,2021,10,0,37,0,1,1,0,8.8903933,8.8903933,0,0,0,0,0,0,0,0,0,0,0,0,0,50,57,46.5,58.26,7,4,1,0,0,1,1,4,1,380,28253.598,0,37576.156,51555.859,0,0,2627.7446 +15405,18844,33570,33569,-9,-9,1,0,36,0,0,0,1,1,-9,0,4,8.0363894,7.9185901,0,1,2,38.588654,0,2,2,2021,6,0,38,37,1,0,0,10.938855,10.938855,0,0,0,0,0,0,0,0,0,0,0,0,0,46.5,58.26,50,57,8.333333333333334,1,1,0,0,7,1,4,1,380,28253.598,0,37576.156,51555.859,0,0,2627.7446 +15406,18845,33571,33572,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,9.2131538,9.0277586,0,10,-1,59.420971,0,2,1,2021,5,0,46,46,1,0,0,17.840185,17.840185,.05,.05,0,0,0,0,0,0,0,0,0,5.9515085,0,57.16,56.15,51.83,57.2,8.333333333333334,1,1,0,0,13,9,4,1,707.33331,266573.56,102555.48,0,0,0,0,3550.0496 +15406,18845,33572,33571,-9,-9,1,0,37,1,1,0,1,1,-9,0,4,1.3753715,1.1254935,0,10,1,5.3814902,0,-9,-9,2021,12,0,4,4,1,0,0,.073936671,.073936671,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,1,1,0,0,9,9,4,1,707.33331,266573.56,102555.48,0,0,0,0,3550.0496 +15406,18845,33573,-9,33572,33571,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-971.47614,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,9,4,1,707.33331,266573.56,102555.48,0,0,0,0,3550.0496 +15407,18846,33574,-9,33575,33576,1,0,51,0,0,0,2,2,-9,0,3,7.6705952,8.26756,0,0,0,-927.9054,0,3,3,2021,11,1,40,35,1,1,0,8.8668127,8.8668127,0,0,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,-9,-9,5,1,1,0,0,7,6,3,1,277,87976.164,175347.86,146693.16,136637.7,0,0,604.78265 +15407,18847,33575,33576,-9,-9,1,0,82,0,0,0,3,3,-9,0,2,0,0,0,2,-2,-95.91391,0,-9,-9,2021,8,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,55.71,27.24,57.35,40.21,6.666666666666667,1,1,0,0,0,6,2,1,633.5,8819.4355,0,164665.69,-6548.4795,0,0,1789.0481 +15407,18847,33576,33575,-9,-9,1,1,84,0,0,0,2,2,-9,0,2,0,2.9724669,2.8845832,2,2,-66.724327,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,120,1,1,0,3.4125242,3.1482396,57.35,40.21,55.71,27.24,6.666666666666667,1,1,0,0,0,6,2,1,633.5,8819.4355,0,164665.69,-6548.4795,0,0,1789.0481 +15408,18848,33577,33578,-9,-9,1,0,52,0,0,0,1,1,-9,0,4,8.5234394,8.5794363,0,29,1,-43.524216,0,2,2,2021,8,0,38,38,1,0,0,15.218239,15.218239,0,0,0,0,0,0,0,0,0,0,0,0,0,61.12,51.57,57.06,57.76,6.666666666666667,1,1,0,0,8,12,4,1,372.5,678968.75,282285.88,282660.47,43333.887,0,0,1352.3466 +15408,18848,33578,33577,-9,-9,1,1,51,0,0,0,2,2,-9,0,5,6.394578,6.2514954,0,29,-1,103.23734,0,2,3,2021,8,0,70,70,1,0,0,1.0442449,1.0442449,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,61.12,51.57,8.333333333333334,1,1,0,0,10,12,4,1,372.5,678968.75,282285.88,282660.47,43333.887,0,0,1352.3466 +15408,18849,33579,-9,33577,33578,1,0,23,0,0,0,2,2,-9,0,4,6.9976807,6.9980464,0,0,0,-964.50531,0,1,2,2021,8,0,25,26,1,0,1,7.1404376,7.1404376,0,0,0,0,0,0,0,0,0,0,0,0,0,56.18,53.85,-9,-9,8.333333333333334,1,1,0,0,6,12,3,1,1206,-16803.82,0,0,0,0,0,1470.4012 +15408,18850,33580,-9,33577,33578,1,1,19,0,0,0,2,2,1,0,5,7.3562031,7.1772223,0,0,0,-935.40216,-9,1,2,2021,5,0,38,0,1,0,1,3.6875131,3.6875131,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.05,54.52,-9,-9,8.333333333333334,1,1,0,0,1,12,3,1,189,48035.418,-5790.8306,0,0,0,0,459.84137 +15409,18851,33581,-9,-9,-9,1,1,29,0,0,0,1,1,-9,0,5,8.5570345,8.6947718,0,0,0,-1121.6201,-9,-9,-9,2021,6,0,37,0,1,0,0,24.104092,24.104092,.05,.05,0,0,0,0,0,0,0,0,0,6.8473363,0,62.39,56.71,-9,-9,10,1,1,0,0,12,4,5,1,397,70983.648,-27064.016,129554.69,79446.555,0,0,3670.1672 +15410,18852,33582,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,6.7963514,6.9316773,0,0,-993.58405,0,3,2,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5799956,7.026679,45.58,47.97,-9,-9,8.333333333333334,1,1,0,0,0,8,2,1,548,409322.56,0,457116.31,0,0,0,382.81512 +15411,18853,33583,33584,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,0,0,59,2,0,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2129929,0,58.32,50.22,54.2,57.49,8.333333333333334,1,1,0,0,0,2,1,1,1053.5,112153.48,0,0,0,793.31604,1423.2706,1987.5391 +15411,18853,33584,33583,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,0,0,59,-2,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.28632417,0,54.2,57.49,58.32,50.22,10,1,1,0,0,3,2,1,1,1053.5,112153.48,0,0,0,793.31604,1423.2706,1987.5391 +15412,18854,33585,-9,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,0,4.0146289,4.2005639,0,0,-885.74109,0,2,1,2021,11,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1314101,3.8848209,41.61,16.05,-9,-9,8.333333333333334,1,1,0,0,0,5,2,0,365,22480.027,103971.7,0,0,0,0,126.60363 +15413,18855,33586,33587,-9,-9,1,1,60,0,0,0,3,3,-9,0,1,8.2735653,8.4621267,7.0320244,31,-2,65.815193,0,2,3,2021,14,4,38,36,1,4,0,8.2715626,8.2715626,0,0,0,0,0,0,0,0,1,1,0,4.0817318,7.4690366,50.63,46.26,46.39,37.05,8.333333333333334,1,1,0,0,11,2,4,1,1650,1285207.6,355385.72,221956.73,0,0,0,2044.4102 +15413,18855,33587,33586,-9,-9,1,0,62,0,0,0,3,3,-9,1,2,0,0,0,31,2,18.964947,0,3,3,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.39,37.05,50.63,46.26,8.333333333333334,1,1,0,0,0,2,4,1,1650,1285207.6,355385.72,221956.73,0,0,0,2044.4102 +15414,18856,33588,33589,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,6.7481985,7.0293241,9,8,-85.617371,0,1,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.9316912,6.8097467,46.63,59.72,51,49,8.333333333333334,1,1,0,0,0,7,5,1,1342.5,1747405.5,1037234.9,478850.56,0,937.0047,0,4927.7222 +15414,18856,33589,33588,-9,-9,1,1,62,0,0,0,2,2,-9,0,3,8.6657763,8.8558607,0,9,-8,-55.761189,-9,-9,-9,2021,10,0,10,0,1,1,0,77.456436,77.456436,.05,.05,0,0,0,0,.51345539,0,1,1,0,0,0,51,49,46.63,59.72,7,1,1,0,0,1,7,5,1,1342.5,1747405.5,1037234.9,478850.56,0,937.0047,0,4927.7222 +15415,18857,33590,33591,-9,-9,1,0,30,0,2,0,2,2,-9,0,4,7.9351301,8.1430855,0,12,-2,-147.53584,0,2,2,2021,12,0,45,30,1,0,0,7.5269208,7.5269208,0,0,0,0,0,0,0,0,1,1,0,0,0,55.91,47.11,39.08,53.85,8.333333333333334,1,1,0,0,6,9,3,0,335.33334,30275.322,-6593.9082,0,0,-246.24326,667.41418,1856.8409 +15415,18857,33591,33590,-9,-9,1,1,32,0,2,0,2,2,-9,0,3,0,0,0,12,2,-67.973663,0,-9,-9,2021,12,0,0,30,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.08,53.85,55.91,47.11,6.666666666666667,1,1,1,0,9,9,3,0,335.33334,30275.322,-6593.9082,0,0,-246.24326,667.41418,1856.8409 +15415,18857,33592,-9,33590,33591,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.1328,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,3,0,335.33334,30275.322,-6593.9082,0,0,-246.24326,667.41418,1856.8409 +15416,18858,33593,33594,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.3361044,8.1558952,0,5,0,54.976822,0,-9,-9,2021,7,0,50,56,1,0,0,9.6679678,9.6679678,.05,.05,0,0,0,0,0,0,0,0,0,0,0,43.73,59.7,46.16,58.62,8.333333333333334,1,1,0,0,4,5,5,1,1308.5,229926.73,129807.3,0,0,1052.5686,16150.24,3389.3743 +15416,18858,33594,33593,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,8.7903261,8.6729994,0,5,0,41.217342,0,-9,-9,2021,12,0,52,50,1,0,0,12.813171,12.813171,0,0,0,0,0,0,0,0,0,0,0,0,0,46.16,58.62,43.73,59.7,6.666666666666667,1,1,0,0,11,5,5,1,1308.5,229926.73,129807.3,0,0,1052.5686,16150.24,3389.3743 +15417,18859,33595,33596,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,8.7321444,8.5077572,43,-4,107.08144,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7055445,8.646306,44.6,52.77,55.79,52.62,10,1,1,0,0,0,12,5,1,617.5,839338.19,677308.19,109210.55,0,0,0,6840.1929 +15417,18859,33596,33595,-9,-9,1,1,70,0,0,0,2,2,-9,0,4,0,8.5846167,8.5772524,43,4,4.9651942,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6914864,8.5549288,55.79,52.62,44.6,52.77,10,1,1,0,0,0,12,5,1,617.5,839338.19,677308.19,109210.55,0,0,0,6840.1929 +15418,18860,33597,33598,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,7.9084239,7.4930415,48,-2,-73.205559,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.864778,7.5638299,50.55,42.75,46,36,10,1,1,0,0,15,9,4,1,722.5,1378709,823103.38,274666.69,0,0,0,3921.8838 +15418,18860,33598,33597,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,8.0264254,8.2500706,48,2,76.198738,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2564287,46,36,50.55,42.75,6.666666666666667,2,3,0,0,0,9,4,1,722.5,1378709,823103.38,274666.69,0,0,0,3921.8838 +15419,18861,33599,33600,-9,-9,1,1,34,0,0,0,1,1,-9,0,3,8.5163946,8.8485794,0,6,-1,-30.659216,0,1,2,2021,12,0,38,38,1,0,0,17.586548,17.586548,.05,.05,0,0,0,0,0,0,0,0,0,2.8702774,0,39.1,57.79,52.23,55.6,3.333333333333333,4,5,0,0,5,8,5,1,570.5,110127.47,65134.766,0,0,0,0,3770.311 +15419,18861,33600,33599,-9,-9,1,0,35,0,0,0,1,1,-9,0,4,8.4636135,8.5609055,0,6,1,111.88526,0,1,1,2021,5,0,20,35,1,0,0,25.424608,25.424608,0,0,0,0,0,0,0,0,0,0,0,0,0,52.23,55.6,39.1,57.79,8.333333333333334,4,5,0,0,7,8,5,1,570.5,110127.47,65134.766,0,0,0,0,3770.311 +15420,18862,33601,33602,-9,-9,1,0,57,0,0,0,1,1,-9,0,5,8.1013689,8.2453661,0,31,-11,43.20739,0,2,3,2021,6,0,21,23,1,0,0,22.049067,22.049067,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,61.01,53.18,8.333333333333334,1,1,0,0,11,12,4,1,1910,849717,755246.25,0,0,0,1230.5944,2596.002 +15420,18862,33602,33601,-9,-9,1,1,68,0,0,0,1,1,-9,0,5,0,7.1156421,7.2687812,11,11,95.43679,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3595443,7.1121659,61.01,53.18,60.02,56.42,10,1,1,0,0,5,12,4,1,1910,849717,755246.25,0,0,0,1230.5944,2596.002 +15421,18863,33603,33604,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,0,7.9681945,7.5569286,28,11,-94.590088,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,14.5,1,1,0,3.8352916,7.8468056,54.13,48.04,52,54.51,6.666666666666667,1,1,0,0,9,9,5,1,597,1701026.3,901955.25,842222.81,55527.637,0,1396.8927,4766.4023 +15421,18863,33604,33603,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,8.4238958,8.549922,0,7,-11,-51.561302,0,-9,-9,2021,12,0,42,38,1,0,0,12.243245,12.243245,0,0,0,0,0,0,0,7,1,1,0,3.1879809,0,52,54.51,54.13,48.04,5,1,1,0,0,12,9,5,1,597,1701026.3,901955.25,842222.81,55527.637,0,1396.8927,4766.4023 +15422,18864,33605,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,6.8804922,6.8765216,0,0,0,-1011.0614,0,-9,-9,2021,11,0,40,35,1,0,0,2.8333521,2.8333521,0,0,0,0,0,0,0,2,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,5,10,2,0,2844,127707.48,0,0,0,0,0,795.77606 +15423,18865,33606,-9,-9,-9,1,0,81,0,0,0,2,2,-9,0,2,0,7.0671244,7.0442519,0,0,-1029.9658,0,3,3,2021,19,7,0,0,4,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8189974,6.8484759,37.84,27.36,-9,-9,6.666666666666667,1,1,0,0,0,4,2,0,1196,212098.64,-37821.266,87262.313,0,0,0,108.23327 +15424,18866,33607,33609,-9,-9,1,0,32,1,4,0,2,2,-9,0,3,0,5.2689719,5.6911354,2,-1,84.70874,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,4.894908,0,37.69,58.7,49.12,57.28,8.333333333333334,1,1,1,0,3,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15424,18866,33608,-9,33607,33609,1,1,1,1,4,1,3,0,-9,0,4,0,0,0,0,0,-946.86377,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15424,18866,33609,33607,-9,-9,1,1,33,1,4,0,2,2,-9,0,4,8.2675486,8.4382601,0,2,1,59.414642,0,-9,-9,2021,12,1,46,42,1,1,0,9.7638359,9.7638359,.05,.05,0,0,0,0,0,0,1,0,1,0,0,49.12,57.28,37.69,58.7,8.333333333333334,1,1,0,0,1,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15424,18866,33610,-9,33607,33609,1,0,6,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.835,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,7,3,0,727.5,20969.781,8886.6113,0,0,0,0,2972.4246 +15425,18867,33611,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,7.662487,8.2568436,7.2923613,0,0,-1021.5953,0,2,3,2021,15,3,34,32,1,3,0,7.7916818,7.7916818,0,0,0,0,0,0,0,0,0,0,0,.63427591,7.4788399,45.6,47.95,-9,-9,6.666666666666667,1,1,0,0,13,2,4,1,233,639554.69,369799.78,0,0,0,0,2168.7488 +15425,18868,33612,-9,33611,-9,1,0,27,0,0,0,1,1,-9,0,4,8.1729689,7.8975015,2.6198287,0,0,-993.70612,0,1,-9,2021,11,0,35,35,1,0,1,9.3810577,9.3810577,.05,.05,0,0,0,0,0,0,0,0,0,2.9585423,0,48.87,58.55,-9,-9,6.666666666666667,1,1,0,0,4,2,4,1,183,38007.715,-33589.973,0,0,0,0,1165.2594 +15426,18869,33613,-9,-9,-9,1,0,24,0,0,0,2,2,-9,0,4,8.1159649,7.9239073,0,0,0,-1018.7231,0,2,3,2021,3,0,38,40,1,0,0,8.8198347,8.8198347,.05,.05,0,0,0,0,0,2,0,0,0,0,0,62.49,55.09,-9,-9,10,1,1,0,0,8,7,4,0,920,168776.47,26180.754,0,0,0,0,2173.3696 +15427,18870,33614,-9,-9,-9,1,1,43,0,0,0,2,2,-9,1,1,0,0,0,0,0,-958.81824,0,2,-9,2021,34,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.28,26.5,-9,-9,0,1,1,1,1,3,11,1,0,274,125921.88,0,0,0,0,0,1234.1849 +15428,18871,33615,33616,-9,-9,1,0,73,0,0,0,1,1,-9,0,4,0,7.0304632,7.0611806,32,0,55.052151,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3867064,6.7574124,53.9,52.09,54.2,57.49,8.333333333333334,1,1,0,0,0,1,4,1,3030,2127766,1037237.8,154268.84,0,0,0,5011.7295 +15428,18871,33616,33615,-9,-9,1,1,73,0,0,0,1,1,-9,0,4,0,8.6707478,8.3776598,32,0,62.195141,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.8651562,54.2,57.49,53.9,52.09,8.333333333333334,1,1,0,0,6,1,4,1,3030,2127766,1037237.8,154268.84,0,0,0,5011.7295 +15429,18872,33617,-9,-9,-9,1,0,56,1,2,0,3,3,-9,1,1,0,0,0,0,0,-1047.8301,0,3,3,2021,23,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41.37,21.72,-9,-9,1.666666666666667,1,1,0,0,0,13,1,0,225,-116597.27,-25781.023,0,0,0,0,1644.491 +15429,18873,33618,-9,33620,33619,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-886.1969,-9,3,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,61,-9,-9,6,1,1,-9,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15429,18873,33619,33620,33617,-9,1,1,32,1,2,0,3,3,-9,1,2,0,0,0,3,2,0,0,3,3,2021,18,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,14.5,1,0,1,0,0,32.18,48.12,49,59,5,1,1,0,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15429,18873,33620,33619,-9,-9,1,0,30,1,2,0,3,3,-9,0,5,0,0,0,3,-2,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,49,59,32.18,48.12,8.333333333333334,1,1,0,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15429,18873,33621,-9,33620,33619,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1122.7631,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,13,1,0,1353,137838.02,0,207907.72,0,0,0,1017.9825 +15430,18874,33622,33623,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,0,0,10,3,44.657475,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.7624818,0,52,45,60.46,18.23,8,1,1,0,0,0,2,2,1,1084,295441.38,267495.78,119030.12,2135.2219,3038.7168,4661.5635,2155.9331 +15430,18874,33623,33622,-9,-9,1,1,79,0,0,0,2,2,-9,0,1,0,7.6286621,7.5366144,57,-3,-15.450373,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,.46849191,0,1,1,0,.89308435,7.3826194,60.46,18.23,52,45,8.333333333333334,1,1,0,0,0,2,2,1,1084,295441.38,267495.78,119030.12,2135.2219,3038.7168,4661.5635,2155.9331 +15431,18875,33624,-9,-9,-9,1,1,87,0,0,0,3,3,-9,0,2,0,7.7081509,7.3992715,0,0,-1001.5347,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.8291187,7.496026,61.27,41.18,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,612,246697.8,141891.97,225578.83,0,0,0,1933.8129 +15432,18876,33625,33626,-9,-9,1,1,72,0,0,0,3,3,-9,0,2,0,6.0196977,6.4472561,9,5,-24.060675,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.3631649,6.4356637,58.1,28.75,34.69,21.98,8.333333333333334,1,1,0,0,0,2,2,1,834.5,402193.06,156363.06,81962.641,0,0,0,1405.4368 +15432,18876,33626,33625,-9,-9,1,0,67,0,0,0,3,3,-9,0,1,0,0,0,9,-5,5.3738518,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,0,7.585845,0,0,1,1,0,0,0,34.69,21.98,58.1,28.75,3.333333333333333,1,1,0,1,0,2,2,1,834.5,402193.06,156363.06,81962.641,0,0,0,1405.4368 +15433,18877,33627,-9,-9,-9,1,0,33,0,2,0,2,2,-9,0,3,6.4786382,6.6950407,0,0,0,-1036.6818,0,3,3,2021,12,0,16,16,1,0,0,5.6140356,5.6140356,0,0,0,0,0,0,0,0,1,1,0,0,0,43.84,58.37,-9,-9,8.333333333333334,1,1,0,0,1,12,2,0,642,11492.456,0,0,0,666.6731,0,1631.8788 +15433,18877,33628,-9,33627,-9,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.4781,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,12,2,0,642,11492.456,0,0,0,666.6731,0,1631.8788 +15433,18877,33629,-9,33627,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-947.39124,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,12,2,0,642,11492.456,0,0,0,666.6731,0,1631.8788 +15434,18878,33630,33631,-9,-9,1,1,64,0,0,0,1,1,-9,0,3,8.7994785,8.807559,0,33,3,45.294949,0,2,2,2021,10,0,12,20,1,1,0,44.66724,44.66724,.05,.05,0,0,0,0,0,0,0,0,0,1.5117352,0,52,47,57.06,57.76,7,1,1,0,0,1,11,5,1,614,1332697,1167400.5,298165.94,184496.11,0,0,3382.2224 +15434,18878,33631,33630,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,7.3021154,7.4823155,0,35,-3,-1.6926991,0,2,2,2021,12,0,25,28,1,0,0,7.5166483,7.5166483,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,52,47,8.333333333333334,1,1,0,0,8,11,5,1,614,1332697,1167400.5,298165.94,184496.11,0,0,3382.2224 +15435,18879,33632,33633,-9,-9,1,0,52,0,0,0,2,2,-9,0,1,0,0,0,28,3,-111.77444,0,2,2,2021,20,7,0,16,4,7,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.76,34.6,57.06,57.76,6.666666666666667,1,1,0,0,13,4,3,1,441.5,908856.44,23755.285,420309.38,0,15365.699,12228.856,2103.5466 +15435,18879,33633,33632,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.119051,8.3872929,0,28,-3,39.961906,0,2,-9,2021,10,0,42,37,1,0,0,10.80382,10.80382,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,57.06,57.76,39.76,34.6,10,1,1,0,0,13,4,3,1,441.5,908856.44,23755.285,420309.38,0,15365.699,12228.856,2103.5466 +15435,18880,33634,-9,33632,33633,1,1,30,0,0,0,2,2,-9,0,3,7.9182715,8.0040207,0,0,0,-1084.4745,0,2,2,2021,12,0,45,40,1,0,1,8.0126791,8.0126791,0,0,0,0,0,0,0,0,0,0,0,0,0,40.89,46.15,-9,-9,1.666666666666667,1,1,0,0,8,4,4,1,109,-31963.922,0,107499.75,91817.406,0,0,1066.3553 +15436,18881,33635,-9,-9,-9,1,1,86,0,0,0,1,1,-9,0,5,0,7.7267256,7.6614885,0,0,-1016.9586,0,2,2,2021,17,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.1591592,7.7478342,39.89,64.2,-9,-9,5,1,1,0,0,0,9,3,1,681,555406.81,106092.82,381724.94,0,0,0,1293.5786 +15437,18882,33636,33637,-9,-9,1,0,57,0,0,0,2,2,-9,0,4,6.6591125,6.9490938,0,7,-1,66.982834,0,3,3,2021,7,0,13,13,1,0,0,7.8188882,7.8188882,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,58.15,52.91,8.333333333333334,1,1,0,0,8,6,3,1,2271.5,653222.5,274857.84,182631.03,48083.063,0,-96.474869,1572.9497 +15437,18882,33637,33636,-9,-9,1,1,58,0,0,0,2,2,-9,0,4,7.788547,8.074048,4.3824334,7,1,32.687065,0,3,3,2021,6,0,40,40,1,0,0,8.750679,8.750679,.05,.05,0,0,0,0,0,0,0,0,0,0,4.6623073,58.15,52.91,57.16,56.15,8.333333333333334,1,1,0,0,8,6,3,1,2271.5,653222.5,274857.84,182631.03,48083.063,0,-96.474869,1572.9497 +15438,18883,33638,33639,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,8.3599453,8.7166319,0,9,-2,109.43266,0,-9,-9,2021,15,4,37,37,1,4,0,16.646637,16.646637,.05,.05,.05,0,0,0,0,0,0,0,0,3.6049283,0,36.16,53.39,36.08,60.5,3.333333333333333,1,1,0,0,14,9,5,1,606.5,1803606.3,456538.38,1267078.4,206519.81,0,0,3669.2617 +15438,18883,33639,33638,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,8.8834782,8.6541052,0,9,2,-103.68649,0,3,3,2021,23,11,38,38,1,11,0,19.0364,19.0364,0,0,0,0,0,0,0,0,0,0,0,5.2189698,0,36.08,60.5,36.16,53.39,6.666666666666667,1,1,0,0,9,9,5,1,606.5,1803606.3,456538.38,1267078.4,206519.81,0,0,3669.2617 +15439,18884,33640,33641,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.3998604,7.3319917,0,16,-8,-121.53391,0,3,3,2021,8,0,32,12,1,0,0,5.4238114,5.4238114,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.9,52.64,30.66,60.65,8.333333333333334,2,3,0,0,10,9,5,0,461,1324364,291099.25,832510.38,150605.44,0,0,4119.5186 +15439,18884,33641,33640,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.0847216,9.074091,0,15,8,71.096428,0,3,3,2021,13,2,41,41,1,2,0,28.909977,28.909977,.05,.05,0,0,0,0,0,0,0,0,0,0,0,30.66,60.65,55.9,52.64,5,1,1,0,0,12,9,5,0,461,1324364,291099.25,832510.38,150605.44,0,0,4119.5186 +15440,18885,33642,-9,-9,-9,1,1,78,0,0,0,3,3,-9,0,2,0,7.0188451,7.0002403,0,0,-1108.1334,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,3.8521638,0,24.976612,0,1,1,0,3.1294377,6.5986052,54.62,37.47,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,741,96170.383,273156.19,52617.383,0,0,0,-338.80902 +15441,18886,33643,-9,33644,-9,1,0,17,0,0,1,2,0,0,0,5,0,0,0,0,0,-1170.6213,-9,3,-9,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,-9,-9,8.333333333333334,1,1,0,0,1,7,5,0,661,1122590,687011.38,353759.59,0,7834.0254,0,4275.4907 +15441,18886,33644,-9,-9,-9,1,0,54,0,0,0,3,3,-9,0,4,8.7451391,9.1985531,0,0,0,-949.59625,0,2,2,2021,7,0,20,20,1,0,0,50.084774,50.084774,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,7,5,0,661,1122590,687011.38,353759.59,0,7834.0254,0,4275.4907 +15441,18887,33645,-9,33644,-9,1,1,19,0,0,0,2,2,-9,0,4,7.8116584,7.92204,0,0,0,-1081.7753,0,3,-9,2021,19,8,40,0,1,8,1,7.6198831,7.6198831,0,0,0,0,0,0,0,0,1,1,0,0,0,41.23,53.79,-9,-9,5,1,1,0,1,1,7,3,0,175,18467.697,0,0,0,0,0,1613.3621 +15442,18888,33646,33647,-9,-9,1,0,60,0,0,0,2,2,-9,0,4,7.478415,7.3325682,0,7,-2,-60.673515,0,2,3,2021,9,2,20,20,1,2,0,7.9684157,7.9684157,0,0,0,0,0,0,0,0,0,0,0,4.4872127,0,55.3,55.6,54.37,54.8,8.333333333333334,1,1,0,0,8,10,3,1,1305,593792.31,221392.7,326562.19,0,0,0,1899.7112 +15442,18888,33647,33646,-9,-9,1,1,62,0,0,0,3,3,-9,0,3,0,7.4475465,7.5158358,7,2,-48.575699,0,3,2,2021,10,1,0,42,4,1,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,7.8011241,7.4710665,54.37,54.8,55.3,55.6,8.333333333333334,1,1,0,0,7,10,3,1,1305,593792.31,221392.7,326562.19,0,0,0,1899.7112 +15443,18889,33648,-9,-9,-9,1,0,79,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1005.4924,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,62.65,37.27,-9,-9,8.333333333333334,1,1,0,0,0,10,1,0,1339,76091.75,0,236952.25,0,0,0,1189.0256 +15444,18890,33649,-9,-9,-9,1,0,21,0,0,0,2,2,1,0,3,0,0,0,0,0,-1085.9949,-9,1,-9,2021,29,12,0,0,3,12,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,25.29,57.33,-9,-9,3.333333333333333,1,1,1,0,0,9,1,1,4810,152995.75,0,0,0,0,0,388.48071 +15445,18891,33650,-9,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,7.4044166,7.603394,0,0,-1004.0203,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0261784,7.5603452,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,3,11,3,1,139,606751.31,398887.53,-9860.2686,0,0,0,1882.094 +15446,18892,33651,33652,-9,-9,1,0,40,0,2,0,2,2,-9,0,3,5.1741457,5.8515997,4.649972,10,-4,-68.432983,0,2,2,2021,17,5,4,4,1,5,0,5.1893859,5.1893859,0,0,0,0,0,0,0,0,1,1,0,5.0056701,0,31.29,61.29,39.23,52.28,3.333333333333333,1,1,0,1,2,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15446,18892,33652,33651,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,6.4357662,6.2499228,0,10,4,128.7097,0,2,2,2021,21,9,45,30,1,9,0,1.5626453,1.5626453,0,0,0,0,0,0,0,0,1,1,0,0,0,39.23,52.28,31.29,61.29,3.333333333333333,1,1,0,1,8,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15446,18892,33653,-9,33651,33652,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1084.3362,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15446,18892,33654,-9,33651,33652,1,0,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-977.95056,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1208,6547.9014,0,0,0,1445.204,0,1771.0332 +15447,18893,33655,-9,-9,-9,1,1,31,0,0,0,2,2,-9,0,5,8.8580875,8.5271492,0,0,0,-1072.1145,0,2,2,2021,13,1,57,67,1,1,0,17.20076,17.20076,0,0,0,0,0,0,0,0,1,1,0,2.7568429,0,51.14,60.45,-9,-9,6.666666666666667,1,1,0,0,10,5,5,1,950,-35226.879,0,0,0,0,0,3290.8225 +15448,18894,33656,33657,-9,-9,1,1,62,0,0,0,1,1,-9,0,1,0,7.577641,7.6372914,13,1,39.50116,0,3,3,2021,28,11,0,0,4,11,0,0,0,0,0,0,0,0,0,0,2,0,0,0,6.2748899,7.5166583,21.23,37.74,24.43,57.95,1.666666666666667,1,1,0,0,13,1,3,1,1830.5,326087.56,111830.66,250654.19,0,0,0,2313.6035 +15448,18894,33657,33656,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,7.0668044,7.0915356,13,-1,-23.367891,0,1,1,2021,26,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.077354,24.43,57.95,21.23,37.74,1.666666666666667,1,1,0,0,8,1,3,1,1830.5,326087.56,111830.66,250654.19,0,0,0,2313.6035 +15449,18895,33658,33659,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.4485922,8.6366854,0,5,-11,23.971317,0,2,2,2021,11,0,40,45,1,0,0,13.707313,13.707313,.05,.05,0,0,0,0,0,0,0,0,0,1.6901456,0,54.2,57.49,52.82,53.97,6.666666666666667,1,1,0,0,9,5,5,1,1049.5,291556.28,464986.53,169941.03,131914.02,-258.75916,0,3909.3704 +15449,18895,33659,33658,-9,-9,1,0,57,0,0,0,3,3,-9,0,4,8.2661219,8.4377651,0,5,11,1.0572834,0,3,2,2021,8,0,37,37,1,0,0,12.153475,12.153475,.05,.05,0,0,0,0,0,0,0,0,0,2.0984211,0,52.82,53.97,54.2,57.49,8.333333333333334,1,1,0,0,9,5,5,1,1049.5,291556.28,464986.53,169941.03,131914.02,-258.75916,0,3909.3704 +15450,18896,33660,-9,33662,33661,1,0,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1080.2949,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15450,18896,33661,33662,-9,-9,1,1,46,0,2,0,2,2,-9,0,5,8.5384312,8.744873,0,19,-2,-60.684254,0,2,1,2021,6,1,48,-9,1,1,0,16.951088,16.951088,.05,.05,0,0,0,0,0,0,1,1,0,.32253781,0,62.39,56.71,52,54.51,10,4,2,0,0,10,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15450,18896,33662,33661,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,7.7031956,7.6006026,0,21,2,-36.985661,0,-9,2,2021,12,0,22,22,1,0,0,11.198003,11.198003,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,62.39,56.71,8.333333333333334,1,1,0,0,10,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15450,18896,33663,-9,33662,33661,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-864.40344,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,5,4,1,1239.25,333704.13,92043.313,171763.03,37671.844,6118.6294,2204.6611,4082.1299 +15451,18897,33664,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,6.4676523,6.3011122,0,0,-957.51648,0,3,3,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2013054,6.5079994,57.16,56.15,-9,-9,10,1,1,0,0,0,2,2,1,337,325993.31,80015.945,192324.92,0,0,0,1337.7347 +15452,18898,33665,33666,-9,-9,1,1,50,0,0,0,1,1,-9,0,5,9.2282658,9.1733255,0,14,-4,-46.694962,0,3,1,2021,8,0,60,55,1,0,0,15.527625,15.527625,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.59,38.88,37.58,43.78,8.333333333333334,1,1,0,0,14,9,5,1,602.5,2238633.5,1612015,347628.88,0,0,0,3701.7544 +15452,18898,33666,33665,-9,-9,1,0,54,0,0,0,1,1,-9,0,2,0,0,0,14,4,-29.792259,0,3,1,2021,20,8,0,0,3,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,37.58,43.78,62.59,38.88,5,1,1,1,0,8,9,5,1,602.5,2238633.5,1612015,347628.88,0,0,0,3701.7544 +15453,18899,33667,-9,33669,33668,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1040.1133,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,4,1,606.33331,220476.88,-21796.59,0,0,12924.939,1505.0402,3017.9812 +15453,18899,33668,33669,-9,-9,1,1,39,0,3,0,2,2,-9,0,4,8.5622997,8.5506268,0,10,6,-13.062597,-9,-9,-9,2021,6,0,40,0,1,0,0,17.725292,17.725292,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.36,54.24,8.333333333333334,1,1,0,0,12,11,4,1,606.33331,220476.88,-21796.59,0,0,12924.939,1505.0402,3017.9812 +15453,18899,33669,33668,33670,33671,1,0,33,0,3,0,2,2,-9,0,4,8.1664848,7.9534459,0,16,-6,55.544918,0,2,3,2021,7,0,43,20,1,0,0,6.7702875,6.7702875,0,0,0,0,0,0,0,0,1,1,0,0,0,55.36,54.24,57.16,56.15,10,1,1,0,0,6,11,4,1,606.33331,220476.88,-21796.59,0,0,12924.939,1505.0402,3017.9812 +15453,18900,33670,33671,-9,-9,1,0,54,0,3,0,2,2,-9,0,5,8.4527597,8.4841385,0,36,-4,97.206581,0,2,2,2021,8,0,45,49,1,0,0,8.4560165,8.4560165,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52,54.51,8.333333333333334,1,1,0,0,11,11,3,1,1824.5,69303.813,165933.09,0,0,0,0,1515.3564 +15453,18900,33671,33670,-9,-9,1,1,58,0,3,0,3,3,-9,0,3,0,6.2172761,6.2667742,36,4,37.787361,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.7933435,6.4168682,52,54.51,57.06,57.76,10,1,1,0,0,6,11,3,1,1824.5,69303.813,165933.09,0,0,0,0,1515.3564 +15454,18901,33672,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,3,0,0,0,0,0,-947.22534,0,-9,-9,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.3293762,0,0,1,1,0,0,0,53.11,14.78,-9,-9,10,1,1,0,0,0,5,1,0,1142,-15879.838,0,0,0,0,153.87724,1590.9968 +15455,18902,33673,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,7.2649112,7.0488334,0,0,-880.3562,0,3,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.8171492,7.1565127,55.71,37.76,-9,-9,6.666666666666667,1,1,0,0,0,2,3,1,535,238058.47,292484.06,172693.91,0,0,0,3092.8767 +15456,18903,33674,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,5,0,8.0882769,7.8183813,0,0,-882.29254,0,3,2,2021,1,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9372151,7.2980638,62.39,56.71,-9,-9,10,1,1,0,0,0,4,3,1,1174,729384.38,540037.69,95330.422,0,0,0,2002.4335 +15457,18904,33675,33676,-9,-9,1,0,40,0,3,0,1,1,-9,0,4,7.3523631,7.381741,0,15,-17,-81.368874,0,2,2,2021,8,0,29,23,1,0,0,6.3199587,6.3199587,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,43.54,59.6,8.333333333333334,1,1,0,0,6,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33676,33675,-9,-9,1,1,57,0,3,0,2,2,-9,0,4,8.8680229,8.8768759,0,14,17,-37.054657,0,2,2,2021,11,0,40,39,1,0,0,19.490736,19.490736,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.54,59.6,57.16,56.15,8.333333333333334,1,1,0,0,10,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33677,-9,33675,33676,1,1,12,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1070.246,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33678,-9,33675,33676,1,1,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-921.93011,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15457,18904,33679,-9,33675,33676,1,1,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-996.37933,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,10,4,1,1815.4,1150237.5,832279,440326.91,119654.44,0,55196.668,3431.9285 +15458,18905,33680,33682,-9,-9,1,0,32,1,1,0,1,1,-9,0,5,7.9113045,8.2280226,6.0930333,2,-5,29.37538,0,-9,-9,2021,7,0,30,0,1,0,0,11.187561,11.187561,.05,.05,.05,0,0,0,0,0,1,1,0,5.1896667,0,43.38,62.58,50.05,55.41,8.333333333333334,1,1,0,0,3,10,4,1,389,481440.56,166517.11,173327.48,0,9347.3262,0,5481.144 +15458,18905,33681,-9,33680,33682,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-985.6756,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,10,4,1,389,481440.56,166517.11,173327.48,0,9347.3262,0,5481.144 +15458,18905,33682,33680,-9,-9,1,1,37,1,1,0,1,1,-9,0,4,8.2784834,8.496007,6.1441488,2,5,-22.620209,0,3,2,2021,9,0,50,50,1,0,0,8.0722008,8.0722008,.05,.05,.05,0,0,0,0,0,1,1,0,8.4739761,0,50.05,55.41,43.38,62.58,5,1,1,0,0,8,10,4,1,389,481440.56,166517.11,173327.48,0,9347.3262,0,5481.144 +15459,18906,33683,-9,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,8.7562752,8.4637966,7.2705722,0,0,-903.87231,-9,-9,-9,2021,5,0,38,0,1,0,0,15.496652,15.496652,.05,.05,0,0,0,0,0,0,1,1,0,7.6467881,0,52.97,53.97,-9,-9,8.333333333333334,2,3,0,0,11,9,4,1,174,808552.88,450188.09,343325.84,154604.83,0,0,2003.4314 +15460,18907,33684,-9,33685,33687,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.6692,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15460,18907,33685,33687,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,7.366312,7.4479847,0,19,-6,28.82719,0,3,2,2021,6,0,45,48,1,0,0,4.3756533,4.3756533,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15460,18907,33686,-9,33685,33687,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-933.35278,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15460,18907,33687,33685,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.5537176,8.4974041,0,21,6,-40.334789,0,3,3,2021,9,0,45,48,1,0,0,14.575104,14.575104,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,57.16,56.15,8.333333333333334,1,1,0,0,11,2,4,1,739.75,64261.465,83345.688,80431.672,65032.316,12019.591,707.5625,2956.5198 +15461,18908,33688,33689,-9,-9,1,1,70,0,0,0,3,3,-9,0,3,0,0,0,7,-3,93.214935,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.3072562,0,53,47,51,46,7,1,1,0,0,0,13,2,1,816.5,350246.5,217746.22,115276.89,0,0,0,1399.1871 +15461,18908,33689,33688,-9,-9,1,0,73,0,0,0,3,3,-9,0,3,0,5.495862,5.3746481,7,3,41.888077,0,3,3,2021,11,0,0,0,4,1,0,0,0,0,0,0,1,0,11.956466,0,0,1,1,0,0,5.2671361,51,46,53,47,7,1,1,0,0,0,13,2,1,816.5,350246.5,217746.22,115276.89,0,0,0,1399.1871 +15462,18909,33690,-9,-9,-9,1,0,40,1,1,0,2,2,-9,0,2,0,0,0,0,0,-1079.0491,0,3,3,2021,15,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.05,30.31,-9,-9,3.333333333333333,1,1,0,0,0,5,1,0,694,64651.781,56112.832,0,0,1877.2367,0,545.92426 +15462,18909,33691,-9,33690,-9,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1001.5621,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,62,-9,-9,6,1,1,-9,0,0,5,1,0,694,64651.781,56112.832,0,0,1877.2367,0,545.92426 +15463,18910,33692,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,6.6088848,6.5859432,0,0,-1155.6503,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,6.5460262,54,44,-9,-9,8,1,1,0,0,0,6,2,0,2347,431344.09,138550.39,180609.27,0,0,0,738.45276 +15464,18911,33693,33694,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.7846146,7.7008586,0,10,5,63.915848,0,3,2,2021,12,0,25,20,1,0,0,11.137883,11.137883,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,60.79,38.71,3.333333333333333,1,1,0,0,11,12,5,1,543,648781,222521.7,202106.48,0,0,0,2216.3003 +15464,18911,33694,33693,-9,-9,1,1,54,0,0,0,2,2,-9,0,2,8.6625156,8.5662651,0,10,-5,46.452358,0,1,1,2021,2,0,39,40,1,0,0,16.365688,16.365688,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.79,38.71,47.15,55.39,8.333333333333334,1,1,0,0,13,12,5,1,543,648781,222521.7,202106.48,0,0,0,2216.3003 +15465,18912,33695,-9,-9,-9,1,1,73,0,0,0,1,1,-9,0,5,0,7.4636035,7.1231618,0,0,-1125.241,0,2,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,7,1,1,0,0,7.6204395,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,9,8,3,1,913,448403.28,293170.09,233580.58,0,0,0,966.88849 +15466,18913,33696,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,6.2310781,6.2187181,0,0,-897.38458,0,-9,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.4623694,6.3250113,58.22,40.76,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,410,146524.09,49558.426,253626.64,0,0,0,804.8587 +15467,18914,33697,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,5,9.4160175,9.7736788,0,7,0,28.192152,0,1,1,2021,12,1,47,47,1,1,0,39.50948,39.50948,.05,.05,0,0,0,0,0,0,0,0,0,3.3639863,0,45.81,61.51,41.53,63.13,8.333333333333334,1,1,0,0,8,7,5,1,445,28208.666,42595.816,0,0,0,0,4546.0151 +15467,18915,33698,-9,-9,-9,1,1,37,0,0,0,2,2,-9,0,4,8.0884371,8.2787819,0,7,0,16.17844,0,2,1,2021,12,0,36,36,1,0,0,10.157422,10.157422,.05,.05,0,0,0,0,0,0,0,0,0,4.8797517,0,41.53,63.13,45.81,61.51,8.333333333333334,1,1,0,0,7,7,5,1,377,-76976.078,107875.8,0,0,0,0,1777.6719 +15468,18916,33699,33701,-9,-9,1,1,59,0,1,0,2,2,-9,0,3,8.9596109,8.8239641,0,10,10,125.01004,0,-9,-9,2021,8,0,52,55,1,0,0,12.735205,12.735205,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.82,57.72,8.333333333333334,1,1,0,0,12,1,4,1,547.33331,301841.03,165469.19,266769.19,118841.17,0,0,3525.4475 +15468,18916,33700,-9,33701,33699,1,1,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1116.8429,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,1,4,1,547.33331,301841.03,165469.19,266769.19,118841.17,0,0,3525.4475 +15468,18916,33701,33699,-9,-9,1,0,49,0,1,0,2,2,-9,0,3,7.3374801,7.4673963,0,27,-10,1.8063678,0,2,2,2021,12,0,23,22,1,0,0,7.4952846,7.4952846,.05,.05,0,0,0,0,0,0,1,1,0,1.7919481,0,41.82,57.72,57.33,53.46,8.333333333333334,1,1,0,0,12,1,4,1,547.33331,301841.03,165469.19,266769.19,118841.17,0,0,3525.4475 +15469,18917,33702,33703,-9,-9,1,1,80,0,0,0,3,3,-9,0,5,0,6.2795582,6.2915039,61,-1,-36.001606,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,27.087246,0,0,1,1,0,3.4177375,6.1528263,49.97,43.12,57.09,24.97,10,1,1,0,0,0,6,2,1,712,460217.75,46134.102,358058.22,0,0,0,1939.7255 +15469,18917,33703,33702,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,61,1,119.82528,0,2,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,57.09,24.97,49.97,43.12,10,1,1,0,0,0,6,2,1,712,460217.75,46134.102,358058.22,0,0,0,1939.7255 +15470,18918,33704,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,3,0,6.1635151,6.0677876,0,0,-1012.8217,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,9.2911625,0,0,1,1,0,0,6.5480223,65.73999999999999,22.13,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,670,256297.36,128624.17,147754.09,0,0,0,1569.0062 +15471,18919,33705,-9,33706,-9,1,0,17,0,1,0,2,2,-9,0,4,0,0,0,0,0,-973.28076,-9,3,-9,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.08,50.51,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,376,-41973.973,0,0,0,0,0,1816.2419 +15471,18919,33706,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,2,0,0,0,0,0,-1051.6906,-9,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.97,32.79,-9,-9,1.666666666666667,1,1,1,1,0,6,1,0,376,-41973.973,0,0,0,0,0,1816.2419 +15471,18920,33707,-9,33706,-9,1,0,20,0,1,0,2,2,-9,0,2,0,0,0,0,0,-873.47815,-9,3,-9,2021,21,7,0,0,3,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.71,46.76,-9,-9,3.333333333333333,1,1,1,0,0,6,1,0,367,150320.3,0,0,0,0,0,1410.1078 +15471,18921,33708,33709,33706,-9,1,1,22,0,1,0,3,3,-9,0,4,8.432848,8.3253946,0,2,3,25.751234,0,3,-9,2021,11,0,30,0,1,0,0,13.429328,13.429328,0,0,0,0,0,0,0,0,1,1,0,0,0,45.91,59.89,56.1,49.93,5,1,1,0,0,0,6,3,0,710,-18364.695,0,0,0,18035.449,0,1888.7512 +15471,18921,33709,33708,-9,-9,1,0,19,0,1,0,2,2,-9,0,3,0,0,0,2,-3,-15.192385,0,-9,-9,2021,14,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.1,49.93,45.91,59.89,8.333333333333334,1,1,1,0,0,6,3,0,710,-18364.695,0,0,0,18035.449,0,1888.7512 +15472,18922,33710,-9,-9,-9,1,0,29,0,0,0,1,1,-9,1,1,0,0,0,0,0,-883.39355,0,-9,-9,2021,31,12,0,37,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,36.36,18.82,-9,-9,1.666666666666667,1,1,0,0,6,8,1,1,276,-21869.604,0,0,0,0,0,-1433.7014 +15473,18923,33711,33712,-9,-9,1,0,56,0,0,0,1,1,-9,0,3,8.2579889,8.7070379,0,32,-6,-104.52023,0,1,1,2021,6,0,37,47,1,0,0,14.853807,14.853807,0,0,0,0,0,0,0,7,0,0,0,1.3347764,0,43.05,44.78,48.45,49.46,6.666666666666667,1,1,0,0,9,11,4,1,383.5,1435712.5,915011.25,376389.81,0,0,0,1592.9586 +15473,18923,33712,33711,-9,-9,1,1,62,0,0,0,1,1,-9,0,3,0,0,0,34,6,-15.736822,0,2,2,2021,1,0,0,47,4,0,0,0,0,0,0,0,0,0,0,0,2,0,0,0,3.0455742,0,48.45,49.46,43.05,44.78,8.333333333333334,1,1,0,0,9,11,4,1,383.5,1435712.5,915011.25,376389.81,0,0,0,1592.9586 +15474,18924,33713,-9,-9,-9,1,0,77,0,0,0,3,3,-9,0,4,0,7.2720151,6.9256306,0,0,-1041.5775,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6617336,53.22,52.37,-9,-9,8.333333333333334,1,1,0,0,0,13,2,1,257,53947.602,136064.08,129570.03,0,0,0,1023.9099 +15475,18925,33714,33715,-9,-9,1,0,62,0,0,0,2,2,-9,0,3,0,6.008822,5.7423692,21,-2,-38.51931,0,3,3,2021,24,12,0,28,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.6287184,26.23,44.72,54.64,47.79,8.333333333333334,1,1,0,0,10,1,3,1,438.5,803775.25,373155.75,272608.28,0,0,0,1011.7347 +15475,18925,33715,33714,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,7.3367496,7.1477108,7,2,-33.878113,0,-9,-9,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0557709,7.4232054,54.64,47.79,26.23,44.72,0,1,1,0,0,0,1,3,1,438.5,803775.25,373155.75,272608.28,0,0,0,1011.7347 +15476,18926,33716,33719,-9,-9,1,1,54,0,2,0,2,2,-9,0,3,8.2213087,8.4485359,0,2,8,50.863499,-9,-9,-9,2021,11,0,60,0,1,0,0,6.570178,6.570178,.05,.05,0,0,0,0,0,0,1,1,0,6.7757864,0,50.91,46.91,26.77,49.77,6.666666666666667,3,4,0,0,1,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15476,18926,33717,-9,33719,33716,1,1,16,0,2,0,3,3,-9,0,4,0,0,0,0,0,-1027.057,-9,1,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.96,61.14,-9,-9,3.333333333333333,3,4,1,0,0,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15476,18926,33718,-9,33719,33716,1,1,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-996.89117,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.011529217,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15476,18926,33719,33716,-9,-9,1,0,46,0,2,0,1,1,-9,0,3,9.0337124,9.0098162,0,2,-8,-88.889099,0,3,1,2021,14,2,48,18,1,2,0,15.967722,15.967722,0,0,0,0,0,0,0,0,1,1,0,0,0,26.77,49.77,50.91,46.91,5,3,4,0,1,13,7,4,1,1621.75,334997.13,-6488.4287,284235.22,50582.559,23135.895,33282.461,4768.0151 +15477,18927,33720,33721,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,9.0263128,8.9516611,0,12,2,-5.3129215,0,3,3,2021,9,1,39,45,1,1,0,22.131275,22.131275,0,0,.05,0,0,0,0,0,0,0,0,0,0,43.6,51.61,32.24,50.05,6.666666666666667,1,1,0,0,13,11,5,1,196.5,454150.75,283190.72,202509.75,56797.551,0,0,3445.0203 +15477,18927,33721,33720,-9,-9,1,0,51,0,0,0,2,2,-9,0,3,6.9975367,7.0741682,0,12,-2,-84.516701,0,1,2,2021,10,0,16,16,1,0,0,6.9926109,6.9926109,0,0,0,0,0,0,0,0,0,0,0,0,0,32.24,50.05,43.6,51.61,8.333333333333334,1,1,0,0,13,11,5,1,196.5,454150.75,283190.72,202509.75,56797.551,0,0,3445.0203 +15478,18928,33722,-9,-9,-9,1,1,86,0,0,0,2,2,-9,0,5,0,7.0129547,7.1080065,0,0,-1004.5608,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,3.6489196,7.0556779,60.02,56.42,-9,-9,10,1,1,0,0,0,10,2,1,338,473294.44,98438.422,342825.97,0,0,0,1781.3008 +15479,18929,33723,-9,33726,33725,1,1,17,0,1,1,2,0,0,0,5,0,0,0,0,0,-808.51147,-9,2,1,2021,15,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,39.06,60.84,-9,-9,10,1,1,0,0,0,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15479,18929,33724,-9,33726,33725,1,0,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-972.5127,-9,2,1,2021,23,10,0,0,2,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,12.55,68.68000000000001,-9,-9,6.666666666666667,1,1,0,0,0,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15479,18929,33725,33726,-9,-9,1,1,53,0,1,0,1,1,-9,0,5,9.6560221,9.447608,0,13,-4,-71.807777,0,-9,-9,2021,7,0,40,40,1,0,0,46.606071,46.606071,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,54.18,49.48,8.333333333333334,1,1,0,0,14,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15479,18929,33726,33725,-9,-9,1,0,57,0,1,0,2,2,-9,0,4,0,0,0,22,4,50.842796,0,2,1,2021,14,3,0,15,3,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.18,49.48,54.69,57.47,8.333333333333334,1,1,0,0,11,8,5,1,431,1091757.9,355814.72,911324.63,276720.16,0,0,5098.4868 +15480,18930,33727,-9,-9,-9,1,0,24,0,0,0,1,1,1,0,4,8.5565205,8.7362585,0,0,0,-826.55377,-9,-9,-9,2021,11,4,51,0,1,4,0,9.8015451,9.8015451,0,0,0,0,0,0,0,0,0,0,0,5.0091448,0,46.98,59.35,-9,-9,8.333333333333334,1,1,0,0,3,2,5,0,249,43215.574,0,0,0,0,0,1729.718 +15481,18931,33728,33729,-9,-9,1,1,43,0,1,0,2,2,-9,0,3,8.56005,8.4498911,0,23,1,-47.434669,0,2,2,2021,11,1,40,60,1,1,0,15.425081,15.425081,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,33.31,56.08,8.333333333333334,1,1,0,0,12,9,4,0,1171,116188.17,57731.188,269015.81,119691.91,6773.2046,10711.639,2183.2722 +15481,18931,33729,33728,-9,-9,1,0,42,0,1,0,3,3,-9,0,3,6.6010141,6.5749011,0,23,-1,-45.27713,0,2,2,2021,16,4,25,32,1,4,0,2.7048128,2.7048128,0,0,0,0,0,0,0,0,0,0,0,2.2062435,0,33.31,56.08,44.19,58.01,8.333333333333334,1,1,0,0,12,9,4,0,1171,116188.17,57731.188,269015.81,119691.91,6773.2046,10711.639,2183.2722 +15481,18931,33730,-9,33729,33728,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1049.3619,-9,3,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.045182191,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,4,0,1171,116188.17,57731.188,269015.81,119691.91,6773.2046,10711.639,2183.2722 +15482,18932,33731,33732,-9,-9,1,1,64,0,0,0,2,2,-9,0,3,0,5.9389281,5.6486797,48,0,-68.11042,0,3,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.3111094,5.572823,28.88,53,29.66,59.03,3.333333333333333,1,1,0,0,3,11,2,1,559,447507.19,0,248796.28,0,0,0,1859.1665 +15482,18932,33732,33731,-9,-9,1,0,64,0,0,0,3,3,-9,0,3,0,0,0,48,0,50.297855,0,3,-9,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.66,59.03,28.88,53,6.666666666666667,1,1,0,0,0,11,2,1,559,447507.19,0,248796.28,0,0,0,1859.1665 +15483,18933,33733,-9,-9,-9,1,0,93,0,0,0,3,3,-9,0,2,0,4.1190977,4.6149902,0,0,-1104.2295,0,-9,2,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,6.0180273,6.7063713,62.906433,0,1,1,0,0,4.5207076,58.22,25.35,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,1283,100855.67,-53098.117,58377.523,0,0,0,396.18756 +15484,18934,33734,-9,33737,33736,1,1,9,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1061.2635,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15484,18934,33735,-9,33737,33736,1,1,1,1,2,1,3,0,-9,0,4,0,0,0,0,0,-952.25122,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15484,18934,33736,33737,-9,-9,1,1,30,1,2,0,2,2,-9,0,3,8.4846106,8.7201529,0,1,0,-19.93741,0,-9,-9,2021,25,10,60,45,1,10,0,9.3921642,9.3921642,.05,.05,0,0,0,0,0,0,1,1,0,0,0,38.39,45.65,36.33,59.23,6.666666666666667,1,1,0,0,7,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15484,18934,33737,33736,-9,-9,1,0,30,1,2,0,2,2,-9,0,3,7.2314963,7.599112,0,1,0,15.378397,-9,-9,-9,2021,10,0,30,0,1,0,0,8.2375889,8.2375889,0,0,0,0,0,0,0,42,1,1,0,0,0,36.33,59.23,38.39,45.65,8.333333333333334,1,1,0,0,8,9,4,0,525.25,209896.72,-55697.031,202564.23,104257.73,9614.7119,0,4395.1831 +15485,18935,33738,-9,33740,33739,1,0,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-933.72754,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,61,-9,-9,7,1,1,-9,0,0,10,4,1,196,628264.88,491617.22,279249.59,96461.344,15895.389,4874.5415,4030.1819 +15485,18935,33739,33740,-9,-9,1,1,53,0,1,0,2,2,-9,0,4,8.8721647,8.8212032,7.0756445,20,-2,115.86713,0,2,2,2021,14,3,45,44,1,3,0,14.110615,14.110615,.05,.05,0,0,0,0,0,0,1,1,0,0,7.0348887,39.09,60.15,45.69,38.37,8.333333333333334,1,1,0,0,11,10,4,1,196,628264.88,491617.22,279249.59,96461.344,15895.389,4874.5415,4030.1819 +15485,18935,33740,33739,-9,-9,1,0,55,0,1,0,2,2,-9,0,5,7.2657485,7.7170029,0,22,2,97.293159,0,2,2,2021,11,2,33,35,1,2,0,6.7406664,6.7406664,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.69,38.37,39.09,60.15,8.333333333333334,1,1,0,0,11,10,4,1,196,628264.88,491617.22,279249.59,96461.344,15895.389,4874.5415,4030.1819 +15486,18936,33741,33742,-9,-9,1,0,68,0,0,0,2,2,-9,0,3,0,6.7054749,7.0241055,10,-3,-45.754948,0,3,3,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.6605983,49.6,40.69,57.33,53.46,8.333333333333334,1,1,0,0,2,9,3,1,1531.5,1150682,343163.84,617141.38,0,0,0,3067.7568 +15486,18936,33742,33741,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.679935,7.6336317,10,3,-2.4108222,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.9073915,7.9331236,57.33,53.46,49.6,40.69,8.333333333333334,1,1,0,0,4,9,3,1,1531.5,1150682,343163.84,617141.38,0,0,0,3067.7568 +15487,18937,33743,33744,-9,-9,1,1,30,0,1,0,2,2,-9,0,3,8.2761707,8.2641106,0,1,3,119.31665,0,-9,-9,2021,14,3,44,43,1,3,0,10.084118,10.084118,.05,.05,.05,0,0,0,0,0,0,0,0,4.3345022,0,31.04,62.55,48.87,58.55,5,1,1,0,0,7,10,4,1,752.66669,367047.16,95043.977,304562.59,128297.09,0,0,3835.5752 +15487,18937,33744,33743,-9,-9,1,0,27,0,1,0,1,1,-9,0,4,8.3292542,8.5851936,0,1,-3,7.3756313,-9,-9,-9,2021,8,2,43,0,1,2,0,11.872803,11.872803,.05,.05,0,0,0,0,0,0,0,0,0,4.3449244,0,48.87,58.55,31.04,62.55,8.333333333333334,1,1,0,0,0,10,4,1,752.66669,367047.16,95043.977,304562.59,128297.09,0,0,3835.5752 +15487,18937,33745,-9,-9,33743,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-904.40814,-9,-9,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,10,4,1,752.66669,367047.16,95043.977,304562.59,128297.09,0,0,3835.5752 +15488,18938,33746,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,5,7.6533804,7.7001882,0,0,0,-1088.2432,0,3,2,2021,5,0,21,21,1,0,0,9.1755619,9.1755619,0,0,0,0,0,0,0,0,1,1,0,0,0,48.18,61.8,-9,-9,10,1,1,0,0,11,11,3,1,640,-132684.16,72836.898,0,0,0,0,1704.5867 +15489,18939,33747,33749,-9,-9,1,0,39,0,1,0,1,1,-9,0,5,7.6590819,7.6140466,0,19,1,137.25133,0,2,2,2021,6,0,23,23,1,0,0,11.801582,11.801582,.05,.05,0,0,0,0,0,0,1,1,0,.49265546,0,57.06,57.76,49.34,58.54,6.666666666666667,1,1,0,0,12,11,5,1,708.66669,271411.19,167267.38,281577.22,174973.81,8434.0576,940.68127,3499.7063 +15489,18939,33748,-9,33747,33749,1,1,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-940.56824,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,5,1,708.66669,271411.19,167267.38,281577.22,174973.81,8434.0576,940.68127,3499.7063 +15489,18939,33749,33747,-9,-9,1,1,38,0,1,0,1,1,-9,0,5,9.0067148,8.8015461,0,10,-1,-22.093576,0,-9,-9,2021,8,0,45,36,1,0,0,19.618099,19.618099,.05,.05,0,0,0,0,0,0,1,1,0,0,0,49.34,58.54,57.06,57.76,8.333333333333334,1,1,0,0,12,11,5,1,708.66669,271411.19,167267.38,281577.22,174973.81,8434.0576,940.68127,3499.7063 +15490,18940,33750,-9,33751,-9,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1106.0349,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,13,2,1,503,40398.246,0,0,0,5359.6665,0,3140.4233 +15490,18940,33751,-9,-9,-9,1,0,30,1,2,0,2,2,-9,0,5,6.9626274,7.0168819,0,0,0,-1103.1636,0,2,2,2021,0,0,16,16,1,0,0,8.785305,8.785305,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,13,13,2,1,503,40398.246,0,0,0,5359.6665,0,3140.4233 +15490,18940,33752,-9,33751,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1069.5486,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,13,2,1,503,40398.246,0,0,0,5359.6665,0,3140.4233 +15491,18941,33753,-9,-9,-9,1,0,56,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1093.1606,0,3,-9,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,48,-9,-9,7,1,1,0,0,2,4,1,0,1474,159625.95,0,0,0,0,0,1016.6389 +15491,18942,33754,-9,-9,33757,1,0,9,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1041.1095,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15491,18942,33755,-9,-9,33757,1,0,4,0,0,1,3,0,-9,0,4,0,0,0,0,0,-903.46912,-9,-9,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15491,18942,33756,-9,-9,33757,1,1,8,0,0,1,3,0,-9,0,4,0,0,0,0,0,-1078.3138,-9,-9,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15491,18942,33757,-9,33753,-9,1,1,24,0,0,0,3,3,-9,0,4,0,0,0,0,0,-931.89679,0,3,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,58,-9,-9,7,1,1,1,1,0,4,1,0,1372,30579.232,0,0,0,587.85895,0,457.90176 +15492,18943,33758,33759,-9,-9,1,0,32,1,2,0,1,1,-9,0,5,6.7750444,6.8424292,0,7,-11,-93.097649,0,-9,-9,2021,9,1,25,25,1,1,0,3.974504,3.974504,0,0,0,0,0,0,0,0,1,1,0,0,0,48.96,60.26,35.68,56.37,8.333333333333334,1,1,0,0,8,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15492,18943,33759,33758,-9,-9,1,1,43,1,2,0,2,2,-9,0,3,9.5004511,9.8341494,0,7,11,-108.90775,0,1,2,2021,14,4,45,43,1,4,0,28.187258,28.187258,.05,.05,0,0,0,0,0,2,1,1,0,0,0,35.68,56.37,48.96,60.26,6.666666666666667,1,1,0,0,13,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15492,18943,33760,-9,33758,33759,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-947.78784,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15492,18943,33761,-9,33758,33759,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1075.7838,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,5,1,700.75,44320.867,19472.045,245967.03,125267.39,68752.203,1025.8585,5094.8555 +15493,18944,33762,-9,-9,-9,1,0,79,0,0,0,2,2,-9,0,3,0,3.9943843,3.9613321,0,0,-1014.2623,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.7141933,3.8548293,59.46,46.99,-9,-9,10,1,1,0,0,0,7,2,1,297,539206.56,0,508055.44,0,0,517.08728,899.77094 +15494,18945,33763,-9,33765,33766,1,1,5,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1037.3844,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33764,-9,33765,33766,1,0,3,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1006.7175,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33765,33766,-9,-9,1,0,27,1,3,0,2,2,-9,0,4,6.6497555,6.6925297,0,5,-1,57.427883,0,-9,-9,2021,13,2,16,0,1,2,0,6.5045371,6.5045371,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,57.16,56.15,8.333333333333334,2,3,0,0,2,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33766,33765,-9,-9,1,1,28,1,3,0,1,1,-9,0,4,9.079093,8.9745884,0,5,1,13.339643,0,3,3,2021,7,0,38,37,1,0,0,23.107471,23.107471,.05,.05,.05,0,0,0,0,0,1,1,0,7.2871251,0,57.16,56.15,54.79,55.86,8.333333333333334,2,3,0,0,10,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15494,18945,33767,-9,33765,33766,1,0,0,1,3,1,3,0,-9,0,4,0,0,0,0,0,-927.12244,-9,2,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,.25780478,0,1,1,0,0,0,42,62,-9,-9,7,2,3,-9,0,0,8,4,0,521.20001,17774.73,71384.797,0,0,0,0,4713.7891 +15495,18946,33768,-9,-9,-9,1,0,53,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1116.8015,0,-9,-9,2021,14,0,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,39,-9,-9,6,2,3,0,1,0,8,2,0,517,-53482.344,0,0,0,0,0,47.250309 +15495,18947,33769,-9,33768,-9,1,1,27,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1073.6013,-9,3,-9,2021,36,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,45.72,37.22,-9,-9,2,2,3,0,0,0,8,1,0,3623,-25136.59,0,0,0,0,0,0 +15496,18948,33770,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,1,0,0,0,0,0,-966.39697,0,3,2,2021,19,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,31.48,31.91,-9,-9,6.666666666666667,1,1,0,1,0,12,1,0,487,23127.166,0,0,0,0,145.72356,677.01495 +15497,18949,33771,-9,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,7.9477339,7.8316631,0,0,0,-1049.3618,0,2,3,2021,18,6,47,43,1,6,0,7.0041747,7.0041747,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.54,57.54,-9,-9,5,1,1,0,0,7,13,4,0,3000,75627.719,-18556.365,0,0,0,0,1585.1987 +15498,18950,33772,33773,-9,-9,1,1,73,0,0,0,2,2,-9,0,4,0,7.6849518,7.4194551,48,3,-56.604855,0,-9,-9,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,5.3818903,7.8671732,57.16,56.15,53.9,52.09,8.333333333333334,1,1,0,0,4,7,3,1,321,503237.16,273215.47,0,0,0,1115.1555,2752.1055 +15498,18950,33773,33772,-9,-9,1,0,70,0,0,0,1,1,-9,0,4,0,7.5896616,7.5109048,48,-3,-17.626812,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.14794227,7.3534627,53.9,52.09,57.16,56.15,8.333333333333334,1,1,0,0,0,7,3,1,321,503237.16,273215.47,0,0,0,1115.1555,2752.1055 +15499,18951,33774,33775,-9,-9,1,0,67,0,0,0,3,3,-9,0,3,0,7.023716,7.1924415,46,-2,85.89492,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.5341773,6.7946858,60.06,39.82,57.16,56.15,8.333333333333334,1,1,0,0,0,9,3,1,349,1175446,605907.88,468307.41,0,0,0,2779.562 +15499,18951,33775,33774,-9,-9,1,1,69,0,0,0,3,3,-9,0,4,0,7.7295122,7.7004108,46,2,60.132526,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8304152,7.4572659,57.16,56.15,60.06,39.82,8.333333333333334,1,1,0,0,0,9,3,1,349,1175446,605907.88,468307.41,0,0,0,2779.562 +15500,18952,33776,33777,-9,-9,1,0,64,0,0,0,2,2,-9,0,3,0,4.9895158,5.1840606,40,-4,-79.824966,0,2,2,2021,22,10,0,0,4,10,0,0,0,0,0,0,0,0,0,0,42,1,1,0,5.9384007,5.3044348,46.65,55.59,51.24,58.84,6.666666666666667,1,1,0,0,6,9,3,1,450,843855.5,172402.91,541885.5,0,0,0,2916.2754 +15500,18952,33777,33776,-9,-9,1,1,68,0,0,0,1,1,-9,0,4,0,8.1317978,7.6103497,40,4,140.42778,0,3,3,2021,12,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,7.1341457,7.7508297,51.24,58.84,46.65,55.59,10,1,1,0,0,5,9,3,1,450,843855.5,172402.91,541885.5,0,0,0,2916.2754 +15501,18953,33778,33779,-9,-9,1,1,56,0,1,0,3,3,-9,0,4,7.2486567,7.5636163,0,34,7,-74.577873,0,3,3,2021,11,0,24,24,1,0,0,6.4632716,6.4632716,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.97,49.09,51,54,8.333333333333334,2,3,0,0,8,8,2,1,547.66669,321040.84,71248.289,296494.88,53491.926,4355.6943,0,1677.6931 +15501,18953,33779,33778,-9,-9,1,0,49,0,1,0,3,3,-9,0,4,0,0,0,34,-7,83.02478,0,-9,-9,2021,10,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,52.97,49.09,8,2,3,0,0,0,8,2,1,547.66669,321040.84,71248.289,296494.88,53491.926,4355.6943,0,1677.6931 +15501,18953,33780,-9,33779,33778,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-991.10315,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,8,2,1,547.66669,321040.84,71248.289,296494.88,53491.926,4355.6943,0,1677.6931 +15501,18954,33781,-9,33779,33778,1,0,23,0,1,0,2,2,-9,0,3,8.2055054,8.6857491,0,0,0,-1034.7806,0,3,3,2021,11,2,48,40,1,2,1,10.961309,10.961309,0,0,0,0,0,0,0,0,1,1,0,0,0,31.64,59.59,-9,-9,5,2,3,0,0,5,8,5,1,1556,-12346.693,168276.48,0,0,0,0,648.27368 +15501,18955,33782,-9,33779,33778,1,0,29,0,1,0,1,1,-9,0,5,7.671946,7.5972915,0,0,0,-901.96338,-9,3,3,2021,12,3,22,0,1,3,1,13.898204,13.898204,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.88,61.57,-9,-9,8.333333333333334,2,3,0,0,9,8,3,1,87,-108582.95,-55790.398,0,0,1078.4753,0,426.91022 +15502,18956,33783,-9,-9,-9,1,0,81,0,0,0,3,3,-9,0,2,0,0,0,0,0,-1020.3285,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,11.473112,0,0,1,1,0,0,0,55.19,39.8,-9,-9,8.333333333333334,1,1,0,0,0,9,1,0,339,329186.56,0,0,0,0,685.77032,807.26605 +15503,18957,33784,33785,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.88095,8.8367224,0,10,0,41.224487,-9,2,2,2021,10,0,37,0,1,0,0,21.23506,21.23506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.94,55.88,49.61,54.24,8.333333333333334,1,1,0,0,13,10,5,1,1186.5,503080,256137.16,123427.81,65496.531,5967.9893,0,4461.7354 +15503,18957,33785,33784,-9,-9,1,1,59,0,0,0,1,1,-9,0,3,8.551878,8.4361076,0,10,0,38.38884,0,2,2,2021,9,0,40,38,1,0,0,14.699504,14.699504,.05,.05,0,0,0,0,0,0,0,0,0,6.5345807,0,49.61,54.24,51.94,55.88,8.333333333333334,1,1,0,0,12,10,5,1,1186.5,503080,256137.16,123427.81,65496.531,5967.9893,0,4461.7354 +15503,18958,33786,-9,33784,33785,1,1,23,0,0,0,1,1,1,0,4,8.3932848,8.3241224,5.6841059,0,0,-1056.2203,-9,2,1,2021,4,0,25,0,1,0,1,15.540603,15.540603,0,0,0,0,0,0,0,0,0,0,0,5.8556876,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,4,10,4,1,918,-103355.5,0,0,0,0,0,952.26202 +15504,18959,33787,-9,33788,33789,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1011.2634,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,5,1,656.66669,415193.81,-5192.1563,338262.19,65333.473,0,0,4668.3174 +15504,18959,33788,33789,-9,-9,1,0,44,0,2,0,2,2,-9,0,3,0,0,0,8,-3,30.94269,0,-9,-9,2021,18,6,0,0,3,6,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,0,0,44.07,51.46,48.87,58.55,5,1,1,0,0,0,9,5,1,656.66669,415193.81,-5192.1563,338262.19,65333.473,0,0,4668.3174 +15504,18959,33789,33788,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,9.3269453,9.2965527,0,8,3,61.646072,0,2,2,2021,7,0,35,40,1,0,0,43.307323,43.307323,.05,.05,0,0,0,0,0,0,1,1,0,6.8772697,0,48.87,58.55,44.07,51.46,8.333333333333334,1,1,0,0,11,9,5,1,656.66669,415193.81,-5192.1563,338262.19,65333.473,0,0,4668.3174 +15504,18960,33790,-9,33788,33789,1,0,19,0,2,0,2,2,-9,0,3,8.0301437,8.038393,0,0,0,-955.29785,0,2,2,2021,11,0,40,18,1,0,1,10.916763,10.916763,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,54.51,-9,-9,1.666666666666667,1,1,0,0,3,9,4,1,657,-107328.77,-11629.092,0,0,0,0,994.56738 +15505,18961,33791,-9,33792,33793,1,0,20,0,0,0,2,2,-9,0,3,7.6512218,7.8820314,0,0,0,-1062.9968,0,2,3,2021,12,0,40,35,1,0,1,6.7161794,6.7161794,0,0,0,0,0,0,0,0,1,1,0,0,0,42.61,49.31,-9,-9,5,2,3,0,0,3,8,3,0,702,125130.25,0,0,0,0,0,1010.525 +15505,18962,33792,33793,-9,-9,1,0,47,0,0,0,2,2,-9,0,4,7.9882979,8.3085299,0,8,-13,-65.180786,0,-9,3,2021,11,2,35,45,1,2,0,10.942926,10.942926,0,0,0,0,0,0,0,27,1,1,0,0,0,57.27,33.21,46.26,18.23,3.333333333333333,2,3,0,1,11,8,3,0,1487.5,613804.38,51333.961,519122.03,57190.398,0,0,2005.9771 +15505,18962,33793,33792,-9,-9,1,1,60,0,0,0,3,3,-9,1,1,0,0,0,8,13,52.62532,0,-9,-9,2021,12,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.26,18.23,57.27,33.21,8.333333333333334,2,3,1,1,0,8,3,0,1487.5,613804.38,51333.961,519122.03,57190.398,0,0,2005.9771 +15506,18963,33794,-9,-9,-9,1,0,59,0,0,0,2,2,-9,0,3,8.4285059,8.4893436,0,0,0,-1133.1323,0,2,2,2021,8,0,43,41,1,0,0,14.076885,14.076885,.05,.05,0,0,0,0,0,2,0,0,0,6.5926838,0,55.36,51.57,-9,-9,6.666666666666667,1,1,0,0,13,10,5,1,363,80048.766,88141.672,0,0,4527.6382,0,1673.0314 +15507,18964,33795,33796,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.3621674,8.5613832,6.4661193,12,0,-7.4583807,0,2,2,2021,10,2,40,42,1,2,0,17.363617,17.363617,0,0,0,0,0,0,0,7,0,0,0,1.7682842,6.6904216,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,13,12,5,1,1372,735953.25,314505.25,299884.75,0,0,0,3522.845 +15507,18964,33796,33795,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,7.934545,7.9153333,6.4595294,12,0,-119.78565,0,3,3,2021,6,0,36,45,1,0,0,8.4838028,8.4838028,.05,.05,.05,0,0,0,0,0,0,0,0,0,6.7005892,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,13,12,5,1,1372,735953.25,314505.25,299884.75,0,0,0,3522.845 +15508,18965,33797,33798,-9,-9,1,1,58,0,0,0,1,1,-9,0,3,7.7819176,8.0988874,0,10,15,-118.78069,0,-9,-9,2021,10,0,60,60,1,1,0,4.76091,4.76091,0,0,0,0,0,0,0,0,1,1,0,0,0,50,49,50.55,16.08,7,1,1,0,0,13,8,3,1,222,841799.88,255630.44,364319.53,0,0,0,1930.3503 +15508,18965,33798,33797,-9,-9,1,0,43,0,0,0,1,1,-9,1,2,0,0,0,18,-15,1.4231468,0,1,2,2021,14,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.55,16.08,50,49,8.333333333333334,4,2,1,0,9,8,3,1,222,841799.88,255630.44,364319.53,0,0,0,1930.3503 +15508,18966,33799,-9,33798,33797,1,1,20,0,0,0,2,2,-9,0,4,8.0505247,8.335928,0,0,0,-953.60449,0,1,1,2021,11,0,40,0,1,2,1,9.6758795,9.6758795,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,0,0,1,8,4,1,364,-162611.75,-7534.3237,0,0,0,0,2206.5759 +15509,18967,33800,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.9313235,7.9008813,0,0,0,-1054.6655,0,2,2,2021,8,0,40,40,1,0,0,8.0050659,8.0050659,0,0,0,0,0,0,0,0,0,0,0,3.6958148,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,8,6,3,0,1008,112931.84,232899.14,51447.148,121927.73,0,0,1004.8403 +15509,18968,33801,-9,33800,-9,1,0,24,0,0,0,1,1,-9,0,3,7.4550958,7.6764088,0,0,0,-950.20587,0,2,-9,2021,11,3,35,35,1,3,1,6.997632,6.997632,0,0,0,0,0,0,0,0,0,0,0,2.5393629,0,50.03,52.62,-9,-9,8.333333333333334,1,1,0,0,6,6,3,0,550,-17324.102,0,0,0,0,0,597.86957 +15510,18969,33802,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,4,7.8342357,8.297533,7.7080407,0,0,-942.76556,0,3,3,2021,8,0,39,39,1,0,0,8.3911352,8.3911352,.05,.05,0,0,0,0,0,0,1,1,0,0,7.5114818,55.19,54.26,-9,-9,1.666666666666667,1,1,0,0,8,10,4,1,502,1443286.4,958184.94,359568.63,0,0,0,2355.1572 +15511,18970,33803,-9,-9,-9,1,0,82,0,0,0,3,3,-9,0,4,0,0,0,0,0,-895.03821,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,69.73,35.38,-9,-9,10,1,1,0,0,0,10,1,0,1115,-37769.598,0,0,0,0,0,1192.5623 +15512,18971,33804,-9,-9,-9,1,1,68,0,0,0,3,3,-9,0,1,0,0,0,0,0,-1048.4492,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,1.5560974,0,21.310408,0,1,1,0,0,0,35.46,15.4,-9,-9,0,1,1,0,0,0,13,1,0,559,0,0,0,0,0,0,1380.4 +15513,18972,33805,33806,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,9.3233347,9.4939556,0,28,12,-28.710413,0,3,2,2021,6,0,38,38,1,0,0,34.127529,34.127529,.05,.05,0,0,0,0,0,0,0,0,0,6.0643411,0,51.83,57.2,41.76,57.81,8.333333333333334,1,1,0,0,12,12,5,1,814,1985561,968631.38,510474.94,97416.148,0,0,7081.6777 +15513,18972,33806,33805,-9,-9,1,0,50,0,0,0,1,1,-9,0,4,9.1947851,9.3316545,0,28,-12,-67.506874,0,2,2,2021,9,0,41,43,1,0,0,29.485193,29.485193,0,0,0,0,0,0,0,0,0,0,0,1.4734887,0,41.76,57.81,51.83,57.2,6.666666666666667,1,1,0,0,12,12,5,1,814,1985561,968631.38,510474.94,97416.148,0,0,7081.6777 +15514,18973,33807,-9,-9,-9,1,1,63,0,0,0,2,2,-9,0,3,7.1021891,8.3688049,8.6452503,0,0,-1025.7125,0,2,2,2021,7,0,25,25,1,0,0,5.7426829,5.7426829,0,0,0,0,0,0,0,0,0,0,0,0,8.0785284,45.17,51.16,-9,-9,6.666666666666667,1,1,0,0,7,12,4,1,2905,41444.836,0,0,0,0,0,2399.7117 +15515,18974,33808,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.4971042,7.6629062,0,0,-984.55573,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7862844,7.7540903,46.26,42.16,-9,-9,6.666666666666667,1,1,0,0,0,12,3,1,1815,464794.81,146771.73,163591.45,0,0,0,2556.8357 +15516,18975,33809,33811,-9,-9,1,0,25,1,1,0,2,2,-9,0,5,7.8840752,7.9120994,0,5,-8,-45.259373,0,-9,-9,2021,7,0,36,36,1,0,0,6.2045212,6.2045212,0,0,0,0,0,0,0,2,1,1,0,0,0,47.33,58,60.02,56.42,8.333333333333334,1,1,0,0,5,5,5,1,212,230556.41,12095.869,372819.13,208797.02,0,0,3883.385 +15516,18975,33810,-9,33809,33811,1,1,2,1,1,1,3,0,-9,0,4,0,0,0,0,0,-988.42743,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,5,1,212,230556.41,12095.869,372819.13,208797.02,0,0,3883.385 +15516,18975,33811,33809,-9,-9,1,1,33,1,1,0,2,2,-9,0,5,9.0130787,9.0893688,0,5,8,38.564404,0,2,2,2021,10,0,40,45,1,0,0,24.927906,24.927906,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.02,56.42,47.33,58,8.333333333333334,1,1,0,0,6,5,5,1,212,230556.41,12095.869,372819.13,208797.02,0,0,3883.385 +15517,18976,33812,33813,-9,-9,1,0,61,0,0,0,2,2,-9,0,2,7.7400908,7.7368398,0,12,1,8.376996,0,3,3,2021,18,6,30,31,1,6,0,8.9408092,8.9408092,0,0,0,0,0,0,0,0,0,0,0,0,0,35.75,36.78,61.12,51.57,6.666666666666667,1,1,0,0,13,11,4,0,850,2283076.5,1339336.3,419581.28,0,0,0,2317.4045 +15517,18976,33813,33812,-9,-9,1,1,60,0,0,0,2,2,-9,0,4,7.8780713,8.2540846,5.178237,12,-1,-59.599941,0,2,2,2021,6,0,25,25,1,0,0,15.214618,15.214618,0,0,.05,0,0,0,0,0,0,0,0,0,5.575716,61.12,51.57,35.75,36.78,8.333333333333334,1,1,0,0,12,11,4,0,850,2283076.5,1339336.3,419581.28,0,0,0,2317.4045 +15518,18977,33814,-9,-9,-9,1,0,71,0,0,0,2,2,-9,0,4,0,6.233151,6.2825899,0,0,-972.63019,0,2,2,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.4074187,39.21,56.41,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,608,271329.72,40606.922,0,0,0,0,221.36563 +15519,18978,33815,33816,-9,-9,1,1,69,0,0,0,2,2,-9,0,5,0,6.1338987,6.0289755,7,17,30.912144,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3777218,43.33,55.91,19.21,61.32,8.333333333333334,1,1,0,0,7,4,2,1,1978,615006.63,373204.38,216254.7,0,0,0,1201.0608 +15519,18978,33816,33815,-9,-9,1,0,52,0,0,0,1,1,-9,1,4,0,0,0,7,-17,25.632242,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.73320508,0,19.21,61.32,43.33,55.91,6.666666666666667,1,1,0,0,0,4,2,1,1978,615006.63,373204.38,216254.7,0,0,0,1201.0608 +15520,18979,33817,-9,-9,-9,1,0,72,0,0,0,3,3,-9,0,2,0,6.7851558,6.8296847,0,0,-962.83978,0,3,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7395635,34.05,44.25,-9,-9,3.333333333333333,1,1,0,0,2,9,2,1,2504,872318.63,178607.25,381569.28,0,0,0,541.62152 +15521,18980,33818,-9,-9,-9,1,0,55,0,1,0,2,2,-9,0,3,7.6807704,7.9563923,0,0,0,-1036.1366,0,2,3,2021,13,1,35,35,1,1,0,9.0777864,9.0777864,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.17,50.6,-9,-9,5,2,3,0,0,12,2,3,1,850,32667.648,-7058.9326,91101.703,7681.8032,0,0,1730.5713 +15521,18980,33819,-9,33818,-9,1,1,16,0,1,0,2,2,-9,0,2,0,0,0,0,0,-968.95929,-9,2,-9,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,61.92,38.1,-9,-9,5,2,3,1,0,0,2,3,1,850,32667.648,-7058.9326,91101.703,7681.8032,0,0,1730.5713 +15521,18981,33820,-9,33818,-9,1,1,32,0,1,0,2,2,-9,0,3,7.8292632,8.379282,0,0,0,-1004.8244,-9,2,2,2021,6,0,45,0,1,0,1,7.2631154,7.2631154,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,8.333333333333334,2,3,0,0,14,2,4,1,509,140446.81,121386.75,0,0,0,0,991.00806 +15521,18982,33821,-9,33818,-9,1,1,30,0,1,0,1,1,-9,0,2,8.4845829,8.6619921,0,0,0,-956.29126,-9,2,2,2021,6,0,45,0,1,0,1,10.185312,10.185312,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.52,42.41,-9,-9,8.333333333333334,2,3,0,0,13,2,4,1,612,102630.95,51580.023,190609.31,70450.594,4945.4849,1423.7303,2756.0439 +15521,18983,33822,-9,33818,-9,1,1,20,0,1,1,2,0,0,0,3,0,0,0,0,0,-837.25006,-9,2,-9,2021,11,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3466864,0,48.73,45.06,-9,-9,5,2,3,0,0,4,2,1,1,1819,0,0,0,0,0,0,1050.444 +15522,18984,33823,33825,-9,-9,1,0,41,0,0,0,3,3,-9,0,3,8.5499859,8.2369633,0,1,-8,21.900774,-9,-9,-9,2021,11,0,37,0,1,0,0,12.964581,12.964581,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.65,51.64,40.64,52.96,6.666666666666667,1,1,0,0,1,8,5,0,1772.6666,568643.38,272058.5,318073.53,223697.33,0,0,5930.5967 +15522,18984,33824,-9,33823,-9,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1011.7045,-9,3,-9,2021,4,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41.24,62.14,-9,-9,8.333333333333334,4,2,0,0,1,8,5,0,1772.6666,568643.38,272058.5,318073.53,223697.33,0,0,5930.5967 +15522,18984,33825,33823,-9,-9,1,1,49,0,0,0,3,3,-9,0,3,9.3813753,8.9749441,0,1,8,-1.8749323,-9,-9,-9,2021,18,6,50,0,1,6,0,17.699787,17.699787,.05,.05,0,0,0,0,0,0,1,1,0,7.3413439,0,40.64,52.96,52.65,51.64,6.666666666666667,1,1,0,0,13,8,5,0,1772.6666,568643.38,272058.5,318073.53,223697.33,0,0,5930.5967 +15523,18985,33826,-9,33827,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1086.2982,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,5,4,1,920.5,104633.66,69015.445,0,0,0,0,2157.8267 +15523,18985,33827,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,8.260705,8.38902,0,0,0,-888.77069,0,3,2,2021,12,0,40,38,1,0,0,10.959836,10.959836,.05,.05,0,0,0,0,0,7,1,1,0,4.8899932,0,47.24,53.95,-9,-9,6.666666666666667,1,1,0,0,13,5,4,1,920.5,104633.66,69015.445,0,0,0,0,2157.8267 +15524,18986,33828,-9,-9,33829,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1115.0735,-9,-9,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,-9,-9,8.333333333333334,3,4,0,0,0,8,2,0,2164.5,783652.25,288990.81,469006.44,0,0,0,862.07648 +15524,18986,33829,-9,-9,-9,1,1,66,0,1,0,2,2,-9,0,4,0,6.2854476,6.1602736,0,0,-1017.3425,0,3,1,2021,6,0,0,36,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.8900604,62.49,55.09,-9,-9,6.666666666666667,3,4,0,0,11,8,2,0,2164.5,783652.25,288990.81,469006.44,0,0,0,862.07648 +15525,18987,33830,33832,-9,-9,1,0,49,0,0,0,2,2,-9,0,2,7.9543724,8.4678478,0,10,1,-161.55016,0,3,3,2021,18,7,56,48,1,7,0,7.3761039,7.3761039,0,0,0,0,0,0,0,0,0,0,0,0,0,46.95,35.43,53.94,18.78,5,1,1,0,0,10,10,5,1,617,1886378.4,1452740.1,446364.72,42459.301,0,0,3681.8477 +15525,18987,33831,-9,33830,33832,1,0,16,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1035.1564,-9,2,2,2021,12,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47.15,55.39,-9,-9,8.333333333333334,1,1,0,0,0,10,5,1,617,1886378.4,1452740.1,446364.72,42459.301,0,0,3681.8477 +15525,18987,33832,33830,-9,-9,1,1,48,0,0,0,2,2,-9,0,2,8.0972586,8.5379181,0,10,-1,-94.421127,0,2,1,2021,11,4,38,37,1,4,0,12.238923,12.238923,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,53.94,18.78,46.95,35.43,3.333333333333333,1,1,0,0,11,10,5,1,617,1886378.4,1452740.1,446364.72,42459.301,0,0,3681.8477 +15526,18988,33833,-9,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,8.172327,8.4233246,6.6380458,0,0,-961.15228,0,3,2,2021,8,0,33,18,1,0,0,10.487516,10.487516,.05,.05,0,0,0,0,0,0,0,0,0,6.6813717,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,12,4,1,994,258394.33,284978.03,138406.97,0,0,0,1991.1229 +15526,18989,33834,-9,33833,-9,1,1,23,0,0,0,2,2,-9,0,3,6.3033118,6.1847672,0,0,0,-929.84827,0,2,2,2021,17,6,30,8,1,6,1,2.2462192,2.2462192,.05,.05,0,0,0,0,0,0,0,0,0,0,0,36.62,60.23,-9,-9,5,1,1,0,1,3,12,2,1,1303,-106645.7,22670.654,0,0,0,0,943.66302 +15526,18990,33835,-9,33833,-9,1,0,19,0,0,0,2,2,-9,0,3,6.1473637,6.1885557,0,0,0,-1093.139,0,2,-9,2021,18,5,12,0,1,5,1,4.0527253,4.0527253,0,0,0,0,0,0,0,0,0,0,0,3.2223282,0,26.09,63.8,-9,-9,8.333333333333334,1,1,0,0,1,12,2,1,336,65544.516,0,0,0,0,0,41.491398 +15527,18991,33836,33838,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,8.1980915,8.0732746,0,9,-6,-29.722635,0,2,-9,2021,9,0,21,44,1,0,0,16.375326,16.375326,.05,.05,0,0,0,0,0,0,1,1,0,2.3020799,0,54.2,57.49,57.33,53.46,6.666666666666667,1,1,0,0,10,12,5,1,313.33334,899963.38,646675,336069.44,93984.43,0,3777.0239,4916.1763 +15527,18991,33837,-9,33836,33838,1,0,17,0,0,1,2,0,-9,0,4,0,0,0,0,0,-1045.5353,-9,1,2,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.2,57.49,-9,-9,6.666666666666667,1,1,0,0,1,12,5,1,313.33334,899963.38,646675,336069.44,93984.43,0,3777.0239,4916.1763 +15527,18991,33838,33836,-9,-9,1,1,59,0,0,0,2,2,-9,0,3,8.8542519,8.9848213,0,9,6,34.1707,0,3,3,2021,6,0,104,48,1,0,0,7.9985085,7.9985085,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,54.2,57.49,8.333333333333334,1,1,0,0,10,12,5,1,313.33334,899963.38,646675,336069.44,93984.43,0,3777.0239,4916.1763 +15528,18992,33839,33840,-9,-9,1,0,37,0,0,0,3,3,-9,1,4,0,0,0,6,-2,51.93462,0,3,3,2021,11,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,56,51,56,7,1,1,0,0,0,5,2,0,350,1019.7656,0,0,0,0,0,2347.0122 +15528,18992,33840,33839,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,7.3902407,7.4564037,0,6,2,-60.635506,-9,-9,-9,2021,9,0,30,0,1,1,0,6.5625095,6.5625095,0,0,0,0,0,0,0,0,1,1,0,0,0,51,56,49,56,8,1,1,0,0,1,5,2,0,350,1019.7656,0,0,0,0,0,2347.0122 +15529,18993,33841,33842,-9,-9,1,0,49,0,0,0,1,1,-9,0,3,0,0,0,13,4,-4.2872844,0,3,2,2021,23,11,0,11,3,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,0,0,22.13,61.81,55.36,51.57,3.333333333333333,2,3,1,0,11,5,3,1,268,174465.06,59939.531,130616.35,12670.145,0,0,1802.553 +15529,18993,33842,33841,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.0059614,8.2300301,0,9,-4,163.18777,0,3,2,2021,12,0,40,60,1,0,0,9.8684254,9.8684254,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.36,51.57,22.13,61.81,6.666666666666667,2,3,0,0,10,5,3,1,268,174465.06,59939.531,130616.35,12670.145,0,0,1802.553 +15530,18994,33843,-9,-9,-9,1,1,33,0,0,0,2,2,-9,0,4,9.1273155,8.9387846,0,0,0,-856.95673,0,1,2,2021,16,4,42,49,1,4,0,25.446095,25.446095,.05,.05,0,0,0,0,0,0,0,0,0,0,0,35.67,64.46000000000001,-9,-9,6.666666666666667,1,1,0,0,13,12,5,1,520,296381.34,177094.84,0,0,2471.8928,718.24243,2694.0352 +15531,18995,33844,-9,-9,-9,1,0,51,0,0,0,1,1,-9,0,3,8.6604137,8.8803568,7.2480063,0,0,-1129.3011,0,2,1,2021,8,0,49,50,1,0,0,11.470224,11.470224,.05,.05,0,0,0,0,0,7,1,1,0,7.0681462,0,58.32,50.22,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,227,1508388.5,1203080.9,193963.13,0,0,0,3422.6677 +15532,18996,33845,33846,-9,-9,1,1,78,0,0,0,2,2,-9,0,4,0,0,0,59,-1,0,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,6.5393882,0,0,1,1,0,0,0,42.61,46.91,48.75,47.6,1.666666666666667,1,1,0,0,0,2,1,0,475.5,236260.81,0,133758.95,0,0,0,1455.8671 +15532,18996,33846,33845,-9,-9,1,0,79,0,0,0,3,3,-9,0,4,0,0,0,59,1,0,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,0,48.75,47.6,42.61,46.91,1.666666666666667,1,1,0,0,0,2,1,0,475.5,236260.81,0,133758.95,0,0,0,1455.8671 +15533,18997,33847,33848,-9,-9,1,1,74,0,0,0,2,2,-9,0,5,0,7.7077808,7.82971,52,3,149.16811,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.96623391,8.0345078,60.02,56.42,57.06,57.76,10,1,1,0,0,0,5,3,1,360,1076314.8,727710.13,242040.97,0,0,135.2892,2165.4199 +15533,18997,33848,33847,-9,-9,1,0,71,0,0,0,3,3,-9,0,5,0,0,0,52,-3,84.334854,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,60.02,56.42,10,1,1,0,0,0,5,3,1,360,1076314.8,727710.13,242040.97,0,0,135.2892,2165.4199 +15534,18998,33849,-9,-9,-9,1,1,49,0,0,0,3,3,-9,1,2,0,0,0,0,0,-1056.632,0,2,2,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,45.92,27.93,-9,-9,8.333333333333334,1,1,0,1,0,13,1,0,202,29186.602,0,0,0,0,0,1310.649 +15534,18999,33850,-9,-9,33849,1,1,24,0,0,0,2,2,-9,0,4,0,0,0,0,0,-1021.894,1,-9,3,2021,10,0,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,1,1,0,0,0,13,1,0,2645,-33367.016,0,0,0,0,0,341.04102 +15535,19000,33851,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,6.6842761,7.2738252,0,0,-1067.649,0,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.827528,6.9635057,47.53,49.72,-9,-9,10,1,1,0,0,0,11,2,1,605,187923.19,37179.281,171760.23,0,0,0,1337.5374 +15536,19001,33852,33853,-9,-9,1,1,79,0,0,0,2,2,-9,0,2,0,0,0,12,1,-61.194981,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.3246274,0,61.46,32.8,47.74,22.5,8.333333333333334,1,1,0,0,0,2,2,1,1012.5,110838.32,107726.07,80883.836,0,0,0,1547.1453 +15536,19001,33853,33852,-9,-9,1,0,78,0,0,0,2,2,-9,0,2,0,5.1584368,5.137517,12,-1,-55.817719,0,3,3,2021,15,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.5682821,47.74,22.5,61.46,32.8,5,1,1,0,0,0,2,2,1,1012.5,110838.32,107726.07,80883.836,0,0,0,1547.1453 +15537,19002,33854,33855,-9,-9,1,1,44,0,1,0,1,1,-9,0,3,8.0616312,8.2192507,0,19,-4,-17.356815,0,2,1,2021,9,1,37,40,1,1,0,10.887073,10.887073,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.18,41.36,43.86,45.12,6.666666666666667,1,1,0,1,8,1,5,0,494.33334,341280.97,-28502.596,287031.47,67454.906,0,0,4005.1638 +15537,19002,33855,33854,-9,-9,1,0,48,0,1,0,1,1,-9,0,2,8.3601704,8.3963032,0,10,4,37.914238,0,1,1,2021,14,4,12,55,1,4,0,54.513279,54.513279,.05,.05,0,0,0,0,0,0,1,1,0,1.101969,0,43.86,45.12,51.18,41.36,3.333333333333333,1,1,0,1,10,1,5,0,494.33334,341280.97,-28502.596,287031.47,67454.906,0,0,4005.1638 +15537,19002,33856,-9,33855,33854,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-897.87286,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,0,494.33334,341280.97,-28502.596,287031.47,67454.906,0,0,4005.1638 +15538,19003,33857,33858,-9,-9,1,1,31,0,1,0,3,3,-9,1,3,0,0,0,9,2,0,0,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,28.69,45,36.02,21.52,3.333333333333333,1,1,0,0,2,7,1,0,1402.6666,365211.63,-19750.373,528529.13,198235.05,0,0,2946.6021 +15538,19003,33858,33857,-9,-9,1,0,29,0,1,0,2,2,-9,1,2,0,0,0,9,-2,0,0,-9,-9,2021,26,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.02,21.52,28.69,45,1.666666666666667,1,1,0,0,0,7,1,0,1402.6666,365211.63,-19750.373,528529.13,198235.05,0,0,2946.6021 +15538,19003,33859,-9,33858,33857,1,1,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.6731,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,7,1,0,1402.6666,365211.63,-19750.373,528529.13,198235.05,0,0,2946.6021 +15539,19004,33860,33861,-9,-9,1,1,42,0,2,0,2,2,-9,0,4,9.0498381,9.3432846,0,7,1,-131.94797,0,-9,-9,2021,9,0,35,35,1,1,0,28.536001,28.536001,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51,56,54.69,57.47,8,1,1,0,0,1,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15539,19004,33861,33860,-9,-9,1,0,41,0,2,0,2,2,-9,0,5,8.9175825,8.8891897,0,13,-1,-123.8312,0,-9,-9,2021,6,0,35,30,1,0,0,29.080791,29.080791,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.69,57.47,51,56,8.333333333333334,1,1,0,0,9,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15539,19004,33862,-9,33861,33860,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1065.1543,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15539,19004,33863,-9,33861,33860,1,0,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-853.04132,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,5,1,396.25,168512.28,102226.8,484222.06,357721.91,0,0,5749.5771 +15540,19005,33864,-9,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,0,0,0,0,-1051.6071,0,3,2,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,11.423546,0,0,1,1,0,0,0,42.1,28.12,-9,-9,6.666666666666667,1,1,0,0,0,12,1,0,1139,-12411.338,0,86741.406,0,0,0,833.22931 +15541,19006,33865,33866,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,8.2289162,8.3914776,0,36,0,12.488426,0,3,3,2021,11,0,24,24,1,2,0,21.9974,21.9974,0,0,0,0,0,0,0,0,0,0,0,0,0,49,48,57.73,41.33,7,3,4,0,1,12,4,5,0,1656.5,1159909.9,724543.81,334181.97,0,0,0,2762.8369 +15541,19006,33866,33865,-9,-9,1,1,65,0,0,0,2,2,-9,0,2,7.9455314,8.108633,0,11,0,97.71933,0,3,3,2021,11,1,60,48,1,1,0,6.4567432,6.4567432,0,0,0,0,0,0,0,2,0,0,0,0,0,57.73,41.33,49,48,5,3,4,0,0,13,4,5,0,1656.5,1159909.9,724543.81,334181.97,0,0,0,2762.8369 +15541,19007,33867,-9,33865,33866,1,1,29,0,0,0,2,2,-9,0,2,8.250845,8.1747065,0,0,0,-999.74219,0,3,3,2021,19,7,54,50,1,7,0,7.6925969,7.6925969,.05,.05,0,0,0,0,0,0,0,0,0,0,0,19.54,54.87,-9,-9,3.333333333333333,3,4,0,1,6,4,4,0,474,358542.63,45306.641,89609.969,30869.678,8062.9395,1879.2097,942.58673 +15542,19008,33868,33870,-9,-9,1,0,36,1,1,0,1,1,-9,0,5,8.2966976,8.1059456,0,6,0,-59.324013,0,1,1,2021,12,1,22,38,1,1,0,21.762531,21.762531,0,0,0,0,0,0,0,0,1,1,0,3.8401618,0,45.81,61.51,31.93,61.09,8.333333333333334,1,1,0,0,12,2,5,1,781,58698.984,0,181075.16,158951.02,18107.936,14747.623,3711.5688 +15542,19008,33869,-9,33868,33870,1,0,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1063.4796,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,2,5,1,781,58698.984,0,181075.16,158951.02,18107.936,14747.623,3711.5688 +15542,19008,33870,33868,-9,-9,1,1,36,1,1,0,1,1,-9,0,4,9.0795279,8.6522837,0,6,0,103.91983,0,-9,-9,2021,17,5,38,38,1,5,0,17.862104,17.862104,0,0,0,0,0,0,0,0,1,1,0,4.5140162,0,31.93,61.09,45.81,61.51,5,1,1,0,0,10,2,5,1,781,58698.984,0,181075.16,158951.02,18107.936,14747.623,3711.5688 +15543,19009,33871,33872,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,0,0,0,25,-1,44.229328,0,2,1,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.54,58.08,60.76,47.53,6.666666666666667,1,1,0,0,0,8,5,1,875,1591190.5,384234.69,821872.13,0,0,0,7425.1855 +15543,19009,33872,33871,-9,-9,1,1,55,0,1,0,1,1,-9,0,4,9.7039146,9.8703594,0,24,1,-26.095623,0,3,2,2021,6,0,37,55,1,0,0,57.421394,57.421394,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.76,47.53,38.54,58.08,10,1,1,0,0,10,8,5,1,875,1591190.5,384234.69,821872.13,0,0,0,7425.1855 +15543,19010,33873,-9,33871,33872,1,1,19,0,1,1,2,0,-9,0,5,0,0,0,0,0,-980.21112,-9,1,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,62.39,56.71,-9,-9,10,1,1,0,0,4,8,1,1,680,0,0,0,0,0,0,-224.99194 +15544,19011,33874,33875,-9,-9,1,1,56,0,0,0,2,2,-9,0,4,7.5908298,7.7758079,0,10,1,69.865974,-9,-9,-9,2021,18,7,45,0,1,7,0,6.5982776,6.5982776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.56,61.79,47.52,54.14,5,1,1,0,0,10,8,4,1,301.5,598152.75,29622.291,395986.63,48540.48,1072.0443,0,1494.6802 +15544,19011,33875,33874,-9,-9,1,0,55,0,0,0,2,2,-9,0,4,7.6852555,7.6572628,0,37,-1,-67.347824,0,2,2,2021,12,1,23,23,1,1,0,10.760935,10.760935,0,0,0,0,0,0,0,0,0,0,0,2.721736,0,47.52,54.14,41.56,61.79,6.666666666666667,4,2,0,0,11,8,4,1,301.5,598152.75,29622.291,395986.63,48540.48,1072.0443,0,1494.6802 +15545,19012,33876,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,5,0,7.2514391,7.5295906,0,0,-1019.8287,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.2312851,46.21,58.07,-9,-9,1.666666666666667,1,1,0,0,8,11,3,1,159,1074927.6,155083.06,416848.88,0,0,0,1214.3138 +15546,19013,33877,33878,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,0,0,0,1,4,0,-9,-9,-9,2021,11,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,46.54,52.62,35.61,22.34,3.333333333333333,1,1,0,0,3,9,1,0,1069.5,430199.69,612804.25,0,0,0,0,103.57539 +15546,19013,33878,33877,-9,-9,1,1,44,0,0,0,3,3,-9,1,2,0,0,0,1,-4,0,-9,-9,-9,2021,13,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,0,0,35.61,22.34,46.54,52.62,8.333333333333334,1,1,0,0,0,9,1,0,1069.5,430199.69,612804.25,0,0,0,0,103.57539 +15546,19014,33879,-9,33877,33878,1,1,20,0,0,0,2,2,-9,0,3,7.9213901,7.9198155,0,0,0,-978.51947,0,2,3,2021,15,2,56,40,1,2,1,5.5067244,5.5067244,.05,.05,0,0,0,0,0,0,1,1,0,0,0,53.38,52.51,-9,-9,6.666666666666667,1,1,0,0,3,9,4,0,347,154562.44,-31201.543,0,0,0,0,1000.3688 +15547,19015,33880,-9,-9,-9,1,1,21,0,0,0,1,1,1,0,4,7.688777,7.7642603,0,0,0,-958.21185,-9,-9,-9,2021,6,0,41,0,1,0,0,7.9910941,7.9910941,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,1,4,3,0,1188,-4370.0684,19082.711,0,0,0,0,1140.0831 +15548,19016,33881,33882,-9,-9,1,1,45,0,0,0,3,3,-9,0,4,8.3701248,8.4852219,0,6,3,86.773262,0,-9,-9,2021,9,0,30,30,1,1,0,18.031029,18.031029,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52,55,46.29,54.22,8,1,1,0,0,1,12,4,0,468.5,528042.44,295893,205354.13,40216.395,11067.187,0,2583.2642 +15548,19016,33882,33881,-9,-9,1,0,42,0,0,0,3,3,-9,0,4,7.5814381,7.52139,0,6,-3,74.252716,0,-9,3,2021,7,0,39,30,1,0,0,6.3490644,6.3490644,.05,.05,0,0,0,0,0,7,1,1,0,0,0,46.29,54.22,52,55,8.333333333333334,1,1,0,0,3,12,4,0,468.5,528042.44,295893,205354.13,40216.395,11067.187,0,2583.2642 +15549,19017,33883,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.7636867,5.2599783,0,0,-1068.068,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.2872676,5.6375222,62.25,45.63,-9,-9,8.333333333333334,1,1,0,0,6,1,2,1,1226,621396.63,47415.059,269765.88,0,0,0,1395.5022 +15550,19018,33884,-9,-9,-9,1,1,49,0,0,0,2,2,-9,0,5,8.0601988,8.2562923,0,0,0,-897.64557,0,2,2,2021,6,0,40,42,1,0,0,10.53766,10.53766,.05,.05,0,0,0,0,0,0,1,1,0,5.0083766,0,52.21,59.91,-9,-9,8.333333333333334,1,1,0,0,7,5,4,1,150,197763.98,-6592.1685,0,0,0,0,1588.9026 +15551,19019,33885,-9,-9,-9,1,1,55,0,0,0,3,3,-9,0,4,0,0,0,0,0,-900.59381,0,3,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,70.39,40.52,-9,-9,6.666666666666667,1,1,1,0,0,6,1,0,813,-86852.219,0,0,0,0,1060.2208,1584.6537 +15552,19020,33886,33889,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,2.0875335,2.3450043,0,1,1,30.642569,-9,2,2,2021,12,0,50,0,1,0,0,.023485426,.023485426,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.77,55.87,44.02,60.7,8.333333333333334,1,1,0,0,11,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15552,19020,33887,-9,33889,33886,1,0,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-975.80511,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15552,19020,33888,-9,33889,33886,1,1,5,0,2,1,3,0,-9,0,4,0,0,0,0,0,-919.89783,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15552,19020,33889,33886,-9,-9,1,0,37,0,2,0,2,2,-9,0,4,7.2967253,7.477253,0,1,-1,7.9357991,-9,-9,-9,2021,11,1,22,0,1,1,0,8.6882668,8.6882668,0,0,0,0,0,0,0,0,1,1,0,0,0,44.02,60.7,54.77,55.87,8.333333333333334,1,1,0,0,11,13,2,1,1196.5,-48306.938,-31714.127,0,0,2551.729,-361.3306,842.73346 +15553,19021,33890,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,7.5960407,7.7863336,0,0,-911.08875,0,3,3,2021,28,10,0,0,4,10,0,0,0,0,0,0,1,5.8436012,0,47.097427,0,1,1,0,3.5056322,7.6366134,27.26,25.55,-9,-9,1.666666666666667,1,1,0,0,0,10,3,1,6697,1384242.8,396089.06,581370.5,0,0,0,3116.1277 +15554,19022,33891,-9,33892,33894,1,0,12,0,2,1,3,0,-9,0,5,0,0,0,0,0,-937.93414,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15554,19022,33892,33894,-9,-9,1,0,48,0,2,0,2,2,-9,0,3,8.7196436,8.3388653,0,7,3,32.399204,0,2,3,2021,17,6,54,70,1,6,0,8.6127205,8.6127205,0,0,0,0,0,0,0,0,1,1,0,0,0,45.65,55.86,63.41,29.17,6.666666666666667,1,1,0,0,7,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15554,19022,33893,-9,33892,33894,1,0,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-895.29456,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15554,19022,33894,33892,-9,-9,1,1,45,0,2,0,3,3,-9,1,2,0,0,0,7,-3,37.411156,0,2,2,2021,12,1,0,0,3,1,0,0,0,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,63.41,29.17,45.65,55.86,8.333333333333334,1,1,0,0,0,13,3,1,677.25,995109.31,603202,468619.34,176907.16,0,0,1955.6589 +15555,19023,33895,33896,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,1.5659007,1.5257677,50,4,42.001789,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,1.6341866,62.42,45.64,48.69,41.09,8.333333333333334,1,1,0,0,3,2,2,1,1265,45908.602,0,0,0,0,0,1022.375 +15555,19023,33896,33895,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,0,0,50,-4,110.12642,0,2,2,2021,16,5,0,0,4,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.4379603,0,48.69,41.09,62.42,45.64,8.333333333333334,1,1,0,1,5,2,2,1,1265,45908.602,0,0,0,0,0,1022.375 +15556,19024,33897,-9,-9,-9,1,0,60,0,0,0,3,3,-9,0,3,0,6.2897673,5.9050283,0,0,-1119.0631,-9,3,2,2021,11,0,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.0185065,49,48,-9,-9,7,2,3,0,0,0,8,2,0,603,203716.31,0,237400.97,0,0,0,-530.3197 +15556,19025,33898,-9,33897,-9,1,1,25,0,0,0,2,2,-9,0,3,8.405654,8.0049982,0,0,0,-896.89221,-9,2,2,2021,17,8,40,0,1,8,0,10.640994,10.640994,.05,.05,0,0,0,0,0,0,0,0,0,.11025828,0,28.66,58.78,-9,-9,3.333333333333333,2,3,0,1,6,8,4,0,828,-74647.469,-5714.2109,0,0,0,0,2508.0183 +15557,19026,33899,-9,-9,-9,1,1,56,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1110.0378,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,1,0,10,1,0,837,3763.2544,95602.586,0,0,9109.0654,0,1303.3782 +15558,19027,33900,-9,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,7.7411485,7.8556266,0,0,0,-993.15979,0,-9,-9,2021,6,0,25,45,1,0,0,11.882539,11.882539,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,10,13,3,1,241,-231147.58,-52000.84,0,0,2857.3679,0,1771.4303 +15559,19028,33901,-9,-9,-9,1,0,48,0,1,0,1,1,-9,1,2,0,6.924655,7.1082344,0,0,-931.68994,0,2,3,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9461651,58.31,26.72,-9,-9,3.333333333333333,1,1,0,0,8,11,2,1,280,123476.12,143417.67,0,0,0,0,2007.9017 +15560,19029,33902,33903,-9,-9,1,1,75,0,0,0,2,2,-9,0,3,0,6.094214,5.6778316,49,6,96.403664,0,2,2,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9655418,5.7499089,54.9,54.53,51.14,47.87,5,1,1,0,0,0,5,2,1,217,1095581.8,0,263918.19,0,0,0,1784.1525 +15560,19029,33903,33902,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,5.1490784,5.1528111,49,-6,126.70224,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5633807,5.0890718,51.14,47.87,54.9,54.53,8.333333333333334,1,1,0,0,0,5,2,1,217,1095581.8,0,263918.19,0,0,0,1784.1525 +15561,19030,33904,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,3,8.6585426,8.8183165,0,0,0,-965.75336,0,-9,-9,2021,13,1,20,17,1,1,0,31.558479,31.558479,.05,.05,0,0,0,0,0,0,0,0,0,0,0,28.72,55.83,-9,-9,6.666666666666667,1,1,0,0,9,2,5,1,942,228004.58,30431.201,0,0,0,0,1758.2443 +15562,19031,33905,33906,-9,-9,1,1,66,0,0,0,1,1,-9,0,4,0,0,0,48,-1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.9110303,0,51.83,57.2,51.83,57.2,10,1,1,0,0,0,12,2,1,1193,988574.69,580724.81,314947.88,0,0,0,1516.9739 +15562,19031,33906,33905,-9,-9,1,0,67,0,0,0,2,2,-9,0,4,0,0,0,48,1,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,51.83,57.2,8.333333333333334,1,1,0,0,0,12,2,1,1193,988574.69,580724.81,314947.88,0,0,0,1516.9739 +15563,19032,33907,-9,-9,-9,1,0,44,0,0,0,2,2,-9,1,2,0,0,0,0,0,-956.93115,0,3,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,40.2,23.25,-9,-9,5,2,3,0,1,0,8,1,0,4343,-146403.92,0,0,0,0,0,2134.531 +15564,19033,33908,-9,-9,-9,1,0,63,0,0,0,2,2,-9,0,3,7.9133029,7.7662635,0,0,0,-1110.0842,0,-9,2,2021,6,0,21,35,1,0,0,16.249008,16.249008,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.77,39.97,-9,-9,10,1,1,0,0,10,12,4,0,163,-75495.883,-5972.1172,0,0,0,0,1433.4005 +15565,19034,33909,-9,33910,33911,1,0,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1054.298,-9,1,2,2021,12,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15565,19034,33910,33911,-9,-9,1,0,30,1,2,0,1,1,-9,0,4,8.2119837,7.7583694,0,7,-1,25.342398,0,2,2,2021,6,1,4,4,1,1,0,90.958656,90.958656,0,0,0,0,0,0,0,0,1,1,0,0,0,56.68,42.62,60.52,53.2,8.333333333333334,3,4,0,0,7,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15565,19034,33911,33910,-9,-9,1,1,31,1,2,0,2,2,-9,0,4,7.803607,7.6261644,0,7,1,50.752262,0,-9,-9,2021,4,0,36,34,1,0,0,6.7979679,6.7979679,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.52,53.2,56.68,42.62,8.333333333333334,1,1,0,0,6,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15565,19034,33912,-9,33910,33911,1,1,13,1,2,1,3,0,-9,0,4,0,0,0,0,0,-916.43524,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,3,0,935,76720.984,-916.86719,195192.83,154470.22,0,3935.1782,3141.2935 +15566,19035,33913,33914,-9,-9,1,0,58,0,0,0,2,2,-9,0,2,8.1557722,7.8013453,0,10,-6,-37.82296,0,3,3,2021,16,4,44,39,1,4,0,8.4432459,8.4432459,0,0,0,0,0,0,0,42,1,1,0,3.9173224,0,27.8,37.35,25.68,22.39,5,1,1,0,1,15,12,3,0,301.5,2011818.3,1504020.8,215748.97,0,0,3109.5278,2273.6196 +15566,19035,33914,33913,-9,-9,1,1,64,0,0,0,2,2,-9,1,1,0,0,0,10,6,11.825194,0,-9,-9,2021,29,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.68,22.39,27.8,37.35,1.666666666666667,1,1,0,1,6,12,3,0,301.5,2011818.3,1504020.8,215748.97,0,0,3109.5278,2273.6196 +15567,19036,33915,33916,-9,-9,1,0,30,0,0,0,2,2,-9,0,3,7.1519761,7.1708407,0,5,-15,28.891781,0,2,2,2021,12,3,21,22,1,3,0,5.9626374,5.9626374,0,0,0,0,0,0,0,0,1,1,0,2.6193633,0,43.71,56.91,38.04,58.33,6.666666666666667,1,1,0,0,7,12,2,0,594,-71903.578,0,194877.94,133565,11080.865,0,1332.5637 +15567,19036,33916,33915,-9,-9,1,1,45,0,0,0,2,2,-9,0,3,0,0,0,5,15,36.314415,-9,-9,-9,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,38.04,58.33,43.71,56.91,5,1,1,1,0,1,12,2,0,594,-71903.578,0,194877.94,133565,11080.865,0,1332.5637 +15568,19037,33917,33918,-9,-9,1,0,29,0,0,0,1,1,-9,0,3,8.3834038,8.3236141,0,7,-2,50.788986,0,2,3,2021,7,2,37,43,1,2,0,10.904722,10.904722,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.93,50.55,54.2,57.49,8.333333333333334,1,1,0,0,8,9,5,0,911,137135.34,-25470.633,0,0,0,0,2730.6025 +15568,19037,33918,33917,-9,-9,1,1,31,0,0,0,2,2,-9,0,4,8.1132517,8.1506071,0,7,2,-88.091736,0,-9,-9,2021,10,0,50,37,1,1,0,7.722548,7.722548,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.93,50.55,6.666666666666667,1,1,0,0,6,9,5,0,911,137135.34,-25470.633,0,0,0,0,2730.6025 +15569,19038,33919,-9,-9,-9,1,0,49,0,0,0,1,1,-9,0,5,8.3711348,8.7804308,6.2219276,0,0,-959.67224,0,3,2,2021,11,1,41,47,1,1,0,13.409047,13.409047,.05,.05,0,0,0,0,0,0,0,0,0,5.9606757,0,48.77,60.16,-9,-9,8.333333333333334,1,1,0,0,11,5,5,1,709,281062.19,-50939.973,111264.78,18614.621,0,4978.1895,2424.8374 +15570,19039,33920,33921,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,8.2655849,8.3606548,43,-3,7.2474194,0,1,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4327164,7.8002553,54.37,54.8,58.33,47.36,8.333333333333334,1,1,0,0,6,12,3,1,939,931668.69,887152.63,194172.5,0,13024.77,0,3118.7156 +15570,19039,33921,33920,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.7971458,6.5511298,43,3,22.22241,0,1,1,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,6.0154924,5.9529939,58.33,47.36,54.37,54.8,8.333333333333334,1,1,0,0,6,12,3,1,939,931668.69,887152.63,194172.5,0,13024.77,0,3118.7156 +15571,19040,33922,-9,-9,-9,1,0,70,0,0,0,3,3,-9,0,1,0,0,0,0,0,-954.25128,0,3,3,2021,23,11,0,0,4,11,0,0,0,0,0,0,1,0,10.14827,0,0,1,1,0,0,0,24.39,20.22,-9,-9,1.666666666666667,1,1,0,0,0,11,1,0,1330,-51961.871,0,0,0,0,0,1504.5542 +15572,19041,33923,33924,-9,-9,1,0,62,0,0,0,1,1,-9,0,3,7.9279857,8.1095352,7.0401263,5,7,-80.808968,0,3,2,2021,6,0,37,37,1,0,0,11.95979,11.95979,.05,.05,0,0,0,0,0,0,0,0,0,5.8490877,7.0248132,58.89,48.6,51.73,56.3,6.666666666666667,1,1,0,0,11,4,5,1,208,1186882.3,882208.25,95154.141,0,0,0,3253.3616 +15572,19041,33924,33923,-9,-9,1,1,55,0,0,0,1,1,-9,0,4,8.2044659,8.4289017,0,5,-7,24.196676,0,2,2,2021,11,3,39,30,1,3,0,13.132038,13.132038,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,51.73,56.3,58.89,48.6,5,1,1,0,1,11,4,5,1,208,1186882.3,882208.25,95154.141,0,0,0,3253.3616 +15573,19042,33925,-9,-9,-9,1,0,40,0,3,0,1,1,-9,1,4,7.5537653,7.7851558,0,0,0,-986.20135,0,3,1,2021,20,8,18,19,1,8,0,13.858138,13.858138,.05,.05,0,0,0,0,0,42,1,1,0,0,0,45.91,59.89,-9,-9,1.666666666666667,1,1,0,0,5,9,3,1,539.5,195228.3,-27620.867,0,0,0,0,2669.9146 +15573,19042,33926,-9,33925,-9,1,1,5,0,3,1,3,0,-9,0,4,0,0,0,0,0,-960.4566,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,9,3,1,539.5,195228.3,-27620.867,0,0,0,0,2669.9146 +15574,19043,33927,-9,-9,-9,1,1,30,0,0,0,2,2,-9,0,4,7.7580094,7.5005794,0,0,0,-950.34546,0,3,3,2021,7,0,40,8,1,0,1,7.3662601,7.3662601,0,0,0,0,0,0,0,0,0,0,0,2.2676542,0,59.53,56.44,-9,-9,10,2,3,0,0,7,7,3,1,1375,0,0,0,0,0,0,1623.1404 +15574,19044,33928,-9,-9,-9,1,0,20,0,0,1,2,0,0,0,5,0,0,0,0,0,-1124.6705,-9,3,3,2021,5,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,59.43,58.05,-9,-9,10,2,3,0,0,0,7,2,1,2461,61954.895,0,0,0,0,0,0 +15574,19045,33929,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,8.7118826,8.2895222,0,0,0,-977.48938,0,3,3,2021,6,0,40,40,1,0,1,14.258927,14.258927,0,0,0,0,0,0,0,0,0,0,0,0,0,50,61,-9,-9,10,2,3,0,0,3,7,5,1,179,136448.44,-87113.297,0,0,0,0,1517.616 +15575,19046,33930,-9,-9,-9,1,0,88,0,0,0,3,3,-9,0,3,0,0,0,0,0,-1034.9552,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,.16499835,2.3836734,24.026096,2,1,1,0,4.3781219,0,53,44,-9,-9,8,1,1,0,0,0,1,1,1,610,0,0,0,0,0,0,1231.2318 +15576,19047,33931,33932,-9,-9,1,1,31,0,0,0,2,2,-9,0,2,8.1391525,8.2136135,0,2,0,-2.7695456,0,-9,-9,2021,18,6,44,47,1,6,0,8.0562983,8.0562983,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,30.37,52.74,46.79,41.89,3.333333333333333,1,1,0,0,11,10,5,1,1430.5,123344.31,18147.254,261858.38,84736.773,0,1885.433,3146.7778 +15576,19047,33932,33931,-9,-9,1,0,31,0,0,0,2,2,-9,0,3,8.1275682,8.0974236,0,2,0,-128.8452,-9,-9,-9,2021,12,0,40,0,1,0,0,7.9973683,7.9973683,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.79,41.89,30.37,52.74,6.666666666666667,1,1,0,0,2,10,5,1,1430.5,123344.31,18147.254,261858.38,84736.773,0,1885.433,3146.7778 +15577,19048,33933,-9,-9,-9,1,0,42,0,1,0,3,3,-9,0,4,7.4663787,7.4659805,0,0,0,-1075.681,0,2,2,2021,13,2,20,20,1,2,0,9.9026871,9.9026871,0,0,0,0,0,0,0,0,1,1,0,0,0,36.62,58.96,-9,-9,5,1,1,0,0,6,13,3,0,171,242907.27,0,183743.31,12620.198,0,0,701.20935 +15577,19049,33934,-9,33933,-9,1,0,22,0,1,0,2,2,-9,0,4,7.9141569,7.8887825,0,0,0,-927.70709,0,3,-9,2021,6,0,37,45,1,0,1,8.5423098,8.5423098,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,5,13,4,0,1362,-19954.9,-18980.941,0,0,0,-99.060257,1074.8545 +15578,19050,33935,-9,33936,33937,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1150.1791,-9,2,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,1,1,-9,0,0,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15578,19050,33936,33937,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.5928593,8.5897474,0,16,-1,-6.0602174,0,2,2,2021,20,8,37,38,1,8,0,21.992764,21.992764,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.98,40.81,52.16,46.15,5,1,1,0,0,11,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15578,19050,33937,33936,-9,-9,1,1,48,0,2,0,2,2,-9,0,3,8.4319887,8.1488094,0,9,1,47.649742,0,2,2,2021,8,0,10,45,1,0,0,65.066406,65.066406,.05,.05,0,0,0,0,0,0,1,1,0,1.6518807,0,52.16,46.15,34.98,40.81,5,1,1,0,0,11,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15578,19050,33938,-9,33936,33937,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1118.9526,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,2,5,1,439.5,799058.56,151678.39,241494.33,230503.34,0,0,4110.979 +15579,19051,33939,-9,-9,-9,1,1,51,0,0,0,2,2,-9,0,3,8.7471075,8.540513,0,0,0,-1047.8092,0,2,2,2021,10,0,50,40,1,0,0,17.582586,17.582586,.05,.05,.05,0,0,0,.58064473,0,0,0,0,2.7263029,0,51.66,54.88,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,297,3762057.8,3303487.3,148216.23,0,0,0,2014.3191 +15580,19052,33940,33941,-9,-9,1,0,56,0,0,0,3,3,-9,0,4,6.8897176,7.3309183,0,17,6,11.611534,0,2,2,2021,6,0,15,25,1,0,0,8.7877226,8.7877226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.87,51.29,43.85,44.81,8.333333333333334,1,1,0,0,13,10,4,1,266,275824.97,2431.8203,188310.64,-3889.0381,1791.1443,0,2816.282 +15580,19052,33941,33940,-9,-9,1,1,50,0,0,0,2,2,-9,0,3,8.439991,8.3429708,0,12,-6,-45.507404,0,-9,-9,2021,11,1,45,48,1,1,0,12.588036,12.588036,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,43.85,44.81,58.87,51.29,5,1,1,0,0,13,10,4,1,266,275824.97,2431.8203,188310.64,-3889.0381,1791.1443,0,2816.282 +15581,19053,33942,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,3,7.6018901,7.7265296,0,0,0,-1049.2388,0,3,3,2021,15,3,30,0,1,3,0,8.8176317,8.8176317,0,0,.05,0,0,0,0,0,0,0,0,0,0,40.58,54.32,-9,-9,8.333333333333334,1,1,0,0,1,13,3,0,1446,351094.16,130528.81,0,0,0,0,946.33032 +15582,19054,33943,33944,-9,-9,1,1,64,0,0,0,2,2,-9,0,1,6.7883201,6.9292455,5.1023459,36,6,-103.30749,0,2,2,2021,24,11,10,30,1,11,0,10.361546,10.361546,0,0,0,0,0,0,0,7,1,1,0,5.645503,5.5389977,31.1,29.35,53,52,1.666666666666667,1,1,0,0,9,9,3,1,950.5,1443376.8,1084729.3,289738.81,0,0,0,1645.4443 +15582,19054,33944,33943,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,7.7285056,7.6907411,0,6,-6,28.641708,0,2,2,2021,10,0,45,45,1,1,0,5.8111949,5.8111949,0,0,0,0,0,0,0,0,1,1,0,0,0,53,52,31.1,29.35,8,1,1,0,0,1,9,3,1,950.5,1443376.8,1084729.3,289738.81,0,0,0,1645.4443 +15583,19055,33945,33947,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,7.1159201,7.2332687,0,6,-1,-13.462941,0,-9,-9,2021,10,0,35,20,1,1,0,5.810636,5.810636,0,0,0,0,0,0,0,0,1,1,0,0,0,51,54,45.97,51.9,8,3,4,0,0,1,8,3,1,886.66669,1270385.1,134693.61,1728384.6,991912.94,0,0,1444.6854 +15583,19055,33946,-9,33945,33947,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1081.8099,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,59,-9,-9,7,3,4,-9,0,0,8,3,1,886.66669,1270385.1,134693.61,1728384.6,991912.94,0,0,1444.6854 +15583,19055,33947,33945,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,7.0788569,6.9741912,0,24,1,-14.847772,0,2,2,2021,15,3,30,60,1,3,0,5.1930118,5.1930118,.05,.05,0,0,0,0,0,0,1,1,0,0,0,45.97,51.9,51,54,3.333333333333333,3,4,0,1,8,8,3,1,886.66669,1270385.1,134693.61,1728384.6,991912.94,0,0,1444.6854 +15584,19056,33948,-9,-9,-9,1,1,79,0,0,0,3,3,-9,0,4,0,7.2554145,7.5947437,0,0,-999.33569,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.7412605,7.5493159,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,0,12,3,1,1108,547999.75,396775,80450.648,0,0,0,1500.0504 +15585,19057,33949,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,3,8.3308716,8.4054461,0,0,0,-919.4552,0,2,2,2021,8,0,70,50,1,0,0,6.682538,6.682538,0,0,0,0,0,0,0,0,0,0,0,0,0,47.78,52.35,-9,-9,8.333333333333334,1,1,0,0,11,4,4,0,305,400404.59,-111301.38,68604.961,0,0,0,1319.9404 +15586,19058,33950,-9,-9,-9,1,0,67,0,0,0,3,3,-9,0,5,0,0,0,0,0,-945.55396,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,63.14,44.01,-9,-9,10,1,1,0,0,0,5,1,0,571,160386.14,0,0,0,0,0,1001.5778 +15587,19059,33951,-9,-9,-9,1,0,72,0,0,0,1,1,-9,0,4,0,7.5193725,7.6244736,0,0,-1072.6504,0,2,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,.71794838,8.0006189,58.15,52.91,-9,-9,10,1,1,0,0,0,12,3,1,252,496237.63,196706.72,234393.66,0,0,0,1219.2927 +15588,19060,33952,-9,-9,-9,1,1,56,0,0,0,2,2,-9,0,2,8.5874262,8.7709064,0,0,0,-1073.2419,0,2,2,2021,12,0,50,55,1,0,0,15.732002,15.732002,.05,.05,0,0,0,0,0,0,1,1,0,5.2892914,0,49.71,42.44,-9,-9,8.333333333333334,1,1,0,0,9,1,5,1,680,315193.97,3305.6248,168414.59,0,0,0,2271.7771 +15589,19061,33953,-9,-9,-9,1,0,34,0,0,0,3,3,-9,1,1,0,0,0,0,0,-1101.6636,0,-9,-9,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,19.25,32.11,-9,-9,0,1,1,0,1,0,6,1,0,184,123126.73,0,0,0,.8000055,0,1771.9636 +15590,19062,33954,33955,-9,-9,1,1,37,0,1,0,2,2,-9,0,5,0,0,0,4,7,0,0,-9,-9,2021,19,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,7,1,0,1,0,0,52,59,31.67,40.94,8.333333333333334,3,4,1,0,1,8,1,0,840.5,8022.5635,0,0,0,0,0,324.38599 +15590,19062,33955,33954,-9,-9,1,0,30,0,1,0,2,2,-9,1,3,0,0,0,4,-7,0,0,3,-9,2021,16,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,27,1,0,1,0,0,31.67,40.94,52,59,5,3,4,0,0,1,8,1,0,840.5,8022.5635,0,0,0,0,0,324.38599 +15591,19063,33956,-9,33957,33959,1,0,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1038.3771,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,41,55,-9,-9,6,1,1,-9,0,0,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19063,33957,33959,-9,-9,1,0,38,0,2,0,2,2,-9,0,4,7.3096128,7.085505,4.6993389,20,-1,-49.904701,0,3,2,2021,16,4,24,24,1,4,0,5.1810594,5.1810594,0,0,0,0,0,0,0,0,1,0,1,5.0996714,0,42.7,58.55,33.15,21.15,1.666666666666667,1,1,0,0,11,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19063,33958,-9,33957,33959,1,0,15,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1025.7375,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,42,54,-9,-9,6,1,1,-9,0,0,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19063,33959,33957,-9,-9,1,1,39,0,2,0,2,2,-9,0,2,0,0,0,19,1,-52.666393,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,33.15,21.15,42.7,58.55,3.333333333333333,1,1,0,0,0,2,2,0,845.5,95371.32,0,0,0,982.24841,568.18787,1691.521 +15591,19064,33960,-9,33957,33959,1,0,18,0,2,0,2,2,-9,0,1,0,0,0,0,0,-1025.4617,0,2,2,2021,12,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.62590277,0,27.16,53.01,-9,-9,3.333333333333333,1,1,1,0,0,2,1,0,552,17190.445,0,0,0,0,0,316.19061 +15592,19065,33961,33962,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,7.6870432,7.8571811,0,2,-23,169.43591,0,-9,-9,2021,15,4,31,29,1,4,0,6.2514696,6.2514696,0,0,0,0,0,0,0,0,1,1,0,1.1930226,0,44.81,57.83,35.78,41.87,1.666666666666667,1,1,0,0,8,7,4,1,912,184044.78,57393.594,0,0,0,0,3161.5396 +15592,19065,33962,33961,-9,-9,1,1,82,0,0,0,2,2,-9,0,2,0,8.3841562,8.1572399,2,23,134.58455,0,3,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,0,7.7554955,35.78,41.87,44.81,57.83,6.666666666666667,1,1,0,0,0,7,4,1,912,184044.78,57393.594,0,0,0,0,3161.5396 +15593,19066,33963,-9,-9,-9,1,0,91,0,0,0,2,2,-9,0,5,0,5.8966427,5.9298725,0,0,-970.22882,0,2,2,2021,5,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4131169,5.76509,51.98,57.55,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,380,447595.31,129381.78,182762.25,42181.301,2406.6597,0,756.67859 +15594,19067,33964,-9,-9,-9,1,1,25,0,0,0,1,1,-9,0,5,9.3677301,9.4053383,0,0,0,-1127.2875,0,1,1,2021,8,0,50,44,1,0,0,33.139896,33.139896,0,0,0,0,0,0,0,0,0,0,0,5.5898614,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,7,10,5,1,1454,-221790.23,-45.226101,0,0,4656.2339,0,5247.064 +15595,19068,33965,33966,-9,-9,1,1,48,0,2,0,2,2,-9,0,4,7.7673173,7.5892472,0,9,12,19.355148,0,3,3,2021,7,0,40,40,1,0,0,6.0970674,6.0970674,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,57.16,56.15,8.333333333333334,2,3,0,0,8,9,2,1,333,108653.03,-4359.54,0,0,0,232.11395,1414.1427 +15595,19068,33966,33965,-9,-9,1,0,36,0,2,0,3,3,-9,0,4,0,0,0,9,-12,-103.61126,-9,3,3,2021,9,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,51.83,57.2,8.333333333333334,2,3,0,0,0,9,2,1,333,108653.03,-4359.54,0,0,0,232.11395,1414.1427 +15596,19069,33967,-9,33969,33968,1,1,16,0,1,1,2,0,-9,0,5,0,0,0,0,0,-947.12659,-9,2,2,2021,3,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8654609,0,57.06,57.76,-9,-9,10,1,1,0,0,1,4,5,1,659,485952.25,401995.22,297612.03,49468.402,3033.6169,1453.8802,4618.2251 +15596,19069,33968,33969,-9,-9,1,1,41,0,1,0,2,2,-9,0,4,8.7952328,8.8947802,0,20,-1,-46.122108,0,3,2,2021,5,0,45,35,1,0,0,22.88858,22.88858,.05,.05,.05,0,0,0,0,2,1,1,0,3.5564187,0,52.43,55.57,57.16,56.15,8.333333333333334,1,1,0,0,11,4,5,1,659,485952.25,401995.22,297612.03,49468.402,3033.6169,1453.8802,4618.2251 +15596,19069,33969,33968,-9,-9,1,0,42,0,1,0,2,2,-9,0,4,8.1985617,8.1518221,0,20,1,110.20112,0,3,2,2021,11,1,43,39,1,1,0,9.494339,9.494339,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,52.43,55.57,8.333333333333334,1,1,0,0,11,4,5,1,659,485952.25,401995.22,297612.03,49468.402,3033.6169,1453.8802,4618.2251 +15597,19070,33970,-9,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.1298561,6.1102562,0,0,-970.25421,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.9670753,56.91,49.54,-9,-9,8.333333333333334,1,1,0,0,9,7,2,0,456,415794.13,111689.44,0,0,0,0,265.27411 +15597,19071,33971,-9,33970,-9,1,1,32,0,0,0,2,2,-9,0,3,7.8887806,7.9397907,0,0,0,-946.33374,0,3,3,2021,0,0,56,40,1,0,0,6.5977798,6.5977798,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,-9,-9,6.666666666666667,1,1,0,0,8,7,4,0,901,147176.38,24979.859,0,0,0,0,909.46893 +15597,19072,33972,-9,-9,-9,1,0,51,0,0,0,3,3,-9,0,3,0,0,0,0,0,-972.03497,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.38,45.6,-9,-9,6.666666666666667,1,1,1,0,0,7,1,0,1202,461906.66,0,341081.56,11780.191,0,0,400.62259 +15598,19073,33973,-9,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1085.5662,0,2,2,2021,12,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8308805,0,51.49,31.73,-9,-9,6.666666666666667,1,1,0,0,0,7,1,0,133,82493.297,0,0,0,0,0,-266.51685 +15599,19074,33974,-9,-9,-9,1,0,75,0,0,0,2,2,-9,0,4,0,8.4754934,8.617548,0,0,-992.5683,0,-9,-9,2021,4,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0866954,8.6467552,62.49,55.09,-9,-9,6.666666666666667,1,1,0,0,0,12,5,0,487,700648.81,197049.75,297806.09,0,0,0,3649.7693 +15600,19075,33975,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,2,0,7.3960304,7.0634847,0,0,-1035.1614,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.5136518,6.8024273,47.72,28.25,-9,-9,8.333333333333334,1,1,0,0,0,10,2,1,1193,583496,395979.34,221383.73,0,6314.7573,0,2243.908 +15601,19076,33976,33977,-9,-9,1,1,49,0,1,0,2,2,-9,0,4,9.0034094,8.9951735,0,1,-2,37.297504,-9,-9,-9,2021,11,0,38,0,1,0,0,23.971127,23.971127,0,0,0,0,0,0,0,0,1,1,0,0,0,55.19,54.26,48,49,5,1,1,0,1,9,10,4,1,2026.5,11116.018,4659.4111,155679.25,116629.39,1833.6433,0,2711.6436 +15601,19076,33977,33976,-9,-9,1,0,51,0,1,0,2,2,-9,0,3,7.4234481,7.1220307,0,1,2,-101.59354,-9,-9,-9,2021,12,0,23,0,1,0,0,7.200655,7.200655,0,0,0,0,0,0,0,0,1,1,0,0,0,48,49,55.19,54.26,5,1,1,0,1,9,10,4,1,2026.5,11116.018,4659.4111,155679.25,116629.39,1833.6433,0,2711.6436 +15601,19077,33978,-9,33977,33976,1,1,27,0,1,0,2,2,-9,0,5,7.2681017,7.0611248,0,0,0,-1007.9461,-9,2,2,2021,12,0,30,0,1,0,1,5.2104931,5.2104931,.05,.05,0,0,0,0,0,0,1,1,0,0,0,42.5,64.2,-9,-9,8.333333333333334,1,1,0,1,6,10,3,1,563,171632.78,34051.594,0,0,0,0,895.6734 +15601,19078,33979,-9,33977,33976,1,1,26,0,1,0,2,2,-9,0,4,7.3289056,7.6088376,0,0,0,-886.02515,-9,2,2,2021,6,0,37,0,1,0,1,4.7389092,4.7389092,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,5,1,1,0,1,8,10,3,1,546,337451.34,48023.152,0,0,0,0,780.87207 +15602,19079,33980,33981,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,0,0,27,-8,-13.947098,0,3,2,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.37,54.8,60.29,52.11,10,1,1,0,0,9,9,5,1,1947,4073926.3,2296337,729349.88,0,6304.2354,0,6406.1758 +15602,19079,33981,33980,-9,-9,1,1,66,0,0,0,1,1,-9,0,3,0,9.4826994,9.401248,26,8,93.743301,0,1,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,9.5357409,9.2673092,60.29,52.11,54.37,54.8,10,1,1,0,0,13,9,5,1,1947,4073926.3,2296337,729349.88,0,6304.2354,0,6406.1758 +15602,19080,33982,-9,33980,33981,1,1,20,0,0,1,2,0,0,0,3,0,7.6830473,7.5121922,0,0,-867.07318,-9,1,1,2021,17,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,8.0388136,0,41.95,59.17,-9,-9,6.666666666666667,1,1,0,0,2,9,3,1,210,-76747.766,0,0,0,0,0,1360.41 +15603,19081,33983,33984,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,0,6.8940897,6.6647043,31,0,128.14781,0,2,2,2021,20,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,7,0,0,0,6.1707826,6.889689,42.05,58.8,39.63,50.08,8.333333333333334,1,1,0,0,10,1,5,1,569,1104265.3,846993.38,345719.19,30639.66,7169.7842,171.01012,3367.144 +15603,19081,33984,33983,-9,-9,1,1,58,0,0,0,1,1,-9,0,2,0,8.7945576,8.288867,31,0,-9.4386396,0,2,3,2021,22,11,0,0,4,11,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,8.1824818,7.7882466,39.63,50.08,42.05,58.8,8.333333333333334,1,1,0,0,9,1,5,1,569,1104265.3,846993.38,345719.19,30639.66,7169.7842,171.01012,3367.144 +15604,19082,33985,33987,-9,-9,1,1,53,0,1,0,1,1,-9,0,4,7.391345,7.3031168,0,6,6,188.27357,0,-9,-9,2021,9,0,60,60,1,1,0,3.4405234,3.4405234,.05,.05,0,0,0,0,0,0,1,1,0,1.1648335,0,54,54,57.06,57.76,8,1,1,0,0,1,9,3,0,613.66669,1143683,604110.63,804188.69,242860.45,19523.213,0,1957.9808 +15604,19082,33986,-9,33987,33985,1,0,5,0,1,1,3,0,-9,0,4,0,0,0,0,0,-914.08673,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,9,3,0,613.66669,1143683,604110.63,804188.69,242860.45,19523.213,0,1957.9808 +15604,19082,33987,33985,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,7.6018982,7.6099358,0,26,-6,8.1421938,0,2,2,2021,6,0,30,30,1,0,0,7.0368233,7.0368233,0,0,0,0,0,0,0,0,1,1,0,0,0,57.06,57.76,54,54,10,1,1,0,0,5,9,3,0,613.66669,1143683,604110.63,804188.69,242860.45,19523.213,0,1957.9808 +15605,19083,33988,33989,-9,-9,1,1,44,1,1,0,1,1,-9,0,3,8.5646963,8.955657,0,11,4,69.876808,0,1,2,2021,12,0,40,40,1,0,0,13.352475,13.352475,0,0,.05,0,0,0,0,0,0,0,0,6.9440651,0,46.08,57.2,37.42,59.57,8.333333333333334,1,1,0,0,12,8,5,1,480,4376501,338999.41,1006887,0,0,0,5781.9702 +15605,19083,33989,33988,-9,-9,1,0,40,1,1,0,2,2,-9,0,4,9.458931,9.343565,0,11,-4,-33.590385,0,-9,-9,2021,9,0,25,41,1,0,0,47.758396,47.758396,0,0,0,0,0,0,0,0,0,0,0,0,0,37.42,59.57,46.08,57.2,5,1,1,0,0,12,8,5,1,480,4376501,338999.41,1006887,0,0,0,5781.9702 +15605,19083,33990,-9,33989,33988,1,1,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1159.5181,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,63,-9,-9,7,1,1,-9,0,0,8,5,1,480,4376501,338999.41,1006887,0,0,0,5781.9702 +15606,19084,33991,-9,33993,33994,1,0,0,2,2,1,3,0,-9,0,4,0,0,0,0,0,-965.88538,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15606,19084,33992,-9,33993,33994,1,1,2,2,2,1,3,0,-9,0,4,0,0,0,0,0,-1037.6782,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15606,19084,33993,33994,-9,-9,1,0,35,2,2,0,1,1,-9,0,3,8.6903019,8.5306911,0,9,-5,-19.821562,0,-9,-9,2021,12,0,27,25,1,0,0,20.153999,20.153999,0,0,0,0,0,0,0,0,1,1,0,0,0,51.31,49.39,46.08,57.2,6.666666666666667,1,1,0,0,12,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15606,19084,33994,33993,-9,-9,1,1,40,2,2,0,1,1,-9,0,3,9.0587358,9.1750765,0,9,5,61.072601,0,-9,-9,2021,11,0,42,40,1,0,0,27.644402,27.644402,.05,.05,0,0,0,0,0,0,1,1,0,3.2016163,0,46.08,57.2,51.31,49.39,6.666666666666667,1,1,0,0,10,7,5,1,892,51698.203,35474.359,428775.34,289536.66,23262.092,0,4646.665 +15607,19085,33995,33998,-9,-9,1,1,51,0,2,0,3,3,-9,0,4,7.8715253,8.3080864,0,17,15,-67.102074,0,3,3,2021,8,0,48,48,1,0,0,8.0755291,8.0755291,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.24,58.84,38.67,49.48,8.333333333333334,1,1,0,0,11,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15607,19085,33996,-9,33998,33995,1,1,11,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1010.8521,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15607,19085,33997,-9,33998,33995,1,0,13,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1060.3149,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,1,1,-9,0,0,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15607,19085,33998,33995,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,7.8927732,7.9861832,0,17,-15,-116.27682,0,2,2,2021,15,3,33,44,1,3,0,12.577622,12.577622,0,0,0,0,0,0,0,7,1,1,0,0,0,38.67,49.48,51.24,58.84,6.666666666666667,1,1,0,0,11,2,4,1,484.5,411472.44,30933.23,393469.19,41868.965,0,4288.3359,2588.5972 +15608,19086,33999,-9,-9,-9,1,0,85,0,0,0,2,2,-9,0,3,0,6.3376217,6.5444436,0,0,-1022.749,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.4913702,6.5407901,57.24,41.16,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,406,367911.91,47183.129,243451.83,0,0,0,657.8559 +15609,19087,34000,-9,34002,34001,1,1,16,0,1,1,3,0,-9,0,2,0,3.9201014,3.8567646,0,0,-870.00201,-9,2,2,2021,16,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,7,1,1,0,3.5488367,0,42.02,36.22,-9,-9,8.333333333333334,1,1,0,0,0,8,3,1,1353,30203.352,95728.922,0,0,0,0,1532.506 +15609,19087,34001,34002,-9,-9,1,1,48,0,1,0,2,2,-9,0,1,8.5686903,8.3712301,0,8,-1,-20.255922,0,2,3,2021,15,5,38,42,1,5,0,11.852787,11.852787,.05,.05,0,0,0,0,0,2,1,1,0,1.2434101,0,48.18,47.22,25.58,23.66,8.333333333333334,1,1,0,0,8,8,3,1,1353,30203.352,95728.922,0,0,0,0,1532.506 +15609,19087,34002,34001,-9,-9,1,0,49,0,1,0,2,2,-9,1,1,0,0,0,8,1,-98.246529,0,1,1,2021,27,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,25.58,23.66,48.18,47.22,0,1,1,0,0,0,8,3,1,1353,30203.352,95728.922,0,0,0,0,1532.506 +15610,19088,34003,-9,34005,34006,1,1,21,0,1,0,2,2,-9,0,4,0,0,0,0,0,-1059.9791,1,1,1,2021,9,0,0,18,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,2.223474,0,58.3,52.91,-9,-9,8.333333333333334,2,3,0,0,3,8,1,1,1115,-51409.738,0,0,0,0,0,-419.40771 +15610,19089,34004,-9,-9,-9,1,0,77,0,1,0,1,1,-9,0,3,0,4.8366022,5.1796312,0,0,-1058.7632,0,3,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5269462,4.7321157,51,46,-9,-9,7,2,3,0,0,0,8,2,1,145,815469.25,3498.2646,655038.44,0,0,0,8.5820332 +15610,19090,34005,34006,-9,-9,1,0,44,0,1,0,1,1,-9,0,3,7.1338553,7.1304421,0,20,-6,-10.130898,0,1,1,2021,8,1,15,13,1,1,0,9.351717,9.351717,0,0,0,0,0,0,0,0,1,1,0,0,0,46,50,51.41,56.15,8.333333333333334,2,3,0,0,12,8,4,1,858,534705.44,2068.8242,575386.94,123897.43,0,1388.1101,2022.1704 +15610,19090,34006,34005,34004,-9,1,1,50,0,1,0,1,1,-9,0,3,8.546834,8.4614391,0,20,6,45.911022,0,1,1,2021,11,0,37,58,1,0,0,17.090605,17.090605,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.41,56.15,46,50,6.666666666666667,2,3,0,0,13,8,4,1,858,534705.44,2068.8242,575386.94,123897.43,0,1388.1101,2022.1704 +15611,19091,34007,34008,-9,-9,1,0,27,0,0,0,2,2,-9,0,5,8.0474825,8.0985413,0,6,-6,20.283028,0,-9,-9,2021,7,1,38,39,1,1,0,7.4296899,7.4296899,.05,.05,0,0,0,0,0,2,0,0,0,0,0,51.98,57.55,58.32,50.22,8.333333333333334,1,1,0,0,8,2,5,1,904.5,109975.92,45976.754,0,0,6556.4326,18343.227,3467.9658 +15611,19091,34008,34007,-9,-9,1,1,33,0,0,0,2,2,-9,0,3,8.6586485,8.9389658,0,6,6,.2587336,0,2,2,2021,10,0,39,37,1,0,0,18.860357,18.860357,.05,.05,0,0,0,0,0,0,0,0,0,0,0,58.32,50.22,51.98,57.55,8.333333333333334,1,1,0,0,8,2,5,1,904.5,109975.92,45976.754,0,0,6556.4326,18343.227,3467.9658 +15612,19092,34009,-9,34010,34011,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-947.47754,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,10,2,1,633,-102095.04,0,0,0,0,1707.8607,659.93262 +15612,19092,34010,34011,-9,-9,1,0,47,0,1,0,2,2,-9,0,5,6.7950592,6.5690174,0,27,1,47.578857,0,3,-9,2021,10,0,18,6,1,0,0,5.1734891,5.1734891,0,0,0,0,0,0,0,0,1,1,0,0,0,54.67,57.49,38.73,47.65,8.333333333333334,1,1,0,0,9,10,2,1,633,-102095.04,0,0,0,0,1707.8607,659.93262 +15612,19092,34011,34010,-9,-9,1,1,46,0,1,0,2,2,-9,0,2,0,0,0,27,-1,-113.18305,0,2,2,2021,12,0,0,49,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.65855,0,38.73,47.65,54.67,57.49,6.666666666666667,1,1,1,0,8,10,2,1,633,-102095.04,0,0,0,0,1707.8607,659.93262 +15613,19093,34012,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,6.7804837,6.98523,0,0,-999.35175,0,3,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.8549023,6.5793285,42.61,54.85,-9,-9,8.333333333333334,1,1,0,0,0,7,2,1,80,536306.56,99693.297,240819.48,0,0,0,1036.2927 +15614,19094,34013,34014,-9,-9,1,1,61,0,0,0,2,2,-9,0,3,8.0122461,8.0296364,0,7,5,40.111782,-9,-9,-9,2021,10,0,40,0,1,1,0,10.192571,10.192571,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,49,32.84,60.85,7,4,1,0,0,1,6,4,1,600.5,90457.773,72133.641,138079.14,31629.883,0,7565.2417,2203.835 +15614,19094,34014,34013,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,6.8004994,7.3996959,0,7,-5,-76.233109,0,3,2,2021,18,7,21,1,1,7,0,6.4687119,6.4687119,0,0,0,0,0,0,0,0,0,0,0,0,0,32.84,60.85,51,49,8.333333333333334,1,1,0,0,4,6,4,1,600.5,90457.773,72133.641,138079.14,31629.883,0,7565.2417,2203.835 +15615,19095,34015,-9,34017,34018,1,1,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-872.13812,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15615,19095,34016,-9,34017,34018,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-929.18738,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15615,19095,34017,34018,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,6.4512715,5.9500523,0,8,1,-29.699018,-9,-9,2,2021,22,10,16,0,1,10,0,4.8341303,4.8341303,0,0,0,0,0,0,0,2,1,1,0,1.1297588,0,43.48,60.97,41.86,46.88,8.333333333333334,1,1,0,0,13,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15615,19095,34018,34017,-9,-9,1,1,41,0,2,0,2,2,-9,0,3,8.8827877,9.1495609,0,7,-1,81.891151,-9,2,-9,2021,11,0,45,0,1,0,0,18.255013,18.255013,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.86,46.88,43.48,60.97,6.666666666666667,1,1,0,0,13,5,4,1,696.75,20473.234,42121.641,194882.44,137779.55,0,0,2997.8879 +15616,19096,34019,34020,-9,-9,1,0,72,0,0,0,2,2,-9,0,1,0,0,0,10,3,26.881432,0,2,1,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,0,6.0957618,0,2,1,1,0,0,0,38.56,23.07,33.7,50.91,3.333333333333333,1,1,0,0,4,12,2,0,469.5,861795.25,605048,181595.09,0,0,91.700165,2396.8804 +15616,19096,34020,34019,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,5.5258322,5.6266499,10,-3,50.123039,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.2278852,5.5926037,33.7,50.91,38.56,23.07,6.666666666666667,1,1,0,0,4,12,2,0,469.5,861795.25,605048,181595.09,0,0,91.700165,2396.8804 +15617,19097,34021,34022,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.5952797,9.4505663,0,8,13,7.1934128,0,2,2,2021,6,0,50,40,1,0,0,33.89492,33.89492,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,48.21,50.73,8.333333333333334,1,1,0,0,10,5,5,1,10068,741206,688638.44,340007.22,215142.39,9538.2588,0,7237.9004 +15617,19097,34022,34021,-9,-9,1,0,38,0,0,0,1,1,-9,0,3,8.7978458,8.6953135,0,8,-13,33.912689,0,3,3,2021,18,6,48,45,1,6,0,14.617501,14.617501,0,0,0,0,0,0,0,0,0,0,0,0,0,48.21,50.73,54.2,57.49,3.333333333333333,2,3,0,0,10,5,5,1,10068,741206,688638.44,340007.22,215142.39,9538.2588,0,7237.9004 +15618,19098,34023,34024,-9,-9,1,0,70,0,0,0,2,2,-9,0,1,0,5.9242406,6.1225386,52,1,-12.049381,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,15.540937,10.633625,126.30474,0,1,1,0,5.6714048,6.3182602,54.71,36.04,49.68,50.49,8.333333333333334,1,1,0,0,0,5,2,1,496.5,67492.813,83336.477,0,0,0,0,1650.7976 +15618,19098,34024,34023,-9,-9,1,1,69,0,0,0,2,2,-9,0,2,0,4.6455469,4.7664833,6,-1,-29.94178,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,6.0147543,4.5350556,49.68,50.49,54.71,36.04,8.333333333333334,1,1,0,0,0,5,2,1,496.5,67492.813,83336.477,0,0,0,0,1650.7976 +15619,19099,34025,-9,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.5014658,8.6249599,0,0,0,-1059.8063,-9,2,2,2021,3,0,38,0,1,0,0,14.840339,14.840339,.05,.05,0,0,0,0,0,0,0,0,0,5.6197062,0,54.1,59.11,-9,-9,6.666666666666667,2,3,0,0,5,8,5,0,630,-94274.773,-22705.594,0,0,684.22375,0,2438.7239 +15620,19100,34026,34027,-9,-9,1,0,54,0,0,0,1,1,-9,0,4,7.810183,7.9665365,0,32,2,29.76973,0,2,3,2021,5,0,35,32,1,0,0,7.2875423,7.2875423,.05,.05,0,0,0,0,0,0,0,0,0,3.9492133,0,60.12,54.8,54.2,57.49,10,1,1,0,0,11,9,5,1,442.5,994435.75,624112.88,294449,116243.42,0,13982.133,5505.2358 +15620,19100,34027,34026,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,9.3148651,9.4366951,0,32,-2,-39.527431,0,2,2,2021,9,0,48,48,1,0,0,41.699059,41.699059,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,60.12,54.8,10,1,1,0,0,10,9,5,1,442.5,994435.75,624112.88,294449,116243.42,0,13982.133,5505.2358 +15621,19101,34028,34029,-9,-9,1,0,84,0,0,0,3,3,-9,0,4,0,0,0,65,-1,60.499031,0,3,-9,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,56.77,52.22,40.62,29.22,8.333333333333334,1,1,0,0,0,1,2,1,1014,241906.97,-73583.703,200707.44,0,0,0,866.70935 +15621,19101,34029,34028,-9,-9,1,1,85,0,0,0,3,3,-9,0,1,0,6.5140805,6.6125484,65,1,-38.676945,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,2.8330743,16.117672,19.410553,0,1,1,0,0,6.6349177,40.62,29.22,56.77,52.22,6.666666666666667,1,1,0,0,0,1,2,1,1014,241906.97,-73583.703,200707.44,0,0,0,866.70935 +15622,19102,34030,34031,-9,-9,1,1,56,0,0,0,3,3,-9,0,3,7.9815803,7.5414853,0,8,7,63.403618,0,3,3,2021,10,0,30,50,1,1,0,9.2093601,9.2093601,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,49,57.33,53.46,7,2,3,0,0,1,5,4,1,1200.5,163427.63,62884.207,56076.086,13356.131,0,304.41461,1636.1477 +15622,19102,34031,34030,-9,-9,1,0,49,0,0,0,2,2,-9,0,3,7.5910301,7.2573447,0,30,-7,-34.214939,0,3,3,2021,9,0,33,39,1,0,0,6.9225416,6.9225416,.05,.05,0,0,0,0,0,0,1,1,0,.16925366,0,57.33,53.46,50,49,5,2,3,0,0,10,5,4,1,1200.5,163427.63,62884.207,56076.086,13356.131,0,304.41461,1636.1477 +15623,19103,34032,34033,-9,-9,1,0,43,0,0,0,1,1,-9,0,3,8.7308493,8.8376341,0,7,3,-12.936018,0,3,2,2021,14,3,33,33,1,3,0,24.051739,24.051739,0,0,0,0,0,0,0,2,0,0,0,0,0,47.9,43.96,52.31,58.29,6.666666666666667,1,1,0,0,8,10,5,1,319.5,512395.59,638965.75,0,0,0,0,4024.2539 +15623,19103,34033,34032,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,8.5441475,8.4274359,0,7,-3,155.7086,0,3,2,2021,5,0,37,37,1,0,0,19.249424,19.249424,.05,.05,.05,0,0,0,0,2,0,0,0,0,0,52.31,58.29,47.9,43.96,8.333333333333334,1,1,0,0,7,10,5,1,319.5,512395.59,638965.75,0,0,0,0,4024.2539 +15624,19104,34034,-9,34036,34035,1,1,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1000.8459,-9,3,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,3,1,1627,492690.22,69976.367,564138,0,-282.95792,2561.2173,2016.6674 +15624,19104,34035,34036,-9,-9,1,1,50,0,1,0,2,2,-9,0,4,8.2267532,8.2371998,0,22,6,74.11879,0,-9,-9,2021,6,0,48,48,1,0,0,8.1943178,8.1943178,.05,.05,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,54.96,53.17,6.666666666666667,2,3,0,0,9,6,3,1,1627,492690.22,69976.367,564138,0,-282.95792,2561.2173,2016.6674 +15624,19104,34036,34035,-9,-9,1,0,44,0,1,0,3,3,-9,0,3,7.1598325,7.3799448,0,22,-6,-102.19827,0,2,2,2021,7,0,8,0,1,0,0,17.08803,17.08803,0,0,0,0,0,0,0,0,1,1,0,0,0,54.96,53.17,60.12,54.8,8.333333333333334,2,3,0,0,8,6,3,1,1627,492690.22,69976.367,564138,0,-282.95792,2561.2173,2016.6674 +15625,19105,34037,34038,-9,-9,1,1,51,0,0,0,2,2,-9,0,4,9.1525412,9.2991142,0,13,-1,.82354772,0,-9,-9,2021,6,0,53,47,1,0,0,21.628983,21.628983,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.73,54.53,48.18,61.8,8.333333333333334,1,1,0,0,14,8,5,1,2075,1142768,464634.63,465162.38,28735.021,-694.13251,5480.8848,4162.0996 +15625,19105,34038,34037,-9,-9,1,0,52,0,0,0,2,2,-9,0,5,7.8156047,7.8851781,0,22,1,-90.481453,0,3,3,2021,11,0,28,28,1,0,0,9.4413977,9.4413977,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.18,61.8,57.73,54.53,6.666666666666667,1,1,0,0,15,8,5,1,2075,1142768,464634.63,465162.38,28735.021,-694.13251,5480.8848,4162.0996 +15625,19105,34039,-9,34038,34037,1,1,17,0,0,0,2,2,1,0,5,0,0,0,0,0,-1008.8385,-9,2,2,2021,7,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,53.51,60.74,-9,-9,10,1,1,0,0,15,8,5,1,2075,1142768,464634.63,465162.38,28735.021,-694.13251,5480.8848,4162.0996 +15625,19106,34040,-9,34038,34037,1,0,19,0,0,0,2,2,-9,0,3,8.1418381,8.0541067,0,0,0,-1123.3983,0,2,2,2021,16,5,38,38,1,5,1,6.8722892,6.8722892,.05,.05,0,0,0,0,0,0,0,0,0,.317054,0,23.7,63.53,-9,-9,5,1,1,0,0,3,8,4,1,3223,1827.1559,49144.039,0,0,0,0,1672.6713 +15626,19107,34041,-9,-9,-9,1,1,45,0,0,0,1,1,-9,0,3,8.2534704,8.1798029,0,0,0,-990.9447,0,1,-9,2021,12,2,40,40,1,2,0,11.90374,11.90374,0,0,.05,0,0,0,0,0,0,0,0,0,0,52.4,52.91,-9,-9,6.666666666666667,1,1,0,0,11,8,4,0,164,7251.3037,39366.969,0,0,0,0,1549.7681 +15627,19108,34042,-9,-9,-9,1,0,70,0,0,0,2,2,-9,1,3,7.017962,7.2588592,0,0,0,-1125.6073,0,3,-9,2021,11,1,16,30,1,1,0,10.465828,10.465828,0,0,0,1,0,0,0,0,1,1,0,0,0,46.72,39.2,-9,-9,6.666666666666667,1,1,0,0,9,8,3,0,600,401610.88,241377.11,304057.47,0,0,0,1733.7842 +15628,19109,34043,-9,-9,-9,1,0,60,0,0,0,2,2,-9,0,2,7.3269658,7.7669544,0,0,0,-963.40381,0,3,-9,2021,15,4,28,28,1,4,0,7.8930459,7.8930459,.05,.05,0,0,0,0,0,0,0,0,0,5.3010163,0,50.77,40.78,-9,-9,5,1,1,0,0,11,4,3,1,1866,370109.72,-4893.5078,339466.19,85729.477,0,0,337.72842 +15629,19110,34044,34045,-9,-9,1,0,65,0,0,0,2,2,-9,0,3,7.9166427,8.1430206,0,47,0,8.7704487,0,3,2,2021,15,5,20,35,1,5,0,13.93031,13.93031,0,0,0,0,0,0,0,0,0,0,0,0,0,48.23,50.71,60.29,52.11,6.666666666666667,1,1,0,0,14,12,4,1,865,1812443.6,1595265,194733.98,0,0,0,1758.8962 +15629,19110,34045,34044,-9,-9,1,1,65,0,0,0,2,2,-9,0,3,7.7077584,7.6703248,0,47,0,108.16144,0,3,3,2021,6,0,39,32,1,0,0,6.7739396,6.7739396,0,0,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,48.23,50.71,10,1,1,0,0,14,12,4,1,865,1812443.6,1595265,194733.98,0,0,0,1758.8962 +15630,19111,34046,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,1,7.6842642,7.8643522,0,0,0,-1004.0496,-9,-9,-9,2021,19,0,38,0,1,6,0,7.8899059,7.8899059,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,8.140000000000001,38.56,-9,-9,0,1,1,0,1,0,4,4,0,921,248355.02,294986.06,0,0,0,0,1092.5007 +15631,19112,34047,34048,-9,-9,1,0,73,0,0,0,2,2,-9,0,3,0,6.917625,6.9816122,56,-3,116.91379,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.038203,6.9553428,60.2,39.82,60.69,29.25,8.333333333333334,1,1,0,0,0,5,3,1,646,1293861.3,426728.94,357751.81,0,0,0,2362.4583 +15631,19112,34048,34047,-9,-9,1,1,76,0,0,0,2,2,-9,0,2,0,7.1908488,7.2534561,56,3,-60.043804,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.0113947,7.3693113,60.69,29.25,60.2,39.82,8.333333333333334,1,1,0,0,0,5,3,1,646,1293861.3,426728.94,357751.81,0,0,0,2362.4583 +15632,19113,34049,-9,-9,-9,1,0,46,0,0,0,2,2,-9,0,1,6.1996851,6.3450055,0,0,0,-974.45532,0,3,2,2021,19,0,18,18,1,6,0,3.2981348,3.2981348,0,0,0,0,0,0,0,0,1,1,0,0,0,35,27,-9,-9,5,2,3,0,1,8,9,2,0,1009,-143438.95,0,0,0,0,0,548.14227 +15633,19114,34050,34051,-9,-9,1,1,69,0,1,0,2,2,-9,0,4,0,0,0,50,1,0,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0298899,0,60.7,47.65,50,47,10,1,1,0,0,2,10,1,1,888,143517.03,32014.512,211532.75,0,0,0,1289.7969 +15633,19114,34051,34050,-9,-9,1,0,68,0,1,0,3,3,-9,0,3,0,0,0,7,-1,0,0,-9,-9,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,47,60.7,47.65,7,1,1,0,0,0,10,1,1,888,143517.03,32014.512,211532.75,0,0,0,1289.7969 +15634,19115,34052,34054,-9,-9,1,0,34,0,2,0,2,2,-9,0,3,0,0,0,9,-3,-125.42075,0,3,3,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.37,52.37,44.52,36.48,10,2,3,0,0,0,8,4,1,862,586995.38,401417.75,214970.06,167502.8,0,1877.5305,2725.929 +15634,19115,34053,-9,34052,34054,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-983.7486,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,862,586995.38,401417.75,214970.06,167502.8,0,1877.5305,2725.929 +15634,19115,34054,34052,-9,-9,1,1,37,0,2,0,3,3,-9,0,4,8.8402281,8.7378712,0,9,3,82.45594,0,3,3,2021,7,0,50,25,1,0,0,15.276745,15.276745,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.52,36.48,50.37,52.37,8.333333333333334,2,3,0,0,11,8,4,1,862,586995.38,401417.75,214970.06,167502.8,0,1877.5305,2725.929 +15635,19116,34055,-9,-9,-9,1,1,50,0,0,0,2,2,-9,1,1,0,0,0,0,0,-1084.8622,0,2,3,2021,35,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,16.04,23.99,-9,-9,0,1,1,0,0,0,10,1,0,226,73679.219,0,117412.69,0,0,0,1021.5623 +15636,19117,34056,34057,-9,-9,1,1,61,0,0,0,2,2,-9,0,5,0,8.6487751,8.3349218,41,2,-185.22115,0,2,2,2021,6,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,4.6103945,8.4780884,57.06,57.76,48.87,58.55,8.333333333333334,1,1,0,0,12,9,5,1,660,364510.13,200138.52,290839.13,0,0,0,5918.751 +15636,19117,34057,34056,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,8.6651068,8.4853926,6.0320916,38,-2,-33.211845,0,2,2,2021,11,2,10,10,1,2,0,52.771473,52.771473,.05,.05,0,0,0,0,0,0,0,0,0,8.479104,6.2914376,48.87,58.55,57.06,57.76,8.333333333333334,1,1,0,0,12,9,5,1,660,364510.13,200138.52,290839.13,0,0,0,5918.751 +15637,19118,34058,34059,-9,-9,1,0,50,0,0,0,3,3,-9,0,3,6.9559307,7.0303979,0,33,-3,-35.680492,0,-9,2,2021,28,12,20,20,1,12,0,5.9088678,5.9088678,0,0,0,0,0,0,0,0,0,0,0,6.7944922,0,23.92,56.42,54.2,57.49,6.666666666666667,1,1,0,0,12,4,5,1,951,-23356.648,65508.531,131137.14,7863.8452,0,0,4325.8042 +15637,19118,34059,34058,-9,-9,1,1,53,0,0,0,2,2,-9,0,4,9.072711,9.2349443,0,9,3,-34.38588,0,-9,-9,2021,11,0,42,38,1,0,0,31.629074,31.629074,.05,.05,0,0,0,0,0,0,0,0,0,1.2519604,0,54.2,57.49,23.92,56.42,8.333333333333334,1,1,0,0,12,4,5,1,951,-23356.648,65508.531,131137.14,7863.8452,0,0,4325.8042 +15637,19119,34060,-9,34058,34059,1,1,20,0,0,0,2,2,-9,0,5,7.6937089,7.85498,0,0,0,-972.52069,0,3,2,2021,7,0,40,40,1,0,1,8.1927881,8.1927881,.05,.05,0,0,0,0,0,0,0,0,0,4.1820979,0,51.38,44.05,-9,-9,8.333333333333334,1,1,0,0,2,4,4,1,1478,-41881.133,27847.246,0,0,-1438.442,1029.0621,1525.0305 +15638,19120,34061,34062,-9,-9,1,0,23,0,0,0,1,1,-9,0,4,7.961175,8.0713482,0,2,-1,-30.949202,0,-9,-9,2021,6,0,43,43,1,0,0,8.7144251,8.7144251,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.76,54.51,57.06,57.76,8.333333333333334,1,1,0,0,5,5,5,0,1165.5,57000.313,80647.047,0,0,6770.1475,0,3462.6475 +15638,19120,34062,34061,-9,-9,1,1,24,0,0,0,1,1,-9,0,5,8.7030706,8.7143126,0,2,1,23.042101,-9,-9,-9,2021,8,0,38,0,1,0,0,20.316723,20.316723,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,57.76,54.51,8.333333333333334,1,1,0,0,0,5,5,0,1165.5,57000.313,80647.047,0,0,6770.1475,0,3462.6475 +15639,19121,34063,34064,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,2.9314001,3.0553045,51,0,-16.272589,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,2.9748061,30.34,48.15,39.5,41.06,10,1,1,0,0,0,5,2,1,557.5,1079032.3,195724.33,474339.41,0,0,0,809.90411 +15639,19121,34064,34063,-9,-9,1,1,78,0,0,0,3,3,-9,0,3,0,7.1639838,7.0567737,51,0,59.845757,0,3,3,2021,14,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.2854667,6.9424582,39.5,41.06,30.34,48.15,6.666666666666667,1,1,0,0,0,5,2,1,557.5,1079032.3,195724.33,474339.41,0,0,0,809.90411 +15640,19122,34065,-9,34066,34067,1,1,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1074.3851,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15640,19122,34066,34067,-9,-9,1,0,37,0,2,0,1,1,-9,0,4,9.3726683,9.4376497,0,2,-1,-9.7751217,0,2,2,2021,10,0,40,35,1,0,0,40.076099,40.076099,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,2,3,0,0,12,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15640,19122,34067,34066,-9,-9,1,1,38,0,2,0,1,1,-9,0,4,9.5653429,9.7001143,0,2,1,-69.378723,-9,-9,-9,2021,3,0,35,0,1,0,0,45.663784,45.663784,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,2,3,0,0,5,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15640,19122,34068,-9,34066,34067,1,1,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-991.50031,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,9,5,1,948.25,182237.72,95579.609,0,0,0,0,8902.7295 +15641,19123,34069,34070,-9,-9,1,1,50,0,0,0,3,3,-9,0,3,7.550159,7.7239118,0,29,4,114.98056,0,3,3,2021,11,0,63,63,1,2,0,5.2884488,5.2884488,.05,.05,0,0,0,0,0,0,0,0,0,2.3281136,0,48,51,41.12,27.25,7,1,1,0,0,1,6,3,1,1095.5,262054.16,-12020.992,230637.47,0,0,0,911.22314 +15641,19123,34070,34069,-9,-9,1,0,46,0,0,0,3,3,-9,0,2,0,0,0,29,-4,-24.330717,0,3,2,2021,23,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,41.12,27.25,48,51,6.666666666666667,2,3,0,1,0,6,3,1,1095.5,262054.16,-12020.992,230637.47,0,0,0,911.22314 +15641,19124,34071,-9,34070,34069,1,1,27,0,0,0,1,1,-9,0,4,9.1664324,9.3405981,0,0,0,-1168.1982,0,2,3,2021,11,0,40,48,1,2,1,25.952063,25.952063,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48,59,-9,-9,7,2,3,0,0,1,6,5,1,2561,4075.1711,18476.713,82536.125,103375.48,3662.614,0,2891.3086 +15641,19125,34072,-9,34070,34069,1,1,25,0,0,0,1,1,-9,0,5,6.9105182,7.1769638,0,0,0,-918.21979,0,3,3,2021,6,0,12,34,1,0,1,11.690781,11.690781,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.06,57.76,-9,-9,8.333333333333334,2,3,0,0,8,6,2,1,496,-23957.75,-25148.676,0,0,0,0,425.47513 +15641,19126,34073,-9,34070,34069,1,0,25,0,0,0,1,1,-9,0,5,7.0292053,7.0800796,0,0,0,-1051.6263,0,3,3,2021,8,1,16,0,1,1,1,8.3633652,8.3633652,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,57.47,-9,-9,8.333333333333334,2,3,0,0,0,6,2,1,1047,72754.297,-41916.305,0,0,0,0,867.44885 +15642,19127,34074,-9,-9,-9,1,0,72,0,0,0,2,2,-9,0,3,0,7.3878231,7.6410217,0,0,-996.67426,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.6639709,7.6981349,51.98,54.53,-9,-9,8.333333333333334,1,1,0,0,0,10,3,1,379,592385.63,445523.56,166342.27,0,6565.1553,0,1739.8146 +15643,19128,34075,34076,-9,-9,1,1,37,0,0,0,1,1,-9,0,5,7.8676376,7.9860487,0,9,5,-5.0025959,0,-9,-9,2021,9,1,50,45,1,1,0,7.1431656,7.1431656,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.39,56.71,51.77,58.57,8.333333333333334,1,1,0,0,9,12,5,1,864.5,177685.78,438855.5,0,0,0,3394.2256,3435.1729 +15643,19128,34076,34075,-9,-9,1,0,32,0,0,0,1,1,-9,0,4,8.647193,8.74226,0,9,-5,-69.219299,0,-9,-9,2021,12,1,45,43,1,1,0,14.37801,14.37801,0,0,0,0,0,0,0,0,0,0,0,5.5367594,0,51.77,58.57,62.39,56.71,6.666666666666667,1,1,0,0,12,12,5,1,864.5,177685.78,438855.5,0,0,0,3394.2256,3435.1729 +15644,19129,34077,-9,-9,-9,1,1,74,0,0,0,3,3,-9,0,1,0,0,0,0,0,-888.60083,0,-9,-9,2021,36,12,0,0,4,12,0,0,0,0,0,0,1,4.6527743,6.3160567,67.579681,0,1,1,0,0,0,15.05,27.23,-9,-9,0,1,1,0,0,0,12,1,0,181,11207.468,0,112152.7,0,0,0,2524.4871 +15645,19130,34078,34079,-9,-9,1,0,79,0,0,0,1,1,-9,0,3,0,0,0,59,-5,-28.172735,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.1030056,0,58.33,39.49,51.15,49.9,8.333333333333334,1,1,0,0,12,1,4,1,1376,1317099.6,576703.38,527016.63,0,0,0,2814.5864 +15645,19130,34079,34078,-9,-9,1,1,84,0,0,0,1,1,-9,0,4,0,8.4587269,8.2880821,59,5,112.24398,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.3207321,51.15,49.9,58.33,39.49,10,1,1,0,0,0,1,4,1,1376,1317099.6,576703.38,527016.63,0,0,0,2814.5864 +15646,19131,34080,-9,34083,34081,1,0,3,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1063.9575,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,1,1,-9,0,0,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15646,19131,34081,34083,-9,-9,1,1,56,0,2,0,2,2,-9,0,2,8.5457382,8.1287432,0,11,17,114.24982,0,2,3,2021,17,5,24,36,1,5,0,23.828026,23.828026,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.86,51.77,37.59,51.94,0,1,1,0,0,12,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15646,19131,34082,-9,34083,34081,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-822.71393,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15646,19131,34083,34081,-9,-9,1,0,39,0,2,0,1,1,-9,0,3,7.9217191,7.9253855,0,11,-17,34.323898,0,1,2,2021,7,0,27,22,1,0,0,11.500323,11.500323,.05,.05,0,0,0,0,0,0,1,1,0,.37855795,0,37.59,51.94,31.86,51.77,8.333333333333334,1,1,0,0,12,4,4,1,364.75,12878.801,-39796.609,0,0,0,1225.9968,3233.1484 +15647,19132,34084,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,3,8.3944426,8.4695568,0,0,0,-1019.6306,0,3,-9,2021,10,0,48,44,1,0,0,7.1643581,7.1643581,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.19,58.01,-9,-9,1.666666666666667,1,1,0,0,12,2,4,1,175,261849.09,-44572.715,-12648.824,58187.188,0,1299.7357,1208.7032 +15648,19133,34085,34086,-9,-9,1,0,30,0,0,0,1,1,-9,0,1,7.8782148,8.2928686,0,2,-14,9.223011,0,2,2,2021,12,3,34,34,1,3,0,11.42135,11.42135,.05,.05,0,0,0,0,0,0,0,0,0,2.3289719,0,34.82,37.09,57.06,57.76,6.666666666666667,1,1,0,0,10,10,5,1,864.5,631608.88,421412.81,0,0,0,0,2998.2407 +15648,19133,34086,34085,-9,-9,1,1,44,0,0,0,2,2,-9,0,5,8.4870167,8.6243277,0,2,14,-131.49257,-9,-9,-9,2021,6,0,50,0,1,0,0,13.677958,13.677958,.05,.05,.05,0,0,0,0,0,0,0,0,0,0,57.06,57.76,34.82,37.09,10,1,1,0,0,12,10,5,1,864.5,631608.88,421412.81,0,0,0,0,2998.2407 +15649,19134,34087,-9,-9,34088,1,0,21,0,0,0,2,2,-9,0,4,8.1118269,7.7700205,0,0,0,-1012.0136,0,-9,2,2021,5,0,40,40,1,0,1,8.183629,8.183629,.05,.05,0,0,0,0,0,0,0,0,0,2.0084798,0,54.2,57.49,-9,-9,10,1,1,0,0,4,2,4,1,378,-30317.537,162879.17,0,0,8239.417,0,983.48297 +15649,19135,34088,-9,-9,-9,1,1,46,0,0,0,2,2,-9,0,4,8.1443338,7.9545131,0,0,0,-967.5965,0,-9,-9,2021,9,0,40,40,1,1,0,8.8376045,8.8376045,.05,.05,0,0,0,0,0,0,0,0,0,1.7618778,0,52,55,-9,-9,8,4,6,0,0,1,2,4,1,575,392952.56,106961.08,0,0,0,0,1722.5569 +15650,19136,34089,-9,34093,34090,1,0,12,0,3,1,3,0,-9,0,4,0,0,0,0,0,-920.55524,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34090,34093,-9,-9,1,1,47,0,3,0,1,1,-9,0,4,9.4466295,9.5217962,0,20,1,-50.975811,0,-9,2,2021,7,0,50,50,1,0,0,38.233936,38.233936,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.54,57.19,57.16,56.15,8.333333333333334,1,1,0,0,8,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34091,-9,34093,34090,1,0,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.61182,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34092,-9,34093,34090,1,1,17,0,3,1,2,0,0,0,5,0,0,0,0,0,-988.57971,-9,2,1,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,46.82,62.33,-9,-9,8.333333333333334,1,1,0,0,1,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34093,34090,-9,-9,1,0,46,0,3,0,2,2,-9,0,4,5.8648949,6.1201534,0,20,-1,74.943176,0,3,3,2021,7,0,7,0,1,0,0,6.3567505,6.3567505,.05,.05,0,0,0,0,0,0,0,0,0,1.0707533,0,57.16,56.15,45.54,57.19,8.333333333333334,1,1,0,0,1,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19136,34094,-9,34093,34090,1,1,15,0,3,1,3,0,-9,0,4,0,0,0,0,0,-953.6701,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,1268.1666,1183180.1,838333.75,569507.31,294299.81,0,0,6437.7739 +15650,19137,34095,-9,34093,34090,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-948.19812,-9,2,1,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,.21380407,0,54.69,57.47,-9,-9,10,1,1,0,0,3,6,1,1,1001,53421.402,0,0,0,0,0,-454.85764 +15651,19138,34096,-9,34099,34097,1,0,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1028.1654,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15651,19138,34097,34099,-9,-9,1,1,40,1,2,0,1,1,-9,0,5,8.3301849,8.8729057,0,5,-2,72.955688,0,-9,-9,2021,9,1,27,27,1,1,0,21.957352,21.957352,.05,.05,0,0,0,0,0,0,0,0,0,7.3702826,0,49.25,61.25,37.92,61.06,3.333333333333333,1,1,0,1,8,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15651,19138,34098,-9,34099,34097,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1019.5734,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,42,61,-9,-9,6,1,1,-9,0,0,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15651,19138,34099,34097,-9,-9,1,0,42,1,2,0,1,1,-9,0,3,7.7024636,7.5625758,0,5,2,-56.799294,0,2,2,2021,11,2,50,60,1,2,0,4.8090229,4.8090229,.05,.05,0,0,0,0,0,0,0,0,0,7.7536077,0,37.92,61.06,49.25,61.25,3.333333333333333,1,1,0,0,9,8,4,1,1095.25,249176.73,42969.207,311912.84,117436.8,0,0,4850.2432 +15652,19139,34100,-9,34102,34101,1,1,16,0,1,1,2,0,-9,0,4,0,3.7072558,3.8853531,0,0,-918.93848,-9,2,2,2021,7,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.443152,0,53.39,52.35,-9,-9,8.333333333333334,1,1,0,0,0,7,4,1,675.66669,78712.672,225211.69,0,0,0,0,2918.5474 +15652,19139,34101,34102,-9,-9,1,1,51,0,1,0,2,2,-9,0,3,8.2892151,8.3070517,0,9,0,-88.06926,0,2,3,2021,16,5,70,60,1,5,0,5.5738487,5.5738487,.05,.05,0,0,0,0,0,0,1,1,0,6.865983,0,38.07,54.03,54.1,59.11,3.333333333333333,1,1,0,0,10,7,4,1,675.66669,78712.672,225211.69,0,0,0,0,2918.5474 +15652,19139,34102,34101,-9,-9,1,0,51,0,1,0,2,2,-9,0,5,7.2035084,7.7186866,0,9,0,24.984751,0,3,2,2021,15,4,39,45,1,4,0,5.7321286,5.7321286,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,38.07,54.03,3.333333333333333,1,1,0,1,10,7,4,1,675.66669,78712.672,225211.69,0,0,0,0,2918.5474 +15652,19140,34103,-9,34102,34101,1,0,22,0,1,0,1,1,-9,0,2,8.0973043,7.9361868,0,0,0,-1034.2679,0,2,2,2021,20,8,39,40,1,8,1,10.020595,10.020595,.05,.05,0,0,0,0,0,0,1,1,0,0,0,34.79,37.08,-9,-9,6.666666666666667,1,1,0,0,5,7,4,1,1819,-116144.2,-121334.41,0,0,24893.541,0,1394.5714 +15653,19141,34104,34105,-9,-9,1,1,41,1,4,0,3,3,-9,0,2,7.357842,7.2571654,0,8,5,-36.257263,-9,-9,-9,2021,9,0,35,0,1,0,0,6.8773336,6.8773336,0,0,0,0,0,0,0,0,1,1,0,0,0,47.78,36.16,49.93,31.73,5,2,3,0,0,1,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34105,34104,-9,-9,1,0,36,1,4,0,1,1,-9,0,1,0,0,0,12,-5,-68.884865,0,3,3,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.93,31.73,47.78,36.16,3.333333333333333,2,3,0,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34106,-9,34105,34104,1,0,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1255.9136,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34107,-9,34105,34104,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1047.7032,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34108,-9,34105,34104,1,1,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-953.95764,-9,1,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15653,19141,34109,-9,34105,34104,1,0,7,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1035.8345,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,12,2,1,1408.3334,-26194.775,0,0,0,0,0,1707.8223 +15654,19142,34110,34111,-9,-9,1,1,71,0,0,0,1,1,-9,0,5,9.5441847,9.4920292,7.123044,37,3,56.465992,0,2,2,2021,7,0,40,40,1,0,0,28.494183,28.494183,0,0,0,0,0,0,0,0,1,1,0,3.2782109,7.5518503,54.1,59.11,54.2,57.49,8.333333333333334,1,1,0,0,12,7,5,1,395,2635500,1437472.3,922285.38,0,0,0,7459.7588 +15654,19142,34111,34110,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,8.3984432,8.0828676,3.2135406,37,-3,-98.148018,0,3,2,2021,8,0,40,43,1,0,0,11.627995,11.627995,0,0,0,1,0,0,0,0,1,1,0,0,3.2342479,54.2,57.49,54.1,59.11,10,1,1,0,0,12,7,5,1,395,2635500,1437472.3,922285.38,0,0,0,7459.7588 +15655,19143,34112,34113,-9,-9,1,0,50,0,2,0,1,1,-9,0,3,8.8667145,8.797369,0,13,-1,125.59025,0,-9,-9,2021,13,2,42,44,1,2,0,20.238255,20.238255,.05,.05,0,0,0,0,0,0,0,0,0,0,0,47.15,56.66,51.24,58.84,8.333333333333334,1,1,0,0,15,8,5,1,2878.5,1363014.3,1158579.8,267374.94,122415.72,20758.908,0,5438.2061 +15655,19143,34113,34112,-9,-9,1,1,51,0,2,0,1,1,-9,0,4,9.0415707,8.6324282,0,23,1,31.415796,0,2,2,2021,10,0,50,-9,1,0,0,16.890511,16.890511,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.24,58.84,47.15,56.66,8.333333333333334,1,1,0,0,12,8,5,1,2878.5,1363014.3,1158579.8,267374.94,122415.72,20758.908,0,5438.2061 +15656,19144,34114,-9,-9,-9,1,1,27,0,0,0,2,2,-9,0,3,8.5023851,8.5827665,0,5,-16,-53.236641,0,-9,-9,2021,9,1,42,50,1,1,0,17.728306,17.728306,.05,.05,0,0,0,0,0,0,0,0,0,0,0,48.34,52.06,48.76,38.46,6.666666666666667,1,1,0,0,8,12,5,0,487,118192.66,1530.1564,73439.539,69828.055,21167.008,1052.5769,1384.8461 +15656,19145,34115,-9,-9,-9,1,1,43,0,0,0,2,2,-9,0,2,8.4899406,8.8891487,0,5,16,9.7411785,0,-9,-9,2021,5,0,37,43,1,0,0,16.121326,16.121326,0,0,0,0,0,0,0,0,0,0,0,7.8081508,0,48.76,38.46,48.34,52.06,5,1,1,0,0,13,12,5,0,177,-101580.41,2923.425,0,0,0,733.12207,3107.082 +15657,19146,34116,34117,-9,-9,1,0,78,0,0,0,3,3,-9,0,3,0,0,0,37,-8,0,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0930928,0,64.01000000000001,32.53,54,46,10,1,1,0,0,0,10,1,0,1195,408731.09,43146.492,344061.44,0,0,0,2025.5322 +15657,19146,34117,34116,-9,-9,1,1,86,0,0,0,3,3,-9,0,3,0,0,0,37,8,0,0,3,3,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,46,64.01000000000001,32.53,8,1,1,0,0,0,10,1,0,1195,408731.09,43146.492,344061.44,0,0,0,2025.5322 +15658,19147,34118,-9,-9,-9,1,1,53,0,0,0,2,2,-9,0,2,.94894058,1.1038505,0,0,0,-972.46674,0,1,1,2021,20,7,40,40,1,7,0,.0067064189,.0067064189,0,0,0,0,0,0,0,42,1,0,1,0,0,32.14,39.53,-9,-9,1.666666666666667,1,1,0,1,13,10,2,0,994,44570.438,0,0,0,0,0,297.48279 +15658,19148,34119,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,1,0,0,0,0,0,-967.30273,0,-9,-9,2021,19,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,0,1,0,0,33.03,17.46,-9,-9,3.333333333333333,1,1,0,1,0,10,1,0,3806,-120640.98,0,0,0,0,370.80444,2253.3418 +15659,19149,34120,34121,-9,-9,1,1,66,0,0,0,2,2,-9,0,4,8.2439585,8.2007761,6.1590533,38,1,-84.976173,0,3,2,2021,9,1,30,30,1,1,0,16.173349,16.173349,.05,.05,0,0,0,0,0,0,1,1,0,8.5848064,6.2575984,51.84,47.71,57.16,56.15,8.333333333333334,1,1,0,0,10,8,4,1,593,936663.25,810727.13,142488.17,93416.906,0,0,3983.7383 +15659,19149,34121,34120,-9,-9,1,0,65,0,0,0,2,2,-9,0,4,0,4.8103566,4.6194263,38,-1,-4.520227,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5160742,57.16,56.15,51.84,47.71,8.333333333333334,1,1,0,0,0,8,4,1,593,936663.25,810727.13,142488.17,93416.906,0,0,3983.7383 +15660,19150,34122,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,2,8.1679525,8.2618999,0,0,0,-1044.0634,0,2,3,2021,14,5,42,38,1,5,1,12.429222,12.429222,.05,.05,0,0,0,0,0,0,0,0,0,0,0,44.06,51.53,-9,-9,10,1,1,0,0,9,11,4,1,336,143177.66,48106.133,0,0,0,0,1120.0502 +15661,19151,34123,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,4,8.3834085,8.6211443,6.7886181,0,0,-1044.5305,0,2,2,2021,6,0,36,36,1,0,0,15.460714,15.460714,.05,.05,0,0,0,0,0,0,0,0,0,3.1710842,7.3095379,57.16,56.15,-9,-9,10,3,4,0,0,7,8,5,0,1092,207319.95,-98178.922,0,0,1554.8722,0,1504.7633 +15661,19152,34124,-9,34123,-9,1,0,30,0,0,0,1,1,-9,0,4,8.8389759,8.9208384,0,0,0,-999.15436,0,2,2,2021,8,0,37,40,1,0,1,22.801151,22.801151,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.12,57.28,-9,-9,8.333333333333334,3,4,0,0,8,8,5,0,294,116519.59,-48775.176,0,0,0,0,2299.7373 +15662,19153,34125,-9,-9,-9,1,0,45,0,0,0,2,2,-9,0,4,7.43784,7.4349794,0,0,0,-1067.7689,0,3,3,2021,9,3,28,28,1,3,0,7.1122522,7.1122522,0,0,0,0,0,0,0,2,0,0,0,3.7984443,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,11,5,3,1,388,-161350.42,0,170310.77,115284.34,2932.7437,0,183.7041 +15663,19154,34126,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,6.607626,6.6924834,0,0,-1079.7382,0,3,3,2021,21,7,0,0,4,7,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.2137022,6.5816479,43.1,38.74,-9,-9,5,1,1,0,0,1,4,2,1,852,275244.19,86314.164,119861.05,0,0,0,1101.2069 +15664,19155,34127,-9,-9,-9,1,0,29,0,0,0,1,1,-9,0,4,8.4524307,8.3256369,0,0,0,-1079.4108,0,-9,-9,2021,12,0,40,49,1,0,0,11.473802,11.473802,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.49,57.57,-9,-9,8.333333333333334,1,1,0,0,7,9,4,0,577,93941.086,-56950.805,227355.14,78168.414,0,0,1357.9277 +15665,19156,34128,-9,34129,34131,1,0,6,0,3,1,3,0,-9,0,4,0,0,0,0,0,-910.87756,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15665,19156,34129,34131,-9,-9,1,0,42,0,3,0,2,2,-9,0,3,8.2017345,7.9425511,0,8,0,112.00899,0,-9,-9,2021,6,0,40,40,1,0,0,8.6989536,8.6989536,0,0,0,0,0,0,0,0,1,1,0,6.3770895,0,52.54,54.24,38.56,55.57,10,1,1,0,0,12,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15665,19156,34130,-9,34129,34131,1,1,4,0,3,1,3,0,-9,0,4,0,0,0,0,0,-904.6217,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15665,19156,34131,34129,-9,-9,1,1,42,0,3,0,1,1,-9,0,2,7.2507873,7.260725,0,8,0,-91.792694,0,2,2,2021,17,6,40,28,1,6,0,4.8965116,4.8965116,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,38.56,55.57,52.54,54.24,5,1,1,0,0,12,2,3,1,832,94014.453,73446.469,152587.8,86546.977,982.29407,-625.09125,2502.1514 +15666,19157,34132,-9,34135,34134,1,1,7,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1131.3203,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34133,-9,34135,34134,1,0,9,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1092.489,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34134,34135,-9,-9,1,1,38,0,3,0,3,3,-9,0,3,8.4064856,8.5786047,0,11,-2,53.576023,0,2,2,2021,7,0,43,41,1,0,0,10.45372,10.45372,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.72,52.59,55.36,51.57,5,1,1,0,1,13,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34135,34134,-9,-9,1,0,40,0,3,0,1,1,-9,0,3,7.9037285,8.0240164,0,11,2,-67.849533,0,-9,-9,2021,8,0,30,31,1,0,0,13.795421,13.795421,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.36,51.57,29.72,52.59,6.666666666666667,1,1,0,0,13,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15666,19157,34136,-9,34135,34134,1,0,3,0,3,1,3,0,-9,0,4,0,0,0,0,0,-949.38788,-9,1,3,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,4,1,388.39999,15383.176,31899.551,182149,119997.36,5494.8047,0,3102.9517 +15667,19158,34137,34138,-9,-9,1,0,45,0,0,0,2,2,-9,0,2,7.6737156,7.7992086,0,6,-3,-36.42667,0,2,2,2021,35,12,32,36,1,12,0,7.2793779,7.2793779,0,0,0,0,0,0,0,0,1,1,0,0,0,23.29,35.52,53,54,1.666666666666667,1,1,0,0,8,1,3,0,919.5,286107.28,192315.22,71033.609,67640.438,0,0,1798.5087 +15667,19158,34138,34137,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,6.8285999,6.5951123,0,6,3,-50.997963,0,-9,-9,2021,9,0,32,32,1,1,0,4.2060447,4.2060447,0,0,0,0,0,0,0,0,1,1,0,0,0,53,54,23.29,35.52,8,1,1,0,0,1,1,3,0,919.5,286107.28,192315.22,71033.609,67640.438,0,0,1798.5087 +15668,19159,34139,-9,-9,-9,1,0,61,0,0,0,3,3,-9,0,4,6.916081,7.1628375,0,0,0,-1100.8601,0,3,3,2021,6,0,20,18,1,0,0,7.9204025,7.9204025,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,10,1,1,0,0,11,6,3,0,1113,187892.17,0,123703.71,48793.715,3429.0652,1358.7848,1582.0226 +15669,19160,34140,-9,-9,-9,1,1,76,0,0,0,2,2,-9,0,3,0,6.8399401,6.6579909,0,0,-998.0047,0,2,3,2021,11,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.9508481,44.43,56.74,-9,-9,6.666666666666667,1,1,0,0,6,9,2,0,1870,502329.22,59645.453,268136.53,0,0,0,1839.5281 +15670,19161,34141,-9,-9,-9,1,1,23,0,0,0,2,2,-9,0,4,8.3240881,8.3151588,5.8516331,0,0,-991.26868,0,2,2,2021,12,1,39,37,1,1,0,12.005638,12.005638,.05,.05,0,0,0,0,0,0,1,1,0,5.8631897,0,37.17,55.77,-9,-9,5,1,1,0,0,5,9,4,1,128,236398.19,187616.69,0,0,0,0,1756.3818 +15671,19162,34142,-9,-9,-9,1,1,62,0,0,0,1,1,-9,0,2,0,7.6230702,7.4682393,0,0,-1060.1068,0,2,-9,2021,12,1,0,0,4,1,0,0,0,.05,.05,0,0,0,0,0,42,1,1,0,7.7908797,7.2905159,36.02,51.34,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,1726,55721.098,162584.94,0,0,0,1005.1389,2217.5833 +15672,19163,34143,-9,-9,-9,1,1,36,0,0,0,1,1,-9,0,2,8.5898781,8.5858603,0,0,0,-992.08386,0,3,3,2021,29,12,40,45,1,12,0,14.868392,14.868392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,19.42,52.4,-9,-9,1.666666666666667,2,3,0,0,15,7,5,1,643,-62767.391,99158.281,0,0,0,354.66061,2249.656 +15673,19164,34144,34145,-9,-9,1,0,39,1,1,0,2,2,-9,1,1,0,0,0,9,-22,75.442619,0,-9,-9,2021,15,3,0,6,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,32.5,17.73,53.29,45.74,5,1,1,1,0,7,6,4,1,938.5,42275.449,124072.09,0,0,1358.9484,0,3347.8018 +15673,19164,34145,34144,-9,-9,1,1,61,1,1,0,2,2,-9,0,3,8.825386,8.9015503,6.1724653,9,22,112.13519,0,3,3,2021,14,2,47,55,1,2,0,12.393432,12.393432,0,0,0,0,0,0,0,2,1,1,0,0,6.929318,53.29,45.74,32.5,17.73,6.666666666666667,1,1,0,0,13,6,4,1,938.5,42275.449,124072.09,0,0,1358.9484,0,3347.8018 +15673,19165,34146,-9,34147,-9,1,1,1,1,1,1,3,0,-9,0,4,0,0,0,0,0,-1007.0196,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,6,1,1,-9,0,0,6,1,1,1032,39357.516,0,0,0,0,0,518.66632 +15673,19165,34147,-9,34144,34145,1,0,18,1,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.7814,-9,2,2,2021,24,12,0,0,2,12,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,23.23,48.87,-9,-9,5,1,1,0,0,0,6,1,1,1032,39357.516,0,0,0,0,0,518.66632 +15674,19166,34148,-9,-9,-9,1,1,88,0,0,0,3,3,-9,0,1,0,7.0110421,6.9209456,0,0,-947.35834,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.0060802,7.0648861,49.5,30.73,-9,-9,10,1,1,0,0,0,2,2,1,391,316933.97,94241,0,0,0,0,451.32776 +15675,19167,34149,-9,-9,-9,1,1,35,0,0,0,1,1,-9,0,5,8.782671,8.6743069,0,0,0,-1007.1494,0,2,1,2021,11,0,38,38,1,0,0,13.504534,13.504534,.05,.05,0,0,0,0,0,0,0,0,0,4.1783166,0,51.73,58.82,-9,-9,8.333333333333334,1,1,0,0,11,10,5,0,805,209144.67,-17573.963,0,0,0,0,1564.7177 +15676,19168,34150,-9,-9,-9,1,0,54,0,0,0,2,2,-9,0,3,7.8468814,7.6104002,0,0,0,-984.52142,-9,3,3,2021,11,0,38,0,1,0,0,8.4986725,8.4986725,0,0,0,0,0,0,0,2,0,0,0,0,0,48,49,-9,-9,8.333333333333334,1,1,0,0,8,13,3,1,301,-68695.586,1813.754,195982.28,23990.404,0,0,1340.8925 +15676,19169,34151,-9,34150,-9,1,1,34,0,0,0,2,2,-9,0,3,7.8202648,8.107439,0,0,0,-1032.2898,-9,3,-9,2021,12,1,37,0,1,1,1,5.4160781,5.4160781,0,0,0,0,0,0,0,0,0,0,0,0,0,49.04,55.86,-9,-9,5,1,1,0,0,8,13,4,1,1158,-164131.95,0,0,0,0,-2382.3091,1211.9775 +15677,19170,34152,-9,-9,-9,1,1,28,0,0,0,2,2,-9,1,3,0,5.3776917,5.2978864,0,0,-944.0282,0,2,2,2021,7,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0361552,0,47.71,51.43,-9,-9,6.666666666666667,1,1,1,0,10,9,2,1,1064,91138.875,0,0,0,0,0,377.88052 +15678,19171,34153,34157,-9,-9,1,0,37,0,3,0,2,2,-9,0,3,0,0,0,20,-3,17.554338,0,3,2,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,52.63,53.99,8.333333333333334,2,3,0,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34154,-9,34153,34157,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1041.8955,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,62,-9,-9,7,2,3,-9,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34155,-9,34153,34157,1,1,14,0,3,1,3,0,-9,0,3,0,0,0,0,0,-996.29547,-9,2,2,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,2,3,-9,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34156,-9,34153,34157,1,0,16,0,3,0,3,3,-9,0,4,0,0,0,0,0,-969.32599,-9,2,2,2021,5,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,-9,-9,8.333333333333334,2,3,1,0,0,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19171,34157,34153,-9,-9,1,1,40,0,3,0,2,2,-9,0,4,5.3080664,5.4832201,0,20,3,86.611786,0,3,3,2021,7,0,38,38,1,0,0,.68185735,.68185735,0,0,0,0,0,0,0,0,1,1,0,0,0,52.63,53.99,57.33,53.46,8.333333333333334,2,3,0,0,12,6,2,1,807.79999,-102776.29,0,0,0,3008.1821,0,1488.1851 +15678,19172,34158,-9,34153,34157,1,1,18,0,3,1,2,0,0,0,5,0,0,0,0,0,-1135.6582,-9,2,2,2021,6,0,0,0,2,0,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,65.8,47,-9,-9,10,2,3,0,0,0,6,1,1,323,102492.43,0,0,0,0,0,0 +15679,19173,34159,34160,-9,-9,1,1,63,0,0,0,1,1,-9,0,3,7.4794431,8.3578453,7.7158465,8,8,23.072433,0,-9,-9,2021,14,2,5,50,1,2,0,47.485176,47.485176,.05,.05,0,0,0,0,0,0,0,0,0,7.2927551,8.2382097,52.41,47.5,52.31,40.62,5,1,1,0,0,10,11,4,1,134.5,426531.59,440233.44,156480.67,83506.555,6412.2949,3356.0571,2846.6548 +15679,19173,34160,34159,-9,-9,1,0,55,0,0,0,2,2,-9,0,3,6.7906356,6.794167,0,8,-8,94.789154,0,3,2,2021,7,0,16,0,1,0,0,6.4971128,6.4971128,.05,.05,0,0,0,0,0,7,0,0,0,1.2646158,0,52.31,40.62,52.41,47.5,1.666666666666667,1,1,0,0,9,11,4,1,134.5,426531.59,440233.44,156480.67,83506.555,6412.2949,3356.0571,2846.6548 +15680,19174,34161,34163,-9,-9,1,1,35,0,1,0,2,2,-9,0,3,8.8143158,8.8010168,0,9,-3,8.416604,0,2,2,2021,12,0,43,43,1,0,0,18.644094,18.644094,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,43.55,57.37,52.34,56.95,6.666666666666667,1,1,0,0,8,12,4,1,804.33331,804421.06,681606.81,0,0,0,0,3415.2412 +15680,19174,34162,-9,34163,34161,1,1,6,0,1,1,3,0,-9,0,4,0,0,0,0,0,-913.75604,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,4,1,804.33331,804421.06,681606.81,0,0,0,0,3415.2412 +15680,19174,34163,34161,-9,-9,1,0,38,0,1,0,2,2,-9,0,4,7.4771476,7.6436443,0,9,3,-11.786849,0,-9,-9,2021,7,0,26,27,1,0,0,9.1542902,9.1542902,0,0,0,0,0,0,0,0,1,1,0,0,0,52.34,56.95,43.55,57.37,6.666666666666667,1,1,0,0,12,12,4,1,804.33331,804421.06,681606.81,0,0,0,0,3415.2412 +15681,19175,34164,34165,-9,-9,1,0,84,0,0,0,3,3,-9,0,2,0,0,0,46,-1,58.611771,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1289151,0,62.41,29.71,57.38,40.19,8.333333333333334,1,1,0,0,0,6,2,1,1109,376858.38,173651.59,225191.03,0,0,0,1655.9414 +15681,19175,34165,34164,-9,-9,1,1,85,0,0,0,3,3,-9,0,2,0,7.0562119,7.3005905,45,1,-34.259159,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.4652066,6.9422188,57.38,40.19,62.41,29.71,10,1,1,0,0,0,6,2,1,1109,376858.38,173651.59,225191.03,0,0,0,1655.9414 +15682,19176,34166,-9,-9,-9,1,0,45,0,0,0,1,1,-9,0,5,9.0234461,9.0208941,0,0,0,-1089.5844,0,2,2,2021,6,0,45,45,1,0,0,25.766628,25.766628,.05,.05,0,0,0,0,0,0,1,1,0,7.0825262,0,46.88,60.96,-9,-9,8.333333333333334,1,1,0,0,8,2,5,1,256,434393.59,207716.55,98770.695,10222.45,17288.932,0,2733.6501 +15683,19177,34167,34168,-9,-9,1,1,33,0,2,0,1,1,-9,0,4,8.0091486,8.433342,0,8,0,47.841972,0,2,2,2021,10,0,37,42,1,1,0,12.760218,12.760218,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50,57,40.38,61.66,7,1,1,0,0,1,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15683,19177,34168,34167,-9,-9,1,0,33,0,2,0,2,2,-9,0,5,0,0,0,8,0,10.549014,0,2,2,2021,10,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.38,61.66,50,57,5,1,1,1,0,7,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15683,19177,34169,-9,34168,34167,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.3311,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15683,19177,34170,-9,34168,34167,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-950.80273,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,6,3,0,940.5,-77975.117,67046.547,133570.03,113374.5,19307.625,3248.9717,1545.0924 +15684,19178,34171,34172,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.4499083,7.3226819,55,3,-71.024406,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,17.241121,0,0,1,1,0,3.4769747,7.4527082,57,29.53,50.54,49.66,6.666666666666667,1,1,0,0,0,2,2,1,853,1043624,287419.72,462095.53,0,0,0,9780.3057 +15684,19178,34172,34171,-9,-9,1,0,74,0,0,0,3,3,-9,0,3,0,5.6968126,5.7742662,55,-3,69.561989,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,1.4740324,0,0,1,1,0,9.6321716,5.6303525,50.54,49.66,57,29.53,8.333333333333334,1,1,0,0,0,2,2,1,853,1043624,287419.72,462095.53,0,0,0,9780.3057 +15685,19179,34173,-9,-9,-9,1,0,89,0,0,0,2,2,-9,0,2,0,5.8540397,5.6844869,0,0,-1097.8262,0,3,3,2021,2,0,0,0,4,0,0,0,0,0,0,0,1,3.4183946,126.07317,49.116421,2,1,1,0,4.4446831,5.5974026,41.64,36.34,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,772,539769.19,69318.547,380485.41,0,0,0,236.10316 +15685,19180,34174,-9,34173,-9,1,0,51,0,0,0,2,2,-9,0,2,0,7.5416493,7.5135546,0,0,-1153.8303,0,2,-9,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,27,1,1,0,0,7.9066997,48.02,34.89,-9,-9,8.333333333333334,1,1,0,0,1,11,4,1,303,591092.94,818332.88,0,0,0,0,1390.4114 +15686,19181,34175,-9,34177,34176,1,1,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1011.5533,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,10,4,0,682.33331,47114.887,35218.695,244794.58,240226.09,366.48788,3556.5732,3044.0452 +15686,19181,34176,34177,-9,-9,1,1,29,0,1,0,2,2,-9,0,3,8.3588171,8.2735872,0,6,-1,14.344504,0,2,2,2021,12,2,42,41,1,2,0,11.20647,11.20647,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47.46,52.7,60.13,49.27,8.333333333333334,1,1,0,0,11,10,4,0,682.33331,47114.887,35218.695,244794.58,240226.09,366.48788,3556.5732,3044.0452 +15686,19181,34177,34176,-9,-9,1,0,30,0,1,0,1,1,-9,0,4,8.4648247,8.4636755,0,6,1,19.519428,0,2,2,2021,7,0,30,21,1,0,0,18.887299,18.887299,0,0,0,0,0,0,0,0,1,1,0,0,0,60.13,49.27,47.46,52.7,8.333333333333334,1,1,0,0,11,10,4,0,682.33331,47114.887,35218.695,244794.58,240226.09,366.48788,3556.5732,3044.0452 +15687,19182,34178,34181,-9,-9,1,1,46,1,2,0,1,1,-9,0,5,9.5826235,9.7034721,0,6,4,66.795158,0,-9,-9,2021,7,0,50,49,1,0,0,30.485622,30.485622,.05,.05,0,0,0,0,0,0,0,0,0,8.0140123,0,57.06,57.76,54.79,55.86,8.333333333333334,1,1,0,0,8,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15687,19182,34179,-9,34181,34178,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1052.7235,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15687,19182,34180,-9,34181,34178,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.49646,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15687,19182,34181,34178,-9,-9,1,0,42,1,2,0,1,1,-9,0,4,0,0,0,6,-4,-99.90332,0,2,1,2021,7,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,54.79,55.86,57.06,57.76,6.666666666666667,1,1,0,0,9,8,5,1,683.25,550802.81,140582.84,808128.5,335331.53,0,0,5059.3091 +15688,19183,34182,-9,34184,-9,1,1,13,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1032.2351,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,9,2,1,1154.3334,62464.164,75165.523,0,0,1764.411,4669.7217,896.90637 +15688,19183,34183,-9,34184,-9,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-861.01892,-9,1,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,56,-9,-9,6,3,4,-9,0,0,9,2,1,1154.3334,62464.164,75165.523,0,0,1764.411,4669.7217,896.90637 +15688,19183,34184,-9,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,0,5.1263785,5.0294137,0,0,-1047.5618,-9,2,-9,2021,1,0,0,0,2,0,0,0,0,.05,.05,0,0,0,0,0,2,1,1,0,5.4297485,0,57.16,56.15,-9,-9,8.333333333333334,3,4,0,1,5,9,2,1,1154.3334,62464.164,75165.523,0,0,1764.411,4669.7217,896.90637 +15689,19184,34185,34187,-9,-9,1,1,45,0,2,0,2,2,-9,0,4,8.1916828,8.1151648,0,18,1,-2.1627522,0,2,2,2021,11,0,40,43,1,0,0,10.384862,10.384862,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.48,56.4,51.83,57.2,6.666666666666667,1,1,0,0,8,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15689,19184,34186,-9,34187,34185,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-928.25378,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15689,19184,34187,34185,-9,-9,1,0,44,0,2,0,1,1,-9,0,4,4.4301858,4.2314987,0,18,-1,87.090347,0,3,3,2021,5,0,20,20,1,0,0,.42042127,.42042127,.05,.05,0,0,0,0,0,7,1,1,0,0,0,51.83,57.2,50.48,56.4,8.333333333333334,1,1,0,0,7,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15689,19184,34188,-9,34187,34185,1,1,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-982.84668,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,13,3,1,1404,11218.42,27803.723,0,0,0,2265.4258,1771.3149 +15690,19185,34189,-9,34190,34192,1,1,17,0,1,1,2,0,0,0,4,0,0,0,0,0,-1103.0366,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,59,-9,-9,7,4,2,0,0,0,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15690,19185,34190,34192,-9,-9,1,0,45,0,1,0,1,1,-9,1,2,8.0956697,8.1480379,0,7,-1,.59838676,0,3,1,2021,14,2,17,29,1,2,0,17.717798,17.717798,.05,.05,0,0,0,0,0,0,1,1,0,7.7027607,0,41.36,36.72,57.33,53.46,6.666666666666667,4,2,0,0,7,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15690,19185,34191,-9,34190,34192,1,0,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1034.5773,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15690,19185,34192,34190,-9,-9,1,1,46,0,1,0,1,1,-9,0,3,9.3538027,9.4893398,0,7,1,-17.84375,0,2,2,2021,6,0,40,37,1,0,0,21.269556,21.269556,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,57.33,53.46,41.36,36.72,8.333333333333334,4,2,0,0,7,12,5,1,718,1475437.6,532518,401275.25,0,0,0,7084.2695 +15691,19186,34193,34196,-9,-9,1,0,41,0,3,0,2,2,-9,0,4,7.8751879,8.2984962,0,6,-7,4.8080988,0,-9,-9,2021,6,0,37,40,1,0,0,10.991124,10.991124,.05,.05,0,0,0,0,0,0,1,0,1,0,0,60.12,54.8,38.11,59.76,10,3,4,0,0,3,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34194,-9,34193,34196,1,1,8,0,3,1,3,0,-9,0,4,0,0,0,0,0,-1052.7212,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,4,2,-9,0,0,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34195,-9,34193,34196,1,0,16,0,3,1,2,0,-9,0,3,0,0,0,0,0,-863.82935,-9,2,3,2021,18,5,0,0,2,5,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.3019507,0,36.03,51.13,-9,-9,5,3,4,0,0,0,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34196,34193,-9,-9,1,1,48,0,3,0,3,3,-9,0,4,9.6781549,9.7438726,0,6,7,3.1376383,0,2,2,2021,15,5,39,40,1,5,0,43.358101,43.358101,.05,.05,0,0,0,0,0,0,1,0,1,9.365942,0,38.11,59.76,60.12,54.8,6.666666666666667,1,1,0,0,14,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15691,19186,34197,-9,34193,34196,1,0,10,0,3,1,3,0,-9,0,5,0,0,0,0,0,-1241.0211,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,3,4,-9,0,0,6,5,0,678,756171.94,547117.56,315501.5,138331.02,0,0,11917.069 +15692,19187,34198,-9,-9,-9,1,1,26,0,0,0,1,1,-9,0,4,8.8076944,9.1909409,0,0,0,-1028.2761,0,1,2,2021,10,1,40,28,1,1,0,22.198986,22.198986,0,0,0,0,0,0,0,0,0,0,0,0,0,48.87,58.55,-9,-9,10,1,1,0,0,4,8,5,1,1460,48136.629,132545.72,0,0,0,0,2266.4946 +15693,19188,34199,34200,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,7.9104419,8.0945177,0,18,4,-48.829849,0,2,-9,2021,10,0,39,39,1,0,0,10.957531,10.957531,0,0,.05,0,0,0,0,2,1,1,0,3.2843108,0,46.37,50.17,48.89,38.67,6.666666666666667,1,1,0,0,11,11,4,1,574,117534,54997.098,215314.69,91573.547,0,11494.162,3074.4326 +15693,19188,34200,34199,-9,-9,1,0,36,0,0,0,2,2,-9,0,2,7.6581407,7.8497272,0,18,-4,-23.411877,0,2,1,2021,5,1,30,0,1,1,0,8.8044538,8.8044538,0,0,0,0,0,0,0,0,1,1,0,2.6638672,0,48.89,38.67,46.37,50.17,3.333333333333333,1,1,0,0,11,11,4,1,574,117534,54997.098,215314.69,91573.547,0,11494.162,3074.4326 +15694,19189,34201,-9,34204,-9,1,1,12,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1011.8782,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,3,4,-9,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15694,19189,34202,-9,34204,-9,1,1,6,1,3,1,3,0,-9,0,4,0,0,0,0,0,-895.17987,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,3,4,-9,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15694,19189,34203,-9,34204,-9,1,0,1,1,3,1,3,0,-9,0,4,0,0,0,0,0,-989.38263,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,3,4,-9,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15694,19189,34204,-9,-9,-9,1,0,35,1,3,0,2,2,0,0,3,0,0,0,0,0,-1035.1621,-9,3,3,2021,13,3,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40.98,52.59,-9,-9,6.666666666666667,3,4,0,0,0,8,1,0,356.25,-40541.844,0,0,0,8391.2959,518.62164,3368.8853 +15695,19190,34205,34206,-9,-9,1,1,73,0,0,0,3,3,-9,0,4,0,6.9545321,7.5167398,52,5,-96.008972,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.9775894,7.1900597,57.16,56.15,52.84,35.8,10,1,1,0,0,0,2,3,1,4135.5,941161.25,317051.31,255898.66,0,0,0,2213.7769 +15695,19190,34206,34205,-9,-9,1,0,68,0,0,0,3,3,-9,0,3,0,7.2661195,6.889679,52,-5,-25.041557,0,-9,-9,2021,7,1,0,0,4,1,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.8192239,6.7611637,52.84,35.8,57.16,56.15,8.333333333333334,1,1,0,0,5,2,3,1,4135.5,941161.25,317051.31,255898.66,0,0,0,2213.7769 +15696,19191,34207,34209,-9,-9,1,1,62,0,0,0,2,2,-9,0,4,0,8.1122847,7.9151378,9,3,34.2976,0,2,2,2021,8,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.36876953,8.1589746,66.2,41.05,57.16,56.15,10,1,1,0,0,8,4,3,1,760.33331,1505242.5,917907.94,421335.09,0,0,0,1788.7834 +15696,19191,34208,-9,34209,34207,1,0,17,0,0,1,2,0,0,0,4,0,0,0,0,0,-1047.922,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.45522442,0,49.35,59.64,-9,-9,8.333333333333334,1,1,0,0,1,4,3,1,760.33331,1505242.5,917907.94,421335.09,0,0,0,1788.7834 +15696,19191,34209,34207,-9,-9,1,0,59,0,0,0,2,2,-9,0,4,0,0,0,9,-3,68.1091,0,2,1,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.99185944,0,57.16,56.15,66.2,41.05,8.333333333333334,1,1,0,0,0,4,3,1,760.33331,1505242.5,917907.94,421335.09,0,0,0,1788.7834 +15697,19192,34210,-9,-9,-9,1,1,66,0,0,0,1,1,-9,0,2,0,8.2399139,8.3652744,0,0,-934.15973,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,6.7063537,0,40.712841,0,1,1,0,5.4760351,8.276597,48.07,37.94,-9,-9,6.666666666666667,1,1,0,0,8,9,4,1,412,1230589.6,1094366.9,0,0,0,10318.711,3310.6919 +15698,19193,34211,34213,-9,-9,1,0,53,0,1,0,2,2,-9,0,4,7.3303232,7.4647474,0,7,-3,95.103073,0,-9,-9,2021,7,0,30,30,1,0,0,6.0781679,6.0781679,0,0,0,0,0,0,0,0,1,1,0,0,0,61.88,41.68,37.88,15.31,8.333333333333334,1,1,0,0,9,1,2,1,458.66666,-74510.023,0,0,0,0,0,1344.5146 +15698,19193,34212,-9,34211,34213,1,1,15,0,1,1,3,0,-9,0,4,0,0,0,0,0,-896.39282,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,1,2,1,458.66666,-74510.023,0,0,0,0,0,1344.5146 +15698,19193,34213,34211,-9,-9,1,1,56,0,1,0,2,2,-9,0,1,0,0,0,30,3,-36.917149,0,2,2,2021,26,9,0,0,4,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37.88,15.31,61.88,41.68,5,1,1,0,0,0,1,2,1,458.66666,-74510.023,0,0,0,0,0,1344.5146 +15698,19194,34214,-9,34211,34213,1,1,27,0,1,0,2,2,-9,1,3,0,0,0,0,0,-1016.2007,0,2,2,2021,3,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,52.99,51.28,-9,-9,8.333333333333334,1,1,0,1,2,1,1,1,26,5467.5449,0,0,0,0,0,-597.70599 +15698,19195,34215,-9,34211,34213,1,0,23,0,1,0,2,2,-9,0,3,7.8103113,7.8270721,0,0,0,-983.53827,0,2,2,2021,17,5,47,52,1,5,1,6.7593846,6.7593846,.05,.05,0,0,0,0,0,0,1,1,0,0,0,41.48,52.55,-9,-9,8.333333333333334,1,1,0,0,4,1,3,1,1825,122992.16,38347.52,0,0,0,0,645.73877 +15699,19196,34216,-9,-9,-9,1,0,52,0,0,0,2,2,-9,0,3,8.2768936,7.8905673,0,0,0,-972.45874,0,3,2,2021,6,0,38,41,1,0,0,11.075934,11.075934,.05,.05,0,0,0,0,0,42,1,1,0,0,0,57.09,46.7,-9,-9,8.333333333333334,1,1,0,0,8,12,4,0,1603,-127529.01,-68026.391,0,0,0,0,698.87421 +15700,19197,34217,34218,-9,-9,1,1,79,0,0,0,1,1,-9,0,3,0,7.4679785,7.4560304,9,2,-19.947348,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.1017177,7.6002102,51.48,43.71,49.75,32.52,8.333333333333334,1,1,0,0,0,11,3,0,288.5,2178233,732728.63,261277.25,0,0,0,1846.9672 +15700,19197,34218,34217,-9,-9,1,0,77,0,0,0,2,2,-9,0,2,0,7.654995,7.3331165,9,-2,-20.829882,0,3,1,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,13.827926,0,0,1,1,0,3.3094518,7.670012,49.75,32.52,51.48,43.71,6.666666666666667,1,1,0,0,0,11,3,0,288.5,2178233,732728.63,261277.25,0,0,0,1846.9672 +15701,19198,34219,-9,-9,-9,1,0,74,2,2,0,1,1,-9,0,3,0,0,0,0,0,-900.5636,-9,2,2,2021,11,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.168395,0,51,46,-9,-9,7,1,1,0,0,2,8,1,1,279,-13602.377,0,0,0,0,0,-184.50955 +15702,19199,34220,34221,-9,-9,1,0,45,0,1,0,2,2,-9,0,5,8.6125965,8.3658447,5.2484498,2,0,-53.389404,0,-9,-9,2021,8,0,41,41,1,0,0,14.49685,14.49685,0,0,0,0,0,0,0,0,1,1,0,5.2047544,0,52.21,59.91,57.06,57.76,1.666666666666667,1,1,0,0,9,12,5,1,1210.6666,485571.69,169997.5,157490.3,15463.697,0,0,3931.6287 +15702,19199,34221,34220,-9,-9,1,1,45,0,1,0,2,2,-9,0,5,8.5730143,8.6502342,0,2,0,-41.630573,0,-9,-9,2021,6,0,56,40,1,0,0,10.218009,10.218009,0,0,.05,0,0,0,0,0,1,1,0,0,0,57.06,57.76,52.21,59.91,10,1,1,0,0,1,12,5,1,1210.6666,485571.69,169997.5,157490.3,15463.697,0,0,3931.6287 +15702,19199,34222,-9,34220,-9,1,1,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-948.62048,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,12,5,1,1210.6666,485571.69,169997.5,157490.3,15463.697,0,0,3931.6287 +15703,19200,34223,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,0,0,0,0,0,-974.83588,-9,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,5.8465919,0,0,1,1,0,0,0,52,48,-9,-9,7,1,1,0,1,0,2,1,0,3540,112275.28,75976.813,0,0,0,0,1433.6244 +15704,19201,34224,-9,-9,-9,1,0,27,0,0,0,2,2,-9,0,2,6.7263622,6.7910781,0,0,0,-1022.5179,0,3,3,2021,21,9,15,0,1,9,0,6.9096661,6.9096661,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.89,51.11,-9,-9,8.333333333333334,2,3,0,0,1,6,2,0,681,104719.87,-41028.551,0,0,0,0,-7.7929387 +15704,19202,34225,-9,-9,-9,1,0,28,0,0,0,1,1,-9,0,4,7.8532991,7.561892,0,0,0,-1042.2954,0,3,3,2021,11,0,15,0,1,2,0,20.587763,20.587763,0,0,0,0,0,0,0,7,1,1,0,1.9075687,0,54.77,55.87,-9,-9,10,2,3,0,0,1,6,3,0,382,73469.023,0,0,0,0,0,1589.4933 +15704,19203,34226,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,0,0,0,0,-962.55115,0,-9,-9,2021,24,12,0,0,4,12,0,0,0,0,0,0,1,7.6622539,39.749084,68.433067,0,1,1,0,0,0,39.08,22.93,-9,-9,3.333333333333333,2,3,0,0,0,6,1,0,596,-16145.528,-85506.852,0,0,0,0,1201.4468 +15705,19204,34227,-9,-9,-9,1,0,33,0,0,0,2,2,-9,0,4,7.2144279,7.2311578,0,0,0,-933.47632,0,3,3,2021,6,0,30,50,1,0,0,5.6979446,5.6979446,0,0,0,0,0,0,0,0,0,0,0,0,0,55.36,54.24,-9,-9,8.333333333333334,1,1,0,0,10,2,3,1,859,59256.645,0,0,0,0,0,898.65808 +15706,19205,34228,34229,-9,-9,1,1,28,0,0,0,1,1,-9,0,5,8.6303358,9.0084257,0,2,-7,75.612396,0,-9,-9,2021,12,1,43,37,1,1,0,21.296301,21.296301,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,51.14,60.45,6.666666666666667,4,2,0,0,1,7,5,1,342,132906.34,-85157.242,396727.22,283101.09,1846.5093,0,4468.6797 +15706,19205,34229,34228,-9,-9,1,0,35,0,0,0,1,1,-9,0,5,8.8411446,8.779892,0,2,7,68.604874,0,3,2,2021,10,2,42,42,1,2,0,15.432776,15.432776,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.14,60.45,51.73,58.82,8.333333333333334,1,1,0,0,12,7,5,1,342,132906.34,-85157.242,396727.22,283101.09,1846.5093,0,4468.6797 +15707,19206,34230,-9,-9,-9,1,0,71,0,0,0,3,3,-9,0,1,0,6.5457788,6.3799582,0,0,-986.08698,0,3,3,2021,12,3,0,0,4,3,0,0,0,0,0,0,1,0,0,0,0,1,1,0,2.3614972,6.3189044,48.31,18.87,-9,-9,3.333333333333333,1,1,0,0,4,9,2,1,1519,127055.84,183618.8,243347.03,0,0,10856.942,680.64044 +15708,19207,34231,-9,34233,-9,1,1,0,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.9238,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,1,1,-9,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34232,-9,34233,-9,1,0,5,1,4,1,3,0,-9,0,4,0,0,0,0,0,-978.52533,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34233,-9,-9,-9,1,0,35,1,4,0,2,2,-9,0,2,0,5.2074609,5.1572886,0,0,-1173.1259,-9,3,2,2021,24,11,0,0,3,11,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1589131,0,30.74,41.75,-9,-9,3.333333333333333,1,1,0,1,2,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34234,-9,34233,-9,1,1,17,1,4,1,2,0,-9,0,3,0,0,0,0,0,-929.35864,-9,2,-9,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43.31,46.66,-9,-9,10,1,1,0,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15708,19207,34235,-9,34233,-9,1,0,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1013.1172,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,10,2,0,1051.6,5753.1147,0,0,0,0,0,1371.1322 +15709,19208,34236,-9,-9,-9,1,1,68,0,0,0,2,2,-9,0,3,0,7.4863091,7.2734218,0,0,-974.00305,0,3,2,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,1.178605,7.6184077,58.32,50.22,-9,-9,10,1,1,0,0,3,5,3,1,421,563685.88,274664.94,72744.586,0,0,0,1822.6053 +15710,19209,34237,34238,-9,-9,1,0,52,0,0,0,3,3,-9,0,4,0,0,0,15,-2,-37.119377,0,3,3,2021,25,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,50,54,16.04,23.99,3.333333333333333,1,1,0,0,0,4,2,1,1228,102070.37,201406.44,0,0,2535.7156,1347.731,3089.9634 +15710,19209,34238,34237,-9,-9,1,1,54,0,0,0,2,2,-9,1,1,0,5.5029073,5.5366445,15,2,-5.658596,0,3,3,2021,36,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.60540646,5.2833114,16.04,23.99,50,54,0,1,1,0,1,0,4,2,1,1228,102070.37,201406.44,0,0,2535.7156,1347.731,3089.9634 +15711,19210,34239,-9,34240,-9,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-831.19135,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,61,-9,-9,7,1,1,-9,0,0,5,2,0,796,11528.019,0,0,0,9934.2627,0,1428.7375 +15711,19210,34240,-9,-9,-9,1,0,35,0,2,0,2,2,-9,0,3,7.1349306,7.1767545,0,0,0,-1031.6454,0,2,3,2021,8,2,10,10,1,2,0,13.89351,13.89351,0,0,0,0,0,0,0,0,1,0,1,0,0,65.5,31.87,-9,-9,5,1,1,0,0,15,5,2,0,796,11528.019,0,0,0,9934.2627,0,1428.7375 +15711,19210,34241,-9,34240,-9,1,0,11,0,2,1,3,0,-9,0,5,0,0,0,0,0,-936.79492,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,62,-9,-9,7,1,1,-9,0,0,5,2,0,796,11528.019,0,0,0,9934.2627,0,1428.7375 +15712,19211,34242,34243,-9,-9,1,1,23,0,0,0,1,1,-9,0,5,7.9235072,7.983304,5.4743447,2,0,56.941582,0,-9,-9,2021,8,0,40,0,1,0,0,8.8675251,8.8675251,.05,.05,0,0,0,0,0,0,0,0,0,7.5000196,0,57.06,57.76,43.38,62.58,8.333333333333334,1,1,0,0,0,8,5,0,818.5,164552.78,18744.355,310372.97,220734.16,8876.8086,0,4512.8555 +15712,19211,34243,34242,-9,-9,1,0,23,0,0,0,1,1,-9,0,5,8.3384094,8.4579916,5.7929535,2,0,101.81123,0,1,1,2021,12,0,25,16,1,0,0,18.989937,18.989937,.05,.05,0,0,0,0,0,0,0,0,0,5.8377047,0,43.38,62.58,57.06,57.76,8.333333333333334,1,1,0,0,5,8,5,0,818.5,164552.78,18744.355,310372.97,220734.16,8876.8086,0,4512.8555 +15712,19212,34244,-9,-9,-9,1,1,23,0,0,0,1,1,-9,0,4,7.9831176,8.1540203,0,0,0,-928.54138,-9,-9,-9,2021,6,0,36,0,1,0,0,10.285155,10.285155,0,0,0,0,0,0,0,0,0,0,0,3.5091693,0,57.73,54.53,-9,-9,8.333333333333334,1,1,0,0,2,8,4,0,997,-86846.617,0,0,0,0,0,787.87427 +15713,19213,34245,34246,-9,-9,1,1,49,0,2,0,1,1,-9,0,3,7.9241481,7.7594209,5.735445,23,8,-20.348202,0,3,3,2021,11,0,40,60,1,2,0,8.3617754,8.3617754,0,0,0,0,0,0,0,0,1,0,1,6.0750623,0,48,51,45,51,5,2,3,0,0,13,6,3,1,924.5,128511.98,0,0,0,0,0,1910.0742 +15713,19213,34246,34245,-9,-9,1,0,41,0,2,0,2,2,-9,0,3,0,0,0,23,-8,24.294764,0,3,3,2021,13,0,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,45,51,48,51,5,2,3,1,0,0,6,3,1,924.5,128511.98,0,0,0,0,0,1910.0742 +15713,19214,34247,-9,34246,34245,1,0,19,0,2,1,2,0,0,0,4,0,0,0,0,0,-1071.3018,-9,2,1,2021,15,4,0,0,2,4,1,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44.55,60.42,-9,-9,6.666666666666667,2,3,0,0,0,6,1,1,1055,0,0,0,0,0,0,0 +15714,19215,34248,-9,34251,34250,1,1,7,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1007.6532,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15714,19215,34249,-9,34251,34250,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-993.76056,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15714,19215,34250,34251,-9,-9,1,1,38,0,2,0,2,2,-9,0,4,7.4939723,7.8737621,0,14,2,17.849796,0,3,3,2021,11,0,45,40,1,0,0,4.1906056,4.1906056,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,43.37,57.28,6.666666666666667,1,1,0,0,11,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15714,19215,34251,34250,-9,-9,1,0,36,0,2,0,1,1,-9,0,3,8.1521301,7.9581065,0,14,-2,-78.930008,0,2,3,2021,9,1,33,36,1,1,0,12.428969,12.428969,0,0,0,0,0,0,0,2,1,1,0,0,0,43.37,57.28,51.83,57.2,8.333333333333334,1,1,0,0,10,11,3,1,1041,1051.9814,57617.5,0,0,0,-449.31311,2498.7009 +15715,19216,34252,34253,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,8.2928762,8.4957457,0,12,5,76.120697,0,3,2,2021,7,0,40,25,1,0,0,11.4648,11.4648,.05,.05,0,0,0,0,0,2,0,0,0,0,0,60.12,54.8,51.73,58.82,8.333333333333334,1,1,0,0,13,2,4,1,2388.5,396733.13,187679,281380.16,-17546.439,1216.2517,6158.9731,2353.9849 +15715,19216,34253,34252,-9,-9,1,0,53,0,0,0,2,2,-9,0,5,7.0709748,7.0365758,0,12,-5,54.550735,0,3,3,2021,11,0,28,15,1,0,0,4.6199226,4.6199226,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.73,58.82,60.12,54.8,8.333333333333334,1,1,0,0,10,2,4,1,2388.5,396733.13,187679,281380.16,-17546.439,1216.2517,6158.9731,2353.9849 +15715,19217,34254,-9,34253,34252,1,1,20,0,0,0,3,3,-9,0,2,0,5.1852131,5.302186,0,0,-965.04102,1,2,1,2021,7,0,0,16,2,0,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.6288695,0,25.72,53.53,-9,-9,5,1,1,0,0,1,2,2,1,359,-198591.61,0,0,0,0,3189.574,335.84683 +15716,19218,34255,-9,-9,-9,1,0,48,0,1,0,2,2,-9,0,4,7.0875993,7.2749949,0,0,0,-964.17468,0,3,3,2021,26,10,24,20,1,10,0,6.0841765,6.0841765,0,0,0,0,0,0,0,0,1,1,0,0,0,29.6,59.45,-9,-9,1.666666666666667,1,1,0,1,5,9,2,0,806,190500.38,81077.055,266199.22,99124.875,0,0,945.3324 +15716,19218,34256,-9,34255,-9,1,0,15,0,1,1,3,0,-9,0,3,0,0,0,0,0,-997.995,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,54,-9,-9,6,1,1,-9,0,0,9,2,0,806,190500.38,81077.055,266199.22,99124.875,0,0,945.3324 +15716,19219,34257,-9,34255,-9,1,0,23,0,1,0,2,2,-9,0,4,7.9845877,8.2558174,0,0,0,-873.55377,0,2,-9,2021,6,0,42,43,1,0,1,8.0910759,8.0910759,.05,.05,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,8.333333333333334,1,1,0,0,5,9,4,0,212,-103679.12,48879.301,0,0,0,0,1330.45 +15716,19220,34258,-9,34255,-9,1,1,21,0,1,0,2,2,-9,1,4,0,0,0,0,0,-1056.8656,0,2,-9,2021,10,0,0,0,3,1,1,0,0,0,0,0,0,0,0,0,0,1,1,0,.4206498,0,48,59,-9,-9,7,1,1,0,0,0,9,1,0,205,-192376.48,0,0,0,0,0,-81.622734 +15717,19221,34259,-9,-9,-9,1,0,26,0,0,0,2,2,1,0,4,7.706285,7.8078856,0,0,0,-1118.4666,-9,1,2,2021,16,4,37,0,1,4,0,6.5848055,6.5848055,.05,.05,0,0,0,0,0,0,0,0,0,0,0,32.19,62.45,-9,-9,5,1,1,0,0,7,1,3,0,1489,-127758.9,70372.227,0,0,0,322.30884,384.85614 +15718,19222,34260,-9,-9,-9,1,1,70,0,0,0,1,1,-9,0,3,0,7.970767,7.8266191,0,0,-908.37317,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.9597483,56.67,48.31,-9,-9,10,1,1,0,0,1,7,3,0,373,678901.69,501453.38,325995.47,0,0,0,2194.9011 +15719,19223,34261,34264,-9,-9,1,1,46,1,2,0,1,1,-9,0,3,8.5915995,8.2737932,0,6,9,-49.738762,0,-9,-9,2021,12,2,37,36,1,2,0,10.407855,10.407855,.05,.05,0,0,0,0,0,0,1,1,0,0,0,40.69,59.62,57.32,42.58,8.333333333333334,1,1,0,0,7,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15719,19223,34262,-9,34264,34261,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1059.771,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,1,1,-9,0,0,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15719,19223,34263,-9,34264,34261,1,1,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-994.17169,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15719,19223,34264,34261,-9,-9,1,0,37,1,2,0,1,1,-9,0,4,8.5765915,8.5853214,0,6,0,176.84482,0,2,2,2021,10,2,36,36,1,2,0,14.561793,14.561793,0,0,0,0,0,0,0,0,1,1,0,2.2505558,0,57.32,42.58,40.69,59.62,8.333333333333334,1,1,0,0,7,2,4,1,1277.75,400162.16,142000.63,352430,133890.22,5613.6206,0,4335.9653 +15720,19224,34265,34266,-9,-9,1,1,87,0,0,0,1,1,-9,0,4,0,8.5930977,8.5624294,61,6,-15.853036,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,1.8676481,8.4741478,54.56,43.56,59.53,56.44,8.333333333333334,1,1,0,0,0,4,4,1,320.5,1310657.8,396983.09,317459.81,0,0,0,3947.6396 +15720,19224,34266,34265,-9,-9,1,0,81,0,0,0,1,1,-9,0,4,0,6.7064528,6.7747159,61,-6,-133.04796,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,4.6056104,7.1422772,59.53,56.44,54.56,43.56,8.333333333333334,1,1,0,0,0,4,4,1,320.5,1310657.8,396983.09,317459.81,0,0,0,3947.6396 +15721,19225,34267,-9,34270,34271,1,0,14,0,4,1,3,0,-9,0,2,0,0,0,0,0,-1016.8954,-9,3,3,2021,16,0,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,37,44,-9,-9,5,2,3,-9,0,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34268,-9,34270,34271,1,0,12,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1020.6898,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34269,-9,34270,34271,1,0,15,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1021.8782,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,2,3,-9,0,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34270,34271,-9,-9,1,0,46,0,4,0,3,3,-9,0,3,0,0,0,18,-14,54.601627,0,3,3,2021,13,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.5,56.19,51,49,8.333333333333334,2,3,0,1,0,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15721,19225,34271,34270,-9,-9,1,1,60,0,4,0,3,3,-9,0,3,8.2555246,8.2344437,0,18,14,74.582756,0,-9,-9,2021,10,0,38,44,1,1,0,10.43284,10.43284,0,0,.05,0,0,0,0,0,1,1,0,5.0098357,0,51,49,39.5,56.19,7,2,3,0,0,1,5,2,1,602,1032325.3,137956.11,472898.38,37428.699,124.84885,0,1939.6416 +15722,19226,34272,-9,-9,-9,1,1,77,0,0,0,3,3,-9,0,4,0,4.6029816,4.4131346,0,0,-1060.6709,0,3,3,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.7512519,4.6712451,54.79,55.86,-9,-9,6.666666666666667,1,1,0,0,0,12,2,0,441,134415.53,25305.926,0,0,0,0,1289.9198 +15723,19227,34273,34274,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,8.4801064,8.5805502,0,24,-4,28.647955,0,3,3,2021,11,0,44,42,1,0,0,13.576081,13.576081,0,0,.05,0,0,0,0,0,1,1,0,5.9469323,0,58.24,41.84,53,55,8.333333333333334,2,3,0,0,8,8,5,1,481,772811.06,83327.102,678804.06,109092.42,0,0,4836.5771 +15723,19227,34274,34273,34275,-9,1,1,47,0,0,0,1,1,-9,0,4,8.4948931,9.0081177,0,6,4,-27.952148,0,2,-9,2021,9,0,40,42,1,1,0,18.65704,18.65704,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,53,55,58.24,41.84,8,2,3,0,0,1,8,5,1,481,772811.06,83327.102,678804.06,109092.42,0,0,4836.5771 +15723,19228,34275,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,3,0,0,0,0,0,-1045.2336,0,-9,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,52,45,-9,-9,8,2,3,0,0,0,8,1,1,332,-77635.891,0,0,0,0,0,946.88477 +15724,19229,34276,34278,-9,-9,1,0,35,0,4,0,2,2,-9,0,4,7.4140477,7.4515901,0,13,-2,-62.465996,0,2,3,2021,8,0,20,19,1,0,0,11.555369,11.555369,.05,.05,0,0,0,0,0,0,1,1,0,0,0,58.15,52.91,29.22,47.96,8.333333333333334,2,3,0,0,8,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34277,-9,34276,34278,1,0,6,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1086.3757,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34278,34276,-9,-9,1,1,37,0,4,0,1,1,-9,0,2,8.9136848,8.9746284,0,13,2,64.37188,0,3,3,2021,26,11,45,46,1,11,0,19.57547,19.57547,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.22,47.96,58.15,52.91,1.666666666666667,2,3,0,0,9,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34279,-9,34276,34278,1,1,7,0,4,1,3,0,-9,0,4,0,0,0,0,0,-1056.1412,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15724,19229,34280,-9,34276,34278,1,0,9,0,4,1,3,0,-9,0,4,0,0,0,0,0,-988.42053,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,2,3,-9,0,0,8,4,0,1499.8,622839.5,91221.172,866636.94,395613.28,0,6268.4316,4266.5366 +15725,19230,34281,34282,-9,-9,1,1,47,0,1,0,1,1,-9,0,5,9.1934729,9.1338463,0,24,-6,185.21133,0,2,2,2021,2,0,40,40,1,0,0,22.049814,22.049814,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.65,56.13,54.69,33.19,8.333333333333334,1,1,0,0,14,6,5,1,377.33334,1294119.8,380466.38,581690.25,216169.02,8272.1348,0,5522.0742 +15725,19230,34282,34281,-9,-9,1,0,53,0,1,0,1,1,-9,0,2,8.8526659,8.7670298,0,26,6,29.430487,0,3,3,2021,8,1,65,54,1,1,0,11.289167,11.289167,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.69,33.19,57.65,56.13,6.666666666666667,1,1,0,0,12,6,5,1,377.33334,1294119.8,380466.38,581690.25,216169.02,8272.1348,0,5522.0742 +15725,19230,34283,-9,34282,34281,1,1,13,0,1,1,3,0,-9,0,5,0,0,0,0,0,-885.53339,-9,1,1,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,48,63,-9,-9,7,1,1,-9,0,0,6,5,1,377.33334,1294119.8,380466.38,581690.25,216169.02,8272.1348,0,5522.0742 +15726,19231,34284,-9,34286,-9,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1085.761,0,2,-9,2021,18,6,0,0,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,30.71,46.65,-9,-9,3.333333333333333,1,1,0,0,1,9,2,0,1008,166507.25,-3070.5518,165670.41,46297.82,8256.9434,0,1019.3709 +15726,19231,34285,-9,34286,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1029.4165,-9,2,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,9,2,0,1008,166507.25,-3070.5518,165670.41,46297.82,8256.9434,0,1019.3709 +15726,19231,34286,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,3,7.2983508,7.2529893,0,0,0,-924.27203,0,2,2,2021,8,0,20,17,1,0,0,7.6427789,7.6427789,.05,.05,.05,0,0,0,0,0,1,1,0,0,0,44.04,52.8,-9,-9,6.666666666666667,1,1,0,0,9,9,2,0,1008,166507.25,-3070.5518,165670.41,46297.82,8256.9434,0,1019.3709 +15726,19232,34287,-9,34286,-9,1,0,20,0,1,0,2,2,-9,0,3,7.1068239,7.1407814,0,0,0,-944.92963,0,2,-9,2021,8,1,25,23,1,1,1,5.3470821,5.3470821,0,0,0,0,0,0,0,0,1,1,0,0,0,45.35,54.75,-9,-9,8.333333333333334,1,1,0,0,1,9,2,0,230,-88806.773,0,0,0,173.03275,390.12305,738.12238 +15727,19233,34288,34289,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,6.2984872,6.6147685,51,-3,40.609322,0,3,3,2021,7,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0912042,6.3148117,52.98,41.68,46.2,43.53,8.333333333333334,1,1,0,0,0,4,2,1,1310,741022.5,299835.88,368427.34,0,0,0,2468.8691 +15727,19233,34289,34288,-9,-9,1,1,74,0,0,0,2,2,-9,0,3,0,7.0834413,7.0296326,51,3,-.13492879,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.7699752,7.0419679,46.2,43.53,52.98,41.68,8.333333333333334,1,1,0,0,6,4,2,1,1310,741022.5,299835.88,368427.34,0,0,0,2468.8691 +15728,19234,34290,-9,-9,34292,1,0,17,0,1,1,2,0,-9,0,5,0,0,0,0,0,-1040.8442,-9,-9,2,2021,13,4,0,0,2,4,0,0,0,0,0,0,0,0,0,0,0,1,0,1,3.9855399,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,0,4,3,1,384,-2510.2656,75803.703,129871.09,117959.66,586.68066,52.313385,2194.064 +15728,19234,34291,-9,-9,34292,1,0,8,0,1,1,3,0,-9,0,4,0,0,0,0,0,-852.1438,-9,-9,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,43,61,-9,-9,7,1,1,-9,0,0,4,3,1,384,-2510.2656,75803.703,129871.09,117959.66,586.68066,52.313385,2194.064 +15728,19234,34292,-9,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.4456663,7.9369364,0,0,0,-1143.1827,0,3,3,2021,9,0,40,40,1,0,0,8.7625999,8.7625999,.05,.05,0,0,0,0,0,0,1,0,1,0,0,39.12,54.85,-9,-9,8.333333333333334,1,1,0,0,13,4,3,1,384,-2510.2656,75803.703,129871.09,117959.66,586.68066,52.313385,2194.064 +15728,19235,34293,-9,-9,34292,1,0,20,0,1,0,2,2,-9,0,4,7.4049315,7.4240093,0,0,0,-991.39227,0,-9,2,2021,19,6,40,55,1,6,1,4.0208931,4.0208931,0,0,0,0,0,0,0,0,1,0,1,2.2749739,0,36.16,61.92,-9,-9,8.333333333333334,1,1,0,0,4,4,3,1,947,-33176.887,0,0,0,0,0,766.9895 +15729,19236,34294,-9,-9,-9,1,0,60,0,0,0,1,1,-9,0,3,8.4846029,8.3008871,0,0,0,-1027.7089,-9,-9,-9,2021,10,1,39,0,1,1,0,14.064137,14.064137,.05,.05,.05,0,0,0,0,0,0,0,0,7.8875728,0,54.36,45.2,-9,-9,6.666666666666667,3,4,0,0,9,8,5,1,235,178207.69,410477.78,206248.69,87637,0,215.55786,3176.7273 +15729,19237,34295,-9,34294,-9,1,1,28,0,0,0,1,1,-9,0,4,8.609849,8.7779398,0,0,0,-832.98047,0,1,-9,2021,7,0,45,30,1,0,1,11.54806,11.54806,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49.97,56.66,-9,-9,8.333333333333334,3,4,0,0,9,8,5,1,556,-33800.195,-60397.238,0,0,0,0,3222.1736 +15729,19238,34296,-9,34294,-9,1,0,27,0,0,0,1,1,-9,0,4,8.3800001,8.2690639,0,0,0,-1066.9027,0,1,-9,2021,12,0,35,37,1,0,1,16.458281,16.458281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,42.04,40.97,-9,-9,8.333333333333334,3,4,0,0,6,8,5,1,844,2391.6692,-103726.87,0,0,0,0,2405.3376 +15730,19239,34297,34298,-9,-9,1,1,72,0,0,0,3,3,-9,0,3,0,7.884737,8.0664387,53,2,50.303471,0,2,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.8914335,7.6943569,58.32,50.22,58.89,48.6,8.333333333333334,1,1,0,0,0,2,3,1,1375.5,935384.38,655176.88,145650.27,0,0,0,2043.8536 +15730,19239,34298,34297,-9,-9,1,0,70,0,0,0,3,3,-9,0,3,0,0,0,53,-2,-20.547102,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2672033,0,58.89,48.6,58.32,50.22,8.333333333333334,1,1,0,0,0,2,3,1,1375.5,935384.38,655176.88,145650.27,0,0,0,2043.8536 +15731,19240,34299,-9,-9,-9,1,1,25,0,0,0,1,1,0,0,3,0,0,0,0,0,-1025.2102,-9,-9,-9,2021,11,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.463645,0,49.04,55.86,-9,-9,8.333333333333334,1,1,0,0,9,2,1,0,596,20923.539,0,0,0,0,0,946.26837 +15732,19241,34300,34301,-9,-9,1,1,47,0,0,0,2,2,-9,0,3,8.6321888,8.6471777,0,11,-1,18.645725,0,2,3,2021,6,0,48,95,1,0,0,13.656751,13.656751,.05,.05,0,0,0,0,0,0,0,0,0,0,0,60.29,52.11,38.34,62.12,8.333333333333334,1,1,0,0,12,1,5,1,569.5,311042.75,120863.61,255674.16,52144.352,8003.1973,1049.7915,3516.7266 +15732,19241,34301,34300,-9,-9,1,0,48,0,0,0,2,2,-9,0,4,8.4083624,8.3514261,0,11,1,58.698441,0,1,2,2021,14,4,40,35,1,4,0,11.784318,11.784318,.05,.05,0,0,0,0,0,14.5,0,0,0,0,0,38.34,62.12,60.29,52.11,6.666666666666667,1,1,0,0,12,1,5,1,569.5,311042.75,120863.61,255674.16,52144.352,8003.1973,1049.7915,3516.7266 +15733,19242,34302,-9,-9,-9,1,0,67,0,0,0,1,1,-9,0,4,0,7.4403625,7.9485621,0,0,-945.02826,0,1,1,2021,13,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5774302,7.3862705,50.41,45.68,-9,-9,8.333333333333334,1,1,0,0,4,9,3,1,1189,861199.75,264093.06,330432.25,0,0,0,2202.0703 +15734,19243,34303,34304,-9,-9,1,1,71,0,0,0,2,2,-9,0,4,0,7.8974495,7.6048059,18,-2,-36.926388,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.1617069,7.6486802,59.14,52.5,46.78,39.4,10,1,1,0,0,0,2,4,1,540.5,1050506.4,443215.19,342072.44,0,0,0,3709.3721 +15734,19243,34304,34303,-9,-9,1,0,73,0,0,0,2,2,-9,0,2,0,7.7762609,7.6662784,18,2,2.7022445,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,7.4467239,7.5272694,46.78,39.4,59.14,52.5,8.333333333333334,1,1,0,0,0,2,4,1,540.5,1050506.4,443215.19,342072.44,0,0,0,3709.3721 +15735,19244,34305,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,8.2084455,8.2469835,0,0,0,-919.26416,0,-9,-9,2021,12,1,40,45,1,1,0,11.127925,11.127925,0,0,0,0,0,0,0,0,1,1,0,0,0,56.5,48.33,-9,-9,8.333333333333334,1,1,0,0,8,8,4,1,510,473148.19,23199.73,167159.59,0,0,0,2105.9275 +15736,19245,34306,34307,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.3728566,7.4585562,0,5,-7,-122.35292,0,-9,-9,2021,6,0,50,50,1,0,0,3.4415267,3.4415267,.05,.05,0,0,0,0,0,0,0,0,0,.67105585,0,57.16,56.15,54.38,46.77,10,1,1,0,0,4,9,3,0,857.5,-107054.39,-44536.012,0,0,7529.063,0,1214.6941 +15736,19245,34307,34306,-9,-9,1,1,31,0,0,0,2,2,-9,0,3,7.6133618,7.4335084,0,5,7,-117.9966,0,1,-9,2021,5,1,44,49,1,1,0,6.9926777,6.9926777,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.38,46.77,57.16,56.15,8.333333333333334,1,1,0,0,8,9,3,0,857.5,-107054.39,-44536.012,0,0,7529.063,0,1214.6941 +15737,19246,34308,34309,-9,-9,1,1,62,0,0,0,1,1,-9,0,4,0,9.2504854,9.5464697,36,-2,-116.23047,0,2,2,2021,12,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,2,1,1,0,10.030839,9.335578,49.41,58.28,35.03,51.4,8.333333333333334,1,1,0,0,3,9,5,1,1186,2505622.5,1777350.3,508525.75,0,0,0,13776.352 +15737,19246,34309,34308,-9,-9,1,0,64,0,0,0,1,1,-9,0,4,0,0,0,35,2,-27.933601,0,3,2,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.6067386,0,35.03,51.4,49.41,58.28,6.666666666666667,2,3,0,0,0,9,5,1,1186,2505622.5,1777350.3,508525.75,0,0,0,13776.352 +15738,19247,34310,-9,-9,-9,1,0,32,0,1,0,2,2,-9,0,3,6.3553658,6.3175173,0,0,0,-960.81091,0,1,1,2021,11,0,30,25,1,0,0,2.3458433,2.3458433,0,0,0,0,0,0,0,0,1,1,0,0,0,53.31,33.62,-9,-9,10,4,2,0,0,11,10,2,0,280,-208126.22,0,0,0,0,0,1498.6428 +15739,19248,34311,-9,-9,-9,1,0,54,0,1,0,1,1,-9,0,3,0,0,0,0,0,-963.43591,1,1,1,2021,13,2,0,40,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,36.73,46.9,-9,-9,5,3,4,0,0,8,8,1,0,689.5,-29169.016,0,0,0,-1002.5954,0,1278.0007 +15739,19248,34312,-9,34311,-9,1,1,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-960.06683,-9,1,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,1,0,689.5,-29169.016,0,0,0,-1002.5954,0,1278.0007 +15740,19249,34313,34314,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,0,0,43,-2,91.83075,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.96,49.93,56.07,55.46,8.333333333333334,1,1,0,0,0,7,3,1,452,1346598.3,717093.19,408491.63,0,0,0,2428.6318 +15740,19249,34314,34313,-9,-9,1,1,69,0,0,0,3,3,-9,0,5,0,8.2649698,7.9720259,4,2,-46.910458,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.141398,8.1369486,56.07,55.46,55.96,49.93,8.333333333333334,1,1,0,0,7,7,3,1,452,1346598.3,717093.19,408491.63,0,0,0,2428.6318 +15740,19250,34315,-9,34313,34314,1,1,29,0,0,0,2,2,-9,0,3,8.0214863,8.0852928,0,0,0,-1012.2715,0,2,3,2021,14,3,58,44,1,3,0,6.2982049,6.2982049,0,0,0,0,0,0,0,0,1,1,0,0,0,37.13,55.9,-9,-9,5,1,1,0,0,12,7,4,1,1985,-74157.797,0,0,0,0,0,1523.8541 +15741,19251,34316,-9,34319,34317,1,1,9,0,2,1,3,0,-9,0,4,0,0,0,0,0,-957.97302,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,46,60,-9,-9,7,1,1,-9,0,0,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15741,19251,34317,34319,-9,-9,1,1,53,0,2,0,2,2,-9,0,4,6.1043358,6.1912241,0,17,5,43.645115,0,-9,-9,2021,6,0,25,24,1,0,0,2.3741198,2.3741198,0,0,0,0,0,0,0,0,1,0,1,0,0,63.48,51.85,66.44,47.81,8.333333333333334,1,1,0,0,7,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15741,19251,34318,-9,34319,34317,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1165.8904,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,44,60,-9,-9,7,1,1,-9,0,0,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15741,19251,34319,34317,-9,-9,1,0,48,0,2,0,2,2,-9,0,4,0,0,0,17,-5,-69.256744,0,3,-9,2021,10,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,1.4284199,0,66.44,47.81,63.48,51.85,8.333333333333334,1,1,0,0,0,4,2,0,964,168208.73,9938.0947,185513.64,12199.682,-722.34277,0,1304.7816 +15742,19252,34320,34321,-9,-9,1,0,62,0,0,0,2,2,-9,0,4,8.6790514,8.6805439,6.3482437,11,1,6.5801072,0,2,-9,2021,15,3,45,-9,1,3,0,12.163681,12.163681,0,0,0,0,0,0,0,2,0,0,0,7.1105661,6.6782241,52,53,54.2,57.49,8.333333333333334,1,1,0,0,9,7,5,1,390,1081927,655607.88,420379.94,0,0,0,5891.7896 +15742,19252,34321,34320,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.4575672,8.8727379,0,35,-1,-219.72212,0,2,2,2021,10,0,40,40,1,0,0,31.577129,31.577129,0,0,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,52,53,8.333333333333334,1,1,0,0,13,7,5,1,390,1081927,655607.88,420379.94,0,0,0,5891.7896 +15742,19253,34322,-9,34320,34321,1,0,27,0,0,0,1,1,-9,0,3,8.5661259,8.2567272,0,0,0,-954.57428,0,2,2,2021,17,6,46,47,1,6,1,12.261564,12.261564,.05,.05,0,0,0,0,0,0,0,0,0,2.913178,0,33.9,60.31,-9,-9,6.666666666666667,1,1,0,0,4,7,5,1,347,-28807.809,-98390.313,0,0,0,0,2385.2593 +15743,19254,34323,-9,-9,-9,1,0,73,0,0,0,3,3,-9,0,4,0,6.8830347,6.7467995,0,0,-871.43005,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.7282486,48.53,58.91,-9,-9,8.333333333333334,1,1,0,0,0,4,2,1,298,111186.95,95746.336,134609.95,0,0,0,766.35498 +15744,19255,34324,-9,-9,-9,1,1,30,0,0,0,1,1,-9,0,4,8.1751099,7.9090085,0,0,0,-949.84534,0,2,2,2021,11,3,37,38,1,3,0,10.809793,10.809793,.05,.05,0,0,0,0,0,0,0,0,0,3.8749259,0,46.44,59.62,-9,-9,8.333333333333334,1,1,0,0,6,1,4,0,669,128608.99,-56237.277,0,0,0,0,1347.4247 +15744,19256,34325,-9,-9,-9,1,0,22,0,0,0,2,2,-9,0,4,7.7123961,7.6219344,0,0,0,-1031.8687,-9,-9,-9,2021,11,0,37,0,1,2,0,7.9151812,7.9151812,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,4,6,0,0,1,1,3,0,659,211368.39,-19592.873,0,0,6301.2681,0,1785.0573 +15745,19257,34326,-9,34329,-9,1,0,2,1,4,1,3,0,-9,0,4,0,0,0,0,0,-989.2049,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34327,-9,34329,-9,1,1,8,1,4,1,3,0,-9,0,4,0,0,0,0,0,-1105.254,-9,2,-9,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34328,-9,34329,-9,1,1,4,1,4,1,3,0,-9,0,4,0,0,0,0,0,-926.10571,-9,2,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34329,-9,-9,-9,1,0,35,1,4,0,2,2,-9,1,3,0,0,0,0,0,-911.87872,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,35.2,48.71,-9,-9,5,3,4,0,1,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15745,19257,34330,-9,34329,-9,1,1,12,1,4,1,3,0,-9,0,5,0,0,0,0,0,-841.53632,-9,2,-9,2021,10,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,48,63,-9,-9,7,3,4,-9,0,0,8,1,0,981.20001,58046.32,0,0,0,6487.4971,1991.3458,2293.1282 +15746,19258,34331,-9,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,7.0542278,7.1978016,0,0,-1004.3851,0,3,-9,2021,10,0,0,0,4,1,0,0,0,0,0,0,1,0,1.8384645,0,0,1,1,0,8.2717123,6.7134981,52,45,-9,-9,8,3,4,0,0,0,8,2,1,635,143282.11,17288.467,166996.97,0,0,0,1946.5686 +15747,19259,34332,34333,-9,-9,1,0,43,0,0,0,2,2,-9,0,4,9.188261,8.9441757,0,9,0,-38.488426,0,2,2,2021,12,0,45,85,1,0,0,18.184042,18.184042,0,0,0,0,0,0,0,0,0,0,0,2.9112632,0,48.14,52.15,45.91,59.89,6.666666666666667,1,1,0,0,11,5,5,1,440.5,764914.25,703772.75,0,0,0,0,4478.8398 +15747,19259,34333,34332,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.634388,8.6898432,0,9,9,-15.526217,0,3,3,2021,13,1,46,46,1,1,0,15.85429,15.85429,0,0,.05,0,0,0,0,0,0,0,0,0,0,45.91,59.89,48.14,52.15,5,1,1,0,0,11,5,5,1,440.5,764914.25,703772.75,0,0,0,0,4478.8398 +15748,19260,34334,34335,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.6926918,8.3803835,0,1,-3,98.444656,-9,-9,-9,2021,10,0,40,0,1,1,0,17.153461,17.153461,.05,.05,0,0,0,0,0,0,0,0,0,0,0,49,58,42.64,57.17,7,4,1,0,0,1,8,5,1,511.5,362694.56,88057.828,240096.33,21443.992,0,0,4346.5127 +15748,19260,34335,34334,-9,-9,1,0,28,0,0,0,2,2,-9,0,4,8.8498306,8.7010403,0,1,3,-23.094902,0,2,2,2021,9,0,45,45,1,0,0,14.83684,14.83684,0,0,0,0,0,0,0,0,0,0,0,1.5527102,0,42.64,57.17,49,58,8.333333333333334,1,1,0,0,6,8,5,1,511.5,362694.56,88057.828,240096.33,21443.992,0,0,4346.5127 +15749,19261,34336,34337,-9,-9,1,1,69,0,0,0,1,1,-9,0,4,0,8.7947569,8.8369837,2,11,-58.666584,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,23.489889,0,0,1,1,0,6.4623437,8.9045115,54.2,57.49,54.7,40.89,10,1,1,0,0,0,7,5,1,1090,2965560.5,1255568.6,763110.56,0,0,0,8359.8447 +15749,19261,34337,34336,-9,-9,1,0,58,0,0,0,1,1,-9,0,3,0,8.7497511,8.9975929,2,-11,-69.228363,0,3,-9,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8232284,8.7115326,54.7,40.89,54.2,57.49,6.666666666666667,1,1,0,0,7,7,5,1,1090,2965560.5,1255568.6,763110.56,0,0,0,8359.8447 +15750,19262,34338,34341,-9,-9,1,0,41,0,2,0,2,2,-9,0,4,8.2355042,8.3706684,0,11,-6,191.68387,0,2,-9,2021,7,0,33,22,1,0,0,11.715341,11.715341,.05,.05,0,0,0,0,0,0,1,1,0,2.9238076,0,51.83,57.2,52,55,8.333333333333334,1,1,0,0,11,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15750,19262,34339,-9,34338,34341,1,0,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1038.9529,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15750,19262,34340,-9,34338,34341,1,0,6,0,2,1,3,0,-9,0,4,0,0,0,0,0,-954.57593,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15750,19262,34341,34338,-9,-9,1,1,47,0,2,0,2,2,-9,0,4,8.3220119,8.227869,0,8,6,65.264351,0,-9,-9,2021,9,0,45,40,1,1,0,10.995614,10.995614,.05,.05,.05,0,0,0,0,0,1,1,0,.10624797,0,52,55,51.83,57.2,8,1,1,0,0,1,7,4,1,1791.5,119104.14,47019.645,410787.88,210365.17,10175.458,10467.731,3263.8826 +15751,19263,34342,-9,-9,-9,1,0,77,0,0,0,2,2,-9,0,4,0,7.1679134,7.4621315,0,0,-1105.1116,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.0736222,7.009974,63.66,46.31,-9,-9,10,1,1,0,0,0,12,3,1,2221,211632.5,166080.64,127393.3,35243.609,7461.769,0,2166.1897 +15752,19264,34343,34344,-9,-9,1,0,42,1,3,0,2,2,-9,0,4,0,0,0,2,-1,38.728954,0,3,3,2021,4,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.3321753,0,55.54,43.16,57.16,56.15,10,1,1,0,0,7,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15752,19264,34344,34343,-9,-9,1,1,43,1,3,0,2,2,-9,0,4,7.3911581,7.5088692,0,2,1,79.786545,0,2,2,2021,8,1,65,40,1,1,0,3.0072186,3.0072186,.05,.05,0,0,0,0,0,0,1,1,0,6.7467537,0,57.16,56.15,55.54,43.16,8.333333333333334,1,1,0,0,8,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15752,19264,34345,-9,34343,34344,1,1,4,1,3,1,3,0,-9,0,4,0,0,0,0,0,-857.48236,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15752,19264,34346,-9,34343,34344,1,1,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-978.21075,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,1,372.75,47681.848,66356.406,0,0,2443.4458,0,2897.5393 +15753,19265,34347,34349,-9,-9,1,1,35,1,2,0,2,2,-9,0,3,7.6158214,7.970212,0,9,0,-67.45137,0,-9,-9,2021,6,0,40,40,1,0,0,6.1237354,6.1237354,.05,.05,0,0,0,0,0,0,1,1,0,5.6384306,0,41.34,56.62,45.18,54.77,5,4,2,0,1,9,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15753,19265,34348,-9,34349,34347,1,0,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1030.3245,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,2,-9,0,0,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15753,19265,34349,34347,-9,-9,1,0,35,1,2,0,1,1,-9,0,3,8.3242121,8.1856279,0,9,0,-102.70676,0,2,2,2021,8,0,30,30,1,0,0,14.995188,14.995188,0,0,0,0,0,0,0,0,1,1,0,0,0,45.18,54.77,41.34,56.62,8.333333333333334,1,1,0,1,11,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15753,19265,34350,-9,34349,34347,1,1,6,1,2,1,3,0,-9,0,4,0,0,0,0,0,-895.13495,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,62,-9,-9,7,4,2,-9,0,0,11,4,1,1319,78845.891,58021.699,138229.61,118070.39,3072.7529,4496.022,2893.9661 +15754,19266,34351,34352,-9,-9,1,1,61,0,0,0,1,1,-9,0,4,8.8945255,9.367115,6.2746687,6,11,-41.636147,0,1,1,2021,9,0,40,35,1,0,0,22.538975,22.538975,.05,.05,0,0,0,0,0,0,0,0,0,0,6.3814287,58.15,52.91,44.44,55.46,8.333333333333334,1,1,0,0,7,9,5,1,3108.5,2087626.9,1453382.8,445091.69,89317.844,0,0,3724.8152 +15754,19266,34352,34351,-9,-9,1,0,50,0,0,0,2,2,-9,0,4,7.841011,7.8237791,0,6,-11,-91.828407,0,2,3,2021,11,0,24,24,1,0,0,12.426587,12.426587,0,0,0,0,0,0,0,0,0,0,0,0,0,44.44,55.46,58.15,52.91,8.333333333333334,1,1,0,0,7,9,5,1,3108.5,2087626.9,1453382.8,445091.69,89317.844,0,0,3724.8152 +15754,19267,34353,-9,34352,34351,1,0,19,0,0,0,2,2,-9,0,4,2.7686687,2.7012401,0,0,0,-1019.7614,0,2,1,2021,11,0,37,0,1,2,1,.069041513,.069041513,0,0,0,0,0,0,0,0,0,0,0,0,0,46,58,-9,-9,7,1,1,0,0,1,9,2,1,643,261632.23,0,0,0,0,0,536.61285 +15755,19268,34354,34355,-9,-9,1,0,78,0,0,0,2,2,-9,0,3,0,0,0,9,-5,-54.494541,0,3,2,2021,11,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.6666191,0,45.13,50.72,44.3,34.15,8.333333333333334,1,1,0,0,0,5,2,1,681.5,622321.69,112997.15,227441.28,0,0,0,1827.4646 +15755,19268,34355,34354,-9,-9,1,1,83,0,0,0,3,3,-9,0,2,0,7.3735642,7.5566807,9,5,-35.841507,0,2,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,1,0,26.748859,0,0,1,1,0,6.2847238,7.3196225,44.3,34.15,45.13,50.72,5,1,1,0,0,0,5,2,1,681.5,622321.69,112997.15,227441.28,0,0,0,1827.4646 +15756,19269,34356,34357,-9,-9,1,0,23,0,0,0,1,1,-9,0,2,0,0,0,2,-4,0,0,-9,-9,2021,12,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,44.99,43.48,37.92,30.47,5,1,1,0,0,0,11,1,0,1070.5,-17789.998,0,0,0,564.17603,0,859.87122 +15756,19269,34357,34356,-9,-9,1,1,27,0,0,0,2,2,-9,1,1,0,0,0,2,4,0,0,-9,-9,2021,21,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,37.92,30.47,44.99,43.48,1.666666666666667,1,1,1,0,0,11,1,0,1070.5,-17789.998,0,0,0,564.17603,0,859.87122 +15757,19270,34358,-9,-9,-9,1,1,61,0,0,0,2,2,-9,0,2,0,5.1124301,5.4518781,0,0,-903.84174,0,-9,2,2021,14,2,0,0,3,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.79934269,5.2580829,29.24,54.65,-9,-9,1.666666666666667,1,1,1,0,10,7,2,1,1159,-56864.246,145706.59,0,0,0,0,441.40024 +15758,19271,34359,34360,-9,-9,1,1,22,0,0,0,2,2,-9,1,3,0,0,0,2,-21,0,0,-9,-9,2021,17,5,0,0,3,5,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,43.49,43.6,24.52,39.05,8.333333333333334,1,1,0,0,0,9,1,0,239,-32768.828,0,0,0,0,0,2053.8281 +15758,19271,34360,34359,-9,-9,1,0,43,0,0,0,2,2,-9,1,2,0,0,0,2,21,0,0,2,2,2021,16,4,0,0,3,4,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,0,0,24.52,39.05,43.49,43.6,3.333333333333333,1,1,0,0,0,9,1,0,239,-32768.828,0,0,0,0,0,2053.8281 +15759,19272,34361,-9,-9,-9,1,0,92,0,0,0,3,3,-9,0,2,0,6.5826182,6.7948427,0,0,-938.11182,0,3,3,2021,14,3,0,0,4,3,0,0,0,0,0,0,1,0,14.860763,0,0,1,1,0,0,6.6126904,37.67,23.76,-9,-9,6.666666666666667,1,1,0,0,0,8,2,1,1628,-94196.383,32517.342,0,0,0,0,1140.3214 +15759,19273,34362,-9,34361,-9,1,0,51,0,0,0,3,3,-9,0,5,7.1445756,7.2113438,0,0,0,-1031.3175,0,3,-9,2021,7,0,21,21,1,0,0,7.7689676,7.7689676,0,0,0,0,0,0,0,27,1,1,0,2.6167917,0,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,10,8,3,1,1018,-23240.119,0,0,0,0,8298.2881,580.53845 +15760,19274,34363,-9,-9,-9,1,1,56,0,0,0,1,1,-9,0,2,8.991477,8.7509155,0,0,0,-1023.0256,0,-9,-9,2021,19,8,37,38,1,8,0,24.948866,24.948866,.05,.05,0,0,0,0,0,0,1,1,0,6.549448,0,37.77,45.33,-9,-9,5,1,1,0,0,8,12,5,1,545,2568613.3,2392398.5,317086.66,71885.281,0,0,2732.4934 +15761,19275,34364,-9,-9,-9,1,1,65,0,0,0,3,3,-9,0,3,7.9644103,8.0292912,0,0,0,-1170.2776,0,3,2,2021,12,1,37,38,1,1,0,9.6352549,9.6352549,0,0,0,0,0,0,0,0,0,0,0,.90602851,0,36.93,56.27,-9,-9,1.666666666666667,1,1,0,0,13,6,4,1,120,-3258.967,0,0,0,0,66.304962,1038.0756 +15762,19276,34365,-9,-9,-9,1,0,76,0,0,0,2,2,-9,0,4,0,7.6489568,7.9446826,0,0,-887.86023,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.6820097,7.4342427,54.2,57.49,-9,-9,8.333333333333334,1,1,0,0,9,9,3,1,119,341898.38,303534.66,132620.3,0,0,0,1971.6804 +15763,19277,34366,34367,-9,-9,1,1,73,0,0,0,3,3,-9,0,3,0,8.3448524,8.0158701,44,7,82.439888,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.2342997,8.0189257,54.96,53.17,61.04,39.41,8.333333333333334,1,1,0,0,0,7,3,1,506,1136724,575878.25,280765.31,0,0,438.2843,5081.1724 +15763,19277,34367,34366,-9,-9,1,0,66,0,0,0,2,2,-9,0,3,0,5.6773567,6.0585251,44,-7,45.838352,0,2,1,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4168959,5.7150607,61.04,39.41,54.96,53.17,8.333333333333334,1,1,0,0,0,7,3,1,506,1136724,575878.25,280765.31,0,0,438.2843,5081.1724 +15764,19278,34368,-9,-9,-9,1,0,37,0,1,0,2,2,-9,0,1,0,0,0,0,0,-847.68542,0,3,2,2021,22,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,26.95,32.71,-9,-9,0,1,1,1,0,0,7,1,0,436,33803.605,-33633.766,0,0,0,0,1029.8843 +15765,19279,34369,-9,-9,-9,1,0,78,0,0,0,3,3,-9,0,5,0,4.5679269,4.6236038,0,0,-939.62921,-9,3,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.193383,4.7808328,54.04,60.47,-9,-9,8.333333333333334,1,1,0,0,0,11,2,1,827,-207.58238,-29375.234,115591.34,0,0,0,1540.8987 +15766,19280,34370,34371,-9,-9,1,0,63,0,0,0,1,1,-9,0,2,0,6.9761124,6.8684788,46,-4,49.846821,0,2,2,2021,15,4,0,35,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.8762056,6.6846976,50.16,17.69,55.34,54.26,8.333333333333334,1,1,0,0,9,5,5,1,786,1671850,764656,348176.13,0,0,0,4716.8857 +15766,19280,34371,34370,-9,-9,1,1,67,0,0,0,1,1,-9,0,4,0,8.8985863,9.0990477,46,4,-20.260542,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,8.5850058,55.34,54.26,50.16,17.69,10,1,1,0,0,10,5,5,1,786,1671850,764656,348176.13,0,0,0,4716.8857 +15767,19281,34372,34373,-9,-9,1,1,57,0,0,0,2,2,-9,0,5,0,8.6727486,8.6240597,6,1,-93.478294,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8.3230343,62.39,56.71,54.96,53.17,10,1,1,0,0,2,11,5,1,117,106565.95,0,188768.72,76150.609,0,0,4150.8799 +15767,19281,34373,34372,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.1180468,8.0726213,0,6,-1,-10.494783,0,2,2,2021,6,0,10,42,1,0,0,43.987709,43.987709,0,0,0,0,0,0,0,0,0,0,0,0,0,54.96,53.17,62.39,56.71,8.333333333333334,1,1,0,0,7,11,5,1,117,106565.95,0,188768.72,76150.609,0,0,4150.8799 +15768,19282,34374,34375,-9,-9,1,1,83,0,0,0,2,2,-9,0,4,0,7.4786954,7.7864556,36,9,67.10022,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.3336813,7.7662063,40.76,56.64,47.22,45.94,10,1,1,0,0,0,9,3,1,1055.5,947048.13,470482,284830.31,0,0,0,3253.2412 +15768,19282,34375,34374,-9,-9,1,0,74,0,0,0,1,1,-9,0,3,0,7.5511861,7.1418271,36,0,56.762993,0,3,3,2021,13,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.5490754,7.2606683,47.22,45.94,40.76,56.64,6.666666666666667,1,1,0,0,0,9,3,1,1055.5,947048.13,470482,284830.31,0,0,0,3253.2412 +15769,19283,34376,34377,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.4929204,6.4696274,10,1,65.284828,0,3,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.0069995,62.27,42.94,60.29,52.11,10,1,1,0,0,0,13,3,1,760,563183.5,353522.88,217775.19,0,11893.729,0,3081.6973 +15769,19283,34377,34376,-9,-9,1,1,83,0,0,0,2,2,-9,0,3,0,8.1111202,8.109725,10,-1,-128.33853,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,8.2486105,60.29,52.11,62.27,42.94,10,1,1,0,0,0,13,3,1,760,563183.5,353522.88,217775.19,0,11893.729,0,3081.6973 +15770,19284,34378,-9,-9,-9,1,0,63,0,0,0,3,3,-9,0,1,0,0,0,0,0,-896.86841,0,3,3,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,29.63,23.34,-9,-9,5,1,1,0,0,0,13,1,1,194,161174.02,0,0,0,0,-630.30817,1533.4395 +15771,19285,34379,34380,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,0,0,57,-2,-27.903929,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0176811,0,52,46,45.82,26.03,8,1,1,0,0,0,9,2,1,1129.5,449667.84,274959.94,196893.23,0,0,0,1571.2542 +15771,19285,34380,34379,-9,-9,1,1,78,0,0,0,2,2,-9,0,3,0,7.2503386,7.2086186,57,2,3.1648185,0,3,3,2021,15,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,2.2763128,6.7328382,45.82,26.03,52,46,8.333333333333334,1,1,0,0,6,9,2,1,1129.5,449667.84,274959.94,196893.23,0,0,0,1571.2542 +15772,19286,34381,-9,34382,-9,1,0,10,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1133.2201,-9,3,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,60,-9,-9,7,3,4,-9,0,0,8,1,0,1256.5,-45554.059,0,0,0,0,0,1857.3776 +15772,19286,34382,-9,-9,-9,1,0,52,0,1,0,3,3,-9,1,1,0,0,0,0,0,-877.5824,0,2,2,2021,20,7,0,0,3,7,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,21.72,22.57,-9,-9,0,3,4,0,1,0,8,1,0,1256.5,-45554.059,0,0,0,0,0,1857.3776 +15772,19287,34383,-9,34382,-9,1,0,25,0,1,0,1,1,-9,0,4,7.803834,7.8734894,0,0,0,-891.48511,0,3,2,2021,11,0,35,0,1,2,1,5.8267155,5.8267155,.05,.05,0,0,0,0,0,0,1,1,0,0,0,47,58,-9,-9,7,3,4,0,0,1,8,3,0,3978,117774.32,93748.367,0,0,0,0,2220.4292 +15772,19288,34384,-9,34382,-9,1,0,18,0,1,1,2,0,0,0,4,0,0,0,0,0,-1157.6754,-9,3,-9,2021,12,0,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,59,-9,-9,7,3,4,0,0,0,8,1,0,478,55785.367,0,0,0,0,0,0 +15773,19289,34385,34386,-9,-9,1,1,77,0,0,0,2,2,-9,0,3,0,7.0282259,6.6079698,8,0,-80.160767,0,-9,-9,2021,9,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.0950284,6.790154,54,46,52.93,39.41,8,1,1,0,0,0,9,2,1,1147.5,619390.13,113865.02,299958.38,0,0,0,1395.7151 +15773,19289,34386,34385,-9,-9,1,0,77,0,0,0,3,3,-9,0,2,0,6.4644461,6.3170056,8,0,-26.055157,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3871622,52.93,39.41,54,46,8.333333333333334,1,1,0,0,0,9,2,1,1147.5,619390.13,113865.02,299958.38,0,0,0,1395.7151 +15774,19290,34387,-9,-9,-9,1,1,52,0,0,0,3,3,-9,0,3,7.7769508,7.5743484,0,0,0,-986.90198,0,3,3,2021,6,0,50,35,1,0,0,4.9904709,4.9904709,0,0,0,0,0,0,0,2,0,0,0,0,0,54.96,53.17,-9,-9,8.333333333333334,1,1,0,0,11,1,3,0,372,-37030.238,0,0,0,0,0,1363.7489 +15775,19291,34388,34389,-9,-9,1,1,68,0,0,0,2,2,-9,0,5,0,8.2509565,7.8131342,48,1,-119.59427,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4640522,8.2424345,45.43,37.82,36.14,61.94,6.666666666666667,1,1,0,0,4,9,4,1,1189.5,1184478.8,756762.75,580025,0,0,0,2715.1924 +15775,19291,34389,34388,-9,-9,1,0,67,0,0,0,3,3,-9,0,4,0,6.6372323,6.8405199,48,-1,91.303177,0,-9,-9,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.92320907,6.6573534,36.14,61.94,45.43,37.82,8.333333333333334,1,1,0,0,0,9,4,1,1189.5,1184478.8,756762.75,580025,0,0,0,2715.1924 +15776,19292,34390,-9,-9,-9,1,1,52,0,1,0,2,2,-9,1,2,0,0,0,0,0,-1084.9418,0,3,3,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.53,37.66,-9,-9,3.333333333333333,1,1,0,1,0,13,1,0,127,0,0,0,0,0,0,1038.8953 +15777,19293,34391,-9,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,6.0496478,6.186554,0,0,-1069.3997,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,0,6.1385264,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,2,6,2,1,1137,19943.93,96315.695,0,0,0,0,1268.7726 +15778,19294,34392,-9,34396,34394,1,1,9,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1000.3303,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,4,2,-9,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34393,-9,34396,34394,1,0,2,1,3,1,3,0,-9,0,4,0,0,0,0,0,-971.63959,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,4,2,-9,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34394,34396,-9,-9,1,1,41,1,3,0,3,3,-9,0,3,7.4377346,7.1044393,0,18,5,81.382858,0,3,3,2021,9,1,37,35,1,1,0,5.6537476,5.6537476,0,0,0,0,0,0,0,2,1,1,0,0,0,37.13,40.77,50.58,53.69,5,1,1,0,1,6,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34395,-9,34396,34394,1,1,10,1,3,1,3,0,-9,0,4,0,0,0,0,0,-1027.079,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,60,-9,-9,7,1,1,-9,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15778,19294,34396,34394,-9,-9,1,0,36,1,3,0,2,2,-9,0,4,0,0,0,7,-5,-45.503212,0,-9,-9,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.58,53.69,37.13,40.77,8.333333333333334,4,5,0,0,0,6,2,0,930.20001,302759.44,165907.61,139356.09,64717.93,528.39838,0,2274.0356 +15779,19295,34397,34398,-9,-9,1,0,57,0,0,0,3,3,-9,1,1,0,0,0,8,-3,0,0,3,2,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,39.47,17.14,57.16,56.15,0,1,1,0,1,0,1,1,0,567.5,-186897.91,6636.7402,0,0,0,0,1198.869 +15779,19295,34398,34397,-9,-9,1,1,60,0,0,0,3,3,-9,1,4,0,0,0,8,3,0,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,120,1,1,0,0,0,57.16,56.15,39.47,17.14,10,1,1,0,0,0,1,1,0,567.5,-186897.91,6636.7402,0,0,0,0,1198.869 +15780,19296,34399,34400,-9,-9,1,1,84,0,0,0,3,3,-9,0,2,0,0,0,10,5,0,0,2,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,1,0,19.637661,0,0,1,1,0,2.9815316,0,63.11,26.8,47.62,50.74,6.666666666666667,1,1,0,0,0,5,1,1,876,-31637.02,0,80045.5,0,0,0,672.14893 +15780,19296,34400,34399,-9,-9,1,0,79,0,0,0,2,2,-9,0,4,0,0,0,10,-5,0,0,3,2,2021,7,2,0,0,4,2,0,0,0,0,0,0,1,0,0,0,27,1,1,0,0,0,47.62,50.74,63.11,26.8,10,1,1,0,0,0,5,1,1,876,-31637.02,0,80045.5,0,0,0,672.14893 +15781,19297,34401,-9,-9,-9,1,0,90,0,0,0,2,2,-9,0,3,0,7.6694293,7.9724412,0,0,-1081.1187,0,3,3,2021,16,5,0,0,4,5,0,0,0,0,0,0,1,2.7951484,0,23.301064,0,1,1,0,2.3177099,7.8502297,50.73,22.52,-9,-9,8.333333333333334,1,1,0,0,0,1,3,1,1609,416337.69,45314.953,264852.06,0,0,0,2030.9785 +15782,19298,34402,34403,-9,-9,1,0,88,0,0,0,2,2,-9,0,3,0,4.6967087,4.346549,9,0,-73.686653,0,3,2,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,4.5156507,53,44,56.1,49.93,8,1,1,0,0,0,11,2,1,545.5,341555.5,0,150886.47,0,0,0,934.77521 +15782,19298,34403,34402,-9,-9,1,1,88,0,0,0,3,3,-9,0,3,0,4.9121342,5.4414539,9,0,89.606941,0,3,3,2021,4,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.180541,5.7405586,56.1,49.93,53,44,8.333333333333334,1,1,0,0,0,11,2,1,545.5,341555.5,0,150886.47,0,0,0,934.77521 +15783,19299,34404,34405,-9,-9,1,1,57,0,0,0,2,2,-9,0,4,8.0584326,7.9766469,0,8,0,-21.891912,0,3,3,2021,6,0,45,39,1,0,0,7.1298862,7.1298862,.05,.05,0,0,0,0,0,0,0,0,0,0,0,62.49,55.09,60.3,46.58,8.333333333333334,2,3,0,0,9,9,4,1,457.5,1425740.8,1290334,364986.56,118284.59,-1852.8268,585.59894,2852.9688 +15783,19299,34405,34404,-9,-9,1,0,57,0,0,0,3,3,-9,0,3,8.258646,7.8239188,0,8,0,.42109799,0,3,3,2021,7,0,34,34,1,0,0,13.203085,13.203085,0,0,0,0,0,0,0,0,0,0,0,1.6960173,0,60.3,46.58,62.49,55.09,8.333333333333334,2,3,0,0,9,9,4,1,457.5,1425740.8,1290334,364986.56,118284.59,-1852.8268,585.59894,2852.9688 +15783,19300,34406,-9,34405,34404,1,0,23,0,0,0,1,1,-9,0,4,8.3950129,8.2779608,0,0,0,-1026.7002,0,3,2,2021,3,0,42,48,1,0,1,10.166396,10.166396,0,0,0,0,0,0,0,0,0,0,0,3.9577911,0,49.71,55.64,-9,-9,5,2,3,0,0,6,9,4,1,271,36817.188,0,0,0,0,0,2372.0491 +15783,19301,34407,-9,34405,34404,1,1,28,0,0,0,1,1,-9,0,2,8.5516939,8.393487,0,0,0,-894.27667,0,3,2,2021,19,6,37,35,1,6,1,15.16124,15.16124,.05,.05,0,0,0,0,0,0,0,0,0,6.9818463,0,31.05,56.43,-9,-9,5,2,3,0,0,7,9,5,1,632,157248.81,171272.94,0,0,0,0,2826.043 +15784,19302,34408,-9,34411,34409,1,1,10,0,2,1,3,0,-9,0,3,0,0,0,0,0,-988.58661,-9,1,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,4,2,-9,0,0,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15784,19302,34409,34411,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,8.7794199,8.7694588,0,20,0,22.386366,0,2,3,2021,7,0,35,35,1,0,0,14.658057,14.658057,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.33,53.46,49.44,50.17,8.333333333333334,1,1,0,0,13,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15784,19302,34410,-9,34411,34409,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-927.94275,-9,1,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,4,2,-9,0,0,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15784,19302,34411,34409,-9,-9,1,0,43,0,2,0,1,1,-9,0,3,7.6146955,7.6505189,0,20,0,-39.025684,0,2,2,2021,6,0,27,26,1,0,0,8.1331472,8.1331472,.05,.05,0,0,0,0,0,14.5,1,1,0,0,0,49.44,50.17,57.33,53.46,8.333333333333334,3,4,0,0,13,7,4,1,923,83311.594,23114.221,0,0,0,0,3819.0569 +15785,19303,34412,34413,-9,-9,1,1,48,0,0,0,1,1,-9,0,4,9.0883808,9.0174551,0,14,-1,50.8246,-9,3,3,2021,6,0,38,0,1,0,0,23.998392,23.998392,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,35.44,44.94,8.333333333333334,2,3,0,0,13,12,5,1,511,1897570.3,1593707.6,414283.94,159133.84,6561.5605,5755.96,6284.4531 +15785,19303,34413,34412,-9,-9,1,0,49,0,0,0,1,1,-9,0,2,8.1828575,8.0416861,0,14,1,80.030983,-9,2,2,2021,14,2,38,0,1,2,0,14.088735,14.088735,.05,.05,0,0,0,0,0,0,0,0,0,8.8146286,0,35.44,44.94,54.2,57.49,8.333333333333334,2,3,0,0,12,12,5,1,511,1897570.3,1593707.6,414283.94,159133.84,6561.5605,5755.96,6284.4531 +15786,19304,34414,-9,-9,-9,1,0,22,0,1,0,2,2,-9,0,4,0,0,0,0,0,-968.95398,0,-9,-9,2021,15,3,0,0,3,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.81,53.81,-9,-9,8.333333333333334,1,1,1,0,2,6,1,0,494,148802.86,0,0,0,0,0,1213.582 +15786,19304,34415,-9,34414,-9,1,0,3,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1014.5682,-9,2,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,1,1,-9,0,0,6,1,0,494,148802.86,0,0,0,0,0,1213.582 +15787,19305,34416,34417,-9,-9,1,1,72,0,0,0,3,3,-9,0,4,0,7.2285523,7.1594644,51,3,24.776634,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.4404564,6.8099227,60.12,54.8,57.16,56.15,10,1,1,0,0,0,11,2,1,712.5,440758,247815.59,124696.48,0,0,0,1504.6272 +15787,19305,34417,34416,-9,-9,1,0,69,0,0,0,3,3,-9,0,4,0,5.9682045,5.7158523,51,-3,78.336914,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.0299697,5.3908682,57.16,56.15,60.12,54.8,8.333333333333334,1,1,0,0,0,11,2,1,712.5,440758,247815.59,124696.48,0,0,0,1504.6272 +15788,19306,34418,34419,-9,-9,1,1,47,0,0,0,3,3,-9,0,3,7.6075454,7.7439299,0,8,0,-4.139751,0,3,3,2021,10,0,42,38,1,0,0,6.1971502,6.1971502,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,50.12,33.72,8.333333333333334,1,1,0,0,6,11,3,0,409,61855.664,-25012.98,0,0,2363.6213,0,891.2229 +15788,19306,34419,34418,-9,-9,1,0,47,0,0,0,3,3,-9,0,2,7.1732149,7.1561055,0,31,0,-2.1043525,0,-9,1,2021,8,0,23,23,1,0,0,6.2680149,6.2680149,0,0,0,0,0,0,0,2,0,0,0,0,0,50.12,33.72,52,54.51,6.666666666666667,1,1,0,0,4,11,3,0,409,61855.664,-25012.98,0,0,2363.6213,0,891.2229 +15788,19307,34420,-9,34419,34418,1,1,22,0,0,0,2,2,-9,0,3,7.6254511,7.7147427,0,0,0,-953.18927,0,3,3,2021,3,0,36,38,1,0,1,6.2533989,6.2533989,0,0,0,0,0,0,0,14.5,0,0,0,0,0,52.54,54.24,-9,-9,10,1,1,0,0,2,11,3,0,238,-304239.94,0,0,0,4061.5522,0,449.22131 +15789,19308,34421,-9,-9,-9,1,1,82,0,0,0,1,1,-9,0,2,0,7.4438252,7.1632528,0,0,-991.01733,0,3,3,2021,16,4,0,0,4,4,0,0,0,0,0,0,1,1.5891523,0,19.94729,0,1,1,0,0,7.3078756,39.5,42.96,-9,-9,3.333333333333333,1,1,0,0,0,9,3,1,713,442928.81,131381.17,338859.72,0,0,0,2996.2559 +15790,19309,34422,34423,-9,-9,1,0,56,0,0,0,2,2,-9,0,4,8.0085497,7.8856864,0,39,0,-108.71194,0,3,3,2021,7,0,42,37,1,0,0,8.3082285,8.3082285,0,0,0,0,0,0,0,2,0,0,0,1.2676001,0,54.2,57.49,49.49,43.74,8.333333333333334,1,1,0,0,11,5,3,1,537,1093863.8,860039.75,266974.16,0,0,2197.3765,1237.0916 +15790,19309,34423,34422,-9,-9,1,1,56,0,0,0,2,2,-9,1,2,0,0,0,39,0,-143.63519,0,3,3,2021,12,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,3.4475291,0,49.49,43.74,54.2,57.49,3.333333333333333,1,1,0,0,5,5,3,1,537,1093863.8,860039.75,266974.16,0,0,2197.3765,1237.0916 +15791,19310,34424,-9,-9,-9,1,0,58,0,0,0,2,2,-9,0,3,7.8879247,7.7290254,0,0,0,-971.54553,0,2,1,2021,16,4,70,70,1,4,0,3.5762539,3.5762539,.05,.05,0,0,0,0,0,27,0,0,0,1.6749252,0,33.27,53.82,-9,-9,6.666666666666667,1,1,0,1,12,11,3,1,343,21938.799,82716.328,0,0,0,0,1052.4269 +15792,19311,34425,-9,34428,34426,1,0,10,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1047.0924,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,4,2,-9,0,0,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19311,34426,34428,-9,34429,1,1,48,0,2,0,1,1,-9,0,2,8.4371605,8.6642656,0,10,11,43.892353,0,2,1,2021,9,0,36,0,1,0,0,14.007917,14.007917,.05,.05,0,0,0,0,0,2,1,1,0,3.7550061,0,47.2,39.7,60.02,56.42,6.666666666666667,2,3,0,1,11,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19311,34427,-9,34428,34426,1,0,14,0,2,1,3,0,-9,0,5,0,0,0,0,0,-966.65863,-9,2,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,61,-9,-9,7,2,3,-9,0,0,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19311,34428,34426,-9,-9,1,0,37,0,2,0,2,2,-9,0,5,7.3724456,7.2193127,0,3,-11,-68.033005,0,2,1,2021,11,2,38,38,1,2,0,4.9635239,4.9635239,.05,.05,0,0,0,0,0,27,1,1,0,0,0,60.02,56.42,47.2,39.7,6.666666666666667,4,2,0,0,11,8,4,1,411,13777.657,63925.93,108693.73,94049.859,0,3130.7876,4476.7236 +15792,19312,34429,-9,-9,-9,1,1,88,0,2,0,1,1,-9,0,2,0,0,0,0,0,-960.08411,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,1,0,117.88747,0,0,1,1,0,0,0,55.84,20.66,-9,-9,5,2,3,0,0,0,8,1,1,410,1170713.8,0,798789.06,0,0,0,1265.4296 +15793,19313,34430,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,5,8.1674852,8.5428753,0,0,0,-1045.035,0,3,2,2021,29,12,44,43,1,12,0,11.333697,11.333697,0,0,0,0,0,0,0,0,1,1,0,0,0,33.64,63.28,-9,-9,3.333333333333333,1,1,0,0,14,9,4,1,1594,628032.13,40825.125,472188.28,22646.922,16640.342,0,1977.2698 +15793,19314,34431,-9,34430,-9,1,1,23,0,0,0,2,2,-9,0,3,0,0,0,0,0,-976.45544,1,1,-9,2021,20,7,0,0,2,7,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,14.07,51.57,-9,-9,1.666666666666667,1,1,0,1,6,9,2,1,285,79968.656,0,0,0,0,0,-674.83612 +15794,19315,34432,-9,34433,-9,1,0,58,0,0,0,2,2,-9,0,4,0,7.0424213,6.9102521,0,0,-962.57855,0,2,2,2021,7,0,0,0,4,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,7.1540008,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,0,5,2,1,240,-101286.54,159453.42,0,0,0,0,330.46936 +15794,19316,34433,-9,-9,-9,1,0,85,0,0,0,3,3,-9,0,3,0,7.7904148,8.1576929,0,0,-910.57886,-9,-9,-9,2021,15,5,0,0,4,5,0,0,0,0,0,0,0,25.781952,0,235.06461,0,1,1,0,7.642487,7.7835894,53.37,32.26,-9,-9,10,1,1,0,0,0,5,3,1,959,516922.41,78234.938,169652.3,0,0,0,1670.6309 +15795,19317,34434,-9,-9,-9,1,0,45,0,1,0,1,1,-9,0,4,0,0,0,0,0,-1081.6826,0,2,2,2021,18,6,0,50,3,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,28.97,62.43,-9,-9,3.333333333333333,1,1,1,1,7,5,1,1,1444,97747.578,188169.61,0,0,0,0,260.23383 +15795,19317,34435,-9,34434,-9,1,0,14,0,1,1,3,0,-9,0,4,0,0,0,0,0,-851.56335,-9,1,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,4,2,-9,0,0,5,1,1,1444,97747.578,188169.61,0,0,0,0,260.23383 +15796,19318,34436,-9,34439,34438,1,0,13,0,1,1,3,0,-9,0,4,0,0,0,0,0,-968.5769,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15796,19318,34437,-9,34439,34438,1,0,17,0,1,0,2,2,1,0,4,0,0,0,0,0,-984.79462,-9,1,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,51.83,57.2,-9,-9,5,1,1,0,0,2,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15796,19318,34438,34439,-9,-9,1,1,51,0,1,0,2,2,-9,0,4,8.1115017,8.7520351,0,26,5,-36.610329,0,1,2,2021,7,0,42,46,1,0,0,15.457084,15.457084,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.63,59.72,24.09,52.96,6.666666666666667,1,1,0,1,8,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15796,19318,34439,34438,-9,-9,1,0,46,0,1,0,1,1,-9,0,2,8.2673063,8.2834425,0,26,-5,-11.404927,0,-9,2,2021,33,12,30,22,1,12,0,12.261389,12.261389,0,0,0,0,0,0,0,0,1,1,0,0,0,24.09,52.96,46.63,59.72,3.333333333333333,1,1,0,1,3,12,4,1,798.25,286206.19,159846.53,210017,0,0,2742.4343,3354.6563 +15797,19319,34440,34441,-9,-9,1,0,49,0,2,0,2,2,-9,1,4,7.7334237,7.8141422,0,6,7,90.902939,0,1,1,2021,7,0,35,0,1,0,0,8.4703226,8.4703226,0,0,0,0,0,0,0,0,1,1,0,0,0,40.07,57.25,50.82,57.78,6.666666666666667,3,4,0,0,3,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34441,34440,-9,-9,1,1,42,0,2,0,2,2,-9,0,3,5.7603865,5.5725083,0,6,-7,68.187775,0,-9,-9,2021,16,4,25,25,1,4,0,1.3184857,1.3184857,0,0,0,0,0,0,2.0476978,0,1,1,0,0,0,50.82,57.78,40.07,57.25,3.333333333333333,3,4,0,1,9,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34442,-9,34440,34441,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1173.4047,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34443,-9,34440,34441,1,1,15,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1056.254,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,3,4,-9,0,0,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15797,19319,34444,-9,34440,34441,1,1,17,0,2,0,2,2,1,0,4,0,0,0,0,0,-1034.0422,-9,2,2,2021,21,9,0,0,3,9,0,0,0,0,0,0,0,0,0,0,0,1,1,0,.099079765,0,32.31,59.5,-9,-9,1.666666666666667,3,4,0,0,0,8,2,0,422.39999,-86421.734,0,0,0,0,0,3710.4351 +15798,19320,34445,-9,-9,-9,1,0,65,0,0,0,3,3,-9,0,3,0,6.2351651,6.3012524,0,0,-994.73303,0,1,1,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.5193582,57.33,53.46,-9,-9,8.333333333333334,1,1,0,0,0,2,2,1,291,326449.44,201369.78,80146.055,37953.93,0,0,1212.1719 +15798,19321,34446,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,2,0,0,0,0,0,-987.83716,0,2,2,2021,6,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,57.57,49.69,-9,-9,5,1,1,1,0,8,2,1,1,870,-41512.711,0,0,0,0,0,0 +15799,19322,34447,-9,-9,-9,1,1,84,0,0,0,2,2,-9,0,3,0,5.2098145,5.5674248,0,0,-1015.722,0,2,2,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.9118581,5.2578278,53.98,50.87,-9,-9,6.666666666666667,1,1,0,0,0,9,2,1,467,818445.88,0,260991.38,0,0,0,677.30853 +15800,19323,34448,-9,34450,34451,1,0,12,0,1,1,3,0,-9,0,4,0,0,0,0,0,-886.55536,-9,1,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15800,19323,34449,-9,34450,34451,1,0,17,0,1,0,2,2,-9,0,3,0,0,0,0,0,-1017.0132,0,1,2,2021,8,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50.28,51.35,-9,-9,8.333333333333334,1,1,0,0,2,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15800,19323,34450,34451,-9,-9,1,0,36,0,1,0,1,1,-9,0,4,8.2423458,8.2310581,4.9041324,10,-2,209.82317,0,2,-9,2021,12,0,38,38,1,0,0,12.246412,12.246412,.05,.05,0,0,0,0,0,0,1,1,0,5.2941194,0,48.87,58.55,54.1,59.11,8.333333333333334,1,1,0,0,11,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15800,19323,34451,34450,-9,-9,1,1,38,0,1,0,2,2,-9,0,5,8.4859333,8.480505,0,10,2,-37.185089,0,3,3,2021,7,0,47,49,1,0,0,11.140048,11.140048,.05,.05,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,48.87,58.55,8.333333333333334,1,1,0,0,12,10,5,1,2974.25,252976.84,137548.78,408108.34,251973.22,0,3340.0957,3192.0132 +15801,19324,34452,34453,-9,-9,1,0,61,0,1,0,3,3,-9,0,2,6.8883777,7.0262313,0,7,-2,-37.75573,0,3,2,2021,6,0,25,30,1,0,0,5.0453234,5.0453234,0,0,0,0,0,0,0,0,1,1,0,0,0,62.66,31.14,60.68,40.91,8.333333333333334,1,1,0,0,6,13,2,1,1305.3334,505749.59,341521.13,96123.453,0,0,0,2303.8784 +15801,19324,34453,34452,-9,-9,1,1,63,0,1,0,2,2,-9,0,3,6.7200394,6.7028837,0,7,2,-81.279533,0,3,3,2021,6,0,20,20,1,0,0,4.2897954,4.2897954,.05,.05,0,0,0,0,0,0,1,1,0,1.6649987,0,60.68,40.91,62.66,31.14,0,1,1,0,0,1,13,2,1,1305.3334,505749.59,341521.13,96123.453,0,0,0,2303.8784 +15801,19324,34454,-9,34452,34453,1,1,15,0,1,1,3,0,-9,0,5,0,0,0,0,0,-996.08258,-9,3,2,2021,9,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,50,62,-9,-9,8,1,1,-9,0,0,13,2,1,1305.3334,505749.59,341521.13,96123.453,0,0,0,2303.8784 +15802,19325,34455,-9,-9,-9,1,1,48,0,0,0,2,2,-9,0,4,.69921553,1.0304964,0,0,0,-1014.5944,0,2,2,2021,6,0,50,50,1,0,0,.0044981847,.0044981847,0,0,0,0,0,0,0,0,1,1,0,0,0,60.12,54.8,-9,-9,8.333333333333334,1,1,0,0,14,10,2,0,429,212131.89,0,0,0,0,0,87.823135 +15803,19326,34456,34457,-9,-9,1,1,68,0,0,0,2,2,-9,0,1,0,7.5241294,7.2951508,47,-1,-21.432142,0,3,-9,2021,15,3,0,0,4,3,0,0,0,0,0,0,0,0,0,0,14.5,1,1,0,5.5505633,7.7563939,25.9,43.97,44.96,24.16,1.666666666666667,1,1,0,0,0,6,3,1,492.5,49077.348,0,0,0,0,174.50764,2643.4165 +15803,19326,34457,34456,-9,-9,1,0,69,0,0,0,2,2,-9,0,2,0,5.2081065,5.3929148,45,1,47.90596,0,-9,-9,2021,21,9,0,0,4,9,0,0,0,0,0,0,1,0,6.3709273,0,7,1,1,0,4.2405634,5.318078,44.96,24.16,25.9,43.97,3.333333333333333,1,1,0,0,4,6,3,1,492.5,49077.348,0,0,0,0,174.50764,2643.4165 +15804,19327,34458,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,5,7.4457002,7.3840857,0,0,0,-976.70123,0,-9,-9,2021,12,0,37,37,1,0,0,4.980422,4.980422,.05,.05,0,0,0,0,0,0,0,0,0,0,0,41.07,60.93,-9,-9,0,1,1,0,0,4,7,3,0,494,167341.14,10879.337,0,0,0,0,1181.9841 +15805,19328,34459,34460,-9,-9,1,0,84,0,0,0,2,2,-9,0,3,0,6.5179062,6.5087943,59,-3,-39.534096,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,4.9730582,6.5459619,50.38,33.62,51.96,40.73,8.333333333333334,1,1,0,0,0,9,3,1,984,432606.28,377637.78,133650.36,0,6703.5142,5817.2813,2904.012 +15805,19328,34460,34459,-9,-9,1,1,87,0,0,0,2,2,-9,0,3,0,7.7840037,8.1095161,59,3,17.263803,0,2,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.0738764,7.5129747,51.96,40.73,50.38,33.62,8.333333333333334,1,1,0,0,0,9,3,1,984,432606.28,377637.78,133650.36,0,6703.5142,5817.2813,2904.012 +15806,19329,34461,34462,-9,-9,1,0,71,0,0,0,2,2,-9,0,5,7.6035752,8.2876434,7.6190825,42,0,-39.368046,-9,2,2,2021,6,0,4,0,1,0,0,44.751472,44.751472,0,0,0,0,0,0,0,7,1,1,0,0,7.725204,59.43,58.05,56.5,48.33,10,1,1,0,0,10,9,5,1,366.5,493925.56,117548.14,194224,0,0,0,5336.3237 +15806,19329,34462,34461,-9,-9,1,1,71,0,0,0,1,1,-9,0,3,0,8.2369938,8.3450117,40,0,56.17527,-9,2,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.7119193,8.321928,56.5,48.33,59.43,58.05,8.333333333333334,1,1,0,0,9,9,5,1,366.5,493925.56,117548.14,194224,0,0,0,5336.3237 +15807,19330,34463,34464,-9,-9,1,0,24,0,0,0,1,1,-9,0,4,7.7092452,7.6215229,0,4,-1,50.259552,0,-9,-9,2021,12,0,35,38,1,0,0,7.5989032,7.5989032,0,0,0,0,0,0,0,0,0,0,0,1.9293427,0,50.34,56.4,55.34,54.26,8.333333333333334,1,1,0,0,3,8,4,0,563.5,51302.328,-9401.0908,0,0,0,0,2732.0225 +15807,19330,34464,34463,-9,-9,1,1,25,0,0,0,1,1,-9,0,4,8.5667763,8.3300152,0,4,1,-66.306831,0,-9,-9,2021,14,3,45,45,1,3,0,13.451871,13.451871,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.34,54.26,50.34,56.4,8.333333333333334,1,1,0,0,4,8,4,0,563.5,51302.328,-9401.0908,0,0,0,0,2732.0225 +15808,19331,34465,34466,-9,-9,1,1,68,0,0,0,1,1,-9,0,3,0,8.3120737,7.8760428,46,0,-135.97,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,5.854497,7.857183,58.07,46.29,60.12,54.8,8.333333333333334,1,1,0,0,3,12,3,1,722.5,2031255.3,1351856,167994.11,0,0,0,3792.1924 +15808,19331,34466,34465,-9,-9,1,0,68,0,0,0,2,2,-9,0,4,0,5.3266888,5.703527,6,0,93.047585,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,74.5,1,1,0,4.8896651,5.3848095,60.12,54.8,58.07,46.29,10,1,1,0,0,0,12,3,1,722.5,2031255.3,1351856,167994.11,0,0,0,3792.1924 +15808,19332,34467,-9,-9,-9,1,0,60,0,0,0,3,3,-9,1,4,0,0,0,0,0,-923.05389,0,-9,-9,2021,9,0,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4752057,0,53,52,-9,-9,8,1,1,0,0,0,12,1,1,3465,334163.66,0,15944.914,0,9783.1162,0,778.49731 +15809,19333,34468,34470,-9,-9,1,0,41,0,0,0,2,2,-9,1,2,8.6729288,8.9721117,0,14,-11,67.388367,0,2,3,2021,7,0,30,35,1,0,0,25.044016,25.044016,0,0,0,0,0,0,0,0,1,1,0,7.7501531,0,51.59,26.51,62.49,55.09,8.333333333333334,1,1,0,0,9,10,5,1,1291,995353.25,761252.5,220868.55,52656.938,0,0,5432.6338 +15809,19333,34469,-9,34468,34470,1,1,17,0,0,1,2,0,-9,0,5,0,0,0,0,0,-988.89276,-9,2,2,2021,10,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.1,59.11,-9,-9,5,1,1,0,0,0,10,5,1,1291,995353.25,761252.5,220868.55,52656.938,0,0,5432.6338 +15809,19333,34470,34468,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.4319277,8.3915005,0,14,11,-98.390785,0,-9,-9,2021,6,0,44,44,1,0,0,9.17348,9.17348,.05,.05,0,0,0,0,0,0,1,1,0,0,0,62.49,55.09,51.59,26.51,1.666666666666667,1,1,0,0,9,10,5,1,1291,995353.25,761252.5,220868.55,52656.938,0,0,5432.6338 +15810,19334,34471,34474,-9,-9,1,1,43,0,2,0,2,2,-9,0,3,5.7719131,5.7865477,0,9,4,32.242344,0,2,2,2021,7,0,30,0,1,0,0,1.4813451,1.4813451,0,0,0,0,0,0,0,0,1,1,0,0,0,53.98,50.87,44.08,59.33,8.333333333333334,1,1,0,0,8,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15810,19334,34472,-9,34474,34471,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1002.9931,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,.79855508,0,1,1,0,0,0,46,61,-9,-9,7,1,1,-9,0,0,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15810,19334,34473,-9,34474,34471,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-903.26904,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15810,19334,34474,34471,-9,-9,1,0,39,0,2,0,2,2,-9,0,4,5.107717,5.4065499,0,9,-4,66.094933,0,2,2,2021,13,2,4,0,1,2,0,5.1466308,5.1466308,0,0,0,0,0,0,0,0,1,1,0,0,0,44.08,59.33,53.98,50.87,8.333333333333334,1,1,0,0,1,9,2,0,1038.25,52134.953,0,0,0,23106.201,2794.4077,1685.4753 +15811,19335,34475,-9,-9,-9,1,0,34,0,0,0,1,1,-9,0,3,7.777276,7.8244572,0,0,0,-1003.3501,0,2,2,2021,6,0,39,37,1,0,0,8.4405432,8.4405432,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,-9,-9,6.666666666666667,1,1,0,0,10,4,4,1,563,46519.594,113041.08,113010.19,0,0,1758.7653,426.82834 +15812,19336,34476,-9,-9,-9,1,0,64,0,0,0,3,3,-9,0,2,0,8.1073809,7.8839831,0,0,-915.45343,0,3,3,2021,10,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,4.5850921,8.0325794,55.92,36.72,-9,-9,5,1,1,0,0,2,7,4,1,393,394191.53,15858.723,392066.44,0,295.38913,-101.99015,1312.6023 +15813,19337,34477,-9,-9,-9,1,1,40,0,2,0,1,1,-9,0,4,8.8270073,8.7813959,0,12,-2,52.516567,0,2,2,2021,8,0,36,36,1,0,0,20.461462,20.461462,0,0,0,0,0,0,0,0,1,1,0,10.022893,0,51.83,57.2,39.26,49.43,8.333333333333334,1,1,0,0,13,12,5,1,631,116901.34,-25110.6,0,0,0,0,6952.6577 +15813,19337,34478,-9,-9,34477,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-958.99707,-9,-9,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,12,5,1,631,116901.34,-25110.6,0,0,0,0,6952.6577 +15813,19337,34479,-9,-9,34477,1,0,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-938.57825,-9,-9,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,61,-9,-9,7,4,6,-9,0,0,12,5,1,631,116901.34,-25110.6,0,0,0,0,6952.6577 +15813,19338,34480,-9,-9,-9,1,1,42,0,2,0,1,1,-9,0,3,8.062294,8.1749649,0,12,2,78.488022,0,-9,-9,2021,20,8,39,41,1,8,0,14.279067,14.279067,.05,.05,0,0,0,0,0,0,1,1,0,0,0,39.26,49.43,51.83,57.2,6.666666666666667,1,1,0,0,13,12,5,1,813,110519.77,-15834.683,0,0,0,0,1484.0007 +15814,19339,34481,-9,-9,-9,1,1,70,0,0,0,2,2,-9,0,2,0,0,0,0,0,-1030.7,0,2,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.94,42.23,-9,-9,1.666666666666667,1,1,0,0,0,5,2,0,1540,67198.164,0,104237.63,0,0,0,1023.6071 +15815,19340,34482,34483,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,8.1639585,7.8192835,0,9,-7,4.7402563,0,3,3,2021,9,0,41,38,1,0,0,6.3517847,6.3517847,.05,.05,0,0,0,0,0,0,0,0,0,0,0,55.5,41.04,57.16,56.15,8.333333333333334,1,1,0,1,9,11,5,1,693,320586.13,80004.984,335992.81,51084.391,19347.887,547.19763,5847.5 +15815,19340,34483,34482,-9,-9,1,1,59,0,0,0,2,2,-9,0,4,9.5022678,9.100646,0,9,7,-14.389421,0,2,2,2021,7,0,50,50,1,0,0,30.997183,30.997183,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,55.5,41.04,8.333333333333334,1,1,0,0,9,11,5,1,693,320586.13,80004.984,335992.81,51084.391,19347.887,547.19763,5847.5 +15815,19341,34484,-9,34482,34483,1,1,25,0,0,0,1,1,-9,0,3,7.6633272,7.7197685,0,0,0,-905.46594,0,2,2,2021,6,0,38,0,1,0,1,7.1852379,7.1852379,0,0,0,0,0,0,0,0,0,0,0,0,0,62.66,52.4,-9,-9,10,1,1,0,0,3,11,3,1,1863,-21123.359,0,0,0,0,0,1919.918 +15816,19342,34485,34486,-9,-9,1,0,63,0,0,0,2,2,-9,0,2,0,0,0,45,-5,0,0,3,3,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,0,0,63.65,27.9,62.39,56.71,6.666666666666667,2,3,0,0,0,8,1,1,1326,581079.13,0,462432.31,0,0,0,1139.6598 +15816,19342,34486,34485,-9,-9,1,1,68,0,0,0,3,3,-9,0,5,0,0,0,45,5,0,0,2,2,2021,0,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.9222078,0,62.39,56.71,63.65,27.9,10,2,3,0,0,0,8,1,1,1326,581079.13,0,462432.31,0,0,0,1139.6598 +15817,19343,34487,34489,-9,-9,1,0,21,1,2,0,3,3,-9,0,5,0,0,0,3,-2,0,0,3,-9,2021,11,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49.02,43.43,53.39,52.35,10,1,1,0,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15817,19343,34488,-9,34487,34489,1,0,3,1,2,1,3,0,-9,0,4,0,0,0,0,0,-912.4455,-9,3,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15817,19343,34489,34487,-9,-9,1,1,23,1,2,0,3,3,-9,0,4,0,0,0,3,2,0,0,-9,-9,2021,5,0,0,0,3,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,53.39,52.35,49.02,43.43,8.333333333333334,1,1,1,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15817,19343,34490,-9,34487,34489,1,1,2,1,2,1,3,0,-9,0,4,0,0,0,0,0,-904.93427,-9,3,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,13,1,0,1102.5,-75191.484,0,0,0,0,0,1715.7357 +15818,19344,34491,34492,-9,-9,1,0,69,0,0,0,2,2,-9,0,3,0,6.9720459,6.9264259,40,0,-25.113249,0,3,3,2021,13,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8977575,5.8184781,37.17,50.6,57.06,57.76,6.666666666666667,4,2,0,0,2,7,3,1,342.5,1407947.6,952800.38,349775.97,0,0,0,2986.0215 +15818,19344,34492,34491,-9,-9,1,1,69,0,0,0,1,1,-9,0,5,0,7.6280675,7.4425993,40,0,41.072922,0,2,1,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.6781831,7.8047261,57.06,57.76,37.17,50.6,10,1,1,0,0,5,7,3,1,342.5,1407947.6,952800.38,349775.97,0,0,0,2986.0215 +15819,19345,34493,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,2,0,5.3982573,5.4713111,0,0,-954.01324,0,3,3,2021,20,8,0,0,4,8,0,0,0,0,0,0,1,0,0,0,0,1,1,0,5.2164536,5.3831301,47.2,34.16,-9,-9,5,1,1,0,0,0,10,2,1,790,116091.06,0,195084.59,0,0,0,44.369938 +15820,19346,34494,-9,-9,-9,1,0,45,0,1,0,2,2,-9,0,4,8.184804,8.378046,0,0,0,-1020.1645,0,3,2,2021,29,10,37,37,1,10,0,12.325087,12.325087,.05,.05,0,0,0,0,0,0,1,1,0,0,0,25.8,61.53,-9,-9,5,1,1,0,1,13,12,4,0,1734,345564.66,171320.91,148330.36,58962.855,0,718.33398,1882.7687 +15821,19347,34495,-9,-9,-9,1,1,76,0,0,0,3,3,-9,0,5,0,6.9024625,7.1512966,0,0,-880.40558,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.1439376,6.9894547,57.06,57.76,-9,-9,10,1,1,0,0,0,7,2,1,995,453458.88,95016.461,292470.06,0,0,0,448.1756 +15822,19348,34496,-9,-9,-9,1,0,52,0,1,0,1,1,-9,0,2,7.4074783,7.442389,0,0,0,-1056.2206,0,2,2,2021,20,7,18,1,1,7,0,10.255242,10.255242,0,0,0,0,0,0,0,0,1,1,0,1.6667123,0,38.68,43.35,-9,-9,8.333333333333334,1,1,0,0,12,5,3,1,3314.5,729208.44,499934.56,213835.73,0,0,0,1500.0938 +15822,19348,34497,-9,34496,-9,1,0,13,0,1,1,3,0,-9,0,3,0,0,0,0,0,-1051.9148,-9,1,-9,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,40,55,-9,-9,6,1,1,-9,0,0,5,3,1,3314.5,729208.44,499934.56,213835.73,0,0,0,1500.0938 +15823,19349,34498,34499,-9,-9,1,0,66,0,0,0,2,2,-9,0,4,0,4.8244629,4.5329018,8,-3,42.785412,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,7,1,1,0,5.4717746,4.8135843,57.16,56.15,61.12,51.57,10,1,1,0,0,2,10,2,1,1369,651542.19,353482.75,180516.27,0,6336.2407,0,2000.4634 +15823,19349,34499,34498,-9,-9,1,1,69,0,0,0,2,2,-9,0,4,0,7.7076898,7.5569735,8,3,51.977715,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.4447989,7.2845764,61.12,51.57,57.16,56.15,10,1,1,0,0,2,10,2,1,1369,651542.19,353482.75,180516.27,0,6336.2407,0,2000.4634 +15824,19350,34500,-9,-9,-9,1,0,80,0,0,0,2,2,-9,0,3,0,7.1903582,6.8642988,0,0,-1061.781,-9,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,1.7234905,0,0,1,1,0,3.5682034,7.0947442,58.91,45.88,-9,-9,8.333333333333334,1,1,0,0,0,6,2,1,506,7485.75,73198.945,0,0,0,0,1342.2086 +15825,19351,34501,34502,-9,-9,1,1,51,0,0,0,3,3,-9,0,4,0,0,0,3,1,-9.6722898,0,-9,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,1,1,0,0,0,50.65,60.47,33.94,52.18,5,1,1,1,0,0,4,3,0,916.5,271989.44,287816.78,138618.88,0,6592.3115,0,1402.8379 +15825,19351,34502,34501,-9,-9,1,0,50,0,0,0,2,2,-9,0,3,7.7294846,7.4607186,0,3,-1,75.50148,0,3,2,2021,9,2,39,39,1,2,0,8.3642321,8.3642321,0,0,0,0,0,0,0,0,1,1,0,0,0,33.94,52.18,50.65,60.47,8.333333333333334,1,1,0,0,8,4,3,0,916.5,271989.44,287816.78,138618.88,0,6592.3115,0,1402.8379 +15826,19352,34503,34504,-9,-9,1,1,61,0,0,0,2,2,-9,0,4,9.8751507,9.9788723,0,1,5,-59.143795,-9,-9,-9,2021,11,0,84,0,1,0,0,28.918655,28.918655,.05,.05,0,0,0,0,0,0,0,0,0,.31213814,0,37,53.29,57.33,53.46,6.666666666666667,1,1,0,0,8,12,5,1,1148.5,1771863.1,1243509.8,372596.56,34644.32,0,0,9631.252 +15826,19352,34504,34503,-9,-9,1,0,56,0,0,0,2,2,-9,0,3,8.6634159,8.3345566,0,1,-5,-24.883972,-9,-9,-9,2021,6,0,30,0,1,0,0,14.465049,14.465049,0,0,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,37,53.29,6.666666666666667,1,1,0,0,8,12,5,1,1148.5,1771863.1,1243509.8,372596.56,34644.32,0,0,9631.252 +15827,19353,34505,-9,34507,34508,1,1,13,0,2,1,3,0,-9,0,3,0,0,0,0,0,-1037.6066,-9,2,2,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15827,19353,34506,-9,34507,34508,1,0,14,0,2,1,3,0,-9,0,3,0,0,0,0,0,-960.09821,-9,2,2,2021,14,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,41,55,-9,-9,6,1,1,-9,0,0,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15827,19353,34507,34508,-9,-9,1,0,52,0,2,0,2,2,-9,1,4,0,0,0,21,-5,54.67247,0,3,-9,2021,6,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,27,1,1,0,0,0,54.2,57.49,57.16,56.15,8.333333333333334,1,1,0,0,0,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15827,19353,34508,34507,-9,-9,1,1,57,0,2,0,2,2,-9,0,4,8.8706255,8.4939117,0,21,5,-58.026257,0,-9,-9,2021,6,0,25,24,1,0,0,28.523792,28.523792,.05,.05,0,0,0,0,0,2,1,1,0,0,0,57.16,56.15,54.2,57.49,8.333333333333334,1,1,0,0,11,4,4,0,1395.5,-70035.391,27950.15,0,0,0,1374.4888,5139.0713 +15828,19354,34509,-9,-9,-9,1,1,40,0,0,0,1,1,-9,0,4,9.6124411,9.4609957,0,9,-2,-156.53406,0,-9,-9,2021,9,0,51,53,1,0,0,35.447197,35.447197,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.2,57.49,27.52,35.05,8.333333333333334,1,1,0,0,7,11,5,1,1421,184044.31,121382.04,120891.35,32602.064,0,1367.8762,3656.9309 +15828,19355,34510,-9,-9,-9,1,1,42,0,0,0,2,2,-9,0,1,8.9333277,8.853014,0,9,2,-16.118311,0,2,2,2021,13,1,44,45,1,1,0,18.700691,18.700691,.05,.05,0,0,0,0,0,0,0,0,0,0,0,27.52,35.05,54.2,57.49,5,1,1,0,0,13,11,5,1,1612,458481.59,131124.17,194304.83,21818.039,0,-153.20361,3072.406 +15829,19356,34511,34512,-9,-9,1,0,70,0,0,0,3,3,-9,0,2,0,0,0,7,3,2.6647508,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,1,0,13.416185,0,0,1,1,0,2.4094753,0,49.12,31.76,53.83,53.69,8.333333333333334,1,1,0,0,0,13,3,1,627.5,515084.53,592972.56,65225.5,0,0,0,3568.6697 +15829,19356,34512,34511,-9,-9,1,1,67,0,0,0,3,3,-9,0,5,0,7.7098918,7.8928561,7,-3,-17.91341,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,6.8268142,7.8086801,53.83,53.69,49.12,31.76,8.333333333333334,1,1,0,0,5,13,3,1,627.5,515084.53,592972.56,65225.5,0,0,0,3568.6697 +15830,19357,34513,34514,-9,-9,1,1,56,1,1,0,2,2,-9,0,4,6.340836,6.2105765,0,27,8,-3.3667402,-9,2,3,2021,19,7,16,0,1,7,0,3.3440349,3.3440349,.05,.05,0,0,0,0,0,0,1,1,0,0,0,46.9,56.66,30.23,53.8,3.333333333333333,1,1,0,0,12,2,4,1,6217.3335,312661.75,270808.81,251806.05,201066.77,6485.3755,4000.4343,5356.8984 +15830,19357,34514,34513,-9,-9,1,0,48,1,1,0,1,1,-9,0,3,8.5824633,8.7935076,0,25,-8,-105.72684,0,2,2,2021,12,0,98,16,1,0,0,6.1358852,6.1358852,0,0,0,0,0,0,0,28,1,1,0,0,0,30.23,53.8,46.9,56.66,3.333333333333333,1,1,0,0,10,2,4,1,6217.3335,312661.75,270808.81,251806.05,201066.77,6485.3755,4000.4343,5356.8984 +15830,19357,34515,-9,-9,34513,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-866.41608,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,62,-9,-9,7,4,6,-9,0,0,2,4,1,6217.3335,312661.75,270808.81,251806.05,201066.77,6485.3755,4000.4343,5356.8984 +15830,19358,34516,-9,-9,34517,1,1,10,1,1,1,3,0,-9,0,3,0,0,0,0,0,-929.37115,-9,-9,-9,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,42,56,-9,-9,6,1,1,-9,0,0,2,1,1,452,176658.63,0,166935.83,0,0,0,0 +15830,19358,34517,-9,34514,34513,1,1,20,1,1,0,2,2,-9,0,2,0,0,0,0,0,-883.41046,1,1,2,2021,18,6,0,24,2,6,1,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,22.65,53.52,-9,-9,5,1,1,0,0,3,2,1,1,452,176658.63,0,166935.83,0,0,0,0 +15831,19359,34518,-9,-9,-9,1,1,49,0,0,0,1,1,-9,0,4,7.9706798,7.9681721,0,0,0,-1020.0166,0,2,2,2021,6,0,50,45,1,0,0,6.2373486,6.2373486,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,9,10,4,1,584,115558.51,-2059.9431,333653.16,0,0,0,500.17868 +15832,19360,34519,34520,-9,-9,1,1,70,0,0,0,1,1,-9,0,4,0,7.825634,7.7728548,29,1,-56.186028,0,2,1,2021,14,4,0,0,4,4,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.1908917,8.0785055,48.08,35.88,32.32,63.9,8.333333333333334,1,1,0,0,0,2,4,1,1478,1373710.8,679485.5,272901.59,0,0,0,3602.3328 +15832,19360,34520,34519,-9,-9,1,0,69,0,0,0,2,2,-9,0,4,0,6.9096894,7.1858788,29,-1,-6.8594213,0,1,2,2021,22,8,0,0,4,8,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.2974966,7.2131863,32.32,63.9,48.08,35.88,8.333333333333334,1,1,0,0,0,2,4,1,1478,1373710.8,679485.5,272901.59,0,0,0,3602.3328 +15833,19361,34521,-9,-9,-9,1,1,67,0,0,0,3,3,-9,0,4,0,0,0,0,0,-896.44391,0,-9,-9,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54,53,-9,-9,10,1,1,0,0,0,10,1,0,501,158252.36,-41080.652,0,0,0,0,153.20177 +15834,19362,34522,-9,-9,-9,1,0,53,0,0,0,2,2,-9,0,2,7.4503298,7.6306434,4.2774582,0,0,-949.42529,0,3,3,2021,28,11,38,35,1,11,0,5.4476924,5.4476924,0,0,0,0,0,0,0,0,1,1,0,4.4072442,0,42.78,32.12,-9,-9,3.333333333333333,1,1,0,0,9,7,3,1,894.5,14720.074,0,0,0,4694.124,0,1692.9348 +15834,19362,34523,-9,34522,-9,1,1,17,0,0,1,2,0,0,0,3,0,0,0,0,0,-1037.4281,-9,2,-9,2021,9,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.113525,0,49.97,53.99,-9,-9,8.333333333333334,1,1,0,0,2,7,3,1,894.5,14720.074,0,0,0,4694.124,0,1692.9348 +15835,19363,34524,-9,-9,-9,1,1,36,0,0,0,1,1,-9,1,2,7.2558551,7.318027,0,0,0,-911.07233,0,2,2,2021,22,10,13,20,1,10,0,13.637817,13.637817,.05,.05,0,0,0,0,0,0,1,1,0,0,0,29.36,47.96,-9,-9,3.333333333333333,1,1,0,0,6,9,3,0,246,37986.805,-80405.953,0,0,0,0,413.44492 +15836,19364,34525,34526,-9,-9,1,1,69,0,0,0,1,1,-9,0,2,0,8.1342669,8.4878597,8,1,-88.051445,0,2,2,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.5058441,8.1329765,52.24,50.75,54.1,59.11,8.333333333333334,1,1,0,0,0,12,5,1,564.5,1138296.5,931087.75,142367.48,0,0,0,6156.0894 +15836,19364,34526,34525,-9,-9,1,0,68,0,0,0,1,1,-9,0,5,0,8.9381762,8.7393618,8,-1,-93.489891,0,2,2,2021,7,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,1.5982606,8.835845,54.1,59.11,52.24,50.75,8.333333333333334,1,1,0,0,0,12,5,1,564.5,1138296.5,931087.75,142367.48,0,0,0,6156.0894 +15837,19365,34527,-9,-9,-9,1,0,23,0,0,0,1,1,-9,0,3,8.2170687,7.6986699,0,0,0,-989.61884,0,-9,-9,2021,15,3,41,36,1,3,0,10.651914,10.651914,.05,.05,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,6.666666666666667,1,1,0,0,5,7,4,0,113,-136766.42,46204.117,0,0,30157.768,0,2131.4141 +15838,19366,34528,-9,34529,-9,1,0,49,0,0,0,1,1,-9,0,2,6.8573818,6.7807035,0,0,0,-848.5946,0,2,2,2021,13,1,14,40,1,1,0,8.1412182,8.1412182,0,0,0,0,0,0,0,27,1,1,0,.49851552,0,49.18,40.45,-9,-9,1.666666666666667,1,1,0,0,11,10,2,1,77,-126174.62,0,0,0,0,0,484.10754 +15838,19367,34529,-9,-9,-9,1,0,76,0,0,0,3,3,-9,0,3,0,6.7927942,6.874578,0,0,-1011.6112,0,-9,-9,2021,17,5,0,0,4,5,0,0,0,0,0,0,1,0,5.9996743,0,0,1,1,0,6.9697313,6.9710917,30.16,55.62,-9,-9,3.333333333333333,1,1,0,0,0,10,2,1,406,812916.63,290290.25,407855.72,0,6658.8813,0,-136.74088 +15839,19368,34530,-9,-9,-9,1,0,52,0,0,0,1,1,-9,0,3,8.5197392,8.2803764,0,0,0,-1131.4281,0,2,3,2021,12,0,35,37,1,0,0,16.988234,16.988234,.05,.05,0,0,0,0,0,0,0,0,0,0,0,24.41,57.84,-9,-9,3.333333333333333,1,1,0,0,12,6,5,1,786,879131.81,658795.19,330178.44,123380.39,0,4799.041,2130.1011 +15839,19369,34531,-9,34530,-9,1,0,25,0,0,0,1,1,-9,0,5,7.7967353,8.1458845,0,0,0,-927.7522,-9,1,2,2021,2,0,35,0,1,0,1,8.8723888,8.8723888,.05,.05,0,0,0,0,0,0,0,0,0,0,0,54.61,58.85,-9,-9,8.333333333333334,1,1,0,0,6,6,4,1,956,202222.38,-90765.195,0,0,694.77826,73.630577,1087.7356 +15840,19370,34532,-9,-9,-9,1,0,74,0,0,0,2,2,-9,0,5,0,7.0922914,7.2943873,0,0,-1013.2515,0,3,3,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,5.800642,7.1922617,57.06,57.76,-9,-9,8.333333333333334,1,1,0,0,8,12,2,1,317,382670.59,-85905.5,71067.086,0,0,0,855.03357 +15841,19371,34533,34534,-9,-9,1,1,49,0,2,0,3,3,-9,0,4,8.4537096,8.2619324,0,19,13,-78.419701,0,2,-9,2021,7,0,40,40,1,0,0,8.8722086,8.8722086,.05,.05,0,0,0,0,0,0,1,1,0,0,0,61.12,51.57,62.49,55.09,8.333333333333334,1,1,0,0,8,8,5,0,1245.5,210015.36,119338.27,488342,352998.75,0,0,4278.5146 +15841,19371,34534,34533,-9,-9,1,0,36,0,2,0,2,2,-9,0,4,8.9487743,9.4582253,0,19,-13,8.7618179,0,-9,-9,2021,7,0,40,35,1,0,0,24.350197,24.350197,.05,.05,0,0,0,0,0,0,1,1,0,2.2553403,0,62.49,55.09,61.12,51.57,10,1,1,0,0,10,8,5,0,1245.5,210015.36,119338.27,488342,352998.75,0,0,4278.5146 +15842,19372,34535,-9,-9,-9,1,1,40,0,0,0,2,2,-9,0,3,0,0,0,0,0,-984.47113,0,2,2,2021,13,1,0,50,3,1,0,0,0,0,0,0,0,0,0,0,2,0,0,0,0,0,53.39,49.67,-9,-9,6.666666666666667,1,1,1,0,9,13,1,0,3574,-225571.66,0,0,0,0,0,0 +15843,19373,34536,34537,-9,-9,1,1,62,0,0,0,2,2,-9,0,5,0,0,0,7,-1,-84.948311,0,-9,-9,2021,6,0,0,40,4,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,7.1481056,0,57.06,57.76,58.15,52.91,10,1,1,0,0,8,9,2,1,616.5,777000.38,78323.641,497376.75,0,0,0,962.83197 +15843,19373,34537,34536,-9,-9,1,0,63,0,0,0,2,2,-9,0,4,0,6.0839825,5.6968799,40,1,-69.694115,0,3,3,2021,9,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,6.1028852,58.15,52.91,57.06,57.76,10,1,1,0,0,3,9,2,1,616.5,777000.38,78323.641,497376.75,0,0,0,962.83197 +15844,19374,34538,34539,-9,-9,1,0,52,0,0,0,2,2,-9,0,4,8.0016022,8.0033674,0,10,-3,114.75381,0,-9,-9,2021,12,0,34,34,1,0,0,11.431849,11.431849,0,0,0,0,0,0,0,2,0,0,0,0,0,42.84,55.93,42.23,53.85,6.666666666666667,1,1,0,0,11,12,4,0,440.5,1383301.9,870882.25,435345.03,0,4795.4766,0,2060.1953 +15844,19374,34539,34538,-9,-9,1,1,55,0,0,0,3,3,-9,0,5,7.4420967,7.6776023,0,10,3,-23.982212,0,2,3,2021,9,0,37,36,1,0,0,5.5843024,5.5843024,0,0,0,0,0,0,0,0,0,0,0,0,0,42.23,53.85,42.84,55.93,10,1,1,0,0,11,12,4,0,440.5,1383301.9,870882.25,435345.03,0,4795.4766,0,2060.1953 +15845,19375,34540,34541,-9,-9,1,0,47,0,0,0,2,2,-9,0,3,8.6823921,8.9201241,0,21,-18,-11.945659,0,1,1,2021,10,0,40,40,1,0,0,17.923338,17.923338,0,0,0,0,0,0,0,0,0,0,0,2.3503883,0,52,54.51,49.71,39.74,8.333333333333334,1,1,0,0,15,10,5,1,878,1551125.5,975079.94,548177.88,0,0,0,3546.624 +15845,19375,34541,34540,-9,-9,1,1,65,0,0,0,1,1,-9,0,2,7.4552803,7.8072734,5.7992167,21,18,-23.6059,0,3,1,2021,6,0,60,60,1,0,0,4.8004246,4.8004246,0,0,.05,0,0,0,0,0,0,0,0,5.7086258,5.7626414,49.71,39.74,52,54.51,6.666666666666667,1,1,0,0,12,10,5,1,878,1551125.5,975079.94,548177.88,0,0,0,3546.624 +15846,19376,34542,-9,-9,-9,1,0,49,0,0,0,2,2,-9,0,4,7.639523,7.4744267,0,0,0,-1048.7223,0,3,3,2021,8,0,25,25,1,0,0,8.1042366,8.1042366,0,0,0,0,0,0,0,0,0,0,0,0,0,60.12,54.8,-9,-9,1.666666666666667,1,1,0,0,10,13,3,1,116,-104186.45,0,0,0,0,0,1305.0696 +15847,19377,34543,-9,-9,-9,1,1,47,0,0,0,2,2,-9,0,4,8.4964113,8.999897,0,0,0,-1033.5455,0,2,2,2021,1,0,44,44,1,0,0,20.496506,20.496506,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51.77,58.57,-9,-9,6.666666666666667,2,3,0,0,6,8,5,1,1505,273917.75,144823.45,248280.23,188269.67,0,0,3293.2461 +15848,19378,34544,34545,-9,-9,1,1,72,0,0,0,1,1,-9,0,3,0,8.1917095,7.5415058,39,6,80.661011,0,3,3,2021,10,0,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,7.4193077,8.0826597,52,47,37.88,50.64,7,1,1,0,0,0,6,4,1,408.5,1052230.9,574252.5,294641.56,0,5626.792,0,3804.9214 +15848,19378,34545,34544,-9,-9,1,0,66,0,0,0,2,2,-9,0,2,0,7.2123528,7.0238261,39,-6,-5.0289249,0,2,3,2021,12,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,3.4898624,6.9627976,37.88,50.64,52,47,5,1,1,0,0,0,6,4,1,408.5,1052230.9,574252.5,294641.56,0,5626.792,0,3804.9214 +15849,19379,34546,34547,-9,-9,1,0,46,0,1,0,2,2,-9,0,5,0,0,0,24,-7,-71.914276,0,2,2,2021,8,0,0,0,3,0,0,0,0,.05,.05,0,0,0,0,0,0,0,0,0,1.2476213,0,57.06,57.76,41.47,40.12,10,1,1,0,0,5,10,5,1,710.33331,336313.34,168890.13,423164.47,191605.91,18469.189,0,4789.1426 +15849,19379,34547,34546,-9,-9,1,1,53,0,1,0,1,1,-9,0,3,9.7011118,9.6612244,0,25,7,1.5658741,0,2,2,2021,12,0,50,35,1,0,0,41.372017,41.372017,.05,.05,0,0,0,0,0,0,0,0,0,1.8761778,0,41.47,40.12,57.06,57.76,8.333333333333334,1,1,0,0,10,10,5,1,710.33331,336313.34,168890.13,423164.47,191605.91,18469.189,0,4789.1426 +15849,19379,34548,-9,34546,34547,1,1,16,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.06079,-9,2,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,.30758676,0,55.69,51.72,-9,-9,10,1,1,0,0,0,10,5,1,710.33331,336313.34,168890.13,423164.47,191605.91,18469.189,0,4789.1426 +15849,19380,34549,-9,34546,34547,1,1,19,0,1,0,2,2,-9,0,2,7.547833,7.6238642,0,0,0,-931.04266,0,2,1,2021,20,8,35,20,1,8,1,4.9859943,4.9859943,0,0,0,0,0,0,0,0,0,0,0,.55539107,0,37.35,52.15,-9,-9,3.333333333333333,1,1,0,0,3,10,3,1,514,91992.117,0,0,0,0,0,1807.9697 +15850,19381,34550,-9,34552,34551,1,1,10,0,2,1,3,0,-9,0,5,0,0,0,0,0,-1185.5223,-9,1,2,2021,10,0,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,49,62,-9,-9,7,2,3,-9,0,0,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15850,19381,34551,34552,-9,-9,1,1,44,0,2,0,2,2,-9,0,3,8.4448042,8.5603724,0,15,5,-17.320877,0,2,2,2021,9,0,40,40,1,0,0,12.2986,12.2986,.05,.05,0,0,0,0,0,2,1,1,0,.0099828122,0,33.37,60.58,35,55.7,8.333333333333334,2,3,0,0,11,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15850,19381,34552,34551,-9,-9,1,0,39,0,2,0,1,1,-9,0,4,8.1801491,8.2398233,0,15,-5,46.406956,0,2,3,2021,12,1,46,48,1,1,0,11.908154,11.908154,.05,.05,0,0,0,0,0,7,1,1,0,0,0,35,55.7,33.37,60.58,8.333333333333334,2,3,0,0,11,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15850,19381,34553,-9,34552,34551,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-939.33362,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46,61,-9,-9,7,2,3,-9,0,0,8,4,1,887.5,251418.44,78043.383,275164.75,135517.5,0,0,3639.3323 +15851,19382,34554,-9,-9,-9,1,0,47,0,1,0,2,2,-9,0,4,8.3764296,8.2503204,5.4866109,0,0,-985.10461,0,2,2,2021,11,0,36,36,1,0,0,12.059663,12.059663,0,0,0,0,0,0,0,0,1,1,0,5.1813221,0,47.77,56.48,-9,-9,8.333333333333334,1,1,0,0,12,4,4,0,780,-18838.84,140673.63,155572.8,75944.344,8471.6133,0,1615.562 +15852,19383,34555,-9,-9,-9,1,0,47,0,0,0,3,3,-9,1,1,0,0,0,0,0,-952.80829,0,2,-9,2021,13,1,0,0,3,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,55.21,16.44,-9,-9,8.333333333333334,1,1,0,0,0,7,1,0,181,21580.422,0,0,0,0,0,775.42719 +15853,19384,34556,-9,-9,-9,1,0,65,0,0,0,1,1,-9,0,2,0,7.3840437,7.4525633,0,0,-1003.915,0,3,2,2021,6,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,0,1,1,0,3.0446546,7.1409841,57.53,20.23,-9,-9,8.333333333333334,1,1,0,0,1,5,3,1,1334,547119.06,459318.09,255736.17,0,0,0,1714.3828 +15854,19385,34557,-9,34558,34559,1,0,4,0,1,1,3,0,-9,0,4,0,0,0,0,0,-901.76971,-9,2,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,10,4,0,743.33331,420709.03,107476.93,311051.16,99694.641,0,0,3059.6514 +15854,19385,34558,34559,-9,-9,1,0,34,0,1,0,2,2,-9,0,4,7.6925244,7.3579998,0,5,-2,21.571312,0,2,1,2021,8,1,28,29,1,1,0,8.9294167,8.9294167,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.34,54.26,57.16,56.15,10,1,1,0,0,7,10,4,0,743.33331,420709.03,107476.93,311051.16,99694.641,0,0,3059.6514 +15854,19385,34559,34558,-9,-9,1,1,36,0,1,0,1,1,-9,0,4,8.6648979,8.2915821,0,5,2,85.390381,0,-9,-9,2021,10,0,48,58,1,0,0,12.801153,12.801153,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.16,56.15,55.34,54.26,8.333333333333334,1,1,0,0,9,10,4,0,743.33331,420709.03,107476.93,311051.16,99694.641,0,0,3059.6514 +15855,19386,34560,34561,-9,-9,1,1,47,0,1,0,2,2,-9,0,4,8.8221531,8.7172966,0,23,3,49.247322,-9,2,1,2021,12,0,40,0,1,0,0,18.62159,18.62159,.05,.05,0,0,0,0,0,14.5,1,0,1,0,0,44.66,42.69,43.62,50.48,5,1,1,0,0,11,11,5,1,499.66666,1289862.8,1217370.4,378760.06,151524.53,2148.5591,0,3793.4084 +15855,19386,34561,34560,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.1547747,8.0528917,0,23,-3,50.42902,0,-9,3,2021,17,5,45,0,1,5,0,6.4952855,6.4952855,.05,.05,0,0,0,0,0,27,1,0,1,0,0,43.62,50.48,44.66,42.69,3.333333333333333,1,1,0,1,11,11,5,1,499.66666,1289862.8,1217370.4,378760.06,151524.53,2148.5591,0,3793.4084 +15855,19386,34562,-9,34561,34560,1,1,16,0,1,0,2,2,-9,0,2,0,0,0,0,0,-1013.8771,-9,2,2,2021,6,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,1,0,1,0,0,49.88,42.09,-9,-9,6.666666666666667,1,1,0,0,0,11,5,1,499.66666,1289862.8,1217370.4,378760.06,151524.53,2148.5591,0,3793.4084 +15855,19387,34563,-9,34561,34560,1,1,23,0,1,0,2,2,-9,0,3,6.6876726,6.641067,0,0,0,-1056.2152,0,2,2,2021,16,4,10,0,1,4,1,10.037624,10.037624,0,0,0,0,0,0,0,0,1,0,1,0,0,51.44,48.1,-9,-9,6.666666666666667,1,1,0,1,3,11,2,1,302,0,0,0,0,0,0,844.58038 +15855,19388,34564,-9,34561,34560,1,1,18,0,1,0,2,2,1,0,5,0,0,0,0,0,-919.00378,-9,2,2,2021,11,0,0,0,3,0,1,0,0,0,0,0,0,0,0,0,0,1,0,1,.67641962,0,60.02,56.42,-9,-9,10,1,1,0,0,2,11,1,1,1124,-181311.81,0,0,0,0,0,-542.44379 +15856,19389,34565,34566,-9,-9,1,1,52,0,0,0,1,1,-9,0,3,9.2568474,9.0448675,0,27,-1,38.901207,0,2,2,2021,4,0,52,47,1,0,0,21.070013,21.070013,.05,.05,0,0,0,0,0,0,0,0,0,0,0,57.33,53.46,53.81,53.56,8.333333333333334,1,1,0,0,11,6,5,1,2865.5,2255085.8,1893623.3,333930.5,86697.672,16393.895,0,4215.9561 +15856,19389,34566,34565,-9,-9,1,0,53,0,0,0,1,1,-9,0,4,6.9605575,6.8257942,0,27,1,30.12557,0,2,3,2021,9,0,15,15,1,0,0,7.1970677,7.1970677,.05,.05,0,0,0,0,0,0,0,0,0,0,0,53.81,53.56,57.33,53.46,8.333333333333334,1,1,0,0,11,6,5,1,2865.5,2255085.8,1893623.3,333930.5,86697.672,16393.895,0,4215.9561 +15856,19390,34567,-9,34566,34565,1,0,21,0,0,0,2,2,1,0,4,7.539073,7.6715307,0,0,0,-1002.1646,-9,1,1,2021,18,6,30,0,1,6,1,7.1429958,7.1429958,.05,.05,0,0,0,0,0,0,0,0,0,0,0,45.17,56.33,-9,-9,1.666666666666667,1,1,0,0,4,6,3,1,895,58006.969,-108830.91,0,0,2895.5642,0,954.29181 +15856,19391,34568,-9,34566,34565,1,1,19,0,0,0,2,2,-9,0,3,7.0247307,7.0544958,0,0,0,-826.44537,0,1,1,2021,11,1,16,0,1,1,1,7.7927628,7.7927628,0,0,0,0,0,0,0,0,0,0,0,0,0,46.08,57.2,-9,-9,5,1,1,0,0,2,6,2,1,5066,-182786.33,0,0,0,0,0,219.97697 +15857,19392,34569,34570,-9,-9,1,0,51,0,1,0,1,1,-9,0,4,8.7054758,8.8340359,0,11,-1,75.845947,0,2,2,2021,10,0,26,33,1,0,0,31.798527,31.798527,0,0,0,0,0,0,0,2,0,0,0,0,0,45.91,59.89,47.44,56.39,8.333333333333334,1,1,0,0,12,9,5,1,758.66669,1119826.3,534657.75,763805.63,133072.16,2872.1533,0,6591.4048 +15857,19392,34570,34569,-9,-9,1,1,52,0,1,0,1,1,-9,0,4,9.3079958,9.3735218,0,11,1,21.291586,0,2,1,2021,12,0,50,50,1,0,0,32.325737,32.325737,.05,.05,.05,0,0,0,0,0,0,0,0,2.0234308,0,47.44,56.39,45.91,59.89,8.333333333333334,1,1,0,0,12,9,5,1,758.66669,1119826.3,534657.75,763805.63,133072.16,2872.1533,0,6591.4048 +15857,19392,34571,-9,34569,34570,1,0,16,0,1,1,3,0,-9,0,5,0,2.8297737,2.7272854,0,0,-1135.7797,-9,1,1,2021,8,0,0,0,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2.7659552,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,758.66669,1119826.3,534657.75,763805.63,133072.16,2872.1533,0,6591.4048 +15857,19393,34572,-9,34569,34570,1,0,20,0,1,1,2,0,0,0,5,0,6.1359911,5.9093828,0,0,-840.03577,-9,1,1,2021,10,1,0,0,2,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,7.8207884,0,54.1,59.11,-9,-9,8.333333333333334,1,1,0,0,4,9,2,1,358,-331627,0,0,0,0,0,1141.9434 +15858,19394,34573,-9,-9,-9,1,0,62,0,0,0,2,2,-9,0,2,8.0474043,8.4939089,7.7225604,0,0,-1024.1179,0,3,3,2021,32,12,21,28,1,12,0,24.791307,24.791307,.05,.05,0,0,0,0,0,0,1,1,0,4.1082907,7.5418458,36.33,34.94,-9,-9,5,1,1,0,0,9,12,5,0,151,219056.08,193775.13,30755.914,9176.3281,-135.10286,1312.5446,2174.2742 +15859,19395,34574,34575,-9,-9,1,1,78,0,0,0,3,3,-9,0,5,0,6.2412629,6.2807183,6,3,-60.118095,0,3,3,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.5277071,6.1349912,41.07,60.93,47.39,56.64,0,1,1,0,0,0,12,2,1,3162,604720.31,169531.28,356408.75,0,0,0,928.95245 +15859,19395,34575,34574,-9,-9,1,0,75,0,0,0,3,3,-9,0,5,0,6.2940917,6.2967033,6,-3,-177.02979,0,3,3,2021,10,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,6.3212447,47.39,56.64,41.07,60.93,8.333333333333334,1,1,0,0,0,12,2,1,3162,604720.31,169531.28,356408.75,0,0,0,928.95245 +15860,19396,34576,-9,-9,-9,1,1,45,0,0,0,2,2,-9,0,1,7.8376451,7.7590761,0,0,0,-995.31128,0,2,3,2021,22,9,37,37,1,9,0,7.5834761,7.5834761,.05,.05,0,0,0,0,0,0,1,1,0,0,0,31.51,36.1,-9,-9,1.666666666666667,1,1,0,0,15,5,3,1,1504,259999,75451.633,170103.91,12697.063,0,0,1629.4438 +15861,19397,34577,34578,-9,-9,1,0,51,0,0,0,1,1,-9,0,4,7.6978388,7.9884253,0,13,-5,-28.413006,0,2,1,2021,8,0,5,0,1,0,0,53.832253,53.832253,0,0,0,0,0,0,0,0,0,0,0,7.7331905,0,63.39,45.09,48.87,58.55,10,2,3,0,0,6,7,5,1,533.5,555997.13,203873.44,484484.25,100307.72,5170.5645,0,6200.6836 +15861,19397,34578,34577,-9,-9,1,1,56,0,0,0,1,1,-9,0,4,8.5994663,8.7196102,0,10,5,-8.9428301,0,-9,-9,2021,12,0,40,40,1,0,0,20.150467,20.150467,.05,.05,0,0,0,0,0,0,0,0,0,6.8448558,0,48.87,58.55,63.39,45.09,5,1,1,0,0,13,7,5,1,533.5,555997.13,203873.44,484484.25,100307.72,5170.5645,0,6200.6836 +15862,19398,34579,34580,-9,-9,1,0,66,0,0,0,2,2,-9,0,5,0,7.3288183,7.108005,45,-1,-84.766556,0,-9,-9,2021,6,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,4.8409829,6.7839622,60.02,56.42,48.45,57.49,8.333333333333334,1,1,0,0,0,5,4,1,1046.5,1091620.8,878944.94,193267.64,0,11734.052,0,2853.5154 +15862,19398,34580,34579,-9,-9,1,1,67,0,0,0,1,1,-9,0,3,0,8.0747652,8.1536179,45,1,14.649218,0,-9,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,5.9732943,8.2615337,48.45,57.49,60.02,56.42,10,1,1,0,0,7,5,4,1,1046.5,1091620.8,878944.94,193267.64,0,11734.052,0,2853.5154 +15863,19399,34581,34582,-9,-9,1,1,58,0,0,0,1,1,-9,0,4,0,0,0,6,10,-149.28847,0,-9,-9,2021,0,0,0,40,3,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1.5281248,0,62.49,55.09,50,54,10,2,3,1,0,5,8,4,0,512,1115214.8,656628.56,570860.25,0,0,0,2533.4619 +15863,19399,34582,34581,-9,-9,1,0,48,0,0,0,1,1,-9,0,4,8.6024494,8.9750967,0,6,-10,93.975533,0,-9,-9,2021,10,0,38,38,1,1,0,18.827942,18.827942,0,0,0,0,0,0,0,0,0,0,0,2.4065468,0,50,54,62.49,55.09,8,2,3,0,0,10,8,4,0,512,1115214.8,656628.56,570860.25,0,0,0,2533.4619 +15864,19400,34583,34584,-9,-9,1,0,71,0,0,0,2,2,-9,0,3,0,5.9782052,6.112895,49,4,-47.459942,0,3,2,2021,10,1,0,0,4,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,5.7972984,57.8,45.08,49.63,54.22,8.333333333333334,1,1,0,0,8,9,3,1,1192,1733965.5,1137622.9,485568.31,0,10240.518,0,3135.4922 +15864,19400,34584,34583,-9,-9,1,1,67,0,0,0,3,3,-9,0,3,7.4758658,7.1440177,0,48,-4,-33.108784,0,-9,3,2021,10,1,30,30,1,1,0,7.2291737,7.2291737,0,0,0,0,0,0,0,0,1,1,0,0,0,49.63,54.22,57.8,45.08,10,1,1,0,0,13,9,3,1,1192,1733965.5,1137622.9,485568.31,0,10240.518,0,3135.4922 +15865,19401,34585,-9,-9,-9,1,0,66,0,0,0,1,1,-9,0,3,0,6.7955308,6.8649325,0,0,-982.4187,0,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,42,1,1,0,0,6.4974627,57.11,43.98,-9,-9,5,1,1,0,0,7,11,2,1,401,125569.1,95340.555,59058.848,0,0,0,2014.6176 +15866,19402,34586,34587,-9,-9,1,0,52,0,0,0,2,2,-9,0,2,7.9037671,7.803545,0,7,0,-32.794853,0,3,3,2021,22,9,35,35,1,9,0,8.6844978,8.6844978,0,0,0,0,0,0,0,27,0,0,0,0,0,36.71,46.99,54.2,57.49,3.333333333333333,1,1,0,1,13,12,5,1,1068.5,427171.91,170469.91,205752.97,68741.781,0,0,3304.0562 +15866,19402,34587,34586,-9,-9,1,1,52,0,0,0,2,2,-9,0,4,8.777894,8.9607954,0,7,0,-105.27549,-9,2,2,2021,8,0,44,0,1,0,0,15.386668,15.386668,0,0,.05,0,0,0,0,7,0,0,0,0,0,54.2,57.49,36.71,46.99,8.333333333333334,1,1,0,0,15,12,5,1,1068.5,427171.91,170469.91,205752.97,68741.781,0,0,3304.0562 +15866,19403,34588,-9,34586,34587,1,0,21,0,0,1,1,0,0,0,3,0,0,0,0,0,-1071.8682,-9,2,2,2021,14,2,0,0,2,2,1,0,0,0,0,0,0,0,0,0,0,0,0,0,6.3618684,0,23.75,62.16,-9,-9,3.333333333333333,1,1,0,0,4,12,1,1,1419,64121.762,0,0,0,0,0,160.65849 +15867,19404,34589,34592,-9,-9,1,0,40,0,2,0,1,1,-9,0,3,8.8997726,9.022481,0,14,-12,-80.425125,0,1,2,2021,8,0,38,38,1,0,0,24.145281,24.145281,.05,.05,0,0,0,0,0,0,0,0,0,0,0,52,54.51,41.11,60.68,8.333333333333334,1,1,0,0,9,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15867,19404,34590,-9,34589,34592,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-962.86047,-9,1,1,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15867,19404,34591,-9,34589,34592,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1105.8933,-9,1,1,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15867,19404,34592,34589,-9,-9,1,1,52,0,2,0,1,1,-9,0,4,8.7089977,8.6730146,5.1360931,15,12,-105.76112,0,1,1,2021,15,4,70,37,1,4,0,9.648818,9.648818,.05,.05,0,0,0,0,0,0,0,0,0,6.0027394,0,41.11,60.68,52,54.51,3.333333333333333,1,1,0,0,12,8,5,1,698.75,3169828,2106148.3,826899.25,0,0,0,5640.665 +15868,19405,34593,-9,34594,-9,1,0,7,0,1,1,3,0,-9,0,4,0,0,0,0,0,-1121.5327,-9,1,-9,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,60,-9,-9,7,1,1,-9,0,0,6,4,1,1344,213837.25,147123.69,0,0,4876.9087,606.42145,2275.0549 +15868,19405,34594,-9,-9,-9,1,0,39,0,1,0,1,1,-9,0,3,8.1372309,8.1190319,6.3850832,0,0,-1009.1127,0,2,2,2021,17,6,30,33,1,6,0,9.6676865,9.6676865,.05,.05,0,0,0,0,0,2,1,1,0,6.8205886,0,32.42,58.05,-9,-9,3.333333333333333,1,1,0,0,11,6,4,1,1344,213837.25,147123.69,0,0,4876.9087,606.42145,2275.0549 +15869,19406,34595,34596,-9,-9,1,1,69,0,0,0,1,1,-9,0,3,7.7371721,7.5746207,5.1664863,41,2,20.626661,0,3,3,2021,9,0,10,12,1,0,0,25.986959,25.986959,0,0,0,0,0,0,0,14.5,1,1,0,4.7199507,5.183526,64.40000000000001,42,57.27,41.15,8.333333333333334,1,1,0,0,11,10,3,1,349,1713344.3,953525.63,519135.63,0,0,0,3661.0664 +15869,19406,34596,34595,-9,-9,1,0,67,0,0,0,2,2,-9,0,3,0,7.2658291,7.3562703,41,-2,101.84734,0,3,3,2021,9,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,2,1,1,0,7.261066,7.0645742,57.27,41.15,64.40000000000001,42,8.333333333333334,1,1,0,0,11,10,3,1,349,1713344.3,953525.63,519135.63,0,0,0,3661.0664 +15870,19407,34597,34598,-9,-9,1,0,26,0,0,0,2,2,-9,0,3,0,0,0,2,-13,86.568237,0,-9,-9,2021,28,12,0,0,3,12,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,30.12,60.92,51,57,1.666666666666667,1,1,0,0,2,4,4,0,284.5,76501.313,46211.41,237089.06,142583.59,14862.533,0,2612.0146 +15870,19407,34598,34597,-9,-9,1,1,39,0,0,0,2,2,-9,0,4,8.8074837,8.8032703,0,2,13,26.473749,0,-9,-9,2021,10,0,40,48,1,1,0,17.511826,17.511826,.05,.05,0,0,0,0,0,0,0,0,0,0,0,51,57,30.12,60.92,7,1,1,0,0,1,4,4,0,284.5,76501.313,46211.41,237089.06,142583.59,14862.533,0,2612.0146 +15871,19408,34599,34600,-9,-9,1,0,47,0,2,0,2,2,-9,0,3,8.1052341,8.0275373,0,21,-5,29.742214,0,3,3,2021,23,10,41,40,1,10,0,10.419085,10.419085,.05,.05,0,0,0,0,0,0,1,1,0,0,0,28.97,59.76,52.24,50.75,8.333333333333334,1,1,0,0,8,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15871,19408,34600,34599,-9,-9,1,1,52,0,2,0,3,3,-9,0,2,8.102211,8.1436567,0,21,5,-41.11721,0,2,2,2021,9,0,44,45,1,0,0,9.4492397,9.4492397,.05,.05,0,0,0,0,0,0,1,1,0,0,0,52.24,50.75,28.97,59.76,5,1,1,0,0,8,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15871,19408,34601,-9,34599,34600,1,1,14,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1020.2511,-9,2,3,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15871,19408,34602,-9,34599,34600,1,0,11,0,2,1,3,0,-9,0,4,0,0,0,0,0,-805.88995,-9,2,3,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,59,-9,-9,7,1,1,-9,0,0,6,4,1,419.25,222727.13,72367.953,254918.81,0,0,0,3141.9785 +15872,19409,34603,34604,-9,-9,1,1,71,0,0,0,2,2,-9,0,3,0,7.7476926,8.0682764,46,2,-52.07851,-9,3,-9,2021,8,0,0,0,4,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,7.8980746,44.7,53.68,49.19,39.8,0,4,2,0,0,0,10,3,1,675,468329.88,386808.25,227256.88,0,12554.656,0,2416.3123 +15872,19409,34604,34603,-9,-9,1,0,69,0,0,0,3,3,-9,0,2,6.0675969,6.5984178,0,1,-2,-53.645279,-9,2,2,2021,11,1,8,0,1,1,0,8.3225975,8.3225975,0,0,0,0,0,0,0,0,1,1,0,0,0,49.19,39.8,44.7,53.68,8.333333333333334,1,1,0,0,10,10,3,1,675,468329.88,386808.25,227256.88,0,12554.656,0,2416.3123 +15873,19410,34605,34607,-9,-9,1,1,50,0,1,0,2,2,-9,0,3,8.7112322,8.9237118,0,15,4,-33.815037,0,2,2,2021,9,0,40,42,1,0,0,24.383963,24.383963,.05,.05,.05,0,0,0,0,0,1,1,0,4.7192068,0,58.89,48.6,54.2,57.49,8.333333333333334,1,1,0,0,10,4,5,1,250.33333,473310.59,269444.44,335126.22,0,0,0,3768.8281 +15873,19410,34606,-9,34607,34605,1,1,11,0,1,1,3,0,-9,0,4,0,0,0,0,0,-998.94165,-9,2,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,47,60,-9,-9,7,1,1,-9,0,0,4,5,1,250.33333,473310.59,269444.44,335126.22,0,0,0,3768.8281 +15873,19410,34607,34605,-9,-9,1,0,46,0,1,0,2,2,-9,0,4,7.5807142,7.411942,0,15,-4,-57.230148,0,3,2,2021,11,0,23,0,1,0,0,8.953927,8.953927,.05,.05,0,0,0,0,0,0,1,1,0,6.9994559,0,54.2,57.49,58.89,48.6,8.333333333333334,1,1,0,0,3,4,5,1,250.33333,473310.59,269444.44,335126.22,0,0,0,3768.8281 +15874,19411,34608,34609,-9,-9,1,0,80,0,0,0,2,2,-9,0,2,0,7.4137182,7.7173634,60,-3,-65.579742,0,-9,-9,2021,12,0,0,0,4,0,0,0,0,0,0,0,1,0,0,0,42,1,1,0,1.1402391,7.425251,61.93,22.04,51.84,17.36,8.333333333333334,1,1,0,0,0,8,3,1,248,589733.13,173822.5,429110.5,0,0,0,2006.2119 +15874,19411,34609,34608,-9,-9,1,1,83,0,0,0,3,3,-9,0,1,0,0,0,60,3,-49.005943,0,2,2,2021,9,1,0,0,4,1,0,0,0,0,0,0,1,0,17.313673,0,0,1,1,0,0,0,51.84,17.36,61.93,22.04,1.666666666666667,1,1,0,0,0,8,3,1,248,589733.13,173822.5,429110.5,0,0,0,2006.2119 +15875,19412,34610,-9,34613,34612,1,1,8,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1042.3827,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15875,19412,34611,-9,34613,34612,1,1,4,0,2,1,3,0,-9,0,4,0,0,0,0,0,-1003.591,-9,1,2,2021,11,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,45,61,-9,-9,7,1,1,-9,0,0,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15875,19412,34612,34613,-9,-9,1,1,47,0,2,0,2,2,-9,0,3,8.2859516,8.4046001,0,18,5,-15.228787,0,2,2,2021,7,0,53,47,1,0,0,11.453497,11.453497,.05,.05,0,0,0,0,0,0,1,1,0,.59387773,0,57.33,53.46,46.98,59.35,8.333333333333334,1,1,0,0,12,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15875,19412,34613,34612,-9,-9,1,0,42,0,2,0,1,1,-9,0,4,8.805397,8.969718,0,20,-5,-84.794655,0,2,3,2021,14,3,53,48,1,3,0,13.479365,13.479365,0,0,0,0,0,0,0,0,1,1,0,3.2347598,0,46.98,59.35,57.33,53.46,8.333333333333334,1,1,0,0,12,1,5,1,677.5,-37320.84,-5907.6489,235286.5,131334.42,68825.422,2061.1689,4248.3618 +15876,19413,34614,-9,-9,-9,1,0,61,0,0,0,1,1,-9,0,3,0,8.1776123,7.7616892,0,0,-1072.5684,0,2,2,2021,11,2,0,0,4,2,0,0,0,0,0,0,0,0,0,0,7,0,0,0,8.02987,7.7719383,51.79,37.13,-9,-9,6.666666666666667,2,3,0,0,0,8,3,1,1433,712294,448729.88,297395.94,0,0,0,1478.5563 +15877,19414,34615,34616,-9,-9,1,1,45,0,2,0,1,1,-9,0,3,8.7405615,8.8544588,0,8,-1,-64.629364,0,-9,-9,2021,10,0,48,45,1,0,0,18.142019,18.142019,.05,.05,0,0,0,0,0,0,1,1,0,8.2070456,0,47.66,52.33,44.45,57.75,6.666666666666667,1,1,0,0,7,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34616,34615,-9,-9,1,0,46,0,2,0,1,1,-9,0,4,8.5470943,8.4651775,0,21,1,-9.6474962,0,1,2,2021,12,3,70,58,1,3,0,11.537052,11.537052,.05,.05,0,0,0,0,0,0,1,1,0,0,0,44.45,57.75,47.66,52.33,6.666666666666667,1,1,0,0,6,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34617,-9,34616,34615,1,1,17,0,2,1,2,0,0,0,5,0,0,0,0,0,-1073.9706,-9,1,1,2021,15,6,0,0,2,6,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,46.28,62.6,-9,-9,8.333333333333334,1,1,0,0,1,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34618,-9,34616,34615,1,1,12,0,2,1,3,0,-9,0,3,0,0,0,0,0,-978.83868,-9,1,1,2021,13,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,55,-9,-9,6,1,1,-9,0,0,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15877,19414,34619,-9,34616,34615,1,0,16,0,2,1,2,0,-9,0,4,0,0,0,0,0,-996.28247,-9,1,1,2021,8,1,0,0,2,1,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,54.79,55.86,-9,-9,8.333333333333334,1,1,0,0,0,9,5,1,784.79999,545276,395871.34,219401.02,163121.38,0,0,6096.7017 +15878,19415,34620,34622,-9,-9,1,0,28,1,1,0,1,1,-9,0,5,8.0598974,7.966053,0,1,0,136.05237,-9,1,1,2021,15,3,45,0,1,3,0,6.3023686,6.3023686,.05,.05,0,0,0,0,0,0,1,1,0,0,0,37.99,65,20.76,64.84999999999999,8.333333333333334,1,1,0,0,7,2,5,1,870.33331,207676.72,57913.699,165695.78,86010.18,2695.6477,1833.4031,4044.5979 +15878,19415,34621,-9,34620,34622,1,0,0,1,1,1,3,0,-9,0,4,0,0,0,0,0,-982.784,-9,1,1,2021,13,0,0,0,2,3,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,43,61,-9,-9,7,1,1,-9,0,0,2,5,1,870.33331,207676.72,57913.699,165695.78,86010.18,2695.6477,1833.4031,4044.5979 +15878,19415,34622,34620,-9,-9,1,1,28,1,1,0,1,1,-9,0,3,9.1623859,8.9273615,0,1,0,-36.26178,-9,-9,-9,2021,30,10,40,0,1,10,0,30.348806,30.348806,.05,.05,0,0,0,0,0,0,1,1,0,3.8306377,0,20.76,64.84999999999999,37.99,65,1.666666666666667,1,1,0,0,0,2,5,1,870.33331,207676.72,57913.699,165695.78,86010.18,2695.6477,1833.4031,4044.5979 +15879,19416,34623,-9,-9,-9,1,1,28,0,0,0,2,2,-9,0,4,8.3370142,8.4025059,0,0,0,-948.21277,-9,2,3,2021,7,0,55,0,1,0,0,11.165159,11.165159,0,0,0,0,0,0,0,0,0,0,0,0,0,57.16,56.15,-9,-9,8.333333333333334,1,1,0,0,10,5,5,1,504,9822.502,0,0,0,0,0,2356.262 +15880,19417,34624,34625,-9,-9,1,1,51,0,1,0,2,2,-9,0,2,8.5969305,8.5231924,0,6,7,94.563156,0,-9,-9,2021,7,0,95,65,1,0,0,4.6162724,4.6162724,.05,.05,0,0,0,0,0,0,1,1,0,0,0,55.2,49.4,57.9,51.84,5,1,1,0,0,6,2,4,1,520,991556.56,736001.25,207110.22,73113.523,2779.0166,0,2926.2778 +15880,19417,34625,34624,-9,-9,1,0,44,0,1,0,2,2,-9,0,3,8.0924997,7.8299608,0,6,-7,27.209507,0,2,2,2021,11,0,37,43,1,0,0,11.103292,11.103292,.05,.05,0,0,0,0,0,0,1,1,0,0,0,57.9,51.84,55.2,49.4,8.333333333333334,1,1,0,0,8,2,4,1,520,991556.56,736001.25,207110.22,73113.523,2779.0166,0,2926.2778 +15881,19418,34626,-9,-9,-9,1,0,25,1,2,0,2,2,-9,0,4,0,0,0,0,0,-1060.6492,-9,3,3,2021,24,10,0,0,3,10,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,35.93,41.39,-9,-9,1.666666666666667,2,3,1,1,2,8,1,0,414.66666,-48319.473,0,0,0,0,0,1383.7328 +15881,19418,34627,-9,34626,-9,1,1,4,1,2,1,3,0,-9,0,4,0,0,0,0,0,-1129.574,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,414.66666,-48319.473,0,0,0,0,0,1383.7328 +15881,19418,34628,-9,34626,-9,1,1,0,1,2,1,3,0,-9,0,4,0,0,0,0,0,-948.74908,-9,2,2,2021,12,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,44,62,-9,-9,7,2,3,-9,0,0,8,1,0,414.66666,-48319.473,0,0,0,0,0,1383.7328 diff --git a/input/align_employment.xlsx b/input/align_employment.xlsx deleted file mode 100644 index 627cdd4e5..000000000 Binary files a/input/align_employment.xlsx and /dev/null differ diff --git a/input/align_popProjections.xlsx b/input/align_popProjections.xlsx index 2abf8035d..9856ef38a 100644 Binary files a/input/align_popProjections.xlsx and b/input/align_popProjections.xlsx differ diff --git a/input/align_student_under30.xlsx b/input/align_student_under30.xlsx deleted file mode 100644 index efcf613b7..000000000 Binary files a/input/align_student_under30.xlsx and /dev/null differ diff --git a/input/alignment_adjustment_series.xlsx b/input/alignment_adjustment_series.xlsx new file mode 100644 index 000000000..7a16ba697 Binary files /dev/null and b/input/alignment_adjustment_series.xlsx differ diff --git a/input/alignment_targets_employment.xlsx b/input/alignment_targets_employment.xlsx new file mode 100644 index 000000000..7d5e51e5e Binary files /dev/null and b/input/alignment_targets_employment.xlsx differ diff --git a/input/alignment_targets_inSchool.xlsx b/input/alignment_targets_inSchool.xlsx new file mode 100644 index 000000000..5829f7523 Binary files /dev/null and b/input/alignment_targets_inSchool.xlsx differ diff --git a/input/alignment_targets_partnered_share.xlsx b/input/alignment_targets_partnered_share.xlsx new file mode 100644 index 000000000..cd1a64647 Binary files /dev/null and b/input/alignment_targets_partnered_share.xlsx differ diff --git a/input/economic_time_series.xlsx b/input/economic_time_series.xlsx new file mode 100644 index 000000000..6a1aec990 Binary files /dev/null and b/input/economic_time_series.xlsx differ diff --git a/input/employment_targets.xlsx b/input/employment_targets.xlsx deleted file mode 100644 index c112905e0..000000000 Binary files a/input/employment_targets.xlsx and /dev/null differ diff --git a/input/inSchool_targets.xlsx b/input/inSchool_targets.xlsx deleted file mode 100644 index 521a102a5..000000000 Binary files a/input/inSchool_targets.xlsx and /dev/null differ diff --git a/input/marriageTypes2.xlsx b/input/marriageTypes2.xlsx index 981ffd9f8..f8854f8f8 100644 Binary files a/input/marriageTypes2.xlsx and b/input/marriageTypes2.xlsx differ diff --git a/input/partnered_share_targets.xlsx b/input/partnered_share_targets.xlsx deleted file mode 100644 index cd35770bf..000000000 Binary files a/input/partnered_share_targets.xlsx and /dev/null differ diff --git a/input/policy parameters.xlsx b/input/policy parameters.xlsx deleted file mode 100644 index a1362cf35..000000000 Binary files a/input/policy parameters.xlsx and /dev/null differ diff --git a/input/reg_RMSE.xlsx b/input/reg_RMSE.xlsx index 199fdb6b8..1a65005ad 100644 Binary files a/input/reg_RMSE.xlsx and b/input/reg_RMSE.xlsx differ diff --git a/input/reg_education.xlsx b/input/reg_education.xlsx index 1d75ac6a4..2b3e28023 100644 Binary files a/input/reg_education.xlsx and b/input/reg_education.xlsx differ diff --git a/input/reg_employment_selection.xlsx b/input/reg_employment_selection.xlsx index 1e5cebf06..466747951 100644 Binary files a/input/reg_employment_selection.xlsx and b/input/reg_employment_selection.xlsx differ diff --git a/input/reg_fertility.xlsx b/input/reg_fertility.xlsx index 1e68ecdbc..6f6581c0f 100644 Binary files a/input/reg_fertility.xlsx and b/input/reg_fertility.xlsx differ diff --git a/input/reg_financial_distress.xlsx b/input/reg_financial_distress.xlsx index 11b64fefe..d945ffd9b 100644 Binary files a/input/reg_financial_distress.xlsx and b/input/reg_financial_distress.xlsx differ diff --git a/input/reg_health.xlsx b/input/reg_health.xlsx index a4c5e7cd7..428c74b61 100644 Binary files a/input/reg_health.xlsx and b/input/reg_health.xlsx differ diff --git a/input/reg_health_mental.xlsx b/input/reg_health_mental.xlsx index e349e102c..beea64a8f 100644 Binary files a/input/reg_health_mental.xlsx and b/input/reg_health_mental.xlsx differ diff --git a/input/reg_health_wellbeing.xlsx b/input/reg_health_wellbeing.xlsx index 7eaf3a948..0d0f97abf 100644 Binary files a/input/reg_health_wellbeing.xlsx and b/input/reg_health_wellbeing.xlsx differ diff --git a/input/reg_home_ownership.xlsx b/input/reg_home_ownership.xlsx index d82fa013e..58e64d6ea 100644 Binary files a/input/reg_home_ownership.xlsx and b/input/reg_home_ownership.xlsx differ diff --git a/input/reg_income.xlsx b/input/reg_income.xlsx index 72b68c526..fe188aa2a 100644 Binary files a/input/reg_income.xlsx and b/input/reg_income.xlsx differ diff --git a/input/reg_leave_parental_home.xlsx b/input/reg_leave_parental_home.xlsx index 11e6dd5c5..97f51e5f4 100644 Binary files a/input/reg_leave_parental_home.xlsx and b/input/reg_leave_parental_home.xlsx differ diff --git a/input/reg_partnership.xlsx b/input/reg_partnership.xlsx index ba1cdf736..9a73b1e5e 100644 Binary files a/input/reg_partnership.xlsx and b/input/reg_partnership.xlsx differ diff --git a/input/reg_retirement.xlsx b/input/reg_retirement.xlsx index 7ac0e8f30..a7ac39232 100644 Binary files a/input/reg_retirement.xlsx and b/input/reg_retirement.xlsx differ diff --git a/input/reg_socialcare.xlsx b/input/reg_socialcare.xlsx index c00403ecb..d88086565 100644 Binary files a/input/reg_socialcare.xlsx and b/input/reg_socialcare.xlsx differ diff --git a/input/reg_wages.xlsx b/input/reg_wages.xlsx index fb1c5954e..daf6deff9 100644 Binary files a/input/reg_wages.xlsx and b/input/reg_wages.xlsx differ diff --git a/input/scenario_CPI.xlsx b/input/scenario_CPI.xlsx index b023395d7..63ff15123 100644 Binary files a/input/scenario_CPI.xlsx and b/input/scenario_CPI.xlsx differ diff --git a/input/scenario_retirementAgeFixed.xlsx b/input/scenario_retirementAgeFixed.xlsx index 11545850f..95c5a98c3 100644 Binary files a/input/scenario_retirementAgeFixed.xlsx and b/input/scenario_retirementAgeFixed.xlsx differ diff --git a/input/social_care_parameters.xlsx b/input/social_care_parameters.xlsx new file mode 100644 index 000000000..0f3097b89 Binary files /dev/null and b/input/social_care_parameters.xlsx differ diff --git a/input/system_bu_names.xlsx b/input/system_bu_names.xlsx index ca5b4337c..5564eda5e 100644 Binary files a/input/system_bu_names.xlsx and b/input/system_bu_names.xlsx differ diff --git a/input/time_series_factor.xlsx b/input/time_series_factor.xlsx index cbb4c1f43..70377b322 100644 Binary files a/input/time_series_factor.xlsx and b/input/time_series_factor.xlsx differ diff --git a/pom.xml b/pom.xml index 42cd38e3d..c9d8ee1f1 100644 --- a/pom.xml +++ b/pom.xml @@ -4,6 +4,7 @@ model 1.0.0 + 25 UTF-8 @@ -11,16 +12,15 @@ maven-compiler-plugin - 3.10.1 + 3.15.0 - 19 - 19 + -Xlint:all org.apache.maven.plugins maven-surefire-plugin - 3.2.2 + 3.5.6 **/*IntegrationTest.java @@ -30,7 +30,7 @@ org.apache.maven.plugins maven-failsafe-plugin - 3.5.2 + 3.5.6 **/*IntegrationTest.java @@ -48,7 +48,7 @@ org.apache.maven.plugins maven-shade-plugin - 3.5.1 + 3.6.2 build-single @@ -108,47 +108,33 @@ - org.apache.commons commons-math3 3.6.1 - commons-cli commons-cli - 1.4 + 1.11.0 org.yaml snakeyaml - 1.29 + 2.6 com.github.jasmineRepo JAS-mine-core - 4.3.25 + 5.2.0 compile - - com.github.jasmineRepo - JAS-mine-gui - 4.2.2 - - - xml-apis - xmlParserAPIs - - - xml-apis xml-apis 1.4.01 - com.miglayout miglayout @@ -157,55 +143,59 @@ org.jetbrains annotations - 24.1.0 + 26.1.0 compile org.junit.jupiter junit-jupiter - 5.10.1 + 6.1.0 test org.apache.commons commons-csv - 1.10.0 + 1.14.1 com.opencsv opencsv - 5.9 + 5.12.0 org.apache.logging.log4j log4j-api - 2.17.1 + 2.26.0 org.apache.logging.log4j log4j-core - 2.17.1 + 2.26.0 org.mockito mockito-core - 5.10.0 + 5.23.0 test org.mockito mockito-junit-jupiter - 5.10.0 + 5.23.0 test net.bytebuddy byte-buddy - 1.17.8 + 1.18.10 + + central + https://repo.maven.apache.org/maven2 + jitpack.io https://jitpack.io diff --git a/src/main/java/simpaths/data/ComboBoxCountry.java b/src/main/java/simpaths/data/ComboBoxCountry.java index 758c1a2b2..d9ec45dab 100644 --- a/src/main/java/simpaths/data/ComboBoxCountry.java +++ b/src/main/java/simpaths/data/ComboBoxCountry.java @@ -21,10 +21,10 @@ */ public class ComboBoxCountry extends JPanel implements ActionListener { - // variables in multiple methods private JLabel picture; private String countryName; private boolean disp_flag = true; + private JComboBox countryList; /** @@ -59,13 +59,12 @@ public void updateUI() { // generate combo-box int numCountries = Country.values().length; - // numCountries = 1; //Overrides the above to only allow selection of Italy String[] countryNames = new String[numCountries]; for(int i = 0; i < numCountries; i++) { countryNames[i] = Country.values()[i].getCountryName(); } - JComboBox countryList = new JComboBox(countryNames); - countryList.setSelectedIndex(Country.IT.ordinal()); + countryList = new JComboBox<>(countryNames); + countryList.setSelectedIndex(Country.UK.ordinal()); countryList.addActionListener(this); // set-up display for country flag @@ -96,8 +95,7 @@ public void updateUI() { * */ public void actionPerformed(ActionEvent e) { - JComboBox cb = (JComboBox)e.getSource(); - countryName = (String)cb.getSelectedItem(); + countryName = (String) this.countryList.getSelectedItem(); updateLabel(countryName); } @@ -108,7 +106,7 @@ public void actionPerformed(ActionEvent e) { * */ protected void updateLabel(String countryName) { - Country country = Country.IT.getCountryFromNameString(countryName); + var country = Country.getCountryFromNameString(countryName); ImageIcon icon = createImageIcon("/images/" + country + ".png"); String text = "You have selected " + countryName; picture.setText(text); @@ -143,5 +141,5 @@ protected static ImageIcon createImageIcon(String path) { * @return * */ - public Country getCountryEnum() { return Country.IT.getCountryFromNameString(this.countryName); } + public Country getCountryEnum() { return Country.getCountryFromNameString(this.countryName); } } diff --git a/src/main/java/simpaths/data/ComboBoxYear.java b/src/main/java/simpaths/data/ComboBoxYear.java index fc37090d8..5bc73a76a 100644 --- a/src/main/java/simpaths/data/ComboBoxYear.java +++ b/src/main/java/simpaths/data/ComboBoxYear.java @@ -22,6 +22,7 @@ public class ComboBoxYear extends JPanel implements ActionListener { // variables in multiple methods private static final long serialVersionUID = 1137706260047776530L; String startYearName; + private JComboBox startYearList; /** @@ -63,7 +64,7 @@ public void updateUI() { possibleStartYears[count] = ii.toString(); count++; } - JComboBox startYearList = new JComboBox(possibleStartYears); + this.startYearList = new JComboBox<>(possibleStartYears); startYearList.setSelectedIndex(0); startYearList.addActionListener(this); this.startYearName = possibleStartYears[startYearList.getSelectedIndex()]; @@ -85,8 +86,7 @@ public void updateUI() { * */ public void actionPerformed(ActionEvent e) { - JComboBox cb = (JComboBox)e.getSource(); - startYearName = (String)cb.getSelectedItem(); + startYearName = (String) this.startYearList.getSelectedItem(); updateLabel(startYearName); } diff --git a/src/main/java/simpaths/data/ManagerRegressions.java b/src/main/java/simpaths/data/ManagerRegressions.java index 0e792a28b..2b29f9e87 100644 --- a/src/main/java/simpaths/data/ManagerRegressions.java +++ b/src/main/java/simpaths/data/ManagerRegressions.java @@ -79,12 +79,6 @@ public static LinearRegression getLinearRegression(RegressionName regression) { case SocialCareS2e -> { return Parameters.getRegFormalCareHoursS2e(); } - case SocialCareS3c -> { - return Parameters.getRegCareHoursProvS3c(); - } - case SocialCareS3d -> { - return Parameters.getRegCareHoursProvS3d(); - } // case SocialCareS1b -> { // return Parameters.getRegCareHoursS1b(); // } @@ -199,6 +193,12 @@ public static OrderedRegression getOrderedRegression(RegressionName regression) case HealthHM1Case -> { return Parameters.getRegHealthHM1Case(); } + case SocialCareS3c -> { + return Parameters.getRegCareHoursProvS3c(); + } + case SocialCareS3d -> { + return Parameters.getRegCareHoursProvS3d(); + } default -> { throw new RuntimeException("unrecognised regression (1)"); } @@ -317,9 +317,6 @@ public static double getRmse(RegressionName regression) { case WagesFemalesNE -> { code = "Wages_FemalesNE"; } - case ChildcareC1b -> { - code = "C1b"; - } default -> { throw new InvalidParameterException("RMSE requested for unrecognised regression equation"); } @@ -389,7 +386,7 @@ public static & IntegerValuedEnum> Map getProbabil public static & IntegerValuedEnum> E getEvent(Map probs, double rand) { - List eventList = (List) probs.keySet(); + List eventList = new ArrayList<>(probs.keySet()); eventList.sort(Comparator.comparingInt(IntegerValuedEnum::getValue)); double prob = 0.0; diff --git a/src/main/java/simpaths/data/Parameters.java b/src/main/java/simpaths/data/Parameters.java index 6986ad11b..ac40f8372 100644 --- a/src/main/java/simpaths/data/Parameters.java +++ b/src/main/java/simpaths/data/Parameters.java @@ -7,12 +7,12 @@ import microsim.data.excel.ExcelAssistant; import microsim.statistics.regression.*; // import plug-in packages -import org.apache.commons.collections4.MapIterator; import org.apache.commons.io.FileUtils; import simpaths.data.startingpop.DataParser; import simpaths.model.AnnuityRates; +import simpaths.model.BenefitUnit; +import simpaths.model.Person; import simpaths.model.enums.*; -import org.apache.commons.collections4.keyvalue.MultiKey; import org.apache.commons.collections4.map.LinkedMap; import org.apache.commons.collections4.map.MultiKeyMap; import org.apache.commons.lang3.tuple.Triple; @@ -280,6 +280,9 @@ else if(numberOfChildren <= 5) { public static final boolean USE_CONTINUOUS_LABOUR_SUPPLY_HOURS = true; // If true, a random number of hours of weekly labour supply within each bracket will be generated. Otherwise, each discrete choice of labour supply corresponds to a fixed number of hours of labour supply, which is the same for all persons public static int maxAge; // maximum age possible in simulation public static final int AGE_TO_BECOME_RESPONSIBLE = 18; // Age become reference person of own benefit unit + public static final int MIN_AGE_LEAVE_PH = 18; // Minimum age for a person to leave the parental home + public static int MAX_AGE_ADULT_CHILD; // Maximum age for a person to remain an adult child in the parental home + // after this age a person stop considering leaving p.h. and stops being an a.c. public static final int MIN_AGE_TO_PROVIDE_CARE = 16; // Minimum age to provide social care public static final int MIN_AGE_TO_LEAVE_EDUCATION = 16; // Minimum age for a person to leave (full-demYear) education public static final int MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION = 29; @@ -297,7 +300,7 @@ else if(numberOfChildren <= 5) { public static final double MIN_HOURLY_WAGE_RATE = 1.5; public static final double MAX_HOURLY_WAGE_RATE = 150.0; public static final double MAX_HOURS_WEEKLY_FORMAL_CARE = 150.0; - public static final double MAX_HOURS_WEEKLY_INFORMAL_CARE = 16 * 7; + public static final double MAX_HOURS_WEEKLY_INFORMAL_CARE = HOURS_IN_WEEK; public static final double CHILDCARE_COST_EARNINGS_CAP = 0.5; // maximum share of earnings payable as childcare (for benefit units with some earnings) public static final int MIN_DIFFERENCE_AGE_MOTHER_CHILD_IN_ALIGNMENT = 15; //When assigning children to mothers in the population alignment, specify how much older (at the minimum) the mother must be than the child public static final int MAX_EM_DONOR_RATIO = 3; // Used by BenefitUnit => convertGrossToDisposable() to decide whether gross-to-net ratio should be applied or disposable income from the donor used directly @@ -310,7 +313,7 @@ else if(numberOfChildren <= 5) { //public static int MAX_AGE_IN_EDUCATION;// = MAX_AGE;//30; // Max age a person can stay in education //Cannot set here, as MAX_AGE is not known yet. Now set to MAX_AGE in buildObjects in Model class. //public static int MAX_AGE_MARRIAGE;// = MAX_AGE;//75; // Max age a person can marry //Cannot set here, as MAX_AGE is not known yet. Now set to MAX_AGE in buildObjects in Model class. private static int MIN_START_YEAR = 2011; //Minimum allowed starting point. Should correspond to the oldest initial population. - private static int MAX_START_YEAR = 2023; //Maximum allowed starting point. Should correspond to the most recent initial population. + private static int MAX_START_YEAR = 2024; //Maximum allowed starting point. Should correspond to the most recent initial population. public static int startYear; public static int endYear; private static final int MIN_START_YEAR_TESTING = 2019; @@ -414,18 +417,12 @@ else if(numberOfChildren <= 5) { employedShareACMales, employedShareACFemales, employedShareSingleDepMales, employedShareSingleDepFemales, employedShareSingleMales, employedShareSingleFemales, employedShareCouples, studentShare; public static Map partnershipAlignAdjustment, fertilityAlignAdjustment; - public static MultiKeyMap upratingFactorsMap = new MultiKeyMap<>(); + public static MultiKeyMap upratingFactorsMap = new MultiKeyMap<>(); //Education level projections private static MultiKeyCoefficientMap projectionsHighEdu; //Alignment projections for High Education private static MultiKeyCoefficientMap projectionsLowEdu; //Alignment projections for Medium Education - //Student share projections for alignment - private static MultiKeyCoefficientMap studentShareProjections; //Alignment projections for Student share of population - - //Employment alignment targets - private static MultiKeyCoefficientMap employmentAlignment; - //For marriage types: private static MultiKeyCoefficientMap marriageTypesFrequency; private static Map> marriageTypesFrequencyByGenderAndRegion; @@ -558,9 +555,6 @@ else if(numberOfChildren <= 5) { // private static MultiKeyCoefficientMap coeffCovariancePartnershipU1b; //Probit enter partnership if not in continuous education private static MultiKeyCoefficientMap coeffCovariancePartnershipU2; //Probit exit partnership (females) - //Partnership for Italy - private static MultiKeyCoefficientMap coeffCovariancePartnershipITU1; //Probit enter partnership for Italy - private static MultiKeyCoefficientMap coeffCovariancePartnershipITU2; //Probit exit partnership for Italy //Fertility private static MultiKeyCoefficientMap coeffCovarianceFertilityF1; //Probit fertility if in continuous education @@ -728,15 +722,14 @@ else if(numberOfChildren <= 5) { /////////////////////////////////////////////////////////////////// REGRESSION OBJECTS ////////////////////////////////////////// //Health - private static GeneralisedOrderedRegression regHealthH1; - private static GeneralisedOrderedRegression regHealthH1b; - private static BinomialRegression regHealthH2; + private static GeneralisedOrderedRegression regHealthH1; + private static BinomialRegression regHealthH2; //Social care // private static LinearRegression regSocialCareS1b; // retired process - private static BinomialRegression regNeedCareS2a; - private static BinomialRegression regReceiveCareS2b; - private static MultinomialRegression regSocialCareMarketS2c; + private static BinomialRegression regNeedCareS2a; + private static BinomialRegression regReceiveCareS2b; + private static MultinomialRegression regSocialCareMarketS2c; private static LinearRegression regInformalCareHoursS2d; private static LinearRegression regFormalCareHoursS2e; // private static MultinomialRegression regNotPartnerInformalCareS2f; // retired process @@ -745,27 +738,27 @@ else if(numberOfChildren <= 5) { // private static LinearRegression regSonCareHoursS2i; // retired process // private static LinearRegression regOtherCareHoursS2j; // retired process // private static LinearRegression regFormalCareHoursS2k; // retired process - private static BinomialRegression regCarePartnerProvCareToOtherS3a; - private static BinomialRegression regNoCarePartnerProvCareToOtherS3b; - private static LinearRegression regCareHoursProvS3c; - private static LinearRegression regCareHoursProvS3d; + private static BinomialRegression regCarePartnerProvCareToOtherS3a; + private static BinomialRegression regNoCarePartnerProvCareToOtherS3b; + private static OrderedRegression regCareHoursProvS3c; + private static OrderedRegression regCareHoursProvS3d; // private static LinearRegression regCareHoursProvS3e; // retired process //Unemployment - private static BinomialRegression regUnemploymentMaleGraduateU1a; - private static BinomialRegression regUnemploymentMaleNonGraduateU1b; - private static BinomialRegression regUnemploymentFemaleGraduateU1c; - private static BinomialRegression regUnemploymentFemaleNonGraduateU1d; + private static BinomialRegression regUnemploymentMaleGraduateU1a; + private static BinomialRegression regUnemploymentMaleNonGraduateU1b; + private static BinomialRegression regUnemploymentFemaleGraduateU1c; + private static BinomialRegression regUnemploymentFemaleNonGraduateU1d; // Financial distress - private static BinomialRegression regFinancialDistress; + private static BinomialRegression regFinancialDistress; //Health mental private static LinearRegression regHealthHM1Level; private static LinearRegression regHealthHM2LevelMales; private static LinearRegression regHealthHM2LevelFemales; - private static OrderedRegression regHealthHM1Case; + private static OrderedRegression regHealthHM1Case; private static LinearRegression regHealthHM2CaseMales; private static LinearRegression regHealthHM2CaseFemales; @@ -785,26 +778,23 @@ else if(numberOfChildren <= 5) { private static LinearRegression regHealthEQ5D; //Education - private static BinomialRegression regEducationE1a; - private static BinomialRegression regEducationE1b; - private static GeneralisedOrderedRegression regEducationE2; + private static BinomialRegression regEducationE1a; + private static BinomialRegression regEducationE1b; + private static GeneralisedOrderedRegression regEducationE2; //Partnership - private static BinomialRegression regPartnershipU1; - private static BinomialRegression regPartnershipU1b; - private static BinomialRegression regPartnershipU2; + private static BinomialRegression regPartnershipU1; + private static BinomialRegression regPartnershipU2; - private static BinomialRegression regPartnershipITU1; - private static BinomialRegression regPartnershipITU2; //Fertility - private static BinomialRegression regFertilityF1; + private static BinomialRegression regFertilityF1; //Income - private static BinomialRegression regIncomeI1a; + private static BinomialRegression regIncomeI1a; private static LinearRegression regIncomeI1b; private static LinearRegression regIncomeI2b; - private static BinomialRegression regIncomeI3a; + private static BinomialRegression regIncomeI3a; private static LinearRegression regIncomeI3b; // private static LinearRegression regIncomeI3c; // private static LinearRegression regIncomeI4a; @@ -817,7 +807,7 @@ else if(numberOfChildren <= 5) { // private static BinomialRegression regIncomeI6a_selection; //Homeownership - private static BinomialRegression regHomeownershipHO1a; + private static BinomialRegression regHomeownershipHO1a; private static MultinomialRegression regEducationLevel; @@ -843,7 +833,7 @@ else if(numberOfChildren <= 5) { // Covid-19 labour transitions regressions below // Initialisation - private static BinomialRegression regC19LS_SE; // Assigns self-employed status in the simulated population + private static BinomialRegression regC19LS_SE; // Assigns self-employed status in the simulated population // Transitions private static MultinomialRegression regC19LS_E1; // Models transitions from employment private static MultinomialRegression regC19LS_FF1; // Models transitions from furlough full @@ -860,21 +850,19 @@ else if(numberOfChildren <= 5) { private static LinearRegression regC19LS_U2a; // Probability of SEISS - private static BinomialRegression regC19LS_S3; + private static BinomialRegression regC19LS_S3; //Leaving parental home - private static BinomialRegression regLeaveHomeP1a; + private static BinomialRegression regLeaveHomeP1a; //Retirement - private static BinomialRegression regRetirementR1a; - private static BinomialRegression regRetirementR1b; + private static BinomialRegression regRetirementR1a; + private static BinomialRegression regRetirementR1b; //Childcare - private static BinomialRegression regChildcareC1a; + private static BinomialRegression regChildcareC1a; private static LinearRegression regChildcareC1b; - private static BinomialRegression regBirthFemales; - private static BinomialRegression regUnionFemales; private static Set countryRegions; private static Map unemploymentRatesByRegion; public static boolean isFixTimeTrend; @@ -884,6 +872,7 @@ else if(numberOfChildren <= 5) { public static boolean flagSuppressChildcareCosts; public static boolean flagSuppressSocialCareCosts; public static boolean donorPoolAveraging; + public static boolean taxDonorUpratingByWage; public static boolean lifetimeIncomeImpute; public static double realInterestRateInnov; @@ -913,16 +902,18 @@ private static void addFixedCostRegressors(MultiKeyCoefficientMap map, List>(); //Create a map of maps to store the frequencies @@ -1157,6 +1139,8 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab coeffCovarianceHM2CaseMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM2_Males_C", 1); coeffCovarianceHM2CaseFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_mental.xlsx", "HM2_Females_C", 1); + validateRegressors(coeffCovarianceHM2CaseMales, "reg_health_mental.xlsx", "HM2_Males_C"); + //Health coeffCovarianceDHE_MCS1 = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_MCS1", 1); coeffCovarianceDHE_MCS2Males = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "reg_health_wellbeing.xlsx", "DHE_MCS2_Males", 1); @@ -1287,8 +1271,6 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab {"coeffCovarianceChildcareC1b", coeffCovarianceChildcareC1b}, {"coeffCovariancePartnershipU1", coeffCovariancePartnershipU1}, {"coeffCovariancePartnershipU2", coeffCovariancePartnershipU2}, - //{"coeffCovariancePartnershipITU1", coeffCovariancePartnershipITU1}, - //{"coeffCovariancePartnershipITU2", coeffCovariancePartnershipITU2}, {"coeffCovarianceFertilityF1", coeffCovarianceFertilityF1}, }); } @@ -1408,16 +1390,10 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab coeffCovarianceChildcareC1b = bootstrapWithTrace("coeffCovarianceChildcareC1b", coeffCovarianceChildcareC1b); //Specification of some processes depends on the country: - if (country.equals(Country.UK)) { - coeffCovariancePartnershipU1 = bootstrapWithTrace("coeffCovariancePartnershipU1", coeffCovariancePartnershipU1); - // coeffCovariancePartnershipU1b = RegressionUtils.bootstrap(coeffCovariancePartnershipU1b); - coeffCovariancePartnershipU2 = bootstrapWithTrace("coeffCovariancePartnershipU2", coeffCovariancePartnershipU2); - coeffCovarianceFertilityF1 = bootstrapWithTrace("coeffCovarianceFertilityF1", coeffCovarianceFertilityF1); - } else if (country.equals(Country.IT)) { - coeffCovariancePartnershipITU1 = bootstrapWithTrace("coeffCovariancePartnershipITU1", coeffCovariancePartnershipITU1); - coeffCovariancePartnershipITU2 = bootstrapWithTrace("coeffCovariancePartnershipITU2", coeffCovariancePartnershipITU2); - coeffCovarianceFertilityF1 = bootstrapWithTrace("coeffCovarianceFertilityF1", coeffCovarianceFertilityF1); - } + coeffCovariancePartnershipU1 = bootstrapWithTrace("coeffCovariancePartnershipU1", coeffCovariancePartnershipU1); + // coeffCovariancePartnershipU1b = RegressionUtils.bootstrap(coeffCovariancePartnershipU1b); + coeffCovariancePartnershipU2 = bootstrapWithTrace("coeffCovariancePartnershipU2", coeffCovariancePartnershipU2); + coeffCovarianceFertilityF1 = bootstrapWithTrace("coeffCovarianceFertilityF1", coeffCovarianceFertilityF1); } @@ -1436,12 +1412,12 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab //Health regHealthH1 = new GeneralisedOrderedRegression<>(RegressionType.GenOrderedLogit, Dhe.class, coeffCovarianceHealthH1); - regHealthH2 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceHealthH2); + regHealthH2 = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceHealthH2); //Social care // regSocialCareS1b = new LinearRegression(coeffCovarianceSocialCareS1b); // retired process - regNeedCareS2a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS2a); - regReceiveCareS2b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS2b); + regNeedCareS2a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS2a); + regReceiveCareS2b = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS2b); regSocialCareMarketS2c = new MultinomialRegression<>(RegressionType.MultinomialLogit, SocialCareReceiptS2c.class, coeffCovarianceSocialCareS2c); regInformalCareHoursS2d = new LinearRegression(coeffCovarianceSocialCareS2d); regFormalCareHoursS2e = new LinearRegression(coeffCovarianceSocialCareS2e); @@ -1451,10 +1427,10 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab // regSonCareHoursS2i = new LinearRegression(coeffCovarianceSocialCareS2i); // retired process // regOtherCareHoursS2j = new LinearRegression(coeffCovarianceSocialCareS2j); // retired process // regFormalCareHoursS2k = new LinearRegression(coeffCovarianceSocialCareS2k); // retired process - regCarePartnerProvCareToOtherS3a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3a); - regNoCarePartnerProvCareToOtherS3b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3b); - regCareHoursProvS3c = new LinearRegression(coeffCovarianceSocialCareS3c); - regCareHoursProvS3d = new LinearRegression(coeffCovarianceSocialCareS3d); + regCarePartnerProvCareToOtherS3a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3a); + regNoCarePartnerProvCareToOtherS3b = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceSocialCareS3b); + regCareHoursProvS3c = new OrderedRegression<>(RegressionType.OrderedLogit, CareHoursProvidedCategory.class, coeffCovarianceSocialCareS3c); + regCareHoursProvS3d = new OrderedRegression<>(RegressionType.OrderedLogit, CareHoursProvidedCategory.class, coeffCovarianceSocialCareS3d); // regCareHoursProvS3e = new LinearRegression(coeffCovarianceSocialCareS3e); // retired process //lifetime incomes @@ -1464,20 +1440,20 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab regEquivalisedIncomeDynamics2 = new LinearRegression(coeffCovarianceEquivalisedIncomeDynamics2); //Unemployment - regUnemploymentMaleGraduateU1a = new BinomialRegression(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1a); - regUnemploymentMaleNonGraduateU1b = new BinomialRegression(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1b); - regUnemploymentFemaleGraduateU1c = new BinomialRegression(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1c); - regUnemploymentFemaleNonGraduateU1d = new BinomialRegression(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1d); + regUnemploymentMaleGraduateU1a = new BinomialRegression<>(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1a); + regUnemploymentMaleNonGraduateU1b = new BinomialRegression<>(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1b); + regUnemploymentFemaleGraduateU1c = new BinomialRegression<>(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1c); + regUnemploymentFemaleNonGraduateU1d = new BinomialRegression<>(RegressionType.Probit, ReversedIndicator.class, coeffCovarianceUnemploymentU1d); //Financial distress - regFinancialDistress = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceFinancialDistress); + regFinancialDistress = new BinomialRegression<>(RegressionType.Logit, Indicator.class, coeffCovarianceFinancialDistress); //Health mental regHealthHM1Level = new LinearRegression(coeffCovarianceHM1Level); regHealthHM2LevelMales = new LinearRegression(coeffCovarianceHM2LevelMales); regHealthHM2LevelFemales = new LinearRegression(coeffCovarianceHM2LevelFemales); - regHealthHM1Case = new OrderedRegression(RegressionType.OrderedLogit,DhmGhq.class,coeffCovarianceHM1Case); + regHealthHM1Case = new OrderedRegression<>(RegressionType.OrderedLogit,DhmGhq.class,coeffCovarianceHM1Case); regHealthHM2CaseMales = new LinearRegression(coeffCovarianceHM2CaseMales); regHealthHM2CaseFemales = new LinearRegression(coeffCovarianceHM2CaseFemales); @@ -1493,36 +1469,26 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab regLifeSatisfaction2Females = new LinearRegression(coeffCovarianceDLS2Females); // Education - regEducationE1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceEducationE1a); - regEducationE1b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceEducationE1b); + regEducationE1a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceEducationE1a); + regEducationE1b = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceEducationE1b); regEducationE2 = new GeneralisedOrderedRegression<>(RegressionType.GenOrderedLogit, EducationLevel.class, coeffCovarianceEducationE2); //Partnership - if (country.equals(Country.UK)) { - MultiKeyCoefficientMap coeffPartnershipU1Appended = appendCoefficientMaps(coeffCovariancePartnershipU1, partnershipTimeAdjustment, "Year"); - // MultiKeyCoefficientMap coeffPartnershipU1bAppended = appendCoefficientMaps(coeffCovariancePartnershipU1b, partnershipTimeAdjustment, "Year"); - MultiKeyCoefficientMap coeffPartnershipU2Appended = appendCoefficientMaps(coeffCovariancePartnershipU2, partnershipTimeAdjustment, "Year", true); - regPartnershipU1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffPartnershipU1Appended); - // regPartnershipU1b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffPartnershipU1bAppended); - regPartnershipU2 = new BinomialRegression(RegressionType.Probit, ReversedIndicator.class, coeffPartnershipU2Appended); - } else if (country.equals(Country.IT)) { - regPartnershipITU1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovariancePartnershipITU1); - regPartnershipITU2 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovariancePartnershipITU2); - } + MultiKeyCoefficientMap coeffPartnershipU1Appended = appendCoefficientMaps(coeffCovariancePartnershipU1, partnershipTimeAdjustment, "Year"); + // MultiKeyCoefficientMap coeffPartnershipU1bAppended = appendCoefficientMaps(coeffCovariancePartnershipU1b, partnershipTimeAdjustment, "Year"); + MultiKeyCoefficientMap coeffPartnershipU2Appended = appendCoefficientMaps(coeffCovariancePartnershipU2, partnershipTimeAdjustment, "Year", true); + regPartnershipU1 = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffPartnershipU1Appended); + regPartnershipU2 = new BinomialRegression<>(RegressionType.Probit, ReversedIndicator.class, coeffPartnershipU2Appended); //Fertility - if (country.equals(Country.UK)) { - MultiKeyCoefficientMap coeffFertilityF1aAppended = appendCoefficientMaps(coeffCovarianceFertilityF1, fertilityTimeAdjustment, "Year"); - regFertilityF1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffFertilityF1aAppended); - } else if (country.equals(Country.IT)) { - regFertilityF1 = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceFertilityF1); - } + MultiKeyCoefficientMap coeffFertilityF1aAppended = appendCoefficientMaps(coeffCovarianceFertilityF1, fertilityTimeAdjustment, "Year"); + regFertilityF1 = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffFertilityF1aAppended); //Income - regIncomeI1a = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI1a); + regIncomeI1a = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI1a); regIncomeI1b = new LinearRegression(coeffCovarianceIncomeI1b); regIncomeI2b = new LinearRegression(coeffCovarianceIncomeI2b); - regIncomeI3a = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI3a); + regIncomeI3a = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI3a); regIncomeI3b = new LinearRegression(coeffCovarianceIncomeI3b); //regIncomeI3c = new LinearRegression(coeffCovarianceIncomeI3c); //regIncomeI4a = new LinearRegression(coeffCovarianceIncomeI4a); @@ -1535,7 +1501,7 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab //regIncomeI6a_selection = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffCovarianceIncomeI6a_selection); //Homeownership - regHomeownershipHO1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceHomeownership); + regHomeownershipHO1a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceHomeownership); //XXX: Note: the model used for selection in Heckman procedure is a Probit, but to obtain Inverse Mills Ratio, linear prediction needs to be obtained - so linear regression used here //regEmploymentSelectionMale = new LinearRegression(coeffCovarianceEmploymentSelectionMales); @@ -1563,7 +1529,7 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab regLabourSupplyUtilityCouples = new LinearRegression(coeffLabourSupplyUtilityCouples); // Regressions for Covid-19 labour transition models below - regC19LS_SE = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceC19LS_SE); + regC19LS_SE = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceC19LS_SE); regC19LS_E1 = new MultinomialRegression<>(RegressionType.MultinomialLogit, Les_transitions_E1.class, coeffC19LS_E1Map, true); regC19LS_FF1 = new MultinomialRegression<>(RegressionType.MultinomialLogit, Les_transitions_FF1.class, coeffC19LS_FF1Map, true); regC19LS_FX1 = new MultinomialRegression<>(RegressionType.MultinomialLogit, Les_transitions_FX1.class, coeffC19LS_FX1Map, true); @@ -1576,17 +1542,17 @@ public static void loadParameters(Country country, int maxAgeModel, boolean enab regC19LS_F2c = new LinearRegression(coeffC19LS_F2c); regC19LS_S2a = new LinearRegression(coeffC19LS_S2a); regC19LS_U2a = new LinearRegression(coeffC19LS_U2a); - regC19LS_S3 = new BinomialRegression(RegressionType.Logit, Indicator.class, coeffC19LS_S3); + regC19LS_S3 = new BinomialRegression<>(RegressionType.Logit, Indicator.class, coeffC19LS_S3); //Leaving parental home - regLeaveHomeP1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceLeaveHomeP1); + regLeaveHomeP1a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceLeaveHomeP1); //Retirement - regRetirementR1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceRetirementR1a); - regRetirementR1b = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceRetirementR1b); + regRetirementR1a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceRetirementR1a); + regRetirementR1b = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceRetirementR1b); //Childcare - regChildcareC1a = new BinomialRegression(RegressionType.Probit, Indicator.class, coeffCovarianceChildcareC1a); + regChildcareC1a = new BinomialRegression<>(RegressionType.Probit, Indicator.class, coeffCovarianceChildcareC1a); regChildcareC1b = new LinearRegression(coeffCovarianceChildcareC1b); //Create the age and wage differential MultivariateNormalDistribution for partnership formation, using means and var-cov matrix loaded from Excel @@ -1854,8 +1820,7 @@ public static TreeMap calculateEUROMODpolicySchedule(Country co currentEUROMODpolicySchedule = ExcelAssistant.loadCoefficientMap(getInputDirectory() + EUROMODpolicyScheduleFilename + ".xlsx", country.toString(), 1, 3); TreeMap newEUROMODpolicySchedule = new TreeMap<>(); - for(Object o: currentEUROMODpolicySchedule.keySet()) { - MultiKey k = (MultiKey)o; + for (var k : currentEUROMODpolicySchedule.keySet()) { if(k.getKey(0) != null) { String name = k.getKey(0).toString(); if(name != null && @@ -1920,10 +1885,8 @@ public static String getEUROMODpolicyForThisYear(int year, Map public static void setCountryRegions(Country country) { countryRegions = new LinkedHashSet(); - for(Region demRgn : Region.values()) { //TODO: restrict this to only regions in the simulated country - if(demRgn.toString().startsWith(country.toString())) { //Only assess the relevant regions for the country - countryRegions.add(demRgn); //Create a set of only relevant regions that we can use below TODO: This should be done in the Parameters class, once and for all! - } + for(Region demRgn : Region.values()) { + countryRegions.add(demRgn); } } @@ -1944,9 +1907,7 @@ public static void setCountryBenefitUnitName() { public static MultiKeyCoefficientMap getBenefitUnitVariableNames() { return benefitUnitVariableNames; } - public static MultiKeyCoefficientMap getStudentShareProjections() { return studentShareProjections; } - - public static MultinomialRegression getRegEducationLevel() {return regEducationLevel;} + public static MultinomialRegression getRegEducationLevel() {return regEducationLevel;} public static MultiKeyCoefficientMap getEmploymentsFurloughedFull() { return employmentsFurloughedFull; @@ -1976,13 +1937,12 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen Parameters.employmentsFurloughedFlex = employmentsFurloughedFlex; } - public static GeneralisedOrderedRegression getRegHealthH1() { return regHealthH1; } - // public static GeneralisedOrderedRegression getRegHealthH1b() { return regHealthH1b; } - public static BinomialRegression getRegHealthH2() { return regHealthH2; } + public static GeneralisedOrderedRegression getRegHealthH1() { return regHealthH1; } + public static BinomialRegression getRegHealthH2() { return regHealthH2; } - public static BinomialRegression getRegNeedCareS2a() { return regNeedCareS2a; } - public static BinomialRegression getRegReceiveCareS2b() { return regReceiveCareS2b; } - public static MultinomialRegression getRegSocialCareMarketS2c() { return regSocialCareMarketS2c; } + public static BinomialRegression getRegNeedCareS2a() { return regNeedCareS2a; } + public static BinomialRegression getRegReceiveCareS2b() { return regReceiveCareS2b; } + public static MultinomialRegression getRegSocialCareMarketS2c() { return regSocialCareMarketS2c; } public static LinearRegression getRegInformalCareHoursS2d() { return regInformalCareHoursS2d; } public static LinearRegression getRegFormalCareHoursS2e() { return regFormalCareHoursS2e; } // public static MultinomialRegression getRegNotPartnerInformalCareS2f() { return regNotPartnerInformalCareS2f; } // retired process @@ -1992,10 +1952,10 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen // public static LinearRegression getRegSonCareHoursS2i() { return regSonCareHoursS2i; } // retired process // public static LinearRegression getRegOtherCareHoursS2j() { return regOtherCareHoursS2j; } // retired process // public static LinearRegression getRegFormalCareHoursS2k() { return regFormalCareHoursS2k; } // retired process - public static BinomialRegression getRegCarePartnerProvCareToOtherS3a() { return regCarePartnerProvCareToOtherS3a; } - public static BinomialRegression getRegNoCarePartnerProvCareToOtherS3b() { return regNoCarePartnerProvCareToOtherS3b; } - public static LinearRegression getRegCareHoursProvS3c() { return regCareHoursProvS3c; } - public static LinearRegression getRegCareHoursProvS3d() { return regCareHoursProvS3d; } + public static BinomialRegression getRegCarePartnerProvCareToOtherS3a() { return regCarePartnerProvCareToOtherS3a; } + public static BinomialRegression getRegNoCarePartnerProvCareToOtherS3b() { return regNoCarePartnerProvCareToOtherS3b; } + public static OrderedRegression getRegCareHoursProvS3c() { return regCareHoursProvS3c; } + public static OrderedRegression getRegCareHoursProvS3d() { return regCareHoursProvS3d; } // public static LinearRegression getRegCareHoursProvS3e() { return regCareHoursProvS3e; } // retired process public static LinearRegression getRegEquivalisedIncomeMales() {return regEquivalisedIncomeMales;} @@ -2003,17 +1963,17 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen public static LinearRegression getRegEquivalisedIncomeDynamics() {return regEquivalisedIncomeDynamics;} public static LinearRegression getRegEquivalisedIncomeDynamics2() {return regEquivalisedIncomeDynamics2;} - public static BinomialRegression getRegUnemploymentMaleGraduateU1a() { return regUnemploymentMaleGraduateU1a; } - public static BinomialRegression getRegUnemploymentMaleNonGraduateU1b() { return regUnemploymentMaleNonGraduateU1b; } - public static BinomialRegression getRegUnemploymentFemaleGraduateU1c() { return regUnemploymentFemaleGraduateU1c; } - public static BinomialRegression getRegUnemploymentFemaleNonGraduateU1d() { return regUnemploymentFemaleNonGraduateU1d; } + public static BinomialRegression getRegUnemploymentMaleGraduateU1a() { return regUnemploymentMaleGraduateU1a; } + public static BinomialRegression getRegUnemploymentMaleNonGraduateU1b() { return regUnemploymentMaleNonGraduateU1b; } + public static BinomialRegression getRegUnemploymentFemaleGraduateU1c() { return regUnemploymentFemaleGraduateU1c; } + public static BinomialRegression getRegUnemploymentFemaleNonGraduateU1d() { return regUnemploymentFemaleNonGraduateU1d; } - public static BinomialRegression getRegFinancialDistress() { return regFinancialDistress; } + public static BinomialRegression getRegFinancialDistress() { return regFinancialDistress; } public static LinearRegression getRegHealthHM1Level() { return regHealthHM1Level; } public static LinearRegression getRegHealthHM2LevelMales() { return regHealthHM2LevelMales; } public static LinearRegression getRegHealthHM2LevelFemales() { return regHealthHM2LevelFemales; } - public static OrderedRegression getRegHealthHM1Case() {return regHealthHM1Case;} + public static OrderedRegression getRegHealthHM1Case() {return regHealthHM1Case;} public static LinearRegression getRegHealthHM2CaseMales() {return regHealthHM2CaseMales;} public static LinearRegression getRegHealthHM2CaseFemales() {return regHealthHM2CaseFemales;} @@ -2029,24 +1989,21 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen public static LinearRegression getRegLifeSatisfaction2Males() { return regLifeSatisfaction2Males; } public static LinearRegression getRegLifeSatisfaction2Females() { return regLifeSatisfaction2Females; } - public static BinomialRegression getRegEducationE1a() {return regEducationE1a;} - public static BinomialRegression getRegEducationE1b() {return regEducationE1b;} - public static GeneralisedOrderedRegression getRegEducationE2() {return regEducationE2;} + public static BinomialRegression getRegEducationE1a() {return regEducationE1a;} + public static BinomialRegression getRegEducationE1b() {return regEducationE1b;} + public static GeneralisedOrderedRegression getRegEducationE2() {return regEducationE2;} public static LinearRegression getRegEQ5D() { return regHealthEQ5D; }; - public static BinomialRegression getRegPartnershipU1() {return regPartnershipU1;} - // public static BinomialRegression getRegPartnershipU1b() {return regPartnershipU1b;} - public static BinomialRegression getRegPartnershipU2() {return regPartnershipU2;} - public static BinomialRegression getRegPartnershipITU1() {return regPartnershipITU1;} - public static BinomialRegression getRegPartnershipITU2() {return regPartnershipITU2;} + public static BinomialRegression getRegPartnershipU1() {return regPartnershipU1;} + public static BinomialRegression getRegPartnershipU2() {return regPartnershipU2;} - public static BinomialRegression getRegFertilityF1() {return regFertilityF1;} + public static BinomialRegression getRegFertilityF1() {return regFertilityF1;} - public static BinomialRegression getRegIncomeI1a() {return regIncomeI1a;} + public static BinomialRegression getRegIncomeI1a() {return regIncomeI1a;} public static LinearRegression getRegIncomeI1b() {return regIncomeI1b;} public static LinearRegression getRegIncomeI2b() { return regIncomeI2b; } - public static BinomialRegression getRegIncomeI3a() { return regIncomeI3a; } + public static BinomialRegression getRegIncomeI3a() { return regIncomeI3a; } public static LinearRegression getRegIncomeI3b() { return regIncomeI3b; } // public static LinearRegression getRegIncomeI3c() { return regIncomeI3c; } // public static LinearRegression getRegIncomeI4a() { return regIncomeI4a; } @@ -2058,13 +2015,13 @@ public static void setEmploymentsFurloughedFlex(MultiKeyCoefficientMap employmen // public static BinomialRegression getRegIncomeI5a_selection() { return regIncomeI5a_selection; } // public static BinomialRegression getRegIncomeI6a_selection() { return regIncomeI6a_selection; } - public static BinomialRegression getRegHomeownershipHO1a() {return regHomeownershipHO1a;} + public static BinomialRegression getRegHomeownershipHO1a() {return regHomeownershipHO1a;} public static Set getCountryRegions() { return countryRegions; } - public static MultiKeyMap getFertilityRateByRegionYear() { + public static MultiKeyMap getFertilityRateByRegionYear() { return fertilityRateByRegionYear; } @@ -2182,6 +2139,20 @@ public static int getMinStartYear() { return (trainingFlag) ? MIN_START_YEAR_TRAINING : MIN_START_YEAR; } + public static void validateStartYear(int year) { + int min = getMinStartYear(); + int max = getMaxStartYear(); + if (year < min || year > max) { + String mode; + if (TESTING_FLAG) mode = "testing data"; + else if (trainingFlag) mode = "training data"; + else mode = "real data"; + throw new IllegalArgumentException( + "Start year " + year + " is outside the allowed range [" + min + ", " + max + "] for " + mode + ". " + + "Choose a value within the supported initial-population years."); + } + } + public static String getEuromodOutputDirectory() { if (TESTING_FLAG) return EUROMOD_OUTPUT_DIRECTORY; @@ -2283,144 +2254,239 @@ public synchronized static double[] getWageAndAgeDifferentialMultivariateNormalD return wageAndAgeDifferentialMultivariateNormalDistribution.sample(); } - public static BinomialRegression getRegLeaveHomeP1a() { + public static BinomialRegression getRegLeaveHomeP1a() { return regLeaveHomeP1a; } - public static BinomialRegression getRegRetirementR1a() { + public static BinomialRegression getRegRetirementR1a() { return regRetirementR1a; } - public static BinomialRegression getRegRetirementR1b() { + public static BinomialRegression getRegRetirementR1b() { return regRetirementR1b; } - public static BinomialRegression getRegChildcareC1a() { return regChildcareC1a; } + public static BinomialRegression getRegChildcareC1a() { return regChildcareC1a; } public static LinearRegression getRegChildcareC1b() { return regChildcareC1b; } - ///////////////////////////////////////////GETTERS FOR VALIDATION/////////////////////////////////////////////////// - public static MultiKeyCoefficientMap getValidationStudentsByAge() { - return validationStudentsByAge; + // Access validation data + private static double nanIfNull(MultiKeyCoefficientMap map, int year, String label) { + // FIXME: why year-1? + var val = (Number) map.getValue(year - 1, label); + if (val == null) { + return Double.NaN; + } + return val.doubleValue(); } - public static MultiKeyCoefficientMap getValidationStudentsByRegion() { - return validationStudentsByRegion; + private static String ageStr(int from, int to) { + return from + "_" + to; } - public static MultiKeyCoefficientMap getValidationEducationLevel() { - return validationEducationLevel; + private static String genderStr(Gender gender) { + return switch (gender) { + case Female -> "female"; + case Male -> "male"; + }; } - public static MultiKeyCoefficientMap getValidationEducationLevelByAge() { - return validationEducationLevelByAge; + private static String eduStr(Education education) { + return switch (education) { + case Low -> "dehc3_low"; + case Medium -> "dehc3_med"; + case High -> "dehc3_high"; + case InEducation -> "dehc3_ineducation"; + }; } - public static MultiKeyCoefficientMap getValidationEducationLevelByRegion() { - return validationEducationLevelByRegion; + private static String eduLevelStr(EducationLevel level) { + return switch (level) { + case Low -> "low"; + case Medium -> "med"; + case High -> "high"; + }; } - public static MultiKeyCoefficientMap getValidationPartneredShareByRegion() { - return validationPartneredShareByRegion; + public static double validationStudents(int year) { + return nanIfNull(validationStudentsByAge, year, "ageGroup_All"); } - public static MultiKeyCoefficientMap getValidationDisabledByAge() { - return validationDisabledByAge; + public static double validationStudents(int year, int ageFrom, int ageTo) { + var label = String.join("_", "ageGroup", ageStr(ageFrom, ageTo)); + return nanIfNull(validationStudentsByAge, year, label); } - public static MultiKeyCoefficientMap getValidationDisabledByGender() { - return validationDisabledByGender; + public static double validationStudents(int year, Region region) { + var label = String.join("_", "region", region.name()); + return nanIfNull(validationStudentsByRegion, year, label); } - public static MultiKeyCoefficientMap getValidationHealthByAge() { - return validationHealthByAge; + public static double validationEduc(int year, EducationLevel level) { + var label = String.join("_", "educ", eduLevelStr(level)); + return nanIfNull(validationEducationLevel, year, label); } - public static MultiKeyCoefficientMap getValidationMentalHealthByAge() { - return validationMentalHealthByAge; + public static double validationEduc(int year, EducationLevel level, int ageFrom, int ageTo) { + var label = String.join("_", "educ", eduLevelStr(level), ageStr(ageFrom, ageTo)); + return nanIfNull(validationEducationLevelByAge, year, label); } - public static MultiKeyCoefficientMap getValidationHealthMCSByAge() { - return validationHealthMCSByAge; + public static double validationEduc(int year, EducationLevel level, Region region) { + var label = String.join("_", "educ", eduLevelStr(level), region.name()); + return nanIfNull(validationEducationLevelByRegion, year, label); } - public static MultiKeyCoefficientMap getValidationHealthPCSByAge() { - return validationHealthPCSByAge; + public static double validationPartnered(int year) { + var label = String.join("_", "partnered", "All"); + return nanIfNull(validationPartneredShareByRegion, year, label); } - public static MultiKeyCoefficientMap getValidationLifeSatisfactionByAge() { - return validationLifeSatisfactionByAge; + public static double validationPartnered(int year, Region region) { + var label = String.join("_", "partnered", region.name()); + return nanIfNull(validationPartneredShareByRegion, year, label); } + public static double validationDisabled(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "disabled", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationDisabledByAge, year, label); + } + + public static double validationDisabled(int year, Gender gender) { + var label = String.join("_", "dlltsd", genderStr(gender)); + return nanIfNull(validationDisabledByGender, year, label); + } + + public static double validationHealth(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "health", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationHealthByAge, year, label); + } + + public static double validationMentalHealth(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "mental_health", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationMentalHealthByAge, year, label); + } + + public static double validationHealthMcs(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "health_mcs_score", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationHealthMCSByAge, year, label); + } + + public static double validationHealthPcs(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "health_pcs_score", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationHealthPCSByAge, year, label); + } + + public static double validationLifeSatisfaction(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "life_satisfaction", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationLifeSatisfactionByAge, year, label); + } + + public static double validationPsychDistress(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "psych_distress", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationPsychDistressByAge, year, label); + } - public static MultiKeyCoefficientMap getValidationPsychDistressByAge() { - return validationPsychDistressByAge; + public static double validationPsychDistressLow(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "psych_distress", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationPsychDistressByAgeLow, year, label); } - public static MultiKeyCoefficientMap getValidationPsychDistressByAgeLow() { - return validationPsychDistressByAgeLow; + public static double validationPsychDistressMed(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "psych_distress", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationPsychDistressByAgeMed, year, label); } - public static MultiKeyCoefficientMap getValidationPsychDistressByAgeMed() { - return validationPsychDistressByAgeMed; + public static double validationPsychDistressHigh(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "psych_distress", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationPsychDistressByAgeHigh, year, label); } - public static MultiKeyCoefficientMap getValidationPsychDistressByAgeHigh() { - return validationPsychDistressByAgeHigh; + public static double validationEmployment(int year, Gender gender) { + // this one has a different gender label than others... + var label = String.join("_", "employed", gender.name()); + return nanIfNull(validationEmploymentByGender, year, label); } - public static MultiKeyCoefficientMap getValidationEmploymentByGender() { - return validationEmploymentByGender; + public static double validationEmployment(int year, Gender gender, int ageFrom, int ageTo) { + var label = String.join("_", "employed", genderStr(gender), ageStr(ageFrom, ageTo)); + return nanIfNull(validationEmploymentByAgeAndGender, year, label); } - public static MultiKeyCoefficientMap getValidationEmploymentByAgeAndGender() { - return validationEmploymentByAgeAndGender; + // FIXME: enum for maternity state + public static double validationEmployment(int year, boolean withChild, boolean childIsInfant) { + String chStr; + if (withChild) { + if (childIsInfant) { + chStr = "with_child_0_5"; + } else { + chStr = "with_child_6_18"; + } + } else { + chStr = "without_child"; + } + var label = String.join("_", "emp", chStr); + return nanIfNull(validationEmploymentByMaternity, year, label); } - public static MultiKeyCoefficientMap getValidationEmploymentByMaternity() { - return validationEmploymentByMaternity; + public static double validationEmployment(int year, Gender gender, Region region) { + var label = String.join("_", "employed", genderStr(gender), region.name()); + return nanIfNull(validationEmploymentByGenderAndRegion, year, label); } - public static MultiKeyCoefficientMap getValidationEmploymentByGenderAndRegion() { - return validationEmploymentByGenderAndRegion; + public static double validationLabourSupply(int year, Education education) { + // this one has a different education label than others... + var label = String.join("_", "labour_supply", education.name()); + return nanIfNull(validationLabourSupplyByEducation, year, label); } - public static MultiKeyCoefficientMap getValidationLabourSupplyByEducation() { - return validationLabourSupplyByEducation; + // FIXME: enum for status + /// `status` can be `"employed"`, `"notemployedretired"`, `"student"` + public static double validationActivityStatus(int year, String status) { + var label = String.join("_", "as", status); + return nanIfNull(validationActivityStatus, year, label); } - public static MultiKeyCoefficientMap getValidationActivityStatus() { - return validationActivityStatus; + public static double validationHomeOwnership(int year) { + var val = (Number) validationHomeownershipBenefitUnits.getValue(year - 1); + if (val == null) { + return Double.NaN; + } + return val.doubleValue(); } - public static MultiKeyCoefficientMap getValidationHomeownershipBenefitUnits() { - return validationHomeownershipBenefitUnits; + public static double validationGrossEarnings(int year, Gender gender, Education education) { + var label = String.join("_", "grossearnings", genderStr(gender), eduStr(education)); + return nanIfNull(validationGrossEarningsByGenderAndEducation, year, label); } - public static MultiKeyCoefficientMap getValidationGrossEarningsByGenderAndEducation() { - return validationGrossEarningsByGenderAndEducation; + public static double validationLhw(int year, Gender gender) { + var label = String.join("_", "lhw", genderStr(gender)); + return nanIfNull(validationLhwByGenderAndEducation, year, label); } - public static MultiKeyCoefficientMap getValidationLhwByGenderAndEducation() { - return validationLhwByGenderAndEducation; + public static double validationLhw(int year, Gender gender, Education education) { + var label = String.join("_", "lhw", genderStr(gender), eduStr(education)); + return nanIfNull(validationLhwByGenderAndEducation, year, label); } - public static MultiKeyCoefficientMap getHourlyWageByGenderAndEducation() { - return hourlyWageByGenderAndEducation; + public static double validationHourlyWage(int year, Gender gender, Education education) { + var label = String.join("_", "hourlywage", genderStr(gender), eduStr(education)); + return nanIfNull(hourlyWageByGenderAndEducation, year, label); } ///////////////////////////////////////////GETTERS FOR COVID-19 LABOUR TRANSITIONS////////////////////////////////// - public static BinomialRegression getRegC19LS_SE() { + public static BinomialRegression getRegC19LS_SE() { return regC19LS_SE; } - public static MultinomialRegression getRegC19LS_E1() {return regC19LS_E1;} - public static MultinomialRegression getRegC19LS_FF1() {return regC19LS_FF1;} - public static MultinomialRegression getRegC19LS_FX1() {return regC19LS_FX1;} - public static MultinomialRegression getRegC19LS_S1() {return regC19LS_S1;} - public static MultinomialRegression getRegC19LS_U1() {return regC19LS_U1;} + public static MultinomialRegression getRegC19LS_E1() {return regC19LS_E1;} + public static MultinomialRegression getRegC19LS_FF1() {return regC19LS_FF1;} + public static MultinomialRegression getRegC19LS_FX1() {return regC19LS_FX1;} + public static MultinomialRegression getRegC19LS_S1() {return regC19LS_S1;} + public static MultinomialRegression getRegC19LS_U1() {return regC19LS_U1;} public static LinearRegression getRegC19LS_E2a() { return regC19LS_E2a; @@ -2450,7 +2516,7 @@ public static LinearRegression getRegC19LS_U2a() { return regC19LS_U2a; } - public static BinomialRegression getRegC19LS_S3() { + public static BinomialRegression getRegC19LS_S3() { return regC19LS_S3; } @@ -2489,29 +2555,29 @@ public static LinearRegression getRegEmploymentSelectionFemaleNE() { public static void loadTimeSeriesFactorMaps(Country country) { // load demYear varying rates - priceMapRealSavingReturns = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_saving_returns", 1, 1); - priceMapRealDebtCostLow = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_debt_cost_low", 1, 1); - priceMapRealDebtCostHigh = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_debt_cost_hi", 1, 1); + priceMapRealSavingReturns = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "saving_returns", 1, 1); + priceMapRealDebtCostLow = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "debt_cost_low", 1, 1); + priceMapRealDebtCostHigh = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "debt_cost_hi", 1, 1); // load demYear varying wage rates - wageRateFormalSocialCare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_carer_hourly_wage", 1, 1); + wageRateFormalSocialCare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "carer_hourly_wage", 1, 1); // load demYear varying indices - upratingIndexMapRealGDP = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_gdp", 1, 1); - upratingIndexMapInflation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_inflation", 1, 1); - upratingIndexMapRealWageGrowth = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_wage_growth", 1, 1); - socialCareProvisionTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_care_adjustment", 1, 1); - partnershipTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_cohabitation_adjustment", 1, 1); - studentsTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() +"_students_adjustment", 1, 1); - fertilityTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_fertility_adjustment", 1, 1); - utilityTimeAdjustmentSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_smales", 1, 1); - utilityTimeAdjustmentSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_sfemales", 1, 1); - utilityTimeAdjustmentACMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_acmales", 1, 1); - utilityTimeAdjustmentACFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_acfemales", 1, 1); - - utilityTimeAdjustmentCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_couples", 1, 1); - utilityTimeAdjustmentSingleDepMen = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_singledepmen", 1, 1); - utilityTimeAdjustmentSingleDepWomen = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_utility_adj_singledepwomen", 1, 1); + upratingIndexMapRealGDP = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "gdp", 1, 1); + upratingIndexMapInflation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "inflation", 1, 1); + upratingIndexMapRealWageGrowth = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "wage_growth", 1, 1); + socialCareProvisionTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "care_adjustment", 1, 1); + partnershipTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "cohabitation_adjustment", 1, 1); + studentsTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "students_adjustment", 1, 1); + fertilityTimeAdjustment = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "fertility_adjustment", 1, 1); + utilityTimeAdjustmentSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "utility_adj_smales", 1, 1); + utilityTimeAdjustmentSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "utility_adj_sfemales", 1, 1); + utilityTimeAdjustmentACMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "utility_adj_acmales", 1, 1); + utilityTimeAdjustmentACFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "utility_adj_acfemales", 1, 1); + + utilityTimeAdjustmentCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "utility_adj_couples", 1, 1); + utilityTimeAdjustmentSingleDepMen = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "utility_adj_singledepmen", 1, 1); + utilityTimeAdjustmentSingleDepWomen = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_adjustment_series.xlsx", "utility_adj_singledepwomen", 1, 1); // rebase indices to base year defined by BASE_PRICE_YEAR @@ -2519,23 +2585,23 @@ public static void loadTimeSeriesFactorMaps(Country country) { rebaseIndexMap(TimeSeriesVariable.Inflation); rebaseIndexMap(TimeSeriesVariable.WageGrowth); - //studentShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "students", 1,1); - studentShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "inSchool_targets.xlsx", "students", 1,1); + //studentShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "social_care_parameters.xlsx", "students", 1,1); + studentShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_inSchool.xlsx", "students", 1,1); - // load year-specific fiscal policy parameters - socialCarePolicy = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "social care", 1, 8); - partneredShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "partnered_share_targets.xlsx", "partnered_share", 1, 1); - //employedShareSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_smales", 1, 1); - //employedShareSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_sfemales", 1, 1); - //employedShareCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "policy parameters.xlsx", "employment_couples", 1, 1); + // load year-specific social care policy parameters + socialCarePolicy = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "social_care_parameters.xlsx", "social care", 1, 8); + partneredShare = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_partnered_share.xlsx", "partnered_share", 1, 1); + //employedShareSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "social_care_parameters.xlsx", "employment_smales", 1, 1); + //employedShareSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "social_care_parameters.xlsx", "employment_sfemales", 1, 1); + //employedShareCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "social_care_parameters.xlsx", "employment_couples", 1, 1); - employedShareSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "Single_male", 1,1); - employedShareACMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleAC_Males", 1,1); - employedShareSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "Single_female", 1,1); - employedShareACFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleAC_Females", 1,1); - employedShareCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "Couples", 1,1); - employedShareSingleDepMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleDep_Males", 1,1); - employedShareSingleDepFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "employment_targets.xlsx", "SingleDep_Females", 1,1); + employedShareSingleMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_employment.xlsx", "Single_male", 1,1); + employedShareACMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_employment.xlsx", "SingleAC_Males", 1,1); + employedShareSingleFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_employment.xlsx", "Single_female", 1,1); + employedShareACFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_employment.xlsx", "SingleAC_Females", 1,1); + employedShareCouples = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_employment.xlsx", "Couples", 1,1); + employedShareSingleDepMales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_employment.xlsx", "SingleDep_Males", 1,1); + employedShareSingleDepFemales = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "alignment_targets_employment.xlsx", "SingleDep_Females", 1,1); } @@ -2553,15 +2619,15 @@ public static void loadTimeSeriesFactorForTaxDonor(Country country) { TimeSeriesVariable index = getTimeSeriesVariable(UpratingCase.TaxDonor); switch (index) { case GDP -> { - upratingIndexMapRealGDP = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_gdp", 1, 1); + upratingIndexMapRealGDP = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "gdp", 1, 1); rebaseIndexMap(TimeSeriesVariable.GDP); } case WageGrowth -> { - upratingIndexMapRealWageGrowth = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_wage_growth", 1, 1); + upratingIndexMapRealWageGrowth = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "wage_growth", 1, 1); rebaseIndexMap(TimeSeriesVariable.WageGrowth); } case Inflation -> { - upratingIndexMapInflation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "time_series_factor.xlsx", country.toString() + "_inflation", 1, 1); + upratingIndexMapInflation = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + "economic_time_series.xlsx", "inflation", 1, 1); rebaseIndexMap(TimeSeriesVariable.Inflation); } } @@ -2575,7 +2641,7 @@ private static void rebaseIndexMap(TimeSeriesVariable timeSeriesVariable, int ba MultiKeyCoefficientMap map = getTimeSeriesValueMap(timeSeriesVariable); double valueBase = getTimeSeriesValue(baseYear, timeSeriesVariable); - for (Object key: map.keySet()) { + for (var key : map.keySet()) { double valueHere = ((Number) map.getValue(key)).doubleValue(); if (ratioAdjust) { @@ -2645,9 +2711,6 @@ private static MultiKeyCoefficientMap getTimeSeriesValueMap(TimeSeriesVariable t case LowEducationRate -> { map = projectionsLowEdu; } - case EmploymentAlignment -> { - map = employmentAlignment; - } case FixedRetirementAge -> { map = fixedRetireAge; } @@ -3088,11 +3151,25 @@ public static MahalanobisDistance getMdDualIncomeChildcare() { public static double normaliseWeeklyIncome(int priceYear, double weeklyFinancial) { return normaliseMonthlyIncome(priceYear, weeklyFinancial * WEEKS_PER_MONTH); } - public static double normaliseMonthlyIncome(int priceYear, double monthlyFinancial) { + public static double normaliseWeeklyIncome(int currentPriceYear, int targetWagesYear, double weeklyFinancial) { + return normaliseMonthlyIncome(currentPriceYear, targetWagesYear, weeklyFinancial * WEEKS_PER_MONTH); + } + public static double normaliseMonthlyIncome(int currentPriceYear, double monthlyFinancial) { + return normaliseMonthlyIncome(currentPriceYear, BASE_PRICE_YEAR, currentPriceYear, currentPriceYear, monthlyFinancial); + } + public static double normaliseMonthlyIncome(int currentPriceYear, int targetWagesYear, double monthlyFinancial) { + return normaliseMonthlyIncome(currentPriceYear, BASE_PRICE_YEAR, currentPriceYear, targetWagesYear, monthlyFinancial); + } + public static double normaliseWeeklyIncome(int currentPriceYear, int targetPriceYear, int currentWagesYear, int targetWagesYear, double weeklyFinancial) { + return normaliseMonthlyIncome(currentPriceYear, targetPriceYear, currentWagesYear, targetWagesYear, weeklyFinancial * WEEKS_PER_MONTH); + } + public static double normaliseMonthlyIncome(int currentPriceYear, int targetPriceYear, int currentWagesYear, int targetWagesYear, double monthlyFinancial) { double infAdj = 1.0; - if (priceYear != BASE_PRICE_YEAR) - infAdj = getTimeSeriesValue(BASE_PRICE_YEAR, TimeSeriesVariable.Inflation) / getTimeSeriesValue(priceYear, TimeSeriesVariable.Inflation); - return Parameters.asinh(monthlyFinancial * infAdj); + if (currentPriceYear != targetPriceYear) + infAdj = getTimeSeriesValue(targetPriceYear, TimeSeriesVariable.Inflation) / getTimeSeriesValue(currentPriceYear, TimeSeriesVariable.Inflation); + if (currentWagesYear != targetWagesYear) + infAdj *= getTimeSeriesValue(targetWagesYear, TimeSeriesVariable.WageGrowth) / getTimeSeriesValue(currentWagesYear, TimeSeriesVariable.WageGrowth); + return asinh(monthlyFinancial * infAdj); } public static void setTrainingFlag(boolean flag) { trainingFlag = flag; @@ -3421,6 +3498,53 @@ public static void setEuromodOutputDirectory(String euromodOutputDirectory) { EUROMOD_TRAINING_DIRECTORY = EUROMOD_OUTPUT_DIRECTORY + "training" + File.separator; } + public static void validateRegressors(MultiKeyCoefficientMap map, String excelFileName, String sheetName) { + if (map == null) return; + + // Get the values read from the REGRESSOR column by ExcelAssistant (excludes 'Constant') + var regressorNames = map.keySet(); + + // Check across all + for (var mk : regressorNames) { + String keyName = mk.getKey(0).toString(); + + // Test if a Person Enum + try { + Person.DoublesVariables.valueOf(keyName); + } catch (IllegalArgumentException e) { + try { + BenefitUnit.Regressors.valueOf(keyName); + } catch (IllegalArgumentException e2) { + + // This fires if the string isn't in the Enum + throw new RuntimeException("Validation failed for " + excelFileName + " in " + sheetName + + ": Regressor '" + keyName + "' not found in Person.DoublesVariables. " + + "Check for typos in Excel or missing Enums in Person.java."); + } + } + } + } + + public static MultiKeyCoefficientMap safeReadExcel(String excelFileName, String sheetName, int keyColumns) { + + MultiKeyCoefficientMap map = ExcelAssistant.loadCoefficientMap(excelFileName, sheetName, keyColumns); + + validateRegressors(map, excelFileName, sheetName); + + return map; + + } + + public static MultiKeyCoefficientMap safeReadExcel(String excelFileName, String sheetName, int keyColumns, int valueColumns) { + + MultiKeyCoefficientMap map = ExcelAssistant.loadCoefficientMap(excelFileName, sheetName, keyColumns, valueColumns); + + validateRegressors(map, excelFileName, sheetName); + + return map; + + } + public static String getInputDirectory() { return INPUT_DIRECTORY; } @@ -3510,11 +3634,9 @@ private static void validateCoefficientMapForBootstrap(String name, MultiKeyCoef System.out.println("Bootstrap validation: missing COEFFICIENT column for " + name); } int issueCount = 0; - MapIterator it = map.mapIterator(); - while (it.hasNext()) { - it.next(); - MultiKey key = (MultiKey) it.getKey(); - Object rowObj = map.getValue(new Object[]{key}); + for (var mapEntry : map.entrySet()) { + var key = mapEntry.getKey(); + var rowObj = mapEntry.getValue(); Object[] rowValues; if (rowObj instanceof Object[]) { rowValues = (Object[]) rowObj; diff --git a/src/main/java/simpaths/data/RegressionName.java b/src/main/java/simpaths/data/RegressionName.java index c594fe03f..5f0c3b25d 100644 --- a/src/main/java/simpaths/data/RegressionName.java +++ b/src/main/java/simpaths/data/RegressionName.java @@ -59,8 +59,8 @@ public enum RegressionName { SocialCareS2k(RegressionType.Linear), SocialCareS3a(RegressionType.Probit), SocialCareS3b(RegressionType.Probit), - SocialCareS3c(RegressionType.Linear), - SocialCareS3d(RegressionType.Linear), + SocialCareS3c(RegressionType.OrderedLogit), + SocialCareS3d(RegressionType.OrderedLogit), SocialCareS3e(RegressionType.Linear), UnemploymentU1a(RegressionType.Probit), diff --git a/src/main/java/simpaths/data/ScenarioTable.java b/src/main/java/simpaths/data/ScenarioTable.java index e3247871d..84f462454 100644 --- a/src/main/java/simpaths/data/ScenarioTable.java +++ b/src/main/java/simpaths/data/ScenarioTable.java @@ -226,7 +226,7 @@ public Object getValueAt(int row, int col) { * then the last column would contain text ("true"/"false"), * rather than a check box. */ - public Class getColumnClass(int c) { + public Class getColumnClass(int c) { return getValueAt(0, c).getClass(); } diff --git a/src/main/java/simpaths/data/TestRegressions.java b/src/main/java/simpaths/data/TestRegressions.java index 143f845a9..7c123a6ab 100644 --- a/src/main/java/simpaths/data/TestRegressions.java +++ b/src/main/java/simpaths/data/TestRegressions.java @@ -26,20 +26,20 @@ private static & IntegerValuedEnum> void testDiscreteChoiceMo personProxy.setDemMaleFlag(Gender.Female); personProxy.setDemAge(28); - personProxy.setRegionLocal(Region.UKF); - personProxy.setYearLocal(2010); + personProxy.setI_demRgn(Region.UKF); + personProxy.setI_demYear(2010); probs = ManagerRegressions.getProbabilities(personProxy, regression); personProxy.setDemMaleFlag(Gender.Male); personProxy.setDemAge(23); - personProxy.setRegionLocal(Region.UKF); - personProxy.setYearLocal(2010); + personProxy.setI_demRgn(Region.UKF); + personProxy.setI_demYear(2010); probs = ManagerRegressions.getProbabilities(personProxy, regression); personProxy.setDemMaleFlag(Gender.Female); personProxy.setDemAge(42); - personProxy.setRegionLocal(Region.UKF); - personProxy.setYearLocal(2010); + personProxy.setI_demRgn(Region.UKF); + personProxy.setI_demYear(2010); probs = ManagerRegressions.getProbabilities(personProxy, regression); System.out.println("regression test complete"); diff --git a/src/main/java/simpaths/data/filters/AgeGenderCSfilter.java b/src/main/java/simpaths/data/filters/AgeGenderCSfilter.java deleted file mode 100644 index a793d8860..000000000 --- a/src/main/java/simpaths/data/filters/AgeGenderCSfilter.java +++ /dev/null @@ -1,33 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; - -public class AgeGenderCSfilter implements ICollectionFilter { - - private final Gender demSex; - private final int ageFrom; - private final int ageTo; - public AgeGenderCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.demSex = null; - } - public AgeGenderCSfilter(int ageFrom, int ageTo, Gender demSex) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.demSex = demSex; - } - - @Override - public boolean isFiltered(Object object) { - Person person = (Person) object; - if (this.demSex == null) - return ( (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) ); - else - return ( (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && (person.getDemMaleFlag().equals(demSex))); - } -} diff --git a/src/main/java/simpaths/data/filters/AgeGroupCSfilter.java b/src/main/java/simpaths/data/filters/AgeGroupCSfilter.java deleted file mode 100644 index 03663f8f5..000000000 --- a/src/main/java/simpaths/data/filters/AgeGroupCSfilter.java +++ /dev/null @@ -1,30 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; - -public class AgeGroupCSfilter implements ICollectionFilter{ - - private final int ageFrom; - private final int ageTo; - - public AgeGroupCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) ); - } - - public int getAgeFrom() { - return ageFrom; - } - - public int getAgeTo() { - return ageTo; - } - -} diff --git a/src/main/java/simpaths/data/filters/BenefitUnitFilters.java b/src/main/java/simpaths/data/filters/BenefitUnitFilters.java new file mode 100644 index 000000000..384a52866 --- /dev/null +++ b/src/main/java/simpaths/data/filters/BenefitUnitFilters.java @@ -0,0 +1,27 @@ +package simpaths.data.filters; + +import java.util.function.Predicate; + +import simpaths.model.BenefitUnit; +import simpaths.model.enums.Occupancy; +import simpaths.model.enums.Region; + +/// Collection of [BenefitUnit] filters. +public class BenefitUnitFilters { + BenefitUnitFilters() {} + + /// Filter by region. + public static Predicate region(Region region) { + return b -> b.getRegion() == region; + } + + /// Filter by occupancy. + public static Predicate occupancy(Occupancy occupancy) { + return b -> b.getOccupancy() == occupancy; + } + + /// Filter benefit units with a non-negative disposable income. + public static Predicate validIncome() { + return b -> b.getEquivalisedDisposableIncomeYearly() >= 0.0; + } +} diff --git a/src/main/java/simpaths/data/filters/CanBePartneredCSfilter.java b/src/main/java/simpaths/data/filters/CanBePartneredCSfilter.java deleted file mode 100644 index a6f393b06..000000000 --- a/src/main/java/simpaths/data/filters/CanBePartneredCSfilter.java +++ /dev/null @@ -1,22 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -public class CanBePartneredCSfilter implements ICollectionFilter{ - - - public CanBePartneredCSfilter() { - super(); - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - boolean inContinuousEducation = (person.getDemAge() <= 29 && person.getLes_c4().equals(Les_c4.Student) && person.isLeftEducation() == false); - return (person.getPartner() == null && !inContinuousEducation); - } - else throw new IllegalArgumentException("Object passed to GenderEducationWorkingCSfilter must be of type Person!"); - } -} diff --git a/src/main/java/simpaths/data/filters/ChildValidIncomeCSfilter.java b/src/main/java/simpaths/data/filters/ChildValidIncomeCSfilter.java deleted file mode 100644 index 5afb9a096..000000000 --- a/src/main/java/simpaths/data/filters/ChildValidIncomeCSfilter.java +++ /dev/null @@ -1,15 +0,0 @@ -package simpaths.data.filters; - -import simpaths.data.Parameters; -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; - -public class ChildValidIncomeCSfilter implements ICollectionFilter{ - - public boolean isFiltered(Object object) { - Person person = (Person) object; -// return (person.getAge() < Parameters.AGE_TO_LEAVE_HOME && person.getAtRiskOfPoverty() != null); //Removes cases where gross earnings are not valid (i.e. are null, or negative) - return (person.getDemAge() < Parameters.AGE_TO_BECOME_RESPONSIBLE && person.getBenefitUnit().getEquivalisedDisposableIncomeYearly() >= 0.); //Removes cases where gross earnings are not valid (i.e. are null, or negative) - } - -} diff --git a/src/main/java/simpaths/data/filters/ChildValidIncomeRegionalCSfilter.java b/src/main/java/simpaths/data/filters/ChildValidIncomeRegionalCSfilter.java deleted file mode 100644 index 3f62238d7..000000000 --- a/src/main/java/simpaths/data/filters/ChildValidIncomeRegionalCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import simpaths.data.Parameters; -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Region; - -public class ChildValidIncomeRegionalCSfilter implements ICollectionFilter{ - - private Region demRgn; - - public ChildValidIncomeRegionalCSfilter(Region demRgn) { - super(); - this.demRgn = demRgn; - - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; -// return (person.getAge() < Parameters.AGE_TO_LEAVE_HOME && person.getRegion().equals(region) && person.getAtRiskOfPoverty() != null); //Removes cases where gross earnings are not valid (i.e. are null, or negative) - return (person.getDemAge() < Parameters.AGE_TO_BECOME_RESPONSIBLE && person.getRegion().equals(demRgn) && person.getBenefitUnit().getEquivalisedDisposableIncomeYearly() >= 0.); //Removes cases where gross earnings are not valid (i.e. are null, or negative) - } - -} diff --git a/src/main/java/simpaths/data/filters/EducationCSfilter.java b/src/main/java/simpaths/data/filters/EducationCSfilter.java deleted file mode 100644 index c89c25a9b..000000000 --- a/src/main/java/simpaths/data/filters/EducationCSfilter.java +++ /dev/null @@ -1,23 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Education; - -public class EducationCSfilter implements ICollectionFilter{ - - private Education education; - - public EducationCSfilter(Education edu) { - super(); - this.education = edu; - - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return person.getDeh_c4().equals(education); - - } - -} diff --git a/src/main/java/simpaths/data/filters/EducationEmployedCSfilter.java b/src/main/java/simpaths/data/filters/EducationEmployedCSfilter.java deleted file mode 100644 index 69f7ab1a8..000000000 --- a/src/main/java/simpaths/data/filters/EducationEmployedCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -public class EducationEmployedCSfilter implements ICollectionFilter{ - - private Education education; - - public EducationEmployedCSfilter(Education edu) { - super(); - this.education = edu; - - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return (person.getDeh_c4().equals(education) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)); - - } - -} diff --git a/src/main/java/simpaths/data/filters/EmploymentHistoryFilter.java b/src/main/java/simpaths/data/filters/EmploymentHistoryFilter.java deleted file mode 100644 index 908d762e9..000000000 --- a/src/main/java/simpaths/data/filters/EmploymentHistoryFilter.java +++ /dev/null @@ -1,27 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Les_c4; - -public class EmploymentHistoryFilter implements ICollectionFilter { - - private Les_c4 employmentLag1; - - public EmploymentHistoryFilter(Les_c4 employmentLag1) { - super(); - this.employmentLag1 = employmentLag1; - - } - - public boolean isFiltered(Object object) { - - if (object instanceof Person){ - Person person = (Person) object; - return (person.getLes_c4_lag1().equals(employmentLag1)); - } - else throw new IllegalArgumentException("Argument passed to EmploymentHistoryFilter must be of object type Person"); - } - -} diff --git a/src/main/java/simpaths/data/filters/FemaleAgeGroupCSfilter.java b/src/main/java/simpaths/data/filters/FemaleAgeGroupCSfilter.java deleted file mode 100644 index d30bd842d..000000000 --- a/src/main/java/simpaths/data/filters/FemaleAgeGroupCSfilter.java +++ /dev/null @@ -1,23 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; - -public class FemaleAgeGroupCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - - public FemaleAgeGroupCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Female) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) ); - } - -} diff --git a/src/main/java/simpaths/data/filters/FemaleAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/FemaleAgeGroupEducationCSfilter.java deleted file mode 100644 index bcab20bb3..000000000 --- a/src/main/java/simpaths/data/filters/FemaleAgeGroupEducationCSfilter.java +++ /dev/null @@ -1,27 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Gender; -import microsim.statistics.ICollectionFilter; - -public class FemaleAgeGroupEducationCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - private Education education; - - public FemaleAgeGroupEducationCSfilter(int ageFrom, int ageTo, Education education) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.education = education; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Female) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && person.getDeh_c4().equals(education) ); - } - -} - diff --git a/src/main/java/simpaths/data/filters/FemaleCSfilter.java b/src/main/java/simpaths/data/filters/FemaleCSfilter.java deleted file mode 100644 index e86da0a16..000000000 --- a/src/main/java/simpaths/data/filters/FemaleCSfilter.java +++ /dev/null @@ -1,13 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; - -public class FemaleCSfilter implements ICollectionFilter{ - - public boolean isFiltered(Object object) { - return ( ((Person) object).getDemMaleFlag().equals(Gender.Female) ); - } - -} diff --git a/src/main/java/simpaths/data/filters/FemaleRegionAgeCSfilter.java b/src/main/java/simpaths/data/filters/FemaleRegionAgeCSfilter.java deleted file mode 100644 index a1f4c2064..000000000 --- a/src/main/java/simpaths/data/filters/FemaleRegionAgeCSfilter.java +++ /dev/null @@ -1,26 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Region; -import microsim.statistics.ICollectionFilter; - -public class FemaleRegionAgeCSfilter implements ICollectionFilter{ - - private Region demRgn; - private int ageFrom; - private int ageTo; - - public FemaleRegionAgeCSfilter(Region demRgn, int ageFrom, int ageTo) { - super(); - this.demRgn = demRgn; - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return person.getRegion().equals(demRgn) && person.getDemMaleFlag().equals(Gender.Female) && person.getDemAge() >= ageFrom && person.getDemAge() <= ageTo; - } - -} diff --git a/src/main/java/simpaths/data/filters/FemaleRegionCSfilter.java b/src/main/java/simpaths/data/filters/FemaleRegionCSfilter.java deleted file mode 100644 index 59e067de3..000000000 --- a/src/main/java/simpaths/data/filters/FemaleRegionCSfilter.java +++ /dev/null @@ -1,23 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Region; - -public class FemaleRegionCSfilter implements ICollectionFilter{ - - private Region demRgn; - - public FemaleRegionCSfilter(Region demRgn) { - super(); - this.demRgn = demRgn; - - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return person.getRegion().equals(demRgn) && person.getDemMaleFlag().equals(Gender.Female); - } - -} diff --git a/src/main/java/simpaths/data/filters/FemaleWithChildrenByAgeBandFilter.java b/src/main/java/simpaths/data/filters/FemaleWithChildrenByAgeBandFilter.java deleted file mode 100644 index 938cb6461..000000000 --- a/src/main/java/simpaths/data/filters/FemaleWithChildrenByAgeBandFilter.java +++ /dev/null @@ -1,31 +0,0 @@ -//package simpaths.data.filters; -// -//import org.apache.commons.collections.Predicate; -// -//import simpaths.model.Person; -//import simpaths.model.enums.Gender; -//import simpaths.model.enums.Indicator; -// -//public class FemaleWithChildrenByAgeBandFilter implements Predicate { -// -// private int ageFrom; -// private int ageTo; -// -// public FemaleWithChildrenByAgeBandFilter(int ageFrom, int ageTo) { -// super(); -// this.ageFrom = ageFrom; -// this.ageTo = ageTo; -// } -// -// @Override -// public boolean evaluate(Object object) { -// Person agent = (Person) object; -// -// return ( (agent.getGender().equals(Gender.Female)) && -// ( agent.getHousehold().getD_children_3under().equals(Indicator.True) || agent.getHousehold().getD_children_4_12().equals(Indicator.True) ) && -// ( agent.getAge() >= ageFrom ) && //Inclusive -// ( agent.getAge() < ageTo ) //Exclusive -// ); -// } -// -//} diff --git a/src/main/java/simpaths/data/filters/FemalesAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/FemalesAgeGroupEducationCSfilter.java deleted file mode 100644 index 728f6c86e..000000000 --- a/src/main/java/simpaths/data/filters/FemalesAgeGroupEducationCSfilter.java +++ /dev/null @@ -1,34 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Gender; - -public class FemalesAgeGroupEducationCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - private Education edu; - - public FemalesAgeGroupEducationCSfilter(int ageFrom, int ageTo, Education edu) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.edu = edu; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - if( person.getDeh_c4() == null ) return false; //Better just to check on Education being null, rather than assuming anything about the Students. In future models, it may be possible to go back to education after already working. -// if(person.getActivity_status().equals(Les_c4.Student)) { //Need to check they are not still students, otherwise education level is not defined -// return false; -// } - else return ( person.getDemMaleFlag().equals(Gender.Female) && - (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && - ( person.getDeh_c4().equals(edu) ) - ); - } - -} - diff --git a/src/main/java/simpaths/data/filters/FemalesUnder45Filter.java b/src/main/java/simpaths/data/filters/FemalesUnder45Filter.java deleted file mode 100644 index 61dcbae58..000000000 --- a/src/main/java/simpaths/data/filters/FemalesUnder45Filter.java +++ /dev/null @@ -1,23 +0,0 @@ -package simpaths.data.filters; - -import org.apache.commons.collections.Predicate; - -import simpaths.model.Person; -import simpaths.model.enums.Gender; - -public class FemalesUnder45Filter implements Predicate { - - @Override - public boolean evaluate(Object object) { - - Person agent = (Person) object; - - return ( (agent.getDemMaleFlag().equals(Gender.Female)) && -// ( !agent.getActivity_status().equals(Les_c4.Student) || agent.isToLeaveSchool() ) && //Alignment rate for sweden includes many students who are married, so cannot filter out non-students in the alignment algorithm - ( agent.getDemAge() < 45 ) //Strict inequality here, to coincide with age band in the GUI chart of Cohabitiing Females - ); - - } - - -} diff --git a/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupCSfilter.java b/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupCSfilter.java deleted file mode 100644 index 45b2f7371..000000000 --- a/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupCSfilter.java +++ /dev/null @@ -1,29 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Indicator; - -public class FemalesWithChildrenAgeGroupCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - - public FemalesWithChildrenAgeGroupCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Female) && - (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && - ( person.getBenefitUnit().getIndicatorChildren(0,3).equals(Indicator.True) || - person.getBenefitUnit().getIndicatorChildren(4,12).equals(Indicator.True) || - person.getBenefitUnit().getIndicatorChildren(13,17).equals(Indicator.True) ) ); - } - -} - diff --git a/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupEducationCSfilter.java deleted file mode 100644 index 34d9f1eef..000000000 --- a/src/main/java/simpaths/data/filters/FemalesWithChildrenAgeGroupEducationCSfilter.java +++ /dev/null @@ -1,33 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Indicator; - -public class FemalesWithChildrenAgeGroupEducationCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - private Education edu; - - public FemalesWithChildrenAgeGroupEducationCSfilter(int ageFrom, int ageTo, Education edu) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.edu = edu; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Female) && - (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && - ( person.getBenefitUnit().getIndicatorChildren(0,3).equals(Indicator.True) || - person.getBenefitUnit().getIndicatorChildren(4,12).equals(Indicator.True) ) && - (person.getDeh_c4().equals(edu)) - ); - } - -} - diff --git a/src/main/java/simpaths/data/filters/FemalesWithChildrenByChildAgeCSfilter.java b/src/main/java/simpaths/data/filters/FemalesWithChildrenByChildAgeCSfilter.java deleted file mode 100644 index 43675b540..000000000 --- a/src/main/java/simpaths/data/filters/FemalesWithChildrenByChildAgeCSfilter.java +++ /dev/null @@ -1,72 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import microsim.statistics.ICollectionFilter; - -import java.util.Arrays; -import java.util.Set; - -public class FemalesWithChildrenByChildAgeCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - - public FemalesWithChildrenByChildAgeCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - - - public boolean isFiltered(Object object) { - Person person = (Person) object; - -// int minAge = 99; -// int maxAge = -1; - - Set childrenInBU = person.getBenefitUnit().getChildren(); - int[] ages = new int[childrenInBU.size()]; - if (childrenInBU != null) { - int arrayPosition = 0; - for (Person child : childrenInBU) { - ages[arrayPosition] = child.getDemAge(); - } - } - - int minAge = -1; - int maxAge = 99; - - if (ages.length > 0) { - minAge = Arrays.stream(ages).min().getAsInt(); - maxAge = Arrays.stream(ages).max().getAsInt(); - } - - -/* - Set childrenInBU = person.getBenefitUnit().getChildren(); - if (childrenInBU != null) { - for (Person child : childrenInBU) { - int age = child.getDemAge(); - if (age < minAge) { - minAge = age; - } - if (age > maxAge) { - maxAge = age; - } - } - } else { - minAge = -1; - maxAge = 99; - } -*/ - - return ( person.getDemMaleFlag().equals(Gender.Female) && - person.getDemAge() >= 20 && person.getDemAge() <= 65 && - (minAge >= ageFrom && maxAge <= ageTo) - ); - } - -} - diff --git a/src/main/java/simpaths/data/filters/FemalesWithoutChildrenAgeGroupCSfilter.java b/src/main/java/simpaths/data/filters/FemalesWithoutChildrenAgeGroupCSfilter.java deleted file mode 100644 index 70d024757..000000000 --- a/src/main/java/simpaths/data/filters/FemalesWithoutChildrenAgeGroupCSfilter.java +++ /dev/null @@ -1,29 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Indicator; - -public class FemalesWithoutChildrenAgeGroupCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - - public FemalesWithoutChildrenAgeGroupCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Female) && - (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && - !( person.getBenefitUnit().getIndicatorChildren(0,3).equals(Indicator.True) || - person.getBenefitUnit().getIndicatorChildren(4,12).equals(Indicator.True) || - person.getBenefitUnit().getIndicatorChildren(13,17).equals(Indicator.True) ) - ); - } -} - diff --git a/src/main/java/simpaths/data/filters/FertileFilter.java b/src/main/java/simpaths/data/filters/FertileFilter.java deleted file mode 100644 index e9a48bcbb..000000000 --- a/src/main/java/simpaths/data/filters/FertileFilter.java +++ /dev/null @@ -1,34 +0,0 @@ -package simpaths.data.filters; - -import org.apache.commons.collections4.Predicate; - -import simpaths.data.Parameters; -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Region; - -public class FertileFilter implements Predicate { - - private Region demRgn = null; - - public FertileFilter() {} - public FertileFilter(Region demRgn) { - super(); - this.demRgn = demRgn; - } - - @Override - public boolean evaluate(T agent) { - - int age = agent.getDemAge(); - boolean fertile = false; - if ( (agent.getDemMaleFlag().equals(Gender.Female)) && - ( demRgn ==null || agent.getRegion().equals(demRgn)) && -// ( !agent.getLes_c3().equals(Les_c4.Student) || agent.isToLeaveSchool() ) && //2 processes for fertility, for those in and out of education - specified in alignment - ( age >= Parameters.MIN_AGE_MATERNITY ) && - ( age <= Parameters.MAX_AGE_MATERNITY ) && - ( ( agent.getPartner() != null) || (Parameters.FLAG_SINGLE_MOTHERS) ) ) - fertile = true; - return fertile; - } -} diff --git a/src/main/java/simpaths/data/filters/Filters.java b/src/main/java/simpaths/data/filters/Filters.java new file mode 100644 index 000000000..ddfaa646e --- /dev/null +++ b/src/main/java/simpaths/data/filters/Filters.java @@ -0,0 +1,130 @@ +package simpaths.data.filters; + +import java.util.function.Predicate; + +import simpaths.data.Parameters; +import simpaths.model.Person; +import simpaths.model.enums.Education; +import simpaths.model.enums.Gender; +import simpaths.model.enums.Indicator; +import simpaths.model.enums.Les_c4; +import simpaths.model.enums.Region; + +/// Collection of [Person] filters. +public class Filters { + private Filters() { + } + + /// Filter the requested gender. + public static Predicate gender(Gender gender) { + return p -> p.getDemMaleFlag() == gender; + } + + /// Filter male persons. + public static Predicate male() { + return gender(Gender.Male); + } + + /// Filter female persons. + public static Predicate female() { + return gender(Gender.Female); + } + + /// Filter persons strictly younger than given age. + public static Predicate youngerStrict(int age) { + return p -> p.getDemAge() < age; + } + + /// Filter persons younger than given age, that age included. + public static Predicate youngerOr(int age) { + return p -> p.getDemAge() <= age; + } + + /// Filter persons older than given age, that age included. + public static Predicate olderOr(int age) { + return p -> p.getDemAge() >= age; + } + + /// Filter given age range (both ends are included). + public static Predicate ageRange(int from, int to) { + return p -> p.getDemAge() >= from && p.getDemAge() <= to; + } + + /// Filter persons with at least one child in the given age range (both + /// ends included). + public static Predicate hasChildInAgeRange(int from, int to) { + return p -> p.getBenefitUnit().getIndicatorChildren(from, to) == Indicator.True; + } + + /// Filter children (i.e. strictly younger than + /// [Parameters#AGE_TO_BECOME_RESPONSIBLE]). + public static Predicate child() { + return youngerStrict(Parameters.AGE_TO_BECOME_RESPONSIBLE); + } + + /// Filter by region. + public static Predicate region(Region region) { + return p -> p.getRegion() == region; + } + + /// Filter by education. + public static Predicate education(Education education) { + return p -> p.getEduHighestC4() == education; + } + + /// Filter by employment status. + public static Predicate employment(Les_c4 status) { + return p -> p.getLabC4() == status; + } + + /// Filter by employment history. + public static Predicate employmentHistory(Les_c4 employmentLag1) { + return p -> p.getLabC4L1() == employmentLag1; + } + + /// Filter persons without a partner. + public static Predicate single() { + return p -> p.getPartner() == null; + } + + /// Filter women susceptible to becoming pregnant. + public static Predicate fertile() { + var filter = Filters.female() + .and(Filters.ageRange(Parameters.MIN_AGE_MATERNITY, Parameters.MAX_AGE_MATERNITY)); + if (!Parameters.FLAG_SINGLE_MOTHERS) { + filter = filter.and(Filters.single().negate()); + } + return filter; + } + + /// Filter persons with a non-negative disposable income. + public static Predicate validIncome() { + return p -> p.getBenefitUnit().getEquivalisedDisposableIncomeYearly() >= 0.0; + } + + /// Filter persons by minimum yearly gross earnings (included). + public static Predicate grossEarningsYearlyAtLeast(double value) { + return p -> p.getGrossEarningsYearly() >= value; + } + + /// Filter persons with long term disability. + public static Predicate hasLongTermDisability() { + return p -> p.getHealthDsblLongtermFlag() == Indicator.True; + } + + /// Filter persons who are "flexible in labour supply". + /// + /// The conditions are the following: + /// - of working age + /// - not a student nor retired + /// - not disabled + public static Predicate flexibleLabourSupply() { + var toExclude = Filters + .employment(Les_c4.Student) + .or(Filters.employment(Les_c4.Retired)) + .or(Filters.hasLongTermDisability()); + return Filters + .ageRange(Parameters.MIN_AGE_FLEXIBLE_LABOUR_SUPPLY, Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY) + .and(toExclude.negate()); + } +} diff --git a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByAgeAndGenderFilter.java b/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByAgeAndGenderFilter.java deleted file mode 100644 index 0ce0f34ad..000000000 --- a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByAgeAndGenderFilter.java +++ /dev/null @@ -1,41 +0,0 @@ -package simpaths.data.filters; - -import simpaths.data.Parameters; -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Indicator; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -public class FlexibleInLabourSupplyByAgeAndGenderFilter implements ICollectionFilter { - - private int ageFrom; - private int ageTo; - private Gender demSex; - - public FlexibleInLabourSupplyByAgeAndGenderFilter(int ageFrom, int ageTo, Gender demSex) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.demSex = demSex; - } - - - @Override - public boolean isFiltered(Object o) { - Person person = (Person) o; - - /* - Person "flexible in labour supply" must meet the following conditions: - age >= 16 and <= 75 - not a student or retired - not disabled - */ - - return (person.getDemAge() >= Parameters.MIN_AGE_FLEXIBLE_LABOUR_SUPPLY && person.getDemAge() <= Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY && - person.getDemAge() >= ageFrom && person.getDemAge() <= ageTo && - person.getDemMaleFlag().equals(demSex) && - person.getLes_c4() != Les_c4.Student && person.getLes_c4() != Les_c4.Retired && - person.getDlltsd() != Indicator.True); - } -} diff --git a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByEducationFilter.java b/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByEducationFilter.java deleted file mode 100644 index d6c1327ab..000000000 --- a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyByEducationFilter.java +++ /dev/null @@ -1,35 +0,0 @@ -package simpaths.data.filters; - -import simpaths.data.Parameters; -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Indicator; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -public class FlexibleInLabourSupplyByEducationFilter implements ICollectionFilter { - - private Education education; - - public FlexibleInLabourSupplyByEducationFilter(Education education) { - super(); - this.education = education; - } - - @Override - public boolean isFiltered(Object o) { - Person person = (Person) o; - - /* - Person "flexible in labour supply" must meet the following conditions: - age >= 16 and <= 75 - not a student or retired - not disabled - */ - - return (person.getDemAge() >= Parameters.MIN_AGE_FLEXIBLE_LABOUR_SUPPLY && person.getDemAge() <= Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY && - person.getLes_c4() != Les_c4.Student && person.getLes_c4() != Les_c4.Retired && - person.getDlltsd() != Indicator.True && - person.getDeh_c4().equals(education)); - } -} diff --git a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyFilter.java b/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyFilter.java deleted file mode 100644 index 153737df5..000000000 --- a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyFilter.java +++ /dev/null @@ -1,30 +0,0 @@ -package simpaths.data.filters; - -import simpaths.data.Parameters; -import simpaths.model.Person; -import simpaths.model.enums.Indicator; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -public class FlexibleInLabourSupplyFilter implements ICollectionFilter { - - public FlexibleInLabourSupplyFilter() { - super(); - } - - @Override - public boolean isFiltered(Object o) { - Person person = (Person) o; - - /* - Person "flexible in labour supply" must meet the following conditions: - age >= 16 and <= 75 - not a student or retired - not disabled - */ - - return (person.getDemAge() >= Parameters.MIN_AGE_FLEXIBLE_LABOUR_SUPPLY && person.getDemAge() <= Parameters.MAX_AGE_FLEXIBLE_LABOUR_SUPPLY && - person.getLes_c4() != Les_c4.Student && person.getLes_c4() != Les_c4.Retired && - person.getDlltsd() != Indicator.True); - } -} diff --git a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyPersonFilter.java b/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyPersonFilter.java deleted file mode 100644 index ffdb2325c..000000000 --- a/src/main/java/simpaths/data/filters/FlexibleInLabourSupplyPersonFilter.java +++ /dev/null @@ -1,25 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Indicator; -import simpaths.model.enums.Les_c4; -import org.apache.commons.collections4.Predicate; - -public class FlexibleInLabourSupplyPersonFilter implements Predicate { - - - public FlexibleInLabourSupplyPersonFilter() { - super(); - } - - @Override - public boolean evaluate(T person) { - - - return (person.getDemAge() >= 18 && person.getDemAge() <= 64 && - person.getLes_c4() != Les_c4.Student && person.getLes_c4() != Les_c4.Retired && - person.getDlltsd() != Indicator.True); - } - - -} diff --git a/src/main/java/simpaths/data/filters/GenderCSfilter.java b/src/main/java/simpaths/data/filters/GenderCSfilter.java deleted file mode 100644 index 7d9a2f427..000000000 --- a/src/main/java/simpaths/data/filters/GenderCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; - -public class GenderCSfilter implements ICollectionFilter{ - private final Gender demSex; - - public GenderCSfilter(Gender demSex) { - super(); - this.demSex = demSex; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return (person.getDemMaleFlag().equals(demSex)); - } - - public Gender getGender() { - return demSex; - } - -} diff --git a/src/main/java/simpaths/data/filters/GenderEducationCSfilter.java b/src/main/java/simpaths/data/filters/GenderEducationCSfilter.java deleted file mode 100644 index c2ec1d24a..000000000 --- a/src/main/java/simpaths/data/filters/GenderEducationCSfilter.java +++ /dev/null @@ -1,26 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Gender; -import microsim.statistics.ICollectionFilter; - -public class GenderEducationCSfilter implements ICollectionFilter{ - - private Gender demSex; - private Education education; - - public GenderEducationCSfilter(Gender demSex, Education education) { - super(); - this.demSex = demSex; - this.education = education; - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return (person.getDemMaleFlag().equals(demSex) && person.getDeh_c4().equals(education) && person.getGrossEarningsYearly() >= 0.); - } - else throw new IllegalArgumentException("Object passed to GenderEducationWorkingCSfilter must be of type Person!"); - } -} diff --git a/src/main/java/simpaths/data/filters/GenderEducationWorkingCSfilter.java b/src/main/java/simpaths/data/filters/GenderEducationWorkingCSfilter.java deleted file mode 100644 index 067359d78..000000000 --- a/src/main/java/simpaths/data/filters/GenderEducationWorkingCSfilter.java +++ /dev/null @@ -1,31 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -public class GenderEducationWorkingCSfilter implements ICollectionFilter{ - - private Gender demSex; - private Education education; - - public GenderEducationWorkingCSfilter(Gender demSex, Education education) { - super(); - this.demSex = demSex; - this.education = education; - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return (person.getDemMaleFlag().equals(demSex) && - person.getDeh_c4().equals(education) && - person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed) && - person.getGrossEarningsYearly() >= 1. && - person.getLabourSupplyHoursWeekly() > 0); - } - else throw new IllegalArgumentException("Object passed to GenderEducationWorkingCSfilter must be of type Person!"); - } -} diff --git a/src/main/java/simpaths/data/filters/GenderWorkingCSfilter.java b/src/main/java/simpaths/data/filters/GenderWorkingCSfilter.java deleted file mode 100644 index 4121a1cd3..000000000 --- a/src/main/java/simpaths/data/filters/GenderWorkingCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -public class GenderWorkingCSfilter implements ICollectionFilter{ - - private Gender demSex; - - public GenderWorkingCSfilter(Gender demSex) { - super(); - this.demSex = demSex; - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return (person.getDemMaleFlag().equals(demSex) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed) && person.getGrossEarningsYearly() >= 0.); - } - else throw new IllegalArgumentException("Object passed to GenderEducationWorkingCSfilter must be of type Person!"); - } -} diff --git a/src/main/java/simpaths/data/filters/MaleAgeGroupCSfilter.java b/src/main/java/simpaths/data/filters/MaleAgeGroupCSfilter.java deleted file mode 100644 index b7145fe3c..000000000 --- a/src/main/java/simpaths/data/filters/MaleAgeGroupCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; - -public class MaleAgeGroupCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - - public MaleAgeGroupCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Male) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) ); - } - -} - diff --git a/src/main/java/simpaths/data/filters/MaleAgeGroupEducationCSfilter.java b/src/main/java/simpaths/data/filters/MaleAgeGroupEducationCSfilter.java deleted file mode 100644 index e5886e19d..000000000 --- a/src/main/java/simpaths/data/filters/MaleAgeGroupEducationCSfilter.java +++ /dev/null @@ -1,27 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Gender; -import microsim.statistics.ICollectionFilter; - -public class MaleAgeGroupEducationCSfilter implements ICollectionFilter{ - - private int ageFrom; - private int ageTo; - private Education education; - - public MaleAgeGroupEducationCSfilter(int ageFrom, int ageTo, Education education) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - this.education = education; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( person.getDemMaleFlag().equals(Gender.Male) && (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && person.getDeh_c4().equals(education) ); - } - -} - diff --git a/src/main/java/simpaths/data/filters/MaleRegionAgeCSfilter.java b/src/main/java/simpaths/data/filters/MaleRegionAgeCSfilter.java deleted file mode 100644 index 0aacaf949..000000000 --- a/src/main/java/simpaths/data/filters/MaleRegionAgeCSfilter.java +++ /dev/null @@ -1,26 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Region; -import microsim.statistics.ICollectionFilter; - -public class MaleRegionAgeCSfilter implements ICollectionFilter{ - - private Region demRgn; - private int ageFrom; - private int ageTo; - - public MaleRegionAgeCSfilter(Region demRgn, int ageFrom, int ageTo) { - super(); - this.demRgn = demRgn; - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return person.getRegion().equals(demRgn) && person.getDemMaleFlag().equals(Gender.Male) && person.getDemAge() >= ageFrom && person.getDemAge() <= ageTo; - } - -} diff --git a/src/main/java/simpaths/data/filters/MaleRegionCSfilter.java b/src/main/java/simpaths/data/filters/MaleRegionCSfilter.java deleted file mode 100644 index 7e76698dd..000000000 --- a/src/main/java/simpaths/data/filters/MaleRegionCSfilter.java +++ /dev/null @@ -1,23 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Gender; -import simpaths.model.enums.Region; - -public class MaleRegionCSfilter implements ICollectionFilter{ - - private Region demRgn; - - public MaleRegionCSfilter(Region demRgn) { - super(); - this.demRgn = demRgn; - - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return person.getRegion().equals(demRgn) && person.getDemMaleFlag().equals(Gender.Male); - } - -} diff --git a/src/main/java/simpaths/data/filters/RegionCSfilter.java b/src/main/java/simpaths/data/filters/RegionCSfilter.java deleted file mode 100644 index c986dea4a..000000000 --- a/src/main/java/simpaths/data/filters/RegionCSfilter.java +++ /dev/null @@ -1,30 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.BenefitUnit; -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Region; - -public class RegionCSfilter implements ICollectionFilter{ - - private Region demRgn; - - public RegionCSfilter(Region demRgn) { - super(); - this.demRgn = demRgn; - - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return person.getRegion().equals(demRgn); - } - else if(object instanceof BenefitUnit) { - BenefitUnit benefitUnit = (BenefitUnit) object; - return benefitUnit.getRegion().equals(demRgn); - } - else throw new IllegalArgumentException("Object passed to RegionCSfilter must be of type Person or BenefitUnit!"); - } - -} diff --git a/src/main/java/simpaths/data/filters/RegionEducationAtRiskOfWorkCSfilter.java b/src/main/java/simpaths/data/filters/RegionEducationAtRiskOfWorkCSfilter.java deleted file mode 100644 index f6256d7cd..000000000 --- a/src/main/java/simpaths/data/filters/RegionEducationAtRiskOfWorkCSfilter.java +++ /dev/null @@ -1,26 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Region; - -public class RegionEducationAtRiskOfWorkCSfilter implements ICollectionFilter{ - - private Region demRgn; - private Education education; - - public RegionEducationAtRiskOfWorkCSfilter(Region demRgn, Education education) { - super(); - this.demRgn = demRgn; - this.education = education; - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return (person.getRegion().equals(demRgn) && person.getDeh_c4().equals(education) && person.atRiskOfWork()); - } - else throw new IllegalArgumentException("Object passed to RegionEducationCSfilter must be of type Person!"); - } -} diff --git a/src/main/java/simpaths/data/filters/RegionEducationCSfilter.java b/src/main/java/simpaths/data/filters/RegionEducationCSfilter.java deleted file mode 100644 index 131b1855d..000000000 --- a/src/main/java/simpaths/data/filters/RegionEducationCSfilter.java +++ /dev/null @@ -1,26 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Region; - -public class RegionEducationCSfilter implements ICollectionFilter{ - - private Region demRgn; - private Education education; - - public RegionEducationCSfilter(Region demRgn, Education education) { - super(); - this.demRgn = demRgn; - this.education = education; - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return (person.getRegion().equals(demRgn) && person.getDeh_c4().equals(education)); - } - else throw new IllegalArgumentException("Object passed to RegionEducationCSfilter must be of type Person!"); - } -} diff --git a/src/main/java/simpaths/data/filters/RegionEducationWorkingCSfilter.java b/src/main/java/simpaths/data/filters/RegionEducationWorkingCSfilter.java deleted file mode 100644 index ca0090178..000000000 --- a/src/main/java/simpaths/data/filters/RegionEducationWorkingCSfilter.java +++ /dev/null @@ -1,27 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; -import simpaths.model.enums.Education; -import simpaths.model.enums.Region; - -public class RegionEducationWorkingCSfilter implements ICollectionFilter{ - - private Region demRgn; - private Education education; - - public RegionEducationWorkingCSfilter(Region demRgn, Education education) { - super(); - this.demRgn = demRgn; - this.education = education; - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return (person.getRegion().equals(demRgn) && person.getDeh_c4().equals(education) && person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed) && person.getGrossEarningsYearly() >= 0.); - } - else throw new IllegalArgumentException("Object passed to RegionEducationWorkingCSfilter must be of type Person!"); - } -} diff --git a/src/main/java/simpaths/data/filters/ValidEducationAgeGroupCSfilter.java b/src/main/java/simpaths/data/filters/ValidEducationAgeGroupCSfilter.java deleted file mode 100644 index 31d2d26ad..000000000 --- a/src/main/java/simpaths/data/filters/ValidEducationAgeGroupCSfilter.java +++ /dev/null @@ -1,36 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.Person; -import simpaths.model.enums.Les_c4; -import microsim.statistics.ICollectionFilter; - -/* -This filter is like an age group filter, but only selects individuals who are not Students - - */ - -public class ValidEducationAgeGroupCSfilter implements ICollectionFilter{ - - private final int ageFrom; - private final int ageTo; - - public ValidEducationAgeGroupCSfilter(int ageFrom, int ageTo) { - super(); - this.ageFrom = ageFrom; - this.ageTo = ageTo; - } - - public boolean isFiltered(Object object) { - Person person = (Person) object; - return ( (person.getDemAge() >= ageFrom) && (person.getDemAge() <= ageTo) && !person.getLes_c4().equals(Les_c4.Student)); - } - - public int getAgeFrom() { - return ageFrom; - } - - public int getAgeTo() { - return ageTo; - } - -} diff --git a/src/main/java/simpaths/data/filters/ValidEducationRegionCSfilter.java b/src/main/java/simpaths/data/filters/ValidEducationRegionCSfilter.java deleted file mode 100644 index 20bee7491..000000000 --- a/src/main/java/simpaths/data/filters/ValidEducationRegionCSfilter.java +++ /dev/null @@ -1,36 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.BenefitUnit; -import simpaths.model.Person; -import simpaths.model.enums.Les_c4; -import simpaths.model.enums.Region; -import microsim.statistics.ICollectionFilter; - -/* -For individuals who have completed education and had education level assigned (i.e. excludes students) - - */ - -public class ValidEducationRegionCSfilter implements ICollectionFilter{ - - private Region demRgn; - - public ValidEducationRegionCSfilter(Region demRgn) { - super(); - this.demRgn = demRgn; - - } - - public boolean isFiltered(Object object) { - if(object instanceof Person) { - Person person = (Person) object; - return (person.getRegion().equals(demRgn) && !person.getLes_c4().equals(Les_c4.Student) && person.getDemAge() >= 18 && person.getDeh_c4() != null); - } - else if(object instanceof BenefitUnit) { - BenefitUnit benefitUnit = (BenefitUnit) object; - return benefitUnit.getRegion().equals(demRgn); - } - else throw new IllegalArgumentException("Object passed to RegionCSfilter must be of type Person or BenefitUnit!"); - } - -} diff --git a/src/main/java/simpaths/data/filters/ValidHomeownersCSfilter.java b/src/main/java/simpaths/data/filters/ValidHomeownersCSfilter.java deleted file mode 100644 index 3b404f556..000000000 --- a/src/main/java/simpaths/data/filters/ValidHomeownersCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import simpaths.data.Parameters; -import simpaths.model.BenefitUnit; -import simpaths.model.enums.Occupancy; -import microsim.statistics.ICollectionFilter; - -public class ValidHomeownersCSfilter implements ICollectionFilter { - - public boolean isFiltered(Object object) { - BenefitUnit benefitUnit = (BenefitUnit) object; - - boolean returnValue = false; - - if (benefitUnit.getOccupancy().equals(Occupancy.Couple)) { - returnValue = (benefitUnit.getMale().getDemAge() >= Parameters.AGE_TO_BECOME_RESPONSIBLE && benefitUnit.getFemale().getDemAge() >= Parameters.AGE_TO_BECOME_RESPONSIBLE); - } else if (benefitUnit.getOccupancy().equals(Occupancy.Single_Female)) { - returnValue = (benefitUnit.getFemale().getDemAge() >= Parameters.AGE_TO_BECOME_RESPONSIBLE); - } else if (benefitUnit.getOccupancy().equals(Occupancy.Single_Male)) { - returnValue = (benefitUnit.getMale().getDemAge() >= Parameters.AGE_TO_BECOME_RESPONSIBLE); - } - return returnValue; - } -} diff --git a/src/main/java/simpaths/data/filters/ValidHouseholdIncomeCSfilter.java b/src/main/java/simpaths/data/filters/ValidHouseholdIncomeCSfilter.java deleted file mode 100644 index 493f3cbdb..000000000 --- a/src/main/java/simpaths/data/filters/ValidHouseholdIncomeCSfilter.java +++ /dev/null @@ -1,14 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.BenefitUnit; -import microsim.statistics.ICollectionFilter; - -public class ValidHouseholdIncomeCSfilter implements ICollectionFilter{ - - public boolean isFiltered(Object object) { - BenefitUnit house = (BenefitUnit) object; -// return (house.getAtRiskOfPoverty() != null); - return (house.getEquivalisedDisposableIncomeYearly() >= 0. && house.getEquivalisedDisposableIncomeYearly() < 1000000.); //Removes cases where gross earnings are not valid (i.e. are null, or negative) - } - -} diff --git a/src/main/java/simpaths/data/filters/ValidHouseholdIncomeRegionalCSfilter.java b/src/main/java/simpaths/data/filters/ValidHouseholdIncomeRegionalCSfilter.java deleted file mode 100644 index bac3e3731..000000000 --- a/src/main/java/simpaths/data/filters/ValidHouseholdIncomeRegionalCSfilter.java +++ /dev/null @@ -1,24 +0,0 @@ -package simpaths.data.filters; - -import simpaths.model.BenefitUnit; -import microsim.statistics.ICollectionFilter; -import simpaths.model.enums.Region; - -public class ValidHouseholdIncomeRegionalCSfilter implements ICollectionFilter{ - - private Region demRgn; - - public ValidHouseholdIncomeRegionalCSfilter(Region demRgn) { - super(); - this.demRgn = demRgn; - - } - - public boolean isFiltered(Object object) { - BenefitUnit house = (BenefitUnit) object; -// return (house.getRegion().equals(region) && house.getAtRiskOfPoverty() != null); - return (house.getRegion().equals(demRgn) - && house.getEquivalisedDisposableIncomeYearly() >= 0.); //Removes cases where gross earnings are not valid (i.e. are null, or negative) - } - -} diff --git a/src/main/java/simpaths/data/filters/ValidPersonEarningsCSfilter.java b/src/main/java/simpaths/data/filters/ValidPersonEarningsCSfilter.java deleted file mode 100644 index ca2ee3bba..000000000 --- a/src/main/java/simpaths/data/filters/ValidPersonEarningsCSfilter.java +++ /dev/null @@ -1,14 +0,0 @@ -package simpaths.data.filters; - -import microsim.statistics.ICollectionFilter; -import simpaths.model.Person; - -public class ValidPersonEarningsCSfilter implements ICollectionFilter{ - - public boolean isFiltered(Object object) { - Person person = (Person) object; -// return (person.getAtRiskOfPoverty() != null); - return (person.getGrossEarningsYearly() >= 0.); //Removes cases where gross earnings are not valid (i.e. are null, or negative) - } - -} diff --git a/src/main/java/simpaths/data/startingpop/DataParser.java b/src/main/java/simpaths/data/startingpop/DataParser.java index af0a16ba6..eeb3b306c 100644 --- a/src/main/java/simpaths/data/startingpop/DataParser.java +++ b/src/main/java/simpaths/data/startingpop/DataParser.java @@ -224,11 +224,6 @@ private static void parse(String inputFileLocation, String inputFileName, Connec + "ALTER TABLE " + personTable + " DROP COLUMN yFinDstrssFlag;" + "ALTER TABLE " + personTable + " ALTER COLUMN financial_distress_add RENAME TO yFinDstrssFlag;" - //Social care - + "ALTER TABLE " + personTable + " ADD careProvidedFlag VARCHAR_IGNORECASE;" - + "UPDATE " + personTable + " SET careProvidedFlag = 'None' WHERE careHrsProvidedWeek <= 0 OR careHrsProvidedWeek IS NULL;" - + "UPDATE " + personTable + " SET careProvidedFlag = 'OnlyOther' WHERE careHrsProvidedWeek > 0;" - //SYSTEM : Year + "ALTER TABLE " + personTable + " ALTER COLUMN statInterviewYear RENAME TO system_year;" diff --git a/src/main/java/simpaths/data/statistics/AgeBandAggregates.java b/src/main/java/simpaths/data/statistics/AgeBandAggregates.java new file mode 100644 index 000000000..16f2bdaaa --- /dev/null +++ b/src/main/java/simpaths/data/statistics/AgeBandAggregates.java @@ -0,0 +1,131 @@ +package simpaths.data.statistics; + +import java.util.Collection; +import java.util.function.Supplier; + +import simpaths.data.Parameters; +import simpaths.model.Person; +import simpaths.model.SimPathsModel; +import simpaths.model.enums.Indicator; + +/** + * + * POPULATION AGGREGATES BY AGE BAND, SHARED BY THE ANNUAL STATISTICS OUTPUTS + * + * Bands are indexed 0 = 18-29, 1 = 30-54, 2 = 55-74. + * + * WealthIncomeStatistics, DemographicStatistics, LabourStatistics and HealthStatistics each report a + * subset of these aggregates. Computing them together keeps a single traversal of the + * population per simulated year, and a single definition of each statistic, whichever + * of those four outputs happen to be enabled. + * + */ +public class AgeBandAggregates { + + public final double[] prMarr = {0.,0.,0.}; // share cohabiting + public final double[] avkids = {0.,0.,0.}; // average dependent children + public final double[] health = {0.,0.,0.}; // average self-rated health + public final double[] prDisa = {0.,0.,0.}; // share with long-term disability + public final double[] workFT = {0.,0.,0.}; // share in full-time work + public final double[] workPT = {0.,0.,0.}; // share in part-time work + public final double[] labInc = {0.,0.,0.}; // weekly earnings per worker + public final double[] invInc = {0.,0.,0.}; // monthly equivalised investment income + public final double[] invLosses = {0.,0.,0.}; // monthly equivalised investment losses + public final double[] penInc = {0.,0.,0.}; // monthly equivalised pension income + public final double[] grossDisInc = {0.,0.,0.}; // monthly equivalised disposable income gross of investment losses + public final double[] wealth = {0.,0.,0.}; // equivalised total wealth + public final double[] popula = {0.,0.,0.}; // population count + + private AgeBandAggregates() {} + + /// Compute the age-band aggregates with an arbitrary [Supplier]. + /// This is intended for testing. + public static AgeBandAggregates computeWithSupplier(Supplier> supplier) { + var persons = supplier.get(); + AgeBandAggregates agg = new AgeBandAggregates(); + + double[] prMarr = agg.prMarr; + double[] avkids = agg.avkids; + double[] health = agg.health; + double[] prDisa = agg.prDisa; + double[] workFT = agg.workFT; + double[] workPT = agg.workPT; + double[] labInc = agg.labInc; + double[] invInc = agg.invInc; + double[] invLosses = agg.invLosses; + double[] penInc = agg.penInc; + double[] grossDisInc = agg.grossDisInc; + double[] wealth = agg.wealth; + double[] popula = agg.popula; + for (var person : persons) { + // loop over entire population + + int ii = -1; + if (person.getDemAge()>=18 && person.getDemAge()<=29) { + ii = 0; + } else if (person.getDemAge()>=30 && person.getDemAge()<=54) { + ii = 1; + } else if (person.getDemAge()>=55 && person.getDemAge()<=74) { + ii = 2; + } + if (ii>=0) { + + double es = person.getBenefitUnit().getEquivalisedWeight(); + + prMarr[ii] += person.getCohabiting(); + avkids[ii] += person.getBenefitUnit().getNumberChildrenAll(); + health[ii] += person.getHealthSelfRatedValue(); + prDisa[ii] += (Indicator.True.equals(person.getHealthDsblLongtermFlag()))? 1.0: 0.0; + labInc[ii] += person.getEarningsWeekly(); + if ((double)person.getLabourSupplyHoursWeekly() > Parameters.MIN_HOURS_FULL_TIME_EMPLOYED) + workFT[ii] += 1.0; + else if ((double)person.getLabourSupplyHoursWeekly() > 1.0) + workPT[ii] += 1.0; + + invInc[ii] += person.getBenefitUnit().getInvestmentIncomeAnnual() / 12.0 / es; + penInc[ii] += person.getBenefitUnit().getPensionIncomeAnnual() / 12.0 / es; + if (person.getBenefitUnit().getInvestmentIncomeAnnual()<0.0) { + invLosses[ii] += person.getBenefitUnit().getInvestmentIncomeAnnual() / 12.0 / es; + grossDisInc[ii] += (person.getBenefitUnit().getDisposableIncomeMonthlyNoNull() - + person.getBenefitUnit().getInvestmentIncomeAnnual() / 12.0) / es; + } else { + grossDisInc[ii] += person.getBenefitUnit().getDisposableIncomeMonthlyNoNull() / es; + } + wealth[ii] += person.getBenefitUnit().getWealthTotValue(false) / es; + popula[ii] += 1.0; + } + } + for (int ii=0; ii<=2; ii++) { + + // guard both denominators: an empty age band, or a band with no workers, would + // otherwise divide by zero and put NaN into the output + if (workFT[ii] + workPT[ii] > 0.0) + labInc[ii] /= (workFT[ii] + workPT[ii]); + + if (popula[ii]>0) { + + prMarr[ii] /= popula[ii]; + avkids[ii] /= popula[ii]; + health[ii] /= popula[ii]; + prDisa[ii] /= popula[ii]; + workFT[ii] /= popula[ii]; + workPT[ii] /= popula[ii]; + invInc[ii] /= popula[ii]; + penInc[ii] /= popula[ii]; + invLosses[ii] /= popula[ii]; + grossDisInc[ii] /= popula[ii]; + wealth[ii] /= popula[ii]; + } + } + + return agg; + } + + /// Traverse the population and evaluate all age-band aggregates. + /// + /// @param model the simulation manager holding the population + /// @return the evaluated aggregates + public static AgeBandAggregates compute(SimPathsModel model) { + return AgeBandAggregates.computeWithSupplier(model::getPersons); + } +} diff --git a/src/main/java/simpaths/data/statistics/AlignmentStatistics.java b/src/main/java/simpaths/data/statistics/AlignmentStatistics.java new file mode 100644 index 000000000..fdeff4166 --- /dev/null +++ b/src/main/java/simpaths/data/statistics/AlignmentStatistics.java @@ -0,0 +1,346 @@ +package simpaths.data.statistics; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import microsim.data.db.PanelEntityKey; +import simpaths.data.Parameters; +import simpaths.data.filters.Filters; +import simpaths.model.BenefitUnit; +import simpaths.model.Person; +import simpaths.model.SimPathsModel; +import simpaths.model.enums.*; + +/** + * + * CLASS TO REPORT ALIGNMENT ADJUSTMENT FACTORS AND SIMULATED VS TARGET SHARES + * + * Covers: partnership, fertility, in-school, utility adjustment factors, and + * employment shares by occupancy type. Disability and retirement are excluded. + * + */ +@Entity +public class AlignmentStatistics { + + @Id + private PanelEntityKey key = new PanelEntityKey(1L); + + // ------------------------------------------------------------------ + // Partnership + // ------------------------------------------------------------------ + @Column(name = "align_partner_adj") + private double alignPartnerAdj; + + @Column(name = "align_partner_sim_share") + private double alignPartnerSimShare; + + @Column(name = "align_partner_tgt_share") + private double alignPartnerTgtShare; + + // ------------------------------------------------------------------ + // Fertility + // ------------------------------------------------------------------ + @Column(name = "align_fert_adj") + private double alignFertAdj; + + @Column(name = "align_fert_rate_sim") + private double alignFertRateSim; + + @Column(name = "align_fert_rate_tgt") + private double alignFertRateTgt; + + // ------------------------------------------------------------------ + // In-school + // ------------------------------------------------------------------ + @Column(name = "align_in_school_adj") + private double alignInSchoolAdj; + + @Column(name = "align_in_school_sim_share") + private double alignInSchoolSimShare; + + @Column(name = "align_in_school_tgt_share") + private double alignInSchoolTgtShare; + + // ------------------------------------------------------------------ + // Utility adjustment factors (one per occupancy type) + // ------------------------------------------------------------------ + @Column(name = "align_util_adj_single_m") + private double alignUtilAdjSingleM; + + @Column(name = "align_util_adj_ac_m") + private double alignUtilAdjACM; + + @Column(name = "align_util_adj_single_f") + private double alignUtilAdjSingleF; + + @Column(name = "align_util_adj_ac_f") + private double alignUtilAdjACF; + + @Column(name = "align_util_adj_couple") + private double alignUtilAdjCouple; + + @Column(name = "align_util_adj_m_with_dep") + private double alignUtilAdjMWithDep; + + @Column(name = "align_util_adj_f_with_dep") + private double alignUtilAdjFWithDep; + + // ------------------------------------------------------------------ + // Employment shares — simulated + // ------------------------------------------------------------------ + @Column(name = "align_emp_sim_single_m_share") + private double alignEmpSimSingleMShare; + + @Column(name = "align_emp_sim_single_f_share") + private double alignEmpSimSingleFShare; + + @Column(name = "align_emp_sim_ac_m_share") + private double alignEmpSimACMShare; + + @Column(name = "align_emp_sim_ac_f_share") + private double alignEmpSimACFShare; + + @Column(name = "align_emp_sim_couples_share") + private double alignEmpSimCouplesShare; + + @Column(name = "align_emp_sim_m_with_dep_share") + private double alignEmpSimMWithDepShare; + + @Column(name = "align_emp_sim_f_with_dep_share") + private double alignEmpSimFWithDepShare; + + // ------------------------------------------------------------------ + // Employment shares — target + // ------------------------------------------------------------------ + @Column(name = "align_emp_tgt_single_m_share") + private double alignEmpTgtSingleMShare; + + @Column(name = "align_emp_tgt_single_f_share") + private double alignEmpTgtSingleFShare; + + @Column(name = "align_emp_tgt_ac_m_share") + private double alignEmpTgtACMShare; + + @Column(name = "align_emp_tgt_ac_f_share") + private double alignEmpTgtACFShare; + + @Column(name = "align_emp_tgt_couples_share") + private double alignEmpTgtCouplesShare; + + @Column(name = "align_emp_tgt_m_with_dep_share") + private double alignEmpTgtMWithDepShare; + + @Column(name = "align_emp_tgt_f_with_dep_share") + private double alignEmpTgtFWithDepShare; + + + // ------------------------------------------------------------------ + // Getters and setters + // ------------------------------------------------------------------ + + public double getAlignPartnerAdj() { return alignPartnerAdj; } + public void setAlignPartnerAdj(double v) { alignPartnerAdj = v; } + + public double getAlignPartnerSimShare() { return alignPartnerSimShare; } + public void setAlignPartnerSimShare(double v) { alignPartnerSimShare = v; } + + public double getAlignPartnerTgtShare() { return alignPartnerTgtShare; } + public void setAlignPartnerTgtShare(double v) { alignPartnerTgtShare = v; } + + public double getAlignFertAdj() { return alignFertAdj; } + public void setAlignFertAdj(double v) { alignFertAdj = v; } + + public double getAlignFertRateSim() { return alignFertRateSim; } + public void setAlignFertRateSim(double v) { alignFertRateSim = v; } + + public double getAlignFertRateTgt() { return alignFertRateTgt; } + public void setAlignFertRateTgt(double v) { alignFertRateTgt = v; } + + public double getAlignInSchoolAdj() { return alignInSchoolAdj; } + public void setAlignInSchoolAdj(double v) { alignInSchoolAdj = v; } + + public double getAlignInSchoolSimShare() { return alignInSchoolSimShare; } + public void setAlignInSchoolSimShare(double v) { alignInSchoolSimShare = v; } + + public double getAlignInSchoolTgtShare() { return alignInSchoolTgtShare; } + public void setAlignInSchoolTgtShare(double v) { alignInSchoolTgtShare = v; } + + public double getAlignUtilAdjSingleM() { return alignUtilAdjSingleM; } + public void setAlignUtilAdjSingleM(double v) { alignUtilAdjSingleM = v; } + + public double getAlignUtilAdjACM() { return alignUtilAdjACM; } + public void setAlignUtilAdjACM(double v) { alignUtilAdjACM = v; } + + public double getAlignUtilAdjSingleF() { return alignUtilAdjSingleF; } + public void setAlignUtilAdjSingleF(double v) { alignUtilAdjSingleF = v; } + + public double getAlignUtilAdjACF() { return alignUtilAdjACF; } + public void setAlignUtilAdjACF(double v) { alignUtilAdjACF = v; } + + public double getAlignUtilAdjCouple() { return alignUtilAdjCouple; } + public void setAlignUtilAdjCouple(double v) { alignUtilAdjCouple = v; } + + public double getAlignUtilAdjMWithDep() { return alignUtilAdjMWithDep; } + public void setAlignUtilAdjMWithDep(double v) { alignUtilAdjMWithDep = v; } + + public double getAlignUtilAdjFWithDep() { return alignUtilAdjFWithDep; } + public void setAlignUtilAdjFWithDep(double v) { alignUtilAdjFWithDep = v; } + + public double getAlignEmpSimSingleMShare() { return alignEmpSimSingleMShare; } + public void setAlignEmpSimSingleMShare(double v) { alignEmpSimSingleMShare = v; } + + public double getAlignEmpSimSingleFShare() { return alignEmpSimSingleFShare; } + public void setAlignEmpSimSingleFShare(double v) { alignEmpSimSingleFShare = v; } + + public double getAlignEmpSimACMShare() { return alignEmpSimACMShare; } + public void setAlignEmpSimACMShare(double v) { alignEmpSimACMShare = v; } + + public double getAlignEmpSimACFShare() { return alignEmpSimACFShare; } + public void setAlignEmpSimACFShare(double v) { alignEmpSimACFShare = v; } + + public double getAlignEmpSimCouplesShare() { return alignEmpSimCouplesShare; } + public void setAlignEmpSimCouplesShare(double v) { alignEmpSimCouplesShare = v; } + + public double getAlignEmpSimMWithDepShare() { return alignEmpSimMWithDepShare; } + public void setAlignEmpSimMWithDepShare(double v) { alignEmpSimMWithDepShare = v; } + + public double getAlignEmpSimFWithDepShare() { return alignEmpSimFWithDepShare; } + public void setAlignEmpSimFWithDepShare(double v) { alignEmpSimFWithDepShare = v; } + + public double getAlignEmpTgtSingleMShare() { return alignEmpTgtSingleMShare; } + public void setAlignEmpTgtSingleMShare(double v) { alignEmpTgtSingleMShare = v; } + + public double getAlignEmpTgtSingleFShare() { return alignEmpTgtSingleFShare; } + public void setAlignEmpTgtSingleFShare(double v) { alignEmpTgtSingleFShare = v; } + + public double getAlignEmpTgtACMShare() { return alignEmpTgtACMShare; } + public void setAlignEmpTgtACMShare(double v) { alignEmpTgtACMShare = v; } + + public double getAlignEmpTgtACFShare() { return alignEmpTgtACFShare; } + public void setAlignEmpTgtACFShare(double v) { alignEmpTgtACFShare = v; } + + public double getAlignEmpTgtCouplesShare() { return alignEmpTgtCouplesShare; } + public void setAlignEmpTgtCouplesShare(double v) { alignEmpTgtCouplesShare = v; } + + public double getAlignEmpTgtMWithDepShare() { return alignEmpTgtMWithDepShare; } + public void setAlignEmpTgtMWithDepShare(double v) { alignEmpTgtMWithDepShare = v; } + + public double getAlignEmpTgtFWithDepShare() { return alignEmpTgtFWithDepShare; } + public void setAlignEmpTgtFWithDepShare(double v) { alignEmpTgtFWithDepShare = v; } + + + // ------------------------------------------------------------------ + // update() + // ------------------------------------------------------------------ + + public void update(SimPathsModel model) { + + int year = model.getYear() - 1; // year just simulated (consistent with annual collector exports) + + // --- Partnership --- + setAlignPartnerAdj( + Parameters.getTimeSeriesValue(year, TimeSeriesVariable.PartnershipAdjustment) + + model.getPartnershipAdjustment(year)); + long numPersonsCohabEligible = model.getPersons().stream() + .filter(p -> p.getDemAge() >= Parameters.MIN_AGE_COHABITATION) + .count(); + long numPersonsPartnered = model.getPersons().stream() + .filter(p -> Dcpst.Partnered.equals(p.getDemPartnerStatus())) + .count(); + setAlignPartnerSimShare(numPersonsCohabEligible > 0 + ? (double) numPersonsPartnered / numPersonsCohabEligible : 0.0); + setAlignPartnerTgtShare(Parameters.getTargetShare(year, TargetShares.Partnership)); + + // --- Fertility --- + setAlignFertAdj( + Parameters.getTimeSeriesValue(year, TimeSeriesVariable.FertilityAdjustment) + + model.getFertilityAdjustment(year)); + long numFertile = model.getPersons().stream() + .filter(Filters.fertile()) + .count(); + long numBirths = model.getPersons().stream() + .filter(p -> p.getDemAge() < 1) + .count(); + setAlignFertRateSim(numFertile > 0 ? (double) numBirths / numFertile : 0.0); + setAlignFertRateTgt(Parameters.getFertilityRateByYear(year)); + + // --- In-school --- + setAlignInSchoolAdj(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.InSchoolAdjustment)); + long numStudents = model.getPersons().stream() + .filter(p -> p.getDemAge() >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION + && p.getDemAge() <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION + && !p.isToLeaveSchool() + && Les_c4.Student.equals(p.getLabC4())) + .count(); + long numInSchoolAge = model.getPersons().stream() + .filter(p -> p.getDemAge() >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION + && p.getDemAge() <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION + && p.getLabC4() != null) + .count(); + setAlignInSchoolSimShare(numInSchoolAge > 0 ? (double) numStudents / numInSchoolAge : 0.0); + setAlignInSchoolTgtShare(Parameters.getTargetShare(year, TargetShares.Students)); + + // --- Utility adjustment factors --- + setAlignUtilAdjSingleM(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.UtilityAdjustmentSingleMales)); + setAlignUtilAdjACM(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.UtilityAdjustmentACMales)); + setAlignUtilAdjSingleF(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.UtilityAdjustmentSingleFemales)); + setAlignUtilAdjACF(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.UtilityAdjustmentACFemales)); + setAlignUtilAdjCouple(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.UtilityAdjustmentCouples)); + setAlignUtilAdjMWithDep(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.UtilityAdjustmentSingleDepMen)); + setAlignUtilAdjFWithDep(Parameters.getTimeSeriesValue(year, TimeSeriesVariable.UtilityAdjustmentSingleDepWomen)); + + // --- Employment shares --- + double[] totSM = new double[2]; // [count, fracEmployed sum] + double[] totSF = new double[2]; + double[] totACM = new double[2]; + double[] totACF = new double[2]; + double[] totCou = new double[2]; + double[] totSDM = new double[2]; + double[] totSDF = new double[2]; + + for (BenefitUnit bu : model.getBenefitUnits()) { + Occupancy occ = bu.getOccupancy(); + Person male = bu.getMale(); + Person female = bu.getFemale(); + boolean maleAtRisk = (male != null) && male.atRiskOfWork(); + boolean femaleAtRisk = (female != null) && female.atRiskOfWork(); + int acFlag = 0; + if (occ == Occupancy.Single_Male && male != null) acFlag = male.getAdultChildFlag(); + if (occ == Occupancy.Single_Female && female != null) acFlag = female.getAdultChildFlag(); + + double frac = bu.fracEmployed(); + + if (occ == Occupancy.Single_Male && acFlag != 1) { + totSM[0]++; totSM[1] += frac; + } else if (occ == Occupancy.Single_Male && acFlag == 1) { + totACM[0]++; totACM[1] += frac; + } else if (occ == Occupancy.Single_Female && acFlag != 1) { + totSF[0]++; totSF[1] += frac; + } else if (occ == Occupancy.Single_Female && acFlag == 1) { + totACF[0]++; totACF[1] += frac; + } else if (occ == Occupancy.Couple && maleAtRisk && femaleAtRisk) { + totCou[0]++; totCou[1] += frac; + } else if (occ == Occupancy.Couple && maleAtRisk && !femaleAtRisk) { + totSDM[0]++; totSDM[1] += frac; + } else if (occ == Occupancy.Couple && !maleAtRisk && femaleAtRisk) { + totSDF[0]++; totSDF[1] += frac; + } + } + + setAlignEmpSimSingleMShare( totSM[0] > 0 ? totSM[1] / totSM[0] : 0.0); + setAlignEmpSimSingleFShare(totSF[0] > 0 ? totSF[1] / totSF[0] : 0.0); + setAlignEmpSimACMShare( totACM[0] > 0 ? totACM[1] / totACM[0] : 0.0); + setAlignEmpSimACFShare( totACF[0] > 0 ? totACF[1] / totACF[0] : 0.0); + setAlignEmpSimCouplesShare( totCou[0] > 0 ? totCou[1] / totCou[0] : 0.0); + setAlignEmpSimMWithDepShare( totSDM[0] > 0 ? totSDM[1] / totSDM[0] : 0.0); + setAlignEmpSimFWithDepShare(totSDF[0] > 0 ? totSDF[1] / totSDF[0] : 0.0); + + setAlignEmpTgtSingleMShare( Parameters.getTargetShare(year, TargetShares.EmploymentSingleMales)); + setAlignEmpTgtSingleFShare(Parameters.getTargetShare(year, TargetShares.EmploymentSingleFemales)); + setAlignEmpTgtACMShare( Parameters.getTargetShare(year, TargetShares.EmploymentACMales)); + setAlignEmpTgtACFShare( Parameters.getTargetShare(year, TargetShares.EmploymentACFemales)); + setAlignEmpTgtCouplesShare( Parameters.getTargetShare(year, TargetShares.EmploymentCouples)); + setAlignEmpTgtMWithDepShare( Parameters.getTargetShare(year, TargetShares.EmploymentSingleDepMales)); + setAlignEmpTgtFWithDepShare(Parameters.getTargetShare(year, TargetShares.EmploymentSingleDepFemales)); + } +} diff --git a/src/main/java/simpaths/data/statistics/DemographicStatistics.java b/src/main/java/simpaths/data/statistics/DemographicStatistics.java new file mode 100644 index 000000000..7286a6399 --- /dev/null +++ b/src/main/java/simpaths/data/statistics/DemographicStatistics.java @@ -0,0 +1,142 @@ +package simpaths.data.statistics; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; + +import microsim.data.db.PanelEntityKey; + +/** + * + * DEMOGRAPHIC STATISTICS BY AGE BAND + * + * One row per simulated year, covering the whole population in each of the three age + * bands 18-29, 30-54 and 55-74. + * + * Health, labour and income statistics reported over the same age bands live in + * HealthStatistics, LabourStatistics and WealthIncomeStatistics respectively. + * + */ +@Entity +public class DemographicStatistics { + + @Id + private PanelEntityKey key = new PanelEntityKey(1L); + + //population shares in cohabiting relationships + @Column(name = "pr_married_18_29") + private double demMarried18to29Share; + + @Column(name = "pr_married_30_54") + private double demMarried30to54Share; + + @Column(name = "pr_married_55_74") + private double demMarried55to74Share; + + //average dependent children + @Column(name = "avkids_18_29") + private double demNChild18to29Avg; + + @Column(name = "avkids_30_54") + private double demNChild30to54Avg; + + @Column(name = "avkids_55_74") + private double demNChild55to74Avg; + + //population counts, the denominator for the age-band statistics reported elsewhere + @Column(name= "population_18_29") + private double demPop18to29N; + + @Column(name= "population_30_54") + private double demPop30to54N; + + @Column(name= "population_55_74") + private double demPop55to74N; + + public double getPopulation18to29() { + return demPop18to29N; + } + + public void setPopulation18to29(double demPop18to29N) { + this.demPop18to29N = demPop18to29N; + } + + public double getPopulation30to54() { + return demPop30to54N; + } + + public void setPopulation30to54(double demPop30to54N) { + this.demPop30to54N = demPop30to54N; + } + + public double getPopulation55to74() { + return demPop55to74N; + } + + public void setPopulation55to74(double demPop55to74N) { + this.demPop55to74N = demPop55to74N; + } + + public double getPrMarried18to29() { + return demMarried18to29Share; + } + + public void setPrMarried18to29(double demMarried18to29Share) { + this.demMarried18to29Share = demMarried18to29Share; + } + + public double getPrMarried30to54() { + return demMarried30to54Share; + } + + public void setPrMarried30to54(double demMarried30to54Share) { + this.demMarried30to54Share = demMarried30to54Share; + } + + public double getPrMarried55to74() { + return demMarried55to74Share; + } + + public void setPrMarried55to74(double demMarried55to74Share) { + this.demMarried55to74Share = demMarried55to74Share; + } + + public double getAvkids18to29() { + return demNChild18to29Avg; + } + + public void setAvkids18to29(double demNChild18to29Avg) { + this.demNChild18to29Avg = demNChild18to29Avg; + } + + public double getAvkids30to54() { + return demNChild30to54Avg; + } + + public void setAvkids30to54(double demNChild30to54Avg) { + this.demNChild30to54Avg = demNChild30to54Avg; + } + + public double getAvkids55to74() { + return demNChild55to74Avg; + } + + public void setAvkids55to74(double demNChild55to74Avg) { + this.demNChild55to74Avg = demNChild55to74Avg; + } + + public void update(AgeBandAggregates agg) { + + setPrMarried18to29(agg.prMarr[0]); + setPrMarried30to54(agg.prMarr[1]); + setPrMarried55to74(agg.prMarr[2]); + + setAvkids18to29(agg.avkids[0]); + setAvkids30to54(agg.avkids[1]); + setAvkids55to74(agg.avkids[2]); + + setPopulation18to29(agg.popula[0]); + setPopulation30to54(agg.popula[1]); + setPopulation55to74(agg.popula[2]); + } +} diff --git a/src/main/java/simpaths/data/statistics/EmploymentStatistics.java b/src/main/java/simpaths/data/statistics/EmploymentStatistics.java deleted file mode 100644 index 8d510856a..000000000 --- a/src/main/java/simpaths/data/statistics/EmploymentStatistics.java +++ /dev/null @@ -1,109 +0,0 @@ -package simpaths.data.statistics; - -import jakarta.persistence.Column; -import jakarta.persistence.Id; -import jakarta.persistence.Entity; - -import microsim.data.db.PanelEntityKey; -import microsim.statistics.CrossSection; -import microsim.statistics.IDoubleSource; -import microsim.statistics.functions.MeanArrayFunction; -import simpaths.data.filters.AgeGroupCSfilter; -import simpaths.data.filters.EmploymentHistoryFilter; -import simpaths.model.SimPathsModel; -import simpaths.model.enums.Les_c4; -import simpaths.model.Person; - -@Entity -public class EmploymentStatistics { - - @Id - private PanelEntityKey key = new PanelEntityKey(1L); - - @Column(name= "EmpToNotEmp") - private double labEmpToNotEmpShare; // Proportion of employed people becoming unemployed - - @Column(name= "NotEmpToEmp") - private double labNotEmpToEmpShare; // Proportion of unemployed people becoming employed - - @Column(name = "PropEmployed") - private double labEmpShare; - - @Column(name = "PropUnemployed") - private double labUnempShare; - - - public double getEmpToNotEmp() { - return labEmpToNotEmpShare; - } - - public void setEmpToNotEmp(double empToNotEmp) { - labEmpToNotEmpShare = empToNotEmp; - } - - public double getNotEmpToEmp() { - return labNotEmpToEmpShare; - } - - public void setNotEmpToEmp(double notEmpToEmp) { - labNotEmpToEmpShare = notEmpToEmp; - } - - public double getPropEmployed() { - return labEmpShare; - } - - public void setPropEmployed(double propEmployed) { - labEmpShare = propEmployed; - } - - public double getPropUnemployed() { - return labUnempShare; - } - - public void setPropUnemployed(double propUnemployed) { - labUnempShare = propUnemployed; - } - - public void update(SimPathsModel model) { - - EmploymentHistoryFilter employmentHistoryEmployed = new EmploymentHistoryFilter(Les_c4.EmployedOrSelfEmployed); - EmploymentHistoryFilter employmentHistoryUnemployed = new EmploymentHistoryFilter(Les_c4.NotEmployed); - - - // Entering employment transition rate - CrossSection.Integer personsNotEmpToEmp = new CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - personsNotEmpToEmp.setFilter(employmentHistoryUnemployed); - // Entering not employed transition rate - CrossSection.Integer personsEmpToNotEmp = new CrossSection.Integer(model.getPersons(), Person.class, "getNonwork", true); - personsEmpToNotEmp.setFilter(employmentHistoryEmployed); - - - MeanArrayFunction isNotEmpToEmp = new MeanArrayFunction(personsNotEmpToEmp); - isNotEmpToEmp.applyFunction(); - setNotEmpToEmp(isNotEmpToEmp.getDoubleValue(IDoubleSource.Variables.Default)); - - MeanArrayFunction isEmpToNotEmp = new MeanArrayFunction(personsEmpToNotEmp); - isEmpToNotEmp.applyFunction(); - setEmpToNotEmp(isEmpToNotEmp.getDoubleValue(IDoubleSource.Variables.Default)); - - // Employment and unemployment, working age adults 16-64 - AgeGroupCSfilter ageGroupCSfilter = new AgeGroupCSfilter(16, 64); - - CrossSection.Integer personsEmployed = new CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - CrossSection.Integer personsUnemployed = new CrossSection.Integer(model.getPersons(), Person.class, "getNonwork", true); - - personsEmployed.setFilter(ageGroupCSfilter); - personsUnemployed.setFilter(ageGroupCSfilter); - - MeanArrayFunction isEmployed = new MeanArrayFunction(personsEmployed); - isEmployed.applyFunction(); - setPropEmployed(isEmployed.getDoubleValue(IDoubleSource.Variables.Default)); - - MeanArrayFunction isUnemployed = new MeanArrayFunction(personsUnemployed); - isUnemployed.applyFunction(); - setPropUnemployed(isUnemployed.getDoubleValue(IDoubleSource.Variables.Default)); - - - } -} diff --git a/src/main/java/simpaths/data/statistics/HealthStatistics.java b/src/main/java/simpaths/data/statistics/HealthStatistics.java index 6f10222b0..5a33fa29f 100644 --- a/src/main/java/simpaths/data/statistics/HealthStatistics.java +++ b/src/main/java/simpaths/data/statistics/HealthStatistics.java @@ -3,334 +3,102 @@ import jakarta.persistence.Column; import jakarta.persistence.Entity; import jakarta.persistence.Id; -import jakarta.persistence.Transient; + import microsim.data.db.PanelEntityKey; -import microsim.statistics.CrossSection; -import microsim.statistics.IDoubleSource; -import microsim.statistics.functions.MeanArrayFunction; -import microsim.statistics.functions.PercentileArrayFunction; -import microsim.statistics.functions.SumArrayFunction; -import simpaths.data.filters.AgeGenderCSfilter; -import simpaths.model.Person; -import simpaths.model.SimPathsModel; -import simpaths.model.enums.Gender; +/** + * + * POPULATION HEALTH STATISTICS BY AGE BAND + * + * One row per simulated year, covering the whole population in each of the three age + * bands 18-29, 30-54 and 55-74. + * + * Subjective wellbeing and health-related quality of life, which are reported by gender + * over ages 25 to 64, live in WellbeingByGender. + * + */ @Entity public class HealthStatistics { @Id private PanelEntityKey key = new PanelEntityKey(1L); - @Column(name = "gender") - private String demSex; - - // mental health numeric - @Column(name = "dhm_mean") - private double healthWbScore0to36Avg; - - @Column(name = "dhm_median") - private double healthWbScore0to36P50; - - @Column(name = "dhm_p_10") - private double healthWbScore0to36P10; - - @Column(name = "dhm_p_90") - private double healthWbScore0to36P90; - - @Column(name = "dhm_p_25") - private double healthWbScore0to36P25; - - @Column(name = "dhm_p_75") - private double healthWbScore0to36P75; - - // MCS score numeric - @Column(name = "dhe_mcs_mean") - private double healthMentalMcsAvg; - - @Column(name = "dhe_mcs_median") - private double healthMentalMcsP50; - - @Column(name = "dhe_mcs_p_10") - private double healthMentalMcsP10; - - @Column(name = "dhe_mcs_p_90") - private double healthMentalMcsP90; - - @Column(name = "dhe_mcs_p_25") - private double healthMentalMcsP25; - - @Column(name = "dhe_mcs_p_75") - private double healthMentalMcsP75; - - // PCS score numeric - @Column(name = "dhe_pcs_mean") - private double healthPhysicalPcsAvg; - - @Column(name = "dhe_pcs_median") - private double healthPhysicalPcsP50; - - @Column(name = "dhe_pcs_p_10") - private double healthPhysicalPcsP10; - - @Column(name = "dhe_pcs_p_90") - private double healthPhysicalPcsP90; - - @Column(name = "dhe_pcs_p_25") - private double healthPhysicalPcsP25; - - @Column(name = "dhe_pcs_p_75") - private double healthPhysicalPcsP75; - - // Life Satisfaction numeric - @Column(name = "dls_mean") - private double demLifeSatScore0to10Avg; - - @Column(name = "dls_median") - private double demLifeSatScore0to10P50; - - @Column(name = "dls_p_10") - private double demLifeSatScore0to10P10; - - @Column(name = "dls_p_90") - private double demLifeSatScore0to10P90; - - @Column(name = "dls_p_25") - private double demLifeSatScore0to10P25; - - @Column(name = "dls_p_75") - private double demLifeSatScore0to10P75; - - @Column(name = "qualys") - private double healthLifeYearQualAdj; - - @Column(name = "wellbys") - private double healthLifeYearWbAdj; - - //N - @Column(name = "N") - private int healthNObsSubGroup; - - - public void setGender(String demSex) { - this.demSex = demSex; - } - - public void setDhm_mean(double healthWbScore0to36Avg) { - this.healthWbScore0to36Avg = healthWbScore0to36Avg; - } - - public void setDhm_median(double healthWbScore0to36P50) { - this.healthWbScore0to36P50 = healthWbScore0to36P50; - } - - public void setDhm_p_10(double healthWbScore0to36P10) { - this.healthWbScore0to36P10 = healthWbScore0to36P10; - } - - public void setDhm_p_90(double healthWbScore0to36P90) { - this.healthWbScore0to36P90 = healthWbScore0to36P90; - } - - public void setDhm_p_25(double healthWbScore0to36P25) { - this.healthWbScore0to36P25 = healthWbScore0to36P25; - } - - public void setDhm_p_75(double healthWbScore0to36P75) { - this.healthWbScore0to36P75 = healthWbScore0to36P75; - } - - public void setDhe_mcs_mean(double healthMentalMcsAvg) { - this.healthMentalMcsAvg = healthMentalMcsAvg; - } - - public void setDhe_mcs_median(double healthMentalMcsP50) { - this.healthMentalMcsP50 = healthMentalMcsP50; - } + //average health + @Column(name = "health_18_29") + private double healthScore18to29Avg; - public void setDhe_mcs_p_10(double healthMentalMcsP10) { - this.healthMentalMcsP10 = healthMentalMcsP10; - } + @Column(name = "health_30_54") + private double healthScore30to54Avg; - public void setDhe_mcs_p_90(double healthMentalMcsP90) { - this.healthMentalMcsP90 = healthMentalMcsP90; - } + @Column(name = "health_55_74") + private double healthScore55to74Avg; - public void setDhe_mcs_p_25(double healthMentalMcsP25) { - this.healthMentalMcsP25 = healthMentalMcsP25; - } - - public void setDhe_mcs_p_75(double healthMentalMcsP75) { - this.healthMentalMcsP75 = healthMentalMcsP75; - } - - public void setDhe_pcs_mean(double healthPhysicalPcsAvg) { - this.healthPhysicalPcsAvg = healthPhysicalPcsAvg; - } + //population shares disabled + @Column(name = "pr_disabled_18_29") + private double healthDsbl18to29Share; - public void setDhe_pcs_median(double healthPhysicalPcsP50) { - this.healthPhysicalPcsP50 = healthPhysicalPcsP50; - } + @Column(name = "pr_disabled_30_54") + private double healthDsbl30to54Share; - public void setDhe_pcs_p_10(double healthPhysicalPcsP10) { - this.healthPhysicalPcsP10 = healthPhysicalPcsP10; - } + @Column(name = "pr_disabled_55_74") + private double healthDsbl55to74Share; - public void setDhe_pcs_p_90(double healthPhysicalPcsP90) { - this.healthPhysicalPcsP90 = healthPhysicalPcsP90; + public double getHealth18to29() { + return healthScore18to29Avg; } - public void setDhe_pcs_p_25(double healthPhysicalPcsP25) { - this.healthPhysicalPcsP25 = healthPhysicalPcsP25; + public void setHealth18to29(double healthScore18to29Avg) { + this.healthScore18to29Avg = healthScore18to29Avg; } - public void setDhe_pcs_p_75(double healthPhysicalPcsP75) { - this.healthPhysicalPcsP75 = healthPhysicalPcsP75; + public double getHealth30to54() { + return healthScore30to54Avg; } - public void setDls_mean(double demLifeSatScore0to10Avg) { - this.demLifeSatScore0to10Avg = demLifeSatScore0to10Avg; + public void setHealth30to54(double healthScore30to54Avg) { + this.healthScore30to54Avg = healthScore30to54Avg; } - public void setDls_median(double demLifeSatScore0to10P50) { - this.demLifeSatScore0to10P50 = demLifeSatScore0to10P50; + public double getHealth55to74() { + return healthScore55to74Avg; } - public void setDls_p_10(double demLifeSatScore0to10P10) { - this.demLifeSatScore0to10P10 = demLifeSatScore0to10P10; + public void setHealth55to74(double healthScore55to74Avg) { + this.healthScore55to74Avg = healthScore55to74Avg; } - public void setDls_p_90(double demLifeSatScore0to10P90) { - this.demLifeSatScore0to10P90 = demLifeSatScore0to10P90; + public double getPrDisabled18to29() { + return healthDsbl18to29Share; } - public void setDls_p_25(double demLifeSatScore0to10P25) { - this.demLifeSatScore0to10P25 = demLifeSatScore0to10P25; + public void setPrDisabled18to29(double healthDsbl18to29Share) { + this.healthDsbl18to29Share = healthDsbl18to29Share; } - public void setDls_p_75(double demLifeSatScore0to10P75) { - this.demLifeSatScore0to10P75 = demLifeSatScore0to10P75; + public double getPrDisabled30to54() { + return healthDsbl30to54Share; } - public void setN(int n) { - healthNObsSubGroup = n; + public void setPrDisabled30to54(double healthDsbl30to54Share) { + this.healthDsbl30to54Share = healthDsbl30to54Share; } - public void setQalys(double healthLifeYearQualAdj) { - this.healthLifeYearQualAdj = healthLifeYearQualAdj; + public double getPrDisabled55to74() { + return healthDsbl55to74Share; } - public void setWellbys(double healthLifeYearWbAdj) { - this.healthLifeYearWbAdj = healthLifeYearWbAdj; + public void setPrDisabled55to74(double healthDsbl55to74Share) { + this.healthDsbl55to74Share = healthDsbl55to74Share; } - public void update(SimPathsModel model, String gender_s) { - - - AgeGenderCSfilter ageGenderCSfilter; - - if (gender_s.equals("Total")) { - ageGenderCSfilter = new AgeGenderCSfilter(25, 64); - } else { - ageGenderCSfilter = new AgeGenderCSfilter(25, 64, Gender.valueOf(gender_s)); - } - - // set gender - setGender(gender_s); - - // dhm score - CrossSection.Double personsDhm = new CrossSection.Double(model.getPersons(), Person.DoublesVariables.Dhm); // Get cross section of simulated individuals and their mental health using the IDoubleSource interface implemented by Person class. - personsDhm.setFilter(ageGenderCSfilter); - - - MeanArrayFunction dhm_mean_f = new MeanArrayFunction(personsDhm); // Create MeanArrayFunction - dhm_mean_f.applyFunction(); - setDhm_mean(dhm_mean_f.getDoubleValue(IDoubleSource.Variables.Default)); - - PercentileArrayFunction percDhm_f = new PercentileArrayFunction(personsDhm); - percDhm_f.applyFunction(); - - setDhm_p_10(percDhm_f.getDoubleValue(PercentileArrayFunction.Variables.P10)); - setDhm_p_25(percDhm_f.getDoubleValue(PercentileArrayFunction.Variables.P25)); - setDhm_median(percDhm_f.getDoubleValue(PercentileArrayFunction.Variables.P50)); - setDhm_p_75(percDhm_f.getDoubleValue(PercentileArrayFunction.Variables.P75)); - setDhm_p_90(percDhm_f.getDoubleValue(PercentileArrayFunction.Variables.P90)); - - // mcs score - CrossSection.Double personsMCS = new CrossSection.Double(model.getPersons(), Person.DoublesVariables.Dhe_mcs); - personsMCS.setFilter(ageGenderCSfilter); - - - MeanArrayFunction dhe_mcs_mean_f = new MeanArrayFunction(personsMCS); // Create MeanArrayFunction - dhe_mcs_mean_f.applyFunction(); - setDhe_mcs_mean(dhe_mcs_mean_f.getDoubleValue(IDoubleSource.Variables.Default)); - - PercentileArrayFunction perc_dhe_mcs_f = new PercentileArrayFunction(personsMCS); - perc_dhe_mcs_f.applyFunction(); - - setDhe_mcs_p_10(perc_dhe_mcs_f.getDoubleValue(PercentileArrayFunction.Variables.P10)); - setDhe_mcs_p_25(perc_dhe_mcs_f.getDoubleValue(PercentileArrayFunction.Variables.P25)); - setDhe_mcs_median(perc_dhe_mcs_f.getDoubleValue(PercentileArrayFunction.Variables.P50)); - setDhe_mcs_p_75(perc_dhe_mcs_f.getDoubleValue(PercentileArrayFunction.Variables.P75)); - setDhe_mcs_p_90(perc_dhe_mcs_f.getDoubleValue(PercentileArrayFunction.Variables.P90)); - - // pcs score - CrossSection.Double personsPCS = new CrossSection.Double(model.getPersons(), Person.DoublesVariables.Dhe_pcs); - personsPCS.setFilter(ageGenderCSfilter); - - - MeanArrayFunction dhe_pcs_mean_f = new MeanArrayFunction(personsPCS); // Create MeanArrayFunction - dhe_pcs_mean_f.applyFunction(); - setDhe_pcs_mean(dhe_pcs_mean_f.getDoubleValue(IDoubleSource.Variables.Default)); - - PercentileArrayFunction perc_dhe_pcs_f = new PercentileArrayFunction(personsPCS); - perc_dhe_pcs_f.applyFunction(); - - setDhe_pcs_p_10(perc_dhe_pcs_f.getDoubleValue(PercentileArrayFunction.Variables.P10)); - setDhe_pcs_p_25(perc_dhe_pcs_f.getDoubleValue(PercentileArrayFunction.Variables.P25)); - setDhe_pcs_median(perc_dhe_pcs_f.getDoubleValue(PercentileArrayFunction.Variables.P50)); - setDhe_pcs_p_75(perc_dhe_pcs_f.getDoubleValue(PercentileArrayFunction.Variables.P75)); - setDhe_pcs_p_90(perc_dhe_pcs_f.getDoubleValue(PercentileArrayFunction.Variables.P90)); - - // Life Satisfaction score - CrossSection.Double personsDls = new CrossSection.Double(model.getPersons(), Person.DoublesVariables.Dls); - personsDls.setFilter(ageGenderCSfilter); - - - MeanArrayFunction dls_mean_f = new MeanArrayFunction(personsDls); // Create MeanArrayFunction - dls_mean_f.applyFunction(); - setDls_mean(dls_mean_f.getDoubleValue(IDoubleSource.Variables.Default)); - - PercentileArrayFunction perc_dls_f = new PercentileArrayFunction(personsDls); - perc_dls_f.applyFunction(); - - setDls_p_10(perc_dls_f.getDoubleValue(PercentileArrayFunction.Variables.P10)); - setDls_p_25(perc_dls_f.getDoubleValue(PercentileArrayFunction.Variables.P25)); - setDls_median(perc_dls_f.getDoubleValue(PercentileArrayFunction.Variables.P50)); - setDls_p_75(perc_dls_f.getDoubleValue(PercentileArrayFunction.Variables.P75)); - setDls_p_90(perc_dls_f.getDoubleValue(PercentileArrayFunction.Variables.P90)); - - // QALYS as sum of EQ5D - CrossSection.Double personEQ5D = new CrossSection.Double(model.getPersons(), Person.DoublesVariables.He_eq5d); - personEQ5D.setFilter(ageGenderCSfilter); - - SumArrayFunction.Double qalys = new SumArrayFunction.Double(personEQ5D); - qalys.applyFunction(); - setQalys(qalys.getDoubleValue(IDoubleSource.Variables.Default)); - - // WELLBYs as sum of 'points' in 0-10-scale life satisfaction (adjusted) - - SumArrayFunction.Double wellbys = new SumArrayFunction.Double(personsDls); - wellbys.applyFunction(); - - - setWellbys(wellbys.getDoubleValue(IDoubleSource.Variables.Default)); + public void update(AgeBandAggregates agg) { - // count - CrossSection.Integer n_persons = new CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - n_persons.setFilter(ageGenderCSfilter); + setHealth18to29(agg.health[0]); + setHealth30to54(agg.health[1]); + setHealth55to74(agg.health[2]); - SumArrayFunction.Integer count_f = new SumArrayFunction.Integer(n_persons); - count_f.applyFunction(); - setN(count_f.getIntValue(IDoubleSource.Variables.Default)); + setPrDisabled18to29(agg.prDisa[0]); + setPrDisabled30to54(agg.prDisa[1]); + setPrDisabled55to74(agg.prDisa[2]); } } diff --git a/src/main/java/simpaths/data/statistics/LabourStatistics.java b/src/main/java/simpaths/data/statistics/LabourStatistics.java new file mode 100644 index 000000000..01d2ce2aa --- /dev/null +++ b/src/main/java/simpaths/data/statistics/LabourStatistics.java @@ -0,0 +1,178 @@ +package simpaths.data.statistics; + +import java.util.Collection; +import java.util.function.Supplier; + +import jakarta.persistence.Column; +import jakarta.persistence.Id; +import jakarta.persistence.Entity; +import microsim.FilteredCollection; +import microsim.data.db.PanelEntityKey; +import microsim.dev.statistics.CrossSection; +import microsim.dev.statistics.Stats; +import simpaths.data.filters.Filters; +import simpaths.model.SimPathsModel; +import simpaths.model.enums.Les_c4; +import simpaths.model.Person; + +@Entity +public class LabourStatistics { + + @Id + private PanelEntityKey key = new PanelEntityKey(1L); + + @Column(name= "EmpToNotEmp") + private double labEmpToNotEmpShare; // Proportion of employed people becoming unemployed + + @Column(name= "NotEmpToEmp") + private double labNotEmpToEmpShare; // Proportion of unemployed people becoming employed + + @Column(name = "PropEmployed") + private double labEmpShare; + + @Column(name = "PropUnemployed") + private double labUnempShare; + + //average labour status by age band + @Column(name = "work_fulltime_18_29") + private double labWorkFullTime18to29Share; + + @Column(name = "work_fulltime_30_54") + private double labWorkFullTime30to54Share; + + @Column(name = "work_fulltime_55_74") + private double labWorkFullTime55to74Share; + + @Column(name = "work_parttime_18_29") + private double labWorkPartTime18to29Share; + + @Column(name = "work_parttime_30_54") + private double labWorkPartTime30to54Share; + + @Column(name = "work_parttime_55_74") + private double labWorkPartTime55to74Share; + + + public double getEmpToNotEmp() { + return labEmpToNotEmpShare; + } + + public void setEmpToNotEmp(double empToNotEmp) { + labEmpToNotEmpShare = empToNotEmp; + } + + public double getNotEmpToEmp() { + return labNotEmpToEmpShare; + } + + public void setNotEmpToEmp(double notEmpToEmp) { + labNotEmpToEmpShare = notEmpToEmp; + } + + public double getPropEmployed() { + return labEmpShare; + } + + public void setPropEmployed(double propEmployed) { + labEmpShare = propEmployed; + } + + public double getPropUnemployed() { + return labUnempShare; + } + + public void setPropUnemployed(double propUnemployed) { + labUnempShare = propUnemployed; + } + + public double getWorkFulltime18to29() { + return labWorkFullTime18to29Share; + } + + public void setWorkFulltime18to29(double labWorkFullTime18to29Share) { + this.labWorkFullTime18to29Share = labWorkFullTime18to29Share; + } + + public double getWorkFulltime30to54() { + return labWorkFullTime30to54Share; + } + + public void setWorkFulltime30to54(double labWorkFullTime30to54Share) { + this.labWorkFullTime30to54Share = labWorkFullTime30to54Share; + } + + public double getWorkFulltime55to74() { + return labWorkFullTime55to74Share; + } + + public void setWorkFulltime55to74(double labWorkFullTime55to74Share) { + this.labWorkFullTime55to74Share = labWorkFullTime55to74Share; + } + + public double getWorkParttime18to29() { + return labWorkPartTime18to29Share; + } + + public void setWorkParttime18to29(double labWorkPartTime18to29Share) { + this.labWorkPartTime18to29Share = labWorkPartTime18to29Share; + } + + public double getWorkParttime30to54() { + return labWorkPartTime30to54Share; + } + + public void setWorkParttime30to54(double labWorkPartTime30to54Share) { + this.labWorkPartTime30to54Share = labWorkPartTime30to54Share; + } + + public double getWorkParttime55to74() { + return labWorkPartTime55to74Share; + } + + public void setWorkParttime55to74(double labWorkPartTime55to74Share) { + this.labWorkPartTime55to74Share = labWorkPartTime55to74Share; + } + + /// Update the statistics with an arbitrary [Supplier]. + /// This is intended for testing. + void updateWithSupplier(Supplier> supplier, AgeBandAggregates agg) { + var histEmployed = new FilteredCollection<>(supplier, + Filters.employmentHistory(Les_c4.EmployedOrSelfEmployed)); + var histNotEmployed = new FilteredCollection<>(supplier, + Filters.employmentHistory(Les_c4.NotEmployed)); + + // Entering employment transition rate + var personsNotEmpToEmp = new CrossSection<>(histNotEmployed, Person::getEmployed); + // Entering not employed transition rate + var personsEmpToNotEmp = new CrossSection<>(histEmployed, Person::getNonwork); + + var isNotEmpToEmp = new Stats(personsNotEmpToEmp.get()); + this.setNotEmpToEmp(isNotEmpToEmp.mean()); + + var isEmpToNotEmp = new Stats(personsEmpToNotEmp.get()); + this.setEmpToNotEmp(isEmpToNotEmp.mean()); + + // Employment and non-employment, working age adults 16-64 + var from16to64 = new FilteredCollection<>(supplier, Filters.ageRange(16, 64)).once(); + var personsEmployed = new CrossSection<>(from16to64, Person::getEmployed); + var personsNotEmployed = new CrossSection<>(from16to64, Person::getNonwork); + + var isEmployed = new Stats(personsEmployed.get()); + var isNotEmployed = new Stats(personsNotEmployed.get()); + setPropEmployed(isEmployed.mean()); + setPropUnemployed(isNotEmployed.mean()); + + // labour status by age band + setWorkFulltime18to29(agg.workFT[0]); + setWorkFulltime30to54(agg.workFT[1]); + setWorkFulltime55to74(agg.workFT[2]); + + setWorkParttime18to29(agg.workPT[0]); + setWorkParttime30to54(agg.workPT[1]); + setWorkParttime55to74(agg.workPT[2]); + } + + public void update(SimPathsModel model, AgeBandAggregates agg) { + this.updateWithSupplier(model::getPersons, agg); + } +} diff --git a/src/main/java/simpaths/data/statistics/Statistics.java b/src/main/java/simpaths/data/statistics/Statistics.java deleted file mode 100644 index 25539f510..000000000 --- a/src/main/java/simpaths/data/statistics/Statistics.java +++ /dev/null @@ -1,166 +0,0 @@ -package simpaths.data.statistics; - -import jakarta.persistence.Column; -import jakarta.persistence.Entity; -import jakarta.persistence.Id; - -import microsim.data.db.PanelEntityKey; - -@Entity -public class Statistics { - - @Id - private PanelEntityKey key = new PanelEntityKey(1L); - - @Column(name = "Gini_coefficient_individual_market_income_nationally") - private double statYMktNatGini; - - @Column(name = "Gini_coefficient_equivalised_household_disposable_income_nationally") - private double statYHhDispEquivNatGini; - - @Column(name = "Median_equivalised_household_disposable_income") - private double yHhDispEquivP50; - - //Percentiles of ydses: - @Column(name = "Ydses_p20") - private double yHhQuintilesC5P20; - - @Column(name = "Ydses_p40") - private double yHhQuintilesC5P40; - - @Column(name = "Ydses_p60") - private double yHhQuintilesC5P60; - - @Column(name = "Ydses_p80") - private double yHhQuintilesC5P80; - - //Percentiles of gross labour income: - @Column(name = "Gross_Labour_Income_p20") - private double yLabP20; - - @Column(name = "Gross_Labour_Income_p40") - private double yLabP40; - - @Column(name = "Gross_Labour_Income_p60") - private double yLabP60; - - @Column(name = "Gross_Labour_Income_p80") - private double yLabP80; - - //Equivalised disposable income - @Column(name = "EDI_p50") - private double edi_p50; - - //Percentiles of SIndex: - @Column(name = "SIndex_p50") - private double sIndex_p50; - - //// Risk-of-poverty threshold is set at 60% of the national median equivalised household disposable income. -// @Column(name = "Risk_of_poverty_threshold") -// private double riskOfPovertyThreshold; - - public void setGiniPersonalGrossEarningsNational(double statYMktNatGini) { - this.statYMktNatGini = statYMktNatGini; - } - - public void setGiniEquivalisedHouseholdDisposableIncomeNational(double statYHhDispEquivNatGini) { - this.statYHhDispEquivNatGini = statYHhDispEquivNatGini; - } - - public double getMedianEquivalisedHouseholdDisposableIncome() { - return yHhDispEquivP50; - } - - public void setMedianEquivalisedHouseholdDisposableIncome(double yHhDispEquivP50) { - this.yHhDispEquivP50 = yHhDispEquivP50; - } - - public double getYdses_p20() { - return yHhQuintilesC5P20; - } - - public void setYdses_p20(double yHhQuintilesC5P20) { - this.yHhQuintilesC5P20 = yHhQuintilesC5P20; - } - - public double getYdses_p40() { - return yHhQuintilesC5P40; - } - - public void setYdses_p40(double yHhQuintilesC5P40) { - this.yHhQuintilesC5P40 = yHhQuintilesC5P40; - } - - public double getYdses_p60() { - return yHhQuintilesC5P60; - } - - public void setYdses_p60(double yHhQuintilesC5P60) { - this.yHhQuintilesC5P60 = yHhQuintilesC5P60; - } - - public double getYdses_p80() { - return yHhQuintilesC5P80; - } - - public void setYdses_p80(double yHhQuintilesC5P80) { - this.yHhQuintilesC5P80 = yHhQuintilesC5P80; - } - - public double getsIndex_p50() { - return sIndex_p50; - } - - public void setsIndex_p50(double sIndex_p50) { - this.sIndex_p50 = sIndex_p50; - } - - public double getGrossLabourIncome_p20() { - return yLabP20; - } - - public void setGrossLabourIncome_p20(double yLabP20) { - this.yLabP20 = yLabP20; - } - - public double getGrossLabourIncome_p40() { - return yLabP40; - } - - public void setGrossLabourIncome_p40(double yLabP40) { - this.yLabP40 = yLabP40; - } - - public double getGrossLabourIncome_p60() { - return yLabP60; - } - - public void setGrossLabourIncome_p60(double yLabP60) { - this.yLabP60 = yLabP60; - } - - public double getGrossLabourIncome_p80() { - return yLabP80; - } - - public void setGrossLabourIncome_p80(double yLabP80) { - this.yLabP80 = yLabP80; - } - - public double getEdi_p50() { - return edi_p50; - } - - public void setEdi_p50(double edi_p50) { - this.edi_p50 = edi_p50; - } - -// public double getRiskOfPovertyThreshold() { -// return riskOfPovertyThreshold; -// } -// -// public void setRiskOfPovertyThreshold(double riskOfPovertyThreshold) { -// this.riskOfPovertyThreshold = riskOfPovertyThreshold; -// } - -} diff --git a/src/main/java/simpaths/data/statistics/Statistics2.java b/src/main/java/simpaths/data/statistics/Statistics2.java deleted file mode 100644 index 08dd069dc..000000000 --- a/src/main/java/simpaths/data/statistics/Statistics2.java +++ /dev/null @@ -1,796 +0,0 @@ -package simpaths.data.statistics; - -import jakarta.persistence.Column; -import jakarta.persistence.Entity; -import jakarta.persistence.Id; - -import microsim.data.db.PanelEntityKey; -import simpaths.data.Parameters; -import simpaths.model.Person; -import simpaths.model.SimPathsModel; -import simpaths.model.enums.Education; -import simpaths.model.enums.Indicator; - -@Entity -public class Statistics2 { - - @Id - private PanelEntityKey key = new PanelEntityKey(1L); - - //population shares in cohabiting relationships - @Column(name = "pr_married_18_29") - private double demMarried18to29Share; - - @Column(name = "pr_married_30_54") - private double demMarried30to54Share; - - @Column(name = "pr_married_55_74") - private double demMarried55to74Share; - - //average dependent children - @Column(name = "avkids_18_29") - private double demNChild18to29Avg; - - @Column(name = "avkids_30_54") - private double demNChild30to54Avg; - - @Column(name = "avkids_55_74") - private double demNChild55to74Avg; - - //average health - @Column(name = "health_18_29") - private double healthScore18to29Avg; - - @Column(name = "health_30_54") - private double healthScore30to54Avg; - - @Column(name = "health_55_74") - private double healthScore55to74Avg; - - //population shares disabled - @Column(name = "pr_disabled_18_29") - private double demDsbl18to29Share; - - @Column(name = "pr_disabled_30_54") - private double demDsbl30to54Share; - - @Column(name = "pr_disabled_55_74") - private double demDsbl55to74Share; - - //average labour status by age and gender - @Column(name = "work_fulltime_18_29") - private double labWorkFullTime18to29Share; - - @Column(name = "work_fulltime_30_54") - private double labWorkFullTime30to54Share; - - @Column(name = "work_fulltime_55_74") - private double labWorkFullTime55to74Share; - - @Column(name = "work_parttime_18_29") - private double labWorkPartTime18to29Share; - - @Column(name = "work_parttime_30_54") - private double labWorkPartTime30to54Share; - - @Column(name = "work_parttime_55_74") - private double labWorkPartTime55to74Share; - - @Column(name = "work_none_18_29") - private double labNoWork18to29Share; - - @Column(name = "work_none_30_54") - private double labNoWork30to54Share; - - @Column(name = "work_none_55_74") - private double labNoWork55to74Share; - - @Column(name = "work_none_18_74") - private double labNoWork18to54Share; - - //employment income - @Column(name = "labourIncome_18_29") - private double statYLab18to29Avg; - - @Column(name = "labourIncome_30_54") - private double statYLab30to54Avg; - - @Column(name = "labourIncome_55_74") - private double statYLab55to74Avg; - - //investment income - @Column(name = "investmentIncome_18_29") - private double statYInvest18to29Avg; - - @Column(name = "investmentIncome_30_54") - private double statYInvest30to54Avg; - - @Column(name = "investmentIncome_55_74") - private double statYInvest55to74Avg; - - //pension income - @Column(name = "pensionIncome_18_29") - private double statYPens18to29Avg; - - @Column(name = "pensionIncome_30_54") - private double statYPens30to54Avg; - - @Column(name = "pensionIncome_55_74") - private double statYPens55to74Avg; - - //disposable income - @Column(name = "disposableIncome_18_29") - private double statYDisp18to29Avg; - - @Column(name = "disposableIncome_30_54") - private double statYDisp30to54Avg; - - @Column(name = "disposableIncome_55_74") - private double statYDisp55to74Avg; - - //investment losses - @Column(name = "investmentLosses_18_29") - private double statInvestLoss18to29Avg; - - @Column(name = "investmentLosses_30_54") - private double statInvestLoss30to54Avg; - - @Column(name = "investmentLosses_55_74") - private double statInvestLoss55to74Avg; - - //disposable income gross of investment losses - @Column(name = "dispInc_grossLosses_18_29") - private double statYDispGrossOfLosses18to29Avg; - - @Column(name = "dispInc_grossLosses_30_54") - private double statYDispGrossOfLosses30to54Avg; - - @Column(name = "dispInc_grossLosses_55_74") - private double statYDispGrossOfLosses55to75Avg; - - //expenditure - @Column(name = "expenditure_18_29") - private double x18to29Avg; - - @Column(name = "expenditure_30_54") - private double x30to54Avg; - - @Column(name = "expenditure_55_74") - private double x55to74Avg; - - @Column(name = "expenditure_18_54") - private double x18to54Avg; - - //consumption to leisure ratios - @Column(name = "cons_to_leis_ratio") - private double xToLeisureRatio; - - //wealth - @Column(name = "wealth_18_29") - private double wealth18to29Avg; - - @Column(name = "wealth_30_54") - private double wealth30to54Avg; - - @Column(name = "wealth_55_74") - private double wealth55to74Avg; - - @Column(name= "population_18_29") - private double demPop18to29N; - - @Column(name= "population_30_54") - private double demPop30to54N; - - @Column(name= "population_55_74") - private double demPop55to74N; - - public double getAaconsToLeisRatio() { - return xToLeisureRatio; - } - - public void setAaconsToLeisRatio(double consToLeis) { - this.xToLeisureRatio = consToLeis; - } - - public double getPopulation18to29() { - return demPop18to29N; - } - - public void setPopulation18to29(double demPop18to29N) { - this.demPop18to29N = demPop18to29N; - } - - public double getPopulation55to74() { - return demPop55to74N; - } - - public void setPopulation30to54(double demPop30to54N) { - this.demPop30to54N = demPop30to54N; - } - - public double getPopulation30to54() { - return demPop30to54N; - } - - public void setPopulation55to74(double demPop55to74N) { - this.demPop55to74N = demPop55to74N; - } - - public double getPrMarried18to29() { - return demMarried18to29Share; - } - - public void setPrMarried18to29(double demMarried18to29Share) { - this.demMarried18to29Share = demMarried18to29Share; - } - - public double getPrMarried30to54() { - return demMarried30to54Share; - } - - public void setPrMarried30to54(double demMarried30to54Share) { - this.demMarried30to54Share = demMarried30to54Share; - } - - public double getPrMarried55to74() { - return demMarried55to74Share; - } - - public void setPrMarried55to74(double demMarried55to74Share) { - this.demMarried55to74Share = demMarried55to74Share; - } - - public double getAvkids18to29() { - return demNChild18to29Avg; - } - - public void setAvkids18to29(double demNChild18to29Avg) { - this.demNChild18to29Avg = demNChild18to29Avg; - } - - public double getAvkids30to54() { - return demNChild30to54Avg; - } - - public void setAvkids30to54(double demNChild30to54Avg) { - this.demNChild30to54Avg = demNChild30to54Avg; - } - - public double getAvkids55to74() { - return demNChild55to74Avg; - } - - public void setAvkids55to74(double demNChild55to74Avg) { - this.demNChild55to74Avg = demNChild55to74Avg; - } - - public double getHealth18to29() { - return healthScore18to29Avg; - } - - public void setHealth18to29(double healthScore18to29Avg) { - this.healthScore18to29Avg = healthScore18to29Avg; - } - - public double getHealth30to54() { - return healthScore30to54Avg; - } - - public void setHealth30to54(double healthScore30to54Avg) { - this.healthScore30to54Avg = healthScore30to54Avg; - } - - public double getHealth55to74() { - return healthScore55to74Avg; - } - - public void setHealth55to74(double healthScore55to74Avg) { - this.healthScore55to74Avg = healthScore55to74Avg; - } - - public double getPrDisabled18to29() { - return demDsbl18to29Share; - } - - public void setPrDisabled18to29(double demDsbl18to29Share) { - this.demDsbl18to29Share = demDsbl18to29Share; - } - - public double getPrDisabled30to54() { - return demDsbl30to54Share; - } - - public void setPrDisabled30to54(double demDsbl30to54Share) { - this.demDsbl30to54Share = demDsbl30to54Share; - } - - public double getPrDisabled55to74() { - return demDsbl55to74Share; - } - - public void setPrDisabled55to74(double demDsbl55to74Share) { - this.demDsbl55to74Share = demDsbl55to74Share; - } - - public double getLabourIncome18to29() { - return statYLab18to29Avg; - } - - public void setLabourIncome18to29(double statYLab18to29Avg) { - this.statYLab18to29Avg = statYLab18to29Avg; - } - - public double getLabourIncome30to54() { - return statYLab30to54Avg; - } - - public void setLabourIncome30to54(double statYLab30to54Avg) { - this.statYLab30to54Avg = statYLab30to54Avg; - } - - public double getLabourIncome55to74() { - return statYLab55to74Avg; - } - - public void setLabourIncome55to74(double statYLab55to74Avg) { - this.statYLab55to74Avg = statYLab55to74Avg; - } - - public double getInvestmentIncome18to29() { - return statYInvest18to29Avg; - } - - public void setInvestmentIncome18to29(double statYInvest18to29Avg) { - this.statYInvest18to29Avg = statYInvest18to29Avg; - } - - public double getInvestmentIncome30to54() { - return statYInvest30to54Avg; - } - - public void setInvestmentIncome30to54(double statYInvest30to54Avg) { - this.statYInvest30to54Avg = statYInvest30to54Avg; - } - - public double getInvestmentIncome55to74() { - return statYInvest55to74Avg; - } - - public void setInvestmentIncome55to74(double statYInvest55to74Avg) { - this.statYInvest55to74Avg = statYInvest55to74Avg; - } - - public double getPensionIncome18to29() { - return statYPens18to29Avg; - } - - public void setPensionIncome18to29(double statYPens18to29Avg) { - this.statYPens18to29Avg = statYPens18to29Avg; - } - - public double getPensionIncome30to54() { - return statYPens30to54Avg; - } - - public void setPensionIncome30to54(double statYPens30to54Avg) { - this.statYPens30to54Avg = statYPens30to54Avg; - } - - public double getPensionIncome55to74() { - return statYPens55to74Avg; - } - - public void setPensionIncome55to74(double statYPens55to74Avg) { - this.statYPens55to74Avg = statYPens55to74Avg; - } - - public double getAadisposableIncome18to29() { - return statYDisp18to29Avg; - } - - public void setAadisposableIncome18to29(double statYDisp18to29Avg) { - this.statYDisp18to29Avg = statYDisp18to29Avg; - } - - public double getAadisposableIncome30to54() { - return statYDisp30to54Avg; - } - - public void setAadisposableIncome30to54(double statYDisp30to54Avg) { - this.statYDisp30to54Avg = statYDisp30to54Avg; - } - - public double getAadisposableIncome55to74() { - return statYDisp55to74Avg; - } - - public void setAadisposableIncome55to74(double statYDisp55to74Avg) { - this.statYDisp55to74Avg = statYDisp55to74Avg; - } - - public double getInvestmentLosses18to29() { - return statInvestLoss18to29Avg; - } - - public void setInvestmentLosses18to29(double statInvestLoss18to29Avg) { - this.statInvestLoss18to29Avg = statInvestLoss18to29Avg; - } - - public double getInvestmentLosses30to54() { - return statInvestLoss30to54Avg; - } - - public void setInvestmentLosses30to54(double statInvestLoss30to54Avg) { - this.statInvestLoss30to54Avg = statInvestLoss30to54Avg; - } - - public double getInvestmentLosses55to74() { - return statInvestLoss55to74Avg; - } - - public void setInvestmentLosses55to74(double statInvestLoss55to74Avg) { - this.statInvestLoss55to74Avg = statInvestLoss55to74Avg; - } - - public double getDispIncomeGrossOfLosses18to29() { - return statYDispGrossOfLosses18to29Avg; - } - - public void setDispIncomeGrossOfLosses18to29(double statYDispGrossOfLosses18to29Avg) { - this.statYDispGrossOfLosses18to29Avg = statYDispGrossOfLosses18to29Avg; - } - - public double getDispIncomeGrossOfLosses30to54() { - return statYDispGrossOfLosses30to54Avg; - } - - public void setDispIncomeGrossOfLosses30to54(double statYDispGrossOfLosses30to54Avg) { - this.statYDispGrossOfLosses30to54Avg = statYDispGrossOfLosses30to54Avg; - } - - public double getDispIncomeGrossOfLosses55to74() { - return statYDispGrossOfLosses55to75Avg; - } - - public void setDispIncomeGrossOfLosses55to74(double statYDispGrossOfLosses55to75Avg) { - this.statYDispGrossOfLosses55to75Avg = statYDispGrossOfLosses55to75Avg; - } - - public double getAaexpenditure18to29() { - return x18to29Avg; - } - - public void setAaexpenditure18to29(double x18to29Avg) { - this.x18to29Avg = x18to29Avg; - } - - public double getAaexpenditure30to54() { - return x30to54Avg; - } - - public void setAaexpenditure30to54(double x30to54Avg) { - this.x30to54Avg = x30to54Avg; - } - - public double getAaexpenditure55to74() { - return x55to74Avg; - } - - public void setAaexpenditure55to74(double x55to74Avg) { - this.x55to74Avg = x55to74Avg; - } - - public double getAaworkNone18to74() { - return labNoWork18to54Share; - } - - public void setAaworkNone18to74(double labNoWork18to54Share) { - this.labNoWork18to54Share = labNoWork18to54Share; - } - - public double getAaexpenditure18to54() { - return x18to54Avg; - } - - public void setAaexpenditure18to54(double x18to54Avg) { - this.x18to54Avg = x18to54Avg; - } - - public double getWealth18to29() { - return wealth18to29Avg; - } - - public void setWealth18to29(double wealth18to29Avg) { - this.wealth18to29Avg = wealth18to29Avg; - } - - public double getWealth30to54() { - return wealth30to54Avg; - } - - public void setWealth30to54(double wealth30to54Avg) { - this.wealth30to54Avg = wealth30to54Avg; - } - - public double getWealth55to74() { - return wealth55to74Avg; - } - - public void setWealth55to74(double wealth55to74Avg) { - this.wealth55to74Avg = wealth55to74Avg; - } - - public double getAworkFulltime18to29() { - return labWorkFullTime18to29Share; - } - - public void setAworkFulltime18to29(double labWorkFullTime18to29Share) { - this.labWorkFullTime18to29Share = labWorkFullTime18to29Share; - } - - public double getAworkFulltime30to54() { - return labWorkFullTime30to54Share; - } - - public void setAworkFulltime30to54(double labWorkFullTime30to54Share) { - this.labWorkFullTime30to54Share = labWorkFullTime30to54Share; - } - - public double getAworkFulltime55to74() { - return labWorkFullTime55to74Share; - } - - public void setAworkFulltime55to74(double labWorkFullTime55to74Share) { - this.labWorkFullTime55to74Share = labWorkFullTime55to74Share; - } - - public double getAworkParttime18to29() { - return labWorkPartTime18to29Share; - } - - public void setAworkParttime18to29(double labWorkPartTime18to29Share) { - this.labWorkPartTime18to29Share = labWorkPartTime18to29Share; - } - - public double getAworkParttime30to54() { - return labWorkPartTime30to54Share; - } - - public void setAworkParttime30to54(double labWorkPartTime30to54Share) { - this.labWorkPartTime30to54Share = labWorkPartTime30to54Share; - } - - public double getAworkParttime55to74() { - return labWorkPartTime55to74Share; - } - - public void setAworkParttime55to74(double labWorkPartTime55to74Share) { - this.labWorkPartTime55to74Share = labWorkPartTime55to74Share; - } - - public double getAaworkNone18to29() { - return labNoWork18to29Share; - } - - public void setAaworkNone18to29(double labNoWork18to29Share) { - this.labNoWork18to29Share = labNoWork18to29Share; - } - - public double getAaworkNone30to54() { - return labNoWork30to54Share; - } - - public void setAaworkNone30to54(double labNoWork30to54Share) { - this.labNoWork30to54Share = labNoWork30to54Share; - } - - public double getAaworkNone55to74() { - return labNoWork55to74Share; - } - - public void setAaworkNone55to74(double labNoWork55to74Share) { - this.labNoWork55to74Share = labNoWork55to74Share; - } - - public void update(SimPathsModel model) { - - // initialise outputs - double[] prMarr = {0.,0.,0.}; - double[] avkids = {0.,0.,0.}; - double[] health = {0.,0.,0.}; - double[] prDisa = {0.,0.,0.}; - double[] workFT = {0.,0.,0.}; - double[] workPT = {0.,0.,0.}; - double[] workNn = {0.,0.,0.,0.}; - double[] labInc = {0.,0.,0.}; - double[] invInc = {0.,0.,0.}; - double[] invLosses = {0.,0.,0.}; - double[] penInc = {0.,0.,0.}; - double[] disInc = {0.,0.,0.}; - double[] grossDisInc = {0.,0.,0.}; - double[] expen = {0.,0.,0.,0.}; - double[] wealth = {0.,0.,0.}; - double[] popula = {0.,0.,0.}; - double ctlNG = 0.0, ctlG = 0.0; - double numberNG = 0.0, numberG = 0.0; - for (Person person : model.getPersons()) { - // loop over entire population - - int ii = -1; - if (person.getDemAge()>=18 && person.getDemAge()<=29) { - ii = 0; - } else if (person.getDemAge()>=30 && person.getDemAge()<=54) { - ii = 1; - } else if (person.getDemAge()>=55 && person.getDemAge()<=74) { - ii = 2; - } - if (ii>=0) { - - double es = person.getBenefitUnit().getEquivalisedWeight(); - - prMarr[ii] += person.getCohabiting(); - avkids[ii] += person.getBenefitUnit().getNumberChildrenAll(); - health[ii] += person.getDheValue(); - prDisa[ii] += (Indicator.True.equals(person.getDlltsd()))? 1.0: 0.0; - labInc[ii] += person.getEarningsWeekly(); - if ((double)person.getLabourSupplyHoursWeekly() > Parameters.MIN_HOURS_FULL_TIME_EMPLOYED) - workFT[ii] += 1.0; - else if ((double)person.getLabourSupplyHoursWeekly() > 1.0) - workPT[ii] += 1.0; - else { - workNn[ii] += 1.0; - workNn[3] += 1.0; - } - - invInc[ii] += person.getBenefitUnit().getInvestmentIncomeAnnual() / 12.0 / es; - penInc[ii] += person.getBenefitUnit().getPensionIncomeAnnual() / 12.0 / es; - disInc[ii] += person.getBenefitUnit().getDisposableIncomeMonthly() / es; - if (person.getBenefitUnit().getInvestmentIncomeAnnual()<0.0) { - invLosses[ii] += person.getBenefitUnit().getInvestmentIncomeAnnual() / 12.0 / es; - grossDisInc[ii] += (person.getBenefitUnit().getDisposableIncomeMonthly() - - person.getBenefitUnit().getInvestmentIncomeAnnual() / 12.0) / es; - } else { - grossDisInc[ii] += person.getBenefitUnit().getDisposableIncomeMonthly() / es; - } - double expenditurePerMonth = person.getBenefitUnit().getDiscretionaryConsumptionPerYear(false) / 12.0 + - person.getBenefitUnit().getChildcareCostPerWeek(false) * Parameters.WEEKS_PER_MONTH + - person.getBenefitUnit().getSocialCareCostPerWeek(false) * Parameters.WEEKS_PER_MONTH; - if (expenditurePerMonth > 0.0) { - expenditurePerMonth /= es; - expen[ii] += Math.log(expenditurePerMonth); - if (person.getDemAge()>=18 && person.getDemAge()<=54) { - expen[3] += Math.log(expenditurePerMonth); - } - } - if (person.getDemAge()>=55 && person.getDemAge()<=60) { - - if (Education.High.equals(person.getDeh_c4())) { - numberG += 1.0; - ctlG += expenditurePerMonth / Parameters.WEEKS_PER_MONTH / person.getLeisureHoursPerWeek(); - } else { - numberNG += 1.0; - ctlNG += expenditurePerMonth / Parameters.WEEKS_PER_MONTH / person.getLeisureHoursPerWeek(); - } - } - wealth[ii] += person.getBenefitUnit().getLiquidWealth(false) / es; - popula[ii] += 1.0; - } - } - if (numberG>0.1) { - ctlG /= numberG; - } - if (numberNG>0.1) { - ctlNG /= numberNG; - } - for (int ii=0; ii<=2; ii++) { - - if (popula[ii]>=0) { - - labInc[ii] /= (workFT[ii] + workPT[ii]); - prMarr[ii] /= popula[ii]; - avkids[ii] /= popula[ii]; - health[ii] /= popula[ii]; - prDisa[ii] /= popula[ii]; - workFT[ii] /= popula[ii]; - workPT[ii] /= popula[ii]; - workNn[ii] /= popula[ii]; - invInc[ii] /= popula[ii]; - penInc[ii] /= popula[ii]; - disInc[ii] /= popula[ii]; - invLosses[ii] /= popula[ii]; - grossDisInc[ii] /= popula[ii]; - expen[ii] = Math.exp(expen[ii] / popula[ii]); - wealth[ii] /= popula[ii]; - } - } - workNn[3] /= (popula[0]+popula[1]+popula[2]); - expen[3] = Math.exp(expen[3] / (popula[0]+popula[1])); - - // update calibration statistics as differences to target moments - workNn[0] -= 0.3427271; //2019 - pooled UKHLS data (ukhls_pooled_all_obs_02.dta) - workNn[1] -= 0.2045448; - workNn[2] -= 0.6011462; - workNn[3] -= 0.3808046; - - expen[0] -= 165.8951 * Parameters.WEEKS_PER_MONTH; - expen[1] -= 309.2464 * Parameters.WEEKS_PER_MONTH; - expen[2] -= 323.1081 * Parameters.WEEKS_PER_MONTH; - expen[3] -= 255.13679 * Parameters.WEEKS_PER_MONTH; - - disInc[0] -= 295.8024 * Parameters.WEEKS_PER_MONTH; - disInc[1] -= 482.8467 * Parameters.WEEKS_PER_MONTH; - disInc[2] -= 478.0918 * Parameters.WEEKS_PER_MONTH; - - double ctlRatio = ctlG / ctlNG - 1.361384; - - - // map statistics to outputs - setPrMarried18to29(prMarr[0]); - setPrMarried30to54(prMarr[1]); - setPrMarried55to74(prMarr[2]); - - setAvkids18to29(avkids[0]); - setAvkids30to54(avkids[1]); - setAvkids55to74(avkids[2]); - - setHealth18to29(health[0]); - setHealth30to54(health[1]); - setHealth55to74(health[2]); - - setPrDisabled18to29(prDisa[0]); - setPrDisabled30to54(prDisa[1]); - setPrDisabled55to74(prDisa[2]); - - setAworkFulltime18to29(workFT[0]); - setAworkFulltime30to54(workFT[1]); - setAworkFulltime55to74(workFT[2]); - - setAworkParttime18to29(workPT[0]); - setAworkParttime30to54(workPT[1]); - setAworkParttime55to74(workPT[2]); - - setAaworkNone18to29(workNn[0]); - setAaworkNone30to54(workNn[1]); - setAaworkNone55to74(workNn[2]); - setAaworkNone18to74(workNn[3]); - - setLabourIncome18to29(labInc[0]); - setLabourIncome30to54(labInc[1]); - setLabourIncome55to74(labInc[2]); - - setInvestmentIncome18to29(invInc[0]); - setInvestmentIncome30to54(invInc[1]); - setInvestmentIncome55to74(invInc[2]); - - setPensionIncome18to29(penInc[0]); - setPensionIncome30to54(penInc[1]); - setPensionIncome55to74(penInc[2]); - - setAadisposableIncome18to29(disInc[0]); - setAadisposableIncome30to54(disInc[1]); - setAadisposableIncome55to74(disInc[2]); - - setInvestmentLosses18to29(invLosses[0]); - setInvestmentLosses30to54(invLosses[1]); - setInvestmentLosses55to74(invLosses[2]); - - setDispIncomeGrossOfLosses18to29(grossDisInc[0]); - setDispIncomeGrossOfLosses30to54(grossDisInc[1]); - setDispIncomeGrossOfLosses55to74(grossDisInc[2]); - - setAaexpenditure18to29(expen[0]); - setAaexpenditure30to54(expen[1]); - setAaexpenditure55to74(expen[2]); - setAaexpenditure18to54(expen[3]); - - setAaconsToLeisRatio(ctlRatio); - - setWealth18to29(wealth[0]); - setWealth30to54(wealth[1]); - setWealth55to74(wealth[2]); - - setPopulation18to29(popula[0]); - setPopulation30to54(popula[1]); - setPopulation55to74(popula[2]); - } -} diff --git a/src/main/java/simpaths/data/statistics/Statistics3.java b/src/main/java/simpaths/data/statistics/Statistics3.java deleted file mode 100644 index 4b2c5bdb1..000000000 --- a/src/main/java/simpaths/data/statistics/Statistics3.java +++ /dev/null @@ -1,200 +0,0 @@ -package simpaths.data.statistics; - -import jakarta.persistence.Column; -import jakarta.persistence.Entity; -import jakarta.persistence.Id; -import microsim.data.db.PanelEntityKey; -import simpaths.data.Parameters; -import simpaths.data.filters.FertileFilter; -import simpaths.model.SimPathsModel; -import simpaths.model.enums.AlignmentVariable; -import simpaths.model.enums.Dcpst; -import simpaths.model.enums.TargetShares; -import simpaths.model.enums.TimeSeriesVariable; - -@Entity -public class Statistics3 { - - @Id - private PanelEntityKey key = new PanelEntityKey(1L); - - @Column(name= "social_care_adj_factor") - private double careAdj; - - @Column(name = "partnership_adj_factor") - private double demPartnerAdj; - - @Column(name = "share_cohabiting_sim") - private double demPartnerSimShare; - - @Column(name = "share_cohabiting_tgt") - private double demPartnerTargetShare; - - @Column(name = "fertility_adj_factor") - private double demFertAdj; - - @Column(name = "fertiilty_rate_sim") - private double demFertRateSim; - - @Column(name = "fertiilty_rate_tgt") - private double demFertRateTarget; - - @Column(name = "utility_adj_factor_smales") - private double demUtilAdjSingleM; - - @Column(name = "utility_adj_factor_ac_males") - private double demUtilAdjSingleACM; - - @Column(name = "utility_adj_factor_sfemales") - private double demUtilAdjSingleF; - - @Column(name = "utility_adj_factor_ac_females") - private double demUtilAdjSingleACF; - - @Column(name = "utility_adj_factor_couples") - private double demUtilAdjCouple; - - @Column(name = "utility_adj_factor_smales_dep") - private double demUtilAdjSDepM; - - @Column(name = "utility_adj_factor_sfemales_dep") - private double demUtilAdjSDepF; - - public double getPartnershipAdjustmentFactor() { - return demPartnerAdj; - } - - public void setPartnershipAdjustmentFactor(double demPartnerAdj) { - this.demPartnerAdj = demPartnerAdj; - } - - public double getFertilityAdjustmentFactor() { - return demFertAdj; - } - - public void setFertilityAdjustmentFactor(double factor) { - this.demFertAdj = factor; - } - - public double getUtilityAdjustmentFactorSmales() { - return demUtilAdjSingleM; - } - - public void setUtilityAdjustmentFactorSmales(double demUtilAdjSingleM) { - this.demUtilAdjSingleM = demUtilAdjSingleM; - } - - public double getUtilityAdjustmentFactorACmales() {return demUtilAdjSingleACM; } - - public void setUtilityAdjustmentFactorACmales(double demUtilAdjACM) { - this.demUtilAdjSingleACM = demUtilAdjACM; - } - - public double getUtilityAdjustmentFactorSfemales() { - return demUtilAdjSingleF; - } - - public void setUtilityAdjustmentFactorSfemales(double demUtilAdjSingleF) { - this.demUtilAdjSingleF = demUtilAdjSingleF; - } - - public double getUtilityAdjustmentFactorACfemales() { return demUtilAdjSingleACF;} - - public void setUtilityAdjustmentFactorACfemales(double demUtilAdjACF) { - this.demUtilAdjSingleACF = demUtilAdjACF; - } - - public double getUtilityAdjustmentFactorCouples() { - return demUtilAdjCouple; - } - - public void setUtilityAdjustmentFactorCouples(double demUtilAdjCouple) { - this.demUtilAdjCouple = demUtilAdjCouple; - } - - public double getUtilityAdjustmentFactorSDepFemales() {return demUtilAdjSDepF;} - - public void setUtilityAdjustmentFactorSDepFemales(double demUtilAdjSDepF) { - this.demUtilAdjSDepF = demUtilAdjSDepF; - } - - public double getUtilityAdjustmentFactorSDepMales(){return demUtilAdjSDepM;} - - public void setUtilityAdjustmentFactorSDepMales(double demUtilAdjSDepM) { - this.demUtilAdjSDepM = demUtilAdjSDepM; - } - - public double getSocialCareAdjustmentFactor() { return careAdj; } - - public void setSocialCareAdjustmentFactor(double factor) { - careAdj = factor;} - - public double getShareCohabitingSimulated() {return demPartnerSimShare;} - - public void setShareCohabitingSimulated(double demPartnerSimShare) { this.demPartnerSimShare = demPartnerSimShare; } - - public double getFertilityRateSimulated() { - return demFertRateSim; - } - - public void setFertilityRateSimulated(double demFertRateSim) { - this.demFertRateSim = demFertRateSim; - } - - public double getFertilityRateTarget() { - return demFertRateTarget; - } - - public void setFertilityRateTarget(double demFertRateTarget) { - this.demFertRateTarget = demFertRateTarget; - } - - public double getShareCohabitingTarget() { - return demPartnerTargetShare; - } - - public void setShareCohabitingTarget(double demPartnerTargetShare) { - this.demPartnerTargetShare = demPartnerTargetShare; - } - - public void update(SimPathsModel model) { - - // cohabitation - double val = Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.PartnershipAdjustment) + - model.getPartnershipAdjustment(model.getYear()-1); - setPartnershipAdjustmentFactor(val); - long numPersonsWhoCanHavePartner = model.getPersons().stream() - .filter(person -> person.getDemAge() >= Parameters.MIN_AGE_COHABITATION) - .count(); - long numPersonsPartnered = model.getPersons().stream() - .filter(person -> (person.getDcpst().equals(Dcpst.Partnered))) - .count(); - val = (numPersonsWhoCanHavePartner > 0) ? (double) numPersonsPartnered / numPersonsWhoCanHavePartner : 0.0; - setShareCohabitingSimulated(val); - setShareCohabitingTarget(Parameters.getTargetShare(model.getYear()-1, TargetShares.Partnership)); - - // fertility - val = Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.FertilityAdjustment) + - model.getFertilityAdjustment(model.getYear()-1); - setFertilityAdjustmentFactor(val); - FertileFilter filter = new FertileFilter(); - long numFertilePersons = model.getPersons().stream() - .filter(person -> filter.evaluate(person)) - .count(); - long numBirths = model.getPersons().stream() - .filter(person -> (person.getDemAge() < 1)) - .count(); - val = (numFertilePersons > 0) ? (double) numBirths / numFertilePersons : 0.0; - setFertilityRateSimulated(val); - setFertilityRateTarget(Parameters.getFertilityRateByYear(model.getYear()-1)); - - setSocialCareAdjustmentFactor(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.CareProvisionAdjustment)); - setUtilityAdjustmentFactorSmales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleMales)); - setUtilityAdjustmentFactorACmales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentACMales)); - setUtilityAdjustmentFactorSfemales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleFemales)); - setUtilityAdjustmentFactorACfemales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentACFemales)); - setUtilityAdjustmentFactorCouples(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentCouples)); - setUtilityAdjustmentFactorSDepFemales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleDepWomen)); - setUtilityAdjustmentFactorSDepMales(Parameters.getTimeSeriesValue(model.getYear()-1, TimeSeriesVariable.UtilityAdjustmentSingleDepMen)); - } -} diff --git a/src/main/java/simpaths/data/statistics/WealthIncomeStatistics.java b/src/main/java/simpaths/data/statistics/WealthIncomeStatistics.java new file mode 100644 index 000000000..476d32184 --- /dev/null +++ b/src/main/java/simpaths/data/statistics/WealthIncomeStatistics.java @@ -0,0 +1,396 @@ +package simpaths.data.statistics; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; + +import microsim.data.db.PanelEntityKey; + +@Entity +public class WealthIncomeStatistics { + + @Id + private PanelEntityKey key = new PanelEntityKey(1L); + + @Column(name = "Gini_coefficient_individual_market_income_nationally") + private double statYMktNatGini; + + @Column(name = "Gini_coefficient_equivalised_household_disposable_income_nationally") + private double statYHhDispEquivNatGini; + + @Column(name = "Median_equivalised_household_disposable_income") + private double yHhDispEquivP50; + + //Percentiles of ydses: + @Column(name = "Ydses_p20") + private double yHhQuintilesC5P20; + + @Column(name = "Ydses_p40") + private double yHhQuintilesC5P40; + + @Column(name = "Ydses_p60") + private double yHhQuintilesC5P60; + + @Column(name = "Ydses_p80") + private double yHhQuintilesC5P80; + + //Percentiles of gross labour income: + @Column(name = "Gross_Labour_Income_p20") + private double yLabP20; + + @Column(name = "Gross_Labour_Income_p40") + private double yLabP40; + + @Column(name = "Gross_Labour_Income_p60") + private double yLabP60; + + @Column(name = "Gross_Labour_Income_p80") + private double yLabP80; + + //Equivalised disposable income is reported as the income median yHhDispEquivP50; + //the legacy edi_p50 alias is intentionally removed to match the codebook naming rules. + + //Percentiles of SIndex: + @Column(name = "statSIndexP50") + private double statSIndexP50; + + //employment income, averaged over workers rather than over population, weekly and not equivalised + @Column(name = "labourIncome_perWorker_weekly_18_29") + private double statYLabWeeklyPerWorker18to29Avg; + + @Column(name = "labourIncome_perWorker_weekly_30_54") + private double statYLabWeeklyPerWorker30to54Avg; + + @Column(name = "labourIncome_perWorker_weekly_55_74") + private double statYLabWeeklyPerWorker55to74Avg; + + //investment income + @Column(name = "investmentIncome_18_29") + private double statYInvest18to29Avg; + + @Column(name = "investmentIncome_30_54") + private double statYInvest30to54Avg; + + @Column(name = "investmentIncome_55_74") + private double statYInvest55to74Avg; + + //pension income + @Column(name = "pensionIncome_18_29") + private double statYPens18to29Avg; + + @Column(name = "pensionIncome_30_54") + private double statYPens30to54Avg; + + @Column(name = "pensionIncome_55_74") + private double statYPens55to74Avg; + + //investment losses + @Column(name = "investmentLosses_18_29") + private double statInvestLoss18to29Avg; + + @Column(name = "investmentLosses_30_54") + private double statInvestLoss30to54Avg; + + @Column(name = "investmentLosses_55_74") + private double statInvestLoss55to74Avg; + + //disposable income gross of investment losses + @Column(name = "dispInc_grossLosses_18_29") + private double statYDispGrossOfLosses18to29Avg; + + @Column(name = "dispInc_grossLosses_30_54") + private double statYDispGrossOfLosses30to54Avg; + + @Column(name = "dispInc_grossLosses_55_74") + private double statYDispGrossOfLosses55to74Avg; + + //wealth + @Column(name = "wealth_18_29") + private double wealth18to29Avg; + + @Column(name = "wealth_30_54") + private double wealth30to54Avg; + + @Column(name = "wealth_55_74") + private double wealth55to74Avg; + + //// Risk-of-poverty threshold is set at 60% of the national median equivalised household disposable income. +// @Column(name = "Risk_of_poverty_threshold") +// private double riskOfPovertyThreshold; + + public void setGiniPersonalGrossEarningsNational(double statYMktNatGini) { + this.statYMktNatGini = statYMktNatGini; + } + + public void setGiniEquivalisedHouseholdDisposableIncomeNational(double statYHhDispEquivNatGini) { + this.statYHhDispEquivNatGini = statYHhDispEquivNatGini; + } + + public double getMedianEquivalisedHouseholdDisposableIncome() { + return yHhDispEquivP50; + } + + public void setMedianEquivalisedHouseholdDisposableIncome(double yHhDispEquivP50) { + this.yHhDispEquivP50 = yHhDispEquivP50; + } + + public double getYHhQuintilesC5P20() { + return yHhQuintilesC5P20; + } + + public void setYHhQuintilesC5P20(double yHhQuintilesC5P20) { + this.yHhQuintilesC5P20 = yHhQuintilesC5P20; + } + + public double getYHhQuintilesC5P40() { + return yHhQuintilesC5P40; + } + + public void setYHhQuintilesC5P40(double yHhQuintilesC5P40) { + this.yHhQuintilesC5P40 = yHhQuintilesC5P40; + } + + public double getYHhQuintilesC5P60() { + return yHhQuintilesC5P60; + } + + public void setYHhQuintilesC5P60(double yHhQuintilesC5P60) { + this.yHhQuintilesC5P60 = yHhQuintilesC5P60; + } + + public double getYHhQuintilesC5P80() { + return yHhQuintilesC5P80; + } + + public void setYHhQuintilesC5P80(double yHhQuintilesC5P80) { + this.yHhQuintilesC5P80 = yHhQuintilesC5P80; + } + + public double getStatSIndexP50() { + return statSIndexP50; + } + + public void setStatSIndexP50(double statSIndexP50) { + this.statSIndexP50 = statSIndexP50; + } + + public double getYLabP20() { + return yLabP20; + } + + public void setYLabP20(double yLabP20) { + this.yLabP20 = yLabP20; + } + + public double getYLabP40() { + return yLabP40; + } + + public void setYLabP40(double yLabP40) { + this.yLabP40 = yLabP40; + } + + public double getYLabP60() { + return yLabP60; + } + + public void setYLabP60(double yLabP60) { + this.yLabP60 = yLabP60; + } + + public double getYLabP80() { + return yLabP80; + } + + public void setYLabP80(double yLabP80) { + this.yLabP80 = yLabP80; + } + + public double getLabourIncomeWeeklyPerWorker18to29() { + return statYLabWeeklyPerWorker18to29Avg; + } + + public void setLabourIncomeWeeklyPerWorker18to29(double statYLabWeeklyPerWorker18to29Avg) { + this.statYLabWeeklyPerWorker18to29Avg = statYLabWeeklyPerWorker18to29Avg; + } + + public double getLabourIncomeWeeklyPerWorker30to54() { + return statYLabWeeklyPerWorker30to54Avg; + } + + public void setLabourIncomeWeeklyPerWorker30to54(double statYLabWeeklyPerWorker30to54Avg) { + this.statYLabWeeklyPerWorker30to54Avg = statYLabWeeklyPerWorker30to54Avg; + } + + public double getLabourIncomeWeeklyPerWorker55to74() { + return statYLabWeeklyPerWorker55to74Avg; + } + + public void setLabourIncomeWeeklyPerWorker55to74(double statYLabWeeklyPerWorker55to74Avg) { + this.statYLabWeeklyPerWorker55to74Avg = statYLabWeeklyPerWorker55to74Avg; + } + + public double getInvestmentIncome18to29() { + return statYInvest18to29Avg; + } + + public void setInvestmentIncome18to29(double statYInvest18to29Avg) { + this.statYInvest18to29Avg = statYInvest18to29Avg; + } + + public double getInvestmentIncome30to54() { + return statYInvest30to54Avg; + } + + public void setInvestmentIncome30to54(double statYInvest30to54Avg) { + this.statYInvest30to54Avg = statYInvest30to54Avg; + } + + public double getInvestmentIncome55to74() { + return statYInvest55to74Avg; + } + + public void setInvestmentIncome55to74(double statYInvest55to74Avg) { + this.statYInvest55to74Avg = statYInvest55to74Avg; + } + + public double getPensionIncome18to29() { + return statYPens18to29Avg; + } + + public void setPensionIncome18to29(double statYPens18to29Avg) { + this.statYPens18to29Avg = statYPens18to29Avg; + } + + public double getPensionIncome30to54() { + return statYPens30to54Avg; + } + + public void setPensionIncome30to54(double statYPens30to54Avg) { + this.statYPens30to54Avg = statYPens30to54Avg; + } + + public double getPensionIncome55to74() { + return statYPens55to74Avg; + } + + public void setPensionIncome55to74(double statYPens55to74Avg) { + this.statYPens55to74Avg = statYPens55to74Avg; + } + + public double getInvestmentLosses18to29() { + return statInvestLoss18to29Avg; + } + + public void setInvestmentLosses18to29(double statInvestLoss18to29Avg) { + this.statInvestLoss18to29Avg = statInvestLoss18to29Avg; + } + + public double getInvestmentLosses30to54() { + return statInvestLoss30to54Avg; + } + + public void setInvestmentLosses30to54(double statInvestLoss30to54Avg) { + this.statInvestLoss30to54Avg = statInvestLoss30to54Avg; + } + + public double getInvestmentLosses55to74() { + return statInvestLoss55to74Avg; + } + + public void setInvestmentLosses55to74(double statInvestLoss55to74Avg) { + this.statInvestLoss55to74Avg = statInvestLoss55to74Avg; + } + + public double getDispIncomeGrossOfLosses18to29() { + return statYDispGrossOfLosses18to29Avg; + } + + public void setDispIncomeGrossOfLosses18to29(double statYDispGrossOfLosses18to29Avg) { + this.statYDispGrossOfLosses18to29Avg = statYDispGrossOfLosses18to29Avg; + } + + public double getDispIncomeGrossOfLosses30to54() { + return statYDispGrossOfLosses30to54Avg; + } + + public void setDispIncomeGrossOfLosses30to54(double statYDispGrossOfLosses30to54Avg) { + this.statYDispGrossOfLosses30to54Avg = statYDispGrossOfLosses30to54Avg; + } + + public double getDispIncomeGrossOfLosses55to74() { + return statYDispGrossOfLosses55to74Avg; + } + + public void setDispIncomeGrossOfLosses55to74(double statYDispGrossOfLosses55to74Avg) { + this.statYDispGrossOfLosses55to74Avg = statYDispGrossOfLosses55to74Avg; + } + + public double getWealth18to29() { + return wealth18to29Avg; + } + + public void setWealth18to29(double wealth18to29Avg) { + this.wealth18to29Avg = wealth18to29Avg; + } + + public double getWealth30to54() { + return wealth30to54Avg; + } + + public void setWealth30to54(double wealth30to54Avg) { + this.wealth30to54Avg = wealth30to54Avg; + } + + public double getWealth55to74() { + return wealth55to74Avg; + } + + public void setWealth55to74(double wealth55to74Avg) { + this.wealth55to74Avg = wealth55to74Avg; + } + + /** + * + * POPULATE THE INCOME, WEALTH AND CONSUMPTION STATISTICS REPORTED BY AGE BAND + * + * The distributional statistics held by this class are set by SimPathsCollector as + * its own calculation events fire; this method covers only the age-band aggregates. + * + */ + public void update(AgeBandAggregates agg) { + + setLabourIncomeWeeklyPerWorker18to29(agg.labInc[0]); + setLabourIncomeWeeklyPerWorker30to54(agg.labInc[1]); + setLabourIncomeWeeklyPerWorker55to74(agg.labInc[2]); + + setInvestmentIncome18to29(agg.invInc[0]); + setInvestmentIncome30to54(agg.invInc[1]); + setInvestmentIncome55to74(agg.invInc[2]); + + setPensionIncome18to29(agg.penInc[0]); + setPensionIncome30to54(agg.penInc[1]); + setPensionIncome55to74(agg.penInc[2]); + + setInvestmentLosses18to29(agg.invLosses[0]); + setInvestmentLosses30to54(agg.invLosses[1]); + setInvestmentLosses55to74(agg.invLosses[2]); + + setDispIncomeGrossOfLosses18to29(agg.grossDisInc[0]); + setDispIncomeGrossOfLosses30to54(agg.grossDisInc[1]); + setDispIncomeGrossOfLosses55to74(agg.grossDisInc[2]); + + setWealth18to29(agg.wealth[0]); + setWealth30to54(agg.wealth[1]); + setWealth55to74(agg.wealth[2]); + } + +// public double getRiskOfPovertyThreshold() { +// return riskOfPovertyThreshold; +// } +// +// public void setRiskOfPovertyThreshold(double riskOfPovertyThreshold) { +// this.riskOfPovertyThreshold = riskOfPovertyThreshold; +// } + +} diff --git a/src/main/java/simpaths/data/statistics/WellbeingByGender.java b/src/main/java/simpaths/data/statistics/WellbeingByGender.java new file mode 100644 index 000000000..340a1ed82 --- /dev/null +++ b/src/main/java/simpaths/data/statistics/WellbeingByGender.java @@ -0,0 +1,319 @@ +package simpaths.data.statistics; + +import jakarta.persistence.Column; +import jakarta.persistence.Entity; +import jakarta.persistence.Id; +import microsim.FilteredCollection; +import microsim.data.db.PanelEntityKey; +import microsim.dev.statistics.CrossSection; +import microsim.dev.statistics.Stats; +import simpaths.data.filters.Filters; +import simpaths.model.Person; +import simpaths.model.SimPathsModel; +import simpaths.model.enums.Gender; + +/** + * + * SUBJECTIVE WELLBEING AND HEALTH-RELATED QUALITY OF LIFE, BY GENDER + * + * Written once per gender group per simulated year (Total, Male, Female), so the + * output is stacked long rather than wide. All measures cover ages 25 to 64. + * + * Population-wide health statistics reported by age band live in HealthStatistics. + * + */ +@Entity +public class WellbeingByGender { + + @Id + private PanelEntityKey key = new PanelEntityKey(1L); + + @Column(name = "gender") + private String demSex; + + // mental health numeric + @Column(name = "dhm_mean") + private double healthWbScore0to36Avg; + + @Column(name = "dhm_median") + private double healthWbScore0to36P50; + + @Column(name = "dhm_p_10") + private double healthWbScore0to36P10; + + @Column(name = "dhm_p_90") + private double healthWbScore0to36P90; + + @Column(name = "dhm_p_25") + private double healthWbScore0to36P25; + + @Column(name = "dhm_p_75") + private double healthWbScore0to36P75; + + // MCS score numeric + @Column(name = "dhe_mcs_mean") + private double healthMentalMcsAvg; + + @Column(name = "dhe_mcs_median") + private double healthMentalMcsP50; + + @Column(name = "dhe_mcs_p_10") + private double healthMentalMcsP10; + + @Column(name = "dhe_mcs_p_90") + private double healthMentalMcsP90; + + @Column(name = "dhe_mcs_p_25") + private double healthMentalMcsP25; + + @Column(name = "dhe_mcs_p_75") + private double healthMentalMcsP75; + + // PCS score numeric + @Column(name = "dhe_pcs_mean") + private double healthPhysicalPcsAvg; + + @Column(name = "dhe_pcs_median") + private double healthPhysicalPcsP50; + + @Column(name = "dhe_pcs_p_10") + private double healthPhysicalPcsP10; + + @Column(name = "dhe_pcs_p_90") + private double healthPhysicalPcsP90; + + @Column(name = "dhe_pcs_p_25") + private double healthPhysicalPcsP25; + + @Column(name = "dhe_pcs_p_75") + private double healthPhysicalPcsP75; + + // Life Satisfaction numeric + @Column(name = "dls_mean") + private double demLifeSatScore0to10Avg; + + @Column(name = "dls_median") + private double demLifeSatScore0to10P50; + + @Column(name = "dls_p_10") + private double demLifeSatScore0to10P10; + + @Column(name = "dls_p_90") + private double demLifeSatScore0to10P90; + + @Column(name = "dls_p_25") + private double demLifeSatScore0to10P25; + + @Column(name = "dls_p_75") + private double demLifeSatScore0to10P75; + + @Column(name = "qualys") + private double healthLifeYearQualAdj; + + @Column(name = "wellbys") + private double healthLifeYearWbAdj; + + //N + @Column(name = "N") + private int healthNObsSubGroup; + + + public void setGender(String demSex) { + this.demSex = demSex; + } + + /** + * + * ENTITY ID FOR A GENDER GROUP + * + * Three rows are written per simulated year, one per gender group. The entity key is + * part of the database primary key alongside simulation time and run, so the groups + * need distinct ids to be persisted as separate records rather than overwriting + * one another. + * + * @param gender_s the gender group being reported + * @return the id identifying that group + * + */ + private static long genderKeyId(String gender_s) { + + if ("Male".equals(gender_s)) + return 2L; + if ("Female".equals(gender_s)) + return 3L; + return 1L; // Total + } + + public void setHealthWbScore0to36Avg(double healthWbScore0to36Avg) { + this.healthWbScore0to36Avg = healthWbScore0to36Avg; + } + + public void setHealthWbScore0to36P50(double healthWbScore0to36P50) { + this.healthWbScore0to36P50 = healthWbScore0to36P50; + } + + public void setHealthWbScore0to36P10(double healthWbScore0to36P10) { + this.healthWbScore0to36P10 = healthWbScore0to36P10; + } + + public void setHealthWbScore0to36P90(double healthWbScore0to36P90) { + this.healthWbScore0to36P90 = healthWbScore0to36P90; + } + + public void setHealthWbScore0to36P25(double healthWbScore0to36P25) { + this.healthWbScore0to36P25 = healthWbScore0to36P25; + } + + public void setHealthWbScore0to36P75(double healthWbScore0to36P75) { + this.healthWbScore0to36P75 = healthWbScore0to36P75; + } + + public void setHealthMentalMcsAvg(double healthMentalMcsAvg) { + this.healthMentalMcsAvg = healthMentalMcsAvg; + } + + public void setHealthMentalMcsP50(double healthMentalMcsP50) { + this.healthMentalMcsP50 = healthMentalMcsP50; + } + + public void setHealthMentalMcsP10(double healthMentalMcsP10) { + this.healthMentalMcsP10 = healthMentalMcsP10; + } + + public void setHealthMentalMcsP90(double healthMentalMcsP90) { + this.healthMentalMcsP90 = healthMentalMcsP90; + } + + public void setHealthMentalMcsP25(double healthMentalMcsP25) { + this.healthMentalMcsP25 = healthMentalMcsP25; + } + + public void setHealthMentalMcsP75(double healthMentalMcsP75) { + this.healthMentalMcsP75 = healthMentalMcsP75; + } + + public void setHealthPhysicalPcsAvg(double healthPhysicalPcsAvg) { + this.healthPhysicalPcsAvg = healthPhysicalPcsAvg; + } + + public void setHealthPhysicalPcsP50(double healthPhysicalPcsP50) { + this.healthPhysicalPcsP50 = healthPhysicalPcsP50; + } + + public void setHealthPhysicalPcsP10(double healthPhysicalPcsP10) { + this.healthPhysicalPcsP10 = healthPhysicalPcsP10; + } + + public void setHealthPhysicalPcsP90(double healthPhysicalPcsP90) { + this.healthPhysicalPcsP90 = healthPhysicalPcsP90; + } + + public void setHealthPhysicalPcsP25(double healthPhysicalPcsP25) { + this.healthPhysicalPcsP25 = healthPhysicalPcsP25; + } + + public void setHealthPhysicalPcsP75(double healthPhysicalPcsP75) { + this.healthPhysicalPcsP75 = healthPhysicalPcsP75; + } + + public void setDemLifeSatScore0to10Avg(double demLifeSatScore0to10Avg) { + this.demLifeSatScore0to10Avg = demLifeSatScore0to10Avg; + } + + public void setDemLifeSatScore0to10P50(double demLifeSatScore0to10P50) { + this.demLifeSatScore0to10P50 = demLifeSatScore0to10P50; + } + + public void setDemLifeSatScore0to10P10(double demLifeSatScore0to10P10) { + this.demLifeSatScore0to10P10 = demLifeSatScore0to10P10; + } + + public void setDemLifeSatScore0to10P90(double demLifeSatScore0to10P90) { + this.demLifeSatScore0to10P90 = demLifeSatScore0to10P90; + } + + public void setDemLifeSatScore0to10P25(double demLifeSatScore0to10P25) { + this.demLifeSatScore0to10P25 = demLifeSatScore0to10P25; + } + + public void setDemLifeSatScore0to10P75(double demLifeSatScore0to10P75) { + this.demLifeSatScore0to10P75 = demLifeSatScore0to10P75; + } + + public void setN(int n) { + healthNObsSubGroup = n; + } + + public void setQalys(double healthLifeYearQualAdj) { + this.healthLifeYearQualAdj = healthLifeYearQualAdj; + } + + public void setWellbys(double healthLifeYearWbAdj) { + this.healthLifeYearWbAdj = healthLifeYearWbAdj; + } + + public void update(SimPathsModel model, String gender_s) { + // set gender, and key this record so the three gender groups stay distinct + setGender(gender_s); + key = new PanelEntityKey(genderKeyId(gender_s)); + + var filter = Filters.ageRange(25, 64); + if (!gender_s.equals("Total")) { + filter = filter.and(Filters.gender(Gender.valueOf(gender_s))); + } + + var filteredPop = new FilteredCollection<>(model::getPersons, filter).once(); + + + // dhm score (mental health) + var dhm_cs = new CrossSection<>(filteredPop, Person::getHealthWbScore0to36); + var dhm_stats = new Stats(dhm_cs.get()).descrStats(); + setHealthWbScore0to36Avg(dhm_stats.getMean()); + setHealthWbScore0to36P10(dhm_stats.getPercentile(10.0)); + setHealthWbScore0to36P25(dhm_stats.getPercentile(25.0)); + setHealthWbScore0to36P50(dhm_stats.getPercentile(50.0)); + setHealthWbScore0to36P75(dhm_stats.getPercentile(75.0)); + setHealthWbScore0to36P90(dhm_stats.getPercentile(90.0)); + + // mcs score (mental health) + var mcs_cs = new CrossSection<>(filteredPop, Person::getHealthMentalMcs); + var mcs_stats = new Stats(mcs_cs.get()).descrStats(); + setHealthMentalMcsAvg(mcs_stats.getMean()); + setHealthMentalMcsP10(mcs_stats.getPercentile(10.0)); + setHealthMentalMcsP25(mcs_stats.getPercentile(25.0)); + setHealthMentalMcsP50(mcs_stats.getPercentile(50.0)); + setHealthMentalMcsP75(mcs_stats.getPercentile(75.0)); + setHealthMentalMcsP90(mcs_stats.getPercentile(90.0)); + + // pcs score (physical well-being) + var pcs_cs = new CrossSection<>(filteredPop, Person::getHealthPhysicalPcs); + var pcs_stats = new Stats(pcs_cs.get()).descrStats(); + setHealthPhysicalPcsAvg(pcs_stats.getMean()); + setHealthPhysicalPcsP10(pcs_stats.getPercentile(10.0)); + setHealthPhysicalPcsP25(pcs_stats.getPercentile(25.0)); + setHealthPhysicalPcsP50(pcs_stats.getPercentile(50.0)); + setHealthPhysicalPcsP75(pcs_stats.getPercentile(75.0)); + setHealthPhysicalPcsP90(pcs_stats.getPercentile(90.0)); + + // Life Satisfaction score + var dls_cs = new CrossSection<>(filteredPop, Person::getDemLifeSatScore0to10); + var dls_stats = new Stats(dls_cs.get()).descrStats(); + setDemLifeSatScore0to10Avg(dls_stats.getMean()); + setDemLifeSatScore0to10P10(dls_stats.getPercentile(10.0)); + setDemLifeSatScore0to10P25(dls_stats.getPercentile(25.0)); + setDemLifeSatScore0to10P50(dls_stats.getPercentile(50.0)); + setDemLifeSatScore0to10P75(dls_stats.getPercentile(75.0)); + setDemLifeSatScore0to10P90(dls_stats.getPercentile(90.0)); + + // QALYS as sum of EQ5D + var eq5d_cs = new CrossSection<>(filteredPop, Person::getDemLifeSatEQ5D); + var eq5d_stats = new Stats(eq5d_cs.get()); + setQalys(eq5d_stats.sum()); + + // WELLBYs as sum of 'points' in 0-10-scale life satisfaction (adjusted) + setWellbys(dls_stats.getSum()); + + // count + setN(filteredPop.get().size()); + } +} diff --git a/src/main/java/simpaths/experiment/OutputReadme.java b/src/main/java/simpaths/experiment/OutputReadme.java new file mode 100644 index 000000000..56abd28e6 --- /dev/null +++ b/src/main/java/simpaths/experiment/OutputReadme.java @@ -0,0 +1,235 @@ +// define package +package simpaths.experiment; + +// import Java packages +import java.io.File; +import java.io.IOException; +import java.io.PrintWriter; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.time.LocalDateTime; +import java.time.format.DateTimeFormatter; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +import microsim.data.ExportCSV; +import microsim.engine.SimulationEngine; +import simpaths.data.Parameters; +import simpaths.model.SimPathsModel; + +/** + * + * WRITES A README ALONGSIDE THE CSV OUTPUT OF A SIMULATION RUN + * + * The README records the configuration the run was executed under - population size, + * simulated years, alignment switches, whether regression coefficients were bootstrapped - + * together with a description of each CSV file written beside it. + * + * Output folders outlive the configuration that produced them, so a run whose settings are + * not recorded next to its results cannot be interpreted with confidence later on. + * + */ +public class OutputReadme { + + private static final Logger log = LogManager.getLogger(OutputReadme.class); + + private static final DateTimeFormatter TIMESTAMP = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss"); + + private OutputReadme() {} + + /** + * + * WRITE README.md INTO THE CSV OUTPUT DIRECTORY + * + * Failure to write the README must never interrupt a simulation, so all errors are + * logged rather than propagated. + * + * @param collector the collector holding the output toggles for this run + * @param model the simulation manager holding the run configuration + * + */ + public static void write(SimPathsCollector collector, SimPathsModel model) { + + Path directory = csvDirectory(); + if (directory != null) + write(collector, model, directory); + } + + /** + * + * WRITE README.md INTO A GIVEN DIRECTORY + * @param collector the collector holding the output toggles for this run + * @param model the simulation manager holding the run configuration + * @param directory the directory to write into, created if it does not exist + * + */ + static void write(SimPathsCollector collector, SimPathsModel model, Path directory) { + + try { + Files.createDirectories(directory); + + try (PrintWriter out = new PrintWriter(Files.newBufferedWriter(directory.resolve("README.md"), + StandardCharsets.UTF_8))) { + writeHeader(out, model); + writeRunConfiguration(out, model); + writeModelOptions(out, model); + writeFileDescriptions(out, collector); + writeConventions(out); + } + } catch (IOException | RuntimeException e) { + log.warn("Could not write output README: " + e.getMessage()); + } + } + + private static Path csvDirectory() { + + // ExportCSV.directory is the directory the CSV files themselves are written to, set + // per experiment by ExperimentManager.setupExperiment(). Reading it here keeps the + // README beside the data rather than beside a path we resolved the same way twice. + if (ExportCSV.directory != null && !ExportCSV.directory.isBlank()) + return new File(ExportCSV.directory).toPath(); + + try { + String outputFolder = SimulationEngine.getInstance().getCurrentExperiment().getOutputFolder(); + if (outputFolder == null) + return null; + return new File(outputFolder, "csv").toPath(); + } catch (RuntimeException e) { + log.warn("Could not resolve the output folder for the README: " + e.getMessage()); + return null; + } + } + + private static void writeHeader(PrintWriter out, SimPathsModel model) { + + out.println("# SimPaths simulation output"); + out.println(); + out.println("Country: **" + model.getCountry() + "** "); + out.println("Written: " + LocalDateTime.now().format(TIMESTAMP)); + out.println(); + out.println("This folder holds the CSV output of a simulation experiment. The settings below"); + out.println("are those it was executed under; they are recorded here because output folders"); + out.println("are kept long after the configuration that produced them has moved on."); + out.println(); + } + + private static void writeRunConfiguration(PrintWriter out, SimPathsModel model) { + + String runsPlanned = SimPathsMultiRun.isMultiRunMode() + ? String.valueOf(SimPathsMultiRun.getMaxNumberOfRuns()) + : "1 (single run)"; + + out.println("## Run configuration"); + out.println(); + out.println("| Setting | Value |"); + out.println("|---|---|"); + out.println("| Runs in this experiment | " + runsPlanned + " |"); + out.println("| Population size | " + model.getPopSize() + " |"); + out.println("| Start year | " + model.getStartYear() + " |"); + out.println("| End year | " + model.getEndYear() + " |"); + out.println("| Random seed | " + model.getRandomSeedIfFixed() + " |"); + out.println("| Base price year | " + Parameters.BASE_PRICE_YEAR + " |"); + out.println(); + } + + private static void writeModelOptions(PrintWriter out, SimPathsModel model) { + + out.println("## Model options"); + out.println(); + out.println("| Option | State |"); + out.println("|---|---|"); + out.println("| Bootstrap all regression coefficients | " + onOff(Parameters.bootstrapAll) + " |"); + out.println("| Intertemporal optimisations | " + onOff(model.isEnableIntertemporalOptimisations()) + " |"); + out.println("| Project mortality | " + onOff(model.getProjectMortality()) + " |"); + out.println("| Alignment: population | " + onOff(model.isAlignPopulation()) + " |"); + out.println("| Alignment: fertility | " + onOff(model.isAlignFertility()) + " |"); + out.println("| Alignment: cohabitation | " + onOff(model.isAlignCohabitation()) + " |"); + out.println("| Alignment: in school | " + onOff(model.isAlignInSchool()) + " |"); + out.println("| Alignment: employment | " + onOff(model.isAlignEmployment()) + " |"); + out.println(); + out.println("Diagnostics for the alignment routines that ran are in `AlignmentStatistics.csv`,"); + out.println("which reports the adjustment factor, the simulated share and the target share each year."); + out.println(); + } + + private static void writeFileDescriptions(PrintWriter out, SimPathsCollector collector) { + + out.println("## Files in this folder"); + out.println(); + out.println("Age bands used by the annual statistics are 18-29, 30-54 and 55-74."); + out.println(); + + describe(out, collector.isPersistWealthIncomeStatistics(), "WealthIncomeStatistics.csv", "one row per year", + "Income and wealth. Gini coefficients for market and equivalised disposable income, " + + "income percentiles, median equivalised disposable income and the S-Index, plus " + + "labour, investment and pension income, investment losses, disposable income gross " + + "of losses, and wealth by age band."); + + describe(out, collector.isPersistDemographicStatistics(), "DemographicStatistics.csv", "one row per year", + "Demographics by age band: share cohabiting, average dependent children, and population " + + "counts. The population counts are the denominator for the age-band statistics " + + "reported in the other files."); + + describe(out, collector.isPersistHealthStatistics(), "HealthStatistics.csv", "one row per year", + "Population health by age band: average self-rated health and the share reporting a " + + "long-term disability."); + + describe(out, collector.isPersistLabourStatistics(), "LabourStatistics.csv", "one row per year", + "Labour market outcomes. Employment and unemployment shares for ages 16-64 and the " + + "transition rates between them, plus full-time and part-time shares by age band."); + + describe(out, collector.isPersistAlignmentStatistics(), "AlignmentStatistics.csv", "one row per year", + "Alignment diagnostics: adjustment factors together with the simulated and target shares " + + "for each aligned process."); + + describe(out, collector.isPersistWellbeingByGender(), "WellbeingByGender.csv", "three rows per year", + "Wellbeing and health-related quality of life for ages 25-64: GHQ-12, SF-12 mental and " + + "physical component scores, life satisfaction, QALYs and WELLBYs. Written once per " + + "gender group each year - Total, Male and Female - identified by the `demSex` column."); + + describe(out, collector.isPersistPersons(), "Person.csv", "one row per person per year", + "Individual-level microdata for the whole simulated population."); + + describe(out, collector.isPersistBenefitUnits(), "BenefitUnit.csv", "one row per benefit unit per year", + "Benefit-unit-level microdata, the unit at which taxes and benefits are assessed."); + + describe(out, collector.isPersistHouseholds(), "Household.csv", "one row per household per year", + "Household-level microdata."); + + out.println(); + } + + private static void describe(PrintWriter out, boolean enabled, String fileName, String shape, String contents) { + + if (!enabled) + return; + out.println("### `" + fileName + "`"); + out.println(); + out.println("*" + shape + "*"); + out.println(); + out.println(contents); + out.println(); + } + + private static void writeConventions(PrintWriter out) { + + out.println("## Reading the files"); + out.println(); + out.println("- Every file opens with `run`, `time` and an `id_` column. `run` identifies the"); + out.println(" simulation run - where several runs share an output folder they all appear in the same"); + out.println(" file - `time` is the simulated year, and the id column is a constant for the annual"); + out.println(" statistics."); + out.println("- Remaining columns are ordered alphabetically by variable name, not by topic."); + out.println("- Financial variables are in real prices of the base price year given above,"); + out.println(" and are monthly and equivalised unless the variable name says otherwise."); + out.println("- Variables carrying `WeeklyPerWorker` are weekly, averaged over workers rather than"); + out.println(" over the population, and are not equivalised."); + out.println(); + } + + private static String onOff(boolean flag) { + return flag ? "on" : "off"; + } +} diff --git a/src/main/java/simpaths/experiment/SimPathsCollector.java b/src/main/java/simpaths/experiment/SimPathsCollector.java index 6b9dc53a9..4213fa394 100644 --- a/src/main/java/simpaths/experiment/SimPathsCollector.java +++ b/src/main/java/simpaths/experiment/SimPathsCollector.java @@ -5,40 +5,41 @@ import java.util.ArrayList; import java.util.Comparator; import java.util.LinkedHashMap; +import java.util.List; import java.util.Map; -import simpaths.data.filters.FlexibleInLabourSupplyFilter; -import simpaths.data.statistics.EmploymentStatistics; +import simpaths.data.filters.Filters; +import simpaths.data.statistics.AgeBandAggregates; +import simpaths.data.statistics.LabourStatistics; import simpaths.data.statistics.HealthStatistics; +import simpaths.data.statistics.WellbeingByGender; import simpaths.model.BenefitUnit; import simpaths.model.SimPathsModel; import simpaths.model.enums.Quintiles; -import microsim.statistics.Series; -import microsim.statistics.functions.*; // import plug-in packages import org.apache.commons.math3.util.Pair; -import org.apache.log4j.Logger; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import microsim.FilteredCollection; // import JAS-mine packages import microsim.annotation.GUIparameter; import microsim.data.DataExport; +import microsim.dev.statistics.CrossSection; +import microsim.dev.statistics.Stats; import microsim.engine.AbstractSimulationCollectorManager; import microsim.engine.SimulationEngine; import microsim.engine.SimulationManager; import microsim.event.EventListener; import microsim.event.SingleTargetEvent; -import microsim.statistics.CrossSection; -import microsim.statistics.IDoubleSource; // import LABOURsim packages import simpaths.data.Parameters; -import simpaths.data.statistics.Statistics; -import simpaths.data.statistics.Statistics2; -import simpaths.data.statistics.Statistics3; +import simpaths.data.statistics.AlignmentStatistics; +import simpaths.data.statistics.WealthIncomeStatistics; +import simpaths.data.statistics.DemographicStatistics; import simpaths.model.Person; import simpaths.model.enums.Region; -import static simpaths.model.Person.DoublesVariables.GrossLabourIncomeMonthly; - /** * @@ -48,22 +49,25 @@ public class SimPathsCollector extends AbstractSimulationCollectorManager implements EventListener { // default simulation parameters - private static Logger log = Logger.getLogger(SimPathsCollector.class); + private static Logger log = LogManager.getLogger(SimPathsCollector.class); @GUIparameter(description="Calculate the Gini coefficients of income (also displayed in charts)") private boolean calculateGiniCoefficients = false; @GUIparameter(description="Calculate extended set of population characteristics (useful for validation)") - private boolean persistStatistics2 = true; + private boolean persistDemographicStatistics = true; - @GUIparameter(description="Report alignment adjustments") - private boolean persistStatistics3 = true; + @GUIparameter(description="Report alignment adjustment factors (AlignmentStatistics.csv)") + private boolean persistAlignmentStatistics = true; - private boolean persistEmploymentStatistics = true; + private boolean persistLabourStatistics = true; - @GUIparameter(description="Report health statistics") + @GUIparameter(description="Report population health statistics by age band (HealthStatistics.csv)") private boolean persistHealthStatistics = true; + @GUIparameter(description="Report wellbeing statistics by gender (WellbeingByGender.csv)") + private boolean persistWellbeingByGender = true; + @GUIparameter(description="Toggle to turn database persistence on/off") private boolean exportToDatabase = false; @@ -71,7 +75,7 @@ public class SimPathsCollector extends AbstractSimulationCollectorManager implem private boolean exportToCSV = true; @GUIparameter(description="Toggle to turn persistence of statistics on/off") - private boolean persistStatistics = true; + private boolean persistWealthIncomeStatistics = true; @GUIparameter(description="Toggle to turn persistence of persons on/off") private boolean persistPersons = true; @@ -88,27 +92,34 @@ public class SimPathsCollector extends AbstractSimulationCollectorManager implem @GUIparameter(description="Number of time-steps in between database dumps") private Double dataDumpTimePeriod = 1.; - private int ordering = Parameters.COLLECTOR_ORDERING; //XXX: Move to Parameters? //Schedule at the same time as the model and observer events, but with an order higher than model but less than observer, so will be fired after the model and before the observe have updated. + // Schedule at the same time as the model and observer events, but with an order + // higher than model but less than observer, so will be fired after the model + // and before the observe have updated. + private int ordering = Parameters.COLLECTOR_ORDERING; private SimPathsModel model; - private Statistics stats; + private WealthIncomeStatistics wealthIncomeStats; - private Statistics2 stats2; + private DemographicStatistics demographicStats; - private Statistics3 stats3; + private AlignmentStatistics alignmentStats; - private EmploymentStatistics statsEmployment; + private LabourStatistics labourStats; - private HealthStatistics statsHealth; + private HealthStatistics healthStats; - private GiniPersonalGrossEarnings giniPersonalGrossEarnings; + private WellbeingByGender wellbeingByGender; - private GiniEquivalisedHouseholdDisposableIncome giniEquivalisedHouseholdDisposableIncome; + private AgeBandAggregates ageBandAggregates; - private Ydses_c5 yHhQuintilesMonthC5; + private double ageBandAggregatesTime = Double.NaN; - private EDI edi; //Equivalised disposable income statistics + protected GiniPersonalGrossEarnings giniPersonalGrossEarnings; + + protected GiniEquivalisedHouseholdDisposableIncome giniEquivalisedHouseholdDisposableIncome; + + private Ydses_c5 yHhQuintilesMonthC5; private GrossLabourIncome grossLabourIncome; @@ -118,25 +129,17 @@ public class SimPathsCollector extends AbstractSimulationCollectorManager implem private DataExport exportHouseholds; - private DataExport exportStatistics; + private DataExport exportWealthIncomeStatistics; - private DataExport exportStatistics2; + private DataExport exportDemographicStatistics; - private DataExport exportStatistics3; + private DataExport exportAlignmentStatistics; - private DataExport exportStatisticsEmployment; + private DataExport exportLabourStatistics; private DataExport exportHealthStatistics; - protected MultiTraceFunction.Double fGiniPersonalGrossEarningsNational; - - protected Map fGiniPersonalGrossEarningsRegionalMap; - - protected MultiTraceFunction.Double fGiniEquivalisedHouseholdDisposableIncomeNational; - - protected Map fGiniEquivalisedHouseholdDisposableIncomeRegionalMap; - - + private DataExport exportWellbeingByGender; /** * @@ -159,19 +162,15 @@ public enum Processes { DumpPersons, DumpBenefitUnits, DumpHouseholds, - DumpStatistics, - DumpStatistics2, - DumpStatistics3, - DumpStatisticsEmployment, - DumpHealthStatistics + DumpWealthIncomeStatistics, + DumpDemographicStatistics, + DumpAlignmentStatistics, + DumpLabourStatistics, + DumpHealthStatistics, + DumpWellbeingByGender } - /** - * - * XXX - * - */ @Override public void onEvent(Enum type) { switch ((Processes) type) { @@ -180,7 +179,6 @@ public void onEvent(Enum type) { calculateGrossIncome(); case CalculateEquivalisedHouseholdDisposableIncome: calculateEquivalisedHouseholdDisposableIncome(); - calculateEDI(); break; case CalculateGiniCoefficients: calculateGiniCoefficients(); @@ -207,43 +205,52 @@ public void onEvent(Enum type) { log.error(e.getMessage()); } break; - case DumpStatistics: + case DumpWealthIncomeStatistics: + wealthIncomeStats.update(ageBands()); try { - exportStatistics.export(); + exportWealthIncomeStatistics.export(); } catch (Exception e) { log.error(e.getMessage()); } break; - case DumpStatistics2: - stats2.update(model); + case DumpDemographicStatistics: + demographicStats.update(ageBands()); try { - exportStatistics2.export(); + exportDemographicStatistics.export(); } catch (Exception e) { log.error(e.getMessage()); } break; - case DumpStatistics3: - stats3.update(model); - try { - exportStatistics3.export(); - } catch (Exception e) { - log.error(e.getMessage()); - } - break; - case DumpStatisticsEmployment: - statsEmployment.update(model); + case DumpAlignmentStatistics: + alignmentStats.update(model); try { - exportStatisticsEmployment.export(); + exportAlignmentStatistics.export(); + } catch (Exception e) { + log.error(e.getMessage()); + } + break; + case DumpLabourStatistics: + labourStats.update(model, ageBands()); + try { + exportLabourStatistics.export(); } catch (Exception e) { log.error(e.getMessage()); } break; case DumpHealthStatistics: + healthStats.update(ageBands()); + try { + exportHealthStatistics.export(); + } catch (Exception e) { + log.error(e.getMessage()); + } + break; + case DumpWellbeingByGender: String[] genders = {"Total", "Male", "Female"}; for (String gender_s: genders) { - statsHealth.update(model, gender_s); + wellbeingByGender.update(model, gender_s); try { - exportHealthStatistics.export(); + exportWellbeingByGender.export(); } catch (Exception e) { log.error(e.getMessage()); } @@ -262,11 +269,12 @@ public void buildObjects() { model = (SimPathsModel) getManager(); - stats = new Statistics(); - stats2 = new Statistics2(); - stats3 = new Statistics3(); - statsEmployment = new EmploymentStatistics(); - statsHealth = new HealthStatistics(); + wealthIncomeStats = new WealthIncomeStatistics(); + demographicStats = new DemographicStatistics(); + alignmentStats = new AlignmentStatistics(); + labourStats = new LabourStatistics(); + healthStats = new HealthStatistics(); + wellbeingByGender = new WellbeingByGender(); //For export to database or .csv files. if(persistPersons) @@ -275,44 +283,55 @@ public void buildObjects() { exportBenefitUnits = new DataExport(model.getBenefitUnits(), exportToDatabase, exportToCSV); if (persistHouseholds) exportHouseholds = new DataExport(model.getHouseholds(), exportToDatabase, exportToCSV); - if (persistStatistics) - exportStatistics = new DataExport(stats, exportToDatabase, exportToCSV); - if (persistStatistics2) - exportStatistics2 = new DataExport(stats2, exportToDatabase, exportToCSV); - if (persistStatistics3) - exportStatistics3 = new DataExport(stats3, exportToDatabase, exportToCSV); - if (persistEmploymentStatistics) - exportStatisticsEmployment = new DataExport(statsEmployment, exportToDatabase, exportToCSV); + if (persistWealthIncomeStatistics) + exportWealthIncomeStatistics = new DataExport(List.of(wealthIncomeStats), exportToDatabase, exportToCSV); + if (persistDemographicStatistics) + exportDemographicStatistics = new DataExport(List.of(demographicStats), exportToDatabase, exportToCSV); + if (persistAlignmentStatistics) + exportAlignmentStatistics = new DataExport(List.of(alignmentStats), exportToDatabase, exportToCSV); + if (persistLabourStatistics) + exportLabourStatistics = new DataExport(List.of(labourStats), exportToDatabase, exportToCSV); if (persistHealthStatistics) - exportHealthStatistics = new DataExport(statsHealth, exportToDatabase, exportToCSV); + exportHealthStatistics = new DataExport(List.of(healthStats), exportToDatabase, exportToCSV); + if (persistWellbeingByGender) + exportWellbeingByGender = new DataExport(List.of(wellbeingByGender), exportToDatabase, exportToCSV); - if (calculateGiniCoefficients) { + if (exportToCSV) + OutputReadme.write(this, model); + if (calculateGiniCoefficients) { giniPersonalGrossEarnings = new GiniPersonalGrossEarnings(); - fGiniPersonalGrossEarningsNational = new MultiTraceFunction.Double(giniPersonalGrossEarnings, "getGiniPersonalGrossEarningsNational", true); - fGiniPersonalGrossEarningsRegionalMap = new LinkedHashMap(); - for(Region region: Parameters.getCountryRegions()) { - MultiTraceFunction.Double fGiniPersonalGrossEarningsRegion = new MultiTraceFunction.Double(giniPersonalGrossEarnings, region); - fGiniPersonalGrossEarningsRegionalMap.put(region, fGiniPersonalGrossEarningsRegion); - } - giniEquivalisedHouseholdDisposableIncome = new GiniEquivalisedHouseholdDisposableIncome(); - fGiniEquivalisedHouseholdDisposableIncomeNational = new MultiTraceFunction.Double(giniEquivalisedHouseholdDisposableIncome, "getGiniEquivalisedHouseholdDisposableIncomeNational", true); - fGiniEquivalisedHouseholdDisposableIncomeRegionalMap = new LinkedHashMap(); - for(Region region: Parameters.getCountryRegions()) { - MultiTraceFunction.Double fGiniEquivalisedHouseholdDisposableIncomeRegion = new MultiTraceFunction.Double(giniEquivalisedHouseholdDisposableIncome, region); - fGiniEquivalisedHouseholdDisposableIncomeRegionalMap.put(region, fGiniEquivalisedHouseholdDisposableIncomeRegion); - } } yHhQuintilesMonthC5 = new Ydses_c5(); - edi = new EDI(); grossLabourIncome = new GrossLabourIncome(); } + /** + * + * EVALUATE THE AGE-BAND POPULATION AGGREGATES SHARED BY THE ANNUAL STATISTICS OUTPUTS + * + * WealthIncomeStatistics, DemographicStatistics, LabourStatistics and HealthStatistics all report + * subsets of the same aggregates, and each is toggled independently. Caching on the + * simulated time keeps the population traversal to once per year whichever + * combination of those outputs is enabled, without imposing an order on their events. + * + */ + private AgeBandAggregates ageBands() { + + double time = SimulationEngine.getInstance().getTime(); + if (ageBandAggregates == null || ageBandAggregatesTime != time) { + ageBandAggregates = AgeBandAggregates.compute(model); + ageBandAggregatesTime = time; + } + return ageBandAggregates; + } + + @Override public void buildSchedule() { @@ -329,27 +348,31 @@ public void buildSchedule() { getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.CalculateGiniCoefficients), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); } - if (persistStatistics) { - getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpStatistics), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); -// getEngine().getEventQueue().scheduleOnce(new SingleTargetEvent(this, Processes.DumpStatistics), model.getEndYear(), -2); //Ensures the database is persisted on the last time-step + if (persistWealthIncomeStatistics) { + getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpWealthIncomeStatistics), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); +// getEngine().getEventQueue().scheduleOnce(new SingleTargetEvent(this, Processes.DumpWealthIncomeStatistics), model.getEndYear(), -2); //Ensures the database is persisted on the last time-step } - if (persistStatistics2) { - getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpStatistics2), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); + if (persistDemographicStatistics) { + getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpDemographicStatistics), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); } - if (persistStatistics3) { - getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpStatistics3), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); - } + if (persistAlignmentStatistics) { + getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpAlignmentStatistics), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); + } - if (persistEmploymentStatistics) { - getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpStatisticsEmployment), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); + if (persistLabourStatistics) { + getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpLabourStatistics), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); } if (persistHealthStatistics){ getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpHealthStatistics), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); } + if (persistWellbeingByGender){ + getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpWellbeingByGender), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); + } + if (persistPersons) { getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.DumpPersons), model.getStartYear() + dataDumpStartTime, ordering, dataDumpTimePeriod); } @@ -370,31 +393,26 @@ public void buildSchedule() { private class GrossLabourIncome { final SimPathsModel model = (SimPathsModel) getManager(); - private CrossSection.Double personsGrossLabourIncomesCS; - private PercentileArrayFunction percentileFunctionGrossLabourIncomes; public void update() { - personsGrossLabourIncomesCS = new CrossSection.Double(model.getPersons(), GrossLabourIncomeMonthly); // Retrieve Gross Labour Income monthly value using native access through IDoubleSource - FlexibleInLabourSupplyFilter flexibleInLabourSupplyFilter = new FlexibleInLabourSupplyFilter(); - personsGrossLabourIncomesCS.setFilter(flexibleInLabourSupplyFilter); // Filter only those who could work for calculation of quintiles of gross labour income - - percentileFunctionGrossLabourIncomes = new PercentileArrayFunction(personsGrossLabourIncomesCS); - percentileFunctionGrossLabourIncomes.updateSource(); + var filtered = new FilteredCollection<>(model::getPersons, Filters.flexibleLabourSupply()); + var income_cs = new CrossSection<>(filtered, Person::getCovidYLabGross); + var income_stats = new Stats(income_cs.get()).descrStats(); - stats.setGrossLabourIncome_p20(percentileFunctionGrossLabourIncomes.getDoubleValue(PercentileArrayFunction.Variables.P20)); - stats.setGrossLabourIncome_p40(percentileFunctionGrossLabourIncomes.getDoubleValue(PercentileArrayFunction.Variables.P40)); - stats.setGrossLabourIncome_p60(percentileFunctionGrossLabourIncomes.getDoubleValue(PercentileArrayFunction.Variables.P60)); - stats.setGrossLabourIncome_p80(percentileFunctionGrossLabourIncomes.getDoubleValue(PercentileArrayFunction.Variables.P80)); + wealthIncomeStats.setYLabP20(income_stats.getPercentile(20.0)); + wealthIncomeStats.setYLabP40(income_stats.getPercentile(40.0)); + wealthIncomeStats.setYLabP60(income_stats.getPercentile(60.0)); + wealthIncomeStats.setYLabP80(income_stats.getPercentile(80.0)); for (Person person : model.getPersons()) { - double covidModuleGrossLabourIncomeBaseline = person.getCovidModuleGrossLabourIncome_Baseline(); - if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p20()) { + double covidModuleGrossLabourIncomeBaseline = person.getCovidYLabGross(); + if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP20()) { person.setCovidYLabGrossXt5(Quintiles.Q1); - } else if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p40()) { + } else if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP40()) { person.setCovidYLabGrossXt5(Quintiles.Q2); - } else if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p60()) { + } else if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP60()) { person.setCovidYLabGrossXt5(Quintiles.Q3); - } else if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p80()) { + } else if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP80()) { person.setCovidYLabGrossXt5(Quintiles.Q4); } else { person.setCovidYLabGrossXt5(Quintiles.Q5); @@ -409,80 +427,32 @@ public void update() { *This method calculates quintiles of household gross income * */ - private class Ydses_c5 implements IDoubleSource { + private class Ydses_c5 { final SimPathsModel model = (SimPathsModel) getManager(); - private CrossSection.Double householdsGrossIncomesCS; - - private PercentileArrayFunction percentileFunctionHouseholdsGrossIncomes; - - private double p50HouseholdsGrossIncome; - - private double p20HouseholdsGrossIncome; - - private double p40HouseholdsGrossIncome; - - private double p60HouseholdsGrossIncome; - - private double p80HouseholdsGrossIncome; + private boolean initialDistributionCalculated; public void update() { - //Ydses_c5 - householdsGrossIncomesCS = new CrossSection.Double(model.getBenefitUnits(), BenefitUnit.class, "getTmpHHYpnbihs_dv_asinh", true); //Populate CS - - percentileFunctionHouseholdsGrossIncomes = new PercentileArrayFunction(householdsGrossIncomesCS); //Get p50 - percentileFunctionHouseholdsGrossIncomes.updateSource(); - p50HouseholdsGrossIncome = percentileFunctionHouseholdsGrossIncomes.getDoubleValue(PercentileArrayFunction.Variables.P50); //Retrieve P50 value - p20HouseholdsGrossIncome = percentileFunctionHouseholdsGrossIncomes.getDoubleValue(PercentileArrayFunction.Variables.P20); - p40HouseholdsGrossIncome = percentileFunctionHouseholdsGrossIncomes.getDoubleValue(PercentileArrayFunction.Variables.P40); - p60HouseholdsGrossIncome = percentileFunctionHouseholdsGrossIncomes.getDoubleValue(PercentileArrayFunction.Variables.P60); - p80HouseholdsGrossIncome = percentileFunctionHouseholdsGrossIncomes.getDoubleValue(PercentileArrayFunction.Variables.P80); -// System.out.println("P50 value from the percentile function: " + p50HouseholdsGrossIncome + " P20: " + p20HouseholdsGrossIncome + " P40: " + p40HouseholdsGrossIncome + -// " P60: " + p60HouseholdsGrossIncome + " P80: " + p80HouseholdsGrossIncome); - - stats.setYdses_p20(p20HouseholdsGrossIncome); - stats.setYdses_p40(p40HouseholdsGrossIncome); - stats.setYdses_p60(p60HouseholdsGrossIncome); - stats.setYdses_p80(p80HouseholdsGrossIncome); + var hh_income_cs = new CrossSection<>(model::getBenefitUnits, BenefitUnit::getI_yNonBenHhGrossAsinhNoNull); + var hh_income_stats = new Stats(hh_income_cs.get()).descrStats(); + wealthIncomeStats.setYHhQuintilesC5P20(hh_income_stats.getPercentile(20.0)); + wealthIncomeStats.setYHhQuintilesC5P40(hh_income_stats.getPercentile(40.0)); + wealthIncomeStats.setYHhQuintilesC5P60(hh_income_stats.getPercentile(60.0)); + wealthIncomeStats.setYHhQuintilesC5P80(hh_income_stats.getPercentile(80.0)); - } - - - @Override - public double getDoubleValue(Enum variableID) { - // TODO Auto-generated method stub - return 0; - } - - } - - private class EDI implements IDoubleSource { - final SimPathsModel model = (SimPathsModel) getManager(); - private CrossSection.Double householdsEDICS; - private PercentileArrayFunction percentileFunctionHouseholdsEDI; - private double p50HouseholdsEDI; - - public void update() { - householdsEDICS = new CrossSection.Double(model.getBenefitUnits(), BenefitUnit.class, "getEquivalisedDisposableIncomeYearly", true); - percentileFunctionHouseholdsEDI = new PercentileArrayFunction(householdsEDICS); - percentileFunctionHouseholdsEDI.updateSource(); - p50HouseholdsEDI = percentileFunctionHouseholdsEDI.getDoubleValue(PercentileArrayFunction.Variables.P50); - stats.setEdi_p50(p50HouseholdsEDI); -// System.out.println("Median EDI (collector) "+p50HouseholdsEDI); - } - - @Override - public double getDoubleValue(Enum variableID) { - // TODO Auto-generated method stub - return 0; + if (initialDistributionCalculated) { + for (BenefitUnit benefitUnit : model.getBenefitUnits()) { + benefitUnit.updateIncomeQuintile(); + } + } + initialDistributionCalculated = true; } } - - private class GiniPersonalGrossEarnings implements IDoubleSource { + public class GiniPersonalGrossEarnings { //I calculate that the Gini coefficient for household-weights w_i and variables x_i: // G = [ sum_i sum_j w_i * w_j * abs( x_i - x_j) ] / [ 2 * (sum_i w_i) * (sum_j w_j * x_j) ] //Note in this particular case, the x_i are the personal (individual) gross income (potential earnings * labour supply) @@ -494,7 +464,7 @@ private class GiniPersonalGrossEarnings implements IDoubleSource { private double giniWeightedPersonalGrossEarningsNational; //Update gini coefficient of personal gross earnings - public void update() { + private void update() { //Note that weighted means individual person weighted measures double weightedAbsDiffPersonalGrossEarningsNational = 0.; //Sum of absolute difference between two person's weighted gross earnings (personal weight * potential earnings * labour supply) @@ -563,28 +533,25 @@ public void update() { log.info("giniWeightedPersonalGrossEarningsRegionalMap for " + region + " = " + giniWeightedPersonalGrossEarningsRegionalMap.get(region) + ", weightedAbsDiffEquivalisedIncomeRegional.get(region) = " + weightedAbsDiffPersonalGrossEarningsRegional.get(region) + ", totalPersonWeightForRegion = " + totalPersonWeightForRegion + ", totalWeightedPersonalGrossEarningsForRegion = " + totalWeightedPersonalGrossEarningsForRegion); } giniWeightedPersonalGrossEarningsNational = weightedAbsDiffPersonalGrossEarningsNational / (2. * totalPersonWeightNational * totalWeightedPersonalGrossEarningsNational); - stats.setGiniPersonalGrossEarningsNational(giniWeightedPersonalGrossEarningsNational); + wealthIncomeStats.setGiniPersonalGrossEarningsNational(giniWeightedPersonalGrossEarningsNational); log.info("giniWeightedPersonalGrossEarningsNational = " + giniWeightedPersonalGrossEarningsNational + ", weightedAbsDiffPersonalGrossEarningsNational = " + weightedAbsDiffPersonalGrossEarningsNational + ", totalPersonWeightNational = " + totalPersonWeightNational + ", totalWeightedPersonalGrossEarningsNational = " + totalWeightedPersonalGrossEarningsNational); } - //Getter methods to pass values to functions - - //For national level - public double getGiniPersonalGrossEarningsNational() { + /// Gini coefficient at the national level. + public double national() { return giniWeightedPersonalGrossEarningsNational; } - //For regional level - @Override - public double getDoubleValue(Enum region) { + /// Gini coefficient in the specified [Region]. + public double inRegion(Region region) { return giniWeightedPersonalGrossEarningsRegionalMap.get(region); } } - private class GiniEquivalisedHouseholdDisposableIncome implements IDoubleSource { + public class GiniEquivalisedHouseholdDisposableIncome { //I calculate that the Gini coefficient for household-weights w_i and variables x_i: // G = [ sum_i sum_j w_i * w_j * abs( x_i - x_j) ] / [ 2 * (sum_i w_i) * (sum_j w_j * x_j) ] @@ -597,7 +564,7 @@ private class GiniEquivalisedHouseholdDisposableIncome implements IDoubleSource private double giniWeightedEquivalisedHouseholdDisposableIncomeNational; //Update gini coefficient of household disposable income - public void update() { + private void update() { //Note that weighted means household weighted measures double weightedAbsDiffEquivalisedIncomeNational = 0.; //Sum of absolute difference between two household's weighted equivalised income (household weight * equivalised weight * household disposable income) @@ -666,21 +633,18 @@ public void update() { log.info("giniHouseholdDisposableIncomeRegional for " + region + " = " + giniWeightedEquivalisedHouseholdDisposableIncomeRegionalMap.get(region) + ", weightedAbsDiffEquivalisedIncomeRegional.get(region) = " + weightedAbsDiffEquivalisedIncomeRegional.get(region) + ", totalHouseholdWeightForRegion = " + totalHouseholdWeightForRegion + ", totalWeightedEquivalisedHouseholdIncomeForRegion = " + totalWeightedEquivalisedHouseholdIncomeForRegion); } giniWeightedEquivalisedHouseholdDisposableIncomeNational = weightedAbsDiffEquivalisedIncomeNational / (2. * totalHouseholdWeightNational * totalWeightedEquivalisedHouseholdIncomeNational); - stats.setGiniEquivalisedHouseholdDisposableIncomeNational(giniWeightedEquivalisedHouseholdDisposableIncomeNational); + wealthIncomeStats.setGiniEquivalisedHouseholdDisposableIncomeNational(giniWeightedEquivalisedHouseholdDisposableIncomeNational); log.info("giniWeightedEquivalisedHouseholdDisposableIncomeNational = " + giniWeightedEquivalisedHouseholdDisposableIncomeNational + ", weightedAbsDiffEquivalisedIncomeNational = " + weightedAbsDiffEquivalisedIncomeNational + ", totalHouseholdWeightNational = " + totalHouseholdWeightNational + ", totalWeightedEquivalisedHouseholdIncomeNational = " + totalWeightedEquivalisedHouseholdIncomeNational); } - //Getter methods to pass values to functions - - //For national level - public double getGiniEquivalisedHouseholdDisposableIncomeNational() { + /// Gini coefficient at the national level. + public double national() { return giniWeightedEquivalisedHouseholdDisposableIncomeNational; } - //For regional level - @Override - public double getDoubleValue(Enum region) { + /// Gini coefficient in the specified [Region]. + public double inRegion(Region region) { return giniWeightedEquivalisedHouseholdDisposableIncomeRegionalMap.get(region); } @@ -702,7 +666,7 @@ private void calculateEquivalisedHouseholdDisposableIncome() { totalWeight += house.getWeight(); } else { //Cannot include house in statistics as unable to calculate eq disp income - house.setAtRiskOfPoverty(1); //If benefit unit has equivalised disposable income < 0, it should be classified as at risk of poverty + house.setYPvrtyFlag(1); //If benefit unit has equivalised disposable income < 0, it should be classified as at risk of poverty } } @@ -737,18 +701,18 @@ public int compare(Pair pair1, Pair pa double atRiskOfPovertyThreshold = median * 0.6; // log.info("atRiskOfPovertyThreshold = " + atRiskOfPovertyThreshold); - stats.setMedianEquivalisedHouseholdDisposableIncome(median); //Save median household equivalised disposable income in statistics object -// stats.setRiskOfPovertyThreshold(atRiskOfPovertyThreshold); //Risk-of-poverty threshold is set at 60% of the national median equivalised household disposable income. + wealthIncomeStats.setMedianEquivalisedHouseholdDisposableIncome(median); //Save median household equivalised disposable income in statistics object +// wealthIncomeStats.setRiskOfPovertyThreshold(atRiskOfPovertyThreshold); //Risk-of-poverty threshold is set at 60% of the national median equivalised household disposable income. // System.out.println("Median EDI " + median + " Poverty threshold " + atRiskOfPovertyThreshold); //For use in charts for(Pair pairHouse_Income: arrHouse_eqHouseholdDispIncome) { BenefitUnit house = pairHouse_Income.getFirst(); if(house.getEquivalisedDisposableIncomeYearly() < atRiskOfPovertyThreshold) { - house.setAtRiskOfPoverty(1); + house.setYPvrtyFlag(1); } else { - house.setAtRiskOfPoverty(0); + house.setYPvrtyFlag(0); } } @@ -761,10 +725,6 @@ private void calculateGiniCoefficients() { //Called just before database dump } - private void calculateEDI() { - edi.update(); - } - private void calculateGrossIncome() { yHhQuintilesMonthC5.update(); grossLabourIncome.update(); @@ -810,23 +770,17 @@ public void setDataDumpTimePeriod(Double dataDumpTimePeriod) { this.dataDumpTimePeriod = dataDumpTimePeriod; } - public Statistics getStats() { - return stats; + public WealthIncomeStatistics getWealthIncomeStats() { + return wealthIncomeStats; } - public void setStats(Statistics stats) { - this.stats = stats; + public void setWealthIncomeStats(WealthIncomeStatistics wealthIncomeStats) { + this.wealthIncomeStats = wealthIncomeStats; } - public Statistics2 getStats2() { return stats2; } - - public void setStats2(Statistics2 stats2) { this.stats2 = stats2; } + public DemographicStatistics getDemographicStats() { return demographicStats; } - public Statistics3 getStats3() { return stats3; } - - public void setStats3(Statistics3 stats3) { - this.stats3 = stats3; - } + public void setDemographicStats(DemographicStatistics demographicStats) { this.demographicStats = demographicStats; } public boolean isExportToDatabase() { return exportToDatabase; @@ -844,12 +798,12 @@ public void setExportToCSV(boolean exportToCSV) { this.exportToCSV = exportToCSV; } - public boolean isPersistStatistics() { - return persistStatistics; + public boolean isPersistWealthIncomeStatistics() { + return persistWealthIncomeStatistics; } - public void setPersistStatistics(boolean persistStatistics) { - this.persistStatistics = persistStatistics; + public void setPersistWealthIncomeStatistics(boolean persistWealthIncomeStatistics) { + this.persistWealthIncomeStatistics = persistWealthIncomeStatistics; } public boolean isCalculateGiniCoefficients() { @@ -860,26 +814,34 @@ public void setCalculateGiniCoefficients(boolean calculateGiniCoefficients) { this.calculateGiniCoefficients = calculateGiniCoefficients; } - public boolean isPersistStatistics2() { - return persistStatistics2; + public boolean isPersistDemographicStatistics() { + return persistDemographicStatistics; } - public void setPersistStatistics2(boolean val) { - persistStatistics2 = val; + public void setPersistDemographicStatistics(boolean val) { + persistDemographicStatistics = val; } - public boolean isPersistStatistics3() { - return persistStatistics3; - } + public boolean isPersistAlignmentStatistics() { + return persistAlignmentStatistics; + } - public void setPersistStatistics3(boolean val) { - persistStatistics3 = val; - } + public void setPersistAlignmentStatistics(boolean val) { + persistAlignmentStatistics = val; + } public void calculateAtRiskOfPoverty() { calculateEquivalisedHouseholdDisposableIncome(); } + public boolean isPersistLabourStatistics() { + return persistLabourStatistics; + } + + public void setPersistLabourStatistics(boolean persistLabourStatistics) { + this.persistLabourStatistics = persistLabourStatistics; + } + public boolean isPersistHealthStatistics() { return persistHealthStatistics; } @@ -888,4 +850,12 @@ public void setPersistHealthStatistics(boolean persistHealthStatistics) { this.persistHealthStatistics = persistHealthStatistics; } + public boolean isPersistWellbeingByGender() { + return persistWellbeingByGender; + } + + public void setPersistWellbeingByGender(boolean persistWellbeingByGender) { + this.persistWellbeingByGender = persistWellbeingByGender; + } + } diff --git a/src/main/java/simpaths/experiment/SimPathsMultiRun.java b/src/main/java/simpaths/experiment/SimPathsMultiRun.java index 31fe45c55..5594d02e2 100644 --- a/src/main/java/simpaths/experiment/SimPathsMultiRun.java +++ b/src/main/java/simpaths/experiment/SimPathsMultiRun.java @@ -2,8 +2,8 @@ package simpaths.experiment; // import Java packages -import org.apache.log4j.Level; import org.apache.commons.cli.*; +import org.apache.commons.cli.help.HelpFormatter; import org.apache.commons.io.FileUtils; import org.yaml.snakeyaml.Yaml; import java.io.FileInputStream; @@ -22,10 +22,15 @@ import microsim.gui.shell.MultiRunFrame; import simpaths.model.enums.Country; +import org.apache.logging.log4j.Level; // Logging and file writing -import org.apache.log4j.FileAppender; -import org.apache.log4j.Logger; -import org.apache.log4j.PatternLayout; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.apache.logging.log4j.core.LoggerContext; +import org.apache.logging.log4j.core.appender.FileAppender; +import org.apache.logging.log4j.core.config.Configurator; +import org.apache.logging.log4j.core.layout.PatternLayout; + import java.io.*; @@ -37,6 +42,7 @@ public class SimPathsMultiRun extends MultiRun { private static int startYear; private static int endYear = 2020; private static int maxNumberOfRuns = 25; + private static boolean multiRunMode = false; private static Long randomSeed = 615L; public static boolean executeWithGui = true; @@ -58,7 +64,7 @@ public class SimPathsMultiRun extends MultiRun { private static double interestRateInnov = 0.0; private static double disposableIncomeFromLabourInnov = 0.0; private Long counter = 0L; - public static Logger log = Logger.getLogger(SimPathsMultiRun.class); + public static Logger log = LogManager.getLogger(SimPathsMultiRun.class); private static boolean persist_population; private static boolean persist_root; @@ -72,6 +78,8 @@ public class SimPathsMultiRun extends MultiRun { */ public static void main(String[] args) { + multiRunMode = true; + // process Yaml config file if (!parseYamlConfig(args)) { // if parseYamlConfig returns false (indicating bad filename passed), exit main @@ -83,13 +91,8 @@ public static void main(String[] args) { // set default values for country and start year MultiKeyCoefficientMap lastDatabaseCountryAndYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + File.separator + Parameters.DatabaseCountryYearFilename + ".xlsx", "Data", 1); try { - if (lastDatabaseCountryAndYear.keySet().stream().anyMatch(key -> key.toString().equals("MultiKey[IT]"))) { - countryString = "Italy"; - country = Country.IT; - } else { - countryString = "United Kingdom"; - country = Country.UK; - } + countryString = "United Kingdom"; + country = Country.UK; String valueYear = lastDatabaseCountryAndYear.getValue(country.toString()).toString(); startYear = Integer.parseInt(valueYear); } catch (NullPointerException e) { @@ -112,6 +115,8 @@ public static void main(String[] args) { } country = Country.getCountryFromNameString(countryString); + Parameters.validateStartYear(startYear); + //Save the last selected country and year to Excel to use in the model String[] columnNames = {"Country", "Year"}; Object[][] data = new Object[1][columnNames.length]; @@ -216,8 +221,7 @@ private static boolean parseCommandLineArgs(String[] args) { options.addOption(helpOption); CommandLineParser parser = new DefaultParser(); - HelpFormatter formatter = new HelpFormatter(); - formatter.setOptionComparator(null); + var formatter = HelpFormatter.builder().get(); try { CommandLine cmd = parser.parse(options, args); @@ -286,21 +290,24 @@ private static boolean parseCommandLineArgs(String[] args) { System.setOut(new PrintStream(new BufferedOutputStream(new FileOutputStream(logDir.getPath() + "/run_" + randomSeed + ".txt")), true)); // Writing logs to `run_[seed].log` - FileAppender appender = new FileAppender(); - appender.setName("Run logging"); - appender.setFile(logDir.getPath() + "/run_" + randomSeed + ".log"); - appender.setAppend(false); - appender.setLayout(new PatternLayout("%d{yyyy MMM dd HH:mm:ss} - %m%n")); - appender.activateOptions(); - Logger.getRootLogger().setLevel(Level.DEBUG); - Logger.getRootLogger().addAppender(appender); + var layout = PatternLayout.newBuilder().setPattern("%d{yyyy MMM dd HH:mm:ss} - %m%n").build(); + var appender = FileAppender.newBuilder() + .setFileName(logDir.getPath() + "/run_" + randomSeed + ".log") + .setName("Run logging") + .setAppend(false) + .setLayout(layout) + .build(); + Configurator.setRootLevel(Level.DEBUG); + var configuration = LoggerContext.getContext().getConfiguration(); + configuration.getRootLogger().addAppender(appender, Level.DEBUG, null); + Configurator.reconfigure(configuration); } catch (FileNotFoundException e) { throw new RuntimeException(e); } } } catch (ParseException e) { System.err.println("Error parsing command line arguments: " + e.getMessage()); - formatter.printHelp("SimPathsMultiRun", options); + printHelpMessage(formatter, options); return false; } @@ -312,7 +319,11 @@ private static void printHelpMessage(HelpFormatter formatter, Options options) { "resetting the population to the start year and iterating from the start seed. " + "It takes the following options:"; String footer = "When running with no display, `-g` must be set to `false`."; - formatter.printHelp("SimPathsMultiRun", header, options, footer, true); + try { + formatter.printHelp("SimPathsMultiRun", header, options, footer, true); + } catch (IOException e) { + System.err.println("failed to print CLI help: " + e.getMessage()); + } } private static boolean parseYamlConfig(String[] args) { @@ -533,8 +544,8 @@ private static Object convertToType(Object value, Class targetType) { public void buildExperiment(SimulationEngine engine) { SimPathsModel model = new SimPathsModel(Country.getCountryFromNameString(countryString), startYear); - if (persist_population) model.setPersistPopulation(true); - if (persist_root) model.setPersistDatabasePath(Parameters.getInputDirectory() + "input"); + if (persist_population) SimPathsModel.setPersistPopulation(true); + if (persist_root) SimPathsModel.setPersistDatabasePath(Parameters.getInputDirectory() + "input"); updateLocalParameters(model); if (modelArgs != null) updateParameters(model, modelArgs); @@ -579,6 +590,14 @@ else if (counter==2) } } + public static int getMaxNumberOfRuns() { + return maxNumberOfRuns; + } + + public static boolean isMultiRunMode() { + return multiRunMode; + } + @Override public boolean nextModel() { counter++; diff --git a/src/main/java/simpaths/experiment/SimPathsObserver.java b/src/main/java/simpaths/experiment/SimPathsObserver.java index 6c01e473f..d7c42ae3e 100644 --- a/src/main/java/simpaths/experiment/SimPathsObserver.java +++ b/src/main/java/simpaths/experiment/SimPathsObserver.java @@ -2,8 +2,17 @@ package simpaths.experiment; // import Java packages -import java.awt.*; -import java.util.*; +import java.awt.Color; +import java.util.ArrayList; +import java.util.LinkedHashMap; +import java.util.LinkedHashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; +import java.util.function.Function; +import java.util.function.Predicate; +import java.util.function.Supplier; + import javax.swing.JComponent; import javax.swing.JInternalFrame; import javax.swing.JPanel; @@ -12,18 +21,28 @@ import javax.swing.ScrollPaneConstants; // import plug-in packages -import simpaths.data.filters.*; import simpaths.model.BenefitUnit; import simpaths.model.SimPathsModel; import simpaths.model.Validator; -import simpaths.model.enums.*; +import simpaths.model.enums.Country; +import simpaths.model.enums.Education; +import simpaths.model.enums.EducationLevel; +import simpaths.model.enums.Gender; +import simpaths.model.enums.HistogramTypeEnum; +import simpaths.model.enums.Les_c4; +import simpaths.model.enums.Region; + import org.apache.commons.collections4.map.LinkedMap; import org.apache.commons.collections4.map.MultiKeyMap; -import org.apache.log4j.Logger; import net.miginfocom.swing.MigLayout; - +import microsim.FilteredCollection; // import JAS-mine packages import microsim.annotation.GUIparameter; +import microsim.caching.OnceUntil; +import microsim.dev.statistics.CrossSection; +import microsim.dev.statistics.Stats; +import microsim.dev.statistics.WeightedCrossSection; +import microsim.dev.statistics.WeightedStats; import microsim.engine.AbstractSimulationObserverManager; import microsim.engine.SimulationCollectorManager; import microsim.engine.SimulationManager; @@ -37,29 +56,67 @@ import microsim.gui.plot.Weighted_PyramidPlotter; import microsim.gui.plot.TimeSeriesSimulationPlotter; import microsim.gui.plot.Weighted_HistogramSimulationPlotter; -import microsim.statistics.IDoubleSource; -import microsim.statistics.ILongSource; -import microsim.statistics.functions.MultiTraceFunction; -import microsim.statistics.weighted.Weighted_CrossSection; -import microsim.statistics.weighted.functions.Weighted_MeanArrayFunction; -import microsim.statistics.weighted.functions.Weighted_SumArrayFunction; // import LABOURsim packages import simpaths.model.Person; import simpaths.data.Parameters; +import simpaths.data.filters.BenefitUnitFilters; +import simpaths.data.filters.Filters; + import org.jfree.chart.renderer.xy.XYLineAndShapeRenderer; +record AgeRange(int from, int to) implements Predicate { + public double employmentValidation(int year, Gender gender) { + return Parameters.validationEmployment(year, gender, this.from, this.to); + } + + public double mentalHealthValidation(int year, Gender gender) { + return Parameters.validationMentalHealth(year, gender, this.from, this.to); + } + + public double psychDistressValidation(int year, Gender gender) { + return Parameters.validationPsychDistress(year, gender, this.from, this.to); + } + + public double lifeSatValidation(int year, Gender gender) { + return Parameters.validationLifeSatisfaction(year, gender, this.from, this.to); + } + + public double mcsValidation(int year, Gender gender) { + return Parameters.validationHealthMcs(year, gender, this.from, this.to); + } + + public double pcsValidation(int year, Gender gender) { + return Parameters.validationHealthPcs(year, gender, this.from, this.to); + } + + public double eduValidation(int year, EducationLevel level) { + return Parameters.validationEduc(year, level, this.from, this.to); + } + + public double healthValidation(int year, Gender gender) { + return Parameters.validationHealth(year, gender, this.from, this.to); + } + + @Override + public boolean test(Person arg0) { + return Filters.ageRange(this.from, this.to).test(arg0); + } +} + +@FunctionalInterface +interface AgeGenderValidation { + Double apply(AgeRange ar, int year, Gender gender); +} + /** * * CLASS TO MANAGE OBSERVER OF SIMULATED OUTPUT * */ -public class SimPathsObserver extends AbstractSimulationObserverManager implements EventListener, ILongSource { +public class SimPathsObserver extends AbstractSimulationObserverManager implements EventListener { - // default simulation parameters - private static Logger log = Logger.getLogger(SimPathsObserver.class); - @GUIparameter(description="Toggle to turn all charts on/off") private Boolean showCharts = true; @@ -158,22 +215,11 @@ public class SimPathsObserver extends AbstractSimulationObserverManager implemen // @GUIparameter(description = "Allow convergence plots to float freely in GUI, otherwise contain plots in a frame") private boolean floatingConvergencePlots = false; //Allow convergence plots to float freely in GUI, otherwise contain plots in a frame - private LinkedHashSet decadeAgeGroupFilterSet; - - private LinkedHashSet decadeValidEducationAgeGroupFilterSet; - - private LinkedHashSet disabledHealthAgeGroupFilterSet; - - private LinkedHashSet healthMentalAgeGroupFilterSet; - - private LinkedHashSet childrenByAgeFilterSet; + private ArrayList decades; + private ArrayList healthAgeRanges; private ScatterplotSimulationPlotterRefreshable convergenceElasticitiesPlotter; - private Weighted_CrossSection.Double wagesCS; - -// private Weighted_CrossSection.Double wagesAtRiskOfWorkCS; - Set updateChartSet; Set tabSet; @@ -184,7 +230,7 @@ public class SimPathsObserver extends AbstractSimulationObserverManager implemen Map potentialEarningsPlots; - MultiKeyMap meanPotentialEarningsMultiMap; + MultiKeyMap> meanPotentialEarningsMultiMap; private long countIterations = 0; @@ -204,17 +250,50 @@ public SimPathsObserver(SimulationManager manager, SimulationCollectorManager si super(manager, simulationCollectionManager); } + private void ageGenderPlots(String label, + List ageRanges, + Function getObservable, + AgeGenderValidation validation) { + var engine = this.getEngine(); + var plots = new LinkedHashSet(); + + // FIXME: reduce duplication with colorArrayList + var colors = new ArrayList(); + colors.add(new Color(162, 56, 255)); + colors.add(new Color(254, 131, 0)); + + for (var ar : ageRanges) { + var inRange = new FilteredCollection<>(this.model::getPersons, ar).oncePerSimTime(engine); + var males = new FilteredCollection<>(inRange, Filters.male()); + var females = new FilteredCollection<>(inRange, Filters.female()); + + var maleCs = new WeightedCrossSection<>(males, getObservable, Person::getWeight); + var femaleCs = new WeightedCrossSection<>(females, getObservable, Person::getWeight); + + // FIXME: should this be cached? What about validation values? + var meanMale = OnceUntil.timeChanges(() -> new WeightedStats(maleCs.get()).mean(), engine); + var meanFemale = OnceUntil.timeChanges(() -> new WeightedStats(femaleCs.get()).mean(), engine); + + Supplier validMale = () -> validation.apply(ar, this.model.getYear(), Gender.Male); + Supplier validFemale = () -> validation.apply(ar, this.model.getYear(), Gender.Female); + + var plotter = new TimeSeriesSimulationPlotter(label + " by age: " + ar.from() + " - " + ar.to(), ""); + plotter.addSource("males", meanMale, colors.get(0), false); + plotter.addSource("females", meanFemale, colors.get(1), false); + plotter.addSource("Validation males", validMale, colors.get(0), true); + plotter.addSource("Validation females", validFemale, colors.get(1), true); + + this.updateChartSet.add(plotter); // set to be updated in buildSchedule method + plots.add(plotter); + } + this.tabSet.add(createScrollPaneFromPlots(plots, label + ": age/gender", 2)); + } + - /** - * - * XXX - * - */ @Override public void buildObjects() { - - //TODO: Change construction of objects like Weighted_CrossSection.Integer from using Java reflection to using getIntValue methods in Person class in order to improve speed? - + var engine = this.getEngine(); + if(showCharts) { model = (SimPathsModel) getManager(); @@ -224,80 +303,19 @@ public void buildObjects() { //Renderers - these allow different graphs to use different look for the series displayed XYLineAndShapeRenderer studentAgeRenderer = new XYLineAndShapeRenderer(); //Set up a new renderer to define series colors for this chart - Stroke dashed = new BasicStroke(1.0f,BasicStroke.CAP_BUTT, BasicStroke.JOIN_MITER, 10.0f, new float[] {10.0f}, 0.0f); - - - //Filters - can be shared amongst different Cross Sections - AgeGroupCSfilter age0Filter = new AgeGroupCSfilter(0, 0); - AgeGroupCSfilter age2_10Filter = new AgeGroupCSfilter(2, 10); - AgeGroupCSfilter age11_15Filter = new AgeGroupCSfilter(11, 15); - AgeGroupCSfilter age0_18Filter = new AgeGroupCSfilter(0,18); - AgeGroupCSfilter age19_25Filter = new AgeGroupCSfilter(19,25); - - AgeGroupCSfilter age15_19Filter = new AgeGroupCSfilter(15,19); - AgeGroupCSfilter age20_24Filter = new AgeGroupCSfilter(20,24); - AgeGroupCSfilter age25_29Filter = new AgeGroupCSfilter(25,29); - AgeGroupCSfilter age30_34Filter = new AgeGroupCSfilter(30,34); - AgeGroupCSfilter age35_39Filter = new AgeGroupCSfilter(35,39); - AgeGroupCSfilter age40_59Filter = new AgeGroupCSfilter(40, 59); - AgeGroupCSfilter age60_79Filter = new AgeGroupCSfilter(60, 79); - AgeGroupCSfilter age80_100Filter = new AgeGroupCSfilter(80, 100); - - AgeGroupCSfilter age10_19Filter = new AgeGroupCSfilter(10, 19); - AgeGroupCSfilter age20_29Filter = new AgeGroupCSfilter(20,29); - AgeGroupCSfilter age30_39Filter = new AgeGroupCSfilter(30,39); - AgeGroupCSfilter age40_49Filter = new AgeGroupCSfilter(40,49); - AgeGroupCSfilter age50_59Filter = new AgeGroupCSfilter(50,59); - AgeGroupCSfilter age60_69Filter = new AgeGroupCSfilter(60, 69); - AgeGroupCSfilter age70_80Filter = new AgeGroupCSfilter(70, 80); - - AgeGroupCSfilter age0_49Filter = new AgeGroupCSfilter(0, 49); - AgeGroupCSfilter age50_74Filter = new AgeGroupCSfilter(50, 74); - AgeGroupCSfilter age75_100Filter = new AgeGroupCSfilter(75, 100); - - ValidEducationAgeGroupCSfilter validEdAge15_19Filter = new ValidEducationAgeGroupCSfilter(15, 19); - ValidEducationAgeGroupCSfilter validEdAge20_29Filter = new ValidEducationAgeGroupCSfilter(20,29); - ValidEducationAgeGroupCSfilter validEdAge30_39Filter = new ValidEducationAgeGroupCSfilter(30,39); - ValidEducationAgeGroupCSfilter validEdAge40_49Filter = new ValidEducationAgeGroupCSfilter(40,49); - ValidEducationAgeGroupCSfilter validEdAge50_59Filter = new ValidEducationAgeGroupCSfilter(50,59); - - FemalesWithChildrenByChildAgeCSfilter childAged0_5Filter = new FemalesWithChildrenByChildAgeCSfilter(0, 5); - FemalesWithChildrenByChildAgeCSfilter childAged6_18Filter = new FemalesWithChildrenByChildAgeCSfilter(6, 18); - - - decadeAgeGroupFilterSet = new LinkedHashSet(); -// decadeAgeGroupFilterSet.add(age0_18Filter); -// decadeAgeGroupFilterSet.add(age15_19Filter); -// decadeAgeGroupFilterSet.add(age10_19Filter); - decadeAgeGroupFilterSet.add(age20_29Filter); - decadeAgeGroupFilterSet.add(age30_39Filter); - decadeAgeGroupFilterSet.add(age40_49Filter); - decadeAgeGroupFilterSet.add(age50_59Filter); -// decadeAgeGroupFilterSet.add(age60_69Filter); -// decadeAgeGroupFilterSet.add(age70_80Filter); - - - decadeValidEducationAgeGroupFilterSet = new LinkedHashSet(); - decadeValidEducationAgeGroupFilterSet.add(validEdAge20_29Filter); - decadeValidEducationAgeGroupFilterSet.add(validEdAge30_39Filter); - decadeValidEducationAgeGroupFilterSet.add(validEdAge40_49Filter); - decadeValidEducationAgeGroupFilterSet.add(validEdAge50_59Filter); - - disabledHealthAgeGroupFilterSet = new LinkedHashSet<>(); - disabledHealthAgeGroupFilterSet.add(age0_49Filter); - disabledHealthAgeGroupFilterSet.add(age50_74Filter); - disabledHealthAgeGroupFilterSet.add(age75_100Filter); - - healthMentalAgeGroupFilterSet = new LinkedHashSet<>(); - healthMentalAgeGroupFilterSet.add(age20_29Filter); - healthMentalAgeGroupFilterSet.add(age30_39Filter); - healthMentalAgeGroupFilterSet.add(age40_49Filter); - healthMentalAgeGroupFilterSet.add(age50_59Filter); + // FIXME: cache the filtered population? + this.decades = new ArrayList<>(); + this.decades.add(new AgeRange(20, 29)); + this.decades.add(new AgeRange(30, 39)); + this.decades.add(new AgeRange(40, 49)); + this.decades.add(new AgeRange(50, 59)); + + // FIXME: cache the filtered population? + this.healthAgeRanges = new ArrayList<>(); + this.healthAgeRanges.add(new AgeRange(0, 49)); + this.healthAgeRanges.add(new AgeRange(50, 74)); + this.healthAgeRanges.add(new AgeRange(75, 100)); - - -// timeSeriesPlotSet = new LinkedHashSet(); -// histogramPlotSet = new LinkedHashSet(); updateChartSet = new LinkedHashSet(); //Set of all charts needed to be scheduled for updating (NOT the convergence plot!) tabSet = new LinkedHashSet(); //Set of all JInternalFrames each having a tab. Each tab frame will potentially contain more than one chart each. labourMarketPlots = new LinkedHashMap(); @@ -305,15 +323,12 @@ public void buildObjects() { meanPotentialEarningsMultiMap = MultiKeyMap.multiKeyMap(new LinkedMap<>()); for(Region region: Parameters.getCountryRegions()) { for(Education edu: Education.values()) { - RegionEducationCSfilter regionEduFilter = new RegionEducationCSfilter(region, edu); - wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHourlyWageRate1", true); - wagesCS.setFilter(regionEduFilter); - wagesCS.setCheckingTime(false); //Need to set to false to enable updating during convergence process whilst the simulation time is still the same - - Weighted_MeanArrayFunction meanPotentialEarnings = new Weighted_MeanArrayFunction(wagesCS); - meanPotentialEarnings.setCheckingTime(false); //Need to set to false to enable updating during convergence process whilst the simulation time is still the same - - meanPotentialEarningsMultiMap.put(region, edu, meanPotentialEarnings); + // do not cache this one to be able to update during convergence. + var filtered = new FilteredCollection<>(model::getPersons, + Filters.education(edu).and(Filters.region(region))); + var wagesCs = new WeightedCrossSection<>(filtered, Person::getHourlyWageRate1, Person::getWeight); + var wstats = WeightedStats.supplier(wagesCs); + meanPotentialEarningsMultiMap.put(region, edu, () -> wstats.get().mean()); } } @@ -324,37 +339,7 @@ public void buildObjects() { // INTER-TIMESTEP CHARTS FOR CONVERGENCE PROCESS - those that update potentially several times in between 'time-steps' (scheduled events) // //---------------------------------------------------------------------------------------------------------------------------------------- - -// //POTENTIAL EARNINGS -// potentialEarningsPlotter = new IndividualBarSimulationPlotter("Average Potential Earnings (per hour) (includes non-workers)", "currency (check whether national or euro!)"); -// for(Region region: Parameters.getCountryRegions()) { -// for(Education edu: Education.values()) { -// RegionEducationCSfilter regionEduFilter = new RegionEducationCSfilter(region, edu); -// wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getPotentialHourlyEarnings", true); -// wagesCS.setFilter(regionEduFilter); -// wagesCS.setCheckingTime(false); //Need to set to false to enable updating during convergence process whilst the simulation time is still the same -// Weighted_MeanArrayFunction meanWages = new Weighted_MeanArrayFunction(wagesCS); -// meanWages.setCheckingTime(false); -// potentialEarningsPlotter.addSources("(" + region.getName() + ", " + edu.toString() + ")", meanWages, colorOfEducation(edu)); -// } -// } -// GuiUtils.addWindow(potentialEarningsPlotter, 500, 200, 100 * Parameters.getCountryRegions().size(), 400); -// -// potentialEarningsAtRiskOfWorkPlotter = new IndividualBarSimulationPlotter("Average Potential Earnings (per hour) (excludes non-workers)", "currency (check whether national or euro!)"); -// for(Region region: Parameters.getCountryRegions()) { -// for(Education edu: Education.values()) { -// RegionEducationAtRiskOfWorkCSfilter regionEduAtRiskOfWorkFilter = new RegionEducationAtRiskOfWorkCSfilter(region, edu); -// wagesAtRiskOfWorkCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getPotentialHourlyEarnings", true); -// wagesAtRiskOfWorkCS.setFilter(regionEduAtRiskOfWorkFilter); -// wagesAtRiskOfWorkCS.setCheckingTime(false); //Need to set to false to enable updating during convergence process whilst the simulation time is still the same -// Weighted_MeanArrayFunction meanWagesAtRiskOfWork = new Weighted_MeanArrayFunction(wagesAtRiskOfWorkCS); -// meanWagesAtRiskOfWork.setCheckingTime(false); -// potentialEarningsAtRiskOfWorkPlotter.addSources("(" + region.getName() + ", " + edu.toString() + ")", meanWagesAtRiskOfWork, colorOfEducation(edu)); -// } -// } -// GuiUtils.addWindow(potentialEarningsAtRiskOfWorkPlotter, 1000, 200, 100 * Parameters.getCountryRegions().size(), 400); - //POTENTIAL EARNINGS & LABOUR MARKET CONVERGENCE PLOTS int width = 400; int height = 300; @@ -395,19 +380,6 @@ else if(edu.equals(Education.High)) { } - - //CREATE SCROLLABLE FRAME IN WHICH TO STORE ALL CONVERGENCE PLOTS FOR TIDY GUI -// if(!floatingConvergencePlots) { -// -// tabSet.add(createScrollPaneFromPlots(convergencePlots, "Labour Market Convergence", 3)); -// JInternalFrame convergenceFrame = new JInternalFrame("Labour Market Convergence Plots"); -// convergenceFrame.add(createScrollPaneFromPlots(convergencePlots, "Labour Market Convergence Plots", 3)); -// convergenceFrame.setResizable(true); -// convergenceFrame.setMaximizable(true); -// GuiUtils.addWindow(convergenceFrame, 500, 150, 1200, 600); -// -// } - //This is the color palette used by graphs in the simulation ArrayList colorArrayList = new ArrayList<>(); colorArrayList.add(new Color(162,56,255)); @@ -433,17 +405,17 @@ else if(edu.equals(Education.High)) { if (populationPyramid) { Set populationPyramidPlots = new LinkedHashSet(); Weighted_PyramidPlotter populationAgeGenderPlotter = new Weighted_PyramidPlotter(); - // Please note that the Pyramid plotter requires a Weighted_CrossSection.Double[2] - Weighted_CrossSection.Integer[] populationData = new Weighted_CrossSection.Integer[2]; - Weighted_CrossSection.Integer maleAgesCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "demAge", false); - maleAgesCS.setFilter(new GenderCSfilter(Gender.Male)); - populationData[0] = maleAgesCS; - Weighted_CrossSection.Integer femaleAgesCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "demAge", false); - femaleAgesCS.setFilter(new GenderCSfilter(Gender.Female)); - populationData[1] = femaleAgesCS; + var males = new FilteredCollection<>(model::getPersons, Filters.male()); + var females = new FilteredCollection<>(model::getPersons, Filters.female()); + + var malesCs = new WeightedCrossSection<>(males, Person::getDemAge, Person::getWeight) + .oncePerSimTime(engine); + var femalesCs = new WeightedCrossSection<>(females, Person::getDemAge, Person::getWeight) + .oncePerSimTime(engine); populationAgeGenderPlotter.setScalingFactor(model.getScalingFactor()); - populationAgeGenderPlotter.addCollectionSource(populationData); + populationAgeGenderPlotter.setLeft(malesCs); + populationAgeGenderPlotter.setRight(femalesCs); updateChartSet.add(populationAgeGenderPlotter); //Add to set to be updated in buildSchedule method populationPyramidPlots.add(populationAgeGenderPlotter); @@ -452,953 +424,673 @@ else if(edu.equals(Education.High)) { } TimeSeriesSimulationPlotter populationPlotter = new TimeSeriesSimulationPlotter("Population Statistics", ""); - // populationPlotter.addSeries("num of simulated Persons", model, "getNumberOfSimulatedPersons", true); - // populationPlotter.addSeries("num of simulated Households", model, "getNumberOfSimulatedHouseholds", true); if (showAdditionalCharts) { - // populationPlotter.addSeries("Official population projection", model, "getPopulationProjection", true); - populationPlotter.addSeries("(Scaled) Number of Households, occupants below 80 yo", model, "getWeightedNumberOfHouseholds80minus", true); - } - - populationPlotter.addSeries("(Scaled) Population Size", model, "getWeightedNumberOfPersons", true); - // populationPlotter.addSeries("(Scaled) Number of Households", model, "getWeightedNumberOfHouseholds", true); - + populationPlotter.addSource("(Scaled) Number of Households, occupants below 80 yo", + () -> model.getWeightedNumberOfHouseholds80minus()); + } + populationPlotter.addSource("(Scaled) Population Size", + () -> model.getWeightedNumberOfPersons()); populationPlotter.setName("Population statistics"); updateChartSet.add(populationPlotter); //Add to set to be updated in buildSchedule method tabSet.add(populationPlotter); } - //Population share by age. Display if showing diagnostic charts. - if(showAdditionalCharts) { - Weighted_CrossSection.Integer population0_18CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population0_18CS.setFilter(age0_18Filter); - Weighted_CrossSection.Integer population0_1CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population0_1CS.setFilter(age0Filter); - Weighted_CrossSection.Integer population2_10CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population2_10CS.setFilter(age2_10Filter); - Weighted_CrossSection.Integer population11_15CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population11_15CS.setFilter(age11_15Filter); - Weighted_CrossSection.Integer population19_25CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population19_25CS.setFilter(age19_25Filter); - Weighted_CrossSection.Integer population40_59CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population40_59CS.setFilter(age40_59Filter); - Weighted_CrossSection.Integer population60_79CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population60_79CS.setFilter(age60_79Filter); - Weighted_CrossSection.Integer population80_100CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getPersonCount", true); - population80_100CS.setFilter(age80_100Filter); - - - TimeSeriesSimulationPlotter populationAgePlotter = new TimeSeriesSimulationPlotter("Individuals by age", ""); - - - /* - //To allow diferent series to be of different colours or shapes, would have to change the TimeSeriersSimulationPlotter class in the GUI to allow changes to the renderer? - XYLineAndShapeRenderer r1 = new XYLineAndShapeRenderer(); - r1.setSeriesPaint(0, Color.yellow); - */ - - populationAgePlotter.addSeries("0-18 yo", new Weighted_SumArrayFunction.Integer(population0_18CS), null, new Color (162, 56, 255), false); - populationAgePlotter.addSeries("0 yo", new Weighted_SumArrayFunction.Integer(population0_1CS) , null, new Color (254, 131, 0), false); - populationAgePlotter.addSeries("2-10 yo", new Weighted_SumArrayFunction.Integer(population2_10CS), null, new Color (151, 144, 0), false); - populationAgePlotter.addSeries("11-15 yo", new Weighted_SumArrayFunction.Integer(population11_15CS), null, new Color (0, 144, 15), false); - populationAgePlotter.addSeries("19-25 yo", new Weighted_SumArrayFunction.Integer(population19_25CS), null, new Color (0, 53, 144), false); - populationAgePlotter.addSeries("40-59 yo", new Weighted_SumArrayFunction.Integer(population40_59CS), null, new Color (254, 0, 0), false); - populationAgePlotter.addSeries("60-79 yo", new Weighted_SumArrayFunction.Integer(population60_79CS), null, new Color (198, 0, 190), false); - populationAgePlotter.addSeries("80-100 yo", new Weighted_SumArrayFunction.Integer(population80_100CS), null, new Color (175, 0, 0), false); - - //Below the series from population projections for comparison: - if (showValidationStatistics) { - - populationAgePlotter.addSeries("0 - 18 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_0_18, new Color (162, 56, 255), true); - populationAgePlotter.addSeries("0 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_0_0, new Color (254, 131, 0), true); - populationAgePlotter.addSeries("2 - 10 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_2_10, new Color (151, 144, 0), true); - populationAgePlotter.addSeries("11 - 15 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_11_15, new Color (0, 144, 15), true); - populationAgePlotter.addSeries("19 - 25 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_19_25, new Color (0, 53, 144), true); - populationAgePlotter.addSeries("40 - 59 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_40_59, new Color (254, 0, 0), true); - populationAgePlotter.addSeries("60 - 79 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_60_79, new Color (198, 0, 190), true); - populationAgePlotter.addSeries("80 - 100 official projection", validator, Validator.DoublesVariables.populationProjectionsByAge_80_100, new Color (175, 0, 0), true); -// populationAgePlotter.addSeries("0 - 18 official projection", model, "getPopulationProjectionByAge0_18", true); -// populationAgePlotter.addSeries("0 official projection", model, "getPopulationProjectionByAge0", true); -// populationAgePlotter.addSeries("2 - 10 official projection", model, "getPopulationProjectionByAge2_10", true); -// populationAgePlotter.addSeries("19 - 25 official projection", model, "getPopulationProjectionByAge19_25", true); -// populationAgePlotter.addSeries("40 - 59 official projection", model, "getPopulationProjectionByAge40_59", true); -// populationAgePlotter.addSeries("60 - 79 official projection", model, "getPopulationProjectionByAge60_79", true); -// populationAgePlotter.addSeries("80 - 100 official projection", model, "getPopulationProjectionByAge80_100", true); - - } - - - populationAgePlotter.setName("Individuals by age"); - updateChartSet.add(populationAgePlotter); //Add to set to be updated in buildSchedule method - tabSet.add(populationAgePlotter); - - } - - if (activityStatus) { - Weighted_CrossSection.Integer employedCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isEmployed); //Get directly from the enum instead of going through a method - Weighted_CrossSection.Integer notEmployedCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isNotEmployed); - Weighted_CrossSection.Integer studentCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isStudent); - Weighted_CrossSection.Integer retiredCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isRetired); - Weighted_CrossSection.Integer notEmployedRetiredCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isNotEmployedOrRetired); - - TimeSeriesSimulationPlotter activityStatusPlotter = new TimeSeriesSimulationPlotter("Share of individuals by activity status", ""); - activityStatusPlotter.addSeries("Employed", new Weighted_MeanArrayFunction(employedCS), null, colorArrayList.get(0), false); - activityStatusPlotter.addSeries("Not Employed / Retired", new Weighted_MeanArrayFunction(notEmployedRetiredCS), null, colorArrayList.get(1), false); - activityStatusPlotter.addSeries("Not Employed", new Weighted_MeanArrayFunction(notEmployedCS), null, colorArrayList.get(4), false); - activityStatusPlotter.addSeries("Student", new Weighted_MeanArrayFunction(studentCS), null, colorArrayList.get(2), false); - activityStatusPlotter.addSeries("Retired", new Weighted_MeanArrayFunction(retiredCS), null, colorArrayList.get(3), false); - - activityStatusPlotter.addSeries("Employed validation", validator, Validator.DoublesVariables.activityStatus_Employed, colorArrayList.get(0), true); - activityStatusPlotter.addSeries("Not Employed / Retired validation", validator, Validator.DoublesVariables.activityStatus_NotEmployedRetired, colorArrayList.get(1), true); - activityStatusPlotter.addSeries("Student validation", validator, Validator.DoublesVariables.activityStatus_Student, colorArrayList.get(2), true); - // activityStatusPlotter.addSeries("Retired validation", validator, Validator.DoublesVariables.activityStatus_Retired, colorArrayList.get(3), true); - - activityStatusPlotter.setName("Activity status"); - updateChartSet.add(activityStatusPlotter); - tabSet.add(activityStatusPlotter); - } - - //HOMEOWNERSHIP STATUS - if (homeownershipStatus) { - Weighted_CrossSection.Double homeownersBUsCS = new Weighted_CrossSection.Double(model.getBenefitUnits(), BenefitUnit.Regressors.Homeownership_D); - TimeSeriesSimulationPlotter homeownershipStatusPlotter = new TimeSeriesSimulationPlotter("Share of benefit units owning homes", ""); - homeownershipStatusPlotter.addSeries("Homeowners", new Weighted_MeanArrayFunction(homeownersBUsCS), null, colorArrayList.get(0), false); - homeownershipStatusPlotter.addSeries("Homeowners validation", validator, Validator.DoublesVariables.homeownership_BenefitUnit, colorArrayList.get(0), true); - homeownershipStatusPlotter.setName("Homeownership status"); - updateChartSet.add(homeownershipStatusPlotter); - tabSet.add(homeownershipStatusPlotter); - } - - //STUDENT ENROLLMENT CHARTS - if(studentsByAge) { - //Students by Age Group - Weighted_CrossSection.Integer student15_19CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student15_19CS.setFilter(age15_19Filter); - Weighted_CrossSection.Integer student20_24CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student20_24CS.setFilter(age20_24Filter); - Weighted_CrossSection.Integer student25_29CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student25_29CS.setFilter(age25_29Filter); - Weighted_CrossSection.Integer student30_34CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student30_34CS.setFilter(age30_34Filter); - Weighted_CrossSection.Integer student35_39CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student35_39CS.setFilter(age35_39Filter); - Weighted_CrossSection.Integer student40_59CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student40_59CS.setFilter(age40_59Filter); - Weighted_CrossSection.Integer student60_79CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student60_79CS.setFilter(age60_79Filter); - Weighted_CrossSection.Integer student80_100CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - student80_100CS.setFilter(age80_100Filter); - - //Unfiltered student cross-section (nationally, for all ages) - Weighted_CrossSection.Integer studentCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - - TimeSeriesSimulationPlotter studentAgePlotter = new TimeSeriesSimulationPlotter("Proportion of students by age", ""); - studentAgePlotter.setRenderer(studentAgeRenderer); //Assign new renderer to the graph before adding data series - studentAgePlotter.addSeries("15-19 yo", new Weighted_MeanArrayFunction(student15_19CS), null, new Color (162, 56, 255), false); //'yo' means "years old" - studentAgePlotter.addSeries("20-24 yo", new Weighted_MeanArrayFunction(student20_24CS), null, new Color (254, 131, 0), false); - studentAgePlotter.addSeries("25-29 yo", new Weighted_MeanArrayFunction(student25_29CS), null, new Color (151, 144, 0), false); - - if (showAdditionalCharts) { - studentAgePlotter.addSeries("30-34 yo", new Weighted_MeanArrayFunction(student30_34CS), null, new Color (0, 144, 15), false); - studentAgePlotter.addSeries("35-39 yo", new Weighted_MeanArrayFunction(student35_39CS), null, new Color (0, 53, 144), false); - studentAgePlotter.addSeries("40-59 yo", new Weighted_MeanArrayFunction(student40_59CS), null, new Color (254, 0, 0), false); - studentAgePlotter.addSeries("60-79 yo", new Weighted_MeanArrayFunction(student60_79CS), null, new Color (198, 0, 190), false); - studentAgePlotter.addSeries("80-100 yo", new Weighted_MeanArrayFunction(student80_100CS), null, new Color (175, 0, 0), false); - studentAgePlotter.addSeries("all ages", new Weighted_MeanArrayFunction(studentCS), null, new Color (0, 0, 0), false); - } - - - studentAgePlotter.setName("Students by age"); - updateChartSet.add(studentAgePlotter); //Add to set to be updated in buildSchedule method - tabSet.add(studentAgePlotter); - - if (showValidationStatistics) { - - studentAgePlotter.addSeries("Validation 15-19 yo", validator, Validator.DoublesVariables.studentsByAge_15_19, new Color (162, 56, 255), true); - studentAgePlotter.addSeries("Validation 20-24 yo", validator, Validator.DoublesVariables.studentsByAge_20_24, new Color (254, 131, 0), true); - studentAgePlotter.addSeries("Validation 25-29 yo", validator, Validator.DoublesVariables.studentsByAge_25_29, new Color (151, 144, 0), true); - - if (showAdditionalCharts) { - studentAgePlotter.addSeries("Validation 30-34 yo", validator, Validator.DoublesVariables.studentsByAge_30_34, new Color (0, 144, 15), true); - studentAgePlotter.addSeries("Validation 35-39 yo", validator, Validator.DoublesVariables.studentsByAge_35_39, new Color (0, 53, 144), true); - studentAgePlotter.addSeries("Validation 40-59 yo", validator, Validator.DoublesVariables.studentsByAge_40_59, new Color (254, 0, 0), true); - studentAgePlotter.addSeries("Validation 60-79 yo", validator, Validator.DoublesVariables.studentsByAge_60_79, new Color (198, 0, 190), true); - studentAgePlotter.addSeries("Validation 80-100 yo", validator, Validator.DoublesVariables.studentsByAge_80_100, new Color (175, 0, 0), true); - studentAgePlotter.addSeries("Validation all ages", validator, Validator.DoublesVariables.studentsByAge_All, new Color (0, 0, 0), true); - } - - } - - } - - if(studentsByRegion && showAdditionalCharts) { - //Student chart by Region - TimeSeriesSimulationPlotter studentRegionPlotter = new TimeSeriesSimulationPlotter("Proportion of students by region", ""); - int colorCounter = 0; - for(Region region: Parameters.getCountryRegions()) { - RegionCSfilter regionFilter = new RegionCSfilter(region); - Weighted_CrossSection.Integer regionCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getStudent", true); - regionCS.setFilter(regionFilter); - studentRegionPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(regionCS), null, colorArrayList.get(colorCounter), false); //'yo' means "years old" - if (showValidationStatistics) { - studentRegionPlotter.addSeries("Validation "+region.getName(), validator, Validator.DoublesVariables.valueOf("studentsByRegion_"+region), colorArrayList.get(colorCounter), true); - } - colorCounter++; - } - studentRegionPlotter.setName("Students by region"); - updateChartSet.add(studentRegionPlotter); //Add to set to be updated in buildSchedule method - tabSet.add(studentRegionPlotter); - - - } - - //EDUCATION LEVEL CHARTS - - //Education levels for all adults (18 years old and over) - if(educationOfAdults) { - ValidEducationAgeGroupCSfilter over17yoFilter = new ValidEducationAgeGroupCSfilter(18,100); //So we exclude children - Weighted_CrossSection.Integer lowEducationAdultCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getLowEducation", true); - lowEducationAdultCS.setFilter(over17yoFilter); - Weighted_CrossSection.Integer midEducationAdultCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getMidEducation", true); - midEducationAdultCS.setFilter(over17yoFilter); - Weighted_CrossSection.Integer highEducationAdultCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getHighEducation", true); - highEducationAdultCS.setFilter(over17yoFilter); - - TimeSeriesSimulationPlotter eduPlotter = new TimeSeriesSimulationPlotter("Education level of over-17 yo's \n(excluding students)", ""); //'yo' means "years old" - eduPlotter.addSeries("Low", new Weighted_MeanArrayFunction(lowEducationAdultCS), null, colorArrayList.get(0), false); - eduPlotter.addSeries("Medium", new Weighted_MeanArrayFunction(midEducationAdultCS), null, colorArrayList.get(1), false); - eduPlotter.addSeries("High", new Weighted_MeanArrayFunction(highEducationAdultCS), null, colorArrayList.get(2), false); - eduPlotter.setName("Education"); - updateChartSet.add(eduPlotter); //Add to set to be updated in buildSchedule method - tabSet.add(eduPlotter); - - if (showValidationStatistics) { - eduPlotter.addSeries("Validation Low", validator, Validator.DoublesVariables.educationLevelLow, colorArrayList.get(0), true); - eduPlotter.addSeries("Validation Medium", validator, Validator.DoublesVariables.educationLevelMedium, colorArrayList.get(1), true); - eduPlotter.addSeries("Validation High", validator, Validator.DoublesVariables.educationLevelHigh, colorArrayList.get(2), true); - } - } - - //Education levels by age groups - if(educationByAge && showAdditionalCharts) { - Set eduAgePlots = new LinkedHashSet(); - for(ValidEducationAgeGroupCSfilter ageFilter : decadeValidEducationAgeGroupFilterSet) { - - Weighted_CrossSection.Integer lowEducationCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getLowEducation", true); - lowEducationCS.setFilter(ageFilter); - Weighted_CrossSection.Integer midEducationCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getMidEducation", true); - midEducationCS.setFilter(ageFilter); - Weighted_CrossSection.Integer highEducationCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getHighEducation", true); - highEducationCS.setFilter(ageFilter); - - TimeSeriesSimulationPlotter eduAgePlotter = new TimeSeriesSimulationPlotter("Education level by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo() + "\n(excluding students)", ""); //'yo' means "years old" - eduAgePlotter.addSeries("low", new Weighted_MeanArrayFunction(lowEducationCS), null, colorArrayList.get(0), false); - eduAgePlotter.addSeries("mid", new Weighted_MeanArrayFunction(midEducationCS), null, colorArrayList.get(1), false); - eduAgePlotter.addSeries("high", new Weighted_MeanArrayFunction(highEducationCS), null, colorArrayList.get(2), false); - - if (showValidationStatistics) { - eduAgePlotter.addSeries("Validation Low", validator, Validator.DoublesVariables.valueOf("educationLevelLowByAge_"+ageFilter.getAgeFrom()+"_"+ageFilter.getAgeTo()), colorArrayList.get(0), true); //Note the use of valueOf instead of calling the enum in validator's doubles variables directly - eduAgePlotter.addSeries("Validation Medium", validator, Validator.DoublesVariables.valueOf("educationLevelMediumByAge_"+ageFilter.getAgeFrom()+"_"+ageFilter.getAgeTo()), colorArrayList.get(1), true); - eduAgePlotter.addSeries("Validation High", validator, Validator.DoublesVariables.valueOf("educationLevelHighByAge_"+ageFilter.getAgeFrom()+"_"+ageFilter.getAgeTo()), colorArrayList.get(2), true); - } - - updateChartSet.add(eduAgePlotter); //Add to set to be updated in buildSchedule method - eduAgePlots.add(eduAgePlotter); - - - } - tabSet.add(createScrollPaneFromPlots(eduAgePlots, "Education by age", 2)); - } - - //Low & High Education By Region - if(educationByRegion && showAdditionalCharts) { - Set eduLowHighRegionalPlots = new LinkedHashSet(); - - //Low Education by region - TimeSeriesSimulationPlotter eduLowRegionPlotter = new TimeSeriesSimulationPlotter("Low education level by region", ""); - int colorCounter = 0; - for(Region region: Parameters.getCountryRegions()) { - ValidEducationRegionCSfilter regionFilter = new ValidEducationRegionCSfilter(region); - Weighted_CrossSection.Integer regionCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getLowEducation", true); - regionCS.setFilter(regionFilter); - eduLowRegionPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(regionCS), null, colorArrayList.get(colorCounter), false); //'yo' means "years old" - eduLowRegionPlotter.addSeries("Validation "+region.getName(), validator, Validator.DoublesVariables.valueOf("educationLevelLowByRegion_"+region), colorArrayList.get(colorCounter), true); - colorCounter++; - } - updateChartSet.add(eduLowRegionPlotter); //Add to set to be updated in buildSchedule method - eduLowHighRegionalPlots.add(eduLowRegionPlotter); - - //High Education by region - TimeSeriesSimulationPlotter eduHighRegionPlotter = new TimeSeriesSimulationPlotter("High education level by region", ""); - colorCounter = 0; //Reset the color counter - for(Region region: Parameters.getCountryRegions()) { - ValidEducationRegionCSfilter regionFilter = new ValidEducationRegionCSfilter(region); - Weighted_CrossSection.Integer regionCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getHighEducation", true); - regionCS.setFilter(regionFilter); - eduHighRegionPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(regionCS), null, colorArrayList.get(colorCounter), false); //'yo' means "years old" - eduHighRegionPlotter.addSeries("Validation "+region.getName(), validator, Validator.DoublesVariables.valueOf("educationLevelHighByRegion_"+region), colorArrayList.get(colorCounter), true); - colorCounter++; - } - updateChartSet.add(eduHighRegionPlotter); //Add to set to be updated in buildSchedule method - eduLowHighRegionalPlots.add(eduHighRegionPlotter); - - tabSet.add(createScrollPaneFromPlots(eduLowHighRegionalPlots, "Education by region (excluding students)", 2)); - } - - - //HOUSEHOLD COMPOSITION CHART - if(householdComposition) { - //Proportion of households with couple occupancy (i.e. there is both a responsible male and female in the household) by region - TimeSeriesSimulationPlotter houseCompositionRegionPlotter = new TimeSeriesSimulationPlotter("Share of couples", ""); - int colorCounter = 0; - for(Region region: Parameters.getCountryRegions()) { - RegionCSfilter regionFilter = new RegionCSfilter(region); - Weighted_CrossSection.Integer regionCS = new Weighted_CrossSection.Integer(model.getBenefitUnits(), BenefitUnit.class, "getCoupleDummy", true); - regionCS.setFilter(regionFilter); - houseCompositionRegionPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(regionCS), null, colorArrayList.get(colorCounter), false); //'yo' means "years old" - houseCompositionRegionPlotter.addSeries("Validation "+region.getName(), validator, Validator.DoublesVariables.valueOf("partneredShare_"+region), colorArrayList.get(colorCounter), true); - colorCounter++; - } - Weighted_CrossSection.Integer coupleCS = new Weighted_CrossSection.Integer(model.getBenefitUnits(), BenefitUnit.class, "getCoupleDummy", true); - houseCompositionRegionPlotter.addSeries("national", new Weighted_MeanArrayFunction(coupleCS), null, colorArrayList.get(colorCounter), false); //'yo' means "years old" - houseCompositionRegionPlotter.addSeries("Validation national", validator, Validator.DoublesVariables.valueOf("partneredShare_All"), colorArrayList.get(colorCounter), true); - houseCompositionRegionPlotter.setName("Cohabitation status"); - updateChartSet.add(houseCompositionRegionPlotter); //Add to set to be updated in buildSchedule method - tabSet.add(houseCompositionRegionPlotter); - - /* - //Add a graph showing share of individuals with a partner: - TimeSeriesSimulationPlotter personsWithPartnerPlotter = new TimeSeriesSimulationPlotter("Share of individuals with partner", ""); - Weighted_CrossSection.Integer personsWithPartner = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getCoupleDummy", true); - personsWithPartnerPlotter.addSeries("Share of persons with partner", new Weighted_MeanArrayFunction(personsWithPartner)); - personsWithPartnerPlotter.setName("Share of persons with partner"); - updateChartSet.add(personsWithPartnerPlotter); - tabSet.add(personsWithPartnerPlotter); - */ - - } - - //Number of males and females who want to cohabit - if (householdComposition) { - TimeSeriesSimulationPlotter cohabitationDesireByGender = new TimeSeriesSimulationPlotter("Individuals looking for partner, by gender", ""); - Weighted_CrossSection.Integer toBePartneredMales = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isToBePartnered); - Weighted_CrossSection.Integer toBePartneredFemales = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isToBePartnered); - toBePartneredMales.setFilter(new GenderCSfilter(Gender.Male)); - toBePartneredFemales.setFilter(new GenderCSfilter(Gender.Female)); - cohabitationDesireByGender.addSeries("Males", new Weighted_SumArrayFunction.Integer(toBePartneredMales), null, colorArrayList.get(0), false); - cohabitationDesireByGender.addSeries("Females", new Weighted_SumArrayFunction.Integer(toBePartneredFemales), null, colorArrayList.get(1), false); - cohabitationDesireByGender.setName("Individuals looking for partner"); - updateChartSet.add(cohabitationDesireByGender); - tabSet.add(cohabitationDesireByGender); - } - - MaleAgeGroupCSfilter males18_64Filter = new MaleAgeGroupCSfilter(18, 64); - FemaleAgeGroupCSfilter females18_64Filter = new FemaleAgeGroupCSfilter(18, 64); - - //HEALTH CHARTS - - //Overall population by gender - because it is aligned, this chart is fairly boring, so do by age group below to provide more detailed information. -// if(health) { -//// MaleAgeGroupCSfilter males18_64Filter = new MaleAgeGroupCSfilter(18, 64); -// Weighted_CrossSection.Integer males18_64CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getGoodHealth", true); -// males18_64CS.setFilter(males18_64Filter); -//// FemaleAgeGroupCSfilter females18_64Filter = new FemaleAgeGroupCSfilter(18, 64); -// Weighted_CrossSection.Integer females18_64CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getGoodHealth", true); -// females18_64CS.setFilter(females18_64Filter); -// TimeSeriesSimulationPlotter healthPlotter = new TimeSeriesSimulationPlotter("Good Health proportion (18 - 64)", ""); -// healthPlotter.addSeries("males", new Weighted_MeanArrayFunction(males18_64CS)); -// healthPlotter.addSeries("females", new Weighted_MeanArrayFunction(females18_64CS)); -// healthPlotter.setName("Health"); -// updateChartSet.add(healthPlotter); //Add to set to be updated in buildSchedule method -// tabSet.add(healthPlotter); -// } - - //Male/Female health by age groups - if(healthByAge) { -// Set healthAgePlots = new LinkedHashSet(); -// for(AgeGroupCSfilter ageFilter : decadeAgeGroupFilterSet) { -// int ageFrom = ageFilter.getAgeFrom(); -// int ageTo = ageFilter.getAgeTo(); -// -// MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); -// FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); -// Weighted_CrossSection.Integer maleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getGoodHealth", true); -// maleCS.setFilter(maleAgeFilter); -// Weighted_CrossSection.Integer femaleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getGoodHealth", true); -// femaleCS.setFilter(femaleAgeFilter); -// -// TimeSeriesSimulationPlotter healthAgePlotter = new TimeSeriesSimulationPlotter("Proportion with good health: ages " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); -// healthAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS)); -// healthAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS)); -// -// updateChartSet.add(healthAgePlotter); //Add to set to be updated in buildSchedule method -// healthAgePlots.add(healthAgePlotter); -// } -// tabSet.add(createScrollPaneFromPlots(healthAgePlots, "Health: age/gender", 2)); - - Set disabledAgePlots = new LinkedHashSet<>(); - // for (AgeGroupCSfilter ageFilter : disabledHealthAgeGroupFilterSet) { - // int ageFrom = ageFilter.getAgeFrom(); - // int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilterDisabled = new MaleAgeGroupCSfilter(16, 100); - FemaleAgeGroupCSfilter femaleAgeFilterDisabled = new FemaleAgeGroupCSfilter(16, 100); - Weighted_CrossSection.Integer maleCSDisabled = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getBadHealth", true); - maleCSDisabled.setFilter(maleAgeFilterDisabled); - Weighted_CrossSection.Integer femaleCSDisabled = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getBadHealth", true); - femaleCSDisabled.setFilter(femaleAgeFilterDisabled); - - TimeSeriesSimulationPlotter disabledAgePlotter = new TimeSeriesSimulationPlotter("Disability rate", ""); - disabledAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCSDisabled), null, colorArrayList.get(0), false); - disabledAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCSDisabled), null, colorArrayList.get(1), false); - disabledAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("disabledMale"), colorArrayList.get(0), true); - disabledAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("disabledFemale"), colorArrayList.get(1), true); - - updateChartSet.add(disabledAgePlotter); - disabledAgePlots.add(disabledAgePlotter); - // } - - - tabSet.add(createScrollPaneFromPlots(disabledAgePlots, "Disability: gender", 2)); - - Set healthAgePlots = new LinkedHashSet<>(); - for (AgeGroupCSfilter ageFilter : disabledHealthAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Double maleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDheValue", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Double femaleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDheValue", true); - femaleCS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter healthAgePlotter = new TimeSeriesSimulationPlotter("Health score by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - healthAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - healthAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - healthAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("healthMale_" + ageFrom + "_" + ageTo), colorArrayList.get(0), true); - healthAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("healthFemale_" + ageFrom + "_" + ageTo), colorArrayList.get(1), true); - - updateChartSet.add(healthAgePlotter); - healthAgePlots.add(healthAgePlotter); - } - - tabSet.add(createScrollPaneFromPlots(healthAgePlots, "Health: age/gender", 2)); - - // mental health plots - Set healthMentalAgePlots = new LinkedHashSet<>(); - for (AgeGroupCSfilter ageFilter : healthMentalAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Double maleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHealthWbScore0to36", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Double femaleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHealthWbScore0to36", true); - femaleCS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter healthMentalAgePlotter = new TimeSeriesSimulationPlotter("Psychological distress score by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - healthMentalAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - healthMentalAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - healthMentalAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("mentalHealthMale_" + ageFrom + "_" + ageTo), colorArrayList.get(0), true); - healthMentalAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("mentalHealthFemale_" + ageFrom + "_" + ageTo), colorArrayList.get(1), true); - - updateChartSet.add(healthMentalAgePlotter); - healthMentalAgePlots.add(healthMentalAgePlotter); - } - - tabSet.add(createScrollPaneFromPlots(healthMentalAgePlots, "Psychological distress score: age/gender", 2)); - - Set psychologicalDistressCasesAgePlots = new LinkedHashSet<>(); - for (AgeGroupCSfilter ageFilter : healthMentalAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Integer maleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isPsychologicallyDistressed); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Integer femaleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isPsychologicallyDistressed); - femaleCS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter psychDistressAgePlotter = new TimeSeriesSimulationPlotter("Share in psychological distress by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - psychDistressAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - psychDistressAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - psychDistressAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("psychDistressMale_" + ageFrom + "_" + ageTo), colorArrayList.get(0), true); - psychDistressAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("psychDistressFemale_" + ageFrom + "_" + ageTo), colorArrayList.get(1), true); - - updateChartSet.add(psychDistressAgePlotter); - psychologicalDistressCasesAgePlots.add(psychDistressAgePlotter); - } - - tabSet.add(createScrollPaneFromPlots(psychologicalDistressCasesAgePlots, "Share in psychological distress (case-based): age/gender", 2)); - - // Psychological distress (case-based) by education - Set psychologicalDistressCasesAgeEducationPlots = new LinkedHashSet<>(); - for (Education education : Education.values()) { - for (AgeGroupCSfilter ageFilter : healthMentalAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupEducationCSfilter maleAgeEducationFilter = new MaleAgeGroupEducationCSfilter(ageFrom, ageTo, education); - FemaleAgeGroupEducationCSfilter femaleAgeEducationFilter = new FemaleAgeGroupEducationCSfilter(ageFrom, ageTo, education); - Weighted_CrossSection.Integer maleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isPsychologicallyDistressed); - maleCS.setFilter(maleAgeEducationFilter); - Weighted_CrossSection.Integer femaleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isPsychologicallyDistressed); - femaleCS.setFilter(femaleAgeEducationFilter); - - TimeSeriesSimulationPlotter psychDistressAgeEducationPlotter = new TimeSeriesSimulationPlotter("Share in psychological distress by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - psychDistressAgeEducationPlotter.addSeries("males " + education + " educ", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - psychDistressAgeEducationPlotter.addSeries("females " + education + " educ", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - psychDistressAgeEducationPlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("psychDistressMale_"+ageFrom+"_"+ageTo), colorArrayList.get(0), true); - psychDistressAgeEducationPlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("psychDistressFemale_"+ageFrom+"_"+ageTo), colorArrayList.get(1), true); - updateChartSet.add(psychDistressAgeEducationPlotter); - psychologicalDistressCasesAgeEducationPlots.add(psychDistressAgeEducationPlotter); - } - } - - tabSet.add(createScrollPaneFromPlots(psychologicalDistressCasesAgeEducationPlots, "Share in psychological distress (case-based): age/gender/education", 2)); - - // Psychological distress (case-based) by education - Set psychologicalDistressCasesEducationPlots = new LinkedHashSet<>(); - for (Education education : Education.values()) { - int ageFrom = 25; - int ageTo = 64; - - MaleAgeGroupEducationCSfilter maleAgeEducationFilter = new MaleAgeGroupEducationCSfilter(ageFrom, ageTo, education); - FemaleAgeGroupEducationCSfilter femaleAgeEducationFilter = new FemaleAgeGroupEducationCSfilter(ageFrom, ageTo, education); - Weighted_CrossSection.Integer maleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isPsychologicallyDistressed); - maleCS.setFilter(maleAgeEducationFilter); - Weighted_CrossSection.Integer femaleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.IntegerVariables.isPsychologicallyDistressed); - femaleCS.setFilter(femaleAgeEducationFilter); - - TimeSeriesSimulationPlotter psychDistressEducationPlotter = new TimeSeriesSimulationPlotter("Share in psychological distress by education:", ""); - psychDistressEducationPlotter.addSeries("males " + education + " educ", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - psychDistressEducationPlotter.addSeries("females " + education + " educ", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - // psychDistressAgeEducationPlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("psychDistressMale_"+ageFrom+"_"+ageTo), colorArrayList.get(0), true); - // psychDistressAgeEducationPlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("psychDistressFemale_"+ageFrom+"_"+ageTo), colorArrayList.get(1), true); - - updateChartSet.add(psychDistressEducationPlotter); - psychologicalDistressCasesEducationPlots.add(psychDistressEducationPlotter); - } - - tabSet.add(createScrollPaneFromPlots(psychologicalDistressCasesEducationPlots, "Share in psychological distress (case-based): gender/education", 2)); - - // life satisfaction plots - Set lifeSatisfactionAgePlots = new LinkedHashSet<>(); - for (AgeGroupCSfilter ageFilter : healthMentalAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Double maleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDemLifeSatScore0to10", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Double femaleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDemLifeSatScore0to10", true); - femaleCS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter lifeSatisfactionAgePlotter = new TimeSeriesSimulationPlotter("Life satisfaction score by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - lifeSatisfactionAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - lifeSatisfactionAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - lifeSatisfactionAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("lifeSatisfactionMale_" + ageFrom + "_" + ageTo), colorArrayList.get(0), true); - lifeSatisfactionAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("lifeSatisfactionFemale_" + ageFrom + "_" + ageTo), colorArrayList.get(1), true); - - updateChartSet.add(lifeSatisfactionAgePlotter); - lifeSatisfactionAgePlots.add(lifeSatisfactionAgePlotter); - } - - tabSet.add(createScrollPaneFromPlots(lifeSatisfactionAgePlots, "Life Satisfaction score: age/gender", 2)); - - // health plots - Set healthMCSAgePlots = new LinkedHashSet<>(); - for (AgeGroupCSfilter ageFilter : healthMentalAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Double maleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHealthMentalMcs", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Double femaleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHealthMentalMcs", true); - femaleCS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter healthMCSAgePlotter = new TimeSeriesSimulationPlotter("Mental health by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - healthMCSAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - healthMCSAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - healthMCSAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("healthMCSMale_" + ageFrom + "_" + ageTo), colorArrayList.get(0), true); - healthMCSAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("healthMCSFemale_" + ageFrom + "_" + ageTo), colorArrayList.get(1), true); - - updateChartSet.add(healthMCSAgePlotter); - healthMCSAgePlots.add(healthMCSAgePlotter); - } - - tabSet.add(createScrollPaneFromPlots(healthMCSAgePlots, "Mental health MCS score: age/gender", 2)); - - Set healthPCSAgePlots = new LinkedHashSet<>(); - for (AgeGroupCSfilter ageFilter : healthMentalAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Double maleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHealthPhysicalPcs", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Double femaleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHealthPhysicalPcs", true); - femaleCS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter healthPCSAgePlotter = new TimeSeriesSimulationPlotter("Physical health by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - healthPCSAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - healthPCSAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - healthPCSAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("healthPCSMale_" + ageFrom + "_" + ageTo), colorArrayList.get(0), true); - healthPCSAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("healthPCSFemale_" + ageFrom + "_" + ageTo), colorArrayList.get(1), true); - - updateChartSet.add(healthPCSAgePlotter); - healthPCSAgePlots.add(healthPCSAgePlotter); - } - - tabSet.add(createScrollPaneFromPlots(healthPCSAgePlots, "Physical health PCS score: age/gender", 2)); - - /* - TimeSeriesSimulationPlotter disabledAgePlotter = new TimeSeriesSimulationPlotter("Proportion of long-term sick or disabled by age & gender", ""); - disabledAgePlotter.setName("Disabled: age/gender"); - for(AgeGroupCSfilter ageFilter : decadeAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Integer maleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getBadHealth", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Integer femaleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getBadHealth", true); - femaleCS.setFilter(femaleAgeFilter); - - disabledAgePlotter.addSeries("males (" + ageFrom + " - " + ageTo + ")", new Weighted_MeanArrayFunction(maleCS)); - disabledAgePlotter.addSeries("females (" + ageFrom + " - " + ageTo + ")", new Weighted_MeanArrayFunction(femaleCS)); - - } - updateChartSet.add(disabledAgePlotter); //Add to set to be updated in buildSchedule method - tabSet.add(disabledAgePlotter); - - - - //Chart for continuous health status below: - TimeSeriesSimulationPlotter healthAgePlotter = new TimeSeriesSimulationPlotter("Health status by age & gender", ""); - healthAgePlotter.setName("Health: age/gender"); - for(AgeGroupCSfilter ageFilter : decadeAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Double maleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDhe", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Double femaleCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDhe", true); - femaleCS.setFilter(femaleAgeFilter); - - healthAgePlotter.addSeries("males (" + ageFrom + " - " + ageTo + ")", new Weighted_MeanArrayFunction(maleCS)); - healthAgePlotter.addSeries("females (" + ageFrom + " - " + ageTo + ")", new Weighted_MeanArrayFunction(femaleCS)); - } - - updateChartSet.add(healthAgePlotter); - tabSet.add(healthAgePlotter); - - */ - } - - - //EMPLOYMENT CHARTS - if(employmentOfAdults) { -// MaleAgeGroupCSfilter males18_64Filter = new MaleAgeGroupCSfilter(18, 64); - FlexibleInLabourSupplyByAgeAndGenderFilter maleAgeFilter = new FlexibleInLabourSupplyByAgeAndGenderFilter(18, 64, Gender.Male); - Weighted_CrossSection.Integer males18_64CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - males18_64CS.setFilter(males18_64Filter); -// males18_64CS.setFilter(maleAgeFilter); - -// Weighted_CrossSection.Integer males18_64CSNE = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getNonwork", true); -// males18_64CSNE.setFilter(males18_64Filter); - -// FemaleAgeGroupCSfilter females18_64Filter = new FemaleAgeGroupCSfilter(18, 64); - FlexibleInLabourSupplyByAgeAndGenderFilter femaleAgeFilter = new FlexibleInLabourSupplyByAgeAndGenderFilter(18, 64, Gender.Female); - Weighted_CrossSection.Integer females18_64CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - females18_64CS.setFilter(females18_64Filter); -// females18_64CS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter emplPlotter = new TimeSeriesSimulationPlotter("Employment rate (18 - 64)", ""); - emplPlotter.addSeries("males", new Weighted_MeanArrayFunction(males18_64CS), null, colorArrayList.get(0), false); -// emplPlotter.addSeries("males_NE", new Weighted_MeanArrayFunction(males18_64CSNE)); - emplPlotter.addSeries("females", new Weighted_MeanArrayFunction(females18_64CS), null, colorArrayList.get(1), false); - emplPlotter.addSeries("Validation males", validator, Validator.DoublesVariables.employmentMale, colorArrayList.get(0), true); - emplPlotter.addSeries("Validation females", validator, Validator.DoublesVariables.employmentFemale, colorArrayList.get(1), true); - - emplPlotter.setName("Employment"); - updateChartSet.add(emplPlotter); //Add to set to be updated in buildSchedule method - tabSet.add(emplPlotter); - } - - //Male/Female employment rates by age groups - if(employmentByAge) { - Set emplAgePlots = new LinkedHashSet(); - for(AgeGroupCSfilter ageFilter : decadeAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - MaleAgeGroupCSfilter maleAgeFilter = new MaleAgeGroupCSfilter(ageFrom, ageTo); -// FlexibleInLabourSupplyByAgeAndGenderFilter maleAgeFilter = new FlexibleInLabourSupplyByAgeAndGenderFilter(ageFrom, ageTo, Gender.Male); //New filter to obtain a cross-section of those who are flexible in labour supply - FemaleAgeGroupCSfilter femaleAgeFilter = new FemaleAgeGroupCSfilter(ageFrom, ageTo); -// FlexibleInLabourSupplyByAgeAndGenderFilter femaleAgeFilter = new FlexibleInLabourSupplyByAgeAndGenderFilter(ageFrom, ageTo, Gender.Female); - Weighted_CrossSection.Integer maleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - maleCS.setFilter(maleAgeFilter); - Weighted_CrossSection.Integer femaleCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - femaleCS.setFilter(femaleAgeFilter); - - TimeSeriesSimulationPlotter emplAgePlotter = new TimeSeriesSimulationPlotter("Employment rate by age: " + ageFilter.getAgeFrom() + " - " + ageFilter.getAgeTo(), ""); - emplAgePlotter.addSeries("males", new Weighted_MeanArrayFunction(maleCS), null, colorArrayList.get(0), false); - emplAgePlotter.addSeries("females", new Weighted_MeanArrayFunction(femaleCS), null, colorArrayList.get(1), false); - emplAgePlotter.addSeries("Validation males", validator, Validator.DoublesVariables.valueOf("employmentMaleByAge_"+ageFrom+"_"+ageTo), colorArrayList.get(0), true); - emplAgePlotter.addSeries("Validation females", validator, Validator.DoublesVariables.valueOf("employmentFemaleByAge_"+ageFrom+"_"+ageTo), colorArrayList.get(1), true); - updateChartSet.add(emplAgePlotter); //Add to set to be updated in buildSchedule method - emplAgePlots.add(emplAgePlotter); - } - tabSet.add(createScrollPaneFromPlots(emplAgePlots, "Employment: age/gender", 2)); - } - - /* - if(femaleEmploymentByMaternity) { - //Females with/without children by two lowest age groups - Set emplAgeMaternityPlots = new LinkedHashSet(); - for(AgeGroupCSfilter ageFilter : decadeAgeGroupFilterSet) { - int ageFrom = ageFilter.getAgeFrom(); - int ageTo = ageFilter.getAgeTo(); - - if(ageFrom == 20 || ageFrom == 30) { //Only do the lowest 2 decade age groups - FemalesWithChildrenAgeGroupCSfilter withChildrenFilter = new FemalesWithChildrenAgeGroupCSfilter(ageFrom, ageTo); - FemalesWithoutChildrenAgeGroupCSfilter withoutChildrenFilter = new FemalesWithoutChildrenAgeGroupCSfilter(ageFrom, ageTo); - Weighted_CrossSection.Integer withChildrenCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - withChildrenCS.setFilter(withChildrenFilter); - Weighted_CrossSection.Integer withoutChildrenCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - withoutChildrenCS.setFilter(withoutChildrenFilter); - - TimeSeriesSimulationPlotter emplChildPlotter = new TimeSeriesSimulationPlotter("Female employment rate: maternity for ages " + ageFrom + " - " + ageTo, ""); - emplChildPlotter.addSeries("with children under 18 yo", new Weighted_MeanArrayFunction(withChildrenCS)); - emplChildPlotter.addSeries("without children under 18 yo", new Weighted_MeanArrayFunction(withoutChildrenCS)); - updateChartSet.add(emplChildPlotter); //Add to set to be updated in buildSchedule method - emplAgeMaternityPlots.add(emplChildPlotter); - } - } - tabSet.add(createScrollPaneFromPlots(emplAgeMaternityPlots, "Employment (female): age/maternity", 2)); - } - */ - - - //One graph for employment age by maternity status, conditional on age of children - if (femaleEmploymentByMaternity) { - Set emplAgeMaternityPlots = new LinkedHashSet(); -// for(AgeGroupCSfilter ageFilter : decadeAgeGroupFilterSet) { -// int ageFrom = ageFilter.getAgeFrom(); -// int ageTo = ageFilter.getAgeTo(); - -// if(ageFrom == 20 || ageFrom == 30 || ageFrom == 40) { //Only do the lowest 3 decade age groups - - FemalesWithoutChildrenAgeGroupCSfilter withoutChildrenFilter = new FemalesWithoutChildrenAgeGroupCSfilter(20, 65); - - Weighted_CrossSection.Integer withChildrenAged0_5CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - withChildrenAged0_5CS.setFilter(childAged0_5Filter); - Weighted_CrossSection.Integer withChildrenAged6_18CS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - withChildrenAged6_18CS.setFilter(childAged6_18Filter); - Weighted_CrossSection.Integer withoutChildrenCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - withoutChildrenCS.setFilter(withoutChildrenFilter); - - TimeSeriesSimulationPlotter emplChildPlotter = new TimeSeriesSimulationPlotter("Female employment rate, by age of children \n Women aged 20 - 65", ""); - emplChildPlotter.addSeries("with children aged 0 - 5 yo", new Weighted_MeanArrayFunction(withChildrenAged0_5CS), null, colorArrayList.get(0), false); - emplChildPlotter.addSeries("with children aged 6 - 18 yo", new Weighted_MeanArrayFunction(withChildrenAged6_18CS), null, colorArrayList.get(1), false); - emplChildPlotter.addSeries("without children under 18 yo", new Weighted_MeanArrayFunction(withoutChildrenCS), null, colorArrayList.get(2), false); - emplChildPlotter.addSeries("Validation with children aged 0 - 5 yo", validator, Validator.DoublesVariables.employmentFemaleChild_0_5, colorArrayList.get(0), true); - emplChildPlotter.addSeries("Validation with children aged 6 - 18 yo", validator, Validator.DoublesVariables.employmentFemaleChild_6_18, colorArrayList.get(1), true); - emplChildPlotter.addSeries("Validation without children under 18 yo", validator, Validator.DoublesVariables.employmentFemaleNoChild, colorArrayList.get(2), true); - - updateChartSet.add(emplChildPlotter); //Add to set to be updated in buildSchedule method - emplAgeMaternityPlots.add(emplChildPlotter); -// } -// } - tabSet.add(createScrollPaneFromPlots(emplAgeMaternityPlots, "Employment (female): age/maternity", 2)); - - - /* - Set emplMaternityPlots = new LinkedHashSet<>(); - for (FemalesWithChildrenByChildAgeCSfilter childAgeFilter : childrenByAgeFilterSet) { - //Need employment rate for females with children in a given age group, and general employment rate for females - Weighted_CrossSection.Integer withChildrenCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - withChildrenCS.setFilter(childAgeFilter); - - TimeSeriesSimulationPlotter emplChildByAgePlotter = new TimeSeriesSimulationPlotter("Female employment rate by age of children", ""); - emplChildByAgePlotter.addSeries("", new Weighted_MeanArrayFunction(withChildrenCS)); - - - } - */ - - } - - //Employment by region - if(employmentByRegion) { - Set emplGenderRegionPlots = new LinkedHashSet(); - TimeSeriesSimulationPlotter emplMaleRegionPlotter = new TimeSeriesSimulationPlotter("Male employment rate by region\n Age 18 - 64", ""); - TimeSeriesSimulationPlotter emplFemaleRegionPlotter = new TimeSeriesSimulationPlotter("Female employment rate by region\n Age 18 - 64", ""); - int colorCounter = 0; - for(Region region: Parameters.getCountryRegions()) { -// MaleRegionCSfilter maleRegionFilter = new MaleRegionCSfilter(region); - MaleRegionAgeCSfilter maleRegionFilter = new MaleRegionAgeCSfilter(region, 18, 64); - Weighted_CrossSection.Integer maleRegionCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - maleRegionCS.setFilter(maleRegionFilter); - emplMaleRegionPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(maleRegionCS), null, colorArrayList.get(colorCounter), false); - emplMaleRegionPlotter.addSeries("Validation " + region.getName(), validator, Validator.DoublesVariables.valueOf("employed_male_"+region), colorArrayList.get(colorCounter), true); - -// FemaleRegionCSfilter femaleRegionFilter = new FemaleRegionCSfilter(region); - FemaleRegionAgeCSfilter femaleRegionFilter = new FemaleRegionAgeCSfilter(region, 18, 64); - Weighted_CrossSection.Integer femaleRegionCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getEmployed", true); - femaleRegionCS.setFilter(femaleRegionFilter); - emplFemaleRegionPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(femaleRegionCS), null, colorArrayList.get(colorCounter), false); - emplFemaleRegionPlotter.addSeries("Validation " + region.getName(), validator, Validator.DoublesVariables.valueOf("employed_female_"+region), colorArrayList.get(colorCounter), true); - colorCounter++; - } - updateChartSet.add(emplMaleRegionPlotter); //Add to set to be updated in buildSchedule method - updateChartSet.add(emplFemaleRegionPlotter); //Add to set to be updated in buildSchedule method - emplGenderRegionPlots.add(emplFemaleRegionPlotter); - emplGenderRegionPlots.add(emplMaleRegionPlotter); - tabSet.add(createScrollPaneFromPlots(emplGenderRegionPlots, "Employment: gender/region", 2)); - } - - //LABOUR SUPPLY CHART - if(labourSupply) { - TimeSeriesSimulationPlotter supplyPlotter = new TimeSeriesSimulationPlotter("Labour supply by education", "Yearly hours worked"); //'yo' means "years old" - int colorCounter = 0; - for(Education edu: Education.values()) { - if (Education.InEducation.equals(edu)) { - continue; - } - FlexibleInLabourSupplyByEducationFilter eduFilter = new FlexibleInLabourSupplyByEducationFilter(edu); - Weighted_CrossSection.Double supplyCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getLabourSupplyHoursYearly", true); - supplyCS.setFilter(eduFilter); - supplyPlotter.addSeries(edu.toString(), new Weighted_MeanArrayFunction(supplyCS), null, colorArrayList.get(colorCounter), false); - supplyPlotter.addSeries("Validation " + edu.toString(), validator, Validator.DoublesVariables.valueOf("labour_supply_"+edu), colorArrayList.get(colorCounter), true); - colorCounter++; - } - supplyPlotter.setName("Labour supply"); - updateChartSet.add(supplyPlotter); //Add to set to be updated in buildSchedule method - tabSet.add(supplyPlotter); - } - - //INCOME CHARTS - GROSS WAGES BY REGION AND EDUCATION LEVEL - if(grossEarningsByRegionAndEducation) { - IndividualBarSimulationPlotter earningsPlotter; - if (model.getCountry().equals(Country.UK)) { - earningsPlotter = new IndividualBarSimulationPlotter("Yearly Gross Earnings by Education and Region (excludes non-workers)", "£"); - } - else { - earningsPlotter = new IndividualBarSimulationPlotter("Yearly Gross Earnings by Education and Region (excludes non-workers)", "Euro"); - } - - for(Region region: Parameters.getCountryRegions()) { - for(Education edu: Education.values()) { - if (Education.InEducation.equals(edu)) { - continue; - } - RegionEducationWorkingCSfilter regionEduWorkingFilter = new RegionEducationWorkingCSfilter(region, edu); - Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getGrossEarningsYearly", true); - wagesCS.setFilter(regionEduWorkingFilter); - earningsPlotter.addSources("(" + region.getName() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), colorOfEducation(edu)); - } - } - earningsPlotter.setName("Gross Earnings"); - updateChartSet.add(earningsPlotter); //Add to set to be updated in buildSchedule method - tabSet.add(earningsPlotter); - } - - //INCOME CHARTS B: GROSS EARNINGS BY EDUCATION - if (grossEarningsByRegionAndEducation) { - TimeSeriesSimulationPlotter grossEarningsByGenderAndEducationPlotter; - int colorCounter = 0; - if (model.getCountry().equals(Country.UK)) { - grossEarningsByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Yearly Gross Earnings by Gender And Education", "£"); - } - else { - grossEarningsByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Yearly Gross Earnings by Gender And Education", "Euro"); - } - for(Education edu: Education.values()) { - if (Education.InEducation.equals(edu)) { - continue; - } - for (Gender gender : Gender.values()) { - GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); - Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getGrossEarningsYearly", true); // Note: these are nominal values for each simulated year - wagesCS.setFilter(genderEducationWorkingFilter); - grossEarningsByGenderAndEducationPlotter.addSeries("(" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), null, colorArrayList.get(colorCounter), false); - grossEarningsByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("grossEarnings_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); - colorCounter++; - } - } - grossEarningsByGenderAndEducationPlotter.setName("Gross Earnings by Gender / Education"); - updateChartSet.add(grossEarningsByGenderAndEducationPlotter); - tabSet.add(grossEarningsByGenderAndEducationPlotter); - } - - if (grossEarningsByRegionAndEducation) { - TimeSeriesSimulationPlotter hourlyWagesByGenderAndEducationPlotter; - int colorCounter = 0; - if (model.getCountry().equals(Country.UK)) { - hourlyWagesByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Hourly Wages by Gender And Education", "£"); - } - else { - hourlyWagesByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Hourly Wages by Gender And Education", "Euro"); - } - for(Education edu: Education.values()) { - if (Education.InEducation.equals(edu)) { - continue; - } - for (Gender gender : Gender.values()) { - GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); - Weighted_CrossSection.Double wagesCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getHourlyWageRate1", true); // Note: these are nominal values for each simulated year - wagesCS.setFilter(genderEducationWorkingFilter); - hourlyWagesByGenderAndEducationPlotter.addSeries("(" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(wagesCS), null, colorArrayList.get(colorCounter), false); - hourlyWagesByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("hourlyWage_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); - colorCounter++; - } - } - hourlyWagesByGenderAndEducationPlotter.setName("Hourly Wages by Gender / Education"); - updateChartSet.add(hourlyWagesByGenderAndEducationPlotter); - tabSet.add(hourlyWagesByGenderAndEducationPlotter); - } + // Population share by age. + if(showAdditionalCharts) { + var agesPopShare = new ArrayList(8); + agesPopShare.add(new AgeRange(0, 18)); + agesPopShare.add(new AgeRange(0, 0)); + agesPopShare.add(new AgeRange(2, 10)); + agesPopShare.add(new AgeRange(11, 15)); + agesPopShare.add(new AgeRange(19, 25)); + agesPopShare.add(new AgeRange(40, 59)); + agesPopShare.add(new AgeRange(60, 79)); + agesPopShare.add(new AgeRange(80, 100)); + + var popShares = agesPopShare.stream() + .map(ar -> new FilteredCollection<>(model::getPersons, ar)) + .map(fc -> new CrossSection<>(fc, Person::getWeight)) + .map(cs -> Stats.supplier(cs)) + .map(s -> OnceUntil.timeChanges(() -> s.get().sum(), engine)) + .toList(); + + var plotter = new TimeSeriesSimulationPlotter("Individuals by age", ""); + for (var i = 0; i < popShares.size(); i++) { + var ar = agesPopShare.get(i); + var ageStr = ar.from() + "-" + ar.to() + " yo"; + plotter.addSource(ageStr, popShares.get(i), colorArrayList.get(i), false); + if (showValidationStatistics) { + plotter.addSource(ageStr + " projection", + () -> validator.getPopulationProjectionByAge(ar.from(), ar.to()), + colorArrayList.get(i), true); + } + } + plotter.setName("Individuals by age"); + updateChartSet.add(plotter); + tabSet.add(plotter); + } + + if (activityStatus) { + var statuses = new ArrayList>(5); + statuses.add(Person::getEmployed); + statuses.add(Person::getNonwork); + statuses.add(Person::getStudent); + statuses.add(Person::getRetired); + statuses.add(p -> { + var status = p.getLabC4(); + return (status == Les_c4.NotEmployed || status == Les_c4.Retired) ? 1 : 0; + }); + var statusShares = statuses.stream() + .map(f -> new WeightedCrossSection<>(model::getPersons, f, Person::getWeight)) + .map(wcs -> WeightedStats.supplier(wcs)) + .map(ws -> OnceUntil.timeChanges(() -> ws.get().mean(), engine)) + .toList(); + + var plot = new TimeSeriesSimulationPlotter("Share of individuals by activity status", ""); + plot.addSource("Employed", statusShares.get(0), colorArrayList.get(0), false); + plot.addSource("Not Employed / Retired", statusShares.get(4), colorArrayList.get(1), false); + plot.addSource("Not Employed", statusShares.get(1), colorArrayList.get(4), false); + plot.addSource("Student", statusShares.get(2), colorArrayList.get(2), false); + plot.addSource("Retired", statusShares.get(3), colorArrayList.get(3), false); + + plot.addSource("Employed validation", + () -> Parameters.validationActivityStatus(model.getYear(), "employed"), + colorArrayList.get(0), true); + plot.addSource("Not Employed / Retired validation", + () -> Parameters.validationActivityStatus(model.getYear(), "notemployedretired"), + colorArrayList.get(1), true); + plot.addSource("Student validation", + () -> Parameters.validationActivityStatus(model.getYear(), "student"), + colorArrayList.get(2), true); + + plot.setName("Activity status"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // home ownership status + if (homeownershipStatus) { + var homeOwnerCs = new WeightedCrossSection<>(model::getBenefitUnits, + bu -> bu.isHousingOwned() ? 1 : 0, BenefitUnit::getWeight); + var homeOwnerStats = WeightedStats.supplier(homeOwnerCs); + var plot = new TimeSeriesSimulationPlotter("Share of benefit units owning homes", ""); + plot.addSource("Homeowners", () -> homeOwnerStats.get().mean(), colorArrayList.get(0), false); + plot.addSource("Homeowners validation", + () -> Parameters.validationHomeOwnership(model.getYear()), colorArrayList.get(0), true); + plot.setName("Homeownership status"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // Student enrollment charts + if (studentsByAge) { + var ageRanges = new ArrayList(8); + ageRanges.add(new AgeRange(15, 19)); + ageRanges.add(new AgeRange(20, 24)); + ageRanges.add(new AgeRange(25, 29)); + if (showAdditionalCharts) { + ageRanges.add(new AgeRange(30, 34)); + ageRanges.add(new AgeRange(35, 39)); + ageRanges.add(new AgeRange(40, 59)); + ageRanges.add(new AgeRange(60, 79)); + ageRanges.add(new AgeRange(80, 100)); + } + + var studentShares = ageRanges.stream() + .map(ar -> new FilteredCollection<>(model::getPersons, ar)) + .map(fc -> new WeightedCrossSection<>(fc, Person::getStudent, Person::getWeight)) + .map(cs -> WeightedStats.supplier(cs)) + .map(ws -> OnceUntil.timeChanges(() -> ws.get().mean(), engine)) + .toList(); + + var plotter = new TimeSeriesSimulationPlotter("Proportion of students by age", ""); + plotter.setRenderer(studentAgeRenderer); + for (var i = 0; i < studentShares.size(); i++) { + var ar = ageRanges.get(i); + var ageStr = ar.from() + "-" + ar.to() + " yo"; + plotter.addSource(ageStr, studentShares.get(i), colorArrayList.get(i), false); + if (showValidationStatistics) { + plotter.addSource("Validation " + ageStr, + () -> Parameters.validationStudents(model.getYear(), ar.from(), ar.to()), + colorArrayList.get(i), true); + } + } + + if (showAdditionalCharts) { + // Unfiltered student cross-section (nationally, for all ages) + var studentCs = new WeightedCrossSection<>(model::getPersons, Person::getStudent, Person::getWeight); + var studentWs = WeightedStats.supplier(studentCs); + var studentShareAll = OnceUntil.timeChanges(() -> studentWs.get().mean(), engine); + plotter.addSource("all ages", studentShareAll, new Color(0, 0, 0), false); + if (showValidationStatistics) { + plotter.addSource("Validation all ages", + () -> Parameters.validationStudents(model.getYear()), + new Color(0, 0, 0), true); + } + } + + plotter.setName("Students by age"); + updateChartSet.add(plotter); + tabSet.add(plotter); + } + + if (studentsByRegion && showAdditionalCharts) { + // Student chart by Region + var plot = new TimeSeriesSimulationPlotter("Proportion of students by region", ""); + int colorCounter = 0; + for(var region : Parameters.getCountryRegions()) { + var inRegion = new FilteredCollection<>(model::getPersons, Filters.region(region)); + var regionCs = new WeightedCrossSection<>(inRegion, Person::getStudent, Person::getWeight); + var stats = WeightedStats.supplier(regionCs); + plot.addSource(region.getName(), () -> stats.get().mean(), colorArrayList.get(colorCounter), false); + if (showValidationStatistics) { + plot.addSource("Validation " + region.getName(), + () -> Parameters.validationStudents(model.getYear(), region), + colorArrayList.get(colorCounter), true); + } + colorCounter++; + } + plot.setName("Students by region"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // EDUCATION LEVEL CHARTS + + // Education levels for all adults (18 years old and over) + if (educationOfAdults) { + // FIXME: parameterise with EducationLevel + var filter = Filters.ageRange(18, 100).and(Filters.employment(Les_c4.Student).negate()); + var filtered = new FilteredCollection<>(model::getPersons, filter).oncePerSimTime(engine); + + var lowEduCs = new WeightedCrossSection<>(filtered, Person::getLowEducation, Person::getWeight); + var midEduCs = new WeightedCrossSection<>(filtered, Person::getMidEducation, Person::getWeight); + var highEduCs = new WeightedCrossSection<>(filtered, Person::getHighEducation, Person::getWeight); + + var meanLow = OnceUntil.timeChanges(() -> new WeightedStats(lowEduCs.get()).mean(), engine); + var meanMid = OnceUntil.timeChanges(() -> new WeightedStats(midEduCs.get()).mean(), engine); + var meanHigh = OnceUntil.timeChanges(() -> new WeightedStats(highEduCs.get()).mean(), engine); + + var plot = new TimeSeriesSimulationPlotter("Education level of over-17 yo's \n(excluding students)", ""); + plot.addSource("Low", meanLow, colorArrayList.get(0), false); + plot.addSource("Medium", meanMid, colorArrayList.get(1), false); + plot.addSource("High", meanHigh, colorArrayList.get(2), false); + plot.setName("Education"); + updateChartSet.add(plot); + tabSet.add(plot); + + if (showValidationStatistics) { + plot.addSource("Validation Low", + () -> Parameters.validationEduc(model.getYear(), EducationLevel.Low), + colorArrayList.get(0), true); + plot.addSource("Validation Medium", + () -> Parameters.validationEduc(model.getYear(), EducationLevel.Medium), + colorArrayList.get(1), true); + plot.addSource("Validation High", + () -> Parameters.validationEduc(model.getYear(), EducationLevel.High), + colorArrayList.get(2), true); + } + } + + // Education levels by age groups + if (educationByAge && showAdditionalCharts) { + var plots = new LinkedHashSet(); + for (var ar : this.decades) { + // FIXME: parameterise with EducationLevel + var filter = ar.and(Filters.employment(Les_c4.Student).negate()); + var filtered = new FilteredCollection<>(model::getPersons, filter).oncePerSimTime(engine); + + var lowEduCs = new WeightedCrossSection<>(filtered, Person::getLowEducation, Person::getWeight); + var midEduCs = new WeightedCrossSection<>(filtered, Person::getMidEducation, Person::getWeight); + var highEduCs = new WeightedCrossSection<>(filtered, Person::getHighEducation, Person::getWeight); + + var meanLow = OnceUntil.timeChanges(() -> new WeightedStats(lowEduCs.get()).mean(), engine); + var meanMid = OnceUntil.timeChanges(() -> new WeightedStats(midEduCs.get()).mean(), engine); + var meanHigh = OnceUntil.timeChanges(() -> new WeightedStats(highEduCs.get()).mean(), engine); + + var plotter = new TimeSeriesSimulationPlotter( + "Education level by age: " + ar.from() + " - " + ar.to() + "\n(excluding students)", ""); + plotter.addSource("low", meanLow, colorArrayList.get(0), false); + plotter.addSource("mid", meanMid, colorArrayList.get(1), false); + plotter.addSource("high", meanHigh, colorArrayList.get(2), false); + + if (showValidationStatistics) { + Supplier validLow = () -> ar.eduValidation(this.model.getYear(), EducationLevel.Low); + Supplier validMid = () -> ar.eduValidation(this.model.getYear(), EducationLevel.Medium); + Supplier validHigh = () -> ar.eduValidation(this.model.getYear(), EducationLevel.High); + plotter.addSource("Validation Low", validLow, colorArrayList.get(0), true); + plotter.addSource("Validation Medium", validMid, colorArrayList.get(1), true); + plotter.addSource("Validation High", validHigh, colorArrayList.get(2), true); + } + + updateChartSet.add(plotter); + plots.add(plotter); + } + tabSet.add(createScrollPaneFromPlots(plots, "Education by age", 2)); + } + + // Low & High Education By Region + if(educationByRegion && showAdditionalCharts) { + var plots = new LinkedHashSet(); + + // FIXME: parameterise by EducationLevel + var lowPlot = new TimeSeriesSimulationPlotter("Low education level by region", ""); + var highPlot = new TimeSeriesSimulationPlotter("High education level by region", ""); + + int colorCounter = 0; + var validEduFilter = Filters.olderOr(18) + .and(Filters.employment(Les_c4.Student).negate()) + .and(Filters.education(null).negate()); + var withValidEdu = new FilteredCollection<>(model::getPersons, validEduFilter) + .oncePerSimTime(engine); + + for(var region : Parameters.getCountryRegions()) { + var inRegion = new FilteredCollection<>(withValidEdu, Filters.region(region)) + .oncePerSimTime(engine); + var lowCs = new WeightedCrossSection<>(inRegion, Person::getLowEducation, Person::getWeight); + var highCs = new WeightedCrossSection<>(inRegion, Person::getHighEducation, Person::getWeight); + + var lowStats = WeightedStats.supplier(lowCs); + var highStats = WeightedStats.supplier(highCs); + + lowPlot.addSource(region.getName(), () -> lowStats.get().mean(), + colorArrayList.get(colorCounter), false); + lowPlot.addSource("Validation " + region.getName(), + () -> Parameters.validationEduc(model.getYear(), EducationLevel.Low, region), + colorArrayList.get(colorCounter), true); + + highPlot.addSource(region.getName(), () -> highStats.get().mean(), + colorArrayList.get(colorCounter), false); + highPlot.addSource("Validation " + region.getName(), + () -> Parameters.validationEduc(model.getYear(), EducationLevel.High, region), + colorArrayList.get(colorCounter), true); + + colorCounter++; + } + updateChartSet.add(lowPlot); + plots.add(lowPlot); + updateChartSet.add(highPlot); + plots.add(highPlot); + + tabSet.add(createScrollPaneFromPlots(plots, "Education by region (excluding students)", 2)); + } + + // household composition chart + if (householdComposition) { + // Proportion of households with couple occupancy (i.e. there is both a + // responsible male and female in the household) by region + var plot = new TimeSeriesSimulationPlotter("Share of couples", ""); + int icolor = 0; + for(var region: Parameters.getCountryRegions()) { + var inRegion = new FilteredCollection<>(model::getBenefitUnits, BenefitUnitFilters.region(region)); + var cs = new WeightedCrossSection<>(inRegion, BenefitUnit::getCoupleDummy, BenefitUnit::getWeight); + var stats = WeightedStats.supplier(cs); + var mean = OnceUntil.timeChanges(() -> stats.get().mean(), engine); + plot.addSource(region.getName(), mean, colorArrayList.get(icolor), false); + plot.addSource("Validation " + region.getName(), + () -> Parameters.validationPartnered(model.getYear(), region), + colorArrayList.get(icolor), true); + icolor++; + } + var cs = new WeightedCrossSection<>(model::getBenefitUnits, + BenefitUnit::getCoupleDummy, BenefitUnit::getWeight); + var stats = WeightedStats.supplier(cs); + var mean = OnceUntil.timeChanges(() -> stats.get().mean(), engine); + plot.addSource("national", mean, colorArrayList.get(icolor), false); + plot.addSource("Validation national", + () -> Parameters.validationPartnered(model.getYear()), + colorArrayList.get(icolor), true); + + plot.setName("Cohabitation status"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // Number of males and females who want to cohabit + if (householdComposition) { + var plot = new TimeSeriesSimulationPlotter("Individuals looking for partner, by gender", ""); + var males = new FilteredCollection<>(model::getPersons, Filters.male()); + var females = new FilteredCollection<>(model::getPersons, Filters.female()); + var malesCs = new WeightedCrossSection<>(males, p -> p.isToBePartnered() ? 1 : 0, Person::getWeight); + var femalesCs = new WeightedCrossSection<>(females, p -> p.isToBePartnered() ? 1 : 0, Person::getWeight); + var malesStats = WeightedStats.supplier(malesCs); + var femalesStats = WeightedStats.supplier(femalesCs); + + plot.addSource("Males", () -> malesStats.get().sum(), colorArrayList.get(0), false); + plot.addSource("Females", () -> femalesStats.get().sum(), colorArrayList.get(1), false); + plot.setName("Individuals looking for partner"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // health charts + + // Male/Female health by age groups + if (healthByAge) { + var disabledAgePlots = new LinkedHashSet(); + var inAgeRange = new FilteredCollection<>(model::getPersons, Filters.ageRange(16, 100)) + .oncePerSimTime(engine); + var malesDisabled = new FilteredCollection<>(inAgeRange, Filters.male()); + var femalesDisabled = new FilteredCollection<>(inAgeRange, Filters.female()); + var malesCs = new WeightedCrossSection<>(malesDisabled, Person::getBadHealth, Person::getWeight); + var femalesCs = new WeightedCrossSection<>(femalesDisabled, Person::getBadHealth, Person::getWeight); + var malesStats = WeightedStats.supplier(malesCs); + var femalesStats = WeightedStats.supplier(femalesCs); + + var plot = new TimeSeriesSimulationPlotter("Disability rate", ""); + plot.addSource("males", () -> malesStats.get().mean(), colorArrayList.get(0), false); + plot.addSource("females", () -> femalesStats.get().mean(), colorArrayList.get(1), false); + plot.addSource("Validation males", + () -> Parameters.validationDisabled(model.getYear(), Gender.Male), + colorArrayList.get(0), true); + plot.addSource("Validation females", + () -> Parameters.validationDisabled(model.getYear(), Gender.Female), + colorArrayList.get(1), true); + + updateChartSet.add(plot); + disabledAgePlots.add(plot); + tabSet.add(createScrollPaneFromPlots(disabledAgePlots, "Disability: gender", 2)); + + ageGenderPlots("Health score", this.healthAgeRanges, Person::getHealthSelfRatedValue, AgeRange::healthValidation); + + // mental health plots + ageGenderPlots("Psychological distress score", this.decades, Person::getHealthWbScore0to36, AgeRange::mentalHealthValidation); + ageGenderPlots("Share in psychological distress (case-based)", this.decades, Person::isPsychologicallyDistressed, AgeRange::psychDistressValidation); + + // Psychological distress (case-based) by education + var psychologicalDistressCasesAgeEducationPlots = new LinkedHashSet(); + for (Education education : Education.values()) { + for (var ar : this.decades) { + var withEduInAgeRange = new FilteredCollection<>(model::getPersons, ar.and(Filters.education(education))).oncePerSimTime(engine); + var males = new FilteredCollection<>(withEduInAgeRange, Filters.male()); + var females = new FilteredCollection<>(withEduInAgeRange, Filters.female()); + + var maleCs = new WeightedCrossSection<>(males, Person::isPsychologicallyDistressed, Person::getWeight); + var femaleCs = new WeightedCrossSection<>(females, Person::isPsychologicallyDistressed, Person::getWeight); + + // FIXME: should this be cached? What about validation values? + var meanMale = OnceUntil.timeChanges(() -> new WeightedStats(maleCs.get()).mean(), engine); + var meanFemale = OnceUntil.timeChanges(() -> new WeightedStats(femaleCs.get()).mean(), engine); + + Supplier validMale = () -> ar.psychDistressValidation(model.getYear(), Gender.Male); + Supplier validFemale = () -> ar.psychDistressValidation(model.getYear(), Gender.Female); + + var plotter = new TimeSeriesSimulationPlotter("Share in psychological distress by age: " + ar.from() + " - " + ar.to(), ""); + plotter.addSource("males " + education + " educ", meanMale, colorArrayList.get(0), false); + plotter.addSource("females " + education + " educ", meanFemale, colorArrayList.get(1), false); + plotter.addSource("Validation males", validMale, colorArrayList.get(0), true); + plotter.addSource("Validation females", validFemale, colorArrayList.get(1), true); + updateChartSet.add(plotter); + psychologicalDistressCasesAgeEducationPlots.add(plotter); + } + } + tabSet.add(createScrollPaneFromPlots(psychologicalDistressCasesAgeEducationPlots, "Share in psychological distress (case-based): age/gender/education", 2)); + + // Psychological distress (case-based) by education + var psychologicalDistressCasesEducationPlots = new LinkedHashSet(); + for (Education education : Education.values()) { + var filter = Filters.ageRange(25, 64).and(Filters.education(education)); + var withEduInAgeRange = new FilteredCollection<>(model::getPersons, filter).oncePerSimTime(engine); + + var males = new FilteredCollection<>(withEduInAgeRange, Filters.male()); + var females = new FilteredCollection<>(withEduInAgeRange, Filters.female()); + + var maleCs = new WeightedCrossSection<>(males, Person::isPsychologicallyDistressed, Person::getWeight); + var femaleCs = new WeightedCrossSection<>(females, Person::isPsychologicallyDistressed, Person::getWeight); + + // FIXME: should this be cached? What about validation values? + var meanMale = OnceUntil.timeChanges(() -> new WeightedStats(maleCs.get()).mean(), engine); + var meanFemale = OnceUntil.timeChanges(() -> new WeightedStats(femaleCs.get()).mean(), engine); + + var plotter = new TimeSeriesSimulationPlotter("Share in psychological distress by education:", ""); + plotter.addSource("males " + education + " educ", meanMale, colorArrayList.get(0), false); + plotter.addSource("females " + education + " educ", meanFemale, colorArrayList.get(1), false); + + updateChartSet.add(plotter); + psychologicalDistressCasesEducationPlots.add(plotter); + } + tabSet.add(createScrollPaneFromPlots(psychologicalDistressCasesEducationPlots, "Share in psychological distress (case-based): gender/education", 2)); + + ageGenderPlots("Life satisfaction score", this.decades, Person::getDemLifeSatScore0to10, AgeRange::lifeSatValidation); + ageGenderPlots("Mental health MCS score", this.decades, Person::getHealthMentalMcs, AgeRange::mcsValidation); + ageGenderPlots("Physical health PCS score", this.decades, Person::getHealthPhysicalPcs, AgeRange::pcsValidation); + } + + // employment charts + if (employmentOfAdults) { + var inAgeRange = new FilteredCollection<>(model::getPersons, Filters.ageRange(18, 64)) + .oncePerSimTime(engine); + var males = new FilteredCollection<>(inAgeRange, Filters.male()); + var females = new FilteredCollection<>(inAgeRange, Filters.female()); + var malesCs = new WeightedCrossSection<>(males, Person::getEmployed, Person::getWeight); + var femalesCs = new WeightedCrossSection<>(females, Person::getEmployed, Person::getWeight); + var malesStats = WeightedStats.supplier(malesCs); + var femalesStats = WeightedStats.supplier(femalesCs); + + var plot = new TimeSeriesSimulationPlotter("Employment rate (18 - 64)", ""); + plot.addSource("males", () -> malesStats.get().mean(), colorArrayList.get(0), false); + plot.addSource("females", () -> femalesStats.get().mean(), colorArrayList.get(1), false); + plot.addSource("Validation males", + () -> Parameters.validationEmployment(model.getYear(), Gender.Male), + colorArrayList.get(0), true); + plot.addSource("Validation females", + () -> Parameters.validationEmployment(model.getYear(), Gender.Female), + colorArrayList.get(1), true); + + plot.setName("Employment"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // Male/Female employment rates by age groups + if(employmentByAge) { + ageGenderPlots("Employment rate", this.decades, Person::getEmployed, AgeRange::employmentValidation); + } + + // One graph for employment age by maternity status, conditional on age of children + if (femaleEmploymentByMaternity) { + var emplAgeMaternityPlots = new LinkedHashSet(); + + var femalesInAgeRange = new FilteredCollection<>(model::getPersons, + Filters.female().and(Filters.ageRange(20, 65))).oncePerSimTime(engine); + // FIXME: include 18 or not? + var with0_5 = new FilteredCollection<>(femalesInAgeRange, Filters.hasChildInAgeRange(0, 5)); + var with6_18 = new FilteredCollection<>(femalesInAgeRange, Filters.hasChildInAgeRange(6, 18)); + var without = new FilteredCollection<>(femalesInAgeRange, Filters.hasChildInAgeRange(0, 17).negate()); + var empRates = List.of(with0_5, with6_18, without).stream() + .map(fc -> new WeightedCrossSection<>(fc, Person::getEmployed, Person::getWeight)) + .map(wcs -> WeightedStats.supplier(wcs)) + .map(ws -> OnceUntil.timeChanges(() -> ws.get().mean(), engine)) + .toList(); + + var plotter = new TimeSeriesSimulationPlotter("Female employment rate, by age of children \n Women aged 20 - 65", ""); + plotter.addSource("with children aged 0 - 5 yo", empRates.get(0), colorArrayList.get(0), false); + plotter.addSource("with children aged 6 - 18 yo", empRates.get(1), colorArrayList.get(1), false); + plotter.addSource("without children under 18 yo", empRates.get(2), colorArrayList.get(2), false); + plotter.addSource("Validation with children aged 0 - 5 yo", + () -> Parameters.validationEmployment(model.getYear(), true, true), + colorArrayList.get(0), true); + plotter.addSource("Validation with children aged 6 - 18 yo", + () -> Parameters.validationEmployment(model.getYear(), true, false), + colorArrayList.get(1), true); + plotter.addSource("Validation without children under 18 yo", + () -> Parameters.validationEmployment(model.getYear(), false, false), + colorArrayList.get(2), true); + + updateChartSet.add(plotter); + emplAgeMaternityPlots.add(plotter); + tabSet.add(createScrollPaneFromPlots(emplAgeMaternityPlots, "Employment (female): age/maternity", 2)); + } + + // Employment by region + if (employmentByRegion) { + var inAgeRange = new FilteredCollection<>(model::getPersons, Filters.ageRange(18, 64)) + .oncePerSimTime(engine); + var emplGenderRegionPlots = new LinkedHashSet(); + var malePlot = new TimeSeriesSimulationPlotter("Male employment rate by region\n Age 18 - 64", ""); + var femalePlot = new TimeSeriesSimulationPlotter("Female employment rate by region\n Age 18 - 64", ""); + int colorCounter = 0; + for (var region : Parameters.getCountryRegions()) { + var inRegion = new FilteredCollection<>(inAgeRange, Filters.region(region)) + .oncePerSimTime(engine); + var malesInRegion = new FilteredCollection<>(inRegion, Filters.male()); + var femalesInRegion = new FilteredCollection<>(inRegion, Filters.female()); + var malesCs = new WeightedCrossSection<>(malesInRegion, Person::getEmployed, Person::getWeight); + var femalesCs = new WeightedCrossSection<>(femalesInRegion, Person::getEmployed, Person::getWeight); + var malesStats = WeightedStats.supplier(malesCs); + var femalesStats = WeightedStats.supplier(femalesCs); + + malePlot.addSource(region.getName(), () -> malesStats.get().mean(), + colorArrayList.get(colorCounter), false); + malePlot.addSource("Validation " + region.getName(), + () -> Parameters.validationEmployment(model.getYear(), Gender.Male, region), + colorArrayList.get(colorCounter), true); + + femalePlot.addSource(region.getName(), () -> femalesStats.get().mean(), + colorArrayList.get(colorCounter), false); + femalePlot.addSource("Validation " + region.getName(), + () -> Parameters.validationEmployment(model.getYear(), Gender.Female, region), + colorArrayList.get(colorCounter), true); + } + updateChartSet.add(malePlot); + updateChartSet.add(femalePlot); + emplGenderRegionPlots.add(malePlot); + emplGenderRegionPlots.add(femalePlot); + tabSet.add(createScrollPaneFromPlots(emplGenderRegionPlots, "Employment: gender/region", 2)); + } + + // labour supply chart + if (labourSupply) { + var plot = new TimeSeriesSimulationPlotter("Labour supply by education", "Yearly hours worked"); + int colorCounter = 0; + var flexibleLabour = new FilteredCollection<>(model::getPersons, Filters.flexibleLabourSupply()) + .oncePerSimTime(engine); + for(var edu : Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + var withEdu = new FilteredCollection<>(flexibleLabour, Filters.education(edu)); + var supplyCs = new WeightedCrossSection<>(withEdu, Person::getLabourSupplyHoursYearly, Person::getWeight); + var supplyStats = WeightedStats.supplier(supplyCs); + plot.addSource(edu.toString(), () -> supplyStats.get().mean(), colorArrayList.get(colorCounter), false); + plot.addSource("Validation " + edu.toString(), + () -> Parameters.validationLabourSupply(model.getYear(), edu), + colorArrayList.get(colorCounter), true); + colorCounter++; + } + plot.setName("Labour supply"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + var employedEarningFilter = Filters.employment(Les_c4.EmployedOrSelfEmployed) + .and(Filters.grossEarningsYearlyAtLeast(0.0)); + var employed = new FilteredCollection<>(model::getPersons, employedEarningFilter) + .oncePerSimTime(engine); + + // income charts - gross wages by region and education level + if (grossEarningsByRegionAndEducation) { + var currency = model.getCountry().equals(Country.UK) ? "£" : "€"; + var plot = new IndividualBarSimulationPlotter("Yearly Gross Earnings by Education and Region (excludes non-workers)", currency); + + for (var region: Parameters.getCountryRegions()) { + for (var edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + var inRegionWithEdu = new FilteredCollection<>(employed, Filters.region(region).and(Filters.education(edu))); + var cs = new WeightedCrossSection<>(inRegionWithEdu, Person::getGrossEarningsYearly, Person::getWeight); + var stats = WeightedStats.supplier(cs); + plot.addSource("(" + region.getName() + ", " + edu.toString() + ")", + () -> stats.get().mean(), colorOfEducation(edu)); + } + } + plot.setName("Gross Earnings"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // income charts b: gross earnings by education + if (grossEarningsByRegionAndEducation) { + var currency = model.getCountry().equals(Country.UK) ? "£" : "€"; + var plotEarnings = new TimeSeriesSimulationPlotter("Yearly Gross Earnings by Gender And Education", currency); + var plotWages = new TimeSeriesSimulationPlotter("Hourly Wages by Gender And Education", currency); + int colorCounter = 0; + + // FIXME: why slightly different from previous? + var employedEarningFilter2 = Filters.employment(Les_c4.EmployedOrSelfEmployed) + .and(Filters.grossEarningsYearlyAtLeast(1.0)) + .and(p -> p.getLabourSupplyHoursWeekly() > 0); + var employed2 = new FilteredCollection<>(model::getPersons, employedEarningFilter2) + .oncePerSimTime(engine); + + for(Education edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + for (Gender gender : Gender.values()) { + var ofGenderWithEdu = new FilteredCollection<>(employed2, Filters.gender(gender).and(Filters.education(edu))) + .oncePerSimTime(engine); + // Note: these are nominal values for each simulated year + var earningsCs = new WeightedCrossSection<>(ofGenderWithEdu, Person::getGrossEarningsYearly, Person::getWeight); + var wagesCs = new WeightedCrossSection<>(ofGenderWithEdu, Person::getHourlyWageRate1, Person::getWeight); + var earningsStats = WeightedStats.supplier(earningsCs); + var wagesStats = WeightedStats.supplier(wagesCs); + + var pStr = "(" + gender.toString() + ", " + edu.toString() + ")"; + plotEarnings.addSource(pStr, () -> earningsStats.get().mean(), colorArrayList.get(colorCounter), false); + plotWages.addSource(pStr, () -> wagesStats.get().mean(), colorArrayList.get(colorCounter), false); + plotEarnings.addSource("Validation " + pStr, + () -> Parameters.validationGrossEarnings(model.getYear(), gender, edu), + colorArrayList.get(colorCounter), true); + plotWages.addSource("Validation " + pStr, + () -> Parameters.validationHourlyWage(model.getYear(), gender, edu), + colorArrayList.get(colorCounter), true); + colorCounter++; + } + } + plotEarnings.setName("Gross Earnings by Gender / Education"); + plotWages.setName("Hourly Wages by Gender / Education"); + updateChartSet.add(plotEarnings); + tabSet.add(plotEarnings); + updateChartSet.add(plotWages); + tabSet.add(plotWages); + } + + if (grossEarningsByRegionAndEducation) { + var plot = new TimeSeriesSimulationPlotter("Hours of Work Weekly by Gender", "Hours"); + int icolor = 0; + for (var gender : Gender.values()) { + var ofGender = new FilteredCollection<>(employed, Filters.gender(gender)); + // Note: these are nominal values for each simulated year + var hoursCs = new WeightedCrossSection<>(ofGender, Person::getDoubleLabourSupplyHoursWeekly, Person::getWeight); + var hoursStats = WeightedStats.supplier(hoursCs); + plot.addSource(gender.toString(), () -> hoursStats.get().mean(), colorArrayList.get(icolor), false); + plot.addSource("Validation " + gender, + () -> Parameters.validationLhw(model.getYear(), gender), + colorArrayList.get(icolor), true); + icolor++; + } + plot.setName("Hours of Work by Gender"); + updateChartSet.add(plot); + tabSet.add(plot); + } - if (grossEarningsByRegionAndEducation) { - TimeSeriesSimulationPlotter hoursOfWorkByGenderPlotter; - int colorCounter = 0; - hoursOfWorkByGenderPlotter = new TimeSeriesSimulationPlotter("Hours of Work Weekly by Gender", "Hours"); - for (Gender gender : Gender.values()) { - GenderWorkingCSfilter genderWorkingFilter = new GenderWorkingCSfilter(gender); - Weighted_CrossSection.Double hoursCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDoubleLabourSupplyHoursWeekly", true); // Note: these are nominal values for each simulated year - hoursCS.setFilter(genderWorkingFilter); - hoursOfWorkByGenderPlotter.addSeries(gender.toString(), new Weighted_MeanArrayFunction(hoursCS), null, colorArrayList.get(colorCounter), false); - hoursOfWorkByGenderPlotter.addSeries("Validation " + gender, validator, Validator.DoublesVariables.valueOf("lhw_"+ gender), colorArrayList.get(colorCounter), true); - colorCounter++; - } - hoursOfWorkByGenderPlotter.setName("Hours of Work by Gender"); - updateChartSet.add(hoursOfWorkByGenderPlotter); - tabSet.add(hoursOfWorkByGenderPlotter); - } - //Statistics dependent charts if(collector.isCalculateGiniCoefficients()) { //As these charts need statistics to be calculated within the simulation, turn off these charts if the statistics are not calculated - + // FIXME: no need to use AccumulatorStats just to get a `lastValue`... + //INCOME CHARTS - GINI Set giniIncomeRegionPlots = new LinkedHashSet(); //Gini coefficient of market (gross) individual income TimeSeriesSimulationPlotter personalGrossEarningsGiniPlotter = new TimeSeriesSimulationPlotter("Gini: Gross individual earnings", "Gini coefficient"); //Add Series at national and regional level for(Region region: Parameters.getCountryRegions()) { - personalGrossEarningsGiniPlotter.addSeries(region.getName(), (IDoubleSource)collector.fGiniPersonalGrossEarningsRegionalMap.get(region)); + personalGrossEarningsGiniPlotter.addSource(region.getName(), + () -> collector.giniPersonalGrossEarnings.inRegion(region)); } - personalGrossEarningsGiniPlotter.addSeries("national", (IDoubleSource)collector.fGiniPersonalGrossEarningsNational); + personalGrossEarningsGiniPlotter.addSource("national", collector.giniPersonalGrossEarnings::national); updateChartSet.add(personalGrossEarningsGiniPlotter); //Add to set to be updated in buildSchedule method giniIncomeRegionPlots.add(personalGrossEarningsGiniPlotter); @@ -1406,9 +1098,11 @@ else if(edu.equals(Education.High)) { TimeSeriesSimulationPlotter equivalisedHouseholdDisposableIncomeGiniPlotter = new TimeSeriesSimulationPlotter("Gini: Equivalised household disposable income", "Gini coefficient"); //Add Series at national and regional level for(Region region: Parameters.getCountryRegions()) { - equivalisedHouseholdDisposableIncomeGiniPlotter.addSeries(region.getName(), (IDoubleSource)collector.fGiniEquivalisedHouseholdDisposableIncomeRegionalMap.get(region)); + equivalisedHouseholdDisposableIncomeGiniPlotter.addSource(region.getName(), + () -> collector.giniEquivalisedHouseholdDisposableIncome.inRegion(region)); } - equivalisedHouseholdDisposableIncomeGiniPlotter.addSeries("national", (IDoubleSource)collector.fGiniEquivalisedHouseholdDisposableIncomeNational); + equivalisedHouseholdDisposableIncomeGiniPlotter.addSource("national", + collector.giniEquivalisedHouseholdDisposableIncome::national); updateChartSet.add(equivalisedHouseholdDisposableIncomeGiniPlotter); //Add to set to be updated in buildSchedule method giniIncomeRegionPlots.add(equivalisedHouseholdDisposableIncomeGiniPlotter); @@ -1416,158 +1110,164 @@ else if(edu.equals(Education.High)) { } - //POVERTY CHARTS - if(poverty) { - Set povertyPlots = new LinkedHashSet(); - TimeSeriesSimulationPlotter housePovertyPlotter = new TimeSeriesSimulationPlotter("Share of Households at risk of poverty", ""); - TimeSeriesSimulationPlotter childPovertyPlotter = new TimeSeriesSimulationPlotter("Share of Children at risk of poverty", ""); - for(Region region: Parameters.getCountryRegions()) { - //Households - ValidHouseholdIncomeRegionalCSfilter validHouseholdIncomeRegionalFilter = new ValidHouseholdIncomeRegionalCSfilter(region); - Weighted_CrossSection.Integer validHousesAtRiskOfPovertyRegionCS = new Weighted_CrossSection.Integer(model.getBenefitUnits(), BenefitUnit.class, "getAtRiskOfPoverty", true); - validHousesAtRiskOfPovertyRegionCS.setFilter(validHouseholdIncomeRegionalFilter); - housePovertyPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(validHousesAtRiskOfPovertyRegionCS)); - - //Children - ChildValidIncomeRegionalCSfilter childValidIncomeRegionalFilter = new ChildValidIncomeRegionalCSfilter(region); - Weighted_CrossSection.Integer childAtRiskOfPovertyRegionCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getAtRiskOfPoverty", true); - childAtRiskOfPovertyRegionCS.setFilter(childValidIncomeRegionalFilter); - childPovertyPlotter.addSeries(region.getName(), new Weighted_MeanArrayFunction(childAtRiskOfPovertyRegionCS)); - } - //Households - ValidHouseholdIncomeCSfilter validHouseholdIncomeFilter = new ValidHouseholdIncomeCSfilter(); - Weighted_CrossSection.Integer validHousesAtRiskOfPovertyCS = new Weighted_CrossSection.Integer(model.getBenefitUnits(), BenefitUnit.class, "getAtRiskOfPoverty", true); - validHousesAtRiskOfPovertyCS.setFilter(validHouseholdIncomeFilter); - housePovertyPlotter.addSeries("national", new Weighted_MeanArrayFunction(validHousesAtRiskOfPovertyCS)); - updateChartSet.add(housePovertyPlotter); //Add to set to be updated in buildSchedule method - povertyPlots.add(housePovertyPlotter); - - //Children - ChildValidIncomeCSfilter childValidIncomeFilter = new ChildValidIncomeCSfilter(); - Weighted_CrossSection.Integer childAtRiskOfPovertyCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "getAtRiskOfPoverty", true); - childAtRiskOfPovertyCS.setFilter(childValidIncomeFilter); - childPovertyPlotter.addSeries("national", new Weighted_MeanArrayFunction(childAtRiskOfPovertyCS)); - updateChartSet.add(childPovertyPlotter); //Add to set to be updated in buildSchedule method - povertyPlots.add(childPovertyPlotter); - - tabSet.add(createScrollPaneFromPlots(povertyPlots, "Poverty", 2)); - } - - // HISTOGRAMS OF INCOME - if(incomeHistograms) { - Set histogramIncomePlots = new LinkedHashSet(); - - ValidPersonEarningsCSfilter validEarningsFilter = new ValidPersonEarningsCSfilter(); - Weighted_HistogramSimulationPlotter grossEarningsHistPlotter = new Weighted_HistogramSimulationPlotter("Individual Gross Earnings (yearly)", "Euro", histogramType.getHistogramType(), numberOfHistogramBins); - Weighted_CrossSection.Double grossEarningsCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getGrossEarningsYearly", true); - // Weighted_CrossSection.Double grossEarningsCS = new Weighted_CrossSection.Double(model.getPersons(), Person.DoublesVariables.GrossEarningsYearly); - grossEarningsCS.setFilter(validEarningsFilter); - - grossEarningsHistPlotter.addCollectionSource("Gross Earnings", grossEarningsCS); - updateChartSet.add(grossEarningsHistPlotter); //Add to set to be updated in buildSchedule method - histogramIncomePlots.add(grossEarningsHistPlotter); - - ValidHouseholdIncomeCSfilter validHouseholdIncomeFilter = new ValidHouseholdIncomeCSfilter(); - Weighted_HistogramSimulationPlotter dispIncomeHistPlotter = new Weighted_HistogramSimulationPlotter("Equivalised Disposable Income of Benefit Unit (yearly)", "Euro", histogramType.getHistogramType(), numberOfHistogramBins); - Weighted_CrossSection.Double equivalisedDisposableIncomeCS = new Weighted_CrossSection.Double(model.getBenefitUnits(), BenefitUnit.class, "getEquivalisedDisposableIncomeYearly", true); - // Weighted_CrossSection.Double equivalisedDisposableIncomeCS = new Weighted_CrossSection.Double(model.getHouseholds(), BenefitUnit.DoublesVariables.EquivalisedDisposableIncomeYearly); - equivalisedDisposableIncomeCS.setFilter(validHouseholdIncomeFilter); - dispIncomeHistPlotter.addCollectionSource("Equivalised BenefitUnit Disposable Income", equivalisedDisposableIncomeCS); - updateChartSet.add(dispIncomeHistPlotter); //Add to set to be updated in buildSchedule method - histogramIncomePlots.add(dispIncomeHistPlotter); - - tabSet.add(createScrollPaneFromPlots(histogramIncomePlots, "Income", 2)); - } - - - if (incomeHistograms) { - TimeSeriesSimulationPlotter EDIByGenderAndEducationPlotter; - int colorCounter = 0; - if (model.getCountry().equals(Country.UK)) { - EDIByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("EDI by Gender And Education", "£"); - } - else { - EDIByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("EDI by Gender And Education", "Euro"); - } - for(Education edu: Education.values()) { - if (Education.InEducation.equals(edu)) { - continue; - } - for (Gender gender : Gender.values()) { - GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); - Weighted_CrossSection.Double EDIWorkingCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getEquivalisedDisposableIncomeYearly", true); // Note: these are nominal values for each simulated year - EDIWorkingCS.setFilter(genderEducationWorkingFilter); - GenderEducationCSfilter genderEducationCSfilter = new GenderEducationCSfilter(gender, edu); - Weighted_CrossSection.Double EDIAllCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getEquivalisedDisposableIncomeYearly", true); // Note: these are nominal values for each simulated year - EDIAllCS.setFilter(genderEducationCSfilter); - EDIByGenderAndEducationPlotter.addSeries("Workers (" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(EDIWorkingCS), null, colorArrayList.get(colorCounter), false); - colorCounter++; - EDIByGenderAndEducationPlotter.addSeries("All (" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(EDIAllCS), null, colorArrayList.get(colorCounter), false); - // EDIByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("grossEarnings_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); - colorCounter++; - } - } - EDIByGenderAndEducationPlotter.setName("EDI by Gender / Education"); - updateChartSet.add(EDIByGenderAndEducationPlotter); - tabSet.add(EDIByGenderAndEducationPlotter); - } + var buWithIncome = new FilteredCollection<>(model::getBenefitUnits, BenefitUnitFilters.validIncome()) + .oncePerSimTime(engine); + // poverty charts + if (poverty) { + var povertyPlots = new LinkedHashSet(); + var housePlot = new TimeSeriesSimulationPlotter("Share of Households at risk of poverty", ""); + var childPlot = new TimeSeriesSimulationPlotter("Share of Children at risk of poverty", ""); + var childWithIncome = new FilteredCollection<>(model::getPersons, Filters.child().and(Filters.validIncome())) + .oncePerSimTime(engine); + for (var region : Parameters.getCountryRegions()) { + // Households + var buInRegion = new FilteredCollection<>(buWithIncome, BenefitUnitFilters.region(region)); + var buAtRiskCs = new WeightedCrossSection<>(buInRegion, BenefitUnit::getYPvrtyFlag, BenefitUnit::getWeight); + var buStats = WeightedStats.supplier(buAtRiskCs); + housePlot.addSource(region.getName(), () -> buStats.get().mean()); + + // Children + var childInRegion = new FilteredCollection<>(childWithIncome, Filters.region(region)); + var childAtRiskCs = new WeightedCrossSection<>(childInRegion, Person::getAtRiskOfPoverty, Person::getWeight); + var childStats = WeightedStats.supplier(childAtRiskCs); + childPlot.addSource(region.getName(), () -> childStats.get().mean()); + } + // Households + var buCs = new WeightedCrossSection<>(buWithIncome, BenefitUnit::getYPvrtyFlag, BenefitUnit::getWeight); + var buStats = WeightedStats.supplier(buCs); + housePlot.addSource("national", () -> buStats.get().mean()); + updateChartSet.add(housePlot); + povertyPlots.add(housePlot); + + // Children + var childCs = new WeightedCrossSection<>(childWithIncome, Person::getAtRiskOfPoverty, Person::getWeight); + var childStats = WeightedStats.supplier(childCs); + childPlot.addSource("national", () -> childStats.get().mean()); + updateChartSet.add(childPlot); + povertyPlots.add(childPlot); + + tabSet.add(createScrollPaneFromPlots(povertyPlots, "Poverty", 2)); + } + + // histograms of income + if (incomeHistograms) { + var histogramIncomePlots = new LinkedHashSet(); + + var plot = new Weighted_HistogramSimulationPlotter("Individual Gross Earnings (yearly)", "Euro", histogramType.getHistogramType(), numberOfHistogramBins); + var withValidEarnings = new FilteredCollection<>(model::getPersons, Filters.grossEarningsYearlyAtLeast(0.0)); + var cs = new WeightedCrossSection<>(withValidEarnings, Person::getGrossEarningsYearly, Person::getWeight); + plot.addSource("Gross Earnings", cs); + updateChartSet.add(plot); + histogramIncomePlots.add(plot); + + var houseCs = new WeightedCrossSection<>(buWithIncome, BenefitUnit::getEquivalisedDisposableIncomeYearly, BenefitUnit::getWeight); + var plotHouse = new Weighted_HistogramSimulationPlotter("Equivalised Disposable Income of Benefit Unit (yearly)", "Euro", histogramType.getHistogramType(), numberOfHistogramBins); + plotHouse.addSource("Equivalised BenefitUnit Disposable Income", houseCs); + updateChartSet.add(plotHouse); + histogramIncomePlots.add(plotHouse); + + tabSet.add(createScrollPaneFromPlots(histogramIncomePlots, "Income", 2)); + } + + + // FIXME: reuse where relevant + var currency = model.getCountry().equals(Country.UK) ? "£" : "€"; + if (incomeHistograms) { + var plot = new TimeSeriesSimulationPlotter("EDI by Gender And Education", currency); + int icolor = 0; + + // FIXME: why slightly different from `employed` in parent scope? + var employedEarningFilter2 = Filters.employment(Les_c4.EmployedOrSelfEmployed) + .and(Filters.grossEarningsYearlyAtLeast(1.0)) + .and(p -> p.getLabourSupplyHoursWeekly() > 0); + var employed2 = new FilteredCollection<>(model::getPersons, employedEarningFilter2) + .oncePerSimTime(engine); + + for (var edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + for (var gender : Gender.values()) { + var genderEduFilter = Filters.gender(gender).and(Filters.education(edu)); + var employedOfGenderWithEdu = new FilteredCollection<>(employed2, genderEduFilter); + // FIXME: such a strange combination of filters... + var ofGenderWithEdu = new FilteredCollection<>(model::getPersons, genderEduFilter.and(Filters.grossEarningsYearlyAtLeast(0.0))); + + var employedCs = new WeightedCrossSection<>(employedOfGenderWithEdu, Person::getEquivalisedDisposableIncomeYearly, Person::getWeight); + var allCs = new WeightedCrossSection<>(ofGenderWithEdu, Person::getEquivalisedDisposableIncomeYearly, Person::getWeight); + var employedStats = WeightedStats.supplier(employedCs); + var allStats = WeightedStats.supplier(allCs); + + plot.addSource("Workers (" + gender.toString() + ", " + edu.toString() + ")", + () -> employedStats.get().mean(), colorArrayList.get(icolor), false); + plot.addSource("All (" + gender.toString() + ", " + edu.toString() + ")", + () -> allStats.get().mean(), colorArrayList.get(icolor), false); + icolor++; + } + } + plot.setName("EDI by Gender / Education"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + if (incomeHistograms) { + var plot = new TimeSeriesSimulationPlotter("Disp income by Gender And Education", currency); + int icolor = 0; + + // FIXME: why slightly different from `employed` in parent scope? + var employedEarningFilter2 = Filters.employment(Les_c4.EmployedOrSelfEmployed) + .and(Filters.grossEarningsYearlyAtLeast(1.0)) + .and(p -> p.getLabourSupplyHoursWeekly() > 0); + var employed2 = new FilteredCollection<>(model::getPersons, employedEarningFilter2) + .oncePerSimTime(engine); + + for (var edu: Education.values()) { + if (Education.InEducation.equals(edu)) { + continue; + } + for (var gender : Gender.values()) { + var genderEduFilter = Filters.gender(gender).and(Filters.education(edu)); + var employedOfGenderWithEdu = new FilteredCollection<>(employed2, genderEduFilter); + // FIXME: such a strange combination of filters... + var ofGenderWithEdu = new FilteredCollection<>(model::getPersons, genderEduFilter.and(Filters.grossEarningsYearlyAtLeast(0.0))); + + var employedCs = new WeightedCrossSection<>(employedOfGenderWithEdu, Person::getDisposableIncomeMonthlyNoNull, Person::getWeight); + var allCs = new WeightedCrossSection<>(ofGenderWithEdu, Person::getDisposableIncomeMonthlyNoNull, Person::getWeight); + var employedStats = WeightedStats.supplier(employedCs); + var allStats = WeightedStats.supplier(allCs); + + plot.addSource("Workers (" + gender.toString() + ", " + edu.toString() + ")", + () -> employedStats.get().mean(), colorArrayList.get(icolor), false); + plot.addSource("All (" + gender.toString() + ", " + edu.toString() + ")", + () -> allStats.get().mean(), colorArrayList.get(icolor), false); + icolor++; + } + } + plot.setName("Disp income by Gender / Education"); + updateChartSet.add(plot); + tabSet.add(plot); + } + + // WORKING HOURS PYRAMID GRAPH + if (workingHoursPyramid) { + var workingHoursPyramidPlots = new LinkedHashSet(); + var plot = new Weighted_PyramidPlotter("Working hours over time", "Total hours worked", + Weighted_PyramidPlotter.DEFAULT_YAXIS, Weighted_PyramidPlotter.DEFAULT_LEFT_CAT, Weighted_PyramidPlotter.DEFAULT_RIGHT_CAT); + var males = new FilteredCollection<>(model::getPersons, Filters.male()); + var females = new FilteredCollection<>(model::getPersons, Filters.female()); + var malesCs = new WeightedCrossSection<>(males, Person::getLiwwh, Person::getWeight); + var femalesCs = new WeightedCrossSection<>(females, Person::getLiwwh, Person::getWeight); + + plot.setScalingFactor(model.getScalingFactor()); + plot.setLeft(malesCs); + plot.setRight(femalesCs); + + updateChartSet.add(plot); + workingHoursPyramidPlots.add(plot); + + tabSet.add(createScrollPaneFromPlots(workingHoursPyramidPlots, "Working Hours Pyramid", 1)); + } - if (incomeHistograms) { - TimeSeriesSimulationPlotter DispIncByGenderAndEducationPlotter; - int colorCounter = 0; - if (model.getCountry().equals(Country.UK)) { - DispIncByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Disp income by Gender And Education", "£"); - } - else { - DispIncByGenderAndEducationPlotter = new TimeSeriesSimulationPlotter("Disp income by Gender And Education", "Euro"); - } - for(Education edu: Education.values()) { - if (Education.InEducation.equals(edu)) { - continue; - } - for (Gender gender : Gender.values()) { - GenderEducationWorkingCSfilter genderEducationWorkingFilter = new GenderEducationWorkingCSfilter(gender, edu); - Weighted_CrossSection.Double DispIncWorkingCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDisposableIncomeMonthly", true); // Note: these are nominal values for each simulated year - DispIncWorkingCS.setFilter(genderEducationWorkingFilter); - GenderEducationCSfilter genderEducationCSfilter = new GenderEducationCSfilter(gender, edu); - Weighted_CrossSection.Double DispIncAllCS = new Weighted_CrossSection.Double(model.getPersons(), Person.class, "getDisposableIncomeMonthly", true); // Note: these are nominal values for each simulated year - DispIncAllCS.setFilter(genderEducationCSfilter); - DispIncByGenderAndEducationPlotter.addSeries("Workers (" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(DispIncWorkingCS), null, colorArrayList.get(colorCounter), false); - colorCounter++; - DispIncByGenderAndEducationPlotter.addSeries("All (" + gender.toString() + ", " + edu.toString() + ")", new Weighted_MeanArrayFunction(DispIncAllCS), null, colorArrayList.get(colorCounter), false); - // EDIByGenderAndEducationPlotter.addSeries("Validation (" + gender + ", " + edu + ")", validator, Validator.DoublesVariables.valueOf("grossEarnings_"+ gender +"_"+ edu), colorArrayList.get(colorCounter), true); - colorCounter++; - } - } - DispIncByGenderAndEducationPlotter.setName("Disp income by Gender / Education"); - updateChartSet.add(DispIncByGenderAndEducationPlotter); - tabSet.add(DispIncByGenderAndEducationPlotter); - } - - // WORKING HOURS PYRAMID GRAPH - if (workingHoursPyramid) { - Set workingHoursPyramidPlots = new LinkedHashSet(); - Weighted_PyramidPlotter populationAgeGenderPlotter = new Weighted_PyramidPlotter("Working hours over time", "Total hours worked", Weighted_PyramidPlotter.DEFAULT_YAXIS, Weighted_PyramidPlotter.DEFAULT_LEFT_CAT, Weighted_PyramidPlotter.DEFAULT_RIGHT_CAT); - // Please note that the Pyramid plotter requires a Weighted_CrossSection[2] - // The exact type (int, double etc) must match the variable in Person - Weighted_CrossSection.Integer[] populationData = new Weighted_CrossSection.Integer[2]; - Weighted_CrossSection.Integer maleAgesCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "labEmpNyear", false); - maleAgesCS.setFilter(new GenderCSfilter(Gender.Male)); - populationData[0] = maleAgesCS; - Weighted_CrossSection.Integer femaleAgesCS = new Weighted_CrossSection.Integer(model.getPersons(), Person.class, "labEmpNyear", false); - femaleAgesCS.setFilter(new GenderCSfilter(Gender.Female)); - populationData[1] = femaleAgesCS; - - populationAgeGenderPlotter.setScalingFactor(model.getScalingFactor()); - populationAgeGenderPlotter.addCollectionSource(populationData); - - updateChartSet.add(populationAgeGenderPlotter); //Add to set to be updated in buildSchedule method - workingHoursPyramidPlots.add(populationAgeGenderPlotter); - - tabSet.add(createScrollPaneFromPlots(workingHoursPyramidPlots, "Working Hours Pyramid", 1)); - } - - //------------------------------------------------------------------------------------------------------- // // BUILD A TABBED PANE HOLDING ALL THE CHARTS THAT ONLY UPDATE AT EACH TIME-STEP (not convergence plots) @@ -1588,27 +1288,6 @@ else if(edu.equals(Education.High)) { - //--------------------------------------------------------------------------- - // LABOUR MARKET CONVERGENCE UPDATED BETWEEN TIME-STEPS - //--------------------------------------------------------------------------- - - //BOWKER NORM OF LABOUR DEMAND*SUPPLY ELASTICITIES - //The condition for convergence (||AB||<1) for different skill levels (3 lines), at the regional level. These charts are updated at each iteration of the convergence process. - //This uses cross section objects and mean array functions to calculate averages on population aggregates and presents them in a scatterplot. -// convergenceElasticitiesPlotter = new ScatterplotSimulationPlotterRefreshable("Labour Market Convergence Criterion", "iteration", "||labour demand * supply elasticities||"); -// convergenceElasticitiesPlotter.setMaxSamples(convergenceElasticitiesPlotMaxSamples); //Show only the previous 'convergencePlotMaxSamples' number of iterations. -// for(Region region: Parameters.getCountryRegions()) { -// convergenceElasticitiesPlotter.addSeries(region.getName(), (ILongSource)new MultiTraceFunction.Long(model.getLabourMarket().getBowkerNormRegional(), region), new MultiTraceFunction.Double(model.getLabourMarket().getBowkerNormRegional(), region)); -// } -// if(floatingConvergencePlots) { -// GuiUtils.addWindow(convergenceElasticitiesPlotter, 0, 160, 450, 400); -// } -// else { -// convergencePlots.add(convergenceElasticitiesPlotter); -// } - - -// log.debug("Observer objects created"); } } @@ -1624,7 +1303,6 @@ public void buildSchedule() { for(JInternalFrame plot: updateChartSet) { chartingEvents.addEvent(plot, CommonEventType.Update); } -// getEngine().getEventQueue().scheduleOnce(chartingEvents, model.getStartYear(), Order.BEFORE_ALL.getOrdering()+1); getEngine().getEventQueue().scheduleRepeat(chartingEvents, model.getStartYear(), ordering, displayFrequency); getEngine().getEventQueue().scheduleRepeat(new SingleTargetEvent(this, Processes.ResetConvergenceChart), model.getStartYear(), ordering, displayFrequency); @@ -1686,19 +1364,10 @@ public void updateConvergencePlotter() { convergenceElasticitiesPlotter.update(); } -/* public void resetConvergencePlotter() { - model.getLabourMarket().getBowkerNormRegional().reset(); - convergenceElasticitiesPlotter.refresh(); - } -*/ //For potential earnings and aggregate labour supply/demand plots updated during convergence process public void updateLabourMarketPlots(Region region) { //Potential Earnings - for(Education edu: Education.values()) { - meanPotentialEarningsMultiMap.get(region, edu).updateSource(); //Only updates when both the underlying cross section AND the mean array function has setCheckingTime(false). -// meanPotentialEarningsMultiMap.get(region, edu).applyFunction(); //Forces update of function, but still needs the underlying cross section object to have setCheckingTime(false). - } for(ScatterplotSimulationPlotterRefreshable plot: potentialEarningsPlots.values()) { plot.update(); } @@ -1708,14 +1377,6 @@ public void updateLabourMarketPlots(Region region) { plot.update(); } - -// for(Education edu: Education.values()) { -// System.out.println("Average Potential Earnings: count " + countIterations + ", " + region.getName() + ": " + edu + ", " + meanPotentialEarningsMultiMap.get(region, edu).getDoubleValue(null)); -// } -// Person p = model.getPerson(202L); -// System.out.println("Potential Earnings of person " + p.getKey().getId() + ": count " + countIterations + ", " + p.getRegion() + ": " + p.getEducation() + ", " + p.getPotentialHourlyEarnings()); - - //Increment iterations count countIterations++; } @@ -1730,17 +1391,14 @@ public void resetLabourMarketPlots(Region region) { plot.reset(); } countIterations = 0; - - for(Education edu: Education.values()) { - //Potential Earnings - potentialEarningsPlots.get(edu).addSeries(region.getName(), (ILongSource)new MultiTraceFunction.Long(this, LongVariables.CountIterations), ((IDoubleSource)meanPotentialEarningsMultiMap.get(region, edu))); - - //Labour supply/demand stats -// labourMarketPlots.get(edu).addSeries(region.getName() + ": Demand", (ILongSource)new MultiTraceFunction.Long(this, LongVariables.CountIterations), new MultiTraceFunction.Double(new AggregateLabourDemandStatistics(region), edu)); -// labourMarketPlots.get(edu).addSeries(region.getName() + ": Supply", (ILongSource)new MultiTraceFunction.Long(this, LongVariables.CountIterations), new MultiTraceFunction.Double(new AggregateLabourSupplyStatistics(region), edu)); - } - } + for(var edu: Education.values()) { + // Potential Earnings + potentialEarningsPlots.get(edu).addSource(region.getName(), + () -> this.countIterations, + meanPotentialEarningsMultiMap.get(region, edu)); + } + } //-------------------------------------------------------------------------- @@ -1757,59 +1415,12 @@ public void onEvent(Enum type) { switch ((Processes) type) { case ResetConvergenceChart: -// resetConvergencePlotter(); break; } } - - //-------------------------------------------------------------------------- - // ILongSource implementation - //-------------------------------------------------------------------------- - - - public enum LongVariables { - CountIterations, - } - - @Override - public long getLongValue(Enum var) { - switch ((LongVariables) var) { - - case CountIterations: - return countIterations; - - default: - throw new IllegalArgumentException("ERROR - " + var + " not found in SimPathsObserver#getLongValue()"); - - } - - } - - - //-------------------------------------------------------------------------- - // Classes to access region and education dependent aggregate data - //-------------------------------------------------------------------------- - -/* public class AggregateLabourDemandStatistics implements IDoubleSource { - - private Region region; - - public AggregateLabourDemandStatistics(Region region) { - this.region = region; - } - - @Override - public double getDoubleValue(Enum education) { - return model.getLabourMarket().getAggregateWeeklyLabourDemandByRegionAndEducation().get(region).get(education); - } - - } -*/ - - //-------------------------------------------------------------------------- // Access methods //-------------------------------------------------------------------------- @@ -2070,14 +1681,6 @@ public void setConvergenceElasticitiesPlotMaxSamples(Integer convergenceElastici this.convergenceElasticitiesPlotMaxSamples = convergenceElasticitiesPlotMaxSamples; } -// public boolean isHealth() { -// return health; -// } -// -// public void setHealth(boolean health) { -// this.health = health; -// } - public boolean isHealthByAge() { return healthByAge; } diff --git a/src/main/java/simpaths/experiment/SimPathsStart.java b/src/main/java/simpaths/experiment/SimPathsStart.java index 75daa8713..d7167641d 100644 --- a/src/main/java/simpaths/experiment/SimPathsStart.java +++ b/src/main/java/simpaths/experiment/SimPathsStart.java @@ -3,7 +3,12 @@ // import Java packages import java.awt.Dimension; + +import org.apache.commons.beanutils.ConvertUtils; +import org.apache.commons.beanutils.Converter; import org.apache.commons.cli.*; +import org.apache.commons.cli.help.HelpFormatter; + import java.awt.Toolkit; import java.io.*; import java.util.Collection; @@ -31,6 +36,7 @@ // import SimPaths packages import simpaths.model.enums.Country; +import simpaths.model.enums.UnionMatchingMethod; import simpaths.data.*; import simpaths.model.taxes.database.TaxDonorDataParser; @@ -85,17 +91,25 @@ public static void main(String[] args) { //Adjust the country and year to the value read from Excel, which is updated when the database is rebuilt. Otherwise it will set the country and year to the last one used to build the database MultiKeyCoefficientMap lastDatabaseCountryAndYear = ExcelAssistant.loadCoefficientMap(Parameters.getInputDirectory() + Parameters.DatabaseCountryYearFilename + ".xlsx", "Data", 1); - if (lastDatabaseCountryAndYear.keySet().stream().anyMatch(key -> key.toString().equals("MultiKey[IT]"))) { - country = Country.IT; - } else { - country = Country.UK; -// country = Country.IT; - } + country = Country.UK; String valueYear = lastDatabaseCountryAndYear.getValue(country.toString()).toString(); startYear = Integer.parseInt(valueYear); // start the JAS-mine simulation engine System.out.println("Starting simulation..."); + ConvertUtils.register(new Converter() { + @Override + public T convert(Class type, Object value) { + if (value == null || value.toString().isBlank()) { + return type.cast(UnionMatchingMethod.ParametricNoRegion); + } + try { + return type.cast(UnionMatchingMethod.valueOf(value.toString())); + } catch (IllegalArgumentException e) { + return type.cast(UnionMatchingMethod.ParametricNoRegion); + } + } + }, UnionMatchingMethod.class); final SimulationEngine engine = SimulationEngine.getInstance(); MicrosimShell gui = null; if (showGui) { @@ -151,8 +165,7 @@ private static boolean parseCommandLineArgs(String[] args) { options.addOption(helpOption); CommandLineParser parser = new DefaultParser(); - HelpFormatter formatter = new HelpFormatter(); - formatter.setOptionComparator(null); + var formatter = HelpFormatter.builder().get(); try { CommandLine cmd = parser.parse(options, args); @@ -197,7 +210,7 @@ private static boolean parseCommandLineArgs(String[] args) { } } catch (ParseException | IllegalArgumentException e) { System.err.println("Error parsing command line arguments: " + e.getMessage()); - formatter.printHelp("SimPathsStart", options); + printHelpMessage(formatter, options); return false; } @@ -210,7 +223,11 @@ private static void printHelpMessage(HelpFormatter formatter, Options options) { "and exit before starting the first run. " + "It takes the following options:"; String footer = "When running with no display, `-g` must be set to `false`."; - formatter.printHelp("SimPathsStart", header, options, footer, true); + try { + formatter.printHelp("SimPathsStart", header, options, footer, true); + } catch (IOException e) { + System.err.println("failed to print CLI help: " + e.getMessage()); + } } @@ -224,6 +241,8 @@ private static void printHelpMessage(HelpFormatter formatter, Options options) { @Override public void buildExperiment(SimulationEngine engine) { + Parameters.validateStartYear(startYear); + // instantiate simulation processes SimPathsModel model = new SimPathsModel(country, startYear); SimPathsCollector collector = new SimPathsCollector(model); @@ -238,11 +257,13 @@ public void buildExperiment(SimulationEngine engine) { private static void runGUIlessSetup(int option) throws FileNotFoundException { - // Detect if data available; set to testing data if not + // Detect if data available; set to training data if not. Collection testList = FileUtils.listFiles(new File(Parameters.getInputDirectoryInitialPopulations()), new String[]{"csv"}, false); if (testList.size()==0) Parameters.setTrainingFlag(true); + Parameters.validateStartYear(startYear); + // Create EUROMODPolicySchedule input from files if (!rewritePolicySchedule && !new File(Parameters.getInputDirectory() + Parameters.EUROMODpolicyScheduleFilename + ".xlsx").exists()) { @@ -311,7 +332,7 @@ private static void runGUIdialog() { // initiate radio buttons to define policy environment and input database count = 0; Map startUpOptionsStringsMap = new LinkedHashMap<>(); - startUpOptionsStringsMap.put("Change country and/or simulation start year", count++); + startUpOptionsStringsMap.put("Change simulation start year", count++); startUpOptionsStringsMap.put("Load new input data for starting populations", count++); startUpOptionsStringsMap.put("Use UKMOD Light to alter description of tax and benefit systems", count++); startUpOptionsStringsMap.put("Load new input data for tax and benefit systems", count++); @@ -447,14 +468,12 @@ private static void runGUIdialog() { /** * - * METHOD FOR DISPLAYING GUI FOR SELECTING COUNTRY AND START YEAR OF SIMULATION + * METHOD FOR DISPLAYING GUI FOR SELECTING START YEAR OF SIMULATION * */ private static void chooseCountryAndStartYear() { // set-up combo-boxes - String textC = null; - ComboBoxCountry cbCountry = new ComboBoxCountry(textC); String textY = null; ComboBoxYear cbStartYear = new ComboBoxYear(textY); @@ -463,10 +482,8 @@ private static void chooseCountryAndStartYear() { BasicInternalFrameUI bi = (BasicInternalFrameUI)countryAndYearFrame.getUI(); bi.setNorthPane(null); countryAndYearFrame.setBorder(null); - cbCountry.setBorder(BorderFactory.createTitledBorder("Country selection drop-down menu")); cbStartYear.setBorder(BorderFactory.createTitledBorder("Start year selection drop-down menu")); countryAndYearFrame.setLayout(new BoxLayout(countryAndYearFrame.getContentPane(), BoxLayout.PAGE_AXIS)); - countryAndYearFrame.add(cbCountry); JPanel border = new JPanel(); countryAndYearFrame.add(border); countryAndYearFrame.add(cbStartYear); @@ -475,11 +492,11 @@ private static void chooseCountryAndStartYear() { countryAndYearFrame.setVisible(true); // text for GUI - String title = "Country and Start Year"; - String text = "

Select simulation country and start year

"; + String title = "Start Year"; + String text = "

Select simulation start year

"; // sizing for GUI - int height = 350, width = 600; + int height = 220, width = 600; Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize(); if (screenSize.width < 850) { width = (int) (screenSize.width * 0.95); @@ -495,8 +512,8 @@ private static void chooseCountryAndStartYear() { // Therefore, we should pass some sort of setting to the model blocking the alteration of // the country if possible. Could this be done by making the setCountry method ineffective // when the country has been set by the user in the dialog box in the start class? - country = cbCountry.getCountryEnum(); //Temporarily commented out to disallow choice of the country - //country = Country.IT; + //country = cbCountry.getCountryEnum(); //Temporarily commented out to disallow choice of the country + country = Country.UK; startYear = cbStartYear.getYear(); //Save the last selected country and year to Excel to use in the model if GUI launched straight away diff --git a/src/main/java/simpaths/model/BenefitUnit.java b/src/main/java/simpaths/model/BenefitUnit.java index da19a0ce0..92c14b28d 100644 --- a/src/main/java/simpaths/model/BenefitUnit.java +++ b/src/main/java/simpaths/model/BenefitUnit.java @@ -6,8 +6,12 @@ import microsim.data.db.PanelEntityKey; import org.hibernate.annotations.Fetch; +import simpaths.data.filters.Filters; import simpaths.data.ManagerRegressions; import simpaths.data.MultiValEvent; +import simpaths.model.annotations.Lag; +import simpaths.model.annotations.NullInitialised; +import simpaths.model.annotations.UpdateManager; import simpaths.model.enums.*; import org.apache.commons.collections4.keyvalue.MultiKey; import org.apache.commons.collections4.map.LinkedMap; @@ -15,7 +19,8 @@ import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; import org.apache.commons.lang3.tuple.Triple; -import org.apache.log4j.Logger; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; import simpaths.data.Parameters; import simpaths.model.decisions.DecisionParams; @@ -33,7 +38,7 @@ @Entity public class BenefitUnit implements EventListener, IDoubleSource, Weight, Comparable { - @Transient private static Logger log = Logger.getLogger(BenefitUnit.class); + @Transient private static Logger log = LogManager.getLogger(BenefitUnit.class); @Transient private final SimPathsModel model; @Transient private final SimPathsCollector collector; @Transient public static long benefitUnitIdCounter = 1L; @@ -59,39 +64,39 @@ public class BenefitUnit implements EventListener, IDoubleSource, Weight, Compar private Long statSeed; // unit specific variables - @Transient private States labStatesContObject; - private Double yInvestYear; - private Double yPensYear; - private Double xDiscretionaryYear; - @Column(name="wealthTotValue") private Double wealthTotValue; // total net wealth (includes pensions assets and housing) - @Column(name="wealthPensValue") private Double wealthPensValue; // total private (personal and occupational) pensions - @Column(name="wealthPrptyValue") private Double wealthPrptyValue; // value of main home (gross of mortgage debt) - @Column(name="wealthMortgageDebtValue") private Double wealthMortgageDebtValue; // value of outstanding mortgage debt - private Double yDispMonth; - private Double yGrossMonth; - private Double yBenAmountMonth; - private Integer yBenUCReceivedFlag; - private Integer yBenLegacyReceivedFlag; - private Double yDispEquivYear; - @Transient private Double yDispEquivYearL1; - @Transient private Double yDiffDispEquivPrevYear; + @NullInitialised @Transient private States labStatesContObject; + @NullInitialised private Double yInvestYear; + @NullInitialised private Double yPensYear; + @NullInitialised private Double xDiscretionaryYear; + @NullInitialised @Column(name="wealthTotValue") private Double wealthTotValue; // total net wealth (includes pensions assets and housing) + @NullInitialised @Column(name="wealthPensValue") private Double wealthPensValue; // total private (personal and occupational) pensions + @NullInitialised @Column(name="wealthPrptyValue") private Double wealthPrptyValue; // value of main home (gross of mortgage debt) + @NullInitialised @Column(name="wealthMortgageDebtValue") private Double wealthMortgageDebtValue; // value of outstanding mortgage debt + @NullInitialised private Double yDispMonth; + @NullInitialised private Double yGrossMonth; + @NullInitialised private Double yBenAmountMonth; + @NullInitialised private Integer yBenUCReceivedFlag; + @NullInitialised private Integer yBenLegacyReceivedFlag; + @NullInitialised private Double yDispEquivYear; + @Lag(getter = "getEquivalisedDisposableIncomeYearly") @Transient private Double yDispEquivYearL1; + @NullInitialised @Transient private Double yDiffDispEquivPrevYear; private Integer yPvrtyFlag; //1 if at risk of poverty, defined by an equivalisedDisposableIncomeYearly < 60% of median household's - @Transient private Integer yPvrtyFlagL1; - @Transient private Indicator i_demNChild0to2L1; //Lag(1) of d_children_3under; - @Transient private Indicator dem4to12L1; //Lag(1) of d_children_4_12; - @Transient private Integer numberChildren02_lag1; //Lag(1) of the number of children aged 0-2 in the household - @Transient private Integer numberChildrenAll_lag1; //Lag(1) of the number of children of all ages in the household - private Double xChildCareWeek; - private Double xCareWeek; - private Integer careProvidedFlag; - private Long idtaxDbDonor; - @Transient private Match demDbMatchTax; + @Lag(getter = "getYPvrtyFlag") @Transient private Integer yPvrtyFlagL1; + @Lag(getter = "getIndicatorChildren0to3") @Transient private Indicator dem0to3L1; + @Lag(getter = "getIndicatorChildren4to12") @Transient private Indicator dem4to12L1; //Lag(1) of d_children_4_12; + @Lag(getter = "getNumberChildren0to2") @Transient private Integer numberChildren02_lag1; //Lag(1) of the number of children aged 0-2 in the household + @Lag(getter = "getNumberChildrenAll") @Transient private Integer numberChildrenAll_lag1; //Lag(1) of the number of children of all ages in the household + @NullInitialised private Double xChildCareWeek; + @NullInitialised private Double xCareWeek; + @NullInitialised private Integer careProvidedFlag; + @NullInitialised private Long idtaxDbDonor; + @NullInitialised @Transient private Match demDbMatchTax; @Enumerated(EnumType.STRING) private Region region; //Region of household. Also used in findDonorHouseholdsByLabour method @Enumerated(EnumType.STRING) private Ydses_c5 yHhQuintilesMonthC5; - @Transient private Ydses_c5 yHhQuintilesC5L1; - @Transient private Double i_yNonBenHhGrossAsinh; - private Dhhtp_c4 dhhtp_c4; - @Transient private Dhhtp_c4 demCompHhC4L1; + @Lag(getter = "getYHhQuintilesMonthC5") @Transient private Ydses_c5 yHhQuintilesMonthC5L1; + @NullInitialised @Transient private Double i_yNonBenHhGrossAsinh; + @NullInitialised private Dhhtp_c4 demCompHhC4; + @Lag(getter = "getDemCompHhC4") @Transient private Dhhtp_c4 demCompHhC4L1; private String demCreatedByConstructor; @Column(name="wealthPrptyFlag") private Boolean wealthPrptyFlag; // are any of the individuals in the benefit unit a homeowner? True / false @Transient ArrayList> covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleMale = new ArrayList<>(); @@ -101,33 +106,31 @@ public class BenefitUnit implements EventListener, IDoubleSource, Weight, Compar @Transient private Double labPersistValueLabourInnov; @Transient private Integer lastYear; - @Transient private Integer i_demYear; - @Transient private Occupancy i_demOccupancy; - @Transient private Education i_eduHighestC4; - @Transient private Integer i_labHrsWork1Week; - @Transient private Integer i_labHrsWork2Week; + @NullInitialised @Transient private Integer i_demYear; + @NullInitialised @Transient private Occupancy i_demOccupancy; + @NullInitialised @Transient private Education i_eduHighestC4; + @NullInitialised @Transient private Integer i_labHrsWork1Week; + @NullInitialised @Transient private Integer i_labHrsWork2Week; // ================= At Risk of Work cache to avoid unnecessary atRiskOfWork() calls ================= - @Transient private Boolean cachedMaleAtRiskOfWork = null; - @Transient private Boolean cachedFemaleAtRiskOfWork = null; + @NullInitialised @Transient private Boolean cachedMaleAtRiskOfWork = null; + @NullInitialised @Transient private Boolean cachedFemaleAtRiskOfWork = null; // ================= Labour-choice cache for fast alignment ================= - @Transient private Integer labourChoiceCacheYear = null; + @NullInitialised @Transient private Integer labourChoiceCacheYear = null; // cached discrete choice set - @Transient private LinkedHashSet> cachedPossibleLabourCombinations = null; + @NullInitialised @Transient private LinkedHashSet> cachedPossibleLabourCombinations = null; // cached tax/income outputs by labour pair - @Transient private MultiKeyMap cachedEvalByLabourPairs = - MultiKeyMap.multiKeyMap(new LinkedMap<>()); + @NullInitialised @Transient private MultiKeyMap cachedEvalByLabourPairs = MultiKeyMap.multiKeyMap(new LinkedMap<>()); // cached utility regression scores by labour pair - @Transient private MultiKeyMap cachedUtilityScoreByLabourPairs = - MultiKeyMap.multiKeyMap(new LinkedMap<>()); + @NullInitialised @Transient private MultiKeyMap cachedUtilityScoreByLabourPairs = MultiKeyMap.multiKeyMap(new LinkedMap<>()); // score cache validity markers - @Transient private Integer labourScoreCacheYear = null; - @Transient private Object labourScoreCacheKey = null; + @NullInitialised @Transient private Integer labourScoreCacheYear = null; + @NullInitialised @Transient private Object labourScoreCacheKey = null; // helper – NOT persisted, no annotation needed private static class LabourEval { @@ -199,7 +202,7 @@ public BenefitUnit(Long id, long statSeed) { this.numberChildrenAll_lag1 = 0; this.numberChildren02_lag1 = 0; - this.i_demNChild0to2L1 = Indicator.False; + this.dem0to3L1 = Indicator.False; this.dem4to12L1 = Indicator.False; this.xChildCareWeek = 0.0; this.xCareWeek = 0.0; @@ -267,8 +270,8 @@ public BenefitUnit(BenefitUnit originalBenefitUnit, long benefitUnitInnov, Sampl switch (sampleEntry) { case ProcessedInputData -> { key.setId(originalBenefitUnit.getId()); - idBuOriginal = originalBenefitUnit.getIdOriginalBU(); - idHhOriginal = originalBenefitUnit.getIdOriginalHH(); + idBuOriginal = originalBenefitUnit.getIdBuOriginal(); + idHhOriginal = originalBenefitUnit.getIdHhOriginal(); } default -> { idBuOriginal = originalBenefitUnit.getId(); @@ -277,7 +280,6 @@ public BenefitUnit(BenefitUnit originalBenefitUnit, long benefitUnitInnov, Sampl } - this.log = originalBenefitUnit.log; yDispMonth = Objects.requireNonNullElse(originalBenefitUnit.getDisposableIncomeMonthly(),0.0); xDiscretionaryYear = Objects.requireNonNullElse(originalBenefitUnit.xDiscretionaryYear, 0.0); yGrossMonth = Objects.requireNonNullElse(originalBenefitUnit.getGrossIncomeMonthly(),0.0); @@ -291,19 +293,19 @@ public BenefitUnit(BenefitUnit originalBenefitUnit, long benefitUnitInnov, Sampl initialiseLiquidWealth( originalBenefitUnit.getRefPersonForDecisions().getDemAge(), originalBenefitUnit.getWealthTotValue(), - originalBenefitUnit.getPensionWealth(false), - originalBenefitUnit.getHousingWealth(false) + originalBenefitUnit.getWealthPensValue(false), + originalBenefitUnit.getWealthPrptyValue(false) ); this.numberChildrenAll_lag1 = originalBenefitUnit.numberChildrenAll_lag1; this.numberChildren02_lag1 = originalBenefitUnit.numberChildren02_lag1; - this.i_demNChild0to2L1 = originalBenefitUnit.i_demNChild0to2L1; + this.dem0to3L1 = originalBenefitUnit.dem0to3L1; this.dem4to12L1 = originalBenefitUnit.dem4to12L1; this.xChildCareWeek = originalBenefitUnit.xChildCareWeek; this.xCareWeek = originalBenefitUnit.xCareWeek; this.careProvidedFlag = originalBenefitUnit.careProvidedFlag; this.region = originalBenefitUnit.region; - this.yHhQuintilesMonthC5 = originalBenefitUnit.getYdses_c5(); - this.yHhQuintilesC5L1 = originalBenefitUnit.yHhQuintilesC5L1; + this.yHhQuintilesMonthC5 = originalBenefitUnit.getYHhQuintilesMonthC5(); + this.yHhQuintilesMonthC5L1 = originalBenefitUnit.yHhQuintilesMonthC5L1; this.demCompHhC4L1 = originalBenefitUnit.demCompHhC4L1; this.wealthPrptyFlag = originalBenefitUnit.wealthPrptyFlag; demCreatedByConstructor = Objects.requireNonNullElse(originalBenefitUnit.demCreatedByConstructor,"CopyConstructor"); @@ -319,8 +321,8 @@ public BenefitUnit(BenefitUnit originalBenefitUnit, long benefitUnitInnov, Sampl public enum Processes { Update, //This updates the household fields, such as number of children of a certain age - UpdateOutputVariables, UpdateWealth, + UpdateDemographics, CalculateChangeInEDI, //Calculate change in equivalised disposable income Homeownership, ReceivesBenefits, @@ -335,14 +337,13 @@ public void onEvent(Enum type) { switch ((Processes) type) { case Update -> { updateAttributes(); - clearStates(); - } - case UpdateOutputVariables -> { - updateOutputVariables(); } case UpdateWealth -> { updateWealth(); } + case UpdateDemographics -> { + updateDemographics(); + } case CalculateChangeInEDI -> { calculateEquivalisedDisposableIncomeYearly(); //Update BU's EDI calculateYearlyChangeInLogEquivalisedDisposableIncome(); //Calculate change in EDI @@ -370,14 +371,14 @@ protected void initializeFields() { if (getNumberChildrenAll()==0) xChildCareWeek = 0.0; // Transient lagged values are not loaded from DB; initialize them for year-1 regressors. - if (i_demNChild0to2L1 == null) i_demNChild0to2L1 = getIndicatorChildren(0,3); + if (dem0to3L1 == null) dem0to3L1 = getIndicatorChildren(0,3); if (dem4to12L1 == null) dem4to12L1 = getIndicatorChildren(4,12); if (numberChildrenAll_lag1 == null) numberChildrenAll_lag1 = getNumberChildrenAll(); if (numberChildren02_lag1 == null) numberChildren02_lag1 = getNumberChildren(0,2); - demCompHhC4L1 = getDhhtp_c4(); + demCompHhC4L1 = getDemCompHhC4(); // clean-up odd ends - if (getYdses_c5() == null) { + if (getYHhQuintilesMonthC5() == null) { yHhQuintilesMonthC5 = Ydses_c5.Q3; } if (region == null) @@ -386,21 +387,12 @@ protected void initializeFields() { protected void updateAttributes() { + UpdateManager.applyAnnotations(this); + // unit specific variables if (getNumberChildrenAll()==0) xChildCareWeek = 0.0; - // lags - i_demNChild0to2L1 = getIndicatorChildren(0,3); - dem4to12L1 = getIndicatorChildren(4,12); - numberChildrenAll_lag1 = getNumberChildrenAll(); - numberChildren02_lag1 = getNumberChildren(0,2); - demCompHhC4L1 = getDhhtp_c4(); - - yDispEquivYearL1 = getEquivalisedDisposableIncomeYearly(); - yPvrtyFlagL1 = getAtRiskOfPoverty(); - yHhQuintilesC5L1 = getYdses_c5(); - // random draws statInnovations.getNewDoubleDraws(); } @@ -412,8 +404,8 @@ protected void updateWealth() { /* Contemporaneous values of dhhtp_c4 are required for validation. Update and output here. */ - private void updateOutputVariables() { - dhhtp_c4 = getDhhtp_c4(); + private void updateDemographics() { + demCompHhC4 = getDemCompHhC4(); } @@ -552,8 +544,8 @@ protected void updateDisposableIncomeIfNotAtRiskOfWork() { male.setLabourSupplyWeekly(Labour.convertHoursToLabour(hoursWorkedPerWeekM)); getFemale().setLabourSupplyWeekly(Labour.convertHoursToLabour(hoursWorkedPerWeekF)); - double maleIncome = Math.sinh(male.getyMiscPersGrossMonth()); - double femaleIncome = Math.sinh(getFemale().getyMiscPersGrossMonth()); + double maleIncome = Math.sinh(male.getYMiscPersGrossMonth()); + double femaleIncome = Math.sinh(getFemale().getYMiscPersGrossMonth()); if (maleIncome>0.01 && femaleIncome>0.01) secondIncomePerMonth = Math.min(maleIncome, femaleIncome); originalIncomePerMonth = maleIncome + femaleIncome; @@ -562,12 +554,12 @@ protected void updateDisposableIncomeIfNotAtRiskOfWork() { } else if (male!=null) { male.setLabourSupplyWeekly(Labour.convertHoursToLabour(hoursWorkedPerWeekM)); - originalIncomePerMonth = Math.sinh(male.getyMiscPersGrossMonth()); + originalIncomePerMonth = Math.sinh(male.getYMiscPersGrossMonth()); dlltsdM = male.getDisability(); } else if (female!=null){ getFemale().setLabourSupplyWeekly(Labour.convertHoursToLabour(hoursWorkedPerWeekF)); - originalIncomePerMonth = Math.sinh(getFemale().getyMiscPersGrossMonth()); + originalIncomePerMonth = Math.sinh(getFemale().getYMiscPersGrossMonth()); dlltsdF = getFemale().getDisability(); } else throw new RuntimeException("Benefit Unit with the following ID has no recognised occupancy: " + getKey().getId()); @@ -615,7 +607,7 @@ private TaxEvaluation taxWrapper(double hoursWorkedPerWeekM, double hoursWorkedP evaluatedTransfers = new TaxEvaluation(model.getYear(), getRefPersonForDecisions().getDemAge(), getIntValue(Regressors.NumberMembersOver17), getIntValue(Regressors.NumberChildren04), getIntValue(Regressors.NumberChildren59), getIntValue(Regressors.NumberChildren1017), hoursWorkedPerWeekM, hoursWorkedPerWeekF, dlltsdM, dlltsdF, careProvidedFlag, originalIncomePerMonth, secondIncomePerMonth, - childcareCostPerMonth, socialCareCostPerMonth, getLiquidWealth(Parameters.enableIntertemporalOptimisations), taxInnov); + childcareCostPerMonth, socialCareCostPerMonth, getWealthTotValue(Parameters.enableIntertemporalOptimisations), taxInnov); return evaluatedTransfers; } @@ -668,10 +660,10 @@ protected void chooseRandomMonthlyOutcomeCovid19() { Triple selectedValueMale = covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleMale.get(randomIndex); Triple selectedValueFemale = covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleFemale.get(randomIndex); - male.setLes_c7_covid(selectedValueMale.getLeft()); // Set labour force status for male - male.setLes_c4(Les_c4.convertLes_c7_To_Les_c4(selectedValueMale.getLeft())); - female.setLes_c7_covid(selectedValueFemale.getLeft()); // Set labour force status for female - female.setLes_c4(Les_c4.convertLes_c7_To_Les_c4(selectedValueFemale.getLeft())); + male.setLabC7Covid(selectedValueMale.getLeft()); // Set labour force status for male + male.setLabC4(Les_c4.convertLes_c7_To_Les_c4(selectedValueMale.getLeft())); + female.setLabC7Covid(selectedValueFemale.getLeft()); // Set labour force status for female + female.setLabC4(Les_c4.convertLes_c7_To_Les_c4(selectedValueFemale.getLeft())); // Predicted hours need to be converted back into labour so a donor benefit unit can be found. Then, gross income can be converted to disposable. male.setLabourSupplyWeekly(Labour.convertHoursToLabour(selectedValueMale.getRight())); // Convert predicted work hours to labour enum and update male's value @@ -697,8 +689,8 @@ protected void chooseRandomMonthlyOutcomeCovid19() { int randomIndex = intFromUniform(0, covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleMale.size(), labourInnov); Triple selectedValueMale = covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleMale.get(randomIndex); - male.setLes_c7_covid(selectedValueMale.getLeft()); // Set labour force status for male - male.setLes_c4(Les_c4.convertLes_c7_To_Les_c4(selectedValueMale.getLeft())); + male.setLabC7Covid(selectedValueMale.getLeft()); // Set labour force status for male + male.setLabC4(Les_c4.convertLes_c7_To_Les_c4(selectedValueMale.getLeft())); // Predicted hours need to be converted back into labour so a donor benefit unit can be found. Then, gross income can be converted to disposable. male.setLabourSupplyWeekly(Labour.convertHoursToLabour(selectedValueMale.getRight())); // Convert predicted work hours to labour enum and update male's value @@ -722,8 +714,8 @@ protected void chooseRandomMonthlyOutcomeCovid19() { int randomIndex = intFromUniform(0, covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleFemale.size(), labourInnov); Triple selectedValueFemale = covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleFemale.get(randomIndex); - female.setLes_c7_covid(selectedValueFemale.getLeft()); // Set labour force status for female - female.setLes_c4(Les_c4.convertLes_c7_To_Les_c4(selectedValueFemale.getLeft())); + female.setLabC7Covid(selectedValueFemale.getLeft()); // Set labour force status for female + female.setLabC4(Les_c4.convertLes_c7_To_Les_c4(selectedValueFemale.getLeft())); // Predicted hours need to be converted back into labour so a donor benefit unit can be found. Then, gross income can be converted to disposable. female.setLabourSupplyWeekly(Labour.convertHoursToLabour(selectedValueFemale.getRight())); // Convert predicted work hours to labour enum and update female's value @@ -748,7 +740,7 @@ protected void chooseRandomMonthlyOutcomeCovid19() { if (covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleMale.size() > 0) { int randomIndex = intFromUniform(0, covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleMale.size(), labourInnov); Triple selectedValueMale = covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleMale.get(randomIndex); - male.setLes_c7_covid(selectedValueMale.getLeft()); // Set labour force status for male + male.setLabC7Covid(selectedValueMale.getLeft()); // Set labour force status for male male.setLabourSupplyWeekly(Labour.convertHoursToLabour(selectedValueMale.getRight())); double simulatedIncomeToConvertPerMonth = selectedValueMale.getMiddle(); @@ -768,7 +760,7 @@ protected void chooseRandomMonthlyOutcomeCovid19() { if (covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleFemale.size() > 0) { int randomIndex = intFromUniform(0, covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleFemale.size(), labourInnov); Triple selectedValueFemale = covid19MonthlyStateAndGrossIncomeAndWorkHoursTripleFemale.get(randomIndex); - female.setLes_c7_covid(selectedValueFemale.getLeft()); // Set labour force status for female + female.setLabC7Covid(selectedValueFemale.getLeft()); // Set labour force status for female female.setLabourSupplyWeekly(Labour.convertHoursToLabour(selectedValueFemale.getRight())); double simulatedIncomeToConvertPerMonth = selectedValueFemale.getMiddle(); @@ -796,21 +788,21 @@ It returns gross income at individual level, which is then totaled in the update private Triple predictCovidTransition(Person person) { - if (person.getLes_c7_covid_lag1() == null) { + if (person.getLabC7CovidL1() == null) { person.initialise_les_c6_from_c4(); - person.setCovidYLabGrossL1(person.getCovidModuleGrossLabourIncome_Baseline()); + person.setCovidYLabGrossL1(person.getCovidYLabGross()); } // Define variables: - Les_c7_covid stateFrom = person.getLes_c7_covid_lag1(); + Les_c7_covid stateFrom = person.getLabC7CovidL1(); Les_c7_covid stateTo = stateFrom; // Labour market state to which individual transitions. Initialise to stateFrom value if the outcome is "no changes" int newWorkHours; // Predicted work hours. Initialise to previous value if available, or hours from labour enum. if (person.getLabHrsWorkNewL1() != null) { newWorkHours = person.getLabHrsWorkNewL1(); } else { newWorkHours = person.getLabourSupplyHoursWeekly(); // Note: prediction for hours is in logs, needs to be transformed to levels - person.setNewWorkHours_lag1(newWorkHours); + person.setLabHrsWorkNewL1(newWorkHours); } double grossMonthlyIncomeToReturn = 0; // Gross income to return to updateLabourSupplyCovid19() method @@ -818,88 +810,88 @@ private Triple predictCovidTransition(Person pers double labourInnov2 = statInnovations.getDoubleDraw(3), labourInnov3 = statInnovations.getDoubleDraw(4); if (Les_c7_covid.Employee.equals(stateFrom)) { Map probs = Parameters.getRegC19LS_E1().getProbabilities(person, Person.DoublesVariables.class); - MultiValEvent event = new MultiValEvent(probs, labourInnov2); - Les_transitions_E1 transitionTo = (Les_transitions_E1) event.eval(); + var event = new MultiValEvent(probs, labourInnov2); + var transitionTo = event.eval(); stateTo = transitionTo.convertToLes_c7_covid(); - person.setLes_c7_covid(stateTo); // Use convert to les c6 covid method from the enum to convert the outcome to the les c6 scale and update the variable + person.setLabC7Covid(stateTo); // Use convert to les c6 covid method from the enum to convert the outcome to the les c6 scale and update the variable if (Les_transitions_E1.SelfEmployed.equals(transitionTo) || Les_transitions_E1.SomeChanges.equals(transitionTo)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_E2a().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_E1.NotEmployed)) { newWorkHours = 0; grossMonthlyIncomeToReturn = 0; } else if (transitionTo.equals(Les_transitions_E1.FurloughedFull)) { // If furloughed, don't change hours of work initialised at the beginning - grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_E1.FurloughedFlex)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_E2b().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else { // Else "no changes" = employee. Use initialisation value for stateTo and newWorkHours and fill gross monthly income - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } // Transitions from furlough full } else if (stateFrom.equals(Les_c7_covid.FurloughedFull)) { Map probs = Parameters.getRegC19LS_FF1().getProbabilities(person, Person.DoublesVariables.class); - MultiValEvent event = new MultiValEvent(probs, labourInnov2); - Les_transitions_FF1 transitionTo = (Les_transitions_FF1) event.eval(); + var event = new MultiValEvent(probs, labourInnov2); + var transitionTo = event.eval(); stateTo = transitionTo.convertToLes_c7_covid(); - person.setLes_c7_covid(stateTo); // Use convert to les c7 covid method from the enum to convert the outcome to the les c7 scale and update the variable + person.setLabC7Covid(stateTo); // Use convert to les c7 covid method from the enum to convert the outcome to the les c7 scale and update the variable if (transitionTo.equals(Les_transitions_FF1.Employee)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_F2b().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_FF1.SelfEmployed)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_F2a().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_FF1.FurloughedFlex)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_F2c().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_FF1.NotEmployed)) { newWorkHours = 0; grossMonthlyIncomeToReturn = 0; } else { // Else remains furloughed. Use 80% of initialisation value for stateTo and newWorkHours and fill gross monthly income - grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } // Transitions from furlough flex } else if (stateFrom.equals(Les_c7_covid.FurloughedFlex)) { Map probs = Parameters.getRegC19LS_FX1().getProbabilities(person, Person.DoublesVariables.class); - MultiValEvent event = new MultiValEvent(probs, labourInnov2); - Les_transitions_FX1 transitionTo = (Les_transitions_FX1) event.eval(); + var event = new MultiValEvent(probs, labourInnov2); + var transitionTo = event.eval(); stateTo = transitionTo.convertToLes_c7_covid(); - person.setLes_c7_covid(stateTo); // Use convert to les c7 covid method from the enum to convert the outcome to the les c7 scale and update the variable + person.setLabC7Covid(stateTo); // Use convert to les c7 covid method from the enum to convert the outcome to the les c7 scale and update the variable if (transitionTo.equals(Les_transitions_FX1.Employee)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_F2b().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_FX1.SelfEmployed)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_F2a().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_FX1.FurloughedFull)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_F2a().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); // 80% of earnings they would have had working normal hours, hence hours predicted as for employed in the line above + grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); // 80% of earnings they would have had working normal hours, hence hours predicted as for employed in the line above } else if (transitionTo.equals(Les_transitions_FX1.NotEmployed)) { newWorkHours = 0; grossMonthlyIncomeToReturn = 0; } else { // Else remains furloughed. Use 80% of initialisation value for stateTo and newWorkHours and fill gross monthly income - grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = 0.8 * Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } // Transitions from self-employment } else if (stateFrom.equals(Les_c7_covid.SelfEmployed)) { Map probs = Parameters.getRegC19LS_S1().getProbabilities(person, Person.DoublesVariables.class); - MultiValEvent event = new MultiValEvent(probs, labourInnov2); - Les_transitions_S1 transitionTo = (Les_transitions_S1) event.eval(); + var event = new MultiValEvent(probs, labourInnov2); + var transitionTo = event.eval(); stateTo = transitionTo.convertToLes_c7_covid(); - person.setLes_c7_covid(stateTo); // Use convert to les c6 covid method from the enum to convert the outcome to the les c6 scale and update the variable + person.setLabC7Covid(stateTo); // Use convert to les c6 covid method from the enum to convert the outcome to the les c6 scale and update the variable if (transitionTo.equals(Les_transitions_S1.Employee) || transitionTo.equals(Les_transitions_S1.SelfEmployed)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_S2a().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); // If transition to is self-employed (i.e. continues in self-employment), and earnings have decreased (gross monthly income lower than lag1 of gross monthly income, obtained from person.getCovidModuleGrossLabourIncome_lag1), predict probabiltiy of SEISS if (transitionTo.equals(Les_transitions_S1.SelfEmployed) && grossMonthlyIncomeToReturn < person.getCovidYLabGrossL1()) { @@ -920,14 +912,14 @@ private Triple predictCovidTransition(Person pers // Transitions from non-employment } else if (stateFrom.equals(Les_c7_covid.NotEmployed)) { Map probs = Parameters.getRegC19LS_U1().getProbabilities(person, Person.DoublesVariables.class); - MultiValEvent event = new MultiValEvent(probs, labourInnov2); - Les_transitions_U1 transitionTo = (Les_transitions_U1) event.eval(); + var event = new MultiValEvent(probs, labourInnov2); + var transitionTo = event.eval(); stateTo = transitionTo.convertToLes_c7_covid(); - person.setLes_c7_covid(stateTo); // Use convert to les c6 covid method from the enum to convert the outcome to the les c6 scale and update the variable + person.setLabC7Covid(stateTo); // Use convert to les c6 covid method from the enum to convert the outcome to the les c6 scale and update the variable if (transitionTo.equals(Les_transitions_U1.Employee) || transitionTo.equals(Les_transitions_U1.SelfEmployed)) { newWorkHours = (Labour.convertHoursToLabour(exponentiateAndConstrainWorkHoursPrediction(Parameters.getRegC19LS_U2a().getScore(person, Person.DoublesVariables.class)))).getHours(person); - grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getyMiscPersGrossMonth()); + grossMonthlyIncomeToReturn = Parameters.WEEKS_PER_MONTH * person.getEarningsWeekly(newWorkHours) + Math.sinh(person.getYMiscPersGrossMonth()); } else if (transitionTo.equals(Les_transitions_U1.NotEmployed)) { newWorkHours = 0; grossMonthlyIncomeToReturn = 0; @@ -939,8 +931,8 @@ private Triple predictCovidTransition(Person pers Triple stateGrossIncomeWorkHoursTriple = Triple.of(stateTo, grossMonthlyIncomeToReturn, newWorkHours); // Triple contains outcome labour market state after transition, gross income, and work hours person.setCovidYLabGrossL1(grossMonthlyIncomeToReturn); // used as a regressor in the Covid-19 regressions - person.setNewWorkHours_lag1(newWorkHours); // newWorkHours is not a state variable of a person and is only used from month to month in the covid module, so set lag here - person.setLes_c7_covid_lag1(stateTo); // Update lagged value of monthly labour market state + person.setLabHrsWorkNewL1(newWorkHours); // newWorkHours is not a state variable of a person and is only used from month to month in the covid module, so set lag here + person.setLabC7CovidL1(stateTo); // Update lagged value of monthly labour market state return stateGrossIncomeWorkHoursTriple; } @@ -1035,8 +1027,8 @@ public void updateLabourChoices() { male.setLabourSupplyWeekly(labourKey.getKey(0)); female.setLabourSupplyWeekly(labourKey.getKey(1)); - double maleIncome = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getyMiscPersGrossMonth()); - double femaleIncome = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getyMiscPersGrossMonth()); + double maleIncome = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getYMiscPersGrossMonth()); + double femaleIncome = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getYMiscPersGrossMonth()); double originalIncomePerMonth = maleIncome + femaleIncome; double secondIncomePerMonth = Math.min(maleIncome, femaleIncome); @@ -1050,7 +1042,7 @@ public void updateLabourChoices() { for (MultiKey labourKey : cachedPossibleLabourCombinations) { male.setLabourSupplyWeekly(labourKey.getKey(0)); - double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getyMiscPersGrossMonth()); + double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getYMiscPersGrossMonth()); TaxEvaluation ev = taxWrapper(labourKey.getKey(0).getHours(male), 0.0, male.getDisability(), -1, originalIncomePerMonth, 0.0); cachedEvalByLabourPairs.put(labourKey, new LabourEval(ev)); @@ -1061,7 +1053,7 @@ public void updateLabourChoices() { for (MultiKey labourKey : cachedPossibleLabourCombinations) { female.setLabourSupplyWeekly(labourKey.getKey(1)); - double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getyMiscPersGrossMonth()); + double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getYMiscPersGrossMonth()); TaxEvaluation ev = taxWrapper(0.0, labourKey.getKey(1).getHours(female), -1, female.getDisability(), originalIncomePerMonth, 0.0); cachedEvalByLabourPairs.put(labourKey, new LabourEval(ev)); @@ -1490,7 +1482,7 @@ public void updateFixedCostsAndLabour() { // populate final incomes from cache (NO taxWrapper) LabourEval chosenEval = cachedEvalByLabourPairs.get(labourSupplyChoice); yDispMonth = chosenEval.disposableIncomeMonthly; - yPensYear = chosenEval.benefitsReceivedPerMonth; + yBenAmountMonth = chosenEval.benefitsReceivedPerMonth; yGrossMonth = chosenEval.grossIncomeMonthly; demDbMatchTax = chosenEval.taxDbMatch; idtaxDbDonor = demDbMatchTax.getCandidateID(); @@ -1616,8 +1608,8 @@ protected void updateLabourSupplyAndIncome() { female.setLabourSupplyWeekly(labourKey.getKey(1)); // Earnings are composed of the labour income and non-benefit non-employment income Yptciihs_dv() (this is monthly, so no need to multiply by WEEKS_PER_MONTH_RATIO) - double maleIncome = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getyMiscPersGrossMonth()); - double femaleIncome = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getyMiscPersGrossMonth()); + double maleIncome = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getYMiscPersGrossMonth()); + double femaleIncome = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getYMiscPersGrossMonth()); double originalIncomePerMonth = maleIncome + femaleIncome; double secondIncomePerMonth = Math.min(maleIncome, femaleIncome); @@ -1674,7 +1666,7 @@ protected void updateLabourSupplyAndIncome() { for (MultiKey labourKey : possibleLabourCombinations) { male.setLabourSupplyWeekly(labourKey.getKey(0)); - double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getyMiscPersGrossMonth()); + double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * male.getEarningsWeekly() + Math.sinh(male.getYMiscPersGrossMonth()); TaxEvaluation evaluatedTransfers = taxWrapper(labourKey.getKey(0).getHours(male), 0.0, male.getDisability(), -1, originalIncomePerMonth, 0.0); yDispMonth = evaluatedTransfers.getDisposableIncomePerMonth(); @@ -1704,7 +1696,7 @@ protected void updateLabourSupplyAndIncome() { for (MultiKey labourKey : possibleLabourCombinations) { female.setLabourSupplyWeekly(labourKey.getKey(1)); - double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getyMiscPersGrossMonth()); + double originalIncomePerMonth = Parameters.WEEKS_PER_MONTH * female.getEarningsWeekly() + Math.sinh(female.getYMiscPersGrossMonth()); TaxEvaluation evaluatedTransfers = taxWrapper(0.0, labourKey.getKey(1).getHours(female), -1, female.getDisability(), originalIncomePerMonth, 0.0); yDispMonth = evaluatedTransfers.getDisposableIncomePerMonth(); @@ -1753,13 +1745,13 @@ protected void updateLabourSupplyAndIncome() { // -> then persist employment innovation with probability Parameters.labour_innovation_employment_persistence_probability // Otherwise // -> persist employment innovation with probability Parameters.labour_innovation_notinemployment_persistence_probability - if (occupancy.Single_Male.equals(occupancy) && male.atRiskOfWork() && male.getEmployed_Lag1() == 1) { + if (Occupancy.Single_Male.equals(occupancy) && male.atRiskOfWork() && male.getEmployedFlagL1() == 1) { labourInnov = getLabourInnovation(Parameters.labour_innovation_employment_persistence_probability); - } else if (occupancy.Single_Female.equals(occupancy) && female.atRiskOfWork() && female.getEmployed_Lag1() == 1) { + } else if (Occupancy.Single_Female.equals(occupancy) && female.atRiskOfWork() && female.getEmployedFlagL1() == 1) { labourInnov = getLabourInnovation(Parameters.labour_innovation_employment_persistence_probability); } else if (occupancy.equals(Occupancy.Couple) && - ((male.atRiskOfWork() && male.getEmployed_Lag1() == 1) || - (!male.atRiskOfWork() && female.atRiskOfWork() && female.getEmployed_Lag1() == 1))) { + ((male.atRiskOfWork() && male.getEmployedFlagL1() == 1) || + (!male.atRiskOfWork() && female.atRiskOfWork() && female.getEmployedFlagL1() == 1))) { labourInnov = getLabourInnovation(Parameters.labour_innovation_employment_persistence_probability); } else { labourInnov = getLabourInnovation(Parameters.labour_innovation_notinemployment_persistence_probability); @@ -1843,13 +1835,6 @@ private static double getLogSumExp(MultiKeyMap regressionScoresM return logSumExp; } - ///////////////////////////////////////////////////////////////////////////////// - // - // Other Methods - // - //////////////////////////////////////////////////////////////////////////////// - - protected void calculateBUIncome() { /* @@ -1881,63 +1866,36 @@ protected void calculateBUIncome() { // male double labourEarningsMaleMonthly = male.getEarningsWeekly(male.getLabourSupplyHoursWeekly()) * Parameters.WEEKS_PER_MONTH; //Level of monthly labour earnings - male.setyEmpPersGrossMonth(asinh(labourEarningsMaleMonthly)); - double ypnbihsMaleMonthly = labourEarningsMaleMonthly + Math.sinh(male.getyMiscPersGrossMonth()); //personal non-benefit income per month - male.setyNonBenPersGrossMonth(asinh(ypnbihsMaleMonthly)); - male.setCovidModuleGrossLabourIncome_Baseline(ypnbihsMaleMonthly); // Used in the Covid-19 labour supply module + male.setYEmpPersGrossMonth(asinh(labourEarningsMaleMonthly)); + double ypnbihsMaleMonthly = labourEarningsMaleMonthly + Math.sinh(male.getYMiscPersGrossMonth()); //personal non-benefit income per month + male.setYNonBenPersGrossMonth(asinh(ypnbihsMaleMonthly)); + male.setCovidYLabGross(ypnbihsMaleMonthly); // Used in the Covid-19 labour supply module // female double labourEarningsFemaleMonthly = female.getEarningsWeekly(female.getLabourSupplyHoursWeekly()) * Parameters.WEEKS_PER_MONTH; //Level of monthly labour earnings - female.setyEmpPersGrossMonth(asinh(labourEarningsFemaleMonthly)); //This follows asinh transform of labourEarnings - double ypnbihsFemaleMonthly = labourEarningsFemaleMonthly + Math.sinh(female.getyMiscPersGrossMonth()); //In levels - female.setyNonBenPersGrossMonth(asinh(ypnbihsFemaleMonthly)); //Set asinh transformed - female.setCovidModuleGrossLabourIncome_Baseline(ypnbihsFemaleMonthly); // Used in the Covid-19 labour supply module + female.setYEmpPersGrossMonth(asinh(labourEarningsFemaleMonthly)); //This follows asinh transform of labourEarnings + double ypnbihsFemaleMonthly = labourEarningsFemaleMonthly + Math.sinh(female.getYMiscPersGrossMonth()); //In levels + female.setYNonBenPersGrossMonth(asinh(ypnbihsFemaleMonthly)); //Set asinh transformed + female.setCovidYLabGross(ypnbihsFemaleMonthly); // Used in the Covid-19 labour supply module // benefit unit income is the sum of male and female non-benefit income double tmpHHYpnbihs_dv = (ypnbihsMaleMonthly + ypnbihsFemaleMonthly) / equivalisedWeight; //Equivalised - setTmpHHYpnbihs_dv_asinh(asinh(tmpHHYpnbihs_dv)); //Asinh transformation of HH non-benefit income - - //Based on the percentiles calculated by the collector, assign household to one of the quintiles of (equivalised) income distribution - if(collector.getStats() != null) { //Collector only gets initialised when simulation starts running - if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p20()) { - yHhQuintilesMonthC5 = Ydses_c5.Q1; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p40()) { - yHhQuintilesMonthC5 = Ydses_c5.Q2; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p60()) { - yHhQuintilesMonthC5 = Ydses_c5.Q3; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p80()) { - yHhQuintilesMonthC5 = Ydses_c5.Q4; - } else { - yHhQuintilesMonthC5 = Ydses_c5.Q5; - } - } + setI_yNonBenHhGrossAsinh(asinh(tmpHHYpnbihs_dv)); //Asinh transformation of HH non-benefit income + } else if(getOccupancy().equals(Occupancy.Single_Male)) { if (male != null) { double labourEarningsMaleMonthly = male.getEarningsWeekly(male.getLabourSupplyHoursWeekly()) * Parameters.WEEKS_PER_MONTH; //Level of monthly labour earnings - male.setyEmpPersGrossMonth(asinh(labourEarningsMaleMonthly)); //This follows asinh transform of labourEarnings - double ypnbihsMaleMonthly = labourEarningsMaleMonthly + Math.sinh(male.getyMiscPersGrossMonth()); //In levels - male.setyNonBenPersGrossMonth(asinh(ypnbihsMaleMonthly)); //Set asinh transformed - male.setCovidModuleGrossLabourIncome_Baseline(ypnbihsMaleMonthly); // Used in the Covid-19 labour supply module + male.setYEmpPersGrossMonth(asinh(labourEarningsMaleMonthly)); //This follows asinh transform of labourEarnings + double ypnbihsMaleMonthly = labourEarningsMaleMonthly + Math.sinh(male.getYMiscPersGrossMonth()); //In levels + male.setYNonBenPersGrossMonth(asinh(ypnbihsMaleMonthly)); //Set asinh transformed + male.setCovidYLabGross(ypnbihsMaleMonthly); // Used in the Covid-19 labour supply module //BenefitUnit income is the male non-benefit income double tmpHHYpnbihs_dv = ypnbihsMaleMonthly / equivalisedWeight; //Equivalised - setTmpHHYpnbihs_dv_asinh(asinh(tmpHHYpnbihs_dv)); //Asinh transformation of HH non-benefit income - - if(collector.getStats() != null) { //Collector only gets initialised when simulation starts running - if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p20()) { - yHhQuintilesMonthC5 = Ydses_c5.Q1; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p40()) { - yHhQuintilesMonthC5 = Ydses_c5.Q2; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p60()) { - yHhQuintilesMonthC5 = Ydses_c5.Q3; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p80()) { - yHhQuintilesMonthC5 = Ydses_c5.Q4; - } else { - yHhQuintilesMonthC5 = Ydses_c5.Q5; - } - } + setI_yNonBenHhGrossAsinh(asinh(tmpHHYpnbihs_dv)); //Asinh transformation of HH non-benefit income + } else throw new RuntimeException("single male unit does not include a single male"); } else { @@ -1946,34 +1904,36 @@ protected void calculateBUIncome() { //If not a couple nor a single male, occupancy must be single female double labourEarningsFemaleMonthly = female.getEarningsWeekly(female.getLabourSupplyHoursWeekly()) * Parameters.WEEKS_PER_MONTH; //Level of monthly labour earnings - female.setyEmpPersGrossMonth(asinh(labourEarningsFemaleMonthly)); //This follows asinh transform of labourEarnings - double ypnbihsFemaleMonthly = labourEarningsFemaleMonthly + Math.sinh(female.getyMiscPersGrossMonth()); //In levels - female.setyNonBenPersGrossMonth(asinh(ypnbihsFemaleMonthly)); //Set asinh transformed - female.setCovidModuleGrossLabourIncome_Baseline(ypnbihsFemaleMonthly); // Used in the Covid-19 labour supply module + female.setYEmpPersGrossMonth(asinh(labourEarningsFemaleMonthly)); //This follows asinh transform of labourEarnings + double ypnbihsFemaleMonthly = labourEarningsFemaleMonthly + Math.sinh(female.getYMiscPersGrossMonth()); //In levels + female.setYNonBenPersGrossMonth(asinh(ypnbihsFemaleMonthly)); //Set asinh transformed + female.setCovidYLabGross(ypnbihsFemaleMonthly); // Used in the Covid-19 labour supply module //BenefitUnit income is the female non-benefit income double tmpHHYpnbihs_dv = ypnbihsFemaleMonthly / equivalisedWeight; //Equivalised - setTmpHHYpnbihs_dv_asinh(asinh(tmpHHYpnbihs_dv)); //Asinh transformation of HH non-benefit income - - if(collector.getStats() != null) { //Collector only gets initialised when simulation starts running - - if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p20()) { - yHhQuintilesMonthC5 = Ydses_c5.Q1; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p40()) { - yHhQuintilesMonthC5 = Ydses_c5.Q2; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p60()) { - yHhQuintilesMonthC5 = Ydses_c5.Q3; - } else if(getTmpHHYpnbihs_dv_asinh() <= collector.getStats().getYdses_p80()) { - yHhQuintilesMonthC5 = Ydses_c5.Q4; - } else { - yHhQuintilesMonthC5 = Ydses_c5.Q5; - } - } + setI_yNonBenHhGrossAsinh(asinh(tmpHHYpnbihs_dv)); //Asinh transformation of HH non-benefit income + } else throw new RuntimeException("single female unit does not include a single male"); } } + public void updateIncomeQuintile() { + if (collector.getWealthIncomeStats() != null) { + if (getI_yNonBenHhGrossAsinh() <= collector.getWealthIncomeStats().getYHhQuintilesC5P20()) { + yHhQuintilesMonthC5 = Ydses_c5.Q1; + } else if (getI_yNonBenHhGrossAsinh() <= collector.getWealthIncomeStats().getYHhQuintilesC5P40()) { + yHhQuintilesMonthC5 = Ydses_c5.Q2; + } else if (getI_yNonBenHhGrossAsinh() <= collector.getWealthIncomeStats().getYHhQuintilesC5P60()) { + yHhQuintilesMonthC5 = Ydses_c5.Q3; + } else if (getI_yNonBenHhGrossAsinh() <= collector.getWealthIncomeStats().getYHhQuintilesC5P80()) { + yHhQuintilesMonthC5 = Ydses_c5.Q4; + } else { + yHhQuintilesMonthC5 = Ydses_c5.Q5; + } + } + } + public int getSize() { return members.size(); } @@ -1985,11 +1945,11 @@ public void updateActivityOfPersonsWithinBenefitUnit() { private void updateActivity(Person person) { - if (person!=null && !Les_c4.Student.equals(person.getLes_c4()) && !Les_c4.Retired.equals(person.getLes_c4())) { + if (person!=null && !Les_c4.Student.equals(person.getLabC4()) && !Les_c4.Retired.equals(person.getLabC4())) { if (person.getLabourSupplyHoursWeekly() > 0) { - person.setLes_c4(Les_c4.EmployedOrSelfEmployed); + person.setLabC4(Les_c4.EmployedOrSelfEmployed); } else { - person.setLes_c4(Les_c4.NotEmployed); + person.setLabC4(Les_c4.NotEmployed); } } } @@ -2552,12 +2512,12 @@ public double getDoubleValue(Enum variableID) { return (getMaleLeisureHoursWeekly()) * getIndicatorChildren(0,2).ordinal(); } case MaleLeisure_MaleDeh_c3_Low -> { - if(getMale().getDeh_c4().equals(Education.Low)) { + if(getMale().getEduHighestC4().equals(Education.Low)) { return (getMaleLeisureHoursWeekly()); } else return 0.; } case MaleLeisure_MaleDeh_c3_Medium -> { - if(getMale().getDeh_c4().equals(Education.Medium)) { + if(getMale().getEduHighestC4().equals(Education.Medium)) { return (getMaleLeisureHoursWeekly()); } else return 0.; } @@ -2689,12 +2649,12 @@ public double getDoubleValue(Enum variableID) { return (getFemaleLeisureHoursWeekly()) * getIndicatorChildren(0,2).ordinal(); } case FemaleLeisure_FemaleDeh_c3_Low -> { - if(getFemale().getDeh_c4().equals(Education.Low)) { + if(getFemale().getEduHighestC4().equals(Education.Low)) { return (getFemaleLeisureHoursWeekly()); } else return 0.; } case FemaleLeisure_FemaleDeh_c3_Medium -> { - if(getFemale().getDeh_c4().equals(Education.Medium)) { + if(getFemale().getEduHighestC4().equals(Education.Medium)) { return (getFemaleLeisureHoursWeekly()); } else return 0.; } @@ -2793,9 +2753,9 @@ public double getDoubleValue(Enum variableID) { } case FixedCost_Disabled -> { if (getMale() != null && getFemale() == null) { - return (getMale().getLabourSupplyHoursWeekly() > 0) ? getMale().getDlltsd().ordinal() : 0.; + return (getMale().getLabourSupplyHoursWeekly() > 0) ? getMale().getHealthDsblLongtermFlag().ordinal() : 0.; } else if (getFemale() != null && getMale() == null) { - return (getFemale().getLabourSupplyHoursWeekly() > 0) ? getFemale().getDlltsd().ordinal() : 0.; + return (getFemale().getLabourSupplyHoursWeekly() > 0) ? getFemale().getHealthDsblLongtermFlag().ordinal() : 0.; } else return 0.; } case FixedCost_RetirementAge -> { @@ -2807,12 +2767,12 @@ public double getDoubleValue(Enum variableID) { } case FixedCost_Disabled_Male -> { if (getMale() != null && getMale().getLabourSupplyHoursWeekly() > 0) { - return getMale().getDlltsd().ordinal(); + return getMale().getHealthDsblLongtermFlag().ordinal(); } else return 0.; } case FixedCost_Disabled_Female -> { if (getFemale() != null && getFemale().getLabourSupplyHoursWeekly() > 0) { - return getFemale().getDlltsd().ordinal(); + return getFemale().getHealthDsblLongtermFlag().ordinal(); } else return 0.; } case FixedCost_RetirementAge_Male -> { @@ -2826,14 +2786,10 @@ public double getDoubleValue(Enum variableID) { } else return 0.; } case FixedCostMale_NorthernRegions -> { - if(getMale().getLabourSupplyHoursWeekly() > 0 && (region.equals(Region.ITC) || region.equals(Region.ITH))) { - return 1.; - } else return 0.; + return 0.; } case FixedCostMale_SouthernRegions -> { - if(getMale().getLabourSupplyHoursWeekly() > 0 && (region.equals(Region.ITF) || region.equals(Region.ITG))) { - return 1.; - } else return 0.; + return 0.; } case FixedCostFemale -> { if(getFemale().getLabourSupplyHoursWeekly() > 0) { @@ -2841,14 +2797,10 @@ public double getDoubleValue(Enum variableID) { } else return 0.; } case FixedCostFemale_NorthernRegions -> { - if(getFemale().getLabourSupplyHoursWeekly() > 0 && (region.equals(Region.ITC) || region.equals(Region.ITH))) { - return 1.; - } else return 0.; + return 0.; } case FixedCostFemale_SouthernRegions -> { - if(getFemale().getLabourSupplyHoursWeekly() > 0 && (region.equals(Region.ITF) || region.equals(Region.ITG))) { - return 1.; - } else return 0.; + return 0.; } case FixedCostMale_NChildren017 -> { if(getMale().getLabourSupplyHoursWeekly() > 0) { @@ -2900,13 +2852,13 @@ public double getDoubleValue(Enum variableID) { case FixedCostMale_Dlltsdsp -> { //Fixed cost interacted with dummy for partner being long-term sick or disabled if(getMale().getLabourSupplyHoursWeekly() > 0) { if(getFemale() != null) { - return getFemale().getDlltsd().ordinal(); //==1 if partner is long-term sick or disabled + return getFemale().getHealthDsblLongtermFlag().ordinal(); //==1 if partner is long-term sick or disabled } else return 0.; } else return 0.; } case FixedCostMale_Lesspc3_Student -> { //Fixed cost interacted with dummy for partner being a student if(getMale().getLabourSupplyHoursWeekly() > 0) { - if(getFemale() != null && getFemale().getLes_c4().equals(Les_c4.Student)) { + if(getFemale() != null && getFemale().getLabC4().equals(Les_c4.Student)) { return 1.; //Partner must be female - if a student, return 1 } else return 0.; } else return 0.; @@ -2929,13 +2881,13 @@ public double getDoubleValue(Enum variableID) { case FixedCostFemale_Dlltsdsp -> { //Fixed cost interacted with dummy for partner being long-term sick or disabled if(getFemale().getLabourSupplyHoursWeekly() > 0) { if(getMale() != null) { - return getMale().getDlltsd().ordinal(); //==1 if partner is long-term sick or disabled + return getMale().getHealthDsblLongtermFlag().ordinal(); //==1 if partner is long-term sick or disabled } else return 0.; } else return 0.; } case FixedCostFemale_Lesspc3_Student -> { if(getFemale().getLabourSupplyHoursWeekly() > 0) { - if(getMale() != null && getMale().getLes_c4().equals(Les_c4.Student)) { + if(getMale() != null && getMale().getLabC4().equals(Les_c4.Student)) { return 1.; //Partner must be male - if a student, return 1 } else return 0.; } else return 0.; @@ -2968,9 +2920,9 @@ public double getDoubleValue(Enum variableID) { } case Hrs_below36_Disabled -> { if (getMale() != null && getFemale() == null) { - return (getMale().getLabourSupplyHoursWeekly() > 0 && getMale().getLabourSupplyHoursWeekly() < 36) ? getMale().getDlltsd().ordinal() : 0.; + return (getMale().getLabourSupplyHoursWeekly() > 0 && getMale().getLabourSupplyHoursWeekly() < 36) ? getMale().getHealthDsblLongtermFlag().ordinal() : 0.; } else if (getFemale() != null && getMale() == null) { - return (getFemale().getLabourSupplyHoursWeekly() > 0 && getFemale().getLabourSupplyHoursWeekly() < 36) ? getFemale().getDlltsd().ordinal() : 0.; + return (getFemale().getLabourSupplyHoursWeekly() > 0 && getFemale().getLabourSupplyHoursWeekly() < 36) ? getFemale().getHealthDsblLongtermFlag().ordinal() : 0.; } else return 0.; } case Hrs_below36_RetirementAge -> { @@ -2982,12 +2934,12 @@ public double getDoubleValue(Enum variableID) { } case Hrs_below36_Disabled_Male -> { if (getMale() != null && getMale().getLabourSupplyHoursWeekly() > 0 && getMale().getLabourSupplyHoursWeekly() < 36) { - return getMale().getDlltsd().ordinal(); + return getMale().getHealthDsblLongtermFlag().ordinal(); } else return 0.; } case Hrs_below36_Disabled_Female -> { if (getFemale() != null && getFemale().getLabourSupplyHoursWeekly() > 0 && getFemale().getLabourSupplyHoursWeekly() < 36) { - return getFemale().getDlltsd().ordinal(); + return getFemale().getHealthDsblLongtermFlag().ordinal(); } else return 0.; } case Hrs_below36_RetirementAge_Male -> { @@ -3051,16 +3003,9 @@ public double getDoubleValue(Enum variableID) { return 0.; //Our model doesn't take account of elderly (as people move out of parental home when 18 years old, and we do not provide a mechanism for parents to move back in. } case HoursMaleByDregion -> { - if(model.getCountry().equals(Country.IT)) { - if(getRegion().equals(Region.ITF) || getRegion().equals(Region.ITG)) { //For South Italy (Sud) and Islands (Isole) - return getMale().getLabourSupplyHoursWeekly(); - } else return 0.; - } else if(model.getCountry().equals(Country.UK)) { - if(getRegion().equals(Region.UKI)) { //For London - return getMale().getLabourSupplyHoursWeekly(); - } else return 0.; - } else throw new IllegalArgumentException("Error - household " + this.getId() + " has region " + getRegion() + " which is not yet handled in DonorHousehold.getDoubleValue()!"); - + if(getRegion().equals(Region.UKI)) { //For London + return getMale().getLabourSupplyHoursWeekly(); + } else return 0.; } case HoursFemale -> { return getFemale().getLabourSupplyHoursWeekly(); @@ -3087,15 +3032,9 @@ public double getDoubleValue(Enum variableID) { return 0.; //Our model doesn't take account of elderly (as people move out of parental home when 18 years old, and we do not provide a mechanism for parents to move back in. } case HoursFemaleByDregion -> { //Value of hours are already taken into account by multiplying regression coefficients in Parameters class - if(model.getCountry().equals(Country.IT)) { - if(getRegion().equals(Region.ITF) || getRegion().equals(Region.ITG)) { //For South Italy (Sud) and Islands (Isole) - return getFemale().getLabourSupplyHoursWeekly(); - } else return 0.; - } else if(model.getCountry().equals(Country.UK)) { - if(getRegion().equals(Region.UKI)) { //For London - return getFemale().getLabourSupplyHoursWeekly(); - } else return 0.; - } else throw new IllegalArgumentException("Error - household " + this.getKey().getId() + " has region " + getRegion() + " which is not yet handled in DonorHousehold.getDoubleValue()!"); + if(getRegion().equals(Region.UKI)) { //For London + return getFemale().getLabourSupplyHoursWeekly(); + } else return 0.; //The following regressors for FixedCosts appear as negative in the Utility regression, and so are multiplied by a factor of -1 below. //The following regressors only apply when the male hours worked is greater than 0 @@ -3131,11 +3070,11 @@ public double getDoubleValue(Enum variableID) { case FixedCostByHighEducation -> { if(getFemale() == null) { //For single males if(getMale().getLabourSupplyHoursWeekly() > 0) { - return getMale().getDeh_c4().equals(Education.High) ? -1. : 0.; + return getMale().getEduHighestC4().equals(Education.High) ? -1. : 0.; } else return 0.; } else if (getMale() == null) { //For single females if(getFemale().getLabourSupplyHoursWeekly() > 0) { - return getFemale().getDeh_c4().equals(Education.High) ? -1. : 0.; + return getFemale().getEduHighestC4().equals(Education.High) ? -1. : 0.; } else return 0.; } else throw new IllegalArgumentException("Error - FixedCostByHighEducation regressor should only be called for Households containing single people (with or without children), however household " + key.getId() + " has a couple, with male " + getMale().getKey().getId() + " and female " + getFemale().getKey().getId()); @@ -3598,100 +3537,100 @@ public double getDoubleValue(Enum variableID) { } } case MaleEduM_10 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_10 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_20 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_20 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_30 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_30 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_40 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_40 -> { - return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleEduM_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case MaleEduH_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getMale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_10 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_10 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_20 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_20 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_30 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_30 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_40 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_40 -> { - return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getMale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_1 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TEN) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_2 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.TWENTY) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_3 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case FemaleEduM_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.Medium)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getEduHighestC4().equals(Education.Medium)) ? 1. : 0.; } case FemaleEduH_4 -> { - return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getDeh_c4().equals(Education.High)) ? 1. : 0.; + return (getMale() != null && getFemale() != null && getFemale().getLabourSupplyWeekly().equals(Labour.THIRTY_EIGHT) && getFemale().getEduHighestC4().equals(Education.High)) ? 1. : 0.; } case MaleLeisure_dnc02 -> { return (getMaleLeisureHoursWeekly()) * getIndicatorChildren(0,1).ordinal(); @@ -3877,12 +3816,7 @@ private double getFemaleLeisureHoursWeekly() { } - //////////////////////////////////////////////////////////////////////////////// - // // Override equals and hashCode to make unique BenefitUnit determined by Key.getId() - // - //////////////////////////////////////////////////////////////////////////////// - @Override public boolean equals(Object o) { @@ -3912,11 +3846,6 @@ public int compareTo(BenefitUnit benefitUnit) { } - //////////////////////////////////////////////////////////////////////////////// - // - // Other methods - // - //////////////////////////////////////////////////////////////////////////////// public boolean getAtRiskOfWork() { boolean atRiskOfWork = false; @@ -3941,11 +3870,11 @@ public double fracEmployed() { Person female = getFemale(); if(female != null) { femaleQuantity = 1; - if (Les_c4.EmployedOrSelfEmployed.equals(female.getLes_c4())) {femaleEmployed = 1;}; + if (Les_c4.EmployedOrSelfEmployed.equals(female.getLabC4())) {femaleEmployed = 1;}; } if( male != null) { maleQuantity = 1; - if (Les_c4.EmployedOrSelfEmployed.equals(male.getLes_c4())) {maleEmployed = 1;} + if (Les_c4.EmployedOrSelfEmployed.equals(male.getLabC4())) {maleEmployed = 1;} } fracEmployed = (femaleEmployed + maleEmployed) / (double) (femaleQuantity + maleQuantity); @@ -3957,10 +3886,10 @@ public boolean isEmployed() { Person male = getMale(); Person female = getFemale(); if(female != null) { - isEmployed = Les_c4.EmployedOrSelfEmployed.equals(female.getLes_c4()); + isEmployed = Les_c4.EmployedOrSelfEmployed.equals(female.getLabC4()); } if(!isEmployed && male != null) { //Can skip checking if atRiskOfWork is true already - isEmployed = Les_c4.EmployedOrSelfEmployed.equals(male.getLes_c4()); + isEmployed = Les_c4.EmployedOrSelfEmployed.equals(male.getLabC4()); } return isEmployed; } @@ -4001,14 +3930,6 @@ private double calculateYearlyChangeInLogEquivalisedDisposableIncome() { return yearlyChangeInLogEquivalisedDisposableIncome; } - - //////////////////////////////////////////////////////////////////////////////// - // - // Access Methods - // - //////////////////////////////////////////////////////////////////////////////// - - /** * * Returns a defensive copy of the field. @@ -4031,10 +3952,10 @@ public void initialiseLiquidWealth(int age, double donorLiquidWealth, double don } public double getWealthTotValue() { - return getLiquidWealth(true); + return getWealthTotValue(true); } - public double getLiquidWealth(boolean throwError) { + public double getWealthTotValue(boolean throwError) { if (!Parameters.checkFinite(wealthTotValue)) { if (throwError) throw new RuntimeException("Call to get benefit unit liquid wealth before it is initialised."); @@ -4044,15 +3965,15 @@ public double getLiquidWealth(boolean throwError) { return wealthTotValue; } - public void setWealthTotValue(Double liquidWealth) { - this.wealthTotValue = liquidWealth; + public void setWealthTotValue(Double wealthTotValue) { + this.wealthTotValue = wealthTotValue; } - public double getPensionWealth() { - return getPensionWealth(true); + public double getWealthPensValue() { + return getWealthPensValue(true); } - public double getPensionWealth(boolean throwError) { + public double getWealthPensValue(boolean throwError) { if (!Parameters.checkFinite(wealthPensValue)) { if (throwError) throw new RuntimeException("Call to get benefit unit pension wealth before it is initialised."); @@ -4062,15 +3983,15 @@ public double getPensionWealth(boolean throwError) { return wealthPensValue; } - public void setPensionWealth(Double wealthPensValue) { + public void setWealthPensValue(Double wealthPensValue) { this.wealthPensValue = wealthPensValue; } - public double getHousingWealth() { - return getHousingWealth(true); + public double getWealthPrptyValue() { + return getWealthPrptyValue(true); } - public double getHousingWealth(boolean throwError) { + public double getWealthPrptyValue(boolean throwError) { if (!Parameters.checkFinite(wealthPrptyValue)) { if (throwError) throw new RuntimeException("Call to get benefit unit housing wealth before it is initialised."); @@ -4080,14 +4001,14 @@ public double getHousingWealth(boolean throwError) { return wealthPrptyValue; } - public void setHousingWealth(Double wealth) { - wealthPrptyValue = wealth; + public void setWealthPrptyValue(Double wealthPrptyValue) { + this.wealthPrptyValue = wealthPrptyValue; } - public double getChildcareCostPerWeek() { - return getChildcareCostPerWeek(true); + public double getXChildCareWeek() { + return getXChildCareWeek(true); } - public double getChildcareCostPerWeek(boolean throwError) { + public double getXChildCareWeek(boolean throwError) { if (!Parameters.checkFinite(xChildCareWeek)) { if (throwError) { throw new RuntimeException("Call to get benefit unit childcare cost before it is initialised."); @@ -4098,10 +4019,10 @@ public double getChildcareCostPerWeek(boolean throwError) { return xChildCareWeek; } - public double getSocialCareCostPerWeek() { - return getSocialCareCostPerWeek(true); + public double getXCareWeek() { + return getXCareWeek(true); } - public double getSocialCareCostPerWeek(boolean throwError) { + public double getXCareWeek(boolean throwError) { if (!Parameters.checkFinite(xCareWeek)) { if (throwError) { throw new RuntimeException("Call to get benefit unit social care cost before it is initialised."); @@ -4168,6 +4089,9 @@ public int getNumberChildrenAll() { public int getNumberChildren(int age) { return getNumberChildren(age, age); } + public Integer getNumberChildren0to2() { + return getNumberChildren(0, 2); + } public int getNumberChildren(int minAge, int maxAge) { int nChildren = 0; if (model==null) { @@ -4182,51 +4106,48 @@ public int getNumberChildren(int minAge, int maxAge) { } return nChildren; } + + /// Whether the Person has children in the given age range (both ends included). public Indicator getIndicatorChildren(int minAge, int maxAge) { - Indicator flag = Indicator.False; - if (model==null) { - for (int aa=minAge; aa<=maxAge; aa++) { - if (getNumberChildrenByAge(aa) > 0) { - flag = Indicator.True; - break; - } - } - } - return flag; + var found = this.members.stream().anyMatch(Filters.ageRange(minAge, maxAge)); + return found ? Indicator.True : Indicator.False; } - public Integer getNumberChildrenAll_lag1() { + + public Indicator getIndicatorChildren0to3() { + + return getIndicatorChildren(0,3); + } + public Indicator getIndicatorChildren4to12() { + return getIndicatorChildren(4,12); + } + public Integer getNumberChildrenAllL1() { return numberChildrenAll_lag1; } - public Integer getNumberChildren02_lag1() { return numberChildren02_lag1; } - public Indicator getIndicatorChildren03_lag1() { return i_demNChild0to2L1; } - public Indicator getIndicatorChildren412_lag1() { + public Integer getNumberChildren02L1() { return numberChildren02_lag1; } + public Indicator getDem0to3L1() { return dem0to3L1; } + public Indicator getDem4to12L1() { return dem4to12L1; } public double getEquivalisedDisposableIncomeYearly() { - double val; - if (yDispEquivYear != null) { - val = yDispEquivYear; - } else { - val = -9999.99; - } - return val; + return Objects.requireNonNullElse(yDispEquivYear, -9999.99); } - public int getAtRiskOfPoverty() { - if (yPvrtyFlag != null) { - return yPvrtyFlag; - } else return 0; + public int getYPvrtyFlag() { + return Objects.requireNonNullElse(yPvrtyFlag, 0); } - public Integer getAtRiskOfPoverty_lag1() { + public Integer getYPvrtyFlagL1() { return yPvrtyFlagL1; } - public void setAtRiskOfPoverty(Integer yPvrtyFlag) { + public void setYPvrtyFlag(Integer yPvrtyFlag) { this.yPvrtyFlag = yPvrtyFlag; } + public Double getDisposableIncomeMonthlyNoNull() { + return Objects.requireNonNullElse(yDispMonth, 0.0); + } public Double getDisposableIncomeMonthly() { return yDispMonth; } @@ -4240,7 +4161,7 @@ public Double getBenefitsReceivedPerMonth() { } public Integer getReceivedUC() { - return (yBenUCReceivedFlag == null ? 0 : yBenUCReceivedFlag); + return Objects.requireNonNullElse(yBenUCReceivedFlag, 0); } public void setReceivedUC(Integer yBenUCReceivedFlag) { @@ -4248,7 +4169,7 @@ public void setReceivedUC(Integer yBenUCReceivedFlag) { } public Integer getReceivedLegacyBenefits() { - return (yBenLegacyReceivedFlag == null ? 0 : yBenLegacyReceivedFlag); + return Objects.requireNonNullElse(yBenLegacyReceivedFlag, 0); } public void setReceivedLegacyBenefits(Integer yBenLegacyReceivedFlag) { @@ -4256,7 +4177,7 @@ public void setReceivedLegacyBenefits(Integer yBenLegacyReceivedFlag) { } - public void setOccupancyLocal(Occupancy occupancy) { + public void setI_demOccupancy(Occupancy occupancy) { i_demOccupancy = occupancy; } @@ -4290,25 +4211,29 @@ public long getId() { return key.getId(); } - public Ydses_c5 getYdses_c5() { + public Ydses_c5 getYHhQuintilesMonthC5() { return yHhQuintilesMonthC5; } - public Ydses_c5 getYdses_c5_lag1() { - return yHhQuintilesC5L1; + public Ydses_c5 getYHhQuintilesMonthC5L1() { + return yHhQuintilesMonthC5L1; + } + + public double getI_yNonBenHhGrossAsinhNoNull() { + return Objects.requireNonNullElse(i_yNonBenHhGrossAsinh, 0.0); } - public double getTmpHHYpnbihs_dv_asinh() { + public double getI_yNonBenHhGrossAsinh() { if (i_yNonBenHhGrossAsinh ==null) throw new RuntimeException("tmpHHYpnbihs_dv_asinh accessed before initialised"); return i_yNonBenHhGrossAsinh; } - public void setTmpHHYpnbihs_dv_asinh(double val) { + public void setI_yNonBenHhGrossAsinh(double val) { i_yNonBenHhGrossAsinh = val; } - public Dhhtp_c4 getDhhtp_c4() { + public Dhhtp_c4 getDemCompHhC4() { if (getMale()!=null && getFemale()!=null) { if (getChildren().size()>0) return Dhhtp_c4.CoupleChildren; @@ -4376,14 +4301,10 @@ public boolean isDecreaseInYearlyEquivalisedDisposableIncome() { return (yDispEquivYear != null && yDispEquivYearL1 != null && yDispEquivYear < yDispEquivYearL1); } - public void clearStates() { - if (labStatesContObject !=null) labStatesContObject = null; - } - void setStates() { // reset states if necessary - if (labStatesContObject !=null) clearStates(); + if (labStatesContObject !=null) labStatesContObject = null; // populate states object if ( Parameters.grids == null) { @@ -4412,27 +4333,27 @@ public Person getRefPersonForDecisions() { throw new IllegalStateException("ERROR - benefit unit identified as couple, but missing male adult"); } else if (female==null) { throw new IllegalStateException("ERROR - benefit unit identified as couple, but missing female adult"); - } else if (male.getDlltsd() == Indicator.True) { + } else if (male.getHealthDsblLongtermFlag() == Indicator.True) { ref = male; - } else if (female.getDlltsd() == Indicator.True) { + } else if (female.getHealthDsblLongtermFlag() == Indicator.True) { ref = female; - } else if (Indicator.True.equals(male.getNeedSocialCare())) { + } else if (Indicator.True.equals(male.getCareNeedFlag())) { ref = male; - } else if (Indicator.True.equals(female.getNeedSocialCare())) { + } else if (Indicator.True.equals(female.getCareNeedFlag())) { ref = female; - } else if (male.getLes_c4()==Les_c4.Retired && female.getLes_c4()==Les_c4.Retired) { + } else if (male.getLabC4()==Les_c4.Retired && female.getLabC4()==Les_c4.Retired) { if (male.getDemAge() >= female.getDemAge()) { ref = male; } else { ref = female; } - } else if (male.getLes_c4()==Les_c4.Retired) { + } else if (male.getLabC4()==Les_c4.Retired) { ref = male; - } else if (female.getLes_c4()==Les_c4.Retired) { + } else if (female.getLabC4()==Les_c4.Retired) { ref = female; - } else if (male.getLes_c4()==Les_c4.Student && male.getDemAge()<=Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && female.getLes_c4()!=Les_c4.Student) { + } else if (male.getLabC4()==Les_c4.Student && male.getDemAge()<=Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && female.getLabC4()!=Les_c4.Student) { ref = male; - } else if (female.getLes_c4()==Les_c4.Student && female.getDemAge()<=Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && male.getLes_c4()!=Les_c4.Student) { + } else if (female.getLabC4()==Les_c4.Student && female.getDemAge()<=Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION && male.getLabC4()!=Les_c4.Student) { ref = female; } else { if (male.getLabWageFullTimeHrly() >= female.getLabWageFullTimeHrly()) { @@ -4462,13 +4383,13 @@ public double getHealthValForBehaviour() { Person male = getMale(); Person female = getFemale(); if (male != null) { - if (male.getDhe() != null) { - health = male.getDhe().getValue(); + if (male.getHealthSelfRated() != null) { + health = male.getHealthSelfRated().getValue(); } } if (female != null) { - if ( female.getDhe() != null ) { - if (female.getDhe().getValue() < health) health = female.getDhe().getValue(); + if ( female.getHealthSelfRated() != null ) { + if (female.getHealthSelfRated().getValue() < health) health = female.getHealthSelfRated().getValue(); } } return (double)health; @@ -4580,18 +4501,18 @@ public void setInvestmentIncomeAnnual() { male.setyCapitalPersMonth(val); female.setyCapitalPersMonth(val); val = asinh((yInvestYear + yPensYear)/12.0/2.0); - male.setYptciihs_dv(val); - female.setYptciihs_dv(val); + male.setYMiscPersGrossMonth(val); + female.setYMiscPersGrossMonth(val); } else if (Occupancy.Single_Male.equals(occupancy)) { val = asinh(yInvestYear /12.0); male.setyCapitalPersMonth(val); val = asinh((yInvestYear + yPensYear)/12.0); - male.setYptciihs_dv(val); + male.setYMiscPersGrossMonth(val); } else { val = asinh(yInvestYear /12.0); female.setyCapitalPersMonth(val); val = asinh((yInvestYear + yPensYear)/12.0); - female.setYptciihs_dv(val); + female.setYMiscPersGrossMonth(val); } } else { throw new RuntimeException("Unrecognised call to update investment income"); @@ -4633,10 +4554,10 @@ void updateDiscretionaryConsumption() { private double getNonDiscretionaryConsumptionPerYear() { double nonDiscretionaryConsumptionPerYear = 0.0; if (Parameters.flagFormalChildcare) { - nonDiscretionaryConsumptionPerYear += getChildcareCostPerWeek() * Parameters.WEEKS_PER_YEAR; + nonDiscretionaryConsumptionPerYear += getXChildCareWeek() * Parameters.WEEKS_PER_YEAR; } if (Parameters.flagSocialCare) { - nonDiscretionaryConsumptionPerYear += getSocialCareCostPerWeek() * Parameters.WEEKS_PER_YEAR; + nonDiscretionaryConsumptionPerYear += getXCareWeek() * Parameters.WEEKS_PER_YEAR; } return nonDiscretionaryConsumptionPerYear; } @@ -4690,11 +4611,9 @@ private void updateChildcareCostPerWeek(int year, int age) { if (statInnovations.getDoubleDraw(0) < prob) { double score = Parameters.getRegChildcareC1b().getScore(this, Regressors.class); - double rmse = Parameters.getRMSEForRegression("C1b"); - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(1)); - xChildCareWeek = Math.exp(score + rmse * gauss); + xChildCareWeek = Math.exp(score); double costCap = childCareCostCapWeekly(); - if (costCap > 0.0 && costCap < getChildcareCostPerWeek()) { + if (costCap > 0.0 && costCap < getXChildCareWeek()) { xChildCareWeek = costCap; } } @@ -4713,12 +4632,12 @@ private void updateSocialCareProvision() { careProvidedFlag = 0; for (Person person : getMembers()) { - if (!SocialCareProvision.None.equals(person.getSocialCareProvision())) + if (!Indicator.False.equals(person.getSocialCareProvision())) careProvidedFlag = 1; } } - public void setDeh_c4Local(Education edu) { + public void setI_eduHighestC4(Education edu) { i_eduHighestC4 = edu; } @@ -4736,11 +4655,11 @@ private Education getHighestDehC4() { Person female = getFemale(); if(male != null || female != null) { - if (male != null && male.getDeh_c4() != null) { - max = male.getDeh_c4(); + if (male != null && male.getEduHighestC4() != null) { + max = male.getEduHighestC4(); } - if (female != null && female.getDeh_c4() != null) { - Education femaleEdu = female.getDeh_c4(); + if (female != null && female.getEduHighestC4() != null) { + Education femaleEdu = female.getEduHighestC4(); if (max == null || femaleEdu.getRank() > max.getRank()) { max = femaleEdu; } @@ -4751,11 +4670,11 @@ private Education getHighestDehC4() { return max; } - public void setLabourHoursWeekly1Local(Integer hours) { + public void setI_labHrsWork1Week(Integer hours) { i_labHrsWork1Week = hours; } - public void setLabourHoursWeekly2Local(Integer hours) { + public void setI_labHrsWork2Week(Integer hours) { i_labHrsWork2Week = hours; } @@ -4854,7 +4773,7 @@ private double childCareCostCapWeekly() { return cap; } - public void setYearLocal(Integer year) { + public void setI_demYear(Integer year) { i_demYear = year; } @@ -4881,9 +4800,9 @@ public void setProcessedId(long id) { public long getSeed(){return (statSeed !=null) ? statSeed : 0L;} - public long getIdOriginalBU() {return idBuOriginal;} + public long getIdBuOriginal() {return idBuOriginal;} - public long getIdOriginalHH() {return idHhOriginal;} + public long getIdHhOriginal() {return idHhOriginal;} public Person getFemale() { for (Person member : members) { diff --git a/src/main/java/simpaths/model/FertilityAlignment.java b/src/main/java/simpaths/model/FertilityAlignment.java index 3362d835c..95afe3b6d 100644 --- a/src/main/java/simpaths/model/FertilityAlignment.java +++ b/src/main/java/simpaths/model/FertilityAlignment.java @@ -3,9 +3,7 @@ import microsim.engine.SimulationEngine; import simpaths.data.IEvaluation; import simpaths.data.Parameters; -import simpaths.data.filters.FertileFilter; -import simpaths.model.enums.Dcpst; -import simpaths.model.enums.TimeSeriesVariable; +import simpaths.data.filters.Filters; import java.util.Set; @@ -25,6 +23,7 @@ public class FertilityAlignment implements IEvaluation { private double targetFertilityRate; private Set persons; private SimPathsModel model; + private long numFertile; // CONSTRUCTOR @@ -32,49 +31,36 @@ public FertilityAlignment(Set persons) { this.model = (SimPathsModel) SimulationEngine.getInstance().getManager(SimPathsModel.class.getCanonicalName()); this.persons = persons; targetFertilityRate = Parameters.getFertilityRateByYear(model.getYear()); + // FIXME: should cache fertile persons to only filter once + numFertile = persons.stream() + .filter(Filters.fertile()) + .count(); } /** - * Evaluates the discrepancy between the simulated and target total fertility rates adjusts probabilities if necessary. - * - * This method focuses on the influence of the adjustment parameter 'args[0]' on the difference between the target and - * simulated fertility rates (error). + * Evaluates the discrepancy between the expected (smooth) fertility rate at a candidate adjustment + * and the target rate. Uses sum of probit probabilities rather than stochastic realisations, + * yielding a smooth, deterministic objective for the root search. * - * The error value is returned and serves as the stopping condition in root search routines. - * - * @param args An array of parameters, where args[0] represents the adjustment parameter. - * @return The error in the target aggregate share of partnered persons after potential adjustments. + * @param args An array of parameters, where args[0] represents the probit intercept adjustment. + * @return target fertility rate minus expected fertility rate at the given adjustment. */ @Override public double evaluate(double[] args) { - persons.parallelStream() - .forEach(person -> person.fertility(args[0])); - - return targetFertilityRate - evalFertilityRate(); - } - - - /** - * Evaluates the aggregate share of persons with partners assigned in a test run of union matching among those eligible for partnership. - * - * This method uses Java streams to count the number of persons who meet the age criteria for cohabitation - * and the number of persons who currently have a test partner. The aggregate share is calculated as the - * ratio of successfully partnered persons to those eligible for partnership, with consideration for potential division by zero. - * - * @return The aggregate share of partnered persons among those eligible, or 0.0 if no eligible persons are found. - */ - private double evalFertilityRate() { - - FertileFilter filter = new FertileFilter(); - long numFertilePersons = model.getPersons().stream() - .filter(person -> filter.evaluate(person)) - .count(); - long numBirths = model.getPersons().stream() - .filter(person -> (person.isToGiveBirth())) - .count(); + if (numFertile == 0) return targetFertilityRate; - return (numFertilePersons > 0) ? (double) numBirths / numFertilePersons : 0.0; + double expectedBirths = persons.parallelStream() + .filter(Filters.fertile()) + .mapToDouble(person -> { + double score = Parameters.getRegFertilityF1() + .getScore(person, Person.DoublesVariables.class); + return Parameters.getRegFertilityF1() + .getProbability(score + args[0]); + }) + .sum(); + double expectedRate = expectedBirths / numFertile; + return targetFertilityRate - expectedRate; } } diff --git a/src/main/java/simpaths/model/HibernateUtil.java b/src/main/java/simpaths/model/HibernateUtil.java index 6ba0a6a53..d421b4838 100644 --- a/src/main/java/simpaths/model/HibernateUtil.java +++ b/src/main/java/simpaths/model/HibernateUtil.java @@ -71,4 +71,4 @@ public void shutdown() { entityManagerFactory.close(); } } -} \ No newline at end of file +} diff --git a/src/main/java/simpaths/model/Household.java b/src/main/java/simpaths/model/Household.java index 6fd8aa8e6..805ea65b4 100644 --- a/src/main/java/simpaths/model/Household.java +++ b/src/main/java/simpaths/model/Household.java @@ -2,6 +2,9 @@ import jakarta.persistence.*; import microsim.data.db.PanelEntityKey; + +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; import org.hibernate.annotations.Fetch; import org.hibernate.annotations.FetchMode; import simpaths.data.startingpop.Processed; @@ -9,7 +12,6 @@ import microsim.engine.SimulationEngine; import microsim.event.EventListener; import microsim.statistics.IDoubleSource; -import org.apache.log4j.Logger; import simpaths.model.enums.SampleEntry; import java.util.LinkedHashSet; @@ -27,7 +29,7 @@ @Entity public class Household implements EventListener, IDoubleSource { - @Transient private static Logger log = Logger.getLogger(Household.class); + @Transient private static Logger log = LogManager.getLogger(Household.class); @Transient private final SimPathsModel model; @Transient private final SimPathsCollector collector; @Transient public static long householdIdCounter = 1; //Because this is static all instances of a household access and increment the same counter @@ -63,7 +65,7 @@ public Household(Household originalHousehold, SampleEntry sampleEntry) { model = (SimPathsModel) SimulationEngine.getInstance().getManager(SimPathsModel.class.getCanonicalName()); collector = (SimPathsCollector) SimulationEngine.getInstance().getManager(SimPathsCollector.class.getCanonicalName()); key = new PanelEntityKey(originalHousehold.getId()); - this.idHhOriginal = originalHousehold.getIdOriginalHH(); + this.idHhOriginal = originalHousehold.getIdHhOriginal(); } default -> { model = (SimPathsModel) SimulationEngine.getInstance().getManager(SimPathsModel.class.getCanonicalName()); @@ -83,7 +85,7 @@ public Household(long householdId) { /* METHODS */ - public Long getIdOriginalHH() {return idHhOriginal;} + public Long getIdHhOriginal() {return idHhOriginal;} public void resetWeights(double newWeight) { diff --git a/src/main/java/simpaths/model/InSchoolAlignment.java b/src/main/java/simpaths/model/InSchoolAlignment.java index ae3733f49..88c18a84e 100644 --- a/src/main/java/simpaths/model/InSchoolAlignment.java +++ b/src/main/java/simpaths/model/InSchoolAlignment.java @@ -21,9 +21,15 @@ */ public class InSchoolAlignment implements IEvaluation { - private final double targetStudentShare; - private final Set persons; - private final SimPathsModel model; + private static final int MIN_STUDENT_AGE = Parameters.MIN_AGE_TO_LEAVE_EDUCATION; + private static final int MAX_STUDENT_AGE = Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION; + + private double targetStudentShare; + private Set persons; + private SimPathsModel model; + private long numEligible; + private long numDeterministicStudents; + private double baseReEntryExpected; // CONSTRUCTOR @@ -31,61 +37,74 @@ public InSchoolAlignment(Set persons) { this.model = (SimPathsModel) SimulationEngine.getInstance().getManager(SimPathsModel.class.getCanonicalName()); this.persons = persons; targetStudentShare = Parameters.getTargetShare(model.getYear(), TargetShares.Students); + + numEligible = persons.stream() + .filter(person -> person.getLabC4() != null + && person.getDemAge() >= MIN_STUDENT_AGE + && person.getDemAge() <= MAX_STUDENT_AGE) + .count(); + + // Lagged students below minimum quitting age: deterministically remain students + numDeterministicStudents = persons.stream() + .filter(person -> person.getLabC4() != null + && person.getDemAge() >= MIN_STUDENT_AGE + && person.getDemAge() <= MAX_STUDENT_AGE + && Les_c4.Student.equals(person.getLabC4L1()) + && person.getDemAge() < Parameters.MIN_AGE_TO_LEAVE_EDUCATION) + .count(); + + // Non-students who are not retired: E1b probability of re-entering (no adjustment applied) + baseReEntryExpected = persons.parallelStream() + .filter(person -> person.getLabC4() != null + && person.getDemAge() >= MIN_STUDENT_AGE + && person.getDemAge() <= MAX_STUDENT_AGE + && !Les_c4.Student.equals(person.getLabC4L1()) + && !Les_c4.Retired.equals(person.getLabC4L1())) + .mapToDouble(person -> { + double score = Parameters.getRegEducationE1b().getScore(person, Person.DoublesVariables.class); + return Parameters.getRegEducationE1b().getProbability(score); + }) + .sum(); } /** - * Evaluates the discrepancy between the simulated and target total student share and adjusts probabilities if necessary. - * - * This method focuses on the influence of the adjustment parameter 'args[0]' on the difference between the target and - * simulated student share (error). + * Evaluates the discrepancy between the expected (smooth) student share at a candidate adjustment + * and the target share. Uses sum of probit probabilities rather than stochastic realisations, + * yielding a smooth, deterministic objective for the root search. * - * The error value is returned and serves as the stopping condition in root search routines. + * The adjustment only affects the E1a model (continuing students deciding whether to stay). + * The E1b model (re-entry) does not use the adjustment. * - * @param args An array of parameters, where args[0] represents the adjustment parameter. - * @return The error in the target aggregate share of students after potential adjustments. + * @param args An array of parameters, where args[0] represents the probit intercept adjustment. + * @return target student share minus expected student share at the given adjustment. */ @Override public double evaluate(double[] args) { - // Ensure each trial point is evaluated from lagged status (pure function for root search). - persons.parallelStream().forEach(person -> { - if (person.getLes_c4_lag1() != null) { - person.setLes_c4(person.getLes_c4_lag1()); - } - person.inSchool(args[0]); - }); + if (numEligible == 0) return targetStudentShare; - return targetStudentShare - evalStudentShare(); + // Lagged students within quitting age range: E1a probability of remaining (adjustment applies) + // Students above MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION deterministically leave → contribute 0 + double expectedContinuing = persons.parallelStream() + .filter(person -> person.getLabC4() != null + && person.getDemAge() >= MIN_STUDENT_AGE + && person.getDemAge() <= MAX_STUDENT_AGE + && Les_c4.Student.equals(person.getLabC4L1()) + && person.getDemAge() >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION + && person.getDemAge() <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) + .mapToDouble(person -> { + double score = Parameters.getRegEducationE1a().getScore(person, Person.DoublesVariables.class); + return Parameters.getRegEducationE1a().getProbability(score + args[0]); + }) + .sum(); + + double expectedStudents = numDeterministicStudents + expectedContinuing + baseReEntryExpected; + double expectedStudentShare = expectedStudents / numEligible; + return targetStudentShare - expectedStudentShare; } public double getTargetStudentShare() { return targetStudentShare; } - - /** - * Evaluates the aggregate share of students. - * - * This method uses Java streams to count the number of students over the total number of individuals. - * - * @return The aggregate share of partnered persons among those eligible, or 0.0 if no eligible persons are found. - */ - private double evalStudentShare() { - - // Counts aligned students within education age range: 16-29 (range is defined in Model) - long numStudents = model.getPersons().stream() - .filter(person -> person.getDemAge() >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION - && person.getDemAge() <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION - && !person.isToLeaveSchool() - && Les_c4.Student.equals(person.getLes_c4())) // count aligned student group only - .count(); - // Counts individuals within education age range: 16-29 (range is defined in Model) - long numPeople = model.getPersons().stream() - .filter(person -> person.getDemAge() >= Parameters.MIN_AGE_TO_LEAVE_EDUCATION - && person.getDemAge() <= Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION - && person.getLes_c4() != null) - .count(); - - return (numStudents > 0) ? (double) numStudents / numPeople : 0.0; - } } diff --git a/src/main/java/simpaths/model/InitialPopulationFilter.java b/src/main/java/simpaths/model/InitialPopulationFilter.java index a6688acdd..d4b03e64f 100644 --- a/src/main/java/simpaths/model/InitialPopulationFilter.java +++ b/src/main/java/simpaths/model/InitialPopulationFilter.java @@ -123,9 +123,9 @@ public boolean evaluate(Household household, Region region) { for (Person person : benefitUnit.getMembers()) { - if (person.getDemAge() < Parameters.MIN_AGE_COHABITATION && Dcpst.Partnered.equals(person.getDcpst())) + if (person.getDemAge() < Parameters.MIN_AGE_COHABITATION && Dcpst.Partnered.equals(person.getDemPartnerStatus())) return false; - else if (Dcpst.Partnered.equals(person.getDcpst()) && cohabiting <= 0) + else if (Dcpst.Partnered.equals(person.getDemPartnerStatus()) && cohabiting <= 0) return false; else { if (IGNORE_REGION) { @@ -146,7 +146,7 @@ else if (Dcpst.Partnered.equals(person.getDcpst()) && cohabiting <= 0) benefitUnit.setRegion(region); for (Person person : benefitUnit.getMembers()) { - if (Dcpst.Partnered.equals(person.getDcpst())) + if (Dcpst.Partnered.equals(person.getDemPartnerStatus())) cohabiting -= 1; int age = Math.min(censorAge, person.getDemAge()); diff --git a/src/main/java/simpaths/model/LabourMarket.java b/src/main/java/simpaths/model/LabourMarket.java index 490430ec6..817c58312 100644 --- a/src/main/java/simpaths/model/LabourMarket.java +++ b/src/main/java/simpaths/model/LabourMarket.java @@ -3,7 +3,7 @@ import java.util.*; import java.util.random.RandomGenerator; -import simpaths.data.statistics.Statistics; +import simpaths.data.statistics.WealthIncomeStatistics; import simpaths.experiment.SimPathsCollector; import simpaths.model.enums.*; @@ -120,27 +120,27 @@ Need to model wages and hours of work (as the other labour supply module would d boolean setMaleSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(male, Person.DoublesVariables.class)); boolean setFemaleSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(female, Person.DoublesVariables.class)); - if (setMaleSelfEmployed && male.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - male.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setMaleSelfEmployed && male.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + male.setLabC7Covid(Les_c7_covid.SelfEmployed); } - if (setFemaleSelfEmployed && female.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - female.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setFemaleSelfEmployed && female.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + female.setLabC7Covid(Les_c7_covid.SelfEmployed); } } else if (occupancy.equals(Occupancy.Single_Male)) { Person male = benefitUnit.getMale(); male.initialise_les_c6_from_c4(); personsInBenefitUnit.add(male); boolean setSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(male, Person.DoublesVariables.class)); - if (setSelfEmployed && male.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - male.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setSelfEmployed && male.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + male.setLabC7Covid(Les_c7_covid.SelfEmployed); } } else if (occupancy.equals(Occupancy.Single_Female)) { Person female = benefitUnit.getFemale(); female.initialise_les_c6_from_c4(); personsInBenefitUnit.add(female); boolean setSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(female, Person.DoublesVariables.class)); - if (setSelfEmployed && female.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - female.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setSelfEmployed && female.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + female.setLabC7Covid(Les_c7_covid.SelfEmployed); } } else { throw new RuntimeException("Warning: Occupancy unknown in benefit unit " + benefitUnit.getKey().getId()); @@ -156,38 +156,38 @@ Need to model wages and hours of work (as the other labour supply module would d Person female = benefitUnit.getFemale(); personsInBenefitUnit.add(male); personsInBenefitUnit.add(female); - if (male != null && male.getLes_c7_covid() == null) { + if (male != null && male.getLabC7Covid() == null) { male.initialise_les_c6_from_c4(); boolean setMaleSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(male, Person.DoublesVariables.class)); - if (setMaleSelfEmployed && male.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - male.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setMaleSelfEmployed && male.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + male.setLabC7Covid(Les_c7_covid.SelfEmployed); } } - if (female != null && female.getLes_c7_covid() == null) { + if (female != null && female.getLabC7Covid() == null) { female.initialise_les_c6_from_c4(); boolean setFemaleSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(female, Person.DoublesVariables.class)); - if (setFemaleSelfEmployed && female.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - female.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setFemaleSelfEmployed && female.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + female.setLabC7Covid(Les_c7_covid.SelfEmployed); } } } else if (occupancy.equals(Occupancy.Single_Male)) { Person male = benefitUnit.getMale(); personsInBenefitUnit.add(male); - if (male != null && male.getLes_c7_covid() == null) { + if (male != null && male.getLabC7Covid() == null) { male.initialise_les_c6_from_c4(); boolean setSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(male, Person.DoublesVariables.class)); - if (setSelfEmployed && male.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - male.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setSelfEmployed && male.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + male.setLabC7Covid(Les_c7_covid.SelfEmployed); } } } else if (occupancy.equals(Occupancy.Single_Female)) { Person female = benefitUnit.getFemale(); personsInBenefitUnit.add(female); - if (female != null && female.getLes_c7_covid() == null) { + if (female != null && female.getLabC7Covid() == null) { female.initialise_les_c6_from_c4(); boolean setSelfEmployed = (labourInnov.nextDouble() < Parameters.getRegC19LS_SE().getProbability(female, Person.DoublesVariables.class)); - if (setSelfEmployed && female.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed)) { - female.setLes_c7_covid(Les_c7_covid.SelfEmployed); + if (setSelfEmployed && female.getLabC4().equals(Les_c4.EmployedOrSelfEmployed)) { + female.setLabC7Covid(Les_c7_covid.SelfEmployed); } } } @@ -280,7 +280,7 @@ Need to model wages and hours of work (as the other labour supply module would d Person person = benefitUnit.getMale(); if (person.atRiskOfWork()) { - Education ed = person.getDeh_c4(); + Education ed = person.getEduHighestC4(); double newVal = person.getLabWageFullTimeHrly(); potentialHourlyEarningsByEdu.put(ed, potentialHourlyEarningsByEdu.get(ed) + newVal); int oldCount = countByEdu.get(ed); @@ -292,7 +292,7 @@ Need to model wages and hours of work (as the other labour supply module would d Person person = benefitUnit.getFemale(); if (person.atRiskOfWork()) { - Education ed = person.getDeh_c4(); + Education ed = person.getEduHighestC4(); double newVal = person.getLabWageFullTimeHrly(); potentialHourlyEarningsByEdu.put(ed, potentialHourlyEarningsByEdu.get(ed) + newVal); int oldCount = countByEdu.get(ed); @@ -307,25 +307,18 @@ Need to model wages and hours of work (as the other labour supply module would d } } - - /////////////////////////////////////////////////////////////////////////////////////// - // - // Other Methods - // - /////////////////////////////////////////////////////////////////////////////////////// - public void updateGrossLabourIncomeBaseline_Xt5(LinkedHashSet personsInBenefitUnit) { for (Person person : personsInBenefitUnit) { if (person != null && person.getCovidYLabGrossXt5() == null) { - double covidModuleGrossLabourIncomeBaseline = person.getCovidModuleGrossLabourIncome_Baseline(); - Statistics stats = ((SimPathsCollector) SimulationEngine.getInstance().getManager(SimPathsCollector.class.getCanonicalName())).getStats(); - if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p20()) { + double covidModuleGrossLabourIncomeBaseline = person.getCovidYLabGross(); + WealthIncomeStatistics wealthIncomeStats = ((SimPathsCollector) SimulationEngine.getInstance().getManager(SimPathsCollector.class.getCanonicalName())).getWealthIncomeStats(); + if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP20()) { person.setCovidYLabGrossXt5(Quintiles.Q1); - } else if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p40()) { + } else if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP40()) { person.setCovidYLabGrossXt5(Quintiles.Q2); - } else if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p60()) { + } else if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP60()) { person.setCovidYLabGrossXt5(Quintiles.Q3); - } else if (covidModuleGrossLabourIncomeBaseline <= stats.getGrossLabourIncome_p80()) { + } else if (covidModuleGrossLabourIncomeBaseline <= wealthIncomeStats.getYLabP80()) { person.setCovidYLabGrossXt5(Quintiles.Q4); } else { person.setCovidYLabGrossXt5(Quintiles.Q5); @@ -388,4 +381,4 @@ public void setCovid19TransitionsMonth(int covid19TransitionsMonth) { public void incrementCovid19TransitionsMonth(int increment) { covid19TransitionsMonth = covid19TransitionsMonth+increment; } -} \ No newline at end of file +} diff --git a/src/main/java/simpaths/model/Person.java b/src/main/java/simpaths/model/Person.java index 507c3bc51..d37260fec 100644 --- a/src/main/java/simpaths/model/Person.java +++ b/src/main/java/simpaths/model/Person.java @@ -7,15 +7,19 @@ import microsim.event.EventListener; import microsim.statistics.IDoubleSource; import microsim.statistics.IIntSource; -import microsim.statistics.Series; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; -import org.apache.log4j.Logger; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + import simpaths.data.ManagerRegressions; import simpaths.data.MultiValEvent; import simpaths.data.Parameters; import simpaths.data.RegressionName; -import simpaths.data.filters.FertileFilter; +import simpaths.data.filters.Filters; +import simpaths.model.annotations.Lag; +import simpaths.model.annotations.NullInitialised; +import simpaths.model.annotations.UpdateManager; import simpaths.model.decisions.Axis; import simpaths.model.decisions.DecisionParams; import simpaths.model.enums.*; @@ -31,7 +35,7 @@ @Entity public class Person implements EventListener, IDoubleSource, IIntSource, Weight, Comparable { - @Transient private static Logger log = Logger.getLogger(Person.class); + @Transient private static Logger log = LogManager.getLogger(Person.class); @Transient private final SimPathsModel model; @Transient public static long personIdCounter = 1L; //Could perhaps initialise this to one above the max key number in initial population, in the same way that we pull the max Age information from the input files. @@ -64,89 +68,89 @@ public class Person implements EventListener, IDoubleSource, IIntSource, Weight, @Enumerated(EnumType.STRING) private SampleExit demExitSample = SampleExit.NotYet; //entry to sample via international immigration // person level variables - private int demAge; //Age + private Integer demAge; //Age @Column(name = "demAgeSq") private Integer demAgeSq; //Age squared private Dcpst demPartnerStatus; @Enumerated(EnumType.STRING) private Indicator demAdultChildFlag; - @Transient private boolean demIoFlag; // true if a dummy person instantiated for IO decision solution - @Enumerated(EnumType.STRING) private Gender demMaleFlag; // gender - @Enumerated(EnumType.STRING) private Education eduHighestC4; //Education level (4 categories incl. in education) - @Transient private Education eduHighestC4L1; //Lag(1) of education level + @Transient private Boolean demIoFlag = false; // true if a dummy person instantiated for IO decision solution + @Enumerated(EnumType.STRING) private Gender demMaleFlag; // gender + @Enumerated(EnumType.STRING) private Education eduHighestC4; //Education level (4 categories incl. in education) + @Lag(field="eduHighestC4") @Transient private Education eduHighestC4L1; //Lag(1) of education level @Enumerated(EnumType.STRING) private Education eduHighestMotherC4; //Mother's education level @Enumerated(EnumType.STRING) private Education eduHighestFatherC4; //Father's education level @Enumerated(EnumType.STRING) private Ethnicity demEthnC6; //Ethnicity @Enumerated(EnumType.STRING) private Indicator eduSpellFlag; // in continuous education - @Enumerated(EnumType.STRING) private Indicator eduSpellFlagL1; // in continuous education + @Lag(field="eduSpellFlag") @Enumerated(EnumType.STRING) private Indicator eduSpellFlagL1; // in continuous education @Enumerated(EnumType.STRING) private Indicator eduReturnFlag; // return to education @Enumerated(EnumType.STRING) private Les_c4 labC4; //Activity (employment) status @Enumerated(EnumType.STRING) private Les_c7_covid labC7Covid; //Activity (employment) status used in the Covid-19 models - @Transient private Les_c4 labC4L1; //Lag(1) of activity_status - @Transient private Les_c7_covid labC7CovidL1; //Lag(1) of 7-category activity status + @Lag(field="labC4") @Transient private Les_c4 labC4L1; //Lag(1) of activity_status + @Lag(field="labC7Covid") @Transient private Les_c7_covid labC7CovidL1; //Lag(1) of 7-category activity status @Column(name="labWorkHist") private Integer labEmpNyear; //Work history in months (number of months in employment) (Note: this is monthly in EM, but simulation updates annually so increment by 12 months). @Enumerated(EnumType.STRING) private Indicator healthDsblLongtermFlag; //Long-term sick or disabled if = 1 - @Transient private Indicator healthDsblLongtermFlagL1; //Lag(1) of long-term sick or disabled + @Lag(field="healthDsblLongtermFlag") @Transient private Indicator healthDsblLongtermFlagL1; //Lag(1) of long-term sick or disabled @Enumerated(EnumType.STRING) @Column(name="careNeedFlag") private Indicator careNeedFlag; @Column(name="careHrsFormal") private Double careHrsFormalWeek; @Column(name="careFormalX") private Double careFormalX; @Column(name="careHrsInformal") private Double careHrsInformalWeek; private Boolean labWageOfferLowFlag; - @Transient private Boolean labWageOfferLowFlagL1; - @Transient private SocialCareReceipt careReceivedFlag; - @Transient private Boolean careFormalFlag; - @Transient private Boolean careFromInformalFlag; + @Lag(getter="getLowWageOffer") @Transient private Boolean labWageOfferLowFlagL1; + @NullInitialised @Transient private SocialCareReceipt careReceivedFlag; + @NullInitialised @Transient private Boolean careFormalFlag; + @NullInitialised @Transient private Boolean careFromInformalFlag; @Column(name="careHrsProvidedWeek") private Double careHrsProvidedWeek; - @Enumerated(EnumType.STRING) @Column(name="careProvidedFlag") private SocialCareProvision careProvidedFlag; - @Transient private SocialCareProvision careProvidedFlagL1; - @Transient private Indicator careNeedFlagL1; - @Transient private Double careHrsFormalWeekL1; - @Transient private Double careHrsInformalWeekL1; - @Transient private Double careHrsProvidedWeekL1; - @Transient private Boolean demPrptyFlagL1; + @Transient private Indicator careProvidedFlag; + @Lag(field="careProvidedFlag") @Transient private Indicator careProvidedFlagL1; + @Lag(field="careNeedFlag") @Transient private Indicator careNeedFlagL1; + @Lag(field="careHrsFormalWeek") @Transient private Double careHrsFormalWeekL1; + @Lag(field="careHrsProvidedWeek") @Transient private Double careHrsProvidedWeekL1; + @Lag(field="careHrsInformalWeek") @Transient private Double careHrsInformalWeekL1; + @Lag(getter="isHousingOwned") @Transient private Boolean demPrptyFlagL1; // partner lags - @Transient private Dcpst demPartnerStatusL1; // lag partnership status - @Transient private Dcpst demPartnerStatusL2; // lag (2) partnership status - @Transient private Education eduHighestPartnerC4L1; //Lag(1) of partner's education - @Transient private Dhe healthPartnerSelfRatedL1; - @Transient private Lesdf_c4 labStatusPartnerAndOwnC4L1; //Lag(1) of own and partner's activity status - @Transient private Long idPartnerL1; - @Transient private HouseholdStatus demStatusHhL1; //Lag(1) of household_status - @Transient private Integer demAgePartnerDiffL1; //Lag(1) of difference between ages of partners in union - @Transient private Double yPersAndPartnerGrossDiffMonthL1; //Lag(1) of difference between own and partner's gross personal non-benefit income + @Lag(field="demPartnerStatusL1") @Transient private Dcpst demPartnerStatusL2; // lag (2) partnership status + @Lag(getter="getDemPartnerStatus") @Transient private Dcpst demPartnerStatusL1; // lag partnership status + @Lag(getter="getEduHighestPartner") @Transient private Education eduHighestPartnerC4L1; //Lag(1) of partner's education + @Lag(getter="getHealthPartner") @Transient private Dhe healthPartnerSelfRatedL1; + @Lag(getter="getLabStatusPartnerAndOwnC4") @Transient private Lesdf_c4 labStatusPartnerAndOwnC4L1; //Lag(1) of own and partner's activity status + @Lag(getter="getIdPartner") @Transient private Long idPartnerL1; + @Lag(getter="getHouseholdStatus") @Transient private HouseholdStatus demStatusHhL1; //Lag(1) of household_status + @Lag(getter="getAgeDifferencePartner") @Transient private Integer demAgePartnerDiffL1; //Lag(1) of difference between ages of partners in union + @Lag(getter="getYPersAndPartnerGrossDiffMonth") @Transient private Double yPersAndPartnerGrossDiffMonthL1; //Lag(1) of difference between own and partner's gross personal non-benefit income @Enumerated(EnumType.STRING) private Indicator eduExitSampleFlag; // year left education - @Transient private Boolean demGiveBirthFlag; - @Transient private Boolean eduLeaveSchoolFlag; - @Transient private Boolean demBePartnerFlag; - @Transient private Boolean demAlignPartnerProcess; - @Transient private Boolean demLeavePartnerFlag; // Used in partnership alignment process. Indicates that this person has found partner in a test run of union matching. + @NullInitialised @Transient private Boolean demGiveBirthFlag; + @NullInitialised @Transient private Boolean eduLeaveSchoolFlag; + @NullInitialised @Transient private Boolean demBePartnerFlag; + @NullInitialised @Transient private Boolean demAlignPartnerProcess; + @NullInitialised @Transient private Boolean demLeavePartnerFlag; // Used in partnership alignment process. Indicates that this person has found partner in a test run of union matching. @Column(name="wgt") private Double wgt; @Column(name="healthPsyDstrss0to12") private Double healthPsyDstrss0to12; //Psychological distress GHQ-12 0-12 caseness score - @Transient private Double healthPsyDstrss0to12L1; - @Transient private Dhe healthSelfRatedL1; + @Lag(field="healthPsyDstrss0to12") @Transient private Double healthPsyDstrss0to12L1; + @Lag(field="healthSelfRated") @Transient private Dhe healthSelfRatedL1; @Enumerated(EnumType.STRING) private Dhe healthSelfRated; private Double healthWbScore0to36; //Psychological distress GHQ-12 Likert scale - @Transient private Double healthWbScore0to36L1; //Lag(1) of dhm + @Lag(field="healthWbScore0to36") @Transient private Double healthWbScore0to36L1; //Lag(1) of dhm private Double healthMentalMcs; //mental well-being: SF12 mental component summary score - @Transient private Double healthMentalMcsL1; //mental well-being: SF12 mental component summary score lag 1 + @Lag(field="healthMentalMcs") @Transient private Double healthMentalMcsL1; //mental well-being: SF12 mental component summary score lag 1 private Double healthPhysicalPcs; //physical well-being: SF12 physical component summary score - @Transient private Double healthPhysicalPcsL1; //physical well-being: SF12 physical component summary score lag 1 + @Lag(field="healthPhysicalPcs") @Transient private Double healthPhysicalPcsL1; //physical well-being: SF12 physical component summary score lag 1 private Double healthMentalPartnerMcs; //mental well-being: SF12 mental component summary score (partner) private Double healthPhysicalPartnerPcs; //physical well-being: SF12 physical component summary score (partner) private Double demLifeSatScore0to10; //life satisfaction - score 0-10 - @Transient private Double demLifeSatScore0to10L1; //life satisfaction - score 0-10 lag 1 + @Lag(field="demLifeSatScore0to10") @Transient private Double demLifeSatScore0to10L1; //life satisfaction - score 0-10 lag 1 @Column(name="demLifeSatEQ5D") private Double demLifeSatEQ5D; @Column(name="yFinDstrssFlag") private Boolean yFinDstrssFlag; - @Transient private Boolean yBenReceivedFlagL1; // Lag(1) of whether person receives benefits - @Transient private Boolean yBenReceivedFlag; // Does person receive benefits + @Lag(field="yBenReceivedFlag") @Transient private Boolean yBenReceivedFlagL1; // Lag(1) of whether person receives benefits + @NullInitialised @Transient private Boolean yBenReceivedFlag; // Does person receive benefits @Column(name="yBenUCReceivedFlag") private Boolean yBenUCReceivedFlag; // Person receives UC - @Transient private Boolean yBenUCReceivedFlagL1; + @Lag(field="yBenUCReceivedFlag") @Transient private Boolean yBenUCReceivedFlagL1; @Column(name="yBenNonUCReceivedFlag") private Boolean yBenNonUCReceivedFlag; // Person receives a benefit which is not UC - @Transient private Boolean yBenNonUCReceivedFlagL1; - @Column(name="yLifeTime") private Double yLifeTime; // mean annual equivalised household disposable income by age + @Lag(field="yBenNonUCReceivedFlag") @Transient private Boolean yBenNonUCReceivedFlagL1; + @NullInitialised @Column(name="yLifeTime") private Double yLifeTime; // mean annual equivalised household disposable income by age @Enumerated(EnumType.STRING) private Labour labHrsWorkEnumWeek; //Number of hours of labour supplied each week - @Transient private Labour labHrsWorkEnumWeekL1; // Lag(1) (previous year's value) of weekly labour supply + @Lag(getter="getLabourSupplyWeekly") @Transient private Labour labHrsWorkEnumWeekL1; // Lag(1) (previous year's value) of weekly labour supply @Column(name = "HOURS_WORKED_WEEKLY") private Integer labHrsWorkWeek; private Integer labHrsWorkWeekL1; // Lag(1) of hours worked weekly - use to initialise labour supply weekly_L1 (TODO) @@ -156,68 +160,66 @@ public class Person implements EventListener, IDoubleSource, IIntSource, Weight, // is a separate process in the simulation, and it is computed for every adult // individual in the simulated population, in each simulated period. @Column(name="labWageHrly") private Double labWageFullTimeHrly; //Is hourly rate. Initialised with value: ils_earns / (4.34 * lhw), where lhw is the weekly hours a person worked in EUROMOD input data - @Column(name="labWageFullTimeHrlyL1") private Double labWageFullTimeHrlyL1; // Lag(1) of potentialHourlyEarnings - @Transient private Series.Double yDispEquivYear; - private Double xEquivYear; - @Transient private Series.Double xEquivYearL1; + @Lag(field="labWageFullTimeHrly") @Column(name="labWageFullTimeHrlyL1") private Double labWageFullTimeHrlyL1; // Lag(1) of potentialHourlyEarnings + @NullInitialised private Double xEquivYear; private Integer demPartnerNYear; //Number of years in partnership @Transient private Integer demPartnerNYearL1; //Lag(1) of number of years in partnership private Double yNonBenPersGrossMonth; // asinh of personal non-benefit income per month - @Transient private Double yNonBenPersGrossMonthL1; //Lag(1) of gross personal non-benefit income + @Lag(getter="getYNonBenPersGrossMonth") @Transient private Double yNonBenPersGrossMonthL1; //Lag(1) of gross personal non-benefit income private Double yMiscPersGrossMonth; // asinh of non-employment non-benefit income per month (capital and pension) private Double yCapitalPersMonth; // asinh of capital income per month private Double yPensPersGrossMonth; // asinh of pension income per month - @Transient private Double yCapitalPersMonthL1; //Lag(1) of ypncp - @Transient private Double yCapitalPersMonthL2; //Lag(2) of capital income - @Transient private Double yPensPersGrossMonthL1; //Lag(1) of pension income - @Transient private Double yPensPersGrossMonthL2; //Lag(2) of pension income - @Transient private Double yMiscPersGrossMonthL1; //Lag(1) of gross personal non-benefit non-employment income - @Transient private Double yMiscPersGrossMonthL2; //Lag(2) of gross personal non-benefit non-employment income - @Transient private Double yMiscPersGrossMonthL3; //Lag(3) of gross personal non-benefit non-employment income + @Lag(field="yCapitalPersMonthL1") @Transient private Double yCapitalPersMonthL2; //Lag(2) of capital income + @Lag(getter="getYCapitalPersMonth") @Transient private Double yCapitalPersMonthL1; //Lag(1) of ypncp + @Lag(field="yPensPersGrossMonthL1") @Transient private Double yPensPersGrossMonthL2; //Lag(2) of pension income + @Lag(getter="getYPensPersGrossMonth") @Transient private Double yPensPersGrossMonthL1; //Lag(1) of pension income + @Lag(field="yMiscPersGrossMonthL2") @Transient private Double yMiscPersGrossMonthL3; //Lag(3) of gross personal non-benefit non-employment income + @Lag(field="yMiscPersGrossMonthL1") @Transient private Double yMiscPersGrossMonthL2; //Lag(2) of gross personal non-benefit non-employment income + @Lag(getter="getYMiscPersGrossMonth") @Transient private Double yMiscPersGrossMonthL1; //Lag(1) of gross personal non-benefit non-employment income private Double yEmpPersGrossMonth; // asinh transform of personal labour income per month - @Transient private Double yEmpPersGrossMonthL1; //Lag(1) of gross personal employment income - @Transient private Double yEmpPersGrossMonthL2; //Lag(2) of gross personal employment income - @Transient private Double yEmpPersGrossMonthL3; //Lag(3) of gross personal employment income + @Lag(field="yEmpPersGrossMonthL2") @Transient private Double yEmpPersGrossMonthL3; //Lag(3) of gross personal employment income + @Lag(field="yEmpPersGrossMonthL1") @Transient private Double yEmpPersGrossMonthL2; //Lag(2) of gross personal employment income + @Lag(getter="getYEmpPersGrossMonth") @Transient private Double yEmpPersGrossMonthL1; //Lag(1) of gross personal employment income //For matching process @Transient private Double demAgeDiffDesired; @Transient private Double yWageDesired; - @Transient private Integer demAgeGroup; + @NullInitialised @Transient private Integer demAgeGroup; //This is set to true at the point when individual leaves education and never reset. So if true, individual has not always been in continuous education. @Transient private Boolean eduLeftEduFlag; //This is set to true at the point when individual leaves partnership and never reset. So if true, individual has been / is in a partnership - @Transient private Boolean demLeftPartnerFlag; - @Transient private Integer labHrsWorkNewL1; // Define a variable to keep previous month's value of work hours to be used in the Covid-19 module - @Transient private Double covidYLabGrossL1; + @NullInitialised @Transient private Boolean demLeftPartnerFlag; + @NullInitialised @Transient private Integer labHrsWorkNewL1; // Define a variable to keep previous month's value of work hours to be used in the Covid-19 module + @NullInitialised @Transient private Double covidYLabGrossL1; @Transient private Indicator covidSEISSReceivedFlag = Indicator.False; - @Transient private Double covidYLabGross; - private Quintiles covidYLabGrossXt5; - @Transient private Double labWageRegressRandomCompoponentEmp; - @Transient private Double labWageRegressRandomCompoponentNotEmp; + @NullInitialised @Transient private Double covidYLabGross; + @NullInitialised private Quintiles covidYLabGrossXt5; + @NullInitialised @Transient private Double labWageRegressRandomCompoponentEmp; + @NullInitialised @Transient private Double labWageRegressRandomCompoponentNotEmp; @Transient private Map personContinuousHoursLabourSupplyMap = new EnumMap<>(Labour.class); // local variables interact with regression models - @Transient private Integer i_demYear; - @Transient private Region i_demRgn; - @Transient private Dhhtp_c4 i_demCompHhC4L1; - @Transient private Ydses_c5 i_yHhQuintilesC5; - @Transient private Integer i_demNchildL1; - @Transient private Integer i_demNchild; - @Transient private Integer i_demNchild0to2L1; - @Transient private Integer i_demNchild0to17; - @Transient private Indicator i_demNChild0to2; - @Transient private Dcpst i_demPartnerStatus; + @NullInitialised @Transient private Integer i_demYear; + @NullInitialised @Transient private Region i_demRgn; + @NullInitialised @Transient private Dhhtp_c4 i_demCompHhC4L1; + @NullInitialised @Transient private Ydses_c5 i_yHhQuintilesC5; + @NullInitialised @Transient private Integer i_demNchildL1; + @NullInitialised @Transient private Integer i_demNchild; + @NullInitialised @Transient private Integer i_demNchild0to2L1; + @NullInitialised @Transient private Integer i_demNchild0to17; + @NullInitialised @Transient private Indicator i_demNChild0to2; + @NullInitialised @Transient private Dcpst i_demPartnerStatus; // innovations @Transient Innovations statInnovations; //TODO: Remove when no longer needed. Used to calculate mean score of employment selection regression. - @Transient public static Double statMScore; - @Transient public static Double statFScore; - @Transient public static Double countMale; - @Transient public static Double countFemale; + @NullInitialised @Transient public static Double statMScore; + @NullInitialised @Transient public static Double statFScore; + @NullInitialised @Transient public static Double countMale; + @NullInitialised @Transient public static Double countFemale; @Transient public static Double statInverseMillsRatioMaxM = Double.MIN_VALUE; @Transient public static Double statInverseMillsRatioMinM = Double.MAX_VALUE; @Transient public static Double statInverseMillsRatioMaxF = Double.MIN_VALUE; @@ -256,13 +258,13 @@ public Person(Gender gender, Person mother) { demEnterSample = SampleEntry.Birth; demMaleFlag = gender; idMother = mother.getId(); - eduHighestMotherC4 = mother.getDeh_c4(); + eduHighestMotherC4 = mother.getEduHighestC4(); if (mother.getPartner()==null) { idFather = null; - eduHighestFatherC4 = mother.getDeh_c4(); + eduHighestFatherC4 = mother.getEduHighestC4(); } else { idFather = mother.getPartner().getId(); - eduHighestFatherC4 = mother.getPartner().getDeh_c4(); + eduHighestFatherC4 = mother.getPartner().getEduHighestC4(); } labEmpNyear = 0; @@ -287,7 +289,7 @@ public Person(Gender gender, Person mother) { healthPhysicalPcs = 56.; demLifeSatScore0to10 = 6.; eduHighestC4 = Education.InEducation; - demEthnC6 = mother.getDot01(); + demEthnC6 = mother.getDemEthnC6(); labC4 = Les_c4.Student; //Set lag activity status as Student, i.e. in education from birth eduLeftEduFlag = false; labC7Covid = Les_c7_covid.Student; @@ -295,8 +297,6 @@ public Person(Gender gender, Person mother) { labHrsWorkWeek = getLabourSupplyWeekly().getHours(this); idHh = mother.getBenefitUnit().getHousehold().getId(); // setDeviationFromMeanRetirementAge(); //This would normally be done within initialisation, but the line above has been commented out for reasons given... - yDispEquivYear = new Series.Double(this, DoublesVariables.EquivalisedIncomeYearly); - xEquivYearL1 = new Series.Double(this, DoublesVariables.EquivalisedConsumptionYearly); xEquivYear = 0.; yLifeTime = 0.; demBornInSimFlag = true; @@ -304,7 +304,7 @@ public Person(Gender gender, Person mother) { yBenNonUCReceivedFlag = false; yBenUCReceivedFlag = false; yFinDstrssFlag = mother.getYFinDstrssFlag(); - updateVariables(false); + updateAttributes(); } // a "copy constructor" for persons: used by the cloneBenefitUnit method of the SimPathsModel object @@ -315,9 +315,9 @@ public Person (Person originalPerson, long statSeed, SampleEntry demEnterSample) switch (demEnterSample) { case ProcessedInputData -> { key.setId(originalPerson.getId()); - idPersOriginal = originalPerson.getIdOriginalPerson(); - idBuOriginal = originalPerson.getIdOriginalBU(); - idHhOriginal = originalPerson.getIdOriginalHH(); + idPersOriginal = originalPerson.getIdPersOriginal(); + idBuOriginal = originalPerson.getIdBuOriginal(); + idHhOriginal = originalPerson.getIdHhOriginal(); } default -> { idPersOriginal = originalPerson.key.getId(); @@ -401,10 +401,10 @@ else if (demAge > Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) labStatusPartnerAndOwnC4L1 = originalPerson.labStatusPartnerAndOwnC4L1; demPartnerStatusL1 = originalPerson.demPartnerStatusL1; demPartnerStatusL2 = originalPerson.demPartnerStatusL2; - yNonBenPersGrossMonth = originalPerson.getyNonBenPersGrossMonth(); + yNonBenPersGrossMonth = originalPerson.getYNonBenPersGrossMonth(); yNonBenPersGrossMonthL1 = originalPerson.yNonBenPersGrossMonthL1; yMiscPersGrossMonth = Objects.requireNonNullElse(originalPerson.yMiscPersGrossMonth, 0.0); - yEmpPersGrossMonth = originalPerson.getyEmpPersGrossMonth(); + yEmpPersGrossMonth = originalPerson.getYEmpPersGrossMonth(); yEmpPersGrossMonthL1 = originalPerson.yEmpPersGrossMonthL1; yEmpPersGrossMonthL2 = originalPerson.yEmpPersGrossMonthL2; yEmpPersGrossMonthL3 = originalPerson.yEmpPersGrossMonthL3; @@ -443,7 +443,7 @@ else if (demAge > Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) careHrsProvidedWeek = Objects.requireNonNullElse(originalPerson.careHrsProvidedWeek, 0.0); careProvidedFlag = Objects.requireNonNullElseGet(originalPerson.careProvidedFlag, () -> - (careHrsProvidedWeek > 0.01) ? SocialCareProvision.OnlyOther : SocialCareProvision.None); + (careHrsProvidedWeek > 0.01) ? Indicator.True : Indicator.False); careNeedFlagL1 = Objects.requireNonNullElse(originalPerson.careNeedFlagL1, careNeedFlag); careHrsFormalWeekL1 = Objects.requireNonNullElse(originalPerson.careHrsFormalWeekL1, careHrsFormalWeek); @@ -513,18 +513,7 @@ else if (demAge > Parameters.MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION) demAgeDiffDesired = Objects.requireNonNullElseGet(originalPerson.demAgeDiffDesired, () -> sampleDifferentials[0]); yWageDesired = Objects.requireNonNullElseGet(originalPerson.yWageDesired, () -> sampleDifferentials[1]); - statMScore = originalPerson.statMScore; - statFScore = originalPerson.statFScore; - countMale = originalPerson.countMale; - countFemale = originalPerson.countFemale; - statInverseMillsRatioMaxM = originalPerson.statInverseMillsRatioMaxM; - statInverseMillsRatioMinM = originalPerson.statInverseMillsRatioMinM; - statInverseMillsRatioMaxF = originalPerson.statInverseMillsRatioMaxF; - statInverseMillsRatioMinF = originalPerson.statInverseMillsRatioMinF; - demAdultChildFlag = originalPerson.demAdultChildFlag; - yDispEquivYear = new Series.Double(this, DoublesVariables.EquivalisedIncomeYearly); - xEquivYearL1 = new Series.Double(this, DoublesVariables.EquivalisedConsumptionYearly); xEquivYear = originalPerson.xEquivYear; demEthnC6 = originalPerson.demEthnC6; yBenReceivedFlag = originalPerson.yBenReceivedFlag; @@ -556,7 +545,7 @@ public Person(Long id, long statSeed) { // initialise random draws this.statSeed = statSeed; - statInnovations = new Innovations(37, 1, 1, statSeed); + statInnovations = new Innovations(38, 1, 1, statSeed); //Draw desired age and wage differential for parametric partnership formation for people above age to get married: double[] sampleDifferentials = setMarriageTargets(); @@ -598,12 +587,12 @@ private void setAllSocialCareVariablesToFalse() { careReceivedFlag = SocialCareReceipt.None; careFormalFlag = false; careFromInformalFlag = false; - careProvidedFlag = SocialCareProvision.None; + careProvidedFlag = Indicator.False; careNeedFlagL1 = Indicator.False; careHrsFormalWeekL1 = -9.0; careHrsInformalWeekL1 = -9.0; careHrsProvidedWeekL1 = -9.0; - careProvidedFlagL1 = SocialCareProvision.None; + careProvidedFlagL1 = Indicator.False; } public void setAdditionalFieldsInInitialPopulation() { @@ -620,24 +609,117 @@ public void setAdditionalFieldsInInitialPopulation() { labHrsWorkWeek = labHrsWorkEnumWeek.getValue(); } } + + if(UnionMatchingMethod.SBAM.equals(model.getUnionMatchingMethod())) { + updateAgeGroup(); + } + + demGiveBirthFlag = false; + demBePartnerFlag = false; + demLeavePartnerFlag = false; + eduLeaveSchoolFlag = false; + setEduExitSampleFlag(Indicator.False); //This variable is False by default + // is set to true only when person leaves school in this specific year + // eduSpellFlag = (Les_c4.Student.equals(labC4)) ? Indicator.True : Indicator.False; + // no need to update eduSpellFlag as its value is persisted from the previous year + + if (!Parameters.checkFinite(careHrsInformalWeek)) + careHrsInformalWeek = 0.0; + if (careHrsProvidedWeek < 0.01) { + careProvidedFlag = Indicator.False; + } else { + careProvidedFlag = Indicator.True; + } + if (demAge = 18 && demAge < 21) { + } else if(demAge >= AGE_TO_BECOME_RESPONSIBLE && demAge < 21) { demAgeGroup = 1; model.tmpPeopleAssigned++; } else if(demAge >= 21 && demAge < 24) { @@ -682,6 +764,7 @@ private void updateAgeGroup() { public enum Processes { Aging, Cohabitation, + ConsiderLeavingHome, ConsiderMortality, ConsiderRetirement, Fertility, @@ -720,7 +803,7 @@ public void onEvent(Enum type) { aging(); } case Update -> { - updateVariables(false); + updateAttributes(); } case UpdateOutputVariables -> { updateOutputVariables(); @@ -735,6 +818,9 @@ public void onEvent(Enum type) { case PartnershipDissolution -> { partnershipDissolution(); } + case ConsiderLeavingHome -> { + considerLeavingHome(); + } case ConsiderMortality -> { considerMortality(); } @@ -830,9 +916,9 @@ public void fertility() { public void fertility(double probitAdjustment) { demGiveBirthFlag = false; - FertileFilter filter = new FertileFilter(); + var filter = Filters.fertile(); - if (filter.evaluate(this)) { + if (filter.test(this)) { double prob; @@ -912,9 +998,6 @@ private void aging() { demAgeSq = demAge * demAge; if (demAge == Parameters.AGE_TO_BECOME_RESPONSIBLE) { setupNewBenefitUnit(true); - considerLeavingHome(); - } else if (demAge > Parameters.AGE_TO_BECOME_RESPONSIBLE && Indicator.True.equals(demAdultChildFlag)) { - considerLeavingHome(); } updateAgeGroup(); //Update ageGroup as person ages } @@ -940,29 +1023,41 @@ private void considerMortality() { //This process should be applied to those at the age to become responsible / leave home OR above if they have the adultChildFlag set to True (i.e. people can move out, but not move back in). private void considerLeavingHome() { - //For those who are moving out, evaluate whether they should have stayed with parents and if yes, set the adultchildflag to true + //Age eligibility: only those within the age range to leave the parental home are considered + if (demAge < Parameters.MIN_AGE_LEAVE_PH || demAge > Parameters.MAX_AGE_ADULT_CHILD) { + return; + } + + //Above the age to leave home, only those still living with their parents are considered (people can move out, but not move back in) + if (demAge > Parameters.MIN_AGE_LEAVE_PH && !Indicator.True.equals(demAdultChildFlag)) { + return; + } + + //Those in continuous education are not allowed to leave home, to match the filtering condition of the estimated equation + if (Indicator.True.equals(eduSpellFlag)) { + demAdultChildFlag = Indicator.True; + return; + } + + // Evaluate whether the person should leave the parental home: + // - if not, set demAdultChildFlag to true (remains living with parents) + // - if yes, set demAdultChildFlag to false and set up a new household double prob = Parameters.getRegLeaveHomeP1a().getProbability(this, Person.DoublesVariables.class); boolean toLeaveHome = (statInnovations.getDoubleDraw(21) < prob); - if (Les_c4.Student.equals(labC4)) { + if (!toLeaveHome) { //If at the age to leave home but regression outcome is negative, person has adultchildflag set to true (although they still set up a new benefitUnit in the simulation, it's treated differently in the labour supply) - demAdultChildFlag = Indicator.True; //Students not allowed to leave home to match filtering conditon + demAdultChildFlag = Indicator.True; } else { - if (!toLeaveHome) { //If at the age to leave home but regression outcome is negative, person has adultchildflag set to true (although they still set up a new benefitUnit in the simulation, it's treated differently in the labour supply) - - demAdultChildFlag = Indicator.True; - } else { - - demAdultChildFlag = Indicator.False; - setupNewHousehold(); //If person leaves home, they set up a new household - } + demAdultChildFlag = Indicator.False; + setupNewHousehold(); //If person leaves home, they set up a new household } } public boolean considerRetirement() { boolean toRetire = false; - if (demAge >= Parameters.MIN_AGE_TO_RETIRE && !Les_c4.Retired.equals(labC4) && !Les_c4.Retired.equals(labC4L1)) { + if (demAge >= MIN_AGE_TO_RETIRE && !Les_c4.Retired.equals(labC4) && !Les_c4.Retired.equals(labC4L1)) { if (Parameters.enableIntertemporalOptimisations && DecisionParams.flagRetirement) { if (Labour.ZERO.equals(labHrsWorkEnumWeekL1)) { toRetire = true; @@ -977,7 +1072,7 @@ public boolean considerRetirement() { toRetire = (statInnovations.getDoubleDraw(23) < prob); } if (toRetire) { - setLes_c4(Les_c4.Retired); + setLabC4(Les_c4.Retired); } } return toRetire; @@ -1001,7 +1096,7 @@ private void updateFinancialDistress() { * @see scghq1_dv */ protected void healthMentalHM1Level() { - if (demAge >= 16) { + if (demAge >= MIN_AGE_TO_HAVE_INCOME) { double score = Parameters.getRegHealthHM1Level().getScore(this, Person.DoublesVariables.class); double rmse = Parameters.getRMSEForRegression("HM1_L"); double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(1)); @@ -1025,7 +1120,7 @@ protected void healthMentalHM1Level() { protected void healthMentalHM2Level() { double dhmPrediction; - if (demAge >= 25 && demAge <= 64) { + if (demAge >= 25 && demAge < MIN_AGE_SOCIAL_CARE) { if (Gender.Male.equals(getDemMaleFlag())) { dhmPrediction = Parameters.getRegHealthHM2LevelMales().getScore(this, Person.DoublesVariables.class); healthWbScore0to36 = constrainDhmEstimate(dhmPrediction+ healthWbScore0to36); @@ -1050,9 +1145,9 @@ protected void healthMentalHM2Level() { * @see scghq2_dv */ protected void healthMentalHM1Case() { - if (demAge >= 16) { + if (demAge >= MIN_AGE_TO_HAVE_INCOME) { Map probs = ManagerRegressions.getProbabilities(this, RegressionName.HealthHM1Case); - MultiValEvent event = new MultiValEvent(probs, statInnovations.getDoubleDraw(36)); + var event = new MultiValEvent(probs, statInnovations.getDoubleDraw(36)); healthPsyDstrss0to12 = Double.valueOf(event.eval().getValue()); } } @@ -1070,7 +1165,7 @@ protected void healthMentalHM1Case() { */ protected void healthMentalHM2Case() { double dhmGhqPrediction; - if (demAge >= 25 && demAge <= 64) { + if (demAge >= 25 && demAge < MIN_AGE_SOCIAL_CARE) { if (Gender.Male.equals(getDemMaleFlag())) { dhmGhqPrediction = Parameters.getRegHealthHM2CaseMales().getScore(this, Person.DoublesVariables.class); healthPsyDstrss0to12 = constrainhealthPsyDstrssEstimate(dhmGhqPrediction+ healthPsyDstrss0to12); @@ -1095,7 +1190,7 @@ protected void healthMentalHM2Case() { */ protected void healthMCS1() { - if (demAge >= 16) { + if (demAge >= MIN_AGE_TO_HAVE_INCOME) { double mcsPrediction = Parameters.getRegHealthMCS1().getScore(this, Person.DoublesVariables.class); double rmse = Parameters.getRMSEForRegression("DHE_MCS1"); double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(33)); @@ -1117,7 +1212,7 @@ protected void healthMCS1() { protected void healthMCS2() { double mcsPrediction; - if (demAge >= 25 && demAge <= 64) { + if (demAge >= 25 && demAge < MIN_AGE_SOCIAL_CARE) { if (Gender.Male.equals(getDemMaleFlag())) { mcsPrediction = Parameters.getRegHealthMCS2Males().getScore(this, Person.DoublesVariables.class); healthMentalMcs = constrainSF12Estimate(mcsPrediction + healthMentalMcs); @@ -1142,7 +1237,7 @@ protected void healthMCS2() { */ protected void healthPCS1() { - if (demAge >= 16) { + if (demAge >= MIN_AGE_TO_HAVE_INCOME) { double pcsPrediction = Parameters.getRegHealthPCS1().getScore(this, Person.DoublesVariables.class); double rmse = Parameters.getRMSEForRegression("DHE_PCS1"); double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(34)); @@ -1164,7 +1259,7 @@ protected void healthPCS1() { protected void healthPCS2() { double pcsPrediction; - if (demAge >= 25 && demAge <= 64) { + if (demAge >= 25 && demAge < MIN_AGE_SOCIAL_CARE) { if (Gender.Male.equals(getDemMaleFlag())) { pcsPrediction = Parameters.getRegHealthPCS2Males().getScore(this, Person.DoublesVariables.class); healthPhysicalPcs = constrainSF12Estimate(pcsPrediction + healthPhysicalPcs); @@ -1190,7 +1285,7 @@ protected void healthPCS2() { */ protected void lifeSatisfaction1() { - if (demAge >= 16) { + if (demAge >= MIN_AGE_TO_HAVE_INCOME) { double dlsPrediction = Parameters.getRegLifeSatisfaction1().getScore(this, Person.DoublesVariables.class); double rmse = Parameters.getRMSEForRegression("DLS1"); double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(35)); @@ -1212,7 +1307,7 @@ protected void lifeSatisfaction1() { */ protected void lifeSatisfaction2() { - if (demAge >= 25 && demAge <= 64) { + if (demAge >= 25 && demAge < MIN_AGE_SOCIAL_CARE) { double dlsPrediction; if (Gender.Male.equals(getDemMaleFlag())) { @@ -1243,7 +1338,7 @@ protected void lifeSatisfaction2() { protected void healthEQ5D() { double eq5dPrediction; - if (demAge >= 16) { + if (demAge >= MIN_AGE_TO_HAVE_INCOME) { eq5dPrediction = Parameters.getRegEQ5D().getScore(this, Person.DoublesVariables.class); if (eq5dPrediction > 1) { @@ -1331,14 +1426,14 @@ protected void health() { double healthInnov1 = statInnovations.getDoubleDraw(3); double healthInnov2 = statInnovations.getDoubleDraw(4); - if (demAge >= 16) { + if (demAge >= MIN_AGE_TO_HAVE_INCOME) { Map probs = ManagerRegressions.getProbabilities(this, RegressionName.HealthH1); - MultiValEvent event = new MultiValEvent(probs, healthInnov1); - healthSelfRated = (Dhe) event.eval(); + var event = new MultiValEvent(probs, healthInnov1); + healthSelfRated = event.eval(); if (event.isProblemWithProbs()) model.addCounterErrorH1a(); - if (Indicator.False.equals(getDed())) { + if (Indicator.False.equals(getEduSpellFlag())) { boolean becomeLTSickDisabled = false; if (!Parameters.enableIntertemporalOptimisations || DecisionParams.flagDisability) { double prob = Parameters.getRegHealthH2().getProbability(this, Person.DoublesVariables.class); @@ -1375,8 +1470,9 @@ protected void evaluateSocialCareReceipt() { double recCareInnov = statInnovations.getDoubleDraw(7); double probNeedCare = Parameters.getRegNeedCareS2a().getProbability(this, Person.DoublesVariables.class); if (recCareInnov < probNeedCare) { - // need care careNeedFlag = Indicator.True; + } else { + careNeedFlag = Indicator.False; } double probRecCare = Parameters.getRegReceiveCareS2b().getProbability(this, Person.DoublesVariables.class); @@ -1385,8 +1481,8 @@ protected void evaluateSocialCareReceipt() { // if probNeedCare > probRecCare, then code here implies that anyone who receives care will also need care Map probs1 = Parameters.getRegSocialCareMarketS2c().getProbabilities(this, Person.DoublesVariables.class); - MultiValEvent event = new MultiValEvent(probs1, statInnovations.getDoubleDraw(8)); - SocialCareReceiptS2c socialCareReceiptS2c = (SocialCareReceiptS2c) event.eval(); + var event = new MultiValEvent(probs1, statInnovations.getDoubleDraw(8)); + var socialCareReceiptS2c = event.eval(); careReceivedFlag = SocialCareReceipt.getCode(socialCareReceiptS2c); if (SocialCareReceipt.Mixed.equals(careReceivedFlag) || SocialCareReceipt.Formal.equals(careReceivedFlag)) careFormalFlag = true; @@ -1398,7 +1494,7 @@ protected void evaluateSocialCareReceipt() { double score = Parameters.getRegInformalCareHoursS2d().getScore(this,Person.DoublesVariables.class); double rmse = Parameters.getRMSEForRegression("S2d"); double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(12)); - double informalHours = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); + double informalHours = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.sinh(score + rmse * gauss)); careFromInformalFlag = true; careHrsInformalWeek = informalHours; @@ -1471,7 +1567,7 @@ protected void evaluateSocialCareReceipt() { double score = Parameters.getRegFormalCareHoursS2e().getScore(this,Person.DoublesVariables.class); double rmse = Parameters.getRMSEForRegression("S2e"); double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(13)); - careHrsFormalWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_FORMAL_CARE, Math.exp(score + rmse * gauss)); + careHrsFormalWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_FORMAL_CARE, Math.sinh(score + rmse * gauss)); careFormalX = careHrsFormalWeek * Parameters.getTimeSeriesValue(model.getYear(), TimeSeriesVariable.CarerWageRate); // Retired process (kept for future reuse): S2k formal care hours. @@ -1491,7 +1587,7 @@ protected void evaluateSocialCareProvision() { public void evaluateSocialCareProvision(double probitAdjustment) { - careProvidedFlag = SocialCareProvision.None; + careProvidedFlag = Indicator.False; careHrsProvidedWeek = 0.0; if (demAge >= Parameters.MIN_AGE_TO_PROVIDE_CARE) { @@ -1514,37 +1610,14 @@ public void evaluateSocialCareProvision(double probitAdjustment) { double score = Parameters.getRegNoCarePartnerProvCareToOtherS3b().getScore(this, Person.DoublesVariables.class); probProvideAny = Parameters.getRegNoCarePartnerProvCareToOtherS3b().getProbability(score + probitAdjustment); } - boolean provideCare = (statInnovations.getDoubleDraw(13) < probProvideAny); + boolean provideCare = (statInnovations.getDoubleDraw(37) < probProvideAny); if (!Parameters.flagSuppressSocialCareCosts && provideCare) { - double score; - double rmse; - if (partner == null) { - - // S3c: informal care hours provided, singles (conditional on providing care). - score = Parameters.getRegCareHoursProvS3c().getScore(this, Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("S3c"); - } else { - - // S3d: informal care hours provided, partnered (conditional on providing care). - score = Parameters.getRegCareHoursProvS3d().getScore(this, Person.DoublesVariables.class); - rmse = Parameters.getRMSEForRegression("S3d"); - } - double gauss = Parameters.getStandardNormalDistribution().inverseCumulativeProbability(statInnovations.getDoubleDraw(14)); - careHrsProvidedWeek = Math.min(Parameters.MAX_HOURS_WEEKLY_INFORMAL_CARE, Math.exp(score + rmse * gauss)); - if (careToPartner) { - - if (careHrsProvidedWeek > careHoursToPartner) { - - careProvidedFlag = SocialCareProvision.PartnerAndOther; - } else { - - careProvidedFlag = SocialCareProvision.OnlyPartner; - } - } else { - - careProvidedFlag = SocialCareProvision.OnlyOther; - } + // S3c/S3d: ordered-logit category of informal care hours, conditional on providing care. + RegressionName regression = (partner == null) ? RegressionName.SocialCareS3c : RegressionName.SocialCareS3d; + CareHoursProvidedCategory category = ManagerRegressions.getEvent(this, regression, statInnovations.getDoubleDraw(14)); + careHrsProvidedWeek = category.getRepresentativeHours(); + careProvidedFlag = Indicator.True; } } } @@ -1567,42 +1640,22 @@ protected void cohabitation(double probitAdjustment) { if (demAge >= Parameters.MIN_AGE_COHABITATION) { // cohabitation possible - if (model.getCountry() == Country.UK) { - - double prob; - if (partner == null) { - // partnership formation - - double score = Parameters.getRegPartnershipU1().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegPartnershipU1().getProbability(score + probitAdjustment); - demBePartnerFlag = (cohabitInnov < prob); - if (demBePartnerFlag) - model.getPersonsToMatch().get(demMaleFlag).get(getRegion()).add(this); - } else if (demMaleFlag == Gender.Female) { - // partnership dissolution - - double score = Parameters.getRegPartnershipU2().getScore(this, Person.DoublesVariables.class); - prob = Parameters.getRegPartnershipU2().getProbability(score - probitAdjustment); - if (cohabitInnov < prob) { - demLeavePartnerFlag = true; - } - } - } else if (model.getCountry() == Country.IT) { - - if (partner == null) { - if ((labC4 == Les_c4.Student && eduLeftEduFlag) || !labC4.equals(Les_c4.Student)) { - - double prob = Parameters.getRegPartnershipITU1().getProbability(this, Person.DoublesVariables.class); - demBePartnerFlag = (cohabitInnov < prob); - if (demBePartnerFlag) - model.getPersonsToMatch().get(demMaleFlag).get(getRegion()).add(this); - } - } else if (demMaleFlag == Gender.Female && ((labC4 == Les_c4.Student && eduLeftEduFlag) || !labC4.equals(Les_c4.Student))) { - - double prob = Parameters.getRegPartnershipITU2().getProbability(this, Person.DoublesVariables.class); - if (cohabitInnov < prob) { - demLeavePartnerFlag = true; - } + double prob; + if (partner == null) { + // partnership formation + + double score = Parameters.getRegPartnershipU1().getScore(this, Person.DoublesVariables.class); + prob = Parameters.getRegPartnershipU1().getProbability(score + probitAdjustment); + demBePartnerFlag = (cohabitInnov < prob); + if (demBePartnerFlag) + model.getPersonsToMatch().get(demMaleFlag).get(getRegion()).add(this); + } else if (demMaleFlag == Gender.Female) { + // partnership dissolution + + double score = Parameters.getRegPartnershipU2().getScore(this, Person.DoublesVariables.class); + prob = Parameters.getRegPartnershipU2().getProbability(score - probitAdjustment); + if (cohabitInnov < prob) { + demLeavePartnerFlag = true; } } } @@ -1655,9 +1708,9 @@ public boolean inSchool(double probitAdjustment) { if (labourInnov < prob) { // Remain a student *OUTCOME B* - setLes_c4(Les_c4.Student); //not needed, more of a precaution - //setDed(Indicator.True); //(!) a bug; E1a is applied to everyone with Ded true and false - //setDer(Indicator.False); //(!) a bug; Der is set to true only when individual re-enters education (i.e. process E1b) + setLabC4(Les_c4.Student); //not needed, more of a precaution + //setEduSpellFlag(Indicator.True); //(!) a bug; E1a is applied to everyone with Ded true and false + //setEduReturnFlag(Indicator.False); //(!) a bug; Der is set to true only when individual re-enters education (i.e. process E1b) return true; // Must return true as they remain in school } else { // Leave education --> Process E2 @@ -1689,14 +1742,16 @@ public boolean inSchool(double probitAdjustment) { // No --> Process E1b else { + // The InSchool alignment adjustment is applied to E1a (continuing students) only, + // consistent with the student-share target definition. E1b (re-entry) uses the raw score. double score = Parameters.getRegEducationE1b().getScore(this, Person.DoublesVariables.class); - double prob = Parameters.getRegEducationE1b().getProbability(score + probitAdjustment); + double prob = Parameters.getRegEducationE1b().getProbability(score); if (labourInnov < prob) { // Become a student *OUTCOME E* - setLes_c4(Les_c4.Student); - setDer(Indicator.True); - setDed(Indicator.False); //not needed, more of a precaution as ded should already be false + setLabC4(Les_c4.Student); + setEduReturnFlag(Indicator.True); + setEduSpellFlag(Indicator.False); //not needed, more of a precaution as ded should already be false return true; // Must return true as they become a student } else { return false; @@ -1731,21 +1786,21 @@ public boolean inSchool(double probitAdjustment) { // if (labourInnov < prob) { // //If event is true, re-enter education. If event is false, leave school // -// setLes_c4(Les_c4.Student); -// setDer(Indicator.True); -// setDed(Indicator.True); +// setLabC4(Les_c4.Student); +// setEduReturnFlag(Indicator.True); +// setEduSpellFlag(Indicator.True); // } else if (Les_c4.Student.equals(labC4)){ // //If activity status is student but regression to be in education was evaluated to false, remove student status // -// setLes_c4(Les_c4.NotEmployed); -// setDed(Indicator.False); +// setLabC4(Les_c4.NotEmployed); +// setEduSpellFlag(Indicator.False); // eduLeaveSchoolFlag = true; //Test what happens if people who returned to education leave again // } // } else if (demAge > 45 && labC4.equals(Les_c4.Student)) { // //People above 45 shouldn't be in education, so if someone re-entered at 45 in previous step, force out // -// setLes_c4(Les_c4.NotEmployed); -// setDed(Indicator.False); +// setLabC4(Les_c4.NotEmployed); +// setEduSpellFlag(Indicator.False); // } // } @@ -1754,11 +1809,11 @@ public void leavingSchool() { if (eduLeaveSchoolFlag) { setEducationLevel(); //If individual leaves school follow process E2a to assign level of education - setSedex(Indicator.True); //Set variable left education (sedex) if leaving school - setDed(Indicator.False); //Set variable in education (ded) to false if leaving school - setDer(Indicator.False); + setEduExitSampleFlag(Indicator.True); //Set variable left education (sedex) if leaving school + setEduSpellFlag(Indicator.False); //Set variable in education (ded) to false if leaving school + setEduReturnFlag(Indicator.False); setEduLeftEduFlag(true); //This is not reset and indicates if individual has ever left school - used with health process - setLes_c4(Les_c4.NotEmployed); //Set activity status to NotEmployed when leaving school to remove Student status + setLabC4(Les_c4.NotEmployed); //Set activity status to NotEmployed when leaving school to remove Student status this.eduLeaveSchoolFlag = false; // Reset the flag once the leaving process is complete } @@ -1769,7 +1824,7 @@ private void giveBirth() { //To be called once per year after fertility align if (demGiveBirthFlag) { //toGiveBirth is determined by fertility process - Gender babyGender = (statInnovations.getDoubleDraw(27) < Parameters.PROB_NEWBORN_IS_MALE) ? Gender.Male : Gender.Female; + Gender babyGender = (statInnovations.getDoubleDraw(27) < PROB_NEWBORN_IS_MALE) ? Gender.Male : Gender.Female; //Give birth to new person and add them to benefitUnit. Person child = new Person(babyGender, this); @@ -2046,8 +2101,8 @@ public void setEducationLevel() { // --- Step 1: Regression Result --- // The regression determines the highest possible qualification achieved this spell. Map probs = Parameters.getRegEducationE2().getProbabilities(this, Person.DoublesVariables.class); - MultiValEvent event = new MultiValEvent(probs, statInnovations.getDoubleDraw(30)); - EducationLevel regressionEducationLevel = (EducationLevel) event.eval(); + var event = new MultiValEvent(probs, statInnovations.getDoubleDraw(30)); + var regressionEducationLevel = event.eval(); Education newEducationLevel = Education.valueOf(regressionEducationLevel.name()); //Education has been set to Low by default for all new born babies, so it should never be null. @@ -2096,7 +2151,7 @@ protected void projectEquivConsumption() { xEquivYear = benefitUnit.getDiscretionaryConsumptionPerYear() / benefitUnit.getEquivalisedWeight(); } else { - if (getLes_c4().equals(Les_c4.Retired)) { + if (getLabC4().equals(Les_c4.Retired)) { xEquivYear = benefitUnit.getEquivalisedDisposableIncomeYearly(); } else { xEquivYear = Math.max(0., (1-model.getSavingRate())*benefitUnit.getEquivalisedDisposableIncomeYearly()); @@ -2104,22 +2159,19 @@ protected void projectEquivConsumption() { } } - protected void updateVariables(boolean initialUpdate) { + + protected void updateAttributes() { + + UpdateManager.applyAnnotations(this); //Reset flags to default values - demGiveBirthFlag = false; - demBePartnerFlag = false; - demLeavePartnerFlag = false; - eduLeaveSchoolFlag = false; - setSedex(Indicator.False); //This variable is False by default + setEduExitSampleFlag(Indicator.False); //This variable is False by default // is set to true only when person leaves school in this specific year // eduSpellFlag = (Les_c4.Student.equals(labC4)) ? Indicator.True : Indicator.False; // no need to update eduSpellFlag as its value is persisted from the previous year - if (initialUpdate && !Parameters.checkFinite(careHrsInformalWeek)) - careHrsInformalWeek = 0.0; - if (demAge variableID) { return (isToBePartnered())? 1 : 0; case isPsychologicallyDistressed: - return (healthPsyDstrss0to12 >= 4)? 1 : 0; + return this.isPsychologicallyDistressed(); case isNeedSocialCare: return (Indicator.True.equals(careNeedFlag)) ? 1 : 0; @@ -2593,6 +2562,25 @@ public enum DoublesVariables { Ded_Yplgrs_dv_L2, Ded_Ypncp_L2, Ded_Ydses_c5_Q2_L1, + demDChildL1, + demYear2010, + demYear2011, + demYear2012, + demYear2013, + demYear2014, + demYear2015, + demYear2016, + demYear2017, + demYear2018, + demYear2019, + demYear2022, + demYear2023, + demYear2024, + demAge_10, + demAge_11, + demAge_12, + demAge_13, + demAge_14, Ded_Ydses_c5_Q3_L1, Ded_Ydses_c5_Q4_L1, Ded_Ydses_c5_Q5_L1, @@ -2670,6 +2658,7 @@ public enum DoublesVariables { Dhhtp_c4_CoupleNoChildren_L1, Dhhtp_c4_SingleChildren_L1, Dhhtp_c4_SingleChildren_L1_, + demCompHhC4SingleChL1, Dhhtp_c4_SingleNoChildren_L1, L_Dhhtp_c4_CoupleChildren, L_Dhhtp_c4_SingleChildren, @@ -2724,8 +2713,6 @@ public enum DoublesVariables { Dnc_L1, //Lag(1) of number of children of all ages in the benefitUnit Dnc02_L1, //Lag(1) of number of children aged 0-2 in the benefitUnit Dnc017, //Number of children aged 0-17 in the benefitUnit - EduHighIT, - EduMediumIT, EmployedToUnemployed, Employmentsonflexiblefurlough, Employmentsonfullfurlough, @@ -2749,21 +2736,14 @@ public enum DoublesVariables { GrossEarningsYearly, GrossLabourIncomeMonthly, InverseMillsRatio, - ITC, //Italy - ITF, - ITG, - ITH, - ITI, - LactiveIT, + InvMillsRatio, L1_hourly_wage, L1_log_hourly_wage, Hourly_wage_L1, L1_log_hourly_wage_sq, Ld_children_2under, Ld_children_3under, - Ld_children_3underIT, Ld_children_4_12, - Ld_children_4_12IT, Lemployed, Lhw_L1, Lhw_10, // Used by financial distress process @@ -2799,7 +2779,6 @@ public enum DoublesVariables { Lnonwork, Lstudent, Lunion, - LunionIT, HrsReceivedFormalIHS_L1, HrsReceivedInformalIHS_L1, HrsProvidedInformalIHS_L1, @@ -3103,22 +3082,697 @@ public enum DoublesVariables { Y2021_Formal, Constant_Mixed, Constant_Formal, + Age65to66, + Age_10, + Age_11, + Age_12, + Age_13, + Age_14, + Age_15, + Age_16, + Age_2, + Age_3, + Age_4, + Age_5, + Age_6, + Age_7, + Age_8, + Age_9, + CareMarket, + CareMarketFormal, + CareMarketInformal, + CareMarketMixedPartner, + Dag_c, + Dag_c_sq, + Dag_post18_sq, + Dag_post21, + Dag_post21_sq, + Dag_post25, + Dag_post25_sq, + Dag_post26_sq, + Dcpagdf, + Dcpst_1, + Dcpst_2, + Dcpyy, + Ded_Dcpst_Single_L1, + Ded_Dehsp_c3_Low_L1, + Ded_Dehsp_c3_Medium_L1, + Ded_Dhe, + Ded_Dhe_Excellent_L1, + Ded_Dhe_Fair_L1, + Ded_Dhe_Good_L1, + Ded_Dhe_VeryGood_L1, + Ded_Dhe_mcs, + Ded_Dhe_pcs, + Ded_Dhesp_Fair_L1, + Ded_Dhesp_Good_L1, + Ded_Ydses_c5_Q, + Ded_Yplgrs_dv, + Ded_Ypncp, + Deh_c3_1, + Deh_c3_2, + Deh_c3_3, + Deh_c4_1, + Deh_c4_2, + Deh_c4_3, + Deh_c4_4, + Dehmf_c3_1, + Dehmf_c3_2, + Dehmf_c3_3, + Dehsp_c3_1, + Dehsp_c3_2, + Dehsp_c3_3, + Dehsp_c3_High, + Dehsp_c3_Low, + Dehsp_c3_Medium, + Dhe_1, + Dhe_mcssp, + Dhe_pcssp, + Dhesp_1, + Dhesp_2, + Dhesp_3, + Dhesp_4, + Dhesp_5, + Dhesp_Poor, + Dhh_owned, + Dhhtp_c4_1, + Dhhtp_c4_2, + Dhhtp_c4_3, + Dhhtp_c4_4, + Dhhtp_c4_CoupleChildren, + Dhhtp_c4_CoupleNoChildren, + Dhhtp_c4_SingleChildren, + Dhhtp_c4_SingleNoChildren, + Dlltsd01sp, + Dlltsdsp, + Dnc, + Dnc02, + Dst, + Elig_pen, + Elig_pen_L1, + HrsProvidedInformalIHS, + HrsReceivedFormalIHS, + HrsReceivedInformalIHS, + L_Dehmf_c3, + L_Dehmf_c3_1, + L_Dehmf_c3_2, + L_Dehmf_c3_3, + L_Dehmf_c3_High, + L_Dhe, + L_Dhhtp_c4_1, + L_Dhhtp_c4_2, + L_Dhhtp_c4_3, + L_Dhhtp_c4_4, + L_Dhhtp_c4_CoupleNoChildren, + L_Les_c4_1, + L_Les_c4_2, + L_Les_c4_3, + L_Les_c4_4, + L_Les_c4_Employed, + L_Les_c4_NotEmployed, + L_Les_c4_Retired, + L_Les_c4_Student, + L_Need_socare, + L_Ydses_c5, + Les_c3_1, + Les_c3_2, + Les_c3_3, + Les_c3_Employed, + Les_c3_NotEmployed, + Les_c3_Student, + Les_c4_1, + Les_c4_2, + Les_c4_3, + Les_c4_4, + Les_c4_Employed, + Les_c4_NotEmployed, + Les_c4_NotEmployed_Dgn, + Les_c4_Retired, + Les_c4_Retired_Dgn, + Les_c4_Student, + Les_c4_Student_Dgn, + Lesdf_c4_1, + Lesdf_c4_2, + Lesdf_c4_3, + Lesdf_c4_4, + Lesdf_c4_BothEmployed, + Lesdf_c4_BothNotEmployed, + Lesdf_c4_EmpSpouseNotEmp, + Lesdf_c4_NotEmpSpouseEmp, + Lessp_c3_1, + Lessp_c3_2, + Lessp_c3_3, + Lessp_c3_Employed, + Lessp_c3_Student, + New_rel, + ProvideCare, + UK1, + UK10, + UK11, + UK12, + UK2, + UK3, + UK4, + UK5, + UK6, + UK7, + UK8, + UK9, + Y, + Y2223, + Ydses_c5, + YearSquared, + Ynbcpdf_dv, + Yplgrs_dv, + Ypnbihs_dv, + Ypnbihs_dv_sq, + Ypncp, + Ypnoab, + Yptciihs_dv, + careHrsFormalIhs, + careHrsFormalIhsL1, + careHrsInformalIhs, + careHrsInformalIhsL1, + careHrsProvidedWeekIhs, + careHrsProvidedWeekIhsL1, + careMarket, + careMarketFormal, + careMarketFormalL1, + careMarketFormalPartner, + careMarketInformal, + careMarketInformalL1, + careMarketInformalPartner, + careMarketL1, + careMarketMixed, + careMarketMixedL1, + careMarketMixedPartner, + careNeedFlag, + careNeedFlagL1, + careNeedPartnerFlag, + careProvidedFlag, + careProvidedFlagL1, + careReceivedFlag, + careReceivedFlagL1, + careReceivedPartnerFlag, + dage10prime, + dage2old, + dage5, + demAge, + demAge20to24, + demAge25to29, + demAge30to34, + demAge35to39, + demAge40to44, + demAge45to49, + demAge50to54, + demAge55to59, + demAge60to64, + demAge65to69, + demAge67to68, + demAge69to70, + demAge70to74, + demAge71to72, + demAge73to74, + demAge75to76, + demAge75to79, + demAge77to78, + demAge79to80, + demAge80to84, + demAge81to82, + demAge83to84, + demAge85plus, + demAgePartnerDiff, + demAgePartnerDiffL1, + demAgeSq, + demAge_Sq, + demCompHhC4, + demCompHhC4CoupleChL1, + demCompHhC4CoupleNoChL1, + demCompHhC4L1, + demCompHhC4L1SingleChL1, + demCompHhC4SingleNoChL1, + demCompHhC8, + demCompHhC81L1, + demCompHhC82L1, + demCompHhC83L1, + demCompHhC84L1, + demCompHhC85L1, + demCompHhC86L1, + demCompHhC87L1, + demCompHhC88L1, + demCompHhC8L1, + demEnterPartnerFlag, + demEnterPartnerFlagL1, + demEthnC4, + demEthnC4Asian, + demEthnC4Black, + demEthnC4Other, + demEthnC4White, + demEthnC4_1, + demEthnC4_2, + demEthnC4_3, + demEthnC4_4, + demMaleFlag, + demNChild, + demDChild, + demNChild0to2, + demNChild0to2L1, + demNChildL1, + demPartnerNYear, + demPartnerNYearL1, + demPartnerStatus, + demPartnerStatusL1, + demPartnerStatusPartnered, + demPartnerStatusPartneredL1, + demPartnerStatusSingle, + demPartnerStatusSingleL1, + demPensAgeFlag, + demPensAgeFlag_NotEmployedL1, + demPensPartnerAgeFlag, + demRgn, + demRgnUKC, + demRgnUKD, + demRgnUKE, + demRgnUKF, + demRgnUKG, + demRgnUKH, + demRgnUKI, + demRgnUKJ, + demRgnUKK, + demRgnUKL, + demRgnUKM, + demRgnUKN, + demRgn_1, + demRgn_10, + demRgn_11, + demRgn_12, + demRgn_2, + demRgn_3, + demRgn_4, + demRgn_5, + demRgn_6, + demRgn_7, + demRgn_8, + demRgn_9, + demYear, + demYearTransformed, + demYear20, + dot_1, + dot_2, + dot_3, + dot_4, + econ_realequivinc, + eduHighestC4, + eduHighestC4High, + eduHighestC4HighL1, + eduHighestC4HighL1_demAge, + eduHighestC4High_demAge, + eduHighestC4L1, + eduHighestC4Low, + eduHighestC4LowL1, + eduHighestC4LowL1_demAge, + eduHighestC4Low_demAge, + eduHighestC4Medium, + eduHighestC4MediumL1, + eduHighestC4MediumL1_demAge, + eduHighestC4Medium_demAge, + eduHighestC4Na, + eduHighestC4NaL1, + eduHighestC4NaL1_demAge, + eduHighestC4Na_demAge, + eduHighestParentC3, + eduHighestParentC3High, + eduHighestParentC3HighL1, + eduHighestParentC3L1, + eduHighestParentC3L1_1, + eduHighestParentC3L1_2, + eduHighestParentC3L1_3, + eduHighestParentC3Low, + eduHighestParentC3LowL1, + eduHighestParentC3Medium, + eduHighestParentC3MediumL1, + eduHighestParentC3_1, + eduHighestParentC3_2, + eduHighestParentC3_3, + eduHighestPartnerC3HighL1, + eduHighestPartnerC3LowL1, + eduHighestPartnerC3MediumL1, + eduSampleFlag, + eduSampleFlagL1, + eduSampleFlag_Male, + eduSampleFlag_Mcs, + eduSampleFlag_McsL1, + eduSampleFlag_Pcs, + eduSampleFlag_PcsL1, + eduSampleFlag_Q2L1, + eduSampleFlag_Q3L1, + eduSampleFlag_Q4L1, + eduSampleFlag_Q5L1, + eduSampleFlag_Single, + eduSampleFlag_demMaleFlag, + eduSampleFlag_demNChild0to2L1, + eduSampleFlag_demNChildL1, + eduSampleFlag_yCapitalPers, + eduSampleFlag_yCapitalPersL1, + eduSampleFlag_yCapitalPersL2, + eduSampleFlag_yEmpPersGross, + eduSampleFlag_yEmpPersGrossL1, + eduSampleFlag_yEmpPersGrossL2, + exp_emp, + exp_incchange, + exp_poverty, + fertilityRate, + healthDsblLongtermFlag, + healthDsblLongtermFlagL1, + healthMentalMcs, + healthMentalMcsL1, + healthMentalPartnerMcs, + healthMentalPartnerMcsL1, + healthPartnerSelfRated, + healthPartnerSelfRatedExcellent, + healthPartnerSelfRatedExcel, + healthPartnerSelfRatedFair, + healthPartnerSelfRatedGood, + healthPartnerSelfRatedPoor, + healthPartnerSelfRatedVeryGood, + healthPartnerSelfRated_1, + healthPartnerSelfRated_2, + healthPartnerSelfRated_3, + healthPartnerSelfRated_4, + healthPartnerSelfRated_5, + healthPhysicalPartnerPcs, + healthPhysicalPartnerPcsL1, + healthPhysicalPcs, + healthPhysicalPcsL1, + healthSelfRated, + healthSelfRatedExcellent, + healthSelfRatedExcellentL1, + healthSelfRatedFair, + healthSelfRatedFairL1, + healthSelfRatedGood, + healthSelfRatedGoodL1, + healthSelfRatedPoor, + healthSelfRatedVeryGood, + healthSelfRatedVeryGoodL1, + healthSelfRated_1, + healthSelfRated_2, + healthSelfRated_3, + healthSelfRated_4, + healthSelfRated_5, + idpartner, + idperson, + informal_socare_hrs, + l_, + labPt, + labStatusC3, + labStatusC3EmployedL1, + labStatusC3L1, + labStatusC3NotEmployedL1, + labStatusC3StudentL1, + labStatusC4, + labStatusC4EmployedL1, + labStatusC4EmployedL1_Male, + labStatusC4L1, + labStatusC4NotEmployedL1, + labStatusC4NotEmployedL1_Male, + labStatusC4NotEmployed_MaleL1, + labStatusC4RetiredL1, + labStatusC4RetiredL1_Male, + labStatusC4StudentL1, + labStatusC4StudentL1_Male, + labStatusC4Student_MaleL1, + labStatusC4Retired_MaleL1, + labStatusPartnerAndOwnC4, + labStatusPartnerAndOwnC41L1, + labStatusPartnerAndOwnC42L1, + labStatusPartnerAndOwnC43L1, + labStatusPartnerAndOwnC44L1, + labStatusPartnerAndOwnC4L1, + labStatusPartnerC3NotEmployedL1, + labWorkHist, + need_care, + receive_care, + // New-naming variables and interaction terms from refactored estimation files (PR #465) + // Social care multinomial - new demAge prefix for age-group dummies + demAge67to68_Formal, + demAge67to68_Mixed, + demAge69to70_Formal, + demAge69to70_Mixed, + demAge71to72_Formal, + demAge71to72_Mixed, + demAge73to74_Formal, + demAge73to74_Mixed, + demAge75to76_Formal, + demAge75to76_Mixed, + demAge77to78_Formal, + demAge77to78_Mixed, + demAge79to80_Formal, + demAge79to80_Mixed, + demAge81to82_Formal, + demAge81to82_Mixed, + demAge83to84_Formal, + demAge83to84_Mixed, + demAge85plus_Formal, + demAge85plus_Mixed, + // Social care multinomial - new careMarket naming + careMarketFormalL1_Formal, + careMarketFormalL1_Mixed, + careMarketInformalL1_Formal, + careMarketInformalL1_Mixed, + careMarketMixedL1_Formal, + careMarketMixedL1_Mixed, + // Health outcome interaction terms (ordered probit / multinomial health regression) + demAge_Fair, + demAge_Good, + demAge_Low, + demAge_Medium, + demAge_Poor, + demAge_VeryGood, + demAgeSq_Fair, + demAgeSq_Good, + demAgeSq_Low, + demAgeSq_Medium, + demAgeSq_Poor, + demAgeSq_VeryGood, + demMaleFlag_Fair, + demMaleFlag_Formal, + demMaleFlag_Good, + demMaleFlag_Low, + demMaleFlag_Medium, + demMaleFlag_Mixed, + demMaleFlag_Poor, + demMaleFlag_VeryGood, + demCompHhC4CoupleChL1_Fair, + demCompHhC4CoupleChL1_Good, + demCompHhC4CoupleChL1_Poor, + demCompHhC4CoupleChL1_VeryGood, + demCompHhC4SingleNoChL1_Fair, + demCompHhC4SingleNoChL1_Good, + demCompHhC4SingleNoChL1_Poor, + demCompHhC4SingleNoChL1_VeryGood, + demEthnC4Asian_Fair, + demEthnC4Asian_Formal, + demEthnC4Asian_Good, + demEthnC4Asian_Mixed, + demEthnC4Asian_Poor, + demEthnC4Asian_VeryGood, + demEthnC4Black_Formal, + demEthnC4Black_Mixed, + demEthnC4Other_Formal, + demEthnC4Other_Mixed, + demPartnerStatusPartnered_Formal, + demPartnerStatusPartnered_Mixed, + demRgnUKC_Formal, + demRgnUKC_Mixed, + demRgnUKD_Formal, + demRgnUKD_Mixed, + demRgnUKE_Fair, + demRgnUKE_Formal, + demRgnUKE_Good, + demRgnUKE_Low, + demRgnUKE_Medium, + demRgnUKE_Mixed, + demRgnUKE_Poor, + demRgnUKE_VeryGood, + demRgnUKF_Fair, + demRgnUKF_Formal, + demRgnUKF_Good, + demRgnUKF_Mixed, + demRgnUKF_Poor, + demRgnUKF_VeryGood, + demRgnUKG_Fair, + demRgnUKG_Formal, + demRgnUKG_Good, + demRgnUKG_Mixed, + demRgnUKG_Poor, + demRgnUKG_VeryGood, + demRgnUKH_Fair, + demRgnUKH_Formal, + demRgnUKH_Good, + demRgnUKH_Mixed, + demRgnUKH_Poor, + demRgnUKH_VeryGood, + demRgnUKJ_Fair, + demRgnUKJ_Formal, + demRgnUKJ_Good, + demRgnUKJ_Mixed, + demRgnUKJ_Poor, + demRgnUKJ_VeryGood, + demRgnUKK_Fair, + demRgnUKK_Formal, + demRgnUKK_Good, + demRgnUKK_Mixed, + demRgnUKK_Poor, + demRgnUKK_VeryGood, + demRgnUKL_Formal, + demRgnUKL_Mixed, + demRgnUKM_Formal, + demRgnUKM_Low, + demRgnUKM_Medium, + demRgnUKM_Mixed, + demRgnUKN_Fair, + demRgnUKN_Formal, + demRgnUKN_Good, + demRgnUKN_Low, + demRgnUKN_Medium, + demRgnUKN_Mixed, + demRgnUKN_Poor, + demRgnUKN_VeryGood, + demYear_Fair, + demYear_Good, + demYear_Low, + demYear_Medium, + demYear_Poor, + demYear_VeryGood, + demYear2020, + demYear2020_Formal, + demYear2020_Mixed, + demYear2021, + demYear2021_Fair, + demYear2021_Formal, + demYear2021_Good, + demYear2021_Mixed, + demYear2021_Poor, + demYear2021_VeryGood, + // Education interaction terms + eduHighestC4Low_Formal, + eduHighestC4Low_Mixed, + eduHighestC4Medium_Formal, + eduHighestC4Medium_Mixed, + eduHighestC4LowL1_Fair, + eduHighestC4LowL1_Good, + eduHighestC4LowL1_Poor, + eduHighestC4LowL1_VeryGood, + eduHighestC4MediumL1_Fair, + eduHighestC4MediumL1_Good, + eduHighestC4MediumL1_Poor, + eduHighestC4MediumL1_VeryGood, + eduHighestC4NaL1_Fair, + eduHighestC4NaL1_Good, + eduHighestC4NaL1_Poor, + eduHighestC4NaL1_VeryGood, + // Health interaction terms + healthDsblLongtermFlagL1_Fair, + healthDsblLongtermFlagL1_Good, + healthDsblLongtermFlagL1_Poor, + healthDsblLongtermFlagL1_VeryGood, + healthMentalMcsL1_Fair, + healthMentalMcsL1_Good, + healthMentalMcsL1_Poor, + healthMentalMcsL1_VeryGood, + healthPhysicalPcsL1_Fair, + healthPhysicalPcsL1_Good, + healthPhysicalPcsL1_Poor, + healthPhysicalPcsL1_VeryGood, + healthSelfRatedExcellent_Formal, + healthSelfRatedExcellent_Mixed, + healthSelfRatedFair_Formal, + healthSelfRatedFair_Mixed, + healthSelfRatedGood_Formal, + healthSelfRatedGood_Mixed, + healthSelfRatedVeryGood_Formal, + healthSelfRatedVeryGood_Mixed, + // Labour status interaction terms + labStatusC4EmployedL1_Fair, + labStatusC4EmployedL1_Good, + labStatusC4EmployedL1_Poor, + labStatusC4EmployedL1_VeryGood, + labStatusC4RetiredL1_Fair, + labStatusC4RetiredL1_Good, + labStatusC4RetiredL1_Poor, + labStatusC4RetiredL1_VeryGood, + // Income quintile new naming (current and lag, with interaction suffixes) + yHhQuintilesMonthC5Q2, + yHhQuintilesMonthC5Q2L1, + yHhQuintilesMonthC5Q2L1_Fair, + yHhQuintilesMonthC5Q2L1_Good, + yHhQuintilesMonthC5Q2L1_Poor, + yHhQuintilesMonthC5Q2L1_VeryGood, + yHhQuintilesMonthC5Q2_Formal, + yHhQuintilesMonthC5Q2_Mixed, + yHhQuintilesMonthC5Q3, + yHhQuintilesMonthC5Q3L1, + yHhQuintilesMonthC5Q3L1_Fair, + yHhQuintilesMonthC5Q3L1_Good, + yHhQuintilesMonthC5Q3L1_Poor, + yHhQuintilesMonthC5Q3L1_VeryGood, + yHhQuintilesMonthC5Q3_Formal, + yHhQuintilesMonthC5Q3_Mixed, + yHhQuintilesMonthC5Q4, + yHhQuintilesMonthC5Q4L1, + yHhQuintilesMonthC5Q4L1_Fair, + yHhQuintilesMonthC5Q4L1_Good, + yHhQuintilesMonthC5Q4L1_Poor, + yHhQuintilesMonthC5Q4L1_VeryGood, + yHhQuintilesMonthC5Q4_Formal, + yHhQuintilesMonthC5Q4_Mixed, + yHhQuintilesMonthC5Q5, + yHhQuintilesMonthC5Q5L1, + yHhQuintilesMonthC5Q5L1_Fair, + yHhQuintilesMonthC5Q5L1_Good, + yHhQuintilesMonthC5Q5L1_Poor, + yHhQuintilesMonthC5Q5L1_VeryGood, + yHhQuintilesMonthC5Q5_Formal, + yHhQuintilesMonthC5Q5_Mixed, + // Lowercase / legacy-naming aliases + dag_L1, + dagsq_L1, + dgn, + dhh_owned_L1, + dlltsd01_L1, + dnc_L1, + drgn1_L1, + econ_benefits_L1, + financial_distress_L1, + labWageHrlyL1, + labWageHrlyLogL1, + realWageGrowth, + stm, + wealthPrptyFlagL1, + yCapitalPersMonthL1, + yCapitalPersMonthL2, + yEmpPersGrossMonthL1, + yEmpPersGrossMonthL2, + yMiscPersGrossMonthL1, + yNonBenPersGrossMonthL1, + yPensPersGrossMonthL1, + yPensPersGrossMonthL2, + ypncp_L1, + ypnoab_L1, + yPersAndPartnerGrossDiffMonthL1, } public double getDoubleValue(Enum variableID) { switch ((DoublesVariables) variableID) { - case Age -> { - return (double) demAge; - } - case Dag -> { + case Age, Dag, demAge -> { return (double) demAge; } case Dag_L1 -> { return (double) demAge - 1; } - case Dag_sq -> { + case demAgeSq, demAge_Sq, Dag_sq, AgeSquared -> { return (double) demAge * demAge; } case Dag_sq_L1 -> { @@ -3148,10 +3802,6 @@ public double getDoubleValue(Enum variableID) { case Dag_sqCeiling54 -> { return (double) Math.min(demAge, 54) * Math.min(demAge, 54); } - case AgeSquared -> { - // log.debug("age sq"); - return (double) demAge * demAge; - } case AgeCubed -> { // log.debug("age cub"); return (double) demAge * demAge * demAge; @@ -3175,7 +3825,7 @@ public double getDoubleValue(Enum variableID) { return (demAge >= 40 && demAge <= 44) ? 1. : 0.; } case Age45to49 -> { - return (demAge >= 45 && demAge <= 49) ? 1. : 0.; + return (demAge >= 45 && demAge <= MAX_AGE_MATERNITY) ? 1. : 0.; } case Age50to54 -> { return (demAge >= 50 && demAge <= 54) ? 1. : 0.; @@ -3272,31 +3922,13 @@ public double getDoubleValue(Enum variableID) { } case NeedCarePartner -> { Person partner = getPartner(); - return (partner != null && Indicator.True.equals(partner.getNeedSocialCare())) ? 1. : 0.; + return (partner != null && Indicator.True.equals(partner.getCareNeedFlag())) ? 1. : 0.; } case ProvideCare_L1 -> { - return (careProvidedFlagL1 != null && !SocialCareProvision.None.equals(careProvidedFlagL1)) ? 1. : 0.; - } - case CareToPartnerOnly -> { - return (SocialCareProvision.OnlyPartner.equals(careProvidedFlag)) ? 1. : 0.; - } - case CareToPartnerAndOther -> { - return (SocialCareProvision.PartnerAndOther.equals(careProvidedFlag)) ? 1. : 0.; - } - case CareToOtherOnly -> { - return (SocialCareProvision.OnlyOther.equals(careProvidedFlag)) ? 1. : 0.; - } - case CareToPartnerOnly_L1 -> { - return (SocialCareProvision.OnlyPartner.equals(careProvidedFlagL1)) ? 1. : 0.; - } - case CareToPartnerAndOther_L1 -> { - return (SocialCareProvision.PartnerAndOther.equals(careProvidedFlagL1)) ? 1. : 0.; - } - case CareToOtherOnly_L1 -> { - return (SocialCareProvision.OnlyOther.equals(careProvidedFlagL1)) ? 1. : 0.; + return (Indicator.True.equals(careProvidedFlagL1)) ? 1. : 0.; } case ReceiveCare_L1 -> { - return (getTotalHoursSocialCare_L1() > 0.01) ? 1. : 0.; + return (getCareHrsTotalWeekL1() > 0.01) ? 1. : 0.; } case ReceiveCare -> { return (getHoursFormalSocialCare() + getHoursInformalSocialCare() > 0.01) ? 1. : 0.; @@ -3309,10 +3941,10 @@ public double getDoubleValue(Enum variableID) { return (partner.getHoursFormalSocialCare() + partner.getHoursInformalSocialCare() > 0.01) ? 1. : 0.; } case HrsReceivedInformalIHS_L1 -> { - return Parameters.asinh(getHoursInformalSocialCare_L1()); + return Parameters.asinh(getCareHrsInformalWeekL1()); } case HrsReceivedFormalIHS_L1 -> { - return Parameters.asinh(getHoursFormalSocialCare_L1()); + return Parameters.asinh(getCareHrsFormalWeekL1()); } case HrsProvidedInformalIHS_L1 -> { double hours = (careHrsProvidedWeekL1 != null && careHrsProvidedWeekL1 > 0.0) ? careHrsProvidedWeekL1 : 0.0; @@ -3322,10 +3954,10 @@ public double getDoubleValue(Enum variableID) { return (getHoursFormalSocialCare() > 0.01 && getHoursInformalSocialCare() > 0.01) ? 1. : 0.; } case CareMarketMixed_L1, CareMarketMixed_L1_Mixed, CareMarketMixed_L1_Formal -> { - return (getHoursFormalSocialCare_L1() > 0.01 && getHoursInformalSocialCare_L1() > 0.01) ? 1. : 0.; + return (getCareHrsFormalWeekL1() > 0.01 && getCareHrsInformalWeekL1() > 0.01) ? 1. : 0.; } case CareMarketInformal_L1, CareMarketInformal_L1_Mixed, CareMarketInformal_L1_Formal -> { - return (getHoursFormalSocialCare_L1() < 0.01 && getHoursInformalSocialCare_L1() > 0.01) ? 1. : 0.; + return (getCareHrsFormalWeekL1() < 0.01 && getCareHrsInformalWeekL1() > 0.01) ? 1. : 0.; } case CareMarketInformalPartner -> { Person partner = getPartner(); @@ -3335,7 +3967,7 @@ public double getDoubleValue(Enum variableID) { return (partner.getHoursFormalSocialCare() < 0.01 && partner.getHoursInformalSocialCare() > 0.01) ? 1. : 0.; } case CareMarketFormal_L1, CareMarketFormal_L1_Mixed, CareMarketFormal_L1_Formal -> { - return (getHoursFormalSocialCare_L1() > 0.01 && getHoursInformalSocialCare_L1() < 0.01) ? 1. : 0.; + return (getCareHrsFormalWeekL1() > 0.01 && getCareHrsInformalWeekL1() < 0.01) ? 1. : 0.; } case CareMarketFormalPartner -> { Person partner = getPartner(); @@ -3357,7 +3989,7 @@ public double getDoubleValue(Enum variableID) { return (getCareHoursFromOther_L1() > 0.01) ? 1. : 0.; } case CareFromDaughterOnly_L1 -> { - return (getCareHoursFromDaughter_L1() > 0.01 && Math.abs(getHoursInformalSocialCare_L1() - getCareHoursFromDaughter_L1()) < 0.01) ? 1. : 0.; + return (getCareHoursFromDaughter_L1() > 0.01 && Math.abs(getCareHrsInformalWeekL1() - getCareHoursFromDaughter_L1()) < 0.01) ? 1. : 0.; } case CareFromDaughterSon_L1 -> { return (getCareHoursFromDaughter_L1() > 0.01 && getCareHoursFromSon_L1() > 0.01) ? 1. : 0.; @@ -3366,13 +3998,13 @@ public double getDoubleValue(Enum variableID) { return (getCareHoursFromDaughter_L1() > 0.01 && getCareHoursFromOther_L1() > 0.01) ? 1. : 0.; } case CareFromSonOnly_L1 -> { - return (getCareHoursFromSon_L1() > 0.01 && Math.abs(getHoursInformalSocialCare_L1() - getCareHoursFromSon_L1()) < 0.01) ? 1. : 0.; + return (getCareHoursFromSon_L1() > 0.01 && Math.abs(getCareHrsInformalWeekL1() - getCareHoursFromSon_L1()) < 0.01) ? 1. : 0.; } case CareFromSonOther_L1 -> { return (getCareHoursFromSon_L1() > 0.01 && getCareHoursFromOther_L1() > 0.01) ? 1. : 0.; } case CareFromOtherOnly_L1 -> { - return (getCareHoursFromOther_L1() > 0.01 && Math.abs(getHoursInformalSocialCare_L1() - getCareHoursFromOther_L1()) < 0.01) ? 1. : 0.; + return (getCareHoursFromOther_L1() > 0.01 && Math.abs(getCareHrsInformalWeekL1() - getCareHoursFromOther_L1()) < 0.01) ? 1. : 0.; } case CareFromFormal -> { return (careFormalFlag) ? 1. : 0.; @@ -3402,13 +4034,13 @@ public double getDoubleValue(Enum variableID) { return (demAgePartnerDiffL1 != null) ? (double) demAgePartnerDiffL1 : 0.0; } case Dcpst_Single -> { - return (Dcpst.Single.equals(getDcpst())) ? 1.0 : 0.0; + return (Dcpst.Single.equals(getDemPartnerStatus())) ? 1.0 : 0.0; } case Dcpst_Partnered, Partnered, Partnered_Mixed, Partnered_Formal -> { - return (Dcpst.Partnered.equals(getDcpst())) ? 1.0 : 0.0; + return (Dcpst.Partnered.equals(getDemPartnerStatus())) ? 1.0 : 0.0; } case Dcpst_PreviouslyPartnered -> { - return (Dcpst.Single.equals(getDcpst())) ? 1.0 : 0.0; + return (Dcpst.Single.equals(getDemPartnerStatus())) ? 1.0 : 0.0; } case Dcpst_Partnered_L1 -> { if (demPartnerStatusL1 != null) { @@ -3443,14 +4075,14 @@ public double getDoubleValue(Enum variableID) { case D_children_18over -> { return (double) benefitUnit.getIndicatorChildren(18, 99).ordinal(); } - case D_children, D_Children -> { + case D_children, D_Children, demDChild, demDChildL1 -> { return (getNumberChildrenAll() > 0) ? 1. : 0.; } case Dnc_L1 -> { - return (double) getNumberChildrenAll_lag1(); + return (double) getNumberChildrenAllL1(); } case Dnc02_L1 -> { - return (double) getNumberChildren02_lag1(); + return (double) getNumberChildren02L1(); } case Dnc017 -> { return (double) getNumberChildren017(); @@ -3499,28 +4131,28 @@ public double getDoubleValue(Enum variableID) { } case Dhesp_Excellent -> { Person partner = getPartner(); - return (partner != null && Dhe.Excellent.equals(partner.getDhe())) ? 1. : 0.; + return (partner != null && Dhe.Excellent.equals(partner.getHealthSelfRated())) ? 1. : 0.; } case Dhesp_VeryGood_L1 -> { return (Dhe.VeryGood.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } case Dhesp_VeryGood -> { Person partner = getPartner(); - return (partner != null && Dhe.VeryGood.equals(partner.getDhe())) ? 1. : 0.; + return (partner != null && Dhe.VeryGood.equals(partner.getHealthSelfRated())) ? 1. : 0.; } case Dhesp_Good_L1 -> { return (Dhe.Good.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } case Dhesp_Good -> { Person partner = getPartner(); - return (partner != null && Dhe.Good.equals(partner.getDhe())) ? 1. : 0.; + return (partner != null && Dhe.Good.equals(partner.getHealthSelfRated())) ? 1. : 0.; } case Dhesp_Fair_L1 -> { return (Dhe.Fair.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; } case Dhesp_Fair -> { Person partner = getPartner(); - return (partner != null && Dhe.Fair.equals(partner.getDhe())) ? 1. : 0.; + return (partner != null && Dhe.Fair.equals(partner.getHealthSelfRated())) ? 1. : 0.; } case Dhesp_Poor_L1 -> { return (Dhe.Poor.equals(healthPartnerSelfRatedL1)) ? 1. : 0.; @@ -3789,7 +4421,7 @@ else throw new IllegalArgumentException( case Dhhtp_c4_SingleNoChildren_L1, L_Dhhtp_c4_SingleNoChildren -> { return (Dhhtp_c4.SingleNoChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; } - case Dhhtp_c4_SingleChildren_L1, L_Dhhtp_c4_SingleChildren, Dhhtp_c4_SingleChildren_L1_ -> { + case Dhhtp_c4_SingleChildren_L1, L_Dhhtp_c4_SingleChildren, Dhhtp_c4_SingleChildren_L1_, demCompHhC4SingleChL1 -> { return (Dhhtp_c4.SingleChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; } case Dhhtp_c8_2_L1 -> { @@ -3883,19 +4515,19 @@ else throw new IllegalArgumentException( return getGrossEarningsYearly(); } case GrossLabourIncomeMonthly -> { - return getCovidModuleGrossLabourIncome_Baseline(); + return getCovidYLabGross(); } - case InverseMillsRatio -> { + case InverseMillsRatio, InvMillsRatio -> { return getInverseMillsRatio(); } case Ld_children_2under -> { - return (getNumberChildren02_lag1() > 0) ? 1.0 : 0.0; + return (getNumberChildren02L1() > 0) ? 1.0 : 0.0; } case Ld_children_3under -> { - return benefitUnit.getIndicatorChildren03_lag1().ordinal(); + return benefitUnit.getDem0to3L1().ordinal(); } case Ld_children_4_12 -> { - return benefitUnit.getIndicatorChildren412_lag1().ordinal(); + return benefitUnit.getDem4to12L1().ordinal(); } case Lemployed -> { if (labC4L1 != null) //Problem will null pointer exceptions for those who are inactive and then become active as their lagged employment status is null! @@ -3961,7 +4593,7 @@ else throw new IllegalArgumentException( else return 0.; } - case Lessp_c3_NotEmployed_L1 -> { + case Lessp_c3_NotEmployed_L1, labStatusPartnerC3NotEmployedL1 -> { Person partner = getPartner(); if (partner != null && partner.labC4L1 != null) return (partner.labC4L1.equals(Les_c4.NotEmployed) || partner.labC4L1.equals(Les_c4.Retired)) ? 1. : 0.; @@ -4010,7 +4642,7 @@ else throw new IllegalArgumentException( else return 0.; } - case Liwwh -> { + case Liwwh, labWorkHist -> { return (double) labEmpNyear; } case NotEmployed_L1 -> { @@ -4045,7 +4677,7 @@ else throw new IllegalArgumentException( } else return 0.; } case UnemploymentRate -> { - return getUnemploymentRateByGenderEducationAgeYear(getDemMaleFlag(), getDeh_c4(), getDemAge(), getYear()); + return getUnemploymentRateByGenderEducationAgeYear(getDemMaleFlag(), getEduHighestC4(), getDemAge(), getYear()); } case Union -> { return HouseholdStatus.Couple.equals(getHouseholdStatus()) ? 1. : 0.; @@ -4073,37 +4705,37 @@ else throw new IllegalArgumentException( case Year2013, Y2013, Y2013_ -> { return (getYear() == 2013) ? 1. : 0.; } - case Year2014, Y2014, Y2014_ -> { + case Year2014, Y2014, Y2014_, demYear2014 -> { return (getYear() == 2014) ? 1. : 0.; } - case Year2015, Y2015 -> { + case Year2015, Y2015, demYear2015 -> { return (getYear() == 2015) ? 1. : 0.; } - case Year2016, Y2016 -> { + case Year2016, Y2016, demYear2016 -> { return (getYear() == 2016) ? 1. : 0.; } - case Year2017, Y2017 -> { + case Year2017, Y2017, demYear2017 -> { return (getYear() == 2017) ? 1. : 0.; } - case Year2018, Y2018 -> { + case Year2018, Y2018, demYear2018 -> { return (getYear() == 2018) ? 1. : 0.; } - case Year2019, Y2019 -> { + case Year2019, Y2019, demYear2019 -> { return (getYear() == 2019) ? 1. : 0.; } - case Year2020, Y2020, Y2020_Mixed, Y2020_Formal -> { + case Year2020, Y2020, Y2020_Mixed, Y2020_Formal, demYear2020 -> { return (getYear() == 2020) ? 1. : 0.; } - case Year2021, Y2021, Y2021_Mixed, Y2021_Formal -> { + case Year2021, Y2021, Y2021_Mixed, Y2021_Formal, demYear2021 -> { return (getYear() == 2021) ? 1. : 0.; } - case Year2022, Y2022 -> { + case Year2022, Y2022, demYear2022 -> { return (getYear() == 2022) ? 1. : 0.; } - case Year2023, Y2023 -> { + case Year2023, Y2023, demYear2023 -> { return (getYear() == 2023) ? 1. : 0.; } - case Year2024, Y2024 -> { + case Year2024, Y2024, demYear2024 -> { return (getYear() == 2024) ? 1. : 0.; } case Y2012_Poor -> { @@ -4427,35 +5059,35 @@ else throw new IllegalArgumentException( case Year2079 -> { return (getYear() >= 2079) ? 1. : 0.; } - case Year_transformed -> { + case Year_transformed, demYearTransformed -> { return (Parameters.isFixTimeTrend && getYear() >= Parameters.timeTrendStopsIn) ? (double) Parameters.timeTrendStopsIn - 2000 : (double) getYear() - 2000; } case Year_transformed_monetary -> { return (double) model.getTimeTrendStopsInMonetaryProcesses() - 2000; } //Note: this returns base price year - 2000 (e.g. 17 for 2017 as base price year) and monetary variables are then uprated from 2017 level to the simulated year case Ydses_c5_Q2_L1, L_Ydses_c5_Q2, Ydses_c5_L1 -> { - return (Ydses_c5.Q2.equals(getYdses_c5_lag1())) ? 1.0 : 0.0; + return (Ydses_c5.Q2.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; } case Ydses_c5_Q3_L1, L_Ydses_c5_Q3 -> { - return (Ydses_c5.Q3.equals(getYdses_c5_lag1())) ? 1.0 : 0.0; + return (Ydses_c5.Q3.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; } case Ydses_c5_Q4_L1, L_Ydses_c5_Q4 -> { - return (Ydses_c5.Q4.equals(getYdses_c5_lag1())) ? 1.0 : 0.0; + return (Ydses_c5.Q4.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; } case Ydses_c5_Q5_L1, L_Ydses_c5_Q5 -> { - return (Ydses_c5.Q5.equals(getYdses_c5_lag1())) ? 1.0 : 0.0; + return (Ydses_c5.Q5.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; } case HHincomeQ2, HHincomeQ2_Mixed, HHincomeQ2_Formal -> { - return (Ydses_c5.Q2.equals(getYdses_c5_current())) ? 1.0 : 0.0; + return (Ydses_c5.Q2.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; } case HHincomeQ3, HHincomeQ3_Mixed, HHincomeQ3_Formal -> { - return (Ydses_c5.Q3.equals(getYdses_c5_current())) ? 1.0 : 0.0; + return (Ydses_c5.Q3.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; } case HHincomeQ4, HHincomeQ4_Mixed, HHincomeQ4_Formal -> { - return (Ydses_c5.Q4.equals(getYdses_c5_current())) ? 1.0 : 0.0; + return (Ydses_c5.Q4.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; } case HHincomeQ5, HHincomeQ5_Mixed, HHincomeQ5_Formal -> { - return (Ydses_c5.Q5.equals(getYdses_c5_current())) ? 1.0 : 0.0; + return (Ydses_c5.Q5.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; } case Ypnbihs_dv_L1 -> { if (yNonBenPersGrossMonthL1 != null) { @@ -4504,22 +5136,6 @@ else throw new IllegalArgumentException( case Yplgrs_dv_L3 -> { return yEmpPersGrossMonthL3; } - case Ld_children_3underIT -> { - return model.getCountry().equals(Country.IT) ? benefitUnit.getIndicatorChildren03_lag1().ordinal() : 0.; - } - case Ld_children_4_12IT -> { - return model.getCountry().equals(Country.IT) ? benefitUnit.getIndicatorChildren412_lag1().ordinal() : 0.; - } - case LunionIT -> { - return (demStatusHhL1.equals(HouseholdStatus.Couple) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; - } - case EduMediumIT -> { - return (eduHighestC4.equals(Education.Medium) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; - } - case EduHighIT -> { - return (eduHighestC4.equals(Education.High) && (getRegion().toString().startsWith(Country.IT.toString()))) ? 1. : 0.; - } - case Reached_Retirement_Age -> { int retirementAge; if (demMaleFlag.equals(Gender.Female)) { @@ -4571,18 +5187,18 @@ else throw new IllegalArgumentException( return (labC4.equals(Les_c4.NotEmployed) && labC4L1.equals(Les_c4.NotEmployed) && healthDsblLongtermFlag.equals(Indicator.False) && healthDsblLongtermFlagL1.equals(Indicator.False)) ? 1. : 0.; } case NonPovertyToPoverty -> { - if (benefitUnit.getAtRiskOfPoverty_lag1() != null) { - return (benefitUnit.getAtRiskOfPoverty_lag1() == 0 && benefitUnit.getAtRiskOfPoverty() == 1) ? 1. : 0.; + if (benefitUnit.getYPvrtyFlagL1() != null) { + return (benefitUnit.getYPvrtyFlagL1() == 0 && benefitUnit.getYPvrtyFlag() == 1) ? 1. : 0.; } else return 0.; } case PovertyToNonPoverty -> { - if (benefitUnit.getAtRiskOfPoverty_lag1() != null) { - return (benefitUnit.getAtRiskOfPoverty_lag1() == 1 && benefitUnit.getAtRiskOfPoverty() == 0) ? 1. : 0.; + if (benefitUnit.getYPvrtyFlagL1() != null) { + return (benefitUnit.getYPvrtyFlagL1() == 1 && benefitUnit.getYPvrtyFlag() == 0) ? 1. : 0.; } else return 0.; } case PersistentPoverty -> { - if (benefitUnit.getAtRiskOfPoverty_lag1() != null) { - return (benefitUnit.getAtRiskOfPoverty_lag1() == 1 && benefitUnit.getAtRiskOfPoverty() == 1) ? 1. : 0.; + if (benefitUnit.getYPvrtyFlagL1() != null) { + return (benefitUnit.getYPvrtyFlagL1() == 1 && benefitUnit.getYPvrtyFlag() == 1) ? 1. : 0.; } else return 0.; } case RealIncomeChange -> { @@ -4633,7 +5249,7 @@ else throw new IllegalArgumentException( case Pt -> { return (getLabourSupplyHoursWeekly() > 0 && getLabourSupplyHoursWeekly() < Parameters.MIN_HOURS_FULL_TIME_EMPLOYED) ? 1. : 0.; } - case L1_log_hourly_wage, Hourly_wage_L1 -> { + case L1_log_hourly_wage, Hourly_wage_L1, labWageHrlyLogL1 -> { if (labWageFullTimeHrlyL1 == null) { throw new RuntimeException("call to evaluate lag potential hourly earnings before initialisation"); } else { @@ -4660,22 +5276,6 @@ else throw new IllegalArgumentException( case Deh_c3_Medium_Dag -> { return (Education.Medium.equals(eduHighestC4)) ? demAge : 0.0; } - //Italy - case ITC -> { - return (getRegion().equals(Region.ITC)) ? 1. : 0.; - } - case ITF -> { - return (getRegion().equals(Region.ITF)) ? 1. : 0.; - } - case ITG -> { - return (getRegion().equals(Region.ITG)) ? 1. : 0.; - } - case ITH -> { - return (getRegion().equals(Region.ITH)) ? 1. : 0.; - } - case ITI -> { - return (getRegion().equals(Region.ITI)) ? 1. : 0.; - } //UK case UKC, UKC_Mixed, UKC_Formal, UKC_ -> { return Region.UKC.equals(getRegion()) ? 1.0 : 0.0; @@ -4761,7 +5361,7 @@ else throw new IllegalArgumentException( return (getCovidSEISSReceivedFlag().equals(Indicator.True)) ? 1. : 0.; } case Les_c7_Covid_Furlough_L1 -> { - return (getLes_c7_covid_lag1().equals(Les_c7_covid.FurloughedFlex) || getLes_c7_covid_lag1().equals(Les_c7_covid.FurloughedFull)) ? 1. : 0.; + return (getLabC7CovidL1().equals(Les_c7_covid.FurloughedFlex) || getLabC7CovidL1().equals(Les_c7_covid.FurloughedFull)) ? 1. : 0.; } case Blpay_Q2 -> { return (getCovidYLabGrossXt5().equals(Quintiles.Q2)) ? 1. : 0.; @@ -4778,7 +5378,7 @@ else throw new IllegalArgumentException( case Dgn_baseline -> { return 0.; } - case RealWageGrowth -> { // Note: the values provided to the wage regression must be rebased to 2015, the default BASE_PRICE_YEAR. + case RealWageGrowth, realWageGrowth -> { // Note: the values provided to the wage regression must be rebased to 2015, the default BASE_PRICE_YEAR. return Parameters.getTimeSeriesIndex(getYear(), UpratingCase.Earnings); } case RealGDPGrowth -> { @@ -4821,56 +5421,956 @@ else throw new IllegalArgumentException( case Cut12 -> { return 0.; } - default -> { - throw new IllegalArgumentException("Unsupported regressor " + variableID.name() + " in Person#getDoubleValue"); + + case Age_10, demAge_10 -> { + return (demAge == 10) ? 1.0 : 0.0; } - } - } + case Age_11, demAge_11 -> { + return (demAge == 11) ? 1.0 : 0.0; + } + case Age_12, demAge_12 -> { + return (demAge == 12) ? 1.0 : 0.0; + } + case Age_13, demAge_13 -> { + return (demAge == 13) ? 1.0 : 0.0; + } - //////////////////////////////////////////////////////////////////////////////// - // - // Override equals and hashCode to make unique BenefitUnit determined by Key.getId() - // - //////////////////////////////////////////////////////////////////////////////// + case Age_14, demAge_14 -> { + return (demAge == 14) ? 1.0 : 0.0; + } - @Override - public boolean equals(Object o) { + case Age_15 -> { + return (demAge == 15) ? 1.0 : 0.0; + } - if (o == this) return true; - if (!(o instanceof Person)) { - return false; - } + case Age_16 -> { + return (demAge == 16) ? 1.0 : 0.0; + } - Person p = (Person) o; + case Age_2 -> { + return (demAge == 2) ? 1.0 : 0.0; + } - boolean idIsEqual = new EqualsBuilder() - .append(key.getId(), p.key.getId()) //Add more fields to compare to check for equality if desired - .isEquals(); + case Age_3 -> { + return (demAge == 3) ? 1.0 : 0.0; + } - return idIsEqual; - } + case Age_4 -> { + return (demAge == 4) ? 1.0 : 0.0; + } - @Override - public int hashCode() { - return new HashCodeBuilder(17, 37) - .append(key.getId()) - .toHashCode(); - } + case Age_5 -> { + return (demAge == 5) ? 1.0 : 0.0; + } + case Age_6 -> { + return (demAge == 6) ? 1.0 : 0.0; + } - /** - * - * Returns a defensive copy of the field. - * The caller of this method can do anything they want with the - * returned Key object, without affecting the internals of this - * class in any way. - * - */ - public PanelEntityKey getKey() { - return new PanelEntityKey(key.getId()); + case Age_7 -> { + return (demAge == 7) ? 1.0 : 0.0; + } + + case Age_8 -> { + return (demAge == 8) ? 1.0 : 0.0; + } + + case Age_9 -> { + return (demAge == 9) ? 1.0 : 0.0; + } + + case Dag_c -> { + return getDoubleValue(DoublesVariables.Dag); + } + + case Ded_Dcpst_Single_L1 -> { + return getDoubleValue(DoublesVariables.Ded_Dcpst_Single); + } + + case Dhe_1 -> { + return getDoubleValue(DoublesVariables.Dhe); + } + + case careMarketFormalL1 -> { + return getDoubleValue(DoublesVariables.CareMarketFormal_L1); + } + + case careMarketFormalPartner -> { + return getDoubleValue(DoublesVariables.CareMarketFormalPartner); + } + + case careMarketInformalL1 -> { + return getDoubleValue(DoublesVariables.CareMarketInformal_L1); + } + + case careMarketInformalPartner -> { + return getDoubleValue(DoublesVariables.CareMarketInformalPartner); + } + + case careMarketMixed -> { + return getDoubleValue(DoublesVariables.CareMarketMixed); + } + + case careMarketMixedL1 -> { + return getDoubleValue(DoublesVariables.CareMarketMixed_L1); + } + + case demAge20to24 -> { + return getDoubleValue(DoublesVariables.Age20to24); + } + + case demAge25to29 -> { + return getDoubleValue(DoublesVariables.Age25to29); + } + + case demAge30to34 -> { + return getDoubleValue(DoublesVariables.Age30to34); + } + + case demAge35to39 -> { + return getDoubleValue(DoublesVariables.Age35to39); + } + + case demAge40to44 -> { + return getDoubleValue(DoublesVariables.Age40to44); + } + + case demAge45to49 -> { + return getDoubleValue(DoublesVariables.Age45to49); + } + + case demAge50to54 -> { + return getDoubleValue(DoublesVariables.Age50to54); + } + + case demAge55to59 -> { + return getDoubleValue(DoublesVariables.Age55to59); + } + + case demAge60to64 -> { + return getDoubleValue(DoublesVariables.Age60to64); + } + + case demAge65to69 -> { + return getDoubleValue(DoublesVariables.Age65to69); + } + + case demAge67to68 -> { + return getDoubleValue(DoublesVariables.Age67to68); + } + + case demAge69to70 -> { + return getDoubleValue(DoublesVariables.Age69to70); + } + + case demAge70to74 -> { + return getDoubleValue(DoublesVariables.Age70to74); + } + + case demAge71to72 -> { + return getDoubleValue(DoublesVariables.Age71to72); + } + + case demAge73to74 -> { + return getDoubleValue(DoublesVariables.Age73to74); + } + + case demAge75to76 -> { + return getDoubleValue(DoublesVariables.Age75to76); + } + + case demAge75to79 -> { + return getDoubleValue(DoublesVariables.Age75to79); + } + + case demAge77to78 -> { + return getDoubleValue(DoublesVariables.Age77to78); + } + + case demAge79to80 -> { + return getDoubleValue(DoublesVariables.Age79to80); + } + + case demAge80to84 -> { + return getDoubleValue(DoublesVariables.Age80to84); + } + + case demAge81to82 -> { + return getDoubleValue(DoublesVariables.Age81to82); + } + + case demAge83to84 -> { + return getDoubleValue(DoublesVariables.Age83to84); + } + + case demAge85plus -> { + return getDoubleValue(DoublesVariables.Age85plus); + } + + case fertilityRate -> { + return getDoubleValue(DoublesVariables.FertilityRate); + } + + case need_care -> { + return getDoubleValue(DoublesVariables.NeedCare); + } + + case receive_care -> { + return getDoubleValue(DoublesVariables.ReceiveCare); + } + + // ----------------------------------------------------------------------- + // social care age interaction variants + // ----------------------------------------------------------------------- + case demAge67to68_Formal, demAge67to68_Mixed -> { + return getDoubleValue(DoublesVariables.demAge67to68); + } + case demAge69to70_Formal, demAge69to70_Mixed -> { + return getDoubleValue(DoublesVariables.demAge69to70); + } + case demAge71to72_Formal, demAge71to72_Mixed -> { + return getDoubleValue(DoublesVariables.demAge71to72); + } + case demAge73to74_Formal, demAge73to74_Mixed -> { + return getDoubleValue(DoublesVariables.demAge73to74); + } + case demAge75to76_Formal, demAge75to76_Mixed -> { + return getDoubleValue(DoublesVariables.demAge75to76); + } + case demAge77to78_Formal, demAge77to78_Mixed -> { + return getDoubleValue(DoublesVariables.demAge77to78); + } + case demAge79to80_Formal, demAge79to80_Mixed -> { + return getDoubleValue(DoublesVariables.demAge79to80); + } + case demAge81to82_Formal, demAge81to82_Mixed -> { + return getDoubleValue(DoublesVariables.demAge81to82); + } + case demAge83to84_Formal, demAge83to84_Mixed -> { + return getDoubleValue(DoublesVariables.demAge83to84); + } + case demAge85plus_Formal, demAge85plus_Mixed -> { + return getDoubleValue(DoublesVariables.demAge85plus); + } + + // ----------------------------------------------------------------------- + // careMarket new-naming interaction variants + // ----------------------------------------------------------------------- + case careMarketFormalL1_Formal, careMarketFormalL1_Mixed -> { + return getDoubleValue(DoublesVariables.CareMarketFormal_L1); + } + case careMarketInformalL1_Formal, careMarketInformalL1_Mixed -> { + return getDoubleValue(DoublesVariables.CareMarketInformal_L1); + } + case careMarketMixedL1_Formal, careMarketMixedL1_Mixed -> { + return getDoubleValue(DoublesVariables.CareMarketMixed_L1); + } + + // ----------------------------------------------------------------------- + // demAge interaction terms + // ----------------------------------------------------------------------- + case demAge_Fair, demAge_Good, demAge_Low, demAge_Medium, demAge_Poor, demAge_VeryGood -> { + return (double) demAge; + } + case demAgeSq_Fair, demAgeSq_Good, demAgeSq_Low, demAgeSq_Medium, demAgeSq_Poor, demAgeSq_VeryGood -> { + return (double) demAge * demAge; + } + + // ----------------------------------------------------------------------- + // demMaleFlag interaction terms + // ----------------------------------------------------------------------- + case demMaleFlag_Fair, demMaleFlag_Formal, demMaleFlag_Good, demMaleFlag_Low, + demMaleFlag_Medium, demMaleFlag_Mixed, demMaleFlag_Poor, demMaleFlag_VeryGood -> { + return (Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + + // ----------------------------------------------------------------------- + // demCompHhC4 interaction terms + // ----------------------------------------------------------------------- + case demCompHhC4CoupleChL1_Fair, demCompHhC4CoupleChL1_Good, + demCompHhC4CoupleChL1_Poor, demCompHhC4CoupleChL1_VeryGood -> { + return (Dhhtp_c4.CoupleChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; + } + case demCompHhC4SingleNoChL1_Fair, demCompHhC4SingleNoChL1_Good, + demCompHhC4SingleNoChL1_Poor, demCompHhC4SingleNoChL1_VeryGood -> { + return (Dhhtp_c4.SingleNoChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; + } + + // ----------------------------------------------------------------------- + // demEthnC4 interaction terms + // ----------------------------------------------------------------------- + case demEthnC4Asian_Fair, demEthnC4Asian_Formal, demEthnC4Asian_Good, + demEthnC4Asian_Mixed, demEthnC4Asian_Poor, demEthnC4Asian_VeryGood -> { + return demEthnC6.equals(Ethnicity.Asian) ? 1. : 0.; + } + case demEthnC4Black_Formal, demEthnC4Black_Mixed -> { + return demEthnC6.equals(Ethnicity.Black) ? 1. : 0.; + } + case demEthnC4Other_Formal, demEthnC4Other_Mixed -> { + return (demEthnC6.equals(Ethnicity.Other) || demEthnC6.equals(Ethnicity.Missing)) ? 1. : 0.; + } + + // ----------------------------------------------------------------------- + // demPartnerStatus interaction terms + // ----------------------------------------------------------------------- + case demPartnerStatusPartnered_Formal, demPartnerStatusPartnered_Mixed -> { + return (Dcpst.Partnered.equals(getDemPartnerStatus())) ? 1.0 : 0.0; + } + + // ----------------------------------------------------------------------- + // region interaction terms + // ----------------------------------------------------------------------- + case demRgnUKC_Formal, demRgnUKC_Mixed -> { + return Region.UKC.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKD_Formal, demRgnUKD_Mixed -> { + return Region.UKD.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKE_Fair, demRgnUKE_Formal, demRgnUKE_Good, demRgnUKE_Low, + demRgnUKE_Medium, demRgnUKE_Mixed, demRgnUKE_Poor, demRgnUKE_VeryGood -> { + return Region.UKE.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKF_Fair, demRgnUKF_Formal, demRgnUKF_Good, + demRgnUKF_Mixed, demRgnUKF_Poor, demRgnUKF_VeryGood -> { + return Region.UKF.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKG_Fair, demRgnUKG_Formal, demRgnUKG_Good, + demRgnUKG_Mixed, demRgnUKG_Poor, demRgnUKG_VeryGood -> { + return Region.UKG.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKH_Fair, demRgnUKH_Formal, demRgnUKH_Good, + demRgnUKH_Mixed, demRgnUKH_Poor, demRgnUKH_VeryGood -> { + return Region.UKH.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKJ_Fair, demRgnUKJ_Formal, demRgnUKJ_Good, + demRgnUKJ_Mixed, demRgnUKJ_Poor, demRgnUKJ_VeryGood -> { + return Region.UKJ.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKK_Fair, demRgnUKK_Formal, demRgnUKK_Good, + demRgnUKK_Mixed, demRgnUKK_Poor, demRgnUKK_VeryGood -> { + return Region.UKK.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKL_Formal, demRgnUKL_Mixed -> { + return Region.UKL.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKM_Formal, demRgnUKM_Low, demRgnUKM_Medium, demRgnUKM_Mixed -> { + return Region.UKM.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKN_Fair, demRgnUKN_Formal, demRgnUKN_Good, demRgnUKN_Low, + demRgnUKN_Medium, demRgnUKN_Mixed, demRgnUKN_Poor, demRgnUKN_VeryGood -> { + return Region.UKN.equals(getRegion()) ? 1.0 : 0.0; + } + + // ----------------------------------------------------------------------- + // demYear interaction terms + // ----------------------------------------------------------------------- + case demYear_Fair, demYear_Good, demYear_Low, demYear_Medium, demYear_Poor, demYear_VeryGood -> { + return (Parameters.isFixTimeTrend && getYear() >= Parameters.timeTrendStopsIn) ? (double) Parameters.timeTrendStopsIn : (double) getYear(); + } + case demYear2020_Formal, demYear2020_Mixed -> { + return (getYear() == 2020) ? 1. : 0.; + } + case demYear2021_Fair, demYear2021_Formal, demYear2021_Good, + demYear2021_Mixed, demYear2021_Poor, demYear2021_VeryGood -> { + return (getYear() == 2021) ? 1. : 0.; + } + + // ----------------------------------------------------------------------- + // education interaction terms + // ----------------------------------------------------------------------- + case eduHighestC4Low_Formal, eduHighestC4Low_Mixed -> { + return (Education.Low.equals(eduHighestC4)) ? 1.0 : 0.0; + } + case eduHighestC4Medium_Formal, eduHighestC4Medium_Mixed -> { + return (Education.Medium.equals(eduHighestC4)) ? 1.0 : 0.0; + } + case eduHighestC4LowL1_Fair, eduHighestC4LowL1_Good, eduHighestC4LowL1_Poor, eduHighestC4LowL1_VeryGood -> { + return (Education.Low.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case eduHighestC4MediumL1_Fair, eduHighestC4MediumL1_Good, eduHighestC4MediumL1_Poor, eduHighestC4MediumL1_VeryGood -> { + return (Education.Medium.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case eduHighestC4NaL1_Fair, eduHighestC4NaL1_Good, eduHighestC4NaL1_Poor, eduHighestC4NaL1_VeryGood -> { + return (Education.InEducation.equals(eduHighestC4L1) || Indicator.True.equals(eduSpellFlagL1)) ? 1.0 : 0.0; + } + + // ----------------------------------------------------------------------- + // health interaction terms + // ----------------------------------------------------------------------- + case healthDsblLongtermFlagL1_Fair, healthDsblLongtermFlagL1_Good, + healthDsblLongtermFlagL1_Poor, healthDsblLongtermFlagL1_VeryGood -> { + return Indicator.True.equals(healthDsblLongtermFlagL1) ? 1. : 0.; + } + case healthMentalMcsL1_Fair, healthMentalMcsL1_Good, healthMentalMcsL1_Poor, healthMentalMcsL1_VeryGood -> { + return (healthMentalMcsL1 != null && healthMentalMcsL1 >= 0.) ? healthMentalMcsL1 : 0.; + } + case healthPhysicalPcsL1_Fair, healthPhysicalPcsL1_Good, healthPhysicalPcsL1_Poor, healthPhysicalPcsL1_VeryGood -> { + return (healthPhysicalPcsL1 != null && healthPhysicalPcsL1 >= 0.) ? healthPhysicalPcsL1 : 0.; + } + case healthSelfRatedExcellent_Formal, healthSelfRatedExcellent_Mixed -> { + return (Dhe.Excellent.equals(healthSelfRated)) ? 1. : 0.; + } + case healthSelfRatedFair_Formal, healthSelfRatedFair_Mixed -> { + return (Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case healthSelfRatedGood_Formal, healthSelfRatedGood_Mixed -> { + return (Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case healthSelfRatedVeryGood_Formal, healthSelfRatedVeryGood_Mixed -> { + return (Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + + // ----------------------------------------------------------------------- + // labour status interaction terms + // ----------------------------------------------------------------------- + case labStatusC4EmployedL1_Fair, labStatusC4EmployedL1_Good, + labStatusC4EmployedL1_Poor, labStatusC4EmployedL1_VeryGood -> { + return (Les_c4.EmployedOrSelfEmployed.equals(labC4L1)) ? 1.0 : 0.0; + } + case labStatusC4RetiredL1_Fair, labStatusC4RetiredL1_Good, + labStatusC4RetiredL1_Poor, labStatusC4RetiredL1_VeryGood -> { + return (Les_c4.Retired.equals(labC4L1)) ? 1. : 0.; + } + + // ----------------------------------------------------------------------- + // income quintile new naming + // ----------------------------------------------------------------------- + case yHhQuintilesMonthC5Q2, yHhQuintilesMonthC5Q2_Formal, yHhQuintilesMonthC5Q2_Mixed -> { + return (Ydses_c5.Q2.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; + } + case yHhQuintilesMonthC5Q2L1, yHhQuintilesMonthC5Q2L1_Fair, yHhQuintilesMonthC5Q2L1_Good, + yHhQuintilesMonthC5Q2L1_Poor, yHhQuintilesMonthC5Q2L1_VeryGood -> { + return (Ydses_c5.Q2.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; + } + case yHhQuintilesMonthC5Q3, yHhQuintilesMonthC5Q3_Formal, yHhQuintilesMonthC5Q3_Mixed -> { + return (Ydses_c5.Q3.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; + } + case yHhQuintilesMonthC5Q3L1, yHhQuintilesMonthC5Q3L1_Fair, yHhQuintilesMonthC5Q3L1_Good, + yHhQuintilesMonthC5Q3L1_Poor, yHhQuintilesMonthC5Q3L1_VeryGood -> { + return (Ydses_c5.Q3.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; + } + case yHhQuintilesMonthC5Q4, yHhQuintilesMonthC5Q4_Formal, yHhQuintilesMonthC5Q4_Mixed -> { + return (Ydses_c5.Q4.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; + } + case yHhQuintilesMonthC5Q4L1, yHhQuintilesMonthC5Q4L1_Fair, yHhQuintilesMonthC5Q4L1_Good, + yHhQuintilesMonthC5Q4L1_Poor, yHhQuintilesMonthC5Q4L1_VeryGood -> { + return (Ydses_c5.Q4.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; + } + case yHhQuintilesMonthC5Q5, yHhQuintilesMonthC5Q5_Formal, yHhQuintilesMonthC5Q5_Mixed -> { + return (Ydses_c5.Q5.equals(getYHhQuintilesMonthC5Current())) ? 1.0 : 0.0; + } + case yHhQuintilesMonthC5Q5L1, yHhQuintilesMonthC5Q5L1_Fair, yHhQuintilesMonthC5Q5L1_Good, + yHhQuintilesMonthC5Q5L1_Poor, yHhQuintilesMonthC5Q5L1_VeryGood -> { + return (Ydses_c5.Q5.equals(getYHhQuintilesMonthC5L1())) ? 1.0 : 0.0; + } + + // ----------------------------------------------------------------------- + // lowercase / legacy-naming aliases + // ----------------------------------------------------------------------- + case dag_L1 -> { + return (double) demAge - 1; + } + case dagsq_L1 -> { + return (double) (demAge - 1) * (demAge - 1); + } + case dgn -> { + return (Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case dhh_owned_L1 -> { + return demPrptyFlagL1 ? 1. : 0.; + } + case dlltsd01_L1 -> { + return Indicator.True.equals(healthDsblLongtermFlagL1) ? 1. : 0.; + } + case dnc_L1 -> { + return (double) getNumberChildrenAllL1(); + } + case drgn1_L1 -> { + return (double) getRegion().getValue(); + } + case econ_benefits_L1 -> { + return isReceivesBenefitsFlag_L1() ? 1. : 0.; + } + case financial_distress_L1 -> { + return (yFinDstrssFlag != null && yFinDstrssFlag) ? 1. : 0.; + } + case labWageHrlyL1 -> { + return (labWageFullTimeHrlyL1 != null && labWageFullTimeHrlyL1 > 0) ? labWageFullTimeHrlyL1 : 0.; + } + case stm -> { + return (Parameters.isFixTimeTrend && getYear() >= Parameters.timeTrendStopsIn) ? (double) Parameters.timeTrendStopsIn : (double) getYear(); + } + case wealthPrptyFlagL1 -> { + return demPrptyFlagL1 ? 1. : 0.; + } + case yCapitalPersMonthL1 -> { + return yCapitalPersMonthL1 != null ? yCapitalPersMonthL1 : 0.; + } + case yCapitalPersMonthL2 -> { + return yCapitalPersMonthL2 != null ? yCapitalPersMonthL2 : 0.; + } + case yEmpPersGrossMonthL1 -> { + return yEmpPersGrossMonthL1 != null ? yEmpPersGrossMonthL1 : 0.; + } + case yEmpPersGrossMonthL2 -> { + return yEmpPersGrossMonthL2 != null ? yEmpPersGrossMonthL2 : 0.; + } + case yMiscPersGrossMonthL1 -> { + return yMiscPersGrossMonthL1 != null ? yMiscPersGrossMonthL1 : 0.; + } + case yNonBenPersGrossMonthL1 -> { + return yNonBenPersGrossMonthL1 != null ? yNonBenPersGrossMonthL1 : 0.; + } + case yPensPersGrossMonthL1 -> { + return yPensPersGrossMonthL1 != null ? yPensPersGrossMonthL1 : 0.; + } + case yPensPersGrossMonthL2 -> { + return yPensPersGrossMonthL2 != null ? yPensPersGrossMonthL2 : 0.; + } + case ypncp_L1 -> { + return yCapitalPersMonthL1 != null ? yCapitalPersMonthL1 : 0.; + } + case ypnoab_L1 -> { + return yPensPersGrossMonthL1 != null ? yPensPersGrossMonthL1 : 0.; + } + case yPersAndPartnerGrossDiffMonthL1 -> { + return yPersAndPartnerGrossDiffMonthL1 != null ? yPersAndPartnerGrossDiffMonthL1 : 0.; + } + + // ----------------------------------------------------------------------- + // Pre-existing enum values used in estimation files (missing cases) + // ----------------------------------------------------------------------- + case careHrsFormalIhsL1 -> { + return Parameters.asinh(getCareHrsFormalWeekL1()); + } + case careHrsInformalIhsL1 -> { + return Parameters.asinh(getCareHrsInformalWeekL1()); + } + case careHrsProvidedWeekIhsL1 -> { + double hrs = (careHrsProvidedWeekL1 != null && careHrsProvidedWeekL1 > 0.0) ? careHrsProvidedWeekL1 : 0.0; + return Parameters.asinh(hrs); + } + case careMarketMixedPartner -> { + Person partner = getPartner(); + if (partner == null) return 0.; + return (partner.getHoursFormalSocialCare() > 0.01 && partner.getHoursInformalSocialCare() > 0.01) ? 1. : 0.; + } + case careNeedFlag -> { + return Indicator.True.equals(careNeedFlag) ? 1. : 0.; + } + case careNeedFlagL1 -> { + return Indicator.True.equals(careNeedFlagL1) ? 1. : 0.; + } + case careProvidedFlagL1 -> { + return Indicator.True.equals(careProvidedFlagL1) ? 1. : 0.; + } + case careReceivedFlag -> { + return (SocialCareReceipt.Formal.equals(careReceivedFlag) || SocialCareReceipt.Informal.equals(careReceivedFlag) || SocialCareReceipt.Mixed.equals(careReceivedFlag)) ? 1. : 0.; + } + case careReceivedFlagL1 -> { + return (getCareHrsTotalWeekL1() > 0.01) ? 1. : 0.; + } + case careReceivedPartnerFlag -> { + Person partner = getPartner(); + if (partner == null) return 0.; + return (partner.getHoursFormalSocialCare() + partner.getHoursInformalSocialCare() > 0.01) ? 1. : 0.; + } + case demAgePartnerDiffL1 -> { + return (demAgePartnerDiffL1 != null) ? (double) demAgePartnerDiffL1 : 0.0; + } + case demCompHhC4CoupleChL1 -> { + return (Dhhtp_c4.CoupleChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; + } + case demCompHhC4L1SingleChL1 -> { + return (Dhhtp_c4.SingleChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; + } + case demCompHhC4SingleNoChL1 -> { + return (Dhhtp_c4.SingleNoChildren.equals(getDemCompHhC4L1())) ? 1.0 : 0.0; + } + case demCompHhC81L1 -> { + // Couple with no children, spouse employed (baseline category) + Person partner = getPartner(); + if (partner != null && partner.labC4L1 != null) + return (Les_c4.EmployedOrSelfEmployed.equals(partner.labC4L1) && Dhhtp_c4.CoupleNoChildren.equals(getDemCompHhC4L1())) ? 1. : 0.; + else + return 0.; + } + case demCompHhC82L1 -> { + return getDoubleValue(DoublesVariables.Dhhtp_c8_2_L1); + } + case demCompHhC83L1 -> { + return getDoubleValue(DoublesVariables.Dhhtp_c8_3_L1); + } + case demCompHhC84L1 -> { + return getDoubleValue(DoublesVariables.Dhhtp_c8_4_L1); + } + case demCompHhC85L1 -> { + return getDoubleValue(DoublesVariables.Dhhtp_c8_5_L1); + } + case demCompHhC86L1 -> { + return getDoubleValue(DoublesVariables.Dhhtp_c8_6_L1); + } + case demCompHhC87L1 -> { + return getDoubleValue(DoublesVariables.Dhhtp_c8_7_L1); + } + case demCompHhC88L1 -> { + return getDoubleValue(DoublesVariables.Dhhtp_c8_8_L1); + } + case demEnterPartnerFlagL1 -> { + if (demPartnerStatusL1 != null && demPartnerStatusL2 != null) + return (Dcpst.Partnered.equals(demPartnerStatusL1) && !Dcpst.Partnered.equals(demPartnerStatusL2)) ? 1. : 0.; + else + return 0.; + } + case demEthnC4Asian -> { + return demEthnC6.equals(Ethnicity.Asian) ? 1. : 0.; + } + case demEthnC4Black -> { + return demEthnC6.equals(Ethnicity.Black) ? 1. : 0.; + } + case demEthnC4Other -> { + return (demEthnC6.equals(Ethnicity.Other) || demEthnC6.equals(Ethnicity.Missing)) ? 1. : 0.; + } + case demMaleFlag -> { + return (Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case demNChild -> { + return (double) getNumberChildrenAll(); + } + case demNChild0to2L1 -> { + return (double) getNumberChildren02L1(); + } + case demNChildL1 -> { + return (double) getNumberChildrenAllL1(); + } + case demPartnerNYearL1 -> { + return (demPartnerNYearL1 != null) ? (double) demPartnerNYearL1 : 0.0; + } + case demPartnerStatusPartnered -> { + return (Dcpst.Partnered.equals(getDemPartnerStatus())) ? 1.0 : 0.0; + } + case demPartnerStatusPartneredL1 -> { + return (demPartnerStatusL1 != null && demPartnerStatusL1.equals(Dcpst.Partnered)) ? 1. : 0.; + } + case demPartnerStatusSingle -> { + return (Dcpst.Single.equals(getDemPartnerStatus())) ? 1.0 : 0.0; + } + case demPartnerStatusSingleL1 -> { + return (demPartnerStatusL1 != null && demPartnerStatusL1.equals(Dcpst.Single)) ? 1. : 0.; + } + case demPensAgeFlag -> { + return getDoubleValue(DoublesVariables.Reached_Retirement_Age); + } + case demPensAgeFlag_NotEmployedL1 -> { + return (getDoubleValue(DoublesVariables.Reached_Retirement_Age) > 0. && Les_c4.NotEmployed.equals(labC4L1)) ? 1. : 0.; + } + case demPensPartnerAgeFlag -> { + return getDoubleValue(DoublesVariables.Reached_Retirement_Age_Sp); + } + case demRgnUKC -> { + return Region.UKC.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKD -> { + return Region.UKD.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKE -> { + return Region.UKE.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKF -> { + return Region.UKF.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKG -> { + return Region.UKG.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKH -> { + return Region.UKH.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKI -> { + return Region.UKI.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKJ -> { + return Region.UKJ.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKK -> { + return Region.UKK.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKL -> { + return Region.UKL.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKM -> { + return Region.UKM.equals(getRegion()) ? 1.0 : 0.0; + } + case demRgnUKN -> { + return Region.UKN.equals(getRegion()) ? 1.0 : 0.0; + } + case demYear -> { + return (Parameters.isFixTimeTrend && getYear() >= Parameters.timeTrendStopsIn) ? (double) Parameters.timeTrendStopsIn : (double) getYear(); + } + case eduHighestC4High -> { + return (Education.High.equals(eduHighestC4)) ? 1.0 : 0.0; + } + case eduHighestC4HighL1 -> { + return (Education.High.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case eduHighestC4HighL1_demAge -> { + return (Education.High.equals(eduHighestC4L1)) ? demAge : 0.0; + } + case eduHighestC4Low -> { + return (Education.Low.equals(eduHighestC4)) ? 1.0 : 0.0; + } + case eduHighestC4LowL1 -> { + return (Education.Low.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case eduHighestC4Low_demAge -> { + return (Education.Low.equals(eduHighestC4)) ? demAge : 0.0; + } + case eduHighestC4LowL1_demAge -> { + return (Education.Low.equals(eduHighestC4L1)) ? demAge : 0.0; + } + case eduHighestC4Medium -> { + return (Education.Medium.equals(eduHighestC4)) ? 1.0 : 0.0; + } + case eduHighestC4MediumL1 -> { + return (Education.Medium.equals(eduHighestC4L1)) ? 1.0 : 0.0; + } + case eduHighestC4Medium_demAge -> { + return (Education.Medium.equals(eduHighestC4)) ? demAge : 0.0; + } + case eduHighestC4MediumL1_demAge -> { + return (Education.Medium.equals(eduHighestC4L1)) ? demAge : 0.0; + } + case eduHighestC4Na -> { + return (Education.InEducation.equals(eduHighestC4) || Indicator.True.equals(eduSpellFlag)) ? 1.0 : 0.0; + } + case eduHighestC4NaL1 -> { + return (Education.InEducation.equals(eduHighestC4L1) || Indicator.True.equals(eduSpellFlagL1)) ? 1.0 : 0.0; + } + case eduHighestParentC3High -> { + return checkHighestParentalEducationEquals(Education.High) ? 1.0 : 0.0; + } + case eduHighestParentC3Medium -> { + return checkHighestParentalEducationEquals(Education.Medium) ? 1.0 : 0.0; + } + case eduHighestParentC3Low -> { + return (checkHighestParentalEducationEquals(Education.Low) || checkHighestParentalEducationEquals(Education.InEducation)) ? 1.0 : 0.0; + } + case eduHighestParentC3LowL1 -> { + return (checkHighestParentalEducationEquals(Education.Low) || checkHighestParentalEducationEquals(Education.InEducation)) ? 1.0 : 0.0; + } + case eduHighestParentC3MediumL1 -> { + return checkHighestParentalEducationEquals(Education.Medium) ? 1.0 : 0.0; + } + case eduHighestPartnerC3LowL1 -> { + return (Education.Low.equals(eduHighestPartnerC4L1) || Education.InEducation.equals(eduHighestPartnerC4L1)) ? 1. : 0.; + } + case eduHighestPartnerC3MediumL1 -> { + return Education.Medium.equals(eduHighestPartnerC4L1) ? 1. : 0.; + } + case eduSampleFlag -> { + return Indicator.True.equals(eduSpellFlag) ? 1.0 : 0.0; + } + case eduSampleFlagL1 -> { + return Indicator.True.equals(eduSpellFlagL1) ? 1.0 : 0.0; + } + case eduSampleFlag_Male -> { + return (Indicator.True.equals(eduSpellFlag) && Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case eduSampleFlag_McsL1 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Dhe_mcs_L1) : 0.0; + } + case eduSampleFlag_PcsL1 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Dhe_pcs_L1) : 0.0; + } + case eduSampleFlag_Q2L1 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Ydses_c5_Q2_L1) : 0.0; + } + case eduSampleFlag_Q3L1 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Ydses_c5_Q3_L1) : 0.0; + } + case eduSampleFlag_Q4L1 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Ydses_c5_Q4_L1) : 0.0; + } + case eduSampleFlag_Q5L1 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Ydses_c5_Q5_L1) : 0.0; + } + case eduSampleFlag_Single -> { + return (Indicator.True.equals(eduSpellFlag) && Dcpst.Single.equals(getDemPartnerStatus())) ? 1.0 : 0.0; + } + case eduSampleFlag_demMaleFlag -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.demMaleFlag) : 0.0; + } + case eduSampleFlag_demNChild0to2L1 -> { + return Indicator.True.equals(eduSpellFlag) ? (double) getNumberChildren02L1() : 0.0; + } + case eduSampleFlag_demNChildL1 -> { + return Indicator.True.equals(eduSpellFlag) ? (double) getNumberChildrenAllL1() : 0.0; + } + case eduSampleFlag_yCapitalPersL1 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Ypncp_L1) : 0.0; + } + case eduSampleFlag_yCapitalPersL2 -> { + return Indicator.True.equals(eduSpellFlag) ? getDoubleValue(DoublesVariables.Ypncp_L2) : 0.0; + } + case exp_incchange -> { + return 0.; // approximate - income change transition not directly stored + } + case exp_poverty -> { + return 0.; // approximate - poverty transition code not directly stored + } + case healthDsblLongtermFlag -> { + return Indicator.True.equals(healthDsblLongtermFlag) ? 1. : 0.; + } + case healthDsblLongtermFlagL1 -> { + return Indicator.True.equals(healthDsblLongtermFlagL1) ? 1. : 0.; + } + case healthMentalMcsL1 -> { + return (healthMentalMcsL1 != null && healthMentalMcsL1 >= 0.) ? healthMentalMcsL1 : 0.; + } + case healthMentalPartnerMcsL1 -> { + Person partner = getPartner(); + return (partner != null && partner.getHealthMentalMcsL1() != null) ? partner.getHealthMentalMcsL1() : 0.; + } + case healthPartnerSelfRatedExcellent, healthPartnerSelfRatedExcel -> { + Person partner = getPartner(); + return (partner != null && Dhe.Excellent.equals(partner.getHealthSelfRated())) ? 1. : 0.; + } + case healthPartnerSelfRatedFair -> { + return getDoubleValue(DoublesVariables.Dhesp_Fair); + } + case healthPartnerSelfRatedGood -> { + return getDoubleValue(DoublesVariables.Dhesp_Good); + } + case healthPartnerSelfRatedVeryGood -> { + return getDoubleValue(DoublesVariables.Dhesp_VeryGood); + } + case healthPhysicalPartnerPcsL1 -> { + Person partner = getPartner(); + return (partner != null && partner.getHealthPhysicalPcsL1() != null) ? partner.getHealthPhysicalPcsL1() : 0.; + } + case healthPhysicalPcsL1 -> { + return (healthPhysicalPcsL1 != null && healthPhysicalPcsL1 >= 0.) ? healthPhysicalPcsL1 : 0.; + } + case healthSelfRatedExcellent -> { + return (Dhe.Excellent.equals(healthSelfRated)) ? 1. : 0.; + } + case healthSelfRatedExcellentL1 -> { + return (Dhe.Excellent.equals(healthSelfRatedL1)) ? 1. : 0.; + } + case healthSelfRatedFair -> { + return (Dhe.Fair.equals(healthSelfRated)) ? 1. : 0.; + } + case healthSelfRatedFairL1 -> { + return (Dhe.Fair.equals(healthSelfRatedL1)) ? 1. : 0.; + } + case healthSelfRatedGood -> { + return (Dhe.Good.equals(healthSelfRated)) ? 1. : 0.; + } + case healthSelfRatedGoodL1 -> { + return (Dhe.Good.equals(healthSelfRatedL1)) ? 1. : 0.; + } + case healthSelfRatedVeryGood -> { + return (Dhe.VeryGood.equals(healthSelfRated)) ? 1. : 0.; + } + case healthSelfRatedVeryGoodL1 -> { + return (Dhe.VeryGood.equals(healthSelfRatedL1)) ? 1. : 0.; + } + case healthSelfRatedPoor -> { + return (Dhe.Poor.equals(healthSelfRated)) ? 1. : 0.; + } + case labPt -> { + return (getLabourSupplyHoursWeekly() > 0 && getLabourSupplyHoursWeekly() < Parameters.MIN_HOURS_FULL_TIME_EMPLOYED) ? 1. : 0.; + } + case labStatusC3NotEmployedL1 -> { + return (Les_c4.NotEmployed.equals(labC4L1) || Les_c4.Retired.equals(labC4L1)) ? 1. : 0.; + } + case labStatusC3StudentL1 -> { + return Les_c4.Student.equals(labC4L1) ? 1. : 0.; + } + case labStatusC4EmployedL1 -> { + return (Les_c4.EmployedOrSelfEmployed.equals(labC4L1)) ? 1.0 : 0.0; + } + case labStatusC4EmployedL1_Male -> { + return (Les_c4.EmployedOrSelfEmployed.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case labStatusC4NotEmployedL1 -> { + return (Les_c4.NotEmployed.equals(labC4L1)) ? 1.0 : 0.0; + } + case labStatusC4NotEmployedL1_Male, labStatusC4NotEmployed_MaleL1 -> { + return (Les_c4.NotEmployed.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case labStatusC4RetiredL1 -> { + return (Les_c4.Retired.equals(labC4L1)) ? 1.0 : 0.0; + } + case labStatusC4RetiredL1_Male -> { + return (Les_c4.Retired.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case labStatusC4StudentL1 -> { + return (Les_c4.Student.equals(labC4L1)) ? 1.0 : 0.0; + } + case labStatusC4StudentL1_Male, labStatusC4Student_MaleL1 -> { + return (Les_c4.Student.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case labStatusC4Retired_MaleL1 -> { + return (Les_c4.Retired.equals(labC4L1) && Gender.Male.equals(demMaleFlag)) ? 1.0 : 0.0; + } + case labStatusPartnerAndOwnC42L1 -> { + return (labStatusPartnerAndOwnC4L1 != null && Lesdf_c4.EmployedSpouseNotEmployed.equals(labStatusPartnerAndOwnC4L1)) ? 1. : 0.; + } + case labStatusPartnerAndOwnC43L1 -> { + return (labStatusPartnerAndOwnC4L1 != null && Lesdf_c4.NotEmployedSpouseEmployed.equals(labStatusPartnerAndOwnC4L1)) ? 1. : 0.; + } + case labStatusPartnerAndOwnC44L1 -> { + return (labStatusPartnerAndOwnC4L1 != null && Lesdf_c4.BothNotEmployed.equals(labStatusPartnerAndOwnC4L1)) ? 1. : 0.; + } + + default -> { + throw new IllegalArgumentException("Unsupported regressor " + variableID.name() + " in Person#getDoubleValue"); + } + } + } + + + + + // Override equals and hashCode to make unique BenefitUnit determined by Key.getId() + @Override + public boolean equals(Object o) { + + if (o == this) return true; + if (!(o instanceof Person)) { + return false; + } + + Person p = (Person) o; + + boolean idIsEqual = new EqualsBuilder() + .append(key.getId(), p.key.getId()) //Add more fields to compare to check for equality if desired + .isEquals(); + + return idIsEqual; + } + + @Override + public int hashCode() { + return new HashCodeBuilder(17, 37) + .append(key.getId()) + .toHashCode(); + } + + + /** + * + * Returns a defensive copy of the field. + * The caller of this method can do anything they want with the + * returned Key object, without affecting the internals of this + * class in any way. + * + */ + public PanelEntityKey getKey() { + return new PanelEntityKey(key.getId()); } @PrePersist @@ -4910,7 +6410,7 @@ public void setDemMaleFlag(Gender demMaleFlag) { this.demMaleFlag = demMaleFlag; } - public Les_c4 getLes_c4() { + public Les_c4 getLabC4() { return labC4; } @@ -4925,21 +6425,21 @@ public int getEducation() { else return 0; } - public void setLes_c4(Les_c4 labC4) { + public void setLabC4(Les_c4 labC4) { this.labC4 = labC4; } - public void setLes_c7_covid(Les_c7_covid labC7Covid) { this.labC7Covid = labC7Covid; } + public void setLabC7Covid(Les_c7_covid labC7Covid) { this.labC7Covid = labC7Covid; } - public Les_c7_covid getLes_c7_covid() { return labC7Covid; } + public Les_c7_covid getLabC7Covid() { return labC7Covid; } - public Les_c4 getLes_c4_lag1() { + public Les_c4 getLabC4L1() { return labC4L1; } - public Les_c7_covid getLes_c7_covid_lag1() { return labC7CovidL1; } + public Les_c7_covid getLabC7CovidL1() { return labC7CovidL1; } - public void setLes_c7_covid_lag1(Les_c7_covid labC7CovidL1) { + public void setLabC7CovidL1(Les_c7_covid labC7CovidL1) { this.labC7CovidL1 = labC7CovidL1; } @@ -4967,47 +6467,47 @@ public int getCohabiting() { return benefitUnit.getCoupleDummy(); } - public Education getDeh_c4() { + public Education getEduHighestC4() { return eduHighestC4; } - public void setDeh_c4(Education eduHighestC4) { + public void setEduHighestC4(Education eduHighestC4) { this.eduHighestC4 = eduHighestC4; } - public void setDeh_c4_lag1(Education eduHighestC4L1) { + public void setEduHighestC4L1(Education eduHighestC4L1) { this.eduHighestC4L1 = eduHighestC4L1; } - public Education getDehm_c4() { + public Education getEduHighestMotherC4() { return eduHighestMotherC4; } - public void setDehm_c4(Education eduHighestMotherC4) { + public void setEduHighestMotherC4(Education eduHighestMotherC4) { this.eduHighestMotherC4 = eduHighestMotherC4; } - public Education getDehf_c4() { + public Education getEduHighestFatherC4() { return eduHighestFatherC4; } - public void setDehf_c4(Education eduHighestFatherC4) { + public void setEduHighestFatherC4(Education eduHighestFatherC4) { this.eduHighestFatherC4 = eduHighestFatherC4; } - public Indicator getDed() { + public Indicator getEduSpellFlag() { return eduSpellFlag; } - public Indicator getDed_lag1() { + public Indicator getEduSpellFlagL1() { return eduSpellFlagL1; } - public void setDed(Indicator eduSpellFlag) { + public void setEduSpellFlag(Indicator eduSpellFlag) { this.eduSpellFlag = eduSpellFlag; } - public void setDed_lag1(Indicator eduSpellFlagL1) { + public void setEduSpellFlagL1(Indicator eduSpellFlagL1) { this.eduSpellFlagL1 = eduSpellFlagL1; } @@ -5079,15 +6579,15 @@ public int getNonwork() { return (Les_c4.NotEmployed.equals(labC4)) ? 1 : 0; } - public int getEmployed_Lag1() { + public int getEmployedFlagL1() { return (Les_c4.EmployedOrSelfEmployed.equals(labC4L1)) ? 1 : 0; } - public int getNonwork_Lag1() { + public int getNonworkFlagL1() { return (Les_c4.NotEmployed.equals(labC4L1)) ? 1 : 0; } - public void setRegionLocal(Region region) { + public void setI_demRgn(Region region) { i_demRgn = region; } @@ -5105,7 +6605,7 @@ public void setRegion(Region region) { this.benefitUnit.setRegion(region); } - public HouseholdStatus getHousehold_status_lag() { + public HouseholdStatus getDemStatusHhL1() { return demStatusHhL1; } @@ -5122,7 +6622,7 @@ public void setToGiveBirth(boolean toGiveBirth_) { } public boolean isToLeaveSchool() { - return eduLeaveSchoolFlag; + return Objects.requireNonNullElse(eduLeaveSchoolFlag,false); } public void setToLeaveSchool(boolean eduLeaveSchoolFlag) { @@ -5203,15 +6703,6 @@ public Long getPartnerID() { } else return null; } - private void nullPartnerVariables() { - - demPartnerNYear = 0; - if (SocialCareProvision.OnlyPartner.equals(careProvidedFlag)) - careProvidedFlag = SocialCareProvision.None; - else if (SocialCareProvision.PartnerAndOther.equals(careProvidedFlag)) - careProvidedFlag = SocialCareProvision.OnlyOther; - } - public Labour getLabourSupplyWeekly() { if (labHrsWorkEnumWeek ==null) throw new RuntimeException("request for labourSupplyWeekly before it has been initialised"); @@ -5261,7 +6752,7 @@ public double getGrossEarningsYearly() { } public int getAtRiskOfPoverty() { - return benefitUnit.getAtRiskOfPoverty(); + return benefitUnit.getYPvrtyFlag(); } public double getLabWageFullTimeHrly() { @@ -5276,15 +6767,15 @@ public double getYWageDesired() { return yWageDesired; } - public Dhe getDhe() { + public Dhe getHealthSelfRated() { return healthSelfRated; } - public void setDhe(Dhe health) { + public void setHealthSelfRated(Dhe health) { this.healthSelfRated = health; } - public double getDheValue() { + public double getHealthSelfRatedValue() { return (double) healthSelfRated.getValue(); } public double getHealthWbScore0to36() { @@ -5370,18 +6861,18 @@ public void populateSocialCareReceipt_lag1(SocialCareReceiptState state) { } } - public void setSocialCareFromOther(boolean val) { + public void setCareFromInformalFlag(boolean val) { careFromInformalFlag = val; } - public void setCareHoursFromOtherWeekly_lag1(double val) { + public void setCareHrsInformalWeekL1(double val) { careHrsInformalWeekL1 = val; } - public void setCareHoursFromFormalWeekly_lag1(double val) { + public void setCareHrsFormalWeekL1(double val) { careHrsFormalWeekL1 = val; } - public void setSocialCareProvision_lag1(SocialCareProvision careProvision) { + public void setCareProvidedFlagL1(Indicator careProvision) { careProvidedFlagL1 = careProvision; } @@ -5389,7 +6880,7 @@ public void setHealthWbScore0to36(Double healthWbScore0to36) { this.healthWbScore0to36 = healthWbScore0to36; } - public void setDhe_lag1(Dhe health) { + public void setHealthSelfRatedL1(Dhe health) { this.healthSelfRatedL1 = health; } @@ -5405,11 +6896,15 @@ public void setHealthPsyDstrss0to12(Double dhm_ghq) { this.healthPsyDstrss0to12 = dhm_ghq; } - public Ethnicity getDot01() { + public int isPsychologicallyDistressed() { + return (healthPsyDstrss0to12 >= PSYCHOLOGICAL_DISTRESS_GHQ12_CASES_CUTOFF) ? 1 : 0; + } + + public Ethnicity getDemEthnC6() { return demEthnC6; } - public void setDot01(Ethnicity demEthnC6) { + public void setDemEthnC6(Ethnicity demEthnC6) { this.demEthnC6 = demEthnC6; } @@ -5417,31 +6912,31 @@ public boolean getYFinDstrssFlag() { return yFinDstrssFlag; } - public Indicator getNeedSocialCare() { + public Indicator getCareNeedFlag() { return careNeedFlag; } - public void setNeedSocialCare(Indicator careNeedFlag) { + public void setCareNeedFlag(Indicator careNeedFlag) { this.careNeedFlag = careNeedFlag; } - public void setDer(Indicator eduReturnFlag) { + public void setEduReturnFlag(Indicator eduReturnFlag) { this.eduReturnFlag = eduReturnFlag; } - public Indicator getDer() {return eduReturnFlag;} + public Indicator getEduReturnFlag() {return eduReturnFlag;} - public Indicator getSedex() {return eduExitSampleFlag;} + public Indicator getEduExitSampleFlag() {return eduExitSampleFlag;} - public Long getIdOriginalPerson() { + public Long getIdPersOriginal() { return idPersOriginal; } - public Long getIdOriginalBU() { + public Long getIdBuOriginal() { return idBuOriginal; } - public Long getIdOriginalHH() { + public Long getIdHhOriginal() { return idHhOriginal; } @@ -5457,7 +6952,7 @@ public void setClonedFlag(boolean demClonedFlag) { this.demClonedFlag = demClonedFlag; } - public Dcpst getDcpst() { + public Dcpst getDemPartnerStatus() { if (benefitUnit==null) { if (i_demPartnerStatus ==null) throw new RuntimeException("attempt to access unassigned value for dcpstLocal"); @@ -5468,14 +6963,14 @@ public Dcpst getDcpst() { return Dcpst.Single; } - public void setDcpstLocal(Dcpst demPartnerStatus) { + public void setI_demPartnerStatus(Dcpst demPartnerStatus) { this.i_demPartnerStatus = demPartnerStatus; } - public Indicator getDlltsd() { + public Indicator getHealthDsblLongtermFlag() { return healthDsblLongtermFlag; } - public void setDlltsd(Indicator healthDsblLongtermFlag) { + public void setHealthDsblLongtermFlag(Indicator healthDsblLongtermFlag) { this.healthDsblLongtermFlag = healthDsblLongtermFlag; } @@ -5483,19 +6978,19 @@ public void setSocialCareReceipt(SocialCareReceipt who) { careReceivedFlag = who; } - public void setSocialCareProvision(SocialCareProvision who) { - careProvidedFlag = who; + public void setSocialCareProvision(Indicator provide) { + careProvidedFlag = provide; } - public Indicator getDlltsd_lag1() { + public Indicator getHealthDsblLongtermFlagL1() { return healthDsblLongtermFlagL1; } - public void setDlltsd_lag1(Indicator healthDsblLongtermFlagL1) { + public void setHealthDsblLongtermFlagL1(Indicator healthDsblLongtermFlagL1) { this.healthDsblLongtermFlagL1 = healthDsblLongtermFlagL1; } - public void setSedex(Indicator eduExitSampleFlag) { + public void setEduExitSampleFlag(Indicator eduExitSampleFlag) { this.eduExitSampleFlag = eduExitSampleFlag; } @@ -5523,7 +7018,7 @@ public void setDemPartnerNYear(Integer demPartnerNYear) { this.demPartnerNYear = demPartnerNYear; } - public Integer getDcpagdf() { + public Integer getDemAgePartnerDiff() { Person partner = getPartner(); if (partner!=null) return (demAge - partner.demAge); @@ -5531,65 +7026,65 @@ public Integer getDcpagdf() { return null; } - public Double getyNonBenPersGrossMonth() { + public Double getYNonBenPersGrossMonth() { return yNonBenPersGrossMonth; } - public void setyNonBenPersGrossMonth(Double val) { + public void setYNonBenPersGrossMonth(Double val) { yNonBenPersGrossMonth = val; } - public Double getyNonBenPersGrossMonthL1() { + public Double getYNonBenPersGrossMonthL1() { return yNonBenPersGrossMonthL1; } - public double getyMiscPersGrossMonth() { + public Double getYMiscPersGrossMonth() { return yMiscPersGrossMonth; } - public double getyCapitalPersMonth() { + public Double getYCapitalPersMonth() { return yCapitalPersMonth; } - public double getyPensPersGrossMonth() { + public Double getYPensPersGrossMonth() { return yPensPersGrossMonth; } - public void setYptciihs_dv(double yMiscPersGrossMonth) { + public void setYMiscPersGrossMonth(double yMiscPersGrossMonth) { this.yMiscPersGrossMonth = yMiscPersGrossMonth; if (!Parameters.checkFinite(this.yMiscPersGrossMonth)) - throw new IllegalArgumentException("yptciihs_dv is not finite"); + throw new IllegalArgumentException("yMiscPersGrossMonth is not finite"); } - public double getyMiscPersGrossMonthL1() { + public Double getYMiscPersGrossMonthL1() { return yMiscPersGrossMonthL1; } - public double getyEmpPersGrossMonth() { + public double getYEmpPersGrossMonth() { return (yEmpPersGrossMonth !=null) ? yEmpPersGrossMonth : 0.0; } - public void setyEmpPersGrossMonth(double val) { + public void setYEmpPersGrossMonth(double val) { yEmpPersGrossMonth = val; } - public double getyEmpPersGrossMonthL1() { + public double getYEmpPersGrossMonthL1() { return yEmpPersGrossMonthL1; } - public double getyEmpPersGrossMonthL2() { + public double getYEmpPersGrossMonthL2() { return yEmpPersGrossMonthL2; } - public double getyEmpPersGrossMonthL3() { + public double getYEmpPersGrossMonthL3() { return yEmpPersGrossMonthL3; } - public Double getYnbcpdf_dv_lag1() { + public Double getYPersAndPartnerGrossDiffMonthL1() { return yPersAndPartnerGrossDiffMonthL1; } - public Lesdf_c4 getLesdf_c4() { + public Lesdf_c4 getLabStatusPartnerAndOwnC4() { if (benefitUnit.getCoupleBoolean() && demAge >=Parameters.AGE_TO_BECOME_RESPONSIBLE) { if (getPartner()==null) throw new RuntimeException("inconsistency between couple and partner identifiers"); @@ -5605,31 +7100,31 @@ else if (Les_c4.EmployedOrSelfEmployed.equals(getPartner().labC4)) return null; } - public Lesdf_c4 getLesdf_c4_lag1() { + public Lesdf_c4 getLabStatusPartnerAndOwnC4L1() { return labStatusPartnerAndOwnC4L1; } - public void setLes_c4_lag1(Les_c4 labC4L1) { + public void setLabC4L1(Les_c4 labC4L1) { this.labC4L1 = labC4L1; } - public void setLesdf_c4_lag1(Lesdf_c4 labStatusPartnerAndOwnC4L1) { + public void setLabStatusPartnerAndOwnC4L1(Lesdf_c4 labStatusPartnerAndOwnC4L1) { this.labStatusPartnerAndOwnC4L1 = labStatusPartnerAndOwnC4L1; } - public void setYpnbihs_dv_lag1(Double val) { + public void setYNonBenPersGrossMonthL1(Double val) { yNonBenPersGrossMonthL1 = val; } - public void setDehsp_c4_lag1(Education eduHighestPartnerC4L1) { + public void setEduHighestPartnerC4L1(Education eduHighestPartnerC4L1) { this.eduHighestPartnerC4L1 = eduHighestPartnerC4L1; } - public void setDhesp_lag1(Dhe healthPartnerSelfRatedL1) { + public void setHealthPartnerSelfRatedL1(Dhe healthPartnerSelfRatedL1) { this.healthPartnerSelfRatedL1 = healthPartnerSelfRatedL1; } - public void setYnbcpdf_dv_lag1(Double val) { + public void setYPersAndPartnerGrossDiffMonthL1(Double val) { yPersAndPartnerGrossDiffMonthL1 = val; } @@ -5637,11 +7132,11 @@ public void setDemPartnerNYearL1(Integer demPartnerNYearL1) { this.demPartnerNYearL1 = demPartnerNYearL1; } - public void setDcpagdf_lag1(Integer demAgePartnerDiffL1) { + public void setDemAgePartnerDiffL1(Integer demAgePartnerDiffL1) { this.demAgePartnerDiffL1 = demAgePartnerDiffL1; } - public void setDcpst_lag1(Dcpst demPartnerStatusL1) { + public void setDemPartnerStatusL1(Dcpst demPartnerStatusL1) { this.demPartnerStatusL1 = demPartnerStatusL1; } @@ -5693,14 +7188,6 @@ public void setIdHousehold(Long idHh) { this.idHh = idHh; } - public Series.Double getYDispEquivYear() { - return yDispEquivYear; - } - - public void setYDispEquivYear(Series.Double yDispEquivYear) { - this.yDispEquivYear = yDispEquivYear; - } - public Double getXEquivYear() { return xEquivYear; } @@ -5709,19 +7196,11 @@ public void setXEquivYear(Double xEquivYear) { this.xEquivYear = xEquivYear; } - public Series.Double getXEquivYearL1() { - return xEquivYearL1; - } - - public void setXEquivYearL1(Series.Double xEquivYearL1) { - this.xEquivYearL1 = xEquivYearL1; - } - public Integer getLabHrsWorkNewL1() { return labHrsWorkNewL1; } - public void setNewWorkHours_lag1(Integer labHrsWorkNewL1) { + public void setLabHrsWorkNewL1(Integer labHrsWorkNewL1) { this.labHrsWorkNewL1 = labHrsWorkNewL1; } @@ -5741,12 +7220,12 @@ public void setCovidSEISSReceivedFlag(Indicator covidSEISSReceivedFlag) { this.covidSEISSReceivedFlag = covidSEISSReceivedFlag; } - public double getCovidModuleGrossLabourIncome_Baseline() { + public double getCovidYLabGross() { return (covidYLabGross !=null) ? covidYLabGross : 0.0; } - public void setCovidModuleGrossLabourIncome_Baseline(double val) { - covidYLabGross = val; + public void setCovidYLabGross(double covidYLabGross) { + this.covidYLabGross = covidYLabGross; } public Quintiles getCovidYLabGrossXt5() { @@ -5769,7 +7248,7 @@ public boolean isReceivesBenefitsFlag_L1() { return (yBenReceivedFlagL1 !=null) ? yBenReceivedFlagL1 : false; } - public void setReceivesBenefitsFlag_L1(boolean yBenReceivedFlagL1) { + public void setYBenReceivedFlagL1(boolean yBenReceivedFlagL1) { this.yBenReceivedFlagL1 = yBenReceivedFlagL1; } @@ -5785,7 +7264,7 @@ public boolean isReceivesBenefitsFlagUC_L1() { return (null != yBenUCReceivedFlagL1) ? yBenUCReceivedFlagL1 : false; } - public void setReceivesBenefitsFlagUC_L1(boolean yBenUCReceivedFlagL1) { + public void setYBenUCReceivedFlagL1(boolean yBenUCReceivedFlagL1) { this.yBenUCReceivedFlagL1 = yBenUCReceivedFlagL1; } @@ -5801,7 +7280,7 @@ public boolean isReceivesBenefitsFlagNonUC_L1() { return (null != yBenNonUCReceivedFlagL1) ? yBenNonUCReceivedFlagL1 : false; } - public void setReceivesBenefitsFlagNonUC_L1(boolean yBenNonUCReceivedFlagL1) { + public void setYBenNonUCReceivedFlagL1(boolean yBenNonUCReceivedFlagL1) { this.yBenNonUCReceivedFlagL1 = yBenNonUCReceivedFlagL1; } @@ -5810,6 +7289,8 @@ public double getEquivalisedDisposableIncomeYearly() { return benefitUnit.getEquivalisedDisposableIncomeYearly(); } + public double getDisposableIncomeMonthlyNoNull() { return benefitUnit.getDisposableIncomeMonthlyNoNull();} + public double getDisposableIncomeMonthly() { return benefitUnit.getDisposableIncomeMonthly();} public double getWageOffer() { @@ -5820,7 +7301,7 @@ public double getWageOffer() { } public int getDisability() { - return (Indicator.True.equals(getDlltsd())) ? 1 : 0; + return (Indicator.True.equals(getHealthDsblLongtermFlag())) ? 1 : 0; } public SocialCareReceipt getSocialCareReceipt() { @@ -5858,18 +7339,15 @@ public double getSocialCareProvisionState() { return (double)getSocialCareProvision().getValue(); } - public SocialCareProvision getSocialCareProvision() { - if (careProvidedFlag ==null) - return SocialCareProvision.None; - else - return careProvidedFlag; + public Indicator getSocialCareProvision() { + return Objects.requireNonNullElse(careProvidedFlag, Indicator.False); } public double getRetired() { - return (Les_c4.Retired.equals(getLes_c4())) ? 1.0 : 0.0; + return (Les_c4.Retired.equals(getLabC4())) ? 1.0 : 0.0; } - public void setYearLocal(Integer i_demYear) { + public void setI_demYear(Integer i_demYear) { this.i_demYear = i_demYear; } @@ -5891,18 +7369,18 @@ private int getStartYear() { } } - public void setNumberChildren017Local(Integer nbr) { + public void setI_demNchild0to17(Integer nbr) { i_demNchild0to17 = nbr; } - public void setIndicatorChildren02Local(Indicator idctr) { + public void setI_demNChild0to2(Indicator idctr) { i_demNChild0to2 = idctr; } - private Ydses_c5 getYdses_c5_lag1() { + private Ydses_c5 getYHhQuintilesMonthC5L1() { if (model!=null) { if (benefitUnit==null) throw new RuntimeException("attempt to access unassigned benefit unit"); - return benefitUnit.getYdses_c5_lag1(); + return benefitUnit.getYHhQuintilesMonthC5L1(); } else { if (i_yHhQuintilesC5 ==null) throw new RuntimeException("attempt to access unassigned ydses_c5_lag1Local"); @@ -5910,11 +7388,11 @@ private Ydses_c5 getYdses_c5_lag1() { } } - private Ydses_c5 getYdses_c5_current() { + private Ydses_c5 getYHhQuintilesMonthC5Current() { if (model != null) { if (benefitUnit == null) throw new RuntimeException("attempt to access unassigned benefit unit"); - return benefitUnit.getYdses_c5(); + return benefitUnit.getYHhQuintilesMonthC5(); } else { if (i_yHhQuintilesC5 == null) throw new RuntimeException("attempt to access unassigned ydses_c5Local"); @@ -5942,15 +7420,15 @@ public void setI_demCompHhC4L1(Dhhtp_c4 demCompHhC4L1) { i_demCompHhC4L1 = demCompHhC4L1; } - private Integer getNumberChildrenAll_lag1() { + private Integer getNumberChildrenAllL1() { if (benefitUnit != null) { - return (benefitUnit.getNumberChildrenAll_lag1() != null) ? benefitUnit.getNumberChildrenAll_lag1() : 0; + return (benefitUnit.getNumberChildrenAllL1() != null) ? benefitUnit.getNumberChildrenAllL1() : 0; } else { return (i_demNchildL1 ==null) ? 0 : i_demNchildL1; } } - public void setNumberChildrenAllLocal(Integer nbr) { + public void setI_demNchild(Integer nbr) { i_demNchild = nbr; } @@ -5966,19 +7444,19 @@ private Integer getNumberChildrenAll() { } } - public void setNumberChildrenAllLocal_lag1(Integer nbr) { + public void setI_demNchildL1(Integer nbr) { i_demNchildL1 = nbr; } - public void setNumberChildren02Local_lag1(Integer nbr) { + public void setI_demNchild0to2L1(Integer nbr) { i_demNchild0to2L1 = nbr; } - private Integer getNumberChildren02_lag1() { + private Integer getNumberChildren02L1() { if (model != null) { if (benefitUnit==null) throw new RuntimeException("attempt to access unassigned benefit unit"); - return (benefitUnit.getNumberChildren02_lag1() != null) ? benefitUnit.getNumberChildren02_lag1() : 0; + return (benefitUnit.getNumberChildren02L1() != null) ? benefitUnit.getNumberChildren02L1() : 0; } else { if (i_demNchild0to2L1 ==null) throw new RuntimeException("attempt to access unassigned numberChildren02Local_lag1"); @@ -6068,15 +7546,15 @@ public double getHourlyWageRate(int labourHoursWeekly) { double ptPremium; if (labC4L1.equals(Les_c4.EmployedOrSelfEmployed)) { if (Gender.Male.equals(demMaleFlag)) { - ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesMalesE, "Pt"); + ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesMalesE, "labPt"); } else { - ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesFemalesE, "Pt"); + ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesFemalesE, "labPt"); } } else { if (Gender.Male.equals(demMaleFlag)) { - ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesMalesNE, "Pt"); + ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesMalesNE, "labPt"); } else { - ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesFemalesNE, "Pt"); + ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesFemalesNE, "labPt"); } } return Math.exp( Math.log(labWageFullTimeHrly) + ptPremium); @@ -6113,7 +7591,7 @@ public double getLabourSupplySingleDraw() { } public double getBenefitUnitRandomUniform() {return statInnovations.getDoubleDraw(31);} - public double getHoursFormalSocialCare_L1() { + public double getCareHrsFormalWeekL1() { return (careHrsFormalWeekL1 > 0.0) ? careHrsFormalWeekL1 : 0.0; } @@ -6165,12 +7643,12 @@ public double getCareHoursProvidedWeekly() { return hours; } - public double getHoursInformalSocialCare_L1() { + public double getCareHrsInformalWeekL1() { return (careHrsInformalWeekL1 > 0.0) ? careHrsInformalWeekL1 : 0.0; } - public double getTotalHoursSocialCare_L1() { - return getHoursFormalSocialCare_L1() + getHoursInformalSocialCare_L1(); + public double getCareHrsTotalWeekL1() { + return getCareHrsFormalWeekL1() + getCareHrsInformalWeekL1(); } public double getCareHoursFromParent_L1() { @@ -6223,7 +7701,7 @@ public boolean getLowWageOffer() { private boolean checkHighestParentalEducationEquals(Education ee) { if (eduHighestFatherC4 !=null && eduHighestMotherC4 !=null) { - if (eduHighestFatherC4.getValue() > eduHighestMotherC4.getValue()) + if (eduHighestFatherC4.getRank() > eduHighestMotherC4.getRank()) return ee.equals(eduHighestFatherC4); else return ee.equals(eduHighestMotherC4); @@ -6273,7 +7751,7 @@ else if (getStudent()==0) return RegressionName.PartnershipU1; } case SocialCareProvision -> { - if (Dcpst.Partnered.equals(getDcpst())) + if (Dcpst.Partnered.equals(getDemPartnerStatus())) return RegressionName.SocialCareS3b; else return RegressionName.SocialCareS3a; @@ -6317,11 +7795,11 @@ private Double gethealthPsyDstrss_lag1() { return healthPsyDstrss0to12L1; } - public Double getYnbcpdf_dv() { + public Double getYPersAndPartnerGrossDiffMonth() { Person partner = getPartner(); if (partner != null) { - if (partner.getyNonBenPersGrossMonth() != null && getyNonBenPersGrossMonth() != null) - return getyNonBenPersGrossMonth() - partner.getyNonBenPersGrossMonth(); + if (partner.getYNonBenPersGrossMonth() != null && getYNonBenPersGrossMonth() != null) + return getYNonBenPersGrossMonth() - partner.getYNonBenPersGrossMonth(); } return null; } @@ -6420,4 +7898,44 @@ public void updateLtIncome() { public Integer getLiwwh() { return labEmpNyear; } + + public boolean isHousingOwned() { + return getBenefitUnit().isHousingOwned(); + } + + public Education getEduHighestPartner() { + Person partner = getPartner(); + if (partner==null) { + return null; + } else { + return partner.eduHighestC4; + } + } + + public Dhe getHealthPartner() { + Person partner = getPartner(); + if (partner==null) { + return null; + } else { + return partner.healthSelfRated; + } + } + + public Integer getAgeDifferencePartner() { + Person partner = getPartner(); + if (partner==null) { + return null; + } else { + return demAge - partner.demAge; + } + } + + public Long getIdPartner() { + Person partner = getPartner(); + if (partner==null) { + return null; + } else { + return partner.getId(); + } + } } diff --git a/src/main/java/simpaths/model/SimPathsModel.java b/src/main/java/simpaths/model/SimPathsModel.java index 2d3fdd196..0e9703ef4 100644 --- a/src/main/java/simpaths/model/SimPathsModel.java +++ b/src/main/java/simpaths/model/SimPathsModel.java @@ -4,6 +4,7 @@ // import Java packages import jakarta.persistence.EntityManager; +import jakarta.persistence.EntityManagerFactory; import jakarta.persistence.EntityTransaction; import jakarta.persistence.Persistence; import jakarta.persistence.Transient; @@ -19,7 +20,6 @@ import microsim.matching.IterativeSimpleMatching; import microsim.matching.MatchingClosure; import microsim.matching.MatchingScoreClosure; -import org.apache.commons.collections4.MapIterator; import org.apache.commons.collections4.keyvalue.MultiKey; import org.apache.commons.collections4.map.LinkedMap; import org.apache.commons.collections4.map.MultiKeyMap; @@ -27,7 +27,8 @@ import org.apache.commons.lang3.time.StopWatch; import org.apache.commons.lang3.tuple.Triple; import org.apache.commons.math3.util.Pair; -import org.apache.log4j.Logger; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; import org.jetbrains.annotations.NotNull; import simpaths.data.*; import simpaths.data.startingpop.Processed; @@ -82,7 +83,7 @@ public void setFirstRun(boolean firstRun) { private boolean isFirstRun = true; // set default to true - this is required to support single run simulations // default simulation parameters - private static Logger log = Logger.getLogger(SimPathsModel.class); + private static Logger log = LogManager.getLogger(SimPathsModel.class); //@GUIparameter(description = "Country to be simulated") private Country country; // = Country.UK; @@ -203,6 +204,9 @@ public void setFirstRun(boolean firstRun) { @GUIparameter(description = "Average over donor pool when imputing transfer payments") public boolean donorPoolAveraging = true; + @GUIparameter(description = "Scale simulated income by wage growth when imputing taxes and benefits") + public boolean taxDonorUpratingByWage = false; + private int ordering = Parameters.MODEL_ORDERING; //Used in Scheduling of model events. Schedule model events at the same time as the collector and observer events, but a lower order, so will be fired before the collector and observer have updated. private Set persons; @@ -329,6 +333,8 @@ public void setFirstRun(boolean firstRun) { private static String RunDatabasePath; private static String PersistDatabasePath; private static boolean PersistPopulation = false; + private static EntityManagerFactory emfStartingPopulationRun = null; + private static EntityManagerFactory emfStartingPopulationPersist = null; @@ -377,9 +383,9 @@ public void buildObjects() { // load model parameters Parameters.loadParameters(country, maxAge, enableIntertemporalOptimisations, projectFormalChildcare, - projectSocialCare, donorPoolAveraging, fixTimeTrend, flagDefaultToTimeSeriesAverages, saveImperfectTaxDBMatches, - timeTrendStopsIn, startYear, endYear, interestRateInnov, disposableIncomeFromLabourInnov, flagSuppressChildcareCosts, - flagSuppressSocialCareCosts, lifetimeIncomeImpute); + projectSocialCare, donorPoolAveraging, taxDonorUpratingByWage, fixTimeTrend, flagDefaultToTimeSeriesAverages, + saveImperfectTaxDBMatches, timeTrendStopsIn, startYear, endYear, interestRateInnov, + disposableIncomeFromLabourInnov, flagSuppressChildcareCosts, flagSuppressSocialCareCosts, lifetimeIncomeImpute); if (lifetimeIncomeGenerate) { ManagerProjectLifetimeIncomes.run(log, lifetimeIncomeStartBirthYear, lifetimeIncomeEndBirthYear, lifetimeIncomeEndAge, lifetimeIncomeCohortSize, lifetimeIncomeWriteToCSV, @@ -452,7 +458,7 @@ public void buildObjects() { } } } - scalingFactor = (double)popSizeBaseYear / (double)persons.size(); + scalingFactor = popSizeBaseYear / (double)persons.size(); System.out.println("Scaling factor is " + scalingFactor); //Set up tests class @@ -502,8 +508,8 @@ public void buildSchedule() { addEventToAllYears(Processes.GarbageCollection); if (enableIntertemporalOptimisations) yearlySchedule.addCollectionEvent(benefitUnits, BenefitUnit.Processes.UpdateWealth); - addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.Update); - addCollectionEventToAllYears(persons, Person.Processes.Update); + yearlySchedule.addCollectionEvent(benefitUnits, BenefitUnit.Processes.Update); + yearlySchedule.addCollectionEvent(persons, Person.Processes.Update); yearlySchedule.addCollectionEvent(persons, Person.Processes.Aging); @@ -516,16 +522,19 @@ public void buildSchedule() { yearlySchedule.addCollectionEvent(persons, Person.Processes.ConsiderRetirement, false); // EDUCATION MODULE + // In School alignment — runs before InSchool decisions so the solved adjustment applies in the same year + yearlySchedule.addEvent(this, Processes.InSchoolAlignment); + // Check In School - check whether still in education, and if leaving school, reset Education Level yearlySchedule.addCollectionEvent(persons, Person.Processes.InSchool); - - // In School alignment - yearlySchedule.addEvent(this, Processes.InSchoolAlignment); yearlySchedule.addCollectionEvent(persons, Person.Processes.LeavingSchool); // Align the level of education if required addEventToAllYears(Processes.EducationLevelAlignment); + // Check whether adult children leave the parental home - runs after education so that those in continuous education are excluded + yearlySchedule.addCollectionEvent(persons, Person.Processes.ConsiderLeavingHome); + // Homeownership status yearlySchedule.addCollectionEvent(benefitUnits, BenefitUnit.Processes.Homeownership); @@ -559,6 +568,7 @@ public void buildSchedule() { yearlySchedule.addEvent(this, Processes.FertilityAlignment); //Align to fertility rates implied by projected population statistics. yearlySchedule.addCollectionEvent(persons, Person.Processes.Fertility); yearlySchedule.addCollectionEvent(persons, Person.Processes.GiveBirth, false); //Cannot use read-only collection schedule as newborn children cause concurrent modification exception. Need to specify false in last argument of Collection event. + addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.UpdateDemographics); // TIME USE MODULE // Social care @@ -620,7 +630,6 @@ public void buildSchedule() { yearlySchedule.addEvent(this, Processes.CheckForImperfectTaxDBMatches); addEventToAllYears(tests, Tests.Processes.RunTests); //Run tests addCollectionEventToAllYears(persons, Person.Processes.UpdateOutputVariables); // Update idPartner, dhhtp_c4 - addCollectionEventToAllYears(benefitUnits, BenefitUnit.Processes.UpdateOutputVariables); // Update dhhtp_c4 addEventToAllYears(Processes.EndYear); // UPDATE YEAR @@ -719,6 +728,8 @@ private void saveRunParameters() { pw.println(line); line = "donorPoolAveraging: " + donorPoolAveraging; pw.println(line); + line = "taxDonorUpratingByWage: " + taxDonorUpratingByWage; + pw.println(line); line = "initialisePotentialEarningsFromDatabase: " + initialisePotentialEarningsFromDatabase; pw.println(line); line = "useWeights: " + useWeights; @@ -794,7 +805,6 @@ public enum Processes { EndYear, UnionMatching, LabourMarketAndIncomeUpdate, - SocialCareMarketClearing, //Alignment Processes FertilityAlignment, @@ -874,9 +884,6 @@ public void onEvent(Enum type) { } if (commentsOn) log.info("Union matching complete."); } - case SocialCareMarketClearing -> { - socialCareMarketClearing(); - } case FertilityAlignment -> { if (alignFertility) { @@ -1481,16 +1488,16 @@ private void healthAlignment() { @Override public boolean getOutcome(Person agent) { - return agent.getDhe() == 1.; //TODO: Check the new continuous health status + return agent.getHealthSelfRated() == 1.; //TODO: Check the new continuous health status } @Override public void resample(Person agent) { //Swap health status - if (agent.getDhe() > 1.) { - agent.setDhe(1.); + if (agent.getHealthSelfRated() > 1.) { + agent.setHealthSelfRated(1.); } else { - agent.setDhe(3.); //TODO: What numerical value should correspond to "good" health? + agent.setHealthSelfRated(3.); //TODO: What numerical value should correspond to "good" health? } } @@ -1510,7 +1517,6 @@ public void resample(Person agent) { int malesUnmatched = 0; int femalesUnmatched = 0; - @SuppressWarnings("unchecked") private void unionMatchingSBAM() { int malesToBePartnered = 0; @@ -1537,7 +1543,7 @@ private void unionMatchingSBAM() { MultiKeyCoefficientMap marriageTypesToAdjustMap = Parameters.getMarriageTypesFrequency().clone(); //Clone the original map loaded from Excel to adjust frequencies on a copy //Create a set of keys on which the types are defined: currently Gender, Region, Education, Age Group - Set keysMultiKeySet = new LinkedHashSet(); + var keysMultiKeySet = new LinkedHashSet>(); Set keysStringSet = new LinkedHashSet(); for(Gender gender : Gender.values()) { @@ -1555,7 +1561,7 @@ private void unionMatchingSBAM() { String tmpKeyString = gender + " " + region + " " + education + " " + ageGroup; //MultiKey defined above, but for most methods we use a composite String key instead as MultiKeyMap has a limit of keys for (Person person : tmpPersonsSet) { - if (person.getDeh_c4().equals(education) && person.getDemAgeGroup() == ageGroup) tmpPersonsSet2.add(person); //If education level matches add person to the set + if (person.getEduHighestC4().equals(education) && person.getDemAgeGroup() == ageGroup) tmpPersonsSet2.add(person); //If education level matches add person to the set } personsToMatch2.put(tmpKeyString, tmpPersonsSet2); //Add a key and set of people to set of persons to match. Each key corresponds to a set of people of certain Gender, Region, and Education who want to match @@ -1565,11 +1571,7 @@ private void unionMatchingSBAM() { //Create a set containing row keys of marriageTypesToAdjust: Set tmpKeysStringSet = new LinkedHashSet(); - MapIterator frequenciesIterator = marriageTypesToAdjustMap.mapIterator(); - while (frequenciesIterator.hasNext()) { - - frequenciesIterator.next(); - MultiKey tmpKeyMultiKey = (MultiKey) frequenciesIterator.getKey(); + for (var tmpKeyMultiKey : marriageTypesToAdjustMap.keySet()) { String key0String = tmpKeyMultiKey.getKey(0).toString(); tmpKeysStringSet.add(key0String); //The only types not in the set should be those that don't have any matches in the data } @@ -1577,7 +1579,7 @@ private void unionMatchingSBAM() { if(tmpKeysStringSet.contains(tmpKeyString)) { //Check if the target is contained in frequencies from the data - if not, 0 entries cannot be adjusted anyway marriageTargetsByKey.put(tmpKeyString, tmpTargetDouble); //Update marriageTargetByKey - MultiKey tmpKeyMultiKey = new MultiKey(gender, region, education, ageGroup); + var tmpKeyMultiKey = new MultiKey(gender, region, education, ageGroup); keysMultiKeySet.add(tmpKeyMultiKey); //Add MultiKey to set of keys keysStringSet.add(tmpKeyString); } @@ -1590,7 +1592,7 @@ private void unionMatchingSBAM() { //theoretically could occur? (i.e. no same sex matches, and no cross-region matches) but were not observed in the data. if(adjustZeroEntries) { - for (MultiKey key1 : keysMultiKeySet) { //For each row in the frequency matrix + for (var key1 : keysMultiKeySet) { //For each row in the frequency matrix Gender gender1 = (Gender) key1.getKey(0); Region region1 = (Region) key1.getKey(1); @@ -1598,7 +1600,7 @@ private void unionMatchingSBAM() { int ageGroup1 = (int) key1.getKey(3); String key1String = gender1 + " " + region1 + " " + education1 + " " + ageGroup1; // System.out.println(); - for(MultiKey key2 : keysMultiKeySet) { //For each column + for(var key2 : keysMultiKeySet) { //For each column Gender gender2 = (Gender) key2.getKey(0); Region region2 = (Region) key2.getKey(1); @@ -1638,23 +1640,12 @@ private void unionMatchingSBAM() { //Instead of iterating through rows and columns, go through every element of the map and add to the row / col sum depending on key1 and key2 //marriageTypesToAdjust is a map, where key is a MultiKey with two values (Strings): first value identifies one type, second value identifies second type, value stores the frequency of matches. //Instead of iterating through rows and columns, can iterate through each cell of the map and add it to rowSum (and later on to colSum). - MapIterator frequenciesIterator = marriageTypesToAdjustMap.mapIterator(); - - while (frequenciesIterator.hasNext()) { - - frequenciesIterator.next(); - MultiKey tmpKeyMultiKey = (MultiKey) frequenciesIterator.getKey(); //Get MultiKey identifying each cell (mk.getKey(0) is row, mk.getKey(1) is column) - double tmpValueDouble = 0.; - if (rowSumsMap.get(tmpKeyMultiKey.getKey(0).toString()) == null) { //If null value in rowSumsMap, then just put the current value, otherwise add - - tmpValueDouble = ((Number) frequenciesIterator.getValue()).doubleValue(); - } else { - - tmpValueDouble = rowSumsMap.get(tmpKeyMultiKey.getKey(0).toString()) + ((Number) frequenciesIterator.getValue()).doubleValue(); - } - - //To get row sums add value to a map where key0 is the key - rowSumsMap.put(tmpKeyMultiKey.getKey(0).toString(), tmpValueDouble); + for (var mapEntry : marriageTypesToAdjustMap.entrySet()) { + var tmpKeyMultiKey = mapEntry.getKey(); //Get MultiKey identifying each cell (mk.getKey(0) is row, mk.getKey(1) is column) + var keyStr = tmpKeyMultiKey.getKey(0).toString(); + double tmpValueDouble = ((Number) mapEntry.getValue()).doubleValue(); + tmpValueDouble += rowSumsMap.getOrDefault(keyStr, 0.0); + rowSumsMap.put(keyStr, tmpValueDouble); } //Get target by key and divide by row sum for that key to get row multiplier, same for column later on marriageTargetsByKey.keySet().iterator().forEachRemaining(key -> rowMprMap.put(key, marriageTargetsByKey.get(key)/rowSumsMap.get(key))); @@ -1667,11 +1658,11 @@ private void unionMatchingSBAM() { }); //Now knowing the row multiplier, multiply entries in the frequency map (marriageTypesToAdjust) - frequenciesIterator = marriageTypesToAdjustMap.mapIterator(); + var frequenciesIterator = marriageTypesToAdjustMap.mapIterator(); while (frequenciesIterator.hasNext()) { frequenciesIterator.next(); - MultiKey tmpKeyMultiKey = (MultiKey) frequenciesIterator.getKey(); + var tmpKeyMultiKey = frequenciesIterator.getKey(); double tmpValueDouble = ((Number) frequenciesIterator.getValue()).doubleValue(); tmpValueDouble *= rowMprMap.get(tmpKeyMultiKey.getKey(0).toString()); frequenciesIterator.setValue(tmpValueDouble); @@ -1682,7 +1673,7 @@ private void unionMatchingSBAM() { while (frequenciesIterator.hasNext()) { frequenciesIterator.next(); - MultiKey tmpKeyMultiKey = (MultiKey) frequenciesIterator.getKey(); + var tmpKeyMultiKey = frequenciesIterator.getKey(); double tmpValueDouble = 0.; if (colSumsMap.get(tmpKeyMultiKey.getKey(1).toString()) == null) { @@ -1710,7 +1701,7 @@ private void unionMatchingSBAM() { while (frequenciesIterator.hasNext()) { frequenciesIterator.next(); - MultiKey tmpKeyMultiKey = (MultiKey) frequenciesIterator.getKey(); + var tmpKeyMultiKey = frequenciesIterator.getKey(); double tmpValueDouble = ((Number) frequenciesIterator.getValue()).doubleValue(); tmpValueDouble *= colMprMap.get(tmpKeyMultiKey.getKey(1).toString()); frequenciesIterator.setValue(tmpValueDouble); @@ -1734,6 +1725,7 @@ private void unionMatchingSBAM() { /* * Use matching method provided with JAS-mine: */ + var ism = new IterativeSimpleMatching(); for(String key : keysStringSet) { for(String keyOther : keysStringSet) { @@ -1774,10 +1766,9 @@ private void unionMatchingSBAM() { " people in Q1 and " + unmatchedQ2.size() + " in Q2. (Originally Q2 had " + unmatchedQ2full.size() + " people."); unmatchedQ2.stream().iterator().forEachRemaining(persontodisp -> System.out.println("PID " + persontodisp.getKey().getId() + " HHID " + persontodisp.getHousehold().getKey().getId())); */ - Pair, Set> unmatchedSetsPair = new Pair<>(unmatchedQ1Set, unmatchedQ2Set); //System.out.println("People in Q1 = " + unmatched.getFirst().size() + " People in Q2 = " + unmatched.getSecond().size()); - unmatchedSetsPair = IterativeSimpleMatching.getInstance().matching( - unmatchedSetsPair.getFirst(), null, null, unmatchedSetsPair.getSecond(), null, + ism.matching( + unmatchedQ1Set, null, null, unmatchedQ2Set, null, //This closure calculates the score for potential couple new MatchingScoreClosure() { @@ -1903,21 +1894,6 @@ private void evalMatches(Pair, Set> unmatched, boolean align } } - private void socialCareMarketClearing() { - - // adjust provision so that aggregate provision broadly matches aggregate receipt - double careProvisionAdjustment = Parameters.getTimeSeriesValue(getYear(),TimeSeriesVariable.CareProvisionAdjustment); - SocialCareAlignment socialCareAlignment = new SocialCareAlignment(persons, careProvisionAdjustment); - double[] startVal = new double[] {careProvisionAdjustment}; - double[] lowerBound = new double[] {careProvisionAdjustment - 1.5}; - double[] upperBound = new double[] {careProvisionAdjustment + 1.5}; - RootSearch search = new RootSearch(lowerBound, upperBound, startVal, socialCareAlignment, 1.0E-2, 0.001); - search.evaluate(); - if (search.isTargetAltered()) { - Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], TimeSeriesVariable.CareProvisionAdjustment); - } - } - /* Private helper method used to set up alignment for different occupancy types @@ -2156,79 +2132,6 @@ public void resample(Person agent) { } - /** - * PROCESS - ALIGN THE SHARE OF EMPLOYED IN THE SIMULATED POPULATION - */ - - private void employmentAlignment() { - - //Create a nested map to store persons by gender and region - LinkedHashMap>> personsByGenderAndRegion; - personsByGenderAndRegion = new LinkedHashMap>>(); - - EnumSet regionEnumSet = null; - if (country.equals(Country.IT)) { - regionEnumSet = EnumSet.of(Region.ITC, Region.ITH, Region.ITI, Region.ITF, Region.ITG); - } else if (country.equals(Country.UK)) { - regionEnumSet = EnumSet.of(Region.UKC, Region.UKD, Region.UKE, Region.UKF, Region.UKG, Region.UKH, Region.UKI, Region.UKJ, Region.UKK, Region.UKL, Region.UKM, Region.UKN); - } - - for (Gender gender : Gender.values()) { - personsByGenderAndRegion.put(gender, new LinkedHashMap>()); - for (Region region : regionEnumSet) { - personsByGenderAndRegion.get(gender).put(region, new LinkedHashSet()); - } - } - - //Iterate over persons and add them to the nested map above - for (Person person : persons) { - if (person.getDemAge() >= 18 && person.getDemAge() <= 64) { - personsByGenderAndRegion.get(person.getDemMaleFlag()).get(person.getRegion()).add(person); - } - } - - //For all gender and region combinations, compare the share of employed persons with the alignment target - for (Gender gender : Gender.values()) { - for (Region region : regionEnumSet) { - double numberEmployed = 0; - Set personsToIterateOver = personsByGenderAndRegion.get(gender).get(region); - - for (Person person : personsToIterateOver) { - numberEmployed += person.getEmployed(); - } - - double sizeSimulatedSet = personsToIterateOver.size(); - - double shareEmployedSimulated = numberEmployed/sizeSimulatedSet; - double shareEmployedTargeted = Parameters.getTimeSeriesValue(year, gender.toString(), region.toString(), TimeSeriesVariable.EmploymentAlignment); - - int targetNumberEmployed = (int) (shareEmployedTargeted*sizeSimulatedSet); - - - //Simulated share of employment exceeds projections => move some individuals at random to non-employment - if ((int) numberEmployed > targetNumberEmployed) { - new ResamplingAlignment().align( - personsToIterateOver, - null, - new AlignmentOutcomeClosure() { - @Override - public boolean getOutcome(Person person) { - return person.getLes_c4().equals(Les_c4.EmployedOrSelfEmployed); - } - - @Override - public void resample(Person person) { - person.setLes_c4(Les_c4.NotEmployed); - person.setLabourSupplyWeekly(Labour.ZERO); - } - }, - targetNumberEmployed); - } - } - } - - } - /** * * PROCESS - ALIGN THE SHARE OF STUDENTS IN THE SIMULATED POPULATION @@ -2335,11 +2238,10 @@ private void inSchoolAlignment() { } lastInSchoolAdjustment = search.getTarget()[0]; - // update and exit - if (search.isTargetAltered()) { - Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], TimeSeriesVariable.InSchoolAdjustment); // If adjustment is altered from the initial value, update the map - System.out.println("InSchool adjustment value was " + search.getTarget()[0]); - } + // Always persist the solved value for the current year so the InSchool process (which runs next in the + // schedule and reads timeseries[year] via getInSchoolAdjustment) applies exactly this adjustment. + Parameters.putTimeSeriesValue(getYear(), search.getTarget()[0], TimeSeriesVariable.InSchoolAdjustment); + System.out.println("InSchool adjustment value was " + search.getTarget()[0]); } @@ -2370,10 +2272,10 @@ private void educationLevelAlignment() { for(Person person : persons) { if( person.getDemMaleFlag().equals(gender) && person.getDemAge() >= 16 && person.getDemAge() <= 45) { //Alignment projections are based only on persons younger than 66 years old if (person.isToLeaveSchool()) { //Align only people leaving school? - if(person.getDeh_c4() != null) { - if (person.getDeh_c4().equals(Education.Low)) { + if(person.getEduHighestC4() != null) { + if (person.getEduHighestC4().equals(Education.Low)) { numPersonsOfThisGenderWithLowEduPreAlignment++; - } else if (person.getDeh_c4().equals(Education.High)) { + } else if (person.getEduHighestC4().equals(Education.High)) { numPersonsOfThisGenderWithHighEduPreAlignment++; } numPersonsOfThisGender++; @@ -2404,7 +2306,7 @@ private void educationLevelAlignment() { int countHigh = 0, countLow = 0; for(Person schoolLeaver : personsLeavingEducation.get(gender)) { //This tries to maintain the naturally generated number of school-leavers with medium education, so that an increase in the number of school-leavers with high education is achieved through a reduction in the number of school-leavers with low education. However, in the event that the number of school-leavers with either high or medium education are more than the total number of school leavers (in this year), we end up having no school leavers with low education and we have to reduce the number of school leavers with medium education - if (schoolLeaver.getDeh_c4().equals(Education.Medium)) { + if (schoolLeaver.getEduHighestC4().equals(Education.Medium)) { if(numPersonsOfThisGenderWithHighEduPreAlignment + countHigh < numPersonsWithHighEduAlignmentTarget) { //Only align if number of people in population with high education is too low. schoolLeaver.setEducation(Education.High); //As the personsLeavingEducation list is sorted by descending age, the oldest people leaving education are assigned to have high education levels countHigh++; @@ -2412,12 +2314,12 @@ private void educationLevelAlignment() { schoolLeaver.setEducation(Education.Low); //When the number of high education level people have been assigned, the next oldest people are assigned to have medium education levels countLow++; } - } else if (schoolLeaver.getDeh_c4().equals(Education.High)) { + } else if (schoolLeaver.getEduHighestC4().equals(Education.High)) { if (numPersonsOfThisGenderWithHighEduPreAlignment + countHigh > numPersonsWithHighEduAlignmentTarget) { //If too many people with high education schoolLeaver.setEducation(Education.Medium); countHigh--; } - } else if (schoolLeaver.getDeh_c4().equals(Education.Low)) { + } else if (schoolLeaver.getEduHighestC4().equals(Education.Low)) { if (numPersonsOfThisGenderWithLowEduPreAlignment + countLow > numPersonsWithLowEduAlignmentTarget) { schoolLeaver.setEducation(Education.Medium); countLow--; @@ -2434,10 +2336,10 @@ private void educationLevelAlignment() { for(Person person : persons) { if( person.getDemMaleFlag().equals(gender) && (person.getDemAge() <= 65) ) { //Alignment projections are based only on persons younger than 66 years old if (person.isToLeaveSchool()) { - if(person.getDeh_c4() != null) { - if(person.getDeh_c4().equals(Education.High)) { + if(person.getEduHighestC4() != null) { + if(person.getEduHighestC4().equals(Education.High)) { countHighEdPeople++; - } else if(person.getDeh_c4().equals(Education.Medium)) { + } else if(person.getEduHighestC4().equals(Education.Medium)) { countMediumEdPeople++; } } @@ -2930,6 +2832,8 @@ public void setCountry(Country country) { public void setProjectFormalChildcare(boolean projectFormalChildcare) { this.projectFormalChildcare = projectFormalChildcare; } public boolean getDonorPoolAveraging() { return donorPoolAveraging; } public void setDonorPoolAveraging(boolean val) { donorPoolAveraging = val; } + public boolean getTaxDonorUpratingByWage() { return taxDonorUpratingByWage; } + public void setTaxDonorUpratingByWage(boolean val) { taxDonorUpratingByWage = val; } public Integer getPopSize() { return popSize; @@ -3228,8 +3132,16 @@ public UnionMatchingMethod getUnionMatchingMethod() { return unionMatchingMethod; } + public void setUnionMatchingMethod(String value) { + this.unionMatchingMethod = (value == null || value.isBlank()) + ? UnionMatchingMethod.ParametricNoRegion + : UnionMatchingMethod.valueOf(value); + } + public void setUnionMatchingMethod(UnionMatchingMethod unionMatchingMethod) { - this.unionMatchingMethod = unionMatchingMethod; + this.unionMatchingMethod = unionMatchingMethod == null + ? UnionMatchingMethod.ParametricNoRegion + : unionMatchingMethod; } public boolean isAlignFertility() { @@ -3263,6 +3175,12 @@ public void setAlignInSchool(boolean flag) { public boolean isAlignInSchool() { return alignInSchool; } + public boolean isAlignPopulation() { return alignPopulation; } + + public boolean isAlignEducation() { return alignEducation; } + + public boolean isEnableIntertemporalOptimisations() { return enableIntertemporalOptimisations; } + public double getInSchoolAdjustment() { if (!alignInSchool) { return 0.0; @@ -3467,7 +3385,7 @@ private static void populateTaxdbReferences() { try { // access database and obtain donor pool - Map propertyMap = new HashMap(); + var propertyMap = new HashMap(); propertyMap.put("hibernate.connection.url", "jdbc:h2:file:" + RunDatabasePath + ";TRACE_LEVEL_FILE=0;TRACE_LEVEL_SYSTEM_OUT=0;AUTO_SERVER=TRUE"); EntityManager em = Persistence.createEntityManagerFactory("tax-database", propertyMap).createEntityManager(); txn = em.getTransaction(); @@ -3599,7 +3517,7 @@ private LifetimeIncomeImputation getLifetimeIncomes(int year) { // query database String fileName = Parameters.getInputDirectory() + "input"; - Map propertyMap = new HashMap(); + var propertyMap = new HashMap(); propertyMap.put("hibernate.connection.url", "jdbc:h2:file:" + fileName + ";TRACE_LEVEL_FILE=0;TRACE_LEVEL_SYSTEM_OUT=0;AUTO_SERVER=TRUE"); EntityManager em = Persistence.createEntityManagerFactory("lifetime-incomes", propertyMap).createEntityManager(); txn = em.getTransaction(); @@ -3633,15 +3551,16 @@ private Processed getProcessed() { private Processed getProcessed(Country country, int startYear, int popSize, boolean ignoreTargetsAtPopulationLoad) { Processed processed = null; - Processed processed_return = null; EntityTransaction txn = null; try { // query database - Map propertyMap = new HashMap(); + var propertyMap = new HashMap(); propertyMap.put("hibernate.connection.url", "jdbc:h2:file:" + getPersistDatabasePath() + ";TRACE_LEVEL_FILE=0;TRACE_LEVEL_SYSTEM_OUT=0;AUTO_SERVER=TRUE"); - EntityManager em = Persistence.createEntityManagerFactory("starting-population", propertyMap).createEntityManager(); + if (emfStartingPopulationPersist == null) + emfStartingPopulationPersist = Persistence.createEntityManagerFactory("starting-population", propertyMap); + EntityManager em = emfStartingPopulationPersist.createEntityManager(); txn = em.getTransaction(); txn.begin(); // String query = "SELECT DISTINCT processed FROM Processed processed LEFT JOIN FETCH processed.households households LEFT JOIN FETCH households.benefitUnits benefitUnits LEFT JOIN FETCH benefitUnits.members members WHERE processed.startYear = " + startYear + " AND processed.popSize = " + popSize + " AND processed.country = " + country + " AND processed.noTargets = " + ignoreTargetsAtPopulationLoad + " ORDER BY households.key.id"; @@ -3655,16 +3574,15 @@ private Processed getProcessed(Country country, int startYear, int popSize, bool if (processedList.size()>1) throw new RuntimeException("more than one relevant dataset returned from database"); processed = processedList.get(0); + // force-initialize lazy collections within the open session (triggers SUBSELECT batch loads) processed.resetDependents(); -// // Now fetch households for THIS specific Processed instance only - processed_return = em.createQuery( + em.createQuery( "SELECT p FROM Processed p LEFT JOIN FETCH p.households h WHERE p = :proc ORDER BY h.key.id", Processed.class) .setParameter("proc", processed) - .getSingleResult(); - - processed_return.resetDependents(); + .getSingleResult() + .resetDependents(); } // close database connection @@ -3687,9 +3605,11 @@ private List loadStartingPopulation() { EntityTransaction txn = null; try { - Map propertyMap = new HashMap(); + var propertyMap = new HashMap(); propertyMap.put("hibernate.connection.url", "jdbc:h2:file:" + RunDatabasePath + ";TRACE_LEVEL_FILE=0;TRACE_LEVEL_SYSTEM_OUT=0;AUTO_SERVER=TRUE"); - EntityManager em = Persistence.createEntityManagerFactory("starting-population", propertyMap).createEntityManager(); + if (emfStartingPopulationRun == null) + emfStartingPopulationRun = Persistence.createEntityManagerFactory("starting-population", propertyMap); + EntityManager em = emfStartingPopulationRun.createEntityManager(); txn = em.getTransaction(); txn.begin(); String query = "SELECT households FROM Household households"; @@ -3698,6 +3618,13 @@ private List loadStartingPopulation() { households = em.createQuery(query).getResultList(); log.info("Query complete"); + // force-initialize lazy collections within the open session (triggers SUBSELECT batch loads) + for (Household hh : households) { + for (BenefitUnit bu : hh.getBenefitUnits()) { + bu.getMembers().size(); + } + } + // close database connection em.close(); } catch (Exception e) { @@ -3720,9 +3647,11 @@ private void persistProcessed(Set households, Country country, int st EntityTransaction txn = null; try { - Map propertyMap = new HashMap(); + var propertyMap = new HashMap(); propertyMap.put("hibernate.connection.url", "jdbc:h2:file:" + getPersistDatabasePath() + ";TRACE_LEVEL_FILE=0;TRACE_LEVEL_SYSTEM_OUT=0;AUTO_SERVER=TRUE"); - EntityManager em = Persistence.createEntityManagerFactory("starting-population", propertyMap).createEntityManager(); + if (emfStartingPopulationPersist == null) + emfStartingPopulationPersist = Persistence.createEntityManagerFactory("starting-population", propertyMap); + EntityManager em = emfStartingPopulationPersist.createEntityManager(); txn = em.getTransaction(); txn.begin(); diff --git a/src/main/java/simpaths/model/UnionMatching.java b/src/main/java/simpaths/model/UnionMatching.java index f41d0f626..a20f11324 100644 --- a/src/main/java/simpaths/model/UnionMatching.java +++ b/src/main/java/simpaths/model/UnionMatching.java @@ -68,8 +68,8 @@ public void evaluate(String typ) { public void evaluateIRM() { - // unmatched = IterativeSimpleMatching.getInstance().matching( - unmatched = IterativeRandomMatching.getInstance().matching( + var ism = new IterativeRandomMatching(); + unmatched = ism.matching( unmatched.getFirst(), //Males. Allows to iterate (initially it is personsToMatch.get(Gender.Male).get(region)) null, //No need for filter sub-population as group is already filtered by gender and region. @@ -100,8 +100,8 @@ public void match(Person male, Person female) { //The SimpleMatching.getI // EVALUATE MATCHES BY GLOBAL MATCHING public void evaluateGM() { - // unmatched = IterativeSimpleMatching.getInstance().matching( - unmatched = GlobalMatching.getInstance().matching( + var gm = new GlobalMatching(); + unmatched = gm.matching( unmatched.getFirst(), null, diff --git a/src/main/java/simpaths/model/Validator.java b/src/main/java/simpaths/model/Validator.java index adf16e7db..9a6e2aa28 100644 --- a/src/main/java/simpaths/model/Validator.java +++ b/src/main/java/simpaths/model/Validator.java @@ -1,36 +1,22 @@ package simpaths.model; import simpaths.data.Parameters; -import simpaths.experiment.SimPathsCollector; -import simpaths.experiment.SimPathsObserver; import simpaths.model.enums.Gender; import simpaths.model.enums.Region; import microsim.engine.SimulationEngine; -import microsim.statistics.IDoubleSource; - -public class Validator implements IDoubleSource { +public class Validator { private final SimPathsModel model; - private final SimPathsCollector collector; - private final SimPathsObserver observer; Number value; - // --------------------------------------------------------------------- - // CONSTRUCTOR - // --------------------------------------------------------------------- public Validator() { super(); model = (SimPathsModel) SimulationEngine.getInstance().getManager(SimPathsModel.class.getCanonicalName()); - collector = (SimPathsCollector) SimulationEngine.getInstance().getManager(SimPathsCollector.class.getCanonicalName()); - observer = (SimPathsObserver) SimulationEngine.getInstance().getManager(SimPathsObserver.class.getCanonicalName()); } - // --------------------------------------------------------------------- - // Methods used by the validator - // --------------------------------------------------------------------- public int getPopulationProjectionByAge(int startAge, int endAge) { double numberOfPeople = 0.; for (Gender gender : Gender.values()) { @@ -43,1568 +29,4 @@ public int getPopulationProjectionByAge(int startAge, int endAge) { int numberOfPeopleScaled = (int) Math.round(numberOfPeople / model.getScalingFactor()); return numberOfPeopleScaled; } - - - // --------------------------------------------------------------------- - // implements IDoubleSource for use with the Observer - // --------------------------------------------------------------------- - - - public enum DoublesVariables { - populationProjectionsByAge_0_18, - populationProjectionsByAge_0_0, - populationProjectionsByAge_2_10, - populationProjectionsByAge_11_15, - populationProjectionsByAge_19_25, - populationProjectionsByAge_40_59, - populationProjectionsByAge_60_79, - populationProjectionsByAge_80_100, - studentsByAge_15_19, - studentsByAge_20_24, - studentsByAge_25_29, - studentsByAge_30_34, - studentsByAge_35_39, - studentsByAge_40_59, - studentsByAge_60_79, - studentsByAge_80_100, - studentsByAge_All, - studentsByRegion_ITC, - studentsByRegion_ITH, - studentsByRegion_ITI, - studentsByRegion_ITF, - studentsByRegion_ITG, - studentsByRegion_All, - studentsByRegion_UKC, - studentsByRegion_UKD, - studentsByRegion_UKE, - studentsByRegion_UKF, - studentsByRegion_UKG, - studentsByRegion_UKH, - studentsByRegion_UKI, - studentsByRegion_UKJ, - studentsByRegion_UKK, - studentsByRegion_UKL, - studentsByRegion_UKM, - studentsByRegion_UKN, - educationLevelHigh, - educationLevelMedium, - educationLevelLow, - educationLevelHighByAge_20_29, - educationLevelHighByAge_30_39, - educationLevelHighByAge_40_49, - educationLevelHighByAge_50_59, - educationLevelMediumByAge_20_29, - educationLevelMediumByAge_30_39, - educationLevelMediumByAge_40_49, - educationLevelMediumByAge_50_59, - educationLevelLowByAge_20_29, - educationLevelLowByAge_30_39, - educationLevelLowByAge_40_49, - educationLevelLowByAge_50_59, - educationLevelLowByRegion_ITC, - educationLevelLowByRegion_ITH, - educationLevelLowByRegion_ITI, - educationLevelLowByRegion_ITF, - educationLevelLowByRegion_ITG, - educationLevelLowByRegion_UKC, - educationLevelLowByRegion_UKD, - educationLevelLowByRegion_UKE, - educationLevelLowByRegion_UKF, - educationLevelLowByRegion_UKG, - educationLevelLowByRegion_UKH, - educationLevelLowByRegion_UKI, - educationLevelLowByRegion_UKJ, - educationLevelLowByRegion_UKK, - educationLevelLowByRegion_UKL, - educationLevelLowByRegion_UKM, - educationLevelLowByRegion_UKN, - educationLevelHighByRegion_ITC, - educationLevelHighByRegion_ITH, - educationLevelHighByRegion_ITI, - educationLevelHighByRegion_ITF, - educationLevelHighByRegion_ITG, - educationLevelHighByRegion_UKC, - educationLevelHighByRegion_UKD, - educationLevelHighByRegion_UKE, - educationLevelHighByRegion_UKF, - educationLevelHighByRegion_UKG, - educationLevelHighByRegion_UKH, - educationLevelHighByRegion_UKI, - educationLevelHighByRegion_UKJ, - educationLevelHighByRegion_UKK, - educationLevelHighByRegion_UKL, - educationLevelHighByRegion_UKM, - educationLevelHighByRegion_UKN, - partneredShare_ITC, - partneredShare_ITH, - partneredShare_ITI, - partneredShare_ITF, - partneredShare_ITG, - partneredShare_All, - partneredShare_UKC, - partneredShare_UKD, - partneredShare_UKE, - partneredShare_UKF, - partneredShare_UKG, - partneredShare_UKH, - partneredShare_UKI, - partneredShare_UKJ, - partneredShare_UKK, - partneredShare_UKL, - partneredShare_UKM, - partneredShare_UKN, - disabledFemale, - disabledMale, - disabledFemale_0_49, - disabledMale_0_49, - disabledFemale_50_74, - disabledMale_50_74, - disabledFemale_75_100, - disabledMale_75_100, - healthFemale_0_49, - healthMale_0_49, - healthFemale_50_74, - healthMale_50_74, - healthFemale_75_100, - healthMale_75_100, - mentalHealthMale_20_29, - mentalHealthMale_30_39, - mentalHealthMale_40_49, - mentalHealthMale_50_59, - mentalHealthFemale_20_29, - mentalHealthFemale_30_39, - mentalHealthFemale_40_49, - mentalHealthFemale_50_59, - psychDistressMale_20_29, - psychDistressMale_30_39, - psychDistressMale_40_49, - psychDistressMale_50_59, - psychDistressFemale_20_29, - psychDistressFemale_30_39, - psychDistressFemale_40_49, - psychDistressFemale_50_59, - psychDistressMale_Low_20_29, - psychDistressMale_Low_30_39, - psychDistressMale_Low_40_49, - psychDistressMale_Low_50_59, - psychDistressFemale_Low_20_29, - psychDistressFemale_Low_30_39, - psychDistressFemale_Low_40_49, - psychDistressFemale_Low_50_59, - - psychDistressMale_Medium_20_29, - psychDistressMale_Medium_30_39, - psychDistressMale_Medium_40_49, - psychDistressMale_Medium_50_59, - psychDistressFemale_Medium_20_29, - psychDistressFemale_Medium_30_39, - psychDistressFemale_Medium_40_49, - psychDistressFemale_Medium_50_59, - - psychDistressMale_High_20_29, - psychDistressMale_High_30_39, - psychDistressMale_High_40_49, - psychDistressMale_High_50_59, - psychDistressFemale_High_20_29, - psychDistressFemale_High_30_39, - psychDistressFemale_High_40_49, - psychDistressFemale_High_50_59, - - healthMCSMale_20_29, - healthMCSMale_30_39, - healthMCSMale_40_49, - healthMCSMale_50_59, - healthMCSFemale_20_29, - healthMCSFemale_30_39, - healthMCSFemale_40_49, - healthMCSFemale_50_59, - - healthPCSMale_20_29, - healthPCSMale_30_39, - healthPCSMale_40_49, - healthPCSMale_50_59, - healthPCSFemale_20_29, - healthPCSFemale_30_39, - healthPCSFemale_40_49, - healthPCSFemale_50_59, - - lifeSatisfactionMale_20_29, - lifeSatisfactionMale_30_39, - lifeSatisfactionMale_40_49, - lifeSatisfactionMale_50_59, - lifeSatisfactionFemale_20_29, - lifeSatisfactionFemale_30_39, - lifeSatisfactionFemale_40_49, - lifeSatisfactionFemale_50_59, - - employmentMale, - employmentFemale, - employmentMaleByAge_20_29, - employmentMaleByAge_30_39, - employmentMaleByAge_40_49, - employmentMaleByAge_50_59, - employmentFemaleByAge_20_29, - employmentFemaleByAge_30_39, - employmentFemaleByAge_40_49, - employmentFemaleByAge_50_59, - employmentFemaleChild_0_5, - employmentFemaleChild_6_18, - employmentFemaleNoChild, // - employed_female_ITC, - employed_male_ITC, - employed_female_ITH, - employed_male_ITH, - employed_female_ITI, - employed_male_ITI, - employed_female_ITF, - employed_male_ITF, - employed_female_ITG, - employed_male_ITG, - employed_female_UKC, - employed_female_UKD, - employed_female_UKE, - employed_female_UKF, - employed_female_UKG, - employed_female_UKH, - employed_female_UKI, - employed_female_UKJ, - employed_female_UKK, - employed_female_UKL, - employed_female_UKM, - employed_female_UKN, - employed_male_UKC, - employed_male_UKD, - employed_male_UKE, - employed_male_UKF, - employed_male_UKG, - employed_male_UKH, - employed_male_UKI, - employed_male_UKJ, - employed_male_UKK, - employed_male_UKL, - employed_male_UKM, - employed_male_UKN, - labour_supply_High, - labour_supply_Medium, - labour_supply_Low, - labour_supply_InEducation, - activityStatus_Employed, - activityStatus_NotEmployedRetired, - activityStatus_Student, - homeownership_BenefitUnit, - grossEarnings_Female_High, - grossEarnings_Female_Medium, - grossEarnings_Female_Low, - grossEarnings_Female_InEducation, - grossEarnings_Male_High, - grossEarnings_Male_Medium, - grossEarnings_Male_Low, - grossEarnings_Male_InEducation, - lhw_Female_High, - lhw_Female_Medium, - lhw_Female_Low, - lhw_Male_High, - lhw_Male_Medium, - lhw_Male_Low, - lhw_Male, - lhw_Female, - hourlyWage_Female_High, - hourlyWage_Female_Medium, - hourlyWage_Female_Low, - hourlyWage_Female_InEducation, - hourlyWage_Male_High, - hourlyWage_Male_Medium, - hourlyWage_Male_Low, - hourlyWage_Male_InEducation, - } - - @Override - public double getDoubleValue(Enum variableID) { - - switch ((Validator.DoublesVariables) variableID) { - - case populationProjectionsByAge_0_18: - return getPopulationProjectionByAge(0,18); - case populationProjectionsByAge_0_0: - return getPopulationProjectionByAge(0,0); - case populationProjectionsByAge_2_10: - return getPopulationProjectionByAge(2,10); - case populationProjectionsByAge_11_15: - return getPopulationProjectionByAge(11,15); - case populationProjectionsByAge_19_25: - return getPopulationProjectionByAge(19,25); - case populationProjectionsByAge_40_59: - return getPopulationProjectionByAge(40,59); - case populationProjectionsByAge_60_79: - return getPopulationProjectionByAge(60,79); - case populationProjectionsByAge_80_100: - return getPopulationProjectionByAge(80,100); - case studentsByAge_15_19: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_15_19")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_20_24: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_20_24")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_25_29: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_25_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_30_34: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_30_34")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_35_39: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_35_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_40_59: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_40_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_60_79: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_60_79")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_80_100: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_80_100")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByAge_All: - value = ((Number) Parameters.getValidationStudentsByAge().getValue(model.getYear()-1, "ageGroup_All")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_ITC: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_ITC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_ITH: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_ITH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_ITI: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_ITI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_ITF: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_ITF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_ITG: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_ITG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_All: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_All")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKC: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKD: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKD")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKE: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKE")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKF: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKG: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKH: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKI: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKJ: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKJ")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKK: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKK")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKL: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKL")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKM: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKM")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case studentsByRegion_UKN: - value = ((Number) Parameters.getValidationStudentsByRegion().getValue(model.getYear()-1, "region_UKN")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHigh: - value = ((Number) Parameters.getValidationEducationLevel().getValue(model.getYear()-1, "educ_high")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelMedium: - value = ((Number) Parameters.getValidationEducationLevel().getValue(model.getYear()-1, "educ_med")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLow: - value = ((Number) Parameters.getValidationEducationLevel().getValue(model.getYear()-1, "educ_low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByAge_20_29: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_high_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByAge_30_39: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_high_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByAge_40_49: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_high_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByAge_50_59: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_high_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelMediumByAge_20_29: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_med_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelMediumByAge_30_39: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_med_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelMediumByAge_40_49: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_med_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelMediumByAge_50_59: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_med_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByAge_20_29: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_low_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByAge_30_39: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_low_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByAge_40_49: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_low_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByAge_50_59: - value = ((Number) Parameters.getValidationEducationLevelByAge().getValue(model.getYear()-1, "educ_low_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_ITC: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_ITC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_ITH: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_ITH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_ITI: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_ITI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_ITF: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_ITF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_ITG: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_ITG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKC: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKD: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKD")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKE: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKE")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKF: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKG: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKH: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKI: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKJ: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKJ")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKK: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKK")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKL: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKL")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKM: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKM")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelLowByRegion_UKN: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_low_UKN")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_ITC: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_ITC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_ITH: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_ITH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_ITI: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_ITI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_ITF: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_ITF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_ITG: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_ITG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKC: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKD: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKD")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKE: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKE")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKF: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKG: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKH: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKI: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKJ: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKJ")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKK: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKK")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKL: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKL")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKM: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKM")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case educationLevelHighByRegion_UKN: - value = ((Number) Parameters.getValidationEducationLevelByRegion().getValue(model.getYear()-1, "educ_high_UKN")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_ITC: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_ITC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_ITH: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_ITH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_ITI: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_ITI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_ITF: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_ITF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_ITG: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_ITG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_All: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_All")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKC: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKD: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKD")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKE: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKE")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKF: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKG: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKH: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKI: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKJ: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKJ")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKK: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKK")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKL: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKL")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKM: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKM")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case partneredShare_UKN: - value = ((Number) Parameters.getValidationPartneredShareByRegion().getValue(model.getYear()-1, "partnered_UKN")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledFemale: - value = ((Number) Parameters.getValidationDisabledByGender().getValue(model.getYear()-1, "dlltsd_female")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledMale: - value = ((Number) Parameters.getValidationDisabledByGender().getValue(model.getYear()-1, "dlltsd_male")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledFemale_0_49: - value = ((Number) Parameters.getValidationDisabledByAge().getValue(model.getYear()-1, "disabled_female_0_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledMale_0_49: - value = ((Number) Parameters.getValidationDisabledByAge().getValue(model.getYear()-1, "disabled_male_0_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledFemale_50_74: - value = ((Number) Parameters.getValidationDisabledByAge().getValue(model.getYear()-1, "disabled_female_50_74")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledMale_50_74: - value = ((Number) Parameters.getValidationDisabledByAge().getValue(model.getYear()-1, "disabled_male_50_74")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledFemale_75_100: - value = ((Number) Parameters.getValidationDisabledByAge().getValue(model.getYear()-1, "disabled_female_75_100")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case disabledMale_75_100: - value = ((Number) Parameters.getValidationDisabledByAge().getValue(model.getYear()-1, "disabled_male_75_100")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthFemale_0_49: - value = ((Number) Parameters.getValidationHealthByAge().getValue(model.getYear()-1, "health_female_0_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMale_0_49: - value = ((Number) Parameters.getValidationHealthByAge().getValue(model.getYear()-1, "health_male_0_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthFemale_50_74: - value = ((Number) Parameters.getValidationHealthByAge().getValue(model.getYear()-1, "health_female_50_74")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMale_50_74: - value = ((Number) Parameters.getValidationHealthByAge().getValue(model.getYear()-1, "health_male_50_74")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthFemale_75_100: - value = ((Number) Parameters.getValidationHealthByAge().getValue(model.getYear()-1, "health_female_75_100")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMale_75_100: - value = ((Number) Parameters.getValidationHealthByAge().getValue(model.getYear()-1, "health_male_75_100")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthMale_20_29: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthMale_30_39: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthMale_40_49: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthMale_50_59: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthFemale_20_29: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthFemale_30_39: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthFemale_40_49: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case mentalHealthFemale_50_59: - value = ((Number) Parameters.getValidationMentalHealthByAge().getValue(model.getYear()-1, "mental_health_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAge().getValue(model.getYear()-1, "psych_distress_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - case psychDistressMale_Low_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_Low_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_Low_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_Low_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Low_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Low_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Low_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Low_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAgeLow().getValue(model.getYear()-1, "psych_distress_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - - case psychDistressMale_Medium_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_Medium_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_Medium_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_Medium_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Medium_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Medium_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Medium_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_Medium_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAgeMed().getValue(model.getYear()-1, "psych_distress_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - - case psychDistressMale_High_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_High_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_High_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressMale_High_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_High_20_29: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_High_30_39: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_High_40_49: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case psychDistressFemale_High_50_59: - value = ((Number) Parameters.getValidationPsychDistressByAgeHigh().getValue(model.getYear()-1, "psych_distress_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - -//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - case employmentMale: - value = ((Number) Parameters.getValidationEmploymentByGender().getValue(model.getYear()-1, "employed_Male")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemale: - value = ((Number) Parameters.getValidationEmploymentByGender().getValue(model.getYear()-1, "employed_Female")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentMaleByAge_20_29: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentMaleByAge_30_39: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentMaleByAge_40_49: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentMaleByAge_50_59: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemaleByAge_20_29: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemaleByAge_30_39: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemaleByAge_40_49: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemaleByAge_50_59: - value = ((Number) Parameters.getValidationEmploymentByAgeAndGender().getValue(model.getYear()-1, "employed_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemaleChild_0_5: - value = ((Number) Parameters.getValidationEmploymentByMaternity().getValue(model.getYear()-1, "emp_with_child_0_5")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemaleChild_6_18: - value = ((Number) Parameters.getValidationEmploymentByMaternity().getValue(model.getYear()-1, "emp_with_child_6_18")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employmentFemaleNoChild: - value = ((Number) Parameters.getValidationEmploymentByMaternity().getValue(model.getYear()-1, "emp_without_child")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_ITC: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_ITC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_ITC: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_ITC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_ITH: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_ITH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_ITH: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_ITH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_ITI: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_ITI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_ITI: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_ITI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_ITF: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_ITF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_ITF: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_ITF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_ITG: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_ITG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_ITG: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_ITG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKC: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKD: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKD")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKE: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKE")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKF: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKG: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKH: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKI: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKJ: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKJ")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKK: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKK")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKL: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKL")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKM: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKM")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_female_UKN: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_female_UKN")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKC: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKC")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKD: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKD")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKE: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKE")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKF: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKF")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKG: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKG")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKH: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKH")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKI: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKI")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKJ: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKJ")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKK: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKK")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKL: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKK")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKM: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKM")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case employed_male_UKN: - value = ((Number) Parameters.getValidationEmploymentByGenderAndRegion().getValue(model.getYear()-1, "employed_male_UKN")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case labour_supply_High: - value = ((Number) Parameters.getValidationLabourSupplyByEducation().getValue(model.getYear()-1, "labour_supply_High")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case labour_supply_Medium: - value = ((Number) Parameters.getValidationLabourSupplyByEducation().getValue(model.getYear()-1, "labour_supply_Medium")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case labour_supply_Low: - value = ((Number) Parameters.getValidationLabourSupplyByEducation().getValue(model.getYear()-1, "labour_supply_Low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case labour_supply_InEducation: - value = ((Number) Parameters.getValidationLabourSupplyByEducation().getValue(model.getYear()-1, "labour_supply_InEducation")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case activityStatus_Employed: - value = ((Number) Parameters.getValidationActivityStatus().getValue(model.getYear()-1, "as_employed")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case activityStatus_NotEmployedRetired: - value = ((Number) Parameters.getValidationActivityStatus().getValue(model.getYear()-1, "as_notemployedretired")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case activityStatus_Student: - value = ((Number) Parameters.getValidationActivityStatus().getValue(model.getYear()-1, "as_student")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case homeownership_BenefitUnit: - value = ((Number) Parameters.getValidationHomeownershipBenefitUnits().getValue(model.getYear()-1)); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Female_High: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_female_dehc3_high")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Female_Medium: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_female_dehc3_med")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Female_Low: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_female_dehc3_low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Female_InEducation: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_female_dehc3_ineducation")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Male_High: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_male_dehc3_high")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Male_Medium: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_male_dehc3_med")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Male_Low: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_male_dehc3_low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case grossEarnings_Male_InEducation: - value = ((Number) Parameters.getValidationGrossEarningsByGenderAndEducation().getValue(model.getYear()-1, "grossearnings_male_dehc3_ineducation")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Female_High: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_female_dehc3_high")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Female_Medium: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_female_dehc3_med")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Female_Low: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_female_dehc3_low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Male_High: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_male_dehc3_high")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Male_Medium: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_male_dehc3_med")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Male_Low: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_male_dehc3_low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Male: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_male")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lhw_Female: - value = ((Number) Parameters.getValidationLhwByGenderAndEducation().getValue(model.getYear()-1, "lhw_female")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Female_High: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_female_dehc3_high")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Female_Medium: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_female_dehc3_med")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Female_Low: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_female_dehc3_low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Female_InEducation: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_female_dehc3_ineducation")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Male_High: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_male_dehc3_high")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Male_Medium: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_male_dehc3_med")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Male_Low: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_male_dehc3_low")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case hourlyWage_Male_InEducation: - value = ((Number) Parameters.getHourlyWageByGenderAndEducation().getValue(model.getYear()-1, "hourlywage_male_dehc3_ineducation")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - - /////////// New validators for health and life satisfaction - case healthMCSMale_20_29: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMCSMale_30_39: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMCSMale_40_49: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMCSMale_50_59: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMCSFemale_20_29: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMCSFemale_30_39: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMCSFemale_40_49: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthMCSFemale_50_59: - value = ((Number) Parameters.getValidationHealthMCSByAge().getValue(model.getYear()-1, "health_mcs_score_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - - case healthPCSMale_20_29: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthPCSMale_30_39: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthPCSMale_40_49: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthPCSMale_50_59: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthPCSFemale_20_29: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthPCSFemale_30_39: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthPCSFemale_40_49: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case healthPCSFemale_50_59: - value = ((Number) Parameters.getValidationHealthPCSByAge().getValue(model.getYear()-1, "health_pcs_score_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - - case lifeSatisfactionMale_20_29: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_male_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lifeSatisfactionMale_30_39: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_male_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lifeSatisfactionMale_40_49: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_male_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lifeSatisfactionMale_50_59: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_male_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lifeSatisfactionFemale_20_29: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_female_20_29")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lifeSatisfactionFemale_30_39: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_female_30_39")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lifeSatisfactionFemale_40_49: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_female_40_49")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - case lifeSatisfactionFemale_50_59: - value = ((Number) Parameters.getValidationLifeSatisfactionByAge().getValue(model.getYear()-1, "life_satisfaction_female_50_59")); - if (value != null) { - return value.doubleValue(); - } else return Double.NaN; //If value missing, returning Double.NaN will plot a gap - } - - return 0; - } } diff --git a/src/main/java/simpaths/model/annotations/Lag.java b/src/main/java/simpaths/model/annotations/Lag.java new file mode 100644 index 000000000..ee6d31e59 --- /dev/null +++ b/src/main/java/simpaths/model/annotations/Lag.java @@ -0,0 +1,64 @@ +package simpaths.model.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Marks a field as a lagged value to be updated at the start of each simulation time interval. + * + *

At each period update the annotated field will receive the value of its specified source, + * read from the same object before any lag assignments are written. This read-first semantics + * ensures correct behaviour for multi-period lag chains (e.g. L3 ← L2 ← L1 ← current) + * regardless of field declaration order.

+ * + *

Specify the source using exactly one of:

+ *
    + *
  • {@link #field()} — name of a field on the same object to copy directly.
  • + *
  • {@link #getter()} — name of a no-argument getter method on the same object to invoke.
  • + *
+ * + *

If both are specified, {@code getter} takes precedence. If neither is specified, + * {@link UpdateManager#applyAnnotations(Object)} will throw an {@link IllegalArgumentException}.

+ * + *

Example — direct field reference:

+ *
{@code
+ *   @Lag(field = "labC4")
+ *   private Les_c4 labC4L1;
+ * }
+ * + *

Example — getter method:

+ *
{@code
+ *   @Lag(getter = "getHouseholdStatus")
+ *   private Indicator demStatusHhL1;
+ * }
+ * + *

Example — multi-period lag chain (L2 ← L1, then L1 ← current getter):

+ *
{@code
+ *   @Lag(field = "yEmpPersGrossMonthL1")
+ *   private Double yEmpPersGrossMonthL2;
+ *
+ *   @Lag(getter = "getYEmpPersGrossMonth")
+ *   private Double yEmpPersGrossMonthL1;
+ * }
+ * + * @see NullInitialised + * @see UpdateManager + */ +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.FIELD) +public @interface Lag { + + /** + * Name of the field on the same object whose value should be copied into the annotated field. + * Ignored if {@link #getter()} is also specified. + */ + String field() default ""; + + /** + * Name of the no-argument method on the same object to invoke to obtain the source value. + * Takes precedence over {@link #field()} when both are specified. + */ + String getter() default ""; +} diff --git a/src/main/java/simpaths/model/annotations/NullInitialised.java b/src/main/java/simpaths/model/annotations/NullInitialised.java new file mode 100644 index 000000000..da2b9ef60 --- /dev/null +++ b/src/main/java/simpaths/model/annotations/NullInitialised.java @@ -0,0 +1,35 @@ +package simpaths.model.annotations; + +import java.lang.annotation.ElementType; +import java.lang.annotation.Retention; +import java.lang.annotation.RetentionPolicy; +import java.lang.annotation.Target; + +/** + * Marks a field as a current-period value that should be set to {@code null} at the start + * of each simulation time interval. + * + *

Use this annotation on fields whose values are computed fresh within the current period + * and must not carry over from the previous period. When + * {@link UpdateManager#applyAnnotations(Object)} is called, all {@code @NullInitialised} + * fields are cleared after all {@link Lag} assignments have been applied, so a field + * annotated with both will end up {@code null}.

+ * + *

This annotation is only valid on fields of reference (non-primitive) type. Applying it + * to a primitive field will cause {@link UpdateManager} to throw an + * {@link IllegalArgumentException}.

+ * + *

Example:

+ *
{@code
+ *   // Computed each period during LabourMarketAndIncomeUpdate; must be null at period start.
+ *   @NullInitialised
+ *   private Labour labourSupplyWeekly;
+ * }
+ * + * @see Lag + * @see UpdateManager + */ +@Retention(RetentionPolicy.RUNTIME) +@Target(ElementType.FIELD) +public @interface NullInitialised { +} diff --git a/src/main/java/simpaths/model/annotations/UpdateManager.java b/src/main/java/simpaths/model/annotations/UpdateManager.java new file mode 100644 index 000000000..17601964c --- /dev/null +++ b/src/main/java/simpaths/model/annotations/UpdateManager.java @@ -0,0 +1,185 @@ +package simpaths.model.annotations; + +import java.lang.reflect.Field; +import java.lang.reflect.Method; +import java.util.ArrayList; +import java.util.List; + +/** + * Reflection-based processor that applies {@link Lag} and {@link NullInitialised} annotations + * at the start of each simulation time interval. + * + *

Processing order

+ *
    + *
  1. Read phase — all {@link Lag}-annotated fields have their source values read + * (via field reference or getter) and cached before any writes occur.
  2. + *
  3. Lag write phase — all cached lag values are written to their annotated fields.
  4. + *
  5. Null phase — all {@link NullInitialised}-annotated fields are set to + * {@code null}.
  6. + *
+ * + *

Reading all sources before writing any lag field guarantees correct behaviour for + * multi-period lag chains regardless of field declaration order. For example:

+ *
+ *   L3 ← L2  (reads L2 before L2 is overwritten by the L2←L1 assignment)
+ *   L2 ← L1  (reads L1 before L1 is overwritten by the L1←current assignment)
+ *   L1 ← current
+ * 
+ * + *

Typical usage in an entity's update method

+ *
{@code
+ *   // In Person.updateLaggedVariables() or BenefitUnit.updateAttributes():
+ *   UpdateManager.applyAnnotations(this);
+ * }
+ * + * @see Lag + * @see NullInitialised + */ +public final class UpdateManager { + + private UpdateManager() {} + + /** + * Applies all {@link Lag} and {@link NullInitialised} annotations on the given entity, + * walking the full class hierarchy. + * + * @param entity the object whose annotated fields should be updated; must not be {@code null} + * @throws IllegalArgumentException if a {@link Lag} annotation specifies neither + * {@code field} nor {@code getter}, or if {@link NullInitialised} is placed on a + * primitive field + * @throws RuntimeException wrapping any reflection error encountered during processing + */ + public static void applyAnnotations(Object entity) { + if (entity == null) throw new IllegalArgumentException("entity must not be null"); + + Class clazz = entity.getClass(); + List lagAssignments = new ArrayList<>(); + List nullFields = new ArrayList<>(); + + // --- Discovery pass: collect all assignments without writing --- + for (Field field : getAllFields(clazz)) { + + Lag lag = field.getAnnotation(Lag.class); + if (lag != null) { + Object value = resolveSource(entity, clazz, lag, field); + lagAssignments.add(new LagAssignment(field, value)); + } + + if (field.isAnnotationPresent(NullInitialised.class)) { + if (field.getType().isPrimitive()) { + throw new IllegalArgumentException( + "@NullInitialised cannot be applied to primitive field '" + + field.getName() + "' in " + clazz.getName() + + ". Use a wrapper type (e.g. Double instead of double)."); + } + nullFields.add(field); + } + } + + // --- Lag write phase --- + for (LagAssignment assignment : lagAssignments) { + try { + assignment.field().setAccessible(true); + assignment.field().set(entity, assignment.value()); + } catch (IllegalAccessException e) { + throw new RuntimeException( + "Failed to write lag field '" + assignment.field().getName() + "'", e); + } + } + + // --- Null phase --- + for (Field field : nullFields) { + try { + field.setAccessible(true); + field.set(entity, null); + } catch (IllegalAccessException e) { + throw new RuntimeException( + "Failed to null-initialise field '" + field.getName() + "'", e); + } + } + } + + // ------------------------------------------------------------------------- + // Internal helpers + // ------------------------------------------------------------------------- + + private static Object resolveSource(Object entity, Class clazz, Lag lag, Field lagField) { + if (!lag.getter().isEmpty()) { + return invokeGetter(entity, clazz, lag.getter(), lagField); + } + if (!lag.field().isEmpty()) { + return readField(entity, clazz, lag.field(), lagField); + } + throw new IllegalArgumentException( + "@Lag on field '" + lagField.getName() + "' in " + clazz.getName() + + " must specify either 'field' or 'getter'."); + } + + private static Object invokeGetter(Object entity, Class clazz, String getterName, Field lagField) { + try { + Method method = findMethod(clazz, getterName); + method.setAccessible(true); + return method.invoke(entity); + } catch (Exception e) { + throw new RuntimeException( + "Failed to invoke getter '" + getterName + "' for @Lag field '" + + lagField.getName() + "' in " + clazz.getName(), e); + } + } + + private static Object readField(Object entity, Class clazz, String fieldName, Field lagField) { + try { + Field source = findField(clazz, fieldName); + source.setAccessible(true); + return source.get(entity); + } catch (Exception e) { + throw new RuntimeException( + "Failed to read field '" + fieldName + "' for @Lag field '" + + lagField.getName() + "' in " + clazz.getName(), e); + } + } + + /** Returns all declared fields across the full class hierarchy (class → superclass). */ + private static List getAllFields(Class clazz) { + List fields = new ArrayList<>(); + Class current = clazz; + while (current != null && current != Object.class) { + for (Field f : current.getDeclaredFields()) { + fields.add(f); + } + current = current.getSuperclass(); + } + return fields; + } + + /** Finds a field by name, walking up the class hierarchy. */ + private static Field findField(Class clazz, String name) throws NoSuchFieldException { + Class current = clazz; + while (current != null && current != Object.class) { + try { + return current.getDeclaredField(name); + } catch (NoSuchFieldException ignored) { + current = current.getSuperclass(); + } + } + throw new NoSuchFieldException( + "Field '" + name + "' not found in class hierarchy of " + clazz.getName()); + } + + /** Finds a no-argument method by name, walking up the class hierarchy. */ + private static Method findMethod(Class clazz, String name) throws NoSuchMethodException { + Class current = clazz; + while (current != null && current != Object.class) { + try { + return current.getDeclaredMethod(name); + } catch (NoSuchMethodException ignored) { + current = current.getSuperclass(); + } + } + throw new NoSuchMethodException( + "Method '" + name + "()' not found in class hierarchy of " + clazz.getName()); + } + + /** Immutable pair holding a lag field and its resolved source value. */ + private record LagAssignment(Field field, Object value) {} +} diff --git a/src/main/java/simpaths/model/decisions/DecisionTests.java b/src/main/java/simpaths/model/decisions/DecisionTests.java index df293f171..1ae16634a 100644 --- a/src/main/java/simpaths/model/decisions/DecisionTests.java +++ b/src/main/java/simpaths/model/decisions/DecisionTests.java @@ -48,7 +48,7 @@ public static void apacheCsvWriteTest2() { String filePath = DecisionParams.gridsOutputDirectory + File.separator + "test.csv"; try { BufferedWriter writer = Files.newBufferedWriter(Paths.get(filePath)); - CSVFormat csvFormat = CSVFormat.DEFAULT.builder().setHeader("cohabitation", "value_function", "liquid_wealth").build(); + var csvFormat = CSVFormat.DEFAULT.builder().setHeader("cohabitation", "value_function", "liquid_wealth").get(); CSVPrinter printer = new CSVPrinter(writer, csvFormat); for (WriteGridsBean bean : beans) { @@ -81,7 +81,7 @@ public static void apacheCsvWriteTest1() { String filePath = DecisionParams.gridsOutputDirectory + File.separator + "test.csv"; try { BufferedWriter writer = Files.newBufferedWriter(Paths.get(filePath)); - CSVFormat csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).build(); + var csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).get(); try (final CSVPrinter printer = new CSVPrinter(writer, csvFormat)) { AUTHOR_BOOK_MAP.forEach((author, title) -> { try { diff --git a/src/main/java/simpaths/model/decisions/Expectations.java b/src/main/java/simpaths/model/decisions/Expectations.java index be82fee19..88ddd86e5 100644 --- a/src/main/java/simpaths/model/decisions/Expectations.java +++ b/src/main/java/simpaths/model/decisions/Expectations.java @@ -1,6 +1,7 @@ package simpaths.model.decisions; import java.security.InvalidParameterException; +import java.util.Map; import simpaths.data.ManagerRegressions; import simpaths.data.Parameters; @@ -98,9 +99,9 @@ public Expectations(States currentStates) { // proxy to evaluate regression projections for current period benefitUnitProxyThisPeriod = new BenefitUnit(true); - benefitUnitProxyThisPeriod.setYearLocal(currentStates.getYear()); - benefitUnitProxyThisPeriod.setOccupancyLocal(currentStates.getOccupancyCode()); - benefitUnitProxyThisPeriod.setDeh_c4Local(currentStates.getEducationCode()); + benefitUnitProxyThisPeriod.setI_demYear(currentStates.getYear()); + benefitUnitProxyThisPeriod.setI_demOccupancy(currentStates.getOccupancyCode()); + benefitUnitProxyThisPeriod.setI_eduHighestC4(currentStates.getEducationCode()); benefitUnitProxyThisPeriod.setRegion(currentStates.getRegionCode()); } @@ -170,53 +171,53 @@ public Expectations(Expectations invariantExpectations) { // add new data for within period regression specifications personProxyThisPeriod = new Person(true); personProxyThisPeriod.setDemAge(ageYearsThisPeriod); - personProxyThisPeriod.setRegionLocal(currentStates.getRegionCode()); + personProxyThisPeriod.setI_demRgn(currentStates.getRegionCode()); personProxyThisPeriod.setDemMaleFlag(currentStates.getGenderCode()); - personProxyThisPeriod.setDhe(currentStates.getHealthCode()); - personProxyThisPeriod.setDeh_c4(currentStates.getEducationCode()); - personProxyThisPeriod.setDcpstLocal(currentStates.getDcpst()); - personProxyThisPeriod.setSocialCareProvision(currentStates.getSocialCareProvisionCode()); + personProxyThisPeriod.setHealthSelfRated(currentStates.getHealthCode()); + personProxyThisPeriod.setEduHighestC4(currentStates.getEducationCode()); + personProxyThisPeriod.setI_demPartnerStatus(currentStates.getDcpst()); + personProxyThisPeriod.setSocialCareProvision(currentStates.getSocialCareProvisionState()); personProxyThisPeriod.populateSocialCareReceipt(currentStates.getSocialCareReceiptStateCode()); // add person proxy for next period expectations personProxyNextPeriod = new Person(true); - personProxyNextPeriod.setYearLocal(currentStates.getYearByAge(ageYearsNextPeriod)); + personProxyNextPeriod.setI_demYear(currentStates.getYearByAge(ageYearsNextPeriod)); personProxyNextPeriod.setI_demCompHhC4L1(currentStates.getHouseholdTypeCode()); personProxyNextPeriod.setI_yHhQuintilesC5(Ydses_c5.Q3); - personProxyNextPeriod.setNumberChildrenAllLocal_lag1(currentStates.getChildrenAll()); - personProxyNextPeriod.setNumberChildrenAllLocal(currentStates.getChildrenAll()); - personProxyNextPeriod.setNumberChildren02Local_lag1(currentStates.getChildren02()); + personProxyNextPeriod.setI_demNchildL1(currentStates.getChildrenAll()); + personProxyNextPeriod.setI_demNchild(currentStates.getChildrenAll()); + personProxyNextPeriod.setI_demNchild0to2L1(currentStates.getChildren02()); personProxyNextPeriod.setDemAge(ageYearsNextPeriod); - personProxyNextPeriod.setRegionLocal(currentStates.getRegionCode()); + personProxyNextPeriod.setI_demRgn(currentStates.getRegionCode()); personProxyNextPeriod.setDemMaleFlag(currentStates.getGenderCode()); - personProxyNextPeriod.setDlltsd(currentStates.getDlltsd()); - personProxyNextPeriod.setDlltsd_lag1(currentStates.getDlltsd()); - personProxyNextPeriod.setDhe(currentStates.getHealthCode()); - personProxyNextPeriod.setDhe_lag1(currentStates.getHealthCode()); + personProxyNextPeriod.setHealthDsblLongtermFlag(currentStates.getDlltsd()); + personProxyNextPeriod.setHealthDsblLongtermFlagL1(currentStates.getDlltsd()); + personProxyNextPeriod.setHealthSelfRated(currentStates.getHealthCode()); + personProxyNextPeriod.setHealthSelfRatedL1(currentStates.getHealthCode()); personProxyNextPeriod.populateSocialCareReceipt_lag1(currentStates.getSocialCareReceiptStateCode()); - personProxyNextPeriod.setSocialCareProvision_lag1(currentStates.getSocialCareProvisionCode()); - personProxyNextPeriod.setDed(currentStates.getStudentIndicator()); - personProxyNextPeriod.setDeh_c4(currentStates.getEducationCode()); - personProxyNextPeriod.setDeh_c4_lag1(currentStates.getEducationCode()); - personProxyNextPeriod.setDehf_c4(DecisionParams.EDUCATION_FATHER); - personProxyNextPeriod.setDehm_c4(DecisionParams.EDUCATION_MOTHER); + personProxyNextPeriod.setCareProvidedFlagL1(currentStates.getSocialCareProvisionState()); + personProxyNextPeriod.setEduSpellFlag(currentStates.getStudentIndicator()); + personProxyNextPeriod.setEduHighestC4(currentStates.getEducationCode()); + personProxyNextPeriod.setEduHighestC4L1(currentStates.getEducationCode()); + personProxyNextPeriod.setEduHighestFatherC4(DecisionParams.EDUCATION_FATHER); + personProxyNextPeriod.setEduHighestMotherC4(DecisionParams.EDUCATION_MOTHER); if (ageYearsNextPeriod <= DecisionParams.MAX_AGE_COHABITATION) { - personProxyNextPeriod.setDcpstLocal(currentStates.getDcpst()); + personProxyNextPeriod.setI_demPartnerStatus(currentStates.getDcpst()); } else { if (currentStates.getDcpst().equals(Dcpst.Partnered)) - personProxyNextPeriod.setDcpstLocal(Dcpst.Single); + personProxyNextPeriod.setI_demPartnerStatus(Dcpst.Single); else - personProxyNextPeriod.setDcpstLocal(Dcpst.Single); + personProxyNextPeriod.setI_demPartnerStatus(Dcpst.Single); } - personProxyNextPeriod.setDcpst_lag1(currentStates.getDcpst()); + personProxyNextPeriod.setDemPartnerStatusL1(currentStates.getDcpst()); personProxyNextPeriod.setLiwwh((ageYearsNextPeriod - Parameters.AGE_TO_BECOME_RESPONSIBLE) * DecisionParams.MONTHS_EMPLOYED_PER_YEAR); personProxyNextPeriod.setLabWageFullTimeHrlyL1(labWageFullTimeHrly); personProxyNextPeriod.setIoFlag(true); if (cohabitation) { - personProxyNextPeriod.setDehsp_c4_lag1(currentStates.getEducationCode()); - personProxyNextPeriod.setDhesp_lag1(DecisionParams.DEFAULT_HEALTH); + personProxyNextPeriod.setEduHighestPartnerC4L1(currentStates.getEducationCode()); + personProxyNextPeriod.setHealthPartnerSelfRatedL1(DecisionParams.DEFAULT_HEALTH); personProxyNextPeriod.setDemPartnerNYearL1(DecisionParams.DEFAULT_YEARS_MARRIED); - personProxyNextPeriod.setDcpagdf_lag1(DecisionParams.DEFAULT_AGE_DIFFERENCE); + personProxyNextPeriod.setDemAgePartnerDiffL1(DecisionParams.DEFAULT_AGE_DIFFERENCE); } } @@ -329,11 +330,11 @@ public void updateForDiscreteControls(double emp1Pr, double emp2Pr) { } // non-discretionary expenditure - benefitUnitProxyThisPeriod.setLabourHoursWeekly1Local(labourHours1Weekly); + benefitUnitProxyThisPeriod.setI_labHrsWork1Week(labourHours1Weekly); if (cohabitation) { - benefitUnitProxyThisPeriod.setLabourHoursWeekly2Local(labourHours2Weekly); + benefitUnitProxyThisPeriod.setI_labHrsWork2Week(labourHours2Weekly); } else { - benefitUnitProxyThisPeriod.setLabourHoursWeekly2Local(null); + benefitUnitProxyThisPeriod.setI_labHrsWork2Week(null); } double childcareCostAnnual = evalChildcareCostWeekly() * Parameters.WEEKS_PER_YEAR; double socialCareCostAnnual = evalSocialCareCostWeekly() * Parameters.WEEKS_PER_YEAR; @@ -365,16 +366,16 @@ public void updateForDiscreteControls(double emp1Pr, double emp2Pr) { if (ageYearsNextPeriod <= DecisionParams.maxAge) { // update objects for interaction with regression models - personProxyNextPeriod.setLes_c4_lag1(currentStates.getLesCode(emp1Pr)); - personProxyNextPeriod.setLesdf_c4_lag1(currentStates.getLesC4Code(emp1Pr, emp2Pr)); - personProxyNextPeriod.setYpnbihs_dv_lag1( + personProxyNextPeriod.setLabC4L1(currentStates.getLesCode(emp1Pr)); + personProxyNextPeriod.setLabStatusPartnerAndOwnC4L1(currentStates.getLesC4Code(emp1Pr, emp2Pr)); + personProxyNextPeriod.setYNonBenPersGrossMonthL1( asinh(labourIncome1Weekly*Parameters.WEEKS_PER_MONTH + (investmentIncome1Annual + pensionIncome1Annual) / 12.0)); if (cohabitation) { - personProxyNextPeriod.setYnbcpdf_dv_lag1( + personProxyNextPeriod.setYPersAndPartnerGrossDiffMonthL1( asinh(labourIncome1Weekly*Parameters.WEEKS_PER_MONTH + (investmentIncome1Annual + pensionIncome1Annual) / 12.0) - asinh(labourIncome2Weekly*Parameters.WEEKS_PER_MONTH + (investmentIncome2Annual + pensionIncome2Annual) / 12.0) ); } else { - personProxyNextPeriod.setYnbcpdf_dv_lag1(0.0); + personProxyNextPeriod.setYPersAndPartnerGrossDiffMonthL1(0.0); } // instantiate expectations factory @@ -468,8 +469,7 @@ private double evalChildcareCostWeekly() { double probFormalChildCare = Parameters.getRegChildcareC1a().getProbability(benefitUnitProxyThisPeriod, BenefitUnit.Regressors.class); double logChildcareCostScore = Parameters.getRegChildcareC1b().getScore(benefitUnitProxyThisPeriod, BenefitUnit.Regressors.class); - double logChildcareRSME = ManagerRegressions.getRmse(RegressionName.ChildcareC1b); - childcareCostWeekly = Math.exp(logChildcareCostScore + logChildcareRSME*logChildcareRSME/2.0) * probFormalChildCare; + childcareCostWeekly = Math.exp(logChildcareCostScore) * probFormalChildCare; } return childcareCostWeekly; } @@ -500,15 +500,15 @@ private double evalSocialCareHoursProvidedWeekly() { double socialCareHoursProvidedWeekly = 0.0; if (Parameters.flagSocialCare && !Parameters.flagSuppressSocialCareCosts) { - SocialCareProvision status = currentStates.getSocialCareProvisionCode(); - if (!SocialCareProvision.None.equals(status)) { - // With S3e retired, no separate regression is used for hours provided in expectations. - socialCareHoursProvidedWeekly = 0.0; + Indicator status = currentStates.getSocialCareProvisionState(); + if (!Indicator.False.equals(status)) { - // Retired process (kept for future reuse): S3e provided care hours. - // double score = Parameters.getRegCareHoursProvS3e().getScore(personProxyThisPeriod,Person.DoublesVariables.class); - // double rmse = Parameters.getRMSEForRegression("S3e"); - // socialCareHoursProvidedWeekly = Math.min(80.0, Math.exp(score + rmse*rmse/2.0)); + RegressionName regression = cohabitation ? RegressionName.SocialCareS3d : RegressionName.SocialCareS3c; + Map probabilities = + ManagerRegressions.getProbabilities(personProxyThisPeriod, regression); + for (Map.Entry entry : probabilities.entrySet()) { + socialCareHoursProvidedWeekly += entry.getKey().getRepresentativeHours() * entry.getValue(); + } } } return socialCareHoursProvidedWeekly; @@ -584,9 +584,9 @@ private double getHourlyWageRate(int labourHoursWeekly) { } else { double ptPremium; if (currentStates.getGenderCode()==Gender.Male) { - ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesMalesE, "Pt"); + ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesMalesE, "labPt"); } else { - ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesFemalesE, "Pt"); + ptPremium = ManagerRegressions.getRegressionCoeff(RegressionName.WagesFemalesE, "labPt"); } return Math.exp( Math.log(labWageFullTimeHrly) + ptPremium); } diff --git a/src/main/java/simpaths/model/decisions/ExpectationsFactory.java b/src/main/java/simpaths/model/decisions/ExpectationsFactory.java index 8601348b7..684b8f5cd 100644 --- a/src/main/java/simpaths/model/decisions/ExpectationsFactory.java +++ b/src/main/java/simpaths/model/decisions/ExpectationsFactory.java @@ -81,7 +81,7 @@ public void updateRegion() { for (int ii = 0; ii < numberExpected; ii++) { anticipated[ii].labStatesContObject[stateIndexNextPeriod] = currentStates.labStatesContObject[stateIndexCurrPeriod]; } - personProxyNextPeriod.setRegionLocal(currentStates.getRegionCode()); + personProxyNextPeriod.setI_demRgn(currentStates.getRegionCode()); } public void updateRetirement(boolean retiring) { @@ -308,10 +308,10 @@ private LocalExpectations lexpectEval(Axis axis) { lexpectations = compileSocialCareReceiptProbs(); } else if (Axis.SocialCareProvision.equals(axis)) { - if (Dcpst.Partnered.equals(personProxyNextPeriod.getDcpst())) + if (Dcpst.Partnered.equals(personProxyNextPeriod.getDemPartnerStatus())) lexpectations.evaluateDiscrete(personProxyNextPeriod, personProxyNextPeriod.getRegressionName(axis)); else - lexpectations.evaluateLabelledIndicator(personProxyNextPeriod, personProxyNextPeriod.getRegressionName(axis), 3.0); + lexpectations.evaluateDiscrete(personProxyNextPeriod, personProxyNextPeriod.getRegressionName(axis)); } else if (Axis.WagePotential.equals(axis)) { lexpectations.evaluateGaussian(personProxyNextPeriod, personProxyNextPeriod.getRegressionName(axis), @@ -428,26 +428,26 @@ private boolean updatePersonNextPeriod(States states, Axis axis) { val0 = personProxyNextPeriod.getRegion(); val1 = states.getRegionCode(); } else if (Axis.Education.equals(axis)) { - val0 = personProxyNextPeriod.getDeh_c4(); + val0 = personProxyNextPeriod.getEduHighestC4(); val1 = states.getEducationCode(); if (val0==val1) { - val0 = personProxyNextPeriod.getDed(); + val0 = personProxyNextPeriod.getEduSpellFlag(); val1 = states.getStudentIndicator(); } } else if (Axis.Health.equals(axis)) { - val0 = personProxyNextPeriod.getDhe(); + val0 = personProxyNextPeriod.getHealthSelfRated(); val1 = states.getHealthCode(); } else if (Axis.Disability.equals(axis)) { - val0 = personProxyNextPeriod.getDlltsd(); + val0 = personProxyNextPeriod.getHealthDsblLongtermFlag(); val1 = states.getDlltsd(); } else if (Axis.SocialCareReceipt.equals(axis)) { val0 = personProxyNextPeriod.getSocialCareReceipt(); val1 = states.getSocialCareReceiptCode(); } else if (Axis.SocialCareProvision.equals(axis)) { val0 = personProxyNextPeriod.getSocialCareProvision(); - val1 = states.getSocialCareProvisionCode(); + val1 = states.getSocialCareProvisionState(); } else if (Axis.Cohabitation.equals(axis)) { - val0 = personProxyNextPeriod.getDcpst(); + val0 = personProxyNextPeriod.getDemPartnerStatus(); val1 = states.getDcpst(); } else if (Axis.Child.equals(axis)) { val0 = personProxyNextPeriod.getNumberChildren017Local(); @@ -469,22 +469,22 @@ private boolean updatePersonNextPeriod(States states, Axis axis) { if (Axis.Region.equals(axis)) { personProxyNextPeriod.setRegion(states.getRegionCode()); } else if (Axis.Education.equals(axis)) { - personProxyNextPeriod.setDeh_c4(states.getEducationCode()); - personProxyNextPeriod.setDed(states.getStudentIndicator()); + personProxyNextPeriod.setEduHighestC4(states.getEducationCode()); + personProxyNextPeriod.setEduSpellFlag(states.getStudentIndicator()); } else if (Axis.Health.equals(axis)) { - personProxyNextPeriod.setDhe(states.getHealthCode()); + personProxyNextPeriod.setHealthSelfRated(states.getHealthCode()); } else if (Axis.Disability.equals(axis)) { - personProxyNextPeriod.setDlltsd(states.getDlltsd()); + personProxyNextPeriod.setHealthDsblLongtermFlag(states.getDlltsd()); } else if (Axis.SocialCareReceipt.equals(axis)) { personProxyNextPeriod.setSocialCareReceipt(states.getSocialCareReceiptCode()); } else if (Axis.SocialCareProvision.equals(axis)) { - personProxyNextPeriod.setSocialCareProvision(states.getSocialCareProvisionCode()); + personProxyNextPeriod.setSocialCareProvision(states.getSocialCareProvisionState()); } else if (Axis.Cohabitation.equals(axis)) { - personProxyNextPeriod.setDcpstLocal(states.getDcpst()); + personProxyNextPeriod.setI_demPartnerStatus(states.getDcpst()); } else if (Axis.Child.equals(axis)) { - personProxyNextPeriod.setNumberChildren017Local(states.getChildren017()); - personProxyNextPeriod.setIndicatorChildren02Local(states.getChildrenUnder3Indicator()); - personProxyNextPeriod.setNumberChildrenAllLocal(states.getChildren017()); + personProxyNextPeriod.setI_demNchild0to17(states.getChildren017()); + personProxyNextPeriod.setI_demNChild0to2(states.getChildrenUnder3Indicator()); + personProxyNextPeriod.setI_demNchild(states.getChildren017()); } } return changed; @@ -570,8 +570,8 @@ private void expandExpectationsFertility(int expandIndex, int stateIndex, int bi // ii = number of previous births for this birth age int birthsHere02 = Math.min(ii + children02, 2); // assume at most 2 children under 3 - personProxyNextPeriod.setNumberChildrenAllLocal_lag1(childrenAll + ii); - personProxyNextPeriod.setNumberChildren02Local_lag1(birthsHere02); + personProxyNextPeriod.setI_demNchildL1(childrenAll + ii); + personProxyNextPeriod.setI_demNchild0to2L1(birthsHere02); double proportionBirths = ManagerRegressions.getProbability(personProxyNextPeriod, regression); probabilities[ii+1] += probabilities[ii] * proportionBirths; probabilities[ii] *= (1 - proportionBirths); @@ -583,8 +583,8 @@ private void expandExpectationsFertility(int expandIndex, int stateIndex, int bi // restore benefitUnit and person characteristics personProxyNextPeriod.setDemAge(ageYearsNextPeriod); - personProxyNextPeriod.setNumberChildrenAllLocal_lag1(childrenAll); - personProxyNextPeriod.setNumberChildren02Local_lag1(children02); + personProxyNextPeriod.setI_demNchildL1(childrenAll); + personProxyNextPeriod.setI_demNchild0to2L1(children02); } private void expandExpectationsAllIndices(int stateIndex, LocalExpectations lexpect) { diff --git a/src/main/java/simpaths/model/decisions/GridScale.java b/src/main/java/simpaths/model/decisions/GridScale.java index 69a18fd41..7e7de5389 100644 --- a/src/main/java/simpaths/model/decisions/GridScale.java +++ b/src/main/java/simpaths/model/decisions/GridScale.java @@ -214,11 +214,11 @@ public GridScale() { dimIndex++; } - // social care provision + // social care provision (indicator variable) if (Parameters.flagSocialCare) { - axes[aa][dimIndex][0] = 4; // none, partner only, partner and non-partner, non-partner only (see Enum SocialCareProvision) + axes[aa][dimIndex][0] = 2; axes[aa][dimIndex][1] = 0; - axes[aa][dimIndex][2] = 3; + axes[aa][dimIndex][2] = 1; axes[aa][dimIndex][3] = 0; axes[aa][dimIndex][4] = 0; dimIndex++; diff --git a/src/main/java/simpaths/model/decisions/ManagerFileGrids.java b/src/main/java/simpaths/model/decisions/ManagerFileGrids.java index 1c0562583..b1c5f4caa 100644 --- a/src/main/java/simpaths/model/decisions/ManagerFileGrids.java +++ b/src/main/java/simpaths/model/decisions/ManagerFileGrids.java @@ -206,7 +206,7 @@ public static void formattedWrite(Grids grids, int aa) { "married", "gender", "consumptionshare", "employment1", "employment2", "valuefunction"}; try { BufferedWriter writer = Files.newBufferedWriter(Paths.get(filePath)); - CSVFormat csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).build(); + var csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).get(); CSVPrinter printer = new CSVPrinter(writer, csvFormat); for (WriteGridsBean bean : beans) { diff --git a/src/main/java/simpaths/model/decisions/States.java b/src/main/java/simpaths/model/decisions/States.java index f41050236..c29360a2a 100644 --- a/src/main/java/simpaths/model/decisions/States.java +++ b/src/main/java/simpaths/model/decisions/States.java @@ -332,12 +332,6 @@ boolean checkOuterStateCombination() { loopConsider = false; } - // check care provision - if (!getCohabitation() && - ( SocialCareProvision.OnlyPartner.equals(getSocialCareProvisionCode()) || - SocialCareProvision.PartnerAndOther.equals(getSocialCareProvisionCode()) )) - loopConsider = false; - // return result return loopConsider; } @@ -651,7 +645,7 @@ public boolean getPrincipalEligibleForWork() { /** * METHOD TO RETURN SOCIAL CARE PROVISION - * @return integer (0 no care, 1 only to partner, 2 to partner and other, 3 only to other + * @return integer (0 no care, 1 care) */ int getSocialCareProvision() { if (Parameters.flagSocialCare) { @@ -914,12 +908,16 @@ SocialCareReceipt getSocialCareReceiptCode() { /** * METHOD TO IDENTIFY SOCIAL CARE PROVISION CODE IMPLIED BY STATE COMBINATION */ - SocialCareProvision getSocialCareProvisionCode() { - SocialCareProvision code; + Indicator getSocialCareProvisionState() { + Indicator code; if (Parameters.flagSocialCare) - code = SocialCareProvision.getCode(getVal(Axis.SocialCareProvision)); + if (getSocialCareProvision()==0) { + code = Indicator.False; + } else { + code = Indicator.True; + } else - code = SocialCareProvision.None; + code = Indicator.False; return code; } diff --git a/src/main/java/simpaths/model/enums/CareHoursProvidedCategory.java b/src/main/java/simpaths/model/enums/CareHoursProvidedCategory.java new file mode 100644 index 000000000..7a96db4f8 --- /dev/null +++ b/src/main/java/simpaths/model/enums/CareHoursProvidedCategory.java @@ -0,0 +1,38 @@ +package simpaths.model.enums; + +import microsim.statistics.regression.IntegerValuedEnum; + +/** + * Ordered categories for weekly informal-care hours provided. + * + *

The integer values match the S3c/S3d ordered-logit outcome categories. + * Representative hours reproduce the values assigned in the source-data + * preparation and regression-estimation scripts.

+ */ +public enum CareHoursProvidedCategory implements IntegerValuedEnum { + + Hours2(1, 2.0), + Hours7(2, 7.0), + Hours14_5(3, 14.5), + Hours27(4, 27.0), + Hours42(5, 42.0), + Hours74_5(6, 74.5), + Hours120(7, 120.0); + + private final int value; + private final double representativeHours; + + CareHoursProvidedCategory(int value, double representativeHours) { + this.value = value; + this.representativeHours = representativeHours; + } + + @Override + public int getValue() { + return value; + } + + public double getRepresentativeHours() { + return representativeHours; + } +} diff --git a/src/main/java/simpaths/model/enums/Country.java b/src/main/java/simpaths/model/enums/Country.java index 91551afb0..c75e32cb5 100644 --- a/src/main/java/simpaths/model/enums/Country.java +++ b/src/main/java/simpaths/model/enums/Country.java @@ -2,7 +2,6 @@ public enum Country { - IT("Italy", 9), //Italy UK("United Kingdom", 15); //United Kingdom of Great Britain and Northern Ireland //EUROMOD country codes for all EU countries diff --git a/src/main/java/simpaths/model/enums/Education.java b/src/main/java/simpaths/model/enums/Education.java index ca551be7d..cee783826 100644 --- a/src/main/java/simpaths/model/enums/Education.java +++ b/src/main/java/simpaths/model/enums/Education.java @@ -3,10 +3,10 @@ import microsim.statistics.regression.IntegerValuedEnum; public enum Education implements IntegerValuedEnum { - Low(0), - Medium(1), - High(2), - InEducation(3); + Low(3), + Medium(2), + High(1), + InEducation(0); private final int value; Education(int val) {value=val;} diff --git a/src/main/java/simpaths/model/enums/Region.java b/src/main/java/simpaths/model/enums/Region.java index 3fc435ca6..7b4928ec5 100644 --- a/src/main/java/simpaths/model/enums/Region.java +++ b/src/main/java/simpaths/model/enums/Region.java @@ -6,14 +6,6 @@ public enum Region implements IntegerValuedEnum { //Uses NUTS Level 1 system for each country - //Italy //Name //EUROMOD drgn1 value - ITC("Nord Ovest", 1), //Nord Ovest 1 - ITF("Sud", 4), //Sud 4 - ITG("Isole", 5), //Isole 5 - ITH("Nord Est", 2), //Nord Est (formerly ITD) 2 - ITI("Centro", 3), //Centro (formerly ITE) 3 - //See https://www.euromod.ac.uk/sites/default/files/country-reports/year6/Y7_CR_IT_Final.pdf page 41 for definition EUROMOD variable drgn2 which corresponds to NUTS level 2, from which can be imputed the NUTS level 1 and therefore meaning of drgn1 values. - //UK //Name //EUROMOD drgn1 value UKC("North East", 1), //North East //1 UKD("North West", 2), //North West //2 diff --git a/src/main/java/simpaths/model/enums/SocialCareProvision.java b/src/main/java/simpaths/model/enums/SocialCareProvision.java deleted file mode 100644 index 7e66e07f4..000000000 --- a/src/main/java/simpaths/model/enums/SocialCareProvision.java +++ /dev/null @@ -1,26 +0,0 @@ -package simpaths.model.enums; - -import microsim.statistics.regression.IntegerValuedEnum; - -public enum SocialCareProvision implements IntegerValuedEnum { - - None(0), - OnlyPartner(1), - PartnerAndOther(2), - OnlyOther(3); - - private final int value; - SocialCareProvision(int val) {value = val;} - - @Override - public int getValue() {return value;} - public static SocialCareProvision getCode(double val) { - if (val<0.5) - return SocialCareProvision.None; - if (val<1.5) - return SocialCareProvision.OnlyPartner; - else if (val<2.5) - return SocialCareProvision.PartnerAndOther; - else return SocialCareProvision.OnlyOther; - } -} diff --git a/src/main/java/simpaths/model/enums/TimeSeriesVariable.java b/src/main/java/simpaths/model/enums/TimeSeriesVariable.java index db2a7a441..7c45c522a 100644 --- a/src/main/java/simpaths/model/enums/TimeSeriesVariable.java +++ b/src/main/java/simpaths/model/enums/TimeSeriesVariable.java @@ -3,7 +3,6 @@ public enum TimeSeriesVariable { CareProvisionAdjustment, CarerWageRate, - EmploymentAlignment, FixedRetirementAge, GDP, GDPperCapita, diff --git a/src/main/java/simpaths/model/lifetime_incomes/ManagerProjectLifetimeIncomes.java b/src/main/java/simpaths/model/lifetime_incomes/ManagerProjectLifetimeIncomes.java index 980840a14..b898beeb6 100644 --- a/src/main/java/simpaths/model/lifetime_incomes/ManagerProjectLifetimeIncomes.java +++ b/src/main/java/simpaths/model/lifetime_incomes/ManagerProjectLifetimeIncomes.java @@ -5,7 +5,6 @@ import jakarta.persistence.EntityTransaction; import jakarta.persistence.Persistence; import microsim.data.db.Experiment; -import org.apache.log4j.Logger; import simpaths.data.Parameters; import simpaths.model.enums.Gender; @@ -18,6 +17,8 @@ import java.util.random.RandomGenerator; import java.util.stream.IntStream; +import org.apache.logging.log4j.Logger; + public class ManagerProjectLifetimeIncomes { @@ -96,7 +97,7 @@ private static void writeLifetimeIncomeDatabase(Logger log, BirthCohort cohort) try { // initialise database for storing results String fileName = Parameters.getInputDirectory() + "input"; - Map propertyMap = new HashMap(); + var propertyMap = new HashMap(); propertyMap.put("hibernate.connection.url", "jdbc:h2:file:" + fileName + ";TRACE_LEVEL_FILE=0;TRACE_LEVEL_SYSTEM_OUT=0;AUTO_SERVER=TRUE"); EntityManager em = Persistence.createEntityManagerFactory("lifetime-incomes", propertyMap).createEntityManager(); txn = em.getTransaction(); diff --git a/src/main/java/simpaths/model/taxes/DonorPerson.java b/src/main/java/simpaths/model/taxes/DonorPerson.java index 29dd2f4eb..05db4c912 100644 --- a/src/main/java/simpaths/model/taxes/DonorPerson.java +++ b/src/main/java/simpaths/model/taxes/DonorPerson.java @@ -42,7 +42,7 @@ public long getId() { } public Integer getAge() { return this.age; } public int getHoursWorkedWeekly() { return this.labHrsWorkWeek; } - public int getDlltsd() { return this.healthDsblLongtermFlag; } + public int getHealthDsblLongtermFlag() { return this.healthDsblLongtermFlag; } public int getCarer() { return this.carer; } public double getWeight() { return this.dem; } public Set getPolicies() { return policies; } diff --git a/src/main/java/simpaths/model/taxes/DonorTaxImputation.java b/src/main/java/simpaths/model/taxes/DonorTaxImputation.java index 0f0191574..2b67b503e 100644 --- a/src/main/java/simpaths/model/taxes/DonorTaxImputation.java +++ b/src/main/java/simpaths/model/taxes/DonorTaxImputation.java @@ -1,7 +1,9 @@ package simpaths.model.taxes; +import microsim.engine.SimulationEngine; import org.apache.commons.lang3.tuple.Triple; +import simpaths.model.enums.TimeSeriesVariable; import simpaths.model.enums.UpratingCase; import java.util.*; @@ -152,21 +154,25 @@ public void evaluate() { // The candidate pool is organised in increasing order of original income // ordering is controlled by database query in SimPathsModel.populateTaxdbReferences // normalised income is monthly in BASE_PRICE_YEAR prices (same as EUROMOD) + // Search here uses the golden search algorithm targetNormalisedOriginalIncome = Parameters.normaliseWeeklyIncome(keys.getPriceYear(), keys.getOriginalIncomePerWeek()); int lowerInd, upperInd, testInd; double lowerOrigInc, upperOrigInc, testOrigInc; final double MEAN_BIAS = 0.5; + int targetWagesYear = (Parameters.taxDonorUpratingByWage) ? keys.getSimYear() : systemYear; lowerInd = 0; - lowerOrigInc = Parameters.getDonorPool().get(candidatePool.get(lowerInd)).getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth(); + lowerOrigInc = Parameters.getDonorPool().get(candidatePool.get(lowerInd)).getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth(targetWagesYear); upperInd = candidatePool.size()-1; - upperOrigInc = Parameters.getDonorPool().get(candidatePool.get(upperInd)).getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth(); + upperOrigInc = Parameters.getDonorPool().get(candidatePool.get(upperInd)).getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth(targetWagesYear); - int iiTarget; - if (targetNormalisedOriginalIncomeupperOrigInc) { + iiNearest = lowerInd; + } else if (targetNormalisedOriginalIncome > upperOrigInc) { iiTarget = upperInd; + iiNearest = upperInd; } else { while (upperInd > lowerInd+1) { @@ -174,8 +180,7 @@ public void evaluate() { double adjFactor = 0.5 * MEAN_BIAS + (targetNormalisedOriginalIncome-lowerOrigInc) / (upperOrigInc - lowerOrigInc) * (1-MEAN_BIAS); int adjInd = (int) ((upperInd - lowerInd) * adjFactor); testInd = lowerInd + Math.max(1, adjInd); - testOrigInc = Parameters.getDonorPool().get(candidatePool.get(testInd)).getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth(); - + testOrigInc = Parameters.getDonorPool().get(candidatePool.get(testInd)).getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth(targetWagesYear); if (testOrigInc > targetNormalisedOriginalIncome) { upperInd = testInd; upperOrigInc = testOrigInc; @@ -189,11 +194,16 @@ public void evaluate() { } } iiTarget = upperInd; + if (Math.abs(upperOrigInc-targetNormalisedOriginalIncome) < Math.abs(lowerOrigInc-targetNormalisedOriginalIncome)) { + iiNearest = upperInd; + } else { + iiNearest = lowerInd; + } } - DonorTaxUnit targetCandidate = Parameters.getDonorPool().get(candidatePool.get(iiTarget)); + // note that actual donor is identified by focussed search below + DonorTaxUnit targetCandidate = Parameters.getDonorPool().get(candidatePool.get(iiNearest)); donorID = targetCandidate.getId(); - double targetIncomeDifference = Math.abs(targetNormalisedOriginalIncome - - targetCandidate.getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth()); + double targetIncomeDifference = Math.abs(targetNormalisedOriginalIncome - targetCandidate.getPolicyBySystemYear(systemYear).getNormalisedOriginalIncomePerMonth(targetWagesYear)); if (!keys.isLowIncome(matchRegime)) { targetIncomeDifference /= Math.abs(targetNormalisedOriginalIncome); targetIncomeDifference *= 100; @@ -205,16 +215,14 @@ public void evaluate() { // focussed search around target //------------------------------------------------------------ List candidatesList = new ArrayList<>(); - int bracketPts = (!flagChildcareCost && !flagSecondIncome) ? 2 : 60; - double oi = keys.getOriginalIncomePerWeek(); - double si = keys.getSecondIncomePerWeek(); - double cc = keys.getChildcareCostPerWeek(); - double[] targetVector = getMeasurementVector(keys.getPriceYear(), oi, flagSecondIncome, si, flagChildcareCost, cc); + int bracketPts = (!flagChildcareCost && !flagSecondIncome) ? 2 : 50; + double[] targetVector = getMeasurementVector(keys.getPriceYear(), Parameters.BASE_PRICE_YEAR, keys.getSimYear(), keys.getSimYear(), + keys.getOriginalIncomePerWeek(), flagSecondIncome, keys.getSecondIncomePerWeek(), flagChildcareCost, keys.getChildcareCostPerWeek()); for (int increment=-1; increment<2; increment=increment+2) { // search backward and then forward through candidate list // initialise directional search - int bracketInd = 0; + int bracketInd = 0; // number of consecutive points within bracket double localMin = 999.0; double bracketDist = -999.0; int ii; @@ -226,17 +234,20 @@ public void evaluate() { while (ii>=0 && ii 1.0E-4) { bracketDist = distance; bracketInd++; } if (distance < localMin) { + // new minimum found: reset bracket bracketInd = 0; localMin = distance; } if (bracketInd <= bracketPts) { + // add candidate to list candidatesList.add(new CandidateList(candidate, candidate.getWeight(), distance)); } else { break; @@ -246,7 +257,7 @@ public void evaluate() { } // select subset of preferred candidates - Collections.sort(candidatesList, new CandidateListComparator()); + candidatesList.sort(new CandidateListComparator()); int candidateLast = 0; int bracketInd = 0; double bracketDist = -999.0; @@ -269,7 +280,7 @@ public void evaluate() { // If focussed search produced no candidates, fall back to nearest neighbour. if (candidatesList.isEmpty()) { - DonorTaxUnit candidate = Parameters.getDonorPool().get(candidatePool.get(iiTarget)); + DonorTaxUnit candidate = Parameters.getDonorPool().get(candidatePool.get(iiNearest)); candidatesList.add(new CandidateList(candidate, candidate.getWeight(), 0.0)); weightSum = candidate.getWeight(); } @@ -293,7 +304,11 @@ public void evaluate() { setReceivedUC(0); setReceivedLegacyBenefit(0); if (systemYear != keys.getPriceYear()) - infAdj = Parameters.getTimeSeriesIndex(keys.getPriceYear(), UpratingCase.TaxDonor) / Parameters.getTimeSeriesIndex(systemYear, UpratingCase.TaxDonor); + infAdj = Parameters.getTimeSeriesValue(keys.getPriceYear(), TimeSeriesVariable.Inflation) / + Parameters.getTimeSeriesValue(systemYear, TimeSeriesVariable.Inflation); + if (systemYear != keys.getSimYear() && Parameters.taxDonorUpratingByWage) + infAdj = infAdj * Parameters.getTimeSeriesValue(keys.getSimYear(), TimeSeriesVariable.WageGrowth) / + Parameters.getTimeSeriesValue(systemYear, TimeSeriesVariable.WageGrowth); for (CandidateList candidateList : candidatesList) { // loop over each preferred candidate @@ -331,30 +346,26 @@ public void evaluate() { } if (Math.abs(disposableIncomePerWeek+999.0)<1.0E-5) { // Deterministic fallback: use nearest neighbour directly. - DonorTaxUnit fallback = (targetCandidate != null) ? targetCandidate : - (!candidatesList.isEmpty() ? candidatesList.get(0).getCandidate() : null); - if (fallback != null) { - donorID = fallback.getId(); - if (keys.isLowIncome(matchRegime)) { - disposableIncomePerWeek = fallback.getPolicyBySystemYear(systemYear).getDisposableIncomePerMonth() - / Parameters.WEEKS_PER_MONTH * infAdj; - benefitsReceivedPerWeek = (fallback.getPolicyBySystemYear(systemYear).getBenMeansTestPerMonth() - + fallback.getPolicyBySystemYear(systemYear).getBenNonMeansTestPerMonth()) - / Parameters.WEEKS_PER_MONTH * infAdj; + donorID = targetCandidate.getId(); + if (keys.isLowIncome(matchRegime)) { + disposableIncomePerWeek = targetCandidate.getPolicyBySystemYear(systemYear).getDisposableIncomePerMonth() + / Parameters.WEEKS_PER_MONTH * infAdj; + benefitsReceivedPerWeek = (targetCandidate.getPolicyBySystemYear(systemYear).getBenMeansTestPerMonth() + + targetCandidate.getPolicyBySystemYear(systemYear).getBenNonMeansTestPerMonth()) + / Parameters.WEEKS_PER_MONTH * infAdj; + } else { + double origIncMonth = targetCandidate.getPolicyBySystemYear(systemYear).getOriginalIncomePerMonth(); + if (Math.abs(origIncMonth) > 1.0E-9) { + disposableIncomePerWeek = targetCandidate.getPolicyBySystemYear(systemYear).getDisposableIncomePerMonth() / origIncMonth; + benefitsReceivedPerWeek = (targetCandidate.getPolicyBySystemYear(systemYear).getBenMeansTestPerMonth() + + targetCandidate.getPolicyBySystemYear(systemYear).getBenNonMeansTestPerMonth()) / origIncMonth; } else { - double origIncMonth = fallback.getPolicyBySystemYear(systemYear).getOriginalIncomePerMonth(); - if (Math.abs(origIncMonth) > 1.0E-9) { - disposableIncomePerWeek = fallback.getPolicyBySystemYear(systemYear).getDisposableIncomePerMonth() / origIncMonth; - benefitsReceivedPerWeek = (fallback.getPolicyBySystemYear(systemYear).getBenMeansTestPerMonth() - + fallback.getPolicyBySystemYear(systemYear).getBenNonMeansTestPerMonth()) / origIncMonth; - } else { - disposableIncomePerWeek = 0.0; - benefitsReceivedPerWeek = 0.0; - } + disposableIncomePerWeek = 0.0; + benefitsReceivedPerWeek = 0.0; } - setReceivedUC(fallback.getPolicyBySystemYear(systemYear).getReceivesUC()); - setReceivedLegacyBenefit(fallback.getPolicyBySystemYear(systemYear).getReceivesLegacyBenefit()); } + setReceivedUC(targetCandidate.getPolicyBySystemYear(systemYear).getReceivesUC()); + setReceivedLegacyBenefit(targetCandidate.getPolicyBySystemYear(systemYear).getReceivesLegacyBenefit()); } if (Math.abs(disposableIncomePerWeek+999.0)<1.0E-5) throw new RuntimeException("Failed to populate disposable income and benefits from donor with inner key value " + keys.getKey(0)); @@ -366,7 +377,7 @@ public void evaluate() { disposableIncomePerWeek *= (1.0 + Parameters.disposableIncomeFromLabourInnov); benefitsReceivedPerWeek *= (1.0 + Parameters.disposableIncomeFromLabourInnov); } - if (UCmean > Math.random()) { // Weighted probability of receiving UC + if (UCmean > SimulationEngine.getRnd().nextDouble()) { // Weighted probability of receiving UC setReceivedUC(1); } if (LBmean > 0 && getReceivedUC() == 0) { // Setting as received LB if benefits but not UC @@ -424,33 +435,51 @@ public static int getCounterVal(MatchFeature targetFeature, int regime, int inde throw new RuntimeException("attempt to evaluate index of unrecognised target feature"); } - private double[] getMeasurementVector(int priceYear, double originalIncomePerWeek, boolean flagSecondIncome, double secondIncomePerWeek, - boolean flagChildcareCost, double childcareCostPerWeek) { - - double oiAdj = Parameters.normaliseWeeklyIncome(priceYear, originalIncomePerWeek); - double siAdj = Parameters.normaliseWeeklyIncome(priceYear, secondIncomePerWeek); - double ccAdj = Parameters.normaliseWeeklyIncome(priceYear, childcareCostPerWeek); + /** + * Method to package array of metrics used to compare target against potential donors + * + * @param targetPriceYear inflation year that monetary variables should be measured in + * @param currentPriceYear inflation year that monetary variables currently measured in + * @param targetWagesYear wage growth year that monetary variables should be measured in + * @param currentWagesYear wage growth year that monetary variables currently measured in + * @param originalIncomePerWeek current original income (per week) + * @param flagSecondIncome if true, second income is also measured + * @param secondIncomePerWeek second income (per week, if measured) + * @param flagChildcareCost if true, childcare cost is also measured + * @param childcareCostPerWeek childcare cost (per week, if measured) + * @return + */ + private double[] getMeasurementVector(int currentPriceYear, int targetPriceYear, + int currentWagesYear, int targetWagesYear, + double originalIncomePerWeek, boolean flagSecondIncome, + double secondIncomePerWeek, boolean flagChildcareCost, double childcareCostPerWeek) { + + double oiAdj = Parameters.normaliseWeeklyIncome(currentPriceYear, targetPriceYear, currentWagesYear, targetWagesYear, originalIncomePerWeek); + double siAdj = Parameters.normaliseWeeklyIncome(currentPriceYear, targetPriceYear, currentWagesYear, targetWagesYear, secondIncomePerWeek); + double ccAdj = Parameters.normaliseWeeklyIncome(currentPriceYear, targetPriceYear, currentWagesYear, targetWagesYear, childcareCostPerWeek); if (!flagSecondIncome && !flagChildcareCost) { return new double[] {oiAdj}; } else if (flagSecondIncome && !flagChildcareCost) { return new double[] {oiAdj, siAdj}; - } else if (!flagSecondIncome && flagChildcareCost) { + } else if (!flagSecondIncome) { return new double[]{oiAdj, ccAdj}; } else { return new double[]{oiAdj, siAdj, ccAdj}; } } - private double[] getCandidateMeasVector(DonorTaxUnit candidate, boolean flagSecondIncome, boolean flagChildcareCost) { + private double[] getCandidateMeasVector(int currentPriceYear, int targetPriceYear, + int currentWagesYear, int targetWagesYear, + DonorTaxUnit candidate, boolean flagSecondIncome, boolean flagChildcareCost) { - int priceYear = Parameters.BASE_PRICE_YEAR; - double oiWeekly = candidate.getPolicyBySystemYear(priceYear).getOriginalIncomePerMonth() / Parameters.WEEKS_PER_MONTH; + double oiWeekly = candidate.getPolicyBySystemYear(currentPriceYear).getOriginalIncomePerMonth() / Parameters.WEEKS_PER_MONTH; double siWeekly = 0.0; if (flagSecondIncome) - siWeekly = candidate.getPolicyBySystemYear(priceYear).getSecondIncomePerMonth() / Parameters.WEEKS_PER_MONTH; + siWeekly = candidate.getPolicyBySystemYear(currentPriceYear).getSecondIncomePerMonth() / Parameters.WEEKS_PER_MONTH; double ccWeekly = 0.0; if (flagChildcareCost) - ccWeekly = candidate.getPolicyBySystemYear(priceYear).getChildcareCostPerMonth() / Parameters.WEEKS_PER_MONTH; - return getMeasurementVector(priceYear, oiWeekly, flagSecondIncome, siWeekly, flagChildcareCost, ccWeekly); + ccWeekly = candidate.getPolicyBySystemYear(currentPriceYear).getChildcareCostPerMonth() / Parameters.WEEKS_PER_MONTH; + return getMeasurementVector(currentPriceYear, targetPriceYear, currentWagesYear, targetWagesYear, + oiWeekly, flagSecondIncome, siWeekly, flagChildcareCost, ccWeekly); } private double evaluateDistance(double[] targetVector, double[] candidateVector, boolean flagSecondIncome, boolean flagChildcareCost) { if (flagSecondIncome && flagChildcareCost) { diff --git a/src/main/java/simpaths/model/taxes/DonorTaxUnitPolicy.java b/src/main/java/simpaths/model/taxes/DonorTaxUnitPolicy.java index 359458e77..6c3d33e1e 100644 --- a/src/main/java/simpaths/model/taxes/DonorTaxUnitPolicy.java +++ b/src/main/java/simpaths/model/taxes/DonorTaxUnitPolicy.java @@ -91,6 +91,9 @@ public double getOriginalIncomePerMonth() { throw new RuntimeException("attempt to get original income before instantiated"); return originalIncomePerMonth; } + public double getNormalisedOriginalIncomePerMonth(int targetWagesYear) { + return Parameters.normaliseMonthlyIncome(systemYear, targetWagesYear, getOriginalIncomePerMonth()); + } public double getNormalisedOriginalIncomePerMonth() { return Parameters.normaliseMonthlyIncome(systemYear, getOriginalIncomePerMonth()); } diff --git a/src/main/java/simpaths/model/taxes/KeyFunction.java b/src/main/java/simpaths/model/taxes/KeyFunction.java index 7a07b945d..0cc15d917 100644 --- a/src/main/java/simpaths/model/taxes/KeyFunction.java +++ b/src/main/java/simpaths/model/taxes/KeyFunction.java @@ -16,7 +16,7 @@ public class KeyFunction { * ATTRIBUTES */ private int simYear = -999, priceYear = -999, age, numberMembersOver17, numberChildrenUnder5, numberChildren5To9, numberChildren10To17; - private int dlltsdMan = -1, dlltsdWoman = -1, careProvision = -1; + private int healthDsblLongtermFlagMan = -1, healthDsblLongtermFlagWoman = -1, careProvision = -1; private double hoursWorkedPerWeekMan, hoursWorkedPerWeekWoman, originalIncomePerWeek, secondIncomePerWeek, xChildCareWeek; // define key function here - switchable @@ -71,8 +71,8 @@ public KeyFunction(int simYear, int priceYear, int age, int numberMembersOver17, this.hoursWorkedPerWeekMan = hoursWorkedPerWeekMan; this.hoursWorkedPerWeekWoman = hoursWorkedPerWeekWoman; this.originalIncomePerWeek = originalIncomePerWeek; - this.dlltsdMan = dlltsdMan; - this.dlltsdWoman = dlltsdWoman; + this.healthDsblLongtermFlagMan = dlltsdMan; + this.healthDsblLongtermFlagWoman = dlltsdWoman; this.careProvision = careProvision; } public KeyFunction(int simYear, int priceYear, int age, int numberMembersOver17, int numberChildrenUnder5, int numberChildren5To9, int numberChildren10To17, @@ -137,20 +137,20 @@ public void setNumberChildren10To17(int numberChildren10To17) { this.numberChildren10To17 = numberChildren10To17; } - public int getDlltsdMan() { - return dlltsdMan; + public int getHealthDsblLongtermFlagMan() { + return healthDsblLongtermFlagMan; } - public void setDlltsdMan(int dlltsdMan) { - this.dlltsdMan = dlltsdMan; + public void setHealthDsblLongtermFlagMan(int healthDsblLongtermFlagMan) { + this.healthDsblLongtermFlagMan = healthDsblLongtermFlagMan; } - public int getDlltsdWoman() { - return dlltsdWoman; + public int getHealthDsblLongtermFlagWoman() { + return healthDsblLongtermFlagWoman; } - public void setDlltsdWoman(int dlltsdWoman) { - this.dlltsdWoman = dlltsdWoman; + public void setHealthDsblLongtermFlagWoman(int healthDsblLongtermFlagWoman) { + this.healthDsblLongtermFlagWoman = healthDsblLongtermFlagWoman; } public int getCareProvision() { @@ -201,9 +201,9 @@ public Integer[] evaluateKeys() { if (keyFunction == null) { throw new InvalidParameterException("call to evaluate donor keys before KeyFunction populated"); } - //return keyFunction.evaluateKeys(simYear, priceYear, age, numberMembersOver17, numberChildrenUnder5, numberChildren5To17, hoursWorkedPerWeekMan, hoursWorkedPerWeekWoman, dlltsdMan, dlltsdWoman, originalIncomePerWeek); + //return keyFunction.evaluateKeys(simYear, priceYear, age, numberMembersOver17, numberChildrenUnder5, numberChildren5To17, hoursWorkedPerWeekMan, hoursWorkedPerWeekWoman, healthDsblLongtermFlagMan, healthDsblLongtermFlagWoman, originalIncomePerWeek); return keyFunction.evaluateKeys(simYear, priceYear, age, numberMembersOver17, numberChildrenUnder5, numberChildren5To9, numberChildren10To17, - hoursWorkedPerWeekMan, hoursWorkedPerWeekWoman, dlltsdMan, dlltsdWoman, careProvision, originalIncomePerWeek, secondIncomePerWeek, xChildCareWeek); + hoursWorkedPerWeekMan, hoursWorkedPerWeekWoman, healthDsblLongtermFlagMan, healthDsblLongtermFlagWoman, careProvision, originalIncomePerWeek, secondIncomePerWeek, xChildCareWeek); } public boolean[] isLowIncome(Integer[] keys) { diff --git a/src/main/java/simpaths/model/taxes/Matches.java b/src/main/java/simpaths/model/taxes/Matches.java index 1c2c4620b..6d65ddb6e 100644 --- a/src/main/java/simpaths/model/taxes/Matches.java +++ b/src/main/java/simpaths/model/taxes/Matches.java @@ -76,7 +76,7 @@ public void write(String fileDirectory, String fileName) { try { String filePath = fileDirectory + File.separator + fileName; BufferedWriter writer = Files.newBufferedWriter(Paths.get(filePath)); - CSVFormat csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).build(); + var csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).get(); CSVPrinter printer = new CSVPrinter(writer, csvFormat); for (Match match : set) { @@ -101,7 +101,7 @@ public void read(boolean flagGrid, int id, String filePath) throws IOException { throw new RuntimeException("failed to find csv file to read: " + filePath); Reader reader = new FileReader(filePath); - CSVFormat csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).setSkipHeaderRecord(true).build(); + var csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).setSkipHeaderRecord(true).get(); Iterable records = csvFormat.parse(reader); for (CSVRecord record : records) { int key0 = Integer.parseInt(record.get("key")); diff --git a/src/main/java/simpaths/model/taxes/TestTaxRoutine.java b/src/main/java/simpaths/model/taxes/TestTaxRoutine.java index c5ccc29cd..6da90a8a3 100644 --- a/src/main/java/simpaths/model/taxes/TestTaxRoutine.java +++ b/src/main/java/simpaths/model/taxes/TestTaxRoutine.java @@ -23,9 +23,9 @@ public static void run() { // disability1/2: 0, 1 // income: <946.17 <=2985.70, >2985.70 - year = 2025; - age = 78; - adults = 2; + year = 2040; + age = 80; + adults = 1; children04 = 0; children59 = 0; children1017 = 0; @@ -33,8 +33,8 @@ public static void run() { hoursWork2 = 0.0; disability1 = 0; disability2 = 0; - careProvision = 1; - originalIncomePerMonth = 0.0; + careProvision = 0; + originalIncomePerMonth = 23.75; secondIncomePerMonth = 0.0; childcarePerMonth = 0.0; evaluatedTransfers = new TaxEvaluation(year, age, adults, children04, children59, children1017, hoursWork1, hoursWork2, disability1, disability2, careProvision, originalIncomePerMonth, secondIncomePerMonth, childcarePerMonth, -2); @@ -43,7 +43,7 @@ public static void run() { disposableIncomePerMonth = evaluatedTransfers.getDisposableIncomePerMonth(); matchRegime = evaluatedTransfers.getImputedTransfers().getMatchCriterion(); - year = 2025; + year = 2040; age = 48; adults = 2; children04 = 1; @@ -63,7 +63,7 @@ public static void run() { disposableIncomePerMonth = evaluatedTransfers.getDisposableIncomePerMonth(); matchRegime = evaluatedTransfers.getImputedTransfers().getMatchCriterion(); - year = 2025; + year = 2040; age = 48; adults = 2; children04 = 0; @@ -73,7 +73,7 @@ public static void run() { hoursWork2 = 0.0; disability1 = 1; disability2 = 0; - originalIncomePerMonth = 0.0; + originalIncomePerMonth = 2100.0; secondIncomePerMonth = 0.0; childcarePerMonth = 0.0; evaluatedTransfers = new TaxEvaluation(year, age, adults, children04, children59, children1017, hoursWork1, hoursWork2, disability1, disability2, careProvision, originalIncomePerMonth, secondIncomePerMonth, childcarePerMonth, -2); @@ -82,7 +82,7 @@ public static void run() { disposableIncomePerMonth = evaluatedTransfers.getDisposableIncomePerMonth(); matchRegime = evaluatedTransfers.getImputedTransfers().getMatchCriterion(); - year = 2025; + year = 2040; age = 75; adults = 1; children04 = 0; @@ -92,7 +92,7 @@ public static void run() { hoursWork2 = 0.0; disability1 = 1; disability2 = 0; - originalIncomePerMonth = 0.0; + originalIncomePerMonth = 200.0; secondIncomePerMonth = 0.0; childcarePerMonth = 0.0; evaluatedTransfers = new TaxEvaluation(year, age, adults, children04, children59, children1017, hoursWork1, hoursWork2, disability1, disability2, careProvision, originalIncomePerMonth, secondIncomePerMonth, childcarePerMonth, -2); @@ -101,7 +101,7 @@ public static void run() { disposableIncomePerMonth = evaluatedTransfers.getDisposableIncomePerMonth(); matchRegime = evaluatedTransfers.getImputedTransfers().getMatchCriterion(); - year = 2025; + year = 2040; age = 57; adults = 1; children04 = 0; @@ -109,7 +109,7 @@ public static void run() { children1017 = 0; hoursWork1 = 20.0; hoursWork2 = 0.0; - disability1 = 1; + disability1 = 0; disability2 = 0; originalIncomePerMonth = 4500.0; secondIncomePerMonth = 0.0; @@ -120,7 +120,7 @@ public static void run() { disposableIncomePerMonth = evaluatedTransfers.getDisposableIncomePerMonth(); matchRegime = evaluatedTransfers.getImputedTransfers().getMatchCriterion(); - year = 2025; + year = 2040; age = 57; adults = 1; children04 = 0; @@ -130,7 +130,7 @@ public static void run() { hoursWork2 = 0.0; disability1 = 1; disability2 = 0; - originalIncomePerMonth = 0.0; + originalIncomePerMonth = 350.0; secondIncomePerMonth = 0.0; childcarePerMonth = 0.0; evaluatedTransfers = new TaxEvaluation(year, age, adults, children04, children59, children1017, hoursWork1, hoursWork2, disability1, disability2, careProvision, originalIncomePerMonth, secondIncomePerMonth, childcarePerMonth, -2); diff --git a/src/main/java/simpaths/model/taxes/database/CloneBenefitUnit.java b/src/main/java/simpaths/model/taxes/database/CloneBenefitUnit.java index 524b64081..cd0f5462d 100644 --- a/src/main/java/simpaths/model/taxes/database/CloneBenefitUnit.java +++ b/src/main/java/simpaths/model/taxes/database/CloneBenefitUnit.java @@ -17,13 +17,13 @@ public class CloneBenefitUnit { /** * ATTRIBUTES */ - private List members = new ArrayList<>(); - private Map target = null; - private Map spouse = null; - private List children = new ArrayList<>(); - private List childrenUnder5 = new ArrayList<>(); - private List children5To9 = new ArrayList<>(); - private List children10To17 = new ArrayList<>(); + private List> members = new ArrayList<>(); + private Map target = null; + private Map spouse = null; + private List> children = new ArrayList<>(); + private List> childrenUnder5 = new ArrayList<>(); + private List> children5To9 = new ArrayList<>(); + private List> children10To17 = new ArrayList<>(); String[] variablesAll; String[] HOUSEHOLD_VARIABLES = {"drgn1", "dwt", "dct", "dcz", "ddt", "ddt01", "dpd", "dot", "amrrm", "amrtn"}; String[] SPOUSE_SPECIFIC_VARIABLES = {"dec", "dag", "deh", "dew", "dey"}; @@ -57,10 +57,10 @@ public long[] clone(CloneBenefitUnit household, String[] variableAll, long newHo } - public List getMembers() {return members;} - public Map getTarget() {return target;} - public Map getSpouse() {return spouse;} - public List getChildren() {return children;} + public List> getMembers() {return members;} + public Map getTarget() {return target;} + public Map getSpouse() {return spouse;} + public List> getChildren() {return children;} /** @@ -138,7 +138,7 @@ public boolean matchDualIncomeIndex(int index) { return change; } - private void setIncome(Map person, double incomeEnd) { + private void setIncome(Map person, double incomeEnd) { if (Math.abs(incomeEnd) < 0.01) { for (String var : INCOME_VARIABLES) { @@ -149,7 +149,7 @@ private void setIncome(Map person, double incomeEnd) { setIncome(person, incomeStart, incomeEnd); } } - private void setIncome(Map person, double incomeStart, double incomeEnd) { + private void setIncome(Map person, double incomeStart, double incomeEnd) { if (Math.abs(incomeEnd)<0.01) { for (String var : INCOME_VARIABLES) { @@ -160,14 +160,14 @@ private void setIncome(Map person, double incomeStart, double incomeEnd) { throw new RuntimeException("Attempt to adjust income for observation without any starting income"); double adjFactor = incomeEnd / incomeStart; for (String var : INCOME_VARIABLES) { - person.replace(var, (double)person.get(var)*adjFactor); + person.replace(var, person.get(var)*adjFactor); } } } - private double getOriginalIncomePerMonth(Map person) { + private double getOriginalIncomePerMonth(Map person) { double income = 0.0; for (String var : INCOME_VARIABLES) { - income += (double)person.get(var); + income += person.get(var); } return income; } @@ -175,12 +175,12 @@ public boolean matchChildcareIndex(int index) { boolean change = false; double childcare = 0.0; - for (Map person : members) { + for (var person : members) { childcare += (double)person.get("xcc"); } if ( (index==0) && (childcare>0) ) { change = true; - for (Map person : members) { + for (var person : members) { person.replace("xcc", 0.0); } } else if ( (index==1) && (childcare<0.01) ) { @@ -188,7 +188,7 @@ public boolean matchChildcareIndex(int index) { if (children.isEmpty()) throw new RuntimeException("attempt to add childcare to household without children"); if (!childrenUnder5.isEmpty()) { - for (Map child : childrenUnder5) { + for (var child : childrenUnder5) { child.replace("xcc", 250.0); } } else if (!children5To9.isEmpty()) { @@ -299,15 +299,13 @@ public boolean matchEmploymentIndex(int index) { } public long matchChildrenIndex(int index, long newPersonId) { - boolean change = false; int child10To17index = index / 9; index -= 9*child10To17index; if ( child10To17index == 0 ) { if (!children10To17.isEmpty()) { - change = true; - Iterator ii = children10To17.iterator(); + var ii = children10To17.iterator(); while (ii.hasNext()) { - Map child = ii.next(); + var child = ii.next(); members.remove(child); children.remove(child); ii.remove(); @@ -315,8 +313,7 @@ public long matchChildrenIndex(int index, long newPersonId) { } } else { if (children10To17.isEmpty()) { - change = true; - Map child = newChild(newPersonId); + var child = newChild(newPersonId); child.replace("dag",10.0); child.replace("dec",3.0); child.replace("deh",0.0); @@ -329,11 +326,10 @@ public long matchChildrenIndex(int index, long newPersonId) { int child5To9index = index / 3; index -= 3*child5To9index; if ( child5To9index ii = children5To9.iterator(); + var ii = children5To9.iterator(); while (ii.hasNext()) { - Map child = ii.next(); + var child = ii.next(); members.remove(child); children.remove(child); ii.remove(); @@ -342,10 +338,9 @@ public long matchChildrenIndex(int index, long newPersonId) { break; } } else if (child5To9index>children5To9.size()) { - change = true; int nn = child5To9index - children5To9.size(); for (int ii=0; ii ii = childrenUnder5.iterator(); + var ii = childrenUnder5.iterator(); while (ii.hasNext()) { - Map child = ii.next(); + var child = ii.next(); members.remove(child); children.remove(child); ii.remove(); @@ -369,10 +363,9 @@ public long matchChildrenIndex(int index, long newPersonId) { break; } } else if (index>childrenUnder5.size()) { - change = true; int nn = index - childrenUnder5.size(); for (int ii=0; ii newChild(long newPersonId) { - Map child = newPerson(HOUSEHOLD_VARIABLES, newPersonId); + var child = newPerson(HOUSEHOLD_VARIABLES, newPersonId); if (getInteger(target,"dgn")==0) { child.replace("idmother",target.get("idperson")); if (spouse!=null) { @@ -472,7 +462,7 @@ private void newSpouse(long newPersonId) { spouse.replace("dms",2.0); int spouseGender = 1-getInteger(target,"dgn"); spouse.replace("dgn",(double)spouseGender); - for (Map child : children) { + for (var child : children) { if (spouseGender==0) { child.replace("idmother",(double)newPersonId); } else { @@ -481,9 +471,9 @@ private void newSpouse(long newPersonId) { } spouse.replace("les",7.0); } - private Map newPerson(String[] variables, long newPersonId) { + private Map newPerson(String[] variables, long newPersonId) { - Map person = zeros(); + var person = zeros(); person.replace("idperson",(double)newPersonId); person.replace("idhh",target.get("idhh")); for (String var : variables) { @@ -491,9 +481,9 @@ private Map newPerson(String[] variables, long newPersonId) { } return person; } - private Map zeros() { + private Map zeros() { - Map values = new HashMap<>(); + var values = new HashMap(); for (String variable : variablesAll) { values.put(variable, 0.0); } @@ -505,20 +495,20 @@ private long[] cloneAllHouseholdMembers(CloneBenefitUnit household, long newHous } private long[] cloneAllHouseholdMembers(InputDataSet dataSet, long idhh, int idbu, long idTarget, long newHouseholdId, long newPersonId) { - List originalMembers = new ArrayList<>(); - for (Map obs : dataSet.getSet()) { + var originalMembers = new ArrayList>(); + for (var obs : dataSet.getSet()) { if ((getLong(obs, "idhh") == idhh) && (getInteger(obs, "idorigbenunit") == idbu)) { originalMembers.add(obs); } } return cloneAllHouseholdMembers(originalMembers, idTarget, newHouseholdId, newPersonId); } - private long[] cloneAllHouseholdMembers(List originalMembers, long idTarget, long newHouseholdId, long newPersonId) { + private long[] cloneAllHouseholdMembers(List> originalMembers, long idTarget, long newHouseholdId, long newPersonId) { long fail = 0; - Map idKey = new HashMap(); - for (Map obs : originalMembers) { - Map clone = clone(obs); + var idKey = new HashMap(); + for (var obs : originalMembers) { + var clone = clone(obs); idKey.put(getLong(obs,"idperson"),(double)newPersonId); clone.replace("idperson",(double)newPersonId); clone.replace("idhh",(double)newHouseholdId); @@ -542,7 +532,7 @@ else if (getInteger(clone,"dag") < 10) fail = 1; if (fail==0) { - for (Map obs : members) { + for (var obs : members) { if (replaceId(idKey, obs, "idpartner")) { replaceId(idKey, obs, "idfather"); replaceId(idKey, obs, "idmother"); @@ -551,7 +541,7 @@ else if (getInteger(clone,"dag") < 10) } } if (fail==0) { - for (Map obs : members) { + for (var obs : members) { getLong(obs, "idperson"); getLong(obs, "idpartner"); getLong(obs, "idmother"); @@ -562,12 +552,12 @@ else if (getInteger(clone,"dag") < 10) long[] result = {newHouseholdId, newPersonId, fail}; return result; } - private boolean replaceId(Map idKey, Map obs, String name) { + private boolean replaceId(Map idKey, Map obs, String name) { boolean pass = true; long idchk = getLong(obs,name); if (idchk!=0) { - Double val = (Double)idKey.get(idchk); + var val = idKey.get(idchk); if (!Parameters.checkFinite(val)) { pass = false; val = 0.0; @@ -578,8 +568,8 @@ private boolean replaceId(Map idKey, Map obs, String name) { } private long[] findTargetHouseholdId(long idTarget, InputDataSet dataSet) { - Map target = null; - for(Map obs : dataSet.getSet()) { + Map target = null; + for(var obs : dataSet.getSet()) { if (idTarget == getLong(obs, "idperson")) { target = obs; break; @@ -590,24 +580,21 @@ private long[] findTargetHouseholdId(long idTarget, InputDataSet dataSet) { long[] result = {getLong(target,"idhh"), getInteger(target, "idorigbenunit")}; return result; } - private long getLong(Map obj, String val) { - Object oo = obj.get(val); - if (oo==null) - throw new RuntimeException("problem copying value of " + val); - return Double.valueOf((double)oo).longValue(); + private long getLong(Map obj, String val) { + return obj.get(val).longValue(); } - private int getInteger(Map obj, String val) { - return Double.valueOf((double)obj.get(val)).intValue(); + private int getInteger(Map obj, String val) { + return obj.get(val).intValue(); } - private Map clone(Map obs) { + private Map clone(Map obs) { - Map values = new HashMap<>(); + var values = new HashMap(); for (String variable : variablesAll) { values.put(variable, obs.get(variable)); } return values; } - private void adjHours(Map person, double hours) { + private void adjHours(Map person, double hours) { double hoursStart = (double)person.get("lhw"); if (hoursStart > 0.0) { diff --git a/src/main/java/simpaths/model/taxes/database/InputDataSet.java b/src/main/java/simpaths/model/taxes/database/InputDataSet.java index f70d9e892..46743e78f 100644 --- a/src/main/java/simpaths/model/taxes/database/InputDataSet.java +++ b/src/main/java/simpaths/model/taxes/database/InputDataSet.java @@ -19,7 +19,7 @@ public class InputDataSet { /** * ATTRIBUTES */ - private List set = new ArrayList<>(); + private List> set = new ArrayList<>(); /** @@ -32,11 +32,11 @@ public InputDataSet(){} * WORKER METHODS */ public void add(CloneBenefitUnit household) { - for (Map person : household.getMembers()) { + for (Map person : household.getMembers()) { set.add(person); } } - public List getSet() {return set;} + public List> getSet() {return set;} public void read(String[] variables, String filePath) throws IOException { File file = new File(filePath); @@ -44,10 +44,10 @@ public void read(String[] variables, String filePath) throws IOException { throw new RuntimeException("failed to find file: " + filePath); Reader reader = new FileReader(filePath); - CSVFormat csvFormat = CSVFormat.TDF.builder().setHeader(variables).setSkipHeaderRecord(true).build(); + var csvFormat = CSVFormat.TDF.builder().setHeader(variables).setSkipHeaderRecord(true).get(); Iterable records = csvFormat.parse(reader); for (CSVRecord record : records) { - Map values = new HashMap<>(); + var values = new HashMap(); for (String variable : variables) { values.put(variable, Double.parseDouble(record.get(variable))); } @@ -62,10 +62,10 @@ public void write(String[] variables, String[] longVars, String[] intVars, Strin safeDelete(filePath); Writer writer = new FileWriter(filePath); - CSVFormat csvFormat = CSVFormat.TDF.builder().setHeader(variables).build(); + var csvFormat = CSVFormat.TDF.builder().setHeader(variables).get(); CSVPrinter printer = new CSVPrinter(writer, csvFormat); - for (Map obs : set) { - List record = new ArrayList<>(); + for (var obs : set) { + var record = new ArrayList(); for (String variable : variables) { if (Arrays.stream(longVars).anyMatch(variable::equals)) record.add(Long.toString(Double.valueOf((double)obs.get(variable)).longValue())); @@ -93,7 +93,7 @@ private static void safeDelete(String filePath) { public double getMaxValue(String variable) { Double val = null; - for(Map obs : set) { + for(var obs : set) { Object oo = obs.get(variable); if (oo==null) diff --git a/src/main/java/simpaths/model/taxes/database/MatchIndicesSet.java b/src/main/java/simpaths/model/taxes/database/MatchIndicesSet.java index ae9b7a33b..a2758192f 100644 --- a/src/main/java/simpaths/model/taxes/database/MatchIndicesSet.java +++ b/src/main/java/simpaths/model/taxes/database/MatchIndicesSet.java @@ -50,7 +50,7 @@ public void write(String dir) { String filePath = dir + File.separator + "poor_matches_compiled.csv"; try { BufferedWriter writer = Files.newBufferedWriter(Paths.get(filePath)); - CSVFormat csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).build(); + var csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).get(); CSVPrinter printer = new CSVPrinter(writer, csvFormat); for (MatchIndices indices : set) { @@ -81,7 +81,7 @@ public void read(String dir) throws IOException { throw new RuntimeException("failed to find csv file to read: " + filePath); Reader reader = new FileReader(filePath); - CSVFormat csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).setSkipHeaderRecord(true).build(); + var csvFormat = CSVFormat.DEFAULT.builder().setHeader(HEADERS).setSkipHeaderRecord(true).get(); Iterable records = csvFormat.parse(reader); for (CSVRecord record : records) { long candidateID = Long.parseLong(record.get("candidateID")); diff --git a/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java b/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java index 01ec0ae15..4474a68af 100644 --- a/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java +++ b/src/main/java/simpaths/model/taxes/database/TaxDonorDataParser.java @@ -438,7 +438,6 @@ public static String stringAppender(Collection strings) { * output .txt files, picking up the relevant columns for each EUROMOD policy scenario, that * will eventually be parsed into the JAS-mine input database. * - * */ public static void constructAggregateTaxDonorPopulationCSVfile(Country country, boolean showGui) { @@ -623,7 +622,7 @@ public static void populateDonorTaxUnitTables(Country country, boolean showGui) EntityTransaction txn = null; try { // access database and obtain donor pool - Map propertyMap = new HashMap(); + var propertyMap = new HashMap(); propertyMap.put("hibernate.connection.url", "jdbc:h2:file:" + Parameters.getInputDirectory() + "input" + ";TRACE_LEVEL_FILE=0;TRACE_LEVEL_SYSTEM_OUT=0;AUTO_SERVER=TRUE"); EntityManager em = Persistence.createEntityManagerFactory("tax-database", propertyMap).createEntityManager(); txn = em.getTransaction(); @@ -705,7 +704,7 @@ public static void populateDonorTaxUnitTables(Country country, boolean showGui) hoursWorkedPerWeek2 = hoursWorked; } if (agePerson >= Parameters.AGE_TO_BECOME_RESPONSIBLE) { - int dlltsd = person.getDlltsd(); + int dlltsd = person.getHealthDsblLongtermFlag(); if (dlltsd > dlltsd1) { dlltsd2 = dlltsd1; dlltsd1 = dlltsd; diff --git a/src/main/resources/META-INF/persistence.xml b/src/main/resources/META-INF/persistence.xml index 8fb382283..755ff9c17 100644 --- a/src/main/resources/META-INF/persistence.xml +++ b/src/main/resources/META-INF/persistence.xml @@ -57,11 +57,12 @@ simpaths.model.Household simpaths.model.Person simpaths.model.BenefitUnit - simpaths.data.statistics.Statistics - simpaths.data.statistics.Statistics2 - simpaths.data.statistics.Statistics3 + simpaths.data.statistics.WealthIncomeStatistics + simpaths.data.statistics.DemographicStatistics + simpaths.data.statistics.AlignmentStatistics simpaths.data.statistics.HealthStatistics - simpaths.data.statistics.EmploymentStatistics + simpaths.data.statistics.LabourStatistics + simpaths.data.statistics.WellbeingByGender false diff --git a/src/main/resources/images/IT.png b/src/main/resources/images/IT.png deleted file mode 100644 index f3b8dce49..000000000 Binary files a/src/main/resources/images/IT.png and /dev/null differ diff --git a/src/test/java/simpaths/data/ParametersTest.java b/src/test/java/simpaths/data/ParametersTest.java new file mode 100644 index 000000000..b0ead97d4 --- /dev/null +++ b/src/test/java/simpaths/data/ParametersTest.java @@ -0,0 +1,32 @@ +package simpaths.data; + +import microsim.data.MultiKeyCoefficientMap; +import org.junit.jupiter.api.Test; + +import java.util.Arrays; + +import static org.junit.jupiter.api.Assertions.*; + +class ParametersTest { + + /** + * Tests regressor validation logic using valid/invalid maps + */ + @Test + void validateRegressors() { + + String[] badValueVector = new String[] {"Dag", "Not_a_valid_value"}; + String[] goodValueVector = new String[] {"Dag", "D_Home_owner", "PovertyToNonPoverty"}; + String[] keyVector = new String[] {"REGRESSOR"}; + + MultiKeyCoefficientMap badMap = new MultiKeyCoefficientMap(keyVector, badValueVector); + for (String badValue : badValueVector) {badMap.putValue(badValue, 0);} + + MultiKeyCoefficientMap goodMap = new MultiKeyCoefficientMap(keyVector, goodValueVector); + for (String goodValue : goodValueVector) {goodMap.putValue(goodValue, 0);} + + assertThrows(RuntimeException.class, () -> Parameters.validateRegressors(badMap, "A map designed to contain invalid values", "Sheet1")); + assertDoesNotThrow(() -> Parameters.validateRegressors(goodMap, "A map designed to contain valid values", "Sheet1")); + + } +} \ No newline at end of file diff --git a/src/test/java/simpaths/data/filters/EmploymentHistoryFilterTest.java b/src/test/java/simpaths/data/filters/EmploymentHistoryFilterTest.java index 5ea3780f5..ecdcd8de1 100644 --- a/src/test/java/simpaths/data/filters/EmploymentHistoryFilterTest.java +++ b/src/test/java/simpaths/data/filters/EmploymentHistoryFilterTest.java @@ -14,7 +14,7 @@ private static Person createTestPerson( Les_c4 les_c4_lag1 ) { Person testPerson = new Person(true); - testPerson.setLes_c4_lag1(les_c4_lag1); + testPerson.setLabC4L1(les_c4_lag1); return testPerson; } @@ -22,22 +22,21 @@ private static Person createTestPerson( @Test @DisplayName("Employed filter only returns true for employed or self-employed persons") void employedOrSelfEmployed() { - EmploymentHistoryFilter filter = new EmploymentHistoryFilter(Les_c4.EmployedOrSelfEmployed); - assertTrue(filter.isFiltered(createTestPerson(Les_c4.EmployedOrSelfEmployed))); - assertFalse(filter.isFiltered(createTestPerson(Les_c4.NotEmployed))); - assertFalse(filter.isFiltered(createTestPerson(Les_c4.Student))); - assertFalse(filter.isFiltered(createTestPerson(Les_c4.Retired))); + var filter = Filters.employmentHistory(Les_c4.EmployedOrSelfEmployed); + assertTrue(filter.test(createTestPerson(Les_c4.EmployedOrSelfEmployed))); + assertFalse(filter.test(createTestPerson(Les_c4.NotEmployed))); + assertFalse(filter.test(createTestPerson(Les_c4.Student))); + assertFalse(filter.test(createTestPerson(Les_c4.Retired))); } @Test @DisplayName("Unemployed filter only returns true for unemployed persons") void unEmployed() { - EmploymentHistoryFilter filter = new EmploymentHistoryFilter(Les_c4.NotEmployed); - assertFalse(filter.isFiltered(createTestPerson(Les_c4.EmployedOrSelfEmployed))); - assertTrue(filter.isFiltered(createTestPerson(Les_c4.NotEmployed))); - assertFalse(filter.isFiltered(createTestPerson(Les_c4.Student))); - assertFalse(filter.isFiltered(createTestPerson(Les_c4.Retired))); + var filter = Filters.employmentHistory(Les_c4.NotEmployed); + assertFalse(filter.test(createTestPerson(Les_c4.EmployedOrSelfEmployed))); + assertTrue(filter.test(createTestPerson(Les_c4.NotEmployed))); + assertFalse(filter.test(createTestPerson(Les_c4.Student))); + assertFalse(filter.test(createTestPerson(Les_c4.Retired))); } - -} \ No newline at end of file +} diff --git a/src/test/java/simpaths/data/statistics/EmploymentStatisticsTest.java b/src/test/java/simpaths/data/statistics/LabourStatisticsTest.java similarity index 61% rename from src/test/java/simpaths/data/statistics/EmploymentStatisticsTest.java rename to src/test/java/simpaths/data/statistics/LabourStatisticsTest.java index e30a2c668..a433c8b94 100644 --- a/src/test/java/simpaths/data/statistics/EmploymentStatisticsTest.java +++ b/src/test/java/simpaths/data/statistics/LabourStatisticsTest.java @@ -1,22 +1,19 @@ package simpaths.data.statistics; -import microsim.statistics.CrossSection; -import microsim.statistics.IDoubleSource; -import microsim.statistics.functions.MeanArrayFunction; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.DisplayName; import org.junit.jupiter.api.Test; -import simpaths.data.filters.EmploymentHistoryFilter; import simpaths.model.Person; import simpaths.model.enums.Les_c4; +import java.util.ArrayList; import java.util.Arrays; import java.util.List; import static org.junit.jupiter.api.Assertions.*; -@DisplayName("Calculating employment statistics") -class EmploymentStatisticsTest { +@DisplayName("Calculating labour statistics") +class LabourStatisticsTest { private static List testPopulation; @@ -25,8 +22,9 @@ private static Person createTestPerson( Les_c4 les_c4 ) { Person testPerson = new Person(true); - testPerson.setLes_c4_lag1(les_c4_lag1); - testPerson.setLes_c4(les_c4); + testPerson.setDemAge(30); + testPerson.setLabC4L1(les_c4_lag1); + testPerson.setLabC4(les_c4); return testPerson; } @@ -60,34 +58,18 @@ public static void setupTestPopulation() { @Test @DisplayName("Proportion becoming unemployed") public void proportionEmpToNotEmp() { - - - // Entering unemployment prevalence - EmploymentHistoryFilter employmentHistoryEmployed = new EmploymentHistoryFilter(Les_c4.EmployedOrSelfEmployed); - CrossSection.Integer personsEmpToNotEmp = new CrossSection.Integer(testPopulation, Person.class, "getNonwork", true); - personsEmpToNotEmp.setFilter(employmentHistoryEmployed); - - - MeanArrayFunction isEmpToNotEmp = new MeanArrayFunction(personsEmpToNotEmp); - isEmpToNotEmp.applyFunction(); - assertEquals(0.25, isEmpToNotEmp.getDoubleValue(IDoubleSource.Variables.Default)); - + var stats = new LabourStatistics(); + var agg = AgeBandAggregates.computeWithSupplier(ArrayList::new); + stats.updateWithSupplier(() -> testPopulation, agg); + assertEquals(0.25, stats.getEmpToNotEmp()); } @Test @DisplayName("Proportion becoming employed") public void proportionNotEmpToEmp() { - - // Entering employment prevalence - EmploymentHistoryFilter employmentHistoryUnemployed = new EmploymentHistoryFilter(Les_c4.NotEmployed); - CrossSection.Integer personsNotEmpToEmp = new CrossSection.Integer(testPopulation, Person.class, "getEmployed", true); - personsNotEmpToEmp.setFilter(employmentHistoryUnemployed); - - MeanArrayFunction isNotEmpToEmp = new MeanArrayFunction(personsNotEmpToEmp); - isNotEmpToEmp.applyFunction(); - assertEquals(0.5, isNotEmpToEmp.getDoubleValue(IDoubleSource.Variables.Default)); - - + var stats = new LabourStatistics(); + var agg = AgeBandAggregates.computeWithSupplier(ArrayList::new); + stats.updateWithSupplier(() -> testPopulation, agg); + assertEquals(0.5, stats.getNotEmpToEmp()); } - } diff --git a/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java b/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java index 8cb7ae4b5..ef359ee6b 100644 --- a/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java +++ b/src/test/java/simpaths/integrationtest/RunSimPathsIntegrationTest.java @@ -17,6 +17,11 @@ @TestMethodOrder(MethodOrderer.OrderAnnotation.class) public class RunSimPathsIntegrationTest { + /** Absolute epsilon for numeric comparison. */ + private static final double ABS_EPSILON = 1e-9; + /** Relative epsilon for numeric comparison. */ + private static final double REL_EPSILON = 1e-6; + @Test @DisplayName("Initial database setup runs successfully") @Order(1) @@ -63,38 +68,45 @@ public static void loadResults() throws IOException { } @Test - public void compareStatistics1() throws IOException { + public void compareWealthIncomeStatistics() throws IOException { compareFiles( - latestOutputDir.resolve("csv/Statistics1.csv"), - Paths.get("src/test/java/simpaths/integrationtest/expected/Statistics1.csv") + latestOutputDir.resolve("csv/WealthIncomeStatistics.csv"), + Paths.get("src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv") ); } @Test - public void compareStatistics21() throws IOException { + public void compareDemographicStatistics() throws IOException { compareFiles( - latestOutputDir.resolve("csv/Statistics21.csv"), - Paths.get("src/test/java/simpaths/integrationtest/expected/Statistics21.csv") + latestOutputDir.resolve("csv/DemographicStatistics.csv"), + Paths.get("src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv") ); } @Test - public void compareStatistics31() throws IOException { - compareFiles( - latestOutputDir.resolve("csv/Statistics31.csv"), - Paths.get("src/test/java/simpaths/integrationtest/expected/Statistics31.csv") - ); + public void verifyAlignmentStatisticsExported() { + assertTrue( + Files.exists(latestOutputDir.resolve("csv/AlignmentStatistics.csv")), + "Expected output file is missing: " + latestOutputDir.resolve("csv/AlignmentStatistics.csv") + ); + } + @Test + public void compareWellbeingByGender() throws IOException { + compareFiles( + latestOutputDir.resolve("csv/WellbeingByGender.csv"), + Paths.get("src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv") + ); } @Test - public void compareHealthStatistics1() throws IOException { + public void compareHealthStatistics() throws IOException { compareFiles( - latestOutputDir.resolve("csv/HealthStatistics1.csv"), - Paths.get("src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv") + latestOutputDir.resolve("csv/HealthStatistics.csv"), + Paths.get("src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv") ); } @Test - public void compareEmploymentStatistics1() throws IOException { + public void compareLabourStatistics() throws IOException { compareFiles( - latestOutputDir.resolve("csv/EmploymentStatistics1.csv"), - Paths.get("src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv") + latestOutputDir.resolve("csv/LabourStatistics.csv"), + Paths.get("src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv") ); } } @@ -185,7 +197,20 @@ private boolean tokensMatchWithTolerance(String expectedToken, String actualToke Double actualNumber = tryParseDouble(actualTrimmed); if (expectedNumber != null && actualNumber != null) { - return true; + double e = expectedNumber; + double a = actualNumber; + if (Double.isNaN(e) && Double.isNaN(a)) { + return true; + } + if (Double.isNaN(e) || Double.isNaN(a)) { + return false; + } + if (Double.isInfinite(e) || Double.isInfinite(a)) { + return Double.compare(e, a) == 0; + } + double diff = Math.abs(e - a); + double tolerance = Math.max(ABS_EPSILON, REL_EPSILON * Math.max(Math.abs(e), Math.abs(a))); + return diff <= tolerance; } return expectedToken.equals(actualToken); diff --git a/src/test/java/simpaths/integrationtest/expected/AlignmentStatistics.csv b/src/test/java/simpaths/integrationtest/expected/AlignmentStatistics.csv new file mode 100644 index 000000000..c61ee15c0 --- /dev/null +++ b/src/test/java/simpaths/integrationtest/expected/AlignmentStatistics.csv @@ -0,0 +1,9 @@ +run,time,id_AlignmentStatistics,alignEmpSimACFShare,alignEmpSimACMShare,alignEmpSimCouplesShare,alignEmpSimFWithDepShare,alignEmpSimMWithDepShare,alignEmpSimSingleFShare,alignEmpSimSingleMShare,alignEmpTgtACFShare,alignEmpTgtACMShare,alignEmpTgtCouplesShare,alignEmpTgtFWithDepShare,alignEmpTgtMWithDepShare,alignEmpTgtSingleFShare,alignEmpTgtSingleMShare,alignFertAdj,alignFertRateSim,alignFertRateTgt,alignInSchoolAdj,alignInSchoolSimShare,alignInSchoolTgtShare,alignPartnerAdj,alignPartnerSimShare,alignPartnerTgtShare,alignUtilAdjACF,alignUtilAdjACM,alignUtilAdjCouple,alignUtilAdjFWithDep,alignUtilAdjMWithDep,alignUtilAdjSingleF,alignUtilAdjSingleM +1,2019.0,1,0.5017182130584192,0.567524115755627,0.877972027972028,0.3619047619047619,0.43356643356643354,0.4658780709736124,0.5353901996370236,0.5403293808853606,0.5311791259117856,0.8735970003111929,0.3943366638089926,0.465356415881109,0.4438849669010334,0.4705375056413739,0.0,0.049877149877149876,0.05113363440615968,0.0,0.2955160999097201,0.3023858368396759,0.0,0.5256896326317165,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2020.0,1,0.43312101910828027,0.5306122448979592,0.9078327444051826,0.47128378378378377,0.48026315789473684,0.3220149253731343,0.4368347987043036,0.5501985392408713,0.5109522836960044,0.8754389771797882,0.3941959194429085,0.4620365639995361,0.4428142056392469,0.4648045911203806,0.0,0.049367402629620444,0.04996578478889472,0.0,0.2982028632348462,0.2760101854801178,1.6784928515650515,0.6225113858165257,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2021.0,1,0.45417515274949083,0.5142314990512334,0.9229081334113517,0.4868421052631579,0.48084291187739464,0.38556067588325654,0.4810187409899087,0.5382718801505548,0.5130523068280014,0.8776418122289941,0.3980978816455363,0.4641592336214714,0.4451259300414946,0.4776386065456221,0.0,0.04747700720855083,0.04833442666835588,0.0,0.333027803238619,0.2792655229568481,0.6593871275540656,0.6310886862022123,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2022.0,1,0.46678321678321677,0.5377207062600321,0.9290780141843972,0.49420289855072463,0.4889867841409692,0.4170650974623023,0.48663594470046084,0.5382469728746202,0.5423248579660446,0.8712018643202526,0.4133664269810563,0.4635896862300199,0.4530541291186285,0.5097880138188646,0.0,0.048296151017406225,0.04938041570024613,0.0,0.3152634766807995,0.2648949027061462,0.1264374109098567,0.6110969061621069,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2019.0,1,0.5008576329331046,0.567524115755627,0.8775831873905429,0.3632075471698113,0.43617021276595747,0.46504559270516715,0.5347826086956522,0.5403293808853606,0.5311791259117856,0.8735970003111929,0.3943366638089926,0.465356415881109,0.4438849669010334,0.4705375056413739,0.0,0.049926217412690606,0.05113363440615968,0.0,0.29627403846153844,0.3023858368396759,0.0,0.525599947688485,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2020.0,1,0.461038961038961,0.5132382892057027,0.9080357142857143,0.4685430463576159,0.4911504424778761,0.323781168589505,0.42994505494505497,0.5501985392408713,0.5109522836960044,0.8754389771797882,0.3941959194429085,0.4620365639995361,0.4428142056392469,0.4648045911203806,0.0,0.049838026414153996,0.04996578478889472,0.0,0.3029286150091519,0.2760101854801178,1.7347871913004633,0.6206357477853048,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2021.0,1,0.4891304347826087,0.5209923664122137,0.9225455614344503,0.484375,0.4885057471264368,0.39113971980310486,0.4810187409899087,0.5382718801505548,0.5130523068280014,0.8776418122289941,0.3980978816455363,0.4641592336214714,0.4451259300414946,0.4776386065456221,0.0,0.05320735952262556,0.04833442666835588,0.0,0.31098867462503826,0.2792655229568481,0.8022430892446019,0.630488278720373,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2022.0,1,0.48518518518518516,0.5364667747163695,0.9302117506710409,0.49449035812672176,0.4955555555555556,0.4186558942343004,0.48984302862419205,0.5382469728746202,0.5423248579660446,0.8712018643202526,0.4133664269810563,0.4635896862300199,0.4530541291186285,0.5097880138188646,0.0,0.04865398863917016,0.04938041570024613,0.0,0.31907794965119807,0.2648949027061462,0.0,0.6119383825417202,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 diff --git a/src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv b/src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv new file mode 100644 index 000000000..e060d9931 --- /dev/null +++ b/src/test/java/simpaths/integrationtest/expected/DemographicStatistics.csv @@ -0,0 +1,9 @@ +run,time,id_DemographicStatistics,demMarried18to29Share,demMarried30to54Share,demMarried55to74Share,demNChild18to29Avg,demNChild30to54Avg,demNChild55to74Avg,demPop18to29N,demPop30to54N,demPop55to74N +1,2019.0,1,0.24441388793399793,0.6560854753793744,0.5961178671655754,0.2743210725335167,0.933106224837411,0.07881197380729654,2909.0,6458.0,4276.0 +1,2020.0,1,0.4400977995110024,0.7572074177964782,0.6537927844588344,0.3328676213761788,0.9501324606513948,0.08464384828862165,2863.0,6417.0,4324.0 +1,2021.0,1,0.43946346629015176,0.7648980861988486,0.6626533393911859,0.33603953406283094,0.9394740936673409,0.09336665152203544,2833.0,6427.0,4402.0 +1,2022.0,1,0.37985309548793283,0.7480012300123001,0.6591683708248125,0.3196922000699545,0.9377306273062731,0.0924789820495342,2859.0,6504.0,4401.0 +2,2019.0,1,0.2449330127104088,0.6559256390395043,0.5952715355805244,0.2741326004809344,0.9344694035631294,0.07911985018726592,2911.0,6455.0,4272.0 +2,2020.0,1,0.43212036389083275,0.7521100343857455,0.655268022181146,0.33484954513645904,0.952172553923101,0.08456561922365989,2858.0,6398.0,4328.0 +2,2021.0,1,0.43840451817860926,0.7624318004676539,0.6642435256701499,0.3363925167666784,0.9457521434138737,0.09450249886415266,2833.0,6415.0,4402.0 +2,2022.0,1,0.38431921596079804,0.7467784505511567,0.6618982742960945,0.3227161358067903,0.9326191585157584,0.09673024523160763,2857.0,6441.0,4404.0 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv b/src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv deleted file mode 100644 index 4a927d9b5..000000000 --- a/src/test/java/simpaths/integrationtest/expected/EmploymentStatistics1.csv +++ /dev/null @@ -1,9 +0,0 @@ -run,time,id_EmploymentStatistics1,labEmpShare,labEmpToNotEmpShare,labNotEmpToEmpShare,labUnempShare -1,2019.0,1,0.7132976533552903,0.0,0.0,0.14985590778097982 -1,2020.0,1,0.718380011431371,0.07804440457501682,0.41068537506745817,0.1511390544623173 -1,2021.0,1,0.754951105267483,0.01866846603688709,0.3838761345435131,0.10781493960062453 -1,2022.0,1,0.7724121251209287,0.026419804451841066,0.3193215339233038,0.10053208642373428 -2,2019.0,1,0.7139321950012373,0.0,0.0,0.14913800214468365 -2,2020.0,1,0.7135108481262328,0.08067605633802817,0.40011007154650524,0.15335305719921105 -2,2021.0,1,0.751134956665291,0.020145686319144093,0.3759239704329461,0.11605447791993397 -2,2022.0,1,0.7650397275822929,0.027392913802221048,0.30921501706484644,0.10653478190368088 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv b/src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv new file mode 100644 index 000000000..2c5c636d7 --- /dev/null +++ b/src/test/java/simpaths/integrationtest/expected/HealthStatistics.csv @@ -0,0 +1,9 @@ +run,time,id_HealthStatistics,healthDsbl18to29Share,healthDsbl30to54Share,healthDsbl55to74Share,healthScore18to29Avg,healthScore30to54Avg,healthScore55to74Avg +1,2019.0,1,0.044001375042970095,0.08237844533911427,0.06711880261927035,3.655895496734273,3.476618148033447,3.055659494855005 +1,2020.0,1,0.044009779951100246,0.08991740688795387,0.06938020351526364,3.5745721271393642,3.388187626616799,3.0353839037927846 +1,2021.0,1,0.03882809742322626,0.09506768321145169,0.06428895956383462,3.5135898340981293,3.3304807841916912,3.0165833711949115 +1,2022.0,1,0.04686953480237845,0.10654981549815498,0.061576914337650536,3.4249737670514167,3.261992619926199,2.9529652351738243 +2,2019.0,1,0.04397114393679148,0.082571649883811,0.0671816479400749,3.6561319134318104,3.475445391169636,3.055945692883895 +2,2020.0,1,0.04443666899930021,0.092841512972804,0.06816081330868762,3.5675297410776765,3.3740231322288214,3.0309611829944547 +2,2021.0,1,0.04376985527709142,0.10023382696804364,0.06519763743752839,3.522414401694317,3.3178487918939985,3.002044525215811 +2,2022.0,1,0.04585229261463073,0.10588417947523676,0.060626702997275204,3.4441722086104307,3.272938984629716,2.9439146230699365 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv b/src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv deleted file mode 100644 index 6337a1b52..000000000 --- a/src/test/java/simpaths/integrationtest/expected/HealthStatistics1.csv +++ /dev/null @@ -1,25 +0,0 @@ -run,time,id_HealthStatistics1,demLifeSatScore0to10Avg,demLifeSatScore0to10P10,demLifeSatScore0to10P25,demLifeSatScore0to10P50,demLifeSatScore0to10P75,demLifeSatScore0to10P90,demSex,healthLifeYearQualAdj,healthLifeYearWbAdj,healthMentalMcsAvg,healthMentalMcsP10,healthMentalMcsP25,healthMentalMcsP50,healthMentalMcsP75,healthMentalMcsP90,healthNObsSubGroup,healthPhysicalPcsAvg,healthPhysicalPcsP10,healthPhysicalPcsP25,healthPhysicalPcsP50,healthPhysicalPcsP75,healthPhysicalPcsP90,healthWbScore0to36Avg,healthWbScore0to36P10,healthWbScore0to36P25,healthWbScore0to36P50,healthWbScore0to36P75,healthWbScore0to36P90 -1,2019.0,1,6.781152019002682,3.33,5.0,7.0,8.33,8.33,Total,8383.293308034823,68516.7600000031,47.893253167062184,33.12,42.05,50.0,55.28,58.15,10104,51.14012569279499,36.69,47.81,54.52,57.49,59.72,11.472288202692003,6.0,8.0,10.0,13.0,20.0 -1,2019.0,1,6.723482647296368,3.33,5.0,7.0,8.33,8.33,Male,4181.032851742744,33321.5800000008,48.583791364003204,34.602000000000004,43.2,51.0,55.6,58.3,4956,51.66736884584304,39.0,48.98,54.53,57.47,59.393,11.063962873284908,6.0,8.0,10.0,12.0,18.0 -1,2019.0,1,6.836670551670778,3.33,5.0,8.0,8.33,8.33,Female,4202.260456292225,35195.180000001164,47.22846930846952,32.13,41.06,49.0,54.96,58.05,5148,50.632546620046,34.265,46.68,54.51,57.49,59.99,11.865384615384615,6.0,8.0,11.0,14.0,20.0 -1,2020.0,1,6.610597429925429,3.725747157128133,5.225444747484767,6.707512686074843,8.173743450458348,9.508323067411508,Total,8248.127382280165,67487.5891621087,45.86414776189753,32.76020085086762,39.36567825915321,46.26630687255094,52.772579058459826,58.55145929741281,10209,51.41362331537166,37.809208110859046,45.73384647296994,52.44484002230666,58.44637970624339,63.55871301723717,12.673641760072487,5.757683837822993,8.855665714284365,12.323114914144071,16.177565366400337,19.77501193069235 -1,2020.0,1,6.675193793681248,3.7811875127443724,5.284579497919485,6.778309213208674,8.282576492067868,9.622192906562738,Male,4130.292096535335,33395.99454978728,47.20529013987232,34.50169148556363,41.016005785585705,47.56293650740277,53.935350236344185,59.32111803447019,5003,51.87264915573842,38.990095819064884,46.59871786307795,52.77521965237201,58.5942555597642,63.63130715211379,11.868815422911723,5.259065833295279,8.230507676706083,11.493650447800562,15.31147746003376,18.6370438163055 -1,2020.0,1,6.548519902482024,3.6893578223534234,5.181411126337608,6.651222153970809,8.096580608944809,9.358913174418358,Female,4117.835285744851,34091.594612321416,44.57530117776266,31.187416041950613,37.784934777705004,44.99538240708275,51.56057343179964,57.515171741139554,5206,50.972496484915425,36.815031474570674,44.77151872337412,52.228175740249114,58.28388656932232,63.4602109908623,13.447085126345263,6.30958019594246,9.630621994991731,13.19451663960811,17.06364549597884,20.613925743739305 -1,2021.0,1,6.63728501198545,3.906714919412983,5.244765719229051,6.711315194185561,8.177539004761616,9.467362692951163,Total,8204.897167613599,67282.1581664965,45.81519400107198,32.6929340777231,38.87694420519159,46.02324949272163,52.697101507732185,58.69776956595552,10137,51.68627945808902,38.48267658869997,45.321602093101646,52.242323693813425,58.656348460202594,64.34224524959134,12.944642639520643,6.111258181698892,9.203798956284208,12.822901246213783,16.5234300303382,19.912272217118577 -1,2021.0,1,6.6358485322655705,3.9076965942735686,5.232459860244543,6.729995375335982,8.146262024519142,9.478715630575353,Male,4109.586449362942,32927.08041710176,47.19114583195416,34.32347086782174,40.70684354935384,47.35370585197653,53.91679712617439,59.88384124116227,4962,52.246977025566416,39.274635260744404,45.88936783226836,52.71278319325469,58.95916951835615,64.8297049378841,12.358180235118704,5.537784059496242,8.661657100527245,12.251099433540965,15.883454158134391,19.27237261077386 -1,2021.0,1,6.638662367032794,3.902749119826259,5.257324955851241,6.694111375454157,8.205590329730203,9.46097759166666,Female,4095.310718250644,34355.07774939471,44.49587554989563,31.542121780315558,37.41760447910149,44.63274612286482,51.442166058134916,57.52199092808827,5175,51.14865987744712,37.61772655778946,44.709477514816484,51.80695306490417,58.29028167086609,63.92259875716118,13.506966591335665,6.718243644674116,9.797545547348552,13.464675035927412,17.07856822354127,20.3689628580935 -1,2022.0,1,6.537796805616559,3.8332348993102503,5.176126980711906,6.598626146412488,7.996475599051233,9.289187134889287,Total,8257.263274108562,67633.5079541033,45.638372753757565,32.37696454418508,38.819126780135406,45.80967332601514,52.56604628714177,58.5921159841777,10345,50.97639297094621,37.6458652626698,44.466193766778716,51.32376906483475,57.98189985048771,63.813757553961736,12.87836914450102,5.894577947755574,9.225845277673308,12.877735633025202,16.424678806297514,19.87930899779249 -1,2022.0,1,6.519294918975182,3.8252696377706052,5.126614959421408,6.565950068948192,8.028186828425989,9.243384521034,Male,4153.239234454596,33065.86382904212,46.860019707275406,33.70860357654566,40.39133223778091,46.91977363016137,53.60697612037136,59.65056782943187,5072,51.72469587205957,38.81199349996316,45.39510961289852,52.188107252588,58.42091346827156,64.4397492663658,12.35481563331262,5.385654927111247,8.611029095566053,12.279330299235905,15.91700716493538,19.29854755391635 -1,2022.0,1,6.555593424058616,3.851185689839042,5.232623540208925,6.636195986476712,7.973215946319512,9.328426832946596,Female,4104.024039653982,34567.64412506108,44.46329341595297,31.264893840561108,37.601493954556176,44.64388282378564,51.29150100552935,57.518904991252576,5273,50.25661441709689,36.857799133418176,43.6279610904043,50.488075926026376,57.42608849451672,63.29882113363579,13.381965467039825,6.491033434570065,9.815293587279575,13.398464867294146,16.892856124532457,20.376237809084603 -2,2019.0,1,6.786520575111859,3.33,5.0,7.0,8.33,8.33,Total,8370.065275084518,68442.0600000031,47.907536936043265,33.14,42.05,50.0,55.34,58.15,10085,51.14231234506699,36.726,47.8,54.52,57.49,59.72,11.463460585027269,6.0,8.0,10.0,13.0,20.0 -2,2019.0,1,6.732984441301439,3.33,5.0,7.0,8.33,8.33,Male,4177.169885786301,33321.54000000082,48.593297635886024,34.65,43.25,51.0,55.6,58.3,4949,51.68286522529767,39.0,48.98,54.53,57.47,59.4,11.052131743786624,6.0,8.0,10.0,12.0,18.0 -2,2019.0,1,6.83810747663574,3.33,5.0,8.0,8.33,8.33,Female,4192.89538929836,35120.52000000116,47.246744548286806,32.198,41.06,49.0,54.96,58.05,5136,50.62144080996824,34.301,46.635000000000005,54.51,57.49,59.976000000000006,11.85981308411215,6.0,8.0,11.0,14.0,20.0 -2,2020.0,1,6.666980881030563,3.79590106316614,5.28770418897872,6.777156651456801,8.246300879034287,9.539507572747144,Total,8201.557851086345,67576.51821012578,45.90907684397509,32.80868873979895,39.39135676166323,46.34744154806434,52.82812998366706,58.59602322241514,10136,51.4643524959085,38.02795922833847,45.81243810571845,52.461400988719355,58.39984371295924,63.5902342784553,12.926555377589393,6.029525708106725,9.064060097343049,12.615954635958865,16.44490171950817,20.05181770515116 -2,2020.0,1,6.763025151659051,3.882368868197391,5.357367293133736,6.883104952861058,8.350134328945828,9.710086728973145,Male,4094.7094834551144,33632.52407920046,47.19171578023122,34.332164126600844,40.863413818890876,47.541352601059614,53.950755771678175,59.45257115934627,4973,51.707479617201685,39.0597858930488,46.39880640387963,52.49635711376552,58.35257230264243,63.479230998256035,12.062731601930048,5.4713494176136575,8.447988966601798,11.748978513813874,15.504566986130948,18.924198369688476 -2,2020.0,1,6.574471069325078,3.706649318021962,5.2053817361031065,6.677389007613972,8.125530139255224,9.360956242838096,Female,4106.848367631243,33943.99413092538,44.673639418059565,31.482250864266256,37.906688035591486,45.11163620283005,51.64137660547063,57.56915571284539,5163,51.23017252802276,37.0202915912202,45.04586060468515,52.43102083422822,58.489263858988856,63.694492938625224,13.758590170607693,6.664499723115602,9.920181231137562,13.481296148899025,17.4244349144142,20.972135635893203 -2,2021.0,1,6.690410506223148,3.9572473039645333,5.302666939172668,6.770529718835435,8.225754722136386,9.486655061027587,Total,8159.600277937682,67533.00364981646,45.9162194692259,32.730210267543,39.02530367740133,46.134722152297186,52.8052014035807,58.7723632152116,10094,51.53653184124655,38.371416381670315,45.13914006766219,52.07733794959097,58.506896926597236,64.14645840453356,13.187987524046061,6.340795149269812,9.42771417686578,13.087468280057186,16.74056825139801,20.217235416941676 -2,2021.0,1,6.7720714044941115,4.031475118840537,5.391845372873118,6.8731569932145025,8.294127220774488,9.591107991848245,Male,4071.280643536073,33454.03273820091,47.21962155443569,34.14574853047761,40.84813759196775,47.53553333291729,53.9289386934945,60.00341397134855,4940,51.90009038592889,39.04273675658537,45.532441601728294,52.34842259143208,58.566737041801815,64.23774259458806,12.305899050083758,5.533652248798487,8.582513500267025,12.213424143621932,15.863280450750297,19.250456350077414 -2,2021.0,1,6.612140262245978,3.885811128516833,5.220776628952174,6.668223234659287,8.17949364124544,9.406664742907925,Female,4088.319634401601,34078.97091161577,44.666936135711005,31.538935504556875,37.64028718792687,44.8284118573054,51.77232606635533,57.67057063044478,5154,51.18806866493094,37.74088427446952,44.6370432735218,51.80729979972644,58.401461691733466,64.05347923022762,14.033450671382774,7.198570705741167,10.389230410833193,13.971457974784702,17.58894028194424,20.935777576673452 -2,2022.0,1,6.567471124248764,3.83983422202851,5.215501515647134,6.633196288662077,8.0315552092504,9.345977678448392,Total,8200.538269196417,67474.1983305318,45.65910483226554,32.38018369234729,38.92740370546191,45.81266259668021,52.538466152646436,58.561335389855216,10274,50.97737033997559,37.65928352150519,44.388058473244406,51.36431624619166,57.935746862986434,63.67328845657897,13.035252616153041,6.051584769894543,9.325200852283366,13.015834413817585,16.574066404459955,20.05678791199157 -2,2022.0,1,6.601185109687892,3.862107408707888,5.222719745033519,6.657861999735694,8.135346354384946,9.357689309940346,Male,4101.6978084427665,33230.365842168845,46.743836270170036,33.54674714116538,40.23279881468352,46.84686646199246,53.43906423487421,59.45280187289365,5034,51.51050922509953,38.58417332817753,45.16521964421465,51.94371507187412,58.22023933012072,63.91508920596812,12.320274308863056,5.442940023403027,8.630216164928248,12.248459832455406,15.880931381862144,19.169249475015988 -2,2022.0,1,6.535082535947146,3.816532106009871,5.201619102774687,6.594161220643704,7.946371426903574,9.318671271307293,Female,4098.840460753668,34243.83248836305,44.61701741653795,31.3787293074591,37.83379846803033,44.60007362770639,51.55439572590352,57.49098286345642,5240,50.46519073163332,36.952444637874564,43.72530843948016,50.6849372492491,57.654834783012454,63.49478583621641,13.722122997622145,6.7389730039956195,10.069123579548855,13.68360798737968,17.184843538363047,20.879902981111872 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv b/src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv new file mode 100644 index 000000000..8c9645eaa --- /dev/null +++ b/src/test/java/simpaths/integrationtest/expected/LabourStatistics.csv @@ -0,0 +1,9 @@ +run,time,id_LabourStatistics,labEmpShare,labEmpToNotEmpShare,labNotEmpToEmpShare,labUnempShare,labWorkFullTime18to29Share,labWorkFullTime30to54Share,labWorkFullTime55to74Share,labWorkPartTime18to29Share,labWorkPartTime30to54Share,labWorkPartTime55to74Share +1,2019.0,1,0.7223091493041258,0.0,0.0,0.14568063905130527,0.5472671020969405,0.70548157324249,0.2778297474275023,0.10175317978686833,0.13084546299163827,0.09494855004677269 +1,2020.0,1,0.7217721937510332,0.07681940700808626,0.3997754070746771,0.14572656637460737,0.4966818023052742,0.7472339099267571,0.3348751156336725,0.15263709395738737,0.09085242325074022,0.05735430157261795 +1,2021.0,1,0.7530417625780993,0.023785594639865997,0.39060773480662986,0.10662610983229201,0.5171196611366043,0.7885483118095534,0.3759654702407996,0.13907518531591953,0.08588766142834915,0.057928214447978195 +1,2022.0,1,0.7617886178861789,0.02887249736564805,0.29992576095025986,0.10382113821138211,0.5124169289961525,0.7919741697416974,0.3965007952738014,0.15389996502273523,0.08825338253382534,0.05998636673483299 +2,2019.0,1,0.7212750185322461,0.0,0.0,0.14611646487109795,0.5475781518378564,0.7039504260263362,0.2778558052434457,0.1016832703538303,0.13121611154144075,0.09363295880149813 +2,2020.0,1,0.7183774834437087,0.07982909826849562,0.4,0.14908940397350992,0.4940517844646606,0.7463269771803689,0.33964879852125696,0.14485654303708886,0.08690215692403876,0.05822550831792976 +2,2021.0,1,0.7551255660765748,0.020894181082902717,0.3797740720817644,0.11082750102923014,0.5301800211789622,0.7861262665627435,0.3736937755565652,0.14401694316978467,0.08448947778643803,0.05929123125851885 +2,2022.0,1,0.7635278731404284,0.027689706193193827,0.3020908435472242,0.1015203531142717,0.5110255512775639,0.7904052165812762,0.3994096276112625,0.15960798039901994,0.08927185219686384,0.06085376930063579 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/Statistics1.csv b/src/test/java/simpaths/integrationtest/expected/Statistics1.csv deleted file mode 100644 index fc0863e19..000000000 --- a/src/test/java/simpaths/integrationtest/expected/Statistics1.csv +++ /dev/null @@ -1,9 +0,0 @@ -run,time,id_Statistics1,edi_p50,sIndex_p50,statYHhDispEquivNatGini,statYMktNatGini,yHhDispEquivP50,yHhQuintilesC5P20,yHhQuintilesC5P40,yHhQuintilesC5P60,yHhQuintilesC5P80,yLabP20,yLabP40,yLabP60,yLabP80 -1,2019.0,1,15353.892240000001,0.0,0.0,0.0,15581.795538461542,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2020.0,1,15495.281058979526,0.0,0.0,0.0,15495.281058979526,4.950197717538108,7.319940466401706,8.068515897261777,8.64602416553861,486.2888559998317,1365.233604405037,2281.4162588356758,3827.6554474883005 -1,2021.0,1,15759.869823108587,0.0,0.0,0.0,15765.89761887139,5.7212507365504806,7.447546599308169,8.116525671643636,8.668379854514725,686.3989193844578,1450.7892491313905,2352.464870213408,3902.9431875780006 -1,2022.0,1,16115.58243336745,0.0,0.0,0.0,16119.686247212114,5.982803140960501,7.501814224253487,8.149299162157433,8.710368538841145,628.8831495993874,1426.2184657764553,2303.2699334999074,3948.9547121966816 -2,2019.0,1,15357.864959999999,0.0,0.0,0.0,15588.1704,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2020.0,1,16217.792666099533,0.0,0.0,0.0,16217.792666099533,4.615480295638323,7.3329710856832655,8.175838875146923,8.7873487204666,541.0261499234446,1569.437756312981,2656.4049717752346,4590.3665061636575 -2,2021.0,1,16551.463885949386,0.0,0.0,0.0,16560.701464864364,5.618524716120628,7.499979629651158,8.235981271630662,8.82807012554799,746.7054835924638,1678.6542095657167,2810.18106441219,4675.380599832989 -2,2022.0,1,16825.09635133956,0.0,0.0,0.0,16827.001222448842,5.879082797883639,7.531308457782852,8.244604023436178,8.827737057782983,692.0987134304304,1650.597451088591,2772.945271394626,4684.924631673976 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/Statistics21.csv b/src/test/java/simpaths/integrationtest/expected/Statistics21.csv deleted file mode 100644 index 5e1cec678..000000000 --- a/src/test/java/simpaths/integrationtest/expected/Statistics21.csv +++ /dev/null @@ -1,9 +0,0 @@ -run,time,id_Statistics21,demDsbl18to29Share,demDsbl30to54Share,demDsbl55to74Share,demMarried18to29Share,demMarried30to54Share,demMarried55to74Share,demNChild18to29Avg,demNChild30to54Avg,demNChild55to74Avg,demPop18to29N,demPop30to54N,demPop55to74N,healthScore18to29Avg,healthScore30to54Avg,healthScore55to74Avg,labNoWork18to29Share,labNoWork18to54Share,labNoWork30to54Share,labNoWork55to74Share,labWorkFullTime18to29Share,labWorkFullTime30to54Share,labWorkFullTime55to74Share,labWorkPartTime18to29Share,labWorkPartTime30to54Share,labWorkPartTime55to74Share,statInvestLoss18to29Avg,statInvestLoss30to54Avg,statInvestLoss55to74Avg,statYDisp18to29Avg,statYDisp30to54Avg,statYDisp55to74Avg,statYDispGrossOfLosses18to29Avg,statYDispGrossOfLosses30to54Avg,statYDispGrossOfLosses55to75Avg,statYInvest18to29Avg,statYInvest30to54Avg,statYInvest55to74Avg,statYLab18to29Avg,statYLab30to54Avg,statYLab55to74Avg,statYPens18to29Avg,statYPens30to54Avg,statYPens55to74Avg,wealth18to29Avg,wealth30to54Avg,wealth55to74Avg,x18to29Avg,x18to54Avg,x30to54Avg,x55to74Avg,xToLeisureRatio -1,2019.0,1,0.03737997256515775,0.09197894084855993,0.058134083450539144,0.2397119341563786,0.6731186125735522,0.636896390060947,0.27434842249657065,0.9530814493651285,0.07712142522269104,2916.0,6458.0,4266.0,3.672153635116598,3.4783214617528646,3.1167369901547115,-0.004249733744855988,-0.024792869794721395,-0.024612932548776723,0.033406073792780155,0.5555555555555556,0.6853515020130071,0.26371308016877637,0.10596707818930041,0.1347166305357696,0.10173464603844351,0.0,0.0,0.0,-225.80216051340744,-482.49109267280596,-511.8638623799602,1060.4100609151637,1617.029826077194,1566.981732262897,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.34744375,-1108.3894350892856,-1343.6696142857143,-1403.9432562499999,NaN -1,2020.0,1,0.037787701820680177,0.08387196060326255,0.08277765003449068,0.42425283407763653,0.7548476454293629,0.6792366061163486,0.3253177602198557,0.9669128962757771,0.0853069671188779,2911.0,6498.0,4349.0,3.5791824115424253,3.3901200369344413,3.076109450448379,0.007667953246307091,-0.033443064893153074,-0.0403404294244383,0.01784667192458045,0.5166609412572999,0.7425361649738381,0.32858128305357553,0.132944005496393,0.09325946445060018,0.0524258450218441,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.1095401312451,-1107.7758988237144,-1342.8526848560089,-1403.8145050070698,NaN -1,2021.0,1,0.03612767450017538,0.06753812636165578,0.07762349191896198,0.42967379866713434,0.7661064425770309,0.6849533348508992,0.33882848123465453,0.945845004668534,0.09401320282267243,2851.0,6426.0,4393.0,3.548579445808488,3.367569249922191,3.0851354427498294,-0.020734816590669947,-0.06844176166788585,-0.0822292070961718,-0.0170351141816526,0.5324447562258856,0.7950513538748832,0.3637605281129069,0.14556296036478428,0.08263305322128851,0.05212838606874573,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0494773199941,-1107.7037001629633,-1342.7765869999637,-1403.8306362458163,-0.7807440366889227 -1,2022.0,1,0.04645560908465245,0.06840739044128874,0.0976985559566787,0.37818306951135583,0.7474423576118492,0.6854693140794224,0.3479008947006194,0.9215147350740571,0.09657039711191336,2906.0,6549.0,4432.0,3.444253269098417,3.2919529699190715,2.996841155234657,-0.04850824246386787,-0.08837282927918194,-0.09460435107650023,-0.040225622382671467,0.5467997247075017,0.7992059856466636,0.38605595667870035,0.15898141775636615,0.09085356542983662,0.053023465703971116,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0307465987404,-1107.7226574258877,-1342.8190159565147,-1403.8096492035813,0.9294324069461315 -2,2019.0,1,0.037037037037037035,0.09151543353497751,0.05731735964294104,0.24039780521262002,0.6714751046998604,0.6370683579985905,0.2757201646090535,0.9530013959981387,0.07657975099835565,2916.0,6447.0,4257.0,3.672496570644719,3.4774313634248486,3.1195677707305616,-0.0045926692729766905,-0.02507772775330397,-0.025391705537459286,0.034042900305379376,0.5552126200274349,0.6865208624166279,0.26309607704956545,0.10665294924554183,0.1343260431208314,0.1017148226450552,0.0,0.0,0.0,-226.28168459165613,-472.34542838695415,-512.3576696966218,1059.930536836915,1627.1754903630458,1566.4879249462354,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.34744375,-1108.3894350892856,-1343.6696142857143,-1403.9432562499999,NaN -2,2020.0,1,0.03948735711811569,0.08334624322230828,0.08452326116996775,0.4118462071354347,0.7529047250193648,0.6860893597420543,0.32490474541046066,0.9640588690937258,0.08406264394288346,2887.0,6455.0,4342.0,3.5691028749567026,3.3696359411309063,3.0695532012897284,0.019586720574991334,-0.02791070932475881,-0.037232638884585584,0.021377982404422013,0.5053688950467613,0.7432997676219985,0.32842008291110086,0.1323172843782473,0.08938807126258715,0.0490557346844772,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0862280620779,-1107.7737621378863,-1342.8646795019974,-1403.8318431109258,1.0138926596635465 -2,2021.0,1,0.03644727530077849,0.0692403876211316,0.08236632536973834,0.41259731068648264,0.7643013441700531,0.69032992036405,0.3343949044585987,0.9509221631759925,0.09169510807736064,2826.0,6398.0,4395.0,3.549539985845718,3.367458580806502,3.0755403868031856,-0.020009477919320617,-0.06367412052279903,-0.07606715073460457,-0.012977826848691643,0.5371549893842887,0.7899343544857768,0.3647326507394767,0.14012738853503184,0.08158799624882776,0.04709897610921502,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.0503848399476,-1107.739210281282,-1342.8341849891613,-1403.8546125648716,-0.5598136684247321 -2,2022.0,1,0.04946385333794535,0.07115414169356078,0.10038522547020168,0.35696990660671046,0.7467342861533733,0.690006798096533,0.32964372189553787,0.9383740587060089,0.09472014502605937,2891.0,6507.0,4413.0,3.441023867173988,3.2832334409097896,2.994108316338092,-0.03314564029747491,-0.08089872786908986,-0.08913063064392193,-0.03554456845683207,0.5316499481148391,0.7949900107576456,0.3834126444595513,0.15876859218263575,0.08959581988627632,0.05098572399728076,0.0,0.0,0.0,NaN,NaN,NaN,NaN,NaN,NaN,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,-720.1006030884996,-1107.7675024308128,-1342.846640024502,-1403.8355827997948,1.681132246206796 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/Statistics31.csv b/src/test/java/simpaths/integrationtest/expected/Statistics31.csv deleted file mode 100644 index b39877965..000000000 --- a/src/test/java/simpaths/integrationtest/expected/Statistics31.csv +++ /dev/null @@ -1,9 +0,0 @@ -run,time,id_Statistics31,careAdj,demFertAdj,demFertRateSim,demFertRateTarget,demPartnerAdj,demPartnerSimShare,demPartnerTargetShare,demUtilAdjCouple,demUtilAdjSDepF,demUtilAdjSDepM,demUtilAdjSingleACF,demUtilAdjSingleACM,demUtilAdjSingleF,demUtilAdjSingleM -1,2019.0,1,0.0,-0.279462622342386,0.050626689604325384,0.05113363440615968,-0.613869665517935,0.5439801190242627,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2020.0,1,0.0,-0.2659197918000082,0.04856027330405076,0.04996578478889472,1.5923485021919526,0.625579598145286,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2021.0,1,0.0,-0.25543875103684177,0.047371031746031744,0.04833442666835588,0.6717028585667406,0.6329130294212738,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -1,2022.0,1,0.0,-0.24930347300809638,0.047780742178025706,0.04938041570024613,-0.07967461177724555,0.615238336713996,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2019.0,1,0.0,-0.279462622342386,0.05070145212896874,0.05113363440615968,-0.613869665517935,0.5433117265763111,0.632472038269043,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2020.0,1,0.0,-0.2659197918000082,0.049038935436175456,0.04996578478889472,1.609625538158143,0.624611801242236,0.6234807968139648,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2021.0,1,0.0,-0.25543875103684177,0.04912718204488778,0.04833442666835588,0.6332489183786916,0.6314628608498216,0.6310330629348755,0.0,0.0,0.0,0.0,0.0,0.0,0.0 -2,2022.0,1,0.0,-0.24930347300809638,0.04802535348610434,0.04938041570024613,-0.036612235267410864,0.6132586130038846,0.6104874014854431,0.0,0.0,0.0,0.0,0.0,0.0,0.0 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv b/src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv new file mode 100644 index 000000000..8c71f82c8 --- /dev/null +++ b/src/test/java/simpaths/integrationtest/expected/WealthIncomeStatistics.csv @@ -0,0 +1,9 @@ +run,time,id_WealthIncomeStatistics,statInvestLoss18to29Avg,statInvestLoss30to54Avg,statInvestLoss55to74Avg,statSIndexP50,statYDispGrossOfLosses18to29Avg,statYDispGrossOfLosses30to54Avg,statYDispGrossOfLosses55to74Avg,statYHhDispEquivNatGini,statYInvest18to29Avg,statYInvest30to54Avg,statYInvest55to74Avg,statYLabWeeklyPerWorker18to29Avg,statYLabWeeklyPerWorker30to54Avg,statYLabWeeklyPerWorker55to74Avg,statYMktNatGini,statYPens18to29Avg,statYPens30to54Avg,statYPens55to74Avg,wealth18to29Avg,wealth30to54Avg,wealth55to74Avg,yHhDispEquivP50,yHhQuintilesC5P20,yHhQuintilesC5P40,yHhQuintilesC5P60,yHhQuintilesC5P80,yLabP20,yLabP40,yLabP60,yLabP80 +1,2019.0,1,0.0,0.0,0.0,0.0,1031.2494710491426,1657.7406238267768,1562.9547541500126,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15751.617600000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1,2020.0,1,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16283.058028118841,5.977584300385669,7.396355354574935,8.108897415752347,8.665867672167579,624.6825800939089,1486.1130942772668,2471.8220406055743,4151.642488756834 +1,2021.0,1,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16379.967347473626,6.177813108214614,7.45310922629252,8.1410107648745,8.694185148382058,762.3502620718175,1572.2382052866676,2544.74016172959,4210.789651944029 +1,2022.0,1,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16679.467668613863,6.268615570294203,7.504785946786127,8.16541164625361,8.707906611672232,759.7176689744649,1590.5858294412774,2573.544415714072,4269.280704865495 +2,2019.0,1,0.0,0.0,0.0,0.0,1031.0741948715065,1656.383215316451,1567.405011984656,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15755.1816,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2,2020.0,1,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,16941.95449495689,5.913483264109271,7.4432276502538866,8.209969239951125,8.793580531823213,655.1606771183261,1695.724672045708,2872.7218327604787,4823.908522203283 +2,2021.0,1,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17144.59786664643,6.200487790558318,7.5221100308260915,8.249982108239418,8.81767529803498,817.8211845767195,1819.8519291966963,2979.2435430051496,4927.364252821702 +2,2022.0,1,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,NaN,NaN,NaN,0.0,0.0,0.0,0.0,0.0,0.0,0.0,17213.779257599344,6.298369699763875,7.533738907132372,8.256738801983554,8.849786460591709,849.0814770119758,1856.641966032503,3018.7928994020353,4957.024082264723 \ No newline at end of file diff --git a/src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv b/src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv new file mode 100644 index 000000000..78b7af26f --- /dev/null +++ b/src/test/java/simpaths/integrationtest/expected/WellbeingByGender.csv @@ -0,0 +1,25 @@ +run,time,id_WellbeingByGender,demLifeSatScore0to10Avg,demLifeSatScore0to10P10,demLifeSatScore0to10P25,demLifeSatScore0to10P50,demLifeSatScore0to10P75,demLifeSatScore0to10P90,demSex,healthLifeYearQualAdj,healthLifeYearWbAdj,healthMentalMcsAvg,healthMentalMcsP10,healthMentalMcsP25,healthMentalMcsP50,healthMentalMcsP75,healthMentalMcsP90,healthNObsSubGroup,healthPhysicalPcsAvg,healthPhysicalPcsP10,healthPhysicalPcsP25,healthPhysicalPcsP50,healthPhysicalPcsP75,healthPhysicalPcsP90,healthWbScore0to36Avg,healthWbScore0to36P10,healthWbScore0to36P25,healthWbScore0to36P50,healthWbScore0to36P75,healthWbScore0to36P90 +1,2019.0,1,6.756175393447495,3.33,5.0,8.0,8.33,8.33,Total,8346.680086830402,68257.64000000327,47.14089280411759,32.09,41.3,49.13,54.79,57.92,10103,51.36303870137582,37.15,48.0,54.63,57.49,60.05,11.751855884390778,6.0,8.0,11.0,13.0,20.0 +1,2019.0,2,6.725988289925295,3.33,5.0,7.0,8.33,8.33,Male,4171.563445653993,33313.82000000077,48.062239047042205,33.472,42.86,50.33,55.565,58.22400000000002,4953,51.87814052089643,38.506,49.0,54.8,57.49,59.89,11.252170401776736,6.0,8.0,10.0,13.0,19.0 +1,2019.0,3,6.785207766990293,3.33,5.0,8.165,8.33,8.33,Female,4175.116641176408,34943.82000000122,46.25479029126213,30.94,40.47,48.28,54.2,57.33,5150,50.867640776699034,35.54,46.974999999999994,54.38,57.61,60.18,12.232427184466019,6.0,8.0,11.0,14.0,21.0 +1,2020.0,1,6.6135548926036725,3.7408615300142953,5.20746235137531,6.738993421026553,8.19460417082176,9.47118023958373,Total,8144.099203698618,66691.08753701567,45.83006855548575,32.15797404439278,39.10160160724462,46.34987763560427,53.077370491018534,58.85051827609748,10084,51.52147553280504,38.38323782231299,45.758100400979565,52.49343513495421,58.457079044134844,63.46943524623862,12.731139606848766,5.760445572589244,8.887756045809182,12.422862514541553,16.23253725993914,20.063649757519542 +1,2020.0,2,6.597821833914836,3.7243142197695094,5.219733407588199,6.710947327673868,8.159905302438416,9.419591428883331,Male,4074.7110498150046,32593.239859539284,47.082819474520456,33.61465769293,40.654655231300204,47.613577016304575,54.34524748024336,59.504460877530455,4940,51.999533090404725,39.348954803193585,46.46584433464587,52.90572421005392,58.58979925876683,63.74100888778429,12.07330702290265,5.247096392427416,8.255378633450018,11.747879026541714,15.560527724525501,19.2221175576465 +1,2020.0,3,6.62866401195104,3.7555183474700207,5.184500360914294,6.754586690026169,8.237761945366604,9.517381713117345,Female,4069.3881538836135,34097.8476774762,44.6269990492588,31.06527837907814,37.770936356271314,45.06789894041008,51.710708535415804,57.94444127196678,5144,51.06237671193754,37.2597016179,44.97196493352142,52.02197449733886,58.28673262460657,63.25968932751248,13.362883962349118,6.3815716786190455,9.49138146082011,13.037325088403001,16.884158806874346,20.752284715280204 +1,2021.0,1,6.551045326822757,3.7370575171076945,5.146432616511683,6.661141704711037,8.07105391283681,9.367707215848778,Total,8142.341724326387,66434.15065930951,45.517491946476575,32.001385190172556,38.66689415554784,45.62800616261879,52.639420346566524,58.769774995290156,10141,51.50014556229936,37.95381252047378,44.68896451196224,51.97301400258788,58.95074796704476,64.37442661527727,13.052326290418002,6.146663617192843,9.230692501111776,12.887096233050846,16.644904568016972,20.154805077987373 +1,2021.0,2,6.533671431940558,3.7442550100646295,5.109716436454889,6.6365613343267205,8.066447579655328,9.290895840053771,Male,4076.0246777116204,32478.880688176614,46.79741414915698,33.49025498563218,40.08846867350861,46.9071211795649,53.79917750384438,59.87242470445621,4971,51.91819486015358,38.668810886592716,45.36918724008264,52.419869892927146,59.12502473187696,64.37818412833347,12.516554709536514,5.605657177611228,8.743460608435715,12.341655677381342,16.160599005134294,19.56695274646869 +1,2021.0,3,6.567750477975447,3.7298715059013348,5.167336702369599,6.682241998036636,8.075213892868222,9.449217314146034,Female,4066.3170466147662,33955.26997113304,44.28683560807728,31.01434587431847,37.32871879196249,44.32978584964574,51.30761554111863,57.532470636125375,5170,51.09818752368557,37.17096000793924,44.117614933793675,51.57224673888308,58.71946972220316,64.34904918292412,13.567475328824553,6.7220897738998096,9.737382102614687,13.47139059141549,17.17640260510093,20.733839537503474 +1,2022.0,1,6.466753600079206,3.7116359178514307,5.032600006368673,6.561144216600892,7.996557722044543,9.288518605506537,Total,8119.762071219679,66361.82544401288,45.32125333130359,32.056880853145024,38.388647439610324,45.505559350960596,52.26663439902998,58.34852073190471,10262,50.80905304477684,36.87910744410754,44.00543379425421,51.158015543685956,58.06553393236512,64.21083196726823,12.950071626029683,5.901332799443898,9.085003940456655,12.885273643713532,16.69812370884248,19.976072539963884 +1,2022.0,2,6.462579799710827,3.725889337500369,5.018167890813484,6.544333944049834,7.9616586424561095,9.294150807957232,Male,4054.193620034069,32416.30027534949,46.46964284620754,33.182668954894545,39.78225069500215,46.70835022131587,53.354580443256864,59.2468358824234,5016,51.32421192610889,38.11274208376965,44.63496331981919,51.64483409105593,58.44791274501242,64.3770063203758,12.43488410304338,5.452391232932519,8.660333750067046,12.349521479312997,16.160748603171516,19.39101776027707 +1,2022.0,3,6.470744408818775,3.698532349298335,5.041958437375135,6.582662836151028,8.027705617155554,9.273152362447458,Female,4065.56845118561,33945.52516866326,44.22321257515448,31.063654307707075,37.31117336301573,44.40775355662339,50.96358638793197,57.34679394721924,5246,50.31648023715931,36.08172739133687,43.334995900401076,50.809124864939676,57.76540604363788,64.0834565394696,13.44267181956748,6.317004432788039,9.579013432704684,13.433880873183995,17.210704812534484,20.488947907038494 +2,2019.0,1,6.755340200059429,3.33,5.0,8.0,8.33,8.33,Total,8340.271508342477,68208.67000000326,47.12877587402199,32.08,41.3,49.11,54.79,57.92,10097,51.36335446172131,37.144,48.0,54.69,57.54,60.08,11.75408537189264,6.0,8.0,11.0,13.0,20.0 +2,2019.0,2,6.724623612512618,3.33,5.0,7.0,8.33,8.33,Male,4172.040611994369,33320.51000000076,48.037731584258324,33.358,42.79,50.27,55.56,58.21600000000002,4955,51.882038345105954,38.482,49.0,54.8,57.49,59.89,11.261553985872848,6.0,8.0,10.0,13.0,19.0 +2,2019.0,3,6.784939712174252,3.33,5.0,8.0,8.33,8.33,Female,4168.230896348108,34888.16000000122,46.25287631271879,30.94,40.46,48.28,54.2,57.33,5142,50.8635336444963,35.54,46.8975,54.465,57.61,60.18,12.228704784130692,6.0,8.0,11.0,14.0,21.0 +2,2020.0,1,6.649898366619695,3.8061648193325652,5.254168179471878,6.7840663746888445,8.225344652147854,9.512923974833987,Total,8141.119471324132,66937.87695839381,45.81617701687895,32.16849163007635,39.005949641215324,46.31728871496223,53.0774887552752,58.90025503279414,10066,51.618446608437154,38.524612908368226,45.79221431310007,52.569425459701876,58.530996891151446,63.6150521144817,12.984442478320803,5.957053954618807,9.159817768710198,12.655671696274819,16.477046345778728,20.3531294762337 +2,2020.0,2,6.654403254506229,3.8399881559104845,5.285200517207464,6.781246684087717,8.212586648017398,9.496731734396674,Male,4058.1441001356507,32839.48006098828,47.00743274410231,33.50342815318687,40.47584197759136,47.488851478772126,54.252562580141024,59.53435926841552,4935,51.859025442972104,39.20799724156667,46.21813961483735,52.83587690623675,58.43235127222917,63.612310917523,12.274545602841497,5.389134479982179,8.503614329632317,11.940893351152786,15.775884127979133,19.422301201074138 +2,2020.0,3,6.645565561762934,3.769876931349322,5.227743651972633,6.788685327528539,8.239668727451823,9.524643867679716,Female,4082.975371188482,34098.39689740564,44.67042628332852,31.147620953091455,37.79473037468961,45.05146366749269,51.728102609858254,58.01735599285098,5131,51.387057688454696,37.5939494562262,45.29570091501165,52.32383743509163,58.62296101255498,63.619500887571796,13.667221874245646,6.628917920999526,9.821335680010128,13.328775960913157,17.188030889714145,21.034090033287217 +2,2021.0,1,6.581860788612988,3.7845361647226206,5.164943066777251,6.689310073375769,8.114591298132694,9.413855310638107,Total,8134.375230566831,66641.3404847066,45.63288031928133,32.110810135644016,38.728429995313306,45.76371274819867,52.71096091943345,58.906778261713725,10125,51.51298509156969,37.941861650691244,44.74895881574689,52.09423641081538,58.907584064363974,64.47684278446538,13.239355660141612,6.206795711017258,9.373248185566037,13.077119624496568,16.855010933215503,20.377494138957275 +2,2021.0,2,6.638664489102274,3.8721207553830674,5.2312592361956085,6.751174164731447,8.198209466451601,9.42762568427134,Male,4051.5968827412294,32914.49853696898,46.81770898955625,33.393570974644376,40.01432574408417,46.96152201822847,53.866237936585996,59.97468464017027,4958,51.739368413780205,38.44804202025027,45.16308695597863,52.29490108445856,59.0073551263508,64.40789717341252,12.479716714831252,5.497386663911917,8.71845807740002,12.299833138321365,16.16301423983729,19.54193862742913 +2,2021.0,3,6.527354741191683,3.691226939490055,5.117330762109283,6.649982178225147,8.027332968258547,9.397180006296296,Female,4082.778347825602,33726.84194773747,44.495976787788564,31.089627166618417,37.52254466653446,44.64431863732558,51.65314487834755,57.757840244438725,5167,51.29575874910409,37.525820544381666,44.3924904295155,51.829498856331604,58.79391389620286,64.56756756120136,13.968267967253816,7.060817853556014,10.085832637142712,13.85291234538754,17.549570625099754,21.152705527450408 +2,2022.0,1,6.4812982776568315,3.7024221997558926,5.030710294510082,6.564965556089741,8.012393997183715,9.361961132020571,Total,8088.91482490903,66102.761133822,45.42827864318316,32.193649892119694,38.48741693414672,45.62576408156959,52.34867709869488,58.54669884686165,10199,50.93115829932625,37.1248274144288,44.02648574034228,51.33933417626778,58.2146120716324,64.34329708702212,13.05992362908522,5.891322908454027,9.18971992693785,13.026146210787516,16.828218337545557,20.1726413958251 +2,2022.0,2,6.532323378197319,3.7413843826703865,5.076189945243078,6.60773985575197,8.052501567416687,9.444537397351542,Male,4026.1590177309613,32609.358303961042,46.39422690530224,33.05884403849508,39.7574148324242,46.701545029935566,53.39890116300504,59.262074642822114,4992,51.26901243823052,38.13654593292096,44.549273412966315,51.64829015681717,58.29509794984891,64.34097980241319,12.368524487235973,5.368965602525099,8.62414894896972,12.305587830472755,16.079428382953907,19.325908809813022 +2,2022.0,3,6.4323800326216665,3.6429332939631363,4.986290665896133,6.512122619213386,7.9710896754653024,9.265804428149165,Female,4062.7558071780695,33493.402829861036,44.50221493577037,31.23621209713921,37.5900450565491,44.67839708084409,51.21820961917776,57.69566538175109,5207,50.60725435052461,36.305938111961176,43.54992095305396,51.10371551328898,58.03806680054555,64.35343338737796,13.722774506003109,6.427332478714938,9.763468454428022,13.730108069794912,17.534572339328577,20.928919002629122 \ No newline at end of file diff --git a/src/test/java/simpaths/model/PersonTest.java b/src/test/java/simpaths/model/PersonTest.java index 7d9fa8af9..64e2b4b68 100644 --- a/src/test/java/simpaths/model/PersonTest.java +++ b/src/test/java/simpaths/model/PersonTest.java @@ -194,7 +194,7 @@ public void under18DoesntEnterPartnership() { @DisplayName("OUTCOME B: Female over 18, student and partnered stays partnered") public void over18StudentPartneredStaysPartnered() { testPerson.setDemAge(20); - testPerson.setLes_c4(Les_c4.Student); + testPerson.setLabC4(Les_c4.Student); testPartner.setDemAge(20); @@ -214,7 +214,7 @@ public void over18StudentPartneredStaysPartnered() { @DisplayName("OUTCOME C: Aged 18-29, student and not partnered - estimate to be partnered") public void over18StudentToBePartnered() { testPerson.setDemAge(20); - testPerson.setLes_c4(Les_c4.Student); + testPerson.setLabC4(Les_c4.Student); testPerson.setEduLeftEduFlag(false); testPerson.setDemMaleFlag(Gender.Female); testPerson.setBenefitUnit(testBenefitUnit); @@ -240,7 +240,7 @@ public void over18StudentToBePartnered() { @DisplayName("OUTCOME D: Aged 18-29, student and not partnered - estimate not to be partnered") public void over18StudentNotToBePartnered() { testPerson.setDemAge(20); - testPerson.setLes_c4(Les_c4.Student); + testPerson.setLabC4(Les_c4.Student); testPerson.setEduLeftEduFlag(false); testPerson.setDemMaleFlag(Gender.Female); testPerson.setBenefitUnit(testBenefitUnit); @@ -550,7 +550,7 @@ private void setupEducationLevelRegressionMock(double draw) { @DisplayName("OUTCOME A: Lagged Student < Min Age (Always Stays)") void remainsBelowMinAge() { testPerson.setDemAge(MIN_AGE_TO_LEAVE_EDUCATION - 1); - testPerson.setLes_c4_lag1(Les_c4.Student); + testPerson.setLabC4L1(Les_c4.Student); assertTrue(testPerson.inSchool()); } @@ -561,15 +561,15 @@ void continuesCurrentSpellE1a() { final double INNOVATION_TO_STAY = 0.1; testPerson.setDemAge(25); - testPerson.setLes_c4_lag1(Les_c4.Student); - testPerson.setLes_c4(Les_c4.Student); + testPerson.setLabC4L1(Les_c4.Student); + testPerson.setLabC4(Les_c4.Student); parametersMock.when(Parameters::getRegEducationE1a).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_STAY); Mockito.when(mockInnovations.getDoubleDraw(24)).thenReturn(INNOVATION_TO_STAY); assertTrue(testPerson.inSchool()); - assertEquals(Les_c4.Student, testPerson.getLes_c4()); + assertEquals(Les_c4.Student, testPerson.getLabC4()); assertFalse(testPerson.isToLeaveSchool()); } @@ -580,7 +580,7 @@ void triggersE2FromE1aFailure() { final double INNOVATION_TO_LEAVE = 0.95; testPerson.setDemAge(25); - testPerson.setLes_c4_lag1(Les_c4.Student); + testPerson.setLabC4L1(Les_c4.Student); parametersMock.when(Parameters::getRegEducationE1a).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_STAY); @@ -594,7 +594,7 @@ void triggersE2FromE1aFailure() { @DisplayName("E2 Trigger: Lagged Student, at Max Age (Forced Exit)") void triggersE2FromMaxAge() { testPerson.setDemAge(MAX_AGE_TO_STAY_IN_CONTINUOUS_EDUCATION + 1); - testPerson.setLes_c4_lag1(Les_c4.Student); + testPerson.setLabC4L1(Les_c4.Student); assertFalse(testPerson.inSchool()); assertTrue(testPerson.isToLeaveSchool()); @@ -603,7 +603,7 @@ void triggersE2FromMaxAge() { @Test @DisplayName("OUTCOME C: Lagged Retired (Cannot Re-enter)") void cannotEnterIfLaggedRetired() { - testPerson.setLes_c4_lag1(Les_c4.Retired); + testPerson.setLabC4L1(Les_c4.Retired); assertFalse(testPerson.inSchool()); assertFalse(testPerson.isToLeaveSchool()); @@ -615,17 +615,17 @@ void becomesStudentE1bSuccess() { final double PROBABILITY_TO_BECOME_STUDENT = 0.8; final double INNOVATION_TO_BECOME_STUDENT = 0.1; - testPerson.setLes_c4_lag1(Les_c4.NotEmployed); - testPerson.setLes_c4(Les_c4.NotEmployed); + testPerson.setLabC4L1(Les_c4.NotEmployed); + testPerson.setLabC4(Les_c4.NotEmployed); parametersMock.when(Parameters::getRegEducationE1b).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_BECOME_STUDENT); Mockito.when(mockInnovations.getDoubleDraw(24)).thenReturn(INNOVATION_TO_BECOME_STUDENT); assertTrue(testPerson.inSchool()); - assertEquals(Les_c4.Student, testPerson.getLes_c4()); - assertEquals(Indicator.False, testPerson.getDed()); - assertEquals(Indicator.True, testPerson.getDer()); + assertEquals(Les_c4.Student, testPerson.getLabC4()); + assertEquals(Indicator.False, testPerson.getEduSpellFlag()); + assertEquals(Indicator.True, testPerson.getEduReturnFlag()); } @Test @@ -634,15 +634,15 @@ void remainsUnchangedE1bFailure() { final double PROBABILITY_TO_BECOME_STUDENT = 0.2; final double INNOVATION_REMAIN_UNCHANGED = 0.9; - testPerson.setLes_c4_lag1(Les_c4.EmployedOrSelfEmployed); - testPerson.setLes_c4(Les_c4.EmployedOrSelfEmployed); + testPerson.setLabC4L1(Les_c4.EmployedOrSelfEmployed); + testPerson.setLabC4(Les_c4.EmployedOrSelfEmployed); parametersMock.when(Parameters::getRegEducationE1b).thenReturn(mockBinomialRegression); Mockito.when(mockBinomialRegression.getProbability(Mockito.anyDouble())).thenReturn(PROBABILITY_TO_BECOME_STUDENT); Mockito.when(mockInnovations.getDoubleDraw(24)).thenReturn(INNOVATION_REMAIN_UNCHANGED); assertFalse(testPerson.inSchool()); - assertEquals(Les_c4.EmployedOrSelfEmployed, testPerson.getLes_c4()); + assertEquals(Les_c4.EmployedOrSelfEmployed, testPerson.getLabC4()); assertFalse(testPerson.isToLeaveSchool()); } @@ -651,53 +651,53 @@ void remainsUnchangedE1bFailure() { @Test @DisplayName("OUTCOME F (First Spell): Adopts New Level (Low -> High)") void firstSpellAdoptsNewLevel() { - testPerson.setDeh_c4(Education.Low); - testPerson.setDer(Indicator.False); + testPerson.setEduHighestC4(Education.Low); + testPerson.setEduReturnFlag(Indicator.False); setupEducationLevelRegressionMock(0.9); // -> High testPerson.setEducationLevel(); - assertEquals(Education.High, testPerson.getDeh_c4()); + assertEquals(Education.High, testPerson.getEduHighestC4()); } @Test @DisplayName("OUTCOME F (Return Spell Improvement): Adopts New, Higher Level") void returnSpellAdoptsHigherLevel() { - testPerson.setDeh_c4(Education.Low); - testPerson.setDer(Indicator.True); + testPerson.setEduHighestC4(Education.Low); + testPerson.setEduReturnFlag(Indicator.True); setupEducationLevelRegressionMock(0.5); // -> Medium testPerson.setEducationLevel(); - assertEquals(Education.Medium, testPerson.getDeh_c4()); + assertEquals(Education.Medium, testPerson.getEduHighestC4()); } @Test @DisplayName("OUTCOME G (Return Spell Downgrade): Retains Current Level") void returnSpellRetainsCurrentLevelOnDowngrade() { - testPerson.setDeh_c4(Education.Medium); - testPerson.setDer(Indicator.True); + testPerson.setEduHighestC4(Education.Medium); + testPerson.setEduReturnFlag(Indicator.True); setupEducationLevelRegressionMock(0.2); // -> Low testPerson.setEducationLevel(); - assertEquals(Education.Medium, testPerson.getDeh_c4()); + assertEquals(Education.Medium, testPerson.getEduHighestC4()); } @Test @DisplayName("OUTCOME G (Return Spell Same Level): Retains Current Level") void returnSpellRetainsCurrentLevelOnSameLevel() { - testPerson.setDeh_c4(Education.Medium); - testPerson.setDer(Indicator.True); + testPerson.setEduHighestC4(Education.Medium); + testPerson.setEduReturnFlag(Indicator.True); setupEducationLevelRegressionMock(0.5); // -> Medium testPerson.setEducationLevel(); - assertEquals(Education.Medium, testPerson.getDeh_c4()); + assertEquals(Education.Medium, testPerson.getEduHighestC4()); } // ----------------------- leavingSchool() ----------------------- @@ -707,36 +707,36 @@ void returnSpellRetainsCurrentLevelOnSameLevel() { void successfulExitExecution() { testPerson.setToLeaveSchool(true); testPerson.setDemAge(20); - testPerson.setDeh_c4(Education.Low); - testPerson.setDed(Indicator.True); - testPerson.setDer(Indicator.False); - testPerson.setLes_c4(Les_c4.Student); - testPerson.setLes_c4_lag1(Les_c4.Student); + testPerson.setEduHighestC4(Education.Low); + testPerson.setEduSpellFlag(Indicator.True); + testPerson.setEduReturnFlag(Indicator.False); + testPerson.setLabC4(Les_c4.Student); + testPerson.setLabC4L1(Les_c4.Student); setupEducationLevelRegressionMock(0.5); // -> Medium testPerson.leavingSchool(); assertFalse(testPerson.isToLeaveSchool()); - assertEquals(Indicator.False, testPerson.getDed()); - assertEquals(Indicator.False, testPerson.getDer()); + assertEquals(Indicator.False, testPerson.getEduSpellFlag()); + assertEquals(Indicator.False, testPerson.getEduReturnFlag()); assertTrue(testPerson.isLeftEducation()); - assertEquals(Les_c4.NotEmployed, testPerson.getLes_c4()); - assertEquals(Education.Medium, testPerson.getDeh_c4()); - assertEquals(Indicator.True, testPerson.getSedex()); + assertEquals(Les_c4.NotEmployed, testPerson.getLabC4()); + assertEquals(Education.Medium, testPerson.getEduHighestC4()); + assertEquals(Indicator.True, testPerson.getEduExitSampleFlag()); } @Test @DisplayName("When toLeaveSchool=False: Skips execution and leaves state intact") void noExecution() { testPerson.setToLeaveSchool(false); - testPerson.setLes_c4(Les_c4.EmployedOrSelfEmployed); - testPerson.setDeh_c4(Education.High); + testPerson.setLabC4(Les_c4.EmployedOrSelfEmployed); + testPerson.setEduHighestC4(Education.High); testPerson.leavingSchool(); - assertEquals(Les_c4.EmployedOrSelfEmployed, testPerson.getLes_c4()); - assertEquals(Education.High, testPerson.getDeh_c4()); + assertEquals(Les_c4.EmployedOrSelfEmployed, testPerson.getLabC4()); + assertEquals(Education.High, testPerson.getEduHighestC4()); assertFalse(testPerson.isLeftEducation()); Mockito.verify(mockInnovations, Mockito.never()).getDoubleDraw(30); } diff --git a/validation/02_simulated_output_validation/do_files/00_master.do b/validation/02_simulated_output_validation/do_files/00_master.do index 6f9e36d05..ff43a1fa1 100644 --- a/validation/02_simulated_output_validation/do_files/00_master.do +++ b/validation/02_simulated_output_validation/do_files/00_master.do @@ -1,22 +1,51 @@ /******************************************************************************* * PROJECT: SimPaths UK -* SECTION: Validation +* SECTION: Validation - Internal * OBJECT: Master file -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK -* DESCRIPTION: This master file sets the globals, directories and -* parameters, and runs the do files to construct the -* validation datasets and plots the comparison graphs. +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Entry point for the SimPaths UK validation pipeline. Sets +* globals and parameters, then loops over each alignment +* configuration listed in `alignments' to: (1) prepare +* simulated output data, (2) build UKHLS validation +* targets from initial-populations (UID) data, and +* (3) produce comparison graphs for the 18 validation +* modules (04_01-04_18). ******************************************************************************** -* NOTES: UKHLS initial populations data is used to create the -* validaton targets. +* REQUIRES: - UK UID data "UKHLS_pooled_ipop.dta". +* - SimPaths simulated output CSVs, one folder per run, at: +* simulated_outputs/[alignment]/[folder]_[run_n]/csv/xx.csv +******************************************************************************** +* SETUP: 1. In the DEFINE DIRECTORIES block below, point `dir_ind' +* to the main folder that contains "do_files" (this +* file's own folder). Its "data" and "graphs" output +* subfolders are created automatically if they don't +* already exist (see CREATE TOP-LEVEL OUTPUT FOLDERS). +* Only need to update the file paths where you see +* ">>> EDIT <<<". +* 2. In the DEFINE PARAMETERS block, set `folder' to the +* condensed run-date stamp of the simulation you want to +* validate (e.g. 20260327) -- it must match an existing +* `[folder]_[run_n]' subfolder contained in the folder +* containing the simulated output csv files. Set +* `max_n_runs' to how many run folders exist under that +* stamp (runs are numbered from 0). +* 3. In the DYNAMIC SET UP block, set local `alignments' to +* list of folder names of outputs from different model +* set-ups that you want to validate (e.g. "0_default"). +* Each set-up gets its own graphs/[alignment]/ output tree, +* created automatically. +* 4. Run the whole file: do "do_files/00_master.do" +******************************************************************************** +* NOTES: +* - Folders only needs to be created once. "mkdir" does not overwrite folders. +* - Income amounts throughout are in annual terms. *******************************************************************************/ clear all set logtype smcl set more off -set mem 200m set type double @@ -30,75 +59,80 @@ set type double global country = "UK" global country_lower = "uk" -display in y "Country selected: ${country}" - -global silc_UDB = "UDB_c" /******************************************************************************* * DEFINE DIRECTORIES *******************************************************************************/ -/* -"/Users/ashleyburdett/Library/CloudStorage/Box-Box/CeMPA shared area/_SimPaths/_SimPathsUK" -"C:\Users\aburde\Box\CeMPA shared area\_SimPaths\_SimPathsUK" -*/ - * Individual directory -global dir_ind "/Users/ashleyburdett/Library/CloudStorage/Box-Box/CeMPA shared area/_SimPaths/_SimPathsUK" +* >>> EDIT <<< +global dir_ind ".../_SimPathsUK" * Main folder +* >>> EDIT <<< global path "$dir_ind/validation/02_simulated_output_validation" * Do files folder +* Folder contianing this do-file global dir_do_files "$path/do_files" -* Output files folder +* Output data folder global dir_work "$path/data" -* UKHLS dataset folder -global dir_UKHLS_data "$dir_ind/input 2026.03.04" - -* Data folder global dir_data "$path/data" +* Input data: UID dataset folder +* >>> EDIT <<< +global dir_UKHLS_data "$dir_ind/input_processing/initial_populations/data" + /******************************************************************************* -* DEFINE SAMPLE PARAMETERS +* DEFINE PARAMETERS *******************************************************************************/ global use_assert "0" -* Trim outliers +* Trim outliers (top and bottom percentiles) global trim_outliers true * Observations up to and including this simulated year to be kept in the sample -global min_sim_year 2011 +global min_sim_year 2013 global max_sim_year 2023 -* Define age to become responsible as defined in the simulation +* Define age to become fully responsible as defined in the simulation i.e. +* can form a partnership, work, have children etc. global age_become_responsible 18 * Set labour supply categories +/* +Note: This works because the categories are symmetric across the genders. +*/ global ls_cat "ZERO TEN TWENTY THIRTY THIRTY_EIGHT FORTY_FIVE FIFTY_FIVE" -// works if the genders are symmetric -// still need to alter code in specific do files to print graphs global ls_cat_labour /// "TEN TWENTY THIRTY THIRTY_EIGHT FORTY_FIVE FIFTY_FIVE" -* Number of runs (N-1 because numbering starts at 0) +* Number of runs (N-1 since numbering starts at 0) global max_n_runs 4 -* Run commons folder name -global folder 20260306 +* Run's common folder name in which data across runs is deposited +global folder 20260816 /******************************************************************************* -* RUN DO FILES +* CREATE TOP-LEVEL OUTPUT FOLDERS *******************************************************************************/ -* Prepare observed data +cap mkdir "$path/data" +cap mkdir "$path/graphs" + + +/******************************************************************************* +* RUN DO FILES +*******************************************************************************/ + +* Prepare UKHLS data do "${dir_do_files}/03_create_UKHLS_validation_targets.do" @@ -106,16 +140,15 @@ do "${dir_do_files}/03_create_UKHLS_validation_targets.do" * 2 - DYNAMIC SET UP *******************************************************************************/ -* List of SimPath Set ups to loop through /* -Permits looping over output from multiple different model set-ups e.g. with and -without ferility alignment, with and without employemnet alignment +This section defines which model outputs to validate. It permits multiple model +set-ups to be validated by looping over the name of the folders containing +the output csv file(s). The workflow automatically generates folders with the +same names as the output data folders containing the relevant validation graphs. */ -local alignments "0_default" -/* - 0_default 1_all_alignments_off 2_pop_on 3_pop_fertility_on 4_pop_fertility_inschool_on 5_pop_fertility_inschool_cohabit_on 6_pop_fertility_inschool_cohabit_empl_on -*/ +* Folder name(s) to validate +local alignments "care_provision" foreach align in `alignments' { @@ -125,7 +158,8 @@ foreach align in `alignments' { *******************************************************************************/ * Simulated data CSV files folder - global dir_simulated_data "${dir_ind}/_new_release/output/`align'" + * >>> EDIT <<< + global dir_simulated_data "${dir_ind}/simulated_outputs/`align'" * Graphs folder global dir_output_files "$path/graphs/`align'" @@ -133,35 +167,31 @@ foreach align in `alignments' { /******************************************************************************* * CREATE OUTPUT FOLDERS -*******************************************************************************/ - - /* - mkdir "$path/graphs/`align'" - - mkdir "$path/graphs/`align'/children" - mkdir "$path/graphs/`align'/correlations" - mkdir "$path/graphs/`align'/disability" - mkdir "$path/graphs/`align'/economic_activity" - mkdir "$path/graphs/`align'/education" - mkdir "$path/graphs/`align'/health" - mkdir "$path/graphs/`align'/hours_worked" - mkdir "$path/graphs/`align'/income" - mkdir "$path/graphs/`align'/income/capital_income" - mkdir "$path/graphs/`align'/income/pension_income" - mkdir "$path/graphs/`align'/income/disposable_income" - mkdir "$path/graphs/`align'/income/equivalised_disposable_income" - mkdir "$path/graphs/`align'/income/gross_income" - mkdir "$path/graphs/`align'/income/gross_labour_income" - mkdir "$path/graphs/`align'/income/income_shares" - mkdir "$path/graphs/`align'/inequality" - mkdir "$path/graphs/`align'/partnership" - mkdir "$path/graphs/`align'/poverty" - mkdir "$path/graphs/`align'/wages" - mkdir "$path/graphs/`align'/social_care" - -} - */ - +*******************************************************************************/ + + cap mkdir "$path/graphs/`align'" + + cap mkdir "$path/graphs/`align'/children" + cap mkdir "$path/graphs/`align'/correlations" + cap mkdir "$path/graphs/`align'/disability" + cap mkdir "$path/graphs/`align'/economic_activity" + cap mkdir "$path/graphs/`align'/education" + cap mkdir "$path/graphs/`align'/health" + cap mkdir "$path/graphs/`align'/hours_worked" + cap mkdir "$path/graphs/`align'/income" + cap mkdir "$path/graphs/`align'/income/capital_income" + cap mkdir "$path/graphs/`align'/income/pension_income" + cap mkdir "$path/graphs/`align'/income/disposable_income" + cap mkdir "$path/graphs/`align'/income/equivalised_disposable_income" + cap mkdir "$path/graphs/`align'/income/gross_income" + cap mkdir "$path/graphs/`align'/income/gross_labour_income" + cap mkdir "$path/graphs/`align'/income/income_shares" + cap mkdir "$path/graphs/`align'/inequality" + cap mkdir "$path/graphs/`align'/partnership" + cap mkdir "$path/graphs/`align'/poverty" + cap mkdir "$path/graphs/`align'/wages" + cap mkdir "$path/graphs/`align'/social_care" + /******************************************************************************* * RUN DO FILES @@ -169,6 +199,7 @@ foreach align in `alignments' { * Prepare simulated data do "${dir_do_files}/01_prepare_simulated_data.do" + do "${dir_do_files}/02_create_simulated_variables.do" @@ -193,8 +224,4 @@ foreach align in `alignments' { do "${dir_do_files}/04_17_plot_disability.do" do "${dir_do_files}/04_18_plot_social_care.do" - - * Calculate other statistics - //do "${dir_do_files}/07_01_correlations.do" - } diff --git a/validation/02_simulated_output_validation/do_files/01_prepare_simulated_data.do b/validation/02_simulated_output_validation/do_files/01_prepare_simulated_data.do index 2baa6b268..b77abb56a 100644 --- a/validation/02_simulated_output_validation/do_files/01_prepare_simulated_data.do +++ b/validation/02_simulated_output_validation/do_files/01_prepare_simulated_data.do @@ -5,14 +5,18 @@ * AUTHORS: Ashley Burdett * LAST UPDATE: Jan 2026 * COUNTRY: UK -* DESCRIPTION: This file loads the simulated output from SimPaths and -* preserves the relevant variables for validation. +* DESCRIPTION: Loads SimPaths simulated output CSVs (BenefitUnit.csv, +* Person.csv) per run, keeps the variables needed for +* validation, appends runs together, and merges Person +* into BenefitUnit on run/time/idBu. Saves the combined +* panel to loaded_simulation_data.dta, consumed next by +* 02_create_simulated_variables.do. ******************************************************************************** -* NOTES: Works in Stata 18 onwards - able to preserve case in var -* names. +* NOTES: *******************************************************************************/ -// currently hh information not used +* Currently hh information not used + /* * Import required variables from household file @@ -26,7 +30,7 @@ forvalues n = 1/$max_n_runs { rename id_Household idHh - keep if time <= ${max_year} + keep if time <= ${max_sim_year} save "${dir_data}/household_sim`n'", replace diff --git a/validation/02_simulated_output_validation/do_files/02_create_simulated_variables.do b/validation/02_simulated_output_validation/do_files/02_create_simulated_variables.do index 4d02d2997..4886e3dbb 100644 --- a/validation/02_simulated_output_validation/do_files/02_create_simulated_variables.do +++ b/validation/02_simulated_output_validation/do_files/02_create_simulated_variables.do @@ -5,14 +5,15 @@ * AUTHORS: Ashley Burdett * LAST UPDATE: Feb 2026 * COUNTRY: UK -* DESCRIPTION: This file creates variables from the simulated data -* that are used to generate in the comparison plots. +* DESCRIPTION: Constructs validation variables from the simulated panel: +* demographics (gender, age bands, partnership, children), +* education, health, labour market (activity status, hours, +* wages), income (IHS-transformed amounts converted to +* annual levels), and social care. Saves the result to +* simulation_sample.dta. ******************************************************************************** * NOTES: Income amounts are converted from IHS to levels and from * monthly to annual. -* Two datasets are saved, one containing all observations -* (..._full) and one containing only the adult population -* (18-65 inc). *******************************************************************************/ * Generate/Tidy required variables diff --git a/validation/02_simulated_output_validation/do_files/03_create_UKHLS_validation_targets.do b/validation/02_simulated_output_validation/do_files/03_create_UKHLS_validation_targets.do index 6e282eb66..9f91954e9 100644 --- a/validation/02_simulated_output_validation/do_files/03_create_UKHLS_validation_targets.do +++ b/validation/02_simulated_output_validation/do_files/03_create_UKHLS_validation_targets.do @@ -5,12 +5,21 @@ * AUTHORS: Ashley Burdett * LAST UPDATE: Feb 2026 * COUNTRY: UK -* DESCRIPTION: This file creates the validation target variables -* using UKHLS initial populations data. +* DESCRIPTION: Constructs UKHLS validation targets, mirroring the +* variable set built by 02_create_simulated_variables.do +* so simulated and survey statistics are directly +* comparable: demographics, education, health, labour +* market, income (IHS-transformed amounts converted to +* annual levels), and social care. Also computes +* equivalised disposable income via the Modified OECD +* equivalence scale. Saves the result to +* ukhls_validation_sample.dta. ******************************************************************************** -* NOTES: The income amounts in annual terms. -* Currently construct gross income from components. -* +* NOTES: Income amounts are in annual terms. Negative values in +* raw UKHLS variables denote missing/non-response codes +* and are recoded to missing throughout. Gross income is +* currently constructed by summing components rather than +* taken from a single UKHLS variable. *******************************************************************************/ * Generate/Tidy required variables @@ -62,7 +71,7 @@ replace ageGroup = 6 if demAge >= 40 & demAge < 60 replace ageGroup = 7 if demAge >= 60 & demAge < 80 replace ageGroup = 8 if demAge >= 80 & demAge <= 100 -label def ageGrou /// +label def ageGroup /// 0 "ageGroup_0_14" /// 1 "ageGroup_15_19" /// 2 "ageGroup_20_24" /// @@ -198,7 +207,7 @@ rename lhw labHrsWorkWeek gen valid_labHrsWorkWeek = labHrsWorkWeek -* Hours workd weekly (categories) +* Hours worked weekly (categories) /* "This version uses 7 labour supply alternatives:") ("0 hours ==> non-employment alternative.") @@ -462,7 +471,7 @@ gen valid_careProvideFlag = (valid_careHrsProvidedWeek > 0 & /// valid_careHrsProvidedWeek != . ) replace valid_careProvideFlag = . if valid_careHrsProvidedWeek == . -* Restrict sample to relevant valdiation years +* Restrict sample to relevant validation years drop if year < ${min_sim_year} drop if year > ${max_sim_year} diff --git a/validation/02_simulated_output_validation/do_files/04_01_plot_activity_status.do b/validation/02_simulated_output_validation/do_files/04_01_plot_activity_status.do index a4116545e..fd5e78642 100644 --- a/validation/02_simulated_output_validation/do_files/04_01_plot_activity_status.do +++ b/validation/02_simulated_output_validation/do_files/04_01_plot_activity_status.do @@ -3,12 +3,27 @@ * SECTION: Validation * OBJECT: Economic Activity Status plots * AUTHORS: Ashley Burdett -* LAST UPDATE: 9/25 -* COUNTRY: UK -* DESCRIPTION: This do file plots validation graphs for economic activity -* status (4 cat). -******************************************************************************** -* NOTES: +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* economic activity status (employed/student/inactive/ +* retired). Covers ~9 subgroup breakdowns (age bands, +* gender, partnership status) crossed with several +* measures (activity levels, employed share, non-employed +* shares, student share), plus a joint/couple-level +* analysis of partners' combined activity status +* (section 1.5). Section numbers are hierarchical +* (1.1, 1.1.1, 1.1.1.1 = measure > age group > gender) +* to make it easy to jump to a specific subgroup. +* This is the reference module for the 04_NN plot files: +* the other 17 follow the same pattern and keep a +* shorter header pointing back here. +******************************************************************************** +* NOTES: Section 0 defines two reusable plotting programs +* (make_activity_plot, make_activity_ne_plot) called +* throughout. Each subsection follows the same recipe: +* collapse UKHLS + simulated data to means by year (and +* subgroup), merge the two, then plot. *******************************************************************************/ clear all @@ -115,7 +130,6 @@ collapse (mean) sim_employed sim_student sim_inactive sim_retired /// sim_retired_sd = sim_retired /// , by(year) -* Compute 95% confidence interval foreach varname in sim_employed sim_student sim_inactive sim_retired { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -129,7 +143,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_plot, /// subtitle("Ages 16-30") /// saving("validation_${country}_activity_status_ts_16_30_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -166,7 +180,6 @@ collapse (mean) sim_employed sim_student sim_inactive sim_retired /// sim_retired_sd = sim_retired /// , by(year demMaleFlag) -* Compute 95% confidence interval foreach varname in sim_employed sim_student sim_inactive sim_retired { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -186,7 +199,7 @@ keep if demMaleFlag == 1 make_activity_plot, /// subtitle("Ages 16-30, males") /// saving("validation_${country}_activity_status_ts_16_30_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -198,7 +211,7 @@ keep if demMaleFlag == 0 make_activity_plot, /// subtitle("Ages 16-30, females") /// saving("validation_${country}_activity_status_ts_16_30_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -248,7 +261,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_plot, /// subtitle("Ages 16-65") /// saving("validation_${country}_activity_status_ts_16_65_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -305,7 +318,7 @@ keep if demMaleFlag == 1 make_activity_plot, /// subtitle("Ages 16-65, males") /// saving("validation_${country}_activity_status_ts_16_65_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -316,7 +329,7 @@ keep if demMaleFlag == 0 make_activity_plot, /// subtitle("Ages 16-65, females") /// saving("validation_${country}_activity_status_ts_16_65_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -376,7 +389,7 @@ keep if demPartnerStatus == 1 make_activity_plot, /// subtitle("Ages 18-65, partnered") /// saving("validation_${country}_activity_status_ts_18_65_both_partnered") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -386,7 +399,7 @@ keep if demPartnerStatus == 2 make_activity_plot, /// subtitle("Ages 18-65, single") /// saving("validation_${country}_activity_status_ts_18_65_both_single") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -450,7 +463,7 @@ foreach g in 0 1 { make_activity_plot, /// subtitle("Ages 18-65, `pname' `gname's") /// saving("validation_${country}_activity_status_ts_18_65_`gname'_`pname'") /// - note(`""Notes: ..." "..." "') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore } } @@ -508,7 +521,7 @@ keep if demMaleFlag == 0 make_activity_plot, /// subtitle("Ages 16-60, females") /// saving("validation_${country}_activity_status_ts_16_60_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -553,7 +566,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_plot, /// subtitle("All ages") /// saving("validation_${country}_activity_status_ts_all_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -604,7 +617,7 @@ keep if demMaleFlag == 1 make_activity_plot, /// subtitle("All ages, males") /// saving("validation_${country}_activity_status_ts_all_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -614,7 +627,7 @@ keep if demMaleFlag == 0 make_activity_plot, /// subtitle("All ages, females") /// saving("validation_${country}_activity_status_ts_all_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -664,7 +677,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_plot, /// subtitle("Ages 18+") /// saving("validation_${country}_activity_status_ts_18plus_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -718,7 +731,7 @@ keep if demMaleFlag == 1 make_activity_plot, /// subtitle("Ages 18+, males") /// saving("validation_${country}_activity_status_ts_18plus_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -728,7 +741,7 @@ keep if demMaleFlag == 0 make_activity_plot, /// subtitle("Ages 18+, females") /// saving("validation_${country}_activity_status_ts_18plus_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -780,7 +793,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_plot, /// subtitle("Ages 16-75") /// saving("validation_${country}_activity_status_ts_16_75_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -836,7 +849,7 @@ keep if demMaleFlag == 1 make_activity_plot, /// subtitle("Ages 16-75, males") /// saving("validation_${country}_activity_status_ts_16_75_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -847,7 +860,7 @@ keep if demMaleFlag == 0 make_activity_plot, /// subtitle("Ages 16-75, females") /// saving("validation_${country}_activity_status_ts_16_75_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -976,7 +989,7 @@ foreach vble in "employed_f" "employed_m" { legendfrom(`vble'_1) /// ycomm /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", size(vsmall)) * 5. Export graph export "$dir_output_files/economic_activity/validation_${country}_employed_ts_age_groups_`gsuffix'.jpg", /// @@ -1038,7 +1051,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_ne_plot, /// subtitle("Ages 16-65") /// saving("validation_${country}_activity_status_ts_not_employed_16_65_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -1083,7 +1096,7 @@ foreach varname in sim_student sim_inactive sim_retired { merge 1:1 year demMaleFlag using "$dir_data/temp_valid_stats.dta", keep(3) nogen -* PLot figures +* Plot figures * Males preserve @@ -1093,7 +1106,7 @@ keep if demMaleFlag == 1 make_activity_ne_plot, /// subtitle("Ages 16-65, males") /// saving("validation_${country}_activity_status_ts_not_employed_16_65_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -1104,7 +1117,7 @@ keep if demMaleFlag == 0 make_activity_ne_plot, /// subtitle("Ages 16-65, females") /// saving("validation_${country}_activity_status_ts_not_employed_16_65_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -1144,7 +1157,6 @@ collapse (mean) sim_student sim_inactive sim_retired /// sim_retired_sd = sim_retired /// , by(year demPartnerStatus) -* Approx 95% confidence interval foreach varname in sim_student sim_inactive sim_retired { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1166,7 +1178,7 @@ keep if demPartnerStatus == 1 make_activity_ne_plot, /// subtitle("Ages 18-65, partnered") /// saving("validation_${country}_activity_status_ts_not_employed_18_65_partnered") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -1176,7 +1188,7 @@ keep if demPartnerStatus == 2 make_activity_ne_plot, /// subtitle("Ages 18-65, singles") /// saving("validation_${country}_activity_status_ts_not_employed_18_65_single") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -1217,7 +1229,6 @@ collapse (mean) sim_student sim_inactive sim_retired /// sim_retired_sd = sim_retired /// , by(year demPartnerStatus demMaleFlag) -* Approx 95% confidence interval foreach varname in sim_student sim_inactive sim_retired { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1247,7 +1258,7 @@ foreach g in 1 0 { make_activity_ne_plot, /// subtitle("Ages 18-65, `pname' `gtitle'") /// saving("validation_${country}_activity_status_ts_not_employed_18_65_`gname'_`pname'") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore } @@ -1309,7 +1320,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_ne_plot, /// subtitle("Ages 16-60, females") /// saving("validation_${country}_activity_status_ts_not_employed_16_60_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -1355,7 +1366,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_ne_plot, /// subtitle("All ages") /// saving("validation_${country}_activity_status_ts_not_employed_all_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -1408,7 +1419,7 @@ keep if demMaleFlag == 1 make_activity_ne_plot, /// subtitle("All ages, males") /// saving("validation_${country}_activity_status_ts_not_employed_all_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -1419,7 +1430,7 @@ keep if demMaleFlag == 0 make_activity_ne_plot, /// subtitle("All ages, females") /// saving("validation_${country}_activity_status_ts_not_employed_all_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -1469,7 +1480,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_activity_ne_plot, /// subtitle("Ages 18+") /// saving("validation_${country}_activity_status_ts_not_employed_18plus_both") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -1524,7 +1535,7 @@ keep if demMaleFlag == 1 make_activity_ne_plot, /// subtitle("Ages 18+, males") /// saving("validation_${country}_activity_status_ts_not_employed_18plus_male") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -1534,7 +1545,7 @@ keep if demMaleFlag == 0 make_activity_ne_plot, /// subtitle("Ages 18+, females") /// saving("validation_${country}_activity_status_ts_not_employed_18plus_female") /// - note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Demonimator is the full population.""') + note(`""Notes: Non-employed includes the unemployed and inactive (homemakers, incapacity, carers, discouraged workers etc.)" "minus students and retired. Denominator is the full population. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -1640,8 +1651,8 @@ grc1leg student_1 student_2 student_3 student_4 student_5 student_6 , /// title("Share of Students by Age Group") /// legendfrom(student_1) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) - + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", size(vsmall)) + graph export /// "$dir_output_files/economic_activity/validation_${country}_students_ts_age_groups_both.jpg", /// replace width(2400) height(1350) quality(100) @@ -1741,7 +1752,6 @@ collapse (mean) sim_ptnr_inactive /// (sd) sim_ptnr_inactive_sd = sim_ptnr_inactive /// , by(year) -* Compute 95% confidence interval foreach varname in sim_ptnr_inactive { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1768,7 +1778,7 @@ twoway /// xlabel(, labsize(small)) /// ylabel(, labsize(small)) /// legend(size(vsmall)) /// - note("Notes: Ages 18-65 included in sample. Non-employed includes the unemployed and inactive (homemakers, incapacity, carers," "discouraged workers etc.) minus students and retired. ", /// + note("Notes: Ages 18-65 included in sample. Non-employed includes the unemployed and inactive (homemakers, incapacity, carers," "discouraged workers etc.) minus students and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -1870,7 +1880,6 @@ collapse (mean) sim_partner_nlf /// (sd) sim_partner_nlf_sd = sim_partner_nlf /// , by(year) -* Compute 95% confidence interval foreach varname in sim_partner_nlf { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1897,7 +1906,7 @@ twoway /// xlabel(, labsize(small)) /// ylabel(, labsize(small)) /// legend(size(vsmall)) /// - note("Notes: Ages 18-65 included in sample. Not LF includes student and retired here.", /// + note("Notes: Ages 18-65 included in sample. Not LF includes student and retired. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -1991,8 +2000,7 @@ collapse (mean) sim_ptnr_employed, by(run year) collapse (mean) sim_ptnr_employed /// (sd) sim_ptnr_employed_sd = sim_ptnr_employed /// , by(year) - -* Compute 95% confidence interval + foreach varname in sim_ptnr_employed { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -2019,11 +2027,11 @@ twoway /// xlabel(, labsize(small)) /// ylabel(, labsize(small)) /// legend(size(vsmall)) /// - note("Notes: Ages 18-65. ", /// + note("Notes: Ages 18-65. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// - "$dir_output_files/economic_activity/validation_${country}_activity_status_ts_partnerhip_shares_emp_emp_18_65.jpg", /// +"$dir_output_files/economic_activity/validation_${country}_activity_status_ts_partnerhip_shares_emp_emp_18_65.jpg", /// replace width(2400) height(1350) quality(100) @@ -2117,7 +2125,6 @@ collapse (mean) sim_ptnr_inactive /// (sd) sim_ptnr_inactive_sd = sim_ptnr_inactive /// , by(year) -* Compute 95% confidence interval foreach varname in sim_ptnr_inactive { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -2144,7 +2151,7 @@ twoway /// xlabel(, labsize(small)) /// ylabel(, labsize(small)) /// legend(size(vsmall)) /// - note("Notes: Ages 18-65.", /// + note("Notes: Ages 18-65. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) @@ -2250,7 +2257,6 @@ collapse (mean) sim_ptnr_out /// (sd) sim_ptnr_out_sd = sim_ptnr_out /// , by(year) -* Compute 95% confidence interval foreach varname in sim_ptnr_out { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -2275,7 +2281,7 @@ twoway /// xlabel(, labsize(small)) /// ylabel(, labsize(small)) /// legend(size(vsmall)) /// - note("Notes: Ages 18-65. ", /// + note("Notes: Ages 18-65. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// diff --git a/validation/02_simulated_output_validation/do_files/04_02_plot_education_level.do b/validation/02_simulated_output_validation/do_files/04_02_plot_education_level.do index b69517772..ddf3aad94 100644 --- a/validation/02_simulated_output_validation/do_files/04_02_plot_education_level.do +++ b/validation/02_simulated_output_validation/do_files/04_02_plot_education_level.do @@ -1,14 +1,18 @@ -******************************************************************************** +/******************************************************************************* +* PROJECT: SimPaths UK * SECTION: Validation -* OBJECT: Education -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK -******************************************************************************** -* NOTES: This do file plots simulated and UKHLS education. -* Unable to look at transitions because use X-sectional -* SILC data. +* OBJECT: Education level plots +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* educational attainment (high/medium/low/in-education), +* across ~9 age-band and gender subgroups, plus attainment +* at the time of leaving education. Same prepare/collapse/ +* merge/plot pattern as 04_01 (see its header for details). ******************************************************************************** +* NOTES: +*******************************************************************************/ ******************************************************************************** * 0 : Programmes @@ -92,7 +96,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// sim_edu_na_sd = sim_edu_na /// , by(year) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -107,7 +110,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_edu_plot, /// subtitle("Ages 16-65") /// saving("validation_${country}_education_ts_16_65_both") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -146,7 +149,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// (sd) sim_edu_na_sd = sim_edu_na /// , by(year demMaleFlag ) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -166,7 +168,7 @@ keep if demMaleFlag == 0 make_edu_plot, /// subtitle("Ages 16-65, females") /// saving("validation_${country}_education_ts_16_65_female") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -179,7 +181,7 @@ keep if demMaleFlag == 1 make_edu_plot, /// subtitle("Ages 16-65, males") /// saving("validation_${country}_education_ts_16_65_male") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -221,7 +223,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// sim_edu_na_sd = sim_edu_na /// , by(year) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -235,7 +236,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_edu_plot, /// subtitle("Ages 16-30") /// saving("validation_${country}_education_ts_16_30_both") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -276,7 +277,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// (sd) sim_edu_na_sd = sim_edu_na /// , by(year demMaleFlag) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -297,7 +297,7 @@ keep if demMaleFlag == 0 make_edu_plot, /// subtitle("Ages 16-30, females") /// saving("validation_${country}_education_ts_16_30_female") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -310,7 +310,7 @@ keep if demMaleFlag == 1 make_edu_plot, /// subtitle("Ages 16-30, males") /// saving("validation_${country}_education_ts_16_30_male") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -352,7 +352,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// sim_edu_na_sd = sim_edu_na /// , by(year) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -366,7 +365,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_edu_plot, /// subtitle("Ages 31-40") /// saving("validation_${country}_education_ts_31_40_both") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -407,7 +406,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// (sd) sim_edu_na_sd = sim_edu_na /// , by(year demMaleFlag) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -428,7 +426,7 @@ keep if demMaleFlag == 0 make_edu_plot, /// subtitle("Ages 31-40, females") /// saving("validation_${country}_education_ts_31_40_female") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -441,7 +439,7 @@ keep if demMaleFlag == 1 make_edu_plot, /// subtitle("Ages 31-40, males") /// saving("validation_${country}_education_ts_31_40_male") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -483,7 +481,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// sim_edu_na_sd = sim_edu_na /// , by(year) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -497,7 +494,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_edu_plot, /// subtitle("Ages 41-65") /// saving("validation_${country}_education_ts_41_65_both") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -538,7 +535,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// (sd) sim_edu_na_sd = sim_edu_na /// , by(year demMaleFlag) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -559,7 +555,7 @@ keep if demMaleFlag == 0 make_edu_plot, /// subtitle("Ages 41-65, females") /// saving("validation_${country}_education_ts_41_65_female") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -572,7 +568,7 @@ keep if demMaleFlag == 1 make_edu_plot, /// subtitle("Ages 41-65, males") /// saving("validation_${country}_education_ts_41_65_male") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') restore @@ -614,7 +610,6 @@ collapse (mean) sim_edu_high sim_edu_med sim_edu_low sim_edu_na /// sim_edu_na_sd = sim_edu_na /// , by(year) -* Approx 95% confidence interval foreach varname in sim_edu_high sim_edu_med sim_edu_low sim_edu_na { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -628,7 +623,7 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen make_edu_plot, /// subtitle("Ages 66-70") /// saving("validation_${country}_education_ts_66_70_both") /// - note(`""Notes:""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -710,7 +705,7 @@ twoway /// xlabel(, labsize(small)) /// ylabel(, labsize(small)) /// legend(size(small)) /// - note("Notes: ", /// + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// diff --git a/validation/02_simulated_output_validation/do_files/04_03_plot_gross_income.do b/validation/02_simulated_output_validation/do_files/04_03_plot_gross_income.do index 1b1f051ff..64f7022ef 100644 --- a/validation/02_simulated_output_validation/do_files/04_03_plot_gross_income.do +++ b/validation/02_simulated_output_validation/do_files/04_03_plot_gross_income.do @@ -2,11 +2,20 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Gross income -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS gross +* income (sum of capital, private pension, and employment +* income; 2015 prices; top/bottom percentiles trimmed). +* Section 1: time-series means (benefit-unit and individual +* level, by gender). Section 2: histograms of the +* cross-sectional distribution by year and income category. +* Unlike 04_01/04_02, plots here are standalone (no reusable +* program define blocks). ******************************************************************************** -* NOTES: +* NOTES: Amounts throughout are in 2015 prices, with top/bottom +* percentiles trimmed. ******************************************************************************** ******************************************************************************** @@ -93,7 +102,7 @@ twoway /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Series represents average benefit unit gross income through time. Gross income is the sum of captial income, private" "pension income and employment income. One observation per benefit unit plotted. Amounts in 2015 prices. Top and" "bottom percentiles trimmed.", /// + note("Notes: Series represents average benefit unit gross income through time. Gross income is the sum of capital income, private" "pension income and employment income. One observation per benefit unit plotted. Amounts in 2015 prices. Top and" "bottom percentiles trimmed. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -174,7 +183,7 @@ twoway /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Series represents average individual gross income through time. Gross income is the sum of captial income, private pension" "income and employment income. Values in 2015 prices. Top and bottom percentiles trimmed.", /// + note("Notes: Series represents average individual gross income through time. Gross income is the sum of capital income, private pension" "income and employment income. Values in 2015 prices. Top and bottom percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -255,7 +264,7 @@ twoway /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Series represents average individual gross income through time. Gross income is the sum of captial income, private pension" "income and employment income. Values in 2015 prices. Top and bottom percentiles trimmed.", /// + note("Notes: Series represents average individual gross income through time. Gross income is the sum of capital income, private pension" "income and employment income. Values in 2015 prices. Top and bottom percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -336,7 +345,7 @@ twoway /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Series represents average individual gross through time. Gross income is the sum of captial income, private pension" "income and employment income. Values in 2015 prices. Top and bottom percentiles trimmed.", /// + note("Notes: Series represents average individual gross income through time. Gross income is the sum of capital income, private pension" "income and employment income. Values in 2015 prices. Top and bottom percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -375,7 +384,10 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -426,8 +438,11 @@ append using "$dir_data/temp_valid_stats.dta" * Plot sub-figures qui sum year -local min_year = 2011 -local max_year = 2023 +local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + //local year = 2010 @@ -443,9 +458,15 @@ forval year = `min_year'/`max_year' { gen max_value = max_d_valid_`year' if max_d_valid_`year' > max_d_sim replace max_value = max_d_sim if max_value == . - sum max_value - local max_y = 1.25*r(max) - local steps = `max_y'/3 + quietly sum max_value, meanonly + if (r(N) == 0 | missing(r(max)) | r(max) <= 0) { + local max_y = 1 + local steps = 0.3333333 + } + else { + local max_y = 1.25*r(max) + local steps = `max_y'/3 + } twoway (hist sim_yGrossBuLevelYear if year == `year', width(2500) /// @@ -476,9 +497,15 @@ forval year = `min_year'/`max_year' { max_d_valid_`year'_`ls' > max_d_sim replace max_value = max_d_sim if max_value == . - sum max_value - local max_y = 1.25*r(max) - local steps = `max_y'/3 + quietly sum max_value, meanonly + if (r(N) == 0 | missing(r(max)) | r(max) <= 0) { + local max_y = 1 + local steps = 0.3333333 + } + else { + local max_y = 1.25*r(max) + local steps = `max_y'/3 + } * Plot by weekly hours work twoway (hist sim_yGrossBuLevelYear if year == `year' & /// @@ -504,7 +531,10 @@ forval year = `min_year'/`max_year' { * Combine plots by year qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forvalues year = `min_year'/`max_year' { @@ -573,7 +603,9 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -629,7 +661,10 @@ append using "$dir_data/temp_valid_stats.dta" * Plot sub-figures qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -643,9 +678,15 @@ forval year = `min_year'/`max_year' { gen max_value = max_d_valid_`year' if max_d_valid_`year' > max_d_sim replace max_value = max_d_sim if max_value == . - sum max_value - local max_y = 1.25*r(max) - local steps = `max_y'/3 + quietly sum max_value, meanonly + if (r(N) == 0 | missing(r(max)) | r(max) <= 0) { + local max_y = 1 + local steps = 0.3333333 + } + else { + local max_y = 1.25*r(max) + local steps = `max_y'/3 + } * Plot all hours twoway (hist sim_yGrossBuLevelYear if year == `year', width(2500) /// @@ -676,9 +717,15 @@ forval year = `min_year'/`max_year' { max_d_valid_`year'_`ls' > max_d_sim replace max_value = max_d_sim if max_value == . - sum max_value - local max_y = 1.25*r(max) - local steps = `max_y'/3 + quietly sum max_value, meanonly + if (r(N) == 0 | missing(r(max)) | r(max) <= 0) { + local max_y = 1 + local steps = 0.3333333 + } + else { + local max_y = 1.25*r(max) + local steps = `max_y'/3 + } * Plot by weekly hours work twoway (hist sim_yGrossBuLevelYear if year == `year' & /// @@ -703,8 +750,11 @@ forval year = `min_year'/`max_year' { * Combine plots by year qui sum year -local min_year = 2011 -local max_year = 2023 +local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forvalues year = `min_year'/`max_year' { @@ -770,7 +820,10 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -826,7 +879,10 @@ append using "$dir_data/temp_valid_stats.dta" * Plot sub-figures qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -901,8 +957,11 @@ forval year = `min_year'/`max_year' { * Combine plots by year qui sum year -local min_year = 2011 -local max_year = 2023 +local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forvalues year = `min_year'/`max_year' { diff --git a/validation/02_simulated_output_validation/do_files/04_04_plot_gross_labour_income.do b/validation/02_simulated_output_validation/do_files/04_04_plot_gross_labour_income.do index 7c4f3b5ac..83f338a3b 100644 --- a/validation/02_simulated_output_validation/do_files/04_04_plot_gross_labour_income.do +++ b/validation/02_simulated_output_validation/do_files/04_04_plot_gross_labour_income.do @@ -1,13 +1,21 @@ ******************************************************************************** * PROJECT: SimPaths UK * SECTION: Validation -* OBJECT: Gross labour income -* AUTHORS: Ashley Burdett -* LAST UPDATE: Feb 2026 -* COUNTRY: UK +* OBJECT: Gross labour income +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS gross +* labour (employment) income for employed individuals. +* Section 1: time-series means (benefit-unit and individual +* level). Section 2: histograms of the cross-sectional +* distribution by year. Same standalone +* structure as 04_03 (no reusable program define blocks). ******************************************************************************** -* NOTES: Plotted using individual level data -* => multiple observations per ben unit. +* NOTES: Amounts in 2015 prices, top/bottom percentiles trimmed. +* The individual-level subsection (1.2) plots multiple +* observations per benefit unit; the benefit-unit +* subsection (1.1) keeps one observation per unit. ******************************************************************************** ******************************************************************************** @@ -98,7 +106,7 @@ twoway /// xlabel(,labsize(small)) /// graphregion(color(white)) /// legend(size(small)) /// - note("Note: Amounts in 2015 prices. Top and bottom percentiles trimmed.", /// + note("Note: Amounts in 2015 prices. Top and bottom percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -108,7 +116,7 @@ graph export /// ******************************************************************************** -* 1.1: Mean labour income - individual +* 1.2: Mean labour income - individual ******************************************************************************** * Prepare validation data @@ -184,7 +192,7 @@ twoway /// xlabel(,labsize(small)) /// graphregion(color(white)) /// legend(size(small)) /// - note("Note: Amounts at the individual level, individual data plotted. Statistics calculated on the sample of employed individuals" "ages 18-65. Amounts in 2015 prices. Top and bottom percentiles trimmed.", /// + note("Note: Amounts at the individual level, individual data plotted. Statistics calculated on the sample of employed individuals" "ages 18-65. Amounts in 2015 prices. Top and bottom percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -228,8 +236,11 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year -local min_year = 2011 -local max_year = 2023 +local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -290,7 +301,10 @@ append using "$dir_data/temp_valid_stats.dta" * Plot sub-figures qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -402,7 +416,7 @@ graph drop _all ******************************************************************************** -* 2.1 : Histograms - working age, individual +* 2.2 : Histograms - working age, individual ******************************************************************************** * Prepare validation data @@ -429,8 +443,11 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year -local min_year = 2011 -local max_year = 2023 +local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -487,7 +504,10 @@ append using "$dir_data/temp_valid_stats.dta" * Plot sub-figures qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { diff --git a/validation/02_simulated_output_validation/do_files/04_05_plot_capital_income.do b/validation/02_simulated_output_validation/do_files/04_05_plot_capital_income.do index a4a4f10d5..9ee04be97 100644 --- a/validation/02_simulated_output_validation/do_files/04_05_plot_capital_income.do +++ b/validation/02_simulated_output_validation/do_files/04_05_plot_capital_income.do @@ -2,13 +2,18 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Capital income -* AUTHORS: Ashley Burdett -* LAST UPDATE: 9/25 (AB) -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* benefit-unit capital income. Section 1: time-series means +* (1.1) and share with zero capital income (1.2). Section 2: +* histograms of the cross-sectional distribution. Same +* standalone structureas 04_03/04_04 (no reusable programs). +* Unlike other income modules, outlier trimming is +* disabled for capital income (see section 1.1). ******************************************************************************** -* NOTES: This do file plots simulated and UKHLS capital income, -* per benefit unit - +* NOTES: Amounts in 2015 prices. ******************************************************************************** ******************************************************************************** @@ -97,7 +102,7 @@ twoway (rarea sim_yCapitalBuLevelYear_high sim_yCapitalBuLevelYear_low year, /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Series represents average benefit unit capital income per year. Amounts in 2015 prices.", /// + note("Notes: Series represents average benefit unit capital income per year. Amounts in 2015 prices." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -193,7 +198,7 @@ twoway (rarea sim_no_capital_high sim_no_capital_low year, sort /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", /// + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -259,7 +264,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -344,7 +352,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { diff --git a/validation/02_simulated_output_validation/do_files/04_06_plot_pension_income.do b/validation/02_simulated_output_validation/do_files/04_06_plot_pension_income.do index 1c544b5d1..af98760ef 100644 --- a/validation/02_simulated_output_validation/do_files/04_06_plot_pension_income.do +++ b/validation/02_simulated_output_validation/do_files/04_06_plot_pension_income.do @@ -2,13 +2,18 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Pension income -* AUTHORS: Ashley Burdett -* LAST UPDATE: 9/25 (AB) -* COUNTRY: UK - -* NOTES: This do file plots simulated and UKHLS private penson -* income, per benefit unit - +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* benefit-unit private pension income, restricted to +* benefit units with an individual aged 65+. Section 1: +* time-series means (1.1) and share with zero pension +* income (1.2). Section 2: histograms of the cross-sectional +* distribution. Same standalone structure as 04_03-04_05 (no +* reusable program define blocks). +******************************************************************************** +* NOTES: Amounts in 2015 prices. ******************************************************************************** ******************************************************************************** @@ -23,7 +28,8 @@ use year idBu demAge dwt valid_yPensBuGrossLevelYear using /// "$dir_data/ukhls_validation_sample.dta", clear -keep if demAge < 65 +* Sample selection +drop if demAge < 65 * Keep one observation per benefit unit bysort year idBu: gen first_person = (_n == 1) @@ -94,7 +100,7 @@ twoway (rarea sim_yPensBuGrossLevelYear_high sim_yPensBuGrossLevelYear_low /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Series represents average benefit unit private pension income. Amounts in 2015 prices. Top and bottom" "percentiles trimmed. Those 65+ maintained in sample.", /// + note("Notes: Series represents average benefit unit private pension income. Amounts in 2015 prices. Top and bottom" "percentiles trimmed. Those 65+ maintained in sample." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -187,7 +193,7 @@ twoway (rarea sim_no_pension_high sim_no_pension_low year, sort /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Share of benefit unit units with individual 65+ with no private pension income. Top and bottom percentiles trimmed.", /// + note("Notes: Share of benefit unit units with individual 65+ with no private pension income. Top and bottom percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -195,6 +201,7 @@ graph export /// "$dir_output_files/income/pension_income/validation_${country}_no_pension_income_bu_ts_65plus.jpg", /// replace width(2400) height(1350) quality(100) + ******************************************************************************** * 2 : Histograms @@ -255,7 +262,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -344,7 +354,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { diff --git a/validation/02_simulated_output_validation/do_files/04_07_plot_disposable_income.do b/validation/02_simulated_output_validation/do_files/04_07_plot_disposable_income.do index 8e23f903f..7908ab68f 100644 --- a/validation/02_simulated_output_validation/do_files/04_07_plot_disposable_income.do +++ b/validation/02_simulated_output_validation/do_files/04_07_plot_disposable_income.do @@ -1,13 +1,19 @@ ******************************************************************************** -* PROJECT: SimPath UK +* PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Disposable income -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* benefit-unit disposable income, ages 16+. Section 1: +* time-series means . Section 2: histograms of the +* cross-sectional distribution, including by hours worked +* (2.2) -- these plot one observation per individual, so +* benefit units are weighted by household size. Same +* standalone structure as 04_03-04_06. ******************************************************************************** -* NOTES: This do file plots simulated and UKHLS disposable income, -* per benefit unit. Individual level data plotted. +* NOTES: Amounts in 2015 prices, top/bottom percentiles trimmed. ******************************************************************************** ******************************************************************************** @@ -92,7 +98,7 @@ twoway (rarea sim_yDispBuLevelYear_high sim_yDispBuLevelYear_low year, /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Amounts in GBP per year, 2015 prices. Top and bottom percentiles trimmed.", /// + note("Notes: Amounts in GBP per year, 2015 prices. Top and bottom percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -159,7 +165,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -211,7 +220,10 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -263,7 +275,10 @@ append using "$dir_data/temp_valid_stats.dta" * Plot sub-figures qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -337,7 +352,10 @@ forval year = `min_year'/`max_year' { * Combine plots by year qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forvalues year = `min_year'/`max_year' { @@ -348,7 +366,7 @@ forvalues year = `min_year'/`max_year' { subtitle("`year'") /// legendfrom(disp_inc_`year'_ZERO) rows(1) /// graphregion(color(white)) /// - note("Notes: Amounts in GBP per year, 2015 prices. Indiviudal level data of benefit level amount plotted." "Top and bottom percentiles trimmed.", /// + note("Notes: Amounts in GBP per year, 2015 prices. Individual level data of benefit level amount plotted." "Top and bottom percentiles trimmed.", /// size(vsmall)) graph export /// @@ -365,7 +383,7 @@ forvalues year = `min_year'/`max_year' { subtitle("`year'") /// legendfrom(disp_inc_`year'_TWENTY) rows(2) /// graphregion(color(white)) /// - note("Notes: Amounts in GBP per year, 2015 prices. Indiviudal level data of benefit level amount plotted." "Top and bottom percentiles trimmed.", /// + note("Notes: Amounts in GBP per year, 2015 prices. Individual level data of benefit level amount plotted." "Top and bottom percentiles trimmed.", /// size(vsmall)) graph export /// diff --git a/validation/02_simulated_output_validation/do_files/04_08_plot_equivalised_disposable_income.do b/validation/02_simulated_output_validation/do_files/04_08_plot_equivalised_disposable_income.do index 62c139ec9..8e04be918 100644 --- a/validation/02_simulated_output_validation/do_files/04_08_plot_equivalised_disposable_income.do +++ b/validation/02_simulated_output_validation/do_files/04_08_plot_equivalised_disposable_income.do @@ -2,12 +2,19 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Equivalised disposable income -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* equivalised benefit-unit disposable income (modified +* OECD scale), ages 16+. Section 1: time-series means with +* a shaded band (mean +/- 1.96*SD across $max_n_runs +* runs). Section 2: histograms of the cross-sectional +* distribution by year. Section 3: histograms by year and +* weekly labour-supply category. Same standalone structure +* as 04_03-04_07. ******************************************************************************** -* NOTES: This do file plots simulated and UKHLS equivalised -* disposable income, per benefit unit +* NOTES: Amounts in 2015 prices, top/bottom percentiles trimmed. ******************************************************************************** ******************************************************************************** @@ -85,7 +92,7 @@ twoway (rarea sim_yDispEquivYear_high sim_yDispEquivYear_low year, /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Equivalised disposable income computed by the modified OECD scale. Top and bottom percentiles trimmed. Amounts" "annual, in 2015 prices.", /// + note("Notes: Equivalised disposable income computed by the modified OECD scale. Top and bottom percentiles trimmed. Amounts" "annual, in 2015 prices." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -152,7 +159,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -181,7 +191,7 @@ forval year = `min_year'/`max_year' { graph drop _all ******************************************************************************** -* 2 : Histograms by year, and by category of weekly labour supply, ben unit +* 3 : Histograms by year, and by category of weekly labour supply, ben unit ******************************************************************************** * Prepare validation data @@ -203,7 +213,10 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -254,7 +267,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -327,7 +343,10 @@ forval year = `min_year'/`max_year' { qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forvalues year = `min_year'/`max_year' { diff --git a/validation/02_simulated_output_validation/do_files/04_09_plot_hourly_wages.do b/validation/02_simulated_output_validation/do_files/04_09_plot_hourly_wages.do index 4393322a9..7ff1208ba 100644 --- a/validation/02_simulated_output_validation/do_files/04_09_plot_hourly_wages.do +++ b/validation/02_simulated_output_validation/do_files/04_09_plot_hourly_wages.do @@ -2,12 +2,18 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Hourly wages -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* hourly wages for employed/self-employed individuals aged +* 16-65. Section 1: time-series means (all, and by gender), +* with a shaded band (mean +/- 1.96*SD across $max_n_runs +* runs). Section 2: histograms of the cross-sectional +* distribution by year (all, and by gender). Same +* standalone structure as 04_03-04_08. ******************************************************************************** -* NOTES: This master do file organises do files used for validating -* SimPaths model using UKHLS data. +* NOTES: Amounts in 2015 prices, top/bottom percentiles trimmed. ******************************************************************************** ******************************************************************************** @@ -68,7 +74,6 @@ collapse (mean) sim_pred_wage /// (sd) sim_pred_wage_sd = sim_pred_wage /// , by(year) -* Approx 95% confidence interval foreach varname in sim_pred_wage { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -93,7 +98,7 @@ twoway (rarea sim_pred_wage_high /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Statistics calculated on sample of employed and self-employed individuals. Amounts in 2015 prices.""Top and bottom percentiles trimmed.", /// + note("Notes: Statistics calculated on sample of employed and self-employed individuals. Amounts in 2015 prices." "Top and bottom percentiles trimmed. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -199,7 +204,7 @@ grc1leg wages_female wages_male, /// legendfrom(wages_female) rows(1) /// graphregion(color(white)) /// ycomm /// - note("Notes: Statistics calculated on sample of employed anf self-employed individuals. Amounts in 2015 prices. Top and bottom" "percentiles trimmed.", /// + note("Notes: Statistics calculated on sample of employed and self-employed individuals. Amounts in 2015 prices." "Top and bottom" "percentiles trimmed." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -241,7 +246,10 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -282,7 +290,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -314,7 +325,7 @@ forval year = `min_year'/`max_year' { ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Statistics calculated on subsample of employed and self-employed individuals aged 16-65. Amounts in 2015 prices.""Top percentiles and bottom percentiles trimmed.", size(vsmall)) + note("Notes: Statistics calculated on subsample of employed and self-employed individuals aged 16-65. Amounts in 2015 prices. Top and bottom percentiles trimmed.", size(vsmall)) graph export /// "$dir_output_files/wages/validation_${country}_wages_dist_`year'.png", /// @@ -356,7 +367,10 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -398,7 +412,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -429,7 +446,7 @@ forval year = `min_year'/`max_year' { xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Statistics calculated on subsample of employed and self-employed individuals aged 16-65. Amounts in 2015 prices.""Top and bottom percentails trimmed.", size(vsmall)) + note("Notes: Statistics calculated on subsample of employed and self-employed individuals aged 16-65. Amounts in 2015 prices. Top and bottom percentiles trimmed.", size(vsmall)) graph export /// "$dir_output_files/wages/validation_${country}_wages_dist_`year'_female.png", /// @@ -465,7 +482,10 @@ if "$trim_outliers" == "true" { * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -507,7 +527,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 +if "$min_sim_year" != "" local min_year = $min_sim_year local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -538,7 +561,7 @@ forval year = `min_year'/`max_year' { xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Statistics calculated on subsample of employed and self-employed individuals aged 16-65. Amounts in 2015 prices.""Top and bottom percentiles trimmed.", size(vsmall)) + note("Notes: Statistics calculated on subsample of employed and self-employed individuals aged 16-65. Amounts in 2015 prices. "Top and bottom percentiles trimmed.", size(vsmall)) graph export /// diff --git a/validation/02_simulated_output_validation/do_files/04_10_0_plot_hours_worked.do b/validation/02_simulated_output_validation/do_files/04_10_0_plot_hours_worked.do index 8459a4f49..279033090 100644 --- a/validation/02_simulated_output_validation/do_files/04_10_0_plot_hours_worked.do +++ b/validation/02_simulated_output_validation/do_files/04_10_0_plot_hours_worked.do @@ -2,18 +2,29 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Hours worked per week -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* weekly hours worked, using a uniform-heterogeneity +* imputation for hours in the top labour-supply category +* (ages 16-65 and 16-75, both overall and by gender). +* Section 1: time-series means with a shaded band +* (mean +/- 1.96*SD across $max_n_runs runs). Section 2: +* histograms of the cross-sectional distribution by year. +* ONLY lines 1-744 are active. Everything after that +* (log-normal heterogeneity + a dependent "round to 40 +* hours" adjustment) is out of scope -- do not run or rely on +* it as-is. ******************************************************************************** -* NOTES: Current implementation explores the impact how the -* heterogeneity of the upper most category is instructed. +* NOTES: Amounts/statistics restricted to employed and +* self-employed individuals. ******************************************************************************** set seed 12345 ******************************************************************************** -* UNIFORM HETEROGENIETY +* UNIFORM HETEROGENEITY ******************************************************************************** ******************************************************************************** @@ -56,7 +67,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -72,7 +82,8 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen * Plot figure twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// color(green%20) legend(label(1 "SimPaths"))) /// -(line valid_labHrsWorkWeek year, sort color(green) legend(label(2 "UKHLS"))), /// +(line valid_labHrsWorkWeek year, sort color(green) /// + legend(label(2 "UKHLS"))), /// title("Average Weekly Hours Worked") /// subtitle("Ages 16-65") /// xtitle("Year", size(small)) /// @@ -81,7 +92,7 @@ twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Statistics calculated on sample of working age employed and self-employed individuals.", /// + note("Note: Statistics calculated on sample of working age employed and self-employed individuals." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -123,7 +134,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year demMaleFlag) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -143,7 +153,8 @@ keep if demMaleFlag == 1 twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// color(green%20) legend(label(1 "SimPaths"))) /// -(line valid_labHrsWorkWeek year, sort color(green) legend(label(2 "UKHLS"))), /// +(line valid_labHrsWorkWeek year, sort color(green) /// + legend(label(2 "UKHLS"))), /// title("Average Weekly Hours Worked") /// subtitle("Males, ages 16-65") /// xtitle("Year", size(small)) /// @@ -152,7 +163,7 @@ twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Statistics calculated on sample of working age employed and self-employed individuals.", /// + note("Note: Statistics calculated on sample of working age employed and self-employed individuals." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -168,7 +179,8 @@ keep if demMaleFlag == 0 twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// color(green%20) legend(label(1 "SimPaths"))) /// -(line valid_labHrsWorkWeek year, sort color(green) legend(label(2 "UKHLS"))), /// +(line valid_labHrsWorkWeek year, sort color(green) /// + legend(label(2 "UKHLS"))), /// title("Average Weekly Hours Worked") /// subtitle("Females, ages 16-65") /// xtitle("Year", size(small)) /// @@ -177,7 +189,7 @@ twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Statistics calculated on sample of working age employed and self-employed individuals.", /// + note("Note: Statistics calculated on sample of working age employed and self-employed individuals." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -220,7 +232,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -245,7 +256,7 @@ twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Statistics calculated on sample of working age employed and self-employed individuals.", /// + note("Note: Statistics calculated on sample of working age employed and self-employed individuals." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -255,7 +266,7 @@ graph export /// ******************************************************************************** -* 1.2 : Mean values over time - Ages 16-75, by gender +* 1.4 : Mean values over time - Ages 16-75, by gender ******************************************************************************** * Prepare validation data @@ -287,7 +298,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year demMaleFlag) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -316,7 +326,7 @@ twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, sort /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Statistics calculated on sample of working age employed and self-employed individuals.", /// + note("Note: Statistics calculated on sample of working age employed and self-employed individuals." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -342,7 +352,7 @@ twoway (rarea sim_labHrsWorkWeek_high sim_labHrsWorkWeek_low year, /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Statistics calculated on sample of working age employed and self-employed individuals.", /// + note("Note: Statistics calculated on sample of working age employed and self-employed individuals." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -370,7 +380,10 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -402,7 +415,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -461,7 +477,10 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -495,7 +514,10 @@ append using "$dir_data/temp_valid_stats.dta" * Plot by year qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -551,7 +573,10 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -584,7 +609,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -644,7 +672,10 @@ keep if inrange(demAge,16,75) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -676,7 +707,10 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2011 -local max_year = 2023 +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = 2023 +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -846,7 +880,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -925,7 +958,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -999,7 +1031,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidnece interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1051,7 +1082,9 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1091,7 +1124,9 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1150,7 +1185,9 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1191,7 +1228,9 @@ append using "$dir_data/temp_valid_stats.dta" * Plot by year qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1247,7 +1286,9 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1287,7 +1328,9 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1530,7 +1573,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1612,7 +1654,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidence interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1690,7 +1731,6 @@ collapse (mean) sim_labHrsWorkWeek /// (sd) sim_labHrsWorkWeek_sd = sim_labHrsWorkWeek /// , by(year) -* Approx 95% confidnece interval foreach varname in sim_labHrsWorkWeek { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -1742,7 +1782,9 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1784,7 +1826,9 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1844,7 +1888,9 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1886,7 +1932,9 @@ append using "$dir_data/temp_valid_stats.dta" * Plot by year qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1943,7 +1991,9 @@ keep if inrange(demAge,16,65) * Prepare info needed for dynamic y axis labels qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { @@ -1984,7 +2034,9 @@ append using "$dir_data/temp_valid_stats.dta" qui sum year local min_year = 2019 -local max_year = r(max) +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + forval year = `min_year'/`max_year' { diff --git a/validation/02_simulated_output_validation/do_files/04_10_1_plot_hours_worked_discrete.do b/validation/02_simulated_output_validation/do_files/04_10_1_plot_hours_worked_discrete.do index e3c7134bc..c91a33f86 100644 --- a/validation/02_simulated_output_validation/do_files/04_10_1_plot_hours_worked_discrete.do +++ b/validation/02_simulated_output_validation/do_files/04_10_1_plot_hours_worked_discrete.do @@ -2,12 +2,22 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Hours worked (discrete) -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* discretized weekly hours worked (7 categories: 0, 10, +* 20, 30, 38, 45, 55 hours), ages 16-65, restricted to +* employed/self-employed individuals with hours > 0. +* Bar charts of category shares (pooled, by year, and by +* year-by-gender) with error bars (mean +/- 1.96*SD across +* $max_n_runs runs). Section 3 (comparing across the +* heterogeneity scenarios explored in 04_10_0) is entirely +* commented out and out of scope -- do not run or rely on +* it as-is. ******************************************************************************** -* NOTES: Need to update to acocunt for additional labour supply -* categories +* NOTES: Need to update to account for additional labour supply +* categories. *******************************************************************************/ ******************************************************************************** @@ -92,7 +102,7 @@ twoway (bar prop_ukhls x_ukhls, barw(0.4) color(red%50)) /// ytitle("Proportion", size(small)) /// title("Share in Each Labour Hours Category") /// subtitle("Ages 16-65") /// - legend(order(1 "UKHLS" 2 "SimPaths" 3 "95% CI")) /// + legend(order(1 "UKHLS" 2 "SimPaths" 3 "+/- 1.96 SD")) /// legend(size(small)) /// graphregion(color(white)) /// note("Notes: Years 2011-2023. Categories 1 = 6-15 hours, 2 = 16-25 hours, 3 = 26-35 hours , 4 = 36-40 hours, 5 = 41-49 hours," "6 = 55+ hours.", size(vsmall)) @@ -179,7 +189,7 @@ foreach y in `years' { ytitle("Proportion", size(small)) /// title("Share in Each Labour Hours Category") /// subtitle("`y'") /// - legend(order(1 "UKHLS" 2 "SimPaths" 3 "95% CI")) /// + legend(order(1 "UKHLS" 2 "SimPaths" 3 "+/- 1.96 SD")) /// legend(size(small)) /// graphregion(color(white)) /// note("Notes: Ages 16-65. Categories 1 = 6-15 hours, 2 = 16-25 hours, 3 = 26-35 hours , 4 = 36-40 hours, 5 = 41-49 hours," "6 = 55+ hours.", size(vsmall)) @@ -283,7 +293,7 @@ foreach y in `years' { ytitle("Proportion", size(small)) /// title("Share in Each Labour Hours Category") /// subtitle("`y', `sextext'") /// - legend(order(1 "UKHLS" 2 "SimPaths" 3 "95% CI")) /// + legend(order(1 "UKHLS" 2 "SimPaths" 3 "+/- 1.96 SD")) /// legend(size(small)) /// graphregion(color(white)) /// note("Notes: Comparison for `sextext' in `y'." "Categories: 1=6-15, 2=16-25, 3=26-35, 4=36-40, 5=41-49, 6=55+ hours.", size(vsmall)) diff --git a/validation/02_simulated_output_validation/do_files/04_11_plot_income_shares.do b/validation/02_simulated_output_validation/do_files/04_11_plot_income_shares.do index 1f90c8a77..850d60e3b 100644 --- a/validation/02_simulated_output_validation/do_files/04_11_plot_income_shares.do +++ b/validation/02_simulated_output_validation/do_files/04_11_plot_income_shares.do @@ -2,15 +2,19 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Income shares -* AUTHORS: Patryk Bronka, Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Patryk Bronka, Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* gross-income deciles: mean income level per decile and +* income composition shares (employment, capital, pension) +* per decile, for all ages, ages up to 65, and ages 66+. +* Deciles computed on non-benefit gross income +* (sim_yNonBenBuGrossLevelYear). Unlike other 04_NN +* modules, this file is a linear script without numbered +* subsections. ******************************************************************************** -* NOTES: This do file plots simulated and observed income shares and -* incomes by deciles of gross income -* Altered pension age to 65 - - TO UPDATE +* NOTES: Pension age set to 65 in the age-based splits. *******************************************************************************/ ** SimPaths output @@ -59,7 +63,7 @@ tab zero_gross Equal shares in deciles. */ -* Genrate share variables +* Generate share variables gen sim_share_emp = sim_yEmpBuGrossLevelYear / sim_yNonBenBuGrossLevelYear gen sim_share_cap = sim_yCapitalBuLevelYear / sim_yNonBenBuGrossLevelYear gen sim_share_pen = sim_yPensBuGrossLevelYear / sim_yNonBenBuGrossLevelYear @@ -227,7 +231,7 @@ tab zero_gross Non-equal shares in in bottom two deciles */ -* Genrate share variables +* Generate share variables gen valid_share_emp = valid_yEmpBuGrossLevelYear / valid_yNonBenBuGrossLevelYear gen valid_share_cap = valid_yCapitalBuLevelYear / valid_yNonBenBuGrossLevelYear gen valid_share_pen = valid_yPensBuGrossLevelYear / valid_yNonBenBuGrossLevelYear @@ -426,7 +430,7 @@ grc1leg simulated_income_share_upto65 UKHLS_income_share_upto65, /// size(vsmall)) graph export /// - "$dir_output_files/income/income_shares/validation_${country}_income_sharess_upto65.png", /// + "$dir_output_files/income/income_shares/validation_${country}_income_shares_upto65.png", /// replace width(2400) height(1350) @@ -441,7 +445,7 @@ grc1leg simulated_income_share_66plus UKHLS_income_share_66plus, /// size(vsmall)) graph export /// - "$dir_output_files/income/income_shares/validation_${country}_income_sharess_66plus.png", /// + "$dir_output_files/income/income_shares/validation_${country}_income_shares_66plus.png", /// replace width(2400) height(1350) diff --git a/validation/02_simulated_output_validation/do_files/04_12_plot_partnership_status.do b/validation/02_simulated_output_validation/do_files/04_12_plot_partnership_status.do index 87189c58c..71a0462de 100644 --- a/validation/02_simulated_output_validation/do_files/04_12_plot_partnership_status.do +++ b/validation/02_simulated_output_validation/do_files/04_12_plot_partnership_status.do @@ -2,11 +2,17 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Partnership -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* partnership status, ages 18-65. Section 1.1: share +* partnered/single overall, with a shaded band (mean +* +/- 1.96*SD across $max_n_runs runs). Section 1.2: same, +* by age group. Section 1.3: partnership status +* interacted with number of children. ******************************************************************************** -* NOTES: +* NOTES: ******************************************************************************** ******************************************************************************** @@ -44,7 +50,6 @@ collapse (mean) sim_partnered sim_single /// sim_single_sd = sim_single /// , by(year) -* Approx 95% confidence interval foreach varname in sim_partnered sim_single { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -70,7 +75,8 @@ twoway (rarea sim_partnered_high sim_partnered_low year, sort color(green%20) // ylabel(0[0.1]0.9, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure graph export /// @@ -94,7 +100,8 @@ twoway (rarea sim_partnered_high sim_partnered_low year, sort color(green%20) // ylabel(0[0.1]0.8, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export /// "$dir_output_files/partnership/validation_${country}_partnership_ts_18_65_both.jpg", /// @@ -171,7 +178,8 @@ forvalues i = 1/3 { ylabel(0(0.2)1, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export /// "$dir_output_files/partnership/validation_${country}_partnership_ts_`age_suff`i''_both.jpg", /// @@ -229,7 +237,6 @@ collapse (mean) sim_partnered_children_0 sim_partnered_children_1 /// sim_single_children_3plus_sd = sim_single_children_3plus /// , by(year) -* Approx 95% confidence interval foreach varname in sim_partnered_children_0 sim_partnered_children_1 /// sim_partnered_children_2 sim_partnered_children_3plus sim_single_children_0 /// sim_single_children_1 sim_single_children_2 sim_single_children_3plus { @@ -283,7 +290,8 @@ grc1leg partnered_children_0 partnered_children_1 partnered_children_2 /// rows(2) /// graphregion(color(white)) /// ycomm /// - note("Notes: Samples contains all individual ages 18-65. ", size(vsmall)) + note("Notes: Sample contains all individual ages 18-65. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export /// "$dir_output_files/partnership/validation_${country}_partnership_children_ts_18_65_partnered.jpg", /// @@ -319,7 +327,8 @@ grc1leg single_children_0 single_children_1 single_children_2 /// rows(2) /// graphregion(color(white)) /// ycomm /// - note("Notes: Samples contains all individual ages 18-65. ", size(vsmall)) + note("Notes: Sample contains all individual ages 18-65. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export /// "$dir_output_files/partnership/validation_${country}_partnership_children_ts_18_65_single.jpg", /// diff --git a/validation/02_simulated_output_validation/do_files/04_13_plot_health.do b/validation/02_simulated_output_validation/do_files/04_13_plot_health.do index 8d0d0fc69..73fa4f3e1 100644 --- a/validation/02_simulated_output_validation/do_files/04_13_plot_health.do +++ b/validation/02_simulated_output_validation/do_files/04_13_plot_health.do @@ -2,11 +2,18 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Health -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* health measures, ages 16-65: self-rated health (1-5 +* Likert scale, sections 1.1-1.3), PCS physical component +* score (1.4-1.6), and MCS mental component score +* (1.7-1.9) -- each split by all/gender/age-group-by-gender, +* with a shaded band (mean +/- 1.96*SD across $max_n_runs +* runs). Section 2: histograms of self-rated health only. ******************************************************************************** -* NOTES: +* NOTES: *******************************************************************************/ ******************************************************************************** @@ -42,7 +49,6 @@ collapse (mean) healthSelfRated /// (sd) healthSelfRated_sd = healthSelfRated /// , by(year) -* Compute 95% confidence interval foreach varname in healthSelfRated { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -65,7 +71,7 @@ twoway (rarea healthSelfRated_high healthSelfRated_low year, /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent). ", /// + note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -90,7 +96,8 @@ collapse (mean) health [aw = dwt], by(year demMaleFlag) save "$dir_data/temp_valid_stats.dta", replace * Prepare simulation data -use run year sim_healthSelfRated demAge demMaleFlag run using "$dir_data/simulation_sample.dta", clear +use run year sim_healthSelfRated demAge demMaleFlag run using /// + "$dir_data/simulation_sample.dta", clear keep if inrange(demAge,16,65) @@ -102,7 +109,6 @@ collapse (mean) healthSelfRated /// (sd) healthSelfRated_sd = healthSelfRated /// , by(year demMaleFlag) -* Compute 95% confidence interval foreach varname in healthSelfRated { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -146,7 +152,7 @@ grc1leg health_female health_male, /// legendfrom(health_female) rows(1) /// graphregion(color(white)) /// ycomm /// -note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent). ", /// +note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -334,7 +340,7 @@ grc1leg health_f_1 health_f_2 health_f_3 health_f_4 health_f_5 /// legendfrom(health_f_1) /// graphregion(color(white)) /// ycomm /// -note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent). ", /// +note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -349,7 +355,7 @@ grc1leg health_m_1 health_m_2 health_m_3 health_m_4 health_m_5 /// legendfrom(health_m_1) /// graphregion(color(white)) /// ycomm /// -note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent). ", /// +note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -384,7 +390,6 @@ collapse (mean) sim_healthPhysicalPcs /// (sd) sim_healthPhysicalPcs_sd = sim_healthPhysicalPcs /// , by(year) -* Compute 95% confidence interval foreach varname in sim_healthPhysicalPcs { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -407,7 +412,7 @@ twoway (rarea sim_healthPhysicalPcs_high sim_healthPhysicalPcs_low year, /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning)" "to 100 (high functioning). ", /// + note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning)" "to 100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -441,7 +446,6 @@ collapse (mean) sim_healthPhysicalPcs /// (sd) sim_healthPhysicalPcs_sd = sim_healthPhysicalPcs /// , by(year demMaleFlag) -* Compute 95% confidence interval foreach varname in sim_healthPhysicalPcs { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -484,7 +488,7 @@ grc1leg health_female health_male, /// legendfrom(health_female) rows(1) /// graphregion(color(white)) /// ycomm /// - note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning)" "to 100 (high functioning). ", /// + note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning)" "to 100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -550,7 +554,6 @@ collapse (mean) health* /// (sd) health_f_8_sd = health_f8 /// , by(year) -* Compute 19% confidence intervals forvalues i=1(1)8 { gen health_f_`i'_sim_high = health_f`i' + 1.96*health_f_`i'_sd @@ -671,7 +674,7 @@ grc1leg health_f_1 health_f_2 health_f_3 health_f_4 health_f_5 /// legendfrom(health_f_1) /// graphregion(color(white)) /// ycomm /// - note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning) to" "100 (high functioning). ", /// + note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning) to" "100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -686,7 +689,7 @@ grc1leg health_m_1 health_m_2 health_m_3 health_m_4 health_m_5 /// legendfrom(health_m_1) /// graphregion(color(white)) /// ycomm /// - note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning) to" "100 (high functioning). ", /// + note("Notes: PCS is the SF-12 Physical Health Component. This is a measure of physical function ranging from 0 (low functioning) to" "100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -721,7 +724,6 @@ collapse (mean) sim_healthMentalMcs /// (sd) sim_healthMentalMcs_sd = sim_healthMentalMcs /// , by(year) -* Compute 95% confidence interval foreach varname in sim_healthMentalMcs { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -744,7 +746,7 @@ twoway (rarea sim_healthMentalMcs_high sim_healthMentalMcs_low year, /// xlabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning)" "to 100 (high functioning). ", /// + note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning)" "to 100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -778,7 +780,6 @@ collapse (mean) sim_healthMentalMcs /// (sd) sim_healthMentalMcs_sd = sim_healthMentalMcs /// , by(year demMaleFlag) -* Compute 95% confidence interval foreach varname in sim_healthMentalMcs { gen `varname'_high = `varname' + 1.96*`varname'_sd @@ -821,7 +822,7 @@ grc1leg health_female health_male, /// legendfrom(health_female) rows(1) /// graphregion(color(white)) /// ycomm /// - note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning)" "to 100 (high functioning). ", /// + note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning)" "to 100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -889,7 +890,6 @@ collapse (mean) health* /// (sd) health_f_8_sd = health_f8 /// , by(year) -* Compute 19% confidence intervals forvalues i = 1(1)8 { gen health_f_`i'_sim_high = health_f`i' + 1.96*health_f_`i'_sd @@ -1010,7 +1010,7 @@ grc1leg health_f_1 health_f_2 health_f_3 health_f_4 health_f_5 /// legendfrom(health_f_1) /// graphregion(color(white)) /// ycomm /// - note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning) to" "100 (high functioning). ", /// + note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning) to" "100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -1025,7 +1025,7 @@ grc1leg health_m_1 health_m_2 health_m_3 health_m_4 health_m_5 /// legendfrom(health_m_1) /// graphregion(color(white)) /// ycomm /// - note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning) to" "100 (high functioning). ", /// + note("Notes: mcs is the SF-12 Mental Health Component. This is a measure of Mental function ranging from 0 (low functioning) to" "100 (high functioning)." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -1078,7 +1078,7 @@ twoway (hist healthSelfRated, width(0.2) color(green%30) /// ylabel(,labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent). ", /// + note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent).", /// size(vsmall)) graph export /// @@ -1147,7 +1147,7 @@ grc1leg health_female health_male, /// legendfrom(health_male) rows(1) /// graphregion(color(white)) /// ycomm /// - note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent). ", /// + note("Notes: The health variable is a self-assessed variable and follows a 5-point Likert scale (1 = poor, ..., 5 = excellent).", /// size(vsmall)) diff --git a/validation/02_simulated_output_validation/do_files/04_14_plot_at_risk_of_poverty.do b/validation/02_simulated_output_validation/do_files/04_14_plot_at_risk_of_poverty.do index b53a69647..93b657b0a 100644 --- a/validation/02_simulated_output_validation/do_files/04_14_plot_at_risk_of_poverty.do +++ b/validation/02_simulated_output_validation/do_files/04_14_plot_at_risk_of_poverty.do @@ -1,12 +1,19 @@ /******************************************************************************* * PROJECT: SimPaths UK * SECTION: Validation -* OBJECT: Risk of poverty -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* OBJECT: Risk of poverty +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* at-risk-of-poverty rates: share of individuals with +* equivalised disposable income below 60% of the +* within-year median (computed separately for UKHLS and +* SimPaths), for ages 18-65 (1.1) and ages 18+ (1.2), with +* a shaded band (mean +/- 1.96*SD across $max_n_runs runs). ******************************************************************************** -* NOTES: +* NOTES: Poverty line recalculated within each year and dataset; +* not a shared external threshold. *******************************************************************************/ ******************************************************************************** @@ -35,7 +42,10 @@ if "$trim_outliers" == "true" { qui sum year local min_year = 2011 -local max_year = r(max) +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + gen poverty_line = . forval year = `min_year'/`max_year' { @@ -99,17 +109,17 @@ twoway (rarea arop_sim_high arop_sim_low year, sort color(green%20) /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Poverty line calculated within each year as 60% of the median equivalised disposable income of benefit unit. Calculated" "using individual level observations.", /// + note("Note: Poverty line calculated within each year as 60% of the median equivalised disposable income of benefit unit. Calculated" "using individual level observations. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure -graph export "$dir_output_files/poverty/validation_${country}_at_risk_of_poverty_18_${max_age}.jpg", /// +graph export "$dir_output_files/poverty/validation_${country}_at_risk_of_poverty_18_65.jpg", /// replace width(2560) height(1440) quality(100) ******************************************************************************** -* 1.1 : Mean values over time, 18+ +* 1.2 : Mean values over time, 18+ ******************************************************************************** * Prepare validation data @@ -131,7 +141,10 @@ if "$trim_outliers" == "true" { qui sum year local min_year = 2011 -local max_year = r(max) +if "$min_sim_year" != "" local min_year = $min_sim_year +local max_year = r(max) +if "$max_sim_year" != "" local max_year = $max_sim_year + gen poverty_line = . @@ -199,7 +212,7 @@ twoway (rarea arop_sim_high arop_sim_low year, sort color(green%20) /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Note: Poverty line calculated within each year as 60% of the median equivalised disposable income of benefit unit. Calculated" "using individual level observations.", /// + note("Note: Poverty line calculated within each year as 60% of the median equivalised disposable income of benefit unit. Calculated" "using individual level observations.Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure diff --git a/validation/02_simulated_output_validation/do_files/04_15_plot_inequality.do b/validation/02_simulated_output_validation/do_files/04_15_plot_inequality.do index b923764fc..ae4ef6810 100644 --- a/validation/02_simulated_output_validation/do_files/04_15_plot_inequality.do +++ b/validation/02_simulated_output_validation/do_files/04_15_plot_inequality.do @@ -1,12 +1,20 @@ ******************************************************************************** -* PROJECT: SimPath UK +* PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Inequality -* AUTHORS: Ashley Burdett -* LAST UPDATE: 9/2025 (AB) -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* inequality in equivalised disposable income, ages 18-65: +* P90/P50 ratio (1.1), P90/P10 ratio (1.2), Gini +* coefficient (1.3, via ineqdeco), and net transfers +* (1.4). Time-series plots use a shaded band (mean +* +/- 1.96*SD across $max_n_runs runs). +* REQUIRES: community-contributed ineqdeco (ssc install +* ineqdeco) for the Gini calculation. ******************************************************************************** -* NOTES: Equivalized disposable income used to created ratios +* NOTES: Equivalised disposable income used throughout. ******************************************************************************** //ssc install ineqdeco @@ -85,7 +93,8 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen * Plot figure twoway (rarea p90_p50_ratio_disp_high p90_p50_ratio_disp_low year, sort /// color(green%20) legend(label(1 "SimPaths") position(6) rows(1))) /// -(line p90_p50_ratio_disp_obs year, sort color(green)legend(label(2 "UKHLS"))), /// +(line p90_p50_ratio_disp_obs year, sort /// + color(green)legend(label(2 "UKHLS"))), /// title("P90/P50 Disposable Income Ratio") /// subtitle("Ages 18-65") /// xtitle("Year", size(small)) /// @@ -94,16 +103,17 @@ twoway (rarea p90_p50_ratio_disp_high p90_p50_ratio_disp_low year, sort /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Ratios computed using individual observations of benefit unit measure of equivalized disposable income.", /// + note("Notes: Ratios computed using individual observations of benefit unit measure of equivalized disposable income." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure -graph export "$dir_output_files/inequality/validation_${country}_p90p50.jpg", /// +graph export /// + "$dir_output_files/inequality/validation_${country}_p90p50.jpg", /// replace width(2400) height(1350) quality(100) ******************************************************************************** -* 1.1 : Income ratio, 90/10 +* 1.2 : Income ratio, 90/10 ******************************************************************************** * Prepare validation data @@ -172,7 +182,8 @@ merge 1:1 year using "$dir_data/temp_valid_stats.dta", keep(3) nogen * Plot figure twoway (rarea p90_p10_ratio_disp_high p90_p10_ratio_disp_low year, sort /// color(green%20) legend(label(1 "SimPaths") position(6) rows(1))) /// -(line p90_p10_ratio_disp_obs year, sort color(green)legend(label(2 "UKHLS"))), /// +(line p90_p10_ratio_disp_obs year, sort /// + color(green)legend(label(2 "UKHLS"))), /// title("P90/P10 Disposable Income Ratio") /// subtitle("Ages 18-65") /// xtitle("Year", size(small)) /// @@ -181,16 +192,17 @@ twoway (rarea p90_p10_ratio_disp_high p90_p10_ratio_disp_low year, sort /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Ratios computed using individual observations of benefit unit measure of equivalized disposable income.", /// + note("Notes: Ratios computed using individual observations of benefit unit measure of equivalized disposable income." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure -graph export "$dir_output_files/inequality/validation_${country}_p90p10.jpg", /// +graph export /// + "$dir_output_files/inequality/validation_${country}_p90p10.jpg", /// replace width(2400) height(1350) quality(100) ******************************************************************************** -* 1.3 : Gini coefficeint +* 1.3 : Gini coefficient ******************************************************************************** * Prepare validation data @@ -209,7 +221,7 @@ if "$trim_outliers" == "true" { } -* Calulate gini for each year +* Calculate gini for each year statsby gini = r(gini), by(year) clear: ineqdeco valid_yDispBuEquivYear [aw=dwt] save "$dir_data/temp_valid_stats.dta", replace @@ -238,7 +250,6 @@ statsby gini = r(gini), by(year run) clear: ineqdeco sim_yDispEquivYear collapse (mean) gini /// (sd) gini_sd = gini, by(year) -* Compute the 95% confidence interval gen gini_high = gini + 1.96 * gini_sd gen gini_low = gini - 1.96 * gini_sd @@ -256,7 +267,7 @@ twoway (rarea gini_high gini_low year, sort /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Gini coefficient computed using individual observations of benefit unit measure of equivalized disposable income.", /// + note("Notes: Gini coefficient computed using individual observations of benefit unit measure of equivalized disposable income." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -424,7 +435,7 @@ grc1leg2 simulated_net_trans_all valid_net_trans_all, /// size(vsmall)) graph export /// - "$dir_output_files/inequality/validation_${country}_net_transfers_all.png", /// +"$dir_output_files/inequality/validation_${country}_net_transfers_all.png", /// replace width(2400) height(1350) @@ -437,7 +448,7 @@ grc1leg2 simulated_net_trans_upto65 valid_net_trans_upto65 , /// size(vsmall)) graph export /// - "$dir_output_files/inequality/validation_${country}_net_transfers_upto65.png", /// +"$dir_output_files/inequality/validation_${country}_net_transfers_upto65.png", /// replace width(2400) height(1350) @@ -450,7 +461,7 @@ grc1leg2 simulated_net_trans_66plus valid_net_trans_66plus , /// size(vsmall)) graph export /// - "$dir_output_files/inequality/validation_${country}_net_transfers_66plus.png", /// +"$dir_output_files/inequality/validation_${country}_net_transfers_66plus.png", /// replace width(2400) height(1350) graph drop _all diff --git a/validation/02_simulated_output_validation/do_files/04_16_plot_number_children.do b/validation/02_simulated_output_validation/do_files/04_16_plot_number_children.do index 26646a36a..6c92f3430 100644 --- a/validation/02_simulated_output_validation/do_files/04_16_plot_number_children.do +++ b/validation/02_simulated_output_validation/do_files/04_16_plot_number_children.do @@ -2,12 +2,19 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Children -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* benefit-unit composition by number of children (18-65 +* reference adults): share with 0/1/2/3+ children under 18 +* (1.1-1.2), share with a child under 3 (1.3-1.4), and +* share with a newborn (1.5-1.6) -- each split all/by +* gender, with a shaded band (mean +/- 1.96*SD across +* $max_n_runs runs). ******************************************************************************** -* NOTES: This do file plots simulated and UKHLS % of benefit units -* with a given number of children +* NOTES: Plots the share of benefit units with a given number of +* children. ******************************************************************************** ******************************************************************************** @@ -27,7 +34,7 @@ keep if inrange(demAge,18,65) * Calculate weighted share of benefit units with 0, 1, 2, 3 or more children collapse (mean) children_* [aw = dwt], by(year) -foreach varname in children_0 children_1 children_2 children_3p { +foreach varname in children_0 children_1 children_2 children_3p { rename `varname' valid_`varname' @@ -53,7 +60,7 @@ collapse (mean) children_* /// children_3p_sd = children_3p /// , by(year) -foreach varname in children_0 children_1 children_2 children_3p { +foreach varname in children_0 children_1 children_2 children_3p { gen sim_`varname'_h = `varname' + 1.96*`varname'_sd gen sim_`varname'_l = `varname' - 1.96*`varname'_sd @@ -94,10 +101,12 @@ twoway (rarea sim_children_0_h sim_children_0_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Individual observations plotted.", size(vsmall)) + note("Notes: Individual observations plotted.Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_children_ts_18_65_both.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_children_ts_18_65_both.jpg", /// replace width(2400) height(1350) quality(100) @@ -186,10 +195,12 @@ twoway (rarea sim_children_0_h sim_children_0_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Individual observations plotted.", size(vsmall)) + note("Notes: Individual observations plotted. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_children_ts_18_65_male.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_children_ts_18_65_male.jpg", /// replace width(2400) height(1350) quality(100) restore @@ -222,10 +233,12 @@ twoway (rarea sim_children_0_h sim_children_0_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Individual observations plotted.", size(vsmall)) + note("Notes: Individual observations plotted. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_children_ts_18_65_female.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_children_ts_18_65_female.jpg", /// replace width(2400) height(1350) quality(100) @@ -293,10 +306,12 @@ twoway (rarea sim_child02_h sim_child02_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes:", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_young_child_ts_18_65_both.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_young_child_ts_18_65_both.jpg", /// replace width(2400) height(1350) quality(100) graph drop _all @@ -372,10 +387,12 @@ twoway (rarea sim_child02_h sim_child02_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_young_child_ts_18_65_male.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_young_child_ts_18_65_male.jpg", /// replace width(2400) height(1350) quality(100) restore @@ -395,10 +412,12 @@ twoway (rarea sim_child02_h sim_child02_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_young_child_ts_18_65_female.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_young_child_ts_18_65_female.jpg", /// replace width(2400) height(1350) quality(100) @@ -470,10 +489,12 @@ twoway (rarea sim_child0_h sim_child0_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: COnstructed from benefit unit information.", size(vsmall)) + note("Notes: COnstructed from benefit unit information. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_new_born_child_ts_18_65_both.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_new_born_child_ts_18_65_both.jpg", /// replace width(2400) height(1350) quality(100) graph drop _all @@ -549,10 +570,12 @@ twoway (rarea sim_child0_h sim_child0_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_new_born_child_ts_18_65_male.jpg", /// +graph export /// +"$dir_output_files/children/validation_${country}_new_born_child_ts_18_65_male.jpg", /// replace width(2400) height(1350) quality(100) restore @@ -572,10 +595,12 @@ twoway (rarea sim_child0_h sim_child0_l year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure -graph export "$dir_output_files/children/validation_${country}_new_bron_child_ts_18_65_female.jpg", /// +graph export /// + "$dir_output_files/children/validation_${country}_new_born_child_ts_18_65_female.jpg", /// replace width(2400) height(1350) quality(100) diff --git a/validation/02_simulated_output_validation/do_files/04_17_plot_disability.do b/validation/02_simulated_output_validation/do_files/04_17_plot_disability.do index 1f5652281..de31774fc 100644 --- a/validation/02_simulated_output_validation/do_files/04_17_plot_disability.do +++ b/validation/02_simulated_output_validation/do_files/04_17_plot_disability.do @@ -1,12 +1,16 @@ /******************************************************************************* * PROJECT: SimPaths UK * SECTION: Validation -* OBJECT: Disability -* AUTHORS: Ashley Burdett -* LAST UPDATE: Jan 2026 -* COUNTRY: UK +* OBJECT: Disability +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* disability/long-term-sickness status, ages 18-65: overall +* (1.1), by gender (1.2), and by age group (1.3), with a +* shaded band (mean +/- 1.96*SD across $max_n_runs runs). ******************************************************************************** -* NOTES: +* NOTES: *******************************************************************************/ ******************************************************************************** @@ -62,7 +66,8 @@ twoway (rarea sim_healthDsblLongtermFlag_high /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export /// "$dir_output_files/disability/validation_${country}_disability_ts_18_65_both.jpg", /// @@ -122,7 +127,8 @@ twoway (rarea sim_healthDsblLongtermFlag_high /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: ", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export /// "$dir_output_files/disability/validation_${country}_disability_ts_18_65_male_female.jpg", /// @@ -130,7 +136,7 @@ graph export /// ******************************************************************************** -* 1.2 : Mean values over time, by age group +* 1.3 : Mean values over time, by age group ******************************************************************************** * Prepare validation data @@ -311,7 +317,8 @@ grc1leg healthDsblLongtermFlag_1 healthDsblLongtermFlag_2 /// legendfrom(healthDsblLongtermFlag_1) /// graphregion(color(white)) /// ycomm /// - note("Notes:", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export /// "$dir_output_files/disability/validation_${country}_disability_ts_age_groups_both.jpg", /// diff --git a/validation/02_simulated_output_validation/do_files/04_18_plot_social_care.do b/validation/02_simulated_output_validation/do_files/04_18_plot_social_care.do index cf7cb9836..fa7576839 100644 --- a/validation/02_simulated_output_validation/do_files/04_18_plot_social_care.do +++ b/validation/02_simulated_output_validation/do_files/04_18_plot_social_care.do @@ -2,11 +2,20 @@ * PROJECT: SimPaths UK * SECTION: Validation * OBJECT: Social care -* AUTHORS: Ashley Burdett -* LAST UPDATE: Feb 2026 -* COUNTRY: UK +* AUTHORS: Ashley Burdett +* LAST UPDATE: Aug 2026 +* COUNTRY: UK +* DESCRIPTION: Plots validation graphs comparing simulated vs. UKHLS +* social care: need for care (1.1), receiving care (1.2), +* type of care received (1.3), hours of care received -- +* overall/informal/formal, incl. quantile means (1.4-1.7), +* providing care (1.8-1.9), and formal care spending +* (1.10). Most subsections split by gender and/or age +* group. Uses a shared plotting program (make_care_plot, +* section 0), with a shaded band (mean +/- 1.96*SD across +* $max_n_runs runs). ******************************************************************************** -* NOTES: +* NOTES: *******************************************************************************/ clear all @@ -81,7 +90,7 @@ collapse (mean) sim_careNeedFlag, by(year run) collapse (mean) sim_careNeedFlag /// (sd) sim_careNeedFlag_sd = sim_careNeedFlag, by(year) -* Compute 95% confidence intervals + gen sim_careNeedFlag_h = sim_careNeedFlag + 1.96*sim_careNeedFlag_sd gen sim_careNeedFlag_l = sim_careNeedFlag - 1.96*sim_careNeedFlag_sd @@ -94,7 +103,7 @@ make_care_plot, /// title("In Need of Care") /// subtitle("Ages 65+") /// saving("validation_${country}_need_care_ts_65plus_both") /// - note(`""Notes: ""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -128,7 +137,7 @@ collapse (mean) sim_careNeedFlag, by(year demMaleFlag run) collapse (mean) sim_careNeedFlag /// (sd) sim_careNeedFlag_sd = sim_careNeedFlag, by(year demMaleFlag) -* Compute 95% confidence intervals + gen sim_careNeedFlag_h = sim_careNeedFlag + 1.96*sim_careNeedFlag_sd gen sim_careNeedFlag_l = sim_careNeedFlag - 1.96*sim_careNeedFlag_sd @@ -172,7 +181,7 @@ grc1leg health_female health_male, /// legendfrom(health_female) rows(1) /// ycomm /// graphregion(color(white)) /// - note("Notes: ", /// + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -270,7 +279,6 @@ collapse (mean) care* /// , by(year) -* Approx 95% confidence interval forvalues i=1(1)6 { gen care_f_`i'_sim_high = care_f`i' + 1.96*care_f_`i'_sd @@ -358,7 +366,6 @@ foreach vble in "care_f" "care_m" { legend(size(small)) /// graphregion(color(white)) - } * Save figures @@ -368,7 +375,7 @@ grc1leg care_f_1 care_f_2 care_f_3 care_f_4 care_f_5 care_f_6 , /// legendfrom(care_f_1) /// ycomm /// graphregion(color(white)) /// -note("Notes: ", /// +note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -382,7 +389,7 @@ grc1leg care_m_1 care_m_2 care_m_3 care_m_4 care_m_5 care_m_6, /// legendfrom(care_m_1) /// ycomm /// graphregion(color(white)) /// -note("Notes: ", /// +note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -392,27 +399,6 @@ graph export /// graph drop _all -/* -* Define the subtitles in a local macro -local titles "65-69" "70-74" "75-79" "80-84" "85-89" "90+" - -foreach vble in "care_f" "care_m" { - forvalues i = 1/6 { - - local t : word `i' of `titles' - - twoway (rarea `vble'_`i'_sim_high `vble'_`i'_sim_low year, /// - sort color(red%20)) /// - (line `vble'_`i'_valid year, sort color(red)), /// - subtitle("Age `t'") name(`vble'_`i', replace) /// - ylabel(0(0.3)0.9, labsize(vsmall)) /// - graphregion(color(white)) legend(off) - - } -} -*/ - - ******************************************************************************** * 1.2: Mean values over time - Share receive care ******************************************************************************** @@ -442,7 +428,7 @@ collapse (mean) sim_careReceiveFlag, by(year run) collapse (mean) sim_careReceiveFlag /// (sd) sim_careReceiveFlag_sd = sim_careReceiveFlag, by(year) -* Compute 95% confidence intervals + gen sim_careReceiveFlag_h = sim_careReceiveFlag + 1.96*sim_careReceiveFlag_sd gen sim_careReceiveFlag_l = sim_careReceiveFlag - 1.96*sim_careReceiveFlag_sd @@ -455,7 +441,7 @@ make_care_plot, /// title("Receive Care") /// subtitle("Ages 65+") /// saving("validation_${country}_receive_care_ts_65plus_both") /// - note(`""Notes: ""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') ******************************************************************************** @@ -487,7 +473,7 @@ collapse (mean) sim_careReceiveFlag, by(year demMaleFlag run) collapse (mean) sim_careReceiveFlag /// (sd) sim_careReceiveFlag_sd = sim_careReceiveFlag, by(year demMaleFlag) -* Compute 95% confidence intervals + gen sim_careReceiveFlag_h = sim_careReceiveFlag + 1.96*sim_careReceiveFlag_sd gen sim_careReceiveFlag_l = sim_careReceiveFlag - 1.96*sim_careReceiveFlag_sd @@ -531,7 +517,7 @@ grc1leg health_female health_male, /// legendfrom(health_female) rows(1) /// ycomm /// graphregion(color(white)) /// - note("Notes: ", /// + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -627,7 +613,6 @@ collapse (mean) care* /// , by(year) -* Approx 95% confidence interval forvalues i=1(1)6 { gen care_f_`i'_sim_high = care_f`i' + 1.96*care_f_`i'_sd @@ -724,7 +709,7 @@ grc1leg care_f_1 care_f_2 care_f_3 care_f_4 care_f_5 care_f_6 , /// legendfrom(care_f_1) /// ycomm /// graphregion(color(white)) /// -note("Notes: ", /// +note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -738,7 +723,7 @@ grc1leg care_m_1 care_m_2 care_m_3 care_m_4 care_m_5 care_m_6, /// legendfrom(care_m_1) /// ycomm /// graphregion(color(white)) /// -note("Notes: ", /// +note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -787,7 +772,7 @@ collapse (mean) sim_careRecFormalOnly sim_careRecInformalOnly /// (sd) sim_careRecMix_sd = sim_careRecMix /// , by(year) -* Compute 95% confidence intervals + foreach varname in sim_careRecFormalOnly sim_careRecInformalOnly /// sim_careRecMix { @@ -821,7 +806,7 @@ twoway /// ylabel(, labsize(small)) /// graphregion(color(white)) /// legend(size(small)) /// - note("Note: Only those receiving care included in the sample. ", /// + note("Note: Only those receiving care included in the sample. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -870,7 +855,7 @@ collapse (mean) sim_careRecFormalOnly sim_careRecInformalOnly /// (sd) sim_careRecMix_sd = sim_careRecMix /// , by(year demMaleFlag) -* Compute 95% confidence intervals + foreach varname in sim_careRecFormalOnly sim_careRecInformalOnly /// sim_careRecMix { @@ -910,7 +895,7 @@ twoway /// ylabel(, labsize(small)) /// graphregion(color(white)) /// legend(size(small)) /// - note("Note: Only those receiving care included in the sample. ", /// + note("Note: Only those receiving care included in the sample. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -945,7 +930,7 @@ twoway /// ylabel(, labsize(small)) /// graphregion(color(white)) /// legend(size(small)) /// - note("Note: Only those recieving care included in the sample. ", /// + note("Note: Only those recieving care included in the sample. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -988,7 +973,7 @@ collapse (mean) sim_careReceiveHrs, by(year run) collapse (mean) sim_careReceiveHrs /// (sd) sim_careReceiveHrs_sd = sim_careReceiveHrs, by(year) -* Compute 95% confidence intervals + gen sim_careReceiveHrs_h = sim_careReceiveHrs + 1.96*sim_careReceiveHrs_sd gen sim_careReceiveHrs_l = sim_careReceiveHrs - 1.96*sim_careReceiveHrs_sd @@ -1001,7 +986,7 @@ make_care_plot, /// title("Hours of Care Received") /// subtitle("Ages 65+") /// saving("validation_${country}_care_hours_received_ts_65plus_both") /// - note(`""Notes: ""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -1037,7 +1022,7 @@ collapse (mean) sim_careReceiveHrs, by(year demMaleFlag run) collapse (mean) sim_careReceiveHrs /// (sd) sim_careReceiveHrs_sd = sim_careReceiveHrs, by(year demMaleFlag) -* Compute 95% confidence intervals + gen sim_careReceiveHrs_h = sim_careReceiveHrs + 1.96*sim_careReceiveHrs_sd gen sim_careReceiveHrs_l = sim_careReceiveHrs - 1.96*sim_careReceiveHrs_sd @@ -1081,7 +1066,7 @@ grc1leg health_female health_male, /// legendfrom(health_female) rows(1) /// ycomm /// graphregion(color(white)) /// - note("Notes: Only those receiving care included in sample. ", /// + note("Notes: Only those receiving care included in sample. Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -1131,7 +1116,6 @@ collapse (mean) sim_p25 = sim_p25_run /// sim_p50_sd = sim_p50 /// sim_p75_sd = sim_p75, by(year) -* Approx 95% confidence intervals foreach p in 25 50 75 { gen sim_p`p'_lo = sim_p`p' - 1.96*sim_p`p'_sd @@ -1163,7 +1147,7 @@ twoway (rarea sim_p25_lo sim_p25_hi year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Percentiles computed on the 65+ population that report receiving positive hours of informal care.", size(vsmall)) + note("Notes: Percentiles computed on the 65+ population that report receiving positive hours of informal care." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", size(vsmall)) * Save figure graph export /// @@ -1179,7 +1163,6 @@ graph drop _all ******************************************************************************** - ******************************************************************************** * 1.6: Mean values over time - Quantile means of hours of informal care received ******************************************************************************** @@ -1220,7 +1203,6 @@ collapse (mean) sim_p25 = sim_p25_run /// sim_p75_sd = sim_p75, by(year) -* Approx 95% confidence intervals foreach p in 25 50 75 { gen sim_p`p'_lo = sim_p`p' - 1.96*sim_p`p'_sd @@ -1252,7 +1234,7 @@ twoway (rarea sim_p25_lo sim_p25_hi year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Percentiles computed on the 65+ population that report receiving positive hours of informal care.", size(vsmall)) + note("Notes: Percentiles computed on the 65+ population that report receiving positive hours of informal care." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", size(vsmall)) * Save figure graph export /// @@ -1261,13 +1243,13 @@ graph export /// graph drop _all + ******************************************************************************** * 1.6.1: Mean values over time - Quantile means of hours of informal care * received, by gender ******************************************************************************** - ******************************************************************************** * 1.7: Mean values over time - Quantile means of hours of formal care received ******************************************************************************** @@ -1307,7 +1289,6 @@ collapse (mean) sim_p25 = sim_p25_run /// sim_p50_sd = sim_p50 /// sim_p75_sd = sim_p75, by(year) -* Approx 95% confidence intervals foreach p in 25 50 75 { gen sim_p`p'_lo = sim_p`p' - 1.96*sim_p`p'_sd @@ -1339,7 +1320,8 @@ twoway (rarea sim_p25_lo sim_p25_hi year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Percentiles computed on the 65+ population that report receiving positive hours of formal care.", size(vsmall)) + note("Notes: Percentiles computed on the 65+ population that report receiving positive hours of formal care." "Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure graph export /// @@ -1354,7 +1336,6 @@ graph drop _all ******************************************************************************** - ******************************************************************************** * 1.8: Mean values over time - Share provide care ******************************************************************************** @@ -1382,7 +1363,7 @@ collapse (mean) sim_careProvideFlag, by(year run) collapse (mean) sim_careProvideFlag /// (sd) sim_careProvideFlag_sd = sim_careProvideFlag, by(year) -* Compute 95% confidence intervals + gen sim_careProvideFlag_h = sim_careProvideFlag + 1.96*sim_careProvideFlag_sd gen sim_careProvideFlag_l = sim_careProvideFlag - 1.96*sim_careProvideFlag_sd @@ -1395,7 +1376,7 @@ make_care_plot, /// title("Provide Care") /// subtitle("Ages 16+") /// saving("validation_${country}_provide_care_ts_16plus_both") /// - note(`""Notes: ""') + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') graph drop _all @@ -1427,7 +1408,7 @@ collapse (mean) sim_careProvideFlag, by(year demMaleFlag run) collapse (mean) sim_careProvideFlag /// (sd) sim_careProvideFlag_sd = sim_careProvideFlag, by(year demMaleFlag) -* Compute 95% confidence intervals + gen sim_careProvideFlag_h = sim_careProvideFlag + 1.96*sim_careProvideFlag_sd gen sim_careProvideFlag_l = sim_careProvideFlag - 1.96*sim_careProvideFlag_sd @@ -1471,7 +1452,7 @@ grc1leg care_female care_male, /// legendfrom(care_female) rows(1) /// ycomm /// graphregion(color(white)) /// - note("Notes: ", /// + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) * Save figure @@ -1566,7 +1547,6 @@ collapse (mean) care* /// , by(year) -* Approx 95% confidence interval forvalues i=1(1)6 { gen care_f_`i'_sim_high = care_f`i' + 1.96*care_f_`i'_sd @@ -1663,7 +1643,7 @@ grc1leg care_f_1 care_f_2 care_f_3 care_f_4 care_f_5 care_f_6 , /// legendfrom(care_f_1) /// ycomm /// graphregion(color(white)) /// -note("Notes: ", /// +note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -1677,7 +1657,7 @@ grc1leg care_m_1 care_m_2 care_m_3 care_m_4 care_m_5 care_m_6, /// legendfrom(care_m_1) /// ycomm /// graphregion(color(white)) /// -note("Notes: ", /// +note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// size(vsmall)) graph export /// @@ -1698,6 +1678,56 @@ use year idBu dwt valid_careProvideFlag valid_careHrsProvidedWeek demAge /// keep if demAge >= 16 keep if valid_careProvideFlag == 1 +* Compute mean +collapse (mean) valid_careHrsProvide [aw = dwt], by(year) + +save "$dir_data/temp_valid_stats.dta", replace + +* Prepare simulated data +use run year idBu sim_careHrsProvidedWeek sim_careProvideFlag demAge using /// + "$dir_data/simulation_sample.dta", clear + +keep if demAge >= 16 +keep if sim_careProvideFlag == 1 + +* Compute mean +collapse (mean) sim_careHrsProvidedWeek, by(year run) + +collapse (mean) sim_careHrsProvidedWeek /// + (sd) sim_careHrsProvidedWeek_sd = sim_careHrsProvidedWeek, by(year) + + +gen sim_careHrsProvide_h = sim_careHrsProvidedWeek + /// + 1.96*sim_careHrsProvidedWeek_sd +gen sim_careHrsProvide_l = sim_careHrsProvidedWeek - /// + 1.96*sim_careHrsProvidedWeek_sd + + +* Combine datasets +merge 1:1 year using "$dir_data/temp_valid_stats.dta" + +* Plot figure +make_care_plot, /// + var("careHrsProvide") /// + title("Hours of Care Provided") /// + subtitle("Amoung providers, Ages 16+") /// + saving("validation_${country}_care_hours_provided_ts_16plus_both") /// + note(`""Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.""') + +graph drop _all + + +******************************************************************************** +* 1.9.1: Mean values over time - Quantile means of hours of care provided +******************************************************************************** + +* Prepare validation data +use year idBu dwt valid_careProvideFlag valid_careHrsProvidedWeek demAge /// + using "$dir_data/ukhls_validation_sample.dta", clear + +keep if demAge >= 16 +keep if valid_careProvideFlag == 1 + * Compute mean collapse (p25) valid_p25 = valid_careHrsProvidedWeek /// (p50) valid_p50 = valid_careHrsProvidedWeek /// @@ -1706,9 +1736,12 @@ collapse (p25) valid_p25 = valid_careHrsProvidedWeek /// save "$dir_data/temp_valid_stats.dta", replace * Prepare simulated data -use run year idBu sim_careHrsProvidedWeek demAge using /// +use run year idBu sim_careHrsProvidedWeek sim_careProvideFlag demAge using /// "$dir_data/simulation_sample.dta", clear +keep if demAge >= 16 +keep if sim_careProvideFlag == 1 + * Compute quantiles and sd bysort year run: egen sim_p25_run = pctile(sim_careHrsProvidedWeek), p(25) bysort year run: egen sim_p50_run = pctile(sim_careHrsProvidedWeek), p(50) @@ -1721,7 +1754,6 @@ collapse (mean) sim_p25 = sim_p25_run /// sim_p50_sd = sim_p50 /// sim_p75_sd = sim_p75, by(year) -* Approx 95% confidence intervals foreach p in 25 50 75 { gen sim_p`p'_lo = sim_p`p' - 1.96*sim_p`p'_sd @@ -1753,7 +1785,8 @@ twoway (rarea sim_p25_lo sim_p25_hi year, /// ylabel(, labsize(small)) /// legend(size(small)) /// graphregion(color(white)) /// - note("Notes: Percentiles computed on those age 16+ and provide care.", size(vsmall)) + note("Notes: Percentiles computed on those age 16+ and provide care.""Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) * Save figure graph export /// @@ -1765,7 +1798,7 @@ graph drop _all ******************************************************************************** -* 1.9.1: Mean values over time - Quantile means of hours of care provided, by +* 1.9.2: Mean values over time - Quantile means of hours of care provided, by * gender ******************************************************************************** @@ -1775,7 +1808,7 @@ graph drop _all * receive formal care ******************************************************************************** -* Load validaiton data +* Load validation data use year idBu dwt valid_careFormalX valid_careHrsFormal demAge using /// "$dir_data/ukhls_validation_sample.dta", clear @@ -1802,7 +1835,7 @@ collapse (mean) sim_careFormalX, by(year run) collapse (mean) sim_careFormalX /// (sd) sim_careFormalX_sd = sim_careFormalX, by(year) -* Compute 95% confidence intervals + gen sim_careFormalX_h = sim_careFormalX + 1.96*sim_careFormalX_sd gen sim_careFormalX_l = sim_careFormalX - 1.96*sim_careFormalX_sd @@ -1823,7 +1856,8 @@ twoway (rarea sim_careFormalX_h sim_careFormalX_l year, /// legend(size(small)) /// name(`name', replace) /// graphregion(color(white)) /// - note("Notes:", size(vsmall)) + note("Notes: Shaded area = mean +/- 1.96*SD across $max_n_runs simulation runs.", /// + size(vsmall)) graph export "$dir_output_files/social_care/validation_${country}_formal_care_expenditure_both.jpg", /// replace width(2400) height(1350) quality(100)